From e993aac711a182ec8e3c37c462749ce2057e53d0 Mon Sep 17 00:00:00 2001 From: lila Date: Tue, 21 Apr 2026 08:39:38 +0200 Subject: [PATCH 1/2] adding task to separate user db --- documentation/notes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/notes.md b/documentation/notes.md index 7520dac..50c13c1 100644 --- a/documentation/notes.md +++ b/documentation/notes.md @@ -2,6 +2,7 @@ ## tasks +- put users in separate db - pinning dependencies in package.json files - rethink organisation of datafiles and wordlists - admin dashboard for user management, also overview of words and languages and all their stats From c9cddf68de45d4efd97a6e11b60b76e624f61646 Mon Sep 17 00:00:00 2001 From: lila Date: Tue, 21 Apr 2026 09:39:36 +0200 Subject: [PATCH 2/2] feat(pipeline): add data pipeline workspace and extraction stage - rename scripts/ to data-pipeline/, archive existing scripts - add @lila/pipeline as pnpm workspace package - add stage-1-extract through stage-5-compare folder structure - update SUPPORTED_LANGUAGE_CODES (add es, de, fr) - update SUPPORTED_POS (add adjective, adverb) - add description field to term_glosses - add term_examples table - run and verify db migration - write and verify extract.py (117,659 synsets across 5 languages) - write PIPELINE.md --- .../stage-1-extract/scripts/extract.py | 204 + .../stage-2-annotate/sources/cefr/de.json | 324482 +++++++++++++++ .../stage-2-annotate/sources/cefr/en.json | 186374 +++++++++ .../stage-2-annotate/sources/cefr/es.json | 163922 ++++++++ .../stage-2-annotate/sources/cefr/fr.json | 193382 +++++++++ .../stage-2-annotate/sources/cefr/it.json | 185759 +++++++++ documentation/PIPELINE.md | 74 +- 7 files changed, 1054164 insertions(+), 33 deletions(-) create mode 100644 data-pipeline/stage-1-extract/scripts/extract.py create mode 100644 data-pipeline/stage-2-annotate/sources/cefr/de.json create mode 100644 data-pipeline/stage-2-annotate/sources/cefr/en.json create mode 100644 data-pipeline/stage-2-annotate/sources/cefr/es.json create mode 100644 data-pipeline/stage-2-annotate/sources/cefr/fr.json create mode 100644 data-pipeline/stage-2-annotate/sources/cefr/it.json diff --git a/data-pipeline/stage-1-extract/scripts/extract.py b/data-pipeline/stage-1-extract/scripts/extract.py new file mode 100644 index 0000000..5f0d879 --- /dev/null +++ b/data-pipeline/stage-1-extract/scripts/extract.py @@ -0,0 +1,204 @@ +""" +data-pipeline/stage-1-extract/scripts/extract.py + +Extract all synsets from the Open Multilingual Wordnet (OMW) for all +supported languages and parts of speech. + +Output: one JSON file per language, written to stage-1-extract/output/ + en.json, it.json, es.json, de.json, fr.json + +Each file is a JSON array of synset records: + { + "source_id": "ili:i12345", + "pos": "noun", + "translations": { "en": ["dog", "canine"], "it": ["cane"] }, + "glosses": { "en": ["a domesticated animal..."] }, + "examples": { "en": ["the dog barked at the stranger"] } + } + +Usage: + python stage-1-extract/scripts/extract.py + python stage-1-extract/scripts/extract.py --sample + +Prerequisites: + pip install wn + python -m wn download omw-en:1.4 + python -m wn download omw-it:1.4 + python -m wn download omw-de:1.4 + python -m wn download omw-es:1.4 + python -m wn download omw-fr:1.4 +""" + +import json +import sys +from pathlib import Path + +import wn + +SUPPORTED_LANGUAGE_CODES: list[str] = ["en", "it", "es", "de", "fr"] +POS_MAP: dict[str, str] = { + "n": "noun", + "v": "verb", + "a": "adjective", + "s": "adjective", # adjective satellite — collapsed into adjective + "r": "adverb", +} + + +def extract_all( + output_dir: str = "stage-1-extract/output", sample: bool = False +) -> None: + out = Path(output_dir) + out.mkdir(parents=True, exist_ok=True) + + sample_size = 100 if sample else None + + # Load one Wordnet object per language up front. + print("Loading wordnets...") + wordnets: dict[str, wn.Wordnet] = {} + for lang in SUPPORTED_LANGUAGE_CODES: + try: + wordnets[lang] = wn.Wordnet(lang=lang) + synset_count = len(wordnets[lang].synsets()) + print(f" {lang}: {synset_count:,} total synsets") + except wn.Error as e: + print(f" ERROR loading {lang}: {e}") + print(f" Run: python -m wn download omw-{lang}:1.4") + sys.exit(1) + + # Collect per-ILI data across all languages and POS. + print("\nExtracting synsets...") + by_ili: dict[str, dict] = {} + + for lang, wnet in wordnets.items(): + for omw_pos, pos_label in POS_MAP.items(): + synsets = wnet.synsets(pos=omw_pos) + covered = 0 + for synset in synsets: + ili = synset.ili + if not ili: + continue + covered += 1 + + lemmas = [str(lemma) for lemma in synset.lemmas()] + defns = [d for d in synset.definitions() if d] + examples = [e for e in synset.examples() if e] + + if ili not in by_ili: + by_ili[ili] = {"pos": pos_label} + + if lang not in by_ili[ili]: + by_ili[ili][lang] = { + "lemmas": lemmas, + "glosses": defns, + "examples": examples, + } + else: + # ILI already exists for this language — merge data. + # Happens when 'a' and 's' both map to adjective for the + # same ILI. Deduplicate to avoid repeated entries. + existing = by_ili[ili][lang] + existing["lemmas"] = list( + dict.fromkeys(existing["lemmas"] + lemmas) + ) + existing["glosses"] = list( + dict.fromkeys(existing["glosses"] + defns) + ) + existing["examples"] = list( + dict.fromkeys(existing["examples"] + examples) + ) + + print(f" {lang} {pos_label}: {covered:,} synsets with ILI") + + # Build records and write single combined output file. + print("\nBuilding records...") + ilis = sorted(by_ili.keys()) + if sample_size: + ilis = ilis[:sample_size] + + records: list[dict] = [] + for ili in ilis: + data = by_ili[ili] + record: dict = { + "source_id": f"ili:{ili}", + "pos": data["pos"], + "translations": {}, + "glosses": {}, + "examples": {}, + } + + for key, value in data.items(): + if key == "pos": + continue + lang = key + if value["lemmas"]: + record["translations"][lang] = value["lemmas"] + if value["glosses"]: + record["glosses"][lang] = value["glosses"] + if value["examples"]: + record["examples"][lang] = value["examples"] + + records.append(record) + + output_file = out / "omw.json" + with open(output_file, "w", encoding="utf-8") as f: + json.dump(records, f, indent=2, ensure_ascii=False) + + print(f"\nWrote {len(records):,} synsets → {output_file}") + _print_coverage(records) + + +def _print_coverage(records: list[dict]) -> None: + """Print per-language translation, gloss, and example counts.""" + lang_stats: dict[str, dict[str, int]] = {} + for lang in SUPPORTED_LANGUAGE_CODES: + lang_stats[lang] = {"translations": 0, "glosses": 0, "examples": 0} + + pos_stats: dict[str, int] = {} + + for r in records: + pos = r["pos"] + pos_stats[pos] = pos_stats.get(pos, 0) + 1 + + for lang, lemmas in r["translations"].items(): + if lang in lang_stats: + lang_stats[lang]["translations"] += len(lemmas) + for lang, gloss_list in r["glosses"].items(): + if lang in lang_stats: + lang_stats[lang]["glosses"] += len(gloss_list) + for lang, example_list in r["examples"].items(): + if lang in lang_stats: + lang_stats[lang]["examples"] += len(example_list) + + print("\nPOS breakdown:") + for pos, count in sorted(pos_stats.items()): + print(f" {pos}: {count:,}") + + print("\nCoverage per language:") + for lang, counts in lang_stats.items(): + t = counts["translations"] + g = counts["glosses"] + e = counts["examples"] + total = len(records) + print( + f" {lang}: {t:,} translations, {g:,} glosses, {e:,} examples (avg {(t / total):.1f} translations/synset)" + ) + + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser(description="Extract OMW data to JSON") + parser.add_argument( + "--output-dir", + default="stage-1-extract/output", + help="Output directory for JSON files", + ) + parser.add_argument( + "--sample", + action="store_true", + help="Extract only 100 synsets per language for inspection", + ) + args = parser.parse_args() + + extract_all(output_dir=args.output_dir, sample=args.sample) diff --git a/data-pipeline/stage-2-annotate/sources/cefr/de.json b/data-pipeline/stage-2-annotate/sources/cefr/de.json new file mode 100644 index 0000000..54670b7 --- /dev/null +++ b/data-pipeline/stage-2-annotate/sources/cefr/de.json @@ -0,0 +1,324482 @@ +[ + { + "word": "sein", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be", + "romanization": "sein", + "example_sentence_native": "Er will Arzt sein.", + "example_sentence_english": "He wants to be a doctor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6 + }, + { + "word": "Sie", + "pos": "pronoun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "you (formal)", + "romanization": "Sie", + "example_sentence_native": "Sprechen Sie Deutsch?", + "example_sentence_english": "Do you speak German?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 16 + }, + { + "word": "auch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "also;too", + "romanization": "auch", + "example_sentence_native": "Ich komme auch.", + "example_sentence_english": "I am coming too.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "conjunction", + "word_frequency": 19 + }, + { + "word": "haben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have", + "romanization": "haben", + "example_sentence_native": "Ich habe ein Buch.", + "example_sentence_english": "I have a book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29 + }, + { + "word": "nur", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "only;just", + "romanization": "nur", + "example_sentence_native": "Ich habe nur fünf Euro.", + "example_sentence_english": "I only have five euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 34 + }, + { + "word": "werden", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to become;to get", + "romanization": "werden", + "example_sentence_native": "Er wird Arzt.", + "example_sentence_english": "He is becoming a doctor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 37 + }, + { + "word": "können", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be able to;can", + "romanization": "können", + "example_sentence_native": "Ich kann Deutsch sprechen.", + "example_sentence_english": "I can speak German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 43 + }, + { + "word": "da", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there;since;because", + "romanization": "da", + "example_sentence_native": "Er ist nicht da.", + "example_sentence_english": "He is not there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 45 + }, + { + "word": "dann", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "then", + "romanization": "dann", + "example_sentence_native": "Zuerst essen wir, dann gehen wir spazieren.", + "example_sentence_english": "First we eat, then we go for a walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 46 + }, + { + "word": "schon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "already;yet", + "romanization": "schon", + "example_sentence_native": "Ich habe das schon gemacht.", + "example_sentence_english": "I have already done that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 47 + }, + { + "word": "mehr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "more", + "romanization": "mehr", + "example_sentence_native": "Ich möchte mehr Wasser.", + "example_sentence_english": "I would like more water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 49 + }, + { + "word": "mal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "once;just", + "romanization": "mal", + "example_sentence_native": "Komm mal her!", + "example_sentence_english": "Just come here!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adverb", + "word_frequency": 51 + }, + { + "word": "Mal", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time (as in 'one time';'many times')", + "romanization": "Mal", + "example_sentence_native": "Ich war schon viele Male dort.", + "example_sentence_english": "I have been there many times.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 51 + }, + { + "word": "hier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here", + "romanization": "hier", + "example_sentence_native": "Ich bin hier.", + "example_sentence_english": "I am here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 54 + }, + { + "word": "Ihr", + "pos": "pronoun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "your (formal;plural);you (informal plural)", + "romanization": "Ihr", + "example_sentence_native": "Ist das Ihr Auto? / Ihr seid sehr nett.", + "example_sentence_english": "Is that your car? / You are very nice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 57 + }, + { + "word": "immer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "always", + "romanization": "immer", + "example_sentence_native": "Sie liest immer Bücher.", + "example_sentence_english": "She always reads books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 58 + }, + { + "word": "jetzt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "now", + "romanization": "jetzt", + "example_sentence_native": "Ich muss jetzt gehen.", + "example_sentence_english": "I have to go now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 59 + }, + { + "word": "wieder", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "again", + "romanization": "wieder", + "example_sentence_native": "Er kommt wieder.", + "example_sentence_english": "He is coming again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 62 + }, + { + "word": "kein", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "no", + "romanization": "kein", + "example_sentence_native": "Ich habe kein Geld.", + "example_sentence_english": "I have no money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 63 + }, + { + "word": "all", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "all", + "romanization": "all", + "example_sentence_native": "Alle Studenten sind hier.", + "example_sentence_english": "All students are here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 64 + }, + { + "word": "sehr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "very", + "romanization": "sehr", + "example_sentence_native": "Das ist sehr gut.", + "example_sentence_english": "That is very good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 65 + }, + { + "word": "gut", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "good", + "romanization": "gut", + "example_sentence_native": "Das ist ein gutes Buch.", + "example_sentence_english": "That is a good book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 69 + }, + { + "word": "geben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to give", + "romanization": "geben", + "example_sentence_native": "Ich gebe dir ein Buch.", + "example_sentence_english": "I give you a book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 70 + }, + { + "word": "also", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "so;therefore", + "romanization": "also", + "example_sentence_native": "Also, was machen wir jetzt?", + "example_sentence_english": "So, what do we do now?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 73 + }, + { + "word": "gehen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go", + "romanization": "gehen", + "example_sentence_native": "Ich gehe nach Hause.", + "example_sentence_english": "I am going home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 74 + }, + { + "word": "viel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "much;many", + "romanization": "viel", + "example_sentence_native": "Er hat viel Geld.", + "example_sentence_english": "He has much money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 75 + }, + { + "word": "Zeit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time", + "romanization": "Zeit", + "example_sentence_native": "Ich habe keine Zeit.", + "example_sentence_english": "I have no time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 76 + }, + { + "word": "ganz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "whole;entire;quite", + "romanization": "ganz", + "example_sentence_native": "Das ist eine ganz neue Idee.", + "example_sentence_english": "That is a completely new idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 78 + }, + { + "word": "machen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to make;to do", + "romanization": "machen", + "example_sentence_native": "Was machst du heute?", + "example_sentence_english": "What are you doing today?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 79 + }, + { + "word": "einfach", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "simple;easy", + "romanization": "einfach", + "example_sentence_native": "Das ist eine einfache Frage.", + "example_sentence_english": "That is a simple question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 84 + }, + { + "word": "zwei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two", + "romanization": "zwei", + "example_sentence_native": "Ich habe zwei Katzen.", + "example_sentence_english": "I have two cats.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 89 + }, + { + "word": "selbst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "even", + "romanization": "selbst", + "example_sentence_native": "Selbst er war überrascht.", + "example_sentence_english": "Even he was surprised.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 92 + }, + { + "word": "wo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where", + "romanization": "wo", + "example_sentence_native": "Wo wohnst du?", + "example_sentence_english": "Where do you live?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 93 + }, + { + "word": "Mensch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "human being", + "romanization": "Mensch", + "example_sentence_native": "Der Mensch ist ein soziales Wesen.", + "example_sentence_english": "The human being is a social creature.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 94 + }, + { + "word": "heute", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "today", + "romanization": "heute", + "example_sentence_native": "Heute ist ein schöner Tag.", + "example_sentence_english": "Today is a beautiful day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 95 + }, + { + "word": "kommen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to come", + "romanization": "kommen", + "example_sentence_native": "Ich komme aus Deutschland.", + "example_sentence_english": "I come from Germany.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 96 + }, + { + "word": "nun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "now", + "romanization": "nun", + "example_sentence_native": "Nun, was machen wir jetzt?", + "example_sentence_english": "Well, what do we do now?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 98 + }, + { + "word": "leben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to live", + "romanization": "leben", + "example_sentence_native": "Wir leben in einer großen Stadt.", + "example_sentence_english": "We live in a big city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 99 + }, + { + "word": "ander", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "other", + "romanization": "ander", + "example_sentence_native": "Ich möchte ein anderes Buch.", + "example_sentence_english": "I would like another book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 101 + }, + { + "word": "Jahr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "year", + "romanization": "Jahr", + "example_sentence_native": "Ein Jahr hat zwölf Monate.", + "example_sentence_english": "A year has twelve months.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 103 + }, + { + "word": "dabei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with it", + "romanization": "dabei", + "example_sentence_native": "Er hat sein Handy dabei.", + "example_sentence_english": "He has his phone with him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 106 + }, + { + "word": "dort", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there", + "romanization": "dort", + "example_sentence_native": "Wir treffen uns dort.", + "example_sentence_english": "We meet there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 108 + }, + { + "word": "gerade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "straight", + "romanization": "gerade", + "example_sentence_native": "Die Linie ist gerade.", + "example_sentence_english": "The line is straight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 109 + }, + { + "word": "neu", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "new", + "romanization": "neu", + "example_sentence_native": "Das ist ein neues Auto.", + "example_sentence_english": "That is a new car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 110 + }, + { + "word": "erst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "first;only (not until)", + "romanization": "erst", + "example_sentence_native": "Ich komme erst um fünf Uhr.", + "example_sentence_english": "I'm not coming until five o'clock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 112 + }, + { + "word": "lassen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to let;to leave;to have something done", + "romanization": "lassen", + "example_sentence_native": "Lass mich gehen!", + "example_sentence_english": "Let me go!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 113 + }, + { + "word": "warum", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "why", + "romanization": "warum", + "example_sentence_native": "Warum bist du traurig?", + "example_sentence_english": "Why are you sad?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 114 + }, + { + "word": "wissen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know (facts)", + "romanization": "wissen", + "example_sentence_native": "Ich weiß es nicht.", + "example_sentence_english": "I don't know it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 115 + }, + { + "word": "weit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "far;wide", + "romanization": "weit", + "example_sentence_native": "Der Weg ist sehr weit.", + "example_sentence_english": "The way is very far.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 116 + }, + { + "word": "wirklich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "really;truly", + "romanization": "wirklich", + "example_sentence_native": "Das ist wirklich schön.", + "example_sentence_english": "That is really beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 117 + }, + { + "word": "Mann", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "man;husband", + "romanization": "Mann", + "example_sentence_native": "Der Mann liest ein Buch.", + "example_sentence_english": "The man is reading a book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 119 + }, + { + "word": "wohl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probably", + "romanization": "wohl", + "example_sentence_native": "Er wird wohl bald kommen.", + "example_sentence_english": "He will probably come soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 120 + }, + { + "word": "drei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "three", + "romanization": "drei", + "example_sentence_native": "Ich habe drei Bücher.", + "example_sentence_english": "I have three books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 121 + }, + { + "word": "vielleicht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "perhaps", + "romanization": "vielleicht", + "example_sentence_native": "Vielleicht regnet es morgen.", + "example_sentence_english": "Perhaps it will rain tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 122 + }, + { + "word": "dazu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in addition", + "romanization": "dazu", + "example_sentence_native": "Ich habe Brot und dazu Käse.", + "example_sentence_english": "I have bread and cheese in addition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 123 + }, + { + "word": "bitte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "please", + "romanization": "bitte", + "example_sentence_native": "Kannst du mir bitte helfen?", + "example_sentence_english": "Can you please help me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 124 + }, + { + "word": "sehen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to see", + "romanization": "sehen", + "example_sentence_native": "Ich sehe einen Vogel.", + "example_sentence_english": "I see a bird.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 125 + }, + { + "word": "Tag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day", + "romanization": "Tag", + "example_sentence_native": "Guten Tag!", + "example_sentence_english": "Good day!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 127 + }, + { + "word": "dafür", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for it", + "romanization": "dafür", + "example_sentence_native": "Ich habe kein Geld dafür.", + "example_sentence_english": "I have no money for it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 129 + }, + { + "word": "sagen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to say", + "romanization": "sagen", + "example_sentence_native": "Was willst du sagen?", + "example_sentence_english": "What do you want to say?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 131 + }, + { + "word": "stehen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stand", + "romanization": "stehen", + "example_sentence_native": "Er steht am Fenster.", + "example_sentence_english": "He stands at the window.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 132 + }, + { + "word": "bereits", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "already", + "romanization": "bereits", + "example_sentence_native": "Ich habe das bereits getan.", + "example_sentence_english": "I have already done that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 134 + }, + { + "word": "deutsch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "German", + "romanization": "deutsch", + "example_sentence_native": "Sie spricht Deutsch.", + "example_sentence_english": "She speaks German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 135 + }, + { + "word": "Deutsch", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "German (language)", + "romanization": "Deutsch", + "example_sentence_native": "Ich lerne Deutsch.", + "example_sentence_english": "I am learning German.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 135 + }, + { + "word": "Ende", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "end", + "romanization": "Ende", + "example_sentence_native": "Das ist das Ende der Geschichte.", + "example_sentence_english": "That is the end of the story.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 136 + }, + { + "word": "nie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "never", + "romanization": "nie", + "example_sentence_native": "Ich habe das nie gesehen.", + "example_sentence_english": "I have never seen that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 137 + }, + { + "word": "Uhr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clock;o'clock", + "romanization": "Uhr", + "example_sentence_native": "Es ist drei Uhr.", + "example_sentence_english": "It is three o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 138 + }, + { + "word": "einmal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "once;one time", + "romanization": "einmal", + "example_sentence_native": "Ich war einmal in Berlin.", + "example_sentence_english": "I was once in Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 141 + }, + { + "word": "Frau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "woman;wife;Mrs.", + "romanization": "Frau", + "example_sentence_native": "Die Frau liest ein Buch.", + "example_sentence_english": "The woman is reading a book.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 142 + }, + { + "word": "Stadt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "city;town", + "romanization": "Stadt", + "example_sentence_native": "Berlin ist eine große Stadt.", + "example_sentence_english": "Berlin is a big city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 143 + }, + { + "word": "Welt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "world", + "romanization": "Welt", + "example_sentence_native": "Die Welt ist groß.", + "example_sentence_english": "The world is big.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 144 + }, + { + "word": "genau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exact;precise;exactly!", + "romanization": "genau", + "example_sentence_native": "Das ist genau das, was ich brauche.", + "example_sentence_english": "That is exactly what I need.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 146 + }, + { + "word": "gar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at all;even", + "romanization": "gar", + "example_sentence_native": "Ich habe gar kein Geld.", + "example_sentence_english": "I have no money at all.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 148 + }, + { + "word": "Leute", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "people", + "romanization": "Leute", + "example_sentence_native": "Viele Leute waren auf der Party.", + "example_sentence_english": "Many people were at the party.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 149 + }, + { + "word": "etwa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about;approximately", + "romanization": "etwa", + "example_sentence_native": "Es sind etwa zehn Leute da.", + "example_sentence_english": "There are about ten people there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 152 + }, + { + "word": "natürlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "natural;naturally;of course", + "romanization": "natürlich", + "example_sentence_native": "Das ist eine natürliche Reaktion.", + "example_sentence_english": "That is a natural reaction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 154 + }, + { + "word": "recht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "right;quite", + "romanization": "recht", + "example_sentence_native": "Du hast recht.", + "example_sentence_english": "You are right.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 156 + }, + { + "word": "Recht", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "right;law", + "romanization": "Recht", + "example_sentence_native": "Du hast Recht. / Das ist mein Recht.", + "example_sentence_english": "You are right. / That is my right.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 156 + }, + { + "word": "finden", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to find", + "romanization": "finden", + "example_sentence_native": "Ich kann meine Schlüssel nicht finden.", + "example_sentence_english": "I cannot find my keys.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 157 + }, + { + "word": "Kind", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "child", + "romanization": "Kind", + "example_sentence_native": "Das Kind spielt im Garten.", + "example_sentence_english": "The child is playing in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 158 + }, + { + "word": "Geld", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "money", + "romanization": "Geld", + "example_sentence_native": "Ich habe kein Geld.", + "example_sentence_english": "I have no money.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 160 + }, + { + "word": "gleich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "same;equal;immediately", + "romanization": "gleich", + "example_sentence_native": "Wir haben die gleiche Meinung.", + "example_sentence_english": "We have the same opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 161 + }, + { + "word": "lang", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "long", + "romanization": "lang", + "example_sentence_native": "Der Weg ist sehr lang.", + "example_sentence_english": "The way is very long.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 162 + }, + { + "word": "Teil", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "part", + "romanization": "Teil", + "example_sentence_native": "Das ist ein wichtiger Teil des Projekts.", + "example_sentence_english": "That is an important part of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 163 + }, + { + "word": "beide", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "both", + "romanization": "beide", + "example_sentence_native": "Beide Kinder spielen im Garten.", + "example_sentence_english": "Both children are playing in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 164 + }, + { + "word": "davon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of it;from it;about it", + "romanization": "davon", + "example_sentence_native": "Ich weiß nichts davon.", + "example_sentence_english": "I know nothing about it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 165 + }, + { + "word": "eigentlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actually;really", + "romanization": "eigentlich", + "example_sentence_native": "Was machst du eigentlich?", + "example_sentence_english": "What are you actually doing?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 166 + }, + { + "word": "fast", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "almost;nearly", + "romanization": "fast", + "example_sentence_native": "Ich bin fast fertig.", + "example_sentence_english": "I am almost finished.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 167 + }, + { + "word": "richtig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "right;correct", + "romanization": "richtig", + "example_sentence_native": "Das ist die richtige Antwort.", + "example_sentence_english": "That is the correct answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 168 + }, + { + "word": "tun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to do;to put", + "romanization": "tun", + "example_sentence_native": "Was soll ich tun?", + "example_sentence_english": "What should I do?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 169 + }, + { + "word": "Arbeit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "work;job", + "romanization": "Arbeit", + "example_sentence_native": "Ich gehe zur Arbeit.", + "example_sentence_english": "I go to work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 170 + }, + { + "word": "Frage", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "question", + "romanization": "Frage", + "example_sentence_native": "Ich habe eine Frage.", + "example_sentence_english": "I have a question.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 172 + }, + { + "word": "zurück", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "back;return", + "romanization": "zurück", + "example_sentence_native": "Er kommt zurück.", + "example_sentence_english": "He is coming back.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 173 + }, + { + "word": "klar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clear;obvious", + "romanization": "klar", + "example_sentence_native": "Das ist ganz klar.", + "example_sentence_english": "That is very clear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 176 + }, + { + "word": "Paar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pair;couple", + "romanization": "Paar", + "example_sentence_native": "Sie sind ein glückliches Paar.", + "example_sentence_english": "They are a happy couple.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 177 + }, + { + "word": "Paar", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pair;couple", + "romanization": "Paar", + "example_sentence_native": "Ich habe ein neues Paar Schuhe gekauft.", + "example_sentence_english": "I bought a new pair of shoes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 177 + }, + { + "word": "gross", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "big;large;tall", + "romanization": "gross", + "example_sentence_native": "Das Haus ist gross.", + "example_sentence_english": "The house is big.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 178 + }, + { + "word": "liegen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to lie (down);to be located", + "romanization": "liegen", + "example_sentence_native": "Das Buch liegt auf dem Tisch.", + "example_sentence_english": "The book is lying on the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 179 + }, + { + "word": "zusammen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "together", + "romanization": "zusammen", + "example_sentence_native": "Wir gehen zusammen ins Kino.", + "example_sentence_english": "We are going to the cinema together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 181 + }, + { + "word": "einige", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "some;a few", + "romanization": "einige", + "example_sentence_native": "Ich habe einige Bücher gelesen.", + "example_sentence_english": "I have read some books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 182 + }, + { + "word": "Fall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "case;fall", + "romanization": "Fall", + "example_sentence_native": "In diesem Fall ist es anders.", + "example_sentence_english": "In this case, it is different.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 183 + }, + { + "word": "sicher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sure;safe;certainly", + "romanization": "sicher", + "example_sentence_native": "Bist du sicher?", + "example_sentence_english": "Are you sure?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 185 + }, + { + "word": "letzt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "last;final", + "romanization": "letzt", + "example_sentence_native": "Das ist das letzte Mal.", + "example_sentence_english": "This is the last time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 188 + }, + { + "word": "nein", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "no", + "romanization": "nein", + "example_sentence_native": "Nein, das stimmt nicht.", + "example_sentence_english": "No, that's not true.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "interjection", + "word_frequency": 189 + }, + { + "word": "schön", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beautiful", + "romanization": "schön", + "example_sentence_native": "Das ist ein schönes Bild.", + "example_sentence_english": "That is a beautiful picture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 190 + }, + { + "word": "sogar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "even", + "romanization": "sogar", + "example_sentence_native": "Er kann sogar Deutsch sprechen.", + "example_sentence_english": "He can even speak German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 191 + }, + { + "word": "zwar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indeed", + "romanization": "zwar", + "example_sentence_native": "Er ist zwar klein, aber sehr stark.", + "example_sentence_english": "He is indeed small, but very strong.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 192 + }, + { + "word": "allerdings", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "however", + "romanization": "allerdings", + "example_sentence_native": "Es war ein guter Plan, allerdings gab es Probleme bei der Umsetzung.", + "example_sentence_english": "It was a good plan, however there were problems with the implementation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 193 + }, + { + "word": "Art", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kind", + "romanization": "Art", + "example_sentence_native": "Welche Art von Musik magst du?", + "example_sentence_english": "What kind of music do you like?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 194 + }, + { + "word": "schnell", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fast", + "romanization": "schnell", + "example_sentence_native": "Das Auto ist sehr schnell.", + "example_sentence_english": "The car is very fast.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 195 + }, + { + "word": "spät", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "late", + "romanization": "spät", + "example_sentence_native": "Es ist schon spät.", + "example_sentence_english": "It's already late.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 200 + }, + { + "word": "gern", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gladly;with pleasure", + "romanization": "gern", + "example_sentence_native": "Ich trinke gern Kaffee.", + "example_sentence_english": "I like to drink coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 201 + }, + { + "word": "Seite", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "page;side", + "romanization": "Seite", + "example_sentence_native": "Bitte öffnen Sie das Buch auf Seite zehn.", + "example_sentence_english": "Please open the book to page ten.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 203 + }, + { + "word": "Spiel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "game;play", + "romanization": "Spiel", + "example_sentence_native": "Das Spiel beginnt um acht Uhr.", + "example_sentence_english": "The game starts at eight o'clock.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 204 + }, + { + "word": "wenig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little;few", + "romanization": "wenig", + "example_sentence_native": "Ich habe nur wenig Zeit.", + "example_sentence_english": "I only have little time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 205 + }, + { + "word": "heissen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be called;to mean", + "romanization": "heissen", + "example_sentence_native": "Ich heiße Anna.", + "example_sentence_english": "My name is Anna.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 207 + }, + { + "word": "Liebe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "love", + "romanization": "Liebe", + "example_sentence_native": "Die Liebe ist ein starkes Gefühl.", + "example_sentence_english": "Love is a strong feeling.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 208 + }, + { + "word": "oft", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "often", + "romanization": "oft", + "example_sentence_native": "Ich gehe oft spazieren.", + "example_sentence_english": "I often go for a walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 209 + }, + { + "word": "fragen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to ask", + "romanization": "fragen", + "example_sentence_native": "Ich möchte dich etwas fragen.", + "example_sentence_english": "I want to ask you something.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 210 + }, + { + "word": "Land", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "country;land", + "romanization": "Land", + "example_sentence_native": "Deutschland ist ein schönes Land.", + "example_sentence_english": "Germany is a beautiful country.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 211 + }, + { + "word": "gehören", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to belong to", + "romanization": "gehören", + "example_sentence_native": "Das Buch gehört mir.", + "example_sentence_english": "The book belongs to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 214 + }, + { + "word": "Platz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "place;space;square", + "romanization": "Platz", + "example_sentence_native": "Haben Sie einen freien Platz?", + "example_sentence_english": "Do you have a free seat/space?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 215 + }, + { + "word": "besonders", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially;particularly", + "romanization": "besonders", + "example_sentence_native": "Das Essen war besonders gut.", + "example_sentence_english": "The food was especially good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 216 + }, + { + "word": "Geschichte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "history;story", + "romanization": "Geschichte", + "example_sentence_native": "Ich lese gerne spannende Geschichten.", + "example_sentence_english": "I like to read exciting stories.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 217 + }, + { + "word": "nehmen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to take", + "romanization": "nehmen", + "example_sentence_native": "Ich nehme einen Kaffee.", + "example_sentence_english": "I'll take a coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 219 + }, + { + "word": "darüber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about it", + "romanization": "darüber", + "example_sentence_native": "Wir haben lange darüber gesprochen.", + "example_sentence_english": "We talked about it for a long time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 221 + }, + { + "word": "hin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "there (to a place away)", + "romanization": "hin", + "example_sentence_native": "Geh bitte hin und hol es.", + "example_sentence_english": "Please go there and get it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 222 + }, + { + "word": "vier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "four", + "romanization": "vier", + "example_sentence_native": "Ich habe vier Äpfel.", + "example_sentence_english": "I have four apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 223 + }, + { + "word": "kurz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "short", + "romanization": "kurz", + "example_sentence_native": "Das ist ein kurzes Buch.", + "example_sentence_english": "That is a short book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 224 + }, + { + "word": "Morgen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "morning", + "romanization": "Morgen", + "example_sentence_native": "Am Morgen trinke ich Kaffee.", + "example_sentence_english": "In the morning I drink coffee.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 225 + }, + { + "word": "Morgen", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "morning", + "romanization": "Morgen", + "example_sentence_native": "Guten Morgen!", + "example_sentence_english": "Good morning!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 225 + }, + { + "word": "sonst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "otherwise", + "romanization": "sonst", + "example_sentence_native": "Du musst dich beeilen, sonst verpasst du den Zug.", + "example_sentence_english": "You have to hurry, otherwise you'll miss the train.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 226 + }, + { + "word": "bekommen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to get;to receive", + "romanization": "bekommen", + "example_sentence_native": "Ich bekomme einen Brief.", + "example_sentence_english": "I receive a letter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 227 + }, + { + "word": "Euro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Euro", + "romanization": "Euro", + "example_sentence_native": "Das kostet zehn Euro.", + "example_sentence_english": "That costs ten Euros.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 229 + }, + { + "word": "klein", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "small", + "romanization": "klein", + "example_sentence_native": "Das ist ein kleines Haus.", + "example_sentence_english": "That is a small house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 230 + }, + { + "word": "spielen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to play", + "romanization": "spielen", + "example_sentence_native": "Kinder spielen gerne im Garten.", + "example_sentence_english": "Children like to play in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 231 + }, + { + "word": "Familie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "family", + "romanization": "Familie", + "example_sentence_native": "Meine Familie ist sehr wichtig für mich.", + "example_sentence_english": "My family is very important to me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 233 + }, + { + "word": "Haus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "house", + "romanization": "Haus", + "example_sentence_native": "Das Haus hat einen großen Garten.", + "example_sentence_english": "The house has a big garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 234 + }, + { + "word": "arbeiten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to work", + "romanization": "arbeiten", + "example_sentence_native": "Ich arbeite jeden Tag.", + "example_sentence_english": "I work every day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 235 + }, + { + "word": "Bild", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "picture", + "romanization": "Bild", + "example_sentence_native": "Das Bild hängt an der Wand.", + "example_sentence_english": "The picture hangs on the wall.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 236 + }, + { + "word": "bleiben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stay", + "romanization": "bleiben", + "example_sentence_native": "Ich möchte heute zu Hause bleiben.", + "example_sentence_english": "I want to stay at home today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 237 + }, + { + "word": "eigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "own", + "romanization": "eigen", + "example_sentence_native": "Er hat sein eigenes Auto.", + "example_sentence_english": "He has his own car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 238 + }, + { + "word": "je", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ever;each;per", + "romanization": "je", + "example_sentence_native": "Hast du je einen Elefanten gesehen?", + "example_sentence_english": "Have you ever seen an elephant?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 239 + }, + { + "word": "möglich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "possible", + "romanization": "möglich", + "example_sentence_native": "Ist das möglich?", + "example_sentence_english": "Is that possible?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 240 + }, + { + "word": "deshalb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "therefore", + "romanization": "deshalb", + "example_sentence_native": "Es regnet, deshalb bleibe ich zu Hause.", + "example_sentence_english": "It's raining, therefore I'm staying home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 242 + }, + { + "word": "eben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "just", + "romanization": "eben", + "example_sentence_native": "Das ist eben so.", + "example_sentence_english": "That's just the way it is.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 243 + }, + { + "word": "Minute", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute", + "romanization": "Minute", + "example_sentence_native": "Warte eine Minute.", + "example_sentence_english": "Wait a minute.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 245 + }, + { + "word": "Polizei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "police", + "romanization": "Polizei", + "example_sentence_native": "Die Polizei ist hier.", + "example_sentence_english": "The police are here.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 246 + }, + { + "word": "ausserdem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "besides", + "romanization": "ausserdem", + "example_sentence_native": "Ich mag Äpfel, ausserdem Birnen.", + "example_sentence_english": "I like apples, besides pears.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 247 + }, + { + "word": "leider", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unfortunately", + "romanization": "leider", + "example_sentence_native": "Leider kann ich nicht kommen.", + "example_sentence_english": "Unfortunately, I cannot come.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 248 + }, + { + "word": "online", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "online", + "romanization": "online", + "example_sentence_native": "Ich bin online.", + "example_sentence_english": "I am online.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 249 + }, + { + "word": "stellen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to place;to put", + "romanization": "stellen", + "example_sentence_native": "Ich stelle das Buch auf den Tisch.", + "example_sentence_english": "I place the book on the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 250 + }, + { + "word": "Unternehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company;enterprise", + "romanization": "Unternehmen", + "example_sentence_native": "Das Unternehmen hat viele Mitarbeiter.", + "example_sentence_english": "The company has many employees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 251 + }, + { + "word": "Woche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "week", + "romanization": "Woche", + "example_sentence_native": "Eine Woche hat sieben Tage.", + "example_sentence_english": "A week has seven days.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 252 + }, + { + "word": "daher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therefore;hence", + "romanization": "daher", + "example_sentence_native": "Es regnet, daher bleiben wir zu Hause.", + "example_sentence_english": "It's raining, therefore we are staying at home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 253 + }, + { + "word": "Grund", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reason;ground", + "romanization": "Grund", + "example_sentence_native": "Es gibt einen guten Grund dafür.", + "example_sentence_english": "There is a good reason for that.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 254 + }, + { + "word": "kaum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardly;scarcely", + "romanization": "kaum", + "example_sentence_native": "Ich kann es kaum glauben.", + "example_sentence_english": "I can hardly believe it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 255 + }, + { + "word": "Name", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "name", + "romanization": "Name", + "example_sentence_native": "Mein Name ist Anna.", + "example_sentence_english": "My name is Anna.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 256 + }, + { + "word": "Problem", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "problem", + "romanization": "Problem", + "example_sentence_native": "Das ist kein Problem.", + "example_sentence_english": "That is no problem.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 257 + }, + { + "word": "daran", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on it;about it", + "romanization": "daran", + "example_sentence_native": "Ich denke oft daran.", + "example_sentence_english": "I often think about it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 258 + }, + { + "word": "Nacht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "night", + "romanization": "Nacht", + "example_sentence_native": "Die Nacht ist dunkel.", + "example_sentence_english": "The night is dark.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 260 + }, + { + "word": "Stand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stand;state;position", + "romanization": "Stand", + "example_sentence_native": "Der Stand der Dinge ist unklar.", + "example_sentence_english": "The state of affairs is unclear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 261 + }, + { + "word": "Stunde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hour", + "romanization": "Stunde", + "example_sentence_native": "Eine Stunde hat sechzig Minuten.", + "example_sentence_english": "An hour has sixty minutes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 262 + }, + { + "word": "Thema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "topic;theme", + "romanization": "Thema", + "example_sentence_native": "Das Thema der Diskussion war interessant.", + "example_sentence_english": "The topic of the discussion was interesting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 263 + }, + { + "word": "Beispiel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "example", + "romanization": "Beispiel", + "example_sentence_native": "Kannst du mir ein Beispiel geben?", + "example_sentence_english": "Can you give me an example?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 264 + }, + { + "word": "genug", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "enough", + "romanization": "genug", + "example_sentence_native": "Ich habe genug Geld.", + "example_sentence_english": "I have enough money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 265 + }, + { + "word": "allein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alone", + "romanization": "allein", + "example_sentence_native": "Sie ist gern allein.", + "example_sentence_english": "She likes to be alone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 266 + }, + { + "word": "direkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "direct", + "romanization": "direkt", + "example_sentence_native": "Der Weg ist direkt.", + "example_sentence_english": "The path is direct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 268 + }, + { + "word": "echt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "real;genuine", + "romanization": "echt", + "example_sentence_native": "Das ist eine echte Herausforderung.", + "example_sentence_english": "That is a real challenge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 269 + }, + { + "word": "halten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to hold;to stop", + "romanization": "halten", + "example_sentence_native": "Bitte halten Sie die Tür offen.", + "example_sentence_english": "Please hold the door open.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 270 + }, + { + "word": "Schule", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "school", + "romanization": "Schule", + "example_sentence_native": "Die Schule beginnt um acht Uhr.", + "example_sentence_english": "School starts at eight o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 271 + }, + { + "word": "solche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "such;such a", + "romanization": "solche", + "example_sentence_native": "Solche Probleme sind selten.", + "example_sentence_english": "Such problems are rare.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 272 + }, + { + "word": "zeigen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to show;to point", + "romanization": "zeigen", + "example_sentence_native": "Kannst du mir den Weg zeigen?", + "example_sentence_english": "Can you show me the way?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 273 + }, + { + "word": "überhaupt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at all;anyway", + "romanization": "überhaupt", + "example_sentence_native": "Hast du überhaupt Hunger?", + "example_sentence_english": "Are you hungry at all?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 274 + }, + { + "word": "anders", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "different;otherwise", + "romanization": "anders", + "example_sentence_native": "Das ist ganz anders.", + "example_sentence_english": "That is completely different.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 275 + }, + { + "word": "essen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to eat", + "romanization": "essen", + "example_sentence_native": "Was möchtest du essen?", + "example_sentence_english": "What would you like to eat?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 276 + }, + { + "word": "Abend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "evening", + "romanization": "Abend", + "example_sentence_native": "Guten Abend!", + "example_sentence_english": "Good evening!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 278 + }, + { + "word": "Dank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thanks;gratitude", + "romanization": "Dank", + "example_sentence_native": "Vielen Dank für Ihre Hilfe.", + "example_sentence_english": "Many thanks for your help.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 279 + }, + { + "word": "ebenfalls", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "likewise", + "romanization": "ebenfalls", + "example_sentence_native": "Ich komme ebenfalls mit.", + "example_sentence_english": "I'm coming along likewise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 280 + }, + { + "word": "eher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rather", + "romanization": "eher", + "example_sentence_native": "Ich würde eher zu Hause bleiben.", + "example_sentence_english": "I would rather stay at home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 281 + }, + { + "word": "Musik", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "music", + "romanization": "Musik", + "example_sentence_native": "Ich höre gerne Musik.", + "example_sentence_english": "I like to listen to music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 284 + }, + { + "word": "Wasser", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "water", + "romanization": "Wasser", + "example_sentence_native": "Ich trinke gerne Wasser.", + "example_sentence_english": "I like to drink water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 287 + }, + { + "word": "alt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "old", + "romanization": "alt", + "example_sentence_native": "Das Haus ist sehr alt.", + "example_sentence_english": "The house is very old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 288 + }, + { + "word": "bald", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soon", + "romanization": "bald", + "example_sentence_native": "Ich komme bald nach Hause.", + "example_sentence_english": "I'm coming home soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 289 + }, + { + "word": "erhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to receive", + "romanization": "erhalten", + "example_sentence_native": "Ich habe einen Brief erhalten.", + "example_sentence_english": "I have received a letter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 290 + }, + { + "word": "lieb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dear;kind", + "romanization": "lieb", + "example_sentence_native": "Das ist sehr lieb von dir.", + "example_sentence_english": "That is very kind of you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 292 + }, + { + "word": "Ort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place;location", + "romanization": "Ort", + "example_sentence_native": "Das ist ein schöner Ort.", + "example_sentence_english": "That is a beautiful place.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 294 + }, + { + "word": "sofort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "immediately", + "romanization": "sofort", + "example_sentence_native": "Ich komme sofort.", + "example_sentence_english": "I'm coming immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 295 + }, + { + "word": "zweit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "second", + "romanization": "zweit", + "example_sentence_native": "Das ist mein zweites Buch.", + "example_sentence_english": "This is my second book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 296 + }, + { + "word": "Auto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car", + "romanization": "Auto", + "example_sentence_native": "Ich fahre mit dem Auto zur Arbeit.", + "example_sentence_english": "I drive to work by car.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 297 + }, + { + "word": "bringen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to bring", + "romanization": "bringen", + "example_sentence_native": "Kannst du mir das Buch bringen?", + "example_sentence_english": "Can you bring me the book?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 298 + }, + { + "word": "danach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "afterwards", + "romanization": "danach", + "example_sentence_native": "Wir haben gegessen, und danach sind wir ins Kino gegangen.", + "example_sentence_english": "We ate, and afterwards we went to the cinema.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 299 + }, + { + "word": "deutlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clear", + "romanization": "deutlich", + "example_sentence_native": "Er sprach sehr deutlich.", + "example_sentence_english": "He spoke very clearly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 300 + }, + { + "word": "Hand", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hand", + "romanization": "Hand", + "example_sentence_native": "Sie hielt meine Hand.", + "example_sentence_english": "She held my hand.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 302 + }, + { + "word": "Kopf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "head", + "romanization": "Kopf", + "example_sentence_native": "Er hat Kopfschmerzen.", + "example_sentence_english": "He has a headache.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 303 + }, + { + "word": "nächst", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "next", + "romanization": "nächst", + "example_sentence_native": "Wir treffen uns nächste Woche.", + "example_sentence_english": "We will meet next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 304 + }, + { + "word": "damals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at that time", + "romanization": "damals", + "example_sentence_native": "Damals lebten wir in Berlin.", + "example_sentence_english": "At that time, we lived in Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 306 + }, + { + "word": "endlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "finally", + "romanization": "endlich", + "example_sentence_native": "Endlich ist das Wochenende da!", + "example_sentence_english": "Finally, the weekend is here!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 307 + }, + { + "word": "fünf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "five", + "romanization": "fünf", + "example_sentence_native": "Ich habe fünf Äpfel.", + "example_sentence_english": "I have five apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 309 + }, + { + "word": "gelten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be valid;to apply", + "romanization": "gelten", + "example_sentence_native": "Diese Regel gilt für alle.", + "example_sentence_english": "This rule applies to everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 310 + }, + { + "word": "Person", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "person", + "romanization": "Person", + "example_sentence_native": "Jede Person hat Rechte.", + "example_sentence_english": "Every person has rights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 311 + }, + { + "word": "schwer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "heavy;difficult", + "romanization": "schwer", + "example_sentence_native": "Die Aufgabe ist sehr schwer.", + "example_sentence_english": "The task is very difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 312 + }, + { + "word": "wichtig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "important", + "romanization": "wichtig", + "example_sentence_native": "Das ist eine wichtige Information.", + "example_sentence_english": "That is important information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 313 + }, + { + "word": "egal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "all the same;doesn't matter", + "romanization": "egal", + "example_sentence_native": "Es ist mir egal.", + "example_sentence_english": "It's all the same to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 314 + }, + { + "word": "Gesellschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "society;company", + "romanization": "Gesellschaft", + "example_sentence_native": "Die Gesellschaft verändert sich schnell.", + "example_sentence_english": "Society is changing quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 315 + }, + { + "word": "hoch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "high;tall", + "romanization": "hoch", + "example_sentence_native": "Der Berg ist sehr hoch.", + "example_sentence_english": "The mountain is very high.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 316 + }, + { + "word": "stark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strong", + "romanization": "stark", + "example_sentence_native": "Er ist ein starker Mann.", + "example_sentence_english": "He is a strong man.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 318 + }, + { + "word": "Alter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "age", + "romanization": "Alter", + "example_sentence_native": "Welches Alter hat er?", + "example_sentence_english": "What age is he?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 319 + }, + { + "word": "Anfang", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beginning", + "romanization": "Anfang", + "example_sentence_native": "Am Anfang war es schwierig.", + "example_sentence_english": "In the beginning, it was difficult.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 320 + }, + { + "word": "oben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "above", + "romanization": "oben", + "example_sentence_native": "Er wohnt ganz oben.", + "example_sentence_english": "He lives right at the top.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 322 + }, + { + "word": "rund", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "round", + "romanization": "rund", + "example_sentence_native": "Der Tisch ist rund.", + "example_sentence_english": "The table is round.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 323 + }, + { + "word": "bekannt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "known", + "romanization": "bekannt", + "example_sentence_native": "Er ist ein bekannter Schauspieler.", + "example_sentence_english": "He is a famous actor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 326 + }, + { + "word": "bisher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "so far", + "romanization": "bisher", + "example_sentence_native": "Bisher läuft alles gut.", + "example_sentence_english": "So far, everything is going well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 327 + }, + { + "word": "Gott", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "God", + "romanization": "Gott", + "example_sentence_native": "Gott sei Dank!", + "example_sentence_english": "Thank God!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 330 + }, + { + "word": "los", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "loose;off;gone", + "romanization": "los", + "example_sentence_native": "Was ist los?", + "example_sentence_english": "What's going on?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 331 + }, + { + "word": "Mutter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother", + "romanization": "Mutter", + "example_sentence_native": "Meine Mutter ist sehr nett.", + "example_sentence_english": "My mother is very nice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 332 + }, + { + "word": "Auge", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eye", + "romanization": "Auge", + "example_sentence_native": "Sie hat blaue Augen.", + "example_sentence_english": "She has blue eyes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 333 + }, + { + "word": "brauchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to need", + "romanization": "brauchen", + "example_sentence_native": "Ich brauche deine Hilfe.", + "example_sentence_english": "I need your help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 334 + }, + { + "word": "denken", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to think", + "romanization": "denken", + "example_sentence_native": "Ich denke, es ist eine gute Idee.", + "example_sentence_english": "I think it's a good idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 335 + }, + { + "word": "Gruppe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "group", + "romanization": "Gruppe", + "example_sentence_native": "Die Gruppe trifft sich um acht Uhr.", + "example_sentence_english": "The group meets at eight o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 336 + }, + { + "word": "her", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hither;here (towards the speaker)", + "romanization": "her", + "example_sentence_native": "Komm mal her!", + "example_sentence_english": "Come here!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 337 + }, + { + "word": "meist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "most;mostly", + "romanization": "meist", + "example_sentence_native": "Die meisten Leute mögen Pizza.", + "example_sentence_english": "Most people like pizza.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 339 + }, + { + "word": "Million", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "million", + "romanization": "Million", + "example_sentence_native": "Eine Million Menschen leben in dieser Stadt.", + "example_sentence_english": "A million people live in this city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 340 + }, + { + "word": "schreiben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to write", + "romanization": "schreiben", + "example_sentence_native": "Ich schreibe einen Brief.", + "example_sentence_english": "I am writing a letter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 341 + }, + { + "word": "treffen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to meet;to hit", + "romanization": "treffen", + "example_sentence_native": "Wir treffen uns morgen.", + "example_sentence_english": "We are meeting tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 342 + }, + { + "word": "trotzdem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nevertheless;despite that", + "romanization": "trotzdem", + "example_sentence_native": "Es regnete, trotzdem gingen wir spazieren.", + "example_sentence_english": "It was raining, nevertheless we went for a walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 343 + }, + { + "word": "Artikel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "article;item", + "romanization": "Artikel", + "example_sentence_native": "Ich lese einen interessanten Artikel in der Zeitung.", + "example_sentence_english": "I am reading an interesting article in the newspaper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 344 + }, + { + "word": "bestimmt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certain;definite;certainly", + "romanization": "bestimmt", + "example_sentence_native": "Das ist bestimmt richtig.", + "example_sentence_english": "That is certainly correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 345 + }, + { + "word": "Folge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consequence;episode;sequence", + "romanization": "Folge", + "example_sentence_native": "Das ist die letzte Folge der Serie.", + "example_sentence_english": "This is the last episode of the series.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 346 + }, + { + "word": "Glück", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "luck;happiness", + "romanization": "Glück", + "example_sentence_native": "Ich wünsche dir viel Glück!", + "example_sentence_english": "I wish you good luck!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 347 + }, + { + "word": "Herr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mr.;sir;gentleman", + "romanization": "Herr", + "example_sentence_native": "Guten Tag, Herr Müller.", + "example_sentence_english": "Good day, Mr. Müller.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 348 + }, + { + "word": "Hilfe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "help;aid", + "romanization": "Hilfe", + "example_sentence_native": "Kannst du mir bitte Hilfe leisten?", + "example_sentence_english": "Can you please give me help?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 349 + }, + { + "word": "leicht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "light;easy", + "romanization": "leicht", + "example_sentence_native": "Die Aufgabe ist sehr leicht.", + "example_sentence_english": "The task is very easy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 350 + }, + { + "word": "mehrere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "several", + "romanization": "mehrere", + "example_sentence_native": "Ich habe mehrere Bücher gelesen.", + "example_sentence_english": "I have read several books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 351 + }, + { + "word": "Politik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politics;policy", + "romanization": "Politik", + "example_sentence_native": "Sie interessiert sich für Politik.", + "example_sentence_english": "She is interested in politics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 353 + }, + { + "word": "Sache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thing;matter;affair", + "romanization": "Sache", + "example_sentence_native": "Das ist eine komplizierte Sache.", + "example_sentence_english": "That is a complicated matter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 354 + }, + { + "word": "scheinen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to seem;to shine", + "romanization": "scheinen", + "example_sentence_native": "Die Sonne scheint heute.", + "example_sentence_english": "The sun is shining today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 355 + }, + { + "word": "zunächst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "first;initially", + "romanization": "zunächst", + "example_sentence_native": "Zunächst müssen wir die Regeln lernen.", + "example_sentence_english": "First, we have to learn the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 356 + }, + { + "word": "Film", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "film;movie", + "romanization": "Film", + "example_sentence_native": "Ich sehe gern einen Film.", + "example_sentence_english": "I like to watch a movie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 359 + }, + { + "word": "Internet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Internet", + "romanization": "Internet", + "example_sentence_native": "Das Internet ist eine wichtige Informationsquelle.", + "example_sentence_english": "The Internet is an important source of information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 360 + }, + { + "word": "laut", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "loud", + "romanization": "laut", + "example_sentence_native": "Die Musik ist zu laut.", + "example_sentence_english": "The music is too loud.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 361 + }, + { + "word": "lesen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to read", + "romanization": "lesen", + "example_sentence_native": "Ich lese jeden Abend ein Buch.", + "example_sentence_english": "I read a book every evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 362 + }, + { + "word": "Regierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "government", + "romanization": "Regierung", + "example_sentence_native": "Die Regierung hat neue Gesetze verabschiedet.", + "example_sentence_english": "The government has passed new laws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 364 + }, + { + "word": "Richtung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "direction", + "romanization": "Richtung", + "example_sentence_native": "In welche Richtung müssen wir gehen?", + "example_sentence_english": "In which direction do we have to go?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 365 + }, + { + "word": "schliesslich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finally;eventually", + "romanization": "schliesslich", + "example_sentence_native": "Schliesslich haben wir die Lösung gefunden.", + "example_sentence_english": "Finally, we found the solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 366 + }, + { + "word": "Team", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "team", + "romanization": "Team", + "example_sentence_native": "Unser Team hat das Spiel gewonnen.", + "example_sentence_english": "Our team won the game.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 367 + }, + { + "word": "Buch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "book", + "romanization": "Buch", + "example_sentence_native": "Das ist ein sehr interessantes Buch.", + "example_sentence_english": "That is a very interesting book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 369 + }, + { + "word": "Ding", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thing", + "romanization": "Ding", + "example_sentence_native": "Das ist ein kleines Ding.", + "example_sentence_english": "That is a small thing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 370 + }, + { + "word": "früh", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "early", + "romanization": "früh", + "example_sentence_native": "Ich stehe jeden Morgen früh auf.", + "example_sentence_english": "I get up early every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 371 + }, + { + "word": "Prozent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "percent", + "romanization": "Prozent", + "example_sentence_native": "Zehn Prozent der Bevölkerung sind Studenten.", + "example_sentence_english": "Ten percent of the population are students.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 374 + }, + { + "word": "Sohn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "son", + "romanization": "Sohn", + "example_sentence_native": "Mein Sohn geht zur Schule.", + "example_sentence_english": "My son goes to school.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 375 + }, + { + "word": "Spass", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fun", + "romanization": "Spass", + "example_sentence_native": "Wir hatten viel Spass auf der Party.", + "example_sentence_english": "We had a lot of fun at the party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 376 + }, + { + "word": "Stelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place;position;job", + "romanization": "Stelle", + "example_sentence_native": "Ich suche eine neue Stelle.", + "example_sentence_english": "I am looking for a new job.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 377 + }, + { + "word": "Wort", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "word", + "romanization": "Wort", + "example_sentence_native": "Dieses Wort ist schwer auszusprechen.", + "example_sentence_english": "This word is difficult to pronounce.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 379 + }, + { + "word": "Bereich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area;field;domain", + "romanization": "Bereich", + "example_sentence_native": "Dieser Bereich ist sehr wichtig für unsere Forschung.", + "example_sentence_english": "This area is very important for our research.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 380 + }, + { + "word": "bestehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pass (an exam);to exist;to consist of", + "romanization": "bestehen", + "example_sentence_native": "Er muss die Prüfung bestehen.", + "example_sentence_english": "He has to pass the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 381 + }, + { + "word": "ernst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serious;earnest", + "romanization": "ernst", + "example_sentence_native": "Das ist eine ernste Angelegenheit.", + "example_sentence_english": "That is a serious matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 382 + }, + { + "word": "Mädchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girl", + "romanization": "Mädchen", + "example_sentence_native": "Das kleine Mädchen spielt im Garten.", + "example_sentence_english": "The little girl is playing in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 383 + }, + { + "word": "Vater", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father", + "romanization": "Vater", + "example_sentence_native": "Mein Vater liest die Zeitung.", + "example_sentence_english": "My father is reading the newspaper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 385 + }, + { + "word": "Zukunft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "future", + "romanization": "Zukunft", + "example_sentence_native": "Wir planen unsere Zukunft.", + "example_sentence_english": "We are planning our future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 386 + }, + { + "word": "darum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therefore;that's why;around it", + "romanization": "darum", + "example_sentence_native": "Es regnet, darum bleiben wir zu Hause.", + "example_sentence_english": "It's raining, therefore we are staying at home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 387 + }, + { + "word": "fahren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to drive;to go (by vehicle)", + "romanization": "fahren", + "example_sentence_native": "Ich fahre jeden Tag zur Arbeit.", + "example_sentence_english": "I drive to work every day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 388 + }, + { + "word": "fest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm;solid;fixed", + "romanization": "fest", + "example_sentence_native": "Der Tisch steht fest auf dem Boden.", + "example_sentence_english": "The table stands firmly on the floor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 389 + }, + { + "word": "Form", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "form;shape", + "romanization": "Form", + "example_sentence_native": "Die Form des Tisches ist rund.", + "example_sentence_english": "The form of the table is round.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 390 + }, + { + "word": "frei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "free;available", + "romanization": "frei", + "example_sentence_native": "Ich bin heute Abend frei.", + "example_sentence_english": "I am free tonight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 391 + }, + { + "word": "Idee", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "idea", + "romanization": "Idee", + "example_sentence_native": "Das ist eine gute Idee.", + "example_sentence_english": "That is a good idea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 392 + }, + { + "word": "passieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to happen;to pass", + "romanization": "passieren", + "example_sentence_native": "Was ist passiert?", + "example_sentence_english": "What happened?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 395 + }, + { + "word": "manchmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sometimes", + "romanization": "manchmal", + "example_sentence_native": "Manchmal regnet es im Sommer.", + "example_sentence_english": "Sometimes it rains in summer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 399 + }, + { + "word": "raus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "out;outside", + "romanization": "raus", + "example_sentence_native": "Komm raus!", + "example_sentence_english": "Come out!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 400 + }, + { + "word": "super", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "great;super", + "romanization": "super", + "example_sentence_native": "Das ist super!", + "example_sentence_english": "That is great!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 401 + }, + { + "word": "Wahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choice;election", + "romanization": "Wahl", + "example_sentence_native": "Wir haben die Wahl.", + "example_sentence_english": "We have the choice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 403 + }, + { + "word": "Wert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "value;worth", + "romanization": "Wert", + "example_sentence_native": "Dieser Ring hat einen hohen Wert.", + "example_sentence_english": "This ring has a high value.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 404 + }, + { + "word": "einzig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "only;sole;unique", + "romanization": "einzig", + "example_sentence_native": "Das ist der einzige Weg.", + "example_sentence_english": "That is the only way.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 406 + }, + { + "word": "Entwicklung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development", + "romanization": "Entwicklung", + "example_sentence_native": "Die Entwicklung der Technologie ist schnell.", + "example_sentence_english": "The development of technology is fast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 407 + }, + { + "word": "folgen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to follow", + "romanization": "folgen", + "example_sentence_native": "Bitte folgen Sie mir.", + "example_sentence_english": "Please follow me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 408 + }, + { + "word": "Freund", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "friend (male)", + "romanization": "Freund", + "example_sentence_native": "Er ist mein bester Freund.", + "example_sentence_english": "He is my best friend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 409 + }, + { + "word": "führen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to lead;to guide", + "romanization": "führen", + "example_sentence_native": "Er kann das Team gut führen.", + "example_sentence_english": "He can lead the team well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 410 + }, + { + "word": "helfen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to help", + "romanization": "helfen", + "example_sentence_native": "Kannst du mir bitte helfen?", + "example_sentence_english": "Can you please help me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 411 + }, + { + "word": "kosten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cost", + "romanization": "kosten", + "example_sentence_native": "Wie viel kostet das?", + "example_sentence_english": "How much does that cost?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 412 + }, + { + "word": "suchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to search;to look for", + "romanization": "suchen", + "example_sentence_native": "Ich suche meine Schlüssel.", + "example_sentence_english": "I am looking for my keys.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 414 + }, + { + "word": "Ziel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goal;destination;target", + "romanization": "Ziel", + "example_sentence_native": "Unser Ziel ist es, die Prüfung zu bestehen.", + "example_sentence_english": "Our goal is to pass the exam.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 415 + }, + { + "word": "ziemlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quite;rather;pretty", + "romanization": "ziemlich", + "example_sentence_native": "Das Wetter ist heute ziemlich gut.", + "example_sentence_english": "The weather is quite good today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 416 + }, + { + "word": "Angst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fear", + "romanization": "Angst", + "example_sentence_native": "Sie hat Angst vor Spinnen.", + "example_sentence_english": "She has a fear of spiders.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 417 + }, + { + "word": "ca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approx.;about;circa", + "romanization": "ca", + "example_sentence_native": "Die Reise dauert ca. drei Stunden.", + "example_sentence_english": "The journey takes approx. three hours.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 418 + }, + { + "word": "dadurch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thereby;as a result;by that", + "romanization": "dadurch", + "example_sentence_native": "Er lernte fleißig, dadurch bestand er die Prüfung.", + "example_sentence_english": "He studied diligently, thereby passing the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 419 + }, + { + "word": "Erfolg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "success", + "romanization": "Erfolg", + "example_sentence_native": "Wir wünschen Ihnen viel Erfolg bei Ihrem Projekt.", + "example_sentence_english": "We wish you much success with your project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 420 + }, + { + "word": "Krieg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "war", + "romanization": "Krieg", + "example_sentence_native": "Der Krieg hatte verheerende Folgen.", + "example_sentence_english": "The war had devastating consequences.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 421 + }, + { + "word": "Lage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situation", + "romanization": "Lage", + "example_sentence_native": "Die politische Lage ist sehr angespannt.", + "example_sentence_english": "The political situation is very tense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 422 + }, + { + "word": "laufen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to run", + "romanization": "laufen", + "example_sentence_native": "Ich laufe jeden Morgen im Park.", + "example_sentence_english": "I run every morning in the park.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 423 + }, + { + "word": "verstehen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to understand", + "romanization": "verstehen", + "example_sentence_native": "Ich verstehe die Frage nicht.", + "example_sentence_english": "I don't understand the question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 427 + }, + { + "word": "voll", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "full", + "romanization": "voll", + "example_sentence_native": "Das Glas ist voll Wasser.", + "example_sentence_english": "The glass is full of water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 428 + }, + { + "word": "wann", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "when", + "romanization": "wann", + "example_sentence_native": "Wann kommst du nach Hause?", + "example_sentence_english": "When are you coming home?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 429 + }, + { + "word": "wieso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "why;how come", + "romanization": "wieso", + "example_sentence_native": "Wieso bist du so spät?", + "example_sentence_english": "Why are you so late?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 430 + }, + { + "word": "insgesamt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overall;in total", + "romanization": "insgesamt", + "example_sentence_native": "Insgesamt waren es zehn Personen.", + "example_sentence_english": "Overall, there were ten people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 434 + }, + { + "word": "Klasse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "class;grade", + "romanization": "Klasse", + "example_sentence_native": "Meine Klasse ist sehr groß.", + "example_sentence_english": "My class is very big.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 435 + }, + { + "word": "Preis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "price;prize", + "romanization": "Preis", + "example_sentence_native": "Der Preis für das Buch ist hoch.", + "example_sentence_english": "The price for the book is high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 437 + }, + { + "word": "rein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pure;clean", + "romanization": "rein", + "example_sentence_native": "Das Wasser ist rein.", + "example_sentence_english": "The water is pure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 438 + }, + { + "word": "Rolle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "role;roll", + "romanization": "Rolle", + "example_sentence_native": "Sie spielt eine wichtige Rolle in dem Stück.", + "example_sentence_english": "She plays an important role in the play.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 439 + }, + { + "word": "stimmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be correct;to vote", + "romanization": "stimmen", + "example_sentence_native": "Das stimmt nicht.", + "example_sentence_english": "That's not correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 440 + }, + { + "word": "Tod", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "death", + "romanization": "Tod", + "example_sentence_native": "Der Tod ist ein Teil des Lebens.", + "example_sentence_english": "Death is a part of life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 441 + }, + { + "word": "völlig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely;totally", + "romanization": "völlig", + "example_sentence_native": "Ich bin völlig erschöpft.", + "example_sentence_english": "I am completely exhausted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 442 + }, + { + "word": "gestern", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yesterday", + "romanization": "gestern", + "example_sentence_native": "Ich habe ihn gestern gesehen.", + "example_sentence_english": "I saw him yesterday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 447 + }, + { + "word": "irgendwie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somehow;anyway", + "romanization": "irgendwie", + "example_sentence_native": "Wir müssen das irgendwie schaffen.", + "example_sentence_english": "We have to manage that somehow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 448 + }, + { + "word": "Kirche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "church", + "romanization": "Kirche", + "example_sentence_native": "Die Kirche ist sehr alt.", + "example_sentence_english": "The church is very old.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 449 + }, + { + "word": "März", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "March", + "romanization": "März", + "example_sentence_native": "Der März ist der dritte Monat des Jahres.", + "example_sentence_english": "March is the third month of the year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 450 + }, + { + "word": "vergessen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to forget", + "romanization": "vergessen", + "example_sentence_native": "Ich habe meine Schlüssel vergessen.", + "example_sentence_english": "I forgot my keys.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 453 + }, + { + "word": "verschieden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "different;various", + "romanization": "verschieden", + "example_sentence_native": "Wir haben verschiedene Meinungen.", + "example_sentence_english": "We have different opinions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 454 + }, + { + "word": "vorbei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "past;over;by", + "romanization": "vorbei", + "example_sentence_native": "Der Zug fuhr am Bahnhof vorbei.", + "example_sentence_english": "The train drove past the station.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 455 + }, + { + "word": "Blick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glance;view;look", + "romanization": "Blick", + "example_sentence_native": "Er warf einen schnellen Blick auf die Uhr.", + "example_sentence_english": "He cast a quick glance at the clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 457 + }, + { + "word": "dagegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "against it;in contrast", + "romanization": "dagegen", + "example_sentence_native": "Ich habe nichts dagegen.", + "example_sentence_english": "I have nothing against it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 458 + }, + { + "word": "ebenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "likewise;just as", + "romanization": "ebenso", + "example_sentence_native": "Er ist ebenso klug wie sein Bruder.", + "example_sentence_english": "He is just as clever as his brother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 459 + }, + { + "word": "kaufen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to buy", + "romanization": "kaufen", + "example_sentence_native": "Ich möchte ein neues Buch kaufen.", + "example_sentence_english": "I want to buy a new book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 460 + }, + { + "word": "lernen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to learn", + "romanization": "lernen", + "example_sentence_native": "Wir lernen Deutsch.", + "example_sentence_english": "We are learning German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 461 + }, + { + "word": "Meinung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "opinion", + "romanization": "Meinung", + "example_sentence_native": "Das ist meine Meinung dazu.", + "example_sentence_english": "That is my opinion on it.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 462 + }, + { + "word": "Partei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "party", + "romanization": "Partei", + "example_sentence_native": "Er ist Mitglied einer politischen Partei.", + "example_sentence_english": "He is a member of a political party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 463 + }, + { + "word": "reden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to talk", + "romanization": "reden", + "example_sentence_native": "Sie reden über das Wetter.", + "example_sentence_english": "They are talking about the weather.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 464 + }, + { + "word": "Junge", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boy", + "romanization": "Junge", + "example_sentence_native": "Der Junge spielt im Garten.", + "example_sentence_english": "The boy is playing in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 467 + }, + { + "word": "Moment", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moment", + "romanization": "Moment", + "example_sentence_native": "Einen Moment, bitte!", + "example_sentence_english": "One moment, please!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 468 + }, + { + "word": "schlecht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bad", + "romanization": "schlecht", + "example_sentence_native": "Das Wetter ist heute schlecht.", + "example_sentence_english": "The weather is bad today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 469 + }, + { + "word": "sechs", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "six", + "romanization": "sechs", + "example_sentence_native": "Ich habe sechs Äpfel.", + "example_sentence_english": "I have six apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 470 + }, + { + "word": "sprechen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to speak", + "romanization": "sprechen", + "example_sentence_native": "Kannst du Deutsch sprechen?", + "example_sentence_english": "Can you speak German?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 471 + }, + { + "word": "Video", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video", + "romanization": "Video", + "example_sentence_native": "Ich schaue ein Video.", + "example_sentence_english": "I am watching a video.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 472 + }, + { + "word": "Mitte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "middle;center", + "romanization": "Mitte", + "example_sentence_native": "Die Mitte des Raumes ist leer.", + "example_sentence_english": "The middle of the room is empty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 475 + }, + { + "word": "wahrscheinlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probable;likely", + "romanization": "wahrscheinlich", + "example_sentence_native": "Es ist wahrscheinlich, dass es morgen regnet.", + "example_sentence_english": "It is probable that it will rain tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 480 + }, + { + "word": "April", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "April", + "romanization": "April", + "example_sentence_native": "Der April ist ein Frühlingsmonat.", + "example_sentence_english": "April is a spring month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 481 + }, + { + "word": "insbesondere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "especially;in particular", + "romanization": "insbesondere", + "example_sentence_native": "Ich mag alle Früchte, insbesondere Äpfel.", + "example_sentence_english": "I like all fruits, especially apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 483 + }, + { + "word": "Raum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "room;space", + "romanization": "Raum", + "example_sentence_native": "Das Wohnzimmer ist ein großer Raum.", + "example_sentence_english": "The living room is a large room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 487 + }, + { + "word": "System", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "system", + "romanization": "System", + "example_sentence_native": "Das Computersystem funktioniert nicht.", + "example_sentence_english": "The computer system is not working.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 488 + }, + { + "word": "tatsächlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actually;indeed;in fact", + "romanization": "tatsächlich", + "example_sentence_native": "Er war tatsächlich sehr überrascht.", + "example_sentence_english": "He was actually very surprised.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 489 + }, + { + "word": "erreichen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reach;to achieve", + "romanization": "erreichen", + "example_sentence_native": "Wir müssen das Ziel erreichen.", + "example_sentence_english": "We must reach the goal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 491 + }, + { + "word": "gemeinsam", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "common;together", + "romanization": "gemeinsam", + "example_sentence_native": "Wir arbeiten gemeinsam an dem Projekt.", + "example_sentence_english": "We are working together on the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 492 + }, + { + "word": "Juli", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "July", + "romanization": "Juli", + "example_sentence_native": "Im Juli fahren wir in den Urlaub.", + "example_sentence_english": "In July we go on vacation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 493 + }, + { + "word": "Juni", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "June", + "romanization": "Juni", + "example_sentence_native": "Der Juni ist ein schöner Monat.", + "example_sentence_english": "June is a beautiful month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 494 + }, + { + "word": "links", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "left;to the left", + "romanization": "links", + "example_sentence_native": "Bitte gehen Sie links.", + "example_sentence_english": "Please go left.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adverb", + "word_frequency": 495 + }, + { + "word": "Links", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "links (hyperlinks)", + "romanization": "Links", + "example_sentence_native": "Die Webseite hat viele nützliche Links.", + "example_sentence_english": "The website has many useful links.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 495 + }, + { + "word": "Oktober", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "October", + "romanization": "Oktober", + "example_sentence_native": "Im Oktober feiern wir das Oktoberfest.", + "example_sentence_english": "In October we celebrate Oktoberfest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 498 + }, + { + "word": "schaffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to create;to manage;to accomplish", + "romanization": "schaffen", + "example_sentence_native": "Ich werde es schaffen.", + "example_sentence_english": "I will manage it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 499 + }, + { + "word": "setzen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to set;to put;to place", + "romanization": "setzen", + "example_sentence_native": "Er setzt sich auf den Stuhl.", + "example_sentence_english": "He sits down on the chair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 500 + }, + { + "word": "Suche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "search", + "romanization": "Suche", + "example_sentence_native": "Die Suche nach dem Schlüssel war lang.", + "example_sentence_english": "The search for the key was long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 501 + }, + { + "word": "versuchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to try;to attempt", + "romanization": "versuchen", + "example_sentence_native": "Ich werde versuchen, pünktlich zu sein.", + "example_sentence_english": "I will try to be on time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 502 + }, + { + "word": "bedeuten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mean;to signify", + "romanization": "bedeuten", + "example_sentence_native": "Was bedeutet dieses Wort?", + "example_sentence_english": "What does this word mean?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 503 + }, + { + "word": "Einsatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deployment;effort;stake", + "romanization": "Einsatz", + "example_sentence_native": "Der Feuerwehrmann zeigte großen Einsatz.", + "example_sentence_english": "The firefighter showed great effort.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 504 + }, + { + "word": "F", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "F (letter)", + "romanization": "F", + "example_sentence_native": "Das Wort beginnt mit einem F.", + "example_sentence_english": "The word starts with an F.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 505 + }, + { + "word": "gleichzeitig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simultaneously;at the same time", + "romanization": "gleichzeitig", + "example_sentence_native": "Sie sangen und tanzten gleichzeitig.", + "example_sentence_english": "They sang and danced simultaneously.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 507 + }, + { + "word": "hören", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to hear;to listen", + "romanization": "hören", + "example_sentence_native": "Ich höre Musik.", + "example_sentence_english": "I am listening to music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 508 + }, + { + "word": "Möglichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibility;option", + "romanization": "Möglichkeit", + "example_sentence_native": "Es gibt viele Möglichkeiten, dieses Problem zu lösen.", + "example_sentence_english": "There are many possibilities to solve this problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 510 + }, + { + "word": "Rahmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frame;context", + "romanization": "Rahmen", + "example_sentence_native": "Das Bild ist in einem schönen Rahmen.", + "example_sentence_english": "The picture is in a beautiful frame.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 512 + }, + { + "word": "rechts", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "right (direction)", + "romanization": "rechts", + "example_sentence_native": "Gehen Sie hier rechts ab.", + "example_sentence_english": "Turn right here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 513 + }, + { + "word": "Stück", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "piece;bit;item", + "romanization": "Stück", + "example_sentence_native": "Ich hätte gerne ein Stück Kuchen.", + "example_sentence_english": "I would like a piece of cake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 515 + }, + { + "word": "fallen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to fall", + "romanization": "fallen", + "example_sentence_native": "Der Apfel fällt vom Baum.", + "example_sentence_english": "The apple falls from the tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 517 + }, + { + "word": "hoffen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hope", + "romanization": "hoffen", + "example_sentence_native": "Ich hoffe, du hast einen schönen Tag.", + "example_sentence_english": "I hope you have a nice day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 518 + }, + { + "word": "Höhe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "height;altitude", + "romanization": "Höhe", + "example_sentence_native": "Die Höhe des Berges ist beeindruckend.", + "example_sentence_english": "The height of the mountain is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 519 + }, + { + "word": "Job", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "job", + "romanization": "Job", + "example_sentence_native": "Mein Job ist sehr interessant.", + "example_sentence_english": "My job is very interesting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 520 + }, + { + "word": "Sex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sex", + "romanization": "Sex", + "example_sentence_native": "Das Thema Sex ist oft kontrovers.", + "example_sentence_english": "The topic of sex is often controversial.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 522 + }, + { + "word": "Sommer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "summer", + "romanization": "Sommer", + "example_sentence_native": "Der Sommer ist meine Lieblingsjahreszeit.", + "example_sentence_english": "Summer is my favorite season.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 523 + }, + { + "word": "Titel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "title", + "romanization": "Titel", + "example_sentence_native": "Der Titel des Buches ist sehr lang.", + "example_sentence_english": "The title of the book is very long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 524 + }, + { + "word": "Tochter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "daughter", + "romanization": "Tochter", + "example_sentence_native": "Meine Tochter geht zur Schule.", + "example_sentence_english": "My daughter goes to school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 525 + }, + { + "word": "Wohnung", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apartment", + "romanization": "Wohnung", + "example_sentence_native": "Ich suche eine neue Wohnung.", + "example_sentence_english": "I am looking for a new apartment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 526 + }, + { + "word": "zehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ten", + "romanization": "zehn", + "example_sentence_native": "Ich habe zehn Finger.", + "example_sentence_english": "I have ten fingers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 527 + }, + { + "word": "handeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act;to deal", + "romanization": "handeln", + "example_sentence_native": "Man muss schnell handeln.", + "example_sentence_english": "One must act quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 528 + }, + { + "word": "kennen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know (people;places;facts)", + "romanization": "kennen", + "example_sentence_native": "Ich kenne diesen Mann nicht.", + "example_sentence_english": "I don't know this man.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 529 + }, + { + "word": "Kunst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "art", + "romanization": "Kunst", + "example_sentence_native": "Die Kunst ist eine Form des Ausdrucks.", + "example_sentence_english": "Art is a form of expression.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 530 + }, + { + "word": "Mitarbeiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employee", + "romanization": "Mitarbeiter", + "example_sentence_native": "Jeder Mitarbeiter hat eine wichtige Rolle im Team.", + "example_sentence_english": "Every employee has an important role in the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 531 + }, + { + "word": "Sprache", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "language", + "romanization": "Sprache", + "example_sentence_native": "Deutsch ist eine schöne Sprache.", + "example_sentence_english": "German is a beautiful language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 533 + }, + { + "word": "verlieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lose", + "romanization": "verlieren", + "example_sentence_native": "Ich möchte meine Schlüssel nicht verlieren.", + "example_sentence_english": "I don't want to lose my keys.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 534 + }, + { + "word": "zumindest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at least", + "romanization": "zumindest", + "example_sentence_native": "Zumindest können wir es versuchen.", + "example_sentence_english": "At least we can try.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 536 + }, + { + "word": "übrigens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by the way;incidentally", + "romanization": "übrigens", + "example_sentence_native": "Übrigens, hast du schon gegessen?", + "example_sentence_english": "By the way, have you eaten yet?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 537 + }, + { + "word": "Bad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bath;bathroom", + "romanization": "Bad", + "example_sentence_native": "Das Bad ist im ersten Stock.", + "example_sentence_english": "The bathroom is on the first floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 538 + }, + { + "word": "Band", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ribbon;tape;bond", + "romanization": "Band", + "example_sentence_native": "Das Band ist rot.", + "example_sentence_english": "The ribbon is red.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 539 + }, + { + "word": "Chance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chance;opportunity", + "romanization": "Chance", + "example_sentence_native": "Das ist deine letzte Chance.", + "example_sentence_english": "This is your last chance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 540 + }, + { + "word": "Fehler", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mistake;error", + "romanization": "Fehler", + "example_sentence_native": "Ich habe einen Fehler gemacht.", + "example_sentence_english": "I made a mistake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 541 + }, + { + "word": "hinaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "out;outwards", + "romanization": "hinaus", + "example_sentence_native": "Er ging hinaus auf die Straße.", + "example_sentence_english": "He went out onto the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 544 + }, + { + "word": "langsam", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "slow", + "romanization": "langsam", + "example_sentence_native": "Das Auto fährt langsam.", + "example_sentence_english": "The car drives slowly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 545 + }, + { + "word": "Menge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quantity;amount;crowd", + "romanization": "Menge", + "example_sentence_native": "Eine große Menge Leute wartete.", + "example_sentence_english": "A large crowd of people waited.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 546 + }, + { + "word": "Meter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meter", + "romanization": "Meter", + "example_sentence_native": "Der Tisch ist zwei Meter lang.", + "example_sentence_english": "The table is two meters long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 547 + }, + { + "word": "mindestens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at least", + "romanization": "mindestens", + "example_sentence_native": "Du solltest mindestens acht Stunden schlafen.", + "example_sentence_english": "You should sleep at least eight hours.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 548 + }, + { + "word": "Sicherheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "security;safety", + "romanization": "Sicherheit", + "example_sentence_native": "Die Sicherheit ist hier sehr wichtig.", + "example_sentence_english": "Safety is very important here.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 550 + }, + { + "word": "Spieler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "player", + "romanization": "Spieler", + "example_sentence_native": "Der Spieler hat ein Tor geschossen.", + "example_sentence_english": "The player scored a goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 551 + }, + { + "word": "drauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on it;on top of it", + "romanization": "drauf", + "example_sentence_native": "Leg das Buch bitte drauf.", + "example_sentence_english": "Please put the book on it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 552 + }, + { + "word": "erklären", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to explain", + "romanization": "erklären", + "example_sentence_native": "Kannst du mir das bitte erklären?", + "example_sentence_english": "Can you please explain that to me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 553 + }, + { + "word": "Gefühl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feeling;emotion", + "romanization": "Gefühl", + "example_sentence_native": "Ich habe ein gutes Gefühl dabei.", + "example_sentence_english": "I have a good feeling about it.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 554 + }, + { + "word": "Km", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilometer(s)", + "romanization": "Km", + "example_sentence_native": "Die Strecke beträgt 100 Km.", + "example_sentence_english": "The distance is 100 kilometers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 555 + }, + { + "word": "Medium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medium", + "romanization": "Medium", + "example_sentence_native": "Das Internet ist ein wichtiges Medium.", + "example_sentence_english": "The internet is an important medium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 556 + }, + { + "word": "Saison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "season", + "romanization": "Saison", + "example_sentence_native": "Die Saison beginnt im Frühling.", + "example_sentence_english": "The season starts in spring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 557 + }, + { + "word": "Tv", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "TV;television", + "romanization": "Tv", + "example_sentence_native": "Ich schaue gerne Tv.", + "example_sentence_english": "I like to watch TV.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 558 + }, + { + "word": "weiterhin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furthermore;still;continuously", + "romanization": "weiterhin", + "example_sentence_native": "Wir werden weiterhin daran arbeiten.", + "example_sentence_english": "We will continue to work on it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 559 + }, + { + "word": "ziehen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pull;to move", + "romanization": "ziehen", + "example_sentence_native": "Er muss den Wagen ziehen.", + "example_sentence_english": "He has to pull the cart.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 560 + }, + { + "word": "überall", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "everywhere", + "romanization": "überall", + "example_sentence_native": "Blumen wachsen überall.", + "example_sentence_english": "Flowers grow everywhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 561 + }, + { + "word": "Antwort", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "answer", + "romanization": "Antwort", + "example_sentence_native": "Ich warte auf deine Antwort.", + "example_sentence_english": "I am waiting for your answer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 562 + }, + { + "word": "Bahn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "train;railway;path", + "romanization": "Bahn", + "example_sentence_native": "Die Bahn fährt pünktlich ab.", + "example_sentence_english": "The train departs on time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 563 + }, + { + "word": "dennoch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nevertheless;yet", + "romanization": "dennoch", + "example_sentence_native": "Es regnete, dennoch gingen wir spazieren.", + "example_sentence_english": "It rained, nevertheless we went for a walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 565 + }, + { + "word": "Dezember", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "December", + "romanization": "Dezember", + "example_sentence_native": "Mein Geburtstag ist im Dezember.", + "example_sentence_english": "My birthday is in December.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 566 + }, + { + "word": "Gesicht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "face", + "romanization": "Gesicht", + "example_sentence_native": "Sie hat ein freundliches Gesicht.", + "example_sentence_english": "She has a friendly face.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 567 + }, + { + "word": "Monat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "month", + "romanization": "Monat", + "example_sentence_native": "Ein Jahr hat zwölf Monate.", + "example_sentence_english": "A year has twelve months.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 568 + }, + { + "word": "somit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thus;consequently", + "romanization": "somit", + "example_sentence_native": "Er hat die Prüfung bestanden, somit kann er studieren.", + "example_sentence_english": "He passed the exam, thus he can study.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 569 + }, + { + "word": "toll", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "great;fantastic", + "romanization": "toll", + "example_sentence_native": "Das ist eine tolle Idee!", + "example_sentence_english": "That is a great idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 571 + }, + { + "word": "tragen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to carry;to wear", + "romanization": "tragen", + "example_sentence_native": "Ich trage einen Rucksack.", + "example_sentence_english": "I am carrying a backpack.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 572 + }, + { + "word": "Vergleich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparison", + "romanization": "Vergleich", + "example_sentence_native": "Ein direkter Vergleich ist oft schwierig.", + "example_sentence_english": "A direct comparison is often difficult.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 573 + }, + { + "word": "Entscheidung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "decision", + "romanization": "Entscheidung", + "example_sentence_native": "Das war eine wichtige Entscheidung.", + "example_sentence_english": "That was an important decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 574 + }, + { + "word": "Gedanke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thought", + "romanization": "Gedanke", + "example_sentence_native": "Er hatte einen interessanten Gedanke.", + "example_sentence_english": "He had an interesting thought.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 575 + }, + { + "word": "Gemeinde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "community;municipality", + "romanization": "Gemeinde", + "example_sentence_native": "Die Gemeinde plant ein neues Projekt.", + "example_sentence_english": "The community is planning a new project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 576 + }, + { + "word": "Herz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heart", + "romanization": "Herz", + "example_sentence_native": "Mein Herz schlägt schnell.", + "example_sentence_english": "My heart beats fast.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 577 + }, + { + "word": "Januar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "January", + "romanization": "Januar", + "example_sentence_native": "Im Januar ist es sehr kalt.", + "example_sentence_english": "In January it is very cold.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 578 + }, + { + "word": "jeweils", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectively;in each case", + "romanization": "jeweils", + "example_sentence_native": "Die Teilnehmer erhielten jeweils eine Urkunde.", + "example_sentence_english": "The participants each received a certificate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 579 + }, + { + "word": "nutzen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to use;to utilize", + "romanization": "nutzen", + "example_sentence_native": "Wir müssen die Gelegenheit nutzen.", + "example_sentence_english": "We must seize the opportunity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 580 + }, + { + "word": "Nähe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proximity;vicinity;closeness", + "romanization": "Nähe", + "example_sentence_native": "Die Nähe zum Bahnhof ist ein Vorteil.", + "example_sentence_english": "The proximity to the train station is an advantage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 581 + }, + { + "word": "Sinn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sense;meaning;purpose", + "romanization": "Sinn", + "example_sentence_native": "Das macht keinen Sinn.", + "example_sentence_english": "That makes no sense.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 582 + }, + { + "word": "vorher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "before;beforehand;previously", + "romanization": "vorher", + "example_sentence_native": "Ich habe das vorher noch nie gesehen.", + "example_sentence_english": "I have never seen that before.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 584 + }, + { + "word": "bereit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ready;prepared", + "romanization": "bereit", + "example_sentence_native": "Bist du bereit für die Prüfung?", + "example_sentence_english": "Are you ready for the exam?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 587 + }, + { + "word": "Datum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "date", + "romanization": "Datum", + "example_sentence_native": "Welches Datum haben wir heute?", + "example_sentence_english": "What date is it today?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 588 + }, + { + "word": "falsch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wrong;false", + "romanization": "falsch", + "example_sentence_native": "Das ist die falsche Antwort.", + "example_sentence_english": "That is the wrong answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 589 + }, + { + "word": "fertig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ready;finished", + "romanization": "fertig", + "example_sentence_native": "Bist du fertig mit deiner Arbeit?", + "example_sentence_english": "Are you finished with your work?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 590 + }, + { + "word": "Foto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "photo", + "romanization": "Foto", + "example_sentence_native": "Ich habe ein schönes Foto gemacht.", + "example_sentence_english": "I took a beautiful photo.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 591 + }, + { + "word": "häufig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequent;often", + "romanization": "häufig", + "example_sentence_native": "Er besucht seine Großeltern häufig.", + "example_sentence_english": "He visits his grandparents often.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 592 + }, + { + "word": "Interesse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interest", + "romanization": "Interesse", + "example_sentence_native": "Ich habe großes Interesse an Kunst.", + "example_sentence_english": "I have great interest in art.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 593 + }, + { + "word": "Kultur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culture", + "romanization": "Kultur", + "example_sentence_native": "Die deutsche Kultur ist sehr vielfältig.", + "example_sentence_english": "German culture is very diverse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 594 + }, + { + "word": "König", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "king", + "romanization": "König", + "example_sentence_native": "Der König regierte das Land weise.", + "example_sentence_english": "The king ruled the country wisely.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 595 + }, + { + "word": "Luft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "air", + "romanization": "Luft", + "example_sentence_native": "Atme tief die frische Luft ein.", + "example_sentence_english": "Breathe in the fresh air deeply.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 597 + }, + { + "word": "Lösung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solution", + "romanization": "Lösung", + "example_sentence_native": "Wir müssen eine Lösung für das Problem finden.", + "example_sentence_english": "We need to find a solution to the problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 598 + }, + { + "word": "Reihe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "row;series", + "romanization": "Reihe", + "example_sentence_native": "Bitte stellen Sie sich in einer Reihe auf.", + "example_sentence_english": "Please stand in a row.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 600 + }, + { + "word": "Stimme", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "voice", + "romanization": "Stimme", + "example_sentence_native": "Ihre Stimme ist sehr schön.", + "example_sentence_english": "Her voice is very beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 601 + }, + { + "word": "Boden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor;ground", + "romanization": "Boden", + "example_sentence_native": "Der Boden ist nass.", + "example_sentence_english": "The floor is wet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 602 + }, + { + "word": "Bruder", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brother", + "romanization": "Bruder", + "example_sentence_native": "Mein Bruder lebt in Berlin.", + "example_sentence_english": "My brother lives in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 603 + }, + { + "word": "Februar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "February", + "romanization": "Februar", + "example_sentence_native": "Der Februar ist ein kurzer Monat.", + "example_sentence_english": "February is a short month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 604 + }, + { + "word": "Fussball", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "football;soccer", + "romanization": "Fussball", + "example_sentence_native": "Er spielt gerne Fussball.", + "example_sentence_english": "He likes to play football.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 606 + }, + { + "word": "heraus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "out;out of", + "romanization": "heraus", + "example_sentence_native": "Komm bitte heraus!", + "example_sentence_english": "Please come out!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 607 + }, + { + "word": "Information", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "information", + "romanization": "Information", + "example_sentence_native": "Ich brauche mehr Information.", + "example_sentence_english": "I need more information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 608 + }, + { + "word": "Kritik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criticism;review", + "romanization": "Kritik", + "example_sentence_native": "Die Kritik am Film war positiv.", + "example_sentence_english": "The criticism of the film was positive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 609 + }, + { + "word": "manch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "some;many a", + "romanization": "manch", + "example_sentence_native": "Manch ein Tag ist besser als der andere.", + "example_sentence_english": "Some days are better than others.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 610 + }, + { + "word": "nochmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "again;once more", + "romanization": "nochmal", + "example_sentence_native": "Können Sie das bitte nochmal sagen?", + "example_sentence_english": "Can you please say that again?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 611 + }, + { + "word": "Opfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victim;sacrifice", + "romanization": "Opfer", + "example_sentence_native": "Das Opfer wurde gerettet.", + "example_sentence_english": "The victim was rescued.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 612 + }, + { + "word": "passen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to fit;to suit", + "romanization": "passen", + "example_sentence_native": "Die Schuhe passen mir gut.", + "example_sentence_english": "The shoes fit me well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 613 + }, + { + "word": "plötzlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suddenly", + "romanization": "plötzlich", + "example_sentence_native": "Plötzlich fing es an zu regnen.", + "example_sentence_english": "Suddenly, it started to rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 614 + }, + { + "word": "Region", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "region", + "romanization": "Region", + "example_sentence_native": "Diese Region ist bekannt für ihren Wein.", + "example_sentence_english": "This region is known for its wine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 615 + }, + { + "word": "schwarz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "black", + "romanization": "schwarz", + "example_sentence_native": "Meine Katze ist schwarz.", + "example_sentence_english": "My cat is black.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 616 + }, + { + "word": "Situation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "situation", + "romanization": "Situation", + "example_sentence_native": "Die Situation ist kompliziert.", + "example_sentence_english": "The situation is complicated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 617 + }, + { + "word": "Sonntag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Sunday", + "romanization": "Sonntag", + "example_sentence_native": "Am Sonntag gehen wir spazieren.", + "example_sentence_english": "On Sunday, we go for a walk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 618 + }, + { + "word": "unten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "below;downstairs", + "romanization": "unten", + "example_sentence_native": "Er wartet unten auf dich.", + "example_sentence_english": "He is waiting for you downstairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 619 + }, + { + "word": "warten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wait", + "romanization": "warten", + "example_sentence_native": "Ich muss auf den Bus warten.", + "example_sentence_english": "I have to wait for the bus.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 620 + }, + { + "word": "Wirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economy;pub", + "romanization": "Wirtschaft", + "example_sentence_native": "Die deutsche Wirtschaft ist stark.", + "example_sentence_english": "The German economy is strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 621 + }, + { + "word": "Bevölkerung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "population", + "romanization": "Bevölkerung", + "example_sentence_native": "Die Bevölkerung wächst stetig.", + "example_sentence_english": "The population is growing steadily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 622 + }, + { + "word": "darin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therein;in it;them", + "romanization": "darin", + "example_sentence_native": "Das Buch ist interessant, und viele Informationen sind darin enthalten.", + "example_sentence_english": "The book is interesting, and a lot of information is contained therein.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 623 + }, + { + "word": "Firma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "company;firm", + "romanization": "Firma", + "example_sentence_native": "Meine Firma hat ihren Sitz in Berlin.", + "example_sentence_english": "My company is based in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 624 + }, + { + "word": "gewinnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to win;to gain", + "romanization": "gewinnen", + "example_sentence_native": "Er möchte das Spiel gewinnen.", + "example_sentence_english": "He wants to win the game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 625 + }, + { + "word": "Kreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circle;district;group", + "romanization": "Kreis", + "example_sentence_native": "Zeichne einen Kreis auf das Papier.", + "example_sentence_english": "Draw a circle on the paper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 626 + }, + { + "word": "Körper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "body", + "romanization": "Körper", + "example_sentence_native": "Der menschliche Körper ist komplex.", + "example_sentence_english": "The human body is complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 627 + }, + { + "word": "Mitglied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "member", + "romanization": "Mitglied", + "example_sentence_native": "Sie ist ein neues Mitglied im Verein.", + "example_sentence_english": "She is a new member of the club.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 628 + }, + { + "word": "Nachricht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "message;news", + "romanization": "Nachricht", + "example_sentence_native": "Ich habe eine wichtige Nachricht für dich.", + "example_sentence_english": "I have an important message for you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 629 + }, + { + "word": "Punkt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "point;dot;period", + "romanization": "Punkt", + "example_sentence_native": "Bitte setzen Sie einen Punkt am Ende des Satzes.", + "example_sentence_english": "Please put a period at the end of the sentence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 630 + }, + { + "word": "Rede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speech;talk", + "romanization": "Rede", + "example_sentence_native": "Die Rede des Präsidenten war sehr inspirierend.", + "example_sentence_english": "The president's speech was very inspiring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 631 + }, + { + "word": "Typ", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "type;guy", + "romanization": "Typ", + "example_sentence_native": "Er ist ein netter Typ.", + "example_sentence_english": "He is a nice guy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 632 + }, + { + "word": "Verein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "club;association", + "romanization": "Verein", + "example_sentence_native": "Ich bin Mitglied in einem Sportverein.", + "example_sentence_english": "I am a member of a sports club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 633 + }, + { + "word": "verwenden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to use;to apply", + "romanization": "verwenden", + "example_sentence_native": "Sie können dieses Werkzeug für viele Aufgaben verwenden.", + "example_sentence_english": "You can use this tool for many tasks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 634 + }, + { + "word": "Ausbildung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education;training", + "romanization": "Ausbildung", + "example_sentence_native": "Sie hat eine gute Ausbildung als Lehrerin.", + "example_sentence_english": "She has a good education as a teacher.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 635 + }, + { + "word": "Beginn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beginning;start", + "romanization": "Beginn", + "example_sentence_native": "Der Beginn des Konzerts ist um 20 Uhr.", + "example_sentence_english": "The beginning of the concert is at 8 PM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 636 + }, + { + "word": "beispielsweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for example;for instance", + "romanization": "beispielsweise", + "example_sentence_native": "Man kann beispielsweise online Deutsch lernen.", + "example_sentence_english": "One can, for example, learn German online.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 637 + }, + { + "word": "deswegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "therefore;that's why", + "romanization": "deswegen", + "example_sentence_native": "Es regnet, deswegen bleiben wir zu Hause.", + "example_sentence_english": "It's raining, that's why we are staying at home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 638 + }, + { + "word": "Ergebnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "result;outcome", + "romanization": "Ergebnis", + "example_sentence_native": "Das Ergebnis der Prüfung war sehr gut.", + "example_sentence_english": "The result of the exam was very good.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 639 + }, + { + "word": "Freundin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girlfriend;female friend", + "romanization": "Freundin", + "example_sentence_native": "Meine Freundin kommt heute Abend.", + "example_sentence_english": "My girlfriend is coming tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 641 + }, + { + "word": "grün", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "green", + "romanization": "grün", + "example_sentence_native": "Das Auto ist grün.", + "example_sentence_english": "The car is green.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 642 + }, + { + "word": "Licht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "light", + "romanization": "Licht", + "example_sentence_native": "Mach bitte das Licht an.", + "example_sentence_english": "Please turn on the light.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 643 + }, + { + "word": "Markt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "market", + "romanization": "Markt", + "example_sentence_native": "Ich gehe zum Markt.", + "example_sentence_english": "I am going to the market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 644 + }, + { + "word": "mittlerweile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meanwhile;in the meantime", + "romanization": "mittlerweile", + "example_sentence_native": "Mittlerweile ist es dunkel geworden.", + "example_sentence_english": "Meanwhile, it has become dark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 645 + }, + { + "word": "offen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "open", + "romanization": "offen", + "example_sentence_native": "Die Tür ist offen.", + "example_sentence_english": "The door is open.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 646 + }, + { + "word": "Politiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politician (male)", + "romanization": "Politiker", + "example_sentence_native": "Der Politiker hielt eine Rede.", + "example_sentence_english": "The politician gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 647 + }, + { + "word": "politisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "political", + "romanization": "politisch", + "example_sentence_native": "Das ist eine politische Entscheidung.", + "example_sentence_english": "That is a political decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 648 + }, + { + "word": "Regel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rule", + "romanization": "Regel", + "example_sentence_native": "Das ist die Regel.", + "example_sentence_english": "That is the rule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 649 + }, + { + "word": "solch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "such", + "romanization": "solch", + "example_sentence_native": "Solch ein Wetter mag ich nicht.", + "example_sentence_english": "I don't like such weather.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 651 + }, + { + "word": "Staat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state;nation", + "romanization": "Staat", + "example_sentence_native": "Der Staat hat viele Aufgaben.", + "example_sentence_english": "The state has many tasks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 652 + }, + { + "word": "teilweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partially;in part", + "romanization": "teilweise", + "example_sentence_native": "Das Projekt ist teilweise abgeschlossen.", + "example_sentence_english": "The project is partially completed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 653 + }, + { + "word": "acht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eight", + "romanization": "acht", + "example_sentence_native": "Ich habe acht Äpfel.", + "example_sentence_english": "I have eight apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 655 + }, + { + "word": "Bedeutung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meaning;significance", + "romanization": "Bedeutung", + "example_sentence_native": "Das Wort hat eine tiefe Bedeutung.", + "example_sentence_english": "The word has a deep meaning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 656 + }, + { + "word": "europäisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "European", + "romanization": "europäisch", + "example_sentence_native": "Er ist ein europäischer Bürger.", + "example_sentence_english": "He is a European citizen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 657 + }, + { + "word": "folgend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following;subsequent", + "romanization": "folgend", + "example_sentence_native": "Bitte lesen Sie den folgenden Text.", + "example_sentence_english": "Please read the following text.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 659 + }, + { + "word": "gefallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to please;to like", + "romanization": "gefallen", + "example_sentence_native": "Das Buch gefällt mir sehr.", + "example_sentence_english": "I really like the book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 660 + }, + { + "word": "Hälfte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "half", + "romanization": "Hälfte", + "example_sentence_native": "Die Hälfte des Kuchens ist noch da.", + "example_sentence_english": "Half of the cake is still there.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 661 + }, + { + "word": "Programm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "program", + "romanization": "Programm", + "example_sentence_native": "Das Programm beginnt um acht Uhr.", + "example_sentence_english": "The program starts at eight o'clock.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 663 + }, + { + "word": "reichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be enough;to reach", + "romanization": "reichen", + "example_sentence_native": "Das Geld wird nicht reichen.", + "example_sentence_english": "The money will not be enough.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 664 + }, + { + "word": "Schüler", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student", + "romanization": "Schüler", + "example_sentence_native": "Der Schüler lernt fleißig.", + "example_sentence_english": "The student studies diligently.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 665 + }, + { + "word": "selten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rarely;seldom", + "romanization": "selten", + "example_sentence_native": "Er besucht uns selten.", + "example_sentence_english": "He rarely visits us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 666 + }, + { + "word": "sieben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seven", + "romanization": "sieben", + "example_sentence_native": "Ich habe sieben Äpfel.", + "example_sentence_english": "I have seven apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 667 + }, + { + "word": "Text", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "text", + "romanization": "Text", + "example_sentence_native": "Bitte lesen Sie den Text.", + "example_sentence_english": "Please read the text.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 669 + }, + { + "word": "unbedingt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolutely;definitely", + "romanization": "unbedingt", + "example_sentence_native": "Du musst das unbedingt sehen!", + "example_sentence_english": "You absolutely must see that!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 670 + }, + { + "word": "unterwegs", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on the way;en route", + "romanization": "unterwegs", + "example_sentence_native": "Wir sind noch unterwegs.", + "example_sentence_english": "We are still on the way.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 671 + }, + { + "word": "Verbindung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection;link", + "romanization": "Verbindung", + "example_sentence_native": "Die Internetverbindung ist schlecht.", + "example_sentence_english": "The internet connection is bad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 672 + }, + { + "word": "wenigstens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at least", + "romanization": "wenigstens", + "example_sentence_native": "Wenigstens haben wir es versucht.", + "example_sentence_english": "At least we tried.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 673 + }, + { + "word": "Zeitung", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "newspaper", + "romanization": "Zeitung", + "example_sentence_native": "Ich lese jeden Morgen die Zeitung.", + "example_sentence_english": "I read the newspaper every morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 674 + }, + { + "word": "zuvor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "before;previously", + "romanization": "zuvor", + "example_sentence_native": "Er hatte das noch nie zuvor gesehen.", + "example_sentence_english": "He had never seen that before.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 675 + }, + { + "word": "Ahnung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "idea;clue;inkling", + "romanization": "Ahnung", + "example_sentence_native": "Ich habe keine Ahnung.", + "example_sentence_english": "I have no idea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 676 + }, + { + "word": "Bürger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citizen", + "romanization": "Bürger", + "example_sentence_native": "Jeder Bürger hat Rechte und Pflichten.", + "example_sentence_english": "Every citizen has rights and duties.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 677 + }, + { + "word": "eins", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one", + "romanization": "eins", + "example_sentence_native": "Ich habe nur eins.", + "example_sentence_english": "I only have one.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 678 + }, + { + "word": "Erfahrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experience", + "romanization": "Erfahrung", + "example_sentence_native": "Er hat viel Erfahrung in diesem Bereich.", + "example_sentence_english": "He has a lot of experience in this area.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 679 + }, + { + "word": "erzählen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tell;to narrate", + "romanization": "erzählen", + "example_sentence_native": "Kannst du mir eine Geschichte erzählen?", + "example_sentence_english": "Can you tell me a story?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 680 + }, + { + "word": "funktionieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to function;to work", + "romanization": "funktionieren", + "example_sentence_native": "Der Computer funktioniert nicht.", + "example_sentence_english": "The computer is not working.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 681 + }, + { + "word": "Grad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "degree", + "romanization": "Grad", + "example_sentence_native": "Es sind 20 Grad Celsius.", + "example_sentence_english": "It is 20 degrees Celsius.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 682 + }, + { + "word": "Kampf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fight;struggle;battle", + "romanization": "Kampf", + "example_sentence_native": "Der Kampf um die Freiheit war lang.", + "example_sentence_english": "The fight for freedom was long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 684 + }, + { + "word": "Kraft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strength;power;force", + "romanization": "Kraft", + "example_sentence_native": "Sie hat viel Kraft in ihren Armen.", + "example_sentence_english": "She has a lot of strength in her arms.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 685 + }, + { + "word": "Projekt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "project", + "romanization": "Projekt", + "example_sentence_native": "Wir arbeiten an einem neuen Projekt.", + "example_sentence_english": "We are working on a new project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 687 + }, + { + "word": "Präsident", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "president", + "romanization": "Präsident", + "example_sentence_native": "Der Präsident hielt eine Rede.", + "example_sentence_english": "The president gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 688 + }, + { + "word": "Sport", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sport", + "romanization": "Sport", + "example_sentence_native": "Ich mache gerne Sport.", + "example_sentence_english": "I like to do sports.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 689 + }, + { + "word": "Zimmer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room", + "romanization": "Zimmer", + "example_sentence_native": "Das Zimmer ist groß.", + "example_sentence_english": "The room is big.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 690 + }, + { + "word": "zuerst", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "first", + "romanization": "zuerst", + "example_sentence_native": "Zuerst müssen wir essen.", + "example_sentence_english": "First, we have to eat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 691 + }, + { + "word": "Druck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pressure", + "romanization": "Druck", + "example_sentence_native": "Der Druck auf die Taste war zu stark.", + "example_sentence_english": "The pressure on the button was too strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 692 + }, + { + "word": "entfernen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove", + "romanization": "entfernen", + "example_sentence_native": "Bitte entfernen Sie den Müll.", + "example_sentence_english": "Please remove the trash.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 693 + }, + { + "word": "fehlen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be missing", + "romanization": "fehlen", + "example_sentence_native": "Mir fehlt die Zeit.", + "example_sentence_english": "I lack the time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 695 + }, + { + "word": "genauso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exactly the same", + "romanization": "genauso", + "example_sentence_native": "Er ist genauso groß wie ich.", + "example_sentence_english": "He is just as tall as me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 696 + }, + { + "word": "lediglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merely", + "romanization": "lediglich", + "example_sentence_native": "Er hat lediglich eine Frage gestellt.", + "example_sentence_english": "He merely asked one question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 698 + }, + { + "word": "Liste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "list", + "romanization": "Liste", + "example_sentence_native": "Bitte machen Sie eine Liste.", + "example_sentence_english": "Please make a list.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 699 + }, + { + "word": "schauen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to look;to watch", + "romanization": "schauen", + "example_sentence_native": "Wir schauen einen Film.", + "example_sentence_english": "We are watching a movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 700 + }, + { + "word": "soweit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "as far as;insofar as", + "romanization": "soweit", + "example_sentence_native": "Soweit ich weiß, ist er nicht hier.", + "example_sentence_english": "As far as I know, he is not here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 701 + }, + { + "word": "Wochenende", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "weekend", + "romanization": "Wochenende", + "example_sentence_native": "Das Wochenende war sehr entspannend.", + "example_sentence_english": "The weekend was very relaxing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 702 + }, + { + "word": "beginnen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to begin;to start", + "romanization": "beginnen", + "example_sentence_native": "Der Unterricht beginnt um neun Uhr.", + "example_sentence_english": "The class begins at nine o'clock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 703 + }, + { + "word": "bieten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to offer;to provide", + "romanization": "bieten", + "example_sentence_native": "Wir können Ihnen einen guten Preis bieten.", + "example_sentence_english": "We can offer you a good price.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 704 + }, + { + "word": "dran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on it;at it;next (in line)", + "romanization": "dran", + "example_sentence_native": "Wer ist als Nächstes dran?", + "example_sentence_english": "Who is next?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 705 + }, + { + "word": "dritt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "third", + "romanization": "dritt", + "example_sentence_native": "Das ist der dritte Versuch.", + "example_sentence_english": "This is the third attempt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 706 + }, + { + "word": "durchaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absolutely;certainly;quite", + "romanization": "durchaus", + "example_sentence_native": "Das ist durchaus möglich.", + "example_sentence_english": "That is absolutely possible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 707 + }, + { + "word": "erwarten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expect", + "romanization": "erwarten", + "example_sentence_native": "Ich erwarte einen Anruf.", + "example_sentence_english": "I am expecting a call.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 708 + }, + { + "word": "inzwischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meanwhile;in the meantime", + "romanization": "inzwischen", + "example_sentence_native": "Inzwischen ist es dunkel geworden.", + "example_sentence_english": "Meanwhile, it has become dark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 709 + }, + { + "word": "komplett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complete", + "romanization": "komplett", + "example_sentence_native": "Das Bild ist jetzt komplett.", + "example_sentence_english": "The picture is now complete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 710 + }, + { + "word": "Kunde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "customer", + "romanization": "Kunde", + "example_sentence_native": "Der Kunde wartet schon.", + "example_sentence_english": "The customer is already waiting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 711 + }, + { + "word": "niemals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "never", + "romanization": "niemals", + "example_sentence_native": "Ich werde das niemals vergessen.", + "example_sentence_english": "I will never forget that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 712 + }, + { + "word": "Schritt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "step", + "romanization": "Schritt", + "example_sentence_native": "Mach einen Schritt nach vorne.", + "example_sentence_english": "Take a step forward.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 714 + }, + { + "word": "Unterstützung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support", + "romanization": "Unterstützung", + "example_sentence_native": "Wir brauchen Ihre Unterstützung.", + "example_sentence_english": "We need your support.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 715 + }, + { + "word": "Verfügung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disposal", + "romanization": "Verfügung", + "example_sentence_native": "Die Informationen stehen zur Verfügung.", + "example_sentence_english": "The information is available.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 716 + }, + { + "word": "verlassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leave", + "romanization": "verlassen", + "example_sentence_native": "Er wird das Haus verlassen.", + "example_sentence_english": "He will leave the house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 717 + }, + { + "word": "wählen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to choose", + "romanization": "wählen", + "example_sentence_native": "Sie müssen jetzt wählen.", + "example_sentence_english": "You must choose now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 718 + }, + { + "word": "Angebot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "offer", + "romanization": "Angebot", + "example_sentence_native": "Das ist ein gutes Angebot.", + "example_sentence_english": "That is a good offer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 719 + }, + { + "word": "Bett", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bed", + "romanization": "Bett", + "example_sentence_native": "Das Bett ist sehr bequem.", + "example_sentence_english": "The bed is very comfortable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 720 + }, + { + "word": "einzeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "single;individual", + "romanization": "einzeln", + "example_sentence_native": "Jedes einzelne Detail ist wichtig.", + "example_sentence_english": "Every single detail is important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 721 + }, + { + "word": "erneut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "again;anew", + "romanization": "erneut", + "example_sentence_native": "Er hat erneut versucht, sie anzurufen.", + "example_sentence_english": "He tried to call her again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 722 + }, + { + "word": "Gefahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "danger", + "romanization": "Gefahr", + "example_sentence_native": "Es besteht keine Gefahr.", + "example_sentence_english": "There is no danger.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 723 + }, + { + "word": "nennen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to name;to call", + "romanization": "nennen", + "example_sentence_native": "Wie nennen Sie das?", + "example_sentence_english": "What do you call that?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 724 + }, + { + "word": "Linie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "romanization": "Linie", + "example_sentence_native": "Ziehen Sie eine gerade Linie.", + "example_sentence_english": "Draw a straight line.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 726 + }, + { + "word": "Natur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nature", + "romanization": "Natur", + "example_sentence_native": "Die Natur ist wunderschön.", + "example_sentence_english": "Nature is beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 728 + }, + { + "word": "Schuld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guilt;debt;fault", + "romanization": "Schuld", + "example_sentence_native": "Es ist nicht meine Schuld.", + "example_sentence_english": "It's not my fault.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 729 + }, + { + "word": "top", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellent", + "romanization": "top", + "example_sentence_native": "Das ist eine top Idee!", + "example_sentence_english": "That's an excellent idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 730 + }, + { + "word": "Wahrheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truth", + "romanization": "Wahrheit", + "example_sentence_native": "Die Wahrheit ist manchmal schwer zu akzeptieren.", + "example_sentence_english": "The truth is sometimes hard to accept.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 731 + }, + { + "word": "öffentlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "public", + "romanization": "öffentlich", + "example_sentence_native": "Der Park ist öffentlich zugänglich.", + "example_sentence_english": "The park is publicly accessible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 732 + }, + { + "word": "klingen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sound;to ring", + "romanization": "klingen", + "example_sentence_native": "Die Glocke klingen laut.", + "example_sentence_english": "The bell rings loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 740 + }, + { + "word": "knapp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scarce;tight;close", + "romanization": "knapp", + "example_sentence_native": "Die Zeit ist knapp.", + "example_sentence_english": "Time is short.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 741 + }, + { + "word": "live", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "live", + "romanization": "live", + "example_sentence_native": "Das Konzert wird live übertragen.", + "example_sentence_english": "The concert is broadcast live.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 742 + }, + { + "word": "Mannschaft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "team;crew", + "romanization": "Mannschaft", + "example_sentence_native": "Unsere Mannschaft hat gewonnen.", + "example_sentence_english": "Our team has won.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 743 + }, + { + "word": "Ordnung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "order;tidiness", + "romanization": "Ordnung", + "example_sentence_native": "Bring deine Sachen in Ordnung.", + "example_sentence_english": "Put your things in order.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 744 + }, + { + "word": "reich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rich;wealthy", + "romanization": "reich", + "example_sentence_native": "Er ist ein reicher Mann.", + "example_sentence_english": "He is a rich man.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 746 + }, + { + "word": "rot", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "red", + "romanization": "rot", + "example_sentence_native": "Das Auto ist rot.", + "example_sentence_english": "The car is red.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 747 + }, + { + "word": "Samstag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday", + "romanization": "Samstag", + "example_sentence_native": "Am Samstag gehen wir ins Kino.", + "example_sentence_english": "On Saturday we go to the cinema.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 748 + }, + { + "word": "Satz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sentence;set;jump", + "romanization": "Satz", + "example_sentence_native": "Bitte bilden Sie einen Satz.", + "example_sentence_english": "Please form a sentence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 749 + }, + { + "word": "teilen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to share;to divide", + "romanization": "teilen", + "example_sentence_native": "Wir teilen uns ein Zimmer.", + "example_sentence_english": "We share a room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 750 + }, + { + "word": "vermutlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presumably;probably", + "romanization": "vermutlich", + "example_sentence_native": "Er ist vermutlich zu Hause.", + "example_sentence_english": "He is probably at home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 751 + }, + { + "word": "ändern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to change;to alter", + "romanization": "ändern", + "example_sentence_native": "Wir müssen unsere Pläne ändern.", + "example_sentence_english": "We have to change our plans.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 752 + }, + { + "word": "Aufgabe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "task;assignment", + "romanization": "Aufgabe", + "example_sentence_native": "Das ist eine schwierige Aufgabe.", + "example_sentence_english": "That is a difficult task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 753 + }, + { + "word": "bezeichnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to describe;to designate", + "romanization": "bezeichnen", + "example_sentence_native": "Wie würden Sie das bezeichnen?", + "example_sentence_english": "How would you describe that?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 754 + }, + { + "word": "Chef", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boss;chief", + "romanization": "Chef", + "example_sentence_native": "Mein Chef ist sehr nett.", + "example_sentence_english": "My boss is very nice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 755 + }, + { + "word": "Dollar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dollar", + "romanization": "Dollar", + "example_sentence_native": "Das kostet zehn Dollar.", + "example_sentence_english": "That costs ten dollars.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 756 + }, + { + "word": "entwickeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to develop", + "romanization": "entwickeln", + "example_sentence_native": "Wir müssen eine neue Strategie entwickeln.", + "example_sentence_english": "We need to develop a new strategy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 758 + }, + { + "word": "freuen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be happy;to be pleased", + "romanization": "freuen", + "example_sentence_native": "Ich freue mich auf das Wochenende.", + "example_sentence_english": "I am looking forward to the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 759 + }, + { + "word": "Lehrer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "teacher", + "romanization": "Lehrer", + "example_sentence_native": "Der Lehrer erklärt die Grammatik.", + "example_sentence_english": "The teacher explains the grammar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 761 + }, + { + "word": "Runde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "round", + "romanization": "Runde", + "example_sentence_native": "Wir gehen eine Runde spazieren.", + "example_sentence_english": "We are going for a walk.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 763 + }, + { + "word": "Schluss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "end", + "romanization": "Schluss", + "example_sentence_native": "Am Schluss war alles klar.", + "example_sentence_english": "In the end, everything was clear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 765 + }, + { + "word": "Serie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "series", + "romanization": "Serie", + "example_sentence_native": "Ich schaue gerne eine neue Serie.", + "example_sentence_english": "I like to watch a new series.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 766 + }, + { + "word": "total", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total", + "romanization": "total", + "example_sentence_native": "Das ist total verrückt.", + "example_sentence_english": "That is totally crazy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 767 + }, + { + "word": "veröffentlichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to publish", + "romanization": "veröffentlichen", + "example_sentence_native": "Der Autor wird sein neues Buch bald veröffentlichen.", + "example_sentence_english": "The author will publish his new book soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 768 + }, + { + "word": "ähnlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar", + "romanization": "ähnlich", + "example_sentence_native": "Die beiden Bilder sind sich sehr ähnlich.", + "example_sentence_english": "The two pictures are very similar.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 769 + }, + { + "word": "Bank", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bench", + "romanization": "Bank", + "example_sentence_native": "Wir sitzen auf der Bank im Park.", + "example_sentence_english": "We are sitting on the bench in the park.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 770 + }, + { + "word": "Beitrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contribution", + "romanization": "Beitrag", + "example_sentence_native": "Sein Beitrag zur Diskussion war sehr wertvoll.", + "example_sentence_english": "His contribution to the discussion was very valuable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 771 + }, + { + "word": "Cm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "centimeter", + "romanization": "Cm", + "example_sentence_native": "Das Lineal ist 30 Cm lang.", + "example_sentence_english": "The ruler is 30 cm long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 772 + }, + { + "word": "entscheiden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to decide", + "romanization": "entscheiden", + "example_sentence_native": "Ich muss mich bald entscheiden.", + "example_sentence_english": "I have to decide soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 773 + }, + { + "word": "erkennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize", + "romanization": "erkennen", + "example_sentence_native": "Ich konnte ihn kaum wiedererkennen.", + "example_sentence_english": "I could barely recognize him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 774 + }, + { + "word": "Freitag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Friday", + "romanization": "Freitag", + "example_sentence_native": "Am Freitag gehen wir ins Kino.", + "example_sentence_english": "On Friday we go to the cinema.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 775 + }, + { + "word": "Gebäude", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "building", + "romanization": "Gebäude", + "example_sentence_native": "Das ist ein sehr altes Gebäude.", + "example_sentence_english": "That is a very old building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 776 + }, + { + "word": "Gesetz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "law", + "romanization": "Gesetz", + "example_sentence_native": "Das neue Gesetz tritt nächste Woche in Kraft.", + "example_sentence_english": "The new law comes into effect next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 777 + }, + { + "word": "Hotel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hotel", + "romanization": "Hotel", + "example_sentence_native": "Wir übernachten in einem Hotel.", + "example_sentence_english": "We are staying overnight in a hotel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 778 + }, + { + "word": "jedenfalls", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in any case", + "romanization": "jedenfalls", + "example_sentence_native": "Jedenfalls müssen wir eine Lösung finden.", + "example_sentence_english": "In any case, we must find a solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 779 + }, + { + "word": "nahe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "near;close", + "romanization": "nahe", + "example_sentence_native": "Das Haus ist ganz nahe am See.", + "example_sentence_english": "The house is very close to the lake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 780 + }, + { + "word": "Zug", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "train", + "romanization": "Zug", + "example_sentence_native": "Der Zug fährt pünktlich ab.", + "example_sentence_english": "The train departs on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 781 + }, + { + "word": "aktuell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current;up-to-date", + "romanization": "aktuell", + "example_sentence_native": "Das ist eine sehr aktuelle Nachricht.", + "example_sentence_english": "That is a very current piece of news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 782 + }, + { + "word": "Bewegung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "movement", + "romanization": "Bewegung", + "example_sentence_native": "Sport ist gut für die Bewegung.", + "example_sentence_english": "Sport is good for movement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 783 + }, + { + "word": "Ehe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marriage", + "romanization": "Ehe", + "example_sentence_native": "Sie haben eine glückliche Ehe.", + "example_sentence_english": "They have a happy marriage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 785 + }, + { + "word": "ehrlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honest", + "romanization": "ehrlich", + "example_sentence_native": "Er ist ein sehr ehrlicher Mensch.", + "example_sentence_english": "He is a very honest person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 786 + }, + { + "word": "Erde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "earth;ground;soil", + "romanization": "Erde", + "example_sentence_native": "Die Erde dreht sich um die Sonne.", + "example_sentence_english": "The Earth revolves around the sun.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 787 + }, + { + "word": "erfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to experience;to learn (of something)", + "romanization": "erfahren", + "example_sentence_native": "Ich möchte mehr über dieses Thema erfahren.", + "example_sentence_english": "I want to learn more about this topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 788 + }, + { + "word": "Flüchtling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee", + "romanization": "Flüchtling", + "example_sentence_native": "Viele Flüchtlinge suchen Schutz in Europa.", + "example_sentence_english": "Many refugees seek protection in Europe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 789 + }, + { + "word": "Gewalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violence;force", + "romanization": "Gewalt", + "example_sentence_native": "Gewalt ist keine Lösung.", + "example_sentence_english": "Violence is not a solution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 790 + }, + { + "word": "Gold", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gold", + "romanization": "Gold", + "example_sentence_native": "Das ist reines Gold.", + "example_sentence_english": "That is pure gold.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 791 + }, + { + "word": "gründen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to found;to establish", + "romanization": "gründen", + "example_sentence_native": "Sie wollen eine neue Firma gründen.", + "example_sentence_english": "They want to found a new company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 792 + }, + { + "word": "Nummer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "number", + "romanization": "Nummer", + "example_sentence_native": "Wie ist deine Telefonnummer?", + "example_sentence_english": "What is your phone number?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 796 + }, + { + "word": "Reise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journey;trip", + "romanization": "Reise", + "example_sentence_native": "Die Reise war sehr schön.", + "example_sentence_english": "The journey was very nice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 797 + }, + { + "word": "Sieg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victory", + "romanization": "Sieg", + "example_sentence_native": "Das war ein großer Sieg für unser Team.", + "example_sentence_english": "That was a great victory for our team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 798 + }, + { + "word": "sitzen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sit", + "romanization": "sitzen", + "example_sentence_native": "Ich sitze auf dem Stuhl.", + "example_sentence_english": "I am sitting on the chair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 799 + }, + { + "word": "Start", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "start", + "romanization": "Start", + "example_sentence_native": "Der Start des Rennens war aufregend.", + "example_sentence_english": "The start of the race was exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 800 + }, + { + "word": "Tür", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "door", + "romanization": "Tür", + "example_sentence_native": "Bitte schließe die Tür.", + "example_sentence_english": "Please close the door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 801 + }, + { + "word": "Universität", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "university", + "romanization": "Universität", + "example_sentence_native": "Sie studiert an der Universität.", + "example_sentence_english": "She studies at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 802 + }, + { + "word": "verdienen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to earn;to deserve", + "romanization": "verdienen", + "example_sentence_native": "Er verdient viel Geld.", + "example_sentence_english": "He earns a lot of money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 803 + }, + { + "word": "aktiv", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "active", + "romanization": "aktiv", + "example_sentence_native": "Sie ist eine sehr aktive Person.", + "example_sentence_english": "She is a very active person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 805 + }, + { + "word": "Besuch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "visit", + "romanization": "Besuch", + "example_sentence_native": "Wir bekommen Besuch am Wochenende.", + "example_sentence_english": "We are having visitors on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 806 + }, + { + "word": "Bildung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education;formation", + "romanization": "Bildung", + "example_sentence_native": "Bildung ist sehr wichtig für die Zukunft.", + "example_sentence_english": "Education is very important for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 807 + }, + { + "word": "darunter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "among them;underneath", + "romanization": "darunter", + "example_sentence_native": "Es gab viele Bücher, und darunter war mein Lieblingsbuch.", + "example_sentence_english": "There were many books, and among them was my favorite book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 808 + }, + { + "word": "englisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "English", + "romanization": "englisch", + "example_sentence_native": "Das ist ein englisches Buch.", + "example_sentence_english": "That is an English book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 810 + }, + { + "word": "glücklich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "happy", + "romanization": "glücklich", + "example_sentence_native": "Sie ist sehr glücklich.", + "example_sentence_english": "She is very happy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 811 + }, + { + "word": "hart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hard", + "romanization": "hart", + "example_sentence_native": "Das Brot ist hart.", + "example_sentence_english": "The bread is hard.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 812 + }, + { + "word": "irgendwann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sometime;eventually", + "romanization": "irgendwann", + "example_sentence_native": "Wir sehen uns irgendwann wieder.", + "example_sentence_english": "We will see each other again sometime.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 813 + }, + { + "word": "link", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awkward;clumsy", + "romanization": "link", + "example_sentence_native": "Er ist etwas link mit seinen Händen.", + "example_sentence_english": "He is a bit awkward with his hands.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 814 + }, + { + "word": "offenbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obvious;apparent;apparently", + "romanization": "offenbar", + "example_sentence_native": "Offenbar hat er die Nachricht nicht erhalten.", + "example_sentence_english": "Apparently, he did not receive the message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 815 + }, + { + "word": "Post", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mail;post office", + "romanization": "Post", + "example_sentence_native": "Hast du die Post schon geholt?", + "example_sentence_english": "Have you already picked up the mail?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 816 + }, + { + "word": "Rest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rest;remainder", + "romanization": "Rest", + "example_sentence_native": "Iss den Rest des Kuchens.", + "example_sentence_english": "Eat the rest of the cake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 817 + }, + { + "word": "Ruhe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peace;quiet;rest", + "romanization": "Ruhe", + "example_sentence_native": "Ich brauche etwas Ruhe.", + "example_sentence_english": "I need some quiet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 818 + }, + { + "word": "Werk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work;factory;plant", + "romanization": "Werk", + "example_sentence_native": "Das ist ein wichtiges Werk in der Stadt.", + "example_sentence_english": "That is an important factory in the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 819 + }, + { + "word": "Begriff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concept;term", + "romanization": "Begriff", + "example_sentence_native": "Der Begriff \"Nachhaltigkeit\" ist heute sehr wichtig.", + "example_sentence_english": "The concept of \"sustainability\" is very important today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 820 + }, + { + "word": "Bericht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report", + "romanization": "Bericht", + "example_sentence_native": "Sie hat einen detaillierten Bericht geschrieben.", + "example_sentence_english": "She wrote a detailed report.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 821 + }, + { + "word": "drin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside (informal)", + "romanization": "drin", + "example_sentence_native": "Ist noch Kaffee drin?", + "example_sentence_english": "Is there still coffee inside?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 822 + }, + { + "word": "Fan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fan", + "romanization": "Fan", + "example_sentence_native": "Er ist ein großer Fan dieser Band.", + "example_sentence_english": "He is a big fan of this band.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 823 + }, + { + "word": "Fenster", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "window", + "romanization": "Fenster", + "example_sentence_native": "Das Fenster ist offen.", + "example_sentence_english": "The window is open.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 824 + }, + { + "word": "Freiheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freedom;liberty", + "romanization": "Freiheit", + "example_sentence_native": "Die Freiheit ist ein hohes Gut.", + "example_sentence_english": "Freedom is a great good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 826 + }, + { + "word": "stolz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "proud", + "romanization": "stolz", + "example_sentence_native": "Sie ist stolz auf ihre Kinder.", + "example_sentence_english": "She is proud of her children.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 828 + }, + { + "word": "verkaufen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sell", + "romanization": "verkaufen", + "example_sentence_native": "Er möchte sein altes Auto verkaufen.", + "example_sentence_english": "He wants to sell his old car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 830 + }, + { + "word": "vorstellen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to introduce;to imagine", + "romanization": "vorstellen", + "example_sentence_native": "Darf ich mich vorstellen?", + "example_sentence_english": "May I introduce myself?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 831 + }, + { + "word": "zahlreich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numerous;many", + "romanization": "zahlreich", + "example_sentence_native": "Zahlreiche Besucher kamen zur Ausstellung.", + "example_sentence_english": "Numerous visitors came to the exhibition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 833 + }, + { + "word": "Zeichen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sign;symbol;character", + "romanization": "Zeichen", + "example_sentence_native": "Das ist ein gutes Zeichen.", + "example_sentence_english": "That is a good sign.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 834 + }, + { + "word": "zuletzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "last;finally;most recently", + "romanization": "zuletzt", + "example_sentence_native": "Zuletzt haben wir uns vor einem Jahr gesehen.", + "example_sentence_english": "We last saw each other a year ago.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 835 + }, + { + "word": "absolut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolute;absolutely", + "romanization": "absolut", + "example_sentence_native": "Das ist absolut richtig.", + "example_sentence_english": "That is absolutely correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 836 + }, + { + "word": "Auswahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choice;selection", + "romanization": "Auswahl", + "example_sentence_native": "Die Auswahl an Büchern ist groß.", + "example_sentence_english": "The selection of books is large.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 837 + }, + { + "word": "derzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "currently;at present", + "romanization": "derzeit", + "example_sentence_native": "Derzeit arbeite ich an einem neuen Projekt.", + "example_sentence_english": "Currently, I am working on a new project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 839 + }, + { + "word": "erfolgreich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successful", + "romanization": "erfolgreich", + "example_sentence_native": "Sie ist eine sehr erfolgreiche Geschäftsfrau.", + "example_sentence_english": "She is a very successful businesswoman.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 840 + }, + { + "word": "Freude", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joy", + "romanization": "Freude", + "example_sentence_native": "Er empfindet große Freude an seiner Arbeit.", + "example_sentence_english": "He feels great joy in his work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 841 + }, + { + "word": "interessieren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to interest", + "romanization": "interessieren", + "example_sentence_native": "Das Thema interessiert mich sehr.", + "example_sentence_english": "The topic interests me a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 843 + }, + { + "word": "Leistung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "performance;achievement", + "romanization": "Leistung", + "example_sentence_native": "Seine Leistung im Sport war beeindruckend.", + "example_sentence_english": "His performance in sports was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 845 + }, + { + "word": "lieben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to love", + "romanization": "lieben", + "example_sentence_native": "Ich liebe es, neue Sprachen zu lernen.", + "example_sentence_english": "I love learning new languages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 846 + }, + { + "word": "meinen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to mean;to think", + "romanization": "meinen", + "example_sentence_native": "Was meinst du dazu?", + "example_sentence_english": "What do you think about that?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 847 + }, + { + "word": "Montag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Monday", + "romanization": "Montag", + "example_sentence_native": "Am Montag habe ich einen Termin.", + "example_sentence_english": "On Monday, I have an appointment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 848 + }, + { + "word": "Plan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plan", + "romanization": "Plan", + "example_sentence_native": "Wir brauchen einen guten Plan für das Projekt.", + "example_sentence_english": "We need a good plan for the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 849 + }, + { + "word": "regelmässig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "regularly", + "romanization": "regelmässig", + "example_sentence_native": "Ich gehe regelmässig ins Fitnessstudio.", + "example_sentence_english": "I go to the gym regularly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 850 + }, + { + "word": "Versuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attempt", + "romanization": "Versuch", + "example_sentence_native": "Sein erster Versuch war erfolgreich.", + "example_sentence_english": "His first attempt was successful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 851 + }, + { + "word": "Vertrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contract", + "romanization": "Vertrag", + "example_sentence_native": "Wir haben den Vertrag unterschrieben.", + "example_sentence_english": "We signed the contract.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 852 + }, + { + "word": "Zusammenhang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection", + "romanization": "Zusammenhang", + "example_sentence_native": "Es gibt einen direkten Zusammenhang zwischen den beiden Ereignissen.", + "example_sentence_english": "There is a direct connection between the two events.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 853 + }, + { + "word": "Angabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "information", + "romanization": "Angabe", + "example_sentence_native": "Bitte machen Sie genaue Angaben zu Ihrer Person.", + "example_sentence_english": "Please provide precise personal information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 854 + }, + { + "word": "Arzt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "doctor", + "romanization": "Arzt", + "example_sentence_native": "Ich muss zum Arzt gehen.", + "example_sentence_english": "I have to go to the doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 855 + }, + { + "word": "befinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be located", + "romanization": "befinden", + "example_sentence_native": "Das Museum befindet sich im Stadtzentrum.", + "example_sentence_english": "The museum is located in the city center.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 856 + }, + { + "word": "daraus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from it", + "romanization": "daraus", + "example_sentence_native": "Er hat einen Fehler gemacht, und daraus hat er gelernt.", + "example_sentence_english": "He made a mistake, and he learned from it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 857 + }, + { + "word": "erstmals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for the first time", + "romanization": "erstmals", + "example_sentence_native": "Sie besuchte Berlin erstmals im letzten Jahr.", + "example_sentence_english": "She visited Berlin for the first time last year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 859 + }, + { + "word": "Grenze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "border;limit", + "romanization": "Grenze", + "example_sentence_native": "Die Grenze zwischen den Ländern ist lang.", + "example_sentence_english": "The border between the countries is long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 860 + }, + { + "word": "Hund", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dog", + "romanization": "Hund", + "example_sentence_native": "Mein Hund spielt gerne im Garten.", + "example_sentence_english": "My dog likes to play in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 861 + }, + { + "word": "Sicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "view;sight;perspective", + "romanization": "Sicht", + "example_sentence_native": "Aus meiner Sicht ist das eine gute Idee.", + "example_sentence_english": "From my perspective, that's a good idea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 863 + }, + { + "word": "Zeitpunkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "point in time;moment", + "romanization": "Zeitpunkt", + "example_sentence_native": "Zu diesem Zeitpunkt war er nicht da.", + "example_sentence_english": "At this point in time, he wasn't there.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 864 + }, + { + "word": "Anzahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "number;quantity", + "romanization": "Anzahl", + "example_sentence_native": "Die Anzahl der Teilnehmer war hoch.", + "example_sentence_english": "The number of participants was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 865 + }, + { + "word": "baden", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to bathe;to swim", + "romanization": "baden", + "example_sentence_native": "Ich gehe gerne im See baden.", + "example_sentence_english": "I like to swim in the lake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 866 + }, + { + "word": "Bau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction;building;structure", + "romanization": "Bau", + "example_sentence_native": "Der Bau des neuen Hauses dauert lange.", + "example_sentence_english": "The construction of the new house takes a long time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 867 + }, + { + "word": "bloss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mere;bare;only", + "romanization": "bloss", + "example_sentence_native": "Es war bloss ein Missverständnis.", + "example_sentence_english": "It was merely a misunderstanding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 868 + }, + { + "word": "entsprechend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corresponding;appropriate", + "romanization": "entsprechend", + "example_sentence_native": "Er traf die entsprechende Entscheidung.", + "example_sentence_english": "He made the appropriate decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 869 + }, + { + "word": "erstmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "first (of all);for now", + "romanization": "erstmal", + "example_sentence_native": "Lass uns erstmal einen Kaffee trinken.", + "example_sentence_english": "Let's have a coffee first.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 870 + }, + { + "word": "heutig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "today's;current", + "romanization": "heutig", + "example_sentence_native": "Die heutige Sitzung war sehr produktiv.", + "example_sentence_english": "Today's meeting was very productive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 871 + }, + { + "word": "Hintergrund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "background", + "romanization": "Hintergrund", + "example_sentence_native": "Im Hintergrund hörte man leise Musik.", + "example_sentence_english": "In the background, one could hear soft music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 872 + }, + { + "word": "immerhin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "after all;at least", + "romanization": "immerhin", + "example_sentence_native": "Es war kalt, aber immerhin hat es nicht geregnet.", + "example_sentence_english": "It was cold, but at least it didn't rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 873 + }, + { + "word": "Karte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "map;card;ticket", + "romanization": "Karte", + "example_sentence_native": "Ich brauche eine Karte für die Stadt.", + "example_sentence_english": "I need a map for the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 874 + }, + { + "word": "Lust", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "desire;pleasure;mood", + "romanization": "Lust", + "example_sentence_native": "Hast du Lust auf einen Film?", + "example_sentence_english": "Do you feel like watching a movie?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 875 + }, + { + "word": "Meister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "master;champion", + "romanization": "Meister", + "example_sentence_native": "Er ist der Meister seines Fachs.", + "example_sentence_english": "He is the master of his craft.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 876 + }, + { + "word": "Sonne", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sun", + "romanization": "Sonne", + "example_sentence_native": "Die Sonne scheint heute.", + "example_sentence_english": "The sun is shining today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 879 + }, + { + "word": "Tier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "animal", + "romanization": "Tier", + "example_sentence_native": "Das Tier schläft.", + "example_sentence_english": "The animal is sleeping.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 880 + }, + { + "word": "unterstützen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support", + "romanization": "unterstützen", + "example_sentence_native": "Ich möchte dich unterstützen.", + "example_sentence_english": "I want to support you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 881 + }, + { + "word": "Volk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "people;nation", + "romanization": "Volk", + "example_sentence_native": "Das Volk wählte einen neuen Präsidenten.", + "example_sentence_english": "The people elected a new president.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 882 + }, + { + "word": "Website", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "website", + "romanization": "Website", + "example_sentence_native": "Besuchen Sie unsere Website für weitere Informationen.", + "example_sentence_english": "Visit our website for more information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 883 + }, + { + "word": "Arsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ass;butt", + "romanization": "Arsch", + "example_sentence_native": "Er hat sich den Arsch verbrannt.", + "example_sentence_english": "He burned his ass.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 885 + }, + { + "word": "ausserhalb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outside of;beyond", + "romanization": "ausserhalb", + "example_sentence_native": "Das Geschäft ist ausserhalb der Stadt.", + "example_sentence_english": "The shop is outside of the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 886 + }, + { + "word": "gesamt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entire;total", + "romanization": "gesamt", + "example_sentence_native": "Die gesamte Familie war anwesend.", + "example_sentence_english": "The entire family was present.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 888 + }, + { + "word": "Handy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mobile phone;cell phone", + "romanization": "Handy", + "example_sentence_native": "Mein Handy klingelt.", + "example_sentence_english": "My mobile phone is ringing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 889 + }, + { + "word": "international", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "international", + "romanization": "international", + "example_sentence_native": "Das ist ein internationales Problem.", + "example_sentence_english": "This is an international problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 890 + }, + { + "word": "Kaffee", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coffee", + "romanization": "Kaffee", + "example_sentence_native": "Ich trinke gerne Kaffee am Morgen.", + "example_sentence_english": "I like to drink coffee in the morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 891 + }, + { + "word": "Kontakt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "contact", + "romanization": "Kontakt", + "example_sentence_native": "Wir haben keinen Kontakt mehr.", + "example_sentence_english": "We don't have any contact anymore.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 892 + }, + { + "word": "lustig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "funny;amusing", + "romanization": "lustig", + "example_sentence_native": "Der Film war sehr lustig.", + "example_sentence_english": "The movie was very funny.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 894 + }, + { + "word": "Mittel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "means;remedy;average", + "romanization": "Mittel", + "example_sentence_native": "Es gibt kein Mittel gegen diese Krankheit.", + "example_sentence_english": "There is no remedy for this disease.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 895 + }, + { + "word": "perfekt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfect", + "romanization": "perfekt", + "example_sentence_native": "Das ist die perfekte Lösung.", + "example_sentence_english": "That is the perfect solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 897 + }, + { + "word": "Position", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position", + "romanization": "Position", + "example_sentence_native": "Er hat eine gute Position in der Firma.", + "example_sentence_english": "He has a good position in the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 898 + }, + { + "word": "Schloss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "castle;lock", + "romanization": "Schloss", + "example_sentence_native": "Das Schloss ist sehr alt.", + "example_sentence_english": "The castle is very old.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 899 + }, + { + "word": "Schutz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protection", + "romanization": "Schutz", + "example_sentence_native": "Er sucht Schutz vor dem Regen.", + "example_sentence_english": "He seeks protection from the rain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 900 + }, + { + "word": "Studium", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "study (university)", + "romanization": "Studium", + "example_sentence_native": "Mein Studium beginnt im Herbst.", + "example_sentence_english": "My studies begin in autumn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 901 + }, + { + "word": "ständig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constant;continuously", + "romanization": "ständig", + "example_sentence_native": "Er beschwert sich ständig über das Wetter.", + "example_sentence_english": "He constantly complains about the weather.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 902 + }, + { + "word": "Unterschied", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difference", + "romanization": "Unterschied", + "example_sentence_native": "Es gibt einen großen Unterschied zwischen den beiden.", + "example_sentence_english": "There is a big difference between the two.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 903 + }, + { + "word": "Winter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "winter", + "romanization": "Winter", + "example_sentence_native": "Der Winter ist meine Lieblingsjahreszeit.", + "example_sentence_english": "Winter is my favorite season.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 905 + }, + { + "word": "zusätzlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "additional;extra", + "romanization": "zusätzlich", + "example_sentence_native": "Wir brauchen zusätzliche Informationen.", + "example_sentence_english": "We need additional information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 906 + }, + { + "word": "anschliessend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subsequently;afterwards", + "romanization": "anschliessend", + "example_sentence_native": "Zuerst essen wir, anschliessend gehen wir spazieren.", + "example_sentence_english": "First we eat, subsequently we go for a walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 908 + }, + { + "word": "benutzen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to use", + "romanization": "benutzen", + "example_sentence_native": "Kann ich dein Handy benutzen?", + "example_sentence_english": "Can I use your phone?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 909 + }, + { + "word": "Kollege", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colleague", + "romanization": "Kollege", + "example_sentence_native": "Mein Kollege hilft mir bei der Arbeit.", + "example_sentence_english": "My colleague helps me with the work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 911 + }, + { + "word": "legen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to lay;to put", + "romanization": "legen", + "example_sentence_native": "Er legt das Buch auf den Tisch.", + "example_sentence_english": "He lays the book on the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 912 + }, + { + "word": "Leid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sorrow;suffering;regret", + "romanization": "Leid", + "example_sentence_native": "Es tut mir Leid, dass ich zu spät bin.", + "example_sentence_english": "I am sorry that I am late.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 913 + }, + { + "word": "Quelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "source;spring", + "romanization": "Quelle", + "example_sentence_native": "Die Quelle des Flusses ist in den Bergen.", + "example_sentence_english": "The source of the river is in the mountains.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 916 + }, + { + "word": "Studie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "study;research", + "romanization": "Studie", + "example_sentence_native": "Eine neue Studie zeigt interessante Ergebnisse.", + "example_sentence_english": "A new study shows interesting results.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 918 + }, + { + "word": "Technik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technology;technique", + "romanization": "Technik", + "example_sentence_native": "Die moderne Technik verändert unser Leben.", + "example_sentence_english": "Modern technology changes our lives.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 919 + }, + { + "word": "Tisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "table", + "romanization": "Tisch", + "example_sentence_native": "Der Tisch ist aus Holz.", + "example_sentence_english": "The table is made of wood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 920 + }, + { + "word": "Union", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "union", + "romanization": "Union", + "example_sentence_native": "Die Europäische Union ist eine politische und wirtschaftliche Union.", + "example_sentence_english": "The European Union is a political and economic union.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 921 + }, + { + "word": "Urlaub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vacation", + "romanization": "Urlaub", + "example_sentence_native": "Ich mache Urlaub in Spanien.", + "example_sentence_english": "I am going on vacation in Spain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 922 + }, + { + "word": "verletzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to injure", + "romanization": "verletzen", + "example_sentence_native": "Er wollte niemanden verletzen.", + "example_sentence_english": "He didn't want to hurt anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 923 + }, + { + "word": "Werbung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertising", + "romanization": "Werbung", + "example_sentence_native": "Die Werbung im Fernsehen ist oft nervig.", + "example_sentence_english": "The advertising on TV is often annoying.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 924 + }, + { + "word": "Amt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "office", + "romanization": "Amt", + "example_sentence_native": "Er arbeitet im öffentlichen Amt.", + "example_sentence_english": "He works in the public office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 925 + }, + { + "word": "Betrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operation", + "romanization": "Betrieb", + "example_sentence_native": "Der Betrieb läuft gut.", + "example_sentence_english": "The operation is running well.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 926 + }, + { + "word": "Bier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beer", + "romanization": "Bier", + "example_sentence_native": "Ich trinke gerne ein kaltes Bier.", + "example_sentence_english": "I like to drink a cold beer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 927 + }, + { + "word": "Club", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "club", + "romanization": "Club", + "example_sentence_native": "Wir gehen heute Abend in den Club.", + "example_sentence_english": "We are going to the club tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 928 + }, + { + "word": "draussen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "outside", + "romanization": "draussen", + "example_sentence_native": "Es ist kalt draussen.", + "example_sentence_english": "It is cold outside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 929 + }, + { + "word": "Einfluss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "influence", + "romanization": "Einfluss", + "example_sentence_native": "Er hat großen Einfluss auf die Entscheidung.", + "example_sentence_english": "He has great influence on the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 930 + }, + { + "word": "erwähnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mention", + "romanization": "erwähnen", + "example_sentence_native": "Erwähnen Sie das bitte nicht.", + "example_sentence_english": "Please don't mention that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 931 + }, + { + "word": "fühlen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to feel", + "romanization": "fühlen", + "example_sentence_native": "Ich fühle mich heute gut.", + "example_sentence_english": "I feel good today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 932 + }, + { + "word": "Gebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area;region;field", + "romanization": "Gebiet", + "example_sentence_native": "Dieses Gebiet ist sehr schön.", + "example_sentence_english": "This area is very beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 933 + }, + { + "word": "Gericht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dish (food);court (law)", + "romanization": "Gericht", + "example_sentence_native": "Das ist ein leckeres Gericht.", + "example_sentence_english": "That is a delicious dish.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 934 + }, + { + "word": "Himmel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sky;heaven", + "romanization": "Himmel", + "example_sentence_native": "Der Himmel ist heute blau.", + "example_sentence_english": "The sky is blue today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 935 + }, + { + "word": "Jahrhundert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "century", + "romanization": "Jahrhundert", + "example_sentence_native": "Wir leben im 21. Jahrhundert.", + "example_sentence_english": "We live in the 21st century.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 938 + }, + { + "word": "Jugend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youth", + "romanization": "Jugend", + "example_sentence_native": "Die Jugend von heute ist sehr engagiert.", + "example_sentence_english": "Today's youth is very engaged.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 939 + }, + { + "word": "Patient", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "patient", + "romanization": "Patient", + "example_sentence_native": "Der Patient wartet auf den Arzt.", + "example_sentence_english": "The patient is waiting for the doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 942 + }, + { + "word": "persönlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personal;personally", + "romanization": "persönlich", + "example_sentence_native": "Das ist meine persönliche Meinung.", + "example_sentence_english": "That is my personal opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 943 + }, + { + "word": "schlafen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sleep", + "romanization": "schlafen", + "example_sentence_native": "Ich muss jetzt schlafen gehen.", + "example_sentence_english": "I have to go to sleep now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 944 + }, + { + "word": "Teilnehmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "participant", + "romanization": "Teilnehmer", + "example_sentence_native": "Alle Teilnehmer sind pünktlich angekommen.", + "example_sentence_english": "All participants arrived on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 945 + }, + { + "word": "tief", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deep", + "romanization": "tief", + "example_sentence_native": "Der See ist sehr tief.", + "example_sentence_english": "The lake is very deep.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 946 + }, + { + "word": "verbinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to connect;to link", + "romanization": "verbinden", + "example_sentence_native": "Können Sie mich bitte mit Herrn Müller verbinden?", + "example_sentence_english": "Can you please connect me with Mr. Müller?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 947 + }, + { + "word": "willkommen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "welcome", + "romanization": "willkommen", + "example_sentence_native": "Sie sind herzlich willkommen!", + "example_sentence_english": "You are very welcome!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 948 + }, + { + "word": "bauen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to build", + "romanization": "bauen", + "example_sentence_native": "Wir wollen ein neues Haus bauen.", + "example_sentence_english": "We want to build a new house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 949 + }, + { + "word": "Energie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy", + "romanization": "Energie", + "example_sentence_native": "Wir brauchen mehr erneuerbare Energie.", + "example_sentence_english": "We need more renewable energy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 950 + }, + { + "word": "erinnern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remember", + "romanization": "erinnern", + "example_sentence_native": "Ich kann mich nicht an seinen Namen erinnern.", + "example_sentence_english": "I can't remember his name.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 951 + }, + { + "word": "Ex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ex (partner)", + "romanization": "Ex", + "example_sentence_native": "Meine Ex hat mich angerufen.", + "example_sentence_english": "My ex called me.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 952 + }, + { + "word": "Fuss", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "foot", + "romanization": "Fuss", + "example_sentence_native": "Mein Fuss tut weh.", + "example_sentence_english": "My foot hurts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 953 + }, + { + "word": "geboren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "born", + "romanization": "geboren", + "example_sentence_native": "Ich bin in Deutschland geboren.", + "example_sentence_english": "I was born in Germany.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 954 + }, + { + "word": "Hoffnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hope", + "romanization": "Hoffnung", + "example_sentence_native": "Es gibt immer Hoffnung.", + "example_sentence_english": "There is always hope.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 955 + }, + { + "word": "holen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to fetch", + "romanization": "holen", + "example_sentence_native": "Kannst du bitte das Buch holen?", + "example_sentence_english": "Can you please get the book?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 956 + }, + { + "word": "Kilometer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilometer", + "romanization": "Kilometer", + "example_sentence_native": "Das sind zehn Kilometer bis zur Stadt.", + "example_sentence_english": "That's ten kilometers to the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 957 + }, + { + "word": "relativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relatively", + "romanization": "relativ", + "example_sentence_native": "Das ist relativ einfach.", + "example_sentence_english": "That is relatively simple.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 959 + }, + { + "word": "schweizer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Swiss", + "romanization": "schweizer", + "example_sentence_native": "Er isst gerne schweizer Käse.", + "example_sentence_english": "He likes to eat Swiss cheese.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 960 + }, + { + "word": "Show", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "show", + "romanization": "Show", + "example_sentence_native": "Die Show beginnt um acht Uhr.", + "example_sentence_english": "The show starts at eight o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 961 + }, + { + "word": "sterben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to die", + "romanization": "sterben", + "example_sentence_native": "Viele alte Bäume sterben im Winter.", + "example_sentence_english": "Many old trees die in winter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 962 + }, + { + "word": "stets", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "always;constantly", + "romanization": "stets", + "example_sentence_native": "Er ist stets pünktlich.", + "example_sentence_english": "He is always punctual.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 963 + }, + { + "word": "Trainer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coach;trainer", + "romanization": "Trainer", + "example_sentence_native": "Der Trainer motiviert sein Team.", + "example_sentence_english": "The coach motivates his team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 964 + }, + { + "word": "Version", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "version", + "romanization": "Version", + "example_sentence_native": "Das ist die neueste Version der Software.", + "example_sentence_english": "This is the latest version of the software.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 966 + }, + { + "word": "Wald", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forest;wood", + "romanization": "Wald", + "example_sentence_native": "Wir gehen oft im Wald spazieren.", + "example_sentence_english": "We often go for a walk in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 967 + }, + { + "word": "Abschluss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conclusion;degree;graduation", + "romanization": "Abschluss", + "example_sentence_native": "Sie hat ihren Abschluss an der Universität gemacht.", + "example_sentence_english": "She completed her degree at the university.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 968 + }, + { + "word": "aufnehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to record;to take up;to absorb", + "romanization": "aufnehmen", + "example_sentence_native": "Er möchte ein Lied aufnehmen.", + "example_sentence_english": "He wants to record a song.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 969 + }, + { + "word": "Basis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basis;foundation", + "romanization": "Basis", + "example_sentence_native": "Die Basis für unseren Erfolg ist harte Arbeit.", + "example_sentence_english": "The basis for our success is hard work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 970 + }, + { + "word": "beschäftigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to employ;to occupy (oneself with)", + "romanization": "beschäftigen", + "example_sentence_native": "Die Firma beschäftigt viele Mitarbeiter.", + "example_sentence_english": "The company employs many employees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 971 + }, + { + "word": "dahin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "there;thither;gone", + "romanization": "dahin", + "example_sentence_native": "Er ist dahin gegangen, wo die Musik spielt.", + "example_sentence_english": "He went there, where the music plays.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 973 + }, + { + "word": "Gespräch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conversation;discussion", + "romanization": "Gespräch", + "example_sentence_native": "Wir hatten ein interessantes Gespräch über das Wetter.", + "example_sentence_english": "We had an interesting conversation about the weather.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 976 + }, + { + "word": "interessant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "interesting", + "romanization": "interessant", + "example_sentence_native": "Das Buch ist sehr interessant.", + "example_sentence_english": "The book is very interesting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 977 + }, + { + "word": "irgendwo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "somewhere;anywhere", + "romanization": "irgendwo", + "example_sentence_native": "Ich habe meine Schlüssel irgendwo verloren.", + "example_sentence_english": "I lost my keys somewhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 978 + }, + { + "word": "nötig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "necessary", + "romanization": "nötig", + "example_sentence_native": "Das ist nicht nötig.", + "example_sentence_english": "That is not necessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 980 + }, + { + "word": "Partner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "partner", + "romanization": "Partner", + "example_sentence_native": "Mein Partner kommt später.", + "example_sentence_english": "My partner is coming later.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 981 + }, + { + "word": "Party", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "party", + "romanization": "Party", + "example_sentence_native": "Wir gehen heute Abend auf eine Party.", + "example_sentence_english": "We are going to a party tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 982 + }, + { + "word": "Qualität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quality", + "romanization": "Qualität", + "example_sentence_native": "Die Qualität des Produkts ist sehr gut.", + "example_sentence_english": "The quality of the product is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 983 + }, + { + "word": "Richter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judge", + "romanization": "Richter", + "example_sentence_native": "Der Richter verkündete das Urteil.", + "example_sentence_english": "The judge announced the verdict.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 984 + }, + { + "word": "Schaden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damage", + "romanization": "Schaden", + "example_sentence_native": "Es gab großen Schaden nach dem Sturm.", + "example_sentence_english": "There was great damage after the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 985 + }, + { + "word": "Schaden", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damage;harm", + "romanization": "Schaden", + "example_sentence_native": "Der Schaden am Auto ist groß.", + "example_sentence_english": "The damage to the car is extensive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 985 + }, + { + "word": "See", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lake", + "romanization": "See", + "example_sentence_native": "Wir fahren zum See.", + "example_sentence_english": "We are going to the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 986 + }, + { + "word": "Tor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goal", + "romanization": "Tor", + "example_sentence_native": "Er schoss ein Tor.", + "example_sentence_english": "He scored a goal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 987 + }, + { + "word": "täglich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daily", + "romanization": "täglich", + "example_sentence_native": "Ich trinke täglich Kaffee.", + "example_sentence_english": "I drink coffee daily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 988 + }, + { + "word": "wahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "true", + "romanization": "wahr", + "example_sentence_native": "Das ist eine wahre Geschichte.", + "example_sentence_english": "That is a true story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 989 + }, + { + "word": "Aktion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "action", + "romanization": "Aktion", + "example_sentence_native": "Wir müssen jetzt eine Aktion starten.", + "example_sentence_english": "We must start an action now.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 990 + }, + { + "word": "Anteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "share;proportion", + "romanization": "Anteil", + "example_sentence_native": "Jeder bekommt einen gleichen Anteil.", + "example_sentence_english": "Everyone gets an equal share.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 991 + }, + { + "word": "App", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "app", + "romanization": "App", + "example_sentence_native": "Ich habe eine neue App heruntergeladen.", + "example_sentence_english": "I downloaded a new app.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 992 + }, + { + "word": "ausschliesslich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusively;solely", + "romanization": "ausschliesslich", + "example_sentence_native": "Das Angebot gilt ausschliesslich für Mitglieder.", + "example_sentence_english": "The offer applies exclusively to members.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 993 + }, + { + "word": "Beziehung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relationship;connection", + "romanization": "Beziehung", + "example_sentence_native": "Sie haben eine gute Beziehung zueinander.", + "example_sentence_english": "They have a good relationship with each other.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 994 + }, + { + "word": "cool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cool", + "romanization": "cool", + "example_sentence_native": "Das ist ein cooles Auto.", + "example_sentence_english": "That is a cool car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 995 + }, + { + "word": "froh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glad;happy", + "romanization": "froh", + "example_sentence_native": "Ich bin froh, dich zu sehen.", + "example_sentence_english": "I am glad to see you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 998 + }, + { + "word": "Funktion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "function", + "romanization": "Funktion", + "example_sentence_native": "Diese Maschine hat viele Funktionen.", + "example_sentence_english": "This machine has many functions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 999 + }, + { + "word": "Haut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skin", + "romanization": "Haut", + "example_sentence_native": "Die Haut ist das größte Organ des Körpers.", + "example_sentence_english": "The skin is the largest organ of the body.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1000 + }, + { + "word": "hinten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "behind;at the back", + "romanization": "hinten", + "example_sentence_native": "Das Auto steht hinten im Hof.", + "example_sentence_english": "The car is at the back in the yard.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1001 + }, + { + "word": "Inhalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "content;contents", + "romanization": "Inhalt", + "example_sentence_native": "Der Inhalt des Buches ist sehr interessant.", + "example_sentence_english": "The content of the book is very interesting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1002 + }, + { + "word": "Kontrolle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "control;check", + "romanization": "Kontrolle", + "example_sentence_native": "Sie hat die volle Kontrolle über die Situation.", + "example_sentence_english": "She has full control over the situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1003 + }, + { + "word": "leisten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to achieve;to afford;to perform", + "romanization": "leisten", + "example_sentence_native": "Er kann sich ein neues Auto leisten.", + "example_sentence_english": "He can afford a new car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1004 + }, + { + "word": "Rücken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back (body part)", + "romanization": "Rücken", + "example_sentence_native": "Mein Rücken tut weh.", + "example_sentence_english": "My back hurts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1005 + }, + { + "word": "Soldat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soldier", + "romanization": "Soldat", + "example_sentence_native": "Der Soldat kehrte nach Hause zurück.", + "example_sentence_english": "The soldier returned home.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1006 + }, + { + "word": "sozial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social", + "romanization": "sozial", + "example_sentence_native": "Er ist ein sehr sozialer Mensch.", + "example_sentence_english": "He is a very social person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1007 + }, + { + "word": "Vergangenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "past", + "romanization": "Vergangenheit", + "example_sentence_native": "Die Vergangenheit ist wichtig, aber die Zukunft ist wichtiger.", + "example_sentence_english": "The past is important, but the future is more important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1008 + }, + { + "word": "wirken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act;to seem;to have an effect", + "romanization": "wirken", + "example_sentence_native": "Seine Worte wirken sehr überzeugend.", + "example_sentence_english": "His words seem very convincing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1010 + }, + { + "word": "Zustand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state;condition", + "romanization": "Zustand", + "example_sentence_native": "Der Zustand des Autos ist sehr gut.", + "example_sentence_english": "The condition of the car is very good.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1011 + }, + { + "word": "aussehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to look;to appear", + "romanization": "aussehen", + "example_sentence_native": "Du siehst heute sehr gut aus.", + "example_sentence_english": "You look very good today.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1012 + }, + { + "word": "bewusst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conscious;aware", + "romanization": "bewusst", + "example_sentence_native": "Er ist sich der Gefahr bewusst.", + "example_sentence_english": "He is aware of the danger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1013 + }, + { + "word": "Dame", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lady;queen (in chess;cards)", + "romanization": "Dame", + "example_sentence_native": "Die Dame trug einen eleganten Hut.", + "example_sentence_english": "The lady wore an elegant hat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1015 + }, + { + "word": "Diskussion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discussion", + "romanization": "Diskussion", + "example_sentence_native": "Wir hatten eine lange Diskussion über das Thema.", + "example_sentence_english": "We had a long discussion about the topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1016 + }, + { + "word": "fort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "away;gone;on", + "romanization": "fort", + "example_sentence_native": "Er ist schon fortgegangen.", + "example_sentence_english": "He has already gone away.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1018 + }, + { + "word": "Künstler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artist", + "romanization": "Künstler", + "example_sentence_native": "Der Künstler malt ein schönes Bild.", + "example_sentence_english": "The artist paints a beautiful picture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1020 + }, + { + "word": "Literatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literature", + "romanization": "Literatur", + "example_sentence_native": "Sie studiert deutsche Literatur an der Universität.", + "example_sentence_english": "She studies German literature at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1021 + }, + { + "word": "miteinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "together (with each other)", + "romanization": "miteinander", + "example_sentence_native": "Wir sollten mehr miteinander reden.", + "example_sentence_english": "We should talk more with each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1022 + }, + { + "word": "Organisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organization", + "romanization": "Organisation", + "example_sentence_native": "Die Organisation plant ein großes Event.", + "example_sentence_english": "The organization is planning a big event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1023 + }, + { + "word": "rennen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to run", + "romanization": "rennen", + "example_sentence_native": "Die Kinder rennen im Garten.", + "example_sentence_english": "The children run in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1024 + }, + { + "word": "schade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pity;too bad", + "romanization": "schade", + "example_sentence_native": "Es ist schade, dass du nicht kommen kannst.", + "example_sentence_english": "It's a pity that you can't come.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1025 + }, + { + "word": "schlimm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bad;terrible", + "romanization": "schlimm", + "example_sentence_native": "Das Wetter ist heute wirklich schlimm.", + "example_sentence_english": "The weather is really bad today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1026 + }, + { + "word": "Sekunde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "second", + "romanization": "Sekunde", + "example_sentence_native": "Warte bitte eine Sekunde.", + "example_sentence_english": "Please wait a second.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1027 + }, + { + "word": "Umgebung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surroundings;environment", + "romanization": "Umgebung", + "example_sentence_native": "Die Umgebung des Hotels ist sehr schön.", + "example_sentence_english": "The surroundings of the hotel are very beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1029 + }, + { + "word": "verantwortlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "responsible", + "romanization": "verantwortlich", + "example_sentence_native": "Wer ist für dieses Projekt verantwortlich?", + "example_sentence_english": "Who is responsible for this project?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1030 + }, + { + "word": "weltweit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worldwide", + "romanization": "weltweit", + "example_sentence_native": "Das Produkt ist weltweit verfügbar.", + "example_sentence_english": "The product is available worldwide.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1031 + }, + { + "word": "Wunsch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wish", + "romanization": "Wunsch", + "example_sentence_native": "Ich habe einen Wunsch.", + "example_sentence_english": "I have a wish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1032 + }, + { + "word": "zufrieden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "satisfied", + "romanization": "zufrieden", + "example_sentence_native": "Bist du mit dem Ergebnis zufrieden?", + "example_sentence_english": "Are you satisfied with the result?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1034 + }, + { + "word": "Zusammenarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperation", + "romanization": "Zusammenarbeit", + "example_sentence_native": "Die Zusammenarbeit war sehr erfolgreich.", + "example_sentence_english": "The cooperation was very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1035 + }, + { + "word": "berichten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to report", + "romanization": "berichten", + "example_sentence_native": "Er wird über die Neuigkeiten berichten.", + "example_sentence_english": "He will report on the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1036 + }, + { + "word": "Geburtstag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "birthday", + "romanization": "Geburtstag", + "example_sentence_native": "Wann hast du Geburtstag?", + "example_sentence_english": "When is your birthday?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1039 + }, + { + "word": "Gegensatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contrast;opposite", + "romanization": "Gegensatz", + "example_sentence_native": "Im Gegensatz zu dir mag ich Kaffee.", + "example_sentence_english": "In contrast to you, I like coffee.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1040 + }, + { + "word": "grundsätzlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fundamentally;in principle", + "romanization": "grundsätzlich", + "example_sentence_native": "Grundsätzlich stimme ich dir zu.", + "example_sentence_english": "Fundamentally, I agree with you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1041 + }, + { + "word": "Insel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "island", + "romanization": "Insel", + "example_sentence_native": "Wir fahren auf eine schöne Insel.", + "example_sentence_english": "We are going to a beautiful island.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1042 + }, + { + "word": "Netz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "net;network", + "romanization": "Netz", + "example_sentence_native": "Das Internet ist ein großes Netz.", + "example_sentence_english": "The internet is a big network.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1043 + }, + { + "word": "normal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "normal", + "romanization": "normal", + "example_sentence_native": "Das ist ein ganz normaler Tag.", + "example_sentence_english": "This is a completely normal day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1044 + }, + { + "word": "Prozess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "process;trial", + "romanization": "Prozess", + "example_sentence_native": "Der Prozess der Herstellung ist komplex.", + "example_sentence_english": "The manufacturing process is complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1045 + }, + { + "word": "Schwester", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sister", + "romanization": "Schwester", + "example_sentence_native": "Meine Schwester ist älter als ich.", + "example_sentence_english": "My sister is older than me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1046 + }, + { + "word": "vertreten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to represent;to substitute", + "romanization": "vertreten", + "example_sentence_native": "Er wird uns bei der Konferenz vertreten.", + "example_sentence_english": "He will represent us at the conference.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1048 + }, + { + "word": "vorhanden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "available;existing", + "romanization": "vorhanden", + "example_sentence_native": "Sind alle notwendigen Dokumente vorhanden?", + "example_sentence_english": "Are all necessary documents available?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1049 + }, + { + "word": "wünschen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wish", + "romanization": "wünschen", + "example_sentence_native": "Ich wünsche dir alles Gute.", + "example_sentence_english": "I wish you all the best.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1051 + }, + { + "word": "zuhause", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at home", + "romanization": "zuhause", + "example_sentence_native": "Ich bin zuhause.", + "example_sentence_english": "I am at home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1052 + }, + { + "word": "Autor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "author", + "romanization": "Autor", + "example_sentence_native": "Der Autor hat ein neues Buch geschrieben.", + "example_sentence_english": "The author has written a new book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1053 + }, + { + "word": "bezahlen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pay", + "romanization": "bezahlen", + "example_sentence_native": "Ich muss die Rechnung bezahlen.", + "example_sentence_english": "I have to pay the bill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1054 + }, + { + "word": "Dienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "service", + "romanization": "Dienst", + "example_sentence_native": "Er ist im Dienst.", + "example_sentence_english": "He is on duty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1055 + }, + { + "word": "dumm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stupid", + "romanization": "dumm", + "example_sentence_native": "Das ist eine dumme Idee.", + "example_sentence_english": "That is a stupid idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1056 + }, + { + "word": "Eindruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impression", + "romanization": "Eindruck", + "example_sentence_native": "Er hat einen guten Eindruck gemacht.", + "example_sentence_english": "He made a good impression.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1057 + }, + { + "word": "enthalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contain", + "romanization": "enthalten", + "example_sentence_native": "Diese Flasche enthält Wasser.", + "example_sentence_english": "This bottle contains water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1058 + }, + { + "word": "entstehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arise", + "romanization": "entstehen", + "example_sentence_native": "Daraus kann ein Problem entstehen.", + "example_sentence_english": "A problem can arise from that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1059 + }, + { + "word": "feiern", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to celebrate", + "romanization": "feiern", + "example_sentence_native": "Wir wollen heute Abend feiern.", + "example_sentence_english": "We want to celebrate tonight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1060 + }, + { + "word": "Feuer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fire", + "romanization": "Feuer", + "example_sentence_native": "Das Feuer wärmt uns.", + "example_sentence_english": "The fire warms us.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1061 + }, + { + "word": "geschehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen;to occur", + "romanization": "geschehen", + "example_sentence_native": "Was ist geschehen?", + "example_sentence_english": "What has happened?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1062 + }, + { + "word": "Halle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hall;large room", + "romanization": "Halle", + "example_sentence_native": "Die Halle war voller Menschen.", + "example_sentence_english": "The hall was full of people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1063 + }, + { + "word": "hingegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on the other hand;however", + "romanization": "hingegen", + "example_sentence_native": "Er mag Kaffee, ich hingegen trinke lieber Tee.", + "example_sentence_english": "He likes coffee, I, on the other hand, prefer to drink tea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1064 + }, + { + "word": "Interview", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interview", + "romanization": "Interview", + "example_sentence_native": "Sie hatte ein wichtiges Interview.", + "example_sentence_english": "She had an important interview.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1065 + }, + { + "word": "Kamera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camera", + "romanization": "Kamera", + "example_sentence_native": "Die Kamera ist neu.", + "example_sentence_english": "The camera is new.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1066 + }, + { + "word": "lachen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to laugh", + "romanization": "lachen", + "example_sentence_native": "Sie mussten sehr lachen.", + "example_sentence_english": "They had to laugh a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1067 + }, + { + "word": "Praxis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practice;doctor's office", + "romanization": "Praxis", + "example_sentence_native": "Die Praxis ist am Dienstag geschlossen.", + "example_sentence_english": "The doctor's office is closed on Tuesday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1068 + }, + { + "word": "ruhig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiet;calm", + "romanization": "ruhig", + "example_sentence_native": "Bitte sei ruhig.", + "example_sentence_english": "Please be quiet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1069 + }, + { + "word": "Szene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scene", + "romanization": "Szene", + "example_sentence_native": "Die Szene war sehr dramatisch.", + "example_sentence_english": "The scene was very dramatic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1070 + }, + { + "word": "Telefon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telephone", + "romanization": "Telefon", + "example_sentence_native": "Kannst du das Telefon beantworten?", + "example_sentence_english": "Can you answer the telephone?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1071 + }, + { + "word": "trinken", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to drink", + "romanization": "trinken", + "example_sentence_native": "Ich möchte Wasser trinken.", + "example_sentence_english": "I would like to drink water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1072 + }, + { + "word": "verhindern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prevent", + "romanization": "verhindern", + "example_sentence_native": "Wir müssen das Schlimmste verhindern.", + "example_sentence_english": "We must prevent the worst.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1073 + }, + { + "word": "weiss", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "white", + "romanization": "weiss", + "example_sentence_native": "Der Schnee ist weiß.", + "example_sentence_english": "The snow is white.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1074 + }, + { + "word": "Wetter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "weather", + "romanization": "Wetter", + "example_sentence_native": "Das Wetter ist heute schön.", + "example_sentence_english": "The weather is nice today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1075 + }, + { + "word": "wiederum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in turn", + "romanization": "wiederum", + "example_sentence_native": "Er half ihr, und sie half ihm wiederum.", + "example_sentence_english": "He helped her, and she in turn helped him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1076 + }, + { + "word": "zugleich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at the same time", + "romanization": "zugleich", + "example_sentence_native": "Sie lachte und weinte zugleich.", + "example_sentence_english": "She laughed and cried at the same time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1077 + }, + { + "word": "zählen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to count", + "romanization": "zählen", + "example_sentence_native": "Kannst du bis zehn zählen?", + "example_sentence_english": "Can you count to ten?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1078 + }, + { + "word": "Album", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "album", + "romanization": "Album", + "example_sentence_native": "Ich habe ein neues Fotoalbum gekauft.", + "example_sentence_english": "I bought a new photo album.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1079 + }, + { + "word": "allgemein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "general;common", + "romanization": "allgemein", + "example_sentence_native": "Das ist eine allgemeine Regel.", + "example_sentence_english": "That is a general rule.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1080 + }, + { + "word": "Demokratie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "democracy", + "romanization": "Demokratie", + "example_sentence_native": "Die Demokratie ist eine wichtige Staatsform.", + "example_sentence_english": "Democracy is an important form of government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1083 + }, + { + "word": "einsetzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insert;to deploy;to use", + "romanization": "einsetzen", + "example_sentence_native": "Er wird sich für den Umweltschutz einsetzen.", + "example_sentence_english": "He will advocate for environmental protection.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1084 + }, + { + "word": "entdecken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to discover", + "romanization": "entdecken", + "example_sentence_native": "Kolumbus wollte Indien entdecken.", + "example_sentence_english": "Columbus wanted to discover India.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1085 + }, + { + "word": "extrem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extreme;extremely", + "romanization": "extrem", + "example_sentence_native": "Das Wetter ist extrem kalt.", + "example_sentence_english": "The weather is extremely cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1086 + }, + { + "word": "Flughafen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airport", + "romanization": "Flughafen", + "example_sentence_native": "Wir fahren zum Flughafen.", + "example_sentence_english": "We are driving to the airport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1087 + }, + { + "word": "jährig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "-year-old (as in 'three-year-old')", + "romanization": "jährig", + "example_sentence_native": "Das ist ein dreijähriges Kind.", + "example_sentence_english": "That is a three-year-old child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1088 + }, + { + "word": "kostenlos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "free of charge", + "romanization": "kostenlos", + "example_sentence_native": "Der Eintritt ist kostenlos.", + "example_sentence_english": "Admission is free of charge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1089 + }, + { + "word": "Krankenhaus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hospital", + "romanization": "Krankenhaus", + "example_sentence_native": "Das Krankenhaus ist groß und modern.", + "example_sentence_english": "The hospital is large and modern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1090 + }, + { + "word": "längst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long ago;by far", + "romanization": "längst", + "example_sentence_native": "Er ist längst gegangen.", + "example_sentence_english": "He left long ago.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1091 + }, + { + "word": "Mund", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mouth", + "romanization": "Mund", + "example_sentence_native": "Sie öffnete ihren Mund, um zu sprechen.", + "example_sentence_english": "She opened her mouth to speak.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1092 + }, + { + "word": "Osten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "east", + "romanization": "Osten", + "example_sentence_native": "Die Sonne geht im Osten auf.", + "example_sentence_english": "The sun rises in the east.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1093 + }, + { + "word": "positiv", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "positive", + "romanization": "positiv", + "example_sentence_native": "Sie hat eine sehr positive Einstellung zum Leben.", + "example_sentence_english": "She has a very positive attitude towards life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1094 + }, + { + "word": "schützen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protect", + "romanization": "schützen", + "example_sentence_native": "Wir müssen die Umwelt schützen.", + "example_sentence_english": "We must protect the environment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1095 + }, + { + "word": "tot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dead", + "romanization": "tot", + "example_sentence_native": "Die Pflanze ist leider tot.", + "example_sentence_english": "The plant is unfortunately dead.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1096 + }, + { + "word": "Verkehr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traffic", + "romanization": "Verkehr", + "example_sentence_native": "Der Verkehr in der Stadt ist oft sehr dicht.", + "example_sentence_english": "The traffic in the city is often very heavy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1098 + }, + { + "word": "Verlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publisher;publishing house", + "romanization": "Verlag", + "example_sentence_native": "Sie arbeitet bei einem bekannten Verlag.", + "example_sentence_english": "She works at a well-known publishing house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1099 + }, + { + "word": "wiener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Viennese", + "romanization": "wiener", + "example_sentence_native": "Der Wiener Kaffee ist sehr berühmt.", + "example_sentence_english": "The Viennese coffee is very famous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1100 + }, + { + "word": "Anschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection;annexation", + "romanization": "Anschluss", + "example_sentence_native": "Wir haben einen guten Anschluss an das Internet.", + "example_sentence_english": "We have a good connection to the internet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1101 + }, + { + "word": "Anspruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claim;right;demand", + "romanization": "Anspruch", + "example_sentence_native": "Er hat keinen Anspruch auf das Erbe.", + "example_sentence_english": "He has no claim to the inheritance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1102 + }, + { + "word": "arm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "poor", + "romanization": "arm", + "example_sentence_native": "Die Familie ist sehr arm.", + "example_sentence_english": "The family is very poor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjektiv", + "word_frequency": 1103 + }, + { + "word": "Arm", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "arm", + "romanization": "Arm", + "example_sentence_native": "Er hat sich den Arm gebrochen.", + "example_sentence_english": "He broke his arm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 1103 + }, + { + "word": "Armee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "army", + "romanization": "Armee", + "example_sentence_native": "Die Armee schützte das Land.", + "example_sentence_english": "The army protected the country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1104 + }, + { + "word": "Auftrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "order;assignment;commission", + "romanization": "Auftrag", + "example_sentence_native": "Er hat einen wichtigen Auftrag erhalten.", + "example_sentence_english": "He has received an important assignment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1105 + }, + { + "word": "Ausland", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "foreign country;abroad", + "romanization": "Ausland", + "example_sentence_native": "Viele Studenten gehen ins Ausland.", + "example_sentence_english": "Many students go abroad.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1106 + }, + { + "word": "Behandlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treatment;handling", + "romanization": "Behandlung", + "example_sentence_native": "Die Behandlung war erfolgreich.", + "example_sentence_english": "The treatment was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1107 + }, + { + "word": "bestätigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confirm;to affirm", + "romanization": "bestätigen", + "example_sentence_native": "Können Sie bitte Ihre Reservierung bestätigen?", + "example_sentence_english": "Can you please confirm your reservation?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1108 + }, + { + "word": "böse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "evil;angry;bad", + "romanization": "böse", + "example_sentence_native": "Er war böse auf seinen Freund.", + "example_sentence_english": "He was angry at his friend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1109 + }, + { + "word": "diesmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "this time", + "romanization": "diesmal", + "example_sentence_native": "Diesmal wird alles anders sein.", + "example_sentence_english": "This time everything will be different.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1110 + }, + { + "word": "Dorf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "village", + "romanization": "Dorf", + "example_sentence_native": "Das Dorf liegt in den Bergen.", + "example_sentence_english": "The village is located in the mountains.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1111 + }, + { + "word": "erfolgen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take place;to happen", + "romanization": "erfolgen", + "example_sentence_native": "Die Lieferung wird morgen erfolgen.", + "example_sentence_english": "The delivery will take place tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1112 + }, + { + "word": "erscheinen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appear;to seem", + "romanization": "erscheinen", + "example_sentence_native": "Erscheint mir logisch.", + "example_sentence_english": "Seems logical to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1113 + }, + { + "word": "Herbst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "autumn;fall", + "romanization": "Herbst", + "example_sentence_native": "Im Herbst fallen die Blätter von den Bäumen.", + "example_sentence_english": "In autumn, the leaves fall from the trees.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1114 + }, + { + "word": "hoffentlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hopefully", + "romanization": "hoffentlich", + "example_sentence_native": "Hoffentlich scheint morgen die Sonne.", + "example_sentence_english": "Hopefully the sun will shine tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1115 + }, + { + "word": "hängen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hang (intransitive)", + "romanization": "hängen", + "example_sentence_native": "Das Bild hängt an der Wand.", + "example_sentence_english": "The picture hangs on the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1116 + }, + { + "word": "Konzept", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concept;draft", + "romanization": "Konzept", + "example_sentence_native": "Das Konzept für das neue Projekt ist fertig.", + "example_sentence_english": "The concept for the new project is ready.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1117 + }, + { + "word": "kämpfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fight;to struggle", + "romanization": "kämpfen", + "example_sentence_native": "Sie kämpfen für ihre Rechte.", + "example_sentence_english": "They fight for their rights.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1118 + }, + { + "word": "Min", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute (informal abbreviation)", + "romanization": "Min", + "example_sentence_native": "Ich brauche noch fünf Min.", + "example_sentence_english": "I need five more minutes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1119 + }, + { + "word": "notwendig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "necessary", + "romanization": "notwendig", + "example_sentence_native": "Es ist notwendig, Deutsch zu lernen.", + "example_sentence_english": "It is necessary to learn German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1120 + }, + { + "word": "nah", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "near;close", + "romanization": "nah", + "example_sentence_native": "Der Bahnhof ist ganz nah.", + "example_sentence_english": "The train station is very close.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1121 + }, + { + "word": "Plus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plus;advantage", + "romanization": "Plus", + "example_sentence_native": "Das ist ein großes Plus für uns.", + "example_sentence_english": "That is a big plus for us.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1122 + }, + { + "word": "Professor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "professor", + "romanization": "Professor", + "example_sentence_native": "Der Professor hält eine Vorlesung.", + "example_sentence_english": "The professor is giving a lecture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1123 + }, + { + "word": "Rat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advice;council", + "romanization": "Rat", + "example_sentence_native": "Ich brauche deinen Rat.", + "example_sentence_english": "I need your advice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1124 + }, + { + "word": "Spiegel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mirror", + "romanization": "Spiegel", + "example_sentence_native": "Sie schaut in den Spiegel.", + "example_sentence_english": "She looks in the mirror.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1125 + }, + { + "word": "Spitze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip;peak;top;lace", + "romanization": "Spitze", + "example_sentence_native": "Er erreichte die Spitze des Berges.", + "example_sentence_english": "He reached the peak of the mountain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1126 + }, + { + "word": "Star", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "star (celebrity or celestial body)", + "romanization": "Star", + "example_sentence_native": "Sie ist ein großer Star in der Musikwelt.", + "example_sentence_english": "She is a big star in the music world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1127 + }, + { + "word": "Test", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "test", + "romanization": "Test", + "example_sentence_native": "Der Test war sehr schwierig.", + "example_sentence_english": "The test was very difficult.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1128 + }, + { + "word": "Tour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tour", + "romanization": "Tour", + "example_sentence_native": "Wir machen eine Tour durch die Stadt.", + "example_sentence_english": "We are taking a tour through the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1129 + }, + { + "word": "Verantwortung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsibility", + "romanization": "Verantwortung", + "example_sentence_native": "Sie trägt die Verantwortung für das Projekt.", + "example_sentence_english": "She bears the responsibility for the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1130 + }, + { + "word": "wesentlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "essential;significant", + "romanization": "wesentlich", + "example_sentence_native": "Das ist ein wesentlicher Unterschied.", + "example_sentence_english": "That is an essential difference.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1131 + }, + { + "word": "aussen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "outside", + "romanization": "aussen", + "example_sentence_native": "Wir warten aussen.", + "example_sentence_english": "We are waiting outside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1133 + }, + { + "word": "behandeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat;to handle", + "romanization": "behandeln", + "example_sentence_native": "Der Arzt wird ihn behandeln.", + "example_sentence_english": "The doctor will treat him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1134 + }, + { + "word": "Blut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood", + "romanization": "Blut", + "example_sentence_native": "Er hat Blut gespendet.", + "example_sentence_english": "He donated blood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1135 + }, + { + "word": "Bürgermeister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mayor", + "romanization": "Bürgermeister", + "example_sentence_native": "Der Bürgermeister hat eine Rede gehalten.", + "example_sentence_english": "The mayor gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1136 + }, + { + "word": "Büro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "office", + "romanization": "Büro", + "example_sentence_native": "Ich gehe ins Büro.", + "example_sentence_english": "I am going to the office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1137 + }, + { + "word": "ehemalig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former;ex-", + "romanization": "ehemalig", + "example_sentence_native": "Das ist mein ehemaliger Lehrer.", + "example_sentence_english": "That is my former teacher.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1138 + }, + { + "word": "erlauben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to allow;to permit", + "romanization": "erlauben", + "example_sentence_native": "Meine Eltern erlauben mir das.", + "example_sentence_english": "My parents allow me that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1139 + }, + { + "word": "Farbe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "color", + "romanization": "Farbe", + "example_sentence_native": "Welche Farbe hat dein Auto?", + "example_sentence_english": "What color is your car?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1140 + }, + { + "word": "Führung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leadership;tour", + "romanization": "Führung", + "example_sentence_native": "Die Führung durch das Museum war sehr interessant.", + "example_sentence_english": "The tour through the museum was very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1141 + }, + { + "word": "Garten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garden", + "romanization": "Garten", + "example_sentence_native": "Wir haben einen schönen Garten hinter dem Haus.", + "example_sentence_english": "We have a beautiful garden behind the house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1142 + }, + { + "word": "Gegner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opponent", + "romanization": "Gegner", + "example_sentence_native": "Unser Team hat einen starken Gegner.", + "example_sentence_english": "Our team has a strong opponent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1143 + }, + { + "word": "Gast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guest", + "romanization": "Gast", + "example_sentence_native": "Wir erwarten heute Abend einen Gast.", + "example_sentence_english": "We are expecting a guest tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1144 + }, + { + "word": "Heimat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeland;home", + "romanization": "Heimat", + "example_sentence_native": "Viele Menschen vermissen ihre Heimat.", + "example_sentence_english": "Many people miss their homeland.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1145 + }, + { + "word": "Industrie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industry", + "romanization": "Industrie", + "example_sentence_native": "Die Industrie spielt eine wichtige Rolle in der Wirtschaft.", + "example_sentence_english": "Industry plays an important role in the economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1146 + }, + { + "word": "innen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside", + "romanization": "innen", + "example_sentence_native": "Es ist kalt draußen, aber warm innen.", + "example_sentence_english": "It's cold outside, but warm inside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1147 + }, + { + "word": "Kg", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram", + "romanization": "Kg", + "example_sentence_native": "Ich brauche 2 Kg Äpfel.", + "example_sentence_english": "I need 2 kg of apples.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1148 + }, + { + "word": "Leitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "management;line", + "romanization": "Leitung", + "example_sentence_native": "Sie hat die Leitung des Projekts übernommen.", + "example_sentence_english": "She took over the management of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1149 + }, + { + "word": "Lied", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "song", + "romanization": "Lied", + "example_sentence_native": "Das Lied ist sehr schön.", + "example_sentence_english": "The song is very beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1150 + }, + { + "word": "Liga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "league", + "romanization": "Liga", + "example_sentence_native": "Sie spielen in der ersten Liga.", + "example_sentence_english": "They play in the first league.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1151 + }, + { + "word": "Mehrheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "majority", + "romanization": "Mehrheit", + "example_sentence_native": "Die Mehrheit der Leute stimmte zu.", + "example_sentence_english": "The majority of people agreed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1152 + }, + { + "word": "offensichtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obvious", + "romanization": "offensichtlich", + "example_sentence_native": "Das Problem ist offensichtlich.", + "example_sentence_english": "The problem is obvious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1153 + }, + { + "word": "unglaublich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incredible", + "romanization": "unglaublich", + "example_sentence_native": "Das ist unglaublich!", + "example_sentence_english": "That is incredible!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1156 + }, + { + "word": "Van", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "van", + "romanization": "Van", + "example_sentence_native": "Wir haben einen neuen Van gekauft.", + "example_sentence_english": "We bought a new van.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1157 + }, + { + "word": "vorne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in front", + "romanization": "vorne", + "example_sentence_native": "Er sitzt ganz vorne.", + "example_sentence_english": "He sits right at the front.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1158 + }, + { + "word": "Waffe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weapon", + "romanization": "Waffe", + "example_sentence_native": "Er trug eine Waffe.", + "example_sentence_english": "He carried a weapon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1159 + }, + { + "word": "Westen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "west", + "romanization": "Westen", + "example_sentence_native": "Die Sonne geht im Westen unter.", + "example_sentence_english": "The sun sets in the west.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1160 + }, + { + "word": "wohnen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to live;to reside", + "romanization": "wohnen", + "example_sentence_native": "Ich wohne in Berlin.", + "example_sentence_english": "I live in Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1161 + }, + { + "word": "Bezug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reference;relation", + "romanization": "Bezug", + "example_sentence_native": "In Bezug auf Ihre Anfrage...", + "example_sentence_english": "In reference to your inquiry...", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1164 + }, + { + "word": "bilden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to form;to educate", + "romanization": "bilden", + "example_sentence_native": "Sie bilden einen Kreis.", + "example_sentence_english": "They form a circle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1165 + }, + { + "word": "Bus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "romanization": "Bus", + "example_sentence_native": "Der Bus kommt gleich.", + "example_sentence_english": "The bus is coming soon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1166 + }, + { + "word": "Finale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final", + "romanization": "Finale", + "example_sentence_native": "Das Finale war sehr spannend.", + "example_sentence_english": "The final was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1170 + }, + { + "word": "General", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "general (military rank)", + "romanization": "General", + "example_sentence_native": "Der General gab den Befehl.", + "example_sentence_english": "The general gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1172 + }, + { + "word": "Kaiser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emperor", + "romanization": "Kaiser", + "example_sentence_native": "Der Kaiser regierte das Reich.", + "example_sentence_english": "The emperor ruled the empire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1173 + }, + { + "word": "Leiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leader;head (male)", + "romanization": "Leiter", + "example_sentence_native": "Der Leiter des Projekts war sehr erfahren.", + "example_sentence_english": "The head of the project was very experienced.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1174 + }, + { + "word": "Meer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sea;ocean", + "romanization": "Meer", + "example_sentence_native": "Wir fuhren ans Meer.", + "example_sentence_english": "We drove to the sea.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1175 + }, + { + "word": "neun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nine", + "romanization": "neun", + "example_sentence_native": "Ich habe neun Äpfel.", + "example_sentence_english": "I have nine apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 1176 + }, + { + "word": "Park", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "park", + "romanization": "Park", + "example_sentence_native": "Wir gehen in den Park.", + "example_sentence_english": "We are going to the park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1177 + }, + { + "word": "Theater", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "theater", + "romanization": "Theater", + "example_sentence_native": "Wir gehen heute Abend ins Theater.", + "example_sentence_english": "We are going to the theater tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1179 + }, + { + "word": "Traum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dream", + "romanization": "Traum", + "example_sentence_native": "Ich hatte einen schönen Traum letzte Nacht.", + "example_sentence_english": "I had a beautiful dream last night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1180 + }, + { + "word": "Verwendung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "use;application", + "romanization": "Verwendung", + "example_sentence_native": "Die Verwendung dieses Werkzeugs ist einfach.", + "example_sentence_english": "The use of this tool is simple.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1181 + }, + { + "word": "Wirkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effect;impact", + "romanization": "Wirkung", + "example_sentence_native": "Die neue Medizin hat eine starke Wirkung.", + "example_sentence_english": "The new medicine has a strong effect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1182 + }, + { + "word": "Anlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facility;investment;talent", + "romanization": "Anlage", + "example_sentence_native": "Die neue Anlage ist sehr modern.", + "example_sentence_english": "The new facility is very modern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1184 + }, + { + "word": "Ausgabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expense;edition;output", + "romanization": "Ausgabe", + "example_sentence_native": "Die monatlichen Ausgaben sind hoch.", + "example_sentence_english": "The monthly expenses are high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1185 + }, + { + "word": "Baby", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baby", + "romanization": "Baby", + "example_sentence_native": "Das Baby schläft friedlich.", + "example_sentence_english": "The baby is sleeping peacefully.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1186 + }, + { + "word": "betragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to amount to;to behave", + "romanization": "betragen", + "example_sentence_native": "Die Gesamtkosten betragen 50 Euro.", + "example_sentence_english": "The total costs amount to 50 Euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1187 + }, + { + "word": "Brief", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "letter", + "romanization": "Brief", + "example_sentence_native": "Ich habe einen Brief von meiner Familie bekommen.", + "example_sentence_english": "I received a letter from my family.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1188 + }, + { + "word": "Fahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journey;ride;trip", + "romanization": "Fahrt", + "example_sentence_native": "Die Fahrt zum Meer dauert zwei Stunden.", + "example_sentence_english": "The journey to the sea takes two hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1189 + }, + { + "word": "herum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "around", + "romanization": "herum", + "example_sentence_native": "Die Kinder spielen im Garten herum.", + "example_sentence_english": "The children are playing around in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1191 + }, + { + "word": "Jude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Jew (male)", + "romanization": "Jude", + "example_sentence_native": "Er ist ein Jude.", + "example_sentence_english": "He is a Jew.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1193 + }, + { + "word": "Kauf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "purchase", + "romanization": "Kauf", + "example_sentence_native": "Der Kauf des Hauses war eine große Entscheidung.", + "example_sentence_english": "The purchase of the house was a big decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1194 + }, + { + "word": "Kommentar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comment", + "romanization": "Kommentar", + "example_sentence_native": "Sie hinterließ einen Kommentar unter dem Artikel.", + "example_sentence_english": "She left a comment under the article.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1195 + }, + { + "word": "Landkreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rural district", + "romanization": "Landkreis", + "example_sentence_native": "Er wohnt in einem Landkreis in Bayern.", + "example_sentence_english": "He lives in a rural district in Bavaria.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1196 + }, + { + "word": "Modell", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "model", + "romanization": "Modell", + "example_sentence_native": "Das neue Modell des Autos ist sehr beliebt.", + "example_sentence_english": "The new model of the car is very popular.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1197 + }, + { + "word": "Museum", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "museum", + "romanization": "Museum", + "example_sentence_native": "Wir besuchen das Museum am Wochenende.", + "example_sentence_english": "We are visiting the museum on the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1198 + }, + { + "word": "Produkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "product", + "romanization": "Produkt", + "example_sentence_native": "Dieses Produkt ist sehr umweltfreundlich.", + "example_sentence_english": "This product is very environmentally friendly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1199 + }, + { + "word": "Religion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religion", + "romanization": "Religion", + "example_sentence_native": "Die Religion spielt eine wichtige Rolle in vielen Kulturen.", + "example_sentence_english": "Religion plays an important role in many cultures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1200 + }, + { + "word": "Urteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judgment;verdict", + "romanization": "Urteil", + "example_sentence_native": "Das Gericht fällte ein gerechtes Urteil.", + "example_sentence_english": "The court passed a fair judgment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1201 + }, + { + "word": "Veranstaltung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event;function", + "romanization": "Veranstaltung", + "example_sentence_native": "Die Veranstaltung beginnt um 19 Uhr.", + "example_sentence_english": "The event starts at 7 PM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1202 + }, + { + "word": "Vertreter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representative;agent", + "romanization": "Vertreter", + "example_sentence_native": "Er ist der Vertreter der Firma in Deutschland.", + "example_sentence_english": "He is the company's representative in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1203 + }, + { + "word": "Verwaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administration;management", + "romanization": "Verwaltung", + "example_sentence_native": "Die Verwaltung ist für die Organisation zuständig.", + "example_sentence_english": "The administration is responsible for the organization.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1204 + }, + { + "word": "verändern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to change;to alter", + "romanization": "verändern", + "example_sentence_native": "Wir müssen unsere Strategie verändern.", + "example_sentence_english": "We need to change our strategy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1205 + }, + { + "word": "übernehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take over;to assume", + "romanization": "übernehmen", + "example_sentence_native": "Er wird die Verantwortung übernehmen.", + "example_sentence_english": "He will take over the responsibility.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1207 + }, + { + "word": "Angriff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attack;assault", + "romanization": "Angriff", + "example_sentence_native": "Der Angriff kam unerwartet.", + "example_sentence_english": "The attack came unexpectedly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1208 + }, + { + "word": "einig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "united;agreed", + "romanization": "einig", + "example_sentence_native": "Sie waren sich in diesem Punkt einig.", + "example_sentence_english": "They were united on this point.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1209 + }, + { + "word": "Forschung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "research", + "romanization": "Forschung", + "example_sentence_native": "Die Forschung in diesem Bereich ist sehr wichtig.", + "example_sentence_english": "The research in this area is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1210 + }, + { + "word": "planen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plan", + "romanization": "planen", + "example_sentence_native": "Wir müssen unseren Urlaub planen.", + "example_sentence_english": "We need to plan our vacation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1211 + }, + { + "word": "Grundlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basis;foundation", + "romanization": "Grundlage", + "example_sentence_native": "Das ist die Grundlage für unser Projekt.", + "example_sentence_english": "That is the basis for our project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1212 + }, + { + "word": "Karriere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "career", + "romanization": "Karriere", + "example_sentence_native": "Sie hat eine erfolgreiche Karriere.", + "example_sentence_english": "She has a successful career.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1213 + }, + { + "word": "Mark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marrow", + "romanization": "Mark", + "example_sentence_native": "Knochenmark ist wichtig für die Blutbildung.", + "example_sentence_english": "Bone marrow is important for blood formation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1214 + }, + { + "word": "Material", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "material", + "romanization": "Material", + "example_sentence_native": "Wir brauchen mehr Material für das Projekt.", + "example_sentence_english": "We need more material for the project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1215 + }, + { + "word": "nett", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nice;kind", + "romanization": "nett", + "example_sentence_native": "Sie ist eine sehr nette Person.", + "example_sentence_english": "She is a very nice person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1216 + }, + { + "word": "Polizist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police officer (male)", + "romanization": "Polizist", + "example_sentence_native": "Der Polizist half uns den Weg zu finden.", + "example_sentence_english": "The police officer helped us find the way.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1217 + }, + { + "word": "schicken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send", + "romanization": "schicken", + "example_sentence_native": "Ich werde dir eine E-Mail schicken.", + "example_sentence_english": "I will send you an email.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1218 + }, + { + "word": "Seele", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soul", + "romanization": "Seele", + "example_sentence_native": "Er hat eine gute Seele.", + "example_sentence_english": "He has a good soul.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1219 + }, + { + "word": "Strom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current;electricity;river", + "romanization": "Strom", + "example_sentence_native": "Der Strom ist ausgefallen.", + "example_sentence_english": "The power went out.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1221 + }, + { + "word": "treten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to step;to kick", + "romanization": "treten", + "example_sentence_native": "Er tritt auf die Bremse.", + "example_sentence_english": "He steps on the brake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1222 + }, + { + "word": "Unfall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accident", + "romanization": "Unfall", + "example_sentence_native": "Es gab einen Unfall auf der Autobahn.", + "example_sentence_english": "There was an accident on the highway.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1224 + }, + { + "word": "ungefähr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "approximately;about", + "romanization": "ungefähr", + "example_sentence_native": "Es sind ungefähr zehn Minuten zu Fuß.", + "example_sentence_english": "It's about ten minutes on foot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1225 + }, + { + "word": "abends", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in the evening;evenings", + "romanization": "abends", + "example_sentence_native": "Wir gehen abends oft spazieren.", + "example_sentence_english": "We often go for a walk in the evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1226 + }, + { + "word": "abschliessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lock;to conclude;to complete", + "romanization": "abschliessen", + "example_sentence_native": "Bitte schließ die Tür ab.", + "example_sentence_english": "Please lock the door.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schliessen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1227 + }, + { + "word": "Ausstellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibition;display", + "romanization": "Ausstellung", + "example_sentence_native": "Die neue Ausstellung ist sehr interessant.", + "example_sentence_english": "The new exhibition is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1228 + }, + { + "word": "Erklärung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "explanation;declaration", + "romanization": "Erklärung", + "example_sentence_native": "Ich brauche eine Erklärung für diese Situation.", + "example_sentence_english": "I need an explanation for this situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1231 + }, + { + "word": "Falle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trap", + "romanization": "Falle", + "example_sentence_native": "Die Maus ist in die Falle gegangen.", + "example_sentence_english": "The mouse went into the trap.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1232 + }, + { + "word": "Frieden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peace", + "romanization": "Frieden", + "example_sentence_native": "Wir wünschen uns alle Frieden in der Welt.", + "example_sentence_english": "We all wish for peace in the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1233 + }, + { + "word": "geil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awesome", + "romanization": "geil", + "example_sentence_native": "Das Konzert war echt geil!", + "example_sentence_english": "The concert was really awesome!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1234 + }, + { + "word": "Gelegenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opportunity;occasion", + "romanization": "Gelegenheit", + "example_sentence_native": "Das ist eine gute Gelegenheit, Deutsch zu üben.", + "example_sentence_english": "This is a good opportunity to practice German.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1235 + }, + { + "word": "Geschäft", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shop;business", + "romanization": "Geschäft", + "example_sentence_native": "Ich gehe ins Geschäft, um Brot zu kaufen.", + "example_sentence_english": "I'm going to the shop to buy bread.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1236 + }, + { + "word": "hauptsächlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mainly;primarily", + "romanization": "hauptsächlich", + "example_sentence_native": "Er arbeitet hauptsächlich von zu Hause aus.", + "example_sentence_english": "He mainly works from home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1237 + }, + { + "word": "hinzu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in addition;to it", + "romanization": "hinzu", + "example_sentence_native": "Dazu kommt noch ein weiteres Problem hinzu.", + "example_sentence_english": "In addition to that, another problem arises.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1238 + }, + { + "word": "krank", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sick;ill", + "romanization": "krank", + "example_sentence_native": "Ich fühle mich heute krank.", + "example_sentence_english": "I feel sick today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1239 + }, + { + "word": "Lauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "course", + "romanization": "Lauf", + "example_sentence_native": "Der Lauf des Flusses ist sehr schnell.", + "example_sentence_english": "The course of the river is very fast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1240 + }, + { + "word": "Milliarde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billion", + "romanization": "Milliarde", + "example_sentence_native": "Eine Milliarde ist eine sehr große Zahl.", + "example_sentence_english": "A billion is a very large number.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1241 + }, + { + "word": "Mittwoch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Wednesday", + "romanization": "Mittwoch", + "example_sentence_native": "Am Mittwoch habe ich einen Termin.", + "example_sentence_english": "On Wednesday I have an appointment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1242 + }, + { + "word": "modern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "modern", + "romanization": "modern", + "example_sentence_native": "Das ist ein sehr modernes Haus.", + "example_sentence_english": "That is a very modern house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1243 + }, + { + "word": "möglicherweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibly", + "romanization": "möglicherweise", + "example_sentence_native": "Möglicherweise regnet es morgen.", + "example_sentence_english": "Possibly it will rain tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1244 + }, + { + "word": "rum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "around", + "romanization": "rum", + "example_sentence_native": "Er läuft den ganzen Tag rum.", + "example_sentence_english": "He walks around all day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1246 + }, + { + "word": "schwierig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difficult", + "romanization": "schwierig", + "example_sentence_native": "Die Aufgabe ist sehr schwierig.", + "example_sentence_english": "The task is very difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1247 + }, + { + "word": "Strecke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distance", + "romanization": "Strecke", + "example_sentence_native": "Die Strecke bis zur Stadt ist lang.", + "example_sentence_english": "The distance to the city is long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1248 + }, + { + "word": "Wind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wind", + "romanization": "Wind", + "example_sentence_native": "Der Wind weht stark heute.", + "example_sentence_english": "The wind is blowing strongly today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1249 + }, + { + "word": "Zentrum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "center", + "romanization": "Zentrum", + "example_sentence_native": "Das Zentrum der Stadt ist sehr belebt.", + "example_sentence_english": "The city center is very lively.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1250 + }, + { + "word": "Öffentlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public", + "romanization": "Öffentlichkeit", + "example_sentence_native": "Die Öffentlichkeit hat ein Recht auf Information.", + "example_sentence_english": "The public has a right to information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1251 + }, + { + "word": "anbieten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to offer", + "romanization": "anbieten", + "example_sentence_native": "Ich möchte dir meine Hilfe anbieten.", + "example_sentence_english": "I want to offer you my help.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "bieten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1253 + }, + { + "word": "ansehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to look at;to regard", + "romanization": "ansehen", + "example_sentence_native": "Sieh mich bitte an, wenn ich mit dir spreche.", + "example_sentence_english": "Please look at me when I speak to you.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1254 + }, + { + "word": "Aussage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statement;assertion", + "romanization": "Aussage", + "example_sentence_native": "Seine Aussage war sehr klar.", + "example_sentence_english": "His statement was very clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1255 + }, + { + "word": "dauern", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to last;to take (time)", + "romanization": "dauern", + "example_sentence_native": "Wie lange wird das dauern?", + "example_sentence_english": "How long will that take?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1256 + }, + { + "word": "davor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "before that;in front of it", + "romanization": "davor", + "example_sentence_native": "Er stand davor und wartete.", + "example_sentence_english": "He stood in front of it and waited.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1257 + }, + { + "word": "extra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extra;additional", + "romanization": "extra", + "example_sentence_native": "Möchtest du eine extra Portion?", + "example_sentence_english": "Would you like an extra portion?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1259 + }, + { + "word": "Fahrer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "driver", + "romanization": "Fahrer", + "example_sentence_native": "Der Fahrer hält an der Ampel.", + "example_sentence_english": "The driver stops at the traffic light.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1260 + }, + { + "word": "französisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "French", + "romanization": "französisch", + "example_sentence_native": "Das ist ein französisches Auto.", + "example_sentence_english": "That is a French car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjektiv", + "word_frequency": 1261 + }, + { + "word": "Französisch", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "French (language)", + "romanization": "Französisch", + "example_sentence_native": "Sprichst du Französisch?", + "example_sentence_english": "Do you speak French?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 1261 + }, + { + "word": "genannt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "called;named", + "romanization": "genannt", + "example_sentence_native": "Mein Freund, genannt Max, kommt heute.", + "example_sentence_english": "My friend, called Max, is coming today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1262 + }, + { + "word": "Gesundheit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "health", + "romanization": "Gesundheit", + "example_sentence_native": "Ihre Gesundheit ist sehr wichtig.", + "example_sentence_english": "Her health is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1263 + }, + { + "word": "Hof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "courtyard", + "romanization": "Hof", + "example_sentence_native": "Der Hof ist voller Blumen.", + "example_sentence_english": "The courtyard is full of flowers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1265 + }, + { + "word": "leiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suffer", + "romanization": "leiden", + "example_sentence_native": "Er muss viel leiden.", + "example_sentence_english": "He has to suffer a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1267 + }, + { + "word": "Ma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Mom", + "romanization": "Ma", + "example_sentence_native": "Meine Ma kommt bald nach Hause.", + "example_sentence_english": "My Mom is coming home soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1268 + }, + { + "word": "Mama", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mom", + "romanization": "Mama", + "example_sentence_native": "Meine Mama kocht heute Abend.", + "example_sentence_english": "My Mom is cooking tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1269 + }, + { + "word": "Not", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "need;distress;emergency", + "romanization": "Not", + "example_sentence_native": "In Zeiten der Not halten wir zusammen.", + "example_sentence_english": "In times of need, we stick together.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1270 + }, + { + "word": "Presse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "press (media);press (machine)", + "romanization": "Presse", + "example_sentence_native": "Die Presse berichtete ausführlich über das Ereignis.", + "example_sentence_english": "The press reported extensively on the event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1271 + }, + { + "word": "Produktion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "production", + "romanization": "Produktion", + "example_sentence_native": "Die Produktion neuer Autos wurde eingestellt.", + "example_sentence_english": "The production of new cars was stopped.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1272 + }, + { + "word": "Radio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "radio", + "romanization": "Radio", + "example_sentence_native": "Ich höre gerne Radio am Morgen.", + "example_sentence_english": "I like listening to the radio in the morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1273 + }, + { + "word": "reisen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to travel", + "romanization": "reisen", + "example_sentence_native": "Wir möchten nächstes Jahr nach Italien reisen.", + "example_sentence_english": "We would like to travel to Italy next year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1274 + }, + { + "word": "selbstverständlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obvious;self-evident;of course", + "romanization": "selbstverständlich", + "example_sentence_native": "Es ist selbstverständlich, dass wir helfen.", + "example_sentence_english": "It is obvious that we help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1275 + }, + { + "word": "Sendung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broadcast;shipment", + "romanization": "Sendung", + "example_sentence_native": "Die Nachrichtensendung beginnt um acht Uhr.", + "example_sentence_english": "The news broadcast starts at eight o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1276 + }, + { + "word": "sicherlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certainly;surely", + "romanization": "sicherlich", + "example_sentence_native": "Er wird sicherlich bald ankommen.", + "example_sentence_english": "He will certainly arrive soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1277 + }, + { + "word": "Song", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "song", + "romanization": "Song", + "example_sentence_native": "Das ist mein Lieblingssong.", + "example_sentence_english": "That is my favorite song.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1278 + }, + { + "word": "vollkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete;perfect;entirely", + "romanization": "vollkommen", + "example_sentence_native": "Das ist eine vollkommene Katastrophe.", + "example_sentence_english": "That is a complete disaster.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1281 + }, + { + "word": "Wand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wall", + "romanization": "Wand", + "example_sentence_native": "Die Wand ist weiß.", + "example_sentence_english": "The wall is white.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1283 + }, + { + "word": "Wissenschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "science", + "romanization": "Wissenschaft", + "example_sentence_native": "Die Wissenschaft macht große Fortschritte.", + "example_sentence_english": "Science is making great progress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1284 + }, + { + "word": "Wunder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miracle;wonder", + "romanization": "Wunder", + "example_sentence_native": "Das ist ein wahres Wunder.", + "example_sentence_english": "That is a true miracle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1285 + }, + { + "word": "überzeugen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convince;to persuade", + "romanization": "überzeugen", + "example_sentence_native": "Er konnte mich nicht überzeugen.", + "example_sentence_english": "He could not convince me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1286 + }, + { + "word": "Bahnhof", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "train station", + "romanization": "Bahnhof", + "example_sentence_native": "Der Bahnhof ist sehr groß.", + "example_sentence_english": "The train station is very big.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1288 + }, + { + "word": "Bedarf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "need;demand", + "romanization": "Bedarf", + "example_sentence_native": "Es gibt einen großen Bedarf an neuen Wohnungen.", + "example_sentence_english": "There is a great need for new apartments.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1289 + }, + { + "word": "Bedingung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condition", + "romanization": "Bedingung", + "example_sentence_native": "Die Bedingung für den Vertrag ist klar.", + "example_sentence_english": "The condition for the contract is clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1290 + }, + { + "word": "besuchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to visit", + "romanization": "besuchen", + "example_sentence_native": "Ich möchte meine Freunde besuchen.", + "example_sentence_english": "I want to visit my friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1291 + }, + { + "word": "Ecke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corner", + "romanization": "Ecke", + "example_sentence_native": "Das Buch liegt in der Ecke des Zimmers.", + "example_sentence_english": "The book is in the corner of the room.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1293 + }, + { + "word": "Einführung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduction", + "romanization": "Einführung", + "example_sentence_native": "Die Einführung in das Thema war sehr hilfreich.", + "example_sentence_english": "The introduction to the topic was very helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1294 + }, + { + "word": "empfehlen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to recommend", + "romanization": "empfehlen", + "example_sentence_native": "Ich kann dieses Restaurant sehr empfehlen.", + "example_sentence_english": "I can highly recommend this restaurant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1295 + }, + { + "word": "eröffnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to open (a business;an event;etc.)", + "romanization": "eröffnen", + "example_sentence_native": "Sie werden ein neues Geschäft eröffnen.", + "example_sentence_english": "They will open a new business.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1296 + }, + { + "word": "Generation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generation", + "romanization": "Generation", + "example_sentence_native": "Jede Generation hat ihre eigenen Herausforderungen.", + "example_sentence_english": "Every generation has its own challenges.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1297 + }, + { + "word": "Küche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kitchen", + "romanization": "Küche", + "example_sentence_native": "Die Küche ist das Herz des Hauses.", + "example_sentence_english": "The kitchen is the heart of the house.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1299 + }, + { + "word": "Mail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mail", + "romanization": "Mail", + "example_sentence_native": "Hast du die Mail schon gelesen?", + "example_sentence_english": "Have you read the mail yet?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1300 + }, + { + "word": "Masse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mass", + "romanization": "Masse", + "example_sentence_native": "Die Masse der Menschen bewegte sich langsam.", + "example_sentence_english": "The mass of people moved slowly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1301 + }, + { + "word": "melden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to report", + "romanization": "melden", + "example_sentence_native": "Bitte melden Sie sich am Empfang.", + "example_sentence_english": "Please report to the reception.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1302 + }, + { + "word": "mitten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the middle of", + "romanization": "mitten", + "example_sentence_native": "Er stand mitten im Raum.", + "example_sentence_english": "He stood in the middle of the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1303 + }, + { + "word": "Schiff", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ship", + "romanization": "Schiff", + "example_sentence_native": "Das Schiff fuhr über das Meer.", + "example_sentence_english": "The ship sailed across the sea.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1304 + }, + { + "word": "seitdem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "since then", + "romanization": "seitdem", + "example_sentence_native": "Er ist umgezogen, und seitdem habe ich ihn nicht mehr gesehen.", + "example_sentence_english": "He moved, and since then I haven't seen him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1305 + }, + { + "word": "sogenannt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so-called", + "romanization": "sogenannt", + "example_sentence_native": "Das ist die sogenannte Lösung.", + "example_sentence_english": "That is the so-called solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1306 + }, + { + "word": "sowieso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anyway", + "romanization": "sowieso", + "example_sentence_native": "Ich komme sowieso zu spät.", + "example_sentence_english": "I'm going to be late anyway.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1307 + }, + { + "word": "Stiftung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation", + "romanization": "Stiftung", + "example_sentence_native": "Die Stiftung unterstützt junge Künstler.", + "example_sentence_english": "The foundation supports young artists.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1309 + }, + { + "word": "unmöglich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impossible", + "romanization": "unmöglich", + "example_sentence_native": "Das ist unmöglich!", + "example_sentence_english": "That is impossible!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1310 + }, + { + "word": "verdammt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damned;cursed", + "romanization": "verdammt", + "example_sentence_native": "Das ist ein verdammter Fehler.", + "example_sentence_english": "That is a damned mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1311 + }, + { + "word": "vergangen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "past;bygone", + "romanization": "vergangen", + "example_sentence_native": "In der vergangenen Woche war ich krank.", + "example_sentence_english": "Last week I was sick.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1312 + }, + { + "word": "vollständig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complete;full", + "romanization": "vollständig", + "example_sentence_native": "Die Liste ist vollständig.", + "example_sentence_english": "The list is complete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1313 + }, + { + "word": "zerstören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destroy", + "romanization": "zerstören", + "example_sentence_native": "Der Sturm hat das Haus zerstört.", + "example_sentence_english": "The storm destroyed the house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1315 + }, + { + "word": "anfangen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to begin;to start", + "romanization": "anfangen", + "example_sentence_native": "Der Film fängt um 20 Uhr an.", + "example_sentence_english": "The movie starts at 8 PM.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fangen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1317 + }, + { + "word": "Beruf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "profession;job", + "romanization": "Beruf", + "example_sentence_native": "Was ist dein Beruf?", + "example_sentence_english": "What is your profession?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1318 + }, + { + "word": "besitzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to own;to possess", + "romanization": "besitzen", + "example_sentence_native": "Er besitzt ein großes Haus.", + "example_sentence_english": "He owns a big house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1319 + }, + { + "word": "Computer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "computer", + "romanization": "Computer", + "example_sentence_native": "Mein Computer ist neu.", + "example_sentence_english": "My computer is new.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1320 + }, + { + "word": "entsprechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to correspond to;to comply with", + "romanization": "entsprechen", + "example_sentence_native": "Das Ergebnis muss den Erwartungen entsprechen.", + "example_sentence_english": "The result must correspond to the expectations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1321 + }, + { + "word": "Finger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "finger", + "romanization": "Finger", + "example_sentence_native": "Er hat fünf Finger an jeder Hand.", + "example_sentence_english": "He has five fingers on each hand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1322 + }, + { + "word": "Fleisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meat", + "romanization": "Fleisch", + "example_sentence_native": "Ich esse kein Fleisch.", + "example_sentence_english": "I don't eat meat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1323 + }, + { + "word": "fliegen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to fly", + "romanization": "fliegen", + "example_sentence_native": "Vögel können fliegen.", + "example_sentence_english": "Birds can fly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1324 + }, + { + "word": "Geist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spirit;ghost;mind", + "romanization": "Geist", + "example_sentence_native": "Der Geist des Weihnachtsfestes.", + "example_sentence_english": "The spirit of Christmas.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1325 + }, + { + "word": "halb", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "half", + "romanization": "halb", + "example_sentence_native": "Es ist halb drei.", + "example_sentence_english": "It's half past two.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1327 + }, + { + "word": "Mio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "million (abbreviation)", + "romanization": "Mio", + "example_sentence_native": "Die Stadt hat 1,5 Mio. Einwohner.", + "example_sentence_english": "The city has 1.5 million inhabitants.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1331 + }, + { + "word": "offiziell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official", + "romanization": "offiziell", + "example_sentence_native": "Das ist die offizielle Erklärung.", + "example_sentence_english": "That is the official explanation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1332 + }, + { + "word": "Roman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "novel", + "romanization": "Roman", + "example_sentence_native": "Ich lese einen interessanten Roman.", + "example_sentence_english": "I am reading an interesting novel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1334 + }, + { + "word": "stecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stick;to put (into)", + "romanization": "stecken", + "example_sentence_native": "Er steckt den Schlüssel ins Schloss.", + "example_sentence_english": "He puts the key into the lock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1336 + }, + { + "word": "Stein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stone;rock", + "romanization": "Stein", + "example_sentence_native": "Der Stein ist sehr schwer.", + "example_sentence_english": "The stone is very heavy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1337 + }, + { + "word": "technisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technical", + "romanization": "technisch", + "example_sentence_native": "Das ist eine technische Herausforderung.", + "example_sentence_english": "That is a technical challenge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1338 + }, + { + "word": "unabhängig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independent", + "romanization": "unabhängig", + "example_sentence_native": "Sie ist eine unabhängige Künstlerin.", + "example_sentence_english": "She is an independent artist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1339 + }, + { + "word": "Verhältnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relationship;ratio", + "romanization": "Verhältnis", + "example_sentence_native": "Ihr Verhältnis zueinander ist kompliziert.", + "example_sentence_english": "Their relationship with each other is complicated.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1340 + }, + { + "word": "Zweifel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doubt", + "romanization": "Zweifel", + "example_sentence_native": "Er hatte keine Zweifel an ihrer Ehrlichkeit.", + "example_sentence_english": "He had no doubt about her honesty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1341 + }, + { + "word": "Alkohol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alcohol", + "romanization": "Alkohol", + "example_sentence_native": "Alkohol ist in Deutschland ab 16 Jahren erlaubt.", + "example_sentence_english": "Alcohol is allowed from 16 years old in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1342 + }, + { + "word": "blau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blue", + "romanization": "blau", + "example_sentence_native": "Der Himmel ist blau.", + "example_sentence_english": "The sky is blue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1344 + }, + { + "word": "Bund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federation;alliance", + "romanization": "Bund", + "example_sentence_native": "Der Bund hat neue Gesetze verabschiedet.", + "example_sentence_english": "The federation has passed new laws.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1345 + }, + { + "word": "Donnerstag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Thursday", + "romanization": "Donnerstag", + "example_sentence_native": "Wir treffen uns am Donnerstag.", + "example_sentence_english": "We meet on Thursday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1346 + }, + { + "word": "durchführen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to carry out;to conduct", + "romanization": "durchführen", + "example_sentence_native": "Sie werden eine Umfrage durchführen.", + "example_sentence_english": "They will conduct a survey.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1347 + }, + { + "word": "Ebene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "level;plain", + "romanization": "Ebene", + "example_sentence_native": "Auf dieser Ebene gibt es viele Bäume.", + "example_sentence_english": "On this plain there are many trees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1348 + }, + { + "word": "Erinnerung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory;recollection", + "romanization": "Erinnerung", + "example_sentence_native": "Ich habe gute Erinnerungen an meine Kindheit.", + "example_sentence_english": "I have good memories of my childhood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1349 + }, + { + "word": "erleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to experience", + "romanization": "erleben", + "example_sentence_native": "Ich möchte etwas Neues erleben.", + "example_sentence_english": "I want to experience something new.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1350 + }, + { + "word": "fordern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demand;to request", + "romanization": "fordern", + "example_sentence_native": "Die Gewerkschaft fordert höhere Löhne.", + "example_sentence_english": "The union demands higher wages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1351 + }, + { + "word": "Handel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trade;commerce", + "romanization": "Handel", + "example_sentence_native": "Der internationale Handel wächst.", + "example_sentence_english": "International trade is growing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1352 + }, + { + "word": "Hinweis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hint;clue;reference", + "romanization": "Hinweis", + "example_sentence_native": "Ich habe einen wichtigen Hinweis gefunden.", + "example_sentence_english": "I found an important clue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1354 + }, + { + "word": "Institut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "institute", + "romanization": "Institut", + "example_sentence_native": "Sie arbeitet in einem Forschungsinstitut.", + "example_sentence_english": "She works at a research institute.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1355 + }, + { + "word": "jeweilig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respective;particular", + "romanization": "jeweilig", + "example_sentence_native": "Bitte füllen Sie die jeweiligen Felder aus.", + "example_sentence_english": "Please fill in the respective fields.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1356 + }, + { + "word": "Kurs", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "course (e.g.;language course);rate (e.g.;exchange rate)", + "romanization": "Kurs", + "example_sentence_native": "Ich besuche einen Deutschkurs.", + "example_sentence_english": "I am attending a German course.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1357 + }, + { + "word": "Lager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warehouse;camp;stock", + "romanization": "Lager", + "example_sentence_native": "Die Waren sind im Lager.", + "example_sentence_english": "The goods are in the warehouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1358 + }, + { + "word": "Norden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "north", + "romanization": "Norden", + "example_sentence_native": "Wir fahren in den Norden.", + "example_sentence_english": "We are driving to the north.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1359 + }, + { + "word": "Reaktion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reaction", + "romanization": "Reaktion", + "example_sentence_native": "Seine Reaktion war unerwartet.", + "example_sentence_english": "His reaction was unexpected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1361 + }, + { + "word": "schlagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hit;to beat", + "romanization": "schlagen", + "example_sentence_native": "Er schlägt den Ball.", + "example_sentence_english": "He hits the ball.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1362 + }, + { + "word": "sparen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to save", + "romanization": "sparen", + "example_sentence_native": "Ich muss Geld sparen.", + "example_sentence_english": "I need to save money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1363 + }, + { + "word": "steigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb;to rise", + "romanization": "steigen", + "example_sentence_native": "Die Preise steigen.", + "example_sentence_english": "The prices are rising.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1364 + }, + { + "word": "Student", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student (male)", + "romanization": "Student", + "example_sentence_native": "Er ist ein Student an der Universität.", + "example_sentence_english": "He is a student at the university.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1365 + }, + { + "word": "amerikanisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "American", + "romanization": "amerikanisch", + "example_sentence_native": "Er fährt ein amerikanisches Auto.", + "example_sentence_english": "He drives an American car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1369 + }, + { + "word": "Aufmerksamkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attention", + "romanization": "Aufmerksamkeit", + "example_sentence_native": "Bitte schenken Sie mir Ihre Aufmerksamkeit.", + "example_sentence_english": "Please give me your attention.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1370 + }, + { + "word": "Ball", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ball", + "romanization": "Ball", + "example_sentence_native": "Der Hund spielt mit dem Ball.", + "example_sentence_english": "The dog is playing with the ball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1371 + }, + { + "word": "Bundesregierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal government", + "romanization": "Bundesregierung", + "example_sentence_native": "Die Bundesregierung hat neue Gesetze verabschiedet.", + "example_sentence_english": "The federal government has passed new laws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1373 + }, + { + "word": "Dienstag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Tuesday", + "romanization": "Dienstag", + "example_sentence_native": "Wir treffen uns am Dienstag.", + "example_sentence_english": "We are meeting on Tuesday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1374 + }, + { + "word": "Gegend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area;region;vicinity", + "romanization": "Gegend", + "example_sentence_native": "In dieser Gegend gibt es viele Bäume.", + "example_sentence_english": "There are many trees in this area.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1376 + }, + { + "word": "historisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "historical", + "romanization": "historisch", + "example_sentence_native": "Das ist ein historisches Gebäude.", + "example_sentence_english": "That is a historical building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1378 + }, + { + "word": "Holz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wood", + "romanization": "Holz", + "example_sentence_native": "Der Tisch ist aus Holz.", + "example_sentence_english": "The table is made of wood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1379 + }, + { + "word": "Kommission", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commission", + "romanization": "Kommission", + "example_sentence_native": "Die Kommission hat eine neue Regelung vorgeschlagen.", + "example_sentence_english": "The commission has proposed a new regulation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1380 + }, + { + "word": "kriegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get;to receive", + "romanization": "kriegen", + "example_sentence_native": "Ich muss noch meine Bücher kriegen.", + "example_sentence_english": "I still need to get my books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1381 + }, + { + "word": "Länge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "length", + "romanization": "Länge", + "example_sentence_native": "Die Länge des Tisches beträgt zwei Meter.", + "example_sentence_english": "The length of the table is two meters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1382 + }, + { + "word": "meistens", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mostly;usually", + "romanization": "meistens", + "example_sentence_native": "Meistens trinke ich Kaffee am Morgen.", + "example_sentence_english": "Mostly, I drink coffee in the morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1383 + }, + { + "word": "Risiko", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risk", + "romanization": "Risiko", + "example_sentence_native": "Es gibt ein hohes Risiko, dass es regnet.", + "example_sentence_english": "There is a high risk that it will rain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1386 + }, + { + "word": "runter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "down;downwards", + "romanization": "runter", + "example_sentence_native": "Geh bitte die Treppe runter.", + "example_sentence_english": "Please go down the stairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1387 + }, + { + "word": "russisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Russian", + "romanization": "russisch", + "example_sentence_native": "Sie spricht fließend Russisch.", + "example_sentence_english": "She speaks fluent Russian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1388 + }, + { + "word": "Stil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "style", + "romanization": "Stil", + "example_sentence_native": "Ihr Haus hat einen sehr modernen Stil.", + "example_sentence_english": "Her house has a very modern style.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1390 + }, + { + "word": "Stimmung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mood;atmosphere", + "romanization": "Stimmung", + "example_sentence_native": "Die Stimmung auf der Party war großartig.", + "example_sentence_english": "The atmosphere at the party was great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1391 + }, + { + "word": "Tatsache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fact", + "romanization": "Tatsache", + "example_sentence_native": "Es ist eine bekannte Tatsache, dass die Erde rund ist.", + "example_sentence_english": "It is a known fact that the Earth is round.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1392 + }, + { + "word": "teils", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partly;in part", + "romanization": "teils", + "example_sentence_native": "Das Problem ist teils auf mangelnde Kommunikation zurückzuführen.", + "example_sentence_english": "The problem is partly due to a lack of communication.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1393 + }, + { + "word": "traurig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sad", + "romanization": "traurig", + "example_sentence_native": "Sie war sehr traurig über die Nachricht.", + "example_sentence_english": "She was very sad about the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1394 + }, + { + "word": "Täter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpetrator;culprit", + "romanization": "Täter", + "example_sentence_native": "Die Polizei sucht nach dem Täter.", + "example_sentence_english": "The police are looking for the perpetrator.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1395 + }, + { + "word": "Wein", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wine", + "romanization": "Wein", + "example_sentence_native": "Möchtest du ein Glas Wein?", + "example_sentence_english": "Would you like a glass of wine?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1396 + }, + { + "word": "woher", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "from where", + "romanization": "woher", + "example_sentence_native": "Woher kommst du?", + "example_sentence_english": "Where are you from?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1397 + }, + { + "word": "Zuschauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spectator;viewer", + "romanization": "Zuschauer", + "example_sentence_native": "Die Zuschauer applaudierten laut.", + "example_sentence_english": "The spectators applauded loudly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1398 + }, + { + "word": "Zweck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purpose;aim", + "romanization": "Zweck", + "example_sentence_native": "Was ist der Zweck dieses Treffens?", + "example_sentence_english": "What is the purpose of this meeting?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1399 + }, + { + "word": "überraschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surprise", + "romanization": "überraschen", + "example_sentence_native": "Die Nachricht wird ihn überraschen.", + "example_sentence_english": "The news will surprise him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1400 + }, + { + "word": "annehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accept;to assume", + "romanization": "annehmen", + "example_sentence_native": "Ich nehme an, dass er kommt.", + "example_sentence_english": "I assume that he is coming.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1402 + }, + { + "word": "Bestand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stock;inventory;existence", + "romanization": "Bestand", + "example_sentence_native": "Der Bestand an Waren ist niedrig.", + "example_sentence_english": "The stock of goods is low.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1403 + }, + { + "word": "Besucher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visitor", + "romanization": "Besucher", + "example_sentence_native": "Der Besucher kam pünktlich an.", + "example_sentence_english": "The visitor arrived on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1404 + }, + { + "word": "bewegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move", + "romanization": "bewegen", + "example_sentence_native": "Er kann seinen Arm nicht bewegen.", + "example_sentence_english": "He cannot move his arm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1405 + }, + { + "word": "Darstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representation;depiction;presentation", + "romanization": "Darstellung", + "example_sentence_native": "Die Darstellung des Problems war klar.", + "example_sentence_english": "The presentation of the problem was clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1406 + }, + { + "word": "dienen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to serve", + "romanization": "dienen", + "example_sentence_native": "Dieses Werkzeug dient einem bestimmten Zweck.", + "example_sentence_english": "This tool serves a specific purpose.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1407 + }, + { + "word": "Feld", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "field", + "romanization": "Feld", + "example_sentence_native": "Die Kühe grasen auf dem Feld.", + "example_sentence_english": "The cows are grazing in the field.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1408 + }, + { + "word": "Gewinn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profit;gain", + "romanization": "Gewinn", + "example_sentence_native": "Das Unternehmen machte einen großen Gewinn.", + "example_sentence_english": "The company made a large profit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1409 + }, + { + "word": "heilig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holy;sacred", + "romanization": "heilig", + "example_sentence_native": "Das ist ein heiliger Ort.", + "example_sentence_english": "This is a holy place.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1411 + }, + { + "word": "Kino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cinema;movie theater", + "romanization": "Kino", + "example_sentence_native": "Wir gehen heute Abend ins Kino.", + "example_sentence_english": "We are going to the cinema tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1413 + }, + { + "word": "lösen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to solve;to loosen", + "romanization": "lösen", + "example_sentence_native": "Ich muss dieses Problem lösen.", + "example_sentence_english": "I have to solve this problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1415 + }, + { + "word": "Nase", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nose", + "romanization": "Nase", + "example_sentence_native": "Sie hat eine kleine Nase.", + "example_sentence_english": "She has a small nose.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1416 + }, + { + "word": "original", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "original", + "romanization": "original", + "example_sentence_native": "Das ist das Originalbild.", + "example_sentence_english": "That is the original picture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1418 + }, + { + "word": "Pause", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "break;pause", + "romanization": "Pause", + "example_sentence_native": "Machen wir eine kurze Pause.", + "example_sentence_english": "Let's take a short break.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1419 + }, + { + "word": "Prinzip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "principle", + "romanization": "Prinzip", + "example_sentence_native": "Das ist ein wichtiges Prinzip.", + "example_sentence_english": "That is an important principle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1420 + }, + { + "word": "Prüfung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exam", + "romanization": "Prüfung", + "example_sentence_native": "Ich habe morgen eine wichtige Prüfung.", + "example_sentence_english": "I have an important exam tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1421 + }, + { + "word": "Regen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rain", + "romanization": "Regen", + "example_sentence_native": "Der Regen fällt den ganzen Tag.", + "example_sentence_english": "The rain is falling all day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1422 + }, + { + "word": "starten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to start", + "romanization": "starten", + "example_sentence_native": "Wir müssen jetzt starten.", + "example_sentence_english": "We have to start now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1423 + }, + { + "word": "Tradition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tradition", + "romanization": "Tradition", + "example_sentence_native": "Das ist eine alte Tradition in unserer Familie.", + "example_sentence_english": "That is an old tradition in our family.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1424 + }, + { + "word": "Training", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "training", + "romanization": "Training", + "example_sentence_native": "Das Training beginnt um 18 Uhr.", + "example_sentence_english": "The training starts at 6 PM.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1425 + }, + { + "word": "Tätigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "activity", + "romanization": "Tätigkeit", + "example_sentence_native": "Meine Haupttätigkeit ist das Schreiben.", + "example_sentence_english": "My main activity is writing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1426 + }, + { + "word": "Umwelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environment", + "romanization": "Umwelt", + "example_sentence_native": "Wir müssen unsere Umwelt schützen.", + "example_sentence_english": "We must protect our environment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1427 + }, + { + "word": "ursprünglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "original", + "romanization": "ursprünglich", + "example_sentence_native": "Das war die ursprüngliche Idee.", + "example_sentence_english": "That was the original idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 1428 + }, + { + "word": "Vorstellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idea", + "romanization": "Vorstellung", + "example_sentence_native": "Ich habe eine klare Vorstellung davon.", + "example_sentence_english": "I have a clear idea of it.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1429 + }, + { + "word": "Vorteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantage", + "romanization": "Vorteil", + "example_sentence_native": "Das hat einen großen Vorteil.", + "example_sentence_english": "That has a big advantage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1430 + }, + { + "word": "Weihnachten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas", + "romanization": "Weihnachten", + "example_sentence_native": "Wir feiern Weihnachten mit der Familie.", + "example_sentence_english": "We celebrate Christmas with the family.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1431 + }, + { + "word": "Wille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will;volition", + "romanization": "Wille", + "example_sentence_native": "Er hat einen starken Willen.", + "example_sentence_english": "He has a strong will.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1433 + }, + { + "word": "öffnen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to open", + "romanization": "öffnen", + "example_sentence_native": "Bitte öffnen Sie die Tür.", + "example_sentence_english": "Please open the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1434 + }, + { + "word": "absehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to foresee;to disregard", + "romanization": "absehen", + "example_sentence_native": "Davon kann man absehen.", + "example_sentence_english": "One can disregard that.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1435 + }, + { + "word": "Abstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distance;gap", + "romanization": "Abstand", + "example_sentence_native": "Halten Sie bitte Abstand.", + "example_sentence_english": "Please keep your distance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1436 + }, + { + "word": "angeblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allegedly;supposedly", + "romanization": "angeblich", + "example_sentence_native": "Er ist angeblich krank.", + "example_sentence_english": "He is allegedly sick.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1438 + }, + { + "word": "ansonsten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "otherwise;apart from that", + "romanization": "ansonsten", + "example_sentence_native": "Ich bin müde, ansonsten geht es mir gut.", + "example_sentence_english": "I am tired, otherwise I am fine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1439 + }, + { + "word": "Antrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application;request", + "romanization": "Antrag", + "example_sentence_native": "Sie müssen einen Antrag stellen.", + "example_sentence_english": "You have to submit an application.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1440 + }, + { + "word": "Anwendung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application;use", + "romanization": "Anwendung", + "example_sentence_native": "Diese Software findet breite Anwendung.", + "example_sentence_english": "This software finds wide application.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1441 + }, + { + "word": "Baum", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tree", + "romanization": "Baum", + "example_sentence_native": "Der Baum ist sehr alt.", + "example_sentence_english": "The tree is very old.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1442 + }, + { + "word": "behalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to keep;to retain", + "romanization": "behalten", + "example_sentence_native": "Du kannst das Buch behalten.", + "example_sentence_english": "You can keep the book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1443 + }, + { + "word": "Berg", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mountain;hill", + "romanization": "Berg", + "example_sentence_native": "Wir wandern auf den Berg.", + "example_sentence_english": "We are hiking up the mountain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1444 + }, + { + "word": "bislang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so far;until now", + "romanization": "bislang", + "example_sentence_native": "Bislang ist alles gut gegangen.", + "example_sentence_english": "So far, everything has gone well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1445 + }, + { + "word": "Bühne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage", + "romanization": "Bühne", + "example_sentence_native": "Der Schauspieler betritt die Bühne.", + "example_sentence_english": "The actor enters the stage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1447 + }, + { + "word": "City", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city center;downtown", + "romanization": "City", + "example_sentence_native": "Wir gehen in die City einkaufen.", + "example_sentence_english": "We go shopping downtown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1448 + }, + { + "word": "Fischer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fisherman", + "romanization": "Fischer", + "example_sentence_native": "Der Fischer fängt viele Fische.", + "example_sentence_english": "The fisherman catches many fish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1449 + }, + { + "word": "Haar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hair", + "romanization": "Haar", + "example_sentence_native": "Sie hat langes blondes Haar.", + "example_sentence_english": "She has long blonde hair.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1450 + }, + { + "word": "komisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "funny;strange", + "romanization": "komisch", + "example_sentence_native": "Das ist eine komische Geschichte.", + "example_sentence_english": "That is a funny story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1452 + }, + { + "word": "mehrfach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiple times;repeatedly", + "romanization": "mehrfach", + "example_sentence_native": "Ich habe ihn mehrfach angerufen.", + "example_sentence_english": "I called him multiple times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1453 + }, + { + "word": "Parlament", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parliament", + "romanization": "Parlament", + "example_sentence_native": "Das Parlament hat ein neues Gesetz verabschiedet.", + "example_sentence_english": "The parliament passed a new law.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1455 + }, + { + "word": "praktisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "practical;convenient", + "romanization": "praktisch", + "example_sentence_native": "Das ist sehr praktisch.", + "example_sentence_english": "That is very practical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1456 + }, + { + "word": "privat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "private", + "romanization": "privat", + "example_sentence_native": "Das ist meine private Meinung.", + "example_sentence_english": "That is my private opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1457 + }, + { + "word": "Respekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respect", + "romanization": "Respekt", + "example_sentence_native": "Er hat großen Respekt vor ihr.", + "example_sentence_english": "He has great respect for her.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1458 + }, + { + "word": "Schuh", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shoe", + "romanization": "Schuh", + "example_sentence_native": "Ich brauche neue Schuhe.", + "example_sentence_english": "I need new shoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1459 + }, + { + "word": "Steuer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tax", + "romanization": "Steuer", + "example_sentence_native": "Die Steuer ist sehr hoch.", + "example_sentence_english": "The tax is very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1461 + }, + { + "word": "zwölf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twelve", + "romanization": "zwölf", + "example_sentence_native": "Ich habe zwölf Bücher.", + "example_sentence_english": "I have twelve books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 1462 + }, + { + "word": "Analyse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analysis", + "romanization": "Analyse", + "example_sentence_native": "Die Analyse der Daten ist wichtig.", + "example_sentence_english": "The analysis of the data is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1463 + }, + { + "word": "andererseits", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on the other hand", + "romanization": "andererseits", + "example_sentence_native": "Einerseits ist es teuer, andererseits ist es sehr gut.", + "example_sentence_english": "On the one hand it is expensive, on the other hand it is very good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1464 + }, + { + "word": "Aufnahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recording", + "romanization": "Aufnahme", + "example_sentence_native": "Die Aufnahme des Liedes ist ausgezeichnet.", + "example_sentence_english": "The recording of the song is excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1465 + }, + { + "word": "Auftritt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "performance", + "romanization": "Auftritt", + "example_sentence_native": "Der Auftritt der Band war fantastisch.", + "example_sentence_english": "The band's performance was fantastic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1466 + }, + { + "word": "Behörde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authority", + "romanization": "Behörde", + "example_sentence_native": "Sie müssen sich an die zuständige Behörde wenden.", + "example_sentence_english": "You must contact the responsible authority.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1467 + }, + { + "word": "beteiligen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to participate", + "romanization": "beteiligen", + "example_sentence_native": "Wir wollen uns an dem Projekt beteiligen.", + "example_sentence_english": "We want to participate in the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1468 + }, + { + "word": "Brücke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bridge", + "romanization": "Brücke", + "example_sentence_native": "Die Brücke ist sehr alt.", + "example_sentence_english": "The bridge is very old.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1469 + }, + { + "word": "erfüllen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fulfill;to meet;to satisfy", + "romanization": "erfüllen", + "example_sentence_native": "Er muss die Anforderungen erfüllen.", + "example_sentence_english": "He must meet the requirements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1470 + }, + { + "word": "ergeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to result in;to surrender;to yield", + "romanization": "ergeben", + "example_sentence_native": "Die Untersuchung wird neue Erkenntnisse ergeben.", + "example_sentence_english": "The investigation will yield new insights.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1471 + }, + { + "word": "Förderung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support;promotion;funding", + "romanization": "Förderung", + "example_sentence_native": "Die Regierung bietet finanzielle Förderung für Start-ups an.", + "example_sentence_english": "The government offers financial support for start-ups.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1472 + }, + { + "word": "geniessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enjoy", + "romanization": "geniessen", + "example_sentence_native": "Wir geniessen den Sommer.", + "example_sentence_english": "We enjoy the summer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1473 + }, + { + "word": "töten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to kill", + "romanization": "töten", + "example_sentence_native": "Er versuchte, die Fliege zu töten.", + "example_sentence_english": "He tried to kill the fly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1474 + }, + { + "word": "Glas", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "glass", + "romanization": "Glas", + "example_sentence_native": "Das Glas ist voll.", + "example_sentence_english": "The glass is full.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1475 + }, + { + "word": "heiss", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hot", + "romanization": "heiss", + "example_sentence_native": "Der Kaffee ist heiss.", + "example_sentence_english": "The coffee is hot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1476 + }, + { + "word": "hierbei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hereby;in this case;in doing so", + "romanization": "hierbei", + "example_sentence_native": "Hierbei ist zu beachten, dass...", + "example_sentence_english": "It should be noted hereby that...", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1477 + }, + { + "word": "Konzert", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "concert", + "romanization": "Konzert", + "example_sentence_native": "Das Konzert war fantastisch.", + "example_sentence_english": "The concert was fantastic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1480 + }, + { + "word": "Nachbar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "neighbor", + "romanization": "Nachbar", + "example_sentence_native": "Mein Nachbar ist sehr freundlich.", + "example_sentence_english": "My neighbor is very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1482 + }, + { + "word": "News", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "news", + "romanization": "News", + "example_sentence_native": "Hast du die neuesten News gehört?", + "example_sentence_english": "Have you heard the latest news?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1483 + }, + { + "word": "Publikum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audience", + "romanization": "Publikum", + "example_sentence_native": "Das Publikum applaudierte laut.", + "example_sentence_english": "The audience applauded loudly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1485 + }, + { + "word": "real", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "real", + "romanization": "real", + "example_sentence_native": "Ist das eine reale Geschichte?", + "example_sentence_english": "Is that a real story?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1486 + }, + { + "word": "Rechnung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bill;invoice", + "romanization": "Rechnung", + "example_sentence_native": "Kann ich bitte die Rechnung haben?", + "example_sentence_english": "Can I have the bill, please?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1487 + }, + { + "word": "Sammlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection", + "romanization": "Sammlung", + "example_sentence_native": "Er hat eine große Sammlung alter Münzen.", + "example_sentence_english": "He has a large collection of old coins.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1488 + }, + { + "word": "Service", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "service", + "romanization": "Service", + "example_sentence_native": "Der Service in diesem Restaurant ist ausgezeichnet.", + "example_sentence_english": "The service in this restaurant is excellent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1489 + }, + { + "word": "Standard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standard", + "romanization": "Standard", + "example_sentence_native": "Das ist der Standard für diese Produkte.", + "example_sentence_english": "That is the standard for these products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1490 + }, + { + "word": "Streit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "argument;dispute", + "romanization": "Streit", + "example_sentence_native": "Sie hatten einen Streit über das Geld.", + "example_sentence_english": "They had an argument about the money.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1491 + }, + { + "word": "Theorie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theory", + "romanization": "Theorie", + "example_sentence_native": "Diese Theorie ist sehr interessant.", + "example_sentence_english": "This theory is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1492 + }, + { + "word": "Umgang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handling;dealing (with)", + "romanization": "Umgang", + "example_sentence_native": "Sein Umgang mit Problemen ist sehr professionell.", + "example_sentence_english": "His handling of problems is very professional.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1493 + }, + { + "word": "Verkauf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sale", + "romanization": "Verkauf", + "example_sentence_native": "Der Verkauf der Tickets beginnt morgen.", + "example_sentence_english": "The sale of the tickets begins tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1494 + }, + { + "word": "Verständnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "understanding", + "romanization": "Verständnis", + "example_sentence_native": "Ich habe volles Verständnis für deine Situation.", + "example_sentence_english": "I have full understanding for your situation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1495 + }, + { + "word": "werfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to throw", + "romanization": "werfen", + "example_sentence_native": "Er kann den Ball sehr weit werfen.", + "example_sentence_english": "He can throw the ball very far.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1496 + }, + { + "word": "weshalb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "why;for what reason", + "romanization": "weshalb", + "example_sentence_native": "Weshalb bist du so spät?", + "example_sentence_english": "Why are you so late?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1497 + }, + { + "word": "West", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "west", + "romanization": "West", + "example_sentence_native": "Die Sonne geht im Westen unter.", + "example_sentence_english": "The sun sets in the west.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1498 + }, + { + "word": "Beschreibung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "description", + "romanization": "Beschreibung", + "example_sentence_native": "Die Beschreibung des Produkts war sehr detailliert.", + "example_sentence_english": "The description of the product was very detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1499 + }, + { + "word": "Charakter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character (personality)", + "romanization": "Charakter", + "example_sentence_native": "Er hat einen starken Charakter.", + "example_sentence_english": "He has a strong character.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1500 + }, + { + "word": "daneben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "next to it;beside it;wrong", + "romanization": "daneben", + "example_sentence_native": "Der Ball ging daneben.", + "example_sentence_english": "The ball went wide.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1501 + }, + { + "word": "desto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the (in 'the more... the more...')", + "romanization": "desto", + "example_sentence_native": "Je mehr du lernst, desto besser wirst du.", + "example_sentence_english": "The more you learn, the better you become.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1502 + }, + { + "word": "dringend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urgent;pressing", + "romanization": "dringend", + "example_sentence_native": "Ich habe eine dringende Frage.", + "example_sentence_english": "I have an urgent question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1503 + }, + { + "word": "einstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adjust;to hire;to cease", + "romanization": "einstellen", + "example_sentence_native": "Wir müssen die Maschine richtig einstellen.", + "example_sentence_english": "We need to adjust the machine correctly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1504 + }, + { + "word": "Gang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corridor;gear;course (of a meal);walk", + "romanization": "Gang", + "example_sentence_native": "Der erste Gang des Menüs war Suppe.", + "example_sentence_english": "The first course of the menu was soup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1505 + }, + { + "word": "gefährlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dangerous", + "romanization": "gefährlich", + "example_sentence_native": "Das ist eine gefährliche Situation.", + "example_sentence_english": "That is a dangerous situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1506 + }, + { + "word": "Gerät", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "device;appliance;tool", + "romanization": "Gerät", + "example_sentence_native": "Dieses Gerät ist sehr nützlich.", + "example_sentence_english": "This device is very useful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1507 + }, + { + "word": "gewiss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certain;sure;indeed", + "romanization": "gewiss", + "example_sentence_native": "Er war sich seiner Sache gewiss.", + "example_sentence_english": "He was certain of his cause.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1508 + }, + { + "word": "Hamburger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hamburger", + "romanization": "Hamburger", + "example_sentence_native": "Ich möchte einen Hamburger mit Pommes.", + "example_sentence_english": "I would like a hamburger with fries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1509 + }, + { + "word": "leer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "empty;blank", + "romanization": "leer", + "example_sentence_native": "Die Tasse ist leer.", + "example_sentence_english": "The cup is empty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1510 + }, + { + "word": "Realität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reality", + "romanization": "Realität", + "example_sentence_native": "Die Realität ist oft anders als die Vorstellung.", + "example_sentence_english": "Reality is often different from imagination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1512 + }, + { + "word": "Republik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "republic", + "romanization": "Republik", + "example_sentence_native": "Deutschland ist eine föderale Republik.", + "example_sentence_english": "Germany is a federal republic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1513 + }, + { + "word": "retten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to save;to rescue", + "romanization": "retten", + "example_sentence_native": "Er konnte das Kind vor dem Feuer retten.", + "example_sentence_english": "He could save the child from the fire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1514 + }, + { + "word": "stattdessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instead", + "romanization": "stattdessen", + "example_sentence_native": "Ich wollte gehen, aber stattdessen blieb ich.", + "example_sentence_english": "I wanted to go, but instead I stayed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1517 + }, + { + "word": "Termin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appointment;deadline", + "romanization": "Termin", + "example_sentence_native": "Ich habe einen Termin beim Arzt.", + "example_sentence_english": "I have an appointment with the doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1519 + }, + { + "word": "Tipp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tip;hint", + "romanization": "Tipp", + "example_sentence_native": "Hast du einen guten Tipp für mich?", + "example_sentence_english": "Do you have a good tip for me?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1520 + }, + { + "word": "verbieten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forbid;to prohibit", + "romanization": "verbieten", + "example_sentence_native": "Es ist verboten, hier zu rauchen.", + "example_sentence_english": "It is forbidden to smoke here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1521 + }, + { + "word": "Witz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joke", + "romanization": "Witz", + "example_sentence_native": "Er hat einen lustigen Witz erzählt.", + "example_sentence_english": "He told a funny joke.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1522 + }, + { + "word": "Zugang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "access;entrance", + "romanization": "Zugang", + "example_sentence_native": "Der Zugang zum Gebäude ist gesperrt.", + "example_sentence_english": "Access to the building is blocked.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1523 + }, + { + "word": "zweimal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twice;two times", + "romanization": "zweimal", + "example_sentence_native": "Ich habe ihn zweimal angerufen.", + "example_sentence_english": "I called him twice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 1524 + }, + { + "word": "übrig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left over;remaining", + "romanization": "übrig", + "example_sentence_native": "Es ist kein Brot mehr übrig.", + "example_sentence_english": "There is no bread left.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1525 + }, + { + "word": "betrachten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider;to observe;to view", + "romanization": "betrachten", + "example_sentence_native": "Er betrachtete das Kunstwerk genau.", + "example_sentence_english": "He observed the artwork closely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1526 + }, + { + "word": "eindeutig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clear;unambiguous;definite", + "romanization": "eindeutig", + "example_sentence_native": "Das Ergebnis ist eindeutig.", + "example_sentence_english": "The result is clear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1527 + }, + { + "word": "Einrichtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facility;institution;furnishing", + "romanization": "Einrichtung", + "example_sentence_native": "Die Einrichtung des Büros ist modern.", + "example_sentence_english": "The furnishing of the office is modern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1528 + }, + { + "word": "Eis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ice;ice cream", + "romanization": "Eis", + "example_sentence_native": "Ich möchte ein Eis essen.", + "example_sentence_english": "I want to eat an ice cream.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1529 + }, + { + "word": "erhöhen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to increase", + "romanization": "erhöhen", + "example_sentence_native": "Wir müssen die Preise erhöhen.", + "example_sentence_english": "We have to increase the prices.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1530 + }, + { + "word": "Experte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expert", + "romanization": "Experte", + "example_sentence_native": "Er ist ein Experte auf diesem Gebiet.", + "example_sentence_english": "He is an expert in this field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1531 + }, + { + "word": "Gegenteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposite", + "romanization": "Gegenteil", + "example_sentence_native": "Das Gegenteil ist der Fall.", + "example_sentence_english": "The opposite is the case.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1532 + }, + { + "word": "gelangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reach", + "romanization": "gelangen", + "example_sentence_native": "Wie kann ich zum Bahnhof gelangen?", + "example_sentence_english": "How can I get to the train station?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1533 + }, + { + "word": "Homepage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "homepage", + "romanization": "Homepage", + "example_sentence_native": "Besuchen Sie unsere Homepage für weitere Informationen.", + "example_sentence_english": "Visit our homepage for more information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1535 + }, + { + "word": "jährlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annual", + "romanization": "jährlich", + "example_sentence_native": "Die jährliche Konferenz findet im Mai statt.", + "example_sentence_english": "The annual conference takes place in May.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1539 + }, + { + "word": "Kategorie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "category", + "romanization": "Kategorie", + "example_sentence_native": "Diese Kategorie enthält viele interessante Bücher.", + "example_sentence_english": "This category contains many interesting books.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1540 + }, + { + "word": "kommend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coming;upcoming", + "romanization": "kommend", + "example_sentence_native": "Die kommende Woche wird sehr beschäftigt sein.", + "example_sentence_english": "The coming week will be very busy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1541 + }, + { + "word": "Krankheit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "illness;disease", + "romanization": "Krankheit", + "example_sentence_native": "Er leidet an einer seltenen Krankheit.", + "example_sentence_english": "He suffers from a rare illness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1542 + }, + { + "word": "morgens", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in the morning;mornings", + "romanization": "morgens", + "example_sentence_native": "Ich trinke morgens immer Kaffee.", + "example_sentence_english": "I always drink coffee in the morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1543 + }, + { + "word": "nachts", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at night;nights", + "romanization": "nachts", + "example_sentence_native": "Es ist nachts sehr ruhig hier.", + "example_sentence_english": "It is very quiet here at night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1544 + }, + { + "word": "Nutzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "user", + "romanization": "Nutzer", + "example_sentence_native": "Die Anzahl der Nutzer steigt stetig.", + "example_sentence_english": "The number of users is constantly increasing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1547 + }, + { + "word": "Nutzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "use;usage", + "romanization": "Nutzung", + "example_sentence_native": "Die Nutzung des Internets ist weit verbreitet.", + "example_sentence_english": "The use of the internet is widespread.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1548 + }, + { + "word": "Papier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "paper", + "romanization": "Papier", + "example_sentence_native": "Ich brauche ein Blatt Papier.", + "example_sentence_english": "I need a sheet of paper.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1550 + }, + { + "word": "Posten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "post;item;position", + "romanization": "Posten", + "example_sentence_native": "Er hat einen neuen Posten in der Firma.", + "example_sentence_english": "He has a new position in the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1552 + }, + { + "word": "Sitz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seat;headquarters", + "romanization": "Sitz", + "example_sentence_native": "Bitte nehmen Sie Platz, hier ist Ihr Sitz.", + "example_sentence_english": "Please take a seat, here is your seat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1554 + }, + { + "word": "Ton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sound;tone;clay", + "romanization": "Ton", + "example_sentence_native": "Der Ton der Musik ist sehr klar.", + "example_sentence_english": "The sound of the music is very clear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1556 + }, + { + "word": "tätig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "active;employed", + "romanization": "tätig", + "example_sentence_native": "Sie ist als Ärztin tätig.", + "example_sentence_english": "She is active as a doctor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1557 + }, + { + "word": "unterschiedlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "different;various", + "romanization": "unterschiedlich", + "example_sentence_native": "Wir haben unterschiedliche Meinungen zu diesem Thema.", + "example_sentence_english": "We have different opinions on this topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1558 + }, + { + "word": "Verlauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course;progress;sequence", + "romanization": "Verlauf", + "example_sentence_native": "Der Verlauf der Krankheit war unerwartet.", + "example_sentence_english": "The course of the illness was unexpected.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1559 + }, + { + "word": "verpflichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oblige;to commit", + "romanization": "verpflichten", + "example_sentence_native": "Er musste sich verpflichten, die Regeln einzuhalten.", + "example_sentence_english": "He had to commit to following the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1560 + }, + { + "word": "Wechsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change;shift", + "romanization": "Wechsel", + "example_sentence_native": "Der Wechsel des Wetters war plötzlich.", + "example_sentence_english": "The change in weather was sudden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1561 + }, + { + "word": "Ansicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "view;opinion", + "romanization": "Ansicht", + "example_sentence_native": "Meiner Ansicht nach ist das richtig.", + "example_sentence_english": "In my opinion, that is correct.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1563 + }, + { + "word": "Aufbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structure;construction", + "romanization": "Aufbau", + "example_sentence_native": "Der Aufbau des Buches ist sehr klar.", + "example_sentence_english": "The structure of the book is very clear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1564 + }, + { + "word": "automatisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "automatic", + "romanization": "automatisch", + "example_sentence_native": "Die Tür öffnet sich automatisch.", + "example_sentence_english": "The door opens automatically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1565 + }, + { + "word": "beenden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to end;to finish", + "romanization": "beenden", + "example_sentence_native": "Wir müssen die Arbeit heute beenden.", + "example_sentence_english": "We have to finish the work today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1566 + }, + { + "word": "Bein", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "leg", + "romanization": "Bein", + "example_sentence_native": "Er hat sich das Bein gebrochen.", + "example_sentence_english": "He broke his leg.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1567 + }, + { + "word": "beschreiben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to describe", + "romanization": "beschreiben", + "example_sentence_native": "Kannst du mir das Bild beschreiben?", + "example_sentence_english": "Can you describe the picture to me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1568 + }, + { + "word": "betreffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concern;to affect", + "romanization": "betreffen", + "example_sentence_native": "Diese Regelung betrifft alle Mitarbeiter.", + "example_sentence_english": "This regulation concerns all employees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1569 + }, + { + "word": "Design", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "design", + "romanization": "Design", + "example_sentence_native": "Das Design des neuen Autos ist sehr modern.", + "example_sentence_english": "The design of the new car is very modern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1570 + }, + { + "word": "frisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fresh", + "romanization": "frisch", + "example_sentence_native": "Das Brot ist frisch gebacken.", + "example_sentence_english": "The bread is freshly baked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1571 + }, + { + "word": "hervor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forth;out", + "romanization": "hervor", + "example_sentence_native": "Er trat hervor, um zu sprechen.", + "example_sentence_english": "He stepped forth to speak.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1573 + }, + { + "word": "informieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to inform", + "romanization": "informieren", + "example_sentence_native": "Bitte informieren Sie mich über den Fortschritt.", + "example_sentence_english": "Please inform me about the progress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1574 + }, + { + "word": "Keller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cellar;basement", + "romanization": "Keller", + "example_sentence_native": "Wir lagern Wein im Keller.", + "example_sentence_english": "We store wine in the cellar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1576 + }, + { + "word": "lohnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be worth it;to pay off", + "romanization": "lohnen", + "example_sentence_native": "Es lohnt sich, früh aufzustehen.", + "example_sentence_english": "It's worth it to get up early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1577 + }, + { + "word": "momentan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currently;at the moment", + "romanization": "momentan", + "example_sentence_native": "Momentan habe ich keine Zeit.", + "example_sentence_english": "Currently, I have no time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1578 + }, + { + "word": "nahezu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "almost;nearly", + "romanization": "nahezu", + "example_sentence_native": "Das Ergebnis ist nahezu perfekt.", + "example_sentence_english": "The result is almost perfect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1579 + }, + { + "word": "Rock", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "skirt", + "romanization": "Rock", + "example_sentence_native": "Sie trägt einen schönen Rock.", + "example_sentence_english": "She is wearing a beautiful skirt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1580 + }, + { + "word": "sorgen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worry", + "romanization": "sorgen", + "example_sentence_native": "Mach dir keine Sorgen.", + "example_sentence_english": "Don't worry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1581 + }, + { + "word": "Staffel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "season (TV);relay (sport)", + "romanization": "Staffel", + "example_sentence_native": "Die neue Staffel der Serie beginnt nächste Woche.", + "example_sentence_english": "The new season of the series starts next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1582 + }, + { + "word": "stammen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to originate from", + "romanization": "stammen", + "example_sentence_native": "Dieses Lied stammt aus den 80er Jahren.", + "example_sentence_english": "This song originates from the 80s.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1583 + }, + { + "word": "Untersuchung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "investigation;examination", + "romanization": "Untersuchung", + "example_sentence_native": "Die Polizei hat eine Untersuchung eingeleitet.", + "example_sentence_english": "The police have launched an investigation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1584 + }, + { + "word": "übertragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to broadcast;to transmit", + "romanization": "übertragen", + "example_sentence_native": "Das Spiel wird live im Fernsehen übertragen.", + "example_sentence_english": "The game will be broadcast live on television.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1587 + }, + { + "word": "Anhänger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "follower;supporter;trailer", + "romanization": "Anhänger", + "example_sentence_native": "Er ist ein großer Anhänger dieser Fußballmannschaft.", + "example_sentence_english": "He is a big supporter of this football team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1588 + }, + { + "word": "Anlass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasion;reason", + "romanization": "Anlass", + "example_sentence_native": "Zu welchem Anlass feiert ihr?", + "example_sentence_english": "For what occasion are you celebrating?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1589 + }, + { + "word": "Dach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roof", + "romanization": "Dach", + "example_sentence_native": "Das Dach des Hauses ist rot.", + "example_sentence_english": "The roof of the house is red.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1592 + }, + { + "word": "darstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to represent", + "romanization": "darstellen", + "example_sentence_native": "Dieses Bild soll die Freiheit darstellen.", + "example_sentence_english": "This picture is supposed to represent freedom.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dar", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1593 + }, + { + "word": "Dauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duration", + "romanization": "Dauer", + "example_sentence_native": "Die Dauer des Films beträgt zwei Stunden.", + "example_sentence_english": "The duration of the film is two hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1594 + }, + { + "word": "demnach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accordingly", + "romanization": "demnach", + "example_sentence_native": "Er hat die Prüfung bestanden, demnach kann er studieren.", + "example_sentence_english": "He passed the exam, therefore he can study.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1595 + }, + { + "word": "Einheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unit", + "romanization": "Einheit", + "example_sentence_native": "Die Einheit der Währung ist der Euro.", + "example_sentence_english": "The unit of currency is the Euro.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1596 + }, + { + "word": "eng", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "narrow", + "romanization": "eng", + "example_sentence_native": "Die Straße ist sehr eng.", + "example_sentence_english": "The street is very narrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1597 + }, + { + "word": "Gewicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weight", + "romanization": "Gewicht", + "example_sentence_native": "Das Gewicht des Pakets ist fünf Kilogramm.", + "example_sentence_english": "The weight of the package is five kilograms.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1598 + }, + { + "word": "Hersteller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufacturer", + "romanization": "Hersteller", + "example_sentence_native": "Der Hersteller bietet eine Garantie an.", + "example_sentence_english": "The manufacturer offers a warranty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1599 + }, + { + "word": "jemals", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ever", + "romanization": "jemals", + "example_sentence_native": "Hast du jemals einen Elefanten gesehen?", + "example_sentence_english": "Have you ever seen an elephant?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1600 + }, + { + "word": "kaputt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "broken", + "romanization": "kaputt", + "example_sentence_native": "Mein Handy ist kaputt.", + "example_sentence_english": "My phone is broken.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1602 + }, + { + "word": "Minister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minister", + "romanization": "Minister", + "example_sentence_native": "Der Minister hielt eine Rede.", + "example_sentence_english": "The minister gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1603 + }, + { + "word": "Niveau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "level", + "romanization": "Niveau", + "example_sentence_native": "Das Niveau des Kurses ist hoch.", + "example_sentence_english": "The level of the course is high.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1605 + }, + { + "word": "Philosophie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophy", + "romanization": "Philosophie", + "example_sentence_native": "Sie studiert Philosophie an der Universität.", + "example_sentence_english": "She studies philosophy at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1607 + }, + { + "word": "präsentieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to present", + "romanization": "präsentieren", + "example_sentence_native": "Er wird die Ergebnisse morgen präsentieren.", + "example_sentence_english": "He will present the results tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1608 + }, + { + "word": "rechnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to calculate", + "romanization": "rechnen", + "example_sentence_native": "Sie muss die Kosten genau rechnen.", + "example_sentence_english": "She has to calculate the costs precisely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1609 + }, + { + "word": "Software", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "software", + "romanization": "Software", + "example_sentence_native": "Die neue Software ist sehr benutzerfreundlich.", + "example_sentence_english": "The new software is very user-friendly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1610 + }, + { + "word": "Süden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "south", + "romanization": "Süden", + "example_sentence_native": "Wir fahren in den Süden Deutschlands.", + "example_sentence_english": "We are driving to the south of Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1611 + }, + { + "word": "teuer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "expensive", + "romanization": "teuer", + "example_sentence_native": "Das Auto ist sehr teuer.", + "example_sentence_english": "The car is very expensive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1612 + }, + { + "word": "unmittelbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediate;direct", + "romanization": "unmittelbar", + "example_sentence_native": "Die Auswirkungen waren unmittelbar spürbar.", + "example_sentence_english": "The effects were immediately noticeable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1613 + }, + { + "word": "Unterricht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lesson;class;instruction", + "romanization": "Unterricht", + "example_sentence_native": "Der Unterricht beginnt um 8 Uhr.", + "example_sentence_english": "The lesson starts at 8 o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1614 + }, + { + "word": "verfolgen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pursue;to follow;to track", + "romanization": "verfolgen", + "example_sentence_native": "Die Polizei verfolgt den Dieb.", + "example_sentence_english": "The police are pursuing the thief.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1615 + }, + { + "word": "Vorschlag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suggestion;proposal", + "romanization": "Vorschlag", + "example_sentence_native": "Ich habe einen Vorschlag für dich.", + "example_sentence_english": "I have a suggestion for you.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1617 + }, + { + "word": "weisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to point;to show", + "romanization": "weisen", + "example_sentence_native": "Er wies auf die Tür.", + "example_sentence_english": "He pointed to the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1618 + }, + { + "word": "Widerstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance", + "romanization": "Widerstand", + "example_sentence_native": "Sie leisteten Widerstand gegen die Besatzer.", + "example_sentence_english": "They offered resistance against the occupiers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1619 + }, + { + "word": "Wolf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wolf", + "romanization": "Wolf", + "example_sentence_native": "Der Wolf heult im Wald.", + "example_sentence_english": "The wolf howls in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1620 + }, + { + "word": "zentral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "central", + "romanization": "zentral", + "example_sentence_native": "Das ist ein zentraler Punkt.", + "example_sentence_english": "This is a central point.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1621 + }, + { + "word": "Abteilung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "department", + "romanization": "Abteilung", + "example_sentence_native": "Sie arbeitet in der Marketing-Abteilung.", + "example_sentence_english": "She works in the marketing department.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1623 + }, + { + "word": "Adresse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "address", + "romanization": "Adresse", + "example_sentence_native": "Bitte geben Sie Ihre Adresse an.", + "example_sentence_english": "Please provide your address.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1624 + }, + { + "word": "Amerikaner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "American (male)", + "romanization": "Amerikaner", + "example_sentence_native": "Er ist ein Amerikaner.", + "example_sentence_english": "He is an American.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1625 + }, + { + "word": "Anzeige", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertisement;display;complaint", + "romanization": "Anzeige", + "example_sentence_native": "Ich habe eine interessante Anzeige in der Zeitung gesehen.", + "example_sentence_english": "I saw an interesting advertisement in the newspaper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1626 + }, + { + "word": "Ausnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exception", + "romanization": "Ausnahme", + "example_sentence_native": "Das ist eine Ausnahme von der Regel.", + "example_sentence_english": "That is an exception to the rule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1627 + }, + { + "word": "bisherig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previous;so far", + "romanization": "bisherig", + "example_sentence_native": "Die bisherigen Ergebnisse sind vielversprechend.", + "example_sentence_english": "The previous results are promising.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1629 + }, + { + "word": "Fläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surface;area", + "romanization": "Fläche", + "example_sentence_native": "Die Fläche des Tisches ist glatt.", + "example_sentence_english": "The surface of the table is smooth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1631 + }, + { + "word": "gestalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to design;to shape", + "romanization": "gestalten", + "example_sentence_native": "Wir müssen den Raum neu gestalten.", + "example_sentence_english": "We need to redesign the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1632 + }, + { + "word": "gesund", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "healthy", + "romanization": "gesund", + "example_sentence_native": "Es ist wichtig, gesund zu bleiben.", + "example_sentence_english": "It is important to stay healthy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1633 + }, + { + "word": "Hauptstadt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "capital city", + "romanization": "Hauptstadt", + "example_sentence_native": "Berlin ist die Hauptstadt von Deutschland.", + "example_sentence_english": "Berlin is the capital city of Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1634 + }, + { + "word": "Info", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "info;information", + "romanization": "Info", + "example_sentence_native": "Hast du die Info bekommen?", + "example_sentence_english": "Did you get the info?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1637 + }, + { + "word": "kalt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cold", + "romanization": "kalt", + "example_sentence_native": "Es ist heute sehr kalt draußen.", + "example_sentence_english": "It is very cold outside today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1639 + }, + { + "word": "Medizin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine", + "romanization": "Medizin", + "example_sentence_native": "Sie studiert Medizin an der Universität.", + "example_sentence_english": "She studies medicine at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1641 + }, + { + "word": "Mission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mission", + "romanization": "Mission", + "example_sentence_native": "Die Mission war erfolgreich.", + "example_sentence_english": "The mission was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1642 + }, + { + "word": "Nachmittag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "afternoon", + "romanization": "Nachmittag", + "example_sentence_native": "Wir treffen uns am Nachmittag.", + "example_sentence_english": "We meet in the afternoon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1643 + }, + { + "word": "Pass", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passport", + "romanization": "Pass", + "example_sentence_native": "Zeigen Sie bitte Ihren Pass.", + "example_sentence_english": "Please show your passport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1644 + }, + { + "word": "Pflicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duty", + "romanization": "Pflicht", + "example_sentence_native": "Es ist meine Pflicht, Ihnen zu helfen.", + "example_sentence_english": "It is my duty to help you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1645 + }, + { + "word": "Ruf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reputation", + "romanization": "Ruf", + "example_sentence_native": "Er hat einen guten Ruf.", + "example_sentence_english": "He has a good reputation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1646 + }, + { + "word": "rufen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to call", + "romanization": "rufen", + "example_sentence_native": "Ich rufe dich später an.", + "example_sentence_english": "I will call you later.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1647 + }, + { + "word": "singen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sing", + "romanization": "singen", + "example_sentence_native": "Sie singt sehr schön.", + "example_sentence_english": "She sings very beautifully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1648 + }, + { + "word": "Zeug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stuff;things", + "romanization": "Zeug", + "example_sentence_native": "Ich habe viel Zeug in meinem Rucksack.", + "example_sentence_english": "I have a lot of stuff in my backpack.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1652 + }, + { + "word": "anscheinend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apparently;seemingly", + "romanization": "anscheinend", + "example_sentence_native": "Anscheinend hat er den Zug verpasst.", + "example_sentence_english": "Apparently, he missed the train.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1654 + }, + { + "word": "Beweis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proof;evidence", + "romanization": "Beweis", + "example_sentence_native": "Es gibt keinen Beweis für seine Schuld.", + "example_sentence_english": "There is no proof of his guilt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1656 + }, + { + "word": "Droge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug", + "romanization": "Droge", + "example_sentence_native": "Der Arzt verschrieb ihr eine Droge gegen die Schmerzen.", + "example_sentence_english": "The doctor prescribed her a drug for the pain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1659 + }, + { + "word": "enden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to end", + "romanization": "enden", + "example_sentence_native": "Der Film wird bald enden.", + "example_sentence_english": "The film will end soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1660 + }, + { + "word": "ersetzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to replace", + "romanization": "ersetzen", + "example_sentence_native": "Wir müssen den alten Computer ersetzen.", + "example_sentence_english": "We need to replace the old computer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1661 + }, + { + "word": "Geschenk", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gift;present", + "romanization": "Geschenk", + "example_sentence_native": "Ich habe ein schönes Geschenk bekommen.", + "example_sentence_english": "I received a nice gift.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1663 + }, + { + "word": "Kommunikation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communication", + "romanization": "Kommunikation", + "example_sentence_native": "Gute Kommunikation ist wichtig.", + "example_sentence_english": "Good communication is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1665 + }, + { + "word": "lauten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be;to read (as in;a text reads)", + "romanization": "lauten", + "example_sentence_native": "Die Frage lautet: Was ist der Sinn des Lebens?", + "example_sentence_english": "The question is: What is the meaning of life?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1666 + }, + { + "word": "Leser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reader", + "romanization": "Leser", + "example_sentence_native": "Der Leser fand das Buch sehr interessant.", + "example_sentence_english": "The reader found the book very interesting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1667 + }, + { + "word": "Manager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manager", + "romanization": "Manager", + "example_sentence_native": "Der Manager hat die Entscheidung getroffen.", + "example_sentence_english": "The manager made the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1669 + }, + { + "word": "Media", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "media", + "romanization": "Media", + "example_sentence_native": "Die Rolle von Social Media in der Gesellschaft ist groß.", + "example_sentence_english": "The role of social media in society is great.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1670 + }, + { + "word": "Mühe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effort", + "romanization": "Mühe", + "example_sentence_native": "Sie gab sich viel Mühe, um das Projekt abzuschließen.", + "example_sentence_english": "She put in a lot of effort to complete the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1671 + }, + { + "word": "Nord", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "North", + "romanization": "Nord", + "example_sentence_native": "Der Wind kommt aus Nord.", + "example_sentence_english": "The wind comes from the North.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1672 + }, + { + "word": "Ost", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "East", + "romanization": "Ost", + "example_sentence_native": "Die Sonne geht im Ost auf.", + "example_sentence_english": "The sun rises in the East.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1673 + }, + { + "word": "Rang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rank", + "romanization": "Rang", + "example_sentence_native": "Er hat einen hohen Rang in der Firma.", + "example_sentence_english": "He has a high rank in the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1674 + }, + { + "word": "Revolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolution", + "romanization": "Revolution", + "example_sentence_native": "Die industrielle Revolution veränderte die Welt.", + "example_sentence_english": "The industrial revolution changed the world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1675 + }, + { + "word": "Schauspieler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actor", + "romanization": "Schauspieler", + "example_sentence_native": "Der Schauspieler spielte seine Rolle sehr überzeugend.", + "example_sentence_english": "The actor played his role very convincingly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1676 + }, + { + "word": "spätestens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at the latest", + "romanization": "spätestens", + "example_sentence_native": "Ich muss spätestens um 18 Uhr zu Hause sein.", + "example_sentence_english": "I have to be home by 6 PM at the latest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1677 + }, + { + "word": "Temperatur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "temperature", + "romanization": "Temperatur", + "example_sentence_native": "Die Temperatur ist heute sehr hoch.", + "example_sentence_english": "The temperature is very high today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1678 + }, + { + "word": "Uni", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "university", + "romanization": "Uni", + "example_sentence_native": "Ich studiere an der Uni.", + "example_sentence_english": "I study at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1680 + }, + { + "word": "verbreiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spread;to disseminate", + "romanization": "verbreiten", + "example_sentence_native": "Die Nachrichten verbreiten sich schnell.", + "example_sentence_english": "The news spreads quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1681 + }, + { + "word": "vermeiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to avoid", + "romanization": "vermeiden", + "example_sentence_native": "Wir sollten Fehler vermeiden.", + "example_sentence_english": "We should avoid mistakes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1682 + }, + { + "word": "voraus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ahead;in advance", + "romanization": "voraus", + "example_sentence_native": "Er ging uns voraus.", + "example_sentence_english": "He went ahead of us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1683 + }, + { + "word": "Wettbewerb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition", + "romanization": "Wettbewerb", + "example_sentence_native": "Der Wettbewerb ist sehr stark.", + "example_sentence_english": "The competition is very strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1684 + }, + { + "word": "österreichisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Austrian", + "romanization": "österreichisch", + "example_sentence_native": "Er mag österreichisches Essen.", + "example_sentence_english": "He likes Austrian food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1686 + }, + { + "word": "achten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pay attention;to respect", + "romanization": "achten", + "example_sentence_native": "Bitte achten Sie auf den Verkehr.", + "example_sentence_english": "Please pay attention to the traffic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1687 + }, + { + "word": "Auflösung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolution;dissolution", + "romanization": "Auflösung", + "example_sentence_native": "Die Auflösung des Bildschirms ist sehr gut.", + "example_sentence_english": "The resolution of the screen is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1689 + }, + { + "word": "auszeichnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distinguish;to award", + "romanization": "auszeichnen", + "example_sentence_native": "Er wurde für seine Tapferkeit ausgezeichnet.", + "example_sentence_english": "He was awarded for his bravery.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "zeichnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1690 + }, + { + "word": "Besitz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possession;property", + "romanization": "Besitz", + "example_sentence_native": "Er hat viel Besitz angesammelt.", + "example_sentence_english": "He has accumulated a lot of property.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1692 + }, + { + "word": "betreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to operate;to run;to pursue", + "romanization": "betreiben", + "example_sentence_native": "Sie betreiben ein kleines Café.", + "example_sentence_english": "They operate a small café.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1693 + }, + { + "word": "Detail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detail", + "romanization": "Detail", + "example_sentence_native": "Er achtet auf jedes kleine Detail.", + "example_sentence_english": "He pays attention to every small detail.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1695 + }, + { + "word": "einst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "once;formerly", + "romanization": "einst", + "example_sentence_native": "Einst lebte hier ein König.", + "example_sentence_english": "Once a king lived here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1696 + }, + { + "word": "Einstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attitude;setting;employment", + "romanization": "Einstellung", + "example_sentence_native": "Ihre positive Einstellung ist bewundernswert.", + "example_sentence_english": "Her positive attitude is admirable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1697 + }, + { + "word": "Fahrzeug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vehicle", + "romanization": "Fahrzeug", + "example_sentence_native": "Dieses Fahrzeug ist sehr schnell.", + "example_sentence_english": "This vehicle is very fast.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1698 + }, + { + "word": "Figur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figure;shape;character", + "romanization": "Figur", + "example_sentence_native": "Die Figur im Buch ist sehr interessant.", + "example_sentence_english": "The character in the book is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1699 + }, + { + "word": "Flucht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "escape;flight", + "romanization": "Flucht", + "example_sentence_native": "Die Flucht vor dem Feuer war schwierig.", + "example_sentence_english": "The escape from the fire was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1700 + }, + { + "word": "Formel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formula", + "romanization": "Formel", + "example_sentence_native": "Die mathematische Formel ist komplex.", + "example_sentence_english": "The mathematical formula is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1701 + }, + { + "word": "Griff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grip;handle", + "romanization": "Griff", + "example_sentence_native": "Der Griff der Tasse ist zerbrochen.", + "example_sentence_english": "The handle of the cup is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1704 + }, + { + "word": "hassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hate", + "romanization": "hassen", + "example_sentence_native": "Ich hasse es, früh aufzustehen.", + "example_sentence_english": "I hate getting up early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1705 + }, + { + "word": "Integration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integration", + "romanization": "Integration", + "example_sentence_native": "Die Integration neuer Mitarbeiter ist wichtig.", + "example_sentence_english": "The integration of new employees is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1706 + }, + { + "word": "kümmern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to care (for);to look after", + "romanization": "kümmern", + "example_sentence_native": "Er kümmert sich um seine Pflanzen.", + "example_sentence_english": "He takes care of his plants.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1708 + }, + { + "word": "Maschine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "machine", + "romanization": "Maschine", + "example_sentence_native": "Die Maschine ist sehr alt.", + "example_sentence_english": "The machine is very old.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1709 + }, + { + "word": "Mut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courage", + "romanization": "Mut", + "example_sentence_native": "Er fasste den Mut, die Wahrheit zu sagen.", + "example_sentence_english": "He gathered the courage to tell the truth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1710 + }, + { + "word": "Op", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operation (informal)", + "romanization": "Op", + "example_sentence_native": "Die Op ist gut verlaufen.", + "example_sentence_english": "The operation went well.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1711 + }, + { + "word": "Phase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phase", + "romanization": "Phase", + "example_sentence_native": "Wir sind in einer neuen Phase des Projekts.", + "example_sentence_english": "We are in a new phase of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1712 + }, + { + "word": "Prof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professor (informal)", + "romanization": "Prof", + "example_sentence_native": "Unser Prof hat heute eine interessante Vorlesung gehalten.", + "example_sentence_english": "Our professor gave an interesting lecture today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1713 + }, + { + "word": "Ring", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ring", + "romanization": "Ring", + "example_sentence_native": "Sie trägt einen schönen Ring am Finger.", + "example_sentence_english": "She wears a beautiful ring on her finger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1714 + }, + { + "word": "Teilnahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "participation", + "romanization": "Teilnahme", + "example_sentence_native": "Die Teilnahme am Kurs ist freiwillig.", + "example_sentence_english": "Participation in the course is voluntary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1716 + }, + { + "word": "womit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with what;whereby", + "romanization": "womit", + "example_sentence_native": "Das ist das Problem, womit wir uns beschäftigen müssen.", + "example_sentence_english": "That is the problem with which we have to deal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1719 + }, + { + "word": "überlegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consider", + "romanization": "überlegen", + "example_sentence_native": "Ich muss überlegen, bevor ich antworte.", + "example_sentence_english": "I need to consider before I answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1720 + }, + { + "word": "Übersetzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translation", + "romanization": "Übersetzung", + "example_sentence_native": "Die Übersetzung des Buches ist sehr gut.", + "example_sentence_english": "The translation of the book is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1721 + }, + { + "word": "Ausdruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expression", + "romanization": "Ausdruck", + "example_sentence_native": "Sein Gesicht zeigte einen Ausdruck der Überraschung.", + "example_sentence_english": "His face showed an expression of surprise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1725 + }, + { + "word": "bestellen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to order", + "romanization": "bestellen", + "example_sentence_native": "Ich möchte einen Kaffee bestellen.", + "example_sentence_english": "I would like to order a coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1726 + }, + { + "word": "beweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prove", + "romanization": "beweisen", + "example_sentence_native": "Er konnte seine Unschuld beweisen.", + "example_sentence_english": "He could prove his innocence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1727 + }, + { + "word": "Bewohner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant", + "romanization": "Bewohner", + "example_sentence_native": "Die Bewohner des Hauses sind sehr freundlich.", + "example_sentence_english": "The residents of the house are very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1728 + }, + { + "word": "Bundestag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "German Federal Parliament", + "romanization": "Bundestag", + "example_sentence_native": "Der Bundestag hat ein neues Gesetz verabschiedet.", + "example_sentence_english": "The German Federal Parliament passed a new law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1729 + }, + { + "word": "Code", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "code", + "romanization": "Code", + "example_sentence_native": "Der Code ist schwer zu verstehen.", + "example_sentence_english": "The code is difficult to understand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1730 + }, + { + "word": "Debatte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debate", + "romanization": "Debatte", + "example_sentence_native": "Die Debatte war sehr lebhaft.", + "example_sentence_english": "The debate was very lively.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1731 + }, + { + "word": "definitiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definite;definitive", + "romanization": "definitiv", + "example_sentence_native": "Das ist die definitiv letzte Entscheidung.", + "example_sentence_english": "That is the definite final decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1732 + }, + { + "word": "drehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn;to spin", + "romanization": "drehen", + "example_sentence_native": "Er dreht den Schlüssel im Schloss.", + "example_sentence_english": "He turns the key in the lock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1734 + }, + { + "word": "Ehre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honor;glory", + "romanization": "Ehre", + "example_sentence_native": "Es ist mir eine Ehre, hier zu sein.", + "example_sentence_english": "It is an honor for me to be here.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1735 + }, + { + "word": "Ei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "egg", + "romanization": "Ei", + "example_sentence_native": "Das Ei ist gekocht.", + "example_sentence_english": "The egg is cooked.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1736 + }, + { + "word": "einladen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to invite;to load in", + "romanization": "einladen", + "example_sentence_native": "Ich möchte dich zum Abendessen einladen.", + "example_sentence_english": "I would like to invite you to dinner.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "laden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1737 + }, + { + "word": "Forum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forum", + "romanization": "Forum", + "example_sentence_native": "Das Online-Forum ist sehr aktiv.", + "example_sentence_english": "The online forum is very active.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1738 + }, + { + "word": "Gas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gas", + "romanization": "Gas", + "example_sentence_native": "Das Auto fährt mit Gas.", + "example_sentence_english": "The car runs on gas.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1739 + }, + { + "word": "Geschmack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taste;flavor", + "romanization": "Geschmack", + "example_sentence_native": "Der Kuchen hat einen guten Geschmack.", + "example_sentence_english": "The cake has a good taste.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1740 + }, + { + "word": "gratis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free (of charge)", + "romanization": "gratis", + "example_sentence_native": "Die Lieferung ist gratis.", + "example_sentence_english": "The delivery is free of charge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1741 + }, + { + "word": "hundert", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hundred", + "romanization": "hundert", + "example_sentence_native": "Es sind hundert Leute hier.", + "example_sentence_english": "There are a hundred people here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 1743 + }, + { + "word": "Journalist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journalist", + "romanization": "Journalist", + "example_sentence_native": "Der Journalist schreibt einen Artikel.", + "example_sentence_english": "The journalist is writing an article.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1744 + }, + { + "word": "letztlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimately;finally", + "romanization": "letztlich", + "example_sentence_native": "Letztlich ist es deine Entscheidung.", + "example_sentence_english": "Ultimately, it's your decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1745 + }, + { + "word": "liefern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deliver", + "romanization": "liefern", + "example_sentence_native": "Wir liefern die Pizza nach Hause.", + "example_sentence_english": "We deliver the pizza home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1746 + }, + { + "word": "Mord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murder", + "romanization": "Mord", + "example_sentence_native": "Der Mord wurde schnell aufgeklärt.", + "example_sentence_english": "The murder was quickly solved.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1747 + }, + { + "word": "ober", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upper", + "romanization": "ober", + "example_sentence_native": "Der obere Teil des Berges ist schneebedeckt.", + "example_sentence_english": "The upper part of the mountain is snow-covered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1750 + }, + { + "word": "ohnehin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anyway", + "romanization": "ohnehin", + "example_sentence_native": "Das ist ohnehin schon erledigt.", + "example_sentence_english": "That's already done anyway.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1751 + }, + { + "word": "Personal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "staff", + "romanization": "Personal", + "example_sentence_native": "Das Personal war sehr freundlich.", + "example_sentence_english": "The staff was very friendly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1752 + }, + { + "word": "Restaurant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "restaurant", + "romanization": "Restaurant", + "example_sentence_native": "Wir gehen heute Abend in ein Restaurant.", + "example_sentence_english": "We are going to a restaurant tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1753 + }, + { + "word": "Schmerz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pain", + "romanization": "Schmerz", + "example_sentence_native": "Er spürte einen starken Schmerz im Bein.", + "example_sentence_english": "He felt a strong pain in his leg.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1754 + }, + { + "word": "Schwanz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tail", + "romanization": "Schwanz", + "example_sentence_native": "Der Hund wedelte mit dem Schwanz.", + "example_sentence_english": "The dog wagged its tail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1755 + }, + { + "word": "Schwierigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difficulty", + "romanization": "Schwierigkeit", + "example_sentence_native": "Sie hatte Schwierigkeiten, die Aufgabe zu lösen.", + "example_sentence_english": "She had difficulties solving the task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1756 + }, + { + "word": "Spur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trace", + "romanization": "Spur", + "example_sentence_native": "Die Polizei fand keine Spur des Täters.", + "example_sentence_english": "The police found no trace of the perpetrator.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1757 + }, + { + "word": "Standort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "location", + "romanization": "Standort", + "example_sentence_native": "Der neue Standort des Unternehmens ist in Berlin.", + "example_sentence_english": "The company's new location is in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1758 + }, + { + "word": "Vorsitzender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chairman", + "romanization": "Vorsitzender", + "example_sentence_native": "Der Vorsitzende eröffnete die Sitzung.", + "example_sentence_english": "The chairman opened the meeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1759 + }, + { + "word": "weh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sore;painful", + "romanization": "weh", + "example_sentence_native": "Mein Kopf tut weh.", + "example_sentence_english": "My head hurts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1760 + }, + { + "word": "witzig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funny;witty", + "romanization": "witzig", + "example_sentence_native": "Das war ein sehr witziger Film.", + "example_sentence_english": "That was a very funny movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1761 + }, + { + "word": "worauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on what;whereupon", + "romanization": "worauf", + "example_sentence_native": "Worauf wartest du?", + "example_sentence_english": "What are you waiting for?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1762 + }, + { + "word": "Wähler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voter", + "romanization": "Wähler", + "example_sentence_native": "Die Wähler haben ihre Stimme abgegeben.", + "example_sentence_english": "The voters cast their vote.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1763 + }, + { + "word": "Achtung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "attention;respect;caution", + "romanization": "Achtung", + "example_sentence_native": "Achtung! Der Zug fährt ein.", + "example_sentence_english": "Attention! The train is arriving.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1765 + }, + { + "word": "aufhören", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop;to cease", + "romanization": "aufhören", + "example_sentence_native": "Bitte hör auf zu reden!", + "example_sentence_english": "Please stop talking!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "hören", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1767 + }, + { + "word": "aufmerksam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attentive;observant", + "romanization": "aufmerksam", + "example_sentence_native": "Sie ist eine sehr aufmerksame Zuhörerin.", + "example_sentence_english": "She is a very attentive listener.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1768 + }, + { + "word": "auftreten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appear;to perform;to occur", + "romanization": "auftreten", + "example_sentence_native": "Die Band wird heute Abend auftreten.", + "example_sentence_english": "The band will perform tonight.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1769 + }, + { + "word": "ausschliessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exclude", + "romanization": "ausschliessen", + "example_sentence_native": "Wir müssen diese Möglichkeit ausschliessen.", + "example_sentence_english": "We must exclude this possibility.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schliessen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1770 + }, + { + "word": "begeistern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inspire", + "romanization": "begeistern", + "example_sentence_native": "Seine Rede konnte das Publikum begeistern.", + "example_sentence_english": "His speech could inspire the audience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1771 + }, + { + "word": "Boot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boat", + "romanization": "Boot", + "example_sentence_native": "Das Boot schwimmt auf dem Wasser.", + "example_sentence_english": "The boat floats on the water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1772 + }, + { + "word": "daraufhin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thereupon", + "romanization": "daraufhin", + "example_sentence_native": "Er beendete seine Arbeit, daraufhin ging er nach Hause.", + "example_sentence_english": "He finished his work, thereupon he went home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1774 + }, + { + "word": "erforderlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "necessary", + "romanization": "erforderlich", + "example_sentence_native": "Diese Maßnahme ist erforderlich.", + "example_sentence_english": "This measure is necessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1775 + }, + { + "word": "ewig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eternal", + "romanization": "ewig", + "example_sentence_native": "Die ewige Liebe ist ein schöner Gedanke.", + "example_sentence_english": "Eternal love is a beautiful thought.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1776 + }, + { + "word": "geeignet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitable", + "romanization": "geeignet", + "example_sentence_native": "Dieser Ort ist für ein Picknick gut geeignet.", + "example_sentence_english": "This place is well suited for a picnic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1777 + }, + { + "word": "Gemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "community", + "romanization": "Gemeinschaft", + "example_sentence_native": "Sie leben in einer starken Gemeinschaft.", + "example_sentence_english": "They live in a strong community.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1778 + }, + { + "word": "herstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce", + "romanization": "herstellen", + "example_sentence_native": "Diese Firma stellt Autos her.", + "example_sentence_english": "This company manufactures cars.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1779 + }, + { + "word": "inner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inner;internal", + "romanization": "inner", + "example_sentence_native": "Er spürte einen inneren Frieden.", + "example_sentence_english": "He felt an inner peace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1781 + }, + { + "word": "kochen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cook;to boil", + "romanization": "kochen", + "example_sentence_native": "Ich koche gerne Pasta.", + "example_sentence_english": "I like to cook pasta.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1782 + }, + { + "word": "Marke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brand;mark;stamp", + "romanization": "Marke", + "example_sentence_native": "Das ist eine bekannte Marke.", + "example_sentence_english": "That is a well-known brand.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1783 + }, + { + "word": "Musiker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musician (male)", + "romanization": "Musiker", + "example_sentence_native": "Der Musiker spielte ein schönes Lied.", + "example_sentence_english": "The musician played a beautiful song.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1784 + }, + { + "word": "Schlaf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sleep", + "romanization": "Schlaf", + "example_sentence_native": "Ich brauche mehr Schlaf.", + "example_sentence_english": "I need more sleep.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1786 + }, + { + "word": "Schnitt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut;section;slice", + "romanization": "Schnitt", + "example_sentence_native": "Der Schnitt war sehr präzise.", + "example_sentence_english": "The cut was very precise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1787 + }, + { + "word": "Silber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silver", + "romanization": "Silber", + "example_sentence_native": "Der Ring ist aus Silber.", + "example_sentence_english": "The ring is made of silver.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1788 + }, + { + "word": "Smartphone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smartphone", + "romanization": "Smartphone", + "example_sentence_native": "Mein Smartphone ist neu.", + "example_sentence_english": "My smartphone is new.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1789 + }, + { + "word": "Status", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "status", + "romanization": "Status", + "example_sentence_native": "Was ist der aktuelle Status des Projekts?", + "example_sentence_english": "What is the current status of the project?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1790 + }, + { + "word": "Story", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "story", + "romanization": "Story", + "example_sentence_native": "Sie erzählte eine interessante Story.", + "example_sentence_english": "She told an interesting story.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1791 + }, + { + "word": "Tasche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bag", + "romanization": "Tasche", + "example_sentence_native": "Meine Schlüssel sind in meiner Tasche.", + "example_sentence_english": "My keys are in my bag.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1792 + }, + { + "word": "unterscheiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distinguish", + "romanization": "unterscheiden", + "example_sentence_native": "Es ist schwer, die beiden zu unterscheiden.", + "example_sentence_english": "It is hard to distinguish the two.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1794 + }, + { + "word": "verteilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distribute", + "romanization": "verteilen", + "example_sentence_native": "Sie müssen die Aufgaben gerecht verteilen.", + "example_sentence_english": "You must distribute the tasks fairly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1795 + }, + { + "word": "wechseln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to change", + "romanization": "wechseln", + "example_sentence_native": "Ich möchte den Sitzplatz wechseln.", + "example_sentence_english": "I want to change seats.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1796 + }, + { + "word": "zufällig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by chance", + "romanization": "zufällig", + "example_sentence_native": "Ich habe ihn zufällig getroffen.", + "example_sentence_english": "I met him by chance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1797 + }, + { + "word": "abhängig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dependent", + "romanization": "abhängig", + "example_sentence_native": "Er ist finanziell von seinen Eltern abhängig.", + "example_sentence_english": "He is financially dependent on his parents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1798 + }, + { + "word": "Aktie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "share", + "romanization": "Aktie", + "example_sentence_native": "Der Wert der Aktie ist gestiegen.", + "example_sentence_english": "The value of the share has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1799 + }, + { + "word": "ankommen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to arrive", + "romanization": "ankommen", + "example_sentence_native": "Wann wird der Zug ankommen?", + "example_sentence_english": "When will the train arrive?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1800 + }, + { + "word": "Anwalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lawyer", + "romanization": "Anwalt", + "example_sentence_native": "Mein Anwalt hat mir geholfen.", + "example_sentence_english": "My lawyer helped me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1801 + }, + { + "word": "Auswirkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effect;impact", + "romanization": "Auswirkung", + "example_sentence_native": "Die Auswirkung der Entscheidung war groß.", + "example_sentence_english": "The impact of the decision was significant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1802 + }, + { + "word": "behaupten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to claim;to assert", + "romanization": "behaupten", + "example_sentence_native": "Er behauptet, die Wahrheit zu kennen.", + "example_sentence_english": "He claims to know the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1803 + }, + { + "word": "beobachten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to observe;to watch", + "romanization": "beobachten", + "example_sentence_native": "Sie beobachtet die Vögel im Garten.", + "example_sentence_english": "She observes the birds in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1804 + }, + { + "word": "bitten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ask;to request", + "romanization": "bitten", + "example_sentence_native": "Ich möchte Sie um Hilfe bitten.", + "example_sentence_english": "I would like to ask you for help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1805 + }, + { + "word": "braun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brown", + "romanization": "braun", + "example_sentence_native": "Das Pferd ist braun.", + "example_sentence_english": "The horse is brown.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1806 + }, + { + "word": "Eigenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic;property", + "romanization": "Eigenschaft", + "example_sentence_native": "Geduld ist eine gute Eigenschaft.", + "example_sentence_english": "Patience is a good characteristic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1807 + }, + { + "word": "Engel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angel", + "romanization": "Engel", + "example_sentence_native": "Der Engel hatte große Flügel.", + "example_sentence_english": "The angel had large wings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1808 + }, + { + "word": "erstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to create;to generate", + "romanization": "erstellen", + "example_sentence_native": "Wir müssen einen Bericht erstellen.", + "example_sentence_english": "We need to create a report.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1809 + }, + { + "word": "trennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to separate", + "romanization": "trennen", + "example_sentence_native": "Wir müssen den Müll trennen.", + "example_sentence_english": "We have to separate the trash.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1810 + }, + { + "word": "Haltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "posture;attitude", + "romanization": "Haltung", + "example_sentence_native": "Ihre Haltung war sehr aufrecht.", + "example_sentence_english": "Her posture was very upright.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1811 + }, + { + "word": "Krise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crisis", + "romanization": "Krise", + "example_sentence_native": "Die Wirtschaft steckt in einer Krise.", + "example_sentence_english": "The economy is in a crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1813 + }, + { + "word": "Methode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "method", + "romanization": "Methode", + "example_sentence_native": "Das ist eine neue Methode, um Probleme zu lösen.", + "example_sentence_english": "That is a new method to solve problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1814 + }, + { + "word": "Milch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "milk", + "romanization": "Milch", + "example_sentence_native": "Ich trinke gerne Milch zum Frühstück.", + "example_sentence_english": "I like to drink milk for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1815 + }, + { + "word": "Mist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manure;crap", + "romanization": "Mist", + "example_sentence_native": "Oh, Mist! Ich habe meine Schlüssel vergessen.", + "example_sentence_english": "Oh, crap! I forgot my keys.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1816 + }, + { + "word": "normalerweise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normally;usually", + "romanization": "normalerweise", + "example_sentence_native": "Normalerweise stehe ich um sieben Uhr auf.", + "example_sentence_english": "Normally, I get up at seven o'clock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1817 + }, + { + "word": "speziell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "special;specific", + "romanization": "speziell", + "example_sentence_native": "Das ist ein spezielles Angebot für unsere Kunden.", + "example_sentence_english": "This is a special offer for our customers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1818 + }, + { + "word": "Strafe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punishment;penalty", + "romanization": "Strafe", + "example_sentence_native": "Er bekam eine hohe Strafe für das Vergehen.", + "example_sentence_english": "He received a high penalty for the offense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1819 + }, + { + "word": "Sturm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storm", + "romanization": "Sturm", + "example_sentence_native": "Der Sturm fegte über das Land.", + "example_sentence_english": "The storm swept across the land.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1820 + }, + { + "word": "verheiraten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to marry (someone)", + "romanization": "verheiraten", + "example_sentence_native": "Sie wollen ihre Tochter verheiraten.", + "example_sentence_english": "They want to marry off their daughter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1823 + }, + { + "word": "Verlust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loss", + "romanization": "Verlust", + "example_sentence_native": "Der Verlust des Gepäcks war ärgerlich.", + "example_sentence_english": "The loss of the luggage was annoying.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1824 + }, + { + "word": "verpassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to miss (a train;opportunity)", + "romanization": "verpassen", + "example_sentence_native": "Ich möchte den Zug nicht verpassen.", + "example_sentence_english": "I don't want to miss the train.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1825 + }, + { + "word": "versehen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to provide;to make a mistake", + "romanization": "versehen", + "example_sentence_native": "Er hat sich im Datum versehen.", + "example_sentence_english": "He made a mistake with the date.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1826 + }, + { + "word": "verzichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to do without;to waive", + "romanization": "verzichten", + "example_sentence_native": "Ich verzichte auf Zucker in meinem Kaffee.", + "example_sentence_english": "I do without sugar in my coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1827 + }, + { + "word": "warm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "warm", + "romanization": "warm", + "example_sentence_native": "Es ist heute sehr warm.", + "example_sentence_english": "It is very warm today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1829 + }, + { + "word": "Webseite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "website", + "romanization": "Webseite", + "example_sentence_native": "Die Webseite ist sehr informativ.", + "example_sentence_english": "The website is very informative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1830 + }, + { + "word": "Zeitraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period;time frame", + "romanization": "Zeitraum", + "example_sentence_native": "Der Zeitraum für die Anmeldung ist begrenzt.", + "example_sentence_english": "The period for registration is limited.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1831 + }, + { + "word": "Zustimmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consent;approval", + "romanization": "Zustimmung", + "example_sentence_native": "Wir benötigen Ihre Zustimmung für die Veröffentlichung.", + "example_sentence_english": "We need your consent for the publication.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1832 + }, + { + "word": "Abschnitt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "section;paragraph", + "romanization": "Abschnitt", + "example_sentence_native": "Bitte lesen Sie den nächsten Abschnitt.", + "example_sentence_english": "Please read the next section.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1833 + }, + { + "word": "Alltag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "everyday life", + "romanization": "Alltag", + "example_sentence_native": "Das ist mein Alltag.", + "example_sentence_english": "That is my everyday life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1834 + }, + { + "word": "anfangs", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initially;at first", + "romanization": "anfangs", + "example_sentence_native": "Anfangs war es schwierig, aber jetzt ist es besser.", + "example_sentence_english": "Initially it was difficult, but now it's better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1835 + }, + { + "word": "Auflage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edition;circulation;condition", + "romanization": "Auflage", + "example_sentence_native": "Die neue Auflage des Buches ist erschienen.", + "example_sentence_english": "The new edition of the book has been released.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1836 + }, + { + "word": "ausreichend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sufficient;adequate", + "romanization": "ausreichend", + "example_sentence_native": "Das ist ausreichend für unsere Bedürfnisse.", + "example_sentence_english": "That is sufficient for our needs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1837 + }, + { + "word": "Brot", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bread", + "romanization": "Brot", + "example_sentence_native": "Ich esse gerne Brot zum Frühstück.", + "example_sentence_english": "I like to eat bread for breakfast.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1838 + }, + { + "word": "Einwohner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant", + "romanization": "Einwohner", + "example_sentence_native": "Die Einwohner der Stadt sind sehr freundlich.", + "example_sentence_english": "The inhabitants of the city are very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1840 + }, + { + "word": "elf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eleven", + "romanization": "elf", + "example_sentence_native": "Ich habe elf Bücher.", + "example_sentence_english": "I have eleven books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 1841 + }, + { + "word": "ernsthaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serious", + "romanization": "ernsthaft", + "example_sentence_native": "Er ist ein sehr ernsthafter Mensch.", + "example_sentence_english": "He is a very serious person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1842 + }, + { + "word": "feststellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to determine", + "romanization": "feststellen", + "example_sentence_native": "Wir müssen feststellen, was passiert ist.", + "example_sentence_english": "We need to determine what happened.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1843 + }, + { + "word": "Frühstück", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "breakfast", + "romanization": "Frühstück", + "example_sentence_native": "Das Frühstück ist meine Lieblingsmahlzeit.", + "example_sentence_english": "Breakfast is my favorite meal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1844 + }, + { + "word": "Geburt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birth", + "romanization": "Geburt", + "example_sentence_native": "Die Geburt ihres Kindes war ein besonderer Moment.", + "example_sentence_english": "The birth of her child was a special moment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1845 + }, + { + "word": "spannen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stretch", + "romanization": "spannen", + "example_sentence_native": "Er muss den Draht spannen.", + "example_sentence_english": "He has to stretch the wire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1846 + }, + { + "word": "Hass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hatred", + "romanization": "Hass", + "example_sentence_native": "Hass ist ein starkes Gefühl.", + "example_sentence_english": "Hatred is a strong feeling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1847 + }, + { + "word": "hierzu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to this", + "romanization": "hierzu", + "example_sentence_native": "Ich habe hierzu nichts hinzuzufügen.", + "example_sentence_english": "I have nothing to add to this.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1848 + }, + { + "word": "Kern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "core", + "romanization": "Kern", + "example_sentence_native": "Der Kern des Problems liegt woanders.", + "example_sentence_english": "The core of the problem lies elsewhere.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1849 + }, + { + "word": "Kreuz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cross", + "romanization": "Kreuz", + "example_sentence_native": "Das Kreuz steht auf dem Hügel.", + "example_sentence_english": "The cross stands on the hill.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1850 + }, + { + "word": "müde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tired", + "romanization": "müde", + "example_sentence_native": "Ich bin sehr müde.", + "example_sentence_english": "I am very tired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1851 + }, + { + "word": "open", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "open", + "romanization": "open", + "example_sentence_native": "Das Geschäft ist open.", + "example_sentence_english": "The shop is open.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1854 + }, + { + "word": "Planung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planning", + "romanization": "Planung", + "example_sentence_native": "Die Planung ist abgeschlossen.", + "example_sentence_english": "The planning is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1856 + }, + { + "word": "Schatten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shadow", + "romanization": "Schatten", + "example_sentence_native": "Der Baum wirft einen langen Schatten.", + "example_sentence_english": "The tree casts a long shadow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1858 + }, + { + "word": "Schicksal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fate", + "romanization": "Schicksal", + "example_sentence_native": "Es war ihr Schicksal.", + "example_sentence_english": "It was her fate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1859 + }, + { + "word": "Shop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shop", + "romanization": "Shop", + "example_sentence_native": "Der neue Shop hat tolle Angebote.", + "example_sentence_english": "The new shop has great offers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1860 + }, + { + "word": "Stern", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "star", + "romanization": "Stern", + "example_sentence_native": "Am Nachthimmel leuchten viele Sterne.", + "example_sentence_english": "Many stars shine in the night sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1861 + }, + { + "word": "sämtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all;entire;complete", + "romanization": "sämtlich", + "example_sentence_native": "Sämtliche Dokumente müssen unterschrieben werden.", + "example_sentence_english": "All documents must be signed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1862 + }, + { + "word": "Unternehmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entrepreneur;businessman", + "romanization": "Unternehmer", + "example_sentence_native": "Der junge Unternehmer gründete ein erfolgreiches Startup.", + "example_sentence_english": "The young entrepreneur founded a successful startup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1864 + }, + { + "word": "Ursache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause;reason", + "romanization": "Ursache", + "example_sentence_native": "Die Ursache des Problems ist noch unklar.", + "example_sentence_english": "The cause of the problem is still unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1865 + }, + { + "word": "Verbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crime", + "romanization": "Verbrechen", + "example_sentence_native": "Das Verbrechen wurde schnell aufgeklärt.", + "example_sentence_english": "The crime was quickly solved.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1866 + }, + { + "word": "verurteilen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condemn;to sentence", + "romanization": "verurteilen", + "example_sentence_native": "Der Richter wird den Angeklagten verurteilen.", + "example_sentence_english": "The judge will sentence the accused.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1867 + }, + { + "word": "Veränderung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change;alteration", + "romanization": "Veränderung", + "example_sentence_native": "Wir brauchen eine Veränderung in unserer Strategie.", + "example_sentence_english": "We need a change in our strategy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1868 + }, + { + "word": "vielmehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rather;instead", + "romanization": "vielmehr", + "example_sentence_native": "Es war nicht schlecht, vielmehr sehr gut.", + "example_sentence_english": "It wasn't bad, rather very good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1869 + }, + { + "word": "vorbereiten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to prepare", + "romanization": "vorbereiten", + "example_sentence_native": "Ich muss mich auf die Prüfung vorbereiten.", + "example_sentence_english": "I have to prepare for the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1870 + }, + { + "word": "wild", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wild", + "romanization": "wild", + "example_sentence_native": "Das ist eine wilde Katze.", + "example_sentence_english": "That is a wild cat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1871 + }, + { + "word": "wohin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where to", + "romanization": "wohin", + "example_sentence_native": "Wohin gehst du?", + "example_sentence_english": "Where are you going?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1872 + }, + { + "word": "Wolle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wool", + "romanization": "Wolle", + "example_sentence_native": "Der Pullover ist aus Wolle.", + "example_sentence_english": "The sweater is made of wool.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1873 + }, + { + "word": "Änderung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change", + "romanization": "Änderung", + "example_sentence_native": "Es gibt eine Änderung im Plan.", + "example_sentence_english": "There is a change in the plan.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1874 + }, + { + "word": "Übersicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overview", + "romanization": "Übersicht", + "example_sentence_native": "Hier ist eine kurze Übersicht über das Projekt.", + "example_sentence_english": "Here is a brief overview of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1875 + }, + { + "word": "Arbeitgeber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employer", + "romanization": "Arbeitgeber", + "example_sentence_native": "Mein Arbeitgeber bietet gute Sozialleistungen.", + "example_sentence_english": "My employer offers good social benefits.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1876 + }, + { + "word": "aufbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to build up", + "romanization": "aufbauen", + "example_sentence_native": "Wir müssen das Zelt aufbauen.", + "example_sentence_english": "We have to set up the tent.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1877 + }, + { + "word": "begleiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accompany", + "romanization": "begleiten", + "example_sentence_native": "Er wird sie zum Bahnhof begleiten.", + "example_sentence_english": "He will accompany her to the station.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1878 + }, + { + "word": "benötigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to need;to require", + "romanization": "benötigen", + "example_sentence_native": "Wir benötigen mehr Zeit für dieses Projekt.", + "example_sentence_english": "We need more time for this project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1880 + }, + { + "word": "Besitzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owner", + "romanization": "Besitzer", + "example_sentence_native": "Der Besitzer des Hundes ist sehr freundlich.", + "example_sentence_english": "The owner of the dog is very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1881 + }, + { + "word": "Blog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blog", + "romanization": "Blog", + "example_sentence_native": "Sie schreibt regelmäßig in ihrem Blog.", + "example_sentence_english": "She writes regularly in her blog.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1882 + }, + { + "word": "Bundesrepublik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Federal Republic", + "romanization": "Bundesrepublik", + "example_sentence_native": "Die Bundesrepublik Deutschland wurde 1949 gegründet.", + "example_sentence_english": "The Federal Republic of Germany was founded in 1949.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1883 + }, + { + "word": "diskutieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discuss", + "romanization": "diskutieren", + "example_sentence_native": "Wir müssen dieses Problem diskutieren.", + "example_sentence_english": "We need to discuss this problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1884 + }, + { + "word": "ermöglichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enable;to make possible", + "romanization": "ermöglichen", + "example_sentence_native": "Die neue Technologie wird viele Verbesserungen ermöglichen.", + "example_sentence_english": "The new technology will enable many improvements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1886 + }, + { + "word": "Fakt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fact", + "romanization": "Fakt", + "example_sentence_native": "Das ist ein wichtiger Fakt, den wir berücksichtigen müssen.", + "example_sentence_english": "That is an important fact that we must consider.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1887 + }, + { + "word": "Feuerwehr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fire department", + "romanization": "Feuerwehr", + "example_sentence_native": "Die Feuerwehr war schnell am Unfallort.", + "example_sentence_english": "The fire department was quickly at the scene of the accident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1888 + }, + { + "word": "Flug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flight", + "romanization": "Flug", + "example_sentence_native": "Der Flug nach Berlin dauert zwei Stunden.", + "example_sentence_english": "The flight to Berlin takes two hours.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1889 + }, + { + "word": "Hochschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university;college", + "romanization": "Hochschule", + "example_sentence_native": "Sie studiert an der Hochschule.", + "example_sentence_english": "She studies at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1892 + }, + { + "word": "Infrastruktur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infrastructure", + "romanization": "Infrastruktur", + "example_sentence_native": "Die Infrastruktur muss verbessert werden.", + "example_sentence_english": "The infrastructure must be improved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1893 + }, + { + "word": "Katze", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cat", + "romanization": "Katze", + "example_sentence_native": "Die Katze schläft auf dem Sofa.", + "example_sentence_english": "The cat is sleeping on the sofa.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1895 + }, + { + "word": "kritisieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to criticize", + "romanization": "kritisieren", + "example_sentence_native": "Man sollte nicht immer kritisieren.", + "example_sentence_english": "One should not always criticize.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1896 + }, + { + "word": "Messer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "knife", + "romanization": "Messer", + "example_sentence_native": "Das Messer ist scharf.", + "example_sentence_english": "The knife is sharp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1898 + }, + { + "word": "Nachfolger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successor", + "romanization": "Nachfolger", + "example_sentence_native": "Er ist der Nachfolger des Direktors.", + "example_sentence_english": "He is the successor of the director.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1899 + }, + { + "word": "Oma", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandma", + "romanization": "Oma", + "example_sentence_native": "Meine Oma backt die besten Kuchen.", + "example_sentence_english": "My grandma bakes the best cakes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1900 + }, + { + "word": "Operation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operation", + "romanization": "Operation", + "example_sentence_native": "Die Operation war erfolgreich.", + "example_sentence_english": "The operation was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1901 + }, + { + "word": "Pfarrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastor", + "romanization": "Pfarrer", + "example_sentence_native": "Der Pfarrer hielt eine lange Predigt.", + "example_sentence_english": "The pastor gave a long sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1902 + }, + { + "word": "Pflege", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "care", + "romanization": "Pflege", + "example_sentence_native": "Gute Pflege ist wichtig für die Genesung.", + "example_sentence_english": "Good care is important for recovery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1903 + }, + { + "word": "Profil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profile", + "romanization": "Profil", + "example_sentence_native": "Sie hat ihr Profil online aktualisiert.", + "example_sentence_english": "She updated her profile online.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1904 + }, + { + "word": "Rückkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return", + "romanization": "Rückkehr", + "example_sentence_native": "Wir warten auf seine Rückkehr.", + "example_sentence_english": "We are waiting for his return.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1905 + }, + { + "word": "Sender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sender", + "romanization": "Sender", + "example_sentence_native": "Welcher Sender zeigt den Film?", + "example_sentence_english": "Which channel is showing the movie?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1907 + }, + { + "word": "Sieger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winner", + "romanization": "Sieger", + "example_sentence_native": "Der Sieger des Rennens wurde gefeiert.", + "example_sentence_english": "The winner of the race was celebrated.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1908 + }, + { + "word": "sinnvoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensible", + "romanization": "sinnvoll", + "example_sentence_native": "Das ist eine sehr sinnvolle Idee.", + "example_sentence_english": "That is a very sensible idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1909 + }, + { + "word": "Statistik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statistics", + "romanization": "Statistik", + "example_sentence_native": "Die Statistik zeigt einen Anstieg der Zahlen.", + "example_sentence_english": "The statistics show an increase in numbers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1913 + }, + { + "word": "Stress", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stress", + "romanization": "Stress", + "example_sentence_native": "Er hat viel Stress bei der Arbeit.", + "example_sentence_english": "He has a lot of stress at work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1914 + }, + { + "word": "tausend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thousand", + "romanization": "tausend", + "example_sentence_native": "Das Buch kostet tausend Euro.", + "example_sentence_english": "The book costs a thousand euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 1915 + }, + { + "word": "Toter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dead person;casualty", + "romanization": "Toter", + "example_sentence_native": "Bei dem Unfall gab es einen Toten.", + "example_sentence_english": "There was one dead person in the accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1916 + }, + { + "word": "Umfeld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environment;surroundings", + "romanization": "Umfeld", + "example_sentence_native": "Er wuchs in einem ländlichen Umfeld auf.", + "example_sentence_english": "He grew up in a rural environment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1917 + }, + { + "word": "User", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "user", + "romanization": "User", + "example_sentence_native": "Die Anzahl der aktiven User steigt.", + "example_sentence_english": "The number of active users is increasing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1918 + }, + { + "word": "vergeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forgive;to award;to allocate", + "romanization": "vergeben", + "example_sentence_native": "Ich kann dir das nicht vergeben.", + "example_sentence_english": "I cannot forgive you for that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1919 + }, + { + "word": "Verstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understanding;intellect", + "romanization": "Verstand", + "example_sentence_native": "Er hat einen scharfen Verstand.", + "example_sentence_english": "He has a sharp intellect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1920 + }, + { + "word": "Weltkrieg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "world war", + "romanization": "Weltkrieg", + "example_sentence_native": "Der Erste Weltkrieg begann 1914.", + "example_sentence_english": "The First World War began in 1914.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1921 + }, + { + "word": "Air", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "air;atmosphere", + "romanization": "Air", + "example_sentence_native": "Die Band hatte eine coole Air auf der Bühne.", + "example_sentence_english": "The band had a cool air on stage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1922 + }, + { + "word": "Arbeiter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worker", + "romanization": "Arbeiter", + "example_sentence_native": "Der Arbeiter repariert die Maschine.", + "example_sentence_english": "The worker is repairing the machine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1924 + }, + { + "word": "beschliessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decide;to resolve", + "romanization": "beschliessen", + "example_sentence_native": "Wir müssen eine Entscheidung beschliessen.", + "example_sentence_english": "We must make a decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1926 + }, + { + "word": "Botschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "message;embassy", + "romanization": "Botschaft", + "example_sentence_native": "Er arbeitet in der deutschen Botschaft.", + "example_sentence_english": "He works at the German embassy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1927 + }, + { + "word": "Bundeswehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "German Armed Forces", + "romanization": "Bundeswehr", + "example_sentence_native": "Die Bundeswehr ist die Armee Deutschlands.", + "example_sentence_english": "The Bundeswehr is Germany's army.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1928 + }, + { + "word": "einerseits", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on the one hand", + "romanization": "einerseits", + "example_sentence_native": "Einerseits ist es schön, andererseits sehr teuer.", + "example_sentence_english": "On the one hand, it's nice, on the other hand, very expensive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1930 + }, + { + "word": "eventuell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibly;perhaps", + "romanization": "eventuell", + "example_sentence_native": "Eventuell komme ich später.", + "example_sentence_english": "Possibly I will come later.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1931 + }, + { + "word": "Fahrrad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bicycle", + "romanization": "Fahrrad", + "example_sentence_native": "Ich fahre mit dem Fahrrad zur Arbeit.", + "example_sentence_english": "I ride my bicycle to work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1932 + }, + { + "word": "Festival", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festival", + "romanization": "Festival", + "example_sentence_native": "Wir gehen dieses Wochenende auf ein Musikfestival.", + "example_sentence_english": "We are going to a music festival this weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1933 + }, + { + "word": "ficken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fuck", + "romanization": "ficken", + "example_sentence_native": "Er hat die ganze Nacht gefickt.", + "example_sentence_english": "He fucked all night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1934 + }, + { + "word": "Gelände", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrain;grounds", + "romanization": "Gelände", + "example_sentence_native": "Das ist ein schwieriges Gelände für Wanderer.", + "example_sentence_english": "This is difficult terrain for hikers.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1935 + }, + { + "word": "generell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generally;in general", + "romanization": "generell", + "example_sentence_native": "Generell stimme ich dir zu.", + "example_sentence_english": "Generally, I agree with you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1936 + }, + { + "word": "Geschwindigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed", + "romanization": "Geschwindigkeit", + "example_sentence_native": "Die Geschwindigkeit des Autos war zu hoch.", + "example_sentence_english": "The speed of the car was too high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1938 + }, + { + "word": "gucken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to look;to watch (informal)", + "romanization": "gucken", + "example_sentence_native": "Lass uns einen Film gucken.", + "example_sentence_english": "Let's watch a movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1939 + }, + { + "word": "Herkunft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "origin", + "romanization": "Herkunft", + "example_sentence_native": "Ihre Herkunft ist unbekannt.", + "example_sentence_english": "Her origin is unknown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1940 + }, + { + "word": "Hochzeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wedding", + "romanization": "Hochzeit", + "example_sentence_native": "Die Hochzeit war wunderschön.", + "example_sentence_english": "The wedding was beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1941 + }, + { + "word": "Humor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humor", + "romanization": "Humor", + "example_sentence_native": "Er hat einen guten Sinn für Humor.", + "example_sentence_english": "He has a good sense of humor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1943 + }, + { + "word": "Initiative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiative", + "romanization": "Initiative", + "example_sentence_native": "Sie ergriff die Initiative.", + "example_sentence_english": "She took the initiative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1944 + }, + { + "word": "Kanal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canal;channel", + "romanization": "Kanal", + "example_sentence_native": "Der Kanal verbindet die beiden Seen.", + "example_sentence_english": "The canal connects the two lakes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1945 + }, + { + "word": "Kuchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cake", + "romanization": "Kuchen", + "example_sentence_native": "Ich möchte ein Stück Kuchen.", + "example_sentence_english": "I would like a piece of cake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1946 + }, + { + "word": "lächeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smile", + "romanization": "lächeln", + "example_sentence_native": "Sie musste lächeln.", + "example_sentence_english": "She had to smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1947 + }, + { + "word": "Marketing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing", + "romanization": "Marketing", + "example_sentence_native": "Das Marketing ist entscheidend für den Erfolg.", + "example_sentence_english": "Marketing is crucial for success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1948 + }, + { + "word": "produzieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce", + "romanization": "produzieren", + "example_sentence_native": "Die Fabrik produziert Autos.", + "example_sentence_english": "The factory produces cars.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1949 + }, + { + "word": "quasi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quasi;as if;virtually", + "romanization": "quasi", + "example_sentence_native": "Er ist quasi der Chef der Abteilung.", + "example_sentence_english": "He is virtually the head of the department.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1950 + }, + { + "word": "scheinbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apparently;seemingly", + "romanization": "scheinbar", + "example_sentence_native": "Scheinbar hat er die Nachricht nicht erhalten.", + "example_sentence_english": "Apparently, he did not receive the message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1951 + }, + { + "word": "Stellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position;stance", + "romanization": "Stellung", + "example_sentence_native": "Sie nahm Stellung zu den Vorwürfen.", + "example_sentence_english": "She took a stand on the accusations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1952 + }, + { + "word": "umfassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comprise;to include;to embrace", + "romanization": "umfassen", + "example_sentence_native": "Der Kurs wird viele Themen umfassen.", + "example_sentence_english": "The course will comprise many topics.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1955 + }, + { + "word": "Variante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variant;version", + "romanization": "Variante", + "example_sentence_native": "Es gibt mehrere Varianten dieser Geschichte.", + "example_sentence_english": "There are several variants of this story.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1956 + }, + { + "word": "verbessern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to improve;to correct", + "romanization": "verbessern", + "example_sentence_native": "Er möchte seine Deutschkenntnisse verbessern.", + "example_sentence_english": "He wants to improve his German skills.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1957 + }, + { + "word": "wachsen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to grow;to wax", + "romanization": "wachsen", + "example_sentence_native": "Die Pflanzen wachsen schnell im Frühling.", + "example_sentence_english": "The plants grow quickly in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1959 + }, + { + "word": "Zeitschrift", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magazine;journal", + "romanization": "Zeitschrift", + "example_sentence_native": "Ich lese gerne eine Zeitschrift am Wochenende.", + "example_sentence_english": "I like to read a magazine on the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1960 + }, + { + "word": "Augenblick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moment;instant", + "romanization": "Augenblick", + "example_sentence_native": "Einen Augenblick, bitte!", + "example_sentence_english": "One moment, please!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1961 + }, + { + "word": "belegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupy;prove;cover;enroll", + "romanization": "belegen", + "example_sentence_native": "Er konnte seine Behauptung mit Fakten belegen.", + "example_sentence_english": "He could prove his claim with facts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1962 + }, + { + "word": "Bord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shelf", + "romanization": "Bord", + "example_sentence_native": "Stell das Buch auf das Bord.", + "example_sentence_english": "Put the book on the shelf.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1963 + }, + { + "word": "Brauch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custom;tradition", + "romanization": "Brauch", + "example_sentence_native": "Es ist ein alter Brauch in dieser Region.", + "example_sentence_english": "It is an old custom in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1964 + }, + { + "word": "Community", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "community", + "romanization": "Community", + "example_sentence_native": "Die Online-Community ist sehr aktiv.", + "example_sentence_english": "The online community is very active.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1965 + }, + { + "word": "Frühjahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spring (season)", + "romanization": "Frühjahr", + "example_sentence_native": "Im Frühjahr blühen die Blumen.", + "example_sentence_english": "In spring, the flowers bloom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1968 + }, + { + "word": "genügend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sufficient;enough", + "romanization": "genügend", + "example_sentence_native": "Wir haben genügend Zeit.", + "example_sentence_english": "We have enough time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1969 + }, + { + "word": "Graf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "count (nobility)", + "romanization": "Graf", + "example_sentence_native": "Der Graf lebte in einem großen Schloss.", + "example_sentence_english": "The count lived in a large castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1970 + }, + { + "word": "hinein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "into;in (direction)", + "romanization": "hinein", + "example_sentence_native": "Er ging in das Zimmer hinein.", + "example_sentence_english": "He went into the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 1971 + }, + { + "word": "Kombination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combination", + "romanization": "Kombination", + "example_sentence_native": "Das ist eine interessante Kombination von Farben.", + "example_sentence_english": "That is an interesting combination of colors.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1973 + }, + { + "word": "maximal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maximum;maximal", + "romanization": "maximal", + "example_sentence_native": "Die maximale Geschwindigkeit beträgt 120 km/h.", + "example_sentence_english": "The maximum speed is 120 km/h.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1974 + }, + { + "word": "Motor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "engine;motor", + "romanization": "Motor", + "example_sentence_native": "Der Motor des Autos ist kaputt.", + "example_sentence_english": "The car's engine is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1975 + }, + { + "word": "national", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national", + "romanization": "national", + "example_sentence_native": "Das ist ein nationales Denkmal.", + "example_sentence_english": "That is a national monument.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1976 + }, + { + "word": "Niederlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeat", + "romanization": "Niederlage", + "example_sentence_native": "Die Mannschaft musste eine bittere Niederlage einstecken.", + "example_sentence_english": "The team had to suffer a bitter defeat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1977 + }, + { + "word": "Ohr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ear", + "romanization": "Ohr", + "example_sentence_native": "Er hat große Ohren.", + "example_sentence_english": "He has big ears.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1978 + }, + { + "word": "Papst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pope", + "romanization": "Papst", + "example_sentence_native": "Der Papst besuchte die Stadt.", + "example_sentence_english": "The Pope visited the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1979 + }, + { + "word": "prüfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check;to test", + "romanization": "prüfen", + "example_sentence_native": "Wir müssen die Qualität prüfen.", + "example_sentence_english": "We have to check the quality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1980 + }, + { + "word": "Rand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge;rim;border", + "romanization": "Rand", + "example_sentence_native": "Der Rand des Tisches ist scharf.", + "example_sentence_english": "The edge of the table is sharp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1981 + }, + { + "word": "sammeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to collect;to gather", + "romanization": "sammeln", + "example_sentence_native": "Sie sammelt alte Münzen.", + "example_sentence_english": "She collects old coins.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1982 + }, + { + "word": "schmecken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to taste", + "romanization": "schmecken", + "example_sentence_native": "Das Essen schmeckt gut.", + "example_sentence_english": "The food tastes good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1983 + }, + { + "word": "Server", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "server", + "romanization": "Server", + "example_sentence_native": "Der Server ist heute langsam.", + "example_sentence_english": "The server is slow today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1985 + }, + { + "word": "Stadion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stadium", + "romanization": "Stadion", + "example_sentence_native": "Das Stadion war voll.", + "example_sentence_english": "The stadium was full.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1986 + }, + { + "word": "Station", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "station;stop;ward", + "romanization": "Station", + "example_sentence_native": "Die nächste Station ist der Hauptbahnhof.", + "example_sentence_english": "The next station is the main train station.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1987 + }, + { + "word": "Verbot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prohibition;ban", + "romanization": "Verbot", + "example_sentence_native": "Es gibt ein Verbot für das Rauchen hier.", + "example_sentence_english": "There is a ban on smoking here.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1988 + }, + { + "word": "Verhandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiation;trial", + "romanization": "Verhandlung", + "example_sentence_native": "Die Verhandlungen dauerten den ganzen Tag.", + "example_sentence_english": "The negotiations lasted all day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1989 + }, + { + "word": "Vorstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "board (of directors)", + "romanization": "Vorstand", + "example_sentence_native": "Der Vorstand traf eine wichtige Entscheidung.", + "example_sentence_english": "The board made an important decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1990 + }, + { + "word": "Vortrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lecture;presentation", + "romanization": "Vortrag", + "example_sentence_native": "Sie hielt einen interessanten Vortrag über Geschichte.", + "example_sentence_english": "She gave an interesting lecture on history.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1991 + }, + { + "word": "Absicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intention;purpose", + "romanization": "Absicht", + "example_sentence_native": "Es war nicht meine Absicht, dich zu verletzen.", + "example_sentence_english": "It was not my intention to hurt you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1993 + }, + { + "word": "aufstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to set up;to put up", + "romanization": "aufstellen", + "example_sentence_native": "Wir müssen das Zelt aufstellen.", + "example_sentence_english": "We need to set up the tent.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1994 + }, + { + "word": "Aufklärung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlightenment;clarification", + "romanization": "Aufklärung", + "example_sentence_native": "Die Aufklärung des Falls dauerte lange.", + "example_sentence_english": "The clarification of the case took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1995 + }, + { + "word": "Begründung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justification;reason", + "romanization": "Begründung", + "example_sentence_native": "Er gab keine Begründung für seine Entscheidung.", + "example_sentence_english": "He gave no justification for his decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1996 + }, + { + "word": "best", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "best", + "romanization": "best", + "example_sentence_native": "Das ist der beste Kuchen, den ich je gegessen habe.", + "example_sentence_english": "That is the best cake I have ever eaten.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 1997 + }, + { + "word": "Bezeichnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designation;term", + "romanization": "Bezeichnung", + "example_sentence_native": "Die genaue Bezeichnung des Produkts ist wichtig.", + "example_sentence_english": "The exact designation of the product is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 1998 + }, + { + "word": "beziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refer to;to obtain", + "romanization": "beziehen", + "example_sentence_native": "Der Artikel bezieht sich auf aktuelle Ereignisse.", + "example_sentence_english": "The article refers to current events.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 1999 + }, + { + "word": "blöd", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stupid;silly", + "romanization": "blöd", + "example_sentence_native": "Das ist eine blöde Idee.", + "example_sentence_english": "That is a stupid idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2001 + }, + { + "word": "Bock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "male goat;(colloquial) desire;urge", + "romanization": "Bock", + "example_sentence_native": "Ich habe Bock auf Pizza.", + "example_sentence_english": "I feel like having pizza.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2002 + }, + { + "word": "Christ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christian", + "romanization": "Christ", + "example_sentence_native": "Er ist ein gläubiger Christ.", + "example_sentence_english": "He is a devout Christian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2003 + }, + { + "word": "Direktor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "director", + "romanization": "Direktor", + "example_sentence_native": "Der Direktor hat die Entscheidung getroffen.", + "example_sentence_english": "The director made the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2004 + }, + { + "word": "einführen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to introduce;to import", + "romanization": "einführen", + "example_sentence_native": "Sie wollen ein neues Produkt einführen.", + "example_sentence_english": "They want to introduce a new product.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2005 + }, + { + "word": "Eintritt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "entry;admission", + "romanization": "Eintritt", + "example_sentence_native": "Der Eintritt ist frei.", + "example_sentence_english": "Admission is free.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2006 + }, + { + "word": "existieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exist", + "romanization": "existieren", + "example_sentence_native": "Dinosaurier existieren heute nicht mehr.", + "example_sentence_english": "Dinosaurs no longer exist today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2007 + }, + { + "word": "Flugzeug", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airplane", + "romanization": "Flugzeug", + "example_sentence_native": "Das Flugzeug landet in zehn Minuten.", + "example_sentence_english": "The airplane lands in ten minutes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2008 + }, + { + "word": "Führer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leader;guide", + "romanization": "Führer", + "example_sentence_native": "Der Bergführer zeigte uns den Weg.", + "example_sentence_english": "The mountain guide showed us the way.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2010 + }, + { + "word": "Gefängnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prison;jail", + "romanization": "Gefängnis", + "example_sentence_native": "Er verbrachte zehn Jahre im Gefängnis.", + "example_sentence_english": "He spent ten years in prison.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2011 + }, + { + "word": "gelb", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yellow", + "romanization": "gelb", + "example_sentence_native": "Die Sonne ist gelb.", + "example_sentence_english": "The sun is yellow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2012 + }, + { + "word": "Hals", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neck;throat", + "romanization": "Hals", + "example_sentence_native": "Mein Hals tut weh.", + "example_sentence_english": "My throat hurts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2014 + }, + { + "word": "Hunger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hunger", + "romanization": "Hunger", + "example_sentence_native": "Ich habe großen Hunger.", + "example_sentence_english": "I am very hungry.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2015 + }, + { + "word": "klassisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classic;classical", + "romanization": "klassisch", + "example_sentence_native": "Sie mag klassische Musik.", + "example_sentence_english": "She likes classical music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2017 + }, + { + "word": "Kleidung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clothing;clothes", + "romanization": "Kleidung", + "example_sentence_native": "Sie kaufte neue Kleidung.", + "example_sentence_english": "She bought new clothes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2018 + }, + { + "word": "Königin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "queen", + "romanization": "Königin", + "example_sentence_native": "Die Königin besuchte die Stadt.", + "example_sentence_english": "The queen visited the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2019 + }, + { + "word": "Landschaft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "landscape", + "romanization": "Landschaft", + "example_sentence_native": "Die Landschaft hier ist wunderschön.", + "example_sentence_english": "The landscape here is beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2020 + }, + { + "word": "Lehre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teaching;doctrine;apprenticeship", + "romanization": "Lehre", + "example_sentence_native": "Er hat eine Lehre als Mechaniker gemacht.", + "example_sentence_english": "He did an apprenticeship as a mechanic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2021 + }, + { + "word": "Life", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life (loanword)", + "romanization": "Life", + "example_sentence_native": "Viele junge Leute teilen ihr ganzes Life online.", + "example_sentence_english": "Many young people share their whole life online.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2022 + }, + { + "word": "Lkw", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truck;lorry", + "romanization": "Lkw", + "example_sentence_native": "Der Lkw transportiert schwere Güter.", + "example_sentence_english": "The truck transports heavy goods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2023 + }, + { + "word": "Love", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "love (loanword)", + "romanization": "Love", + "example_sentence_native": "Sie sendet viel Love an ihre Fans.", + "example_sentence_english": "She sends a lot of love to her fans.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2024 + }, + { + "word": "Management", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "management", + "romanization": "Management", + "example_sentence_native": "Das Management hat eine neue Strategie vorgestellt.", + "example_sentence_english": "The management presented a new strategy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2025 + }, + { + "word": "Menschheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanity;mankind", + "romanization": "Menschheit", + "example_sentence_native": "Der Schutz der Umwelt ist wichtig für die Menschheit.", + "example_sentence_english": "Protecting the environment is important for humanity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2026 + }, + { + "word": "ordentlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tidy;orderly;considerable", + "romanization": "ordentlich", + "example_sentence_native": "Sein Zimmer ist immer sehr ordentlich.", + "example_sentence_english": "His room is always very tidy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2027 + }, + { + "word": "Papa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dad;daddy", + "romanization": "Papa", + "example_sentence_native": "Mein Papa liest mir jeden Abend eine Geschichte vor.", + "example_sentence_english": "My dad reads me a story every evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2028 + }, + { + "word": "sauber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clean", + "romanization": "sauber", + "example_sentence_native": "Die Küche ist jetzt sauber.", + "example_sentence_english": "The kitchen is clean now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2029 + }, + { + "word": "sichern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to secure;to save", + "romanization": "sichern", + "example_sentence_native": "Bitte sichern Sie Ihre Daten regelmäßig.", + "example_sentence_english": "Please save your data regularly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2030 + }, + { + "word": "Tat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deed;act", + "romanization": "Tat", + "example_sentence_native": "Das war eine gute Tat.", + "example_sentence_english": "That was a good deed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2031 + }, + { + "word": "Trend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trend", + "romanization": "Trend", + "example_sentence_native": "Der neue Trend ist sehr beliebt.", + "example_sentence_english": "The new trend is very popular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2032 + }, + { + "word": "Verfassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constitution;state (of mind;health)", + "romanization": "Verfassung", + "example_sentence_native": "Die Verfassung schützt die Grundrechte.", + "example_sentence_english": "The constitution protects fundamental rights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2033 + }, + { + "word": "verschwinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappear", + "romanization": "verschwinden", + "example_sentence_native": "Der Schlüssel ist verschwunden.", + "example_sentence_english": "The key has disappeared.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2034 + }, + { + "word": "Viertel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quarter;district", + "romanization": "Viertel", + "example_sentence_native": "Ich wohne im alten Viertel der Stadt.", + "example_sentence_english": "I live in the old quarter of the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2035 + }, + { + "word": "viert", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fourth", + "romanization": "viert", + "example_sentence_native": "Das ist der vierte Tag.", + "example_sentence_english": "This is the fourth day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 2036 + }, + { + "word": "Vorbereitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation", + "romanization": "Vorbereitung", + "example_sentence_native": "Die Vorbereitung auf die Prüfung war lang.", + "example_sentence_english": "The preparation for the exam was long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2037 + }, + { + "word": "wach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "awake", + "romanization": "wach", + "example_sentence_native": "Ich bin noch wach.", + "example_sentence_english": "I am still awake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2038 + }, + { + "word": "wunderbar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wonderful;marvelous", + "romanization": "wunderbar", + "example_sentence_native": "Das Wetter ist heute wunderbar.", + "example_sentence_english": "The weather is wonderful today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2039 + }, + { + "word": "Zufall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coincidence", + "romanization": "Zufall", + "example_sentence_native": "Das war reiner Zufall.", + "example_sentence_english": "That was pure coincidence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2040 + }, + { + "word": "Aktivität", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "activity", + "romanization": "Aktivität", + "example_sentence_native": "Wir planen viele Aktivitäten für das Wochenende.", + "example_sentence_english": "We are planning many activities for the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2041 + }, + { + "word": "Bedenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concern", + "romanization": "Bedenken", + "example_sentence_native": "Ich habe Bedenken wegen des Plans.", + "example_sentence_english": "I have concerns about the plan.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2042 + }, + { + "word": "Bescheid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "information", + "romanization": "Bescheid", + "example_sentence_native": "Gib mir bitte Bescheid, wenn du fertig bist.", + "example_sentence_english": "Please let me know when you are ready.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2043 + }, + { + "word": "besetzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to occupy", + "romanization": "besetzen", + "example_sentence_native": "Die Stelle ist bereits besetzt.", + "example_sentence_english": "The position is already filled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2044 + }, + { + "word": "Bezirk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "district", + "romanization": "Bezirk", + "example_sentence_native": "Er wohnt im dritten Bezirk.", + "example_sentence_english": "He lives in the third district.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2045 + }, + { + "word": "Brand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire", + "romanization": "Brand", + "example_sentence_native": "Die Feuerwehr löschte den Brand schnell.", + "example_sentence_english": "The fire department quickly extinguished the fire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2046 + }, + { + "word": "Business", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business", + "romanization": "Business", + "example_sentence_native": "Er ist im Business sehr erfolgreich.", + "example_sentence_english": "He is very successful in business.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2047 + }, + { + "word": "dahinter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "behind it", + "romanization": "dahinter", + "example_sentence_native": "Der Ball ist hinter dem Baum, ich sehe ihn dahinter.", + "example_sentence_english": "The ball is behind the tree, I see it behind it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2049 + }, + { + "word": "drüber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "over it;about it", + "romanization": "drüber", + "example_sentence_native": "Wir haben lange drüber gesprochen.", + "example_sentence_english": "We talked about it for a long time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2051 + }, + { + "word": "drücken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to press;to push", + "romanization": "drücken", + "example_sentence_native": "Bitte drücken Sie den Knopf.", + "example_sentence_english": "Please press the button.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2052 + }, + { + "word": "Engagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commitment;engagement", + "romanization": "Engagement", + "example_sentence_native": "Sein Engagement für die Umwelt ist bewundernswert.", + "example_sentence_english": "His commitment to the environment is admirable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2053 + }, + { + "word": "enttäuschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappoint", + "romanization": "enttäuschen", + "example_sentence_native": "Ich möchte dich nicht enttäuschen.", + "example_sentence_english": "I don't want to disappoint you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2054 + }, + { + "word": "greifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grasp;to seize", + "romanization": "greifen", + "example_sentence_native": "Er greift nach dem Buch.", + "example_sentence_english": "He reaches for the book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2056 + }, + { + "word": "Hölle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hell", + "romanization": "Hölle", + "example_sentence_native": "Die Hölle ist ein Ort des Leidens.", + "example_sentence_english": "Hell is a place of suffering.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2058 + }, + { + "word": "Koch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cook (person)", + "romanization": "Koch", + "example_sentence_native": "Der Koch bereitet das Essen zu.", + "example_sentence_english": "The cook prepares the food.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2060 + }, + { + "word": "Landwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agriculture;farming", + "romanization": "Landwirtschaft", + "example_sentence_native": "Die Landwirtschaft ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "Agriculture is an important economic sector.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2061 + }, + { + "word": "Last", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "load;burden", + "romanization": "Last", + "example_sentence_native": "Er trug eine schwere Last auf seinem Rücken.", + "example_sentence_english": "He carried a heavy load on his back.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2062 + }, + { + "word": "leise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiet;soft (sound)", + "romanization": "leise", + "example_sentence_native": "Bitte sprich leise.", + "example_sentence_english": "Please speak quietly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2063 + }, + { + "word": "locker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loose;relaxed;casual", + "romanization": "locker", + "example_sentence_native": "Die Schraube ist locker.", + "example_sentence_english": "The screw is loose.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2064 + }, + { + "word": "merken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to notice;to remember", + "romanization": "merken", + "example_sentence_native": "Ich muss mir das merken.", + "example_sentence_english": "I have to remember that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2067 + }, + { + "word": "Schnee", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "snow", + "romanization": "Schnee", + "example_sentence_native": "Der Schnee fällt leise.", + "example_sentence_english": "The snow falls quietly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2070 + }, + { + "word": "sichtbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visible", + "romanization": "sichtbar", + "example_sentence_native": "Der Berg ist von hier aus sichtbar.", + "example_sentence_english": "The mountain is visible from here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2071 + }, + { + "word": "Stoff", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fabric;material;subject matter", + "romanization": "Stoff", + "example_sentence_native": "Dieser Stoff fühlt sich weich an.", + "example_sentence_english": "This fabric feels soft.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2072 + }, + { + "word": "Studio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studio", + "romanization": "Studio", + "example_sentence_native": "Das Studio ist sehr modern eingerichtet.", + "example_sentence_english": "The studio is furnished very modernly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2073 + }, + { + "word": "Summe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sum;total", + "romanization": "Summe", + "example_sentence_native": "Die Summe aller Ausgaben ist hoch.", + "example_sentence_english": "The sum of all expenses is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2074 + }, + { + "word": "Tee", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tea", + "romanization": "Tee", + "example_sentence_native": "Ich trinke gerne warmen Tee.", + "example_sentence_english": "I like to drink warm tea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2075 + }, + { + "word": "Therapie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "therapy", + "romanization": "Therapie", + "example_sentence_native": "Sie beginnt nächste Woche mit der Therapie.", + "example_sentence_english": "She starts therapy next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2076 + }, + { + "word": "Truppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troop;squad;company", + "romanization": "Truppe", + "example_sentence_native": "Die Truppe marschierte durch den Wald.", + "example_sentence_english": "The troop marched through the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2077 + }, + { + "word": "Umsetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implementation;realization", + "romanization": "Umsetzung", + "example_sentence_native": "Die Umsetzung des Plans war erfolgreich.", + "example_sentence_english": "The implementation of the plan was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2078 + }, + { + "word": "umso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all the more;so much the", + "romanization": "umso", + "example_sentence_native": "Je mehr du übst, umso besser wirst du.", + "example_sentence_english": "The more you practice, the better you will become.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2079 + }, + { + "word": "Umstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circumstance;condition", + "romanization": "Umstand", + "example_sentence_native": "Unter diesen Umständen können wir nicht arbeiten.", + "example_sentence_english": "Under these circumstances, we cannot work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2080 + }, + { + "word": "Verband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "association;bandage", + "romanization": "Verband", + "example_sentence_native": "Der Sportverband organisiert das Turnier.", + "example_sentence_english": "The sports association organizes the tournament.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2081 + }, + { + "word": "Vogel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bird", + "romanization": "Vogel", + "example_sentence_native": "Ein kleiner Vogel sitzt auf dem Ast.", + "example_sentence_english": "A small bird is sitting on the branch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2082 + }, + { + "word": "weitgehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "largely;extensively", + "romanization": "weitgehend", + "example_sentence_native": "Das Problem ist weitgehend gelöst.", + "example_sentence_english": "The problem is largely solved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2083 + }, + { + "word": "wissenschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scientific", + "romanization": "wissenschaftlich", + "example_sentence_native": "Er hat eine wissenschaftliche Arbeit geschrieben.", + "example_sentence_english": "He wrote a scientific paper.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2085 + }, + { + "word": "zunehmend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increasingly", + "romanization": "zunehmend", + "example_sentence_native": "Die Temperaturen steigen zunehmend.", + "example_sentence_english": "The temperatures are increasingly rising.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2086 + }, + { + "word": "Öl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oil", + "romanization": "Öl", + "example_sentence_native": "Wir brauchen Öl zum Kochen.", + "example_sentence_english": "We need oil for cooking.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2087 + }, + { + "word": "anschauen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to look at;to watch", + "romanization": "anschauen", + "example_sentence_native": "Wir wollen uns den Film anschauen.", + "example_sentence_english": "We want to watch the movie.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2088 + }, + { + "word": "bayerisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bavarian", + "romanization": "bayerisch", + "example_sentence_native": "Er spricht einen bayerischen Dialekt.", + "example_sentence_english": "He speaks a Bavarian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2089 + }, + { + "word": "beantworten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to answer", + "romanization": "beantworten", + "example_sentence_native": "Er muss die Frage beantworten.", + "example_sentence_english": "He has to answer the question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2090 + }, + { + "word": "Betrug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraud;deception", + "romanization": "Betrug", + "example_sentence_native": "Der Betrug wurde aufgedeckt.", + "example_sentence_english": "The fraud was uncovered.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2091 + }, + { + "word": "dankbar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grateful", + "romanization": "dankbar", + "example_sentence_native": "Ich bin dir sehr dankbar.", + "example_sentence_english": "I am very grateful to you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2092 + }, + { + "word": "dicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dense;tight;close", + "romanization": "dicht", + "example_sentence_native": "Die Tür ist dicht.", + "example_sentence_english": "The door is tight/sealed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2093 + }, + { + "word": "doppelt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "double;twofold", + "romanization": "doppelt", + "example_sentence_native": "Ich habe eine doppelte Portion bestellt.", + "example_sentence_english": "I ordered a double portion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2094 + }, + { + "word": "Drittel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "third (fraction)", + "romanization": "Drittel", + "example_sentence_native": "Ein Drittel der Bevölkerung ist betroffen.", + "example_sentence_english": "One third of the population is affected.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2095 + }, + { + "word": "Fluss", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "river", + "romanization": "Fluss", + "example_sentence_native": "Der Rhein ist ein langer Fluss.", + "example_sentence_english": "The Rhine is a long river.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2096 + }, + { + "word": "freundlich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "friendly;kind", + "romanization": "freundlich", + "example_sentence_native": "Sie ist eine sehr freundliche Person.", + "example_sentence_english": "She is a very friendly person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2097 + }, + { + "word": "Freundschaft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "friendship", + "romanization": "Freundschaft", + "example_sentence_native": "Ihre Freundschaft ist sehr stark.", + "example_sentence_english": "Their friendship is very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2098 + }, + { + "word": "Gestaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "design;shaping;formation", + "romanization": "Gestaltung", + "example_sentence_native": "Die Gestaltung des Gartens war sehr kreativ.", + "example_sentence_english": "The design of the garden was very creative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2100 + }, + { + "word": "zwingen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to force;to compel", + "romanization": "zwingen", + "example_sentence_native": "Man kann niemanden zum Glück zwingen.", + "example_sentence_english": "You can't force anyone to be happy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2101 + }, + { + "word": "günstig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "favorable;cheap;affordable", + "romanization": "günstig", + "example_sentence_native": "Das Angebot ist sehr günstig.", + "example_sentence_english": "The offer is very favorable/cheap.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2102 + }, + { + "word": "Heim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home;abode", + "romanization": "Heim", + "example_sentence_native": "Er ist nach Hause gegangen, um sein Heim zu finden.", + "example_sentence_english": "He went home to find his abode.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2103 + }, + { + "word": "Herstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production;manufacturing", + "romanization": "Herstellung", + "example_sentence_native": "Die Herstellung dieses Produkts ist sehr komplex.", + "example_sentence_english": "The production of this product is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2104 + }, + { + "word": "Hose", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "trousers;pants", + "romanization": "Hose", + "example_sentence_native": "Ich brauche eine neue Hose.", + "example_sentence_english": "I need new trousers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2106 + }, + { + "word": "inklusive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inclusive;including", + "romanization": "inklusive", + "example_sentence_native": "Der Preis ist inklusive Mehrwertsteuer.", + "example_sentence_english": "The price is including VAT.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2107 + }, + { + "word": "Jahrzehnt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decade", + "romanization": "Jahrzehnt", + "example_sentence_native": "Das letzte Jahrzehnt war voller Veränderungen.", + "example_sentence_english": "The last decade was full of changes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2109 + }, + { + "word": "Kapitel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chapter", + "romanization": "Kapitel", + "example_sentence_native": "Das erste Kapitel des Buches ist sehr interessant.", + "example_sentence_english": "The first chapter of the book is very interesting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2110 + }, + { + "word": "klappen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to work out;to fold", + "romanization": "klappen", + "example_sentence_native": "Ich hoffe, dass alles gut klappt.", + "example_sentence_english": "I hope that everything works out well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2111 + }, + { + "word": "Klima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "climate", + "romanization": "Klima", + "example_sentence_native": "Das Klima in dieser Region ist sehr angenehm.", + "example_sentence_english": "The climate in this region is very pleasant.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2112 + }, + { + "word": "Klinik", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clinic;hospital", + "romanization": "Klinik", + "example_sentence_native": "Sie musste in die Klinik gehen.", + "example_sentence_english": "She had to go to the clinic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2113 + }, + { + "word": "Konto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "account", + "romanization": "Konto", + "example_sentence_native": "Ich muss mein Bankkonto überprüfen.", + "example_sentence_english": "I need to check my bank account.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2114 + }, + { + "word": "lauter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pure;sheer;nothing but", + "romanization": "lauter", + "example_sentence_native": "Das war lauter Unsinn.", + "example_sentence_english": "That was pure nonsense.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2115 + }, + { + "word": "Motto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motto;slogan", + "romanization": "Motto", + "example_sentence_native": "Sein Lebensmotto ist \"Lebe jeden Tag\".", + "example_sentence_english": "His life motto is \"Live every day\".", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2117 + }, + { + "word": "Nachfrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demand;inquiry", + "romanization": "Nachfrage", + "example_sentence_native": "Die Nachfrage nach diesem Produkt ist sehr hoch.", + "example_sentence_english": "The demand for this product is very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2118 + }, + { + "word": "Prinz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prince", + "romanization": "Prinz", + "example_sentence_native": "Der Prinz rettete die Prinzessin.", + "example_sentence_english": "The prince rescued the princess.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2119 + }, + { + "word": "Schrift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing;script;font", + "romanization": "Schrift", + "example_sentence_native": "Die alte Schrift war schwer zu lesen.", + "example_sentence_english": "The old script was difficult to read.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2120 + }, + { + "word": "still", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiet;still", + "romanization": "still", + "example_sentence_native": "Bitte sei still.", + "example_sentence_english": "Please be quiet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2122 + }, + { + "word": "Strand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beach", + "romanization": "Strand", + "example_sentence_native": "Wir gehen zum Strand.", + "example_sentence_english": "We are going to the beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2123 + }, + { + "word": "Strategie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strategy", + "romanization": "Strategie", + "example_sentence_native": "Das ist eine gute Strategie.", + "example_sentence_english": "That is a good strategy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2124 + }, + { + "word": "Struktur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "structure", + "romanization": "Struktur", + "example_sentence_native": "Die Struktur des Gebäudes ist sehr stabil.", + "example_sentence_english": "The structure of the building is very stable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2125 + }, + { + "word": "Stufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "step;level;stage", + "romanization": "Stufe", + "example_sentence_native": "Er nahm die erste Stufe der Treppe.", + "example_sentence_english": "He took the first step of the stairs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2126 + }, + { + "word": "Stärke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strength;starch", + "romanization": "Stärke", + "example_sentence_native": "Ihre größte Stärke ist ihre Entschlossenheit.", + "example_sentence_english": "Her greatest strength is her determination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2127 + }, + { + "word": "untersuchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to investigate;to examine", + "romanization": "untersuchen", + "example_sentence_native": "Der Arzt wird den Patienten untersuchen.", + "example_sentence_english": "The doctor will examine the patient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2128 + }, + { + "word": "verfügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have at one's disposal;to dispose of", + "romanization": "verfügen", + "example_sentence_native": "Sie verfügen über große Erfahrung.", + "example_sentence_english": "They have great experience at their disposal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2129 + }, + { + "word": "vergleichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compare", + "romanization": "vergleichen", + "example_sentence_native": "Man kann die Preise online vergleichen.", + "example_sentence_english": "You can compare the prices online.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2130 + }, + { + "word": "Vermögen", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortune;assets;ability", + "romanization": "Vermögen", + "example_sentence_native": "Er hat ein großes Vermögen geerbt.", + "example_sentence_english": "He inherited a large fortune.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 2131 + }, + { + "word": "verursachen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause", + "romanization": "verursachen", + "example_sentence_native": "Der Unfall wurde durch Glatteis verursacht.", + "example_sentence_english": "The accident was caused by black ice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2132 + }, + { + "word": "Voraussetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prerequisite", + "romanization": "Voraussetzung", + "example_sentence_native": "Gute Sprachkenntnisse sind eine wichtige Voraussetzung für diesen Job.", + "example_sentence_english": "Good language skills are an important prerequisite for this job.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2133 + }, + { + "word": "vorn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in front", + "romanization": "vorn", + "example_sentence_native": "Er sitzt ganz vorn im Bus.", + "example_sentence_english": "He sits right at the front of the bus.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2135 + }, + { + "word": "vorsichtig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "careful", + "romanization": "vorsichtig", + "example_sentence_native": "Sei vorsichtig, die Straße ist glatt.", + "example_sentence_english": "Be careful, the road is slippery.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2136 + }, + { + "word": "zuständig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "responsible", + "romanization": "zuständig", + "example_sentence_native": "Wer ist für dieses Projekt zuständig?", + "example_sentence_english": "Who is responsible for this project?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2141 + }, + { + "word": "Überraschung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surprise", + "romanization": "Überraschung", + "example_sentence_native": "Das war eine große Überraschung für mich.", + "example_sentence_english": "That was a big surprise for me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2142 + }, + { + "word": "Anbieter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "provider", + "romanization": "Anbieter", + "example_sentence_native": "Welcher Anbieter hat das beste Angebot?", + "example_sentence_english": "Which provider has the best offer?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2143 + }, + { + "word": "Anforderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requirement", + "romanization": "Anforderung", + "example_sentence_native": "Die neuen Anforderungen sind sehr hoch.", + "example_sentence_english": "The new requirements are very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2144 + }, + { + "word": "Anfrage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inquiry", + "romanization": "Anfrage", + "example_sentence_native": "Ich habe eine Anfrage an den Kundendienst geschickt.", + "example_sentence_english": "I sent an inquiry to customer service.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2145 + }, + { + "word": "angeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to state", + "romanization": "angeben", + "example_sentence_native": "Bitte geben Sie Ihr Geburtsdatum an.", + "example_sentence_english": "Please state your date of birth.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2146 + }, + { + "word": "ausdrücklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressly", + "romanization": "ausdrücklich", + "example_sentence_native": "Er hat ausdrücklich gesagt, dass wir warten sollen.", + "example_sentence_english": "He expressly said that we should wait.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2147 + }, + { + "word": "Autobahn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "highway", + "romanization": "Autobahn", + "example_sentence_native": "Auf der Autobahn gibt es oft Stau.", + "example_sentence_english": "There is often traffic jam on the highway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2148 + }, + { + "word": "Bauer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farmer", + "romanization": "Bauer", + "example_sentence_native": "Der Bauer arbeitet auf dem Feld.", + "example_sentence_english": "The farmer works in the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2149 + }, + { + "word": "bemerken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notice", + "romanization": "bemerken", + "example_sentence_native": "Ich bemerke, dass du müde bist.", + "example_sentence_english": "I notice that you are tired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2150 + }, + { + "word": "Blume", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "flower", + "romanization": "Blume", + "example_sentence_native": "Die Blume ist sehr schön.", + "example_sentence_english": "The flower is very beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2151 + }, + { + "word": "dunkel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dark", + "romanization": "dunkel", + "example_sentence_native": "Es ist schon dunkel draußen.", + "example_sentence_english": "It's already dark outside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2154 + }, + { + "word": "einrichten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to furnish", + "romanization": "einrichten", + "example_sentence_native": "Wir müssen die neue Wohnung einrichten.", + "example_sentence_english": "We need to furnish the new apartment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "richten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2155 + }, + { + "word": "fett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fat", + "romanization": "fett", + "example_sentence_native": "Das Essen ist zu fett.", + "example_sentence_english": "The food is too fat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2156 + }, + { + "word": "Forderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demand", + "romanization": "Forderung", + "example_sentence_native": "Die Gewerkschaft stellte eine neue Forderung.", + "example_sentence_english": "The union made a new demand.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2157 + }, + { + "word": "fangen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to catch", + "romanization": "fangen", + "example_sentence_native": "Der Hund fängt den Ball.", + "example_sentence_english": "The dog catches the ball.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2159 + }, + { + "word": "Fuß", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "foot", + "romanization": "Fuß", + "example_sentence_native": "Mein Fuß tut weh.", + "example_sentence_english": "My foot hurts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2160 + }, + { + "word": "Gegenwart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "present (time)", + "romanization": "Gegenwart", + "example_sentence_native": "Wir leben in der Gegenwart.", + "example_sentence_english": "We live in the present.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2161 + }, + { + "word": "Gehirn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brain", + "romanization": "Gehirn", + "example_sentence_native": "Das menschliche Gehirn ist komplex.", + "example_sentence_english": "The human brain is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2162 + }, + { + "word": "löschen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to delete;to extinguish", + "romanization": "löschen", + "example_sentence_native": "Bitte löschen Sie die Datei.", + "example_sentence_english": "Please delete the file.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2163 + }, + { + "word": "sperren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to block;to lock", + "romanization": "sperren", + "example_sentence_native": "Die Straße ist gesperrt.", + "example_sentence_english": "The road is blocked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2164 + }, + { + "word": "Gründung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founding;establishment", + "romanization": "Gründung", + "example_sentence_native": "Die Gründung der Firma war 1990.", + "example_sentence_english": "The founding of the company was in 1990.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2166 + }, + { + "word": "Gymnasium", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grammar school;high school (academic track)", + "romanization": "Gymnasium", + "example_sentence_native": "Mein Bruder geht aufs Gymnasium.", + "example_sentence_english": "My brother goes to grammar school.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2167 + }, + { + "word": "Handlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "action;plot (of a story);shop", + "romanization": "Handlung", + "example_sentence_native": "Die Handlung des Films war spannend.", + "example_sentence_english": "The plot of the film was exciting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2168 + }, + { + "word": "herzlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cordial;heartfelt", + "romanization": "herzlich", + "example_sentence_native": "Vielen herzlichen Dank!", + "example_sentence_english": "Many heartfelt thanks!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2169 + }, + { + "word": "Konkurrenz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition", + "romanization": "Konkurrenz", + "example_sentence_native": "Die Konkurrenz auf dem Markt ist sehr stark.", + "example_sentence_english": "The competition in the market is very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2171 + }, + { + "word": "kölner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cologne (adj.);from Cologne", + "romanization": "kölner", + "example_sentence_native": "Der Kölner Dom ist sehr beeindruckend.", + "example_sentence_english": "Cologne Cathedral is very impressive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2172 + }, + { + "word": "Loch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hole", + "romanization": "Loch", + "example_sentence_native": "Es gibt ein Loch in meiner Hose.", + "example_sentence_english": "There is a hole in my pants.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2173 + }, + { + "word": "Mauer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wall", + "romanization": "Mauer", + "example_sentence_native": "Die alte Mauer ist sehr hoch.", + "example_sentence_english": "The old wall is very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2176 + }, + { + "word": "nachdenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to think about;to reflect", + "romanization": "nachdenken", + "example_sentence_native": "Ich muss über deine Vorschläge nachdenken.", + "example_sentence_english": "I need to think about your suggestions.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "denken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2177 + }, + { + "word": "nieder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "low;down", + "romanization": "nieder", + "example_sentence_native": "Die Sonne steht schon sehr nieder.", + "example_sentence_english": "The sun is already very low.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2178 + }, + { + "word": "nochmals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "once more;again", + "romanization": "nochmals", + "example_sentence_native": "Könnten Sie das bitte nochmals erklären?", + "example_sentence_english": "Could you please explain that once more?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2179 + }, + { + "word": "parallel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parallel", + "romanization": "parallel", + "example_sentence_native": "Die beiden Linien verlaufen parallel.", + "example_sentence_english": "The two lines run parallel.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2180 + }, + { + "word": "Pferd", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "horse", + "romanization": "Pferd", + "example_sentence_native": "Das Pferd frisst Gras auf der Weide.", + "example_sentence_english": "The horse eats grass in the pasture.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2181 + }, + { + "word": "reagieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to react", + "romanization": "reagieren", + "example_sentence_native": "Wie wirst du auf diese Nachricht reagieren?", + "example_sentence_english": "How will you react to this news?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2182 + }, + { + "word": "scharf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sharp;spicy", + "romanization": "scharf", + "example_sentence_native": "Das Messer ist sehr scharf.", + "example_sentence_english": "The knife is very sharp.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2183 + }, + { + "word": "Schlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hit;blow;beat", + "romanization": "Schlag", + "example_sentence_native": "Er gab dem Ball einen kräftigen Schlag.", + "example_sentence_english": "He gave the ball a powerful hit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2184 + }, + { + "word": "schwach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weak", + "romanization": "schwach", + "example_sentence_native": "Nach der Krankheit fühlte er sich sehr schwach.", + "example_sentence_english": "After the illness, he felt very weak.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2185 + }, + { + "word": "schweigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be silent;to keep silent", + "romanization": "schweigen", + "example_sentence_native": "Er beschloss, zu schweigen und nichts zu sagen.", + "example_sentence_english": "He decided to be silent and say nothing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2186 + }, + { + "word": "spannend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exciting;thrilling", + "romanization": "spannend", + "example_sentence_native": "Das Buch ist sehr spannend.", + "example_sentence_english": "The book is very exciting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2187 + }, + { + "word": "Süd", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "South", + "romanization": "Süd", + "example_sentence_native": "Der Wind kommt aus Süd.", + "example_sentence_english": "The wind comes from the South.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2188 + }, + { + "word": "treiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drive;to float;to do (sports)", + "romanization": "treiben", + "example_sentence_native": "Das Holz treibt auf dem Wasser.", + "example_sentence_english": "The wood floats on the water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2189 + }, + { + "word": "Turnier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tournament", + "romanization": "Turnier", + "example_sentence_native": "Das Turnier war sehr spannend.", + "example_sentence_english": "The tournament was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2190 + }, + { + "word": "Vorbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "role model;example", + "romanization": "Vorbild", + "example_sentence_native": "Sie ist ein echtes Vorbild für mich.", + "example_sentence_english": "She is a true role model for me.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2192 + }, + { + "word": "wahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preserve;to keep", + "romanization": "wahren", + "example_sentence_native": "Wir müssen unsere Traditionen wahren.", + "example_sentence_english": "We must preserve our traditions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2193 + }, + { + "word": "Weile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "while;a short time", + "romanization": "Weile", + "example_sentence_native": "Warte bitte eine Weile.", + "example_sentence_english": "Please wait a while.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2194 + }, + { + "word": "Wissenschaftler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scientist", + "romanization": "Wissenschaftler", + "example_sentence_native": "Der Wissenschaftler forscht an neuen Medikamenten.", + "example_sentence_english": "The scientist researches new medicines.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2196 + }, + { + "word": "Zucker", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sugar", + "romanization": "Zucker", + "example_sentence_native": "Ich trinke meinen Kaffee ohne Zucker.", + "example_sentence_english": "I drink my coffee without sugar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2198 + }, + { + "word": "Abenteuer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adventure", + "romanization": "Abenteuer", + "example_sentence_native": "Das war ein großes Abenteuer.", + "example_sentence_english": "That was a great adventure.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2199 + }, + { + "word": "Archiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "archive", + "romanization": "Archiv", + "example_sentence_native": "Das Archiv bewahrt alte Dokumente auf.", + "example_sentence_english": "The archive stores old documents.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2200 + }, + { + "word": "beinahe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "almost;nearly", + "romanization": "beinahe", + "example_sentence_native": "Ich bin beinahe fertig mit meiner Arbeit.", + "example_sentence_english": "I am almost finished with my work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2201 + }, + { + "word": "Effekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effect", + "romanization": "Effekt", + "example_sentence_native": "Der Effekt war sofort spürbar.", + "example_sentence_english": "The effect was immediately noticeable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2204 + }, + { + "word": "Element", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "element", + "romanization": "Element", + "example_sentence_native": "Wasser ist ein wichtiges Element.", + "example_sentence_english": "Water is an important element.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2205 + }, + { + "word": "Ereignis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event", + "romanization": "Ereignis", + "example_sentence_native": "Das war ein unerwartetes Ereignis.", + "example_sentence_english": "That was an unexpected event.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2206 + }, + { + "word": "erledigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complete;to handle", + "romanization": "erledigen", + "example_sentence_native": "Ich muss diese Aufgabe heute erledigen.", + "example_sentence_english": "I have to complete this task today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2207 + }, + { + "word": "ermitteln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to investigate;to determine", + "romanization": "ermitteln", + "example_sentence_native": "Die Polizei ermittelt in dem Fall.", + "example_sentence_english": "The police are investigating the case.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2208 + }, + { + "word": "fassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grasp;to seize;to contain", + "romanization": "fassen", + "example_sentence_native": "Er konnte den Ball nicht fassen.", + "example_sentence_english": "He could not grasp the ball.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2209 + }, + { + "word": "Fähigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ability", + "romanization": "Fähigkeit", + "example_sentence_native": "Sie hat die Fähigkeit, schnell zu lernen.", + "example_sentence_english": "She has the ability to learn quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2210 + }, + { + "word": "Game", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "game", + "romanization": "Game", + "example_sentence_native": "Das Game ist sehr spannend.", + "example_sentence_english": "The game is very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2212 + }, + { + "word": "gegenseitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutual", + "romanization": "gegenseitig", + "example_sentence_native": "Sie helfen sich gegenseitig.", + "example_sentence_english": "They help each other mutually.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2213 + }, + { + "word": "gelingen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to succeed", + "romanization": "gelingen", + "example_sentence_native": "Es ist ihm gelungen, das Problem zu lösen.", + "example_sentence_english": "He succeeded in solving the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2214 + }, + { + "word": "geraten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get into", + "romanization": "geraten", + "example_sentence_native": "Er ist in Schwierigkeiten geraten.", + "example_sentence_english": "He got into trouble.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2215 + }, + { + "word": "Identität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identity", + "romanization": "Identität", + "example_sentence_native": "Sie schützt ihre Identität.", + "example_sentence_english": "She protects her identity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2217 + }, + { + "word": "jederzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at any time", + "romanization": "jederzeit", + "example_sentence_native": "Sie können mich jederzeit anrufen.", + "example_sentence_english": "You can call me at any time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2218 + }, + { + "word": "katholisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catholic", + "romanization": "katholisch", + "example_sentence_native": "Er ist katholisch.", + "example_sentence_english": "He is Catholic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2219 + }, + { + "word": "Kerl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guy;fellow", + "romanization": "Kerl", + "example_sentence_native": "Er ist ein netter Kerl.", + "example_sentence_english": "He is a nice guy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2220 + }, + { + "word": "langweilig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boring", + "romanization": "langweilig", + "example_sentence_native": "Der Film war sehr langweilig.", + "example_sentence_english": "The movie was very boring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2221 + }, + { + "word": "Liter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "liter", + "romanization": "Liter", + "example_sentence_native": "Ich hätte gerne einen Liter Milch.", + "example_sentence_english": "I would like one liter of milk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2222 + }, + { + "word": "Magazin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magazine", + "romanization": "Magazin", + "example_sentence_native": "Ich lese gerne dieses Magazin.", + "example_sentence_english": "I like to read this magazine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2223 + }, + { + "word": "Messe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;trade show;mass", + "romanization": "Messe", + "example_sentence_native": "Wir besuchen die Buchmesse in Frankfurt.", + "example_sentence_english": "We are visiting the book fair in Frankfurt.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2225 + }, + { + "word": "Netzwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "network", + "romanization": "Netzwerk", + "example_sentence_native": "Wir haben ein großes Netzwerk von Freunden.", + "example_sentence_english": "We have a large network of friends.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2228 + }, + { + "word": "organisieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to organize", + "romanization": "organisieren", + "example_sentence_native": "Wir müssen das Treffen organisieren.", + "example_sentence_english": "We need to organize the meeting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2229 + }, + { + "word": "Rad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheel", + "romanization": "Rad", + "example_sentence_native": "Das Rad dreht sich schnell.", + "example_sentence_english": "The wheel turns quickly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2230 + }, + { + "word": "Schlüssel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "key", + "romanization": "Schlüssel", + "example_sentence_native": "Wo ist mein Schlüssel?", + "example_sentence_english": "Where is my key?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2231 + }, + { + "word": "Schuss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shot", + "romanization": "Schuss", + "example_sentence_native": "Er gab einen Schuss auf das Tor ab.", + "example_sentence_english": "He took a shot at the goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2232 + }, + { + "word": "Schönheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beauty", + "romanization": "Schönheit", + "example_sentence_native": "Die Schönheit der Natur ist atemberaubend.", + "example_sentence_english": "The beauty of nature is breathtaking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2233 + }, + { + "word": "sexy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexy", + "romanization": "sexy", + "example_sentence_native": "Sie trug ein sehr sexy Kleid.", + "example_sentence_english": "She wore a very sexy dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2234 + }, + { + "word": "spenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to donate", + "romanization": "spenden", + "example_sentence_native": "Viele Menschen spenden Geld für wohltätige Zwecke.", + "example_sentence_english": "Many people donate money for charitable causes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2235 + }, + { + "word": "staatlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state-owned", + "romanization": "staatlich", + "example_sentence_native": "Das ist eine staatliche Einrichtung.", + "example_sentence_english": "This is a state-owned institution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2236 + }, + { + "word": "Unterhaltung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entertainment", + "romanization": "Unterhaltung", + "example_sentence_native": "Der Film bot gute Unterhaltung.", + "example_sentence_english": "The film offered good entertainment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2238 + }, + { + "word": "verbringen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to spend", + "romanization": "verbringen", + "example_sentence_native": "Wir verbringen den Urlaub am Meer.", + "example_sentence_english": "We spend the holiday by the sea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2239 + }, + { + "word": "Wesen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "being;essence;creature", + "romanization": "Wesen", + "example_sentence_native": "Jedes Lebewesen hat das Recht auf Leben.", + "example_sentence_english": "Every living being has the right to life.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2241 + }, + { + "word": "Überblick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overview;summary", + "romanization": "Überblick", + "example_sentence_native": "Ich brauche einen schnellen Überblick über das Projekt.", + "example_sentence_english": "I need a quick overview of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2243 + }, + { + "word": "überwiegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predominantly;mostly", + "romanization": "überwiegend", + "example_sentence_native": "Das Wetter war überwiegend sonnig.", + "example_sentence_english": "The weather was predominantly sunny.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2244 + }, + { + "word": "Anerkennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognition;acknowledgement", + "romanization": "Anerkennung", + "example_sentence_native": "Sie erhielt viel Anerkennung für ihre Arbeit.", + "example_sentence_english": "She received a lot of recognition for her work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2245 + }, + { + "word": "Ansatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach;beginning;starting point", + "romanization": "Ansatz", + "example_sentence_native": "Sein Ansatz zur Problemlösung war sehr innovativ.", + "example_sentence_english": "His approach to problem-solving was very innovative.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2246 + }, + { + "word": "Ausbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expansion;development;extension", + "romanization": "Ausbau", + "example_sentence_native": "Der Ausbau der Autobahn ist geplant.", + "example_sentence_english": "The expansion of the highway is planned.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2247 + }, + { + "word": "Beamte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official;civil servant", + "romanization": "Beamte", + "example_sentence_native": "Der Beamte half mir bei meinem Anliegen.", + "example_sentence_english": "The official helped me with my request.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2249 + }, + { + "word": "Chat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat", + "romanization": "Chat", + "example_sentence_native": "Ich habe einen interessanten Chat mit meinem Freund gehabt.", + "example_sentence_english": "I had an interesting chat with my friend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2250 + }, + { + "word": "Chemie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemistry", + "romanization": "Chemie", + "example_sentence_native": "Sie studiert Chemie an der Universität.", + "example_sentence_english": "She studies chemistry at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2251 + }, + { + "word": "damalig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former;at that time", + "romanization": "damalig", + "example_sentence_native": "Der damalige Präsident war sehr beliebt.", + "example_sentence_english": "The former president was very popular.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2252 + }, + { + "word": "Erwachsener", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adult", + "romanization": "Erwachsener", + "example_sentence_native": "Ein Erwachsener muss die Kinder beaufsichtigen.", + "example_sentence_english": "An adult must supervise the children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2254 + }, + { + "word": "ferner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furthermore;additionally", + "romanization": "ferner", + "example_sentence_native": "Ferner möchte ich betonen, dass dies wichtig ist.", + "example_sentence_english": "Furthermore, I would like to emphasize that this is important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2255 + }, + { + "word": "Flasche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bottle", + "romanization": "Flasche", + "example_sentence_native": "Die Flasche ist leer.", + "example_sentence_english": "The bottle is empty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2256 + }, + { + "word": "Format", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "format", + "romanization": "Format", + "example_sentence_native": "Welches Format hat diese Datei?", + "example_sentence_english": "What format is this file?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2257 + }, + { + "word": "Geschlecht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gender;sex", + "romanization": "Geschlecht", + "example_sentence_native": "Bitte geben Sie Ihr Geschlecht an.", + "example_sentence_english": "Please state your gender.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2258 + }, + { + "word": "hinterher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "afterwards", + "romanization": "hinterher", + "example_sentence_native": "Er rannte hinterher, um sie einzuholen.", + "example_sentence_english": "He ran afterwards to catch up with her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2260 + }, + { + "word": "Kandidat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candidate", + "romanization": "Kandidat", + "example_sentence_native": "Der Kandidat stellte sich den Fragen der Journalisten.", + "example_sentence_english": "The candidate answered the journalists' questions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2261 + }, + { + "word": "Mischung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixture", + "romanization": "Mischung", + "example_sentence_native": "Diese Mischung aus Gewürzen ist sehr aromatisch.", + "example_sentence_english": "This mixture of spices is very aromatic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2262 + }, + { + "word": "Mittelpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "center", + "romanization": "Mittelpunkt", + "example_sentence_native": "Er stand im Mittelpunkt der Aufmerksamkeit.", + "example_sentence_english": "He was at the center of attention.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2263 + }, + { + "word": "Müll", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trash", + "romanization": "Müll", + "example_sentence_native": "Bitte werfen Sie den Müll in den dafür vorgesehenen Behälter.", + "example_sentence_english": "Please throw the trash in the designated bin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2264 + }, + { + "word": "münchner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Munich (adj.)", + "romanization": "münchner", + "example_sentence_native": "Die münchner Brauereien sind weltberühmt.", + "example_sentence_english": "The Munich breweries are world-famous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2265 + }, + { + "word": "Plattform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platform", + "romanization": "Plattform", + "example_sentence_native": "Die neue Online-Plattform bietet viele Funktionen.", + "example_sentence_english": "The new online platform offers many features.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2267 + }, + { + "word": "Pop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pop (music)", + "romanization": "Pop", + "example_sentence_native": "Sie hört gerne Popmusik.", + "example_sentence_english": "She likes to listen to pop music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2269 + }, + { + "word": "Rassismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racism", + "romanization": "Rassismus", + "example_sentence_native": "Rassismus ist ein ernstes Problem in unserer Gesellschaft.", + "example_sentence_english": "Racism is a serious problem in our society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2270 + }, + { + "word": "reduzieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce", + "romanization": "reduzieren", + "example_sentence_native": "Wir müssen unseren Plastikverbrauch reduzieren.", + "example_sentence_english": "We must reduce our plastic consumption.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2271 + }, + { + "word": "Sitzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meeting;session", + "romanization": "Sitzung", + "example_sentence_native": "Die nächste Sitzung findet am Dienstag statt.", + "example_sentence_english": "The next meeting will take place on Tuesday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2272 + }, + { + "word": "Tabelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "table (data;chart)", + "romanization": "Tabelle", + "example_sentence_native": "Bitte schauen Sie sich die Tabelle auf Seite fünf an.", + "example_sentence_english": "Please look at the table on page five.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2274 + }, + { + "word": "türkisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Turkish", + "romanization": "türkisch", + "example_sentence_native": "Ich mag türkischen Kaffee sehr gerne.", + "example_sentence_english": "I like Turkish coffee very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2275 + }, + { + "word": "Umfang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope;extent;circumference", + "romanization": "Umfang", + "example_sentence_native": "Der Umfang des Projekts ist sehr groß.", + "example_sentence_english": "The scope of the project is very large.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2276 + }, + { + "word": "unterhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to entertain;to converse;to maintain", + "romanization": "unterhalten", + "example_sentence_native": "Wir haben uns lange über das Wetter unterhalten.", + "example_sentence_english": "We talked about the weather for a long time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2277 + }, + { + "word": "vereinigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "united;unified", + "romanization": "vereinigt", + "example_sentence_native": "Die vereinigten Kräfte waren stärker.", + "example_sentence_english": "The united forces were stronger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2278 + }, + { + "word": "verfügbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "available", + "romanization": "verfügbar", + "example_sentence_native": "Das Produkt ist ab nächster Woche wieder verfügbar.", + "example_sentence_english": "The product will be available again next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2279 + }, + { + "word": "verstärken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strengthen;to reinforce", + "romanization": "verstärken", + "example_sentence_native": "Wir müssen unsere Anstrengungen verstärken.", + "example_sentence_english": "We must strengthen our efforts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2280 + }, + { + "word": "Wachstum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "growth", + "romanization": "Wachstum", + "example_sentence_native": "Das Unternehmen verzeichnet ein starkes Wachstum.", + "example_sentence_english": "The company is experiencing strong growth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2281 + }, + { + "word": "wirtschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economic;economical", + "romanization": "wirtschaftlich", + "example_sentence_native": "Die wirtschaftliche Lage ist stabil.", + "example_sentence_english": "The economic situation is stable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2282 + }, + { + "word": "übel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nauseous;bad;evil", + "romanization": "übel", + "example_sentence_native": "Mir ist übel.", + "example_sentence_english": "I feel nauseous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2283 + }, + { + "word": "Absatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sales;paragraph;heel", + "romanization": "Absatz", + "example_sentence_native": "Der Absatz der Produkte ist gestiegen.", + "example_sentence_english": "The sales of the products have increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2284 + }, + { + "word": "Account", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "account", + "romanization": "Account", + "example_sentence_native": "Ich habe einen neuen Account erstellt.", + "example_sentence_english": "I have created a new account.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2285 + }, + { + "word": "Atmosphäre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atmosphere", + "romanization": "Atmosphäre", + "example_sentence_native": "Die Atmosphäre im Raum war sehr angenehm.", + "example_sentence_english": "The atmosphere in the room was very pleasant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2286 + }, + { + "word": "aussprechen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pronounce;to express", + "romanization": "aussprechen", + "example_sentence_native": "Kannst du dieses Wort aussprechen?", + "example_sentence_english": "Can you pronounce this word?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "sprechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2287 + }, + { + "word": "Bibliothek", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "library", + "romanization": "Bibliothek", + "example_sentence_native": "Ich gehe oft in die Bibliothek.", + "example_sentence_english": "I often go to the library.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2288 + }, + { + "word": "Brust", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chest;breast", + "romanization": "Brust", + "example_sentence_native": "Er hat Schmerzen in der Brust.", + "example_sentence_english": "He has pain in his chest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2289 + }, + { + "word": "dritte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "third", + "romanization": "dritte", + "example_sentence_native": "Das ist das dritte Buch, das ich heute gelesen habe.", + "example_sentence_english": "This is the third book I have read today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 2290 + }, + { + "word": "Eingang", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "entrance", + "romanization": "Eingang", + "example_sentence_native": "Der Eingang ist auf der rechten Seite.", + "example_sentence_english": "The entrance is on the right side.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2291 + }, + { + "word": "erheben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise;to collect", + "romanization": "erheben", + "example_sentence_native": "Sie wollen eine neue Steuer erheben.", + "example_sentence_english": "They want to levy a new tax.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2293 + }, + { + "word": "Ernährung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutrition;diet", + "romanization": "Ernährung", + "example_sentence_native": "Eine gesunde Ernährung ist wichtig für die Gesundheit.", + "example_sentence_english": "A healthy diet is important for health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2294 + }, + { + "word": "erweitern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expand;to broaden", + "romanization": "erweitern", + "example_sentence_native": "Wir müssen unsere Kenntnisse erweitern.", + "example_sentence_english": "We need to broaden our knowledge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2295 + }, + { + "word": "Fraktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliamentary group;faction", + "romanization": "Fraktion", + "example_sentence_native": "Die Fraktion traf sich im Parlament.", + "example_sentence_english": "The faction met in parliament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2297 + }, + { + "word": "freiwillig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voluntary;voluntarily", + "romanization": "freiwillig", + "example_sentence_native": "Er arbeitet freiwillig im Tierheim.", + "example_sentence_english": "He works voluntarily at the animal shelter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2298 + }, + { + "word": "fördern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to promote;to foster", + "romanization": "fördern", + "example_sentence_native": "Wir müssen junge Talente fördern.", + "example_sentence_english": "We must foster young talents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2300 + }, + { + "word": "garantieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guarantee", + "romanization": "garantieren", + "example_sentence_native": "Ich kann dir das nicht garantieren.", + "example_sentence_english": "I cannot guarantee that to you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2301 + }, + { + "word": "prägen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coin;to shape", + "romanization": "prägen", + "example_sentence_native": "Diese Erfahrung hat mich sehr geprägt.", + "example_sentence_english": "This experience has shaped me a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2302 + }, + { + "word": "gewöhnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get used to;to accustom", + "romanization": "gewöhnen", + "example_sentence_native": "Man muss sich an das Klima gewöhnen.", + "example_sentence_english": "One has to get used to the climate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2303 + }, + { + "word": "Hammer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hammer", + "romanization": "Hammer", + "example_sentence_native": "Wo ist der Hammer?", + "example_sentence_english": "Where is the hammer?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2304 + }, + { + "word": "Held", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hero", + "romanization": "Held", + "example_sentence_native": "Er ist ein wahrer Held.", + "example_sentence_english": "He is a true hero.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2306 + }, + { + "word": "Konflikt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conflict", + "romanization": "Konflikt", + "example_sentence_native": "Es gab einen Konflikt zwischen den beiden Parteien.", + "example_sentence_english": "There was a conflict between the two parties.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2310 + }, + { + "word": "Kooperation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperation", + "romanization": "Kooperation", + "example_sentence_native": "Gute Kooperation ist wichtig für den Erfolg.", + "example_sentence_english": "Good cooperation is important for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2311 + }, + { + "word": "lächerlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ridiculous", + "romanization": "lächerlich", + "example_sentence_native": "Das ist eine lächerliche Idee.", + "example_sentence_english": "That is a ridiculous idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2313 + }, + { + "word": "nachher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "afterwards", + "romanization": "nachher", + "example_sentence_native": "Wir können nachher darüber sprechen.", + "example_sentence_english": "We can talk about it afterwards.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2314 + }, + { + "word": "negativ", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "negative", + "romanization": "negativ", + "example_sentence_native": "Er hat eine sehr negative Einstellung.", + "example_sentence_english": "He has a very negative attitude.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2315 + }, + { + "word": "richten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to direct", + "romanization": "richten", + "example_sentence_native": "Er richtete seine Aufmerksamkeit auf die Aufgabe.", + "example_sentence_english": "He directed his attention to the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2317 + }, + { + "word": "Schneider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tailor", + "romanization": "Schneider", + "example_sentence_native": "Der Schneider näht einen neuen Anzug.", + "example_sentence_english": "The tailor sews a new suit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2318 + }, + { + "word": "Sänger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singer", + "romanization": "Sänger", + "example_sentence_native": "Der Sänger hat eine wunderschöne Stimme.", + "example_sentence_english": "The singer has a beautiful voice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2319 + }, + { + "word": "tanzen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dance", + "romanization": "tanzen", + "example_sentence_native": "Wir tanzen gerne.", + "example_sentence_english": "We like to dance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2320 + }, + { + "word": "Umfrage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "survey", + "romanization": "Umfrage", + "example_sentence_native": "Die Umfrage zeigt interessante Ergebnisse.", + "example_sentence_english": "The survey shows interesting results.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2321 + }, + { + "word": "versprechen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to promise", + "romanization": "versprechen", + "example_sentence_native": "Ich verspreche dir, dass ich pünktlich bin.", + "example_sentence_english": "I promise you that I will be on time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2322 + }, + { + "word": "Wirklichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reality", + "romanization": "Wirklichkeit", + "example_sentence_native": "Die virtuelle Welt ist oft anders als die Wirklichkeit.", + "example_sentence_english": "The virtual world is often different from reality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2324 + }, + { + "word": "zahlen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pay", + "romanization": "zahlen", + "example_sentence_native": "Kann ich bitte zahlen?", + "example_sentence_english": "Can I pay, please?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2325 + }, + { + "word": "Akademie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academy", + "romanization": "Akademie", + "example_sentence_native": "Sie studiert an der Akademie der Künste.", + "example_sentence_english": "She studies at the Academy of Arts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2327 + }, + { + "word": "allzu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too;excessively", + "romanization": "allzu", + "example_sentence_native": "Das ist allzu kompliziert für mich.", + "example_sentence_english": "That is too complicated for me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2329 + }, + { + "word": "ausgehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go out", + "romanization": "ausgehen", + "example_sentence_native": "Wir wollen heute Abend ausgehen.", + "example_sentence_english": "We want to go out tonight.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2331 + }, + { + "word": "betonen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to emphasize", + "romanization": "betonen", + "example_sentence_native": "Er betonte die Wichtigkeit der Aufgabe.", + "example_sentence_english": "He emphasized the importance of the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2333 + }, + { + "word": "Deal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deal", + "romanization": "Deal", + "example_sentence_native": "Das ist ein guter Deal.", + "example_sentence_english": "That is a good deal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2335 + }, + { + "word": "Definition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definition", + "romanization": "Definition", + "example_sentence_native": "Bitte geben Sie eine klare Definition.", + "example_sentence_english": "Please give a clear definition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2336 + }, + { + "word": "drohen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to threaten", + "romanization": "drohen", + "example_sentence_native": "Er drohte mit rechtlichen Schritten.", + "example_sentence_english": "He threatened legal action.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2337 + }, + { + "word": "Einladung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invitation", + "romanization": "Einladung", + "example_sentence_native": "Ich habe eine Einladung zur Party bekommen.", + "example_sentence_english": "I received an invitation to the party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2338 + }, + { + "word": "endgültig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final", + "romanization": "endgültig", + "example_sentence_native": "Das ist die endgültige Entscheidung.", + "example_sentence_english": "That is the final decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2339 + }, + { + "word": "fair", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;just", + "romanization": "fair", + "example_sentence_native": "Das ist ein fairer Preis.", + "example_sentence_english": "That is a fair price.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2340 + }, + { + "word": "Finanzierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financing;funding", + "romanization": "Finanzierung", + "example_sentence_native": "Die Finanzierung des Projekts ist gesichert.", + "example_sentence_english": "The financing of the project is secured.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2341 + }, + { + "word": "Gerechtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "justice;fairness", + "romanization": "Gerechtigkeit", + "example_sentence_native": "Wir kämpfen für Gerechtigkeit.", + "example_sentence_english": "We fight for justice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2344 + }, + { + "word": "gering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "low;small;minor", + "romanization": "gering", + "example_sentence_native": "Der Schaden war nur gering.", + "example_sentence_english": "The damage was only minor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2345 + }, + { + "word": "herrschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rule;to prevail;to reign", + "romanization": "herrschen", + "example_sentence_native": "Ruhe herrschte im Raum.", + "example_sentence_english": "Silence prevailed in the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2347 + }, + { + "word": "Hut", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hat", + "romanization": "Hut", + "example_sentence_native": "Er trägt einen neuen Hut.", + "example_sentence_english": "He is wearing a new hat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2348 + }, + { + "word": "Kapitän", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain", + "romanization": "Kapitän", + "example_sentence_native": "Der Kapitän steuert das Schiff.", + "example_sentence_english": "The captain steers the ship.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2349 + }, + { + "word": "klicken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to click", + "romanization": "klicken", + "example_sentence_native": "Bitte klicken Sie hier, um fortzufahren.", + "example_sentence_english": "Please click here to continue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2350 + }, + { + "word": "Koalition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coalition", + "romanization": "Koalition", + "example_sentence_native": "Die Regierung bildet eine Koalition mit anderen Parteien.", + "example_sentence_english": "The government forms a coalition with other parties.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2351 + }, + { + "word": "Mode", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fashion", + "romanization": "Mode", + "example_sentence_native": "Sie interessiert sich sehr für Mode.", + "example_sentence_english": "She is very interested in fashion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2352 + }, + { + "word": "Paket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "package", + "romanization": "Paket", + "example_sentence_native": "Ich habe ein Paket erhalten.", + "example_sentence_english": "I received a package.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2355 + }, + { + "word": "Perspektive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perspective", + "romanization": "Perspektive", + "example_sentence_native": "Manchmal muss man die Perspektive wechseln.", + "example_sentence_english": "Sometimes you have to change your perspective.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2356 + }, + { + "word": "rauchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smoke", + "romanization": "rauchen", + "example_sentence_native": "Er hat aufgehört zu rauchen.", + "example_sentence_english": "He stopped smoking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2358 + }, + { + "word": "Regelung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regulation", + "romanization": "Regelung", + "example_sentence_native": "Es gibt eine neue Regelung für den Verkehr.", + "example_sentence_english": "There is a new regulation for traffic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2359 + }, + { + "word": "Teufel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "devil", + "romanization": "Teufel", + "example_sentence_native": "Der Teufel steckt im Detail.", + "example_sentence_english": "The devil is in the details.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2360 + }, + { + "word": "umgehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deal with;to handle", + "romanization": "umgehen", + "example_sentence_native": "Man muss lernen, mit Stress umzugehen.", + "example_sentence_english": "One must learn to deal with stress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2361 + }, + { + "word": "umsetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implement;to convert", + "romanization": "umsetzen", + "example_sentence_native": "Wir müssen diese Ideen in die Tat umsetzen.", + "example_sentence_english": "We must implement these ideas.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2362 + }, + { + "word": "vermissen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to miss", + "romanization": "vermissen", + "example_sentence_native": "Ich vermisse dich sehr.", + "example_sentence_english": "I miss you very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2363 + }, + { + "word": "vorsehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide for;to foresee", + "romanization": "vorsehen", + "example_sentence_native": "Das Gesetz sieht strenge Strafen vor.", + "example_sentence_english": "The law provides for strict penalties.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2364 + }, + { + "word": "Vorsicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caution;care", + "romanization": "Vorsicht", + "example_sentence_native": "Vorsicht ist die Mutter der Porzellankiste.", + "example_sentence_english": "Caution is the mother of the porcelain box.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2365 + }, + { + "word": "wiederholen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to repeat", + "romanization": "wiederholen", + "example_sentence_native": "Könnten Sie das bitte wiederholen?", + "example_sentence_english": "Could you please repeat that?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2366 + }, + { + "word": "übersetzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to translate", + "romanization": "übersetzen", + "example_sentence_native": "Können Sie diesen Text ins Englische übersetzen?", + "example_sentence_english": "Can you translate this text into English?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2368 + }, + { + "word": "ablehnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reject;to decline", + "romanization": "ablehnen", + "example_sentence_native": "Er lehnte das Angebot ab.", + "example_sentence_english": "He rejected the offer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "lehnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2369 + }, + { + "word": "akzeptieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accept", + "romanization": "akzeptieren", + "example_sentence_native": "Ich kann diese Bedingungen nicht akzeptieren.", + "example_sentence_english": "I cannot accept these conditions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2370 + }, + { + "word": "anbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attach", + "romanization": "anbringen", + "example_sentence_native": "Er muss das Bild an der Wand anbringen.", + "example_sentence_english": "He has to attach the picture to the wall.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2371 + }, + { + "word": "Aufstieg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ascent;rise", + "romanization": "Aufstieg", + "example_sentence_native": "Der Aufstieg zum Gipfel war anstrengend.", + "example_sentence_english": "The ascent to the summit was strenuous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2373 + }, + { + "word": "Aufwand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effort;expense", + "romanization": "Aufwand", + "example_sentence_native": "Der Aufwand für das Projekt war enorm.", + "example_sentence_english": "The effort for the project was enormous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2374 + }, + { + "word": "auseinander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apart", + "romanization": "auseinander", + "example_sentence_native": "Die beiden Häuser stehen weit auseinander.", + "example_sentence_english": "The two houses are far apart.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2375 + }, + { + "word": "bestimmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to determine", + "romanization": "bestimmen", + "example_sentence_native": "Er muss seinen Weg selbst bestimmen.", + "example_sentence_english": "He has to determine his own path.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2377 + }, + { + "word": "Blatt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leaf;sheet", + "romanization": "Blatt", + "example_sentence_native": "Das Blatt fällt vom Baum.", + "example_sentence_english": "The leaf falls from the tree.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2379 + }, + { + "word": "Burg", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "castle", + "romanization": "Burg", + "example_sentence_native": "Die alte Burg steht auf einem Hügel.", + "example_sentence_english": "The old castle stands on a hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2380 + }, + { + "word": "Edition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edition", + "romanization": "Edition", + "example_sentence_native": "Das Buch ist in einer neuen Edition erschienen.", + "example_sentence_english": "The book has been published in a new edition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2382 + }, + { + "word": "Entwurf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "draft;design", + "romanization": "Entwurf", + "example_sentence_native": "Der Architekt präsentierte den ersten Entwurf des Gebäudes.", + "example_sentence_english": "The architect presented the first draft of the building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2383 + }, + { + "word": "erfassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grasp;to record", + "romanization": "erfassen", + "example_sentence_native": "Es ist wichtig, alle Daten korrekt zu erfassen.", + "example_sentence_english": "It is important to record all data correctly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2384 + }, + { + "word": "erwischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch;to nab", + "romanization": "erwischen", + "example_sentence_native": "Der Dieb wurde von der Polizei erwischt.", + "example_sentence_english": "The thief was caught by the police.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2385 + }, + { + "word": "Freizeit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "leisure time;free time", + "romanization": "Freizeit", + "example_sentence_native": "Was machst du in deiner Freizeit?", + "example_sentence_english": "What do you do in your free time?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2386 + }, + { + "word": "Front", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front", + "romanization": "Front", + "example_sentence_native": "Die Front des Hauses ist neu gestrichen.", + "example_sentence_english": "The front of the house is newly painted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2387 + }, + { + "word": "Gehalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salary", + "romanization": "Gehalt", + "example_sentence_native": "Sein Gehalt wurde erhöht.", + "example_sentence_english": "His salary was increased.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2388 + }, + { + "word": "Gewinner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "winner", + "romanization": "Gewinner", + "example_sentence_native": "Der Gewinner des Rennens war sehr glücklich.", + "example_sentence_english": "The winner of the race was very happy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2389 + }, + { + "word": "Innenstadt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city center", + "romanization": "Innenstadt", + "example_sentence_native": "Die Innenstadt ist sehr belebt.", + "example_sentence_english": "The city center is very lively.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2390 + }, + { + "word": "Jäger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunter", + "romanization": "Jäger", + "example_sentence_native": "Der Jäger ging in den Wald.", + "example_sentence_english": "The hunter went into the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2391 + }, + { + "word": "King", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "king", + "romanization": "King", + "example_sentence_native": "Der King des Rock 'n' Roll war Elvis Presley.", + "example_sentence_english": "The King of Rock 'n' Roll was Elvis Presley.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2392 + }, + { + "word": "Konsequenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequence", + "romanization": "Konsequenz", + "example_sentence_native": "Jede Handlung hat eine Konsequenz.", + "example_sentence_english": "Every action has a consequence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2393 + }, + { + "word": "mehrmals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "several times", + "romanization": "mehrmals", + "example_sentence_native": "Ich habe ihn mehrmals angerufen.", + "example_sentence_english": "I called him several times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2394 + }, + { + "word": "Rente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pension", + "romanization": "Rente", + "example_sentence_native": "Er geht bald in Rente.", + "example_sentence_english": "He will retire soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2396 + }, + { + "word": "Ritter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knight", + "romanization": "Ritter", + "example_sentence_native": "Der Ritter trug eine glänzende Rüstung.", + "example_sentence_english": "The knight wore shining armor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2397 + }, + { + "word": "Schwerpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main focus", + "romanization": "Schwerpunkt", + "example_sentence_native": "Der Schwerpunkt des Projekts liegt auf Nachhaltigkeit.", + "example_sentence_english": "The main focus of the project is on sustainability.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2398 + }, + { + "word": "schwimmen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to swim", + "romanization": "schwimmen", + "example_sentence_native": "Ich kann gut schwimmen.", + "example_sentence_english": "I can swim well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2399 + }, + { + "word": "spüren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel;to sense", + "romanization": "spüren", + "example_sentence_native": "Ich kann den Wind auf meiner Haut spüren.", + "example_sentence_english": "I can feel the wind on my skin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2400 + }, + { + "word": "Tonne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ton;barrel;bin", + "romanization": "Tonne", + "example_sentence_native": "Der Müll kommt in die Tonne.", + "example_sentence_english": "The trash goes into the bin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2404 + }, + { + "word": "Verbesserung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvement", + "romanization": "Verbesserung", + "example_sentence_native": "Wir sehen eine deutliche Verbesserung.", + "example_sentence_english": "We see a clear improvement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2405 + }, + { + "word": "Versicherung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insurance", + "romanization": "Versicherung", + "example_sentence_native": "Hast du eine Reiseversicherung abgeschlossen?", + "example_sentence_english": "Did you take out travel insurance?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2406 + }, + { + "word": "Versorgung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply;provision;care", + "romanization": "Versorgung", + "example_sentence_native": "Die Wasserversorgung ist in dieser Region kritisch.", + "example_sentence_english": "The water supply is critical in this region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2407 + }, + { + "word": "Veröffentlichung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publication;release", + "romanization": "Veröffentlichung", + "example_sentence_native": "Die Veröffentlichung des Buches ist für nächsten Monat geplant.", + "example_sentence_english": "The publication of the book is planned for next month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2408 + }, + { + "word": "westlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "western;westerly", + "romanization": "westlich", + "example_sentence_native": "Die westliche Seite des Gebäudes ist sonnig.", + "example_sentence_english": "The western side of the building is sunny.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2409 + }, + { + "word": "übergeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hand over", + "romanization": "übergeben", + "example_sentence_native": "Er wird die Dokumente morgen übergeben.", + "example_sentence_english": "He will hand over the documents tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2412 + }, + { + "word": "überlassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave to;to entrust", + "romanization": "überlassen", + "example_sentence_native": "Ich überlasse dir die Entscheidung.", + "example_sentence_english": "I'll leave the decision to you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2413 + }, + { + "word": "üblich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usual;customary", + "romanization": "üblich", + "example_sentence_native": "Das ist die übliche Vorgehensweise.", + "example_sentence_english": "That is the usual procedure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2414 + }, + { + "word": "Abgeordneter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member of parliament", + "romanization": "Abgeordneter", + "example_sentence_native": "Der Abgeordnete sprach im Parlament.", + "example_sentence_english": "The member of parliament spoke in the parliament.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2415 + }, + { + "word": "angehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concern;to switch on", + "romanization": "angehen", + "example_sentence_native": "Das Licht geht nicht an.", + "example_sentence_english": "The light doesn't turn on.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2418 + }, + { + "word": "Aussicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "view;prospect", + "romanization": "Aussicht", + "example_sentence_native": "Wir haben eine schöne Aussicht vom Balkon.", + "example_sentence_english": "We have a beautiful view from the balcony.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2419 + }, + { + "word": "Bauch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belly;stomach", + "romanization": "Bauch", + "example_sentence_native": "Mein Bauch tut weh.", + "example_sentence_english": "My stomach hurts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2420 + }, + { + "word": "Cent", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cent", + "romanization": "Cent", + "example_sentence_native": "Das kostet nur einen Cent.", + "example_sentence_english": "That only costs one cent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2422 + }, + { + "word": "Cup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cup", + "romanization": "Cup", + "example_sentence_native": "Gib einen Cup Zucker in den Teig.", + "example_sentence_english": "Add one cup of sugar to the dough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2423 + }, + { + "word": "divers", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diverse;various", + "romanization": "divers", + "example_sentence_native": "Die Gruppe ist sehr divers.", + "example_sentence_english": "The group is very diverse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2424 + }, + { + "word": "Entfernung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distance", + "romanization": "Entfernung", + "example_sentence_native": "Die Entfernung zum Bahnhof ist gering.", + "example_sentence_english": "The distance to the train station is short.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2425 + }, + { + "word": "entlassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dismiss;to release;to fire", + "romanization": "entlassen", + "example_sentence_native": "Er wurde aus dem Krankenhaus entlassen.", + "example_sentence_english": "He was released from the hospital.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2426 + }, + { + "word": "erheblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerable;significant", + "romanization": "erheblich", + "example_sentence_native": "Das ist ein erheblicher Unterschied.", + "example_sentence_english": "That is a considerable difference.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2427 + }, + { + "word": "Eröffnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening;inauguration", + "romanization": "Eröffnung", + "example_sentence_native": "Die Eröffnung des neuen Geschäfts ist nächste Woche.", + "example_sentence_english": "The opening of the new store is next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2428 + }, + { + "word": "Fach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subject (academic);compartment;shelf", + "romanization": "Fach", + "example_sentence_native": "Welches Fach magst du am liebsten?", + "example_sentence_english": "Which subject do you like best?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2429 + }, + { + "word": "Feier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "celebration;party", + "romanization": "Feier", + "example_sentence_native": "Die Feier war sehr schön.", + "example_sentence_english": "The celebration was very nice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2430 + }, + { + "word": "filmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to film", + "romanization": "filmen", + "example_sentence_native": "Er filmt einen Dokumentarfilm.", + "example_sentence_english": "He is filming a documentary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2431 + }, + { + "word": "Geheimnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secret", + "romanization": "Geheimnis", + "example_sentence_native": "Das ist ein großes Geheimnis.", + "example_sentence_english": "That is a big secret.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2432 + }, + { + "word": "gerecht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "just;fair", + "romanization": "gerecht", + "example_sentence_native": "Er ist ein sehr gerechter Mensch.", + "example_sentence_english": "He is a very fair person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2433 + }, + { + "word": "Hauptsache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main thing;main point", + "romanization": "Hauptsache", + "example_sentence_native": "Die Hauptsache ist, dass du glücklich bist.", + "example_sentence_english": "The main thing is that you are happy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2435 + }, + { + "word": "heutzutage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nowadays;these days", + "romanization": "heutzutage", + "example_sentence_native": "Heutzutage nutzen viele Menschen das Internet.", + "example_sentence_english": "Nowadays, many people use the internet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2437 + }, + { + "word": "Hinsicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "respect;regard;aspect", + "romanization": "Hinsicht", + "example_sentence_native": "In dieser Hinsicht stimme ich dir zu.", + "example_sentence_english": "In this respect, I agree with you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2438 + }, + { + "word": "hinweg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "away;over", + "romanization": "hinweg", + "example_sentence_native": "Er sah über den Fehler hinweg.", + "example_sentence_english": "He overlooked the mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2439 + }, + { + "word": "höchstens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at most", + "romanization": "höchstens", + "example_sentence_native": "Das dauert höchstens zehn Minuten.", + "example_sentence_english": "That will take ten minutes at most.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2440 + }, + { + "word": "Kohle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coal", + "romanization": "Kohle", + "example_sentence_native": "Die Kohle ist ein wichtiger Rohstoff.", + "example_sentence_english": "Coal is an important raw material.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2446 + }, + { + "word": "kritisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "critical", + "romanization": "kritisch", + "example_sentence_native": "Er ist sehr kritisch.", + "example_sentence_english": "He is very critical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2447 + }, + { + "word": "künftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "future;in the future", + "romanization": "künftig", + "example_sentence_native": "Künftig werden wir das anders machen.", + "example_sentence_english": "In the future, we will do that differently.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2448 + }, + { + "word": "menschlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "human;humane", + "romanization": "menschlich", + "example_sentence_native": "Das ist eine menschliche Eigenschaft.", + "example_sentence_english": "That is a human characteristic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2449 + }, + { + "word": "Oberfläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surface", + "romanization": "Oberfläche", + "example_sentence_native": "Die Oberfläche des Tisches ist glatt.", + "example_sentence_english": "The surface of the table is smooth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2450 + }, + { + "word": "Opposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposition", + "romanization": "Opposition", + "example_sentence_native": "Die Opposition kritisierte die Regierung.", + "example_sentence_english": "The opposition criticized the government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2451 + }, + { + "word": "Option", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "option", + "romanization": "Option", + "example_sentence_native": "Wir haben mehrere Optionen zur Auswahl.", + "example_sentence_english": "We have several options to choose from.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2452 + }, + { + "word": "Pkw", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car (passenger car)", + "romanization": "Pkw", + "example_sentence_native": "Der Pkw parkt vor dem Haus.", + "example_sentence_english": "The car is parked in front of the house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2453 + }, + { + "word": "rechtzeitig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in time;on time", + "romanization": "rechtzeitig", + "example_sentence_native": "Wir müssen rechtzeitig am Bahnhof sein.", + "example_sentence_english": "We have to be at the station in time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2455 + }, + { + "word": "rosa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pink", + "romanization": "rosa", + "example_sentence_native": "Sie trägt ein rosa Kleid.", + "example_sentence_english": "She is wearing a pink dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2457 + }, + { + "word": "Sand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sand", + "romanization": "Sand", + "example_sentence_native": "Der Sand am Strand ist warm.", + "example_sentence_english": "The sand on the beach is warm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2458 + }, + { + "word": "Schatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "treasure;darling", + "romanization": "Schatz", + "example_sentence_native": "Er fand einen alten Schatz.", + "example_sentence_english": "He found an old treasure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2459 + }, + { + "word": "schätzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to estimate;to value;to appreciate", + "romanization": "schätzen", + "example_sentence_native": "Ich schätze deine Hilfe sehr.", + "example_sentence_english": "I really appreciate your help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2460 + }, + { + "word": "stattfinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take place;to happen", + "romanization": "stattfinden", + "example_sentence_native": "Das Konzert wird morgen stattfinden.", + "example_sentence_english": "The concert will take place tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "statt", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2461 + }, + { + "word": "stärken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strengthen;to reinforce", + "romanization": "stärken", + "example_sentence_native": "Sport kann die Muskeln stärken.", + "example_sentence_english": "Sport can strengthen the muscles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2462 + }, + { + "word": "Tanz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dance", + "romanization": "Tanz", + "example_sentence_native": "Der Tanz war sehr schön.", + "example_sentence_english": "The dance was very beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2463 + }, + { + "word": "Tatort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crime scene", + "romanization": "Tatort", + "example_sentence_native": "Die Polizei untersuchte den Tatort.", + "example_sentence_english": "The police investigated the crime scene.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2464 + }, + { + "word": "testen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to test", + "romanization": "testen", + "example_sentence_native": "Wir müssen das neue System testen.", + "example_sentence_english": "We need to test the new system.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2465 + }, + { + "word": "umgekehrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice versa;inverted;reversed", + "romanization": "umgekehrt", + "example_sentence_native": "Die Reihenfolge ist umgekehrt.", + "example_sentence_english": "The order is reversed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2467 + }, + { + "word": "Verdacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicion", + "romanization": "Verdacht", + "example_sentence_native": "Er stand unter Verdacht.", + "example_sentence_english": "He was under suspicion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2468 + }, + { + "word": "verrückt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crazy;mad", + "romanization": "verrückt", + "example_sentence_native": "Das ist eine verrückte Idee.", + "example_sentence_english": "That is a crazy idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2469 + }, + { + "word": "Verteidigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defense", + "romanization": "Verteidigung", + "example_sentence_native": "Die Verteidigung des Angeklagten war sehr überzeugend.", + "example_sentence_english": "The defense of the accused was very convincing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2470 + }, + { + "word": "Ärger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "anger;trouble", + "romanization": "Ärger", + "example_sentence_native": "Er hatte viel Ärger mit seinem Chef.", + "example_sentence_english": "He had a lot of trouble with his boss.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2471 + }, + { + "word": "überraschend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surprising;unexpectedly", + "romanization": "überraschend", + "example_sentence_native": "Das Ergebnis war überraschend gut.", + "example_sentence_english": "The result was surprisingly good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2472 + }, + { + "word": "angreifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attack", + "romanization": "angreifen", + "example_sentence_native": "Der Hund wollte den Postboten angreifen.", + "example_sentence_english": "The dog wanted to attack the postman.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "greifen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2473 + }, + { + "word": "anlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invest;to put on;to create", + "romanization": "anlegen", + "example_sentence_native": "Er möchte sein Geld gut anlegen.", + "example_sentence_english": "He wants to invest his money well.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2474 + }, + { + "word": "beliebt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "popular;beloved", + "romanization": "beliebt", + "example_sentence_native": "Sie ist bei ihren Kollegen sehr beliebt.", + "example_sentence_english": "She is very popular with her colleagues.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2475 + }, + { + "word": "Beratung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consultation;advice", + "romanization": "Beratung", + "example_sentence_native": "Die Beratung durch den Experten war sehr hilfreich.", + "example_sentence_english": "The consultation by the expert was very helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2476 + }, + { + "word": "berücksichtigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider;to take into account", + "romanization": "berücksichtigen", + "example_sentence_native": "Sie sollten alle Faktoren berücksichtigen.", + "example_sentence_english": "You should consider all factors.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2478 + }, + { + "word": "Beteiligung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participation;involvement", + "romanization": "Beteiligung", + "example_sentence_native": "Die Beteiligung an der Umfrage war hoch.", + "example_sentence_english": "The participation in the survey was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2479 + }, + { + "word": "britisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "British", + "romanization": "britisch", + "example_sentence_native": "Er ist ein britischer Staatsbürger.", + "example_sentence_english": "He is a British citizen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2481 + }, + { + "word": "Center", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "center", + "romanization": "Center", + "example_sentence_native": "Das Einkaufszentrum ist im Stadtzentrum.", + "example_sentence_english": "The shopping mall is in the city center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2482 + }, + { + "word": "Decke", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blanket", + "romanization": "Decke", + "example_sentence_native": "Die Katze schläft auf der Decke.", + "example_sentence_english": "The cat is sleeping on the blanket.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2484 + }, + { + "word": "Einkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "income", + "romanization": "Einkommen", + "example_sentence_native": "Sein Einkommen ist sehr hoch.", + "example_sentence_english": "His income is very high.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2485 + }, + { + "word": "Existenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existence", + "romanization": "Existenz", + "example_sentence_native": "Die Existenz von Einhörnern ist umstritten.", + "example_sentence_english": "The existence of unicorns is debated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2487 + }, + { + "word": "Fokus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "focus", + "romanization": "Fokus", + "example_sentence_native": "Der Fokus liegt auf der Qualität.", + "example_sentence_english": "The focus is on quality.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2488 + }, + { + "word": "Forscher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "researcher", + "romanization": "Forscher", + "example_sentence_native": "Die Forscher haben neue Erkenntnisse gewonnen.", + "example_sentence_english": "The researchers have gained new insights.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2489 + }, + { + "word": "gelegentlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasionally", + "romanization": "gelegentlich", + "example_sentence_native": "Wir treffen uns gelegentlich zum Kaffee.", + "example_sentence_english": "We occasionally meet for coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2490 + }, + { + "word": "Geschäftsführer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managing director", + "romanization": "Geschäftsführer", + "example_sentence_native": "Der Geschäftsführer hat die neue Strategie vorgestellt.", + "example_sentence_english": "The managing director presented the new strategy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2491 + }, + { + "word": "Glückwunsch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "congratulation", + "romanization": "Glückwunsch", + "example_sentence_native": "Herzlichen Glückwunsch zum Geburtstag!", + "example_sentence_english": "Happy birthday!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2492 + }, + { + "word": "Hafen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "port", + "romanization": "Hafen", + "example_sentence_native": "Das Schiff fuhr in den Hafen ein.", + "example_sentence_english": "The ship entered the port.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2493 + }, + { + "word": "Nation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nation", + "romanization": "Nation", + "example_sentence_native": "Jede Nation hat ihre eigene Kultur.", + "example_sentence_english": "Every nation has its own culture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2497 + }, + { + "word": "Rezept", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recipe", + "romanization": "Rezept", + "example_sentence_native": "Ich habe ein neues Rezept für Kuchen gefunden.", + "example_sentence_english": "I found a new recipe for cake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2499 + }, + { + "word": "schiessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shoot", + "romanization": "schiessen", + "example_sentence_native": "Der Jäger schiesst auf den Hirsch.", + "example_sentence_english": "The hunter shoots at the deer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2501 + }, + { + "word": "Spannung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tension;suspense", + "romanization": "Spannung", + "example_sentence_native": "Der Film hatte viel Spannung.", + "example_sentence_english": "The film had a lot of suspense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2502 + }, + { + "word": "Trennung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separation;divorce", + "romanization": "Trennung", + "example_sentence_native": "Die Trennung war für beide schwer.", + "example_sentence_english": "The separation was difficult for both.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2503 + }, + { + "word": "typisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "typical", + "romanization": "typisch", + "example_sentence_native": "Das ist typisch für ihn.", + "example_sentence_english": "That is typical for him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2504 + }, + { + "word": "Verbreitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution;spread", + "romanization": "Verbreitung", + "example_sentence_native": "Die Verbreitung des Virus ist besorgniserregend.", + "example_sentence_english": "The spread of the virus is concerning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2505 + }, + { + "word": "verlieben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall in love", + "romanization": "verlieben", + "example_sentence_native": "Er hat sich in sie verliebt.", + "example_sentence_english": "He fell in love with her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2506 + }, + { + "word": "Wahnsinn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madness;insanity", + "romanization": "Wahnsinn", + "example_sentence_native": "Das ist doch der reine Wahnsinn!", + "example_sentence_english": "That's pure madness!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2507 + }, + { + "word": "Weber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weaver", + "romanization": "Weber", + "example_sentence_native": "Der Weber stellte feine Stoffe her.", + "example_sentence_english": "The weaver produced fine fabrics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2508 + }, + { + "word": "wenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn;to flip", + "romanization": "wenden", + "example_sentence_native": "Bitte wenden Sie das Blatt.", + "example_sentence_english": "Please turn the page.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2509 + }, + { + "word": "abgeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hand in;to give off", + "romanization": "abgeben", + "example_sentence_native": "Bitte geben Sie Ihre Hausaufgaben bis Freitag ab.", + "example_sentence_english": "Please hand in your homework by Friday.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2510 + }, + { + "word": "Arschloch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asshole", + "romanization": "Arschloch", + "example_sentence_native": "Er nannte ihn ein Arschloch.", + "example_sentence_english": "He called him an asshole.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2511 + }, + { + "word": "bedrohen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to threaten", + "romanization": "bedrohen", + "example_sentence_native": "Er versuchte, sie zu bedrohen.", + "example_sentence_english": "He tried to threaten her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2514 + }, + { + "word": "berufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appoint;to invoke", + "romanization": "berufen", + "example_sentence_native": "Er wurde in den Vorstand berufen.", + "example_sentence_english": "He was appointed to the board.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2515 + }, + { + "word": "Bewertung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rating;evaluation", + "romanization": "Bewertung", + "example_sentence_native": "Die Bewertung des Films war sehr gut.", + "example_sentence_english": "The review of the film was very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2516 + }, + { + "word": "Bischof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bishop", + "romanization": "Bischof", + "example_sentence_native": "Der Bischof hielt eine Predigt.", + "example_sentence_english": "The bishop gave a sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2518 + }, + { + "word": "Chaos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chaos", + "romanization": "Chaos", + "example_sentence_native": "Nach der Party herrschte totales Chaos.", + "example_sentence_english": "After the party, there was total chaos.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2519 + }, + { + "word": "definieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to define", + "romanization": "definieren", + "example_sentence_native": "Können Sie diesen Begriff genauer definieren?", + "example_sentence_english": "Can you define this term more precisely?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2520 + }, + { + "word": "Dichter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poet", + "romanization": "Dichter", + "example_sentence_native": "Rainer Maria Rilke war ein berühmter deutscher Dichter.", + "example_sentence_english": "Rainer Maria Rilke was a famous German poet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2521 + }, + { + "word": "ergänzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complete;to supplement", + "romanization": "ergänzen", + "example_sentence_native": "Bitte ergänzen Sie die fehlenden Informationen.", + "example_sentence_english": "Please complete the missing information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2522 + }, + { + "word": "Ersatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replacement;substitute", + "romanization": "Ersatz", + "example_sentence_native": "Wir brauchen einen Ersatz für den kaputten Stuhl.", + "example_sentence_english": "We need a replacement for the broken chair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2523 + }, + { + "word": "Erweiterung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;expansion", + "romanization": "Erweiterung", + "example_sentence_native": "Die Erweiterung des Gebäudes ist geplant.", + "example_sentence_english": "The expansion of the building is planned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2524 + }, + { + "word": "Feind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enemy", + "romanization": "Feind", + "example_sentence_native": "Er sah seinen Konkurrenten als seinen größten Feind an.", + "example_sentence_english": "He considered his competitor his greatest enemy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2525 + }, + { + "word": "Flügel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wing;grand piano", + "romanization": "Flügel", + "example_sentence_native": "Der Vogel breitete seine Flügel aus.", + "example_sentence_english": "The bird spread its wings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2526 + }, + { + "word": "Franzose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Frenchman", + "romanization": "Franzose", + "example_sentence_native": "Er ist ein Franzose und spricht fließend Deutsch.", + "example_sentence_english": "He is a Frenchman and speaks fluent German.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2527 + }, + { + "word": "Gebrauch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "use;usage", + "romanization": "Gebrauch", + "example_sentence_native": "Dieses Gerät ist einfach im Gebrauch.", + "example_sentence_english": "This device is easy to use.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2528 + }, + { + "word": "Haufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heap;pile;bunch", + "romanization": "Haufen", + "example_sentence_native": "Es lag ein großer Haufen Blätter im Garten.", + "example_sentence_english": "There was a large pile of leaves in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2529 + }, + { + "word": "Haushalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "household;budget", + "romanization": "Haushalt", + "example_sentence_native": "Der Haushalt muss sparsam geführt werden.", + "example_sentence_english": "The household budget must be managed economically.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2530 + }, + { + "word": "Herrschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rule;dominion", + "romanization": "Herrschaft", + "example_sentence_native": "Die Herrschaft des Königs dauerte viele Jahre.", + "example_sentence_english": "The king's rule lasted many years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2531 + }, + { + "word": "hierfür", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for this;for it", + "romanization": "hierfür", + "example_sentence_native": "Ich habe keine Zeit hierfür.", + "example_sentence_english": "I have no time for this.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2532 + }, + { + "word": "jüdisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jewish", + "romanization": "jüdisch", + "example_sentence_native": "Sie besuchte eine jüdische Gemeinde.", + "example_sentence_english": "She visited a Jewish community.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2533 + }, + { + "word": "Kindheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childhood", + "romanization": "Kindheit", + "example_sentence_native": "Meine Kindheit war voller schöner Erinnerungen.", + "example_sentence_english": "My childhood was full of beautiful memories.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2534 + }, + { + "word": "Knie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "knee", + "romanization": "Knie", + "example_sentence_native": "Er fiel auf die Knie.", + "example_sentence_english": "He fell to his knees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2535 + }, + { + "word": "Kontext", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "context", + "romanization": "Kontext", + "example_sentence_native": "Man muss den Satz im Kontext sehen.", + "example_sentence_english": "One must see the sentence in context.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2536 + }, + { + "word": "Krebs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crab;cancer", + "romanization": "Krebs", + "example_sentence_native": "Die Forschung gegen Krebs macht Fortschritte.", + "example_sentence_english": "Research against cancer is making progress.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2537 + }, + { + "word": "Lady", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lady", + "romanization": "Lady", + "example_sentence_native": "Die Lady trug ein elegantes Kleid.", + "example_sentence_english": "The lady wore an elegant dress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2538 + }, + { + "word": "Leidenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passion", + "romanization": "Leidenschaft", + "example_sentence_native": "Er verfolgt seine Ziele mit großer Leidenschaft.", + "example_sentence_english": "He pursues his goals with great passion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2539 + }, + { + "word": "lokal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local", + "romanization": "lokal", + "example_sentence_native": "Das ist ein lokales Problem.", + "example_sentence_english": "This is a local problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2540 + }, + { + "word": "Master", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master's degree", + "romanization": "Master", + "example_sentence_native": "Sie hat ihren Master in Biologie gemacht.", + "example_sentence_english": "She did her master's degree in biology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2541 + }, + { + "word": "Miete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rent", + "romanization": "Miete", + "example_sentence_native": "Die Miete für die Wohnung ist hoch.", + "example_sentence_english": "The rent for the apartment is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2542 + }, + { + "word": "Militär", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "military", + "romanization": "Militär", + "example_sentence_native": "Das Militär ist für die Landesverteidigung zuständig.", + "example_sentence_english": "The military is responsible for national defense.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2543 + }, + { + "word": "mobil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mobile", + "romanization": "mobil", + "example_sentence_native": "Er ist sehr mobil und reist viel.", + "example_sentence_english": "He is very mobile and travels a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2544 + }, + { + "word": "Mond", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moon", + "romanization": "Mond", + "example_sentence_native": "Der Mond scheint hell am Nachthimmel.", + "example_sentence_english": "The moon shines brightly in the night sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2545 + }, + { + "word": "nackt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naked", + "romanization": "nackt", + "example_sentence_native": "Die Bäume sind im Winter nackt.", + "example_sentence_english": "The trees are naked in winter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2546 + }, + { + "word": "peinlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embarrassing", + "romanization": "peinlich", + "example_sentence_native": "Das war eine sehr peinliche Situation.", + "example_sentence_english": "That was a very embarrassing situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2548 + }, + { + "word": "Rathaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "town hall", + "romanization": "Rathaus", + "example_sentence_native": "Das Rathaus ist ein altes Gebäude.", + "example_sentence_english": "The town hall is an old building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2550 + }, + { + "word": "Rose", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rose", + "romanization": "Rose", + "example_sentence_native": "Die Rose duftet wunderbar.", + "example_sentence_english": "The rose smells wonderful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2551 + }, + { + "word": "Schriftsteller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writer;author", + "romanization": "Schriftsteller", + "example_sentence_native": "Der Schriftsteller hat ein neues Buch veröffentlicht.", + "example_sentence_english": "The writer has published a new book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2552 + }, + { + "word": "Sprecher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speaker;spokesperson", + "romanization": "Sprecher", + "example_sentence_native": "Der Sprecher der Partei gab eine Erklärung ab.", + "example_sentence_english": "The party's spokesperson made a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2553 + }, + { + "word": "Stahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steel", + "romanization": "Stahl", + "example_sentence_native": "Brücken werden oft aus Stahl gebaut.", + "example_sentence_english": "Bridges are often built from steel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2554 + }, + { + "word": "verteidigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defend", + "romanization": "verteidigen", + "example_sentence_native": "Er musste sich vor Gericht verteidigen.", + "example_sentence_english": "He had to defend himself in court.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2555 + }, + { + "word": "vorkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to occur;to happen;to appear;to seem", + "romanization": "vorkommen", + "example_sentence_native": "Solche Fehler können vorkommen.", + "example_sentence_english": "Such mistakes can occur.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2556 + }, + { + "word": "Zitat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quote;citation", + "romanization": "Zitat", + "example_sentence_native": "Das Zitat stammt aus einem berühmten Roman.", + "example_sentence_english": "The quote comes from a famous novel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2557 + }, + { + "word": "Zoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customs;inch", + "romanization": "Zoll", + "example_sentence_native": "Wir mussten am Zoll lange warten.", + "example_sentence_english": "We had to wait a long time at customs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2558 + }, + { + "word": "überleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to survive", + "romanization": "überleben", + "example_sentence_native": "Er konnte den Unfall überleben.", + "example_sentence_english": "He was able to survive the accident.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2559 + }, + { + "word": "überprüfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check;to review", + "romanization": "überprüfen", + "example_sentence_native": "Wir müssen die Daten überprüfen.", + "example_sentence_english": "We need to check the data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2560 + }, + { + "word": "Anhalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stop;clue;point of reference", + "romanization": "Anhalt", + "example_sentence_native": "Es gibt keinen Anhalt für diese Theorie.", + "example_sentence_english": "There is no clue for this theory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2562 + }, + { + "word": "ausstatten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equip;to furnish", + "romanization": "ausstatten", + "example_sentence_native": "Die Firma wird das Büro neu ausstatten.", + "example_sentence_english": "The company will re-equip the office.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "statten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2563 + }, + { + "word": "Box", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box", + "romanization": "Box", + "example_sentence_native": "Die Box ist leer.", + "example_sentence_english": "The box is empty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2564 + }, + { + "word": "Branche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industry;branch", + "romanization": "Branche", + "example_sentence_native": "Sie arbeitet in der Finanzbranche.", + "example_sentence_english": "She works in the financial industry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2565 + }, + { + "word": "demnächst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soon;shortly", + "romanization": "demnächst", + "example_sentence_native": "Wir werden uns demnächst treffen.", + "example_sentence_english": "We will meet soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2566 + }, + { + "word": "Event", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event", + "romanization": "Event", + "example_sentence_native": "Das Event war sehr gut organisiert.", + "example_sentence_english": "The event was very well organized.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2570 + }, + { + "word": "fein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine;delicate", + "romanization": "fein", + "example_sentence_native": "Das ist ein sehr feiner Stoff.", + "example_sentence_english": "This is a very fine fabric.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2571 + }, + { + "word": "Fernseher", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "television;TV set", + "romanization": "Fernseher", + "example_sentence_native": "Der Fernseher steht im Wohnzimmer.", + "example_sentence_english": "The television is in the living room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2572 + }, + { + "word": "Fisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fish", + "romanization": "Fisch", + "example_sentence_native": "Ich esse gerne Fisch.", + "example_sentence_english": "I like to eat fish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2573 + }, + { + "word": "fit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fit;in shape", + "romanization": "fit", + "example_sentence_native": "Er ist sehr fit für sein Alter.", + "example_sentence_english": "He is very fit for his age.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2574 + }, + { + "word": "Galerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallery", + "romanization": "Galerie", + "example_sentence_native": "Die Kunstwerke in der Galerie sind beeindruckend.", + "example_sentence_english": "The artworks in the gallery are impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2575 + }, + { + "word": "heftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intense;violent;severe", + "romanization": "heftig", + "example_sentence_native": "Der Sturm war sehr heftig.", + "example_sentence_english": "The storm was very severe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2576 + }, + { + "word": "Herausforderung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "challenge", + "romanization": "Herausforderung", + "example_sentence_native": "Das Projekt ist eine große Herausforderung.", + "example_sentence_english": "The project is a big challenge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2577 + }, + { + "word": "Herzog", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duke", + "romanization": "Herzog", + "example_sentence_native": "Der Herzog regierte das Land.", + "example_sentence_english": "The duke ruled the land.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2578 + }, + { + "word": "Justiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justice;judiciary", + "romanization": "Justiz", + "example_sentence_native": "Die Justiz muss unabhängig sein.", + "example_sentence_english": "The judiciary must be independent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2580 + }, + { + "word": "Kampagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "campaign", + "romanization": "Kampagne", + "example_sentence_native": "Die politische Kampagne war sehr erfolgreich.", + "example_sentence_english": "The political campaign was very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2581 + }, + { + "word": "konkret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concrete;specific", + "romanization": "konkret", + "example_sentence_native": "Können Sie ein konkretes Beispiel geben?", + "example_sentence_english": "Can you give a concrete example?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2582 + }, + { + "word": "korrekt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "correct", + "romanization": "korrekt", + "example_sentence_native": "Ihre Antwort ist korrekt.", + "example_sentence_english": "Your answer is correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2583 + }, + { + "word": "Krone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crown", + "romanization": "Krone", + "example_sentence_native": "Die Königin trug eine goldene Krone.", + "example_sentence_english": "The queen wore a golden crown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2584 + }, + { + "word": "laufend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ongoing;current", + "romanization": "laufend", + "example_sentence_native": "Wir müssen die laufenden Kosten senken.", + "example_sentence_english": "We need to reduce the ongoing costs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2585 + }, + { + "word": "Lebensmittel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "food;groceries", + "romanization": "Lebensmittel", + "example_sentence_native": "Wir kaufen Lebensmittel im Supermarkt.", + "example_sentence_english": "We buy groceries at the supermarket.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2586 + }, + { + "word": "Level", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "level", + "romanization": "Level", + "example_sentence_native": "Er hat ein hohes Level an Erfahrung.", + "example_sentence_english": "He has a high level of experience.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2587 + }, + { + "word": "Migrant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "migrant", + "romanization": "Migrant", + "example_sentence_native": "Der Migrant suchte ein neues Zuhause.", + "example_sentence_english": "The migrant sought a new home.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2590 + }, + { + "word": "oftmals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "often;frequently", + "romanization": "oftmals", + "example_sentence_native": "Oftmals regnet es im Herbst.", + "example_sentence_english": "It often rains in autumn.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2591 + }, + { + "word": "Priester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priest", + "romanization": "Priester", + "example_sentence_native": "Der Priester hielt eine Predigt.", + "example_sentence_english": "The priest gave a sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2593 + }, + { + "word": "Russe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Russian (person)", + "romanization": "Russe", + "example_sentence_native": "Er ist ein Russe.", + "example_sentence_english": "He is a Russian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2595 + }, + { + "word": "siegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to win;to triumph", + "romanization": "siegen", + "example_sentence_native": "Sie hoffen, das Spiel zu siegen.", + "example_sentence_english": "They hope to win the game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2596 + }, + { + "word": "Stock", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stick", + "romanization": "Stock", + "example_sentence_native": "Der alte Mann benutzte einen Stock zum Gehen.", + "example_sentence_english": "The old man used a stick for walking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2597 + }, + { + "word": "Träger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carrier;bearer", + "romanization": "Träger", + "example_sentence_native": "Der Träger lieferte das Paket.", + "example_sentence_english": "The carrier delivered the package.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2598 + }, + { + "word": "Träne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tear (from crying)", + "romanization": "Träne", + "example_sentence_native": "Eine Träne lief über ihre Wange.", + "example_sentence_english": "A tear ran down her cheek.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2599 + }, + { + "word": "Unrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injustice;wrong", + "romanization": "Unrecht", + "example_sentence_native": "Es ist ein großes Unrecht, was ihm widerfahren ist.", + "example_sentence_english": "It is a great injustice what happened to him.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2600 + }, + { + "word": "Villa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villa", + "romanization": "Villa", + "example_sentence_native": "Sie wohnen in einer großen Villa am Stadtrand.", + "example_sentence_english": "They live in a large villa on the outskirts of the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2601 + }, + { + "word": "voran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forward;ahead", + "romanization": "voran", + "example_sentence_native": "Er ging voran, um den Weg zu zeigen.", + "example_sentence_english": "He went ahead to show the way.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2602 + }, + { + "word": "Wahlkampf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election campaign", + "romanization": "Wahlkampf", + "example_sentence_native": "Der Wahlkampf ist in vollem Gange.", + "example_sentence_english": "The election campaign is in full swing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2603 + }, + { + "word": "üben", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to practice;to exercise", + "romanization": "üben", + "example_sentence_native": "Ich muss mehr üben, um besser zu werden.", + "example_sentence_english": "I need to practice more to get better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2604 + }, + { + "word": "ansprechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to address;to speak to;to appeal to", + "romanization": "ansprechen", + "example_sentence_native": "Er wollte sie ansprechen, aber er war zu schüchtern.", + "example_sentence_english": "He wanted to speak to her, but he was too shy.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "sprechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2607 + }, + { + "word": "anzeigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to display;to indicate;to report", + "romanization": "anzeigen", + "example_sentence_native": "Die Uhrzeit wird digital angezeigt.", + "example_sentence_english": "The time is displayed digitally.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "zeigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2608 + }, + { + "word": "Arbeitnehmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employee", + "romanization": "Arbeitnehmer", + "example_sentence_native": "Der Arbeitnehmer hat Anspruch auf Urlaub.", + "example_sentence_english": "The employee is entitled to vacation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2610 + }, + { + "word": "Architektur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "architecture", + "romanization": "Architektur", + "example_sentence_native": "Die Architektur des Gebäudes ist beeindruckend.", + "example_sentence_english": "The architecture of the building is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2611 + }, + { + "word": "Auseinandersetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute", + "romanization": "Auseinandersetzung", + "example_sentence_native": "Es gab eine hitzige Auseinandersetzung über die neue Politik.", + "example_sentence_english": "There was a heated dispute about the new policy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2612 + }, + { + "word": "ausgerechnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of all things", + "romanization": "ausgerechnet", + "example_sentence_native": "Ausgerechnet heute muss es regnen.", + "example_sentence_english": "Of all days, it has to rain today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2613 + }, + { + "word": "aussetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suspend", + "romanization": "aussetzen", + "example_sentence_native": "Wir müssen das Training für eine Woche aussetzen.", + "example_sentence_english": "We have to suspend the training for a week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2614 + }, + { + "word": "Bach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stream", + "romanization": "Bach", + "example_sentence_native": "Der kleine Bach fließt durch den Wald.", + "example_sentence_english": "The small stream flows through the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2615 + }, + { + "word": "Bachelor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bachelor (degree)", + "romanization": "Bachelor", + "example_sentence_native": "Er hat seinen Bachelor in Informatik gemacht.", + "example_sentence_english": "He got his Bachelor's degree in computer science.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2616 + }, + { + "word": "begründen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to justify", + "romanization": "begründen", + "example_sentence_native": "Können Sie Ihre Entscheidung begründen?", + "example_sentence_english": "Can you justify your decision?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2617 + }, + { + "word": "Chor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choir", + "romanization": "Chor", + "example_sentence_native": "Der Chor singt wunderschön.", + "example_sentence_english": "The choir sings beautifully.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2618 + }, + { + "word": "demokratisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "democratic", + "romanization": "demokratisch", + "example_sentence_native": "Deutschland ist ein demokratisches Land.", + "example_sentence_english": "Germany is a democratic country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2623 + }, + { + "word": "einkaufen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to shop;to buy", + "romanization": "einkaufen", + "example_sentence_native": "Ich muss heute einkaufen gehen.", + "example_sentence_english": "I have to go shopping today.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "kaufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2624 + }, + { + "word": "erzeugen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce;to generate", + "romanization": "erzeugen", + "example_sentence_native": "Diese Fabrik erzeugt viel Energie.", + "example_sentence_english": "This factory produces a lot of energy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2626 + }, + { + "word": "erzielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to achieve;to reach", + "romanization": "erzielen", + "example_sentence_native": "Er konnte gute Ergebnisse erzielen.", + "example_sentence_english": "He was able to achieve good results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2627 + }, + { + "word": "Faktor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "factor", + "romanization": "Faktor", + "example_sentence_native": "Das ist ein wichtiger Faktor.", + "example_sentence_english": "That is an important factor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2628 + }, + { + "word": "Gemüse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "vegetable(s)", + "romanization": "Gemüse", + "example_sentence_native": "Ich esse gerne frisches Gemüse.", + "example_sentence_english": "I like to eat fresh vegetables.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2629 + }, + { + "word": "Golf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "golf", + "romanization": "Golf", + "example_sentence_native": "Er spielt gerne Golf am Wochenende.", + "example_sentence_english": "He likes to play golf on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2630 + }, + { + "word": "Haft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custody", + "romanization": "Haft", + "example_sentence_native": "Er wurde in Haft genommen.", + "example_sentence_english": "He was taken into custody.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2632 + }, + { + "word": "Heft", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "notebook", + "romanization": "Heft", + "example_sentence_native": "Bitte nimm dein Heft heraus.", + "example_sentence_english": "Please take out your notebook.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2633 + }, + { + "word": "Hitze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heat", + "romanization": "Hitze", + "example_sentence_native": "Die Hitze war unerträglich.", + "example_sentence_english": "The heat was unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2635 + }, + { + "word": "Home", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home", + "romanization": "Home", + "example_sentence_native": "Klicke auf Home, um zur Startseite zurückzukehren.", + "example_sentence_english": "Click on Home to return to the homepage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2636 + }, + { + "word": "Händler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dealer", + "romanization": "Händler", + "example_sentence_native": "Der Händler hat gute Preise.", + "example_sentence_english": "The dealer has good prices.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2637 + }, + { + "word": "italienisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Italian", + "romanization": "italienisch", + "example_sentence_native": "Ich mag italienisches Essen.", + "example_sentence_english": "I like Italian food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2638 + }, + { + "word": "krass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme;blatant", + "romanization": "krass", + "example_sentence_native": "Das ist ja krass!", + "example_sentence_english": "That's really extreme!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2640 + }, + { + "word": "Käse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cheese", + "romanization": "Käse", + "example_sentence_native": "Ich mag Käse sehr gerne.", + "example_sentence_english": "I like cheese very much.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2642 + }, + { + "word": "landen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to land", + "romanization": "landen", + "example_sentence_native": "Das Flugzeug wird bald landen.", + "example_sentence_english": "The plane will land soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2643 + }, + { + "word": "Logo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logo", + "romanization": "Logo", + "example_sentence_native": "Das Firmenlogo ist sehr bekannt.", + "example_sentence_english": "The company logo is very well-known.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2644 + }, + { + "word": "Physik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physics", + "romanization": "Physik", + "example_sentence_native": "Er studiert Physik an der Universität.", + "example_sentence_english": "He studies physics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2645 + }, + { + "word": "Planet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planet", + "romanization": "Planet", + "example_sentence_native": "Die Erde ist ein Planet.", + "example_sentence_english": "Earth is a planet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2646 + }, + { + "word": "Portal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portal", + "romanization": "Portal", + "example_sentence_native": "Das alte Portal führte in den Garten.", + "example_sentence_english": "The old portal led into the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2647 + }, + { + "word": "profitieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to profit;to benefit", + "romanization": "profitieren", + "example_sentence_native": "Wir können von dieser Erfahrung profitieren.", + "example_sentence_english": "We can benefit from this experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2648 + }, + { + "word": "Salz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salt", + "romanization": "Salz", + "example_sentence_native": "Bitte gib mir das Salz.", + "example_sentence_english": "Please give me the salt.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2652 + }, + { + "word": "sauer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sour;angry", + "romanization": "sauer", + "example_sentence_native": "Die Zitrone schmeckt sauer.", + "example_sentence_english": "The lemon tastes sour.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2653 + }, + { + "word": "Shirt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shirt", + "romanization": "Shirt", + "example_sentence_native": "Ich trage ein neues Shirt.", + "example_sentence_english": "I am wearing a new shirt.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2655 + }, + { + "word": "streng", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strict;severe", + "romanization": "streng", + "example_sentence_native": "Der Lehrer ist sehr streng.", + "example_sentence_english": "The teacher is very strict.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2657 + }, + { + "word": "stören", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to disturb;to bother", + "romanization": "stören", + "example_sentence_native": "Bitte nicht stören!", + "example_sentence_english": "Please do not disturb!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2658 + }, + { + "word": "umsonst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for free;in vain", + "romanization": "umsonst", + "example_sentence_native": "Das Konzert war umsonst.", + "example_sentence_english": "The concert was for free.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2659 + }, + { + "word": "vornehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undertake;to carry out", + "romanization": "vornehmen", + "example_sentence_native": "Wir müssen einige Änderungen vornehmen.", + "example_sentence_english": "We need to undertake some changes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2660 + }, + { + "word": "Wandel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change;transformation", + "romanization": "Wandel", + "example_sentence_native": "Der Wandel ist unvermeidlich.", + "example_sentence_english": "The change is inevitable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2661 + }, + { + "word": "wieviel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "how much;many", + "romanization": "wieviel", + "example_sentence_native": "Wieviel kostet das?", + "example_sentence_english": "How much does that cost?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2662 + }, + { + "word": "Österreicher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Austrian (male)", + "romanization": "Österreicher", + "example_sentence_native": "Er ist ein Österreicher.", + "example_sentence_english": "He is an Austrian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2664 + }, + { + "word": "Übernahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "takeover;assumption", + "romanization": "Übernahme", + "example_sentence_native": "Die Firma plant eine Übernahme.", + "example_sentence_english": "The company is planning a takeover.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2665 + }, + { + "word": "Annahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assumption;acceptance", + "romanization": "Annahme", + "example_sentence_native": "Das ist nur eine Annahme.", + "example_sentence_english": "That is just an assumption.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2667 + }, + { + "word": "auffallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stand out;to be noticeable", + "romanization": "auffallen", + "example_sentence_native": "Seine neue Frisur ist sofort aufgefallen.", + "example_sentence_english": "His new hairstyle immediately stood out.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2668 + }, + { + "word": "aufheben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pick up;to keep;to cancel", + "romanization": "aufheben", + "example_sentence_native": "Kannst du das Buch aufheben?", + "example_sentence_english": "Can you pick up the book?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "heben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2669 + }, + { + "word": "Ausländer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "foreigner", + "romanization": "Ausländer", + "example_sentence_native": "Viele Ausländer leben in Deutschland.", + "example_sentence_english": "Many foreigners live in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2670 + }, + { + "word": "Befehl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "command;order", + "romanization": "Befehl", + "example_sentence_native": "Er gab einen Befehl.", + "example_sentence_english": "He gave an order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2671 + }, + { + "word": "Berater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consultant;advisor", + "romanization": "Berater", + "example_sentence_native": "Er ist ein guter Berater.", + "example_sentence_english": "He is a good consultant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2672 + }, + { + "word": "Betrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amount;sum", + "romanization": "Betrag", + "example_sentence_native": "Bitte zahlen Sie den fälligen Betrag.", + "example_sentence_english": "Please pay the due amount.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2673 + }, + { + "word": "Bibel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bible", + "romanization": "Bibel", + "example_sentence_native": "Die Bibel ist ein wichtiges Buch für viele Menschen.", + "example_sentence_english": "The Bible is an important book for many people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2674 + }, + { + "word": "Durchschnitt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "average;mean", + "romanization": "Durchschnitt", + "example_sentence_native": "Der Durchschnitt der Noten war gut.", + "example_sentence_english": "The average of the grades was good.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2675 + }, + { + "word": "Ehefrau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wife", + "romanization": "Ehefrau", + "example_sentence_native": "Meine Ehefrau kommt aus Spanien.", + "example_sentence_english": "My wife comes from Spain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2676 + }, + { + "word": "entscheidend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucial;decisive", + "romanization": "entscheidend", + "example_sentence_native": "Das war ein entscheidender Moment.", + "example_sentence_english": "That was a decisive moment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2678 + }, + { + "word": "erstaunlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astonishing;amazing", + "romanization": "erstaunlich", + "example_sentence_native": "Das Ergebnis war erstaunlich.", + "example_sentence_english": "The result was astonishing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2679 + }, + { + "word": "finanziell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "financial", + "romanization": "finanziell", + "example_sentence_native": "Die finanzielle Lage des Unternehmens ist stabil.", + "example_sentence_english": "The financial situation of the company is stable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2680 + }, + { + "word": "Gipfel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summit;peak", + "romanization": "Gipfel", + "example_sentence_native": "Wir erreichten den Gipfel des Berges.", + "example_sentence_english": "We reached the summit of the mountain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2681 + }, + { + "word": "Gruss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "greeting", + "romanization": "Gruss", + "example_sentence_native": "Er schickte einen herzlichen Gruss.", + "example_sentence_english": "He sent a warm greeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2683 + }, + { + "word": "intensiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intensive", + "romanization": "intensiv", + "example_sentence_native": "Sie studiert intensiv für ihre Prüfungen.", + "example_sentence_english": "She studies intensively for her exams.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2684 + }, + { + "word": "Klang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sound;tone", + "romanization": "Klang", + "example_sentence_native": "Der Klang der Gitarre war wunderschön.", + "example_sentence_english": "The sound of the guitar was beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2686 + }, + { + "word": "lecker", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "delicious;tasty", + "romanization": "lecker", + "example_sentence_native": "Das Essen ist sehr lecker.", + "example_sentence_english": "The food is very delicious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2687 + }, + { + "word": "Löwe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lion", + "romanization": "Löwe", + "example_sentence_native": "Der Löwe ist ein wildes Tier.", + "example_sentence_english": "The lion is a wild animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2688 + }, + { + "word": "Mathematik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mathematics", + "romanization": "Mathematik", + "example_sentence_native": "Mathematik ist mein Lieblingsfach.", + "example_sentence_english": "Mathematics is my favorite subject.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2690 + }, + { + "word": "mitnehmen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take along", + "romanization": "mitnehmen", + "example_sentence_native": "Kannst du das Buch mitnehmen?", + "example_sentence_english": "Can you take the book along?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2692 + }, + { + "word": "Motivation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivation", + "romanization": "Motivation", + "example_sentence_native": "Sie hat viel Motivation für das Projekt.", + "example_sentence_english": "She has a lot of motivation for the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2693 + }, + { + "word": "Neubau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "new building;new construction", + "romanization": "Neubau", + "example_sentence_native": "Der Neubau wird nächstes Jahr fertig.", + "example_sentence_english": "The new building will be finished next year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2695 + }, + { + "word": "Prinzessin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "princess", + "romanization": "Prinzessin", + "example_sentence_native": "Die Prinzessin lebte in einem Schloss.", + "example_sentence_english": "The princess lived in a castle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2697 + }, + { + "word": "probieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to try;to taste", + "romanization": "probieren", + "example_sentence_native": "Möchtest du den Kuchen probieren?", + "example_sentence_english": "Would you like to try the cake?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2698 + }, + { + "word": "Profi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional;pro", + "romanization": "Profi", + "example_sentence_native": "Er ist ein echter Profi in seinem Bereich.", + "example_sentence_english": "He is a real professional in his field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2699 + }, + { + "word": "Quatsch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nonsense", + "romanization": "Quatsch", + "example_sentence_native": "Das ist doch alles Quatsch!", + "example_sentence_english": "That's all nonsense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2700 + }, + { + "word": "römisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Roman", + "romanization": "römisch", + "example_sentence_native": "Die römische Geschichte ist sehr interessant.", + "example_sentence_english": "Roman history is very interesting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2701 + }, + { + "word": "Technologie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technology", + "romanization": "Technologie", + "example_sentence_native": "Neue Technologie verändert unser Leben.", + "example_sentence_english": "New technology changes our lives.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2702 + }, + { + "word": "teilnehmen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to participate", + "romanization": "teilnehmen", + "example_sentence_native": "Ich möchte am Kurs teilnehmen.", + "example_sentence_english": "I would like to participate in the course.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "teil", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2703 + }, + { + "word": "Unterlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "document", + "romanization": "Unterlage", + "example_sentence_native": "Bitte legen Sie die Unterlagen auf den Tisch.", + "example_sentence_english": "Please put the documents on the table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2704 + }, + { + "word": "Vereinigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "union", + "romanization": "Vereinigung", + "example_sentence_native": "Die Vereinigung der beiden Länder war ein historisches Ereignis.", + "example_sentence_english": "The unification of the two countries was a historical event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2705 + }, + { + "word": "Verletzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injury", + "romanization": "Verletzung", + "example_sentence_native": "Er hat sich eine schwere Verletzung zugezogen.", + "example_sentence_english": "He sustained a serious injury.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2706 + }, + { + "word": "weinen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cry", + "romanization": "weinen", + "example_sentence_native": "Das Kind begann zu weinen.", + "example_sentence_english": "The child started to cry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2707 + }, + { + "word": "Zahn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tooth", + "romanization": "Zahn", + "example_sentence_native": "Mir tut der Zahn weh.", + "example_sentence_english": "My tooth hurts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2708 + }, + { + "word": "Aspekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aspect", + "romanization": "Aspekt", + "example_sentence_native": "Dieser Aspekt ist sehr wichtig.", + "example_sentence_english": "This aspect is very important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2710 + }, + { + "word": "ausführen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to execute;to carry out", + "romanization": "ausführen", + "example_sentence_native": "Er muss den Befehl ausführen.", + "example_sentence_english": "He has to execute the order.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2711 + }, + { + "word": "Ausstattung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipment;furnishing;features", + "romanization": "Ausstattung", + "example_sentence_native": "Die Ausstattung des Autos ist luxuriös.", + "example_sentence_english": "The car's equipment is luxurious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2712 + }, + { + "word": "beeinflussen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to influence", + "romanization": "beeinflussen", + "example_sentence_native": "Das Wetter kann unsere Stimmung beeinflussen.", + "example_sentence_english": "The weather can influence our mood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2713 + }, + { + "word": "begrenzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to limit;to restrict", + "romanization": "begrenzen", + "example_sentence_native": "Wir müssen die Ausgaben begrenzen.", + "example_sentence_english": "We must limit the expenses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2714 + }, + { + "word": "Beschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decision;resolution", + "romanization": "Beschluss", + "example_sentence_native": "Der Beschluss wurde einstimmig gefasst.", + "example_sentence_english": "The decision was made unanimously.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2715 + }, + { + "word": "Bestandteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "component;constituent part", + "romanization": "Bestandteil", + "example_sentence_native": "Wasser ist ein wichtiger Bestandteil des Lebens.", + "example_sentence_english": "Water is an important component of life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2716 + }, + { + "word": "brechen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to break", + "romanization": "brechen", + "example_sentence_native": "Er kann den Stock leicht brechen.", + "example_sentence_english": "He can easily break the stick.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2717 + }, + { + "word": "Demo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demo;demonstration", + "romanization": "Demo", + "example_sentence_native": "Die Demo war sehr friedlich.", + "example_sentence_english": "The demo was very peaceful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2720 + }, + { + "word": "Drama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drama", + "romanization": "Drama", + "example_sentence_native": "Das Drama hatte ein trauriges Ende.", + "example_sentence_english": "The drama had a sad ending.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2721 + }, + { + "word": "empfangen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to receive;to welcome", + "romanization": "empfangen", + "example_sentence_native": "Sie wird die Gäste herzlich empfangen.", + "example_sentence_english": "She will warmly welcome the guests.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2722 + }, + { + "word": "Entstehung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "origin;emergence;creation", + "romanization": "Entstehung", + "example_sentence_native": "Die Entstehung des Universums ist faszinierend.", + "example_sentence_english": "The origin of the universe is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2723 + }, + { + "word": "erlangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attain;to achieve", + "romanization": "erlangen", + "example_sentence_native": "Er möchte seine Ziele erlangen.", + "example_sentence_english": "He wants to attain his goals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2724 + }, + { + "word": "evangelisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evangelical;Protestant", + "romanization": "evangelisch", + "example_sentence_native": "Sie gehört der evangelischen Kirche an.", + "example_sentence_english": "She belongs to the Protestant church.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2725 + }, + { + "word": "gesellschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social;societal", + "romanization": "gesellschaftlich", + "example_sentence_native": "Das ist eine wichtige gesellschaftliche Frage.", + "example_sentence_english": "That is an important societal question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2726 + }, + { + "word": "Halbfinale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semi-final", + "romanization": "Halbfinale", + "example_sentence_native": "Sie haben das Halbfinale erreicht.", + "example_sentence_english": "They reached the semi-final.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2728 + }, + { + "word": "Jagd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunt;chase", + "romanization": "Jagd", + "example_sentence_native": "Die Jagd nach dem Schatz war aufregend.", + "example_sentence_english": "The hunt for the treasure was exciting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2731 + }, + { + "word": "Kenntnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knowledge;acquaintance", + "romanization": "Kenntnis", + "example_sentence_native": "Er hat gute Kenntnisse in Mathematik.", + "example_sentence_english": "He has good knowledge of mathematics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2732 + }, + { + "word": "Klage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complaint;lament;lawsuit", + "romanization": "Klage", + "example_sentence_native": "Sie reichte eine Klage gegen das Unternehmen ein.", + "example_sentence_english": "She filed a lawsuit against the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2733 + }, + { + "word": "Kloster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monastery;convent", + "romanization": "Kloster", + "example_sentence_native": "Das alte Kloster liegt auf einem Hügel.", + "example_sentence_english": "The old monastery is located on a hill.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2734 + }, + { + "word": "klären", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clarify;to clear up", + "romanization": "klären", + "example_sentence_native": "Wir müssen diese Angelegenheit klären.", + "example_sentence_english": "We need to clarify this matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2735 + }, + { + "word": "Konferenz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conference", + "romanization": "Konferenz", + "example_sentence_native": "Die Konferenz findet nächste Woche statt.", + "example_sentence_english": "The conference will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2736 + }, + { + "word": "konzentrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concentrate", + "romanization": "konzentrieren", + "example_sentence_native": "Bitte konzentrieren Sie sich auf Ihre Arbeit.", + "example_sentence_english": "Please concentrate on your work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2737 + }, + { + "word": "kürzlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently;lately", + "romanization": "kürzlich", + "example_sentence_native": "Ich habe ihn kürzlich getroffen.", + "example_sentence_english": "I met him recently.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2738 + }, + { + "word": "massiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massive;solid", + "romanization": "massiv", + "example_sentence_native": "Das ist ein massiver Tisch aus Eichenholz.", + "example_sentence_english": "That is a massive table made of oak wood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2739 + }, + { + "word": "Mädel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "girl (colloquial)", + "romanization": "Mädel", + "example_sentence_native": "Das Mädel lachte laut.", + "example_sentence_english": "The girl laughed loudly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2741 + }, + { + "word": "Objekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "object", + "romanization": "Objekt", + "example_sentence_native": "Das Objekt auf dem Tisch ist ein Buch.", + "example_sentence_english": "The object on the table is a book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2742 + }, + { + "word": "rasch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quickly;swiftly", + "romanization": "rasch", + "example_sentence_native": "Er erledigte die Aufgabe rasch.", + "example_sentence_english": "He completed the task quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2745 + }, + { + "word": "spontan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spontaneous", + "romanization": "spontan", + "example_sentence_native": "Sie traf eine spontane Entscheidung.", + "example_sentence_english": "She made a spontaneous decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2746 + }, + { + "word": "Terrorist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrorist", + "romanization": "Terrorist", + "example_sentence_native": "Der Terrorist wurde gefasst.", + "example_sentence_english": "The terrorist was caught.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2747 + }, + { + "word": "Türke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Turk;Turkish man", + "romanization": "Türke", + "example_sentence_native": "Er ist ein Türke.", + "example_sentence_english": "He is a Turk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2748 + }, + { + "word": "verraten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to betray;to reveal", + "romanization": "verraten", + "example_sentence_native": "Er würde niemals ein Geheimnis verraten.", + "example_sentence_english": "He would never reveal a secret.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2749 + }, + { + "word": "verständlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "understandable", + "romanization": "verständlich", + "example_sentence_native": "Seine Erklärung war sehr verständlich.", + "example_sentence_english": "His explanation was very understandable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2750 + }, + { + "word": "Vordergrund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreground", + "romanization": "Vordergrund", + "example_sentence_native": "Im Vordergrund des Bildes ist ein Baum zu sehen.", + "example_sentence_english": "In the foreground of the picture, a tree can be seen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2751 + }, + { + "word": "Wahrscheinlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probability", + "romanization": "Wahrscheinlichkeit", + "example_sentence_native": "Die Wahrscheinlichkeit eines Regenschauers ist hoch.", + "example_sentence_english": "The probability of a rain shower is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2752 + }, + { + "word": "Weltmeister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "world champion", + "romanization": "Weltmeister", + "example_sentence_native": "Er ist der neue Weltmeister im Boxen.", + "example_sentence_english": "He is the new world champion in boxing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2753 + }, + { + "word": "Zone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zone", + "romanization": "Zone", + "example_sentence_native": "Betreten Sie nicht die rote Zone.", + "example_sentence_english": "Do not enter the red zone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2754 + }, + { + "word": "ankündigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to announce", + "romanization": "ankündigen", + "example_sentence_native": "Sie werden die Ergebnisse bald ankündigen.", + "example_sentence_english": "They will announce the results soon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "kündigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2756 + }, + { + "word": "anweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instruct", + "romanization": "anweisen", + "example_sentence_native": "Der Lehrer wird die Schüler anweisen.", + "example_sentence_english": "The teacher will instruct the students.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2757 + }, + { + "word": "Austausch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange", + "romanization": "Austausch", + "example_sentence_native": "Der Austausch von Ideen ist wichtig.", + "example_sentence_english": "The exchange of ideas is important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2759 + }, + { + "word": "bedingen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condition;to cause", + "romanization": "bedingen", + "example_sentence_native": "Erfolg bedingt harte Arbeit.", + "example_sentence_english": "Success conditions hard work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2760 + }, + { + "word": "bergen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rescue;to salvage;to contain", + "romanization": "bergen", + "example_sentence_native": "Die Feuerwehr konnte die Katze aus dem Baum bergen.", + "example_sentence_english": "The fire department could rescue the cat from the tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2762 + }, + { + "word": "beschränken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to limit;to restrict", + "romanization": "beschränken", + "example_sentence_native": "Wir müssen unsere Ausgaben beschränken.", + "example_sentence_english": "We must limit our expenses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2763 + }, + { + "word": "Block", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "block;pad;city block", + "romanization": "Block", + "example_sentence_native": "Ich brauche einen Block und einen Stift.", + "example_sentence_english": "I need a pad and a pen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2764 + }, + { + "word": "Dialog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialogue", + "romanization": "Dialog", + "example_sentence_native": "Der Dialog zwischen den Parteien war konstruktiv.", + "example_sentence_english": "The dialogue between the parties was constructive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2766 + }, + { + "word": "Einnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income;revenue;taking in", + "romanization": "Einnahme", + "example_sentence_native": "Die Einnahmen des Unternehmens sind gestiegen.", + "example_sentence_english": "The company's revenues have increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2768 + }, + { + "word": "erhältlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "available", + "romanization": "erhältlich", + "example_sentence_native": "Das Buch ist in allen Buchhandlungen erhältlich.", + "example_sentence_english": "The book is available in all bookstores.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2769 + }, + { + "word": "errichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to erect;to establish", + "romanization": "errichten", + "example_sentence_native": "Sie wollen ein neues Gebäude errichten.", + "example_sentence_english": "They want to erect a new building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2770 + }, + { + "word": "Fassung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "version;setting;composure", + "romanization": "Fassung", + "example_sentence_native": "Das ist die neueste Fassung des Dokuments.", + "example_sentence_english": "This is the latest version of the document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2771 + }, + { + "word": "schenken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give;to present", + "romanization": "schenken", + "example_sentence_native": "Ich möchte dir ein Buch schenken.", + "example_sentence_english": "I want to give you a book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2772 + }, + { + "word": "Grab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grave;tomb", + "romanization": "Grab", + "example_sentence_native": "Sie besuchten das Grab ihres Großvaters.", + "example_sentence_english": "They visited their grandfather's grave.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2773 + }, + { + "word": "hell", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bright;light", + "romanization": "hell", + "example_sentence_native": "Das Zimmer ist sehr hell.", + "example_sentence_english": "The room is very bright.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2775 + }, + { + "word": "hübsch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pretty;handsome", + "romanization": "hübsch", + "example_sentence_native": "Sie hat ein hübsches Lächeln.", + "example_sentence_english": "She has a pretty smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2777 + }, + { + "word": "Institution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institution", + "romanization": "Institution", + "example_sentence_native": "Die Universität ist eine wichtige Institution.", + "example_sentence_english": "The university is an important institution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2778 + }, + { + "word": "investieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invest", + "romanization": "investieren", + "example_sentence_native": "Sie wollen in erneuerbare Energien investieren.", + "example_sentence_english": "They want to invest in renewable energies.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2779 + }, + { + "word": "irgend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "any", + "romanization": "irgend", + "example_sentence_native": "Hast du irgendwelche Fragen?", + "example_sentence_english": "Do you have any questions?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 2780 + }, + { + "word": "Kabel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cable", + "romanization": "Kabel", + "example_sentence_native": "Das Kabel ist zu kurz.", + "example_sentence_english": "The cable is too short.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2782 + }, + { + "word": "Kleid", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dress", + "romanization": "Kleid", + "example_sentence_native": "Sie trägt ein schönes Kleid.", + "example_sentence_english": "She is wearing a beautiful dress.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2784 + }, + { + "word": "Küste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coast", + "romanization": "Küste", + "example_sentence_native": "Wir fahren an die Küste.", + "example_sentence_english": "We are driving to the coast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2785 + }, + { + "word": "Landtag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state parliament", + "romanization": "Landtag", + "example_sentence_native": "Der Landtag hat ein neues Gesetz verabschiedet.", + "example_sentence_english": "The state parliament passed a new law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2786 + }, + { + "word": "mega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great", + "romanization": "mega", + "example_sentence_native": "Das Konzert war mega gut!", + "example_sentence_english": "The concert was mega good!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2788 + }, + { + "word": "messen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to measure", + "romanization": "messen", + "example_sentence_native": "Wir müssen die Länge des Tisches messen.", + "example_sentence_english": "We need to measure the length of the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2789 + }, + { + "word": "Note", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "note;grade", + "romanization": "Note", + "example_sentence_native": "Ich habe eine gute Note in Mathematik bekommen.", + "example_sentence_english": "I got a good grade in math.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2790 + }, + { + "word": "Pizza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pizza", + "romanization": "Pizza", + "example_sentence_native": "Wir bestellen heute Abend eine Pizza.", + "example_sentence_english": "We are ordering a pizza tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2791 + }, + { + "word": "Provinz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "province", + "romanization": "Provinz", + "example_sentence_native": "Er lebt in einer kleinen Stadt in der Provinz.", + "example_sentence_english": "He lives in a small town in the province.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2792 + }, + { + "word": "Redaktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editorial office;editorial staff", + "romanization": "Redaktion", + "example_sentence_native": "Sie arbeitet bei der Redaktion einer großen Zeitung.", + "example_sentence_english": "She works at the editorial office of a large newspaper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2793 + }, + { + "word": "schneiden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cut", + "romanization": "schneiden", + "example_sentence_native": "Kannst du bitte das Brot schneiden?", + "example_sentence_english": "Can you please cut the bread?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2794 + }, + { + "word": "seltsam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strange;odd", + "romanization": "seltsam", + "example_sentence_native": "Das ist eine sehr seltsame Geschichte.", + "example_sentence_english": "That is a very strange story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2795 + }, + { + "word": "Set", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set", + "romanization": "Set", + "example_sentence_native": "Das Filmteam baute ein neues Set auf.", + "example_sentence_english": "The film crew built a new set.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2796 + }, + { + "word": "Signal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signal", + "romanization": "Signal", + "example_sentence_native": "Er gab ein klares Signal zum Aufbruch.", + "example_sentence_english": "He gave a clear signal to depart.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2797 + }, + { + "word": "Sog", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suction;pull;undertow", + "romanization": "Sog", + "example_sentence_native": "Der Sog des Wassers war sehr stark.", + "example_sentence_english": "The pull of the water was very strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2798 + }, + { + "word": "stoppen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop", + "romanization": "stoppen", + "example_sentence_native": "Bitte stoppen Sie das Auto hier.", + "example_sentence_english": "Please stop the car here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2799 + }, + { + "word": "Symbol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symbol", + "romanization": "Symbol", + "example_sentence_native": "Das Symbol auf der Karte ist ein Herz.", + "example_sentence_english": "The symbol on the card is a heart.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2800 + }, + { + "word": "traditionell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traditional", + "romanization": "traditionell", + "example_sentence_native": "Sie trägt traditionelle Kleidung.", + "example_sentence_english": "She wears traditional clothing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 2801 + }, + { + "word": "trocken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dry", + "romanization": "trocken", + "example_sentence_native": "Das Handtuch ist trocken.", + "example_sentence_english": "The towel is dry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2802 + }, + { + "word": "Unsinn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonsense", + "romanization": "Unsinn", + "example_sentence_native": "Rede keinen Unsinn!", + "example_sentence_english": "Don't talk nonsense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2803 + }, + { + "word": "Update", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "update", + "romanization": "Update", + "example_sentence_native": "Ich muss das neue Update installieren.", + "example_sentence_english": "I need to install the new update.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2804 + }, + { + "word": "verlängern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to extend;to prolong", + "romanization": "verlängern", + "example_sentence_native": "Wir müssen den Vertrag verlängern.", + "example_sentence_english": "We need to extend the contract.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2805 + }, + { + "word": "verstecken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hide", + "romanization": "verstecken", + "example_sentence_native": "Das Kind versteckt sich hinter dem Baum.", + "example_sentence_english": "The child hides behind the tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2806 + }, + { + "word": "Vorlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "template;draft;assist (sports)", + "romanization": "Vorlage", + "example_sentence_native": "Bitte verwenden Sie diese Vorlage für Ihren Bericht.", + "example_sentence_english": "Please use this template for your report.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2809 + }, + { + "word": "Vorschrift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regulation", + "romanization": "Vorschrift", + "example_sentence_native": "Man muss die Vorschriften befolgen.", + "example_sentence_english": "One must follow the regulations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2810 + }, + { + "word": "äußern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express", + "romanization": "äußern", + "example_sentence_native": "Er konnte seine Meinung nicht äußern.", + "example_sentence_english": "He could not express his opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2811 + }, + { + "word": "Ablauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "process", + "romanization": "Ablauf", + "example_sentence_native": "Der Ablauf des Projekts war gut geplant.", + "example_sentence_english": "The process of the project was well planned.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2812 + }, + { + "word": "Abschied", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farewell", + "romanization": "Abschied", + "example_sentence_native": "Wir nahmen Abschied von unseren Freunden.", + "example_sentence_english": "We said goodbye to our friends.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2813 + }, + { + "word": "anrufen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to call", + "romanization": "anrufen", + "example_sentence_native": "Ich werde dich später anrufen.", + "example_sentence_english": "I will call you later.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "rufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2814 + }, + { + "word": "Arena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arena", + "romanization": "Arena", + "example_sentence_native": "Die Band spielte in einer großen Arena.", + "example_sentence_english": "The band played in a large arena.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2816 + }, + { + "word": "bedienen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to serve", + "romanization": "bedienen", + "example_sentence_native": "Der Kellner bedient die Gäste freundlich.", + "example_sentence_english": "The waiter serves the guests kindly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2818 + }, + { + "word": "beraten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advise", + "romanization": "beraten", + "example_sentence_native": "Er berät seine Kunden in Finanzfragen.", + "example_sentence_english": "He advises his clients on financial matters.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2819 + }, + { + "word": "bereiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prepare;to cause", + "romanization": "bereiten", + "example_sentence_native": "Das Buch bereitet mir viel Freude.", + "example_sentence_english": "The book brings me a lot of joy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2820 + }, + { + "word": "bewerten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to evaluate;to assess", + "romanization": "bewerten", + "example_sentence_native": "Der Lehrer bewertet die Arbeiten der Schüler.", + "example_sentence_english": "The teacher evaluates the students' papers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2821 + }, + { + "word": "Bewusstsein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consciousness;awareness", + "romanization": "Bewusstsein", + "example_sentence_native": "Er verlor das Bewusstsein nach dem Unfall.", + "example_sentence_english": "He lost consciousness after the accident.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2822 + }, + { + "word": "Buchstabe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "letter (of the alphabet)", + "romanization": "Buchstabe", + "example_sentence_native": "Jeder Buchstabe hat einen eigenen Klang.", + "example_sentence_english": "Every letter has its own sound.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2823 + }, + { + "word": "christlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christian", + "romanization": "christlich", + "example_sentence_native": "Sie feiert christliche Feiertage.", + "example_sentence_english": "She celebrates Christian holidays.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2824 + }, + { + "word": "digital", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "digital", + "romanization": "digital", + "example_sentence_native": "Wir leben in einem digitalen Zeitalter.", + "example_sentence_english": "We live in a digital age.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2826 + }, + { + "word": "dreimal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "three times", + "romanization": "dreimal", + "example_sentence_native": "Ich habe ihn dreimal angerufen.", + "example_sentence_english": "I called him three times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 2827 + }, + { + "word": "Eigentum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property;ownership", + "romanization": "Eigentum", + "example_sentence_native": "Das Haus ist sein persönliches Eigentum.", + "example_sentence_english": "The house is his personal property.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2828 + }, + { + "word": "Erwartung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expectation", + "romanization": "Erwartung", + "example_sentence_native": "Meine Erwartungen wurden übertroffen.", + "example_sentence_english": "My expectations were exceeded.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2829 + }, + { + "word": "finanzieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to finance", + "romanization": "finanzieren", + "example_sentence_native": "Wir müssen das Projekt finanzieren.", + "example_sentence_english": "We have to finance the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2830 + }, + { + "word": "griechisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Greek", + "romanization": "griechisch", + "example_sentence_native": "Sie isst gerne griechischen Salat.", + "example_sentence_english": "She likes to eat Greek salad.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2832 + }, + { + "word": "Hahn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rooster;tap;faucet", + "romanization": "Hahn", + "example_sentence_native": "Der Hahn kräht jeden Morgen.", + "example_sentence_english": "The rooster crows every morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2833 + }, + { + "word": "hiermit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herewith;hereby", + "romanization": "hiermit", + "example_sentence_native": "Hiermit bestätige ich den Empfang Ihrer Nachricht.", + "example_sentence_english": "Herewith I confirm the receipt of your message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 2834 + }, + { + "word": "Idiot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiot", + "romanization": "Idiot", + "example_sentence_native": "Nenn mich nicht Idiot!", + "example_sentence_english": "Don't call me an idiot!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2835 + }, + { + "word": "kontrollieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to control;to check", + "romanization": "kontrollieren", + "example_sentence_native": "Bitte kontrollieren Sie Ihre Angaben.", + "example_sentence_english": "Please check your information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2836 + }, + { + "word": "Kumpel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buddy;pal", + "romanization": "Kumpel", + "example_sentence_native": "Er ist mein bester Kumpel.", + "example_sentence_english": "He is my best buddy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2837 + }, + { + "word": "Mittag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "noon;midday", + "romanization": "Mittag", + "example_sentence_native": "Wir essen zu Mittag um zwölf Uhr.", + "example_sentence_english": "We eat lunch at twelve o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2841 + }, + { + "word": "Motiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motive;motif", + "romanization": "Motiv", + "example_sentence_native": "Das Motiv des Verbrechens war Rache.", + "example_sentence_english": "The motive for the crime was revenge.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2842 + }, + { + "word": "Muster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pattern;sample", + "romanization": "Muster", + "example_sentence_native": "Das Kleid hat ein schönes Blumenmuster.", + "example_sentence_english": "The dress has a beautiful floral pattern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2843 + }, + { + "word": "Parkplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parking space", + "romanization": "Parkplatz", + "example_sentence_native": "Gibt es hier einen freien Parkplatz?", + "example_sentence_english": "Is there a free parking space here?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2844 + }, + { + "word": "Partie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "game;match;party (group)", + "romanization": "Partie", + "example_sentence_native": "Wir haben eine Partie Schach gespielt.", + "example_sentence_english": "We played a game of chess.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2845 + }, + { + "word": "Porno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "porn", + "romanization": "Porno", + "example_sentence_native": "Er hat einen Porno auf seinem Computer gefunden.", + "example_sentence_english": "He found a porn on his computer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2846 + }, + { + "word": "Protest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protest", + "romanization": "Protest", + "example_sentence_native": "Die Studenten organisierten einen Protest gegen die neuen Regeln.", + "example_sentence_english": "The students organized a protest against the new rules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2847 + }, + { + "word": "raten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to guess;to advise", + "romanization": "raten", + "example_sentence_native": "Kannst du raten, wie alt ich bin?", + "example_sentence_english": "Can you guess how old I am?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2848 + }, + { + "word": "riesig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "huge;enormous", + "romanization": "riesig", + "example_sentence_native": "Das ist ein riesiger Hund!", + "example_sentence_english": "That is a huge dog!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2849 + }, + { + "word": "Schlacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battle", + "romanization": "Schlacht", + "example_sentence_native": "Die Schlacht war lang und blutig.", + "example_sentence_english": "The battle was long and bloody.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2850 + }, + { + "word": "Tourismus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tourism", + "romanization": "Tourismus", + "example_sentence_native": "Der Tourismus ist eine wichtige Einnahmequelle für die Region.", + "example_sentence_english": "Tourism is an important source of income for the region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2852 + }, + { + "word": "Transport", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "transport", + "romanization": "Transport", + "example_sentence_native": "Der Transport der Güter erfolgt per LKW.", + "example_sentence_english": "The transport of goods is done by truck.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2853 + }, + { + "word": "unbekannt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unknown", + "romanization": "unbekannt", + "example_sentence_native": "Der Autor des Buches ist unbekannt.", + "example_sentence_english": "The author of the book is unknown.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2854 + }, + { + "word": "vermitteln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mediate;to convey", + "romanization": "vermitteln", + "example_sentence_native": "Er versucht, zwischen den Parteien zu vermitteln.", + "example_sentence_english": "He tries to mediate between the parties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2855 + }, + { + "word": "versetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move;to transfer;to displace", + "romanization": "versetzen", + "example_sentence_native": "Der Lehrer wird in eine andere Schule versetzt.", + "example_sentence_english": "The teacher is being transferred to another school.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2856 + }, + { + "word": "Vielfalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversity;variety", + "romanization": "Vielfalt", + "example_sentence_native": "Die Vielfalt der Kulturen ist beeindruckend.", + "example_sentence_english": "The diversity of cultures is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2857 + }, + { + "word": "Virus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "virus", + "romanization": "Virus", + "example_sentence_native": "Das Virus verbreitet sich schnell.", + "example_sentence_english": "The virus is spreading quickly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2858 + }, + { + "word": "Widerspruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contradiction;objection", + "romanization": "Widerspruch", + "example_sentence_native": "Sein Argument enthält einen klaren Widerspruch.", + "example_sentence_english": "His argument contains a clear contradiction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2859 + }, + { + "word": "Wlan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Wi-Fi", + "romanization": "Wlan", + "example_sentence_native": "Haben Sie kostenloses Wlan?", + "example_sentence_english": "Do you have free Wi-Fi?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2860 + }, + { + "word": "zugänglich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessible", + "romanization": "zugänglich", + "example_sentence_native": "Der Park ist für alle zugänglich.", + "example_sentence_english": "The park is accessible to everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2861 + }, + { + "word": "Affäre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affair;scandal", + "romanization": "Affäre", + "example_sentence_native": "Die politische Affäre sorgte für Schlagzeilen.", + "example_sentence_english": "The political scandal made headlines.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2862 + }, + { + "word": "anerkennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize;to acknowledge", + "romanization": "anerkennen", + "example_sentence_native": "Er muss seinen Fehler anerkennen.", + "example_sentence_english": "He must acknowledge his mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2863 + }, + { + "word": "Angehörige", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relative;member", + "romanization": "Angehörige", + "example_sentence_native": "Die Angehörigen wurden über den Unfall informiert.", + "example_sentence_english": "The relatives were informed about the accident.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2864 + }, + { + "word": "angenehm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pleasant;comfortable", + "romanization": "angenehm", + "example_sentence_native": "Es war ein sehr angenehmer Abend.", + "example_sentence_english": "It was a very pleasant evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2865 + }, + { + "word": "aufgeben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give up;to surrender", + "romanization": "aufgeben", + "example_sentence_native": "Gib niemals deine Träume auf.", + "example_sentence_english": "Never give up your dreams.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2866 + }, + { + "word": "beachten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to observe;to pay attention to", + "romanization": "beachten", + "example_sentence_native": "Bitte beachten Sie die Regeln.", + "example_sentence_english": "Please observe the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2867 + }, + { + "word": "befreien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to free;to liberate", + "romanization": "befreien", + "example_sentence_native": "Sie versuchten, die Gefangenen zu befreien.", + "example_sentence_english": "They tried to free the prisoners.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2868 + }, + { + "word": "daheim", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at home", + "romanization": "daheim", + "example_sentence_native": "Ich fühle mich daheim am wohlsten.", + "example_sentence_english": "I feel most comfortable at home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 2871 + }, + { + "word": "Dreck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dirt;muck", + "romanization": "Dreck", + "example_sentence_native": "Mach den Dreck von deinen Schuhen ab!", + "example_sentence_english": "Get the dirt off your shoes!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2872 + }, + { + "word": "Durchführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "execution;implementation", + "romanization": "Durchführung", + "example_sentence_native": "Die Durchführung des Projekts war erfolgreich.", + "example_sentence_english": "The execution of the project was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2873 + }, + { + "word": "Entschuldigung", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apology;excuse", + "romanization": "Entschuldigung", + "example_sentence_native": "Ich schulde dir eine Entschuldigung.", + "example_sentence_english": "I owe you an apology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2875 + }, + { + "word": "festlegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to determine;to set;to define", + "romanization": "festlegen", + "example_sentence_native": "Wir müssen das Datum für das Treffen festlegen.", + "example_sentence_english": "We need to set the date for the meeting.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2876 + }, + { + "word": "golden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "golden", + "romanization": "golden", + "example_sentence_native": "Sie trug einen goldenen Ring.", + "example_sentence_english": "She wore a golden ring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2877 + }, + { + "word": "Grundstück", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plot of land;property", + "romanization": "Grundstück", + "example_sentence_native": "Sie haben ein großes Grundstück gekauft.", + "example_sentence_english": "They bought a large plot of land.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2878 + }, + { + "word": "hinterlassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave behind;to bequeath", + "romanization": "hinterlassen", + "example_sentence_native": "Er hat eine Nachricht hinterlassen.", + "example_sentence_english": "He left a message behind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2879 + }, + { + "word": "Index", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "index", + "romanization": "Index", + "example_sentence_native": "Der Index der Bücher ist sehr hilfreich.", + "example_sentence_english": "The index of the books is very helpful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2880 + }, + { + "word": "Kasse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cash register", + "romanization": "Kasse", + "example_sentence_native": "Bitte gehen Sie zur Kasse.", + "example_sentence_english": "Please go to the cash register.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2881 + }, + { + "word": "Kindergarten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kindergarten", + "romanization": "Kindergarten", + "example_sentence_native": "Mein Kind geht in den Kindergarten.", + "example_sentence_english": "My child goes to kindergarten.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2882 + }, + { + "word": "Knochen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bone", + "romanization": "Knochen", + "example_sentence_native": "Der Hund vergräbt seinen Knochen im Garten.", + "example_sentence_english": "The dog buries its bone in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2883 + }, + { + "word": "Kriterium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criterion", + "romanization": "Kriterium", + "example_sentence_native": "Das wichtigste Kriterium ist die Qualität.", + "example_sentence_english": "The most important criterion is quality.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2884 + }, + { + "word": "Laune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mood", + "romanization": "Laune", + "example_sentence_native": "Sie hat heute gute Laune.", + "example_sentence_english": "She is in a good mood today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2885 + }, + { + "word": "leiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lead", + "romanization": "leiten", + "example_sentence_native": "Er wird das Projekt leiten.", + "example_sentence_english": "He will lead the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2886 + }, + { + "word": "Logik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logic", + "romanization": "Logik", + "example_sentence_native": "Die Logik seiner Argumente ist überzeugend.", + "example_sentence_english": "The logic of his arguments is convincing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2887 + }, + { + "word": "medizinisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medical", + "romanization": "medizinisch", + "example_sentence_native": "Er hat eine medizinische Ausbildung.", + "example_sentence_english": "He has a medical education.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2888 + }, + { + "word": "Mittelalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Middle Ages", + "romanization": "Mittelalter", + "example_sentence_native": "Das Mittelalter war eine lange Periode in der europäischen Geschichte.", + "example_sentence_english": "The Middle Ages was a long period in European history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2890 + }, + { + "word": "Onkel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "uncle", + "romanization": "Onkel", + "example_sentence_native": "Mein Onkel kommt uns nächste Woche besuchen.", + "example_sentence_english": "My uncle is coming to visit us next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2892 + }, + { + "word": "Pokal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cup", + "romanization": "Pokal", + "example_sentence_native": "Die Mannschaft hat den Pokal gewonnen.", + "example_sentence_english": "The team won the cup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2893 + }, + { + "word": "Propaganda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propaganda", + "romanization": "Propaganda", + "example_sentence_native": "Die Regierung verbreitete Propaganda, um die öffentliche Meinung zu beeinflussen.", + "example_sentence_english": "The government spread propaganda to influence public opinion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2894 + }, + { + "word": "Qualifikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification", + "romanization": "Qualifikation", + "example_sentence_native": "Er hat die notwendige Qualifikation für diese Stelle.", + "example_sentence_english": "He has the necessary qualification for this position.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2895 + }, + { + "word": "quer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "across", + "romanization": "quer", + "example_sentence_native": "Er legte das Buch quer auf den Tisch.", + "example_sentence_english": "He laid the book crosswise on the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2896 + }, + { + "word": "rechtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal", + "romanization": "rechtlich", + "example_sentence_native": "Wir müssen die rechtlichen Aspekte prüfen.", + "example_sentence_english": "We need to examine the legal aspects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2898 + }, + { + "word": "Regisseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "director", + "romanization": "Regisseur", + "example_sentence_native": "Der Regisseur hat einen neuen Film gedreht.", + "example_sentence_english": "The director shot a new film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2899 + }, + { + "word": "Schulter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shoulder", + "romanization": "Schulter", + "example_sentence_native": "Sie hat Schmerzen in der Schulter.", + "example_sentence_english": "She has pain in her shoulder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2903 + }, + { + "word": "senden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to send", + "romanization": "senden", + "example_sentence_native": "Ich werde dir eine E-Mail senden.", + "example_sentence_english": "I will send you an email.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2904 + }, + { + "word": "Streifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stripe", + "romanization": "Streifen", + "example_sentence_native": "Das Hemd hat blaue Streifen.", + "example_sentence_english": "The shirt has blue stripes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2905 + }, + { + "word": "Stuhl", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chair", + "romanization": "Stuhl", + "example_sentence_native": "Bitte setzen Sie sich auf den Stuhl.", + "example_sentence_english": "Please sit on the chair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2906 + }, + { + "word": "Talent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talent", + "romanization": "Talent", + "example_sentence_native": "Sie hat ein großes Talent für Musik.", + "example_sentence_english": "She has a great talent for music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2907 + }, + { + "word": "Ticket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ticket", + "romanization": "Ticket", + "example_sentence_native": "Ich brauche ein Ticket für den Zug.", + "example_sentence_english": "I need a ticket for the train.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2908 + }, + { + "word": "vertraut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "familiar", + "romanization": "vertraut", + "example_sentence_native": "Diese Melodie ist mir sehr vertraut.", + "example_sentence_english": "This melody is very familiar to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2909 + }, + { + "word": "Vorwurf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reproach;accusation", + "romanization": "Vorwurf", + "example_sentence_native": "Er machte ihr einen Vorwurf wegen ihrer Verspätung.", + "example_sentence_english": "He made an accusation against her because of her delay.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2910 + }, + { + "word": "Ware", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goods;merchandise", + "romanization": "Ware", + "example_sentence_native": "Die Ware wird morgen geliefert.", + "example_sentence_english": "The goods will be delivered tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2911 + }, + { + "word": "weiblich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female;feminine", + "romanization": "weiblich", + "example_sentence_native": "Sie hat eine sehr weibliche Ausstrahlung.", + "example_sentence_english": "She has a very feminine aura.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2912 + }, + { + "word": "wetten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bet", + "romanization": "wetten", + "example_sentence_native": "Ich wette, dass es morgen regnen wird.", + "example_sentence_english": "I bet that it will rain tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2913 + }, + { + "word": "Wurzel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "root", + "romanization": "Wurzel", + "example_sentence_native": "Die Pflanze hat tiefe Wurzeln.", + "example_sentence_english": "The plant has deep roots.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2915 + }, + { + "word": "Wut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rage;fury", + "romanization": "Wut", + "example_sentence_native": "Er war voller Wut über die Ungerechtigkeit.", + "example_sentence_english": "He was full of rage about the injustice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2916 + }, + { + "word": "Zins", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interest (financial)", + "romanization": "Zins", + "example_sentence_native": "Die Bank zahlt hohe Zinsen auf Spareinlagen.", + "example_sentence_english": "The bank pays high interest on savings deposits.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2917 + }, + { + "word": "Abstimmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vote;coordination;tuning", + "romanization": "Abstimmung", + "example_sentence_native": "Die Abstimmung über das neue Gesetz findet morgen statt.", + "example_sentence_english": "The vote on the new law will take place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2918 + }, + { + "word": "Anruf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "call;phone call", + "romanization": "Anruf", + "example_sentence_native": "Ich habe einen Anruf von meiner Mutter bekommen.", + "example_sentence_english": "I received a call from my mother.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2919 + }, + { + "word": "Armut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poverty", + "romanization": "Armut", + "example_sentence_native": "Viele Menschen leben in Armut.", + "example_sentence_english": "Many people live in poverty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2920 + }, + { + "word": "decken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cover", + "romanization": "decken", + "example_sentence_native": "Bitte deck den Tisch.", + "example_sentence_english": "Please set the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2921 + }, + { + "word": "derart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "such;of such a kind", + "romanization": "derart", + "example_sentence_native": "Er war derart müde, dass er sofort einschlief.", + "example_sentence_english": "He was so tired that he fell asleep immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 2922 + }, + { + "word": "Dokument", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "document", + "romanization": "Dokument", + "example_sentence_native": "Bitte reichen Sie alle notwendigen Dokumente ein.", + "example_sentence_english": "Please submit all necessary documents.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2923 + }, + { + "word": "dorthin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "there (to that place)", + "romanization": "dorthin", + "example_sentence_native": "Wir müssen dorthin gehen.", + "example_sentence_english": "We have to go there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 2924 + }, + { + "word": "einverstanden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "agreed;in agreement", + "romanization": "einverstanden", + "example_sentence_native": "Sind Sie damit einverstanden?", + "example_sentence_english": "Do you agree with that?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2926 + }, + { + "word": "entspannt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxed", + "romanization": "entspannt", + "example_sentence_native": "Nach dem Urlaub war sie sehr entspannt.", + "example_sentence_english": "After the vacation, she was very relaxed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2927 + }, + { + "word": "Ermittlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigation;inquiry", + "romanization": "Ermittlung", + "example_sentence_native": "Die Polizei hat die Ermittlungen aufgenommen.", + "example_sentence_english": "The police have started the investigation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2928 + }, + { + "word": "fern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "far;distant", + "romanization": "fern", + "example_sentence_native": "Das Dorf liegt fernab der Stadt.", + "example_sentence_english": "The village is far from the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2929 + }, + { + "word": "genießen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enjoy", + "romanization": "genießen", + "example_sentence_native": "Ich möchte das schöne Wetter genießen.", + "example_sentence_english": "I want to enjoy the beautiful weather.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2931 + }, + { + "word": "Grundschule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "primary school", + "romanization": "Grundschule", + "example_sentence_native": "Meine Kinder gehen in die Grundschule.", + "example_sentence_english": "My children go to primary school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2934 + }, + { + "word": "heil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whole;intact", + "romanization": "heil", + "example_sentence_native": "Das Glas ist noch heil.", + "example_sentence_english": "The glass is still intact.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2935 + }, + { + "word": "Immobilie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate;property", + "romanization": "Immobilie", + "example_sentence_native": "Der Kauf einer Immobilie ist eine große Investition.", + "example_sentence_english": "Buying a property is a big investment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2938 + }, + { + "word": "klagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complain;to sue", + "romanization": "klagen", + "example_sentence_native": "Er klagt oft über Kopfschmerzen.", + "example_sentence_english": "He often complains about headaches.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2939 + }, + { + "word": "Klassiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classic", + "romanization": "Klassiker", + "example_sentence_native": "Dieser Film ist ein echter Klassiker.", + "example_sentence_english": "This film is a true classic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2940 + }, + { + "word": "Lippe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lip", + "romanization": "Lippe", + "example_sentence_native": "Sie hat rote Lippen.", + "example_sentence_english": "She has red lips.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2942 + }, + { + "word": "Meldung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report", + "romanization": "Meldung", + "example_sentence_native": "Es gab eine wichtige Meldung in den Nachrichten.", + "example_sentence_english": "There was an important report in the news.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2943 + }, + { + "word": "Muslim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Muslim", + "romanization": "Muslim", + "example_sentence_native": "Er ist ein gläubiger Muslim.", + "example_sentence_english": "He is a devout Muslim.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2945 + }, + { + "word": "nebenbei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by the way", + "romanization": "nebenbei", + "example_sentence_native": "Nebenbei bemerkt, wie geht es deiner Familie?", + "example_sentence_english": "By the way, how is your family?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 2946 + }, + { + "word": "off", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "off", + "romanization": "off", + "example_sentence_native": "Das Licht ist off.", + "example_sentence_english": "The light is off.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2948 + }, + { + "word": "Power", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "power", + "romanization": "Power", + "example_sentence_native": "Sie hat viel Power für den Sport.", + "example_sentence_english": "She has a lot of power for sports.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2949 + }, + { + "word": "Reform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reform", + "romanization": "Reform", + "example_sentence_native": "Die Regierung plant eine große Reform des Bildungssystems.", + "example_sentence_english": "The government plans a major reform of the education system.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2950 + }, + { + "word": "scheitern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail", + "romanization": "scheitern", + "example_sentence_native": "Er befürchtet, dass der Plan scheitern wird.", + "example_sentence_english": "He fears that the plan will fail.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2951 + }, + { + "word": "Spieltag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matchday", + "romanization": "Spieltag", + "example_sentence_native": "Der nächste Spieltag ist am Samstag.", + "example_sentence_english": "The next matchday is on Saturday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2952 + }, + { + "word": "träumen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dream", + "romanization": "träumen", + "example_sentence_native": "Ich träume oft von Reisen.", + "example_sentence_english": "I often dream of traveling.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2953 + }, + { + "word": "Verordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regulation", + "romanization": "Verordnung", + "example_sentence_native": "Die neue Verordnung tritt nächste Woche in Kraft.", + "example_sentence_english": "The new regulation comes into force next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2954 + }, + { + "word": "wunderschön", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beautiful;wonderful", + "romanization": "wunderschön", + "example_sentence_native": "Das ist ein wunderschönes Kleid.", + "example_sentence_english": "That is a beautiful dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2956 + }, + { + "word": "Abkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;treaty", + "romanization": "Abkommen", + "example_sentence_native": "Die beiden Länder haben ein neues Abkommen unterzeichnet.", + "example_sentence_english": "The two countries have signed a new agreement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2957 + }, + { + "word": "Agentur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agency", + "romanization": "Agentur", + "example_sentence_native": "Er arbeitet bei einer Werbeagentur.", + "example_sentence_english": "He works at an advertising agency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2958 + }, + { + "word": "Argument", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "argument", + "romanization": "Argument", + "example_sentence_native": "Er hatte ein starkes Argument.", + "example_sentence_english": "He had a strong argument.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2960 + }, + { + "word": "Ausführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "execution;version", + "romanization": "Ausführung", + "example_sentence_native": "Die Ausführung des Plans war perfekt.", + "example_sentence_english": "The execution of the plan was perfect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2961 + }, + { + "word": "billig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheap", + "romanization": "billig", + "example_sentence_native": "Das ist ein billiges Auto.", + "example_sentence_english": "That is a cheap car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2962 + }, + { + "word": "blind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blind", + "romanization": "blind", + "example_sentence_native": "Er ist blind auf einem Auge.", + "example_sentence_english": "He is blind in one eye.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2963 + }, + { + "word": "Bonus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bonus", + "romanization": "Bonus", + "example_sentence_native": "Die Mitarbeiter erhielten einen Bonus.", + "example_sentence_english": "The employees received a bonus.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2964 + }, + { + "word": "chinesisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Chinese", + "romanization": "chinesisch", + "example_sentence_native": "Ich mag chinesisches Essen.", + "example_sentence_english": "I like Chinese food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2965 + }, + { + "word": "Content", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "content", + "romanization": "Content", + "example_sentence_native": "Der Content dieser Webseite ist sehr gut.", + "example_sentence_english": "The content of this website is very good.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2966 + }, + { + "word": "dauerhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanent;durable", + "romanization": "dauerhaft", + "example_sentence_native": "Diese Farbe ist dauerhaft.", + "example_sentence_english": "This color is permanent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2967 + }, + { + "word": "durchschnittlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "average", + "romanization": "durchschnittlich", + "example_sentence_native": "Die durchschnittliche Temperatur war 20 Grad.", + "example_sentence_english": "The average temperature was 20 degrees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2969 + }, + { + "word": "Ehemann", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "husband", + "romanization": "Ehemann", + "example_sentence_native": "Mein Ehemann kommt heute Abend nach Hause.", + "example_sentence_english": "My husband is coming home tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2971 + }, + { + "word": "eingehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enter;to agree to", + "romanization": "eingehen", + "example_sentence_native": "Wir müssen auf die Details eingehen.", + "example_sentence_english": "We need to go into the details.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2972 + }, + { + "word": "Empfang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reception;receipt", + "romanization": "Empfang", + "example_sentence_native": "Der Empfang im Hotel war sehr freundlich.", + "example_sentence_english": "The reception at the hotel was very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2973 + }, + { + "word": "erkennbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognizable;discernible", + "romanization": "erkennbar", + "example_sentence_native": "Seine Handschrift ist kaum erkennbar.", + "example_sentence_english": "His handwriting is barely recognizable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2975 + }, + { + "word": "Gras", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grass", + "romanization": "Gras", + "example_sentence_native": "Das Gras ist sehr grün.", + "example_sentence_english": "The grass is very green.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2977 + }, + { + "word": "heiraten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to marry", + "romanization": "heiraten", + "example_sentence_native": "Sie wollen nächstes Jahr heiraten.", + "example_sentence_english": "They want to marry next year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2979 + }, + { + "word": "Höhepunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climax;peak;highlight", + "romanization": "Höhepunkt", + "example_sentence_native": "Der Höhepunkt des Konzerts war das Solo des Gitarristen.", + "example_sentence_english": "The highlight of the concert was the guitarist's solo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2980 + }, + { + "word": "Katastrophe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catastrophe;disaster", + "romanization": "Katastrophe", + "example_sentence_native": "Die Überschwemmung war eine große Katastrophe für die Region.", + "example_sentence_english": "The flood was a great disaster for the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2983 + }, + { + "word": "Kette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chain;necklace", + "romanization": "Kette", + "example_sentence_native": "Sie trug eine goldene Kette um ihren Hals.", + "example_sentence_english": "She wore a golden chain around her neck.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2984 + }, + { + "word": "langfristig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long-term", + "romanization": "langfristig", + "example_sentence_native": "Wir brauchen eine langfristige Lösung für dieses Problem.", + "example_sentence_english": "We need a long-term solution for this problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2985 + }, + { + "word": "Legende", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legend", + "romanization": "Legende", + "example_sentence_native": "Die Legende besagt, dass hier ein Drache lebte.", + "example_sentence_english": "The legend says that a dragon lived here.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2987 + }, + { + "word": "Mangel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lack;shortage", + "romanization": "Mangel", + "example_sentence_native": "Es gibt einen Mangel an qualifizierten Arbeitskräften.", + "example_sentence_english": "There is a shortage of skilled workers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2990 + }, + { + "word": "Medikament", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "medication;medicine", + "romanization": "Medikament", + "example_sentence_native": "Nehmen Sie dieses Medikament zweimal täglich.", + "example_sentence_english": "Take this medication twice a day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2991 + }, + { + "word": "mitmachen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to participate;to join in", + "romanization": "mitmachen", + "example_sentence_native": "Möchtest du bei dem Spiel mitmachen?", + "example_sentence_english": "Do you want to join in the game?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 2992 + }, + { + "word": "passend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitable;fitting", + "romanization": "passend", + "example_sentence_native": "Das ist eine sehr passende Antwort.", + "example_sentence_english": "That is a very suitable answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2995 + }, + { + "word": "Premiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premiere", + "romanization": "Premiere", + "example_sentence_native": "Die Premiere des Films war ein großer Erfolg.", + "example_sentence_english": "The premiere of the film was a great success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2996 + }, + { + "word": "reichlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ample;abundant;plenty of", + "romanization": "reichlich", + "example_sentence_native": "Es gab reichlich Essen für alle.", + "example_sentence_english": "There was ample food for everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 2997 + }, + { + "word": "Sack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sack;bag", + "romanization": "Sack", + "example_sentence_native": "Er trug einen schweren Sack auf dem Rücken.", + "example_sentence_english": "He carried a heavy sack on his back.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 2999 + }, + { + "word": "schief", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crooked", + "romanization": "schief", + "example_sentence_native": "Das Bild hängt schief an der Wand.", + "example_sentence_english": "The picture hangs crooked on the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3000 + }, + { + "word": "Schild", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sign", + "romanization": "Schild", + "example_sentence_native": "Das Schild zeigt den Weg zum Bahnhof.", + "example_sentence_english": "The sign shows the way to the train station.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 3001 + }, + { + "word": "Schild", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sign;plate", + "romanization": "Schild", + "example_sentence_native": "Das Schild zeigt den Weg.", + "example_sentence_english": "The sign shows the way.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "word_frequency": 3001 + }, + { + "word": "sonstig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "other;remaining", + "romanization": "sonstig", + "example_sentence_native": "Gibt es noch sonstige Fragen?", + "example_sentence_english": "Are there any other questions?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3002 + }, + { + "word": "springen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to jump", + "romanization": "springen", + "example_sentence_native": "Die Kinder springen im Garten.", + "example_sentence_english": "The children jump in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3003 + }, + { + "word": "Stille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silence", + "romanization": "Stille", + "example_sentence_native": "Sie genoss die Stille des Waldes.", + "example_sentence_english": "She enjoyed the silence of the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3004 + }, + { + "word": "städtisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban;municipal", + "romanization": "städtisch", + "example_sentence_native": "Die städtische Bibliothek ist sehr groß.", + "example_sentence_english": "The municipal library is very large.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3005 + }, + { + "word": "Umsatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenue;sales", + "romanization": "Umsatz", + "example_sentence_native": "Der Umsatz des Unternehmens ist im letzten Quartal gestiegen.", + "example_sentence_english": "The company's revenue increased in the last quarter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3006 + }, + { + "word": "verhaften", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrest", + "romanization": "verhaften", + "example_sentence_native": "Die Polizei wird den Verdächtigen verhaften.", + "example_sentence_english": "The police will arrest the suspect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3007 + }, + { + "word": "verlegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to misplace;to publish", + "romanization": "verlegen", + "example_sentence_native": "Ich habe meine Schlüssel verlegt.", + "example_sentence_english": "I have misplaced my keys.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3008 + }, + { + "word": "Versammlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meeting;assembly", + "romanization": "Versammlung", + "example_sentence_native": "Die Versammlung beginnt um zehn Uhr.", + "example_sentence_english": "The meeting starts at ten o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3009 + }, + { + "word": "Vorsitzende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chairwoman", + "romanization": "Vorsitzende", + "example_sentence_native": "Die Vorsitzende eröffnete die Sitzung.", + "example_sentence_english": "The chairwoman opened the meeting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3010 + }, + { + "word": "Welle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wave", + "romanization": "Welle", + "example_sentence_native": "Eine große Welle traf das Boot.", + "example_sentence_english": "A big wave hit the boat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3011 + }, + { + "word": "Wärme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warmth;heat", + "romanization": "Wärme", + "example_sentence_native": "Die Sonne spendet viel Wärme.", + "example_sentence_english": "The sun provides a lot of warmth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3014 + }, + { + "word": "zeichnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to draw;to sign", + "romanization": "zeichnen", + "example_sentence_native": "Er kann sehr gut zeichnen.", + "example_sentence_english": "He can draw very well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3015 + }, + { + "word": "zitieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quote;to cite", + "romanization": "zitieren", + "example_sentence_native": "Sie zitierte einen berühmten Autor.", + "example_sentence_english": "She quoted a famous author.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3016 + }, + { + "word": "Überwachung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surveillance;monitoring", + "romanization": "Überwachung", + "example_sentence_native": "Die Überwachung des Gebiets wurde verstärkt.", + "example_sentence_english": "The surveillance of the area was increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3018 + }, + { + "word": "Altstadt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "old town;historic center", + "romanization": "Altstadt", + "example_sentence_native": "Wir besuchten die schöne Altstadt.", + "example_sentence_english": "We visited the beautiful old town.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3019 + }, + { + "word": "Belastung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burden;load;stress", + "romanization": "Belastung", + "example_sentence_native": "Die hohe Belastung am Arbeitsplatz führte zu Stress.", + "example_sentence_english": "The high workload at the workplace led to stress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3021 + }, + { + "word": "berühren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to touch", + "romanization": "berühren", + "example_sentence_native": "Bitte berühren Sie die Kunstwerke nicht.", + "example_sentence_english": "Please do not touch the artworks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3022 + }, + { + "word": "besorgen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get;to procure", + "romanization": "besorgen", + "example_sentence_native": "Ich muss noch Brot besorgen.", + "example_sentence_english": "I still need to get bread.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3023 + }, + { + "word": "College", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "college", + "romanization": "College", + "example_sentence_native": "Mein Bruder studiert am College.", + "example_sentence_english": "My brother studies at college.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3024 + }, + { + "word": "Durchmesser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diameter", + "romanization": "Durchmesser", + "example_sentence_native": "Der Durchmesser des Kreises beträgt fünf Zentimeter.", + "example_sentence_english": "The diameter of the circle is five centimeters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3026 + }, + { + "word": "durchsetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assert oneself;to enforce", + "romanization": "durchsetzen", + "example_sentence_native": "Er konnte seine Meinung durchsetzen.", + "example_sentence_english": "He was able to assert his opinion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3027 + }, + { + "word": "Eigentümer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owner", + "romanization": "Eigentümer", + "example_sentence_native": "Der Eigentümer des Hauses wohnt im Ausland.", + "example_sentence_english": "The owner of the house lives abroad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3028 + }, + { + "word": "Erhöhung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase", + "romanization": "Erhöhung", + "example_sentence_native": "Die Erhöhung der Mieten ist ein großes Problem.", + "example_sentence_english": "The increase in rents is a big problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3030 + }, + { + "word": "Erkenntnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insight", + "romanization": "Erkenntnis", + "example_sentence_native": "Diese Erkenntnis war für ihn lebensverändernd.", + "example_sentence_english": "This insight was life-changing for him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3031 + }, + { + "word": "Erziehung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upbringing", + "romanization": "Erziehung", + "example_sentence_native": "Eine gute Erziehung ist wichtig für die Entwicklung eines Kindes.", + "example_sentence_english": "A good upbringing is important for a child's development.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3032 + }, + { + "word": "Frühling", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spring", + "romanization": "Frühling", + "example_sentence_native": "Der Frühling ist meine Lieblingsjahreszeit.", + "example_sentence_english": "Spring is my favorite season.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3034 + }, + { + "word": "Geduld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patience", + "romanization": "Geduld", + "example_sentence_native": "Man braucht viel Geduld, um eine neue Sprache zu lernen.", + "example_sentence_english": "One needs a lot of patience to learn a new language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3036 + }, + { + "word": "gefährden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to endanger", + "romanization": "gefährden", + "example_sentence_native": "Rauchen kann Ihre Gesundheit gefährden.", + "example_sentence_english": "Smoking can endanger your health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3037 + }, + { + "word": "zielen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to aim", + "romanization": "zielen", + "example_sentence_native": "Er zielte mit dem Pfeil auf die Zielscheibe.", + "example_sentence_english": "He aimed the arrow at the target.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3038 + }, + { + "word": "Gründer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founder", + "romanization": "Gründer", + "example_sentence_native": "Der Gründer des Unternehmens war sehr visionär.", + "example_sentence_english": "The founder of the company was very visionary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3039 + }, + { + "word": "hilfreich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helpful", + "romanization": "hilfreich", + "example_sentence_native": "Das ist eine sehr hilfreiche Information.", + "example_sentence_english": "That is very helpful information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3040 + }, + { + "word": "Hobby", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hobby", + "romanization": "Hobby", + "example_sentence_native": "Mein Hobby ist Lesen.", + "example_sentence_english": "My hobby is reading.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3042 + }, + { + "word": "Instrument", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "instrument", + "romanization": "Instrument", + "example_sentence_native": "Welches Instrument spielst du?", + "example_sentence_english": "Which instrument do you play?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3043 + }, + { + "word": "integrieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to integrate", + "romanization": "integrieren", + "example_sentence_native": "Wir müssen neue Mitarbeiter gut integrieren.", + "example_sentence_english": "We need to integrate new employees well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3044 + }, + { + "word": "Kritiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "critic", + "romanization": "Kritiker", + "example_sentence_native": "Der Kritiker lobte den Film.", + "example_sentence_english": "The critic praised the film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3045 + }, + { + "word": "Kämpfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fighter", + "romanization": "Kämpfer", + "example_sentence_native": "Er ist ein wahrer Kämpfer.", + "example_sentence_english": "He is a true fighter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3046 + }, + { + "word": "letztendlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimately", + "romanization": "letztendlich", + "example_sentence_native": "Letztendlich haben wir die Lösung gefunden.", + "example_sentence_english": "Ultimately, we found the solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3047 + }, + { + "word": "Lohn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wage", + "romanization": "Lohn", + "example_sentence_native": "Der Lohn wird am Ende des Monats ausgezahlt.", + "example_sentence_english": "The wage is paid out at the end of the month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3048 + }, + { + "word": "mieten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rent", + "romanization": "mieten", + "example_sentence_native": "Wir wollen ein Auto mieten.", + "example_sentence_english": "We want to rent a car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3049 + }, + { + "word": "Ministerium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ministry", + "romanization": "Ministerium", + "example_sentence_native": "Das Ministerium hat eine neue Verordnung erlassen.", + "example_sentence_english": "The ministry has issued a new regulation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3050 + }, + { + "word": "nahen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach;to draw near", + "romanization": "nahen", + "example_sentence_native": "Der Sturm naht schnell.", + "example_sentence_english": "The storm is approaching quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3052 + }, + { + "word": "Psychologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychology", + "romanization": "Psychologie", + "example_sentence_native": "Sie studiert Psychologie an der Universität.", + "example_sentence_english": "She studies psychology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3053 + }, + { + "word": "Senat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senate", + "romanization": "Senat", + "example_sentence_native": "Der Senat hat dem Gesetz zugestimmt.", + "example_sentence_english": "The senate has approved the law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3054 + }, + { + "word": "soeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "just now;just", + "romanization": "soeben", + "example_sentence_native": "Er ist soeben angekommen.", + "example_sentence_english": "He has just arrived.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3056 + }, + { + "word": "Staatsanwaltschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public prosecutor's office", + "romanization": "Staatsanwaltschaft", + "example_sentence_native": "Die Staatsanwaltschaft hat Anklage erhoben.", + "example_sentence_english": "The public prosecutor's office has filed charges.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3057 + }, + { + "word": "Wahrnehmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perception", + "romanization": "Wahrnehmung", + "example_sentence_native": "Die Wahrnehmung der Realität ist subjektiv.", + "example_sentence_english": "The perception of reality is subjective.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3058 + }, + { + "word": "weichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to yield;to give way", + "romanization": "weichen", + "example_sentence_native": "Der Baum musste dem starken Wind weichen.", + "example_sentence_english": "The tree had to yield to the strong wind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3059 + }, + { + "word": "Wende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turning point", + "romanization": "Wende", + "example_sentence_native": "Die Wende in der Geschichte war unerwartet.", + "example_sentence_english": "The turning point in history was unexpected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3060 + }, + { + "word": "Werkstatt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "workshop", + "romanization": "Werkstatt", + "example_sentence_native": "Mein Auto ist in der Werkstatt.", + "example_sentence_english": "My car is in the workshop.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3061 + }, + { + "word": "Zunge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tongue", + "romanization": "Zunge", + "example_sentence_native": "Er streckte die Zunge heraus.", + "example_sentence_english": "He stuck out his tongue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3062 + }, + { + "word": "zurzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currently", + "romanization": "zurzeit", + "example_sentence_native": "Zurzeit arbeite ich an einem neuen Projekt.", + "example_sentence_english": "Currently, I am working on a new project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3063 + }, + { + "word": "Aufenthalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stay", + "romanization": "Aufenthalt", + "example_sentence_native": "Mein Aufenthalt in Berlin war sehr angenehm.", + "example_sentence_english": "My stay in Berlin was very pleasant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3066 + }, + { + "word": "basieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be based on", + "romanization": "basieren", + "example_sentence_native": "Die Theorie basiert auf neuen Erkenntnissen.", + "example_sentence_english": "The theory is based on new findings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3067 + }, + { + "word": "begrüßen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to greet", + "romanization": "begrüßen", + "example_sentence_native": "Wir begrüßen unsere Gäste herzlich.", + "example_sentence_english": "We warmly welcome our guests.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3068 + }, + { + "word": "berechtigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entitled", + "romanization": "berechtigt", + "example_sentence_native": "Sie sind zu dieser Leistung berechtigt.", + "example_sentence_english": "You are entitled to this service.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3069 + }, + { + "word": "Betreuung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "care;supervision", + "romanization": "Betreuung", + "example_sentence_native": "Die Betreuung der Kinder ist sehr wichtig.", + "example_sentence_english": "The care of the children is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3070 + }, + { + "word": "Börse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stock exchange;purse", + "romanization": "Börse", + "example_sentence_native": "Die Börse hat heute geschlossen.", + "example_sentence_english": "The stock exchange is closed today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3071 + }, + { + "word": "doof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stupid;silly", + "romanization": "doof", + "example_sentence_native": "Das ist eine doofe Idee.", + "example_sentence_english": "That is a stupid idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3074 + }, + { + "word": "Empfehlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommendation", + "romanization": "Empfehlung", + "example_sentence_native": "Ich brauche eine Empfehlung für ein gutes Restaurant.", + "example_sentence_english": "I need a recommendation for a good restaurant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3075 + }, + { + "word": "erfinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invent;to make up", + "romanization": "erfinden", + "example_sentence_native": "Er will eine neue Maschine erfinden.", + "example_sentence_english": "He wants to invent a new machine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3076 + }, + { + "word": "ermorden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to murder", + "romanization": "ermorden", + "example_sentence_native": "Sie versuchten, den König zu ermorden.", + "example_sentence_english": "They tried to murder the king.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3077 + }, + { + "word": "erwerben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquire;to purchase", + "romanization": "erwerben", + "example_sentence_native": "Er möchte neue Fähigkeiten erwerben.", + "example_sentence_english": "He wants to acquire new skills.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3078 + }, + { + "word": "evtl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibly;eventually", + "romanization": "evtl", + "example_sentence_native": "Wir können uns evtl. später treffen.", + "example_sentence_english": "We can possibly meet later.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3079 + }, + { + "word": "Finanz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finance", + "romanization": "Finanz", + "example_sentence_native": "Die Finanz ist ein komplexes Thema.", + "example_sentence_english": "Finance is a complex topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3081 + }, + { + "word": "fünft", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifth", + "romanization": "fünft", + "example_sentence_native": "Das ist der fünfte Tag der Woche.", + "example_sentence_english": "This is the fifth day of the week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 3082 + }, + { + "word": "Gebühr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fee", + "romanization": "Gebühr", + "example_sentence_native": "Die Gebühr für die Anmeldung beträgt zehn Euro.", + "example_sentence_english": "The fee for registration is ten euros.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3083 + }, + { + "word": "Genehmigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permission", + "romanization": "Genehmigung", + "example_sentence_native": "Sie benötigen eine Genehmigung für dieses Projekt.", + "example_sentence_english": "You need permission for this project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3084 + }, + { + "word": "glatt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smooth", + "romanization": "glatt", + "example_sentence_native": "Die Oberfläche ist ganz glatt.", + "example_sentence_english": "The surface is very smooth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3085 + }, + { + "word": "groß", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "big", + "romanization": "groß", + "example_sentence_native": "Das Haus ist sehr groß.", + "example_sentence_english": "The house is very big.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3087 + }, + { + "word": "happy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happy", + "romanization": "happy", + "example_sentence_native": "Ich bin heute sehr happy.", + "example_sentence_english": "I am very happy today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3088 + }, + { + "word": "Jacke", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "jacket", + "romanization": "Jacke", + "example_sentence_native": "Meine Jacke ist blau.", + "example_sentence_english": "My jacket is blue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3089 + }, + { + "word": "jahrelang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for years", + "romanization": "jahrelang", + "example_sentence_native": "Er hat jahrelang im Ausland gelebt.", + "example_sentence_english": "He lived abroad for years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3090 + }, + { + "word": "kulturell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultural", + "romanization": "kulturell", + "example_sentence_native": "Berlin ist eine sehr kulturelle Stadt.", + "example_sentence_english": "Berlin is a very cultural city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3091 + }, + { + "word": "Lee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leeward side", + "romanization": "Lee", + "example_sentence_native": "Das Schiff suchte Schutz im Lee der Insel.", + "example_sentence_english": "The ship sought shelter on the leeward side of the island.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3092 + }, + { + "word": "Lehrerin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female teacher", + "romanization": "Lehrerin", + "example_sentence_native": "Meine Lehrerin ist sehr nett.", + "example_sentence_english": "My teacher is very nice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3093 + }, + { + "word": "Meisterschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "championship", + "romanization": "Meisterschaft", + "example_sentence_native": "Sie haben die Meisterschaft gewonnen.", + "example_sentence_english": "They won the championship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3094 + }, + { + "word": "Metall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metal", + "romanization": "Metall", + "example_sentence_native": "Dieses Schmuckstück ist aus reinem Metall.", + "example_sentence_english": "This piece of jewelry is made of pure metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3095 + }, + { + "word": "Model", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model", + "romanization": "Model", + "example_sentence_native": "Sie arbeitet als Model in Paris.", + "example_sentence_english": "She works as a model in Paris.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3096 + }, + { + "word": "Modus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mode", + "romanization": "Modus", + "example_sentence_native": "Der Computer ist im Schlafmodus.", + "example_sentence_english": "The computer is in sleep mode.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3097 + }, + { + "word": "Märchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fairy tale", + "romanization": "Märchen", + "example_sentence_native": "Kinder lieben es, Märchen zu hören.", + "example_sentence_english": "Children love to hear fairy tales.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3099 + }, + { + "word": "Oper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "opera", + "romanization": "Oper", + "example_sentence_native": "Wir gehen heute Abend in die Oper.", + "example_sentence_english": "We are going to the opera tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3101 + }, + { + "word": "pünktlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "punctual;on time", + "romanization": "pünktlich", + "example_sentence_native": "Er ist immer pünktlich zur Arbeit.", + "example_sentence_english": "He is always punctual for work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3103 + }, + { + "word": "Ressource", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resource", + "romanization": "Ressource", + "example_sentence_native": "Wasser ist eine wichtige Ressource.", + "example_sentence_english": "Water is an important resource.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3105 + }, + { + "word": "restlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remaining;residual", + "romanization": "restlich", + "example_sentence_native": "Wir müssen die restlichen Aufgaben erledigen.", + "example_sentence_english": "We have to complete the remaining tasks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3106 + }, + { + "word": "schlicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plain;simple;modest", + "romanization": "schlicht", + "example_sentence_native": "Das Design ist sehr schlicht und elegant.", + "example_sentence_english": "The design is very plain and elegant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 3108 + }, + { + "word": "studieren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to study", + "romanization": "studieren", + "example_sentence_native": "Ich studiere Deutsch an der Universität.", + "example_sentence_english": "I study German at the university.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3110 + }, + { + "word": "Tempo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed;tempo", + "romanization": "Tempo", + "example_sentence_native": "Das Tempo des Liedes ist sehr schnell.", + "example_sentence_english": "The tempo of the song is very fast.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3111 + }, + { + "word": "These", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thesis;proposition", + "romanization": "These", + "example_sentence_native": "Seine These wurde in der Diskussion stark kritisiert.", + "example_sentence_english": "His thesis was strongly criticized in the discussion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3112 + }, + { + "word": "Vielzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multitude;large number;variety", + "romanization": "Vielzahl", + "example_sentence_native": "Es gibt eine Vielzahl von Möglichkeiten.", + "example_sentence_english": "There is a multitude of possibilities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3114 + }, + { + "word": "vorerst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for the time being;for now", + "romanization": "vorerst", + "example_sentence_native": "Vorerst bleiben wir hier.", + "example_sentence_english": "For the time being, we will stay here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3115 + }, + { + "word": "Web", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "web (internet)", + "romanization": "Web", + "example_sentence_native": "Das Web bietet Zugang zu vielen Informationen.", + "example_sentence_english": "The web offers access to a lot of information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3116 + }, + { + "word": "womöglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possibly;perhaps", + "romanization": "womöglich", + "example_sentence_native": "Er könnte womöglich zu spät kommen.", + "example_sentence_english": "He might possibly come too late.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3117 + }, + { + "word": "zulassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to allow;to admit", + "romanization": "zulassen", + "example_sentence_native": "Wir müssen mehr Vielfalt zulassen.", + "example_sentence_english": "We must allow more diversity.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3118 + }, + { + "word": "zustande", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "about;into being (as in \"zustande kommen\")", + "romanization": "zustande", + "example_sentence_native": "Wie ist das Projekt zustande gekommen?", + "example_sentence_english": "How did the project come about?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 3119 + }, + { + "word": "Abgeordnete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Member of parliament", + "romanization": "Abgeordnete", + "example_sentence_native": "Die Abgeordnete sprach über das neue Gesetz.", + "example_sentence_english": "The member of parliament spoke about the new law.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3120 + }, + { + "word": "Action", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Action;excitement", + "romanization": "Action", + "example_sentence_native": "Der Film hatte viel Action.", + "example_sentence_english": "The movie had a lot of action.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3121 + }, + { + "word": "Ankunft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Arrival", + "romanization": "Ankunft", + "example_sentence_native": "Die Ankunft des Zuges wurde verspätet.", + "example_sentence_english": "The arrival of the train was delayed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3123 + }, + { + "word": "anmelden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "To register;to sign up", + "romanization": "anmelden", + "example_sentence_native": "Ich muss mich für den Kurs anmelden.", + "example_sentence_english": "I have to sign up for the course.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "melden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3124 + }, + { + "word": "Anschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Attack;assault;poster;notice", + "romanization": "Anschlag", + "example_sentence_native": "Die Polizei ermittelt nach dem Anschlag.", + "example_sentence_english": "The police are investigating after the attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3125 + }, + { + "word": "aufstehen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "To get up;to stand up", + "romanization": "aufstehen", + "example_sentence_native": "Ich muss früh aufstehen.", + "example_sentence_english": "I have to get up early.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3126 + }, + { + "word": "auslösen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To trigger;to cause;to release", + "romanization": "auslösen", + "example_sentence_native": "Der Alarm wurde durch Rauch ausgelöst.", + "example_sentence_english": "The alarm was triggered by smoke.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "lösen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3127 + }, + { + "word": "Autofahrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Car driver", + "romanization": "Autofahrer", + "example_sentence_native": "Der Autofahrer parkte sein Auto.", + "example_sentence_english": "The car driver parked his car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3128 + }, + { + "word": "Bayer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bavarian (person from Bavaria)", + "romanization": "Bayer", + "example_sentence_native": "Er ist ein stolzer Bayer.", + "example_sentence_english": "He is a proud Bavarian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3129 + }, + { + "word": "Bestimmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determination;purpose", + "romanization": "Bestimmung", + "example_sentence_native": "Die Bestimmung des Preises ist komplex.", + "example_sentence_english": "The determination of the price is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3130 + }, + { + "word": "Betreiber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operator;owner", + "romanization": "Betreiber", + "example_sentence_native": "Der Betreiber des Restaurants ist sehr freundlich.", + "example_sentence_english": "The operator of the restaurant is very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3131 + }, + { + "word": "Brille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glasses;spectacles", + "romanization": "Brille", + "example_sentence_native": "Ich brauche meine Brille zum Lesen.", + "example_sentence_english": "I need my glasses for reading.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3133 + }, + { + "word": "Café", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cafe;coffee shop", + "romanization": "Café", + "example_sentence_native": "Wir treffen uns im Café.", + "example_sentence_english": "We meet at the cafe.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3134 + }, + { + "word": "Champion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champion", + "romanization": "Champion", + "example_sentence_native": "Er ist der Champion im Boxen.", + "example_sentence_english": "He is the champion in boxing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3135 + }, + { + "word": "Fazit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conclusion;summary", + "romanization": "Fazit", + "example_sentence_native": "Das Fazit der Studie ist klar.", + "example_sentence_english": "The conclusion of the study is clear.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3136 + }, + { + "word": "Fortsetzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuation;sequel", + "romanization": "Fortsetzung", + "example_sentence_native": "Die Fortsetzung des Films kommt nächste Woche.", + "example_sentence_english": "The sequel to the movie comes next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3137 + }, + { + "word": "geplant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planned", + "romanization": "geplant", + "example_sentence_native": "Das Projekt ist gut geplant.", + "example_sentence_english": "The project is well planned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3138 + }, + { + "word": "stehlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to steal", + "romanization": "stehlen", + "example_sentence_native": "Er versucht, das Fahrrad zu stehlen.", + "example_sentence_english": "He is trying to steal the bicycle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3140 + }, + { + "word": "grau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grey", + "romanization": "grau", + "example_sentence_native": "Die Katze ist grau.", + "example_sentence_english": "The cat is grey.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3142 + }, + { + "word": "Intelligenz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intelligence", + "romanization": "Intelligenz", + "example_sentence_native": "Sie besitzt eine hohe Intelligenz.", + "example_sentence_english": "She possesses high intelligence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3145 + }, + { + "word": "irre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;insane", + "romanization": "irre", + "example_sentence_native": "Das ist eine irre Idee!", + "example_sentence_english": "That's a crazy idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3146 + }, + { + "word": "Kapital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital (financial)", + "romanization": "Kapital", + "example_sentence_native": "Das Unternehmen benötigt mehr Kapital.", + "example_sentence_english": "The company needs more capital.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3149 + }, + { + "word": "kennenlernen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to get to know;to meet", + "romanization": "kennenlernen", + "example_sentence_native": "Ich möchte dich besser kennenlernen.", + "example_sentence_english": "I would like to get to know you better.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "kennen", + "base_verb": "lernen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3150 + }, + { + "word": "Kongress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congress", + "romanization": "Kongress", + "example_sentence_native": "Der Kongress findet nächste Woche statt.", + "example_sentence_english": "The congress will take place next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3151 + }, + { + "word": "lebend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living;alive", + "romanization": "lebend", + "example_sentence_native": "Das ist ein lebendes Beispiel.", + "example_sentence_english": "That is a living example.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3153 + }, + { + "word": "Magen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stomach", + "romanization": "Magen", + "example_sentence_native": "Mein Magen knurrt.", + "example_sentence_english": "My stomach is rumbling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3155 + }, + { + "word": "Maul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muzzle;snout (animal's mouth)", + "romanization": "Maul", + "example_sentence_native": "Das Pferd öffnete sein Maul.", + "example_sentence_english": "The horse opened its muzzle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3157 + }, + { + "word": "Ministerpräsident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prime minister (of a state;federal state)", + "romanization": "Ministerpräsident", + "example_sentence_native": "Der Ministerpräsident hielt eine Rede.", + "example_sentence_english": "The prime minister gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3158 + }, + { + "word": "Nahrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food;nourishment", + "romanization": "Nahrung", + "example_sentence_native": "Tiere brauchen Nahrung zum Überleben.", + "example_sentence_english": "Animals need food to survive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3159 + }, + { + "word": "Nationalmannschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national team", + "romanization": "Nationalmannschaft", + "example_sentence_native": "Die deutsche Nationalmannschaft hat das Spiel gewonnen.", + "example_sentence_english": "The German national team won the game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3160 + }, + { + "word": "Obst", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fruit", + "romanization": "Obst", + "example_sentence_native": "Ich esse gerne frisches Obst.", + "example_sentence_english": "I like to eat fresh fruit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3161 + }, + { + "word": "packen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pack;to grab", + "romanization": "packen", + "example_sentence_native": "Ich muss meinen Koffer packen.", + "example_sentence_english": "I need to pack my suitcase.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3162 + }, + { + "word": "Pech", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bad luck;pitch", + "romanization": "Pech", + "example_sentence_native": "Das war wirklich Pech für ihn.", + "example_sentence_english": "That was really bad luck for him.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3163 + }, + { + "word": "Pirat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pirate", + "romanization": "Pirat", + "example_sentence_native": "Der Pirat suchte nach einem Schatz.", + "example_sentence_english": "The pirate was looking for treasure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3164 + }, + { + "word": "Regie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "direction (film;theater)", + "romanization": "Regie", + "example_sentence_native": "Er führte die Regie bei dem neuen Film.", + "example_sentence_english": "He directed the new film.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3166 + }, + { + "word": "regional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regional", + "romanization": "regional", + "example_sentence_native": "Wir kaufen gerne regionale Produkte.", + "example_sentence_english": "We like to buy regional products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3167 + }, + { + "word": "schuldig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guilty;indebted", + "romanization": "schuldig", + "example_sentence_native": "Er wurde für schuldig befunden.", + "example_sentence_english": "He was found guilty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3168 + }, + { + "word": "Skandal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scandal", + "romanization": "Skandal", + "example_sentence_native": "Der Skandal erschütterte die Regierung.", + "example_sentence_english": "The scandal shook the government.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3171 + }, + { + "word": "sozusagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so to speak", + "romanization": "sozusagen", + "example_sentence_native": "Er ist sozusagen der Chef der Gruppe.", + "example_sentence_english": "He is, so to speak, the leader of the group.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3173 + }, + { + "word": "spanisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Spanish", + "romanization": "spanisch", + "example_sentence_native": "Sie spricht Spanisch.", + "example_sentence_english": "She speaks Spanish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 3174 + }, + { + "word": "Spanisch", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Spanish (language)", + "romanization": "Spanisch", + "example_sentence_native": "Ich spreche ein bisschen Spanisch.", + "example_sentence_english": "I speak a little Spanish.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 3174 + }, + { + "word": "stehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standing", + "romanization": "stehend", + "example_sentence_native": "Die stehende Menge applaudierte.", + "example_sentence_english": "The standing crowd applauded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3175 + }, + { + "word": "streiten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to argue", + "romanization": "streiten", + "example_sentence_native": "Sie streiten sich oft über Kleinigkeiten.", + "example_sentence_english": "They often argue about trifles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3176 + }, + { + "word": "Tal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "valley", + "romanization": "Tal", + "example_sentence_native": "Das Dorf liegt in einem schönen Tal.", + "example_sentence_english": "The village lies in a beautiful valley.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3177 + }, + { + "word": "Tendenz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tendency", + "romanization": "Tendenz", + "example_sentence_native": "Es gibt eine Tendenz zu höheren Preisen.", + "example_sentence_english": "There is a tendency towards higher prices.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3178 + }, + { + "word": "Terror", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terror", + "romanization": "Terror", + "example_sentence_native": "Die Bevölkerung lebte in ständigem Terror.", + "example_sentence_english": "The population lived in constant terror.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3179 + }, + { + "word": "Treffer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hit;goal;success", + "romanization": "Treffer", + "example_sentence_native": "Das war ein direkter Treffer ins Tor.", + "example_sentence_english": "That was a direct hit into the goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3180 + }, + { + "word": "Tunnel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tunnel", + "romanization": "Tunnel", + "example_sentence_native": "Wir fahren durch einen langen Tunnel.", + "example_sentence_english": "We are driving through a long tunnel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3181 + }, + { + "word": "Verlängerung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extension;prolongation;overtime", + "romanization": "Verlängerung", + "example_sentence_native": "Das Spiel ging in die Verlängerung.", + "example_sentence_english": "The game went into overtime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3182 + }, + { + "word": "vorhaben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plan;to intend", + "romanization": "vorhaben", + "example_sentence_native": "Was hast du heute Abend vor?", + "example_sentence_english": "What do you have planned for tonight?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "haben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3184 + }, + { + "word": "vorhin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a moment ago;just now", + "romanization": "vorhin", + "example_sentence_native": "Ich habe ihn vorhin gesehen.", + "example_sentence_english": "I saw him a moment ago.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3185 + }, + { + "word": "zurecht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correctly;properly;rightly", + "romanization": "zurecht", + "example_sentence_native": "Er hat die Aufgabe zurecht gelöst.", + "example_sentence_english": "He solved the task correctly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3187 + }, + { + "word": "übersehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overlook;to miss", + "romanization": "übersehen", + "example_sentence_native": "Ich habe den Fehler übersehen.", + "example_sentence_english": "I overlooked the mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3188 + }, + { + "word": "Übertragung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broadcast;transmission;transfer", + "romanization": "Übertragung", + "example_sentence_native": "Die Live-Übertragung des Konzerts war großartig.", + "example_sentence_english": "The live broadcast of the concert was great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3189 + }, + { + "word": "Übung", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "exercise;practice", + "romanization": "Übung", + "example_sentence_native": "Die Übung ist wichtig für den Fortschritt.", + "example_sentence_english": "The exercise is important for progress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3190 + }, + { + "word": "Abitur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Abitur (German high school diploma)", + "romanization": "Abitur", + "example_sentence_native": "Er hat sein Abitur letztes Jahr bestanden.", + "example_sentence_english": "He passed his Abitur last year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3191 + }, + { + "word": "Akte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "file;record", + "romanization": "Akte", + "example_sentence_native": "Die Akte enthält wichtige Informationen.", + "example_sentence_english": "The file contains important information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3192 + }, + { + "word": "Anliegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concern;request;matter", + "romanization": "Anliegen", + "example_sentence_native": "Ich habe ein wichtiges Anliegen an Sie.", + "example_sentence_english": "I have an important request for you.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3193 + }, + { + "word": "aufführen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to perform;to list", + "romanization": "aufführen", + "example_sentence_native": "Die Kinder werden ein Theaterstück aufführen.", + "example_sentence_english": "The children will perform a play.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3194 + }, + { + "word": "Begegnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encounter;meeting", + "romanization": "Begegnung", + "example_sentence_native": "Es war eine interessante Begegnung.", + "example_sentence_english": "It was an interesting encounter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3196 + }, + { + "word": "bequem", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comfortable;convenient", + "romanization": "bequem", + "example_sentence_native": "Das Sofa ist sehr bequem.", + "example_sentence_english": "The sofa is very comfortable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3198 + }, + { + "word": "Diesel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diesel (fuel)", + "romanization": "Diesel", + "example_sentence_native": "Mein Auto fährt mit Diesel.", + "example_sentence_english": "My car runs on diesel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3202 + }, + { + "word": "Dj", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "DJ;disc jockey", + "romanization": "Dj", + "example_sentence_native": "Der Dj spielte gute Musik auf der Party.", + "example_sentence_english": "The DJ played good music at the party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3203 + }, + { + "word": "Dokumentation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentation;documentary", + "romanization": "Dokumentation", + "example_sentence_native": "Die Dokumentation über die Geschichte war sehr informativ.", + "example_sentence_english": "The documentary about history was very informative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3204 + }, + { + "word": "Dusche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shower", + "romanization": "Dusche", + "example_sentence_native": "Ich nehme jeden Morgen eine Dusche.", + "example_sentence_english": "I take a shower every morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3206 + }, + { + "word": "Einschätzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assessment;estimation", + "romanization": "Einschätzung", + "example_sentence_native": "Seine Einschätzung der Situation war sehr präzise.", + "example_sentence_english": "His assessment of the situation was very precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3207 + }, + { + "word": "erschießen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shoot (dead)", + "romanization": "erschießen", + "example_sentence_native": "Der Jäger musste das verletzte Tier erschießen.", + "example_sentence_english": "The hunter had to shoot the injured animal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3208 + }, + { + "word": "exakt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exact;precise", + "romanization": "exakt", + "example_sentence_native": "Die Messung war exakt und fehlerfrei.", + "example_sentence_english": "The measurement was exact and error-free.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3209 + }, + { + "word": "binden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie;to bind", + "romanization": "binden", + "example_sentence_native": "Er muss seine Schuhe binden.", + "example_sentence_english": "He has to tie his shoes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3210 + }, + { + "word": "regeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to regulate;to control", + "romanization": "regeln", + "example_sentence_native": "Wir müssen die Situation regeln.", + "example_sentence_english": "We need to regulate the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3211 + }, + { + "word": "Gesang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "singing;song", + "romanization": "Gesang", + "example_sentence_native": "Ihr Gesang war wunderschön.", + "example_sentence_english": "Her singing was beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3212 + }, + { + "word": "gesetzlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal;statutory", + "romanization": "gesetzlich", + "example_sentence_native": "Das ist eine gesetzliche Vorschrift.", + "example_sentence_english": "That is a legal requirement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3213 + }, + { + "word": "Halbzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "halftime", + "romanization": "Halbzeit", + "example_sentence_native": "In der Halbzeit gab es eine Pause.", + "example_sentence_english": "There was a break at halftime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3214 + }, + { + "word": "Hütte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hut;cabin", + "romanization": "Hütte", + "example_sentence_native": "Sie wohnten in einer kleinen Hütte.", + "example_sentence_english": "They lived in a small hut.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3215 + }, + { + "word": "Investition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "romanization": "Investition", + "example_sentence_native": "Das war eine gute Investition.", + "example_sentence_english": "That was a good investment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3218 + }, + { + "word": "Jahrgang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vintage;year (of birth;production);cohort", + "romanization": "Jahrgang", + "example_sentence_native": "Er gehört zum Jahrgang 1980.", + "example_sentence_english": "He belongs to the 1980 cohort.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3219 + }, + { + "word": "jetzig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "current", + "romanization": "jetzig", + "example_sentence_native": "Die jetzige Situation ist kompliziert.", + "example_sentence_english": "The current situation is complicated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3221 + }, + { + "word": "just", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "just;exactly", + "romanization": "just", + "example_sentence_native": "Er kam gerade just in dem Moment an.", + "example_sentence_english": "He arrived just at that moment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3222 + }, + { + "word": "Lord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lord", + "romanization": "Lord", + "example_sentence_native": "Der Lord betrat den Saal.", + "example_sentence_english": "The lord entered the hall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3223 + }, + { + "word": "Maus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mouse", + "romanization": "Maus", + "example_sentence_native": "Die Maus versteckte sich unter dem Tisch.", + "example_sentence_english": "The mouse hid under the table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3224 + }, + { + "word": "Monster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monster", + "romanization": "Monster", + "example_sentence_native": "Das Monster lebte in der Höhle.", + "example_sentence_english": "The monster lived in the cave.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3225 + }, + { + "word": "Persönlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personality", + "romanization": "Persönlichkeit", + "example_sentence_native": "Sie hat eine starke Persönlichkeit.", + "example_sentence_english": "She has a strong personality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3227 + }, + { + "word": "Platte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plate;record;slab", + "romanization": "Platte", + "example_sentence_native": "Die alte Platte spielte meine Lieblingsmusik.", + "example_sentence_english": "The old record played my favorite music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3228 + }, + { + "word": "religiös", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "religious", + "romanization": "religiös", + "example_sentence_native": "Er ist ein sehr religiöser Mensch.", + "example_sentence_english": "He is a very religious person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3229 + }, + { + "word": "schick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chic;stylish", + "romanization": "schick", + "example_sentence_native": "Sie trägt ein sehr schickes Kleid.", + "example_sentence_english": "She is wearing a very chic dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3232 + }, + { + "word": "schrecklich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrible;horrible", + "romanization": "schrecklich", + "example_sentence_native": "Das Wetter ist heute schrecklich.", + "example_sentence_english": "The weather is terrible today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3233 + }, + { + "word": "seither", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "since then;ever since", + "romanization": "seither", + "example_sentence_native": "Er hat seinen Job verloren und ist seither arbeitslos.", + "example_sentence_english": "He lost his job and has been unemployed ever since.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3234 + }, + { + "word": "Sir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sir", + "romanization": "Sir", + "example_sentence_native": "Entschuldigen Sie, Sir, könnten Sie mir helfen?", + "example_sentence_english": "Excuse me, Sir, could you help me?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3235 + }, + { + "word": "Sound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sound", + "romanization": "Sound", + "example_sentence_native": "Der Sound dieser Lautsprecher ist ausgezeichnet.", + "example_sentence_english": "The sound of these speakers is excellent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3236 + }, + { + "word": "Spruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saying;motto;slogan;remark", + "romanization": "Spruch", + "example_sentence_native": "Das ist ein alter Spruch, den meine Großmutter immer gesagt hat.", + "example_sentence_english": "That's an old saying my grandmother always used to say.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3237 + }, + { + "word": "Störung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disturbance;malfunction;disruption", + "romanization": "Störung", + "example_sentence_native": "Es gab eine technische Störung im System.", + "example_sentence_english": "There was a technical malfunction in the system.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3238 + }, + { + "word": "Support", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support", + "romanization": "Support", + "example_sentence_native": "Ich brauche technischen Support für mein neues Handy.", + "example_sentence_english": "I need technical support for my new phone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3239 + }, + { + "word": "Tempel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple", + "romanization": "Tempel", + "example_sentence_native": "Der alte Tempel steht auf einem Hügel.", + "example_sentence_english": "The old temple stands on a hill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3240 + }, + { + "word": "Ufer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank;shore", + "romanization": "Ufer", + "example_sentence_native": "Wir spazierten am Ufer des Flusses entlang.", + "example_sentence_english": "We walked along the bank of the river.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3241 + }, + { + "word": "unklar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unclear;vague", + "romanization": "unklar", + "example_sentence_native": "Seine Antwort war sehr unklar.", + "example_sentence_english": "His answer was very unclear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3242 + }, + { + "word": "verwirren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse;to bewilder", + "romanization": "verwirren", + "example_sentence_native": "Die vielen Informationen verwirrten ihn.", + "example_sentence_english": "The many pieces of information confused him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3244 + }, + { + "word": "Zentimeter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "centimeter", + "romanization": "Zentimeter", + "example_sentence_native": "Der Tisch ist achtzig Zentimeter breit.", + "example_sentence_english": "The table is eighty centimeters wide.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3247 + }, + { + "word": "zusammenfassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to summarize;to compile", + "romanization": "zusammenfassen", + "example_sentence_native": "Könnten Sie die Hauptpunkte bitte zusammenfassen?", + "example_sentence_english": "Could you please summarize the main points?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "fassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3248 + }, + { + "word": "anpassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adapt;to adjust", + "romanization": "anpassen", + "example_sentence_native": "Wir müssen uns an die neuen Regeln anpassen.", + "example_sentence_english": "We have to adapt to the new rules.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "passen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3249 + }, + { + "word": "aufeinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on each other", + "romanization": "aufeinander", + "example_sentence_native": "Die Bücher liegen aufeinander.", + "example_sentence_english": "The books are lying on top of each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3250 + }, + { + "word": "aufregen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excite;to upset", + "romanization": "aufregen", + "example_sentence_native": "Reg dich nicht so auf!", + "example_sentence_english": "Don't get so upset!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "regen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3251 + }, + { + "word": "ausbilden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to train;to educate", + "romanization": "ausbilden", + "example_sentence_native": "Sie bildet neue Lehrer aus.", + "example_sentence_english": "She trains new teachers.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "bilden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3252 + }, + { + "word": "Ausgleich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balance;compensation", + "romanization": "Ausgleich", + "example_sentence_native": "Er sucht einen Ausgleich zum Arbeitsstress.", + "example_sentence_english": "He is looking for a balance to work stress.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3253 + }, + { + "word": "Auskunft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "information;inquiry", + "romanization": "Auskunft", + "example_sentence_native": "Können Sie mir bitte Auskunft geben?", + "example_sentence_english": "Can you please give me information?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3254 + }, + { + "word": "Auszeichnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "award;distinction", + "romanization": "Auszeichnung", + "example_sentence_native": "Sie erhielt eine Auszeichnung für ihre Arbeit.", + "example_sentence_english": "She received an award for her work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3255 + }, + { + "word": "Beamter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civil servant;official", + "romanization": "Beamter", + "example_sentence_native": "Der Beamte half mir auf dem Amt.", + "example_sentence_english": "The official helped me at the office.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3256 + }, + { + "word": "bearbeiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to process;to edit", + "romanization": "bearbeiten", + "example_sentence_native": "Er muss noch die Dokumente bearbeiten.", + "example_sentence_english": "He still has to process the documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3257 + }, + { + "word": "Berufung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeal;calling", + "romanization": "Berufung", + "example_sentence_native": "Er sah es als seine Berufung an, anderen zu helfen.", + "example_sentence_english": "He saw it as his calling to help others.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3258 + }, + { + "word": "bestrafen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to punish", + "romanization": "bestrafen", + "example_sentence_native": "Der Richter wird den Täter bestrafen.", + "example_sentence_english": "The judge will punish the perpetrator.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3259 + }, + { + "word": "Botschafter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambassador", + "romanization": "Botschafter", + "example_sentence_native": "Der Botschafter sprach über die internationalen Beziehungen.", + "example_sentence_english": "The ambassador spoke about international relations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3261 + }, + { + "word": "brennen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to burn", + "romanization": "brennen", + "example_sentence_native": "Das Feuer brennt hell.", + "example_sentence_english": "The fire burns brightly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3262 + }, + { + "word": "dazwischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in between", + "romanization": "dazwischen", + "example_sentence_native": "Er stellte den Stuhl dazwischen.", + "example_sentence_english": "He placed the chair in between.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3263 + }, + { + "word": "Doktor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor", + "romanization": "Doktor", + "example_sentence_native": "Der Doktor hat mir geholfen.", + "example_sentence_english": "The doctor helped me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3264 + }, + { + "word": "Erfüllung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fulfillment", + "romanization": "Erfüllung", + "example_sentence_native": "Sie fand Erfüllung in ihrer Arbeit.", + "example_sentence_english": "She found fulfillment in her work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3265 + }, + { + "word": "Flagge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flag", + "romanization": "Flagge", + "example_sentence_native": "Die Flagge wehte im Wind.", + "example_sentence_english": "The flag waved in the wind.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3268 + }, + { + "word": "Fortschritt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progress", + "romanization": "Fortschritt", + "example_sentence_native": "Wir machen gute Fortschritte.", + "example_sentence_english": "We are making good progress.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3269 + }, + { + "word": "Friedhof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cemetery", + "romanization": "Friedhof", + "example_sentence_native": "Der Friedhof ist ein ruhiger Ort.", + "example_sentence_english": "The cemetery is a quiet place.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3270 + }, + { + "word": "Fuchs", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fox", + "romanization": "Fuchs", + "example_sentence_native": "Der Fuchs ist ein kluges Tier.", + "example_sentence_english": "The fox is a clever animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3271 + }, + { + "word": "Gitarre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "guitar", + "romanization": "Gitarre", + "example_sentence_native": "Sie spielt gerne Gitarre.", + "example_sentence_english": "She likes to play guitar.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3272 + }, + { + "word": "Grafik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graphic", + "romanization": "Grafik", + "example_sentence_native": "Die Grafik zeigt die Verkaufszahlen.", + "example_sentence_english": "The graphic shows the sales figures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3273 + }, + { + "word": "ideal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ideal", + "romanization": "ideal", + "example_sentence_native": "Das ist eine ideale Lösung.", + "example_sentence_english": "That is an ideal solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3274 + }, + { + "word": "individuell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual", + "romanization": "individuell", + "example_sentence_native": "Jeder Mensch hat individuelle Bedürfnisse.", + "example_sentence_english": "Every person has individual needs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3275 + }, + { + "word": "Kid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kid;child", + "romanization": "Kid", + "example_sentence_native": "Das Kid spielt im Garten.", + "example_sentence_english": "The kid is playing in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3278 + }, + { + "word": "Kilo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram;kilo", + "romanization": "Kilo", + "example_sentence_native": "Ich brauche ein Kilo Äpfel.", + "example_sentence_english": "I need a kilo of apples.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3279 + }, + { + "word": "kompliziert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complicated", + "romanization": "kompliziert", + "example_sentence_native": "Die Situation ist sehr kompliziert.", + "example_sentence_english": "The situation is very complicated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3280 + }, + { + "word": "Kredit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credit;loan", + "romanization": "Kredit", + "example_sentence_native": "Er hat einen Kredit bei der Bank aufgenommen.", + "example_sentence_english": "He took out a loan from the bank.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3281 + }, + { + "word": "Kugel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ball;sphere;bullet", + "romanization": "Kugel", + "example_sentence_native": "Die Kinder spielen mit einer Kugel.", + "example_sentence_english": "The children are playing with a ball.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3282 + }, + { + "word": "Kühlschrank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator", + "romanization": "Kühlschrank", + "example_sentence_native": "Das Essen ist im Kühlschrank.", + "example_sentence_english": "The food is in the refrigerator.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3283 + }, + { + "word": "Major", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "major (military rank)", + "romanization": "Major", + "example_sentence_native": "Der Major gab den Befehl.", + "example_sentence_english": "The major gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3284 + }, + { + "word": "Mörder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murderer", + "romanization": "Mörder", + "example_sentence_native": "Der Mörder wurde gefasst.", + "example_sentence_english": "The murderer was caught.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3285 + }, + { + "word": "neulich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently;the other day", + "romanization": "neulich", + "example_sentence_native": "Ich habe ihn neulich getroffen.", + "example_sentence_english": "I met him recently.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3286 + }, + { + "word": "olympisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Olympic", + "romanization": "olympisch", + "example_sentence_native": "Die olympischen Spiele finden alle vier Jahre statt.", + "example_sentence_english": "The Olympic Games take place every four years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3287 + }, + { + "word": "Opa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandpa", + "romanization": "Opa", + "example_sentence_native": "Mein Opa erzählt gerne Geschichten.", + "example_sentence_english": "My grandpa likes to tell stories.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3288 + }, + { + "word": "opfern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sacrifice", + "romanization": "opfern", + "example_sentence_native": "Er musste viel opfern, um sein Ziel zu erreichen.", + "example_sentence_english": "He had to sacrifice a lot to achieve his goal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3289 + }, + { + "word": "Roboter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "robot", + "romanization": "Roboter", + "example_sentence_native": "Der Roboter kann sprechen.", + "example_sentence_english": "The robot can speak.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3291 + }, + { + "word": "Schmuck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jewelry", + "romanization": "Schmuck", + "example_sentence_native": "Sie trägt schönen Schmuck.", + "example_sentence_english": "She wears beautiful jewelry.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3293 + }, + { + "word": "Tourist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tourist", + "romanization": "Tourist", + "example_sentence_native": "Der Tourist fragte nach dem Weg.", + "example_sentence_english": "The tourist asked for directions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3296 + }, + { + "word": "umgeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surround", + "romanization": "umgeben", + "example_sentence_native": "Hohe Bäume umgeben das Haus.", + "example_sentence_english": "Tall trees surround the house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3298 + }, + { + "word": "Umzug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move (relocation)", + "romanization": "Umzug", + "example_sentence_native": "Der Umzug in die neue Wohnung war anstrengend.", + "example_sentence_english": "The move to the new apartment was exhausting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3299 + }, + { + "word": "ungewöhnlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unusual", + "romanization": "ungewöhnlich", + "example_sentence_native": "Das ist eine ungewöhnliche Situation.", + "example_sentence_english": "That is an unusual situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3300 + }, + { + "word": "Vergnügen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasure", + "romanization": "Vergnügen", + "example_sentence_native": "Es war mir ein Vergnügen.", + "example_sentence_english": "It was a pleasure for me.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3302 + }, + { + "word": "versorgen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to provide;to supply", + "romanization": "versorgen", + "example_sentence_native": "Sie müssen ihre Familie versorgen.", + "example_sentence_english": "They must provide for their family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3303 + }, + { + "word": "verstorben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceased", + "romanization": "verstorben", + "example_sentence_native": "Die verstorbene Künstlerin hinterließ ein großes Erbe.", + "example_sentence_english": "The deceased artist left a great legacy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3304 + }, + { + "word": "Zerstörung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destruction", + "romanization": "Zerstörung", + "example_sentence_native": "Die Zerstörung der Umwelt ist ein ernstes Problem.", + "example_sentence_english": "The destruction of the environment is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3308 + }, + { + "word": "zumeist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mostly;for the most part", + "romanization": "zumeist", + "example_sentence_native": "Die Gäste waren zumeist Studenten.", + "example_sentence_english": "The guests were mostly students.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3309 + }, + { + "word": "örtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local", + "romanization": "örtlich", + "example_sentence_native": "Die örtliche Bäckerei hat die besten Brötchen.", + "example_sentence_english": "The local bakery has the best rolls.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3310 + }, + { + "word": "abnehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decrease;to lose weight;to take off", + "romanization": "abnehmen", + "example_sentence_native": "Ich muss abnehmen, um gesünder zu sein.", + "example_sentence_english": "I need to lose weight to be healthier.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3311 + }, + { + "word": "abseits", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offside;aside;away from", + "romanization": "abseits", + "example_sentence_native": "Er stand abseits des Geschehens.", + "example_sentence_english": "He stood aside from the action.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3312 + }, + { + "word": "Anstieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase;rise;ascent", + "romanization": "Anstieg", + "example_sentence_native": "Es gab einen deutlichen Anstieg der Preise.", + "example_sentence_english": "There was a significant increase in prices.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3315 + }, + { + "word": "arabisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arabic", + "romanization": "arabisch", + "example_sentence_native": "Sie lernt die arabische Sprache.", + "example_sentence_english": "She is learning the Arabic language.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3316 + }, + { + "word": "Ausgang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exit;outcome", + "romanization": "Ausgang", + "example_sentence_native": "Wo ist der Ausgang?", + "example_sentence_english": "Where is the exit?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3319 + }, + { + "word": "begehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commit;perpetrate", + "romanization": "begehen", + "example_sentence_native": "Er wollte keinen Fehler begehen.", + "example_sentence_english": "He didn't want to commit a mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3320 + }, + { + "word": "beitragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contribute", + "romanization": "beitragen", + "example_sentence_native": "Jeder sollte seinen Teil beitragen.", + "example_sentence_english": "Everyone should contribute their part.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3321 + }, + { + "word": "bemühen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strive;endeavor", + "romanization": "bemühen", + "example_sentence_native": "Er bemüht sich, Deutsch zu lernen.", + "example_sentence_english": "He strives to learn German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3322 + }, + { + "word": "berühmt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "famous", + "romanization": "berühmt", + "example_sentence_native": "Sie ist eine sehr berühmte Sängerin.", + "example_sentence_english": "She is a very famous singer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3323 + }, + { + "word": "beschädigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damage", + "romanization": "beschädigen", + "example_sentence_native": "Der Sturm hat das Dach beschädigt.", + "example_sentence_english": "The storm damaged the roof.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3324 + }, + { + "word": "Besetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cast;occupation", + "romanization": "Besetzung", + "example_sentence_native": "Die Besetzung des Films war hervorragend.", + "example_sentence_english": "The cast of the film was excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3325 + }, + { + "word": "betreten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enter;step on", + "romanization": "betreten", + "example_sentence_native": "Bitte betreten Sie den Rasen nicht.", + "example_sentence_english": "Please do not step on the lawn.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3326 + }, + { + "word": "Burger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "burger", + "romanization": "Burger", + "example_sentence_native": "Ich möchte einen Käseburger.", + "example_sentence_english": "I would like a cheeseburger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3327 + }, + { + "word": "danken", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to thank", + "romanization": "danken", + "example_sentence_native": "Ich möchte dir für deine Hilfe danken.", + "example_sentence_english": "I would like to thank you for your help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3330 + }, + { + "word": "dauernd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constantly", + "romanization": "dauernd", + "example_sentence_native": "Er beschwert sich dauernd über das Wetter.", + "example_sentence_english": "He constantly complains about the weather.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3331 + }, + { + "word": "Daumen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thumb", + "romanization": "Daumen", + "example_sentence_native": "Er hob den Daumen als Zeichen der Zustimmung.", + "example_sentence_english": "He raised his thumb as a sign of approval.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3332 + }, + { + "word": "dementsprechend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accordingly", + "romanization": "dementsprechend", + "example_sentence_native": "Die Situation hat sich geändert, und dementsprechend müssen wir unsere Pläne anpassen.", + "example_sentence_english": "The situation has changed, and accordingly we must adjust our plans.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3333 + }, + { + "word": "Distanz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distance", + "romanization": "Distanz", + "example_sentence_native": "Halten Sie bitte eine sichere Distanz zum Vordermann.", + "example_sentence_english": "Please keep a safe distance from the car in front.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3334 + }, + { + "word": "Entwickler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "developer", + "romanization": "Entwickler", + "example_sentence_native": "Der Software-Entwickler arbeitet an einem neuen Programm.", + "example_sentence_english": "The software developer is working on a new program.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3336 + }, + { + "word": "Erkrankung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illness", + "romanization": "Erkrankung", + "example_sentence_native": "Eine frühzeitige Diagnose kann bei der Behandlung der Erkrankung helfen.", + "example_sentence_english": "Early diagnosis can help in treating the illness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3337 + }, + { + "word": "Erlebnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experience", + "romanization": "Erlebnis", + "example_sentence_native": "Der Urlaub war ein unvergessliches Erlebnis.", + "example_sentence_english": "The vacation was an unforgettable experience.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3338 + }, + { + "word": "erstens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firstly", + "romanization": "erstens", + "example_sentence_native": "Erstens müssen wir die Fakten sammeln.", + "example_sentence_english": "Firstly, we need to gather the facts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3339 + }, + { + "word": "Gedicht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poem", + "romanization": "Gedicht", + "example_sentence_native": "Sie liest gerne Gedichte.", + "example_sentence_english": "She likes to read poems.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3340 + }, + { + "word": "Gen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gene", + "romanization": "Gen", + "example_sentence_native": "Das Gen ist für die Haarfarbe verantwortlich.", + "example_sentence_english": "The gene is responsible for hair color.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3341 + }, + { + "word": "schießen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shoot", + "romanization": "schießen", + "example_sentence_native": "Der Jäger schießt auf das Wild.", + "example_sentence_english": "The hunter shoots at the game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3342 + }, + { + "word": "grösstenteils", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for the most part", + "romanization": "grösstenteils", + "example_sentence_native": "Das Projekt war grösstenteils erfolgreich.", + "example_sentence_english": "The project was largely successful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3344 + }, + { + "word": "Hauptbahnhof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "main station", + "romanization": "Hauptbahnhof", + "example_sentence_native": "Wir treffen uns am Hauptbahnhof.", + "example_sentence_english": "We meet at the main station.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3345 + }, + { + "word": "Interpretation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpretation", + "romanization": "Interpretation", + "example_sentence_native": "Seine Interpretation des Textes war interessant.", + "example_sentence_english": "His interpretation of the text was interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3346 + }, + { + "word": "keineswegs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by no means", + "romanization": "keineswegs", + "example_sentence_native": "Das ist keineswegs die ganze Wahrheit.", + "example_sentence_english": "That is by no means the whole truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3348 + }, + { + "word": "Klavier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piano", + "romanization": "Klavier", + "example_sentence_native": "Sie spielt gerne Klavier.", + "example_sentence_english": "She likes to play the piano.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3349 + }, + { + "word": "konsequent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistent", + "romanization": "konsequent", + "example_sentence_native": "Er ist immer sehr konsequent in seinen Entscheidungen.", + "example_sentence_english": "He is always very consistent in his decisions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3350 + }, + { + "word": "kräftig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strong", + "romanization": "kräftig", + "example_sentence_native": "Er hat einen kräftigen Händedruck.", + "example_sentence_english": "He has a strong handshake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3351 + }, + { + "word": "Maler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painter", + "romanization": "Maler", + "example_sentence_native": "Der Maler streicht die Wand grün.", + "example_sentence_english": "The painter paints the wall green.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3354 + }, + { + "word": "Merkmal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic", + "romanization": "Merkmal", + "example_sentence_native": "Ein wichtiges Merkmal dieses Produkts ist seine Langlebigkeit.", + "example_sentence_english": "An important feature of this product is its durability.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3355 + }, + { + "word": "Motorrad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorcycle", + "romanization": "Motorrad", + "example_sentence_native": "Er fährt gerne Motorrad am Wochenende.", + "example_sentence_english": "He likes to ride a motorcycle on weekends.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3356 + }, + { + "word": "männlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "male", + "romanization": "männlich", + "example_sentence_native": "Das ist ein männlicher Löwe.", + "example_sentence_english": "That is a male lion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3358 + }, + { + "word": "niedrig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "low", + "romanization": "niedrig", + "example_sentence_native": "Der Wasserstand ist sehr niedrig.", + "example_sentence_english": "The water level is very low.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3361 + }, + { + "word": "Panik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panic", + "romanization": "Panik", + "example_sentence_native": "Es gab keine Panik, nur leichte Besorgnis.", + "example_sentence_english": "There was no panic, only slight concern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3364 + }, + { + "word": "Phänomen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phenomenon", + "romanization": "Phänomen", + "example_sentence_native": "Das ist ein seltenes Phänomen.", + "example_sentence_english": "That is a rare phenomenon.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3365 + }, + { + "word": "prima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great;excellent", + "romanization": "prima", + "example_sentence_native": "Das ist eine prima Idee!", + "example_sentence_english": "That's a great idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3366 + }, + { + "word": "Schokolade", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chocolate", + "romanization": "Schokolade", + "example_sentence_native": "Ich liebe Schokolade.", + "example_sentence_english": "I love chocolate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3367 + }, + { + "word": "schreien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scream;to shout", + "romanization": "schreien", + "example_sentence_native": "Er begann laut zu schreien.", + "example_sentence_english": "He started to scream loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3368 + }, + { + "word": "Unabhängigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence", + "romanization": "Unabhängigkeit", + "example_sentence_native": "Viele Länder kämpfen für ihre Unabhängigkeit.", + "example_sentence_english": "Many countries fight for their independence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3371 + }, + { + "word": "vermuten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suspect;to presume", + "romanization": "vermuten", + "example_sentence_native": "Ich vermute, dass er die Wahrheit sagt.", + "example_sentence_english": "I suspect that he is telling the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3372 + }, + { + "word": "Verteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution;allocation", + "romanization": "Verteilung", + "example_sentence_native": "Die Verteilung der Ressourcen ist ungerecht.", + "example_sentence_english": "The distribution of resources is unfair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3373 + }, + { + "word": "voneinander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from each other", + "romanization": "voneinander", + "example_sentence_native": "Sie können nicht voneinander leben.", + "example_sentence_english": "They cannot live without each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3374 + }, + { + "word": "wandern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hike;to wander", + "romanization": "wandern", + "example_sentence_native": "Wir gehen gerne in den Bergen wandern.", + "example_sentence_english": "We like to hike in the mountains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3375 + }, + { + "word": "waschen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wash", + "romanization": "waschen", + "example_sentence_native": "Ich muss meine Kleidung waschen.", + "example_sentence_english": "I need to wash my clothes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3376 + }, + { + "word": "werten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to value;to rate;to evaluate", + "romanization": "werten", + "example_sentence_native": "Wie werten Sie diese Leistung?", + "example_sentence_english": "How do you rate this performance?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3378 + }, + { + "word": "Wette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bet;wager", + "romanization": "Wette", + "example_sentence_native": "Ich habe eine Wette gewonnen.", + "example_sentence_english": "I won a bet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3379 + }, + { + "word": "Wohnzimmer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "living room", + "romanization": "Wohnzimmer", + "example_sentence_native": "Das Wohnzimmer ist sehr gemütlich.", + "example_sentence_english": "The living room is very cozy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3380 + }, + { + "word": "Zelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cell", + "romanization": "Zelle", + "example_sentence_native": "Jede Pflanze besteht aus vielen kleinen Zellen.", + "example_sentence_english": "Every plant consists of many small cells.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3382 + }, + { + "word": "Adler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eagle", + "romanization": "Adler", + "example_sentence_native": "Der Adler fliegt hoch am Himmel.", + "example_sentence_english": "The eagle flies high in the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3383 + }, + { + "word": "Angelegenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matter", + "romanization": "Angelegenheit", + "example_sentence_native": "Das ist eine private Angelegenheit.", + "example_sentence_english": "That is a private matter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3385 + }, + { + "word": "Angestellter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employee", + "romanization": "Angestellter", + "example_sentence_native": "Er ist ein Angestellter in dieser Firma.", + "example_sentence_english": "He is an employee in this company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3386 + }, + { + "word": "Anmeldung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "registration", + "romanization": "Anmeldung", + "example_sentence_native": "Die Anmeldung für den Kurs ist jetzt geöffnet.", + "example_sentence_english": "The registration for the course is now open.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3387 + }, + { + "word": "Arbeitsplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "workplace", + "romanization": "Arbeitsplatz", + "example_sentence_native": "Mein Arbeitsplatz ist sehr modern.", + "example_sentence_english": "My workplace is very modern.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3388 + }, + { + "word": "Auffassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "view", + "romanization": "Auffassung", + "example_sentence_native": "Meiner Auffassung nach ist das richtig.", + "example_sentence_english": "In my view, that is correct.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3389 + }, + { + "word": "Ausschuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "committee;reject", + "romanization": "Ausschuss", + "example_sentence_native": "Der Ausschuss hat die Entscheidung getroffen.", + "example_sentence_english": "The committee made the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3390 + }, + { + "word": "Balkon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balcony", + "romanization": "Balkon", + "example_sentence_native": "Wir haben einen schönen Balkon mit Blick auf den Garten.", + "example_sentence_english": "We have a beautiful balcony with a view of the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3391 + }, + { + "word": "begegnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to meet;to encounter", + "romanization": "begegnen", + "example_sentence_native": "Ich begegne ihm oft in der Stadt.", + "example_sentence_english": "I often meet him in the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3392 + }, + { + "word": "Beschwerde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complaint", + "romanization": "Beschwerde", + "example_sentence_native": "Sie hat eine Beschwerde über den Service eingereicht.", + "example_sentence_english": "She filed a complaint about the service.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3393 + }, + { + "word": "bewahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preserve;to keep", + "romanization": "bewahren", + "example_sentence_native": "Wir müssen die Umwelt bewahren.", + "example_sentence_english": "We must preserve the environment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3394 + }, + { + "word": "Bogen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bow;arch;sheet (of paper)", + "romanization": "Bogen", + "example_sentence_native": "Der Bogen der Brücke ist beeindruckend.", + "example_sentence_english": "The arch of the bridge is impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3395 + }, + { + "word": "enorm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enormous;immense", + "romanization": "enorm", + "example_sentence_native": "Das Projekt erfordert einen enormen Aufwand.", + "example_sentence_english": "The project requires an enormous effort.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3396 + }, + { + "word": "Erbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inheritance;heritage", + "romanization": "Erbe", + "example_sentence_native": "Das kulturelle Erbe muss geschützt werden.", + "example_sentence_english": "The cultural heritage must be protected.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3397 + }, + { + "word": "erleichtern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lighten;to ease;to relieve", + "romanization": "erleichtern", + "example_sentence_native": "Diese Nachricht hat mich sehr erleichtert.", + "example_sentence_english": "This news has greatly relieved me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3398 + }, + { + "word": "ertragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to endure;to bear;to tolerate", + "romanization": "ertragen", + "example_sentence_native": "Ich kann diese Hitze nicht länger ertragen.", + "example_sentence_english": "I can't endure this heat any longer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3399 + }, + { + "word": "etlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "several;some", + "romanization": "etlich", + "example_sentence_native": "Es dauerte etliche Stunden, bis die Arbeit fertig war.", + "example_sentence_english": "It took several hours until the work was finished.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3400 + }, + { + "word": "Faust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fist", + "romanization": "Faust", + "example_sentence_native": "Er ballte die Faust vor Wut.", + "example_sentence_english": "He clenched his fist in anger.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3401 + }, + { + "word": "festnehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrest", + "romanization": "festnehmen", + "example_sentence_native": "Die Polizei wird den Verdächtigen festnehmen.", + "example_sentence_english": "The police will arrest the suspect.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3402 + }, + { + "word": "Fonds", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fund", + "romanization": "Fonds", + "example_sentence_native": "Er investierte sein Geld in einen Aktienfonds.", + "example_sentence_english": "He invested his money in a stock fund.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3403 + }, + { + "word": "formulieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to formulate;to phrase", + "romanization": "formulieren", + "example_sentence_native": "Sie musste ihre Gedanken klar formulieren.", + "example_sentence_english": "She had to formulate her thoughts clearly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3404 + }, + { + "word": "führend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leading;prominent", + "romanization": "führend", + "example_sentence_native": "Das Unternehmen ist führend in der Technologiebranche.", + "example_sentence_english": "The company is leading in the technology sector.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3405 + }, + { + "word": "Führerschein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driving license", + "romanization": "Führerschein", + "example_sentence_native": "Er hat seinen Führerschein letztes Jahr gemacht.", + "example_sentence_english": "He got his driving license last year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3406 + }, + { + "word": "Gutachten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expert opinion;report", + "romanization": "Gutachten", + "example_sentence_native": "Das Gericht forderte ein Gutachten von einem Sachverständigen an.", + "example_sentence_english": "The court requested an expert opinion from a specialist.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3407 + }, + { + "word": "Güte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goodness;quality", + "romanization": "Güte", + "example_sentence_native": "Die Güte des Produkts ist ausgezeichnet.", + "example_sentence_english": "The quality of the product is excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3408 + }, + { + "word": "Helfer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helper", + "romanization": "Helfer", + "example_sentence_native": "Der Helfer kam schnell.", + "example_sentence_english": "The helper came quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3411 + }, + { + "word": "Hinblick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regard", + "romanization": "Hinblick", + "example_sentence_native": "Im Hinblick auf die Zukunft müssen wir planen.", + "example_sentence_english": "With regard to the future, we must plan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3412 + }, + { + "word": "Jazz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jazz", + "romanization": "Jazz", + "example_sentence_native": "Ich höre gerne Jazz.", + "example_sentence_english": "I like to listen to jazz.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3415 + }, + { + "word": "Kader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squad", + "romanization": "Kader", + "example_sentence_native": "Der Kader für das nächste Spiel wurde bekannt gegeben.", + "example_sentence_english": "The squad for the next game was announced.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3417 + }, + { + "word": "Koffer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "suitcase", + "romanization": "Koffer", + "example_sentence_native": "Mein Koffer ist sehr schwer.", + "example_sentence_english": "My suitcase is very heavy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3418 + }, + { + "word": "kurzfristig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short-term", + "romanization": "kurzfristig", + "example_sentence_native": "Wir brauchen eine kurzfristige Lösung.", + "example_sentence_english": "We need a short-term solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3419 + }, + { + "word": "Lob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "praise", + "romanization": "Lob", + "example_sentence_native": "Er erhielt viel Lob für seine Arbeit.", + "example_sentence_english": "He received a lot of praise for his work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3421 + }, + { + "word": "Luxus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luxury", + "romanization": "Luxus", + "example_sentence_native": "Sie leben in großem Luxus.", + "example_sentence_english": "They live in great luxury.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3422 + }, + { + "word": "Menschenrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "human right", + "romanization": "Menschenrecht", + "example_sentence_native": "Das Recht auf Bildung ist ein Menschenrecht.", + "example_sentence_english": "The right to education is a human right.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3423 + }, + { + "word": "mitunter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sometimes;occasionally", + "romanization": "mitunter", + "example_sentence_native": "Mitunter regnet es hier im Sommer.", + "example_sentence_english": "Sometimes it rains here in summer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3425 + }, + { + "word": "mächtig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powerful;mighty", + "romanization": "mächtig", + "example_sentence_native": "Er ist ein mächtiger König.", + "example_sentence_english": "He is a powerful king.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3426 + }, + { + "word": "nachweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prove;to detect", + "romanization": "nachweisen", + "example_sentence_native": "Sie konnten seine Unschuld nachweisen.", + "example_sentence_english": "They could prove his innocence.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3427 + }, + { + "word": "preisen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to praise;to commend", + "romanization": "preisen", + "example_sentence_native": "Sie preisen seine Arbeit.", + "example_sentence_english": "They praise his work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3432 + }, + { + "word": "Radfahrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyclist", + "romanization": "Radfahrer", + "example_sentence_native": "Der Radfahrer trägt einen Helm.", + "example_sentence_english": "The cyclist wears a helmet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3433 + }, + { + "word": "Reichweite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "range;reach", + "romanization": "Reichweite", + "example_sentence_native": "Die Reichweite des Elektroautos ist beeindruckend.", + "example_sentence_english": "The range of the electric car is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3435 + }, + { + "word": "Rücktritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation;withdrawal", + "romanization": "Rücktritt", + "example_sentence_native": "Sein Rücktritt überraschte alle.", + "example_sentence_english": "His resignation surprised everyone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3438 + }, + { + "word": "Schlafzimmer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bedroom", + "romanization": "Schlafzimmer", + "example_sentence_native": "Das Schlafzimmer ist sehr gemütlich.", + "example_sentence_english": "The bedroom is very cozy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3439 + }, + { + "word": "Stadtteil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "district", + "romanization": "Stadtteil", + "example_sentence_native": "Ich wohne in einem ruhigen Stadtteil.", + "example_sentence_english": "I live in a quiet district.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3441 + }, + { + "word": "Stream", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stream", + "romanization": "Stream", + "example_sentence_native": "Der Live-Stream beginnt um 19 Uhr.", + "example_sentence_english": "The live stream starts at 7 PM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3442 + }, + { + "word": "Symptom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symptom", + "romanization": "Symptom", + "example_sentence_native": "Husten ist ein häufiges Symptom einer Erkältung.", + "example_sentence_english": "Coughing is a common symptom of a cold.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3443 + }, + { + "word": "Treppe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stairs", + "romanization": "Treppe", + "example_sentence_native": "Die Treppe führt in den ersten Stock.", + "example_sentence_english": "The stairs lead to the first floor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3444 + }, + { + "word": "Turm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tower", + "romanization": "Turm", + "example_sentence_native": "Der alte Turm ist ein Wahrzeichen der Stadt.", + "example_sentence_english": "The old tower is a landmark of the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3445 + }, + { + "word": "unterbringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accommodate", + "romanization": "unterbringen", + "example_sentence_native": "Wir müssen die Gäste für die Nacht unterbringen.", + "example_sentence_english": "We need to accommodate the guests for the night.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "unter", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3446 + }, + { + "word": "Verbraucher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consumer", + "romanization": "Verbraucher", + "example_sentence_native": "Die Verbraucher fordern bessere Produkte.", + "example_sentence_english": "Consumers demand better products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3447 + }, + { + "word": "Verfolgung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pursuit", + "romanization": "Verfolgung", + "example_sentence_native": "Die Polizei nahm die Verfolgung des Diebes auf.", + "example_sentence_english": "The police took up the pursuit of the thief.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3448 + }, + { + "word": "Verwandter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relative", + "romanization": "Verwandter", + "example_sentence_native": "Er ist ein entfernter Verwandter von mir.", + "example_sentence_english": "He is a distant relative of mine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3449 + }, + { + "word": "woanders", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhere else", + "romanization": "woanders", + "example_sentence_native": "Ich möchte woanders hingehen.", + "example_sentence_english": "I want to go somewhere else.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3450 + }, + { + "word": "Zugriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "access", + "romanization": "Zugriff", + "example_sentence_native": "Sie haben keinen Zugriff auf diese Daten.", + "example_sentence_english": "They have no access to this data.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3451 + }, + { + "word": "zweitens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondly", + "romanization": "zweitens", + "example_sentence_native": "Erstens ist es zu teuer, zweitens ist es zu klein.", + "example_sentence_english": "Firstly, it's too expensive, secondly, it's too small.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3452 + }, + { + "word": "auswählen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to select;to choose", + "romanization": "auswählen", + "example_sentence_native": "Sie müssen eine Option auswählen.", + "example_sentence_english": "You must select an option.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "wählen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3454 + }, + { + "word": "Aussenminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreign minister", + "romanization": "Aussenminister", + "example_sentence_native": "Der Aussenminister reist nächste Woche nach Berlin.", + "example_sentence_english": "The foreign minister travels to Berlin next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3455 + }, + { + "word": "Bande", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gang;band", + "romanization": "Bande", + "example_sentence_native": "Die Bande wurde von der Polizei gefasst.", + "example_sentence_english": "The gang was caught by the police.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3456 + }, + { + "word": "Bearbeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing;editing;handling", + "romanization": "Bearbeitung", + "example_sentence_native": "Die Bearbeitung des Antrags dauert einige Tage.", + "example_sentence_english": "The processing of the application takes a few days.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3457 + }, + { + "word": "Beschäftigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occupation;employment;activity", + "romanization": "Beschäftigung", + "example_sentence_native": "Er sucht eine neue Beschäftigung.", + "example_sentence_english": "He is looking for a new occupation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3459 + }, + { + "word": "bewerben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply (for a job;position)", + "romanization": "bewerben", + "example_sentence_native": "Ich möchte mich um diese Stelle bewerben.", + "example_sentence_english": "I would like to apply for this position.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3460 + }, + { + "word": "Boy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boy", + "romanization": "Boy", + "example_sentence_native": "Der Boy spielte im Garten.", + "example_sentence_english": "The boy played in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3461 + }, + { + "word": "Butter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "butter", + "romanization": "Butter", + "example_sentence_native": "Ich brauche Butter für das Brot.", + "example_sentence_english": "I need butter for the bread.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3462 + }, + { + "word": "Bündnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alliance;covenant", + "romanization": "Bündnis", + "example_sentence_native": "Sie schlossen ein Bündnis gegen den gemeinsamen Feind.", + "example_sentence_english": "They formed an alliance against the common enemy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3463 + }, + { + "word": "Dom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cathedral;dome", + "romanization": "Dom", + "example_sentence_native": "Der Kölner Dom ist sehr beeindruckend.", + "example_sentence_english": "Cologne Cathedral is very impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3465 + }, + { + "word": "down", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "down", + "romanization": "down", + "example_sentence_native": "Er fühlte sich heute etwas down.", + "example_sentence_english": "He felt a bit down today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3466 + }, + { + "word": "Eintracht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmony;concord;unity", + "romanization": "Eintracht", + "example_sentence_native": "Sie lebten in Eintracht miteinander.", + "example_sentence_english": "They lived in harmony with each other.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3468 + }, + { + "word": "engagieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to engage;to commit;to hire", + "romanization": "engagieren", + "example_sentence_native": "Er engagiert sich stark für den Umweltschutz.", + "example_sentence_english": "He is strongly committed to environmental protection.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3469 + }, + { + "word": "Fabrik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "factory", + "romanization": "Fabrik", + "example_sentence_native": "Die Fabrik produziert Autos.", + "example_sentence_english": "The factory produces cars.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3471 + }, + { + "word": "fehlend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missing", + "romanization": "fehlend", + "example_sentence_native": "Das fehlende Teil wurde gefunden.", + "example_sentence_english": "The missing part was found.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3472 + }, + { + "word": "gebrauchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to use;to need", + "romanization": "gebrauchen", + "example_sentence_native": "Kannst du dieses Werkzeug gebrauchen?", + "example_sentence_english": "Can you use this tool?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3475 + }, + { + "word": "Gegenstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "object;item", + "romanization": "Gegenstand", + "example_sentence_native": "Dieser Gegenstand ist sehr alt.", + "example_sentence_english": "This object is very old.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3476 + }, + { + "word": "Handbuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manual;handbook", + "romanization": "Handbuch", + "example_sentence_native": "Bitte lesen Sie das Handbuch.", + "example_sentence_english": "Please read the manual.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3478 + }, + { + "word": "hinweisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to point out;to indicate", + "romanization": "hinweisen", + "example_sentence_native": "Er wollte auf den Fehler hinweisen.", + "example_sentence_english": "He wanted to point out the mistake.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3480 + }, + { + "word": "Hirn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brain", + "romanization": "Hirn", + "example_sentence_native": "Das menschliche Hirn ist komplex.", + "example_sentence_english": "The human brain is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3481 + }, + { + "word": "japanisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Japanese", + "romanization": "japanisch", + "example_sentence_native": "Sie lernt die japanische Sprache.", + "example_sentence_english": "She is learning the Japanese language.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3482 + }, + { + "word": "Kammer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chamber;room", + "romanization": "Kammer", + "example_sentence_native": "Die Kammer war klein und dunkel.", + "example_sentence_english": "The chamber was small and dark.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3483 + }, + { + "word": "Konzentration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concentration", + "romanization": "Konzentration", + "example_sentence_native": "Er brauchte volle Konzentration für die Aufgabe.", + "example_sentence_english": "He needed full concentration for the task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3485 + }, + { + "word": "liegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lying;recumbent", + "romanization": "liegend", + "example_sentence_native": "Der liegende Hund schlief tief.", + "example_sentence_english": "The lying dog slept deeply.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3487 + }, + { + "word": "Mitteilung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "message;notification", + "romanization": "Mitteilung", + "example_sentence_native": "Ich habe eine wichtige Mitteilung für dich.", + "example_sentence_english": "I have an important message for you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3489 + }, + { + "word": "Pfund", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pound", + "romanization": "Pfund", + "example_sentence_native": "Ich brauche ein Pfund Äpfel.", + "example_sentence_english": "I need a pound of apples.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3490 + }, + { + "word": "Rettung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescue", + "romanization": "Rettung", + "example_sentence_native": "Die Rettung kam in letzter Minute.", + "example_sentence_english": "The rescue came at the last minute.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3491 + }, + { + "word": "Schlampe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slut;slovenly woman", + "romanization": "Schlampe", + "example_sentence_native": "Sie nannte ihn eine Schlampe, weil er so unordentlich war.", + "example_sentence_english": "She called him a slob because he was so messy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3493 + }, + { + "word": "Schreibtisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "desk", + "romanization": "Schreibtisch", + "example_sentence_native": "Mein Schreibtisch ist sehr ordentlich.", + "example_sentence_english": "My desk is very tidy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3495 + }, + { + "word": "Sportler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athlete", + "romanization": "Sportler", + "example_sentence_native": "Der Sportler trainiert jeden Tag.", + "example_sentence_english": "The athlete trains every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3497 + }, + { + "word": "stabil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable;sturdy", + "romanization": "stabil", + "example_sentence_native": "Der Tisch ist sehr stabil.", + "example_sentence_english": "The table is very stable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3498 + }, + { + "word": "Strich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "line;dash;stroke", + "romanization": "Strich", + "example_sentence_native": "Zieh einen geraden Strich.", + "example_sentence_english": "Draw a straight line.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3499 + }, + { + "word": "Tante", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "aunt", + "romanization": "Tante", + "example_sentence_native": "Meine Tante kommt uns besuchen.", + "example_sentence_english": "My aunt is coming to visit us.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3500 + }, + { + "word": "theoretisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theoretical", + "romanization": "theoretisch", + "example_sentence_native": "Das ist nur ein theoretisches Problem.", + "example_sentence_english": "That is only a theoretical problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3501 + }, + { + "word": "Umbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renovation", + "romanization": "Umbau", + "example_sentence_native": "Der Umbau des Hauses dauert noch an.", + "example_sentence_english": "The renovation of the house is still ongoing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3503 + }, + { + "word": "vereinen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unite", + "romanization": "vereinen", + "example_sentence_native": "Sie wollen ihre Kräfte vereinen.", + "example_sentence_english": "They want to unite their forces.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3504 + }, + { + "word": "Verpflichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligation", + "romanization": "Verpflichtung", + "example_sentence_native": "Er hat eine wichtige Verpflichtung.", + "example_sentence_english": "He has an important obligation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3505 + }, + { + "word": "vorwiegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predominantly", + "romanization": "vorwiegend", + "example_sentence_native": "Das Wetter ist vorwiegend sonnig.", + "example_sentence_english": "The weather is predominantly sunny.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3506 + }, + { + "word": "wahnsinnig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insane;incredibly", + "romanization": "wahnsinnig", + "example_sentence_native": "Das ist eine wahnsinnig gute Idee.", + "example_sentence_english": "That is an incredibly good idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3507 + }, + { + "word": "wahrnehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perceive", + "romanization": "wahrnehmen", + "example_sentence_native": "Er konnte die Gefahr nicht wahrnehmen.", + "example_sentence_english": "He could not perceive the danger.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wahr", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3508 + }, + { + "word": "warnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to warn", + "romanization": "warnen", + "example_sentence_native": "Ich muss dich warnen.", + "example_sentence_english": "I have to warn you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3509 + }, + { + "word": "Weiterbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further education", + "romanization": "Weiterbildung", + "example_sentence_native": "Sie macht eine Weiterbildung im Bereich Marketing.", + "example_sentence_english": "She is doing further education in marketing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3510 + }, + { + "word": "Winkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angle;corner", + "romanization": "Winkel", + "example_sentence_native": "Der Winkel des Dreiecks beträgt 90 Grad.", + "example_sentence_english": "The angle of the triangle is 90 degrees.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3511 + }, + { + "word": "zuviel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "too much;too many", + "romanization": "zuviel", + "example_sentence_native": "Er hat zuviel gegessen.", + "example_sentence_english": "He ate too much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 3513 + }, + { + "word": "Übergang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transition;crossing", + "romanization": "Übergang", + "example_sentence_native": "Der Übergang von der Schule zur Universität ist eine große Veränderung.", + "example_sentence_english": "The transition from school to university is a big change.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3515 + }, + { + "word": "Überzeugung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction;belief", + "romanization": "Überzeugung", + "example_sentence_native": "Er handelte aus tiefer Überzeugung.", + "example_sentence_english": "He acted out of deep conviction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3516 + }, + { + "word": "Ablehnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejection;refusal", + "romanization": "Ablehnung", + "example_sentence_native": "Seine Ablehnung des Angebots war unerwartet.", + "example_sentence_english": "His rejection of the offer was unexpected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3517 + }, + { + "word": "Alpe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alpine pasture;alp", + "romanization": "Alpe", + "example_sentence_native": "Die Kühe grasen auf der Alpe.", + "example_sentence_english": "The cows graze on the alpine pasture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3518 + }, + { + "word": "Bart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beard", + "romanization": "Bart", + "example_sentence_native": "Er hat einen langen Bart.", + "example_sentence_english": "He has a long beard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3519 + }, + { + "word": "Behauptung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assertion;claim", + "romanization": "Behauptung", + "example_sentence_native": "Seine Behauptung war schwer zu beweisen.", + "example_sentence_english": "His assertion was difficult to prove.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3522 + }, + { + "word": "bekämpfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fight;to combat", + "romanization": "bekämpfen", + "example_sentence_native": "Sie müssen die Ursachen des Problems bekämpfen.", + "example_sentence_english": "They must combat the causes of the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3523 + }, + { + "word": "berechnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to calculate;to charge", + "romanization": "berechnen", + "example_sentence_native": "Können Sie mir bitte den Gesamtbetrag berechnen?", + "example_sentence_english": "Can you please calculate the total amount for me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3524 + }, + { + "word": "Berichterstattung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reporting;coverage", + "romanization": "Berichterstattung", + "example_sentence_native": "Die Berichterstattung über das Ereignis war sehr ausführlich.", + "example_sentence_english": "The reporting on the event was very detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3525 + }, + { + "word": "Bilanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balance;balance sheet", + "romanization": "Bilanz", + "example_sentence_native": "Das Unternehmen präsentierte eine positive Bilanz.", + "example_sentence_english": "The company presented a positive balance sheet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3526 + }, + { + "word": "blicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look;to glance", + "romanization": "blicken", + "example_sentence_native": "Er blickte aus dem Fenster.", + "example_sentence_english": "He looked out of the window.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3527 + }, + { + "word": "Budget", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "budget", + "romanization": "Budget", + "example_sentence_native": "Wir müssen das Budget einhalten.", + "example_sentence_english": "We have to stick to the budget.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3529 + }, + { + "word": "Demonstrant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstrator;protester", + "romanization": "Demonstrant", + "example_sentence_native": "Der Demonstrant hielt ein Plakat hoch.", + "example_sentence_english": "The demonstrator held up a sign.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3530 + }, + { + "word": "erfordern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to require;to demand", + "romanization": "erfordern", + "example_sentence_native": "Diese Aufgabe erfordert viel Geduld.", + "example_sentence_english": "This task requires a lot of patience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3532 + }, + { + "word": "erreichbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reachable;accessible", + "romanization": "erreichbar", + "example_sentence_native": "Das Ziel ist erreichbar.", + "example_sentence_english": "The goal is reachable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3533 + }, + { + "word": "fake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fake", + "romanization": "fake", + "example_sentence_native": "Das sind Fake News.", + "example_sentence_english": "That is fake news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3534 + }, + { + "word": "füllen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fill", + "romanization": "füllen", + "example_sentence_native": "Bitte füllen Sie das Glas.", + "example_sentence_english": "Please fill the glass.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3536 + }, + { + "word": "Gemälde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painting", + "romanization": "Gemälde", + "example_sentence_native": "Das Gemälde hängt im Museum.", + "example_sentence_english": "The painting hangs in the museum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3537 + }, + { + "word": "global", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "global", + "romanization": "global", + "example_sentence_native": "Wir stehen vor globalen Herausforderungen.", + "example_sentence_english": "We face global challenges.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3538 + }, + { + "word": "ignorieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ignore", + "romanization": "ignorieren", + "example_sentence_native": "Er versucht, die Beleidigungen zu ignorieren.", + "example_sentence_english": "He tries to ignore the insults.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3541 + }, + { + "word": "kehren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sweep;to turn", + "romanization": "kehren", + "example_sentence_native": "Sie muss den Boden kehren.", + "example_sentence_english": "She has to sweep the floor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3542 + }, + { + "word": "Konstruktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction", + "romanization": "Konstruktion", + "example_sentence_native": "Die Konstruktion des Gebäudes ist sehr komplex.", + "example_sentence_english": "The construction of the building is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3544 + }, + { + "word": "Laptop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laptop", + "romanization": "Laptop", + "example_sentence_native": "Mein Laptop ist kaputt.", + "example_sentence_english": "My laptop is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3545 + }, + { + "word": "Mieter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenant", + "romanization": "Mieter", + "example_sentence_native": "Der Mieter zahlt die Miete pünktlich.", + "example_sentence_english": "The tenant pays the rent on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3549 + }, + { + "word": "Miss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Miss (title)", + "romanization": "Miss", + "example_sentence_native": "Die Miss wurde gekrönt.", + "example_sentence_english": "The Miss was crowned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3550 + }, + { + "word": "Moderator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderator;presenter", + "romanization": "Moderator", + "example_sentence_native": "Der Moderator führte durch die Sendung.", + "example_sentence_english": "The moderator led through the show.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3551 + }, + { + "word": "Notwendigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "necessity;need", + "romanization": "Notwendigkeit", + "example_sentence_native": "Es besteht keine Notwendigkeit zur Eile.", + "example_sentence_english": "There is no necessity for haste.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3552 + }, + { + "word": "nunmehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "now;by now;henceforth", + "romanization": "nunmehr", + "example_sentence_native": "Nunmehr ist die Entscheidung gefallen.", + "example_sentence_english": "The decision has now been made.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3553 + }, + { + "word": "Rauch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smoke", + "romanization": "Rauch", + "example_sentence_native": "Aus dem Schornstein kam Rauch.", + "example_sentence_english": "Smoke came out of the chimney.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3555 + }, + { + "word": "Reiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rider;horseman", + "romanization": "Reiter", + "example_sentence_native": "Der Reiter saß fest im Sattel.", + "example_sentence_english": "The rider sat firmly in the saddle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3556 + }, + { + "word": "Rätsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "riddle;puzzle", + "romanization": "Rätsel", + "example_sentence_native": "Ich liebe es, Rätsel zu lösen.", + "example_sentence_english": "I love solving riddles.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3557 + }, + { + "word": "Schicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "layer;shift (work)", + "romanization": "Schicht", + "example_sentence_native": "Er arbeitet in der Nachtschicht.", + "example_sentence_english": "He works the night shift.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3558 + }, + { + "word": "Springer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jumper;knight (chess)", + "romanization": "Springer", + "example_sentence_native": "Der Springer ist eine wichtige Figur im Schach.", + "example_sentence_english": "The knight is an important piece in chess.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3559 + }, + { + "word": "Sprung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jump;leap", + "romanization": "Sprung", + "example_sentence_native": "Er machte einen großen Sprung über den Graben.", + "example_sentence_english": "He made a big jump over the ditch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3560 + }, + { + "word": "Supermarkt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "supermarket", + "romanization": "Supermarkt", + "example_sentence_native": "Ich gehe zum Supermarkt, um einzukaufen.", + "example_sentence_english": "I'm going to the supermarket to shop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3561 + }, + { + "word": "Tafel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "board;blackboard;table (of chocolate)", + "romanization": "Tafel", + "example_sentence_native": "Der Lehrer schrieb an die Tafel.", + "example_sentence_english": "The teacher wrote on the blackboard.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3562 + }, + { + "word": "Tennis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tennis", + "romanization": "Tennis", + "example_sentence_native": "Spielen wir heute Tennis?", + "example_sentence_english": "Shall we play tennis today?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3563 + }, + { + "word": "unendlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinite;endless", + "romanization": "unendlich", + "example_sentence_native": "Das Universum ist unendlich groß.", + "example_sentence_english": "The universe is infinitely large.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3564 + }, + { + "word": "Unglück", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misfortune;accident", + "romanization": "Unglück", + "example_sentence_native": "Es war ein großes Unglück, dass das Schiff sank.", + "example_sentence_english": "It was a great misfortune that the ship sank.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3565 + }, + { + "word": "unnötig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnecessary", + "romanization": "unnötig", + "example_sentence_native": "Diese Diskussion ist unnötig.", + "example_sentence_english": "This discussion is unnecessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3566 + }, + { + "word": "unterschreiben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sign", + "romanization": "unterschreiben", + "example_sentence_native": "Bitte unterschreiben Sie hier.", + "example_sentence_english": "Please sign here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3567 + }, + { + "word": "Ursprung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "origin;source", + "romanization": "Ursprung", + "example_sentence_native": "Der Ursprung des Problems ist unklar.", + "example_sentence_english": "The origin of the problem is unclear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3568 + }, + { + "word": "verlaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get lost;to run (e.g.;a path)", + "romanization": "verlaufen", + "example_sentence_native": "Wir haben uns im Wald verlaufen.", + "example_sentence_english": "We got lost in the forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3569 + }, + { + "word": "verwandeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transform", + "romanization": "verwandeln", + "example_sentence_native": "Der Zauberer kann Wasser in Wein verwandeln.", + "example_sentence_english": "The magician can transform water into wine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3570 + }, + { + "word": "Vorgänger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predecessor", + "romanization": "Vorgänger", + "example_sentence_native": "Mein Vorgänger hat diese Aufgabe begonnen.", + "example_sentence_english": "My predecessor started this task.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3571 + }, + { + "word": "vorliegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be available", + "romanization": "vorliegen", + "example_sentence_native": "Der Bericht liegt uns noch nicht vor.", + "example_sentence_english": "The report is not yet available to us.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "liegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3572 + }, + { + "word": "Wolke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloud", + "romanization": "Wolke", + "example_sentence_native": "Eine große Wolke verdeckte die Sonne.", + "example_sentence_english": "A large cloud covered the sun.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3574 + }, + { + "word": "wütend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furious", + "romanization": "wütend", + "example_sentence_native": "Er war wütend über die Ungerechtigkeit.", + "example_sentence_english": "He was furious about the injustice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3575 + }, + { + "word": "zugeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admit", + "romanization": "zugeben", + "example_sentence_native": "Er musste zugeben, dass er einen Fehler gemacht hatte.", + "example_sentence_english": "He had to admit that he had made a mistake.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3576 + }, + { + "word": "zwanzig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty", + "romanization": "zwanzig", + "example_sentence_native": "Ich habe zwanzig Euro in meiner Tasche.", + "example_sentence_english": "I have twenty euros in my pocket.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 3577 + }, + { + "word": "Akt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act", + "romanization": "Akt", + "example_sentence_native": "Der letzte Akt des Stücks war sehr dramatisch.", + "example_sentence_english": "The last act of the play was very dramatic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3578 + }, + { + "word": "anstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to queue", + "romanization": "anstellen", + "example_sentence_native": "Bitte stellen Sie sich hier an.", + "example_sentence_english": "Please queue up here.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3579 + }, + { + "word": "anziehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put on (clothes);to attract", + "romanization": "anziehen", + "example_sentence_native": "Ich muss meine Jacke anziehen.", + "example_sentence_english": "I need to put on my jacket.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3580 + }, + { + "word": "Aufregung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excitement;agitation", + "romanization": "Aufregung", + "example_sentence_native": "Es gab viel Aufregung vor dem Konzert.", + "example_sentence_english": "There was a lot of excitement before the concert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3582 + }, + { + "word": "Aufstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lineup;formation;statement", + "romanization": "Aufstellung", + "example_sentence_native": "Die Aufstellung der Mannschaft wurde bekannt gegeben.", + "example_sentence_english": "The team's lineup was announced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3583 + }, + { + "word": "ausprobieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try out;to test", + "romanization": "ausprobieren", + "example_sentence_native": "Ich möchte das neue Rezept ausprobieren.", + "example_sentence_english": "I want to try out the new recipe.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "probieren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3584 + }, + { + "word": "Bedrohung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threat", + "romanization": "Bedrohung", + "example_sentence_native": "Die Bedrohung durch den Klimawandel ist real.", + "example_sentence_english": "The threat of climate change is real.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3585 + }, + { + "word": "beleidigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insult;to offend", + "romanization": "beleidigen", + "example_sentence_native": "Du solltest niemanden beleidigen.", + "example_sentence_english": "You shouldn't insult anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3586 + }, + { + "word": "Bestätigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmation;affirmation", + "romanization": "Bestätigung", + "example_sentence_native": "Ich warte auf die Bestätigung meiner Buchung.", + "example_sentence_english": "I am waiting for the confirmation of my booking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3587 + }, + { + "word": "Beute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prey;loot;booty", + "romanization": "Beute", + "example_sentence_native": "Der Löwe jagte seine Beute.", + "example_sentence_english": "The lion hunted its prey.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3588 + }, + { + "word": "Blödsinn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonsense;rubbish", + "romanization": "Blödsinn", + "example_sentence_native": "Rede keinen Blödsinn!", + "example_sentence_english": "Don't talk nonsense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3590 + }, + { + "word": "Boss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boss;chief", + "romanization": "Boss", + "example_sentence_native": "Mein Boss ist sehr streng.", + "example_sentence_english": "My boss is very strict.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3591 + }, + { + "word": "Check", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "check (review;test)", + "romanization": "Check", + "example_sentence_native": "Wir müssen einen letzten Check machen, bevor wir gehen.", + "example_sentence_english": "We need to do a final check before we leave.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3592 + }, + { + "word": "einschränken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restrict;to limit", + "romanization": "einschränken", + "example_sentence_native": "Wir müssen unsere Ausgaben einschränken.", + "example_sentence_english": "We must limit our expenses.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schränken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3597 + }, + { + "word": "Eintrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entry;record", + "romanization": "Eintrag", + "example_sentence_native": "Bitte machen Sie einen Eintrag in das Gästebuch.", + "example_sentence_english": "Please make an entry in the guestbook.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3598 + }, + { + "word": "entschliessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decide;to resolve", + "romanization": "entschliessen", + "example_sentence_native": "Er hat sich entschlossen, das Angebot anzunehmen.", + "example_sentence_english": "He decided to accept the offer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3599 + }, + { + "word": "Erhebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey;elevation;collection", + "romanization": "Erhebung", + "example_sentence_native": "Die Erhebung der Daten dauerte mehrere Wochen.", + "example_sentence_english": "The collection of data took several weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3600 + }, + { + "word": "Frucht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fruit", + "romanization": "Frucht", + "example_sentence_native": "Diese Frucht ist sehr süß.", + "example_sentence_english": "This fruit is very sweet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3601 + }, + { + "word": "Funk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radio;spark;funk (music)", + "romanization": "Funk", + "example_sentence_native": "Der Funk war gestört.", + "example_sentence_english": "The radio signal was disturbed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3602 + }, + { + "word": "fürchten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fear;to be afraid of", + "romanization": "fürchten", + "example_sentence_native": "Ich fürchte mich vor Spinnen.", + "example_sentence_english": "I am afraid of spiders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3603 + }, + { + "word": "Gb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Gigabyte", + "romanization": "Gb", + "example_sentence_native": "Die Datei ist 20 Gb groß.", + "example_sentence_english": "The file is 20 Gigabytes large.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3604 + }, + { + "word": "Gestalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shape;form;figure", + "romanization": "Gestalt", + "example_sentence_native": "Die Gestalt des Baumes war beeindruckend.", + "example_sentence_english": "The shape of the tree was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3605 + }, + { + "word": "giessen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pour;to water (plants)", + "romanization": "giessen", + "example_sentence_native": "Ich muss die Blumen giessen.", + "example_sentence_english": "I have to water the flowers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3606 + }, + { + "word": "Handwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "craft;trade;handicraft", + "romanization": "Handwerk", + "example_sentence_native": "Er lernt ein altes Handwerk.", + "example_sentence_english": "He is learning an old craft.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3608 + }, + { + "word": "herrlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonderful;glorious;splendid", + "romanization": "herrlich", + "example_sentence_native": "Das Wetter ist heute herrlich.", + "example_sentence_english": "The weather is wonderful today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3609 + }, + { + "word": "installieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to install", + "romanization": "installieren", + "example_sentence_native": "Ich muss die neue Software installieren.", + "example_sentence_english": "I need to install the new software.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3612 + }, + { + "word": "Kalender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calendar", + "romanization": "Kalender", + "example_sentence_native": "Der Kalender hängt an der Wand.", + "example_sentence_english": "The calendar hangs on the wall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3613 + }, + { + "word": "Kfz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motor vehicle", + "romanization": "Kfz", + "example_sentence_native": "Die Kfz-Zulassungsstelle ist geschlossen.", + "example_sentence_english": "The motor vehicle registration office is closed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3614 + }, + { + "word": "Klub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "club", + "romanization": "Klub", + "example_sentence_native": "Wir gehen heute Abend in den Klub.", + "example_sentence_english": "We are going to the club tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3615 + }, + { + "word": "Kompetenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competence", + "romanization": "Kompetenz", + "example_sentence_native": "Er hat eine hohe soziale Kompetenz.", + "example_sentence_english": "He has high social competence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3616 + }, + { + "word": "kreisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to circle", + "romanization": "kreisen", + "example_sentence_native": "Die Vögel kreisen über dem Feld.", + "example_sentence_english": "The birds are circling over the field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3617 + }, + { + "word": "Käufer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buyer", + "romanization": "Käufer", + "example_sentence_native": "Der Käufer war mit dem Produkt zufrieden.", + "example_sentence_english": "The buyer was satisfied with the product.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3619 + }, + { + "word": "leeren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to empty", + "romanization": "leeren", + "example_sentence_native": "Bitte leeren Sie den Mülleimer.", + "example_sentence_english": "Please empty the trash can.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3620 + }, + { + "word": "liberal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberal", + "romanization": "liberal", + "example_sentence_native": "Er hat sehr liberale Ansichten.", + "example_sentence_english": "He has very liberal views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3621 + }, + { + "word": "Mithilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assistance", + "romanization": "Mithilfe", + "example_sentence_native": "Mit Ihrer Mithilfe konnten wir das Projekt abschließen.", + "example_sentence_english": "With your assistance, we were able to complete the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3624 + }, + { + "word": "Moral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "morale;moral", + "romanization": "Moral", + "example_sentence_native": "Die Moral der Truppe war hoch.", + "example_sentence_english": "The morale of the troops was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3625 + }, + { + "word": "Pilot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pilot", + "romanization": "Pilot", + "example_sentence_native": "Der Pilot landete das Flugzeug sicher.", + "example_sentence_english": "The pilot landed the plane safely.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3628 + }, + { + "word": "Pleite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy", + "romanization": "Pleite", + "example_sentence_native": "Die Firma ging in die Pleite.", + "example_sentence_english": "The company went bankrupt.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3629 + }, + { + "word": "Probe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rehearsal;sample;test", + "romanization": "Probe", + "example_sentence_native": "Die Band hatte eine lange Probe für das Konzert.", + "example_sentence_english": "The band had a long rehearsal for the concert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3631 + }, + { + "word": "Regime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regime", + "romanization": "Regime", + "example_sentence_native": "Das alte Regime wurde gestürzt.", + "example_sentence_english": "The old regime was overthrown.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3632 + }, + { + "word": "rüber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "over (here;there)", + "romanization": "rüber", + "example_sentence_native": "Komm mal rüber!", + "example_sentence_english": "Come over here!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3633 + }, + { + "word": "Saal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hall;room", + "romanization": "Saal", + "example_sentence_native": "Der große Saal war voller Menschen.", + "example_sentence_english": "The large hall was full of people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3634 + }, + { + "word": "Schande", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shame;disgrace", + "romanization": "Schande", + "example_sentence_native": "Es ist eine Schande, wie sie behandelt wurde.", + "example_sentence_english": "It's a shame how she was treated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3635 + }, + { + "word": "Scheibe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slice;disc;pane", + "romanization": "Scheibe", + "example_sentence_native": "Ich hätte gerne eine Scheibe Brot.", + "example_sentence_english": "I would like a slice of bread.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3636 + }, + { + "word": "schonmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "already once;ever", + "romanization": "schonmal", + "example_sentence_native": "Warst du schonmal in Berlin?", + "example_sentence_english": "Have you ever been to Berlin?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3637 + }, + { + "word": "solo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solo", + "romanization": "solo", + "example_sentence_native": "Er spielte ein Solo auf der Gitarre.", + "example_sentence_english": "He played a solo on the guitar.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3639 + }, + { + "word": "texten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to text;to write lyrics", + "romanization": "texten", + "example_sentence_native": "Ich muss noch eine Nachricht texten.", + "example_sentence_english": "I still need to text a message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3641 + }, + { + "word": "Theologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theology", + "romanization": "Theologie", + "example_sentence_native": "Sie studiert Theologie an der Universität.", + "example_sentence_english": "She studies theology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3642 + }, + { + "word": "unsicher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "insecure;uncertain", + "romanization": "unsicher", + "example_sentence_native": "Er fühlt sich unsicher in der neuen Umgebung.", + "example_sentence_english": "He feels insecure in the new environment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3643 + }, + { + "word": "Vorfeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apron (airport);run-up (to an event);foreground", + "romanization": "Vorfeld", + "example_sentence_native": "Das Flugzeug wartet auf dem Vorfeld.", + "example_sentence_english": "The airplane is waiting on the apron.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3645 + }, + { + "word": "Asyl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum", + "romanization": "Asyl", + "example_sentence_native": "Viele Menschen suchen Asyl in Deutschland.", + "example_sentence_english": "Many people seek asylum in Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3649 + }, + { + "word": "aufpassen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pay attention;to be careful", + "romanization": "aufpassen", + "example_sentence_native": "Du musst aufpassen, wenn du die Straße überquerst.", + "example_sentence_english": "You have to pay attention when you cross the street.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "passen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3650 + }, + { + "word": "ausführlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detailed;extensive", + "romanization": "ausführlich", + "example_sentence_native": "Er gab eine ausführliche Beschreibung des Problems.", + "example_sentence_english": "He gave a detailed description of the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3651 + }, + { + "word": "ausbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expand;to develop;to remove", + "romanization": "ausbauen", + "example_sentence_native": "Sie wollen das Netzwerk ausbauen.", + "example_sentence_english": "They want to expand the network.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3652 + }, + { + "word": "ausgeben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to spend (money);to issue", + "romanization": "ausgeben", + "example_sentence_native": "Ich möchte nicht zu viel Geld ausgeben.", + "example_sentence_english": "I don't want to spend too much money.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3653 + }, + { + "word": "ausländisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "foreign", + "romanization": "ausländisch", + "example_sentence_native": "Viele ausländische Studenten kommen hierher.", + "example_sentence_english": "Many foreign students come here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3654 + }, + { + "word": "Ausrüstung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipment;gear", + "romanization": "Ausrüstung", + "example_sentence_native": "Wir brauchen die richtige Ausrüstung für die Wanderung.", + "example_sentence_english": "We need the right equipment for the hike.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3655 + }, + { + "word": "Basketball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "romanization": "Basketball", + "example_sentence_native": "Er spielt gerne Basketball am Wochenende.", + "example_sentence_english": "He likes to play basketball on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3656 + }, + { + "word": "beurteilen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to judge;to assess;to evaluate", + "romanization": "beurteilen", + "example_sentence_native": "Es ist schwer, die Situation richtig zu beurteilen.", + "example_sentence_english": "It is difficult to judge the situation correctly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3657 + }, + { + "word": "Diagnose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnosis", + "romanization": "Diagnose", + "example_sentence_native": "Die Diagnose wurde schnell gestellt.", + "example_sentence_english": "The diagnosis was made quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3658 + }, + { + "word": "dortig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "local;of that place", + "romanization": "dortig", + "example_sentence_native": "Die dortige Bevölkerung war sehr freundlich.", + "example_sentence_english": "The local population was very friendly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3659 + }, + { + "word": "Emotion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emotion", + "romanization": "Emotion", + "example_sentence_native": "Sie zeigte keine Emotion.", + "example_sentence_english": "She showed no emotion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3660 + }, + { + "word": "entschuldigen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to apologize;to excuse", + "romanization": "entschuldigen", + "example_sentence_native": "Ich möchte mich entschuldigen.", + "example_sentence_english": "I would like to apologize.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3661 + }, + { + "word": "erteilen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant;to issue;to give", + "romanization": "erteilen", + "example_sentence_native": "Der Lehrer erteilte den Schülern eine Aufgabe.", + "example_sentence_english": "The teacher gave the students a task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3662 + }, + { + "word": "gemein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mean;common", + "romanization": "gemein", + "example_sentence_native": "Das war sehr gemein von dir.", + "example_sentence_english": "That was very mean of you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3663 + }, + { + "word": "genial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brilliant;ingenious", + "romanization": "genial", + "example_sentence_native": "Das ist eine geniale Idee!", + "example_sentence_english": "That is a brilliant idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3664 + }, + { + "word": "Girl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "girl", + "romanization": "Girl", + "example_sentence_native": "Das Girl sang ein Lied.", + "example_sentence_english": "The girl sang a song.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3665 + }, + { + "word": "herausgeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to publish;to hand out;to issue", + "romanization": "herausgeben", + "example_sentence_native": "Der Verlag wird das Buch bald herausgeben.", + "example_sentence_english": "The publisher will soon publish the book.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3667 + }, + { + "word": "hierher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "here (to this place)", + "romanization": "hierher", + "example_sentence_native": "Komm bitte hierher!", + "example_sentence_english": "Please come here!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3668 + }, + { + "word": "Höhle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cave;den", + "romanization": "Höhle", + "example_sentence_native": "Die Bären leben in einer Höhle.", + "example_sentence_english": "The bears live in a cave.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3669 + }, + { + "word": "Image", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "image;reputation", + "romanization": "Image", + "example_sentence_native": "Das Unternehmen hat ein gutes Image in der Öffentlichkeit.", + "example_sentence_english": "The company has a good image in public.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3671 + }, + { + "word": "Kanzler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chancellor", + "romanization": "Kanzler", + "example_sentence_native": "Der deutsche Kanzler traf sich mit dem französischen Präsidenten.", + "example_sentence_english": "The German chancellor met with the French president.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3672 + }, + { + "word": "Konzern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporation;group (of companies)", + "romanization": "Konzern", + "example_sentence_native": "Der Konzern plant eine neue Investition.", + "example_sentence_english": "The corporation plans a new investment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3674 + }, + { + "word": "Leiche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corpse;dead body", + "romanization": "Leiche", + "example_sentence_native": "Die Polizei fand eine Leiche im Wald.", + "example_sentence_english": "The police found a corpse in the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3675 + }, + { + "word": "matt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dull;matte;tired", + "romanization": "matt", + "example_sentence_native": "Nach dem langen Tag fühlte er sich matt.", + "example_sentence_english": "After the long day, he felt tired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3676 + }, + { + "word": "Mitgliedschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "membership", + "romanization": "Mitgliedschaft", + "example_sentence_native": "Die Mitgliedschaft im Verein kostet 50 Euro pro Jahr.", + "example_sentence_english": "Membership in the club costs 50 euros per year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3679 + }, + { + "word": "monatlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly", + "romanization": "monatlich", + "example_sentence_native": "Die Miete ist monatlich zu zahlen.", + "example_sentence_english": "The rent is to be paid monthly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3680 + }, + { + "word": "neugierig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curious", + "romanization": "neugierig", + "example_sentence_native": "Kinder sind oft sehr neugierig.", + "example_sentence_english": "Children are often very curious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3681 + }, + { + "word": "orange", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "orange", + "romanization": "orange", + "example_sentence_native": "Das Auto ist orange.", + "example_sentence_english": "The car is orange.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3682 + }, + { + "word": "Orchester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchestra", + "romanization": "Orchester", + "example_sentence_native": "Das Orchester spielt klassische Musik.", + "example_sentence_english": "The orchestra plays classical music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3683 + }, + { + "word": "Part", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "part", + "romanization": "Part", + "example_sentence_native": "Er hat einen wichtigen Part in dem Stück.", + "example_sentence_english": "He has an important part in the play.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3684 + }, + { + "word": "Performance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance", + "romanization": "Performance", + "example_sentence_native": "Die Performance des Künstlers war beeindruckend.", + "example_sentence_english": "The artist's performance was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3685 + }, + { + "word": "polnisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Polish", + "romanization": "polnisch", + "example_sentence_native": "Sie spricht fließend Polnisch.", + "example_sentence_english": "She speaks fluent Polish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 3687 + }, + { + "word": "Polnisch", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Polish (language)", + "romanization": "Polnisch", + "example_sentence_native": "Sie lernt Polnisch.", + "example_sentence_english": "She is learning Polish.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 3687 + }, + { + "word": "Rechtsanwalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lawyer", + "romanization": "Rechtsanwalt", + "example_sentence_native": "Mein Rechtsanwalt hat mir geholfen.", + "example_sentence_english": "My lawyer helped me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3688 + }, + { + "word": "Route", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "route", + "romanization": "Route", + "example_sentence_native": "Wir haben eine neue Route geplant.", + "example_sentence_english": "We planned a new route.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3689 + }, + { + "word": "schlau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clever", + "romanization": "schlau", + "example_sentence_native": "Er ist ein sehr schlauer Junge.", + "example_sentence_english": "He is a very clever boy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3690 + }, + { + "word": "Schock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shock", + "romanization": "Schock", + "example_sentence_native": "Die Nachricht war ein großer Schock für sie.", + "example_sentence_english": "The news was a big shock for her.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3691 + }, + { + "word": "schwanger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pregnant", + "romanization": "schwanger", + "example_sentence_native": "Sie ist im fünften Monat schwanger.", + "example_sentence_english": "She is five months pregnant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3693 + }, + { + "word": "schwul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gay", + "romanization": "schwul", + "example_sentence_native": "Er ist offen schwul.", + "example_sentence_english": "He is openly gay.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3694 + }, + { + "word": "sexuell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexual", + "romanization": "sexuell", + "example_sentence_native": "Sie haben eine sexuelle Beziehung.", + "example_sentence_english": "They have a sexual relationship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3695 + }, + { + "word": "Sofa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sofa", + "romanization": "Sofa", + "example_sentence_native": "Das Sofa ist sehr bequem.", + "example_sentence_english": "The sofa is very comfortable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3696 + }, + { + "word": "Spektrum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spectrum", + "romanization": "Spektrum", + "example_sentence_native": "Das Spektrum der Farben ist beeindruckend.", + "example_sentence_english": "The spectrum of colors is impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3697 + }, + { + "word": "Taxi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "taxi", + "romanization": "Taxi", + "example_sentence_native": "Ich nehme ein Taxi zum Bahnhof.", + "example_sentence_english": "I'll take a taxi to the station.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3699 + }, + { + "word": "trainieren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to train;to practice", + "romanization": "trainieren", + "example_sentence_native": "Ich trainiere jeden Tag.", + "example_sentence_english": "I train every day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3700 + }, + { + "word": "treu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loyal;faithful", + "romanization": "treu", + "example_sentence_native": "Er ist ein treuer Freund.", + "example_sentence_english": "He is a loyal friend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3701 + }, + { + "word": "Tropfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drop", + "romanization": "Tropfen", + "example_sentence_native": "Ein Tropfen Wasser fiel auf den Boden.", + "example_sentence_english": "A drop of water fell on the floor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3703 + }, + { + "word": "Vereinbarung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;arrangement", + "romanization": "Vereinbarung", + "example_sentence_native": "Wir haben eine Vereinbarung getroffen.", + "example_sentence_english": "We have reached an agreement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3704 + }, + { + "word": "verschieben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to postpone;to move", + "romanization": "verschieben", + "example_sentence_native": "Wir müssen das Treffen verschieben.", + "example_sentence_english": "We have to postpone the meeting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3705 + }, + { + "word": "Zoo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zoo", + "romanization": "Zoo", + "example_sentence_native": "Wir gehen am Wochenende in den Zoo.", + "example_sentence_english": "We are going to the zoo on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3709 + }, + { + "word": "Abendessen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dinner", + "romanization": "Abendessen", + "example_sentence_native": "Das Abendessen ist um sieben Uhr.", + "example_sentence_english": "Dinner is at seven o'clock.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3710 + }, + { + "word": "abwarten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wait;to await", + "romanization": "abwarten", + "example_sentence_native": "Wir müssen abwarten, was passiert.", + "example_sentence_english": "We have to wait and see what happens.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "warten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3711 + }, + { + "word": "Akku", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rechargeable battery", + "romanization": "Akku", + "example_sentence_native": "Der Akku meines Handys ist leer.", + "example_sentence_english": "My phone's battery is dead.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3712 + }, + { + "word": "anschliessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to connect;to plug in", + "romanization": "anschliessen", + "example_sentence_native": "Kannst du das Kabel anschliessen?", + "example_sentence_english": "Can you connect the cable?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schliessen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3713 + }, + { + "word": "Bedürfnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "need;requirement", + "romanization": "Bedürfnis", + "example_sentence_native": "Er hat ein starkes Bedürfnis nach Ruhe.", + "example_sentence_english": "He has a strong need for rest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3715 + }, + { + "word": "Begleitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accompaniment;escort", + "romanization": "Begleitung", + "example_sentence_native": "Sie reiste in Begleitung ihrer Freunde.", + "example_sentence_english": "She traveled in the company of her friends.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3716 + }, + { + "word": "beinhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contain;to include", + "romanization": "beinhalten", + "example_sentence_native": "Der Preis beinhaltet Frühstück.", + "example_sentence_english": "The price includes breakfast.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3717 + }, + { + "word": "bevorzugen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prefer", + "romanization": "bevorzugen", + "example_sentence_native": "Ich bevorzuge Kaffee statt Tee.", + "example_sentence_english": "I prefer coffee instead of tea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3718 + }, + { + "word": "Brite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Briton (male)", + "romanization": "Brite", + "example_sentence_native": "Er ist ein Brite aus London.", + "example_sentence_english": "He is a Briton from London.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3719 + }, + { + "word": "Coach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach", + "romanization": "Coach", + "example_sentence_native": "Der Coach motivierte das Team.", + "example_sentence_english": "The coach motivated the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3720 + }, + { + "word": "Dutzend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dozen", + "romanization": "Dutzend", + "example_sentence_native": "Ich brauche ein Dutzend Eier.", + "example_sentence_english": "I need a dozen eggs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 3721 + }, + { + "word": "Einblick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insight", + "romanization": "Einblick", + "example_sentence_native": "Er gab uns einen Einblick in seine Arbeit.", + "example_sentence_english": "He gave us an insight into his work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3722 + }, + { + "word": "Einzelfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual case", + "romanization": "Einzelfall", + "example_sentence_native": "Das ist ein Einzelfall und nicht die Regel.", + "example_sentence_english": "That is an individual case and not the rule.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3723 + }, + { + "word": "Episode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "episode", + "romanization": "Episode", + "example_sentence_native": "Ich habe die letzte Episode der Serie gesehen.", + "example_sentence_english": "I watched the last episode of the series.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3725 + }, + { + "word": "erläutern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to explain;to clarify", + "romanization": "erläutern", + "example_sentence_native": "Könnten Sie das bitte genauer erläutern?", + "example_sentence_english": "Could you please explain that in more detail?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3726 + }, + { + "word": "festhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold on;to cling to;to record", + "romanization": "festhalten", + "example_sentence_native": "Er musste sich am Geländer festhalten.", + "example_sentence_english": "He had to hold on to the railing.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3727 + }, + { + "word": "Fitness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fitness", + "romanization": "Fitness", + "example_sentence_native": "Sie achtet sehr auf ihre Fitness.", + "example_sentence_english": "She pays a lot of attention to her fitness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3728 + }, + { + "word": "fliessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flow", + "romanization": "fliessen", + "example_sentence_native": "Das Wasser fließt den Bach hinunter.", + "example_sentence_english": "The water flows down the stream.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3729 + }, + { + "word": "Genuss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enjoyment;pleasure", + "romanization": "Genuss", + "example_sentence_native": "Der Genuss eines guten Essens ist unbezahlbar.", + "example_sentence_english": "The enjoyment of good food is priceless.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3731 + }, + { + "word": "Geruch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smell;odor", + "romanization": "Geruch", + "example_sentence_native": "Der Geruch von frischem Brot ist wunderbar.", + "example_sentence_english": "The smell of fresh bread is wonderful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3732 + }, + { + "word": "heben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lift;to raise", + "romanization": "heben", + "example_sentence_native": "Er kann schwere Gewichte heben.", + "example_sentence_english": "He can lift heavy weights.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3734 + }, + { + "word": "heimlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secret;secretly", + "romanization": "heimlich", + "example_sentence_native": "Sie hat heimlich das Geschenk versteckt.", + "example_sentence_english": "She secretly hid the gift.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3735 + }, + { + "word": "identifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to identify", + "romanization": "identifizieren", + "example_sentence_native": "Die Polizei konnte den Täter identifizieren.", + "example_sentence_english": "The police could identify the perpetrator.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3737 + }, + { + "word": "Kanzlerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chancellor (female)", + "romanization": "Kanzlerin", + "example_sentence_native": "Die Kanzlerin hielt eine wichtige Rede.", + "example_sentence_english": "The chancellor held an important speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3738 + }, + { + "word": "Kennzeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic;license plate", + "romanization": "Kennzeichen", + "example_sentence_native": "Das Kennzeichen des Autos war schwer zu lesen.", + "example_sentence_english": "The car's license plate was hard to read.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3739 + }, + { + "word": "konservativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conservative", + "romanization": "konservativ", + "example_sentence_native": "Er hat sehr konservative Ansichten.", + "example_sentence_english": "He has very conservative views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3740 + }, + { + "word": "Marine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "navy", + "romanization": "Marine", + "example_sentence_native": "Sie arbeitet bei der Marine.", + "example_sentence_english": "She works for the navy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3742 + }, + { + "word": "militärisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "military", + "romanization": "militärisch", + "example_sentence_native": "Er hat eine militärische Ausbildung.", + "example_sentence_english": "He has military training.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3744 + }, + { + "word": "Missbrauch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abuse;misuse", + "romanization": "Missbrauch", + "example_sentence_native": "Der Missbrauch von Medikamenten ist gefährlich.", + "example_sentence_english": "The misuse of medication is dangerous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3745 + }, + { + "word": "Mittagessen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lunch", + "romanization": "Mittagessen", + "example_sentence_native": "Was gibt es zum Mittagessen?", + "example_sentence_english": "What's for lunch?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3746 + }, + { + "word": "musikalisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musical", + "romanization": "musikalisch", + "example_sentence_native": "Sie ist sehr musikalisch.", + "example_sentence_english": "She is very musical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3747 + }, + { + "word": "nerven", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy", + "romanization": "nerven", + "example_sentence_native": "Hör auf, mich zu nerven!", + "example_sentence_english": "Stop annoying me!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3748 + }, + { + "word": "Pack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pack;bundle", + "romanization": "Pack", + "example_sentence_native": "Ich habe ein Pack Kekse gekauft.", + "example_sentence_english": "I bought a pack of cookies.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3751 + }, + { + "word": "Panzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tank;armor", + "romanization": "Panzer", + "example_sentence_native": "Der Panzer rollte über das Feld.", + "example_sentence_english": "The tank rolled across the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3752 + }, + { + "word": "Penis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penis", + "romanization": "Penis", + "example_sentence_native": "Der Penis ist ein männliches Geschlechtsorgan.", + "example_sentence_english": "The penis is a male sex organ.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3753 + }, + { + "word": "Pool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pool", + "romanization": "Pool", + "example_sentence_native": "Wir haben einen Pool im Garten.", + "example_sentence_english": "We have a pool in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3754 + }, + { + "word": "premium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premium;high-quality", + "romanization": "premium", + "example_sentence_native": "Das ist ein Premium-Produkt.", + "example_sentence_english": "That is a premium product.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3755 + }, + { + "word": "Präsentation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presentation", + "romanization": "Präsentation", + "example_sentence_native": "Die Präsentation war sehr informativ.", + "example_sentence_english": "The presentation was very informative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3756 + }, + { + "word": "Rate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rate;installment", + "romanization": "Rate", + "example_sentence_native": "Die monatliche Rate ist hoch.", + "example_sentence_english": "The monthly installment is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3757 + }, + { + "word": "Rechner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "computer;calculator", + "romanization": "Rechner", + "example_sentence_native": "Mein neuer Rechner ist sehr schnell.", + "example_sentence_english": "My new computer is very fast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3758 + }, + { + "word": "Reihenfolge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "order;sequence", + "romanization": "Reihenfolge", + "example_sentence_native": "Die Reihenfolge der Schritte ist wichtig.", + "example_sentence_english": "The order of the steps is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3760 + }, + { + "word": "Reis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rice", + "romanization": "Reis", + "example_sentence_native": "Ich esse gerne Reis mit Gemüse.", + "example_sentence_english": "I like to eat rice with vegetables.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3761 + }, + { + "word": "Rekord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record", + "romanization": "Rekord", + "example_sentence_native": "Er hat einen neuen Weltrekord aufgestellt.", + "example_sentence_english": "He set a new world record.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3762 + }, + { + "word": "Sau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sow;pig (female)", + "romanization": "Sau", + "example_sentence_native": "Die Sau hat viele Ferkel.", + "example_sentence_english": "The sow has many piglets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3764 + }, + { + "word": "Schrank", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cupboard;wardrobe", + "romanization": "Schrank", + "example_sentence_native": "Der Schrank ist voll mit Kleidung.", + "example_sentence_english": "The wardrobe is full of clothes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3765 + }, + { + "word": "steigern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to increase;to raise", + "romanization": "steigern", + "example_sentence_native": "Wir müssen unsere Leistung steigern.", + "example_sentence_english": "We need to increase our performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3767 + }, + { + "word": "stossen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to push;to bump", + "romanization": "stossen", + "example_sentence_native": "Man sollte nicht gegen die Wand stossen.", + "example_sentence_english": "One should not push against the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3768 + }, + { + "word": "streichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to paint;to cancel;to stroke", + "romanization": "streichen", + "example_sentence_native": "Wir müssen die Wand streichen.", + "example_sentence_english": "We need to paint the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3769 + }, + { + "word": "Treue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loyalty", + "romanization": "Treue", + "example_sentence_native": "Ihre Treue zu ihrem Team war bewundernswert.", + "example_sentence_english": "Her loyalty to her team was admirable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3771 + }, + { + "word": "Trick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trick", + "romanization": "Trick", + "example_sentence_native": "Er zeigte uns einen neuen Trick mit Karten.", + "example_sentence_english": "He showed us a new trick with cards.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3772 + }, + { + "word": "untereinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amongst each other", + "romanization": "untereinander", + "example_sentence_native": "Sie sprachen leise untereinander.", + "example_sentence_english": "They spoke quietly amongst each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3773 + }, + { + "word": "vergleichsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparatively", + "romanization": "vergleichsweise", + "example_sentence_native": "Das Wetter war vergleichsweise mild für diese Jahreszeit.", + "example_sentence_english": "The weather was comparatively mild for this time of year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3774 + }, + { + "word": "Verkäufer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salesperson", + "romanization": "Verkäufer", + "example_sentence_native": "Der Verkäufer half mir, das richtige Produkt zu finden.", + "example_sentence_english": "The salesperson helped me find the right product.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3775 + }, + { + "word": "Vision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vision", + "romanization": "Vision", + "example_sentence_native": "Sie hatte eine klare Vision für die Zukunft des Unternehmens.", + "example_sentence_english": "She had a clear vision for the future of the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3776 + }, + { + "word": "Vorgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specification", + "romanization": "Vorgabe", + "example_sentence_native": "Wir müssen die Vorgaben des Kunden genau einhalten.", + "example_sentence_english": "We must strictly adhere to the customer's specifications.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3777 + }, + { + "word": "vorschlagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to suggest", + "romanization": "vorschlagen", + "example_sentence_native": "Ich möchte einen neuen Plan vorschlagen.", + "example_sentence_english": "I would like to suggest a new plan.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3778 + }, + { + "word": "wehren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defend oneself", + "romanization": "wehren", + "example_sentence_native": "Er konnte sich nicht mehr wehren.", + "example_sentence_english": "He could no longer defend himself.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3779 + }, + { + "word": "angemessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate;adequate", + "romanization": "angemessen", + "example_sentence_native": "Das ist eine angemessene Antwort.", + "example_sentence_english": "That is an appropriate answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3782 + }, + { + "word": "attraktiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attractive", + "romanization": "attraktiv", + "example_sentence_native": "Sie ist eine sehr attraktive Frau.", + "example_sentence_english": "She is a very attractive woman.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3783 + }, + { + "word": "auflösen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissolve;to resolve", + "romanization": "auflösen", + "example_sentence_native": "Zucker löst sich in Wasser auf.", + "example_sentence_english": "Sugar dissolves in water.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "lösen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3784 + }, + { + "word": "aufwachsen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grow up", + "romanization": "aufwachsen", + "example_sentence_native": "Ich bin auf dem Land aufgewachsen.", + "example_sentence_english": "I grew up in the countryside.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "wachsen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3785 + }, + { + "word": "Aufruf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeal;call;summons", + "romanization": "Aufruf", + "example_sentence_native": "Der Präsident startete einen Aufruf zur Einheit.", + "example_sentence_english": "The president launched a call for unity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3786 + }, + { + "word": "bedecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cover", + "romanization": "bedecken", + "example_sentence_native": "Schnee bedeckte die Berge.", + "example_sentence_english": "Snow covered the mountains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3787 + }, + { + "word": "beeindrucken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impress", + "romanization": "beeindrucken", + "example_sentence_native": "Seine Rede hat mich sehr beeindruckt.", + "example_sentence_english": "His speech impressed me a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3788 + }, + { + "word": "Benzin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gasoline;petrol", + "romanization": "Benzin", + "example_sentence_native": "Das Auto braucht Benzin.", + "example_sentence_english": "The car needs gasoline.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3789 + }, + { + "word": "Camp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camp", + "romanization": "Camp", + "example_sentence_native": "Wir gehen ins Camp.", + "example_sentence_english": "We are going to the camp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3792 + }, + { + "word": "denkbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceivable;imaginable", + "romanization": "denkbar", + "example_sentence_native": "Das ist eine denkbare Lösung.", + "example_sentence_english": "That is a conceivable solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3796 + }, + { + "word": "Dienstleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "service", + "romanization": "Dienstleistung", + "example_sentence_native": "Wir bieten verschiedene Dienstleistungen an.", + "example_sentence_english": "We offer various services.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3797 + }, + { + "word": "drinnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside;indoors", + "romanization": "drinnen", + "example_sentence_native": "Es ist kalt draußen, bleiben wir drinnen.", + "example_sentence_english": "It's cold outside, let's stay inside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3798 + }, + { + "word": "elektrisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electric;electrical", + "romanization": "elektrisch", + "example_sentence_native": "Das ist ein elektrisches Auto.", + "example_sentence_english": "That is an electric car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3799 + }, + { + "word": "Empfänger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recipient", + "romanization": "Empfänger", + "example_sentence_native": "Der Empfänger hat das Paket erhalten.", + "example_sentence_english": "The recipient has received the package.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3800 + }, + { + "word": "Experiment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experiment", + "romanization": "Experiment", + "example_sentence_native": "Das Experiment war erfolgreich.", + "example_sentence_english": "The experiment was successful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3801 + }, + { + "word": "fleissig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diligent;hardworking", + "romanization": "fleissig", + "example_sentence_native": "Sie ist eine sehr fleissige Studentin.", + "example_sentence_english": "She is a very diligent student.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3802 + }, + { + "word": "freilich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainly;indeed;of course", + "romanization": "freilich", + "example_sentence_native": "Das ist freilich eine gute Idee.", + "example_sentence_english": "That is certainly a good idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3803 + }, + { + "word": "fressen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to eat (for animals);to devour", + "romanization": "fressen", + "example_sentence_native": "Der Hund frisst sein Futter schnell.", + "example_sentence_english": "The dog eats its food quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3804 + }, + { + "word": "furchtbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrible;awful", + "romanization": "furchtbar", + "example_sentence_native": "Das Wetter ist heute furchtbar.", + "example_sentence_english": "The weather is terrible today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3805 + }, + { + "word": "Gedächtnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory", + "romanization": "Gedächtnis", + "example_sentence_native": "Er hat ein gutes Gedächtnis für Namen.", + "example_sentence_english": "He has a good memory for names.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3806 + }, + { + "word": "geradezu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absolutely;simply;downright", + "romanization": "geradezu", + "example_sentence_native": "Seine Reaktion war geradezu unglaublich.", + "example_sentence_english": "His reaction was absolutely incredible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3807 + }, + { + "word": "gewähren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant;to allow", + "romanization": "gewähren", + "example_sentence_native": "Der König wird ihm eine Audienz gewähren.", + "example_sentence_english": "The king will grant him an audience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3808 + }, + { + "word": "gewöhnlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usual;ordinary;common", + "romanization": "gewöhnlich", + "example_sentence_native": "Das ist ein gewöhnlicher Tag für mich.", + "example_sentence_english": "That is a usual day for me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3809 + }, + { + "word": "heran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closer;up to", + "romanization": "heran", + "example_sentence_native": "Komm bitte näher heran.", + "example_sentence_english": "Please come closer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3810 + }, + { + "word": "hervorragend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellent;outstanding", + "romanization": "hervorragend", + "example_sentence_native": "Das Essen war hervorragend.", + "example_sentence_english": "The food was excellent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3811 + }, + { + "word": "illegal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illegal", + "romanization": "illegal", + "example_sentence_native": "Das ist eine illegale Handlung.", + "example_sentence_english": "That is an illegal act.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3812 + }, + { + "word": "Inhaber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owner;proprietor", + "romanization": "Inhaber", + "example_sentence_native": "Der Inhaber des Geschäfts ist sehr freundlich.", + "example_sentence_english": "The owner of the shop is very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3813 + }, + { + "word": "inhaltlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in terms of content;substantively", + "romanization": "inhaltlich", + "example_sentence_native": "Inhaltlich war die Präsentation sehr gut.", + "example_sentence_english": "In terms of content, the presentation was very good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3814 + }, + { + "word": "islamisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Islamic", + "romanization": "islamisch", + "example_sentence_native": "Das ist ein islamisches Land.", + "example_sentence_english": "That is an Islamic country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3815 + }, + { + "word": "komplex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complex", + "romanization": "komplex", + "example_sentence_native": "Das Problem ist sehr komplex.", + "example_sentence_english": "The problem is very complex.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3818 + }, + { + "word": "körperlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical;bodily", + "romanization": "körperlich", + "example_sentence_native": "Er ist in guter körperlicher Verfassung.", + "example_sentence_english": "He is in good physical condition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3820 + }, + { + "word": "Lieferung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delivery;shipment", + "romanization": "Lieferung", + "example_sentence_native": "Die Lieferung kommt morgen an.", + "example_sentence_english": "The delivery arrives tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3821 + }, + { + "word": "Line", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "line", + "romanization": "Line", + "example_sentence_native": "Der Spieler stand auf der Line.", + "example_sentence_english": "The player stood on the line.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3822 + }, + { + "word": "Nachbarschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighborhood;vicinity", + "romanization": "Nachbarschaft", + "example_sentence_native": "Die Nachbarschaft ist sehr freundlich.", + "example_sentence_english": "The neighborhood is very friendly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3824 + }, + { + "word": "nass", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wet", + "romanization": "nass", + "example_sentence_native": "Meine Kleidung ist ganz nass geworden.", + "example_sentence_english": "My clothes got completely wet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3825 + }, + { + "word": "nirgends", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nowhere", + "romanization": "nirgends", + "example_sentence_native": "Ich konnte ihn nirgends finden.", + "example_sentence_english": "I couldn't find him anywhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3826 + }, + { + "word": "Norm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "norm;standard", + "romanization": "Norm", + "example_sentence_native": "Das entspricht nicht der Norm.", + "example_sentence_english": "That does not conform to the norm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3827 + }, + { + "word": "problemlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "problem-free;without problems", + "romanization": "problemlos", + "example_sentence_native": "Die Installation verlief problemlos.", + "example_sentence_english": "The installation went smoothly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3828 + }, + { + "word": "public", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public", + "romanization": "public", + "example_sentence_native": "Das ist ein public event.", + "example_sentence_english": "This is a public event.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3829 + }, + { + "word": "Reporter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reporter", + "romanization": "Reporter", + "example_sentence_native": "Der Reporter stellte viele Fragen.", + "example_sentence_english": "The reporter asked many questions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3832 + }, + { + "word": "riechen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smell", + "romanization": "riechen", + "example_sentence_native": "Ich kann den Kaffee riechen.", + "example_sentence_english": "I can smell the coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3833 + }, + { + "word": "schieben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to push", + "romanization": "schieben", + "example_sentence_native": "Er muss das Auto schieben.", + "example_sentence_english": "He has to push the car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3834 + }, + { + "word": "Solidarität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solidarity", + "romanization": "Solidarität", + "example_sentence_native": "Wir zeigen Solidarität mit den Opfern.", + "example_sentence_english": "We show solidarity with the victims.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3837 + }, + { + "word": "Sozialismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialism", + "romanization": "Sozialismus", + "example_sentence_native": "Der Sozialismus ist eine politische Ideologie.", + "example_sentence_english": "Socialism is a political ideology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3839 + }, + { + "word": "Spielzeug", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toy", + "romanization": "Spielzeug", + "example_sentence_native": "Das Kind spielt mit seinem neuen Spielzeug.", + "example_sentence_english": "The child is playing with their new toy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3840 + }, + { + "word": "südlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southern", + "romanization": "südlich", + "example_sentence_native": "Die Stadt liegt südlich der Berge.", + "example_sentence_english": "The city is located south of the mountains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3841 + }, + { + "word": "Toilette", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toilet;restroom", + "romanization": "Toilette", + "example_sentence_native": "Wo ist die Toilette, bitte?", + "example_sentence_english": "Where is the restroom, please?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3842 + }, + { + "word": "Toleranz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerance", + "romanization": "Toleranz", + "example_sentence_native": "Toleranz ist wichtig in einer vielfältigen Gesellschaft.", + "example_sentence_english": "Tolerance is important in a diverse society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3843 + }, + { + "word": "Trauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grief;sorrow", + "romanization": "Trauer", + "example_sentence_native": "Sie empfand tiefe Trauer nach dem Verlust.", + "example_sentence_english": "She felt deep sorrow after the loss.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3844 + }, + { + "word": "umfangreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extensive;comprehensive", + "romanization": "umfangreich", + "example_sentence_native": "Das Projekt erforderte umfangreiche Recherchen.", + "example_sentence_english": "The project required extensive research.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3845 + }, + { + "word": "Universum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "universe", + "romanization": "Universum", + "example_sentence_native": "Das Universum ist unendlich groß.", + "example_sentence_english": "The universe is infinitely large.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3846 + }, + { + "word": "Warnung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "warning", + "romanization": "Warnung", + "example_sentence_native": "Er ignorierte die Warnung vor dem Sturm.", + "example_sentence_english": "He ignored the warning about the storm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3847 + }, + { + "word": "Wiese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meadow;field", + "romanization": "Wiese", + "example_sentence_native": "Die Kühe grasen auf der grünen Wiese.", + "example_sentence_english": "The cows are grazing in the green meadow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3848 + }, + { + "word": "wundern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wonder;to be surprised", + "romanization": "wundern", + "example_sentence_native": "Ich wundere mich, warum er nicht gekommen ist.", + "example_sentence_english": "I wonder why he hasn't come.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3849 + }, + { + "word": "Wüste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desert", + "romanization": "Wüste", + "example_sentence_native": "Die Sahara ist eine große Wüste.", + "example_sentence_english": "The Sahara is a large desert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3850 + }, + { + "word": "zeitweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporarily;at times", + "romanization": "zeitweise", + "example_sentence_native": "Es regnete zeitweise während des Konzerts.", + "example_sentence_english": "It rained temporarily during the concert.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3851 + }, + { + "word": "Zusammenfassung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary", + "romanization": "Zusammenfassung", + "example_sentence_native": "Bitte geben Sie mir eine kurze Zusammenfassung des Berichts.", + "example_sentence_english": "Please give me a short summary of the report.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3852 + }, + { + "word": "äusser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outer;external", + "romanization": "äusser", + "example_sentence_native": "Die äussere Schicht des Gebäudes ist beschädigt.", + "example_sentence_english": "The outer layer of the building is damaged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3853 + }, + { + "word": "Agenda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agenda", + "romanization": "Agenda", + "example_sentence_native": "Die Agenda für das Treffen ist sehr voll.", + "example_sentence_english": "The agenda for the meeting is very full.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3854 + }, + { + "word": "Anklage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accusation;charge (legal)", + "romanization": "Anklage", + "example_sentence_native": "Die Anklage wurde wegen mangelnder Beweise fallen gelassen.", + "example_sentence_english": "The charge was dropped due to lack of evidence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3858 + }, + { + "word": "Architekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "architect", + "romanization": "Architekt", + "example_sentence_native": "Der Architekt hat das Gebäude entworfen.", + "example_sentence_english": "The architect designed the building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3859 + }, + { + "word": "Begeisterung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiasm", + "romanization": "Begeisterung", + "example_sentence_native": "Ihre Begeisterung für das Projekt war ansteckend.", + "example_sentence_english": "Her enthusiasm for the project was contagious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3860 + }, + { + "word": "beruhen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be based on", + "romanization": "beruhen", + "example_sentence_native": "Die Theorie beruht auf neuen Erkenntnissen.", + "example_sentence_english": "The theory is based on new findings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3861 + }, + { + "word": "Berücksichtigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consideration", + "romanization": "Berücksichtigung", + "example_sentence_native": "Bei der Planung muss die Sicherheit Berücksichtigung finden.", + "example_sentence_english": "Safety must be taken into consideration during planning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3862 + }, + { + "word": "Bewerbung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application", + "romanization": "Bewerbung", + "example_sentence_native": "Er hat eine Bewerbung für die Stelle eingereicht.", + "example_sentence_english": "He submitted an application for the position.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3863 + }, + { + "word": "bremer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Bremen", + "romanization": "bremer", + "example_sentence_native": "Der bremer Roland ist ein Wahrzeichen der Stadt.", + "example_sentence_english": "The Bremen Roland is a landmark of the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3864 + }, + { + "word": "derartig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "such;of such a kind", + "romanization": "derartig", + "example_sentence_native": "Eine derartige Situation ist selten.", + "example_sentence_english": "Such a situation is rare.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3865 + }, + { + "word": "Designer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designer", + "romanization": "Designer", + "example_sentence_native": "Der Designer präsentierte seine neue Kollektion.", + "example_sentence_english": "The designer presented his new collection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3866 + }, + { + "word": "Einzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entry;moving in", + "romanization": "Einzug", + "example_sentence_native": "Der Einzug in das neue Haus war aufregend.", + "example_sentence_english": "Moving into the new house was exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3869 + }, + { + "word": "Eisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iron", + "romanization": "Eisen", + "example_sentence_native": "Eisen ist ein starkes Metall.", + "example_sentence_english": "Iron is a strong metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3870 + }, + { + "word": "Erhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preservation", + "romanization": "Erhalt", + "example_sentence_native": "Der Erhalt der alten Gebäude ist wichtig.", + "example_sentence_english": "The preservation of the old buildings is important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3871 + }, + { + "word": "Erlaubnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "permission", + "romanization": "Erlaubnis", + "example_sentence_native": "Sie hat die Erlaubnis, das Haus zu betreten.", + "example_sentence_english": "She has permission to enter the house.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3872 + }, + { + "word": "Fotografie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photography", + "romanization": "Fotografie", + "example_sentence_native": "Die Fotografie ist ein schönes Hobby.", + "example_sentence_english": "Photography is a beautiful hobby.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3873 + }, + { + "word": "friedlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peaceful", + "romanization": "friedlich", + "example_sentence_native": "Er ist ein sehr friedlicher Mensch.", + "example_sentence_english": "He is a very peaceful person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3874 + }, + { + "word": "klauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to steal", + "romanization": "klauen", + "example_sentence_native": "Man sollte niemals klauen.", + "example_sentence_english": "One should never steal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3875 + }, + { + "word": "gemütlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cozy", + "romanization": "gemütlich", + "example_sentence_native": "Das Sofa ist sehr gemütlich.", + "example_sentence_english": "The sofa is very cozy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3876 + }, + { + "word": "Gramm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gram", + "romanization": "Gramm", + "example_sentence_native": "Ich brauche 200 Gramm Mehl.", + "example_sentence_english": "I need 200 grams of flour.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3877 + }, + { + "word": "Handwerker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "craftsman", + "romanization": "Handwerker", + "example_sentence_native": "Der Handwerker repariert das Dach.", + "example_sentence_english": "The craftsman is repairing the roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3878 + }, + { + "word": "heut", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "today", + "romanization": "heut", + "example_sentence_native": "Heut Abend gehen wir ins Kino.", + "example_sentence_english": "Tonight we are going to the cinema.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3879 + }, + { + "word": "Hit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hit;success", + "romanization": "Hit", + "example_sentence_native": "Das Lied war ein großer Hit.", + "example_sentence_english": "The song was a big hit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3880 + }, + { + "word": "Jury", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jury", + "romanization": "Jury", + "example_sentence_native": "Die Jury hat ihre Entscheidung getroffen.", + "example_sentence_english": "The jury has made its decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3883 + }, + { + "word": "Kartoffel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "potato", + "romanization": "Kartoffel", + "example_sentence_native": "Ich esse gerne Kartoffeln.", + "example_sentence_english": "I like to eat potatoes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3884 + }, + { + "word": "Katalog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catalog", + "romanization": "Katalog", + "example_sentence_native": "Der Katalog enthält viele Produkte.", + "example_sentence_english": "The catalog contains many products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3885 + }, + { + "word": "lebendig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alive;lively", + "romanization": "lebendig", + "example_sentence_native": "Die Stadt ist sehr lebendig.", + "example_sentence_english": "The city is very lively.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3886 + }, + { + "word": "Lärm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noise", + "romanization": "Lärm", + "example_sentence_native": "Der Lärm war unerträglich.", + "example_sentence_english": "The noise was unbearable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3887 + }, + { + "word": "Maske", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mask", + "romanization": "Maske", + "example_sentence_native": "Sie trug eine Maske.", + "example_sentence_english": "She wore a mask.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3888 + }, + { + "word": "Mathe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "math", + "romanization": "Mathe", + "example_sentence_native": "Ich mag Mathe nicht.", + "example_sentence_english": "I don't like math.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3889 + }, + { + "word": "mehrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "several", + "romanization": "mehrer", + "example_sentence_native": "Es gab mehrere Gründe für seine Entscheidung.", + "example_sentence_english": "There were several reasons for his decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3890 + }, + { + "word": "Nebel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fog;mist", + "romanization": "Nebel", + "example_sentence_native": "Der dichte Nebel machte die Fahrt schwierig.", + "example_sentence_english": "The dense fog made the drive difficult.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3893 + }, + { + "word": "nirgendwo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nowhere", + "romanization": "nirgendwo", + "example_sentence_native": "Ich konnte meine Schlüssel nirgendwo finden.", + "example_sentence_english": "I couldn't find my keys anywhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3895 + }, + { + "word": "nördlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northern;north of", + "romanization": "nördlich", + "example_sentence_native": "Die Stadt liegt nördlich des Flusses.", + "example_sentence_english": "The city is located north of the river.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3896 + }, + { + "word": "nützlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "useful", + "romanization": "nützlich", + "example_sentence_native": "Dieses Werkzeug ist sehr nützlich für die Gartenarbeit.", + "example_sentence_english": "This tool is very useful for gardening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3897 + }, + { + "word": "oberst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uppermost;highest;chief", + "romanization": "oberst", + "example_sentence_native": "Er ist der oberste Befehlshaber der Armee.", + "example_sentence_english": "He is the chief commander of the army.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3898 + }, + { + "word": "Ofen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oven;stove;furnace", + "romanization": "Ofen", + "example_sentence_native": "Der Kuchen backt im Ofen.", + "example_sentence_english": "The cake is baking in the oven.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3899 + }, + { + "word": "Orientierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orientation", + "romanization": "Orientierung", + "example_sentence_native": "Die Orientierung im Wald war schwierig.", + "example_sentence_english": "The orientation in the forest was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3900 + }, + { + "word": "Protokoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protocol;minutes", + "romanization": "Protokoll", + "example_sentence_native": "Bitte schreiben Sie das Protokoll des Treffens.", + "example_sentence_english": "Please write the minutes of the meeting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3901 + }, + { + "word": "Rasen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lawn;grass", + "romanization": "Rasen", + "example_sentence_native": "Der Rasen muss gemäht werden.", + "example_sentence_english": "The lawn needs to be mowed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 3902 + }, + { + "word": "Rasen", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lawn;grass", + "romanization": "Rasen", + "example_sentence_native": "Der Rasen muss gemäht werden.", + "example_sentence_english": "The lawn needs to be mowed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 3902 + }, + { + "word": "Seminar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seminar", + "romanization": "Seminar", + "example_sentence_native": "Ich besuche ein interessantes Seminar über Geschichte.", + "example_sentence_english": "I am attending an interesting seminar on history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3905 + }, + { + "word": "Senior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senior (person)", + "romanization": "Senior", + "example_sentence_native": "Viele Senioren nutzen öffentliche Verkehrsmittel.", + "example_sentence_english": "Many seniors use public transport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3906 + }, + { + "word": "Sicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuse;security;safeguarding", + "romanization": "Sicherung", + "example_sentence_native": "Die Sicherung ist durchgebrannt.", + "example_sentence_english": "The fuse has blown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3907 + }, + { + "word": "sinken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sink;to fall;to decrease", + "romanization": "sinken", + "example_sentence_native": "Das Schiff begann zu sinken.", + "example_sentence_english": "The ship began to sink.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3908 + }, + { + "word": "Sklave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slave", + "romanization": "Sklave", + "example_sentence_native": "In der Antike gab es viele Sklaven.", + "example_sentence_english": "In antiquity there were many slaves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3909 + }, + { + "word": "Spielzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playing time;season", + "romanization": "Spielzeit", + "example_sentence_native": "Die Spielzeit für das neue Stück beginnt im Herbst.", + "example_sentence_english": "The season for the new play begins in autumn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3910 + }, + { + "word": "Stellungnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statement;opinion", + "romanization": "Stellungnahme", + "example_sentence_native": "Die Regierung gab eine offizielle Stellungnahme ab.", + "example_sentence_english": "The government issued an official statement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3911 + }, + { + "word": "Sängerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singer (female)", + "romanization": "Sängerin", + "example_sentence_native": "Die Sängerin hatte eine wunderschöne Stimme.", + "example_sentence_english": "The singer had a beautiful voice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3912 + }, + { + "word": "trauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trust;to dare;to marry (officiate)", + "romanization": "trauen", + "example_sentence_native": "Ich traue ihm nicht. Sie ließen sich in der Kirche trauen.", + "example_sentence_english": "I don't trust him. They got married in the church.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3913 + }, + { + "word": "verfassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compose;to write;to draft", + "romanization": "verfassen", + "example_sentence_native": "Er muss einen Bericht verfassen.", + "example_sentence_english": "He has to write a report.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3914 + }, + { + "word": "verleihen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to award;to lend;to bestow", + "romanization": "verleihen", + "example_sentence_native": "Die Universität wird ihm einen Ehrendoktortitel verleihen.", + "example_sentence_english": "The university will award him an honorary doctorate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3915 + }, + { + "word": "vernünftig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reasonable;sensible;rational", + "romanization": "vernünftig", + "example_sentence_native": "Das ist eine sehr vernünftige Entscheidung.", + "example_sentence_english": "That is a very sensible decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3916 + }, + { + "word": "Zwang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsion;coercion;constraint", + "romanization": "Zwang", + "example_sentence_native": "Er handelte unter Zwang.", + "example_sentence_english": "He acted under duress.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3918 + }, + { + "word": "absolvieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to complete;to graduate", + "romanization": "absolvieren", + "example_sentence_native": "Er wird sein Studium nächstes Jahr absolvieren.", + "example_sentence_english": "He will complete his studies next year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3920 + }, + { + "word": "Anblick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sight;view", + "romanization": "Anblick", + "example_sentence_native": "Der Anblick des Berges war atemberaubend.", + "example_sentence_english": "The sight of the mountain was breathtaking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3921 + }, + { + "word": "Anleitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instruction;guide", + "romanization": "Anleitung", + "example_sentence_native": "Bitte lesen Sie die Anleitung sorgfältig durch.", + "example_sentence_english": "Please read the instructions carefully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3922 + }, + { + "word": "aufhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop;to delay;to stay", + "romanization": "aufhalten", + "example_sentence_native": "Er konnte sich nicht länger aufhalten.", + "example_sentence_english": "He couldn't stay any longer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3924 + }, + { + "word": "auslegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to display;to interpret;to lay out", + "romanization": "auslegen", + "example_sentence_native": "Die Bücher sind im Schaufenster ausgelegt.", + "example_sentence_english": "The books are displayed in the shop window.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3925 + }, + { + "word": "Ausmass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extent;scope;scale", + "romanization": "Ausmass", + "example_sentence_native": "Das Ausmass des Schadens war enorm.", + "example_sentence_english": "The extent of the damage was enormous.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3926 + }, + { + "word": "Bargeld", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cash", + "romanization": "Bargeld", + "example_sentence_native": "Ich habe kein Bargeld dabei.", + "example_sentence_english": "I don't have any cash with me.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3927 + }, + { + "word": "Bauarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction work", + "romanization": "Bauarbeit", + "example_sentence_native": "Die Bauarbeiten beginnen nächste Woche.", + "example_sentence_english": "The construction work begins next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3928 + }, + { + "word": "Bemühung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effort;endeavor", + "romanization": "Bemühung", + "example_sentence_native": "Seine Bemühungen wurden belohnt.", + "example_sentence_english": "His efforts were rewarded.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3929 + }, + { + "word": "Bronze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bronze", + "romanization": "Bronze", + "example_sentence_native": "Die Statue ist aus Bronze gefertigt.", + "example_sentence_english": "The statue is made of bronze.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3931 + }, + { + "word": "Brunnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "well;fountain", + "romanization": "Brunnen", + "example_sentence_native": "Der alte Brunnen auf dem Marktplatz ist sehr schön.", + "example_sentence_english": "The old fountain in the marketplace is very beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3932 + }, + { + "word": "Comic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comic book;comic strip", + "romanization": "Comic", + "example_sentence_native": "Ich lese gerne Comics.", + "example_sentence_english": "I like to read comic books.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3935 + }, + { + "word": "Datenbank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "database", + "romanization": "Datenbank", + "example_sentence_native": "Die Informationen sind in einer Datenbank gespeichert.", + "example_sentence_english": "The information is stored in a database.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3936 + }, + { + "word": "Datenschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data protection;privacy", + "romanization": "Datenschutz", + "example_sentence_native": "Datenschutz ist in Deutschland sehr wichtig.", + "example_sentence_english": "Data protection is very important in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3937 + }, + { + "word": "Einstieg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entry;start;introduction", + "romanization": "Einstieg", + "example_sentence_native": "Der Einstieg in das Thema war sehr einfach.", + "example_sentence_english": "The introduction to the topic was very easy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3939 + }, + { + "word": "empfinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel;to perceive", + "romanization": "empfinden", + "example_sentence_native": "Ich empfinde große Freude.", + "example_sentence_english": "I feel great joy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3940 + }, + { + "word": "Errichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "establishment;erection", + "romanization": "Errichtung", + "example_sentence_native": "Die Errichtung des neuen Gebäudes dauerte lange.", + "example_sentence_english": "The establishment of the new building took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3941 + }, + { + "word": "Ethik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethics", + "romanization": "Ethik", + "example_sentence_native": "Die Ethik spielt eine wichtige Rolle in der Philosophie.", + "example_sentence_english": "Ethics plays an important role in philosophy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3942 + }, + { + "word": "Gedenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remembrance;commemoration", + "romanization": "Gedenken", + "example_sentence_native": "Zum Gedenken an die Opfer wurde eine Zeremonie abgehalten.", + "example_sentence_english": "A ceremony was held in remembrance of the victims.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3944 + }, + { + "word": "kennzeichnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mark;to characterize", + "romanization": "kennzeichnen", + "example_sentence_native": "Diese Merkmale kennzeichnen die Art.", + "example_sentence_english": "These features characterize the species.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3945 + }, + { + "word": "gelegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "located;situated;opportune", + "romanization": "gelegen", + "example_sentence_native": "Das Haus ist günstig gelegen.", + "example_sentence_english": "The house is conveniently located.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3946 + }, + { + "word": "geschlossen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "closed", + "romanization": "geschlossen", + "example_sentence_native": "Der Laden ist heute geschlossen.", + "example_sentence_english": "The shop is closed today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3947 + }, + { + "word": "Gutschein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voucher", + "romanization": "Gutschein", + "example_sentence_native": "Ich habe einen Gutschein für das Restaurant.", + "example_sentence_english": "I have a voucher for the restaurant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3950 + }, + { + "word": "Junior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junior", + "romanization": "Junior", + "example_sentence_native": "Er ist der Junior in der Firma.", + "example_sentence_english": "He is the junior in the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3955 + }, + { + "word": "Klick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "click", + "romanization": "Klick", + "example_sentence_native": "Mit einem Klick öffnete sich die Seite.", + "example_sentence_english": "With one click, the page opened.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3956 + }, + { + "word": "klug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smart;clever", + "romanization": "klug", + "example_sentence_native": "Sie ist ein sehr kluges Mädchen.", + "example_sentence_english": "She is a very smart girl.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3957 + }, + { + "word": "Kommune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "municipality;commune", + "romanization": "Kommune", + "example_sentence_native": "Die Kommune plant neue Projekte.", + "example_sentence_english": "The municipality is planning new projects.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3958 + }, + { + "word": "konstant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constant", + "romanization": "konstant", + "example_sentence_native": "Der Druck muss konstant bleiben.", + "example_sentence_english": "The pressure must remain constant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3959 + }, + { + "word": "Leib", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "body;torso", + "romanization": "Leib", + "example_sentence_native": "Er spürte Schmerzen in seinem ganzen Leib.", + "example_sentence_english": "He felt pain throughout his whole body.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3960 + }, + { + "word": "malen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to paint;to draw", + "romanization": "malen", + "example_sentence_native": "Sie malt gerne Landschaften.", + "example_sentence_english": "She likes to paint landscapes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3963 + }, + { + "word": "Mitleid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pity;compassion", + "romanization": "Mitleid", + "example_sentence_native": "Er hatte Mitleid mit dem armen Tier.", + "example_sentence_english": "He had pity for the poor animal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3965 + }, + { + "word": "motivieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to motivate", + "romanization": "motivieren", + "example_sentence_native": "Der Trainer versucht, seine Spieler zu motivieren.", + "example_sentence_english": "The coach tries to motivate his players.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3966 + }, + { + "word": "nachhaltig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustainable;lasting", + "romanization": "nachhaltig", + "example_sentence_native": "Wir brauchen nachhaltige Lösungen für Umweltprobleme.", + "example_sentence_english": "We need sustainable solutions for environmental problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3967 + }, + { + "word": "Nachteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disadvantage;drawback", + "romanization": "Nachteil", + "example_sentence_native": "Der größte Nachteil ist der hohe Preis.", + "example_sentence_english": "The biggest disadvantage is the high price.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3968 + }, + { + "word": "Nachweis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proof;evidence;verification", + "romanization": "Nachweis", + "example_sentence_native": "Sie müssen einen Nachweis Ihrer Identität erbringen.", + "example_sentence_english": "You must provide proof of your identity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3969 + }, + { + "word": "Nachwuchs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offspring;new generation", + "romanization": "Nachwuchs", + "example_sentence_native": "Der Verein sucht neuen Nachwuchs.", + "example_sentence_english": "The club is looking for new talent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3970 + }, + { + "word": "Pol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pole", + "romanization": "Pol", + "example_sentence_native": "Der Nordpol ist sehr kalt.", + "example_sentence_english": "The North Pole is very cold.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3973 + }, + { + "word": "Pressemitteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press release", + "romanization": "Pressemitteilung", + "example_sentence_native": "Die Firma veröffentlichte eine Pressemitteilung.", + "example_sentence_english": "The company published a press release.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3974 + }, + { + "word": "realisieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to realize;to implement", + "romanization": "realisieren", + "example_sentence_native": "Ich muss meine Träume realisieren.", + "example_sentence_english": "I have to realize my dreams.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3975 + }, + { + "word": "registrieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to register", + "romanization": "registrieren", + "example_sentence_native": "Bitte registrieren Sie sich online.", + "example_sentence_english": "Please register online.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3976 + }, + { + "word": "reiten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ride (a horse)", + "romanization": "reiten", + "example_sentence_native": "Sie kann gut reiten.", + "example_sentence_english": "She can ride well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3977 + }, + { + "word": "Rentner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "retiree;pensioner", + "romanization": "Rentner", + "example_sentence_native": "Mein Großvater ist ein Rentner.", + "example_sentence_english": "My grandfather is a retiree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3978 + }, + { + "word": "Sanktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanction", + "romanization": "Sanktion", + "example_sentence_native": "Die Regierung verhängte neue Sanktionen.", + "example_sentence_english": "The government imposed new sanctions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3979 + }, + { + "word": "Schlange", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "queue;snake", + "romanization": "Schlange", + "example_sentence_native": "Die Schlange vor dem Kino war sehr lang.", + "example_sentence_english": "The queue in front of the cinema was very long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3980 + }, + { + "word": "Schwein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pig", + "romanization": "Schwein", + "example_sentence_native": "Das Schwein grunzte laut im Stall.", + "example_sentence_english": "The pig grunted loudly in the stable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3981 + }, + { + "word": "Stamm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trunk;tribe;stem", + "romanization": "Stamm", + "example_sentence_native": "Der alte Baum hatte einen sehr dicken Stamm.", + "example_sentence_english": "The old tree had a very thick trunk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3984 + }, + { + "word": "Staub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dust", + "romanization": "Staub", + "example_sentence_native": "Nach dem Umzug war überall Staub.", + "example_sentence_english": "After the move, there was dust everywhere.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3985 + }, + { + "word": "Tagebuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diary;journal", + "romanization": "Tagebuch", + "example_sentence_native": "Sie schreibt jeden Abend in ihr Tagebuch.", + "example_sentence_english": "She writes in her diary every evening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3988 + }, + { + "word": "Teppich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carpet;rug", + "romanization": "Teppich", + "example_sentence_native": "Der neue Teppich passt gut ins Wohnzimmer.", + "example_sentence_english": "The new carpet fits well in the living room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3989 + }, + { + "word": "umfassend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comprehensive;extensive", + "romanization": "umfassend", + "example_sentence_native": "Wir haben eine umfassende Analyse durchgeführt.", + "example_sentence_english": "We conducted a comprehensive analysis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3991 + }, + { + "word": "unangenehm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant;uncomfortable", + "romanization": "unangenehm", + "example_sentence_native": "Die Situation war sehr unangenehm.", + "example_sentence_english": "The situation was very unpleasant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3992 + }, + { + "word": "verabschieden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to say goodbye;to pass (a law)", + "romanization": "verabschieden", + "example_sentence_native": "Wir müssen uns jetzt verabschieden.", + "example_sentence_english": "We have to say goodbye now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3993 + }, + { + "word": "Verdienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earnings;merit", + "romanization": "Verdienst", + "example_sentence_native": "Sein Verdienst ist sehr hoch.", + "example_sentence_english": "His earnings are very high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 3994 + }, + { + "word": "Verdienst", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earnings;income", + "romanization": "Verdienst", + "example_sentence_native": "Sein Verdienst ist sehr gut.", + "example_sentence_english": "His earnings are very good.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 3994 + }, + { + "word": "vergleichbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparable", + "romanization": "vergleichbar", + "example_sentence_native": "Die beiden Produkte sind nicht vergleichbar.", + "example_sentence_english": "The two products are not comparable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3995 + }, + { + "word": "verschaffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to procure;to obtain;to provide", + "romanization": "verschaffen", + "example_sentence_native": "Er konnte sich einen Vorteil verschaffen.", + "example_sentence_english": "He was able to gain an advantage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 3996 + }, + { + "word": "verzweifelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desperate;despairing", + "romanization": "verzweifelt", + "example_sentence_native": "Sie war verzweifelt auf der Suche nach Hilfe.", + "example_sentence_english": "She was desperately looking for help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 3997 + }, + { + "word": "vorwärts", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forward;onwards", + "romanization": "vorwärts", + "example_sentence_native": "Gehen Sie bitte vorwärts.", + "example_sentence_english": "Please go forward.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 3998 + }, + { + "word": "Wall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rampart;embankment;wall", + "romanization": "Wall", + "example_sentence_native": "Die alte Stadtmauer war ein beeindruckender Wall.", + "example_sentence_english": "The old city wall was an impressive rampart.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 3999 + }, + { + "word": "Wiedersehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farewell;reunion", + "romanization": "Wiedersehen", + "example_sentence_native": "Auf Wiedersehen!", + "example_sentence_english": "Goodbye!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4000 + }, + { + "word": "Zeichnung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawing;sketch", + "romanization": "Zeichnung", + "example_sentence_native": "Die Zeichnung ist sehr schön.", + "example_sentence_english": "The drawing is very beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4001 + }, + { + "word": "zurückkehren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to return;to come back", + "romanization": "zurückkehren", + "example_sentence_native": "Er wird bald zurückkehren.", + "example_sentence_english": "He will return soon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "kehren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4002 + }, + { + "word": "abholen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pick up;to collect", + "romanization": "abholen", + "example_sentence_native": "Ich muss meine Kinder von der Schule abholen.", + "example_sentence_english": "I have to pick up my children from school.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4003 + }, + { + "word": "Alarm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alarm", + "romanization": "Alarm", + "example_sentence_native": "Der Alarm ging mitten in der Nacht los.", + "example_sentence_english": "The alarm went off in the middle of the night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4004 + }, + { + "word": "anordnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange;to order;to command", + "romanization": "anordnen", + "example_sentence_native": "Der Chef wird die Aufgaben neu anordnen.", + "example_sentence_english": "The boss will rearrange the tasks.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "ordnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4005 + }, + { + "word": "Asylbewerber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asylum seeker", + "romanization": "Asylbewerber", + "example_sentence_native": "Die Zahl der Asylbewerber ist gestiegen.", + "example_sentence_english": "The number of asylum seekers has increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4007 + }, + { + "word": "Ausrichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alignment;orientation;direction", + "romanization": "Ausrichtung", + "example_sentence_native": "Die Ausrichtung des Unternehmens hat sich geändert.", + "example_sentence_english": "The company's orientation has changed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4008 + }, + { + "word": "beauftragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commission;to instruct", + "romanization": "beauftragen", + "example_sentence_native": "Wir beauftragen eine Firma mit der Renovierung.", + "example_sentence_english": "We commission a company with the renovation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4010 + }, + { + "word": "befassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deal with;to concern oneself with", + "romanization": "befassen", + "example_sentence_native": "Er muss sich mit diesem Problem befassen.", + "example_sentence_english": "He has to deal with this problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4011 + }, + { + "word": "betrunken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk", + "romanization": "betrunken", + "example_sentence_native": "Er war nach der Party betrunken.", + "example_sentence_english": "He was drunk after the party.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4013 + }, + { + "word": "Bezahlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "payment", + "romanization": "Bezahlung", + "example_sentence_native": "Die Bezahlung erfolgt am Ende des Monats.", + "example_sentence_english": "The payment takes place at the end of the month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4014 + }, + { + "word": "blasen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blow", + "romanization": "blasen", + "example_sentence_native": "Der Wind bläst stark.", + "example_sentence_english": "The wind blows strongly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4015 + }, + { + "word": "Bundesland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "federal state", + "romanization": "Bundesland", + "example_sentence_native": "Bayern ist ein großes Bundesland in Deutschland.", + "example_sentence_english": "Bavaria is a large federal state in Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4016 + }, + { + "word": "Cover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cover", + "romanization": "Cover", + "example_sentence_native": "Das Cover des Buches ist sehr ansprechend.", + "example_sentence_english": "The cover of the book is very appealing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4017 + }, + { + "word": "Datei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "file", + "romanization": "Datei", + "example_sentence_native": "Speichern Sie die Datei auf dem Desktop.", + "example_sentence_english": "Save the file on the desktop.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4018 + }, + { + "word": "Digitalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "digitalization", + "romanization": "Digitalisierung", + "example_sentence_native": "Die Digitalisierung verändert unsere Arbeitswelt.", + "example_sentence_english": "Digitalization is changing our working world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4019 + }, + { + "word": "Diktatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictatorship", + "romanization": "Diktatur", + "example_sentence_native": "Die Diktatur unterdrückte die Meinungsfreiheit.", + "example_sentence_english": "The dictatorship suppressed freedom of speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4020 + }, + { + "word": "Dunkelheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "darkness", + "romanization": "Dunkelheit", + "example_sentence_native": "Die Dunkelheit brach herein.", + "example_sentence_english": "Darkness fell.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4025 + }, + { + "word": "Duo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duo", + "romanization": "Duo", + "example_sentence_native": "Das musikalische Duo spielte ein wunderschönes Lied.", + "example_sentence_english": "The musical duo played a beautiful song.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4026 + }, + { + "word": "Engländer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Englishman", + "romanization": "Engländer", + "example_sentence_native": "Der Engländer sprach sehr gut Deutsch.", + "example_sentence_english": "The Englishman spoke German very well.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4027 + }, + { + "word": "faul", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lazy;rotten", + "romanization": "faul", + "example_sentence_native": "Er ist zu faul, um aufzustehen.", + "example_sentence_english": "He is too lazy to get up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4029 + }, + { + "word": "Feedback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feedback", + "romanization": "Feedback", + "example_sentence_native": "Ich brauche Ihr Feedback zu diesem Projekt.", + "example_sentence_english": "I need your feedback on this project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4030 + }, + { + "word": "Fieber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fever", + "romanization": "Fieber", + "example_sentence_native": "Das Kind hat hohes Fieber.", + "example_sentence_english": "The child has a high fever.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4031 + }, + { + "word": "flach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat;shallow", + "romanization": "flach", + "example_sentence_native": "Der Tisch ist nicht ganz flach.", + "example_sentence_english": "The table is not completely flat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4032 + }, + { + "word": "Frist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadline;period", + "romanization": "Frist", + "example_sentence_native": "Die Frist für die Abgabe ist morgen.", + "example_sentence_english": "The deadline for submission is tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4033 + }, + { + "word": "Fürst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prince;sovereign", + "romanization": "Fürst", + "example_sentence_native": "Der Fürst regierte sein Land mit Weisheit.", + "example_sentence_english": "The prince ruled his land with wisdom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4034 + }, + { + "word": "Gattung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genus;species;type", + "romanization": "Gattung", + "example_sentence_native": "Diese Pflanze gehört zu einer seltenen Gattung.", + "example_sentence_english": "This plant belongs to a rare genus.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4035 + }, + { + "word": "genügen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suffice;to be enough", + "romanization": "genügen", + "example_sentence_native": "Das Geld wird nicht genügen.", + "example_sentence_english": "The money will not be enough.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4036 + }, + { + "word": "Gewerbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade;business;industry", + "romanization": "Gewerbe", + "example_sentence_native": "Er hat ein kleines Gewerbe angemeldet.", + "example_sentence_english": "He registered a small business.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4037 + }, + { + "word": "Gewerkschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade union;labor union", + "romanization": "Gewerkschaft", + "example_sentence_native": "Die Gewerkschaft verhandelt über höhere Löhne.", + "example_sentence_english": "The trade union is negotiating for higher wages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4038 + }, + { + "word": "grob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough;coarse;rude", + "romanization": "grob", + "example_sentence_native": "Der Stoff fühlt sich grob an.", + "example_sentence_english": "The fabric feels rough.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4039 + }, + { + "word": "haaren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shed (hair)", + "romanization": "haaren", + "example_sentence_native": "Mein Hund haart im Frühling sehr stark.", + "example_sentence_english": "My dog sheds a lot in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4041 + }, + { + "word": "Hektar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hectare", + "romanization": "Hektar", + "example_sentence_native": "Das Feld ist zehn Hektar groß.", + "example_sentence_english": "The field is ten hectares large.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4042 + }, + { + "word": "herunter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down (from a higher place)", + "romanization": "herunter", + "example_sentence_native": "Er fiel die Treppe herunter.", + "example_sentence_english": "He fell down the stairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4043 + }, + { + "word": "Investor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investor", + "romanization": "Investor", + "example_sentence_native": "Der Investor hat viel Geld in das Projekt gesteckt.", + "example_sentence_english": "The investor put a lot of money into the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4048 + }, + { + "word": "Italiener", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Italian (person)", + "romanization": "Italiener", + "example_sentence_native": "Er ist ein Italiener.", + "example_sentence_english": "He is an Italian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4049 + }, + { + "word": "Jeans", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jeans", + "romanization": "Jeans", + "example_sentence_native": "Ich trage gerne blaue Jeans.", + "example_sentence_english": "I like to wear blue jeans.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4050 + }, + { + "word": "jeglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "any;every (kind of)", + "romanization": "jeglich", + "example_sentence_native": "Jegliche Hilfe ist willkommen.", + "example_sentence_english": "Any help is welcome.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4051 + }, + { + "word": "Journal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journal;diary", + "romanization": "Journal", + "example_sentence_native": "Sie schreibt jeden Tag in ihr Journal.", + "example_sentence_english": "She writes in her journal every day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4052 + }, + { + "word": "Kai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quay;pier;dock", + "romanization": "Kai", + "example_sentence_native": "Die Schiffe liegen am Kai.", + "example_sentence_english": "The ships are at the quay.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4053 + }, + { + "word": "Kapitalismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalism", + "romanization": "Kapitalismus", + "example_sentence_native": "Der Kapitalismus ist ein komplexes Wirtschaftssystem.", + "example_sentence_english": "Capitalism is a complex economic system.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4054 + }, + { + "word": "Kuss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiss", + "romanization": "Kuss", + "example_sentence_native": "Er gab ihr einen Kuss auf die Wange.", + "example_sentence_english": "He gave her a kiss on the cheek.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4055 + }, + { + "word": "Kürze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brevity;shortness", + "romanization": "Kürze", + "example_sentence_native": "In aller Kürze möchte ich sagen, dass...", + "example_sentence_english": "In short, I would like to say that...", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4056 + }, + { + "word": "Leder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leather", + "romanization": "Leder", + "example_sentence_native": "Die Tasche ist aus echtem Leder.", + "example_sentence_english": "The bag is made of real leather.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4057 + }, + { + "word": "Malerei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painting (art form)", + "romanization": "Malerei", + "example_sentence_native": "Die Malerei ist eine alte Kunstform.", + "example_sentence_english": "Painting is an old art form.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4061 + }, + { + "word": "nachträglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retrospective;belated", + "romanization": "nachträglich", + "example_sentence_native": "Er hat sich nachträglich für sein Verhalten entschuldigt.", + "example_sentence_english": "He apologized belatedly for his behavior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4062 + }, + { + "word": "Paradies", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paradise", + "romanization": "Paradies", + "example_sentence_native": "Dieser Garten ist ein wahres Paradies.", + "example_sentence_english": "This garden is a true paradise.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4063 + }, + { + "word": "pflegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to care for;to nurse;to maintain", + "romanization": "pflegen", + "example_sentence_native": "Sie pflegt ihre Blumen jeden Tag.", + "example_sentence_english": "She cares for her flowers every day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4064 + }, + { + "word": "Salat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salad;lettuce", + "romanization": "Salat", + "example_sentence_native": "Ich esse gerne Salat zum Abendessen.", + "example_sentence_english": "I like to eat salad for dinner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4066 + }, + { + "word": "Scherz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joke;prank", + "romanization": "Scherz", + "example_sentence_native": "Das war nur ein Scherz.", + "example_sentence_english": "That was just a joke.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4067 + }, + { + "word": "Schwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sword", + "romanization": "Schwert", + "example_sentence_native": "Der Ritter trug ein langes Schwert.", + "example_sentence_english": "The knight carried a long sword.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4068 + }, + { + "word": "Sehnsucht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longing;yearning", + "romanization": "Sehnsucht", + "example_sentence_native": "Sie empfand eine tiefe Sehnsucht nach ihrer Heimat.", + "example_sentence_english": "She felt a deep longing for her homeland.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4069 + }, + { + "word": "senken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lower", + "romanization": "senken", + "example_sentence_native": "Wir müssen die Kosten senken.", + "example_sentence_english": "We must lower the costs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4070 + }, + { + "word": "Ski", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ski", + "romanization": "Ski", + "example_sentence_native": "Er hat neue Ski gekauft.", + "example_sentence_english": "He bought new skis.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4071 + }, + { + "word": "Steigerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase", + "romanization": "Steigerung", + "example_sentence_native": "Wir sehen eine deutliche Steigerung der Verkaufszahlen.", + "example_sentence_english": "We see a significant increase in sales figures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4073 + }, + { + "word": "Teenager", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teenager", + "romanization": "Teenager", + "example_sentence_native": "Die Teenager trafen sich im Park.", + "example_sentence_english": "The teenagers met in the park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4074 + }, + { + "word": "unterbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interrupt", + "romanization": "unterbrechen", + "example_sentence_native": "Bitte unterbrechen Sie mich nicht.", + "example_sentence_english": "Please do not interrupt me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4075 + }, + { + "word": "unterrichten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to teach", + "romanization": "unterrichten", + "example_sentence_native": "Sie unterrichtet Deutsch an der Schule.", + "example_sentence_english": "She teaches German at the school.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4076 + }, + { + "word": "Veranstalter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organizer", + "romanization": "Veranstalter", + "example_sentence_native": "Der Veranstalter hat das Konzert abgesagt.", + "example_sentence_english": "The organizer cancelled the concert.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4077 + }, + { + "word": "veranstalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to organize", + "romanization": "veranstalten", + "example_sentence_native": "Sie veranstalten jedes Jahr ein großes Fest.", + "example_sentence_english": "They organize a big festival every year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4078 + }, + { + "word": "verbunden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connected", + "romanization": "verbunden", + "example_sentence_native": "Wir sind durch eine lange Freundschaft verbunden.", + "example_sentence_english": "We are connected by a long friendship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4079 + }, + { + "word": "vermehrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased", + "romanization": "vermehrt", + "example_sentence_native": "Wir haben vermehrt Anfragen erhalten.", + "example_sentence_english": "We have received increased inquiries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4080 + }, + { + "word": "Vernunft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reason", + "romanization": "Vernunft", + "example_sentence_native": "Er handelte mit Vernunft.", + "example_sentence_english": "He acted with reason.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4081 + }, + { + "word": "versagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail", + "romanization": "versagen", + "example_sentence_native": "Er darf nicht versagen.", + "example_sentence_english": "He must not fail.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4082 + }, + { + "word": "versichern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assure;to insure", + "romanization": "versichern", + "example_sentence_native": "Ich kann Ihnen versichern, dass alles in Ordnung ist.", + "example_sentence_english": "I can assure you that everything is fine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4083 + }, + { + "word": "Wurst", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sausage", + "romanization": "Wurst", + "example_sentence_native": "Ich esse gerne Wurst zum Frühstück.", + "example_sentence_english": "I like to eat sausage for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4084 + }, + { + "word": "Zahlung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "payment", + "romanization": "Zahlung", + "example_sentence_native": "Die Zahlung ist fällig.", + "example_sentence_english": "The payment is due.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4085 + }, + { + "word": "zustimmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree", + "romanization": "zustimmen", + "example_sentence_native": "Ich stimme dir zu.", + "example_sentence_english": "I agree with you.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "stimmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4086 + }, + { + "word": "antreten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to start;to compete", + "romanization": "antreten", + "example_sentence_native": "Er wird zum Wettkampf antreten.", + "example_sentence_english": "He will compete in the competition.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4087 + }, + { + "word": "Arbeitsmarkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "labor market", + "romanization": "Arbeitsmarkt", + "example_sentence_native": "Der Arbeitsmarkt ist sehr dynamisch.", + "example_sentence_english": "The labor market is very dynamic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4088 + }, + { + "word": "ausrichten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to align;to organize;to convey", + "romanization": "ausrichten", + "example_sentence_native": "Wir müssen die Möbel neu ausrichten.", + "example_sentence_english": "We need to realign the furniture.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "richten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4090 + }, + { + "word": "bedeutend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "significant;important", + "romanization": "bedeutend", + "example_sentence_native": "Das ist eine bedeutende Entdeckung.", + "example_sentence_english": "That is a significant discovery.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4091 + }, + { + "word": "Behinderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disability;hindrance", + "romanization": "Behinderung", + "example_sentence_native": "Sie setzt sich für Menschen mit Behinderung ein.", + "example_sentence_english": "She advocates for people with disabilities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4092 + }, + { + "word": "beruhigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to calm (down);to soothe", + "romanization": "beruhigen", + "example_sentence_native": "Er versuchte, das weinende Kind zu beruhigen.", + "example_sentence_english": "He tried to calm the crying child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4093 + }, + { + "word": "bundesweit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationwide;federal", + "romanization": "bundesweit", + "example_sentence_native": "Die Kampagne wird bundesweit ausgestrahlt.", + "example_sentence_english": "The campaign is broadcast nationwide.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4095 + }, + { + "word": "Bürgerkrieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil war", + "romanization": "Bürgerkrieg", + "example_sentence_native": "Der Bürgerkrieg dauerte mehrere Jahre.", + "example_sentence_english": "The civil war lasted several years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4096 + }, + { + "word": "Christentum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christianity", + "romanization": "Christentum", + "example_sentence_native": "Das Christentum ist eine der größten Religionen der Welt.", + "example_sentence_english": "Christianity is one of the largest religions in the world.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4097 + }, + { + "word": "circa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approximately;about", + "romanization": "circa", + "example_sentence_native": "Die Reise dauert circa drei Stunden.", + "example_sentence_english": "The journey takes approximately three hours.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4099 + }, + { + "word": "Cola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cola", + "romanization": "Cola", + "example_sentence_native": "Ich möchte eine Cola, bitte.", + "example_sentence_english": "I would like a cola, please.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4101 + }, + { + "word": "Demonstration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstration", + "romanization": "Demonstration", + "example_sentence_native": "Die Demonstration war friedlich.", + "example_sentence_english": "The demonstration was peaceful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4103 + }, + { + "word": "Disziplin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discipline", + "romanization": "Disziplin", + "example_sentence_native": "Disziplin ist wichtig für den Erfolg.", + "example_sentence_english": "Discipline is important for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4104 + }, + { + "word": "Download", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "download", + "romanization": "Download", + "example_sentence_native": "Der Download der Datei dauerte lange.", + "example_sentence_english": "The download of the file took a long time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4105 + }, + { + "word": "Duell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duel", + "romanization": "Duell", + "example_sentence_native": "Sie forderten sich zu einem Duell heraus.", + "example_sentence_english": "They challenged each other to a duel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4106 + }, + { + "word": "dünn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin", + "romanization": "dünn", + "example_sentence_native": "Das Papier ist sehr dünn.", + "example_sentence_english": "The paper is very thin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4107 + }, + { + "word": "eintragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enter;to register", + "romanization": "eintragen", + "example_sentence_native": "Bitte tragen Sie Ihren Namen hier ein.", + "example_sentence_english": "Please enter your name here.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4108 + }, + { + "word": "einigermassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "somewhat;to some extent", + "romanization": "einigermassen", + "example_sentence_native": "Er fühlt sich einigermassen besser.", + "example_sentence_english": "He feels somewhat better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4109 + }, + { + "word": "Elite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elite", + "romanization": "Elite", + "example_sentence_native": "Die Elite des Landes traf sich zu einer geheimen Besprechung.", + "example_sentence_english": "The country's elite met for a secret discussion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4110 + }, + { + "word": "Energiewende", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy transition", + "romanization": "Energiewende", + "example_sentence_native": "Die Energiewende ist ein wichtiges Thema in Deutschland.", + "example_sentence_english": "The energy transition is an important topic in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4111 + }, + { + "word": "Entdeckung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discovery", + "romanization": "Entdeckung", + "example_sentence_native": "Die Entdeckung neuer Arten ist faszinierend.", + "example_sentence_english": "The discovery of new species is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4112 + }, + { + "word": "Filter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filter", + "romanization": "Filter", + "example_sentence_native": "Der Filter muss regelmäßig gereinigt werden.", + "example_sentence_english": "The filter must be cleaned regularly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4114 + }, + { + "word": "Flotte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleet", + "romanization": "Flotte", + "example_sentence_native": "Die gesamte Flotte wurde mobilisiert.", + "example_sentence_english": "The entire fleet was mobilized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4115 + }, + { + "word": "Freiwillige", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volunteer", + "romanization": "Freiwillige", + "example_sentence_native": "Viele Freiwillige halfen bei der Aufräumaktion.", + "example_sentence_english": "Many volunteers helped with the cleanup operation.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4116 + }, + { + "word": "fröhlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheerful", + "romanization": "fröhlich", + "example_sentence_native": "Sie war sehr fröhlich über die Nachricht.", + "example_sentence_english": "She was very happy about the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4117 + }, + { + "word": "Gaming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaming", + "romanization": "Gaming", + "example_sentence_native": "Gaming ist ein beliebtes Hobby bei Jugendlichen.", + "example_sentence_english": "Gaming is a popular hobby among young people.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4118 + }, + { + "word": "garnicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not at all", + "romanization": "garnicht", + "example_sentence_native": "Ich habe das garnicht verstanden.", + "example_sentence_english": "I didn't understand that at all.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4119 + }, + { + "word": "geheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secret", + "romanization": "geheim", + "example_sentence_native": "Das ist ein geheimes Dokument.", + "example_sentence_english": "This is a secret document.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4120 + }, + { + "word": "Getränk", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "drink;beverage", + "romanization": "Getränk", + "example_sentence_native": "Möchtest du ein kaltes Getränk?", + "example_sentence_english": "Would you like a cold drink?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4121 + }, + { + "word": "widmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dedicate;to devote", + "romanization": "widmen", + "example_sentence_native": "Er widmet sein Leben der Kunst.", + "example_sentence_english": "He dedicates his life to art.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4122 + }, + { + "word": "Heer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "army;host", + "romanization": "Heer", + "example_sentence_native": "Das Heer bereitete sich auf die Schlacht vor.", + "example_sentence_english": "The army prepared for battle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4123 + }, + { + "word": "Horn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn", + "romanization": "Horn", + "example_sentence_native": "Das Nashorn hat ein großes Horn.", + "example_sentence_english": "The rhinoceros has a large horn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4125 + }, + { + "word": "Informatik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "computer science;informatics", + "romanization": "Informatik", + "example_sentence_native": "Sie studiert Informatik an der Universität.", + "example_sentence_english": "She studies computer science at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4126 + }, + { + "word": "Knast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jail;prison (slang)", + "romanization": "Knast", + "example_sentence_native": "Er landete im Knast.", + "example_sentence_english": "He ended up in jail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4129 + }, + { + "word": "Kälte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coldness", + "romanization": "Kälte", + "example_sentence_native": "Die Kälte im Winter kann sehr unangenehm sein.", + "example_sentence_english": "The coldness in winter can be very uncomfortable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4130 + }, + { + "word": "Königreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kingdom", + "romanization": "Königreich", + "example_sentence_native": "Das Königreich war bekannt für seine reichen Bodenschätze.", + "example_sentence_english": "The kingdom was known for its rich mineral resources.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4131 + }, + { + "word": "Kündigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "termination;notice", + "romanization": "Kündigung", + "example_sentence_native": "Er erhielt die Kündigung seiner Wohnung.", + "example_sentence_english": "He received the termination notice for his apartment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4132 + }, + { + "word": "Labor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laboratory;lab", + "romanization": "Labor", + "example_sentence_native": "Die Wissenschaftler arbeiten im Labor an neuen Experimenten.", + "example_sentence_english": "The scientists are working on new experiments in the laboratory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4133 + }, + { + "word": "logisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logical", + "romanization": "logisch", + "example_sentence_native": "Das ist eine logische Schlussfolgerung.", + "example_sentence_english": "That is a logical conclusion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4134 + }, + { + "word": "Migration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migration", + "romanization": "Migration", + "example_sentence_native": "Die Migration von Vögeln ist ein jährliches Phänomen.", + "example_sentence_english": "The migration of birds is an annual phenomenon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4135 + }, + { + "word": "mitbekommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notice;to get wind of", + "romanization": "mitbekommen", + "example_sentence_native": "Hast du mitbekommen, was passiert ist?", + "example_sentence_english": "Did you notice what happened?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "bekommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4136 + }, + { + "word": "Mittelmeer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mediterranean Sea", + "romanization": "Mittelmeer", + "example_sentence_native": "Das Mittelmeer ist ein beliebtes Reiseziel.", + "example_sentence_english": "The Mediterranean Sea is a popular travel destination.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4137 + }, + { + "word": "Mitternacht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "midnight", + "romanization": "Mitternacht", + "example_sentence_native": "Um Mitternacht beginnt ein neuer Tag.", + "example_sentence_english": "At midnight a new day begins.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4138 + }, + { + "word": "nice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nice;cool (informal)", + "romanization": "nice", + "example_sentence_native": "Das ist ein nice T-Shirt.", + "example_sentence_english": "That's a nice T-shirt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4139 + }, + { + "word": "Ostsee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Baltic Sea", + "romanization": "Ostsee", + "example_sentence_native": "Die Ostsee ist ein beliebtes Reiseziel.", + "example_sentence_english": "The Baltic Sea is a popular travel destination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4141 + }, + { + "word": "Partnerschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partnership", + "romanization": "Partnerschaft", + "example_sentence_native": "Sie haben eine gute Partnerschaft aufgebaut.", + "example_sentence_english": "They have built a good partnership.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4143 + }, + { + "word": "preussisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Prussian", + "romanization": "preussisch", + "example_sentence_native": "Die preussische Geschichte ist sehr komplex.", + "example_sentence_english": "Prussian history is very complex.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4144 + }, + { + "word": "Rache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenge", + "romanization": "Rache", + "example_sentence_native": "Er schwor Rache für die Ungerechtigkeit.", + "example_sentence_english": "He swore revenge for the injustice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4145 + }, + { + "word": "Resultat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "result", + "romanization": "Resultat", + "example_sentence_native": "Das Resultat der Prüfung war sehr gut.", + "example_sentence_english": "The result of the exam was very good.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4146 + }, + { + "word": "Sparkasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savings bank", + "romanization": "Sparkasse", + "example_sentence_native": "Ich habe ein Konto bei der Sparkasse.", + "example_sentence_english": "I have an account at the savings bank.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4147 + }, + { + "word": "Straftat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal offense", + "romanization": "Straftat", + "example_sentence_native": "Die Straftat wurde von der Polizei untersucht.", + "example_sentence_english": "The criminal offense was investigated by the police.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4148 + }, + { + "word": "stoßen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to push;to bump", + "romanization": "stoßen", + "example_sentence_native": "Er hat sich den Kopf an der Tür gestoßen.", + "example_sentence_english": "He bumped his head on the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4149 + }, + { + "word": "Teller", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "plate", + "romanization": "Teller", + "example_sentence_native": "Der Teller ist leer.", + "example_sentence_english": "The plate is empty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4150 + }, + { + "word": "Transparenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transparency", + "romanization": "Transparenz", + "example_sentence_native": "Wir brauchen mehr Transparenz in der Politik.", + "example_sentence_english": "We need more transparency in politics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4151 + }, + { + "word": "Untergang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "downfall;demise;setting (of sun)", + "romanization": "Untergang", + "example_sentence_native": "Der Untergang der Sonne war wunderschön.", + "example_sentence_english": "The setting of the sun was beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4152 + }, + { + "word": "Verstärkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reinforcement;strengthening", + "romanization": "Verstärkung", + "example_sentence_native": "Die Polizei forderte Verstärkung an.", + "example_sentence_english": "The police requested reinforcement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4153 + }, + { + "word": "vielfach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manifold;multiple;many times", + "romanization": "vielfach", + "example_sentence_native": "Das Problem wurde vielfach diskutiert.", + "example_sentence_english": "The problem was discussed many times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4154 + }, + { + "word": "vorübergehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporary;transient", + "romanization": "vorübergehend", + "example_sentence_native": "Das ist nur eine vorübergehende Lösung.", + "example_sentence_english": "This is only a temporary solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4155 + }, + { + "word": "weitaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by far;much (more;less)", + "romanization": "weitaus", + "example_sentence_native": "Das ist weitaus besser als erwartet.", + "example_sentence_english": "That is by far better than expected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4157 + }, + { + "word": "Anordnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrangement;order;directive", + "romanization": "Anordnung", + "example_sentence_native": "Die Anordnung der Möbel im Raum ist sehr harmonisch.", + "example_sentence_english": "The arrangement of the furniture in the room is very harmonious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4160 + }, + { + "word": "anstrengend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strenuous;exhausting", + "romanization": "anstrengend", + "example_sentence_native": "Der Marathon war sehr anstrengend.", + "example_sentence_english": "The marathon was very strenuous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4161 + }, + { + "word": "antworten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to answer;to reply", + "romanization": "antworten", + "example_sentence_native": "Bitte antworte mir schnell.", + "example_sentence_english": "Please answer me quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4162 + }, + { + "word": "Ass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ace", + "romanization": "Ass", + "example_sentence_native": "Er spielte ein Ass aus.", + "example_sentence_english": "He played an ace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4163 + }, + { + "word": "Becken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basin;pelvis;pool;cymbal", + "romanization": "Becken", + "example_sentence_native": "Das Schwimmbecken ist sehr groß.", + "example_sentence_english": "The swimming pool is very large.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4164 + }, + { + "word": "benachbart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neighboring;adjacent", + "romanization": "benachbart", + "example_sentence_native": "Die benachbarten Häuser wurden verkauft.", + "example_sentence_english": "The neighboring houses were sold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4165 + }, + { + "word": "Beobachtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observation", + "romanization": "Beobachtung", + "example_sentence_native": "Seine Beobachtungen waren sehr präzise.", + "example_sentence_english": "His observations were very precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4166 + }, + { + "word": "Berechnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calculation;computation", + "romanization": "Berechnung", + "example_sentence_native": "Die Berechnung des Ergebnisses dauerte lange.", + "example_sentence_english": "The calculation of the result took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4167 + }, + { + "word": "Besserung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvement;recovery", + "romanization": "Besserung", + "example_sentence_native": "Wir wünschen dir gute Besserung!", + "example_sentence_english": "We wish you a good recovery!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4168 + }, + { + "word": "Bestellung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "order (e.g.;goods);reservation", + "romanization": "Bestellung", + "example_sentence_native": "Ich habe eine neue Bestellung aufgegeben.", + "example_sentence_english": "I have placed a new order.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4169 + }, + { + "word": "Bildschirm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screen;monitor", + "romanization": "Bildschirm", + "example_sentence_native": "Der Bildschirm meines Computers ist sehr groß.", + "example_sentence_english": "The screen of my computer is very large.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4170 + }, + { + "word": "Braut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bride", + "romanization": "Braut", + "example_sentence_native": "Die Braut trug ein wunderschönes weißes Kleid.", + "example_sentence_english": "The bride wore a beautiful white dress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4171 + }, + { + "word": "einbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to install;to build in", + "romanization": "einbauen", + "example_sentence_native": "Wir müssen die neue Küche noch einbauen.", + "example_sentence_english": "We still need to install the new kitchen.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4172 + }, + { + "word": "Eishockey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice hockey", + "romanization": "Eishockey", + "example_sentence_native": "Eishockey ist in Kanada sehr beliebt.", + "example_sentence_english": "Ice hockey is very popular in Canada.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4173 + }, + { + "word": "Ensemble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ensemble;group", + "romanization": "Ensemble", + "example_sentence_native": "Das Orchester-Ensemble spielte wunderschöne Musik.", + "example_sentence_english": "The orchestra ensemble played beautiful music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4175 + }, + { + "word": "fliehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flee;to escape", + "romanization": "fliehen", + "example_sentence_native": "Die Gefangenen versuchten, aus dem Gefängnis zu fliehen.", + "example_sentence_english": "The prisoners tried to escape from the prison.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4176 + }, + { + "word": "Gastgeber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "host", + "romanization": "Gastgeber", + "example_sentence_native": "Der Gastgeber begrüßte alle Gäste herzlich.", + "example_sentence_english": "The host warmly welcomed all guests.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4177 + }, + { + "word": "Gefangener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prisoner", + "romanization": "Gefangener", + "example_sentence_native": "Der Gefangene wurde nach seiner Freilassung entlassen.", + "example_sentence_english": "The prisoner was released after his liberation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4178 + }, + { + "word": "Gemeinderat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal council;local council", + "romanization": "Gemeinderat", + "example_sentence_native": "Der Gemeinderat hat über das neue Bauprojekt abgestimmt.", + "example_sentence_english": "The municipal council voted on the new construction project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4179 + }, + { + "word": "Hintern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottom", + "romanization": "Hintern", + "example_sentence_native": "Er fiel auf seinen Hintern.", + "example_sentence_english": "He fell on his bottom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4180 + }, + { + "word": "Kaufmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merchant", + "romanization": "Kaufmann", + "example_sentence_native": "Der Kaufmann handelte mit Gewürzen.", + "example_sentence_english": "The merchant traded in spices.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4182 + }, + { + "word": "Kurve", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curve", + "romanization": "Kurve", + "example_sentence_native": "Die Straße hat eine scharfe Kurve.", + "example_sentence_english": "The road has a sharp curve.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4184 + }, + { + "word": "Leinwand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canvas", + "romanization": "Leinwand", + "example_sentence_native": "Der Künstler malte auf einer großen Leinwand.", + "example_sentence_english": "The artist painted on a large canvas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4186 + }, + { + "word": "Lücke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gap", + "romanization": "Lücke", + "example_sentence_native": "Es gibt eine Lücke in der Mauer.", + "example_sentence_english": "There is a gap in the wall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4187 + }, + { + "word": "Marathon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marathon", + "romanization": "Marathon", + "example_sentence_native": "Er trainiert für einen Marathon.", + "example_sentence_english": "He is training for a marathon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4188 + }, + { + "word": "merkwürdig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strange", + "romanization": "merkwürdig", + "example_sentence_native": "Das ist eine merkwürdige Geschichte.", + "example_sentence_english": "That is a strange story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4190 + }, + { + "word": "Minus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "minus", + "romanization": "Minus", + "example_sentence_native": "Zwei Minus eins ist eins.", + "example_sentence_english": "Two minus one is one.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 4191 + }, + { + "word": "Mix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mix", + "romanization": "Mix", + "example_sentence_native": "Das ist ein interessanter Mix aus verschiedenen Kulturen.", + "example_sentence_english": "That is an interesting mix of different cultures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4192 + }, + { + "word": "Muskel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscle", + "romanization": "Muskel", + "example_sentence_native": "Er hat starke Muskeln.", + "example_sentence_english": "He has strong muscles.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4193 + }, + { + "word": "Notfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency", + "romanization": "Notfall", + "example_sentence_native": "Im Notfall rufen Sie bitte die Polizei.", + "example_sentence_english": "In case of emergency, please call the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4195 + }, + { + "word": "pariser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Parisian", + "romanization": "pariser", + "example_sentence_native": "Sie liebt die pariser Mode.", + "example_sentence_english": "She loves Parisian fashion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4196 + }, + { + "word": "Quote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quota", + "romanization": "Quote", + "example_sentence_native": "Die Quote der Arbeitslosen ist gesunken.", + "example_sentence_english": "The unemployment rate has decreased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4197 + }, + { + "word": "Rückzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retreat", + "romanization": "Rückzug", + "example_sentence_native": "Der Rückzug der Truppen begann am Morgen.", + "example_sentence_english": "The withdrawal of the troops began in the morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4198 + }, + { + "word": "schriftlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in writing", + "romanization": "schriftlich", + "example_sentence_native": "Bitte bestätigen Sie dies schriftlich.", + "example_sentence_english": "Please confirm this in writing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4199 + }, + { + "word": "Segen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blessing", + "romanization": "Segen", + "example_sentence_native": "Das war ein wahrer Segen für uns.", + "example_sentence_english": "That was a true blessing for us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4201 + }, + { + "word": "Stift", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pen;pencil", + "romanization": "Stift", + "example_sentence_native": "Ich brauche einen Stift, um das zu schreiben.", + "example_sentence_english": "I need a pen to write that.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4202 + }, + { + "word": "tauchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dive;to submerge", + "romanization": "tauchen", + "example_sentence_native": "Er liebt es, im Meer zu tauchen.", + "example_sentence_english": "He loves to dive in the sea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4204 + }, + { + "word": "tauschen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to exchange;to swap", + "romanization": "tauschen", + "example_sentence_native": "Können wir die Plätze tauschen?", + "example_sentence_english": "Can we swap places?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4205 + }, + { + "word": "Telefonnummer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "phone number", + "romanization": "Telefonnummer", + "example_sentence_native": "Was ist deine Telefonnummer?", + "example_sentence_english": "What is your phone number?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4206 + }, + { + "word": "Urkunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "document;certificate;deed", + "romanization": "Urkunde", + "example_sentence_native": "Er erhielt eine Urkunde für seine Leistungen.", + "example_sentence_english": "He received a certificate for his achievements.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4209 + }, + { + "word": "verdanken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to owe;to be indebted to", + "romanization": "verdanken", + "example_sentence_native": "Er verdankt seinen Erfolg harter Arbeit.", + "example_sentence_english": "He owes his success to hard work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4210 + }, + { + "word": "vereinbaren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree;to arrange", + "romanization": "vereinbaren", + "example_sentence_native": "Wir müssen einen Termin vereinbaren.", + "example_sentence_english": "We need to arrange an appointment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4211 + }, + { + "word": "Vertrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sales;distribution", + "romanization": "Vertrieb", + "example_sentence_native": "Der Vertrieb ist für den Verkauf der Produkte zuständig.", + "example_sentence_english": "The sales department is responsible for selling the products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4212 + }, + { + "word": "Volumen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volume", + "romanization": "Volumen", + "example_sentence_native": "Das Volumen des Würfels beträgt 27 Kubikzentimeter.", + "example_sentence_english": "The volume of the cube is 27 cubic centimeters.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4214 + }, + { + "word": "Vorfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incident;occurrence", + "romanization": "Vorfall", + "example_sentence_native": "Es gab einen unerwarteten Vorfall im Büro.", + "example_sentence_english": "There was an unexpected incident in the office.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4215 + }, + { + "word": "Vorsprung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lead;advantage", + "romanization": "Vorsprung", + "example_sentence_native": "Das Team hat einen großen Vorsprung vor dem Gegner.", + "example_sentence_english": "The team has a big lead over the opponent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4216 + }, + { + "word": "zeitlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporal;chronological", + "romanization": "zeitlich", + "example_sentence_native": "Wir müssen den zeitlichen Rahmen des Projekts festlegen.", + "example_sentence_english": "We need to define the temporal framework of the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4218 + }, + { + "word": "Überlegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration;reflection", + "romanization": "Überlegung", + "example_sentence_native": "Nach langer Überlegung traf er eine Entscheidung.", + "example_sentence_english": "After long consideration, he made a decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4219 + }, + { + "word": "überwinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome", + "romanization": "überwinden", + "example_sentence_native": "Er musste seine Angst überwinden.", + "example_sentence_english": "He had to overcome his fear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4220 + }, + { + "word": "Abfahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "departure", + "romanization": "Abfahrt", + "example_sentence_native": "Die Abfahrt des Zuges ist um 10 Uhr.", + "example_sentence_english": "The train's departure is at 10 AM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4221 + }, + { + "word": "abbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break off;to cancel", + "romanization": "abbrechen", + "example_sentence_native": "Wir mussten die Reise abbrechen.", + "example_sentence_english": "We had to cancel the trip.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "brechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4222 + }, + { + "word": "Abwehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defense", + "romanization": "Abwehr", + "example_sentence_native": "Die Abwehr des Teams war sehr stark.", + "example_sentence_english": "The team's defense was very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4223 + }, + { + "word": "alternativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternative", + "romanization": "alternativ", + "example_sentence_native": "Es gibt eine alternative Lösung.", + "example_sentence_english": "There is an alternative solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4224 + }, + { + "word": "Amtszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "term of office", + "romanization": "Amtszeit", + "example_sentence_native": "Seine Amtszeit endet nächstes Jahr.", + "example_sentence_english": "His term of office ends next year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4225 + }, + { + "word": "anhören", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to listen to", + "romanization": "anhören", + "example_sentence_native": "Ich höre mir gerne Musik an.", + "example_sentence_english": "I like to listen to music.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "hören", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4226 + }, + { + "word": "annähernd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "approximate;nearly", + "romanization": "annähernd", + "example_sentence_native": "Die Kosten betragen annähernd 100 Euro.", + "example_sentence_english": "The costs are approximately 100 Euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4228 + }, + { + "word": "Anpassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adaptation;adjustment", + "romanization": "Anpassung", + "example_sentence_native": "Die Anpassung an das neue System war schwierig.", + "example_sentence_english": "The adaptation to the new system was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4229 + }, + { + "word": "anwesend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "present", + "romanization": "anwesend", + "example_sentence_native": "Alle Schüler waren anwesend.", + "example_sentence_english": "All students were present.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4230 + }, + { + "word": "Atem", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "breath", + "romanization": "Atem", + "example_sentence_native": "Er hielt den Atem an.", + "example_sentence_english": "He held his breath.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4231 + }, + { + "word": "auffällig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striking", + "romanization": "auffällig", + "example_sentence_native": "Ihr Kleid war sehr auffällig.", + "example_sentence_english": "Her dress was very striking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4232 + }, + { + "word": "Ausflug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excursion", + "romanization": "Ausflug", + "example_sentence_native": "Wir machten einen Ausflug in die Berge.", + "example_sentence_english": "We took an excursion to the mountains.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4233 + }, + { + "word": "Auswertung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluation", + "romanization": "Auswertung", + "example_sentence_native": "Die Auswertung der Daten dauerte lange.", + "example_sentence_english": "The evaluation of the data took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4234 + }, + { + "word": "begreifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grasp", + "romanization": "begreifen", + "example_sentence_native": "Ich konnte nicht begreifen, was passiert war.", + "example_sentence_english": "I couldn't grasp what had happened.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4237 + }, + { + "word": "bekanntlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as is well known", + "romanization": "bekanntlich", + "example_sentence_native": "Bekanntlich ist aller Anfang schwer.", + "example_sentence_english": "As is well known, all beginnings are difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4238 + }, + { + "word": "belasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burden", + "romanization": "belasten", + "example_sentence_native": "Der Lärm belastet die Umwelt.", + "example_sentence_english": "The noise burdens the environment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4239 + }, + { + "word": "benennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to name;to designate", + "romanization": "benennen", + "example_sentence_native": "Sie müssen das Problem klar benennen.", + "example_sentence_english": "You must clearly name the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4240 + }, + { + "word": "beruflich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "professional;vocational", + "romanization": "beruflich", + "example_sentence_native": "Er ist beruflich viel unterwegs.", + "example_sentence_english": "He travels a lot for work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4241 + }, + { + "word": "betreuen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look after;to supervise", + "romanization": "betreuen", + "example_sentence_native": "Sie betreut die Kinder am Nachmittag.", + "example_sentence_english": "She looks after the children in the afternoon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4242 + }, + { + "word": "Bombe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bomb", + "romanization": "Bombe", + "example_sentence_native": "Die Polizei fand eine alte Bombe.", + "example_sentence_english": "The police found an old bomb.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4243 + }, + { + "word": "Boxen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxing", + "romanization": "Boxen", + "example_sentence_native": "Er trainiert jeden Tag Boxen.", + "example_sentence_english": "He trains boxing every day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4244 + }, + { + "word": "buchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to book;to reserve", + "romanization": "buchen", + "example_sentence_native": "Wir müssen den Flug bald buchen.", + "example_sentence_english": "We need to book the flight soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4245 + }, + { + "word": "Chinese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Chinese person (male)", + "romanization": "Chinese", + "example_sentence_native": "Er ist ein Chinese.", + "example_sentence_english": "He is a Chinese person.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4247 + }, + { + "word": "Crew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crew", + "romanization": "Crew", + "example_sentence_native": "Die Crew bereitete das Flugzeug vor.", + "example_sentence_english": "The crew prepared the airplane.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4248 + }, + { + "word": "Diebstahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theft", + "romanization": "Diebstahl", + "example_sentence_native": "Der Diebstahl wurde der Polizei gemeldet.", + "example_sentence_english": "The theft was reported to the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4249 + }, + { + "word": "einheimisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native;indigenous", + "romanization": "einheimisch", + "example_sentence_native": "Die einheimische Bevölkerung lebt hier seit Jahrhunderten.", + "example_sentence_english": "The native population has lived here for centuries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4251 + }, + { + "word": "Einschränkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restriction;limitation", + "romanization": "Einschränkung", + "example_sentence_native": "Es gibt Einschränkungen bei der Nutzung des Internets.", + "example_sentence_english": "There are restrictions on internet usage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4252 + }, + { + "word": "erben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inherit", + "romanization": "erben", + "example_sentence_native": "Sie wird das Haus ihrer Großmutter erben.", + "example_sentence_english": "She will inherit her grandmother's house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4253 + }, + { + "word": "Erscheinung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance;phenomenon", + "romanization": "Erscheinung", + "example_sentence_native": "Die plötzliche Erscheinung des Kometen überraschte alle.", + "example_sentence_english": "The sudden appearance of the comet surprised everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4254 + }, + { + "word": "Erzählung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "story;narration", + "romanization": "Erzählung", + "example_sentence_native": "Sie las eine spannende Erzählung vor.", + "example_sentence_english": "She read an exciting story aloud.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4255 + }, + { + "word": "Football", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football (American)", + "romanization": "Football", + "example_sentence_native": "Er schaut gerne American Football im Fernsehen.", + "example_sentence_english": "He likes to watch American football on television.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4256 + }, + { + "word": "geistig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mental;spiritual", + "romanization": "geistig", + "example_sentence_native": "Er leidet unter geistiger Erschöpfung.", + "example_sentence_english": "He suffers from mental exhaustion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4257 + }, + { + "word": "Gepäck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luggage;baggage", + "romanization": "Gepäck", + "example_sentence_native": "Bitte legen Sie Ihr Gepäck in den Kofferraum.", + "example_sentence_english": "Please put your luggage in the trunk.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4258 + }, + { + "word": "Gerücht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rumor;hearsay", + "romanization": "Gerücht", + "example_sentence_native": "Es gibt ein Gerücht über neue Pläne.", + "example_sentence_english": "There is a rumor about new plans.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4259 + }, + { + "word": "Geschwister", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "siblings", + "romanization": "Geschwister", + "example_sentence_native": "Ich habe zwei Geschwister.", + "example_sentence_english": "I have two siblings.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4260 + }, + { + "word": "Grossvater", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandfather", + "romanization": "Grossvater", + "example_sentence_native": "Mein Grossvater erzählt gerne Geschichten.", + "example_sentence_english": "My grandfather likes to tell stories.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4262 + }, + { + "word": "Helm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helmet", + "romanization": "Helm", + "example_sentence_native": "Er trägt einen Helm beim Fahrradfahren.", + "example_sentence_english": "He wears a helmet when cycling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4264 + }, + { + "word": "Historiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "historian", + "romanization": "Historiker", + "example_sentence_native": "Der Historiker forscht über das Mittelalter.", + "example_sentence_english": "The historian researches the Middle Ages.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4265 + }, + { + "word": "Hügel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hill", + "romanization": "Hügel", + "example_sentence_native": "Wir wanderten auf den Hügel.", + "example_sentence_english": "We hiked up the hill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4267 + }, + { + "word": "Ingenieur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engineer", + "romanization": "Ingenieur", + "example_sentence_native": "Mein Bruder ist Ingenieur.", + "example_sentence_english": "My brother is an engineer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4268 + }, + { + "word": "Innenminister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Minister of the Interior", + "romanization": "Innenminister", + "example_sentence_native": "Der Innenminister gab eine Pressekonferenz.", + "example_sentence_english": "The Minister of the Interior gave a press conference.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4269 + }, + { + "word": "Kapelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chapel;band", + "romanization": "Kapelle", + "example_sentence_native": "Die kleine Kapelle steht auf dem Hügel.", + "example_sentence_english": "The small chapel stands on the hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4271 + }, + { + "word": "Klo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet;WC", + "romanization": "Klo", + "example_sentence_native": "Wo ist das Klo?", + "example_sentence_english": "Where is the toilet?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4272 + }, + { + "word": "königlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "royal;kingly", + "romanization": "königlich", + "example_sentence_native": "Das ist ein königliches Schloss.", + "example_sentence_english": "That is a royal castle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4273 + }, + { + "word": "Landgericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regional court;district court", + "romanization": "Landgericht", + "example_sentence_native": "Das Landgericht hat den Fall entschieden.", + "example_sentence_english": "The regional court decided the case.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4274 + }, + { + "word": "Lizenz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "license", + "romanization": "Lizenz", + "example_sentence_native": "Sie braucht eine Lizenz zum Fahren.", + "example_sentence_english": "She needs a license to drive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4276 + }, + { + "word": "Match", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "match (sports;game)", + "romanization": "Match", + "example_sentence_native": "Das Fußball-Match war sehr spannend.", + "example_sentence_english": "The football match was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4277 + }, + { + "word": "Mindestlohn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimum wage", + "romanization": "Mindestlohn", + "example_sentence_native": "Der Mindestlohn wurde erhöht.", + "example_sentence_english": "The minimum wage was increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4278 + }, + { + "word": "Möbel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "furniture", + "romanization": "Möbel", + "example_sentence_native": "Wir haben neue Möbel für das Wohnzimmer gekauft.", + "example_sentence_english": "We bought new furniture for the living room.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4279 + }, + { + "word": "Münze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coin", + "romanization": "Münze", + "example_sentence_native": "Ich habe eine Münze gefunden.", + "example_sentence_english": "I found a coin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4280 + }, + { + "word": "Podcast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "podcast", + "romanization": "Podcast", + "example_sentence_native": "Ich höre gerne Podcasts beim Sport.", + "example_sentence_english": "I like listening to podcasts while exercising.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4282 + }, + { + "word": "Reserve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reserve", + "romanization": "Reserve", + "example_sentence_native": "Wir haben noch eine Reserve an Wasser.", + "example_sentence_english": "We still have a reserve of water.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4283 + }, + { + "word": "Ruhestand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retirement", + "romanization": "Ruhestand", + "example_sentence_native": "Er freut sich auf seinen Ruhestand.", + "example_sentence_english": "He is looking forward to his retirement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4284 + }, + { + "word": "Rücksicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration", + "romanization": "Rücksicht", + "example_sentence_native": "Bitte nehmen Sie Rücksicht auf andere.", + "example_sentence_english": "Please show consideration for others.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4285 + }, + { + "word": "saudi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saudi", + "romanization": "saudi", + "example_sentence_native": "Er ist saudi-arabischer Herkunft.", + "example_sentence_english": "He is of Saudi Arabian origin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4286 + }, + { + "word": "Schwangerschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pregnancy", + "romanization": "Schwangerschaft", + "example_sentence_native": "Die Schwangerschaft dauert neun Monate.", + "example_sentence_english": "Pregnancy lasts nine months.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4287 + }, + { + "word": "Schülerin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female student", + "romanization": "Schülerin", + "example_sentence_native": "Sie ist eine fleißige Schülerin.", + "example_sentence_english": "She is a diligent female student.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4288 + }, + { + "word": "sportlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sporty", + "romanization": "sportlich", + "example_sentence_native": "Er ist sehr sportlich.", + "example_sentence_english": "He is very sporty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4289 + }, + { + "word": "Tablet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablet", + "romanization": "Tablet", + "example_sentence_native": "Ich habe ein neues Tablet gekauft.", + "example_sentence_english": "I bought a new tablet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4290 + }, + { + "word": "Testament", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "will;testament", + "romanization": "Testament", + "example_sentence_native": "Er hat sein Testament gemacht.", + "example_sentence_english": "He made his will.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4291 + }, + { + "word": "verarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to process;to handle", + "romanization": "verarbeiten", + "example_sentence_native": "Der Computer kann große Datenmengen verarbeiten.", + "example_sentence_english": "The computer can process large amounts of data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4297 + }, + { + "word": "Vermieter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landlord", + "romanization": "Vermieter", + "example_sentence_native": "Unser Vermieter ist sehr nett.", + "example_sentence_english": "Our landlord is very nice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4298 + }, + { + "word": "Vermittlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediation;agency;placement", + "romanization": "Vermittlung", + "example_sentence_native": "Die Vermittlung des Konflikts war erfolgreich.", + "example_sentence_english": "The mediation of the conflict was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4299 + }, + { + "word": "Viertelfinale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarter-final", + "romanization": "Viertelfinale", + "example_sentence_native": "Das Viertelfinale war sehr spannend.", + "example_sentence_english": "The quarter-final was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4300 + }, + { + "word": "Werkzeug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tool", + "romanization": "Werkzeug", + "example_sentence_native": "Er hat sein Werkzeug vergessen.", + "example_sentence_english": "He forgot his tool.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4301 + }, + { + "word": "wertvoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valuable", + "romanization": "wertvoll", + "example_sentence_native": "Das ist ein sehr wertvolles Gemälde.", + "example_sentence_english": "That is a very valuable painting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4302 + }, + { + "word": "Zigarette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cigarette", + "romanization": "Zigarette", + "example_sentence_native": "Sie raucht eine Zigarette.", + "example_sentence_english": "She is smoking a cigarette.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4303 + }, + { + "word": "überschreiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exceed;to cross", + "romanization": "überschreiten", + "example_sentence_native": "Sie dürfen die Geschwindigkeitsbegrenzung nicht überschreiten.", + "example_sentence_english": "You must not exceed the speed limit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4304 + }, + { + "word": "Affe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monkey;ape", + "romanization": "Affe", + "example_sentence_native": "Der Affe isst eine Banane.", + "example_sentence_english": "The monkey is eating a banana.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4305 + }, + { + "word": "Anwesenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presence", + "romanization": "Anwesenheit", + "example_sentence_native": "Ihre Anwesenheit ist erforderlich.", + "example_sentence_english": "Your presence is required.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4307 + }, + { + "word": "Anzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sign;indication", + "romanization": "Anzeichen", + "example_sentence_native": "Es gibt Anzeichen für eine Besserung.", + "example_sentence_english": "There are signs of improvement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4308 + }, + { + "word": "Arbeitslosigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment", + "romanization": "Arbeitslosigkeit", + "example_sentence_native": "Die Arbeitslosigkeit ist in diesem Land hoch.", + "example_sentence_english": "Unemployment is high in this country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4309 + }, + { + "word": "ausdrücken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express", + "romanization": "ausdrücken", + "example_sentence_native": "Er konnte seine Gefühle nicht ausdrücken.", + "example_sentence_english": "He couldn't express his feelings.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "drücken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4310 + }, + { + "word": "ausnehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gut;to exempt", + "romanization": "ausnehmen", + "example_sentence_native": "Sie müssen den Fisch ausnehmen, bevor Sie ihn kochen.", + "example_sentence_english": "You have to gut the fish before you cook it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4311 + }, + { + "word": "backen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bake", + "romanization": "backen", + "example_sentence_native": "Ich möchte einen Kuchen backen.", + "example_sentence_english": "I want to bake a cake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4312 + }, + { + "word": "Bass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bass (music;fish)", + "romanization": "Bass", + "example_sentence_native": "Der Bass in diesem Lied ist sehr stark.", + "example_sentence_english": "The bass in this song is very strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4313 + }, + { + "word": "bedanken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to thank (oneself;someone)", + "romanization": "bedanken", + "example_sentence_native": "Ich möchte mich für Ihre Hilfe bedanken.", + "example_sentence_english": "I would like to thank you for your help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4314 + }, + { + "word": "beeindruckend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impressive", + "romanization": "beeindruckend", + "example_sentence_native": "Das war eine sehr beeindruckende Leistung.", + "example_sentence_english": "That was a very impressive performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4315 + }, + { + "word": "Befreiung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberation;release", + "romanization": "Befreiung", + "example_sentence_native": "Die Befreiung der Stadt wurde gefeiert.", + "example_sentence_english": "The liberation of the city was celebrated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4316 + }, + { + "word": "Belohnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reward", + "romanization": "Belohnung", + "example_sentence_native": "Er erhielt eine Belohnung für seine harte Arbeit.", + "example_sentence_english": "He received a reward for his hard work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4317 + }, + { + "word": "bitter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bitter", + "romanization": "bitter", + "example_sentence_native": "Der Kaffee schmeckt bitter.", + "example_sentence_english": "The coffee tastes bitter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4319 + }, + { + "word": "bunt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "colorful", + "romanization": "bunt", + "example_sentence_native": "Der Vogel ist sehr bunt.", + "example_sentence_english": "The bird is very colorful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4321 + }, + { + "word": "einfallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to come to mind", + "romanization": "einfallen", + "example_sentence_native": "Mir fällt der Name nicht ein.", + "example_sentence_english": "The name doesn't come to my mind.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4322 + }, + { + "word": "Einleitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduction", + "romanization": "Einleitung", + "example_sentence_native": "Die Einleitung des Buches ist sehr interessant.", + "example_sentence_english": "The introduction of the book is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4323 + }, + { + "word": "Enkel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandchild", + "romanization": "Enkel", + "example_sentence_native": "Mein Enkel besucht mich oft.", + "example_sentence_english": "My grandchild often visits me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4324 + }, + { + "word": "Ergänzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addition", + "romanization": "Ergänzung", + "example_sentence_native": "Das ist eine wichtige Ergänzung zum Bericht.", + "example_sentence_english": "This is an important addition to the report.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4325 + }, + { + "word": "Fantasie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy", + "romanization": "Fantasie", + "example_sentence_native": "Kinder haben oft eine lebhafte Fantasie.", + "example_sentence_english": "Children often have a vivid imagination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4326 + }, + { + "word": "fähig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capable", + "romanization": "fähig", + "example_sentence_native": "Er ist fähig, diese Aufgabe zu lösen.", + "example_sentence_english": "He is capable of solving this task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4329 + }, + { + "word": "Gnade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grace;mercy", + "romanization": "Gnade", + "example_sentence_native": "Er bat um Gnade.", + "example_sentence_english": "He begged for mercy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4331 + }, + { + "word": "gänzlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entirely;completely", + "romanization": "gänzlich", + "example_sentence_native": "Das Ergebnis war gänzlich unerwartet.", + "example_sentence_english": "The result was entirely unexpected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4332 + }, + { + "word": "Handball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handball", + "romanization": "Handball", + "example_sentence_native": "Er spielt gerne Handball.", + "example_sentence_english": "He likes to play handball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4333 + }, + { + "word": "Hauptmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain (military)", + "romanization": "Hauptmann", + "example_sentence_native": "Der Hauptmann gab den Befehl.", + "example_sentence_english": "The captain gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4334 + }, + { + "word": "intern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internal", + "romanization": "intern", + "example_sentence_native": "Das ist eine interne Angelegenheit.", + "example_sentence_english": "This is an internal matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4336 + }, + { + "word": "Ironie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irony", + "romanization": "Ironie", + "example_sentence_native": "Er verstand die Ironie der Situation nicht.", + "example_sentence_english": "He didn't understand the irony of the situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4337 + }, + { + "word": "Klamotte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old clothes;junk (informal)", + "romanization": "Klamotte", + "example_sentence_native": "Sie hat viele alte Klamotten im Schrank.", + "example_sentence_english": "She has a lot of old clothes in the closet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4339 + }, + { + "word": "Kommando", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "command", + "romanization": "Kommando", + "example_sentence_native": "Der Soldat folgte dem Kommando.", + "example_sentence_english": "The soldier followed the command.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4340 + }, + { + "word": "kommentieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to comment", + "romanization": "kommentieren", + "example_sentence_native": "Er wollte den Vorfall nicht kommentieren.", + "example_sentence_english": "He did not want to comment on the incident.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4341 + }, + { + "word": "Kopie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "copy", + "romanization": "Kopie", + "example_sentence_native": "Ich brauche eine Kopie dieses Dokuments.", + "example_sentence_english": "I need a copy of this document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4342 + }, + { + "word": "Korrektur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correction", + "romanization": "Korrektur", + "example_sentence_native": "Bitte machen Sie die Korrekturen bis morgen.", + "example_sentence_english": "Please make the corrections by tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4343 + }, + { + "word": "Künstlerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female artist", + "romanization": "Künstlerin", + "example_sentence_native": "Die Künstlerin stellte ihre neuen Werke aus.", + "example_sentence_english": "The artist exhibited her new works.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4344 + }, + { + "word": "Landesregierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state government", + "romanization": "Landesregierung", + "example_sentence_native": "Die Landesregierung hat neue Gesetze verabschiedet.", + "example_sentence_english": "The state government has passed new laws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4345 + }, + { + "word": "lehren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to teach", + "romanization": "lehren", + "example_sentence_native": "Sie lehrt Deutsch an der Universität.", + "example_sentence_english": "She teaches German at the university.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4347 + }, + { + "word": "Look", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "look (style)", + "romanization": "Look", + "example_sentence_native": "Sie hat einen neuen Look.", + "example_sentence_english": "She has a new look.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4348 + }, + { + "word": "ländlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural", + "romanization": "ländlich", + "example_sentence_native": "Wir wohnen in einer ländlichen Gegend.", + "example_sentence_english": "We live in a rural area.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4349 + }, + { + "word": "Marktplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marketplace", + "romanization": "Marktplatz", + "example_sentence_native": "Der Marktplatz ist heute voller Menschen.", + "example_sentence_english": "The marketplace is full of people today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4350 + }, + { + "word": "Minderheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minority", + "romanization": "Minderheit", + "example_sentence_native": "Die Minderheit der Bevölkerung stimmte dagegen.", + "example_sentence_english": "The minority of the population voted against it.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4352 + }, + { + "word": "mitteilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inform;to communicate", + "romanization": "mitteilen", + "example_sentence_native": "Er wollte ihr die Neuigkeiten mitteilen.", + "example_sentence_english": "He wanted to inform her of the news.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "teilen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4353 + }, + { + "word": "nervös", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nervous", + "romanization": "nervös", + "example_sentence_native": "Sie war vor der Prüfung sehr nervös.", + "example_sentence_english": "She was very nervous before the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4355 + }, + { + "word": "primär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primary", + "romanization": "primär", + "example_sentence_native": "Das ist unsere primäre Aufgabe.", + "example_sentence_english": "That is our primary task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4357 + }, + { + "word": "Rabatt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "discount", + "romanization": "Rabatt", + "example_sentence_native": "Wir bekommen einen Rabatt auf den Preis.", + "example_sentence_english": "We get a discount on the price.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4358 + }, + { + "word": "Rasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breed;race", + "romanization": "Rasse", + "example_sentence_native": "Diese Hunderasse ist sehr beliebt.", + "example_sentence_english": "This dog breed is very popular.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4359 + }, + { + "word": "regelmäßig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "regularly", + "romanization": "regelmäßig", + "example_sentence_native": "Ich gehe regelmäßig ins Fitnessstudio.", + "example_sentence_english": "I go to the gym regularly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4360 + }, + { + "word": "Römer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Roman (person)", + "romanization": "Römer", + "example_sentence_native": "Ein Römer lebte vor langer Zeit in dieser Stadt.", + "example_sentence_english": "A Roman lived in this city a long time ago.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4362 + }, + { + "word": "Sanierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renovation;refurbishment", + "romanization": "Sanierung", + "example_sentence_native": "Die Sanierung des alten Gebäudes wird bald beginnen.", + "example_sentence_english": "The renovation of the old building will start soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4364 + }, + { + "word": "satt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "full (after eating);satisfied", + "romanization": "satt", + "example_sentence_native": "Ich bin satt, danke.", + "example_sentence_english": "I am full, thank you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4365 + }, + { + "word": "Schein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shine;light;bill (money);certificate", + "romanization": "Schein", + "example_sentence_native": "Der Schein des Mondes war hell.", + "example_sentence_english": "The shine of the moon was bright.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4366 + }, + { + "word": "smart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smart;clever;fashionable", + "romanization": "smart", + "example_sentence_native": "Sie hat eine sehr smarte Idee.", + "example_sentence_english": "She has a very smart idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4368 + }, + { + "word": "Socke", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sock", + "romanization": "Socke", + "example_sentence_native": "Ich brauche ein Paar Socken.", + "example_sentence_english": "I need a pair of socks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4369 + }, + { + "word": "Stadtrat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city council", + "romanization": "Stadtrat", + "example_sentence_native": "Der Stadtrat hat die neue Verordnung genehmigt.", + "example_sentence_english": "The city council approved the new regulation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4370 + }, + { + "word": "stetig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constant;steady", + "romanization": "stetig", + "example_sentence_native": "Die Preise steigen stetig an.", + "example_sentence_english": "The prices are constantly rising.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4371 + }, + { + "word": "Stirn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forehead", + "romanization": "Stirn", + "example_sentence_native": "Sie wischte sich den Schweiß von der Stirn.", + "example_sentence_english": "She wiped the sweat from her forehead.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4372 + }, + { + "word": "stuttgarter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Stuttgart", + "romanization": "stuttgarter", + "example_sentence_native": "Er mag den stuttgarter Wein.", + "example_sentence_english": "He likes the Stuttgart wine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4374 + }, + { + "word": "stürzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall;to plunge", + "romanization": "stürzen", + "example_sentence_native": "Er könnte stürzen, wenn er nicht aufpasst.", + "example_sentence_english": "He could fall if he's not careful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4375 + }, + { + "word": "Tasse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cup", + "romanization": "Tasse", + "example_sentence_native": "Ich trinke Kaffee aus einer Tasse.", + "example_sentence_english": "I drink coffee from a cup.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4377 + }, + { + "word": "Topf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pot", + "romanization": "Topf", + "example_sentence_native": "Der Topf steht auf dem Herd.", + "example_sentence_english": "The pot is on the stove.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4379 + }, + { + "word": "unfassbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incredible", + "romanization": "unfassbar", + "example_sentence_native": "Das ist unfassbar!", + "example_sentence_english": "That is incredible!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4380 + }, + { + "word": "unwahrscheinlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improbable", + "romanization": "unwahrscheinlich", + "example_sentence_native": "Es ist unwahrscheinlich, dass das passiert.", + "example_sentence_english": "It is unlikely that this will happen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4381 + }, + { + "word": "Verfassungsschutz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "domestic intelligence agency", + "romanization": "Verfassungsschutz", + "example_sentence_native": "Der Verfassungsschutz überwacht extremistische Gruppen.", + "example_sentence_english": "The domestic intelligence agency monitors extremist groups.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4382 + }, + { + "word": "Vorjahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous year", + "romanization": "Vorjahr", + "example_sentence_native": "Die Zahlen sind besser als im Vorjahr.", + "example_sentence_english": "The numbers are better than in the previous year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4385 + }, + { + "word": "Weltmeisterschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "world championship", + "romanization": "Weltmeisterschaft", + "example_sentence_native": "Die Weltmeisterschaft findet alle vier Jahre statt.", + "example_sentence_english": "The World Championship takes place every four years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4386 + }, + { + "word": "Zeile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "romanization": "Zeile", + "example_sentence_native": "Bitte lesen Sie die nächste Zeile.", + "example_sentence_english": "Please read the next line.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4388 + }, + { + "word": "Zettel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "note", + "romanization": "Zettel", + "example_sentence_native": "Ich habe einen Zettel mit Notizen.", + "example_sentence_english": "I have a note with observations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4389 + }, + { + "word": "überaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceedingly", + "romanization": "überaus", + "example_sentence_native": "Er war überaus freundlich zu mir.", + "example_sentence_english": "He was exceedingly friendly to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4390 + }, + { + "word": "übertreiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exaggerate", + "romanization": "übertreiben", + "example_sentence_native": "Du solltest nicht immer so übertreiben.", + "example_sentence_english": "You shouldn't always exaggerate so much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4391 + }, + { + "word": "Apotheke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pharmacy", + "romanization": "Apotheke", + "example_sentence_native": "Ich muss zur Apotheke gehen, um Medikamente zu kaufen.", + "example_sentence_english": "I have to go to the pharmacy to buy medicine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4393 + }, + { + "word": "aufweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show;to exhibit", + "romanization": "aufweisen", + "example_sentence_native": "Das Gebäude weist einige Mängel auf.", + "example_sentence_english": "The building shows some defects.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4394 + }, + { + "word": "ausmachen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn off;to make out", + "romanization": "ausmachen", + "example_sentence_native": "Kannst du bitte das Licht ausmachen?", + "example_sentence_english": "Can you please turn off the light?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4395 + }, + { + "word": "begraben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bury", + "romanization": "begraben", + "example_sentence_native": "Sie haben den Schatz im Garten begraben.", + "example_sentence_english": "They buried the treasure in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4396 + }, + { + "word": "behindern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hinder;to obstruct", + "romanization": "behindern", + "example_sentence_native": "Der Schnee behindert den Verkehr.", + "example_sentence_english": "The snow obstructs the traffic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4397 + }, + { + "word": "blockieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to block", + "romanization": "blockieren", + "example_sentence_native": "Die Straße ist blockiert.", + "example_sentence_english": "The street is blocked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4398 + }, + { + "word": "Bruch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "break;fraction", + "romanization": "Bruch", + "example_sentence_native": "Der Bruch des Glases war laut.", + "example_sentence_english": "The breaking of the glass was loud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4400 + }, + { + "word": "Denkmal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monument;memorial", + "romanization": "Denkmal", + "example_sentence_native": "Das Denkmal steht im Stadtzentrum.", + "example_sentence_english": "The monument stands in the city center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4403 + }, + { + "word": "deutschsprachig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "German-speaking", + "romanization": "deutschsprachig", + "example_sentence_native": "Sie lebt in einem deutschsprachigen Land.", + "example_sentence_english": "She lives in a German-speaking country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4404 + }, + { + "word": "dokumentieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to document", + "romanization": "dokumentieren", + "example_sentence_native": "Wir müssen alle Schritte sorgfältig dokumentieren.", + "example_sentence_english": "We must carefully document all steps.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4405 + }, + { + "word": "Echo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "echo", + "romanization": "Echo", + "example_sentence_native": "Das Echo hallte in den Bergen wider.", + "example_sentence_english": "The echo reverberated in the mountains.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4406 + }, + { + "word": "effektiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effective", + "romanization": "effektiv", + "example_sentence_native": "Diese Methode ist sehr effektiv.", + "example_sentence_english": "This method is very effective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4407 + }, + { + "word": "entspannen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to relax", + "romanization": "entspannen", + "example_sentence_native": "Ich möchte mich nach der Arbeit entspannen.", + "example_sentence_english": "I want to relax after work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4408 + }, + { + "word": "Erfindung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invention", + "romanization": "Erfindung", + "example_sentence_native": "Die Erfindung des Rades war revolutionär.", + "example_sentence_english": "The invention of the wheel was revolutionary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4409 + }, + { + "word": "Ewigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternity", + "romanization": "Ewigkeit", + "example_sentence_native": "Die Ewigkeit ist ein schwer zu fassendes Konzept.", + "example_sentence_english": "Eternity is a difficult concept to grasp.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4411 + }, + { + "word": "Exemplar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specimen;copy", + "romanization": "Exemplar", + "example_sentence_native": "Dieses Exemplar des Buches ist sehr selten.", + "example_sentence_english": "This copy of the book is very rare.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4412 + }, + { + "word": "Explosion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explosion", + "romanization": "Explosion", + "example_sentence_native": "Die Explosion war weithin zu hören.", + "example_sentence_english": "The explosion could be heard far and wide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4413 + }, + { + "word": "Felsen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rock;cliff", + "romanization": "Felsen", + "example_sentence_native": "Der Wanderweg führte über steile Felsen.", + "example_sentence_english": "The hiking trail led over steep rocks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4414 + }, + { + "word": "Flamme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flame", + "romanization": "Flamme", + "example_sentence_native": "Die Kerze hatte eine kleine, ruhige Flamme.", + "example_sentence_english": "The candle had a small, steady flame.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4415 + }, + { + "word": "Fleck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spot;stain", + "romanization": "Fleck", + "example_sentence_native": "Auf dem Teppich ist ein großer Fleck.", + "example_sentence_english": "There is a big stain on the carpet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4416 + }, + { + "word": "Garage", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garage", + "romanization": "Garage", + "example_sentence_native": "Mein Auto steht in der Garage.", + "example_sentence_english": "My car is in the garage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4417 + }, + { + "word": "grüßen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to greet", + "romanization": "grüßen", + "example_sentence_native": "Ich möchte meine Freunde grüßen.", + "example_sentence_english": "I would like to greet my friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4419 + }, + { + "word": "gültig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valid", + "romanization": "gültig", + "example_sentence_native": "Das Ticket ist noch gültig.", + "example_sentence_english": "The ticket is still valid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4420 + }, + { + "word": "hinzufügen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add", + "romanization": "hinzufügen", + "example_sentence_native": "Bitte fügen Sie die neue Information hinzu.", + "example_sentence_english": "Please add the new information.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hinzu", + "base_verb": "fügen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4422 + }, + { + "word": "Honig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "honey", + "romanization": "Honig", + "example_sentence_native": "Ich mag Honig im Tee.", + "example_sentence_english": "I like honey in my tea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4423 + }, + { + "word": "Islamist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamist", + "romanization": "Islamist", + "example_sentence_native": "Die Regierung verurteilte die Taten des Islamisten.", + "example_sentence_english": "The government condemned the actions of the Islamist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4424 + }, + { + "word": "Jubiläum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anniversary", + "romanization": "Jubiläum", + "example_sentence_native": "Wir feiern unser zehnjähriges Jubiläum.", + "example_sentence_english": "We are celebrating our tenth anniversary.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4426 + }, + { + "word": "Kasten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box", + "romanization": "Kasten", + "example_sentence_native": "Der Kasten ist voll mit Büchern.", + "example_sentence_english": "The box is full of books.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4427 + }, + { + "word": "Kita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daycare", + "romanization": "Kita", + "example_sentence_native": "Mein Kind geht in die Kita.", + "example_sentence_english": "My child goes to daycare.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4428 + }, + { + "word": "Komponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "component", + "romanization": "Komponente", + "example_sentence_native": "Jede Komponente ist wichtig für das System.", + "example_sentence_english": "Every component is important for the system.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4429 + }, + { + "word": "küssen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to kiss", + "romanization": "küssen", + "example_sentence_native": "Sie küssen sich zum Abschied.", + "example_sentence_english": "They kiss goodbye.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4430 + }, + { + "word": "legal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legal", + "romanization": "legal", + "example_sentence_native": "Das ist eine völlig legale Methode.", + "example_sentence_english": "That is a completely legal method.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4431 + }, + { + "word": "markieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mark;to highlight", + "romanization": "markieren", + "example_sentence_native": "Bitte markieren Sie die wichtigen Stellen im Text.", + "example_sentence_english": "Please mark the important parts in the text.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4434 + }, + { + "word": "Nationalsozialismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "National Socialism", + "romanization": "Nationalsozialismus", + "example_sentence_native": "Der Nationalsozialismus war eine politische Ideologie.", + "example_sentence_english": "National Socialism was a political ideology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4435 + }, + { + "word": "nominieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nominate", + "romanization": "nominieren", + "example_sentence_native": "Sie wollen ihn für den Preis nominieren.", + "example_sentence_english": "They want to nominate him for the prize.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4436 + }, + { + "word": "orientieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to orient;to guide;to find one's bearings", + "romanization": "orientieren", + "example_sentence_native": "Er muss sich erst orientieren.", + "example_sentence_english": "He first needs to get his bearings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4438 + }, + { + "word": "Plastik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plastic", + "romanization": "Plastik", + "example_sentence_native": "Viele Produkte sind aus Plastik.", + "example_sentence_english": "Many products are made of plastic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4439 + }, + { + "word": "Same", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seed", + "romanization": "Same", + "example_sentence_native": "Der Same keimt im Frühling.", + "example_sentence_english": "The seed germinates in spring.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4441 + }, + { + "word": "sechst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sixth", + "romanization": "sechst", + "example_sentence_native": "Er ist der sechste in der Reihe.", + "example_sentence_english": "He is the sixth in line.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 4442 + }, + { + "word": "Sorte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sort", + "romanization": "Sorte", + "example_sentence_native": "Welche Sorte Äpfel mögen Sie am liebsten?", + "example_sentence_english": "Which sort of apples do you like best?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4443 + }, + { + "word": "Spende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donation", + "romanization": "Spende", + "example_sentence_native": "Wir bitten um eine Spende für wohltätige Zwecke.", + "example_sentence_english": "We ask for a donation for charitable purposes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4444 + }, + { + "word": "Staatsanwalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public prosecutor", + "romanization": "Staatsanwalt", + "example_sentence_native": "Der Staatsanwalt eröffnete den Fall vor Gericht.", + "example_sentence_english": "The public prosecutor opened the case in court.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4445 + }, + { + "word": "thüringer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Thuringian", + "romanization": "thüringer", + "example_sentence_native": "Wir haben eine thüringer Bratwurst gegessen.", + "example_sentence_english": "We ate a Thuringian sausage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4446 + }, + { + "word": "unglücklich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unhappy", + "romanization": "unglücklich", + "example_sentence_native": "Sie war sehr unglücklich über die Nachricht.", + "example_sentence_english": "She was very unhappy about the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4447 + }, + { + "word": "Unterkunft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accommodation", + "romanization": "Unterkunft", + "example_sentence_native": "Wir suchen eine günstige Unterkunft für die Nacht.", + "example_sentence_english": "We are looking for cheap accommodation for the night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4448 + }, + { + "word": "Verbrecher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal", + "romanization": "Verbrecher", + "example_sentence_native": "Der Verbrecher wurde gefasst.", + "example_sentence_english": "The criminal was caught.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4450 + }, + { + "word": "Vermutung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assumption", + "romanization": "Vermutung", + "example_sentence_native": "Das ist nur eine Vermutung.", + "example_sentence_english": "That's just an assumption.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4451 + }, + { + "word": "vernichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destroy", + "romanization": "vernichten", + "example_sentence_native": "Sie wollen alle Beweise vernichten.", + "example_sentence_english": "They want to destroy all evidence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4452 + }, + { + "word": "weich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soft", + "romanization": "weich", + "example_sentence_native": "Das Kissen ist sehr weich.", + "example_sentence_english": "The pillow is very soft.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4453 + }, + { + "word": "Zaun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fence", + "romanization": "Zaun", + "example_sentence_native": "Der Hund sprang über den Zaun.", + "example_sentence_english": "The dog jumped over the fence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4454 + }, + { + "word": "Zeitalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "era", + "romanization": "Zeitalter", + "example_sentence_native": "Wir leben in einem digitalen Zeitalter.", + "example_sentence_english": "We live in a digital era.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4455 + }, + { + "word": "zukommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach", + "romanization": "zukommen", + "example_sentence_native": "Diese Aufgabe wird dir zukommen.", + "example_sentence_english": "This task will be assigned to you.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4456 + }, + { + "word": "zulässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permissible", + "romanization": "zulässig", + "example_sentence_native": "Das ist nicht zulässig.", + "example_sentence_english": "That is not permissible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4457 + }, + { + "word": "zurückführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lead back", + "romanization": "zurückführen", + "example_sentence_native": "Man kann das Problem auf mangelnde Kommunikation zurückführen.", + "example_sentence_english": "One can attribute the problem to a lack of communication.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4458 + }, + { + "word": "zwingend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compelling", + "romanization": "zwingend", + "example_sentence_native": "Es ist zwingend notwendig, diese Regeln zu befolgen.", + "example_sentence_english": "It is absolutely necessary to follow these rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4459 + }, + { + "word": "zwischendurch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in between;occasionally", + "romanization": "zwischendurch", + "example_sentence_native": "Ich esse zwischendurch immer einen Apfel.", + "example_sentence_english": "I always eat an apple in between.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4460 + }, + { + "word": "Abbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction;dismantling;mining", + "romanization": "Abbau", + "example_sentence_native": "Der Abbau von Kohle ist umweltschädlich.", + "example_sentence_english": "The mining of coal is harmful to the environment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4461 + }, + { + "word": "Abhängigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependence;addiction", + "romanization": "Abhängigkeit", + "example_sentence_native": "Die Abhängigkeit von fossilen Brennstoffen ist ein Problem.", + "example_sentence_english": "The dependence on fossil fuels is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4462 + }, + { + "word": "Abschaffung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abolition;repeal", + "romanization": "Abschaffung", + "example_sentence_native": "Sie fordern die Abschaffung der Todesstrafe.", + "example_sentence_english": "They demand the abolition of the death penalty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4463 + }, + { + "word": "allmählich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gradually;slowly", + "romanization": "allmählich", + "example_sentence_native": "Das Wetter wird allmählich besser.", + "example_sentence_english": "The weather is gradually getting better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4464 + }, + { + "word": "Anbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultivation;growing;extension", + "romanization": "Anbau", + "example_sentence_native": "Der Anbau von Weizen ist in dieser Region wichtig.", + "example_sentence_english": "The cultivation of wheat is important in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4465 + }, + { + "word": "Ausbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outbreak;eruption;escape", + "romanization": "Ausbruch", + "example_sentence_native": "Der Ausbruch des Vulkans überraschte alle.", + "example_sentence_english": "The eruption of the volcano surprised everyone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4467 + }, + { + "word": "Baustelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "construction site", + "romanization": "Baustelle", + "example_sentence_native": "Vorsicht, hier ist eine Baustelle!", + "example_sentence_english": "Caution, this is a construction site!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4468 + }, + { + "word": "Beleuchtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighting;illumination", + "romanization": "Beleuchtung", + "example_sentence_native": "Die Beleuchtung im Raum ist sehr gut.", + "example_sentence_english": "The lighting in the room is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4469 + }, + { + "word": "Benutzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "use;usage", + "romanization": "Benutzung", + "example_sentence_native": "Die Benutzung des Internets ist heutzutage sehr verbreitet.", + "example_sentence_english": "The use of the internet is very common nowadays.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4470 + }, + { + "word": "besprechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discuss", + "romanization": "besprechen", + "example_sentence_native": "Wir müssen das Problem besprechen.", + "example_sentence_english": "We need to discuss the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4471 + }, + { + "word": "Bewerber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicant;candidate", + "romanization": "Bewerber", + "example_sentence_native": "Der Bewerber hat einen guten Eindruck gemacht.", + "example_sentence_english": "The applicant made a good impression.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4472 + }, + { + "word": "Blase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bubble;blister;bladder", + "romanization": "Blase", + "example_sentence_native": "Die Seifenblase schwebte in der Luft.", + "example_sentence_english": "The soap bubble floated in the air.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4473 + }, + { + "word": "bremsen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to brake;to slow down", + "romanization": "bremsen", + "example_sentence_native": "Er musste plötzlich bremsen.", + "example_sentence_english": "He suddenly had to brake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4474 + }, + { + "word": "Couch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "couch;sofa", + "romanization": "Couch", + "example_sentence_native": "Ich sitze gerne auf der Couch und lese.", + "example_sentence_english": "I like to sit on the couch and read.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4476 + }, + { + "word": "demonstrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demonstrate;to protest", + "romanization": "demonstrieren", + "example_sentence_native": "Die Studenten wollen für ihre Rechte demonstrieren.", + "example_sentence_english": "The students want to protest for their rights.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4479 + }, + { + "word": "duschen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to shower", + "romanization": "duschen", + "example_sentence_native": "Ich dusche jeden Morgen.", + "example_sentence_english": "I shower every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4480 + }, + { + "word": "Einbruch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burglary", + "romanization": "Einbruch", + "example_sentence_native": "Es gab einen Einbruch in das Haus nebenan.", + "example_sentence_english": "There was a burglary in the house next door.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4481 + }, + { + "word": "Erdbeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earthquake", + "romanization": "Erdbeben", + "example_sentence_native": "Das Erdbeben verursachte große Schäden.", + "example_sentence_english": "The earthquake caused great damage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4482 + }, + { + "word": "ernennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appoint", + "romanization": "ernennen", + "example_sentence_native": "Sie werden ihn zum neuen Direktor ernennen.", + "example_sentence_english": "They will appoint him as the new director.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4483 + }, + { + "word": "Faden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thread", + "romanization": "Faden", + "example_sentence_native": "Der Faden ist gerissen.", + "example_sentence_english": "The thread has broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4484 + }, + { + "word": "Fahne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flag", + "romanization": "Fahne", + "example_sentence_native": "Die Fahne weht im Wind.", + "example_sentence_english": "The flag is waving in the wind.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4485 + }, + { + "word": "Flur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hallway", + "romanization": "Flur", + "example_sentence_native": "Der Flur ist lang und dunkel.", + "example_sentence_english": "The hallway is long and dark.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4486 + }, + { + "word": "Garantie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guarantee", + "romanization": "Garantie", + "example_sentence_native": "Das Produkt hat zwei Jahre Garantie.", + "example_sentence_english": "The product has a two-year warranty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4487 + }, + { + "word": "gegeneinander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "against each other", + "romanization": "gegeneinander", + "example_sentence_native": "Die beiden Teams spielten gegeneinander.", + "example_sentence_english": "The two teams played against each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4488 + }, + { + "word": "gewählt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elected", + "romanization": "gewählt", + "example_sentence_native": "Der neu gewählte Präsident wird heute vereidigt.", + "example_sentence_english": "The newly elected president will be sworn in today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4489 + }, + { + "word": "hessisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hessian", + "romanization": "hessisch", + "example_sentence_native": "Er spricht einen hessischen Dialekt.", + "example_sentence_english": "He speaks a Hessian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4490 + }, + { + "word": "identisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identical", + "romanization": "identisch", + "example_sentence_native": "Die beiden Ergebnisse sind identisch.", + "example_sentence_english": "The two results are identical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4492 + }, + { + "word": "Ideologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideology", + "romanization": "Ideologie", + "example_sentence_native": "Jede politische Partei hat ihre eigene Ideologie.", + "example_sentence_english": "Every political party has its own ideology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4493 + }, + { + "word": "keinesfalls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by no means", + "romanization": "keinesfalls", + "example_sentence_native": "Das ist keinesfalls akzeptabel.", + "example_sentence_english": "That is by no means acceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4498 + }, + { + "word": "Kuh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cow", + "romanization": "Kuh", + "example_sentence_native": "Die Kuh gibt Milch.", + "example_sentence_english": "The cow gives milk.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4499 + }, + { + "word": "lehnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lean", + "romanization": "lehnen", + "example_sentence_native": "Er lehnte sich an die Wand.", + "example_sentence_english": "He leaned against the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4501 + }, + { + "word": "Liebhaber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lover;enthusiast", + "romanization": "Liebhaber", + "example_sentence_native": "Er ist ein großer Liebhaber klassischer Musik.", + "example_sentence_english": "He is a great lover of classical music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4502 + }, + { + "word": "Mantel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coat", + "romanization": "Mantel", + "example_sentence_native": "Ich brauche einen warmen Mantel für den Winter.", + "example_sentence_english": "I need a warm coat for the winter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4505 + }, + { + "word": "Mediziner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medical professional;physician", + "romanization": "Mediziner", + "example_sentence_native": "Viele Mediziner arbeiten im Krankenhaus.", + "example_sentence_english": "Many medical professionals work in the hospital.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4508 + }, + { + "word": "mitbringen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bring along", + "romanization": "mitbringen", + "example_sentence_native": "Kannst du bitte etwas zu essen mitbringen?", + "example_sentence_english": "Can you please bring something to eat?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4509 + }, + { + "word": "nachkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to comply;to follow up", + "romanization": "nachkommen", + "example_sentence_native": "Er muss seinen Verpflichtungen nachkommen.", + "example_sentence_english": "He must comply with his obligations.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4510 + }, + { + "word": "objektiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective", + "romanization": "objektiv", + "example_sentence_native": "Er versucht, objektiv zu bleiben.", + "example_sentence_english": "He tries to remain objective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4512 + }, + { + "word": "Offizier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "officer", + "romanization": "Offizier", + "example_sentence_native": "Der Offizier gab den Befehl.", + "example_sentence_english": "The officer gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4513 + }, + { + "word": "Passwort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "password", + "romanization": "Passwort", + "example_sentence_native": "Bitte geben Sie Ihr Passwort ein.", + "example_sentence_english": "Please enter your password.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4515 + }, + { + "word": "Pressekonferenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press conference", + "romanization": "Pressekonferenz", + "example_sentence_native": "Die Ergebnisse wurden auf einer Pressekonferenz bekannt gegeben.", + "example_sentence_english": "The results were announced at a press conference.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4517 + }, + { + "word": "Rebell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebel", + "romanization": "Rebell", + "example_sentence_native": "Der Rebell wurde gefangen genommen.", + "example_sentence_english": "The rebel was captured.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4518 + }, + { + "word": "rechtfertigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to justify", + "romanization": "rechtfertigen", + "example_sentence_native": "Er konnte sein Verhalten nicht rechtfertigen.", + "example_sentence_english": "He could not justify his behavior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4519 + }, + { + "word": "Ross", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steed;horse", + "romanization": "Ross", + "example_sentence_native": "Der Ritter bestieg sein treues Ross.", + "example_sentence_english": "The knight mounted his loyal steed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4520 + }, + { + "word": "sinnlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "senseless;pointless", + "romanization": "sinnlos", + "example_sentence_native": "Es ist sinnlos, darüber zu streiten.", + "example_sentence_english": "It's pointless to argue about it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4523 + }, + { + "word": "sorgfältig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careful;meticulously", + "romanization": "sorgfältig", + "example_sentence_native": "Er arbeitet sehr sorgfältig.", + "example_sentence_english": "He works very carefully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4524 + }, + { + "word": "Stabilität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stability", + "romanization": "Stabilität", + "example_sentence_native": "Die Stabilität des Gebäudes ist gewährleistet.", + "example_sentence_english": "The stability of the building is guaranteed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4525 + }, + { + "word": "Store", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "store;shop", + "romanization": "Store", + "example_sentence_native": "Ich gehe in den neuen Store, um einzukaufen.", + "example_sentence_english": "I'm going to the new store to shop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4526 + }, + { + "word": "strafen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to punish", + "romanization": "strafen", + "example_sentence_native": "Der Richter wird den Täter strafen.", + "example_sentence_english": "The judge will punish the offender.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4527 + }, + { + "word": "Style", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "style", + "romanization": "Style", + "example_sentence_native": "Ihr neuer Style gefällt mir sehr gut.", + "example_sentence_english": "I really like her new style.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4528 + }, + { + "word": "unverändert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unchanged", + "romanization": "unverändert", + "example_sentence_native": "Die Situation blieb unverändert.", + "example_sentence_english": "The situation remained unchanged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4531 + }, + { + "word": "vergehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pass (time);to elapse", + "romanization": "vergehen", + "example_sentence_native": "Die Zeit vergeht schnell.", + "example_sentence_english": "Time passes quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4532 + }, + { + "word": "vorlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to present;to submit", + "romanization": "vorlegen", + "example_sentence_native": "Er muss die Dokumente vorlegen.", + "example_sentence_english": "He has to submit the documents.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4533 + }, + { + "word": "werben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advertise;to recruit", + "romanization": "werben", + "example_sentence_native": "Die Firma wirbt für ihr neues Produkt.", + "example_sentence_english": "The company advertises its new product.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4535 + }, + { + "word": "Wäsche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundry;washing", + "romanization": "Wäsche", + "example_sentence_native": "Ich muss die Wäsche waschen.", + "example_sentence_english": "I have to do the laundry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4537 + }, + { + "word": "Zelt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tent", + "romanization": "Zelt", + "example_sentence_native": "Wir schlafen im Zelt.", + "example_sentence_english": "We sleep in the tent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4539 + }, + { + "word": "Zulassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admission;approval", + "romanization": "Zulassung", + "example_sentence_native": "Die Zulassung zum Studium ist schwierig.", + "example_sentence_english": "Admission to the study program is difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4540 + }, + { + "word": "Zusammensetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composition;compound", + "romanization": "Zusammensetzung", + "example_sentence_native": "Die chemische Zusammensetzung des Materials ist komplex.", + "example_sentence_english": "The chemical composition of the material is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4541 + }, + { + "word": "Öffnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening;aperture", + "romanization": "Öffnung", + "example_sentence_native": "Die Öffnung des Fensters brachte frische Luft herein.", + "example_sentence_english": "The opening of the window let in fresh air.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4542 + }, + { + "word": "absagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cancel", + "romanization": "absagen", + "example_sentence_native": "Wir müssen das Treffen absagen.", + "example_sentence_english": "We have to cancel the meeting.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4543 + }, + { + "word": "aktualisieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to update", + "romanization": "aktualisieren", + "example_sentence_native": "Bitte aktualisieren Sie die Software.", + "example_sentence_english": "Please update the software.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4544 + }, + { + "word": "Amateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amateur", + "romanization": "Amateur", + "example_sentence_native": "Er ist ein Amateurfotograf.", + "example_sentence_english": "He is an amateur photographer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4545 + }, + { + "word": "analog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analog;analogous", + "romanization": "analog", + "example_sentence_native": "Das ist ein analoges Signal.", + "example_sentence_english": "That is an analog signal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4546 + }, + { + "word": "Anfänger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beginner", + "romanization": "Anfänger", + "example_sentence_native": "Ich bin ein Anfänger in Deutsch.", + "example_sentence_english": "I am a beginner in German.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4547 + }, + { + "word": "Apfel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apple", + "romanization": "Apfel", + "example_sentence_native": "Ich esse einen Apfel.", + "example_sentence_english": "I am eating an apple.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4548 + }, + { + "word": "atmen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to breathe", + "romanization": "atmen", + "example_sentence_native": "Er atmet tief ein.", + "example_sentence_english": "He breathes deeply.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4549 + }, + { + "word": "Aufführung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "performance", + "romanization": "Aufführung", + "example_sentence_native": "Die Aufführung war sehr beeindruckend.", + "example_sentence_english": "The performance was very impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4550 + }, + { + "word": "aufkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arise;to emerge", + "romanization": "aufkommen", + "example_sentence_native": "Neue Probleme können jederzeit aufkommen.", + "example_sentence_english": "New problems can arise at any time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4551 + }, + { + "word": "aufrecht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upright;erect", + "romanization": "aufrecht", + "example_sentence_native": "Er stand aufrecht und blickte in die Ferne.", + "example_sentence_english": "He stood upright and looked into the distance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4552 + }, + { + "word": "ausstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exhibit;to issue", + "romanization": "ausstellen", + "example_sentence_native": "Das Museum wird neue Kunstwerke ausstellen.", + "example_sentence_english": "The museum will exhibit new artworks.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4553 + }, + { + "word": "Award", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "award;prize", + "romanization": "Award", + "example_sentence_native": "Sie hat einen wichtigen Award gewonnen.", + "example_sentence_english": "She won an important award.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4554 + }, + { + "word": "begeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go;to proceed", + "romanization": "begeben", + "example_sentence_native": "Sie werden sich auf eine lange Reise begeben.", + "example_sentence_english": "They will embark on a long journey.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4555 + }, + { + "word": "beherrschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to master;to control", + "romanization": "beherrschen", + "example_sentence_native": "Er beherrscht mehrere Sprachen fließend.", + "example_sentence_english": "He masters several languages fluently.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4556 + }, + { + "word": "Bereitschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "readiness;willingness", + "romanization": "Bereitschaft", + "example_sentence_native": "Er zeigte große Bereitschaft zur Zusammenarbeit.", + "example_sentence_english": "He showed great willingness to cooperate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4557 + }, + { + "word": "Betracht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consideration;regard", + "romanization": "Betracht", + "example_sentence_native": "Wir müssen alle Optionen in Betracht ziehen.", + "example_sentence_english": "We must take all options into consideration.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4558 + }, + { + "word": "Bundesrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Council", + "romanization": "Bundesrat", + "example_sentence_native": "Der Bundesrat vertritt die Länder in Deutschland.", + "example_sentence_english": "The Federal Council represents the states in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4560 + }, + { + "word": "Debüt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debut", + "romanization": "Debüt", + "example_sentence_native": "Ihr Debüt als Sängerin war ein großer Erfolg.", + "example_sentence_english": "Her debut as a singer was a great success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4562 + }, + { + "word": "durcheinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confused;mixed up", + "romanization": "durcheinander", + "example_sentence_native": "Alles lag durcheinander auf dem Tisch.", + "example_sentence_english": "Everything was mixed up on the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4563 + }, + { + "word": "Eingriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervention;operation", + "romanization": "Eingriff", + "example_sentence_native": "Der Arzt musste einen kleinen Eingriff vornehmen.", + "example_sentence_english": "The doctor had to perform a minor operation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4564 + }, + { + "word": "Eisenbahn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "railway;train", + "romanization": "Eisenbahn", + "example_sentence_native": "Die Eisenbahn fährt pünktlich ab.", + "example_sentence_english": "The train departs on time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4565 + }, + { + "word": "emotional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emotional", + "romanization": "emotional", + "example_sentence_native": "Sie reagierte sehr emotional auf die Nachricht.", + "example_sentence_english": "She reacted very emotionally to the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4566 + }, + { + "word": "Europäer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "European (person)", + "romanization": "Europäer", + "example_sentence_native": "Er ist ein stolzer Europäer.", + "example_sentence_english": "He is a proud European.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4568 + }, + { + "word": "Fantasy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy", + "romanization": "Fantasy", + "example_sentence_native": "Ich lese gerne Fantasy-Bücher.", + "example_sentence_english": "I like to read fantasy books.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4569 + }, + { + "word": "Hemd", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shirt", + "romanization": "Hemd", + "example_sentence_native": "Ich trage ein blaues Hemd.", + "example_sentence_english": "I am wearing a blue shirt.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4571 + }, + { + "word": "Herausgeber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "editor;publisher", + "romanization": "Herausgeber", + "example_sentence_native": "Der Herausgeber hat das Buch genehmigt.", + "example_sentence_english": "The editor approved the book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4572 + }, + { + "word": "indirekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indirect", + "romanization": "indirekt", + "example_sentence_native": "Das ist eine indirekte Frage.", + "example_sentence_english": "That is an indirect question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4574 + }, + { + "word": "Jänner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "January", + "romanization": "Jänner", + "example_sentence_native": "Der Jänner ist der erste Monat des Jahres.", + "example_sentence_english": "January is the first month of the year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4576 + }, + { + "word": "Kanton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canton (e.g.;in Switzerland)", + "romanization": "Kanton", + "example_sentence_native": "Die Schweiz besteht aus vielen Kantonen.", + "example_sentence_english": "Switzerland consists of many cantons.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4578 + }, + { + "word": "Klimawandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climate change", + "romanization": "Klimawandel", + "example_sentence_native": "Der Klimawandel ist eine globale Herausforderung.", + "example_sentence_english": "Climate change is a global challenge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4579 + }, + { + "word": "Knoten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knot", + "romanization": "Knoten", + "example_sentence_native": "Der Knoten ist schwer zu lösen.", + "example_sentence_english": "The knot is hard to untie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4580 + }, + { + "word": "kreativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creative", + "romanization": "kreativ", + "example_sentence_native": "Sie ist eine sehr kreative Person.", + "example_sentence_english": "She is a very creative person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4581 + }, + { + "word": "Lebensjahr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "year of life", + "romanization": "Lebensjahr", + "example_sentence_native": "Im zehnten Lebensjahr begann er Klavier zu spielen.", + "example_sentence_english": "In his tenth year of life, he started playing piano.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4582 + }, + { + "word": "locken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lure;to entice", + "romanization": "locken", + "example_sentence_native": "Der Duft des Essens lockte die Katze an.", + "example_sentence_english": "The smell of the food lured the cat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4583 + }, + { + "word": "Messung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measurement", + "romanization": "Messung", + "example_sentence_native": "Die Messung ergab ein genaues Ergebnis.", + "example_sentence_english": "The measurement yielded an accurate result.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4584 + }, + { + "word": "Mythos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "myth", + "romanization": "Mythos", + "example_sentence_native": "Der Mythos von Atlantis fasziniert viele Menschen.", + "example_sentence_english": "The myth of Atlantis fascinates many people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4585 + }, + { + "word": "Orden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "order;medal", + "romanization": "Orden", + "example_sentence_native": "Er erhielt einen hohen Orden für seine Verdienste.", + "example_sentence_english": "He received a high medal for his services.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4587 + }, + { + "word": "Passagier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger", + "romanization": "Passagier", + "example_sentence_native": "Der Passagier wartete auf den Zug.", + "example_sentence_english": "The passenger waited for the train.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4589 + }, + { + "word": "Praktikum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internship", + "romanization": "Praktikum", + "example_sentence_native": "Sie macht ein Praktikum bei einer großen Firma.", + "example_sentence_english": "She is doing an internship at a large company.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4590 + }, + { + "word": "prinzipiell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in principle;fundamentally", + "romanization": "prinzipiell", + "example_sentence_native": "Prinzipiell stimme ich dir zu.", + "example_sentence_english": "In principle, I agree with you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4591 + }, + { + "word": "professionell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional", + "romanization": "professionell", + "example_sentence_native": "Sie arbeitet sehr professionell.", + "example_sentence_english": "She works very professionally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4592 + }, + { + "word": "Prognose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forecast;prognosis", + "romanization": "Prognose", + "example_sentence_native": "Die Wetter-Prognose ist gut für das Wochenende.", + "example_sentence_english": "The weather forecast is good for the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4593 + }, + { + "word": "psychisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychological;mental", + "romanization": "psychisch", + "example_sentence_native": "Er hat psychische Probleme.", + "example_sentence_english": "He has psychological problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4594 + }, + { + "word": "qualifiziert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualified", + "romanization": "qualifiziert", + "example_sentence_native": "Sie ist sehr qualifiziert für diese Position.", + "example_sentence_english": "She is very qualified for this position.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4595 + }, + { + "word": "Richtlinie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guideline;directive", + "romanization": "Richtlinie", + "example_sentence_native": "Wir müssen uns an die Richtlinien halten.", + "example_sentence_english": "We must adhere to the guidelines.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4596 + }, + { + "word": "Riss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack;tear", + "romanization": "Riss", + "example_sentence_native": "Es gibt einen Riss in der Wand.", + "example_sentence_english": "There is a crack in the wall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4597 + }, + { + "word": "Rucksack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "backpack", + "romanization": "Rucksack", + "example_sentence_native": "Ich packe meinen Rucksack für die Wanderung.", + "example_sentence_english": "I'm packing my backpack for the hike.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4598 + }, + { + "word": "Satire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satire", + "romanization": "Satire", + "example_sentence_native": "Die Satire kritisiert oft gesellschaftliche Missstände.", + "example_sentence_english": "Satire often criticizes social grievances.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4600 + }, + { + "word": "Schwachsinn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;idiocy", + "romanization": "Schwachsinn", + "example_sentence_native": "Was du da redest, ist doch purer Schwachsinn!", + "example_sentence_english": "What you're saying is pure nonsense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4603 + }, + { + "word": "Semester", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "semester;term", + "romanization": "Semester", + "example_sentence_native": "Das nächste Semester beginnt im Oktober.", + "example_sentence_english": "The next semester begins in October.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4604 + }, + { + "word": "Stich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sting;stitch;stab", + "romanization": "Stich", + "example_sentence_native": "Der Stich der Nadel war kaum spürbar.", + "example_sentence_english": "The prick of the needle was barely noticeable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4605 + }, + { + "word": "Tiger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiger", + "romanization": "Tiger", + "example_sentence_native": "Der Tiger ist eine große Katze.", + "example_sentence_english": "The tiger is a large cat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4608 + }, + { + "word": "umgehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediate;promptly", + "romanization": "umgehend", + "example_sentence_native": "Bitte antworten Sie umgehend.", + "example_sentence_english": "Please reply promptly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4611 + }, + { + "word": "verweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refer;to banish", + "romanization": "verweisen", + "example_sentence_native": "Er musste den Schüler des Unterrichts verweisen.", + "example_sentence_english": "He had to banish the student from the class.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4613 + }, + { + "word": "Vorfahre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestor", + "romanization": "Vorfahre", + "example_sentence_native": "Unsere Vorfahren lebten in dieser Region.", + "example_sentence_english": "Our ancestors lived in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4614 + }, + { + "word": "Vorgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "process;procedure;incident", + "romanization": "Vorgang", + "example_sentence_native": "Der Vorgang ist noch nicht abgeschlossen.", + "example_sentence_english": "The process is not yet completed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4615 + }, + { + "word": "Vormittag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "morning (before noon)", + "romanization": "Vormittag", + "example_sentence_native": "Wir treffen uns am Vormittag.", + "example_sentence_english": "We meet in the morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4616 + }, + { + "word": "weitergehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to continue;to go on", + "romanization": "weitergehen", + "example_sentence_native": "Der Weg geht hier weiter.", + "example_sentence_english": "The path continues here.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4618 + }, + { + "word": "Zielgruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "target group", + "romanization": "Zielgruppe", + "example_sentence_native": "Die Werbung richtet sich an eine junge Zielgruppe.", + "example_sentence_english": "The advertisement is aimed at a young target group.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4619 + }, + { + "word": "zugrunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underlying;at the bottom of", + "romanization": "zugrunde", + "example_sentence_native": "Die Krise liegt einem grundlegenden Problem zugrunde.", + "example_sentence_english": "The crisis is based on a fundamental problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4620 + }, + { + "word": "abstimmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vote;to coordinate", + "romanization": "abstimmen", + "example_sentence_native": "Wir müssen unsere Pläne abstimmen.", + "example_sentence_english": "We need to coordinate our plans.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "stimmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4621 + }, + { + "word": "Abstieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descent;relegation", + "romanization": "Abstieg", + "example_sentence_native": "Der Abstieg des Teams war eine Enttäuschung.", + "example_sentence_english": "The team's relegation was a disappointment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4622 + }, + { + "word": "Abzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduction;trigger;printout", + "romanization": "Abzug", + "example_sentence_native": "Sie können einen Abzug von der Steuer machen.", + "example_sentence_english": "You can make a deduction from the tax.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4623 + }, + { + "word": "Anleger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investor", + "romanization": "Anleger", + "example_sentence_native": "Viele Anleger sind besorgt über die Wirtschaft.", + "example_sentence_english": "Many investors are concerned about the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4624 + }, + { + "word": "auftauchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to emerge;to appear", + "romanization": "auftauchen", + "example_sentence_native": "Plötzlich tauchte ein Problem auf.", + "example_sentence_english": "Suddenly a problem emerged.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "tauchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4626 + }, + { + "word": "Auszug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excerpt;extract;moving out", + "romanization": "Auszug", + "example_sentence_native": "Bitte lesen Sie den Auszug aus dem Buch.", + "example_sentence_english": "Please read the excerpt from the book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4627 + }, + { + "word": "Bekämpfung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "combat;fight;struggle against", + "romanization": "Bekämpfung", + "example_sentence_native": "Die Bekämpfung der Armut ist ein wichtiges Ziel.", + "example_sentence_english": "The combat against poverty is an important goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4629 + }, + { + "word": "Beleg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "receipt;proof", + "romanization": "Beleg", + "example_sentence_native": "Bitte bewahren Sie den Beleg auf.", + "example_sentence_english": "Please keep the receipt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4630 + }, + { + "word": "beschweren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complain", + "romanization": "beschweren", + "example_sentence_native": "Er beschwert sich immer über das Essen.", + "example_sentence_english": "He always complains about the food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4631 + }, + { + "word": "besiegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defeat", + "romanization": "besiegen", + "example_sentence_native": "Die Mannschaft konnte den Gegner besiegen.", + "example_sentence_english": "The team was able to defeat the opponent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4632 + }, + { + "word": "Blüte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blossom;flower", + "romanization": "Blüte", + "example_sentence_native": "Die Blüte des Baumes ist wunderschön.", + "example_sentence_english": "The blossom of the tree is beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4633 + }, + { + "word": "brav", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "well-behaved", + "romanization": "brav", + "example_sentence_native": "Das Kind war sehr brav.", + "example_sentence_english": "The child was very well-behaved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4635 + }, + { + "word": "Browser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "browser", + "romanization": "Browser", + "example_sentence_native": "Welchen Browser benutzt du?", + "example_sentence_english": "Which browser do you use?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4636 + }, + { + "word": "Bundestagswahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal election", + "romanization": "Bundestagswahl", + "example_sentence_native": "Die nächste Bundestagswahl findet in vier Jahren statt.", + "example_sentence_english": "The next federal election will take place in four years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4637 + }, + { + "word": "Dance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dance", + "romanization": "Dance", + "example_sentence_native": "Ich liebe den Dance.", + "example_sentence_english": "I love the dance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4639 + }, + { + "word": "dresdner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dresden (adj.);from Dresden", + "romanization": "dresdner", + "example_sentence_native": "Die dresdner Frauenkirche ist sehr bekannt.", + "example_sentence_english": "The Dresden Frauenkirche is very famous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4640 + }, + { + "word": "elektronisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronic", + "romanization": "elektronisch", + "example_sentence_native": "Wir haben eine elektronische Rechnung erhalten.", + "example_sentence_english": "We received an electronic invoice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4641 + }, + { + "word": "erweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prove;to show;to render (a service)", + "romanization": "erweisen", + "example_sentence_native": "Er konnte seine Unschuld erweisen.", + "example_sentence_english": "He could prove his innocence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4642 + }, + { + "word": "Fakultät", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faculty (university department)", + "romanization": "Fakultät", + "example_sentence_native": "Sie studiert an der Fakultät für Ingenieurwissenschaften.", + "example_sentence_english": "She studies at the Faculty of Engineering.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4643 + }, + { + "word": "Fang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catch;capture", + "romanization": "Fang", + "example_sentence_native": "Der Fischer war stolz auf seinen großen Fang.", + "example_sentence_english": "The fisherman was proud of his big catch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4644 + }, + { + "word": "fix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed;quick;ready", + "romanization": "fix", + "example_sentence_native": "Das Problem ist jetzt fix gelöst.", + "example_sentence_english": "The problem is now quickly solved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4646 + }, + { + "word": "Formulierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formulation;wording", + "romanization": "Formulierung", + "example_sentence_native": "Die Formulierung des Satzes war unklar.", + "example_sentence_english": "The wording of the sentence was unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4647 + }, + { + "word": "Gift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poison", + "romanization": "Gift", + "example_sentence_native": "Vorsicht, das ist Gift!", + "example_sentence_english": "Caution, that is poison!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4648 + }, + { + "word": "gleichermassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equally;in the same way", + "romanization": "gleichermassen", + "example_sentence_native": "Beide Vorschläge sind gleichermassen interessant.", + "example_sentence_english": "Both suggestions are equally interesting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4649 + }, + { + "word": "Grieche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Greek (person)", + "romanization": "Grieche", + "example_sentence_native": "Der Grieche liebt Oliven.", + "example_sentence_english": "The Greek loves olives.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4650 + }, + { + "word": "Grundgesetz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Basic Law (constitution of Germany)", + "romanization": "Grundgesetz", + "example_sentence_native": "Das Grundgesetz ist die Verfassung Deutschlands.", + "example_sentence_english": "The Basic Law is the constitution of Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4651 + }, + { + "word": "Haken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hook", + "romanization": "Haken", + "example_sentence_native": "Häng deinen Mantel an den Haken.", + "example_sentence_english": "Hang your coat on the hook.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4652 + }, + { + "word": "hierzulande", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in this country;here", + "romanization": "hierzulande", + "example_sentence_native": "Hierzulande ist das Wetter oft unbeständig.", + "example_sentence_english": "In this country, the weather is often unstable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4653 + }, + { + "word": "hässlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ugly", + "romanization": "hässlich", + "example_sentence_native": "Das ist ein hässliches Gebäude.", + "example_sentence_english": "That is an ugly building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4654 + }, + { + "word": "jagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hunt;to chase", + "romanization": "jagen", + "example_sentence_native": "Der Hund jagt den Ball.", + "example_sentence_english": "The dog chases the ball.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4655 + }, + { + "word": "Journalismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journalism", + "romanization": "Journalismus", + "example_sentence_native": "Sie studiert Journalismus an der Universität.", + "example_sentence_english": "She studies journalism at the university.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4658 + }, + { + "word": "Jura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "law (as a field of study)", + "romanization": "Jura", + "example_sentence_native": "Er hat Jura studiert.", + "example_sentence_english": "He studied law.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4659 + }, + { + "word": "Kopfschmerz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "headache", + "romanization": "Kopfschmerz", + "example_sentence_native": "Ich habe starke Kopfschmerzen.", + "example_sentence_english": "I have a bad headache.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4661 + }, + { + "word": "Korruption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corruption", + "romanization": "Korruption", + "example_sentence_native": "Die Korruption ist ein großes Problem in diesem Land.", + "example_sentence_english": "Corruption is a big problem in this country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4662 + }, + { + "word": "kotzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vomit", + "romanization": "kotzen", + "example_sentence_native": "Mir ist so schlecht, ich muss kotzen.", + "example_sentence_english": "I feel so sick, I have to vomit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4663 + }, + { + "word": "Kreativität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creativity", + "romanization": "Kreativität", + "example_sentence_native": "Ihre Kreativität ist beeindruckend.", + "example_sentence_english": "Her creativity is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4664 + }, + { + "word": "künstlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artificial", + "romanization": "künstlich", + "example_sentence_native": "Das ist ein künstlicher Süßstoff.", + "example_sentence_english": "That is an artificial sweetener.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4666 + }, + { + "word": "Ladung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cargo", + "romanization": "Ladung", + "example_sentence_native": "Die Ladung wurde sicher im Hafen entladen.", + "example_sentence_english": "The cargo was safely unloaded in the port.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4667 + }, + { + "word": "Landrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district administrator", + "romanization": "Landrat", + "example_sentence_native": "Der Landrat hat die neue Verordnung unterzeichnet.", + "example_sentence_english": "The district administrator signed the new regulation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4668 + }, + { + "word": "Medaille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medal", + "romanization": "Medaille", + "example_sentence_native": "Sie gewann eine Goldmedaille bei den Olympischen Spielen.", + "example_sentence_english": "She won a gold medal at the Olympic Games.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4670 + }, + { + "word": "nachvollziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to comprehend;to understand;to empathize", + "romanization": "nachvollziehen", + "example_sentence_native": "Ich kann seine Entscheidung nicht nachvollziehen.", + "example_sentence_english": "I cannot comprehend his decision.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "vollziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4672 + }, + { + "word": "Neuigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "news;novelty", + "romanization": "Neuigkeit", + "example_sentence_native": "Hast du neue Neuigkeiten?", + "example_sentence_english": "Do you have any new news?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4673 + }, + { + "word": "Palast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palace", + "romanization": "Palast", + "example_sentence_native": "Der König lebt in einem großen Palast.", + "example_sentence_english": "The king lives in a large palace.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4674 + }, + { + "word": "Point", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "point (as in main point;gist)", + "romanization": "Point", + "example_sentence_native": "Das ist der springende Punkt.", + "example_sentence_english": "That is the crucial point.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4675 + }, + { + "word": "Report", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report", + "romanization": "Report", + "example_sentence_native": "Er hat einen detaillierten Report geschrieben.", + "example_sentence_english": "He wrote a detailed report.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4676 + }, + { + "word": "Review", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "review", + "romanization": "Review", + "example_sentence_native": "Ich habe eine gute Review für das Buch gelesen.", + "example_sentence_english": "I read a good review for the book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4677 + }, + { + "word": "Rhythmus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhythm", + "romanization": "Rhythmus", + "example_sentence_native": "Der Rhythmus der Musik war sehr eingängig.", + "example_sentence_english": "The rhythm of the music was very catchy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4678 + }, + { + "word": "safe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safe;secure", + "romanization": "safe", + "example_sentence_native": "Ist es hier safe?", + "example_sentence_english": "Is it safe here?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4679 + }, + { + "word": "Saft", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "juice", + "romanization": "Saft", + "example_sentence_native": "Ich trinke gerne Apfelsaft.", + "example_sentence_english": "I like to drink apple juice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4680 + }, + { + "word": "schalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to switch;to turn on;off;to shift (gears)", + "romanization": "schalten", + "example_sentence_native": "Bitte schalten Sie das Licht ein.", + "example_sentence_english": "Please turn on the light.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4682 + }, + { + "word": "Scheidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divorce", + "romanization": "Scheidung", + "example_sentence_native": "Die Scheidung war schwierig für sie.", + "example_sentence_english": "The divorce was difficult for her.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4683 + }, + { + "word": "Techniker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technician", + "romanization": "Techniker", + "example_sentence_native": "Der Techniker repariert den Computer.", + "example_sentence_english": "The technician repairs the computer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4686 + }, + { + "word": "tödlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadly;fatal", + "romanization": "tödlich", + "example_sentence_native": "Das ist eine tödliche Krankheit.", + "example_sentence_english": "That is a deadly disease.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4688 + }, + { + "word": "unheimlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncanny;eerie;incredibly", + "romanization": "unheimlich", + "example_sentence_native": "Das alte Haus sieht unheimlich aus.", + "example_sentence_english": "The old house looks eerie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4689 + }, + { + "word": "ur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primeval;original", + "romanization": "ur", + "example_sentence_native": "Der urzeitliche Wald war voller Geheimnisse.", + "example_sentence_english": "The primeval forest was full of secrets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4690 + }, + { + "word": "vereint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "united;combined", + "romanization": "vereint", + "example_sentence_native": "Die vereinten Kräfte führten zum Erfolg.", + "example_sentence_english": "The united forces led to success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4691 + }, + { + "word": "Vergewaltigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rape", + "romanization": "Vergewaltigung", + "example_sentence_native": "Vergewaltigung ist ein schweres Verbrechen.", + "example_sentence_english": "Rape is a serious crime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4692 + }, + { + "word": "verkehrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrong;inverted", + "romanization": "verkehrt", + "example_sentence_native": "Du hast den Schlüssel verkehrt herum eingesteckt.", + "example_sentence_english": "You inserted the key the wrong way around.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4693 + }, + { + "word": "verweigern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refuse;to deny", + "romanization": "verweigern", + "example_sentence_native": "Er weigerte sich, die Anweisung zu befolgen.", + "example_sentence_english": "He refused to follow the instruction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4694 + }, + { + "word": "vorab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in advance;beforehand", + "romanization": "vorab", + "example_sentence_native": "Ich schicke Ihnen die Informationen vorab.", + "example_sentence_english": "I will send you the information in advance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4695 + }, + { + "word": "zuhören", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to listen to", + "romanization": "zuhören", + "example_sentence_native": "Bitte hör mir genau zu.", + "example_sentence_english": "Please listen carefully to me.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "hören", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4698 + }, + { + "word": "zusammenstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compile;to put together", + "romanization": "zusammenstellen", + "example_sentence_native": "Sie muss die Unterlagen für das Meeting zusammenstellen.", + "example_sentence_english": "She has to compile the documents for the meeting.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4699 + }, + { + "word": "Übersetzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translator", + "romanization": "Übersetzer", + "example_sentence_native": "Der Übersetzer hat das Buch ins Englische übertragen.", + "example_sentence_english": "The translator translated the book into English.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4700 + }, + { + "word": "absichtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intentionally", + "romanization": "absichtlich", + "example_sentence_native": "Er hat das Glas absichtlich fallen lassen.", + "example_sentence_english": "He intentionally dropped the glass.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4701 + }, + { + "word": "Abt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abbot", + "romanization": "Abt", + "example_sentence_native": "Der Abt leitete das Kloster seit vielen Jahren.", + "example_sentence_english": "The abbot had led the monastery for many years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4702 + }, + { + "word": "Abwechslung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variety", + "romanization": "Abwechslung", + "example_sentence_native": "Sie braucht etwas Abwechslung in ihrem Alltag.", + "example_sentence_english": "She needs some variety in her daily life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4703 + }, + { + "word": "Amtsgericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local court", + "romanization": "Amtsgericht", + "example_sentence_native": "Das Amtsgericht ist für kleinere Fälle zuständig.", + "example_sentence_english": "The local court is responsible for smaller cases.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4705 + }, + { + "word": "aufrufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to call up", + "romanization": "aufrufen", + "example_sentence_native": "Er musste die Datei aufrufen, um sie zu bearbeiten.", + "example_sentence_english": "He had to call up the file to edit it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "rufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4706 + }, + { + "word": "Ausblick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "view", + "romanization": "Ausblick", + "example_sentence_native": "Von hier hat man einen wunderschönen Ausblick auf die Berge.", + "example_sentence_english": "From here you have a beautiful view of the mountains.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4708 + }, + { + "word": "Bakterium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bacterium", + "romanization": "Bakterium", + "example_sentence_native": "Bakterien sind winzige Lebewesen, die überall vorkommen.", + "example_sentence_english": "Bacteria are tiny living organisms that occur everywhere.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4709 + }, + { + "word": "Brötchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "roll (bread roll)", + "romanization": "Brötchen", + "example_sentence_native": "Ich esse ein Brötchen zum Frühstück.", + "example_sentence_english": "I eat a roll for breakfast.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4711 + }, + { + "word": "Busch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bush;shrub", + "romanization": "Busch", + "example_sentence_native": "Hinter dem Haus steht ein großer Busch.", + "example_sentence_english": "Behind the house stands a large bush.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4712 + }, + { + "word": "bürgerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bourgeois;civil;middle-class", + "romanization": "bürgerlich", + "example_sentence_native": "Er führt ein bürgerliches Leben.", + "example_sentence_english": "He leads a bourgeois life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4714 + }, + { + "word": "Campus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "campus", + "romanization": "Campus", + "example_sentence_native": "Der Campus der Universität ist sehr groß.", + "example_sentence_english": "The university campus is very large.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4715 + }, + { + "word": "Dating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dating", + "romanization": "Dating", + "example_sentence_native": "Online-Dating ist heutzutage sehr beliebt.", + "example_sentence_english": "Online dating is very popular nowadays.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4716 + }, + { + "word": "Depression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depression", + "romanization": "Depression", + "example_sentence_native": "Sie leidet unter einer schweren Depression.", + "example_sentence_english": "She suffers from severe depression.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4717 + }, + { + "word": "deuten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interpret;to indicate;to point", + "romanization": "deuten", + "example_sentence_native": "Wie soll ich diesen Traum deuten?", + "example_sentence_english": "How should I interpret this dream?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4718 + }, + { + "word": "Diskriminierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrimination", + "romanization": "Diskriminierung", + "example_sentence_native": "Diskriminierung ist in unserer Gesellschaft nicht akzeptabel.", + "example_sentence_english": "Discrimination is not acceptable in our society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4719 + }, + { + "word": "Dreh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trick;knack;turn", + "romanization": "Dreh", + "example_sentence_native": "Er hat den Dreh raus, wie man das macht.", + "example_sentence_english": "He's got the knack of how to do it.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4720 + }, + { + "word": "Durchbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breakthrough;rupture", + "romanization": "Durchbruch", + "example_sentence_native": "Die Wissenschaftler erzielten einen Durchbruch in der Forschung.", + "example_sentence_english": "The scientists achieved a breakthrough in research.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4721 + }, + { + "word": "einnehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "take;occupy;earn", + "romanization": "einnehmen", + "example_sentence_native": "Bitte nehmen Sie Ihre Medikamente regelmäßig ein.", + "example_sentence_english": "Please take your medication regularly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4722 + }, + { + "word": "Email", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "email", + "romanization": "Email", + "example_sentence_native": "Ich habe dir eine Email geschickt.", + "example_sentence_english": "I sent you an email.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4723 + }, + { + "word": "Focus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "focus", + "romanization": "Focus", + "example_sentence_native": "Er legte seinen Focus auf die Aufgabe.", + "example_sentence_english": "He put his focus on the task.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4725 + }, + { + "word": "Fun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fun", + "romanization": "Fun", + "example_sentence_native": "Wir hatten viel Fun auf der Party.", + "example_sentence_english": "We had a lot of fun at the party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4726 + }, + { + "word": "gestatten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allow;permit", + "romanization": "gestatten", + "example_sentence_native": "Gestatten Sie mir, mich vorzustellen.", + "example_sentence_english": "Allow me to introduce myself.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4727 + }, + { + "word": "gründlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thorough;meticulous", + "romanization": "gründlich", + "example_sentence_native": "Er hat die Aufgabe sehr gründlich erledigt.", + "example_sentence_english": "He completed the task very thoroughly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4728 + }, + { + "word": "Heide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heath;pagan", + "romanization": "Heide", + "example_sentence_native": "Die Heide ist eine Landschaft mit niedrigem Bewuchs.", + "example_sentence_english": "The heath is a landscape with low vegetation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 4729 + }, + { + "word": "Heide", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heath;moor", + "romanization": "Heide", + "example_sentence_native": "Wir wanderten durch die blühende Heide.", + "example_sentence_english": "We hiked through the blooming heath.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "word_frequency": 4729 + }, + { + "word": "Heizung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heating", + "romanization": "Heizung", + "example_sentence_native": "Die Heizung ist kaputt.", + "example_sentence_english": "The heating is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4730 + }, + { + "word": "Highlight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highlight", + "romanization": "Highlight", + "example_sentence_native": "Das Highlight des Abends war das Feuerwerk.", + "example_sentence_english": "The highlight of the evening was the fireworks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4732 + }, + { + "word": "hip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hip;trendy", + "romanization": "hip", + "example_sentence_native": "Das ist ein sehr hipper Laden.", + "example_sentence_english": "That is a very hip shop.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4733 + }, + { + "word": "Jungfrau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "virgin;Virgo", + "romanization": "Jungfrau", + "example_sentence_native": "Die Jungfrau ist ein Sternzeichen.", + "example_sentence_english": "Virgo is a zodiac sign.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4735 + }, + { + "word": "Kamerad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comrade;fellow", + "romanization": "Kamerad", + "example_sentence_native": "Er ist mein alter Kamerad aus der Schule.", + "example_sentence_english": "He is my old comrade from school.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4736 + }, + { + "word": "konfrontieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confront", + "romanization": "konfrontieren", + "example_sentence_native": "Wir müssen ihn mit der Wahrheit konfrontieren.", + "example_sentence_english": "We must confront him with the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4737 + }, + { + "word": "Konsum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consumption", + "romanization": "Konsum", + "example_sentence_native": "Der Konsum von Alkohol ist hier verboten.", + "example_sentence_english": "The consumption of alcohol is forbidden here.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4738 + }, + { + "word": "Krieger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warrior", + "romanization": "Krieger", + "example_sentence_native": "Der Krieger kämpfte mutig.", + "example_sentence_english": "The warrior fought bravely.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4739 + }, + { + "word": "künstlerisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artistic", + "romanization": "künstlerisch", + "example_sentence_native": "Sie hat eine sehr künstlerische Ader.", + "example_sentence_english": "She has a very artistic streak.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4741 + }, + { + "word": "Marsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "march", + "romanization": "Marsch", + "example_sentence_native": "Der lange Marsch war anstrengend.", + "example_sentence_english": "The long march was exhausting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4745 + }, + { + "word": "Meile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mile", + "romanization": "Meile", + "example_sentence_native": "Eine Meile sind etwa 1,6 Kilometer.", + "example_sentence_english": "One mile is about 1.6 kilometers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4746 + }, + { + "word": "missbrauchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abuse;to misuse", + "romanization": "missbrauchen", + "example_sentence_native": "Man sollte Vertrauen nicht missbrauchen.", + "example_sentence_english": "One should not abuse trust.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4748 + }, + { + "word": "Moschee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosque", + "romanization": "Moschee", + "example_sentence_native": "Die Moschee hat eine große Kuppel.", + "example_sentence_english": "The mosque has a large dome.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4749 + }, + { + "word": "Musical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "musical", + "romanization": "Musical", + "example_sentence_native": "Wir gehen heute Abend ins Musical.", + "example_sentence_english": "We are going to the musical tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4750 + }, + { + "word": "nichtmal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not even", + "romanization": "nichtmal", + "example_sentence_native": "Er hat nichtmal geantwortet.", + "example_sentence_english": "He didn't even answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4751 + }, + { + "word": "sanft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gentle;soft", + "romanization": "sanft", + "example_sentence_native": "Sie hat eine sanfte Stimme.", + "example_sentence_english": "She has a gentle voice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4756 + }, + { + "word": "Schädel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skull;cranium", + "romanization": "Schädel", + "example_sentence_native": "Der Schädel schützt das Gehirn.", + "example_sentence_english": "The skull protects the brain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4757 + }, + { + "word": "Schäfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shepherd", + "romanization": "Schäfer", + "example_sentence_native": "Der Schäfer hütet seine Schafe.", + "example_sentence_english": "The shepherd tends his sheep.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4758 + }, + { + "word": "Sehenswürdigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sight;tourist attraction", + "romanization": "Sehenswürdigkeit", + "example_sentence_native": "Berlin hat viele interessante Sehenswürdigkeiten.", + "example_sentence_english": "Berlin has many interesting sights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4759 + }, + { + "word": "Selbstmord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suicide", + "romanization": "Selbstmord", + "example_sentence_native": "Der Selbstmord des Künstlers schockierte die Öffentlichkeit.", + "example_sentence_english": "The artist's suicide shocked the public.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4760 + }, + { + "word": "Spanier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Spaniard", + "romanization": "Spanier", + "example_sentence_native": "Er ist ein Spanier aus Madrid.", + "example_sentence_english": "He is a Spaniard from Madrid.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4761 + }, + { + "word": "Standpunkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viewpoint", + "romanization": "Standpunkt", + "example_sentence_native": "Von meinem Standpunkt aus ist das nicht richtig.", + "example_sentence_english": "From my viewpoint, that's not right.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4762 + }, + { + "word": "Stellvertreter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy", + "romanization": "Stellvertreter", + "example_sentence_native": "Der Stellvertreter des Direktors übernahm die Leitung.", + "example_sentence_english": "The director's deputy took over the leadership.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4763 + }, + { + "word": "Sturz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fall", + "romanization": "Sturz", + "example_sentence_native": "Nach dem Sturz konnte er nicht mehr aufstehen.", + "example_sentence_english": "After the fall, he couldn't get up anymore.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4764 + }, + { + "word": "unentschieden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "undecided", + "romanization": "unentschieden", + "example_sentence_native": "Das Spiel endete unentschieden.", + "example_sentence_english": "The game ended in a draw.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4768 + }, + { + "word": "verbrennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burn (up);to incinerate", + "romanization": "verbrennen", + "example_sentence_native": "Er hat das alte Holz im Kamin verbrannt.", + "example_sentence_english": "He burned the old wood in the fireplace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4770 + }, + { + "word": "verhandeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to negotiate", + "romanization": "verhandeln", + "example_sentence_native": "Sie müssen den Preis verhandeln.", + "example_sentence_english": "They have to negotiate the price.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4771 + }, + { + "word": "Verteidiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defender;lawyer (defense)", + "romanization": "Verteidiger", + "example_sentence_native": "Der Verteidiger plädierte auf nicht schuldig.", + "example_sentence_english": "The defender pleaded not guilty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4772 + }, + { + "word": "vollenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to complete;to perfect", + "romanization": "vollenden", + "example_sentence_native": "Er konnte seine Arbeit nicht vollenden.", + "example_sentence_english": "He could not complete his work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4774 + }, + { + "word": "vorbehalten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reserve;to stipulate", + "romanization": "vorbehalten", + "example_sentence_native": "Wir behalten uns das Recht vor, Änderungen vorzunehmen.", + "example_sentence_english": "We reserve the right to make changes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "behalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4775 + }, + { + "word": "Weisheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wisdom", + "romanization": "Weisheit", + "example_sentence_native": "Alter bringt oft Weisheit mit sich.", + "example_sentence_english": "Age often brings wisdom with it.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4776 + }, + { + "word": "widersprechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contradict;to object", + "romanization": "widersprechen", + "example_sentence_native": "Ich muss Ihnen leider widersprechen.", + "example_sentence_english": "Unfortunately, I have to contradict you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4777 + }, + { + "word": "östlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eastern;easterly", + "romanization": "östlich", + "example_sentence_native": "Die Stadt liegt östlich des Flusses.", + "example_sentence_english": "The city lies east of the river.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4779 + }, + { + "word": "Überprüfung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "review;check", + "romanization": "Überprüfung", + "example_sentence_native": "Die Überprüfung der Dokumente dauerte Stunden.", + "example_sentence_english": "The review of the documents took hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4780 + }, + { + "word": "aggressiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aggressive", + "romanization": "aggressiv", + "example_sentence_native": "Sein Verhalten war sehr aggressiv.", + "example_sentence_english": "His behavior was very aggressive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4782 + }, + { + "word": "Ankündigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announcement", + "romanization": "Ankündigung", + "example_sentence_native": "Die Ankündigung kam überraschend.", + "example_sentence_english": "The announcement came as a surprise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4783 + }, + { + "word": "Antisemitismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemitism", + "romanization": "Antisemitismus", + "example_sentence_native": "Antisemitismus ist eine Form von Diskriminierung.", + "example_sentence_english": "Antisemitism is a form of discrimination.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4784 + }, + { + "word": "anwenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply;to use", + "romanization": "anwenden", + "example_sentence_native": "Man muss diese Regel richtig anwenden.", + "example_sentence_english": "One must apply this rule correctly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "wenden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4785 + }, + { + "word": "Anzug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suit", + "romanization": "Anzug", + "example_sentence_native": "Er trägt einen eleganten Anzug.", + "example_sentence_english": "He is wearing an elegant suit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4786 + }, + { + "word": "Asche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ash;ashes", + "romanization": "Asche", + "example_sentence_native": "Nach dem Brand blieb nur Asche übrig.", + "example_sentence_english": "After the fire, only ash remained.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4787 + }, + { + "word": "auffordern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to request;to ask;to challenge", + "romanization": "auffordern", + "example_sentence_native": "Sie forderte ihn zum Tanz auf.", + "example_sentence_english": "She asked him to dance.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "fordern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4788 + }, + { + "word": "Auftakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prelude;start;opening", + "romanization": "Auftakt", + "example_sentence_native": "Der Auftakt des Konzerts war beeindruckend.", + "example_sentence_english": "The opening of the concert was impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4789 + }, + { + "word": "ausfallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be cancelled", + "romanization": "ausfallen", + "example_sentence_native": "Das Konzert muss leider ausfallen.", + "example_sentence_english": "The concert unfortunately has to be cancelled.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4790 + }, + { + "word": "Ausgangspunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starting point", + "romanization": "Ausgangspunkt", + "example_sentence_native": "Der Ausgangspunkt unserer Reise war Berlin.", + "example_sentence_english": "The starting point of our journey was Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4791 + }, + { + "word": "befürchten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fear", + "romanization": "befürchten", + "example_sentence_native": "Ich befürchte, es wird regnen.", + "example_sentence_english": "I fear it will rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4792 + }, + { + "word": "bemerkenswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remarkable", + "romanization": "bemerkenswert", + "example_sentence_native": "Das ist eine bemerkenswerte Leistung.", + "example_sentence_english": "That is a remarkable achievement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4793 + }, + { + "word": "beten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pray", + "romanization": "beten", + "example_sentence_native": "Sie betet jeden Abend.", + "example_sentence_english": "She prays every evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4794 + }, + { + "word": "Betrachtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consideration", + "romanization": "Betrachtung", + "example_sentence_native": "Nach langer Betrachtung traf er eine Entscheidung.", + "example_sentence_english": "After long consideration, he made a decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4795 + }, + { + "word": "Biene", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bee", + "romanization": "Biene", + "example_sentence_native": "Eine Biene summte um die Blumen.", + "example_sentence_english": "A bee buzzed around the flowers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4796 + }, + { + "word": "brutal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brutal", + "romanization": "brutal", + "example_sentence_native": "Das war ein brutaler Angriff.", + "example_sentence_english": "That was a brutal attack.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4798 + }, + { + "word": "Bär", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bear", + "romanization": "Bär", + "example_sentence_native": "Der Bär schlief in seiner Höhle.", + "example_sentence_english": "The bear slept in its cave.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4799 + }, + { + "word": "chemisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemical", + "romanization": "chemisch", + "example_sentence_native": "Das ist eine chemische Reaktion.", + "example_sentence_english": "This is a chemical reaction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4800 + }, + { + "word": "Demokrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democrat", + "romanization": "Demokrat", + "example_sentence_native": "Er ist ein überzeugter Demokrat.", + "example_sentence_english": "He is a convinced democrat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4804 + }, + { + "word": "Dimension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dimension", + "romanization": "Dimension", + "example_sentence_native": "Das Problem hat eine neue Dimension erreicht.", + "example_sentence_english": "The problem has reached a new dimension.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4805 + }, + { + "word": "Doku", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentary (informal)", + "romanization": "Doku", + "example_sentence_native": "Ich schaue gerne Dokus über Tiere.", + "example_sentence_english": "I like watching documentaries about animals.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4806 + }, + { + "word": "eignen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be suitable", + "romanization": "eignen", + "example_sentence_native": "Dieses Buch eignet sich gut für Anfänger.", + "example_sentence_english": "This book is well suited for beginners.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4807 + }, + { + "word": "einleiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to initiate", + "romanization": "einleiten", + "example_sentence_native": "Die Regierung wird neue Maßnahmen einleiten.", + "example_sentence_english": "The government will introduce new measures.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "leiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4808 + }, + { + "word": "Einkauf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping", + "romanization": "Einkauf", + "example_sentence_native": "Ich muss noch den Einkauf erledigen.", + "example_sentence_english": "I still have to do the shopping.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4809 + }, + { + "word": "einsteigen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to get in;to board", + "romanization": "einsteigen", + "example_sentence_native": "Wir müssen schnell in den Zug einsteigen.", + "example_sentence_english": "We have to get on the train quickly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "steigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4810 + }, + { + "word": "Erhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preservation;maintenance", + "romanization": "Erhaltung", + "example_sentence_native": "Die Erhaltung alter Gebäude ist wichtig.", + "example_sentence_english": "The preservation of old buildings is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4811 + }, + { + "word": "Favorit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favorite", + "romanization": "Favorit", + "example_sentence_native": "Er ist der Favorit für das Rennen.", + "example_sentence_english": "He is the favorite for the race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4813 + }, + { + "word": "Food", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "food", + "romanization": "Food", + "example_sentence_native": "Ich mag Fast Food.", + "example_sentence_english": "I like fast food.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4816 + }, + { + "word": "frühzeitig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "early;premature", + "romanization": "frühzeitig", + "example_sentence_native": "Wir sollten frühzeitig abreisen.", + "example_sentence_english": "We should depart early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4819 + }, + { + "word": "genehmigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approve", + "romanization": "genehmigen", + "example_sentence_native": "Der Antrag muss noch genehmigt werden.", + "example_sentence_english": "The application still needs to be approved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4821 + }, + { + "word": "Glanz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shine;splendor", + "romanization": "Glanz", + "example_sentence_native": "Der Glanz des Diamanten war beeindruckend.", + "example_sentence_english": "The sparkle of the diamond was impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4822 + }, + { + "word": "Gottesdienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "church service", + "romanization": "Gottesdienst", + "example_sentence_native": "Wir gehen jeden Sonntag zum Gottesdienst.", + "example_sentence_english": "We go to church service every Sunday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4823 + }, + { + "word": "grundlegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamental", + "romanization": "grundlegend", + "example_sentence_native": "Das ist eine grundlegende Frage.", + "example_sentence_english": "That is a fundamental question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4824 + }, + { + "word": "Hardware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardware", + "romanization": "Hardware", + "example_sentence_native": "Die neue Hardware ist sehr leistungsfähig.", + "example_sentence_english": "The new hardware is very powerful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4825 + }, + { + "word": "Insekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insect", + "romanization": "Insekt", + "example_sentence_native": "Ein kleines Insekt krabbelte über den Tisch.", + "example_sentence_english": "A small insect crawled across the table.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4832 + }, + { + "word": "interpretieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interpret", + "romanization": "interpretieren", + "example_sentence_native": "Wie würdest du diesen Traum interpretieren?", + "example_sentence_english": "How would you interpret this dream?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4833 + }, + { + "word": "Knopf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "button", + "romanization": "Knopf", + "example_sentence_native": "Der Knopf an meinem Hemd ist abgefallen.", + "example_sentence_english": "The button on my shirt fell off.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4837 + }, + { + "word": "Kreuzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intersection", + "romanization": "Kreuzung", + "example_sentence_native": "Biegen Sie an der nächsten Kreuzung links ab.", + "example_sentence_english": "Turn left at the next intersection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4838 + }, + { + "word": "Kriminalität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminality;crime", + "romanization": "Kriminalität", + "example_sentence_native": "Die Kriminalität in der Stadt ist gesunken.", + "example_sentence_english": "Crime in the city has decreased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4839 + }, + { + "word": "Lebenslauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "CV;resume", + "romanization": "Lebenslauf", + "example_sentence_native": "Bitte senden Sie Ihren Lebenslauf an uns.", + "example_sentence_english": "Please send your CV to us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4840 + }, + { + "word": "Meinungsfreiheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freedom of speech;opinion", + "romanization": "Meinungsfreiheit", + "example_sentence_native": "Meinungsfreiheit ist ein Grundrecht.", + "example_sentence_english": "Freedom of speech is a fundamental right.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4841 + }, + { + "word": "Po", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bottom;buttock", + "romanization": "Po", + "example_sentence_native": "Er fiel auf seinen Po.", + "example_sentence_english": "He fell on his bottom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4845 + }, + { + "word": "Potenzial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potential", + "romanization": "Potenzial", + "example_sentence_native": "Dieses Projekt hat großes Potenzial.", + "example_sentence_english": "This project has great potential.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4846 + }, + { + "word": "problematisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "problematic", + "romanization": "problematisch", + "example_sentence_native": "Die Situation ist sehr problematisch.", + "example_sentence_english": "The situation is very problematic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4847 + }, + { + "word": "Rapper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rapper", + "romanization": "Rapper", + "example_sentence_native": "Der Rapper veröffentlichte ein neues Album.", + "example_sentence_english": "The rapper released a new album.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4848 + }, + { + "word": "Recherche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research;investigation", + "romanization": "Recherche", + "example_sentence_native": "Für meine Arbeit mache ich viel Recherche.", + "example_sentence_english": "For my work, I do a lot of research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4849 + }, + { + "word": "regieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to govern", + "romanization": "regieren", + "example_sentence_native": "Die Regierung muss das Land gut regieren.", + "example_sentence_english": "The government must govern the country well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4850 + }, + { + "word": "ringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wrestle;to struggle", + "romanization": "ringen", + "example_sentence_native": "Er musste mit seinen Gefühlen ringen.", + "example_sentence_english": "He had to struggle with his feelings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4851 + }, + { + "word": "selbstständig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "independent;self-employed", + "romanization": "selbstständig", + "example_sentence_native": "Er arbeitet jetzt selbstständig.", + "example_sentence_english": "He now works independently.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4854 + }, + { + "word": "Sonnenschein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunshine", + "romanization": "Sonnenschein", + "example_sentence_native": "Wir genießen den Sonnenschein im Garten.", + "example_sentence_english": "We are enjoying the sunshine in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4855 + }, + { + "word": "State", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state", + "romanization": "State", + "example_sentence_native": "Der State of the Art ist beeindruckend.", + "example_sentence_english": "The state of the art is impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4856 + }, + { + "word": "Statement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statement;declaration", + "romanization": "Statement", + "example_sentence_native": "Er gab ein offizielles Statement ab.", + "example_sentence_english": "He made an official statement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4857 + }, + { + "word": "Trio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trio", + "romanization": "Trio", + "example_sentence_native": "Das musikalische Trio spielte wunderschön.", + "example_sentence_english": "The musical trio played beautifully.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4859 + }, + { + "word": "Unterschrift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signature", + "romanization": "Unterschrift", + "example_sentence_native": "Bitte leisten Sie Ihre Unterschrift hier.", + "example_sentence_english": "Please provide your signature here.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4860 + }, + { + "word": "verdächtigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suspect", + "romanization": "verdächtigen", + "example_sentence_native": "Die Polizei verdächtigt ihn des Diebstahls.", + "example_sentence_english": "The police suspect him of theft.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4861 + }, + { + "word": "vergewaltigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rape", + "romanization": "vergewaltigen", + "example_sentence_native": "Er wurde beschuldigt, sie vergewaltigt zu haben.", + "example_sentence_english": "He was accused of having raped her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4862 + }, + { + "word": "Versand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shipping;dispatch", + "romanization": "Versand", + "example_sentence_native": "Der Versand der Ware erfolgt morgen.", + "example_sentence_english": "The shipping of the goods will take place tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4863 + }, + { + "word": "voraussichtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probable;expected;presumably", + "romanization": "voraussichtlich", + "example_sentence_native": "Die Lieferung erfolgt voraussichtlich nächste Woche.", + "example_sentence_english": "The delivery is expected next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4865 + }, + { + "word": "Weiterentwicklung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further development;evolution", + "romanization": "Weiterentwicklung", + "example_sentence_native": "Die Weiterentwicklung der Software ist entscheidend.", + "example_sentence_english": "The further development of the software is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4867 + }, + { + "word": "Wunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wound", + "romanization": "Wunde", + "example_sentence_native": "Die Wunde muss gereinigt werden.", + "example_sentence_english": "The wound must be cleaned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4868 + }, + { + "word": "Zimmermann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpenter", + "romanization": "Zimmermann", + "example_sentence_native": "Der Zimmermann repariert das Dach.", + "example_sentence_english": "The carpenter is repairing the roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4869 + }, + { + "word": "zukünftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "future;prospective", + "romanization": "zukünftig", + "example_sentence_native": "Wir müssen zukünftige Herausforderungen meistern.", + "example_sentence_english": "We must master future challenges.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4870 + }, + { + "word": "Ära", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "era", + "romanization": "Ära", + "example_sentence_native": "Wir leben in einer neuen Ära der Technologie.", + "example_sentence_english": "We live in a new era of technology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4871 + }, + { + "word": "üblicherweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usually;commonly", + "romanization": "üblicherweise", + "example_sentence_native": "Er kommt üblicherweise pünktlich.", + "example_sentence_english": "He usually arrives on time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4873 + }, + { + "word": "analysieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to analyze", + "romanization": "analysieren", + "example_sentence_native": "Wir müssen die Daten sorgfältig analysieren.", + "example_sentence_english": "We must carefully analyze the data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4875 + }, + { + "word": "anonym", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymous", + "romanization": "anonym", + "example_sentence_native": "Die Spende war anonym.", + "example_sentence_english": "The donation was anonymous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4876 + }, + { + "word": "Antrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drive;propulsion;motivation", + "romanization": "Antrieb", + "example_sentence_native": "Der Motor liefert den Antrieb für das Fahrzeug.", + "example_sentence_english": "The engine provides the propulsion for the vehicle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4877 + }, + { + "word": "Applaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "applause", + "romanization": "Applaus", + "example_sentence_native": "Nach der Vorstellung gab es lauten Applaus.", + "example_sentence_english": "After the performance, there was loud applause.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4878 + }, + { + "word": "befördern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transport;to promote", + "romanization": "befördern", + "example_sentence_native": "Die Firma wird ihn befördern.", + "example_sentence_english": "The company will promote him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4879 + }, + { + "word": "Beobachter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observer", + "romanization": "Beobachter", + "example_sentence_native": "Der Beobachter notierte alle Details.", + "example_sentence_english": "The observer noted all the details.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4881 + }, + { + "word": "beseitigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remove;to eliminate", + "romanization": "beseitigen", + "example_sentence_native": "Wir müssen das Problem beseitigen.", + "example_sentence_english": "We must eliminate the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4882 + }, + { + "word": "Dummheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupidity;foolishness", + "romanization": "Dummheit", + "example_sentence_native": "Seine Dummheit überraschte alle.", + "example_sentence_english": "His stupidity surprised everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4883 + }, + { + "word": "eingreifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intervene;to interfere", + "romanization": "eingreifen", + "example_sentence_native": "Die Polizei musste eingreifen.", + "example_sentence_english": "The police had to intervene.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "greifen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4885 + }, + { + "word": "einzel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "single;individual", + "romanization": "einzel", + "example_sentence_native": "Jedes einzelne Detail ist wichtig.", + "example_sentence_english": "Every single detail is important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4886 + }, + { + "word": "entgehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape;to avoid;to miss", + "romanization": "entgehen", + "example_sentence_native": "Er konnte der Gefahr nicht entgehen.", + "example_sentence_english": "He could not escape the danger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4887 + }, + { + "word": "erneuern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to renew;to renovate", + "romanization": "erneuern", + "example_sentence_native": "Wir müssen den Vertrag erneuern.", + "example_sentence_english": "We must renew the contract.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4888 + }, + { + "word": "erstrecken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extend;to stretch", + "romanization": "erstrecken", + "example_sentence_native": "Das Gebiet erstreckt sich über viele Kilometer.", + "example_sentence_english": "The area extends over many kilometers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4889 + }, + { + "word": "exklusiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive", + "romanization": "exklusiv", + "example_sentence_native": "Das ist ein exklusives Angebot.", + "example_sentence_english": "This is an exclusive offer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4890 + }, + { + "word": "explizit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "explicit", + "romanization": "explizit", + "example_sentence_native": "Er gab eine explizite Anweisung.", + "example_sentence_english": "He gave an explicit instruction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4891 + }, + { + "word": "Fassade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facade", + "romanization": "Fassade", + "example_sentence_native": "Die Fassade des Gebäudes ist sehr alt.", + "example_sentence_english": "The facade of the building is very old.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4892 + }, + { + "word": "fortsetzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue;to resume", + "romanization": "fortsetzen", + "example_sentence_native": "Wir müssen die Arbeit fortsetzen.", + "example_sentence_english": "We must continue the work.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fort", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4894 + }, + { + "word": "Fusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merger;fusion", + "romanization": "Fusion", + "example_sentence_native": "Die Fusion der beiden Unternehmen war erfolgreich.", + "example_sentence_english": "The merger of the two companies was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4895 + }, + { + "word": "Futter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feed;fodder", + "romanization": "Futter", + "example_sentence_native": "Das Tier braucht frisches Futter.", + "example_sentence_english": "The animal needs fresh feed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4896 + }, + { + "word": "drucken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to print", + "romanization": "drucken", + "example_sentence_native": "Ich muss das Dokument drucken.", + "example_sentence_english": "I need to print the document.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4897 + }, + { + "word": "geltend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valid;applicable", + "romanization": "geltend", + "example_sentence_native": "Die geltenden Regeln müssen beachtet werden.", + "example_sentence_english": "The applicable rules must be observed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4898 + }, + { + "word": "Grammatik", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grammar", + "romanization": "Grammatik", + "example_sentence_native": "Die deutsche Grammatik ist komplex.", + "example_sentence_english": "German grammar is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4899 + }, + { + "word": "Haltestelle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus stop", + "romanization": "Haltestelle", + "example_sentence_native": "Die nächste Haltestelle ist am Marktplatz.", + "example_sentence_english": "The next stop is at the market square.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4900 + }, + { + "word": "hardcore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hardcore", + "romanization": "hardcore", + "example_sentence_native": "Er ist ein Hardcore-Fan dieser Band.", + "example_sentence_english": "He is a hardcore fan of this band.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4902 + }, + { + "word": "hauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit", + "romanization": "hauen", + "example_sentence_native": "Er wollte den Nagel mit dem Hammer hauen.", + "example_sentence_english": "He wanted to hit the nail with the hammer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4903 + }, + { + "word": "Haustür", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "front door", + "romanization": "Haustür", + "example_sentence_native": "Bitte schließe die Haustür ab.", + "example_sentence_english": "Please lock the front door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4904 + }, + { + "word": "hinauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upwards", + "romanization": "hinauf", + "example_sentence_native": "Wir gingen die Treppe hinauf.", + "example_sentence_english": "We went up the stairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4905 + }, + { + "word": "Hubschrauber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helicopter", + "romanization": "Hubschrauber", + "example_sentence_native": "Ein Hubschrauber landete auf dem Dach.", + "example_sentence_english": "A helicopter landed on the roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4907 + }, + { + "word": "Innovation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovation", + "romanization": "Innovation", + "example_sentence_native": "Das Unternehmen ist bekannt für seine Innovationen.", + "example_sentence_english": "The company is known for its innovations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4909 + }, + { + "word": "juristisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal;juridical", + "romanization": "juristisch", + "example_sentence_native": "Er hat eine juristische Ausbildung.", + "example_sentence_english": "He has a legal education.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4911 + }, + { + "word": "Kohl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cabbage", + "romanization": "Kohl", + "example_sentence_native": "Ich mag keinen Kohl.", + "example_sentence_english": "I don't like cabbage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4912 + }, + { + "word": "Label", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "label", + "romanization": "Label", + "example_sentence_native": "Das Label auf der Flasche ist abgerissen.", + "example_sentence_english": "The label on the bottle is torn off.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4913 + }, + { + "word": "Lampe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lamp", + "romanization": "Lampe", + "example_sentence_native": "Die Lampe ist kaputt.", + "example_sentence_english": "The lamp is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4914 + }, + { + "word": "Massstab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scale;standard", + "romanization": "Massstab", + "example_sentence_native": "Dieser Massstab ist sehr genau.", + "example_sentence_english": "This scale is very precise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4918 + }, + { + "word": "Melodie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "melody", + "romanization": "Melodie", + "example_sentence_native": "Die Melodie ist wunderschön.", + "example_sentence_english": "The melody is beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4919 + }, + { + "word": "mutig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brave;courageous", + "romanization": "mutig", + "example_sentence_native": "Sie ist ein mutiges Mädchen.", + "example_sentence_english": "She is a brave girl.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4921 + }, + { + "word": "nebenan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "next door", + "romanization": "nebenan", + "example_sentence_native": "Mein Nachbar wohnt nebenan.", + "example_sentence_english": "My neighbor lives next door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4922 + }, + { + "word": "nürnberger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Nuremberg", + "romanization": "nürnberger", + "example_sentence_native": "Ich mag die nürnberger Würstchen.", + "example_sentence_english": "I like the Nuremberg sausages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4924 + }, + { + "word": "Oberbürgermeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lord Mayor", + "romanization": "Oberbürgermeister", + "example_sentence_native": "Der Oberbürgermeister hielt eine Rede.", + "example_sentence_english": "The Lord Mayor gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4925 + }, + { + "word": "Oberliga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top league (sports)", + "romanization": "Oberliga", + "example_sentence_native": "Sein Team spielt in der Oberliga.", + "example_sentence_english": "His team plays in the top league.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4926 + }, + { + "word": "Orgel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organ (musical instrument)", + "romanization": "Orgel", + "example_sentence_native": "Er spielt die Orgel in der Kirche.", + "example_sentence_english": "He plays the organ in the church.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4927 + }, + { + "word": "permanent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanent", + "romanization": "permanent", + "example_sentence_native": "Er hat eine permanente Anstellung gefunden.", + "example_sentence_english": "He found a permanent position.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4929 + }, + { + "word": "Player", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "player", + "romanization": "Player", + "example_sentence_native": "Der Player spielt Musik ab.", + "example_sentence_english": "The player plays music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4930 + }, + { + "word": "Potential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potential", + "romanization": "Potential", + "example_sentence_native": "Er hat viel Potential.", + "example_sentence_english": "He has a lot of potential.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4931 + }, + { + "word": "putzen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to clean", + "romanization": "putzen", + "example_sentence_native": "Ich muss mein Zimmer putzen.", + "example_sentence_english": "I have to clean my room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4932 + }, + { + "word": "Rohr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pipe;tube", + "romanization": "Rohr", + "example_sentence_native": "Das Wasser fließt durch das Rohr.", + "example_sentence_english": "The water flows through the pipe.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4933 + }, + { + "word": "salzburger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Salzburg", + "romanization": "salzburger", + "example_sentence_native": "Sie isst einen salzburger Nockerl.", + "example_sentence_english": "She is eating a Salzburg dumpling.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4934 + }, + { + "word": "Schlagzeile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headline", + "romanization": "Schlagzeile", + "example_sentence_native": "Die Schlagzeile war sehr reißerisch.", + "example_sentence_english": "The headline was very sensational.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4936 + }, + { + "word": "seinerzeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at that time;formerly", + "romanization": "seinerzeit", + "example_sentence_native": "Seinerzeit war das anders.", + "example_sentence_english": "At that time, it was different.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4937 + }, + { + "word": "sonntags", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on Sundays", + "romanization": "sonntags", + "example_sentence_native": "Sonntags schlafe ich lange.", + "example_sentence_english": "On Sundays, I sleep long.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4938 + }, + { + "word": "spazieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to walk;to stroll", + "romanization": "spazieren", + "example_sentence_native": "Wir gehen im Park spazieren.", + "example_sentence_english": "We go for a walk in the park.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4939 + }, + { + "word": "stillen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breastfeed;to satisfy;to calm", + "romanization": "stillen", + "example_sentence_native": "Die Mutter stillt ihr Baby.", + "example_sentence_english": "The mother breastfeeds her baby.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4942 + }, + { + "word": "Substanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substance", + "romanization": "Substanz", + "example_sentence_native": "Diese Substanz ist sehr gefährlich.", + "example_sentence_english": "This substance is very dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4943 + }, + { + "word": "Suppe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soup", + "romanization": "Suppe", + "example_sentence_native": "Ich esse gerne heiße Suppe im Winter.", + "example_sentence_english": "I like to eat hot soup in winter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4944 + }, + { + "word": "tagsüber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "during the day;daytime", + "romanization": "tagsüber", + "example_sentence_native": "Tagsüber arbeite ich im Büro.", + "example_sentence_english": "During the day, I work in the office.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4945 + }, + { + "word": "unterstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accuse;to subordinate;to shelter", + "romanization": "unterstellen", + "example_sentence_native": "Er wollte mir etwas Falsches unterstellen.", + "example_sentence_english": "He wanted to accuse me of something false.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4946 + }, + { + "word": "Vertretung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "representation;substitute;agency", + "romanization": "Vertretung", + "example_sentence_native": "Sie ist heute in Vertretung für ihren Kollegen hier.", + "example_sentence_english": "She is here today as a substitute for her colleague.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4948 + }, + { + "word": "verzeichnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to record;to register;to list", + "romanization": "verzeichnen", + "example_sentence_native": "Das Unternehmen konnte einen deutlichen Gewinn verzeichnen.", + "example_sentence_english": "The company was able to record a significant profit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4949 + }, + { + "word": "Verzicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waiver", + "romanization": "Verzicht", + "example_sentence_native": "Der Verzicht auf Zucker ist gut für die Gesundheit.", + "example_sentence_english": "The renunciation of sugar is good for health.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4950 + }, + { + "word": "Wiederholung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "repetition", + "romanization": "Wiederholung", + "example_sentence_native": "Die Wiederholung der Vokabeln ist wichtig.", + "example_sentence_english": "The repetition of the vocabulary is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4952 + }, + { + "word": "Währung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currency", + "romanization": "Währung", + "example_sentence_native": "Der Euro ist die Währung in vielen europäischen Ländern.", + "example_sentence_english": "The Euro is the currency in many European countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4957 + }, + { + "word": "zuordnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assign", + "romanization": "zuordnen", + "example_sentence_native": "Bitte ordnen Sie die Begriffe den Definitionen zu.", + "example_sentence_english": "Please assign the terms to the definitions.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "ordnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4958 + }, + { + "word": "Abgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax", + "romanization": "Abgabe", + "example_sentence_native": "Die Abgabe der Steuererklärung ist am Freitag.", + "example_sentence_english": "The submission of the tax declaration is on Friday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4959 + }, + { + "word": "Akteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "actor;participant", + "romanization": "Akteur", + "example_sentence_native": "Der Akteur spielte seine Rolle überzeugend.", + "example_sentence_english": "The actor played his role convincingly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4960 + }, + { + "word": "anal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "anal", + "romanization": "anal", + "example_sentence_native": "Die Studie untersuchte die analen Drüsen.", + "example_sentence_english": "The study examined the anal glands.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4962 + }, + { + "word": "angehören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to belong to;to be a member of", + "romanization": "angehören", + "example_sentence_native": "Er gehört einer politischen Partei an.", + "example_sentence_english": "He belongs to a political party.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "gehören", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4963 + }, + { + "word": "angesagt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trendy;announced;due", + "romanization": "angesagt", + "example_sentence_native": "Diese Bar ist gerade sehr angesagt.", + "example_sentence_english": "This bar is very trendy right now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4964 + }, + { + "word": "Anime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anime", + "romanization": "Anime", + "example_sentence_native": "Sie schaut gerne japanische Anime-Serien.", + "example_sentence_english": "She likes to watch Japanese anime series.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4965 + }, + { + "word": "Aufhebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abolition;cancellation;suspension", + "romanization": "Aufhebung", + "example_sentence_native": "Die Aufhebung des Gesetzes wurde beschlossen.", + "example_sentence_english": "The abolition of the law was decided.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4967 + }, + { + "word": "Aufstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellion;uprising", + "romanization": "Aufstand", + "example_sentence_native": "Der Aufstand wurde schnell niedergeschlagen.", + "example_sentence_english": "The rebellion was quickly suppressed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4968 + }, + { + "word": "Aufzeichnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recording;record;note", + "romanization": "Aufzeichnung", + "example_sentence_native": "Die Aufzeichnung des Konzerts war ausgezeichnet.", + "example_sentence_english": "The recording of the concert was excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4969 + }, + { + "word": "ausüben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exercise;to practice", + "romanization": "ausüben", + "example_sentence_native": "Er möchte seinen Beruf mit Leidenschaft ausüben.", + "example_sentence_english": "He wants to practice his profession with passion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "üben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4970 + }, + { + "word": "beantragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply for;to request", + "romanization": "beantragen", + "example_sentence_native": "Sie muss ein Visum beantragen.", + "example_sentence_english": "She has to apply for a visa.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4973 + }, + { + "word": "bedacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoughtful;careful", + "romanization": "bedacht", + "example_sentence_native": "Er ist immer sehr bedacht auf seine Worte.", + "example_sentence_english": "He is always very careful with his words.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4974 + }, + { + "word": "Benehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "behavior;conduct", + "romanization": "Benehmen", + "example_sentence_native": "Sein Benehmen war tadellos.", + "example_sentence_english": "His behavior was impeccable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4976 + }, + { + "word": "Blitz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lightning;flash", + "romanization": "Blitz", + "example_sentence_native": "Ein Blitz schlug in den Baum ein.", + "example_sentence_english": "A lightning bolt struck the tree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4978 + }, + { + "word": "Call", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "call (e.g.;phone call)", + "romanization": "Call", + "example_sentence_native": "Wir haben morgen einen wichtigen Call mit dem Kunden.", + "example_sentence_english": "We have an important call with the client tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4981 + }, + { + "word": "düsseldorfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Düsseldorf;Düsseldorfian", + "romanization": "düsseldorfer", + "example_sentence_native": "Er ist ein düsseldorfer Künstler.", + "example_sentence_english": "He is a Düsseldorfian artist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4985 + }, + { + "word": "einziehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move in;to collect", + "romanization": "einziehen", + "example_sentence_native": "Wir werden nächste Woche in unsere neue Wohnung einziehen.", + "example_sentence_english": "We will move into our new apartment next week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4986 + }, + { + "word": "entnehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take out;to extract;to infer", + "romanization": "entnehmen", + "example_sentence_native": "Man kann dieser Statistik wichtige Informationen entnehmen.", + "example_sentence_english": "One can infer important information from this statistic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4987 + }, + { + "word": "Ernte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harvest;crop", + "romanization": "Ernte", + "example_sentence_native": "Die Ernte war dieses Jahr sehr gut.", + "example_sentence_english": "The harvest was very good this year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4988 + }, + { + "word": "etablieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to establish", + "romanization": "etablieren", + "example_sentence_native": "Das Unternehmen konnte sich erfolgreich auf dem Markt etablieren.", + "example_sentence_english": "The company was able to successfully establish itself on the market.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4989 + }, + { + "word": "Evolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolution", + "romanization": "Evolution", + "example_sentence_native": "Die Evolution ist ein faszinierender Prozess.", + "example_sentence_english": "Evolution is a fascinating process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4990 + }, + { + "word": "Faschismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascism", + "romanization": "Faschismus", + "example_sentence_native": "Der Faschismus ist eine politische Ideologie.", + "example_sentence_english": "Fascism is a political ideology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4991 + }, + { + "word": "speichern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to save;to store", + "romanization": "speichern", + "example_sentence_native": "Vergiss nicht, die Datei zu speichern.", + "example_sentence_english": "Don't forget to save the file.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4993 + }, + { + "word": "gewährleisten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to guarantee;to ensure", + "romanization": "gewährleisten", + "example_sentence_native": "Wir müssen die Sicherheit aller gewährleisten.", + "example_sentence_english": "We must guarantee everyone's safety.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 4994 + }, + { + "word": "glücklicherweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortunately;luckily", + "romanization": "glücklicherweise", + "example_sentence_native": "Glücklicherweise hat es nicht geregnet.", + "example_sentence_english": "Fortunately, it didn't rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 4995 + }, + { + "word": "Grossmutter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandmother", + "romanization": "Grossmutter", + "example_sentence_native": "Meine Großmutter erzählt gerne Geschichten.", + "example_sentence_english": "My grandmother likes to tell stories.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 4996 + }, + { + "word": "indisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Indian", + "romanization": "indisch", + "example_sentence_native": "Ich mag indisches Essen sehr gerne.", + "example_sentence_english": "I like Indian food very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 4999 + }, + { + "word": "Internetseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "website", + "romanization": "Internetseite", + "example_sentence_native": "Die Internetseite bietet viele nützliche Informationen.", + "example_sentence_english": "The website offers a lot of useful information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5001 + }, + { + "word": "Jahreszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "season (of the year)", + "romanization": "Jahreszeit", + "example_sentence_native": "Meine Lieblingsjahreszeit ist der Sommer.", + "example_sentence_english": "My favorite season is summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5002 + }, + { + "word": "jedesmal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "every time", + "romanization": "jedesmal", + "example_sentence_native": "Jedesmal, wenn ich sie sehe, lächelt sie.", + "example_sentence_english": "Every time I see her, she smiles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5004 + }, + { + "word": "Jurist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lawyer;jurist", + "romanization": "Jurist", + "example_sentence_native": "Er arbeitet als Jurist in einer großen Kanzlei.", + "example_sentence_english": "He works as a lawyer in a large law firm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5006 + }, + { + "word": "Kater", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tomcat;hangover", + "romanization": "Kater", + "example_sentence_native": "Mein Kater schläft den ganzen Tag.", + "example_sentence_english": "My tomcat sleeps all day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5007 + }, + { + "word": "Kirchengemeinde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parish;church community", + "romanization": "Kirchengemeinde", + "example_sentence_native": "Die Kirchengemeinde organisiert viele soziale Projekte.", + "example_sentence_english": "The church community organizes many social projects.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5009 + }, + { + "word": "Kiste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box;crate", + "romanization": "Kiste", + "example_sentence_native": "Er hat die Bücher in eine Kiste gepackt.", + "example_sentence_english": "He packed the books into a box.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5010 + }, + { + "word": "Kommissar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commissioner;detective", + "romanization": "Kommissar", + "example_sentence_native": "Der Kommissar ermittelt in dem Fall.", + "example_sentence_english": "The detective is investigating the case.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5011 + }, + { + "word": "Komödie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comedy", + "romanization": "Komödie", + "example_sentence_native": "Wir haben gestern Abend eine lustige Komödie gesehen.", + "example_sentence_english": "We watched a funny comedy last night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5012 + }, + { + "word": "kriminell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criminal", + "romanization": "kriminell", + "example_sentence_native": "Das war ein krimineller Akt.", + "example_sentence_english": "That was a criminal act.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5013 + }, + { + "word": "kündigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resign;to give notice;to terminate", + "romanization": "kündigen", + "example_sentence_native": "Er musste seine Wohnung kündigen.", + "example_sentence_english": "He had to give notice on his apartment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5014 + }, + { + "word": "lagern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to store;to camp", + "romanization": "lagern", + "example_sentence_native": "Wir lagern die Möbel im Keller.", + "example_sentence_english": "We store the furniture in the basement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5015 + }, + { + "word": "Magie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magic", + "romanization": "Magie", + "example_sentence_native": "Die Magie des Moments war spürbar.", + "example_sentence_english": "The magic of the moment was palpable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5020 + }, + { + "word": "Materie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matter", + "romanization": "Materie", + "example_sentence_native": "Dunkle Materie ist schwer zu erforschen.", + "example_sentence_english": "Dark matter is difficult to research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5021 + }, + { + "word": "Mobilität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobility", + "romanization": "Mobilität", + "example_sentence_native": "Die Mobilität in der Stadt hat sich verbessert.", + "example_sentence_english": "Mobility in the city has improved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5024 + }, + { + "word": "nachfolgend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following;subsequent", + "romanization": "nachfolgend", + "example_sentence_native": "Die nachfolgenden Schritte sind entscheidend.", + "example_sentence_english": "The following steps are crucial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5025 + }, + { + "word": "Offensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive;attack", + "romanization": "Offensive", + "example_sentence_native": "Die Mannschaft startete eine neue Offensive.", + "example_sentence_english": "The team launched a new offensive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5027 + }, + { + "word": "optimal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimal", + "romanization": "optimal", + "example_sentence_native": "Das ist die optimale Lösung.", + "example_sentence_english": "That is the optimal solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5028 + }, + { + "word": "Panorama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panorama", + "romanization": "Panorama", + "example_sentence_native": "Wir genossen das atemberaubende Panorama.", + "example_sentence_english": "We enjoyed the breathtaking panorama.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5029 + }, + { + "word": "Premier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prime minister;premier", + "romanization": "Premier", + "example_sentence_native": "Der Premier hielt eine Rede.", + "example_sentence_english": "The prime minister gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5030 + }, + { + "word": "Problematik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "problematic nature;issue", + "romanization": "Problematik", + "example_sentence_native": "Die Problematik des Klimawandels ist komplex.", + "example_sentence_english": "The problematic nature of climate change is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5031 + }, + { + "word": "Präsenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presence", + "romanization": "Präsenz", + "example_sentence_native": "Seine Präsenz im Raum war unübersehbar.", + "example_sentence_english": "His presence in the room was unmistakable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5032 + }, + { + "word": "pur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pure", + "romanization": "pur", + "example_sentence_native": "Das ist reine Freude, pur.", + "example_sentence_english": "That is pure joy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5033 + }, + { + "word": "Rakete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocket", + "romanization": "Rakete", + "example_sentence_native": "Die Rakete startete erfolgreich.", + "example_sentence_english": "The rocket launched successfully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5034 + }, + { + "word": "Reichtum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wealth;richness", + "romanization": "Reichtum", + "example_sentence_native": "Der Reichtum der Natur ist unermesslich.", + "example_sentence_english": "The richness of nature is immeasurable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5035 + }, + { + "word": "Rezension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "review", + "romanization": "Rezension", + "example_sentence_native": "Ich habe eine gute Rezension über das Buch gelesen.", + "example_sentence_english": "I read a good review about the book.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5036 + }, + { + "word": "Rundfunk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broadcasting;radio", + "romanization": "Rundfunk", + "example_sentence_native": "Der Rundfunk sendet Nachrichten.", + "example_sentence_english": "The radio broadcasts news.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5038 + }, + { + "word": "Rückseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back;reverse side", + "romanization": "Rückseite", + "example_sentence_native": "Auf der Rückseite des Blattes steht die Antwort.", + "example_sentence_english": "The answer is on the back of the sheet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5039 + }, + { + "word": "Schaf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sheep", + "romanization": "Schaf", + "example_sentence_native": "Das Schaf grast auf der Wiese.", + "example_sentence_english": "The sheep grazes in the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5040 + }, + { + "word": "Schuljahr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school year", + "romanization": "Schuljahr", + "example_sentence_native": "Das Schuljahr beginnt im August.", + "example_sentence_english": "The school year begins in August.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5041 + }, + { + "word": "schwedisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Swedish", + "romanization": "schwedisch", + "example_sentence_native": "Sie spricht fließend Schwedisch.", + "example_sentence_english": "She speaks fluent Swedish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 5042 + }, + { + "word": "Sektor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sector", + "romanization": "Sektor", + "example_sentence_native": "Dieser Sektor ist für die Produktion zuständig.", + "example_sentence_english": "This sector is responsible for production.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5043 + }, + { + "word": "Senator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senator", + "romanization": "Senator", + "example_sentence_native": "Der Senator hielt eine Rede.", + "example_sentence_english": "The senator gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5044 + }, + { + "word": "Siegel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seal", + "romanization": "Siegel", + "example_sentence_native": "Das Dokument trägt ein offizielles Siegel.", + "example_sentence_english": "The document bears an official seal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5045 + }, + { + "word": "Spaziergang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "walk;stroll", + "romanization": "Spaziergang", + "example_sentence_native": "Wir machten einen Spaziergang im Park.", + "example_sentence_english": "We took a walk in the park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5046 + }, + { + "word": "Speicher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storage;memory;attic", + "romanization": "Speicher", + "example_sentence_native": "Der Computer hat viel Speicher.", + "example_sentence_english": "The computer has a lot of memory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5047 + }, + { + "word": "Stichwort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "keyword;cue", + "romanization": "Stichwort", + "example_sentence_native": "Notieren Sie sich die wichtigsten Stichwörter.", + "example_sentence_english": "Note down the most important keywords.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5048 + }, + { + "word": "Stürmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "striker;attacker", + "romanization": "Stürmer", + "example_sentence_native": "Der Stürmer schoss ein Tor.", + "example_sentence_english": "The striker scored a goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5049 + }, + { + "word": "sur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sour;tart", + "romanization": "sur", + "example_sentence_native": "Der Wein schmeckt etwas sur.", + "example_sentence_english": "The wine tastes a bit tart.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5050 + }, + { + "word": "Takt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beat;rhythm;measure", + "romanization": "Takt", + "example_sentence_native": "Der Dirigent gab den Takt an.", + "example_sentence_english": "The conductor set the beat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5051 + }, + { + "word": "telefonieren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to telephone;to call", + "romanization": "telefonieren", + "example_sentence_native": "Ich muss noch mit meiner Mutter telefonieren.", + "example_sentence_english": "I still need to call my mother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5052 + }, + { + "word": "Trikot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jersey;kit", + "romanization": "Trikot", + "example_sentence_native": "Er trägt sein Lieblingstrikot.", + "example_sentence_english": "He is wearing his favorite jersey.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5054 + }, + { + "word": "Verarbeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing;manufacturing", + "romanization": "Verarbeitung", + "example_sentence_native": "Die Verarbeitung der Daten dauert lange.", + "example_sentence_english": "The processing of the data takes a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5057 + }, + { + "word": "Verkehrsunfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic accident", + "romanization": "Verkehrsunfall", + "example_sentence_native": "Es gab einen Verkehrsunfall auf der Autobahn.", + "example_sentence_english": "There was a traffic accident on the highway.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5058 + }, + { + "word": "Verlierer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loser", + "romanization": "Verlierer", + "example_sentence_native": "Niemand möchte der Verlierer sein.", + "example_sentence_english": "Nobody wants to be the loser.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5059 + }, + { + "word": "Verspätung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delay", + "romanization": "Verspätung", + "example_sentence_native": "Die Verspätung des Zuges betrug zehn Minuten.", + "example_sentence_english": "The train's delay was ten minutes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5060 + }, + { + "word": "verwandt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "related", + "romanization": "verwandt", + "example_sentence_native": "Sind Sie mit ihr verwandt?", + "example_sentence_english": "Are you related to her?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5061 + }, + { + "word": "vorder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front;anterior", + "romanization": "vorder", + "example_sentence_native": "Die vordere Tür ist verschlossen.", + "example_sentence_english": "The front door is locked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5062 + }, + { + "word": "wachsend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growing", + "romanization": "wachsend", + "example_sentence_native": "Die wachsende Bevölkerung stellt eine Herausforderung dar.", + "example_sentence_english": "The growing population poses a challenge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5063 + }, + { + "word": "wecken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wake (someone)", + "romanization": "wecken", + "example_sentence_native": "Kannst du mich um sieben Uhr wecken?", + "example_sentence_english": "Can you wake me up at seven o'clock?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5064 + }, + { + "word": "Work", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work", + "romanization": "Work", + "example_sentence_native": "Ich habe viel Work zu erledigen.", + "example_sentence_english": "I have a lot of work to do.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5065 + }, + { + "word": "wöchentlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekly", + "romanization": "wöchentlich", + "example_sentence_native": "Wir treffen uns wöchentlich.", + "example_sentence_english": "We meet weekly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5066 + }, + { + "word": "Zivilist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civilian", + "romanization": "Zivilist", + "example_sentence_native": "Der Zivilist wurde bei dem Angriff verletzt.", + "example_sentence_english": "The civilian was injured in the attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5067 + }, + { + "word": "überfordern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overwhelm;to overtax", + "romanization": "überfordern", + "example_sentence_native": "Die Aufgabe überfordert ihn.", + "example_sentence_english": "The task overwhelms him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5068 + }, + { + "word": "Achse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "axis;axle", + "romanization": "Achse", + "example_sentence_native": "Die Erde dreht sich um ihre eigene Achse.", + "example_sentence_english": "The Earth rotates around its own axis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5069 + }, + { + "word": "afrikanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "African", + "romanization": "afrikanisch", + "example_sentence_native": "Er liebt afrikanische Musik.", + "example_sentence_english": "He loves African music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5070 + }, + { + "word": "Ampel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "traffic light", + "romanization": "Ampel", + "example_sentence_native": "Die Ampel ist rot.", + "example_sentence_english": "The traffic light is red.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5071 + }, + { + "word": "Anführer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader", + "romanization": "Anführer", + "example_sentence_native": "Er ist der Anführer der Gruppe.", + "example_sentence_english": "He is the leader of the group.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5072 + }, + { + "word": "aussuchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to choose;to select", + "romanization": "aussuchen", + "example_sentence_native": "Du kannst dir ein Buch aussuchen.", + "example_sentence_english": "You can choose a book.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "suchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5073 + }, + { + "word": "Begleiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "companion;escort", + "romanization": "Begleiter", + "example_sentence_native": "Er war mein Begleiter auf der Reise.", + "example_sentence_english": "He was my companion on the journey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5074 + }, + { + "word": "Beleidigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insult", + "romanization": "Beleidigung", + "example_sentence_native": "Das war eine Beleidigung für ihn.", + "example_sentence_english": "That was an insult to him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5075 + }, + { + "word": "Biologie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "biology", + "romanization": "Biologie", + "example_sentence_native": "Sie studiert Biologie an der Universität.", + "example_sentence_english": "She studies biology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5077 + }, + { + "word": "Case", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "case", + "romanization": "Case", + "example_sentence_native": "Das ist ein schwieriger Case.", + "example_sentence_english": "That is a difficult case.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5078 + }, + { + "word": "ehemals", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formerly;previously", + "romanization": "ehemals", + "example_sentence_native": "Ehemals war dies ein kleines Dorf.", + "example_sentence_english": "Formerly, this was a small village.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5081 + }, + { + "word": "einsam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lonely;solitary", + "romanization": "einsam", + "example_sentence_native": "Sie fühlte sich einsam.", + "example_sentence_english": "She felt lonely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5082 + }, + { + "word": "eintreten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enter;to step in", + "romanization": "eintreten", + "example_sentence_native": "Bitte treten Sie ein.", + "example_sentence_english": "Please come in.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5083 + }, + { + "word": "entwerfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to design;to draft", + "romanization": "entwerfen", + "example_sentence_native": "Er muss einen neuen Plan entwerfen.", + "example_sentence_english": "He has to design a new plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5084 + }, + { + "word": "Erholung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recovery;recreation;rest", + "romanization": "Erholung", + "example_sentence_native": "Sie braucht etwas Erholung.", + "example_sentence_english": "She needs some rest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5085 + }, + { + "word": "erstaunen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to astonish;to amaze", + "romanization": "erstaunen", + "example_sentence_native": "Seine Leistung erstaunte alle.", + "example_sentence_english": "His performance astonished everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5086 + }, + { + "word": "feucht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damp;moist", + "romanization": "feucht", + "example_sentence_native": "Die Luft ist heute sehr feucht.", + "example_sentence_english": "The air is very damp today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5088 + }, + { + "word": "Filiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "branch (of a company;store)", + "romanization": "Filiale", + "example_sentence_native": "Die neue Filiale öffnet nächste Woche.", + "example_sentence_english": "The new branch opens next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5089 + }, + { + "word": "Flieger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pilot;aviator", + "romanization": "Flieger", + "example_sentence_native": "Der Flieger landete sicher.", + "example_sentence_english": "The pilot landed safely.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5090 + }, + { + "word": "Fotograf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photographer", + "romanization": "Fotograf", + "example_sentence_native": "Der Fotograf machte viele Bilder.", + "example_sentence_english": "The photographer took many pictures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5092 + }, + { + "word": "ehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to honor;to respect", + "romanization": "ehren", + "example_sentence_native": "Wir ehren die Opfer.", + "example_sentence_english": "We honor the victims.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5094 + }, + { + "word": "gewaltig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enormous;mighty;tremendous", + "romanization": "gewaltig", + "example_sentence_native": "Das war ein gewaltiger Sturm.", + "example_sentence_english": "That was a tremendous storm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5095 + }, + { + "word": "Hausaufgabe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "homework", + "romanization": "Hausaufgabe", + "example_sentence_native": "Ich muss meine Hausaufgaben machen.", + "example_sentence_english": "I have to do my homework.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5099 + }, + { + "word": "heimisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "native;indigenous", + "romanization": "heimisch", + "example_sentence_native": "Der Vogel ist in dieser Region heimisch.", + "example_sentence_english": "The bird is native to this region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5100 + }, + { + "word": "Herrscher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruler;sovereign", + "romanization": "Herrscher", + "example_sentence_native": "Der Herrscher regierte das Land mit Weisheit.", + "example_sentence_english": "The ruler governed the country with wisdom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5101 + }, + { + "word": "Horizont", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizon", + "romanization": "Horizont", + "example_sentence_native": "Am Horizont verschwand die Sonne.", + "example_sentence_english": "The sun disappeared on the horizon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5102 + }, + { + "word": "Instanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instance;authority", + "romanization": "Instanz", + "example_sentence_native": "Die letzte Instanz hat entschieden.", + "example_sentence_english": "The final authority has decided.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5103 + }, + { + "word": "Japaner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Japanese person (male)", + "romanization": "Japaner", + "example_sentence_native": "Er ist ein Japaner.", + "example_sentence_english": "He is a Japanese person.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5106 + }, + { + "word": "Kommandant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commander", + "romanization": "Kommandant", + "example_sentence_native": "Der Kommandant gab den Befehl.", + "example_sentence_english": "The commander gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5107 + }, + { + "word": "kommunizieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to communicate", + "romanization": "kommunizieren", + "example_sentence_native": "Wir müssen besser kommunizieren.", + "example_sentence_english": "We need to communicate better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5108 + }, + { + "word": "Landtagswahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state election", + "romanization": "Landtagswahl", + "example_sentence_native": "Die nächste Landtagswahl findet im Herbst statt.", + "example_sentence_english": "The next state election will take place in autumn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5109 + }, + { + "word": "Läden", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shops;stores", + "romanization": "Läden", + "example_sentence_native": "Die Läden sind am Sonntag geschlossen.", + "example_sentence_english": "The shops are closed on Sunday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5110 + }, + { + "word": "nachmittags", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in the afternoon", + "romanization": "nachmittags", + "example_sentence_native": "Ich gehe nachmittags spazieren.", + "example_sentence_english": "I go for a walk in the afternoon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5111 + }, + { + "word": "Nacken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neck", + "romanization": "Nacken", + "example_sentence_native": "Er hat Schmerzen im Nacken.", + "example_sentence_english": "He has pain in his neck.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5112 + }, + { + "word": "Nagel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nail", + "romanization": "Nagel", + "example_sentence_native": "Ich habe mir einen Nagel in den Fuß getreten.", + "example_sentence_english": "I stepped on a nail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5113 + }, + { + "word": "parken", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to park", + "romanization": "parken", + "example_sentence_native": "Du kannst hier parken.", + "example_sentence_english": "You can park here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5114 + }, + { + "word": "pink", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pink", + "romanization": "pink", + "example_sentence_native": "Das Kleid ist pink.", + "example_sentence_english": "The dress is pink.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5116 + }, + { + "word": "Quartal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarter (of a year)", + "romanization": "Quartal", + "example_sentence_native": "Die Zahlen für das erste Quartal sind gut.", + "example_sentence_english": "The figures for the first quarter are good.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5117 + }, + { + "word": "Rahmenbedingung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "framework condition", + "romanization": "Rahmenbedingung", + "example_sentence_native": "Die Rahmenbedingungen für das Projekt sind klar definiert.", + "example_sentence_english": "The framework conditions for the project are clearly defined.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5118 + }, + { + "word": "Rap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rap (music)", + "romanization": "Rap", + "example_sentence_native": "Er hört gerne Rap-Musik.", + "example_sentence_english": "He likes to listen to rap music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5119 + }, + { + "word": "Sauerstoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oxygen", + "romanization": "Sauerstoff", + "example_sentence_native": "Pflanzen produzieren Sauerstoff.", + "example_sentence_english": "Plants produce oxygen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5121 + }, + { + "word": "Schach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chess", + "romanization": "Schach", + "example_sentence_native": "Er spielt gerne Schach.", + "example_sentence_english": "He likes to play chess.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5122 + }, + { + "word": "Space", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "space", + "romanization": "Space", + "example_sentence_native": "Der Space Shuttle flog ins All.", + "example_sentence_english": "The Space Shuttle flew into space.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5125 + }, + { + "word": "Steuerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "control;steering", + "romanization": "Steuerung", + "example_sentence_native": "Die Steuerung des Roboters ist sehr präzise.", + "example_sentence_english": "The control of the robot is very precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5126 + }, + { + "word": "systematisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "systematic", + "romanization": "systematisch", + "example_sentence_native": "Er arbeitet sehr systematisch.", + "example_sentence_english": "He works very systematically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5127 + }, + { + "word": "Talk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talk;discussion", + "romanization": "Talk", + "example_sentence_native": "Der Talk über das Thema war sehr interessant.", + "example_sentence_english": "The talk about the topic was very interesting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5128 + }, + { + "word": "Tweet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tweet", + "romanization": "Tweet", + "example_sentence_native": "Sie postete einen Tweet über ihre Reise.", + "example_sentence_english": "She posted a tweet about her trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5129 + }, + { + "word": "Uhrzeit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time (of day)", + "romanization": "Uhrzeit", + "example_sentence_native": "Kannst du mir bitte die Uhrzeit sagen?", + "example_sentence_english": "Can you please tell me the time?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5130 + }, + { + "word": "Umstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change;conversion;adjustment", + "romanization": "Umstellung", + "example_sentence_native": "Die Umstellung auf das neue System war schwierig.", + "example_sentence_english": "The conversion to the new system was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5131 + }, + { + "word": "unzählig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countless;innumerable", + "romanization": "unzählig", + "example_sentence_native": "Es gibt unzählige Sterne am Himmel.", + "example_sentence_english": "There are countless stars in the sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5132 + }, + { + "word": "Url", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "URL", + "romanization": "Url", + "example_sentence_native": "Bitte geben Sie die Url in Ihren Browser ein.", + "example_sentence_english": "Please enter the URL into your browser.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5133 + }, + { + "word": "vorherig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previous;prior", + "romanization": "vorherig", + "example_sentence_native": "Wir müssen die vorherigen Ergebnisse überprüfen.", + "example_sentence_english": "We need to check the previous results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5136 + }, + { + "word": "Weib", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "woman;female (often archaic or derogatory)", + "romanization": "Weib", + "example_sentence_native": "Im Mittelalter wurde das Weib oft als schwächer angesehen.", + "example_sentence_english": "In the Middle Ages, the woman was often seen as weaker.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5137 + }, + { + "word": "Wohlstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosperity;welfare", + "romanization": "Wohlstand", + "example_sentence_native": "Das Land strebt nach mehr Wohlstand für alle Bürger.", + "example_sentence_english": "The country strives for more prosperity for all citizens.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5139 + }, + { + "word": "Wohnraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living space", + "romanization": "Wohnraum", + "example_sentence_native": "Der Wohnraum in der Stadt ist teuer.", + "example_sentence_english": "Living space in the city is expensive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5140 + }, + { + "word": "zeitgleich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneous", + "romanization": "zeitgleich", + "example_sentence_native": "Die beiden Ereignisse fanden zeitgleich statt.", + "example_sentence_english": "The two events happened simultaneously.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5141 + }, + { + "word": "Zorn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrath;anger", + "romanization": "Zorn", + "example_sentence_native": "Sein Zorn war offensichtlich.", + "example_sentence_english": "His wrath was obvious.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5142 + }, + { + "word": "zusehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to watch;to look on", + "romanization": "zusehen", + "example_sentence_native": "Ich werde dir beim Kochen zusehen.", + "example_sentence_english": "I will watch you cook.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5143 + }, + { + "word": "zwischenzeitlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the meantime;temporarily", + "romanization": "zwischenzeitlich", + "example_sentence_native": "Zwischenzeitlich hat sich die Situation verbessert.", + "example_sentence_english": "In the meantime, the situation has improved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5144 + }, + { + "word": "überflüssig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superfluous;unnecessary", + "romanization": "überflüssig", + "example_sentence_native": "Diese Information ist überflüssig.", + "example_sentence_english": "This information is superfluous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5145 + }, + { + "word": "überwachen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to monitor;to supervise", + "romanization": "überwachen", + "example_sentence_native": "Die Polizei wird die Gegend überwachen.", + "example_sentence_english": "The police will monitor the area.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5146 + }, + { + "word": "Abbildung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustration;figure;depiction", + "romanization": "Abbildung", + "example_sentence_native": "Bitte sehen Sie sich die Abbildung auf Seite 5 an.", + "example_sentence_english": "Please look at the illustration on page 5.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5147 + }, + { + "word": "absetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depose;to drop off;to sell", + "romanization": "absetzen", + "example_sentence_native": "Er musste den Hut absetzen.", + "example_sentence_english": "He had to take off his hat.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5148 + }, + { + "word": "Abo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscription", + "romanization": "Abo", + "example_sentence_native": "Ich habe ein Abo für diese Zeitschrift.", + "example_sentence_english": "I have a subscription for this magazine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5149 + }, + { + "word": "abschliessend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concluding;final", + "romanization": "abschliessend", + "example_sentence_native": "Abschliessend möchte ich mich bedanken.", + "example_sentence_english": "In conclusion, I would like to thank you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5150 + }, + { + "word": "aktivieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to activate", + "romanization": "aktivieren", + "example_sentence_native": "Sie müssen Ihr Konto aktivieren.", + "example_sentence_english": "You need to activate your account.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5151 + }, + { + "word": "Aktivist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activist", + "romanization": "Aktivist", + "example_sentence_native": "Der Aktivist wurde verhaftet.", + "example_sentence_english": "The activist was arrested.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5152 + }, + { + "word": "ansetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to schedule;to apply", + "romanization": "ansetzen", + "example_sentence_native": "Wir müssen einen Termin ansetzen.", + "example_sentence_english": "We need to schedule an appointment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5154 + }, + { + "word": "antun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to do (something to someone);to inflict", + "romanization": "antun", + "example_sentence_native": "Was hast du dir nur angetan?", + "example_sentence_english": "What have you done to yourself?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "tun", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5155 + }, + { + "word": "Arbeitszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "working hours", + "romanization": "Arbeitszeit", + "example_sentence_native": "Meine Arbeitszeit ist von 9 bis 17 Uhr.", + "example_sentence_english": "My working hours are from 9 AM to 5 PM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5156 + }, + { + "word": "Audio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audio", + "romanization": "Audio", + "example_sentence_native": "Das Audio ist sehr klar.", + "example_sentence_english": "The audio is very clear.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5158 + }, + { + "word": "Ausweis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ID card;identification", + "romanization": "Ausweis", + "example_sentence_native": "Bitte zeigen Sie Ihren Ausweis.", + "example_sentence_english": "Please show your ID.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5159 + }, + { + "word": "befestigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fasten;to secure", + "romanization": "befestigen", + "example_sentence_native": "Sie müssen das Regal an der Wand befestigen.", + "example_sentence_english": "You must fasten the shelf to the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5160 + }, + { + "word": "betreffend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerning;regarding", + "romanization": "betreffend", + "example_sentence_native": "Bitte senden Sie alle betreffenden Dokumente.", + "example_sentence_english": "Please send all concerning documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5161 + }, + { + "word": "Bindung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bond;tie;binding", + "romanization": "Bindung", + "example_sentence_native": "Die Bindung zwischen Mutter und Kind ist sehr stark.", + "example_sentence_english": "The bond between mother and child is very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5162 + }, + { + "word": "Comeback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comeback", + "romanization": "Comeback", + "example_sentence_native": "Er feierte ein erfolgreiches Comeback nach seiner Verletzung.", + "example_sentence_english": "He celebrated a successful comeback after his injury.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5164 + }, + { + "word": "Diener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "servant", + "romanization": "Diener", + "example_sentence_native": "Der Diener öffnete die Tür für den Gast.", + "example_sentence_english": "The servant opened the door for the guest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5166 + }, + { + "word": "Display", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "display;screen", + "romanization": "Display", + "example_sentence_native": "Das Display meines Handys ist kaputt.", + "example_sentence_english": "The display of my phone is broken.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5167 + }, + { + "word": "Dissertation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissertation;thesis", + "romanization": "Dissertation", + "example_sentence_native": "Sie schreibt ihre Dissertation über mittelalterliche Geschichte.", + "example_sentence_english": "She is writing her dissertation on medieval history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5168 + }, + { + "word": "Drehbuch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screenplay;script", + "romanization": "Drehbuch", + "example_sentence_native": "Das Drehbuch für den neuen Film ist sehr gut.", + "example_sentence_english": "The screenplay for the new film is very good.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5169 + }, + { + "word": "Drucker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "printer", + "romanization": "Drucker", + "example_sentence_native": "Mein Drucker funktioniert nicht mehr.", + "example_sentence_english": "My printer doesn't work anymore.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5170 + }, + { + "word": "einhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comply with;to observe;to keep (a promise)", + "romanization": "einhalten", + "example_sentence_native": "Wir müssen die Regeln einhalten.", + "example_sentence_english": "We must comply with the rules.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5171 + }, + { + "word": "Einigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;settlement", + "romanization": "Einigung", + "example_sentence_native": "Die Parteien haben eine Einigung erzielt.", + "example_sentence_english": "The parties have reached an agreement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5172 + }, + { + "word": "Elend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misery;wretchedness", + "romanization": "Elend", + "example_sentence_native": "Viele Menschen leben in großem Elend.", + "example_sentence_english": "Many people live in great misery.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5173 + }, + { + "word": "engagiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "committed;engaged;dedicated", + "romanization": "engagiert", + "example_sentence_native": "Sie ist eine sehr engagierte Lehrerin.", + "example_sentence_english": "She is a very dedicated teacher.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5174 + }, + { + "word": "Enttäuschung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointment", + "romanization": "Enttäuschung", + "example_sentence_native": "Ihre Enttäuschung war groß.", + "example_sentence_english": "Her disappointment was great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5175 + }, + { + "word": "Erwerb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquisition;purchase;gain", + "romanization": "Erwerb", + "example_sentence_native": "Der Erwerb neuer Fähigkeiten ist wichtig.", + "example_sentence_english": "The acquisition of new skills is important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5177 + }, + { + "word": "Fass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrel;cask", + "romanization": "Fass", + "example_sentence_native": "Das Bier wird in großen Fässern gelagert.", + "example_sentence_english": "The beer is stored in large barrels.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5179 + }, + { + "word": "Festung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortress", + "romanization": "Festung", + "example_sentence_native": "Die alte Festung steht auf einem Hügel.", + "example_sentence_english": "The old fortress stands on a hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5180 + }, + { + "word": "Flüssigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liquid", + "romanization": "Flüssigkeit", + "example_sentence_native": "Diese Flüssigkeit ist nicht zum Trinken geeignet.", + "example_sentence_english": "This liquid is not suitable for drinking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5181 + }, + { + "word": "Gebet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prayer", + "romanization": "Gebet", + "example_sentence_native": "Er sprach ein stilles Gebet.", + "example_sentence_english": "He said a silent prayer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5182 + }, + { + "word": "fertigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manufacture;to produce", + "romanization": "fertigen", + "example_sentence_native": "Das Unternehmen fertigt hochwertige Möbel.", + "example_sentence_english": "The company manufactures high-quality furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5183 + }, + { + "word": "gegebenenfalls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "if necessary;where applicable", + "romanization": "gegebenenfalls", + "example_sentence_native": "Gegebenenfalls müssen wir den Plan ändern.", + "example_sentence_english": "If necessary, we might have to change the plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5184 + }, + { + "word": "Gegenzug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "countermove;in return", + "romanization": "Gegenzug", + "example_sentence_native": "Im Gegenzug erwarten wir Ihre Unterstützung.", + "example_sentence_english": "In return, we expect your support.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5185 + }, + { + "word": "Gesetzgeber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislator;lawmaker", + "romanization": "Gesetzgeber", + "example_sentence_native": "Der Gesetzgeber hat neue Regeln erlassen.", + "example_sentence_english": "The legislator has enacted new rules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5186 + }, + { + "word": "hintereinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one after another;in a row", + "romanization": "hintereinander", + "example_sentence_native": "Die Kinder liefen hintereinander her.", + "example_sentence_english": "The children ran one after another.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5187 + }, + { + "word": "Infektion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infection", + "romanization": "Infektion", + "example_sentence_native": "Er hat eine bakterielle Infektion.", + "example_sentence_english": "He has a bacterial infection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5189 + }, + { + "word": "irren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be mistaken;to err", + "romanization": "irren", + "example_sentence_native": "Ich glaube, Sie irren sich.", + "example_sentence_english": "I believe you are mistaken.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5191 + }, + { + "word": "Klappe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flap;lid;trapdoor", + "romanization": "Klappe", + "example_sentence_native": "Mach die Klappe zu!", + "example_sentence_english": "Close the flap!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5194 + }, + { + "word": "Klimaschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climate protection", + "romanization": "Klimaschutz", + "example_sentence_native": "Klimaschutz ist eine globale Herausforderung.", + "example_sentence_english": "Climate protection is a global challenge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5195 + }, + { + "word": "Kommunist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communist", + "romanization": "Kommunist", + "example_sentence_native": "Er wurde als Kommunist bezeichnet.", + "example_sentence_english": "He was called a communist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5196 + }, + { + "word": "Krimi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crime novel;show", + "romanization": "Krimi", + "example_sentence_native": "Ich lese gerne Krimis.", + "example_sentence_english": "I like reading crime novels.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5197 + }, + { + "word": "langjährig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long-standing;many years", + "romanization": "langjährig", + "example_sentence_native": "Sie haben eine langjährige Freundschaft.", + "example_sentence_english": "They have a long-standing friendship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5199 + }, + { + "word": "Läufer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "runner", + "romanization": "Läufer", + "example_sentence_native": "Der Läufer gewann das Rennen.", + "example_sentence_english": "The runner won the race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5200 + }, + { + "word": "Mutti", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mommy;mum", + "romanization": "Mutti", + "example_sentence_native": "Mutti hat uns Kuchen gebacken.", + "example_sentence_english": "Mommy baked us a cake.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5204 + }, + { + "word": "Priorität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priority", + "romanization": "Priorität", + "example_sentence_native": "Das hat höchste Priorität.", + "example_sentence_english": "That has the highest priority.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5207 + }, + { + "word": "Privatsphäre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privacy", + "romanization": "Privatsphäre", + "example_sentence_native": "Jeder hat ein Recht auf Privatsphäre.", + "example_sentence_english": "Everyone has a right to privacy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5208 + }, + { + "word": "Produzent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "producer", + "romanization": "Produzent", + "example_sentence_native": "Der Produzent stellte den neuen Film vor.", + "example_sentence_english": "The producer introduced the new film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5209 + }, + { + "word": "realistisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "realistic", + "romanization": "realistisch", + "example_sentence_native": "Das ist ein realistisches Ziel.", + "example_sentence_english": "That is a realistic goal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5210 + }, + { + "word": "Reinigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleaning;dry cleaner's", + "romanization": "Reinigung", + "example_sentence_native": "Ich bringe meine Kleidung zur Reinigung.", + "example_sentence_english": "I'm taking my clothes to the dry cleaner's.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5211 + }, + { + "word": "Schaffung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creation;establishment", + "romanization": "Schaffung", + "example_sentence_native": "Die Schaffung neuer Arbeitsplätze ist wichtig.", + "example_sentence_english": "The creation of new jobs is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5212 + }, + { + "word": "schämen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be ashamed;to feel ashamed", + "romanization": "schämen", + "example_sentence_native": "Er schämt sich für seine Fehler.", + "example_sentence_english": "He is ashamed of his mistakes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5215 + }, + { + "word": "skeptisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skeptical", + "romanization": "skeptisch", + "example_sentence_native": "Sie war skeptisch gegenüber dem Vorschlag.", + "example_sentence_english": "She was skeptical about the proposal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5216 + }, + { + "word": "Sozialdemokrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social democrat", + "romanization": "Sozialdemokrat", + "example_sentence_native": "Er ist ein überzeugter Sozialdemokrat.", + "example_sentence_english": "He is a convinced social democrat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5217 + }, + { + "word": "sozialistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialist", + "romanization": "sozialistisch", + "example_sentence_native": "Die Partei vertritt sozialistische Ideen.", + "example_sentence_english": "The party represents socialist ideas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5218 + }, + { + "word": "Steuerzahler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taxpayer", + "romanization": "Steuerzahler", + "example_sentence_native": "Die Steuerzahler finanzieren den Staat.", + "example_sentence_english": "The taxpayers finance the state.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5219 + }, + { + "word": "sächsisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saxon", + "romanization": "sächsisch", + "example_sentence_native": "Er spricht einen sächsischen Dialekt.", + "example_sentence_english": "He speaks a Saxon dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5220 + }, + { + "word": "Taktik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tactic", + "romanization": "Taktik", + "example_sentence_native": "Die neue Taktik war sehr erfolgreich.", + "example_sentence_english": "The new tactic was very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5221 + }, + { + "word": "Thread", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thread", + "romanization": "Thread", + "example_sentence_native": "Ich habe den ganzen Thread gelesen.", + "example_sentence_english": "I read the entire thread.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5222 + }, + { + "word": "Thron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "throne", + "romanization": "Thron", + "example_sentence_native": "Der König saß auf seinem Thron.", + "example_sentence_english": "The king sat on his throne.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5223 + }, + { + "word": "verbergen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hide", + "romanization": "verbergen", + "example_sentence_native": "Er konnte seine Angst nicht verbergen.", + "example_sentence_english": "He could not hide his fear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5227 + }, + { + "word": "Verbrauch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumption", + "romanization": "Verbrauch", + "example_sentence_native": "Der Verbrauch von Wasser ist gestiegen.", + "example_sentence_english": "The consumption of water has increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5228 + }, + { + "word": "vergeblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in vain", + "romanization": "vergeblich", + "example_sentence_native": "Alle ihre Bemühungen waren vergeblich.", + "example_sentence_english": "All her efforts were in vain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5229 + }, + { + "word": "Vorlesung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lecture", + "romanization": "Vorlesung", + "example_sentence_native": "Die Vorlesung beginnt um 10 Uhr.", + "example_sentence_english": "The lecture starts at 10 o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5232 + }, + { + "word": "weitermachen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to continue", + "romanization": "weitermachen", + "example_sentence_native": "Wir müssen weitermachen, auch wenn es schwer ist.", + "example_sentence_english": "We must continue, even if it's difficult.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5235 + }, + { + "word": "wirksam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effective", + "romanization": "wirksam", + "example_sentence_native": "Das Medikament ist sehr wirksam.", + "example_sentence_english": "The medication is very effective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5236 + }, + { + "word": "Workshop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "workshop", + "romanization": "Workshop", + "example_sentence_native": "Ich besuche einen Workshop über Fotografie.", + "example_sentence_english": "I am attending a workshop on photography.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5237 + }, + { + "word": "Yorker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "New Yorker (adj.)", + "romanization": "Yorker", + "example_sentence_native": "Er hat einen typisch Yorker Akzent.", + "example_sentence_english": "He has a typical New Yorker accent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5239 + }, + { + "word": "zueinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to each other", + "romanization": "zueinander", + "example_sentence_native": "Sie müssen zueinander finden.", + "example_sentence_english": "They need to find each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5240 + }, + { + "word": "überfallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mug;to raid", + "romanization": "überfallen", + "example_sentence_native": "Die Bank wurde letzte Nacht überfallen.", + "example_sentence_english": "The bank was robbed last night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5241 + }, + { + "word": "abbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dismantle;to reduce", + "romanization": "abbauen", + "example_sentence_native": "Sie müssen Stress abbauen.", + "example_sentence_english": "They need to reduce stress.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5242 + }, + { + "word": "absurd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absurd", + "romanization": "absurd", + "example_sentence_native": "Das ist eine absurde Idee.", + "example_sentence_english": "That is an absurd idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5243 + }, + { + "word": "Abwesenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absence", + "romanization": "Abwesenheit", + "example_sentence_native": "Seine Abwesenheit wurde bemerkt.", + "example_sentence_english": "His absence was noticed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5244 + }, + { + "word": "Akzeptanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceptance", + "romanization": "Akzeptanz", + "example_sentence_native": "Die Akzeptanz des Vorschlags war hoch.", + "example_sentence_english": "The acceptance of the proposal was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5245 + }, + { + "word": "angegeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stated;specified", + "romanization": "angegeben", + "example_sentence_native": "Die angegebenen Daten sind korrekt.", + "example_sentence_english": "The stated data is correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5248 + }, + { + "word": "Angreifer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attacker", + "romanization": "Angreifer", + "example_sentence_native": "Der Angreifer wurde gefasst.", + "example_sentence_english": "The attacker was caught.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5249 + }, + { + "word": "Anweisung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instruction;directive", + "romanization": "Anweisung", + "example_sentence_native": "Bitte folgen Sie den Anweisungen.", + "example_sentence_english": "Please follow the instructions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5250 + }, + { + "word": "Aufsatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "essay;article", + "romanization": "Aufsatz", + "example_sentence_native": "Ich muss einen Aufsatz schreiben.", + "example_sentence_english": "I have to write an essay.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5251 + }, + { + "word": "austragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliver;to carry out", + "romanization": "austragen", + "example_sentence_native": "Der Postbote wird die Briefe austragen.", + "example_sentence_english": "The postman will deliver the letters.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5252 + }, + { + "word": "Benutzer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "user", + "romanization": "Benutzer", + "example_sentence_native": "Der Benutzer hat sich angemeldet.", + "example_sentence_english": "The user has logged in.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5253 + }, + { + "word": "Besonderheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiarity;special feature", + "romanization": "Besonderheit", + "example_sentence_native": "Jede Region hat ihre Besonderheiten.", + "example_sentence_english": "Every region has its peculiarities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5254 + }, + { + "word": "bewirken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause;to bring about", + "romanization": "bewirken", + "example_sentence_native": "Seine Worte bewirkten eine große Veränderung.", + "example_sentence_english": "His words caused a big change.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5255 + }, + { + "word": "Brett", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "board;plank", + "romanization": "Brett", + "example_sentence_native": "Er sägte ein Brett durch.", + "example_sentence_english": "He sawed through a board.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5257 + }, + { + "word": "Buche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beech (tree)", + "romanization": "Buche", + "example_sentence_native": "Die Buche ist ein häufiger Baum in Deutschland.", + "example_sentence_english": "The beech is a common tree in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5258 + }, + { + "word": "Bucht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bay;cove", + "romanization": "Bucht", + "example_sentence_native": "Wir segelten in eine kleine Bucht.", + "example_sentence_english": "We sailed into a small bay.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5259 + }, + { + "word": "Cannabis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannabis", + "romanization": "Cannabis", + "example_sentence_native": "Der Anbau von Cannabis ist in vielen Ländern illegal.", + "example_sentence_english": "The cultivation of cannabis is illegal in many countries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5261 + }, + { + "word": "Captain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain", + "romanization": "Captain", + "example_sentence_native": "Der Captain des Schiffes gab den Befehl.", + "example_sentence_english": "The captain of the ship gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5262 + }, + { + "word": "Challenge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenge", + "romanization": "Challenge", + "example_sentence_native": "Das war eine große Challenge für das Team.", + "example_sentence_english": "That was a big challenge for the team.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5263 + }, + { + "word": "Channel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "channel", + "romanization": "Channel", + "example_sentence_native": "Welchen Channel schaust du gerade?", + "example_sentence_english": "Which channel are you watching right now?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5264 + }, + { + "word": "Chip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chip", + "romanization": "Chip", + "example_sentence_native": "Ich esse gerne Chips zum Film.", + "example_sentence_english": "I like to eat chips with the movie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5265 + }, + { + "word": "Deckung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cover;coverage", + "romanization": "Deckung", + "example_sentence_native": "Such Deckung!", + "example_sentence_english": "Find cover!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5266 + }, + { + "word": "Dichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "density", + "romanization": "Dichte", + "example_sentence_native": "Die Dichte des Materials ist sehr hoch.", + "example_sentence_english": "The density of the material is very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5267 + }, + { + "word": "Diplom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diploma", + "romanization": "Diplom", + "example_sentence_native": "Sie hat ihr Diplom mit Auszeichnung bestanden.", + "example_sentence_english": "She passed her diploma with distinction.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5269 + }, + { + "word": "Division", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "division", + "romanization": "Division", + "example_sentence_native": "Die Division ist eine der vier Grundrechenarten.", + "example_sentence_english": "Division is one of the four basic arithmetic operations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5270 + }, + { + "word": "drängen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to urge;to push;to press", + "romanization": "drängen", + "example_sentence_native": "Er drängte mich, schneller zu sein.", + "example_sentence_english": "He urged me to be faster.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5271 + }, + { + "word": "Dynamik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamics", + "romanization": "Dynamik", + "example_sentence_native": "Die Dynamik des Marktes ist schwer vorherzusagen.", + "example_sentence_english": "The dynamics of the market are hard to predict.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5272 + }, + { + "word": "entstanden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arisen;originated;developed", + "romanization": "entstanden", + "example_sentence_native": "Die entstandene Situation war unerwartet.", + "example_sentence_english": "The arisen situation was unexpected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5274 + }, + { + "word": "Erdgeschoss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ground floor", + "romanization": "Erdgeschoss", + "example_sentence_native": "Meine Wohnung ist im Erdgeschoss.", + "example_sentence_english": "My apartment is on the ground floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5275 + }, + { + "word": "Family", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family", + "romanization": "Family", + "example_sentence_native": "Meine Family kommt am Wochenende zu Besuch.", + "example_sentence_english": "My family is visiting this weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5276 + }, + { + "word": "folglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequently;therefore", + "romanization": "folglich", + "example_sentence_native": "Er war krank, folglich konnte er nicht kommen.", + "example_sentence_english": "He was sick, consequently he couldn't come.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5277 + }, + { + "word": "fraglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questionable;doubtful", + "romanization": "fraglich", + "example_sentence_native": "Es ist fraglich, ob das Projekt erfolgreich sein wird.", + "example_sentence_english": "It is questionable whether the project will be successful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5278 + }, + { + "word": "Gabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gift;talent;dose", + "romanization": "Gabe", + "example_sentence_native": "Sie hat eine besondere Gabe für Musik.", + "example_sentence_english": "She has a special gift for music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5279 + }, + { + "word": "Horror", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horror", + "romanization": "Horror", + "example_sentence_native": "Der Film war voller Horror.", + "example_sentence_english": "The film was full of horror.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5280 + }, + { + "word": "Kissen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pillow", + "romanization": "Kissen", + "example_sentence_native": "Ich brauche ein weiches Kissen.", + "example_sentence_english": "I need a soft pillow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5285 + }, + { + "word": "Komponist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composer", + "romanization": "Komponist", + "example_sentence_native": "Beethoven war ein berühmter Komponist.", + "example_sentence_english": "Beethoven was a famous composer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5286 + }, + { + "word": "kontinuierlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous", + "romanization": "kontinuierlich", + "example_sentence_native": "Der Fortschritt war kontinuierlich.", + "example_sentence_english": "The progress was continuous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5287 + }, + { + "word": "Leber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liver", + "romanization": "Leber", + "example_sentence_native": "Die Leber ist ein wichtiges Organ.", + "example_sentence_english": "The liver is an important organ.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5289 + }, + { + "word": "Londoner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Londoner (adj.)", + "romanization": "Londoner", + "example_sentence_native": "Die Londoner U-Bahn ist sehr alt.", + "example_sentence_english": "The Londoner subway is very old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5290 + }, + { + "word": "Nachfolge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "succession", + "romanization": "Nachfolge", + "example_sentence_native": "Die Nachfolge des Königs ist unklar.", + "example_sentence_english": "The succession of the king is unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5293 + }, + { + "word": "namentlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "namely", + "romanization": "namentlich", + "example_sentence_native": "Er nannte namentlich alle Beteiligten.", + "example_sentence_english": "He named all participants by name.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5294 + }, + { + "word": "Organ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organ", + "romanization": "Organ", + "example_sentence_native": "Das Herz ist ein wichtiges Organ.", + "example_sentence_english": "The heart is an important organ.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5296 + }, + { + "word": "Pension", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guesthouse", + "romanization": "Pension", + "example_sentence_native": "Wir übernachten in einer kleinen Pension.", + "example_sentence_english": "We are staying overnight in a small guesthouse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5297 + }, + { + "word": "Pfosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "post", + "romanization": "Pfosten", + "example_sentence_native": "Der Ball traf den Pfosten.", + "example_sentence_english": "The ball hit the post.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5298 + }, + { + "word": "Porto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "postage", + "romanization": "Porto", + "example_sentence_native": "Wie hoch ist das Porto für diesen Brief?", + "example_sentence_english": "How much is the postage for this letter?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5299 + }, + { + "word": "Rechtsprechung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisprudence", + "romanization": "Rechtsprechung", + "example_sentence_native": "Die Rechtsprechung in diesem Fall war umstritten.", + "example_sentence_english": "The jurisprudence in this case was controversial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5302 + }, + { + "word": "Ruhr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dysentery", + "romanization": "Ruhr", + "example_sentence_native": "Er litt an der Ruhr.", + "example_sentence_english": "He suffered from dysentery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5303 + }, + { + "word": "Rückgang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decline", + "romanization": "Rückgang", + "example_sentence_native": "Es gab einen deutlichen Rückgang der Verkaufszahlen.", + "example_sentence_english": "There was a significant decline in sales figures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5305 + }, + { + "word": "Rückstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backlog", + "romanization": "Rückstand", + "example_sentence_native": "Wir haben einen Rückstand bei der Bearbeitung der Bestellungen.", + "example_sentence_english": "We have a backlog in processing orders.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5306 + }, + { + "word": "rückwärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backwards", + "romanization": "rückwärts", + "example_sentence_native": "Er ging rückwärts, um die Tür zu öffnen.", + "example_sentence_english": "He walked backwards to open the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5307 + }, + { + "word": "Sauna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauna", + "romanization": "Sauna", + "example_sentence_native": "Nach dem Sport gehen wir in die Sauna.", + "example_sentence_english": "After sports, we go to the sauna.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5308 + }, + { + "word": "Schiedsrichter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "referee", + "romanization": "Schiedsrichter", + "example_sentence_native": "Der Schiedsrichter pfiff das Spiel ab.", + "example_sentence_english": "The referee blew the whistle to end the game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5309 + }, + { + "word": "Schreiber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writer", + "romanization": "Schreiber", + "example_sentence_native": "Der Schreiber notierte alle wichtigen Punkte.", + "example_sentence_english": "The clerk noted all important points.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5310 + }, + { + "word": "Speed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed", + "romanization": "Speed", + "example_sentence_native": "Die maximale Speed auf dieser Straße ist 100 km/h.", + "example_sentence_english": "The maximum speed on this road is 100 km/h.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5311 + }, + { + "word": "Stau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traffic jam", + "romanization": "Stau", + "example_sentence_native": "Auf der Autobahn gibt es einen langen Stau.", + "example_sentence_english": "There is a long traffic jam on the highway.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5312 + }, + { + "word": "Tageszeitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daily newspaper", + "romanization": "Tageszeitung", + "example_sentence_native": "Ich lese jeden Morgen die Tageszeitung.", + "example_sentence_english": "I read the daily newspaper every morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5314 + }, + { + "word": "Tastatur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "keyboard", + "romanization": "Tastatur", + "example_sentence_native": "Meine Tastatur ist kaputt.", + "example_sentence_english": "My keyboard is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5315 + }, + { + "word": "Tomate", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tomato", + "romanization": "Tomate", + "example_sentence_native": "Ich brauche eine Tomate für den Salat.", + "example_sentence_english": "I need a tomato for the salad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5316 + }, + { + "word": "Tragödie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragedy", + "romanization": "Tragödie", + "example_sentence_native": "Das war eine große Tragödie für die ganze Familie.", + "example_sentence_english": "That was a great tragedy for the whole family.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5317 + }, + { + "word": "Trailer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer", + "romanization": "Trailer", + "example_sentence_native": "Ich habe den Trailer zum neuen Film gesehen.", + "example_sentence_english": "I saw the trailer for the new movie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5318 + }, + { + "word": "transportieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transport", + "romanization": "transportieren", + "example_sentence_native": "Wir müssen die Waren zum Hafen transportieren.", + "example_sentence_english": "We need to transport the goods to the harbor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5319 + }, + { + "word": "Umkreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vicinity;radius", + "romanization": "Umkreis", + "example_sentence_native": "Im Umkreis von fünf Kilometern gibt es keine Tankstelle.", + "example_sentence_english": "There is no gas station within a five-kilometer radius.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5321 + }, + { + "word": "umstritten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversial;disputed", + "romanization": "umstritten", + "example_sentence_native": "Das ist ein umstrittenes Thema.", + "example_sentence_english": "That is a controversial topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5322 + }, + { + "word": "Untergrund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underground;subsoil", + "romanization": "Untergrund", + "example_sentence_native": "Der Untergrund ist sehr feucht.", + "example_sentence_english": "The subsoil is very damp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5323 + }, + { + "word": "urban", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban", + "romanization": "urban", + "example_sentence_native": "Sie bevorzugt das urbane Leben.", + "example_sentence_english": "She prefers urban life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5324 + }, + { + "word": "verkünden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to announce;to proclaim", + "romanization": "verkünden", + "example_sentence_native": "Der Sprecher wird die Ergebnisse bald verkünden.", + "example_sentence_english": "The speaker will announce the results soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5325 + }, + { + "word": "Verzeichnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directory;list;index", + "romanization": "Verzeichnis", + "example_sentence_native": "Bitte überprüfen Sie das Verzeichnis für weitere Informationen.", + "example_sentence_english": "Please check the directory for more information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5326 + }, + { + "word": "vorliegend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "present;existing;available", + "romanization": "vorliegend", + "example_sentence_native": "Die vorliegenden Daten bestätigen unsere Hypothese.", + "example_sentence_english": "The present data confirms our hypothesis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5328 + }, + { + "word": "Witwe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widow", + "romanization": "Witwe", + "example_sentence_native": "Die alte Witwe lebt allein.", + "example_sentence_english": "The old widow lives alone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5331 + }, + { + "word": "zocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gamble;to game (informal)", + "romanization": "zocken", + "example_sentence_native": "Er zockt gerne Videospiele.", + "example_sentence_english": "He likes to play video games.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5332 + }, + { + "word": "anführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lead;to cite;to head", + "romanization": "anführen", + "example_sentence_native": "Er wird das Team anführen.", + "example_sentence_english": "He will lead the team.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5333 + }, + { + "word": "Argumentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "argumentation;reasoning", + "romanization": "Argumentation", + "example_sentence_native": "Seine Argumentation war sehr überzeugend.", + "example_sentence_english": "His argumentation was very convincing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5334 + }, + { + "word": "Arsenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arsenal", + "romanization": "Arsenal", + "example_sentence_native": "Das Museum beherbergt ein großes Arsenal an Waffen.", + "example_sentence_english": "The museum houses a large arsenal of weapons.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5335 + }, + { + "word": "Aufforderung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "request;demand;prompt", + "romanization": "Aufforderung", + "example_sentence_native": "Er erhielt eine Aufforderung zur Zahlung.", + "example_sentence_english": "He received a request for payment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5336 + }, + { + "word": "Aufsicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supervision;oversight", + "romanization": "Aufsicht", + "example_sentence_native": "Die Kinder sind unter Aufsicht.", + "example_sentence_english": "The children are under supervision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5338 + }, + { + "word": "ausliefern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliver;to extradite", + "romanization": "ausliefern", + "example_sentence_native": "Die Firma wird die Ware morgen ausliefern.", + "example_sentence_english": "The company will deliver the goods tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "liefern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5339 + }, + { + "word": "Ausschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusion", + "romanization": "Ausschluss", + "example_sentence_native": "Der Ausschluss von der Veranstaltung war ungerechtfertigt.", + "example_sentence_english": "The exclusion from the event was unjustified.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5340 + }, + { + "word": "Ausübung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exercise;practice (of a profession;right)", + "romanization": "Ausübung", + "example_sentence_native": "Die Ausübung dieses Berufs erfordert viel Geduld.", + "example_sentence_english": "The exercise of this profession requires a lot of patience.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5342 + }, + { + "word": "Batterie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "battery", + "romanization": "Batterie", + "example_sentence_native": "Die Batterie meines Handys ist leer.", + "example_sentence_english": "My phone's battery is dead.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5343 + }, + { + "word": "belohnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reward", + "romanization": "belohnen", + "example_sentence_native": "Wir sollten gute Arbeit belohnen.", + "example_sentence_english": "We should reward good work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5345 + }, + { + "word": "Beton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concrete", + "romanization": "Beton", + "example_sentence_native": "Das Haus ist aus Beton gebaut.", + "example_sentence_english": "The house is built of concrete.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5346 + }, + { + "word": "Beurteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assessment;evaluation", + "romanization": "Beurteilung", + "example_sentence_native": "Die Beurteilung der Leistung war fair.", + "example_sentence_english": "The assessment of the performance was fair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5347 + }, + { + "word": "classic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classic", + "romanization": "classic", + "example_sentence_native": "Das ist ein klassisches Beispiel.", + "example_sentence_english": "That is a classic example.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5351 + }, + { + "word": "Comedy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comedy", + "romanization": "Comedy", + "example_sentence_native": "Ich mag es, Comedy-Shows zu sehen.", + "example_sentence_english": "I like to watch comedy shows.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5352 + }, + { + "word": "derzeitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "current;present", + "romanization": "derzeitig", + "example_sentence_native": "Die derzeitige Situation ist kompliziert.", + "example_sentence_english": "The current situation is complicated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5354 + }, + { + "word": "Drache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dragon;kite", + "romanization": "Drache", + "example_sentence_native": "Der Drache flog hoch am Himmel.", + "example_sentence_english": "The kite flew high in the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5356 + }, + { + "word": "drüben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "over there;across the way", + "romanization": "drüben", + "example_sentence_native": "Mein Freund wohnt drüben auf der anderen Straßenseite.", + "example_sentence_english": "My friend lives over there on the other side of the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5357 + }, + { + "word": "durchgehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous;throughout;all-day", + "romanization": "durchgehend", + "example_sentence_native": "Das Geschäft ist durchgehend geöffnet.", + "example_sentence_english": "The shop is open all day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5358 + }, + { + "word": "einseitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one-sided;unilateral", + "romanization": "einseitig", + "example_sentence_native": "Das war eine einseitige Entscheidung.", + "example_sentence_english": "That was a one-sided decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5359 + }, + { + "word": "entkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to escape", + "romanization": "entkommen", + "example_sentence_native": "Er konnte der Gefahr entkommen.", + "example_sentence_english": "He was able to escape the danger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5360 + }, + { + "word": "Entlassung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dismissal;discharge", + "romanization": "Entlassung", + "example_sentence_native": "Die Entlassung kam unerwartet.", + "example_sentence_english": "The dismissal came unexpectedly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5361 + }, + { + "word": "Entschädigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation;indemnity", + "romanization": "Entschädigung", + "example_sentence_native": "Er erhielt eine Entschädigung für den Schaden.", + "example_sentence_english": "He received compensation for the damage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5362 + }, + { + "word": "erlassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enact;to issue (a law)", + "romanization": "erlassen", + "example_sentence_native": "Die Regierung wird ein neues Gesetz erlassen.", + "example_sentence_english": "The government will enact a new law.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5363 + }, + { + "word": "ernähren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feed;to nourish", + "romanization": "ernähren", + "example_sentence_native": "Sie muss ihre Familie ernähren.", + "example_sentence_english": "She has to feed her family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5364 + }, + { + "word": "Erotik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eroticism", + "romanization": "Erotik", + "example_sentence_native": "Das Buch behandelt das Thema Erotik.", + "example_sentence_english": "The book deals with the topic of eroticism.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5365 + }, + { + "word": "erschaffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to create", + "romanization": "erschaffen", + "example_sentence_native": "Der Künstler wollte etwas Neues erschaffen.", + "example_sentence_english": "The artist wanted to create something new.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5366 + }, + { + "word": "Erwähnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mention", + "romanization": "Erwähnung", + "example_sentence_native": "Das ist keine Erwähnung wert.", + "example_sentence_english": "That's not worth mentioning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5367 + }, + { + "word": "Feststellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finding;ascertainment", + "romanization": "Feststellung", + "example_sentence_native": "Die Feststellung des Problems war der erste Schritt.", + "example_sentence_english": "The ascertainment of the problem was the first step.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5368 + }, + { + "word": "fotografieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to photograph", + "romanization": "fotografieren", + "example_sentence_native": "Sie liebt es, Blumen zu fotografieren.", + "example_sentence_english": "She loves to photograph flowers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5369 + }, + { + "word": "Fächer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan;compartment;subject", + "romanization": "Fächer", + "example_sentence_native": "Mein Lieblingsfach in der Schule war Geschichte.", + "example_sentence_english": "My favorite subject in school was history.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5370 + }, + { + "word": "Gebirge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountain range;mountains", + "romanization": "Gebirge", + "example_sentence_native": "Das Alpengebirge ist sehr beeindruckend.", + "example_sentence_english": "The Alps mountain range is very impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5372 + }, + { + "word": "Gleichgewicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balance;equilibrium", + "romanization": "Gleichgewicht", + "example_sentence_native": "Er verlor das Gleichgewicht und fiel.", + "example_sentence_english": "He lost his balance and fell.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5373 + }, + { + "word": "Gouverneur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governor", + "romanization": "Gouverneur", + "example_sentence_native": "Der Gouverneur hielt eine Rede.", + "example_sentence_english": "The governor gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5374 + }, + { + "word": "Halbinsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peninsula", + "romanization": "Halbinsel", + "example_sentence_native": "Florida ist eine große Halbinsel.", + "example_sentence_english": "Florida is a large peninsula.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5376 + }, + { + "word": "Hang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slope;inclination;tendency", + "romanization": "Hang", + "example_sentence_native": "Der Hang war steil und rutschig.", + "example_sentence_english": "The slope was steep and slippery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5377 + }, + { + "word": "heilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to heal;to cure", + "romanization": "heilen", + "example_sentence_native": "Die Wunde wird schnell heilen.", + "example_sentence_english": "The wound will heal quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5379 + }, + { + "word": "herein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in;inside;into (here)", + "romanization": "herein", + "example_sentence_native": "Komm herein!", + "example_sentence_english": "Come in!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5380 + }, + { + "word": "Impuls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impulse;impetus", + "romanization": "Impuls", + "example_sentence_native": "Er handelte aus einem Impuls heraus.", + "example_sentence_english": "He acted on an impulse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5384 + }, + { + "word": "inspirieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inspire", + "romanization": "inspirieren", + "example_sentence_native": "Die Musik kann uns inspirieren.", + "example_sentence_english": "The music can inspire us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5385 + }, + { + "word": "Inszenierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "staging;production;mise-en-scène", + "romanization": "Inszenierung", + "example_sentence_native": "Die Inszenierung des Stücks war beeindruckend.", + "example_sentence_english": "The staging of the play was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5386 + }, + { + "word": "Kaninchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rabbit", + "romanization": "Kaninchen", + "example_sentence_native": "Das Kaninchen frisst Gras.", + "example_sentence_english": "The rabbit eats grass.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5390 + }, + { + "word": "Kapazität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capacity", + "romanization": "Kapazität", + "example_sentence_native": "Die Kapazität des Stadions ist 50.000 Zuschauer.", + "example_sentence_english": "The capacity of the stadium is 50,000 spectators.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5391 + }, + { + "word": "Kardinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cardinal (church official or bird)", + "romanization": "Kardinal", + "example_sentence_native": "Der Kardinal trug eine rote Robe.", + "example_sentence_english": "The cardinal wore a red robe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5392 + }, + { + "word": "Karneval", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnival;Mardi Gras", + "romanization": "Karneval", + "example_sentence_native": "Köln ist bekannt für seinen Karneval.", + "example_sentence_english": "Cologne is known for its carnival.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5393 + }, + { + "word": "Katholik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catholic (person)", + "romanization": "Katholik", + "example_sentence_native": "Er ist ein praktizierender Katholik.", + "example_sentence_english": "He is a practicing Catholic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5394 + }, + { + "word": "Kompromiss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compromise", + "romanization": "Kompromiss", + "example_sentence_native": "Wir haben einen Kompromiss gefunden.", + "example_sentence_english": "We found a compromise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5395 + }, + { + "word": "korrigieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to correct", + "romanization": "korrigieren", + "example_sentence_native": "Bitte korrigieren Sie meine Fehler.", + "example_sentence_english": "Please correct my mistakes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5396 + }, + { + "word": "Krankenkasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "health insurance fund", + "romanization": "Krankenkasse", + "example_sentence_native": "Ich muss meine Krankenkasse kontaktieren.", + "example_sentence_english": "I need to contact my health insurance fund.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5397 + }, + { + "word": "lahm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lame;sluggish;uninspired", + "romanization": "lahm", + "example_sentence_native": "Der Witz war ziemlich lahm.", + "example_sentence_english": "The joke was quite lame.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5399 + }, + { + "word": "Nudel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "noodle", + "romanization": "Nudel", + "example_sentence_native": "Ich esse gerne Nudeln mit Tomatensoße.", + "example_sentence_english": "I like to eat noodles with tomato sauce.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5404 + }, + { + "word": "Plakat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster", + "romanization": "Plakat", + "example_sentence_native": "Das Plakat hängt an der Wand.", + "example_sentence_english": "The poster is hanging on the wall.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5408 + }, + { + "word": "Publikation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publication", + "romanization": "Publikation", + "example_sentence_native": "Die neue Publikation ist sehr interessant.", + "example_sentence_english": "The new publication is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5409 + }, + { + "word": "publizieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to publish", + "romanization": "publizieren", + "example_sentence_native": "Er möchte seine Forschungsergebnisse publizieren.", + "example_sentence_english": "He wants to publish his research results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5410 + }, + { + "word": "Redakteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "editor", + "romanization": "Redakteur", + "example_sentence_native": "Der Redakteur hat den Artikel überarbeitet.", + "example_sentence_english": "The editor revised the article.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5411 + }, + { + "word": "reif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ripe;mature", + "romanization": "reif", + "example_sentence_native": "Die Äpfel sind reif zum Pflücken.", + "example_sentence_english": "The apples are ripe for picking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5413 + }, + { + "word": "Ruhm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fame;glory", + "romanization": "Ruhm", + "example_sentence_native": "Sein Ruhm wuchs nach dem Erfolg des Buches.", + "example_sentence_english": "His fame grew after the success of the book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5414 + }, + { + "word": "Stiefel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boot", + "romanization": "Stiefel", + "example_sentence_native": "Er trägt neue Stiefel.", + "example_sentence_english": "He is wearing new boots.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5420 + }, + { + "word": "Stärkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strengthening;refreshment", + "romanization": "Stärkung", + "example_sentence_native": "Nach der Wanderung brauchten wir eine Stärkung.", + "example_sentence_english": "After the hike, we needed some refreshment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5421 + }, + { + "word": "Sünde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sin", + "romanization": "Sünde", + "example_sentence_native": "Er bereute seine Sünde.", + "example_sentence_english": "He regretted his sin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5422 + }, + { + "word": "vegan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegan", + "romanization": "vegan", + "example_sentence_native": "Sie isst nur vegane Speisen.", + "example_sentence_english": "She only eats vegan food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5424 + }, + { + "word": "Vize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice (as in vice-president)", + "romanization": "Vize", + "example_sentence_native": "Der Vize übernahm die Leitung.", + "example_sentence_english": "The vice took over the leadership.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5425 + }, + { + "word": "vorwerfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accuse;to reproach", + "romanization": "vorwerfen", + "example_sentence_native": "Er wollte ihr nichts vorwerfen.", + "example_sentence_english": "He didn't want to accuse her of anything.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "werfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5426 + }, + { + "word": "wahrlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truly;verily", + "romanization": "wahrlich", + "example_sentence_native": "Das war wahrlich eine Überraschung.", + "example_sentence_english": "That was truly a surprise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5427 + }, + { + "word": "Wertung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluation;scoring", + "romanization": "Wertung", + "example_sentence_native": "Die Wertung der Jury war sehr streng.", + "example_sentence_english": "The jury's evaluation was very strict.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5428 + }, + { + "word": "Zwischenzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meantime;interim", + "romanization": "Zwischenzeit", + "example_sentence_native": "In der Zwischenzeit bereitete sie das Abendessen vor.", + "example_sentence_english": "In the meantime, she prepared dinner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5431 + }, + { + "word": "Überfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attack;robbery", + "romanization": "Überfall", + "example_sentence_native": "Es gab einen Überfall auf die Bank.", + "example_sentence_english": "There was a robbery at the bank.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5432 + }, + { + "word": "abschaffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to abolish;to get rid of", + "romanization": "abschaffen", + "example_sentence_native": "Sie wollen das Gesetz abschaffen.", + "example_sentence_english": "They want to abolish the law.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schaffen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5433 + }, + { + "word": "agieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to act;to operate", + "romanization": "agieren", + "example_sentence_native": "Er agierte sehr professionell.", + "example_sentence_english": "He acted very professionally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5434 + }, + { + "word": "Anmerkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "note;remark", + "romanization": "Anmerkung", + "example_sentence_native": "Bitte beachten Sie die Anmerkung am Ende des Dokuments.", + "example_sentence_english": "Please note the remark at the end of the document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5435 + }, + { + "word": "Anstalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institution;establishment", + "romanization": "Anstalt", + "example_sentence_native": "Er wurde in eine Anstalt eingewiesen.", + "example_sentence_english": "He was admitted to an institution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5436 + }, + { + "word": "austauschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exchange;to replace", + "romanization": "austauschen", + "example_sentence_native": "Wir müssen die Batterie austauschen.", + "example_sentence_english": "We need to replace the battery.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "tauschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5437 + }, + { + "word": "ausgewählt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selected;chosen", + "romanization": "ausgewählt", + "example_sentence_native": "Sie präsentierte eine ausgewählte Sammlung.", + "example_sentence_english": "She presented a selected collection.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5438 + }, + { + "word": "ausschließen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exclude;to rule out", + "romanization": "ausschließen", + "example_sentence_native": "Wir können diese Möglichkeit nicht ausschließen.", + "example_sentence_english": "We cannot rule out this possibility.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schließen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5439 + }, + { + "word": "Beachtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attention;regard", + "romanization": "Beachtung", + "example_sentence_native": "Bitte schenken Sie diesem Detail besondere Beachtung.", + "example_sentence_english": "Please pay special attention to this detail.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5440 + }, + { + "word": "Becher", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cup;mug", + "romanization": "Becher", + "example_sentence_native": "Ich trinke meinen Kaffee aus einem großen Becher.", + "example_sentence_english": "I drink my coffee from a large mug.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5441 + }, + { + "word": "befindlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "located;situated", + "romanization": "befindlich", + "example_sentence_native": "Das Gebäude ist am Stadtrand befindlich.", + "example_sentence_english": "The building is located on the outskirts of the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5442 + }, + { + "word": "bescheuert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupid;idiotic", + "romanization": "bescheuert", + "example_sentence_native": "Das ist eine bescheuerte Idee!", + "example_sentence_english": "That's a stupid idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5443 + }, + { + "word": "Charme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charm", + "romanization": "Charme", + "example_sentence_native": "Er hat viel Charme und ist sehr beliebt.", + "example_sentence_english": "He has a lot of charm and is very popular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5444 + }, + { + "word": "Darsteller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actor;performer", + "romanization": "Darsteller", + "example_sentence_native": "Der Darsteller spielte seine Rolle sehr überzeugend.", + "example_sentence_english": "The actor played his role very convincingly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5446 + }, + { + "word": "Einsicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insight;understanding", + "romanization": "Einsicht", + "example_sentence_native": "Er zeigte Einsicht in seinen Fehler.", + "example_sentence_english": "He showed insight into his mistake.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5448 + }, + { + "word": "entführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kidnap;to abduct", + "romanization": "entführen", + "example_sentence_native": "Die Täter versuchten, das Kind zu entführen.", + "example_sentence_english": "The perpetrators tried to kidnap the child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5450 + }, + { + "word": "erarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work out;to develop", + "romanization": "erarbeiten", + "example_sentence_native": "Wir müssen eine neue Strategie erarbeiten.", + "example_sentence_english": "We need to develop a new strategy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5451 + }, + { + "word": "erweitert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extended;expanded", + "romanization": "erweitert", + "example_sentence_native": "Das Programm bietet erweiterte Funktionen.", + "example_sentence_english": "The program offers extended functions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5452 + }, + { + "word": "fantastisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fantastic;great", + "romanization": "fantastisch", + "example_sentence_native": "Das war ein fantastischer Film!", + "example_sentence_english": "That was a fantastic movie!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5454 + }, + { + "word": "Furcht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fear;dread", + "romanization": "Furcht", + "example_sentence_native": "Er empfand große Furcht vor dem Unbekannten.", + "example_sentence_english": "He felt great fear of the unknown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5456 + }, + { + "word": "Fussgänger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pedestrian", + "romanization": "Fussgänger", + "example_sentence_native": "Fussgänger müssen den Zebrastreifen benutzen.", + "example_sentence_english": "Pedestrians must use the crosswalk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5457 + }, + { + "word": "fällig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "due;payable", + "romanization": "fällig", + "example_sentence_native": "Die Rechnung ist nächste Woche fällig.", + "example_sentence_english": "The bill is due next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5458 + }, + { + "word": "gegenwärtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "present;current", + "romanization": "gegenwärtig", + "example_sentence_native": "Die gegenwärtige Situation ist sehr komplex.", + "example_sentence_english": "The current situation is very complex.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5459 + }, + { + "word": "Genie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genius", + "romanization": "Genie", + "example_sentence_native": "Er ist ein wahres Genie in Mathematik.", + "example_sentence_english": "He is a true genius in mathematics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5460 + }, + { + "word": "Geräusch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noise;sound", + "romanization": "Geräusch", + "example_sentence_native": "Ich hörte ein seltsames Geräusch.", + "example_sentence_english": "I heard a strange noise.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5461 + }, + { + "word": "Grill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grill;barbecue", + "romanization": "Grill", + "example_sentence_native": "Wir machen heute Abend einen Grill an.", + "example_sentence_english": "We're lighting a grill tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5463 + }, + { + "word": "Grosseltern", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandparents", + "romanization": "Grosseltern", + "example_sentence_native": "Meine Großeltern besuchen uns am Wochenende.", + "example_sentence_english": "My grandparents are visiting us on the weekend.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5464 + }, + { + "word": "Heimspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home game", + "romanization": "Heimspiel", + "example_sentence_native": "Das nächste Heimspiel ist am Samstag.", + "example_sentence_english": "The next home game is on Saturday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5466 + }, + { + "word": "heiß", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hot", + "romanization": "heiß", + "example_sentence_native": "Der Kaffee ist sehr heiß.", + "example_sentence_english": "The coffee is very hot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5467 + }, + { + "word": "herausfinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find out;to figure out", + "romanization": "herausfinden", + "example_sentence_native": "Ich muss herausfinden, wie das funktioniert.", + "example_sentence_english": "I need to find out how that works.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5468 + }, + { + "word": "Inflation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflation", + "romanization": "Inflation", + "example_sentence_native": "Die Inflation ist in diesem Jahr gestiegen.", + "example_sentence_english": "Inflation has risen this year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5471 + }, + { + "word": "kirchlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecclesiastical;church-related", + "romanization": "kirchlich", + "example_sentence_native": "Sie haben eine kirchliche Trauung.", + "example_sentence_english": "They are having a church wedding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5475 + }, + { + "word": "kombinieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to combine", + "romanization": "kombinieren", + "example_sentence_native": "Man kann diese Farben gut kombinieren.", + "example_sentence_english": "You can combine these colors well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5476 + }, + { + "word": "Konkurrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitor", + "romanization": "Konkurrent", + "example_sentence_native": "Er ist ein starker Konkurrent im Rennen.", + "example_sentence_english": "He is a strong competitor in the race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5477 + }, + { + "word": "Körperverletzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bodily harm;assault", + "romanization": "Körperverletzung", + "example_sentence_native": "Er wurde wegen Körperverletzung angeklagt.", + "example_sentence_english": "He was charged with bodily harm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5479 + }, + { + "word": "kühl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cool;chilly", + "romanization": "kühl", + "example_sentence_native": "Es ist heute kühl draußen.", + "example_sentence_english": "It is cool outside today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5480 + }, + { + "word": "lenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to steer;to direct", + "romanization": "lenken", + "example_sentence_native": "Er muss das Auto vorsichtig lenken.", + "example_sentence_english": "He must steer the car carefully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5482 + }, + { + "word": "Mitarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperation;collaboration", + "romanization": "Mitarbeit", + "example_sentence_native": "Ihre Mitarbeit ist sehr wichtig für das Projekt.", + "example_sentence_english": "Your cooperation is very important for the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5487 + }, + { + "word": "Munition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammunition", + "romanization": "Munition", + "example_sentence_native": "Die Soldaten hatten nicht genug Munition.", + "example_sentence_english": "The soldiers did not have enough ammunition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5491 + }, + { + "word": "Mühle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mill", + "romanization": "Mühle", + "example_sentence_native": "Die alte Mühle steht am Fluss.", + "example_sentence_english": "The old mill stands by the river.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5492 + }, + { + "word": "organisiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organized", + "romanization": "organisiert", + "example_sentence_native": "Sie ist eine sehr organisierte Person.", + "example_sentence_english": "She is a very organized person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5497 + }, + { + "word": "Petition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petition", + "romanization": "Petition", + "example_sentence_native": "Sie haben eine Petition gegen das neue Gesetz gestartet.", + "example_sentence_english": "They started a petition against the new law.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5498 + }, + { + "word": "Psychiatrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychiatry", + "romanization": "Psychiatrie", + "example_sentence_native": "Sie studiert Psychiatrie an der Universität.", + "example_sentence_english": "She studies psychiatry at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5500 + }, + { + "word": "Puls", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pulse", + "romanization": "Puls", + "example_sentence_native": "Der Arzt überprüfte seinen Puls.", + "example_sentence_english": "The doctor checked his pulse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5501 + }, + { + "word": "qualitativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualitative", + "romanization": "qualitativ", + "example_sentence_native": "Wir brauchen eine qualitative Analyse der Daten.", + "example_sentence_english": "We need a qualitative analysis of the data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5502 + }, + { + "word": "Radweg", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cycle path", + "romanization": "Radweg", + "example_sentence_native": "Der neue Radweg ist sehr sicher.", + "example_sentence_english": "The new cycle path is very safe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5503 + }, + { + "word": "Session", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "session", + "romanization": "Session", + "example_sentence_native": "Die nächste Session beginnt um 10 Uhr.", + "example_sentence_english": "The next session starts at 10 o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5505 + }, + { + "word": "steigend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rising;increasing", + "romanization": "steigend", + "example_sentence_native": "Die steigenden Preise sind ein Problem.", + "example_sentence_english": "The rising prices are a problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5506 + }, + { + "word": "stellvertretend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy;representative;vicarious", + "romanization": "stellvertretend", + "example_sentence_native": "Er ist der stellvertretende Direktor.", + "example_sentence_english": "He is the deputy director.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5507 + }, + { + "word": "Strahlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiation", + "romanization": "Strahlung", + "example_sentence_native": "Die Strahlung kann gefährlich sein.", + "example_sentence_english": "The radiation can be dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5508 + }, + { + "word": "Studierend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studying (as in 'a studying person')", + "romanization": "Studierend", + "example_sentence_native": "Die studierenden Jugendlichen bereiten sich auf die Prüfung vor.", + "example_sentence_english": "The studying young people are preparing for the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5509 + }, + { + "word": "sympathisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "likeable;sympathetic", + "romanization": "sympathisch", + "example_sentence_native": "Sie ist eine sehr sympathische Person.", + "example_sentence_english": "She is a very likeable person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5510 + }, + { + "word": "süß", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sweet;cute", + "romanization": "süß", + "example_sentence_native": "Der Kuchen ist sehr süß.", + "example_sentence_english": "The cake is very sweet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5512 + }, + { + "word": "Teen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teen", + "romanization": "Teen", + "example_sentence_native": "Sie ist ein Teen und liebt Musik.", + "example_sentence_english": "She is a teen and loves music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5513 + }, + { + "word": "Treffpunkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meeting point", + "romanization": "Treffpunkt", + "example_sentence_native": "Unser Treffpunkt ist am Bahnhof.", + "example_sentence_english": "Our meeting point is at the train station.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5515 + }, + { + "word": "ultra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ultra;extremely", + "romanization": "ultra", + "example_sentence_native": "Das ist ein ultra-schnelles Auto.", + "example_sentence_english": "That is an ultra-fast car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5516 + }, + { + "word": "Umweltschutz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmental protection", + "romanization": "Umweltschutz", + "example_sentence_native": "Umweltschutz ist sehr wichtig für unsere Zukunft.", + "example_sentence_english": "Environmental protection is very important for our future.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5517 + }, + { + "word": "unerwartet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unexpected", + "romanization": "unerwartet", + "example_sentence_native": "Das war eine unerwartete Nachricht.", + "example_sentence_english": "That was an unexpected message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5518 + }, + { + "word": "Uniform", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uniform", + "romanization": "Uniform", + "example_sentence_native": "Die Soldaten tragen eine grüne Uniform.", + "example_sentence_english": "The soldiers wear a green uniform.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5519 + }, + { + "word": "verbessert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improved", + "romanization": "verbessert", + "example_sentence_native": "Die Situation hat sich verbessert.", + "example_sentence_english": "The situation has improved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5520 + }, + { + "word": "vertreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expel;to drive away", + "romanization": "vertreiben", + "example_sentence_native": "Sie mussten die Eindringlinge vertreiben.", + "example_sentence_english": "They had to expel the intruders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5522 + }, + { + "word": "Verzweiflung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despair", + "romanization": "Verzweiflung", + "example_sentence_native": "Er sank in tiefe Verzweiflung.", + "example_sentence_english": "He sank into deep despair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5523 + }, + { + "word": "voraussetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to presuppose;to require", + "romanization": "voraussetzen", + "example_sentence_native": "Das setzt viel Erfahrung voraus.", + "example_sentence_english": "That requires a lot of experience.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "voraus", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5524 + }, + { + "word": "Yoga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yoga", + "romanization": "Yoga", + "example_sentence_native": "Sie macht jeden Morgen Yoga.", + "example_sentence_english": "She does yoga every morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5525 + }, + { + "word": "zwangsläufig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inevitably;necessarily", + "romanization": "zwangsläufig", + "example_sentence_native": "Das wird zwangsläufig zu Problemen führen.", + "example_sentence_english": "That will inevitably lead to problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5526 + }, + { + "word": "überholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overtake;to overhaul", + "romanization": "überholen", + "example_sentence_native": "Er konnte das Auto überholen.", + "example_sentence_english": "He was able to overtake the car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5527 + }, + { + "word": "Absturz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crash;fall", + "romanization": "Absturz", + "example_sentence_native": "Der Flugzeugabsturz war tragisch.", + "example_sentence_english": "The plane crash was tragic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5528 + }, + { + "word": "Agent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agent", + "romanization": "Agent", + "example_sentence_native": "Der Geheimagent sammelte Informationen.", + "example_sentence_english": "The secret agent collected information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5529 + }, + { + "word": "Altar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altar", + "romanization": "Altar", + "example_sentence_native": "Die Kerzen standen auf dem Altar.", + "example_sentence_english": "The candles stood on the altar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5530 + }, + { + "word": "Anregung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggestion;stimulus", + "romanization": "Anregung", + "example_sentence_native": "Vielen Dank für Ihre Anregungen.", + "example_sentence_english": "Thank you for your suggestions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5531 + }, + { + "word": "aufwachen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wake up", + "romanization": "aufwachen", + "example_sentence_native": "Ich muss früh aufwachen.", + "example_sentence_english": "I have to wake up early.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "wachen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5532 + }, + { + "word": "Ausfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure;outage", + "romanization": "Ausfall", + "example_sentence_native": "Es gab einen Stromausfall.", + "example_sentence_english": "There was a power outage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5533 + }, + { + "word": "aushalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to endure;to bear", + "romanization": "aushalten", + "example_sentence_native": "Ich kann den Schmerz nicht länger aushalten.", + "example_sentence_english": "I can't bear the pain any longer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5534 + }, + { + "word": "ausnahmsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceptionally;for once", + "romanization": "ausnahmsweise", + "example_sentence_native": "Er kam ausnahmsweise pünktlich.", + "example_sentence_english": "He arrived on time for once.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5535 + }, + { + "word": "Ausschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excerpt;section;neckline", + "romanization": "Ausschnitt", + "example_sentence_native": "Lesen Sie diesen Ausschnitt aus dem Buch.", + "example_sentence_english": "Read this excerpt from the book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5536 + }, + { + "word": "beeinträchtigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impair;to affect negatively", + "romanization": "beeinträchtigen", + "example_sentence_native": "Lärm kann die Konzentration beeinträchtigen.", + "example_sentence_english": "Noise can impair concentration.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5538 + }, + { + "word": "behindert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disabled;handicapped", + "romanization": "behindert", + "example_sentence_native": "Der Zugang ist auch für behinderte Menschen möglich.", + "example_sentence_english": "Access is also possible for disabled people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5539 + }, + { + "word": "Besatzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crew;occupation", + "romanization": "Besatzung", + "example_sentence_native": "Die Besatzung des Raumschiffs war bereit für den Start.", + "example_sentence_english": "The crew of the spaceship was ready for launch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5540 + }, + { + "word": "bewältigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cope with;to master", + "romanization": "bewältigen", + "example_sentence_native": "Er musste viele Herausforderungen bewältigen.", + "example_sentence_english": "He had to overcome many challenges.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5541 + }, + { + "word": "Bit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bit (computer science)", + "romanization": "Bit", + "example_sentence_native": "Ein Byte besteht aus acht Bit.", + "example_sentence_english": "A byte consists of eight bits.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5542 + }, + { + "word": "Bundeskanzler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Federal Chancellor", + "romanization": "Bundeskanzler", + "example_sentence_native": "Der Bundeskanzler hielt eine Rede.", + "example_sentence_english": "The Federal Chancellor gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5544 + }, + { + "word": "Bäcker", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baker", + "romanization": "Bäcker", + "example_sentence_native": "Der Bäcker backt frisches Brot.", + "example_sentence_english": "The baker bakes fresh bread.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5546 + }, + { + "word": "Deckel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lid;cover", + "romanization": "Deckel", + "example_sentence_native": "Bitte setz den Deckel auf den Topf.", + "example_sentence_english": "Please put the lid on the pot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5547 + }, + { + "word": "Diabetes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diabetes", + "romanization": "Diabetes", + "example_sentence_native": "Diabetes ist eine chronische Krankheit.", + "example_sentence_english": "Diabetes is a chronic disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5548 + }, + { + "word": "einstufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to classify;to categorize", + "romanization": "einstufen", + "example_sentence_native": "Man muss die Risiken richtig einstufen.", + "example_sentence_english": "One must correctly classify the risks.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "stufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5549 + }, + { + "word": "Einzelhandel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retail", + "romanization": "Einzelhandel", + "example_sentence_native": "Der Einzelhandel hat mit vielen Herausforderungen zu kämpfen.", + "example_sentence_english": "Retail faces many challenges.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5550 + }, + { + "word": "Einzelheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detail", + "romanization": "Einzelheit", + "example_sentence_native": "Er erklärte jede Einzelheit des Plans.", + "example_sentence_english": "He explained every detail of the plan.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5551 + }, + { + "word": "entziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to withdraw;to deprive", + "romanization": "entziehen", + "example_sentence_native": "Man kann ihm die Fahrerlaubnis entziehen.", + "example_sentence_english": "One can withdraw his driving license.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5552 + }, + { + "word": "Erneuerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewal;renovation", + "romanization": "Erneuerung", + "example_sentence_native": "Die Erneuerung der Infrastruktur ist wichtig.", + "example_sentence_english": "The renewal of the infrastructure is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5553 + }, + { + "word": "erobern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conquer;to capture", + "romanization": "erobern", + "example_sentence_native": "Die Armee versuchte, die Stadt zu erobern.", + "example_sentence_english": "The army tried to conquer the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5554 + }, + { + "word": "erschöpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exhaust;to deplete", + "romanization": "erschöpfen", + "example_sentence_native": "Die lange Wanderung hat ihn völlig erschöpft.", + "example_sentence_english": "The long hike completely exhausted him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5555 + }, + { + "word": "erwartet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expected", + "romanization": "erwartet", + "example_sentence_native": "Das war ein erwartetes Ergebnis.", + "example_sentence_english": "That was an expected result.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5556 + }, + { + "word": "erwähnt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mentioned", + "romanization": "erwähnt", + "example_sentence_native": "Die erwähnte Person war nicht anwesend.", + "example_sentence_english": "The mentioned person was not present.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5557 + }, + { + "word": "Export", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "export", + "romanization": "Export", + "example_sentence_native": "Der Export von Autos ist wichtig für die Wirtschaft.", + "example_sentence_english": "The export of cars is important for the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5558 + }, + { + "word": "final", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final", + "romanization": "final", + "example_sentence_native": "Das ist die finale Version des Dokuments.", + "example_sentence_english": "This is the final version of the document.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5559 + }, + { + "word": "Gastronomie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastronomy;catering industry", + "romanization": "Gastronomie", + "example_sentence_native": "Die Gastronomie hat unter der Pandemie gelitten.", + "example_sentence_english": "The catering industry suffered during the pandemic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5560 + }, + { + "word": "Glaube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belief;faith", + "romanization": "Glaube", + "example_sentence_native": "Sein Glaube an das Gute ist unerschütterlich.", + "example_sentence_english": "His belief in good is unshakable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5561 + }, + { + "word": "gönnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to begrudge;to allow oneself (a treat);to grant", + "romanization": "gönnen", + "example_sentence_native": "Ich gönne dir diesen Erfolg von Herzen.", + "example_sentence_english": "I wholeheartedly grant you this success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5563 + }, + { + "word": "Gürtel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belt", + "romanization": "Gürtel", + "example_sentence_native": "Er trägt einen braunen Gürtel.", + "example_sentence_english": "He is wearing a brown belt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5564 + }, + { + "word": "Hacker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hacker", + "romanization": "Hacker", + "example_sentence_native": "Ein Hacker hat die Website angegriffen.", + "example_sentence_english": "A hacker attacked the website.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5565 + }, + { + "word": "human", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humane", + "romanization": "human", + "example_sentence_native": "Er zeigte eine sehr humane Reaktion.", + "example_sentence_english": "He showed a very humane reaction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5568 + }, + { + "word": "Kabinett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabinet (government);small room", + "romanization": "Kabinett", + "example_sentence_native": "Das Kabinett hat eine neue Entscheidung getroffen.", + "example_sentence_english": "The cabinet made a new decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5570 + }, + { + "word": "Kram", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stuff;junk;odds and ends", + "romanization": "Kram", + "example_sentence_native": "Räum deinen Kram auf!", + "example_sentence_english": "Tidy up your stuff!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5572 + }, + { + "word": "Kult", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cult;craze;hype", + "romanization": "Kult", + "example_sentence_native": "Dieser Film hat Kultstatus erreicht.", + "example_sentence_english": "This film has achieved cult status.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5573 + }, + { + "word": "Lesbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesbian (female)", + "romanization": "Lesbe", + "example_sentence_native": "Sie ist eine Lesbe.", + "example_sentence_english": "She is a lesbian.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5575 + }, + { + "word": "letztens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently;lately", + "romanization": "letztens", + "example_sentence_native": "Ich habe ihn letztens im Supermarkt gesehen.", + "example_sentence_english": "I saw him recently in the supermarket.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5577 + }, + { + "word": "leuchten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shine;to light up", + "romanization": "leuchten", + "example_sentence_native": "Die Sterne leuchten am Himmel.", + "example_sentence_english": "The stars shine in the sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5578 + }, + { + "word": "lose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loose", + "romanization": "lose", + "example_sentence_native": "Der Knopf ist lose.", + "example_sentence_english": "The button is loose.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5580 + }, + { + "word": "Mahlzeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meal", + "romanization": "Mahlzeit", + "example_sentence_native": "Guten Appetit bei Ihrer Mahlzeit!", + "example_sentence_english": "Enjoy your meal!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5582 + }, + { + "word": "moralisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moral", + "romanization": "moralisch", + "example_sentence_native": "Das ist eine moralische Frage.", + "example_sentence_english": "That is a moral question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5583 + }, + { + "word": "Nachhaltigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustainability", + "romanization": "Nachhaltigkeit", + "example_sentence_native": "Nachhaltigkeit ist wichtig für unsere Zukunft.", + "example_sentence_english": "Sustainability is important for our future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5584 + }, + { + "word": "nachvollziehbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comprehensible", + "romanization": "nachvollziehbar", + "example_sentence_native": "Seine Argumente sind absolut nachvollziehbar.", + "example_sentence_english": "His arguments are absolutely comprehensible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5585 + }, + { + "word": "naiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "naive", + "romanization": "naiv", + "example_sentence_native": "Sie ist manchmal etwas naiv.", + "example_sentence_english": "She is sometimes a bit naive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5586 + }, + { + "word": "Naturschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nature conservation", + "romanization": "Naturschutz", + "example_sentence_native": "Naturschutz ist ein wichtiges Thema.", + "example_sentence_english": "Nature conservation is an important topic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5587 + }, + { + "word": "netto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "net", + "romanization": "netto", + "example_sentence_native": "Der Nettopreis beträgt 50 Euro.", + "example_sentence_english": "The net price is 50 Euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5588 + }, + { + "word": "Nordsee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "North Sea", + "romanization": "Nordsee", + "example_sentence_native": "Wir fahren im Sommer an die Nordsee.", + "example_sentence_english": "We are going to the North Sea in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5589 + }, + { + "word": "nützen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be useful", + "romanization": "nützen", + "example_sentence_native": "Das wird dir nichts nützen.", + "example_sentence_english": "That won't do you any good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5590 + }, + { + "word": "Punk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punk", + "romanization": "Punk", + "example_sentence_native": "Er hört gerne Punk-Musik.", + "example_sentence_english": "He likes to listen to punk music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5592 + }, + { + "word": "Rechtsstaat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional state", + "romanization": "Rechtsstaat", + "example_sentence_native": "Ein Rechtsstaat schützt die Rechte seiner Bürger.", + "example_sentence_english": "A constitutional state protects the rights of its citizens.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5594 + }, + { + "word": "relevant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relevant", + "romanization": "relevant", + "example_sentence_native": "Diese Information ist sehr relevant.", + "example_sentence_english": "This information is very relevant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5596 + }, + { + "word": "Renaissance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Renaissance", + "romanization": "Renaissance", + "example_sentence_native": "Die Renaissance war eine wichtige Epoche in der Kunstgeschichte.", + "example_sentence_english": "The Renaissance was an important era in art history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5597 + }, + { + "word": "Romantik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Romanticism", + "romanization": "Romantik", + "example_sentence_native": "Die Romantik ist eine Kunstepoche.", + "example_sentence_english": "Romanticism is an art epoch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5598 + }, + { + "word": "ruhen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rest", + "romanization": "ruhen", + "example_sentence_native": "Lass uns eine Weile ruhen.", + "example_sentence_english": "Let's rest for a while.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5599 + }, + { + "word": "sachlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objective;factual", + "romanization": "sachlich", + "example_sentence_native": "Bleiben Sie bitte sachlich.", + "example_sentence_english": "Please remain objective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5601 + }, + { + "word": "Schauspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "play;spectacle", + "romanization": "Schauspiel", + "example_sentence_native": "Das Schauspiel war beeindruckend.", + "example_sentence_english": "The play was impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5602 + }, + { + "word": "spezialisieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to specialize", + "romanization": "spezialisieren", + "example_sentence_native": "Er möchte sich auf Softwareentwicklung spezialisieren.", + "example_sentence_english": "He wants to specialize in software development.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5605 + }, + { + "word": "statistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistical", + "romanization": "statistisch", + "example_sentence_native": "Das ist ein statistischer Fehler.", + "example_sentence_english": "That is a statistical error.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5606 + }, + { + "word": "stundenlang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for hours;hour-long", + "romanization": "stundenlang", + "example_sentence_native": "Wir haben stundenlang gewartet.", + "example_sentence_english": "We waited for hours.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5610 + }, + { + "word": "Tagung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conference;meeting", + "romanization": "Tagung", + "example_sentence_native": "Die Tagung findet nächste Woche statt.", + "example_sentence_english": "The conference will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5611 + }, + { + "word": "Track", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "track", + "romanization": "Track", + "example_sentence_native": "Das ist mein Lieblingstrack auf dem Album.", + "example_sentence_english": "That's my favorite track on the album.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5613 + }, + { + "word": "Transfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transfer", + "romanization": "Transfer", + "example_sentence_native": "Der Transfer zum Flughafen dauert 30 Minuten.", + "example_sentence_english": "The transfer to the airport takes 30 minutes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5614 + }, + { + "word": "Trost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comfort;consolation", + "romanization": "Trost", + "example_sentence_native": "Sie spendete ihm Trost in seiner Trauer.", + "example_sentence_english": "She offered him comfort in his grief.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5615 + }, + { + "word": "ungern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reluctantly;unwillingly", + "romanization": "ungern", + "example_sentence_native": "Ich gehe ungern früh ins Bett.", + "example_sentence_english": "I reluctantly go to bed early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5616 + }, + { + "word": "unschuldig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "innocent;guiltless", + "romanization": "unschuldig", + "example_sentence_native": "Er wurde für unschuldig befunden.", + "example_sentence_english": "He was found innocent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5617 + }, + { + "word": "unterliegen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be subject to;to succumb to", + "romanization": "unterliegen", + "example_sentence_native": "Er unterliegt den Regeln.", + "example_sentence_english": "He is subject to the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5618 + }, + { + "word": "unterzeichnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sign;to subscribe", + "romanization": "unterzeichnen", + "example_sentence_native": "Bitte unterzeichnen Sie hier.", + "example_sentence_english": "Please sign here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5619 + }, + { + "word": "vereinzelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolated;sporadic", + "romanization": "vereinzelt", + "example_sentence_native": "Es gab vereinzelt Regen.", + "example_sentence_english": "There was sporadic rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5621 + }, + { + "word": "vermeintlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supposed;alleged", + "romanization": "vermeintlich", + "example_sentence_native": "Der vermeintliche Täter wurde festgenommen.", + "example_sentence_english": "The alleged perpetrator was arrested.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5622 + }, + { + "word": "verringern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce;to decrease", + "romanization": "verringern", + "example_sentence_native": "Wir müssen die Kosten verringern.", + "example_sentence_english": "We must reduce the costs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5623 + }, + { + "word": "Zeugnis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "certificate;report card;testimony", + "romanization": "Zeugnis", + "example_sentence_native": "Mein Zeugnis war sehr gut.", + "example_sentence_english": "My report card was very good.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5625 + }, + { + "word": "zuverlässig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reliable;trustworthy", + "romanization": "zuverlässig", + "example_sentence_native": "Er ist ein sehr zuverlässiger Mitarbeiter.", + "example_sentence_english": "He is a very reliable employee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5626 + }, + { + "word": "ärgern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to annoy;to anger", + "romanization": "ärgern", + "example_sentence_native": "Es ärgert mich, dass er immer zu spät kommt.", + "example_sentence_english": "It annoys me that he is always late.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5627 + }, + { + "word": "abreißen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tear off;to demolish", + "romanization": "abreißen", + "example_sentence_native": "Sie wollen das alte Gebäude abreißen.", + "example_sentence_english": "They want to demolish the old building.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "reißen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5629 + }, + { + "word": "ahnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suspect;to sense;to forebode", + "romanization": "ahnen", + "example_sentence_native": "Ich ahnte, dass etwas nicht stimmte.", + "example_sentence_english": "I sensed that something was wrong.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5632 + }, + { + "word": "Anhang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appendix;attachment;follower", + "romanization": "Anhang", + "example_sentence_native": "Bitte finden Sie die Datei im Anhang.", + "example_sentence_english": "Please find the file in the attachment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5635 + }, + { + "word": "antik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antique;ancient", + "romanization": "antik", + "example_sentence_native": "Sie sammelt antike Möbel.", + "example_sentence_english": "She collects antique furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5636 + }, + { + "word": "Anwesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estate;property", + "romanization": "Anwesen", + "example_sentence_native": "Das Anwesen hat einen großen Garten.", + "example_sentence_english": "The estate has a large garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5637 + }, + { + "word": "Beendigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "termination;completion;end", + "romanization": "Beendigung", + "example_sentence_native": "Die Beendigung des Projekts ist für nächste Woche geplant.", + "example_sentence_english": "The completion of the project is planned for next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5639 + }, + { + "word": "befreunden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to befriend", + "romanization": "befreunden", + "example_sentence_native": "Sie befreundeten sich schnell.", + "example_sentence_english": "They quickly befriended each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5640 + }, + { + "word": "Chart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chart;graph", + "romanization": "Chart", + "example_sentence_native": "Wir müssen ein neues Chart erstellen.", + "example_sentence_english": "We need to create a new chart.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5644 + }, + { + "word": "Country", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "country (music);countryside", + "romanization": "Country", + "example_sentence_native": "Ich höre gerne Country-Musik.", + "example_sentence_english": "I like listening to country music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5645 + }, + { + "word": "Derby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derby (sports match)", + "romanization": "Derby", + "example_sentence_native": "Das lokale Derby war sehr spannend.", + "example_sentence_english": "The local derby was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5646 + }, + { + "word": "Diät", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diet", + "romanization": "Diät", + "example_sentence_native": "Sie macht eine Diät, um abzunehmen.", + "example_sentence_english": "She is on a diet to lose weight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5647 + }, + { + "word": "Dose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "can;tin", + "romanization": "Dose", + "example_sentence_native": "Bitte bring mir eine Dose Cola.", + "example_sentence_english": "Please bring me a can of cola.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5648 + }, + { + "word": "Dosis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dose", + "romanization": "Dosis", + "example_sentence_native": "Nehmen Sie diese Dosis zweimal täglich.", + "example_sentence_english": "Take this dose twice daily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5649 + }, + { + "word": "einschließen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to include;to lock in", + "romanization": "einschließen", + "example_sentence_native": "Der Preis schließt die Getränke ein.", + "example_sentence_english": "The price includes the drinks.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schließen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5651 + }, + { + "word": "Einhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compliance;adherence", + "romanization": "Einhaltung", + "example_sentence_native": "Die Einhaltung der Regeln ist wichtig.", + "example_sentence_english": "Compliance with the rules is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5652 + }, + { + "word": "Energy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy", + "romanization": "Energy", + "example_sentence_native": "Ich brauche einen Energy Drink.", + "example_sentence_english": "I need an energy drink.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5653 + }, + { + "word": "Entspannung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxation;relief", + "romanization": "Entspannung", + "example_sentence_native": "Ich brauche etwas Entspannung nach der Arbeit.", + "example_sentence_english": "I need some relaxation after work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5654 + }, + { + "word": "Esel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donkey", + "romanization": "Esel", + "example_sentence_native": "Der Esel trug die Last.", + "example_sentence_english": "The donkey carried the load.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5655 + }, + { + "word": "Feder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feather;spring", + "romanization": "Feder", + "example_sentence_native": "Die Feder des Vogels war sehr weich.", + "example_sentence_english": "The bird's feather was very soft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5656 + }, + { + "word": "Feierabend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "end of work;quitting time", + "romanization": "Feierabend", + "example_sentence_native": "Nach dem Feierabend gehe ich nach Hause.", + "example_sentence_english": "After work, I go home.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5657 + }, + { + "word": "Folter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torture", + "romanization": "Folter", + "example_sentence_native": "Folter ist in vielen Ländern verboten.", + "example_sentence_english": "Torture is forbidden in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5658 + }, + { + "word": "Forst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forest;woodland", + "romanization": "Forst", + "example_sentence_native": "Der Förster arbeitet im Forst.", + "example_sentence_english": "The forester works in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5659 + }, + { + "word": "fortan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "henceforth;from now on", + "romanization": "fortan", + "example_sentence_native": "Fortan werde ich jeden Tag Deutsch lernen.", + "example_sentence_english": "Henceforth, I will learn German every day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5660 + }, + { + "word": "Fund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "find;discovery", + "romanization": "Fund", + "example_sentence_native": "Der Archäologe machte einen wichtigen Fund.", + "example_sentence_english": "The archaeologist made an important find.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5661 + }, + { + "word": "fügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to join;to add;to submit", + "romanization": "fügen", + "example_sentence_native": "Er musste sich seinem Schicksal fügen.", + "example_sentence_english": "He had to submit to his fate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5662 + }, + { + "word": "Fülle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abundance;fullness", + "romanization": "Fülle", + "example_sentence_native": "Er genoss die Fülle des Lebens.", + "example_sentence_english": "He enjoyed the fullness of life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5663 + }, + { + "word": "Geheimdienst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secret service", + "romanization": "Geheimdienst", + "example_sentence_native": "Der Geheimdienst sammelt Informationen.", + "example_sentence_english": "The secret service collects information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5664 + }, + { + "word": "Genre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genre", + "romanization": "Genre", + "example_sentence_native": "Welches Musik-Genre magst du am liebsten?", + "example_sentence_english": "Which music genre do you like best?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5665 + }, + { + "word": "Grundsatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "principle;basic rule", + "romanization": "Grundsatz", + "example_sentence_native": "Das ist ein wichtiger Grundsatz.", + "example_sentence_english": "That is an important principle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5669 + }, + { + "word": "harmlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmless", + "romanization": "harmlos", + "example_sentence_native": "Die Schlange ist harmlos.", + "example_sentence_english": "The snake is harmless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5671 + }, + { + "word": "Hauch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breath;trace;hint", + "romanization": "Hauch", + "example_sentence_native": "Ein Hauch von Wind wehte durch die Bäume.", + "example_sentence_english": "A breath of wind blew through the trees.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5672 + }, + { + "word": "hinunter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down;downwards", + "romanization": "hinunter", + "example_sentence_native": "Er ging die Treppe hinunter.", + "example_sentence_english": "He went down the stairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5673 + }, + { + "word": "homosexuell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homosexual", + "romanization": "homosexuell", + "example_sentence_native": "Er ist homosexuell.", + "example_sentence_english": "He is homosexual.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5675 + }, + { + "word": "Indianer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Native American;Indian", + "romanization": "Indianer", + "example_sentence_native": "Die Indianer lebten in Nordamerika.", + "example_sentence_english": "The Native Americans lived in North America.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5677 + }, + { + "word": "intelligent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intelligent", + "romanization": "intelligent", + "example_sentence_native": "Sie ist eine sehr intelligente Frau.", + "example_sentence_english": "She is a very intelligent woman.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5679 + }, + { + "word": "Krankenversicherung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "health insurance", + "romanization": "Krankenversicherung", + "example_sentence_native": "Ich brauche eine Krankenversicherung.", + "example_sentence_english": "I need health insurance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5682 + }, + { + "word": "Kupfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "copper", + "romanization": "Kupfer", + "example_sentence_native": "Kupfer ist ein Metall.", + "example_sentence_english": "Copper is a metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5683 + }, + { + "word": "landwirtschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agricultural", + "romanization": "landwirtschaftlich", + "example_sentence_native": "Das ist ein landwirtschaftlicher Betrieb.", + "example_sentence_english": "That is an agricultural business.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5684 + }, + { + "word": "Lautsprecher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loudspeaker;speaker", + "romanization": "Lautsprecher", + "example_sentence_native": "Der Lautsprecher ist kaputt.", + "example_sentence_english": "The speaker is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5685 + }, + { + "word": "Lebensqualität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quality of life", + "romanization": "Lebensqualität", + "example_sentence_native": "Eine gute Lebensqualität ist wichtig.", + "example_sentence_english": "A good quality of life is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5686 + }, + { + "word": "loswerden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get rid of", + "romanization": "loswerden", + "example_sentence_native": "Ich möchte diesen alten Stuhl loswerden.", + "example_sentence_english": "I want to get rid of this old chair.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "los", + "base_verb": "werden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5688 + }, + { + "word": "Mandat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mandate;seat (in parliament)", + "romanization": "Mandat", + "example_sentence_native": "Er hat ein Mandat im Parlament.", + "example_sentence_english": "He has a seat in parliament.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5689 + }, + { + "word": "Millimeter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "millimeter", + "romanization": "Millimeter", + "example_sentence_native": "Der Nagel ist zehn Millimeter lang.", + "example_sentence_english": "The nail is ten millimeters long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5690 + }, + { + "word": "Monitor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monitor", + "romanization": "Monitor", + "example_sentence_native": "Der Monitor ist sehr groß.", + "example_sentence_english": "The monitor is very big.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5692 + }, + { + "word": "mäßig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderate;temperate", + "romanization": "mäßig", + "example_sentence_native": "Er hat mäßigen Erfolg.", + "example_sentence_english": "He has moderate success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5693 + }, + { + "word": "nebeneinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "next to each other;side by side", + "romanization": "nebeneinander", + "example_sentence_native": "Die Häuser stehen nebeneinander.", + "example_sentence_english": "The houses stand next to each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5694 + }, + { + "word": "Nest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nest", + "romanization": "Nest", + "example_sentence_native": "Der Vogel baut ein Nest.", + "example_sentence_english": "The bird builds a nest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5696 + }, + { + "word": "niederländisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dutch (language;nationality)", + "romanization": "niederländisch", + "example_sentence_native": "Sie spricht Niederländisch.", + "example_sentence_english": "She speaks Dutch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 5698 + }, + { + "word": "Ortsteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "district;borough;part of town", + "romanization": "Ortsteil", + "example_sentence_native": "Unser Ortsteil hat viele Grünflächen.", + "example_sentence_english": "Our district has many green spaces.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5702 + }, + { + "word": "Outfit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "outfit", + "romanization": "Outfit", + "example_sentence_native": "Sie trug ein schönes Outfit zur Party.", + "example_sentence_english": "She wore a beautiful outfit to the party.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5703 + }, + { + "word": "Ozean", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ocean", + "romanization": "Ozean", + "example_sentence_native": "Der Pazifische Ozean ist der größte Ozean der Welt.", + "example_sentence_english": "The Pacific Ocean is the largest ocean in the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5704 + }, + { + "word": "Pastor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastor;minister", + "romanization": "Pastor", + "example_sentence_native": "Der Pastor hielt eine inspirierende Predigt.", + "example_sentence_english": "The pastor gave an inspiring sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5705 + }, + { + "word": "Pater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "father (religious title;e.g.;Catholic priest)", + "romanization": "Pater", + "example_sentence_native": "Der Pater segnete die Gemeinde.", + "example_sentence_english": "The Father blessed the congregation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5706 + }, + { + "word": "Pen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pen", + "romanization": "Pen", + "example_sentence_native": "Kannst du mir bitte einen Pen leihen?", + "example_sentence_english": "Can you please lend me a pen?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5708 + }, + { + "word": "präsent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "present;attentive;prominent", + "romanization": "präsent", + "example_sentence_native": "Er war während der Besprechung sehr präsent.", + "example_sentence_english": "He was very present during the meeting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5710 + }, + { + "word": "radikal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radical", + "romanization": "radikal", + "example_sentence_native": "Die Partei schlug radikale Änderungen vor.", + "example_sentence_english": "The party proposed radical changes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5711 + }, + { + "word": "Register", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "register;record;index", + "romanization": "Register", + "example_sentence_native": "Bitte tragen Sie sich in das Register ein.", + "example_sentence_english": "Please sign your name in the register.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5712 + }, + { + "word": "Research", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research", + "romanization": "Research", + "example_sentence_native": "Die Research-Abteilung arbeitet an neuen Projekten.", + "example_sentence_english": "The research department is working on new projects.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5713 + }, + { + "word": "Schale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowl;shell;peel", + "romanization": "Schale", + "example_sentence_native": "Die Schale der Banane ist gelb.", + "example_sentence_english": "The peel of the banana is yellow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5715 + }, + { + "word": "Schnauze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snout;muzzle;(informal) mouth", + "romanization": "Schnauze", + "example_sentence_native": "Der Hund hat eine lange Schnauze.", + "example_sentence_english": "The dog has a long snout.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5716 + }, + { + "word": "Selbstbewusstsein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-confidence;self-awareness", + "romanization": "Selbstbewusstsein", + "example_sentence_native": "Ihr Selbstbewusstsein wuchs mit jedem Erfolg.", + "example_sentence_english": "Her self-confidence grew with every success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5717 + }, + { + "word": "solide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solid;reliable;sound", + "romanization": "solide", + "example_sentence_native": "Das ist eine solide Leistung.", + "example_sentence_english": "That is a solid performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5718 + }, + { + "word": "souverän", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sovereign;confident;masterful", + "romanization": "souverän", + "example_sentence_native": "Er meisterte die Aufgabe souverän.", + "example_sentence_english": "He mastered the task masterfully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5719 + }, + { + "word": "spiegeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reflect", + "romanization": "spiegeln", + "example_sentence_native": "Das Wasser spiegelt die Bäume.", + "example_sentence_english": "The water reflects the trees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5720 + }, + { + "word": "Stall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stable;barn", + "romanization": "Stall", + "example_sentence_native": "Die Pferde leben im Stall.", + "example_sentence_english": "The horses live in the stable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5721 + }, + { + "word": "Strassenverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "road traffic", + "romanization": "Strassenverkehr", + "example_sentence_native": "Der Strassenverkehr ist heute sehr dicht.", + "example_sentence_english": "The road traffic is very heavy today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5722 + }, + { + "word": "Säule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "column;pillar", + "romanization": "Säule", + "example_sentence_native": "Die alte Säule stützt das Dach.", + "example_sentence_english": "The old column supports the roof.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5724 + }, + { + "word": "Tank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tank", + "romanization": "Tank", + "example_sentence_native": "Der Tank des Autos ist leer.", + "example_sentence_english": "The car's tank is empty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5726 + }, + { + "word": "Terrasse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrace;patio", + "romanization": "Terrasse", + "example_sentence_native": "Wir frühstücken auf der Terrasse.", + "example_sentence_english": "We have breakfast on the terrace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5727 + }, + { + "word": "tiroler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tyrolean", + "romanization": "tiroler", + "example_sentence_native": "Er trägt eine tiroler Tracht.", + "example_sentence_english": "He wears a Tyrolean costume.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5728 + }, + { + "word": "ungarisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Hungarian", + "romanization": "ungarisch", + "example_sentence_native": "Sie spricht ungarisch.", + "example_sentence_english": "She speaks Hungarian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5729 + }, + { + "word": "urteilen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to judge;to rule", + "romanization": "urteilen", + "example_sentence_native": "Der Richter muss über den Fall urteilen.", + "example_sentence_english": "The judge must rule on the case.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5730 + }, + { + "word": "verbrauchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consume;to use up", + "romanization": "verbrauchen", + "example_sentence_native": "Wir verbrauchen viel Energie.", + "example_sentence_english": "We consume a lot of energy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5731 + }, + { + "word": "verbreitet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widespread;common", + "romanization": "verbreitet", + "example_sentence_native": "Diese Meinung ist weit verbreitet.", + "example_sentence_english": "This opinion is widespread.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5732 + }, + { + "word": "verknüpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to link;to connect", + "romanization": "verknüpfen", + "example_sentence_native": "Man kann diese Ideen miteinander verknüpfen.", + "example_sentence_english": "One can link these ideas together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5733 + }, + { + "word": "Verleihung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "award ceremony;presentation", + "romanization": "Verleihung", + "example_sentence_native": "Die Verleihung der Preise findet morgen statt.", + "example_sentence_english": "The award ceremony takes place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5734 + }, + { + "word": "verschließen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lock;to close", + "romanization": "verschließen", + "example_sentence_native": "Bitte verschließen Sie die Tür.", + "example_sentence_english": "Please lock the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5735 + }, + { + "word": "verändert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "changed;altered", + "romanization": "verändert", + "example_sentence_native": "Sein Aussehen hat sich stark verändert.", + "example_sentence_english": "His appearance has changed a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5736 + }, + { + "word": "vollzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full-time", + "romanization": "vollzeit", + "example_sentence_native": "Sie arbeitet vollzeit.", + "example_sentence_english": "She works full-time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5739 + }, + { + "word": "Wache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guard;watch", + "romanization": "Wache", + "example_sentence_native": "Die Wache steht vor dem Gebäude.", + "example_sentence_english": "The guard stands in front of the building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5740 + }, + { + "word": "Weltbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worldview", + "romanization": "Weltbild", + "example_sentence_native": "Sein Weltbild wurde durch die Reise verändert.", + "example_sentence_english": "His worldview was changed by the journey.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5742 + }, + { + "word": "wörtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "literal;literally", + "romanization": "wörtlich", + "example_sentence_native": "Er nahm die Anweisung wörtlich.", + "example_sentence_english": "He took the instruction literally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5744 + }, + { + "word": "Zensur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censorship", + "romanization": "Zensur", + "example_sentence_native": "Die Zensur von Informationen ist in einigen Ländern streng.", + "example_sentence_english": "The censorship of information is strict in some countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5745 + }, + { + "word": "überzeugend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convincing", + "romanization": "überzeugend", + "example_sentence_native": "Sein Argument war sehr überzeugend.", + "example_sentence_english": "His argument was very convincing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5746 + }, + { + "word": "Abbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demolition;discontinuation", + "romanization": "Abbruch", + "example_sentence_native": "Der Abbruch des alten Gebäudes beginnt nächste Woche.", + "example_sentence_english": "The demolition of the old building starts next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5747 + }, + { + "word": "Abfall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waste;rubbish", + "romanization": "Abfall", + "example_sentence_native": "Bitte trennen Sie den Abfall.", + "example_sentence_english": "Please separate the waste.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5748 + }, + { + "word": "abhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold (a meeting);to keep away;to deter", + "romanization": "abhalten", + "example_sentence_native": "Wir müssen eine Besprechung abhalten.", + "example_sentence_english": "We need to hold a meeting.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5749 + }, + { + "word": "abziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deduct;to pull off;to withdraw", + "romanization": "abziehen", + "example_sentence_native": "Sie müssen den Betrag vom Gesamtpreis abziehen.", + "example_sentence_english": "You must deduct the amount from the total price.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5750 + }, + { + "word": "Abgrenzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demarcation;delimitation;distinction", + "romanization": "Abgrenzung", + "example_sentence_native": "Eine klare Abgrenzung der Zuständigkeiten ist wichtig.", + "example_sentence_english": "A clear demarcation of responsibilities is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5751 + }, + { + "word": "Angel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishing rod;hinge", + "romanization": "Angel", + "example_sentence_native": "Er hat eine neue Angel gekauft.", + "example_sentence_english": "He bought a new fishing rod.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5752 + }, + { + "word": "Assistent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "assistant (male)", + "romanization": "Assistent", + "example_sentence_native": "Der Assistent hilft dem Professor.", + "example_sentence_english": "The assistant helps the professor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5753 + }, + { + "word": "Badezimmer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bathroom", + "romanization": "Badezimmer", + "example_sentence_native": "Das Badezimmer ist im ersten Stock.", + "example_sentence_english": "The bathroom is on the first floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5754 + }, + { + "word": "Banner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banner", + "romanization": "Banner", + "example_sentence_native": "Ein großes Banner hing über der Straße.", + "example_sentence_english": "A large banner hung over the street.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5755 + }, + { + "word": "Beifall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applause;approval", + "romanization": "Beifall", + "example_sentence_native": "Die Menge spendete lauten Beifall.", + "example_sentence_english": "The crowd gave loud applause.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5756 + }, + { + "word": "bestreiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispute;to contest;to cover (costs)", + "romanization": "bestreiten", + "example_sentence_native": "Er wollte die Anschuldigungen bestreiten.", + "example_sentence_english": "He wanted to dispute the accusations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5758 + }, + { + "word": "Bewährung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "probation;proof;trial", + "romanization": "Bewährung", + "example_sentence_native": "Er wurde zu einer Strafe auf Bewährung verurteilt.", + "example_sentence_english": "He was sentenced to a suspended sentence (probation).", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5759 + }, + { + "word": "blond", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blond", + "romanization": "blond", + "example_sentence_native": "Sie hat blonde Haare.", + "example_sentence_english": "She has blond hair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5760 + }, + { + "word": "Blues", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blues (music)", + "romanization": "Blues", + "example_sentence_native": "Ich höre gerne Blues-Musik.", + "example_sentence_english": "I like listening to blues music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5761 + }, + { + "word": "Board", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "board", + "romanization": "Board", + "example_sentence_native": "Er fährt gerne Skateboard auf seinem Board.", + "example_sentence_english": "He likes skateboarding on his board.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5762 + }, + { + "word": "Bundesstaat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal state", + "romanization": "Bundesstaat", + "example_sentence_native": "Deutschland besteht aus sechzehn Bundesstaaten.", + "example_sentence_english": "Germany consists of sixteen federal states.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5764 + }, + { + "word": "Cam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cam (camera)", + "romanization": "Cam", + "example_sentence_native": "Die Webcam, oft einfach Cam genannt, ist nützlich für Videoanrufe.", + "example_sentence_english": "The webcam, often simply called cam, is useful for video calls.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5765 + }, + { + "word": "Chronik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronicle", + "romanization": "Chronik", + "example_sentence_native": "Die Chronik der Stadt reicht bis ins Mittelalter zurück.", + "example_sentence_english": "The city's chronicle dates back to the Middle Ages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5767 + }, + { + "word": "Container", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container", + "romanization": "Container", + "example_sentence_native": "Der Hafen ist voll mit großen Containern.", + "example_sentence_english": "The port is full of large containers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5768 + }, + { + "word": "diesjährig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "this year's", + "romanization": "diesjährig", + "example_sentence_native": "Die diesjährige Konferenz findet in Berlin statt.", + "example_sentence_english": "This year's conference takes place in Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5771 + }, + { + "word": "dominieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dominate", + "romanization": "dominieren", + "example_sentence_native": "Das Team dominierte das Spiel von Anfang an.", + "example_sentence_english": "The team dominated the game from the beginning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5772 + }, + { + "word": "Ego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ego", + "romanization": "Ego", + "example_sentence_native": "Er hat ein großes Ego.", + "example_sentence_english": "He has a big ego.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5773 + }, + { + "word": "einbringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bring in;to contribute", + "romanization": "einbringen", + "example_sentence_native": "Jeder sollte seine Ideen in die Diskussion einbringen.", + "example_sentence_english": "Everyone should contribute their ideas to the discussion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5774 + }, + { + "word": "einbinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to integrate;to involve", + "romanization": "einbinden", + "example_sentence_native": "Wir müssen neue Mitarbeiter besser in das Team einbinden.", + "example_sentence_english": "We need to better integrate new employees into the team.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "binden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5775 + }, + { + "word": "einreichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to submit;to hand in", + "romanization": "einreichen", + "example_sentence_native": "Sie müssen die Unterlagen bis Freitag einreichen.", + "example_sentence_english": "You must submit the documents by Friday.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "reichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5776 + }, + { + "word": "entfernt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant;far away", + "romanization": "entfernt", + "example_sentence_native": "Das Dorf ist weit entfernt von der Stadt.", + "example_sentence_english": "The village is far away from the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5778 + }, + { + "word": "ergreifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seize;to grasp;to take (an opportunity)", + "romanization": "ergreifen", + "example_sentence_native": "Er musste die Gelegenheit ergreifen.", + "example_sentence_english": "He had to seize the opportunity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5779 + }, + { + "word": "Ermittler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "investigator", + "romanization": "Ermittler", + "example_sentence_native": "Der Ermittler befragte die Zeugen.", + "example_sentence_english": "The investigator questioned the witnesses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5780 + }, + { + "word": "Erzbischof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archbishop", + "romanization": "Erzbischof", + "example_sentence_native": "Der Erzbischof hielt eine Predigt.", + "example_sentence_english": "The archbishop gave a sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5781 + }, + { + "word": "extern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "external", + "romanization": "extern", + "example_sentence_native": "Wir haben einen externen Berater engagiert.", + "example_sentence_english": "We hired an external consultant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5783 + }, + { + "word": "Fachkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skilled worker", + "romanization": "Fachkraft", + "example_sentence_native": "Es gibt einen Mangel an Fachkräften in diesem Bereich.", + "example_sentence_english": "There is a shortage of skilled workers in this field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5784 + }, + { + "word": "Generalsekretär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secretary-general", + "romanization": "Generalsekretär", + "example_sentence_native": "Der Generalsekretär der Vereinten Nationen besuchte das Land.", + "example_sentence_english": "The Secretary-General of the United Nations visited the country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5789 + }, + { + "word": "Geste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gesture", + "romanization": "Geste", + "example_sentence_native": "Er machte eine einladende Geste.", + "example_sentence_english": "He made an inviting gesture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5790 + }, + { + "word": "Interessent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interested party", + "romanization": "Interessent", + "example_sentence_native": "Wir haben mehrere Interessenten für die Wohnung.", + "example_sentence_english": "We have several interested parties for the apartment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5797 + }, + { + "word": "Key", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "key", + "romanization": "Key", + "example_sentence_native": "Bitte geben Sie den Lizenz-Key ein.", + "example_sentence_english": "Please enter the license key.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5798 + }, + { + "word": "Kilogramm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram", + "romanization": "Kilogramm", + "example_sentence_native": "Ich brauche ein Kilogramm Äpfel.", + "example_sentence_english": "I need one kilogram of apples.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5799 + }, + { + "word": "Klarheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarity", + "romanization": "Klarheit", + "example_sentence_native": "Er sprach mit großer Klarheit.", + "example_sentence_english": "He spoke with great clarity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5800 + }, + { + "word": "kommunistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communist", + "romanization": "kommunistisch", + "example_sentence_native": "Die kommunistische Partei wurde verboten.", + "example_sentence_english": "The communist party was banned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5801 + }, + { + "word": "Kreditkarte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "credit card", + "romanization": "Kreditkarte", + "example_sentence_native": "Kann ich mit Kreditkarte bezahlen?", + "example_sentence_english": "Can I pay with a credit card?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5802 + }, + { + "word": "liebevoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loving;affectionate", + "romanization": "liebevoll", + "example_sentence_native": "Sie gab ihm eine liebevolle Umarmung.", + "example_sentence_english": "She gave him a loving hug.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5803 + }, + { + "word": "lila", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "purple;lilac", + "romanization": "lila", + "example_sentence_native": "Das Kleid ist lila.", + "example_sentence_english": "The dress is purple.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5804 + }, + { + "word": "Majestät", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Majesty", + "romanization": "Majestät", + "example_sentence_native": "Eure Majestät, der König wartet.", + "example_sentence_english": "Your Majesty, the king is waiting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5809 + }, + { + "word": "mangelnd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking;insufficient", + "romanization": "mangelnd", + "example_sentence_native": "Aufgrund mangelnder Erfahrung konnte er die Aufgabe nicht lösen.", + "example_sentence_english": "Due to a lack of experience, he could not solve the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5810 + }, + { + "word": "mies", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lousy;rotten;bad", + "romanization": "mies", + "example_sentence_native": "Das Wetter ist heute mies.", + "example_sentence_english": "The weather is lousy today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5812 + }, + { + "word": "mischen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mix;to shuffle", + "romanization": "mischen", + "example_sentence_native": "Bitte mischen Sie die Karten.", + "example_sentence_english": "Please shuffle the cards.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5813 + }, + { + "word": "Neonazi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neo-Nazi", + "romanization": "Neonazi", + "example_sentence_native": "Die Polizei verhaftete einen Neonazi.", + "example_sentence_english": "The police arrested a neo-Nazi.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5817 + }, + { + "word": "nüchtern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sober;factual;dispassionate", + "romanization": "nüchtern", + "example_sentence_native": "Er blieb nüchtern, obwohl alle anderen tranken.", + "example_sentence_english": "He remained sober, although everyone else was drinking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5818 + }, + { + "word": "optisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optical;visual", + "romanization": "optisch", + "example_sentence_native": "Das ist optisch sehr ansprechend.", + "example_sentence_english": "That is optically very appealing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5819 + }, + { + "word": "Periode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period", + "romanization": "Periode", + "example_sentence_native": "Die Periode dauerte drei Wochen.", + "example_sentence_english": "The period lasted three weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5821 + }, + { + "word": "Porträt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portrait", + "romanization": "Porträt", + "example_sentence_native": "Sie malte ein Porträt ihres Sohnes.", + "example_sentence_english": "She painted a portrait of her son.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5823 + }, + { + "word": "regulär", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regular", + "romanization": "regulär", + "example_sentence_native": "Das ist der reguläre Preis.", + "example_sentence_english": "That is the regular price.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5826 + }, + { + "word": "Revision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revision", + "romanization": "Revision", + "example_sentence_native": "Die Revision des Dokuments ist abgeschlossen.", + "example_sentence_english": "The revision of the document is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5829 + }, + { + "word": "Rezeption", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reception", + "romanization": "Rezeption", + "example_sentence_native": "Bitte melden Sie sich an der Rezeption.", + "example_sentence_english": "Please check in at the reception.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5831 + }, + { + "word": "Sexualität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexuality", + "romanization": "Sexualität", + "example_sentence_native": "Die Sexualität ist ein wichtiger Aspekt des menschlichen Lebens.", + "example_sentence_english": "Sexuality is an important aspect of human life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5833 + }, + { + "word": "sowjetisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Soviet", + "romanization": "sowjetisch", + "example_sentence_native": "Die sowjetische Union existiert nicht mehr.", + "example_sentence_english": "The Soviet Union no longer exists.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5834 + }, + { + "word": "Soziologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociology", + "romanization": "Soziologie", + "example_sentence_native": "Sie studiert Soziologie an der Universität.", + "example_sentence_english": "She studies sociology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5835 + }, + { + "word": "syrisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Syrian", + "romanization": "syrisch", + "example_sentence_native": "Sie hat syrische Wurzeln.", + "example_sentence_english": "She has Syrian roots.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5840 + }, + { + "word": "Tablette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablet;pill", + "romanization": "Tablette", + "example_sentence_native": "Bitte nehmen Sie eine Tablette vor dem Schlafengehen.", + "example_sentence_english": "Please take a tablet before going to bed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5842 + }, + { + "word": "Thematik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "topic;subject matter", + "romanization": "Thematik", + "example_sentence_native": "Die Thematik des Buches ist sehr komplex.", + "example_sentence_english": "The topic of the book is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5843 + }, + { + "word": "thematisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to address (a topic);to make a topic of discussion", + "romanization": "thematisieren", + "example_sentence_native": "Wir sollten dieses Problem thematisieren.", + "example_sentence_english": "We should address this problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5844 + }, + { + "word": "umbringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to kill;to murder", + "romanization": "umbringen", + "example_sentence_native": "Er drohte, sich umzubringen.", + "example_sentence_english": "He threatened to kill himself.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5845 + }, + { + "word": "Unterscheidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinction;differentiation", + "romanization": "Unterscheidung", + "example_sentence_native": "Es gibt eine klare Unterscheidung zwischen den beiden Konzepten.", + "example_sentence_english": "There is a clear distinction between the two concepts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5846 + }, + { + "word": "Unterstützer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supporter", + "romanization": "Unterstützer", + "example_sentence_native": "Er ist ein großer Unterstützer des Projekts.", + "example_sentence_english": "He is a big supporter of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5847 + }, + { + "word": "verstossen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to violate;to offend;to cast out", + "romanization": "verstossen", + "example_sentence_native": "Er hat gegen die Regeln verstossen.", + "example_sentence_english": "He violated the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5848 + }, + { + "word": "verwechseln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confuse;to mix up", + "romanization": "verwechseln", + "example_sentence_native": "Ich habe die beiden Namen verwechselt.", + "example_sentence_english": "I confused the two names.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5849 + }, + { + "word": "vorallem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially;above all", + "romanization": "vorallem", + "example_sentence_native": "Er mag Sport, vorallem Fußball.", + "example_sentence_english": "He likes sports, especially football.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5850 + }, + { + "word": "Wettkampf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition;contest", + "romanization": "Wettkampf", + "example_sentence_native": "Sie bereitet sich auf den Wettkampf vor.", + "example_sentence_english": "She is preparing for the competition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5853 + }, + { + "word": "Wohnhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "residential building;apartment building", + "romanization": "Wohnhaus", + "example_sentence_native": "Das Wohnhaus hat viele Wohnungen.", + "example_sentence_english": "The residential building has many apartments.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5855 + }, + { + "word": "Wörterbuch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dictionary", + "romanization": "Wörterbuch", + "example_sentence_native": "Ich benutze ein Wörterbuch, um neue Wörter zu lernen.", + "example_sentence_english": "I use a dictionary to learn new words.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5858 + }, + { + "word": "zurückziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to withdraw;to pull back", + "romanization": "zurückziehen", + "example_sentence_native": "Er musste seine Kandidatur zurückziehen.", + "example_sentence_english": "He had to withdraw his candidacy.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5860 + }, + { + "word": "Zutat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ingredient", + "romanization": "Zutat", + "example_sentence_native": "Alle Zutaten sind frisch.", + "example_sentence_english": "All ingredients are fresh.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5861 + }, + { + "word": "Überschrift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headline;heading", + "romanization": "Überschrift", + "example_sentence_native": "Die Überschrift des Artikels war sehr prägnant.", + "example_sentence_english": "The headline of the article was very concise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5862 + }, + { + "word": "Akzent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accent", + "romanization": "Akzent", + "example_sentence_native": "Sie spricht Deutsch mit einem französischen Akzent.", + "example_sentence_english": "She speaks German with a French accent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5863 + }, + { + "word": "anderswo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elsewhere", + "romanization": "anderswo", + "example_sentence_native": "Vielleicht finden wir es anderswo.", + "example_sentence_english": "Maybe we'll find it elsewhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5864 + }, + { + "word": "Athlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "athlete", + "romanization": "Athlet", + "example_sentence_native": "Der Athlet trainiert jeden Tag.", + "example_sentence_english": "The athlete trains every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5865 + }, + { + "word": "aufmachen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to open", + "romanization": "aufmachen", + "example_sentence_native": "Kannst du bitte das Fenster aufmachen?", + "example_sentence_english": "Can you please open the window?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5866 + }, + { + "word": "aussteigen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get off;out;to exit", + "romanization": "aussteigen", + "example_sentence_native": "Wir müssen an der nächsten Haltestelle aussteigen.", + "example_sentence_english": "We have to get off at the next stop.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "steigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5867 + }, + { + "word": "ausverkauft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sold out", + "romanization": "ausverkauft", + "example_sentence_native": "Das Konzert ist leider ausverkauft.", + "example_sentence_english": "The concert is unfortunately sold out.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5868 + }, + { + "word": "beiseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aside;to the side", + "romanization": "beiseite", + "example_sentence_native": "Er legte das Buch beiseite.", + "example_sentence_english": "He put the book aside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 5869 + }, + { + "word": "besagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state;to say", + "romanization": "besagen", + "example_sentence_native": "Das Gesetz besagt, dass alle Bürger gleich sind.", + "example_sentence_english": "The law states that all citizens are equal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5870 + }, + { + "word": "Bundesstrasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal highway", + "romanization": "Bundesstrasse", + "example_sentence_native": "Die Bundesstrasse führt direkt durch die Stadt.", + "example_sentence_english": "The federal highway leads directly through the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5874 + }, + { + "word": "Darm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intestine;bowel", + "romanization": "Darm", + "example_sentence_native": "Der Darm spielt eine wichtige Rolle bei der Verdauung.", + "example_sentence_english": "The intestine plays an important role in digestion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5876 + }, + { + "word": "Dialekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialect", + "romanization": "Dialekt", + "example_sentence_native": "In dieser Region wird ein besonderer Dialekt gesprochen.", + "example_sentence_english": "A special dialect is spoken in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5877 + }, + { + "word": "dramatisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dramatic", + "romanization": "dramatisch", + "example_sentence_native": "Die Situation wurde dramatisch.", + "example_sentence_english": "The situation became dramatic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5878 + }, + { + "word": "einbeziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to include;to involve", + "romanization": "einbeziehen", + "example_sentence_native": "Wir sollten alle Meinungen in die Diskussion einbeziehen.", + "example_sentence_english": "We should include all opinions in the discussion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "beziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5879 + }, + { + "word": "Empörung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outrage", + "romanization": "Empörung", + "example_sentence_native": "Die Empörung über die Entscheidung war groß.", + "example_sentence_english": "The outrage over the decision was great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5880 + }, + { + "word": "erwünscht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desired;welcome", + "romanization": "erwünscht", + "example_sentence_native": "Ihr Besuch ist jederzeit erwünscht.", + "example_sentence_english": "Your visit is always welcome.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5881 + }, + { + "word": "Fell", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fur;coat (animal)", + "romanization": "Fell", + "example_sentence_native": "Das Fell des Hundes ist sehr weich.", + "example_sentence_english": "The dog's fur is very soft.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5882 + }, + { + "word": "freigeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to release;to approve", + "romanization": "freigeben", + "example_sentence_native": "Die Dokumente wurden zur Veröffentlichung freigegeben.", + "example_sentence_english": "The documents were released for publication.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "frei", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5885 + }, + { + "word": "Frost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frost", + "romanization": "Frost", + "example_sentence_native": "Heute Nacht gibt es starken Frost.", + "example_sentence_english": "There will be heavy frost tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5886 + }, + { + "word": "Gebot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commandment;bid", + "romanization": "Gebot", + "example_sentence_native": "Das ist ein wichtiges Gebot.", + "example_sentence_english": "That is an important commandment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5888 + }, + { + "word": "Gläubige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "believer", + "romanization": "Gläubige", + "example_sentence_native": "Die Gläubigen versammelten sich in der Kirche.", + "example_sentence_english": "The believers gathered in the church.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5889 + }, + { + "word": "Grube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pit;hole", + "romanization": "Grube", + "example_sentence_native": "Sie fielen in eine tiefe Grube.", + "example_sentence_english": "They fell into a deep pit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5890 + }, + { + "word": "Gärtner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gardener", + "romanization": "Gärtner", + "example_sentence_native": "Der Gärtner pflegt die Blumen.", + "example_sentence_english": "The gardener takes care of the flowers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5891 + }, + { + "word": "Homosexualität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homosexuality", + "romanization": "Homosexualität", + "example_sentence_native": "Homosexualität ist in vielen Ländern akzeptiert.", + "example_sentence_english": "Homosexuality is accepted in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5892 + }, + { + "word": "höflich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polite", + "romanization": "höflich", + "example_sentence_native": "Er ist immer sehr höflich.", + "example_sentence_english": "He is always very polite.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5894 + }, + { + "word": "Kanzlei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "law firm;chancellery", + "romanization": "Kanzlei", + "example_sentence_native": "Er arbeitet in einer großen Kanzlei.", + "example_sentence_english": "He works in a large law firm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5897 + }, + { + "word": "Kerze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "candle", + "romanization": "Kerze", + "example_sentence_native": "Zünde bitte die Kerze an.", + "example_sentence_english": "Please light the candle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5898 + }, + { + "word": "Konsument", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumer", + "romanization": "Konsument", + "example_sentence_native": "Der Konsument hat das Recht auf Information.", + "example_sentence_english": "The consumer has the right to information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5899 + }, + { + "word": "Kostüm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "costume", + "romanization": "Kostüm", + "example_sentence_native": "Sie trug ein lustiges Kostüm zur Party.", + "example_sentence_english": "She wore a funny costume to the party.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5900 + }, + { + "word": "Laser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laser", + "romanization": "Laser", + "example_sentence_native": "Der Laser wird in vielen Technologien eingesetzt.", + "example_sentence_english": "The laser is used in many technologies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5902 + }, + { + "word": "Lesung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reading;recital", + "romanization": "Lesung", + "example_sentence_native": "Die Autorin hielt eine Lesung aus ihrem neuen Buch.", + "example_sentence_english": "The author gave a reading from her new book.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5903 + }, + { + "word": "Logistik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logistics", + "romanization": "Logistik", + "example_sentence_native": "Die Logistik ist entscheidend für den Erfolg des Unternehmens.", + "example_sentence_english": "Logistics is crucial for the company's success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5904 + }, + { + "word": "Maut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toll", + "romanization": "Maut", + "example_sentence_native": "Für die Nutzung der Autobahn muss man eine Maut bezahlen.", + "example_sentence_english": "You have to pay a toll to use the highway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5905 + }, + { + "word": "mehrheitlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predominantly;by majority", + "romanization": "mehrheitlich", + "example_sentence_native": "Die Entscheidung wurde mehrheitlich getroffen.", + "example_sentence_english": "The decision was made predominantly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5906 + }, + { + "word": "neutral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neutral", + "romanization": "neutral", + "example_sentence_native": "Die Schweiz ist ein neutrales Land.", + "example_sentence_english": "Switzerland is a neutral country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5909 + }, + { + "word": "Niederschlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precipitation;rainfall", + "romanization": "Niederschlag", + "example_sentence_native": "Wir erwarten heute viel Niederschlag.", + "example_sentence_english": "We expect a lot of precipitation today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5910 + }, + { + "word": "Order", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "order (command or commercial order)", + "romanization": "Order", + "example_sentence_native": "Die Firma erhielt eine große Order aus dem Ausland.", + "example_sentence_english": "The company received a large order from abroad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5911 + }, + { + "word": "Page", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bellboy;pageboy", + "romanization": "Page", + "example_sentence_native": "Der Page brachte die Koffer auf das Zimmer.", + "example_sentence_english": "The bellboy brought the suitcases to the room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5912 + }, + { + "word": "Pest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plague;pestilence", + "romanization": "Pest", + "example_sentence_native": "Im Mittelalter forderte die Pest viele Opfer.", + "example_sentence_english": "In the Middle Ages, the plague claimed many victims.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5913 + }, + { + "word": "platt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat;dull;stale", + "romanization": "platt", + "example_sentence_native": "Der Reifen ist platt.", + "example_sentence_english": "The tire is flat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5914 + }, + { + "word": "Poster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster", + "romanization": "Poster", + "example_sentence_native": "Sie hängte ein neues Poster an die Wand.", + "example_sentence_english": "She hung a new poster on the wall.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5915 + }, + { + "word": "Release", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "release (e.g.;software;music)", + "romanization": "Release", + "example_sentence_native": "Das neue Software-Release ist für nächste Woche geplant.", + "example_sentence_english": "The new software release is planned for next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5917 + }, + { + "word": "Roller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scooter", + "romanization": "Roller", + "example_sentence_native": "Er fährt jeden Tag mit seinem Roller zur Arbeit.", + "example_sentence_english": "He rides his scooter to work every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5918 + }, + { + "word": "Run", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run (e.g.;a rush;a demand)", + "romanization": "Run", + "example_sentence_native": "Der Run auf die neuen Aktien war enorm.", + "example_sentence_english": "The run on the new shares was enormous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5920 + }, + { + "word": "Rückblick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retrospect;review", + "romanization": "Rückblick", + "example_sentence_native": "Im Rückblick war es eine gute Entscheidung.", + "example_sentence_english": "In retrospect, it was a good decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5921 + }, + { + "word": "scheiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to separate;to divorce;to depart", + "romanization": "scheiden", + "example_sentence_native": "Sie haben sich nach 20 Jahren Ehe scheiden lassen.", + "example_sentence_english": "They divorced after 20 years of marriage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5923 + }, + { + "word": "schwäbisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Swabian", + "romanization": "schwäbisch", + "example_sentence_native": "Er spricht einen schwäbischen Dialekt.", + "example_sentence_english": "He speaks a Swabian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5925 + }, + { + "word": "Sektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "section;dissection;department", + "romanization": "Sektion", + "example_sentence_native": "Die Sektion für Anatomie befindet sich im Erdgeschoss.", + "example_sentence_english": "The section for anatomy is on the ground floor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5926 + }, + { + "word": "Spezialist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialist", + "romanization": "Spezialist", + "example_sentence_native": "Er ist ein Spezialist für alte Sprachen.", + "example_sentence_english": "He is a specialist in ancient languages.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5928 + }, + { + "word": "Staatssekretär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "State Secretary;Permanent Secretary", + "romanization": "Staatssekretär", + "example_sentence_native": "Der Staatssekretär hielt eine Rede.", + "example_sentence_english": "The State Secretary gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5929 + }, + { + "word": "streben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strive;to aspire", + "romanization": "streben", + "example_sentence_native": "Er strebt nach Perfektion.", + "example_sentence_english": "He strives for perfection.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5930 + }, + { + "word": "Streik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strike", + "romanization": "Streik", + "example_sentence_native": "Die Arbeiter traten in den Streik.", + "example_sentence_english": "The workers went on strike.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5931 + }, + { + "word": "stützen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support;to prop up", + "romanization": "stützen", + "example_sentence_native": "Er musste sich an der Wand stützen.", + "example_sentence_english": "He had to support himself against the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5932 + }, + { + "word": "Suite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suite", + "romanization": "Suite", + "example_sentence_native": "Wir haben eine Suite im Hotel gebucht.", + "example_sentence_english": "We booked a suite in the hotel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5933 + }, + { + "word": "Tech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tech;technology", + "romanization": "Tech", + "example_sentence_native": "Die Tech-Branche wächst schnell.", + "example_sentence_english": "The tech industry is growing fast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5935 + }, + { + "word": "Todesstrafe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "death penalty", + "romanization": "Todesstrafe", + "example_sentence_native": "Die Todesstrafe ist in vielen Ländern abgeschafft.", + "example_sentence_english": "The death penalty has been abolished in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5937 + }, + { + "word": "tätigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make;to carry out;to effect", + "romanization": "tätigen", + "example_sentence_native": "Er tätigte eine große Investition.", + "example_sentence_english": "He made a large investment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5938 + }, + { + "word": "Unsicherheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncertainty", + "romanization": "Unsicherheit", + "example_sentence_native": "Es gab eine große Unsicherheit über die Zukunft.", + "example_sentence_english": "There was great uncertainty about the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5940 + }, + { + "word": "untersagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to forbid;to prohibit", + "romanization": "untersagen", + "example_sentence_native": "Der Arzt untersagte ihm das Rauchen.", + "example_sentence_english": "The doctor forbade him to smoke.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5941 + }, + { + "word": "Wanderung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hike;migration", + "romanization": "Wanderung", + "example_sentence_native": "Wir machten eine lange Wanderung in den Bergen.", + "example_sentence_english": "We took a long hike in the mountains.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5942 + }, + { + "word": "widerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgusting;repulsive", + "romanization": "widerlich", + "example_sentence_native": "Der Geruch war absolut widerlich.", + "example_sentence_english": "The smell was absolutely disgusting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5943 + }, + { + "word": "Zahnarzt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dentist", + "romanization": "Zahnarzt", + "example_sentence_native": "Ich muss einen Termin beim Zahnarzt machen.", + "example_sentence_english": "I need to make an appointment with the dentist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5944 + }, + { + "word": "Zusatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addition;supplement", + "romanization": "Zusatz", + "example_sentence_native": "Dieser Joghurt enthält keine künstlichen Zusätze.", + "example_sentence_english": "This yogurt contains no artificial additives.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5945 + }, + { + "word": "Übergabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handover;delivery", + "romanization": "Übergabe", + "example_sentence_native": "Die Übergabe der Dokumente erfolgte pünktlich.", + "example_sentence_english": "The handover of the documents took place on time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5946 + }, + { + "word": "abbilden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depict;to illustrate", + "romanization": "abbilden", + "example_sentence_native": "Das Buch bildet die Geschichte sehr genau ab.", + "example_sentence_english": "The book depicts the history very accurately.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "bilden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5947 + }, + { + "word": "abschneiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut off;to perform (well;badly)", + "romanization": "abschneiden", + "example_sentence_native": "Er schnitt sich ein Stück Brot ab. Wie hast du bei der Prüfung abgeschnitten?", + "example_sentence_english": "He cut off a piece of bread. How did you perform on the exam?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schneiden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5948 + }, + { + "word": "Areal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "area;zone", + "romanization": "Areal", + "example_sentence_native": "Das Areal wird für den Bau neuer Wohnungen genutzt.", + "example_sentence_english": "The area is being used for the construction of new apartments.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5951 + }, + { + "word": "asiatisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Asian", + "romanization": "asiatisch", + "example_sentence_native": "Sie mag asiatisches Essen sehr gerne.", + "example_sentence_english": "She likes Asian food very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5952 + }, + { + "word": "Attacke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attack", + "romanization": "Attacke", + "example_sentence_native": "Die Attacke kam völlig unerwartet.", + "example_sentence_english": "The attack came completely unexpectedly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5953 + }, + { + "word": "aufteilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to divide;to split up", + "romanization": "aufteilen", + "example_sentence_native": "Wir müssen die Arbeit unter uns aufteilen.", + "example_sentence_english": "We need to divide the work among ourselves.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "teilen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5954 + }, + { + "word": "Aussprache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pronunciation", + "romanization": "Aussprache", + "example_sentence_native": "Seine Aussprache ist sehr gut.", + "example_sentence_english": "His pronunciation is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5955 + }, + { + "word": "Ausstrahlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charisma;broadcast;emission", + "romanization": "Ausstrahlung", + "example_sentence_native": "Sie hat eine unglaubliche Ausstrahlung. Die Ausstrahlung der Sendung ist nächste Woche.", + "example_sentence_english": "She has incredible charisma. The broadcast of the show is next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5956 + }, + { + "word": "Austritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exit;withdrawal;resignation", + "romanization": "Austritt", + "example_sentence_native": "Der Austritt aus der Partei war eine schwierige Entscheidung.", + "example_sentence_english": "The withdrawal from the party was a difficult decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5957 + }, + { + "word": "Befragung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey;interrogation;questioning", + "romanization": "Befragung", + "example_sentence_native": "Die Ergebnisse der Befragung werden bald veröffentlicht.", + "example_sentence_english": "The results of the survey will be published soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5958 + }, + { + "word": "beibringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to teach;to inflict (a wound);to provide (evidence)", + "romanization": "beibringen", + "example_sentence_native": "Er hat mir das Schwimmen beigebracht.", + "example_sentence_english": "He taught me how to swim.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5959 + }, + { + "word": "beliebig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitrary;any", + "romanization": "beliebig", + "example_sentence_native": "Sie können eine beliebige Farbe wählen.", + "example_sentence_english": "You can choose any color.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5960 + }, + { + "word": "Bundeskanzlerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Federal Chancellor (female)", + "romanization": "Bundeskanzlerin", + "example_sentence_native": "Die Bundeskanzlerin hielt eine Rede.", + "example_sentence_english": "The Federal Chancellor gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5962 + }, + { + "word": "defekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defective;broken", + "romanization": "defekt", + "example_sentence_native": "Der Drucker ist defekt.", + "example_sentence_english": "The printer is defective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5965 + }, + { + "word": "Duft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scent;fragrance", + "romanization": "Duft", + "example_sentence_native": "Der Duft der Blumen ist wunderbar.", + "example_sentence_english": "The scent of the flowers is wonderful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5966 + }, + { + "word": "einschalten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to switch on;to turn on", + "romanization": "einschalten", + "example_sentence_native": "Bitte schalten Sie das Licht ein.", + "example_sentence_english": "Please turn on the light.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5968 + }, + { + "word": "einzigartig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unique", + "romanization": "einzigartig", + "example_sentence_native": "Das ist eine einzigartige Gelegenheit.", + "example_sentence_english": "This is a unique opportunity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 5969 + }, + { + "word": "Elefant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elephant", + "romanization": "Elefant", + "example_sentence_native": "Der Elefant ist ein großes Tier.", + "example_sentence_english": "The elephant is a big animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5970 + }, + { + "word": "Erforschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research;exploration", + "romanization": "Erforschung", + "example_sentence_native": "Die Erforschung des Weltraums ist faszinierend.", + "example_sentence_english": "The exploration of space is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5971 + }, + { + "word": "ersparen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to save (someone something);to spare", + "romanization": "ersparen", + "example_sentence_native": "Ich möchte dir die Mühe ersparen.", + "example_sentence_english": "I want to spare you the trouble.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5972 + }, + { + "word": "Feuerwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fireworks", + "romanization": "Feuerwerk", + "example_sentence_native": "Das Feuerwerk war wunderschön.", + "example_sentence_english": "The fireworks were beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5973 + }, + { + "word": "Gefecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "combat;skirmish;engagement", + "romanization": "Gefecht", + "example_sentence_native": "Sie lieferten sich ein heftiges Gefecht.", + "example_sentence_english": "They engaged in a fierce combat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5975 + }, + { + "word": "Gehäuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casing;housing;enclosure", + "romanization": "Gehäuse", + "example_sentence_native": "Das Gehäuse des Computers ist aus Metall.", + "example_sentence_english": "The computer's casing is made of metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5976 + }, + { + "word": "Grundrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamental right;basic right", + "romanization": "Grundrecht", + "example_sentence_native": "Meinungsfreiheit ist ein Grundrecht.", + "example_sentence_english": "Freedom of speech is a fundamental right.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5977 + }, + { + "word": "Gunst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "favor;goodwill", + "romanization": "Gunst", + "example_sentence_native": "Er versuchte, ihre Gunst zu gewinnen.", + "example_sentence_english": "He tried to win her favor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5978 + }, + { + "word": "Heilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healing;cure", + "romanization": "Heilung", + "example_sentence_native": "Die Heilung der Wunde dauerte Wochen.", + "example_sentence_english": "The healing of the wound took weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5980 + }, + { + "word": "Individuum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual", + "romanization": "Individuum", + "example_sentence_native": "Jedes Individuum hat das Recht auf freie Meinungsäußerung.", + "example_sentence_english": "Every individual has the right to free speech.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5983 + }, + { + "word": "Installation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installation", + "romanization": "Installation", + "example_sentence_native": "Die Installation der Software war einfach.", + "example_sentence_english": "The installation of the software was easy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5984 + }, + { + "word": "Jersey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jersey (fabric;garment)", + "romanization": "Jersey", + "example_sentence_native": "Ich trage gerne einen bequemen Jersey-Pullover.", + "example_sentence_english": "I like to wear a comfortable jersey sweater.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5986 + }, + { + "word": "Killer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "killer", + "romanization": "Killer", + "example_sentence_native": "Der Killer wurde von der Polizei gefasst.", + "example_sentence_english": "The killer was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5991 + }, + { + "word": "Kombi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "station wagon;estate car", + "romanization": "Kombi", + "example_sentence_native": "Wir haben einen neuen Kombi gekauft.", + "example_sentence_english": "We bought a new station wagon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5993 + }, + { + "word": "Kopfhörer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "headphones", + "romanization": "Kopfhörer", + "example_sentence_native": "Ich höre Musik mit meinen Kopfhörern.", + "example_sentence_english": "I listen to music with my headphones.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5994 + }, + { + "word": "Kurier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courier", + "romanization": "Kurier", + "example_sentence_native": "Der Kurier lieferte das Paket pünktlich.", + "example_sentence_english": "The courier delivered the package on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5995 + }, + { + "word": "Laufzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "runtime;term;duration", + "romanization": "Laufzeit", + "example_sentence_native": "Die Laufzeit des Vertrags beträgt fünf Jahre.", + "example_sentence_english": "The term of the contract is five years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 5997 + }, + { + "word": "lecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lick", + "romanization": "lecken", + "example_sentence_native": "Der Hund begann, sein Fell zu lecken.", + "example_sentence_english": "The dog started to lick its fur.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 5998 + }, + { + "word": "Migrationshintergrund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migration background", + "romanization": "Migrationshintergrund", + "example_sentence_native": "Viele Menschen in Deutschland haben einen Migrationshintergrund.", + "example_sentence_english": "Many people in Germany have a migration background.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6000 + }, + { + "word": "Nebenwirkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "side effect", + "romanization": "Nebenwirkung", + "example_sentence_native": "Lesen Sie die Packungsbeilage wegen möglicher Nebenwirkungen.", + "example_sentence_english": "Read the package insert for possible side effects.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6002 + }, + { + "word": "Pistole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pistol", + "romanization": "Pistole", + "example_sentence_native": "Der Polizist zog seine Pistole.", + "example_sentence_english": "The policeman drew his pistol.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6006 + }, + { + "word": "Pole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pole (person from Poland)", + "romanization": "Pole", + "example_sentence_native": "Er ist ein Pole.", + "example_sentence_english": "He is a Pole.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6007 + }, + { + "word": "Pommes", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fries;chips", + "romanization": "Pommes", + "example_sentence_native": "Ich hätte gerne Pommes mit Ketchup.", + "example_sentence_english": "I would like fries with ketchup.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6008 + }, + { + "word": "Port", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "port;harbor", + "romanization": "Port", + "example_sentence_native": "Das Schiff fuhr in den Port ein.", + "example_sentence_english": "The ship entered the port.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6009 + }, + { + "word": "Portion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "portion;serving", + "romanization": "Portion", + "example_sentence_native": "Eine kleine Portion Eis, bitte.", + "example_sentence_english": "A small portion of ice cream, please.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6010 + }, + { + "word": "Protagonist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protagonist", + "romanization": "Protagonist", + "example_sentence_native": "Der Protagonist der Geschichte war ein junger Held.", + "example_sentence_english": "The protagonist of the story was a young hero.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6012 + }, + { + "word": "Präsidentin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "president (female)", + "romanization": "Präsidentin", + "example_sentence_native": "Die Präsidentin hielt eine Rede.", + "example_sentence_english": "The president held a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6013 + }, + { + "word": "Ratgeber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advisor;guide;guidebook", + "romanization": "Ratgeber", + "example_sentence_native": "Ich habe einen guten Ratgeber für Gartenarbeit gefunden.", + "example_sentence_english": "I found a good guide for gardening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6015 + }, + { + "word": "Regal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shelf;bookcase", + "romanization": "Regal", + "example_sentence_native": "Das Buch steht im Regal.", + "example_sentence_english": "The book is on the shelf.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6016 + }, + { + "word": "Räuber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "robber", + "romanization": "Räuber", + "example_sentence_native": "Der Räuber wurde von der Polizei gefasst.", + "example_sentence_english": "The robber was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6018 + }, + { + "word": "Salon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salon;lounge", + "romanization": "Salon", + "example_sentence_native": "Der Salon war elegant eingerichtet.", + "example_sentence_english": "The salon was elegantly furnished.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6020 + }, + { + "word": "schildern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "describe;depict", + "romanization": "schildern", + "example_sentence_native": "Er schilderte die Ereignisse detailliert.", + "example_sentence_english": "He described the events in detail.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6021 + }, + { + "word": "schräg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slanted;oblique;quirky", + "romanization": "schräg", + "example_sentence_native": "Das Bild hängt etwas schräg.", + "example_sentence_english": "The picture is hanging a bit crooked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6022 + }, + { + "word": "Schublade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawer", + "romanization": "Schublade", + "example_sentence_native": "Die Dokumente sind in der Schublade.", + "example_sentence_english": "The documents are in the drawer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6023 + }, + { + "word": "Schwung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "momentum;swing;verve", + "romanization": "Schwung", + "example_sentence_native": "Er gab dem Ball einen kräftigen Schwung.", + "example_sentence_english": "He gave the ball a powerful swing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6024 + }, + { + "word": "Siedlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "settlement;housing estate", + "romanization": "Siedlung", + "example_sentence_native": "Sie leben in einer neuen Siedlung am Stadtrand.", + "example_sentence_english": "They live in a new settlement on the outskirts of the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6025 + }, + { + "word": "sonderlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiar;particular", + "romanization": "sonderlich", + "example_sentence_native": "Das ist nichts sonderlich Neues.", + "example_sentence_english": "That's nothing particularly new.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6027 + }, + { + "word": "spezifisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specific", + "romanization": "spezifisch", + "example_sentence_native": "Wir brauchen spezifische Informationen.", + "example_sentence_english": "We need specific information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6029 + }, + { + "word": "Stadium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stadium;stage", + "romanization": "Stadium", + "example_sentence_native": "Das Konzert findet im Olympiastadium statt.", + "example_sentence_english": "The concert is taking place in the Olympic Stadium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6030 + }, + { + "word": "Streitkraft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armed force;military force", + "romanization": "Streitkraft", + "example_sentence_native": "Die Streitkräfte des Landes wurden mobilisiert.", + "example_sentence_english": "The country's armed forces were mobilized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6031 + }, + { + "word": "Take", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "take (film;music)", + "romanization": "Take", + "example_sentence_native": "Der erste Take war perfekt.", + "example_sentence_english": "The first take was perfect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6033 + }, + { + "word": "Terrorismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrorism", + "romanization": "Terrorismus", + "example_sentence_native": "Der Kampf gegen den Terrorismus ist eine globale Herausforderung.", + "example_sentence_english": "The fight against terrorism is a global challenge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6034 + }, + { + "word": "Trip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trip (journey)", + "romanization": "Trip", + "example_sentence_native": "Wir machten einen kurzen Trip nach Berlin.", + "example_sentence_english": "We took a short trip to Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6036 + }, + { + "word": "unzufrieden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dissatisfied;unhappy", + "romanization": "unzufrieden", + "example_sentence_native": "Sie war mit dem Ergebnis unzufrieden.", + "example_sentence_english": "She was dissatisfied with the result.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6037 + }, + { + "word": "verdrängen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "displace;suppress;push away", + "romanization": "verdrängen", + "example_sentence_native": "Er versuchte, die schlechten Erinnerungen zu verdrängen.", + "example_sentence_english": "He tried to suppress the bad memories.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6038 + }, + { + "word": "Vita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "curriculum vitae;life story", + "romanization": "Vita", + "example_sentence_native": "Ihre Vita ist beeindruckend.", + "example_sentence_english": "Her curriculum vitae is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6039 + }, + { + "word": "Vizepräsident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Vice President", + "romanization": "Vizepräsident", + "example_sentence_native": "Der Vizepräsident hielt eine Rede.", + "example_sentence_english": "The Vice President gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6040 + }, + { + "word": "vorläufig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisional;temporary", + "romanization": "vorläufig", + "example_sentence_native": "Das ist nur eine vorläufige Lösung.", + "example_sentence_english": "This is only a provisional solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6041 + }, + { + "word": "vögeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fuck (vulgar)", + "romanization": "vögeln", + "example_sentence_native": "Sie haben die ganze Nacht gevögelt.", + "example_sentence_english": "They fucked all night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6042 + }, + { + "word": "Wahlbeteiligung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voter turnout", + "romanization": "Wahlbeteiligung", + "example_sentence_native": "Die Wahlbeteiligung war dieses Jahr sehr hoch.", + "example_sentence_english": "The voter turnout was very high this year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6043 + }, + { + "word": "Walker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walker (person)", + "romanization": "Walker", + "example_sentence_native": "Der Walker genoss die frische Luft.", + "example_sentence_english": "The walker enjoyed the fresh air.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6044 + }, + { + "word": "Wirksamkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effectiveness;efficacy", + "romanization": "Wirksamkeit", + "example_sentence_native": "Die Wirksamkeit des Medikaments wurde bestätigt.", + "example_sentence_english": "The effectiveness of the medication was confirmed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6045 + }, + { + "word": "Zivilisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civilization", + "romanization": "Zivilisation", + "example_sentence_native": "Die alte Zivilisation hatte eine reiche Kultur.", + "example_sentence_english": "The ancient civilization had a rich culture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6047 + }, + { + "word": "abschalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to switch off;to relax", + "romanization": "abschalten", + "example_sentence_native": "Ich muss nach der Arbeit einfach abschalten.", + "example_sentence_english": "I just need to switch off after work.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6049 + }, + { + "word": "Airline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airline", + "romanization": "Airline", + "example_sentence_native": "Welche Airline fliegst du?", + "example_sentence_english": "Which airline are you flying?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6050 + }, + { + "word": "Aluminium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aluminum", + "romanization": "Aluminium", + "example_sentence_native": "Das Fenster ist aus Aluminium.", + "example_sentence_english": "The window is made of aluminum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6051 + }, + { + "word": "arg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad;severe;very", + "romanization": "arg", + "example_sentence_native": "Das ist ein arges Problem.", + "example_sentence_english": "That is a severe problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6052 + }, + { + "word": "Auszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timeout;break", + "romanization": "Auszeit", + "example_sentence_native": "Ich brauche eine kurze Auszeit.", + "example_sentence_english": "I need a short break.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6053 + }, + { + "word": "Autorität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authority", + "romanization": "Autorität", + "example_sentence_native": "Er spricht mit großer Autorität.", + "example_sentence_english": "He speaks with great authority.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6054 + }, + { + "word": "basteln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to craft;to tinker", + "romanization": "basteln", + "example_sentence_native": "Wir basteln ein Geschenk für Mama.", + "example_sentence_english": "We are crafting a gift for Mom.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6055 + }, + { + "word": "Beta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beta (version)", + "romanization": "Beta", + "example_sentence_native": "Die Software ist noch in der Beta-Phase.", + "example_sentence_english": "The software is still in the beta phase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6056 + }, + { + "word": "Car", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car", + "romanization": "Car", + "example_sentence_native": "Das Car fährt zum Flughafen.", + "example_sentence_english": "The car drives to the airport.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6058 + }, + { + "word": "diesbezüglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regarding this", + "romanization": "diesbezüglich", + "example_sentence_native": "Diesbezüglich gibt es noch offene Fragen.", + "example_sentence_english": "Regarding this, there are still open questions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6060 + }, + { + "word": "Double", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "double;stand-in", + "romanization": "Double", + "example_sentence_native": "Der Schauspieler hatte ein Double für die gefährliche Szene.", + "example_sentence_english": "The actor had a double for the dangerous scene.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6061 + }, + { + "word": "Ehepaar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "married couple", + "romanization": "Ehepaar", + "example_sentence_native": "Das alte Ehepaar ging Hand in Hand spazieren.", + "example_sentence_english": "The old married couple went for a walk hand in hand.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6062 + }, + { + "word": "einheitlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uniform;consistent", + "romanization": "einheitlich", + "example_sentence_native": "Wir brauchen eine einheitliche Lösung für dieses Problem.", + "example_sentence_english": "We need a uniform solution for this problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6063 + }, + { + "word": "Einklang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmony;accord", + "romanization": "Einklang", + "example_sentence_native": "Ihre Meinungen sind im Einklang miteinander.", + "example_sentence_english": "Their opinions are in harmony with each other.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6064 + }, + { + "word": "erleiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffer;to sustain", + "romanization": "erleiden", + "example_sentence_native": "Er musste schwere Verluste erleiden.", + "example_sentence_english": "He had to suffer heavy losses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6065 + }, + { + "word": "erneuerbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewable", + "romanization": "erneuerbar", + "example_sentence_native": "Wir sollten mehr auf erneuerbare Energien setzen.", + "example_sentence_english": "We should rely more on renewable energies.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6066 + }, + { + "word": "Erstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creation;preparation", + "romanization": "Erstellung", + "example_sentence_native": "Die Erstellung des Berichts dauerte mehrere Tage.", + "example_sentence_english": "The creation of the report took several days.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6067 + }, + { + "word": "Feiertag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "public holiday", + "romanization": "Feiertag", + "example_sentence_native": "Nächste Woche ist ein Feiertag.", + "example_sentence_english": "Next week is a public holiday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6070 + }, + { + "word": "Fertigstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completion;finalization", + "romanization": "Fertigstellung", + "example_sentence_native": "Die Fertigstellung des Projekts ist für nächste Woche geplant.", + "example_sentence_english": "The completion of the project is planned for next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6071 + }, + { + "word": "Finanzamt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tax office", + "romanization": "Finanzamt", + "example_sentence_native": "Ich muss meine Steuererklärung beim Finanzamt einreichen.", + "example_sentence_english": "I have to submit my tax declaration to the tax office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6072 + }, + { + "word": "Gerichtshof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court of justice", + "romanization": "Gerichtshof", + "example_sentence_native": "Der Fall wird vor dem Gerichtshof verhandelt.", + "example_sentence_english": "The case will be heard before the court of justice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6076 + }, + { + "word": "Gesellschafter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shareholder;partner", + "romanization": "Gesellschafter", + "example_sentence_native": "Er ist einer der Hauptgesellschafter der Firma.", + "example_sentence_english": "He is one of the main shareholders of the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6077 + }, + { + "word": "gestrig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yesterday's", + "romanization": "gestrig", + "example_sentence_native": "Die gestrige Sitzung war sehr produktiv.", + "example_sentence_english": "Yesterday's meeting was very productive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6078 + }, + { + "word": "Glocke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell", + "romanization": "Glocke", + "example_sentence_native": "Die Glocke läutet jede Stunde.", + "example_sentence_english": "The bell rings every hour.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6080 + }, + { + "word": "Handschrift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handwriting", + "romanization": "Handschrift", + "example_sentence_native": "Ihre Handschrift ist sehr leserlich.", + "example_sentence_english": "Her handwriting is very legible.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6083 + }, + { + "word": "Harmonie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmony", + "romanization": "Harmonie", + "example_sentence_native": "Sie leben in perfekter Harmonie miteinander.", + "example_sentence_english": "They live in perfect harmony with each other.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6084 + }, + { + "word": "Herd", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stove", + "romanization": "Herd", + "example_sentence_native": "Der neue Herd hat sechs Kochplatten.", + "example_sentence_english": "The new stove has six burners.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6085 + }, + { + "word": "Hetze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agitation", + "romanization": "Hetze", + "example_sentence_native": "Die Hetze gegen Minderheiten ist inakzeptabel.", + "example_sentence_english": "The agitation against minorities is unacceptable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6086 + }, + { + "word": "heulen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to howl", + "romanization": "heulen", + "example_sentence_native": "Der Wind heult durch die Bäume.", + "example_sentence_english": "The wind howls through the trees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6087 + }, + { + "word": "Hülle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover", + "romanization": "Hülle", + "example_sentence_native": "Die Hülle des Smartphones schützt es vor Kratzern.", + "example_sentence_english": "The smartphone's cover protects it from scratches.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6088 + }, + { + "word": "Irrtum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "error", + "romanization": "Irrtum", + "example_sentence_native": "Das war ein bedauerlicher Irrtum.", + "example_sentence_english": "That was an unfortunate error.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6089 + }, + { + "word": "isolieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to isolate", + "romanization": "isolieren", + "example_sentence_native": "Man muss die elektrischen Leitungen gut isolieren.", + "example_sentence_english": "One must insulate the electrical wires well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6090 + }, + { + "word": "klettern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to climb", + "romanization": "klettern", + "example_sentence_native": "Die Kinder lieben es, auf Bäume zu klettern.", + "example_sentence_english": "The children love to climb trees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6091 + }, + { + "word": "Kläger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plaintiff", + "romanization": "Kläger", + "example_sentence_native": "Der Kläger legte Berufung gegen das Urteil ein.", + "example_sentence_english": "The plaintiff appealed the verdict.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6092 + }, + { + "word": "Korb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket", + "romanization": "Korb", + "example_sentence_native": "Sie trug einen Korb voller Pilze.", + "example_sentence_english": "She carried a basket full of mushrooms.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6093 + }, + { + "word": "Landstrasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "country road", + "romanization": "Landstrasse", + "example_sentence_native": "Wir fuhren auf einer schmalen Landstrasse.", + "example_sentence_english": "We drove on a narrow country road.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6094 + }, + { + "word": "Lebewesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "living creature", + "romanization": "Lebewesen", + "example_sentence_native": "Jedes Lebewesen hat das Recht auf Schutz.", + "example_sentence_english": "Every living creature has the right to protection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6095 + }, + { + "word": "List", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cunning", + "romanization": "List", + "example_sentence_native": "Mit einer List gelang es ihm, zu entkommen.", + "example_sentence_english": "With cunning, he managed to escape.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6096 + }, + { + "word": "Nachdruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emphasis", + "romanization": "Nachdruck", + "example_sentence_native": "Er sprach mit großem Nachdruck über die Bedeutung des Projekts.", + "example_sentence_english": "He spoke with great emphasis about the importance of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6099 + }, + { + "word": "neuerdings", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recently;lately", + "romanization": "neuerdings", + "example_sentence_native": "Neuerdings arbeite ich von zu Hause aus.", + "example_sentence_english": "Recently, I have been working from home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6100 + }, + { + "word": "Newsletter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "newsletter", + "romanization": "Newsletter", + "example_sentence_native": "Ich habe den neuesten Newsletter abonniert.", + "example_sentence_english": "I subscribed to the latest newsletter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6101 + }, + { + "word": "Notiz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "note", + "romanization": "Notiz", + "example_sentence_native": "Ich mache mir eine Notiz.", + "example_sentence_english": "I'm making a note.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6102 + }, + { + "word": "Packung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "package;pack", + "romanization": "Packung", + "example_sentence_native": "Eine Packung Milch, bitte.", + "example_sentence_english": "A pack of milk, please.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6103 + }, + { + "word": "Premierminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prime minister", + "romanization": "Premierminister", + "example_sentence_native": "Der Premierminister hielt eine Rede.", + "example_sentence_english": "The prime minister gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6106 + }, + { + "word": "Reformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Reformation", + "romanization": "Reformation", + "example_sentence_native": "Die Reformation begann im 16. Jahrhundert.", + "example_sentence_english": "The Reformation began in the 16th century.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6107 + }, + { + "word": "Relevanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevance", + "romanization": "Relevanz", + "example_sentence_native": "Die Relevanz dieser Studie ist hoch.", + "example_sentence_english": "The relevance of this study is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6109 + }, + { + "word": "reparieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to repair", + "romanization": "reparieren", + "example_sentence_native": "Ich muss mein Fahrrad reparieren.", + "example_sentence_english": "I need to repair my bicycle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6110 + }, + { + "word": "Sahne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream", + "romanization": "Sahne", + "example_sentence_native": "Möchtest du Sahne zum Kuchen?", + "example_sentence_english": "Would you like cream with the cake?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6111 + }, + { + "word": "schmal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narrow;slim", + "romanization": "schmal", + "example_sentence_native": "Die Gasse ist sehr schmal.", + "example_sentence_english": "The alley is very narrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6112 + }, + { + "word": "Schrei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scream;cry", + "romanization": "Schrei", + "example_sentence_native": "Ich hörte einen lauten Schrei.", + "example_sentence_english": "I heard a loud scream.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6113 + }, + { + "word": "schweizerisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Swiss", + "romanization": "schweizerisch", + "example_sentence_native": "Das ist ein schweizerisches Produkt.", + "example_sentence_english": "That is a Swiss product.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6115 + }, + { + "word": "servieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to serve", + "romanization": "servieren", + "example_sentence_native": "Der Kellner wird das Essen bald servieren.", + "example_sentence_english": "The waiter will serve the food soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6117 + }, + { + "word": "Sexkontakt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual contact", + "romanization": "Sexkontakt", + "example_sentence_native": "Er hatte keinen Sexkontakt.", + "example_sentence_english": "He had no sexual contact.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6118 + }, + { + "word": "Sonnenuntergang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunset", + "romanization": "Sonnenuntergang", + "example_sentence_native": "Der Sonnenuntergang war wunderschön.", + "example_sentence_english": "The sunset was beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6120 + }, + { + "word": "Spinner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weirdo;nutcase", + "romanization": "Spinner", + "example_sentence_native": "Er ist ein echter Spinner.", + "example_sentence_english": "He is a real weirdo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6121 + }, + { + "word": "spritzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spray;to squirt;to inject", + "romanization": "spritzen", + "example_sentence_native": "Die Kinder spritzten sich mit Wasser.", + "example_sentence_english": "The children sprayed each other with water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6122 + }, + { + "word": "Stopp", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "stop", + "romanization": "Stopp", + "example_sentence_native": "Der Bus machte einen Stopp an der Haltestelle.", + "example_sentence_english": "The bus made a stop at the bus stop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6124 + }, + { + "word": "Süssigkeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweet;candy", + "romanization": "Süssigkeit", + "example_sentence_native": "Kinder lieben Süssigkeiten.", + "example_sentence_english": "Children love sweets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6125 + }, + { + "word": "Tankstelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gas station;petrol station", + "romanization": "Tankstelle", + "example_sentence_native": "Wir müssen an der Tankstelle tanken.", + "example_sentence_english": "We have to refuel at the gas station.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6126 + }, + { + "word": "Taufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baptism;christening", + "romanization": "Taufe", + "example_sentence_native": "Die Taufe fand in der Kirche statt.", + "example_sentence_english": "The baptism took place in the church.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6127 + }, + { + "word": "Unterdrückung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oppression;suppression", + "romanization": "Unterdrückung", + "example_sentence_native": "Sie kämpften gegen die Unterdrückung.", + "example_sentence_english": "They fought against oppression.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6128 + }, + { + "word": "Verschwörung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspiracy", + "romanization": "Verschwörung", + "example_sentence_native": "Er glaubt an eine grosse Verschwörung.", + "example_sentence_english": "He believes in a big conspiracy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6130 + }, + { + "word": "versterben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pass away;to die (formal)", + "romanization": "versterben", + "example_sentence_native": "Sein Grossvater ist letztes Jahr verstorben.", + "example_sentence_english": "His grandfather passed away last year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6131 + }, + { + "word": "Verurteilung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conviction;condemnation", + "romanization": "Verurteilung", + "example_sentence_native": "Die Verurteilung erfolgte nach langer Verhandlung.", + "example_sentence_english": "The conviction followed a long trial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6132 + }, + { + "word": "Vitamin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vitamin", + "romanization": "Vitamin", + "example_sentence_native": "Obst enthält viele Vitamine.", + "example_sentence_english": "Fruit contains many vitamins.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6133 + }, + { + "word": "vornehmlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primarily;mainly", + "romanization": "vornehmlich", + "example_sentence_native": "Er beschäftigt sich vornehmlich mit historischen Themen.", + "example_sentence_english": "He primarily deals with historical topics.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6134 + }, + { + "word": "vorzeitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premature;early", + "romanization": "vorzeitig", + "example_sentence_native": "Die vorzeitige Beendigung des Vertrags war überraschend.", + "example_sentence_english": "The premature termination of the contract was surprising.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6135 + }, + { + "word": "Wahlrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right to vote;suffrage", + "romanization": "Wahlrecht", + "example_sentence_native": "Das Wahlrecht ist ein Grundrecht.", + "example_sentence_english": "The right to vote is a fundamental right.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6136 + }, + { + "word": "wiegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to weigh;to rock (a baby)", + "romanization": "wiegen", + "example_sentence_native": "Wie viel wiegt dieser Koffer?", + "example_sentence_english": "How much does this suitcase weigh?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6138 + }, + { + "word": "zusammenarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collaborate;to work together", + "romanization": "zusammenarbeiten", + "example_sentence_native": "Wir müssen eng zusammenarbeiten, um das Projekt abzuschließen.", + "example_sentence_english": "We must work closely together to complete the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6141 + }, + { + "word": "ablegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put down;to file;to take off (clothes);to pass (an exam)", + "romanization": "ablegen", + "example_sentence_native": "Er musste seine Prüfung ablegen.", + "example_sentence_english": "He had to take his exam.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6143 + }, + { + "word": "allerlei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all sorts of;various", + "romanization": "allerlei", + "example_sentence_native": "Sie hatte allerlei Dinge in ihrer Tasche.", + "example_sentence_english": "She had all sorts of things in her bag.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6145 + }, + { + "word": "angrenzend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjacent;bordering", + "romanization": "angrenzend", + "example_sentence_native": "Die angrenzenden Länder haben eine lange Geschichte.", + "example_sentence_english": "The adjacent countries have a long history.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6146 + }, + { + "word": "anhalten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop;to hold on;to last", + "romanization": "anhalten", + "example_sentence_native": "Der Regen wird nicht lange anhalten.", + "example_sentence_english": "The rain will not last long.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6147 + }, + { + "word": "Araber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arab (person)", + "romanization": "Araber", + "example_sentence_native": "Ein Araber sprach fließend Deutsch.", + "example_sentence_english": "An Arab spoke fluent German.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6149 + }, + { + "word": "Aufschwung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upswing;boom;recovery", + "romanization": "Aufschwung", + "example_sentence_native": "Die Wirtschaft erlebt einen Aufschwung.", + "example_sentence_english": "The economy is experiencing an upswing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6151 + }, + { + "word": "ausdenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invent;to make up;to think up", + "romanization": "ausdenken", + "example_sentence_native": "Er musste sich eine Ausrede ausdenken.", + "example_sentence_english": "He had to think up an excuse.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "denken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6153 + }, + { + "word": "Auslegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interpretation;design;layout", + "romanization": "Auslegung", + "example_sentence_native": "Die Auslegung des Gesetzes ist umstritten.", + "example_sentence_english": "The interpretation of the law is controversial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6154 + }, + { + "word": "Balance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balance", + "romanization": "Balance", + "example_sentence_native": "Es ist wichtig, eine gute Balance zwischen Arbeit und Freizeit zu finden.", + "example_sentence_english": "It is important to find a good balance between work and leisure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6156 + }, + { + "word": "Bann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ban;spell;charm", + "romanization": "Bann", + "example_sentence_native": "Er stand unter dem Bann des Zauberers.", + "example_sentence_english": "He was under the wizard's spell.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6157 + }, + { + "word": "Beat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beat (music)", + "romanization": "Beat", + "example_sentence_native": "Der Beat des Liedes war sehr eingängig.", + "example_sentence_english": "The beat of the song was very catchy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6158 + }, + { + "word": "Beförderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promotion;transport;conveyance", + "romanization": "Beförderung", + "example_sentence_native": "Sie hat eine Beförderung bei der Arbeit bekommen.", + "example_sentence_english": "She got a promotion at work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6159 + }, + { + "word": "bemerkbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noticeable", + "romanization": "bemerkbar", + "example_sentence_native": "Der Unterschied ist kaum bemerkbar.", + "example_sentence_english": "The difference is hardly noticeable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6160 + }, + { + "word": "beschrieben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "described", + "romanization": "beschrieben", + "example_sentence_native": "Das ist die beschriebene Methode.", + "example_sentence_english": "That is the described method.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6161 + }, + { + "word": "Bohne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bean", + "romanization": "Bohne", + "example_sentence_native": "Ich esse gerne grüne Bohnen.", + "example_sentence_english": "I like to eat green beans.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6162 + }, + { + "word": "Button", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "button", + "romanization": "Button", + "example_sentence_native": "Klicken Sie auf den Button.", + "example_sentence_english": "Click on the button.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6163 + }, + { + "word": "Diskurs", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discourse", + "romanization": "Diskurs", + "example_sentence_native": "Der öffentliche Diskurs ist wichtig für die Demokratie.", + "example_sentence_english": "Public discourse is important for democracy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6169 + }, + { + "word": "Drang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urge", + "romanization": "Drang", + "example_sentence_native": "Er verspürte einen starken Drang zu reisen.", + "example_sentence_english": "He felt a strong urge to travel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6170 + }, + { + "word": "Effizienz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficiency", + "romanization": "Effizienz", + "example_sentence_native": "Wir müssen die Effizienz steigern.", + "example_sentence_english": "We need to increase efficiency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6174 + }, + { + "word": "einsehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to realize", + "romanization": "einsehen", + "example_sentence_native": "Er musste seinen Fehler einsehen.", + "example_sentence_english": "He had to realize his mistake.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6175 + }, + { + "word": "Elektronik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronics", + "romanization": "Elektronik", + "example_sentence_native": "Er studiert Elektronik an der Universität.", + "example_sentence_english": "He studies electronics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6177 + }, + { + "word": "Entertainment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entertainment", + "romanization": "Entertainment", + "example_sentence_native": "Das ist gute Unterhaltung und Entertainment.", + "example_sentence_english": "That is good conversation and entertainment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6179 + }, + { + "word": "erbauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build;to construct", + "romanization": "erbauen", + "example_sentence_native": "Sie planen, ein neues Krankenhaus zu erbauen.", + "example_sentence_english": "They plan to build a new hospital.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6180 + }, + { + "word": "Farm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farm", + "romanization": "Farm", + "example_sentence_native": "Die Familie lebt auf einer großen Farm.", + "example_sentence_english": "The family lives on a large farm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6182 + }, + { + "word": "faszinierend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinating", + "romanization": "faszinierend", + "example_sentence_native": "Das Buch ist wirklich faszinierend.", + "example_sentence_english": "The book is really fascinating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6183 + }, + { + "word": "faszinieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fascinate", + "romanization": "faszinieren", + "example_sentence_native": "Seine Geschichten faszinieren mich immer.", + "example_sentence_english": "His stories always fascinate me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6184 + }, + { + "word": "fischen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fish", + "romanization": "fischen", + "example_sentence_native": "Er geht gerne am Wochenende fischen.", + "example_sentence_english": "He likes to go fishing on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6186 + }, + { + "word": "Fluch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curse;oath", + "romanization": "Fluch", + "example_sentence_native": "Ein alter Fluch liegt auf dem Schloss.", + "example_sentence_english": "An old curse lies upon the castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6187 + }, + { + "word": "flüchten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flee;to escape", + "romanization": "flüchten", + "example_sentence_native": "Die Tiere flüchteten vor dem Feuer.", + "example_sentence_english": "The animals fled from the fire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6188 + }, + { + "word": "Formation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formation;structure", + "romanization": "Formation", + "example_sentence_native": "Die Vögel flogen in einer perfekten Formation.", + "example_sentence_english": "The birds flew in a perfect formation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6189 + }, + { + "word": "Gehör", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hearing;audience", + "romanization": "Gehör", + "example_sentence_native": "Er hat ein sehr gutes Gehör für Musik.", + "example_sentence_english": "He has a very good ear for music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6190 + }, + { + "word": "geistlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritual;clerical", + "romanization": "geistlich", + "example_sentence_native": "Er ist ein geistlicher Führer in seiner Gemeinde.", + "example_sentence_english": "He is a spiritual leader in his community.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6191 + }, + { + "word": "lügen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lie (tell untruths)", + "romanization": "lügen", + "example_sentence_native": "Du solltest niemals lügen.", + "example_sentence_english": "You should never lie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6192 + }, + { + "word": "Gewebe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tissue;fabric", + "romanization": "Gewebe", + "example_sentence_native": "Das menschliche Gewebe ist sehr komplex.", + "example_sentence_english": "Human tissue is very complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6193 + }, + { + "word": "gleichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resemble;to be equal", + "romanization": "gleichen", + "example_sentence_native": "Die beiden Brüder gleichen sich sehr.", + "example_sentence_english": "The two brothers resemble each other very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6194 + }, + { + "word": "Gliederung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structure;outline;division", + "romanization": "Gliederung", + "example_sentence_native": "Die Gliederung des Berichts ist sehr klar.", + "example_sentence_english": "The structure of the report is very clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6195 + }, + { + "word": "grillen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to grill;to barbecue", + "romanization": "grillen", + "example_sentence_native": "Wir wollen heute Abend grillen.", + "example_sentence_english": "We want to barbecue tonight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6197 + }, + { + "word": "halbwegs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halfway;somewhat;reasonably", + "romanization": "halbwegs", + "example_sentence_native": "Er war halbwegs zufrieden mit dem Ergebnis.", + "example_sentence_english": "He was halfway satisfied with the result.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6198 + }, + { + "word": "Heimatstadt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hometown", + "romanization": "Heimatstadt", + "example_sentence_native": "Meine Heimatstadt liegt in den Bergen.", + "example_sentence_english": "My hometown is in the mountains.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6199 + }, + { + "word": "heuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "this year", + "romanization": "heuer", + "example_sentence_native": "Heuer fahren wir in den Urlaub.", + "example_sentence_english": "This year we are going on vacation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6200 + }, + { + "word": "hingehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go there", + "romanization": "hingehen", + "example_sentence_native": "Wir müssen dorthin hingehen, wo die Musik spielt.", + "example_sentence_english": "We have to go there where the music plays.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6201 + }, + { + "word": "Illusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illusion", + "romanization": "Illusion", + "example_sentence_native": "Es war nur eine Illusion.", + "example_sentence_english": "It was just an illusion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6202 + }, + { + "word": "industriell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrial", + "romanization": "industriell", + "example_sentence_native": "Die industrielle Revolution veränderte die Welt.", + "example_sentence_english": "The industrial revolution changed the world.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6203 + }, + { + "word": "Jahrbuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yearbook", + "romanization": "Jahrbuch", + "example_sentence_native": "Das Jahrbuch enthält viele interessante Informationen.", + "example_sentence_english": "The yearbook contains a lot of interesting information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6205 + }, + { + "word": "kaiserlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperial", + "romanization": "kaiserlich", + "example_sentence_native": "Die kaiserliche Familie lebte in einem großen Palast.", + "example_sentence_english": "The imperial family lived in a large palace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6207 + }, + { + "word": "Kap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cape", + "romanization": "Kap", + "example_sentence_native": "Das Schiff umsegelte das Kap der Guten Hoffnung.", + "example_sentence_english": "The ship sailed around the Cape of Good Hope.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6208 + }, + { + "word": "Kicker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soccer player", + "romanization": "Kicker", + "example_sentence_native": "Der junge Kicker erzielte ein Tor.", + "example_sentence_english": "The young soccer player scored a goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6209 + }, + { + "word": "Klassik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classical music", + "romanization": "Klassik", + "example_sentence_native": "Sie hört gerne Klassik.", + "example_sentence_english": "She likes to listen to classical music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6210 + }, + { + "word": "Kontinent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "continent", + "romanization": "Kontinent", + "example_sentence_native": "Europa ist ein Kontinent.", + "example_sentence_english": "Europe is a continent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6211 + }, + { + "word": "Kreislauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circulation", + "romanization": "Kreislauf", + "example_sentence_native": "Der menschliche Kreislauf ist komplex.", + "example_sentence_english": "The human circulatory system is complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6212 + }, + { + "word": "Laie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layman", + "romanization": "Laie", + "example_sentence_native": "Für einen Laien ist das Thema schwer zu verstehen.", + "example_sentence_english": "For a layman, the topic is difficult to understand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6213 + }, + { + "word": "lateinisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latin", + "romanization": "lateinisch", + "example_sentence_native": "Viele Wörter im Deutschen haben lateinische Wurzeln.", + "example_sentence_english": "Many words in German have Latin roots.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6214 + }, + { + "word": "Lebensraum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "habitat", + "romanization": "Lebensraum", + "example_sentence_native": "Der Wald ist der Lebensraum vieler Tiere.", + "example_sentence_english": "The forest is the habitat of many animals.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6215 + }, + { + "word": "literarisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literary", + "romanization": "literarisch", + "example_sentence_native": "Sie hat einen sehr literarischen Stil.", + "example_sentence_english": "She has a very literary style.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6216 + }, + { + "word": "Menü", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "menu", + "romanization": "Menü", + "example_sentence_native": "Können Sie mir bitte das Menü bringen?", + "example_sentence_english": "Can you please bring me the menu?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6217 + }, + { + "word": "muslimisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Muslim", + "romanization": "muslimisch", + "example_sentence_native": "Die muslimische Gemeinschaft feiert Eid.", + "example_sentence_english": "The Muslim community celebrates Eid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6219 + }, + { + "word": "Mütze", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cap", + "romanization": "Mütze", + "example_sentence_native": "Sie trägt eine warme Mütze.", + "example_sentence_english": "She is wearing a warm cap.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6220 + }, + { + "word": "nervig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoying", + "romanization": "nervig", + "example_sentence_native": "Das Geräusch ist sehr nervig.", + "example_sentence_english": "The noise is very annoying.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6222 + }, + { + "word": "next", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "next", + "romanization": "next", + "example_sentence_native": "Das ist die next große Sache.", + "example_sentence_english": "That is the next big thing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6223 + }, + { + "word": "Quartier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarter", + "romanization": "Quartier", + "example_sentence_native": "Wir haben ein schönes Quartier gefunden.", + "example_sentence_english": "We found nice lodging.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6225 + }, + { + "word": "repräsentieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to represent", + "romanization": "repräsentieren", + "example_sentence_native": "Er wird das Unternehmen auf der Messe repräsentieren.", + "example_sentence_english": "He will represent the company at the fair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6226 + }, + { + "word": "Republikaner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Republican", + "romanization": "Republikaner", + "example_sentence_native": "Die Republikaner haben die Wahl gewonnen.", + "example_sentence_english": "The Republicans won the election.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6227 + }, + { + "word": "Sammler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collector", + "romanization": "Sammler", + "example_sentence_native": "Mein Großvater ist ein leidenschaftlicher Briefmarkensammler.", + "example_sentence_english": "My grandfather is a passionate stamp collector.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6228 + }, + { + "word": "Schnitzel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "schnitzel", + "romanization": "Schnitzel", + "example_sentence_native": "Ich möchte ein Wiener Schnitzel bestellen.", + "example_sentence_english": "I would like to order a Wiener Schnitzel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6229 + }, + { + "word": "Schrott", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scrap", + "romanization": "Schrott", + "example_sentence_native": "Das alte Auto ist nur noch Schrott.", + "example_sentence_english": "The old car is just junk now.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6230 + }, + { + "word": "seitlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sideways", + "romanization": "seitlich", + "example_sentence_native": "Er trat seitlich zur Seite.", + "example_sentence_english": "He stepped sideways.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6231 + }, + { + "word": "sicherstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ensure", + "romanization": "sicherstellen", + "example_sentence_native": "Wir müssen sicherstellen, dass alles reibungslos läuft.", + "example_sentence_english": "We must ensure that everything runs smoothly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "sicher", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6232 + }, + { + "word": "siebt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seventh", + "romanization": "siebt", + "example_sentence_native": "Das ist der siebte Tag der Woche.", + "example_sentence_english": "That is the seventh day of the week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6233 + }, + { + "word": "Skala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scale", + "romanization": "Skala", + "example_sentence_native": "Die Skala reicht von eins bis zehn.", + "example_sentence_english": "The scale ranges from one to ten.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6234 + }, + { + "word": "Spaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "division", + "romanization": "Spaltung", + "example_sentence_native": "Es gab eine tiefe Spaltung in der Partei.", + "example_sentence_english": "There was a deep division in the party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6235 + }, + { + "word": "Spielplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "playground", + "romanization": "Spielplatz", + "example_sentence_native": "Die Kinder spielen auf dem Spielplatz.", + "example_sentence_english": "The children are playing on the playground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6236 + }, + { + "word": "Stab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "staff", + "romanization": "Stab", + "example_sentence_native": "Er stützte sich auf einen langen Stab.", + "example_sentence_english": "He leaned on a long stick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6237 + }, + { + "word": "Stadtgebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban area", + "romanization": "Stadtgebiet", + "example_sentence_native": "Das Stadtgebiet ist dicht besiedelt.", + "example_sentence_english": "The urban area is densely populated.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6238 + }, + { + "word": "strategisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategic", + "romanization": "strategisch", + "example_sentence_native": "Das ist ein strategischer Vorteil.", + "example_sentence_english": "That is a strategic advantage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6240 + }, + { + "word": "Syndrom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syndrome", + "romanization": "Syndrom", + "example_sentence_native": "Er leidet unter einem seltenen Syndrom.", + "example_sentence_english": "He suffers from a rare syndrome.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6241 + }, + { + "word": "Thriller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thriller", + "romanization": "Thriller", + "example_sentence_native": "Ich habe gestern einen spannenden Thriller gesehen.", + "example_sentence_english": "I watched an exciting thriller yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6243 + }, + { + "word": "Valley", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valley", + "romanization": "Valley", + "example_sentence_native": "Das Valley ist bekannt für seine Technologieunternehmen.", + "example_sentence_english": "The valley is known for its technology companies.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6244 + }, + { + "word": "Verfasser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "author", + "romanization": "Verfasser", + "example_sentence_native": "Der Verfasser des Buches ist unbekannt.", + "example_sentence_english": "The author of the book is unknown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6245 + }, + { + "word": "vergrössern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enlarge", + "romanization": "vergrössern", + "example_sentence_native": "Sie müssen das Bild vergrössern.", + "example_sentence_english": "You need to enlarge the picture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6246 + }, + { + "word": "verhältnismässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relatively", + "romanization": "verhältnismässig", + "example_sentence_native": "Das Problem ist verhältnismässig klein.", + "example_sentence_english": "The problem is relatively small.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6247 + }, + { + "word": "verschicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to send", + "romanization": "verschicken", + "example_sentence_native": "Ich muss das Paket verschicken.", + "example_sentence_english": "I need to send the package.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6248 + }, + { + "word": "verwickeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to involve", + "romanization": "verwickeln", + "example_sentence_native": "Er wurde in den Skandal verwickelt.", + "example_sentence_english": "He got involved in the scandal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6249 + }, + { + "word": "Vorsitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chairmanship", + "romanization": "Vorsitz", + "example_sentence_native": "Er hat den Vorsitz der Kommission übernommen.", + "example_sentence_english": "He took over the chairmanship of the commission.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6251 + }, + { + "word": "Wellness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wellness", + "romanization": "Wellness", + "example_sentence_native": "Viele Hotels bieten Wellness-Angebote an.", + "example_sentence_english": "Many hotels offer wellness services.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6253 + }, + { + "word": "Wirt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "host", + "romanization": "Wirt", + "example_sentence_native": "Der Wirt begrüsste uns freundlich.", + "example_sentence_english": "The host greeted us kindly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6254 + }, + { + "word": "Wohnsitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residence", + "romanization": "Wohnsitz", + "example_sentence_native": "Sein Wohnsitz ist in Berlin.", + "example_sentence_english": "His residence is in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6255 + }, + { + "word": "Zauber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magic", + "romanization": "Zauber", + "example_sentence_native": "Der Zauber des Ortes ist unbestreitbar.", + "example_sentence_english": "The magic of the place is undeniable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6256 + }, + { + "word": "zehnt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tenth", + "romanization": "zehnt", + "example_sentence_native": "Das ist der zehnte Versuch.", + "example_sentence_english": "This is the tenth attempt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6257 + }, + { + "word": "Zirkus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circus", + "romanization": "Zirkus", + "example_sentence_native": "Wir gehen heute in den Zirkus.", + "example_sentence_english": "We are going to the circus today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6258 + }, + { + "word": "Zubehör", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessories", + "romanization": "Zubehör", + "example_sentence_native": "Das Zubehör ist separat erhältlich.", + "example_sentence_english": "The accessories are available separately.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6259 + }, + { + "word": "Zugehörigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affiliation;belonging", + "romanization": "Zugehörigkeit", + "example_sentence_native": "Das Gefühl der Zugehörigkeit ist wichtig.", + "example_sentence_english": "The feeling of belonging is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6260 + }, + { + "word": "zweifeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to doubt", + "romanization": "zweifeln", + "example_sentence_native": "Ich zweifle an seiner Ehrlichkeit.", + "example_sentence_english": "I doubt his honesty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6262 + }, + { + "word": "Öffnungszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "opening hour", + "romanization": "Öffnungszeit", + "example_sentence_native": "Die Öffnungszeiten sind von 9 bis 18 Uhr.", + "example_sentence_english": "The opening hours are from 9 AM to 6 PM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6263 + }, + { + "word": "ablaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expire;to run off;to proceed", + "romanization": "ablaufen", + "example_sentence_native": "Das Visum ist abgelaufen.", + "example_sentence_english": "The visa has expired.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6264 + }, + { + "word": "Abi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school diploma (informal)", + "romanization": "Abi", + "example_sentence_native": "Nach dem Abi möchte ich reisen.", + "example_sentence_english": "After my high school diploma, I want to travel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6265 + }, + { + "word": "Abriss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demolition;summary", + "romanization": "Abriss", + "example_sentence_native": "Der Abriss des alten Gebäudes beginnt nächste Woche.", + "example_sentence_english": "The demolition of the old building starts next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6266 + }, + { + "word": "Absage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cancellation;rejection", + "romanization": "Absage", + "example_sentence_native": "Wir haben eine Absage für das Konzert erhalten.", + "example_sentence_english": "We received a cancellation for the concert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6267 + }, + { + "word": "Appetit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appetite", + "romanization": "Appetit", + "example_sentence_native": "Ich habe großen Appetit auf Pizza.", + "example_sentence_english": "I have a big appetite for pizza.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6270 + }, + { + "word": "arbeitslos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unemployed", + "romanization": "arbeitslos", + "example_sentence_native": "Er ist seit einem Jahr arbeitslos.", + "example_sentence_english": "He has been unemployed for a year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6271 + }, + { + "word": "aufbewahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to store;to keep", + "romanization": "aufbewahren", + "example_sentence_native": "Bitte bewahren Sie die Quittung auf.", + "example_sentence_english": "Please keep the receipt.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "bewahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6272 + }, + { + "word": "Aufzug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elevator;lift", + "romanization": "Aufzug", + "example_sentence_native": "Wir nehmen den Aufzug in den fünften Stock.", + "example_sentence_english": "We take the elevator to the fifth floor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6273 + }, + { + "word": "ausgleichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to balance;to compensate;to equalize", + "romanization": "ausgleichen", + "example_sentence_native": "Er versucht, seine Fehler auszugleichen.", + "example_sentence_english": "He tries to compensate for his mistakes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "gleichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6274 + }, + { + "word": "ausweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to identify;to deport", + "romanization": "ausweisen", + "example_sentence_native": "Sie mussten sich am Flughafen ausweisen.", + "example_sentence_english": "They had to identify themselves at the airport.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6275 + }, + { + "word": "auswärtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreign;external;out-of-town", + "romanization": "auswärtig", + "example_sentence_native": "Wir haben viele auswärtige Gäste.", + "example_sentence_english": "We have many out-of-town guests.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6276 + }, + { + "word": "ausziehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take off (clothes);to move out", + "romanization": "ausziehen", + "example_sentence_native": "Ich muss meine Schuhe ausziehen.", + "example_sentence_english": "I have to take off my shoes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6277 + }, + { + "word": "Automat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vending machine;automaton", + "romanization": "Automat", + "example_sentence_native": "Der Automat ist kaputt.", + "example_sentence_english": "The vending machine is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6278 + }, + { + "word": "beleuchten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illuminate;to light up", + "romanization": "beleuchten", + "example_sentence_native": "Die Scheinwerfer beleuchten die Bühne.", + "example_sentence_english": "The spotlights illuminate the stage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6280 + }, + { + "word": "billigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approve;to sanction", + "romanization": "billigen", + "example_sentence_native": "Der Rat wird den Vorschlag billigen.", + "example_sentence_english": "The council will approve the proposal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6281 + }, + { + "word": "biologisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biological;organic", + "romanization": "biologisch", + "example_sentence_native": "Wir kaufen gerne biologische Produkte.", + "example_sentence_english": "We like to buy organic products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6282 + }, + { + "word": "Bulle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bull", + "romanization": "Bulle", + "example_sentence_native": "Der Bulle graste auf der Weide.", + "example_sentence_english": "The bull grazed in the pasture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6284 + }, + { + "word": "Cash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cash", + "romanization": "Cash", + "example_sentence_native": "Ich habe kein Cash dabei.", + "example_sentence_english": "I don't have any cash with me.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6286 + }, + { + "word": "Copyright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "copyright", + "romanization": "Copyright", + "example_sentence_native": "Das Copyright liegt beim Autor.", + "example_sentence_english": "The copyright belongs to the author.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6288 + }, + { + "word": "Cousin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "male cousin", + "romanization": "Cousin", + "example_sentence_native": "Mein Cousin besucht uns nächste Woche.", + "example_sentence_english": "My cousin is visiting us next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6289 + }, + { + "word": "Damm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dam;dike;embankment", + "romanization": "Damm", + "example_sentence_native": "Der Damm schützt das Dorf vor Hochwasser.", + "example_sentence_english": "The dam protects the village from floods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6290 + }, + { + "word": "deluxe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deluxe", + "romanization": "deluxe", + "example_sentence_native": "Wir haben ein Deluxe-Zimmer gebucht.", + "example_sentence_english": "We booked a deluxe room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6291 + }, + { + "word": "dreissig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty", + "romanization": "dreissig", + "example_sentence_native": "Ich bin dreissig Jahre alt.", + "example_sentence_english": "I am thirty years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 6293 + }, + { + "word": "ebenda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at the same place;ibidem", + "romanization": "ebenda", + "example_sentence_native": "Die Referenz ist ebenda zu finden.", + "example_sentence_english": "The reference can be found at the same place.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6294 + }, + { + "word": "Eimer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bucket", + "romanization": "Eimer", + "example_sentence_native": "Er füllte den Eimer mit Wasser.", + "example_sentence_english": "He filled the bucket with water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6295 + }, + { + "word": "Einsamkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loneliness;solitude", + "romanization": "Einsamkeit", + "example_sentence_native": "Sie empfand eine tiefe Einsamkeit.", + "example_sentence_english": "She felt a deep loneliness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6296 + }, + { + "word": "entfallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be omitted;to be cancelled;to lapse", + "romanization": "entfallen", + "example_sentence_native": "Die Veranstaltung ist leider entfallen.", + "example_sentence_english": "Unfortunately, the event has been cancelled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6297 + }, + { + "word": "Flyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flyer;leaflet", + "romanization": "Flyer", + "example_sentence_native": "Wir verteilen Flyer für die Veranstaltung.", + "example_sentence_english": "We are distributing flyers for the event.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6299 + }, + { + "word": "Frequenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frequency", + "romanization": "Frequenz", + "example_sentence_native": "Die Frequenz des Signals ist sehr hoch.", + "example_sentence_english": "The frequency of the signal is very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6300 + }, + { + "word": "Fussballer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "footballer;soccer player", + "romanization": "Fussballer", + "example_sentence_native": "Der Fussballer schoss ein Tor.", + "example_sentence_english": "The footballer scored a goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6301 + }, + { + "word": "gay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gay", + "romanization": "gay", + "example_sentence_native": "Er ist ein gay Mann.", + "example_sentence_english": "He is a gay man.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6302 + }, + { + "word": "Geschäftsführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management;executive board", + "romanization": "Geschäftsführung", + "example_sentence_native": "Die Geschäftsführung hat eine neue Strategie beschlossen.", + "example_sentence_english": "The management has decided on a new strategy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6303 + }, + { + "word": "Gewitter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thunderstorm", + "romanization": "Gewitter", + "example_sentence_native": "Es gab ein starkes Gewitter letzte Nacht.", + "example_sentence_english": "There was a strong thunderstorm last night.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6304 + }, + { + "word": "gleichfalls", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "likewise;same to you", + "romanization": "gleichfalls", + "example_sentence_native": "\"Schönen Tag noch!\" \"Gleichfalls!\"", + "example_sentence_english": "\"Have a nice day!\" \"Likewise!\"", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6305 + }, + { + "word": "Gleis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "track;platform (train)", + "romanization": "Gleis", + "example_sentence_native": "Der Zug fährt von Gleis 3 ab.", + "example_sentence_english": "The train departs from track 3.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6306 + }, + { + "word": "Haftung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liability;adhesion", + "romanization": "Haftung", + "example_sentence_native": "Das Unternehmen übernimmt keine Haftung für Schäden.", + "example_sentence_english": "The company assumes no liability for damages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6307 + }, + { + "word": "Hirsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deer;stag", + "romanization": "Hirsch", + "example_sentence_native": "Ein Hirsch lief durch den Wald.", + "example_sentence_english": "A deer ran through the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6309 + }, + { + "word": "Inspiration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspiration", + "romanization": "Inspiration", + "example_sentence_native": "Er fand Inspiration in der Natur.", + "example_sentence_english": "He found inspiration in nature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6311 + }, + { + "word": "Kabine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cabin;cubicle;changing room", + "romanization": "Kabine", + "example_sentence_native": "Die Kabine war sehr klein.", + "example_sentence_english": "The cabin was very small.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6314 + }, + { + "word": "kommunal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communal;municipal", + "romanization": "kommunal", + "example_sentence_native": "Die kommunale Verwaltung ist für die Müllabfuhr zuständig.", + "example_sentence_english": "The municipal administration is responsible for waste collection.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6315 + }, + { + "word": "Kopftuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headscarf", + "romanization": "Kopftuch", + "example_sentence_native": "Sie trug ein rotes Kopftuch.", + "example_sentence_english": "She wore a red headscarf.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6316 + }, + { + "word": "Korn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain;rye (spirit)", + "romanization": "Korn", + "example_sentence_native": "Brot wird aus Korn gebacken.", + "example_sentence_english": "Bread is baked from grain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6317 + }, + { + "word": "Kulisse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backdrop;scenery;setting", + "romanization": "Kulisse", + "example_sentence_native": "Die Kulisse für das Theaterstück war beeindruckend.", + "example_sentence_english": "The scenery for the play was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6319 + }, + { + "word": "Landung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landing", + "romanization": "Landung", + "example_sentence_native": "Die Landung des Flugzeugs war sanft.", + "example_sentence_english": "The landing of the airplane was smooth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6320 + }, + { + "word": "Langeweile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boredom", + "romanization": "Langeweile", + "example_sentence_native": "Ich habe Langeweile, wenn ich nichts zu tun habe.", + "example_sentence_english": "I have boredom when I have nothing to do.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6321 + }, + { + "word": "Laufbahn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "career;track", + "romanization": "Laufbahn", + "example_sentence_native": "Er hat eine erfolgreiche Laufbahn als Arzt.", + "example_sentence_english": "He has a successful career as a doctor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6322 + }, + { + "word": "Leistungsfähigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "performance;capacity", + "romanization": "Leistungsfähigkeit", + "example_sentence_native": "Die Leistungsfähigkeit des neuen Motors ist beeindruckend.", + "example_sentence_english": "The performance of the new engine is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6323 + }, + { + "word": "Mais", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corn;maize", + "romanization": "Mais", + "example_sentence_native": "Wir essen gerne Maiskolben im Sommer.", + "example_sentence_english": "We like to eat corn on the cob in summer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6325 + }, + { + "word": "Menschlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanity;humaneness", + "romanization": "Menschlichkeit", + "example_sentence_native": "Menschlichkeit ist eine wichtige Eigenschaft.", + "example_sentence_english": "Humanity is an important quality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6328 + }, + { + "word": "Mitgliedstaat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member state", + "romanization": "Mitgliedstaat", + "example_sentence_native": "Deutschland ist ein Mitgliedstaat der Europäischen Union.", + "example_sentence_english": "Germany is a member state of the European Union.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6329 + }, + { + "word": "Mitmensch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fellow human being;fellow man", + "romanization": "Mitmensch", + "example_sentence_native": "Wir sollten immer Respekt vor unseren Mitmenschen haben.", + "example_sentence_english": "We should always have respect for our fellow human beings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6330 + }, + { + "word": "mittelalterlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medieval", + "romanization": "mittelalterlich", + "example_sentence_native": "Die Stadt hat viele mittelalterliche Gebäude.", + "example_sentence_english": "The city has many medieval buildings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6331 + }, + { + "word": "Modernisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "modernization", + "romanization": "Modernisierung", + "example_sentence_native": "Die Modernisierung der Fabrik ist notwendig.", + "example_sentence_english": "The modernization of the factory is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6332 + }, + { + "word": "nachlesen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look up;to read up on", + "romanization": "nachlesen", + "example_sentence_native": "Du kannst die Informationen im Buch nachlesen.", + "example_sentence_english": "You can look up the information in the book.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "lesen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6333 + }, + { + "word": "Parallele", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parallel", + "romanization": "Parallele", + "example_sentence_native": "Es gibt eine klare Parallele zwischen den beiden Fällen.", + "example_sentence_english": "There is a clear parallel between the two cases.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6337 + }, + { + "word": "Parteitag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "party conference;party convention", + "romanization": "Parteitag", + "example_sentence_native": "Der Parteitag findet nächste Woche statt.", + "example_sentence_english": "The party conference will take place next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6338 + }, + { + "word": "Peer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peer;equal", + "romanization": "Peer", + "example_sentence_native": "Er sucht die Anerkennung seiner Peers.", + "example_sentence_english": "He seeks the recognition of his peers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6339 + }, + { + "word": "Pfeil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrow", + "romanization": "Pfeil", + "example_sentence_native": "Der Pfeil traf genau ins Schwarze.", + "example_sentence_english": "The arrow hit the bullseye exactly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6340 + }, + { + "word": "platzieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to place", + "romanization": "platzieren", + "example_sentence_native": "Bitte platzieren Sie Ihre Taschen hier.", + "example_sentence_english": "Please place your bags here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6341 + }, + { + "word": "präzise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precise", + "romanization": "präzise", + "example_sentence_native": "Sie gab eine sehr präzise Antwort.", + "example_sentence_english": "She gave a very precise answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6343 + }, + { + "word": "psychologisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychological", + "romanization": "psychologisch", + "example_sentence_native": "Das ist eine interessante psychologische Studie.", + "example_sentence_english": "That is an interesting psychological study.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6344 + }, + { + "word": "Realschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary modern school (Germany)", + "romanization": "Realschule", + "example_sentence_native": "Nach der Grundschule ging er auf die Realschule.", + "example_sentence_english": "After primary school, he went to the Realschule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6345 + }, + { + "word": "Regierungschef", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head of government", + "romanization": "Regierungschef", + "example_sentence_native": "Der Regierungschef hielt eine wichtige Rede.", + "example_sentence_english": "The head of government gave an important speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6346 + }, + { + "word": "Reparatur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repair", + "romanization": "Reparatur", + "example_sentence_native": "Die Reparatur des Autos war teuer.", + "example_sentence_english": "The repair of the car was expensive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6349 + }, + { + "word": "Schirm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "umbrella;screen", + "romanization": "Schirm", + "example_sentence_native": "Vergiss deinen Schirm nicht, es regnet.", + "example_sentence_english": "Don't forget your umbrella, it's raining.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6352 + }, + { + "word": "Shopping", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping", + "romanization": "Shopping", + "example_sentence_native": "Wir gehen am Wochenende zum Shopping.", + "example_sentence_english": "We are going shopping on the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6353 + }, + { + "word": "Spam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spam", + "romanization": "Spam", + "example_sentence_native": "Mein E-Mail-Postfach ist voller Spam.", + "example_sentence_english": "My email inbox is full of spam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6354 + }, + { + "word": "Sperma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sperm", + "romanization": "Sperma", + "example_sentence_native": "Die Forschung untersucht die Qualität von Sperma.", + "example_sentence_english": "Research investigates the quality of sperm.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6355 + }, + { + "word": "Spot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spot;commercial", + "romanization": "Spot", + "example_sentence_native": "Der neue Werbespot ist sehr lustig.", + "example_sentence_english": "The new commercial is very funny.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6356 + }, + { + "word": "Staatsbürgerschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citizenship", + "romanization": "Staatsbürgerschaft", + "example_sentence_native": "Er beantragte die deutsche Staatsbürgerschaft.", + "example_sentence_english": "He applied for German citizenship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6357 + }, + { + "word": "Stange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pole;rod;bar", + "romanization": "Stange", + "example_sentence_native": "Die Fahne wehte an einer langen Stange.", + "example_sentence_english": "The flag waved on a long pole.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6358 + }, + { + "word": "Szenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scenario", + "romanization": "Szenario", + "example_sentence_native": "Wir müssen alle möglichen Szenarien berücksichtigen.", + "example_sentence_english": "We must consider all possible scenarios.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6362 + }, + { + "word": "Tarif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tariff;rate;fare", + "romanization": "Tarif", + "example_sentence_native": "Welchen Tarif haben Sie für Ihr Handy?", + "example_sentence_english": "Which rate do you have for your mobile phone?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6363 + }, + { + "word": "Triumph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumph", + "romanization": "Triumph", + "example_sentence_native": "Sein Sieg war ein großer Triumph für das Team.", + "example_sentence_english": "His victory was a great triumph for the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6365 + }, + { + "word": "Tüte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bag", + "romanization": "Tüte", + "example_sentence_native": "Kann ich bitte eine Tüte haben?", + "example_sentence_english": "Can I have a bag, please?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6367 + }, + { + "word": "unfair", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfair", + "romanization": "unfair", + "example_sentence_native": "Das ist eine sehr unfaire Entscheidung.", + "example_sentence_english": "That is a very unfair decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6368 + }, + { + "word": "Untertitel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subtitle", + "romanization": "Untertitel", + "example_sentence_native": "Ich schaue Filme gerne mit Untertiteln.", + "example_sentence_english": "I like watching movies with subtitles.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6370 + }, + { + "word": "Vaterland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatherland;homeland", + "romanization": "Vaterland", + "example_sentence_native": "Er kehrte in sein Vaterland zurück.", + "example_sentence_english": "He returned to his homeland.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6371 + }, + { + "word": "versammeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gather;to assemble", + "romanization": "versammeln", + "example_sentence_native": "Die Leute versammelten sich auf dem Marktplatz.", + "example_sentence_english": "The people gathered in the marketplace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6372 + }, + { + "word": "vertragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tolerate;to bear;to get along with", + "romanization": "vertragen", + "example_sentence_native": "Ich vertrage keinen Kaffee.", + "example_sentence_english": "I can't tolerate coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6373 + }, + { + "word": "verwundern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surprise;to astonish", + "romanization": "verwundern", + "example_sentence_native": "Es verwundert mich, dass er noch nicht hier ist.", + "example_sentence_english": "It surprises me that he is not here yet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6374 + }, + { + "word": "vorig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous;last", + "romanization": "vorig", + "example_sentence_native": "Wir haben das Problem in der vorigen Woche gelöst.", + "example_sentence_english": "We solved the problem last week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6375 + }, + { + "word": "Zufriedenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfaction;contentment", + "romanization": "Zufriedenheit", + "example_sentence_native": "Ihre Zufriedenheit ist unser Ziel.", + "example_sentence_english": "Your satisfaction is our goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6377 + }, + { + "word": "ärgerlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoying;irritating;angry", + "romanization": "ärgerlich", + "example_sentence_native": "Das ist eine ärgerliche Situation.", + "example_sentence_english": "That is an annoying situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6378 + }, + { + "word": "abermals", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "again;once more", + "romanization": "abermals", + "example_sentence_native": "Er versuchte es abermals.", + "example_sentence_english": "He tried it once more.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6379 + }, + { + "word": "ableiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to derive;to deduce", + "romanization": "ableiten", + "example_sentence_native": "Man kann viele Schlussfolgerungen aus diesen Daten ableiten.", + "example_sentence_english": "One can derive many conclusions from this data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6380 + }, + { + "word": "Act", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act", + "romanization": "Act", + "example_sentence_native": "Der zweite Act des Stücks war sehr spannend.", + "example_sentence_english": "The second act of the play was very exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6383 + }, + { + "word": "akademisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academic", + "romanization": "akademisch", + "example_sentence_native": "Sie verfolgt eine akademische Karriere.", + "example_sentence_english": "She pursues an academic career.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6384 + }, + { + "word": "Allee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avenue;alley", + "romanization": "Allee", + "example_sentence_native": "Wir spazierten die lange Allee entlang.", + "example_sentence_english": "We walked along the long avenue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6385 + }, + { + "word": "ansiedeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to settle;to establish", + "romanization": "ansiedeln", + "example_sentence_native": "Viele Familien haben sich hier angesiedelt.", + "example_sentence_english": "Many families have settled here.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "siedeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6386 + }, + { + "word": "Anwohner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resident;local inhabitant", + "romanization": "Anwohner", + "example_sentence_native": "Die Anwohner beschwerten sich über den Lärm.", + "example_sentence_english": "The residents complained about the noise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6387 + }, + { + "word": "aufgeklärt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlightened;informed", + "romanization": "aufgeklärt", + "example_sentence_native": "Er ist ein sehr aufgeklärter Mensch.", + "example_sentence_english": "He is a very enlightened person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6388 + }, + { + "word": "Balken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beam;bar", + "romanization": "Balken", + "example_sentence_native": "Der Dachstuhl wird von dicken Balken getragen.", + "example_sentence_english": "The roof truss is supported by thick beams.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6390 + }, + { + "word": "Base", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "base", + "romanization": "Base", + "example_sentence_native": "In der Chemie ist eine Base das Gegenteil einer Säure.", + "example_sentence_english": "In chemistry, a base is the opposite of an acid.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6391 + }, + { + "word": "Beitritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accession;joining", + "romanization": "Beitritt", + "example_sentence_native": "Der Beitritt zur Europäischen Union war ein wichtiger Schritt.", + "example_sentence_english": "The accession to the European Union was an important step.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6393 + }, + { + "word": "Berührung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touch;contact", + "romanization": "Berührung", + "example_sentence_native": "Eine leichte Berührung genügte, um ihn aufzuwecken.", + "example_sentence_english": "A light touch was enough to wake him up.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6394 + }, + { + "word": "Bike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bike;bicycle", + "romanization": "Bike", + "example_sentence_native": "Er fährt jeden Tag mit seinem Bike zur Arbeit.", + "example_sentence_english": "He rides his bike to work every day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6395 + }, + { + "word": "blättern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leaf through;to browse", + "romanization": "blättern", + "example_sentence_native": "Sie blätterte in einem alten Fotoalbum.", + "example_sentence_english": "She leafed through an old photo album.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6396 + }, + { + "word": "Boom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boom", + "romanization": "Boom", + "example_sentence_native": "Die Wirtschaft erlebt einen starken Boom.", + "example_sentence_english": "The economy is experiencing a strong boom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6397 + }, + { + "word": "Bundespräsident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal President", + "romanization": "Bundespräsident", + "example_sentence_native": "Der Bundespräsident repräsentiert das Land.", + "example_sentence_english": "The Federal President represents the country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6398 + }, + { + "word": "Cc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "CC (carbon copy)", + "romanization": "Cc", + "example_sentence_native": "Bitte setzen Sie mich ins Cc dieser E-Mail.", + "example_sentence_english": "Please CC me on this email.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6399 + }, + { + "word": "Differenz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difference", + "romanization": "Differenz", + "example_sentence_native": "Es gibt eine große Differenz zwischen den beiden Meinungen.", + "example_sentence_english": "There is a big difference between the two opinions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6401 + }, + { + "word": "Drohung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threat", + "romanization": "Drohung", + "example_sentence_native": "Er erhielt eine anonyme Drohung.", + "example_sentence_english": "He received an anonymous threat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6403 + }, + { + "word": "Erleichterung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relief", + "romanization": "Erleichterung", + "example_sentence_native": "Sie atmete mit Erleichterung auf.", + "example_sentence_english": "She breathed a sigh of relief.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6406 + }, + { + "word": "erschienen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appeared", + "romanization": "erschienen", + "example_sentence_native": "Das neue Buch ist letzte Woche erschienen.", + "example_sentence_english": "The new book appeared last week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6407 + }, + { + "word": "erschreckend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frightening", + "romanization": "erschreckend", + "example_sentence_native": "Das war eine erschreckende Nachricht.", + "example_sentence_english": "That was frightening news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6408 + }, + { + "word": "etabliert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "established", + "romanization": "etabliert", + "example_sentence_native": "Er ist ein etablierter Künstler.", + "example_sentence_english": "He is an established artist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6409 + }, + { + "word": "Fahrbahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roadway", + "romanization": "Fahrbahn", + "example_sentence_native": "Die Fahrbahn war glatt wegen des Eises.", + "example_sentence_english": "The roadway was slippery due to the ice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6410 + }, + { + "word": "Finanzminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finance minister", + "romanization": "Finanzminister", + "example_sentence_native": "Der Finanzminister stellte den neuen Haushaltsplan vor.", + "example_sentence_english": "The finance minister presented the new budget plan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6411 + }, + { + "word": "frech", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheeky", + "romanization": "frech", + "example_sentence_native": "Das Kind war sehr frech.", + "example_sentence_english": "The child was very cheeky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6412 + }, + { + "word": "Frisur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairstyle", + "romanization": "Frisur", + "example_sentence_native": "Sie hat eine neue Frisur.", + "example_sentence_english": "She has a new hairstyle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6413 + }, + { + "word": "Fundament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation", + "romanization": "Fundament", + "example_sentence_native": "Das Haus braucht ein starkes Fundament.", + "example_sentence_english": "The house needs a strong foundation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6414 + }, + { + "word": "Getreide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain", + "romanization": "Getreide", + "example_sentence_native": "Auf dem Feld wächst viel Getreide.", + "example_sentence_english": "A lot of grain grows in the field.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6417 + }, + { + "word": "Gewässer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "body of water", + "romanization": "Gewässer", + "example_sentence_native": "Die Region ist reich an Gewässern.", + "example_sentence_english": "The region is rich in bodies of water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6418 + }, + { + "word": "hinnehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accept", + "romanization": "hinnehmen", + "example_sentence_native": "Man muss die Situation hinnehmen, wie sie ist.", + "example_sentence_english": "One has to accept the situation as it is.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6419 + }, + { + "word": "Hype", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hype", + "romanization": "Hype", + "example_sentence_native": "Der Hype um das neue Smartphone war riesig.", + "example_sentence_english": "The hype around the new smartphone was huge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6420 + }, + { + "word": "Kellner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waiter", + "romanization": "Kellner", + "example_sentence_native": "Der Kellner brachte uns die Speisekarte.", + "example_sentence_english": "The waiter brought us the menu.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6425 + }, + { + "word": "Kiefer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaw;pine (tree)", + "romanization": "Kiefer", + "example_sentence_native": "Er hatte Schmerzen in der Kiefer.", + "example_sentence_english": "He had pain in his jaw.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6426 + }, + { + "word": "Kompliment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compliment", + "romanization": "Kompliment", + "example_sentence_native": "Sie machte ihm ein Kompliment.", + "example_sentence_english": "She paid him a compliment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6427 + }, + { + "word": "Konzeption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concept;conception;design", + "romanization": "Konzeption", + "example_sentence_native": "Die Konzeption des Projekts ist sehr detailliert.", + "example_sentence_english": "The concept of the project is very detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6428 + }, + { + "word": "konzipieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceive;to design;to draft", + "romanization": "konzipieren", + "example_sentence_native": "Wir müssen ein neues Marketingkonzept konzipieren.", + "example_sentence_english": "We need to design a new marketing concept.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6429 + }, + { + "word": "Kunstwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artwork;work of art", + "romanization": "Kunstwerk", + "example_sentence_native": "Das Museum zeigt viele beeindruckende Kunstwerke.", + "example_sentence_english": "The museum displays many impressive artworks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6430 + }, + { + "word": "Lektüre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reading (material);lecture", + "romanization": "Lektüre", + "example_sentence_native": "Diese Lektüre ist sehr empfehlenswert.", + "example_sentence_english": "This reading material is highly recommended.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6431 + }, + { + "word": "leugnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to disavow", + "romanization": "leugnen", + "example_sentence_native": "Er konnte die Anschuldigungen nicht leugnen.", + "example_sentence_english": "He could not deny the accusations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6433 + }, + { + "word": "Map", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "map", + "romanization": "Map", + "example_sentence_native": "Wir brauchen eine Map, um den Weg zu finden.", + "example_sentence_english": "We need a map to find the way.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6437 + }, + { + "word": "Maschinenbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanical engineering", + "romanization": "Maschinenbau", + "example_sentence_native": "Er studiert Maschinenbau an der Universität.", + "example_sentence_english": "He studies mechanical engineering at the university.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6438 + }, + { + "word": "Minimum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimum", + "romanization": "Minimum", + "example_sentence_native": "Das Minimum an Schlaf ist wichtig.", + "example_sentence_english": "The minimum amount of sleep is important.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6440 + }, + { + "word": "nachhinein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in hindsight;afterwards", + "romanization": "nachhinein", + "example_sentence_native": "Im Nachhinein war es eine gute Entscheidung.", + "example_sentence_english": "In hindsight, it was a good decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6441 + }, + { + "word": "Nachlass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estate;legacy;discount", + "romanization": "Nachlass", + "example_sentence_native": "Der Nachlass des Künstlers wurde versteigert.", + "example_sentence_english": "The artist's estate was auctioned.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6442 + }, + { + "word": "Nationalpark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national park", + "romanization": "Nationalpark", + "example_sentence_native": "Wir besuchten einen wunderschönen Nationalpark.", + "example_sentence_english": "We visited a beautiful national park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6443 + }, + { + "word": "Neid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "envy", + "romanization": "Neid", + "example_sentence_native": "Neid ist ein schlechtes Gefühl.", + "example_sentence_english": "Envy is a bad feeling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6444 + }, + { + "word": "neo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neo-;new", + "romanization": "neo", + "example_sentence_native": "Das ist ein neo-klassischer Stil.", + "example_sentence_english": "That is a neo-classical style.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6445 + }, + { + "word": "Pille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pill", + "romanization": "Pille", + "example_sentence_native": "Er muss jeden Tag eine Pille nehmen.", + "example_sentence_english": "He has to take a pill every day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6448 + }, + { + "word": "Predigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sermon", + "romanization": "Predigt", + "example_sentence_native": "Die Predigt war sehr inspirierend.", + "example_sentence_english": "The sermon was very inspiring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6450 + }, + { + "word": "regnen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to rain", + "romanization": "regnen", + "example_sentence_native": "Es wird heute regnen.", + "example_sentence_english": "It will rain today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6452 + }, + { + "word": "Reiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulus;charm;appeal", + "romanization": "Reiz", + "example_sentence_native": "Der Reiz der Stadt liegt in ihrer Geschichte.", + "example_sentence_english": "The charm of the city lies in its history.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6453 + }, + { + "word": "Rendite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "return (on investment);yield", + "romanization": "Rendite", + "example_sentence_native": "Die Rendite der Investition war hoch.", + "example_sentence_english": "The return on the investment was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6455 + }, + { + "word": "Rundschau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "review;roundup;news program", + "romanization": "Rundschau", + "example_sentence_native": "Die Tagesschau ist eine bekannte Rundschau.", + "example_sentence_english": "The Tagesschau is a well-known news program.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6457 + }, + { + "word": "Räumlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premises;room;locality", + "romanization": "Räumlichkeit", + "example_sentence_native": "Die Räumlichkeiten sind für die Veranstaltung geeignet.", + "example_sentence_english": "The premises are suitable for the event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6458 + }, + { + "word": "Satzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statute;constitution;articles of association", + "romanization": "Satzung", + "example_sentence_native": "Die Satzung des Vereins wurde geändert.", + "example_sentence_english": "The club's statutes were changed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6460 + }, + { + "word": "saufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drink (excessively);to booze", + "romanization": "saufen", + "example_sentence_native": "Er hat gestern Abend zu viel gesoffen.", + "example_sentence_english": "He drank too much last night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6461 + }, + { + "word": "Schalter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "switch;counter (e.g.;at a bank)", + "romanization": "Schalter", + "example_sentence_native": "Drücken Sie den Schalter, um das Licht einzuschalten.", + "example_sentence_english": "Press the switch to turn on the light.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6462 + }, + { + "word": "schlank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slim;slender", + "romanization": "schlank", + "example_sentence_native": "Sie hat eine sehr schlanke Figur.", + "example_sentence_english": "She has a very slim figure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6463 + }, + { + "word": "solar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar", + "romanization": "solar", + "example_sentence_native": "Wir nutzen Solarenergie, um unser Haus zu heizen.", + "example_sentence_english": "We use solar energy to heat our house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6465 + }, + { + "word": "Source", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "source", + "romanization": "Source", + "example_sentence_native": "Die Source des Problems ist unklar.", + "example_sentence_english": "The source of the problem is unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6466 + }, + { + "word": "Spezies", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "species", + "romanization": "Spezies", + "example_sentence_native": "Es gibt viele verschiedene Spezies von Vögeln.", + "example_sentence_english": "There are many different species of birds.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6467 + }, + { + "word": "steil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steep", + "romanization": "steil", + "example_sentence_native": "Der Weg zum Gipfel ist sehr steil.", + "example_sentence_english": "The path to the summit is very steep.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6469 + }, + { + "word": "Stellenwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significance;importance;place value", + "romanization": "Stellenwert", + "example_sentence_native": "Der Stellenwert dieser Entscheidung ist enorm.", + "example_sentence_english": "The significance of this decision is enormous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6470 + }, + { + "word": "Tagesordnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agenda", + "romanization": "Tagesordnung", + "example_sentence_native": "Der erste Punkt auf der Tagesordnung ist die Begrüßung.", + "example_sentence_english": "The first item on the agenda is the welcome.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6472 + }, + { + "word": "Transformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformation", + "romanization": "Transformation", + "example_sentence_native": "Die digitale Transformation verändert viele Branchen.", + "example_sentence_english": "Digital transformation is changing many industries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6473 + }, + { + "word": "Trieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drive;impulse;urge", + "romanization": "Trieb", + "example_sentence_native": "Der menschliche Trieb nach Wissen ist stark.", + "example_sentence_english": "The human drive for knowledge is strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6474 + }, + { + "word": "umwandeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convert;to transform", + "romanization": "umwandeln", + "example_sentence_native": "Man kann Sonnenenergie in Elektrizität umwandeln.", + "example_sentence_english": "One can convert solar energy into electricity.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "wandeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6476 + }, + { + "word": "unverständlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incomprehensible;unintelligible", + "romanization": "unverständlich", + "example_sentence_native": "Seine Erklärung war völlig unverständlich.", + "example_sentence_english": "His explanation was completely incomprehensible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6477 + }, + { + "word": "verarschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fool;to take the piss out of (someone)", + "romanization": "verarschen", + "example_sentence_native": "Hör auf, mich zu verarschen!", + "example_sentence_english": "Stop fooling me!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6478 + }, + { + "word": "verderben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spoil;to ruin;to corrupt", + "romanization": "verderben", + "example_sentence_native": "Die Milch ist verdorben.", + "example_sentence_english": "The milk has spoiled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6479 + }, + { + "word": "verkürzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shortened;abbreviated", + "romanization": "verkürzt", + "example_sentence_native": "Der Text wurde stark verkürzt.", + "example_sentence_english": "The text was heavily shortened.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6480 + }, + { + "word": "versteckt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hidden;secret", + "romanization": "versteckt", + "example_sentence_native": "Sie fanden den versteckten Schatz.", + "example_sentence_english": "They found the hidden treasure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6481 + }, + { + "word": "Verwirrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confusion", + "romanization": "Verwirrung", + "example_sentence_native": "Es gab große Verwirrung über die neuen Regeln.", + "example_sentence_english": "There was great confusion about the new rules.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6482 + }, + { + "word": "Vorurteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudice", + "romanization": "Vorurteil", + "example_sentence_native": "Man sollte keine Vorurteile haben.", + "example_sentence_english": "One should not have prejudices.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6485 + }, + { + "word": "Vorwort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foreword;preface", + "romanization": "Vorwort", + "example_sentence_native": "Das Buch beginnt mit einem kurzen Vorwort.", + "example_sentence_english": "The book begins with a short foreword.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6486 + }, + { + "word": "Wappen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coat of arms;emblem", + "romanization": "Wappen", + "example_sentence_native": "Jede Stadt hat ihr eigenes Wappen.", + "example_sentence_english": "Every city has its own coat of arms.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6487 + }, + { + "word": "Weibchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female (animal)", + "romanization": "Weibchen", + "example_sentence_native": "Das Weibchen des Vogels brütet die Eier aus.", + "example_sentence_english": "The female bird hatches the eggs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6489 + }, + { + "word": "Abgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "departure;exit;descent", + "romanization": "Abgang", + "example_sentence_native": "Der Abgang des Zuges wurde angekündigt.", + "example_sentence_english": "The departure of the train was announced.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6491 + }, + { + "word": "allenfalls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at best;at most;possibly", + "romanization": "allenfalls", + "example_sentence_native": "Er könnte allenfalls morgen kommen.", + "example_sentence_english": "He might come tomorrow at best.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6492 + }, + { + "word": "alliierter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allied", + "romanization": "alliierter", + "example_sentence_native": "Die alliierten Truppen rückten vor.", + "example_sentence_english": "The allied troops advanced.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6494 + }, + { + "word": "Anbindung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection;integration", + "romanization": "Anbindung", + "example_sentence_native": "Die Stadt hat eine gute Anbindung an den öffentlichen Nahverkehr.", + "example_sentence_english": "The city has a good connection to public transport.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6495 + }, + { + "word": "aneinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "together;against each other (in contact)", + "romanization": "aneinander", + "example_sentence_native": "Die Stühle stehen dicht aneinander.", + "example_sentence_english": "The chairs are standing close together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6496 + }, + { + "word": "Arbeitsbedingung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working condition", + "romanization": "Arbeitsbedingung", + "example_sentence_native": "Die Arbeitsbedingungen in der Fabrik sind schlecht.", + "example_sentence_english": "The working conditions in the factory are bad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6497 + }, + { + "word": "aufgreifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take up;to pick up;to seize", + "romanization": "aufgreifen", + "example_sentence_native": "Er wollte das Thema später wieder aufgreifen.", + "example_sentence_english": "He wanted to take up the topic again later.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "greifen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6498 + }, + { + "word": "Auslöser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger;cause;release button", + "romanization": "Auslöser", + "example_sentence_native": "Stress kann ein Auslöser für Krankheiten sein.", + "example_sentence_english": "Stress can be a trigger for illnesses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6499 + }, + { + "word": "Ausrede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excuse", + "romanization": "Ausrede", + "example_sentence_native": "Er hatte immer eine Ausrede, um nicht zu helfen.", + "example_sentence_english": "He always had an excuse not to help.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6500 + }, + { + "word": "ausserordentlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraordinary;exceptional", + "romanization": "ausserordentlich", + "example_sentence_native": "Das war eine ausserordentlich gute Leistung.", + "example_sentence_english": "That was an extraordinarily good performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6501 + }, + { + "word": "Badewanne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathtub", + "romanization": "Badewanne", + "example_sentence_native": "Ich entspanne mich gerne in der Badewanne.", + "example_sentence_english": "I like to relax in the bathtub.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6502 + }, + { + "word": "beibehalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retain;to maintain", + "romanization": "beibehalten", + "example_sentence_native": "Wir sollten diese Tradition beibehalten.", + "example_sentence_english": "We should retain this tradition.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "behalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6503 + }, + { + "word": "bescheiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modest;humble", + "romanization": "bescheiden", + "example_sentence_native": "Er ist ein sehr bescheidener Mensch.", + "example_sentence_english": "He is a very modest person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6505 + }, + { + "word": "beschissen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crappy;lousy", + "romanization": "beschissen", + "example_sentence_native": "Ich hatte einen beschissenen Tag.", + "example_sentence_english": "I had a crappy day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6506 + }, + { + "word": "Body", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "body (clothing item;or physique)", + "romanization": "Body", + "example_sentence_native": "Sie trug einen schwarzen Body.", + "example_sentence_english": "She wore a black bodysuit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6507 + }, + { + "word": "Brauerei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brewery", + "romanization": "Brauerei", + "example_sentence_native": "Wir besuchten eine lokale Brauerei.", + "example_sentence_english": "We visited a local brewery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6508 + }, + { + "word": "Clan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clan", + "romanization": "Clan", + "example_sentence_native": "Der Clan traf sich zur jährlichen Versammlung.", + "example_sentence_english": "The clan met for the annual gathering.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6510 + }, + { + "word": "Control", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "control (e.g.;in technical contexts)", + "romanization": "Control", + "example_sentence_native": "Das Control-Panel ist einfach zu bedienen.", + "example_sentence_english": "The control panel is easy to operate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6512 + }, + { + "word": "cross", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross;annoyed", + "romanization": "cross", + "example_sentence_native": "Sie war ziemlich cross, als sie die Nachricht hörte.", + "example_sentence_english": "She was quite cross when she heard the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6513 + }, + { + "word": "Dieb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thief", + "romanization": "Dieb", + "example_sentence_native": "Der Dieb wurde von der Polizei gefasst.", + "example_sentence_english": "The thief was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6514 + }, + { + "word": "Dschungel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jungle", + "romanization": "Dschungel", + "example_sentence_native": "Der Dschungel war dicht und voller Geräusche.", + "example_sentence_english": "The jungle was dense and full of sounds.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6515 + }, + { + "word": "Eck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corner (regional or in compounds)", + "romanization": "Eck", + "example_sentence_native": "Das Haus steht am Eck der Straße.", + "example_sentence_english": "The house stands on the corner of the street.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6517 + }, + { + "word": "erfolglos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsuccessful;fruitless", + "romanization": "erfolglos", + "example_sentence_native": "Seine Bemühungen blieben erfolglos.", + "example_sentence_english": "His efforts remained unsuccessful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6518 + }, + { + "word": "erforschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to research;to explore", + "romanization": "erforschen", + "example_sentence_native": "Wissenschaftler erforschen neue Heilmethoden.", + "example_sentence_english": "Scientists research new healing methods.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6519 + }, + { + "word": "erziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to educate;to raise", + "romanization": "erziehen", + "example_sentence_native": "Sie erzieht ihre Kinder gut.", + "example_sentence_english": "She raises her children well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6520 + }, + { + "word": "faktisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "factual;de facto", + "romanization": "faktisch", + "example_sentence_native": "Faktisch hat sich nichts geändert.", + "example_sentence_english": "Factually, nothing has changed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6521 + }, + { + "word": "Fashion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fashion", + "romanization": "Fashion", + "example_sentence_native": "Sie interessiert sich für Mode und Fashion.", + "example_sentence_english": "She is interested in style and fashion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6522 + }, + { + "word": "Gattin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wife (formal)", + "romanization": "Gattin", + "example_sentence_native": "Seine Gattin begleitete ihn zur Veranstaltung.", + "example_sentence_english": "His wife accompanied him to the event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6524 + }, + { + "word": "Gefährdung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endangerment;risk", + "romanization": "Gefährdung", + "example_sentence_native": "Die Gefährdung der Umwelt ist ein ernstes Problem.", + "example_sentence_english": "The endangerment of the environment is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6525 + }, + { + "word": "Gesetzgebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislation", + "romanization": "Gesetzgebung", + "example_sentence_native": "Die neue Gesetzgebung tritt im nächsten Jahr in Kraft.", + "example_sentence_english": "The new legislation comes into force next year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6526 + }, + { + "word": "gesundheitlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "health-related;medical", + "romanization": "gesundheitlich", + "example_sentence_native": "Er hat gesundheitliche Probleme.", + "example_sentence_english": "He has health problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6527 + }, + { + "word": "gewünscht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desired;wished", + "romanization": "gewünscht", + "example_sentence_native": "Das ist das gewünschte Ergebnis.", + "example_sentence_english": "That is the desired result.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6528 + }, + { + "word": "Guide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guide", + "romanization": "Guide", + "example_sentence_native": "Der Reiseführer ist ein guter Guide.", + "example_sentence_english": "The travel guide is a good guide.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6530 + }, + { + "word": "Hygiene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygiene", + "romanization": "Hygiene", + "example_sentence_native": "Gute Hygiene ist wichtig für die Gesundheit.", + "example_sentence_english": "Good hygiene is important for health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6533 + }, + { + "word": "Härte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardness;severity", + "romanization": "Härte", + "example_sentence_native": "Die Härte des Wassers ist hoch.", + "example_sentence_english": "The hardness of the water is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6534 + }, + { + "word": "Hürde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurdle;obstacle", + "romanization": "Hürde", + "example_sentence_native": "Er überwand jede Hürde.", + "example_sentence_english": "He overcame every hurdle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6535 + }, + { + "word": "Jahrestag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anniversary", + "romanization": "Jahrestag", + "example_sentence_native": "Heute ist unser Jahrestag.", + "example_sentence_english": "Today is our anniversary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6538 + }, + { + "word": "kassieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collect (money);to cash in", + "romanization": "kassieren", + "example_sentence_native": "Der Kellner kassiert das Geld.", + "example_sentence_english": "The waiter collects the money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6539 + }, + { + "word": "Kleinanzeige", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classified ad", + "romanization": "Kleinanzeige", + "example_sentence_native": "Ich habe die Kleinanzeige in der Zeitung gelesen.", + "example_sentence_english": "I read the classified ad in the newspaper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6540 + }, + { + "word": "Kleinstadt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small town", + "romanization": "Kleinstadt", + "example_sentence_native": "Sie lebt in einer ruhigen Kleinstadt.", + "example_sentence_english": "She lives in a quiet small town.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6541 + }, + { + "word": "Kneipe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pub", + "romanization": "Kneipe", + "example_sentence_native": "Wir treffen uns heute Abend in der Kneipe.", + "example_sentence_english": "We're meeting at the pub tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6542 + }, + { + "word": "Kollektion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection", + "romanization": "Kollektion", + "example_sentence_native": "Die neue Kollektion ist sehr beliebt.", + "example_sentence_english": "The new collection is very popular.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6543 + }, + { + "word": "Landeshauptstadt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state capital", + "romanization": "Landeshauptstadt", + "example_sentence_native": "München ist die Landeshauptstadt von Bayern.", + "example_sentence_english": "Munich is the state capital of Bavaria.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6547 + }, + { + "word": "Latte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "latte", + "romanization": "Latte", + "example_sentence_native": "Ich hätte gerne einen Latte Macchiato.", + "example_sentence_english": "I would like a latte macchiato.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6548 + }, + { + "word": "Lebensweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way of life", + "romanization": "Lebensweise", + "example_sentence_native": "Seine Lebensweise ist sehr gesund.", + "example_sentence_english": "His way of life is very healthy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6549 + }, + { + "word": "Leine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leash", + "romanization": "Leine", + "example_sentence_native": "Bitte nimm den Hund an die Leine.", + "example_sentence_english": "Please put the dog on the leash.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6550 + }, + { + "word": "Liebling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "darling", + "romanization": "Liebling", + "example_sentence_native": "Du bist mein Liebling.", + "example_sentence_english": "You are my darling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6551 + }, + { + "word": "Lobby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lobby", + "romanization": "Lobby", + "example_sentence_native": "Wir warten in der Lobby des Hotels.", + "example_sentence_english": "We are waiting in the hotel lobby.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6552 + }, + { + "word": "Lunge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lung", + "romanization": "Lunge", + "example_sentence_native": "Die Lunge ist wichtig für die Atmung.", + "example_sentence_english": "The lung is important for breathing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6553 + }, + { + "word": "Mainstream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mainstream", + "romanization": "Mainstream", + "example_sentence_native": "Er mag keine Musik aus dem Mainstream.", + "example_sentence_english": "He doesn't like music from the mainstream.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6555 + }, + { + "word": "Mehl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flour", + "romanization": "Mehl", + "example_sentence_native": "Für den Kuchen brauchen wir Mehl.", + "example_sentence_english": "We need flour for the cake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6558 + }, + { + "word": "mild", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mild;gentle", + "romanization": "mild", + "example_sentence_native": "Das Wetter ist heute mild.", + "example_sentence_english": "The weather is mild today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6560 + }, + { + "word": "Männchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "male (animal);little man;figurine", + "romanization": "Männchen", + "example_sentence_native": "Das Männchen des Vogels hat bunte Federn.", + "example_sentence_english": "The male bird has colorful feathers.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6562 + }, + { + "word": "nacheinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one after another;successively", + "romanization": "nacheinander", + "example_sentence_native": "Die Kinder kamen nacheinander zur Tür herein.", + "example_sentence_english": "The children came into the door one after another.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6563 + }, + { + "word": "Naturwissenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "natural science", + "romanization": "Naturwissenschaft", + "example_sentence_native": "Er studiert Naturwissenschaften an der Universität.", + "example_sentence_english": "He studies natural sciences at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6564 + }, + { + "word": "Optik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optics;appearance", + "romanization": "Optik", + "example_sentence_native": "Die Optik des neuen Autos ist sehr modern.", + "example_sentence_english": "The appearance of the new car is very modern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6566 + }, + { + "word": "Ordner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "folder;binder;organizer", + "romanization": "Ordner", + "example_sentence_native": "Bitte legen Sie die Dokumente in den Ordner.", + "example_sentence_english": "Please put the documents in the folder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6567 + }, + { + "word": "Pfad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;trail", + "romanization": "Pfad", + "example_sentence_native": "Der Pfad führt durch den Wald.", + "example_sentence_english": "The path leads through the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6569 + }, + { + "word": "Print", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "print (as in print media)", + "romanization": "Print", + "example_sentence_native": "Die Zeitung ist ein Printmedium.", + "example_sentence_english": "The newspaper is a print medium.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6571 + }, + { + "word": "Pädagogik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedagogy;education", + "romanization": "Pädagogik", + "example_sentence_native": "Sie studiert Pädagogik an der Universität.", + "example_sentence_english": "She studies pedagogy at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6572 + }, + { + "word": "Quadratmeter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "square meter", + "romanization": "Quadratmeter", + "example_sentence_native": "Die Wohnung hat 80 Quadratmeter.", + "example_sentence_english": "The apartment has 80 square meters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6573 + }, + { + "word": "Referendum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referendum", + "romanization": "Referendum", + "example_sentence_native": "Die Bürger stimmten in einem Referendum ab.", + "example_sentence_english": "The citizens voted in a referendum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6575 + }, + { + "word": "reinigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clean;to purify", + "romanization": "reinigen", + "example_sentence_native": "Sie muss das Bad reinigen.", + "example_sentence_english": "She has to clean the bathroom.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6576 + }, + { + "word": "romantisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "romantic", + "romanization": "romantisch", + "example_sentence_native": "Das ist ein sehr romantischer Film.", + "example_sentence_english": "That is a very romantic movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6577 + }, + { + "word": "Router", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "router", + "romanization": "Router", + "example_sentence_native": "Der Router ist kaputt.", + "example_sentence_english": "The router is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6578 + }, + { + "word": "schlucken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swallow", + "romanization": "schlucken", + "example_sentence_native": "Er konnte die Tablette nicht schlucken.", + "example_sentence_english": "He could not swallow the tablet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6579 + }, + { + "word": "schockieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shock", + "romanization": "schockieren", + "example_sentence_native": "Die Nachricht hat mich sehr schockiert.", + "example_sentence_english": "The news shocked me very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6581 + }, + { + "word": "Schulzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school time", + "romanization": "Schulzeit", + "example_sentence_native": "Meine Schulzeit war eine schöne Zeit.", + "example_sentence_english": "My school time was a beautiful time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6582 + }, + { + "word": "Schwimmbad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming pool", + "romanization": "Schwimmbad", + "example_sentence_native": "Wir gehen oft ins Schwimmbad.", + "example_sentence_english": "We often go to the swimming pool.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6583 + }, + { + "word": "stinken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stink", + "romanization": "stinken", + "example_sentence_native": "Der Müll stinkt sehr.", + "example_sentence_english": "The trash stinks a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6586 + }, + { + "word": "Syrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Syrian (person)", + "romanization": "Syrer", + "example_sentence_native": "Er ist ein Syrer.", + "example_sentence_english": "He is a Syrian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6587 + }, + { + "word": "Südwesten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southwest", + "romanization": "Südwesten", + "example_sentence_native": "Das Haus liegt im Südwesten der Stadt.", + "example_sentence_english": "The house is located in the southwest of the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6588 + }, + { + "word": "Teich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pond", + "romanization": "Teich", + "example_sentence_native": "Im Garten gibt es einen kleinen Teich.", + "example_sentence_english": "There is a small pond in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6589 + }, + { + "word": "trans", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trans", + "romanization": "trans", + "example_sentence_native": "Sie identifiziert sich als trans Person.", + "example_sentence_english": "She identifies as a trans person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6592 + }, + { + "word": "transparent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transparent", + "romanization": "transparent", + "example_sentence_native": "Das Glas ist transparent.", + "example_sentence_english": "The glass is transparent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6593 + }, + { + "word": "umbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rebuild;to convert", + "romanization": "umbauen", + "example_sentence_native": "Wir wollen unser Haus umbauen.", + "example_sentence_english": "We want to rebuild our house.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6595 + }, + { + "word": "umziehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move (house);to change (clothes)", + "romanization": "umziehen", + "example_sentence_native": "Wir werden nächsten Monat umziehen.", + "example_sentence_english": "We will move next month.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6596 + }, + { + "word": "Unterbringung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accommodation;housing", + "romanization": "Unterbringung", + "example_sentence_native": "Die Unterbringung war sehr komfortabel.", + "example_sentence_english": "The accommodation was very comfortable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6597 + }, + { + "word": "verankern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to anchor;to embed", + "romanization": "verankern", + "example_sentence_native": "Das Schiff wurde im Hafen verankert.", + "example_sentence_english": "The ship was anchored in the harbor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6599 + }, + { + "word": "verloren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lost", + "romanization": "verloren", + "example_sentence_native": "Der Schlüssel ist verloren.", + "example_sentence_english": "The key is lost.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6600 + }, + { + "word": "Vernichtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "destruction", + "romanization": "Vernichtung", + "example_sentence_native": "Die Vernichtung des Waldes ist eine Tragödie.", + "example_sentence_english": "The destruction of the forest is a tragedy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6601 + }, + { + "word": "verwirklichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to realize", + "romanization": "verwirklichen", + "example_sentence_native": "Er möchte seinen Traum verwirklichen.", + "example_sentence_english": "He wants to realize his dream.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6603 + }, + { + "word": "Volleyball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volleyball", + "romanization": "Volleyball", + "example_sentence_native": "Wir spielen jeden Sonntag Volleyball.", + "example_sentence_english": "We play volleyball every Sunday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6604 + }, + { + "word": "vorschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prescribe", + "romanization": "vorschreiben", + "example_sentence_native": "Der Arzt hat ihm Bettruhe vorgeschrieben.", + "example_sentence_english": "The doctor prescribed him bed rest.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6605 + }, + { + "word": "Weide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pasture", + "romanization": "Weide", + "example_sentence_native": "Die Kühe grasen auf der grünen Weide.", + "example_sentence_english": "The cows are grazing in the green pasture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6606 + }, + { + "word": "Wohnort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place of residence", + "romanization": "Wohnort", + "example_sentence_native": "Bitte geben Sie Ihren Wohnort an.", + "example_sentence_english": "Please state your place of residence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6607 + }, + { + "word": "Zunahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase", + "romanization": "Zunahme", + "example_sentence_native": "Es gab eine deutliche Zunahme der Verkaufszahlen.", + "example_sentence_english": "There was a significant increase in sales figures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6608 + }, + { + "word": "zweifellos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undoubtedly", + "romanization": "zweifellos", + "example_sentence_native": "Er ist zweifellos der beste Spieler.", + "example_sentence_english": "He is undoubtedly the best player.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6609 + }, + { + "word": "Airport", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "airport", + "romanization": "Airport", + "example_sentence_native": "Der Airport ist weit vom Stadtzentrum entfernt.", + "example_sentence_english": "The airport is far from the city center.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6611 + }, + { + "word": "Ansprechpartner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contact person", + "romanization": "Ansprechpartner", + "example_sentence_native": "Wer ist Ihr Ansprechpartner für dieses Projekt?", + "example_sentence_english": "Who is your contact person for this project?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6612 + }, + { + "word": "auflegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hang up", + "romanization": "auflegen", + "example_sentence_native": "Bitte legen Sie nicht auf.", + "example_sentence_english": "Please don't hang up.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6613 + }, + { + "word": "ausrüsten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equip", + "romanization": "ausrüsten", + "example_sentence_native": "Die Soldaten wurden mit neuer Ausrüstung ausgerüstet.", + "example_sentence_english": "The soldiers were equipped with new gear.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rüsten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6614 + }, + { + "word": "Bandbreite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bandwidth", + "romanization": "Bandbreite", + "example_sentence_native": "Die Bandbreite der Meinungen ist groß.", + "example_sentence_english": "The range of opinions is wide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6615 + }, + { + "word": "Beauty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beauty", + "romanization": "Beauty", + "example_sentence_native": "Sie arbeitet in der Beauty-Branche.", + "example_sentence_english": "She works in the beauty industry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6616 + }, + { + "word": "Bestseller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bestseller", + "romanization": "Bestseller", + "example_sentence_native": "Dieses Buch ist ein Bestseller.", + "example_sentence_english": "This book is a bestseller.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6617 + }, + { + "word": "bewaffnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armed", + "romanization": "bewaffnet", + "example_sentence_native": "Die Polizei fand eine bewaffnete Person.", + "example_sentence_english": "The police found an armed person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6618 + }, + { + "word": "bezweifeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to doubt", + "romanization": "bezweifeln", + "example_sentence_native": "Ich bezweifle, dass das wahr ist.", + "example_sentence_english": "I doubt that is true.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6619 + }, + { + "word": "Biss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite", + "romanization": "Biss", + "example_sentence_native": "Der Hund gab einen kleinen Biss.", + "example_sentence_english": "The dog gave a small bite.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6620 + }, + { + "word": "Buchhandlung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookstore", + "romanization": "Buchhandlung", + "example_sentence_native": "Ich gehe oft in die Buchhandlung.", + "example_sentence_english": "I often go to the bookstore.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6622 + }, + { + "word": "Bude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stall;shack", + "romanization": "Bude", + "example_sentence_native": "Wir haben uns eine kleine Bude am Strand gemietet.", + "example_sentence_english": "We rented a small shack on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6623 + }, + { + "word": "Casino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casino", + "romanization": "Casino", + "example_sentence_native": "Das Casino ist bis spät in die Nacht geöffnet.", + "example_sentence_english": "The casino is open late into the night.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6624 + }, + { + "word": "Dad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dad", + "romanization": "Dad", + "example_sentence_native": "Mein Dad kommt uns besuchen.", + "example_sentence_english": "My Dad is coming to visit us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6626 + }, + { + "word": "Deck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deck", + "romanization": "Deck", + "example_sentence_native": "Wir standen auf dem Deck des Schiffes.", + "example_sentence_english": "We stood on the deck of the ship.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6628 + }, + { + "word": "Delegation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegation", + "romanization": "Delegation", + "example_sentence_native": "Eine Delegation aus Japan besuchte die Konferenz.", + "example_sentence_english": "A delegation from Japan visited the conference.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6629 + }, + { + "word": "Dinner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dinner", + "romanization": "Dinner", + "example_sentence_native": "Wir hatten ein schönes Dinner im Restaurant.", + "example_sentence_english": "We had a nice dinner at the restaurant.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6630 + }, + { + "word": "Einbrecher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burglar", + "romanization": "Einbrecher", + "example_sentence_native": "Die Polizei hat den Einbrecher gefasst.", + "example_sentence_english": "The police caught the burglar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6632 + }, + { + "word": "Einwanderer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigrant", + "romanization": "Einwanderer", + "example_sentence_native": "Viele Einwanderer suchen in Deutschland eine neue Heimat.", + "example_sentence_english": "Many immigrants are looking for a new home in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6633 + }, + { + "word": "Emission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emission", + "romanization": "Emission", + "example_sentence_native": "Die Reduzierung von Emissionen ist wichtig für das Klima.", + "example_sentence_english": "Reducing emissions is important for the climate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6634 + }, + { + "word": "empören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outrage;to revolt", + "romanization": "empören", + "example_sentence_native": "Die Ungerechtigkeit empörte die Menschen.", + "example_sentence_english": "The injustice outraged the people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6635 + }, + { + "word": "Engineering", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engineering", + "romanization": "Engineering", + "example_sentence_native": "Er studiert Engineering an der Universität.", + "example_sentence_english": "He studies engineering at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6636 + }, + { + "word": "Entschluss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decision;resolution", + "romanization": "Entschluss", + "example_sentence_native": "Er fasste den Entschluss, zu kündigen.", + "example_sentence_english": "He made the decision to quit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6637 + }, + { + "word": "Erfinder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inventor", + "romanization": "Erfinder", + "example_sentence_native": "Thomas Edison war ein berühmter Erfinder.", + "example_sentence_english": "Thomas Edison was a famous inventor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6638 + }, + { + "word": "erschüttern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shake;to shock", + "romanization": "erschüttern", + "example_sentence_native": "Die Nachricht erschütterte die ganze Familie.", + "example_sentence_english": "The news shook the entire family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6639 + }, + { + "word": "ersichtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparent;evident", + "romanization": "ersichtlich", + "example_sentence_native": "Es ist ersichtlich, dass er müde ist.", + "example_sentence_english": "It is apparent that he is tired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6640 + }, + { + "word": "Feature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feature", + "romanization": "Feature", + "example_sentence_native": "Das neue Feature der Software ist sehr nützlich.", + "example_sentence_english": "The new feature of the software is very useful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6641 + }, + { + "word": "formal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formal", + "romanization": "formal", + "example_sentence_native": "Die Kleidung war sehr formal.", + "example_sentence_english": "The clothing was very formal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6642 + }, + { + "word": "Freundeskreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circle of friends", + "romanization": "Freundeskreis", + "example_sentence_native": "Sie hat einen großen Freundeskreis.", + "example_sentence_english": "She has a large circle of friends.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6643 + }, + { + "word": "Frust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frustration", + "romanization": "Frust", + "example_sentence_native": "Er empfand großen Frust über die Situation.", + "example_sentence_english": "He felt great frustration about the situation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6644 + }, + { + "word": "förmlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formal;virtually", + "romanization": "förmlich", + "example_sentence_native": "Er war förmlich sprachlos.", + "example_sentence_english": "He was virtually speechless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6645 + }, + { + "word": "Galle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gall;bile", + "romanization": "Galle", + "example_sentence_native": "Er spuckte Gift und Galle.", + "example_sentence_english": "He spat venom and gall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6646 + }, + { + "word": "färben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dye;to color", + "romanization": "färben", + "example_sentence_native": "Sie möchte ihre Haare färben.", + "example_sentence_english": "She wants to dye her hair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6647 + }, + { + "word": "loben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to praise", + "romanization": "loben", + "example_sentence_native": "Der Lehrer lobte die Schüler für ihre Arbeit.", + "example_sentence_english": "The teacher praised the students for their work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6648 + }, + { + "word": "gleichnamig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eponymous;same-named", + "romanization": "gleichnamig", + "example_sentence_native": "Die gleichnamige Stadt liegt in der Nähe.", + "example_sentence_english": "The eponymous city is nearby.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6649 + }, + { + "word": "grausam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruel;brutal", + "romanization": "grausam", + "example_sentence_native": "Das war eine grausame Tat.", + "example_sentence_english": "That was a cruel act.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6650 + }, + { + "word": "Hebel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lever", + "romanization": "Hebel", + "example_sentence_native": "Er betätigte den Hebel.", + "example_sentence_english": "He operated the lever.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6652 + }, + { + "word": "Heirat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marriage;wedding", + "romanization": "Heirat", + "example_sentence_native": "Ihre Heirat war ein großes Ereignis.", + "example_sentence_english": "Their marriage was a big event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6653 + }, + { + "word": "Historie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "history", + "romanization": "Historie", + "example_sentence_native": "Die Historie der Stadt ist faszinierend.", + "example_sentence_english": "The history of the city is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6655 + }, + { + "word": "innerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internal;inwardly", + "romanization": "innerlich", + "example_sentence_native": "Er fühlte sich innerlich zerrissen.", + "example_sentence_english": "He felt inwardly torn.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6656 + }, + { + "word": "Insider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insider", + "romanization": "Insider", + "example_sentence_native": "Er ist ein Insider in der Branche.", + "example_sentence_english": "He is an insider in the industry.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6657 + }, + { + "word": "Interaktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interaction", + "romanization": "Interaktion", + "example_sentence_native": "Die Interaktion zwischen den Studenten war gut.", + "example_sentence_english": "The interaction between the students was good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6658 + }, + { + "word": "Invasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasion", + "romanization": "Invasion", + "example_sentence_native": "Die Invasion des Landes wurde verurteilt.", + "example_sentence_english": "The invasion of the country was condemned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6659 + }, + { + "word": "israelisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Israeli", + "romanization": "israelisch", + "example_sentence_native": "Die israelische Küche ist sehr vielfältig.", + "example_sentence_english": "Israeli cuisine is very diverse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6660 + }, + { + "word": "Kit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kit", + "romanization": "Kit", + "example_sentence_native": "Das Erste-Hilfe-Kit ist im Auto.", + "example_sentence_english": "The first-aid kit is in the car.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6662 + }, + { + "word": "Kontrast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contrast", + "romanization": "Kontrast", + "example_sentence_native": "Der Kontrast zwischen den Farben ist sehr stark.", + "example_sentence_english": "The contrast between the colors is very strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6664 + }, + { + "word": "Lappen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rag;cloth", + "romanization": "Lappen", + "example_sentence_native": "Bitte gib mir den Lappen, um den Tisch abzuwischen.", + "example_sentence_english": "Please give me the rag to wipe the table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6665 + }, + { + "word": "losgehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to start;to set off", + "romanization": "losgehen", + "example_sentence_native": "Wann wollen wir losgehen?", + "example_sentence_english": "When do we want to set off?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "los", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6666 + }, + { + "word": "Matrix", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matrix", + "romanization": "Matrix", + "example_sentence_native": "Die Matrix hat drei Zeilen und zwei Spalten.", + "example_sentence_english": "The matrix has three rows and two columns.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6670 + }, + { + "word": "mühsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laborious;arduous", + "romanization": "mühsam", + "example_sentence_native": "Es war ein mühsamer Weg bis zum Gipfel.", + "example_sentence_english": "It was an arduous path to the summit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6673 + }, + { + "word": "offline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offline", + "romanization": "offline", + "example_sentence_native": "Das System ist momentan offline.", + "example_sentence_english": "The system is currently offline.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6675 + }, + { + "word": "Paper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paper (academic)", + "romanization": "Paper", + "example_sentence_native": "Sie hat ein interessantes Paper über künstliche Intelligenz geschrieben.", + "example_sentence_english": "She wrote an interesting paper about artificial intelligence.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6676 + }, + { + "word": "Ph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pH", + "romanization": "pH", + "example_sentence_native": "Der pH-Wert des Wassers ist neutral.", + "example_sentence_english": "The pH value of the water is neutral.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6678 + }, + { + "word": "Pilz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mushroom;fungus", + "romanization": "Pilz", + "example_sentence_native": "Im Wald haben wir viele Pilze gefunden.", + "example_sentence_english": "We found many mushrooms in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6679 + }, + { + "word": "Profit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profit", + "romanization": "Profit", + "example_sentence_native": "Das Unternehmen machte einen hohen Profit.", + "example_sentence_english": "The company made a high profit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6680 + }, + { + "word": "Promotion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctorate", + "romanization": "Promotion", + "example_sentence_native": "Sie arbeitet an ihrer Promotion.", + "example_sentence_english": "She is working on her doctorate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6681 + }, + { + "word": "Registrierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registration", + "romanization": "Registrierung", + "example_sentence_native": "Die Registrierung ist online möglich.", + "example_sentence_english": "Registration is possible online.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6682 + }, + { + "word": "Rektor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rector", + "romanization": "Rektor", + "example_sentence_native": "Der Rektor begrüßte die neuen Studenten.", + "example_sentence_english": "The rector welcomed the new students.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6683 + }, + { + "word": "Resolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolution", + "romanization": "Resolution", + "example_sentence_native": "Die UN-Resolution wurde verabschiedet.", + "example_sentence_english": "The UN resolution was adopted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6684 + }, + { + "word": "respektieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to respect", + "romanization": "respektieren", + "example_sentence_native": "Man sollte ältere Menschen respektieren.", + "example_sentence_english": "One should respect older people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6685 + }, + { + "word": "Rohstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raw material", + "romanization": "Rohstoff", + "example_sentence_native": "Öl ist ein wichtiger Rohstoff.", + "example_sentence_english": "Oil is an important raw material.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6686 + }, + { + "word": "räumen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clear", + "romanization": "räumen", + "example_sentence_native": "Bitte räumen Sie den Tisch ab.", + "example_sentence_english": "Please clear the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6687 + }, + { + "word": "Satellit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satellite", + "romanization": "Satellit", + "example_sentence_native": "Der Satellit umkreist die Erde.", + "example_sentence_english": "The satellite orbits the Earth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6688 + }, + { + "word": "segeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sail", + "romanization": "segeln", + "example_sentence_native": "Wir wollen am Wochenende segeln gehen.", + "example_sentence_english": "We want to go sailing on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6689 + }, + { + "word": "Spa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spa", + "romanization": "Spa", + "example_sentence_native": "Wir verbrachten den Tag im Spa.", + "example_sentence_english": "We spent the day at the spa.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6692 + }, + { + "word": "Sponsor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsor", + "romanization": "Sponsor", + "example_sentence_native": "Der Sponsor unterstützte das Projekt.", + "example_sentence_english": "The sponsor supported the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6693 + }, + { + "word": "Statue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statue", + "romanization": "Statue", + "example_sentence_native": "Die alte Statue steht im Park.", + "example_sentence_english": "The old statue stands in the park.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6695 + }, + { + "word": "stechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sting", + "romanization": "stechen", + "example_sentence_native": "Die Biene kann stechen.", + "example_sentence_english": "The bee can sting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6696 + }, + { + "word": "Trinkwasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drinking water", + "romanization": "Trinkwasser", + "example_sentence_native": "Trinkwasser ist lebensnotwendig.", + "example_sentence_english": "Drinking water is essential for life.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6698 + }, + { + "word": "Turner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gymnast", + "romanization": "Turner", + "example_sentence_native": "Der Turner gewann die Goldmedaille.", + "example_sentence_english": "The gymnast won the gold medal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6699 + }, + { + "word": "ukrainisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Ukrainian", + "romanization": "ukrainisch", + "example_sentence_native": "Sie spricht Ukrainisch.", + "example_sentence_english": "She speaks Ukrainian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6701 + }, + { + "word": "umliegend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surrounding;adjacent", + "romanization": "umliegend", + "example_sentence_native": "Die umliegenden Dörfer sind sehr malerisch.", + "example_sentence_english": "The surrounding villages are very picturesque.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6702 + }, + { + "word": "Unruhe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unrest;disquiet;agitation", + "romanization": "Unruhe", + "example_sentence_native": "Es gab Unruhe in der Bevölkerung.", + "example_sentence_english": "There was unrest among the population.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6703 + }, + { + "word": "unverzüglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediately;without delay", + "romanization": "unverzüglich", + "example_sentence_native": "Bitte antworten Sie unverzüglich.", + "example_sentence_english": "Please reply immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6704 + }, + { + "word": "verfallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decay;to expire;to lapse", + "romanization": "verfallen", + "example_sentence_native": "Das Gebäude ist völlig verfallen.", + "example_sentence_english": "The building has completely decayed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6705 + }, + { + "word": "verfehlen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to miss;to fail", + "romanization": "verfehlen", + "example_sentence_native": "Er hat sein Ziel knapp verfehlt.", + "example_sentence_english": "He narrowly missed his goal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6706 + }, + { + "word": "Verleger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publisher", + "romanization": "Verleger", + "example_sentence_native": "Der Verleger hat das Buch herausgebracht.", + "example_sentence_english": "The publisher released the book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6707 + }, + { + "word": "Vorgehensweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure;approach;method", + "romanization": "Vorgehensweise", + "example_sentence_native": "Die Vorgehensweise muss klar definiert sein.", + "example_sentence_english": "The procedure must be clearly defined.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6709 + }, + { + "word": "Vorhang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curtain", + "romanization": "Vorhang", + "example_sentence_native": "Zieh den Vorhang zu, es ist zu hell.", + "example_sentence_english": "Close the curtain, it's too bright.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6710 + }, + { + "word": "Vorname", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "first name;given name", + "romanization": "Vorname", + "example_sentence_native": "Mein Vorname ist Anna.", + "example_sentence_english": "My first name is Anna.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6711 + }, + { + "word": "zunehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to increase;to gain (weight)", + "romanization": "zunehmen", + "example_sentence_native": "Die Zahl der Touristen nimmt stetig zu.", + "example_sentence_english": "The number of tourists is steadily increasing.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6713 + }, + { + "word": "zutiefst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deeply;profoundly", + "romanization": "zutiefst", + "example_sentence_native": "Er war zutiefst enttäuscht.", + "example_sentence_english": "He was deeply disappointed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6714 + }, + { + "word": "Zwiebel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "onion", + "romanization": "Zwiebel", + "example_sentence_native": "Ich brauche eine Zwiebel für die Suppe.", + "example_sentence_english": "I need an onion for the soup.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6715 + }, + { + "word": "Ästhetik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aesthetics", + "romanization": "Ästhetik", + "example_sentence_native": "Die Ästhetik des Designs ist beeindruckend.", + "example_sentence_english": "The aesthetics of the design are impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6716 + }, + { + "word": "Ökonomie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economy;economics", + "romanization": "Ökonomie", + "example_sentence_native": "Die Ökonomie des Landes wächst langsam.", + "example_sentence_english": "The country's economy is growing slowly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6717 + }, + { + "word": "überarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revise;to rework", + "romanization": "überarbeiten", + "example_sentence_native": "Ich muss meinen Bericht noch überarbeiten.", + "example_sentence_english": "I still need to revise my report.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6718 + }, + { + "word": "überstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome;to survive", + "romanization": "überstehen", + "example_sentence_native": "Wir werden diese Krise gemeinsam überstehen.", + "example_sentence_english": "We will overcome this crisis together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6719 + }, + { + "word": "Abgrund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abyss;chasm", + "romanization": "Abgrund", + "example_sentence_native": "Er stand am Rande des Abgrunds.", + "example_sentence_english": "He stood at the edge of the abyss.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6720 + }, + { + "word": "abhängen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depend on;to hang down", + "romanization": "abhängen", + "example_sentence_native": "Es hängt davon ab, wie das Wetter wird.", + "example_sentence_english": "It depends on what the weather will be like.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "hängen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6721 + }, + { + "word": "Abkürzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abbreviation;shortcut", + "romanization": "Abkürzung", + "example_sentence_native": "Das ist eine gängige Abkürzung für \"zum Beispiel\".", + "example_sentence_english": "That is a common abbreviation for \"for example\".", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6722 + }, + { + "word": "allemal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainly;by all means", + "romanization": "allemal", + "example_sentence_native": "Das ist allemal besser als nichts.", + "example_sentence_english": "That is certainly better than nothing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6725 + }, + { + "word": "Allgemeinheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "general public;generality", + "romanization": "Allgemeinheit", + "example_sentence_native": "Das ist zum Wohle der Allgemeinheit.", + "example_sentence_english": "That is for the good of the general public.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6726 + }, + { + "word": "anerkannt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognized;acknowledged", + "romanization": "anerkannt", + "example_sentence_native": "Er ist ein anerkannter Experte auf seinem Gebiet.", + "example_sentence_english": "He is a recognized expert in his field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6728 + }, + { + "word": "anfassen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to touch;to handle", + "romanization": "anfassen", + "example_sentence_native": "Bitte nicht anfassen!", + "example_sentence_english": "Please do not touch!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6729 + }, + { + "word": "Anstrengung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effort;exertion", + "romanization": "Anstrengung", + "example_sentence_native": "Es erforderte große Anstrengung, die Aufgabe zu lösen.", + "example_sentence_english": "It required great effort to solve the task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6730 + }, + { + "word": "Apotheker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pharmacist (male)", + "romanization": "Apotheker", + "example_sentence_native": "Der Apotheker hat mir das Medikament gegeben.", + "example_sentence_english": "The pharmacist gave me the medicine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6732 + }, + { + "word": "argumentieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to argue;to reason", + "romanization": "argumentieren", + "example_sentence_native": "Sie argumentierte überzeugend für ihre Position.", + "example_sentence_english": "She argued convincingly for her position.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6733 + }, + { + "word": "Atelier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studio;workshop", + "romanization": "Atelier", + "example_sentence_native": "Der Künstler arbeitet in seinem Atelier.", + "example_sentence_english": "The artist works in his studio.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6734 + }, + { + "word": "ausscheiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be eliminated;to excrete;to resign", + "romanization": "ausscheiden", + "example_sentence_native": "Die Mannschaft ist aus dem Turnier ausgeschieden.", + "example_sentence_english": "The team was eliminated from the tournament.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "scheiden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6735 + }, + { + "word": "ausgezeichnet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excellent;outstanding;awarded", + "romanization": "ausgezeichnet", + "example_sentence_native": "Das Essen war ausgezeichnet.", + "example_sentence_english": "The food was excellent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6736 + }, + { + "word": "Bekenntnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confession;commitment;creed", + "romanization": "Bekenntnis", + "example_sentence_native": "Er legte ein umfassendes Bekenntnis ab.", + "example_sentence_english": "He made a comprehensive confession.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6738 + }, + { + "word": "Bereicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enrichment;asset", + "romanization": "Bereicherung", + "example_sentence_native": "Diese Erfahrung war eine große Bereicherung für mich.", + "example_sentence_english": "This experience was a great enrichment for me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6739 + }, + { + "word": "Betriebssystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operating system", + "romanization": "Betriebssystem", + "example_sentence_native": "Das Betriebssystem meines Computers ist Windows.", + "example_sentence_english": "The operating system of my computer is Windows.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6740 + }, + { + "word": "Betrüger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swindler;fraudster", + "romanization": "Betrüger", + "example_sentence_native": "Der Betrüger wurde von der Polizei gefasst.", + "example_sentence_english": "The swindler was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6741 + }, + { + "word": "Cap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cap", + "romanization": "Cap", + "example_sentence_native": "Er trägt oft eine Cap.", + "example_sentence_english": "He often wears a cap.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6743 + }, + { + "word": "clever", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clever;smart", + "romanization": "clever", + "example_sentence_native": "Das war eine sehr clevere Idee.", + "example_sentence_english": "That was a very clever idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6744 + }, + { + "word": "Dampf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steam;vapor", + "romanization": "Dampf", + "example_sentence_native": "Aus dem Topf steigt Dampf auf.", + "example_sentence_english": "Steam rises from the pot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6746 + }, + { + "word": "Darlehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loan", + "romanization": "Darlehen", + "example_sentence_native": "Die Bank gewährt ein Darlehen für den Hauskauf.", + "example_sentence_english": "The bank grants a loan for the house purchase.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6748 + }, + { + "word": "Depot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depot;deposit;warehouse", + "romanization": "Depot", + "example_sentence_native": "Er hat seine Wertpapiere in einem Depot.", + "example_sentence_english": "He has his securities in a depot.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6749 + }, + { + "word": "Drive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drive", + "romanization": "Drive", + "example_sentence_native": "Die Festplatte ist ein wichtiger Drive in meinem Computer.", + "example_sentence_english": "The hard disk is an important drive in my computer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6750 + }, + { + "word": "Durchgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passage;thoroughfare", + "romanization": "Durchgang", + "example_sentence_native": "Der Durchgang ist wegen Bauarbeiten gesperrt.", + "example_sentence_english": "The passage is closed due to construction work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6751 + }, + { + "word": "eintreffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrive;to come in", + "romanization": "eintreffen", + "example_sentence_native": "Der Zug wird pünktlich eintreffen.", + "example_sentence_english": "The train will arrive on time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "treffen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6752 + }, + { + "word": "ekelhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusting;repulsive", + "romanization": "ekelhaft", + "example_sentence_native": "Der Geruch war ekelhaft.", + "example_sentence_english": "The smell was disgusting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6753 + }, + { + "word": "Erfassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capture;recording;registration", + "romanization": "Erfassung", + "example_sentence_native": "Die Erfassung der Daten ist abgeschlossen.", + "example_sentence_english": "The data capture is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6754 + }, + { + "word": "Etage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor;story (of a building)", + "romanization": "Etage", + "example_sentence_native": "Wir wohnen in der dritten Etage.", + "example_sentence_english": "We live on the third floor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6755 + }, + { + "word": "Etappe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage;leg (of a journey)", + "romanization": "Etappe", + "example_sentence_native": "Das ist die letzte Etappe unserer Reise.", + "example_sentence_english": "This is the last stage of our journey.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6756 + }, + { + "word": "Expedition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expedition", + "romanization": "Expedition", + "example_sentence_native": "Die Expedition zum Nordpol war gefährlich.", + "example_sentence_english": "The expedition to the North Pole was dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6757 + }, + { + "word": "Feminismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feminism", + "romanization": "Feminismus", + "example_sentence_native": "Feminismus setzt sich für die Gleichberechtigung ein.", + "example_sentence_english": "Feminism advocates for equality.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6758 + }, + { + "word": "Fliege", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fly (insect);bow tie", + "romanization": "Fliege", + "example_sentence_native": "Eine Fliege summte im Zimmer.", + "example_sentence_english": "A fly buzzed in the room.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6759 + }, + { + "word": "Flut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flood;tide", + "romanization": "Flut", + "example_sentence_native": "Die Flut kam schnell.", + "example_sentence_english": "The flood came quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6760 + }, + { + "word": "Gender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gender", + "romanization": "Gender", + "example_sentence_native": "Das Gender spielt eine wichtige Rolle in der Gesellschaft.", + "example_sentence_english": "Gender plays an important role in society.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6765 + }, + { + "word": "steuern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to steer;to control", + "romanization": "steuern", + "example_sentence_native": "Er muss das Schiff durch den Sturm steuern.", + "example_sentence_english": "He has to steer the ship through the storm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6766 + }, + { + "word": "Gräfin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countess", + "romanization": "Gräfin", + "example_sentence_native": "Die Gräfin lebte in einem großen Schloss.", + "example_sentence_english": "The countess lived in a large castle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6767 + }, + { + "word": "Göttin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goddess", + "romanization": "Göttin", + "example_sentence_native": "Athene war eine griechische Göttin.", + "example_sentence_english": "Athena was a Greek goddess.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6768 + }, + { + "word": "Haftbefehl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrest warrant", + "romanization": "Haftbefehl", + "example_sentence_native": "Die Polizei erließ einen Haftbefehl gegen den Verdächtigen.", + "example_sentence_english": "The police issued an arrest warrant for the suspect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6769 + }, + { + "word": "hiervon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hereof;of this", + "romanization": "hiervon", + "example_sentence_native": "Ich habe hiervon nichts gewusst.", + "example_sentence_english": "I knew nothing of this.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6771 + }, + { + "word": "husten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cough", + "romanization": "husten", + "example_sentence_native": "Er musste stark husten.", + "example_sentence_english": "He had to cough heavily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6774 + }, + { + "word": "Huhn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chicken;hen", + "romanization": "Huhn", + "example_sentence_native": "Das Huhn legt Eier.", + "example_sentence_english": "The chicken lays eggs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6775 + }, + { + "word": "Insolvenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insolvency;bankruptcy", + "romanization": "Insolvenz", + "example_sentence_native": "Das Unternehmen meldete Insolvenz an.", + "example_sentence_english": "The company filed for bankruptcy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6777 + }, + { + "word": "Journalistin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journalist (female)", + "romanization": "Journalistin", + "example_sentence_native": "Die Journalistin schrieb einen Artikel über das Ereignis.", + "example_sentence_english": "The journalist wrote an article about the event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6778 + }, + { + "word": "Keramik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceramics;pottery", + "romanization": "Keramik", + "example_sentence_native": "Sie stellte schöne Keramik her.", + "example_sentence_english": "She produced beautiful ceramics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6779 + }, + { + "word": "Krankenschwester", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nurse", + "romanization": "Krankenschwester", + "example_sentence_native": "Die Krankenschwester kümmerte sich um den Patienten.", + "example_sentence_english": "The nurse took care of the patient.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6780 + }, + { + "word": "Köhler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charcoal burner", + "romanization": "Köhler", + "example_sentence_native": "Der Köhler arbeitete im Wald.", + "example_sentence_english": "The charcoal burner worked in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6781 + }, + { + "word": "kühlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cool", + "romanization": "kühlen", + "example_sentence_native": "Wir müssen die Getränke kühlen.", + "example_sentence_english": "We need to cool the drinks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6782 + }, + { + "word": "machbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible;doable", + "romanization": "machbar", + "example_sentence_native": "Das Projekt ist machbar.", + "example_sentence_english": "The project is feasible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6784 + }, + { + "word": "Massage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "massage", + "romanization": "Massage", + "example_sentence_native": "Ich brauche eine entspannende Massage.", + "example_sentence_english": "I need a relaxing massage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6785 + }, + { + "word": "Maurer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bricklayer;mason", + "romanization": "Maurer", + "example_sentence_native": "Der Maurer baute die Wand.", + "example_sentence_english": "The bricklayer built the wall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6786 + }, + { + "word": "Meeting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meeting", + "romanization": "Meeting", + "example_sentence_native": "Das Meeting beginnt um zehn Uhr.", + "example_sentence_english": "The meeting starts at ten o'clock.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6787 + }, + { + "word": "Mehrzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plural;majority", + "romanization": "Mehrzahl", + "example_sentence_native": "Die Mehrzahl der Studenten war anwesend.", + "example_sentence_english": "The majority of the students were present.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6788 + }, + { + "word": "Mitgefühl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassion;sympathy", + "romanization": "Mitgefühl", + "example_sentence_native": "Sie zeigte großes Mitgefühl für die Opfer.", + "example_sentence_english": "She showed great compassion for the victims.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6790 + }, + { + "word": "mitspielen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to play along;to participate", + "romanization": "mitspielen", + "example_sentence_native": "Möchtest du mitspielen?", + "example_sentence_english": "Do you want to play along?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6791 + }, + { + "word": "Monarchie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarchy", + "romanization": "Monarchie", + "example_sentence_native": "Viele Länder haben keine Monarchie mehr.", + "example_sentence_english": "Many countries no longer have a monarchy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6792 + }, + { + "word": "nachfragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inquire;to ask again", + "romanization": "nachfragen", + "example_sentence_native": "Ich werde beim Kundendienst nachfragen.", + "example_sentence_english": "I will inquire with customer service.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "fragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6794 + }, + { + "word": "Neuerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovation;novelty", + "romanization": "Neuerung", + "example_sentence_native": "Die neue Software bringt viele Neuerungen mit sich.", + "example_sentence_english": "The new software brings many innovations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6795 + }, + { + "word": "Neugier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curiosity", + "romanization": "Neugier", + "example_sentence_native": "Ihre Neugier war geweckt.", + "example_sentence_english": "Her curiosity was aroused.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6796 + }, + { + "word": "Neuzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modern times;modern age", + "romanization": "Neuzeit", + "example_sentence_native": "Die Neuzeit begann nach dem Mittelalter.", + "example_sentence_english": "Modern times began after the Middle Ages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6797 + }, + { + "word": "nähern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach", + "romanization": "nähern", + "example_sentence_native": "Das Schiff nähert sich dem Hafen.", + "example_sentence_english": "The ship is approaching the harbor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6799 + }, + { + "word": "outdoor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outdoor", + "romanization": "outdoor", + "example_sentence_native": "Wir haben eine Outdoor-Küche.", + "example_sentence_english": "We have an outdoor kitchen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6800 + }, + { + "word": "Pfeffer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pepper", + "romanization": "Pfeffer", + "example_sentence_native": "Bitte gib mir den Pfeffer.", + "example_sentence_english": "Please give me the pepper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6801 + }, + { + "word": "Philosoph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosopher", + "romanization": "Philosoph", + "example_sentence_native": "Er ist ein bekannter Philosoph.", + "example_sentence_english": "He is a well-known philosopher.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6802 + }, + { + "word": "Poker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poker", + "romanization": "Poker", + "example_sentence_native": "Wir spielen heute Abend Poker.", + "example_sentence_english": "We are playing poker tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6803 + }, + { + "word": "Pulver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powder", + "romanization": "Pulver", + "example_sentence_native": "Das Medikament ist in Pulverform.", + "example_sentence_english": "The medicine is in powder form.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6805 + }, + { + "word": "pädagogisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedagogical", + "romanization": "pädagogisch", + "example_sentence_native": "Das ist ein pädagogisch wertvolles Spiel.", + "example_sentence_english": "This is a pedagogically valuable game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6806 + }, + { + "word": "Ratschlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advice", + "romanization": "Ratschlag", + "example_sentence_native": "Ich brauche einen guten Ratschlag.", + "example_sentence_english": "I need some good advice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6807 + }, + { + "word": "rauf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "up (colloquial)", + "romanization": "rauf", + "example_sentence_native": "Komm mal rauf!", + "example_sentence_english": "Come up!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6808 + }, + { + "word": "Revue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revue", + "romanization": "Revue", + "example_sentence_native": "Die Revue war sehr unterhaltsam.", + "example_sentence_english": "The revue was very entertaining.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6809 + }, + { + "word": "Rollstuhl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wheelchair", + "romanization": "Rollstuhl", + "example_sentence_native": "Er benutzt einen Rollstuhl.", + "example_sentence_english": "He uses a wheelchair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6810 + }, + { + "word": "Russ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soot", + "romanization": "Russ", + "example_sentence_native": "Der Schornstein war voller Russ.", + "example_sentence_english": "The chimney was full of soot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 6811 + }, + { + "word": "Schuppen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shed", + "romanization": "Schuppen", + "example_sentence_native": "Das Fahrrad steht im Schuppen.", + "example_sentence_english": "The bicycle is in the shed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 6816 + }, + { + "word": "Schüssel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowl", + "romanization": "Schüssel", + "example_sentence_native": "Die Suppe ist in der Schüssel.", + "example_sentence_english": "The soup is in the bowl.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6817 + }, + { + "word": "schütteln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake", + "romanization": "schütteln", + "example_sentence_native": "Bitte schütteln Sie die Flasche vor Gebrauch.", + "example_sentence_english": "Please shake the bottle before use.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6818 + }, + { + "word": "selbständig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "independent", + "romanization": "selbständig", + "example_sentence_native": "Er ist jetzt selbständig.", + "example_sentence_english": "He is now self-employed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6819 + }, + { + "word": "Sortiment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assortment;range", + "romanization": "Sortiment", + "example_sentence_native": "Der Laden hat ein breites Sortiment an Bio-Produkten.", + "example_sentence_english": "The store has a wide assortment of organic products.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6823 + }, + { + "word": "Spalte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "column;crack", + "romanization": "Spalte", + "example_sentence_native": "Bitte tragen Sie die Daten in die richtige Spalte ein.", + "example_sentence_english": "Please enter the data in the correct column.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6824 + }, + { + "word": "spürbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noticeable;palpable", + "romanization": "spürbar", + "example_sentence_native": "Eine spürbare Verbesserung ist eingetreten.", + "example_sentence_english": "A noticeable improvement has occurred.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6826 + }, + { + "word": "Teilzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "part-time", + "romanization": "Teilzeit", + "example_sentence_native": "Sie arbeitet in Teilzeit.", + "example_sentence_english": "She works part-time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6829 + }, + { + "word": "Tool", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tool", + "romanization": "Tool", + "example_sentence_native": "Dieses Tool ist sehr nützlich für die Datenanalyse.", + "example_sentence_english": "This tool is very useful for data analysis.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6830 + }, + { + "word": "Tuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloth;scarf", + "romanization": "Tuch", + "example_sentence_native": "Sie wickelte das Baby in ein weiches Tuch.", + "example_sentence_english": "She wrapped the baby in a soft cloth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6831 + }, + { + "word": "unerträglich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unbearable;intolerable", + "romanization": "unerträglich", + "example_sentence_native": "Der Lärm war unerträglich.", + "example_sentence_english": "The noise was unbearable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6832 + }, + { + "word": "Unterhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance;upkeep;alimony", + "romanization": "Unterhalt", + "example_sentence_native": "Er muss Unterhalt für seine Kinder zahlen.", + "example_sentence_english": "He has to pay maintenance for his children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6833 + }, + { + "word": "unterschätzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to underestimate", + "romanization": "unterschätzen", + "example_sentence_native": "Man sollte seine Gegner niemals unterschätzen.", + "example_sentence_english": "One should never underestimate one's opponents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6834 + }, + { + "word": "Verpackung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "packaging;wrapping", + "romanization": "Verpackung", + "example_sentence_native": "Die Verpackung ist recycelbar.", + "example_sentence_english": "The packaging is recyclable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6835 + }, + { + "word": "Vieh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cattle;livestock", + "romanization": "Vieh", + "example_sentence_native": "Das Vieh weidete auf der grünen Wiese.", + "example_sentence_english": "The cattle grazed on the green meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6836 + }, + { + "word": "vorrangig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primary;paramount", + "romanization": "vorrangig", + "example_sentence_native": "Die Sicherheit der Bürger ist vorrangig.", + "example_sentence_english": "The safety of the citizens is primary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6837 + }, + { + "word": "Wange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheek", + "romanization": "Wange", + "example_sentence_native": "Sie küsste ihn auf die Wange.", + "example_sentence_english": "She kissed him on the cheek.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6838 + }, + { + "word": "Watt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watt (unit of power)", + "romanization": "Watt", + "example_sentence_native": "Die Glühbirne hat 60 Watt.", + "example_sentence_english": "The light bulb has 60 watts.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6839 + }, + { + "word": "Wiedervereinigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reunification", + "romanization": "Wiedervereinigung", + "example_sentence_native": "Die deutsche Wiedervereinigung fand 1990 statt.", + "example_sentence_english": "The German reunification took place in 1990.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6841 + }, + { + "word": "Zusammenschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merger;alliance", + "romanization": "Zusammenschluss", + "example_sentence_native": "Der Zusammenschluss der beiden Firmen war erfolgreich.", + "example_sentence_english": "The merger of the two companies was successful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6843 + }, + { + "word": "Ähnlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similarity;resemblance", + "romanization": "Ähnlichkeit", + "example_sentence_native": "Es gibt eine große Ähnlichkeit zwischen den beiden Brüdern.", + "example_sentence_english": "There is a great similarity between the two brothers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6844 + }, + { + "word": "ärztlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medical;by a doctor", + "romanization": "ärztlich", + "example_sentence_native": "Sie benötigt eine ärztliche Bescheinigung.", + "example_sentence_english": "She needs a medical certificate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6845 + }, + { + "word": "Achtelfinale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "round of sixteen;eighth-final", + "romanization": "Achtelfinale", + "example_sentence_native": "Die Mannschaft erreichte das Achtelfinale des Turniers.", + "example_sentence_english": "The team reached the round of sixteen of the tournament.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6846 + }, + { + "word": "Adel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobility;aristocracy", + "romanization": "Adel", + "example_sentence_native": "Der Adel hatte früher viel Macht.", + "example_sentence_english": "The nobility used to have a lot of power.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6847 + }, + { + "word": "Alias", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alias;pseudonym", + "romanization": "Alias", + "example_sentence_native": "Er benutzt einen Alias im Internet.", + "example_sentence_english": "He uses an alias on the internet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6848 + }, + { + "word": "Anleihe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bond;loan", + "romanization": "Anleihe", + "example_sentence_native": "Die Regierung gab neue Anleihen aus.", + "example_sentence_english": "The government issued new bonds.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6850 + }, + { + "word": "Anstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decency;propriety", + "romanization": "Anstand", + "example_sentence_native": "Er zeigte viel Anstand in dieser schwierigen Situation.", + "example_sentence_english": "He showed a lot of decency in this difficult situation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6851 + }, + { + "word": "Anstoss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kick-off;impulse", + "romanization": "Anstoss", + "example_sentence_native": "Der Anstoss zum Spiel ist um 15 Uhr.", + "example_sentence_english": "The kick-off for the game is at 3 PM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6852 + }, + { + "word": "aufbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise (money);to apply;to anger", + "romanization": "aufbringen", + "example_sentence_native": "Es war schwer, das nötige Geld aufzubringen.", + "example_sentence_english": "It was difficult to raise the necessary money.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6853 + }, + { + "word": "auffinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to find;to locate", + "romanization": "auffinden", + "example_sentence_native": "Die Polizei konnte den Vermissten auffinden.", + "example_sentence_english": "The police were able to locate the missing person.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6854 + }, + { + "word": "Aufkleber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sticker;decal", + "romanization": "Aufkleber", + "example_sentence_native": "Das Kind klebte einen Aufkleber auf das Buch.", + "example_sentence_english": "The child stuck a sticker on the book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6855 + }, + { + "word": "Aufsichtsrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supervisory board", + "romanization": "Aufsichtsrat", + "example_sentence_native": "Der Aufsichtsrat traf sich zur jährlichen Sitzung.", + "example_sentence_english": "The supervisory board met for the annual meeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6856 + }, + { + "word": "ausreichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be sufficient;to suffice", + "romanization": "ausreichen", + "example_sentence_native": "Das Geld wird für die Miete ausreichen.", + "example_sentence_english": "The money will be sufficient for the rent.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "reichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6857 + }, + { + "word": "Ausschreibung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tender;call for bids", + "romanization": "Ausschreibung", + "example_sentence_native": "Die Ausschreibung für das Projekt wurde veröffentlicht.", + "example_sentence_english": "The tender for the project was published.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6858 + }, + { + "word": "Ausstieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exit;withdrawal;phase-out", + "romanization": "Ausstieg", + "example_sentence_native": "Der Ausstieg aus der Atomenergie ist ein wichtiges Thema.", + "example_sentence_english": "The phase-out of nuclear energy is an important topic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6859 + }, + { + "word": "Ausweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way out;escape", + "romanization": "Ausweg", + "example_sentence_native": "Es gab keinen Ausweg aus der Situation.", + "example_sentence_english": "There was no way out of the situation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6860 + }, + { + "word": "auswendig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by heart;by rote", + "romanization": "auswendig", + "example_sentence_native": "Sie lernte das Gedicht auswendig.", + "example_sentence_english": "She learned the poem by heart.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6861 + }, + { + "word": "bang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxious;afraid", + "romanization": "bang", + "example_sentence_native": "Mir ist bang um die Zukunft.", + "example_sentence_english": "I am anxious about the future.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6862 + }, + { + "word": "bedauern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to regret;to deplore", + "romanization": "bedauern", + "example_sentence_native": "Ich bedauere, dass ich das gesagt habe.", + "example_sentence_english": "I regret that I said that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6864 + }, + { + "word": "belästigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harass;to bother", + "romanization": "belästigen", + "example_sentence_native": "Bitte belästigen Sie mich nicht.", + "example_sentence_english": "Please do not bother me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6867 + }, + { + "word": "bewähren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prove oneself;to stand the test", + "romanization": "bewähren", + "example_sentence_native": "Er konnte sich in der neuen Rolle bewähren.", + "example_sentence_english": "He could prove himself in the new role.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6868 + }, + { + "word": "Chirurgie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgery", + "romanization": "Chirurgie", + "example_sentence_native": "Sie studiert Chirurgie an der Universität.", + "example_sentence_english": "She studies surgery at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6872 + }, + { + "word": "derweil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meanwhile;in the meantime", + "romanization": "derweil", + "example_sentence_native": "Er arbeitete im Garten, derweil seine Frau kochte.", + "example_sentence_english": "He worked in the garden, meanwhile his wife cooked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6874 + }, + { + "word": "Domain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domain", + "romanization": "Domain", + "example_sentence_native": "Sie hat eine neue Domain für ihre Webseite registriert.", + "example_sentence_english": "She registered a new domain for her website.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6875 + }, + { + "word": "durchsuchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to search through;to scour", + "romanization": "durchsuchen", + "example_sentence_native": "Die Polizei wird das Haus durchsuchen.", + "example_sentence_english": "The police will search through the house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6877 + }, + { + "word": "einweihen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inaugurate;to consecrate;to initiate (someone into something)", + "romanization": "einweihen", + "example_sentence_native": "Sie werden das neue Gebäude nächste Woche einweihen.", + "example_sentence_english": "They will inaugurate the new building next week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "weihen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6879 + }, + { + "word": "empfehlenswert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommendable", + "romanization": "empfehlenswert", + "example_sentence_native": "Dieses Buch ist sehr empfehlenswert.", + "example_sentence_english": "This book is highly recommendable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6880 + }, + { + "word": "Epoche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epoch;era", + "romanization": "Epoche", + "example_sentence_native": "Jede Epoche hat ihre eigenen Herausforderungen.", + "example_sentence_english": "Every epoch has its own challenges.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6882 + }, + { + "word": "erschweren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make more difficult;to complicate", + "romanization": "erschweren", + "example_sentence_native": "Der Regen wird die Fahrt erschweren.", + "example_sentence_english": "The rain will make the drive more difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6883 + }, + { + "word": "erstatten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refund;to reimburse", + "romanization": "erstatten", + "example_sentence_native": "Wir können Ihnen die Kosten erstatten.", + "example_sentence_english": "We can refund your costs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6884 + }, + { + "word": "Erzieher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educator;(male) childcare worker", + "romanization": "Erzieher", + "example_sentence_native": "Der Erzieher kümmert sich um die Kinder.", + "example_sentence_english": "The educator takes care of the children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6885 + }, + { + "word": "Erzähler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrator;storyteller", + "romanization": "Erzähler", + "example_sentence_native": "Der Erzähler der Geschichte war sehr fesselnd.", + "example_sentence_english": "The narrator of the story was very captivating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6886 + }, + { + "word": "Faschist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascist", + "romanization": "Faschist", + "example_sentence_native": "Er wurde als Faschist bezeichnet.", + "example_sentence_english": "He was called a fascist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6888 + }, + { + "word": "Festnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrest;apprehension", + "romanization": "Festnahme", + "example_sentence_native": "Die Polizei führte eine Festnahme durch.", + "example_sentence_english": "The police carried out an arrest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6890 + }, + { + "word": "Feuchtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humidity;moisture", + "romanization": "Feuchtigkeit", + "example_sentence_native": "Die hohe Feuchtigkeit macht die Luft stickig.", + "example_sentence_english": "The high humidity makes the air stuffy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6891 + }, + { + "word": "gefälligst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "please (emphatic;demanding)", + "romanization": "gefälligst", + "example_sentence_native": "Mach das gefälligst sofort!", + "example_sentence_english": "Please do that immediately!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6894 + }, + { + "word": "Gleichberechtigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equality;equal rights", + "romanization": "Gleichberechtigung", + "example_sentence_native": "Wir kämpfen für Gleichberechtigung.", + "example_sentence_english": "We fight for equality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6896 + }, + { + "word": "Gläubiger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creditor", + "romanization": "Gläubiger", + "example_sentence_native": "Der Gläubiger wartet auf die Zahlung.", + "example_sentence_english": "The creditor is waiting for the payment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6897 + }, + { + "word": "Halbjahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half-year;semester", + "romanization": "Halbjahr", + "example_sentence_native": "Das erste Halbjahr war sehr erfolgreich.", + "example_sentence_english": "The first half-year was very successful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6898 + }, + { + "word": "Hase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hare;rabbit", + "romanization": "Hase", + "example_sentence_native": "Der Hase hoppelt über das Feld.", + "example_sentence_english": "The hare hops across the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6900 + }, + { + "word": "Hindernis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obstacle;impediment", + "romanization": "Hindernis", + "example_sentence_native": "Das Pferd sprang über das Hindernis.", + "example_sentence_english": "The horse jumped over the obstacle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6903 + }, + { + "word": "hindurch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "through;throughout", + "romanization": "hindurch", + "example_sentence_native": "Er ging den ganzen Tag hindurch.", + "example_sentence_english": "He walked throughout the whole day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6904 + }, + { + "word": "Homöopathie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homeopathy", + "romanization": "Homöopathie", + "example_sentence_native": "Sie glaubt an die Wirksamkeit der Homöopathie.", + "example_sentence_english": "She believes in the effectiveness of homeopathy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6905 + }, + { + "word": "kleben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stick;to glue", + "romanization": "kleben", + "example_sentence_native": "Das Poster klebt an der Wand.", + "example_sentence_english": "The poster sticks to the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6907 + }, + { + "word": "klingeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ring", + "romanization": "klingeln", + "example_sentence_native": "Das Telefon klingelt laut.", + "example_sentence_english": "The telephone rings loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6908 + }, + { + "word": "Komposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composition", + "romanization": "Komposition", + "example_sentence_native": "Diese Komposition ist sehr komplex.", + "example_sentence_english": "This composition is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6909 + }, + { + "word": "kräftigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strengthen;to invigorate", + "romanization": "kräftigen", + "example_sentence_native": "Sport kann den Körper kräftigen.", + "example_sentence_english": "Sport can strengthen the body.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6910 + }, + { + "word": "Käfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beetle;bug", + "romanization": "Käfer", + "example_sentence_native": "Ein kleiner Käfer krabbelte über das Blatt.", + "example_sentence_english": "A small beetle crawled over the leaf.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6911 + }, + { + "word": "Lake", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brine;pickle", + "romanization": "Lake", + "example_sentence_native": "Die Gurken wurden in Salzlake eingelegt.", + "example_sentence_english": "The cucumbers were pickled in brine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6912 + }, + { + "word": "Limit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limit", + "romanization": "Limit", + "example_sentence_native": "Es gibt ein Limit für die Anzahl der Teilnehmer.", + "example_sentence_english": "There is a limit to the number of participants.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6913 + }, + { + "word": "Lyrik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poetry;lyric poetry", + "romanization": "Lyrik", + "example_sentence_native": "Sie studiert deutsche Lyrik an der Universität.", + "example_sentence_english": "She studies German poetry at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6915 + }, + { + "word": "Löffel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spoon", + "romanization": "Löffel", + "example_sentence_native": "Bitte gib mir einen Löffel für die Suppe.", + "example_sentence_english": "Please give me a spoon for the soup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6916 + }, + { + "word": "Manga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manga", + "romanization": "Manga", + "example_sentence_native": "Er liest gerne japanische Manga.", + "example_sentence_english": "He likes to read Japanese manga.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6917 + }, + { + "word": "munter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerful;lively;awake", + "romanization": "munter", + "example_sentence_native": "Nach dem Kaffee war er wieder munter.", + "example_sentence_english": "After the coffee, he was awake again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6918 + }, + { + "word": "Poesie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poetry", + "romanization": "Poesie", + "example_sentence_native": "Sie liebt die Poesie des 19. Jahrhunderts.", + "example_sentence_english": "She loves 19th-century poetry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6924 + }, + { + "word": "Politikerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female politician", + "romanization": "Politikerin", + "example_sentence_native": "Die Politikerin hielt eine Rede.", + "example_sentence_english": "The female politician gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6925 + }, + { + "word": "Ratte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rat", + "romanization": "Ratte", + "example_sentence_native": "Eine Ratte lief über den Hof.", + "example_sentence_english": "A rat ran across the yard.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6927 + }, + { + "word": "Raub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "robbery;plunder", + "romanization": "Raub", + "example_sentence_native": "Der Raub wurde schnell aufgeklärt.", + "example_sentence_english": "The robbery was quickly solved.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6928 + }, + { + "word": "Realisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realization;implementation", + "romanization": "Realisierung", + "example_sentence_native": "Die Realisierung des Projekts dauerte lange.", + "example_sentence_english": "The realization of the project took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6929 + }, + { + "word": "Redner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speaker;orator", + "romanization": "Redner", + "example_sentence_native": "Der Redner begeisterte das Publikum.", + "example_sentence_english": "The speaker thrilled the audience.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6930 + }, + { + "word": "Rhetorik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhetoric", + "romanization": "Rhetorik", + "example_sentence_native": "Seine Rhetorik war sehr überzeugend.", + "example_sentence_english": "His rhetoric was very convincing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6931 + }, + { + "word": "riskieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to risk", + "romanization": "riskieren", + "example_sentence_native": "Er wollte nichts riskieren.", + "example_sentence_english": "He didn't want to risk anything.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6932 + }, + { + "word": "Ruder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rudder;oar", + "romanization": "Ruder", + "example_sentence_native": "Das Boot hatte ein kaputtes Ruder.", + "example_sentence_english": "The boat had a broken rudder.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6933 + }, + { + "word": "Sachverhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facts;circumstances", + "romanization": "Sachverhalt", + "example_sentence_native": "Er erklärte den Sachverhalt detailliert.", + "example_sentence_english": "He explained the facts in detail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6934 + }, + { + "word": "Sattel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saddle", + "romanization": "Sattel", + "example_sentence_native": "Der Sattel des Fahrrads war unbequem.", + "example_sentence_english": "The bicycle's saddle was uncomfortable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6935 + }, + { + "word": "Schlager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hit song;pop song", + "romanization": "Schlager", + "example_sentence_native": "Dieser Schlager ist sehr beliebt.", + "example_sentence_english": "This hit song is very popular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6936 + }, + { + "word": "schmerzhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painful", + "romanization": "schmerzhaft", + "example_sentence_native": "Die Wunde war sehr schmerzhaft.", + "example_sentence_english": "The wound was very painful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6937 + }, + { + "word": "Schnaps", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schnapps;liquor", + "romanization": "Schnaps", + "example_sentence_native": "Er trank einen kleinen Schnaps nach dem Essen.", + "example_sentence_english": "He drank a small schnapps after the meal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6938 + }, + { + "word": "schwören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swear;to vow", + "romanization": "schwören", + "example_sentence_native": "Er schwor, die Wahrheit zu sagen.", + "example_sentence_english": "He swore to tell the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6939 + }, + { + "word": "schüchtern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shy;timid", + "romanization": "schüchtern", + "example_sentence_native": "Sie ist ein schüchternes Mädchen.", + "example_sentence_english": "She is a shy girl.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6940 + }, + { + "word": "sechste", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixth", + "romanization": "sechste", + "example_sentence_native": "Das ist der sechste Tag der Woche.", + "example_sentence_english": "This is the sixth day of the week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 6941 + }, + { + "word": "Spielraum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leeway;scope", + "romanization": "Spielraum", + "example_sentence_native": "Wir brauchen mehr Spielraum für Verhandlungen.", + "example_sentence_english": "We need more leeway for negotiations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6944 + }, + { + "word": "Stadtverwaltung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city administration", + "romanization": "Stadtverwaltung", + "example_sentence_native": "Die Stadtverwaltung hat neue Regeln erlassen.", + "example_sentence_english": "The city administration has issued new rules.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6947 + }, + { + "word": "Streich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prank;trick", + "romanization": "Streich", + "example_sentence_native": "Er spielte uns einen Streich.", + "example_sentence_english": "He played a trick on us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6948 + }, + { + "word": "Streitigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute;contention", + "romanization": "Streitigkeit", + "example_sentence_native": "Es gab eine kleine Streitigkeit zwischen ihnen.", + "example_sentence_english": "There was a small dispute between them.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6949 + }, + { + "word": "Studentin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female student", + "romanization": "Studentin", + "example_sentence_native": "Sie ist eine fleißige Studentin.", + "example_sentence_english": "She is a diligent female student.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6950 + }, + { + "word": "Studiengang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "course of study;degree program", + "romanization": "Studiengang", + "example_sentence_native": "Welchen Studiengang hast du gewählt?", + "example_sentence_english": "Which course of study did you choose?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6951 + }, + { + "word": "Tausch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange;swap", + "romanization": "Tausch", + "example_sentence_native": "Das war ein guter Tausch.", + "example_sentence_english": "That was a good exchange.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6954 + }, + { + "word": "ungerecht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unjust;unfair", + "romanization": "ungerecht", + "example_sentence_native": "Das ist eine ungerechte Entscheidung.", + "example_sentence_english": "That is an unfair decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6957 + }, + { + "word": "veranlassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause;to arrange;to initiate", + "romanization": "veranlassen", + "example_sentence_native": "Was hat Sie dazu veranlasst, das zu tun?", + "example_sentence_english": "What caused you to do that?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6960 + }, + { + "word": "verantworten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be responsible for;to answer for", + "romanization": "verantworten", + "example_sentence_native": "Er muss seine Taten verantworten.", + "example_sentence_english": "He has to answer for his actions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6961 + }, + { + "word": "versehentlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accidentally;inadvertently", + "romanization": "versehentlich", + "example_sentence_native": "Ich habe die Datei versehentlich gelöscht.", + "example_sentence_english": "I accidentally deleted the file.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6962 + }, + { + "word": "Verweis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference;reprimand;dismissal", + "romanization": "Verweis", + "example_sentence_native": "Der Lehrer gab ihm einen Verweis.", + "example_sentence_english": "The teacher gave him a reprimand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6963 + }, + { + "word": "viermal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "four times", + "romanization": "viermal", + "example_sentence_native": "Ich habe ihn viermal angerufen.", + "example_sentence_english": "I called him four times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6964 + }, + { + "word": "vorgesehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreseen;intended;provided for", + "romanization": "vorgesehen", + "example_sentence_native": "Das ist nicht so vorgesehen.", + "example_sentence_english": "That is not intended to be like that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6965 + }, + { + "word": "vornherein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from the outset;from the beginning", + "romanization": "vornherein", + "example_sentence_native": "Das war von vornherein klar.", + "example_sentence_english": "That was clear from the outset.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6966 + }, + { + "word": "zittern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tremble;to shiver", + "romanization": "zittern", + "example_sentence_native": "Sie zitterte vor Kälte.", + "example_sentence_english": "She shivered from the cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6968 + }, + { + "word": "Zwilling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twin", + "romanization": "Zwilling", + "example_sentence_native": "Sie hat einen Zwilling.", + "example_sentence_english": "She has a twin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6969 + }, + { + "word": "ökonomisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economic;economical", + "romanization": "ökonomisch", + "example_sentence_native": "Das ist eine ökonomische Entscheidung.", + "example_sentence_english": "That is an economic decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6970 + }, + { + "word": "überein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in agreement (often with 'stimmen')", + "romanization": "überein", + "example_sentence_native": "Ihre Aussagen stimmen überein.", + "example_sentence_english": "Their statements agree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6971 + }, + { + "word": "Abc", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "alphabet", + "romanization": "Abc", + "example_sentence_native": "Kinder lernen das Abc in der Schule.", + "example_sentence_english": "Children learn the alphabet in school.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6972 + }, + { + "word": "ablösen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to detach;to replace;to relieve", + "romanization": "ablösen", + "example_sentence_native": "Er muss seinen Kollegen ablösen.", + "example_sentence_english": "He has to relieve his colleague.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "lösen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6973 + }, + { + "word": "abrufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retrieve;to call up", + "romanization": "abrufen", + "example_sentence_native": "Sie können Ihre E-Mails jederzeit abrufen.", + "example_sentence_english": "You can retrieve your emails at any time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "rufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6974 + }, + { + "word": "abwechselnd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternately;in turns", + "romanization": "abwechselnd", + "example_sentence_native": "Sie arbeiten abwechselnd.", + "example_sentence_english": "They work alternately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6975 + }, + { + "word": "angewandt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applied", + "romanization": "angewandt", + "example_sentence_native": "Das ist angewandte Wissenschaft.", + "example_sentence_english": "That is applied science.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 6977 + }, + { + "word": "Anzeiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicator;gauge;advertiser (newspaper)", + "romanization": "Anzeiger", + "example_sentence_native": "Der Anzeiger zeigte den Druck an.", + "example_sentence_english": "The indicator showed the pressure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6978 + }, + { + "word": "Arbeitsgruppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working group;task force", + "romanization": "Arbeitsgruppe", + "example_sentence_native": "Die Arbeitsgruppe hat gute Fortschritte gemacht.", + "example_sentence_english": "The working group has made good progress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6979 + }, + { + "word": "Aufsehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensation;stir", + "romanization": "Aufsehen", + "example_sentence_native": "Sein Auftritt erregte großes Aufsehen.", + "example_sentence_english": "His appearance caused a great stir.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6980 + }, + { + "word": "Aufsteiger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climber;rising star", + "romanization": "Aufsteiger", + "example_sentence_native": "Er ist der Aufsteiger des Jahres in der Liga.", + "example_sentence_english": "He is the rising star of the year in the league.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6981 + }, + { + "word": "Auftraggeber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "client;principal", + "romanization": "Auftraggeber", + "example_sentence_native": "Der Auftraggeber war mit der Arbeit sehr zufrieden.", + "example_sentence_english": "The client was very satisfied with the work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6982 + }, + { + "word": "beschleunigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accelerate;to speed up", + "romanization": "beschleunigen", + "example_sentence_native": "Wir müssen den Prozess beschleunigen.", + "example_sentence_english": "We need to accelerate the process.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 6984 + }, + { + "word": "Biographie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biography", + "romanization": "Biographie", + "example_sentence_native": "Sie liest gerne Biographien berühmter Persönlichkeiten.", + "example_sentence_english": "She likes to read biographies of famous personalities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6985 + }, + { + "word": "Bäckerei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bakery", + "romanization": "Bäckerei", + "example_sentence_native": "Ich kaufe Brötchen in der Bäckerei.", + "example_sentence_english": "I buy rolls at the bakery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6989 + }, + { + "word": "Change", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change", + "romanization": "Change", + "example_sentence_native": "Wir müssen einen Change in unserer Strategie vornehmen.", + "example_sentence_english": "We need to make a change in our strategy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6992 + }, + { + "word": "Clip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clip", + "romanization": "Clip", + "example_sentence_native": "Hast du den neuen Musik-Clip gesehen?", + "example_sentence_english": "Have you seen the new music clip?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6993 + }, + { + "word": "Dankbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gratitude;thankfulness", + "romanization": "Dankbarkeit", + "example_sentence_native": "Er empfand tiefe Dankbarkeit für ihre Hilfe.", + "example_sentence_english": "He felt deep gratitude for her help.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6995 + }, + { + "word": "dermassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to such an extent;so much", + "romanization": "dermassen", + "example_sentence_native": "Er war dermassen müde, dass er sofort einschlief.", + "example_sentence_english": "He was so tired that he fell asleep immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 6996 + }, + { + "word": "Disco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disco;nightclub", + "romanization": "Disco", + "example_sentence_native": "Wir gehen heute Abend in die Disco.", + "example_sentence_english": "We are going to the disco tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 6997 + }, + { + "word": "Draht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wire", + "romanization": "Draht", + "example_sentence_native": "Der Draht ist sehr dünn.", + "example_sentence_english": "The wire is very thin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7000 + }, + { + "word": "Drohne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drone", + "romanization": "Drohne", + "example_sentence_native": "Die Drohne flog über das Feld.", + "example_sentence_english": "The drone flew over the field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7001 + }, + { + "word": "Dur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "major (music)", + "romanization": "Dur", + "example_sentence_native": "Das Lied ist in C-Dur geschrieben.", + "example_sentence_english": "The song is written in C major.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7002 + }, + { + "word": "dämlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silly;stupid", + "romanization": "dämlich", + "example_sentence_native": "Das war eine dämliche Idee.", + "example_sentence_english": "That was a silly idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7003 + }, + { + "word": "eingesetzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deployed;used;inserted", + "romanization": "eingesetzt", + "example_sentence_native": "Das eingesetzte Personal war sehr effizient.", + "example_sentence_english": "The deployed staff was very efficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7005 + }, + { + "word": "einmalig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unique;one-time", + "romanization": "einmalig", + "example_sentence_native": "Das war ein einmaliges Erlebnis.", + "example_sentence_english": "That was a unique experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7006 + }, + { + "word": "erholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recover;to relax", + "romanization": "erholen", + "example_sentence_native": "Ich muss mich von der Arbeit erholen.", + "example_sentence_english": "I need to recover from work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7007 + }, + { + "word": "Essay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essay", + "romanization": "Essay", + "example_sentence_native": "Sie schrieb einen Essay über moderne Kunst.", + "example_sentence_english": "She wrote an essay about modern art.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7008 + }, + { + "word": "explodieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explode", + "romanization": "explodieren", + "example_sentence_native": "Die Bombe wird bald explodieren.", + "example_sentence_english": "The bomb will explode soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7009 + }, + { + "word": "Fahrgast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger", + "romanization": "Fahrgast", + "example_sentence_native": "Der Fahrgast stieg aus dem Zug.", + "example_sentence_english": "The passenger got off the train.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7010 + }, + { + "word": "Festplatte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hard drive", + "romanization": "Festplatte", + "example_sentence_native": "Die Daten sind auf der Festplatte gespeichert.", + "example_sentence_english": "The data is stored on the hard drive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7012 + }, + { + "word": "geführt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guided;led", + "romanization": "geführt", + "example_sentence_native": "Die geführte Tour war sehr informativ.", + "example_sentence_english": "The guided tour was very informative.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7013 + }, + { + "word": "Gegebenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "given fact;circumstance", + "romanization": "Gegebenheit", + "example_sentence_native": "Wir müssen uns an die neuen Gegebenheiten anpassen.", + "example_sentence_english": "We have to adapt to the new circumstances.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7014 + }, + { + "word": "gegründet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "founded;established", + "romanization": "gegründet", + "example_sentence_native": "Die 1990 gegründete Firma ist sehr erfolgreich.", + "example_sentence_english": "The company founded in 1990 is very successful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7015 + }, + { + "word": "Geldstrafe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fine (monetary penalty)", + "romanization": "Geldstrafe", + "example_sentence_native": "Er musste eine hohe Geldstrafe zahlen.", + "example_sentence_english": "He had to pay a high fine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7016 + }, + { + "word": "gezielt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "targeted;specific", + "romanization": "gezielt", + "example_sentence_native": "Die Werbung war gezielt auf junge Leute ausgerichtet.", + "example_sentence_english": "The advertising was specifically aimed at young people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7017 + }, + { + "word": "Glaubwürdigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "credibility", + "romanization": "Glaubwürdigkeit", + "example_sentence_native": "Seine Glaubwürdigkeit wurde in Frage gestellt.", + "example_sentence_english": "His credibility was questioned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7018 + }, + { + "word": "gleichmässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "even;uniform;steady", + "romanization": "gleichmässig", + "example_sentence_native": "Der Regen fiel gleichmässig.", + "example_sentence_english": "The rain fell evenly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7019 + }, + { + "word": "hacken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chop;to hack", + "romanization": "hacken", + "example_sentence_native": "Sie muss das Gemüse hacken.", + "example_sentence_english": "She has to chop the vegetables.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7021 + }, + { + "word": "Herzinfarkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heart attack", + "romanization": "Herzinfarkt", + "example_sentence_native": "Er hatte einen Herzinfarkt.", + "example_sentence_english": "He had a heart attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7023 + }, + { + "word": "Hilfsmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aid;tool;resource", + "romanization": "Hilfsmittel", + "example_sentence_native": "Dieses Hilfsmittel erleichtert die Arbeit.", + "example_sentence_english": "This aid makes the work easier.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7024 + }, + { + "word": "hochladen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to upload", + "romanization": "hochladen", + "example_sentence_native": "Ich muss die Datei hochladen.", + "example_sentence_english": "I need to upload the file.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hoch", + "base_verb": "laden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7026 + }, + { + "word": "Intensität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensity", + "romanization": "Intensität", + "example_sentence_native": "Die Intensität des Lichts war sehr hoch.", + "example_sentence_english": "The intensity of the light was very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7028 + }, + { + "word": "Joint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint (cannabis cigarette)", + "romanization": "Joint", + "example_sentence_native": "Er rauchte einen Joint.", + "example_sentence_english": "He smoked a joint.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7030 + }, + { + "word": "Kalorie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calorie", + "romanization": "Kalorie", + "example_sentence_native": "Diese Mahlzeit hat viele Kalorien.", + "example_sentence_english": "This meal has many calories.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7033 + }, + { + "word": "Karma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "karma", + "romanization": "Karma", + "example_sentence_native": "Gutes Karma kommt zurück.", + "example_sentence_english": "Good karma comes back.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7034 + }, + { + "word": "Keks", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "biscuit;cookie", + "romanization": "Keks", + "example_sentence_native": "Möchtest du einen Keks?", + "example_sentence_english": "Would you like a cookie?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7036 + }, + { + "word": "kippen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tip;to tilt;to overturn", + "romanization": "kippen", + "example_sentence_native": "Sei vorsichtig, dass die Flasche nicht kippt.", + "example_sentence_english": "Be careful that the bottle doesn't tip over.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7037 + }, + { + "word": "Kolonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colony", + "romanization": "Kolonie", + "example_sentence_native": "Die Ameisenkolonie war sehr groß.", + "example_sentence_english": "The ant colony was very large.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7039 + }, + { + "word": "Kommunismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communism", + "romanization": "Kommunismus", + "example_sentence_native": "Der Kommunismus ist eine politische Ideologie.", + "example_sentence_english": "Communism is a political ideology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7040 + }, + { + "word": "Kraftwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "power plant", + "romanization": "Kraftwerk", + "example_sentence_native": "Das neue Kraftwerk wird viel Energie produzieren.", + "example_sentence_english": "The new power plant will produce a lot of energy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7041 + }, + { + "word": "Kunststoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plastic", + "romanization": "Kunststoff", + "example_sentence_native": "Viele Produkte werden heute aus Kunststoff hergestellt.", + "example_sentence_english": "Many products today are made of plastic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7042 + }, + { + "word": "Lexikon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lexicon;encyclopedia", + "romanization": "Lexikon", + "example_sentence_native": "Ich habe das Wort im Lexikon nachgeschlagen.", + "example_sentence_english": "I looked up the word in the lexicon.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7043 + }, + { + "word": "magisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magical", + "romanization": "magisch", + "example_sentence_native": "Die Kinder liebten die magische Geschichte.", + "example_sentence_english": "The children loved the magical story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7046 + }, + { + "word": "mechanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanical", + "romanization": "mechanisch", + "example_sentence_native": "Die Uhr hat einen mechanischen Antrieb.", + "example_sentence_english": "The clock has a mechanical drive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7049 + }, + { + "word": "minimal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimal", + "romanization": "minimal", + "example_sentence_native": "Wir brauchen nur eine minimale Menge.", + "example_sentence_english": "We only need a minimal amount.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7050 + }, + { + "word": "Montage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;installation", + "romanization": "Montage", + "example_sentence_native": "Die Montage des Schranks dauerte zwei Stunden.", + "example_sentence_english": "The assembly of the cabinet took two hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7051 + }, + { + "word": "Nahrungsmittel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food;foodstuffs", + "romanization": "Nahrungsmittel", + "example_sentence_native": "Gesunde Nahrungsmittel sind wichtig für unseren Körper.", + "example_sentence_english": "Healthy food is important for our body.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7054 + }, + { + "word": "Neuwahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new election;re-election", + "romanization": "Neuwahl", + "example_sentence_native": "Nach dem Skandal gab es eine Neuwahl.", + "example_sentence_english": "After the scandal, there was a new election.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7055 + }, + { + "word": "Niederländer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dutchman;Netherlander", + "romanization": "Niederländer", + "example_sentence_native": "Er ist ein Niederländer aus Amsterdam.", + "example_sentence_english": "He is a Dutchman from Amsterdam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7056 + }, + { + "word": "nutzlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "useless", + "romanization": "nutzlos", + "example_sentence_native": "Das alte Gerät ist nutzlos geworden.", + "example_sentence_english": "The old device has become useless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7058 + }, + { + "word": "Offenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "openness;frankness", + "romanization": "Offenheit", + "example_sentence_native": "Ihre Offenheit wurde sehr geschätzt.", + "example_sentence_english": "Her openness was greatly appreciated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7059 + }, + { + "word": "optimistisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimistic", + "romanization": "optimistisch", + "example_sentence_native": "Er ist immer sehr optimistisch.", + "example_sentence_english": "He is always very optimistic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7060 + }, + { + "word": "Parameter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parameter", + "romanization": "Parameter", + "example_sentence_native": "Sie müssen die Parameter für die Analyse festlegen.", + "example_sentence_english": "You need to set the parameters for the analysis.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7061 + }, + { + "word": "Pfanne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pan", + "romanization": "Pfanne", + "example_sentence_native": "Die Pfanne ist heiß.", + "example_sentence_english": "The pan is hot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7065 + }, + { + "word": "Privatleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "private life", + "romanization": "Privatleben", + "example_sentence_native": "Er schützt sein Privatleben sehr.", + "example_sentence_english": "He protects his private life very much.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7066 + }, + { + "word": "Psychiater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychiatrist", + "romanization": "Psychiater", + "example_sentence_native": "Sie hat einen Termin beim Psychiater.", + "example_sentence_english": "She has an appointment with the psychiatrist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7068 + }, + { + "word": "Reduktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction", + "romanization": "Reduktion", + "example_sentence_native": "Es gab eine Reduktion der Kosten.", + "example_sentence_english": "There was a reduction in costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7069 + }, + { + "word": "Referent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker", + "romanization": "Referent", + "example_sentence_native": "Der Referent hielt einen interessanten Vortrag.", + "example_sentence_english": "The speaker gave an interesting presentation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7070 + }, + { + "word": "Regiment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regiment", + "romanization": "Regiment", + "example_sentence_native": "Das Regiment marschierte durch die Stadt.", + "example_sentence_english": "The regiment marched through the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7071 + }, + { + "word": "reserviert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reserved", + "romanization": "reserviert", + "example_sentence_native": "Er ist ein sehr reservierter Mensch.", + "example_sentence_english": "He is a very reserved person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7072 + }, + { + "word": "Richtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correctness", + "romanization": "Richtigkeit", + "example_sentence_native": "Ich zweifle an der Richtigkeit dieser Aussage.", + "example_sentence_english": "I doubt the correctness of this statement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7073 + }, + { + "word": "rollen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to roll", + "romanization": "rollen", + "example_sentence_native": "Der Ball rollt den Hügel hinunter.", + "example_sentence_english": "The ball rolls down the hill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7074 + }, + { + "word": "rühren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stir", + "romanization": "rühren", + "example_sentence_native": "Bitte rühren Sie den Teig gut um.", + "example_sentence_english": "Please stir the dough well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7075 + }, + { + "word": "Schema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scheme", + "romanization": "Schema", + "example_sentence_native": "Das ist ein bekanntes Schema.", + "example_sentence_english": "That is a known scheme.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7076 + }, + { + "word": "Schlaganfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stroke", + "romanization": "Schlaganfall", + "example_sentence_native": "Er erlitt einen Schlaganfall.", + "example_sentence_english": "He suffered a stroke.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7077 + }, + { + "word": "Schweiss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweat", + "romanization": "Schweiss", + "example_sentence_native": "Mir läuft der Schweiß von der Stirn.", + "example_sentence_english": "Sweat is running down my forehead.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7078 + }, + { + "word": "Secret", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secret", + "romanization": "Secret", + "example_sentence_native": "Das ist unser kleines Secret.", + "example_sentence_english": "That's our little secret.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7079 + }, + { + "word": "Sommerferie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "summer holiday", + "romanization": "Sommerferie", + "example_sentence_native": "Die Sommerferie beginnt nächste Woche.", + "example_sentence_english": "The summer holiday begins next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7080 + }, + { + "word": "Sportart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "type of sport", + "romanization": "Sportart", + "example_sentence_native": "Meine Lieblingssportart ist Schwimmen.", + "example_sentence_english": "My favorite type of sport is swimming.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7081 + }, + { + "word": "Staatsbürger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citizen", + "romanization": "Staatsbürger", + "example_sentence_native": "Jeder Staatsbürger hat Rechte und Pflichten.", + "example_sentence_english": "Every citizen has rights and duties.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7082 + }, + { + "word": "Stempel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stamp", + "romanization": "Stempel", + "example_sentence_native": "Ich brauche einen Stempel für den Brief.", + "example_sentence_english": "I need a stamp for the letter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7083 + }, + { + "word": "Stick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stick (e.g.;USB stick)", + "romanization": "Stick", + "example_sentence_native": "Speichere die Daten auf dem USB-Stick.", + "example_sentence_english": "Save the data on the USB stick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7084 + }, + { + "word": "Streaming", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "streaming", + "romanization": "Streaming", + "example_sentence_native": "Streaming von Filmen ist sehr beliebt.", + "example_sentence_english": "Streaming of movies is very popular.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7085 + }, + { + "word": "Tower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tower", + "romanization": "Tower", + "example_sentence_native": "Der Fluglotse sitzt im Tower.", + "example_sentence_english": "The air traffic controller sits in the tower.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7086 + }, + { + "word": "universal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "universal", + "romanization": "universal", + "example_sentence_native": "Das ist eine universelle Lösung für das Problem.", + "example_sentence_english": "This is a universal solution for the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7087 + }, + { + "word": "Variation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variation", + "romanization": "Variation", + "example_sentence_native": "Es gibt viele Variationen dieses Themas.", + "example_sentence_english": "There are many variations of this theme.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7089 + }, + { + "word": "verdient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deserved;earned", + "romanization": "verdient", + "example_sentence_native": "Das ist ein verdienter Sieg.", + "example_sentence_english": "That is a deserved victory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7090 + }, + { + "word": "verkleidet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disguised;dressed up", + "romanization": "verkleidet", + "example_sentence_native": "Sie ging verkleidet zur Party.", + "example_sentence_english": "She went to the party disguised.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7091 + }, + { + "word": "Verlegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relocation;postponement", + "romanization": "Verlegung", + "example_sentence_native": "Die Verlegung des Termins war notwendig.", + "example_sentence_english": "The postponement of the appointment was necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7092 + }, + { + "word": "verwalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manage;to administer", + "romanization": "verwalten", + "example_sentence_native": "Er muss die Finanzen verwalten.", + "example_sentence_english": "He has to manage the finances.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7093 + }, + { + "word": "vielfältig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diverse;manifold", + "romanization": "vielfältig", + "example_sentence_native": "Die Kultur ist sehr vielfältig.", + "example_sentence_english": "The culture is very diverse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7095 + }, + { + "word": "Visier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visor;sight", + "romanization": "Visier", + "example_sentence_native": "Er senkte das Visier seines Helms.", + "example_sentence_english": "He lowered the visor of his helmet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7096 + }, + { + "word": "Vorrunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preliminary round", + "romanization": "Vorrunde", + "example_sentence_native": "Das Team hat die Vorrunde gewonnen.", + "example_sentence_english": "The team won the preliminary round.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7097 + }, + { + "word": "Werft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipyard", + "romanization": "Werft", + "example_sentence_native": "Das Schiff wurde in der Werft gebaut.", + "example_sentence_english": "The ship was built in the shipyard.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7098 + }, + { + "word": "Western", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Western (movie genre)", + "romanization": "Western", + "example_sentence_native": "Er schaut gerne alte Western.", + "example_sentence_english": "He likes to watch old Westerns.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7099 + }, + { + "word": "Zuhörer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listener;audience member", + "romanization": "Zuhörer", + "example_sentence_native": "Die Zuhörer waren begeistert von der Musik.", + "example_sentence_english": "The listeners were thrilled by the music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7101 + }, + { + "word": "zuschauen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to watch;to look on", + "romanization": "zuschauen", + "example_sentence_native": "Möchtest du mir beim Kochen zuschauen?", + "example_sentence_english": "Do you want to watch me cook?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7102 + }, + { + "word": "Zuwanderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigration;inward migration", + "romanization": "Zuwanderung", + "example_sentence_native": "Die Zuwanderung ist ein wichtiges Thema in der Politik.", + "example_sentence_english": "Immigration is an important topic in politics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7103 + }, + { + "word": "Abschiebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deportation", + "romanization": "Abschiebung", + "example_sentence_native": "Die Abschiebung wurde nach langem Verfahren angeordnet.", + "example_sentence_english": "The deportation was ordered after a long procedure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7104 + }, + { + "word": "Aufarbeitung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "processing;reappraisal;coming to terms with", + "romanization": "Aufarbeitung", + "example_sentence_native": "Die Aufarbeitung der Geschichte ist wichtig für die Zukunft.", + "example_sentence_english": "The reappraisal of history is important for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7107 + }, + { + "word": "aufklären", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clarify;to enlighten;to solve (a crime)", + "romanization": "aufklären", + "example_sentence_native": "Die Polizei versucht, den Fall aufzuklären.", + "example_sentence_english": "The police are trying to solve the case.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "klären", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7108 + }, + { + "word": "ausdrucken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to print out", + "romanization": "ausdrucken", + "example_sentence_native": "Kannst du das Dokument bitte ausdrucken?", + "example_sentence_english": "Can you please print out the document?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "drucken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7109 + }, + { + "word": "Bedienung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "service;operation (of a device);waitress;waiter", + "romanization": "Bedienung", + "example_sentence_native": "Die Bedienung im Restaurant war sehr freundlich.", + "example_sentence_english": "The service in the restaurant was very friendly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7110 + }, + { + "word": "beheben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fix;to remedy;to resolve", + "romanization": "beheben", + "example_sentence_native": "Wir müssen den Fehler schnell beheben.", + "example_sentence_english": "We need to fix the error quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7111 + }, + { + "word": "Bekanntschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acquaintance", + "romanization": "Bekanntschaft", + "example_sentence_native": "Es war mir eine Freude, Ihre Bekanntschaft zu machen.", + "example_sentence_english": "It was a pleasure to make your acquaintance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7112 + }, + { + "word": "Beutel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bag;pouch", + "romanization": "Beutel", + "example_sentence_native": "Ich habe einen kleinen Beutel für meine Einkäufe dabei.", + "example_sentence_english": "I have a small bag for my groceries with me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7113 + }, + { + "word": "bezahlt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paid", + "romanization": "bezahlt", + "example_sentence_native": "Die Rechnung ist bereits bezahlt.", + "example_sentence_english": "The bill is already paid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7114 + }, + { + "word": "bisweilen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sometimes;occasionally", + "romanization": "bisweilen", + "example_sentence_native": "Bisweilen fühle ich mich einsam.", + "example_sentence_english": "Sometimes I feel lonely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7116 + }, + { + "word": "Chefredakteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "editor-in-chief", + "romanization": "Chefredakteur", + "example_sentence_native": "Der Chefredakteur hat den Artikel genehmigt.", + "example_sentence_english": "The editor-in-chief approved the article.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7118 + }, + { + "word": "Controller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controller (finance;gaming)", + "romanization": "Controller", + "example_sentence_native": "Der Controller überwacht die Finanzen des Unternehmens.", + "example_sentence_english": "The controller monitors the company's finances.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7119 + }, + { + "word": "dato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "then;at that time", + "romanization": "dato", + "example_sentence_native": "Dato war die Situation anders.", + "example_sentence_english": "At that time, the situation was different.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7121 + }, + { + "word": "drastisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drastic", + "romanization": "drastisch", + "example_sentence_native": "Die Regierung ergriff drastische Maßnahmen.", + "example_sentence_english": "The government took drastic measures.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7124 + }, + { + "word": "durchweg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consistently;throughout", + "romanization": "durchweg", + "example_sentence_native": "Seine Leistungen waren durchweg hervorragend.", + "example_sentence_english": "His performances were consistently excellent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7125 + }, + { + "word": "elegant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elegant", + "romanization": "elegant", + "example_sentence_native": "Sie trug ein sehr elegantes Kleid.", + "example_sentence_english": "She wore a very elegant dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7126 + }, + { + "word": "empfindlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitive;delicate", + "romanization": "empfindlich", + "example_sentence_native": "Meine Haut ist sehr empfindlich gegen die Sonne.", + "example_sentence_english": "My skin is very sensitive to the sun.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7127 + }, + { + "word": "Endspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final (game);championship game", + "romanization": "Endspiel", + "example_sentence_native": "Das Endspiel war sehr spannend.", + "example_sentence_english": "The final game was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7128 + }, + { + "word": "Ente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duck", + "romanization": "Ente", + "example_sentence_native": "Die Ente schwamm auf dem Teich.", + "example_sentence_english": "The duck swam on the pond.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7129 + }, + { + "word": "entfalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unfold;to develop", + "romanization": "entfalten", + "example_sentence_native": "Die Blume wird bald ihre Blüten entfalten.", + "example_sentence_english": "The flower will soon unfold its blossoms.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7130 + }, + { + "word": "entsetzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horrified;appalled", + "romanization": "entsetzt", + "example_sentence_native": "Sie war entsetzt über die Nachricht.", + "example_sentence_english": "She was horrified by the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7131 + }, + { + "word": "erlernen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to learn;to acquire", + "romanization": "erlernen", + "example_sentence_native": "Es dauert lange, eine neue Sprache zu erlernen.", + "example_sentence_english": "It takes a long time to learn a new language.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7132 + }, + { + "word": "Exil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exile", + "romanization": "Exil", + "example_sentence_native": "Er lebte viele Jahre im Exil.", + "example_sentence_english": "He lived many years in exile.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7133 + }, + { + "word": "Face", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "face", + "romanization": "Face", + "example_sentence_native": "Er zeigte ein Poker-Face.", + "example_sentence_english": "He showed a poker face.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7134 + }, + { + "word": "Fetisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetish", + "romanization": "Fetisch", + "example_sentence_native": "Für manche ist Sauberkeit ein Fetisch.", + "example_sentence_english": "For some, cleanliness is a fetish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7135 + }, + { + "word": "Flair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flair;atmosphere", + "romanization": "Flair", + "example_sentence_native": "Das Café hat ein besonderes Flair.", + "example_sentence_english": "The cafe has a special flair.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7136 + }, + { + "word": "flexibel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexible", + "romanization": "flexibel", + "example_sentence_native": "Wir müssen flexibel auf Änderungen reagieren.", + "example_sentence_english": "We must react flexibly to changes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7137 + }, + { + "word": "Friseur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairdresser", + "romanization": "Friseur", + "example_sentence_native": "Ich gehe heute zum Friseur.", + "example_sentence_english": "I'm going to the hairdresser today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7138 + }, + { + "word": "Fähre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ferry", + "romanization": "Fähre", + "example_sentence_native": "Wir nahmen die Fähre zur Insel.", + "example_sentence_english": "We took the ferry to the island.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7139 + }, + { + "word": "gebildet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educated", + "romanization": "gebildet", + "example_sentence_native": "Sie ist eine sehr gebildete Frau.", + "example_sentence_english": "She is a very educated woman.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7140 + }, + { + "word": "Globalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globalization", + "romanization": "Globalisierung", + "example_sentence_native": "Die Globalisierung hat viele Auswirkungen auf die Wirtschaft.", + "example_sentence_english": "Globalization has many effects on the economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7142 + }, + { + "word": "Handtasche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handbag", + "romanization": "Handtasche", + "example_sentence_native": "Sie hat ihre Handtasche auf dem Tisch liegen lassen.", + "example_sentence_english": "She left her handbag on the table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7143 + }, + { + "word": "hierdurch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thereby;by this means", + "romanization": "hierdurch", + "example_sentence_native": "Hierdurch wurde das Problem endlich gelöst.", + "example_sentence_english": "Thereby the problem was finally solved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7145 + }, + { + "word": "jeher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "always;since time immemorial", + "romanization": "jeher", + "example_sentence_native": "Von jeher war die Stadt ein wichtiger Handelspunkt.", + "example_sentence_english": "The city has always been an important trading point.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7146 + }, + { + "word": "Kleinigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trifle;small thing", + "romanization": "Kleinigkeit", + "example_sentence_native": "Mach dir keine Sorgen, das ist nur eine Kleinigkeit.", + "example_sentence_english": "Don't worry, it's just a trifle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7147 + }, + { + "word": "Klinge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blade", + "romanization": "Klinge", + "example_sentence_native": "Die Klinge des Messers ist sehr scharf.", + "example_sentence_english": "The blade of the knife is very sharp.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7148 + }, + { + "word": "Komplexität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complexity", + "romanization": "Komplexität", + "example_sentence_native": "Die Komplexität des Systems ist beeindruckend.", + "example_sentence_english": "The complexity of the system is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7149 + }, + { + "word": "Konsens", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consensus", + "romanization": "Konsens", + "example_sentence_native": "Es gab einen breiten Konsens über die neue Regelung.", + "example_sentence_english": "There was a broad consensus on the new regulation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7150 + }, + { + "word": "Kragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collar", + "romanization": "Kragen", + "example_sentence_native": "Er zog den Kragen seines Mantels hoch.", + "example_sentence_english": "He pulled up the collar of his coat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7152 + }, + { + "word": "Kummer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorrow;grief", + "romanization": "Kummer", + "example_sentence_native": "Sie teilte ihren Kummer mit ihrer besten Freundin.", + "example_sentence_english": "She shared her sorrow with her best friend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7154 + }, + { + "word": "Leutnant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lieutenant", + "romanization": "Leutnant", + "example_sentence_native": "Der Leutnant führte die Gruppe an.", + "example_sentence_english": "The lieutenant led the group.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7155 + }, + { + "word": "Luftwaffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "air force", + "romanization": "Luftwaffe", + "example_sentence_native": "Die Luftwaffe ist ein wichtiger Teil der Streitkräfte.", + "example_sentence_english": "The air force is an important part of the armed forces.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7157 + }, + { + "word": "manipulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manipulate", + "romanization": "manipulieren", + "example_sentence_native": "Man sollte Informationen nicht manipulieren.", + "example_sentence_english": "One should not manipulate information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7159 + }, + { + "word": "Massaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massacre", + "romanization": "Massaker", + "example_sentence_native": "Das Massaker schockierte die Welt.", + "example_sentence_english": "The massacre shocked the world.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7161 + }, + { + "word": "Metro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subway;metro", + "romanization": "Metro", + "example_sentence_native": "Wir fahren mit der Metro.", + "example_sentence_english": "We are going by subway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7162 + }, + { + "word": "mithalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keep up (with)", + "romanization": "mithalten", + "example_sentence_native": "Er kann mit den anderen nicht mithalten.", + "example_sentence_english": "He cannot keep up with the others.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7164 + }, + { + "word": "Mittelfeld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midfield;middle ground", + "romanization": "Mittelfeld", + "example_sentence_native": "Er spielt im Mittelfeld.", + "example_sentence_english": "He plays in the midfield.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7165 + }, + { + "word": "Mom", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mom", + "romanization": "Mom", + "example_sentence_native": "Meine Mom kommt morgen.", + "example_sentence_english": "My Mom is coming tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7166 + }, + { + "word": "Neuauflage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new edition;remake", + "romanization": "Neuauflage", + "example_sentence_native": "Das Buch bekommt eine Neuauflage.", + "example_sentence_english": "The book is getting a new edition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7168 + }, + { + "word": "offenbaren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reveal;disclose", + "romanization": "offenbaren", + "example_sentence_native": "Er wollte seine Gefühle nicht offenbaren.", + "example_sentence_english": "He didn't want to reveal his feelings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7169 + }, + { + "word": "operieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operate (on)", + "romanization": "operieren", + "example_sentence_native": "Der Arzt muss ihn operieren.", + "example_sentence_english": "The doctor has to operate on him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7170 + }, + { + "word": "Orgasmus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgasm", + "romanization": "Orgasmus", + "example_sentence_native": "Ein Orgasmus ist ein Höhepunkt sexueller Erregung.", + "example_sentence_english": "An orgasm is a climax of sexual arousal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7171 + }, + { + "word": "Patent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patent", + "romanization": "Patent", + "example_sentence_native": "Er hat ein Patent auf seine Erfindung.", + "example_sentence_english": "He has a patent on his invention.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7175 + }, + { + "word": "Perle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pearl", + "romanization": "Perle", + "example_sentence_native": "Sie trug eine Kette mit Perlen.", + "example_sentence_english": "She wore a necklace with pearls.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7176 + }, + { + "word": "Polo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polo (sport;shirt;car model)", + "romanization": "Polo", + "example_sentence_native": "Er spielt gerne Polo.", + "example_sentence_english": "He likes to play polo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7177 + }, + { + "word": "protestieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protest", + "romanization": "protestieren", + "example_sentence_native": "Die Leute protestieren gegen die Regierung.", + "example_sentence_english": "The people are protesting against the government.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7178 + }, + { + "word": "Prävention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevention", + "romanization": "Prävention", + "example_sentence_native": "Prävention ist besser als Heilung.", + "example_sentence_english": "Prevention is better than cure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7179 + }, + { + "word": "Puppe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "doll", + "romanization": "Puppe", + "example_sentence_native": "Das kleine Mädchen spielt mit ihrer Puppe.", + "example_sentence_english": "The little girl is playing with her doll.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7181 + }, + { + "word": "Ranking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranking", + "romanization": "Ranking", + "example_sentence_native": "Das Ranking der Universitäten wurde veröffentlicht.", + "example_sentence_english": "The ranking of the universities was published.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7182 + }, + { + "word": "Regulierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation", + "romanization": "Regulierung", + "example_sentence_native": "Die neue Regulierung betrifft alle Unternehmen.", + "example_sentence_english": "The new regulation affects all companies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7184 + }, + { + "word": "Repertoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repertoire", + "romanization": "Repertoire", + "example_sentence_native": "Der Künstler hat ein breites Repertoire an Liedern.", + "example_sentence_english": "The artist has a broad repertoire of songs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7185 + }, + { + "word": "sanieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to renovate;to rehabilitate", + "romanization": "sanieren", + "example_sentence_native": "Das alte Gebäude muss dringend saniert werden.", + "example_sentence_english": "The old building urgently needs to be renovated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7188 + }, + { + "word": "Schere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scissors", + "romanization": "Schere", + "example_sentence_native": "Ich brauche eine Schere, um das Papier zu schneiden.", + "example_sentence_english": "I need scissors to cut the paper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7190 + }, + { + "word": "schließen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to close;to shut", + "romanization": "schließen", + "example_sentence_native": "Bitte schließen Sie die Tür.", + "example_sentence_english": "Please close the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7191 + }, + { + "word": "Schöpfung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creation", + "romanization": "Schöpfung", + "example_sentence_native": "Die Schöpfung der Welt ist ein zentrales Thema in vielen Religionen.", + "example_sentence_english": "The creation of the world is a central theme in many religions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7192 + }, + { + "word": "Soul", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soul (music genre)", + "romanization": "Soul", + "example_sentence_native": "Ich höre gerne Soul-Musik.", + "example_sentence_english": "I like listening to soul music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7196 + }, + { + "word": "staunen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be amazed;to marvel", + "romanization": "staunen", + "example_sentence_native": "Ich musste staunen, wie schnell er das Problem gelöst hat.", + "example_sentence_english": "I had to marvel at how quickly he solved the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7197 + }, + { + "word": "süddeutsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Southern German", + "romanization": "süddeutsch", + "example_sentence_native": "Er kommt aus einer süddeutschen Stadt.", + "example_sentence_english": "He comes from a Southern German city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7199 + }, + { + "word": "Tattoo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "romanization": "Tattoo", + "example_sentence_native": "Sie hat ein kleines Tattoo auf ihrem Arm.", + "example_sentence_english": "She has a small tattoo on her arm.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7200 + }, + { + "word": "Teilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "division;partition", + "romanization": "Teilung", + "example_sentence_native": "Die Teilung Deutschlands endete 1990.", + "example_sentence_english": "The division of Germany ended in 1990.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7201 + }, + { + "word": "telefonisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by phone;telephonic", + "romanization": "telefonisch", + "example_sentence_native": "Bitte kontaktieren Sie uns telefonisch.", + "example_sentence_english": "Please contact us by phone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7202 + }, + { + "word": "umstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rearrange;to convert", + "romanization": "umstellen", + "example_sentence_native": "Wir müssen unsere Prioritäten umstellen.", + "example_sentence_english": "We need to rearrange our priorities.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7203 + }, + { + "word": "verdoppeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to double", + "romanization": "verdoppeln", + "example_sentence_native": "Er konnte seine Einnahmen verdoppeln.", + "example_sentence_english": "He was able to double his income.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7205 + }, + { + "word": "Vergabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awarding;allocation", + "romanization": "Vergabe", + "example_sentence_native": "Die Vergabe des Preises findet nächste Woche statt.", + "example_sentence_english": "The awarding of the prize will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7207 + }, + { + "word": "verstoßen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to violate;to offend;to banish", + "romanization": "verstoßen", + "example_sentence_native": "Er hat gegen die Regeln verstoßen.", + "example_sentence_english": "He violated the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7208 + }, + { + "word": "Verzögerung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delay", + "romanization": "Verzögerung", + "example_sentence_native": "Es gab eine leichte Verzögerung im Flugplan.", + "example_sentence_english": "There was a slight delay in the flight schedule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7209 + }, + { + "word": "vollziehen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to carry out;to execute", + "romanization": "vollziehen", + "example_sentence_native": "Die Entscheidung muss nun vollzogen werden.", + "example_sentence_english": "The decision must now be carried out.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7210 + }, + { + "word": "Wahlkreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constituency;electoral district", + "romanization": "Wahlkreis", + "example_sentence_native": "Sie kandidiert in ihrem Wahlkreis.", + "example_sentence_english": "She is running in her constituency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7212 + }, + { + "word": "Wanderer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiker;wanderer", + "romanization": "Wanderer", + "example_sentence_native": "Der Wanderer genoss die Aussicht vom Berg.", + "example_sentence_english": "The hiker enjoyed the view from the mountain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7214 + }, + { + "word": "Wertschätzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciation;esteem", + "romanization": "Wertschätzung", + "example_sentence_native": "Er zeigte große Wertschätzung für ihre Arbeit.", + "example_sentence_english": "He showed great appreciation for her work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7215 + }, + { + "word": "zögern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hesitate", + "romanization": "zögern", + "example_sentence_native": "Er zögerte, bevor er antwortete.", + "example_sentence_english": "He hesitated before he answered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7217 + }, + { + "word": "überdies", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moreover", + "romanization": "überdies", + "example_sentence_native": "Er ist intelligent und überdies sehr fleißig.", + "example_sentence_english": "He is intelligent and moreover very diligent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7220 + }, + { + "word": "Überlebender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "survivor", + "romanization": "Überlebender", + "example_sentence_native": "Er war der einzige Überlebende des Unfalls.", + "example_sentence_english": "He was the only survivor of the accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7221 + }, + { + "word": "Absolvent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graduate", + "romanization": "Absolvent", + "example_sentence_native": "Der Absolvent erhielt sein Diplom.", + "example_sentence_english": "The graduate received his diploma.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7222 + }, + { + "word": "Admiral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admiral", + "romanization": "Admiral", + "example_sentence_native": "Der Admiral befahl den Angriff.", + "example_sentence_english": "The admiral ordered the attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7224 + }, + { + "word": "andauernd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous", + "romanization": "andauernd", + "example_sentence_native": "Das andauernde Geräusch störte ihn.", + "example_sentence_english": "The continuous noise bothered him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7226 + }, + { + "word": "anderthalb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one and a half", + "romanization": "anderthalb", + "example_sentence_native": "Ich brauche anderthalb Stunden, um dorthin zu kommen.", + "example_sentence_english": "I need one and a half hours to get there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 7228 + }, + { + "word": "Annäherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach", + "romanization": "Annäherung", + "example_sentence_native": "Wir bemerkten eine Annäherung des Schiffes.", + "example_sentence_english": "We noticed an approach of the ship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7230 + }, + { + "word": "Arbeitsgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working group", + "romanization": "Arbeitsgemeinschaft", + "example_sentence_native": "Die Schüler gründeten eine Arbeitsgemeinschaft für Mathematik.", + "example_sentence_english": "The students formed a working group for mathematics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7231 + }, + { + "word": "Atom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atom", + "romanization": "Atom", + "example_sentence_native": "Ein Atom ist der kleinste Baustein der Materie.", + "example_sentence_english": "An atom is the smallest building block of matter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7232 + }, + { + "word": "Attentat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assassination attempt", + "romanization": "Attentat", + "example_sentence_native": "Das Attentat auf den Präsidenten schockierte die Welt.", + "example_sentence_english": "The assassination attempt on the president shocked the world.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7233 + }, + { + "word": "Aufteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "division", + "romanization": "Aufteilung", + "example_sentence_native": "Die Aufteilung der Aufgaben war fair.", + "example_sentence_english": "The division of tasks was fair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7234 + }, + { + "word": "ausfüllen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fill out", + "romanization": "ausfüllen", + "example_sentence_native": "Bitte füllen Sie dieses Formular aus.", + "example_sentence_english": "Please fill out this form.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "füllen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7235 + }, + { + "word": "ausschalten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to switch off", + "romanization": "ausschalten", + "example_sentence_native": "Kannst du bitte das Licht ausschalten?", + "example_sentence_english": "Can you please switch off the light?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7236 + }, + { + "word": "ausweichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to avoid", + "romanization": "ausweichen", + "example_sentence_native": "Er musste einem entgegenkommenden Auto ausweichen.", + "example_sentence_english": "He had to avoid an oncoming car.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "weichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7237 + }, + { + "word": "Bauernhof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farm", + "romanization": "Bauernhof", + "example_sentence_native": "Wir besuchten einen Bauernhof auf dem Land.", + "example_sentence_english": "We visited a farm in the countryside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7238 + }, + { + "word": "Beliebtheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "popularity", + "romanization": "Beliebtheit", + "example_sentence_native": "Die Beliebtheit des Produkts wächst stetig.", + "example_sentence_english": "The popularity of the product is growing steadily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7240 + }, + { + "word": "bewundern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admire", + "romanization": "bewundern", + "example_sentence_native": "Ich bewundere deine Geduld sehr.", + "example_sentence_english": "I admire your patience very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7241 + }, + { + "word": "Blutdruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood pressure", + "romanization": "Blutdruck", + "example_sentence_native": "Er muss seinen Blutdruck regelmäßig messen.", + "example_sentence_english": "He has to measure his blood pressure regularly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7243 + }, + { + "word": "Bug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bow (of a ship);bug (computer)", + "romanization": "Bug", + "example_sentence_native": "Der Bug des Schiffes zeigte zum Hafen.", + "example_sentence_english": "The bow of the ship pointed towards the harbor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7246 + }, + { + "word": "Crash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crash", + "romanization": "Crash", + "example_sentence_native": "Es gab einen lauten Crash auf der Straße.", + "example_sentence_english": "There was a loud crash on the street.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7248 + }, + { + "word": "dänisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Danish", + "romanization": "dänisch", + "example_sentence_native": "Sie spricht fließend dänisch.", + "example_sentence_english": "She speaks Danish fluently.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7251 + }, + { + "word": "Döner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doner kebab", + "romanization": "Döner", + "example_sentence_native": "Ich habe heute Abend einen Döner gegessen.", + "example_sentence_english": "I ate a doner kebab tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7252 + }, + { + "word": "effizient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "efficient", + "romanization": "effizient", + "example_sentence_native": "Das neue System ist sehr effizient.", + "example_sentence_english": "The new system is very efficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7254 + }, + { + "word": "einschlafen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fall asleep", + "romanization": "einschlafen", + "example_sentence_native": "Ich bin gestern Abend sofort eingeschlafen.", + "example_sentence_english": "I fell asleep immediately last night.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schlafen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7255 + }, + { + "word": "einstimmig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unanimous", + "romanization": "einstimmig", + "example_sentence_native": "Die Jury traf eine einstimmige Entscheidung.", + "example_sentence_english": "The jury made a unanimous decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7256 + }, + { + "word": "Einwanderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigration", + "romanization": "Einwanderung", + "example_sentence_native": "Die Einwanderung ist ein wichtiges Thema in der Politik.", + "example_sentence_english": "Immigration is an important topic in politics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7257 + }, + { + "word": "Ermordung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "murder;assassination", + "romanization": "Ermordung", + "example_sentence_native": "Die Ermordung des Präsidenten schockierte die Welt.", + "example_sentence_english": "The assassination of the president shocked the world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7258 + }, + { + "word": "erschiessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shoot (dead)", + "romanization": "erschiessen", + "example_sentence_native": "Der Jäger musste das verletzte Tier erschiessen.", + "example_sentence_english": "The hunter had to shoot the injured animal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7259 + }, + { + "word": "fixieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fix;to secure;to stare at", + "romanization": "fixieren", + "example_sentence_native": "Er konnte seinen Blick nicht von ihr fixieren.", + "example_sentence_english": "He couldn't fix his gaze on her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7262 + }, + { + "word": "fesseln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shackle;to captivate", + "romanization": "fesseln", + "example_sentence_native": "Die Geschichte konnte ihn fesseln.", + "example_sentence_english": "The story could captivate him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7264 + }, + { + "word": "gelungen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successful;well-done", + "romanization": "gelungen", + "example_sentence_native": "Das war ein sehr gelungener Abend.", + "example_sentence_english": "That was a very successful evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7265 + }, + { + "word": "gestehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confess;to admit", + "romanization": "gestehen", + "example_sentence_native": "Er musste seine Schuld gestehen.", + "example_sentence_english": "He had to confess his guilt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7266 + }, + { + "word": "Gitter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grid;grating;bars", + "romanization": "Gitter", + "example_sentence_native": "Das Fenster hatte ein Gitter.", + "example_sentence_english": "The window had a grid.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7267 + }, + { + "word": "grenzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to border;to limit", + "romanization": "grenzen", + "example_sentence_native": "Deutschland grenzt an Frankreich.", + "example_sentence_english": "Germany borders France.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7268 + }, + { + "word": "grinsen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grin", + "romanization": "grinsen", + "example_sentence_native": "Er konnte nicht anders, als zu grinsen.", + "example_sentence_english": "He couldn't help but grin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7270 + }, + { + "word": "Hauptquartier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headquarters", + "romanization": "Hauptquartier", + "example_sentence_native": "Das Hauptquartier befindet sich in Berlin.", + "example_sentence_english": "The headquarters is located in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7272 + }, + { + "word": "Hauptrolle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main role;leading role", + "romanization": "Hauptrolle", + "example_sentence_native": "Sie spielte die Hauptrolle im Film.", + "example_sentence_english": "She played the main role in the film.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7273 + }, + { + "word": "heranziehen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to draw upon;to consult;to raise (children)", + "romanization": "heranziehen", + "example_sentence_native": "Man sollte Experten heranziehen.", + "example_sentence_english": "One should consult experts.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heran", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7275 + }, + { + "word": "herausragend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outstanding;excellent", + "romanization": "herausragend", + "example_sentence_native": "Das war eine herausragende Leistung.", + "example_sentence_english": "That was an outstanding performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7276 + }, + { + "word": "hiesig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local;from here", + "romanization": "hiesig", + "example_sentence_native": "Die hiesige Bevölkerung ist sehr freundlich.", + "example_sentence_english": "The local population is very friendly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7277 + }, + { + "word": "hungrig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hungry", + "romanization": "hungrig", + "example_sentence_native": "Ich bin sehr hungrig.", + "example_sentence_english": "I am very hungry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7278 + }, + { + "word": "Inklusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inclusion", + "romanization": "Inklusion", + "example_sentence_native": "Inklusion ist ein wichtiges Thema in der Gesellschaft.", + "example_sentence_english": "Inclusion is an important topic in society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7279 + }, + { + "word": "Inland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interior;domestic (country)", + "romanization": "Inland", + "example_sentence_native": "Der Handel mit dem Inland ist wichtig für die Wirtschaft.", + "example_sentence_english": "Trade with the interior is important for the economy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7280 + }, + { + "word": "Insasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inmate;occupant", + "romanization": "Insasse", + "example_sentence_native": "Die Insassen des Autos wurden bei dem Unfall verletzt.", + "example_sentence_english": "The occupants of the car were injured in the accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7281 + }, + { + "word": "Kessel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kettle;boiler", + "romanization": "Kessel", + "example_sentence_native": "Das Wasser im Kessel kocht schon.", + "example_sentence_english": "The water in the kettle is already boiling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7284 + }, + { + "word": "Klimaanlage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "air conditioning", + "romanization": "Klimaanlage", + "example_sentence_native": "Im Sommer ist eine Klimaanlage sehr angenehm.", + "example_sentence_english": "In summer, air conditioning is very pleasant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7285 + }, + { + "word": "konstruieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to construct;to design", + "romanization": "konstruieren", + "example_sentence_native": "Der Architekt muss das Gebäude neu konstruieren.", + "example_sentence_english": "The architect must redesign the building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7286 + }, + { + "word": "Kontaktanzeige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personal ad", + "romanization": "Kontaktanzeige", + "example_sentence_native": "Sie hat eine Kontaktanzeige in der Zeitung aufgegeben.", + "example_sentence_english": "She placed a personal ad in the newspaper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7287 + }, + { + "word": "kopieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to copy", + "romanization": "kopieren", + "example_sentence_native": "Kannst du dieses Dokument für mich kopieren?", + "example_sentence_english": "Can you copy this document for me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7288 + }, + { + "word": "Kramer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shopkeeper;peddler", + "romanization": "Kramer", + "example_sentence_native": "Der alte Kramer hatte immer Süßigkeiten für die Kinder.", + "example_sentence_english": "The old shopkeeper always had sweets for the children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7289 + }, + { + "word": "Landwirt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmer", + "romanization": "Landwirt", + "example_sentence_native": "Der Landwirt arbeitet jeden Tag auf dem Feld.", + "example_sentence_english": "The farmer works in the field every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7291 + }, + { + "word": "Leichtathletik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletics;track and field", + "romanization": "Leichtathletik", + "example_sentence_native": "Sie trainiert für die Leichtathletik-Meisterschaften.", + "example_sentence_english": "She is training for the athletics championships.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7294 + }, + { + "word": "Misstrauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistrust;distrust", + "romanization": "Misstrauen", + "example_sentence_native": "Es herrscht großes Misstrauen zwischen den Parteien.", + "example_sentence_english": "There is great mistrust between the parties.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7297 + }, + { + "word": "Nadel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "needle;pin", + "romanization": "Nadel", + "example_sentence_native": "Sie hat sich mit der Nadel in den Finger gestochen.", + "example_sentence_english": "She pricked her finger with the needle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7299 + }, + { + "word": "neidisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "envious", + "romanization": "neidisch", + "example_sentence_native": "Er ist neidisch auf ihren Erfolg.", + "example_sentence_english": "He is envious of her success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7300 + }, + { + "word": "Ortschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locality", + "romanization": "Ortschaft", + "example_sentence_native": "Die Ortschaft liegt malerisch am Fluss.", + "example_sentence_english": "The locality is picturesquely situated by the river.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7304 + }, + { + "word": "parlamentarisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliamentary", + "romanization": "parlamentarisch", + "example_sentence_native": "Das ist ein parlamentarischer Beschluss.", + "example_sentence_english": "This is a parliamentary decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7307 + }, + { + "word": "Phantasie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imagination", + "romanization": "Phantasie", + "example_sentence_native": "Kinder haben oft eine lebhafte Phantasie.", + "example_sentence_english": "Children often have a vivid imagination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7308 + }, + { + "word": "philosophisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophical", + "romanization": "philosophisch", + "example_sentence_native": "Er hat eine sehr philosophische Denkweise.", + "example_sentence_english": "He has a very philosophical way of thinking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7309 + }, + { + "word": "Qual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torment", + "romanization": "Qual", + "example_sentence_native": "Die Qual des Wartens war unerträglich.", + "example_sentence_english": "The agony of waiting was unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7310 + }, + { + "word": "rassistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racist", + "romanization": "rassistisch", + "example_sentence_native": "Rassistische Äußerungen sind inakzeptabel.", + "example_sentence_english": "Racist remarks are unacceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7311 + }, + { + "word": "Reality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reality", + "romanization": "Reality", + "example_sentence_native": "Die Reality-Show war sehr beliebt.", + "example_sentence_english": "The reality show was very popular.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7312 + }, + { + "word": "Reduzierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction", + "romanization": "Reduzierung", + "example_sentence_native": "Eine Reduzierung der Kosten ist notwendig.", + "example_sentence_english": "A reduction in costs is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7313 + }, + { + "word": "regelrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "downright", + "romanization": "regelrecht", + "example_sentence_native": "Er war regelrecht schockiert.", + "example_sentence_english": "He was downright shocked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7314 + }, + { + "word": "Revier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "territory", + "romanization": "Revier", + "example_sentence_native": "Das ist das Revier des Löwen.", + "example_sentence_english": "This is the lion's territory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7315 + }, + { + "word": "Routine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "routine", + "romanization": "Routine", + "example_sentence_native": "Er hat eine feste Morgenroutine.", + "example_sentence_english": "He has a fixed morning routine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7318 + }, + { + "word": "schwitzen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sweat", + "romanization": "schwitzen", + "example_sentence_native": "Ich schwitze, wenn es heiß ist.", + "example_sentence_english": "I sweat when it's hot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7320 + }, + { + "word": "Seil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rope", + "romanization": "Seil", + "example_sentence_native": "Das Seil ist sehr lang.", + "example_sentence_english": "The rope is very long.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7322 + }, + { + "word": "Sozialist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialist", + "romanization": "Sozialist", + "example_sentence_native": "Er ist ein überzeugter Sozialist.", + "example_sentence_english": "He is a convinced socialist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7326 + }, + { + "word": "Sperre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barrier", + "romanization": "Sperre", + "example_sentence_native": "Die Straße ist wegen einer Sperre geschlossen.", + "example_sentence_english": "The road is closed due to a barrier.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7328 + }, + { + "word": "Stillstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standstill", + "romanization": "Stillstand", + "example_sentence_native": "Der Motor kam zum Stillstand.", + "example_sentence_english": "The engine came to a standstill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7330 + }, + { + "word": "Tabak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tobacco", + "romanization": "Tabak", + "example_sentence_native": "Er raucht keinen Tabak.", + "example_sentence_english": "He doesn't smoke tobacco.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7332 + }, + { + "word": "Terminal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terminal", + "romanization": "Terminal", + "example_sentence_native": "Wir müssen zum Terminal 1 gehen.", + "example_sentence_english": "We have to go to Terminal 1.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7333 + }, + { + "word": "Tötung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "killing", + "romanization": "Tötung", + "example_sentence_native": "Die Tötung war ein tragisches Ereignis.", + "example_sentence_english": "The killing was a tragic event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7335 + }, + { + "word": "Umland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrounding area", + "romanization": "Umland", + "example_sentence_native": "Viele Pendler wohnen im Umland der Stadt.", + "example_sentence_english": "Many commuters live in the surrounding area of the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7336 + }, + { + "word": "unfähig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incapable", + "romanization": "unfähig", + "example_sentence_native": "Er ist unfähig, diese Aufgabe zu lösen.", + "example_sentence_english": "He is incapable of solving this task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7337 + }, + { + "word": "Unterbrechung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interruption", + "romanization": "Unterbrechung", + "example_sentence_native": "Es gab eine kurze Unterbrechung der Sendung.", + "example_sentence_english": "There was a short interruption of the broadcast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7338 + }, + { + "word": "Verhaftung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arrest", + "romanization": "Verhaftung", + "example_sentence_native": "Die Polizei führte eine Verhaftung durch.", + "example_sentence_english": "The police carried out an arrest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7339 + }, + { + "word": "versauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess up;to spoil", + "romanization": "versauen", + "example_sentence_native": "Er hat die ganze Präsentation versaut.", + "example_sentence_english": "He messed up the whole presentation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7340 + }, + { + "word": "verschonen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spare;to leave untouched", + "romanization": "verschonen", + "example_sentence_native": "Bitte verschone mich mit deinen Problemen.", + "example_sentence_english": "Please spare me your problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7341 + }, + { + "word": "Vorgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prehistory;background story", + "romanization": "Vorgeschichte", + "example_sentence_native": "Die Vorgeschichte des Konflikts ist komplex.", + "example_sentence_english": "The background story of the conflict is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7343 + }, + { + "word": "vorüber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "over;past;finished", + "romanization": "vorüber", + "example_sentence_native": "Der Sturm ist endlich vorüber.", + "example_sentence_english": "The storm is finally over.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7344 + }, + { + "word": "Waage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scales;balance", + "romanization": "Waage", + "example_sentence_native": "Ich habe mein Gewicht auf der Waage überprüft.", + "example_sentence_english": "I checked my weight on the scales.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7345 + }, + { + "word": "Wasserstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydrogen", + "romanization": "Wasserstoff", + "example_sentence_native": "Wasserstoff ist das leichteste Element.", + "example_sentence_english": "Hydrogen is the lightest element.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7346 + }, + { + "word": "Wehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weir;dam;defense", + "romanization": "Wehr", + "example_sentence_native": "Die Wehr reguliert den Wasserstand.", + "example_sentence_english": "The weir regulates the water level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7348 + }, + { + "word": "werdend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "becoming;nascent", + "romanization": "werdend", + "example_sentence_native": "Sie ist eine werdende Mutter.", + "example_sentence_english": "She is an expectant mother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7349 + }, + { + "word": "Wiederaufbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstruction;rebuilding", + "romanization": "Wiederaufbau", + "example_sentence_native": "Der Wiederaufbau der Stadt dauerte Jahre.", + "example_sentence_english": "The reconstruction of the city took years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7350 + }, + { + "word": "zurückgreifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resort to;to fall back on", + "romanization": "zurückgreifen", + "example_sentence_native": "Wir müssen auf alte Methoden zurückgreifen.", + "example_sentence_english": "We have to resort to old methods.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "greifen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7352 + }, + { + "word": "Zusammenbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse;breakdown", + "romanization": "Zusammenbruch", + "example_sentence_native": "Der Zusammenbruch des Systems war unvermeidlich.", + "example_sentence_english": "The collapse of the system was inevitable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7353 + }, + { + "word": "Zusammenleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cohabitation;living together", + "romanization": "Zusammenleben", + "example_sentence_native": "Ein friedliches Zusammenleben ist wichtig.", + "example_sentence_english": "Peaceful cohabitation is important.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7354 + }, + { + "word": "Zweig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "branch;twig", + "romanization": "Zweig", + "example_sentence_native": "Der Vogel saß auf einem Zweig.", + "example_sentence_english": "The bird sat on a branch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7355 + }, + { + "word": "Übereinstimmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;conformity", + "romanization": "Übereinstimmung", + "example_sentence_native": "Es gab eine Übereinstimmung der Meinungen.", + "example_sentence_english": "There was an agreement of opinions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7357 + }, + { + "word": "überziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overdraw (account);to put on (clothes)", + "romanization": "überziehen", + "example_sentence_native": "Er hat sein Konto überzogen.", + "example_sentence_english": "He overdrawn his account.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7358 + }, + { + "word": "Acker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "field", + "romanization": "Acker", + "example_sentence_native": "Der Bauer pflügt den Acker.", + "example_sentence_english": "The farmer plows the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7360 + }, + { + "word": "Administration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administration", + "romanization": "Administration", + "example_sentence_native": "Die Administration ist für die Organisation zuständig.", + "example_sentence_english": "The administration is responsible for the organization.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7361 + }, + { + "word": "andernfalls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "otherwise", + "romanization": "andernfalls", + "example_sentence_native": "Du musst pünktlich sein, andernfalls verpasst du den Zug.", + "example_sentence_english": "You must be on time, otherwise you will miss the train.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7364 + }, + { + "word": "anregen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stimulate", + "romanization": "anregen", + "example_sentence_native": "Er wollte die Diskussion anregen.", + "example_sentence_english": "He wanted to stimulate the discussion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "regen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7365 + }, + { + "word": "angucken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to look at", + "romanization": "angucken", + "example_sentence_native": "Guck mich mal an!", + "example_sentence_english": "Look at me!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "gucken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7366 + }, + { + "word": "Anker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anchor", + "romanization": "Anker", + "example_sentence_native": "Das Schiff warf den Anker.", + "example_sentence_english": "The ship dropped anchor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7368 + }, + { + "word": "Anlehnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adaptation", + "romanization": "Anlehnung", + "example_sentence_native": "Das Design ist in Anlehnung an alte Modelle entstanden.", + "example_sentence_english": "The design was created based on old models.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7369 + }, + { + "word": "antreffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to meet", + "romanization": "antreffen", + "example_sentence_native": "Ich konnte ihn nicht antreffen.", + "example_sentence_english": "I couldn't meet him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "treffen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7370 + }, + { + "word": "attackieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attack", + "romanization": "attackieren", + "example_sentence_native": "Der Hund begann, den Eindringling zu attackieren.", + "example_sentence_english": "The dog began to attack the intruder.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7371 + }, + { + "word": "Ausbeutung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exploitation", + "romanization": "Ausbeutung", + "example_sentence_native": "Die Ausbeutung natürlicher Ressourcen ist ein Problem.", + "example_sentence_english": "The exploitation of natural resources is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7373 + }, + { + "word": "ausgeprägt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pronounced", + "romanization": "ausgeprägt", + "example_sentence_native": "Er hat einen sehr ausgeprägten Sinn für Humor.", + "example_sentence_english": "He has a very pronounced sense of humor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7374 + }, + { + "word": "begrenzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limited", + "romanization": "begrenzt", + "example_sentence_native": "Die Anzahl der Plätze ist begrenzt.", + "example_sentence_english": "The number of seats is limited.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7375 + }, + { + "word": "Begrüssung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "greeting", + "romanization": "Begrüssung", + "example_sentence_native": "Seine Begrüssung war sehr herzlich.", + "example_sentence_english": "His greeting was very warm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7376 + }, + { + "word": "Bergmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miner", + "romanization": "Bergmann", + "example_sentence_native": "Der Bergmann arbeitet unter Tage.", + "example_sentence_english": "The miner works underground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7378 + }, + { + "word": "beschleunigt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accelerated", + "romanization": "beschleunigt", + "example_sentence_native": "Der Zug fuhr mit beschleunigter Geschwindigkeit.", + "example_sentence_english": "The train traveled at an accelerated speed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7380 + }, + { + "word": "Betreuer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supervisor", + "romanization": "Betreuer", + "example_sentence_native": "Mein Betreuer hat mir bei der Arbeit geholfen.", + "example_sentence_english": "My supervisor helped me with the work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7381 + }, + { + "word": "Briefkasten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mailbox", + "romanization": "Briefkasten", + "example_sentence_native": "Ich habe den Brief in den Briefkasten geworfen.", + "example_sentence_english": "I threw the letter into the mailbox.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7382 + }, + { + "word": "checken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check", + "romanization": "checken", + "example_sentence_native": "Kannst du bitte die E-Mails checken?", + "example_sentence_english": "Can you please check the emails?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7384 + }, + { + "word": "Dichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poetry;seal", + "romanization": "Dichtung", + "example_sentence_native": "Die Dichtung des Fensters ist kaputt.", + "example_sentence_english": "The window seal is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7387 + }, + { + "word": "drunter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underneath (colloquial)", + "romanization": "drunter", + "example_sentence_native": "Leg das Buch drunter.", + "example_sentence_english": "Put the book underneath.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7388 + }, + { + "word": "Dämon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demon", + "romanization": "Dämon", + "example_sentence_native": "In vielen Geschichten gibt es Dämonen.", + "example_sentence_english": "In many stories there are demons.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7390 + }, + { + "word": "Eiche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oak", + "romanization": "Eiche", + "example_sentence_native": "Die alte Eiche steht seit Jahrhunderten im Wald.", + "example_sentence_english": "The old oak tree has stood in the forest for centuries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7391 + }, + { + "word": "eindringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penetrate", + "romanization": "eindringen", + "example_sentence_native": "Das Wasser konnte nicht in den Stoff eindringen.", + "example_sentence_english": "The water could not penetrate the fabric.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "dringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7392 + }, + { + "word": "Einkaufszentrum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping center", + "romanization": "Einkaufszentrum", + "example_sentence_native": "Wir gehen am Wochenende ins Einkaufszentrum.", + "example_sentence_english": "We are going to the shopping center on the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7393 + }, + { + "word": "eisern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iron;unyielding", + "romanization": "eisern", + "example_sentence_native": "Er hatte einen eisernen Willen.", + "example_sentence_english": "He had an iron will.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7394 + }, + { + "word": "Entlastung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief", + "romanization": "Entlastung", + "example_sentence_native": "Die neue Regelung bringt eine Entlastung für die Bürger.", + "example_sentence_english": "The new regulation brings relief for the citizens.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7395 + }, + { + "word": "erbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide", + "romanization": "erbringen", + "example_sentence_native": "Er muss den Beweis erbringen.", + "example_sentence_english": "He must provide the proof.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7396 + }, + { + "word": "erfreuen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to please", + "romanization": "erfreuen", + "example_sentence_native": "Das Geschenk wird sie sicher erfreuen.", + "example_sentence_english": "The gift will surely please her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7397 + }, + { + "word": "Fachbereich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "department", + "romanization": "Fachbereich", + "example_sentence_native": "Sie studiert im Fachbereich Informatik.", + "example_sentence_english": "She studies in the computer science department.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7398 + }, + { + "word": "Freistaat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free state", + "romanization": "Freistaat", + "example_sentence_native": "Bayern ist ein Freistaat in Deutschland.", + "example_sentence_english": "Bavaria is a free state in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7400 + }, + { + "word": "Frosch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frog", + "romanization": "Frosch", + "example_sentence_native": "Der Frosch sitzt auf dem Seerosenblatt.", + "example_sentence_english": "The frog is sitting on the lily pad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7401 + }, + { + "word": "Geisel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostage", + "romanization": "Geisel", + "example_sentence_native": "Die Polizei verhandelt mit dem Entführer über die Freilassung der Geisel.", + "example_sentence_english": "The police are negotiating with the kidnapper for the release of the hostage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7402 + }, + { + "word": "Gesundheitswesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healthcare system", + "romanization": "Gesundheitswesen", + "example_sentence_native": "Das Gesundheitswesen in Deutschland ist gut entwickelt.", + "example_sentence_english": "The healthcare system in Germany is well developed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7403 + }, + { + "word": "Handschuh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glove", + "romanization": "Handschuh", + "example_sentence_native": "Ich habe meine Handschuhe vergessen.", + "example_sentence_english": "I forgot my gloves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7405 + }, + { + "word": "Henkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handle (of a cup;basket;etc.)", + "romanization": "Henkel", + "example_sentence_native": "Der Henkel der Tasse ist abgebrochen.", + "example_sentence_english": "The handle of the cup broke off.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7407 + }, + { + "word": "Herrin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistress;lady (of the house)", + "romanization": "Herrin", + "example_sentence_native": "Die Herrin des Hauses begrüßte die Gäste.", + "example_sentence_english": "The lady of the house greeted the guests.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7408 + }, + { + "word": "Hesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hessian (person from Hesse)", + "romanization": "Hesse", + "example_sentence_native": "Er ist ein Hesse und stolz darauf.", + "example_sentence_english": "He is a Hessian and proud of it.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7409 + }, + { + "word": "hochwertig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-quality;valuable", + "romanization": "hochwertig", + "example_sentence_native": "Wir bieten nur hochwertige Produkte an.", + "example_sentence_english": "We only offer high-quality products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7410 + }, + { + "word": "Impfung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaccination;immunization", + "romanization": "Impfung", + "example_sentence_native": "Die Impfung schützt vor vielen Krankheiten.", + "example_sentence_english": "The vaccination protects against many diseases.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7412 + }, + { + "word": "ironisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ironic", + "romanization": "ironisch", + "example_sentence_native": "Seine Bemerkung war sehr ironisch gemeint.", + "example_sentence_english": "His remark was meant very ironically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7414 + }, + { + "word": "Jubel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheer;jubilation", + "romanization": "Jubel", + "example_sentence_native": "Der Jubel der Fans war ohrenbetäubend.", + "example_sentence_english": "The cheer of the fans was deafening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7416 + }, + { + "word": "Kante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge;border", + "romanization": "Kante", + "example_sentence_native": "Sei vorsichtig, die Kante ist scharf.", + "example_sentence_english": "Be careful, the edge is sharp.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7419 + }, + { + "word": "knacken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crack;to snap", + "romanization": "knacken", + "example_sentence_native": "Er konnte die Nüsse knacken.", + "example_sentence_english": "He could crack the nuts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7421 + }, + { + "word": "Knoblauch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garlic", + "romanization": "Knoblauch", + "example_sentence_native": "Ich mag den Geruch von Knoblauch.", + "example_sentence_english": "I like the smell of garlic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7422 + }, + { + "word": "Kollegin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female colleague", + "romanization": "Kollegin", + "example_sentence_native": "Meine Kollegin hilft mir oft.", + "example_sentence_english": "My female colleague often helps me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7423 + }, + { + "word": "Lehrbuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "textbook", + "romanization": "Lehrbuch", + "example_sentence_native": "Wir lernen aus diesem Lehrbuch.", + "example_sentence_english": "We learn from this textbook.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7426 + }, + { + "word": "Lupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnifying glass", + "romanization": "Lupe", + "example_sentence_native": "Er untersuchte den kleinen Text mit einer Lupe.", + "example_sentence_english": "He examined the small text with a magnifying glass.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7431 + }, + { + "word": "Mitwirkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperation;participation", + "romanization": "Mitwirkung", + "example_sentence_native": "Seine Mitwirkung war entscheidend für den Erfolg.", + "example_sentence_english": "His participation was crucial for the success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7433 + }, + { + "word": "Muttersprache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mother tongue;native language", + "romanization": "Muttersprache", + "example_sentence_native": "Deutsch ist meine Muttersprache.", + "example_sentence_english": "German is my native language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7435 + }, + { + "word": "nachweislich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demonstrably;verifiably", + "romanization": "nachweislich", + "example_sentence_native": "Das ist nachweislich falsch.", + "example_sentence_english": "That is demonstrably false.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7436 + }, + { + "word": "Nationalspieler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national player (male)", + "romanization": "Nationalspieler", + "example_sentence_native": "Er ist ein bekannter Nationalspieler.", + "example_sentence_english": "He is a well-known national player.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7437 + }, + { + "word": "notieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to note down;to record", + "romanization": "notieren", + "example_sentence_native": "Bitte notieren Sie sich das Datum.", + "example_sentence_english": "Please note down the date.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7439 + }, + { + "word": "Notruf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency call", + "romanization": "Notruf", + "example_sentence_native": "Im Notfall wählen Sie den Notruf 112.", + "example_sentence_english": "In an emergency, dial the emergency call number 112.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7440 + }, + { + "word": "parat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ready;prepared", + "romanization": "parat", + "example_sentence_native": "Er hat immer eine Antwort parat.", + "example_sentence_english": "He always has an answer ready.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7441 + }, + { + "word": "passiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passive", + "romanization": "passiv", + "example_sentence_native": "Er ist sehr passiv und ergreift selten die Initiative.", + "example_sentence_english": "He is very passive and rarely takes the initiative.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7442 + }, + { + "word": "Prediger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preacher", + "romanization": "Prediger", + "example_sentence_native": "Der Prediger hielt eine inspirierende Rede.", + "example_sentence_english": "The preacher gave an inspiring speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7443 + }, + { + "word": "Residenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residence", + "romanization": "Residenz", + "example_sentence_native": "Die königliche Residenz ist für Besucher geöffnet.", + "example_sentence_english": "The royal residence is open to visitors.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7444 + }, + { + "word": "Schilling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shilling (former currency)", + "romanization": "Schilling", + "example_sentence_native": "Früher bezahlte man in Österreich mit Schilling.", + "example_sentence_english": "Previously, people paid with shillings in Austria.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7447 + }, + { + "word": "Schluck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sip;gulp", + "romanization": "Schluck", + "example_sentence_native": "Nimm einen Schluck Wasser.", + "example_sentence_english": "Take a sip of water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7448 + }, + { + "word": "Schraube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screw", + "romanization": "Schraube", + "example_sentence_native": "Die Schraube ist locker.", + "example_sentence_english": "The screw is loose.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7449 + }, + { + "word": "Schuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shoemaker;cobbler", + "romanization": "Schuster", + "example_sentence_native": "Der Schuster repariert alte Schuhe.", + "example_sentence_english": "The shoemaker repairs old shoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7450 + }, + { + "word": "Sessel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "armchair", + "romanization": "Sessel", + "example_sentence_native": "Ich sitze gerne in meinem bequemen Sessel.", + "example_sentence_english": "I like to sit in my comfortable armchair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7451 + }, + { + "word": "sortieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sort", + "romanization": "sortieren", + "example_sentence_native": "Ich muss meine Dokumente sortieren.", + "example_sentence_english": "I need to sort my documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7453 + }, + { + "word": "Sympathie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sympathy;liking", + "romanization": "Sympathie", + "example_sentence_native": "Er empfindet große Sympathie für sie.", + "example_sentence_english": "He feels great sympathy for her.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7455 + }, + { + "word": "Tabu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taboo", + "romanization": "Tabu", + "example_sentence_native": "Das Thema ist in dieser Kultur ein Tabu.", + "example_sentence_english": "The topic is a taboo in this culture.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7456 + }, + { + "word": "tippen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to type;to tap;to guess", + "romanization": "tippen", + "example_sentence_native": "Sie tippt schnell auf der Tastatur.", + "example_sentence_english": "She types quickly on the keyboard.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7458 + }, + { + "word": "Trauma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trauma", + "romanization": "Trauma", + "example_sentence_native": "Das Erlebnis war ein großes Trauma für ihn.", + "example_sentence_english": "The experience was a great trauma for him.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7459 + }, + { + "word": "trocknen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dry", + "romanization": "trocknen", + "example_sentence_native": "Ich muss meine Wäsche trocknen.", + "example_sentence_english": "I need to dry my laundry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7460 + }, + { + "word": "Trottel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiot;fool", + "romanization": "Trottel", + "example_sentence_native": "Er hat sich wie ein Trottel benommen.", + "example_sentence_english": "He behaved like an idiot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7461 + }, + { + "word": "Tänzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dancer (male)", + "romanization": "Tänzer", + "example_sentence_native": "Der Tänzer zeigte eine beeindruckende Vorstellung.", + "example_sentence_english": "The dancer gave an impressive performance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7464 + }, + { + "word": "Umwandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conversion;transformation", + "romanization": "Umwandlung", + "example_sentence_native": "Die Umwandlung von Energie ist ein wichtiger Prozess.", + "example_sentence_english": "The conversion of energy is an important process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7465 + }, + { + "word": "Unschuld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innocence", + "romanization": "Unschuld", + "example_sentence_native": "Er beteuerte seine Unschuld.", + "example_sentence_english": "He asserted his innocence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7467 + }, + { + "word": "unsichtbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invisible", + "romanization": "unsichtbar", + "example_sentence_native": "Der Geist war unsichtbar.", + "example_sentence_english": "The ghost was invisible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7468 + }, + { + "word": "unterhaltsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entertaining", + "romanization": "unterhaltsam", + "example_sentence_native": "Der Film war sehr unterhaltsam.", + "example_sentence_english": "The movie was very entertaining.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7469 + }, + { + "word": "verschenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give away (as a gift)", + "romanization": "verschenken", + "example_sentence_native": "Ich möchte meine alten Bücher verschenken.", + "example_sentence_english": "I want to give away my old books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7470 + }, + { + "word": "verzögern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delay;to postpone", + "romanization": "verzögern", + "example_sentence_native": "Wir müssen die Entscheidung nicht verzögern.", + "example_sentence_english": "We don't have to delay the decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7471 + }, + { + "word": "Waschmaschine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "washing machine", + "romanization": "Waschmaschine", + "example_sentence_native": "Die Waschmaschine ist kaputt.", + "example_sentence_english": "The washing machine is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7472 + }, + { + "word": "weitestgehend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "largely;mostly", + "romanization": "weitestgehend", + "example_sentence_native": "Das Problem ist weitestgehend gelöst.", + "example_sentence_english": "The problem is largely solved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7474 + }, + { + "word": "Weizen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wheat", + "romanization": "Weizen", + "example_sentence_native": "Brot wird oft aus Weizen hergestellt.", + "example_sentence_english": "Bread is often made from wheat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7475 + }, + { + "word": "Zuordnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assignment;allocation", + "romanization": "Zuordnung", + "example_sentence_native": "Die Zuordnung der Aufgaben ist klar.", + "example_sentence_english": "The assignment of tasks is clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7476 + }, + { + "word": "zurückgehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go back;to decline", + "romanization": "zurückgehen", + "example_sentence_native": "Die Zahlen sind zurückgegangen.", + "example_sentence_english": "The numbers have declined.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7477 + }, + { + "word": "zurücktreten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resign;to step back", + "romanization": "zurücktreten", + "example_sentence_native": "Der Politiker musste zurücktreten.", + "example_sentence_english": "The politician had to resign.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7478 + }, + { + "word": "Anbetracht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consideration;in view of", + "romanization": "Anbetracht", + "example_sentence_native": "In Anbetracht der Umstände ist das die beste Lösung.", + "example_sentence_english": "In view of the circumstances, this is the best solution.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7479 + }, + { + "word": "anrichten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause;to arrange (food)", + "romanization": "anrichten", + "example_sentence_native": "Er hat großen Schaden angerichtet.", + "example_sentence_english": "He caused great damage.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "richten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7480 + }, + { + "word": "Ansprache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speech;address", + "romanization": "Ansprache", + "example_sentence_native": "Die Präsidentin hielt eine inspirierende Ansprache.", + "example_sentence_english": "The president gave an inspiring speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7481 + }, + { + "word": "Antibiotikum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antibiotic", + "romanization": "Antibiotikum", + "example_sentence_native": "Der Arzt verschrieb ein Antibiotikum gegen die Infektion.", + "example_sentence_english": "The doctor prescribed an antibiotic for the infection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7482 + }, + { + "word": "aufräumen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to clean up;to tidy up", + "romanization": "aufräumen", + "example_sentence_native": "Bitte räum dein Zimmer auf.", + "example_sentence_english": "Please clean up your room.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "räumen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7483 + }, + { + "word": "aufwendig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elaborate;costly;time-consuming", + "romanization": "aufwendig", + "example_sentence_native": "Das Projekt war sehr aufwendig.", + "example_sentence_english": "The project was very elaborate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7484 + }, + { + "word": "ausschlaggebend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decisive;crucial", + "romanization": "ausschlaggebend", + "example_sentence_native": "Seine Erfahrung war ausschlaggebend für den Erfolg.", + "example_sentence_english": "His experience was crucial for the success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7485 + }, + { + "word": "auswirken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affect;to have an effect", + "romanization": "auswirken", + "example_sentence_native": "Die Entscheidung wird sich auf die Wirtschaft auswirken.", + "example_sentence_english": "The decision will affect the economy.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "wirken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7486 + }, + { + "word": "auswärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "away;outdoors;abroad", + "romanization": "auswärts", + "example_sentence_native": "Wir essen heute Abend auswärts.", + "example_sentence_english": "We are eating out tonight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7487 + }, + { + "word": "Belang", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "importance;relevance", + "romanization": "Belang", + "example_sentence_native": "Das ist von großem Belang für unsere Zukunft.", + "example_sentence_english": "This is of great importance for our future.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7489 + }, + { + "word": "beschaffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to procure;to obtain", + "romanization": "beschaffen", + "example_sentence_native": "Er musste die nötigen Materialien beschaffen.", + "example_sentence_english": "He had to procure the necessary materials.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7490 + }, + { + "word": "Beseitigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "removal;elimination;disposal", + "romanization": "Beseitigung", + "example_sentence_native": "Die Beseitigung des Mülls ist eine große Herausforderung.", + "example_sentence_english": "The disposal of waste is a big challenge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7491 + }, + { + "word": "besessen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsessed;possessed", + "romanization": "besessen", + "example_sentence_native": "Er ist besessen von seiner Arbeit.", + "example_sentence_english": "He is obsessed with his work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7492 + }, + { + "word": "Besprechung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meeting;discussion;review", + "romanization": "Besprechung", + "example_sentence_native": "Wir haben morgen eine wichtige Besprechung.", + "example_sentence_english": "We have an important meeting tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7493 + }, + { + "word": "betrügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deceive;to cheat", + "romanization": "betrügen", + "example_sentence_native": "Er wurde beim Kartenspiel betrogen.", + "example_sentence_english": "He was cheated at cards.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7494 + }, + { + "word": "Bon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "receipt;voucher", + "romanization": "Bon", + "example_sentence_native": "Bitte bewahren Sie den Bon auf.", + "example_sentence_english": "Please keep the receipt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7497 + }, + { + "word": "buchstäblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literally", + "romanization": "buchstäblich", + "example_sentence_native": "Er nahm seine Worte buchstäblich.", + "example_sentence_english": "He took his words literally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7499 + }, + { + "word": "Chief", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chief;boss", + "romanization": "Chief", + "example_sentence_native": "Der Chief hat die Entscheidung getroffen.", + "example_sentence_english": "The chief made the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7501 + }, + { + "word": "Cousine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female cousin", + "romanization": "Cousine", + "example_sentence_native": "Meine Cousine lebt in Berlin.", + "example_sentence_english": "My cousin lives in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7503 + }, + { + "word": "Dilemma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dilemma", + "romanization": "Dilemma", + "example_sentence_native": "Er steckt in einem Dilemma.", + "example_sentence_english": "He is in a dilemma.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7507 + }, + { + "word": "Dreieck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triangle", + "romanization": "Dreieck", + "example_sentence_native": "Ein Dreieck hat drei Seiten.", + "example_sentence_english": "A triangle has three sides.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7508 + }, + { + "word": "durchgehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go through;to pass", + "romanization": "durchgehen", + "example_sentence_native": "Die Prüfung ist schwer, aber ich werde durchgehen.", + "example_sentence_english": "The exam is difficult, but I will pass.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7511 + }, + { + "word": "durchlaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to run through;to go through (a process)", + "romanization": "durchlaufen", + "example_sentence_native": "Er musste viele Stationen durchlaufen.", + "example_sentence_english": "He had to go through many stations.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7512 + }, + { + "word": "Durst", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirst", + "romanization": "Durst", + "example_sentence_native": "Ich habe großen Durst.", + "example_sentence_english": "I am very thirsty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7513 + }, + { + "word": "einräumen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put away;to concede;to grant", + "romanization": "einräumen", + "example_sentence_native": "Kannst du bitte die Spülmaschine einräumen?", + "example_sentence_english": "Can you please load the dishwasher?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "räumen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7515 + }, + { + "word": "eiskalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ice-cold", + "romanization": "eiskalt", + "example_sentence_native": "Das Wasser ist eiskalt.", + "example_sentence_english": "The water is ice-cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7516 + }, + { + "word": "Extremist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremist", + "romanization": "Extremist", + "example_sentence_native": "Die Polizei verhaftete den Extremisten.", + "example_sentence_english": "The police arrested the extremist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7518 + }, + { + "word": "Fachmann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expert;specialist", + "romanization": "Fachmann", + "example_sentence_native": "Er ist ein echter Fachmann auf diesem Gebiet.", + "example_sentence_english": "He is a real expert in this field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7519 + }, + { + "word": "Flexibilität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexibility", + "romanization": "Flexibilität", + "example_sentence_native": "Flexibilität ist wichtig im Berufsleben.", + "example_sentence_english": "Flexibility is important in professional life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7521 + }, + { + "word": "fächern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fan", + "romanization": "fächern", + "example_sentence_native": "Sie fächert die Karten aus.", + "example_sentence_english": "She fans out the cards.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7525 + }, + { + "word": "füttern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to feed", + "romanization": "füttern", + "example_sentence_native": "Wir müssen die Tiere füttern.", + "example_sentence_english": "We have to feed the animals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7526 + }, + { + "word": "bannen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to banish;to captivate", + "romanization": "bannen", + "example_sentence_native": "Der Zauberer konnte den bösen Geist bannen.", + "example_sentence_english": "The wizard could banish the evil spirit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7527 + }, + { + "word": "gratulieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to congratulate", + "romanization": "gratulieren", + "example_sentence_native": "Ich möchte dir zum Geburtstag gratulieren.", + "example_sentence_english": "I want to congratulate you on your birthday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7528 + }, + { + "word": "Gruppierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grouping;alignment", + "romanization": "Gruppierung", + "example_sentence_native": "Die Gruppierung der Daten ist wichtig für die Analyse.", + "example_sentence_english": "The grouping of the data is important for the analysis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7529 + }, + { + "word": "gruselig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creepy;spooky", + "romanization": "gruselig", + "example_sentence_native": "Der alte Friedhof war sehr gruselig.", + "example_sentence_english": "The old cemetery was very creepy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7530 + }, + { + "word": "Götze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idol", + "romanization": "Götze", + "example_sentence_native": "Sie beteten einen goldenen Götzen an.", + "example_sentence_english": "They worshipped a golden idol.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7531 + }, + { + "word": "Gültigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validity", + "romanization": "Gültigkeit", + "example_sentence_native": "Die Gültigkeit des Passes ist abgelaufen.", + "example_sentence_english": "The validity of the passport has expired.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7532 + }, + { + "word": "Handtuch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "towel", + "romanization": "Handtuch", + "example_sentence_native": "Bitte gib mir ein sauberes Handtuch.", + "example_sentence_english": "Please give me a clean towel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7534 + }, + { + "word": "herkommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come from;to approach", + "romanization": "herkommen", + "example_sentence_native": "Wo kommst du her?", + "example_sentence_english": "Where do you come from?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7536 + }, + { + "word": "Hexe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "witch", + "romanization": "Hexe", + "example_sentence_native": "Die alte Hexe lebte in einem dunklen Wald.", + "example_sentence_english": "The old witch lived in a dark forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7537 + }, + { + "word": "hilflos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helpless", + "romanization": "hilflos", + "example_sentence_native": "Das kleine Kätzchen war völlig hilflos.", + "example_sentence_english": "The little kitten was completely helpless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7538 + }, + { + "word": "hindern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hinder;to prevent", + "romanization": "hindern", + "example_sentence_native": "Der Regen konnte uns nicht hindern, spazieren zu gehen.", + "example_sentence_english": "The rain could not prevent us from going for a walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7540 + }, + { + "word": "Holding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holding company", + "romanization": "Holding", + "example_sentence_native": "Die Holding besitzt mehrere Tochtergesellschaften.", + "example_sentence_english": "The holding company owns several subsidiaries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7541 + }, + { + "word": "Hörer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "listener;receiver (of a phone)", + "romanization": "Hörer", + "example_sentence_native": "Der Hörer legte auf.", + "example_sentence_english": "The listener hung up.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7542 + }, + { + "word": "infizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to infect", + "romanization": "infizieren", + "example_sentence_native": "Das Virus kann Menschen infizieren.", + "example_sentence_english": "The virus can infect people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7543 + }, + { + "word": "Inschrift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inscription", + "romanization": "Inschrift", + "example_sentence_native": "Die alte Inschrift war schwer zu entziffern.", + "example_sentence_english": "The old inscription was difficult to decipher.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7544 + }, + { + "word": "inszenieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stage;to orchestrate", + "romanization": "inszenieren", + "example_sentence_native": "Er wollte ein neues Theaterstück inszenieren.", + "example_sentence_english": "He wanted to stage a new play.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7545 + }, + { + "word": "Intervention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervention", + "romanization": "Intervention", + "example_sentence_native": "Eine schnelle Intervention war notwendig.", + "example_sentence_english": "A quick intervention was necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7546 + }, + { + "word": "kapieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get it;to understand (informal)", + "romanization": "kapieren", + "example_sentence_native": "Hast du das jetzt kapiert?", + "example_sentence_english": "Do you get it now?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7547 + }, + { + "word": "Kehle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "throat", + "romanization": "Kehle", + "example_sentence_native": "Er hatte Schmerzen in der Kehle.", + "example_sentence_english": "He had pain in his throat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7548 + }, + { + "word": "Knall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bang;crack;pop", + "romanization": "Knall", + "example_sentence_native": "Plötzlich gab es einen lauten Knall.", + "example_sentence_english": "Suddenly there was a loud bang.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7551 + }, + { + "word": "kontaktieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contact", + "romanization": "kontaktieren", + "example_sentence_native": "Bitte kontaktieren Sie mich bei Fragen.", + "example_sentence_english": "Please contact me if you have questions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7553 + }, + { + "word": "Kundgebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rally;demonstration", + "romanization": "Kundgebung", + "example_sentence_native": "Die Kundgebung fand friedlich statt.", + "example_sentence_english": "The rally took place peacefully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7554 + }, + { + "word": "Kur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cure;therapy;spa treatment", + "romanization": "Kur", + "example_sentence_native": "Er machte eine Kur zur Erholung.", + "example_sentence_english": "He took a cure for recovery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7555 + }, + { + "word": "leihen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lend;to borrow", + "romanization": "leihen", + "example_sentence_native": "Kannst du mir dein Buch leihen?", + "example_sentence_english": "Can you lend me your book?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7557 + }, + { + "word": "Lotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lottery", + "romanization": "Lotto", + "example_sentence_native": "Er hat im Lotto gewonnen.", + "example_sentence_english": "He won the lottery.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7558 + }, + { + "word": "Manipulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulation", + "romanization": "Manipulation", + "example_sentence_native": "Die Manipulation von Daten ist illegal.", + "example_sentence_english": "The manipulation of data is illegal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7560 + }, + { + "word": "meistern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to master", + "romanization": "meistern", + "example_sentence_native": "Er muss diese Herausforderung meistern.", + "example_sentence_english": "He must master this challenge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7561 + }, + { + "word": "Mittelstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small and medium-sized businesses (SMEs)", + "romanization": "Mittelstand", + "example_sentence_native": "Der deutsche Mittelstand ist bekannt für seine Innovationen.", + "example_sentence_english": "The German Mittelstand is known for its innovations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7562 + }, + { + "word": "Moll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor (key;scale in music)", + "romanization": "Moll", + "example_sentence_native": "Das Lied ist in C-Moll geschrieben.", + "example_sentence_english": "The song is written in C minor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7564 + }, + { + "word": "Mum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mum;mom", + "romanization": "Mum", + "example_sentence_native": "Meine Mum hat angerufen.", + "example_sentence_english": "My mum called.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7566 + }, + { + "word": "Neigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inclination;tendency", + "romanization": "Neigung", + "example_sentence_native": "Er hat eine Neigung zur Musik.", + "example_sentence_english": "He has an inclination for music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7567 + }, + { + "word": "Nominierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nomination", + "romanization": "Nominierung", + "example_sentence_native": "Die Nominierung für den Preis wurde bekannt gegeben.", + "example_sentence_english": "The nomination for the award was announced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7569 + }, + { + "word": "notfalls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "if necessary;if need be", + "romanization": "notfalls", + "example_sentence_native": "Notfalls können wir einen Plan B verwenden.", + "example_sentence_english": "If necessary, we can use a Plan B.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7570 + }, + { + "word": "Passage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passage;aisle", + "romanization": "Passage", + "example_sentence_native": "Diese Passage im Buch ist sehr interessant.", + "example_sentence_english": "This passage in the book is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7571 + }, + { + "word": "Penny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "penny", + "romanization": "Penny", + "example_sentence_native": "Ich habe nur noch einen Penny.", + "example_sentence_english": "I only have one penny left.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7573 + }, + { + "word": "platzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burst;to pop", + "romanization": "platzen", + "example_sentence_native": "Der Ballon ist geplatzt.", + "example_sentence_english": "The balloon burst.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7575 + }, + { + "word": "populär", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "popular", + "romanization": "populär", + "example_sentence_native": "Dieses Lied ist sehr populär.", + "example_sentence_english": "This song is very popular.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7576 + }, + { + "word": "Preisträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "award winner;laureate", + "romanization": "Preisträger", + "example_sentence_native": "Der Preisträger nahm seine Auszeichnung entgegen.", + "example_sentence_english": "The award winner accepted his distinction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7577 + }, + { + "word": "Privileg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privilege", + "romanization": "Privileg", + "example_sentence_native": "Es ist ein Privileg, hier zu sein.", + "example_sentence_english": "It is a privilege to be here.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7578 + }, + { + "word": "Prophet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophet", + "romanization": "Prophet", + "example_sentence_native": "Der Prophet sprach von einer besseren Zukunft.", + "example_sentence_english": "The prophet spoke of a better future.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7580 + }, + { + "word": "Rausch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intoxication;frenzy;rush", + "romanization": "Rausch", + "example_sentence_native": "Er war im Rausch der Geschwindigkeit.", + "example_sentence_english": "He was in a rush of speed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7581 + }, + { + "word": "Rechtfertigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "justification", + "romanization": "Rechtfertigung", + "example_sentence_native": "Es gab keine Rechtfertigung für sein Verhalten.", + "example_sentence_english": "There was no justification for his behavior.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7582 + }, + { + "word": "Resonanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resonance;feedback", + "romanization": "Resonanz", + "example_sentence_native": "Das Projekt fand große Resonanz.", + "example_sentence_english": "The project received great resonance/feedback.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7583 + }, + { + "word": "Segment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "segment", + "romanization": "Segment", + "example_sentence_native": "Das ist ein wichtiges Segment des Marktes.", + "example_sentence_english": "This is an important segment of the market.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7585 + }, + { + "word": "Sichtweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viewpoint;perspective", + "romanization": "Sichtweise", + "example_sentence_native": "Aus meiner Sichtweise ist das richtig.", + "example_sentence_english": "From my viewpoint, that is correct.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7586 + }, + { + "word": "Souveränität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereignty", + "romanization": "Souveränität", + "example_sentence_native": "Die Souveränität eines Staates ist entscheidend.", + "example_sentence_english": "The sovereignty of a state is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7587 + }, + { + "word": "spezial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "special", + "romanization": "spezial", + "example_sentence_native": "Das ist ein spezielles Angebot.", + "example_sentence_english": "That is a special offer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7588 + }, + { + "word": "strafbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punishable;criminal", + "romanization": "strafbar", + "example_sentence_native": "Diese Handlung ist strafbar.", + "example_sentence_english": "This action is punishable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7589 + }, + { + "word": "Suizid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicide", + "romanization": "Suizid", + "example_sentence_native": "Prävention von Suizid ist wichtig.", + "example_sentence_english": "Suicide prevention is important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7590 + }, + { + "word": "Teddy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teddy bear", + "romanization": "Teddy", + "example_sentence_native": "Das Kind spielt mit seinem Teddy.", + "example_sentence_english": "The child is playing with its teddy bear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7592 + }, + { + "word": "Tenor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenor;gist", + "romanization": "Tenor", + "example_sentence_native": "Der Tenor des Gesprächs war positiv.", + "example_sentence_english": "The gist of the conversation was positive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7593 + }, + { + "word": "Territorium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "territory", + "romanization": "Territorium", + "example_sentence_native": "Jedes Tier verteidigt sein Territorium.", + "example_sentence_english": "Every animal defends its territory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7594 + }, + { + "word": "täuschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deceive;to mislead", + "romanization": "täuschen", + "example_sentence_native": "Lass dich nicht täuschen.", + "example_sentence_english": "Don't let yourself be deceived.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7595 + }, + { + "word": "unterdessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meanwhile;in the meantime", + "romanization": "unterdessen", + "example_sentence_native": "Er kochte das Abendessen, unterdessen las sie ein Buch.", + "example_sentence_english": "He cooked dinner, meanwhile she read a book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7596 + }, + { + "word": "Unterwäsche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "underwear", + "romanization": "Unterwäsche", + "example_sentence_native": "Sie kaufte neue Unterwäsche.", + "example_sentence_english": "She bought new underwear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7597 + }, + { + "word": "vereinfachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to simplify", + "romanization": "vereinfachen", + "example_sentence_native": "Wir müssen den Prozess vereinfachen.", + "example_sentence_english": "We need to simplify the process.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7599 + }, + { + "word": "Visum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visa", + "romanization": "Visum", + "example_sentence_native": "Für die Reise benötige ich ein Visum.", + "example_sentence_english": "For the trip, I need a visa.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7600 + }, + { + "word": "Volkspartei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "people's party", + "romanization": "Volkspartei", + "example_sentence_native": "Die Volkspartei hat die Wahlen gewonnen.", + "example_sentence_english": "The people's party won the elections.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7601 + }, + { + "word": "Wecker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alarm clock", + "romanization": "Wecker", + "example_sentence_native": "Mein Wecker klingelt jeden Morgen um sechs Uhr.", + "example_sentence_english": "My alarm clock rings every morning at six o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7602 + }, + { + "word": "wegnehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take away", + "romanization": "wegnehmen", + "example_sentence_native": "Er wollte mir das Buch wegnehmen.", + "example_sentence_english": "He wanted to take the book away from me.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7603 + }, + { + "word": "Wiederherstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restoration", + "romanization": "Wiederherstellung", + "example_sentence_native": "Die Wiederherstellung des alten Gebäudes dauerte Jahre.", + "example_sentence_english": "The restoration of the old building took years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7604 + }, + { + "word": "Wurf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "throw", + "romanization": "Wurf", + "example_sentence_native": "Der Wurf des Speers war beeindruckend.", + "example_sentence_english": "The throw of the spear was impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7605 + }, + { + "word": "Zuwachs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growth", + "romanization": "Zuwachs", + "example_sentence_native": "Das Unternehmen verzeichnete einen starken Zuwachs an Kunden.", + "example_sentence_english": "The company recorded a strong increase in customers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7606 + }, + { + "word": "abdecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cover", + "romanization": "abdecken", + "example_sentence_native": "Bitte decken Sie das Essen ab.", + "example_sentence_english": "Please cover the food.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "decken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7607 + }, + { + "word": "abstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn off", + "romanization": "abstellen", + "example_sentence_native": "Er musste das Auto abstellen.", + "example_sentence_english": "He had to park the car.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7608 + }, + { + "word": "Alb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nightmare", + "romanization": "Alb", + "example_sentence_native": "Ein Alb verfolgte ihn im Schlaf.", + "example_sentence_english": "A nightmare haunted him in his sleep.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7610 + }, + { + "word": "anfertigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to produce", + "romanization": "anfertigen", + "example_sentence_native": "Sie muss ein Gutachten anfertigen.", + "example_sentence_english": "She has to prepare an expert opinion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fertigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7611 + }, + { + "word": "Anschein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance", + "romanization": "Anschein", + "example_sentence_native": "Dem Anschein nach ist alles in Ordnung.", + "example_sentence_english": "To all appearances, everything is in order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7612 + }, + { + "word": "apropos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apropos", + "romanization": "apropos", + "example_sentence_native": "Apropos, hast du schon die Nachrichten gehört?", + "example_sentence_english": "Apropos, have you heard the news yet?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7613 + }, + { + "word": "Ausdehnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expansion", + "romanization": "Ausdehnung", + "example_sentence_native": "Die Ausdehnung des Universums ist unvorstellbar.", + "example_sentence_english": "The expansion of the universe is unimaginable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7614 + }, + { + "word": "auseinandersetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deal with", + "romanization": "auseinandersetzen", + "example_sentence_native": "Er muss sich mit dem Problem auseinandersetzen.", + "example_sentence_english": "He has to deal with the problem.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auseinander", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7615 + }, + { + "word": "auswerten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evaluate", + "romanization": "auswerten", + "example_sentence_native": "Wir müssen die Daten auswerten.", + "example_sentence_english": "We need to evaluate the data.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "werten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7616 + }, + { + "word": "authentisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authentic", + "romanization": "authentisch", + "example_sentence_native": "Das ist eine authentische Geschichte.", + "example_sentence_english": "This is an authentic story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7617 + }, + { + "word": "Battle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battle", + "romanization": "Battle", + "example_sentence_native": "Das Rap-Battle war sehr spannend.", + "example_sentence_english": "The rap battle was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7619 + }, + { + "word": "Begrenzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limitation;boundary", + "romanization": "Begrenzung", + "example_sentence_native": "Es gibt eine Begrenzung der Geschwindigkeit auf dieser Straße.", + "example_sentence_english": "There is a speed limit on this road.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7621 + }, + { + "word": "Beileid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condolence;sympathy", + "romanization": "Beileid", + "example_sentence_native": "Ich spreche Ihnen mein tiefstes Beileid aus.", + "example_sentence_english": "I express my deepest condolences to you.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7622 + }, + { + "word": "Bestrafung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punishment", + "romanization": "Bestrafung", + "example_sentence_native": "Die Bestrafung für das Verbrechen war hart.", + "example_sentence_english": "The punishment for the crime was severe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7623 + }, + { + "word": "Betrachter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observer;viewer", + "romanization": "Betrachter", + "example_sentence_native": "Der Betrachter war fasziniert von dem Kunstwerk.", + "example_sentence_english": "The observer was fascinated by the artwork.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7624 + }, + { + "word": "Broschüre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brochure;pamphlet", + "romanization": "Broschüre", + "example_sentence_native": "Ich habe eine Broschüre über die Stadt bekommen.", + "example_sentence_english": "I received a brochure about the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7628 + }, + { + "word": "Depp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot;fool", + "romanization": "Depp", + "example_sentence_native": "Nenn mich nicht so einen Depp!", + "example_sentence_english": "Don't call me such an idiot!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7634 + }, + { + "word": "detailliert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detailed", + "romanization": "detailliert", + "example_sentence_native": "Er gab eine detaillierte Beschreibung des Vorfalls.", + "example_sentence_english": "He gave a detailed description of the incident.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7635 + }, + { + "word": "Dienstleister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "service provider", + "romanization": "Dienstleister", + "example_sentence_native": "Wir arbeiten mit einem zuverlässigen Dienstleister zusammen.", + "example_sentence_english": "We work with a reliable service provider.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7636 + }, + { + "word": "Dirigent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conductor (orchestra)", + "romanization": "Dirigent", + "example_sentence_native": "Der Dirigent führte das Orchester meisterhaft.", + "example_sentence_english": "The conductor led the orchestra masterfully.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7637 + }, + { + "word": "Dominanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominance", + "romanization": "Dominanz", + "example_sentence_native": "Die Dominanz des Unternehmens auf dem Markt ist unbestreitbar.", + "example_sentence_english": "The company's dominance in the market is undeniable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7639 + }, + { + "word": "edel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noble;precious", + "romanization": "edel", + "example_sentence_native": "Sie hat einen sehr edlen Charakter.", + "example_sentence_english": "She has a very noble character.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7640 + }, + { + "word": "ehrenamtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voluntary;honorary", + "romanization": "ehrenamtlich", + "example_sentence_native": "Er arbeitet ehrenamtlich im Tierheim.", + "example_sentence_english": "He works voluntarily at the animal shelter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7641 + }, + { + "word": "Einbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installation;fitting", + "romanization": "Einbau", + "example_sentence_native": "Der Einbau der neuen Küche dauert zwei Tage.", + "example_sentence_english": "The installation of the new kitchen takes two days.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7642 + }, + { + "word": "Einspruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objection;appeal", + "romanization": "Einspruch", + "example_sentence_native": "Der Anwalt legte Einspruch gegen das Urteil ein.", + "example_sentence_english": "The lawyer lodged an objection against the verdict.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7643 + }, + { + "word": "eklig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disgusting;gross", + "romanization": "eklig", + "example_sentence_native": "Das Essen schmeckt eklig.", + "example_sentence_english": "The food tastes disgusting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7644 + }, + { + "word": "erregen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to excite;to arouse;to provoke", + "romanization": "erregen", + "example_sentence_native": "Die Nachricht erregte großes Aufsehen.", + "example_sentence_english": "The news caused a great stir.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7645 + }, + { + "word": "feige", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cowardly", + "romanization": "feige", + "example_sentence_native": "Er war zu feige, um die Wahrheit zu sagen.", + "example_sentence_english": "He was too cowardly to tell the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7646 + }, + { + "word": "fertigstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complete;to finish", + "romanization": "fertigstellen", + "example_sentence_native": "Wir müssen das Projekt bis Freitag fertigstellen.", + "example_sentence_english": "We have to complete the project by Friday.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fertig", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7647 + }, + { + "word": "Formular", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "form (document)", + "romanization": "Formular", + "example_sentence_native": "Bitte füllen Sie das Formular aus.", + "example_sentence_english": "Please fill out the form.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7648 + }, + { + "word": "gegeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "given;existing", + "romanization": "gegeben", + "example_sentence_native": "Unter den gegebenen Umständen ist das die beste Lösung.", + "example_sentence_english": "Under the given circumstances, this is the best solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7650 + }, + { + "word": "kürzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shorten;to cut", + "romanization": "kürzen", + "example_sentence_native": "Wir müssen den Text kürzen.", + "example_sentence_english": "We have to shorten the text.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7651 + }, + { + "word": "Geltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "validity;force;standing", + "romanization": "Geltung", + "example_sentence_native": "Das Gesetz tritt ab morgen in Geltung.", + "example_sentence_english": "The law comes into force tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7652 + }, + { + "word": "Genossenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperative;association", + "romanization": "Genossenschaft", + "example_sentence_native": "Sie wohnen in einer Wohnungsbaugenossenschaft.", + "example_sentence_english": "They live in a housing cooperative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7654 + }, + { + "word": "Gewehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rifle;gun", + "romanization": "Gewehr", + "example_sentence_native": "Der Soldat trug ein Gewehr.", + "example_sentence_english": "The soldier carried a rifle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7656 + }, + { + "word": "gewissermassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to a certain extent;in a way", + "romanization": "gewissermassen", + "example_sentence_native": "Das ist gewissermassen richtig.", + "example_sentence_english": "That is, to a certain extent, correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7657 + }, + { + "word": "Gleichstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equality;equalization", + "romanization": "Gleichstellung", + "example_sentence_native": "Die Gleichstellung der Geschlechter ist ein wichtiges Ziel.", + "example_sentence_english": "Gender equality is an important goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7658 + }, + { + "word": "Grant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grumpiness;bad mood", + "romanization": "Grant", + "example_sentence_native": "Er hat heute einen Grant.", + "example_sentence_english": "He is in a bad mood today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7659 + }, + { + "word": "Hausfrau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "housewife", + "romanization": "Hausfrau", + "example_sentence_native": "Meine Großmutter war eine fleißige Hausfrau.", + "example_sentence_english": "My grandmother was a diligent housewife.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7661 + }, + { + "word": "Heck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rear;stern", + "romanization": "Heck", + "example_sentence_native": "Das Heck des Schiffes ragte aus dem Wasser.", + "example_sentence_english": "The stern of the ship protruded from the water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7662 + }, + { + "word": "Heimatland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeland;native country", + "romanization": "Heimatland", + "example_sentence_native": "Er vermisste sein Heimatland sehr.", + "example_sentence_english": "He missed his homeland very much.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7663 + }, + { + "word": "Innenministerium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ministry of Interior", + "romanization": "Innenministerium", + "example_sentence_native": "Das Innenministerium ist für die innere Sicherheit zuständig.", + "example_sentence_english": "The Ministry of Interior is responsible for internal security.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7666 + }, + { + "word": "Jet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jet", + "romanization": "Jet", + "example_sentence_native": "Der Jet landete pünktlich.", + "example_sentence_english": "The jet landed on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7667 + }, + { + "word": "Justizminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Minister of Justice", + "romanization": "Justizminister", + "example_sentence_native": "Der Justizminister hielt eine Rede über die Reform des Rechtssystems.", + "example_sentence_english": "The Minister of Justice gave a speech about the reform of the legal system.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7668 + }, + { + "word": "klinisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clinical", + "romanization": "klinisch", + "example_sentence_native": "Die klinische Studie zeigte vielversprechende Ergebnisse.", + "example_sentence_english": "The clinical study showed promising results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7669 + }, + { + "word": "Komitee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "committee", + "romanization": "Komitee", + "example_sentence_native": "Das Komitee traf eine wichtige Entscheidung.", + "example_sentence_english": "The committee made an important decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7671 + }, + { + "word": "kurzzeitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short-term;briefly", + "romanization": "kurzzeitig", + "example_sentence_native": "Die Störung war nur kurzzeitig.", + "example_sentence_english": "The disruption was only short-term.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7672 + }, + { + "word": "Leichtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightness;ease", + "romanization": "Leichtigkeit", + "example_sentence_native": "Er erledigte die Aufgabe mit großer Leichtigkeit.", + "example_sentence_english": "He completed the task with great ease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7673 + }, + { + "word": "Lifestyle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lifestyle", + "romanization": "Lifestyle", + "example_sentence_native": "Sein gesunder Lifestyle beeindruckt mich.", + "example_sentence_english": "His healthy lifestyle impresses me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7675 + }, + { + "word": "Lügenpresse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lying press;fake news (pejorative)", + "romanization": "Lügenpresse", + "example_sentence_native": "Der Begriff \"Lügenpresse\" wird oft in politischen Debatten verwendet.", + "example_sentence_english": "The term \"lying press\" is often used in political debates.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7676 + }, + { + "word": "Maximum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maximum", + "romanization": "Maximum", + "example_sentence_native": "Das Maximum der Temperatur wurde heute erreicht.", + "example_sentence_english": "The maximum temperature was reached today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7679 + }, + { + "word": "meiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avoid;to shun", + "romanization": "meiden", + "example_sentence_native": "Er versucht, Konflikte zu meiden.", + "example_sentence_english": "He tries to avoid conflicts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7680 + }, + { + "word": "Mobbing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bullying;mobbing", + "romanization": "Mobbing", + "example_sentence_native": "Mobbing am Arbeitsplatz ist inakzeptabel.", + "example_sentence_english": "Bullying in the workplace is unacceptable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7681 + }, + { + "word": "Most", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "must (unfermented grape juice);cider (apple must)", + "romanization": "Most", + "example_sentence_native": "Im Herbst wird aus den Äpfeln Most gemacht.", + "example_sentence_english": "In autumn, must is made from the apples.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7682 + }, + { + "word": "Nahverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local transport;short-distance transport", + "romanization": "Nahverkehr", + "example_sentence_native": "Der Nahverkehr in der Stadt ist sehr gut ausgebaut.", + "example_sentence_english": "The local transport in the city is very well developed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7683 + }, + { + "word": "Nationalrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "National Council (e.g.;in Austria or Switzerland)", + "romanization": "Nationalrat", + "example_sentence_native": "Der Nationalrat hat das neue Gesetz verabschiedet.", + "example_sentence_english": "The National Council passed the new law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7684 + }, + { + "word": "neunt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ninth", + "romanization": "neunt", + "example_sentence_native": "Er belegte den neunten Platz im Rennen.", + "example_sentence_english": "He took ninth place in the race.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 7685 + }, + { + "word": "Obergeschoss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "upper floor;upstairs", + "romanization": "Obergeschoss", + "example_sentence_native": "Unsere Wohnung ist im Obergeschoss.", + "example_sentence_english": "Our apartment is on the upper floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7688 + }, + { + "word": "Pflaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster;bandage (medical);pavement;cobblestone (street)", + "romanization": "Pflaster", + "example_sentence_native": "Ich brauche ein Pflaster für meinen Finger.", + "example_sentence_english": "I need a plaster for my finger.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7690 + }, + { + "word": "Physiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physicist", + "romanization": "Physiker", + "example_sentence_native": "Albert Einstein war ein berühmter Physiker.", + "example_sentence_english": "Albert Einstein was a famous physicist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7691 + }, + { + "word": "Portfolio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portfolio", + "romanization": "Portfolio", + "example_sentence_native": "Er präsentierte sein Portfolio mit seinen besten Arbeiten.", + "example_sentence_english": "He presented his portfolio with his best works.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7693 + }, + { + "word": "Praktik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "practice;custom;method", + "romanization": "Praktik", + "example_sentence_native": "Diese Praktik ist in vielen Kulturen verbreitet.", + "example_sentence_english": "This practice is common in many cultures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7694 + }, + { + "word": "Produktivität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productivity", + "romanization": "Produktivität", + "example_sentence_native": "Die Produktivität des Unternehmens hat sich verbessert.", + "example_sentence_english": "The company's productivity has improved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7695 + }, + { + "word": "Psychotherapie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotherapy", + "romanization": "Psychotherapie", + "example_sentence_native": "Sie begann eine Psychotherapie, um ihre Ängste zu bewältigen.", + "example_sentence_english": "She started psychotherapy to cope with her fears.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7696 + }, + { + "word": "Rast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest;break", + "romanization": "Rast", + "example_sentence_native": "Nach einer langen Wanderung brauchten wir eine Rast.", + "example_sentence_english": "After a long hike, we needed a rest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7697 + }, + { + "word": "Referat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presentation;paper;department (in administration)", + "romanization": "Referat", + "example_sentence_native": "Er hielt ein Referat über die Geschichte Roms.", + "example_sentence_english": "He gave a presentation on the history of Rome.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7698 + }, + { + "word": "Relation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relation;relationship", + "romanization": "Relation", + "example_sentence_native": "Es gibt eine direkte Relation zwischen Ursache und Wirkung.", + "example_sentence_english": "There is a direct relation between cause and effect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7699 + }, + { + "word": "scheissegal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "I don't give a damn", + "romanization": "scheissegal", + "example_sentence_native": "Es ist mir scheissegal, was du denkst.", + "example_sentence_english": "I don't give a damn what you think.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7700 + }, + { + "word": "Scheune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barn", + "romanization": "Scheune", + "example_sentence_native": "Die alte Scheune steht am Ende des Feldes.", + "example_sentence_english": "The old barn stands at the end of the field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7701 + }, + { + "word": "Schleife", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loop;bow;ribbon", + "romanization": "Schleife", + "example_sentence_native": "Sie band eine schöne Schleife um das Geschenk.", + "example_sentence_english": "She tied a beautiful bow around the gift.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7702 + }, + { + "word": "Schnäppchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bargain", + "romanization": "Schnäppchen", + "example_sentence_native": "Ich habe ein echtes Schnäppchen gemacht.", + "example_sentence_english": "I got a real bargain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7703 + }, + { + "word": "schwingen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swing;to wave", + "romanization": "schwingen", + "example_sentence_native": "Er ließ seine Beine im Takt schwingen.", + "example_sentence_english": "He let his legs swing to the beat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7704 + }, + { + "word": "simple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simple", + "romanization": "simple", + "example_sentence_native": "Das ist eine simple Lösung für das Problem.", + "example_sentence_english": "That is a simple solution to the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7707 + }, + { + "word": "sofortig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediate;instant", + "romanization": "sofortig", + "example_sentence_native": "Wir brauchen eine sofortige Antwort.", + "example_sentence_english": "We need an immediate answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7711 + }, + { + "word": "Sosse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauce;gravy", + "romanization": "Sosse", + "example_sentence_native": "Die Nudeln mit Tomatensoße schmecken gut.", + "example_sentence_english": "The pasta with tomato sauce tastes good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7712 + }, + { + "word": "Sprecherin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speaker (female)", + "romanization": "Sprecherin", + "example_sentence_native": "Die Sprecherin hielt eine beeindruckende Rede.", + "example_sentence_english": "The speaker gave an impressive speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7713 + }, + { + "word": "Sprint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sprint", + "romanization": "Sprint", + "example_sentence_native": "Er gewann den Sprint über 100 Meter.", + "example_sentence_english": "He won the 100-meter sprint.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7714 + }, + { + "word": "Stammtisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulars' table", + "romanization": "Stammtisch", + "example_sentence_native": "Jeden Freitag treffen wir uns am Stammtisch.", + "example_sentence_english": "Every Friday we meet at the regulars' table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7715 + }, + { + "word": "Stroh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straw", + "romanization": "Stroh", + "example_sentence_native": "Das Pferd schlief auf einem Bett aus Stroh.", + "example_sentence_english": "The horse slept on a bed of straw.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7716 + }, + { + "word": "stumpf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blunt;dull", + "romanization": "stumpf", + "example_sentence_native": "Das Messer ist stumpf und schneidet nicht gut.", + "example_sentence_english": "The knife is blunt and doesn't cut well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7717 + }, + { + "word": "Switch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "switch", + "romanization": "Switch", + "example_sentence_native": "Der Netzwerk-Switch verbindet alle Computer.", + "example_sentence_english": "The network switch connects all computers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7719 + }, + { + "word": "Synagoge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synagogue", + "romanization": "Synagoge", + "example_sentence_native": "Die Synagoge ist ein wichtiger Ort für die jüdische Gemeinde.", + "example_sentence_english": "The synagogue is an important place for the Jewish community.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7721 + }, + { + "word": "Synonym", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synonym", + "romanization": "Synonym", + "example_sentence_native": "\"Groß\" und \"riesig\" sind Synonyme.", + "example_sentence_english": "\"Big\" and \"huge\" are synonyms.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7722 + }, + { + "word": "teilnehmend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participating;attentive", + "romanization": "teilnehmend", + "example_sentence_native": "Er hatte eine sehr teilnehmende Haltung während der Diskussion.", + "example_sentence_english": "He had a very attentive attitude during the discussion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7724 + }, + { + "word": "theologisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theological", + "romanization": "theologisch", + "example_sentence_native": "Sie studiert theologische Texte an der Universität.", + "example_sentence_english": "She studies theological texts at the university.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7725 + }, + { + "word": "tschechisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Czech", + "romanization": "tschechisch", + "example_sentence_native": "Das ist ein tschechisches Bier.", + "example_sentence_english": "That is a Czech beer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7728 + }, + { + "word": "Turbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turbo", + "romanization": "Turbo", + "example_sentence_native": "Das Auto hat einen Turbo.", + "example_sentence_english": "The car has a turbo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7729 + }, + { + "word": "unterdrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suppress;oppress", + "romanization": "unterdrücken", + "example_sentence_native": "Man sollte seine Gefühle nicht unterdrücken.", + "example_sentence_english": "One should not suppress one's feelings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7730 + }, + { + "word": "Veganer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegan (male)", + "romanization": "Veganer", + "example_sentence_native": "Er ist ein Veganer und isst kein Fleisch.", + "example_sentence_english": "He is a vegan and doesn't eat meat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7732 + }, + { + "word": "vereinigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unite;combine", + "romanization": "vereinigen", + "example_sentence_native": "Die beiden Länder wollen sich vereinigen.", + "example_sentence_english": "The two countries want to unite.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7733 + }, + { + "word": "vernachlässigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neglect;disregard", + "romanization": "vernachlässigen", + "example_sentence_native": "Man sollte seine Pflichten nicht vernachlässigen.", + "example_sentence_english": "One should not neglect one's duties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7734 + }, + { + "word": "verpacken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pack;wrap", + "romanization": "verpacken", + "example_sentence_native": "Sie muss die Geschenke noch verpacken.", + "example_sentence_english": "She still has to wrap the presents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7735 + }, + { + "word": "Verrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "betrayal;treason", + "romanization": "Verrat", + "example_sentence_native": "Der Verrat seiner Freunde schmerzte ihn sehr.", + "example_sentence_english": "The betrayal of his friends hurt him deeply.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7736 + }, + { + "word": "Vers", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verse;stanza", + "romanization": "Vers", + "example_sentence_native": "Der erste Vers des Gedichts ist sehr schön.", + "example_sentence_english": "The first verse of the poem is very beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7737 + }, + { + "word": "verschärfen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intensify;aggravate;tighten", + "romanization": "verschärfen", + "example_sentence_native": "Die neuen Regeln sollen die Sicherheitsmaßnahmen verschärfen.", + "example_sentence_english": "The new rules are intended to tighten security measures.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7738 + }, + { + "word": "Vorfreude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anticipation;joyful anticipation", + "romanization": "Vorfreude", + "example_sentence_native": "Die Vorfreude auf den Urlaub war groß.", + "example_sentence_english": "The anticipation for the holiday was great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7739 + }, + { + "word": "Wartezeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waiting time", + "romanization": "Wartezeit", + "example_sentence_native": "Die Wartezeit in der Arztpraxis war sehr lang.", + "example_sentence_english": "The waiting time in the doctor's office was very long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7740 + }, + { + "word": "weitergeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pass on;to hand over", + "romanization": "weitergeben", + "example_sentence_native": "Kannst du diese Nachricht bitte weitergeben?", + "example_sentence_english": "Can you please pass on this message?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7741 + }, + { + "word": "westfälisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Westphalian", + "romanization": "westfälisch", + "example_sentence_native": "Er spricht einen westfälischen Dialekt.", + "example_sentence_english": "He speaks a Westphalian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7742 + }, + { + "word": "Whisky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whisky", + "romanization": "Whisky", + "example_sentence_native": "Er bestellte einen Whisky an der Bar.", + "example_sentence_english": "He ordered a whisky at the bar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7743 + }, + { + "word": "Wirbel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swirl;commotion;vertebra", + "romanization": "Wirbel", + "example_sentence_native": "Der Wirbel des Wassers war faszinierend.", + "example_sentence_english": "The swirl of the water was fascinating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7745 + }, + { + "word": "Youtuber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "YouTuber", + "romanization": "Youtuber", + "example_sentence_native": "Viele junge Leute wollen Youtuber werden.", + "example_sentence_english": "Many young people want to become YouTubers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7747 + }, + { + "word": "Zeitplan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schedule;timetable", + "romanization": "Zeitplan", + "example_sentence_native": "Wir müssen den Zeitplan einhalten.", + "example_sentence_english": "We have to stick to the schedule.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7748 + }, + { + "word": "zuweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assign;to allocate", + "romanization": "zuweisen", + "example_sentence_native": "Dem Team wurde eine neue Aufgabe zugewiesen.", + "example_sentence_english": "A new task was assigned to the team.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7749 + }, + { + "word": "Zusammenstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compilation;composition;assortment", + "romanization": "Zusammenstellung", + "example_sentence_native": "Die Zusammenstellung der Daten dauerte lange.", + "example_sentence_english": "The compilation of the data took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7750 + }, + { + "word": "Zutritt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "access;entry", + "romanization": "Zutritt", + "example_sentence_native": "Der Zutritt ist nur für Personal gestattet.", + "example_sentence_english": "Access is permitted for staff only.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7751 + }, + { + "word": "Zyklus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cycle", + "romanization": "Zyklus", + "example_sentence_native": "Der Lebenszyklus des Schmetterlings ist faszinierend.", + "example_sentence_english": "The life cycle of the butterfly is fascinating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7752 + }, + { + "word": "ökologisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ecological", + "romanization": "ökologisch", + "example_sentence_native": "Wir sollten mehr ökologische Produkte kaufen.", + "example_sentence_english": "We should buy more ecological products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7753 + }, + { + "word": "übernachten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stay overnight", + "romanization": "übernachten", + "example_sentence_native": "Wir können bei Freunden übernachten.", + "example_sentence_english": "We can stay overnight at friends'.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7754 + }, + { + "word": "Abreise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "departure", + "romanization": "Abreise", + "example_sentence_native": "Die Abreise ist für morgen früh geplant.", + "example_sentence_english": "The departure is planned for tomorrow morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7755 + }, + { + "word": "albern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silly;foolish", + "romanization": "albern", + "example_sentence_native": "Hör auf, so albern zu sein!", + "example_sentence_english": "Stop being so silly!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7757 + }, + { + "word": "angelegt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designed;laid out;invested", + "romanization": "angelegt", + "example_sentence_native": "Der Garten ist wunderschön angelegt.", + "example_sentence_english": "The garden is beautifully laid out.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7759 + }, + { + "word": "Anhörung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hearing", + "romanization": "Anhörung", + "example_sentence_native": "Die Anhörung dauerte den ganzen Tag.", + "example_sentence_english": "The hearing lasted all day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7760 + }, + { + "word": "Anschaffung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acquisition;purchase", + "romanization": "Anschaffung", + "example_sentence_native": "Die neue Anschaffung war sehr teuer.", + "example_sentence_english": "The new acquisition was very expensive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7762 + }, + { + "word": "Apparat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apparatus;device;phone", + "romanization": "Apparat", + "example_sentence_native": "Der Apparat funktioniert nicht mehr.", + "example_sentence_english": "The device no longer works.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7763 + }, + { + "word": "Army", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "army", + "romanization": "Army", + "example_sentence_native": "Die Army wurde mobilisiert.", + "example_sentence_english": "The army was mobilized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7764 + }, + { + "word": "Ast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "branch", + "romanization": "Ast", + "example_sentence_native": "Ein Vogel saß auf dem Ast.", + "example_sentence_english": "A bird sat on the branch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7766 + }, + { + "word": "Atlas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atlas", + "romanization": "Atlas", + "example_sentence_native": "Wir suchten die Stadt im Atlas.", + "example_sentence_english": "We looked for the city in the atlas.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7767 + }, + { + "word": "Attentäter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assassin;assailant", + "romanization": "Attentäter", + "example_sentence_native": "Der Attentäter wurde gefasst.", + "example_sentence_english": "The assassin was caught.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7768 + }, + { + "word": "aufzeichnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to record;to draw up", + "romanization": "aufzeichnen", + "example_sentence_native": "Sie wollte das Konzert aufzeichnen.", + "example_sentence_english": "She wanted to record the concert.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "zeichnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7769 + }, + { + "word": "aufwärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upwards", + "romanization": "aufwärts", + "example_sentence_native": "Der Weg führte steil aufwärts.", + "example_sentence_english": "The path led steeply upwards.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7770 + }, + { + "word": "Banane", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "banana", + "romanization": "Banane", + "example_sentence_native": "Ich esse gerne eine Banane zum Frühstück.", + "example_sentence_english": "I like to eat a banana for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7772 + }, + { + "word": "Beerdigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral", + "romanization": "Beerdigung", + "example_sentence_native": "Die Beerdigung fand am Freitag statt.", + "example_sentence_english": "The funeral took place on Friday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7774 + }, + { + "word": "Befürworter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proponent;advocate", + "romanization": "Befürworter", + "example_sentence_native": "Er ist ein starker Befürworter dieser Idee.", + "example_sentence_english": "He is a strong proponent of this idea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7775 + }, + { + "word": "Behälter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container;receptacle", + "romanization": "Behälter", + "example_sentence_native": "Der Behälter ist leer.", + "example_sentence_english": "The container is empty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7776 + }, + { + "word": "Bergbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mining", + "romanization": "Bergbau", + "example_sentence_native": "Der Bergbau ist eine wichtige Industrie in dieser Region.", + "example_sentence_english": "Mining is an important industry in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7778 + }, + { + "word": "besoffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunk (colloquial)", + "romanization": "besoffen", + "example_sentence_native": "Er war gestern Abend besoffen.", + "example_sentence_english": "He was drunk last night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7779 + }, + { + "word": "Blei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lead (metal)", + "romanization": "Blei", + "example_sentence_native": "Blei ist ein schweres Metall.", + "example_sentence_english": "Lead is a heavy metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7780 + }, + { + "word": "Break", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break (e.g.;in music;sports)", + "romanization": "Break", + "example_sentence_native": "Nach dem Break ging die Musik weiter.", + "example_sentence_english": "After the break, the music continued.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7783 + }, + { + "word": "Brenner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burner", + "romanization": "Brenner", + "example_sentence_native": "Der Brenner des Gasherds ist kaputt.", + "example_sentence_english": "The burner of the gas stove is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7784 + }, + { + "word": "Clown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clown", + "romanization": "Clown", + "example_sentence_native": "Der Clown brachte die Kinder zum Lachen.", + "example_sentence_english": "The clown made the children laugh.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7789 + }, + { + "word": "Demenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dementia", + "romanization": "Demenz", + "example_sentence_native": "Demenz ist eine ernsthafte Krankheit.", + "example_sentence_english": "Dementia is a serious illness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7790 + }, + { + "word": "Diktator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictator", + "romanization": "Diktator", + "example_sentence_native": "Der Diktator regierte mit eiserner Hand.", + "example_sentence_english": "The dictator ruled with an iron fist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7792 + }, + { + "word": "Director", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "director", + "romanization": "Director", + "example_sentence_native": "Der Director des Films war sehr bekannt.", + "example_sentence_english": "The director of the film was very famous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7793 + }, + { + "word": "distanzieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distance oneself (from)", + "romanization": "distanzieren", + "example_sentence_native": "Er musste sich von den Aussagen distanzieren.", + "example_sentence_english": "He had to distance himself from the statements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7794 + }, + { + "word": "Dynamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamo", + "romanization": "Dynamo", + "example_sentence_native": "Der Dynamo erzeugt Strom für das Fahrradlicht.", + "example_sentence_english": "The dynamo generates electricity for the bicycle light.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7795 + }, + { + "word": "einlegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insert;to put in;to pickle", + "romanization": "einlegen", + "example_sentence_native": "Bitte legen Sie die CD in den Player ein.", + "example_sentence_english": "Please insert the CD into the player.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7796 + }, + { + "word": "Einordnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classification;categorization", + "romanization": "Einordnung", + "example_sentence_native": "Die Einordnung der Daten ist wichtig für die Analyse.", + "example_sentence_english": "The classification of the data is important for the analysis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7797 + }, + { + "word": "einwandfrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flawless;impeccable", + "romanization": "einwandfrei", + "example_sentence_native": "Die Qualität des Produkts ist einwandfrei.", + "example_sentence_english": "The quality of the product is flawless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7798 + }, + { + "word": "enthüllen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unveil;to reveal", + "romanization": "enthüllen", + "example_sentence_native": "Die Statue wurde feierlich enthüllt.", + "example_sentence_english": "The statue was ceremonially unveiled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7799 + }, + { + "word": "entstehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerging;arising", + "romanization": "entstehend", + "example_sentence_native": "Die entstehende Technologie verspricht viel.", + "example_sentence_english": "The emerging technology promises a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7800 + }, + { + "word": "erschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to slay;to strike dead;to overwhelm", + "romanization": "erschlagen", + "example_sentence_native": "Er wurde von der Menge an Informationen erschlagen.", + "example_sentence_english": "He was overwhelmed by the amount of information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7801 + }, + { + "word": "geduldig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patient", + "romanization": "geduldig", + "example_sentence_native": "Sie ist eine sehr geduldige Lehrerin.", + "example_sentence_english": "She is a very patient teacher.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7805 + }, + { + "word": "Geschäftsstelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "office;branch office", + "romanization": "Geschäftsstelle", + "example_sentence_native": "Die Geschäftsstelle ist von 9 bis 17 Uhr geöffnet.", + "example_sentence_english": "The office is open from 9 AM to 5 PM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7806 + }, + { + "word": "Gewissheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainty;assurance", + "romanization": "Gewissheit", + "example_sentence_native": "Er sprach mit großer Gewissheit über seine Pläne.", + "example_sentence_english": "He spoke with great certainty about his plans.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7807 + }, + { + "word": "Grippe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flu;influenza", + "romanization": "Grippe", + "example_sentence_native": "Ich habe die Grippe und muss im Bett bleiben.", + "example_sentence_english": "I have the flu and have to stay in bed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7808 + }, + { + "word": "Hack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hack (computing);minced meat (food)", + "romanization": "Hack", + "example_sentence_native": "Das ist ein cleverer Hack, um Zeit zu sparen.", + "example_sentence_english": "That's a clever hack to save time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7810 + }, + { + "word": "herab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "down;downwards (from a higher place)", + "romanization": "herab", + "example_sentence_native": "Der Ball rollte den Hügel herab.", + "example_sentence_english": "The ball rolled down the hill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7815 + }, + { + "word": "herkömmlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditional;conventional", + "romanization": "herkömmlich", + "example_sentence_native": "Wir verwenden herkömmliche Methoden.", + "example_sentence_english": "We use traditional methods.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7816 + }, + { + "word": "hinterfragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to question;to critically examine", + "romanization": "hinterfragen", + "example_sentence_native": "Man sollte immer kritisch hinterfragen.", + "example_sentence_english": "One should always question critically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7817 + }, + { + "word": "Häftling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prisoner;inmate", + "romanization": "Häftling", + "example_sentence_native": "Der Häftling wurde freigelassen.", + "example_sentence_english": "The prisoner was released.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7819 + }, + { + "word": "jammern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lament;to wail", + "romanization": "jammern", + "example_sentence_native": "Sie hörte ihn die ganze Nacht jammern.", + "example_sentence_english": "She heard him lamenting all night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7820 + }, + { + "word": "Jobcenter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job center", + "romanization": "Jobcenter", + "example_sentence_native": "Er musste sich beim Jobcenter melden.", + "example_sentence_english": "He had to report to the job center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7821 + }, + { + "word": "Kaserne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barracks", + "romanization": "Kaserne", + "example_sentence_native": "Die Soldaten kehrten in die Kaserne zurück.", + "example_sentence_english": "The soldiers returned to the barracks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7823 + }, + { + "word": "Kick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kick;thrill", + "romanization": "Kick", + "example_sentence_native": "Er bekam einen richtigen Kick von dem Abenteuer.", + "example_sentence_english": "He got a real thrill from the adventure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7824 + }, + { + "word": "Klausur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exam;written test", + "romanization": "Klausur", + "example_sentence_native": "Die Klausur war sehr anspruchsvoll.", + "example_sentence_english": "The exam was very demanding.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7826 + }, + { + "word": "Klärung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarification;settlement", + "romanization": "Klärung", + "example_sentence_native": "Wir brauchen eine schnelle Klärung dieser Angelegenheit.", + "example_sentence_english": "We need a quick clarification of this matter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7827 + }, + { + "word": "Koma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coma", + "romanization": "Koma", + "example_sentence_native": "Nach dem Unfall lag er im Koma.", + "example_sentence_english": "After the accident, he was in a coma.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7828 + }, + { + "word": "Konsole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "console", + "romanization": "Konsole", + "example_sentence_native": "Er spielt gerne auf seiner neuen Konsole.", + "example_sentence_english": "He likes to play on his new console.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7829 + }, + { + "word": "Koordinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordinate", + "romanization": "Koordinate", + "example_sentence_native": "Wir müssen die genauen Koordinaten bestimmen.", + "example_sentence_english": "We need to determine the exact coordinates.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7830 + }, + { + "word": "Laster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck;lorry", + "romanization": "Laster", + "example_sentence_native": "Der Laster transportierte schwere Güter.", + "example_sentence_english": "The truck transported heavy goods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7831 + }, + { + "word": "legendär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legendary", + "romanization": "legendär", + "example_sentence_native": "Seine Auftritte waren legendär.", + "example_sentence_english": "His performances were legendary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7832 + }, + { + "word": "Legislaturperiode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislative period;term of office", + "romanization": "Legislaturperiode", + "example_sentence_native": "Die nächste Legislaturperiode beginnt im Herbst.", + "example_sentence_english": "The next legislative period begins in autumn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7833 + }, + { + "word": "Linde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linden tree;lime tree", + "romanization": "Linde", + "example_sentence_native": "Unter der alten Linde saßen sie im Schatten.", + "example_sentence_english": "They sat in the shade under the old linden tree.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7834 + }, + { + "word": "meinetwegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for all I care;as far as I'm concerned", + "romanization": "meinetwegen", + "example_sentence_native": "Meinetwegen können wir jetzt gehen.", + "example_sentence_english": "As far as I'm concerned, we can go now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7836 + }, + { + "word": "Menschenleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "human life", + "romanization": "Menschenleben", + "example_sentence_native": "Es ging um die Rettung von Menschenleben.", + "example_sentence_english": "It was about saving human lives.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7837 + }, + { + "word": "Metzger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher", + "romanization": "Metzger", + "example_sentence_native": "Ich kaufe mein Fleisch immer beim Metzger.", + "example_sentence_english": "I always buy my meat at the butcher's.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7838 + }, + { + "word": "Missverständnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misunderstanding", + "romanization": "Missverständnis", + "example_sentence_native": "Es gab ein Missverständnis zwischen ihnen.", + "example_sentence_english": "There was a misunderstanding between them.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7839 + }, + { + "word": "Mitbewohner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flatmate;roommate", + "romanization": "Mitbewohner", + "example_sentence_native": "Mein Mitbewohner ist sehr ordentlich.", + "example_sentence_english": "My flatmate is very tidy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7840 + }, + { + "word": "Mitgliederversammlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "general meeting (of members)", + "romanization": "Mitgliederversammlung", + "example_sentence_native": "Die Mitgliederversammlung findet nächste Woche statt.", + "example_sentence_english": "The general meeting will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7841 + }, + { + "word": "moderieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to moderate", + "romanization": "moderieren", + "example_sentence_native": "Sie wird die Diskussion moderieren.", + "example_sentence_english": "She will moderate the discussion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7842 + }, + { + "word": "morden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to murder", + "romanization": "morden", + "example_sentence_native": "Er wurde beschuldigt, gemordet zu haben.", + "example_sentence_english": "He was accused of having murdered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7844 + }, + { + "word": "Movie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "movie;film", + "romanization": "Movie", + "example_sentence_native": "Ich habe gestern einen guten Movie gesehen.", + "example_sentence_english": "I saw a good movie yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7845 + }, + { + "word": "Mönch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monk", + "romanization": "Mönch", + "example_sentence_native": "Der Mönch lebte in einem Kloster.", + "example_sentence_english": "The monk lived in a monastery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7847 + }, + { + "word": "nachweisbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detectable;verifiable", + "romanization": "nachweisbar", + "example_sentence_native": "Die Spuren waren nachweisbar.", + "example_sentence_english": "The traces were detectable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7848 + }, + { + "word": "Nationalismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nationalism", + "romanization": "Nationalismus", + "example_sentence_native": "Nationalismus kann gefährlich sein.", + "example_sentence_english": "Nationalism can be dangerous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7849 + }, + { + "word": "Neffe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nephew", + "romanization": "Neffe", + "example_sentence_native": "Mein Neffe besucht uns am Wochenende.", + "example_sentence_english": "My nephew is visiting us on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7850 + }, + { + "word": "Parade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parade", + "romanization": "Parade", + "example_sentence_native": "Die Parade zog durch die Straßen.", + "example_sentence_english": "The parade moved through the streets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7852 + }, + { + "word": "Promi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebrity", + "romanization": "Promi", + "example_sentence_native": "Viele Promis waren auf der Party.", + "example_sentence_english": "Many celebrities were at the party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7855 + }, + { + "word": "Protein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protein", + "romanization": "Protein", + "example_sentence_native": "Proteine sind wichtig für den Muskelaufbau.", + "example_sentence_english": "Proteins are important for muscle building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7857 + }, + { + "word": "Psyche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psyche;mind", + "romanization": "Psyche", + "example_sentence_native": "Die Psyche spielt eine große Rolle für die Gesundheit.", + "example_sentence_english": "The psyche plays a big role in health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7858 + }, + { + "word": "Pullover", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sweater;pullover", + "romanization": "Pullover", + "example_sentence_native": "Ich trage einen warmen Pullover.", + "example_sentence_english": "I am wearing a warm sweater.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7859 + }, + { + "word": "stürmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to storm;to rush", + "romanization": "stürmen", + "example_sentence_native": "Die Fans stürmten das Feld nach dem Spiel.", + "example_sentence_english": "The fans stormed the field after the game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7880 + }, + { + "word": "surfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to surf", + "romanization": "surfen", + "example_sentence_native": "Er surft gerne im Internet.", + "example_sentence_english": "He likes to surf the internet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7881 + }, + { + "word": "Taube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pigeon;dove", + "romanization": "Taube", + "example_sentence_native": "Eine Taube saß auf dem Fensterbrett.", + "example_sentence_english": "A pigeon sat on the windowsill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7882 + }, + { + "word": "Torwart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goalkeeper", + "romanization": "Torwart", + "example_sentence_native": "Der Torwart hielt den Ball.", + "example_sentence_english": "The goalkeeper saved the ball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7883 + }, + { + "word": "Transporter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "van;transporter", + "romanization": "Transporter", + "example_sentence_native": "Wir mieteten einen Transporter für den Umzug.", + "example_sentence_english": "We rented a van for the move.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7884 + }, + { + "word": "Umlauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circulation;orbit", + "romanization": "Umlauf", + "example_sentence_native": "Das Geld ist im Umlauf.", + "example_sentence_english": "The money is in circulation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7886 + }, + { + "word": "Urheber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "author;originator;copyright holder", + "romanization": "Urheber", + "example_sentence_native": "Der Urheber des Liedes ist unbekannt.", + "example_sentence_english": "The author of the song is unknown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7888 + }, + { + "word": "Vermeidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avoidance", + "romanization": "Vermeidung", + "example_sentence_native": "Die Vermeidung von Fehlern ist wichtig.", + "example_sentence_english": "The avoidance of errors is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7889 + }, + { + "word": "vermieten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rent out;to let", + "romanization": "vermieten", + "example_sentence_native": "Sie wollen ihre Wohnung vermieten.", + "example_sentence_english": "They want to rent out their apartment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7890 + }, + { + "word": "verschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prescribe (medicine);to miswrite", + "romanization": "verschreiben", + "example_sentence_native": "Der Arzt verschrieb ihm ein Medikament.", + "example_sentence_english": "The doctor prescribed him a medication.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7891 + }, + { + "word": "verärgern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy;to anger", + "romanization": "verärgern", + "example_sentence_native": "Seine Worte verärgerten sie sehr.", + "example_sentence_english": "His words annoyed her greatly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7892 + }, + { + "word": "vierzehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fourteen", + "romanization": "vierzehn", + "example_sentence_native": "Er ist vierzehn Jahre alt.", + "example_sentence_english": "He is fourteen years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 7893 + }, + { + "word": "Vorstandsmitglied", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "board member;executive board member", + "romanization": "Vorstandsmitglied", + "example_sentence_native": "Sie ist ein neues Vorstandsmitglied.", + "example_sentence_english": "She is a new board member.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7895 + }, + { + "word": "wechselnd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "changing;varying", + "romanization": "wechselnd", + "example_sentence_native": "Das Wetter ist heute wechselnd bewölkt.", + "example_sentence_english": "The weather today is partly cloudy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7896 + }, + { + "word": "weiterentwickeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to develop further;to evolve", + "romanization": "weiterentwickeln", + "example_sentence_native": "Wir müssen unsere Produkte ständig weiterentwickeln.", + "example_sentence_english": "We must constantly develop our products further.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "entwickeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7897 + }, + { + "word": "weiters", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further;furthermore", + "romanization": "weiters", + "example_sentence_native": "Was gibt es weiters zu berichten?", + "example_sentence_english": "What else is there to report?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7898 + }, + { + "word": "worin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wherein;in what", + "romanization": "worin", + "example_sentence_native": "Worin besteht der Unterschied?", + "example_sentence_english": "Wherein lies the difference?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7899 + }, + { + "word": "wundervoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonderful", + "romanization": "wundervoll", + "example_sentence_native": "Das ist ein wundervoller Tag.", + "example_sentence_english": "This is a wonderful day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7900 + }, + { + "word": "Wurm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worm", + "romanization": "Wurm", + "example_sentence_native": "Der Wurm kriecht im Boden.", + "example_sentence_english": "The worm crawls in the ground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7901 + }, + { + "word": "würdig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worthy;dignified", + "romanization": "würdig", + "example_sentence_native": "Er ist eines Preises würdig.", + "example_sentence_english": "He is worthy of a prize.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7902 + }, + { + "word": "zuschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attribute;to ascribe", + "romanization": "zuschreiben", + "example_sentence_native": "Man schreibt ihm den Erfolg zu.", + "example_sentence_english": "The success is attributed to him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7903 + }, + { + "word": "zugute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to the benefit of;for the good of", + "romanization": "zugute", + "example_sentence_native": "Das kommt der Umwelt zugute.", + "example_sentence_english": "That benefits the environment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7904 + }, + { + "word": "Zuständigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "responsibility;competence;jurisdiction", + "romanization": "Zuständigkeit", + "example_sentence_native": "Das liegt in meiner Zuständigkeit.", + "example_sentence_english": "That is within my responsibility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7905 + }, + { + "word": "Zylinder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cylinder;top hat", + "romanization": "Zylinder", + "example_sentence_native": "Er trug einen schwarzen Zylinder.", + "example_sentence_english": "He wore a black top hat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7906 + }, + { + "word": "ähneln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resemble;to be similar to", + "romanization": "ähneln", + "example_sentence_native": "Sie ähnelt ihrer Mutter sehr.", + "example_sentence_english": "She resembles her mother very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7907 + }, + { + "word": "Ablenkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distraction;diversion", + "romanization": "Ablenkung", + "example_sentence_native": "Ich brauche eine Ablenkung von der Arbeit.", + "example_sentence_english": "I need a distraction from work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7909 + }, + { + "word": "Abstammung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "descent;origin;ancestry", + "romanization": "Abstammung", + "example_sentence_native": "Seine Abstammung ist irisch.", + "example_sentence_english": "His ancestry is Irish.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7910 + }, + { + "word": "Algorithmus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "algorithm", + "romanization": "Algorithmus", + "example_sentence_native": "Der Algorithmus ist sehr komplex.", + "example_sentence_english": "The algorithm is very complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7911 + }, + { + "word": "Anhieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first attempt;go (in \"auf Anhieb\")", + "romanization": "Anhieb", + "example_sentence_native": "Er hat die Prüfung auf Anhieb bestanden.", + "example_sentence_english": "He passed the exam on the first attempt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7912 + }, + { + "word": "Anlauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run-up;approach;initial effort", + "romanization": "Anlauf", + "example_sentence_native": "Sie nahm Anlauf für den Sprung.", + "example_sentence_english": "She took a run-up for the jump.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7913 + }, + { + "word": "Anspielung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allusion;hint;insinuation", + "romanization": "Anspielung", + "example_sentence_native": "Das war eine klare Anspielung auf dich.", + "example_sentence_english": "That was a clear allusion to you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7914 + }, + { + "word": "Aufbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "departure;breaking up;new beginning", + "romanization": "Aufbruch", + "example_sentence_native": "Wir planen den Aufbruch für den frühen Morgen.", + "example_sentence_english": "We are planning the departure for early morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7917 + }, + { + "word": "Ausbreitung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spread;diffusion;propagation", + "romanization": "Ausbreitung", + "example_sentence_native": "Die Ausbreitung des Virus ist besorgniserregend.", + "example_sentence_english": "The spread of the virus is concerning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7918 + }, + { + "word": "Ausweitung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expansion;extension;widening", + "romanization": "Ausweitung", + "example_sentence_native": "Die Ausweitung der Produktion ist geplant.", + "example_sentence_english": "The expansion of production is planned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7919 + }, + { + "word": "Axt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "axe", + "romanization": "Axt", + "example_sentence_native": "Er hackte Holz mit einer Axt.", + "example_sentence_english": "He chopped wood with an axe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7920 + }, + { + "word": "Bastard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bastard", + "romanization": "Bastard", + "example_sentence_native": "Er nannte ihn einen Bastard.", + "example_sentence_english": "He called him a bastard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7921 + }, + { + "word": "begehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to desire;to covet", + "romanization": "begehren", + "example_sentence_native": "Sie begehrt Reichtum und Macht.", + "example_sentence_english": "She desires wealth and power.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7922 + }, + { + "word": "Beschaffung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "procurement;acquisition", + "romanization": "Beschaffung", + "example_sentence_native": "Die Beschaffung neuer Computer ist im Gange.", + "example_sentence_english": "The procurement of new computers is underway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7923 + }, + { + "word": "beschimpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to insult;to abuse", + "romanization": "beschimpfen", + "example_sentence_native": "Er begann, seinen Gegner zu beschimpfen.", + "example_sentence_english": "He started to insult his opponent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7924 + }, + { + "word": "Biathlon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biathlon", + "romanization": "Biathlon", + "example_sentence_native": "Der Biathlon ist ein Wintersport.", + "example_sentence_english": "Biathlon is a winter sport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7925 + }, + { + "word": "Bip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beep", + "romanization": "Bip", + "example_sentence_native": "Das Gerät machte einen kurzen Bip.", + "example_sentence_english": "The device made a short beep.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7926 + }, + { + "word": "Blogger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blogger", + "romanization": "Blogger", + "example_sentence_native": "Der Blogger schrieb über seine Reisen.", + "example_sentence_english": "The blogger wrote about his travels.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7927 + }, + { + "word": "Boulevard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boulevard", + "romanization": "Boulevard", + "example_sentence_native": "Sie spazierten den Boulevard entlang.", + "example_sentence_english": "They walked along the boulevard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7928 + }, + { + "word": "braten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to roast;to fry", + "romanization": "braten", + "example_sentence_native": "Ich werde das Hähnchen im Ofen braten.", + "example_sentence_english": "I will roast the chicken in the oven.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7929 + }, + { + "word": "british", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "British", + "romanization": "british", + "example_sentence_native": "Er hat einen britischen Akzent.", + "example_sentence_english": "He has a British accent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7930 + }, + { + "word": "Bundespolizei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Federal Police", + "romanization": "Bundespolizei", + "example_sentence_native": "Die Bundespolizei sicherte den Bahnhof.", + "example_sentence_english": "The Federal Police secured the train station.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7931 + }, + { + "word": "Bunker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bunker", + "romanization": "Bunker", + "example_sentence_native": "Sie suchten Schutz in einem alten Bunker.", + "example_sentence_english": "They sought shelter in an old bunker.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7932 + }, + { + "word": "Bursche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lad;fellow", + "romanization": "Bursche", + "example_sentence_native": "Der junge Bursche half der alten Dame.", + "example_sentence_english": "The young lad helped the old lady.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7933 + }, + { + "word": "Card", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "card", + "romanization": "Card", + "example_sentence_native": "Kann ich mit Card bezahlen?", + "example_sentence_english": "Can I pay by card?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7934 + }, + { + "word": "durchziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pull through;to go through", + "romanization": "durchziehen", + "example_sentence_native": "Er musste die Prüfung durchziehen.", + "example_sentence_english": "He had to pull through the exam.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7940 + }, + { + "word": "Ebook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "e-book", + "romanization": "Ebook", + "example_sentence_native": "Ich lese ein Ebook auf meinem Tablet.", + "example_sentence_english": "I am reading an e-book on my tablet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7942 + }, + { + "word": "ehest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earliest", + "romanization": "ehest", + "example_sentence_native": "Wir müssen ehest möglich abreisen.", + "example_sentence_english": "We must depart as early as possible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7943 + }, + { + "word": "einsperren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lock up;to imprison", + "romanization": "einsperren", + "example_sentence_native": "Sie mussten den Hund im Zwinger einsperren.", + "example_sentence_english": "They had to lock up the dog in the kennel.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "sperren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7945 + }, + { + "word": "Elektrotechnik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electrical engineering", + "romanization": "Elektrotechnik", + "example_sentence_native": "Er studiert Elektrotechnik an der Universität.", + "example_sentence_english": "He studies electrical engineering at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7946 + }, + { + "word": "erkunden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explore;to scout", + "romanization": "erkunden", + "example_sentence_native": "Wir wollen die Gegend erkunden.", + "example_sentence_english": "We want to explore the area.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7947 + }, + { + "word": "Erlass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decree;edict;remission", + "romanization": "Erlass", + "example_sentence_native": "Die Regierung hat einen neuen Erlass herausgegeben.", + "example_sentence_english": "The government has issued a new decree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7948 + }, + { + "word": "Eroberung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conquest", + "romanization": "Eroberung", + "example_sentence_native": "Die Eroberung der Stadt war blutig.", + "example_sentence_english": "The conquest of the city was bloody.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7949 + }, + { + "word": "Fels", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock;cliff", + "romanization": "Fels", + "example_sentence_native": "Der Kletterer stand auf einem hohen Fels.", + "example_sentence_english": "The climber stood on a high rock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7950 + }, + { + "word": "Fertigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing;production", + "romanization": "Fertigung", + "example_sentence_native": "Die Fertigung der neuen Produkte beginnt nächste Woche.", + "example_sentence_english": "The manufacturing of the new products begins next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7951 + }, + { + "word": "Fortbildung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "further training;professional development", + "romanization": "Fortbildung", + "example_sentence_native": "Sie besucht eine Fortbildung, um ihre Fähigkeiten zu verbessern.", + "example_sentence_english": "She is attending further training to improve her skills.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7953 + }, + { + "word": "Frechheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impudence;cheek;audacity", + "romanization": "Frechheit", + "example_sentence_native": "Das ist eine absolute Frechheit!", + "example_sentence_english": "That is an absolute impudence!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7954 + }, + { + "word": "Freibad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "outdoor swimming pool", + "romanization": "Freibad", + "example_sentence_native": "Im Sommer gehen wir oft ins Freibad.", + "example_sentence_english": "In summer, we often go to the outdoor swimming pool.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7955 + }, + { + "word": "fünfzehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifteen", + "romanization": "fünfzehn", + "example_sentence_native": "Ich bin fünfzehn Jahre alt.", + "example_sentence_english": "I am fifteen years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 7957 + }, + { + "word": "Garde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guard (as in a unit of soldiers);escort", + "romanization": "Garde", + "example_sentence_native": "Die königliche Garde schützte den Palast.", + "example_sentence_english": "The royal guard protected the palace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7958 + }, + { + "word": "Gasthaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inn;guesthouse;pub", + "romanization": "Gasthaus", + "example_sentence_native": "Wir haben in einem gemütlichen Gasthaus übernachtet.", + "example_sentence_english": "We stayed overnight in a cozy inn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7959 + }, + { + "word": "gekonnt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skillful;masterly", + "romanization": "gekonnt", + "example_sentence_native": "Sie hat die Aufgabe gekonnt gelöst.", + "example_sentence_english": "She solved the task skillfully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7960 + }, + { + "word": "Geldbeutel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet;purse", + "romanization": "Geldbeutel", + "example_sentence_native": "Ich habe meinen Geldbeutel verloren.", + "example_sentence_english": "I lost my wallet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7961 + }, + { + "word": "Geographie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geography", + "romanization": "Geographie", + "example_sentence_native": "Er studiert Geographie an der Universität.", + "example_sentence_english": "He studies geography at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7962 + }, + { + "word": "Geschäftsmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "businessman", + "romanization": "Geschäftsmann", + "example_sentence_native": "Der Geschäftsmann reist viel.", + "example_sentence_english": "The businessman travels a lot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7963 + }, + { + "word": "Gesinnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conviction;attitude;mindset", + "romanization": "Gesinnung", + "example_sentence_native": "Seine politische Gesinnung ist sehr klar.", + "example_sentence_english": "His political conviction is very clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7964 + }, + { + "word": "getrennt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separate;separated", + "romanization": "getrennt", + "example_sentence_native": "Sie leben seit einem Jahr getrennt.", + "example_sentence_english": "They have been living separately for a year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7965 + }, + { + "word": "Getriebe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gear;transmission", + "romanization": "Getriebe", + "example_sentence_native": "Das Auto hat ein neues Getriebe.", + "example_sentence_english": "The car has a new transmission.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7966 + }, + { + "word": "gewonnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "won;gained", + "romanization": "gewonnen", + "example_sentence_native": "Das ist ein gewonnenes Spiel.", + "example_sentence_english": "That is a won game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7967 + }, + { + "word": "Grundstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornerstone;foundation stone", + "romanization": "Grundstein", + "example_sentence_native": "Der Grundstein für das neue Gebäude wurde gelegt.", + "example_sentence_english": "The cornerstone for the new building was laid.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7970 + }, + { + "word": "Handvoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handful", + "romanization": "Handvoll", + "example_sentence_native": "Er nahm eine Handvoll Nüsse.", + "example_sentence_english": "He took a handful of nuts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7972 + }, + { + "word": "insoweit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insofar;to that extent", + "romanization": "insoweit", + "example_sentence_native": "Insoweit stimme ich Ihnen zu.", + "example_sentence_english": "Insofar, I agree with you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 7974 + }, + { + "word": "Investment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "romanization": "Investment", + "example_sentence_native": "Das Investment hat sich gelohnt.", + "example_sentence_english": "The investment paid off.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7975 + }, + { + "word": "Karton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardboard box;carton", + "romanization": "Karton", + "example_sentence_native": "Bitte legen Sie es in den Karton.", + "example_sentence_english": "Please put it in the box.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7978 + }, + { + "word": "Klient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "client", + "romanization": "Klient", + "example_sentence_native": "Der Anwalt traf seinen Klienten.", + "example_sentence_english": "The lawyer met his client.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7979 + }, + { + "word": "Kommunalwahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal election", + "romanization": "Kommunalwahl", + "example_sentence_native": "Die Kommunalwahl findet nächsten Monat statt.", + "example_sentence_english": "The municipal election will take place next month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7980 + }, + { + "word": "lachend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laughing", + "romanization": "lachend", + "example_sentence_native": "Das lachende Kind spielte im Garten.", + "example_sentence_english": "The laughing child played in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7981 + }, + { + "word": "Lagerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storage;warehousing", + "romanization": "Lagerung", + "example_sentence_native": "Die richtige Lagerung von Lebensmitteln ist wichtig.", + "example_sentence_english": "The correct storage of food is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7982 + }, + { + "word": "Lenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spring (poetic)", + "romanization": "Lenz", + "example_sentence_native": "Der Lenz ist gekommen, die Vögel singen.", + "example_sentence_english": "Spring has come, the birds are singing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7984 + }, + { + "word": "meckern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grumble;to complain", + "romanization": "meckern", + "example_sentence_native": "Er meckert immer über das Essen.", + "example_sentence_english": "He always grumbles about the food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7990 + }, + { + "word": "Mikro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mic (microphone)", + "romanization": "Mikro", + "example_sentence_native": "Gib mir mal das Mikro.", + "example_sentence_english": "Hand me the mic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7991 + }, + { + "word": "Mikrofon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "microphone", + "romanization": "Mikrofon", + "example_sentence_native": "Das Mikrofon ist kaputt.", + "example_sentence_english": "The microphone is broken.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7992 + }, + { + "word": "minder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "less;inferior", + "romanization": "minder", + "example_sentence_native": "Das ist von minderem Wert.", + "example_sentence_english": "That is of inferior value.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7993 + }, + { + "word": "montieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assemble;to mount;to install", + "romanization": "montieren", + "example_sentence_native": "Wir müssen die Möbel montieren.", + "example_sentence_english": "We have to assemble the furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 7995 + }, + { + "word": "Multi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multi-", + "romanization": "Multi", + "example_sentence_native": "Das ist ein Multi-Funktionsgerät.", + "example_sentence_english": "This is a multi-function device.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 7996 + }, + { + "word": "Nationalsozialist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "National Socialist;Nazi", + "romanization": "Nationalsozialist", + "example_sentence_native": "Er war ein Nationalsozialist.", + "example_sentence_english": "He was a National Socialist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 7998 + }, + { + "word": "Pep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pep;vigor", + "romanization": "Pep", + "example_sentence_native": "Er hat viel Pep in seiner Arbeit.", + "example_sentence_english": "He has a lot of pep in his work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8002 + }, + { + "word": "Pin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "PIN;pin", + "romanization": "Pin", + "example_sentence_native": "Bitte geben Sie Ihren Pin ein.", + "example_sentence_english": "Please enter your PIN.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8004 + }, + { + "word": "Pärchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "couple", + "romanization": "Pärchen", + "example_sentence_native": "Ein süßes Pärchen spazierte im Park.", + "example_sentence_english": "A cute couple walked in the park.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8006 + }, + { + "word": "random", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "random", + "romanization": "random", + "example_sentence_native": "Das ist eine random Auswahl.", + "example_sentence_english": "That is a random selection.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8009 + }, + { + "word": "rauskommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come out;to get out", + "romanization": "rauskommen", + "example_sentence_native": "Wann wird das neue Buch rauskommen?", + "example_sentence_english": "When will the new book come out?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8010 + }, + { + "word": "Retter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescuer;savior", + "romanization": "Retter", + "example_sentence_native": "Der Retter zog die Person aus dem Wasser.", + "example_sentence_english": "The rescuer pulled the person out of the water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8011 + }, + { + "word": "Sauce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauce", + "romanization": "Sauce", + "example_sentence_native": "Ich mag Nudeln mit Tomaten-Sauce.", + "example_sentence_english": "I like pasta with tomato sauce.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8014 + }, + { + "word": "Schal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scarf", + "romanization": "Schal", + "example_sentence_native": "Im Winter trage ich immer einen warmen Schal.", + "example_sentence_english": "In winter, I always wear a warm scarf.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8015 + }, + { + "word": "Season", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "season", + "romanization": "Season", + "example_sentence_native": "Die neue Season der Serie beginnt bald.", + "example_sentence_english": "The new season of the series starts soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8017 + }, + { + "word": "Self", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self", + "romanization": "Self", + "example_sentence_native": "Das Konzept des Self ist komplex.", + "example_sentence_english": "The concept of the self is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8018 + }, + { + "word": "Senf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mustard", + "romanization": "Senf", + "example_sentence_native": "Ich esse gerne Würstchen mit Senf.", + "example_sentence_english": "I like to eat sausages with mustard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8019 + }, + { + "word": "Sensor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensor", + "romanization": "Sensor", + "example_sentence_native": "Der Sensor misst die Temperatur.", + "example_sentence_english": "The sensor measures the temperature.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8020 + }, + { + "word": "sogleich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediately;at once", + "romanization": "sogleich", + "example_sentence_native": "Er kam sogleich nach Hause.", + "example_sentence_english": "He came home immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8022 + }, + { + "word": "Soundtrack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soundtrack", + "romanization": "Soundtrack", + "example_sentence_native": "Der Soundtrack des Films ist wunderschön.", + "example_sentence_english": "The soundtrack of the film is beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8023 + }, + { + "word": "stammend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originating;stemming from", + "romanization": "stammend", + "example_sentence_native": "Die aus dieser Region stammenden Weine sind sehr gut.", + "example_sentence_english": "The wines originating from this region are very good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8024 + }, + { + "word": "Strafrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal law", + "romanization": "Strafrecht", + "example_sentence_native": "Er studiert Strafrecht an der Universität.", + "example_sentence_english": "He studies criminal law at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8025 + }, + { + "word": "Säure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acid", + "romanization": "Säure", + "example_sentence_native": "Zitronen enthalten viel Säure.", + "example_sentence_english": "Lemons contain a lot of acid.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8026 + }, + { + "word": "Torte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cake;torte", + "romanization": "Torte", + "example_sentence_native": "Sie hat eine leckere Schokoladentorte gebacken.", + "example_sentence_english": "She baked a delicious chocolate cake.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8027 + }, + { + "word": "Umgestaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redesign;restructuring;transformation", + "romanization": "Umgestaltung", + "example_sentence_native": "Die Umgestaltung des Parks dauerte ein Jahr.", + "example_sentence_english": "The redesign of the park took one year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8028 + }, + { + "word": "Unwetter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "severe weather;storm", + "romanization": "Unwetter", + "example_sentence_native": "Das Unwetter verursachte große Schäden.", + "example_sentence_english": "The severe weather caused great damage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8029 + }, + { + "word": "Verb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verb", + "romanization": "Verb", + "example_sentence_native": "Ein Verb beschreibt eine Handlung.", + "example_sentence_english": "A verb describes an action.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8031 + }, + { + "word": "verbauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to block;to obstruct;to build in (incorrectly)", + "romanization": "verbauen", + "example_sentence_native": "Sie haben das Fenster verbaut.", + "example_sentence_english": "They built in the window incorrectly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8032 + }, + { + "word": "verdecken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cover;to conceal", + "romanization": "verdecken", + "example_sentence_native": "Sie versuchte, den Fleck zu verdecken.", + "example_sentence_english": "She tried to cover the stain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8033 + }, + { + "word": "Verwandtschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relatives;kinship", + "romanization": "Verwandtschaft", + "example_sentence_native": "Meine ganze Verwandtschaft kommt zu Weihnachten.", + "example_sentence_english": "All my relatives are coming for Christmas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8034 + }, + { + "word": "Vetter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cousin (male)", + "romanization": "Vetter", + "example_sentence_native": "Mein Vetter lebt in Berlin.", + "example_sentence_english": "My cousin lives in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8035 + }, + { + "word": "Weltraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "space (outer space)", + "romanization": "Weltraum", + "example_sentence_native": "Der Astronaut flog in den Weltraum.", + "example_sentence_english": "The astronaut flew into space.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8040 + }, + { + "word": "widerlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refute;to disprove", + "romanization": "widerlegen", + "example_sentence_native": "Er konnte die Behauptung nicht widerlegen.", + "example_sentence_english": "He could not refute the claim.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8041 + }, + { + "word": "Wächter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guard;warden", + "romanization": "Wächter", + "example_sentence_native": "Der Wächter stand vor dem Tor.", + "example_sentence_english": "The guard stood in front of the gate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8042 + }, + { + "word": "Würfel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dice;cube", + "romanization": "Würfel", + "example_sentence_native": "Wir spielten mit einem Würfel.", + "example_sentence_english": "We played with a die.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8043 + }, + { + "word": "Zombie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zombie", + "romanization": "Zombie", + "example_sentence_native": "Im Film gab es viele Zombies.", + "example_sentence_english": "There were many zombies in the movie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8044 + }, + { + "word": "zulegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gain (weight);to add;to increase", + "romanization": "zulegen", + "example_sentence_native": "Er hat im Urlaub etwas zugenommen.", + "example_sentence_english": "He gained some weight on vacation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8045 + }, + { + "word": "zurückgeben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give back;to return", + "romanization": "zurückgeben", + "example_sentence_native": "Bitte gib mir das Buch zurück.", + "example_sentence_english": "Please give me the book back.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8046 + }, + { + "word": "zügig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swift;prompt;rapid", + "romanization": "zügig", + "example_sentence_native": "Die Arbeit ging zügig voran.", + "example_sentence_english": "The work progressed swiftly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8047 + }, + { + "word": "ablenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distract;to divert", + "romanization": "ablenken", + "example_sentence_native": "Das laute Geräusch lenkte mich ab.", + "example_sentence_english": "The loud noise distracted me.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "lenken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8048 + }, + { + "word": "Abrechnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billing;settlement;statement", + "romanization": "Abrechnung", + "example_sentence_native": "Ich muss die monatliche Abrechnung prüfen.", + "example_sentence_english": "I need to check the monthly statement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8049 + }, + { + "word": "alltäglich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "everyday;commonplace", + "romanization": "alltäglich", + "example_sentence_native": "Das ist ein alltägliches Problem.", + "example_sentence_english": "That is an everyday problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8053 + }, + { + "word": "Angesicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "face;countenance", + "romanization": "Angesicht", + "example_sentence_native": "Im Angesicht der Gefahr blieb er ruhig.", + "example_sentence_english": "In the face of danger, he remained calm.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8054 + }, + { + "word": "anständig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decent;respectable;proper", + "romanization": "anständig", + "example_sentence_native": "Er ist ein sehr anständiger Mensch.", + "example_sentence_english": "He is a very decent person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8055 + }, + { + "word": "ausnutzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exploit;to take advantage of", + "romanization": "ausnutzen", + "example_sentence_native": "Er versucht, die Situation auszunutzen.", + "example_sentence_english": "He tries to exploit the situation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "nutzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8057 + }, + { + "word": "belassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave (as is);to let remain", + "romanization": "belassen", + "example_sentence_native": "Wir sollten die Dinge so belassen, wie sie sind.", + "example_sentence_english": "We should leave things as they are.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8061 + }, + { + "word": "belgisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Belgian", + "romanization": "belgisch", + "example_sentence_native": "Er isst gerne belgische Waffeln.", + "example_sentence_english": "He likes to eat Belgian waffles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8062 + }, + { + "word": "Bemerkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remark;comment", + "romanization": "Bemerkung", + "example_sentence_native": "Seine Bemerkung war sehr hilfreich.", + "example_sentence_english": "His remark was very helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8063 + }, + { + "word": "Boxer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxer (person or dog breed)", + "romanization": "Boxer", + "example_sentence_native": "Der Boxer trainiert jeden Tag hart.", + "example_sentence_english": "The boxer trains hard every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8066 + }, + { + "word": "brasilianisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Brazilian", + "romanization": "brasilianisch", + "example_sentence_native": "Sie spricht brasilianisches Portugiesisch.", + "example_sentence_english": "She speaks Brazilian Portuguese.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8067 + }, + { + "word": "Creme", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream", + "romanization": "Creme", + "example_sentence_native": "Ich brauche eine feuchtigkeitsspendende Creme für mein Gesicht.", + "example_sentence_english": "I need a moisturizing cream for my face.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8071 + }, + { + "word": "Desktop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desktop", + "romanization": "Desktop", + "example_sentence_native": "Mein Desktop ist voller Icons.", + "example_sentence_english": "My desktop is full of icons.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8074 + }, + { + "word": "dichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to write poetry;to seal", + "romanization": "dichten", + "example_sentence_native": "Er kann sehr schöne Gedichte dichten.", + "example_sentence_english": "He can write very beautiful poems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8075 + }, + { + "word": "Eid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oath", + "romanization": "Eid", + "example_sentence_native": "Er hat einen Eid auf die Verfassung geleistet.", + "example_sentence_english": "He took an oath to the constitution.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8078 + }, + { + "word": "eigenständig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independent;autonomous", + "romanization": "eigenständig", + "example_sentence_native": "Sie arbeitet sehr eigenständig an ihren Projekten.", + "example_sentence_english": "She works very independently on her projects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8079 + }, + { + "word": "einfügen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insert;to paste", + "romanization": "einfügen", + "example_sentence_native": "Sie müssen das Bild in das Dokument einfügen.", + "example_sentence_english": "You need to insert the image into the document.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "fügen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8080 + }, + { + "word": "Erdgas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "natural gas", + "romanization": "Erdgas", + "example_sentence_native": "Erdgas ist eine wichtige Energiequelle.", + "example_sentence_english": "Natural gas is an important energy source.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8082 + }, + { + "word": "ernten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to harvest;to reap", + "romanization": "ernten", + "example_sentence_native": "Die Bauern ernten das Getreide im Herbst.", + "example_sentence_english": "The farmers harvest the grain in autumn.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8083 + }, + { + "word": "erschliessen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to open up;to develop;to deduce", + "romanization": "erschliessen", + "example_sentence_native": "Sie wollen neue Märkte erschliessen.", + "example_sentence_english": "They want to open up new markets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8084 + }, + { + "word": "Erschliessung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "development;opening up;access", + "romanization": "Erschliessung", + "example_sentence_native": "Die Erschliessung neuer Gebiete ist geplant.", + "example_sentence_english": "The development of new areas is planned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8085 + }, + { + "word": "erwachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to awaken;to wake up", + "romanization": "erwachen", + "example_sentence_native": "Erwachen Sie sanft aus dem Schlaf.", + "example_sentence_english": "Wake up gently from sleep.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8086 + }, + { + "word": "Freigabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "release;approval;clearance", + "romanization": "Freigabe", + "example_sentence_native": "Die Freigabe des Dokuments erfolgte heute.", + "example_sentence_english": "The release of the document took place today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8088 + }, + { + "word": "Freilassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "release (from captivity);liberation", + "romanization": "Freilassung", + "example_sentence_native": "Die Freilassung der Geiseln wurde gefordert.", + "example_sentence_english": "The release of the hostages was demanded.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8089 + }, + { + "word": "Gasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alley;lane", + "romanization": "Gasse", + "example_sentence_native": "Sie gingen durch eine enge Gasse.", + "example_sentence_english": "They walked through a narrow alley.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8091 + }, + { + "word": "sichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sight;to view;to sort through", + "romanization": "sichten", + "example_sentence_native": "Sie müssen die Dokumente sichten.", + "example_sentence_english": "You need to sort through the documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8094 + }, + { + "word": "Gier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greed;avarice", + "romanization": "Gier", + "example_sentence_native": "Seine Gier kannte keine Grenzen.", + "example_sentence_english": "His greed knew no bounds.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8096 + }, + { + "word": "hybrid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hybrid", + "romanization": "hybrid", + "example_sentence_native": "Das ist ein Hybridfahrzeug.", + "example_sentence_english": "That is a hybrid vehicle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8103 + }, + { + "word": "Inder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Indian (person)", + "romanization": "Inder", + "example_sentence_native": "Er ist ein Inder.", + "example_sentence_english": "He is an Indian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8104 + }, + { + "word": "Innenraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interior;inside space", + "romanization": "Innenraum", + "example_sentence_native": "Der Innenraum des Autos ist sehr geräumig.", + "example_sentence_english": "The interior of the car is very spacious.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8105 + }, + { + "word": "integriert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integrated", + "romanization": "integriert", + "example_sentence_native": "Das System ist gut integriert.", + "example_sentence_english": "The system is well integrated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8106 + }, + { + "word": "Kamin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fireplace;chimney", + "romanization": "Kamin", + "example_sentence_native": "Im Winter sitzen wir gerne vor dem Kamin.", + "example_sentence_english": "In winter, we like to sit in front of the fireplace.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8112 + }, + { + "word": "Kokain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cocaine", + "romanization": "Kokain", + "example_sentence_native": "Kokain ist eine illegale Droge.", + "example_sentence_english": "Cocaine is an illegal drug.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8114 + }, + { + "word": "Lack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacquer;varnish;paint", + "romanization": "Lack", + "example_sentence_native": "Der Lack des Autos glänzt.", + "example_sentence_english": "The car's paint shines.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8115 + }, + { + "word": "Lebensunterhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "livelihood;living expenses", + "romanization": "Lebensunterhalt", + "example_sentence_native": "Er verdient genug für seinen Lebensunterhalt.", + "example_sentence_english": "He earns enough for his livelihood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8116 + }, + { + "word": "Lok", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locomotive;engine (train)", + "romanization": "Lok", + "example_sentence_native": "Die Lok zieht den Zug.", + "example_sentence_english": "The locomotive pulls the train.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8119 + }, + { + "word": "Mittagspause", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lunch break", + "romanization": "Mittagspause", + "example_sentence_native": "Wir machen eine kurze Mittagspause.", + "example_sentence_english": "We are taking a short lunch break.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8123 + }, + { + "word": "nachgehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to follow up on;to pursue", + "romanization": "nachgehen", + "example_sentence_native": "Ich muss dieser Sache noch nachgehen.", + "example_sentence_english": "I still need to follow up on this matter.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8125 + }, + { + "word": "Naht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seam;suture", + "romanization": "Naht", + "example_sentence_native": "Die Naht an meiner Hose ist gerissen.", + "example_sentence_english": "The seam on my pants has ripped.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8126 + }, + { + "word": "niedlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cute;adorable", + "romanization": "niedlich", + "example_sentence_native": "Das Kätzchen ist sehr niedlich.", + "example_sentence_english": "The kitten is very cute.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8129 + }, + { + "word": "Novelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "novella;short novel", + "romanization": "Novelle", + "example_sentence_native": "Er hat eine interessante Novelle geschrieben.", + "example_sentence_english": "He wrote an interesting novella.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8130 + }, + { + "word": "Nuss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nut", + "romanization": "Nuss", + "example_sentence_native": "Ich esse gerne Nüsse.", + "example_sentence_english": "I like to eat nuts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8131 + }, + { + "word": "Orient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Orient;East", + "romanization": "Orient", + "example_sentence_native": "Der Orient hat eine reiche Geschichte.", + "example_sentence_english": "The Orient has a rich history.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8132 + }, + { + "word": "Platzierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placement;ranking", + "romanization": "Platzierung", + "example_sentence_native": "Seine Platzierung im Wettbewerb war sehr gut.", + "example_sentence_english": "His placement in the competition was very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8136 + }, + { + "word": "provozieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provoke", + "romanization": "provozieren", + "example_sentence_native": "Du solltest ihn nicht provozieren.", + "example_sentence_english": "You should not provoke him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8139 + }, + { + "word": "Quartett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quartet", + "romanization": "Quartett", + "example_sentence_native": "Das Quartett spielte wunderschöne Musik.", + "example_sentence_english": "The quartet played beautiful music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8140 + }, + { + "word": "Race", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "race", + "romanization": "Race", + "example_sentence_native": "Die Race war sehr spannend bis zum Schluss.", + "example_sentence_english": "The race was very exciting until the end.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8142 + }, + { + "word": "radfahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cycle;to ride a bike", + "romanization": "radfahren", + "example_sentence_native": "Wir gehen am Wochenende radfahren.", + "example_sentence_english": "We are going cycling on the weekend.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rad", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8143 + }, + { + "word": "Rallye", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rally", + "romanization": "Rallye", + "example_sentence_native": "Die Rallye führte durch die Berge.", + "example_sentence_english": "The rally led through the mountains.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8144 + }, + { + "word": "Reportage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "report;documentary", + "romanization": "Reportage", + "example_sentence_native": "Die Reportage über das Thema war sehr informativ.", + "example_sentence_english": "The report on the topic was very informative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8145 + }, + { + "word": "Schlauch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hose;tube", + "romanization": "Schlauch", + "example_sentence_native": "Der Gartenschlauch ist kaputt.", + "example_sentence_english": "The garden hose is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8148 + }, + { + "word": "Schmutz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dirt;grime", + "romanization": "Schmutz", + "example_sentence_native": "Überall war Schmutz auf dem Boden.", + "example_sentence_english": "There was dirt everywhere on the floor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8149 + }, + { + "word": "Schwager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brother-in-law", + "romanization": "Schwager", + "example_sentence_native": "Mein Schwager kommt uns nächste Woche besuchen.", + "example_sentence_english": "My brother-in-law is visiting us next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8150 + }, + { + "word": "schädlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmful;detrimental", + "romanization": "schädlich", + "example_sentence_native": "Rauchen ist schädlich für die Gesundheit.", + "example_sentence_english": "Smoking is harmful to health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8151 + }, + { + "word": "Schöpfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creator;maker", + "romanization": "Schöpfer", + "example_sentence_native": "Er ist der Schöpfer dieser wunderbaren Kunstwerke.", + "example_sentence_english": "He is the creator of these wonderful artworks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8152 + }, + { + "word": "Screenshot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screenshot", + "romanization": "Screenshot", + "example_sentence_native": "Kannst du mir einen Screenshot davon schicken?", + "example_sentence_english": "Can you send me a screenshot of that?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8153 + }, + { + "word": "Sekt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sparkling wine", + "romanization": "Sekt", + "example_sentence_native": "Wir haben mit Sekt auf das neue Jahr angestoßen.", + "example_sentence_english": "We toasted the new year with sparkling wine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8154 + }, + { + "word": "Selbstbestimmung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-determination", + "romanization": "Selbstbestimmung", + "example_sentence_native": "Das Recht auf Selbstbestimmung ist fundamental.", + "example_sentence_english": "The right to self-determination is fundamental.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8155 + }, + { + "word": "Skulptur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sculpture", + "romanization": "Skulptur", + "example_sentence_native": "Die Skulptur im Park ist sehr beeindruckend.", + "example_sentence_english": "The sculpture in the park is very impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8157 + }, + { + "word": "Stadtwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal utility company", + "romanization": "Stadtwerk", + "example_sentence_native": "Die Stadtwerke sind für die Wasserversorgung zuständig.", + "example_sentence_english": "The municipal utility company is responsible for the water supply.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8159 + }, + { + "word": "Stückchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little piece;bit", + "romanization": "Stückchen", + "example_sentence_native": "Ich hätte gerne ein kleines Stückchen Kuchen.", + "example_sentence_english": "I would like a little piece of cake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8160 + }, + { + "word": "Sultan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sultan", + "romanization": "Sultan", + "example_sentence_native": "Der Sultan regierte über ein großes Reich.", + "example_sentence_english": "The sultan ruled over a large empire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8161 + }, + { + "word": "Taschenbuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paperback (book)", + "romanization": "Taschenbuch", + "example_sentence_native": "Ich habe ein interessantes Taschenbuch gelesen.", + "example_sentence_english": "I read an interesting paperback.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8163 + }, + { + "word": "Taxifahrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taxi driver", + "romanization": "Taxifahrer", + "example_sentence_native": "Der Taxifahrer brachte mich zum Flughafen.", + "example_sentence_english": "The taxi driver took me to the airport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8164 + }, + { + "word": "Technology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technology", + "romanization": "Technology", + "example_sentence_native": "Die Firma investiert viel in neue Technology.", + "example_sentence_english": "The company invests a lot in new technology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8165 + }, + { + "word": "Touch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touch (as in a touch screen or flair)", + "romanization": "Touch", + "example_sentence_native": "Das neue Smartphone hat einen empfindlichen Touchscreen.", + "example_sentence_english": "The new smartphone has a sensitive touchscreen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8167 + }, + { + "word": "Vagina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vagina", + "romanization": "Vagina", + "example_sentence_native": "Die Vagina ist ein Teil des weiblichen Fortpflanzungssystems.", + "example_sentence_english": "The vagina is part of the female reproductive system.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8170 + }, + { + "word": "Vergütung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remuneration;compensation", + "romanization": "Vergütung", + "example_sentence_native": "Die Vergütung für diese Arbeit ist sehr gut.", + "example_sentence_english": "The remuneration for this work is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8171 + }, + { + "word": "verkörpern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embody;to personify", + "romanization": "verkörpern", + "example_sentence_native": "Er verkörpert die Ideale seiner Generation.", + "example_sentence_english": "He embodies the ideals of his generation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8172 + }, + { + "word": "Vernetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "networking;interconnection", + "romanization": "Vernetzung", + "example_sentence_native": "Die Vernetzung von Computern ist heute Standard.", + "example_sentence_english": "The networking of computers is standard today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8173 + }, + { + "word": "Verräter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traitor", + "romanization": "Verräter", + "example_sentence_native": "Er wurde als Verräter an seinem Land angesehen.", + "example_sentence_english": "He was seen as a traitor to his country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8174 + }, + { + "word": "verzeihen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forgive;to pardon", + "romanization": "verzeihen", + "example_sentence_native": "Kannst du mir bitte verzeihen?", + "example_sentence_english": "Can you please forgive me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8175 + }, + { + "word": "Vip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "VIP (Very Important Person)", + "romanization": "Vip", + "example_sentence_native": "Es gab viele Vips auf der Veranstaltung.", + "example_sentence_english": "There were many VIPs at the event.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8176 + }, + { + "word": "Vorrang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priority;precedence", + "romanization": "Vorrang", + "example_sentence_native": "Sicherheit hat immer Vorrang.", + "example_sentence_english": "Safety always has priority.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8177 + }, + { + "word": "willkürlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitrary;random", + "romanization": "willkürlich", + "example_sentence_native": "Die Entscheidung war völlig willkürlich.", + "example_sentence_english": "The decision was completely arbitrary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8179 + }, + { + "word": "wünschenswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desirable", + "romanization": "wünschenswert", + "example_sentence_native": "Es wäre wünschenswert, wenn wir das Projekt pünktlich abschließen könnten.", + "example_sentence_english": "It would be desirable if we could complete the project on time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8180 + }, + { + "word": "Würstchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sausage (small)", + "romanization": "Würstchen", + "example_sentence_native": "Ich esse gerne Würstchen mit Senf.", + "example_sentence_english": "I like to eat sausages with mustard.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8181 + }, + { + "word": "Zauberer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magician", + "romanization": "Zauberer", + "example_sentence_native": "Der Zauberer zog ein Kaninchen aus dem Hut.", + "example_sentence_english": "The magician pulled a rabbit out of the hat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8182 + }, + { + "word": "zeitgenössisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemporary", + "romanization": "zeitgenössisch", + "example_sentence_native": "Sie studiert zeitgenössische Kunst.", + "example_sentence_english": "She studies contemporary art.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8183 + }, + { + "word": "ägyptisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Egyptian", + "romanization": "ägyptisch", + "example_sentence_native": "Wir haben ein ägyptisches Museum besucht.", + "example_sentence_english": "We visited an Egyptian museum.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8184 + }, + { + "word": "überdenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconsider", + "romanization": "überdenken", + "example_sentence_native": "Du solltest deine Entscheidung noch einmal überdenken.", + "example_sentence_english": "You should reconsider your decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8185 + }, + { + "word": "überfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run over", + "romanization": "überfahren", + "example_sentence_native": "Der Bus hat fast eine Katze überfahren.", + "example_sentence_english": "The bus almost ran over a cat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8186 + }, + { + "word": "Übergriff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transgression", + "romanization": "Übergriff", + "example_sentence_native": "Jeder Übergriff auf die Privatsphäre ist inakzeptabel.", + "example_sentence_english": "Any transgression of privacy is unacceptable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8187 + }, + { + "word": "Überlegenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superiority", + "romanization": "Überlegenheit", + "example_sentence_native": "Seine Überlegenheit im Schachspiel war offensichtlich.", + "example_sentence_english": "His superiority in chess was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8188 + }, + { + "word": "abweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reject", + "romanization": "abweisen", + "example_sentence_native": "Er musste das Angebot abweisen.", + "example_sentence_english": "He had to reject the offer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8189 + }, + { + "word": "Absprache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement", + "romanization": "Absprache", + "example_sentence_native": "Das war eine klare Absprache zwischen uns.", + "example_sentence_english": "That was a clear agreement between us.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8190 + }, + { + "word": "Abweichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deviation", + "romanization": "Abweichung", + "example_sentence_native": "Es gab eine geringfügige Abweichung von den ursprünglichen Plänen.", + "example_sentence_english": "There was a slight deviation from the original plans.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8191 + }, + { + "word": "Anatomie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anatomy", + "romanization": "Anatomie", + "example_sentence_native": "Er studiert menschliche Anatomie.", + "example_sentence_english": "He studies human anatomy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8194 + }, + { + "word": "anfühlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel (e.g.;how something feels)", + "romanization": "anfühlen", + "example_sentence_native": "Wie fühlt sich der Stoff an?", + "example_sentence_english": "How does the fabric feel?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fühlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8195 + }, + { + "word": "Archive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archives", + "romanization": "Archive", + "example_sentence_native": "Die alten Dokumente sind in den Archiven sicher.", + "example_sentence_english": "The old documents are safe in the archives.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8196 + }, + { + "word": "Arzneimittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medicine", + "romanization": "Arzneimittel", + "example_sentence_native": "Dieses Arzneimittel hilft gegen Kopfschmerzen.", + "example_sentence_english": "This medicine helps against headaches.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8197 + }, + { + "word": "Aue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meadow", + "romanization": "Aue", + "example_sentence_native": "Die Pferde grasen auf der grünen Aue.", + "example_sentence_english": "The horses graze on the green meadow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8198 + }, + { + "word": "aufhängen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hang up", + "romanization": "aufhängen", + "example_sentence_native": "Kannst du bitte die Wäsche aufhängen?", + "example_sentence_english": "Can you please hang up the laundry?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "hängen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8199 + }, + { + "word": "aufsteigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ascend;to rise", + "romanization": "aufsteigen", + "example_sentence_native": "Der Rauch steigt schnell auf.", + "example_sentence_english": "The smoke rises quickly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "steigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8200 + }, + { + "word": "aufzeigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show;to point out", + "romanization": "aufzeigen", + "example_sentence_native": "Er konnte die Probleme klar aufzeigen.", + "example_sentence_english": "He could clearly point out the problems.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "zeigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8201 + }, + { + "word": "Augenhöhe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eye level", + "romanization": "Augenhöhe", + "example_sentence_native": "Wir sprechen auf Augenhöhe miteinander.", + "example_sentence_english": "We speak to each other at eye level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8202 + }, + { + "word": "ausstrahlen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to broadcast;to radiate", + "romanization": "ausstrahlen", + "example_sentence_native": "Der Sender wird die Sendung morgen ausstrahlen.", + "example_sentence_english": "The station will broadcast the show tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "strahlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8203 + }, + { + "word": "Auslieferung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extradition;delivery", + "romanization": "Auslieferung", + "example_sentence_native": "Die Auslieferung des Pakets ist für morgen geplant.", + "example_sentence_english": "The delivery of the package is planned for tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8204 + }, + { + "word": "beabsichtigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intend;to plan", + "romanization": "beabsichtigen", + "example_sentence_native": "Wir beabsichtigen, das Projekt nächste Woche abzuschließen.", + "example_sentence_english": "We intend to complete the project next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8206 + }, + { + "word": "bedenklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questionable;worrying;concerning", + "romanization": "bedenklich", + "example_sentence_native": "Die Situation ist bedenklich.", + "example_sentence_english": "The situation is concerning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8207 + }, + { + "word": "Beef", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beef", + "romanization": "Beef", + "example_sentence_native": "Ich esse gerne Beef mit Gemüse.", + "example_sentence_english": "I like to eat beef with vegetables.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8208 + }, + { + "word": "begünstigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to favor;to promote;to facilitate", + "romanization": "begünstigen", + "example_sentence_native": "Diese Maßnahmen begünstigen das Wirtschaftswachstum.", + "example_sentence_english": "These measures promote economic growth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8209 + }, + { + "word": "bildend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educational;formative", + "romanization": "bildend", + "example_sentence_native": "Das ist eine sehr bildende Erfahrung.", + "example_sentence_english": "That is a very educational experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8210 + }, + { + "word": "Biografie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biography", + "romanization": "Biografie", + "example_sentence_native": "Ich lese gerade eine interessante Biografie.", + "example_sentence_english": "I am currently reading an interesting biography.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8211 + }, + { + "word": "brutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gross (before deductions)", + "romanization": "brutto", + "example_sentence_native": "Mein Bruttogehalt ist höher als mein Nettogehalt.", + "example_sentence_english": "My gross salary is higher than my net salary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8214 + }, + { + "word": "Delta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delta", + "romanization": "Delta", + "example_sentence_native": "Das Nil-Delta ist sehr fruchtbar.", + "example_sentence_english": "The Nile Delta is very fertile.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8216 + }, + { + "word": "Diagnostik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diagnostics", + "romanization": "Diagnostik", + "example_sentence_native": "Die Diagnostik der Krankheit ist komplex.", + "example_sentence_english": "The diagnostics of the disease are complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8218 + }, + { + "word": "dreckig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dirty", + "romanization": "dreckig", + "example_sentence_native": "Die Schuhe sind sehr dreckig.", + "example_sentence_english": "The shoes are very dirty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8219 + }, + { + "word": "Durchsetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enforcement;implementation", + "romanization": "Durchsetzung", + "example_sentence_native": "Die Durchsetzung des Gesetzes war schwierig.", + "example_sentence_english": "The enforcement of the law was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8220 + }, + { + "word": "Ehrlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honesty", + "romanization": "Ehrlichkeit", + "example_sentence_native": "Ehrlichkeit ist eine wichtige Tugend.", + "example_sentence_english": "Honesty is an important virtue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8222 + }, + { + "word": "Eifersucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jealousy", + "romanization": "Eifersucht", + "example_sentence_native": "Seine Eifersucht zerstörte die Beziehung.", + "example_sentence_english": "His jealousy destroyed the relationship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8223 + }, + { + "word": "Eile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "haste;rush", + "romanization": "Eile", + "example_sentence_native": "Wir müssen uns beeilen, wir sind in Eile.", + "example_sentence_english": "We have to hurry, we are in a rush.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8225 + }, + { + "word": "Einkunft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income;revenue", + "romanization": "Einkunft", + "example_sentence_native": "Seine Einkünfte sind gestiegen.", + "example_sentence_english": "His income has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8226 + }, + { + "word": "Einteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "division;classification;allocation", + "romanization": "Einteilung", + "example_sentence_native": "Die Einteilung der Aufgaben war klar.", + "example_sentence_english": "The division of tasks was clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8227 + }, + { + "word": "Entführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapping;abduction", + "romanization": "Entführung", + "example_sentence_native": "Die Polizei ermittelt wegen einer Entführung.", + "example_sentence_english": "The police are investigating a kidnapping.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8229 + }, + { + "word": "erhoben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raised;levied", + "romanization": "erhoben", + "example_sentence_native": "Es wurde eine Anklage erhoben.", + "example_sentence_english": "An accusation was raised.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8230 + }, + { + "word": "erkranken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall ill;to become sick", + "romanization": "erkranken", + "example_sentence_native": "Er ist an einer Grippe erkrankt.", + "example_sentence_english": "He fell ill with the flu.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8231 + }, + { + "word": "Ernennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appointment;nomination", + "romanization": "Ernennung", + "example_sentence_native": "Seine Ernennung zum Direktor wurde bekannt gegeben.", + "example_sentence_english": "His appointment as director was announced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8232 + }, + { + "word": "Ertrag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yield;profit;return", + "romanization": "Ertrag", + "example_sentence_native": "Der Ertrag der Ernte war gut.", + "example_sentence_english": "The yield of the harvest was good.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8233 + }, + { + "word": "Eskalation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "escalation", + "romanization": "Eskalation", + "example_sentence_native": "Wir müssen eine Eskalation des Konflikts vermeiden.", + "example_sentence_english": "We must avoid an escalation of the conflict.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8234 + }, + { + "word": "Expansion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expansion", + "romanization": "Expansion", + "example_sentence_native": "Die Firma plant eine Expansion in neue Märkte.", + "example_sentence_english": "The company plans an expansion into new markets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8235 + }, + { + "word": "feierlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemn;ceremonial;festive", + "romanization": "feierlich", + "example_sentence_native": "Die Zeremonie war sehr feierlich.", + "example_sentence_english": "The ceremony was very solemn.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8236 + }, + { + "word": "Freiheitsstrafe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prison sentence;custodial sentence", + "romanization": "Freiheitsstrafe", + "example_sentence_native": "Er wurde zu einer Freiheitsstrafe verurteilt.", + "example_sentence_english": "He was sentenced to a prison sentence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8237 + }, + { + "word": "fünfzig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifty", + "romanization": "fünfzig", + "example_sentence_native": "Ich bin fünfzig Jahre alt.", + "example_sentence_english": "I am fifty years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 8238 + }, + { + "word": "kleiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dress;to clothe", + "romanization": "kleiden", + "example_sentence_native": "Sie kleidet sich immer elegant.", + "example_sentence_english": "She always dresses elegantly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8239 + }, + { + "word": "Geständnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confession", + "romanization": "Geständnis", + "example_sentence_native": "Er legte ein Geständnis ab.", + "example_sentence_english": "He made a confession.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8240 + }, + { + "word": "würdigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appreciate", + "romanization": "würdigen", + "example_sentence_native": "Wir sollten seine Bemühungen würdigen.", + "example_sentence_english": "We should appreciate his efforts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8241 + }, + { + "word": "glänzend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brilliant", + "romanization": "glänzend", + "example_sentence_native": "Sie hat eine glänzende Leistung gezeigt.", + "example_sentence_english": "She showed a brilliant performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8243 + }, + { + "word": "Grössenordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "order of magnitude", + "romanization": "Grössenordnung", + "example_sentence_native": "Die Kosten liegen in dieser Grössenordnung.", + "example_sentence_english": "The costs are in this order of magnitude.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8245 + }, + { + "word": "Heroin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heroin", + "romanization": "Heroin", + "example_sentence_native": "Heroin ist eine gefährliche Droge.", + "example_sentence_english": "Heroin is a dangerous drug.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8249 + }, + { + "word": "hinrichten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to execute (a person)", + "romanization": "hinrichten", + "example_sentence_native": "Der König ließ den Verräter hinrichten.", + "example_sentence_english": "The king had the traitor executed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "richten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8250 + }, + { + "word": "hinreichend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sufficient", + "romanization": "hinreichend", + "example_sentence_native": "Die Beweise waren nicht hinreichend.", + "example_sentence_english": "The evidence was not sufficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8251 + }, + { + "word": "Hinrichtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution (of a person)", + "romanization": "Hinrichtung", + "example_sentence_native": "Die Hinrichtung fand öffentlich statt.", + "example_sentence_english": "The execution took place publicly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8252 + }, + { + "word": "Hochwasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flood", + "romanization": "Hochwasser", + "example_sentence_native": "Das Hochwasser verursachte große Schäden.", + "example_sentence_english": "The flood caused great damage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8253 + }, + { + "word": "Hockey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hockey", + "romanization": "Hockey", + "example_sentence_native": "Er spielt gerne Hockey.", + "example_sentence_english": "He likes to play hockey.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8254 + }, + { + "word": "Hospital", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospital", + "romanization": "Hospital", + "example_sentence_native": "Er wurde ins Hospital gebracht.", + "example_sentence_english": "He was brought to the hospital.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8257 + }, + { + "word": "Import", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "import", + "romanization": "Import", + "example_sentence_native": "Der Import von Waren ist gestiegen.", + "example_sentence_english": "The import of goods has increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8259 + }, + { + "word": "irritieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to irritate;to confuse", + "romanization": "irritieren", + "example_sentence_native": "Seine plötzliche Frage irritierte mich.", + "example_sentence_english": "His sudden question irritated me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8262 + }, + { + "word": "Jahresende", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "year-end", + "romanization": "Jahresende", + "example_sentence_native": "Am Jahresende gibt es immer eine große Feier.", + "example_sentence_english": "At the year-end, there is always a big celebration.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8263 + }, + { + "word": "jucken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to itch", + "romanization": "jucken", + "example_sentence_native": "Mein Arm juckt.", + "example_sentence_english": "My arm itches.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8264 + }, + { + "word": "Kandidatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candidacy", + "romanization": "Kandidatur", + "example_sentence_native": "Sie hat ihre Kandidatur für das Amt bekannt gegeben.", + "example_sentence_english": "She announced her candidacy for the office.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8266 + }, + { + "word": "Kennzeichnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labeling;marking;identification", + "romanization": "Kennzeichnung", + "example_sentence_native": "Die Kennzeichnung der Produkte ist gesetzlich vorgeschrieben.", + "example_sentence_english": "The labeling of the products is legally required.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8267 + }, + { + "word": "Klartext", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plain text;clear language", + "romanization": "Klartext", + "example_sentence_native": "Er sprach Klartext und sagte, was er dachte.", + "example_sentence_english": "He spoke plain text and said what he thought.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8268 + }, + { + "word": "kollektiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collective", + "romanization": "kollektiv", + "example_sentence_native": "Das ist eine kollektive Entscheidung.", + "example_sentence_english": "This is a collective decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8269 + }, + { + "word": "Kondition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condition;fitness", + "romanization": "Kondition", + "example_sentence_native": "Er hat eine gute Kondition für den Marathon.", + "example_sentence_english": "He has good fitness for the marathon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8270 + }, + { + "word": "Koordination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordination", + "romanization": "Koordination", + "example_sentence_native": "Die Koordination des Projekts war ausgezeichnet.", + "example_sentence_english": "The coordination of the project was excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8271 + }, + { + "word": "kostenfrei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free of charge", + "romanization": "kostenfrei", + "example_sentence_native": "Der Eintritt ist kostenfrei.", + "example_sentence_english": "Admission is free of charge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8272 + }, + { + "word": "Kraut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "herb;cabbage;weed", + "romanization": "Kraut", + "example_sentence_native": "Ich habe frisches Kraut für die Suppe gekauft.", + "example_sentence_english": "I bought fresh herb for the soup.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8273 + }, + { + "word": "Lebenszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifetime", + "romanization": "Lebenszeit", + "example_sentence_native": "Er widmete seine ganze Lebenszeit der Forschung.", + "example_sentence_english": "He dedicated his entire lifetime to research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8276 + }, + { + "word": "Lieferant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supplier;vendor", + "romanization": "Lieferant", + "example_sentence_native": "Wir suchen einen neuen Lieferanten für unsere Produkte.", + "example_sentence_english": "We are looking for a new supplier for our products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8277 + }, + { + "word": "Mehrwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "added value", + "romanization": "Mehrwert", + "example_sentence_native": "Dieses Produkt bietet einen echten Mehrwert für den Kunden.", + "example_sentence_english": "This product offers real added value for the customer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8284 + }, + { + "word": "Meme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meme", + "romanization": "Meme", + "example_sentence_native": "Ich habe ein lustiges Meme im Internet gesehen.", + "example_sentence_english": "I saw a funny meme on the internet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8285 + }, + { + "word": "Mentalität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mentality", + "romanization": "Mentalität", + "example_sentence_native": "Die Mentalität der Menschen hier ist sehr offen.", + "example_sentence_english": "The mentality of the people here is very open.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8286 + }, + { + "word": "Mitbürger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fellow citizen", + "romanization": "Mitbürger", + "example_sentence_native": "Wir sollten uns um unsere Mitbürger kümmern.", + "example_sentence_english": "We should take care of our fellow citizens.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8288 + }, + { + "word": "Nichte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "niece", + "romanization": "Nichte", + "example_sentence_native": "Meine Nichte besucht uns am Wochenende.", + "example_sentence_english": "My niece is visiting us on the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8292 + }, + { + "word": "nutzbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usable", + "romanization": "nutzbar", + "example_sentence_native": "Diese Energiequelle ist nutzbar für unser Haus.", + "example_sentence_english": "This energy source is usable for our house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8294 + }, + { + "word": "operativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operative", + "romanization": "operativ", + "example_sentence_native": "Die neue Strategie ist jetzt operativ.", + "example_sentence_english": "The new strategy is now operational.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8295 + }, + { + "word": "Passant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passerby", + "romanization": "Passant", + "example_sentence_native": "Ein Passant fragte nach dem Weg.", + "example_sentence_english": "A passerby asked for directions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8297 + }, + { + "word": "pauschal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lump-sum", + "romanization": "pauschal", + "example_sentence_native": "Der Preis ist pauschal und beinhaltet alle Kosten.", + "example_sentence_english": "The price is a lump-sum and includes all costs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8298 + }, + { + "word": "Pfarrkirche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parish church", + "romanization": "Pfarrkirche", + "example_sentence_native": "Die alte Pfarrkirche steht im Zentrum des Dorfes.", + "example_sentence_english": "The old parish church stands in the center of the village.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8299 + }, + { + "word": "Piano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piano", + "romanization": "Piano", + "example_sentence_native": "Sie spielt gerne Piano.", + "example_sentence_english": "She likes to play the piano.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8300 + }, + { + "word": "Range", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "range", + "romanization": "Range", + "example_sentence_native": "Die Daten liegen außerhalb der erwarteten Range.", + "example_sentence_english": "The data is outside the expected range.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8301 + }, + { + "word": "Ruine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruin", + "romanization": "Ruine", + "example_sentence_native": "Die alte Burg ist jetzt eine Ruine.", + "example_sentence_english": "The old castle is now a ruin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8304 + }, + { + "word": "Scham", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shame;embarrassment", + "romanization": "Scham", + "example_sentence_native": "Er empfand tiefe Scham über sein Verhalten.", + "example_sentence_english": "He felt deep shame about his behavior.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8305 + }, + { + "word": "schmutzig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dirty", + "romanization": "schmutzig", + "example_sentence_native": "Die Kleidung ist schmutzig.", + "example_sentence_english": "The clothes are dirty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8306 + }, + { + "word": "schonen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spare;to protect", + "romanization": "schonen", + "example_sentence_native": "Du solltest deine Augen schonen.", + "example_sentence_english": "You should spare your eyes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8309 + }, + { + "word": "Senkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction;lowering", + "romanization": "Senkung", + "example_sentence_native": "Es gab eine Senkung der Preise.", + "example_sentence_english": "There was a reduction in prices.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8310 + }, + { + "word": "shoppen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shop", + "romanization": "shoppen", + "example_sentence_native": "Wir gehen am Wochenende shoppen.", + "example_sentence_english": "We are going shopping on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8312 + }, + { + "word": "Slam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slam (e.g.;poetry slam)", + "romanization": "Slam", + "example_sentence_native": "Sie nimmt an einem Poetry Slam teil.", + "example_sentence_english": "She is participating in a poetry slam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8313 + }, + { + "word": "Slogan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan", + "romanization": "Slogan", + "example_sentence_native": "Der Slogan der Firma ist sehr einprägsam.", + "example_sentence_english": "The company's slogan is very catchy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8314 + }, + { + "word": "Spekulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculation", + "romanization": "Spekulation", + "example_sentence_native": "Seine Spekulationen erwiesen sich als falsch.", + "example_sentence_english": "His speculations turned out to be wrong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8315 + }, + { + "word": "Sperrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closure;blocking", + "romanization": "Sperrung", + "example_sentence_native": "Wegen Bauarbeiten gibt es eine Sperrung der Straße.", + "example_sentence_english": "Due to construction work, there is a closure of the road.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8316 + }, + { + "word": "Sprachgebrauch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "language usage", + "romanization": "Sprachgebrauch", + "example_sentence_native": "Der Sprachgebrauch hat sich im Laufe der Zeit verändert.", + "example_sentence_english": "Language usage has changed over time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8317 + }, + { + "word": "strikt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strict;stringent", + "romanization": "strikt", + "example_sentence_native": "Die Regeln sind sehr strikt.", + "example_sentence_english": "The rules are very strict.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8319 + }, + { + "word": "Tageslicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daylight", + "romanization": "Tageslicht", + "example_sentence_native": "Das Tageslicht ist am Morgen am schönsten.", + "example_sentence_english": "The daylight is most beautiful in the morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8320 + }, + { + "word": "Taste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "button;key", + "romanization": "Taste", + "example_sentence_native": "Drücken Sie die Taste, um zu starten.", + "example_sentence_english": "Press the button to start.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8321 + }, + { + "word": "Tierheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animal shelter", + "romanization": "Tierheim", + "example_sentence_native": "Wir haben unseren Hund aus dem Tierheim adoptiert.", + "example_sentence_english": "We adopted our dog from the animal shelter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8322 + }, + { + "word": "Tischtennis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "table tennis;ping-pong", + "romanization": "Tischtennis", + "example_sentence_native": "Spielen wir eine Runde Tischtennis?", + "example_sentence_english": "Shall we play a round of table tennis?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8323 + }, + { + "word": "Treff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meeting point;hangout", + "romanization": "Treff", + "example_sentence_native": "Unser Treff ist um sieben Uhr am Bahnhof.", + "example_sentence_english": "Our meeting point is at seven o'clock at the train station.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8324 + }, + { + "word": "unauffällig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconspicuous;unnoticeable", + "romanization": "unauffällig", + "example_sentence_native": "Er versuchte, unauffällig zu bleiben.", + "example_sentence_english": "He tried to remain inconspicuous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8325 + }, + { + "word": "ungemein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immensely;tremendously", + "romanization": "ungemein", + "example_sentence_native": "Das war ungemein schwierig.", + "example_sentence_english": "That was immensely difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8326 + }, + { + "word": "Verbleib", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whereabouts;remaining", + "romanization": "Verbleib", + "example_sentence_native": "Der Verbleib des gestohlenen Gemäldes ist unbekannt.", + "example_sentence_english": "The whereabouts of the stolen painting are unknown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8327 + }, + { + "word": "Verpflegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catering;provisions;meals", + "romanization": "Verpflegung", + "example_sentence_native": "Die Verpflegung während der Reise war ausgezeichnet.", + "example_sentence_english": "The catering during the trip was excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8328 + }, + { + "word": "verprügeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beat up;to thrash", + "romanization": "verprügeln", + "example_sentence_native": "Er wurde auf der Straße verprügelt.", + "example_sentence_english": "He was beaten up on the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8329 + }, + { + "word": "vorlesen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to read aloud", + "romanization": "vorlesen", + "example_sentence_native": "Kannst du mir eine Geschichte vorlesen?", + "example_sentence_english": "Can you read a story aloud to me?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "lesen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8331 + }, + { + "word": "widerstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resist;to withstand", + "romanization": "widerstehen", + "example_sentence_native": "Er konnte der Versuchung nicht widerstehen.", + "example_sentence_english": "He could not resist the temptation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8332 + }, + { + "word": "württembergisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Württembergian (relating to Württemberg)", + "romanization": "württembergisch", + "example_sentence_native": "Er spricht einen württembergischen Dialekt.", + "example_sentence_english": "He speaks a Württembergian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8335 + }, + { + "word": "Zeh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toe", + "romanization": "Zeh", + "example_sentence_native": "Ich habe mir den großen Zeh gestoßen.", + "example_sentence_english": "I stubbed my big toe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8336 + }, + { + "word": "zeugen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to testify;to bear witness", + "romanization": "zeugen", + "example_sentence_native": "Er musste vor Gericht zeugen.", + "example_sentence_english": "He had to testify in court.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8337 + }, + { + "word": "Zusammenspiel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interplay;interaction", + "romanization": "Zusammenspiel", + "example_sentence_native": "Das Zusammenspiel der Musiker war perfekt.", + "example_sentence_english": "The interplay of the musicians was perfect.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8338 + }, + { + "word": "Übergewicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overweight;excess weight", + "romanization": "Übergewicht", + "example_sentence_native": "Übergewicht kann zu Gesundheitsproblemen führen.", + "example_sentence_english": "Overweight can lead to health problems.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8340 + }, + { + "word": "überliefern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hand down;to transmit", + "romanization": "überliefern", + "example_sentence_native": "Die Legende wurde von Generation zu Generation überliefert.", + "example_sentence_english": "The legend was handed down from generation to generation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8341 + }, + { + "word": "überqueren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cross", + "romanization": "überqueren", + "example_sentence_native": "Wir müssen die Straße überqueren.", + "example_sentence_english": "We have to cross the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8342 + }, + { + "word": "abgehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depart;to come off", + "romanization": "abgehen", + "example_sentence_native": "Der Zug wird gleich abgehen.", + "example_sentence_english": "The train will depart soon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8343 + }, + { + "word": "Afrikaner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "African (male)", + "romanization": "Afrikaner", + "example_sentence_native": "Er ist ein Afrikaner.", + "example_sentence_english": "He is an African.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8345 + }, + { + "word": "Andenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "souvenir;memento", + "romanization": "Andenken", + "example_sentence_native": "Ich habe ein schönes Andenken aus dem Urlaub mitgebracht.", + "example_sentence_english": "I brought a nice souvenir from the vacation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8346 + }, + { + "word": "anderweitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "otherwise;elsewhere", + "romanization": "anderweitig", + "example_sentence_native": "Er war anderweitig beschäftigt.", + "example_sentence_english": "He was busy otherwise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8347 + }, + { + "word": "anfänglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initial;at first", + "romanization": "anfänglich", + "example_sentence_native": "Die anfänglichen Schwierigkeiten waren groß.", + "example_sentence_english": "The initial difficulties were great.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8348 + }, + { + "word": "anfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drive up to;to start (a vehicle)", + "romanization": "anfahren", + "example_sentence_native": "Der Bus fuhr an die Haltestelle an.", + "example_sentence_english": "The bus drove up to the stop.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8349 + }, + { + "word": "angeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fish;to angle", + "romanization": "angeln", + "example_sentence_native": "Er geht gerne am Wochenende angeln.", + "example_sentence_english": "He likes to go fishing on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8350 + }, + { + "word": "Ansage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announcement;message", + "romanization": "Ansage", + "example_sentence_native": "Die Ansage im Zug war undeutlich.", + "example_sentence_english": "The announcement on the train was unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8351 + }, + { + "word": "Anstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employment;position", + "romanization": "Anstellung", + "example_sentence_native": "Er hat eine neue Anstellung gefunden.", + "example_sentence_english": "He found a new employment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8353 + }, + { + "word": "Arbeitskraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workforce;labor;employee", + "romanization": "Arbeitskraft", + "example_sentence_native": "Die Firma sucht neue Arbeitskräfte.", + "example_sentence_english": "The company is looking for new employees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8355 + }, + { + "word": "Artillerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artillery", + "romanization": "Artillerie", + "example_sentence_native": "Die Artillerie feuerte auf die feindlichen Stellungen.", + "example_sentence_english": "The artillery fired on the enemy positions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8356 + }, + { + "word": "Aufschrift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inscription;label;writing", + "romanization": "Aufschrift", + "example_sentence_native": "Die Aufschrift auf der Flasche war schwer zu lesen.", + "example_sentence_english": "The inscription on the bottle was hard to read.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8357 + }, + { + "word": "ausfindig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to find out;to locate (as in 'ausfindig machen')", + "romanization": "ausfindig", + "example_sentence_native": "Wir konnten seinen Aufenthaltsort ausfindig machen.", + "example_sentence_english": "We were able to locate his whereabouts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8358 + }, + { + "word": "auslassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to omit;to leave out;to skip", + "romanization": "auslassen", + "example_sentence_native": "Du solltest keine Mahlzeit auslassen.", + "example_sentence_english": "You shouldn't skip any meal.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8359 + }, + { + "word": "ausgiebig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extensive", + "romanization": "ausgiebig", + "example_sentence_native": "Wir hatten eine ausgiebige Diskussion über das Thema.", + "example_sentence_english": "We had an extensive discussion about the topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8360 + }, + { + "word": "ausnahmslos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without exception", + "romanization": "ausnahmslos", + "example_sentence_native": "Alle Teilnehmer waren ausnahmslos begeistert.", + "example_sentence_english": "All participants were without exception enthusiastic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8361 + }, + { + "word": "aussterben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to die out", + "romanization": "aussterben", + "example_sentence_native": "Viele Tierarten sind vom Aussterben bedroht.", + "example_sentence_english": "Many animal species are threatened with extinction.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "sterben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8362 + }, + { + "word": "Avenue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avenue", + "romanization": "Avenue", + "example_sentence_native": "Die Avenue war gesäumt von Bäumen.", + "example_sentence_english": "The avenue was lined with trees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8363 + }, + { + "word": "Ban", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ban", + "romanization": "Ban", + "example_sentence_native": "Es gab einen Ban für Plastiktüten.", + "example_sentence_english": "There was a ban on plastic bags.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8365 + }, + { + "word": "Besichtigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viewing", + "romanization": "Besichtigung", + "example_sentence_native": "Die Besichtigung des Schlosses dauert zwei Stunden.", + "example_sentence_english": "The viewing of the castle takes two hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8367 + }, + { + "word": "bewaffnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arm", + "romanization": "bewaffnen", + "example_sentence_native": "Die Soldaten bewaffneten sich für den Einsatz.", + "example_sentence_english": "The soldiers armed themselves for the mission.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8368 + }, + { + "word": "Bremse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brake", + "romanization": "Bremse", + "example_sentence_native": "Die Bremse des Autos funktioniert nicht richtig.", + "example_sentence_english": "The car's brake is not working properly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8369 + }, + { + "word": "Butler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butler", + "romanization": "Butler", + "example_sentence_native": "Der Butler servierte das Abendessen.", + "example_sentence_english": "The butler served dinner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8370 + }, + { + "word": "Bürgerschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "citizenry", + "romanization": "Bürgerschaft", + "example_sentence_native": "Die Bürgerschaft wurde zur Abstimmung aufgerufen.", + "example_sentence_english": "The citizenry was called to vote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8371 + }, + { + "word": "Bürokratie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucracy", + "romanization": "Bürokratie", + "example_sentence_native": "Die Bürokratie kann sehr langsam sein.", + "example_sentence_english": "The bureaucracy can be very slow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8372 + }, + { + "word": "Contest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contest", + "romanization": "Contest", + "example_sentence_native": "Er hat den Contest gewonnen.", + "example_sentence_english": "He won the contest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8375 + }, + { + "word": "Desaster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disaster", + "romanization": "Desaster", + "example_sentence_native": "Das Projekt endete in einem Desaster.", + "example_sentence_english": "The project ended in a disaster.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8377 + }, + { + "word": "Dream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dream", + "romanization": "Dream", + "example_sentence_native": "Das ist mein Dream-Team.", + "example_sentence_english": "That is my dream team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8379 + }, + { + "word": "Dreharbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filming;shoot", + "romanization": "Dreharbeit", + "example_sentence_native": "Die Dreharbeiten für den neuen Film beginnen nächste Woche.", + "example_sentence_english": "The filming for the new movie begins next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8380 + }, + { + "word": "Ehrgeiz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambition", + "romanization": "Ehrgeiz", + "example_sentence_native": "Sein Ehrgeiz trieb ihn zu großen Leistungen an.", + "example_sentence_english": "His ambition drove him to great achievements.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8381 + }, + { + "word": "eilig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "urgent;in a hurry", + "romanization": "eilig", + "example_sentence_native": "Ich habe es eilig, ich muss jetzt gehen.", + "example_sentence_english": "I'm in a hurry, I have to go now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8382 + }, + { + "word": "einlassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "let in;admit;get involved", + "romanization": "einlassen", + "example_sentence_native": "Er wollte sich nicht auf diese Diskussion einlassen.", + "example_sentence_english": "He didn't want to get involved in this discussion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8383 + }, + { + "word": "erwecken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awaken;arouse;evoke", + "romanization": "erwecken", + "example_sentence_native": "Die Musik konnte starke Emotionen in ihm erwecken.", + "example_sentence_english": "The music could evoke strong emotions in him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8384 + }, + { + "word": "Fink", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finch", + "romanization": "Fink", + "example_sentence_native": "Ein kleiner Fink saß auf dem Ast und sang.", + "example_sentence_english": "A small finch sat on the branch and sang.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8385 + }, + { + "word": "Flüchtlingspolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refugee policy", + "romanization": "Flüchtlingspolitik", + "example_sentence_native": "Die Flüchtlingspolitik ist ein wichtiges Thema in der aktuellen Debatte.", + "example_sentence_english": "Refugee policy is an important topic in the current debate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8386 + }, + { + "word": "fränkisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Franconian", + "romanization": "fränkisch", + "example_sentence_native": "Er sprach einen starken fränkischen Dialekt.", + "example_sentence_english": "He spoke a strong Franconian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8387 + }, + { + "word": "gemeinnützig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-profit;charitable", + "romanization": "gemeinnützig", + "example_sentence_native": "Die Organisation ist als gemeinnützig anerkannt.", + "example_sentence_english": "The organization is recognized as non-profit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8388 + }, + { + "word": "gemischt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed", + "romanization": "gemischt", + "example_sentence_native": "Wir hatten ein gemischtes Publikum bei der Veranstaltung.", + "example_sentence_english": "We had a mixed audience at the event.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8389 + }, + { + "word": "Genosse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comrade;fellow;associate", + "romanization": "Genosse", + "example_sentence_native": "Er begrüßte seine Genossen mit einem Lächeln.", + "example_sentence_english": "He greeted his comrades with a smile.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8390 + }, + { + "word": "geschützt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protected;sheltered", + "romanization": "geschützt", + "example_sentence_native": "Dieser Bereich ist ein geschütztes Naturgebiet.", + "example_sentence_english": "This area is a protected nature reserve.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8391 + }, + { + "word": "haften", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stick;adhere;be liable", + "romanization": "haften", + "example_sentence_native": "Der Kleber lässt die Teile gut aneinander haften.", + "example_sentence_english": "The glue makes the parts stick well together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8393 + }, + { + "word": "Herde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "herd;flock", + "romanization": "Herde", + "example_sentence_native": "Eine Herde Schafe graste auf der Wiese.", + "example_sentence_english": "A herd of sheep grazed in the meadow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8394 + }, + { + "word": "Hunt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mining cart;skip", + "romanization": "Hunt", + "example_sentence_native": "Die Bergleute beluden den Hunt mit Erz.", + "example_sentence_english": "The miners loaded the mining cart with ore.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8395 + }, + { + "word": "Hymne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthem;hymn", + "romanization": "Hymne", + "example_sentence_native": "Die Nationalhymne wurde vor dem Spiel gespielt.", + "example_sentence_english": "The national anthem was played before the game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8397 + }, + { + "word": "Hüfte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hip", + "romanization": "Hüfte", + "example_sentence_native": "Sie hatte Schmerzen in der Hüfte.", + "example_sentence_english": "She had pain in her hip.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8398 + }, + { + "word": "Joghurt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yogurt", + "romanization": "Joghurt", + "example_sentence_native": "Ich esse jeden Morgen einen Joghurt.", + "example_sentence_english": "I eat a yogurt every morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8401 + }, + { + "word": "Joker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joker", + "romanization": "Joker", + "example_sentence_native": "Der Joker kann jede andere Karte ersetzen.", + "example_sentence_english": "The joker can replace any other card.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8402 + }, + { + "word": "Judentum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Judaism", + "romanization": "Judentum", + "example_sentence_native": "Das Judentum ist eine der ältesten monotheistischen Religionen.", + "example_sentence_english": "Judaism is one of the oldest monotheistic religions.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8403 + }, + { + "word": "kompetent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competent", + "romanization": "kompetent", + "example_sentence_native": "Sie ist eine sehr kompetente Mitarbeiterin.", + "example_sentence_english": "She is a very competent employee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8404 + }, + { + "word": "Konfrontation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confrontation", + "romanization": "Konfrontation", + "example_sentence_native": "Die Konfrontation zwischen den beiden Parteien eskalierte.", + "example_sentence_english": "The confrontation between the two parties escalated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8405 + }, + { + "word": "Lounge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lounge", + "romanization": "Lounge", + "example_sentence_native": "Wir warten in der Lounge auf unseren Flug.", + "example_sentence_english": "We are waiting in the lounge for our flight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8408 + }, + { + "word": "Makler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broker;agent", + "romanization": "Makler", + "example_sentence_native": "Der Immobilienmakler zeigte uns mehrere Häuser.", + "example_sentence_english": "The real estate agent showed us several houses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8410 + }, + { + "word": "Marktwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market economy", + "romanization": "Marktwirtschaft", + "example_sentence_native": "Deutschland hat eine soziale Marktwirtschaft.", + "example_sentence_english": "Germany has a social market economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8411 + }, + { + "word": "Mechanismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanism", + "romanization": "Mechanismus", + "example_sentence_native": "Der Mechanismus der Uhr ist sehr komplex.", + "example_sentence_english": "The mechanism of the clock is very complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8412 + }, + { + "word": "Moderation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderation;hosting", + "romanization": "Moderation", + "example_sentence_native": "Die Moderation der Veranstaltung war ausgezeichnet.", + "example_sentence_english": "The moderation of the event was excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8415 + }, + { + "word": "Moslem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Muslim", + "romanization": "Moslem", + "example_sentence_native": "Ein Moslem betet fünfmal am Tag.", + "example_sentence_english": "A Muslim prays five times a day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8417 + }, + { + "word": "Nachtrag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addendum;supplement;postscript", + "romanization": "Nachtrag", + "example_sentence_native": "Im Nachtrag zur E-Mail finden Sie weitere Informationen.", + "example_sentence_english": "In the addendum to the email, you will find further information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8418 + }, + { + "word": "Nationalität", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nationality", + "romanization": "Nationalität", + "example_sentence_native": "Bitte geben Sie Ihre Nationalität an.", + "example_sentence_english": "Please state your nationality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8419 + }, + { + "word": "neigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incline;to tend", + "romanization": "neigen", + "example_sentence_native": "Er neigt dazu, zu viel zu arbeiten.", + "example_sentence_english": "He tends to work too much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8420 + }, + { + "word": "Nordosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northeast", + "romanization": "Nordosten", + "example_sentence_native": "Der Wind kommt aus dem Nordosten.", + "example_sentence_english": "The wind comes from the northeast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8423 + }, + { + "word": "Nova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nova", + "romanization": "Nova", + "example_sentence_native": "Eine Nova ist ein plötzlicher Helligkeitsausbruch eines Sterns.", + "example_sentence_english": "A nova is a sudden outburst of brightness of a star.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8424 + }, + { + "word": "oberflächlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superficial", + "romanization": "oberflächlich", + "example_sentence_native": "Seine Kenntnisse sind sehr oberflächlich.", + "example_sentence_english": "His knowledge is very superficial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8425 + }, + { + "word": "Organismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organism", + "romanization": "Organismus", + "example_sentence_native": "Jeder lebende Organismus braucht Wasser.", + "example_sentence_english": "Every living organism needs water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8428 + }, + { + "word": "Police", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "policy (insurance)", + "romanization": "Police", + "example_sentence_native": "Ich habe eine neue Versicherungspolice abgeschlossen.", + "example_sentence_english": "I have taken out a new insurance policy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8430 + }, + { + "word": "Prostituierte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute", + "romanization": "Prostituierte", + "example_sentence_native": "Die Prostituierte wartete an der Ecke.", + "example_sentence_english": "The prostitute waited on the corner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8431 + }, + { + "word": "Prostitution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitution", + "romanization": "Prostitution", + "example_sentence_native": "Prostitution ist in einigen Ländern legal.", + "example_sentence_english": "Prostitution is legal in some countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8432 + }, + { + "word": "pseudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pseudo-", + "romanization": "pseudo", + "example_sentence_native": "Das ist ein pseudo-wissenschaftlicher Ansatz.", + "example_sentence_english": "That is a pseudo-scientific approach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8433 + }, + { + "word": "recherchieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to research", + "romanization": "recherchieren", + "example_sentence_native": "Sie muss für ihre Arbeit viel recherchieren.", + "example_sentence_english": "She has to research a lot for her work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8435 + }, + { + "word": "Rechtschreibung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spelling;orthography", + "romanization": "Rechtschreibung", + "example_sentence_native": "Seine Rechtschreibung ist ausgezeichnet.", + "example_sentence_english": "His spelling is excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8436 + }, + { + "word": "renommiert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renowned;reputable", + "romanization": "renommiert", + "example_sentence_native": "Er arbeitet für eine renommierte Firma.", + "example_sentence_english": "He works for a reputable company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8437 + }, + { + "word": "retro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retro", + "romanization": "retro", + "example_sentence_native": "Sie mag Möbel im Retro-Stil.", + "example_sentence_english": "She likes retro-style furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8438 + }, + { + "word": "Riegel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bar (e.g.;chocolate bar;bolt)", + "romanization": "Riegel", + "example_sentence_native": "Er aß einen Schokoriegel.", + "example_sentence_english": "He ate a chocolate bar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8439 + }, + { + "word": "ruinieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ruin", + "romanization": "ruinieren", + "example_sentence_native": "Der Sturm könnte das Dach ruinieren.", + "example_sentence_english": "The storm could ruin the roof.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8441 + }, + { + "word": "Rüstung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor;armament", + "romanization": "Rüstung", + "example_sentence_native": "Der Ritter trug eine schwere Rüstung.", + "example_sentence_english": "The knight wore heavy armor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8442 + }, + { + "word": "schlussendlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimately;in the end", + "romanization": "schlussendlich", + "example_sentence_native": "Schlussendlich haben wir eine Lösung gefunden.", + "example_sentence_english": "Ultimately, we found a solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8443 + }, + { + "word": "Segel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sail", + "romanization": "Segel", + "example_sentence_native": "Das Schiff setzte die Segel.", + "example_sentence_english": "The ship set sail.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8445 + }, + { + "word": "sehenswert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worth seeing;worthwhile", + "romanization": "sehenswert", + "example_sentence_native": "Die Altstadt ist sehr sehenswert.", + "example_sentence_english": "The old town is very worth seeing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8446 + }, + { + "word": "Selbstvertrauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-confidence", + "romanization": "Selbstvertrauen", + "example_sentence_native": "Sie hat viel Selbstvertrauen.", + "example_sentence_english": "She has a lot of self-confidence.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8448 + }, + { + "word": "sichtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visibly;obviously", + "romanization": "sichtlich", + "example_sentence_native": "Er war sichtlich erleichtert.", + "example_sentence_english": "He was visibly relieved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8449 + }, + { + "word": "signifikant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "significant", + "romanization": "signifikant", + "example_sentence_native": "Es gab eine signifikante Veränderung.", + "example_sentence_english": "There was a significant change.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8450 + }, + { + "word": "Sonnenaufgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sunrise", + "romanization": "Sonnenaufgang", + "example_sentence_native": "Wir haben den Sonnenaufgang am Strand gesehen.", + "example_sentence_english": "We saw the sunrise on the beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8453 + }, + { + "word": "stumm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mute;silent", + "romanization": "stumm", + "example_sentence_native": "Er blieb stumm.", + "example_sentence_english": "He remained silent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8454 + }, + { + "word": "sweet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweet;cute", + "romanization": "sweet", + "example_sentence_native": "Das ist ein sehr sweetes Kätzchen.", + "example_sentence_english": "That's a very sweet kitten.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8455 + }, + { + "word": "tanken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to refuel;to fill up (a tank)", + "romanization": "tanken", + "example_sentence_native": "Ich muss mein Auto tanken.", + "example_sentence_english": "I need to refuel my car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8456 + }, + { + "word": "Ticker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ticker (e.g.;news ticker;stock ticker)", + "romanization": "Ticker", + "example_sentence_native": "Der Newsticker zeigte die neuesten Nachrichten.", + "example_sentence_english": "The news ticker showed the latest news.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8458 + }, + { + "word": "tragisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tragic", + "romanization": "tragisch", + "example_sentence_native": "Das Ende des Films war sehr tragisch.", + "example_sentence_english": "The end of the film was very tragic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8460 + }, + { + "word": "Trek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trek;hike", + "romanization": "Trek", + "example_sentence_native": "Der Trek durch die Berge war anstrengend.", + "example_sentence_english": "The trek through the mountains was strenuous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8461 + }, + { + "word": "Treppenhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stairwell;staircase", + "romanization": "Treppenhaus", + "example_sentence_native": "Das Treppenhaus ist sehr hell.", + "example_sentence_english": "The stairwell is very bright.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8462 + }, + { + "word": "Troll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troll", + "romanization": "Troll", + "example_sentence_native": "In der Geschichte lebte ein Troll unter der Brücke.", + "example_sentence_english": "In the story, a troll lived under the bridge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8463 + }, + { + "word": "verwundet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wounded;injured", + "romanization": "verwundet", + "example_sentence_native": "Der Soldat war im Kampf verwundet worden.", + "example_sentence_english": "The soldier had been wounded in battle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8465 + }, + { + "word": "virtuell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtual", + "romanization": "virtuell", + "example_sentence_native": "Wir trafen uns in einer virtuellen Welt.", + "example_sentence_english": "We met in a virtual world.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8467 + }, + { + "word": "Volt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volt", + "romanization": "Volt", + "example_sentence_native": "Die Batterie hat zwölf Volt.", + "example_sentence_english": "The battery has twelve volts.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8468 + }, + { + "word": "Vorsatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intention;resolution", + "romanization": "Vorsatz", + "example_sentence_native": "Mein Vorsatz für das neue Jahr ist es, mehr Sport zu treiben.", + "example_sentence_english": "My resolution for the new year is to exercise more.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8469 + }, + { + "word": "Vorwand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretext;excuse", + "romanization": "Vorwand", + "example_sentence_native": "Er benutzte seine Krankheit als Vorwand, um nicht zur Arbeit zu gehen.", + "example_sentence_english": "He used his illness as a pretext not to go to work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8470 + }, + { + "word": "Vulkan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volcano", + "romanization": "Vulkan", + "example_sentence_native": "Der Vulkan brach letzte Nacht aus.", + "example_sentence_english": "The volcano erupted last night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8471 + }, + { + "word": "Wanne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tub;bathtub", + "romanization": "Wanne", + "example_sentence_native": "Die Badewanne ist voll mit Wasser.", + "example_sentence_english": "The bathtub is full of water.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8474 + }, + { + "word": "wehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blow (wind);to wave (flag)", + "romanization": "wehen", + "example_sentence_native": "Der Wind weht stark.", + "example_sentence_english": "The wind is blowing strongly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8475 + }, + { + "word": "Zehntausend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ten thousand", + "romanization": "Zehntausend", + "example_sentence_native": "Zehntausend Menschen besuchten das Konzert.", + "example_sentence_english": "Ten thousand people visited the concert.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8478 + }, + { + "word": "zeitnah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timely;promptly", + "romanization": "zeitnah", + "example_sentence_native": "Wir müssen eine zeitnahe Lösung finden.", + "example_sentence_english": "We need to find a timely solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8479 + }, + { + "word": "Zusammenhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohesion;solidarity", + "romanization": "Zusammenhalt", + "example_sentence_native": "Der Zusammenhalt in der Familie ist sehr wichtig.", + "example_sentence_english": "Cohesion within the family is very important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8480 + }, + { + "word": "Überlieferung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tradition;transmission", + "romanization": "Überlieferung", + "example_sentence_native": "Diese Geschichte ist Teil der mündlichen Überlieferung.", + "example_sentence_english": "This story is part of the oral tradition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8481 + }, + { + "word": "alljährlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annual;yearly", + "romanization": "alljährlich", + "example_sentence_native": "Das alljährliche Fest findet im Sommer statt.", + "example_sentence_english": "The annual festival takes place in summer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8482 + }, + { + "word": "Altersvorsorge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retirement provision;pension plan", + "romanization": "Altersvorsorge", + "example_sentence_native": "Eine gute Altersvorsorge ist wichtig für die Zukunft.", + "example_sentence_english": "Good retirement provision is important for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8483 + }, + { + "word": "amtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official;authoritative", + "romanization": "amtlich", + "example_sentence_native": "Das ist ein amtliches Dokument.", + "example_sentence_english": "This is an official document.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8484 + }, + { + "word": "Apartment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apartment;flat", + "romanization": "Apartment", + "example_sentence_native": "Sie mietet ein kleines Apartment in der Stadt.", + "example_sentence_english": "She rents a small apartment in the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8485 + }, + { + "word": "Appell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeal;roll call", + "romanization": "Appell", + "example_sentence_native": "Der Präsident richtete einen Appell an die Bevölkerung.", + "example_sentence_english": "The president made an appeal to the population.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8486 + }, + { + "word": "Arbeitstag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "workday", + "romanization": "Arbeitstag", + "example_sentence_native": "Mein Arbeitstag beginnt um neun Uhr.", + "example_sentence_english": "My workday starts at nine o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8487 + }, + { + "word": "auflisten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to list;to enumerate", + "romanization": "auflisten", + "example_sentence_native": "Bitte listen Sie alle Punkte auf.", + "example_sentence_english": "Please list all points.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "listen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8488 + }, + { + "word": "Ausschreitung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "riot;disturbance;excess", + "romanization": "Ausschreitung", + "example_sentence_native": "Es kam zu gewalttätigen Ausschreitungen.", + "example_sentence_english": "There were violent riots.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8489 + }, + { + "word": "australisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Australian", + "romanization": "australisch", + "example_sentence_native": "Sie hat einen australischen Akzent.", + "example_sentence_english": "She has an Australian accent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8490 + }, + { + "word": "autonom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomous", + "romanization": "autonom", + "example_sentence_native": "Die Region strebt nach einem autonomen Status.", + "example_sentence_english": "The region strives for autonomous status.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8491 + }, + { + "word": "Autonomie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomy", + "romanization": "Autonomie", + "example_sentence_native": "Das Land kämpft für seine Autonomie.", + "example_sentence_english": "The country is fighting for its autonomy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8492 + }, + { + "word": "Azubi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprentice;trainee", + "romanization": "Azubi", + "example_sentence_native": "Der neue Azubi beginnt nächste Woche.", + "example_sentence_english": "The new apprentice starts next week.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8493 + }, + { + "word": "bekennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confess;to acknowledge;to profess", + "romanization": "bekennen", + "example_sentence_native": "Er musste seine Schuld bekennen.", + "example_sentence_english": "He had to confess his guilt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8494 + }, + { + "word": "Beklagte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defendant", + "romanization": "Beklagte", + "example_sentence_native": "Der Beklagte erschien nicht vor Gericht.", + "example_sentence_english": "The defendant did not appear in court.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8495 + }, + { + "word": "bevorstehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impending;upcoming", + "romanization": "bevorstehend", + "example_sentence_native": "Wir bereiten uns auf die bevorstehende Prüfung vor.", + "example_sentence_english": "We are preparing for the upcoming exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8496 + }, + { + "word": "blühen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bloom;to flourish", + "romanization": "blühen", + "example_sentence_native": "Die Blumen blühen im Frühling.", + "example_sentence_english": "The flowers bloom in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8497 + }, + { + "word": "Chili", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chili", + "romanization": "Chili", + "example_sentence_native": "Ich mag scharfes Essen mit viel Chili.", + "example_sentence_english": "I like spicy food with a lot of chili.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8501 + }, + { + "word": "Cod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cod (fish)", + "romanization": "Cod", + "example_sentence_native": "Der Cod ist ein beliebter Speisefisch.", + "example_sentence_english": "The cod is a popular food fish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8502 + }, + { + "word": "deutschlandweit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationwide (in Germany)", + "romanization": "deutschlandweit", + "example_sentence_native": "Das Konzert wird deutschlandweit übertragen.", + "example_sentence_english": "The concert will be broadcast nationwide.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8504 + }, + { + "word": "Dorn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorn;spine", + "romanization": "Dorn", + "example_sentence_native": "Die Rose hat scharfe Dorne.", + "example_sentence_english": "The rose has sharp thorns.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8505 + }, + { + "word": "durchgeführt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carried out;implemented", + "romanization": "durchgeführt", + "example_sentence_native": "Die Studie wurde erfolgreich durchgeführt.", + "example_sentence_english": "The study was successfully carried out.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8506 + }, + { + "word": "eindrucksvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impressive", + "romanization": "eindrucksvoll", + "example_sentence_native": "Das war eine eindrucksvolle Leistung.", + "example_sentence_english": "That was an impressive performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8507 + }, + { + "word": "einher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "along (with);together (with)", + "romanization": "einher", + "example_sentence_native": "Mit großer Verantwortung geht auch große Macht einher.", + "example_sentence_english": "With great responsibility also comes great power.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8508 + }, + { + "word": "erbärmlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "miserable;pathetic;wretched", + "romanization": "erbärmlich", + "example_sentence_native": "Sein Zustand war erbärmlich.", + "example_sentence_english": "His condition was miserable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8509 + }, + { + "word": "Erkältung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cold (illness)", + "romanization": "Erkältung", + "example_sentence_native": "Ich habe eine Erkältung.", + "example_sentence_english": "I have a cold.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8510 + }, + { + "word": "etwaig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "possible;potential;any (eventual)", + "romanization": "etwaig", + "example_sentence_native": "Bitte melden Sie etwaige Probleme sofort.", + "example_sentence_english": "Please report any possible problems immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8511 + }, + { + "word": "Fax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fax", + "romanization": "Fax", + "example_sentence_native": "Schicken Sie mir das Dokument per Fax.", + "example_sentence_english": "Send me the document by fax.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8512 + }, + { + "word": "fehl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrong;missing;amiss", + "romanization": "fehl", + "example_sentence_native": "Er fühlte sich fehl am Platz.", + "example_sentence_english": "He felt out of place.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8513 + }, + { + "word": "flirten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flirt", + "romanization": "flirten", + "example_sentence_native": "Er versucht, mit ihr zu flirten.", + "example_sentence_english": "He is trying to flirt with her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8514 + }, + { + "word": "Gate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gate (at an airport)", + "romanization": "Gate", + "example_sentence_native": "Wir müssen zum Gate B23.", + "example_sentence_english": "We have to go to Gate B23.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8515 + }, + { + "word": "gebraucht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "used (second-hand)", + "romanization": "gebraucht", + "example_sentence_native": "Ich habe ein gebrauchtes Fahrrad gekauft.", + "example_sentence_english": "I bought a used bicycle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8516 + }, + { + "word": "Gegenleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration;counter-performance", + "romanization": "Gegenleistung", + "example_sentence_native": "Er erwartet eine Gegenleistung für seine Hilfe.", + "example_sentence_english": "He expects a consideration for his help.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8517 + }, + { + "word": "geordnet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ordered;arranged;tidy", + "romanization": "geordnet", + "example_sentence_native": "Seine Unterlagen sind immer sehr geordnet.", + "example_sentence_english": "His documents are always very tidy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8518 + }, + { + "word": "Gewinnspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition", + "romanization": "Gewinnspiel", + "example_sentence_native": "Ich habe an einem Gewinnspiel teilgenommen.", + "example_sentence_english": "I participated in a competition.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8520 + }, + { + "word": "Gummi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rubber", + "romanization": "Gummi", + "example_sentence_native": "Der Gummi ist sehr elastisch.", + "example_sentence_english": "The rubber is very elastic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8522 + }, + { + "word": "herrschend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevailing", + "romanization": "herrschend", + "example_sentence_native": "Die herrschende Meinung ist, dass wir handeln müssen.", + "example_sentence_english": "The prevailing opinion is that we must act.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8524 + }, + { + "word": "Häuschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small house", + "romanization": "Häuschen", + "example_sentence_native": "Sie wohnen in einem kleinen Häuschen am See.", + "example_sentence_english": "They live in a small house by the lake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8525 + }, + { + "word": "jüngst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recently", + "romanization": "jüngst", + "example_sentence_native": "Jüngst wurde eine neue Studie veröffentlicht.", + "example_sentence_english": "A new study was recently published.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8529 + }, + { + "word": "Klassenerhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "staying in the league", + "romanization": "Klassenerhalt", + "example_sentence_native": "Der Verein kämpft um den Klassenerhalt.", + "example_sentence_english": "The club is fighting to stay in the league.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8531 + }, + { + "word": "klatschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clap", + "romanization": "klatschen", + "example_sentence_native": "Die Zuschauer begannen zu klatschen.", + "example_sentence_english": "The spectators began to clap.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8532 + }, + { + "word": "klopfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to knock", + "romanization": "klopfen", + "example_sentence_native": "Jemand klopft an die Tür.", + "example_sentence_english": "Someone is knocking on the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8533 + }, + { + "word": "Komplikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complication", + "romanization": "Komplikation", + "example_sentence_native": "Es gab keine Komplikationen während der Operation.", + "example_sentence_english": "There were no complications during the operation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8534 + }, + { + "word": "Kosmos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmos", + "romanization": "Kosmos", + "example_sentence_native": "Der Kosmos ist unendlich groß.", + "example_sentence_english": "The cosmos is infinitely large.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8535 + }, + { + "word": "köstlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicious", + "romanization": "köstlich", + "example_sentence_native": "Das Essen war absolut köstlich.", + "example_sentence_english": "The food was absolutely delicious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8536 + }, + { + "word": "kühn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bold", + "romanization": "kühn", + "example_sentence_native": "Er hatte einen kühnen Plan.", + "example_sentence_english": "He had a bold plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8537 + }, + { + "word": "leidenschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionate", + "romanization": "leidenschaftlich", + "example_sentence_native": "Sie ist eine leidenschaftliche Tänzerin.", + "example_sentence_english": "She is a passionate dancer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8538 + }, + { + "word": "Limousine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limousine", + "romanization": "Limousine", + "example_sentence_native": "Er fuhr in einer schwarzen Limousine vor.", + "example_sentence_english": "He drove up in a black limousine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8539 + }, + { + "word": "Lügner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liar", + "romanization": "Lügner", + "example_sentence_native": "Er ist ein Lügner.", + "example_sentence_english": "He is a liar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8541 + }, + { + "word": "Manuskript", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manuscript", + "romanization": "Manuskript", + "example_sentence_native": "Das alte Manuskript wurde gefunden.", + "example_sentence_english": "The old manuscript was found.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8542 + }, + { + "word": "mental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mental", + "romanization": "mental", + "example_sentence_native": "Er hat mentale Probleme.", + "example_sentence_english": "He has mental problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8543 + }, + { + "word": "nationalsozialistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "National Socialist", + "romanization": "nationalsozialistisch", + "example_sentence_native": "Die nationalsozialistische Ideologie war verheerend.", + "example_sentence_english": "The National Socialist ideology was devastating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8546 + }, + { + "word": "Neuland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new territory", + "romanization": "Neuland", + "example_sentence_native": "Wir betreten Neuland in dieser Forschung.", + "example_sentence_english": "We are entering new territory in this research.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8547 + }, + { + "word": "Niederlassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch", + "romanization": "Niederlassung", + "example_sentence_native": "Die Firma eröffnet eine neue Niederlassung.", + "example_sentence_english": "The company is opening a new branch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8548 + }, + { + "word": "Nutte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute", + "romanization": "Nutte", + "example_sentence_native": "Das Wort \"Nutte\" ist sehr beleidigend.", + "example_sentence_english": "The word \"Nutte\" is very offensive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8549 + }, + { + "word": "Oberstufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upper secondary school", + "romanization": "Oberstufe", + "example_sentence_native": "Sie ist in der Oberstufe.", + "example_sentence_english": "She is in upper secondary school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8550 + }, + { + "word": "physikalisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physical", + "romanization": "physikalisch", + "example_sentence_native": "Das ist ein physikalisches Phänomen.", + "example_sentence_english": "That is a physical phenomenon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8552 + }, + { + "word": "physisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physical", + "romanization": "physisch", + "example_sentence_native": "Er ist in guter physischer Verfassung.", + "example_sentence_english": "He is in good physical condition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8553 + }, + { + "word": "potsdamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Potsdam (adj.)", + "romanization": "potsdamer", + "example_sentence_native": "Die Potsdamer Konferenz war wichtig.", + "example_sentence_english": "The Potsdam Conference was important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8554 + }, + { + "word": "programmieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to program", + "romanization": "programmieren", + "example_sentence_native": "Ich lerne, wie man Computer programmiert.", + "example_sentence_english": "I am learning how to program computers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8555 + }, + { + "word": "Psychologe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychologist", + "romanization": "Psychologe", + "example_sentence_native": "Sie geht zu einem Psychologen.", + "example_sentence_english": "She goes to a psychologist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8556 + }, + { + "word": "qualifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to qualify", + "romanization": "qualifizieren", + "example_sentence_native": "Er muss sich für den Wettbewerb qualifizieren.", + "example_sentence_english": "He has to qualify for the competition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8557 + }, + { + "word": "rapid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rapid", + "romanization": "rapid", + "example_sentence_native": "Die Entwicklung war rapid.", + "example_sentence_english": "The development was rapid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8559 + }, + { + "word": "saugen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suck;to vacuum", + "romanization": "saugen", + "example_sentence_native": "Ich muss das Wohnzimmer saugen.", + "example_sentence_english": "I have to vacuum the living room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8563 + }, + { + "word": "Schlagzeug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drum kit;drums", + "romanization": "Schlagzeug", + "example_sentence_native": "Er spielt Schlagzeug in einer Band.", + "example_sentence_english": "He plays drums in a band.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8565 + }, + { + "word": "Schreck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fright;scare", + "romanization": "Schreck", + "example_sentence_native": "Sie bekam einen großen Schreck.", + "example_sentence_english": "She got a big fright.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8566 + }, + { + "word": "Sekretär", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretary;desk", + "romanization": "Sekretär", + "example_sentence_native": "Mein Sekretär ist sehr organisiert.", + "example_sentence_english": "My secretary is very organized.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8567 + }, + { + "word": "seriös", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serious;reputable", + "romanization": "seriös", + "example_sentence_native": "Das ist ein seriöses Angebot.", + "example_sentence_english": "That is a serious offer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8568 + }, + { + "word": "Sorgfalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligence;care", + "romanization": "Sorgfalt", + "example_sentence_native": "Er erledigt seine Arbeit mit großer Sorgfalt.", + "example_sentence_english": "He does his work with great diligence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8569 + }, + { + "word": "stellenweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in places;here and there", + "romanization": "stellenweise", + "example_sentence_native": "Die Straße ist stellenweise glatt.", + "example_sentence_english": "The road is slippery in places.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8570 + }, + { + "word": "strahlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shine;to radiate", + "romanization": "strahlen", + "example_sentence_native": "Die Sonne strahlt hell.", + "example_sentence_english": "The sun shines brightly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8571 + }, + { + "word": "Sumpf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swamp;marsh", + "romanization": "Sumpf", + "example_sentence_native": "Der Weg führte durch einen Sumpf.", + "example_sentence_english": "The path led through a swamp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8572 + }, + { + "word": "Tab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tab", + "romanization": "Tab", + "example_sentence_native": "Öffne einen neuen Tab im Browser.", + "example_sentence_english": "Open a new tab in the browser.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8574 + }, + { + "word": "taugen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be suitable;to be good for", + "romanization": "taugen", + "example_sentence_native": "Dieses Werkzeug taugt nichts.", + "example_sentence_english": "This tool is no good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8575 + }, + { + "word": "Teig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dough", + "romanization": "Teig", + "example_sentence_native": "Der Bäcker knetet den Teig.", + "example_sentence_english": "The baker kneads the dough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8576 + }, + { + "word": "Teilhabe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "participation;involvement", + "romanization": "Teilhabe", + "example_sentence_native": "Soziale Teilhabe ist wichtig für die Integration.", + "example_sentence_english": "Social participation is important for integration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8577 + }, + { + "word": "Therapeut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therapist", + "romanization": "Therapeut", + "example_sentence_native": "Sie geht regelmäßig zum Therapeuten.", + "example_sentence_english": "She regularly goes to the therapist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8578 + }, + { + "word": "Torhüter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goalkeeper", + "romanization": "Torhüter", + "example_sentence_native": "Der Torhüter hat den Ball gehalten.", + "example_sentence_english": "The goalkeeper saved the ball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8580 + }, + { + "word": "Umschlag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "envelope;cover", + "romanization": "Umschlag", + "example_sentence_native": "Ich brauche einen Umschlag für den Brief.", + "example_sentence_english": "I need an envelope for the letter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8581 + }, + { + "word": "unbemerkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnoticed", + "romanization": "unbemerkt", + "example_sentence_native": "Er schlich unbemerkt aus dem Raum.", + "example_sentence_english": "He sneaked unnoticed out of the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8582 + }, + { + "word": "unwichtig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unimportant", + "romanization": "unwichtig", + "example_sentence_native": "Das ist eine unwichtige Information.", + "example_sentence_english": "That is unimportant information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8583 + }, + { + "word": "unzureichend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insufficient", + "romanization": "unzureichend", + "example_sentence_native": "Die Beweise waren unzureichend.", + "example_sentence_english": "The evidence was insufficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8584 + }, + { + "word": "Urlauber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holidaymaker;tourist", + "romanization": "Urlauber", + "example_sentence_native": "Viele Urlauber besuchen die Stadt im Sommer.", + "example_sentence_english": "Many holidaymakers visit the city in summer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8585 + }, + { + "word": "Variable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variable", + "romanization": "Variable", + "example_sentence_native": "In der Gleichung ist x eine Variable.", + "example_sentence_english": "In the equation, x is a variable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8586 + }, + { + "word": "Verfall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decay;decline", + "romanization": "Verfall", + "example_sentence_native": "Das alte Gebäude ist im Verfall.", + "example_sentence_english": "The old building is in decay.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8588 + }, + { + "word": "verhängen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impose;to decree", + "romanization": "verhängen", + "example_sentence_native": "Die Regierung wird neue Maßnahmen verhängen.", + "example_sentence_english": "The government will impose new measures.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8589 + }, + { + "word": "verschwenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to waste", + "romanization": "verschwenden", + "example_sentence_native": "Wir sollten kein Wasser verschwenden.", + "example_sentence_english": "We should not waste water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8590 + }, + { + "word": "Versuchung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temptation", + "romanization": "Versuchung", + "example_sentence_native": "Er widerstand der Versuchung, das Dessert zu essen.", + "example_sentence_english": "He resisted the temptation to eat the dessert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8591 + }, + { + "word": "Volkswirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "national economy;economics", + "romanization": "Volkswirtschaft", + "example_sentence_native": "Die Volkswirtschaft eines Landes ist komplex.", + "example_sentence_english": "The national economy of a country is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8593 + }, + { + "word": "vortragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to present;to recite;to perform", + "romanization": "vortragen", + "example_sentence_native": "Er wird morgen seinen Bericht vortragen.", + "example_sentence_english": "He will present his report tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8594 + }, + { + "word": "Webcam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "webcam", + "romanization": "Webcam", + "example_sentence_native": "Ich brauche eine neue Webcam für Videokonferenzen.", + "example_sentence_english": "I need a new webcam for video conferences.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8596 + }, + { + "word": "Weste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vest;waistcoat", + "romanization": "Weste", + "example_sentence_native": "Sie trägt eine warme Weste.", + "example_sentence_english": "She is wearing a warm vest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8598 + }, + { + "word": "zaubern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conjure;to do magic", + "romanization": "zaubern", + "example_sentence_native": "Der Magier kann Kaninchen aus dem Hut zaubern.", + "example_sentence_english": "The magician can conjure rabbits out of the hat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8602 + }, + { + "word": "Zeitgenosse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemporary;peer", + "romanization": "Zeitgenosse", + "example_sentence_native": "Er war ein Zeitgenosse von Goethe.", + "example_sentence_english": "He was a contemporary of Goethe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8603 + }, + { + "word": "zerlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismantle;to disassemble", + "romanization": "zerlegen", + "example_sentence_native": "Er musste das Möbelstück zerlegen, um es zu transportieren.", + "example_sentence_english": "He had to dismantle the piece of furniture to transport it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8604 + }, + { + "word": "zugreifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grab;to help oneself;to access", + "romanization": "zugreifen", + "example_sentence_native": "Bitte greifen Sie zu!", + "example_sentence_english": "Please help yourself!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "greifen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8606 + }, + { + "word": "Öffentlichkeitsarbeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public relations (PR)", + "romanization": "Öffentlichkeitsarbeit", + "example_sentence_native": "Sie ist für die Öffentlichkeitsarbeit des Unternehmens zuständig.", + "example_sentence_english": "She is responsible for the company's public relations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8607 + }, + { + "word": "Überstunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overtime hour", + "romanization": "Überstunde", + "example_sentence_native": "Ich muss heute eine Überstunde machen.", + "example_sentence_english": "I have to work an overtime hour today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8608 + }, + { + "word": "abheben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lift off;to withdraw (money);to stand out", + "romanization": "abheben", + "example_sentence_native": "Das Flugzeug wird gleich abheben.", + "example_sentence_english": "The plane will take off soon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "heben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8609 + }, + { + "word": "Abschaum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scum;riff-raff", + "romanization": "Abschaum", + "example_sentence_native": "Er nannte sie den Abschaum der Gesellschaft.", + "example_sentence_english": "He called them the scum of society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8610 + }, + { + "word": "Absicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security;hedging;safeguard", + "romanization": "Absicherung", + "example_sentence_native": "Eine gute Absicherung ist wichtig für die Zukunft.", + "example_sentence_english": "Good security is important for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8611 + }, + { + "word": "Aktiengesellschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public limited company (PLC);stock corporation", + "romanization": "Aktiengesellschaft", + "example_sentence_native": "Die Firma wurde in eine Aktiengesellschaft umgewandelt.", + "example_sentence_english": "The company was converted into a public limited company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8612 + }, + { + "word": "anzünden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to light;to ignite", + "romanization": "anzünden", + "example_sentence_native": "Er wollte das Feuer anzünden.", + "example_sentence_english": "He wanted to light the fire.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "zünden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8614 + }, + { + "word": "anschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to write to;to credit (on account)", + "romanization": "anschreiben", + "example_sentence_native": "Ich muss ihn noch anschreiben.", + "example_sentence_english": "I still need to write to him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8616 + }, + { + "word": "Auktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auction", + "romanization": "Auktion", + "example_sentence_native": "Das Gemälde wird bei einer Auktion versteigert.", + "example_sentence_english": "The painting will be auctioned at an auction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8618 + }, + { + "word": "Ausfahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exit (e.g.;from a highway);driveway", + "romanization": "Ausfahrt", + "example_sentence_native": "Nehmen Sie die nächste Ausfahrt.", + "example_sentence_english": "Take the next exit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8619 + }, + { + "word": "Ballett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballet", + "romanization": "Ballett", + "example_sentence_native": "Sie liebt es, Ballett zu tanzen.", + "example_sentence_english": "She loves to dance ballet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8620 + }, + { + "word": "Banking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banking", + "romanization": "Banking", + "example_sentence_native": "Online-Banking ist sehr praktisch.", + "example_sentence_english": "Online banking is very practical.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8621 + }, + { + "word": "bereitstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to provide;to make available", + "romanization": "bereitstellen", + "example_sentence_native": "Die Firma wird die notwendigen Ressourcen bereitstellen.", + "example_sentence_english": "The company will provide the necessary resources.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bereit", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8622 + }, + { + "word": "Beschaffenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quality;nature;condition", + "romanization": "Beschaffenheit", + "example_sentence_native": "Die Beschaffenheit des Bodens ist entscheidend für den Anbau.", + "example_sentence_english": "The quality of the soil is crucial for cultivation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8623 + }, + { + "word": "beschuldigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accuse", + "romanization": "beschuldigen", + "example_sentence_native": "Er wurde beschuldigt, das Geld gestohlen zu haben.", + "example_sentence_english": "He was accused of stealing the money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8624 + }, + { + "word": "beschützen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protect", + "romanization": "beschützen", + "example_sentence_native": "Die Eltern versuchen, ihre Kinder zu beschützen.", + "example_sentence_english": "The parents try to protect their children.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8625 + }, + { + "word": "Besteuerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taxation", + "romanization": "Besteuerung", + "example_sentence_native": "Die Besteuerung von Luxusgütern wurde erhöht.", + "example_sentence_english": "The taxation of luxury goods was increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8626 + }, + { + "word": "blank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blank;shiny;bare", + "romanization": "blank", + "example_sentence_native": "Der Tisch war blank geputzt.", + "example_sentence_english": "The table was polished clean.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8627 + }, + { + "word": "Busfahrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bus driver", + "romanization": "Busfahrer", + "example_sentence_native": "Der Busfahrer wartete an der Haltestelle.", + "example_sentence_english": "The bus driver waited at the bus stop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8628 + }, + { + "word": "Bürgerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female citizen", + "romanization": "Bürgerin", + "example_sentence_native": "Jede Bürgerin hat das Recht zu wählen.", + "example_sentence_english": "Every female citizen has the right to vote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8629 + }, + { + "word": "Diamant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diamond", + "romanization": "Diamant", + "example_sentence_native": "Ein Diamant ist sehr hart.", + "example_sentence_english": "A diamond is very hard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8633 + }, + { + "word": "einbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break in;to collapse", + "romanization": "einbrechen", + "example_sentence_native": "Letzte Nacht ist jemand in das Haus eingebrochen.", + "example_sentence_english": "Last night someone broke into the house.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "brechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8635 + }, + { + "word": "einschätzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assess;to estimate;to evaluate", + "romanization": "einschätzen", + "example_sentence_native": "Es ist schwer, die Situation richtig einzuschätzen.", + "example_sentence_english": "It is difficult to assess the situation correctly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schätzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8636 + }, + { + "word": "entlasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relieve;to unburden;to exonerate", + "romanization": "entlasten", + "example_sentence_native": "Die neue Regelung soll die Bürger finanziell entlasten.", + "example_sentence_english": "The new regulation is intended to financially relieve the citizens.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8639 + }, + { + "word": "erhoffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hope for", + "romanization": "erhoffen", + "example_sentence_native": "Wir erhoffen uns gute Ergebnisse.", + "example_sentence_english": "We hope for good results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8642 + }, + { + "word": "erkrankt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ill", + "romanization": "erkrankt", + "example_sentence_native": "Der Patient ist schwer erkrankt.", + "example_sentence_english": "The patient is seriously ill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8643 + }, + { + "word": "Erscheinungsbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance", + "romanization": "Erscheinungsbild", + "example_sentence_native": "Das Erscheinungsbild des Gebäudes ist beeindruckend.", + "example_sentence_english": "The appearance of the building is impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8644 + }, + { + "word": "Erzeugung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production", + "romanization": "Erzeugung", + "example_sentence_native": "Die Erzeugung von Energie ist ein wichtiges Thema.", + "example_sentence_english": "The production of energy is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8645 + }, + { + "word": "europaweit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Europe-wide", + "romanization": "europaweit", + "example_sentence_native": "Das Produkt ist europaweit erhältlich.", + "example_sentence_english": "The product is available Europe-wide.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8647 + }, + { + "word": "festgelegt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fixed", + "romanization": "festgelegt", + "example_sentence_native": "Der Termin ist bereits festgelegt.", + "example_sentence_english": "The date is already fixed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8648 + }, + { + "word": "Flanke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flank", + "romanization": "Flanke", + "example_sentence_native": "Der Spieler schlug eine Flanke in den Strafraum.", + "example_sentence_english": "The player crossed the ball into the penalty area.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8649 + }, + { + "word": "flat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flat (rate)", + "romanization": "flat", + "example_sentence_native": "Wir bieten einen flat rate Tarif an.", + "example_sentence_english": "We offer a flat rate tariff.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8650 + }, + { + "word": "Floh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flea", + "romanization": "Floh", + "example_sentence_native": "Mein Hund hat einen Floh.", + "example_sentence_english": "My dog has a flea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8651 + }, + { + "word": "flüssig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "liquid", + "romanization": "flüssig", + "example_sentence_native": "Wasser ist eine flüssige Substanz.", + "example_sentence_english": "Water is a liquid substance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8652 + }, + { + "word": "Föderation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federation", + "romanization": "Föderation", + "example_sentence_native": "Die Europäische Union ist keine Föderation im klassischen Sinne.", + "example_sentence_english": "The European Union is not a federation in the classical sense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8653 + }, + { + "word": "Gala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gala", + "romanization": "Gala", + "example_sentence_native": "Sie trug ein elegantes Kleid zur Gala.", + "example_sentence_english": "She wore an elegant dress to the gala.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8654 + }, + { + "word": "Gefangenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivity", + "romanization": "Gefangenschaft", + "example_sentence_native": "Viele Tiere leben in Gefangenschaft.", + "example_sentence_english": "Many animals live in captivity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8655 + }, + { + "word": "Gelehrte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scholar", + "romanization": "Gelehrte", + "example_sentence_native": "Er ist ein bekannter Gelehrter auf seinem Gebiet.", + "example_sentence_english": "He is a well-known scholar in his field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8656 + }, + { + "word": "Genauigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accuracy", + "romanization": "Genauigkeit", + "example_sentence_native": "Die Genauigkeit der Messung ist entscheidend.", + "example_sentence_english": "The accuracy of the measurement is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8657 + }, + { + "word": "geringfügig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor", + "romanization": "geringfügig", + "example_sentence_native": "Es gab nur eine geringfügige Änderung.", + "example_sentence_english": "There was only a minor change.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8658 + }, + { + "word": "Geschirr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dishes", + "romanization": "Geschirr", + "example_sentence_native": "Bitte räum das Geschirr in die Spülmaschine.", + "example_sentence_english": "Please put the dishes in the dishwasher.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8659 + }, + { + "word": "gewaltsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violent;forcible", + "romanization": "gewaltsam", + "example_sentence_native": "Die Polizei musste gewaltsam eingreifen.", + "example_sentence_english": "The police had to intervene forcibly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8660 + }, + { + "word": "gewerblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial;industrial", + "romanization": "gewerblich", + "example_sentence_native": "Das ist eine gewerbliche Nutzung des Gebäudes.", + "example_sentence_english": "This is a commercial use of the building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8661 + }, + { + "word": "Gewinnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraction;acquisition;winning", + "romanization": "Gewinnung", + "example_sentence_native": "Die Gewinnung von Rohstoffen ist wichtig für die Industrie.", + "example_sentence_english": "The extraction of raw materials is important for industry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8662 + }, + { + "word": "Gleichheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equality", + "romanization": "Gleichheit", + "example_sentence_native": "Alle Menschen haben das Recht auf Gleichheit.", + "example_sentence_english": "All people have the right to equality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8663 + }, + { + "word": "Graffiti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graffiti", + "romanization": "Graffiti", + "example_sentence_native": "Die Wand war voller bunter Graffiti.", + "example_sentence_english": "The wall was full of colorful graffiti.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8664 + }, + { + "word": "Grundriss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floor plan;layout", + "romanization": "Grundriss", + "example_sentence_native": "Der Architekt zeigte uns den Grundriss des Hauses.", + "example_sentence_english": "The architect showed us the floor plan of the house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8666 + }, + { + "word": "Gutachter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expert;appraiser;surveyor", + "romanization": "Gutachter", + "example_sentence_native": "Ein unabhängiger Gutachter wurde hinzugezogen.", + "example_sentence_english": "An independent expert was consulted.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8668 + }, + { + "word": "Hausmeister", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "caretaker;janitor", + "romanization": "Hausmeister", + "example_sentence_native": "Der Hausmeister reparierte die Heizung.", + "example_sentence_english": "The caretaker repaired the heating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8669 + }, + { + "word": "Hotline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hotline", + "romanization": "Hotline", + "example_sentence_native": "Bei technischen Problemen rufen Sie bitte die Hotline an.", + "example_sentence_english": "For technical problems, please call the hotline.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8671 + }, + { + "word": "ineinander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "into one another;intertwined", + "romanization": "ineinander", + "example_sentence_native": "Die Zahnräder griffen ineinander.", + "example_sentence_english": "The gears meshed into one another.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8672 + }, + { + "word": "Infanterie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infantry", + "romanization": "Infanterie", + "example_sentence_native": "Die Infanterie rückte langsam vor.", + "example_sentence_english": "The infantry advanced slowly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8673 + }, + { + "word": "Jugendamt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth welfare office", + "romanization": "Jugendamt", + "example_sentence_native": "Das Jugendamt kümmert sich um das Wohl der Kinder.", + "example_sentence_english": "The youth welfare office takes care of the well-being of children.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8676 + }, + { + "word": "Kofferraum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car boot;trunk", + "romanization": "Kofferraum", + "example_sentence_native": "Bitte legen Sie die Taschen in den Kofferraum.", + "example_sentence_english": "Please put the bags in the car boot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8679 + }, + { + "word": "Koks", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coke (fuel;drug)", + "romanization": "Koks", + "example_sentence_native": "Koks wird oft als Brennstoff verwendet.", + "example_sentence_english": "Coke is often used as fuel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8680 + }, + { + "word": "kompakt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compact", + "romanization": "kompakt", + "example_sentence_native": "Das Auto ist sehr kompakt und leicht zu parken.", + "example_sentence_english": "The car is very compact and easy to park.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8681 + }, + { + "word": "Kontroverse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversy", + "romanization": "Kontroverse", + "example_sentence_native": "Die neue Regelung führte zu einer großen Kontroverse.", + "example_sentence_english": "The new regulation led to a big controversy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8682 + }, + { + "word": "Lebensstil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lifestyle", + "romanization": "Lebensstil", + "example_sentence_native": "Er hat einen gesunden Lebensstil.", + "example_sentence_english": "He has a healthy lifestyle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8685 + }, + { + "word": "Mandant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "client (legal)", + "romanization": "Mandant", + "example_sentence_native": "Der Anwalt berät seinen Mandanten.", + "example_sentence_english": "The lawyer advises his client.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8687 + }, + { + "word": "Marmor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marble", + "romanization": "Marmor", + "example_sentence_native": "Die Statue ist aus weißem Marmor gefertigt.", + "example_sentence_english": "The statue is made of white marble.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8689 + }, + { + "word": "marschieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to march", + "romanization": "marschieren", + "example_sentence_native": "Die Soldaten marschieren im Gleichschritt.", + "example_sentence_english": "The soldiers march in step.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8690 + }, + { + "word": "Mechanik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanics", + "romanization": "Mechanik", + "example_sentence_native": "Er studiert Mechanik an der Universität.", + "example_sentence_english": "He studies mechanics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8691 + }, + { + "word": "Metropole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolis", + "romanization": "Metropole", + "example_sentence_native": "Berlin ist eine große Metropole.", + "example_sentence_english": "Berlin is a large metropolis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8692 + }, + { + "word": "Milieu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "milieu;environment", + "romanization": "Milieu", + "example_sentence_native": "Er wuchs in einem schwierigen Milieu auf.", + "example_sentence_english": "He grew up in a difficult milieu.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8693 + }, + { + "word": "Millionär", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millionaire", + "romanization": "Millionär", + "example_sentence_native": "Er träumt davon, ein Millionär zu werden.", + "example_sentence_english": "He dreams of becoming a millionaire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8694 + }, + { + "word": "mittendrin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right in the middle of it", + "romanization": "mittendrin", + "example_sentence_native": "Plötzlich stand er mittendrin im Geschehen.", + "example_sentence_english": "Suddenly he stood right in the middle of the action.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8695 + }, + { + "word": "Nachname", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surname;last name", + "romanization": "Nachname", + "example_sentence_native": "Bitte geben Sie Ihren Nachnamen an.", + "example_sentence_english": "Please state your last name.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8696 + }, + { + "word": "niedersächsisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lower Saxon", + "romanization": "niedersächsisch", + "example_sentence_native": "Er spricht einen niedersächsischen Dialekt.", + "example_sentence_english": "He speaks a Lower Saxon dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8698 + }, + { + "word": "norddeutsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North German", + "romanization": "norddeutsch", + "example_sentence_native": "Er spricht einen norddeutschen Dialekt.", + "example_sentence_english": "He speaks a North German dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8700 + }, + { + "word": "Oberschenkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thigh", + "romanization": "Oberschenkel", + "example_sentence_native": "Er hat sich den Oberschenkel gebrochen.", + "example_sentence_english": "He broke his thigh.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8701 + }, + { + "word": "Optimierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimization", + "romanization": "Optimierung", + "example_sentence_native": "Die Optimierung des Prozesses ist entscheidend.", + "example_sentence_english": "The optimization of the process is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8702 + }, + { + "word": "Pfleger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "male nurse", + "romanization": "Pfleger", + "example_sentence_native": "Der Pfleger kümmerte sich gut um den Patienten.", + "example_sentence_english": "The male nurse took good care of the patient.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8703 + }, + { + "word": "praktizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to practice", + "romanization": "praktizieren", + "example_sentence_native": "Er praktiziert seit vielen Jahren als Arzt.", + "example_sentence_english": "He has been practicing as a doctor for many years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8705 + }, + { + "word": "prompt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prompt", + "romanization": "prompt", + "example_sentence_native": "Er reagierte prompt auf die Nachricht.", + "example_sentence_english": "He reacted promptly to the message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8708 + }, + { + "word": "Putsch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coup", + "romanization": "Putsch", + "example_sentence_native": "Der Putschversuch scheiterte.", + "example_sentence_english": "The coup attempt failed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8709 + }, + { + "word": "Rentenversicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pension insurance", + "romanization": "Rentenversicherung", + "example_sentence_native": "Die Rentenversicherung ist ein wichtiger Teil der sozialen Sicherung.", + "example_sentence_english": "Pension insurance is an important part of social security.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8711 + }, + { + "word": "Ritual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ritual", + "romanization": "Ritual", + "example_sentence_native": "Das ist ein altes Ritual.", + "example_sentence_english": "That is an old ritual.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8713 + }, + { + "word": "Rückweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way back", + "romanization": "Rückweg", + "example_sentence_native": "Auf dem Rückweg trafen wir alte Freunde.", + "example_sentence_english": "On the way back, we met old friends.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8716 + }, + { + "word": "Saisonende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "end of season", + "romanization": "Saisonende", + "example_sentence_native": "Das Saisonende ist oft traurig für die Fans.", + "example_sentence_english": "The end of the season is often sad for the fans.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8717 + }, + { + "word": "Schauplatz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scene", + "romanization": "Schauplatz", + "example_sentence_native": "Der Schauplatz des Verbrechens war ein altes Haus.", + "example_sentence_english": "The scene of the crime was an old house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8718 + }, + { + "word": "Schmetterling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butterfly", + "romanization": "Schmetterling", + "example_sentence_native": "Ein bunter Schmetterling flog durch den Garten.", + "example_sentence_english": "A colorful butterfly flew through the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8719 + }, + { + "word": "Schulung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;schooling", + "romanization": "Schulung", + "example_sentence_native": "Die Schulung dauert drei Tage.", + "example_sentence_english": "The training lasts three days.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8720 + }, + { + "word": "schweben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to float;to hover", + "romanization": "schweben", + "example_sentence_native": "Der Ballon schwebte langsam in den Himmel.", + "example_sentence_english": "The balloon slowly floated into the sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8721 + }, + { + "word": "Seife", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soap", + "romanization": "Seife", + "example_sentence_native": "Ich brauche Seife, um meine Hände zu waschen.", + "example_sentence_english": "I need soap to wash my hands.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8723 + }, + { + "word": "Signatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signature", + "romanization": "Signatur", + "example_sentence_native": "Bitte setzen Sie Ihre Signatur unter das Dokument.", + "example_sentence_english": "Please put your signature under the document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8725 + }, + { + "word": "silbern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silver (adj.)", + "romanization": "silbern", + "example_sentence_native": "Sie trug eine silberne Kette.", + "example_sentence_english": "She wore a silver necklace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8726 + }, + { + "word": "simpel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simple", + "romanization": "simpel", + "example_sentence_native": "Die Lösung war sehr simpel.", + "example_sentence_english": "The solution was very simple.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8727 + }, + { + "word": "Simulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulation", + "romanization": "Simulation", + "example_sentence_native": "Die Simulation des Fluges war sehr realistisch.", + "example_sentence_english": "The flight simulation was very realistic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8728 + }, + { + "word": "Skepsis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skepticism", + "romanization": "Skepsis", + "example_sentence_native": "Er begegnete der Idee mit Skepsis.", + "example_sentence_english": "He met the idea with skepticism.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8729 + }, + { + "word": "Sozialdemokratie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social democracy", + "romanization": "Sozialdemokratie", + "example_sentence_native": "Die Sozialdemokratie hat eine lange Geschichte in Deutschland.", + "example_sentence_english": "Social democracy has a long history in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8731 + }, + { + "word": "Spender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donor;dispenser", + "romanization": "Spender", + "example_sentence_native": "Der Spender für Seife ist leer.", + "example_sentence_english": "The soap dispenser is empty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8732 + }, + { + "word": "sprengen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blow up;to blast;to burst", + "romanization": "sprengen", + "example_sentence_native": "Die Brücke wurde gesprengt.", + "example_sentence_english": "The bridge was blown up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8733 + }, + { + "word": "Titelverteidiger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defending champion", + "romanization": "Titelverteidiger", + "example_sentence_native": "Der Titelverteidiger gewann das Spiel.", + "example_sentence_english": "The defending champion won the game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8738 + }, + { + "word": "Unfähigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability;incapacity", + "romanization": "Unfähigkeit", + "example_sentence_native": "Seine Unfähigkeit zu lernen war offensichtlich.", + "example_sentence_english": "His inability to learn was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8741 + }, + { + "word": "ungeheuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enormous;monstrous;tremendous", + "romanization": "ungeheuer", + "example_sentence_native": "Das war ein ungeheuer großer Fehler.", + "example_sentence_english": "That was an enormous mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8742 + }, + { + "word": "ungleich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unequal;uneven;dissimilar", + "romanization": "ungleich", + "example_sentence_native": "Sie haben ungleiche Chancen.", + "example_sentence_english": "They have unequal opportunities.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8743 + }, + { + "word": "Ungleichheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inequality;disparity", + "romanization": "Ungleichheit", + "example_sentence_native": "Es gibt immer noch große Ungleichheiten in der Gesellschaft.", + "example_sentence_english": "There are still great inequalities in society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8744 + }, + { + "word": "ungültig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invalid;void", + "romanization": "ungültig", + "example_sentence_native": "Das Ticket ist ungültig.", + "example_sentence_english": "The ticket is invalid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8745 + }, + { + "word": "Urheberrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "copyright", + "romanization": "Urheberrecht", + "example_sentence_native": "Das Urheberrecht schützt geistiges Eigentum.", + "example_sentence_english": "Copyright protects intellectual property.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8746 + }, + { + "word": "Urin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urine", + "romanization": "Urin", + "example_sentence_native": "Eine Urinprobe wurde genommen.", + "example_sentence_english": "A urine sample was taken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8747 + }, + { + "word": "variieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to vary", + "romanization": "variieren", + "example_sentence_native": "Die Preise können je nach Saison variieren.", + "example_sentence_english": "Prices can vary depending on the season.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8749 + }, + { + "word": "verbannen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to banish;to exile", + "romanization": "verbannen", + "example_sentence_native": "Er wurde aus dem Land verbannt.", + "example_sentence_english": "He was banished from the country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8750 + }, + { + "word": "Verbund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compound;association;network", + "romanization": "Verbund", + "example_sentence_native": "Sie arbeiten in einem engen Verbund.", + "example_sentence_english": "They work in a close association.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8751 + }, + { + "word": "Verschlüsselung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encryption;coding", + "romanization": "Verschlüsselung", + "example_sentence_native": "Die Daten werden durch starke Verschlüsselung geschützt.", + "example_sentence_english": "The data is protected by strong encryption.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8752 + }, + { + "word": "verschweigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceal;to keep secret", + "romanization": "verschweigen", + "example_sentence_native": "Er hat die Wahrheit verschwiegen.", + "example_sentence_english": "He concealed the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8753 + }, + { + "word": "verwehren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deny;to refuse", + "romanization": "verwehren", + "example_sentence_native": "Man kann ihm den Zugang nicht verwehren.", + "example_sentence_english": "One cannot deny him access.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8754 + }, + { + "word": "vorgeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pretend;to specify;to dictate", + "romanization": "vorgeben", + "example_sentence_native": "Er gab vor, krank zu sein.", + "example_sentence_english": "He pretended to be sick.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8757 + }, + { + "word": "Vorliebe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preference;fondness", + "romanization": "Vorliebe", + "example_sentence_native": "Sie hat eine Vorliebe für Schokolade.", + "example_sentence_english": "She has a preference for chocolate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8758 + }, + { + "word": "Völkermord", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genocide", + "romanization": "Völkermord", + "example_sentence_native": "Völkermord ist ein Verbrechen gegen die Menschlichkeit.", + "example_sentence_english": "Genocide is a crime against humanity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8759 + }, + { + "word": "Wartung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maintenance", + "romanization": "Wartung", + "example_sentence_native": "Die regelmäßige Wartung der Maschine ist wichtig.", + "example_sentence_english": "Regular maintenance of the machine is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8760 + }, + { + "word": "Weihnachtsmann", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Santa Claus", + "romanization": "Weihnachtsmann", + "example_sentence_native": "Der Weihnachtsmann bringt Geschenke zu Weihnachten.", + "example_sentence_english": "Santa Claus brings presents at Christmas.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8761 + }, + { + "word": "Weihnachtsmarkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas market", + "romanization": "Weihnachtsmarkt", + "example_sentence_native": "Wir gehen jedes Jahr auf den Weihnachtsmarkt.", + "example_sentence_english": "We go to the Christmas market every year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8762 + }, + { + "word": "weiterhelfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help further;to assist", + "romanization": "weiterhelfen", + "example_sentence_native": "Können Sie mir bitte weiterhelfen?", + "example_sentence_english": "Can you please help me further?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "helfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8763 + }, + { + "word": "Wichtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "importance", + "romanization": "Wichtigkeit", + "example_sentence_native": "Die Wichtigkeit dieser Entscheidung ist enorm.", + "example_sentence_english": "The importance of this decision is enormous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8765 + }, + { + "word": "wiederholt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repeated;repeatedly", + "romanization": "wiederholt", + "example_sentence_native": "Er hat den Fehler wiederholt gemacht.", + "example_sentence_english": "He repeatedly made the mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8766 + }, + { + "word": "Wohnungsbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "housing construction", + "romanization": "Wohnungsbau", + "example_sentence_native": "Der Wohnungsbau ist ein wichtiges Thema in der Stadt.", + "example_sentence_english": "Housing construction is an important topic in the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8767 + }, + { + "word": "Wohnwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caravan;camper", + "romanization": "Wohnwagen", + "example_sentence_native": "Sie fahren mit ihrem Wohnwagen in den Urlaub.", + "example_sentence_english": "They are going on holiday with their caravan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8768 + }, + { + "word": "Wortlaut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wording;exact text", + "romanization": "Wortlaut", + "example_sentence_native": "Der genaue Wortlaut des Gesetzes ist entscheidend.", + "example_sentence_english": "The exact wording of the law is crucial.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8769 + }, + { + "word": "zerschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smash;to shatter;to break up", + "romanization": "zerschlagen", + "example_sentence_native": "Er wollte die Vase zerschlagen.", + "example_sentence_english": "He wanted to smash the vase.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8770 + }, + { + "word": "zerstört", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destroyed;ruined", + "romanization": "zerstört", + "example_sentence_native": "Das alte Gebäude ist völlig zerstört.", + "example_sentence_english": "The old building is completely destroyed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8771 + }, + { + "word": "zivil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil;civilian", + "romanization": "zivil", + "example_sentence_native": "Er arbeitet im zivilen Bereich.", + "example_sentence_english": "He works in the civilian sector.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8772 + }, + { + "word": "äusserlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "external;outward;superficial", + "romanization": "äusserlich", + "example_sentence_native": "Äusserlich sah alles normal aus.", + "example_sentence_english": "Outwardly, everything looked normal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8773 + }, + { + "word": "abschieben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deport;to push off", + "romanization": "abschieben", + "example_sentence_native": "Die Regierung plant, Kriminelle abzuschieben.", + "example_sentence_english": "The government plans to deport criminals.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schieben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8774 + }, + { + "word": "Abnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decrease;acceptance;removal", + "romanization": "Abnahme", + "example_sentence_native": "Es gab eine deutliche Abnahme der Verkaufszahlen.", + "example_sentence_english": "There was a significant decrease in sales figures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8775 + }, + { + "word": "Abonnent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscriber", + "romanization": "Abonnent", + "example_sentence_native": "Der neue Abonnent hat die Zeitschrift bestellt.", + "example_sentence_english": "The new subscriber ordered the magazine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8776 + }, + { + "word": "Analyst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analyst", + "romanization": "Analyst", + "example_sentence_native": "Der Finanzanalyst präsentierte seine Ergebnisse.", + "example_sentence_english": "The financial analyst presented his results.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8777 + }, + { + "word": "anbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cultivate;to grow;to attach", + "romanization": "anbauen", + "example_sentence_native": "Wir wollen Gemüse im Garten anbauen.", + "example_sentence_english": "We want to grow vegetables in the garden.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8778 + }, + { + "word": "andeuten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hint;to indicate", + "romanization": "andeuten", + "example_sentence_native": "Er wollte nur andeuten, dass er müde war.", + "example_sentence_english": "He only wanted to hint that he was tired.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "deuten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8779 + }, + { + "word": "aufsetzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put on (e.g.;glasses);to land (e.g.;plane)", + "romanization": "aufsetzen", + "example_sentence_native": "Er muss seine Brille aufsetzen.", + "example_sentence_english": "He has to put on his glasses.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8782 + }, + { + "word": "aufsuchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seek out;to look up;to visit (a place)", + "romanization": "aufsuchen", + "example_sentence_native": "Er musste einen Arzt aufsuchen.", + "example_sentence_english": "He had to consult a doctor.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "suchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8783 + }, + { + "word": "Ausdauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "endurance;stamina;perseverance", + "romanization": "Ausdauer", + "example_sentence_native": "Für diesen Marathon braucht man viel Ausdauer.", + "example_sentence_english": "You need a lot of endurance for this marathon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8784 + }, + { + "word": "ausbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break out (e.g.;fire;war;prison)", + "romanization": "ausbrechen", + "example_sentence_native": "Der Vulkan könnte jederzeit ausbrechen.", + "example_sentence_english": "The volcano could erupt at any time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "brechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8785 + }, + { + "word": "auszahlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pay out;to pay off", + "romanization": "auszahlen", + "example_sentence_native": "Die Versicherung wird den Schaden auszahlen.", + "example_sentence_english": "The insurance will pay out the damage.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "zahlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8786 + }, + { + "word": "bekleiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clothe;to hold (an office;position)", + "romanization": "bekleiden", + "example_sentence_native": "Sie bekleidet ein hohes Amt.", + "example_sentence_english": "She holds a high office.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8787 + }, + { + "word": "besichtigen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to visit;to view;to inspect", + "romanization": "besichtigen", + "example_sentence_native": "Wir wollen das Schloss besichtigen.", + "example_sentence_english": "We want to visit the castle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8789 + }, + { + "word": "Dekan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dean (university);deacon (church)", + "romanization": "Dekan", + "example_sentence_native": "Der Dekan der Fakultät hielt eine Rede.", + "example_sentence_english": "The dean of the faculty gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8797 + }, + { + "word": "Einbeziehung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusion", + "romanization": "Einbeziehung", + "example_sentence_native": "Die Einbeziehung aller Meinungen ist wichtig.", + "example_sentence_english": "The inclusion of all opinions is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8801 + }, + { + "word": "einschlagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strike;to take (a path)", + "romanization": "einschlagen", + "example_sentence_native": "Er wird einen neuen Weg einschlagen.", + "example_sentence_english": "He will take a new path.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8802 + }, + { + "word": "Einreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entry (into a country)", + "romanization": "Einreise", + "example_sentence_native": "Die Einreise in das Land ist streng geregelt.", + "example_sentence_english": "Entry into the country is strictly regulated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8803 + }, + { + "word": "Einverständnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;consent", + "romanization": "Einverständnis", + "example_sentence_native": "Wir haben sein Einverständnis erhalten.", + "example_sentence_english": "We have received his consent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8804 + }, + { + "word": "Einweihung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inauguration;dedication;housewarming", + "romanization": "Einweihung", + "example_sentence_native": "Die Einweihung des neuen Gebäudes war ein Erfolg.", + "example_sentence_english": "The inauguration of the new building was a success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8805 + }, + { + "word": "Elfmeter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty kick (in soccer)", + "romanization": "Elfmeter", + "example_sentence_native": "Der Schiedsrichter gab einen Elfmeter.", + "example_sentence_english": "The referee awarded a penalty kick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8806 + }, + { + "word": "erotisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erotic", + "romanization": "erotisch", + "example_sentence_native": "Der Film hatte eine erotische Szene.", + "example_sentence_english": "The film had an erotic scene.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8808 + }, + { + "word": "Faszination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fascination", + "romanization": "Faszination", + "example_sentence_native": "Die Faszination für das Weltall ist groß.", + "example_sentence_english": "The fascination with space is great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8809 + }, + { + "word": "Friede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peace", + "romanization": "Friede", + "example_sentence_native": "Wir wünschen uns alle Friede auf der Welt.", + "example_sentence_english": "We all wish for peace in the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8810 + }, + { + "word": "Gangster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gangster", + "romanization": "Gangster", + "example_sentence_native": "Der Gangster wurde von der Polizei gefasst.", + "example_sentence_english": "The gangster was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8812 + }, + { + "word": "Gemeinsamkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commonality;common ground", + "romanization": "Gemeinsamkeit", + "example_sentence_native": "Wir haben viele Gemeinsamkeiten.", + "example_sentence_english": "We have many commonalities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8813 + }, + { + "word": "genetisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetic", + "romanization": "genetisch", + "example_sentence_native": "Die Krankheit hat eine genetische Ursache.", + "example_sentence_english": "The disease has a genetic cause.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8814 + }, + { + "word": "Geschick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill;dexterity;fate", + "romanization": "Geschick", + "example_sentence_native": "Er zeigte großes Geschick im Umgang mit Werkzeugen.", + "example_sentence_english": "He showed great skill in handling tools.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8815 + }, + { + "word": "taufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to baptize;to christen;to name", + "romanization": "taufen", + "example_sentence_native": "Sie werden ihr Kind am Sonntag taufen lassen.", + "example_sentence_english": "They will have their child baptized on Sunday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8816 + }, + { + "word": "Gin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gin", + "romanization": "Gin", + "example_sentence_native": "Möchtest du einen Gin Tonic?", + "example_sentence_english": "Would you like a gin and tonic?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8817 + }, + { + "word": "Guthaben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credit;balance (account)", + "romanization": "Guthaben", + "example_sentence_native": "Überprüfen Sie Ihr Guthaben auf dem Konto.", + "example_sentence_english": "Check your balance on the account.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8819 + }, + { + "word": "Heimweg", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "way home", + "romanization": "Heimweg", + "example_sentence_native": "Der Heimweg war lang.", + "example_sentence_english": "The way home was long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8820 + }, + { + "word": "Herausgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publication;release", + "romanization": "Herausgabe", + "example_sentence_native": "Die Herausgabe des Buches ist für nächsten Monat geplant.", + "example_sentence_english": "The publication of the book is planned for next month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8821 + }, + { + "word": "hinbekommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manage;to get right", + "romanization": "hinbekommen", + "example_sentence_native": "Ich werde das schon hinbekommen.", + "example_sentence_english": "I will manage that.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "bekommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8823 + }, + { + "word": "Hotelzimmer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hotel room", + "romanization": "Hotelzimmer", + "example_sentence_native": "Das Hotelzimmer war sehr sauber.", + "example_sentence_english": "The hotel room was very clean.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8824 + }, + { + "word": "Häufigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequency", + "romanization": "Häufigkeit", + "example_sentence_native": "Die Häufigkeit der Fehler hat zugenommen.", + "example_sentence_english": "The frequency of errors has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8826 + }, + { + "word": "innovativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovative", + "romanization": "innovativ", + "example_sentence_native": "Das ist eine sehr innovative Idee.", + "example_sentence_english": "That is a very innovative idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8827 + }, + { + "word": "Kaiserin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "empress", + "romanization": "Kaiserin", + "example_sentence_native": "Die Kaiserin trug eine prächtige Krone.", + "example_sentence_english": "The empress wore a magnificent crown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8831 + }, + { + "word": "Kakao", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cocoa", + "romanization": "Kakao", + "example_sentence_native": "Ich trinke gerne heißen Kakao.", + "example_sentence_english": "I like to drink hot cocoa.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8832 + }, + { + "word": "Kinderwagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stroller;pram", + "romanization": "Kinderwagen", + "example_sentence_native": "Der Kinderwagen ist neu.", + "example_sentence_english": "The stroller is new.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8833 + }, + { + "word": "Kiosk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiosk;newsstand", + "romanization": "Kiosk", + "example_sentence_native": "Ich kaufe eine Zeitung am Kiosk.", + "example_sentence_english": "I buy a newspaper at the kiosk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8834 + }, + { + "word": "Klinikum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospital;clinic", + "romanization": "Klinikum", + "example_sentence_native": "Das Klinikum ist bekannt für seine Forschung.", + "example_sentence_english": "The hospital is known for its research.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8835 + }, + { + "word": "Kolumne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "column", + "romanization": "Kolumne", + "example_sentence_native": "Sie schreibt eine wöchentliche Kolumne.", + "example_sentence_english": "She writes a weekly column.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8836 + }, + { + "word": "Konvention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convention", + "romanization": "Konvention", + "example_sentence_native": "Das ist eine alte Konvention.", + "example_sentence_english": "That is an old convention.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8837 + }, + { + "word": "Krug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jug;pitcher", + "romanization": "Krug", + "example_sentence_native": "Der Krug ist voll Wasser.", + "example_sentence_english": "The jug is full of water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8839 + }, + { + "word": "Leitfaden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guideline", + "romanization": "Leitfaden", + "example_sentence_native": "Dieser Leitfaden hilft Ihnen bei der Installation.", + "example_sentence_english": "This guideline helps you with the installation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8841 + }, + { + "word": "Ministerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minister (female)", + "romanization": "Ministerin", + "example_sentence_native": "Die Ministerin hielt eine Rede.", + "example_sentence_english": "The minister gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8844 + }, + { + "word": "Musikvideo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "music video", + "romanization": "Musikvideo", + "example_sentence_native": "Sie hat ein neues Musikvideo veröffentlicht.", + "example_sentence_english": "She released a new music video.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8846 + }, + { + "word": "Narbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scar", + "romanization": "Narbe", + "example_sentence_native": "Er hat eine Narbe am Knie.", + "example_sentence_english": "He has a scar on his knee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8847 + }, + { + "word": "Niere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidney", + "romanization": "Niere", + "example_sentence_native": "Die Niere ist ein wichtiges Organ.", + "example_sentence_english": "The kidney is an important organ.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8849 + }, + { + "word": "Rassist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "racist (person)", + "romanization": "Rassist", + "example_sentence_native": "Er wurde als Rassist bezeichnet.", + "example_sentence_english": "He was called a racist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8851 + }, + { + "word": "Rechtsextremismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right-wing extremism", + "romanization": "Rechtsextremismus", + "example_sentence_native": "Der Kampf gegen Rechtsextremismus ist wichtig.", + "example_sentence_english": "The fight against right-wing extremism is important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8853 + }, + { + "word": "Referenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference", + "romanization": "Referenz", + "example_sentence_native": "Bitte geben Sie die Referenznummer an.", + "example_sentence_english": "Please provide the reference number.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8854 + }, + { + "word": "reflektieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reflect", + "romanization": "reflektieren", + "example_sentence_native": "Er muss über seine Fehler reflektieren.", + "example_sentence_english": "He needs to reflect on his mistakes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8855 + }, + { + "word": "regierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruling", + "romanization": "regierend", + "example_sentence_native": "Die regierende Partei hat die Wahl gewonnen.", + "example_sentence_english": "The ruling party won the election.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8856 + }, + { + "word": "robben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crawl", + "romanization": "robben", + "example_sentence_native": "Das Baby beginnt zu robben.", + "example_sentence_english": "The baby is starting to crawl.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8857 + }, + { + "word": "Rubrik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "category", + "romanization": "Rubrik", + "example_sentence_native": "Dieser Artikel gehört in die Rubrik \"Sport\".", + "example_sentence_english": "This article belongs in the \"Sports\" section.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8858 + }, + { + "word": "Rückspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return match", + "romanization": "Rückspiel", + "example_sentence_native": "Das Rückspiel findet nächste Woche statt.", + "example_sentence_english": "The return match will take place next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8859 + }, + { + "word": "Schacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaft;pit", + "romanization": "Schacht", + "example_sentence_native": "Der Bergmann stieg in den tiefen Schacht hinab.", + "example_sentence_english": "The miner descended into the deep shaft.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8860 + }, + { + "word": "Schlamm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud;sludge", + "romanization": "Schlamm", + "example_sentence_native": "Nach dem Regen war der Weg voller Schlamm.", + "example_sentence_english": "After the rain, the path was full of mud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8861 + }, + { + "word": "schlichtweg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simply;purely;plainly", + "romanization": "schlichtweg", + "example_sentence_native": "Das ist schlichtweg falsch.", + "example_sentence_english": "That is simply wrong.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8863 + }, + { + "word": "Schwelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threshold;sill", + "romanization": "Schwelle", + "example_sentence_native": "Er stolperte über die Schwelle der Tür.", + "example_sentence_english": "He stumbled over the threshold of the door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8864 + }, + { + "word": "Seitensprung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affair;fling", + "romanization": "Seitensprung", + "example_sentence_native": "Ein Seitensprung kann eine Beziehung zerstören.", + "example_sentence_english": "An affair can destroy a relationship.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8865 + }, + { + "word": "Staatsangehörigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationality;citizenship", + "romanization": "Staatsangehörigkeit", + "example_sentence_native": "Bitte geben Sie Ihre Staatsangehörigkeit an.", + "example_sentence_english": "Please state your nationality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8867 + }, + { + "word": "Stapel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stack;pile", + "romanization": "Stapel", + "example_sentence_native": "Er legte die Bücher auf einen Stapel.", + "example_sentence_english": "He put the books on a stack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8868 + }, + { + "word": "Storch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stork", + "romanization": "Storch", + "example_sentence_native": "Der Storch hat sein Nest auf dem Dach gebaut.", + "example_sentence_english": "The stork built its nest on the roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8871 + }, + { + "word": "Tierarzt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "veterinarian", + "romanization": "Tierarzt", + "example_sentence_native": "Wir müssen mit unserem Hund zum Tierarzt.", + "example_sentence_english": "We have to take our dog to the veterinarian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8875 + }, + { + "word": "Titan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titanium;titan", + "romanization": "Titan", + "example_sentence_native": "Titan ist ein sehr starkes Metall.", + "example_sentence_english": "Titanium is a very strong metal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8876 + }, + { + "word": "Todesfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death;fatality", + "romanization": "Todesfall", + "example_sentence_native": "Im Todesfall informieren Sie bitte die Familie.", + "example_sentence_english": "In case of death, please inform the family.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8877 + }, + { + "word": "Tournee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tour", + "romanization": "Tournee", + "example_sentence_native": "Die Band geht im Herbst auf Tournee.", + "example_sentence_english": "The band is going on tour in the autumn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8878 + }, + { + "word": "Unterseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underside;bottom", + "romanization": "Unterseite", + "example_sentence_native": "Auf der Unterseite des Tisches klebte Kaugummi.", + "example_sentence_english": "There was chewing gum stuck to the underside of the table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8879 + }, + { + "word": "verbleiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remain", + "romanization": "verbleiben", + "example_sentence_native": "Er wird bis morgen verbleiben.", + "example_sentence_english": "He will remain until tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8880 + }, + { + "word": "verbleibend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remaining", + "romanization": "verbleibend", + "example_sentence_native": "Die verbleibenden Aufgaben sind noch zu erledigen.", + "example_sentence_english": "The remaining tasks still need to be done.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8881 + }, + { + "word": "verblieben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remaining", + "romanization": "verblieben", + "example_sentence_native": "Die verbliebenen Gäste gingen nach Hause.", + "example_sentence_english": "The remaining guests went home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8882 + }, + { + "word": "Verfügbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "availability", + "romanization": "Verfügbarkeit", + "example_sentence_native": "Die Verfügbarkeit des Produkts ist begrenzt.", + "example_sentence_english": "The availability of the product is limited.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8883 + }, + { + "word": "Verkehrsmittel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "means of transport", + "romanization": "Verkehrsmittel", + "example_sentence_native": "Welches Verkehrsmittel benutzt du?", + "example_sentence_english": "Which means of transport do you use?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8884 + }, + { + "word": "Verknüpfung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "link;connection", + "romanization": "Verknüpfung", + "example_sentence_native": "Es gibt eine direkte Verknüpfung zwischen den beiden Ereignissen.", + "example_sentence_english": "There is a direct link between the two events.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8885 + }, + { + "word": "Vermarktung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing;commercialization", + "romanization": "Vermarktung", + "example_sentence_native": "Die Vermarktung des neuen Produkts beginnt nächste Woche.", + "example_sentence_english": "The marketing of the new product starts next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8886 + }, + { + "word": "vermerken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to note;to record", + "romanization": "vermerken", + "example_sentence_native": "Bitte vermerken Sie das in Ihrem Bericht.", + "example_sentence_english": "Please note that in your report.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8887 + }, + { + "word": "Verschiebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postponement;shift", + "romanization": "Verschiebung", + "example_sentence_native": "Es gab eine Verschiebung des Termins.", + "example_sentence_english": "There was a postponement of the appointment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8888 + }, + { + "word": "vierzig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forty", + "romanization": "vierzig", + "example_sentence_native": "Er ist vierzig Jahre alt.", + "example_sentence_english": "He is forty years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 8889 + }, + { + "word": "Vollständigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completeness", + "romanization": "Vollständigkeit", + "example_sentence_native": "Wir müssen die Vollständigkeit der Daten überprüfen.", + "example_sentence_english": "We need to check the completeness of the data.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8890 + }, + { + "word": "weigern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refuse", + "romanization": "weigern", + "example_sentence_native": "Er weigert sich, die Wahrheit zu sagen.", + "example_sentence_english": "He refuses to tell the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8892 + }, + { + "word": "westdeutsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "West German", + "romanization": "westdeutsch", + "example_sentence_native": "Er kommt aus einer westdeutschen Stadt.", + "example_sentence_english": "He comes from a West German city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8893 + }, + { + "word": "wochenlang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for weeks", + "romanization": "wochenlang", + "example_sentence_native": "Er war wochenlang krank.", + "example_sentence_english": "He was sick for weeks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8895 + }, + { + "word": "zart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tender;delicate", + "romanization": "zart", + "example_sentence_native": "Die Blume ist sehr zart.", + "example_sentence_english": "The flower is very delicate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8897 + }, + { + "word": "Zeremonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceremony", + "romanization": "Zeremonie", + "example_sentence_native": "Die Zeremonie war sehr feierlich.", + "example_sentence_english": "The ceremony was very solemn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8898 + }, + { + "word": "Ziege", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goat", + "romanization": "Ziege", + "example_sentence_native": "Die Ziege frisst Gras.", + "example_sentence_english": "The goat eats grass.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8899 + }, + { + "word": "Zucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breeding;discipline", + "romanization": "Zucht", + "example_sentence_native": "Die Zucht von Hunden erfordert viel Geduld.", + "example_sentence_english": "The breeding of dogs requires a lot of patience.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8900 + }, + { + "word": "zugehörig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belonging;associated", + "romanization": "zugehörig", + "example_sentence_native": "Alle zugehörigen Dokumente wurden gesammelt.", + "example_sentence_english": "All associated documents were collected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8901 + }, + { + "word": "zuschlagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slam (shut);to strike", + "romanization": "zuschlagen", + "example_sentence_native": "Er hörte die Tür zuschlagen.", + "example_sentence_english": "He heard the door slam shut.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8902 + }, + { + "word": "Zuversicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidence;optimism", + "romanization": "Zuversicht", + "example_sentence_native": "Sie blickte mit Zuversicht in die Zukunft.", + "example_sentence_english": "She looked to the future with confidence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8903 + }, + { + "word": "zuweilen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sometimes;occasionally", + "romanization": "zuweilen", + "example_sentence_native": "Zuweilen denke ich an unsere alten Zeiten.", + "example_sentence_english": "Sometimes I think of our old times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8904 + }, + { + "word": "überreichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hand over;to present", + "romanization": "überreichen", + "example_sentence_native": "Er wird die Urkunde persönlich überreichen.", + "example_sentence_english": "He will personally hand over the certificate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8905 + }, + { + "word": "Albtraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightmare", + "romanization": "Albtraum", + "example_sentence_native": "Ich hatte letzte Nacht einen schrecklichen Albtraum.", + "example_sentence_english": "I had a terrible nightmare last night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8906 + }, + { + "word": "Anhaltspunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clue;indication;starting point", + "romanization": "Anhaltspunkt", + "example_sentence_native": "Die Polizei fand einen wichtigen Anhaltspunkt.", + "example_sentence_english": "The police found an important clue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8908 + }, + { + "word": "Animation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animation;entertainment", + "romanization": "Animation", + "example_sentence_native": "Die Animation des Films war beeindruckend.", + "example_sentence_english": "The animation of the film was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8909 + }, + { + "word": "Anreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrival (journey)", + "romanization": "Anreise", + "example_sentence_native": "Die Anreise zum Hotel war sehr angenehm.", + "example_sentence_english": "The journey to the hotel was very pleasant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8911 + }, + { + "word": "Apostel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apostle", + "romanization": "Apostel", + "example_sentence_native": "Die zwölf Apostel folgten Jesus.", + "example_sentence_english": "The twelve apostles followed Jesus.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8913 + }, + { + "word": "Arbeitswelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working world;professional life", + "romanization": "Arbeitswelt", + "example_sentence_native": "Die Digitalisierung verändert die Arbeitswelt.", + "example_sentence_english": "Digitalization is changing the working world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8914 + }, + { + "word": "arrogant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrogant", + "romanization": "arrogant", + "example_sentence_native": "Sein arrogantes Verhalten störte alle.", + "example_sentence_english": "His arrogant behavior bothered everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8915 + }, + { + "word": "Association", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "association", + "romanization": "Association", + "example_sentence_native": "Er hat eine starke Association mit diesem Lied.", + "example_sentence_english": "He has a strong association with this song.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8916 + }, + { + "word": "Baumwolle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cotton", + "romanization": "Baumwolle", + "example_sentence_native": "Dieses T-Shirt ist aus reiner Baumwolle.", + "example_sentence_english": "This T-shirt is made of pure cotton.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8917 + }, + { + "word": "Bauwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "structure;building;edifice", + "romanization": "Bauwerk", + "example_sentence_native": "Das alte Bauwerk ist ein Wahrzeichen der Stadt.", + "example_sentence_english": "The old structure is a landmark of the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8918 + }, + { + "word": "Bebauung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development;building (area)", + "romanization": "Bebauung", + "example_sentence_native": "Die neue Bebauung wird das Stadtbild verändern.", + "example_sentence_english": "The new development will change the cityscape.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8919 + }, + { + "word": "befriedigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to satisfy;to appease", + "romanization": "befriedigen", + "example_sentence_native": "Er konnte ihre Erwartungen nicht befriedigen.", + "example_sentence_english": "He could not satisfy her expectations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8920 + }, + { + "word": "bereuen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to regret", + "romanization": "bereuen", + "example_sentence_native": "Ich bereue meine Entscheidung nicht.", + "example_sentence_english": "I do not regret my decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8921 + }, + { + "word": "Betonung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emphasis;accentuation", + "romanization": "Betonung", + "example_sentence_native": "Die Betonung liegt auf dem ersten Wort.", + "example_sentence_english": "The emphasis is on the first word.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8922 + }, + { + "word": "betteln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beg", + "romanization": "betteln", + "example_sentence_native": "Er musste um Essen betteln.", + "example_sentence_english": "He had to beg for food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8923 + }, + { + "word": "blass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pale;faint", + "romanization": "blass", + "example_sentence_native": "Sie sah sehr blass aus.", + "example_sentence_english": "She looked very pale.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8925 + }, + { + "word": "Bridge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bridge (card game)", + "romanization": "Bridge", + "example_sentence_native": "Sie spielen jeden Abend Bridge.", + "example_sentence_english": "They play Bridge every evening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8926 + }, + { + "word": "Bundesverband", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federal association;federation", + "romanization": "Bundesverband", + "example_sentence_native": "Der Bundesverband hat eine neue Richtlinie erlassen.", + "example_sentence_english": "The federal association has issued a new guideline.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8928 + }, + { + "word": "Champagner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "champagne", + "romanization": "Champagner", + "example_sentence_native": "Wir haben mit Champagner angestoßen.", + "example_sentence_english": "We toasted with champagne.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8929 + }, + { + "word": "Chemikalie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemical", + "romanization": "Chemikalie", + "example_sentence_native": "Diese Chemikalie ist gefährlich.", + "example_sentence_english": "This chemical is dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8930 + }, + { + "word": "Cockpit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cockpit", + "romanization": "Cockpit", + "example_sentence_native": "Der Pilot sitzt im Cockpit.", + "example_sentence_english": "The pilot sits in the cockpit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8931 + }, + { + "word": "cyber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cyber-", + "romanization": "cyber", + "example_sentence_native": "Es gibt viele Cyber-Angriffe heutzutage.", + "example_sentence_english": "There are many cyber attacks nowadays.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8932 + }, + { + "word": "differenzieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to differentiate;to distinguish", + "romanization": "differenzieren", + "example_sentence_native": "Man muss zwischen den beiden Begriffen differenzieren.", + "example_sentence_english": "One must differentiate between the two terms.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8933 + }, + { + "word": "doll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great;fantastic (informal)", + "romanization": "doll", + "example_sentence_native": "Das ist eine dolle Idee!", + "example_sentence_english": "That's a great idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8934 + }, + { + "word": "Doping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doping", + "romanization": "Doping", + "example_sentence_native": "Doping ist im Sport verboten.", + "example_sentence_english": "Doping is forbidden in sports.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8935 + }, + { + "word": "Echtzeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "real-time", + "romanization": "Echtzeit", + "example_sentence_native": "Die Daten werden in Echtzeit aktualisiert.", + "example_sentence_english": "The data is updated in real-time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8936 + }, + { + "word": "Einfahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "entrance;driveway", + "romanization": "Einfahrt", + "example_sentence_native": "Bitte blockieren Sie nicht die Einfahrt.", + "example_sentence_english": "Please do not block the driveway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8937 + }, + { + "word": "einschlägig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relevant;pertinent", + "romanization": "einschlägig", + "example_sentence_native": "Er hat einschlägige Erfahrungen in diesem Bereich.", + "example_sentence_english": "He has relevant experience in this field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8938 + }, + { + "word": "Einwilligung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consent;approval", + "romanization": "Einwilligung", + "example_sentence_native": "Er gab seine Einwilligung zur Operation.", + "example_sentence_english": "He gave his consent for the operation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8939 + }, + { + "word": "endlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endless", + "romanization": "endlos", + "example_sentence_native": "Der Horizont schien endlos zu sein.", + "example_sentence_english": "The horizon seemed to be endless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8941 + }, + { + "word": "Erläuterung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explanation", + "romanization": "Erläuterung", + "example_sentence_native": "Bitte geben Sie eine Erläuterung zu diesem Punkt.", + "example_sentence_english": "Please provide an explanation for this point.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8942 + }, + { + "word": "Fachhochschule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university of applied sciences", + "romanization": "Fachhochschule", + "example_sentence_native": "Er studiert an einer Fachhochschule in Berlin.", + "example_sentence_english": "He studies at a university of applied sciences in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8944 + }, + { + "word": "Fauna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fauna", + "romanization": "Fauna", + "example_sentence_native": "Die Fauna dieser Region ist sehr vielfältig.", + "example_sentence_english": "The fauna of this region is very diverse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8945 + }, + { + "word": "Förster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forester", + "romanization": "Förster", + "example_sentence_native": "Der Förster kümmert sich um den Wald.", + "example_sentence_english": "The forester takes care of the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8948 + }, + { + "word": "Führungskraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executive", + "romanization": "Führungskraft", + "example_sentence_native": "Sie ist eine erfahrene Führungskraft in ihrem Unternehmen.", + "example_sentence_english": "She is an experienced executive in her company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8949 + }, + { + "word": "formen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to form;to shape", + "romanization": "formen", + "example_sentence_native": "Der Künstler kann Ton zu schönen Skulpturen formen.", + "example_sentence_english": "The artist can form clay into beautiful sculptures.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8951 + }, + { + "word": "Geiger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violinist", + "romanization": "Geiger", + "example_sentence_native": "Der Geiger spielte ein wunderschönes Stück.", + "example_sentence_english": "The violinist played a beautiful piece.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8952 + }, + { + "word": "generieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to generate", + "romanization": "generieren", + "example_sentence_native": "Das Kraftwerk kann viel Strom generieren.", + "example_sentence_english": "The power plant can generate a lot of electricity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8953 + }, + { + "word": "Geometrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geometry", + "romanization": "Geometrie", + "example_sentence_native": "In der Schule lernen wir Geometrie.", + "example_sentence_english": "In school, we learn geometry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8954 + }, + { + "word": "Gesetzentwurf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bill (draft law)", + "romanization": "Gesetzentwurf", + "example_sentence_native": "Der neue Gesetzentwurf wird im Parlament diskutiert.", + "example_sentence_english": "The new bill is being discussed in parliament.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8955 + }, + { + "word": "Gewohnheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habit", + "romanization": "Gewohnheit", + "example_sentence_native": "Es ist eine gute Gewohnheit, jeden Morgen Sport zu treiben.", + "example_sentence_english": "It's a good habit to exercise every morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8956 + }, + { + "word": "Gran", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grain (unit of weight)", + "romanization": "Gran", + "example_sentence_native": "Ein Gran ist eine sehr kleine Maßeinheit.", + "example_sentence_english": "A grain is a very small unit of measurement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8957 + }, + { + "word": "gängig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "common;customary", + "romanization": "gängig", + "example_sentence_native": "Diese Methode ist heutzutage sehr gängig.", + "example_sentence_english": "This method is very common nowadays.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8958 + }, + { + "word": "Hai", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shark", + "romanization": "Hai", + "example_sentence_native": "Der Hai schwimmt schnell im Ozean.", + "example_sentence_english": "The shark swims fast in the ocean.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8959 + }, + { + "word": "Hauptschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary modern school (type of German secondary school)", + "romanization": "Hauptschule", + "example_sentence_native": "Nach der Grundschule ging er auf die Hauptschule.", + "example_sentence_english": "After primary school, he went to the Hauptschule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8961 + }, + { + "word": "Hausarbeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "housework;term paper", + "romanization": "Hausarbeit", + "example_sentence_native": "Ich muss noch meine Hausarbeit für die Universität schreiben.", + "example_sentence_english": "I still have to write my term paper for the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8962 + }, + { + "word": "Hinterkopf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "back of the head", + "romanization": "Hinterkopf", + "example_sentence_native": "Er spürte einen Schlag auf den Hinterkopf.", + "example_sentence_english": "He felt a blow to the back of his head.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8964 + }, + { + "word": "Hörbuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audiobook", + "romanization": "Hörbuch", + "example_sentence_native": "Ich höre gerne Hörbücher auf langen Fahrten.", + "example_sentence_english": "I like listening to audiobooks on long drives.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8966 + }, + { + "word": "Imperium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empire", + "romanization": "Imperium", + "example_sentence_native": "Das Römische Imperium war sehr mächtig.", + "example_sentence_english": "The Roman Empire was very powerful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8968 + }, + { + "word": "involvieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to involve", + "romanization": "involvieren", + "example_sentence_native": "Wir müssen alle Beteiligten in den Prozess involvieren.", + "example_sentence_english": "We need to involve all parties in the process.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8969 + }, + { + "word": "jubeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheer;to rejoice", + "romanization": "jubeln", + "example_sentence_native": "Die Fans begannen zu jubeln, als das Tor fiel.", + "example_sentence_english": "The fans started to cheer when the goal was scored.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8971 + }, + { + "word": "Kanone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannon", + "romanization": "Kanone", + "example_sentence_native": "Die alte Kanone stand als Denkmal auf dem Hügel.", + "example_sentence_english": "The old cannon stood as a monument on the hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8972 + }, + { + "word": "Konstellation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constellation;configuration", + "romanization": "Konstellation", + "example_sentence_native": "Die politische Konstellation ist sehr komplex.", + "example_sentence_english": "The political constellation is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8975 + }, + { + "word": "konstruktiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constructive", + "romanization": "konstruktiv", + "example_sentence_native": "Wir brauchen konstruktive Kritik, um uns zu verbessern.", + "example_sentence_english": "We need constructive criticism to improve.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8976 + }, + { + "word": "kooperieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cooperate", + "romanization": "kooperieren", + "example_sentence_native": "Die beiden Unternehmen beschlossen, zu kooperieren.", + "example_sentence_english": "The two companies decided to cooperate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8977 + }, + { + "word": "Kost", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "food;fare", + "romanization": "Kost", + "example_sentence_native": "Die Kost im Krankenhaus war sehr einfach.", + "example_sentence_english": "The food in the hospital was very simple.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8978 + }, + { + "word": "Krönung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coronation", + "romanization": "Krönung", + "example_sentence_native": "Die Krönung des neuen Königs war ein großes Ereignis.", + "example_sentence_english": "The coronation of the new king was a big event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8979 + }, + { + "word": "Landesliga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regional league", + "romanization": "Landesliga", + "example_sentence_native": "Die Landesliga ist eine Fußballliga in Deutschland.", + "example_sentence_english": "The regional league is a football league in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8980 + }, + { + "word": "Location", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "location (venue)", + "romanization": "Location", + "example_sentence_native": "Wir suchen noch eine passende Location für die Party.", + "example_sentence_english": "We are still looking for a suitable location for the party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8983 + }, + { + "word": "Macher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doer;maker", + "romanization": "Macher", + "example_sentence_native": "Er ist ein echter Macher und setzt seine Ideen immer um.", + "example_sentence_english": "He is a real doer and always implements his ideas.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8984 + }, + { + "word": "manuell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manual", + "romanization": "manuell", + "example_sentence_native": "Die Einstellung muss manuell vorgenommen werden.", + "example_sentence_english": "The setting must be done manually.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8986 + }, + { + "word": "Market", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "market", + "romanization": "Market", + "example_sentence_native": "Der Market für Elektroautos wächst schnell.", + "example_sentence_english": "The market for electric cars is growing fast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8988 + }, + { + "word": "mathematisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mathematical", + "romanization": "mathematisch", + "example_sentence_native": "Das Problem erfordert eine mathematische Lösung.", + "example_sentence_english": "The problem requires a mathematical solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 8989 + }, + { + "word": "Matratze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mattress", + "romanization": "Matratze", + "example_sentence_native": "Ich brauche eine neue Matratze für mein Bett.", + "example_sentence_english": "I need a new mattress for my bed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8990 + }, + { + "word": "Mob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mob;crowd", + "romanization": "Mob", + "example_sentence_native": "Der wütende Mob versammelte sich vor dem Gebäude.", + "example_sentence_english": "The angry mob gathered in front of the building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8992 + }, + { + "word": "Moderatorin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female presenter;moderator", + "romanization": "Moderatorin", + "example_sentence_native": "Die Moderatorin führte gekonnt durch die Sendung.", + "example_sentence_english": "The female presenter skillfully guided through the show.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8993 + }, + { + "word": "monatelang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for months", + "romanization": "monatelang", + "example_sentence_native": "Er war monatelang im Ausland.", + "example_sentence_english": "He was abroad for months.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 8994 + }, + { + "word": "Nachhilfe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutoring;extra help", + "romanization": "Nachhilfe", + "example_sentence_native": "Mein Sohn bekommt Nachhilfe in Mathematik.", + "example_sentence_english": "My son gets tutoring in mathematics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8995 + }, + { + "word": "Neutralität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutrality", + "romanization": "Neutralität", + "example_sentence_native": "Die Schweiz ist bekannt für ihre Neutralität.", + "example_sentence_english": "Switzerland is known for its neutrality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8996 + }, + { + "word": "nähen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sew", + "romanization": "nähen", + "example_sentence_native": "Meine Großmutter kann sehr gut nähen.", + "example_sentence_english": "My grandmother can sew very well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 8998 + }, + { + "word": "Oldtimer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vintage car;classic car", + "romanization": "Oldtimer", + "example_sentence_native": "Er besitzt einen wunderschönen Oldtimer aus den 60er Jahren.", + "example_sentence_english": "He owns a beautiful vintage car from the 60s.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 8999 + }, + { + "word": "Olympiasieger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Olympic champion", + "romanization": "Olympiasieger", + "example_sentence_native": "Der Olympiasieger wurde von der Menge bejubelt.", + "example_sentence_english": "The Olympic champion was cheered by the crowd.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9000 + }, + { + "word": "Parkhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parking garage", + "romanization": "Parkhaus", + "example_sentence_native": "Wir haben unser Auto im Parkhaus abgestellt.", + "example_sentence_english": "We parked our car in the parking garage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9001 + }, + { + "word": "Pony", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pony", + "romanization": "Pony", + "example_sentence_native": "Das kleine Pony graste auf der Wiese.", + "example_sentence_english": "The small pony grazed in the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9005 + }, + { + "word": "Porzellan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porcelain", + "romanization": "Porzellan", + "example_sentence_native": "Das Geschirr ist aus feinem Porzellan.", + "example_sentence_english": "The dishes are made of fine porcelain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9006 + }, + { + "word": "Privatperson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private individual", + "romanization": "Privatperson", + "example_sentence_native": "Als Privatperson hat man bestimmte Rechte.", + "example_sentence_english": "As a private individual, one has certain rights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9007 + }, + { + "word": "rau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough;harsh", + "romanization": "rau", + "example_sentence_native": "Die Oberfläche des Steins war rau.", + "example_sentence_english": "The surface of the stone was rough.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9008 + }, + { + "word": "rheinisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Rhenish (relating to the Rhine)", + "romanization": "rheinisch", + "example_sentence_native": "Er spricht einen rheinischen Dialekt.", + "example_sentence_english": "He speaks a Rhenish dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9009 + }, + { + "word": "Rotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotation", + "romanization": "Rotation", + "example_sentence_native": "Die Rotation der Erde verursacht Tag und Nacht.", + "example_sentence_english": "The rotation of the Earth causes day and night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9010 + }, + { + "word": "rundum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "all around;completely", + "romanization": "rundum", + "example_sentence_native": "Das Haus ist rundum von Bäumen umgeben.", + "example_sentence_english": "The house is surrounded by trees all around.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 9011 + }, + { + "word": "Sale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sale", + "romanization": "Sale", + "example_sentence_native": "Der Sale beginnt nächste Woche.", + "example_sentence_english": "The sale starts next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9013 + }, + { + "word": "Schreibweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spelling;orthography", + "romanization": "Schreibweise", + "example_sentence_native": "Die Schreibweise dieses Wortes ist ungewöhnlich.", + "example_sentence_english": "The spelling of this word is unusual.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9015 + }, + { + "word": "Sexismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexism", + "romanization": "Sexismus", + "example_sentence_native": "Sexismus ist ein ernstes Problem in der Gesellschaft.", + "example_sentence_english": "Sexism is a serious problem in society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9017 + }, + { + "word": "Singer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singer", + "romanization": "Singer", + "example_sentence_native": "Der Singer hat eine schöne Stimme.", + "example_sentence_english": "The singer has a beautiful voice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9020 + }, + { + "word": "Spielfeld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playing field", + "romanization": "Spielfeld", + "example_sentence_native": "Das Spielfeld war nass vom Regen.", + "example_sentence_english": "The playing field was wet from the rain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9022 + }, + { + "word": "Spionage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "espionage", + "romanization": "Spionage", + "example_sentence_native": "Die Spionage ist ein ernstes Verbrechen.", + "example_sentence_english": "Espionage is a serious crime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9023 + }, + { + "word": "Spital", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospital", + "romanization": "Spital", + "example_sentence_native": "Er musste ins Spital gebracht werden.", + "example_sentence_english": "He had to be taken to the hospital.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9024 + }, + { + "word": "Spoiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spoiler", + "romanization": "Spoiler", + "example_sentence_native": "Bitte gib mir keinen Spoiler zum Film.", + "example_sentence_english": "Please don't give me a spoiler for the movie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9025 + }, + { + "word": "Steak", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "steak", + "romanization": "Steak", + "example_sentence_native": "Ich möchte ein Steak zum Abendessen.", + "example_sentence_english": "I would like a steak for dinner.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9026 + }, + { + "word": "Trilogie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trilogy", + "romanization": "Trilogie", + "example_sentence_native": "Die Herr der Ringe Trilogie ist sehr bekannt.", + "example_sentence_english": "The Lord of the Rings trilogy is very famous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9028 + }, + { + "word": "Triple", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triple", + "romanization": "Triple", + "example_sentence_native": "Das Team gewann das Triple in dieser Saison.", + "example_sentence_english": "The team won the triple this season.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9029 + }, + { + "word": "Tumor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tumor", + "romanization": "Tumor", + "example_sentence_native": "Der Arzt entdeckte einen Tumor.", + "example_sentence_english": "The doctor discovered a tumor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9030 + }, + { + "word": "tönen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sound", + "romanization": "tönen", + "example_sentence_native": "Die Glocken tönen laut.", + "example_sentence_english": "The bells sound loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9031 + }, + { + "word": "Umweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detour", + "romanization": "Umweg", + "example_sentence_native": "Wir mussten einen Umweg fahren.", + "example_sentence_english": "We had to take a detour.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9032 + }, + { + "word": "unterlassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to omit;to refrain from", + "romanization": "unterlassen", + "example_sentence_native": "Bitte unterlassen Sie solche Bemerkungen.", + "example_sentence_english": "Please refrain from such remarks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9033 + }, + { + "word": "unterziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undergo;to subject to", + "romanization": "unterziehen", + "example_sentence_native": "Er musste sich einer Operation unterziehen.", + "example_sentence_english": "He had to undergo an operation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9034 + }, + { + "word": "Vampir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vampire", + "romanization": "Vampir", + "example_sentence_native": "Der Vampir erwachte in der Nacht.", + "example_sentence_english": "The vampire awoke in the night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9035 + }, + { + "word": "vereinbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatible;reconcilable", + "romanization": "vereinbar", + "example_sentence_native": "Diese beiden Ideen sind nicht vereinbar.", + "example_sentence_english": "These two ideas are not compatible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9036 + }, + { + "word": "vermischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix;to blend", + "romanization": "vermischen", + "example_sentence_native": "Man sollte Öl und Wasser nicht vermischen.", + "example_sentence_english": "One should not mix oil and water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9037 + }, + { + "word": "Verschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closure;fastener;cap", + "romanization": "Verschluss", + "example_sentence_native": "Der Verschluss der Flasche war kaputt.", + "example_sentence_english": "The cap of the bottle was broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9038 + }, + { + "word": "verüben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit (a crime);to perpetrate", + "romanization": "verüben", + "example_sentence_native": "Er wurde beschuldigt, ein Verbrechen verübt zu haben.", + "example_sentence_english": "He was accused of having committed a crime.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9039 + }, + { + "word": "vorangegangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preceding;previous", + "romanization": "vorangegangen", + "example_sentence_native": "Die vorangegangenen Ereignisse waren sehr wichtig.", + "example_sentence_english": "The preceding events were very important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9040 + }, + { + "word": "Vorzug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantage;preference", + "romanization": "Vorzug", + "example_sentence_native": "Das ist ein großer Vorzug dieses Modells.", + "example_sentence_english": "That is a great advantage of this model.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9041 + }, + { + "word": "Wirtschaftspolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economic policy", + "romanization": "Wirtschaftspolitik", + "example_sentence_native": "Die Regierung diskutiert die neue Wirtschaftspolitik.", + "example_sentence_english": "The government is discussing the new economic policy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9046 + }, + { + "word": "zig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dozens of;scores of;many", + "romanization": "zig", + "example_sentence_native": "Ich habe zig Mal versucht, ihn anzurufen.", + "example_sentence_english": "I tried to call him dozens of times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 9050 + }, + { + "word": "Zuflucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refuge;sanctuary", + "romanization": "Zuflucht", + "example_sentence_native": "Sie suchten Zuflucht in der alten Kirche.", + "example_sentence_english": "They sought refuge in the old church.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9051 + }, + { + "word": "Zurückhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restraint;reservation;caution", + "romanization": "Zurückhaltung", + "example_sentence_native": "Er zeigte große Zurückhaltung bei der Diskussion.", + "example_sentence_english": "He showed great restraint in the discussion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9052 + }, + { + "word": "zusammenhängen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be connected;to be related", + "romanization": "zusammenhängen", + "example_sentence_native": "Diese beiden Probleme hängen eng zusammen.", + "example_sentence_english": "These two problems are closely connected.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "hängen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9053 + }, + { + "word": "überweisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transfer (money);to refer (patient)", + "romanization": "überweisen", + "example_sentence_native": "Ich muss das Geld auf dein Konto überweisen.", + "example_sentence_english": "I need to transfer the money to your account.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9055 + }, + { + "word": "anschaulich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vivid;clear;illustrative", + "romanization": "anschaulich", + "example_sentence_native": "Er erklärte das Thema sehr anschaulich.", + "example_sentence_english": "He explained the topic very vividly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9058 + }, + { + "word": "Arbeitskreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working group;committee", + "romanization": "Arbeitskreis", + "example_sentence_native": "Der Arbeitskreis trifft sich nächste Woche.", + "example_sentence_english": "The working group meets next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9059 + }, + { + "word": "aufgeführt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listed;performed", + "romanization": "aufgeführt", + "example_sentence_native": "Alle Namen sind in der Liste aufgeführt.", + "example_sentence_english": "All names are listed in the list.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9060 + }, + { + "word": "Aufschrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outcry;shout", + "romanization": "Aufschrei", + "example_sentence_native": "Der Aufschrei der Menge war ohrenbetäubend.", + "example_sentence_english": "The outcry of the crowd was deafening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9061 + }, + { + "word": "Bahnsteig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "platform (train)", + "romanization": "Bahnsteig", + "example_sentence_native": "Der Zug fährt von Bahnsteig 3 ab.", + "example_sentence_english": "The train departs from platform 3.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9062 + }, + { + "word": "Baumarkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "DIY store;hardware store", + "romanization": "Baumarkt", + "example_sentence_native": "Wir müssen zum Baumarkt, um Farbe zu kaufen.", + "example_sentence_english": "We need to go to the DIY store to buy paint.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9063 + }, + { + "word": "belegt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occupied;proven", + "romanization": "belegt", + "example_sentence_native": "Der Tisch ist belegt.", + "example_sentence_english": "The table is occupied.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9065 + }, + { + "word": "Berufsschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vocational school", + "romanization": "Berufsschule", + "example_sentence_native": "Nach der Hauptschule ging er auf die Berufsschule.", + "example_sentence_english": "After junior high, he went to vocational school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9066 + }, + { + "word": "besetzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occupied;busy", + "romanization": "besetzt", + "example_sentence_native": "Die Leitung ist besetzt.", + "example_sentence_english": "The line is busy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9067 + }, + { + "word": "Betriebsrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "works council", + "romanization": "Betriebsrat", + "example_sentence_native": "Der Betriebsrat vertritt die Interessen der Arbeitnehmer.", + "example_sentence_english": "The works council represents the interests of the employees.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9068 + }, + { + "word": "Blockade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blockade;obstruction", + "romanization": "Blockade", + "example_sentence_native": "Die Blockade der Straße führte zu langen Staus.", + "example_sentence_english": "The blockade of the road led to long traffic jams.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9069 + }, + { + "word": "Bücherei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "library (public)", + "romanization": "Bücherei", + "example_sentence_native": "Ich leihe mir Bücher in der Bücherei aus.", + "example_sentence_english": "I borrow books from the library.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9070 + }, + { + "word": "Cheftrainer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "head coach", + "romanization": "Cheftrainer", + "example_sentence_native": "Der Cheftrainer gab eine Pressekonferenz.", + "example_sentence_english": "The head coach gave a press conference.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9072 + }, + { + "word": "Dasein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existence;being", + "romanization": "Dasein", + "example_sentence_native": "Das menschliche Dasein ist komplex.", + "example_sentence_english": "Human existence is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9076 + }, + { + "word": "diplomatisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomatic", + "romanization": "diplomatisch", + "example_sentence_native": "Er versuchte, eine diplomatische Lösung zu finden.", + "example_sentence_english": "He tried to find a diplomatic solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9079 + }, + { + "word": "Dozent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lecturer", + "romanization": "Dozent", + "example_sentence_native": "Der Dozent erklärte die komplexe Theorie.", + "example_sentence_english": "The lecturer explained the complex theory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9081 + }, + { + "word": "dual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dual", + "romanization": "dual", + "example_sentence_native": "Das System hat eine duale Funktion.", + "example_sentence_english": "The system has a dual function.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9082 + }, + { + "word": "dynamisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamic", + "romanization": "dynamisch", + "example_sentence_native": "Sie ist eine sehr dynamische Person.", + "example_sentence_english": "She is a very dynamic person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9084 + }, + { + "word": "einteilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to divide;to allocate", + "romanization": "einteilen", + "example_sentence_native": "Wir müssen die Arbeit gut einteilen.", + "example_sentence_english": "We need to divide the work well.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "teilen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9086 + }, + { + "word": "Eiweiss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protein;egg white", + "romanization": "Eiweiss", + "example_sentence_native": "Eiweiss ist wichtig für den Muskelaufbau.", + "example_sentence_english": "Protein is important for muscle building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9087 + }, + { + "word": "Elternhaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parental home", + "romanization": "Elternhaus", + "example_sentence_native": "Sie kehrte nach dem Studium in ihr Elternhaus zurück.", + "example_sentence_english": "She returned to her parental home after her studies.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9088 + }, + { + "word": "entsorgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispose of", + "romanization": "entsorgen", + "example_sentence_native": "Man muss den Müll richtig entsorgen.", + "example_sentence_english": "One must dispose of the waste properly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9089 + }, + { + "word": "erfreulich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasing;gratifying", + "romanization": "erfreulich", + "example_sentence_native": "Das Ergebnis war sehr erfreulich.", + "example_sentence_english": "The result was very pleasing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9090 + }, + { + "word": "eskalieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to escalate", + "romanization": "eskalieren", + "example_sentence_native": "Die Situation droht zu eskalieren.", + "example_sentence_english": "The situation threatens to escalate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9091 + }, + { + "word": "existierend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existing", + "romanization": "existierend", + "example_sentence_native": "Wir müssen die existierenden Probleme lösen.", + "example_sentence_english": "We need to solve the existing problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9094 + }, + { + "word": "farbig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colorful;colored", + "romanization": "farbig", + "example_sentence_native": "Das Bild ist sehr farbig.", + "example_sentence_english": "The picture is very colorful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9095 + }, + { + "word": "Fernsehsender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "TV channel", + "romanization": "Fernsehsender", + "example_sentence_native": "Dieser Fernsehsender zeigt viele Dokumentationen.", + "example_sentence_english": "This TV channel shows many documentaries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9096 + }, + { + "word": "Festschrift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commemorative publication", + "romanization": "Festschrift", + "example_sentence_native": "Die Festschrift wurde zu Ehren des Professors herausgegeben.", + "example_sentence_english": "The commemorative publication was issued in honor of the professor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9097 + }, + { + "word": "Fluggesellschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airline", + "romanization": "Fluggesellschaft", + "example_sentence_native": "Die Fluggesellschaft hat den Flug annulliert.", + "example_sentence_english": "The airline cancelled the flight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9099 + }, + { + "word": "fungieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to function;to act as", + "romanization": "fungieren", + "example_sentence_native": "Er wird als Berater fungieren.", + "example_sentence_english": "He will act as an advisor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9101 + }, + { + "word": "Gabel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fork", + "romanization": "Gabel", + "example_sentence_native": "Wo ist die Gabel?", + "example_sentence_english": "Where is the fork?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9102 + }, + { + "word": "gefordert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demanded;challenged", + "romanization": "gefordert", + "example_sentence_native": "Das ist eine sehr geforderte Aufgabe.", + "example_sentence_english": "That is a very demanding task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9103 + }, + { + "word": "Gesamtheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entirety;totality", + "romanization": "Gesamtheit", + "example_sentence_native": "Die Gesamtheit der Daten ist beeindruckend.", + "example_sentence_english": "The entirety of the data is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9105 + }, + { + "word": "schmücken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decorate;to adorn", + "romanization": "schmücken", + "example_sentence_native": "Wir schmücken den Weihnachtsbaum.", + "example_sentence_english": "We are decorating the Christmas tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9106 + }, + { + "word": "Gleichung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equation", + "romanization": "Gleichung", + "example_sentence_native": "Lösen Sie die Gleichung.", + "example_sentence_english": "Solve the equation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9107 + }, + { + "word": "Handelskammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chamber of commerce", + "romanization": "Handelskammer", + "example_sentence_native": "Die Handelskammer fördert die Wirtschaft.", + "example_sentence_english": "The chamber of commerce promotes the economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9111 + }, + { + "word": "Hansestadt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hanseatic city", + "romanization": "Hansestadt", + "example_sentence_native": "Hamburg ist eine bekannte Hansestadt.", + "example_sentence_english": "Hamburg is a well-known Hanseatic city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9112 + }, + { + "word": "Holländer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dutchman", + "romanization": "Holländer", + "example_sentence_native": "Er ist ein Holländer.", + "example_sentence_english": "He is a Dutchman.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9115 + }, + { + "word": "Hunderttausend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one hundred thousand", + "romanization": "Hunderttausend", + "example_sentence_native": "Es waren Hunderttausend Menschen auf dem Platz.", + "example_sentence_english": "There were one hundred thousand people in the square.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9116 + }, + { + "word": "Identifikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identification", + "romanization": "Identifikation", + "example_sentence_native": "Die Identifikation des Täters war schwierig.", + "example_sentence_english": "The identification of the perpetrator was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9117 + }, + { + "word": "Immunität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immunity", + "romanization": "Immunität", + "example_sentence_native": "Er genießt diplomatische Immunität.", + "example_sentence_english": "He enjoys diplomatic immunity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9118 + }, + { + "word": "Integrität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrity", + "romanization": "Integrität", + "example_sentence_native": "Er ist bekannt für seine Integrität.", + "example_sentence_english": "He is known for his integrity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9120 + }, + { + "word": "knien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to kneel", + "romanization": "knien", + "example_sentence_native": "Er musste knien, um das Kind zu erreichen.", + "example_sentence_english": "He had to kneel to reach the child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9124 + }, + { + "word": "Lastwagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truck;lorry", + "romanization": "Lastwagen", + "example_sentence_native": "Der Lastwagen lieferte die Waren.", + "example_sentence_english": "The truck delivered the goods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9125 + }, + { + "word": "Lautstärke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volume (of sound)", + "romanization": "Lautstärke", + "example_sentence_native": "Bitte reduziere die Lautstärke.", + "example_sentence_english": "Please reduce the volume.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9126 + }, + { + "word": "Lebensdauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifespan;service life", + "romanization": "Lebensdauer", + "example_sentence_native": "Die Lebensdauer dieses Produkts ist sehr lang.", + "example_sentence_english": "The lifespan of this product is very long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9128 + }, + { + "word": "Lektion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lesson", + "romanization": "Lektion", + "example_sentence_native": "Wir haben heute eine neue Lektion gelernt.", + "example_sentence_english": "We learned a new lesson today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9129 + }, + { + "word": "Meisterwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masterpiece", + "romanization": "Meisterwerk", + "example_sentence_native": "Dieses Gemälde ist ein wahres Meisterwerk.", + "example_sentence_english": "This painting is a true masterpiece.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9135 + }, + { + "word": "Motorsport", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorsport", + "romanization": "Motorsport", + "example_sentence_native": "Er ist ein großer Fan von Motorsport.", + "example_sentence_english": "He is a big fan of motorsport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9137 + }, + { + "word": "Pakt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pact;agreement", + "romanization": "Pakt", + "example_sentence_native": "Sie haben einen Pakt geschlossen.", + "example_sentence_english": "They made a pact.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9141 + }, + { + "word": "progressiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive", + "romanization": "progressiv", + "example_sentence_native": "Sie hat sehr progressive Ideen.", + "example_sentence_english": "She has very progressive ideas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9145 + }, + { + "word": "Provokation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocation", + "romanization": "Provokation", + "example_sentence_native": "Seine Worte waren eine Provokation.", + "example_sentence_english": "His words were a provocation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9146 + }, + { + "word": "Präsidium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presidium;executive board", + "romanization": "Präsidium", + "example_sentence_native": "Das Präsidium hat die Entscheidung getroffen.", + "example_sentence_english": "The presidium made the decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9147 + }, + { + "word": "rauschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rustle;to roar;to gush", + "romanization": "rauschen", + "example_sentence_native": "Der Wind rauschte durch die Bäume.", + "example_sentence_english": "The wind rustled through the trees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9148 + }, + { + "word": "Realismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realism", + "romanization": "Realismus", + "example_sentence_native": "Er betrachtet die Situation mit Realismus.", + "example_sentence_english": "He views the situation with realism.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9149 + }, + { + "word": "Rechtslage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal situation", + "romanization": "Rechtslage", + "example_sentence_native": "Die Rechtslage ist kompliziert.", + "example_sentence_english": "The legal situation is complicated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9150 + }, + { + "word": "reiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rub;to grate", + "romanization": "reiben", + "example_sentence_native": "Sie rieb sich die Augen.", + "example_sentence_english": "She rubbed her eyes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9151 + }, + { + "word": "Richterin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female judge", + "romanization": "Richterin", + "example_sentence_native": "Die Richterin verkündete das Urteil.", + "example_sentence_english": "The judge (female) announced the verdict.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9152 + }, + { + "word": "Saga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saga", + "romanization": "Saga", + "example_sentence_native": "Das ist eine lange Familiensaga.", + "example_sentence_english": "That is a long family saga.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9153 + }, + { + "word": "schmerzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hurt;to ache", + "romanization": "schmerzen", + "example_sentence_native": "Mein Kopf schmerzt.", + "example_sentence_english": "My head hurts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9154 + }, + { + "word": "Schnabel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beak;bill", + "romanization": "Schnabel", + "example_sentence_native": "Der Vogel hat einen spitzen Schnabel.", + "example_sentence_english": "The bird has a sharp beak.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9155 + }, + { + "word": "Schwankung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluctuation;variation", + "romanization": "Schwankung", + "example_sentence_native": "Es gab starke Schwankungen im Preis.", + "example_sentence_english": "There were strong fluctuations in the price.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9156 + }, + { + "word": "Schwimmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swimmer", + "romanization": "Schwimmer", + "example_sentence_native": "Er ist ein guter Schwimmer.", + "example_sentence_english": "He is a good swimmer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9157 + }, + { + "word": "Sprichwort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proverb", + "romanization": "Sprichwort", + "example_sentence_native": "Ein altes Sprichwort sagt: 'Übung macht den Meister'.", + "example_sentence_english": "An old proverb says: 'Practice makes perfect'.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9164 + }, + { + "word": "Südwest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southwest", + "romanization": "Südwest", + "example_sentence_native": "Der Wind kommt aus Südwest.", + "example_sentence_english": "The wind comes from the southwest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9167 + }, + { + "word": "Taschengeld", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pocket money", + "romanization": "Taschengeld", + "example_sentence_native": "Kinder bekommen oft Taschengeld von ihren Eltern.", + "example_sentence_english": "Children often get pocket money from their parents.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9168 + }, + { + "word": "Teilchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particle;small part", + "romanization": "Teilchen", + "example_sentence_native": "Ein Atom besteht aus vielen kleinen Teilchen.", + "example_sentence_english": "An atom consists of many small particles.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9170 + }, + { + "word": "Tierschutz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animal welfare;protection", + "romanization": "Tierschutz", + "example_sentence_native": "Der Tierschutz ist ein wichtiges Thema.", + "example_sentence_english": "Animal welfare is an important topic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9172 + }, + { + "word": "unterteilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to subdivide;to divide", + "romanization": "unterteilen", + "example_sentence_native": "Man kann das Thema in mehrere Abschnitte unterteilen.", + "example_sentence_english": "One can divide the topic into several sections.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9176 + }, + { + "word": "vage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vague", + "romanization": "vage", + "example_sentence_native": "Seine Antwort war sehr vage.", + "example_sentence_english": "His answer was very vague.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9177 + }, + { + "word": "Verhaltensweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behavior;way of behaving", + "romanization": "Verhaltensweise", + "example_sentence_native": "Diese Verhaltensweise ist inakzeptabel.", + "example_sentence_english": "This behavior is unacceptable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9178 + }, + { + "word": "verhungern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to starve", + "romanization": "verhungern", + "example_sentence_native": "Viele Menschen verhungern in armen Ländern.", + "example_sentence_english": "Many people starve in poor countries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9179 + }, + { + "word": "verklagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sue", + "romanization": "verklagen", + "example_sentence_native": "Er drohte, sie zu verklagen.", + "example_sentence_english": "He threatened to sue her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9180 + }, + { + "word": "Versicherer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insurer", + "romanization": "Versicherer", + "example_sentence_native": "Der Versicherer hat den Schaden bezahlt.", + "example_sentence_english": "The insurer paid for the damage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9181 + }, + { + "word": "verständigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inform;to notify", + "romanization": "verständigen", + "example_sentence_native": "Wir müssen die Polizei verständigen.", + "example_sentence_english": "We must inform the police.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9182 + }, + { + "word": "verwunderlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprising;astonishing", + "romanization": "verwunderlich", + "example_sentence_native": "Es ist nicht verwunderlich, dass er gewonnen hat.", + "example_sentence_english": "It's not surprising that he won.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9183 + }, + { + "word": "vorgestern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the day before yesterday", + "romanization": "vorgestern", + "example_sentence_native": "Ich habe ihn vorgestern getroffen.", + "example_sentence_english": "I met him the day before yesterday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9185 + }, + { + "word": "Vorrat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supply;stock", + "romanization": "Vorrat", + "example_sentence_native": "Wir haben einen großen Vorrat an Lebensmitteln.", + "example_sentence_english": "We have a large supply of food.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9186 + }, + { + "word": "Vorsorge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precaution;provision", + "romanization": "Vorsorge", + "example_sentence_native": "Regelmäßige Vorsorge ist wichtig für die Gesundheit.", + "example_sentence_english": "Regular precaution is important for health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9187 + }, + { + "word": "Wasserversorgung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water supply", + "romanization": "Wasserversorgung", + "example_sentence_native": "Die Wasserversorgung wurde unterbrochen.", + "example_sentence_english": "The water supply was interrupted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9188 + }, + { + "word": "Zeugin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female witness", + "romanization": "Zeugin", + "example_sentence_native": "Die Zeugin sagte vor Gericht aus.", + "example_sentence_english": "The female witness testified in court.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9194 + }, + { + "word": "zusagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree;to confirm;to promise", + "romanization": "zusagen", + "example_sentence_native": "Er hat seine Teilnahme zugesagt.", + "example_sentence_english": "He confirmed his participation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "sagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9195 + }, + { + "word": "zurückweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reject;to refuse;to repel", + "romanization": "zurückweisen", + "example_sentence_native": "Er musste das Angebot zurückweisen.", + "example_sentence_english": "He had to reject the offer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9196 + }, + { + "word": "zurückhaltend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reserved;cautious", + "romanization": "zurückhaltend", + "example_sentence_native": "Sie ist eine sehr zurückhaltende Person.", + "example_sentence_english": "She is a very reserved person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9197 + }, + { + "word": "zuversichtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confident;optimistic", + "romanization": "zuversichtlich", + "example_sentence_native": "Er ist zuversichtlich, dass er die Prüfung bestehen wird.", + "example_sentence_english": "He is confident that he will pass the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9198 + }, + { + "word": "Ärmel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sleeve", + "romanization": "Ärmel", + "example_sentence_native": "Er krempelte die Ärmel hoch.", + "example_sentence_english": "He rolled up his sleeves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9199 + }, + { + "word": "Überrest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remnant", + "romanization": "Überrest", + "example_sentence_native": "Das ist der letzte Überrest des alten Gebäudes.", + "example_sentence_english": "This is the last remnant of the old building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9200 + }, + { + "word": "Überschuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus", + "romanization": "Überschuss", + "example_sentence_native": "Wir haben einen Überschuss an Lebensmitteln.", + "example_sentence_english": "We have a surplus of food.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9201 + }, + { + "word": "abgeschlossen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closed", + "romanization": "abgeschlossen", + "example_sentence_native": "Die Tür ist abgeschlossen.", + "example_sentence_english": "The door is closed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9203 + }, + { + "word": "abweichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deviate", + "romanization": "abweichen", + "example_sentence_native": "Die Ergebnisse weichen von der Erwartung ab.", + "example_sentence_english": "The results deviate from the expectation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "weichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9204 + }, + { + "word": "Alien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alien", + "romanization": "Alien", + "example_sentence_native": "Das Alien kam von einem anderen Planeten.", + "example_sentence_english": "The alien came from another planet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 9206 + }, + { + "word": "auffallend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striking", + "romanization": "auffallend", + "example_sentence_native": "Sie trug ein auffallendes Kleid.", + "example_sentence_english": "She wore a striking dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9207 + }, + { + "word": "auftragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply", + "romanization": "auftragen", + "example_sentence_native": "Bitte tragen Sie die Creme dünn auf.", + "example_sentence_english": "Please apply the cream thinly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9208 + }, + { + "word": "aufregend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exciting", + "romanization": "aufregend", + "example_sentence_native": "Das war ein sehr aufregender Tag.", + "example_sentence_english": "That was a very exciting day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9209 + }, + { + "word": "ausschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advertise", + "romanization": "ausschreiben", + "example_sentence_native": "Die Stelle wurde international ausgeschrieben.", + "example_sentence_english": "The position was advertised internationally.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9210 + }, + { + "word": "ausruhen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to rest", + "romanization": "ausruhen", + "example_sentence_native": "Ich muss mich jetzt ausruhen.", + "example_sentence_english": "I need to rest now.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "ruhen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9211 + }, + { + "word": "Berufsausbildung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vocational training", + "romanization": "Berufsausbildung", + "example_sentence_native": "Er macht eine Berufsausbildung zum Elektriker.", + "example_sentence_english": "He is doing vocational training to become an electrician.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9215 + }, + { + "word": "beschlagnahmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to confiscate", + "romanization": "beschlagnahmen", + "example_sentence_native": "Die Polizei musste die Drogen beschlagnahmen.", + "example_sentence_english": "The police had to confiscate the drugs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9216 + }, + { + "word": "bestenfalls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at best", + "romanization": "bestenfalls", + "example_sentence_native": "Bestenfalls erreichen wir unser Ziel morgen.", + "example_sentence_english": "At best, we will reach our goal tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9217 + }, + { + "word": "Blowjob", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "blowjob", + "romanization": "Blowjob", + "example_sentence_native": "Er sprach über einen Blowjob.", + "example_sentence_english": "He talked about a blowjob.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9219 + }, + { + "word": "brennend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burning;urgent", + "romanization": "brennend", + "example_sentence_native": "Das brennende Haus war von weitem zu sehen.", + "example_sentence_english": "The burning house was visible from afar.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9220 + }, + { + "word": "Casting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casting (audition)", + "romanization": "Casting", + "example_sentence_native": "Sie hat ein Casting für eine neue Rolle.", + "example_sentence_english": "She has an audition for a new role.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9223 + }, + { + "word": "Cocktail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cocktail", + "romanization": "Cocktail", + "example_sentence_native": "Er bestellte einen erfrischenden Cocktail an der Bar.", + "example_sentence_english": "He ordered a refreshing cocktail at the bar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9224 + }, + { + "word": "Credit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credit", + "romanization": "Credit", + "example_sentence_native": "Er hat einen guten Credit bei der Bank.", + "example_sentence_english": "He has good credit with the bank.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 9226 + }, + { + "word": "eineinhalb", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one and a half", + "romanization": "eineinhalb", + "example_sentence_native": "Ich brauche eineinhalb Stunden, um dorthin zu fahren.", + "example_sentence_english": "I need one and a half hours to drive there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 9229 + }, + { + "word": "einholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch up;to obtain", + "romanization": "einholen", + "example_sentence_native": "Er musste schnell laufen, um die Gruppe einzuholen.", + "example_sentence_english": "He had to run fast to catch up with the group.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9230 + }, + { + "word": "Einigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unity;agreement", + "romanization": "Einigkeit", + "example_sentence_native": "Es herrschte Einigkeit über den Plan.", + "example_sentence_english": "There was agreement on the plan.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9231 + }, + { + "word": "Einwand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objection", + "romanization": "Einwand", + "example_sentence_native": "Er hatte keinen Einwand gegen den Vorschlag.", + "example_sentence_english": "He had no objection to the proposal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9232 + }, + { + "word": "Elektroauto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electric car", + "romanization": "Elektroauto", + "example_sentence_native": "Immer mehr Menschen kaufen ein Elektroauto.", + "example_sentence_english": "More and more people are buying an electric car.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9233 + }, + { + "word": "Endeffekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final result;upshot", + "romanization": "Endeffekt", + "example_sentence_native": "Im Endeffekt war die Entscheidung richtig.", + "example_sentence_english": "In the final analysis, the decision was correct.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9235 + }, + { + "word": "enttäuschend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointing", + "romanization": "enttäuschend", + "example_sentence_native": "Das Ergebnis war sehr enttäuschend.", + "example_sentence_english": "The result was very disappointing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9236 + }, + { + "word": "erschrecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to frighten;to be frightened", + "romanization": "erschrecken", + "example_sentence_native": "Der laute Knall ließ mich erschrecken.", + "example_sentence_english": "The loud bang made me jump.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9237 + }, + { + "word": "ertrinken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drown", + "romanization": "ertrinken", + "example_sentence_native": "Er konnte nicht schwimmen und drohte zu ertrinken.", + "example_sentence_english": "He couldn't swim and was about to drown.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9238 + }, + { + "word": "Falter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "butterfly;moth", + "romanization": "Falter", + "example_sentence_native": "Ein bunter Falter flog von Blume zu Blume.", + "example_sentence_english": "A colorful butterfly flew from flower to flower.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9239 + }, + { + "word": "festsetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to determine;to fix;to set", + "romanization": "festsetzen", + "example_sentence_native": "Die Polizei konnte den Täter festsetzen.", + "example_sentence_english": "The police were able to apprehend the perpetrator.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9240 + }, + { + "word": "Festlegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determination;definition;stipulation", + "romanization": "Festlegung", + "example_sentence_native": "Die Festlegung der Regeln ist wichtig.", + "example_sentence_english": "The determination of the rules is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9241 + }, + { + "word": "Finsternis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "darkness;gloom", + "romanization": "Finsternis", + "example_sentence_native": "Eine tiefe Finsternis umhüllte den Wald.", + "example_sentence_english": "A deep darkness enveloped the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9242 + }, + { + "word": "fliessend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fluent;flowing", + "romanization": "fliessend", + "example_sentence_native": "Sie spricht fliessend Deutsch.", + "example_sentence_english": "She speaks fluent German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9243 + }, + { + "word": "folgendermassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as follows;in the following way", + "romanization": "folgendermassen", + "example_sentence_native": "Die Anweisungen lauten folgendermassen: ...", + "example_sentence_english": "The instructions are as follows: ...", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9245 + }, + { + "word": "Folie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foil;film;slide (for presentation)", + "romanization": "Folie", + "example_sentence_native": "Die Präsentation hat viele Folien.", + "example_sentence_english": "The presentation has many slides.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9246 + }, + { + "word": "Freitagabend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Friday evening", + "romanization": "Freitagabend", + "example_sentence_native": "Wir treffen uns am Freitagabend.", + "example_sentence_english": "We are meeting on Friday evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9249 + }, + { + "word": "Gaststätte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restaurant;inn;pub", + "romanization": "Gaststätte", + "example_sentence_native": "Wir haben in einer gemütlichen Gaststätte gegessen.", + "example_sentence_english": "We ate in a cozy restaurant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9251 + }, + { + "word": "Generator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generator", + "romanization": "Generator", + "example_sentence_native": "Der Generator erzeugt Strom.", + "example_sentence_english": "The generator produces electricity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9252 + }, + { + "word": "schocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shock", + "romanization": "schocken", + "example_sentence_native": "Die Nachricht hat mich sehr geschockt.", + "example_sentence_english": "The news shocked me very much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9253 + }, + { + "word": "schulden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to owe", + "romanization": "schulden", + "example_sentence_native": "Er schuldet mir noch Geld.", + "example_sentence_english": "He still owes me money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9254 + }, + { + "word": "Geschäftsmodell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business model", + "romanization": "Geschäftsmodell", + "example_sentence_native": "Das Geschäftsmodell des Unternehmens ist innovativ.", + "example_sentence_english": "The company's business model is innovative.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9255 + }, + { + "word": "spalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to split;to divide", + "romanization": "spalten", + "example_sentence_native": "Der Blitz spaltete den Baum.", + "example_sentence_english": "The lightning split the tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9256 + }, + { + "word": "Gewand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "garment;robe;attire", + "romanization": "Gewand", + "example_sentence_native": "Sie trug ein prächtiges Gewand.", + "example_sentence_english": "She wore a magnificent garment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9257 + }, + { + "word": "Gremium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "committee;panel;board", + "romanization": "Gremium", + "example_sentence_native": "Das Gremium hat eine Entscheidung getroffen.", + "example_sentence_english": "The committee has made a decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9258 + }, + { + "word": "göttlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divine;godly", + "romanization": "göttlich", + "example_sentence_native": "Sie sang mit einer göttlichen Stimme.", + "example_sentence_english": "She sang with a divine voice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9259 + }, + { + "word": "Haustier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pet", + "romanization": "Haustier", + "example_sentence_native": "Mein Haustier ist eine Katze.", + "example_sentence_english": "My pet is a cat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9260 + }, + { + "word": "herausstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn out;to emerge", + "romanization": "herausstellen", + "example_sentence_native": "Es wird sich herausstellen, ob er Recht hat.", + "example_sentence_english": "It will turn out whether he is right.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9261 + }, + { + "word": "Herzogin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duchess", + "romanization": "Herzogin", + "example_sentence_native": "Die Herzogin trug ein elegantes Kleid.", + "example_sentence_english": "The duchess wore an elegant dress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9262 + }, + { + "word": "hetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rush;to incite", + "romanization": "hetzen", + "example_sentence_native": "Wir müssen uns nicht hetzen.", + "example_sentence_english": "We don't have to rush.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9263 + }, + { + "word": "Innenhof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inner courtyard", + "romanization": "Innenhof", + "example_sentence_native": "Der Innenhof ist sehr ruhig.", + "example_sentence_english": "The inner courtyard is very quiet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9265 + }, + { + "word": "Isolation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolation", + "romanization": "Isolation", + "example_sentence_native": "Die Isolation von der Außenwelt war schwierig.", + "example_sentence_english": "The isolation from the outside world was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9266 + }, + { + "word": "Jugendarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth work", + "romanization": "Jugendarbeit", + "example_sentence_native": "Sie engagiert sich in der Jugendarbeit.", + "example_sentence_english": "She is involved in youth work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9271 + }, + { + "word": "Kalk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lime;chalk;calcium", + "romanization": "Kalk", + "example_sentence_native": "Der Wasserkocher hat viel Kalk.", + "example_sentence_english": "The kettle has a lot of limescale.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9272 + }, + { + "word": "Kamm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comb", + "romanization": "Kamm", + "example_sentence_native": "Ich brauche einen Kamm für meine Haare.", + "example_sentence_english": "I need a comb for my hair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9273 + }, + { + "word": "kommerziell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial", + "romanization": "kommerziell", + "example_sentence_native": "Das ist ein kommerzielles Projekt.", + "example_sentence_english": "That is a commercial project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9275 + }, + { + "word": "Kompanie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "company (military or business)", + "romanization": "Kompanie", + "example_sentence_native": "Er dient in einer Infanterie-Kompanie.", + "example_sentence_english": "He serves in an infantry company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9276 + }, + { + "word": "Laub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foliage;leaves", + "romanization": "Laub", + "example_sentence_native": "Im Herbst fällt das Laub von den Bäumen.", + "example_sentence_english": "In autumn, the leaves fall from the trees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9277 + }, + { + "word": "Loser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loser", + "romanization": "Loser", + "example_sentence_native": "Er fühlt sich wie ein Loser nach der Niederlage.", + "example_sentence_english": "He feels like a loser after the defeat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9280 + }, + { + "word": "loslassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let go;to release", + "romanization": "loslassen", + "example_sentence_native": "Du musst die Vergangenheit loslassen.", + "example_sentence_english": "You have to let go of the past.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "los", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9281 + }, + { + "word": "Loyalität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loyalty", + "romanization": "Loyalität", + "example_sentence_native": "Seine Loyalität zu seinem Team ist unbestreitbar.", + "example_sentence_english": "His loyalty to his team is undeniable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9282 + }, + { + "word": "mangeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lack;to be wanting", + "romanization": "mangeln", + "example_sentence_native": "Es mangelt ihm an Erfahrung.", + "example_sentence_english": "He lacks experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9285 + }, + { + "word": "Marktanteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market share", + "romanization": "Marktanteil", + "example_sentence_native": "Das Unternehmen hat seinen Marktanteil erhöht.", + "example_sentence_english": "The company has increased its market share.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9287 + }, + { + "word": "Mitarbeiterin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female employee", + "romanization": "Mitarbeiterin", + "example_sentence_native": "Sie ist eine neue Mitarbeiterin.", + "example_sentence_english": "She is a new female employee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9289 + }, + { + "word": "Mitschüler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fellow student", + "romanization": "Mitschüler", + "example_sentence_native": "Er hat viele Mitschüler in seiner Klasse.", + "example_sentence_english": "He has many fellow students in his class.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9290 + }, + { + "word": "Müdigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiredness;fatigue", + "romanization": "Müdigkeit", + "example_sentence_native": "Er spürte eine große Müdigkeit.", + "example_sentence_english": "He felt a great tiredness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9293 + }, + { + "word": "Notar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notary;public notary", + "romanization": "Notar", + "example_sentence_native": "Wir müssen einen Termin beim Notar machen.", + "example_sentence_english": "We need to make an appointment with the notary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9294 + }, + { + "word": "obendrein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on top of that;moreover", + "romanization": "obendrein", + "example_sentence_native": "Es war kalt und obendrein regnete es.", + "example_sentence_english": "It was cold and on top of that, it was raining.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9295 + }, + { + "word": "Photo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "photo", + "romanization": "Photo", + "example_sentence_native": "Ich habe ein schönes Photo gemacht.", + "example_sentence_english": "I took a beautiful photo.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9298 + }, + { + "word": "Pixel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pixel", + "romanization": "Pixel", + "example_sentence_native": "Ein Pixel ist der kleinste Punkt auf einem Bildschirm.", + "example_sentence_english": "A pixel is the smallest dot on a screen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9300 + }, + { + "word": "Popcorn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "popcorn", + "romanization": "Popcorn", + "example_sentence_native": "Wir essen Popcorn, während wir den Film schauen.", + "example_sentence_english": "We eat popcorn while watching the movie.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9301 + }, + { + "word": "potentiell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potential", + "romanization": "potentiell", + "example_sentence_native": "Das ist ein potentielles Problem.", + "example_sentence_english": "That is a potential problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9302 + }, + { + "word": "Quiz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiz", + "romanization": "Quiz", + "example_sentence_native": "Wir machen ein Quiz über deutsche Geschichte.", + "example_sentence_english": "We are doing a quiz about German history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9303 + }, + { + "word": "Radius", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radius", + "romanization": "Radius", + "example_sentence_native": "Der Radius des Kreises beträgt fünf Zentimeter.", + "example_sentence_english": "The radius of the circle is five centimeters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9304 + }, + { + "word": "Raucher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoker", + "romanization": "Raucher", + "example_sentence_native": "Raucher müssen draußen bleiben.", + "example_sentence_english": "Smokers must stay outside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9305 + }, + { + "word": "revolutionär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolutionary", + "romanization": "revolutionär", + "example_sentence_native": "Das war eine revolutionäre Idee.", + "example_sentence_english": "That was a revolutionary idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9307 + }, + { + "word": "Rotwein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "red wine", + "romanization": "Rotwein", + "example_sentence_native": "Ich trinke gerne ein Glas Rotwein zum Abendessen.", + "example_sentence_english": "I like to drink a glass of red wine with dinner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9308 + }, + { + "word": "rutschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slide;to slip", + "romanization": "rutschen", + "example_sentence_native": "Sei vorsichtig, damit du nicht auf dem Eis rutschst.", + "example_sentence_english": "Be careful so you don't slip on the ice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9309 + }, + { + "word": "Röhre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tube;pipe", + "romanization": "Röhre", + "example_sentence_native": "Das Wasser fließt durch die Röhre.", + "example_sentence_english": "The water flows through the tube.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9310 + }, + { + "word": "Samstagabend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday evening", + "romanization": "Samstagabend", + "example_sentence_native": "Wir gehen Samstagabend ins Kino.", + "example_sentence_english": "We are going to the cinema on Saturday evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9312 + }, + { + "word": "schleifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grind;to sharpen;to drag", + "romanization": "schleifen", + "example_sentence_native": "Er muss das Messer schleifen.", + "example_sentence_english": "He has to sharpen the knife.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9314 + }, + { + "word": "schlichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mediate;to settle", + "romanization": "schlichten", + "example_sentence_native": "Der Richter versucht, den Streit zu schlichten.", + "example_sentence_english": "The judge tries to settle the dispute.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9315 + }, + { + "word": "schmunzeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to smile;to smirk", + "romanization": "schmunzeln", + "example_sentence_native": "Sie musste über seinen Witz schmunzeln.", + "example_sentence_english": "She had to smile at his joke.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9316 + }, + { + "word": "Sparte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch;sector;division", + "romanization": "Sparte", + "example_sentence_native": "Diese Sparte des Unternehmens ist sehr erfolgreich.", + "example_sentence_english": "This branch of the company is very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9320 + }, + { + "word": "steif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stiff;rigid", + "romanization": "steif", + "example_sentence_native": "Nach dem Sport waren seine Muskeln steif.", + "example_sentence_english": "After sports, his muscles were stiff.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9322 + }, + { + "word": "Stier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bull;steer", + "romanization": "Stier", + "example_sentence_native": "Der Stier stand auf der Weide.", + "example_sentence_english": "The bull stood in the pasture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9323 + }, + { + "word": "süchtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addicted;dependent", + "romanization": "süchtig", + "example_sentence_native": "Er ist süchtig nach Schokolade.", + "example_sentence_english": "He is addicted to chocolate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9325 + }, + { + "word": "tagelang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for days;for days on end", + "romanization": "tagelang", + "example_sentence_native": "Sie haben tagelang nach dem verlorenen Hund gesucht.", + "example_sentence_english": "They searched for the lost dog for days.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9326 + }, + { + "word": "Tango", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tango", + "romanization": "Tango", + "example_sentence_native": "Sie lernt, Tango zu tanzen.", + "example_sentence_english": "She is learning to dance tango.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9328 + }, + { + "word": "tapfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brave;courageous", + "romanization": "tapfer", + "example_sentence_native": "Der tapfere Ritter besiegte den Drachen.", + "example_sentence_english": "The brave knight defeated the dragon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9329 + }, + { + "word": "tasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel;to grope;to touch", + "romanization": "tasten", + "example_sentence_native": "Im Dunkeln musste er sich tastend vorwärtsbewegen.", + "example_sentence_english": "In the dark, he had to grope his way forward.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9330 + }, + { + "word": "untergehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sink;to go down;to perish", + "romanization": "untergehen", + "example_sentence_native": "Die Sonne wird bald untergehen.", + "example_sentence_english": "The sun will soon go down.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "unter", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9335 + }, + { + "word": "verdeutlichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clarify;to illustrate", + "romanization": "verdeutlichen", + "example_sentence_native": "Könnten Sie das bitte verdeutlichen?", + "example_sentence_english": "Could you please clarify that?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9337 + }, + { + "word": "Vermittler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediator;intermediary;broker", + "romanization": "Vermittler", + "example_sentence_native": "Er fungierte als Vermittler in dem Streit.", + "example_sentence_english": "He acted as a mediator in the dispute.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9338 + }, + { + "word": "vernehmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to interrogate;to hear (formally);to perceive", + "romanization": "vernehmen", + "example_sentence_native": "Die Polizei wird den Zeugen vernehmen.", + "example_sentence_english": "The police will interrogate the witness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9339 + }, + { + "word": "vorbildlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemplary", + "romanization": "vorbildlich", + "example_sentence_native": "Ihr Verhalten war vorbildlich.", + "example_sentence_english": "Her behavior was exemplary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9340 + }, + { + "word": "Vorderseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front side", + "romanization": "Vorderseite", + "example_sentence_native": "Bitte schreiben Sie auf die Vorderseite des Blattes.", + "example_sentence_english": "Please write on the front side of the sheet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9341 + }, + { + "word": "Zuneigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affection", + "romanization": "Zuneigung", + "example_sentence_native": "Er zeigte große Zuneigung zu seinen Enkeln.", + "example_sentence_english": "He showed great affection for his grandchildren.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9345 + }, + { + "word": "zurückkommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come back", + "romanization": "zurückkommen", + "example_sentence_native": "Wann wirst du zurückkommen?", + "example_sentence_english": "When will you come back?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9346 + }, + { + "word": "Zusage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmation;promise", + "romanization": "Zusage", + "example_sentence_native": "Wir warten noch auf ihre Zusage.", + "example_sentence_english": "We are still waiting for her confirmation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9347 + }, + { + "word": "Zwerg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dwarf", + "romanization": "Zwerg", + "example_sentence_native": "Schneewittchen lebte mit sieben Zwergen.", + "example_sentence_english": "Snow White lived with seven dwarfs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9348 + }, + { + "word": "Abneigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aversion;dislike", + "romanization": "Abneigung", + "example_sentence_native": "Er hat eine starke Abneigung gegen Lügen.", + "example_sentence_english": "He has a strong aversion to lies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9350 + }, + { + "word": "amüsant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amusing", + "romanization": "amüsant", + "example_sentence_native": "Der Film war sehr amüsant.", + "example_sentence_english": "The movie was very amusing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9353 + }, + { + "word": "anstehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upcoming;pending", + "romanization": "anstehend", + "example_sentence_native": "Wir müssen die anstehenden Aufgaben erledigen.", + "example_sentence_english": "We need to complete the upcoming tasks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9354 + }, + { + "word": "Asphalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asphalt", + "romanization": "Asphalt", + "example_sentence_native": "Die Straße ist mit Asphalt bedeckt.", + "example_sentence_english": "The road is covered with asphalt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9355 + }, + { + "word": "Auferstehung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resurrection", + "romanization": "Auferstehung", + "example_sentence_native": "Die Auferstehung ist ein zentraler Glaube im Christentum.", + "example_sentence_english": "The resurrection is a central belief in Christianity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9356 + }, + { + "word": "Aufwendung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expense;effort", + "romanization": "Aufwendung", + "example_sentence_native": "Die Aufwendungen für das Projekt waren hoch.", + "example_sentence_english": "The expenses for the project were high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9357 + }, + { + "word": "außergewöhnlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraordinary;exceptional", + "romanization": "außergewöhnlich", + "example_sentence_native": "Sie hat eine außergewöhnliche Begabung.", + "example_sentence_english": "She has an extraordinary talent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9358 + }, + { + "word": "Autounfall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car accident", + "romanization": "Autounfall", + "example_sentence_native": "Es gab einen Autounfall auf der Autobahn.", + "example_sentence_english": "There was a car accident on the highway.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9359 + }, + { + "word": "bekanntgeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to announce", + "romanization": "bekanntgeben", + "example_sentence_native": "Die Regierung wird die neuen Maßnahmen morgen bekanntgeben.", + "example_sentence_english": "The government will announce the new measures tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bekannt", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9360 + }, + { + "word": "Benennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naming;designation", + "romanization": "Benennung", + "example_sentence_native": "Die Benennung des neuen Platzes führte zu Diskussionen.", + "example_sentence_english": "The naming of the new square led to discussions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9361 + }, + { + "word": "Berechtigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authorization;entitlement", + "romanization": "Berechtigung", + "example_sentence_native": "Sie benötigen eine Berechtigung, um auf diese Daten zuzugreifen.", + "example_sentence_english": "You need authorization to access this data.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9362 + }, + { + "word": "bereichern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enrich", + "romanization": "bereichern", + "example_sentence_native": "Diese Erfahrung wird Ihr Leben bereichern.", + "example_sentence_english": "This experience will enrich your life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9363 + }, + { + "word": "Bestrebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endeavor;aspiration", + "romanization": "Bestrebung", + "example_sentence_native": "Seine Bestrebungen nach Frieden sind bewundernswert.", + "example_sentence_english": "His endeavors for peace are admirable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9365 + }, + { + "word": "bewohnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inhabit;to reside in", + "romanization": "bewohnen", + "example_sentence_native": "Das alte Haus wird seit Jahren nicht mehr bewohnt.", + "example_sentence_english": "The old house has not been inhabited for years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9366 + }, + { + "word": "Bieber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaver", + "romanization": "Bieber", + "example_sentence_native": "Der Bieber baut einen Damm im Fluss.", + "example_sentence_english": "The beaver builds a dam in the river.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9367 + }, + { + "word": "Bildhauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sculptor", + "romanization": "Bildhauer", + "example_sentence_native": "Der Bildhauer arbeitet an einer neuen Statue.", + "example_sentence_english": "The sculptor is working on a new statue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9368 + }, + { + "word": "blutig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bloody", + "romanization": "blutig", + "example_sentence_native": "Er hatte eine blutige Nase nach dem Sturz.", + "example_sentence_english": "He had a bloody nose after the fall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9369 + }, + { + "word": "charmant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charming", + "romanization": "charmant", + "example_sentence_native": "Sie ist eine sehr charmante Person.", + "example_sentence_english": "She is a very charming person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9371 + }, + { + "word": "Chemiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemist", + "romanization": "Chemiker", + "example_sentence_native": "Der Chemiker führte ein Experiment im Labor durch.", + "example_sentence_english": "The chemist conducted an experiment in the laboratory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9372 + }, + { + "word": "Commander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commander", + "romanization": "Commander", + "example_sentence_native": "Der Commander gab den Befehl zum Angriff.", + "example_sentence_english": "The commander gave the order to attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9373 + }, + { + "word": "dahingehend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to that effect;in that regard", + "romanization": "dahingehend", + "example_sentence_native": "Es gab eine Diskussion dahingehend, wie wir vorgehen sollten.", + "example_sentence_english": "There was a discussion to that effect, how we should proceed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9374 + }, + { + "word": "deaktivieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deactivate;to disable", + "romanization": "deaktivieren", + "example_sentence_native": "Sie müssen den Alarm deaktivieren, bevor Sie eintreten.", + "example_sentence_english": "You must deactivate the alarm before entering.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9375 + }, + { + "word": "Denker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinker", + "romanization": "Denker", + "example_sentence_native": "Er gilt als ein großer Denker seiner Zeit.", + "example_sentence_english": "He is considered a great thinker of his time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9376 + }, + { + "word": "Drink", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drink (alcoholic or mixed)", + "romanization": "Drink", + "example_sentence_native": "Möchtest du einen Drink bestellen?", + "example_sentence_english": "Would you like to order a drink?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9378 + }, + { + "word": "drohend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatening;impending", + "romanization": "drohend", + "example_sentence_native": "Die drohende Gefahr zwang sie zur Flucht.", + "example_sentence_english": "The threatening danger forced them to flee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9379 + }, + { + "word": "Durchfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diarrhea", + "romanization": "Durchfall", + "example_sentence_native": "Er hat starken Durchfall.", + "example_sentence_english": "He has severe diarrhea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9380 + }, + { + "word": "durchgängig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous;consistent", + "romanization": "durchgängig", + "example_sentence_native": "Die Qualität ist durchgängig hoch.", + "example_sentence_english": "The quality is consistently high.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9381 + }, + { + "word": "Eingabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "input;entry", + "romanization": "Eingabe", + "example_sentence_native": "Bitte überprüfen Sie Ihre Eingabe.", + "example_sentence_english": "Please check your input.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9382 + }, + { + "word": "eingeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enter;to input", + "romanization": "eingeben", + "example_sentence_native": "Sie müssen Ihr Passwort eingeben.", + "example_sentence_english": "You must enter your password.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9383 + }, + { + "word": "Erlösung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redemption;salvation", + "romanization": "Erlösung", + "example_sentence_native": "Er suchte nach Erlösung von seinen Sorgen.", + "example_sentence_english": "He sought deliverance from his worries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9385 + }, + { + "word": "Finanzkrise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial crisis", + "romanization": "Finanzkrise", + "example_sentence_native": "Die Finanzkrise hatte globale Auswirkungen.", + "example_sentence_english": "The financial crisis had global impacts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9388 + }, + { + "word": "Flohmarkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flea market", + "romanization": "Flohmarkt", + "example_sentence_native": "Am Wochenende gehe ich auf den Flohmarkt.", + "example_sentence_english": "This weekend I'm going to the flea market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9390 + }, + { + "word": "Fragestellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research question;issue", + "romanization": "Fragestellung", + "example_sentence_native": "Die Fragestellung der Studie ist sehr komplex.", + "example_sentence_english": "The research question of the study is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9391 + }, + { + "word": "Färbung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coloring;tint", + "romanization": "Färbung", + "example_sentence_native": "Die Färbung des Himmels war wunderschön.", + "example_sentence_english": "The coloring of the sky was beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9394 + }, + { + "word": "Gedenkstätte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial site", + "romanization": "Gedenkstätte", + "example_sentence_native": "Wir besuchten eine Gedenkstätte für die Opfer.", + "example_sentence_english": "We visited a memorial site for the victims.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9397 + }, + { + "word": "gedruckt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "printed", + "romanization": "gedruckt", + "example_sentence_native": "Das Buch ist frisch gedruckt.", + "example_sentence_english": "The book is freshly printed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9398 + }, + { + "word": "einigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree;to unite", + "romanization": "einigen", + "example_sentence_native": "Sie konnten sich auf einen Preis einigen.", + "example_sentence_english": "They could agree on a price.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9399 + }, + { + "word": "Geschrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shouting", + "romanization": "Geschrei", + "example_sentence_native": "Das Geschrei der Kinder war laut.", + "example_sentence_english": "The children's shouting was loud.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9401 + }, + { + "word": "gesondert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separately", + "romanization": "gesondert", + "example_sentence_native": "Die Dokumente werden gesondert aufbewahrt.", + "example_sentence_english": "The documents are stored separately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9402 + }, + { + "word": "glaubwürdig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credible", + "romanization": "glaubwürdig", + "example_sentence_native": "Seine Aussage war nicht glaubwürdig.", + "example_sentence_english": "His statement was not credible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9405 + }, + { + "word": "Grafschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "county", + "romanization": "Grafschaft", + "example_sentence_native": "Die Grafschaft ist bekannt für ihre schönen Landschaften.", + "example_sentence_english": "The county is known for its beautiful landscapes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9407 + }, + { + "word": "Grundeinkommen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "basic income", + "romanization": "Grundeinkommen", + "example_sentence_native": "Das Konzept des Grundeinkommens wird diskutiert.", + "example_sentence_english": "The concept of basic income is being discussed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9409 + }, + { + "word": "hervorheben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emphasize", + "romanization": "hervorheben", + "example_sentence_native": "Ich möchte diesen Punkt hervorheben.", + "example_sentence_english": "I would like to emphasize this point.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hervor", + "base_verb": "heben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9410 + }, + { + "word": "Hoheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereignty", + "romanization": "Hoheit", + "example_sentence_native": "Die Hoheit des Staates ist unteilbar.", + "example_sentence_english": "The sovereignty of the state is indivisible.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9411 + }, + { + "word": "Hypothese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothesis", + "romanization": "Hypothese", + "example_sentence_native": "Die Hypothese muss noch bewiesen werden.", + "example_sentence_english": "The hypothesis still needs to be proven.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9413 + }, + { + "word": "Indie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indie", + "romanization": "Indie", + "example_sentence_native": "Er hört gerne Indie-Musik.", + "example_sentence_english": "He likes to listen to indie music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9414 + }, + { + "word": "Internat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boarding school", + "romanization": "Internat", + "example_sentence_native": "Sie besuchte ein Internat in der Schweiz.", + "example_sentence_english": "She attended a boarding school in Switzerland.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9415 + }, + { + "word": "joggen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to jog", + "romanization": "joggen", + "example_sentence_native": "Ich gehe jeden Morgen joggen.", + "example_sentence_english": "I go jogging every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9417 + }, + { + "word": "Kaliber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caliber", + "romanization": "Kaliber", + "example_sentence_native": "Das Gewehr hat ein großes Kaliber.", + "example_sentence_english": "The rifle has a large caliber.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9419 + }, + { + "word": "Kathedrale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cathedral", + "romanization": "Kathedrale", + "example_sentence_native": "Die Kölner Kathedrale ist sehr beeindruckend.", + "example_sentence_english": "The Cologne Cathedral is very impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9420 + }, + { + "word": "Kenner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connoisseur;expert", + "romanization": "Kenner", + "example_sentence_native": "Er ist ein Kenner der klassischen Musik.", + "example_sentence_english": "He is a connoisseur of classical music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9421 + }, + { + "word": "knüpfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie;to knot;to establish (connections)", + "romanization": "knüpfen", + "example_sentence_native": "Sie wollte neue Kontakte knüpfen.", + "example_sentence_english": "She wanted to establish new contacts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9422 + }, + { + "word": "Kontinuität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuity", + "romanization": "Kontinuität", + "example_sentence_native": "Wir müssen die Kontinuität des Projekts sicherstellen.", + "example_sentence_english": "We must ensure the continuity of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9423 + }, + { + "word": "konventionell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conventional", + "romanization": "konventionell", + "example_sentence_native": "Das ist eine sehr konventionelle Methode.", + "example_sentence_english": "That is a very conventional method.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9424 + }, + { + "word": "Kratzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scratch", + "romanization": "Kratzer", + "example_sentence_native": "Das Auto hat einen kleinen Kratzer.", + "example_sentence_english": "The car has a small scratch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9425 + }, + { + "word": "Kreuzer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cruiser (ship);old coin", + "romanization": "Kreuzer", + "example_sentence_native": "Der Kreuzer fuhr über den Ozean.", + "example_sentence_english": "The cruiser sailed across the ocean.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9426 + }, + { + "word": "Lamm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lamb", + "romanization": "Lamm", + "example_sentence_native": "Das kleine Lamm spielte auf der Wiese.", + "example_sentence_english": "The little lamb played in the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9429 + }, + { + "word": "Landesverband", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regional association;state association", + "romanization": "Landesverband", + "example_sentence_native": "Der Landesverband hat neue Richtlinien erlassen.", + "example_sentence_english": "The regional association has issued new guidelines.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9430 + }, + { + "word": "Lieutenant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lieutenant", + "romanization": "Lieutenant", + "example_sentence_native": "Der Lieutenant gab den Befehl.", + "example_sentence_english": "The lieutenant gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9433 + }, + { + "word": "medial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medial;pertaining to media", + "romanization": "medial", + "example_sentence_native": "Die mediale Berichterstattung war sehr intensiv.", + "example_sentence_english": "The media coverage was very intense.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9436 + }, + { + "word": "Mister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mister;Mr.", + "romanization": "Mister", + "example_sentence_native": "Guten Tag, Mister Schmidt.", + "example_sentence_english": "Good day, Mister Schmidt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9438 + }, + { + "word": "mutmasslich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumed;alleged;probable", + "romanization": "mutmasslich", + "example_sentence_native": "Der mutmassliche Täter wurde festgenommen.", + "example_sentence_english": "The alleged perpetrator was arrested.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9439 + }, + { + "word": "Mündung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mouth (of a river);estuary", + "romanization": "Mündung", + "example_sentence_native": "Die Mündung des Flusses ist ein wichtiger Lebensraum für viele Tiere.", + "example_sentence_english": "The mouth of the river is an important habitat for many animals.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9440 + }, + { + "word": "Neustart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restart", + "romanization": "Neustart", + "example_sentence_native": "Nach dem Update ist ein Neustart des Systems erforderlich.", + "example_sentence_english": "After the update, a system restart is required.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9442 + }, + { + "word": "Niedergang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decline;downfall", + "romanization": "Niedergang", + "example_sentence_native": "Der Niedergang des Reiches war unvermeidlich.", + "example_sentence_english": "The decline of the empire was inevitable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9443 + }, + { + "word": "Normalität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "normality", + "romanization": "Normalität", + "example_sentence_native": "Wir sehnen uns nach einem Stück Normalität.", + "example_sentence_english": "We long for a bit of normality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9445 + }, + { + "word": "Offenbarung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revelation", + "romanization": "Offenbarung", + "example_sentence_native": "Seine Rede war eine Offenbarung für viele Zuhörer.", + "example_sentence_english": "His speech was a revelation for many listeners.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9446 + }, + { + "word": "Optimismus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimism", + "romanization": "Optimismus", + "example_sentence_native": "Sein Optimismus ist ansteckend.", + "example_sentence_english": "His optimism is contagious.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9448 + }, + { + "word": "paaren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pair;to mate", + "romanization": "paaren", + "example_sentence_native": "Die Vögel paaren sich im Frühling.", + "example_sentence_english": "The birds mate in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9449 + }, + { + "word": "Passion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passion", + "romanization": "Passion", + "example_sentence_native": "Musik ist ihre große Passion.", + "example_sentence_english": "Music is her great passion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9450 + }, + { + "word": "Platin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platinum", + "romanization": "Platin", + "example_sentence_native": "Platin ist ein sehr wertvolles Metall.", + "example_sentence_english": "Platinum is a very valuable metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9452 + }, + { + "word": "Policy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "policy", + "romanization": "Policy", + "example_sentence_native": "Die neue Datenschutz-Policy tritt nächste Woche in Kraft.", + "example_sentence_english": "The new data protection policy comes into effect next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9453 + }, + { + "word": "Pressefreiheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freedom of the press", + "romanization": "Pressefreiheit", + "example_sentence_native": "Pressefreiheit ist ein Grundpfeiler der Demokratie.", + "example_sentence_english": "Freedom of the press is a cornerstone of democracy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9454 + }, + { + "word": "Projektleiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project manager", + "romanization": "Projektleiter", + "example_sentence_native": "Der Projektleiter ist für die Koordination des Teams verantwortlich.", + "example_sentence_english": "The project manager is responsible for coordinating the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9455 + }, + { + "word": "Provider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "provider", + "romanization": "Provider", + "example_sentence_native": "Mein Internet-Provider hat heute eine Störung.", + "example_sentence_english": "My internet provider has an outage today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9456 + }, + { + "word": "Rekonstruktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstruction", + "romanization": "Rekonstruktion", + "example_sentence_native": "Die Rekonstruktion des alten Gebäudes dauerte Jahre.", + "example_sentence_english": "The reconstruction of the old building took years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9458 + }, + { + "word": "Remix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remix", + "romanization": "Remix", + "example_sentence_native": "Dieser Remix des Songs ist sehr beliebt.", + "example_sentence_english": "This remix of the song is very popular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9459 + }, + { + "word": "rezeptfrei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "over-the-counter", + "romanization": "rezeptfrei", + "example_sentence_native": "Dieses Medikament ist rezeptfrei erhältlich.", + "example_sentence_english": "This medication is available over-the-counter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9460 + }, + { + "word": "Rind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cattle", + "romanization": "Rind", + "example_sentence_native": "Das Rind graste auf der Weide.", + "example_sentence_english": "The cattle grazed in the pasture.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9461 + }, + { + "word": "Rippe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rib", + "romanization": "Rippe", + "example_sentence_native": "Er hat sich eine Rippe gebrochen.", + "example_sentence_english": "He broke a rib.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9462 + }, + { + "word": "Sarg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coffin", + "romanization": "Sarg", + "example_sentence_native": "Der Sarg wurde langsam in die Erde gesenkt.", + "example_sentence_english": "The coffin was slowly lowered into the ground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9463 + }, + { + "word": "schlechthin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "par excellence", + "romanization": "schlechthin", + "example_sentence_native": "Er ist der Künstler schlechthin.", + "example_sentence_english": "He is the artist par excellence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9465 + }, + { + "word": "Schnittstelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interface", + "romanization": "Schnittstelle", + "example_sentence_native": "Die Software hat eine benutzerfreundliche Schnittstelle.", + "example_sentence_english": "The software has a user-friendly interface.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9466 + }, + { + "word": "selbstbewusst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "self-confident", + "romanization": "selbstbewusst", + "example_sentence_native": "Sie ist eine sehr selbstbewusste Frau.", + "example_sentence_english": "She is a very self-confident woman.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9468 + }, + { + "word": "Seltenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rarity", + "romanization": "Seltenheit", + "example_sentence_native": "Solche Ereignisse sind eine Seltenheit.", + "example_sentence_english": "Such events are a rarity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9469 + }, + { + "word": "Shuttle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shuttle", + "romanization": "Shuttle", + "example_sentence_native": "Der Shuttle bringt uns zum Flughafen.", + "example_sentence_english": "The shuttle takes us to the airport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9470 + }, + { + "word": "Sonde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probe", + "romanization": "Sonde", + "example_sentence_native": "Die Raumsonde sendet Daten zur Erde.", + "example_sentence_english": "The space probe sends data to Earth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9471 + }, + { + "word": "spielerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playful", + "romanization": "spielerisch", + "example_sentence_native": "Sie lernt spielerisch neue Wörter.", + "example_sentence_english": "She learns new words playfully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9473 + }, + { + "word": "Stockwerk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor (of a building)", + "romanization": "Stockwerk", + "example_sentence_native": "Unsere Wohnung ist im dritten Stockwerk.", + "example_sentence_english": "Our apartment is on the third floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9474 + }, + { + "word": "subjektiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjective", + "romanization": "subjektiv", + "example_sentence_native": "Das ist nur meine subjektive Meinung.", + "example_sentence_english": "That's just my subjective opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9475 + }, + { + "word": "Südosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southeast", + "romanization": "Südosten", + "example_sentence_native": "Der Wind kommt aus dem Südosten.", + "example_sentence_english": "The wind comes from the southeast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9477 + }, + { + "word": "tendenziell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tendentially", + "romanization": "tendenziell", + "example_sentence_native": "Tendenziell steigen die Preise im Sommer.", + "example_sentence_english": "Prices tend to rise in summer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9478 + }, + { + "word": "Turn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turn;round (in a game)", + "romanization": "Turn", + "example_sentence_native": "Es ist dein Turn.", + "example_sentence_english": "It's your turn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9480 + }, + { + "word": "umdrehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn around;to flip", + "romanization": "umdrehen", + "example_sentence_native": "Bitte dreh dich um.", + "example_sentence_english": "Please turn around.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "drehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9481 + }, + { + "word": "umher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "around;about", + "romanization": "umher", + "example_sentence_native": "Er lief ziellos umher.", + "example_sentence_english": "He walked aimlessly around.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9482 + }, + { + "word": "unterwerfen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to subjugate;to submit", + "romanization": "unterwerfen", + "example_sentence_native": "Sie mussten sich dem Feind unterwerfen.", + "example_sentence_english": "They had to submit to the enemy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9483 + }, + { + "word": "Vegetarier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetarian", + "romanization": "Vegetarier", + "example_sentence_native": "Mein Bruder ist Vegetarier.", + "example_sentence_english": "My brother is a vegetarian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9485 + }, + { + "word": "vermehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to multiply;to increase", + "romanization": "vermehren", + "example_sentence_native": "Kaninchen vermehren sich schnell.", + "example_sentence_english": "Rabbits multiply quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9486 + }, + { + "word": "Verschwendung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste;extravagance", + "romanization": "Verschwendung", + "example_sentence_native": "Das ist reine Verschwendung von Zeit.", + "example_sentence_english": "That is pure waste of time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9488 + }, + { + "word": "Waffenstillstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armistice;ceasefire", + "romanization": "Waffenstillstand", + "example_sentence_native": "Die Parteien einigten sich auf einen Waffenstillstand.", + "example_sentence_english": "The parties agreed on a ceasefire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9489 + }, + { + "word": "weiterführend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further;advanced;continuing", + "romanization": "weiterführend", + "example_sentence_native": "Das ist eine weiterführende Schule.", + "example_sentence_english": "That is an advanced school.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9491 + }, + { + "word": "Wiege", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cradle", + "romanization": "Wiege", + "example_sentence_native": "Das Baby schläft in der Wiege.", + "example_sentence_english": "The baby sleeps in the cradle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9492 + }, + { + "word": "Zugabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encore;addition;supplement", + "romanization": "Zugabe", + "example_sentence_native": "Das Publikum forderte eine Zugabe.", + "example_sentence_english": "The audience demanded an encore.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9497 + }, + { + "word": "Zwischenfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incident;occurrence", + "romanization": "Zwischenfall", + "example_sentence_native": "Es gab einen kleinen Zwischenfall.", + "example_sentence_english": "There was a small incident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9498 + }, + { + "word": "abbiegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn off;to turn (a corner)", + "romanization": "abbiegen", + "example_sentence_native": "Hier müssen Sie links abbiegen.", + "example_sentence_english": "Here you have to turn left.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "biegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9499 + }, + { + "word": "Abhilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remedy;relief", + "romanization": "Abhilfe", + "example_sentence_native": "Es muss eine Abhilfe für dieses Problem gefunden werden.", + "example_sentence_english": "A remedy for this problem must be found.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9501 + }, + { + "word": "ablesen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to read off;to deduce", + "romanization": "ablesen", + "example_sentence_native": "Er kann die Uhrzeit von der Sonnenuhr ablesen.", + "example_sentence_english": "He can read the time off the sundial.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "lesen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9502 + }, + { + "word": "alleinig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sole;only", + "romanization": "alleinig", + "example_sentence_native": "Das ist seine alleinige Entscheidung.", + "example_sentence_english": "That is his sole decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9504 + }, + { + "word": "Ambiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atmosphere;ambiance", + "romanization": "Ambiente", + "example_sentence_native": "Das Restaurant hat ein schönes Ambiente.", + "example_sentence_english": "The restaurant has a nice atmosphere.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9505 + }, + { + "word": "Ami", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "American (informal)", + "romanization": "Ami", + "example_sentence_native": "Er ist ein Ami aus New York.", + "example_sentence_english": "He is an American from New York.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9506 + }, + { + "word": "aufdecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to uncover;to reveal", + "romanization": "aufdecken", + "example_sentence_native": "Die Polizei konnte den Betrug aufdecken.", + "example_sentence_english": "The police were able to uncover the fraud.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "decken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9508 + }, + { + "word": "ausleihen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lend;to borrow", + "romanization": "ausleihen", + "example_sentence_native": "Kannst du mir dein Buch ausleihen?", + "example_sentence_english": "Can you lend me your book?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "leihen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9510 + }, + { + "word": "Ausgestaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "design;configuration;elaboration", + "romanization": "Ausgestaltung", + "example_sentence_native": "Die Ausgestaltung des Projekts ist noch nicht abgeschlossen.", + "example_sentence_english": "The design of the project is not yet complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9511 + }, + { + "word": "Baumeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master builder;architect", + "romanization": "Baumeister", + "example_sentence_native": "Der Baumeister überwacht den Bau des neuen Hauses.", + "example_sentence_english": "The master builder supervises the construction of the new house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9513 + }, + { + "word": "Bauweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction method;style of building", + "romanization": "Bauweise", + "example_sentence_native": "Die Bauweise dieses Hauses ist sehr modern.", + "example_sentence_english": "The construction method of this house is very modern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9514 + }, + { + "word": "beherbergen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accommodate;to house;to shelter", + "romanization": "beherbergen", + "example_sentence_native": "Das Hotel kann viele Gäste beherbergen.", + "example_sentence_english": "The hotel can accommodate many guests.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9516 + }, + { + "word": "bellen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bark", + "romanization": "bellen", + "example_sentence_native": "Der Hund bellt laut.", + "example_sentence_english": "The dog barks loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9517 + }, + { + "word": "Bereitstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provision;supply;deployment", + "romanization": "Bereitstellung", + "example_sentence_native": "Die Bereitstellung der Daten ist entscheidend.", + "example_sentence_english": "The provision of the data is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9518 + }, + { + "word": "bergisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bergisch (relating to the Bergisches Land region in Germany)", + "romanization": "bergisch", + "example_sentence_native": "Die bergische Landschaft ist sehr schön.", + "example_sentence_english": "The Bergisch landscape is very beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9519 + }, + { + "word": "Berufsleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional life", + "romanization": "Berufsleben", + "example_sentence_native": "Das Berufsleben kann sehr anspruchsvoll sein.", + "example_sentence_english": "Professional life can be very demanding.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9520 + }, + { + "word": "bescheren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bestow;to grant", + "romanization": "bescheren", + "example_sentence_native": "Ich hoffe, das neue Jahr wird uns viel Glück bescheren.", + "example_sentence_english": "I hope the new year will bestow much happiness upon us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9521 + }, + { + "word": "Beschleunigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceleration", + "romanization": "Beschleunigung", + "example_sentence_native": "Die Beschleunigung des Autos war beeindruckend.", + "example_sentence_english": "The acceleration of the car was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9522 + }, + { + "word": "Blech", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheet metal;tin", + "romanization": "Blech", + "example_sentence_native": "Das Dach ist aus Blech.", + "example_sentence_english": "The roof is made of sheet metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9523 + }, + { + "word": "Bub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boy (southern German;Austrian)", + "romanization": "Bub", + "example_sentence_native": "Der kleine Bub spielt im Garten.", + "example_sentence_english": "The little boy is playing in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9524 + }, + { + "word": "Busen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bosom;breast", + "romanization": "Busen", + "example_sentence_native": "Sie trug ein Kleid, das ihren Busen betonte.", + "example_sentence_english": "She wore a dress that emphasized her bosom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9525 + }, + { + "word": "Coaching", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coaching", + "romanization": "Coaching", + "example_sentence_native": "Sie bietet Coaching für Führungskräfte an.", + "example_sentence_english": "She offers coaching for executives.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9529 + }, + { + "word": "dringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penetrate;to urge", + "romanization": "dringen", + "example_sentence_native": "Das Wasser konnte nicht durch die dicke Wand dringen.", + "example_sentence_english": "The water could not penetrate the thick wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9532 + }, + { + "word": "Dude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dude", + "romanization": "Dude", + "example_sentence_native": "Hey, Dude, wie geht's?", + "example_sentence_english": "Hey, dude, how's it going?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9533 + }, + { + "word": "dulden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tolerate;to endure", + "romanization": "dulden", + "example_sentence_native": "Ich kann dieses Verhalten nicht länger dulden.", + "example_sentence_english": "I can no longer tolerate this behavior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9534 + }, + { + "word": "Ehrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honor;tribute", + "romanization": "Ehrung", + "example_sentence_native": "Er erhielt eine besondere Ehrung für seine Verdienste.", + "example_sentence_english": "He received a special honor for his services.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9536 + }, + { + "word": "einbetten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embed", + "romanization": "einbetten", + "example_sentence_native": "Man kann Bilder in den Text einbetten.", + "example_sentence_english": "You can embed images into the text.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "betten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9537 + }, + { + "word": "Erdbeere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "strawberry", + "romanization": "Erdbeere", + "example_sentence_native": "Ich liebe frische Erdbeeren im Sommer.", + "example_sentence_english": "I love fresh strawberries in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9538 + }, + { + "word": "Erwärmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warming;heating", + "romanization": "Erwärmung", + "example_sentence_native": "Die globale Erwärmung ist ein ernstes Problem.", + "example_sentence_english": "Global warming is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9539 + }, + { + "word": "Expertise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expertise", + "romanization": "Expertise", + "example_sentence_native": "Sie hat große Expertise in diesem Bereich.", + "example_sentence_english": "She has great expertise in this area.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9540 + }, + { + "word": "Fahrplan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "timetable;schedule", + "romanization": "Fahrplan", + "example_sentence_native": "Bitte überprüfen Sie den Fahrplan für die nächste Bahn.", + "example_sentence_english": "Please check the timetable for the next train.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9541 + }, + { + "word": "Flugplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airfield;airport", + "romanization": "Flugplatz", + "example_sentence_native": "Der kleine Flugplatz wird für Privatjets genutzt.", + "example_sentence_english": "The small airfield is used for private jets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9545 + }, + { + "word": "Fragebogen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "questionnaire", + "romanization": "Fragebogen", + "example_sentence_native": "Bitte füllen Sie den Fragebogen aus.", + "example_sentence_english": "Please fill out the questionnaire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9547 + }, + { + "word": "Franke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Frank (person from Frankish tribe);Swiss Franc (currency)", + "romanization": "Franke", + "example_sentence_native": "Der Schweizer Franke ist eine stabile Währung.", + "example_sentence_english": "The Swiss Franc is a stable currency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9549 + }, + { + "word": "freilassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to release;to set free", + "romanization": "freilassen", + "example_sentence_native": "Sie wollen den Vogel freilassen.", + "example_sentence_english": "They want to release the bird.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "frei", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9550 + }, + { + "word": "Fremdsprache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "foreign language", + "romanization": "Fremdsprache", + "example_sentence_native": "Englisch ist meine erste Fremdsprache.", + "example_sentence_english": "English is my first foreign language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9551 + }, + { + "word": "Förderverein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support association;sponsoring association", + "romanization": "Förderverein", + "example_sentence_native": "Der Förderverein sammelt Spenden für die Schule.", + "example_sentence_english": "The support association collects donations for the school.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9552 + }, + { + "word": "gewohnt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accustomed;used to", + "romanization": "gewohnt", + "example_sentence_native": "Ich bin es gewohnt, früh aufzustehen.", + "example_sentence_english": "I am used to getting up early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9555 + }, + { + "word": "gnadenlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merciless;ruthless", + "romanization": "gnadenlos", + "example_sentence_native": "Er war gnadenlos in seiner Kritik.", + "example_sentence_english": "He was merciless in his criticism.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9557 + }, + { + "word": "Granit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granite", + "romanization": "Granit", + "example_sentence_native": "Die Arbeitsplatte ist aus Granit.", + "example_sentence_english": "The countertop is made of granite.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9558 + }, + { + "word": "Grossraum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open-plan area;large space", + "romanization": "Grossraum", + "example_sentence_native": "Das Büro ist ein Grossraum.", + "example_sentence_english": "The office is an open-plan area.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9559 + }, + { + "word": "haltbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "durable", + "romanization": "haltbar", + "example_sentence_native": "Dieses Produkt ist sehr haltbar.", + "example_sentence_english": "This product is very durable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9564 + }, + { + "word": "Handhabung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handling", + "romanization": "Handhabung", + "example_sentence_native": "Die Handhabung des Geräts ist einfach.", + "example_sentence_english": "The handling of the device is simple.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9565 + }, + { + "word": "Hautfarbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skin color", + "romanization": "Hautfarbe", + "example_sentence_native": "Es gibt viele verschiedene Hautfarben.", + "example_sentence_english": "There are many different skin colors.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9566 + }, + { + "word": "hinab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "downwards", + "romanization": "hinab", + "example_sentence_native": "Er stieg die Treppe hinab.", + "example_sentence_english": "He walked down the stairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9569 + }, + { + "word": "Hingabe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devotion", + "romanization": "Hingabe", + "example_sentence_native": "Sie arbeitet mit großer Hingabe an ihrem Projekt.", + "example_sentence_english": "She works with great dedication on her project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9570 + }, + { + "word": "islamistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamist", + "romanization": "islamistisch", + "example_sentence_native": "Die Gruppe hat islamistische Ansichten.", + "example_sentence_english": "The group has Islamist views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9573 + }, + { + "word": "kanadisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Canadian", + "romanization": "kanadisch", + "example_sentence_native": "Sie hat die kanadische Staatsbürgerschaft.", + "example_sentence_english": "She has Canadian citizenship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9577 + }, + { + "word": "Karate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "karate", + "romanization": "Karate", + "example_sentence_native": "Er trainiert seit Jahren Karate.", + "example_sentence_english": "He has been training karate for years.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9578 + }, + { + "word": "Klischee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cliché", + "romanization": "Klischee", + "example_sentence_native": "Das ist ein altes Klischee.", + "example_sentence_english": "That is an old cliché.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9580 + }, + { + "word": "Kundschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clientele", + "romanization": "Kundschaft", + "example_sentence_native": "Die Kundschaft wartet schon.", + "example_sentence_english": "The clientele is already waiting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9581 + }, + { + "word": "Käfig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cage", + "romanization": "Käfig", + "example_sentence_native": "Der Vogel ist im Käfig.", + "example_sentence_english": "The bird is in the cage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9582 + }, + { + "word": "Kätzchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kitten", + "romanization": "Kätzchen", + "example_sentence_native": "Das kleine Kätzchen spielt.", + "example_sentence_english": "The little kitten is playing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9583 + }, + { + "word": "Lehrkraft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teacher", + "romanization": "Lehrkraft", + "example_sentence_native": "Die Lehrkraft erklärt die Aufgabe.", + "example_sentence_english": "The teacher explains the task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9586 + }, + { + "word": "Mami", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mommy", + "romanization": "Mami", + "example_sentence_native": "Mami, ich habe Hunger!", + "example_sentence_english": "Mommy, I'm hungry!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9590 + }, + { + "word": "Manöver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maneuver", + "romanization": "Manöver", + "example_sentence_native": "Das Militär übt ein Manöver.", + "example_sentence_english": "The military is practicing a maneuver.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9591 + }, + { + "word": "Marihuana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marijuana", + "romanization": "Marihuana", + "example_sentence_native": "Der Besitz von Marihuana ist in vielen Ländern illegal.", + "example_sentence_english": "The possession of marijuana is illegal in many countries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9592 + }, + { + "word": "mittelfristig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medium-term", + "romanization": "mittelfristig", + "example_sentence_native": "Wir planen mittelfristig eine Expansion.", + "example_sentence_english": "We are planning a medium-term expansion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9598 + }, + { + "word": "mündlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oral", + "romanization": "mündlich", + "example_sentence_native": "Die mündliche Prüfung war schwierig.", + "example_sentence_english": "The oral exam was difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9600 + }, + { + "word": "nachdenklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoughtful", + "romanization": "nachdenklich", + "example_sentence_native": "Er saß nachdenklich am Fenster.", + "example_sentence_english": "He sat thoughtfully by the window.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9601 + }, + { + "word": "nachsehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check", + "romanization": "nachsehen", + "example_sentence_native": "Ich muss im Wörterbuch nachsehen.", + "example_sentence_english": "I need to look it up in the dictionary.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9602 + }, + { + "word": "Neuanfang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new beginning", + "romanization": "Neuanfang", + "example_sentence_native": "Er wagte einen Neuanfang in einer neuen Stadt.", + "example_sentence_english": "He dared a new beginning in a new city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9604 + }, + { + "word": "Nische", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "niche", + "romanization": "Nische", + "example_sentence_native": "Er fand seine Nische im Markt.", + "example_sentence_english": "He found his niche in the market.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9605 + }, + { + "word": "Obdachloser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeless person", + "romanization": "Obdachloser", + "example_sentence_native": "Ein Obdachloser bat um Hilfe.", + "example_sentence_english": "A homeless person asked for help.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9607 + }, + { + "word": "Palette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pallet", + "romanization": "Palette", + "example_sentence_native": "Die Waren wurden auf Paletten geliefert.", + "example_sentence_english": "The goods were delivered on pallets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9609 + }, + { + "word": "Palästinenser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Palestinian", + "romanization": "Palästinenser", + "example_sentence_native": "Ein Palästinenser sprach über seine Heimat.", + "example_sentence_english": "A Palestinian spoke about his homeland.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9610 + }, + { + "word": "Paprika", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell pepper", + "romanization": "Paprika", + "example_sentence_native": "Ich brauche eine rote Paprika für das Gericht.", + "example_sentence_english": "I need a red bell pepper for the dish.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9611 + }, + { + "word": "Pfarrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parish", + "romanization": "Pfarrei", + "example_sentence_native": "Die Pfarrei organisiert ein Gemeindefest.", + "example_sentence_english": "The parish is organizing a community festival.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9613 + }, + { + "word": "Phone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "phone", + "romanization": "Phone", + "example_sentence_native": "Mein Phone klingelt.", + "example_sentence_english": "My phone is ringing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9614 + }, + { + "word": "Plätzchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cookie", + "romanization": "Plätzchen", + "example_sentence_native": "Wir backen Plätzchen zu Weihnachten.", + "example_sentence_english": "We bake cookies for Christmas.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9615 + }, + { + "word": "Popularität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "popularity", + "romanization": "Popularität", + "example_sentence_native": "Seine Popularität wächst stetig.", + "example_sentence_english": "His popularity is growing steadily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9616 + }, + { + "word": "Populismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "populism", + "romanization": "Populismus", + "example_sentence_native": "Der Populismus ist eine Herausforderung für die Demokratie.", + "example_sentence_english": "Populism is a challenge for democracy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9617 + }, + { + "word": "Prager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person from Prague", + "romanization": "Prager", + "example_sentence_native": "Ein Prager zeigte uns die Stadt.", + "example_sentence_english": "A person from Prague showed us the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9618 + }, + { + "word": "Regenbogen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rainbow", + "romanization": "Regenbogen", + "example_sentence_native": "Nach dem Regen sahen wir einen schönen Regenbogen.", + "example_sentence_english": "After the rain, we saw a beautiful rainbow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9621 + }, + { + "word": "repräsentativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representative", + "romanization": "repräsentativ", + "example_sentence_native": "Die Umfrageergebnisse sind repräsentativ für die Bevölkerung.", + "example_sentence_english": "The survey results are representative of the population.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9622 + }, + { + "word": "Rumpf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torso;hull (of a ship;plane)", + "romanization": "Rumpf", + "example_sentence_native": "Der Rumpf des Schiffes wurde repariert.", + "example_sentence_english": "The hull of the ship was repaired.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9623 + }, + { + "word": "Schauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shower (of rain);shiver", + "romanization": "Schauer", + "example_sentence_native": "Ein kurzer Schauer überraschte uns auf dem Weg nach Hause.", + "example_sentence_english": "A short shower surprised us on the way home.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9625 + }, + { + "word": "Schwindel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dizziness;fraud", + "romanization": "Schwindel", + "example_sentence_native": "Nach der Achterbahnfahrt hatte er starken Schwindel.", + "example_sentence_english": "After the roller coaster ride, he had severe dizziness.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9626 + }, + { + "word": "Seide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silk", + "romanization": "Seide", + "example_sentence_native": "Das Kleid ist aus reiner Seide.", + "example_sentence_english": "The dress is made of pure silk.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9628 + }, + { + "word": "Sekretärin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "secretary (female)", + "romanization": "Sekretärin", + "example_sentence_native": "Die Sekretärin hat alle Termine organisiert.", + "example_sentence_english": "The secretary organized all the appointments.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9629 + }, + { + "word": "Sekte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sect", + "romanization": "Sekte", + "example_sentence_native": "Er trat aus der Sekte aus.", + "example_sentence_english": "He left the sect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9630 + }, + { + "word": "Selbstverständlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matter of course;obviousness", + "romanization": "Selbstverständlichkeit", + "example_sentence_native": "Es ist eine Selbstverständlichkeit, dass man sich bedankt.", + "example_sentence_english": "It's a matter of course to say thank you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9631 + }, + { + "word": "Sonnenbrille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunglasses", + "romanization": "Sonnenbrille", + "example_sentence_native": "Vergiss deine Sonnenbrille nicht!", + "example_sentence_english": "Don't forget your sunglasses!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9632 + }, + { + "word": "Sportwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sports car", + "romanization": "Sportwagen", + "example_sentence_native": "Er träumt von einem roten Sportwagen.", + "example_sentence_english": "He dreams of a red sports car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9634 + }, + { + "word": "Stadtzentrum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city center", + "romanization": "Stadtzentrum", + "example_sentence_native": "Das Hotel liegt direkt im Stadtzentrum.", + "example_sentence_english": "The hotel is located right in the city center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9635 + }, + { + "word": "Startseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homepage", + "romanization": "Startseite", + "example_sentence_native": "Bitte klicken Sie auf die Startseite, um fortzufahren.", + "example_sentence_english": "Please click on the homepage to continue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9636 + }, + { + "word": "Startup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "startup (company)", + "romanization": "Startup", + "example_sentence_native": "Er arbeitet bei einem jungen Startup in Berlin.", + "example_sentence_english": "He works at a young startup in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9637 + }, + { + "word": "Stecker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plug (electrical)", + "romanization": "Stecker", + "example_sentence_native": "Der Stecker passt nicht in die Steckdose.", + "example_sentence_english": "The plug doesn't fit into the socket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9638 + }, + { + "word": "Stipendium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scholarship;grant", + "romanization": "Stipendium", + "example_sentence_native": "Sie hat ein Stipendium für ihr Studium erhalten.", + "example_sentence_english": "She received a scholarship for her studies.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9639 + }, + { + "word": "Superstar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superstar", + "romanization": "Superstar", + "example_sentence_native": "Sie ist ein internationaler Superstar.", + "example_sentence_english": "She is an international superstar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9641 + }, + { + "word": "Synthese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synthesis", + "romanization": "Synthese", + "example_sentence_native": "Die Synthese der Daten ist komplex.", + "example_sentence_english": "The synthesis of the data is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9642 + }, + { + "word": "thematisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thematic", + "romanization": "thematisch", + "example_sentence_native": "Die Ausstellung ist thematisch geordnet.", + "example_sentence_english": "The exhibition is thematically arranged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9645 + }, + { + "word": "Trinkgeld", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tip (gratuity)", + "romanization": "Trinkgeld", + "example_sentence_native": "Wir haben dem Kellner Trinkgeld gegeben.", + "example_sentence_english": "We gave the waiter a tip.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9651 + }, + { + "word": "Truck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck", + "romanization": "Truck", + "example_sentence_native": "Der Truck transportiert schwere Lasten.", + "example_sentence_english": "The truck transports heavy loads.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9652 + }, + { + "word": "Täuschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deception;illusion", + "romanization": "Täuschung", + "example_sentence_native": "Das war nur eine optische Täuschung.", + "example_sentence_english": "That was just an optical illusion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9653 + }, + { + "word": "umrechnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convert;to recalculate", + "romanization": "umrechnen", + "example_sentence_native": "Kannst du Euro in Dollar umrechnen?", + "example_sentence_english": "Can you convert euros to dollars?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "rechnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9654 + }, + { + "word": "unbewusst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconscious;subconscious", + "romanization": "unbewusst", + "example_sentence_native": "Er hat es unbewusst getan.", + "example_sentence_english": "He did it unconsciously.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9655 + }, + { + "word": "verehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adore;to worship;to revere", + "romanization": "verehren", + "example_sentence_native": "Viele Fans verehren diesen Künstler.", + "example_sentence_english": "Many fans adore this artist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9656 + }, + { + "word": "Vergessenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oblivion;forgetfulness", + "romanization": "Vergessenheit", + "example_sentence_native": "Das alte Lied geriet in Vergessenheit.", + "example_sentence_english": "The old song fell into oblivion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9657 + }, + { + "word": "Verteidigungsminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Minister of Defense", + "romanization": "Verteidigungsminister", + "example_sentence_native": "Der Verteidigungsminister hielt eine Rede.", + "example_sentence_english": "The Minister of Defense gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9658 + }, + { + "word": "verweilen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to linger;to stay for a while", + "romanization": "verweilen", + "example_sentence_native": "Wir konnten nicht lange verweilen.", + "example_sentence_english": "We couldn't linger long.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9659 + }, + { + "word": "Videospiel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video game", + "romanization": "Videospiel", + "example_sentence_native": "Mein Lieblings-Videospiel ist sehr spannend.", + "example_sentence_english": "My favorite video game is very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9660 + }, + { + "word": "Volksschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primary school", + "romanization": "Volksschule", + "example_sentence_native": "In Österreich besuchen Kinder die Volksschule.", + "example_sentence_english": "In Austria, children attend primary school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9661 + }, + { + "word": "vorführen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demonstrate", + "romanization": "vorführen", + "example_sentence_native": "Er wird uns die neue Maschine vorführen.", + "example_sentence_english": "He will demonstrate the new machine to us.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9662 + }, + { + "word": "vorletzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penultimate", + "romanization": "vorletzt", + "example_sentence_native": "Das ist der vorletzte Tag unseres Urlaubs.", + "example_sentence_english": "This is the penultimate day of our holiday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9663 + }, + { + "word": "Wahlergebnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election result", + "romanization": "Wahlergebnis", + "example_sentence_native": "Das Wahlergebnis wurde gestern Abend bekannt gegeben.", + "example_sentence_english": "The election result was announced last night.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9664 + }, + { + "word": "Wildnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wilderness", + "romanization": "Wildnis", + "example_sentence_native": "Sie lieben es, in der Wildnis zu wandern.", + "example_sentence_english": "They love to hike in the wilderness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9668 + }, + { + "word": "zusammensetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assemble", + "romanization": "zusammensetzen", + "example_sentence_native": "Wir müssen die Möbel selbst zusammensetzen.", + "example_sentence_english": "We have to assemble the furniture ourselves.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9670 + }, + { + "word": "Zuschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surcharge", + "romanization": "Zuschlag", + "example_sentence_native": "Für den Expressversand gibt es einen Zuschlag.", + "example_sentence_english": "There is a surcharge for express shipping.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9671 + }, + { + "word": "Zuverlässigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliability", + "romanization": "Zuverlässigkeit", + "example_sentence_native": "Seine Zuverlässigkeit ist beeindruckend.", + "example_sentence_english": "His reliability is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9672 + }, + { + "word": "überdurchschnittlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "above average", + "romanization": "überdurchschnittlich", + "example_sentence_native": "Ihre Leistungen sind überdurchschnittlich gut.", + "example_sentence_english": "Her performance is above average.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9673 + }, + { + "word": "überführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convict", + "romanization": "überführen", + "example_sentence_native": "Die Polizei konnte den Täter überführen.", + "example_sentence_english": "The police were able to convict the perpetrator.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9674 + }, + { + "word": "übermorgen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the day after tomorrow", + "romanization": "übermorgen", + "example_sentence_native": "Wir fahren übermorgen in den Urlaub.", + "example_sentence_english": "We are going on vacation the day after tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 9675 + }, + { + "word": "überreden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to persuade", + "romanization": "überreden", + "example_sentence_native": "Ich konnte ihn überreden, mitzukommen.", + "example_sentence_english": "I was able to persuade him to come along.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9676 + }, + { + "word": "überwältigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overwhelm", + "romanization": "überwältigen", + "example_sentence_native": "Die Schönheit der Landschaft hat mich überwältigt.", + "example_sentence_english": "The beauty of the landscape overwhelmed me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9677 + }, + { + "word": "abfahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to depart", + "romanization": "abfahren", + "example_sentence_native": "Der Zug wird gleich abfahren.", + "example_sentence_english": "The train will depart soon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9678 + }, + { + "word": "Abwicklung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing", + "romanization": "Abwicklung", + "example_sentence_native": "Die Abwicklung des Auftrags dauert noch an.", + "example_sentence_english": "The processing of the order is still ongoing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9679 + }, + { + "word": "Aggression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggression", + "romanization": "Aggression", + "example_sentence_native": "Die Aggression im Spiel war spürbar.", + "example_sentence_english": "The aggression in the game was palpable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9680 + }, + { + "word": "Aktionär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shareholder", + "romanization": "Aktionär", + "example_sentence_native": "Der Aktionär war mit der Dividende zufrieden.", + "example_sentence_english": "The shareholder was satisfied with the dividend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9681 + }, + { + "word": "Aktualisierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "update", + "romanization": "Aktualisierung", + "example_sentence_native": "Die Software benötigt eine Aktualisierung.", + "example_sentence_english": "The software needs an update.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9682 + }, + { + "word": "akut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acute", + "romanization": "akut", + "example_sentence_native": "Er hat akute Schmerzen.", + "example_sentence_english": "He has acute pain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 9683 + }, + { + "word": "amüsieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to amuse", + "romanization": "amüsieren", + "example_sentence_native": "Der Clown konnte die Kinder amüsieren.", + "example_sentence_english": "The clown could amuse the children.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9686 + }, + { + "word": "anstreben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strive for", + "romanization": "anstreben", + "example_sentence_native": "Er strebt eine Karriere als Arzt an.", + "example_sentence_english": "He strives for a career as a doctor.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "streben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9687 + }, + { + "word": "antreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drive;to propel", + "romanization": "antreiben", + "example_sentence_native": "Die Angst trieb ihn an, schneller zu laufen.", + "example_sentence_english": "Fear drove him to run faster.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "treiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9688 + }, + { + "word": "Ankauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purchase", + "romanization": "Ankauf", + "example_sentence_native": "Der Ankauf des Hauses war eine große Investition.", + "example_sentence_english": "The purchase of the house was a big investment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9689 + }, + { + "word": "Anrufer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caller", + "romanization": "Anrufer", + "example_sentence_native": "Der Anrufer wollte mit dem Manager sprechen.", + "example_sentence_english": "The caller wanted to speak with the manager.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9690 + }, + { + "word": "Anschuldigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accusation", + "romanization": "Anschuldigung", + "example_sentence_native": "Er wies die Anschuldigung zurück.", + "example_sentence_english": "He rejected the accusation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9691 + }, + { + "word": "Antenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antenna", + "romanization": "Antenne", + "example_sentence_native": "Die Antenne empfängt das Radiosignal.", + "example_sentence_english": "The antenna receives the radio signal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9692 + }, + { + "word": "Augenmerk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "focus;attention", + "romanization": "Augenmerk", + "example_sentence_native": "Das Augenmerk liegt auf der Qualität.", + "example_sentence_english": "The focus is on quality.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9694 + }, + { + "word": "ausarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work out;to elaborate", + "romanization": "ausarbeiten", + "example_sentence_native": "Wir müssen einen Plan ausarbeiten.", + "example_sentence_english": "We need to work out a plan.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9695 + }, + { + "word": "Auslastung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "utilization;occupancy", + "romanization": "Auslastung", + "example_sentence_native": "Die Auslastung des Hotels ist hoch.", + "example_sentence_english": "The hotel's occupancy rate is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9696 + }, + { + "word": "Aussteller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibitor", + "romanization": "Aussteller", + "example_sentence_native": "Die Aussteller präsentierten ihre Produkte.", + "example_sentence_english": "The exhibitors presented their products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9697 + }, + { + "word": "Baseball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baseball", + "romanization": "Baseball", + "example_sentence_native": "Baseball ist in den USA sehr beliebt.", + "example_sentence_english": "Baseball is very popular in the USA.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9699 + }, + { + "word": "Baujahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "year of construction", + "romanization": "Baujahr", + "example_sentence_native": "Das Baujahr des Hauses ist 1990.", + "example_sentence_english": "The year of construction of the house is 1990.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9700 + }, + { + "word": "beanspruchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to claim;to demand;to make use of", + "romanization": "beanspruchen", + "example_sentence_native": "Diese Aufgabe wird viel Zeit beanspruchen.", + "example_sentence_english": "This task will demand a lot of time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9701 + }, + { + "word": "Befestigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fastening;fortification", + "romanization": "Befestigung", + "example_sentence_native": "Die Befestigung der Brücke ist sehr stabil.", + "example_sentence_english": "The fastening of the bridge is very stable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9702 + }, + { + "word": "Belagerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "siege", + "romanization": "Belagerung", + "example_sentence_native": "Die Stadt hielt einer langen Belagerung stand.", + "example_sentence_english": "The city withstood a long siege.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9703 + }, + { + "word": "Beschränkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restriction;limitation", + "romanization": "Beschränkung", + "example_sentence_native": "Es gibt eine Beschränkung der Teilnehmerzahl.", + "example_sentence_english": "There is a restriction on the number of participants.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9705 + }, + { + "word": "beugen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bend;to bow;to conjugate", + "romanization": "beugen", + "example_sentence_native": "Er musste sich bücken, um unter dem Ast hindurchzugehen.", + "example_sentence_english": "He had to bend down to go under the branch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9706 + }, + { + "word": "Birne", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pear;light bulb", + "romanization": "Birne", + "example_sentence_native": "Ich esse gerne eine Birne zum Frühstück.", + "example_sentence_english": "I like to eat a pear for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9707 + }, + { + "word": "Bistum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocese;bishopric", + "romanization": "Bistum", + "example_sentence_native": "Das Bistum umfasst mehrere Gemeinden.", + "example_sentence_english": "The diocese includes several parishes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9708 + }, + { + "word": "Bube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jack (card);knave;boy (dated)", + "romanization": "Bube", + "example_sentence_native": "Der Bube ist eine wichtige Karte im Skat.", + "example_sentence_english": "The jack is an important card in Skat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9712 + }, + { + "word": "Bushaltestelle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus stop", + "romanization": "Bushaltestelle", + "example_sentence_native": "Die Bushaltestelle ist gleich um die Ecke.", + "example_sentence_english": "The bus stop is just around the corner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9714 + }, + { + "word": "chronisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronic", + "romanization": "chronisch", + "example_sentence_native": "Er leidet an einer chronischen Krankheit.", + "example_sentence_english": "He suffers from a chronic illness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9715 + }, + { + "word": "Court", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court (sports;legal)", + "romanization": "Court", + "example_sentence_native": "Der Tennisspieler betrat den Court.", + "example_sentence_english": "The tennis player entered the court.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9717 + }, + { + "word": "Diplomat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomat", + "romanization": "Diplomat", + "example_sentence_native": "Der Diplomat verhandelte über den Friedensvertrag.", + "example_sentence_english": "The diplomat negotiated the peace treaty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9719 + }, + { + "word": "Handgelenk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrist", + "romanization": "Handgelenk", + "example_sentence_native": "Ich habe mir das Handgelenk verstaucht.", + "example_sentence_english": "I sprained my wrist.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9742 + }, + { + "word": "Helligkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brightness", + "romanization": "Helligkeit", + "example_sentence_native": "Die Helligkeit des Bildschirms ist einstellbar.", + "example_sentence_english": "The brightness of the screen is adjustable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9745 + }, + { + "word": "humanitär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanitarian", + "romanization": "humanitär", + "example_sentence_native": "Die Organisation leistet humanitäre Hilfe.", + "example_sentence_english": "The organization provides humanitarian aid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9748 + }, + { + "word": "ideologisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideological", + "romanization": "ideologisch", + "example_sentence_native": "Es gab große ideologische Unterschiede zwischen den Parteien.", + "example_sentence_english": "There were big ideological differences between the parties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9749 + }, + { + "word": "Inbetriebnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commissioning;putting into operation", + "romanization": "Inbetriebnahme", + "example_sentence_native": "Die Inbetriebnahme der neuen Anlage ist für nächste Woche geplant.", + "example_sentence_english": "The commissioning of the new plant is planned for next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9750 + }, + { + "word": "Intention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intention", + "romanization": "Intention", + "example_sentence_native": "Seine Intention war es, zu helfen.", + "example_sentence_english": "His intention was to help.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9752 + }, + { + "word": "iranisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iranian", + "romanization": "iranisch", + "example_sentence_native": "Sie hat iranische Wurzeln.", + "example_sentence_english": "She has Iranian roots.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9753 + }, + { + "word": "Kabarett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabaret;satirical revue", + "romanization": "Kabarett", + "example_sentence_native": "Wir haben einen Abend im Kabarett verbracht.", + "example_sentence_english": "We spent an evening at the cabaret.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9754 + }, + { + "word": "Kahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punt;small boat", + "romanization": "Kahn", + "example_sentence_native": "Der Fischer fuhr mit seinem Kahn auf den See hinaus.", + "example_sentence_english": "The fisherman went out onto the lake in his punt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9755 + }, + { + "word": "Kaufpreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purchase price", + "romanization": "Kaufpreis", + "example_sentence_native": "Der Kaufpreis für das Haus war sehr hoch.", + "example_sentence_english": "The purchase price for the house was very high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9758 + }, + { + "word": "Kinn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chin", + "romanization": "Kinn", + "example_sentence_native": "Er hat ein starkes Kinn.", + "example_sentence_english": "He has a strong chin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9760 + }, + { + "word": "Komma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comma", + "romanization": "Komma", + "example_sentence_native": "Setze hier ein Komma.", + "example_sentence_english": "Put a comma here.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9762 + }, + { + "word": "Kuppel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dome", + "romanization": "Kuppel", + "example_sentence_native": "Die Kuppel des Gebäudes ist beeindruckend.", + "example_sentence_english": "The dome of the building is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9764 + }, + { + "word": "kärntner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Carinthian", + "romanization": "kärntner", + "example_sentence_native": "Er mag die kärntner Küche.", + "example_sentence_english": "He likes Carinthian cuisine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9765 + }, + { + "word": "Lebzeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lifetime", + "romanization": "Lebzeit", + "example_sentence_native": "Er hat in seiner Lebzeit viel erreicht.", + "example_sentence_english": "He achieved a lot in his lifetime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9766 + }, + { + "word": "Lehne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backrest", + "romanization": "Lehne", + "example_sentence_native": "Die Lehne des Stuhls ist bequem.", + "example_sentence_english": "The backrest of the chair is comfortable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9767 + }, + { + "word": "Leichnam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpse", + "romanization": "Leichnam", + "example_sentence_native": "Der Leichnam wurde zur Untersuchung gebracht.", + "example_sentence_english": "The corpse was taken for examination.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9768 + }, + { + "word": "Leinen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linen", + "romanization": "Leinen", + "example_sentence_native": "Das Hemd ist aus Leinen.", + "example_sentence_english": "The shirt is made of linen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9769 + }, + { + "word": "Lot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plumb bob", + "romanization": "Lot", + "example_sentence_native": "Das Lot hängt senkrecht.", + "example_sentence_english": "The plumb bob hangs vertically.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9774 + }, + { + "word": "Mediathek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "media library", + "romanization": "Mediathek", + "example_sentence_native": "Ich habe den Film in der Mediathek gefunden.", + "example_sentence_english": "I found the film in the media library.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9777 + }, + { + "word": "Missstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grievance", + "romanization": "Missstand", + "example_sentence_native": "Der Missstand wurde endlich behoben.", + "example_sentence_english": "The grievance was finally rectified.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9780 + }, + { + "word": "Modul", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "module", + "romanization": "Modul", + "example_sentence_native": "Jedes Modul hat eine eigene Prüfung.", + "example_sentence_english": "Each module has its own exam.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9781 + }, + { + "word": "Macht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "power", + "romanization": "Macht", + "example_sentence_native": "Sie hat viel Macht in der Firma.", + "example_sentence_english": "She has a lot of power in the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 9782 + }, + { + "word": "Macht", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "power", + "romanization": "Macht", + "example_sentence_native": "Die Macht des Volkes ist groß.", + "example_sentence_english": "The power of the people is great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 9782 + }, + { + "word": "Nickel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nickel", + "romanization": "Nickel", + "example_sentence_native": "Nickel ist ein chemisches Element.", + "example_sentence_english": "Nickel is a chemical element.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9783 + }, + { + "word": "optimieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to optimize", + "romanization": "optimieren", + "example_sentence_native": "Wir müssen den Prozess optimieren.", + "example_sentence_english": "We need to optimize the process.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9788 + }, + { + "word": "organisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organic", + "romanization": "organisch", + "example_sentence_native": "Ich kaufe gerne organische Produkte.", + "example_sentence_english": "I like to buy organic products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9789 + }, + { + "word": "ostdeutsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "East German", + "romanization": "ostdeutsch", + "example_sentence_native": "Er kommt aus einer ostdeutschen Stadt.", + "example_sentence_english": "He comes from an East German city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9790 + }, + { + "word": "Panther", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panther", + "romanization": "Panther", + "example_sentence_native": "Der Panther ist ein elegantes Tier.", + "example_sentence_english": "The panther is an elegant animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9791 + }, + { + "word": "Parodie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parody", + "romanization": "Parodie", + "example_sentence_native": "Die Show war eine lustige Parodie auf bekannte Filme.", + "example_sentence_english": "The show was a funny parody of well-known movies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9792 + }, + { + "word": "potenziell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potential", + "romanization": "potenziell", + "example_sentence_native": "Das ist ein potenzielles Problem.", + "example_sentence_english": "That is a potential problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9794 + }, + { + "word": "Prämie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premium", + "romanization": "Prämie", + "example_sentence_native": "Er erhielt eine hohe Prämie für seine gute Arbeit.", + "example_sentence_english": "He received a high bonus for his good work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9796 + }, + { + "word": "Präzision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precision", + "romanization": "Präzision", + "example_sentence_native": "Die Maschine arbeitet mit hoher Präzision.", + "example_sentence_english": "The machine operates with high precision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9797 + }, + { + "word": "Putz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster", + "romanization": "Putz", + "example_sentence_native": "Der Putz an der Wand bröckelt ab.", + "example_sentence_english": "The plaster on the wall is crumbling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 9798 + }, + { + "word": "Putz", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster", + "romanization": "Putz", + "example_sentence_native": "Der Putz an der Wand bröckelt.", + "example_sentence_english": "The plaster on the wall is crumbling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 9798 + }, + { + "word": "Rechenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accountability;account", + "romanization": "Rechenschaft", + "example_sentence_native": "Er muss Rechenschaft über seine Ausgaben ablegen.", + "example_sentence_english": "He must give an account of his expenses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9800 + }, + { + "word": "Reflexion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflection", + "romanization": "Reflexion", + "example_sentence_native": "Die Reflexion des Lichts auf dem Wasser war wunderschön.", + "example_sentence_english": "The reflection of the light on the water was beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9801 + }, + { + "word": "Rettungsdienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency services;rescue service", + "romanization": "Rettungsdienst", + "example_sentence_native": "Der Rettungsdienst war schnell vor Ort.", + "example_sentence_english": "The emergency services were quickly on site.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9802 + }, + { + "word": "Schlepper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tugboat;tractor", + "romanization": "Schlepper", + "example_sentence_native": "Der Schlepper zog das große Schiff in den Hafen.", + "example_sentence_english": "The tugboat pulled the large ship into the harbor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9805 + }, + { + "word": "Screen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screen", + "romanization": "Screen", + "example_sentence_native": "Der Screen des Computers ist sehr hell.", + "example_sentence_english": "The computer screen is very bright.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9806 + }, + { + "word": "Sitte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custom;tradition", + "romanization": "Sitte", + "example_sentence_native": "Es ist eine alte Sitte in diesem Dorf.", + "example_sentence_english": "It is an old custom in this village.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9807 + }, + { + "word": "Slalom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slalom", + "romanization": "Slalom", + "example_sentence_native": "Er gewann den Slalom im Skirennen.", + "example_sentence_english": "He won the slalom in the ski race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9809 + }, + { + "word": "Spin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spin", + "romanization": "Spin", + "example_sentence_native": "Der Ball hatte einen starken Spin.", + "example_sentence_english": "The ball had a strong spin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9810 + }, + { + "word": "Stützpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "base;stronghold", + "romanization": "Stützpunkt", + "example_sentence_native": "Die Armee errichtete einen neuen Stützpunkt.", + "example_sentence_english": "The army established a new base.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9812 + }, + { + "word": "Subvention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsidy", + "romanization": "Subvention", + "example_sentence_native": "Die Regierung gewährt Subventionen für erneuerbare Energien.", + "example_sentence_english": "The government grants subsidies for renewable energies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9813 + }, + { + "word": "Swing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swing", + "romanization": "Swing", + "example_sentence_native": "Er liebt Jazz und Swing-Musik.", + "example_sentence_english": "He loves jazz and swing music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9814 + }, + { + "word": "Theory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theory", + "romanization": "Theory", + "example_sentence_native": "Die Theory ist interessant, aber schwer zu beweisen.", + "example_sentence_english": "The theory is interesting but hard to prove.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9816 + }, + { + "word": "Traube", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grape;bunch of grapes", + "romanization": "Traube", + "example_sentence_native": "Ich esse gerne eine Traube zum Frühstück.", + "example_sentence_english": "I like to eat a grape for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9817 + }, + { + "word": "umsteigen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to change (trains;buses);to transfer", + "romanization": "umsteigen", + "example_sentence_native": "Wir müssen am nächsten Bahnhof umsteigen.", + "example_sentence_english": "We have to change at the next station.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "steigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9818 + }, + { + "word": "ungeeignet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unsuitable;inappropriate", + "romanization": "ungeeignet", + "example_sentence_native": "Dieser Vorschlag ist ungeeignet für unser Projekt.", + "example_sentence_english": "This proposal is unsuitable for our project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9819 + }, + { + "word": "Ungerechtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injustice", + "romanization": "Ungerechtigkeit", + "example_sentence_native": "Die Ungerechtigkeit der Situation war offensichtlich.", + "example_sentence_english": "The injustice of the situation was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9820 + }, + { + "word": "Unmut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "displeasure", + "romanization": "Unmut", + "example_sentence_native": "Er äußerte seinen Unmut über die Entscheidung.", + "example_sentence_english": "He expressed his displeasure about the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9821 + }, + { + "word": "Untersuchungshaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-trial detention", + "romanization": "Untersuchungshaft", + "example_sentence_native": "Der Verdächtige wurde in Untersuchungshaft genommen.", + "example_sentence_english": "The suspect was taken into pre-trial detention.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9822 + }, + { + "word": "Unzufriedenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dissatisfaction", + "romanization": "Unzufriedenheit", + "example_sentence_native": "Es gab eine allgemeine Unzufriedenheit mit der Regierung.", + "example_sentence_english": "There was general dissatisfaction with the government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9823 + }, + { + "word": "unzulässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inadmissible", + "romanization": "unzulässig", + "example_sentence_native": "Diese Methode ist unzulässig.", + "example_sentence_english": "This method is inadmissible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9824 + }, + { + "word": "versenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sink", + "romanization": "versenken", + "example_sentence_native": "Das Schiff wurde im Sturm versenkt.", + "example_sentence_english": "The ship was sunk in the storm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9825 + }, + { + "word": "verspielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gamble away", + "romanization": "verspielen", + "example_sentence_native": "Er hat sein ganzes Geld verspielt.", + "example_sentence_english": "He gambled away all his money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9826 + }, + { + "word": "verspätet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delayed", + "romanization": "verspätet", + "example_sentence_native": "Der Zug ist verspätet.", + "example_sentence_english": "The train is delayed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9827 + }, + { + "word": "Versteck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiding place", + "romanization": "Versteck", + "example_sentence_native": "Sie fanden das Versteck des Schatzes.", + "example_sentence_english": "They found the hiding place of the treasure.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9828 + }, + { + "word": "Versöhnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconciliation", + "romanization": "Versöhnung", + "example_sentence_native": "Nach dem Streit kam es zur Versöhnung.", + "example_sentence_english": "After the argument, reconciliation occurred.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9829 + }, + { + "word": "verwöhnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spoil", + "romanization": "verwöhnen", + "example_sentence_native": "Die Großeltern verwöhnen ihre Enkelkinder.", + "example_sentence_english": "The grandparents spoil their grandchildren.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9830 + }, + { + "word": "Vollendung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "completion", + "romanization": "Vollendung", + "example_sentence_native": "Die Vollendung des Projekts dauerte Jahre.", + "example_sentence_english": "The completion of the project took years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9832 + }, + { + "word": "vorgegeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predetermined", + "romanization": "vorgegeben", + "example_sentence_native": "Wir müssen die vorgegebenen Regeln befolgen.", + "example_sentence_english": "We must follow the predetermined rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9833 + }, + { + "word": "wahlweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optionally", + "romanization": "wahlweise", + "example_sentence_native": "Sie können wahlweise Kaffee oder Tee bestellen.", + "example_sentence_english": "You can optionally order coffee or tea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 9834 + }, + { + "word": "Weltanschauung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worldview", + "romanization": "Weltanschauung", + "example_sentence_native": "Seine Weltanschauung ist sehr optimistisch.", + "example_sentence_english": "His worldview is very optimistic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9835 + }, + { + "word": "Wiedergabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playback", + "romanization": "Wiedergabe", + "example_sentence_native": "Die Wiedergabe des Videos war klar.", + "example_sentence_english": "The playback of the video was clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9836 + }, + { + "word": "winzig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny", + "romanization": "winzig", + "example_sentence_native": "Die Spinne war winzig klein.", + "example_sentence_english": "The spider was tiny.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9837 + }, + { + "word": "Wirbelsäule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spine", + "romanization": "Wirbelsäule", + "example_sentence_native": "Er hatte Schmerzen in der Wirbelsäule.", + "example_sentence_english": "He had pain in his spine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9838 + }, + { + "word": "Witterung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weather conditions", + "romanization": "Witterung", + "example_sentence_native": "Die Witterung war schlecht für die Ernte.", + "example_sentence_english": "The weather conditions were bad for the harvest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9839 + }, + { + "word": "Wortschatz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "vocabulary", + "romanization": "Wortschatz", + "example_sentence_native": "Mein deutscher Wortschatz wächst jeden Tag.", + "example_sentence_english": "My German vocabulary grows every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9840 + }, + { + "word": "Zentralbank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "central bank", + "romanization": "Zentralbank", + "example_sentence_native": "Die Zentralbank hat die Zinsen erhöht.", + "example_sentence_english": "The central bank has raised interest rates.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9841 + }, + { + "word": "zirka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approximately;about", + "romanization": "zirka", + "example_sentence_native": "Es sind zirka zehn Leute gekommen.", + "example_sentence_english": "Approximately ten people came.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 9842 + }, + { + "word": "zweieinhalb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "two and a half", + "romanization": "zweieinhalb", + "example_sentence_native": "Ich brauche zweieinhalb Stunden, um dorthin zu fahren.", + "example_sentence_english": "I need two and a half hours to drive there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 9843 + }, + { + "word": "übersteigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exceed;to surpass", + "romanization": "übersteigen", + "example_sentence_native": "Die Kosten werden das Budget übersteigen.", + "example_sentence_english": "The costs will exceed the budget.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9844 + }, + { + "word": "übertreffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surpass;to outperform", + "romanization": "übertreffen", + "example_sentence_native": "Er konnte die Erwartungen übertreffen.", + "example_sentence_english": "He was able to surpass expectations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9845 + }, + { + "word": "Abtreibung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abortion", + "romanization": "Abtreibung", + "example_sentence_native": "Das Thema Abtreibung ist in vielen Ländern umstritten.", + "example_sentence_english": "The topic of abortion is controversial in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9846 + }, + { + "word": "alleinerziehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "single-parent", + "romanization": "alleinerziehend", + "example_sentence_native": "Sie ist eine alleinerziehende Mutter.", + "example_sentence_english": "She is a single-parent mother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9847 + }, + { + "word": "Anekdote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anecdote", + "romanization": "Anekdote", + "example_sentence_native": "Er erzählte eine lustige Anekdote aus seiner Kindheit.", + "example_sentence_english": "He told a funny anecdote from his childhood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9848 + }, + { + "word": "Anreiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incentive;stimulus", + "romanization": "Anreiz", + "example_sentence_native": "Es gibt einen finanziellen Anreiz für neue Mitarbeiter.", + "example_sentence_english": "There is a financial incentive for new employees.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9849 + }, + { + "word": "ansatzweise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rudimentary;partially", + "romanization": "ansatzweise", + "example_sentence_native": "Ich verstehe das Problem ansatzweise.", + "example_sentence_english": "I understand the problem partially.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 9850 + }, + { + "word": "Attraktivität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attractiveness", + "romanization": "Attraktivität", + "example_sentence_native": "Die Attraktivität des Angebots ist hoch.", + "example_sentence_english": "The attractiveness of the offer is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9852 + }, + { + "word": "aufrechterhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maintain;to uphold", + "romanization": "aufrechterhalten", + "example_sentence_native": "Wir müssen den Frieden aufrechterhalten.", + "example_sentence_english": "We must maintain peace.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aufrecht", + "base_verb": "erhalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9853 + }, + { + "word": "Ausschlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rash;decisive factor", + "romanization": "Ausschlag", + "example_sentence_native": "Sie hat einen Ausschlag am Arm.", + "example_sentence_english": "She has a rash on her arm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9854 + }, + { + "word": "Aussenseiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outsider;underdog", + "romanization": "Aussenseiter", + "example_sentence_native": "Er fühlte sich oft als Aussenseiter.", + "example_sentence_english": "He often felt like an outsider.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9855 + }, + { + "word": "Beantwortung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "answering;response", + "romanization": "Beantwortung", + "example_sentence_native": "Die Beantwortung der Frage dauerte lange.", + "example_sentence_english": "The answering of the question took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9857 + }, + { + "word": "befahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drive on;to navigate", + "romanization": "befahren", + "example_sentence_native": "Diese Straße ist stark befahren.", + "example_sentence_english": "This road is heavily driven on.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9858 + }, + { + "word": "befolgen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to follow;to obey", + "romanization": "befolgen", + "example_sentence_native": "Man muss die Regeln befolgen.", + "example_sentence_english": "One must follow the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9859 + }, + { + "word": "Beilage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "side dish", + "romanization": "Beilage", + "example_sentence_native": "Als Beilage gab es Kartoffeln.", + "example_sentence_english": "As a side dish, there were potatoes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9860 + }, + { + "word": "Belegschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workforce;staff", + "romanization": "Belegschaft", + "example_sentence_native": "Die gesamte Belegschaft wurde über die Änderungen informiert.", + "example_sentence_english": "The entire staff was informed about the changes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9861 + }, + { + "word": "Blickwinkel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perspective;point of view", + "romanization": "Blickwinkel", + "example_sentence_native": "Aus diesem Blickwinkel sieht die Sache anders aus.", + "example_sentence_english": "From this perspective, the matter looks different.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9864 + }, + { + "word": "bohren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drill;to bore", + "romanization": "bohren", + "example_sentence_native": "Er muss ein Loch in die Wand bohren.", + "example_sentence_english": "He has to drill a hole in the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9866 + }, + { + "word": "Buffet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buffet", + "romanization": "Buffet", + "example_sentence_native": "Das Hotel bietet ein reichhaltiges Frühstücksbuffet an.", + "example_sentence_english": "The hotel offers a rich breakfast buffet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9868 + }, + { + "word": "dazugehörig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "associated;belonging to", + "romanization": "dazugehörig", + "example_sentence_native": "Bitte legen Sie alle dazugehörigen Dokumente bei.", + "example_sentence_english": "Please attach all associated documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9875 + }, + { + "word": "Deko", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decoration (informal)", + "romanization": "Deko", + "example_sentence_native": "Wir brauchen noch etwas Deko für die Party.", + "example_sentence_english": "We still need some decoration for the party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9877 + }, + { + "word": "Denkmalschutz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monument protection;heritage protection", + "romanization": "Denkmalschutz", + "example_sentence_native": "Das Gebäude steht unter Denkmalschutz.", + "example_sentence_english": "The building is under monument protection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9878 + }, + { + "word": "drittens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thirdly", + "romanization": "drittens", + "example_sentence_native": "Drittens müssen wir die Kosten senken.", + "example_sentence_english": "Thirdly, we must reduce the costs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 9880 + }, + { + "word": "Dynastie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynasty", + "romanization": "Dynastie", + "example_sentence_native": "Die Dynastie regierte über viele Jahrhunderte.", + "example_sentence_english": "The dynasty ruled for many centuries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9882 + }, + { + "word": "düster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gloomy", + "romanization": "düster", + "example_sentence_native": "Die Stimmung im Raum war düster.", + "example_sentence_english": "The mood in the room was gloomy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9883 + }, + { + "word": "eifersüchtig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jealous", + "romanization": "eifersüchtig", + "example_sentence_native": "Er ist sehr eifersüchtig auf seinen Bruder.", + "example_sentence_english": "He is very jealous of his brother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9887 + }, + { + "word": "eingangs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at the beginning", + "romanization": "eingangs", + "example_sentence_native": "Eingangs möchte ich mich für Ihre Aufmerksamkeit bedanken.", + "example_sentence_english": "At the beginning, I would like to thank you for your attention.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 9888 + }, + { + "word": "Eisbär", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polar bear", + "romanization": "Eisbär", + "example_sentence_native": "Der Eisbär lebt in der Arktis.", + "example_sentence_english": "The polar bear lives in the Arctic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9889 + }, + { + "word": "Erreger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathogen", + "romanization": "Erreger", + "example_sentence_native": "Der Erreger der Krankheit wurde identifiziert.", + "example_sentence_english": "The pathogen of the disease was identified.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9890 + }, + { + "word": "erstmalig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for the first time", + "romanization": "erstmalig", + "example_sentence_native": "Das Konzert findet erstmalig in dieser Stadt statt.", + "example_sentence_english": "The concert is taking place for the first time in this city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 9891 + }, + { + "word": "Erwägung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration", + "romanization": "Erwägung", + "example_sentence_native": "Wir werden Ihren Vorschlag in Erwägung ziehen.", + "example_sentence_english": "We will take your suggestion into consideration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9892 + }, + { + "word": "Fee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fairy", + "romanization": "Fee", + "example_sentence_native": "Die gute Fee erfüllte ihr einen Wunsch.", + "example_sentence_english": "The good fairy granted her a wish.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9893 + }, + { + "word": "Feeling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling", + "romanization": "Feeling", + "example_sentence_native": "Ich habe ein gutes Feeling für dieses Projekt.", + "example_sentence_english": "I have a good feeling about this project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9895 + }, + { + "word": "flott", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quick", + "romanization": "flott", + "example_sentence_native": "Sie hat einen sehr flotten Gang.", + "example_sentence_english": "She has a very quick pace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9896 + }, + { + "word": "Freundlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friendliness", + "romanization": "Freundlichkeit", + "example_sentence_native": "Ihre Freundlichkeit war sehr herzerwärmend.", + "example_sentence_english": "Her kindness was very heartwarming.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9898 + }, + { + "word": "Gag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gag", + "romanization": "Gag", + "example_sentence_native": "Der Komiker hatte einen lustigen Gag.", + "example_sentence_english": "The comedian had a funny gag.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9899 + }, + { + "word": "Gegenseite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposite side;opposing party", + "romanization": "Gegenseite", + "example_sentence_native": "Die Gegenseite hat ihre Argumente vorgebracht.", + "example_sentence_english": "The opposing side has presented its arguments.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9901 + }, + { + "word": "gehörig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proper;due;considerable", + "romanization": "gehörig", + "example_sentence_native": "Er hat ihr gehörig die Meinung gesagt.", + "example_sentence_english": "He properly told her what he thought.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9902 + }, + { + "word": "Genesung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recovery;recuperation", + "romanization": "Genesung", + "example_sentence_native": "Wir wünschen dir eine schnelle Genesung.", + "example_sentence_english": "We wish you a speedy recovery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9903 + }, + { + "word": "Gesprächspartner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conversation partner;interlocutor", + "romanization": "Gesprächspartner", + "example_sentence_native": "Mein Gesprächspartner war sehr freundlich.", + "example_sentence_english": "My conversation partner was very friendly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9904 + }, + { + "word": "weihen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consecrate;to dedicate", + "romanization": "weihen", + "example_sentence_native": "Der Priester wird die Kirche weihen.", + "example_sentence_english": "The priest will consecrate the church.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9905 + }, + { + "word": "Halter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holder;owner;keeper", + "romanization": "Halter", + "example_sentence_native": "Der Halter des Hundes muss ihn anleinen.", + "example_sentence_english": "The owner of the dog must leash it.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9909 + }, + { + "word": "hartnäckig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubborn;persistent;tenacious", + "romanization": "hartnäckig", + "example_sentence_native": "Er verfolgte sein Ziel hartnäckig.", + "example_sentence_english": "He persistently pursued his goal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9911 + }, + { + "word": "hervorgehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emerge;to result (from)", + "romanization": "hervorgehen", + "example_sentence_native": "Aus den Daten geht hervor, dass...", + "example_sentence_english": "It emerges from the data that...", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hervor", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9914 + }, + { + "word": "Hoden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testicle", + "romanization": "Hoden", + "example_sentence_native": "Der Hoden ist Teil des männlichen Fortpflanzungssystems.", + "example_sentence_english": "The testicle is part of the male reproductive system.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9915 + }, + { + "word": "höchstwahrscheinlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most likely;in all probability", + "romanization": "höchstwahrscheinlich", + "example_sentence_native": "Er wird höchstwahrscheinlich zu spät kommen.", + "example_sentence_english": "He will most likely be late.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 9917 + }, + { + "word": "Identifizierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "identification", + "romanization": "Identifizierung", + "example_sentence_native": "Die Identifizierung des Täters war schwierig.", + "example_sentence_english": "The identification of the perpetrator was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9918 + }, + { + "word": "kreuzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cross;to cruise", + "romanization": "kreuzen", + "example_sentence_native": "Wir müssen diese Straße kreuzen.", + "example_sentence_english": "We have to cross this street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9926 + }, + { + "word": "Kriegsende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "end of the war", + "romanization": "Kriegsende", + "example_sentence_native": "Das Kriegsende brachte Frieden.", + "example_sentence_english": "The end of the war brought peace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9927 + }, + { + "word": "Kurfürst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elector (prince-elector)", + "romanization": "Kurfürst", + "example_sentence_native": "Der Kurfürst hatte große Macht.", + "example_sentence_english": "The elector had great power.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9928 + }, + { + "word": "Labyrinth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labyrinth", + "romanization": "Labyrinth", + "example_sentence_native": "Wir haben uns im Labyrinth verirrt.", + "example_sentence_english": "We got lost in the labyrinth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9929 + }, + { + "word": "Larve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "larva", + "romanization": "Larve", + "example_sentence_native": "Die Larve entwickelte sich zum Schmetterling.", + "example_sentence_english": "The larva developed into a butterfly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9931 + }, + { + "word": "Latex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "latex", + "romanization": "Latex", + "example_sentence_native": "Handschuhe aus Latex sind oft allergieauslösend.", + "example_sentence_english": "Gloves made of latex often cause allergies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9932 + }, + { + "word": "Luftfeuchtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humidity;air humidity", + "romanization": "Luftfeuchtigkeit", + "example_sentence_native": "Die Luftfeuchtigkeit ist heute sehr hoch.", + "example_sentence_english": "The humidity is very high today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9933 + }, + { + "word": "magdeburger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Magdeburgian;from Magdeburg", + "romanization": "magdeburger", + "example_sentence_native": "Er ist ein magdeburger Bürger.", + "example_sentence_english": "He is a Magdeburgian citizen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9934 + }, + { + "word": "Magier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magician;mage", + "romanization": "Magier", + "example_sentence_native": "Der Magier zeigte einen erstaunlichen Trick.", + "example_sentence_english": "The magician showed an amazing trick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9935 + }, + { + "word": "Manier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manner;way;habit", + "romanization": "Manier", + "example_sentence_native": "Er hat gute Manieren.", + "example_sentence_english": "He has good manners.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9936 + }, + { + "word": "Meilenstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "milestone", + "romanization": "Meilenstein", + "example_sentence_native": "Das Projekt erreichte einen wichtigen Meilenstein.", + "example_sentence_english": "The project reached an important milestone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9937 + }, + { + "word": "Messenger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messenger (app)", + "romanization": "Messenger", + "example_sentence_native": "Ich habe eine Nachricht über den Messenger geschickt.", + "example_sentence_english": "I sent a message via the messenger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9938 + }, + { + "word": "Met", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mead", + "romanization": "Met", + "example_sentence_native": "Im Mittelalter trank man oft Met.", + "example_sentence_english": "In the Middle Ages, people often drank mead.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9939 + }, + { + "word": "Mitspieler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teammate", + "romanization": "Mitspieler", + "example_sentence_native": "Er ist ein wichtiger Mitspieler in unserem Team.", + "example_sentence_english": "He is an important teammate in our team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9940 + }, + { + "word": "Parasit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parasite", + "romanization": "Parasit", + "example_sentence_native": "Ein Parasit lebt auf Kosten seines Wirts.", + "example_sentence_english": "A parasite lives at the expense of its host.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9948 + }, + { + "word": "passe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "passé;outdated", + "romanization": "passe", + "example_sentence_native": "Diese Mode ist längst passe.", + "example_sentence_english": "This fashion is long passé.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9949 + }, + { + "word": "Pfannkuchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pancake", + "romanization": "Pfannkuchen", + "example_sentence_native": "Ich esse gerne Pfannkuchen zum Frühstück.", + "example_sentence_english": "I like to eat pancakes for breakfast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9951 + }, + { + "word": "Phantom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phantom", + "romanization": "Phantom", + "example_sentence_native": "Er sah ein Phantom im alten Haus.", + "example_sentence_english": "He saw a phantom in the old house.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9952 + }, + { + "word": "Plural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plural", + "romanization": "Plural", + "example_sentence_native": "Das Wort 'Haus' hat den Plural 'Häuser'.", + "example_sentence_english": "The word 'Haus' has the plural 'Häuser'.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9954 + }, + { + "word": "Portrait", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portrait", + "romanization": "Portrait", + "example_sentence_native": "Sie malte ein schönes Portrait von ihrer Mutter.", + "example_sentence_english": "She painted a beautiful portrait of her mother.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9955 + }, + { + "word": "positionieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to position", + "romanization": "positionieren", + "example_sentence_native": "Er musste die Möbel neu positionieren.", + "example_sentence_english": "He had to reposition the furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9956 + }, + { + "word": "Pubertät", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puberty", + "romanization": "Pubertät", + "example_sentence_native": "Die Pubertät ist eine Zeit großer Veränderungen.", + "example_sentence_english": "Puberty is a time of great changes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9957 + }, + { + "word": "Querschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross-section", + "romanization": "Querschnitt", + "example_sentence_native": "Der Ingenieur untersuchte den Querschnitt des Materials.", + "example_sentence_english": "The engineer examined the cross-section of the material.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9958 + }, + { + "word": "Radler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyclist;shandy", + "romanization": "Radler", + "example_sentence_native": "Nach der Tour trank der Radler ein kühles Radler.", + "example_sentence_english": "After the tour, the cyclist drank a cool shandy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9959 + }, + { + "word": "Raumschiff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spaceship", + "romanization": "Raumschiff", + "example_sentence_native": "Das Raumschiff landete auf einem fremden Planeten.", + "example_sentence_english": "The spaceship landed on an alien planet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9960 + }, + { + "word": "Remis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "draw;tie (in a game)", + "romanization": "Remis", + "example_sentence_native": "Das Schachspiel endete in einem Remis.", + "example_sentence_english": "The chess game ended in a draw.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9961 + }, + { + "word": "Reue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regret;remorse", + "romanization": "Reue", + "example_sentence_native": "Er zeigte tiefe Reue für seine Taten.", + "example_sentence_english": "He showed deep regret for his actions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9963 + }, + { + "word": "Rost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rust", + "romanization": "Rost", + "example_sentence_native": "Das alte Fahrrad ist voller Rost.", + "example_sentence_english": "The old bicycle is full of rust.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9965 + }, + { + "word": "Scheinwerfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headlight;spotlight", + "romanization": "Scheinwerfer", + "example_sentence_native": "Die Scheinwerfer des Autos waren sehr hell.", + "example_sentence_english": "The car's headlights were very bright.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9970 + }, + { + "word": "schleppen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drag;to haul", + "romanization": "schleppen", + "example_sentence_native": "Er musste die schweren Koffer schleppen.", + "example_sentence_english": "He had to drag the heavy suitcases.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9972 + }, + { + "word": "schmelzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to melt", + "romanization": "schmelzen", + "example_sentence_native": "Das Eis schmilzt schnell in der Sonne.", + "example_sentence_english": "The ice melts quickly in the sun.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9973 + }, + { + "word": "Schwamm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sponge", + "romanization": "Schwamm", + "example_sentence_native": "Bitte gib mir den Schwamm, um den Tisch abzuwischen.", + "example_sentence_english": "Please give me the sponge to wipe the table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9974 + }, + { + "word": "senkrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertical;perpendicular", + "romanization": "senkrecht", + "example_sentence_native": "Die Linie ist senkrecht zur Oberfläche.", + "example_sentence_english": "The line is perpendicular to the surface.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9976 + }, + { + "word": "sozialdemokratisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social democratic", + "romanization": "sozialdemokratisch", + "example_sentence_native": "Die Partei hat eine sozialdemokratische Ausrichtung.", + "example_sentence_english": "The party has a social democratic orientation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9979 + }, + { + "word": "Sozialwissenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social science", + "romanization": "Sozialwissenschaft", + "example_sentence_native": "Sie studiert Sozialwissenschaft an der Universität.", + "example_sentence_english": "She studies social science at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9980 + }, + { + "word": "Spiess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spear;skewer", + "romanization": "Spiess", + "example_sentence_native": "Er hat das Fleisch auf einen langen Spiess gesteckt.", + "example_sentence_english": "He put the meat on a long skewer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9981 + }, + { + "word": "Sportverein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sports club", + "romanization": "Sportverein", + "example_sentence_native": "Ich bin Mitglied in einem lokalen Sportverein.", + "example_sentence_english": "I am a member of a local sports club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9982 + }, + { + "word": "stationieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to station", + "romanization": "stationieren", + "example_sentence_native": "Die Truppen wurden an der Grenze stationiert.", + "example_sentence_english": "The troops were stationed at the border.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9983 + }, + { + "word": "stationär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stationary;inpatient", + "romanization": "stationär", + "example_sentence_native": "Der Patient muss stationär behandelt werden.", + "example_sentence_english": "The patient needs to be treated as an inpatient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9984 + }, + { + "word": "Sushi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sushi", + "romanization": "Sushi", + "example_sentence_native": "Wir haben heute Abend Sushi gegessen.", + "example_sentence_english": "We ate sushi this evening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9986 + }, + { + "word": "symbolisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolic", + "romanization": "symbolisch", + "example_sentence_native": "Das war nur eine symbolische Geste.", + "example_sentence_english": "That was just a symbolic gesture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9987 + }, + { + "word": "taub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deaf;numb", + "romanization": "taub", + "example_sentence_native": "Nach dem Schlag war mein Arm taub.", + "example_sentence_english": "After the blow, my arm was numb.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9988 + }, + { + "word": "Techno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "techno (music genre)", + "romanization": "Techno", + "example_sentence_native": "Er hört gerne Techno-Musik.", + "example_sentence_english": "He likes to listen to techno music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9989 + }, + { + "word": "Theaterstück", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "play (theatrical)", + "romanization": "Theaterstück", + "example_sentence_native": "Das Theaterstück war sehr beeindruckend.", + "example_sentence_english": "The play was very impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 9990 + }, + { + "word": "ultimativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimate", + "romanization": "ultimativ", + "example_sentence_native": "Das ist die ultimative Lösung für das Problem.", + "example_sentence_english": "That is the ultimate solution to the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9992 + }, + { + "word": "umarmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hug;to embrace", + "romanization": "umarmen", + "example_sentence_native": "Sie wollte ihn fest umarmen.", + "example_sentence_english": "She wanted to hug him tightly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9993 + }, + { + "word": "unberührt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untouched;pristine", + "romanization": "unberührt", + "example_sentence_native": "Die Natur in diesem Gebiet ist noch unberührt.", + "example_sentence_english": "The nature in this area is still pristine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9994 + }, + { + "word": "ungestört", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undisturbed", + "romanization": "ungestört", + "example_sentence_native": "Ich möchte ungestört arbeiten können.", + "example_sentence_english": "I want to be able to work undisturbed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9996 + }, + { + "word": "unregelmäßig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irregular", + "romanization": "unregelmäßig", + "example_sentence_native": "Das Verb ist unregelmäßig konjugiert.", + "example_sentence_english": "The verb is conjugated irregularly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 9997 + }, + { + "word": "unterbinden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prevent;to stop", + "romanization": "unterbinden", + "example_sentence_native": "Wir müssen diese Entwicklung unterbinden.", + "example_sentence_english": "We must prevent this development.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 9998 + }, + { + "word": "Vegetation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vegetation", + "romanization": "Vegetation", + "example_sentence_native": "Die Vegetation in diesem Gebiet ist sehr dicht.", + "example_sentence_english": "The vegetation in this area is very dense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10001 + }, + { + "word": "vehement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vehement;strong", + "romanization": "vehement", + "example_sentence_native": "Er hat vehement gegen die Entscheidung protestiert.", + "example_sentence_english": "He protested vehemently against the decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10002 + }, + { + "word": "verboten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forbidden;prohibited", + "romanization": "verboten", + "example_sentence_native": "Rauchen ist hier streng verboten.", + "example_sentence_english": "Smoking is strictly forbidden here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10003 + }, + { + "word": "Verbundenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connectedness;solidarity;bond", + "romanization": "Verbundenheit", + "example_sentence_native": "Es gibt eine tiefe Verbundenheit zwischen den Geschwistern.", + "example_sentence_english": "There is a deep bond between the siblings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10004 + }, + { + "word": "verbünden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ally;to unite", + "romanization": "verbünden", + "example_sentence_native": "Sie wollen sich gegen den gemeinsamen Feind verbünden.", + "example_sentence_english": "They want to ally against the common enemy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10005 + }, + { + "word": "Vertreibung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expulsion;displacement", + "romanization": "Vertreibung", + "example_sentence_native": "Die Vertreibung der Bevölkerung führte zu einer Krise.", + "example_sentence_english": "The expulsion of the population led to a crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10006 + }, + { + "word": "Verwalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrator;manager;steward", + "romanization": "Verwalter", + "example_sentence_native": "Der Verwalter kümmert sich um die Gebäude.", + "example_sentence_english": "The administrator takes care of the buildings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10007 + }, + { + "word": "vielerlei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "various;diverse", + "romanization": "vielerlei", + "example_sentence_native": "Es gab vielerlei Gründe für seine Entscheidung.", + "example_sentence_english": "There were various reasons for his decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10008 + }, + { + "word": "Vormarsch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advance;progress", + "romanization": "Vormarsch", + "example_sentence_native": "Der Vormarsch der Truppen wurde gestoppt.", + "example_sentence_english": "The advance of the troops was stopped.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10009 + }, + { + "word": "vorzugsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preferably;primarily", + "romanization": "vorzugsweise", + "example_sentence_native": "Wir treffen uns vorzugsweise am Wochenende.", + "example_sentence_english": "We preferably meet on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 10011 + }, + { + "word": "Wegfall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abolition;discontinuation;elimination", + "romanization": "Wegfall", + "example_sentence_native": "Der Wegfall der Subventionen hatte große Auswirkungen.", + "example_sentence_english": "The discontinuation of subsidies had major effects.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10013 + }, + { + "word": "weithin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "far and wide;widely", + "romanization": "weithin", + "example_sentence_native": "Seine Arbeit ist weithin bekannt.", + "example_sentence_english": "His work is widely known.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 10014 + }, + { + "word": "Welpe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puppy;cub", + "romanization": "Welpe", + "example_sentence_native": "Der kleine Welpe spielt im Garten.", + "example_sentence_english": "The little puppy is playing in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10015 + }, + { + "word": "Willkür", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitrariness;despotism", + "romanization": "Willkür", + "example_sentence_native": "Die Entscheidung wurde aus reiner Willkür getroffen.", + "example_sentence_english": "The decision was made out of pure arbitrariness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10017 + }, + { + "word": "Würdigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appreciation;tribute", + "romanization": "Würdigung", + "example_sentence_native": "Er erhielt eine besondere Würdigung für seine Arbeit.", + "example_sentence_english": "He received a special appreciation for his work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10021 + }, + { + "word": "Yen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Yen (Japanese currency)", + "romanization": "Yen", + "example_sentence_native": "Der japanische Yen ist eine wichtige Währung.", + "example_sentence_english": "The Japanese Yen is an important currency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10022 + }, + { + "word": "Zertifikat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certificate", + "romanization": "Zertifikat", + "example_sentence_native": "Ich habe ein Sprachzertifikat erhalten.", + "example_sentence_english": "I received a language certificate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10024 + }, + { + "word": "Zielsetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objective;goal setting", + "romanization": "Zielsetzung", + "example_sentence_native": "Die Zielsetzung des Projekts ist klar definiert.", + "example_sentence_english": "The objective of the project is clearly defined.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10025 + }, + { + "word": "Ziffer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digit;figure", + "romanization": "Ziffer", + "example_sentence_native": "Bitte geben Sie die letzte Ziffer Ihrer Telefonnummer ein.", + "example_sentence_english": "Please enter the last digit of your phone number.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10026 + }, + { + "word": "zusprechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to award;to grant;to encourage", + "romanization": "zusprechen", + "example_sentence_native": "Der Richter wird ihm Schadensersatz zusprechen.", + "example_sentence_english": "The judge will award him damages.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "sprechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10027 + }, + { + "word": "zutun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add;to contribute;to close", + "romanization": "zutun", + "example_sentence_native": "Er hatte nichts mit der Sache zutun.", + "example_sentence_english": "He had nothing to do with the matter.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "tun", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10028 + }, + { + "word": "Zuwanderer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigrant;migrant", + "romanization": "Zuwanderer", + "example_sentence_native": "Viele Zuwanderer suchen in Deutschland eine neue Heimat.", + "example_sentence_english": "Many immigrants are looking for a new home in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10029 + }, + { + "word": "ängstlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anxious;fearful", + "romanization": "ängstlich", + "example_sentence_native": "Das Kind war ängstlich im Dunkeln.", + "example_sentence_english": "The child was anxious in the dark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10030 + }, + { + "word": "Überwindung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overcoming;conquest;effort", + "romanization": "Überwindung", + "example_sentence_native": "Es kostete ihn große Überwindung, die Rede zu halten.", + "example_sentence_english": "It took great effort for him to give the speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10031 + }, + { + "word": "abweichend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deviating;divergent", + "romanization": "abweichend", + "example_sentence_native": "Die Ergebnisse waren abweichend von den Erwartungen.", + "example_sentence_english": "The results were deviating from expectations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10032 + }, + { + "word": "akzeptabel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acceptable", + "romanization": "akzeptabel", + "example_sentence_native": "Der Vorschlag ist akzeptabel.", + "example_sentence_english": "The proposal is acceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10033 + }, + { + "word": "Anfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attack;fit;seizure", + "romanization": "Anfall", + "example_sentence_native": "Er hatte einen plötzlichen Anfall von Husten.", + "example_sentence_english": "He had a sudden fit of coughing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10035 + }, + { + "word": "anheben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lift;to raise", + "romanization": "anheben", + "example_sentence_native": "Er musste den schweren Koffer anheben.", + "example_sentence_english": "He had to lift the heavy suitcase.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "heben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10036 + }, + { + "word": "Aufgebot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contingent;summons;turnout", + "romanization": "Aufgebot", + "example_sentence_native": "Ein großes Aufgebot an Polizei war vor Ort.", + "example_sentence_english": "A large contingent of police was on site.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10038 + }, + { + "word": "Backup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backup", + "romanization": "Backup", + "example_sentence_native": "Ich mache regelmäßig ein Backup meiner Daten.", + "example_sentence_english": "I regularly make a backup of my data.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10041 + }, + { + "word": "beginnend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beginning;starting", + "romanization": "beginnend", + "example_sentence_native": "Die beginnende Dämmerung war wunderschön.", + "example_sentence_english": "The beginning twilight was beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10043 + }, + { + "word": "Beihilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aid;assistance;subsidy", + "romanization": "Beihilfe", + "example_sentence_native": "Er beantragte finanzielle Beihilfe.", + "example_sentence_english": "He applied for financial aid.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10044 + }, + { + "word": "Bekleidung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clothing;apparel", + "romanization": "Bekleidung", + "example_sentence_native": "Die Bekleidung muss wetterfest sein.", + "example_sentence_english": "The clothing must be weatherproof.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10045 + }, + { + "word": "belieben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to please;to like", + "romanization": "belieben", + "example_sentence_native": "Nehmen Sie, was Ihnen beliebt.", + "example_sentence_english": "Take what you like.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10046 + }, + { + "word": "bergab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downhill", + "romanization": "bergab", + "example_sentence_native": "Der Weg führte steil bergab.", + "example_sentence_english": "The path led steeply downhill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10048 + }, + { + "word": "beruhigend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calming;soothing;reassuring", + "romanization": "beruhigend", + "example_sentence_native": "Ihre Worte waren sehr beruhigend.", + "example_sentence_english": "Her words were very reassuring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10049 + }, + { + "word": "beständig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constant;stable;persistent", + "romanization": "beständig", + "example_sentence_native": "Er zeigte eine beständige Leistung.", + "example_sentence_english": "He showed a constant performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10050 + }, + { + "word": "biegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bend;to turn", + "romanization": "biegen", + "example_sentence_native": "Er kann das Metallrohr biegen.", + "example_sentence_english": "He can bend the metal pipe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10052 + }, + { + "word": "Braunkohle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lignite;brown coal", + "romanization": "Braunkohle", + "example_sentence_native": "Braunkohle ist ein wichtiger Energieträger in Deutschland.", + "example_sentence_english": "Lignite is an important energy source in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10053 + }, + { + "word": "brüllen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to roar;to bellow;to yell", + "romanization": "brüllen", + "example_sentence_native": "Der Löwe begann zu brüllen.", + "example_sentence_english": "The lion began to roar.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10055 + }, + { + "word": "Buchhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounting;bookkeeping", + "romanization": "Buchhaltung", + "example_sentence_native": "Sie arbeitet in der Buchhaltung.", + "example_sentence_english": "She works in accounting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10057 + }, + { + "word": "Bundesebene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal level", + "romanization": "Bundesebene", + "example_sentence_native": "Die Entscheidung wurde auf Bundesebene getroffen.", + "example_sentence_english": "The decision was made at the federal level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10058 + }, + { + "word": "clean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clean", + "romanization": "clean", + "example_sentence_native": "Das Zimmer ist jetzt clean.", + "example_sentence_english": "The room is clean now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10059 + }, + { + "word": "Curry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curry", + "romanization": "Curry", + "example_sentence_native": "Ich mag scharfes Curry mit Reis.", + "example_sentence_english": "I like spicy curry with rice.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10062 + }, + { + "word": "Deutung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interpretation;explanation", + "romanization": "Deutung", + "example_sentence_native": "Die Deutung des Traumes war schwierig.", + "example_sentence_english": "The interpretation of the dream was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10064 + }, + { + "word": "dezent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discreet;subtle", + "romanization": "dezent", + "example_sentence_native": "Sie trug ein dezent geschminktes Gesicht.", + "example_sentence_english": "She wore a subtly made-up face.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10065 + }, + { + "word": "dreist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "audacious;impudent", + "romanization": "dreist", + "example_sentence_native": "Das war eine dreiste Lüge.", + "example_sentence_english": "That was an audacious lie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10066 + }, + { + "word": "durchhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to persevere;to endure", + "romanization": "durchhalten", + "example_sentence_native": "Du musst jetzt durchhalten, es ist fast geschafft.", + "example_sentence_english": "You have to persevere now, it's almost done.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10068 + }, + { + "word": "eifrig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eager;diligent", + "romanization": "eifrig", + "example_sentence_native": "Er ist ein eifriger Student.", + "example_sentence_english": "He is a diligent student.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10070 + }, + { + "word": "Eignung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitability;aptitude", + "romanization": "Eignung", + "example_sentence_native": "Seine Eignung für die Position ist unbestreitbar.", + "example_sentence_english": "His suitability for the position is undeniable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10071 + }, + { + "word": "Entsorgung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disposal;waste management", + "romanization": "Entsorgung", + "example_sentence_native": "Die Entsorgung von Sondermüll ist streng geregelt.", + "example_sentence_english": "The disposal of hazardous waste is strictly regulated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10072 + }, + { + "word": "entspringen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to originate from;to spring from", + "romanization": "entspringen", + "example_sentence_native": "Der Fluss entspringt in den Bergen.", + "example_sentence_english": "The river originates in the mountains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10073 + }, + { + "word": "Epidemie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epidemic", + "romanization": "Epidemie", + "example_sentence_native": "Die Epidemie breitete sich schnell aus.", + "example_sentence_english": "The epidemic spread quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10074 + }, + { + "word": "erzwingen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enforce;to compel", + "romanization": "erzwingen", + "example_sentence_native": "Man kann Respekt nicht erzwingen.", + "example_sentence_english": "You cannot compel respect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10075 + }, + { + "word": "Facharzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialist doctor", + "romanization": "Facharzt", + "example_sentence_native": "Sie müssen einen Facharzt aufsuchen.", + "example_sentence_english": "You must consult a specialist doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10076 + }, + { + "word": "Filmemacher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filmmaker", + "romanization": "Filmemacher", + "example_sentence_native": "Der Filmemacher präsentierte seinen neuen Film.", + "example_sentence_english": "The filmmaker presented his new movie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10078 + }, + { + "word": "fokussiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focused", + "romanization": "fokussiert", + "example_sentence_native": "Er ist sehr fokussiert auf seine Arbeit.", + "example_sentence_english": "He is very focused on his work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10081 + }, + { + "word": "frustriert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrated", + "romanization": "frustriert", + "example_sentence_native": "Sie war frustriert über die Situation.", + "example_sentence_english": "She was frustrated about the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10083 + }, + { + "word": "Fussboden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor", + "romanization": "Fussboden", + "example_sentence_native": "Der Fussboden ist sauber.", + "example_sentence_english": "The floor is clean.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10084 + }, + { + "word": "Gasthof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inn;guesthouse", + "romanization": "Gasthof", + "example_sentence_native": "Wir übernachteten in einem gemütlichen Gasthof.", + "example_sentence_english": "We stayed overnight in a cozy inn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10085 + }, + { + "word": "Gelächter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laughter", + "romanization": "Gelächter", + "example_sentence_native": "Ihr lautes Gelächter erfüllte den Raum.", + "example_sentence_english": "Their loud laughter filled the room.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10086 + }, + { + "word": "germanisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Germanic", + "romanization": "germanisch", + "example_sentence_native": "Die germanischen Sprachen sind eine Sprachfamilie.", + "example_sentence_english": "The Germanic languages are a language family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10088 + }, + { + "word": "Geschäftsjahr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiscal year", + "romanization": "Geschäftsjahr", + "example_sentence_native": "Das Geschäftsjahr endet im Dezember.", + "example_sentence_english": "The fiscal year ends in December.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10089 + }, + { + "word": "Gletscher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glacier", + "romanization": "Gletscher", + "example_sentence_native": "Der Gletscher schmilzt schnell.", + "example_sentence_english": "The glacier is melting fast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10091 + }, + { + "word": "gläubig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "religious;believing", + "romanization": "gläubig", + "example_sentence_native": "Sie ist eine sehr gläubige Person.", + "example_sentence_english": "She is a very religious person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10092 + }, + { + "word": "Glücksspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gambling", + "romanization": "Glücksspiel", + "example_sentence_native": "Glücksspiel kann süchtig machen.", + "example_sentence_english": "Gambling can be addictive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10093 + }, + { + "word": "Heimsieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "home victory", + "romanization": "Heimsieg", + "example_sentence_native": "Die Mannschaft feierte einen wichtigen Heimsieg.", + "example_sentence_english": "The team celebrated an important home victory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10096 + }, + { + "word": "herbei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hither;here (towards the speaker)", + "romanization": "herbei", + "example_sentence_native": "Komm herbei!", + "example_sentence_english": "Come here!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10097 + }, + { + "word": "Hipster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hipster", + "romanization": "Hipster", + "example_sentence_native": "Der Hipster trug eine Vintage-Brille.", + "example_sentence_english": "The hipster wore vintage glasses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10098 + }, + { + "word": "irrelevant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrelevant", + "romanization": "irrelevant", + "example_sentence_native": "Diese Information ist völlig irrelevant.", + "example_sentence_english": "This information is completely irrelevant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10101 + }, + { + "word": "Kanadier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Canadian (male)", + "romanization": "Kanadier", + "example_sentence_native": "Er ist ein Kanadier.", + "example_sentence_english": "He is a Canadian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10106 + }, + { + "word": "Kandidatin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candidate (female)", + "romanization": "Kandidatin", + "example_sentence_native": "Die Kandidatin hat die Wahl gewonnen.", + "example_sentence_english": "The candidate won the election.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10107 + }, + { + "word": "Kaution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bail;deposit", + "romanization": "Kaution", + "example_sentence_native": "Wir mussten eine Kaution für die Wohnung hinterlegen.", + "example_sentence_english": "We had to pay a deposit for the apartment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10108 + }, + { + "word": "knallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bang;to slam;to pop", + "romanization": "knallen", + "example_sentence_native": "Die Tür knallte laut zu.", + "example_sentence_english": "The door slammed shut loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10110 + }, + { + "word": "kompensieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate", + "romanization": "kompensieren", + "example_sentence_native": "Er versuchte, den Schaden zu kompensieren.", + "example_sentence_english": "He tried to compensate for the damage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10111 + }, + { + "word": "kratzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scratch", + "romanization": "kratzen", + "example_sentence_native": "Die Katze kratzte am Sofa.", + "example_sentence_english": "The cat scratched the sofa.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10112 + }, + { + "word": "kurzerhand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without further ado;promptly", + "romanization": "kurzerhand", + "example_sentence_native": "Er entschied kurzerhand, die Reise anzutreten.", + "example_sentence_english": "He promptly decided to start the journey.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10113 + }, + { + "word": "Landesamt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state office", + "romanization": "Landesamt", + "example_sentence_native": "Das Landesamt ist für diese Angelegenheit zuständig.", + "example_sentence_english": "The state office is responsible for this matter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10114 + }, + { + "word": "leitend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leading;managerial", + "romanization": "leitend", + "example_sentence_native": "Sie hat eine leitende Position im Unternehmen.", + "example_sentence_english": "She has a leading position in the company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10116 + }, + { + "word": "Liberalismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalism", + "romanization": "Liberalismus", + "example_sentence_native": "Der Liberalismus ist eine politische Ideologie.", + "example_sentence_english": "Liberalism is a political ideology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10118 + }, + { + "word": "Länderspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "international match", + "romanization": "Länderspiel", + "example_sentence_native": "Das Länderspiel endete unentschieden.", + "example_sentence_english": "The international match ended in a draw.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10120 + }, + { + "word": "Matte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mat", + "romanization": "Matte", + "example_sentence_native": "Leg die Yogamatte auf den Boden.", + "example_sentence_english": "Put the yoga mat on the floor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10122 + }, + { + "word": "Meditation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meditation", + "romanization": "Meditation", + "example_sentence_native": "Sie praktiziert täglich Meditation.", + "example_sentence_english": "She practices meditation daily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10125 + }, + { + "word": "Mensa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "university cafeteria", + "romanization": "Mensa", + "example_sentence_native": "Wir essen oft in der Mensa zu Mittag.", + "example_sentence_english": "We often eat lunch in the university cafeteria.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10127 + }, + { + "word": "Methodik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodology", + "romanization": "Methodik", + "example_sentence_native": "Die Methodik der Studie war sehr präzise.", + "example_sentence_english": "The methodology of the study was very precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10129 + }, + { + "word": "Mobilfunk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mobile communications", + "romanization": "Mobilfunk", + "example_sentence_native": "Der Ausbau des Mobilfunks ist wichtig für die Region.", + "example_sentence_english": "The expansion of mobile communications is important for the region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10130 + }, + { + "word": "Moos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moss", + "romanization": "Moos", + "example_sentence_native": "Der Stein war mit grünem Moos bedeckt.", + "example_sentence_english": "The stone was covered with green moss.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10132 + }, + { + "word": "Mythologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythology", + "romanization": "Mythologie", + "example_sentence_native": "Die griechische Mythologie ist sehr reich an Geschichten.", + "example_sentence_english": "Greek mythology is very rich in stories.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10133 + }, + { + "word": "nachholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch up", + "romanization": "nachholen", + "example_sentence_native": "Ich muss den verpassten Unterricht nachholen.", + "example_sentence_english": "I have to catch up on the missed lessons.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10134 + }, + { + "word": "nächtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightly", + "romanization": "nächtlich", + "example_sentence_native": "Wir hörten nächtliche Geräusche aus dem Wald.", + "example_sentence_english": "We heard nightly noises from the forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10138 + }, + { + "word": "Oberkörper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upper body", + "romanization": "Oberkörper", + "example_sentence_native": "Er trainiert seinen Oberkörper im Fitnessstudio.", + "example_sentence_english": "He trains his upper body at the gym.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10139 + }, + { + "word": "Oberlandesgericht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Higher Regional Court", + "romanization": "Oberlandesgericht", + "example_sentence_native": "Das Oberlandesgericht hat die Berufung abgewiesen.", + "example_sentence_english": "The Higher Regional Court rejected the appeal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10140 + }, + { + "word": "offenkundig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obvious;evident", + "romanization": "offenkundig", + "example_sentence_native": "Es ist offenkundig, dass er die Wahrheit nicht sagt.", + "example_sentence_english": "It is obvious that he is not telling the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10142 + }, + { + "word": "orientiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oriented;informed", + "romanization": "orientiert", + "example_sentence_native": "Er ist gut über die aktuelle Lage orientiert.", + "example_sentence_english": "He is well informed about the current situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10143 + }, + { + "word": "Polemik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polemic;controversy", + "romanization": "Polemik", + "example_sentence_native": "Seine Rede war voller Polemik gegen die Regierung.", + "example_sentence_english": "His speech was full of polemic against the government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10146 + }, + { + "word": "Postfach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "P.O. box;post office box", + "romanization": "Postfach", + "example_sentence_native": "Bitte senden Sie die Unterlagen an mein Postfach.", + "example_sentence_english": "Please send the documents to my P.O. box.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10147 + }, + { + "word": "Privatisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privatization", + "romanization": "Privatisierung", + "example_sentence_native": "Die Privatisierung öffentlicher Dienste ist ein kontroverses Thema.", + "example_sentence_english": "The privatization of public services is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10148 + }, + { + "word": "Provision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commission;provision", + "romanization": "Provision", + "example_sentence_native": "Der Verkäufer erhält eine Provision für jeden erfolgreichen Abschluss.", + "example_sentence_english": "The salesperson receives a commission for every successful deal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10149 + }, + { + "word": "prächtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnificent;splendid", + "romanization": "prächtig", + "example_sentence_native": "Das Schloss war ein prächtiger Anblick.", + "example_sentence_english": "The castle was a magnificent sight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10150 + }, + { + "word": "quälen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torment;to torture;to bother", + "romanization": "quälen", + "example_sentence_native": "Die Hitze quält ihn sehr.", + "example_sentence_english": "The heat torments him greatly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10151 + }, + { + "word": "Raumfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "space travel;astronautics", + "romanization": "Raumfahrt", + "example_sentence_native": "Die Raumfahrt hat in den letzten Jahrzehnten große Fortschritte gemacht.", + "example_sentence_english": "Space travel has made great progress in recent decades.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10152 + }, + { + "word": "Reha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rehab;rehabilitation", + "romanization": "Reha", + "example_sentence_native": "Nach der Operation muss er zur Reha.", + "example_sentence_english": "After the operation, he has to go to rehab.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10153 + }, + { + "word": "scheu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shy;timid", + "romanization": "scheu", + "example_sentence_native": "Das kleine Kätzchen war sehr scheu.", + "example_sentence_english": "The little kitten was very shy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10157 + }, + { + "word": "schier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sheer;pure;(adv) almost;virtually", + "romanization": "schier", + "example_sentence_native": "Es war schier unmöglich, die Aufgabe zu lösen.", + "example_sentence_english": "It was virtually impossible to solve the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10158 + }, + { + "word": "Schlägerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brawl;fight", + "romanization": "Schlägerei", + "example_sentence_native": "Es kam zu einer Schlägerei vor der Bar.", + "example_sentence_english": "There was a brawl in front of the bar.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10159 + }, + { + "word": "Schranke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrier", + "romanization": "Schranke", + "example_sentence_native": "Die Schranke war geschlossen.", + "example_sentence_english": "The barrier was closed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10160 + }, + { + "word": "Schriftstellerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female writer", + "romanization": "Schriftstellerin", + "example_sentence_native": "Sie ist eine bekannte Schriftstellerin.", + "example_sentence_english": "She is a well-known female writer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10161 + }, + { + "word": "Selbstständigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence", + "romanization": "Selbstständigkeit", + "example_sentence_native": "Viele streben nach Selbstständigkeit.", + "example_sentence_english": "Many strive for independence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10164 + }, + { + "word": "Sensation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensation", + "romanization": "Sensation", + "example_sentence_native": "Das war eine echte Sensation.", + "example_sentence_english": "That was a real sensation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10165 + }, + { + "word": "Sonnabend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday", + "romanization": "Sonnabend", + "example_sentence_native": "Am Sonnabend gehen wir ins Kino.", + "example_sentence_english": "On Saturday we go to the cinema.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10166 + }, + { + "word": "Spaghetti", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spaghetti", + "romanization": "Spaghetti", + "example_sentence_native": "Ich koche heute Spaghetti mit Tomatensoße.", + "example_sentence_english": "Today I'm cooking spaghetti with tomato sauce.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10167 + }, + { + "word": "Speer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spear", + "romanization": "Speer", + "example_sentence_native": "Der Krieger warf seinen Speer.", + "example_sentence_english": "The warrior threw his spear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10168 + }, + { + "word": "Spott", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mockery", + "romanization": "Spott", + "example_sentence_native": "Er ertrug den Spott mit Würde.", + "example_sentence_english": "He endured the mockery with dignity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10169 + }, + { + "word": "Sprengstoff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "explosive", + "romanization": "Sprengstoff", + "example_sentence_native": "Der Sprengstoff wurde entschärft.", + "example_sentence_english": "The explosive was defused.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10170 + }, + { + "word": "Spritze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syringe", + "romanization": "Spritze", + "example_sentence_native": "Die Krankenschwester gab ihm eine Spritze.", + "example_sentence_english": "The nurse gave him an injection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10171 + }, + { + "word": "starr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigid", + "romanization": "starr", + "example_sentence_native": "Er blickte mit starrem Blick ins Leere.", + "example_sentence_english": "He stared blankly into space with a rigid gaze.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10172 + }, + { + "word": "strömen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stream", + "romanization": "strömen", + "example_sentence_native": "Die Menschen strömten aus dem Stadion.", + "example_sentence_english": "The people streamed out of the stadium.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10173 + }, + { + "word": "teilhaben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to participate", + "romanization": "teilhaben", + "example_sentence_native": "Jeder sollte am Erfolg teilhaben.", + "example_sentence_english": "Everyone should participate in the success.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "teil", + "base_verb": "haben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10174 + }, + { + "word": "Terrain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrain", + "romanization": "Terrain", + "example_sentence_native": "Das schwierige Terrain machte den Aufstieg mühsam.", + "example_sentence_english": "The difficult terrain made the ascent arduous.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10175 + }, + { + "word": "Testspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friendly match", + "romanization": "Testspiel", + "example_sentence_native": "Die Mannschaft gewann das Testspiel.", + "example_sentence_english": "The team won the friendly match.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10176 + }, + { + "word": "Tracht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditional costume", + "romanization": "Tracht", + "example_sentence_native": "Sie trug eine bayerische Tracht.", + "example_sentence_english": "She wore a Bavarian traditional costume.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10178 + }, + { + "word": "Travel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "travel", + "romanization": "Travel", + "example_sentence_native": "Sein Blog handelt von Travel und Abenteuer.", + "example_sentence_english": "His blog is about travel and adventure.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10179 + }, + { + "word": "Treibstoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel;propellant", + "romanization": "Treibstoff", + "example_sentence_native": "Das Auto braucht Treibstoff.", + "example_sentence_english": "The car needs fuel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10180 + }, + { + "word": "undenkbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unthinkable;inconceivable", + "romanization": "undenkbar", + "example_sentence_native": "Das ist ein undenkbarer Gedanke.", + "example_sentence_english": "That is an unthinkable thought.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10182 + }, + { + "word": "Unfug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischief;nonsense", + "romanization": "Unfug", + "example_sentence_native": "Hör auf mit diesem Unfug!", + "example_sentence_english": "Stop this nonsense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10183 + }, + { + "word": "Untersuchungsausschuss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "investigative committee;committee of inquiry", + "romanization": "Untersuchungsausschuss", + "example_sentence_native": "Der Untersuchungsausschuss hat seine Arbeit aufgenommen.", + "example_sentence_english": "The investigative committee has started its work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10184 + }, + { + "word": "ununterbrochen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uninterrupted;continuous", + "romanization": "ununterbrochen", + "example_sentence_native": "Er hat ununterbrochen gearbeitet.", + "example_sentence_english": "He worked continuously.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10185 + }, + { + "word": "Utopie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utopia", + "romanization": "Utopie", + "example_sentence_native": "Eine perfekte Welt ist oft eine Utopie.", + "example_sentence_english": "A perfect world is often a utopia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10186 + }, + { + "word": "veraltet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outdated;obsolete", + "romanization": "veraltet", + "example_sentence_native": "Diese Technologie ist veraltet.", + "example_sentence_english": "This technology is outdated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10188 + }, + { + "word": "versäumen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to miss;to neglect;to fail to do", + "romanization": "versäumen", + "example_sentence_native": "Du solltest diese Gelegenheit nicht versäumen.", + "example_sentence_english": "You should not miss this opportunity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10190 + }, + { + "word": "Verwertung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "utilization;recycling;recovery", + "romanization": "Verwertung", + "example_sentence_native": "Die Verwertung von Abfall ist wichtig für die Umwelt.", + "example_sentence_english": "The recycling of waste is important for the environment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10191 + }, + { + "word": "verwerfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reject;to discard;to repudiate", + "romanization": "verwerfen", + "example_sentence_native": "Er musste seinen Plan verwerfen.", + "example_sentence_english": "He had to discard his plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10192 + }, + { + "word": "vormittags", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in the morning;before noon", + "romanization": "vormittags", + "example_sentence_native": "Ich arbeite vormittags.", + "example_sentence_english": "I work in the morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10195 + }, + { + "word": "Vorratsdatenspeicherung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "data retention;data storage", + "romanization": "Vorratsdatenspeicherung", + "example_sentence_native": "Die Vorratsdatenspeicherung ist ein kontroverses Thema.", + "example_sentence_english": "Data retention is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10196 + }, + { + "word": "vorstellbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginable;conceivable", + "romanization": "vorstellbar", + "example_sentence_native": "Das ist kaum vorstellbar.", + "example_sentence_english": "That is hardly imaginable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10197 + }, + { + "word": "Wahrung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preservation;safeguarding;upholding", + "romanization": "Wahrung", + "example_sentence_native": "Die Wahrung der Menschenrechte ist essenziell.", + "example_sentence_english": "The safeguarding of human rights is essential.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10198 + }, + { + "word": "weiterleiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forward;to pass on", + "romanization": "weiterleiten", + "example_sentence_native": "Könnten Sie diese E-Mail bitte weiterleiten?", + "example_sentence_english": "Could you please forward this email?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "leiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10199 + }, + { + "word": "Wiederaufnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resumption", + "romanization": "Wiederaufnahme", + "example_sentence_native": "Die Wiederaufnahme der Verhandlungen ist für nächste Woche geplant.", + "example_sentence_english": "The resumption of negotiations is planned for next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10201 + }, + { + "word": "Wodka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vodka", + "romanization": "Wodka", + "example_sentence_native": "Er bestellte einen Wodka mit Orangensaft.", + "example_sentence_english": "He ordered a vodka with orange juice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10202 + }, + { + "word": "Zeitgeist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spirit of the age;zeitgeist", + "romanization": "Zeitgeist", + "example_sentence_native": "Der Zeitgeist der 60er Jahre war von Rebellion geprägt.", + "example_sentence_english": "The zeitgeist of the 60s was characterized by rebellion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10206 + }, + { + "word": "Zink", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zinc", + "romanization": "Zink", + "example_sentence_native": "Zink ist ein wichtiges Spurenelement für den Körper.", + "example_sentence_english": "Zinc is an important trace element for the body.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10207 + }, + { + "word": "Zivilgesellschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civil society", + "romanization": "Zivilgesellschaft", + "example_sentence_native": "Die Zivilgesellschaft spielt eine wichtige Rolle in der Demokratie.", + "example_sentence_english": "Civil society plays an important role in democracy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10208 + }, + { + "word": "zubereiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prepare (food)", + "romanization": "zubereiten", + "example_sentence_native": "Sie muss das Abendessen zubereiten.", + "example_sentence_english": "She has to prepare dinner.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "bereiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10209 + }, + { + "word": "zutreffend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicable;correct;appropriate", + "romanization": "zutreffend", + "example_sentence_native": "Ihre Beschreibung ist völlig zutreffend.", + "example_sentence_english": "Your description is completely accurate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10210 + }, + { + "word": "übermitteln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transmit;to convey", + "romanization": "übermitteln", + "example_sentence_native": "Bitte übermitteln Sie meine Grüße an Ihre Familie.", + "example_sentence_english": "Please convey my regards to your family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10211 + }, + { + "word": "Überweisung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank transfer;referral (medical)", + "romanization": "Überweisung", + "example_sentence_native": "Ich habe die Überweisung getätigt.", + "example_sentence_english": "I made the bank transfer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10212 + }, + { + "word": "absichern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to secure;to safeguard", + "romanization": "absichern", + "example_sentence_native": "Wir müssen das Gebäude absichern.", + "example_sentence_english": "We need to secure the building.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sichern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10214 + }, + { + "word": "absprechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to agree upon;to coordinate", + "romanization": "absprechen", + "example_sentence_native": "Wir müssen den Termin absprechen.", + "example_sentence_english": "We need to agree upon the appointment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sprechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10215 + }, + { + "word": "Abteilungsleiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "department head;manager", + "romanization": "Abteilungsleiter", + "example_sentence_native": "Der Abteilungsleiter hat die Entscheidung getroffen.", + "example_sentence_english": "The department head made the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10216 + }, + { + "word": "Akademiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academic;university graduate", + "romanization": "Akademiker", + "example_sentence_native": "Viele Akademiker suchen nach neuen Herausforderungen.", + "example_sentence_english": "Many academics are looking for new challenges.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10217 + }, + { + "word": "Ameise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ant", + "romanization": "Ameise", + "example_sentence_native": "Eine Ameise krabbelte über den Tisch.", + "example_sentence_english": "An ant crawled across the table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10218 + }, + { + "word": "angespannt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tense;strained", + "romanization": "angespannt", + "example_sentence_native": "Die Situation war sehr angespannt.", + "example_sentence_english": "The situation was very tense.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10219 + }, + { + "word": "ansässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resident;established", + "romanization": "ansässig", + "example_sentence_native": "Er ist seit vielen Jahren in dieser Stadt ansässig.", + "example_sentence_english": "He has been resident in this city for many years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10220 + }, + { + "word": "Antritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commencement;assumption (of office)", + "romanization": "Antritt", + "example_sentence_native": "Sein Antritt der neuen Stelle ist nächste Woche.", + "example_sentence_english": "His commencement of the new position is next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10222 + }, + { + "word": "Apokalypse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apocalypse", + "romanization": "Apokalypse", + "example_sentence_native": "Viele Filme handeln von der Apokalypse.", + "example_sentence_english": "Many films are about the apocalypse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10223 + }, + { + "word": "aufgehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rise (sun);to open (door);to work out (plan)", + "romanization": "aufgehen", + "example_sentence_native": "Die Sonne geht im Osten auf.", + "example_sentence_english": "The sun rises in the east.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10225 + }, + { + "word": "Aufruhr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uproar;commotion", + "romanization": "Aufruhr", + "example_sentence_native": "Es gab großen Aufruhr in der Stadt.", + "example_sentence_english": "There was a great uproar in the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10226 + }, + { + "word": "Augenbraue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyebrow", + "romanization": "Augenbraue", + "example_sentence_native": "Sie zupfte ihre Augenbrauen.", + "example_sentence_english": "She plucked her eyebrows.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10227 + }, + { + "word": "Aura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aura", + "romanization": "Aura", + "example_sentence_native": "Er hatte eine sehr positive Aura.", + "example_sentence_english": "He had a very positive aura.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10228 + }, + { + "word": "Automobil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automobile", + "romanization": "Automobil", + "example_sentence_native": "Das Automobil revolutionierte den Transport.", + "example_sentence_english": "The automobile revolutionized transport.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10229 + }, + { + "word": "Belästigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassment;nuisance", + "romanization": "Belästigung", + "example_sentence_native": "Sexuelle Belästigung ist strafbar.", + "example_sentence_english": "Sexual harassment is punishable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10231 + }, + { + "word": "berauben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rob;to deprive", + "romanization": "berauben", + "example_sentence_native": "Er wurde seiner Freiheit beraubt.", + "example_sentence_english": "He was deprived of his freedom.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10232 + }, + { + "word": "Berufserfahrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work experience", + "romanization": "Berufserfahrung", + "example_sentence_native": "Für diese Position ist Berufserfahrung erforderlich.", + "example_sentence_english": "Work experience is required for this position.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10234 + }, + { + "word": "Bikini", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bikini", + "romanization": "Bikini", + "example_sentence_native": "Sie trug einen neuen Bikini am Strand.", + "example_sentence_english": "She wore a new bikini at the beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10235 + }, + { + "word": "Blondine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blonde (woman)", + "romanization": "Blondine", + "example_sentence_native": "Die Blondine lächelte ihn an.", + "example_sentence_english": "The blonde woman smiled at him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10236 + }, + { + "word": "Brei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porridge;mash;pulp", + "romanization": "Brei", + "example_sentence_native": "Das Baby isst gerne Brei.", + "example_sentence_english": "The baby likes to eat porridge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10237 + }, + { + "word": "Brocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chunk;piece;fragment", + "romanization": "Brocken", + "example_sentence_native": "Er fand einen großen Brocken Käse.", + "example_sentence_english": "He found a large chunk of cheese.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10238 + }, + { + "word": "Bruchteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraction;small part", + "romanization": "Bruchteil", + "example_sentence_native": "Er erledigte die Aufgabe in einem Bruchteil der Zeit.", + "example_sentence_english": "He completed the task in a fraction of the time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10239 + }, + { + "word": "charakteristisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic", + "romanization": "charakteristisch", + "example_sentence_native": "Seine Reaktion war sehr charakteristisch für ihn.", + "example_sentence_english": "His reaction was very characteristic of him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10240 + }, + { + "word": "datieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to date (from;back to)", + "romanization": "datieren", + "example_sentence_native": "Dieses Gebäude datiert aus dem 18. Jahrhundert.", + "example_sentence_english": "This building dates from the 18th century.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10242 + }, + { + "word": "Differenzierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "differentiation", + "romanization": "Differenzierung", + "example_sentence_native": "Die Differenzierung der Produkte ist wichtig für den Erfolg.", + "example_sentence_english": "The differentiation of products is important for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10244 + }, + { + "word": "Dinosaurier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dinosaur", + "romanization": "Dinosaurier", + "example_sentence_native": "Der Dinosaurier war ein riesiges Reptil.", + "example_sentence_english": "The dinosaur was a giant reptile.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10245 + }, + { + "word": "Donner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thunder", + "romanization": "Donner", + "example_sentence_native": "Nach dem Blitz kam der Donner.", + "example_sentence_english": "After the lightning came the thunder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10246 + }, + { + "word": "Eichhörnchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "squirrel", + "romanization": "Eichhörnchen", + "example_sentence_native": "Das Eichhörnchen sammelt Nüsse für den Winter.", + "example_sentence_english": "The squirrel collects nuts for the winter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10248 + }, + { + "word": "Einbindung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integration", + "romanization": "Einbindung", + "example_sentence_native": "Die Einbindung aller Teammitglieder ist entscheidend.", + "example_sentence_english": "The integration of all team members is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10249 + }, + { + "word": "Einfamilienhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "detached house", + "romanization": "Einfamilienhaus", + "example_sentence_native": "Sie wohnen in einem schönen Einfamilienhaus.", + "example_sentence_english": "They live in a beautiful detached house.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10250 + }, + { + "word": "einfliessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flow into", + "romanization": "einfliessen", + "example_sentence_native": "Seine Erfahrungen sollen in das Projekt einfliessen.", + "example_sentence_english": "His experiences should flow into the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "fliessen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10251 + }, + { + "word": "Erpressung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackmail", + "romanization": "Erpressung", + "example_sentence_native": "Die Polizei ermittelt wegen Erpressung.", + "example_sentence_english": "The police are investigating for blackmail.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10253 + }, + { + "word": "ersticken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffocate", + "romanization": "ersticken", + "example_sentence_native": "Er drohte, an dem Essen zu ersticken.", + "example_sentence_english": "He threatened to suffocate on the food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10254 + }, + { + "word": "Exekutive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executive", + "romanization": "Exekutive", + "example_sentence_native": "Die Exekutive ist für die Umsetzung der Gesetze zuständig.", + "example_sentence_english": "The executive is responsible for implementing the laws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10255 + }, + { + "word": "fachlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professional", + "romanization": "fachlich", + "example_sentence_native": "Er hat eine hohe fachliche Kompetenz.", + "example_sentence_english": "He has a high level of professional competence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10256 + }, + { + "word": "Fahndung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manhunt", + "romanization": "Fahndung", + "example_sentence_native": "Die Polizei hat eine Fahndung nach dem Täter eingeleitet.", + "example_sentence_english": "The police have launched a manhunt for the perpetrator.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10257 + }, + { + "word": "Familienmitglied", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "family member", + "romanization": "Familienmitglied", + "example_sentence_native": "Jedes Familienmitglied hat seine Aufgaben.", + "example_sentence_english": "Every family member has their tasks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10258 + }, + { + "word": "fasten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fast", + "romanization": "fasten", + "example_sentence_native": "Viele Menschen fasten während der Fastenzeit.", + "example_sentence_english": "Many people fast during Lent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10259 + }, + { + "word": "frühstücken", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have breakfast", + "romanization": "frühstücken", + "example_sentence_native": "Wir frühstücken jeden Morgen um sieben Uhr.", + "example_sentence_english": "We have breakfast every morning at seven o'clock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10260 + }, + { + "word": "fünfmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "five times", + "romanization": "fünfmal", + "example_sentence_native": "Ich habe das schon fünfmal gesagt.", + "example_sentence_english": "I have already said that five times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 10261 + }, + { + "word": "geehrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honored;esteemed", + "romanization": "geehrt", + "example_sentence_native": "Ich fühle mich geehrt, hier zu sein.", + "example_sentence_english": "I feel honored to be here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10262 + }, + { + "word": "gemacht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "made;done", + "romanization": "gemacht", + "example_sentence_native": "Das ist ein hausgemachtes Brot.", + "example_sentence_english": "That is a homemade bread.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10263 + }, + { + "word": "geographisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographical", + "romanization": "geographisch", + "example_sentence_native": "Wir haben die geographische Lage des Ortes studiert.", + "example_sentence_english": "We studied the geographical location of the place.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10264 + }, + { + "word": "geradeaus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "straight ahead", + "romanization": "geradeaus", + "example_sentence_native": "Gehen Sie einfach geradeaus.", + "example_sentence_english": "Just go straight ahead.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10265 + }, + { + "word": "gerichtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judicial;legal", + "romanization": "gerichtlich", + "example_sentence_native": "Das ist eine gerichtliche Entscheidung.", + "example_sentence_english": "That is a judicial decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10266 + }, + { + "word": "gewandt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agile;skillful;fluent", + "romanization": "gewandt", + "example_sentence_native": "Er ist sehr gewandt im Umgang mit Menschen.", + "example_sentence_english": "He is very skillful in dealing with people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10268 + }, + { + "word": "Ghost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ghost (e.g.;disk image;anonymous worker)", + "romanization": "Ghost", + "example_sentence_native": "Er hat einen Ghost auf seiner Festplatte erstellt.", + "example_sentence_english": "He created a ghost on his hard drive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10269 + }, + { + "word": "Globus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "globe", + "romanization": "Globus", + "example_sentence_native": "Der Globus steht auf dem Schreibtisch.", + "example_sentence_english": "The globe is on the desk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10270 + }, + { + "word": "glänzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shine;to glitter", + "romanization": "glänzen", + "example_sentence_native": "Die Sterne glänzen am Nachthimmel.", + "example_sentence_english": "The stars shine in the night sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10271 + }, + { + "word": "grandios", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grandiose;magnificent;superb", + "romanization": "grandios", + "example_sentence_native": "Das war eine grandiose Leistung.", + "example_sentence_english": "That was a magnificent performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10272 + }, + { + "word": "grundlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "groundless;baseless;without reason", + "romanization": "grundlos", + "example_sentence_native": "Seine Angst war völlig grundlos.", + "example_sentence_english": "His fear was completely groundless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10273 + }, + { + "word": "Gurke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cucumber", + "romanization": "Gurke", + "example_sentence_native": "Ich mag Gurken im Salat.", + "example_sentence_english": "I like cucumbers in salad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10275 + }, + { + "word": "Haftstrafe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prison sentence;custodial sentence", + "romanization": "Haftstrafe", + "example_sentence_native": "Er erhielt eine lange Haftstrafe.", + "example_sentence_english": "He received a long prison sentence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10276 + }, + { + "word": "hinüber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "over;across (to the other side)", + "romanization": "hinüber", + "example_sentence_native": "Er ging schnell hinüber zur anderen Straßenseite.", + "example_sentence_english": "He quickly went over to the other side of the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10280 + }, + { + "word": "Hub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lift;stroke;hub", + "romanization": "Hub", + "example_sentence_native": "Der Hub des Motors war beeindruckend.", + "example_sentence_english": "The stroke of the engine was impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10281 + }, + { + "word": "Indiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indication;clue;evidence", + "romanization": "Indiz", + "example_sentence_native": "Es gab keine Indizien für seine Schuld.", + "example_sentence_english": "There was no indication of his guilt.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10283 + }, + { + "word": "initiieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to initiate", + "romanization": "initiieren", + "example_sentence_native": "Sie wollen ein neues Projekt initiieren.", + "example_sentence_english": "They want to initiate a new project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10284 + }, + { + "word": "Intro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intro;introduction", + "romanization": "Intro", + "example_sentence_native": "Die Intro des Liedes war sehr eingängig.", + "example_sentence_english": "The intro of the song was very catchy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10285 + }, + { + "word": "irisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Irish", + "romanization": "irisch", + "example_sentence_native": "Er trinkt gerne irischen Whiskey.", + "example_sentence_english": "He likes to drink Irish whiskey.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10286 + }, + { + "word": "Kapsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capsule;pod", + "romanization": "Kapsel", + "example_sentence_native": "Die Medizin ist in einer Kapsel.", + "example_sentence_english": "The medicine is in a capsule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10288 + }, + { + "word": "Komfort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfort", + "romanization": "Komfort", + "example_sentence_native": "Das Hotel bietet viel Komfort.", + "example_sentence_english": "The hotel offers a lot of comfort.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10289 + }, + { + "word": "Komiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comedian", + "romanization": "Komiker", + "example_sentence_native": "Der Komiker war sehr lustig.", + "example_sentence_english": "The comedian was very funny.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10290 + }, + { + "word": "krachen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crash;to crack;to crunch", + "romanization": "krachen", + "example_sentence_native": "Das alte Haus begann zu krachen.", + "example_sentence_english": "The old house began to creak.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10292 + }, + { + "word": "Landhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "country house;cottage", + "romanization": "Landhaus", + "example_sentence_native": "Sie haben ein schönes Landhaus auf dem Land.", + "example_sentence_english": "They have a beautiful country house in the countryside.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10293 + }, + { + "word": "Lebensgefahr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortal danger;danger to life", + "romanization": "Lebensgefahr", + "example_sentence_native": "Er schwebte in Lebensgefahr nach dem Unfall.", + "example_sentence_english": "He was in mortal danger after the accident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10295 + }, + { + "word": "legitim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimate", + "romanization": "legitim", + "example_sentence_native": "Seine Forderungen sind völlig legitim.", + "example_sentence_english": "His demands are completely legitimate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10296 + }, + { + "word": "Lenkrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steering wheel", + "romanization": "Lenkrad", + "example_sentence_native": "Er hielt das Lenkrad fest in den Händen.", + "example_sentence_english": "He held the steering wheel firmly in his hands.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10297 + }, + { + "word": "limited", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limited", + "romanization": "limited", + "example_sentence_native": "Das ist eine limited Edition.", + "example_sentence_english": "This is a limited edition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10298 + }, + { + "word": "Linse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lens;lentil", + "romanization": "Linse", + "example_sentence_native": "Die Kamera hat eine hochwertige Linse. Ich koche eine Suppe mit roten Linsen.", + "example_sentence_english": "The camera has a high-quality lens. I am cooking a soup with red lentils.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10300 + }, + { + "word": "lässig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casual;laid-back", + "romanization": "lässig", + "example_sentence_native": "Er trägt immer lässige Kleidung.", + "example_sentence_english": "He always wears casual clothes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10301 + }, + { + "word": "Manifest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manifesto", + "romanization": "Manifest", + "example_sentence_native": "Die Partei veröffentlichte ein neues Manifest.", + "example_sentence_english": "The party published a new manifesto.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10303 + }, + { + "word": "Marmelade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jam;marmalade", + "romanization": "Marmelade", + "example_sentence_native": "Ich esse gerne Brot mit Marmelade zum Frühstück.", + "example_sentence_english": "I like to eat bread with jam for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10304 + }, + { + "word": "Mathematiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mathematician", + "romanization": "Mathematiker", + "example_sentence_native": "Albert Einstein war ein brillanter Mathematiker.", + "example_sentence_english": "Albert Einstein was a brilliant mathematician.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10305 + }, + { + "word": "Message", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "message", + "romanization": "Message", + "example_sentence_native": "Ich habe dir eine Message geschickt.", + "example_sentence_english": "I sent you a message.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10306 + }, + { + "word": "Metapher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metaphor", + "romanization": "Metapher", + "example_sentence_native": "\"Das Leben ist eine Reise\" ist eine bekannte Metapher.", + "example_sentence_english": "\"Life is a journey\" is a well-known metaphor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10307 + }, + { + "word": "Moor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moor;bog", + "romanization": "Moor", + "example_sentence_native": "Das Moor ist ein wichtiger Lebensraum für viele Pflanzen und Tiere.", + "example_sentence_english": "The moor is an important habitat for many plants and animals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10308 + }, + { + "word": "Mundart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dialect;vernacular", + "romanization": "Mundart", + "example_sentence_native": "In dieser Region spricht man eine besondere Mundart.", + "example_sentence_english": "In this region, a special dialect is spoken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10309 + }, + { + "word": "nordisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nordic;northern", + "romanization": "nordisch", + "example_sentence_native": "Sie liebt die nordische Landschaft.", + "example_sentence_english": "She loves the Nordic landscape.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10311 + }, + { + "word": "Nordwesten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "northwest", + "romanization": "Nordwesten", + "example_sentence_native": "Das Haus liegt im Nordwesten der Stadt.", + "example_sentence_english": "The house is located in the northwest of the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10312 + }, + { + "word": "Obdachlose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeless person", + "romanization": "Obdachlose", + "example_sentence_native": "Viele Obdachlose suchen Schutz vor der Kälte.", + "example_sentence_english": "Many homeless people seek shelter from the cold.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10313 + }, + { + "word": "Officer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "officer", + "romanization": "Officer", + "example_sentence_native": "Der Officer fragte nach meinem Ausweis.", + "example_sentence_english": "The officer asked for my ID.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10314 + }, + { + "word": "optional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optional", + "romanization": "optional", + "example_sentence_native": "Die Teilnahme am Workshop ist optional.", + "example_sentence_english": "Participation in the workshop is optional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10316 + }, + { + "word": "Palais", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palace;mansion", + "romanization": "Palais", + "example_sentence_native": "Das alte Palais wurde in ein Museum umgewandelt.", + "example_sentence_english": "The old palace was converted into a museum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10317 + }, + { + "word": "pinkeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pee;to urinate", + "romanization": "pinkeln", + "example_sentence_native": "Der Hund muss pinkeln.", + "example_sentence_english": "The dog has to pee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10320 + }, + { + "word": "Podium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "podium;stage", + "romanization": "Podium", + "example_sentence_native": "Der Redner stand auf dem Podium.", + "example_sentence_english": "The speaker stood on the podium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10321 + }, + { + "word": "Pose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pose", + "romanization": "Pose", + "example_sentence_native": "Sie nahm eine elegante Pose ein.", + "example_sentence_english": "She struck an elegant pose.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10322 + }, + { + "word": "Programmierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "programming", + "romanization": "Programmierung", + "example_sentence_native": "Die Programmierung der Software dauerte lange.", + "example_sentence_english": "The programming of the software took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10323 + }, + { + "word": "Protestant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestant", + "romanization": "Protestant", + "example_sentence_native": "Er ist ein Protestant.", + "example_sentence_english": "He is a Protestant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10324 + }, + { + "word": "Quark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quark (dairy product)", + "romanization": "Quark", + "example_sentence_native": "Ich esse gerne Quark mit Früchten.", + "example_sentence_english": "I like to eat quark with fruit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10325 + }, + { + "word": "Ried", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reed bed;fen;marsh", + "romanization": "Ried", + "example_sentence_native": "Das Ried ist ein wichtiger Lebensraum für Vögel.", + "example_sentence_english": "The reed bed is an important habitat for birds.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10326 + }, + { + "word": "Rundgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tour;circular walk", + "romanization": "Rundgang", + "example_sentence_native": "Wir machten einen Rundgang durch die Altstadt.", + "example_sentence_english": "We took a tour through the old town.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10328 + }, + { + "word": "Running", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "running", + "romanization": "Running", + "example_sentence_native": "Running ist gut für die Gesundheit.", + "example_sentence_english": "Running is good for your health.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10329 + }, + { + "word": "Schlucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gorge;ravine", + "romanization": "Schlucht", + "example_sentence_native": "Die Wanderung führte durch eine tiefe Schlucht.", + "example_sentence_english": "The hike led through a deep gorge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10330 + }, + { + "word": "Schriftzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lettering;inscription", + "romanization": "Schriftzug", + "example_sentence_native": "Der Schriftzug auf dem Gebäude war sehr alt.", + "example_sentence_english": "The lettering on the building was very old.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10331 + }, + { + "word": "Schulabschluss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school leaving certificate;graduation", + "romanization": "Schulabschluss", + "example_sentence_native": "Nach dem Schulabschluss begann er eine Ausbildung.", + "example_sentence_english": "After graduation, he started an apprenticeship.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10332 + }, + { + "word": "Shooting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shooting (e.g.;photo shoot)", + "romanization": "Shooting", + "example_sentence_native": "Das Fotoshooting dauerte den ganzen Tag.", + "example_sentence_english": "The photo shoot lasted all day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10334 + }, + { + "word": "Skizze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sketch;draft", + "romanization": "Skizze", + "example_sentence_native": "Er machte eine schnelle Skizze des Gebäudes.", + "example_sentence_english": "He made a quick sketch of the building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10337 + }, + { + "word": "sonnig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sunny", + "romanization": "sonnig", + "example_sentence_native": "Heute ist es sehr sonnig.", + "example_sentence_english": "It is very sunny today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10338 + }, + { + "word": "Spirit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirit;essence;mood", + "romanization": "Spirit", + "example_sentence_native": "Der Spirit des Festivals war einzigartig.", + "example_sentence_english": "The spirit of the festival was unique.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10339 + }, + { + "word": "Starter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starter", + "romanization": "Starter", + "example_sentence_native": "Der Starter des Motors ist kaputt.", + "example_sentence_english": "The car's starter is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10341 + }, + { + "word": "Staubsauger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vacuum cleaner", + "romanization": "Staubsauger", + "example_sentence_native": "Der Staubsauger ist sehr laut.", + "example_sentence_english": "The vacuum cleaner is very loud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10342 + }, + { + "word": "streamen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stream", + "romanization": "streamen", + "example_sentence_native": "Wir wollen den Film heute Abend streamen.", + "example_sentence_english": "We want to stream the movie tonight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10343 + }, + { + "word": "strukturell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structural", + "romanization": "strukturell", + "example_sentence_native": "Es gibt strukturelle Probleme in der Organisation.", + "example_sentence_english": "There are structural problems in the organization.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10344 + }, + { + "word": "Toast", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toast", + "romanization": "Toast", + "example_sentence_native": "Ich esse gerne Toast zum Frühstück.", + "example_sentence_english": "I like to eat toast for breakfast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10348 + }, + { + "word": "treffend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apt;fitting", + "romanization": "treffend", + "example_sentence_native": "Das ist eine sehr treffende Beschreibung.", + "example_sentence_english": "That is a very apt description.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10350 + }, + { + "word": "unterstreichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to underline;to emphasize", + "romanization": "unterstreichen", + "example_sentence_native": "Bitte unterstreichen Sie die wichtigen Punkte.", + "example_sentence_english": "Please underline the important points.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10351 + }, + { + "word": "unverschämt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impudent;outrageous", + "romanization": "unverschämt", + "example_sentence_native": "Sein Verhalten war wirklich unverschämt.", + "example_sentence_english": "His behavior was truly outrageous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10352 + }, + { + "word": "Verabschiedung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farewell;adoption (of a law)", + "romanization": "Verabschiedung", + "example_sentence_native": "Die Verabschiedung des Gesetzes dauerte lange.", + "example_sentence_english": "The adoption of the law took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10354 + }, + { + "word": "verbindlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding;obligatory", + "romanization": "verbindlich", + "example_sentence_native": "Das Angebot ist verbindlich.", + "example_sentence_english": "The offer is binding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10355 + }, + { + "word": "Verbraucherschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumer protection", + "romanization": "Verbraucherschutz", + "example_sentence_native": "Der Verbraucherschutz ist in Deutschland sehr wichtig.", + "example_sentence_english": "Consumer protection is very important in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10356 + }, + { + "word": "vergiften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to poison", + "romanization": "vergiften", + "example_sentence_native": "Man sollte keine Pilze essen, die vergiften könnten.", + "example_sentence_english": "One should not eat mushrooms that could poison.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10357 + }, + { + "word": "verhelfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to help (someone achieve something)", + "romanization": "verhelfen", + "example_sentence_native": "Er konnte ihr zu einem besseren Job verhelfen.", + "example_sentence_english": "He could help her to a better job.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10358 + }, + { + "word": "verlagern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relocate;to shift", + "romanization": "verlagern", + "example_sentence_native": "Das Unternehmen plant, die Produktion ins Ausland zu verlagern.", + "example_sentence_english": "The company plans to relocate production abroad.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10359 + }, + { + "word": "vernetzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "networked;interconnected", + "romanization": "vernetzt", + "example_sentence_native": "Die Geräte sind alle miteinander vernetzt.", + "example_sentence_english": "The devices are all interconnected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10360 + }, + { + "word": "verstärkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reinforced;strengthened;increased", + "romanization": "verstärkt", + "example_sentence_native": "Die verstärkte Nachfrage führte zu höheren Preisen.", + "example_sentence_english": "The increased demand led to higher prices.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10361 + }, + { + "word": "vorenthalten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to withhold;to deny", + "romanization": "vorenthalten", + "example_sentence_native": "Er wollte ihr die Wahrheit nicht vorenthalten.", + "example_sentence_english": "He didn't want to withhold the truth from her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10362 + }, + { + "word": "Vorschau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preview", + "romanization": "Vorschau", + "example_sentence_native": "Wir haben eine kurze Vorschau auf den Film gesehen.", + "example_sentence_english": "We saw a short preview of the movie.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10363 + }, + { + "word": "Völkerrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "international law", + "romanization": "Völkerrecht", + "example_sentence_native": "Das Völkerrecht regelt die Beziehungen zwischen Staaten.", + "example_sentence_english": "International law regulates relations between states.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10365 + }, + { + "word": "wacker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brave;valiant", + "romanization": "wacker", + "example_sentence_native": "Er schlug sich wacker im Kampf.", + "example_sentence_english": "He fought bravely in the battle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10366 + }, + { + "word": "Wahn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delusion;illusion", + "romanization": "Wahn", + "example_sentence_native": "Er lebte in einem Wahn, dass er verfolgt werde.", + "example_sentence_english": "He lived in a delusion that he was being persecuted.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10367 + }, + { + "word": "Wasserfall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waterfall", + "romanization": "Wasserfall", + "example_sentence_native": "Wir besuchten einen wunderschönen Wasserfall in den Bergen.", + "example_sentence_english": "We visited a beautiful waterfall in the mountains.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10368 + }, + { + "word": "Wels", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catfish", + "romanization": "Wels", + "example_sentence_native": "Der Wels ist ein großer Süßwasserfisch.", + "example_sentence_english": "The catfish is a large freshwater fish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10369 + }, + { + "word": "wertlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worthless;valueless", + "romanization": "wertlos", + "example_sentence_native": "Der alte Schmuck war leider wertlos.", + "example_sentence_english": "The old jewelry was unfortunately worthless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10371 + }, + { + "word": "Wirtschaftskrise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economic crisis", + "romanization": "Wirtschaftskrise", + "example_sentence_native": "Viele Länder litten unter der Wirtschaftskrise.", + "example_sentence_english": "Many countries suffered from the economic crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10373 + }, + { + "word": "Wucht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "force;impact;momentum", + "romanization": "Wucht", + "example_sentence_native": "Der Aufprall hatte eine enorme Wucht.", + "example_sentence_english": "The impact had an enormous force.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10375 + }, + { + "word": "Zeichner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draftsman;illustrator", + "romanization": "Zeichner", + "example_sentence_native": "Der Zeichner hat ein neues Comicbuch veröffentlicht.", + "example_sentence_english": "The illustrator has published a new comic book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10377 + }, + { + "word": "zuteilen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allocate;to assign", + "romanization": "zuteilen", + "example_sentence_native": "Jedem Teilnehmer wurde ein Platz zugeteilt.", + "example_sentence_english": "Each participant was allocated a seat.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "teilen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10378 + }, + { + "word": "zurückhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold back;to restrain", + "romanization": "zurückhalten", + "example_sentence_native": "Er konnte seine Tränen nicht zurückhalten.", + "example_sentence_english": "He couldn't hold back his tears.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10379 + }, + { + "word": "Ökologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecology", + "romanization": "Ökologie", + "example_sentence_native": "Die Ökologie ist ein wichtiges Forschungsgebiet.", + "example_sentence_english": "Ecology is an important field of research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10380 + }, + { + "word": "Ökonom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economist", + "romanization": "Ökonom", + "example_sentence_native": "Der Ökonom analysiert die Marktentwicklung.", + "example_sentence_english": "The economist analyzes the market development.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10381 + }, + { + "word": "Abgeordnetenhaus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "house of representatives", + "romanization": "Abgeordnetenhaus", + "example_sentence_native": "Das Abgeordnetenhaus tagt heute.", + "example_sentence_english": "The House of Representatives is meeting today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10382 + }, + { + "word": "abstürzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crash", + "romanization": "abstürzen", + "example_sentence_native": "Der Computer ist abgestürzt.", + "example_sentence_english": "The computer crashed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "stürzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10384 + }, + { + "word": "abwärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downwards", + "romanization": "abwärts", + "example_sentence_native": "Er ging die Treppe abwärts.", + "example_sentence_english": "He went down the stairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10385 + }, + { + "word": "Adventure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adventure (game)", + "romanization": "Adventure", + "example_sentence_native": "Ich spiele gerne ein Adventure-Spiel.", + "example_sentence_english": "I like to play an adventure game.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10386 + }, + { + "word": "Alm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alpine pasture", + "romanization": "Alm", + "example_sentence_native": "Die Kühe grasen auf der Alm.", + "example_sentence_english": "The cows are grazing on the alpine pasture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10387 + }, + { + "word": "Alphabet", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "alphabet", + "romanization": "Alphabet", + "example_sentence_native": "Das deutsche Alphabet hat 26 Buchstaben.", + "example_sentence_english": "The German alphabet has 26 letters.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10388 + }, + { + "word": "anhaltend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistent", + "romanization": "anhaltend", + "example_sentence_native": "Der anhaltende Regen nervt mich.", + "example_sentence_english": "The persistent rain annoys me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10390 + }, + { + "word": "Archäologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archaeology", + "romanization": "Archäologie", + "example_sentence_native": "Sie studiert Archäologie an der Universität.", + "example_sentence_english": "She studies archaeology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10391 + }, + { + "word": "Arroganz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogance", + "romanization": "Arroganz", + "example_sentence_native": "Seine Arroganz ist unerträglich.", + "example_sentence_english": "His arrogance is unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10392 + }, + { + "word": "Auflistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "list", + "romanization": "Auflistung", + "example_sentence_native": "Bitte erstellen Sie eine Auflistung aller Punkte.", + "example_sentence_english": "Please create a list of all points.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10393 + }, + { + "word": "aufrichtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sincere", + "romanization": "aufrichtig", + "example_sentence_native": "Er gab eine aufrichtige Entschuldigung ab.", + "example_sentence_english": "He gave a sincere apology.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10394 + }, + { + "word": "Ausbilder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trainer", + "romanization": "Ausbilder", + "example_sentence_native": "Der Ausbilder erklärte die Übung.", + "example_sentence_english": "The trainer explained the exercise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10395 + }, + { + "word": "Auswärtssieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "away win", + "romanization": "Auswärtssieg", + "example_sentence_native": "Die Mannschaft feierte einen Auswärtssieg.", + "example_sentence_english": "The team celebrated an away win.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10397 + }, + { + "word": "Bauteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "component;part", + "romanization": "Bauteil", + "example_sentence_native": "Jedes Bauteil muss präzise gefertigt werden.", + "example_sentence_english": "Every component must be manufactured precisely.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10400 + }, + { + "word": "Bauzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction period;building time", + "romanization": "Bauzeit", + "example_sentence_native": "Die Bauzeit für das neue Gebäude beträgt zwei Jahre.", + "example_sentence_english": "The construction period for the new building is two years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10401 + }, + { + "word": "bayrisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bavarian", + "romanization": "bayrisch", + "example_sentence_native": "Er liebt die bayrische Küche.", + "example_sentence_english": "He loves Bavarian cuisine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10402 + }, + { + "word": "bedürfen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to require;to need", + "romanization": "bedürfen", + "example_sentence_native": "Dieses Projekt bedarf sorgfältiger Planung.", + "example_sentence_english": "This project requires careful planning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10403 + }, + { + "word": "Beirat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advisory board;council", + "romanization": "Beirat", + "example_sentence_native": "Der Beirat traf sich, um die Strategie zu besprechen.", + "example_sentence_english": "The advisory board met to discuss the strategy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10404 + }, + { + "word": "bevorzugt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preferred;favored", + "romanization": "bevorzugt", + "example_sentence_native": "Er trinkt am liebsten bevorzugt schwarzen Kaffee.", + "example_sentence_english": "He prefers to drink black coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10405 + }, + { + "word": "bewilligen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approve;to grant", + "romanization": "bewilligen", + "example_sentence_native": "Die Regierung hat die Mittel für das Projekt bewilligt.", + "example_sentence_english": "The government has approved the funds for the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10406 + }, + { + "word": "Bomber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bomber (aircraft)", + "romanization": "Bomber", + "example_sentence_native": "Der Bomber flog über das Zielgebiet.", + "example_sentence_english": "The bomber flew over the target area.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10408 + }, + { + "word": "Brandstiftung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arson", + "romanization": "Brandstiftung", + "example_sentence_native": "Die Polizei ermittelt wegen Brandstiftung.", + "example_sentence_english": "The police are investigating for arson.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10409 + }, + { + "word": "Brigade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brigade", + "romanization": "Brigade", + "example_sentence_native": "Die Brigade wurde an die Front verlegt.", + "example_sentence_english": "The brigade was moved to the front.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10411 + }, + { + "word": "Collection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection", + "romanization": "Collection", + "example_sentence_native": "Die neue Mode-Collection ist sehr beliebt.", + "example_sentence_english": "The new fashion collection is very popular.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10413 + }, + { + "word": "Commission", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commission", + "romanization": "Commission", + "example_sentence_native": "Die Europäische Commission hat eine neue Richtlinie erlassen.", + "example_sentence_english": "The European Commission has issued a new directive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10414 + }, + { + "word": "dargestellt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depicted;represented", + "romanization": "dargestellt", + "example_sentence_native": "Die dargestellte Szene ist sehr lebendig.", + "example_sentence_english": "The depicted scene is very vivid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10417 + }, + { + "word": "Datierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dating (e.g.;of artifacts);date", + "romanization": "Datierung", + "example_sentence_native": "Die Datierung des Fundes ist noch unklar.", + "example_sentence_english": "The dating of the find is still unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10418 + }, + { + "word": "definiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defined", + "romanization": "definiert", + "example_sentence_native": "Die Regeln sind klar definiert.", + "example_sentence_english": "The rules are clearly defined.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10420 + }, + { + "word": "Department", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "department", + "romanization": "Department", + "example_sentence_native": "Das Department für Marketing ist im dritten Stock.", + "example_sentence_english": "The marketing department is on the third floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10421 + }, + { + "word": "Dildo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dildo", + "romanization": "Dildo", + "example_sentence_native": "Sie kaufte einen Dildo im Sexshop.", + "example_sentence_english": "She bought a dildo at the sex shop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10422 + }, + { + "word": "Diplomatie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomacy", + "romanization": "Diplomatie", + "example_sentence_native": "Diplomatie ist entscheidend für den Frieden.", + "example_sentence_english": "Diplomacy is crucial for peace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10423 + }, + { + "word": "Dividende", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dividend", + "romanization": "Dividende", + "example_sentence_native": "Die Aktionäre erhalten eine Dividende.", + "example_sentence_english": "The shareholders receive a dividend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10424 + }, + { + "word": "dreizehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirteen", + "romanization": "dreizehn", + "example_sentence_native": "Ich bin dreizehn Jahre alt.", + "example_sentence_english": "I am thirteen years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "num", + "word_frequency": 10425 + }, + { + "word": "Einlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposit;insert", + "romanization": "Einlage", + "example_sentence_native": "Die Bank verlangt eine Einlage.", + "example_sentence_english": "The bank requires a deposit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10427 + }, + { + "word": "Elster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magpie", + "romanization": "Elster", + "example_sentence_native": "Eine Elster saß auf dem Dach.", + "example_sentence_english": "A magpie sat on the roof.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10429 + }, + { + "word": "erfrischend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshing", + "romanization": "erfrischend", + "example_sentence_native": "Das Getränk ist sehr erfrischend.", + "example_sentence_english": "The drink is very refreshing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10430 + }, + { + "word": "Essig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vinegar", + "romanization": "Essig", + "example_sentence_native": "Gib etwas Essig in den Salat.", + "example_sentence_english": "Put some vinegar in the salad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10431 + }, + { + "word": "Evangelium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gospel", + "romanization": "Evangelium", + "example_sentence_native": "Das Evangelium nach Matthäus.", + "example_sentence_english": "The Gospel according to Matthew.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10432 + }, + { + "word": "feindlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostile", + "romanization": "feindlich", + "example_sentence_native": "Die feindliche Übernahme wurde abgewehrt.", + "example_sentence_english": "The hostile takeover was fended off.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10435 + }, + { + "word": "Folk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folk", + "romanization": "Folk", + "example_sentence_native": "Er hört gerne Folk-Musik.", + "example_sentence_english": "He likes to listen to folk music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10436 + }, + { + "word": "forschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to research", + "romanization": "forschen", + "example_sentence_native": "Wissenschaftler forschen an neuen Medikamenten.", + "example_sentence_english": "Scientists research new medicines.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10437 + }, + { + "word": "Fragezeichen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "question mark", + "romanization": "Fragezeichen", + "example_sentence_native": "Am Ende des Satzes steht ein Fragezeichen.", + "example_sentence_english": "There is a question mark at the end of the sentence.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10439 + }, + { + "word": "Funktionär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functionary;official", + "romanization": "Funktionär", + "example_sentence_native": "Der Funktionär sprach über die neuen Regeln.", + "example_sentence_english": "The official spoke about the new rules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10441 + }, + { + "word": "fündig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successful (in finding something)", + "romanization": "fündig", + "example_sentence_native": "Nach langer Suche wurde er endlich fündig.", + "example_sentence_english": "After a long search, he finally found what he was looking for.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10442 + }, + { + "word": "gefühlt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "felt;perceived", + "romanization": "gefühlt", + "example_sentence_native": "Die gefühlte Temperatur war viel niedriger.", + "example_sentence_english": "The perceived temperature was much lower.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10443 + }, + { + "word": "gegnerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposing;adversarial", + "romanization": "gegnerisch", + "example_sentence_native": "Die gegnerische Mannschaft war sehr stark.", + "example_sentence_english": "The opposing team was very strong.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10444 + }, + { + "word": "geheimnisvoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mysterious;secretive", + "romanization": "geheimnisvoll", + "example_sentence_native": "Sie hatte ein geheimnisvolles Lächeln.", + "example_sentence_english": "She had a mysterious smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10445 + }, + { + "word": "Gehorsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obedience", + "romanization": "Gehorsam", + "example_sentence_native": "Er zeigte Gehorsam gegenüber seinen Eltern.", + "example_sentence_english": "He showed obedience towards his parents.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10446 + }, + { + "word": "Geige", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violin", + "romanization": "Geige", + "example_sentence_native": "Sie spielt seit fünf Jahren Geige.", + "example_sentence_english": "She has been playing the violin for five years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10447 + }, + { + "word": "Gel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gel", + "romanization": "Gel", + "example_sentence_native": "Er benutzte Haargel für seine Frisur.", + "example_sentence_english": "He used hair gel for his hairstyle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10448 + }, + { + "word": "Grundwasser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groundwater", + "romanization": "Grundwasser", + "example_sentence_native": "Der Brunnen liefert sauberes Grundwasser.", + "example_sentence_english": "The well provides clean groundwater.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10450 + }, + { + "word": "hausen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dwell;to live (in poor conditions)", + "romanization": "hausen", + "example_sentence_native": "Die Familie musste in einem kleinen Raum hausen.", + "example_sentence_english": "The family had to dwell in a small room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10451 + }, + { + "word": "Helikopter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helicopter", + "romanization": "Helikopter", + "example_sentence_native": "Ein Helikopter landete auf dem Dach.", + "example_sentence_english": "A helicopter landed on the roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10453 + }, + { + "word": "hoffnungslos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hopeless", + "romanization": "hoffnungslos", + "example_sentence_native": "Die Situation schien hoffnungslos.", + "example_sentence_english": "The situation seemed hopeless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10454 + }, + { + "word": "hold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charming;graceful;lovely", + "romanization": "hold", + "example_sentence_native": "Sie war eine holde Erscheinung.", + "example_sentence_english": "She was a graceful apparition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10455 + }, + { + "word": "Igel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hedgehog", + "romanization": "Igel", + "example_sentence_native": "Ein kleiner Igel lief über die Straße.", + "example_sentence_english": "A small hedgehog ran across the street.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10457 + }, + { + "word": "Ignoranz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorance", + "romanization": "Ignoranz", + "example_sentence_native": "Seine Ignoranz gegenüber den Fakten war erschreckend.", + "example_sentence_english": "His ignorance of the facts was shocking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10458 + }, + { + "word": "instant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instant", + "romanization": "instant", + "example_sentence_native": "Ich trinke gerne Instantkaffee.", + "example_sentence_english": "I like to drink instant coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10459 + }, + { + "word": "Inventar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventory", + "romanization": "Inventar", + "example_sentence_native": "Das Inventar des Geschäfts wurde überprüft.", + "example_sentence_english": "The store's inventory was checked.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10460 + }, + { + "word": "Ion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ion", + "romanization": "Ion", + "example_sentence_native": "Ein Ion ist ein elektrisch geladenes Atom oder Molekül.", + "example_sentence_english": "An ion is an electrically charged atom or molecule.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10461 + }, + { + "word": "jahrzehntelang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for decades", + "romanization": "jahrzehntelang", + "example_sentence_native": "Er arbeitete jahrzehntelang in derselben Firma.", + "example_sentence_english": "He worked for decades in the same company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10462 + }, + { + "word": "Kleinkind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toddler", + "romanization": "Kleinkind", + "example_sentence_native": "Das Kleinkind spielt mit Bauklötzen.", + "example_sentence_english": "The toddler is playing with building blocks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10464 + }, + { + "word": "koordiniert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coordinated", + "romanization": "koordiniert", + "example_sentence_native": "Die Rettungsaktion war gut koordiniert.", + "example_sentence_english": "The rescue operation was well coordinated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10465 + }, + { + "word": "Kosmetik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cosmetics", + "romanization": "Kosmetik", + "example_sentence_native": "Sie kaufte neue Kosmetik im Drogeriemarkt.", + "example_sentence_english": "She bought new cosmetics at the drugstore.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10466 + }, + { + "word": "Krawatte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tie", + "romanization": "Krawatte", + "example_sentence_native": "Er trug eine rote Krawatte zu seinem Anzug.", + "example_sentence_english": "He wore a red tie with his suit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10467 + }, + { + "word": "Kreisstadt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district capital", + "romanization": "Kreisstadt", + "example_sentence_native": "Die Kreisstadt ist das Verwaltungszentrum des Landkreises.", + "example_sentence_english": "The district capital is the administrative center of the district.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10468 + }, + { + "word": "Laterne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lantern", + "romanization": "Laterne", + "example_sentence_native": "Die Laterne beleuchtet den Weg im Dunkeln.", + "example_sentence_english": "The lantern illuminates the path in the dark.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10469 + }, + { + "word": "Lebenserwartung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life expectancy", + "romanization": "Lebenserwartung", + "example_sentence_native": "Die Lebenserwartung ist in den letzten Jahrzehnten gestiegen.", + "example_sentence_english": "Life expectancy has increased in recent decades.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10470 + }, + { + "word": "Lebensfreude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joy of life", + "romanization": "Lebensfreude", + "example_sentence_native": "Ihre Lebensfreude ist ansteckend.", + "example_sentence_english": "Her joy of life is contagious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10471 + }, + { + "word": "Legion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legion", + "romanization": "Legion", + "example_sentence_native": "Die römische Legion war eine mächtige Militäreinheit.", + "example_sentence_english": "The Roman legion was a powerful military unit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10472 + }, + { + "word": "Lehrgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "course", + "romanization": "Lehrgang", + "example_sentence_native": "Er hat einen Lehrgang für fortgeschrittene Programmierung besucht.", + "example_sentence_english": "He attended a course for advanced programming.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10473 + }, + { + "word": "Lehrstuhl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chair (university position)", + "romanization": "Lehrstuhl", + "example_sentence_native": "Sie hat den Lehrstuhl für Philosophie an der Universität inne.", + "example_sentence_english": "She holds the chair of philosophy at the university.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10474 + }, + { + "word": "Leuchtturm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighthouse", + "romanization": "Leuchtturm", + "example_sentence_native": "Der Leuchtturm sendet ein Signal an die Schiffe.", + "example_sentence_english": "The lighthouse sends a signal to the ships.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10476 + }, + { + "word": "Magistrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magistrate", + "romanization": "Magistrat", + "example_sentence_native": "Der Magistrat der Stadt hat die neue Verordnung erlassen.", + "example_sentence_english": "The city's magistrate issued the new regulation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10478 + }, + { + "word": "Mietvertrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rental agreement", + "romanization": "Mietvertrag", + "example_sentence_native": "Ich habe den Mietvertrag unterschrieben.", + "example_sentence_english": "I signed the rental agreement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10483 + }, + { + "word": "Nachkriegszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "post-war period", + "romanization": "Nachkriegszeit", + "example_sentence_native": "Die Wirtschaft erholte sich in der Nachkriegszeit.", + "example_sentence_english": "The economy recovered in the post-war period.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10486 + }, + { + "word": "niederschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to precipitate;to strike down", + "romanization": "niederschlagen", + "example_sentence_native": "Der Regen schlägt sich auf dem Dach nieder.", + "example_sentence_english": "The rain precipitates on the roof.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nieder", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10487 + }, + { + "word": "Ohnmacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faint;powerlessness", + "romanization": "Ohnmacht", + "example_sentence_native": "Sie fiel in Ohnmacht.", + "example_sentence_english": "She fainted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10488 + }, + { + "word": "organisatorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organizational", + "romanization": "organisatorisch", + "example_sentence_native": "Das ist eine organisatorische Herausforderung.", + "example_sentence_english": "That is an organizational challenge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10490 + }, + { + "word": "Pandemie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pandemic", + "romanization": "Pandemie", + "example_sentence_native": "Die Welt erlebte eine globale Pandemie.", + "example_sentence_english": "The world experienced a global pandemic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10492 + }, + { + "word": "Panne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breakdown;glitch", + "romanization": "Panne", + "example_sentence_native": "Wir hatten eine Panne mit dem Auto.", + "example_sentence_english": "We had a breakdown with the car.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10493 + }, + { + "word": "Pendant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpart;equivalent", + "romanization": "Pendant", + "example_sentence_native": "Sie ist das Pendant zu ihrem Bruder.", + "example_sentence_english": "She is the counterpart to her brother.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10495 + }, + { + "word": "Pracht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "splendor;magnificence", + "romanization": "Pracht", + "example_sentence_native": "Der Dom ist von großer Pracht.", + "example_sentence_english": "The cathedral is of great splendor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10499 + }, + { + "word": "Prosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prose", + "romanization": "Prosa", + "example_sentence_native": "Er schreibt Prosa und Gedichte.", + "example_sentence_english": "He writes prose and poems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10500 + }, + { + "word": "Prototyp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prototype", + "romanization": "Prototyp", + "example_sentence_native": "Der neue Prototyp wird nächste Woche getestet.", + "example_sentence_english": "The new prototype will be tested next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10501 + }, + { + "word": "Prozentsatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "percentage", + "romanization": "Prozentsatz", + "example_sentence_native": "Der Prozentsatz der Arbeitslosen ist gesunken.", + "example_sentence_english": "The percentage of unemployed has decreased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10502 + }, + { + "word": "rasieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shave", + "romanization": "rasieren", + "example_sentence_native": "Er muss sich jeden Morgen rasieren.", + "example_sentence_english": "He has to shave every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10503 + }, + { + "word": "Rebellion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellion", + "romanization": "Rebellion", + "example_sentence_native": "Die Rebellion wurde schnell niedergeschlagen.", + "example_sentence_english": "The rebellion was quickly suppressed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10504 + }, + { + "word": "rechtswidrig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlawful;illegal", + "romanization": "rechtswidrig", + "example_sentence_native": "Das war eine rechtswidrige Handlung.", + "example_sentence_english": "That was an unlawful act.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10505 + }, + { + "word": "Renner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bestseller;fast runner", + "romanization": "Renner", + "example_sentence_native": "Dieses Buch ist ein echter Renner.", + "example_sentence_english": "This book is a real bestseller.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10506 + }, + { + "word": "rächen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avenge;to take revenge", + "romanization": "rächen", + "example_sentence_native": "Er wollte sich für die Ungerechtigkeit rächen.", + "example_sentence_english": "He wanted to avenge the injustice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10508 + }, + { + "word": "Räumung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eviction;clearance", + "romanization": "Räumung", + "example_sentence_native": "Die Räumung des Gebäudes wurde angeordnet.", + "example_sentence_english": "The clearance of the building was ordered.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10509 + }, + { + "word": "Rückgabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "return (of goods)", + "romanization": "Rückgabe", + "example_sentence_native": "Die Rückgabe der Ware ist innerhalb von 14 Tagen möglich.", + "example_sentence_english": "The return of the goods is possible within 14 days.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10510 + }, + { + "word": "Rückrunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "second half of the season (sports)", + "romanization": "Rückrunde", + "example_sentence_native": "Die Mannschaft spielte eine starke Rückrunde.", + "example_sentence_english": "The team played a strong second half of the season.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10511 + }, + { + "word": "Scanner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scanner", + "romanization": "Scanner", + "example_sentence_native": "Der Scanner ist kaputt.", + "example_sentence_english": "The scanner is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10515 + }, + { + "word": "Schlussfolgerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conclusion;inference", + "romanization": "Schlussfolgerung", + "example_sentence_native": "Seine Schlussfolgerung war logisch.", + "example_sentence_english": "His conclusion was logical.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10517 + }, + { + "word": "separat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separate", + "romanization": "separat", + "example_sentence_native": "Die Dokumente werden separat aufbewahrt.", + "example_sentence_english": "The documents are stored separately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10519 + }, + { + "word": "Siedler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settler", + "romanization": "Siedler", + "example_sentence_native": "Die ersten Siedler bauten kleine Hütten.", + "example_sentence_english": "The first settlers built small huts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10520 + }, + { + "word": "Site", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "site (website)", + "romanization": "Site", + "example_sentence_native": "Die Site ist noch im Aufbau.", + "example_sentence_english": "The site is still under construction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10521 + }, + { + "word": "Sockel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pedestal;base", + "romanization": "Sockel", + "example_sentence_native": "Die Statue steht auf einem hohen Sockel.", + "example_sentence_english": "The statue stands on a high pedestal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10523 + }, + { + "word": "Spargel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "asparagus", + "romanization": "Spargel", + "example_sentence_native": "Im Frühling essen wir gerne Spargel.", + "example_sentence_english": "In spring, we like to eat asparagus.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10524 + }, + { + "word": "Stage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage", + "romanization": "Stage", + "example_sentence_native": "Die Band betrat die Stage.", + "example_sentence_english": "The band entered the stage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10525 + }, + { + "word": "streicheln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stroke;to caress", + "romanization": "streicheln", + "example_sentence_native": "Sie streichelt ihre Katze sanft.", + "example_sentence_english": "She gently strokes her cat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10526 + }, + { + "word": "Theologe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theologian", + "romanization": "Theologe", + "example_sentence_native": "Er studierte, um Theologe zu werden.", + "example_sentence_english": "He studied to become a theologian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10530 + }, + { + "word": "Traktor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tractor", + "romanization": "Traktor", + "example_sentence_native": "Der Bauer fährt mit seinem Traktor aufs Feld.", + "example_sentence_english": "The farmer drives his tractor to the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10532 + }, + { + "word": "Trasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "route;alignment", + "romanization": "Trasse", + "example_sentence_native": "Die neue Autobahn folgt einer geraden Trasse.", + "example_sentence_english": "The new highway follows a straight alignment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10533 + }, + { + "word": "Tube", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tube", + "romanization": "Tube", + "example_sentence_native": "Bitte gib mir die Tube Zahnpasta.", + "example_sentence_english": "Please give me the tube of toothpaste.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10535 + }, + { + "word": "Tugend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtue", + "romanization": "Tugend", + "example_sentence_native": "Geduld ist eine wichtige Tugend.", + "example_sentence_english": "Patience is an important virtue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10536 + }, + { + "word": "Verhinderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevention;hindrance", + "romanization": "Verhinderung", + "example_sentence_native": "Die Verhinderung des Unfalls war Glück.", + "example_sentence_english": "The prevention of the accident was luck.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10540 + }, + { + "word": "vertraglich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contractual", + "romanization": "vertraglich", + "example_sentence_native": "Das ist vertraglich geregelt.", + "example_sentence_english": "That is contractually regulated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10541 + }, + { + "word": "verurteilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convicted;condemned", + "romanization": "verurteilt", + "example_sentence_native": "Er wurde zu einer Haftstrafe verurteilt.", + "example_sentence_english": "He was sentenced to a prison term.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10542 + }, + { + "word": "verwirrend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confusing", + "romanization": "verwirrend", + "example_sentence_native": "Die Anweisungen waren sehr verwirrend.", + "example_sentence_english": "The instructions were very confusing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10543 + }, + { + "word": "verzieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decorate;to adorn", + "romanization": "verzieren", + "example_sentence_native": "Wir wollen den Kuchen verzieren.", + "example_sentence_english": "We want to decorate the cake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10544 + }, + { + "word": "Violine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violin", + "romanization": "Violine", + "example_sentence_native": "Sie spielt Violine in einem Orchester.", + "example_sentence_english": "She plays violin in an orchestra.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10545 + }, + { + "word": "vorweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to present;to show", + "romanization": "vorweisen", + "example_sentence_native": "Sie müssen Ihren Ausweis vorweisen.", + "example_sentence_english": "You must present your ID.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10547 + }, + { + "word": "Wachs", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wax", + "romanization": "Wachs", + "example_sentence_native": "Die Kerze ist aus Wachs.", + "example_sentence_english": "The candle is made of wax.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10548 + }, + { + "word": "Wahrzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landmark;emblem", + "romanization": "Wahrzeichen", + "example_sentence_native": "Der Eiffelturm ist das Wahrzeichen von Paris.", + "example_sentence_english": "The Eiffel Tower is the landmark of Paris.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10549 + }, + { + "word": "wegwerfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to throw away", + "romanization": "wegwerfen", + "example_sentence_native": "Bitte werfen Sie den Müll nicht weg.", + "example_sentence_english": "Please do not throw away the trash.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "werfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10550 + }, + { + "word": "Wrack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wreck", + "romanization": "Wrack", + "example_sentence_native": "Das Schiffswrack lag auf dem Meeresgrund.", + "example_sentence_english": "The shipwreck lay on the seabed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10552 + }, + { + "word": "Zitrone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lemon", + "romanization": "Zitrone", + "example_sentence_native": "Ich brauche eine Zitrone für den Tee.", + "example_sentence_english": "I need a lemon for the tea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10554 + }, + { + "word": "zutreffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to apply;to be true", + "romanization": "zutreffen", + "example_sentence_native": "Diese Beschreibung trifft auf ihn zu.", + "example_sentence_english": "This description applies to him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "treffen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10555 + }, + { + "word": "Abkühlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooling;cool-down", + "romanization": "Abkühlung", + "example_sentence_native": "Wir brauchen eine Abkühlung bei diesem Wetter.", + "example_sentence_english": "We need a cool-down in this weather.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10556 + }, + { + "word": "Absender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sender", + "romanization": "Absender", + "example_sentence_native": "Der Absender des Briefes ist unbekannt.", + "example_sentence_english": "The sender of the letter is unknown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10557 + }, + { + "word": "Advent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Advent", + "romanization": "Advent", + "example_sentence_native": "Im Advent backen wir Plätzchen.", + "example_sentence_english": "In Advent, we bake cookies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10558 + }, + { + "word": "angeboten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offered;available", + "romanization": "angeboten", + "example_sentence_native": "Die angebotenen Produkte sind von hoher Qualität.", + "example_sentence_english": "The offered products are of high quality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10560 + }, + { + "word": "Arbeitsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working method;modus operandi", + "romanization": "Arbeitsweise", + "example_sentence_native": "Seine Arbeitsweise ist sehr effizient.", + "example_sentence_english": "His working method is very efficient.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10561 + }, + { + "word": "Arche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ark", + "romanization": "Arche", + "example_sentence_native": "Die Arche Noah ist eine bekannte Geschichte.", + "example_sentence_english": "Noah's Ark is a well-known story.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10562 + }, + { + "word": "Asiate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Asian (male)", + "romanization": "Asiate", + "example_sentence_native": "Er ist ein Asiate.", + "example_sentence_english": "He is an Asian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10564 + }, + { + "word": "aufbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break open;to set off;depart", + "romanization": "aufbrechen", + "example_sentence_native": "Wir müssen früh aufbrechen.", + "example_sentence_english": "We have to set off early.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "brechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10567 + }, + { + "word": "Ausprägung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manifestation;characteristic;form", + "romanization": "Ausprägung", + "example_sentence_native": "Das ist eine seltene Ausprägung der Krankheit.", + "example_sentence_english": "This is a rare manifestation of the disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10568 + }, + { + "word": "Ausschau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lookout;watch (as in \"to keep a lookout\")", + "romanization": "Ausschau", + "example_sentence_native": "Wir halten Ausschau nach dem Bus.", + "example_sentence_english": "We are keeping a lookout for the bus.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10569 + }, + { + "word": "Auszahlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "payout;disbursement", + "romanization": "Auszahlung", + "example_sentence_native": "Die Auszahlung erfolgt am Monatsende.", + "example_sentence_english": "The payout will be made at the end of the month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10570 + }, + { + "word": "Bag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bag", + "romanization": "Bag", + "example_sentence_native": "Ich habe einen neuen Bag gekauft.", + "example_sentence_english": "I bought a new bag.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10571 + }, + { + "word": "Beere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "berry", + "romanization": "Beere", + "example_sentence_native": "Ich esse gerne frische Beeren.", + "example_sentence_english": "I like to eat fresh berries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10574 + }, + { + "word": "betrieblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operational;company-related", + "romanization": "betrieblich", + "example_sentence_native": "Das ist eine betriebliche Angelegenheit.", + "example_sentence_english": "This is an operational matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10575 + }, + { + "word": "bezeugen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to testify;to attest", + "romanization": "bezeugen", + "example_sentence_native": "Er kann das bezeugen.", + "example_sentence_english": "He can testify to that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10577 + }, + { + "word": "Circus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circus", + "romanization": "Circus", + "example_sentence_native": "Der Circus kommt in die Stadt.", + "example_sentence_english": "The circus is coming to town.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10582 + }, + { + "word": "Culture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culture", + "romanization": "Culture", + "example_sentence_native": "Die deutsche Culture ist reich an Geschichte.", + "example_sentence_english": "German culture is rich in history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10584 + }, + { + "word": "Dekoration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decoration", + "romanization": "Dekoration", + "example_sentence_native": "Die Dekoration für die Party ist wunderschön.", + "example_sentence_english": "The decoration for the party is beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10585 + }, + { + "word": "Direktorin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female director", + "romanization": "Direktorin", + "example_sentence_native": "Die Direktorin hat eine wichtige Entscheidung getroffen.", + "example_sentence_english": "The female director made an important decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10587 + }, + { + "word": "Disposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disposition;arrangement;readiness", + "romanization": "Disposition", + "example_sentence_native": "Er hat eine gute Disposition für Sprachen.", + "example_sentence_english": "He has a good disposition for languages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10588 + }, + { + "word": "dreifach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "threefold;triple", + "romanization": "dreifach", + "example_sentence_native": "Er hat die Aufgabe dreifach überprüft.", + "example_sentence_english": "He checked the task threefold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10591 + }, + { + "word": "Druckerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "printing house;print shop", + "romanization": "Druckerei", + "example_sentence_native": "Die neue Druckerei hat moderne Maschinen.", + "example_sentence_english": "The new printing house has modern machines.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10592 + }, + { + "word": "Däne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dane (male person from Denmark)", + "romanization": "Däne", + "example_sentence_native": "Er ist ein Däne und spricht Dänisch.", + "example_sentence_english": "He is a Dane and speaks Danish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10593 + }, + { + "word": "einberufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convene;to draft (into military)", + "romanization": "einberufen", + "example_sentence_native": "Der Präsident wird das Parlament einberufen.", + "example_sentence_english": "The president will convene the parliament.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "berufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10595 + }, + { + "word": "einstecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put in;to plug in;to pocket", + "romanization": "einstecken", + "example_sentence_native": "Er muss den Stecker einstecken.", + "example_sentence_english": "He has to plug in the plug.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "stecken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10596 + }, + { + "word": "Enkelin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "granddaughter", + "romanization": "Enkelin", + "example_sentence_native": "Meine Enkelin besucht mich oft.", + "example_sentence_english": "My granddaughter visits me often.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10597 + }, + { + "word": "erhöht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "increased;elevated", + "romanization": "erhöht", + "example_sentence_native": "Die Preise wurden erhöht.", + "example_sentence_english": "The prices were increased.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10598 + }, + { + "word": "erraten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guess;to figure out", + "romanization": "erraten", + "example_sentence_native": "Kannst du die Antwort erraten?", + "example_sentence_english": "Can you guess the answer?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10599 + }, + { + "word": "ethisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethical", + "romanization": "ethisch", + "example_sentence_native": "Das ist eine ethisch fragwürdige Entscheidung.", + "example_sentence_english": "That is an ethically questionable decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10602 + }, + { + "word": "familiär", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "familial;family-like", + "romanization": "familiär", + "example_sentence_native": "Sie haben eine sehr familiäre Atmosphäre geschaffen.", + "example_sentence_english": "They have created a very family-like atmosphere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10603 + }, + { + "word": "Faser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiber", + "romanization": "Faser", + "example_sentence_native": "Diese Kleidung besteht aus natürlichen Fasern.", + "example_sentence_english": "This clothing is made of natural fibers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10604 + }, + { + "word": "Fernbedienung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "remote control", + "romanization": "Fernbedienung", + "example_sentence_native": "Wo ist die Fernbedienung für den Fernseher?", + "example_sentence_english": "Where is the remote control for the TV?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10605 + }, + { + "word": "fortführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to continue;to carry on", + "romanization": "fortführen", + "example_sentence_native": "Wir müssen diese Tradition fortführen.", + "example_sentence_english": "We must continue this tradition.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fort", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10607 + }, + { + "word": "funktionierend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "functioning;working", + "romanization": "funktionierend", + "example_sentence_native": "Wir brauchen eine funktionierende Lösung.", + "example_sentence_english": "We need a functioning solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10608 + }, + { + "word": "Fälschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forgery;fake", + "romanization": "Fälschung", + "example_sentence_native": "Das Gemälde stellte sich als Fälschung heraus.", + "example_sentence_english": "The painting turned out to be a forgery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10609 + }, + { + "word": "gefüllt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "filled;stuffed", + "romanization": "gefüllt", + "example_sentence_native": "Der Korb ist mit Äpfeln gefüllt.", + "example_sentence_english": "The basket is filled with apples.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10610 + }, + { + "word": "Geier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulture", + "romanization": "Geier", + "example_sentence_native": "Ein Geier kreiste über der Wüste.", + "example_sentence_english": "A vulture circled over the desert.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10611 + }, + { + "word": "Gelassenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serenity;composure", + "romanization": "Gelassenheit", + "example_sentence_native": "Er begegnete der Situation mit großer Gelassenheit.", + "example_sentence_english": "He faced the situation with great serenity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10612 + }, + { + "word": "Genüge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enough;sufficiency", + "romanization": "Genüge", + "example_sentence_native": "Das ist mehr als Genüge.", + "example_sentence_english": "That is more than enough.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10613 + }, + { + "word": "Germanistik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "German studies", + "romanization": "Germanistik", + "example_sentence_native": "Sie studiert Germanistik an der Universität.", + "example_sentence_english": "She studies German studies at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10614 + }, + { + "word": "geschaffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "created;made", + "romanization": "geschaffen", + "example_sentence_native": "Das ist ein wunderschön geschaffenes Kunstwerk.", + "example_sentence_english": "That is a beautifully created work of art.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10615 + }, + { + "word": "Gänsehaut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goosebumps", + "romanization": "Gänsehaut", + "example_sentence_native": "Der Film gab mir Gänsehaut.", + "example_sentence_english": "The movie gave me goosebumps.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10616 + }, + { + "word": "Hauptsitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headquarters;main office", + "romanization": "Hauptsitz", + "example_sentence_native": "Der Hauptsitz der Firma ist in Berlin.", + "example_sentence_english": "The company's headquarters is in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10618 + }, + { + "word": "Hausarzt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "family doctor;general practitioner", + "romanization": "Hausarzt", + "example_sentence_native": "Ich muss einen Termin bei meinem Hausarzt vereinbaren.", + "example_sentence_english": "I need to make an appointment with my family doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10619 + }, + { + "word": "Heilmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remedy;cure", + "romanization": "Heilmittel", + "example_sentence_native": "Es gibt kein Heilmittel für diese Krankheit.", + "example_sentence_english": "There is no cure for this disease.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10620 + }, + { + "word": "heizen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to heat", + "romanization": "heizen", + "example_sentence_native": "Wir müssen das Haus heizen, es ist kalt.", + "example_sentence_english": "We have to heat the house, it's cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10621 + }, + { + "word": "herunterladen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to download", + "romanization": "herunterladen", + "example_sentence_native": "Ich möchte die Datei herunterladen.", + "example_sentence_english": "I want to download the file.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "herunter", + "base_verb": "laden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10622 + }, + { + "word": "Highway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "highway;freeway", + "romanization": "Highway", + "example_sentence_native": "Der Highway ist heute sehr voll.", + "example_sentence_english": "The highway is very busy today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10623 + }, + { + "word": "Illustration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustration", + "romanization": "Illustration", + "example_sentence_native": "Die Illustrationen in diesem Buch sind wunderschön.", + "example_sentence_english": "The illustrations in this book are beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10627 + }, + { + "word": "Immunsystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immune system", + "romanization": "Immunsystem", + "example_sentence_native": "Ein starkes Immunsystem ist wichtig für die Gesundheit.", + "example_sentence_english": "A strong immune system is important for health.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10628 + }, + { + "word": "Karikatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caricature;cartoon", + "romanization": "Karikatur", + "example_sentence_native": "Die Zeitung veröffentlichte eine politische Karikatur.", + "example_sentence_english": "The newspaper published a political caricature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10631 + }, + { + "word": "Kindergeld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "child benefit;child allowance", + "romanization": "Kindergeld", + "example_sentence_native": "Viele Familien erhalten Kindergeld vom Staat.", + "example_sentence_english": "Many families receive child benefit from the state.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10632 + }, + { + "word": "kontrolliert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controlled", + "romanization": "kontrolliert", + "example_sentence_native": "Die Situation ist jetzt kontrolliert.", + "example_sentence_english": "The situation is now controlled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10633 + }, + { + "word": "Kunstgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art history", + "romanization": "Kunstgeschichte", + "example_sentence_native": "Sie studiert Kunstgeschichte an der Universität.", + "example_sentence_english": "She studies art history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10635 + }, + { + "word": "Küken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chick (baby bird)", + "romanization": "Küken", + "example_sentence_native": "Das kleine Küken piepst laut.", + "example_sentence_english": "The little chick is chirping loudly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10636 + }, + { + "word": "Livestream", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "livestream", + "romanization": "Livestream", + "example_sentence_native": "Wir haben den Livestream des Konzerts gesehen.", + "example_sentence_english": "We watched the livestream of the concert.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10637 + }, + { + "word": "Markenzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trademark;brand mark", + "romanization": "Markenzeichen", + "example_sentence_native": "Das Logo ist das Markenzeichen der Firma.", + "example_sentence_english": "The logo is the trademark of the company.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10639 + }, + { + "word": "meinerseits", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for my part", + "romanization": "meinerseits", + "example_sentence_native": "Meinerseits gibt es keine Einwände.", + "example_sentence_english": "For my part, there are no objections.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10640 + }, + { + "word": "Mexikaner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Mexican (person)", + "romanization": "Mexikaner", + "example_sentence_native": "Er ist ein Mexikaner.", + "example_sentence_english": "He is a Mexican.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10642 + }, + { + "word": "Milan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kite (bird of prey)", + "romanization": "Milan", + "example_sentence_native": "Der Milan kreiste hoch am Himmel.", + "example_sentence_english": "The kite circled high in the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10643 + }, + { + "word": "münden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flow into;to lead into", + "romanization": "münden", + "example_sentence_native": "Der Fluss mündet in die Nordsee.", + "example_sentence_english": "The river flows into the North Sea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10647 + }, + { + "word": "Navi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "satnav;GPS device", + "romanization": "Navi", + "example_sentence_native": "Ich brauche mein Navi, um den Weg zu finden.", + "example_sentence_english": "I need my satnav to find the way.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10648 + }, + { + "word": "ordnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrange;to sort;to organize", + "romanization": "ordnen", + "example_sentence_native": "Sie muss ihre Papiere ordnen.", + "example_sentence_english": "She has to organize her papers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10656 + }, + { + "word": "orthodox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orthodox", + "romanization": "orthodox", + "example_sentence_native": "Er gehört der orthodoxen Kirche an.", + "example_sentence_english": "He belongs to the Orthodox Church.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10657 + }, + { + "word": "Parole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan;watchword;parole", + "romanization": "Parole", + "example_sentence_native": "Die Parole der Bewegung war \"Freiheit!\".", + "example_sentence_english": "The slogan of the movement was \"Freedom!\".", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10659 + }, + { + "word": "Penner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tramp;hobo", + "romanization": "Penner", + "example_sentence_native": "Der Penner schlief auf einer Parkbank.", + "example_sentence_english": "The tramp slept on a park bench.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10660 + }, + { + "word": "produktiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "productive", + "romanization": "produktiv", + "example_sentence_native": "Wir hatten heute einen sehr produktiven Tag.", + "example_sentence_english": "We had a very productive day today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10664 + }, + { + "word": "Promille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "per mille;permil", + "romanization": "Promille", + "example_sentence_native": "Der Alkoholgehalt im Blut wird in Promille gemessen.", + "example_sentence_english": "The blood alcohol content is measured in per mille.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10665 + }, + { + "word": "Prägung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprint;coinage;shaping", + "romanization": "Prägung", + "example_sentence_native": "Die kulturelle Prägung ist sehr stark.", + "example_sentence_english": "The cultural shaping is very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10667 + }, + { + "word": "prügeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beat;to thrash", + "romanization": "prügeln", + "example_sentence_native": "Man sollte niemals Tiere prügeln.", + "example_sentence_english": "One should never beat animals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10668 + }, + { + "word": "Relegation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relegation;demotion", + "romanization": "Relegation", + "example_sentence_native": "Der Verein muss in die Relegation.", + "example_sentence_english": "The club has to go into relegation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10669 + }, + { + "word": "Religionsunterricht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religious education", + "romanization": "Religionsunterricht", + "example_sentence_native": "In der Schule gibt es Religionsunterricht.", + "example_sentence_english": "There is religious education in school.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10670 + }, + { + "word": "Ruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jerk;jolt", + "romanization": "Ruck", + "example_sentence_native": "Mit einem Ruck öffnete er die Tür.", + "example_sentence_english": "With a jerk, he opened the door.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10673 + }, + { + "word": "rumlaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run around;to walk around", + "romanization": "rumlaufen", + "example_sentence_native": "Die Kinder laufen im Garten rum.", + "example_sentence_english": "The children are running around in the garden.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rum", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10674 + }, + { + "word": "räumlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spatial", + "romanization": "räumlich", + "example_sentence_native": "Wir müssen das Problem räumlich betrachten.", + "example_sentence_english": "We need to consider the problem spatially.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10675 + }, + { + "word": "Rückgrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backbone;spine;courage", + "romanization": "Rückgrat", + "example_sentence_native": "Er zeigte Rückgrat und stand zu seiner Meinung.", + "example_sentence_english": "He showed backbone and stood by his opinion.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10676 + }, + { + "word": "Schaum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foam;froth", + "romanization": "Schaum", + "example_sentence_native": "Der Schaum auf dem Bier war perfekt.", + "example_sentence_english": "The foam on the beer was perfect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10677 + }, + { + "word": "Schnelligkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed;quickness", + "romanization": "Schnelligkeit", + "example_sentence_native": "Die Schnelligkeit des Autos war beeindruckend.", + "example_sentence_english": "The speed of the car was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10678 + }, + { + "word": "Schweiger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silent person;taciturn person", + "romanization": "Schweiger", + "example_sentence_native": "Er war ein Schweiger und sprach selten.", + "example_sentence_english": "He was a silent person and rarely spoke.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10679 + }, + { + "word": "sodann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thereupon;then", + "romanization": "sodann", + "example_sentence_native": "Er beendete seine Rede, sodann verließ er den Raum.", + "example_sentence_english": "He finished his speech, thereupon he left the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 10682 + }, + { + "word": "Sommerpause", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summer break", + "romanization": "Sommerpause", + "example_sentence_native": "Die Bundesliga geht in die Sommerpause.", + "example_sentence_english": "The Bundesliga goes into its summer break.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10683 + }, + { + "word": "Sonnenlicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sunlight", + "romanization": "Sonnenlicht", + "example_sentence_native": "Pflanzen brauchen Sonnenlicht zum Wachsen.", + "example_sentence_english": "Plants need sunlight to grow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10684 + }, + { + "word": "sprachlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguistic;language-related", + "romanization": "sprachlich", + "example_sentence_native": "Er hat große sprachliche Fähigkeiten.", + "example_sentence_english": "He has great linguistic abilities.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 10686 + }, + { + "word": "Sticker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sticker", + "romanization": "Sticker", + "example_sentence_native": "Das Kind klebte einen Sticker auf sein Heft.", + "example_sentence_english": "The child stuck a sticker on his notebook.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10688 + }, + { + "word": "Stromversorgung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power supply", + "romanization": "Stromversorgung", + "example_sentence_native": "Die Stromversorgung wurde unterbrochen.", + "example_sentence_english": "The power supply was interrupted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10690 + }, + { + "word": "Strophe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stanza;verse", + "romanization": "Strophe", + "example_sentence_native": "Das Lied hat drei Strophen.", + "example_sentence_english": "The song has three stanzas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10691 + }, + { + "word": "Subjekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject (grammar;philosophy)", + "romanization": "Subjekt", + "example_sentence_native": "Das Subjekt des Satzes ist \"ich\".", + "example_sentence_english": "The subject of the sentence is \"I\".", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10692 + }, + { + "word": "Symbolik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symbolism", + "romanization": "Symbolik", + "example_sentence_native": "Die Symbolik in diesem Gemälde ist sehr reichhaltig.", + "example_sentence_english": "The symbolism in this painting is very rich.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10693 + }, + { + "word": "Tinte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ink", + "romanization": "Tinte", + "example_sentence_native": "Die Tinte im Drucker ist leer.", + "example_sentence_english": "The ink in the printer is empty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10696 + }, + { + "word": "Todesopfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatality;victim (of death)", + "romanization": "Todesopfer", + "example_sentence_native": "Bei dem Unfall gab es keine Todesopfer.", + "example_sentence_english": "There were no fatalities in the accident.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10697 + }, + { + "word": "Tänzerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dancer (female)", + "romanization": "Tänzerin", + "example_sentence_native": "Die Tänzerin bewegte sich elegant über die Bühne.", + "example_sentence_english": "The dancer moved elegantly across the stage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10698 + }, + { + "word": "Vakuum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vacuum", + "romanization": "Vakuum", + "example_sentence_native": "Das Vakuum im Weltraum ist fast perfekt.", + "example_sentence_english": "The vacuum in space is almost perfect.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10700 + }, + { + "word": "Verachtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contempt", + "romanization": "Verachtung", + "example_sentence_native": "Er blickte sie mit Verachtung an.", + "example_sentence_english": "He looked at her with contempt.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10701 + }, + { + "word": "Vergewaltiger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rapist", + "romanization": "Vergewaltiger", + "example_sentence_native": "Der Vergewaltiger wurde verhaftet.", + "example_sentence_english": "The rapist was arrested.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10702 + }, + { + "word": "Vergrösserung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlargement", + "romanization": "Vergrösserung", + "example_sentence_native": "Die Vergrösserung des Bildes war beeindruckend.", + "example_sentence_english": "The enlargement of the picture was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10703 + }, + { + "word": "verlinken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to link", + "romanization": "verlinken", + "example_sentence_native": "Sie können die Seite in Ihrem Blog verlinken.", + "example_sentence_english": "You can link the page in your blog.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10704 + }, + { + "word": "verschlechtern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worsen", + "romanization": "verschlechtern", + "example_sentence_native": "Das Wetter wird sich verschlechtern.", + "example_sentence_english": "The weather will worsen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10705 + }, + { + "word": "Volksrepublik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "people's republic", + "romanization": "Volksrepublik", + "example_sentence_native": "Die Volksrepublik China ist ein grosses Land.", + "example_sentence_english": "The People's Republic of China is a large country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10706 + }, + { + "word": "Vorort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suburb", + "romanization": "Vorort", + "example_sentence_native": "Sie wohnen in einem ruhigen Vorort.", + "example_sentence_english": "They live in a quiet suburb.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10707 + }, + { + "word": "Vortag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous day", + "romanization": "Vortag", + "example_sentence_native": "Am Vortag hatte es geregnet.", + "example_sentence_english": "It had rained the day before.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10709 + }, + { + "word": "Weihnachtszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas season", + "romanization": "Weihnachtszeit", + "example_sentence_native": "Die Weihnachtszeit ist meine Lieblingszeit des Jahres.", + "example_sentence_english": "Christmas time is my favorite time of the year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10710 + }, + { + "word": "Weiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hamlet", + "romanization": "Weiler", + "example_sentence_native": "Der Weiler bestand nur aus wenigen Häusern.", + "example_sentence_english": "The hamlet consisted of only a few houses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10711 + }, + { + "word": "Wiederwahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-election", + "romanization": "Wiederwahl", + "example_sentence_native": "Der Präsident strebt eine Wiederwahl an.", + "example_sentence_english": "The president is seeking re-election.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10713 + }, + { + "word": "Wirtschaftlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic efficiency", + "romanization": "Wirtschaftlichkeit", + "example_sentence_native": "Die Wirtschaftlichkeit des Projekts wurde in Frage gestellt.", + "example_sentence_english": "The economic efficiency of the project was questioned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10714 + }, + { + "word": "Wirtschaftswachstum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economic growth", + "romanization": "Wirtschaftswachstum", + "example_sentence_native": "Das Wirtschaftswachstum ist in diesem Quartal gestiegen.", + "example_sentence_english": "Economic growth has increased this quarter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10715 + }, + { + "word": "Wohlbefinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well-being", + "romanization": "Wohlbefinden", + "example_sentence_native": "Sport trägt zum allgemeinen Wohlbefinden bei.", + "example_sentence_english": "Sport contributes to general well-being.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10716 + }, + { + "word": "Wohnmobil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorhome", + "romanization": "Wohnmobil", + "example_sentence_native": "Sie reisen gerne mit ihrem Wohnmobil.", + "example_sentence_english": "They like to travel with their motorhome.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10717 + }, + { + "word": "Zerfall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decay", + "romanization": "Zerfall", + "example_sentence_native": "Der Zerfall des Reiches war unvermeidlich.", + "example_sentence_english": "The collapse of the empire was inevitable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10719 + }, + { + "word": "zerreißen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tear apart;to rip up", + "romanization": "zerreißen", + "example_sentence_native": "Er wird den Brief zerreißen.", + "example_sentence_english": "He will tear up the letter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10720 + }, + { + "word": "Zuspruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encouragement;support", + "romanization": "Zuspruch", + "example_sentence_native": "Er brauchte Zuspruch nach dem Misserfolg.", + "example_sentence_english": "He needed encouragement after the failure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10722 + }, + { + "word": "überwiegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outweigh;to predominate", + "romanization": "überwiegen", + "example_sentence_native": "Die Vorteile überwiegen die Nachteile.", + "example_sentence_english": "The advantages outweigh the disadvantages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10723 + }, + { + "word": "Ableger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offshoot;branch;spin-off", + "romanization": "Ableger", + "example_sentence_native": "Das Unternehmen gründete einen neuen Ableger.", + "example_sentence_english": "The company founded a new spin-off.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10724 + }, + { + "word": "Abzeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "badge;emblem", + "romanization": "Abzeichen", + "example_sentence_native": "Er trug ein Abzeichen an seiner Uniform.", + "example_sentence_english": "He wore a badge on his uniform.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10725 + }, + { + "word": "anknüpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tie in with;to establish contact", + "romanization": "anknüpfen", + "example_sentence_native": "Er wollte an alte Freundschaften anknüpfen.", + "example_sentence_english": "He wanted to resume old friendships.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "knüpfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10729 + }, + { + "word": "anwendbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicable;usable", + "romanization": "anwendbar", + "example_sentence_native": "Diese Regel ist hier nicht anwendbar.", + "example_sentence_english": "This rule is not applicable here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10730 + }, + { + "word": "Arbeitsrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labor law;employment law", + "romanization": "Arbeitsrecht", + "example_sentence_native": "Sie studiert Arbeitsrecht an der Universität.", + "example_sentence_english": "She studies labor law at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10731 + }, + { + "word": "aufziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise (children);to wind (a clock)", + "romanization": "aufziehen", + "example_sentence_native": "Sie musste ihre Kinder alleine aufziehen.", + "example_sentence_english": "She had to raise her children alone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10732 + }, + { + "word": "Ausgrenzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exclusion;marginalization", + "romanization": "Ausgrenzung", + "example_sentence_native": "Soziale Ausgrenzung ist ein ernstes Problem.", + "example_sentence_english": "Social exclusion is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10733 + }, + { + "word": "Ausstoss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "output;emission", + "romanization": "Ausstoss", + "example_sentence_native": "Der Ausstoß von CO2 muss reduziert werden.", + "example_sentence_english": "The emission of CO2 must be reduced.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10734 + }, + { + "word": "Auszubildender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apprentice;trainee (male)", + "romanization": "Auszubildender", + "example_sentence_native": "Der Auszubildende lernt schnell.", + "example_sentence_english": "The apprentice learns quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10735 + }, + { + "word": "autofahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drive a car", + "romanization": "autofahren", + "example_sentence_native": "Ich lerne, autofahren.", + "example_sentence_english": "I am learning to drive a car.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auto", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10736 + }, + { + "word": "beispielhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemplary;illustrative", + "romanization": "beispielhaft", + "example_sentence_native": "Sein Verhalten war beispielhaft.", + "example_sentence_english": "His behavior was exemplary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10737 + }, + { + "word": "bestehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing;current", + "romanization": "bestehend", + "example_sentence_native": "Wir müssen die bestehenden Probleme lösen.", + "example_sentence_english": "We must solve the existing problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10738 + }, + { + "word": "Bewältigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coping;mastery", + "romanization": "Bewältigung", + "example_sentence_native": "Die Bewältigung dieser Aufgabe erfordert viel Geduld.", + "example_sentence_english": "The mastering of this task requires a lot of patience.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10740 + }, + { + "word": "Defizit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deficit", + "romanization": "Defizit", + "example_sentence_native": "Das Unternehmen hat ein großes Defizit.", + "example_sentence_english": "The company has a large deficit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10754 + }, + { + "word": "diagnostizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diagnose", + "romanization": "diagnostizieren", + "example_sentence_native": "Der Arzt konnte die Krankheit schnell diagnostizieren.", + "example_sentence_english": "The doctor could quickly diagnose the illness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10757 + }, + { + "word": "Dämmerung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twilight;dusk", + "romanization": "Dämmerung", + "example_sentence_native": "In der Dämmerung werden die Schatten länger.", + "example_sentence_english": "In the twilight, the shadows grow longer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10758 + }, + { + "word": "empirisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empirical", + "romanization": "empirisch", + "example_sentence_native": "Die Studie basiert auf empirischen Daten.", + "example_sentence_english": "The study is based on empirical data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10761 + }, + { + "word": "Endstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final score", + "romanization": "Endstand", + "example_sentence_native": "Der Endstand des Spiels war 3:1.", + "example_sentence_english": "The final score of the game was 3:1.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10762 + }, + { + "word": "Entzündung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammation", + "romanization": "Entzündung", + "example_sentence_native": "Er hat eine Entzündung im Knie.", + "example_sentence_english": "He has an inflammation in his knee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10763 + }, + { + "word": "Erdöl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petroleum", + "romanization": "Erdöl", + "example_sentence_native": "Der Preis für Erdöl ist gestiegen.", + "example_sentence_english": "The price of petroleum has risen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10764 + }, + { + "word": "ereignen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen", + "romanization": "ereignen", + "example_sentence_native": "Das Unglück ereignete sich gestern Abend.", + "example_sentence_english": "The accident happened last night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10765 + }, + { + "word": "Errungenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "achievement", + "romanization": "Errungenschaft", + "example_sentence_native": "Die Erfindung des Internets ist eine große Errungenschaft.", + "example_sentence_english": "The invention of the internet is a great achievement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10766 + }, + { + "word": "Expertin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expert (female)", + "romanization": "Expertin", + "example_sentence_native": "Sie ist eine Expertin auf diesem Gebiet.", + "example_sentence_english": "She is an expert in this field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10770 + }, + { + "word": "Facette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "facet", + "romanization": "Facette", + "example_sentence_native": "Das Problem hat viele Facetten.", + "example_sentence_english": "The problem has many facets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10771 + }, + { + "word": "Fachgebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "field of expertise", + "romanization": "Fachgebiet", + "example_sentence_native": "Sein Fachgebiet ist die Biologie.", + "example_sentence_english": "His field of expertise is biology.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10772 + }, + { + "word": "Fiktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiction", + "romanization": "Fiktion", + "example_sentence_native": "Das ist reine Fiktion.", + "example_sentence_english": "That is pure fiction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10773 + }, + { + "word": "fliegend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flying", + "romanization": "fliegend", + "example_sentence_native": "Wir sahen einen fliegenden Vogel.", + "example_sentence_english": "We saw a flying bird.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10774 + }, + { + "word": "Flöte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flute", + "romanization": "Flöte", + "example_sentence_native": "Sie spielt die Flöte.", + "example_sentence_english": "She plays the flute.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10775 + }, + { + "word": "Flüchtlingskrise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refugee crisis", + "romanization": "Flüchtlingskrise", + "example_sentence_native": "Die Flüchtlingskrise war ein großes Thema.", + "example_sentence_english": "The refugee crisis was a big topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10776 + }, + { + "word": "fragwürdig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questionable", + "romanization": "fragwürdig", + "example_sentence_native": "Seine Methoden sind fragwürdig.", + "example_sentence_english": "His methods are questionable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10777 + }, + { + "word": "freisprechen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to acquit", + "romanization": "freisprechen", + "example_sentence_native": "Der Richter wird ihn freisprechen.", + "example_sentence_english": "The judge will acquit him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "frei", + "base_verb": "sprechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10779 + }, + { + "word": "Füllung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filling", + "romanization": "Füllung", + "example_sentence_native": "Die Füllung des Kissens ist sehr weich.", + "example_sentence_english": "The filling of the pillow is very soft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10780 + }, + { + "word": "krönen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crown", + "romanization": "krönen", + "example_sentence_native": "Sie werden den neuen König krönen.", + "example_sentence_english": "They will crown the new king.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10782 + }, + { + "word": "Gemahlin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consort", + "romanization": "Gemahlin", + "example_sentence_native": "Die Gemahlin des Königs war sehr elegant.", + "example_sentence_english": "The king's consort was very elegant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10784 + }, + { + "word": "Geselle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journeyman", + "romanization": "Geselle", + "example_sentence_native": "Der junge Geselle lernte schnell das Handwerk.", + "example_sentence_english": "The young journeyman quickly learned the trade.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10785 + }, + { + "word": "Gesichtsausdruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facial expression", + "romanization": "Gesichtsausdruck", + "example_sentence_native": "Sein Gesichtsausdruck verriet seine Überraschung.", + "example_sentence_english": "His facial expression revealed his surprise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10786 + }, + { + "word": "Glied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limb", + "romanization": "Glied", + "example_sentence_native": "Jedes Glied der Kette ist wichtig.", + "example_sentence_english": "Every link in the chain is important.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10788 + }, + { + "word": "Hauptdarsteller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main actor", + "romanization": "Hauptdarsteller", + "example_sentence_native": "Der Hauptdarsteller spielte seine Rolle hervorragend.", + "example_sentence_english": "The main actor played his role excellently.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10790 + }, + { + "word": "Höschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panties", + "romanization": "Höschen", + "example_sentence_native": "Das Baby trug ein kleines Höschen.", + "example_sentence_english": "The baby wore small briefs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10795 + }, + { + "word": "hüten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guard", + "romanization": "hüten", + "example_sentence_native": "Sie muss die Kinder hüten.", + "example_sentence_english": "She has to look after the children.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10796 + }, + { + "word": "Indikator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicator", + "romanization": "Indikator", + "example_sentence_native": "Der Preis ist ein wichtiger Indikator für die Nachfrage.", + "example_sentence_english": "The price is an important indicator of demand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10797 + }, + { + "word": "Informatiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computer scientist", + "romanization": "Informatiker", + "example_sentence_native": "Mein Bruder ist Informatiker von Beruf.", + "example_sentence_english": "My brother is a computer scientist by profession.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10798 + }, + { + "word": "Inhaltsverzeichnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "table of contents", + "romanization": "Inhaltsverzeichnis", + "example_sentence_native": "Das Inhaltsverzeichnis befindet sich am Anfang des Buches.", + "example_sentence_english": "The table of contents is at the beginning of the book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10799 + }, + { + "word": "Inkrafttreten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entry into force", + "romanization": "Inkrafttreten", + "example_sentence_native": "Das Inkrafttreten des neuen Gesetzes wurde verschoben.", + "example_sentence_english": "The entry into force of the new law was postponed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10800 + }, + { + "word": "Inspektion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspection", + "romanization": "Inspektion", + "example_sentence_native": "Die jährliche Inspektion des Autos ist wichtig.", + "example_sentence_english": "The annual inspection of the car is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10801 + }, + { + "word": "kapitalistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalistic", + "romanization": "kapitalistisch", + "example_sentence_native": "Er kritisierte das kapitalistische System.", + "example_sentence_english": "He criticized the capitalistic system.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10804 + }, + { + "word": "Keil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedge", + "romanization": "Keil", + "example_sentence_native": "Er benutzte einen Keil, um das Holz zu spalten.", + "example_sentence_english": "He used a wedge to split the wood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10807 + }, + { + "word": "Klassenzimmer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "classroom", + "romanization": "Klassenzimmer", + "example_sentence_native": "Das Klassenzimmer ist groß und hell.", + "example_sentence_english": "The classroom is big and bright.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10811 + }, + { + "word": "Klausel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clause", + "romanization": "Klausel", + "example_sentence_native": "Die Vertragsklausel ist sehr wichtig.", + "example_sentence_english": "The contract clause is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10812 + }, + { + "word": "kontrovers", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversial", + "romanization": "kontrovers", + "example_sentence_native": "Das Thema ist sehr kontrovers.", + "example_sentence_english": "The topic is very controversial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10813 + }, + { + "word": "Kristall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crystal", + "romanization": "Kristall", + "example_sentence_native": "Der Kristall glänzte im Licht.", + "example_sentence_english": "The crystal sparkled in the light.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10814 + }, + { + "word": "Kundenservice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customer service", + "romanization": "Kundenservice", + "example_sentence_native": "Der Kundenservice war sehr hilfreich.", + "example_sentence_english": "The customer service was very helpful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10815 + }, + { + "word": "lau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lukewarm;tepid", + "romanization": "lau", + "example_sentence_native": "Das Wasser ist nur lau.", + "example_sentence_english": "The water is only lukewarm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10816 + }, + { + "word": "lautstark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loud;vociferous", + "romanization": "lautstark", + "example_sentence_native": "Die Fans jubelten lautstark.", + "example_sentence_english": "The fans cheered loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10817 + }, + { + "word": "Lebenswerk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "life's work;oeuvre", + "romanization": "Lebenswerk", + "example_sentence_native": "Sein Lebenswerk war die Erforschung der Sterne.", + "example_sentence_english": "His life's work was the exploration of the stars.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10818 + }, + { + "word": "Legitimation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimation;authorization", + "romanization": "Legitimation", + "example_sentence_native": "Er brauchte eine Legitimation, um das Gebäude zu betreten.", + "example_sentence_english": "He needed authorization to enter the building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10819 + }, + { + "word": "Lehramt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaching degree", + "romanization": "Lehramt", + "example_sentence_native": "Sie studiert Lehramt, um Lehrerin zu werden.", + "example_sentence_english": "She is studying for a teaching degree to become a teacher.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10820 + }, + { + "word": "Liveticker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "live ticker", + "romanization": "Liveticker", + "example_sentence_native": "Ich verfolge das Spiel im Liveticker.", + "example_sentence_english": "I am following the game on the live ticker.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10821 + }, + { + "word": "materiell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material", + "romanization": "materiell", + "example_sentence_native": "Materielle Güter sind nicht alles im Leben.", + "example_sentence_english": "Material goods are not everything in life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10823 + }, + { + "word": "merklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noticeable", + "romanization": "merklich", + "example_sentence_native": "Es gab eine merkliche Verbesserung.", + "example_sentence_english": "There was a noticeable improvement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10826 + }, + { + "word": "misstrauisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspicious", + "romanization": "misstrauisch", + "example_sentence_native": "Er war misstrauisch gegenüber Fremden.", + "example_sentence_english": "He was suspicious of strangers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10827 + }, + { + "word": "Märtyrer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "martyr", + "romanization": "Märtyrer", + "example_sentence_native": "Er wurde als Märtyrer verehrt.", + "example_sentence_english": "He was revered as a martyr.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10831 + }, + { + "word": "Mülleimer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trash can", + "romanization": "Mülleimer", + "example_sentence_native": "Wirf den Abfall in den Mülleimer.", + "example_sentence_english": "Throw the waste in the trash can.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10832 + }, + { + "word": "nennenswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noteworthy", + "romanization": "nennenswert", + "example_sentence_native": "Es gab keine nennenswerten Änderungen.", + "example_sentence_english": "There were no noteworthy changes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10833 + }, + { + "word": "Notaufnahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency room", + "romanization": "Notaufnahme", + "example_sentence_native": "Er musste in die Notaufnahme gebracht werden.", + "example_sentence_english": "He had to be taken to the emergency room.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10835 + }, + { + "word": "Obhut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "custody", + "romanization": "Obhut", + "example_sentence_native": "Das Kind wurde in die Obhut der Großeltern gegeben.", + "example_sentence_english": "The child was placed in the care of the grandparents.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10837 + }, + { + "word": "paradox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paradoxical", + "romanization": "paradox", + "example_sentence_native": "Das ist eine paradoxe Situation.", + "example_sentence_english": "That is a paradoxical situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10841 + }, + { + "word": "Pendler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commuter", + "romanization": "Pendler", + "example_sentence_native": "Viele Pendler nutzen öffentliche Verkehrsmittel.", + "example_sentence_english": "Many commuters use public transport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10842 + }, + { + "word": "pfeifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to whistle", + "romanization": "pfeifen", + "example_sentence_native": "Er kann sehr laut pfeifen.", + "example_sentence_english": "He can whistle very loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10844 + }, + { + "word": "Pilger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrim", + "romanization": "Pilger", + "example_sentence_native": "Die Pilger machten sich auf den Weg zur heiligen Stätte.", + "example_sentence_english": "The pilgrims set off for the holy site.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10846 + }, + { + "word": "Pinsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brush", + "romanization": "Pinsel", + "example_sentence_native": "Sie malte mit einem feinen Pinsel.", + "example_sentence_english": "She painted with a fine brush.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10847 + }, + { + "word": "planmässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to plan", + "romanization": "planmässig", + "example_sentence_native": "Alles verlief planmässig.", + "example_sentence_english": "Everything went according to plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10848 + }, + { + "word": "pressen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to press", + "romanization": "pressen", + "example_sentence_native": "Er musste sich durch die Menge pressen.", + "example_sentence_english": "He had to squeeze through the crowd.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10849 + }, + { + "word": "Prozessor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processor", + "romanization": "Prozessor", + "example_sentence_native": "Der neue Computer hat einen schnellen Prozessor.", + "example_sentence_english": "The new computer has a fast processor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10850 + }, + { + "word": "Prüfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "examiner", + "romanization": "Prüfer", + "example_sentence_native": "Der Prüfer stellte viele Fragen.", + "example_sentence_english": "The examiner asked many questions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10851 + }, + { + "word": "Radiosender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radio station", + "romanization": "Radiosender", + "example_sentence_native": "Mein Lieblingsradiosender spielt gute Musik.", + "example_sentence_english": "My favorite radio station plays good music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10852 + }, + { + "word": "resultieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to result", + "romanization": "resultieren", + "example_sentence_native": "Die Probleme resultieren aus mangelnder Planung.", + "example_sentence_english": "The problems result from lack of planning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10854 + }, + { + "word": "Rückhalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "support", + "romanization": "Rückhalt", + "example_sentence_native": "Er genoss den vollen Rückhalt seiner Familie.", + "example_sentence_english": "He enjoyed the full support of his family.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10856 + }, + { + "word": "Rückmeldung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feedback", + "romanization": "Rückmeldung", + "example_sentence_native": "Wir warten auf Ihre Rückmeldung.", + "example_sentence_english": "We are waiting for your feedback.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10857 + }, + { + "word": "Schleuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lock (canal;river)", + "romanization": "Schleuse", + "example_sentence_native": "Das Schiff fuhr durch die Schleuse.", + "example_sentence_english": "The ship passed through the lock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10861 + }, + { + "word": "Schnecke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snail", + "romanization": "Schnecke", + "example_sentence_native": "Eine Schnecke kroch langsam über den Weg.", + "example_sentence_english": "A snail crawled slowly across the path.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10862 + }, + { + "word": "schwanken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sway;to fluctuate", + "romanization": "schwanken", + "example_sentence_native": "Der Baum schwankte im Wind.", + "example_sentence_english": "The tree swayed in the wind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10863 + }, + { + "word": "Selbstverständnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-conception;self-image", + "romanization": "Selbstverständnis", + "example_sentence_native": "Sein Selbstverständnis als Künstler ist sehr stark.", + "example_sentence_english": "His self-conception as an artist is very strong.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10864 + }, + { + "word": "Skript", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "script", + "romanization": "Skript", + "example_sentence_native": "Ich habe das Skript für das Theaterstück gelesen.", + "example_sentence_english": "I read the script for the play.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10867 + }, + { + "word": "Sozialhilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social welfare;social assistance", + "romanization": "Sozialhilfe", + "example_sentence_native": "Viele Menschen sind auf Sozialhilfe angewiesen.", + "example_sentence_english": "Many people depend on social welfare.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10868 + }, + { + "word": "Sozialleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social benefit", + "romanization": "Sozialleistung", + "example_sentence_native": "Arbeitslosengeld ist eine Sozialleistung.", + "example_sentence_english": "Unemployment benefit is a social benefit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10869 + }, + { + "word": "Sozialpolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social policy", + "romanization": "Sozialpolitik", + "example_sentence_native": "Die Sozialpolitik der Regierung wird diskutiert.", + "example_sentence_english": "The government's social policy is being discussed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10870 + }, + { + "word": "sparsam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economical;thrifty", + "romanization": "sparsam", + "example_sentence_native": "Sie lebt sehr sparsam.", + "example_sentence_english": "She lives very thriftily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10871 + }, + { + "word": "Spektakel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spectacle;show", + "romanization": "Spektakel", + "example_sentence_native": "Das Feuerwerk war ein echtes Spektakel.", + "example_sentence_english": "The fireworks were a real spectacle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10872 + }, + { + "word": "Stadtbibliothek", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city library;public library", + "romanization": "Stadtbibliothek", + "example_sentence_native": "Ich leihe Bücher in der Stadtbibliothek aus.", + "example_sentence_english": "I borrow books from the city library.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10873 + }, + { + "word": "Steuerberater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax consultant", + "romanization": "Steuerberater", + "example_sentence_native": "Mein Steuerberater hilft mir bei der Steuererklärung.", + "example_sentence_english": "My tax consultant helps me with my tax declaration.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10874 + }, + { + "word": "Stiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stem;handle", + "romanization": "Stiel", + "example_sentence_native": "Der Stiel des Glases ist zerbrochen.", + "example_sentence_english": "The stem of the glass is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10875 + }, + { + "word": "Theke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "counter;bar", + "romanization": "Theke", + "example_sentence_native": "Ich bestellte einen Kaffee an der Theke.", + "example_sentence_english": "I ordered a coffee at the counter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10877 + }, + { + "word": "trauern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mourn;to grieve", + "romanization": "trauern", + "example_sentence_native": "Sie trauert um ihren verstorbenen Hund.", + "example_sentence_english": "She is mourning her deceased dog.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10879 + }, + { + "word": "trösten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comfort;to console", + "romanization": "trösten", + "example_sentence_native": "Sie versuchte, ihn zu trösten.", + "example_sentence_english": "She tried to comfort him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10880 + }, + { + "word": "unbegründet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfounded;baseless", + "romanization": "unbegründet", + "example_sentence_native": "Seine Angst war unbegründet.", + "example_sentence_english": "His fear was unfounded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10882 + }, + { + "word": "ungeduldig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impatient", + "romanization": "ungeduldig", + "example_sentence_native": "Sie wartete ungeduldig auf die Ergebnisse.", + "example_sentence_english": "She waited impatiently for the results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10883 + }, + { + "word": "unruhig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restless;uneasy", + "romanization": "unruhig", + "example_sentence_native": "Er war die ganze Nacht unruhig.", + "example_sentence_english": "He was restless all night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10884 + }, + { + "word": "unterlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be inferior;to lose", + "romanization": "unterlegen", + "example_sentence_native": "Das Team musste sich dem Gegner unterlegen.", + "example_sentence_english": "The team had to concede defeat to the opponent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10885 + }, + { + "word": "Versager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loser;failure (person)", + "romanization": "Versager", + "example_sentence_native": "Er fühlte sich wie ein Versager.", + "example_sentence_english": "He felt like a loser.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10887 + }, + { + "word": "verschlafen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to oversleep", + "romanization": "verschlafen", + "example_sentence_native": "Ich habe heute Morgen verschlafen.", + "example_sentence_english": "I overslept this morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10888 + }, + { + "word": "verschlüsseln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to encrypt;to encode", + "romanization": "verschlüsseln", + "example_sentence_native": "Die Daten müssen verschlüsselt werden.", + "example_sentence_english": "The data must be encrypted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10889 + }, + { + "word": "Verständigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understanding;communication;agreement", + "romanization": "Verständigung", + "example_sentence_native": "Eine gute Verständigung ist wichtig.", + "example_sentence_english": "Good communication is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10890 + }, + { + "word": "vertiefen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deepen;to intensify", + "romanization": "vertiefen", + "example_sentence_native": "Er wollte seine Kenntnisse vertiefen.", + "example_sentence_english": "He wanted to deepen his knowledge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10891 + }, + { + "word": "Volksabstimmung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referendum;plebiscite", + "romanization": "Volksabstimmung", + "example_sentence_native": "Es gab eine Volksabstimmung über das neue Gesetz.", + "example_sentence_english": "There was a referendum on the new law.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10893 + }, + { + "word": "vorbeischauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drop by;to stop by", + "romanization": "vorbeischauen", + "example_sentence_native": "Kannst du später vorbeischauen?", + "example_sentence_english": "Can you drop by later?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vorbei", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10894 + }, + { + "word": "Vorschein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance;emergence", + "romanization": "Vorschein", + "example_sentence_native": "Die Wahrheit kam endlich zum Vorschein.", + "example_sentence_english": "The truth finally came to light.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10895 + }, + { + "word": "wiedergeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reproduce;to render;to give back", + "romanization": "wiedergeben", + "example_sentence_native": "Er konnte den Text genau wiedergeben.", + "example_sentence_english": "He could reproduce the text exactly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wieder", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10899 + }, + { + "word": "wiederwählen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-elect", + "romanization": "wiederwählen", + "example_sentence_native": "Die Partei will den Präsidenten wiederwählen.", + "example_sentence_english": "The party wants to re-elect the president.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wieder", + "base_verb": "wählen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10900 + }, + { + "word": "Zeitgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contemporary history", + "romanization": "Zeitgeschichte", + "example_sentence_native": "Er ist Experte für Zeitgeschichte.", + "example_sentence_english": "He is an expert in contemporary history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10903 + }, + { + "word": "zuführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply;feed", + "romanization": "zuführen", + "example_sentence_native": "Das Rohr führt Wasser zum Tank zu.", + "example_sentence_english": "The pipe supplies water to the tank.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10904 + }, + { + "word": "zugehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "close;happen", + "romanization": "zugehen", + "example_sentence_native": "Die Tür geht langsam zu.", + "example_sentence_english": "The door is slowly closing.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10905 + }, + { + "word": "zurücklegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "put back;cover (distance)", + "romanization": "zurücklegen", + "example_sentence_native": "Er musste eine lange Strecke zurücklegen.", + "example_sentence_english": "He had to cover a long distance.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10906 + }, + { + "word": "übergehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pass over;change to", + "romanization": "übergehen", + "example_sentence_native": "Er wollte das Thema übergehen.", + "example_sentence_english": "He wanted to pass over the topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10907 + }, + { + "word": "absehbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreseeable", + "romanization": "absehbar", + "example_sentence_native": "Eine Lösung ist nicht absehbar.", + "example_sentence_english": "A solution is not foreseeable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10908 + }, + { + "word": "abstrakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstract", + "romanization": "abstrakt", + "example_sentence_native": "Das Konzept ist sehr abstrakt.", + "example_sentence_english": "The concept is very abstract.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10909 + }, + { + "word": "anspruchsvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanding;sophisticated", + "romanization": "anspruchsvoll", + "example_sentence_native": "Das ist eine sehr anspruchsvolle Aufgabe.", + "example_sentence_english": "This is a very demanding task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10912 + }, + { + "word": "auftretend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearing;occurring", + "romanization": "auftretend", + "example_sentence_native": "Die auftretenden Probleme müssen gelöst werden.", + "example_sentence_english": "The occurring problems must be solved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10915 + }, + { + "word": "ausleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "live out;fully experience", + "romanization": "ausleben", + "example_sentence_native": "Er konnte seine Kreativität voll ausleben.", + "example_sentence_english": "He could fully live out his creativity.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "leben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10916 + }, + { + "word": "Aussenwelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outside world", + "romanization": "Aussenwelt", + "example_sentence_native": "Er zog sich von der Aussenwelt zurück.", + "example_sentence_english": "He withdrew from the outside world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10917 + }, + { + "word": "Auswärtsspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "away game", + "romanization": "Auswärtsspiel", + "example_sentence_native": "Das Team hat ein wichtiges Auswärtsspiel.", + "example_sentence_english": "The team has an important away game.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10918 + }, + { + "word": "Automatisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automation", + "romanization": "Automatisierung", + "example_sentence_native": "Die Automatisierung der Produktion ist wichtig.", + "example_sentence_english": "The automation of production is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10919 + }, + { + "word": "badisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Baden (adj.)", + "romanization": "badisch", + "example_sentence_native": "Die badische Küche ist bekannt für ihre Spätzle.", + "example_sentence_english": "The Baden cuisine is known for its Spätzle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10920 + }, + { + "word": "Ballon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balloon", + "romanization": "Ballon", + "example_sentence_native": "Der Ballon schwebte hoch in den Himmel.", + "example_sentence_english": "The balloon floated high into the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10921 + }, + { + "word": "befürworten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advocate;to support", + "romanization": "befürworten", + "example_sentence_native": "Ich befürworte diesen Vorschlag.", + "example_sentence_english": "I support this proposal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10922 + }, + { + "word": "beitreten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to join;to accede", + "romanization": "beitreten", + "example_sentence_native": "Er möchte dem Verein beitreten.", + "example_sentence_english": "He wants to join the club.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10923 + }, + { + "word": "benachteiligen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disadvantage;to discriminate against", + "romanization": "benachteiligen", + "example_sentence_native": "Niemand sollte wegen seiner Herkunft benachteiligt werden.", + "example_sentence_english": "Nobody should be disadvantaged because of their origin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10925 + }, + { + "word": "Bernstein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amber", + "romanization": "Bernstein", + "example_sentence_native": "Der Schmuck war aus echtem Bernstein gefertigt.", + "example_sentence_english": "The jewelry was made of real amber.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10926 + }, + { + "word": "Bettler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beggar", + "romanization": "Bettler", + "example_sentence_native": "Ein Bettler saß am Straßenrand.", + "example_sentence_english": "A beggar sat by the roadside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10927 + }, + { + "word": "biblisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biblical", + "romanization": "biblisch", + "example_sentence_native": "Das ist eine biblische Geschichte.", + "example_sentence_english": "That is a biblical story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10928 + }, + { + "word": "Bluse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blouse", + "romanization": "Bluse", + "example_sentence_native": "Sie trug eine elegante blaue Bluse.", + "example_sentence_english": "She wore an elegant blue blouse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10929 + }, + { + "word": "Bratwurst", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fried sausage;bratwurst", + "romanization": "Bratwurst", + "example_sentence_native": "Ich esse gerne eine Bratwurst mit Senf.", + "example_sentence_english": "I like to eat a bratwurst with mustard.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10930 + }, + { + "word": "Discounter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discount store", + "romanization": "Discounter", + "example_sentence_native": "Ich kaufe meine Lebensmittel oft beim Discounter.", + "example_sentence_english": "I often buy my groceries at the discount store.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10937 + }, + { + "word": "diskret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discreet", + "romanization": "diskret", + "example_sentence_native": "Bitte seien Sie diskret mit diesen Informationen.", + "example_sentence_english": "Please be discreet with this information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10938 + }, + { + "word": "Diözese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocese", + "romanization": "Diözese", + "example_sentence_native": "Die Diözese umfasst mehrere Pfarreien.", + "example_sentence_english": "The diocese comprises several parishes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10939 + }, + { + "word": "Edelstahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stainless steel", + "romanization": "Edelstahl", + "example_sentence_native": "Die Spüle ist aus Edelstahl gefertigt.", + "example_sentence_english": "The sink is made of stainless steel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10940 + }, + { + "word": "eilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hurry", + "romanization": "eilen", + "example_sentence_native": "Wir müssen eilen, um den Zug noch zu erreichen.", + "example_sentence_english": "We have to hurry to catch the train.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10941 + }, + { + "word": "Einwohnerzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "population figure", + "romanization": "Einwohnerzahl", + "example_sentence_native": "Die Einwohnerzahl der Stadt ist in den letzten Jahren gestiegen.", + "example_sentence_english": "The population figure of the city has increased in recent years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10942 + }, + { + "word": "Einzelperson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "individual person", + "romanization": "Einzelperson", + "example_sentence_native": "Jede Einzelperson hat das Recht auf freie Meinungsäußerung.", + "example_sentence_english": "Every individual person has the right to freedom of speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10943 + }, + { + "word": "Elektrizität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electricity", + "romanization": "Elektrizität", + "example_sentence_native": "Ohne Elektrizität funktioniert hier nichts.", + "example_sentence_english": "Nothing works here without electricity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10944 + }, + { + "word": "Endrunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final round", + "romanization": "Endrunde", + "example_sentence_native": "Die Mannschaft hat die Endrunde erreicht.", + "example_sentence_english": "The team has reached the final round.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10946 + }, + { + "word": "Energieversorgung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy supply", + "romanization": "Energieversorgung", + "example_sentence_native": "Die Energieversorgung ist ein wichtiges Thema für die Zukunft.", + "example_sentence_english": "Energy supply is an important topic for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10947 + }, + { + "word": "Erkennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognition", + "romanization": "Erkennung", + "example_sentence_native": "Die Gesichtserkennung wird immer besser.", + "example_sentence_english": "Facial recognition is getting better and better.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10949 + }, + { + "word": "ethnisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethnic", + "romanization": "ethnisch", + "example_sentence_native": "Es gibt viele ethnische Gruppen in dieser Region.", + "example_sentence_english": "There are many ethnic groups in this region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10951 + }, + { + "word": "Europameisterschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "European Championship", + "romanization": "Europameisterschaft", + "example_sentence_native": "Die Europameisterschaft im Fußball findet alle vier Jahre statt.", + "example_sentence_english": "The European Football Championship takes place every four years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10952 + }, + { + "word": "Fachwissen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specialized knowledge", + "romanization": "Fachwissen", + "example_sentence_native": "Für diese Aufgabe ist spezielles Fachwissen erforderlich.", + "example_sentence_english": "Specialized knowledge is required for this task.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10953 + }, + { + "word": "Forstwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forestry", + "romanization": "Forstwirtschaft", + "example_sentence_native": "Die Forstwirtschaft spielt eine wichtige Rolle in der ländlichen Entwicklung.", + "example_sentence_english": "Forestry plays an important role in rural development.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10957 + }, + { + "word": "fortgeschritten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advanced", + "romanization": "fortgeschritten", + "example_sentence_native": "Sie besucht einen Kurs für fortgeschrittene Lerner.", + "example_sentence_english": "She attends a course for advanced learners.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10958 + }, + { + "word": "Freihandelsabkommen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "free trade agreement", + "romanization": "Freihandelsabkommen", + "example_sentence_native": "Das neue Freihandelsabkommen soll den Handel ankurbeln.", + "example_sentence_english": "The new free trade agreement is intended to boost trade.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10959 + }, + { + "word": "Förderer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patron;sponsor", + "romanization": "Förderer", + "example_sentence_native": "Er ist ein großer Förderer der Künste.", + "example_sentence_english": "He is a great patron of the arts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10960 + }, + { + "word": "fürchterlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrible;dreadful", + "romanization": "fürchterlich", + "example_sentence_native": "Das Wetter war fürchterlich.", + "example_sentence_english": "The weather was terrible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10961 + }, + { + "word": "Garderobe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloakroom;wardrobe", + "romanization": "Garderobe", + "example_sentence_native": "Bitte hängen Sie Ihren Mantel in der Garderobe auf.", + "example_sentence_english": "Please hang your coat in the cloakroom.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10963 + }, + { + "word": "fälschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to falsify;to forge", + "romanization": "fälschen", + "example_sentence_native": "Er versuchte, seine Unterschrift zu fälschen.", + "example_sentence_english": "He tried to forge his signature.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10964 + }, + { + "word": "gleichgültig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indifferent;apathetic", + "romanization": "gleichgültig", + "example_sentence_native": "Sie blieb gleichgültig gegenüber seinen Entschuldigungen.", + "example_sentence_english": "She remained indifferent to his apologies.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10965 + }, + { + "word": "Hierarchie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hierarchy", + "romanization": "Hierarchie", + "example_sentence_native": "Es gibt eine klare Hierarchie in diesem Unternehmen.", + "example_sentence_english": "There is a clear hierarchy in this company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10971 + }, + { + "word": "Hinspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first leg (of a two-leg match)", + "romanization": "Hinspiel", + "example_sentence_native": "Das Hinspiel endete unentschieden.", + "example_sentence_english": "The first leg ended in a draw.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10973 + }, + { + "word": "Höflichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politeness;courtesy", + "romanization": "Höflichkeit", + "example_sentence_native": "Höflichkeit ist sehr wichtig im Umgang mit anderen.", + "example_sentence_english": "Politeness is very important when dealing with others.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10976 + }, + { + "word": "importieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to import", + "romanization": "importieren", + "example_sentence_native": "Deutschland importiert viel Öl.", + "example_sentence_english": "Germany imports a lot of oil.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 10977 + }, + { + "word": "Individualität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individuality", + "romanization": "Individualität", + "example_sentence_native": "Jeder Mensch hat seine eigene Individualität.", + "example_sentence_english": "Every person has their own individuality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10978 + }, + { + "word": "Kameramann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cameraman", + "romanization": "Kameramann", + "example_sentence_native": "Der Kameramann filmte die Szene.", + "example_sentence_english": "The cameraman filmed the scene.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10981 + }, + { + "word": "Kappe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cap", + "romanization": "Kappe", + "example_sentence_native": "Sie trug eine rote Kappe.", + "example_sentence_english": "She wore a red cap.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10982 + }, + { + "word": "Knecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farmhand", + "romanization": "Knecht", + "example_sentence_native": "Der Knecht arbeitete hart auf dem Feld.", + "example_sentence_english": "The farmhand worked hard in the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10985 + }, + { + "word": "Komet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comet", + "romanization": "Komet", + "example_sentence_native": "Wir sahen einen hellen Kometen am Nachthimmel.", + "example_sentence_english": "We saw a bright comet in the night sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10986 + }, + { + "word": "Kommentator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commentator", + "romanization": "Kommentator", + "example_sentence_native": "Der Kommentator analysierte das Spiel.", + "example_sentence_english": "The commentator analyzed the game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10987 + }, + { + "word": "Konjunktur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic situation", + "romanization": "Konjunktur", + "example_sentence_native": "Die Konjunktur erholt sich langsam.", + "example_sentence_english": "The economic situation is slowly recovering.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10988 + }, + { + "word": "Konsistenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistency", + "romanization": "Konsistenz", + "example_sentence_native": "Die Suppe hatte eine gute Konsistenz.", + "example_sentence_english": "The soup had a good consistency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10989 + }, + { + "word": "Krach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noise", + "romanization": "Krach", + "example_sentence_native": "Es gab viel Krach im Nebenzimmer.", + "example_sentence_english": "There was a lot of noise in the next room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10990 + }, + { + "word": "Kranz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wreath", + "romanization": "Kranz", + "example_sentence_native": "Sie legten einen Kranz am Denkmal nieder.", + "example_sentence_english": "They laid a wreath at the monument.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10991 + }, + { + "word": "Lenker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handlebars", + "romanization": "Lenker", + "example_sentence_native": "Der Lenker des Fahrrads war verbogen.", + "example_sentence_english": "The bicycle's handlebars were bent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 10992 + }, + { + "word": "linear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linear", + "romanization": "linear", + "example_sentence_native": "Die Beziehung ist linear.", + "example_sentence_english": "The relationship is linear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10994 + }, + { + "word": "lästig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoying", + "romanization": "lästig", + "example_sentence_native": "Die Fliegen waren sehr lästig.", + "example_sentence_english": "The flies were very annoying.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10997 + }, + { + "word": "machtlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerless", + "romanization": "machtlos", + "example_sentence_native": "Er fühlte sich machtlos gegen das System.", + "example_sentence_english": "He felt powerless against the system.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 10998 + }, + { + "word": "massenhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massive;in large quantities", + "romanization": "massenhaft", + "example_sentence_native": "Es gab massenhaft Schnee.", + "example_sentence_english": "There was a massive amount of snow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11001 + }, + { + "word": "mexikanisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Mexican", + "romanization": "mexikanisch", + "example_sentence_native": "Sie isst gerne mexikanisches Essen.", + "example_sentence_english": "She likes to eat Mexican food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11003 + }, + { + "word": "Mineral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mineral", + "romanization": "Mineral", + "example_sentence_native": "Wasser enthält wichtige Mineralien.", + "example_sentence_english": "Water contains important minerals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11006 + }, + { + "word": "Musikschule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "music school", + "romanization": "Musikschule", + "example_sentence_native": "Meine Tochter geht in die Musikschule.", + "example_sentence_english": "My daughter goes to music school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11007 + }, + { + "word": "naturwissenschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scientific (natural sciences)", + "romanization": "naturwissenschaftlich", + "example_sentence_native": "Er studiert naturwissenschaftliche Fächer.", + "example_sentence_english": "He studies natural science subjects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11008 + }, + { + "word": "Nennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mention;naming", + "romanization": "Nennung", + "example_sentence_native": "Die Nennung seines Namens war überraschend.", + "example_sentence_english": "The mention of his name was surprising.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11009 + }, + { + "word": "norwegisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Norwegian", + "romanization": "norwegisch", + "example_sentence_native": "Sie spricht fließend Norwegisch.", + "example_sentence_english": "She speaks fluent Norwegian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11010 + }, + { + "word": "obig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "above;aforementioned", + "romanization": "obig", + "example_sentence_native": "Bitte beachten Sie die obigen Anweisungen.", + "example_sentence_english": "Please note the above instructions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11012 + }, + { + "word": "oral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oral", + "romanization": "oral", + "example_sentence_native": "Die orale Einnahme des Medikaments ist wichtig.", + "example_sentence_english": "The oral intake of the medication is important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11014 + }, + { + "word": "Ostküste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "East Coast", + "romanization": "Ostküste", + "example_sentence_native": "Er lebt an der Ostküste der USA.", + "example_sentence_english": "He lives on the East Coast of the USA.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11015 + }, + { + "word": "pissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to piss;to urinate (informal)", + "romanization": "pissen", + "example_sentence_native": "Der Hund muss pissen gehen.", + "example_sentence_english": "The dog needs to go piss.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11018 + }, + { + "word": "Polizistin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "policewoman", + "romanization": "Polizistin", + "example_sentence_native": "Die Polizistin half dem Kind.", + "example_sentence_english": "The policewoman helped the child.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11019 + }, + { + "word": "Prädikat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predicate", + "romanization": "Prädikat", + "example_sentence_native": "Das Prädikat ist ein wichtiger Teil des Satzes.", + "example_sentence_english": "The predicate is an important part of the sentence.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11021 + }, + { + "word": "quatschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chat", + "romanization": "quatschen", + "example_sentence_native": "Wir haben den ganzen Abend gequatscht.", + "example_sentence_english": "We chatted all evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11022 + }, + { + "word": "rational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rational", + "romanization": "rational", + "example_sentence_native": "Er traf eine rationale Entscheidung.", + "example_sentence_english": "He made a rational decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11023 + }, + { + "word": "rauben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rob", + "romanization": "rauben", + "example_sentence_native": "Die Diebe haben die Bank geraubt.", + "example_sentence_english": "The thieves robbed the bank.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11024 + }, + { + "word": "Rechtsstreit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal dispute", + "romanization": "Rechtsstreit", + "example_sentence_native": "Der Rechtsstreit dauerte mehrere Jahre.", + "example_sentence_english": "The legal dispute lasted several years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11025 + }, + { + "word": "Regelfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "normal case", + "romanization": "Regelfall", + "example_sentence_native": "Im Regelfall ist das so.", + "example_sentence_english": "In the normal case, it is like that.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11026 + }, + { + "word": "Rehabilitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rehabilitation", + "romanization": "Rehabilitation", + "example_sentence_native": "Nach dem Unfall begann ihre Rehabilitation.", + "example_sentence_english": "After the accident, her rehabilitation began.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11027 + }, + { + "word": "resultierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resulting", + "romanization": "resultierend", + "example_sentence_native": "Die resultierenden Daten waren überraschend.", + "example_sentence_english": "The resulting data was surprising.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11029 + }, + { + "word": "Rivale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rival", + "romanization": "Rivale", + "example_sentence_native": "Er traf seinen alten Rivalen im Finale.", + "example_sentence_english": "He met his old rival in the final.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11031 + }, + { + "word": "Sanitäter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paramedic", + "romanization": "Sanitäter", + "example_sentence_native": "Der Sanitäter versorgte die Wunde.", + "example_sentence_english": "The paramedic treated the wound.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11036 + }, + { + "word": "Schimmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gleam", + "romanization": "Schimmer", + "example_sentence_native": "Es gab einen Schimmer Hoffnung am Horizont.", + "example_sentence_english": "There was a glimmer of hope on the horizon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11037 + }, + { + "word": "Schleier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veil", + "romanization": "Schleier", + "example_sentence_native": "Die Braut trug einen weißen Schleier.", + "example_sentence_english": "The bride wore a white veil.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11038 + }, + { + "word": "Schwan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swan", + "romanization": "Schwan", + "example_sentence_native": "Der Schwan schwimmt elegant auf dem See.", + "example_sentence_english": "The swan swims elegantly on the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11040 + }, + { + "word": "Seuche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epidemic;plague", + "romanization": "Seuche", + "example_sentence_native": "Die Seuche breitete sich schnell aus.", + "example_sentence_english": "The epidemic spread quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11042 + }, + { + "word": "Sicherheitsgrund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safety reason", + "romanization": "Sicherheitsgrund", + "example_sentence_native": "Aus Sicherheitsgründen ist der Zutritt verboten.", + "example_sentence_english": "For safety reasons, entry is forbidden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11044 + }, + { + "word": "Skill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skill", + "romanization": "Skill", + "example_sentence_native": "Er hat gute Skills im Programmieren.", + "example_sentence_english": "He has good skills in programming.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11045 + }, + { + "word": "Spitzname", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nickname", + "romanization": "Spitzname", + "example_sentence_native": "Sein Spitzname ist \"Der Schnelle\".", + "example_sentence_english": "His nickname is \"The Fast One\".", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11047 + }, + { + "word": "spurlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without a trace;vanished", + "romanization": "spurlos", + "example_sentence_native": "Er verschwand spurlos.", + "example_sentence_english": "He disappeared without a trace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11048 + }, + { + "word": "Stabilisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stabilization", + "romanization": "Stabilisierung", + "example_sentence_native": "Die Stabilisierung der Wirtschaft ist wichtig.", + "example_sentence_english": "The stabilization of the economy is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11049 + }, + { + "word": "Steuererklärung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tax declaration;return", + "romanization": "Steuererklärung", + "example_sentence_native": "Ich muss meine Steuererklärung noch machen.", + "example_sentence_english": "I still have to do my tax declaration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11051 + }, + { + "word": "Stoss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "push;thrust;impact", + "romanization": "Stoss", + "example_sentence_native": "Er gab der Tür einen kräftigen Stoss.", + "example_sentence_english": "He gave the door a strong push.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11052 + }, + { + "word": "Strafverfahren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal proceedings", + "romanization": "Strafverfahren", + "example_sentence_native": "Das Strafverfahren wurde eingestellt.", + "example_sentence_english": "The criminal proceedings were discontinued.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11053 + }, + { + "word": "strange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strange;odd", + "romanization": "strange", + "example_sentence_native": "Das ist eine strange Situation.", + "example_sentence_english": "That is a strange situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11054 + }, + { + "word": "Strassenseite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "side of the street", + "romanization": "Strassenseite", + "example_sentence_native": "Wir gehen auf der anderen Strassenseite.", + "example_sentence_english": "We are walking on the other side of the street.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11055 + }, + { + "word": "Stütze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support;prop", + "romanization": "Stütze", + "example_sentence_native": "Die alte Mauer braucht eine Stütze.", + "example_sentence_english": "The old wall needs a support.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11056 + }, + { + "word": "tierisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animalistic;beastly;(informal) tremendous;incredibly", + "romanization": "tierisch", + "example_sentence_native": "Das war ein tierischer Spaß!", + "example_sentence_english": "That was tremendous fun!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11058 + }, + { + "word": "Transaktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transaction", + "romanization": "Transaktion", + "example_sentence_native": "Die Transaktion wurde erfolgreich abgeschlossen.", + "example_sentence_english": "The transaction was successfully completed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11059 + }, + { + "word": "Treiber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver", + "romanization": "Treiber", + "example_sentence_native": "Der neue Treiber für die Grafikkarte ist verfügbar.", + "example_sentence_english": "The new driver for the graphics card is available.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11060 + }, + { + "word": "Triathlon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triathlon", + "romanization": "Triathlon", + "example_sentence_native": "Er trainiert für einen Triathlon.", + "example_sentence_english": "He is training for a triathlon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11061 + }, + { + "word": "Trompete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trumpet", + "romanization": "Trompete", + "example_sentence_native": "Sie spielt die Trompete in einem Orchester.", + "example_sentence_english": "She plays the trumpet in an orchestra.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11062 + }, + { + "word": "Upgrade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upgrade", + "romanization": "Upgrade", + "example_sentence_native": "Das Software-Upgrade ist jetzt verfügbar.", + "example_sentence_english": "The software upgrade is now available.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11065 + }, + { + "word": "Valentinstag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Valentine's Day", + "romanization": "Valentinstag", + "example_sentence_native": "Am Valentinstag schenken sich viele Leute Blumen.", + "example_sentence_english": "On Valentine's Day, many people give each other flowers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11066 + }, + { + "word": "Verbrennung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burn;combustion", + "romanization": "Verbrennung", + "example_sentence_native": "Er hat sich eine leichte Verbrennung am Arm zugezogen.", + "example_sentence_english": "He sustained a slight burn on his arm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11067 + }, + { + "word": "verdrehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to twist;to distort", + "romanization": "verdrehen", + "example_sentence_native": "Er versuchte, die Fakten zu verdrehen.", + "example_sentence_english": "He tried to distort the facts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11068 + }, + { + "word": "Verehrung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adoration;veneration", + "romanization": "Verehrung", + "example_sentence_native": "Sie empfand tiefe Verehrung für ihren Mentor.", + "example_sentence_english": "She felt deep adoration for her mentor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11069 + }, + { + "word": "Vergebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forgiveness", + "romanization": "Vergebung", + "example_sentence_native": "Vergebung ist ein wichtiger Schritt zur Heilung.", + "example_sentence_english": "Forgiveness is an important step towards healing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11070 + }, + { + "word": "Verkehrsteilnehmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "road user;participant in traffic", + "romanization": "Verkehrsteilnehmer", + "example_sentence_native": "Alle Verkehrsteilnehmer müssen die Regeln beachten.", + "example_sentence_english": "All road users must observe the rules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11071 + }, + { + "word": "verkraften", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cope with;to bear", + "romanization": "verkraften", + "example_sentence_native": "Er konnte den Verlust nur schwer verkraften.", + "example_sentence_english": "He could hardly cope with the loss.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11072 + }, + { + "word": "verkürzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shorten;to abridge", + "romanization": "verkürzen", + "example_sentence_native": "Wir müssen die Wartezeit verkürzen.", + "example_sentence_english": "We need to shorten the waiting time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11073 + }, + { + "word": "Verlass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliance;dependability", + "romanization": "Verlass", + "example_sentence_native": "Auf ihn ist immer Verlass.", + "example_sentence_english": "He can always be relied upon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11074 + }, + { + "word": "verstreuen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scatter;to disperse", + "romanization": "verstreuen", + "example_sentence_native": "Der Wind hat die Blätter überall verstreut.", + "example_sentence_english": "The wind scattered the leaves everywhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11075 + }, + { + "word": "vertraulich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidential;intimate", + "romanization": "vertraulich", + "example_sentence_native": "Bitte behandeln Sie diese Informationen vertraulich.", + "example_sentence_english": "Please treat this information confidentially.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11076 + }, + { + "word": "verunsichern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unsettle;to make insecure", + "romanization": "verunsichern", + "example_sentence_native": "Seine plötzliche Frage verunsicherte sie.", + "example_sentence_english": "His sudden question unsettled her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11077 + }, + { + "word": "visuell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visual", + "romanization": "visuell", + "example_sentence_native": "Er hat ein sehr gutes visuelles Gedächtnis.", + "example_sentence_english": "He has a very good visual memory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11079 + }, + { + "word": "Volksverhetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incitement to hatred", + "romanization": "Volksverhetzung", + "example_sentence_native": "Volksverhetzung ist in Deutschland strafbar.", + "example_sentence_english": "Incitement to hatred is punishable in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11080 + }, + { + "word": "Vorstellungsgespräch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "job interview", + "romanization": "Vorstellungsgespräch", + "example_sentence_native": "Ich habe nächste Woche ein Vorstellungsgespräch.", + "example_sentence_english": "I have a job interview next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11081 + }, + { + "word": "vorteilhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantageous", + "romanization": "vorteilhaft", + "example_sentence_native": "Diese Lösung ist sehr vorteilhaft für uns.", + "example_sentence_english": "This solution is very advantageous for us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11082 + }, + { + "word": "vorweg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in advance", + "romanization": "vorweg", + "example_sentence_native": "Ich möchte vorwegnehmen, dass es schwierig wird.", + "example_sentence_english": "I want to state in advance that it will be difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11083 + }, + { + "word": "Weltall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "universe", + "romanization": "Weltall", + "example_sentence_native": "Das Weltall ist unendlich groß.", + "example_sentence_english": "The universe is infinitely large.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11085 + }, + { + "word": "Wendung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn", + "romanization": "Wendung", + "example_sentence_native": "Die Geschichte nahm eine unerwartete Wendung.", + "example_sentence_english": "The story took an unexpected turn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11086 + }, + { + "word": "Werdegang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "career path", + "romanization": "Werdegang", + "example_sentence_native": "Bitte beschreiben Sie Ihren beruflichen Werdegang.", + "example_sentence_english": "Please describe your professional career path.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11087 + }, + { + "word": "winken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wave", + "romanization": "winken", + "example_sentence_native": "Sie winkte mir zum Abschied.", + "example_sentence_english": "She waved goodbye to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11088 + }, + { + "word": "Winterspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winter game", + "romanization": "Winterspiel", + "example_sentence_native": "Ein Winterspiel im Schnee macht viel Spaß.", + "example_sentence_english": "A winter game in the snow is a lot of fun.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11089 + }, + { + "word": "Zubereitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation", + "romanization": "Zubereitung", + "example_sentence_native": "Die Zubereitung des Essens dauert etwa 30 Minuten.", + "example_sentence_english": "The preparation of the food takes about 30 minutes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11091 + }, + { + "word": "zustellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deliver", + "romanization": "zustellen", + "example_sentence_native": "Der Postbote wird das Paket morgen zustellen.", + "example_sentence_english": "The postman will deliver the package tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11092 + }, + { + "word": "abspielen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to play (audio;video)", + "romanization": "abspielen", + "example_sentence_native": "Kannst du das Lied noch einmal abspielen?", + "example_sentence_english": "Can you play the song again?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11094 + }, + { + "word": "arrangieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrange", + "romanization": "arrangieren", + "example_sentence_native": "Wir müssen das Treffen arrangieren.", + "example_sentence_english": "We need to arrange the meeting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11100 + }, + { + "word": "Assistentin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female assistant", + "romanization": "Assistentin", + "example_sentence_native": "Die Assistentin hat mir geholfen.", + "example_sentence_english": "The female assistant helped me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11101 + }, + { + "word": "Astronomie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomy", + "romanization": "Astronomie", + "example_sentence_native": "Sie studiert Astronomie an der Universität.", + "example_sentence_english": "She studies astronomy at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11102 + }, + { + "word": "aufwändig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elaborate;costly", + "romanization": "aufwändig", + "example_sentence_native": "Das Projekt war sehr aufwändig.", + "example_sentence_english": "The project was very elaborate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11103 + }, + { + "word": "auspacken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to unpack", + "romanization": "auspacken", + "example_sentence_native": "Ich muss meine Koffer auspacken.", + "example_sentence_english": "I need to unpack my suitcases.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "packen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11105 + }, + { + "word": "befehlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to command", + "romanization": "befehlen", + "example_sentence_native": "Er befahl den Soldaten, vorzurücken.", + "example_sentence_english": "He commanded the soldiers to advance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11107 + }, + { + "word": "Befürchtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apprehension;concern", + "romanization": "Befürchtung", + "example_sentence_native": "Sie äußerte ihre Befürchtung über die Zukunft.", + "example_sentence_english": "She expressed her concern about the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11108 + }, + { + "word": "behilflich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helpful", + "romanization": "behilflich", + "example_sentence_native": "Kann ich Ihnen behilflich sein?", + "example_sentence_english": "Can I be of assistance to you?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11109 + }, + { + "word": "bezeichnend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characteristic;telling", + "romanization": "bezeichnend", + "example_sentence_native": "Seine Reaktion war sehr bezeichnend.", + "example_sentence_english": "His reaction was very telling.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11110 + }, + { + "word": "Bleistift", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pencil", + "romanization": "Bleistift", + "example_sentence_native": "Ich brauche einen Bleistift.", + "example_sentence_english": "I need a pencil.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11112 + }, + { + "word": "Bräutigam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "groom", + "romanization": "Bräutigam", + "example_sentence_native": "Der Bräutigam wartete nervös auf seine Braut.", + "example_sentence_english": "The groom nervously waited for his bride.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11115 + }, + { + "word": "Bundesminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal minister", + "romanization": "Bundesminister", + "example_sentence_native": "Der Bundesminister hielt eine Rede.", + "example_sentence_english": "The federal minister gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11116 + }, + { + "word": "Bürgermeisterin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mayoress;female mayor", + "romanization": "Bürgermeisterin", + "example_sentence_native": "Die Bürgermeisterin eröffnete das neue Gebäude.", + "example_sentence_english": "The mayoress opened the new building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11119 + }, + { + "word": "Campingplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "campsite", + "romanization": "Campingplatz", + "example_sentence_native": "Wir haben einen schönen Campingplatz am See gefunden.", + "example_sentence_english": "We found a beautiful campsite by the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11120 + }, + { + "word": "Cape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cape", + "romanization": "Cape", + "example_sentence_native": "Sie trug ein elegantes Cape über ihrem Kleid.", + "example_sentence_english": "She wore an elegant cape over her dress.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11121 + }, + { + "word": "Chirurg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surgeon", + "romanization": "Chirurg", + "example_sentence_native": "Der Chirurg führte die Operation erfolgreich durch.", + "example_sentence_english": "The surgeon successfully performed the operation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11123 + }, + { + "word": "Controlling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controlling (business function)", + "romanization": "Controlling", + "example_sentence_native": "Das Controlling ist für die Überwachung der Unternehmensfinanzen zuständig.", + "example_sentence_english": "Controlling is responsible for monitoring the company's finances.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11125 + }, + { + "word": "Coup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coup;stroke (of genius)", + "romanization": "Coup", + "example_sentence_native": "Der Dieb landete einen gewagten Coup.", + "example_sentence_english": "The thief pulled off a daring coup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11126 + }, + { + "word": "darauffolgend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsequent;following", + "romanization": "darauffolgend", + "example_sentence_native": "Die darauffolgende Woche war sehr anstrengend.", + "example_sentence_english": "The following week was very exhausting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11128 + }, + { + "word": "depressiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressive;depressed", + "romanization": "depressiv", + "example_sentence_native": "Er fühlte sich nach der Nachricht sehr depressiv.", + "example_sentence_english": "He felt very depressed after the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11129 + }, + { + "word": "durchbrechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break through;to break (something)", + "romanization": "durchbrechen", + "example_sentence_native": "Die Sonne konnte die Wolken durchbrechen.", + "example_sentence_english": "The sun could break through the clouds.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11130 + }, + { + "word": "durchmachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go through;to stay up all night", + "romanization": "durchmachen", + "example_sentence_native": "Er musste eine schwierige Zeit durchmachen.", + "example_sentence_english": "He had to go through a difficult time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11131 + }, + { + "word": "einpacken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pack (up)", + "romanization": "einpacken", + "example_sentence_native": "Bitte vergiss nicht, deine Kleidung einzupacken.", + "example_sentence_english": "Please don't forget to pack your clothes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "packen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11132 + }, + { + "word": "englischsprachig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "English-speaking", + "romanization": "englischsprachig", + "example_sentence_native": "Sie sucht eine englischsprachige Gruppe zum Üben.", + "example_sentence_english": "She is looking for an English-speaking group to practice with.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11134 + }, + { + "word": "erfahrungsgemäss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to experience;empirically", + "romanization": "erfahrungsgemäss", + "example_sentence_native": "Erfahrungsgemäss dauert die Lieferung drei Tage.", + "example_sentence_english": "According to experience, the delivery takes three days.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11136 + }, + { + "word": "erhitzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to heat (up)", + "romanization": "erhitzen", + "example_sentence_native": "Bitte erhitzen Sie die Milch langsam.", + "example_sentence_english": "Please heat the milk slowly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11137 + }, + { + "word": "Etat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "budget", + "romanization": "Etat", + "example_sentence_native": "Der Etat für das nächste Jahr muss noch genehmigt werden.", + "example_sentence_english": "The budget for next year still needs to be approved.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11138 + }, + { + "word": "faschistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fascist", + "romanization": "faschistisch", + "example_sentence_native": "Die faschistische Ideologie ist gefährlich.", + "example_sentence_english": "The fascist ideology is dangerous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11140 + }, + { + "word": "Fracht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freight;cargo", + "romanization": "Fracht", + "example_sentence_native": "Die Fracht wurde pünktlich geliefert.", + "example_sentence_english": "The freight was delivered on time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11143 + }, + { + "word": "gefälscht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fake;forged;counterfeit", + "romanization": "gefälscht", + "example_sentence_native": "Das ist ein gefälschtes Gemälde.", + "example_sentence_english": "That is a fake painting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11149 + }, + { + "word": "koppeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to couple;to link", + "romanization": "koppeln", + "example_sentence_native": "Man kann die Waggons koppeln.", + "example_sentence_english": "One can couple the wagons.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11150 + }, + { + "word": "pflanzen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plant", + "romanization": "pflanzen", + "example_sentence_native": "Wir wollen Bäume pflanzen.", + "example_sentence_english": "We want to plant trees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11151 + }, + { + "word": "Gestein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rock;stone (as in geological material)", + "romanization": "Gestein", + "example_sentence_native": "Das Gestein ist sehr hart.", + "example_sentence_english": "The rock is very hard.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11152 + }, + { + "word": "Gitarrist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guitarist", + "romanization": "Gitarrist", + "example_sentence_native": "Der Gitarrist spielte ein Solo.", + "example_sentence_english": "The guitarist played a solo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11153 + }, + { + "word": "gleichsam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "as it were;so to speak;virtually", + "romanization": "gleichsam", + "example_sentence_native": "Er war gleichsam ein Vater für sie.", + "example_sentence_english": "He was, as it were, a father to her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11155 + }, + { + "word": "Gottheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deity;godhead", + "romanization": "Gottheit", + "example_sentence_native": "Viele Kulturen verehren eine Gottheit.", + "example_sentence_english": "Many cultures worship a deity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11157 + }, + { + "word": "hinlegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lie down;to put down", + "romanization": "hinlegen", + "example_sentence_native": "Er will sich kurz hinlegen.", + "example_sentence_english": "He wants to lie down for a moment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11162 + }, + { + "word": "Hormon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hormone", + "romanization": "Hormon", + "example_sentence_native": "Das Hormon spielt eine wichtige Rolle.", + "example_sentence_english": "The hormone plays an important role.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11164 + }, + { + "word": "Hörspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radio play;audio drama", + "romanization": "Hörspiel", + "example_sentence_native": "Sie hört gerne Hörspiele.", + "example_sentence_english": "She likes listening to radio plays.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11165 + }, + { + "word": "Imbiss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack;snack bar", + "romanization": "Imbiss", + "example_sentence_native": "Wir holen uns einen Imbiss.", + "example_sentence_english": "We'll get a snack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11166 + }, + { + "word": "Industrialisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "industrialization", + "romanization": "Industrialisierung", + "example_sentence_native": "Die Industrialisierung veränderte die Gesellschaft.", + "example_sentence_english": "Industrialization changed society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11169 + }, + { + "word": "Item", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "item", + "romanization": "Item", + "example_sentence_native": "Bitte fügen Sie dieses Item zur Liste hinzu.", + "example_sentence_english": "Please add this item to the list.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11172 + }, + { + "word": "Jahresbericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual report", + "romanization": "Jahresbericht", + "example_sentence_native": "Der Jahresbericht wird bald veröffentlicht.", + "example_sentence_english": "The annual report will be published soon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11173 + }, + { + "word": "Kassierer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cashier (male)", + "romanization": "Kassierer", + "example_sentence_native": "Der Kassierer hat mir geholfen.", + "example_sentence_english": "The cashier helped me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11177 + }, + { + "word": "kaufmännisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial;business-related", + "romanization": "kaufmännisch", + "example_sentence_native": "Er hat eine kaufmännische Ausbildung.", + "example_sentence_english": "He has a commercial education.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11178 + }, + { + "word": "Keyboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keyboard", + "romanization": "Keyboard", + "example_sentence_native": "Sie spielt gerne Keyboard.", + "example_sentence_english": "She likes to play the keyboard.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11179 + }, + { + "word": "Kinderbetreuung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childcare", + "romanization": "Kinderbetreuung", + "example_sentence_native": "Die Kinderbetreuung ist sehr wichtig für berufstätige Eltern.", + "example_sentence_english": "Childcare is very important for working parents.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11180 + }, + { + "word": "Kinderzimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "children's room", + "romanization": "Kinderzimmer", + "example_sentence_native": "Das Kinderzimmer ist voller Spielzeug.", + "example_sentence_english": "The children's room is full of toys.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11181 + }, + { + "word": "Kompass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass", + "romanization": "Kompass", + "example_sentence_native": "Wir benutzten einen Kompass, um uns im Wald zu orientieren.", + "example_sentence_english": "We used a compass to orient ourselves in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11182 + }, + { + "word": "kompatibel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatible", + "romanization": "kompatibel", + "example_sentence_native": "Sind diese beiden Geräte miteinander kompatibel?", + "example_sentence_english": "Are these two devices compatible with each other?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11183 + }, + { + "word": "Kondom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condom", + "romanization": "Kondom", + "example_sentence_native": "Kondome sind ein wichtiges Mittel zur Empfängnisverhütung.", + "example_sentence_english": "Condoms are an important means of contraception.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11184 + }, + { + "word": "Kreuzfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruise", + "romanization": "Kreuzfahrt", + "example_sentence_native": "Sie plant eine Kreuzfahrt in die Karibik.", + "example_sentence_english": "She is planning a cruise to the Caribbean.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11185 + }, + { + "word": "Lacher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laugh", + "romanization": "Lacher", + "example_sentence_native": "Sein Witz sorgte für viele Lacher im Publikum.", + "example_sentence_english": "His joke caused many laughs in the audience.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11186 + }, + { + "word": "Landsmann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatriot", + "romanization": "Landsmann", + "example_sentence_native": "Er traf einen Landsmann auf seiner Reise.", + "example_sentence_english": "He met a compatriot on his journey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11188 + }, + { + "word": "lesbisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesbian", + "romanization": "lesbisch", + "example_sentence_native": "Sie identifiziert sich als lesbisch.", + "example_sentence_english": "She identifies as lesbian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11191 + }, + { + "word": "Lokführer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "train driver", + "romanization": "Lokführer", + "example_sentence_native": "Der Lokführer steuert den Zug.", + "example_sentence_english": "The train driver controls the train.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11192 + }, + { + "word": "Masche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stitch;loop;trick", + "romanization": "Masche", + "example_sentence_native": "Sie hat eine Masche in ihrem Pullover.", + "example_sentence_english": "She has a stitch in her sweater.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11196 + }, + { + "word": "Mast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mast;pole", + "romanization": "Mast", + "example_sentence_native": "Der Mast des Segelboots war sehr hoch.", + "example_sentence_english": "The mast of the sailboat was very high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11197 + }, + { + "word": "Mate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mate (drink)", + "romanization": "Mate", + "example_sentence_native": "Er trinkt gerne Mate am Morgen.", + "example_sentence_english": "He likes to drink mate in the morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11198 + }, + { + "word": "Mikrowelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "microwave", + "romanization": "Mikrowelle", + "example_sentence_native": "Ich wärme mein Essen in der Mikrowelle auf.", + "example_sentence_english": "I warm up my food in the microwave.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11199 + }, + { + "word": "Mitgliedsstaat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member state", + "romanization": "Mitgliedsstaat", + "example_sentence_native": "Jeder Mitgliedsstaat hat eine Stimme in der Versammlung.", + "example_sentence_english": "Every member state has one vote in the assembly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11200 + }, + { + "word": "multiple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiple", + "romanization": "multiple", + "example_sentence_native": "Es gibt multiple Möglichkeiten, dieses Problem zu lösen.", + "example_sentence_english": "There are multiple ways to solve this problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11201 + }, + { + "word": "Müsli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "muesli", + "romanization": "Müsli", + "example_sentence_native": "Ich esse jeden Morgen Müsli zum Frühstück.", + "example_sentence_english": "I eat muesli for breakfast every morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11202 + }, + { + "word": "Nationalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationalist", + "romanization": "Nationalist", + "example_sentence_native": "Er wurde als Nationalist bezeichnet.", + "example_sentence_english": "He was called a nationalist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11203 + }, + { + "word": "Notebook", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laptop", + "romanization": "Notebook", + "example_sentence_native": "Ich habe ein neues Notebook gekauft.", + "example_sentence_english": "I bought a new laptop.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11205 + }, + { + "word": "Obergrenze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upper limit", + "romanization": "Obergrenze", + "example_sentence_native": "Es gibt eine Obergrenze für die Anzahl der Teilnehmer.", + "example_sentence_english": "There is an upper limit for the number of participants.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11207 + }, + { + "word": "Organisator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organizer", + "romanization": "Organisator", + "example_sentence_native": "Der Organisator der Veranstaltung war sehr zufrieden.", + "example_sentence_english": "The organizer of the event was very satisfied.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11208 + }, + { + "word": "Pavillon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pavilion", + "romanization": "Pavillon", + "example_sentence_native": "Wir saßen im Pavillon und genossen die Aussicht.", + "example_sentence_english": "We sat in the pavilion and enjoyed the view.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11210 + }, + { + "word": "Pipeline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pipeline", + "romanization": "Pipeline", + "example_sentence_native": "Die neue Pipeline wird Gas transportieren.", + "example_sentence_english": "The new pipeline will transport gas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11212 + }, + { + "word": "Plaza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plaza", + "romanization": "Plaza", + "example_sentence_native": "Wir trafen uns auf der Plaza vor dem Rathaus.", + "example_sentence_english": "We met on the plaza in front of the city hall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11213 + }, + { + "word": "Population", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "population", + "romanization": "Population", + "example_sentence_native": "Die Population der Stadt ist in den letzten Jahren gewachsen.", + "example_sentence_english": "The city's population has grown in recent years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11214 + }, + { + "word": "Programmierer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programmer", + "romanization": "Programmierer", + "example_sentence_native": "Mein Bruder ist ein Programmierer.", + "example_sentence_english": "My brother is a programmer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11215 + }, + { + "word": "Prügel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cudgel", + "romanization": "Prügel", + "example_sentence_native": "Er hob einen Prügel auf, um sich zu verteidigen.", + "example_sentence_english": "He picked up a cudgel to defend himself.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11216 + }, + { + "word": "rasant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rapid", + "romanization": "rasant", + "example_sentence_native": "Die Technologie entwickelt sich rasant.", + "example_sentence_english": "Technology is developing rapidly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11218 + }, + { + "word": "Scheck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "check (bank check)", + "romanization": "Scheck", + "example_sentence_native": "Ich habe einen Scheck erhalten.", + "example_sentence_english": "I received a check.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11221 + }, + { + "word": "Schimmel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mold;white horse", + "romanization": "Schimmel", + "example_sentence_native": "Der Schimmel an der Wand ist ungesund.", + "example_sentence_english": "The mold on the wall is unhealthy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11222 + }, + { + "word": "Schlitten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sled;sleigh", + "romanization": "Schlitten", + "example_sentence_native": "Die Kinder fahren mit dem Schlitten den Hügel hinunter.", + "example_sentence_english": "The children are riding the sled down the hill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11223 + }, + { + "word": "schnappen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to snap;to snatch;to grab", + "romanization": "schnappen", + "example_sentence_native": "Der Hund schnappte nach dem Ball.", + "example_sentence_english": "The dog snapped at the ball.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11224 + }, + { + "word": "Schreiner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpenter;joiner", + "romanization": "Schreiner", + "example_sentence_native": "Der Schreiner hat einen schönen Tisch gebaut.", + "example_sentence_english": "The carpenter built a beautiful table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11225 + }, + { + "word": "schulisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scholastic;school-related", + "romanization": "schulisch", + "example_sentence_native": "Sie hat gute schulische Leistungen.", + "example_sentence_english": "She has good scholastic achievements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11226 + }, + { + "word": "sensibel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensitive", + "romanization": "sensibel", + "example_sentence_native": "Er ist sehr sensibel gegenüber Kritik.", + "example_sentence_english": "He is very sensitive to criticism.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11227 + }, + { + "word": "Sitzplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seat", + "romanization": "Sitzplatz", + "example_sentence_native": "Haben Sie noch einen freien Sitzplatz?", + "example_sentence_english": "Do you still have a free seat?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11232 + }, + { + "word": "Sohle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sole (of a shoe;foot)", + "romanization": "Sohle", + "example_sentence_native": "Die Sohle meiner Schuhe ist abgenutzt.", + "example_sentence_english": "The sole of my shoes is worn out.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11235 + }, + { + "word": "Sporthalle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sports hall;gymnasium", + "romanization": "Sporthalle", + "example_sentence_native": "Wir trainieren in der Sporthalle.", + "example_sentence_english": "We train in the sports hall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11237 + }, + { + "word": "Stadtentwicklung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urban development;city planning", + "romanization": "Stadtentwicklung", + "example_sentence_native": "Die Stadtentwicklung ist ein wichtiges Thema für die Zukunft.", + "example_sentence_english": "Urban development is an important topic for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11239 + }, + { + "word": "Stoffwechsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metabolism", + "romanization": "Stoffwechsel", + "example_sentence_native": "Der Stoffwechsel ist ein komplexer Prozess.", + "example_sentence_english": "Metabolism is a complex process.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11240 + }, + { + "word": "stopfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stuff;to mend", + "romanization": "stopfen", + "example_sentence_native": "Sie muss das Loch in ihrer Socke stopfen.", + "example_sentence_english": "She has to mend the hole in her sock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11241 + }, + { + "word": "Straftäter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offender;criminal", + "romanization": "Straftäter", + "example_sentence_native": "Der Straftäter wurde verurteilt.", + "example_sentence_english": "The offender was convicted.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11242 + }, + { + "word": "Strick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rope;cord", + "romanization": "Strick", + "example_sentence_native": "Er band das Paket mit einem Strick zusammen.", + "example_sentence_english": "He tied the package together with a rope.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11243 + }, + { + "word": "strukturieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to structure", + "romanization": "strukturieren", + "example_sentence_native": "Wir müssen den Bericht besser strukturieren.", + "example_sentence_english": "We need to structure the report better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11244 + }, + { + "word": "Städtchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small town;townlet", + "romanization": "Städtchen", + "example_sentence_native": "Das Städtchen war sehr malerisch.", + "example_sentence_english": "The small town was very picturesque.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11245 + }, + { + "word": "Symposium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symposium", + "romanization": "Symposium", + "example_sentence_native": "Sie nahm an einem internationalen Symposium teil.", + "example_sentence_english": "She participated in an international symposium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11246 + }, + { + "word": "Telefonat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "phone call", + "romanization": "Telefonat", + "example_sentence_native": "Ich hatte ein langes Telefonat mit meiner Mutter.", + "example_sentence_english": "I had a long phone call with my mother.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11247 + }, + { + "word": "Turnhalle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gymnasium;gym hall", + "romanization": "Turnhalle", + "example_sentence_native": "Die Kinder spielen in der Turnhalle.", + "example_sentence_english": "The children are playing in the gym hall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11248 + }, + { + "word": "Umarmung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hug;embrace", + "romanization": "Umarmung", + "example_sentence_native": "Eine herzliche Umarmung kann viel bedeuten.", + "example_sentence_english": "A warm hug can mean a lot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11249 + }, + { + "word": "umbenennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rename", + "romanization": "umbenennen", + "example_sentence_native": "Wir müssen die Datei umbenennen.", + "example_sentence_english": "We need to rename the file.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "benennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11250 + }, + { + "word": "Umbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upheaval;radical change", + "romanization": "Umbruch", + "example_sentence_native": "Das Land befindet sich in einem politischen Umbruch.", + "example_sentence_english": "The country is in a political upheaval.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11251 + }, + { + "word": "uneingeschränkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrestricted;unconditional", + "romanization": "uneingeschränkt", + "example_sentence_native": "Er genießt uneingeschränkte Freiheit.", + "example_sentence_english": "He enjoys unrestricted freedom.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11252 + }, + { + "word": "Uraufführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "premiere;first performance", + "romanization": "Uraufführung", + "example_sentence_native": "Die Uraufführung des Stücks war ein großer Erfolg.", + "example_sentence_english": "The premiere of the play was a great success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11253 + }, + { + "word": "Verfilmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "film adaptation", + "romanization": "Verfilmung", + "example_sentence_native": "Die Verfilmung des Romans war sehr erfolgreich.", + "example_sentence_english": "The film adaptation of the novel was very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11255 + }, + { + "word": "verführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seduce;to tempt", + "romanization": "verführen", + "example_sentence_native": "Lass dich nicht von den Süßigkeiten verführen.", + "example_sentence_english": "Don't let yourself be tempted by the sweets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11256 + }, + { + "word": "vergebens", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in vain;to no avail", + "romanization": "vergebens", + "example_sentence_native": "Alle ihre Bemühungen waren vergebens.", + "example_sentence_english": "All her efforts were in vain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11257 + }, + { + "word": "verkehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to traffic;to associate;to run (transport)", + "romanization": "verkehren", + "example_sentence_native": "Züge verkehren hier regelmäßig.", + "example_sentence_english": "Trains run regularly here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11258 + }, + { + "word": "versenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to send;to dispatch", + "romanization": "versenden", + "example_sentence_native": "Wir müssen das Paket heute versenden.", + "example_sentence_english": "We have to send the package today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11260 + }, + { + "word": "Viertelstunde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quarter of an hour", + "romanization": "Viertelstunde", + "example_sentence_native": "Ich warte schon eine Viertelstunde.", + "example_sentence_english": "I've been waiting for a quarter of an hour.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11262 + }, + { + "word": "vollends", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "completely;entirely", + "romanization": "vollends", + "example_sentence_native": "Er war vollends erschöpft nach dem Marathon.", + "example_sentence_english": "He was completely exhausted after the marathon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11263 + }, + { + "word": "vorgeschrieben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescribed;mandatory", + "romanization": "vorgeschrieben", + "example_sentence_native": "Die Regeln sind streng vorgeschrieben.", + "example_sentence_english": "The rules are strictly prescribed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11264 + }, + { + "word": "Zeigefinger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "index finger", + "romanization": "Zeigefinger", + "example_sentence_native": "Er hob den Zeigefinger, um zu warnen.", + "example_sentence_english": "He raised his index finger to warn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11268 + }, + { + "word": "zerbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break;to shatter", + "romanization": "zerbrechen", + "example_sentence_native": "Die Vase ist zerbrochen.", + "example_sentence_english": "The vase is broken.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11269 + }, + { + "word": "Zuschuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidy;grant", + "romanization": "Zuschuss", + "example_sentence_native": "Die Regierung gewährt einen Zuschuss für erneuerbare Energien.", + "example_sentence_english": "The government grants a subsidy for renewable energies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11270 + }, + { + "word": "Zähler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counter;meter;numerator", + "romanization": "Zähler", + "example_sentence_native": "Der Stromzähler zeigt einen hohen Verbrauch an.", + "example_sentence_english": "The electricity meter shows high consumption.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11271 + }, + { + "word": "abwickeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to handle;to process;to wind up", + "romanization": "abwickeln", + "example_sentence_native": "Wir müssen die Transaktion schnell abwickeln.", + "example_sentence_english": "We need to process the transaction quickly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "wickeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11272 + }, + { + "word": "abonnieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to subscribe", + "romanization": "abonnieren", + "example_sentence_native": "Ich möchte diesen Kanal abonnieren.", + "example_sentence_english": "I want to subscribe to this channel.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11273 + }, + { + "word": "Akw", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear power plant", + "romanization": "Akw", + "example_sentence_native": "Das Akw wurde stillgelegt.", + "example_sentence_english": "The nuclear power plant was shut down.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11274 + }, + { + "word": "Alkoholiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholic (male)", + "romanization": "Alkoholiker", + "example_sentence_native": "Er ist ein genesener Alkoholiker.", + "example_sentence_english": "He is a recovering alcoholic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11275 + }, + { + "word": "anfällig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "susceptible;prone", + "romanization": "anfällig", + "example_sentence_native": "Er ist anfällig für Erkältungen.", + "example_sentence_english": "He is susceptible to colds.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11277 + }, + { + "word": "anschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strike;to post;to work (e.g.;medicine)", + "romanization": "anschlagen", + "example_sentence_native": "Die Medizin hat gut angeschlagen.", + "example_sentence_english": "The medicine worked well.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11278 + }, + { + "word": "Anlaufstelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "point of contact", + "romanization": "Anlaufstelle", + "example_sentence_native": "Die Anlaufstelle für Touristen ist am Hauptbahnhof.", + "example_sentence_english": "The point of contact for tourists is at the main station.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11280 + }, + { + "word": "Anpfiff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kick-off", + "romanization": "Anpfiff", + "example_sentence_native": "Der Anpfiff zum Spiel ist um 18 Uhr.", + "example_sentence_english": "The kick-off for the game is at 6 PM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11281 + }, + { + "word": "antisemitisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemitic", + "romanization": "antisemitisch", + "example_sentence_native": "Antisemitische Äußerungen sind inakzeptabel.", + "example_sentence_english": "Antisemitic statements are unacceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11282 + }, + { + "word": "Atomwaffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear weapon", + "romanization": "Atomwaffe", + "example_sentence_native": "Die Entwicklung von Atomwaffen ist ein globales Problem.", + "example_sentence_english": "The development of nuclear weapons is a global problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11284 + }, + { + "word": "Aufenthaltsort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whereabouts", + "romanization": "Aufenthaltsort", + "example_sentence_native": "Sein Aufenthaltsort ist unbekannt.", + "example_sentence_english": "His whereabouts are unknown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11285 + }, + { + "word": "ausrufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proclaim", + "romanization": "ausrufen", + "example_sentence_native": "Der Sieger wurde ausgerufen.", + "example_sentence_english": "The winner was proclaimed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11287 + }, + { + "word": "Banker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banker", + "romanization": "Banker", + "example_sentence_native": "Mein Bruder arbeitet als Banker in Frankfurt.", + "example_sentence_english": "My brother works as a banker in Frankfurt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11289 + }, + { + "word": "Bauchschmerz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stomach ache", + "romanization": "Bauchschmerz", + "example_sentence_native": "Ich habe Bauchschmerzen.", + "example_sentence_english": "I have a stomach ache.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11290 + }, + { + "word": "Befund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finding", + "romanization": "Befund", + "example_sentence_native": "Der Arzt hat einen klaren Befund erstellt.", + "example_sentence_english": "The doctor made a clear finding.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11293 + }, + { + "word": "bergauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uphill", + "romanization": "bergauf", + "example_sentence_native": "Der Weg führt bergauf.", + "example_sentence_english": "The path leads uphill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11294 + }, + { + "word": "Beschuss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shelling", + "romanization": "Beschuss", + "example_sentence_native": "Die Stadt stand unter schwerem Beschuss.", + "example_sentence_english": "The city was under heavy shelling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11295 + }, + { + "word": "beunruhigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to worry", + "romanization": "beunruhigen", + "example_sentence_native": "Die Nachrichten beunruhigen mich.", + "example_sentence_english": "The news worries me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11296 + }, + { + "word": "Boykott", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boycott", + "romanization": "Boykott", + "example_sentence_native": "Die Gruppe rief zum Boykott der Produkte auf.", + "example_sentence_english": "The group called for a boycott of the products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11301 + }, + { + "word": "Brandschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fire protection", + "romanization": "Brandschutz", + "example_sentence_native": "Der Brandschutz im Gebäude ist sehr wichtig.", + "example_sentence_english": "Fire protection in the building is very important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11302 + }, + { + "word": "Briefmarke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stamp (postage)", + "romanization": "Briefmarke", + "example_sentence_native": "Ich brauche eine Briefmarke für diesen Brief.", + "example_sentence_english": "I need a stamp for this letter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11303 + }, + { + "word": "Cabrio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convertible (car)", + "romanization": "Cabrio", + "example_sentence_native": "Er fährt ein rotes Cabrio.", + "example_sentence_english": "He drives a red convertible.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11305 + }, + { + "word": "demgegenüber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in contrast to that", + "romanization": "demgegenüber", + "example_sentence_native": "Er war sehr fleißig; demgegenüber zeigte sie wenig Engagement.", + "example_sentence_english": "He was very diligent; in contrast to that, she showed little commitment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11312 + }, + { + "word": "Doktorarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctoral thesis", + "romanization": "Doktorarbeit", + "example_sentence_native": "Sie schreibt gerade an ihrer Doktorarbeit.", + "example_sentence_english": "She is currently writing her doctoral thesis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11313 + }, + { + "word": "Dokumentarfilm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentary film", + "romanization": "Dokumentarfilm", + "example_sentence_native": "Wir haben gestern einen interessanten Dokumentarfilm gesehen.", + "example_sentence_english": "We watched an interesting documentary film yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11314 + }, + { + "word": "Eigenkapital", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equity", + "romanization": "Eigenkapital", + "example_sentence_native": "Das Unternehmen hat sein Eigenkapital erhöht.", + "example_sentence_english": "The company has increased its equity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11316 + }, + { + "word": "Einflussnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exertion of influence", + "romanization": "Einflussnahme", + "example_sentence_native": "Die Regierung übte Einflussnahme auf die Medien aus.", + "example_sentence_english": "The government exerted influence on the media.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11317 + }, + { + "word": "einfangen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch", + "romanization": "einfangen", + "example_sentence_native": "Der Jäger versucht, das Tier einzufangen.", + "example_sentence_english": "The hunter tries to catch the animal.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "fangen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11318 + }, + { + "word": "Einkommensteuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income tax", + "romanization": "Einkommensteuer", + "example_sentence_native": "Die Einkommensteuer wird vom Gehalt abgezogen.", + "example_sentence_english": "Income tax is deducted from the salary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11319 + }, + { + "word": "einsatzbereit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ready for deployment", + "romanization": "einsatzbereit", + "example_sentence_native": "Das Team ist einsatzbereit.", + "example_sentence_english": "The team is ready for deployment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11320 + }, + { + "word": "Einsatzkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergency worker", + "romanization": "Einsatzkraft", + "example_sentence_native": "Eine Einsatzkraft traf schnell am Unfallort ein.", + "example_sentence_english": "An emergency worker quickly arrived at the accident scene.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11321 + }, + { + "word": "Einsteiger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beginner", + "romanization": "Einsteiger", + "example_sentence_native": "Dieser Kurs ist ideal für Einsteiger.", + "example_sentence_english": "This course is ideal for beginners.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11322 + }, + { + "word": "Elternteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parent (one of two)", + "romanization": "Elternteil", + "example_sentence_native": "Jedes Elternteil hat Rechte und Pflichten.", + "example_sentence_english": "Every parent has rights and duties.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11323 + }, + { + "word": "Enteignung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expropriation", + "romanization": "Enteignung", + "example_sentence_native": "Die Enteignung von Land ist ein kontroverses Thema.", + "example_sentence_english": "The expropriation of land is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11325 + }, + { + "word": "entzünden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ignite", + "romanization": "entzünden", + "example_sentence_native": "Er versuchte, das Feuer zu entzünden.", + "example_sentence_english": "He tried to ignite the fire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11326 + }, + { + "word": "ergänzend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplementary", + "romanization": "ergänzend", + "example_sentence_native": "Wir bieten ergänzende Informationen an.", + "example_sentence_english": "We offer supplementary information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11327 + }, + { + "word": "errechnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to calculate", + "romanization": "errechnen", + "example_sentence_native": "Man kann den Wert genau errechnen.", + "example_sentence_english": "One can calculate the value precisely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11328 + }, + { + "word": "Espresso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "espresso", + "romanization": "Espresso", + "example_sentence_native": "Ich trinke gerne einen Espresso nach dem Essen.", + "example_sentence_english": "I like to drink an espresso after the meal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11329 + }, + { + "word": "exportieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to export", + "romanization": "exportieren", + "example_sentence_native": "Deutschland exportiert viele Autos.", + "example_sentence_english": "Germany exports many cars.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11330 + }, + { + "word": "Festspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "festival (music;drama)", + "romanization": "Festspiel", + "example_sentence_native": "Die Bayreuther Festspiele sind weltberühmt.", + "example_sentence_english": "The Bayreuth Festival is world-famous.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11331 + }, + { + "word": "Foul", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foul (sports)", + "romanization": "Foul", + "example_sentence_native": "Der Schiedsrichter pfiff ein Foul.", + "example_sentence_english": "The referee whistled a foul.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11332 + }, + { + "word": "Fragment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragment", + "romanization": "Fragment", + "example_sentence_native": "Er fand ein kleines Fragment der alten Vase.", + "example_sentence_english": "He found a small fragment of the old vase.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11335 + }, + { + "word": "Galaxie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galaxy", + "romanization": "Galaxie", + "example_sentence_native": "Unsere Erde ist Teil der Milchstraßen-Galaxie.", + "example_sentence_english": "Our Earth is part of the Milky Way galaxy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11337 + }, + { + "word": "Gans", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goose", + "romanization": "Gans", + "example_sentence_native": "Die Gans schnatterte laut im Garten.", + "example_sentence_english": "The goose honked loudly in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11338 + }, + { + "word": "foltern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to torture", + "romanization": "foltern", + "example_sentence_native": "Es ist verboten, Menschen zu foltern.", + "example_sentence_english": "It is forbidden to torture people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11339 + }, + { + "word": "gegenüberliegend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposite;across", + "romanization": "gegenüberliegend", + "example_sentence_native": "Das Haus gegenüberliegend ist sehr alt.", + "example_sentence_english": "The house opposite is very old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11340 + }, + { + "word": "gehoben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elevated;sophisticated;distinguished", + "romanization": "gehoben", + "example_sentence_native": "Sie sprach in einem sehr gehobenen Ton.", + "example_sentence_english": "She spoke in a very elevated tone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11341 + }, + { + "word": "Gehweg", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sidewalk;pavement", + "romanization": "Gehweg", + "example_sentence_native": "Bitte bleiben Sie auf dem Gehweg.", + "example_sentence_english": "Please stay on the sidewalk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11342 + }, + { + "word": "Geologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geology", + "romanization": "Geologie", + "example_sentence_native": "Er studiert Geologie an der Universität.", + "example_sentence_english": "He studies geology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11343 + }, + { + "word": "Geschlechtsverkehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual intercourse", + "romanization": "Geschlechtsverkehr", + "example_sentence_native": "Der Arzt sprach über die Risiken von ungeschütztem Geschlechtsverkehr.", + "example_sentence_english": "The doctor spoke about the risks of unprotected sexual intercourse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11344 + }, + { + "word": "glaubhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credible;believable", + "romanization": "glaubhaft", + "example_sentence_native": "Seine Geschichte klang nicht sehr glaubhaft.", + "example_sentence_english": "His story didn't sound very credible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11345 + }, + { + "word": "Handarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handicraft;manual labor", + "romanization": "Handarbeit", + "example_sentence_native": "Diese Decke ist reine Handarbeit.", + "example_sentence_english": "This blanket is pure handicraft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11347 + }, + { + "word": "Hashtag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hashtag", + "romanization": "Hashtag", + "example_sentence_native": "Vergiss nicht, den Hashtag zu verwenden!", + "example_sentence_english": "Don't forget to use the hashtag!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11349 + }, + { + "word": "Haube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood;bonnet (car);cap (clothing)", + "romanization": "Haube", + "example_sentence_native": "Die Haube des Autos ist offen.", + "example_sentence_english": "The car's bonnet is open.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11350 + }, + { + "word": "Hauptgrund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main reason", + "romanization": "Hauptgrund", + "example_sentence_native": "Der Hauptgrund für seine Entscheidung war das Geld.", + "example_sentence_english": "The main reason for his decision was the money.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11351 + }, + { + "word": "hervorrufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause;to evoke;to bring about", + "romanization": "hervorrufen", + "example_sentence_native": "Diese Situation kann große Probleme hervorrufen.", + "example_sentence_english": "This situation can cause big problems.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hervor", + "base_verb": "rufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11352 + }, + { + "word": "impfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vaccinate;to inoculate", + "romanization": "impfen", + "example_sentence_native": "Man sollte sich gegen Grippe impfen lassen.", + "example_sentence_english": "One should get vaccinated against the flu.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11357 + }, + { + "word": "insgeheim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretly;in secret", + "romanization": "insgeheim", + "example_sentence_native": "Sie hoffte insgeheim auf eine Beförderung.", + "example_sentence_english": "She secretly hoped for a promotion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11358 + }, + { + "word": "Instandhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance", + "romanization": "Instandhaltung", + "example_sentence_native": "Die Instandhaltung der Maschinen ist sehr wichtig.", + "example_sentence_english": "The maintenance of the machines is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11359 + }, + { + "word": "interaktiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interactive", + "romanization": "interaktiv", + "example_sentence_native": "Das ist eine interaktive Ausstellung.", + "example_sentence_english": "This is an interactive exhibition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11360 + }, + { + "word": "Kaiserreich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "empire", + "romanization": "Kaiserreich", + "example_sentence_native": "Das Deutsche Kaiserreich existierte von 1871 bis 1918.", + "example_sentence_english": "The German Empire existed from 1871 to 1918.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11363 + }, + { + "word": "Kaplan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaplain", + "romanization": "Kaplan", + "example_sentence_native": "Der Kaplan hielt eine Predigt.", + "example_sentence_english": "The chaplain gave a sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11364 + }, + { + "word": "Knabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boy (archaic;literary)", + "romanization": "Knabe", + "example_sentence_native": "Der kleine Knabe spielte im Garten.", + "example_sentence_english": "The little boy played in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11365 + }, + { + "word": "Konter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counter (attack;move)", + "romanization": "Konter", + "example_sentence_native": "Die Mannschaft startete einen schnellen Konter.", + "example_sentence_english": "The team launched a quick counter-attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11366 + }, + { + "word": "Kot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feces;dung;muck", + "romanization": "Kot", + "example_sentence_native": "Der Hund hinterließ Kot auf dem Bürgersteig.", + "example_sentence_english": "The dog left feces on the sidewalk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11367 + }, + { + "word": "Kreisliga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district league (football)", + "romanization": "Kreisliga", + "example_sentence_native": "Er spielt in der Kreisliga.", + "example_sentence_english": "He plays in the district league.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11368 + }, + { + "word": "Kriegsverbrechen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "war crime", + "romanization": "Kriegsverbrechen", + "example_sentence_native": "Kriegsverbrechen sind schwere Verstöße gegen das Völkerrecht.", + "example_sentence_english": "War crimes are serious violations of international law.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11369 + }, + { + "word": "Layout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layout", + "romanization": "Layout", + "example_sentence_native": "Das Layout der Webseite ist sehr ansprechend.", + "example_sentence_english": "The layout of the website is very appealing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11373 + }, + { + "word": "Massgabe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standard;criterion;according to", + "romanization": "Massgabe", + "example_sentence_native": "Die Entscheidung erfolgte nach Maßgabe der Vorschriften.", + "example_sentence_english": "The decision was made according to the regulations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11375 + }, + { + "word": "Mechaniker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mechanic", + "romanization": "Mechaniker", + "example_sentence_native": "Der Mechaniker reparierte mein Auto.", + "example_sentence_english": "The mechanic repaired my car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11376 + }, + { + "word": "Mehrwertsteuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "value-added tax (VAT)", + "romanization": "Mehrwertsteuer", + "example_sentence_native": "Die Mehrwertsteuer ist im Preis enthalten.", + "example_sentence_english": "The value-added tax is included in the price.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11377 + }, + { + "word": "Meistertitel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "championship title", + "romanization": "Meistertitel", + "example_sentence_native": "Die Mannschaft gewann den Meistertitel.", + "example_sentence_english": "The team won the championship title.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11379 + }, + { + "word": "Mittelschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle school", + "romanization": "Mittelschule", + "example_sentence_native": "Meine Schwester geht auf die Mittelschule.", + "example_sentence_english": "My sister goes to middle school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11380 + }, + { + "word": "Monopol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monopoly", + "romanization": "Monopol", + "example_sentence_native": "Das Unternehmen hat ein Monopol auf dem Markt.", + "example_sentence_english": "The company has a monopoly in the market.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11381 + }, + { + "word": "Motorradfahrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorcyclist", + "romanization": "Motorradfahrer", + "example_sentence_native": "Der Motorradfahrer trug einen Helm.", + "example_sentence_english": "The motorcyclist wore a helmet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11382 + }, + { + "word": "Mountainbike", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mountain bike", + "romanization": "Mountainbike", + "example_sentence_native": "Er fährt gerne mit seinem Mountainbike in den Bergen.", + "example_sentence_english": "He likes to ride his mountain bike in the mountains.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11383 + }, + { + "word": "Nachrichtenagentur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "news agency", + "romanization": "Nachrichtenagentur", + "example_sentence_native": "Die Nachrichtenagentur veröffentlichte die neuesten Meldungen.", + "example_sentence_english": "The news agency published the latest reports.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11384 + }, + { + "word": "Ninja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ninja", + "romanization": "Ninja", + "example_sentence_native": "Der Ninja schlich sich leise durch die Nacht.", + "example_sentence_english": "The ninja crept silently through the night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11386 + }, + { + "word": "offensiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive", + "romanization": "offensiv", + "example_sentence_native": "Die Mannschaft spielte sehr offensiv.", + "example_sentence_english": "The team played very offensively.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11390 + }, + { + "word": "Palme", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "palm tree", + "romanization": "Palme", + "example_sentence_native": "Am Strand standen viele Palmen.", + "example_sentence_english": "There were many palm trees on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11391 + }, + { + "word": "Parlamentarier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliamentarian", + "romanization": "Parlamentarier", + "example_sentence_native": "Die Parlamentarier stimmten über das Gesetz ab.", + "example_sentence_english": "The parliamentarians voted on the law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11393 + }, + { + "word": "Pasta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pasta", + "romanization": "Pasta", + "example_sentence_native": "Ich koche heute Abend Pasta mit Tomatensoße.", + "example_sentence_english": "I'm cooking pasta with tomato sauce tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11394 + }, + { + "word": "pervers", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perverse", + "romanization": "pervers", + "example_sentence_native": "Er hatte einen perversen Sinn für Humor.", + "example_sentence_english": "He had a perverse sense of humor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11396 + }, + { + "word": "Photovoltaik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "photovoltaics", + "romanization": "Photovoltaik", + "example_sentence_native": "Die Photovoltaik gewinnt an Bedeutung für die Energiewende.", + "example_sentence_english": "Photovoltaics is gaining importance for the energy transition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11398 + }, + { + "word": "plausibel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plausible", + "romanization": "plausibel", + "example_sentence_native": "Seine Erklärung klang sehr plausibel.", + "example_sentence_english": "His explanation sounded very plausible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11399 + }, + { + "word": "Pointe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punchline;point", + "romanization": "Pointe", + "example_sentence_native": "Die Pointe des Witzes war wirklich überraschend.", + "example_sentence_english": "The punchline of the joke was really surprising.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11400 + }, + { + "word": "Portemonnaie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet;purse", + "romanization": "Portemonnaie", + "example_sentence_native": "Ich habe mein Portemonnaie verloren.", + "example_sentence_english": "I lost my wallet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11401 + }, + { + "word": "Preisverleihung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "award ceremony", + "romanization": "Preisverleihung", + "example_sentence_native": "Die Preisverleihung findet morgen Abend statt.", + "example_sentence_english": "The award ceremony will take place tomorrow evening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11402 + }, + { + "word": "Pub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pub", + "romanization": "Pub", + "example_sentence_native": "Wir treffen uns heute Abend im Pub.", + "example_sentence_english": "We're meeting at the pub tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11404 + }, + { + "word": "Pyramide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pyramid", + "romanization": "Pyramide", + "example_sentence_native": "Die Pyramiden von Gizeh sind beeindruckend.", + "example_sentence_english": "The pyramids of Giza are impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11405 + }, + { + "word": "ratlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helpless;at a loss", + "romanization": "ratlos", + "example_sentence_native": "Er stand ratlos vor dem Problem.", + "example_sentence_english": "He stood helpless before the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11406 + }, + { + "word": "Recycling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycling", + "romanization": "Recycling", + "example_sentence_native": "Recycling ist wichtig für die Umwelt.", + "example_sentence_english": "Recycling is important for the environment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11407 + }, + { + "word": "Regio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regional train (informal short form)", + "romanization": "Regio", + "example_sentence_native": "Ich nehme den Regio nach Berlin.", + "example_sentence_english": "I'm taking the regional train to Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11408 + }, + { + "word": "regulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regulate", + "romanization": "regulieren", + "example_sentence_native": "Der Staat muss den Markt regulieren.", + "example_sentence_english": "The state must regulate the market.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11409 + }, + { + "word": "Reichsbürger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Reich citizen (member of the Reichsbürger movement)", + "romanization": "Reichsbürger", + "example_sentence_native": "Die \"Reichsbürger\"-Bewegung wird vom Verfassungsschutz beobachtet.", + "example_sentence_english": "The \"Reichsbürger\" movement is monitored by the domestic intelligence agency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11410 + }, + { + "word": "roh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raw;crude", + "romanization": "roh", + "example_sentence_native": "Ich esse gerne rohes Gemüse.", + "example_sentence_english": "I like to eat raw vegetables.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11413 + }, + { + "word": "Rollenspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "role-playing game;role play", + "romanization": "Rollenspiel", + "example_sentence_native": "Wir spielen am Wochenende ein Rollenspiel.", + "example_sentence_english": "We're playing a role-playing game this weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11414 + }, + { + "word": "Schachtel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box;carton", + "romanization": "Schachtel", + "example_sentence_native": "Die Kekse sind in einer Schachtel.", + "example_sentence_english": "The cookies are in a box.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11415 + }, + { + "word": "Schiesserei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shootout;gunfight", + "romanization": "Schiesserei", + "example_sentence_native": "Es gab eine Schiesserei in der Innenstadt.", + "example_sentence_english": "There was a shootout in the city center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11416 + }, + { + "word": "schnellstmöglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as quickly as possible;as soon as possible", + "romanization": "schnellstmöglich", + "example_sentence_native": "Bitte antworten Sie schnellstmöglich.", + "example_sentence_english": "Please reply as quickly as possible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11417 + }, + { + "word": "Schulleiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school principal;headmaster", + "romanization": "Schulleiter", + "example_sentence_native": "Der Schulleiter hat eine neue Regel eingeführt.", + "example_sentence_english": "The school principal introduced a new rule.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11419 + }, + { + "word": "Schwede", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Swede", + "romanization": "Schwede", + "example_sentence_native": "Er ist ein Schwede.", + "example_sentence_english": "He is a Swede.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11420 + }, + { + "word": "Schärfe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharpness;spiciness", + "romanization": "Schärfe", + "example_sentence_native": "Die Schärfe des Messers ist beeindruckend.", + "example_sentence_english": "The sharpness of the knife is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11421 + }, + { + "word": "schöpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scoop;to draw;to create", + "romanization": "schöpfen", + "example_sentence_native": "Er schöpft Wasser aus dem Brunnen.", + "example_sentence_english": "He scoops water from the well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11422 + }, + { + "word": "Sense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scythe", + "romanization": "Sense", + "example_sentence_native": "Der Bauer mähte das Gras mit einer Sense.", + "example_sentence_english": "The farmer mowed the grass with a scythe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11423 + }, + { + "word": "Serbe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Serb", + "romanization": "Serbe", + "example_sentence_native": "Er ist ein Serbe.", + "example_sentence_english": "He is a Serb.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11425 + }, + { + "word": "Sklavin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female slave", + "romanization": "Sklavin", + "example_sentence_native": "Sie war eine Sklavin in der Antike.", + "example_sentence_english": "She was a female slave in antiquity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11427 + }, + { + "word": "Speicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storage;saving (data)", + "romanization": "Speicherung", + "example_sentence_native": "Die Speicherung der Daten ist wichtig.", + "example_sentence_english": "The storage of the data is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11428 + }, + { + "word": "Spezialität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialty;special dish", + "romanization": "Spezialität", + "example_sentence_native": "Das ist eine lokale Spezialität.", + "example_sentence_english": "That is a local specialty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11429 + }, + { + "word": "Spielerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female player", + "romanization": "Spielerin", + "example_sentence_native": "Sie ist eine talentierte Spielerin.", + "example_sentence_english": "She is a talented player.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11431 + }, + { + "word": "Sportplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sports field", + "romanization": "Sportplatz", + "example_sentence_native": "Wir spielen Fußball auf dem Sportplatz.", + "example_sentence_english": "We play football on the sports field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11432 + }, + { + "word": "Söldner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mercenary", + "romanization": "Söldner", + "example_sentence_native": "Der Söldner kämpfte für Geld.", + "example_sentence_english": "The mercenary fought for money.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11434 + }, + { + "word": "Talkshow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talk show", + "romanization": "Talkshow", + "example_sentence_native": "Sie sah eine interessante Talkshow im Fernsehen.", + "example_sentence_english": "She watched an interesting talk show on television.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11435 + }, + { + "word": "Todesursache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause of death", + "romanization": "Todesursache", + "example_sentence_native": "Die Todesursache ist noch unbekannt.", + "example_sentence_english": "The cause of death is still unknown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11437 + }, + { + "word": "Tresor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safe;vault", + "romanization": "Tresor", + "example_sentence_native": "Die Wertsachen sind im Tresor.", + "example_sentence_english": "The valuables are in the safe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11439 + }, + { + "word": "ungünstig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfavorable", + "romanization": "ungünstig", + "example_sentence_native": "Das Wetter ist heute ungünstig für einen Ausflug.", + "example_sentence_english": "The weather is unfavorable for an excursion today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11441 + }, + { + "word": "unterirdisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underground", + "romanization": "unterirdisch", + "example_sentence_native": "Es gibt ein unterirdisches Tunnelsystem.", + "example_sentence_english": "There is an underground tunnel system.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11442 + }, + { + "word": "Untertan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subject (of a monarch)", + "romanization": "Untertan", + "example_sentence_native": "Der König regierte über seine Untertanen.", + "example_sentence_english": "The king ruled over his subjects.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11443 + }, + { + "word": "Unterwelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "underworld", + "romanization": "Unterwelt", + "example_sentence_native": "In der Mythologie ist die Unterwelt das Reich der Toten.", + "example_sentence_english": "In mythology, the underworld is the realm of the dead.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11444 + }, + { + "word": "Unwissenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorance", + "romanization": "Unwissenheit", + "example_sentence_native": "Seine Unwissenheit über das Thema war offensichtlich.", + "example_sentence_english": "His ignorance about the topic was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11445 + }, + { + "word": "verabreden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to arrange to meet", + "romanization": "verabreden", + "example_sentence_native": "Wir müssen uns für nächste Woche verabreden.", + "example_sentence_english": "We need to arrange to meet for next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11446 + }, + { + "word": "Verkleidung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disguise;costume", + "romanization": "Verkleidung", + "example_sentence_native": "Sie trug eine lustige Verkleidung zur Party.", + "example_sentence_english": "She wore a funny costume to the party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11447 + }, + { + "word": "Verschärfung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tightening;intensification", + "romanization": "Verschärfung", + "example_sentence_native": "Die Verschärfung der Regeln war notwendig.", + "example_sentence_english": "The tightening of the rules was necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11448 + }, + { + "word": "vielseitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "versatile", + "romanization": "vielseitig", + "example_sentence_native": "Er ist ein sehr vielseitiger Künstler.", + "example_sentence_english": "He is a very versatile artist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11449 + }, + { + "word": "Vinyl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vinyl", + "romanization": "Vinyl", + "example_sentence_native": "Er sammelt alte Schallplatten aus Vinyl.", + "example_sentence_english": "He collects old vinyl records.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11450 + }, + { + "word": "Vizemeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "runner-up;vice-champion", + "romanization": "Vizemeister", + "example_sentence_native": "Das Team wurde Vizemeister in der Liga.", + "example_sentence_english": "The team became runner-up in the league.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11451 + }, + { + "word": "Vorläufer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precursor;forerunner", + "romanization": "Vorläufer", + "example_sentence_native": "Dieses Modell ist der Vorläufer der aktuellen Version.", + "example_sentence_english": "This model is the precursor to the current version.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11452 + }, + { + "word": "vorbeugen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prevent", + "romanization": "vorbeugen", + "example_sentence_native": "Man sollte Krankheiten vorbeugen.", + "example_sentence_english": "One should prevent illnesses.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "beugen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11453 + }, + { + "word": "Waffenruhe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ceasefire;truce", + "romanization": "Waffenruhe", + "example_sentence_native": "Die Parteien einigten sich auf eine Waffenruhe.", + "example_sentence_english": "The parties agreed on a ceasefire.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11454 + }, + { + "word": "Wahlperiode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislative period;term of office", + "romanization": "Wahlperiode", + "example_sentence_native": "Die nächste Wahlperiode beginnt im Herbst.", + "example_sentence_english": "The next legislative period begins in autumn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11455 + }, + { + "word": "weiterführen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue;to carry on", + "romanization": "weiterführen", + "example_sentence_native": "Wir müssen die Diskussion weiterführen.", + "example_sentence_english": "We need to continue the discussion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11456 + }, + { + "word": "Wellenlänge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wavelength", + "romanization": "Wellenlänge", + "example_sentence_native": "Wir sind auf der gleichen Wellenlänge.", + "example_sentence_english": "We are on the same wavelength.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11457 + }, + { + "word": "wiederfinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find again;to rediscover", + "romanization": "wiederfinden", + "example_sentence_native": "Ich hoffe, ich kann meine Schlüssel wiederfinden.", + "example_sentence_english": "I hope I can find my keys again.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wieder", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11459 + }, + { + "word": "Wintersemester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winter semester", + "romanization": "Wintersemester", + "example_sentence_native": "Das Wintersemester beginnt im Oktober.", + "example_sentence_english": "The winter semester begins in October.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11461 + }, + { + "word": "Abflug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "departure", + "romanization": "Abflug", + "example_sentence_native": "Der Abflug ist um 10 Uhr morgens.", + "example_sentence_english": "The departure is at 10 AM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11463 + }, + { + "word": "Abspaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secession;split-off", + "romanization": "Abspaltung", + "example_sentence_native": "Die Abspaltung der Gruppe führte zu internen Konflikten.", + "example_sentence_english": "The split-off of the group led to internal conflicts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11464 + }, + { + "word": "Altersgruppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "age group", + "romanization": "Altersgruppe", + "example_sentence_native": "Diese Altersgruppe ist besonders aktiv.", + "example_sentence_english": "This age group is particularly active.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11467 + }, + { + "word": "ansteigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rise;to increase", + "romanization": "ansteigen", + "example_sentence_native": "Die Temperaturen werden morgen ansteigen.", + "example_sentence_english": "The temperatures will rise tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "steigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11469 + }, + { + "word": "anmerken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remark;to note", + "romanization": "anmerken", + "example_sentence_native": "Ich möchte anmerken, dass das nicht stimmt.", + "example_sentence_english": "I would like to remark that this is not true.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "merken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11471 + }, + { + "word": "Armband", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bracelet;wristband", + "romanization": "Armband", + "example_sentence_native": "Sie trägt ein schönes Armband.", + "example_sentence_english": "She is wearing a beautiful bracelet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11472 + }, + { + "word": "Atemzug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath (inhalation)", + "romanization": "Atemzug", + "example_sentence_native": "Er nahm einen tiefen Atemzug.", + "example_sentence_english": "He took a deep breath.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11474 + }, + { + "word": "Atmung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breathing;respiration", + "romanization": "Atmung", + "example_sentence_native": "Die Atmung ist ein lebenswichtiger Prozess.", + "example_sentence_english": "Breathing is a vital process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11475 + }, + { + "word": "aufschreiben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to write down;to note", + "romanization": "aufschreiben", + "example_sentence_native": "Bitte schreiben Sie sich das auf.", + "example_sentence_english": "Please write that down.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11476 + }, + { + "word": "auslaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leak;to run out;to expire", + "romanization": "auslaufen", + "example_sentence_native": "Das Wasser läuft aus dem Hahn aus.", + "example_sentence_english": "The water is leaking from the tap.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11477 + }, + { + "word": "Australier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Australian (person)", + "romanization": "Australier", + "example_sentence_native": "Er ist ein Australier.", + "example_sentence_english": "He is an Australian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11478 + }, + { + "word": "Authentizität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authenticity", + "romanization": "Authentizität", + "example_sentence_native": "Die Authentizität des Dokuments wurde bestätigt.", + "example_sentence_english": "The authenticity of the document was confirmed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11479 + }, + { + "word": "Automobilindustrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automotive industry", + "romanization": "Automobilindustrie", + "example_sentence_native": "Die Automobilindustrie ist ein wichtiger Wirtschaftszweig in Deutschland.", + "example_sentence_english": "The automotive industry is an important economic sector in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11480 + }, + { + "word": "Beeinträchtigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impairment", + "romanization": "Beeinträchtigung", + "example_sentence_native": "Die Lärmbelästigung führte zu einer Beeinträchtigung der Lebensqualität.", + "example_sentence_english": "The noise pollution led to an impairment of the quality of life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11483 + }, + { + "word": "beladen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to load", + "romanization": "beladen", + "example_sentence_native": "Wir müssen den Lastwagen mit Kisten beladen.", + "example_sentence_english": "We have to load the truck with boxes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11484 + }, + { + "word": "Belgier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Belgian (person)", + "romanization": "Belgier", + "example_sentence_native": "Er ist ein Belgier und spricht Französisch.", + "example_sentence_english": "He is a Belgian and speaks French.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11485 + }, + { + "word": "botanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botanical", + "romanization": "botanisch", + "example_sentence_native": "Der botanische Garten ist sehr schön.", + "example_sentence_english": "The botanical garden is very beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11487 + }, + { + "word": "breiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to widen;to spread", + "romanization": "breiten", + "example_sentence_native": "Er musste die Arme breiten, um sie zu umarmen.", + "example_sentence_english": "He had to spread his arms to hug her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11490 + }, + { + "word": "Canyon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canyon", + "romanization": "Canyon", + "example_sentence_native": "Der Grand Canyon ist sehr beeindruckend.", + "example_sentence_english": "The Grand Canyon is very impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11492 + }, + { + "word": "Codex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "codex;code (of conduct)", + "romanization": "Codex", + "example_sentence_native": "Der Codex enthält wichtige Regeln für das Verhalten.", + "example_sentence_english": "The codex contains important rules for conduct.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11493 + }, + { + "word": "Dachboden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "attic;loft", + "romanization": "Dachboden", + "example_sentence_native": "Wir haben alte Möbel auf dem Dachboden gelagert.", + "example_sentence_english": "We stored old furniture in the attic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11498 + }, + { + "word": "Diagramm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagram", + "romanization": "Diagramm", + "example_sentence_native": "Das Diagramm zeigt die Verkaufszahlen.", + "example_sentence_english": "The diagram shows the sales figures.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11501 + }, + { + "word": "Dienststelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "office;department;agency", + "romanization": "Dienststelle", + "example_sentence_native": "Er arbeitet bei einer staatlichen Dienststelle.", + "example_sentence_english": "He works at a government agency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11502 + }, + { + "word": "Dirndl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traditional Bavarian dress", + "romanization": "Dirndl", + "example_sentence_native": "Sie trug ein schönes Dirndl zum Oktoberfest.", + "example_sentence_english": "She wore a beautiful Dirndl to Oktoberfest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11503 + }, + { + "word": "Eifer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zeal;eagerness;enthusiasm", + "romanization": "Eifer", + "example_sentence_native": "Er arbeitete mit großem Eifer an dem Projekt.", + "example_sentence_english": "He worked with great zeal on the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11504 + }, + { + "word": "erahnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sense;to guess;to surmise", + "romanization": "erahnen", + "example_sentence_native": "Ich konnte seine Absicht erahnen.", + "example_sentence_english": "I could sense his intention.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11507 + }, + { + "word": "ergehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fare;to be issued", + "romanization": "ergehen", + "example_sentence_native": "Wie ist es dir ergangen? Das Urteil ist ergangen.", + "example_sentence_english": "How have you been? The judgment has been issued.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11508 + }, + { + "word": "Eule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "owl", + "romanization": "Eule", + "example_sentence_native": "Die Eule sitzt auf dem Baum.", + "example_sentence_english": "The owl is sitting on the tree.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11509 + }, + { + "word": "Europawahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "European election", + "romanization": "Europawahl", + "example_sentence_native": "Die Europawahl findet alle fünf Jahre statt.", + "example_sentence_english": "The European election takes place every five years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11510 + }, + { + "word": "experimentell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experimental", + "romanization": "experimentell", + "example_sentence_native": "Das ist ein experimenteller Ansatz.", + "example_sentence_english": "That is an experimental approach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11513 + }, + { + "word": "fies", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nasty;mean;foul", + "romanization": "fies", + "example_sentence_native": "Das war ein fieser Trick.", + "example_sentence_english": "That was a nasty trick.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11514 + }, + { + "word": "Gefolge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retinue;entourage;consequence", + "romanization": "Gefolge", + "example_sentence_native": "Der König reiste mit seinem Gefolge.", + "example_sentence_english": "The king traveled with his retinue.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11516 + }, + { + "word": "segnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bless", + "romanization": "segnen", + "example_sentence_native": "Der Priester segnete die Gläubigen.", + "example_sentence_english": "The priest blessed the faithful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11519 + }, + { + "word": "gewahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perceive;to become aware of", + "romanization": "gewahren", + "example_sentence_native": "Er konnte die Gefahr nicht rechtzeitig gewahren.", + "example_sentence_english": "He could not perceive the danger in time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11521 + }, + { + "word": "wandeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to walk;to change;to transform", + "romanization": "wandeln", + "example_sentence_native": "Die Raupe wird sich in einen Schmetterling wandeln.", + "example_sentence_english": "The caterpillar will transform into a butterfly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11522 + }, + { + "word": "Gratulation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congratulation", + "romanization": "Gratulation", + "example_sentence_native": "Herzliche Gratulation zum Geburtstag!", + "example_sentence_english": "Heartfelt congratulation on your birthday!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11524 + }, + { + "word": "heiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerful;bright;serene", + "romanization": "heiter", + "example_sentence_native": "Das Wetter ist heute heiter und sonnig.", + "example_sentence_english": "The weather is bright and sunny today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11529 + }, + { + "word": "hetero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterosexual", + "romanization": "hetero", + "example_sentence_native": "Das Wort 'hetero' ist eine Kurzform von 'heterosexuell'.", + "example_sentence_english": "The word 'hetero' is a short form of 'heterosexual'.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11531 + }, + { + "word": "Heu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hay", + "romanization": "Heu", + "example_sentence_native": "Die Pferde fressen frisches Heu.", + "example_sentence_english": "The horses eat fresh hay.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11532 + }, + { + "word": "Hommage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homage;tribute", + "romanization": "Hommage", + "example_sentence_native": "Der Künstler widmete sein Werk als Hommage an seinen Lehrer.", + "example_sentence_english": "The artist dedicated his work as an homage to his teacher.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11533 + }, + { + "word": "Input", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "input", + "romanization": "Input", + "example_sentence_native": "Wir brauchen mehr Input für dieses Projekt.", + "example_sentence_english": "We need more input for this project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11534 + }, + { + "word": "Kanzleramt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Chancellery;Chancellor's Office", + "romanization": "Kanzleramt", + "example_sentence_native": "Das Kanzleramt befindet sich in Berlin.", + "example_sentence_english": "The Chancellery is located in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11536 + }, + { + "word": "Kaufhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "department store", + "romanization": "Kaufhaus", + "example_sentence_native": "Wir gehen ins Kaufhaus, um Kleidung zu kaufen.", + "example_sentence_english": "We are going to the department store to buy clothes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11537 + }, + { + "word": "Kleber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glue;adhesive", + "romanization": "Kleber", + "example_sentence_native": "Der Kleber hält sehr gut.", + "example_sentence_english": "The glue holds very well.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11540 + }, + { + "word": "Krankenwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambulance", + "romanization": "Krankenwagen", + "example_sentence_native": "Ein Krankenwagen fuhr schnell vorbei.", + "example_sentence_english": "An ambulance drove by quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11541 + }, + { + "word": "landesweit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationwide", + "romanization": "landesweit", + "example_sentence_native": "Die Umfrage wurde landesweit durchgeführt.", + "example_sentence_english": "The survey was conducted nationwide.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11543 + }, + { + "word": "lebenslang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifelong;for life", + "romanization": "lebenslang", + "example_sentence_native": "Er erhielt eine lebenslange Haftstrafe.", + "example_sentence_english": "He received a lifelong prison sentence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11545 + }, + { + "word": "lüften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to air out;to ventilate", + "romanization": "lüften", + "example_sentence_native": "Wir sollten das Zimmer lüften.", + "example_sentence_english": "We should air out the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11546 + }, + { + "word": "mau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poor;meager;weak (informal)", + "romanization": "mau", + "example_sentence_native": "Die Stimmung war ziemlich mau.", + "example_sentence_english": "The mood was quite poor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11547 + }, + { + "word": "misshandeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to mistreat;to abuse", + "romanization": "misshandeln", + "example_sentence_native": "Es ist verboten, Tiere zu misshandeln.", + "example_sentence_english": "It is forbidden to mistreat animals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11550 + }, + { + "word": "missverstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to misunderstand", + "romanization": "missverstehen", + "example_sentence_native": "Ich habe dich missverstanden.", + "example_sentence_english": "I misunderstood you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11551 + }, + { + "word": "Mittelfeldspieler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "midfielder", + "romanization": "Mittelfeldspieler", + "example_sentence_native": "Der Mittelfeldspieler erzielte ein Tor.", + "example_sentence_english": "The midfielder scored a goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11552 + }, + { + "word": "mitwirken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to participate;to contribute", + "romanization": "mitwirken", + "example_sentence_native": "Er möchte an dem Projekt mitwirken.", + "example_sentence_english": "He wants to participate in the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "wirken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11553 + }, + { + "word": "Motion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "motion (e.g.;in physics;or a parliamentary motion)", + "romanization": "Motion", + "example_sentence_native": "Die Motion wurde im Parlament angenommen.", + "example_sentence_english": "The motion was accepted in parliament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11555 + }, + { + "word": "Muskulatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musculature;muscles (collective)", + "romanization": "Muskulatur", + "example_sentence_native": "Regelmäßiges Training stärkt die Muskulatur.", + "example_sentence_english": "Regular training strengthens the musculature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11556 + }, + { + "word": "Mystery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mystery (genre)", + "romanization": "Mystery", + "example_sentence_native": "Ich lese gerne Mystery-Romane.", + "example_sentence_english": "I like to read mystery novels.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11557 + }, + { + "word": "Nachschub", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resupply;replenishment;reinforcements", + "romanization": "Nachschub", + "example_sentence_native": "Die Truppen warteten auf Nachschub.", + "example_sentence_english": "The troops waited for resupply.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11558 + }, + { + "word": "naturgemäss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturally;by nature", + "romanization": "naturgemäss", + "example_sentence_native": "Naturgemäss sind Menschen soziale Wesen.", + "example_sentence_english": "Naturally, humans are social beings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11560 + }, + { + "word": "Neuling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "newcomer;novice", + "romanization": "Neuling", + "example_sentence_native": "Der Neuling brauchte etwas Hilfe, um sich zurechtzufinden.", + "example_sentence_english": "The newcomer needed some help to find his way around.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11561 + }, + { + "word": "Notarzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency doctor;paramedic", + "romanization": "Notarzt", + "example_sentence_native": "Der Notarzt kam schnell zum Unfallort.", + "example_sentence_english": "The emergency doctor quickly arrived at the accident scene.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11563 + }, + { + "word": "Notwehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-defense", + "romanization": "Notwehr", + "example_sentence_native": "Er handelte in Notwehr, um sich zu schützen.", + "example_sentence_english": "He acted in self-defense to protect himself.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11564 + }, + { + "word": "obliegen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be incumbent upon;to be one's duty", + "romanization": "obliegen", + "example_sentence_native": "Es obliegt ihm, diese Entscheidung zu treffen.", + "example_sentence_english": "It is incumbent upon him to make this decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11566 + }, + { + "word": "Parkett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parquet (floor);stalls (theatre)", + "romanization": "Parkett", + "example_sentence_native": "Das alte Haus hatte wunderschönes Parkett.", + "example_sentence_english": "The old house had beautiful parquet flooring.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11568 + }, + { + "word": "protestantisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestant", + "romanization": "protestantisch", + "example_sentence_native": "Er gehört der protestantischen Kirche an.", + "example_sentence_english": "He belongs to the Protestant church.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11570 + }, + { + "word": "Push", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "push;boost", + "romanization": "Push", + "example_sentence_native": "Er gab dem Projekt einen letzten Push.", + "example_sentence_english": "He gave the project a final push.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11572 + }, + { + "word": "Rage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rage;fury", + "romanization": "Rage", + "example_sentence_native": "Er geriet in Rage über die Ungerechtigkeit.", + "example_sentence_english": "He flew into a rage about the injustice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11573 + }, + { + "word": "rar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rare;scarce", + "romanization": "rar", + "example_sentence_native": "Solche Gelegenheiten sind rar.", + "example_sentence_english": "Such opportunities are rare.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11574 + }, + { + "word": "rechtskräftig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legally binding;final (judgment)", + "romanization": "rechtskräftig", + "example_sentence_native": "Das Urteil ist nun rechtskräftig.", + "example_sentence_english": "The judgment is now legally binding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11576 + }, + { + "word": "Repräsentant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representative", + "romanization": "Repräsentant", + "example_sentence_native": "Er ist der Repräsentant seiner Firma.", + "example_sentence_english": "He is the representative of his company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11577 + }, + { + "word": "respektlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disrespectful", + "romanization": "respektlos", + "example_sentence_native": "Sein Verhalten war respektlos gegenüber den Älteren.", + "example_sentence_english": "His behavior was disrespectful towards the elders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11578 + }, + { + "word": "Sachbearbeiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clerk;administrator;case worker", + "romanization": "Sachbearbeiter", + "example_sentence_native": "Der Sachbearbeiter half mir bei meinem Antrag.", + "example_sentence_english": "The clerk helped me with my application.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11579 + }, + { + "word": "Sandwich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sandwich", + "romanization": "Sandwich", + "example_sentence_native": "Ich esse ein Sandwich zum Mittagessen.", + "example_sentence_english": "I eat a sandwich for lunch.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11580 + }, + { + "word": "Schaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaft;stock (of a rifle);bootleg", + "romanization": "Schaft", + "example_sentence_native": "Der Schaft des Gewehrs ist aus Holz.", + "example_sentence_english": "The stock of the rifle is made of wood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11581 + }, + { + "word": "Scherbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shard;fragment;piece (of broken glass;pottery)", + "romanization": "Scherbe", + "example_sentence_native": "Vorsicht, da liegt eine Glasscherbe auf dem Boden.", + "example_sentence_english": "Be careful, there's a shard of glass on the floor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11582 + }, + { + "word": "schlüpfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slip;to hatch (out of an egg)", + "romanization": "schlüpfen", + "example_sentence_native": "Das Küken ist gerade aus dem Ei geschlüpft.", + "example_sentence_english": "The chick just hatched from the egg.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11583 + }, + { + "word": "Schmiede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forge;smithy", + "romanization": "Schmiede", + "example_sentence_native": "Der Hufschmied arbeitet in seiner Schmiede.", + "example_sentence_english": "The farrier works in his smithy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11584 + }, + { + "word": "Schott", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bulkhead;coaming (nautical)", + "romanization": "Schott", + "example_sentence_native": "Das Schott trennt die beiden Abteile des Schiffes.", + "example_sentence_english": "The bulkhead separates the two compartments of the ship.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11585 + }, + { + "word": "Schub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "push;thrust;impetus", + "romanization": "Schub", + "example_sentence_native": "Der Motor erzeugt einen starken Schub.", + "example_sentence_english": "The engine generates a strong thrust.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11586 + }, + { + "word": "Schwiegersohn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "son-in-law", + "romanization": "Schwiegersohn", + "example_sentence_native": "Mein Schwiegersohn ist sehr nett.", + "example_sentence_english": "My son-in-law is very nice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11588 + }, + { + "word": "Sommerzeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "summertime;daylight saving time", + "romanization": "Sommerzeit", + "example_sentence_native": "In der Sommerzeit stellen wir die Uhren eine Stunde vor.", + "example_sentence_english": "In summertime, we set the clocks forward one hour.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11590 + }, + { + "word": "Spitzenkandidat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lead candidate;top candidate", + "romanization": "Spitzenkandidat", + "example_sentence_native": "Der Spitzenkandidat der Partei hielt eine Rede.", + "example_sentence_english": "The party's lead candidate gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11591 + }, + { + "word": "sprachlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speechless", + "romanization": "sprachlos", + "example_sentence_native": "Sie war sprachlos vor Überraschung.", + "example_sentence_english": "She was speechless with surprise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11592 + }, + { + "word": "Steg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footbridge;jetty;pier;bridge (of a string instrument)", + "romanization": "Steg", + "example_sentence_native": "Wir gingen über den kleinen Steg zum See.", + "example_sentence_english": "We walked over the small footbridge to the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11593 + }, + { + "word": "Steuerhinterziehung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax evasion", + "romanization": "Steuerhinterziehung", + "example_sentence_native": "Steuerhinterziehung ist in Deutschland eine Straftat.", + "example_sentence_english": "Tax evasion is a criminal offense in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11594 + }, + { + "word": "Stollen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tunnel;gallery (mining);Christmas stollen (cake)", + "romanization": "Stollen", + "example_sentence_native": "Zu Weihnachten essen wir gerne Stollen.", + "example_sentence_english": "At Christmas, we like to eat stollen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11595 + }, + { + "word": "Strang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strand;rope;string;skein", + "romanization": "Strang", + "example_sentence_native": "Er zog an einem Strang, um das Boot zu befestigen.", + "example_sentence_english": "He pulled on a rope to secure the boat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11596 + }, + { + "word": "traumhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fantastic;dreamlike;wonderful", + "romanization": "traumhaft", + "example_sentence_native": "Wir hatten einen traumhaften Urlaub in den Bergen.", + "example_sentence_english": "We had a fantastic holiday in the mountains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11599 + }, + { + "word": "Traurigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sadness", + "romanization": "Traurigkeit", + "example_sentence_native": "Ihre Traurigkeit war spürbar.", + "example_sentence_english": "Her sadness was palpable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11600 + }, + { + "word": "tropisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tropical", + "romanization": "tropisch", + "example_sentence_native": "Wir besuchten einen tropischen Regenwald.", + "example_sentence_english": "We visited a tropical rainforest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11601 + }, + { + "word": "turnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to do gymnastics;to exercise", + "romanization": "turnen", + "example_sentence_native": "Sie liebt es, im Garten zu turnen.", + "example_sentence_english": "She loves to exercise in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11602 + }, + { + "word": "umständlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cumbersome;complicated;elaborate", + "romanization": "umständlich", + "example_sentence_native": "Der Prozess war sehr umständlich.", + "example_sentence_english": "The process was very cumbersome.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11603 + }, + { + "word": "unbegrenzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlimited;unrestricted", + "romanization": "unbegrenzt", + "example_sentence_native": "Die Möglichkeiten sind unbegrenzt.", + "example_sentence_english": "The possibilities are unlimited.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11604 + }, + { + "word": "unerlässlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indispensable;essential", + "romanization": "unerlässlich", + "example_sentence_native": "Wasser ist für das Leben unerlässlich.", + "example_sentence_english": "Water is essential for life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11605 + }, + { + "word": "unhöflich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impolite;rude", + "romanization": "unhöflich", + "example_sentence_native": "Es war unhöflich, ihn zu unterbrechen.", + "example_sentence_english": "It was impolite to interrupt him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11606 + }, + { + "word": "Unkraut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weed", + "romanization": "Unkraut", + "example_sentence_native": "Ich muss das Unkraut aus dem Garten entfernen.", + "example_sentence_english": "I need to remove the weeds from the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11607 + }, + { + "word": "Unterzeichnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signing;signature (act of signing)", + "romanization": "Unterzeichnung", + "example_sentence_native": "Die Unterzeichnung des Vertrags ist für morgen geplant.", + "example_sentence_english": "The signing of the contract is scheduled for tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11608 + }, + { + "word": "unwohl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unwell;uneasy", + "romanization": "unwohl", + "example_sentence_native": "Mir ist unwohl.", + "example_sentence_english": "I feel unwell.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11609 + }, + { + "word": "Verringerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction;decrease", + "romanization": "Verringerung", + "example_sentence_native": "Es gab eine deutliche Verringerung der Kosten.", + "example_sentence_english": "There was a significant reduction in costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11612 + }, + { + "word": "Verschwörungstheorie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspiracy theory", + "romanization": "Verschwörungstheorie", + "example_sentence_native": "Er glaubt an jede Verschwörungstheorie.", + "example_sentence_english": "He believes every conspiracy theory.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11613 + }, + { + "word": "Verwirklichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "realization;implementation", + "romanization": "Verwirklichung", + "example_sentence_native": "Die Verwirklichung des Projekts dauerte lange.", + "example_sentence_english": "The realization of the project took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11614 + }, + { + "word": "Verzehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumption", + "romanization": "Verzehr", + "example_sentence_native": "Der Verzehr von Alkohol ist hier verboten.", + "example_sentence_english": "The consumption of alcohol is forbidden here.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11615 + }, + { + "word": "Verzeihung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forgiveness;pardon", + "romanization": "Verzeihung", + "example_sentence_native": "Ich bitte um Verzeihung.", + "example_sentence_english": "I ask for forgiveness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11616 + }, + { + "word": "Vollgas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full throttle", + "romanization": "Vollgas", + "example_sentence_native": "Er gab Vollgas, um das Rennen zu gewinnen.", + "example_sentence_english": "He gave full throttle to win the race.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11617 + }, + { + "word": "Vorabend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eve;evening before", + "romanization": "Vorabend", + "example_sentence_native": "Am Vorabend der Hochzeit waren alle aufgeregt.", + "example_sentence_english": "On the eve of the wedding, everyone was excited.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11618 + }, + { + "word": "vorhersagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to predict;to forecast", + "romanization": "vorhersagen", + "example_sentence_native": "Das Wetter ist schwer vorherzusagen.", + "example_sentence_english": "The weather is difficult to predict.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "sagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11619 + }, + { + "word": "vorsätzlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentional;deliberate", + "romanization": "vorsätzlich", + "example_sentence_native": "Er handelte vorsätzlich.", + "example_sentence_english": "He acted intentionally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11620 + }, + { + "word": "Vorzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sign;omen;indication", + "romanization": "Vorzeichen", + "example_sentence_native": "Das war ein schlechtes Vorzeichen.", + "example_sentence_english": "That was a bad omen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11621 + }, + { + "word": "Warentest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "product test", + "romanization": "Warentest", + "example_sentence_native": "Der Warentest ergab gute Ergebnisse.", + "example_sentence_english": "The product test yielded good results.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11622 + }, + { + "word": "Wegweiser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signpost;guide", + "romanization": "Wegweiser", + "example_sentence_native": "Wir folgten dem Wegweiser zum Dorf.", + "example_sentence_english": "We followed the signpost to the village.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11623 + }, + { + "word": "Weinberg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vineyard", + "romanization": "Weinberg", + "example_sentence_native": "Der Weinberg liegt auf einem Hügel.", + "example_sentence_english": "The vineyard is on a hill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11624 + }, + { + "word": "weitreichend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "far-reaching;extensive", + "romanization": "weitreichend", + "example_sentence_native": "Das hat weitreichende Konsequenzen.", + "example_sentence_english": "That has far-reaching consequences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11625 + }, + { + "word": "Wortwahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choice of words;diction", + "romanization": "Wortwahl", + "example_sentence_native": "Seine Wortwahl war sehr präzise.", + "example_sentence_english": "His choice of words was very precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11629 + }, + { + "word": "zeitgemäss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemporary;up-to-date", + "romanization": "zeitgemäss", + "example_sentence_native": "Das Design ist sehr zeitgemäß.", + "example_sentence_english": "The design is very contemporary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11631 + }, + { + "word": "zuziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw shut;to consult;to contract (a disease)", + "romanization": "zuziehen", + "example_sentence_native": "Bitte ziehen Sie die Tür zu.", + "example_sentence_english": "Please close the door.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11632 + }, + { + "word": "ästhetisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aesthetic", + "romanization": "ästhetisch", + "example_sentence_native": "Das Gemälde hat einen hohen ästhetischen Wert.", + "example_sentence_english": "The painting has high aesthetic value.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11633 + }, + { + "word": "Überarbeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revision;overhaul;overwork", + "romanization": "Überarbeitung", + "example_sentence_native": "Die Überarbeitung des Textes ist notwendig.", + "example_sentence_english": "The revision of the text is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11634 + }, + { + "word": "übereinander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one on top of another;stacked", + "romanization": "übereinander", + "example_sentence_native": "Die Bücher lagen übereinander.", + "example_sentence_english": "The books lay one on top of another.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11635 + }, + { + "word": "abrunden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to round off;to complete", + "romanization": "abrunden", + "example_sentence_native": "Das Dessert rundet das Menü ab.", + "example_sentence_english": "The dessert rounds off the menu.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "runden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11636 + }, + { + "word": "Abkehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "turning away;renunciation;abandonment", + "romanization": "Abkehr", + "example_sentence_native": "Es gab eine Abkehr von alten Traditionen.", + "example_sentence_english": "There was a turning away from old traditions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11637 + }, + { + "word": "Ablösung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replacement;detachment;relief", + "romanization": "Ablösung", + "example_sentence_native": "Die Ablösung der alten Mannschaft ist geplant.", + "example_sentence_english": "The replacement of the old team is planned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11638 + }, + { + "word": "abrufbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retrievable;callable", + "romanization": "abrufbar", + "example_sentence_native": "Die Informationen sind online abrufbar.", + "example_sentence_english": "The information is retrievable online.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11639 + }, + { + "word": "Aktivierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activation", + "romanization": "Aktivierung", + "example_sentence_native": "Die Aktivierung des Systems dauerte einige Minuten.", + "example_sentence_english": "The activation of the system took a few minutes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11641 + }, + { + "word": "Ambition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambition", + "romanization": "Ambition", + "example_sentence_native": "Sie hat große Ambitionen für ihre Karriere.", + "example_sentence_english": "She has great ambitions for her career.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11644 + }, + { + "word": "Ananas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pineapple", + "romanization": "Ananas", + "example_sentence_native": "Ich esse gerne Ananas.", + "example_sentence_english": "I like to eat pineapple.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11645 + }, + { + "word": "andersrum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the other way around;vice versa", + "romanization": "andersrum", + "example_sentence_native": "Es ist nicht so, sondern andersrum.", + "example_sentence_english": "It's not like that, but the other way around.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11646 + }, + { + "word": "Anwältin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female lawyer", + "romanization": "Anwältin", + "example_sentence_native": "Meine Schwester ist eine Anwältin.", + "example_sentence_english": "My sister is a female lawyer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11648 + }, + { + "word": "Arbeitslosengeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment benefit", + "romanization": "Arbeitslosengeld", + "example_sentence_native": "Er beantragt Arbeitslosengeld.", + "example_sentence_english": "He is applying for unemployment benefit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11649 + }, + { + "word": "assoziieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to associate", + "romanization": "assoziieren", + "example_sentence_native": "Man assoziiert diesen Geruch mit Sommer.", + "example_sentence_english": "One associates this smell with summer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11650 + }, + { + "word": "aufständisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rebellious;insurgent", + "romanization": "aufständisch", + "example_sentence_native": "Die aufständischen Truppen marschierten auf die Hauptstadt zu.", + "example_sentence_english": "The rebellious troops marched towards the capital.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11652 + }, + { + "word": "aufwärmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to warm up (food;oneself)", + "romanization": "aufwärmen", + "example_sentence_native": "Ich muss das Essen aufwärmen.", + "example_sentence_english": "I need to warm up the food.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "wärmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11653 + }, + { + "word": "augenscheinlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apparent;obvious", + "romanization": "augenscheinlich", + "example_sentence_native": "Die Ursache des Problems ist augenscheinlich.", + "example_sentence_english": "The cause of the problem is apparent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11656 + }, + { + "word": "ausbreiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spread out;to extend", + "romanization": "ausbreiten", + "example_sentence_native": "Die Decke breitete sich auf dem Boden aus.", + "example_sentence_english": "The blanket spread out on the floor.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "breiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11657 + }, + { + "word": "Ausweisung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expulsion;deportation;identification", + "romanization": "Ausweisung", + "example_sentence_native": "Die Ausweisung des Ausländers wurde angeordnet.", + "example_sentence_english": "The expulsion of the foreigner was ordered.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11658 + }, + { + "word": "bange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxious;afraid", + "romanization": "bange", + "example_sentence_native": "Mir ist bange vor der Prüfung.", + "example_sentence_english": "I am anxious about the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11659 + }, + { + "word": "Bataillon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "battalion", + "romanization": "Bataillon", + "example_sentence_native": "Das Bataillon marschierte durch die Stadt.", + "example_sentence_english": "The battalion marched through the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11660 + }, + { + "word": "baulich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structural;architectural", + "romanization": "baulich", + "example_sentence_native": "Es gibt bauliche Mängel an dem Gebäude.", + "example_sentence_english": "There are structural defects in the building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11661 + }, + { + "word": "beben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tremble;to quake", + "romanization": "beben", + "example_sentence_native": "Die Erde begann zu beben.", + "example_sentence_english": "The earth began to tremble.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11662 + }, + { + "word": "belangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concern;to prosecute;to sue", + "romanization": "belangen", + "example_sentence_native": "Das belange mich nicht.", + "example_sentence_english": "That does not concern me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11664 + }, + { + "word": "besagt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aforementioned;said", + "romanization": "besagt", + "example_sentence_native": "Der besagte Mann ist nicht erschienen.", + "example_sentence_english": "The aforementioned man did not appear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11665 + }, + { + "word": "Besen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broom", + "romanization": "Besen", + "example_sentence_native": "Sie fegte den Boden mit einem Besen.", + "example_sentence_english": "She swept the floor with a broom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11666 + }, + { + "word": "bewährt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proven;tried and tested", + "romanization": "bewährt", + "example_sentence_native": "Das ist eine bewährte Methode.", + "example_sentence_english": "That is a proven method.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11667 + }, + { + "word": "Biber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaver", + "romanization": "Biber", + "example_sentence_native": "Der Biber baut einen Damm.", + "example_sentence_english": "The beaver builds a dam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11668 + }, + { + "word": "Bibliographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bibliography", + "romanization": "Bibliographie", + "example_sentence_native": "Die Bibliographie am Ende des Buches ist sehr hilfreich.", + "example_sentence_english": "The bibliography at the end of the book is very helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11669 + }, + { + "word": "Biker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biker", + "romanization": "Biker", + "example_sentence_native": "Die Biker trafen sich am Wochenende.", + "example_sentence_english": "The bikers met on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11670 + }, + { + "word": "Blaulicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blue light (e.g.;on emergency vehicles)", + "romanization": "Blaulicht", + "example_sentence_native": "Wir hörten die Sirenen und sahen das Blaulicht.", + "example_sentence_english": "We heard the sirens and saw the blue light.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11671 + }, + { + "word": "Bruderschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brotherhood;fraternity", + "romanization": "Bruderschaft", + "example_sentence_native": "Sie schworen ewige Bruderschaft.", + "example_sentence_english": "They swore eternal brotherhood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11673 + }, + { + "word": "Brut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brood;offspring (animals);spawn", + "romanization": "Brut", + "example_sentence_native": "Die Vogelmutter füttert ihre Brut.", + "example_sentence_english": "The mother bird feeds her brood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11674 + }, + { + "word": "böhmisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bohemian", + "romanization": "böhmisch", + "example_sentence_native": "Er liebt böhmische Musik.", + "example_sentence_english": "He loves Bohemian music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11677 + }, + { + "word": "charakterisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to characterize", + "romanization": "charakterisieren", + "example_sentence_native": "Wie würden Sie diese Person charakterisieren?", + "example_sentence_english": "How would you characterize this person?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11679 + }, + { + "word": "dastehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stand there;to appear", + "romanization": "dastehen", + "example_sentence_native": "Er muss jetzt stark dastehen.", + "example_sentence_english": "He has to appear strong now.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "da", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11682 + }, + { + "word": "Deo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deodorant", + "romanization": "Deo", + "example_sentence_native": "Ich brauche neues Deo.", + "example_sentence_english": "I need new deodorant.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11684 + }, + { + "word": "Dessert", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dessert", + "romanization": "Dessert", + "example_sentence_native": "Das Dessert war sehr lecker.", + "example_sentence_english": "The dessert was very delicious.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11685 + }, + { + "word": "Dino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dino (dinosaur)", + "romanization": "Dino", + "example_sentence_native": "Mein Sohn liebt Dinos.", + "example_sentence_english": "My son loves dinos.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11686 + }, + { + "word": "durchkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get through;to manage", + "romanization": "durchkommen", + "example_sentence_native": "Wir müssen versuchen, durchzukommen.", + "example_sentence_english": "We have to try to get through.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11688 + }, + { + "word": "einordnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to classify;to categorize;to merge (traffic)", + "romanization": "einordnen", + "example_sentence_native": "Man muss die Informationen richtig einordnen.", + "example_sentence_english": "One must classify the information correctly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "ordnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11689 + }, + { + "word": "Eintragung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entry;registration", + "romanization": "Eintragung", + "example_sentence_native": "Die Eintragung ins Register ist obligatorisch.", + "example_sentence_english": "The entry in the register is obligatory.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11690 + }, + { + "word": "Ekel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgust;loathing", + "romanization": "Ekel", + "example_sentence_native": "Er empfand tiefen Ekel vor der Situation.", + "example_sentence_english": "He felt deep disgust for the situation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11691 + }, + { + "word": "erscheinend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearing;emerging", + "romanization": "erscheinend", + "example_sentence_native": "Die erscheinende Sonne wärmte die Erde.", + "example_sentence_english": "The appearing sun warmed the earth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11693 + }, + { + "word": "Examen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exam;examination", + "romanization": "Examen", + "example_sentence_native": "Sie hat ihr Examen bestanden.", + "example_sentence_english": "She passed her exam.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11695 + }, + { + "word": "Exchange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange", + "romanization": "Exchange", + "example_sentence_native": "Wir nutzen Microsoft Exchange für E-Mails.", + "example_sentence_english": "We use Microsoft Exchange for emails.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11696 + }, + { + "word": "Falke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "falcon", + "romanization": "Falke", + "example_sentence_native": "Der Falke kreiste hoch am Himmel.", + "example_sentence_english": "The falcon circled high in the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11697 + }, + { + "word": "fassungslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speechless;stunned;bewildered", + "romanization": "fassungslos", + "example_sentence_native": "Sie war fassungslos über die Nachricht.", + "example_sentence_english": "She was speechless about the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11699 + }, + { + "word": "finnisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Finnish", + "romanization": "finnisch", + "example_sentence_native": "Sie spricht fließend Finnisch.", + "example_sentence_english": "She speaks fluent Finnish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11700 + }, + { + "word": "flüchtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleeting;transient", + "romanization": "flüchtig", + "example_sentence_native": "Er war nur einen flüchtigen Blick wert.", + "example_sentence_english": "He was only worth a fleeting glance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11701 + }, + { + "word": "Fussweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footpath;sidewalk", + "romanization": "Fussweg", + "example_sentence_native": "Der Fussweg ist heute sehr belebt.", + "example_sentence_english": "The footpath is very busy today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11703 + }, + { + "word": "Gastfreundschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospitality", + "romanization": "Gastfreundschaft", + "example_sentence_native": "Ihre Gastfreundschaft war überwältigend.", + "example_sentence_english": "Their hospitality was overwhelming.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11704 + }, + { + "word": "Gau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "region;district", + "romanization": "Gau", + "example_sentence_native": "Der Gau war eine historische Verwaltungseinheit.", + "example_sentence_english": "The Gau was a historical administrative unit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11705 + }, + { + "word": "Gefährte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "companion;comrade", + "romanization": "Gefährte", + "example_sentence_native": "Er war ein treuer Gefährte auf ihrer Reise.", + "example_sentence_english": "He was a loyal companion on their journey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11706 + }, + { + "word": "Gentleman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gentleman", + "romanization": "Gentleman", + "example_sentence_native": "Er ist ein wahrer Gentleman.", + "example_sentence_english": "He is a true gentleman.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11707 + }, + { + "word": "reizen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to irritate;to attract", + "romanization": "reizen", + "example_sentence_native": "Der Rauch reizt meine Augen.", + "example_sentence_english": "The smoke irritates my eyes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11708 + }, + { + "word": "Gesamtschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comprehensive school", + "romanization": "Gesamtschule", + "example_sentence_native": "Meine Kinder gehen auf die Gesamtschule.", + "example_sentence_english": "My children go to the comprehensive school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11709 + }, + { + "word": "schädigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to damage;to harm", + "romanization": "schädigen", + "example_sentence_native": "Rauchen kann die Gesundheit schädigen.", + "example_sentence_english": "Smoking can harm health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11710 + }, + { + "word": "Gespür", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intuition;sense", + "romanization": "Gespür", + "example_sentence_native": "Sie hat ein gutes Gespür für Farben.", + "example_sentence_english": "She has a good sense for colors.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11711 + }, + { + "word": "giftig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poisonous;toxic", + "romanization": "giftig", + "example_sentence_native": "Diese Pflanze ist giftig.", + "example_sentence_english": "This plant is poisonous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11712 + }, + { + "word": "Hauptversammlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "general meeting;AGM", + "romanization": "Hauptversammlung", + "example_sentence_native": "Die Hauptversammlung findet nächste Woche statt.", + "example_sentence_english": "The general meeting will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11715 + }, + { + "word": "Hirte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shepherd", + "romanization": "Hirte", + "example_sentence_native": "Der Hirte führte seine Schafe auf die Weide.", + "example_sentence_english": "The shepherd led his sheep to the pasture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11717 + }, + { + "word": "Hochhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "high-rise building;skyscraper", + "romanization": "Hochhaus", + "example_sentence_native": "Sie wohnen in einem Hochhaus im Stadtzentrum.", + "example_sentence_english": "They live in a high-rise building in the city center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11718 + }, + { + "word": "Horde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horde", + "romanization": "Horde", + "example_sentence_native": "Eine Horde Touristen strömte in die Stadt.", + "example_sentence_english": "A horde of tourists streamed into the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11720 + }, + { + "word": "Hummel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bumblebee", + "romanization": "Hummel", + "example_sentence_native": "Eine dicke Hummel summte um die Blumen.", + "example_sentence_english": "A fat bumblebee buzzed around the flowers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11721 + }, + { + "word": "Höchstgeschwindigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maximum speed", + "romanization": "Höchstgeschwindigkeit", + "example_sentence_native": "Die Höchstgeschwindigkeit auf dieser Straße beträgt 100 km/h.", + "example_sentence_english": "The maximum speed on this road is 100 km/h.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11722 + }, + { + "word": "Idol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idol", + "romanization": "Idol", + "example_sentence_native": "Er war mein Idol, als ich jung war.", + "example_sentence_english": "He was my idol when I was young.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11723 + }, + { + "word": "illustrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illustrate", + "romanization": "illustrieren", + "example_sentence_native": "Der Künstler wird das Buch illustrieren.", + "example_sentence_english": "The artist will illustrate the book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11724 + }, + { + "word": "Kalb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calf", + "romanization": "Kalb", + "example_sentence_native": "Das kleine Kalb folgte seiner Mutter auf der Weide.", + "example_sentence_english": "The little calf followed its mother in the pasture.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11728 + }, + { + "word": "Kantine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canteen", + "romanization": "Kantine", + "example_sentence_native": "Wir essen unser Mittagessen in der Kantine.", + "example_sentence_english": "We eat our lunch in the canteen.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11730 + }, + { + "word": "Kavallerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cavalry", + "romanization": "Kavallerie", + "example_sentence_native": "Die Kavallerie griff den Feind an.", + "example_sentence_english": "The cavalry attacked the enemy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11731 + }, + { + "word": "Keim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "germ;sprout", + "romanization": "Keim", + "example_sentence_native": "Hygiene ist wichtig, um die Ausbreitung von Keimen zu verhindern.", + "example_sentence_english": "Hygiene is important to prevent the spread of germs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11733 + }, + { + "word": "Körpergewicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "body weight", + "romanization": "Körpergewicht", + "example_sentence_native": "Er achtet auf sein Körpergewicht.", + "example_sentence_english": "He pays attention to his body weight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11736 + }, + { + "word": "Küstenwache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coast guard", + "romanization": "Küstenwache", + "example_sentence_native": "Die Küstenwache rettete die Schiffbrüchigen.", + "example_sentence_english": "The coast guard rescued the shipwrecked people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11737 + }, + { + "word": "Lama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "llama", + "romanization": "Lama", + "example_sentence_native": "Das Lama ist ein Tier aus Südamerika.", + "example_sentence_english": "The llama is an animal from South America.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11738 + }, + { + "word": "Lebensbedingung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "living condition", + "romanization": "Lebensbedingung", + "example_sentence_native": "Die Lebensbedingungen in dieser Region sind schwierig.", + "example_sentence_english": "The living conditions in this region are difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11739 + }, + { + "word": "Lehrplan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curriculum", + "romanization": "Lehrplan", + "example_sentence_native": "Der neue Lehrplan wurde vorgestellt.", + "example_sentence_english": "The new curriculum was presented.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11740 + }, + { + "word": "Luftfahrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aviation", + "romanization": "Luftfahrt", + "example_sentence_native": "Die Luftfahrt ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "Aviation is an important economic sector.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11743 + }, + { + "word": "Marktführer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market leader", + "romanization": "Marktführer", + "example_sentence_native": "Das Unternehmen ist der Marktführer in dieser Branche.", + "example_sentence_english": "The company is the market leader in this industry.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11744 + }, + { + "word": "Mineralwasser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mineral water", + "romanization": "Mineralwasser", + "example_sentence_native": "Ich trinke gerne Mineralwasser.", + "example_sentence_english": "I like to drink mineral water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11746 + }, + { + "word": "Mittelklasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle class", + "romanization": "Mittelklasse", + "example_sentence_native": "Viele Familien gehören zur Mittelklasse.", + "example_sentence_english": "Many families belong to the middle class.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11747 + }, + { + "word": "mittwochs", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on Wednesdays", + "romanization": "mittwochs", + "example_sentence_native": "Wir treffen uns mittwochs im Café.", + "example_sentence_english": "We meet on Wednesdays at the café.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11748 + }, + { + "word": "nachschauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look up", + "romanization": "nachschauen", + "example_sentence_native": "Ich muss das im Wörterbuch nachschauen.", + "example_sentence_english": "I have to look that up in the dictionary.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11749 + }, + { + "word": "Neuordnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reorganization", + "romanization": "Neuordnung", + "example_sentence_native": "Die Neuordnung der Abteilung ist notwendig.", + "example_sentence_english": "The reorganization of the department is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11750 + }, + { + "word": "Perfektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfection", + "romanization": "Perfektion", + "example_sentence_native": "Sie strebt nach Perfektion in ihrer Arbeit.", + "example_sentence_english": "She strives for perfection in her work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11757 + }, + { + "word": "Pionier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pioneer", + "romanization": "Pionier", + "example_sentence_native": "Er war ein Pionier auf diesem Gebiet.", + "example_sentence_english": "He was a pioneer in this field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11760 + }, + { + "word": "Piste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slope;runway", + "romanization": "Piste", + "example_sentence_native": "Die Skifahrer genossen die Piste.", + "example_sentence_english": "The skiers enjoyed the slope.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11761 + }, + { + "word": "Plenum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plenary session", + "romanization": "Plenum", + "example_sentence_native": "Das Plenum tagte bis spät in die Nacht.", + "example_sentence_english": "The plenary session met late into the night.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11763 + }, + { + "word": "Plädoyer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plea;closing argument", + "romanization": "Plädoyer", + "example_sentence_native": "Sein Plädoyer war sehr überzeugend.", + "example_sentence_english": "His plea was very convincing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11764 + }, + { + "word": "predigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preach", + "romanization": "predigen", + "example_sentence_native": "Der Pfarrer predigt jeden Sonntag.", + "example_sentence_english": "The pastor preaches every Sunday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11765 + }, + { + "word": "Pulli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweater;pullover", + "romanization": "Pulli", + "example_sentence_native": "Ich trage einen warmen Pulli.", + "example_sentence_english": "I am wearing a warm sweater.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11767 + }, + { + "word": "Pädagoge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educator;pedagogue", + "romanization": "Pädagoge", + "example_sentence_native": "Der Pädagoge kümmerte sich um die Schüler.", + "example_sentence_english": "The educator took care of the students.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11768 + }, + { + "word": "Quantität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quantity", + "romanization": "Quantität", + "example_sentence_native": "Die Quantität der Waren war beeindruckend.", + "example_sentence_english": "The quantity of goods was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11769 + }, + { + "word": "Quarantäne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarantine", + "romanization": "Quarantäne", + "example_sentence_native": "Er musste in Quarantäne bleiben.", + "example_sentence_english": "He had to stay in quarantine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11770 + }, + { + "word": "Quest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quest", + "romanization": "Quest", + "example_sentence_native": "Die Helden begaben sich auf eine gefährliche Quest.", + "example_sentence_english": "The heroes embarked on a dangerous quest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11771 + }, + { + "word": "Rangliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranking;league table", + "romanization": "Rangliste", + "example_sentence_native": "Er steht an der Spitze der Rangliste.", + "example_sentence_english": "He is at the top of the ranking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11772 + }, + { + "word": "Razzia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid", + "romanization": "Razzia", + "example_sentence_native": "Die Polizei führte eine Razzia durch.", + "example_sentence_english": "The police carried out a raid.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11774 + }, + { + "word": "restlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completely;entirely", + "romanization": "restlos", + "example_sentence_native": "Die Vorräte waren restlos aufgebraucht.", + "example_sentence_english": "The supplies were completely used up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11777 + }, + { + "word": "riskant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risky", + "romanization": "riskant", + "example_sentence_native": "Das war ein sehr riskantes Manöver.", + "example_sentence_english": "That was a very risky maneuver.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11779 + }, + { + "word": "rumänisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Romanian", + "romanization": "rumänisch", + "example_sentence_native": "Sie spricht Rumänisch.", + "example_sentence_english": "She speaks Romanian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11781 + }, + { + "word": "Rückfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "return journey", + "romanization": "Rückfahrt", + "example_sentence_native": "Die Rückfahrt dauerte länger als erwartet.", + "example_sentence_english": "The return journey took longer than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11782 + }, + { + "word": "Schadensersatz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensation for damages", + "romanization": "Schadensersatz", + "example_sentence_native": "Er forderte Schadensersatz für den erlittenen Schaden.", + "example_sentence_english": "He demanded compensation for the damage suffered.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11784 + }, + { + "word": "Schlachtfeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battlefield", + "romanization": "Schlachtfeld", + "example_sentence_native": "Das alte Schlachtfeld ist heute ein Denkmal.", + "example_sentence_english": "The old battlefield is now a monument.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11785 + }, + { + "word": "schlagartig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden", + "romanization": "schlagartig", + "example_sentence_native": "Das Wetter änderte sich schlagartig.", + "example_sentence_english": "The weather changed suddenly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11786 + }, + { + "word": "Schmied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blacksmith", + "romanization": "Schmied", + "example_sentence_native": "Der Schmied reparierte das alte Tor.", + "example_sentence_english": "The blacksmith repaired the old gate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11787 + }, + { + "word": "Schwiegermutter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mother-in-law", + "romanization": "Schwiegermutter", + "example_sentence_native": "Meine Schwiegermutter besucht uns nächste Woche.", + "example_sentence_english": "My mother-in-law is visiting us next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11788 + }, + { + "word": "selig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blissful", + "romanization": "selig", + "example_sentence_native": "Sie sah selig aus, als sie schlief.", + "example_sentence_english": "She looked blissful as she slept.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11790 + }, + { + "word": "Sonntagabend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Sunday evening", + "romanization": "Sonntagabend", + "example_sentence_native": "Wir treffen uns am Sonntagabend.", + "example_sentence_english": "We meet on Sunday evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11793 + }, + { + "word": "spektakulär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spectacular", + "romanization": "spektakulär", + "example_sentence_native": "Das Feuerwerk war wirklich spektakulär.", + "example_sentence_english": "The fireworks were truly spectacular.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11794 + }, + { + "word": "Steinzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Stone Age", + "romanization": "Steinzeit", + "example_sentence_native": "In der Steinzeit lebten die Menschen in Höhlen.", + "example_sentence_english": "In the Stone Age, people lived in caves.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11796 + }, + { + "word": "Strafverfolgung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosecution", + "romanization": "Strafverfolgung", + "example_sentence_native": "Die Strafverfolgung wurde eingeleitet.", + "example_sentence_english": "The prosecution was initiated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11798 + }, + { + "word": "streiken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strike", + "romanization": "streiken", + "example_sentence_native": "Die Arbeiter beschlossen zu streiken.", + "example_sentence_english": "The workers decided to strike.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11799 + }, + { + "word": "String", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "string;cord", + "romanization": "String", + "example_sentence_native": "Der String ist gerissen.", + "example_sentence_english": "The string is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11800 + }, + { + "word": "Stute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mare", + "romanization": "Stute", + "example_sentence_native": "Die Stute graste auf der Weide.", + "example_sentence_english": "The mare grazed in the pasture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11801 + }, + { + "word": "tagtäglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily;day in;day out", + "romanization": "tagtäglich", + "example_sentence_native": "Er geht tagtäglich zur Arbeit.", + "example_sentence_english": "He goes to work daily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11803 + }, + { + "word": "ticken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tick", + "romanization": "ticken", + "example_sentence_native": "Die Uhr tickt laut.", + "example_sentence_english": "The clock ticks loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11804 + }, + { + "word": "Tribut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribute", + "romanization": "Tribut", + "example_sentence_native": "Sie zollten den Gefallenen Tribut.", + "example_sentence_english": "They paid tribute to the fallen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11805 + }, + { + "word": "Tribüne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grandstand;tribune", + "romanization": "Tribüne", + "example_sentence_native": "Die Fans saßen auf der Tribüne.", + "example_sentence_english": "The fans sat on the grandstand.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11806 + }, + { + "word": "typischerweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typically", + "romanization": "typischerweise", + "example_sentence_native": "Typischerweise regnet es im Herbst viel.", + "example_sentence_english": "Typically, it rains a lot in autumn.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11808 + }, + { + "word": "Ufo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "UFO", + "romanization": "Ufo", + "example_sentence_native": "Hat jemand ein Ufo gesehen?", + "example_sentence_english": "Has anyone seen a UFO?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11809 + }, + { + "word": "ungewohnt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unusual;unaccustomed", + "romanization": "ungewohnt", + "example_sentence_native": "Das Gefühl war ungewohnt.", + "example_sentence_english": "The feeling was unusual.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11810 + }, + { + "word": "Upload", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upload", + "romanization": "Upload", + "example_sentence_native": "Der Upload der Datei dauerte lange.", + "example_sentence_english": "The upload of the file took a long time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11812 + }, + { + "word": "vergraben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bury", + "romanization": "vergraben", + "example_sentence_native": "Der Hund vergrub seinen Knochen.", + "example_sentence_english": "The dog buried its bone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11814 + }, + { + "word": "verlockend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tempting;enticing", + "romanization": "verlockend", + "example_sentence_native": "Das Angebot war sehr verlockend.", + "example_sentence_english": "The offer was very tempting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11815 + }, + { + "word": "Vermächtnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legacy;bequest", + "romanization": "Vermächtnis", + "example_sentence_native": "Sein Vermächtnis wird lange in Erinnerung bleiben.", + "example_sentence_english": "His legacy will be remembered for a long time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11816 + }, + { + "word": "Verschlechterung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deterioration;worsening", + "romanization": "Verschlechterung", + "example_sentence_native": "Es gab eine Verschlechterung des Wetters.", + "example_sentence_english": "There was a deterioration of the weather.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11817 + }, + { + "word": "verschleppen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delay;to abduct;to drag off", + "romanization": "verschleppen", + "example_sentence_native": "Die Krankheit wurde verschleppt.", + "example_sentence_english": "The illness was delayed/neglected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11818 + }, + { + "word": "Versprechung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promise", + "romanization": "Versprechung", + "example_sentence_native": "Er hielt seine Versprechung.", + "example_sentence_english": "He kept his promise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11819 + }, + { + "word": "Verwaltungsgericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrative court", + "romanization": "Verwaltungsgericht", + "example_sentence_native": "Das Verwaltungsgericht hat die Klage abgewiesen.", + "example_sentence_english": "The administrative court dismissed the lawsuit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11820 + }, + { + "word": "vintage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vintage", + "romanization": "vintage", + "example_sentence_native": "Sie trägt gerne Vintage-Kleidung.", + "example_sentence_english": "She likes to wear vintage clothes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11821 + }, + { + "word": "Vizekanzler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Vice Chancellor", + "romanization": "Vizekanzler", + "example_sentence_native": "Der Vizekanzler hielt eine Rede.", + "example_sentence_english": "The Vice Chancellor gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11822 + }, + { + "word": "vollbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accomplish", + "romanization": "vollbringen", + "example_sentence_native": "Er wollte eine große Tat vollbringen.", + "example_sentence_english": "He wanted to accomplish a great deed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11824 + }, + { + "word": "vorbeikommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come by", + "romanization": "vorbeikommen", + "example_sentence_native": "Kannst du später vorbeikommen?", + "example_sentence_english": "Can you come by later?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vorbei", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11825 + }, + { + "word": "Vorführung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstration", + "romanization": "Vorführung", + "example_sentence_native": "Die Vorführung des neuen Produkts war beeindruckend.", + "example_sentence_english": "The demonstration of the new product was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11826 + }, + { + "word": "Walzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waltz", + "romanization": "Walzer", + "example_sentence_native": "Sie tanzten einen Wiener Walzer.", + "example_sentence_english": "They danced a Viennese waltz.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11828 + }, + { + "word": "Weltrekord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "world record", + "romanization": "Weltrekord", + "example_sentence_native": "Er brach den Weltrekord im Marathon.", + "example_sentence_english": "He broke the world record in the marathon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11829 + }, + { + "word": "Wirkstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "active ingredient", + "romanization": "Wirkstoff", + "example_sentence_native": "Der Wirkstoff in diesem Medikament ist sehr potent.", + "example_sentence_english": "The active ingredient in this medicine is very potent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11831 + }, + { + "word": "wirtschaften", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manage economically", + "romanization": "wirtschaften", + "example_sentence_native": "Man muss sparsam wirtschaften.", + "example_sentence_english": "One must manage economically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11832 + }, + { + "word": "wohlfühlen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to feel comfortable", + "romanization": "wohlfühlen", + "example_sentence_native": "Ich fühle mich hier sehr wohl.", + "example_sentence_english": "I feel very comfortable here.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wohl", + "base_verb": "fühlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11833 + }, + { + "word": "zufügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inflict", + "romanization": "zufügen", + "example_sentence_native": "Er wollte niemandem Schaden zufügen.", + "example_sentence_english": "He didn't want to inflict harm on anyone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "fügen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11834 + }, + { + "word": "zurückzahlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pay back", + "romanization": "zurückzahlen", + "example_sentence_native": "Ich muss das Geld bis nächste Woche zurückzahlen.", + "example_sentence_english": "I have to pay back the money by next week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "zahlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11835 + }, + { + "word": "Zustellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delivery", + "romanization": "Zustellung", + "example_sentence_native": "Die Zustellung des Pakets erfolgte pünktlich.", + "example_sentence_english": "The delivery of the package was on time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11836 + }, + { + "word": "zweierlei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of two kinds", + "romanization": "zweierlei", + "example_sentence_native": "Das ist zweierlei Maß.", + "example_sentence_english": "That is a double standard.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11837 + }, + { + "word": "zünden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ignite", + "romanization": "zünden", + "example_sentence_native": "Der Motor zündete nicht.", + "example_sentence_english": "The engine didn't ignite.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11838 + }, + { + "word": "äquivalent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equivalent", + "romanization": "äquivalent", + "example_sentence_native": "Das ist ein äquivalenter Wert.", + "example_sentence_english": "That is an equivalent value.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11839 + }, + { + "word": "übermässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessive;immoderate", + "romanization": "übermässig", + "example_sentence_native": "Er hat übermässig viel gegessen.", + "example_sentence_english": "He ate excessively much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11840 + }, + { + "word": "Afghane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Afghan (person)", + "romanization": "Afghane", + "example_sentence_native": "Der Afghane sprach fliessend Deutsch.", + "example_sentence_english": "The Afghan spoke fluent German.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11841 + }, + { + "word": "alarmieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alarm;to alert", + "romanization": "alarmieren", + "example_sentence_native": "Die Polizei wurde sofort alarmiert.", + "example_sentence_english": "The police were immediately alerted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11842 + }, + { + "word": "allerhand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all sorts of;various", + "romanization": "allerhand", + "example_sentence_native": "Er hatte allerhand zu erzählen.", + "example_sentence_english": "He had all sorts of things to tell.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11843 + }, + { + "word": "amtierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incumbent;current (in office)", + "romanization": "amtierend", + "example_sentence_native": "Der amtierende Präsident hielt eine Rede.", + "example_sentence_english": "The incumbent president gave a speech.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11844 + }, + { + "word": "anlangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concern;to arrive", + "romanization": "anlangen", + "example_sentence_native": "Was das Projekt anlangt, so sind wir im Zeitplan.", + "example_sentence_english": "As far as the project is concerned, we are on schedule.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "langen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11845 + }, + { + "word": "Ansiedlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settlement;colonization", + "romanization": "Ansiedlung", + "example_sentence_native": "Die neue Ansiedlung bietet viele Arbeitsplätze.", + "example_sentence_english": "The new settlement offers many jobs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11846 + }, + { + "word": "anstehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to queue;to be pending", + "romanization": "anstehen", + "example_sentence_native": "Wir mussten lange anstehen, um die Tickets zu bekommen.", + "example_sentence_english": "We had to queue for a long time to get the tickets.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11847 + }, + { + "word": "Antragsteller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicant;petitioner", + "romanization": "Antragsteller", + "example_sentence_native": "Der Antragsteller wartet auf eine Antwort.", + "example_sentence_english": "The applicant is waiting for an answer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11848 + }, + { + "word": "Aquarium", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aquarium", + "romanization": "Aquarium", + "example_sentence_native": "Im Wohnzimmer steht ein grosses Aquarium.", + "example_sentence_english": "There is a large aquarium in the living room.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11849 + }, + { + "word": "aufbrauchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to use up;to consume", + "romanization": "aufbrauchen", + "example_sentence_native": "Wir müssen die Vorräte aufbrauchen, bevor sie schlecht werden.", + "example_sentence_english": "We have to use up the supplies before they go bad.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "brauchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11852 + }, + { + "word": "aufladen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to charge (battery);to load", + "romanization": "aufladen", + "example_sentence_native": "Ich muss mein Handy aufladen.", + "example_sentence_english": "I need to charge my phone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "laden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11853 + }, + { + "word": "Aufschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "information;clarification;insight", + "romanization": "Aufschluss", + "example_sentence_native": "Die Untersuchung gab Aufschluss über die Ursache.", + "example_sentence_english": "The investigation provided insight into the cause.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11854 + }, + { + "word": "Aula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assembly hall;auditorium", + "romanization": "Aula", + "example_sentence_native": "Die Abschlussfeier findet in der Aula statt.", + "example_sentence_english": "The graduation ceremony takes place in the auditorium.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11855 + }, + { + "word": "ausgehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outgoing;originating from", + "romanization": "ausgehend", + "example_sentence_native": "Alle ausgehenden Anrufe werden protokolliert.", + "example_sentence_english": "All outgoing calls are logged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11856 + }, + { + "word": "beieinander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "together;close to each other", + "romanization": "beieinander", + "example_sentence_native": "Sie sassen eng beieinander.", + "example_sentence_english": "They sat close together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 11857 + }, + { + "word": "Betriebskosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operating costs;running costs", + "romanization": "Betriebskosten", + "example_sentence_native": "Die Betriebskosten sind in diesem Jahr gestiegen.", + "example_sentence_english": "The operating costs have increased this year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11858 + }, + { + "word": "Betätigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activity;operation", + "romanization": "Betätigung", + "example_sentence_native": "Die Betätigung des Schalters löste den Alarm aus.", + "example_sentence_english": "The activation of the switch triggered the alarm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11860 + }, + { + "word": "bewusstlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unconscious", + "romanization": "bewusstlos", + "example_sentence_native": "Nach dem Unfall war er bewusstlos.", + "example_sentence_english": "After the accident, he was unconscious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11861 + }, + { + "word": "Buchmesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "book fair", + "romanization": "Buchmesse", + "example_sentence_native": "Die Frankfurter Buchmesse ist sehr bekannt.", + "example_sentence_english": "The Frankfurt Book Fair is very well-known.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11863 + }, + { + "word": "Burnout", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burnout", + "romanization": "Burnout", + "example_sentence_native": "Viele Menschen leiden heutzutage unter Burnout.", + "example_sentence_english": "Many people suffer from burnout nowadays.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11864 + }, + { + "word": "Consulting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consulting", + "romanization": "Consulting", + "example_sentence_native": "Er arbeitet in einem Consulting-Unternehmen.", + "example_sentence_english": "He works in a consulting company.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11873 + }, + { + "word": "darlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to explain;to present", + "romanization": "darlegen", + "example_sentence_native": "Er konnte seine Argumente klar darlegen.", + "example_sentence_english": "He could clearly present his arguments.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dar", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11874 + }, + { + "word": "Demut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humility", + "romanization": "Demut", + "example_sentence_native": "Demut ist eine wichtige Tugend.", + "example_sentence_english": "Humility is an important virtue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11875 + }, + { + "word": "Dürre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drought", + "romanization": "Dürre", + "example_sentence_native": "Die Dürre hat die Ernte stark beeinträchtigt.", + "example_sentence_english": "The drought severely affected the harvest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11880 + }, + { + "word": "egoistisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selfish", + "romanization": "egoistisch", + "example_sentence_native": "Er ist manchmal sehr egoistisch.", + "example_sentence_english": "He is sometimes very selfish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11882 + }, + { + "word": "Eingangsbereich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entrance area", + "romanization": "Eingangsbereich", + "example_sentence_native": "Bitte warten Sie im Eingangsbereich.", + "example_sentence_english": "Please wait in the entrance area.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11883 + }, + { + "word": "Einhorn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unicorn", + "romanization": "Einhorn", + "example_sentence_native": "Viele Kinder lieben Geschichten über Einhörner.", + "example_sentence_english": "Many children love stories about unicorns.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11884 + }, + { + "word": "Einstufung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classification", + "romanization": "Einstufung", + "example_sentence_native": "Die Einstufung des Dokuments ist streng vertraulich.", + "example_sentence_english": "The classification of the document is strictly confidential.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11885 + }, + { + "word": "Einvernehmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agreement", + "romanization": "Einvernehmen", + "example_sentence_native": "Sie erreichten ein Einvernehmen über die Bedingungen.", + "example_sentence_english": "They reached an agreement on the terms.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11886 + }, + { + "word": "Elektromobilität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electromobility", + "romanization": "Elektromobilität", + "example_sentence_native": "Die Elektromobilität gewinnt immer mehr an Bedeutung.", + "example_sentence_english": "Electromobility is becoming increasingly important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11887 + }, + { + "word": "erbrechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vomit", + "romanization": "erbrechen", + "example_sentence_native": "Nach dem Essen musste er sich erbrechen.", + "example_sentence_english": "After eating, he had to vomit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11888 + }, + { + "word": "Erlös", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proceeds", + "romanization": "Erlös", + "example_sentence_native": "Der Erlös aus dem Verkauf ging an eine Wohltätigkeitsorganisation.", + "example_sentence_english": "The proceeds from the sale went to a charity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11889 + }, + { + "word": "Erschöpfung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhaustion", + "romanization": "Erschöpfung", + "example_sentence_native": "Nach dem Marathon fühlte sie tiefe Erschöpfung.", + "example_sentence_english": "After the marathon, she felt deep exhaustion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11890 + }, + { + "word": "Fahrstuhl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elevator", + "romanization": "Fahrstuhl", + "example_sentence_native": "Nehmen Sie den Fahrstuhl in den dritten Stock.", + "example_sentence_english": "Take the elevator to the third floor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11891 + }, + { + "word": "Farmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farmer", + "romanization": "Farmer", + "example_sentence_native": "Der Farmer arbeitet hart auf seinem Feld.", + "example_sentence_english": "The farmer works hard in his field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11892 + }, + { + "word": "fatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatal", + "romanization": "fatal", + "example_sentence_native": "Das war ein fataler Fehler.", + "example_sentence_english": "That was a fatal mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11893 + }, + { + "word": "faulen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rot", + "romanization": "faulen", + "example_sentence_native": "Das Obst beginnt zu faulen.", + "example_sentence_english": "The fruit is starting to rot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11894 + }, + { + "word": "Feinstaub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fine dust", + "romanization": "Feinstaub", + "example_sentence_native": "Die Feinstaubbelastung in der Stadt ist hoch.", + "example_sentence_english": "The fine dust pollution in the city is high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11895 + }, + { + "word": "filtern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to filter", + "romanization": "filtern", + "example_sentence_native": "Man muss das Wasser filtern, bevor man es trinkt.", + "example_sentence_english": "You have to filter the water before drinking it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11897 + }, + { + "word": "flächendeckend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationwide", + "romanization": "flächendeckend", + "example_sentence_native": "Das Mobilfunknetz ist flächendeckend verfügbar.", + "example_sentence_english": "The mobile network is available nationwide.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11899 + }, + { + "word": "Fortführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuation", + "romanization": "Fortführung", + "example_sentence_native": "Die Fortführung des Projekts ist wichtig.", + "example_sentence_english": "The continuation of the project is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11901 + }, + { + "word": "Fortpflanzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproduction", + "romanization": "Fortpflanzung", + "example_sentence_native": "Die Fortpflanzung ist ein grundlegender biologischer Prozess.", + "example_sentence_english": "Reproduction is a fundamental biological process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11902 + }, + { + "word": "Frauenquote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "women's quota", + "romanization": "Frauenquote", + "example_sentence_native": "Die Diskussion über die Frauenquote ist aktuell.", + "example_sentence_english": "The discussion about the women's quota is current.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11904 + }, + { + "word": "Fürsorge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "care", + "romanization": "Fürsorge", + "example_sentence_native": "Die Fürsorge für ältere Menschen ist wichtig.", + "example_sentence_english": "Care for elderly people is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11907 + }, + { + "word": "gliedern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to structure", + "romanization": "gliedern", + "example_sentence_native": "Man sollte den Text klar gliedern.", + "example_sentence_english": "One should clearly structure the text.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11909 + }, + { + "word": "getrost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidently", + "romanization": "getrost", + "example_sentence_native": "Du kannst getrost davon ausgehen, dass es klappt.", + "example_sentence_english": "You can confidently assume that it will work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11911 + }, + { + "word": "gewalttätig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violent", + "romanization": "gewalttätig", + "example_sentence_native": "Gewalttätiges Verhalten ist inakzeptabel.", + "example_sentence_english": "Violent behavior is unacceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11912 + }, + { + "word": "Grenzwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limit value", + "romanization": "Grenzwert", + "example_sentence_native": "Der Grenzwert für Schadstoffe wurde überschritten.", + "example_sentence_english": "The limit value for pollutants was exceeded.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11914 + }, + { + "word": "harmonisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmonious", + "romanization": "harmonisch", + "example_sentence_native": "Sie leben in einer harmonischen Beziehung.", + "example_sentence_english": "They live in a harmonious relationship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11918 + }, + { + "word": "Hebamme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midwife", + "romanization": "Hebamme", + "example_sentence_native": "Die Hebamme hat uns sehr geholfen.", + "example_sentence_english": "The midwife helped us a lot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11919 + }, + { + "word": "Hinterland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hinterland;remote area", + "romanization": "Hinterland", + "example_sentence_native": "Das Hinterland ist oft schwer zugänglich.", + "example_sentence_english": "The hinterland is often difficult to access.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11923 + }, + { + "word": "Hündin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female dog;bitch", + "romanization": "Hündin", + "example_sentence_native": "Die Hündin hat Welpen bekommen.", + "example_sentence_english": "The female dog had puppies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11926 + }, + { + "word": "inakzeptabel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unacceptable", + "romanization": "inakzeptabel", + "example_sentence_native": "Dieses Verhalten ist völlig inakzeptabel.", + "example_sentence_english": "This behavior is completely unacceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11927 + }, + { + "word": "Karren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cart;wagon", + "romanization": "Karren", + "example_sentence_native": "Der Bauer zog den Karren über das Feld.", + "example_sentence_english": "The farmer pulled the cart across the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11933 + }, + { + "word": "Ketchup", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ketchup", + "romanization": "Ketchup", + "example_sentence_native": "Möchtest du Ketchup zu deinen Pommes?", + "example_sentence_english": "Do you want ketchup with your fries?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11935 + }, + { + "word": "kindisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childish", + "romanization": "kindisch", + "example_sentence_native": "Sein Verhalten war ziemlich kindisch.", + "example_sentence_english": "His behavior was quite childish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11936 + }, + { + "word": "Klientel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clientele", + "romanization": "Klientel", + "example_sentence_native": "Das Restaurant hat eine sehr anspruchsvolle Klientel.", + "example_sentence_english": "The restaurant has a very demanding clientele.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11937 + }, + { + "word": "Koalitionsvertrag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coalition agreement", + "romanization": "Koalitionsvertrag", + "example_sentence_native": "Die Parteien haben einen Koalitionsvertrag unterzeichnet.", + "example_sentence_english": "The parties have signed a coalition agreement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11938 + }, + { + "word": "kognitiv", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cognitive", + "romanization": "kognitiv", + "example_sentence_native": "Er hat kognitive Fähigkeiten, die über dem Durchschnitt liegen.", + "example_sentence_english": "He has cognitive abilities that are above average.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11939 + }, + { + "word": "Kommandeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commander", + "romanization": "Kommandeur", + "example_sentence_native": "Der Kommandeur gab den Befehl zum Angriff.", + "example_sentence_english": "The commander gave the order to attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11940 + }, + { + "word": "komponieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compose", + "romanization": "komponieren", + "example_sentence_native": "Er liebt es, Musik zu komponieren.", + "example_sentence_english": "He loves to compose music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11941 + }, + { + "word": "konsumieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consume", + "romanization": "konsumieren", + "example_sentence_native": "Wir konsumieren zu viel Plastik.", + "example_sentence_english": "We consume too much plastic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11942 + }, + { + "word": "Kundin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female customer", + "romanization": "Kundin", + "example_sentence_native": "Die Kundin war mit dem Service zufrieden.", + "example_sentence_english": "The female customer was satisfied with the service.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11943 + }, + { + "word": "Lagerfeuer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "campfire", + "romanization": "Lagerfeuer", + "example_sentence_native": "Wir saßen am Lagerfeuer und sangen Lieder.", + "example_sentence_english": "We sat by the campfire and sang songs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11945 + }, + { + "word": "Luftangriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "air raid", + "romanization": "Luftangriff", + "example_sentence_native": "Die Stadt erlitt einen schweren Luftangriff.", + "example_sentence_english": "The city suffered a heavy air raid.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11948 + }, + { + "word": "Marschall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marshal", + "romanization": "Marschall", + "example_sentence_native": "Der Marschall führte die Truppen in die Schlacht.", + "example_sentence_english": "The marshal led the troops into battle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11949 + }, + { + "word": "Mentor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentor", + "romanization": "Mentor", + "example_sentence_native": "Er hat einen erfahrenen Mentor gefunden.", + "example_sentence_english": "He found an experienced mentor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11954 + }, + { + "word": "minimieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to minimize", + "romanization": "minimieren", + "example_sentence_native": "Wir müssen die Risiken minimieren.", + "example_sentence_english": "We must minimize the risks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 11955 + }, + { + "word": "Muschel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shell", + "romanization": "Muschel", + "example_sentence_native": "Ich habe eine schöne Muschel am Strand gefunden.", + "example_sentence_english": "I found a beautiful shell on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11958 + }, + { + "word": "Neugestaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redesign", + "romanization": "Neugestaltung", + "example_sentence_native": "Die Neugestaltung des Parks wird bald beginnen.", + "example_sentence_english": "The redesign of the park will begin soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11960 + }, + { + "word": "Neuzugang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "new arrival", + "romanization": "Neuzugang", + "example_sentence_native": "Der Neuzugang im Team ist sehr motiviert.", + "example_sentence_english": "The new arrival in the team is very motivated.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11961 + }, + { + "word": "Nonne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nun", + "romanization": "Nonne", + "example_sentence_native": "Die Nonne lebte in einem Kloster.", + "example_sentence_english": "The nun lived in a monastery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11962 + }, + { + "word": "Normalfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "normal case", + "romanization": "Normalfall", + "example_sentence_native": "Im Normalfall dauert die Lieferung drei Tage.", + "example_sentence_english": "In the normal case, delivery takes three days.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11963 + }, + { + "word": "Norweger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Norwegian (person)", + "romanization": "Norweger", + "example_sentence_native": "Er ist ein Norweger aus Oslo.", + "example_sentence_english": "He is a Norwegian from Oslo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11964 + }, + { + "word": "Nächstenliebe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charity", + "romanization": "Nächstenliebe", + "example_sentence_native": "Nächstenliebe ist ein wichtiges Prinzip.", + "example_sentence_english": "Charity is an important principle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11966 + }, + { + "word": "Olivenöl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "olive oil", + "romanization": "Olivenöl", + "example_sentence_native": "Ich brauche Olivenöl für den Salat.", + "example_sentence_english": "I need olive oil for the salad.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11968 + }, + { + "word": "Onlineshop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "online shop", + "romanization": "Onlineshop", + "example_sentence_native": "Ich habe das Buch in einem Onlineshop gekauft.", + "example_sentence_english": "I bought the book in an online shop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11969 + }, + { + "word": "ordnungsgemäss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "properly", + "romanization": "ordnungsgemäss", + "example_sentence_native": "Die Dokumente müssen ordnungsgemäss ausgefüllt werden.", + "example_sentence_english": "The documents must be filled out properly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11971 + }, + { + "word": "Partikel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particle", + "romanization": "Partikel", + "example_sentence_native": "Eine Partikel ist ein sehr kleines Teilchen.", + "example_sentence_english": "A particle is a very small component.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11972 + }, + { + "word": "Patriot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patriot", + "romanization": "Patriot", + "example_sentence_native": "Er ist ein stolzer Patriot seines Landes.", + "example_sentence_english": "He is a proud patriot of his country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11973 + }, + { + "word": "Pfand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deposit (for bottles)", + "romanization": "Pfand", + "example_sentence_native": "Auf diese Flasche ist Pfand.", + "example_sentence_english": "There is a deposit on this bottle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11975 + }, + { + "word": "Pfefferspray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pepper spray", + "romanization": "Pfefferspray", + "example_sentence_native": "Sie trug Pfefferspray zur Selbstverteidigung.", + "example_sentence_english": "She carried pepper spray for self-defense.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11976 + }, + { + "word": "Pfeiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pillar", + "romanization": "Pfeiler", + "example_sentence_native": "Die Brücke wird von starken Pfeilern getragen.", + "example_sentence_english": "The bridge is supported by strong pillars.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11977 + }, + { + "word": "Pflegeheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing home", + "romanization": "Pflegeheim", + "example_sentence_native": "Meine Grossmutter lebt in einem Pflegeheim.", + "example_sentence_english": "My grandmother lives in a nursing home.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11978 + }, + { + "word": "Pfote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paw", + "romanization": "Pfote", + "example_sentence_native": "Der Hund gab mir seine Pfote.", + "example_sentence_english": "The dog gave me its paw.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11979 + }, + { + "word": "Phrase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phrase", + "romanization": "Phrase", + "example_sentence_native": "Diese Phrase ist sehr gebräuchlich.", + "example_sentence_english": "This phrase is very common.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11980 + }, + { + "word": "Pianist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pianist", + "romanization": "Pianist", + "example_sentence_native": "Der Pianist spielte ein wunderschönes Stück.", + "example_sentence_english": "The pianist played a beautiful piece.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11981 + }, + { + "word": "Picknick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "picnic", + "romanization": "Picknick", + "example_sentence_native": "Wir machen ein Picknick im Park.", + "example_sentence_english": "We are having a picnic in the park.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11982 + }, + { + "word": "Porter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "porter", + "romanization": "Porter", + "example_sentence_native": "Der Porter half uns mit dem Gepäck.", + "example_sentence_english": "The porter helped us with the luggage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11983 + }, + { + "word": "Preisgeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prize money", + "romanization": "Preisgeld", + "example_sentence_native": "Das Preisgeld war sehr hoch.", + "example_sentence_english": "The prize money was very high.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11984 + }, + { + "word": "Puzzle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puzzle", + "romanization": "Puzzle", + "example_sentence_native": "Ich habe ein neues Puzzle gekauft.", + "example_sentence_english": "I bought a new puzzle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11985 + }, + { + "word": "Pächter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenant", + "romanization": "Pächter", + "example_sentence_native": "Der Pächter bewirtschaftet das Land.", + "example_sentence_english": "The tenant cultivates the land.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11986 + }, + { + "word": "päpstlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "papal", + "romanization": "päpstlich", + "example_sentence_native": "Er erhielt eine päpstliche Audienz.", + "example_sentence_english": "He received a papal audience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11987 + }, + { + "word": "Quadrat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "square", + "romanization": "Quadrat", + "example_sentence_native": "Ein Quadrat hat vier gleiche Seiten.", + "example_sentence_english": "A square has four equal sides.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11988 + }, + { + "word": "Rating", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rating", + "romanization": "Rating", + "example_sentence_native": "Das Rating des Unternehmens wurde herabgestuft.", + "example_sentence_english": "The company's rating was downgraded.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11989 + }, + { + "word": "Reader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reader", + "romanization": "Reader", + "example_sentence_native": "Ich lese das Buch auf meinem E-Reader.", + "example_sentence_english": "I read the book on my e-reader.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11991 + }, + { + "word": "registriert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered", + "romanization": "registriert", + "example_sentence_native": "Der Benutzer ist registriert.", + "example_sentence_english": "The user is registered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11993 + }, + { + "word": "reibungslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smooth;frictionless", + "romanization": "reibungslos", + "example_sentence_native": "Der Übergang verlief reibungslos.", + "example_sentence_english": "The transition went smoothly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 11994 + }, + { + "word": "Religionsfreiheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "freedom of religion", + "romanization": "Religionsfreiheit", + "example_sentence_native": "Religionsfreiheit ist ein Grundrecht.", + "example_sentence_english": "Freedom of religion is a fundamental right.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11995 + }, + { + "word": "Rubel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruble", + "romanization": "Rubel", + "example_sentence_native": "Der Rubel ist die Währung Russlands.", + "example_sentence_english": "The ruble is the currency of Russia.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11997 + }, + { + "word": "Rückenschmerz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back pain", + "romanization": "Rückenschmerz", + "example_sentence_native": "Er leidet unter starkem Rückenschmerz.", + "example_sentence_english": "He suffers from severe back pain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11998 + }, + { + "word": "Sachbeschädigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "property damage;vandalism", + "romanization": "Sachbeschädigung", + "example_sentence_native": "Sachbeschädigung ist eine Straftat.", + "example_sentence_english": "Property damage is a criminal offense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 11999 + }, + { + "word": "Sarkasmus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcasm", + "romanization": "Sarkasmus", + "example_sentence_native": "Sein Sarkasmus war schwer zu ertragen.", + "example_sentence_english": "His sarcasm was hard to bear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12002 + }, + { + "word": "Score", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "score", + "romanization": "Score", + "example_sentence_native": "Der End-Score war 3 zu 1.", + "example_sentence_english": "The final score was 3 to 1.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12004 + }, + { + "word": "Sequenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequence", + "romanization": "Sequenz", + "example_sentence_native": "Die Sequenz der Ereignisse war unklar.", + "example_sentence_english": "The sequence of events was unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12005 + }, + { + "word": "Shield", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shield", + "romanization": "Shield", + "example_sentence_native": "Er hob seinen Shield, um sich zu schützen.", + "example_sentence_english": "He raised his shield to protect himself.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12006 + }, + { + "word": "sinngemäss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analogous;according to the sense", + "romanization": "sinngemäss", + "example_sentence_native": "Die Übersetzung ist sinngemäss korrekt.", + "example_sentence_english": "The translation is correct in meaning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12008 + }, + { + "word": "slim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slim", + "romanization": "slim", + "example_sentence_native": "Sie hat eine sehr slim Figur.", + "example_sentence_english": "She has a very slim figure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12009 + }, + { + "word": "Soja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soy;soybean", + "romanization": "Soja", + "example_sentence_native": "Soja ist eine wichtige Proteinquelle.", + "example_sentence_english": "Soy is an important source of protein.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12010 + }, + { + "word": "Spielplan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schedule;fixture list (sports)", + "romanization": "Spielplan", + "example_sentence_native": "Der Spielplan für die nächste Saison wurde veröffentlicht.", + "example_sentence_english": "The schedule for the next season has been published.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12011 + }, + { + "word": "Spion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spy", + "romanization": "Spion", + "example_sentence_native": "Der Spion wurde entlarvt.", + "example_sentence_english": "The spy was exposed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12012 + }, + { + "word": "spülen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rinse;to wash (dishes)", + "romanization": "spülen", + "example_sentence_native": "Bitte spül das Geschirr.", + "example_sentence_english": "Please wash the dishes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12013 + }, + { + "word": "stabilisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stabilize", + "romanization": "stabilisieren", + "example_sentence_native": "Die Regierung versucht, die Wirtschaft zu stabilisieren.", + "example_sentence_english": "The government is trying to stabilize the economy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12014 + }, + { + "word": "Startelf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starting eleven (sports team)", + "romanization": "Startelf", + "example_sentence_native": "Er wurde in die Startelf berufen.", + "example_sentence_english": "He was called up to the starting eleven.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12016 + }, + { + "word": "Steckdose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "power outlet;socket", + "romanization": "Steckdose", + "example_sentence_native": "Wo ist die nächste Steckdose?", + "example_sentence_english": "Where is the nearest power outlet?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12017 + }, + { + "word": "Sterling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterling (British currency)", + "romanization": "Sterling", + "example_sentence_native": "Das Pfund Sterling ist die Währung Großbritanniens.", + "example_sentence_english": "The pound sterling is the currency of Great Britain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12018 + }, + { + "word": "Stichwahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "runoff election", + "romanization": "Stichwahl", + "example_sentence_native": "Es wird eine Stichwahl geben, da kein Kandidat die Mehrheit erreicht hat.", + "example_sentence_english": "There will be a runoff election because no candidate reached the majority.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12019 + }, + { + "word": "Stifter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founder;donor", + "romanization": "Stifter", + "example_sentence_native": "Der Stifter der Universität war ein reicher Kaufmann.", + "example_sentence_english": "The founder of the university was a rich merchant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12020 + }, + { + "word": "Ständer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stand;rack", + "romanization": "Ständer", + "example_sentence_native": "Der Fahrradständer ist voll.", + "example_sentence_english": "The bicycle stand is full.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12021 + }, + { + "word": "Suchmaschine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "search engine", + "romanization": "Suchmaschine", + "example_sentence_native": "Google ist eine beliebte Suchmaschine.", + "example_sentence_english": "Google is a popular search engine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12022 + }, + { + "word": "Todestag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "day of death;anniversary of death", + "romanization": "Todestag", + "example_sentence_native": "Heute ist der Todestag meines Großvaters.", + "example_sentence_english": "Today is the anniversary of my grandfather's death.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12031 + }, + { + "word": "Toto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lottery;football pool", + "romanization": "Toto", + "example_sentence_native": "Er hat im Toto gewonnen.", + "example_sentence_english": "He won the lottery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12033 + }, + { + "word": "Trust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trust (financial;legal)", + "romanization": "Trust", + "example_sentence_native": "Das Unternehmen gründete einen Trust für wohltätige Zwecke.", + "example_sentence_english": "The company established a trust for charitable purposes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12034 + }, + { + "word": "Trümmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debris;rubble;ruins", + "romanization": "Trümmer", + "example_sentence_native": "Nach dem Erdbeben lagen überall Trümmer.", + "example_sentence_english": "After the earthquake, there was debris everywhere.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12035 + }, + { + "word": "unbrauchbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unusable;worthless", + "romanization": "unbrauchbar", + "example_sentence_native": "Der alte Computer ist unbrauchbar geworden.", + "example_sentence_english": "The old computer has become unusable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12037 + }, + { + "word": "unerheblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insignificant;irrelevant", + "romanization": "unerheblich", + "example_sentence_native": "Seine Meinung ist in dieser Angelegenheit unerheblich.", + "example_sentence_english": "His opinion is irrelevant in this matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12038 + }, + { + "word": "Unheil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischief;disaster;misfortune", + "romanization": "Unheil", + "example_sentence_native": "Er ahnte, dass Unheil bevorstand.", + "example_sentence_english": "He sensed that misfortune was imminent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12039 + }, + { + "word": "unvollständig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incomplete", + "romanization": "unvollständig", + "example_sentence_native": "Der Bericht ist noch unvollständig.", + "example_sentence_english": "The report is still incomplete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12040 + }, + { + "word": "unvorstellbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unimaginable", + "romanization": "unvorstellbar", + "example_sentence_native": "Das ist unvorstellbar!", + "example_sentence_english": "That is unimaginable!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12041 + }, + { + "word": "verbal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verbal", + "romanization": "verbal", + "example_sentence_native": "Er gab eine verbale Zusage.", + "example_sentence_english": "He gave a verbal commitment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12043 + }, + { + "word": "verborgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hidden;concealed", + "romanization": "verborgen", + "example_sentence_native": "Der Schatz war gut verborgen.", + "example_sentence_english": "The treasure was well hidden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12044 + }, + { + "word": "Verkäuferin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "saleswoman", + "romanization": "Verkäuferin", + "example_sentence_native": "Die Verkäuferin half mir bei der Auswahl.", + "example_sentence_english": "The saleswoman helped me with the selection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12045 + }, + { + "word": "vermarkten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to market;to commercialize", + "romanization": "vermarkten", + "example_sentence_native": "Sie wollen das neue Produkt vermarkten.", + "example_sentence_english": "They want to market the new product.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12046 + }, + { + "word": "vielerorts", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in many places;in many localities", + "romanization": "vielerorts", + "example_sentence_native": "Vielerorts gab es starke Regenfälle.", + "example_sentence_english": "In many places there were heavy rainfalls.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12047 + }, + { + "word": "virtual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtual", + "romanization": "virtual", + "example_sentence_native": "Wir hatten ein virtuelles Meeting.", + "example_sentence_english": "We had a virtual meeting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12048 + }, + { + "word": "Volksmusik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folk music", + "romanization": "Volksmusik", + "example_sentence_native": "Er hört gerne Volksmusik.", + "example_sentence_english": "He likes to listen to folk music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12049 + }, + { + "word": "Vorstandsvorsitzender", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "CEO;chairman of the board", + "romanization": "Vorstandsvorsitzender", + "example_sentence_native": "Der Vorstandsvorsitzende hielt eine Rede.", + "example_sentence_english": "The CEO gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12050 + }, + { + "word": "Wahlgang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballot;round of voting", + "romanization": "Wahlgang", + "example_sentence_native": "Der erste Wahlgang war sehr knapp.", + "example_sentence_english": "The first round of voting was very close.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12051 + }, + { + "word": "Wahlprogramm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election program;party platform", + "romanization": "Wahlprogramm", + "example_sentence_native": "Die Partei stellte ihr Wahlprogramm vor.", + "example_sentence_english": "The party presented its election program.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12052 + }, + { + "word": "Westküste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "west coast", + "romanization": "Westküste", + "example_sentence_native": "Sie leben an der Westküste.", + "example_sentence_english": "They live on the west coast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12053 + }, + { + "word": "wiederherstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restore;to re-establish", + "romanization": "wiederherstellen", + "example_sentence_native": "Sie müssen die alte Ordnung wiederherstellen.", + "example_sentence_english": "They must restore the old order.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wieder", + "base_verb": "herstellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12054 + }, + { + "word": "Windrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wind turbine;windmill", + "romanization": "Windrad", + "example_sentence_native": "Viele Windräder produzieren Strom.", + "example_sentence_english": "Many wind turbines produce electricity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12055 + }, + { + "word": "zeitweilig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary;intermittent", + "romanization": "zeitweilig", + "example_sentence_native": "Es gab zeitweilige Störungen im Netz.", + "example_sentence_english": "There were temporary disruptions in the network.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12059 + }, + { + "word": "zelten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to camp", + "romanization": "zelten", + "example_sentence_native": "Wir wollen am Wochenende zelten gehen.", + "example_sentence_english": "We want to go camping on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12060 + }, + { + "word": "zustehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be entitled to", + "romanization": "zustehen", + "example_sentence_native": "Ihm steht eine Entschädigung zu.", + "example_sentence_english": "He is entitled to compensation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12062 + }, + { + "word": "Übelkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nausea", + "romanization": "Übelkeit", + "example_sentence_native": "Nach der Fahrt verspürte sie Übelkeit.", + "example_sentence_english": "After the ride, she felt nausea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12063 + }, + { + "word": "überfällig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overdue", + "romanization": "überfällig", + "example_sentence_native": "Die Rechnung ist schon lange überfällig.", + "example_sentence_english": "The bill is long overdue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12064 + }, + { + "word": "übersee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overseas", + "romanization": "übersee", + "example_sentence_native": "Er arbeitet in einem überseeischen Unternehmen.", + "example_sentence_english": "He works in an overseas company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12065 + }, + { + "word": "abliefern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deliver", + "romanization": "abliefern", + "example_sentence_native": "Er muss das Paket bis morgen abliefern.", + "example_sentence_english": "He has to deliver the package by tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "liefern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12066 + }, + { + "word": "Abhandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treatise", + "romanization": "Abhandlung", + "example_sentence_native": "Sie schrieb eine wissenschaftliche Abhandlung über das Thema.", + "example_sentence_english": "She wrote a scientific treatise on the topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12067 + }, + { + "word": "abwenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avert", + "romanization": "abwenden", + "example_sentence_native": "Sie versuchte, die Gefahr abzuwenden.", + "example_sentence_english": "She tried to avert the danger.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "wenden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12068 + }, + { + "word": "Adrenalin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adrenaline", + "romanization": "Adrenalin", + "example_sentence_native": "Bei Gefahr schüttet der Körper Adrenalin aus.", + "example_sentence_english": "In danger, the body releases adrenaline.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12071 + }, + { + "word": "Alptraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightmare", + "romanization": "Alptraum", + "example_sentence_native": "Ich hatte letzte Nacht einen schrecklichen Alptraum.", + "example_sentence_english": "I had a terrible nightmare last night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12073 + }, + { + "word": "anfallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attack;to accrue", + "romanization": "anfallen", + "example_sentence_native": "Plötzlich fielen die Hunde den Wanderer an. Es können zusätzliche Kosten anfallen.", + "example_sentence_english": "Suddenly the dogs attacked the hiker. Additional costs may accrue.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12074 + }, + { + "word": "anschaffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to purchase", + "romanization": "anschaffen", + "example_sentence_native": "Wir wollen uns ein neues Auto anschaffen.", + "example_sentence_english": "We want to buy a new car.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schaffen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12075 + }, + { + "word": "Anklang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resonance;approval", + "romanization": "Anklang", + "example_sentence_native": "Seine Rede fand großen Anklang beim Publikum.", + "example_sentence_english": "His speech found great resonance with the audience.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12076 + }, + { + "word": "anvertrauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entrust", + "romanization": "anvertrauen", + "example_sentence_native": "Sie vertraute ihm ihr Geheimnis an.", + "example_sentence_english": "She entrusted him with her secret.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "vertrauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12077 + }, + { + "word": "arbeitend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working", + "romanization": "arbeitend", + "example_sentence_native": "Die arbeitende Bevölkerung ist wichtig für die Wirtschaft.", + "example_sentence_english": "The working population is important for the economy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12078 + }, + { + "word": "asozial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antisocial", + "romanization": "asozial", + "example_sentence_native": "Sein asoziales Verhalten führte zu Problemen.", + "example_sentence_english": "His antisocial behavior led to problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12079 + }, + { + "word": "Ausarbeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elaboration;detailed study", + "romanization": "Ausarbeitung", + "example_sentence_native": "Die Ausarbeitung des Berichts dauerte Wochen.", + "example_sentence_english": "The elaboration of the report took weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12081 + }, + { + "word": "ausbuchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to book out;to fully book", + "romanization": "ausbuchen", + "example_sentence_native": "Das Hotel ist für das Wochenende ausgebucht.", + "example_sentence_english": "The hotel is fully booked for the weekend.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "buchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12082 + }, + { + "word": "ausgedehnt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extensive;prolonged", + "romanization": "ausgedehnt", + "example_sentence_native": "Sie machten einen ausgedehnten Spaziergang.", + "example_sentence_english": "They took an extensive walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12083 + }, + { + "word": "ausklingen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fade out;to die away", + "romanization": "ausklingen", + "example_sentence_native": "Der Abend ließ gemütlich ausklingen.", + "example_sentence_english": "The evening faded out comfortably.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "klingen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12084 + }, + { + "word": "Ausnahmefall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exceptional case;exception", + "romanization": "Ausnahmefall", + "example_sentence_native": "Das ist ein Ausnahmefall und nicht die Regel.", + "example_sentence_english": "That is an exceptional case and not the rule.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12085 + }, + { + "word": "bedrohlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatening;menacing", + "romanization": "bedrohlich", + "example_sentence_native": "Die Wolken sahen bedrohlich aus.", + "example_sentence_english": "The clouds looked threatening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12088 + }, + { + "word": "Befriedigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satisfaction;gratification", + "romanization": "Befriedigung", + "example_sentence_native": "Er fand große Befriedigung in seiner Arbeit.", + "example_sentence_english": "He found great satisfaction in his work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12089 + }, + { + "word": "begnügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to content oneself;to be satisfied with", + "romanization": "begnügen", + "example_sentence_native": "Er musste sich mit einem kleinen Gehalt begnügen.", + "example_sentence_english": "He had to content himself with a small salary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12090 + }, + { + "word": "beleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enliven;to revitalize", + "romanization": "beleben", + "example_sentence_native": "Der Kaffee belebte ihre Sinne.", + "example_sentence_english": "The coffee enlivened her senses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12091 + }, + { + "word": "Bequemlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfort;convenience", + "romanization": "Bequemlichkeit", + "example_sentence_native": "Sie schätzte die Bequemlichkeit des Online-Shoppings.", + "example_sentence_english": "She valued the convenience of online shopping.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12092 + }, + { + "word": "Bowl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bowl", + "romanization": "Bowl", + "example_sentence_native": "Sie aßen ihre Suppe aus einer großen Bowl.", + "example_sentence_english": "They ate their soup from a large bowl.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12097 + }, + { + "word": "Buchhändler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bookseller", + "romanization": "Buchhändler", + "example_sentence_native": "Der Buchhändler empfahl mir ein neues Buch.", + "example_sentence_english": "The bookseller recommended a new book to me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12099 + }, + { + "word": "Dolmetscher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interpreter", + "romanization": "Dolmetscher", + "example_sentence_native": "Der Dolmetscher übersetzte die Rede.", + "example_sentence_english": "The interpreter translated the speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12107 + }, + { + "word": "dominant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominant", + "romanization": "dominant", + "example_sentence_native": "Er hat eine sehr dominante Persönlichkeit.", + "example_sentence_english": "He has a very dominant personality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12108 + }, + { + "word": "Drehung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotation;turn", + "romanization": "Drehung", + "example_sentence_native": "Die Drehung der Erde verursacht Tag und Nacht.", + "example_sentence_english": "The rotation of the Earth causes day and night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12109 + }, + { + "word": "Einfachheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplicity", + "romanization": "Einfachheit", + "example_sentence_native": "Die Einfachheit der Lösung überraschte uns.", + "example_sentence_english": "The simplicity of the solution surprised us.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12113 + }, + { + "word": "Einlass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admission;entry", + "romanization": "Einlass", + "example_sentence_native": "Der Einlass ist ab 18 Uhr.", + "example_sentence_english": "Admission is from 6 PM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12114 + }, + { + "word": "einmischen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interfere;to meddle", + "romanization": "einmischen", + "example_sentence_native": "Er mischt sich immer in alles ein.", + "example_sentence_english": "He always interferes in everything.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "mischen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12115 + }, + { + "word": "Einmündung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junction;confluence;mouth (of a river)", + "romanization": "Einmündung", + "example_sentence_native": "An der nächsten Einmündung biegen Sie links ab.", + "example_sentence_english": "At the next junction, turn left.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12116 + }, + { + "word": "Elektron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electron", + "romanization": "Elektron", + "example_sentence_native": "Ein Elektron ist ein Elementarteilchen.", + "example_sentence_english": "An electron is an elementary particle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12117 + }, + { + "word": "Endergebnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final result", + "romanization": "Endergebnis", + "example_sentence_native": "Das Endergebnis des Spiels war 3 zu 1.", + "example_sentence_english": "The final result of the game was 3 to 1.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12118 + }, + { + "word": "entwenden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to steal;to purloin", + "romanization": "entwenden", + "example_sentence_native": "Er versuchte, das Buch aus der Bibliothek zu entwenden.", + "example_sentence_english": "He tried to steal the book from the library.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12119 + }, + { + "word": "erfurter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Erfurt", + "romanization": "erfurter", + "example_sentence_native": "Die erfurter Bratwurst ist sehr lecker.", + "example_sentence_english": "The Erfurt sausage is very delicious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12120 + }, + { + "word": "Euphorie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "euphoria", + "romanization": "Euphorie", + "example_sentence_native": "Nach dem Sieg herrschte große Euphorie im Stadion.", + "example_sentence_english": "After the victory, there was great euphoria in the stadium.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12121 + }, + { + "word": "exotisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exotic", + "romanization": "exotisch", + "example_sentence_native": "Sie hat einen exotischen Vogel als Haustier.", + "example_sentence_english": "She has an exotic bird as a pet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12123 + }, + { + "word": "Fahrschule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driving school", + "romanization": "Fahrschule", + "example_sentence_native": "Ich gehe nächste Woche in die Fahrschule.", + "example_sentence_english": "I'm going to driving school next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12124 + }, + { + "word": "Familienunternehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family business", + "romanization": "Familienunternehmen", + "example_sentence_native": "Viele kleine Geschäfte sind Familienunternehmen.", + "example_sentence_english": "Many small shops are family businesses.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12125 + }, + { + "word": "Fasching", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnival;Shrovetide", + "romanization": "Fasching", + "example_sentence_native": "In Köln wird Fasching groß gefeiert.", + "example_sentence_english": "In Cologne, Carnival is celebrated grandly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12126 + }, + { + "word": "fehlerhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faulty;erroneous", + "romanization": "fehlerhaft", + "example_sentence_native": "Die Software ist noch fehlerhaft.", + "example_sentence_english": "The software is still faulty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12127 + }, + { + "word": "Feierlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemnity;ceremony", + "romanization": "Feierlichkeit", + "example_sentence_native": "Die Feierlichkeit der Zeremonie war beeindruckend.", + "example_sentence_english": "The solemnity of the ceremony was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12128 + }, + { + "word": "Fichte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spruce;fir tree", + "romanization": "Fichte", + "example_sentence_native": "Im Wald stehen viele hohe Fichten.", + "example_sentence_english": "There are many tall spruces in the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12129 + }, + { + "word": "fiktiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fictional", + "romanization": "fiktiv", + "example_sentence_native": "Die Geschichte ist rein fiktiv.", + "example_sentence_english": "The story is purely fictional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12130 + }, + { + "word": "fundiert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "well-founded;sound", + "romanization": "fundiert", + "example_sentence_native": "Seine Argumente sind sehr fundiert.", + "example_sentence_english": "His arguments are very well-founded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12133 + }, + { + "word": "Gameplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gameplay", + "romanization": "Gameplay", + "example_sentence_native": "Das Gameplay dieses neuen Spiels ist fantastisch.", + "example_sentence_english": "The gameplay of this new game is fantastic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12134 + }, + { + "word": "Gap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gap", + "romanization": "Gap", + "example_sentence_native": "Es gibt eine große Gap zwischen Theorie und Praxis.", + "example_sentence_english": "There is a big gap between theory and practice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12135 + }, + { + "word": "Gedankengut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "body of thought;ideology", + "romanization": "Gedankengut", + "example_sentence_native": "Das Gedankengut der Aufklärung prägte die Gesellschaft.", + "example_sentence_english": "The body of thought of the Enlightenment shaped society.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12137 + }, + { + "word": "Gefäss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vessel;container", + "romanization": "Gefäss", + "example_sentence_native": "Das Gefäss war mit Wasser gefüllt.", + "example_sentence_english": "The vessel was filled with water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12138 + }, + { + "word": "Gegenstück", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterpart;opposite number", + "romanization": "Gegenstück", + "example_sentence_native": "Er ist das perfekte Gegenstück zu ihr.", + "example_sentence_english": "He is the perfect counterpart to her.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12139 + }, + { + "word": "Gemisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixture", + "romanization": "Gemisch", + "example_sentence_native": "Das Gemisch ist sehr komplex.", + "example_sentence_english": "The mixture is very complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12140 + }, + { + "word": "Gerichtsbarkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisdiction", + "romanization": "Gerichtsbarkeit", + "example_sentence_native": "Das Gericht hat keine Gerichtsbarkeit in diesem Fall.", + "example_sentence_english": "The court has no jurisdiction in this case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12143 + }, + { + "word": "geschichtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "historical", + "romanization": "geschichtlich", + "example_sentence_native": "Das ist ein geschichtlicher Moment.", + "example_sentence_english": "This is a historical moment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12144 + }, + { + "word": "Geschäftspartner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business partner", + "romanization": "Geschäftspartner", + "example_sentence_native": "Er traf seinen Geschäftspartner zum Mittagessen.", + "example_sentence_english": "He met his business partner for lunch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12145 + }, + { + "word": "gewillt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "willing", + "romanization": "gewillt", + "example_sentence_native": "Sie ist gewillt, zu helfen.", + "example_sentence_english": "She is willing to help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12146 + }, + { + "word": "Gewürz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spice", + "romanization": "Gewürz", + "example_sentence_native": "Dieses Gewürz macht das Essen lecker.", + "example_sentence_english": "This spice makes the food delicious.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12147 + }, + { + "word": "züchten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breed;to cultivate", + "romanization": "züchten", + "example_sentence_native": "Er möchte Rosen züchten.", + "example_sentence_english": "He wants to cultivate roses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12148 + }, + { + "word": "Gips", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster;cast", + "romanization": "Gips", + "example_sentence_native": "Er hat einen Gips am Arm.", + "example_sentence_english": "He has a cast on his arm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12149 + }, + { + "word": "Goldmedaille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gold medal", + "romanization": "Goldmedaille", + "example_sentence_native": "Sie gewann die Goldmedaille.", + "example_sentence_english": "She won the gold medal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12151 + }, + { + "word": "Gutmensch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "do-gooder", + "romanization": "Gutmensch", + "example_sentence_native": "Manche Leute nennen ihn einen Gutmenschen.", + "example_sentence_english": "Some people call him a do-gooder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12154 + }, + { + "word": "hohl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hollow", + "romanization": "hohl", + "example_sentence_native": "Der Baumstamm ist hohl.", + "example_sentence_english": "The tree trunk is hollow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12155 + }, + { + "word": "holländisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dutch", + "romanization": "holländisch", + "example_sentence_native": "Sie spricht Holländisch.", + "example_sentence_english": "She speaks Dutch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12156 + }, + { + "word": "Homophobie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homophobia", + "romanization": "Homophobie", + "example_sentence_native": "Homophobie ist ein ernstes Problem.", + "example_sentence_english": "Homophobia is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12157 + }, + { + "word": "Host", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "host", + "romanization": "Host", + "example_sentence_native": "Der Host begrüßte die Gäste.", + "example_sentence_english": "The host greeted the guests.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12158 + }, + { + "word": "Innenseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inside;inner side", + "romanization": "Innenseite", + "example_sentence_native": "Die Innenseite der Tasche ist rot.", + "example_sentence_english": "The inside of the bag is red.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12160 + }, + { + "word": "Ire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Irishman", + "romanization": "Ire", + "example_sentence_native": "Er ist ein Ire.", + "example_sentence_english": "He is an Irishman.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12162 + }, + { + "word": "Jaguar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jaguar", + "romanization": "Jaguar", + "example_sentence_native": "Der Jaguar ist eine große Katze.", + "example_sentence_english": "The jaguar is a large cat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12164 + }, + { + "word": "Kanu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canoe", + "romanization": "Kanu", + "example_sentence_native": "Wir fahren mit dem Kanu auf dem See.", + "example_sentence_english": "We are going by canoe on the lake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12165 + }, + { + "word": "Knaller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firecracker;cracker;(slang) hit;sensation", + "romanization": "Knaller", + "example_sentence_native": "Der Knaller machte einen lauten Lärm.", + "example_sentence_english": "The firecracker made a loud noise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12167 + }, + { + "word": "Kollision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collision", + "romanization": "Kollision", + "example_sentence_native": "Es gab eine Kollision zwischen zwei Autos.", + "example_sentence_english": "There was a collision between two cars.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12168 + }, + { + "word": "Korrespondenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correspondence", + "romanization": "Korrespondenz", + "example_sentence_native": "Die Korrespondenz wurde per E-Mail verschickt.", + "example_sentence_english": "The correspondence was sent by email.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12170 + }, + { + "word": "Kreisstrasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district road;county road", + "romanization": "Kreisstrasse", + "example_sentence_native": "Die Kreisstraße führt durch kleine Dörfer.", + "example_sentence_english": "The district road leads through small villages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12171 + }, + { + "word": "Kurzgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short story", + "romanization": "Kurzgeschichte", + "example_sentence_native": "Sie liest gerne Kurzgeschichten.", + "example_sentence_english": "She likes to read short stories.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12172 + }, + { + "word": "Kürbis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pumpkin;squash", + "romanization": "Kürbis", + "example_sentence_native": "Wir haben einen großen Kürbis für Halloween gekauft.", + "example_sentence_english": "We bought a big pumpkin for Halloween.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12173 + }, + { + "word": "Lachs", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salmon", + "romanization": "Lachs", + "example_sentence_native": "Ich esse gerne Lachs zum Abendessen.", + "example_sentence_english": "I like to eat salmon for dinner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12175 + }, + { + "word": "Landkarte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "map", + "romanization": "Landkarte", + "example_sentence_native": "Wir brauchen eine Landkarte, um den Weg zu finden.", + "example_sentence_english": "We need a map to find the way.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12176 + }, + { + "word": "lauschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to listen (secretly);to eavesdrop", + "romanization": "lauschen", + "example_sentence_native": "Er lauschte an der Tür.", + "example_sentence_english": "He listened at the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12177 + }, + { + "word": "Lebensgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life story;biography", + "romanization": "Lebensgeschichte", + "example_sentence_native": "Sie erzählte ihre ganze Lebensgeschichte.", + "example_sentence_english": "She told her whole life story.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12178 + }, + { + "word": "Markierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marking", + "romanization": "Markierung", + "example_sentence_native": "Die Markierung auf der Straße ist verblasst.", + "example_sentence_english": "The marking on the road has faded.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12184 + }, + { + "word": "Messias", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Messiah", + "romanization": "Messias", + "example_sentence_native": "Viele Religionen warten auf die Ankunft eines Messias.", + "example_sentence_english": "Many religions await the arrival of a Messiah.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12187 + }, + { + "word": "Miliz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militia", + "romanization": "Miliz", + "example_sentence_native": "Die Miliz kontrolliert die Region.", + "example_sentence_english": "The militia controls the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12188 + }, + { + "word": "missachten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disregard", + "romanization": "missachten", + "example_sentence_native": "Man sollte die Verkehrsregeln nicht missachten.", + "example_sentence_english": "One should not disregard traffic rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12189 + }, + { + "word": "mobilisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobilize", + "romanization": "mobilisieren", + "example_sentence_native": "Die Regierung versucht, die Bevölkerung zu mobilisieren.", + "example_sentence_english": "The government is trying to mobilize the population.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12190 + }, + { + "word": "Monsieur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mister", + "romanization": "Monsieur", + "example_sentence_native": "Guten Tag, Monsieur!", + "example_sentence_english": "Good day, Mister!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12191 + }, + { + "word": "Multimedia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multimedia", + "romanization": "Multimedia", + "example_sentence_native": "Das Projekt umfasst verschiedene Multimedia-Elemente.", + "example_sentence_english": "The project includes various multimedia elements.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12193 + }, + { + "word": "Nachspielzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stoppage time", + "romanization": "Nachspielzeit", + "example_sentence_native": "Der Schiedsrichter gab fünf Minuten Nachspielzeit.", + "example_sentence_english": "The referee added five minutes of stoppage time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12194 + }, + { + "word": "Naturpark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nature park", + "romanization": "Naturpark", + "example_sentence_native": "Wir haben einen Ausflug in den Naturpark gemacht.", + "example_sentence_english": "We took a trip to the nature park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12196 + }, + { + "word": "Nerd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nerd", + "romanization": "Nerd", + "example_sentence_native": "Er ist ein echter Computer-Nerd.", + "example_sentence_english": "He is a real computer nerd.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12197 + }, + { + "word": "Objektivität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objectivity", + "romanization": "Objektivität", + "example_sentence_native": "Die Objektivität der Studie wurde in Frage gestellt.", + "example_sentence_english": "The objectivity of the study was questioned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12200 + }, + { + "word": "Pelz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fur", + "romanization": "Pelz", + "example_sentence_native": "Der Hund hat einen dicken Pelz.", + "example_sentence_english": "The dog has thick fur.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12206 + }, + { + "word": "Praktikant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intern (male)", + "romanization": "Praktikant", + "example_sentence_native": "Der neue Praktikant beginnt nächste Woche.", + "example_sentence_english": "The new intern starts next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12208 + }, + { + "word": "Prestige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prestige", + "romanization": "Prestige", + "example_sentence_native": "Das Unternehmen genießt hohes Prestige.", + "example_sentence_english": "The company enjoys high prestige.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12209 + }, + { + "word": "Pseudonym", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pseudonym", + "romanization": "Pseudonym", + "example_sentence_native": "Der Autor veröffentlichte unter einem Pseudonym.", + "example_sentence_english": "The author published under a pseudonym.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12210 + }, + { + "word": "psychiatrisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychiatric", + "romanization": "psychiatrisch", + "example_sentence_native": "Er arbeitet in einer psychiatrischen Klinik.", + "example_sentence_english": "He works in a psychiatric clinic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12211 + }, + { + "word": "Puff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brothel", + "romanization": "Puff", + "example_sentence_native": "Das ist ein alter Puff.", + "example_sentence_english": "That is an old brothel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12212 + }, + { + "word": "Quali", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualification (colloquial short form)", + "romanization": "Quali", + "example_sentence_native": "Er hat seine Quali bestanden.", + "example_sentence_english": "He passed his qualification.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12213 + }, + { + "word": "Quality", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quality", + "romanization": "Quality", + "example_sentence_native": "Die Quality des Produkts ist sehr gut.", + "example_sentence_english": "The quality of the product is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12214 + }, + { + "word": "Rain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ridge;border (of a field)", + "romanization": "Rain", + "example_sentence_native": "Am Rain wachsen viele Wildblumen.", + "example_sentence_english": "Many wildflowers grow on the ridge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12215 + }, + { + "word": "Rampe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ramp", + "romanization": "Rampe", + "example_sentence_native": "Die Rampe ist für Rollstühle zugänglich.", + "example_sentence_english": "The ramp is accessible for wheelchairs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12216 + }, + { + "word": "rausgehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go out", + "romanization": "rausgehen", + "example_sentence_native": "Ich möchte heute Abend rausgehen.", + "example_sentence_english": "I want to go out tonight.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12217 + }, + { + "word": "rausholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get out;to take out", + "romanization": "rausholen", + "example_sentence_native": "Kannst du bitte den Müll rausholen?", + "example_sentence_english": "Can you please take out the trash?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12218 + }, + { + "word": "Regenwald", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rainforest", + "romanization": "Regenwald", + "example_sentence_native": "Der Regenwald ist wichtig für das Klima.", + "example_sentence_english": "The rainforest is important for the climate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12222 + }, + { + "word": "Reh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roe deer", + "romanization": "Reh", + "example_sentence_native": "Ein Reh lief über die Straße.", + "example_sentence_english": "A roe deer ran across the street.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12223 + }, + { + "word": "Reiseführer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "travel guide (book or person)", + "romanization": "Reiseführer", + "example_sentence_native": "Wir haben einen guten Reiseführer für Rom gekauft.", + "example_sentence_english": "We bought a good travel guide for Rome.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12224 + }, + { + "word": "Rückschluss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conclusion;inference", + "romanization": "Rückschluss", + "example_sentence_native": "Man kann daraus keinen Rückschluss ziehen.", + "example_sentence_english": "One cannot draw any conclusion from that.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12226 + }, + { + "word": "Rückzahlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repayment", + "romanization": "Rückzahlung", + "example_sentence_native": "Die Rückzahlung des Kredits ist fällig.", + "example_sentence_english": "The repayment of the loan is due.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12227 + }, + { + "word": "scheuen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shy away from;to dread", + "romanization": "scheuen", + "example_sentence_native": "Er scheut keine Mühe.", + "example_sentence_english": "He spares no effort.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12228 + }, + { + "word": "schimpfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scold;to grumble", + "romanization": "schimpfen", + "example_sentence_native": "Die Mutter schimpfte mit ihrem Kind.", + "example_sentence_english": "The mother scolded her child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12229 + }, + { + "word": "schottisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Scottish", + "romanization": "schottisch", + "example_sentence_native": "Er trägt einen schottischen Kilt.", + "example_sentence_english": "He wears a Scottish kilt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12230 + }, + { + "word": "seelisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mental;psychological;spiritual", + "romanization": "seelisch", + "example_sentence_native": "Sie leidet unter seelischem Stress.", + "example_sentence_english": "She suffers from mental stress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12232 + }, + { + "word": "Selbsthilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-help", + "romanization": "Selbsthilfe", + "example_sentence_native": "Es gibt viele Gruppen für Selbsthilfe.", + "example_sentence_english": "There are many self-help groups.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12233 + }, + { + "word": "signalisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to signal", + "romanization": "signalisieren", + "example_sentence_native": "Er signalisierte seine Zustimmung.", + "example_sentence_english": "He signaled his agreement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12236 + }, + { + "word": "spekulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speculate", + "romanization": "spekulieren", + "example_sentence_native": "Man sollte nicht über die Zukunft spekulieren.", + "example_sentence_english": "One should not speculate about the future.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12238 + }, + { + "word": "Spielfilm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feature film", + "romanization": "Spielfilm", + "example_sentence_native": "Wir haben gestern Abend einen guten Spielfilm gesehen.", + "example_sentence_english": "We watched a good feature film last night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12239 + }, + { + "word": "Spielregel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rule of the game", + "romanization": "Spielregel", + "example_sentence_native": "Die Spielregel ist einfach zu verstehen.", + "example_sentence_english": "The rule of the game is easy to understand.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12240 + }, + { + "word": "Sprinter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprinter", + "romanization": "Sprinter", + "example_sentence_native": "Der Sprinter gewann das Rennen.", + "example_sentence_english": "The sprinter won the race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12241 + }, + { + "word": "Staatspräsident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "president (of a state)", + "romanization": "Staatspräsident", + "example_sentence_native": "Der Staatspräsident hielt eine Rede.", + "example_sentence_english": "The president of the state gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12242 + }, + { + "word": "Sterbehilfe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "euthanasia;assisted dying", + "romanization": "Sterbehilfe", + "example_sentence_native": "Die Debatte über Sterbehilfe ist sehr kontrovers.", + "example_sentence_english": "The debate about euthanasia is very controversial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12243 + }, + { + "word": "Strafanzeige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal complaint", + "romanization": "Strafanzeige", + "example_sentence_native": "Er erstattete eine Strafanzeige wegen Diebstahls.", + "example_sentence_english": "He filed a criminal complaint for theft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12244 + }, + { + "word": "stressig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stressful", + "romanization": "stressig", + "example_sentence_native": "Mein Arbeitstag war heute sehr stressig.", + "example_sentence_english": "My workday was very stressful today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12245 + }, + { + "word": "Trainingslager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "training camp", + "romanization": "Trainingslager", + "example_sentence_native": "Die Mannschaft fährt ins Trainingslager.", + "example_sentence_english": "The team is going to the training camp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12248 + }, + { + "word": "ungefährlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmless;not dangerous", + "romanization": "ungefährlich", + "example_sentence_native": "Die Schlange ist ungefährlich.", + "example_sentence_english": "The snake is harmless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12251 + }, + { + "word": "ungewiss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertain;unsure", + "romanization": "ungewiss", + "example_sentence_native": "Die Zukunft ist ungewiss.", + "example_sentence_english": "The future is uncertain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12252 + }, + { + "word": "uralt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ancient;very old", + "romanization": "uralt", + "example_sentence_native": "Das ist ein uralter Baum.", + "example_sentence_english": "That is an ancient tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12254 + }, + { + "word": "Ventil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valve", + "romanization": "Ventil", + "example_sentence_native": "Das Ventil muss ersetzt werden.", + "example_sentence_english": "The valve needs to be replaced.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12255 + }, + { + "word": "verabreichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to administer;to give", + "romanization": "verabreichen", + "example_sentence_native": "Der Arzt wird Ihnen ein Medikament verabreichen.", + "example_sentence_english": "The doctor will administer a medication to you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12256 + }, + { + "word": "verbuchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to book;to record", + "romanization": "verbuchen", + "example_sentence_native": "Wir müssen diesen Betrag als Einnahme verbuchen.", + "example_sentence_english": "We need to record this amount as income.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12257 + }, + { + "word": "verfassungswidrig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconstitutional", + "romanization": "verfassungswidrig", + "example_sentence_native": "Das Gesetz wurde als verfassungswidrig erklärt.", + "example_sentence_english": "The law was declared unconstitutional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12259 + }, + { + "word": "Vergeltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retribution", + "romanization": "Vergeltung", + "example_sentence_native": "Er schwor Vergeltung für die Ungerechtigkeit.", + "example_sentence_english": "He swore retribution for the injustice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12260 + }, + { + "word": "Village", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "village", + "romanization": "Village", + "example_sentence_native": "Sie leben in einem kleinen Village am See.", + "example_sentence_english": "They live in a small village by the lake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12262 + }, + { + "word": "violett", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violet", + "romanization": "violett", + "example_sentence_native": "Die Blumen haben eine schöne violette Farbe.", + "example_sentence_english": "The flowers have a beautiful violet color.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12263 + }, + { + "word": "Vollidiot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complete idiot", + "romanization": "Vollidiot", + "example_sentence_native": "Er hat sich wie ein Vollidiot benommen.", + "example_sentence_english": "He behaved like a complete idiot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12264 + }, + { + "word": "Vollmond", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "full moon", + "romanization": "Vollmond", + "example_sentence_native": "Heute Nacht ist Vollmond.", + "example_sentence_english": "Tonight is a full moon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12265 + }, + { + "word": "vormals", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formerly", + "romanization": "vormals", + "example_sentence_native": "Das Gebäude war vormals ein Kino.", + "example_sentence_english": "The building was formerly a cinema.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12266 + }, + { + "word": "Votum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vote", + "romanization": "Votum", + "example_sentence_native": "Das Votum des Parlaments war eindeutig.", + "example_sentence_english": "The parliament's vote was clear.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12267 + }, + { + "word": "Wehrpflicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscription", + "romanization": "Wehrpflicht", + "example_sentence_native": "Die Wehrpflicht wurde in Deutschland ausgesetzt.", + "example_sentence_english": "Conscription was suspended in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12268 + }, + { + "word": "Weingut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winery", + "romanization": "Weingut", + "example_sentence_native": "Wir besuchten ein schönes Weingut in der Pfalz.", + "example_sentence_english": "We visited a beautiful winery in the Palatinate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12269 + }, + { + "word": "Windel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diaper", + "romanization": "Windel", + "example_sentence_native": "Das Baby braucht eine frische Windel.", + "example_sentence_english": "The baby needs a fresh diaper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12270 + }, + { + "word": "wählbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eligible", + "romanization": "wählbar", + "example_sentence_native": "Er ist für das Amt des Bürgermeisters wählbar.", + "example_sentence_english": "He is eligible for the office of mayor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12274 + }, + { + "word": "Yacht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yacht", + "romanization": "Yacht", + "example_sentence_native": "Sie haben eine große Yacht im Hafen.", + "example_sentence_english": "They have a large yacht in the harbor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12275 + }, + { + "word": "Zeitlang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a while", + "romanization": "Zeitlang", + "example_sentence_native": "Ich habe ihn eine Zeitlang nicht gesehen.", + "example_sentence_english": "I haven't seen him for a while.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12276 + }, + { + "word": "zärtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tender", + "romanization": "zärtlich", + "example_sentence_native": "Sie gab ihm einen zärtlichen Kuss.", + "example_sentence_english": "She gave him a tender kiss.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12277 + }, + { + "word": "übersichtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clear", + "romanization": "übersichtlich", + "example_sentence_native": "Die Präsentation war sehr übersichtlich gestaltet.", + "example_sentence_english": "The presentation was very clearly arranged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12278 + }, + { + "word": "Abnehmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customer;buyer", + "romanization": "Abnehmer", + "example_sentence_native": "Der Abnehmer war mit der Lieferung zufrieden.", + "example_sentence_english": "The customer was satisfied with the delivery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12280 + }, + { + "word": "Abtei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abbey", + "romanization": "Abtei", + "example_sentence_native": "Die alte Abtei steht auf einem Hügel.", + "example_sentence_english": "The old abbey stands on a hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12281 + }, + { + "word": "Adoption", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoption", + "romanization": "Adoption", + "example_sentence_native": "Die Adoption des Kindes war ein langer Prozess.", + "example_sentence_english": "The adoption of the child was a long process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12282 + }, + { + "word": "Akustik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acoustics", + "romanization": "Akustik", + "example_sentence_native": "Die Akustik in diesem Konzertsaal ist ausgezeichnet.", + "example_sentence_english": "The acoustics in this concert hall are excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12284 + }, + { + "word": "Alleingang", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solo effort;independent action", + "romanization": "Alleingang", + "example_sentence_native": "Sein Alleingang führte zum Erfolg.", + "example_sentence_english": "His solo effort led to success.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12286 + }, + { + "word": "Analogie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analogy", + "romanization": "Analogie", + "example_sentence_native": "Es gibt eine klare Analogie zwischen den beiden Fällen.", + "example_sentence_english": "There is a clear analogy between the two cases.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12287 + }, + { + "word": "anrechnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to credit;to take into account", + "romanization": "anrechnen", + "example_sentence_native": "Wir müssen die Kosten für die Reparatur anrechnen.", + "example_sentence_english": "We have to credit the cost of the repair.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "rechnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12289 + }, + { + "word": "Anschrift", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "address", + "romanization": "Anschrift", + "example_sentence_native": "Bitte geben Sie Ihre vollständige Anschrift an.", + "example_sentence_english": "Please provide your full address.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12290 + }, + { + "word": "Anwender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "user;applicant", + "romanization": "Anwender", + "example_sentence_native": "Der Anwender muss die Software installieren.", + "example_sentence_english": "The user must install the software.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12291 + }, + { + "word": "Arbeitsstelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "workplace;job", + "romanization": "Arbeitsstelle", + "example_sentence_native": "Sie hat eine neue Arbeitsstelle gefunden.", + "example_sentence_english": "She found a new job.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12292 + }, + { + "word": "Asthma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asthma", + "romanization": "Asthma", + "example_sentence_native": "Er leidet seit seiner Kindheit an Asthma.", + "example_sentence_english": "He has suffered from asthma since his childhood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12293 + }, + { + "word": "Asylant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum seeker", + "romanization": "Asylant", + "example_sentence_native": "Der Asylant wartet auf die Entscheidung über seinen Antrag.", + "example_sentence_english": "The asylum seeker is waiting for the decision on his application.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12294 + }, + { + "word": "auffassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grasp;to interpret", + "romanization": "auffassen", + "example_sentence_native": "Wie fassen Sie diese Situation auf?", + "example_sentence_english": "How do you interpret this situation?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "fassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12295 + }, + { + "word": "Ausbeute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yield;output", + "romanization": "Ausbeute", + "example_sentence_native": "Die Ausbeute der Ernte war dieses Jahr sehr gut.", + "example_sentence_english": "The yield of the harvest was very good this year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12296 + }, + { + "word": "Bacon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bacon", + "romanization": "Bacon", + "example_sentence_native": "Zum Frühstück esse ich gerne Rührei mit Bacon.", + "example_sentence_english": "For breakfast, I like to eat scrambled eggs with bacon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12297 + }, + { + "word": "Bagger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excavator;digger", + "romanization": "Bagger", + "example_sentence_native": "Auf der Baustelle arbeitet ein großer Bagger.", + "example_sentence_english": "A large excavator is working on the construction site.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12298 + }, + { + "word": "Bauarbeiter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "construction worker", + "romanization": "Bauarbeiter", + "example_sentence_native": "Der Bauarbeiter trägt einen Helm.", + "example_sentence_english": "The construction worker wears a helmet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12300 + }, + { + "word": "Bauart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type of construction;design", + "romanization": "Bauart", + "example_sentence_native": "Die Bauart des Hauses ist sehr modern.", + "example_sentence_english": "The design of the house is very modern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12301 + }, + { + "word": "befallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to afflict;to infest", + "romanization": "befallen", + "example_sentence_native": "Die Krankheit kann viele Menschen befallen.", + "example_sentence_english": "The disease can afflict many people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12302 + }, + { + "word": "befreundet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "befriended;on friendly terms", + "romanization": "befreundet", + "example_sentence_native": "Sie sind seit vielen Jahren befreundet.", + "example_sentence_english": "They have been befriended for many years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12303 + }, + { + "word": "Befugnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authority;authorization", + "romanization": "Befugnis", + "example_sentence_native": "Er hat die Befugnis, diese Entscheidung zu treffen.", + "example_sentence_english": "He has the authority to make this decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12304 + }, + { + "word": "Bekanntgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announcement;disclosure", + "romanization": "Bekanntgabe", + "example_sentence_native": "Die Bekanntgabe der Ergebnisse wird morgen erfolgen.", + "example_sentence_english": "The announcement of the results will take place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12305 + }, + { + "word": "Biergarten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beer garden", + "romanization": "Biergarten", + "example_sentence_native": "Im Sommer gehen wir oft in den Biergarten.", + "example_sentence_english": "In summer, we often go to the beer garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12306 + }, + { + "word": "Buchs", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxwood", + "romanization": "Buchs", + "example_sentence_native": "Der Buchs im Garten muss geschnitten werden.", + "example_sentence_english": "The boxwood in the garden needs to be trimmed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12309 + }, + { + "word": "Buddhismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhism", + "romanization": "Buddhismus", + "example_sentence_native": "Der Buddhismus ist eine alte Religion.", + "example_sentence_english": "Buddhism is an ancient religion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12310 + }, + { + "word": "diskriminieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discriminate", + "romanization": "diskriminieren", + "example_sentence_native": "Man sollte niemanden diskriminieren.", + "example_sentence_english": "One should not discriminate against anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12317 + }, + { + "word": "durchdacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-thought-out;elaborate", + "romanization": "durchdacht", + "example_sentence_native": "Das ist ein sehr durchdachter Plan.", + "example_sentence_english": "That is a very well-thought-out plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12321 + }, + { + "word": "Ehrenamt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voluntary work;honorary office", + "romanization": "Ehrenamt", + "example_sentence_native": "Viele Menschen engagieren sich im Ehrenamt.", + "example_sentence_english": "Many people are involved in voluntary work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12325 + }, + { + "word": "eingespielt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-rehearsed;well-coordinated", + "romanization": "eingespielt", + "example_sentence_native": "Das Team ist sehr gut eingespielt.", + "example_sentence_english": "The team is very well-coordinated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12326 + }, + { + "word": "Entfaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development;unfolding;self-realization", + "romanization": "Entfaltung", + "example_sentence_native": "Die persönliche Entfaltung ist wichtig.", + "example_sentence_english": "Personal development is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12327 + }, + { + "word": "ermutigt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouraged", + "romanization": "ermutigt", + "example_sentence_native": "Er fühlte sich ermutigt, weiterzumachen.", + "example_sentence_english": "He felt encouraged to continue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12328 + }, + { + "word": "erprobt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tried and tested;proven", + "romanization": "erprobt", + "example_sentence_native": "Das ist eine erprobte Methode.", + "example_sentence_english": "This is a tried and tested method.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12329 + }, + { + "word": "Extremismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremism", + "romanization": "Extremismus", + "example_sentence_native": "Extremismus ist eine Gefahr für die Demokratie.", + "example_sentence_english": "Extremism is a danger to democracy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12331 + }, + { + "word": "Fachkräftemangel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skilled labor shortage", + "romanization": "Fachkräftemangel", + "example_sentence_native": "Der Fachkräftemangel ist ein großes Problem in Deutschland.", + "example_sentence_english": "The skilled labor shortage is a big problem in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12332 + }, + { + "word": "fahrend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driving;moving", + "romanization": "fahrend", + "example_sentence_native": "Das fahrende Auto war schnell.", + "example_sentence_english": "The moving car was fast.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12333 + }, + { + "word": "fahrlässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligent;careless", + "romanization": "fahrlässig", + "example_sentence_native": "Sein Verhalten war fahrlässig.", + "example_sentence_english": "His behavior was negligent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12334 + }, + { + "word": "Feldzug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "campaign;military campaign", + "romanization": "Feldzug", + "example_sentence_native": "Der Feldzug dauerte mehrere Monate.", + "example_sentence_english": "The campaign lasted several months.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12335 + }, + { + "word": "Ferienwohnung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "holiday apartment", + "romanization": "Ferienwohnung", + "example_sentence_native": "Wir haben eine Ferienwohnung für den Sommer gemietet.", + "example_sentence_english": "We rented a holiday apartment for the summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12336 + }, + { + "word": "Fertigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skill;proficiency", + "romanization": "Fertigkeit", + "example_sentence_native": "Er hat gute handwerkliche Fertigkeiten.", + "example_sentence_english": "He has good manual skills.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12337 + }, + { + "word": "formell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formal", + "romanization": "formell", + "example_sentence_native": "Das ist eine formelle Anfrage.", + "example_sentence_english": "This is a formal request.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12340 + }, + { + "word": "fossil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fossil", + "romanization": "fossil", + "example_sentence_native": "Fossile Brennstoffe sind umweltschädlich.", + "example_sentence_english": "Fossil fuels are harmful to the environment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12341 + }, + { + "word": "freudig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joyful", + "romanization": "freudig", + "example_sentence_native": "Sie nahm die Nachricht freudig auf.", + "example_sentence_english": "She received the news joyfully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12344 + }, + { + "word": "fälschlicherweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistakenly", + "romanization": "fälschlicherweise", + "example_sentence_native": "Er hat fälschlicherweise die falsche Tür geöffnet.", + "example_sentence_english": "He mistakenly opened the wrong door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12345 + }, + { + "word": "Fünftel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fifth (one-fifth)", + "romanization": "Fünftel", + "example_sentence_native": "Ein Fünftel der Bevölkerung lebt in Armut.", + "example_sentence_english": "One fifth of the population lives in poverty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 12346 + }, + { + "word": "Gatte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "husband", + "romanization": "Gatte", + "example_sentence_native": "Ihr Gatte ist Arzt.", + "example_sentence_english": "Her husband is a doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12347 + }, + { + "word": "beißen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bite", + "romanization": "beißen", + "example_sentence_native": "Der Hund kann beißen.", + "example_sentence_english": "The dog can bite.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12348 + }, + { + "word": "Gebüsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bush", + "romanization": "Gebüsch", + "example_sentence_native": "Die Katze versteckte sich im Gebüsch.", + "example_sentence_english": "The cat hid in the bush.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12349 + }, + { + "word": "gefällig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasing", + "romanization": "gefällig", + "example_sentence_native": "Er war sehr gefällig und half mir sofort.", + "example_sentence_english": "He was very obliging and helped me immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12351 + }, + { + "word": "Gegenspieler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opponent", + "romanization": "Gegenspieler", + "example_sentence_native": "Der Gegenspieler war sehr stark.", + "example_sentence_english": "The opponent was very strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12352 + }, + { + "word": "gelangweilt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bored", + "romanization": "gelangweilt", + "example_sentence_native": "Sie sah gelangweilt aus.", + "example_sentence_english": "She looked bored.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12353 + }, + { + "word": "geneigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclined", + "romanization": "geneigt", + "example_sentence_native": "Er ist geneigt, dir zu helfen.", + "example_sentence_english": "He is inclined to help you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12354 + }, + { + "word": "nötigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to compel", + "romanization": "nötigen", + "example_sentence_native": "Er ließ sich nicht nötigen.", + "example_sentence_english": "He would not be compelled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12355 + }, + { + "word": "geologisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geological", + "romanization": "geologisch", + "example_sentence_native": "Das ist eine geologische Formation.", + "example_sentence_english": "That is a geological formation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12356 + }, + { + "word": "geraum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "considerable", + "romanization": "geraum", + "example_sentence_native": "Wir warten schon seit geraumer Zeit.", + "example_sentence_english": "We have been waiting for quite some time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12357 + }, + { + "word": "gerüstet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipped", + "romanization": "gerüstet", + "example_sentence_native": "Sie sind gut gerüstet für die Prüfung.", + "example_sentence_english": "They are well prepared for the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12358 + }, + { + "word": "geschult", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trained", + "romanization": "geschult", + "example_sentence_native": "Das geschulte Personal ist sehr effizient.", + "example_sentence_english": "The trained staff is very efficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12359 + }, + { + "word": "Gewerbegebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industrial area", + "romanization": "Gewerbegebiet", + "example_sentence_native": "Das neue Gewerbegebiet bietet viele Arbeitsplätze.", + "example_sentence_english": "The new industrial area offers many jobs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12360 + }, + { + "word": "Glatze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bald head", + "romanization": "Glatze", + "example_sentence_native": "Er hat eine Glatze.", + "example_sentence_english": "He has a bald head.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12361 + }, + { + "word": "Heiligkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holiness;sanctity", + "romanization": "Heiligkeit", + "example_sentence_native": "Die Heiligkeit des Ortes war spürbar.", + "example_sentence_english": "The holiness of the place was palpable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12362 + }, + { + "word": "Hengst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stallion", + "romanization": "Hengst", + "example_sentence_native": "Der Hengst galoppierte über das Feld.", + "example_sentence_english": "The stallion galloped across the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12363 + }, + { + "word": "hergestellt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufactured;produced", + "romanization": "hergestellt", + "example_sentence_native": "Das Produkt ist in Deutschland hergestellt.", + "example_sentence_english": "The product is manufactured in Germany.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12364 + }, + { + "word": "Himmelfahrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ascension", + "romanization": "Himmelfahrt", + "example_sentence_native": "Christi Himmelfahrt ist ein Feiertag.", + "example_sentence_english": "Ascension Day is a public holiday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12365 + }, + { + "word": "Honorar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fee;honorarium", + "romanization": "Honorar", + "example_sentence_native": "Er erhielt ein hohes Honorar für seine Arbeit.", + "example_sentence_english": "He received a high fee for his work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12366 + }, + { + "word": "horizontal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontal", + "romanization": "horizontal", + "example_sentence_native": "Die Linie ist horizontal.", + "example_sentence_english": "The line is horizontal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12367 + }, + { + "word": "idealerweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideally", + "romanization": "idealerweise", + "example_sentence_native": "Idealerweise sollten wir morgen anfangen.", + "example_sentence_english": "Ideally, we should start tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12371 + }, + { + "word": "Implementierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implementation", + "romanization": "Implementierung", + "example_sentence_native": "Die Implementierung des Plans ist entscheidend.", + "example_sentence_english": "The implementation of the plan is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12372 + }, + { + "word": "implizieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to imply", + "romanization": "implizieren", + "example_sentence_native": "Seine Worte implizieren eine Drohung.", + "example_sentence_english": "His words imply a threat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12373 + }, + { + "word": "Intendant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "director (of a theater;broadcasting station)", + "romanization": "Intendant", + "example_sentence_native": "Der Intendant des Theaters gab eine Pressekonferenz.", + "example_sentence_english": "The director of the theater gave a press conference.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12375 + }, + { + "word": "Kapitulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitulation;surrender", + "romanization": "Kapitulation", + "example_sentence_native": "Die Kapitulation der Armee war unvermeidlich.", + "example_sentence_english": "The capitulation of the army was inevitable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12379 + }, + { + "word": "Keeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goalkeeper", + "romanization": "Keeper", + "example_sentence_native": "Der Keeper hat den Ball gehalten.", + "example_sentence_english": "The keeper saved the ball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12382 + }, + { + "word": "Kegel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cone;skittle", + "romanization": "Kegel", + "example_sentence_native": "Die Kinder spielten mit den Kegeln im Garten.", + "example_sentence_english": "The children played with the skittles in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12383 + }, + { + "word": "Konversation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conversation", + "romanization": "Konversation", + "example_sentence_native": "Sie führten eine interessante Konversation.", + "example_sentence_english": "They had an interesting conversation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12384 + }, + { + "word": "Konzil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "council (ecclesiastical)", + "romanization": "Konzil", + "example_sentence_native": "Das Konzil von Trient war ein wichtiges Ereignis in der Kirchengeschichte.", + "example_sentence_english": "The Council of Trent was an important event in church history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12385 + }, + { + "word": "Korps", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corps", + "romanization": "Korps", + "example_sentence_native": "Das diplomatische Korps traf sich zur jährlichen Versammlung.", + "example_sentence_english": "The diplomatic corps met for the annual assembly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12386 + }, + { + "word": "Kran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crane", + "romanization": "Kran", + "example_sentence_native": "Der Kran hob die schweren Bauteile an.", + "example_sentence_english": "The crane lifted the heavy building components.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12387 + }, + { + "word": "Krämer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shopkeeper;merchant", + "romanization": "Krämer", + "example_sentence_native": "Der Krämer verkaufte frisches Gemüse auf dem Markt.", + "example_sentence_english": "The shopkeeper sold fresh vegetables at the market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12389 + }, + { + "word": "Lab", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rennet", + "romanization": "Lab", + "example_sentence_native": "Lab wird bei der Käseherstellung verwendet.", + "example_sentence_english": "Rennet is used in cheese production.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12391 + }, + { + "word": "Lebensversicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life insurance", + "romanization": "Lebensversicherung", + "example_sentence_native": "Er hat eine Lebensversicherung abgeschlossen.", + "example_sentence_english": "He took out a life insurance policy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12392 + }, + { + "word": "Lift", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elevator;lift", + "romanization": "Lift", + "example_sentence_native": "Wir nahmen den Lift in den fünften Stock.", + "example_sentence_english": "We took the lift to the fifth floor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12393 + }, + { + "word": "Luder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carrion;hussy (derogatory)", + "romanization": "Luder", + "example_sentence_native": "Das Luder lag im Wald und lockte die Tiere an.", + "example_sentence_english": "The carrion lay in the forest and attracted the animals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12396 + }, + { + "word": "Making", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making (as in 'making-of')", + "romanization": "Making", + "example_sentence_native": "Das Making-of des Films war sehr interessant.", + "example_sentence_english": "The making-of the film was very interesting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12399 + }, + { + "word": "Matter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pus;matter", + "romanization": "Matter", + "example_sentence_native": "Die Wunde eiterte und es kam Matter heraus.", + "example_sentence_english": "The wound festered and pus came out.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12400 + }, + { + "word": "Matura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school leaving exam (Austria;Switzerland)", + "romanization": "Matura", + "example_sentence_native": "Sie hat die Matura mit Auszeichnung bestanden.", + "example_sentence_english": "She passed the high school leaving exam with distinction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12401 + }, + { + "word": "Mehrkosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "additional costs;extra costs", + "romanization": "Mehrkosten", + "example_sentence_native": "Die Bauarbeiten verursachten unerwartete Mehrkosten.", + "example_sentence_english": "The construction work caused unexpected additional costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12402 + }, + { + "word": "Migräne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "migraine", + "romanization": "Migräne", + "example_sentence_native": "Sie leidet oft unter starker Migräne.", + "example_sentence_english": "She often suffers from severe migraines.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12406 + }, + { + "word": "mitreden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to have a say;to participate in a discussion", + "romanization": "mitreden", + "example_sentence_native": "Jeder sollte die Möglichkeit haben, mitzureden.", + "example_sentence_english": "Everyone should have the opportunity to have a say.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "reden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12407 + }, + { + "word": "morgig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tomorrow's;of tomorrow", + "romanization": "morgig", + "example_sentence_native": "Die morgige Besprechung wurde abgesagt.", + "example_sentence_english": "Tomorrow's meeting was cancelled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12408 + }, + { + "word": "Nachruf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obituary;eulogy", + "romanization": "Nachruf", + "example_sentence_native": "In der Zeitung erschien ein langer Nachruf auf den verstorbenen Künstler.", + "example_sentence_english": "A long obituary for the deceased artist appeared in the newspaper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12410 + }, + { + "word": "namhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renowned;well-known;prominent", + "romanization": "namhaft", + "example_sentence_native": "Er ist ein namhafter Wissenschaftler auf seinem Gebiet.", + "example_sentence_english": "He is a renowned scientist in his field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12411 + }, + { + "word": "nebenher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alongside;incidentally;in passing", + "romanization": "nebenher", + "example_sentence_native": "Er arbeitet hauptberuflich und studiert nebenher.", + "example_sentence_english": "He works full-time and studies alongside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12412 + }, + { + "word": "neunte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ninth", + "romanization": "neunte", + "example_sentence_native": "Heute ist der neunte Mai.", + "example_sentence_english": "Today is the ninth of May.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 12413 + }, + { + "word": "Nobelpreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nobel Prize", + "romanization": "Nobelpreis", + "example_sentence_native": "Sie hat den Nobelpreis für Physik gewonnen.", + "example_sentence_english": "She won the Nobel Prize for Physics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12414 + }, + { + "word": "Nordwest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northwest", + "romanization": "Nordwest", + "example_sentence_native": "Der Wind kommt aus Nordwest.", + "example_sentence_english": "The wind comes from the northwest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12415 + }, + { + "word": "Nostalgie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nostalgia", + "romanization": "Nostalgie", + "example_sentence_native": "Er empfand eine tiefe Nostalgie für seine Kindheit.", + "example_sentence_english": "He felt a deep nostalgia for his childhood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12416 + }, + { + "word": "Paragraph", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paragraph", + "romanization": "Paragraph", + "example_sentence_native": "Bitte lesen Sie den ersten Paragraph.", + "example_sentence_english": "Please read the first paragraph.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12420 + }, + { + "word": "Pfingsten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pentecost;Whitsun", + "romanization": "Pfingsten", + "example_sentence_native": "Pfingsten ist ein Feiertag in Deutschland.", + "example_sentence_english": "Pentecost is a public holiday in Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12422 + }, + { + "word": "Philologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philology", + "romanization": "Philologie", + "example_sentence_native": "Sie studiert Philologie an der Universität.", + "example_sentence_english": "She studies philology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12423 + }, + { + "word": "Plateau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plateau", + "romanization": "Plateau", + "example_sentence_native": "Das Auto fuhr auf ein hohes Plateau.", + "example_sentence_english": "The car drove onto a high plateau.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12424 + }, + { + "word": "Playlist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "playlist", + "romanization": "Playlist", + "example_sentence_native": "Ich habe eine neue Playlist für meine Party erstellt.", + "example_sentence_english": "I created a new playlist for my party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12425 + }, + { + "word": "polizeilich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police-related;by the police", + "romanization": "polizeilich", + "example_sentence_native": "Es gab eine polizeiliche Untersuchung.", + "example_sentence_english": "There was a police investigation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12426 + }, + { + "word": "Polster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upholstery;padding;cushion", + "romanization": "Polster", + "example_sentence_native": "Das Sofa hat ein weiches Polster.", + "example_sentence_english": "The sofa has soft upholstery.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12427 + }, + { + "word": "Postkarte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "postcard", + "romanization": "Postkarte", + "example_sentence_native": "Ich schicke dir eine Postkarte aus dem Urlaub.", + "example_sentence_english": "I'll send you a postcard from vacation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12428 + }, + { + "word": "Puma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puma;cougar", + "romanization": "Puma", + "example_sentence_native": "Der Puma ist eine große Wildkatze.", + "example_sentence_english": "The puma is a large wild cat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12429 + }, + { + "word": "reduziert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reduced;discounted", + "romanization": "reduziert", + "example_sentence_native": "Die Preise sind stark reduziert.", + "example_sentence_english": "The prices are heavily reduced.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12432 + }, + { + "word": "Regisseurin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female director", + "romanization": "Regisseurin", + "example_sentence_native": "Die Regisseurin hat einen neuen Film gedreht.", + "example_sentence_english": "The female director shot a new film.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12433 + }, + { + "word": "Reinheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purity;cleanliness", + "romanization": "Reinheit", + "example_sentence_native": "Die Reinheit des Wassers ist wichtig.", + "example_sentence_english": "The purity of the water is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12434 + }, + { + "word": "Salafist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Salafist", + "romanization": "Salafist", + "example_sentence_native": "Ein Salafist ist ein Anhänger des Salafismus.", + "example_sentence_english": "A Salafist is a follower of Salafism.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12441 + }, + { + "word": "Sandstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sandstone", + "romanization": "Sandstein", + "example_sentence_native": "Die alte Burg wurde aus Sandstein gebaut.", + "example_sentence_english": "The old castle was built from sandstone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12444 + }, + { + "word": "Schall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sound;echo", + "romanization": "Schall", + "example_sentence_native": "Der Schall der Glocken hallte durch das Tal.", + "example_sentence_english": "The sound of the bells echoed through the valley.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12445 + }, + { + "word": "Scharia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sharia", + "romanization": "Scharia", + "example_sentence_native": "Die Scharia ist das islamische Rechtssystem.", + "example_sentence_english": "Sharia is the Islamic legal system.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12446 + }, + { + "word": "Schuldner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debtor", + "romanization": "Schuldner", + "example_sentence_native": "Der Schuldner konnte seine Schulden nicht bezahlen.", + "example_sentence_english": "The debtor could not pay his debts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12447 + }, + { + "word": "Schulhof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "schoolyard", + "romanization": "Schulhof", + "example_sentence_native": "Die Kinder spielen auf dem Schulhof.", + "example_sentence_english": "The children are playing in the schoolyard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12448 + }, + { + "word": "Schutt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubble;debris", + "romanization": "Schutt", + "example_sentence_native": "Nach dem Erdbeben lag überall Schutt.", + "example_sentence_english": "After the earthquake, there was rubble everywhere.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12449 + }, + { + "word": "Seidel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "half-liter mug (of beer);pint", + "romanization": "Seidel", + "example_sentence_native": "Er bestellte ein Seidel Bier.", + "example_sentence_english": "He ordered a pint of beer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12450 + }, + { + "word": "Seilbahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cable car;ropeway", + "romanization": "Seilbahn", + "example_sentence_native": "Wir fuhren mit der Seilbahn auf den Berg.", + "example_sentence_english": "We took the cable car up the mountain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12451 + }, + { + "word": "Selektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selection", + "romanization": "Selektion", + "example_sentence_native": "Die natürliche Selektion ist ein wichtiger Evolutionsfaktor.", + "example_sentence_english": "Natural selection is an important evolutionary factor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12452 + }, + { + "word": "Skelett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skeleton", + "romanization": "Skelett", + "example_sentence_native": "Das menschliche Skelett besteht aus vielen Knochen.", + "example_sentence_english": "The human skeleton consists of many bones.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12455 + }, + { + "word": "Sozialversicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social security;social insurance", + "romanization": "Sozialversicherung", + "example_sentence_native": "Jeder Arbeitnehmer zahlt in die Sozialversicherung ein.", + "example_sentence_english": "Every employee contributes to social security.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12456 + }, + { + "word": "Spitzenreiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader;front-runner;top performer", + "romanization": "Spitzenreiter", + "example_sentence_native": "Die Mannschaft ist der Spitzenreiter der Liga.", + "example_sentence_english": "The team is the league leader.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12457 + }, + { + "word": "Sprit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel;gas (informal);alcohol (informal)", + "romanization": "Sprit", + "example_sentence_native": "Das Auto braucht viel Sprit.", + "example_sentence_english": "The car needs a lot of fuel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12458 + }, + { + "word": "Staatsregierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state government", + "romanization": "Staatsregierung", + "example_sentence_native": "Die Staatsregierung hat neue Maßnahmen angekündigt.", + "example_sentence_english": "The state government has announced new measures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12461 + }, + { + "word": "Startschuss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starting gun;kickoff", + "romanization": "Startschuss", + "example_sentence_native": "Der Startschuss fiel pünktlich um zehn Uhr.", + "example_sentence_english": "The starting gun went off punctually at ten o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12462 + }, + { + "word": "Step", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "step", + "romanization": "Step", + "example_sentence_native": "Beim Aerobic macht man viele Steps.", + "example_sentence_english": "In aerobics, you do many steps.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12463 + }, + { + "word": "Sternchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "asterisk;little star", + "romanization": "Sternchen", + "example_sentence_native": "Bitte beachten Sie das Sternchen am Ende des Satzes.", + "example_sentence_english": "Please note the asterisk at the end of the sentence.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12464 + }, + { + "word": "straight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straight;direct", + "romanization": "straight", + "example_sentence_native": "Er ist ein sehr straighter Typ.", + "example_sentence_english": "He is a very straightforward guy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12465 + }, + { + "word": "Systematik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "systematics;system", + "romanization": "Systematik", + "example_sentence_native": "Die Systematik der Pflanzen ist sehr komplex.", + "example_sentence_english": "The systematics of plants is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12467 + }, + { + "word": "Tabellenplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "league position;table rank", + "romanization": "Tabellenplatz", + "example_sentence_native": "Der Verein kämpft um einen besseren Tabellenplatz.", + "example_sentence_english": "The club is fighting for a better league position.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12468 + }, + { + "word": "taktisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactical", + "romanization": "taktisch", + "example_sentence_native": "Das war eine taktisch kluge Entscheidung.", + "example_sentence_english": "That was a tactically clever decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12469 + }, + { + "word": "Tatbestand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "facts of the case;offense", + "romanization": "Tatbestand", + "example_sentence_native": "Der Tatbestand der Beleidigung ist erfüllt.", + "example_sentence_english": "The offense of insult has been committed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12470 + }, + { + "word": "Textilie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "textile", + "romanization": "Textilie", + "example_sentence_native": "Diese Textilie ist aus reiner Baumwolle.", + "example_sentence_english": "This textile is made of pure cotton.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12471 + }, + { + "word": "Tram", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tram;streetcar", + "romanization": "Tram", + "example_sentence_native": "Die Tram fährt direkt zum Stadtzentrum.", + "example_sentence_english": "The tram goes directly to the city center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12472 + }, + { + "word": "Tscheche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Czech (person)", + "romanization": "Tscheche", + "example_sentence_native": "Er ist ein Tscheche und spricht fließend Deutsch.", + "example_sentence_english": "He is a Czech and speaks fluent German.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12473 + }, + { + "word": "unkompliziert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncomplicated;straightforward", + "romanization": "unkompliziert", + "example_sentence_native": "Die Installation war sehr unkompliziert.", + "example_sentence_english": "The installation was very uncomplicated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12476 + }, + { + "word": "unweigerlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inevitably;irresistibly", + "romanization": "unweigerlich", + "example_sentence_native": "Das Ergebnis wird unweigerlich eintreten.", + "example_sentence_english": "The result will inevitably occur.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12477 + }, + { + "word": "Uran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uranium", + "romanization": "Uran", + "example_sentence_native": "Uran ist ein radioaktives Element.", + "example_sentence_english": "Uranium is a radioactive element.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12478 + }, + { + "word": "Urne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urn", + "romanization": "Urne", + "example_sentence_native": "Die Asche wurde in einer Urne beigesetzt.", + "example_sentence_english": "The ashes were interred in an urn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12479 + }, + { + "word": "Vanille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vanilla", + "romanization": "Vanille", + "example_sentence_native": "Ich liebe Eis mit Vanille-Geschmack.", + "example_sentence_english": "I love ice cream with vanilla flavor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12480 + }, + { + "word": "Verhütung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraception;prevention", + "romanization": "Verhütung", + "example_sentence_native": "Die Verhütung von Krankheiten ist wichtig.", + "example_sentence_english": "The prevention of diseases is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12481 + }, + { + "word": "verlässlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reliable;dependable", + "romanization": "verlässlich", + "example_sentence_native": "Er ist ein sehr verlässlicher Freund.", + "example_sentence_english": "He is a very reliable friend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12482 + }, + { + "word": "verordnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prescribe;to order", + "romanization": "verordnen", + "example_sentence_native": "Der Arzt verordnet Medikamente.", + "example_sentence_english": "The doctor prescribes medication.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12483 + }, + { + "word": "verrichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perform;to carry out", + "romanization": "verrichten", + "example_sentence_native": "Sie verrichtet ihre Arbeit sorgfältig.", + "example_sentence_english": "She performs her work carefully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12484 + }, + { + "word": "vertauschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swap;to exchange", + "romanization": "vertauschen", + "example_sentence_native": "Ich habe versehentlich die Schlüssel vertauscht.", + "example_sentence_english": "I accidentally swapped the keys.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12485 + }, + { + "word": "Verteidigungsministerium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ministry of Defense", + "romanization": "Verteidigungsministerium", + "example_sentence_native": "Das Verteidigungsministerium hat eine neue Strategie angekündigt.", + "example_sentence_english": "The Ministry of Defense announced a new strategy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12486 + }, + { + "word": "vorgeschlagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proposed;suggested", + "romanization": "vorgeschlagen", + "example_sentence_native": "Der vorgeschlagene Plan wurde angenommen.", + "example_sentence_english": "The proposed plan was accepted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12487 + }, + { + "word": "vorgestellt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduced;presented", + "romanization": "vorgestellt", + "example_sentence_native": "Die neue Kollegin wurde vorgestellt.", + "example_sentence_english": "The new colleague was introduced.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12488 + }, + { + "word": "Vorreiter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pioneer;trailblazer", + "romanization": "Vorreiter", + "example_sentence_native": "Das Unternehmen ist ein Vorreiter in der Technologie.", + "example_sentence_english": "The company is a pioneer in technology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12489 + }, + { + "word": "Wal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whale", + "romanization": "Wal", + "example_sentence_native": "Der Wal ist das größte Säugetier der Welt.", + "example_sentence_english": "The whale is the largest mammal in the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12490 + }, + { + "word": "Warner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "warning device;alerter", + "romanization": "Warner", + "example_sentence_native": "Der Rauchmelder ist ein wichtiger Warner vor Feuer.", + "example_sentence_english": "The smoke detector is an important warning device for fire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12491 + }, + { + "word": "Windkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wind power", + "romanization": "Windkraft", + "example_sentence_native": "Windkraft ist eine erneuerbare Energiequelle.", + "example_sentence_english": "Wind power is a renewable energy source.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12493 + }, + { + "word": "Winzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winemaker;vintner", + "romanization": "Winzer", + "example_sentence_native": "Der Winzer produziert ausgezeichneten Wein.", + "example_sentence_english": "The winemaker produces excellent wine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12494 + }, + { + "word": "Wirtschaftsminister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Minister of Economy", + "romanization": "Wirtschaftsminister", + "example_sentence_native": "Der Wirtschaftsminister hielt eine Rede.", + "example_sentence_english": "The Minister of Economy gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12495 + }, + { + "word": "wischen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wipe;to mop", + "romanization": "wischen", + "example_sentence_native": "Bitte wischen Sie den Tisch ab.", + "example_sentence_english": "Please wipe the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12496 + }, + { + "word": "Wohngebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "residential area", + "romanization": "Wohngebiet", + "example_sentence_native": "Wir wohnen in einem ruhigen Wohngebiet.", + "example_sentence_english": "We live in a quiet residential area.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12497 + }, + { + "word": "Zulieferer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplier;vendor", + "romanization": "Zulieferer", + "example_sentence_native": "Der Zulieferer liefert die Teile pünktlich.", + "example_sentence_english": "The supplier delivers the parts on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12499 + }, + { + "word": "zwölfte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twelfth", + "romanization": "zwölfte", + "example_sentence_native": "Heute ist der zwölfte Mai.", + "example_sentence_english": "Today is the twelfth of May.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 12501 + }, + { + "word": "zäh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tough;tenacious", + "romanization": "zäh", + "example_sentence_native": "Das Fleisch ist sehr zäh.", + "example_sentence_english": "The meat is very tough.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12502 + }, + { + "word": "öde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desolate;bleak;boring", + "romanization": "öde", + "example_sentence_native": "Die Landschaft war öde und leer.", + "example_sentence_english": "The landscape was desolate and empty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12503 + }, + { + "word": "Überfluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abundance;surplus", + "romanization": "Überfluss", + "example_sentence_native": "Wir leben im Überfluss.", + "example_sentence_english": "We live in abundance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12504 + }, + { + "word": "überregional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supraregional;nationwide", + "romanization": "überregional", + "example_sentence_native": "Die Zeitung hat eine überregionale Auflage.", + "example_sentence_english": "The newspaper has a supraregional circulation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12505 + }, + { + "word": "Abfluss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drain;outflow", + "romanization": "Abfluss", + "example_sentence_native": "Der Abfluss in der Spüle ist verstopft.", + "example_sentence_english": "The drain in the sink is clogged.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12506 + }, + { + "word": "Absteiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relegated team;person", + "romanization": "Absteiger", + "example_sentence_native": "Der Verein ist ein Absteiger aus der ersten Liga.", + "example_sentence_english": "The club is a relegated team from the first league.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12507 + }, + { + "word": "Abwasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wastewater;sewage", + "romanization": "Abwasser", + "example_sentence_native": "Das Abwasser wird in der Kläranlage gereinigt.", + "example_sentence_english": "The wastewater is treated in the sewage plant.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12508 + }, + { + "word": "Alge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alga;seaweed", + "romanization": "Alge", + "example_sentence_native": "Im Meer wachsen viele Algen.", + "example_sentence_english": "Many algae grow in the sea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12510 + }, + { + "word": "Allergie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "allergy", + "romanization": "Allergie", + "example_sentence_native": "Ich habe eine Allergie gegen Nüsse.", + "example_sentence_english": "I have an allergy to nuts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12511 + }, + { + "word": "altern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to age;to grow old", + "romanization": "altern", + "example_sentence_native": "Menschen altern mit der Zeit.", + "example_sentence_english": "People age over time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12513 + }, + { + "word": "angebunden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tied up;tethered", + "romanization": "angebunden", + "example_sentence_native": "Das Pferd war an einem Baum angebunden.", + "example_sentence_english": "The horse was tied up to a tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12515 + }, + { + "word": "anmachen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn on;to light", + "romanization": "anmachen", + "example_sentence_native": "Kannst du bitte das Licht anmachen?", + "example_sentence_english": "Can you please turn on the light?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12516 + }, + { + "word": "anstecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to infect;to pin on", + "romanization": "anstecken", + "example_sentence_native": "Er hat sich mit Grippe angesteckt.", + "example_sentence_english": "He got infected with the flu.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "stecken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12517 + }, + { + "word": "anhängen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attach;to append", + "romanization": "anhängen", + "example_sentence_native": "Ich werde die Datei an die E-Mail anhängen.", + "example_sentence_english": "I will attach the file to the email.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "hängen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12518 + }, + { + "word": "Antikörper", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antibody", + "romanization": "Antikörper", + "example_sentence_native": "Der Körper bildet Antikörper gegen Viren.", + "example_sentence_english": "The body forms antibodies against viruses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12519 + }, + { + "word": "Arbeiterbewegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labor movement", + "romanization": "Arbeiterbewegung", + "example_sentence_native": "Die Arbeiterbewegung kämpfte für bessere Arbeitsbedingungen.", + "example_sentence_english": "The labor movement fought for better working conditions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12520 + }, + { + "word": "Artist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artist (performer)", + "romanization": "Artist", + "example_sentence_native": "Der Artist zeigte eine beeindruckende Darbietung.", + "example_sentence_english": "The artist showed an impressive performance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12521 + }, + { + "word": "Assoziation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "association", + "romanization": "Assoziation", + "example_sentence_native": "Er hatte eine starke Assoziation mit diesem Lied.", + "example_sentence_english": "He had a strong association with this song.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12522 + }, + { + "word": "Backe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheek", + "romanization": "Backe", + "example_sentence_native": "Sie küsste ihn auf die Backe.", + "example_sentence_english": "She kissed him on the cheek.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12525 + }, + { + "word": "barfuss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barefoot", + "romanization": "barfuss", + "example_sentence_native": "Sie lief barfuss am Strand entlang.", + "example_sentence_english": "She walked barefoot along the beach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12528 + }, + { + "word": "Barmherzigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercy;compassion", + "romanization": "Barmherzigkeit", + "example_sentence_native": "Er bat um Barmherzigkeit.", + "example_sentence_english": "He asked for mercy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12529 + }, + { + "word": "Baukosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction costs", + "romanization": "Baukosten", + "example_sentence_native": "Die Baukosten sind stark gestiegen.", + "example_sentence_english": "The construction costs have risen sharply.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12531 + }, + { + "word": "bedroht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatened;endangered", + "romanization": "bedroht", + "example_sentence_native": "Viele Tierarten sind bedroht.", + "example_sentence_english": "Many animal species are endangered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12534 + }, + { + "word": "beerdigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bury", + "romanization": "beerdigen", + "example_sentence_native": "Sie werden ihn morgen beerdigen.", + "example_sentence_english": "They will bury him tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12535 + }, + { + "word": "Begabung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "talent;aptitude", + "romanization": "Begabung", + "example_sentence_native": "Er hat eine besondere Begabung für Musik.", + "example_sentence_english": "He has a special talent for music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12536 + }, + { + "word": "behutsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careful;cautious", + "romanization": "behutsam", + "example_sentence_native": "Er öffnete das Paket behutsam.", + "example_sentence_english": "He opened the package carefully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12537 + }, + { + "word": "Beistand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assistance;support", + "romanization": "Beistand", + "example_sentence_native": "Sie leistete ihm Beistand in schwierigen Zeiten.", + "example_sentence_english": "She gave him assistance in difficult times.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12538 + }, + { + "word": "Benachrichtigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notification;message", + "romanization": "Benachrichtigung", + "example_sentence_native": "Ich habe eine Benachrichtigung auf meinem Handy erhalten.", + "example_sentence_english": "I received a notification on my phone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12539 + }, + { + "word": "bestücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equip;to stock", + "romanization": "bestücken", + "example_sentence_native": "Wir müssen das Lager neu bestücken.", + "example_sentence_english": "We need to restock the warehouse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12541 + }, + { + "word": "betrauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entrust;to charge with", + "romanization": "betrauen", + "example_sentence_native": "Er wurde mit der Aufgabe betraut.", + "example_sentence_english": "He was entrusted with the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12542 + }, + { + "word": "Datenvolumen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "data volume", + "romanization": "Datenvolumen", + "example_sentence_native": "Mein Datenvolumen ist fast aufgebraucht.", + "example_sentence_english": "My data volume is almost used up.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12553 + }, + { + "word": "Dekret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decree", + "romanization": "Dekret", + "example_sentence_native": "Die Regierung erließ ein neues Dekret.", + "example_sentence_english": "The government issued a new decree.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12554 + }, + { + "word": "Devise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motto;foreign currency", + "romanization": "Devise", + "example_sentence_native": "Unsere Devise lautet: Qualität vor Quantität.", + "example_sentence_english": "Our motto is: quality over quantity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12555 + }, + { + "word": "eingeführt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introduced", + "romanization": "eingeführt", + "example_sentence_native": "Das neue System wurde erfolgreich eingeführt.", + "example_sentence_english": "The new system was successfully introduced.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12560 + }, + { + "word": "elfte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eleventh", + "romanization": "elfte", + "example_sentence_native": "Sie ist die elfte Person in der Reihe.", + "example_sentence_english": "She is the eleventh person in the line.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 12561 + }, + { + "word": "Emanzipation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emancipation", + "romanization": "Emanzipation", + "example_sentence_native": "Die Emanzipation der Frau ist ein wichtiges Thema.", + "example_sentence_english": "The emancipation of women is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12562 + }, + { + "word": "empor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upwards", + "romanization": "empor", + "example_sentence_native": "Der Adler stieg empor in den Himmel.", + "example_sentence_english": "The eagle rose upwards into the sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12563 + }, + { + "word": "Erbse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pea", + "romanization": "Erbse", + "example_sentence_native": "Ich mag Erbsen in meiner Suppe.", + "example_sentence_english": "I like peas in my soup.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12564 + }, + { + "word": "Erdboden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ground", + "romanization": "Erdboden", + "example_sentence_native": "Der Ball fiel auf den Erdboden.", + "example_sentence_english": "The ball fell to the ground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12565 + }, + { + "word": "ermittelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determined", + "romanization": "ermittelt", + "example_sentence_native": "Die ermittelte Ursache war ein technischer Defekt.", + "example_sentence_english": "The determined cause was a technical defect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12566 + }, + { + "word": "Ernstfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergency", + "romanization": "Ernstfall", + "example_sentence_native": "Im Ernstfall müssen wir schnell reagieren.", + "example_sentence_english": "In an emergency, we must react quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12567 + }, + { + "word": "Erzeugnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "product", + "romanization": "Erzeugnis", + "example_sentence_native": "Dieses Erzeugnis ist von hoher Qualität.", + "example_sentence_english": "This product is of high quality.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12568 + }, + { + "word": "Fackel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torch", + "romanization": "Fackel", + "example_sentence_native": "Er trug eine Fackel durch die Dunkelheit.", + "example_sentence_english": "He carried a torch through the darkness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12571 + }, + { + "word": "Ferienhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "holiday home", + "romanization": "Ferienhaus", + "example_sentence_native": "Wir mieten ein Ferienhaus für den Sommer.", + "example_sentence_english": "We are renting a holiday home for the summer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12573 + }, + { + "word": "Fetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rag", + "romanization": "Fetzen", + "example_sentence_native": "Er fand nur noch Fetzen seiner alten Kleidung.", + "example_sentence_english": "He only found rags of his old clothes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12574 + }, + { + "word": "Foyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foyer", + "romanization": "Foyer", + "example_sentence_native": "Wir treffen uns im Foyer des Theaters.", + "example_sentence_english": "We meet in the foyer of the theater.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12575 + }, + { + "word": "Freiraum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free space", + "romanization": "Freiraum", + "example_sentence_native": "Jeder braucht seinen eigenen Freiraum.", + "example_sentence_english": "Everyone needs their own free space.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12576 + }, + { + "word": "Fussballfan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football fan", + "romanization": "Fussballfan", + "example_sentence_native": "Er ist ein großer Fussballfan.", + "example_sentence_english": "He is a big football fan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12577 + }, + { + "word": "gaga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gaga", + "romanization": "gaga", + "example_sentence_native": "Bist du gaga geworden?", + "example_sentence_english": "Have you gone gaga?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12578 + }, + { + "word": "gebühren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be due", + "romanization": "gebühren", + "example_sentence_native": "Ihm gebührt großer Respekt.", + "example_sentence_english": "He is due great respect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12579 + }, + { + "word": "gefördert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funded;promoted", + "romanization": "gefördert", + "example_sentence_native": "Das Projekt wird von der Regierung gefördert.", + "example_sentence_english": "The project is funded by the government.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12580 + }, + { + "word": "Gentechnik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genetic engineering", + "romanization": "Gentechnik", + "example_sentence_native": "Die Gentechnik bietet neue Möglichkeiten in der Medizin.", + "example_sentence_english": "Genetic engineering offers new possibilities in medicine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12581 + }, + { + "word": "Geschütz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cannon;gun (artillery)", + "romanization": "Geschütz", + "example_sentence_native": "Das alte Geschütz stand als Denkmal auf dem Hügel.", + "example_sentence_english": "The old cannon stood as a monument on the hill.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12582 + }, + { + "word": "gesichert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secured;safe", + "romanization": "gesichert", + "example_sentence_native": "Die Daten sind sicher gesichert.", + "example_sentence_english": "The data is securely saved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12583 + }, + { + "word": "Gesichtspunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "point of view;aspect", + "romanization": "Gesichtspunkt", + "example_sentence_native": "Aus diesem Gesichtspunkt ist die Situation klar.", + "example_sentence_english": "From this point of view, the situation is clear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12584 + }, + { + "word": "getötet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "killed", + "romanization": "getötet", + "example_sentence_native": "Das getötete Tier wurde im Wald gefunden.", + "example_sentence_english": "The killed animal was found in the forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12585 + }, + { + "word": "Gewahrsam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "custody;detention", + "romanization": "Gewahrsam", + "example_sentence_native": "Der Verdächtige wurde in Gewahrsam genommen.", + "example_sentence_english": "The suspect was taken into custody.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12586 + }, + { + "word": "gigantisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gigantic;enormous", + "romanization": "gigantisch", + "example_sentence_native": "Das war ein gigantischer Erfolg für das Team.", + "example_sentence_english": "That was a gigantic success for the team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12587 + }, + { + "word": "Government", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "government", + "romanization": "Government", + "example_sentence_native": "Das Government hat neue Richtlinien erlassen.", + "example_sentence_english": "The government has issued new guidelines.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12590 + }, + { + "word": "Gruppenphase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group stage", + "romanization": "Gruppenphase", + "example_sentence_native": "Die Mannschaft hat die Gruppenphase erfolgreich überstanden.", + "example_sentence_english": "The team successfully passed the group stage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12591 + }, + { + "word": "Hain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grove;copse", + "romanization": "Hain", + "example_sentence_native": "Sie spazierten durch einen kleinen Hain am Fluss.", + "example_sentence_english": "They walked through a small grove by the river.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12592 + }, + { + "word": "handhaben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to handle;to manage", + "romanization": "handhaben", + "example_sentence_native": "Man muss diese Maschine vorsichtig handhaben.", + "example_sentence_english": "One must handle this machine carefully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12593 + }, + { + "word": "Hausnummer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "house number", + "romanization": "Hausnummer", + "example_sentence_native": "Bitte geben Sie Ihre Hausnummer an.", + "example_sentence_english": "Please provide your house number.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12594 + }, + { + "word": "Heuchler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypocrite", + "romanization": "Heuchler", + "example_sentence_native": "Er nannte ihn einen Heuchler.", + "example_sentence_english": "He called him a hypocrite.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12598 + }, + { + "word": "hierauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thereupon;after this", + "romanization": "hierauf", + "example_sentence_native": "Er beendete seine Rede, und hierauf folgte Applaus.", + "example_sentence_english": "He finished his speech, and thereupon applause followed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12599 + }, + { + "word": "heißen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be called;to be named", + "romanization": "heißen", + "example_sentence_native": "Ich heiße Anna.", + "example_sentence_english": "My name is Anna.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12600 + }, + { + "word": "hinterlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deposit;to file", + "romanization": "hinterlegen", + "example_sentence_native": "Sie müssen Ihre Schlüssel an der Rezeption hinterlegen.", + "example_sentence_english": "You must deposit your keys at the reception.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12601 + }, + { + "word": "Hort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refuge;after-school care center", + "romanization": "Hort", + "example_sentence_native": "Der Hort bietet den Kindern nach der Schule Betreuung.", + "example_sentence_english": "The after-school care center offers supervision to the children after school.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12602 + }, + { + "word": "hungern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to starve;to be hungry", + "romanization": "hungern", + "example_sentence_native": "Viele Menschen hungern in dieser Region.", + "example_sentence_english": "Many people are starving in this region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12603 + }, + { + "word": "Hypnose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypnosis", + "romanization": "Hypnose", + "example_sentence_native": "Sie wurde unter Hypnose gesetzt.", + "example_sentence_english": "She was put under hypnosis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12604 + }, + { + "word": "Impfstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vaccine", + "romanization": "Impfstoff", + "example_sentence_native": "Der neue Impfstoff ist sehr wirksam.", + "example_sentence_english": "The new vaccine is very effective.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12605 + }, + { + "word": "intakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intact", + "romanization": "intakt", + "example_sentence_native": "Das System ist noch intakt.", + "example_sentence_english": "The system is still intact.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12607 + }, + { + "word": "Jackpot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jackpot", + "romanization": "Jackpot", + "example_sentence_native": "Er hat den Jackpot geknackt.", + "example_sentence_english": "He hit the jackpot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12609 + }, + { + "word": "Karre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cart;(slang) car", + "romanization": "Karre", + "example_sentence_native": "Stell die Karre bitte in die Garage.", + "example_sentence_english": "Please put the car in the garage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12612 + }, + { + "word": "Kelch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chalice;goblet", + "romanization": "Kelch", + "example_sentence_native": "Der Priester hob den Kelch.", + "example_sentence_english": "The priest raised the chalice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12613 + }, + { + "word": "Kies", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gravel;(slang) money", + "romanization": "Kies", + "example_sentence_native": "Der Weg ist mit Kies bedeckt.", + "example_sentence_english": "The path is covered with gravel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12614 + }, + { + "word": "Kleiderschrank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wardrobe;closet", + "romanization": "Kleiderschrank", + "example_sentence_native": "Der Kleiderschrank ist voll mit Kleidung.", + "example_sentence_english": "The wardrobe is full of clothes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12616 + }, + { + "word": "Kleinwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small car;compact car", + "romanization": "Kleinwagen", + "example_sentence_native": "Sie fährt einen roten Kleinwagen.", + "example_sentence_english": "She drives a red compact car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12617 + }, + { + "word": "Komplize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplice", + "romanization": "Komplize", + "example_sentence_native": "Der Dieb wurde mit seinem Komplizen gefasst.", + "example_sentence_english": "The thief was caught with his accomplice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12618 + }, + { + "word": "Konstante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constant", + "romanization": "Konstante", + "example_sentence_native": "Die Lichtgeschwindigkeit ist eine physikalische Konstante.", + "example_sentence_english": "The speed of light is a physical constant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12619 + }, + { + "word": "Kreide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chalk", + "romanization": "Kreide", + "example_sentence_native": "Die Lehrerin schrieb mit Kreide an die Tafel.", + "example_sentence_english": "The teacher wrote with chalk on the board.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12620 + }, + { + "word": "kriechen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crawl", + "romanization": "kriechen", + "example_sentence_native": "Das Baby begann, auf allen Vieren zu kriechen.", + "example_sentence_english": "The baby started to crawl on all fours.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12621 + }, + { + "word": "Kulturgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultural history", + "romanization": "Kulturgeschichte", + "example_sentence_native": "Er studiert europäische Kulturgeschichte.", + "example_sentence_english": "He studies European cultural history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12622 + }, + { + "word": "kurdisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Kurdish", + "romanization": "kurdisch", + "example_sentence_native": "Sie lernt die kurdische Sprache.", + "example_sentence_english": "She is learning the Kurdish language.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12623 + }, + { + "word": "kuscheln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cuddle", + "romanization": "kuscheln", + "example_sentence_native": "Die Kinder lieben es, sich an ihre Eltern zu kuscheln.", + "example_sentence_english": "The children love to cuddle up to their parents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12624 + }, + { + "word": "Kühlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooling", + "romanization": "Kühlung", + "example_sentence_native": "Das Gerät benötigt eine gute Kühlung.", + "example_sentence_english": "The device requires good cooling.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12625 + }, + { + "word": "liebend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loving", + "romanization": "liebend", + "example_sentence_native": "Sie ist eine sehr liebende Mutter.", + "example_sentence_english": "She is a very loving mother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12629 + }, + { + "word": "lindern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to alleviate", + "romanization": "lindern", + "example_sentence_native": "Das Medikament kann die Schmerzen lindern.", + "example_sentence_english": "The medication can alleviate the pain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12630 + }, + { + "word": "längs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "along", + "romanization": "längs", + "example_sentence_native": "Er ging längs des Flusses.", + "example_sentence_english": "He walked along the river.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 12632 + }, + { + "word": "Meinungsäusserung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expression of opinion", + "romanization": "Meinungsäusserung", + "example_sentence_native": "Die Meinungsäusserung ist ein Grundrecht.", + "example_sentence_english": "The expression of opinion is a fundamental right.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12638 + }, + { + "word": "Mittelschicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle class", + "romanization": "Mittelschicht", + "example_sentence_native": "Die Mittelschicht ist ein wichtiger Teil der Gesellschaft.", + "example_sentence_english": "The middle class is an important part of society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12641 + }, + { + "word": "modernisieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to modernize", + "romanization": "modernisieren", + "example_sentence_native": "Wir müssen das alte Gebäude modernisieren.", + "example_sentence_english": "We need to modernize the old building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12642 + }, + { + "word": "Netzteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power supply unit", + "romanization": "Netzteil", + "example_sentence_native": "Das Netzteil meines Laptops ist kaputt.", + "example_sentence_english": "The power supply unit of my laptop is broken.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12644 + }, + { + "word": "Neujahr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "New Year", + "romanization": "Neujahr", + "example_sentence_native": "Wir feiern Neujahr mit Freunden.", + "example_sentence_english": "We celebrate New Year with friends.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12645 + }, + { + "word": "Newcomer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newcomer", + "romanization": "Newcomer", + "example_sentence_native": "Der Newcomer hat sich schnell im Team eingelebt.", + "example_sentence_english": "The newcomer quickly settled into the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12646 + }, + { + "word": "Obmann", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chairman;spokesperson (male)", + "romanization": "Obmann", + "example_sentence_native": "Der Obmann der Partei hielt eine Rede.", + "example_sentence_english": "The chairman of the party gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12648 + }, + { + "word": "offshore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offshore", + "romanization": "offshore", + "example_sentence_native": "Viele Unternehmen verlagern ihre Produktion offshore.", + "example_sentence_english": "Many companies relocate their production offshore.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12650 + }, + { + "word": "Ordnungsamt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public order office", + "romanization": "Ordnungsamt", + "example_sentence_native": "Das Ordnungsamt hat die Veranstaltung genehmigt.", + "example_sentence_english": "The public order office approved the event.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12652 + }, + { + "word": "originell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "original;inventive", + "romanization": "originell", + "example_sentence_native": "Das war eine sehr originelle Idee.", + "example_sentence_english": "That was a very original idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12653 + }, + { + "word": "persisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Persian", + "romanization": "persisch", + "example_sentence_native": "Sie spricht fließend Persisch.", + "example_sentence_english": "She speaks fluent Persian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12655 + }, + { + "word": "Playboy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "playboy", + "romanization": "Playboy", + "example_sentence_native": "Er wird oft als Playboy bezeichnet.", + "example_sentence_english": "He is often referred to as a playboy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12656 + }, + { + "word": "Plug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plug", + "romanization": "Plug", + "example_sentence_native": "Stecken Sie den Plug in die Steckdose.", + "example_sentence_english": "Plug the plug into the socket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12657 + }, + { + "word": "Polizeigewalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "police brutality;violence", + "romanization": "Polizeigewalt", + "example_sentence_native": "Es gab Proteste gegen Polizeigewalt.", + "example_sentence_english": "There were protests against police brutality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12659 + }, + { + "word": "Pressesprecher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press spokesman", + "romanization": "Pressesprecher", + "example_sentence_native": "Der Pressesprecher gab eine Erklärung ab.", + "example_sentence_english": "The press spokesman made a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12660 + }, + { + "word": "Professur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professorship", + "romanization": "Professur", + "example_sentence_native": "Sie hat eine Professur an der Universität angenommen.", + "example_sentence_english": "She accepted a professorship at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12661 + }, + { + "word": "Präsidentschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidency", + "romanization": "Präsidentschaft", + "example_sentence_native": "Die Präsidentschaft dauert vier Jahre.", + "example_sentence_english": "The presidency lasts four years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12662 + }, + { + "word": "rapide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rapid", + "romanization": "rapide", + "example_sentence_native": "Die Entwicklung war rapide.", + "example_sentence_english": "The development was rapid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 12665 + }, + { + "word": "Relief", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relief", + "romanization": "Relief", + "example_sentence_native": "Das Relief an der Wand ist sehr alt.", + "example_sentence_english": "The relief on the wall is very old.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12666 + }, + { + "word": "runterladen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to download", + "romanization": "runterladen", + "example_sentence_native": "Ich muss die Datei noch runterladen.", + "example_sentence_english": "I still need to download the file.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "runter", + "base_verb": "laden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12670 + }, + { + "word": "Rutsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slip", + "romanization": "Rutsch", + "example_sentence_native": "Pass auf, dass du keinen Rutsch machst.", + "example_sentence_english": "Be careful not to slip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12671 + }, + { + "word": "Schiss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fear", + "romanization": "Schiss", + "example_sentence_native": "Er hatte Schiss vor der Prüfung.", + "example_sentence_english": "He was scared of the exam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12673 + }, + { + "word": "Schlosser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locksmith", + "romanization": "Schlosser", + "example_sentence_native": "Der Schlosser reparierte das Tor.", + "example_sentence_english": "The locksmith repaired the gate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12674 + }, + { + "word": "Schwarm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swarm", + "romanization": "Schwarm", + "example_sentence_native": "Ein Schwarm Vögel flog über uns hinweg.", + "example_sentence_english": "A flock of birds flew over us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12675 + }, + { + "word": "Selbstverteidigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-defense", + "romanization": "Selbstverteidigung", + "example_sentence_native": "Sie lernt Selbstverteidigung.", + "example_sentence_english": "She is learning self-defense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12677 + }, + { + "word": "Sponsoring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsoring;sponsorship", + "romanization": "Sponsoring", + "example_sentence_native": "Das Sponsoring ist für viele Sportvereine wichtig.", + "example_sentence_english": "Sponsoring is important for many sports clubs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12680 + }, + { + "word": "Stadtrand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city outskirts;city limits", + "romanization": "Stadtrand", + "example_sentence_native": "Sie wohnen am Stadtrand von Berlin.", + "example_sentence_english": "They live on the outskirts of Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12681 + }, + { + "word": "Statthalter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governor;viceroy", + "romanization": "Statthalter", + "example_sentence_native": "Der Statthalter regierte die Provinz im Namen des Kaisers.", + "example_sentence_english": "The governor ruled the province in the name of the emperor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12682 + }, + { + "word": "suspendieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to suspend", + "romanization": "suspendieren", + "example_sentence_native": "Der Richter beschloss, das Verfahren zu suspendieren.", + "example_sentence_english": "The judge decided to suspend the proceedings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12685 + }, + { + "word": "Teilnehmerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female participant", + "romanization": "Teilnehmerin", + "example_sentence_native": "Jede Teilnehmerin erhielt ein Zertifikat.", + "example_sentence_english": "Every female participant received a certificate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12687 + }, + { + "word": "Tick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tic;quirk", + "romanization": "Tick", + "example_sentence_native": "Er hat einen nervösen Tick.", + "example_sentence_english": "He has a nervous tic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12689 + }, + { + "word": "Trockenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dryness;drought", + "romanization": "Trockenheit", + "example_sentence_native": "Die lange Trockenheit führte zu Ernteausfällen.", + "example_sentence_english": "The long drought led to crop failures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12690 + }, + { + "word": "umgebend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrounding;ambient", + "romanization": "umgebend", + "example_sentence_native": "Die umgebende Landschaft ist wunderschön.", + "example_sentence_english": "The surrounding landscape is beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12692 + }, + { + "word": "Umstieg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transfer;change (e.g.;trains)", + "romanization": "Umstieg", + "example_sentence_native": "Am Hauptbahnhof haben wir einen kurzen Umstieg.", + "example_sentence_english": "We have a short transfer at the main station.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12693 + }, + { + "word": "ungeklärt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unresolved;unexplained", + "romanization": "ungeklärt", + "example_sentence_native": "Die Ursache des Unfalls ist noch ungeklärt.", + "example_sentence_english": "The cause of the accident is still unresolved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12694 + }, + { + "word": "Unternehmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undertaking;enterprise", + "romanization": "Unternehmung", + "example_sentence_native": "Das war eine riskante Unternehmung.", + "example_sentence_english": "That was a risky undertaking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12695 + }, + { + "word": "vermessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to measure;to survey", + "romanization": "vermessen", + "example_sentence_native": "Der Ingenieur muss das Grundstück vermessen.", + "example_sentence_english": "The engineer must measure the property.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12697 + }, + { + "word": "verschlossen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locked;reserved", + "romanization": "verschlossen", + "example_sentence_native": "Die Tür war verschlossen. Er ist ein sehr verschlossener Mensch.", + "example_sentence_english": "The door was locked. He is a very reserved person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12698 + }, + { + "word": "Versetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer;promotion", + "romanization": "Versetzung", + "example_sentence_native": "Seine Versetzung in eine andere Abteilung war unerwartet.", + "example_sentence_english": "His transfer to another department was unexpected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12699 + }, + { + "word": "Verwandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformation", + "romanization": "Verwandlung", + "example_sentence_native": "Die Verwandlung des Schmetterlings ist faszinierend.", + "example_sentence_english": "The transformation of the butterfly is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12700 + }, + { + "word": "Veteran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veteran", + "romanization": "Veteran", + "example_sentence_native": "Der alte Veteran erzählte Geschichten aus dem Krieg.", + "example_sentence_english": "The old veteran told stories from the war.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12701 + }, + { + "word": "vielversprechend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promising", + "romanization": "vielversprechend", + "example_sentence_native": "Das ist ein vielversprechender Ansatz.", + "example_sentence_english": "That is a promising approach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12702 + }, + { + "word": "Volkshochschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adult education center", + "romanization": "Volkshochschule", + "example_sentence_native": "Ich besuche einen Sprachkurs an der Volkshochschule.", + "example_sentence_english": "I am attending a language course at the adult education center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12703 + }, + { + "word": "Weltwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world economy", + "romanization": "Weltwirtschaft", + "example_sentence_native": "Die Weltwirtschaft steht vor großen Herausforderungen.", + "example_sentence_english": "The world economy faces great challenges.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12707 + }, + { + "word": "Zeitreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "time travel", + "romanization": "Zeitreise", + "example_sentence_native": "Eine Zeitreise in die Vergangenheit wäre spannend.", + "example_sentence_english": "Time travel to the past would be exciting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12710 + }, + { + "word": "zuschneiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut to size;to tailor", + "romanization": "zuschneiden", + "example_sentence_native": "Sie muss den Stoff noch zuschneiden.", + "example_sentence_english": "She still has to cut the fabric to size.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "schneiden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12711 + }, + { + "word": "Zuwendung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attention;affection;grant", + "romanization": "Zuwendung", + "example_sentence_native": "Kinder brauchen viel Zuwendung.", + "example_sentence_english": "Children need a lot of attention.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12713 + }, + { + "word": "Zwangsarbeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forced labor", + "romanization": "Zwangsarbeit", + "example_sentence_native": "Zwangsarbeit ist ein Verbrechen gegen die Menschlichkeit.", + "example_sentence_english": "Forced labor is a crime against humanity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12714 + }, + { + "word": "übereinstimmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to agree;to correspond", + "romanization": "übereinstimmen", + "example_sentence_native": "Ihre Aussagen stimmen nicht überein.", + "example_sentence_english": "Their statements do not agree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12715 + }, + { + "word": "überfüllt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overcrowded;packed", + "romanization": "überfüllt", + "example_sentence_native": "Der Zug war überfüllt.", + "example_sentence_english": "The train was overcrowded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12716 + }, + { + "word": "Übernachtung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "overnight stay", + "romanization": "Übernachtung", + "example_sentence_native": "Wir brauchen eine Übernachtung in einem Hotel.", + "example_sentence_english": "We need an overnight stay in a hotel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12717 + }, + { + "word": "abtrennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to separate;to detach", + "romanization": "abtrennen", + "example_sentence_native": "Man muss den alten Teil abtrennen.", + "example_sentence_english": "One must separate the old part.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "trennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12718 + }, + { + "word": "absteigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to descend;to dismount", + "romanization": "absteigen", + "example_sentence_native": "Er musste vom Fahrrad absteigen.", + "example_sentence_english": "He had to dismount from the bicycle.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "steigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12719 + }, + { + "word": "Administrator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "administrator", + "romanization": "Administrator", + "example_sentence_native": "Der Administrator hat das System neu gestartet.", + "example_sentence_english": "The administrator restarted the system.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12720 + }, + { + "word": "Alu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aluminum (aluminium)", + "romanization": "Alu", + "example_sentence_native": "Das Fenster ist aus Alu.", + "example_sentence_english": "The window is made of aluminum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12724 + }, + { + "word": "anbelangen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to concern;to relate to", + "romanization": "anbelangen", + "example_sentence_native": "Was das Wetter anbelangt, so bleibt es unbeständig.", + "example_sentence_english": "As far as the weather is concerned, it remains unstable.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "belangen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12725 + }, + { + "word": "Anspannung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tension;strain", + "romanization": "Anspannung", + "example_sentence_native": "Die Anspannung vor der Prüfung war groß.", + "example_sentence_english": "The tension before the exam was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12727 + }, + { + "word": "Anteilnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sympathy;compassion;participation", + "romanization": "Anteilnahme", + "example_sentence_native": "Wir sprechen der Familie unsere aufrichtige Anteilnahme aus.", + "example_sentence_english": "We express our sincere sympathy to the family.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12729 + }, + { + "word": "Arbeiterklasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working class", + "romanization": "Arbeiterklasse", + "example_sentence_native": "Die Arbeiterklasse spielte eine wichtige Rolle in der Geschichte.", + "example_sentence_english": "The working class played an important role in history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12731 + }, + { + "word": "Attraktion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attraction", + "romanization": "Attraktion", + "example_sentence_native": "Der Eiffelturm ist eine große Touristenattraktion.", + "example_sentence_english": "The Eiffel Tower is a major tourist attraction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12732 + }, + { + "word": "ausweiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expand;to extend;to broaden", + "romanization": "ausweiten", + "example_sentence_native": "Das Unternehmen plant, seine Aktivitäten auszuweiten.", + "example_sentence_english": "The company plans to expand its activities.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "weiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12733 + }, + { + "word": "Baustein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building block;module;component", + "romanization": "Baustein", + "example_sentence_native": "Jeder Baustein ist wichtig für das Gesamtprojekt.", + "example_sentence_english": "Every building block is important for the overall project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12735 + }, + { + "word": "bedauerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regrettable;unfortunate", + "romanization": "bedauerlich", + "example_sentence_native": "Es ist bedauerlich, dass wir das Treffen absagen mussten.", + "example_sentence_english": "It is regrettable that we had to cancel the meeting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12737 + }, + { + "word": "Beifahrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger (in a car;front seat)", + "romanization": "Beifahrer", + "example_sentence_native": "Der Beifahrer gab dem Fahrer Anweisungen.", + "example_sentence_english": "The passenger gave instructions to the driver.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12738 + }, + { + "word": "Bekanntmachung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announcement;publication;notice", + "romanization": "Bekanntmachung", + "example_sentence_native": "Die Bekanntmachung wurde an der Pinnwand ausgehängt.", + "example_sentence_english": "The announcement was posted on the bulletin board.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12739 + }, + { + "word": "belehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instruct;to teach", + "romanization": "belehren", + "example_sentence_native": "Er wollte mich über die Gefahren belehren.", + "example_sentence_english": "He wanted to instruct me about the dangers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12740 + }, + { + "word": "betätigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to operate;to activate", + "romanization": "betätigen", + "example_sentence_native": "Bitte betätigen Sie den Schalter.", + "example_sentence_english": "Please operate the switch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12741 + }, + { + "word": "bewachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guard;to watch over", + "romanization": "bewachen", + "example_sentence_native": "Der Hund bewacht das Haus.", + "example_sentence_english": "The dog guards the house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12742 + }, + { + "word": "beängstigend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frightening;alarming", + "romanization": "beängstigend", + "example_sentence_native": "Das war eine beängstigende Erfahrung.", + "example_sentence_english": "That was a frightening experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12743 + }, + { + "word": "Bildergalerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "picture gallery", + "romanization": "Bildergalerie", + "example_sentence_native": "Wir besuchten die Bildergalerie im Museum.", + "example_sentence_english": "We visited the picture gallery in the museum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12744 + }, + { + "word": "Binde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandage;sanitary pad", + "romanization": "Binde", + "example_sentence_native": "Sie legte eine Binde um die Wunde.", + "example_sentence_english": "She put a bandage around the wound.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12745 + }, + { + "word": "Binder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tie;binder", + "romanization": "Binder", + "example_sentence_native": "Er trug einen eleganten Binder.", + "example_sentence_english": "He wore an elegant tie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12746 + }, + { + "word": "bombardieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bombard", + "romanization": "bombardieren", + "example_sentence_native": "Die Stadt wurde bombardiert.", + "example_sentence_english": "The city was bombarded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12748 + }, + { + "word": "brüsten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to boast;to brag", + "romanization": "brüsten", + "example_sentence_native": "Er brüstet sich gerne mit seinen Erfolgen.", + "example_sentence_english": "He likes to boast about his successes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12753 + }, + { + "word": "Bundesanstalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federal agency;federal institute", + "romanization": "Bundesanstalt", + "example_sentence_native": "Die Bundesanstalt für Arbeit ist zuständig für Arbeitsvermittlung.", + "example_sentence_english": "The Federal Employment Agency is responsible for job placement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12755 + }, + { + "word": "Corona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Corona;coronavirus", + "romanization": "Corona", + "example_sentence_native": "Die Corona-Pandemie hatte große Auswirkungen.", + "example_sentence_english": "The Corona pandemic had major impacts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12759 + }, + { + "word": "Dachgeschoss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic floor", + "romanization": "Dachgeschoss", + "example_sentence_native": "Wir wohnen im Dachgeschoss.", + "example_sentence_english": "We live on the attic floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12761 + }, + { + "word": "Denkweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mindset", + "romanization": "Denkweise", + "example_sentence_native": "Seine Denkweise ist sehr offen.", + "example_sentence_english": "His mindset is very open.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12762 + }, + { + "word": "Detektiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detective", + "romanization": "Detektiv", + "example_sentence_native": "Der Detektiv löste den Fall schnell.", + "example_sentence_english": "The detective solved the case quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12764 + }, + { + "word": "Direktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "romanization": "Direktion", + "example_sentence_native": "Die Direktion hat eine neue Strategie beschlossen.", + "example_sentence_english": "The management has decided on a new strategy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12765 + }, + { + "word": "einliefern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to admit (to hospital)", + "romanization": "einliefern", + "example_sentence_native": "Sie mussten ihn ins Krankenhaus einliefern.", + "example_sentence_english": "They had to admit him to the hospital.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "liefern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12771 + }, + { + "word": "eingestehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to admit", + "romanization": "eingestehen", + "example_sentence_native": "Er musste seinen Fehler eingestehen.", + "example_sentence_english": "He had to admit his mistake.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "gestehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12772 + }, + { + "word": "Eiszeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ice age", + "romanization": "Eiszeit", + "example_sentence_native": "Die letzte Eiszeit war vor Tausenden von Jahren.", + "example_sentence_english": "The last ice age was thousands of years ago.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12773 + }, + { + "word": "Entschlossenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "determination", + "romanization": "Entschlossenheit", + "example_sentence_native": "Sie zeigte große Entschlossenheit, ihr Ziel zu erreichen.", + "example_sentence_english": "She showed great determination to reach her goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12774 + }, + { + "word": "erringen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to achieve", + "romanization": "erringen", + "example_sentence_native": "Er konnte den Sieg erringen.", + "example_sentence_english": "He was able to achieve victory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12775 + }, + { + "word": "Ersatzteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spare part", + "romanization": "Ersatzteil", + "example_sentence_native": "Wir brauchen ein Ersatzteil für das Auto.", + "example_sentence_english": "We need a spare part for the car.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12776 + }, + { + "word": "Evakuierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evacuation", + "romanization": "Evakuierung", + "example_sentence_native": "Die Evakuierung des Gebäudes verlief reibungslos.", + "example_sentence_english": "The evacuation of the building went smoothly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12778 + }, + { + "word": "feministisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminist", + "romanization": "feministisch", + "example_sentence_native": "Sie hat eine feministische Perspektive auf die Gesellschaft.", + "example_sentence_english": "She has a feminist perspective on society.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12780 + }, + { + "word": "Ferse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heel", + "romanization": "Ferse", + "example_sentence_native": "Er spürte Schmerzen in seiner Ferse.", + "example_sentence_english": "He felt pain in his heel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12781 + }, + { + "word": "Feuerwehrmann", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "firefighter", + "romanization": "Feuerwehrmann", + "example_sentence_native": "Der Feuerwehrmann rettete die Katze vom Baum.", + "example_sentence_english": "The firefighter rescued the cat from the tree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12782 + }, + { + "word": "Fingerabdruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fingerprint", + "romanization": "Fingerabdruck", + "example_sentence_native": "Die Polizei fand einen Fingerabdruck am Tatort.", + "example_sentence_english": "The police found a fingerprint at the crime scene.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12783 + }, + { + "word": "Fischerei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishery", + "romanization": "Fischerei", + "example_sentence_native": "Die Fischerei ist ein wichtiger Wirtschaftszweig in dieser Region.", + "example_sentence_english": "Fishing is an important industry in this region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12784 + }, + { + "word": "Follower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "follower", + "romanization": "Follower", + "example_sentence_native": "Sie hat viele Follower auf Instagram.", + "example_sentence_english": "She has many followers on Instagram.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12786 + }, + { + "word": "Franchise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "franchise", + "romanization": "Franchise", + "example_sentence_native": "Er eröffnete ein neues Franchise-Geschäft.", + "example_sentence_english": "He opened a new franchise business.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12787 + }, + { + "word": "freischalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unlock;to activate", + "romanization": "freischalten", + "example_sentence_native": "Sie müssen das Konto freischalten, um es nutzen zu können.", + "example_sentence_english": "You need to activate the account to be able to use it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "frei", + "base_verb": "schalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12788 + }, + { + "word": "Freispruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquittal", + "romanization": "Freispruch", + "example_sentence_native": "Der Angeklagte erhielt einen Freispruch.", + "example_sentence_english": "The defendant received an acquittal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12789 + }, + { + "word": "Freistil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freestyle", + "romanization": "Freistil", + "example_sentence_native": "Sie gewann die Goldmedaille im Freistil-Schwimmen.", + "example_sentence_english": "She won the gold medal in freestyle swimming.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12790 + }, + { + "word": "Function", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "function", + "romanization": "Function", + "example_sentence_native": "Diese Function ist in der Software nicht verfügbar.", + "example_sentence_english": "This function is not available in the software.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12791 + }, + { + "word": "ahnden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to punish;to penalize", + "romanization": "ahnden", + "example_sentence_native": "Solche Verbrechen müssen geahndet werden.", + "example_sentence_english": "Such crimes must be punished.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12792 + }, + { + "word": "Gefälle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slope;gradient", + "romanization": "Gefälle", + "example_sentence_native": "Das Gefälle der Straße war sehr steil.", + "example_sentence_english": "The slope of the road was very steep.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12793 + }, + { + "word": "Gegenwind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headwind;opposition", + "romanization": "Gegenwind", + "example_sentence_native": "Der Radfahrer kämpfte gegen den starken Gegenwind.", + "example_sentence_english": "The cyclist struggled against the strong headwind.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12794 + }, + { + "word": "geistern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to haunt;to float around", + "romanization": "geistern", + "example_sentence_native": "Es heißt, dass in diesem alten Haus Geister geistern.", + "example_sentence_english": "It is said that ghosts haunt this old house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12795 + }, + { + "word": "Geistlicher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clergyman;cleric", + "romanization": "Geistlicher", + "example_sentence_native": "Der Geistliche hielt eine bewegende Predigt.", + "example_sentence_english": "The clergyman delivered a moving sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12796 + }, + { + "word": "Geldbörse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet;purse", + "romanization": "Geldbörse", + "example_sentence_native": "Ich habe meine Geldbörse verloren.", + "example_sentence_english": "I lost my wallet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12797 + }, + { + "word": "gemässigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderate;temperate", + "romanization": "gemässigt", + "example_sentence_native": "Er vertritt gemässigte Ansichten.", + "example_sentence_english": "He holds moderate views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12798 + }, + { + "word": "Gerichtsverfahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court proceedings;legal proceedings", + "romanization": "Gerichtsverfahren", + "example_sentence_native": "Das Gerichtsverfahren dauerte mehrere Wochen.", + "example_sentence_english": "The court proceedings lasted several weeks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12799 + }, + { + "word": "Geschäftsführerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managing director (female)", + "romanization": "Geschäftsführerin", + "example_sentence_native": "Die Geschäftsführerin hat die neue Strategie vorgestellt.", + "example_sentence_english": "The managing director presented the new strategy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12800 + }, + { + "word": "stiften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to donate;to found;to cause", + "romanization": "stiften", + "example_sentence_native": "Er möchte Geld für wohltätige Zwecke stiften.", + "example_sentence_english": "He wants to donate money for charitable causes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12801 + }, + { + "word": "Gewährleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warranty;guarantee", + "romanization": "Gewährleistung", + "example_sentence_native": "Das Produkt kommt mit einer zweijährigen Gewährleistung.", + "example_sentence_english": "The product comes with a two-year warranty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12802 + }, + { + "word": "Handschelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handcuff", + "romanization": "Handschelle", + "example_sentence_native": "Die Polizei legte ihm Handschellen an.", + "example_sentence_english": "The police put handcuffs on him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12804 + }, + { + "word": "Hefe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yeast", + "romanization": "Hefe", + "example_sentence_native": "Für das Brot braucht man Hefe.", + "example_sentence_english": "You need yeast for the bread.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12805 + }, + { + "word": "Heuchelei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypocrisy", + "romanization": "Heuchelei", + "example_sentence_native": "Seine Worte waren voller Heuchelei.", + "example_sentence_english": "His words were full of hypocrisy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12808 + }, + { + "word": "Hintertür", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back door", + "romanization": "Hintertür", + "example_sentence_native": "Sie schlichen sich durch die Hintertür hinaus.", + "example_sentence_english": "They sneaked out through the back door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12809 + }, + { + "word": "Humanismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanism", + "romanization": "Humanismus", + "example_sentence_native": "Der Humanismus betont die Würde des Menschen.", + "example_sentence_english": "Humanism emphasizes human dignity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12811 + }, + { + "word": "hörbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audible", + "romanization": "hörbar", + "example_sentence_native": "Das Geräusch war kaum hörbar.", + "example_sentence_english": "The sound was barely audible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12812 + }, + { + "word": "informativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informative", + "romanization": "informativ", + "example_sentence_native": "Die Präsentation war sehr informativ.", + "example_sentence_english": "The presentation was very informative.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12815 + }, + { + "word": "Inspektor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspector", + "romanization": "Inspektor", + "example_sentence_native": "Der Inspektor untersuchte den Tatort.", + "example_sentence_english": "The inspector examined the crime scene.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12816 + }, + { + "word": "journalistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journalistic", + "romanization": "journalistisch", + "example_sentence_native": "Sie hat einen journalistischen Hintergrund.", + "example_sentence_english": "She has a journalistic background.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12820 + }, + { + "word": "Kaffeemaschine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coffee machine", + "romanization": "Kaffeemaschine", + "example_sentence_native": "Die Kaffeemaschine ist kaputt.", + "example_sentence_english": "The coffee machine is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12821 + }, + { + "word": "kahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bald;bare", + "romanization": "kahl", + "example_sentence_native": "Der Baum ist im Winter kahl.", + "example_sentence_english": "The tree is bare in winter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12822 + }, + { + "word": "Knöchel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ankle;knuckle", + "romanization": "Knöchel", + "example_sentence_native": "Er hat sich den Knöchel verstaucht.", + "example_sentence_english": "He sprained his ankle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12826 + }, + { + "word": "Kohlenhydrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbohydrate", + "romanization": "Kohlenhydrat", + "example_sentence_native": "Kohlenhydrate sind eine wichtige Energiequelle.", + "example_sentence_english": "Carbohydrates are an important energy source.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12827 + }, + { + "word": "Korrelation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correlation", + "romanization": "Korrelation", + "example_sentence_native": "Es gibt eine starke Korrelation zwischen den beiden Variablen.", + "example_sentence_english": "There is a strong correlation between the two variables.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12828 + }, + { + "word": "Kralle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claw;talon", + "romanization": "Kralle", + "example_sentence_native": "Die Katze hat scharfe Krallen.", + "example_sentence_english": "The cat has sharp claws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12829 + }, + { + "word": "Landeshauptmann", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state governor (male)", + "romanization": "Landeshauptmann", + "example_sentence_native": "Der Landeshauptmann hielt eine Rede.", + "example_sentence_english": "The state governor gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12832 + }, + { + "word": "Machthaber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruler", + "romanization": "Machthaber", + "example_sentence_native": "Der Machthaber erließ ein neues Gesetz.", + "example_sentence_english": "The ruler issued a new law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12840 + }, + { + "word": "Mahnmal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial", + "romanization": "Mahnmal", + "example_sentence_native": "Das Mahnmal erinnert an die Opfer des Krieges.", + "example_sentence_english": "The memorial commemorates the victims of the war.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12842 + }, + { + "word": "Mall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mall", + "romanization": "Mall", + "example_sentence_native": "Wir gehen am Wochenende in die Mall.", + "example_sentence_english": "We are going to the mall on the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12843 + }, + { + "word": "Marquis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marquis", + "romanization": "Marquis", + "example_sentence_native": "Der Marquis lebte in einem großen Schloss.", + "example_sentence_english": "The marquis lived in a large castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12844 + }, + { + "word": "Maser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grain (of wood)", + "romanization": "Maser", + "example_sentence_native": "Die Maser des Holzes war wunderschön.", + "example_sentence_english": "The grain of the wood was beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12845 + }, + { + "word": "Mean", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mean (average)", + "romanization": "Mean", + "example_sentence_native": "Das Mean der Messwerte wurde berechnet.", + "example_sentence_english": "The mean of the measured values was calculated.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12846 + }, + { + "word": "Menschenverstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "common sense", + "romanization": "Menschenverstand", + "example_sentence_native": "Benutze deinen Menschenverstand!", + "example_sentence_english": "Use your common sense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12849 + }, + { + "word": "mittig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "central", + "romanization": "mittig", + "example_sentence_native": "Platziere das Bild mittig an der Wand.", + "example_sentence_english": "Place the picture centrally on the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12850 + }, + { + "word": "Muse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muse", + "romanization": "Muse", + "example_sentence_native": "Die Künstlerin fand ihre Muse in der Natur.", + "example_sentence_english": "The artist found her muse in nature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12852 + }, + { + "word": "Mücke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mosquito", + "romanization": "Mücke", + "example_sentence_native": "Eine Mücke hat mich gestochen.", + "example_sentence_english": "A mosquito bit me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12853 + }, + { + "word": "Navigation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navigation", + "romanization": "Navigation", + "example_sentence_native": "Die Navigation im Auto ist sehr nützlich.", + "example_sentence_english": "The navigation in the car is very useful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12856 + }, + { + "word": "Neuheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novelty", + "romanization": "Neuheit", + "example_sentence_native": "Die neue Technologie ist eine echte Neuheit.", + "example_sentence_english": "The new technology is a real novelty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12857 + }, + { + "word": "Nexus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nexus", + "romanization": "Nexus", + "example_sentence_native": "Es gibt einen klaren Nexus zwischen Ursache und Wirkung.", + "example_sentence_english": "There is a clear nexus between cause and effect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12858 + }, + { + "word": "Oase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oasis", + "romanization": "Oase", + "example_sentence_native": "Die Oase war ein willkommener Anblick in der Wüste.", + "example_sentence_english": "The oasis was a welcome sight in the desert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12860 + }, + { + "word": "Oberhaupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head (of state;family);chief", + "romanization": "Oberhaupt", + "example_sentence_native": "Das Oberhaupt des Stammes traf eine wichtige Entscheidung.", + "example_sentence_english": "The head of the tribe made an important decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12861 + }, + { + "word": "Origin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "origin", + "romanization": "Origin", + "example_sentence_native": "Die Origin des Problems ist unklar.", + "example_sentence_english": "The origin of the problem is unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12863 + }, + { + "word": "oval", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oval", + "romanization": "oval", + "example_sentence_native": "Der Tisch hat eine ovale Form.", + "example_sentence_english": "The table has an oval shape.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12864 + }, + { + "word": "Pascha", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pasha", + "romanization": "Pascha", + "example_sentence_native": "Der Pascha regierte mit eiserner Hand.", + "example_sentence_english": "The pasha ruled with an iron hand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12865 + }, + { + "word": "Pate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godfather;sponsor", + "romanization": "Pate", + "example_sentence_native": "Mein Pate hat mir viel über das Leben beigebracht.", + "example_sentence_english": "My godfather taught me a lot about life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12866 + }, + { + "word": "Patriotismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotism", + "romanization": "Patriotismus", + "example_sentence_native": "Patriotismus kann eine starke Kraft sein.", + "example_sentence_english": "Patriotism can be a strong force.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12867 + }, + { + "word": "Plasma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plasma", + "romanization": "Plasma", + "example_sentence_native": "Blutplasma ist ein wichtiger Bestandteil des Blutes.", + "example_sentence_english": "Blood plasma is an important component of blood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12869 + }, + { + "word": "Plot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot (story)", + "romanization": "Plot", + "example_sentence_native": "Der Plot des Films war sehr spannend.", + "example_sentence_english": "The plot of the movie was very exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12870 + }, + { + "word": "plädieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to plead;to advocate", + "romanization": "plädieren", + "example_sentence_native": "Er plädiert für eine friedliche Lösung.", + "example_sentence_english": "He pleads for a peaceful solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12871 + }, + { + "word": "portugiesisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Portuguese", + "romanization": "portugiesisch", + "example_sentence_native": "Sie spricht fließend Portugiesisch.", + "example_sentence_english": "She speaks fluent Portuguese.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adj", + "word_frequency": 12872 + }, + { + "word": "Portugiesisch", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Portuguese (language)", + "romanization": "Portugiesisch", + "example_sentence_native": "Ich lerne Portugiesisch.", + "example_sentence_english": "I am learning Portuguese.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 12872 + }, + { + "word": "Privatbesitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private property", + "romanization": "Privatbesitz", + "example_sentence_native": "Das Land ist in Privatbesitz.", + "example_sentence_english": "The land is private property.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12874 + }, + { + "word": "Professorin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female professor", + "romanization": "Professorin", + "example_sentence_native": "Die Professorin hielt eine interessante Vorlesung.", + "example_sentence_english": "The female professor gave an interesting lecture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12875 + }, + { + "word": "Projektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projection", + "romanization": "Projektion", + "example_sentence_native": "Die Projektion zeigte klare Bilder.", + "example_sentence_english": "The projection showed clear images.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12876 + }, + { + "word": "Psalm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psalm", + "romanization": "Psalm", + "example_sentence_native": "Sie las einen Psalm aus der Bibel vor.", + "example_sentence_english": "She read a psalm from the Bible.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12877 + }, + { + "word": "Radsport", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycling;cycle sport", + "romanization": "Radsport", + "example_sentence_native": "Radsport ist ein beliebter Sport in Deutschland.", + "example_sentence_english": "Cycling is a popular sport in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12880 + }, + { + "word": "reservieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reserve", + "romanization": "reservieren", + "example_sentence_native": "Ich möchte einen Tisch für zwei Personen reservieren.", + "example_sentence_english": "I would like to reserve a table for two people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12882 + }, + { + "word": "restaurieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restore", + "romanization": "restaurieren", + "example_sentence_native": "Das alte Gemälde muss restauriert werden.", + "example_sentence_english": "The old painting needs to be restored.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12883 + }, + { + "word": "Restaurierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restoration", + "romanization": "Restaurierung", + "example_sentence_native": "Die Restaurierung des Gebäudes dauerte zwei Jahre.", + "example_sentence_english": "The restoration of the building took two years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12884 + }, + { + "word": "Rudel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pack (of animals);herd", + "romanization": "Rudel", + "example_sentence_native": "Ein Rudel Wölfe jagte im Wald.", + "example_sentence_english": "A pack of wolves hunted in the forest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12886 + }, + { + "word": "rückwirkend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retroactive;retrospectively", + "romanization": "rückwirkend", + "example_sentence_native": "Die Regelung gilt rückwirkend ab dem ersten Januar.", + "example_sentence_english": "The regulation applies retroactively from January first.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12887 + }, + { + "word": "Saite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "string (of an instrument)", + "romanization": "Saite", + "example_sentence_native": "Eine Saite meiner Gitarre ist gerissen.", + "example_sentence_english": "A string on my guitar broke.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12888 + }, + { + "word": "Schaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circuit;gear (in a vehicle);switching", + "romanization": "Schaltung", + "example_sentence_native": "Die elektrische Schaltung ist defekt.", + "example_sentence_english": "The electrical circuit is defective.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12891 + }, + { + "word": "Schmerzmittel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painkiller;analgesic", + "romanization": "Schmerzmittel", + "example_sentence_native": "Ich brauche ein Schmerzmittel gegen die Kopfschmerzen.", + "example_sentence_english": "I need a painkiller for the headache.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12892 + }, + { + "word": "Schnur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cord;string;line", + "romanization": "Schnur", + "example_sentence_native": "Die Schnur ist zu kurz.", + "example_sentence_english": "The cord is too short.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12893 + }, + { + "word": "Schoko", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chocolate (informal)", + "romanization": "Schoko", + "example_sentence_native": "Möchtest du ein Stück Schoko?", + "example_sentence_english": "Do you want a piece of chocolate?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12894 + }, + { + "word": "schreiten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stride;to step (formally)", + "romanization": "schreiten", + "example_sentence_native": "Er schritt langsam durch den Korridor.", + "example_sentence_english": "He strode slowly through the corridor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12896 + }, + { + "word": "Schwabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Swabian (person from Swabia)", + "romanization": "Schwabe", + "example_sentence_native": "Er ist ein gebürtiger Schwabe.", + "example_sentence_english": "He is a native Swabian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12897 + }, + { + "word": "Seemann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailor;seaman", + "romanization": "Seemann", + "example_sentence_native": "Der alte Seemann erzählte Geschichten vom Meer.", + "example_sentence_english": "The old sailor told stories of the sea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12898 + }, + { + "word": "Selbstverwaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-government;self-administration", + "romanization": "Selbstverwaltung", + "example_sentence_native": "Die Gemeinde strebt mehr Selbstverwaltung an.", + "example_sentence_english": "The municipality strives for more self-government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12899 + }, + { + "word": "Selfie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selfie", + "romanization": "Selfie", + "example_sentence_native": "Sie machte ein Selfie mit ihren Freunden.", + "example_sentence_english": "She took a selfie with her friends.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12900 + }, + { + "word": "Skifahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ski", + "romanization": "Skifahren", + "example_sentence_native": "Wir lieben es, im Winter Ski zu fahren.", + "example_sentence_english": "We love to ski in winter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12901 + }, + { + "word": "Snack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack", + "romanization": "Snack", + "example_sentence_native": "Ich brauche einen kleinen Snack.", + "example_sentence_english": "I need a small snack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12902 + }, + { + "word": "Spezialisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialization", + "romanization": "Spezialisierung", + "example_sentence_native": "Seine Spezialisierung ist die Quantenphysik.", + "example_sentence_english": "His specialization is quantum physics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12904 + }, + { + "word": "spinnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spin;to be crazy (colloquial)", + "romanization": "spinnen", + "example_sentence_native": "Die Katze spielt mit der spinnenden Schnur.", + "example_sentence_english": "The cat is playing with the spinning string.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12905 + }, + { + "word": "spirituell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritual", + "romanization": "spirituell", + "example_sentence_native": "Sie hat eine sehr spirituelle Einstellung zum Leben.", + "example_sentence_english": "She has a very spiritual attitude towards life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12906 + }, + { + "word": "Stadtbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cityscape", + "romanization": "Stadtbild", + "example_sentence_native": "Das historische Stadtbild ist gut erhalten.", + "example_sentence_english": "The historic cityscape is well preserved.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12908 + }, + { + "word": "Stadtpark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city park", + "romanization": "Stadtpark", + "example_sentence_native": "Wir gehen oft im Stadtpark spazieren.", + "example_sentence_english": "We often go for a walk in the city park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12909 + }, + { + "word": "Stimmzettel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballot paper", + "romanization": "Stimmzettel", + "example_sentence_native": "Der Wähler füllte den Stimmzettel aus.", + "example_sentence_english": "The voter filled out the ballot paper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12910 + }, + { + "word": "strafrechtlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal (legal)", + "romanization": "strafrechtlich", + "example_sentence_native": "Das ist eine strafrechtliche Angelegenheit.", + "example_sentence_english": "This is a criminal matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12911 + }, + { + "word": "Strassenrand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roadside", + "romanization": "Strassenrand", + "example_sentence_native": "Das Auto stand am Strassenrand.", + "example_sentence_english": "The car was standing at the roadside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12913 + }, + { + "word": "stur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stubborn", + "romanization": "stur", + "example_sentence_native": "Er ist sehr stur und ändert seine Meinung selten.", + "example_sentence_english": "He is very stubborn and rarely changes his mind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12914 + }, + { + "word": "Stätte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "site;place", + "romanization": "Stätte", + "example_sentence_native": "Dies ist eine historische Stätte.", + "example_sentence_english": "This is a historical site.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12915 + }, + { + "word": "Synode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synod", + "romanization": "Synode", + "example_sentence_native": "Die Synode traf sich, um wichtige Entscheidungen zu treffen.", + "example_sentence_english": "The synod met to make important decisions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12916 + }, + { + "word": "Taschenlampe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flashlight;torch", + "romanization": "Taschenlampe", + "example_sentence_native": "Ich brauche eine Taschenlampe, es ist dunkel.", + "example_sentence_english": "I need a flashlight, it's dark.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12918 + }, + { + "word": "Terroranschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrorist attack", + "romanization": "Terroranschlag", + "example_sentence_native": "Der Terroranschlag erschütterte die ganze Stadt.", + "example_sentence_english": "The terrorist attack shook the entire city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12920 + }, + { + "word": "Tracking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracking", + "romanization": "Tracking", + "example_sentence_native": "Das Tracking des Pakets ist online verfügbar.", + "example_sentence_english": "The tracking of the package is available online.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12922 + }, + { + "word": "Ukrainer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Ukrainian (male person)", + "romanization": "Ukrainer", + "example_sentence_native": "Ein Ukrainer hat uns geholfen.", + "example_sentence_english": "A Ukrainian helped us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12925 + }, + { + "word": "Umleitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detour;diversion", + "romanization": "Umleitung", + "example_sentence_native": "Wegen Bauarbeiten gibt es eine Umleitung.", + "example_sentence_english": "There is a detour due to construction work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12926 + }, + { + "word": "unbeschadet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unharmed;without prejudice", + "romanization": "unbeschadet", + "example_sentence_native": "Er kam unbeschadet aus dem Unfall hervor.", + "example_sentence_english": "He emerged unharmed from the accident.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12927 + }, + { + "word": "ungesund", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unhealthy", + "romanization": "ungesund", + "example_sentence_native": "Fast Food ist oft ungesund.", + "example_sentence_english": "Fast food is often unhealthy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12928 + }, + { + "word": "unrealistisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unrealistic", + "romanization": "unrealistisch", + "example_sentence_native": "Deine Erwartungen sind unrealistisch.", + "example_sentence_english": "Your expectations are unrealistic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12929 + }, + { + "word": "untergeordnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subordinate;secondary", + "romanization": "untergeordnet", + "example_sentence_native": "Diese Aufgabe ist von untergeordneter Bedeutung.", + "example_sentence_english": "This task is of secondary importance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12930 + }, + { + "word": "unterst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lowest;bottommost", + "romanization": "unterst", + "example_sentence_native": "Die unterste Schublade ist leer.", + "example_sentence_english": "The bottommost drawer is empty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12931 + }, + { + "word": "vegetarisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetarian", + "romanization": "vegetarisch", + "example_sentence_native": "Ich esse gerne vegetarisch.", + "example_sentence_english": "I like to eat vegetarian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12932 + }, + { + "word": "verachten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despise;to scorn", + "romanization": "verachten", + "example_sentence_native": "Man sollte niemanden verachten.", + "example_sentence_english": "One should despise no one.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12933 + }, + { + "word": "verfluchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to curse;to damn", + "romanization": "verfluchen", + "example_sentence_native": "Er verfluchte den Tag, an dem er geboren wurde.", + "example_sentence_english": "He cursed the day he was born.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12934 + }, + { + "word": "versteigern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to auction off", + "romanization": "versteigern", + "example_sentence_native": "Das alte Gemälde soll versteigert werden.", + "example_sentence_english": "The old painting is to be auctioned off.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12935 + }, + { + "word": "Vorfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "right of way", + "romanization": "Vorfahrt", + "example_sentence_native": "Sie müssen die Vorfahrt beachten.", + "example_sentence_english": "You must observe the right of way.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12938 + }, + { + "word": "Vorstadt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suburb", + "romanization": "Vorstadt", + "example_sentence_native": "Sie wohnen in der Vorstadt.", + "example_sentence_english": "They live in the suburb.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12939 + }, + { + "word": "Waffel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waffle", + "romanization": "Waffel", + "example_sentence_native": "Ich möchte eine Waffel mit Sahne.", + "example_sentence_english": "I would like a waffle with cream.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12940 + }, + { + "word": "Weihnachtsbaum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas tree", + "romanization": "Weihnachtsbaum", + "example_sentence_native": "Wir schmücken den Weihnachtsbaum jedes Jahr.", + "example_sentence_english": "We decorate the Christmas tree every year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12941 + }, + { + "word": "weltlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worldly;secular", + "romanization": "weltlich", + "example_sentence_native": "Er hat eine sehr weltliche Einstellung zum Leben.", + "example_sentence_english": "He has a very worldly attitude towards life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12942 + }, + { + "word": "Whiskey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whiskey", + "romanization": "Whiskey", + "example_sentence_native": "Er trinkt gerne einen guten Whiskey am Abend.", + "example_sentence_english": "He likes to drink a good whiskey in the evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12943 + }, + { + "word": "Wikinger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Viking", + "romanization": "Wikinger", + "example_sentence_native": "Die Wikinger waren berühmte Seefahrer.", + "example_sentence_english": "The Vikings were famous seafarers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12944 + }, + { + "word": "Wirtshaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inn;tavern", + "romanization": "Wirtshaus", + "example_sentence_native": "Wir trafen uns in einem gemütlichen Wirtshaus.", + "example_sentence_english": "We met in a cozy inn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12945 + }, + { + "word": "Zeitdruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "time pressure", + "romanization": "Zeitdruck", + "example_sentence_native": "Wir arbeiten unter großem Zeitdruck.", + "example_sentence_english": "We are working under great time pressure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12949 + }, + { + "word": "Zeitspanne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period of time;time span", + "romanization": "Zeitspanne", + "example_sentence_native": "Die Zeitspanne für das Projekt ist sehr kurz.", + "example_sentence_english": "The time span for the project is very short.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12950 + }, + { + "word": "zerreissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tear up;to rip apart", + "romanization": "zerreissen", + "example_sentence_native": "Er wollte den Brief zerreissen.", + "example_sentence_english": "He wanted to tear up the letter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12951 + }, + { + "word": "zurücklassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leave behind", + "romanization": "zurücklassen", + "example_sentence_native": "Sie musste ihre Familie zurücklassen.", + "example_sentence_english": "She had to leave her family behind.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12952 + }, + { + "word": "zusammentragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collect;to gather", + "romanization": "zusammentragen", + "example_sentence_native": "Wir müssen alle Informationen zusammentragen.", + "example_sentence_english": "We need to collect all the information.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12953 + }, + { + "word": "Zusammentreffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meeting;encounter", + "romanization": "Zusammentreffen", + "example_sentence_native": "Das Zusammentreffen der beiden Gruppen war unerwartet.", + "example_sentence_english": "The meeting of the two groups was unexpected.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12954 + }, + { + "word": "Zuzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influx;immigration", + "romanization": "Zuzug", + "example_sentence_native": "Die Stadt verzeichnet einen starken Zuzug neuer Bewohner.", + "example_sentence_english": "The city is experiencing a strong influx of new residents.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12956 + }, + { + "word": "zynisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cynical", + "romanization": "zynisch", + "example_sentence_native": "Seine zynische Bemerkung überraschte alle.", + "example_sentence_english": "His cynical remark surprised everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12957 + }, + { + "word": "abrechnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to settle accounts;to deduct", + "romanization": "abrechnen", + "example_sentence_native": "Wir müssen die Kosten abrechnen.", + "example_sentence_english": "We need to settle the costs.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "rechnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12958 + }, + { + "word": "abkühlen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cool down", + "romanization": "abkühlen", + "example_sentence_native": "Lass den Kaffee erst abkühlen.", + "example_sentence_english": "Let the coffee cool down first.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "kühlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12959 + }, + { + "word": "Abmessung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dimension", + "romanization": "Abmessung", + "example_sentence_native": "Die Abmessungen des Raumes sind 5x4 Meter.", + "example_sentence_english": "The dimensions of the room are 5x4 meters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12960 + }, + { + "word": "Achterbahn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roller coaster", + "romanization": "Achterbahn", + "example_sentence_native": "Wir sind gestern Achterbahn gefahren.", + "example_sentence_english": "We rode a roller coaster yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12961 + }, + { + "word": "Ader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vein", + "romanization": "Ader", + "example_sentence_native": "Die Krankenschwester suchte nach einer Ader für die Blutabnahme.", + "example_sentence_english": "The nurse looked for a vein for the blood sample.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12962 + }, + { + "word": "Aktualität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "topicality", + "romanization": "Aktualität", + "example_sentence_native": "Die Aktualität der Nachrichten ist sehr wichtig.", + "example_sentence_english": "The topicality of the news is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12965 + }, + { + "word": "Anstrich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coat of paint", + "romanization": "Anstrich", + "example_sentence_native": "Die Wand braucht einen neuen Anstrich.", + "example_sentence_english": "The wall needs a new coat of paint.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12969 + }, + { + "word": "Anthropologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropology", + "romanization": "Anthropologie", + "example_sentence_native": "Sie studiert Anthropologie an der Universität.", + "example_sentence_english": "She studies anthropology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12970 + }, + { + "word": "Arbeiterpartei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workers' party", + "romanization": "Arbeiterpartei", + "example_sentence_native": "Die Arbeiterpartei hat die Wahl gewonnen.", + "example_sentence_english": "The workers' party won the election.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12971 + }, + { + "word": "Archäologe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeologist", + "romanization": "Archäologe", + "example_sentence_native": "Der Archäologe entdeckte alte Ruinen.", + "example_sentence_english": "The archaeologist discovered ancient ruins.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12972 + }, + { + "word": "Ausgangslage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initial situation", + "romanization": "Ausgangslage", + "example_sentence_native": "Die Ausgangslage für die Verhandlungen war schwierig.", + "example_sentence_english": "The initial situation for the negotiations was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12973 + }, + { + "word": "Avantgarde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "avant-garde", + "romanization": "Avantgarde", + "example_sentence_native": "Die Künstlergruppe gehörte zur Avantgarde.", + "example_sentence_english": "The artist group belonged to the avant-garde.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12974 + }, + { + "word": "Beeinflussung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influence", + "romanization": "Beeinflussung", + "example_sentence_native": "Die Beeinflussung der öffentlichen Meinung ist ein wichtiges Thema.", + "example_sentence_english": "The influence on public opinion is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12978 + }, + { + "word": "befristet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporary", + "romanization": "befristet", + "example_sentence_native": "Er hat einen befristeten Arbeitsvertrag.", + "example_sentence_english": "He has a fixed-term employment contract.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 12979 + }, + { + "word": "beheimaten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be home to;to house", + "romanization": "beheimaten", + "example_sentence_native": "Die Insel beheimatet viele seltene Vogelarten.", + "example_sentence_english": "The island is home to many rare bird species.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12980 + }, + { + "word": "Besorgnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concern;worry", + "romanization": "Besorgnis", + "example_sentence_native": "Es gibt große Besorgnis über die Umwelt.", + "example_sentence_english": "There is great concern about the environment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12984 + }, + { + "word": "betiteln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to title;to name", + "romanization": "betiteln", + "example_sentence_native": "Er wollte sein Buch 'Der Wanderer' betiteln.", + "example_sentence_english": "He wanted to title his book 'The Wanderer'.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 12985 + }, + { + "word": "Beweglichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobility;agility", + "romanization": "Beweglichkeit", + "example_sentence_native": "Sport verbessert die Beweglichkeit des Körpers.", + "example_sentence_english": "Sport improves the body's mobility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12986 + }, + { + "word": "Billion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trillion (US);billion (German)", + "romanization": "Billion", + "example_sentence_native": "Die Staatsverschuldung beträgt mehrere Billionen Euro.", + "example_sentence_english": "The national debt amounts to several trillion euros.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12989 + }, + { + "word": "Bohle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plank;beam", + "romanization": "Bohle", + "example_sentence_native": "Sie legten eine dicke Bohle über den Graben.", + "example_sentence_english": "They laid a thick plank over the ditch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12991 + }, + { + "word": "Degen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rapier;sword", + "romanization": "Degen", + "example_sentence_native": "Er focht mit einem scharfen Degen.", + "example_sentence_english": "He fought with a sharp rapier.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 12999 + }, + { + "word": "downloaden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to download", + "romanization": "downloaden", + "example_sentence_native": "Ich muss die Datei noch downloaden.", + "example_sentence_english": "I still need to download the file.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13003 + }, + { + "word": "durchatmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breathe deeply;to take a breather", + "romanization": "durchatmen", + "example_sentence_native": "Nach dem langen Lauf musste er erst einmal durchatmen.", + "example_sentence_english": "After the long run, he first had to take a deep breath.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "atmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13004 + }, + { + "word": "Dünger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fertilizer;manure", + "romanization": "Dünger", + "example_sentence_native": "Der Gärtner streute Dünger auf die Blumenbeete.", + "example_sentence_english": "The gardener spread fertilizer on the flower beds.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13006 + }, + { + "word": "Ebenholz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ebony", + "romanization": "Ebenholz", + "example_sentence_native": "Das Klavier war aus glänzendem Ebenholz gefertigt.", + "example_sentence_english": "The piano was made of shiny ebony.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13007 + }, + { + "word": "einfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drive in;to break in;to harvest", + "romanization": "einfahren", + "example_sentence_native": "Der Zug wird gleich in den Bahnhof einfahren.", + "example_sentence_english": "The train will enter the station shortly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13008 + }, + { + "word": "Eingliederung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integration;incorporation", + "romanization": "Eingliederung", + "example_sentence_native": "Die Eingliederung neuer Mitarbeiter ist ein wichtiger Prozess.", + "example_sentence_english": "The integration of new employees is an important process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13009 + }, + { + "word": "Einmarsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasion;entry (of troops)", + "romanization": "Einmarsch", + "example_sentence_native": "Der Einmarsch der Truppen löste große Besorgnis aus.", + "example_sentence_english": "The invasion of the troops caused great concern.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13010 + }, + { + "word": "einreden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to talk into;to persuade", + "romanization": "einreden", + "example_sentence_native": "Lass dir nichts einreden, du schaffst das!", + "example_sentence_english": "Don't let anyone talk you into anything, you can do it!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "reden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13011 + }, + { + "word": "Elektriker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electrician", + "romanization": "Elektriker", + "example_sentence_native": "Wir brauchen einen Elektriker, um die Lampe zu reparieren.", + "example_sentence_english": "We need an electrician to fix the lamp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13012 + }, + { + "word": "Elfmeterschiessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty shootout", + "romanization": "Elfmeterschiessen", + "example_sentence_native": "Das Spiel endete im Elfmeterschiessen.", + "example_sentence_english": "The game ended in a penalty shootout.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13013 + }, + { + "word": "erachten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to consider;to deem", + "romanization": "erachten", + "example_sentence_native": "Wir erachten diesen Schritt als notwendig.", + "example_sentence_english": "We consider this step necessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13015 + }, + { + "word": "Erteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granting;issuance;bestowal", + "romanization": "Erteilung", + "example_sentence_native": "Die Erteilung der Genehmigung dauerte lange.", + "example_sentence_english": "The granting of the permit took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13016 + }, + { + "word": "Evaluation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluation", + "romanization": "Evaluation", + "example_sentence_native": "Die Evaluation des Projekts ist abgeschlossen.", + "example_sentence_english": "The evaluation of the project is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13017 + }, + { + "word": "Fahrtrichtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "direction of travel", + "romanization": "Fahrtrichtung", + "example_sentence_native": "Bitte beachten Sie die Fahrtrichtung des Verkehrs.", + "example_sentence_english": "Please observe the direction of travel of the traffic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13019 + }, + { + "word": "Fairness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fairness", + "romanization": "Fairness", + "example_sentence_native": "Fairness ist wichtig im Sport.", + "example_sentence_english": "Fairness is important in sports.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13020 + }, + { + "word": "Fleischer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher", + "romanization": "Fleischer", + "example_sentence_native": "Der Fleischer hat frisches Fleisch.", + "example_sentence_english": "The butcher has fresh meat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13022 + }, + { + "word": "Flex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angle grinder", + "romanization": "Flex", + "example_sentence_native": "Er benutzt die Flex, um Metall zu schneiden.", + "example_sentence_english": "He uses the angle grinder to cut metal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13023 + }, + { + "word": "Flirt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flirt", + "romanization": "Flirt", + "example_sentence_native": "Ihr Flirt war offensichtlich.", + "example_sentence_english": "Their flirtation was obvious.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13024 + }, + { + "word": "folgerichtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logical;consistent", + "romanization": "folgerichtig", + "example_sentence_native": "Seine Argumentation war folgerichtig.", + "example_sentence_english": "His argumentation was logical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13025 + }, + { + "word": "Folgezeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsequent period;time thereafter", + "romanization": "Folgezeit", + "example_sentence_native": "In der Folgezeit gab es viele Veränderungen.", + "example_sentence_english": "In the subsequent period, there were many changes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13026 + }, + { + "word": "ganzjährig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "year-round;perennial", + "romanization": "ganzjährig", + "example_sentence_native": "Das Hotel ist ganzjährig geöffnet.", + "example_sentence_english": "The hotel is open year-round.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13029 + }, + { + "word": "gehorchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to obey", + "romanization": "gehorchen", + "example_sentence_native": "Der Hund muss seinem Herrchen gehorchen.", + "example_sentence_english": "The dog must obey its master.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13030 + }, + { + "word": "Gesamtwertung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall ranking;score", + "romanization": "Gesamtwertung", + "example_sentence_native": "Er führte in der Gesamtwertung.", + "example_sentence_english": "He was leading in the overall ranking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13032 + }, + { + "word": "Gesundheitszustand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state of health", + "romanization": "Gesundheitszustand", + "example_sentence_native": "Sein Gesundheitszustand hat sich verbessert.", + "example_sentence_english": "His state of health has improved.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13033 + }, + { + "word": "Granate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grenade;stunner", + "romanization": "Granate", + "example_sentence_native": "Die Soldaten warfen eine Granate.", + "example_sentence_english": "The soldiers threw a grenade.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13034 + }, + { + "word": "greifbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangible;graspable;available", + "romanization": "greifbar", + "example_sentence_native": "Die Lösung ist jetzt greifbar.", + "example_sentence_english": "The solution is now tangible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13035 + }, + { + "word": "Henker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executioner", + "romanization": "Henker", + "example_sentence_native": "Der Henker führte das Urteil aus.", + "example_sentence_english": "The executioner carried out the sentence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13041 + }, + { + "word": "hervorbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to produce;to bring forth", + "romanization": "hervorbringen", + "example_sentence_native": "Die Natur kann erstaunliche Dinge hervorbringen.", + "example_sentence_english": "Nature can produce astonishing things.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hervor", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13042 + }, + { + "word": "hinsetzen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sit down", + "romanization": "hinsetzen", + "example_sentence_native": "Bitte setzen Sie sich hin.", + "example_sentence_english": "Please sit down.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13043 + }, + { + "word": "Hochburg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stronghold;bastion", + "romanization": "Hochburg", + "example_sentence_native": "Die Stadt war eine Hochburg des Widerstands.", + "example_sentence_english": "The city was a stronghold of resistance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13044 + }, + { + "word": "Hysterie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hysteria", + "romanization": "Hysterie", + "example_sentence_native": "Es gab eine Welle der Hysterie nach den Nachrichten.", + "example_sentence_english": "There was a wave of hysteria after the news.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13045 + }, + { + "word": "Häuptling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chief;chieftain", + "romanization": "Häuptling", + "example_sentence_native": "Der Häuptling führte seinen Stamm an.", + "example_sentence_english": "The chief led his tribe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13046 + }, + { + "word": "häuslich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domestic;homely", + "romanization": "häuslich", + "example_sentence_native": "Sie ist sehr häuslich und liebt ihr Zuhause.", + "example_sentence_english": "She is very domestic and loves her home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13047 + }, + { + "word": "hölzern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wooden", + "romanization": "hölzern", + "example_sentence_native": "Der Tisch ist aus hölzernem Material.", + "example_sentence_english": "The table is made of wooden material.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13048 + }, + { + "word": "Imam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imam", + "romanization": "Imam", + "example_sentence_native": "Der Imam leitete das Gebet in der Moschee.", + "example_sentence_english": "The imam led the prayer in the mosque.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13049 + }, + { + "word": "immens", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immense;enormous", + "romanization": "immens", + "example_sentence_native": "Der Schaden war immens.", + "example_sentence_english": "The damage was immense.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13050 + }, + { + "word": "Jahreswechsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turn of the year;New Year's Eve", + "romanization": "Jahreswechsel", + "example_sentence_native": "Wir feiern den Jahreswechsel mit Freunden.", + "example_sentence_english": "We celebrate the turn of the year with friends.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13052 + }, + { + "word": "Kaugummi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chewing gum", + "romanization": "Kaugummi", + "example_sentence_native": "Ich mag den Geschmack von Kaugummi.", + "example_sentence_english": "I like the taste of chewing gum.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13055 + }, + { + "word": "Kiez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neighborhood;district (esp. in Berlin)", + "romanization": "Kiez", + "example_sentence_native": "Wir wohnen in einem lebhaften Kiez.", + "example_sentence_english": "We live in a lively neighborhood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13056 + }, + { + "word": "Klee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clover", + "romanization": "Klee", + "example_sentence_native": "Auf der Wiese wächst viel Klee.", + "example_sentence_english": "A lot of clover grows in the meadow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13058 + }, + { + "word": "Kleingeld", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small change;loose change", + "romanization": "Kleingeld", + "example_sentence_native": "Hast du etwas Kleingeld für den Automaten?", + "example_sentence_english": "Do you have some small change for the machine?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13059 + }, + { + "word": "Kutsche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carriage;coach", + "romanization": "Kutsche", + "example_sentence_native": "Die Kutsche fuhr langsam durch die Gasse.", + "example_sentence_english": "The carriage drove slowly through the alley.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13061 + }, + { + "word": "lauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mild;lukewarm", + "romanization": "lauer", + "example_sentence_native": "Es war eine laue Sommernacht.", + "example_sentence_english": "It was a mild summer night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13062 + }, + { + "word": "Lehm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loam;clay", + "romanization": "Lehm", + "example_sentence_native": "Das Haus wurde aus Lehm gebaut.", + "example_sentence_english": "The house was built from clay.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13063 + }, + { + "word": "Leitlinie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guideline;policy", + "romanization": "Leitlinie", + "example_sentence_native": "Die neuen Leitlinien wurden veröffentlicht.", + "example_sentence_english": "The new guidelines were published.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13064 + }, + { + "word": "lesbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legible;readable", + "romanization": "lesbar", + "example_sentence_native": "Seine Handschrift ist kaum lesbar.", + "example_sentence_english": "His handwriting is barely legible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13066 + }, + { + "word": "Liebesgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "love story", + "romanization": "Liebesgeschichte", + "example_sentence_native": "Sie las eine romantische Liebesgeschichte.", + "example_sentence_english": "She read a romantic love story.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13067 + }, + { + "word": "Mahnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reminder;warning", + "romanization": "Mahnung", + "example_sentence_native": "Er erhielt eine Mahnung zur Zahlung der Rechnung.", + "example_sentence_english": "He received a reminder to pay the bill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13069 + }, + { + "word": "mangelhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficient;inadequate", + "romanization": "mangelhaft", + "example_sentence_native": "Die Qualität des Produkts war mangelhaft.", + "example_sentence_english": "The quality of the product was deficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13070 + }, + { + "word": "Marxismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxism", + "romanization": "Marxismus", + "example_sentence_native": "Der Marxismus ist eine politische und ökonomische Theorie.", + "example_sentence_english": "Marxism is a political and economic theory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13071 + }, + { + "word": "Memory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory (game)", + "romanization": "Memory", + "example_sentence_native": "Wir spielten eine Runde Memory.", + "example_sentence_english": "We played a round of Memory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13074 + }, + { + "word": "Missachtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disregard;contempt", + "romanization": "Missachtung", + "example_sentence_native": "Seine Missachtung der Regeln führte zu Problemen.", + "example_sentence_english": "His disregard for the rules led to problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13076 + }, + { + "word": "Mobiltelefon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mobile phone;cell phone", + "romanization": "Mobiltelefon", + "example_sentence_native": "Ich habe mein Mobiltelefon verloren.", + "example_sentence_english": "I lost my mobile phone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13077 + }, + { + "word": "mühelos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effortless;easy", + "romanization": "mühelos", + "example_sentence_native": "Er löste die Aufgabe mühelos.", + "example_sentence_english": "He solved the task effortlessly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13079 + }, + { + "word": "Nachforschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research;investigation", + "romanization": "Nachforschung", + "example_sentence_native": "Die Nachforschung ergab neue Erkenntnisse.", + "example_sentence_english": "The investigation yielded new insights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13080 + }, + { + "word": "Nationalhymne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national anthem", + "romanization": "Nationalhymne", + "example_sentence_native": "Die Nationalhymne wurde vor dem Spiel gespielt.", + "example_sentence_english": "The national anthem was played before the game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13081 + }, + { + "word": "Neugierde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curiosity", + "romanization": "Neugierde", + "example_sentence_native": "Ihre Neugierde war geweckt.", + "example_sentence_english": "Her curiosity was aroused.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13083 + }, + { + "word": "Oberhand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upper hand;control", + "romanization": "Oberhand", + "example_sentence_native": "Er gewann die Oberhand in der Diskussion.", + "example_sentence_english": "He gained the upper hand in the discussion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13088 + }, + { + "word": "Panda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "panda", + "romanization": "Panda", + "example_sentence_native": "Der Panda ist ein seltenes Tier.", + "example_sentence_english": "The panda is a rare animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13091 + }, + { + "word": "Patch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patch (software)", + "romanization": "Patch", + "example_sentence_native": "Installiere den neuesten Patch für das Programm.", + "example_sentence_english": "Install the latest patch for the program.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13092 + }, + { + "word": "Planer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planner;designer", + "romanization": "Planer", + "example_sentence_native": "Der Stadtplaner entwarf neue Gebäude.", + "example_sentence_english": "The city planner designed new buildings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13097 + }, + { + "word": "Podiumsdiskussion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panel discussion", + "romanization": "Podiumsdiskussion", + "example_sentence_native": "Die Podiumsdiskussion war sehr informativ.", + "example_sentence_english": "The panel discussion was very informative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13098 + }, + { + "word": "Pott", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pot;container", + "romanization": "Pott", + "example_sentence_native": "Stell den Pott auf den Herd.", + "example_sentence_english": "Put the pot on the stove.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13099 + }, + { + "word": "Proband", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "test subject", + "romanization": "Proband", + "example_sentence_native": "Der Proband füllte den Fragebogen aus.", + "example_sentence_english": "The test subject filled out the questionnaire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13100 + }, + { + "word": "Prozentpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percentage point", + "romanization": "Prozentpunkt", + "example_sentence_native": "Die Inflation stieg um zwei Prozentpunkte.", + "example_sentence_english": "Inflation rose by two percentage points.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13101 + }, + { + "word": "Putzfrau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleaning lady", + "romanization": "Putzfrau", + "example_sentence_native": "Die Putzfrau reinigt das Büro jeden Abend.", + "example_sentence_english": "The cleaning lady cleans the office every evening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13104 + }, + { + "word": "Quittung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receipt", + "romanization": "Quittung", + "example_sentence_native": "Bitte bewahren Sie die Quittung auf.", + "example_sentence_english": "Please keep the receipt.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13105 + }, + { + "word": "Record", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record", + "romanization": "Record", + "example_sentence_native": "Ich habe eine alte Schallplatte, einen echten Record.", + "example_sentence_english": "I have an old vinyl record, a real record.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13106 + }, + { + "word": "Reflex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflex", + "romanization": "Reflex", + "example_sentence_native": "Der Arzt prüfte den Knie-Reflex.", + "example_sentence_english": "The doctor checked the knee reflex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13107 + }, + { + "word": "Refrain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chorus", + "romanization": "Refrain", + "example_sentence_native": "Der Refrain des Liedes ist sehr eingängig.", + "example_sentence_english": "The chorus of the song is very catchy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13108 + }, + { + "word": "Reisepass", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passport", + "romanization": "Reisepass", + "example_sentence_native": "Vergessen Sie Ihren Reisepass nicht.", + "example_sentence_english": "Don't forget your passport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13109 + }, + { + "word": "Ringer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrestler", + "romanization": "Ringer", + "example_sentence_native": "Der Ringer gewann die Goldmedaille.", + "example_sentence_english": "The wrestler won the gold medal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13113 + }, + { + "word": "Rocker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocker", + "romanization": "Rocker", + "example_sentence_native": "Die Rocker trafen sich am Wochenende.", + "example_sentence_english": "The rockers met on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13114 + }, + { + "word": "Rufnummer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "phone number", + "romanization": "Rufnummer", + "example_sentence_native": "Bitte geben Sie Ihre Rufnummer an.", + "example_sentence_english": "Please provide your phone number.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13119 + }, + { + "word": "rückblickend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retrospectively", + "romanization": "rückblickend", + "example_sentence_native": "Rückblickend war es die beste Entscheidung.", + "example_sentence_english": "Retrospectively, it was the best decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13120 + }, + { + "word": "Rückschlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "setback", + "romanization": "Rückschlag", + "example_sentence_native": "Das war ein kleiner Rückschlag für das Projekt.", + "example_sentence_english": "That was a small setback for the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13121 + }, + { + "word": "Sackgasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dead end", + "romanization": "Sackgasse", + "example_sentence_native": "Die Straße endet in einer Sackgasse.", + "example_sentence_english": "The street ends in a dead end.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13122 + }, + { + "word": "Safari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safari", + "romanization": "Safari", + "example_sentence_native": "Wir planen eine Safari in Afrika.", + "example_sentence_english": "We are planning a safari in Africa.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13123 + }, + { + "word": "Schanze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ski jump", + "romanization": "Schanze", + "example_sentence_native": "Der Skispringer sprang von der Schanze.", + "example_sentence_english": "The ski jumper jumped from the ski jump.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13124 + }, + { + "word": "Schweinefleisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pork", + "romanization": "Schweinefleisch", + "example_sentence_native": "Ich esse kein Schweinefleisch.", + "example_sentence_english": "I don't eat pork.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13126 + }, + { + "word": "schätzungsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximately", + "romanization": "schätzungsweise", + "example_sentence_native": "Es waren schätzungsweise hundert Leute da.", + "example_sentence_english": "There were approximately a hundred people there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 13127 + }, + { + "word": "Shampoo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shampoo", + "romanization": "Shampoo", + "example_sentence_native": "Ich brauche neues Shampoo für meine Haare.", + "example_sentence_english": "I need new shampoo for my hair.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13128 + }, + { + "word": "Shitstorm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shitstorm", + "romanization": "Shitstorm", + "example_sentence_native": "Der Politiker erlebte einen riesigen Shitstorm nach seiner Aussage.", + "example_sentence_english": "The politician experienced a huge shitstorm after his statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13129 + }, + { + "word": "spielend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effortlessly", + "romanization": "spielend", + "example_sentence_native": "Er hat die Aufgabe spielend gelöst.", + "example_sentence_english": "He solved the task effortlessly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13131 + }, + { + "word": "Stadthalle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city hall (event venue)", + "romanization": "Stadthalle", + "example_sentence_native": "Das Konzert findet in der Stadthalle statt.", + "example_sentence_english": "The concert takes place in the city hall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13133 + }, + { + "word": "Streife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patrol", + "romanization": "Streife", + "example_sentence_native": "Die Polizei ist auf Streife.", + "example_sentence_english": "The police are on patrol.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13134 + }, + { + "word": "superior", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superior", + "romanization": "superior", + "example_sentence_native": "Er zeigte eine superior Leistung.", + "example_sentence_english": "He showed a superior performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13135 + }, + { + "word": "symbolisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to symbolize", + "romanization": "symbolisieren", + "example_sentence_native": "Die Taube symbolisiert den Frieden.", + "example_sentence_english": "The dove symbolizes peace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13136 + }, + { + "word": "Sünder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sinner", + "romanization": "Sünder", + "example_sentence_native": "Der Priester sprach über die Sünder.", + "example_sentence_english": "The priest spoke about the sinners.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13137 + }, + { + "word": "Tiefgarage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underground car park", + "romanization": "Tiefgarage", + "example_sentence_native": "Wir haben unser Auto in der Tiefgarage geparkt.", + "example_sentence_english": "We parked our car in the underground car park.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13140 + }, + { + "word": "Tiergarten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zoo;animal park", + "romanization": "Tiergarten", + "example_sentence_native": "Der Tiergarten ist ein beliebter Ort für Familienausflüge.", + "example_sentence_english": "The zoo is a popular place for family outings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13141 + }, + { + "word": "Tischler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpenter;joiner", + "romanization": "Tischler", + "example_sentence_native": "Der Tischler hat einen schönen Holztisch gebaut.", + "example_sentence_english": "The carpenter built a beautiful wooden table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13142 + }, + { + "word": "unbequem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncomfortable;inconvenient", + "romanization": "unbequem", + "example_sentence_native": "Der Stuhl ist sehr unbequem.", + "example_sentence_english": "The chair is very uncomfortable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13144 + }, + { + "word": "unerwünscht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undesirable;unwanted", + "romanization": "unerwünscht", + "example_sentence_native": "Unerwünschte Werbung landet oft im Spam-Ordner.", + "example_sentence_english": "Unwanted advertising often ends up in the spam folder.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13145 + }, + { + "word": "Unterfangen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undertaking;endeavor", + "romanization": "Unterfangen", + "example_sentence_native": "Das Projekt war ein schwieriges Unterfangen.", + "example_sentence_english": "The project was a difficult undertaking.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13146 + }, + { + "word": "unverzichtbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indispensable;essential", + "romanization": "unverzichtbar", + "example_sentence_native": "Wasser ist für das Leben unverzichtbar.", + "example_sentence_english": "Water is indispensable for life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13147 + }, + { + "word": "Verbindlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obligation;commitment", + "romanization": "Verbindlichkeit", + "example_sentence_native": "Wir müssen unsere Verbindlichkeiten erfüllen.", + "example_sentence_english": "We must fulfill our obligations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13149 + }, + { + "word": "Verfassungsgericht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional court", + "romanization": "Verfassungsgericht", + "example_sentence_native": "Das Verfassungsgericht hat die Klage abgewiesen.", + "example_sentence_english": "The constitutional court dismissed the complaint.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13150 + }, + { + "word": "verlesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to read out;to misread", + "romanization": "verlesen", + "example_sentence_native": "Der Richter wird das Urteil verlesen.", + "example_sentence_english": "The judge will read out the verdict.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13151 + }, + { + "word": "verschlucken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swallow;to choke on", + "romanization": "verschlucken", + "example_sentence_native": "Er hat sich an einem Stück Brot verschluckt.", + "example_sentence_english": "He choked on a piece of bread.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13153 + }, + { + "word": "Verschulden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fault;blame", + "romanization": "Verschulden", + "example_sentence_native": "Das Unglück geschah ohne sein Verschulden.", + "example_sentence_english": "The accident happened through no fault of his own.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13154 + }, + { + "word": "vorantreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push forward;to advance", + "romanization": "vorantreiben", + "example_sentence_native": "Wir müssen das Projekt vorantreiben.", + "example_sentence_english": "We need to push the project forward.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "voran", + "base_verb": "treiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13155 + }, + { + "word": "Vorspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prelude;warm-up;foreplay", + "romanization": "Vorspiel", + "example_sentence_native": "Das Vorspiel zur Oper war sehr beeindruckend.", + "example_sentence_english": "The prelude to the opera was very impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13156 + }, + { + "word": "vorziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prefer;to move forward (in time)", + "romanization": "vorziehen", + "example_sentence_native": "Ich würde Kaffee Tee vorziehen.", + "example_sentence_english": "I would prefer coffee to tea.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13157 + }, + { + "word": "weggehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go away;to leave", + "romanization": "weggehen", + "example_sentence_native": "Er musste plötzlich weggehen.", + "example_sentence_english": "He suddenly had to leave.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13158 + }, + { + "word": "Weitergabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passing on;disclosure;dissemination", + "romanization": "Weitergabe", + "example_sentence_native": "Die Weitergabe persönlicher Daten ist streng verboten.", + "example_sentence_english": "The passing on of personal data is strictly forbidden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13159 + }, + { + "word": "Weltgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world history", + "romanization": "Weltgeschichte", + "example_sentence_native": "Sie studiert Weltgeschichte an der Universität.", + "example_sentence_english": "She studies world history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13160 + }, + { + "word": "wiederkommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come back;to return", + "romanization": "wiederkommen", + "example_sentence_native": "Wann wirst du wiederkommen?", + "example_sentence_english": "When will you come back?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wieder", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13161 + }, + { + "word": "Winterpause", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winter break", + "romanization": "Winterpause", + "example_sentence_native": "Die Bundesliga geht in die Winterpause.", + "example_sentence_english": "The Bundesliga goes into the winter break.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13163 + }, + { + "word": "Wirkungsgrad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "efficiency;degree of efficiency", + "romanization": "Wirkungsgrad", + "example_sentence_native": "Der Wirkungsgrad des Motors ist sehr hoch.", + "example_sentence_english": "The efficiency of the engine is very high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13164 + }, + { + "word": "Wohlfahrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welfare;well-being", + "romanization": "Wohlfahrt", + "example_sentence_native": "Die Wohlfahrt der Bürger ist wichtig für den Staat.", + "example_sentence_english": "The welfare of the citizens is important for the state.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13165 + }, + { + "word": "Zahnbürste", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toothbrush", + "romanization": "Zahnbürste", + "example_sentence_native": "Ich brauche eine neue Zahnbürste.", + "example_sentence_english": "I need a new toothbrush.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13167 + }, + { + "word": "zucken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to twitch;to shrug;to flinch", + "romanization": "zucken", + "example_sentence_native": "Er zuckte mit den Schultern.", + "example_sentence_english": "He shrugged his shoulders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13170 + }, + { + "word": "Zulauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflow;attendance;popularity", + "romanization": "Zulauf", + "example_sentence_native": "Das Konzert hatte großen Zulauf.", + "example_sentence_english": "The concert had a large attendance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13171 + }, + { + "word": "zusammenkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to come together;to meet", + "romanization": "zusammenkommen", + "example_sentence_native": "Wir sollten nächste Woche zusammenkommen.", + "example_sentence_english": "We should come together next week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13172 + }, + { + "word": "zweifelhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubtful;questionable", + "romanization": "zweifelhaft", + "example_sentence_native": "Seine Aussage war sehr zweifelhaft.", + "example_sentence_english": "His statement was very doubtful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13173 + }, + { + "word": "Zweikampf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duel;one-on-one fight", + "romanization": "Zweikampf", + "example_sentence_native": "Der Spieler gewann den Zweikampf um den Ball.", + "example_sentence_english": "The player won the one-on-one fight for the ball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13174 + }, + { + "word": "Ägypter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Egyptian (person)", + "romanization": "Ägypter", + "example_sentence_native": "Er ist ein Ägypter.", + "example_sentence_english": "He is an Egyptian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13175 + }, + { + "word": "Ökostrom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "green electricity;eco-friendly electricity", + "romanization": "Ökostrom", + "example_sentence_native": "Viele Haushalte nutzen heute Ökostrom.", + "example_sentence_english": "Many households use green electricity today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13176 + }, + { + "word": "überschätzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overestimate", + "romanization": "überschätzen", + "example_sentence_native": "Man sollte seine Fähigkeiten nicht überschätzen.", + "example_sentence_english": "One should not overestimate one's abilities.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13177 + }, + { + "word": "Abbild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "image;copy;reflection", + "romanization": "Abbild", + "example_sentence_native": "Das Foto ist ein Abbild der Realität.", + "example_sentence_english": "The photo is a reflection of reality.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13179 + }, + { + "word": "abschreiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to copy;to write off", + "romanization": "abschreiben", + "example_sentence_native": "Du solltest die Hausaufgaben nicht abschreiben.", + "example_sentence_english": "You should not copy the homework.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13180 + }, + { + "word": "Abmahnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warning;caution (formal;legal)", + "romanization": "Abmahnung", + "example_sentence_native": "Er erhielt eine Abmahnung wegen wiederholter Verspätung.", + "example_sentence_english": "He received a warning for repeated lateness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13181 + }, + { + "word": "Abschuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooting down;launch;kill (hunting)", + "romanization": "Abschuss", + "example_sentence_native": "Der Abschuss des Satelliten war erfolgreich.", + "example_sentence_english": "The launch of the satellite was successful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13182 + }, + { + "word": "Accessoire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessory", + "romanization": "Accessoire", + "example_sentence_native": "Sie trug ein schönes Accessoire zu ihrem Kleid.", + "example_sentence_english": "She wore a beautiful accessory with her dress.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13183 + }, + { + "word": "Ads", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ads (advertisements)", + "romanization": "Ads", + "example_sentence_native": "Viele Websites zeigen personalisierte Ads an.", + "example_sentence_english": "Many websites display personalized ads.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13184 + }, + { + "word": "Anflug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach (flight);hint;touch (of emotion)", + "romanization": "Anflug", + "example_sentence_native": "Der Pilot meldete den Anflug auf den Flughafen.", + "example_sentence_english": "The pilot reported the approach to the airport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13187 + }, + { + "word": "anfordern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to request;to demand", + "romanization": "anfordern", + "example_sentence_native": "Sie müssen die Unterlagen schriftlich anfordern.", + "example_sentence_english": "You must request the documents in writing.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fordern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13188 + }, + { + "word": "anlehnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lean (against;on)", + "romanization": "anlehnen", + "example_sentence_native": "Er lehnte sich an die Wand.", + "example_sentence_english": "He leaned against the wall.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "lehnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13189 + }, + { + "word": "Anonymität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymity", + "romanization": "Anonymität", + "example_sentence_native": "Viele Menschen schätzen die Anonymität im Internet.", + "example_sentence_english": "Many people value anonymity on the internet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13190 + }, + { + "word": "anstrengen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exert oneself;to strain;to make an effort", + "romanization": "anstrengen", + "example_sentence_native": "Du musst dich mehr anstrengen, um das Ziel zu erreichen.", + "example_sentence_english": "You have to make more effort to reach the goal.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "strengen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13192 + }, + { + "word": "ausgraben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dig up;to excavate", + "romanization": "ausgraben", + "example_sentence_native": "Die Archäologen werden alte Artefakte ausgraben.", + "example_sentence_english": "The archaeologists will dig up old artifacts.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "graben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13197 + }, + { + "word": "ausrauben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rob;to plunder", + "romanization": "ausrauben", + "example_sentence_native": "Die Bank wurde letzte Nacht ausgeraubt.", + "example_sentence_english": "The bank was robbed last night.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rauben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13198 + }, + { + "word": "auskennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to know one's way around;to be familiar with", + "romanization": "auskennen", + "example_sentence_native": "Er kennt sich gut in der Stadt aus.", + "example_sentence_english": "He knows his way around the city well.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "kennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13199 + }, + { + "word": "Autismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autism", + "romanization": "Autismus", + "example_sentence_native": "Autismus ist eine komplexe neurologische Entwicklungsstörung.", + "example_sentence_english": "Autism is a complex neurological developmental disorder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13200 + }, + { + "word": "Backofen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oven", + "romanization": "Backofen", + "example_sentence_native": "Der Kuchen backt im Backofen.", + "example_sentence_english": "The cake is baking in the oven.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13201 + }, + { + "word": "Bahnstrecke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway line", + "romanization": "Bahnstrecke", + "example_sentence_native": "Die Bahnstrecke ist wegen Bauarbeiten gesperrt.", + "example_sentence_english": "The railway line is closed due to construction work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13202 + }, + { + "word": "Ballade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballad", + "romanization": "Ballade", + "example_sentence_native": "Er las eine alte Ballade vor.", + "example_sentence_english": "He read an old ballad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13204 + }, + { + "word": "bedrängen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harass", + "romanization": "bedrängen", + "example_sentence_native": "Man sollte niemanden bedrängen.", + "example_sentence_english": "One should not harass anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13206 + }, + { + "word": "begehrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coveted", + "romanization": "begehrt", + "example_sentence_native": "Dieses Produkt ist sehr begehrt.", + "example_sentence_english": "This product is very coveted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13207 + }, + { + "word": "begleichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to settle", + "romanization": "begleichen", + "example_sentence_native": "Ich muss noch die Rechnung begleichen.", + "example_sentence_english": "I still have to settle the bill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13208 + }, + { + "word": "bekräftigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to confirm", + "romanization": "bekräftigen", + "example_sentence_native": "Sie bekräftigte ihre Aussage.", + "example_sentence_english": "She confirmed her statement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13210 + }, + { + "word": "Bestreben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endeavor", + "romanization": "Bestreben", + "example_sentence_native": "Sein Bestreben war es, die Welt zu verbessern.", + "example_sentence_english": "His endeavor was to improve the world.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13212 + }, + { + "word": "betrieben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operated", + "romanization": "betrieben", + "example_sentence_native": "Die Anlage wird mit Solarenergie betrieben.", + "example_sentence_english": "The facility is operated with solar energy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13214 + }, + { + "word": "Blutung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bleeding", + "romanization": "Blutung", + "example_sentence_native": "Die Blutung konnte gestillt werden.", + "example_sentence_english": "The bleeding could be stopped.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13215 + }, + { + "word": "Briefwechsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correspondence", + "romanization": "Briefwechsel", + "example_sentence_native": "Sie führten einen regen Briefwechsel.", + "example_sentence_english": "They maintained a lively correspondence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13216 + }, + { + "word": "Cello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cello", + "romanization": "Cello", + "example_sentence_native": "Sie spielt wunderschön Cello.", + "example_sentence_english": "She plays the cello beautifully.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13220 + }, + { + "word": "chaotisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chaotic", + "romanization": "chaotisch", + "example_sentence_native": "Sein Schreibtisch ist immer chaotisch.", + "example_sentence_english": "His desk is always chaotic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13221 + }, + { + "word": "Col", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mountain pass", + "romanization": "Col", + "example_sentence_native": "Der Col ist im Winter oft gesperrt.", + "example_sentence_english": "The mountain pass is often closed in winter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13222 + }, + { + "word": "Darbietung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance;presentation", + "romanization": "Darbietung", + "example_sentence_native": "Die Darbietung des Orchesters war beeindruckend.", + "example_sentence_english": "The orchestra's performance was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13223 + }, + { + "word": "Decker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coverer;roofer", + "romanization": "Decker", + "example_sentence_native": "Der Decker reparierte das Dach schnell.", + "example_sentence_english": "The roofer quickly repaired the roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13224 + }, + { + "word": "Delle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dent", + "romanization": "Delle", + "example_sentence_native": "Das Auto hat eine kleine Delle an der Tür.", + "example_sentence_english": "The car has a small dent on the door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13226 + }, + { + "word": "Dessous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lingerie;underwear", + "romanization": "Dessous", + "example_sentence_native": "Sie kaufte neue Dessous für den besonderen Anlass.", + "example_sentence_english": "She bought new lingerie for the special occasion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13227 + }, + { + "word": "Dis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "D sharp (musical note)", + "romanization": "Dis", + "example_sentence_native": "Der Geiger spielte ein hohes Dis.", + "example_sentence_english": "The violinist played a high D sharp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13228 + }, + { + "word": "Drehmoment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torque", + "romanization": "Drehmoment", + "example_sentence_native": "Das Drehmoment des Motors ist sehr hoch.", + "example_sentence_english": "The engine's torque is very high.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13229 + }, + { + "word": "Effektivität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effectiveness", + "romanization": "Effektivität", + "example_sentence_native": "Die Effektivität der neuen Methode ist bewiesen.", + "example_sentence_english": "The effectiveness of the new method is proven.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13232 + }, + { + "word": "Egoismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egoism;selfishness", + "romanization": "Egoismus", + "example_sentence_native": "Sein Egoismus machte ihn unbeliebt.", + "example_sentence_english": "His egoism made him unpopular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13233 + }, + { + "word": "Einmischung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interference;intervention", + "romanization": "Einmischung", + "example_sentence_native": "Er bat um keine Einmischung in seine Angelegenheiten.", + "example_sentence_english": "He asked for no interference in his affairs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13234 + }, + { + "word": "Elle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ulna (bone);ell (unit of measure)", + "romanization": "Elle", + "example_sentence_native": "Die Elle ist einer der beiden Knochen im Unterarm.", + "example_sentence_english": "The ulna is one of the two bones in the forearm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13235 + }, + { + "word": "entrichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay;to settle (a debt;fee)", + "romanization": "entrichten", + "example_sentence_native": "Sie müssen die Gebühr bis Ende des Monats entrichten.", + "example_sentence_english": "You must pay the fee by the end of the month.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13237 + }, + { + "word": "Entwicklungshilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development aid", + "romanization": "Entwicklungshilfe", + "example_sentence_native": "Viele Länder sind auf Entwicklungshilfe angewiesen.", + "example_sentence_english": "Many countries depend on development aid.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13238 + }, + { + "word": "erwirtschaften", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to generate;to earn (profits)", + "romanization": "erwirtschaften", + "example_sentence_native": "Das Unternehmen konnte hohe Gewinne erwirtschaften.", + "example_sentence_english": "The company was able to generate high profits.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13239 + }, + { + "word": "Fehlverhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misconduct", + "romanization": "Fehlverhalten", + "example_sentence_native": "Sein Fehlverhalten führte zu Konsequenzen.", + "example_sentence_english": "His misconduct led to consequences.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13241 + }, + { + "word": "Fotografin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photographer (female)", + "romanization": "Fotografin", + "example_sentence_native": "Die Fotografin machte schöne Bilder.", + "example_sentence_english": "The photographer took beautiful pictures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13244 + }, + { + "word": "Fuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint;gap", + "romanization": "Fuge", + "example_sentence_native": "Es gibt eine kleine Fuge zwischen den Fliesen.", + "example_sentence_english": "There is a small gap between the tiles.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13245 + }, + { + "word": "Funktionsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mode of operation", + "romanization": "Funktionsweise", + "example_sentence_native": "Er erklärte die Funktionsweise der Maschine.", + "example_sentence_english": "He explained the mode of operation of the machine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13246 + }, + { + "word": "gedeihen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to thrive", + "romanization": "gedeihen", + "example_sentence_native": "Die Pflanzen gedeihen gut in diesem Klima.", + "example_sentence_english": "The plants thrive well in this climate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13249 + }, + { + "word": "Gelenk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joint (anatomy)", + "romanization": "Gelenk", + "example_sentence_native": "Das Knie ist ein wichtiges Gelenk.", + "example_sentence_english": "The knee is an important joint.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13251 + }, + { + "word": "Gesamtbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall picture", + "romanization": "Gesamtbild", + "example_sentence_native": "Man muss das Gesamtbild betrachten.", + "example_sentence_english": "One must consider the overall picture.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13253 + }, + { + "word": "Gesamtzahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total number", + "romanization": "Gesamtzahl", + "example_sentence_native": "Die Gesamtzahl der Teilnehmer war hoch.", + "example_sentence_english": "The total number of participants was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13254 + }, + { + "word": "Geschoss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "floor;story (of a building)", + "romanization": "Geschoss", + "example_sentence_native": "Das Gebäude hat fünf Geschosse.", + "example_sentence_english": "The building has five floors.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13255 + }, + { + "word": "Geschäftsbereich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business unit;division", + "romanization": "Geschäftsbereich", + "example_sentence_native": "Er leitet den Geschäftsbereich Marketing.", + "example_sentence_english": "He manages the marketing business unit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13257 + }, + { + "word": "Geschäftsleitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management;executive board", + "romanization": "Geschäftsleitung", + "example_sentence_native": "Die Geschäftsleitung traf eine wichtige Entscheidung.", + "example_sentence_english": "The management made an important decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13258 + }, + { + "word": "gesucht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sought;wanted", + "romanization": "gesucht", + "example_sentence_native": "Der gesuchte Mann wurde gefunden.", + "example_sentence_english": "The wanted man was found.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13260 + }, + { + "word": "Gilde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guild", + "romanization": "Gilde", + "example_sentence_native": "Die alte Gilde der Handwerker traf sich.", + "example_sentence_english": "The old guild of craftsmen met.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13262 + }, + { + "word": "heimsuchen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to haunt;to afflict", + "romanization": "heimsuchen", + "example_sentence_native": "Die Krankheit suchte das Dorf heim.", + "example_sentence_english": "The disease afflicted the village.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heim", + "base_verb": "suchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13266 + }, + { + "word": "hieraus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from this;out of this", + "romanization": "hieraus", + "example_sentence_native": "Hieraus ergibt sich eine neue Frage.", + "example_sentence_english": "From this, a new question arises.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 13267 + }, + { + "word": "Hocker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stool", + "romanization": "Hocker", + "example_sentence_native": "Bitte nimm auf dem Hocker Platz.", + "example_sentence_english": "Please take a seat on the stool.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13268 + }, + { + "word": "Hähnchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chicken (food)", + "romanization": "Hähnchen", + "example_sentence_native": "Wir essen heute Abend Hähnchen.", + "example_sentence_english": "We are eating chicken tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13270 + }, + { + "word": "Impression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impression", + "romanization": "Impression", + "example_sentence_native": "Mein erster Eindruck war eine gute Impression.", + "example_sentence_english": "My first impression was a good impression.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13271 + }, + { + "word": "Interface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interface", + "romanization": "Interface", + "example_sentence_native": "Die Benutzeroberfläche ist das Interface zum Programm.", + "example_sentence_english": "The user interface is the interface to the program.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13273 + }, + { + "word": "Intuition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuition", + "romanization": "Intuition", + "example_sentence_native": "Sie hatte eine starke Intuition, dass etwas nicht stimmte.", + "example_sentence_english": "She had a strong intuition that something was wrong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13274 + }, + { + "word": "Jeep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jeep", + "romanization": "Jeep", + "example_sentence_native": "Er fuhr mit seinem Jeep durch das Gelände.", + "example_sentence_english": "He drove his jeep through the terrain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13275 + }, + { + "word": "Jugendhilfe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "youth welfare", + "romanization": "Jugendhilfe", + "example_sentence_native": "Die Jugendhilfe unterstützt Familien in Not.", + "example_sentence_english": "Youth welfare supports families in need.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13276 + }, + { + "word": "Jump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jump", + "romanization": "Jump", + "example_sentence_native": "Er machte einen hohen Jump über das Hindernis.", + "example_sentence_english": "He made a high jump over the obstacle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13277 + }, + { + "word": "Justizministerium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ministry of Justice", + "romanization": "Justizministerium", + "example_sentence_native": "Das Justizministerium ist für die Rechtspflege zuständig.", + "example_sentence_english": "The Ministry of Justice is responsible for the administration of justice.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13278 + }, + { + "word": "Karotte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carrot", + "romanization": "Karotte", + "example_sentence_native": "Ich esse gerne Karotten.", + "example_sentence_english": "I like to eat carrots.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13281 + }, + { + "word": "Kaufkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purchasing power", + "romanization": "Kaufkraft", + "example_sentence_native": "Die Kaufkraft der Bevölkerung ist gestiegen.", + "example_sentence_english": "The purchasing power of the population has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13283 + }, + { + "word": "kiffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smoke weed;pot", + "romanization": "kiffen", + "example_sentence_native": "Er wurde erwischt, als er gekifft hat.", + "example_sentence_english": "He was caught smoking pot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13284 + }, + { + "word": "Kinderbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "children's book", + "romanization": "Kinderbuch", + "example_sentence_native": "Das ist ein schönes Kinderbuch.", + "example_sentence_english": "That is a nice children's book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13285 + }, + { + "word": "Kinofilm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cinema film;movie", + "romanization": "Kinofilm", + "example_sentence_native": "Wir haben gestern einen guten Kinofilm gesehen.", + "example_sentence_english": "We saw a good movie yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13286 + }, + { + "word": "konkurrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compete", + "romanization": "konkurrieren", + "example_sentence_native": "Die beiden Firmen konkurrieren um Marktanteile.", + "example_sentence_english": "The two companies compete for market shares.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13288 + }, + { + "word": "koordinieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coordinate", + "romanization": "koordinieren", + "example_sentence_native": "Wir müssen unsere Anstrengungen besser koordinieren.", + "example_sentence_english": "We need to coordinate our efforts better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13289 + }, + { + "word": "kostengünstig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cost-effective;inexpensive", + "romanization": "kostengünstig", + "example_sentence_native": "Wir suchen eine kostengünstige Lösung.", + "example_sentence_english": "We are looking for a cost-effective solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13290 + }, + { + "word": "Kubikmeter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cubic meter", + "romanization": "Kubikmeter", + "example_sentence_native": "Das Volumen beträgt zehn Kubikmeter.", + "example_sentence_english": "The volume is ten cubic meters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13291 + }, + { + "word": "Kunsthalle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "art gallery;art hall", + "romanization": "Kunsthalle", + "example_sentence_native": "Die neue Ausstellung in der Kunsthalle ist sehr interessant.", + "example_sentence_english": "The new exhibition in the art gallery is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13292 + }, + { + "word": "leiblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biological;physical;bodily", + "romanization": "leiblich", + "example_sentence_native": "Sie ist meine leibliche Schwester.", + "example_sentence_english": "She is my biological sister.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13294 + }, + { + "word": "leuchtend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shining;luminous;bright", + "romanization": "leuchtend", + "example_sentence_native": "Die leuchtenden Farben des Herbstes sind wunderschön.", + "example_sentence_english": "The bright colors of autumn are beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13297 + }, + { + "word": "Luftballon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balloon", + "romanization": "Luftballon", + "example_sentence_native": "Die Kinder spielten mit einem roten Luftballon.", + "example_sentence_english": "The children played with a red balloon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13298 + }, + { + "word": "lutherisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lutheran", + "romanization": "lutherisch", + "example_sentence_native": "Er gehört der lutherischen Kirche an.", + "example_sentence_english": "He belongs to the Lutheran church.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13299 + }, + { + "word": "masturbieren", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to masturbate", + "romanization": "masturbieren", + "example_sentence_native": "Er lernte, wie man masturbiert.", + "example_sentence_english": "He learned how to masturbate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13302 + }, + { + "word": "Maxime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maxim;principle", + "romanization": "Maxime", + "example_sentence_native": "Eine wichtige Maxime in seinem Leben war Ehrlichkeit.", + "example_sentence_english": "An important maxim in his life was honesty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13303 + }, + { + "word": "Memoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "memoir;memorandum", + "romanization": "Memoire", + "example_sentence_native": "Sie schrieb ihre Memoiren über ihr Leben.", + "example_sentence_english": "She wrote her memoirs about her life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13305 + }, + { + "word": "Milliardär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billionaire", + "romanization": "Milliardär", + "example_sentence_native": "Er träumt davon, ein Milliardär zu werden.", + "example_sentence_english": "He dreams of becoming a billionaire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13309 + }, + { + "word": "Molekül", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molecule", + "romanization": "Molekül", + "example_sentence_native": "Ein Wassermolekül besteht aus zwei Wasserstoffatomen und einem Sauerstoffatom.", + "example_sentence_english": "A water molecule consists of two hydrogen atoms and one oxygen atom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13310 + }, + { + "word": "mysteriös", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mysterious", + "romanization": "mysteriös", + "example_sentence_native": "Sie erzählte eine mysteriöse Geschichte.", + "example_sentence_english": "She told a mysterious story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13312 + }, + { + "word": "Männlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masculinity", + "romanization": "Männlichkeit", + "example_sentence_native": "Er definierte Männlichkeit auf seine eigene Weise.", + "example_sentence_english": "He defined masculinity in his own way.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13313 + }, + { + "word": "Nervosität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nervousness", + "romanization": "Nervosität", + "example_sentence_native": "Vor der Prüfung spürte sie eine große Nervosität.", + "example_sentence_english": "Before the exam, she felt great nervousness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13314 + }, + { + "word": "Nichtraucher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "non-smoker", + "romanization": "Nichtraucher", + "example_sentence_native": "Er ist ein überzeugter Nichtraucher.", + "example_sentence_english": "He is a convinced non-smoker.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13317 + }, + { + "word": "Nippel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nipple", + "romanization": "Nippel", + "example_sentence_native": "Der Nippel des Babys war wund.", + "example_sentence_english": "The baby's nipple was sore.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13318 + }, + { + "word": "Nylon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nylon", + "romanization": "Nylon", + "example_sentence_native": "Diese Strümpfe sind aus Nylon.", + "example_sentence_english": "These stockings are made of nylon.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13320 + }, + { + "word": "Parfüm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfume", + "romanization": "Parfüm", + "example_sentence_native": "Sie trägt ein teures Parfüm.", + "example_sentence_english": "She is wearing an expensive perfume.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13321 + }, + { + "word": "Perücke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wig", + "romanization": "Perücke", + "example_sentence_native": "Der Schauspieler trug eine blonde Perücke.", + "example_sentence_english": "The actor wore a blonde wig.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13322 + }, + { + "word": "Pier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pier", + "romanization": "Pier", + "example_sentence_native": "Wir spazierten am Pier entlang.", + "example_sentence_english": "We walked along the pier.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13323 + }, + { + "word": "plaudern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chat", + "romanization": "plaudern", + "example_sentence_native": "Sie plauderten stundenlang über alles Mögliche.", + "example_sentence_english": "They chatted for hours about all sorts of things.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13324 + }, + { + "word": "Positionierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "positioning", + "romanization": "Positionierung", + "example_sentence_native": "Die Positionierung des Produkts ist entscheidend für den Erfolg.", + "example_sentence_english": "The positioning of the product is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13325 + }, + { + "word": "preiswert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inexpensive;good value", + "romanization": "preiswert", + "example_sentence_native": "Das Hotel bietet preiswerte Zimmer an.", + "example_sentence_english": "The hotel offers inexpensive rooms.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13326 + }, + { + "word": "Psychoanalyse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychoanalysis", + "romanization": "Psychoanalyse", + "example_sentence_native": "Sigmund Freud ist der Begründer der Psychoanalyse.", + "example_sentence_english": "Sigmund Freud is the founder of psychoanalysis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13327 + }, + { + "word": "Rabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raven", + "romanization": "Rabe", + "example_sentence_native": "Ein großer schwarzer Rabe saß auf dem Ast.", + "example_sentence_english": "A large black raven sat on the branch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13328 + }, + { + "word": "Rechtspopulist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right-wing populist", + "romanization": "Rechtspopulist", + "example_sentence_native": "Der Politiker wird oft als Rechtspopulist bezeichnet.", + "example_sentence_english": "The politician is often referred to as a right-wing populist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13329 + }, + { + "word": "Reim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhyme", + "romanization": "Reim", + "example_sentence_native": "Das Gedicht hat einen schönen Reim.", + "example_sentence_english": "The poem has a beautiful rhyme.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13331 + }, + { + "word": "Resort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resort", + "romanization": "Resort", + "example_sentence_native": "Wir verbrachten unseren Urlaub in einem luxuriösen Resort.", + "example_sentence_english": "We spent our vacation in a luxurious resort.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13332 + }, + { + "word": "Rückführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repatriation;return", + "romanization": "Rückführung", + "example_sentence_native": "Die Rückführung der Flüchtlinge ist ein komplexes Thema.", + "example_sentence_english": "The repatriation of the refugees is a complex issue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13334 + }, + { + "word": "Sachschaden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property damage", + "romanization": "Sachschaden", + "example_sentence_native": "Der Unfall verursachte erheblichen Sachschaden.", + "example_sentence_english": "The accident caused significant property damage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13335 + }, + { + "word": "Scan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scan", + "romanization": "Scan", + "example_sentence_native": "Der Arzt ordnete einen MRT-Scan an.", + "example_sentence_english": "The doctor ordered an MRI scan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13336 + }, + { + "word": "Schenkung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "donation;gift (legal term)", + "romanization": "Schenkung", + "example_sentence_native": "Die Schenkung wurde notariell beurkundet.", + "example_sentence_english": "The donation was notarized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13337 + }, + { + "word": "Schilderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "description;account", + "romanization": "Schilderung", + "example_sentence_native": "Seine Schilderung des Vorfalls war sehr detailliert.", + "example_sentence_english": "His description of the incident was very detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13338 + }, + { + "word": "Schildkröte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turtle;tortoise", + "romanization": "Schildkröte", + "example_sentence_native": "Die Schildkröte bewegt sich sehr langsam.", + "example_sentence_english": "The turtle moves very slowly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13339 + }, + { + "word": "Schlegel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mallet", + "romanization": "Schlegel", + "example_sentence_native": "Der Koch benutzte einen Schlegel, um das Fleisch zart zu klopfen.", + "example_sentence_english": "The cook used a mallet to tenderize the meat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13340 + }, + { + "word": "schmieden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forge", + "romanization": "schmieden", + "example_sentence_native": "Der Schmied schmiedet das Eisen.", + "example_sentence_english": "The blacksmith forges the iron.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13341 + }, + { + "word": "schnarchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to snore", + "romanization": "schnarchen", + "example_sentence_native": "Er schnarcht sehr laut.", + "example_sentence_english": "He snores very loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13342 + }, + { + "word": "Schwerkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravity", + "romanization": "Schwerkraft", + "example_sentence_native": "Die Schwerkraft hält uns auf der Erde.", + "example_sentence_english": "Gravity keeps us on Earth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13343 + }, + { + "word": "sensationell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensational", + "romanization": "sensationell", + "example_sentence_native": "Das war eine sensationelle Leistung.", + "example_sentence_english": "That was a sensational performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13344 + }, + { + "word": "Sicherheitsrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Security Council", + "romanization": "Sicherheitsrat", + "example_sentence_native": "Der UN-Sicherheitsrat traf sich, um die Krise zu besprechen.", + "example_sentence_english": "The UN Security Council met to discuss the crisis.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13345 + }, + { + "word": "Silicon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silicon", + "romanization": "Silicon", + "example_sentence_native": "Silicon wird oft in der Elektronik verwendet.", + "example_sentence_english": "Silicon is often used in electronics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13346 + }, + { + "word": "Spiritualität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirituality", + "romanization": "Spiritualität", + "example_sentence_native": "Viele Menschen suchen nach Spiritualität in ihrem Leben.", + "example_sentence_english": "Many people seek spirituality in their lives.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13347 + }, + { + "word": "Spätsommer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "late summer", + "romanization": "Spätsommer", + "example_sentence_native": "Der Spätsommer ist oft noch sehr warm.", + "example_sentence_english": "Late summer is often still very warm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13348 + }, + { + "word": "Staatsoberhaupt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "head of state", + "romanization": "Staatsoberhaupt", + "example_sentence_native": "Das Staatsoberhaupt besuchte die Vereinten Nationen.", + "example_sentence_english": "The head of state visited the United Nations.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13350 + }, + { + "word": "Staatsoper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "State Opera", + "romanization": "Staatsoper", + "example_sentence_native": "Wir haben Karten für die Staatsoper gekauft.", + "example_sentence_english": "We bought tickets for the State Opera.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13351 + }, + { + "word": "steuerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax-related", + "romanization": "steuerlich", + "example_sentence_native": "Das hat steuerliche Auswirkungen.", + "example_sentence_english": "That has tax implications.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13352 + }, + { + "word": "stricken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to knit", + "romanization": "stricken", + "example_sentence_native": "Meine Großmutter strickt gerne Schals.", + "example_sentence_english": "My grandmother likes to knit scarves.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13353 + }, + { + "word": "Stromnetz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power grid", + "romanization": "Stromnetz", + "example_sentence_native": "Ein Ausfall im Stromnetz verursachte einen Blackout.", + "example_sentence_english": "A failure in the power grid caused a blackout.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13354 + }, + { + "word": "störend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disturbing", + "romanization": "störend", + "example_sentence_native": "Der Lärm war sehr störend.", + "example_sentence_english": "The noise was very disturbing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13356 + }, + { + "word": "suggerieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suggest", + "romanization": "suggerieren", + "example_sentence_native": "Seine Worte suggerierten eine andere Bedeutung.", + "example_sentence_english": "His words suggested a different meaning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13357 + }, + { + "word": "Superheld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superhero", + "romanization": "Superheld", + "example_sentence_native": "Jeder Junge träumt davon, ein Superheld zu sein.", + "example_sentence_english": "Every boy dreams of being a superhero.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13358 + }, + { + "word": "Taucher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diver", + "romanization": "Taucher", + "example_sentence_native": "Der Taucher erkundete die Unterwasserwelt.", + "example_sentence_english": "The diver explored the underwater world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13361 + }, + { + "word": "therapeutisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "therapeutic", + "romanization": "therapeutisch", + "example_sentence_native": "Die Behandlung hatte eine therapeutische Wirkung.", + "example_sentence_english": "The treatment had a therapeutic effect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13362 + }, + { + "word": "Tiefpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "low point;nadir", + "romanization": "Tiefpunkt", + "example_sentence_native": "Das war der Tiefpunkt seiner Karriere.", + "example_sentence_english": "That was the low point of his career.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13363 + }, + { + "word": "Tierart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animal species", + "romanization": "Tierart", + "example_sentence_native": "Es gibt viele verschiedene Tierarten auf der Welt.", + "example_sentence_english": "There are many different animal species in the world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13364 + }, + { + "word": "Titelseite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "front page;title page", + "romanization": "Titelseite", + "example_sentence_native": "Die Nachricht war auf der Titelseite der Zeitung.", + "example_sentence_english": "The news was on the front page of the newspaper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13365 + }, + { + "word": "toben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rage;to romp", + "romanization": "toben", + "example_sentence_native": "Die Kinder toben im Garten.", + "example_sentence_english": "The children are romping in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13366 + }, + { + "word": "Torschütze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goal scorer", + "romanization": "Torschütze", + "example_sentence_native": "Der Torschütze wurde von den Fans gefeiert.", + "example_sentence_english": "The goal scorer was celebrated by the fans.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13367 + }, + { + "word": "Trauung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wedding ceremony", + "romanization": "Trauung", + "example_sentence_native": "Die Trauung fand in einer kleinen Kirche statt.", + "example_sentence_english": "The wedding ceremony took place in a small church.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13368 + }, + { + "word": "Tuberkulose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tuberculosis", + "romanization": "Tuberkulose", + "example_sentence_native": "Tuberkulose ist eine bakterielle Infektionskrankheit.", + "example_sentence_english": "Tuberculosis is a bacterial infectious disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13370 + }, + { + "word": "Umsatzsteuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "value-added tax (VAT);sales tax", + "romanization": "Umsatzsteuer", + "example_sentence_native": "Die Umsatzsteuer ist im Preis enthalten.", + "example_sentence_english": "The value-added tax is included in the price.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13371 + }, + { + "word": "unbestimmt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indefinite;undetermined", + "romanization": "unbestimmt", + "example_sentence_native": "Die Zukunft ist unbestimmt.", + "example_sentence_english": "The future is undetermined.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13372 + }, + { + "word": "uninteressant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "uninteresting", + "romanization": "uninteressant", + "example_sentence_native": "Das Buch war uninteressant.", + "example_sentence_english": "The book was uninteresting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13373 + }, + { + "word": "Unit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unit (e.g.;of measurement;a section)", + "romanization": "Unit", + "example_sentence_native": "Diese Unit behandelt das Thema Grammatik.", + "example_sentence_english": "This unit covers the topic of grammar.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13374 + }, + { + "word": "unpassend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inappropriate;unsuitable", + "romanization": "unpassend", + "example_sentence_native": "Seine Bemerkung war völlig unpassend.", + "example_sentence_english": "His remark was completely inappropriate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13375 + }, + { + "word": "unschlagbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbeatable", + "romanization": "unschlagbar", + "example_sentence_native": "Dieses Angebot ist unschlagbar.", + "example_sentence_english": "This offer is unbeatable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13376 + }, + { + "word": "unwirksam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ineffective", + "romanization": "unwirksam", + "example_sentence_native": "Das Medikament war leider unwirksam.", + "example_sentence_english": "Unfortunately, the medication was ineffective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13377 + }, + { + "word": "Vandalismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandalism", + "romanization": "Vandalismus", + "example_sentence_native": "Der Vandalismus verursachte großen Schaden.", + "example_sentence_english": "The vandalism caused great damage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13379 + }, + { + "word": "Verfolger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pursuer", + "romanization": "Verfolger", + "example_sentence_native": "Der Verfolger holte schnell auf.", + "example_sentence_english": "The pursuer quickly caught up.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13380 + }, + { + "word": "verkacken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess up (informal)", + "romanization": "verkacken", + "example_sentence_native": "Ich hoffe, ich werde die Prüfung nicht verkacken.", + "example_sentence_english": "I hope I won't mess up the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13381 + }, + { + "word": "verliebt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in love", + "romanization": "verliebt", + "example_sentence_native": "Sie ist verliebt in ihn.", + "example_sentence_english": "She is in love with him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13382 + }, + { + "word": "Vermietung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rental", + "romanization": "Vermietung", + "example_sentence_native": "Die Vermietung der Wohnung ist abgeschlossen.", + "example_sentence_english": "The rental of the apartment is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13383 + }, + { + "word": "Vertiefung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deepening", + "romanization": "Vertiefung", + "example_sentence_native": "Die Vertiefung des Themas ist wichtig.", + "example_sentence_english": "The deepening of the topic is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13385 + }, + { + "word": "Verwaltungsrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administrative board", + "romanization": "Verwaltungsrat", + "example_sentence_native": "Der Verwaltungsrat traf eine wichtige Entscheidung.", + "example_sentence_english": "The administrative board made an important decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13386 + }, + { + "word": "verzerren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distort", + "romanization": "verzerren", + "example_sentence_native": "Das Bild wurde durch die Hitze verzerrt.", + "example_sentence_english": "The image was distorted by the heat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13387 + }, + { + "word": "Vollzug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution", + "romanization": "Vollzug", + "example_sentence_native": "Der Vollzug des Urteils steht bevor.", + "example_sentence_english": "The execution of the judgment is imminent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13388 + }, + { + "word": "Vorhersage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forecast", + "romanization": "Vorhersage", + "example_sentence_native": "Die Wettervorhersage ist gut für morgen.", + "example_sentence_english": "The weather forecast is good for tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13389 + }, + { + "word": "Wertpapier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "security (financial)", + "romanization": "Wertpapier", + "example_sentence_native": "Er investiert in Wertpapiere.", + "example_sentence_english": "He invests in securities.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13393 + }, + { + "word": "Wettbewerbsfähigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "competitiveness", + "romanization": "Wettbewerbsfähigkeit", + "example_sentence_native": "Die Wettbewerbsfähigkeit des Unternehmens ist hoch.", + "example_sentence_english": "The competitiveness of the company is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13394 + }, + { + "word": "Wohlergehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-being", + "romanization": "Wohlergehen", + "example_sentence_native": "Ich wünsche dir alles Gute für dein Wohlergehen.", + "example_sentence_english": "I wish you all the best for your well-being.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13396 + }, + { + "word": "wohlhabend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wealthy", + "romanization": "wohlhabend", + "example_sentence_native": "Er ist eine sehr wohlhabende Person.", + "example_sentence_english": "He is a very wealthy person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13397 + }, + { + "word": "zutage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to light;to the fore", + "romanization": "zutage", + "example_sentence_native": "Die Wahrheit kam zutage.", + "example_sentence_english": "The truth came to light.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 13402 + }, + { + "word": "zweifelsfrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubtless;beyond doubt", + "romanization": "zweifelsfrei", + "example_sentence_native": "Seine Schuld war zweifelsfrei bewiesen.", + "example_sentence_english": "His guilt was proven beyond doubt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 13403 + }, + { + "word": "Zweitligist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "second division team (player)", + "romanization": "Zweitligist", + "example_sentence_native": "Der Zweitligist kämpfte um den Aufstieg.", + "example_sentence_english": "The second division team fought for promotion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13404 + }, + { + "word": "abtreten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to step down;to cede", + "romanization": "abtreten", + "example_sentence_native": "Der Präsident musste abtreten.", + "example_sentence_english": "The president had to step down.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13405 + }, + { + "word": "Amerikanerin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "American woman", + "romanization": "Amerikanerin", + "example_sentence_native": "Sie ist eine Amerikanerin.", + "example_sentence_english": "She is an American woman.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13408 + }, + { + "word": "Annexion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annexation", + "romanization": "Annexion", + "example_sentence_native": "Die Annexion des Gebiets führte zu Konflikten.", + "example_sentence_english": "The annexation of the territory led to conflicts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13409 + }, + { + "word": "Anschlussstelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junction;exit (motorway)", + "romanization": "Anschlussstelle", + "example_sentence_native": "Nehmen Sie die nächste Anschlussstelle.", + "example_sentence_english": "Take the next exit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13410 + }, + { + "word": "Arbeitszimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "study;home office", + "romanization": "Arbeitszimmer", + "example_sentence_native": "Mein Arbeitszimmer ist sehr gemütlich.", + "example_sentence_english": "My study is very cozy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13412 + }, + { + "word": "Arrangement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrangement;agreement", + "romanization": "Arrangement", + "example_sentence_native": "Wir haben ein gutes Arrangement getroffen.", + "example_sentence_english": "We made a good arrangement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13414 + }, + { + "word": "Astronaut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astronaut", + "romanization": "Astronaut", + "example_sentence_native": "Der Astronaut flog zum Mond.", + "example_sentence_english": "The astronaut flew to the moon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13415 + }, + { + "word": "Aufrechterhaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maintenance;upholding", + "romanization": "Aufrechterhaltung", + "example_sentence_native": "Die Aufrechterhaltung des Friedens ist wichtig.", + "example_sentence_english": "The maintenance of peace is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13416 + }, + { + "word": "Aufschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serve (tennis);surcharge;impact", + "romanization": "Aufschlag", + "example_sentence_native": "Der Tennisspieler hatte einen starken Aufschlag.", + "example_sentence_english": "The tennis player had a strong serve.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13417 + }, + { + "word": "Aufzählung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enumeration;list", + "romanization": "Aufzählung", + "example_sentence_native": "Bitte beachten Sie die folgende Aufzählung.", + "example_sentence_english": "Please note the following list.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13418 + }, + { + "word": "ausspielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to play out;to exploit;to play (a card)", + "romanization": "ausspielen", + "example_sentence_native": "Er versuchte, seine Vorteile auszuspielen.", + "example_sentence_english": "He tried to play out his advantages.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13419 + }, + { + "word": "Auslosung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draw;lottery", + "romanization": "Auslosung", + "example_sentence_native": "Die Auslosung der Gewinner findet morgen statt.", + "example_sentence_english": "The draw of the winners will take place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13420 + }, + { + "word": "Aussenbereich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outdoor area;exterior", + "romanization": "Aussenbereich", + "example_sentence_native": "Der Aussenbereich des Restaurants ist sehr gemütlich.", + "example_sentence_english": "The outdoor area of the restaurant is very cozy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13421 + }, + { + "word": "auswandern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to emigrate", + "romanization": "auswandern", + "example_sentence_native": "Viele Menschen träumen davon, auszuwandern.", + "example_sentence_english": "Many people dream of emigrating.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "wandern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13422 + }, + { + "word": "Auszubildende", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trainee;apprentice", + "romanization": "Auszubildende", + "example_sentence_native": "Die neue Auszubildende beginnt nächste Woche.", + "example_sentence_english": "The new trainee starts next week.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13423 + }, + { + "word": "Autohaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car dealership", + "romanization": "Autohaus", + "example_sentence_native": "Wir haben unser neues Auto im Autohaus gekauft.", + "example_sentence_english": "We bought our new car at the car dealership.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13424 + }, + { + "word": "bedeutsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significant;important", + "romanization": "bedeutsam", + "example_sentence_native": "Das war ein bedeutsamer Moment in der Geschichte.", + "example_sentence_english": "That was a significant moment in history.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13425 + }, + { + "word": "beidseitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bilateral;two-sided", + "romanization": "beidseitig", + "example_sentence_native": "Die Vereinbarung ist beidseitig vorteilhaft.", + "example_sentence_english": "The agreement is mutually beneficial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13426 + }, + { + "word": "beisammen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "together;gathered", + "romanization": "beisammen", + "example_sentence_native": "Wir sitzen gemütlich beisammen.", + "example_sentence_english": "We are sitting comfortably together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 13427 + }, + { + "word": "belügen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lie to (someone);to deceive", + "romanization": "belügen", + "example_sentence_native": "Du solltest mich nicht belügen.", + "example_sentence_english": "You shouldn't lie to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13428 + }, + { + "word": "Bestandsaufnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inventory;stocktaking;assessment", + "romanization": "Bestandsaufnahme", + "example_sentence_native": "Wir müssen eine Bestandsaufnahme der aktuellen Situation machen.", + "example_sentence_english": "We need to make an assessment of the current situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13430 + }, + { + "word": "Bewunderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admiration", + "romanization": "Bewunderung", + "example_sentence_native": "Sie blickte ihn mit Bewunderung an.", + "example_sentence_english": "She looked at him with admiration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13431 + }, + { + "word": "bewölkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloudy;overcast", + "romanization": "bewölkt", + "example_sentence_native": "Heute ist es bewölkt, aber es regnet nicht.", + "example_sentence_english": "Today it is cloudy, but it's not raining.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13432 + }, + { + "word": "Bilderbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "picture book", + "romanization": "Bilderbuch", + "example_sentence_native": "Mein Kind liebt dieses Bilderbuch.", + "example_sentence_english": "My child loves this picture book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13433 + }, + { + "word": "blanc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "white (often in specific phrases)", + "romanization": "blanc", + "example_sentence_native": "Er erhielt carte blanche für das Projekt.", + "example_sentence_english": "He received carte blanche for the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13435 + }, + { + "word": "brandenburgisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Brandenburgian (relating to Brandenburg)", + "romanization": "brandenburgisch", + "example_sentence_native": "Die brandenburgische Landschaft ist sehr schön.", + "example_sentence_english": "The Brandenburgian landscape is very beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13437 + }, + { + "word": "Bubble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bubble", + "romanization": "Bubble", + "example_sentence_native": "Er lebt in seiner eigenen kleinen Bubble.", + "example_sentence_english": "He lives in his own little bubble.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13438 + }, + { + "word": "Burka", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burqa", + "romanization": "Burka", + "example_sentence_native": "Das Tragen einer Burka ist in einigen Ländern umstritten.", + "example_sentence_english": "Wearing a burqa is controversial in some countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13439 + }, + { + "word": "Click", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "click", + "romanization": "Click", + "example_sentence_native": "Ein einziger Click genügt.", + "example_sentence_english": "A single click is enough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13441 + }, + { + "word": "Creek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creek", + "romanization": "Creek", + "example_sentence_native": "Der kleine Creek fließt durch den Wald.", + "example_sentence_english": "The small creek flows through the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13444 + }, + { + "word": "Crime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crime", + "romanization": "Crime", + "example_sentence_native": "Die Polizei untersucht den Crime.", + "example_sentence_english": "The police are investigating the crime.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13445 + }, + { + "word": "derb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coarse;crude;robust", + "romanization": "derb", + "example_sentence_native": "Er machte eine derbe Bemerkung.", + "example_sentence_english": "He made a crude remark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13447 + }, + { + "word": "differenziert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "differentiated;nuanced", + "romanization": "differenziert", + "example_sentence_native": "Sie gab eine sehr differenzierte Antwort.", + "example_sentence_english": "She gave a very nuanced answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13448 + }, + { + "word": "durchlesen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to read through", + "romanization": "durchlesen", + "example_sentence_native": "Ich muss den Bericht noch durchlesen.", + "example_sentence_english": "I still need to read through the report.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "lesen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13450 + }, + { + "word": "Eigenheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "own home;private house", + "romanization": "Eigenheim", + "example_sentence_native": "Viele träumen von einem Eigenheim.", + "example_sentence_english": "Many dream of their own home.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13452 + }, + { + "word": "eindringlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urgent;emphatic;penetrating", + "romanization": "eindringlich", + "example_sentence_native": "Er sprach mit eindringlicher Stimme.", + "example_sentence_english": "He spoke with an emphatic voice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13453 + }, + { + "word": "Einsparung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saving;economy", + "romanization": "Einsparung", + "example_sentence_native": "Die Firma plant große Einsparungen.", + "example_sentence_english": "The company plans large savings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13454 + }, + { + "word": "energisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetic;forceful", + "romanization": "energisch", + "example_sentence_native": "Sie reagierte energisch auf die Kritik.", + "example_sentence_english": "She reacted forcefully to the criticism.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13456 + }, + { + "word": "entlarven", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unmask;to expose", + "romanization": "entlarven", + "example_sentence_native": "Die Untersuchung konnte den Betrüger entlarven.", + "example_sentence_english": "The investigation could unmask the fraudster.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13457 + }, + { + "word": "erliegen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to succumb to;to fall victim to", + "romanization": "erliegen", + "example_sentence_native": "Er ist seinen Verletzungen erlegen.", + "example_sentence_english": "He succumbed to his injuries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13458 + }, + { + "word": "Erregung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excitement;agitation;arousal", + "romanization": "Erregung", + "example_sentence_native": "Die Nachricht sorgte für große Erregung.", + "example_sentence_english": "The news caused great excitement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13459 + }, + { + "word": "ertappen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to catch;to apprehend", + "romanization": "ertappen", + "example_sentence_native": "Er ließ sich beim Stehlen ertappen.", + "example_sentence_english": "He let himself be caught stealing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13460 + }, + { + "word": "Exzellenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excellence;Excellency", + "romanization": "Exzellenz", + "example_sentence_native": "Seine Exzellenz traf die Entscheidung.", + "example_sentence_english": "His Excellency made the decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13463 + }, + { + "word": "Fahrradfahrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cyclist;bicycle rider", + "romanization": "Fahrradfahrer", + "example_sentence_native": "Der Fahrradfahrer trug einen Helm.", + "example_sentence_english": "The cyclist wore a helmet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13464 + }, + { + "word": "Fahrwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing gear;chassis", + "romanization": "Fahrwerk", + "example_sentence_native": "Das Fahrwerk des Flugzeugs wurde ausgefahren.", + "example_sentence_english": "The aircraft's landing gear was extended.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13465 + }, + { + "word": "Fernverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long-distance traffic;transport", + "romanization": "Fernverkehr", + "example_sentence_native": "Der Fernverkehr ist oft überlastet.", + "example_sentence_english": "Long-distance traffic is often overloaded.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13466 + }, + { + "word": "Folklore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folklore", + "romanization": "Folklore", + "example_sentence_native": "Die lokale Folklore ist sehr reich.", + "example_sentence_english": "The local folklore is very rich.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13467 + }, + { + "word": "Germane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Germanic person;Teuton", + "romanization": "Germane", + "example_sentence_native": "Die Germanen waren ein altes Volk.", + "example_sentence_english": "The Germanic people were an ancient folk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13471 + }, + { + "word": "Gesundheitssystem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "healthcare system", + "romanization": "Gesundheitssystem", + "example_sentence_native": "Das Gesundheitssystem ist komplex.", + "example_sentence_english": "The healthcare system is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13472 + }, + { + "word": "gierig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greedy;avaricious", + "romanization": "gierig", + "example_sentence_native": "Er ist sehr gierig nach Geld.", + "example_sentence_english": "He is very greedy for money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13474 + }, + { + "word": "gleiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to glide;to slide", + "romanization": "gleiten", + "example_sentence_native": "Der Vogel gleitet durch die Luft.", + "example_sentence_english": "The bird glides through the air.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13475 + }, + { + "word": "googeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to google", + "romanization": "googeln", + "example_sentence_native": "Ich muss das googeln.", + "example_sentence_english": "I need to google that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13478 + }, + { + "word": "Gotteshaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "house of God;church", + "romanization": "Gotteshaus", + "example_sentence_native": "Das alte Gotteshaus steht auf dem Hügel.", + "example_sentence_english": "The old house of God stands on the hill.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13479 + }, + { + "word": "Hagel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hail", + "romanization": "Hagel", + "example_sentence_native": "Der Hagel hat die Ernte zerstört.", + "example_sentence_english": "The hail destroyed the harvest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13482 + }, + { + "word": "Hecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pike (fish)", + "romanization": "Hecht", + "example_sentence_native": "Der Angler fing einen großen Hecht.", + "example_sentence_english": "The angler caught a large pike.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13484 + }, + { + "word": "herauskommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come out;to emerge", + "romanization": "herauskommen", + "example_sentence_native": "Wann wird das neue Buch herauskommen?", + "example_sentence_english": "When will the new book come out?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13485 + }, + { + "word": "hinsehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look closely;to watch", + "romanization": "hinsehen", + "example_sentence_native": "Man muss genau hinsehen, um das Detail zu erkennen.", + "example_sentence_english": "One has to look closely to recognize the detail.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13488 + }, + { + "word": "Hinterhof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backyard;courtyard", + "romanization": "Hinterhof", + "example_sentence_native": "Die Kinder spielen im Hinterhof.", + "example_sentence_english": "The children are playing in the backyard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13489 + }, + { + "word": "Hippie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hippie", + "romanization": "Hippie", + "example_sentence_native": "Er sah aus wie ein alter Hippie.", + "example_sentence_english": "He looked like an old hippie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13490 + }, + { + "word": "hocken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to squat;to perch", + "romanization": "hocken", + "example_sentence_native": "Der Vogel hockte auf dem Ast.", + "example_sentence_english": "The bird perched on the branch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13491 + }, + { + "word": "Hosentasche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trouser pocket", + "romanization": "Hosentasche", + "example_sentence_native": "Er steckte seine Hände in die Hosentasche.", + "example_sentence_english": "He put his hands in his trouser pocket.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13493 + }, + { + "word": "Initiator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiator;originator", + "romanization": "Initiator", + "example_sentence_native": "Er war der Initiator des Projekts.", + "example_sentence_english": "He was the initiator of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13494 + }, + { + "word": "Intoleranz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intolerance", + "romanization": "Intoleranz", + "example_sentence_native": "Intoleranz gegenüber anderen Meinungen ist ein Problem.", + "example_sentence_english": "Intolerance towards other opinions is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13495 + }, + { + "word": "Islamismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamism", + "romanization": "Islamismus", + "example_sentence_native": "Der Kampf gegen den Islamismus ist eine globale Herausforderung.", + "example_sentence_english": "The fight against Islamism is a global challenge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13496 + }, + { + "word": "Jesuit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Jesuit", + "romanization": "Jesuit", + "example_sentence_native": "Er trat dem Orden der Jesuiten bei.", + "example_sentence_english": "He joined the order of the Jesuits.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13497 + }, + { + "word": "Kreatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creature", + "romanization": "Kreatur", + "example_sentence_native": "Jede Kreatur hat das Recht zu leben.", + "example_sentence_english": "Every creature has the right to live.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13499 + }, + { + "word": "kreieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to create", + "romanization": "kreieren", + "example_sentence_native": "Sie kreiert wunderschöne Kunstwerke.", + "example_sentence_english": "She creates beautiful artworks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13500 + }, + { + "word": "Kugelschreiber", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ballpoint pen", + "romanization": "Kugelschreiber", + "example_sentence_native": "Ich brauche einen Kugelschreiber, um das zu unterschreiben.", + "example_sentence_english": "I need a ballpoint pen to sign that.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13501 + }, + { + "word": "Landesstrasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state road", + "romanization": "Landesstrasse", + "example_sentence_native": "Die Landesstrasse führt durch kleine Dörfer.", + "example_sentence_english": "The state road leads through small villages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13502 + }, + { + "word": "Lobbyist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lobbyist", + "romanization": "Lobbyist", + "example_sentence_native": "Der Lobbyist vertritt die Interessen der Industrie.", + "example_sentence_english": "The lobbyist represents the interests of the industry.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13504 + }, + { + "word": "Locke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curl", + "romanization": "Locke", + "example_sentence_native": "Sie hat schöne blonde Locken.", + "example_sentence_english": "She has beautiful blonde curls.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13505 + }, + { + "word": "Machenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "machination", + "romanization": "Machenschaft", + "example_sentence_native": "Die politischen Machenschaften wurden aufgedeckt.", + "example_sentence_english": "The political machinations were uncovered.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13509 + }, + { + "word": "Magister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Master (academic degree)", + "romanization": "Magister", + "example_sentence_native": "Er hat seinen Magister in Philosophie gemacht.", + "example_sentence_english": "He completed his Master's degree in philosophy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13510 + }, + { + "word": "Magnet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magnet", + "romanization": "Magnet", + "example_sentence_native": "Der Magnet zieht das Metall an.", + "example_sentence_english": "The magnet attracts the metal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13511 + }, + { + "word": "Malaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "malaria", + "romanization": "Malaria", + "example_sentence_native": "In einigen tropischen Gebieten ist Malaria immer noch eine Gefahr.", + "example_sentence_english": "In some tropical areas, malaria is still a danger.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13512 + }, + { + "word": "Mandel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "almond", + "romanization": "Mandel", + "example_sentence_native": "Ich mag Schokolade mit ganzen Mandeln.", + "example_sentence_english": "I like chocolate with whole almonds.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13513 + }, + { + "word": "Maskottchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mascot", + "romanization": "Maskottchen", + "example_sentence_native": "Das Maskottchen des Teams ist ein Bär.", + "example_sentence_english": "The team's mascot is a bear.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13515 + }, + { + "word": "Menschenwürde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "human dignity", + "romanization": "Menschenwürde", + "example_sentence_native": "Die Menschenwürde ist unantastbar.", + "example_sentence_english": "Human dignity is inviolable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13516 + }, + { + "word": "Mietwagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rental car", + "romanization": "Mietwagen", + "example_sentence_native": "Wir haben einen Mietwagen für unsere Reise gebucht.", + "example_sentence_english": "We booked a rental car for our trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13518 + }, + { + "word": "Mitbegründer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-founder", + "romanization": "Mitbegründer", + "example_sentence_native": "Er ist der Mitbegründer des Unternehmens.", + "example_sentence_english": "He is the co-founder of the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13519 + }, + { + "word": "Mol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mole (unit of substance)", + "romanization": "Mol", + "example_sentence_native": "Ein Mol Wasserstoff hat eine bestimmte Masse.", + "example_sentence_english": "One mole of hydrogen has a specific mass.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13521 + }, + { + "word": "Mosaik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosaic", + "romanization": "Mosaik", + "example_sentence_native": "Das Mosaik an der Wand ist sehr schön.", + "example_sentence_english": "The mosaic on the wall is very beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13523 + }, + { + "word": "nachgeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give in;to yield", + "romanization": "nachgeben", + "example_sentence_native": "Er wollte nicht nachgeben und blieb bei seiner Meinung.", + "example_sentence_english": "He didn't want to give in and stuck to his opinion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13526 + }, + { + "word": "Natura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nature (often in 'in kind')", + "romanization": "Natura", + "example_sentence_native": "Die Zahlung erfolgte in natura, nicht in Geld.", + "example_sentence_english": "The payment was made in kind, not in money.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13528 + }, + { + "word": "Ode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ode", + "romanization": "Ode", + "example_sentence_native": "Die Ode an die Freude ist sehr bekannt.", + "example_sentence_english": "The Ode to Joy is very well known.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13530 + }, + { + "word": "Olive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "olive", + "romanization": "Olive", + "example_sentence_native": "Ich mag grüne Oliven.", + "example_sentence_english": "I like green olives.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13531 + }, + { + "word": "Peak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peak", + "romanization": "Peak", + "example_sentence_native": "Der Peak der Infektionswelle wird nächste Woche erwartet.", + "example_sentence_english": "The peak of the infection wave is expected next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13533 + }, + { + "word": "personell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "staffing-related;in terms of personnel", + "romanization": "personell", + "example_sentence_native": "Wir haben personelle Engpässe.", + "example_sentence_english": "We have staffing shortages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13534 + }, + { + "word": "Pfiff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whistle;trick;knack", + "romanization": "Pfiff", + "example_sentence_native": "Der Schiedsrichter gab einen lauten Pfiff.", + "example_sentence_english": "The referee gave a loud whistle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13535 + }, + { + "word": "Pforte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gate;portal;small door", + "romanization": "Pforte", + "example_sentence_native": "Er klopfte an die schwere Pforte.", + "example_sentence_english": "He knocked on the heavy gate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13536 + }, + { + "word": "Plakette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaque;badge;sticker", + "romanization": "Plakette", + "example_sentence_native": "Das Auto braucht eine Umweltplakette.", + "example_sentence_english": "The car needs an environmental sticker.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13538 + }, + { + "word": "Prise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pinch (of salt)", + "romanization": "Prise", + "example_sentence_native": "Gib eine Prise Salz in die Suppe.", + "example_sentence_english": "Add a pinch of salt to the soup.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13544 + }, + { + "word": "proportional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportional", + "romanization": "proportional", + "example_sentence_native": "Die Kosten sind proportional zum Verbrauch.", + "example_sentence_english": "The costs are proportional to the consumption.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13545 + }, + { + "word": "Rechtsextremist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right-wing extremist", + "romanization": "Rechtsextremist", + "example_sentence_native": "Die Polizei verhaftete einen Rechtsextremisten.", + "example_sentence_english": "The police arrested a right-wing extremist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13547 + }, + { + "word": "Regelwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set of rules;regulations", + "romanization": "Regelwerk", + "example_sentence_native": "Das Regelwerk muss überarbeitet werden.", + "example_sentence_english": "The set of rules must be revised.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13549 + }, + { + "word": "Regierungsbezirk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administrative district;governmental district", + "romanization": "Regierungsbezirk", + "example_sentence_native": "Bayern ist in mehrere Regierungsbezirke unterteilt.", + "example_sentence_english": "Bavaria is divided into several administrative districts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13550 + }, + { + "word": "romanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Romanesque;Romance (languages)", + "romanization": "romanisch", + "example_sentence_native": "Französisch ist eine romanische Sprache.", + "example_sentence_english": "French is a Romance language.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13553 + }, + { + "word": "Rubin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruby", + "romanization": "Rubin", + "example_sentence_native": "Der Ring ist mit einem Rubin besetzt.", + "example_sentence_english": "The ring is set with a ruby.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13554 + }, + { + "word": "Rumäne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Romanian (person)", + "romanization": "Rumäne", + "example_sentence_native": "Er ist ein Rumäne.", + "example_sentence_english": "He is a Romanian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13555 + }, + { + "word": "Rundfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "round trip;tour", + "romanization": "Rundfahrt", + "example_sentence_native": "Wir machten eine Rundfahrt durch die Stadt.", + "example_sentence_english": "We took a tour through the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13556 + }, + { + "word": "scannen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scan", + "romanization": "scannen", + "example_sentence_native": "Kannst du das Dokument bitte scannen?", + "example_sentence_english": "Can you please scan the document?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13560 + }, + { + "word": "Schaufenster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shop window", + "romanization": "Schaufenster", + "example_sentence_native": "Das Schaufenster war festlich dekoriert.", + "example_sentence_english": "The shop window was festively decorated.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13562 + }, + { + "word": "Schenkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thigh", + "romanization": "Schenkel", + "example_sentence_native": "Er spürte einen Schmerz im Schenkel.", + "example_sentence_english": "He felt a pain in his thigh.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13563 + }, + { + "word": "Schifffahrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipping", + "romanization": "Schifffahrt", + "example_sentence_native": "Die Schifffahrt auf dem Fluss ist im Winter eingestellt.", + "example_sentence_english": "Shipping on the river is suspended in winter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13564 + }, + { + "word": "serbisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Serbian", + "romanization": "serbisch", + "example_sentence_native": "Sie spricht fließend Serbisch.", + "example_sentence_english": "She speaks fluent Serbian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13566 + }, + { + "word": "Serum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serum", + "romanization": "Serum", + "example_sentence_native": "Das Serum wurde zur Analyse ins Labor geschickt.", + "example_sentence_english": "The serum was sent to the lab for analysis.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13568 + }, + { + "word": "Sheriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheriff", + "romanization": "Sheriff", + "example_sentence_native": "Der Sheriff ritt in die Stadt.", + "example_sentence_english": "The sheriff rode into town.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13569 + }, + { + "word": "Sketch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sketch", + "romanization": "Sketch", + "example_sentence_native": "Der Sketch war sehr lustig.", + "example_sentence_english": "The sketch was very funny.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13571 + }, + { + "word": "Sommerfest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "summer festival", + "romanization": "Sommerfest", + "example_sentence_native": "Wir gehen dieses Wochenende zum Sommerfest.", + "example_sentence_english": "We are going to the summer festival this weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13573 + }, + { + "word": "Sonderpreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "special price", + "romanization": "Sonderpreis", + "example_sentence_native": "Dieses Produkt ist heute zum Sonderpreis erhältlich.", + "example_sentence_english": "This product is available at a special price today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13574 + }, + { + "word": "Spinat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spinach", + "romanization": "Spinat", + "example_sentence_native": "Ich esse gerne Spinat mit Kartoffeln.", + "example_sentence_english": "I like to eat spinach with potatoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13575 + }, + { + "word": "stemmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to brace", + "romanization": "stemmen", + "example_sentence_native": "Er musste sich gegen den Wind stemmen.", + "example_sentence_english": "He had to brace himself against the wind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13576 + }, + { + "word": "Steuereinnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax revenue", + "romanization": "Steuereinnahme", + "example_sentence_native": "Die Steuereinnahmen sind in diesem Quartal gestiegen.", + "example_sentence_english": "Tax revenues have increased this quarter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13577 + }, + { + "word": "Stickstoff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nitrogen", + "romanization": "Stickstoff", + "example_sentence_native": "Stickstoff ist ein wichtiger Bestandteil der Luft.", + "example_sentence_english": "Nitrogen is an important component of air.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13578 + }, + { + "word": "strahlend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radiant", + "romanization": "strahlend", + "example_sentence_native": "Sie hatte ein strahlendes Lächeln.", + "example_sentence_english": "She had a radiant smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13579 + }, + { + "word": "Strassenbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "road construction", + "romanization": "Strassenbau", + "example_sentence_native": "Der Strassenbau ist ein wichtiges Infrastrukturprojekt.", + "example_sentence_english": "Road construction is an important infrastructure project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13580 + }, + { + "word": "stöhnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to groan;to moan", + "romanization": "stöhnen", + "example_sentence_native": "Er begann vor Schmerz zu stöhnen.", + "example_sentence_english": "He began to groan in pain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13582 + }, + { + "word": "Symphonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symphony", + "romanization": "Symphonie", + "example_sentence_native": "Die Neunte Symphonie von Beethoven ist sehr bekannt.", + "example_sentence_english": "Beethoven's Ninth Symphony is very famous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13584 + }, + { + "word": "Totschlag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manslaughter", + "romanization": "Totschlag", + "example_sentence_native": "Er wurde wegen Totschlags verurteilt.", + "example_sentence_english": "He was convicted of manslaughter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13588 + }, + { + "word": "Trail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trail;path", + "romanization": "Trail", + "example_sentence_native": "Wir folgten dem schmalen Trail durch den Wald.", + "example_sentence_english": "We followed the narrow trail through the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13589 + }, + { + "word": "treibend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "driving;propelling;drifting", + "romanization": "treibend", + "example_sentence_native": "Die treibende Kraft hinter dem Projekt war seine Leidenschaft.", + "example_sentence_english": "The driving force behind the project was his passion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13590 + }, + { + "word": "Trophäe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trophy", + "romanization": "Trophäe", + "example_sentence_native": "Er gewann eine goldene Trophäe.", + "example_sentence_english": "He won a golden trophy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13591 + }, + { + "word": "ultimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimate", + "romanization": "ultimate", + "example_sentence_native": "Das ist die ultimate Lösung für unser Problem.", + "example_sentence_english": "That is the ultimate solution to our problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13593 + }, + { + "word": "umgangssprachlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colloquial;informal", + "romanization": "umgangssprachlich", + "example_sentence_native": "Dieser Ausdruck ist umgangssprachlich.", + "example_sentence_english": "This expression is colloquial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13594 + }, + { + "word": "unfreundlich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unfriendly;unkind", + "romanization": "unfreundlich", + "example_sentence_native": "Er war sehr unfreundlich zu mir.", + "example_sentence_english": "He was very unfriendly to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13595 + }, + { + "word": "Vase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vase", + "romanization": "Vase", + "example_sentence_native": "Die Blumen stehen in der Vase.", + "example_sentence_english": "The flowers are in the vase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13596 + }, + { + "word": "Vene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vein", + "romanization": "Vene", + "example_sentence_native": "Das Blut fließt durch die Vene zurück zum Herzen.", + "example_sentence_english": "The blood flows through the vein back to the heart.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13597 + }, + { + "word": "verdichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condense;to compact;to densify", + "romanization": "verdichten", + "example_sentence_native": "Der Schnee verdichtet sich unter dem Druck.", + "example_sentence_english": "The snow compacts under the pressure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13598 + }, + { + "word": "verkleinern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce;to shrink;to make smaller", + "romanization": "verkleinern", + "example_sentence_native": "Sie müssen das Bild verkleinern, damit es passt.", + "example_sentence_english": "You need to reduce the image so it fits.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13599 + }, + { + "word": "Verlagerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relocation;shift", + "romanization": "Verlagerung", + "example_sentence_native": "Die Verlagerung der Produktion ins Ausland war eine schwierige Entscheidung.", + "example_sentence_english": "The relocation of production abroad was a difficult decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13600 + }, + { + "word": "Verzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delay;default", + "romanization": "Verzug", + "example_sentence_native": "Bei Zahlungsverzug fallen zusätzliche Gebühren an.", + "example_sentence_english": "In case of payment default, additional fees apply.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13601 + }, + { + "word": "Waschbecken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink;washbasin", + "romanization": "Waschbecken", + "example_sentence_native": "Das Waschbecken im Badezimmer ist verstopft.", + "example_sentence_english": "The sink in the bathroom is clogged.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13602 + }, + { + "word": "Weltkulturerbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "World Heritage Site", + "romanization": "Weltkulturerbe", + "example_sentence_native": "Die Wartburg ist ein bekanntes Weltkulturerbe in Deutschland.", + "example_sentence_english": "The Wartburg is a famous World Heritage Site in Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13604 + }, + { + "word": "Wiedergutmachung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reparation;restitution", + "romanization": "Wiedergutmachung", + "example_sentence_native": "Die Regierung leistete Wiedergutmachung für die Opfer.", + "example_sentence_english": "The government provided reparations for the victims.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13605 + }, + { + "word": "Windenergie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wind energy", + "romanization": "Windenergie", + "example_sentence_native": "Windenergie ist eine wichtige Quelle erneuerbarer Energie.", + "example_sentence_english": "Wind energy is an important source of renewable energy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13606 + }, + { + "word": "Zeche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mine;colliery;bill;tab", + "romanization": "Zeche", + "example_sentence_native": "Die alte Zeche ist heute ein Museum.", + "example_sentence_english": "The old mine is a museum today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13609 + }, + { + "word": "zurechnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attribute;assign", + "romanization": "zurechnen", + "example_sentence_native": "Man kann ihm diese Tat nicht zurechnen.", + "example_sentence_english": "One cannot attribute this act to him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "rechnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13610 + }, + { + "word": "zusammenschließen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merge;unite;join forces", + "romanization": "zusammenschließen", + "example_sentence_native": "Die beiden Firmen wollen sich zusammenschließen.", + "example_sentence_english": "The two companies want to merge.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "schließen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13611 + }, + { + "word": "überbieten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outbid;surpass", + "romanization": "überbieten", + "example_sentence_native": "Er konnte das Angebot des Konkurrenten überbieten.", + "example_sentence_english": "He was able to outbid the competitor's offer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13612 + }, + { + "word": "überfluten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flood;inundate", + "romanization": "überfluten", + "example_sentence_native": "Der starke Regen hat die Straßen überflutet.", + "example_sentence_english": "The heavy rain has flooded the streets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13613 + }, + { + "word": "überlasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overload;overburden", + "romanization": "überlasten", + "example_sentence_native": "Man sollte das Stromnetz nicht überlasten.", + "example_sentence_english": "One should not overload the power grid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13614 + }, + { + "word": "Überschwemmung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flood;inundation", + "romanization": "Überschwemmung", + "example_sentence_native": "Nach dem Sturm gab es eine große Überschwemmung.", + "example_sentence_english": "After the storm, there was a big flood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13615 + }, + { + "word": "überspringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skip;jump over", + "romanization": "überspringen", + "example_sentence_native": "Er wollte die schwierige Passage überspringen.", + "example_sentence_english": "He wanted to skip the difficult passage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13616 + }, + { + "word": "Ableitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derivation;derivative", + "romanization": "Ableitung", + "example_sentence_native": "Die Ableitung einer Funktion ist ein wichtiges Konzept in der Mathematik.", + "example_sentence_english": "The derivative of a function is an important concept in mathematics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13617 + }, + { + "word": "abschrecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deter;scare off", + "romanization": "abschrecken", + "example_sentence_native": "Die hohen Preise schrecken viele Kunden ab.", + "example_sentence_english": "The high prices deter many customers.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schrecken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13618 + }, + { + "word": "allergisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allergic", + "romanization": "allergisch", + "example_sentence_native": "Ich bin allergisch gegen Nüsse.", + "example_sentence_english": "I am allergic to nuts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13619 + }, + { + "word": "allermeist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most of all", + "romanization": "allermeist", + "example_sentence_native": "Das allermeiste davon ist recycelbar.", + "example_sentence_english": "Most of it is recyclable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13620 + }, + { + "word": "alpin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alpine", + "romanization": "alpin", + "example_sentence_native": "Er liebt den alpinen Sport.", + "example_sentence_english": "He loves alpine sports.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13621 + }, + { + "word": "Amoklauf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rampage", + "romanization": "Amoklauf", + "example_sentence_native": "Die Polizei verhinderte einen Amoklauf.", + "example_sentence_english": "The police prevented a rampage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13622 + }, + { + "word": "Anarchie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anarchy", + "romanization": "Anarchie", + "example_sentence_native": "Nach dem Sturz der Regierung herrschte Anarchie.", + "example_sentence_english": "After the fall of the government, anarchy reigned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13623 + }, + { + "word": "archäologisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeological", + "romanization": "archäologisch", + "example_sentence_native": "Sie machten eine wichtige archäologische Entdeckung.", + "example_sentence_english": "They made an important archaeological discovery.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13626 + }, + { + "word": "Aroma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aroma;flavor", + "romanization": "Aroma", + "example_sentence_native": "Der Kaffee hat ein wunderbares Aroma.", + "example_sentence_english": "The coffee has a wonderful aroma.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13628 + }, + { + "word": "artig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "well-behaved;polite", + "romanization": "artig", + "example_sentence_native": "Das Kind war sehr artig.", + "example_sentence_english": "The child was very well-behaved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjektiv", + "word_frequency": 13629 + }, + { + "word": "aufarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to process;to rework;to restore", + "romanization": "aufarbeiten", + "example_sentence_native": "Wir müssen die alten Dokumente aufarbeiten.", + "example_sentence_english": "We need to process the old documents.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13630 + }, + { + "word": "Ausnahmezustand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state of emergency", + "romanization": "Ausnahmezustand", + "example_sentence_native": "Die Regierung rief den Ausnahmezustand aus.", + "example_sentence_english": "The government declared a state of emergency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13631 + }, + { + "word": "Avatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avatar", + "romanization": "Avatar", + "example_sentence_native": "Sie hat einen neuen Avatar für ihr Profil erstellt.", + "example_sentence_english": "She created a new avatar for her profile.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13634 + }, + { + "word": "Bankrott", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy", + "romanization": "Bankrott", + "example_sentence_native": "Das Unternehmen stand kurz vor dem Bankrott.", + "example_sentence_english": "The company was on the verge of bankruptcy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13636 + }, + { + "word": "beige", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beige", + "romanization": "beige", + "example_sentence_native": "Sie trägt einen beigen Mantel.", + "example_sentence_english": "She is wearing a beige coat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13640 + }, + { + "word": "Bescheidenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modesty;humility", + "romanization": "Bescheidenheit", + "example_sentence_native": "Ihre Bescheidenheit ist bewundernswert.", + "example_sentence_english": "Her modesty is admirable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13642 + }, + { + "word": "besorgt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worried;concerned", + "romanization": "besorgt", + "example_sentence_native": "Er ist sehr besorgt um seine Familie.", + "example_sentence_english": "He is very worried about his family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13643 + }, + { + "word": "bestärken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strengthen;to reinforce", + "romanization": "bestärken", + "example_sentence_native": "Die Ergebnisse bestärken unsere Hypothese.", + "example_sentence_english": "The results strengthen our hypothesis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13644 + }, + { + "word": "Bettwäsche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bed linen", + "romanization": "Bettwäsche", + "example_sentence_native": "Ich muss die Bettwäsche wechseln.", + "example_sentence_english": "I need to change the bed linen.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13645 + }, + { + "word": "Beweismittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evidence;exhibit", + "romanization": "Beweismittel", + "example_sentence_native": "Das Beweismittel wurde vor Gericht vorgelegt.", + "example_sentence_english": "The evidence was presented in court.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13646 + }, + { + "word": "blenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blind;to dazzle", + "romanization": "blenden", + "example_sentence_native": "Die Sonne blendet mich.", + "example_sentence_english": "The sun is blinding me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13648 + }, + { + "word": "Bundesagentur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal agency", + "romanization": "Bundesagentur", + "example_sentence_native": "Die Bundesagentur für Arbeit ist zuständig für Arbeitsvermittlung.", + "example_sentence_english": "The Federal Employment Agency is responsible for job placement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13649 + }, + { + "word": "Bundesligist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bundesliga club;team", + "romanization": "Bundesligist", + "example_sentence_native": "Der Verein ist ein bekannter Bundesligist.", + "example_sentence_english": "The club is a well-known Bundesliga team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13650 + }, + { + "word": "Bureau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "office;bureau", + "romanization": "Bureau", + "example_sentence_native": "Das Bureau ist bis 17 Uhr geöffnet.", + "example_sentence_english": "The office is open until 5 PM.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13651 + }, + { + "word": "Bürgerinitiative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citizens' initiative", + "romanization": "Bürgerinitiative", + "example_sentence_native": "Die Bürgerinitiative kämpft für den Erhalt des Parks.", + "example_sentence_english": "The citizens' initiative is fighting for the preservation of the park.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13652 + }, + { + "word": "Charta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charter", + "romanization": "Charta", + "example_sentence_native": "Die Charta der Vereinten Nationen wurde 1945 unterzeichnet.", + "example_sentence_english": "The Charter of the United Nations was signed in 1945.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13655 + }, + { + "word": "Chefarzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chief physician;head doctor", + "romanization": "Chefarzt", + "example_sentence_native": "Der Chefarzt hat die Operation durchgeführt.", + "example_sentence_english": "The chief physician performed the operation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13657 + }, + { + "word": "civil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil", + "romanization": "civil", + "example_sentence_native": "Er zeigte ein sehr ziviles Verhalten.", + "example_sentence_english": "He showed very civil behavior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13659 + }, + { + "word": "Distribution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution", + "romanization": "Distribution", + "example_sentence_native": "Die Distribution der Produkte ist effizient.", + "example_sentence_english": "The distribution of the products is efficient.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13668 + }, + { + "word": "Eleganz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elegance", + "romanization": "Eleganz", + "example_sentence_native": "Ihre Eleganz ist beeindruckend.", + "example_sentence_english": "Her elegance is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13670 + }, + { + "word": "Entgelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remuneration;fee", + "romanization": "Entgelt", + "example_sentence_native": "Das Entgelt für die Dienstleistung ist fair.", + "example_sentence_english": "The remuneration for the service is fair.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13672 + }, + { + "word": "erkundigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inquire;to ask", + "romanization": "erkundigen", + "example_sentence_native": "Ich werde mich nach den Preisen erkundigen.", + "example_sentence_english": "I will inquire about the prices.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13674 + }, + { + "word": "exemplarisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemplary", + "romanization": "exemplarisch", + "example_sentence_native": "Das ist ein exemplarischer Fall.", + "example_sentence_english": "That is an exemplary case.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13676 + }, + { + "word": "Festnetz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landline;fixed network", + "romanization": "Festnetz", + "example_sentence_native": "Ich rufe dich auf dem Festnetz an.", + "example_sentence_english": "I'll call you on the landline.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13677 + }, + { + "word": "Forschungsergebnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research result", + "romanization": "Forschungsergebnis", + "example_sentence_native": "Das Forschungsergebnis war überraschend.", + "example_sentence_english": "The research result was surprising.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13678 + }, + { + "word": "Gebrüder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brothers (often in company names)", + "romanization": "Gebrüder", + "example_sentence_native": "Die Gebrüder Grimm waren berühmte Märchensammler.", + "example_sentence_english": "The Brothers Grimm were famous fairy tale collectors.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13680 + }, + { + "word": "Gebäck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastry;baked goods", + "romanization": "Gebäck", + "example_sentence_native": "Zum Frühstück gab es frisches Gebäck.", + "example_sentence_english": "For breakfast there were fresh baked goods.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13681 + }, + { + "word": "gebürtig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native (born in)", + "romanization": "gebürtig", + "example_sentence_native": "Sie ist gebürtig aus Berlin.", + "example_sentence_english": "She is a native of Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13682 + }, + { + "word": "gedanklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mental;conceptual", + "romanization": "gedanklich", + "example_sentence_native": "Das ist eine gedankliche Herausforderung.", + "example_sentence_english": "That is a mental challenge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13683 + }, + { + "word": "Geflügel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poultry", + "romanization": "Geflügel", + "example_sentence_native": "Wir essen oft Geflügel zum Abendessen.", + "example_sentence_english": "We often eat poultry for dinner.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13684 + }, + { + "word": "gehalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restrained;reserved;held", + "romanization": "gehalten", + "example_sentence_native": "Die Rede war gut gehalten.", + "example_sentence_english": "The speech was well delivered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13685 + }, + { + "word": "Geldwäsche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "money laundering", + "romanization": "Geldwäsche", + "example_sentence_native": "Die Behörden ermitteln wegen Geldwäsche.", + "example_sentence_english": "The authorities are investigating money laundering.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13686 + }, + { + "word": "Geschwätz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chatter;gossip;nonsense", + "romanization": "Geschwätz", + "example_sentence_native": "Ich habe keine Zeit für dieses Geschwätz.", + "example_sentence_english": "I don't have time for this chatter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13688 + }, + { + "word": "Gespenst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ghost;specter", + "romanization": "Gespenst", + "example_sentence_native": "In alten Schlössern soll es oft Gespenster geben.", + "example_sentence_english": "There are often said to be ghosts in old castles.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13689 + }, + { + "word": "stolpern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stumble;to trip", + "romanization": "stolpern", + "example_sentence_native": "Er stolperte über einen Stein.", + "example_sentence_english": "He stumbled over a stone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13690 + }, + { + "word": "Gewerkschafter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade unionist;union member", + "romanization": "Gewerkschafter", + "example_sentence_native": "Die Gewerkschafter fordern höhere Löhne.", + "example_sentence_english": "The trade unionists demand higher wages.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13691 + }, + { + "word": "gleichwertig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalent;of equal value", + "romanization": "gleichwertig", + "example_sentence_native": "Die beiden Optionen sind gleichwertig.", + "example_sentence_english": "The two options are equivalent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13693 + }, + { + "word": "Hanf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hemp", + "romanization": "Hanf", + "example_sentence_native": "Aus Hanf kann man Seile herstellen.", + "example_sentence_english": "You can make ropes from hemp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13695 + }, + { + "word": "hautnah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "up close;skin-deep;very close", + "romanization": "hautnah", + "example_sentence_native": "Wir haben das Konzert hautnah erlebt.", + "example_sentence_english": "We experienced the concert up close.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13697 + }, + { + "word": "hektisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hectic;frantic", + "romanization": "hektisch", + "example_sentence_native": "Die Atmosphäre im Büro war sehr hektisch.", + "example_sentence_english": "The atmosphere in the office was very hectic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13698 + }, + { + "word": "hinausgehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go out;to exceed", + "romanization": "hinausgehen", + "example_sentence_native": "Er muss hinausgehen, um frische Luft zu schnappen.", + "example_sentence_english": "He has to go out to get some fresh air.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hinaus", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13699 + }, + { + "word": "hüpfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hop;to jump", + "romanization": "hüpfen", + "example_sentence_native": "Die Kinder hüpfen vor Freude.", + "example_sentence_english": "The children hop with joy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13703 + }, + { + "word": "Idealfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ideal case", + "romanization": "Idealfall", + "example_sentence_native": "Im Idealfall ist das Projekt nächste Woche fertig.", + "example_sentence_english": "In the ideal case, the project will be finished next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13704 + }, + { + "word": "Ikone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "icon", + "romanization": "Ikone", + "example_sentence_native": "Sie ist eine Mode-Ikone.", + "example_sentence_english": "She is a fashion icon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13706 + }, + { + "word": "Impact", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impact", + "romanization": "Impact", + "example_sentence_native": "Der Klimawandel hat einen großen Impact auf die Umwelt.", + "example_sentence_english": "Climate change has a big impact on the environment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13707 + }, + { + "word": "Impressum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprint;legal notice", + "romanization": "Impressum", + "example_sentence_native": "Jede Webseite in Deutschland muss ein Impressum haben.", + "example_sentence_english": "Every website in Germany must have a legal notice.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13708 + }, + { + "word": "inhaftieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imprison;to incarcerate", + "romanization": "inhaftieren", + "example_sentence_native": "Der Verdächtige wurde inhaftiert.", + "example_sentence_english": "The suspect was imprisoned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13709 + }, + { + "word": "Initiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initial (letter)", + "romanization": "Initiale", + "example_sentence_native": "Bitte setzen Sie Ihre Initiale neben die Änderung.", + "example_sentence_english": "Please put your initial next to the change.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13710 + }, + { + "word": "Innenpolitik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domestic policy", + "romanization": "Innenpolitik", + "example_sentence_native": "Die Innenpolitik ist ein wichtiges Thema in den Nachrichten.", + "example_sentence_english": "Domestic policy is an important topic in the news.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13711 + }, + { + "word": "Instinkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinct", + "romanization": "Instinkt", + "example_sentence_native": "Tiere handeln oft nach Instinkt.", + "example_sentence_english": "Animals often act on instinct.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13712 + }, + { + "word": "Irrsinn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "madness;insanity", + "romanization": "Irrsinn", + "example_sentence_native": "Das ist doch der reine Irrsinn!", + "example_sentence_english": "That's pure madness!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13713 + }, + { + "word": "Islamisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamization", + "romanization": "Islamisierung", + "example_sentence_native": "Das Konzept der Islamisierung wird oft diskutiert.", + "example_sentence_english": "The concept of Islamization is often discussed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13714 + }, + { + "word": "Jam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jam (session)", + "romanization": "Jam", + "example_sentence_native": "Die Band hatte eine tolle Jam-Session.", + "example_sentence_english": "The band had a great jam session.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13715 + }, + { + "word": "Judo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "judo", + "romanization": "Judo", + "example_sentence_native": "Er trainiert seit Jahren Judo.", + "example_sentence_english": "He has been training judo for years.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13719 + }, + { + "word": "Kassiererin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cashier (female)", + "romanization": "Kassiererin", + "example_sentence_native": "Die Kassiererin hat meine Einkäufe gescannt.", + "example_sentence_english": "The cashier scanned my groceries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13721 + }, + { + "word": "Klägerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plaintiff (female)", + "romanization": "Klägerin", + "example_sentence_native": "Die Klägerin forderte Schadensersatz vor Gericht.", + "example_sentence_english": "The plaintiff demanded damages in court.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13723 + }, + { + "word": "knallhart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tough;uncompromising", + "romanization": "knallhart", + "example_sentence_native": "Er traf eine knallharte Entscheidung.", + "example_sentence_english": "He made a tough decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13724 + }, + { + "word": "Koffein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caffeine", + "romanization": "Koffein", + "example_sentence_native": "Kaffee enthält Koffein.", + "example_sentence_english": "Coffee contains caffeine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13725 + }, + { + "word": "Konstrukt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construct", + "romanization": "Konstrukt", + "example_sentence_native": "Das ist ein theoretisches Konstrukt.", + "example_sentence_english": "That is a theoretical construct.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13726 + }, + { + "word": "Korrespondent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correspondent (male)", + "romanization": "Korrespondent", + "example_sentence_native": "Der Korrespondent berichtete live aus dem Kriegsgebiet.", + "example_sentence_english": "The correspondent reported live from the war zone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13727 + }, + { + "word": "Kurzfilm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short film", + "romanization": "Kurzfilm", + "example_sentence_native": "Wir haben einen interessanten Kurzfilm gesehen.", + "example_sentence_english": "We watched an interesting short film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13729 + }, + { + "word": "Kölsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Kölsch (a type of beer from Cologne;also the dialect of Cologne)", + "romanization": "Kölsch", + "example_sentence_native": "In Köln trinkt man gerne Kölsch.", + "example_sentence_english": "In Cologne, people like to drink Kölsch.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13730 + }, + { + "word": "Lilie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lily", + "romanization": "Lilie", + "example_sentence_native": "Die Lilie ist eine schöne Blume.", + "example_sentence_english": "The lily is a beautiful flower.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13733 + }, + { + "word": "Liturgie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liturgy", + "romanization": "Liturgie", + "example_sentence_native": "Die Liturgie der Messe war sehr feierlich.", + "example_sentence_english": "The liturgy of the mass was very solemn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13734 + }, + { + "word": "loslegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get started;to kick off", + "romanization": "loslegen", + "example_sentence_native": "Wir müssen jetzt loslegen, sonst schaffen wir es nicht.", + "example_sentence_english": "We have to get started now, otherwise we won't make it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "los", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13735 + }, + { + "word": "Lotus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lotus", + "romanization": "Lotus", + "example_sentence_native": "Der Lotus ist eine heilige Pflanze in vielen Kulturen.", + "example_sentence_english": "The lotus is a sacred plant in many cultures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13736 + }, + { + "word": "Member", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member", + "romanization": "Member", + "example_sentence_native": "Er ist ein aktives Member in dieser Online-Community.", + "example_sentence_english": "He is an active member in this online community.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13738 + }, + { + "word": "Multiplayer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiplayer", + "romanization": "Multiplayer", + "example_sentence_native": "Ich spiele gerne im Multiplayer-Modus.", + "example_sentence_english": "I like to play in multiplayer mode.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13745 + }, + { + "word": "mustern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scrutinize", + "romanization": "mustern", + "example_sentence_native": "Er begann, die neue Mitarbeiterin genau zu mustern.", + "example_sentence_english": "He began to scrutinize the new employee closely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13746 + }, + { + "word": "Nachfolgerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successor (female)", + "romanization": "Nachfolgerin", + "example_sentence_native": "Die neue Nachfolgerin wurde heute vorgestellt.", + "example_sentence_english": "The new successor (female) was introduced today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13747 + }, + { + "word": "Nationalversammlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "National Assembly", + "romanization": "Nationalversammlung", + "example_sentence_native": "Die Nationalversammlung tagte in Berlin.", + "example_sentence_english": "The National Assembly convened in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13748 + }, + { + "word": "Naturschutzgebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nature reserve", + "romanization": "Naturschutzgebiet", + "example_sentence_native": "Wir machten einen Spaziergang im Naturschutzgebiet.", + "example_sentence_english": "We took a walk in the nature reserve.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13749 + }, + { + "word": "Nebenjob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "side job", + "romanization": "Nebenjob", + "example_sentence_native": "Sie hat einen Nebenjob, um ihr Studium zu finanzieren.", + "example_sentence_english": "She has a side job to finance her studies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13751 + }, + { + "word": "Neuwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "new car", + "romanization": "Neuwagen", + "example_sentence_native": "Er hat sich einen Neuwagen gekauft.", + "example_sentence_english": "He bought a new car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13752 + }, + { + "word": "Nötigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coercion", + "romanization": "Nötigung", + "example_sentence_native": "Der Angeklagte wurde wegen Nötigung verurteilt.", + "example_sentence_english": "The defendant was convicted of coercion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13754 + }, + { + "word": "official", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official", + "romanization": "official", + "example_sentence_native": "Die Information ist official.", + "example_sentence_english": "The information is official.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13755 + }, + { + "word": "Opus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opus", + "romanization": "Opus", + "example_sentence_native": "Sein letztes Opus war ein großer Erfolg.", + "example_sentence_english": "His last opus was a great success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13756 + }, + { + "word": "Outlet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outlet (store)", + "romanization": "Outlet", + "example_sentence_native": "Wir haben im Outlet viele Schnäppchen gefunden.", + "example_sentence_english": "We found many bargains at the outlet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13757 + }, + { + "word": "Peitsche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whip", + "romanization": "Peitsche", + "example_sentence_native": "Er schwang die Peitsche.", + "example_sentence_english": "He swung the whip.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13758 + }, + { + "word": "Pfarrhaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rectory", + "romanization": "Pfarrhaus", + "example_sentence_native": "Das alte Pfarrhaus steht am Ende der Straße.", + "example_sentence_english": "The old rectory stands at the end of the street.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13760 + }, + { + "word": "Pickel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pimple", + "romanization": "Pickel", + "example_sentence_native": "Er hatte einen großen Pickel auf der Nase.", + "example_sentence_english": "He had a big pimple on his nose.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13761 + }, + { + "word": "Polizeibeamter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police officer (male)", + "romanization": "Polizeibeamter", + "example_sentence_native": "Der Polizeibeamte half uns bei dem Unfall.", + "example_sentence_english": "The police officer helped us with the accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13764 + }, + { + "word": "Potenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "power;potency", + "romanization": "Potenz", + "example_sentence_native": "Zwei hoch drei ist eine Potenz.", + "example_sentence_english": "Two to the power of three is a power.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13765 + }, + { + "word": "ragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tower;to project", + "romanization": "ragen", + "example_sentence_native": "Die Berge ragen hoch in den Himmel.", + "example_sentence_english": "The mountains tower high into the sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13766 + }, + { + "word": "Reaktor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactor", + "romanization": "Reaktor", + "example_sentence_native": "Der Reaktor wurde für die Energiegewinnung gebaut.", + "example_sentence_english": "The reactor was built for energy production.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13767 + }, + { + "word": "Reporterin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female reporter", + "romanization": "Reporterin", + "example_sentence_native": "Die Reporterin stellte viele Fragen.", + "example_sentence_english": "The female reporter asked many questions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13768 + }, + { + "word": "Repräsentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representation", + "romanization": "Repräsentation", + "example_sentence_native": "Die Repräsentation der Bürger ist wichtig in einer Demokratie.", + "example_sentence_english": "The representation of citizens is important in a democracy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13769 + }, + { + "word": "respektvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectful", + "romanization": "respektvoll", + "example_sentence_native": "Er verhielt sich immer respektvoll gegenüber seinen Älteren.", + "example_sentence_english": "He always behaved respectfully towards his elders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13770 + }, + { + "word": "Revolver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolver", + "romanization": "Revolver", + "example_sentence_native": "Der Detektiv zog seinen Revolver.", + "example_sentence_english": "The detective drew his revolver.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13771 + }, + { + "word": "Rindfleisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beef", + "romanization": "Rindfleisch", + "example_sentence_native": "Ich esse gerne Rindfleisch mit Kartoffeln.", + "example_sentence_english": "I like to eat beef with potatoes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13772 + }, + { + "word": "rudern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to row", + "romanization": "rudern", + "example_sentence_native": "Wir mussten über den See rudern.", + "example_sentence_english": "We had to row across the lake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13773 + }, + { + "word": "Rugby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rugby", + "romanization": "Rugby", + "example_sentence_native": "Rugby ist ein beliebter Sport in England.", + "example_sentence_english": "Rugby is a popular sport in England.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13774 + }, + { + "word": "Sandale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sandal", + "romanization": "Sandale", + "example_sentence_native": "Sie trug bequeme Sandalen am Strand.", + "example_sentence_english": "She wore comfortable sandals on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13778 + }, + { + "word": "Schlagwort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "keyword;slogan", + "romanization": "Schlagwort", + "example_sentence_native": "Das Schlagwort der Kampagne war 'Zukunft jetzt'.", + "example_sentence_english": "The slogan of the campaign was 'Future now'.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13779 + }, + { + "word": "Schusswaffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firearm", + "romanization": "Schusswaffe", + "example_sentence_native": "Der Polizist zog seine Schusswaffe.", + "example_sentence_english": "The police officer drew his firearm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13780 + }, + { + "word": "Schwalbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swallow (bird)", + "romanization": "Schwalbe", + "example_sentence_native": "Eine Schwalbe macht noch keinen Sommer.", + "example_sentence_english": "One swallow does not make a summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13782 + }, + { + "word": "Schwiegervater", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "father-in-law", + "romanization": "Schwiegervater", + "example_sentence_native": "Mein Schwiegervater kommt uns besuchen.", + "example_sentence_english": "My father-in-law is coming to visit us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13783 + }, + { + "word": "Script", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "script", + "romanization": "Script", + "example_sentence_native": "Das Script für das Theaterstück ist fertig.", + "example_sentence_english": "The script for the play is ready.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13784 + }, + { + "word": "Selbständigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence;self-employment", + "romanization": "Selbständigkeit", + "example_sentence_native": "Viele träumen von der Selbständigkeit.", + "example_sentence_english": "Many dream of self-employment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13785 + }, + { + "word": "Smiley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smiley;emoji", + "romanization": "Smiley", + "example_sentence_native": "Sie schickte mir einen Smiley.", + "example_sentence_english": "She sent me a smiley.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13787 + }, + { + "word": "Span", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chip;splinter", + "romanization": "Span", + "example_sentence_native": "Beim Hobeln fielen viele Späne ab.", + "example_sentence_english": "Many shavings fell off during planing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13788 + }, + { + "word": "Stadtarchiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "city archive", + "romanization": "Stadtarchiv", + "example_sentence_native": "Ich habe im Stadtarchiv alte Dokumente gefunden.", + "example_sentence_english": "I found old documents in the city archive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13789 + }, + { + "word": "Stromausfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "power outage", + "romanization": "Stromausfall", + "example_sentence_native": "Wir hatten gestern einen Stromausfall.", + "example_sentence_english": "We had a power outage yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13790 + }, + { + "word": "stündlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hourly", + "romanization": "stündlich", + "example_sentence_native": "Der Bus fährt stündlich.", + "example_sentence_english": "The bus runs hourly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13791 + }, + { + "word": "Tabellenführer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "league leader;table topper", + "romanization": "Tabellenführer", + "example_sentence_native": "Die Mannschaft ist der Tabellenführer.", + "example_sentence_english": "The team is the league leader.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13792 + }, + { + "word": "technologisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technological", + "romanization": "technologisch", + "example_sentence_native": "Wir leben in einem technologisch fortschrittlichen Zeitalter.", + "example_sentence_english": "We live in a technologically advanced age.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13793 + }, + { + "word": "Temperament", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temperament", + "romanization": "Temperament", + "example_sentence_native": "Sie hat ein feuriges Temperament.", + "example_sentence_english": "She has a fiery temperament.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13794 + }, + { + "word": "trüben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cloud;to dim;to spoil", + "romanization": "trüben", + "example_sentence_native": "Der Regen trübte die Sicht.", + "example_sentence_english": "The rain clouded the view.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13795 + }, + { + "word": "türkis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turquoise", + "romanization": "türkis", + "example_sentence_native": "Sie trug ein türkises Kleid.", + "example_sentence_english": "She wore a turquoise dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13797 + }, + { + "word": "unangemessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inappropriate;unsuitable", + "romanization": "unangemessen", + "example_sentence_native": "Sein Verhalten war völlig unangemessen.", + "example_sentence_english": "His behavior was completely inappropriate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13798 + }, + { + "word": "undercover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undercover", + "romanization": "undercover", + "example_sentence_native": "Der Detektiv arbeitete undercover.", + "example_sentence_english": "The detective worked undercover.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13799 + }, + { + "word": "ungehindert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unhindered", + "romanization": "ungehindert", + "example_sentence_native": "Er konnte ungehindert durch die Menge gehen.", + "example_sentence_english": "He could walk unhindered through the crowd.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13800 + }, + { + "word": "ungeschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbeaten", + "romanization": "ungeschlagen", + "example_sentence_native": "Das Team blieb die ganze Saison ungeschlagen.", + "example_sentence_english": "The team remained unbeaten all season.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13801 + }, + { + "word": "Unterhose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "underpants", + "romanization": "Unterhose", + "example_sentence_native": "Er zog eine saubere Unterhose an.", + "example_sentence_english": "He put on clean underpants.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13802 + }, + { + "word": "vergleichend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparative", + "romanization": "vergleichend", + "example_sentence_native": "Sie führte eine vergleichende Studie durch.", + "example_sentence_english": "She conducted a comparative study.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13806 + }, + { + "word": "verloben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get engaged", + "romanization": "verloben", + "example_sentence_native": "Sie haben sich letztes Jahr verlobt.", + "example_sentence_english": "They got engaged last year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13807 + }, + { + "word": "verrechnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to miscalculate", + "romanization": "verrechnen", + "example_sentence_native": "Der Kellner hat sich verrechnet.", + "example_sentence_english": "The waiter miscalculated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13808 + }, + { + "word": "verschmelzen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to merge", + "romanization": "verschmelzen", + "example_sentence_native": "Die beiden Unternehmen werden bald verschmelzen.", + "example_sentence_english": "The two companies will soon merge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13809 + }, + { + "word": "Versteigerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auction", + "romanization": "Versteigerung", + "example_sentence_native": "Das Gemälde wurde bei einer Versteigerung verkauft.", + "example_sentence_english": "The painting was sold at an auction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13810 + }, + { + "word": "vertikal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vertical", + "romanization": "vertikal", + "example_sentence_native": "Die Linie ist vertikal.", + "example_sentence_english": "The line is vertical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13811 + }, + { + "word": "verzweifeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despair", + "romanization": "verzweifeln", + "example_sentence_native": "Er begann zu verzweifeln.", + "example_sentence_english": "He began to despair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13812 + }, + { + "word": "Volksfest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "public festival", + "romanization": "Volksfest", + "example_sentence_native": "Wir besuchen jedes Jahr das Volksfest.", + "example_sentence_english": "We visit the public festival every year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13813 + }, + { + "word": "Vorbehalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reservation", + "romanization": "Vorbehalt", + "example_sentence_native": "Ich habe einen Vorbehalt gegen diesen Plan.", + "example_sentence_english": "I have a reservation about this plan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13814 + }, + { + "word": "vorbeigehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pass by", + "romanization": "vorbeigehen", + "example_sentence_native": "Er sah mich nicht, als er vorbeiging.", + "example_sentence_english": "He didn't see me as he passed by.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vorbei", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13815 + }, + { + "word": "Wade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calf (of leg)", + "romanization": "Wade", + "example_sentence_native": "Er spürte einen Schmerz in der Wade.", + "example_sentence_english": "He felt a pain in his calf.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13817 + }, + { + "word": "wahrhaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truly", + "romanization": "wahrhaft", + "example_sentence_native": "Das war ein wahrhaft magischer Moment.", + "example_sentence_english": "That was a truly magical moment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13818 + }, + { + "word": "walten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prevail;to rule", + "romanization": "walten", + "example_sentence_native": "Ruhe walte!", + "example_sentence_english": "Let peace prevail!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13820 + }, + { + "word": "wegfallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be omitted;to be cancelled", + "romanization": "wegfallen", + "example_sentence_native": "Der Termin wird wegfallen.", + "example_sentence_english": "The appointment will be cancelled.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13821 + }, + { + "word": "Weihe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consecration;dedication;kite (bird)", + "romanization": "Weihe", + "example_sentence_native": "Die Weihe der Kirche fand gestern statt.", + "example_sentence_english": "The consecration of the church took place yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13822 + }, + { + "word": "Weiher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pond", + "romanization": "Weiher", + "example_sentence_native": "Im Garten gibt es einen kleinen Weiher.", + "example_sentence_english": "There is a small pond in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13823 + }, + { + "word": "Wiederbelebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resuscitation;revival", + "romanization": "Wiederbelebung", + "example_sentence_native": "Die Wiederbelebung des Patienten war erfolgreich.", + "example_sentence_english": "The resuscitation of the patient was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13825 + }, + { + "word": "Wirre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confusion;turmoil", + "romanization": "Wirre", + "example_sentence_native": "Er sprach in großer Wirre.", + "example_sentence_english": "He spoke in great confusion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13827 + }, + { + "word": "Zeitverschwendung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waste of time", + "romanization": "Zeitverschwendung", + "example_sentence_native": "Das ist reine Zeitverschwendung.", + "example_sentence_english": "That is a complete waste of time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13830 + }, + { + "word": "Ziegel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brick;tile", + "romanization": "Ziegel", + "example_sentence_native": "Das Haus ist aus roten Ziegeln gebaut.", + "example_sentence_english": "The house is built of red bricks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13831 + }, + { + "word": "Zirkel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compasses;circle;club", + "romanization": "Zirkel", + "example_sentence_native": "Er zeichnete einen Kreis mit dem Zirkel.", + "example_sentence_english": "He drew a circle with the compasses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13832 + }, + { + "word": "zwangsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsorily;forcibly", + "romanization": "zwangsweise", + "example_sentence_native": "Er musste zwangsweise umziehen.", + "example_sentence_english": "He had to move compulsorily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13834 + }, + { + "word": "Züchter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breeder;grower", + "romanization": "Züchter", + "example_sentence_native": "Der Züchter hat viele Hunde.", + "example_sentence_english": "The breeder has many dogs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13835 + }, + { + "word": "ätzend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrosive;caustic;awful (slang)", + "romanization": "ätzend", + "example_sentence_native": "Die Säure ist ätzend.", + "example_sentence_english": "The acid is corrosive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13836 + }, + { + "word": "überragend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outstanding;superb;towering", + "romanization": "überragend", + "example_sentence_native": "Seine Leistung war überragend.", + "example_sentence_english": "His performance was outstanding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13837 + }, + { + "word": "abbekommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get off;to receive;to catch", + "romanization": "abbekommen", + "example_sentence_native": "Er hat einen Schlag abbekommen.", + "example_sentence_english": "He received a blow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "bekommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13838 + }, + { + "word": "Admin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admin (administrator)", + "romanization": "Admin", + "example_sentence_native": "Der Admin hat das Problem gelöst.", + "example_sentence_english": "The admin solved the problem.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13840 + }, + { + "word": "Altersklasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "age group", + "romanization": "Altersklasse", + "example_sentence_native": "Diese Sportart ist für alle Altersklassen geeignet.", + "example_sentence_english": "This sport is suitable for all age groups.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13843 + }, + { + "word": "angekündigt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announced", + "romanization": "angekündigt", + "example_sentence_native": "Die angekündigte Veranstaltung wurde verschoben.", + "example_sentence_english": "The announced event was postponed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13847 + }, + { + "word": "ansteckend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contagious", + "romanization": "ansteckend", + "example_sentence_native": "Die Krankheit ist sehr ansteckend.", + "example_sentence_english": "The disease is very contagious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13848 + }, + { + "word": "Arbeitsvertrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employment contract", + "romanization": "Arbeitsvertrag", + "example_sentence_native": "Ich habe meinen neuen Arbeitsvertrag unterschrieben.", + "example_sentence_english": "I signed my new employment contract.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13850 + }, + { + "word": "Atomkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear power", + "romanization": "Atomkraft", + "example_sentence_native": "Atomkraft ist ein kontroverses Thema.", + "example_sentence_english": "Nuclear power is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13854 + }, + { + "word": "Aufprall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impact", + "romanization": "Aufprall", + "example_sentence_native": "Der Aufprall war sehr heftig.", + "example_sentence_english": "The impact was very violent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13856 + }, + { + "word": "aussagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to state;to testify", + "romanization": "aussagen", + "example_sentence_native": "Er muss vor Gericht aussagen.", + "example_sentence_english": "He has to testify in court.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "sagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13857 + }, + { + "word": "Ausgrabung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excavation", + "romanization": "Ausgrabung", + "example_sentence_native": "Die Archäologen fanden bei der Ausgrabung alte Münzen.", + "example_sentence_english": "The archaeologists found old coins during the excavation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13858 + }, + { + "word": "Autogramm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autograph", + "romanization": "Autogramm", + "example_sentence_native": "Sie bat den Schauspieler um ein Autogramm.", + "example_sentence_english": "She asked the actor for an autograph.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13861 + }, + { + "word": "Bauvorhaben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction project", + "romanization": "Bauvorhaben", + "example_sentence_native": "Das neue Bauvorhaben wird die Stadt verändern.", + "example_sentence_english": "The new construction project will change the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13865 + }, + { + "word": "Begründer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founder", + "romanization": "Begründer", + "example_sentence_native": "Er ist der Begründer dieser Bewegung.", + "example_sentence_english": "He is the founder of this movement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13866 + }, + { + "word": "Belag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covering;topping;coating", + "romanization": "Belag", + "example_sentence_native": "Der Belag auf der Pizza war sehr lecker.", + "example_sentence_english": "The topping on the pizza was very tasty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13867 + }, + { + "word": "belaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to amount to;to run (e.g.;costs)", + "romanization": "belaufen", + "example_sentence_native": "Die Kosten belaufen sich auf 500 Euro.", + "example_sentence_english": "The costs amount to 500 Euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13868 + }, + { + "word": "Beruhigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calming;reassurance", + "romanization": "Beruhigung", + "example_sentence_native": "Er brauchte etwas zur Beruhigung.", + "example_sentence_english": "He needed something for calming/reassurance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13869 + }, + { + "word": "Beschneidung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circumcision;pruning", + "romanization": "Beschneidung", + "example_sentence_native": "Die Beschneidung von Bäumen ist wichtig für ihre Gesundheit.", + "example_sentence_english": "The pruning of trees is important for their health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13870 + }, + { + "word": "beschränkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limited;restricted;narrow-minded", + "romanization": "beschränkt", + "example_sentence_native": "Die Ressourcen sind beschränkt.", + "example_sentence_english": "The resources are limited.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13871 + }, + { + "word": "Beschädigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damage;impairment", + "romanization": "Beschädigung", + "example_sentence_native": "Es gab eine leichte Beschädigung am Auto.", + "example_sentence_english": "There was slight damage to the car.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13872 + }, + { + "word": "Bestechung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bribery", + "romanization": "Bestechung", + "example_sentence_native": "Bestechung ist in vielen Ländern ein großes Problem.", + "example_sentence_english": "Bribery is a big problem in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13873 + }, + { + "word": "Bildungssystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "education system", + "romanization": "Bildungssystem", + "example_sentence_native": "Das deutsche Bildungssystem ist komplex.", + "example_sentence_english": "The German education system is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13874 + }, + { + "word": "Brauchtum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custom;tradition", + "romanization": "Brauchtum", + "example_sentence_native": "Dieses Brauchtum wird seit Jahrhunderten gepflegt.", + "example_sentence_english": "This custom has been maintained for centuries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13877 + }, + { + "word": "Brennpunkt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "focal point;hot spot;flashpoint", + "romanization": "Brennpunkt", + "example_sentence_native": "Die Diskussion erreichte ihren Brennpunkt.", + "example_sentence_english": "The discussion reached its focal point.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13878 + }, + { + "word": "Bundestagsabgeordneter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Member of Parliament (German Bundestag)", + "romanization": "Bundestagsabgeordneter", + "example_sentence_native": "Ein Bundestagsabgeordneter vertritt seinen Wahlkreis.", + "example_sentence_english": "A Member of Parliament represents their constituency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13879 + }, + { + "word": "Bündel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bundle", + "romanization": "Bündel", + "example_sentence_native": "Sie trug ein Bündel Holz.", + "example_sentence_english": "She carried a bundle of wood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13880 + }, + { + "word": "bündeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bundle;to pool", + "romanization": "bündeln", + "example_sentence_native": "Wir müssen unsere Kräfte bündeln.", + "example_sentence_english": "We need to pool our strengths.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13881 + }, + { + "word": "Carbon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbon", + "romanization": "Carbon", + "example_sentence_native": "Carbonfasern sind sehr leicht und stabil.", + "example_sentence_english": "Carbon fibers are very light and stable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13882 + }, + { + "word": "Cartoon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartoon", + "romanization": "Cartoon", + "example_sentence_native": "Er zeichnet gerne Cartoons.", + "example_sentence_english": "He likes to draw cartoons.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13883 + }, + { + "word": "Cholera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cholera", + "romanization": "Cholera", + "example_sentence_native": "Die Cholera ist eine schwere Infektionskrankheit.", + "example_sentence_english": "Cholera is a severe infectious disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13884 + }, + { + "word": "Chrom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chromium", + "romanization": "Chrom", + "example_sentence_native": "Chrom wird oft zur Beschichtung von Metallen verwendet.", + "example_sentence_english": "Chromium is often used for coating metals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13885 + }, + { + "word": "Cluster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cluster", + "romanization": "Cluster", + "example_sentence_native": "Die Daten bilden einen Cluster.", + "example_sentence_english": "The data forms a cluster.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13889 + }, + { + "word": "Crowdfunding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowdfunding", + "romanization": "Crowdfunding", + "example_sentence_native": "Viele Projekte werden heute durch Crowdfunding finanziert.", + "example_sentence_english": "Many projects are financed today through crowdfunding.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13890 + }, + { + "word": "Currywurst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curry sausage", + "romanization": "Currywurst", + "example_sentence_native": "Eine Currywurst ist ein beliebtes deutsches Gericht.", + "example_sentence_english": "A curry sausage is a popular German dish.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13891 + }, + { + "word": "Defense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defense", + "romanization": "Defense", + "example_sentence_native": "Die Defense des Teams war sehr stark.", + "example_sentence_english": "The team's defense was very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13892 + }, + { + "word": "Dorfbewohner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villager", + "romanization": "Dorfbewohner", + "example_sentence_native": "Die Dorfbewohner versammelten sich auf dem Marktplatz.", + "example_sentence_english": "The villagers gathered in the marketplace.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13895 + }, + { + "word": "drumherum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "around it;them", + "romanization": "drumherum", + "example_sentence_native": "Er baute eine Mauer drumherum.", + "example_sentence_english": "He built a wall around it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 13896 + }, + { + "word": "durchschauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to see through;to fathom", + "romanization": "durchschauen", + "example_sentence_native": "Ich habe seine Absichten durchschaut.", + "example_sentence_english": "I saw through his intentions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13897 + }, + { + "word": "einfrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze", + "romanization": "einfrieren", + "example_sentence_native": "Du kannst das Brot einfrieren.", + "example_sentence_english": "You can freeze the bread.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "frieren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13898 + }, + { + "word": "einsparen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to save;to economize", + "romanization": "einsparen", + "example_sentence_native": "Wir müssen Energie einsparen.", + "example_sentence_english": "We need to save energy.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "sparen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13899 + }, + { + "word": "Entdecker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discoverer;explorer", + "romanization": "Entdecker", + "example_sentence_native": "Der Entdecker fand eine neue Insel.", + "example_sentence_english": "The discoverer found a new island.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13902 + }, + { + "word": "entfliehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape;to flee", + "romanization": "entfliehen", + "example_sentence_native": "Er versuchte, der Gefahr zu entfliehen.", + "example_sentence_english": "He tried to escape the danger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13903 + }, + { + "word": "entladen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unload;to discharge", + "romanization": "entladen", + "example_sentence_native": "Wir müssen den LKW entladen.", + "example_sentence_english": "We have to unload the truck.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13904 + }, + { + "word": "Entscheid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decision;verdict", + "romanization": "Entscheid", + "example_sentence_native": "Der Richter fällte einen wichtigen Entscheid.", + "example_sentence_english": "The judge made an important decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13905 + }, + { + "word": "erpressen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blackmail;to extort", + "romanization": "erpressen", + "example_sentence_native": "Er versuchte, sie zu erpressen.", + "example_sentence_english": "He tried to blackmail her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13907 + }, + { + "word": "erstechen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stab to death", + "romanization": "erstechen", + "example_sentence_native": "Der Täter versuchte, sein Opfer zu erstechen.", + "example_sentence_english": "The perpetrator tried to stab his victim to death.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13908 + }, + { + "word": "Erzherzog", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Archduke", + "romanization": "Erzherzog", + "example_sentence_native": "Der Erzherzog regierte das Land.", + "example_sentence_english": "The Archduke ruled the country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13909 + }, + { + "word": "erörtern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discuss;to debate", + "romanization": "erörtern", + "example_sentence_native": "Sie werden das Problem morgen erörtern.", + "example_sentence_english": "They will discuss the problem tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13910 + }, + { + "word": "experimentieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to experiment", + "romanization": "experimentieren", + "example_sentence_native": "Die Wissenschaftler experimentieren mit neuen Materialien.", + "example_sentence_english": "The scientists are experimenting with new materials.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13911 + }, + { + "word": "Fachrichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "field of study;specialization", + "romanization": "Fachrichtung", + "example_sentence_native": "Welche Fachrichtung studierst du?", + "example_sentence_english": "Which field of study are you pursuing?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13912 + }, + { + "word": "Farce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "farce;mockery", + "romanization": "Farce", + "example_sentence_native": "Der ganze Prozess war eine Farce.", + "example_sentence_english": "The whole process was a farce.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13913 + }, + { + "word": "fehlerfrei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "error-free;flawless", + "romanization": "fehlerfrei", + "example_sentence_native": "Der Text war fehlerfrei.", + "example_sentence_english": "The text was error-free.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13915 + }, + { + "word": "festigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consolidate;to strengthen", + "romanization": "festigen", + "example_sentence_native": "Wir müssen unsere Position festigen.", + "example_sentence_english": "We need to strengthen our position.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13917 + }, + { + "word": "Flag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flag", + "romanization": "Flag", + "example_sentence_native": "Die Flag wehte im Wind.", + "example_sentence_english": "The flag waved in the wind.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13918 + }, + { + "word": "Funktionalität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functionality", + "romanization": "Funktionalität", + "example_sentence_native": "Die Funktionalität der neuen Software ist beeindruckend.", + "example_sentence_english": "The functionality of the new software is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13920 + }, + { + "word": "Fürstin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "princess", + "romanization": "Fürstin", + "example_sentence_native": "Die Fürstin besuchte die Stadt.", + "example_sentence_english": "The princess visited the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13922 + }, + { + "word": "Gelehrter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scholar", + "romanization": "Gelehrter", + "example_sentence_native": "Er war ein bekannter Gelehrter seiner Zeit.", + "example_sentence_english": "He was a renowned scholar of his time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13924 + }, + { + "word": "gemeinhin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commonly", + "romanization": "gemeinhin", + "example_sentence_native": "Diese Meinung wird gemeinhin akzeptiert.", + "example_sentence_english": "This opinion is commonly accepted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 13925 + }, + { + "word": "Generaldirektor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "director general", + "romanization": "Generaldirektor", + "example_sentence_native": "Der Generaldirektor hielt eine Rede.", + "example_sentence_english": "The director general gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13926 + }, + { + "word": "geregelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regulated", + "romanization": "geregelt", + "example_sentence_native": "Alles ist hier streng geregelt.", + "example_sentence_english": "Everything is strictly regulated here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13927 + }, + { + "word": "Gewölbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vault", + "romanization": "Gewölbe", + "example_sentence_native": "Das alte Gewölbe war sehr beeindruckend.", + "example_sentence_english": "The old vault was very impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13928 + }, + { + "word": "Heiligabend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas Eve", + "romanization": "Heiligabend", + "example_sentence_native": "Wir feiern Heiligabend mit der Familie.", + "example_sentence_english": "We celebrate Christmas Eve with the family.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13933 + }, + { + "word": "Heldin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heroine", + "romanization": "Heldin", + "example_sentence_native": "Sie ist die Heldin der Geschichte.", + "example_sentence_english": "She is the heroine of the story.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13934 + }, + { + "word": "Herzschlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heartbeat", + "romanization": "Herzschlag", + "example_sentence_native": "Ich konnte ihren Herzschlag hören.", + "example_sentence_english": "I could hear her heartbeat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13935 + }, + { + "word": "hinstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to place (standing)", + "romanization": "hinstellen", + "example_sentence_native": "Kannst du den Stuhl bitte dorthin hinstellen?", + "example_sentence_english": "Can you please place the chair over there?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13937 + }, + { + "word": "imstande", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able;capable", + "romanization": "imstande", + "example_sentence_native": "Er ist imstande, die Aufgabe zu lösen.", + "example_sentence_english": "He is able to solve the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13943 + }, + { + "word": "intuitiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuitive", + "romanization": "intuitiv", + "example_sentence_native": "Sie hat ein intuitives Verständnis für die Situation.", + "example_sentence_english": "She has an intuitive understanding of the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13945 + }, + { + "word": "Klingel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell", + "romanization": "Klingel", + "example_sentence_native": "Die Klingel läutet.", + "example_sentence_english": "The bell rings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13954 + }, + { + "word": "Klotz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "block;log;lump", + "romanization": "Klotz", + "example_sentence_native": "Er sägte einen Klotz Holz.", + "example_sentence_english": "He sawed a block of wood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13955 + }, + { + "word": "Konfiguration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "configuration", + "romanization": "Konfiguration", + "example_sentence_native": "Die Konfiguration des Systems ist komplex.", + "example_sentence_english": "The system's configuration is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13957 + }, + { + "word": "Korridor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corridor", + "romanization": "Korridor", + "example_sentence_native": "Der lange Korridor führte zu den Büros.", + "example_sentence_english": "The long corridor led to the offices.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13958 + }, + { + "word": "Kreistag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "district council", + "romanization": "Kreistag", + "example_sentence_native": "Der Kreistag hat über den Haushalt abgestimmt.", + "example_sentence_english": "The district council voted on the budget.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13959 + }, + { + "word": "Kürzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction;cutback", + "romanization": "Kürzung", + "example_sentence_native": "Die Regierung plant eine Kürzung der Ausgaben.", + "example_sentence_english": "The government plans a reduction in spending.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13961 + }, + { + "word": "Lehrling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprentice", + "romanization": "Lehrling", + "example_sentence_native": "Der Lehrling lernt schnell.", + "example_sentence_english": "The apprentice learns quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13962 + }, + { + "word": "Loge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "box (theatre;opera)", + "romanization": "Loge", + "example_sentence_native": "Wir hatten Plätze in einer Loge.", + "example_sentence_english": "We had seats in a box.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13964 + }, + { + "word": "markant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striking;distinctive", + "romanization": "markant", + "example_sentence_native": "Er hat ein markantes Gesicht.", + "example_sentence_english": "He has a striking face.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13965 + }, + { + "word": "Meisterin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female master;female champion", + "romanization": "Meisterin", + "example_sentence_native": "Sie ist eine wahre Meisterin ihres Fachs.", + "example_sentence_english": "She is a true master of her craft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13966 + }, + { + "word": "mitfahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ride along;to go with", + "romanization": "mitfahren", + "example_sentence_native": "Möchtest du mitfahren?", + "example_sentence_english": "Do you want to ride along?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13969 + }, + { + "word": "mitgehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go along;to accompany", + "romanization": "mitgehen", + "example_sentence_native": "Ich werde mit dir mitgehen.", + "example_sentence_english": "I will go along with you.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13970 + }, + { + "word": "möchtegern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "would-be;wannabe", + "romanization": "möchtegern", + "example_sentence_native": "Er ist ein möchtegern-Künstler.", + "example_sentence_english": "He is a wannabe artist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13972 + }, + { + "word": "Nachtisch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dessert", + "romanization": "Nachtisch", + "example_sentence_native": "Zum Nachtisch gibt es Eis.", + "example_sentence_english": "For dessert there is ice cream.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13973 + }, + { + "word": "Nenner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denominator;common ground", + "romanization": "Nenner", + "example_sentence_native": "Wir müssen einen gemeinsamen Nenner finden.", + "example_sentence_english": "We need to find common ground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13974 + }, + { + "word": "Oberschicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upper class", + "romanization": "Oberschicht", + "example_sentence_native": "Die Oberschicht hat oft viel Einfluss.", + "example_sentence_english": "The upper class often has a lot of influence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13977 + }, + { + "word": "Ortskern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "town center;village core", + "romanization": "Ortskern", + "example_sentence_native": "Der alte Ortskern ist sehr malerisch.", + "example_sentence_english": "The old town center is very picturesque.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13978 + }, + { + "word": "osteuropäisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Eastern European", + "romanization": "osteuropäisch", + "example_sentence_native": "Er hat osteuropäische Wurzeln.", + "example_sentence_english": "He has Eastern European roots.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 13979 + }, + { + "word": "Pappe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardboard", + "romanization": "Pappe", + "example_sentence_native": "Die Pappe ist sehr stabil.", + "example_sentence_english": "The cardboard is very stable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13980 + }, + { + "word": "Patrone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartridge", + "romanization": "Patrone", + "example_sentence_native": "Die Druckerpatrone ist leer.", + "example_sentence_english": "The printer cartridge is empty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13981 + }, + { + "word": "Personalausweis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "identity card", + "romanization": "Personalausweis", + "example_sentence_native": "Bitte zeigen Sie Ihren Personalausweis.", + "example_sentence_english": "Please show your identity card.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13982 + }, + { + "word": "Pfadfinder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scout", + "romanization": "Pfadfinder", + "example_sentence_native": "Die Pfadfinder gingen zelten.", + "example_sentence_english": "The scouts went camping.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13983 + }, + { + "word": "Physiologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiology", + "romanization": "Physiologie", + "example_sentence_native": "Er studiert menschliche Physiologie.", + "example_sentence_english": "He studies human physiology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13984 + }, + { + "word": "Pinguin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penguin", + "romanization": "Pinguin", + "example_sentence_native": "Der Pinguin lebt in der Antarktis.", + "example_sentence_english": "The penguin lives in Antarctica.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13987 + }, + { + "word": "Portugiese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Portuguese person", + "romanization": "Portugiese", + "example_sentence_native": "Er ist ein Portugiese.", + "example_sentence_english": "He is a Portuguese person.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13988 + }, + { + "word": "prallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bounce;to collide", + "romanization": "prallen", + "example_sentence_native": "Der Ball prallte von der Wand ab.", + "example_sentence_english": "The ball bounced off the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 13989 + }, + { + "word": "Pudding", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pudding", + "romanization": "Pudding", + "example_sentence_native": "Ich esse gerne Schokoladenpudding.", + "example_sentence_english": "I like to eat chocolate pudding.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13990 + }, + { + "word": "Rachen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "throat;pharynx", + "romanization": "Rachen", + "example_sentence_native": "Mein Rachen tut weh.", + "example_sentence_english": "My throat hurts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13993 + }, + { + "word": "Rampenlicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limelight;spotlight", + "romanization": "Rampenlicht", + "example_sentence_native": "Sie stand im Rampenlicht.", + "example_sentence_english": "She stood in the limelight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13995 + }, + { + "word": "Ratio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ratio", + "romanization": "Ratio", + "example_sentence_native": "Die Ratio zwischen den beiden Werten ist 2 zu 1.", + "example_sentence_english": "The ratio between the two values is 2 to 1.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13996 + }, + { + "word": "Rinde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bark;crust", + "romanization": "Rinde", + "example_sentence_native": "Die Rinde des Baumes ist rau.", + "example_sentence_english": "The bark of the tree is rough.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 13999 + }, + { + "word": "Ruin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruin", + "romanization": "Ruin", + "example_sentence_native": "Die alte Burg ist ein Ruin.", + "example_sentence_english": "The old castle is a ruin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14002 + }, + { + "word": "rückläufig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retrograde;declining", + "romanization": "rückläufig", + "example_sentence_native": "Die Verkaufszahlen sind rückläufig.", + "example_sentence_english": "The sales figures are declining.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14004 + }, + { + "word": "rücksichtslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruthless;inconsiderate", + "romanization": "rücksichtslos", + "example_sentence_native": "Sein Verhalten war rücksichtslos.", + "example_sentence_english": "His behavior was inconsiderate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14005 + }, + { + "word": "Salami", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salami", + "romanization": "Salami", + "example_sentence_native": "Ich esse gerne Salami auf Brot.", + "example_sentence_english": "I like to eat salami on bread.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14007 + }, + { + "word": "Schlagzeuger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drummer", + "romanization": "Schlagzeuger", + "example_sentence_native": "Der Schlagzeuger spielt sehr gut.", + "example_sentence_english": "The drummer plays very well.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14009 + }, + { + "word": "Sicherstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "securing;ensuring;seizure", + "romanization": "Sicherstellung", + "example_sentence_native": "Die Sicherstellung der Qualität ist wichtig.", + "example_sentence_english": "Ensuring quality is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14011 + }, + { + "word": "Siebziger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seventies (the 1970s);septuagenarian", + "romanization": "Siebziger", + "example_sentence_native": "In den Siebzigern war die Mode anders.", + "example_sentence_english": "Fashion was different in the seventies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14012 + }, + { + "word": "Sinfonie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symphony", + "romanization": "Sinfonie", + "example_sentence_native": "Die Sinfonie war wunderschön.", + "example_sentence_english": "The symphony was beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14013 + }, + { + "word": "sinkend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sinking;falling", + "romanization": "sinkend", + "example_sentence_native": "Das sinkende Schiff war ein trauriger Anblick.", + "example_sentence_english": "The sinking ship was a sad sight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14014 + }, + { + "word": "solidarisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in solidarity;supportive", + "romanization": "solidarisch", + "example_sentence_native": "Wir müssen solidarisch sein.", + "example_sentence_english": "We must be in solidarity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14016 + }, + { + "word": "Sonnenstrahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sunbeam", + "romanization": "Sonnenstrahl", + "example_sentence_native": "Ein Sonnenstrahl fiel durch das Fenster.", + "example_sentence_english": "A sunbeam fell through the window.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14021 + }, + { + "word": "Splitter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "splinter", + "romanization": "Splitter", + "example_sentence_native": "Er hatte einen Splitter im Finger.", + "example_sentence_english": "He had a splinter in his finger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14022 + }, + { + "word": "spucken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spit", + "romanization": "spucken", + "example_sentence_native": "Es ist unhöflich, auf den Boden zu spucken.", + "example_sentence_english": "It is impolite to spit on the floor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14023 + }, + { + "word": "Steinbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarry", + "romanization": "Steinbruch", + "example_sentence_native": "Der alte Steinbruch ist jetzt ein See.", + "example_sentence_english": "The old quarry is now a lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14024 + }, + { + "word": "streuen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scatter", + "romanization": "streuen", + "example_sentence_native": "Sie streute Salz auf das Essen.", + "example_sentence_english": "She sprinkled salt on the food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14025 + }, + { + "word": "Stube", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parlor", + "romanization": "Stube", + "example_sentence_native": "Sie saßen gemütlich in der warmen Stube.", + "example_sentence_english": "They sat comfortably in the warm parlor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14026 + }, + { + "word": "Tarifvertrag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collective bargaining agreement", + "romanization": "Tarifvertrag", + "example_sentence_native": "Der neue Tarifvertrag wurde gestern unterzeichnet.", + "example_sentence_english": "The new collective bargaining agreement was signed yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14027 + }, + { + "word": "Therme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal bath", + "romanization": "Therme", + "example_sentence_native": "Wir verbrachten den Tag in der Therme.", + "example_sentence_english": "We spent the day at the thermal bath.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14029 + }, + { + "word": "Toaster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toaster", + "romanization": "Toaster", + "example_sentence_native": "Der Toaster steht in der Küche.", + "example_sentence_english": "The toaster is in the kitchen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14030 + }, + { + "word": "umgestalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redesign", + "romanization": "umgestalten", + "example_sentence_native": "Sie wollen den Garten komplett umgestalten.", + "example_sentence_english": "They want to completely redesign the garden.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "gestalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14032 + }, + { + "word": "unbestritten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undisputed", + "romanization": "unbestritten", + "example_sentence_native": "Seine Fähigkeiten sind unbestritten.", + "example_sentence_english": "His abilities are undisputed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14033 + }, + { + "word": "ungenau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imprecise", + "romanization": "ungenau", + "example_sentence_native": "Die Messung war ungenau.", + "example_sentence_english": "The measurement was inaccurate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14034 + }, + { + "word": "unglaubwürdig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbelievable", + "romanization": "unglaubwürdig", + "example_sentence_native": "Seine Geschichte klang unglaubwürdig.", + "example_sentence_english": "His story sounded unbelievable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14036 + }, + { + "word": "unsterblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immortal", + "romanization": "unsterblich", + "example_sentence_native": "Viele Mythen erzählen von unsterblichen Göttern.", + "example_sentence_english": "Many myths tell of immortal gods.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14038 + }, + { + "word": "Untreue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infidelity", + "romanization": "Untreue", + "example_sentence_native": "Untreue kann eine Beziehung zerstören.", + "example_sentence_english": "Infidelity can destroy a relationship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14039 + }, + { + "word": "unverantwortlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresponsible", + "romanization": "unverantwortlich", + "example_sentence_native": "Sein Verhalten war völlig unverantwortlich.", + "example_sentence_english": "His behavior was completely irresponsible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14040 + }, + { + "word": "unverbindlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-binding;informal", + "romanization": "unverbindlich", + "example_sentence_native": "Das Angebot ist unverbindlich.", + "example_sentence_english": "The offer is non-binding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14041 + }, + { + "word": "unversehrt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unharmed;intact", + "romanization": "unversehrt", + "example_sentence_native": "Er kam unversehrt aus dem Unfall.", + "example_sentence_english": "He emerged unharmed from the accident.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14042 + }, + { + "word": "Unverständnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of understanding;incomprehension", + "romanization": "Unverständnis", + "example_sentence_native": "Sein Unverständnis war offensichtlich.", + "example_sentence_english": "His incomprehension was obvious.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14043 + }, + { + "word": "Ventilator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan (device)", + "romanization": "Ventilator", + "example_sentence_native": "Der Ventilator kühlt den Raum.", + "example_sentence_english": "The fan cools the room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14045 + }, + { + "word": "Verfechter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advocate;proponent", + "romanization": "Verfechter", + "example_sentence_native": "Er ist ein starker Verfechter der Menschenrechte.", + "example_sentence_english": "He is a strong advocate for human rights.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14046 + }, + { + "word": "Verkaufszahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sales figure", + "romanization": "Verkaufszahl", + "example_sentence_native": "Die Verkaufszahlen sind gestiegen.", + "example_sentence_english": "The sales figures have increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14048 + }, + { + "word": "Verlobung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engagement (to be married)", + "romanization": "Verlobung", + "example_sentence_native": "Sie feierten ihre Verlobung.", + "example_sentence_english": "They celebrated their engagement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14049 + }, + { + "word": "vertuschen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cover up;to hush up", + "romanization": "vertuschen", + "example_sentence_native": "Sie versuchten, den Skandal zu vertuschen.", + "example_sentence_english": "They tried to cover up the scandal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14050 + }, + { + "word": "Verwaltungsgebäude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administration building", + "romanization": "Verwaltungsgebäude", + "example_sentence_native": "Das Verwaltungsgebäude ist neu.", + "example_sentence_english": "The administration building is new.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14051 + }, + { + "word": "verwüsten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devastate;to lay waste", + "romanization": "verwüsten", + "example_sentence_native": "Der Sturm verwüstete die Küste.", + "example_sentence_english": "The storm devastated the coast.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14052 + }, + { + "word": "Vorhandensein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presence;existence", + "romanization": "Vorhandensein", + "example_sentence_native": "Das Vorhandensein von Wasser ist entscheidend.", + "example_sentence_english": "The presence of water is crucial.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14053 + }, + { + "word": "Vorkommnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incident;occurrence", + "romanization": "Vorkommnis", + "example_sentence_native": "Es gab ein seltsames Vorkommnis.", + "example_sentence_english": "There was a strange incident.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14054 + }, + { + "word": "Weingarten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vineyard", + "romanization": "Weingarten", + "example_sentence_native": "Der Weingarten liegt am Hang.", + "example_sentence_english": "The vineyard is on the slope.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14055 + }, + { + "word": "wiederkehrend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recurring;repetitive", + "romanization": "wiederkehrend", + "example_sentence_native": "Das ist ein wiederkehrendes Problem.", + "example_sentence_english": "This is a recurring problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14056 + }, + { + "word": "Wirtschaftswissenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economics (academic discipline)", + "romanization": "Wirtschaftswissenschaft", + "example_sentence_native": "Sie studiert Wirtschaftswissenschaft.", + "example_sentence_english": "She studies economics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14057 + }, + { + "word": "Wohnheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dormitory;hall of residence", + "romanization": "Wohnheim", + "example_sentence_native": "Er wohnt im Studentenwohnheim.", + "example_sentence_english": "He lives in the student dormitory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14058 + }, + { + "word": "Zivilbevölkerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civilian population", + "romanization": "Zivilbevölkerung", + "example_sentence_native": "Die Zivilbevölkerung litt unter dem Konflikt.", + "example_sentence_english": "The civilian population suffered from the conflict.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14059 + }, + { + "word": "zumachen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to close", + "romanization": "zumachen", + "example_sentence_native": "Bitte mach die Tür zu.", + "example_sentence_english": "Please close the door.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14060 + }, + { + "word": "zusehends", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visibly", + "romanization": "zusehends", + "example_sentence_native": "Sein Zustand verbesserte sich zusehends.", + "example_sentence_english": "His condition improved visibly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 14061 + }, + { + "word": "Abdruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imprint", + "romanization": "Abdruck", + "example_sentence_native": "Er hinterließ einen Abdruck im Sand.", + "example_sentence_english": "He left an imprint in the sand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14064 + }, + { + "word": "abfinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate", + "romanization": "abfinden", + "example_sentence_native": "Man muss sich mit der Situation abfinden.", + "example_sentence_english": "One has to come to terms with the situation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14065 + }, + { + "word": "Abfolge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequence", + "romanization": "Abfolge", + "example_sentence_native": "Die Abfolge der Ereignisse war unklar.", + "example_sentence_english": "The sequence of events was unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14066 + }, + { + "word": "abbrennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burn down", + "romanization": "abbrennen", + "example_sentence_native": "Das alte Haus ist komplett abgebrannt.", + "example_sentence_english": "The old house burned down completely.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "brennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14067 + }, + { + "word": "Adjektiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjective", + "romanization": "Adjektiv", + "example_sentence_native": "Ein Adjektiv beschreibt ein Nomen.", + "example_sentence_english": "An adjective describes a noun.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14068 + }, + { + "word": "angesprochen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addressed", + "romanization": "angesprochen", + "example_sentence_native": "Das angesprochene Thema ist sehr wichtig.", + "example_sentence_english": "The addressed topic is very important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14071 + }, + { + "word": "angestrebt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aimed for", + "romanization": "angestrebt", + "example_sentence_native": "Das angestrebte Ziel wurde erreicht.", + "example_sentence_english": "The desired goal was achieved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14072 + }, + { + "word": "Ansammlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulation", + "romanization": "Ansammlung", + "example_sentence_native": "Es gab eine Ansammlung von Menschen auf dem Platz.", + "example_sentence_english": "There was an accumulation of people in the square.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14073 + }, + { + "word": "Anziehungskraft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attraction", + "romanization": "Anziehungskraft", + "example_sentence_native": "Die Anziehungskraft der Erde hält uns am Boden.", + "example_sentence_english": "The Earth's gravitational pull keeps us on the ground.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14074 + }, + { + "word": "Aufpreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surcharge", + "romanization": "Aufpreis", + "example_sentence_native": "Für die Lieferung wird ein Aufpreis berechnet.", + "example_sentence_english": "A surcharge will be calculated for delivery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14075 + }, + { + "word": "Aufrüstung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rearmament", + "romanization": "Aufrüstung", + "example_sentence_native": "Die Aufrüstung des Militärs war ein kontroverses Thema.", + "example_sentence_english": "The rearmament of the military was a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14076 + }, + { + "word": "Ausdrucksweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manner of expression", + "romanization": "Ausdrucksweise", + "example_sentence_native": "Seine Ausdrucksweise ist sehr präzise.", + "example_sentence_english": "His manner of expression is very precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14077 + }, + { + "word": "austreten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to step out", + "romanization": "austreten", + "example_sentence_native": "Er ist aus dem Verein ausgetreten.", + "example_sentence_english": "He resigned from the club.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14078 + }, + { + "word": "Automatik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatic system", + "romanization": "Automatik", + "example_sentence_native": "Das Auto hat Automatik.", + "example_sentence_english": "The car has automatic transmission.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14079 + }, + { + "word": "automatisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to automate", + "romanization": "automatisieren", + "example_sentence_native": "Wir müssen diesen Prozess automatisieren.", + "example_sentence_english": "We need to automate this process.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14080 + }, + { + "word": "Barbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barbarian", + "romanization": "Barbar", + "example_sentence_native": "Die alten Römer nannten sie Barbaren.", + "example_sentence_english": "The ancient Romans called them barbarians.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14081 + }, + { + "word": "Baubeginn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "start of construction", + "romanization": "Baubeginn", + "example_sentence_native": "Der Baubeginn ist für nächsten Monat geplant.", + "example_sentence_english": "The start of construction is planned for next month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14082 + }, + { + "word": "Bauherr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building owner", + "romanization": "Bauherr", + "example_sentence_native": "Der Bauherr hat die Pläne genehmigt.", + "example_sentence_english": "The building owner approved the plans.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14083 + }, + { + "word": "Begutachtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assessment", + "romanization": "Begutachtung", + "example_sentence_native": "Die Begutachtung des Projekts ist abgeschlossen.", + "example_sentence_english": "The assessment of the project is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14086 + }, + { + "word": "Bekanntheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fame", + "romanization": "Bekanntheit", + "example_sentence_native": "Seine Bekanntheit wuchs schnell.", + "example_sentence_english": "His fame grew quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14088 + }, + { + "word": "beleidigend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offensive", + "romanization": "beleidigend", + "example_sentence_native": "Das war eine sehr beleidigende Bemerkung.", + "example_sentence_english": "That was a very offensive remark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14089 + }, + { + "word": "bemalen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to paint (on)", + "romanization": "bemalen", + "example_sentence_native": "Sie wollte die Wand bemalen.", + "example_sentence_english": "She wanted to paint the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14091 + }, + { + "word": "Besitzerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owner (female)", + "romanization": "Besitzerin", + "example_sentence_native": "Die Besitzerin des Hundes kam.", + "example_sentence_english": "The owner of the dog came.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14092 + }, + { + "word": "bessern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to improve", + "romanization": "bessern", + "example_sentence_native": "Er muss sein Verhalten bessern.", + "example_sentence_english": "He must improve his behavior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14093 + }, + { + "word": "Betreff", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subject (of an email)", + "romanization": "Betreff", + "example_sentence_native": "Bitte geben Sie einen Betreff ein.", + "example_sentence_english": "Please enter a subject.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14094 + }, + { + "word": "Bildungspolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "education policy", + "romanization": "Bildungspolitik", + "example_sentence_native": "Die Bildungspolitik ist ein wichtiges Thema.", + "example_sentence_english": "Education policy is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14096 + }, + { + "word": "brillant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brilliant", + "romanization": "brillant", + "example_sentence_native": "Sie hatte eine brillante Idee.", + "example_sentence_english": "She had a brilliant idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14100 + }, + { + "word": "Bulletin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulletin", + "romanization": "Bulletin", + "example_sentence_native": "Das Bulletin enthielt wichtige Nachrichten.", + "example_sentence_english": "The bulletin contained important news.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14101 + }, + { + "word": "Bundesgebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal territory", + "romanization": "Bundesgebiet", + "example_sentence_native": "Innerhalb des Bundesgebiets gelten bestimmte Gesetze.", + "example_sentence_english": "Certain laws apply within the federal territory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14102 + }, + { + "word": "Bundestagsfraktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parliamentary group (in the Bundestag)", + "romanization": "Bundestagsfraktion", + "example_sentence_native": "Die Bundestagsfraktion traf sich zur Abstimmung.", + "example_sentence_english": "The parliamentary group met for the vote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14103 + }, + { + "word": "Camping", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camping", + "romanization": "Camping", + "example_sentence_native": "Wir lieben Camping in den Bergen.", + "example_sentence_english": "We love camping in the mountains.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14104 + }, + { + "word": "Century", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "century", + "romanization": "Century", + "example_sentence_native": "Das 21. Century begann im Jahr 2001.", + "example_sentence_english": "The 21st century began in 2001.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14105 + }, + { + "word": "Charity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charity", + "romanization": "Charity", + "example_sentence_native": "Sie engagiert sich in der Charity-Arbeit.", + "example_sentence_english": "She is involved in charity work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14106 + }, + { + "word": "chatten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chat", + "romanization": "chatten", + "example_sentence_native": "Wir chatten oft online mit Freunden.", + "example_sentence_english": "We often chat online with friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14107 + }, + { + "word": "Communication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communication", + "romanization": "Communication", + "example_sentence_native": "Gute Communication ist wichtig im Team.", + "example_sentence_english": "Good communication is important in the team.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14110 + }, + { + "word": "Coupé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coupé (car type)", + "romanization": "Coupé", + "example_sentence_native": "Er kaufte ein sportliches Coupé.", + "example_sentence_english": "He bought a sporty coupé.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14111 + }, + { + "word": "Cowboy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cowboy", + "romanization": "Cowboy", + "example_sentence_native": "Der Cowboy ritt in den Sonnenuntergang.", + "example_sentence_english": "The cowboy rode into the sunset.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14112 + }, + { + "word": "Dialektik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialectics", + "romanization": "Dialektik", + "example_sentence_native": "Die Dialektik ist ein wichtiger Begriff in der Philosophie.", + "example_sentence_english": "Dialectics is an important concept in philosophy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14113 + }, + { + "word": "einarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incorporate;to train (someone)", + "romanization": "einarbeiten", + "example_sentence_native": "Wir müssen die neuen Daten in den Bericht einarbeiten.", + "example_sentence_english": "We need to incorporate the new data into the report.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14117 + }, + { + "word": "einplanen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plan for;to schedule", + "romanization": "einplanen", + "example_sentence_native": "Ich muss das Treffen in meinen Kalender einplanen.", + "example_sentence_english": "I need to schedule the meeting in my calendar.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "planen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14118 + }, + { + "word": "einreisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enter (a country);to immigrate", + "romanization": "einreisen", + "example_sentence_native": "Touristen dürfen ohne Visum einreisen.", + "example_sentence_english": "Tourists are allowed to enter without a visa.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "reisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14119 + }, + { + "word": "Ellenbogen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elbow", + "romanization": "Ellenbogen", + "example_sentence_native": "Er stieß sich den Ellenbogen am Tisch.", + "example_sentence_english": "He hit his elbow on the table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14120 + }, + { + "word": "Endstation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final stop;terminus", + "romanization": "Endstation", + "example_sentence_native": "Dies ist die Endstation der Linie 7.", + "example_sentence_english": "This is the final stop of line 7.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14121 + }, + { + "word": "entgegenwirken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to counteract;to oppose", + "romanization": "entgegenwirken", + "example_sentence_native": "Man muss den negativen Auswirkungen entgegenwirken.", + "example_sentence_english": "One must counteract the negative effects.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "entgegen", + "base_verb": "wirken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14122 + }, + { + "word": "Entwicklungsland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developing country", + "romanization": "Entwicklungsland", + "example_sentence_native": "Viele Menschen in Entwicklungsländern leben in Armut.", + "example_sentence_english": "Many people in developing countries live in poverty.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14123 + }, + { + "word": "Erreichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "achievement;attainment", + "romanization": "Erreichung", + "example_sentence_native": "Die Erreichung dieses Ziels erfordert viel Arbeit.", + "example_sentence_english": "The achievement of this goal requires a lot of work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14124 + }, + { + "word": "Ethnie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnic group;ethnicity", + "romanization": "Ethnie", + "example_sentence_native": "Jede Ethnie hat ihre eigene Kultur.", + "example_sentence_english": "Every ethnic group has its own culture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14126 + }, + { + "word": "Etikett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "label;tag", + "romanization": "Etikett", + "example_sentence_native": "Bitte lesen Sie das Etikett sorgfältig durch.", + "example_sentence_english": "Please read the label carefully.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14127 + }, + { + "word": "Fahrkarte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ticket (for travel)", + "romanization": "Fahrkarte", + "example_sentence_native": "Ich brauche eine Fahrkarte nach Berlin.", + "example_sentence_english": "I need a ticket to Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14128 + }, + { + "word": "Faulheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laziness", + "romanization": "Faulheit", + "example_sentence_native": "Faulheit ist keine gute Eigenschaft.", + "example_sentence_english": "Laziness is not a good quality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14129 + }, + { + "word": "Fettsäure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fatty acid", + "romanization": "Fettsäure", + "example_sentence_native": "Ungesättigte Fettsäuren sind wichtig für die Gesundheit.", + "example_sentence_english": "Unsaturated fatty acids are important for health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14132 + }, + { + "word": "Finanzministerium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ministry of Finance", + "romanization": "Finanzministerium", + "example_sentence_native": "Das Finanzministerium hat neue Regeln erlassen.", + "example_sentence_english": "The Ministry of Finance has issued new rules.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14134 + }, + { + "word": "Frauchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(female) owner (of a pet)", + "romanization": "Frauchen", + "example_sentence_native": "Der Hund wartet auf sein Frauchen.", + "example_sentence_english": "The dog is waiting for its owner.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14136 + }, + { + "word": "frontal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontal;head-on", + "romanization": "frontal", + "example_sentence_native": "Es gab einen frontalen Zusammenstoß.", + "example_sentence_english": "There was a frontal collision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14137 + }, + { + "word": "Gear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gear;equipment", + "romanization": "Gear", + "example_sentence_native": "Er hat sein neues Foto-Gear gekauft.", + "example_sentence_english": "He bought his new photo gear.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14139 + }, + { + "word": "gebrochen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broken", + "romanization": "gebrochen", + "example_sentence_native": "Das Glas ist gebrochen.", + "example_sentence_english": "The glass is broken.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14140 + }, + { + "word": "Geländer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railing;banister", + "romanization": "Geländer", + "example_sentence_native": "Das Geländer ist aus Holz.", + "example_sentence_english": "The railing is made of wood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14141 + }, + { + "word": "gerichtet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directed;aimed", + "romanization": "gerichtet", + "example_sentence_native": "Die Aufmerksamkeit war auf ihn gerichtet.", + "example_sentence_english": "The attention was directed at him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14142 + }, + { + "word": "Gerüst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scaffolding;framework", + "romanization": "Gerüst", + "example_sentence_native": "Die Arbeiter bauten ein Gerüst um das Gebäude.", + "example_sentence_english": "The workers built scaffolding around the building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14143 + }, + { + "word": "Gewalttat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act of violence", + "romanization": "Gewalttat", + "example_sentence_native": "Die Polizei ermittelt nach der Gewalttat.", + "example_sentence_english": "The police are investigating after the act of violence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14145 + }, + { + "word": "Grausamkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cruelty", + "romanization": "Grausamkeit", + "example_sentence_native": "Die Grausamkeit des Krieges ist unerträglich.", + "example_sentence_english": "The cruelty of war is unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14146 + }, + { + "word": "Gymnastik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnastics;exercise", + "romanization": "Gymnastik", + "example_sentence_native": "Sie macht jeden Morgen Gymnastik.", + "example_sentence_english": "She does gymnastics every morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14148 + }, + { + "word": "Gänze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirety;whole", + "romanization": "Gänze", + "example_sentence_native": "Er verstand die Situation in ihrer Gänze.", + "example_sentence_english": "He understood the situation in its entirety.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14149 + }, + { + "word": "Henne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hen", + "romanization": "Henne", + "example_sentence_native": "Die Henne legt jeden Tag Eier.", + "example_sentence_english": "The hen lays eggs every day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14152 + }, + { + "word": "Hohn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scorn;mockery", + "romanization": "Hohn", + "example_sentence_native": "Er begegnete ihren Worten mit Hohn.", + "example_sentence_english": "He met her words with scorn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14156 + }, + { + "word": "häufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accumulate;to pile up", + "romanization": "häufen", + "example_sentence_native": "Die Probleme häufen sich.", + "example_sentence_english": "The problems are accumulating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14158 + }, + { + "word": "Interpret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interpreter;performer", + "romanization": "Interpret", + "example_sentence_native": "Der Interpret sang das Lied sehr emotional.", + "example_sentence_english": "The performer sang the song very emotionally.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14162 + }, + { + "word": "Jahrhundertwende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn of the century", + "romanization": "Jahrhundertwende", + "example_sentence_native": "Die Jahrhundertwende brachte viele Veränderungen mit sich.", + "example_sentence_english": "The turn of the century brought many changes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14163 + }, + { + "word": "kandidieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run (for office);to be a candidate", + "romanization": "kandidieren", + "example_sentence_native": "Er möchte für das Amt des Bürgermeisters kandidieren.", + "example_sentence_english": "He wants to run for the office of mayor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14169 + }, + { + "word": "Kennzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "key figure;indicator", + "romanization": "Kennzahl", + "example_sentence_native": "Die Kennzahl zeigt den Erfolg des Projekts.", + "example_sentence_english": "The key figure shows the success of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14170 + }, + { + "word": "Kirmes", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;funfair;carnival", + "romanization": "Kirmes", + "example_sentence_native": "Wir gehen am Wochenende auf die Kirmes.", + "example_sentence_english": "We are going to the fair on the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14171 + }, + { + "word": "Klopapier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet paper", + "romanization": "Klopapier", + "example_sentence_native": "Hast du noch Klopapier?", + "example_sentence_english": "Do you still have toilet paper?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14172 + }, + { + "word": "Kluft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gap;chasm;rift", + "romanization": "Kluft", + "example_sentence_native": "Es gibt eine große Kluft zwischen Arm und Reich.", + "example_sentence_english": "There is a big gap between rich and poor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14173 + }, + { + "word": "Koalitionspartner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coalition partner", + "romanization": "Koalitionspartner", + "example_sentence_native": "Die Parteien suchen einen Koalitionspartner.", + "example_sentence_english": "The parties are looking for a coalition partner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14176 + }, + { + "word": "Kontrahent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opponent;adversary", + "romanization": "Kontrahent", + "example_sentence_native": "Sein Kontrahent war sehr stark.", + "example_sentence_english": "His opponent was very strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14178 + }, + { + "word": "Krampf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cramp;spasm", + "romanization": "Krampf", + "example_sentence_native": "Ich habe einen Krampf im Bein.", + "example_sentence_english": "I have a cramp in my leg.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14179 + }, + { + "word": "Kreisverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roundabout", + "romanization": "Kreisverkehr", + "example_sentence_native": "Fahren Sie vorsichtig durch den Kreisverkehr.", + "example_sentence_english": "Drive carefully through the roundabout.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14180 + }, + { + "word": "kulinarisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culinary", + "romanization": "kulinarisch", + "example_sentence_native": "Die Stadt ist bekannt für ihre kulinarischen Spezialitäten.", + "example_sentence_english": "The city is known for its culinary specialties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14181 + }, + { + "word": "kurzum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in short;in brief", + "romanization": "kurzum", + "example_sentence_native": "Kurzum, es war ein großer Erfolg.", + "example_sentence_english": "In short, it was a great success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 14184 + }, + { + "word": "Landeskirche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regional church (Protestant state church)", + "romanization": "Landeskirche", + "example_sentence_native": "Die Landeskirche spielt eine wichtige Rolle in der Region.", + "example_sentence_english": "The regional church plays an important role in the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14185 + }, + { + "word": "Lava", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lava", + "romanization": "Lava", + "example_sentence_native": "Die Lava floss langsam den Vulkan hinunter.", + "example_sentence_english": "The lava flowed slowly down the volcano.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14186 + }, + { + "word": "Lebensende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "end of life", + "romanization": "Lebensende", + "example_sentence_native": "Er verbrachte sein Lebensende in Ruhe.", + "example_sentence_english": "He spent the end of his life in peace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14189 + }, + { + "word": "lebensgefährlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life-threatening;perilous", + "romanization": "lebensgefährlich", + "example_sentence_native": "Der Unfall war lebensgefährlich.", + "example_sentence_english": "The accident was life-threatening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14190 + }, + { + "word": "lebhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lively;vivid", + "romanization": "lebhaft", + "example_sentence_native": "Sie hat eine sehr lebhafte Fantasie.", + "example_sentence_english": "She has a very vivid imagination.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14191 + }, + { + "word": "Leukämie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leukemia", + "romanization": "Leukämie", + "example_sentence_native": "Leukämie ist eine schwere Krankheit.", + "example_sentence_english": "Leukemia is a serious illness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14192 + }, + { + "word": "limitieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to limit", + "romanization": "limitieren", + "example_sentence_native": "Wir müssen die Ausgaben limitieren.", + "example_sentence_english": "We must limit the expenses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14193 + }, + { + "word": "Lippenstift", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lipstick", + "romanization": "Lippenstift", + "example_sentence_native": "Sie hat einen neuen Lippenstift gekauft.", + "example_sentence_english": "She bought a new lipstick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14195 + }, + { + "word": "Lungenentzündung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pneumonia", + "romanization": "Lungenentzündung", + "example_sentence_native": "Er leidet an einer Lungenentzündung.", + "example_sentence_english": "He suffers from pneumonia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14197 + }, + { + "word": "Löschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deletion;cancellation", + "romanization": "Löschung", + "example_sentence_native": "Die Löschung der Daten wurde bestätigt.", + "example_sentence_english": "The deletion of the data was confirmed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14198 + }, + { + "word": "Machtkampf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power struggle", + "romanization": "Machtkampf", + "example_sentence_native": "Es gab einen Machtkampf um die Führungsposition.", + "example_sentence_english": "There was a power struggle for the leadership position.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14199 + }, + { + "word": "mager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lean;thin;meager", + "romanization": "mager", + "example_sentence_native": "Das Fleisch ist sehr mager.", + "example_sentence_english": "The meat is very lean.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14200 + }, + { + "word": "Mayo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mayonnaise", + "romanization": "Mayo", + "example_sentence_native": "Ich mag Mayo auf meinen Pommes.", + "example_sentence_english": "I like mayo on my fries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14203 + }, + { + "word": "Melancholie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "melancholy", + "romanization": "Melancholie", + "example_sentence_native": "Eine tiefe Melancholie überkam ihn.", + "example_sentence_english": "A deep melancholy overcame him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14205 + }, + { + "word": "Mimik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facial expression;mimicry", + "romanization": "Mimik", + "example_sentence_native": "Ihre Mimik verriet ihre wahren Gefühle.", + "example_sentence_english": "Her facial expression revealed her true feelings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14208 + }, + { + "word": "Misere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misery;predicament", + "romanization": "Misere", + "example_sentence_native": "Er steckte in einer finanziellen Misere.", + "example_sentence_english": "He was in a financial predicament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14209 + }, + { + "word": "Mitstreiter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fellow combatant;comrade;ally", + "romanization": "Mitstreiter", + "example_sentence_native": "Er suchte Mitstreiter für seine Sache.", + "example_sentence_english": "He sought allies for his cause.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14210 + }, + { + "word": "modifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to modify", + "romanization": "modifizieren", + "example_sentence_native": "Wir müssen den Plan modifizieren.", + "example_sentence_english": "We need to modify the plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14211 + }, + { + "word": "Neunziger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nineties (decade);people in their nineties", + "romanization": "Neunziger", + "example_sentence_native": "In den Neunzigern war die Musik anders.", + "example_sentence_english": "In the nineties, the music was different.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14214 + }, + { + "word": "nichtig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "null and void;invalid;trivial", + "romanization": "nichtig", + "example_sentence_native": "Der Vertrag wurde für nichtig erklärt.", + "example_sentence_english": "The contract was declared null and void.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14215 + }, + { + "word": "niederlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lay down;to resign;to put down", + "romanization": "niederlegen", + "example_sentence_native": "Er wollte sein Amt niederlegen.", + "example_sentence_english": "He wanted to resign from his office.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nieder", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14217 + }, + { + "word": "notwendigerweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "necessarily", + "romanization": "notwendigerweise", + "example_sentence_native": "Das ist nicht notwendigerweise wahr.", + "example_sentence_english": "That is not necessarily true.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 14219 + }, + { + "word": "Parfum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfume", + "romanization": "Parfum", + "example_sentence_native": "Ich habe ein neues Parfum gekauft.", + "example_sentence_english": "I bought a new perfume.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14222 + }, + { + "word": "pendeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to commute;to swing", + "romanization": "pendeln", + "example_sentence_native": "Viele Leute pendeln jeden Tag zur Arbeit.", + "example_sentence_english": "Many people commute to work every day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14224 + }, + { + "word": "Philharmonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philharmonic orchestra;hall", + "romanization": "Philharmonie", + "example_sentence_native": "Die Berliner Philharmonie ist weltberühmt.", + "example_sentence_english": "The Berlin Philharmonic is world-famous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14227 + }, + { + "word": "Podest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "podium;platform", + "romanization": "Podest", + "example_sentence_native": "Der Redner stand auf dem Podest.", + "example_sentence_english": "The speaker stood on the podium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14228 + }, + { + "word": "Pollen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pollen", + "romanization": "Pollen", + "example_sentence_native": "Im Frühling gibt es viel Pollen in der Luft.", + "example_sentence_english": "In spring, there is a lot of pollen in the air.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14230 + }, + { + "word": "Popmusik", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pop music", + "romanization": "Popmusik", + "example_sentence_native": "Sie hört gerne Popmusik.", + "example_sentence_english": "She likes to listen to pop music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14231 + }, + { + "word": "ratsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advisable;recommendable", + "romanization": "ratsam", + "example_sentence_native": "Es ist ratsam, früh anzukommen.", + "example_sentence_english": "It is advisable to arrive early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14234 + }, + { + "word": "Regeneration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regeneration;recovery", + "romanization": "Regeneration", + "example_sentence_native": "Nach dem Sport ist Regeneration wichtig.", + "example_sentence_english": "After sports, regeneration is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14235 + }, + { + "word": "Rennstrecke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racetrack", + "romanization": "Rennstrecke", + "example_sentence_native": "Die Formel-1-Autos fahren auf der Rennstrecke.", + "example_sentence_english": "The Formula 1 cars drive on the racetrack.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14236 + }, + { + "word": "republikanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "republican", + "romanization": "republikanisch", + "example_sentence_native": "Er hat republikanische Ansichten.", + "example_sentence_english": "He has republican views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14237 + }, + { + "word": "Riemen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strap;belt", + "romanization": "Riemen", + "example_sentence_native": "Der Riemen der Tasche ist gerissen.", + "example_sentence_english": "The strap of the bag is torn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14240 + }, + { + "word": "Schnupfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cold (illness);sniffles", + "romanization": "Schnupfen", + "example_sentence_native": "Ich habe einen Schnupfen und muss niesen.", + "example_sentence_english": "I have a cold and need to sneeze.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14243 + }, + { + "word": "Schwefel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sulfur", + "romanization": "Schwefel", + "example_sentence_native": "Schwefel ist ein chemisches Element.", + "example_sentence_english": "Sulfur is a chemical element.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14244 + }, + { + "word": "Schwingung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibration;oscillation", + "romanization": "Schwingung", + "example_sentence_native": "Die Schwingung des Motors war deutlich spürbar.", + "example_sentence_english": "The vibration of the engine was clearly noticeable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14245 + }, + { + "word": "schwärmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rave (about);to swarm", + "romanization": "schwärmen", + "example_sentence_native": "Sie schwärmt von ihrem neuen Urlaub.", + "example_sentence_english": "She raves about her new vacation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14246 + }, + { + "word": "Segler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailor;glider (aircraft)", + "romanization": "Segler", + "example_sentence_native": "Der Segler steuerte sein Boot geschickt durch die Wellen.", + "example_sentence_english": "The sailor skillfully steered his boat through the waves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14249 + }, + { + "word": "Sicherheitskraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security guard;officer", + "romanization": "Sicherheitskraft", + "example_sentence_native": "Eine Sicherheitskraft kontrollierte die Ausweise am Eingang.", + "example_sentence_english": "A security guard checked the IDs at the entrance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14250 + }, + { + "word": "Sichtbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visibility", + "romanization": "Sichtbarkeit", + "example_sentence_native": "Die Sichtbarkeit war wegen des Nebels sehr schlecht.", + "example_sentence_english": "The visibility was very poor due to the fog.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14251 + }, + { + "word": "Sichtweite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visibility range;line of sight", + "romanization": "Sichtweite", + "example_sentence_native": "Die Sichtweite auf der Autobahn betrug nur wenige Meter.", + "example_sentence_english": "The visibility range on the highway was only a few meters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14252 + }, + { + "word": "Sozialarbeiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social worker", + "romanization": "Sozialarbeiter", + "example_sentence_native": "Der Sozialarbeiter half der Familie bei ihren Problemen.", + "example_sentence_english": "The social worker helped the family with their problems.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14255 + }, + { + "word": "Species", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "species", + "romanization": "Species", + "example_sentence_native": "Diese Species ist vom Aussterben bedroht.", + "example_sentence_english": "This species is threatened with extinction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14256 + }, + { + "word": "Speisekarte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "menu", + "romanization": "Speisekarte", + "example_sentence_native": "Könnten Sie uns bitte die Speisekarte bringen?", + "example_sentence_english": "Could you please bring us the menu?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14257 + }, + { + "word": "Spielweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playing style;manner of playing", + "romanization": "Spielweise", + "example_sentence_native": "Die Spielweise des Teams war sehr beeindruckend.", + "example_sentence_english": "The team's playing style was very impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14258 + }, + { + "word": "Spirale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spiral", + "romanization": "Spirale", + "example_sentence_native": "Die Treppe hatte die Form einer Spirale.", + "example_sentence_english": "The staircase had the shape of a spiral.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14259 + }, + { + "word": "Stolperstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stumbling block", + "romanization": "Stolperstein", + "example_sentence_native": "Der Stolperstein auf dem Weg machte das Gehen schwierig.", + "example_sentence_english": "The stumbling block on the path made walking difficult.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14260 + }, + { + "word": "Tau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dew", + "romanization": "Tau", + "example_sentence_native": "Am Morgen lag Tau auf den Grashalmen.", + "example_sentence_english": "In the morning, dew lay on the blades of grass.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14261 + }, + { + "word": "Tierpark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "animal park;zoo", + "romanization": "Tierpark", + "example_sentence_native": "Wir besuchen am Wochenende den Tierpark.", + "example_sentence_english": "We are visiting the animal park on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14263 + }, + { + "word": "tolerieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tolerate", + "romanization": "tolerieren", + "example_sentence_native": "Man sollte andere Meinungen tolerieren.", + "example_sentence_english": "One should tolerate other opinions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14264 + }, + { + "word": "Tornado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tornado", + "romanization": "Tornado", + "example_sentence_native": "Ein Tornado kann große Zerstörung anrichten.", + "example_sentence_english": "A tornado can cause great destruction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14265 + }, + { + "word": "tragbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portable;wearable;bearable", + "romanization": "tragbar", + "example_sentence_native": "Das ist eine sehr tragbare Lösung für das Problem.", + "example_sentence_english": "That is a very portable solution for the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14266 + }, + { + "word": "Trainerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female trainer;coach", + "romanization": "Trainerin", + "example_sentence_native": "Die Trainerin hat uns viel beigebracht.", + "example_sentence_english": "The female trainer taught us a lot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14267 + }, + { + "word": "Tresen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counter;bar", + "romanization": "Tresen", + "example_sentence_native": "Er saß am Tresen und trank ein Bier.", + "example_sentence_english": "He sat at the counter and drank a beer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14268 + }, + { + "word": "Twist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twist", + "romanization": "Twist", + "example_sentence_native": "Die Geschichte hatte einen unerwarteten Twist.", + "example_sentence_english": "The story had an unexpected twist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14269 + }, + { + "word": "Typus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "type;kind;archetype", + "romanization": "Typus", + "example_sentence_native": "Dieser Typus von Mensch ist selten.", + "example_sentence_english": "This type of person is rare.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14270 + }, + { + "word": "Unterwerfung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "submission;subjugation", + "romanization": "Unterwerfung", + "example_sentence_native": "Die Unterwerfung unter fremde Regeln war schwer.", + "example_sentence_english": "The submission to foreign rules was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14271 + }, + { + "word": "variabel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variable;changeable", + "romanization": "variabel", + "example_sentence_native": "Die Kosten sind variabel und hängen vom Verbrauch ab.", + "example_sentence_english": "The costs are variable and depend on consumption.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14272 + }, + { + "word": "Verdrängung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "displacement;repression;ousting", + "romanization": "Verdrängung", + "example_sentence_native": "Die Verdrängung von alten Technologien ist oft notwendig.", + "example_sentence_english": "The displacement of old technologies is often necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14273 + }, + { + "word": "verschollen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "missing;lost (presumed dead)", + "romanization": "verschollen", + "example_sentence_native": "Das Schiff gilt seit Wochen als verschollen.", + "example_sentence_english": "The ship has been considered missing for weeks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14274 + }, + { + "word": "Verursacher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpetrator;cause;originator", + "romanization": "Verursacher", + "example_sentence_native": "Der Verursacher des Unfalls wurde ermittelt.", + "example_sentence_english": "The perpetrator of the accident was identified.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14275 + }, + { + "word": "Visitenkarte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business card", + "romanization": "Visitenkarte", + "example_sentence_native": "Er gab mir seine Visitenkarte.", + "example_sentence_english": "He gave me his business card.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14277 + }, + { + "word": "visual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visual", + "romanization": "visual", + "example_sentence_native": "Die Präsentation enthielt viele visuelle Elemente.", + "example_sentence_english": "The presentation contained many visual elements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14279 + }, + { + "word": "Vollmacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power of attorney", + "romanization": "Vollmacht", + "example_sentence_native": "Er hat mir eine Vollmacht erteilt.", + "example_sentence_english": "He granted me a power of attorney.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14280 + }, + { + "word": "wahrhaftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truly;genuinely", + "romanization": "wahrhaftig", + "example_sentence_native": "Das ist eine wahrhaftige Geschichte.", + "example_sentence_english": "That is a truly genuine story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14281 + }, + { + "word": "weglassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to omit;to leave out", + "romanization": "weglassen", + "example_sentence_native": "Du kannst diesen Satz weglassen.", + "example_sentence_english": "You can omit this sentence.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14282 + }, + { + "word": "Wertschöpfung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "value creation;value added", + "romanization": "Wertschöpfung", + "example_sentence_native": "Die Wertschöpfung ist entscheidend für den Erfolg.", + "example_sentence_english": "Value creation is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14283 + }, + { + "word": "widerspiegeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reflect", + "romanization": "widerspiegeln", + "example_sentence_native": "Seine Augen spiegeln seine Freude wider.", + "example_sentence_english": "His eyes reflect his joy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14284 + }, + { + "word": "Wissenswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worth knowing", + "romanization": "Wissenswert", + "example_sentence_native": "Hier sind einige wissenswerte Fakten.", + "example_sentence_english": "Here are some facts worth knowing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14287 + }, + { + "word": "Zar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tsar;Czar", + "romanization": "Zar", + "example_sentence_native": "Der letzte Zar Russlands war Nikolaus II.", + "example_sentence_english": "The last Tsar of Russia was Nicholas II.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14290 + }, + { + "word": "Zecke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tick (insect)", + "romanization": "Zecke", + "example_sentence_native": "Nach dem Spaziergang hatte er eine Zecke.", + "example_sentence_english": "After the walk, he had a tick.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14291 + }, + { + "word": "Zeppelin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Zeppelin (airship)", + "romanization": "Zeppelin", + "example_sentence_native": "Der Zeppelin Hindenburg war ein berühmtes Luftschiff.", + "example_sentence_english": "The Zeppelin Hindenburg was a famous airship.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14293 + }, + { + "word": "Zwanziger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twenties (decade);person in their twenties", + "romanization": "Zwanziger", + "example_sentence_native": "Die Zwanziger Jahre waren eine aufregende Zeit.", + "example_sentence_english": "The twenties were an exciting time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14294 + }, + { + "word": "abgebildet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depicted;illustrated", + "romanization": "abgebildet", + "example_sentence_native": "Das abgebildete Tier ist ein Löwe.", + "example_sentence_english": "The animal depicted is a lion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14296 + }, + { + "word": "abdrucken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to print;to publish", + "romanization": "abdrucken", + "example_sentence_native": "Die Zeitung wird den Artikel abdrucken.", + "example_sentence_english": "The newspaper will print the article.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "drucken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14297 + }, + { + "word": "abrupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abrupt;sudden", + "romanization": "abrupt", + "example_sentence_native": "Die Bewegung war abrupt und unerwartet.", + "example_sentence_english": "The movement was abrupt and unexpected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14298 + }, + { + "word": "Abwägung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consideration;deliberation", + "romanization": "Abwägung", + "example_sentence_native": "Nach sorgfältiger Abwägung traf er eine Entscheidung.", + "example_sentence_english": "After careful consideration, he made a decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14299 + }, + { + "word": "Achtziger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eighties", + "romanization": "Achtziger", + "example_sentence_native": "In den Achtzigern war die Musik sehr vielfältig.", + "example_sentence_english": "In the eighties, the music was very diverse.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14300 + }, + { + "word": "Aktionstag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "action day", + "romanization": "Aktionstag", + "example_sentence_native": "Heute ist ein Aktionstag für den Umweltschutz.", + "example_sentence_english": "Today is an action day for environmental protection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14303 + }, + { + "word": "Altbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old building", + "romanization": "Altbau", + "example_sentence_native": "Wir wohnen in einem schönen Altbau.", + "example_sentence_english": "We live in a beautiful old building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14304 + }, + { + "word": "ambulant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outpatient", + "romanization": "ambulant", + "example_sentence_native": "Die Behandlung erfolgt ambulant.", + "example_sentence_english": "The treatment is carried out on an outpatient basis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14305 + }, + { + "word": "angewachsen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grown on", + "romanization": "angewachsen", + "example_sentence_native": "Die Pflanze ist am Felsen angewachsen.", + "example_sentence_english": "The plant has grown on the rock.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14307 + }, + { + "word": "Attribut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attribute", + "romanization": "Attribut", + "example_sentence_native": "Das Attribut beschreibt eine Eigenschaft.", + "example_sentence_english": "The attribute describes a characteristic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14311 + }, + { + "word": "aufbereiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to process", + "romanization": "aufbereiten", + "example_sentence_native": "Wir müssen die Daten neu aufbereiten.", + "example_sentence_english": "We need to reprocess the data.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "bereiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14312 + }, + { + "word": "Aufbereitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing", + "romanization": "Aufbereitung", + "example_sentence_native": "Die Aufbereitung des Wassers ist wichtig.", + "example_sentence_english": "The processing of the water is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14313 + }, + { + "word": "Aufbewahrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storage", + "romanization": "Aufbewahrung", + "example_sentence_native": "Die Dokumente sind zur Aufbewahrung im Archiv.", + "example_sentence_english": "The documents are in the archive for safekeeping.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14314 + }, + { + "word": "auferlegen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to impose", + "romanization": "auferlegen", + "example_sentence_native": "Dem Unternehmen wurde eine Strafe auferlegt.", + "example_sentence_english": "A penalty was imposed on the company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14315 + }, + { + "word": "Aufwertung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revaluation", + "romanization": "Aufwertung", + "example_sentence_native": "Die Aufwertung der Währung hat Vorteile.", + "example_sentence_english": "The revaluation of the currency has advantages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14316 + }, + { + "word": "Autorin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "author (female)", + "romanization": "Autorin", + "example_sentence_native": "Die Autorin liest aus ihrem neuen Buch vor.", + "example_sentence_english": "The author reads from her new book.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14317 + }, + { + "word": "Baureihe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "series;model range", + "romanization": "Baureihe", + "example_sentence_native": "Diese Baureihe von Autos ist sehr beliebt.", + "example_sentence_english": "This model range of cars is very popular.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14320 + }, + { + "word": "beilegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to settle;to enclose", + "romanization": "beilegen", + "example_sentence_native": "Sie konnten ihren Streit beilegen.", + "example_sentence_english": "They could settle their dispute.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14322 + }, + { + "word": "bekloppt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;nuts (informal)", + "romanization": "bekloppt", + "example_sentence_native": "Bist du bekloppt?", + "example_sentence_english": "Are you crazy?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14323 + }, + { + "word": "Berufsgruppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional group;occupational group", + "romanization": "Berufsgruppe", + "example_sentence_native": "Diese Berufsgruppe hat hohe Anforderungen.", + "example_sentence_english": "This professional group has high demands.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14324 + }, + { + "word": "berüchtigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notorious;infamous", + "romanization": "berüchtigt", + "example_sentence_native": "Er ist für seine Witze berüchtigt.", + "example_sentence_english": "He is notorious for his jokes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14325 + }, + { + "word": "besiegeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to seal;to confirm", + "romanization": "besiegeln", + "example_sentence_native": "Sie besiegelten den Vertrag mit ihrer Unterschrift.", + "example_sentence_english": "They sealed the contract with their signature.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14326 + }, + { + "word": "Blitzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed camera;radar trap", + "romanization": "Blitzer", + "example_sentence_native": "Vorsicht, da ist ein Blitzer!", + "example_sentence_english": "Caution, there's a speed camera!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14328 + }, + { + "word": "bluten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bleed", + "romanization": "bluten", + "example_sentence_native": "Er hat sich geschnitten und blutet.", + "example_sentence_english": "He cut himself and is bleeding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14329 + }, + { + "word": "brauchbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usable;useful;serviceable", + "romanization": "brauchbar", + "example_sentence_native": "Diese alte Maschine ist immer noch brauchbar.", + "example_sentence_english": "This old machine is still usable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14330 + }, + { + "word": "Bundestrainer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national coach (e.g.;for a national sports team)", + "romanization": "Bundestrainer", + "example_sentence_native": "Der Bundestrainer hat die Mannschaft nominiert.", + "example_sentence_english": "The national coach nominated the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14333 + }, + { + "word": "Comedian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comedian", + "romanization": "Comedian", + "example_sentence_native": "Der Comedian war sehr lustig.", + "example_sentence_english": "The comedian was very funny.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14336 + }, + { + "word": "Diplomarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diploma thesis;master's thesis", + "romanization": "Diplomarbeit", + "example_sentence_native": "Sie schreibt gerade ihre Diplomarbeit.", + "example_sentence_english": "She is currently writing her diploma thesis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14338 + }, + { + "word": "disqualifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disqualify", + "romanization": "disqualifizieren", + "example_sentence_native": "Der Athlet wurde disqualifiziert.", + "example_sentence_english": "The athlete was disqualified.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14339 + }, + { + "word": "Duett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duet", + "romanization": "Duett", + "example_sentence_native": "Sie sangen ein wunderschönes Duett.", + "example_sentence_english": "They sang a beautiful duet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14341 + }, + { + "word": "Durchsuchung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "search;raid", + "romanization": "Durchsuchung", + "example_sentence_native": "Die Polizei führte eine Durchsuchung des Hauses durch.", + "example_sentence_english": "The police conducted a search of the house.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14343 + }, + { + "word": "Ehegatte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spouse (male)", + "romanization": "Ehegatte", + "example_sentence_native": "Ihr Ehegatte ist Arzt.", + "example_sentence_english": "Her spouse is a doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14344 + }, + { + "word": "Eichel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acorn", + "romanization": "Eichel", + "example_sentence_native": "Das Eichhörnchen sammelte Eicheln für den Winter.", + "example_sentence_english": "The squirrel collected acorns for the winter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14345 + }, + { + "word": "Einkaufswagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping cart", + "romanization": "Einkaufswagen", + "example_sentence_native": "Wir brauchen einen Einkaufswagen für den Großeinkauf.", + "example_sentence_english": "We need a shopping cart for the big shopping trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14346 + }, + { + "word": "elterlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parental", + "romanization": "elterlich", + "example_sentence_native": "Sie erhielt elterliche Unterstützung.", + "example_sentence_english": "She received parental support.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14347 + }, + { + "word": "Erbschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inheritance", + "romanization": "Erbschaft", + "example_sentence_native": "Er erhielt eine große Erbschaft von seinem Onkel.", + "example_sentence_english": "He received a large inheritance from his uncle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14348 + }, + { + "word": "Exponat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibit;exhibit item", + "romanization": "Exponat", + "example_sentence_native": "Das neue Exponat zieht viele Besucher an.", + "example_sentence_english": "The new exhibit attracts many visitors.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14349 + }, + { + "word": "Exposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exposition;exposure;exhibition", + "romanization": "Exposition", + "example_sentence_native": "Die Exposition des Themas war sehr klar.", + "example_sentence_english": "The exposition of the topic was very clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14350 + }, + { + "word": "Flüchtlingslager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee camp", + "romanization": "Flüchtlingslager", + "example_sentence_native": "Viele Menschen leben in einem Flüchtlingslager.", + "example_sentence_english": "Many people live in a refugee camp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14351 + }, + { + "word": "flüstern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to whisper", + "romanization": "flüstern", + "example_sentence_native": "Sie begann, ihm ein Geheimnis ins Ohr zu flüstern.", + "example_sentence_english": "She began to whisper a secret into his ear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14352 + }, + { + "word": "freisetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to release;to set free", + "romanization": "freisetzen", + "example_sentence_native": "Die Fabrik setzt schädliche Gase frei.", + "example_sentence_english": "The factory releases harmful gases.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "frei", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14353 + }, + { + "word": "freiheitlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberal;freedom-loving", + "romanization": "freiheitlich", + "example_sentence_native": "Er vertritt freiheitliche Werte.", + "example_sentence_english": "He represents liberal values.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14354 + }, + { + "word": "Fries", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frieze", + "romanization": "Fries", + "example_sentence_native": "Der Fries am Gebäude war reich verziert.", + "example_sentence_english": "The frieze on the building was richly decorated.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14356 + }, + { + "word": "Fundort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discovery site;place of discovery", + "romanization": "Fundort", + "example_sentence_native": "Der Fundort der alten Münzen ist geheim.", + "example_sentence_english": "The discovery site of the old coins is secret.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14357 + }, + { + "word": "förderlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficial;conducive", + "romanization": "förderlich", + "example_sentence_native": "Regelmäßige Bewegung ist der Gesundheit förderlich.", + "example_sentence_english": "Regular exercise is beneficial to health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14359 + }, + { + "word": "Gebilde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structure;formation", + "romanization": "Gebilde", + "example_sentence_native": "Das Gebilde aus Eis war beeindruckend.", + "example_sentence_english": "The ice formation was impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14361 + }, + { + "word": "küren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to choose;to elect", + "romanization": "küren", + "example_sentence_native": "Sie werden den Sieger küren.", + "example_sentence_english": "They will choose the winner.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14362 + }, + { + "word": "lähmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to paralyze;to cripple", + "romanization": "lähmen", + "example_sentence_native": "Der Schock lähmte ihn.", + "example_sentence_english": "The shock paralyzed him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14363 + }, + { + "word": "Gemüt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mind;disposition;temperament", + "romanization": "Gemüt", + "example_sentence_native": "Er hat ein ruhiges Gemüt.", + "example_sentence_english": "He has a calm disposition.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14364 + }, + { + "word": "Genugtuung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satisfaction;gratification", + "romanization": "Genugtuung", + "example_sentence_native": "Es war eine große Genugtuung für ihn.", + "example_sentence_english": "It was a great satisfaction for him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14365 + }, + { + "word": "Gesamtkosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "total costs", + "romanization": "Gesamtkosten", + "example_sentence_native": "Die Gesamtkosten des Projekts waren hoch.", + "example_sentence_english": "The total costs of the project were high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14368 + }, + { + "word": "Gestank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stench;foul smell", + "romanization": "Gestank", + "example_sentence_native": "Der Gestank war unerträglich.", + "example_sentence_english": "The stench was unbearable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14369 + }, + { + "word": "strecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stretch;to extend", + "romanization": "strecken", + "example_sentence_native": "Er musste sich strecken, um es zu erreichen.", + "example_sentence_english": "He had to stretch to reach it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14370 + }, + { + "word": "stressen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stress (out);to hassle", + "romanization": "stressen", + "example_sentence_native": "Lass dich nicht stressen.", + "example_sentence_english": "Don't let yourself get stressed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14371 + }, + { + "word": "getreu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "faithful;true (to)", + "romanization": "getreu", + "example_sentence_native": "Er blieb seinen Prinzipien getreu.", + "example_sentence_english": "He remained true to his principles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14372 + }, + { + "word": "Gewähr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guarantee;assurance", + "romanization": "Gewähr", + "example_sentence_native": "Wir können keine Gewähr für die Richtigkeit übernehmen.", + "example_sentence_english": "We cannot give any guarantee for the correctness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14373 + }, + { + "word": "geöffnet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "open;opened", + "romanization": "geöffnet", + "example_sentence_native": "Die Tür ist geöffnet.", + "example_sentence_english": "The door is open.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14374 + }, + { + "word": "Glasfaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiber optic;fiberglass", + "romanization": "Glasfaser", + "example_sentence_native": "Das Internet wird über Glasfaser übertragen.", + "example_sentence_english": "The internet is transmitted via fiber optic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14375 + }, + { + "word": "gleichsetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equate;to put on the same level", + "romanization": "gleichsetzen", + "example_sentence_native": "Man kann diese beiden Dinge nicht gleichsetzen.", + "example_sentence_english": "You cannot equate these two things.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "gleich", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14376 + }, + { + "word": "Glühwein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mulled wine", + "romanization": "Glühwein", + "example_sentence_native": "Auf dem Weihnachtsmarkt trinken wir Glühwein.", + "example_sentence_english": "At the Christmas market, we drink mulled wine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14377 + }, + { + "word": "Gong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gong", + "romanization": "Gong", + "example_sentence_native": "Der Gong ertönte zum Ende der Runde.", + "example_sentence_english": "The gong sounded at the end of the round.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14378 + }, + { + "word": "Grafikkarte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphics card", + "romanization": "Grafikkarte", + "example_sentence_native": "Für dieses Spiel brauchst du eine gute Grafikkarte.", + "example_sentence_english": "For this game, you need a good graphics card.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14379 + }, + { + "word": "Halbmarathon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half marathon", + "romanization": "Halbmarathon", + "example_sentence_native": "Er trainiert für einen Halbmarathon.", + "example_sentence_english": "He is training for a half marathon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14381 + }, + { + "word": "Hamster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hamster", + "romanization": "Hamster", + "example_sentence_native": "Mein Hamster schläft den ganzen Tag.", + "example_sentence_english": "My hamster sleeps all day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14382 + }, + { + "word": "Heimatverein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local heritage association", + "romanization": "Heimatverein", + "example_sentence_native": "Er ist Mitglied im Heimatverein.", + "example_sentence_english": "He is a member of the local heritage association.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14384 + }, + { + "word": "Hektik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hectic rush", + "romanization": "Hektik", + "example_sentence_native": "In der Hektik des Alltags vergisst man vieles.", + "example_sentence_english": "In the hectic rush of everyday life, one forgets many things.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14385 + }, + { + "word": "hinfahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drive;go there", + "romanization": "hinfahren", + "example_sentence_native": "Wir müssen noch zum Bahnhof hinfahren.", + "example_sentence_english": "We still have to drive to the train station.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14386 + }, + { + "word": "hochgradig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "highly", + "romanization": "hochgradig", + "example_sentence_native": "Das ist hochgradig unwahrscheinlich.", + "example_sentence_english": "That is highly unlikely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14387 + }, + { + "word": "Hooligan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hooligan", + "romanization": "Hooligan", + "example_sentence_native": "Die Polizei verhaftete mehrere Hooligans.", + "example_sentence_english": "The police arrested several hooligans.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14388 + }, + { + "word": "Inanspruchnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "utilization", + "romanization": "Inanspruchnahme", + "example_sentence_native": "Die Inanspruchnahme der Dienstleistung ist kostenpflichtig.", + "example_sentence_english": "The utilization of the service is subject to a fee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14390 + }, + { + "word": "Inbegriff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epitome", + "romanization": "Inbegriff", + "example_sentence_native": "Er ist der Inbegriff von Eleganz.", + "example_sentence_english": "He is the epitome of elegance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14391 + }, + { + "word": "Ingwer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ginger", + "romanization": "Ingwer", + "example_sentence_native": "Ich mag Tee mit frischem Ingwer.", + "example_sentence_english": "I like tea with fresh ginger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14392 + }, + { + "word": "inhaftiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprisoned", + "romanization": "inhaftiert", + "example_sentence_native": "Der Verdächtige wurde inhaftiert.", + "example_sentence_english": "The suspect was imprisoned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14393 + }, + { + "word": "Jungle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jungle", + "romanization": "Jungle", + "example_sentence_native": "Der Jungle ist voller exotischer Tiere.", + "example_sentence_english": "The jungle is full of exotic animals.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14396 + }, + { + "word": "Kalkül", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "calculation", + "romanization": "Kalkül", + "example_sentence_native": "Sein Handeln war Teil eines politischen Kalküls.", + "example_sentence_english": "His actions were part of a political calculation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14397 + }, + { + "word": "Katholizismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catholicism", + "romanization": "Katholizismus", + "example_sentence_native": "Der Katholizismus ist eine große Weltreligion.", + "example_sentence_english": "Catholicism is a major world religion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14400 + }, + { + "word": "Klarinette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarinet", + "romanization": "Klarinette", + "example_sentence_native": "Sie spielt seit fünf Jahren Klarinette.", + "example_sentence_english": "She has been playing the clarinet for five years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14402 + }, + { + "word": "Kohlenstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbon", + "romanization": "Kohlenstoff", + "example_sentence_native": "Kohlenstoff ist ein grundlegendes Element des Lebens.", + "example_sentence_english": "Carbon is a fundamental element of life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14403 + }, + { + "word": "Kolben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piston;flask;cob", + "romanization": "Kolben", + "example_sentence_native": "Der Kolben bewegt sich im Zylinder auf und ab.", + "example_sentence_english": "The piston moves up and down in the cylinder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14404 + }, + { + "word": "Koller", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frenzy;rage", + "romanization": "Koller", + "example_sentence_native": "Er bekam einen Koller, als er die Nachricht hörte.", + "example_sentence_english": "He got into a frenzy when he heard the news.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14405 + }, + { + "word": "Konkurs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy;insolvency", + "romanization": "Konkurs", + "example_sentence_native": "Das Unternehmen musste Konkurs anmelden.", + "example_sentence_english": "The company had to file for bankruptcy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14406 + }, + { + "word": "kontraproduktiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterproductive", + "romanization": "kontraproduktiv", + "example_sentence_native": "Diese Maßnahme ist kontraproduktiv für unsere Ziele.", + "example_sentence_english": "This measure is counterproductive to our goals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14407 + }, + { + "word": "kostbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precious;valuable", + "romanization": "kostbar", + "example_sentence_native": "Diese alte Uhr ist sehr kostbar.", + "example_sentence_english": "This old watch is very precious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14408 + }, + { + "word": "Kreisverband", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district association;district branch", + "romanization": "Kreisverband", + "example_sentence_native": "Der Kreisverband hat eine neue Satzung verabschiedet.", + "example_sentence_english": "The district association has adopted new statutes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14409 + }, + { + "word": "labern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to babble;to blather", + "romanization": "labern", + "example_sentence_native": "Hör auf zu labern und komm zum Punkt!", + "example_sentence_english": "Stop babbling and get to the point!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14411 + }, + { + "word": "Lithium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lithium", + "romanization": "Lithium", + "example_sentence_native": "Lithium wird in Batterien verwendet.", + "example_sentence_english": "Lithium is used in batteries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14412 + }, + { + "word": "Loop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loop", + "romanization": "Loop", + "example_sentence_native": "Der Song hat einen eingängigen Loop.", + "example_sentence_english": "The song has a catchy loop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14413 + }, + { + "word": "läuten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ring;to chime", + "romanization": "läuten", + "example_sentence_native": "Die Kirchenglocken läuten jeden Sonntag.", + "example_sentence_english": "The church bells ring every Sunday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14417 + }, + { + "word": "Magnesium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnesium", + "romanization": "Magnesium", + "example_sentence_native": "Magnesium ist wichtig für die Muskelfunktion.", + "example_sentence_english": "Magnesium is important for muscle function.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14418 + }, + { + "word": "mahnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to admonish;to urge;to remind (of payment)", + "romanization": "mahnen", + "example_sentence_native": "Er mahnte sie zur Vorsicht.", + "example_sentence_english": "He admonished her to be careful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14419 + }, + { + "word": "Masturbation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "masturbation", + "romanization": "Masturbation", + "example_sentence_native": "Masturbation ist eine Form der sexuellen Selbstbefriedigung.", + "example_sentence_english": "Masturbation is a form of sexual self-gratification.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14422 + }, + { + "word": "Medienbericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "media report", + "romanization": "Medienbericht", + "example_sentence_native": "Der Medienbericht enthüllte neue Details über den Skandal.", + "example_sentence_english": "The media report revealed new details about the scandal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14424 + }, + { + "word": "missen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to miss (do without)", + "romanization": "missen", + "example_sentence_native": "Ich kann diese Gelegenheit nicht missen.", + "example_sentence_english": "I cannot miss this opportunity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14427 + }, + { + "word": "mithin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consequently;therefore", + "romanization": "mithin", + "example_sentence_native": "Er hatte keine Zeit, mithin konnte er nicht kommen.", + "example_sentence_english": "He had no time, consequently he could not come.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 14428 + }, + { + "word": "Monitoring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monitoring", + "romanization": "Monitoring", + "example_sentence_native": "Das Monitoring der Daten ist entscheidend für den Erfolg.", + "example_sentence_english": "The monitoring of the data is crucial for success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14429 + }, + { + "word": "Mähre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nag;old horse", + "romanization": "Mähre", + "example_sentence_native": "Die alte Mähre zog den Karren langsam den Hügel hinauf.", + "example_sentence_english": "The old nag slowly pulled the cart up the hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14432 + }, + { + "word": "nahtlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seamless", + "romanization": "nahtlos", + "example_sentence_native": "Der Übergang war nahtlos.", + "example_sentence_english": "The transition was seamless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14433 + }, + { + "word": "Naivität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naivety", + "romanization": "Naivität", + "example_sentence_native": "Ihre Naivität überraschte mich.", + "example_sentence_english": "Her naivety surprised me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14434 + }, + { + "word": "nordamerikanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North American", + "romanization": "nordamerikanisch", + "example_sentence_native": "Er hat einen nordamerikanischen Akzent.", + "example_sentence_english": "He has a North American accent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14435 + }, + { + "word": "Nährstoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutrient", + "romanization": "Nährstoff", + "example_sentence_native": "Vitamine sind wichtige Nährstoffe für den Körper.", + "example_sentence_english": "Vitamins are important nutrients for the body.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14438 + }, + { + "word": "Oberarzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senior physician;chief resident", + "romanization": "Oberarzt", + "example_sentence_native": "Der Oberarzt erklärte die Diagnose.", + "example_sentence_english": "The senior physician explained the diagnosis.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14439 + }, + { + "word": "Oberteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "top (clothing)", + "romanization": "Oberteil", + "example_sentence_native": "Sie trägt ein schönes Oberteil.", + "example_sentence_english": "She is wearing a beautiful top.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14440 + }, + { + "word": "Odyssee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "odyssey", + "romanization": "Odyssee", + "example_sentence_native": "Die Reise war eine wahre Odyssee.", + "example_sentence_english": "The journey was a true odyssey.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14441 + }, + { + "word": "Ohrring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earring", + "romanization": "Ohrring", + "example_sentence_native": "Sie hat einen neuen Ohrring gekauft.", + "example_sentence_english": "She bought a new earring.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14442 + }, + { + "word": "palästinensisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Palestinian", + "romanization": "palästinensisch", + "example_sentence_native": "Er sprach über die palästinensische Kultur.", + "example_sentence_english": "He spoke about Palestinian culture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14443 + }, + { + "word": "propagieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to propagate;to advocate", + "romanization": "propagieren", + "example_sentence_native": "Sie propagieren neue Ideen.", + "example_sentence_english": "They propagate new ideas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14448 + }, + { + "word": "Publishing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publishing", + "romanization": "Publishing", + "example_sentence_native": "Er arbeitet im Bereich Publishing.", + "example_sentence_english": "He works in the publishing sector.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14449 + }, + { + "word": "Punktzahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "score;points", + "romanization": "Punktzahl", + "example_sentence_native": "Seine Punktzahl war sehr hoch.", + "example_sentence_english": "His score was very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14450 + }, + { + "word": "rasten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rest;to take a break", + "romanization": "rasten", + "example_sentence_native": "Wir müssen rasten, bevor wir weitergehen.", + "example_sentence_english": "We need to rest before we continue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14451 + }, + { + "word": "Raumstation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "space station", + "romanization": "Raumstation", + "example_sentence_native": "Die Astronauten leben auf der Raumstation.", + "example_sentence_english": "The astronauts live on the space station.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14452 + }, + { + "word": "relativieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to relativize;to put into perspective", + "romanization": "relativieren", + "example_sentence_native": "Man muss diese Aussage relativieren.", + "example_sentence_english": "One must relativize this statement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14454 + }, + { + "word": "Remake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remake", + "romanization": "Remake", + "example_sentence_native": "Das ist ein Remake eines alten Films.", + "example_sentence_english": "That is a remake of an old film.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14455 + }, + { + "word": "Saisonstart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start of the season", + "romanization": "Saisonstart", + "example_sentence_native": "Der Saisonstart war sehr erfolgreich.", + "example_sentence_english": "The start of the season was very successful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14458 + }, + { + "word": "Schar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flock;crowd", + "romanization": "Schar", + "example_sentence_native": "Eine Schar Vögel flog über den Himmel.", + "example_sentence_english": "A flock of birds flew across the sky.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14460 + }, + { + "word": "Schiefer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slate", + "romanization": "Schiefer", + "example_sentence_native": "Das Dach ist mit Schiefer gedeckt.", + "example_sentence_english": "The roof is covered with slate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14461 + }, + { + "word": "schleichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sneak;to creep", + "romanization": "schleichen", + "example_sentence_native": "Die Katze schlich leise durch den Garten.", + "example_sentence_english": "The cat crept quietly through the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14462 + }, + { + "word": "sechzehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixteen", + "romanization": "sechzehn", + "example_sentence_native": "Er ist sechzehn Jahre alt.", + "example_sentence_english": "He is sixteen years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 14463 + }, + { + "word": "Sekretariat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretariat;office", + "romanization": "Sekretariat", + "example_sentence_native": "Bitte wenden Sie sich an das Sekretariat.", + "example_sentence_english": "Please contact the secretariat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14464 + }, + { + "word": "Sharing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharing", + "romanization": "Sharing", + "example_sentence_native": "Das Sharing von Daten ist heutzutage üblich.", + "example_sentence_english": "Data sharing is common nowadays.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14465 + }, + { + "word": "Sims", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ledge;sill", + "romanization": "Sims", + "example_sentence_native": "Eine Katze saß auf dem Fenster-Sims.", + "example_sentence_english": "A cat sat on the window ledge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14466 + }, + { + "word": "Sowjet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Soviet", + "romanization": "Sowjet", + "example_sentence_native": "Die Sowjetunion existierte bis 1991.", + "example_sentence_english": "The Soviet Union existed until 1991.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14468 + }, + { + "word": "Speaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker", + "romanization": "Speaker", + "example_sentence_native": "Der Speaker hielt eine beeindruckende Rede.", + "example_sentence_english": "The speaker gave an impressive speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14469 + }, + { + "word": "spezialisiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialized", + "romanization": "spezialisiert", + "example_sentence_native": "Er ist auf dieses Gebiet spezialisiert.", + "example_sentence_english": "He is specialized in this field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14470 + }, + { + "word": "spärlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sparse;meager", + "romanization": "spärlich", + "example_sentence_native": "Die Informationen waren spärlich.", + "example_sentence_english": "The information was sparse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14471 + }, + { + "word": "Staatsstrasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state road;main road", + "romanization": "Staatsstrasse", + "example_sentence_native": "Die Staatsstrasse führt direkt durch das Dorf.", + "example_sentence_english": "The state road leads directly through the village.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14473 + }, + { + "word": "Stadtkirche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city church", + "romanization": "Stadtkirche", + "example_sentence_native": "Die Stadtkirche ist ein Wahrzeichen der Stadt.", + "example_sentence_english": "The city church is a landmark of the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14474 + }, + { + "word": "Steel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steel", + "romanization": "Steel", + "example_sentence_native": "Das Gebäude hat eine Konstruktion aus Steel.", + "example_sentence_english": "The building has a construction made of steel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14475 + }, + { + "word": "sterbend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dying", + "romanization": "sterbend", + "example_sentence_native": "Der sterbende Baum verlor seine Blätter.", + "example_sentence_english": "The dying tree lost its leaves.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14476 + }, + { + "word": "Stichtag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadline;cut-off date", + "romanization": "Stichtag", + "example_sentence_native": "Der Stichtag für die Abgabe ist der 31. März.", + "example_sentence_english": "The deadline for submission is March 31st.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14477 + }, + { + "word": "Säge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saw", + "romanization": "Säge", + "example_sentence_native": "Er benutzte eine Säge, um das Holz zu schneiden.", + "example_sentence_english": "He used a saw to cut the wood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14478 + }, + { + "word": "Table", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "table (data)", + "romanization": "Table", + "example_sentence_native": "Die Daten sind in einer Table organisiert.", + "example_sentence_english": "The data is organized in a table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14479 + }, + { + "word": "touristisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touristic", + "romanization": "touristisch", + "example_sentence_native": "Die Stadt hat viele touristische Attraktionen.", + "example_sentence_english": "The city has many touristic attractions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14483 + }, + { + "word": "Translation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translation", + "romanization": "Translation", + "example_sentence_native": "Die Translation des Textes war sehr gut.", + "example_sentence_english": "The translation of the text was very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14484 + }, + { + "word": "Turbine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbine", + "romanization": "Turbine", + "example_sentence_native": "Die Windkraftanlage verwendet eine große Turbine.", + "example_sentence_english": "The wind turbine uses a large turbine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14486 + }, + { + "word": "Tutorial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutorial", + "romanization": "Tutorial", + "example_sentence_native": "Ich habe ein nützliches Tutorial online gefunden.", + "example_sentence_english": "I found a useful tutorial online.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14487 + }, + { + "word": "unentgeltlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free of charge;gratuitous", + "romanization": "unentgeltlich", + "example_sentence_native": "Die Beratung ist unentgeltlich.", + "example_sentence_english": "The consultation is free of charge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14488 + }, + { + "word": "unfreiwillig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involuntary;unintentional", + "romanization": "unfreiwillig", + "example_sentence_native": "Er musste unfreiwillig Überstunden machen.", + "example_sentence_english": "He had to work involuntary overtime.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14489 + }, + { + "word": "unverletzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uninjured;unharmed", + "romanization": "unverletzt", + "example_sentence_native": "Trotz des Unfalls blieb er unverletzt.", + "example_sentence_english": "Despite the accident, he remained uninjured.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14490 + }, + { + "word": "Verbandsgemeinde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "municipal association (administrative unit)", + "romanization": "Verbandsgemeinde", + "example_sentence_native": "Die Verbandsgemeinde ist für mehrere Dörfer zuständig.", + "example_sentence_english": "The municipal association is responsible for several villages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14492 + }, + { + "word": "verlaufend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "running;fading;progressing", + "romanization": "verlaufend", + "example_sentence_native": "Die verlaufende Farbe ruinierte das Bild.", + "example_sentence_english": "The running paint ruined the picture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14493 + }, + { + "word": "verlosen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raffle;to draw lots", + "romanization": "verlosen", + "example_sentence_native": "Wir werden Tickets für das Konzert verlosen.", + "example_sentence_english": "We will raffle tickets for the concert.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14494 + }, + { + "word": "Verlosung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raffle;draw", + "romanization": "Verlosung", + "example_sentence_native": "Die Verlosung der Preise findet morgen statt.", + "example_sentence_english": "The raffle of the prizes will take place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14495 + }, + { + "word": "vermindern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce;to decrease", + "romanization": "vermindern", + "example_sentence_native": "Wir müssen den CO2-Ausstoß vermindern.", + "example_sentence_english": "We must reduce CO2 emissions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14496 + }, + { + "word": "Verschuldung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indebtedness;debt", + "romanization": "Verschuldung", + "example_sentence_native": "Die hohe Verschuldung des Landes ist ein Problem.", + "example_sentence_english": "The country's high indebtedness is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14499 + }, + { + "word": "verzehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consume;to eat", + "romanization": "verzehren", + "example_sentence_native": "Er verzehrt das ganze Brot.", + "example_sentence_english": "He consumes the whole bread.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14500 + }, + { + "word": "Vierer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group of four;four (as in a score)", + "romanization": "Vierer", + "example_sentence_native": "Sie bildeten einen Vierer für das Projekt.", + "example_sentence_english": "They formed a group of four for the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14501 + }, + { + "word": "Vokabel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "vocabulary word", + "romanization": "Vokabel", + "example_sentence_native": "Ich lerne neue Vokabeln.", + "example_sentence_english": "I am learning new vocabulary words.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14502 + }, + { + "word": "vorgelegt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presented;submitted", + "romanization": "vorgelegt", + "example_sentence_native": "Die vorgelegten Dokumente waren vollständig.", + "example_sentence_english": "The presented documents were complete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14504 + }, + { + "word": "Vorgeschmack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foretaste;preview", + "romanization": "Vorgeschmack", + "example_sentence_native": "Das war nur ein Vorgeschmack auf das, was kommt.", + "example_sentence_english": "That was just a foretaste of what's to come.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14505 + }, + { + "word": "Vorkehrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precaution;measure", + "romanization": "Vorkehrung", + "example_sentence_native": "Sie trafen alle notwendigen Vorkehrungen.", + "example_sentence_english": "They took all necessary precautions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14506 + }, + { + "word": "Wehrdienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military service;conscription", + "romanization": "Wehrdienst", + "example_sentence_native": "Der Wehrdienst ist in Deutschland nicht mehr obligatorisch.", + "example_sentence_english": "Military service is no longer obligatory in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14507 + }, + { + "word": "Weihnachtsfeier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas party", + "romanization": "Weihnachtsfeier", + "example_sentence_native": "Wir gehen zur Weihnachtsfeier der Firma.", + "example_sentence_english": "We are going to the company's Christmas party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14508 + }, + { + "word": "widerrufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revoke;to retract", + "romanization": "widerrufen", + "example_sentence_native": "Er musste seine Aussage widerrufen.", + "example_sentence_english": "He had to retract his statement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14510 + }, + { + "word": "zahlenmässig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "numerically;in terms of numbers", + "romanization": "zahlenmässig", + "example_sentence_native": "Zahlenmässig waren sie überlegen.", + "example_sentence_english": "Numerically, they were superior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14517 + }, + { + "word": "zugelassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admitted;approved;licensed", + "romanization": "zugelassen", + "example_sentence_native": "Das Medikament ist in Deutschland zugelassen.", + "example_sentence_english": "The medication is approved in Germany.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14518 + }, + { + "word": "abartig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abnormal;perverse;deviant", + "romanization": "abartig", + "example_sentence_native": "Sein Verhalten war abartig.", + "example_sentence_english": "His behavior was abnormal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14519 + }, + { + "word": "Abdeckung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover;covering", + "romanization": "Abdeckung", + "example_sentence_native": "Die Abdeckung schützt das Gerät vor Staub.", + "example_sentence_english": "The cover protects the device from dust.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14520 + }, + { + "word": "Abendmahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Last Supper;communion", + "romanization": "Abendmahl", + "example_sentence_native": "Das Abendmahl ist ein wichtiges Ritual im Christentum.", + "example_sentence_english": "The Last Supper is an important ritual in Christianity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14521 + }, + { + "word": "abhanden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lost;missing", + "romanization": "abhanden", + "example_sentence_native": "Mir ist mein Schlüssel abhanden gekommen.", + "example_sentence_english": "My key has gone missing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14522 + }, + { + "word": "Abiturient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school graduate (preparing for Abitur)", + "romanization": "Abiturient", + "example_sentence_native": "Der Abiturient feierte seinen Abschluss.", + "example_sentence_english": "The high school graduate celebrated his graduation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14523 + }, + { + "word": "Abstecher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detour;side trip", + "romanization": "Abstecher", + "example_sentence_native": "Wir machten einen kurzen Abstecher zum See.", + "example_sentence_english": "We made a short detour to the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14524 + }, + { + "word": "Ackerbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agriculture;arable farming", + "romanization": "Ackerbau", + "example_sentence_native": "Der Ackerbau ist eine wichtige Säule der Wirtschaft.", + "example_sentence_english": "Agriculture is an important pillar of the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14525 + }, + { + "word": "Adapter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adapter", + "romanization": "Adapter", + "example_sentence_native": "Ich brauche einen Adapter für mein Laptop.", + "example_sentence_english": "I need an adapter for my laptop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14526 + }, + { + "word": "Alibi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alibi", + "romanization": "Alibi", + "example_sentence_native": "Er hatte ein perfektes Alibi für die Tatzeit.", + "example_sentence_english": "He had a perfect alibi for the time of the crime.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14527 + }, + { + "word": "allseits", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "on all sides;universally;widely", + "romanization": "allseits", + "example_sentence_native": "Er ist allseits bekannt für seine Freundlichkeit.", + "example_sentence_english": "He is widely known for his kindness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 14528 + }, + { + "word": "Amtsantritt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assumption of office;inauguration", + "romanization": "Amtsantritt", + "example_sentence_native": "Der Amtsantritt des neuen Präsidenten ist nächste Woche.", + "example_sentence_english": "The inauguration of the new president is next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14529 + }, + { + "word": "angehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspiring;prospective;budding", + "romanization": "angehend", + "example_sentence_native": "Sie ist eine angehende Ärztin.", + "example_sentence_english": "She is an aspiring doctor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14530 + }, + { + "word": "angeschlossen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connected;affiliated", + "romanization": "angeschlossen", + "example_sentence_native": "Ist der Drucker richtig angeschlossen?", + "example_sentence_english": "Is the printer correctly connected?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14531 + }, + { + "word": "Anwärter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candidate;applicant;contender", + "romanization": "Anwärter", + "example_sentence_native": "Er ist ein starker Anwärter auf die Position.", + "example_sentence_english": "He is a strong candidate for the position.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14533 + }, + { + "word": "Arktis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Arctic", + "romanization": "Arktis", + "example_sentence_native": "Die Arktis ist die nördlichste Region der Erde.", + "example_sentence_english": "The Arctic is the northernmost region on Earth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14534 + }, + { + "word": "Augenzeuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eyewitness", + "romanization": "Augenzeuge", + "example_sentence_native": "Der Augenzeuge beschrieb den Vorfall genau.", + "example_sentence_english": "The eyewitness described the incident precisely.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14535 + }, + { + "word": "baltisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Baltic", + "romanization": "baltisch", + "example_sentence_native": "Die baltischen Staaten liegen an der Ostsee.", + "example_sentence_english": "The Baltic states are located on the Baltic Sea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14536 + }, + { + "word": "barrierefrei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrier-free;accessible", + "romanization": "barrierefrei", + "example_sentence_native": "Das Gebäude ist komplett barrierefrei.", + "example_sentence_english": "The building is completely barrier-free.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14537 + }, + { + "word": "beabsichtigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intended;deliberate", + "romanization": "beabsichtigt", + "example_sentence_native": "Das war keine beabsichtigte Handlung.", + "example_sentence_english": "That was not an intended action.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14538 + }, + { + "word": "bedeutungslos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meaningless;insignificant", + "romanization": "bedeutungslos", + "example_sentence_native": "Seine Bemerkung war völlig bedeutungslos.", + "example_sentence_english": "His remark was completely meaningless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14539 + }, + { + "word": "bekanntwerden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become known", + "romanization": "bekanntwerden", + "example_sentence_native": "Die Wahrheit wird bald bekanntwerden.", + "example_sentence_english": "The truth will soon become known.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bekannt", + "base_verb": "werden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14541 + }, + { + "word": "Besitzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possession;property", + "romanization": "Besitzung", + "example_sentence_native": "Die Familie hatte große Besitzungen im Süden.", + "example_sentence_english": "The family had large properties in the south.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14542 + }, + { + "word": "beträchtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerable;significant", + "romanization": "beträchtlich", + "example_sentence_native": "Er hat einen beträchtlichen Fortschritt gemacht.", + "example_sentence_english": "He has made considerable progress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14543 + }, + { + "word": "Beweggrund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motive;reason", + "romanization": "Beweggrund", + "example_sentence_native": "Was war der Beweggrund für seine Tat?", + "example_sentence_english": "What was the motive for his action?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14544 + }, + { + "word": "Biest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beast;brute", + "romanization": "Biest", + "example_sentence_native": "Das Biest brüllte laut im Wald.", + "example_sentence_english": "The beast roared loudly in the forest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14545 + }, + { + "word": "bindend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding;obligatory", + "romanization": "bindend", + "example_sentence_native": "Diese Vereinbarung ist bindend für alle Parteien.", + "example_sentence_english": "This agreement is binding on all parties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14546 + }, + { + "word": "Briefwahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "postal vote;absentee ballot", + "romanization": "Briefwahl", + "example_sentence_native": "Viele Bürger nutzen die Briefwahl.", + "example_sentence_english": "Many citizens use the postal vote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14549 + }, + { + "word": "Buchhalter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accountant;bookkeeper", + "romanization": "Buchhalter", + "example_sentence_native": "Der Buchhalter prüft die Finanzen des Unternehmens.", + "example_sentence_english": "The accountant checks the company's finances.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14550 + }, + { + "word": "Bürgerrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil right;citizenship right", + "romanization": "Bürgerrecht", + "example_sentence_native": "Das Wahlrecht ist ein wichtiges Bürgerrecht.", + "example_sentence_english": "The right to vote is an important civil right.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14553 + }, + { + "word": "Centrum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "center;downtown", + "romanization": "Centrum", + "example_sentence_native": "Das alte Centrum der Stadt ist sehr schön.", + "example_sentence_english": "The old center of the city is very beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14556 + }, + { + "word": "Chancengleichheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equality of opportunity", + "romanization": "Chancengleichheit", + "example_sentence_native": "Chancengleichheit ist ein wichtiges Ziel in der Gesellschaft.", + "example_sentence_english": "Equality of opportunity is an important goal in society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14557 + }, + { + "word": "Chronologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronology", + "romanization": "Chronologie", + "example_sentence_native": "Die Chronologie der Ereignisse ist wichtig.", + "example_sentence_english": "The chronology of events is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14560 + }, + { + "word": "Denkmalpflege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monument preservation", + "romanization": "Denkmalpflege", + "example_sentence_native": "Die Denkmalpflege ist wichtig für unsere Geschichte.", + "example_sentence_english": "Monument preservation is important for our history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14566 + }, + { + "word": "Dia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slide (photographic)", + "romanization": "Dia", + "example_sentence_native": "Wir haben alte Dias gefunden.", + "example_sentence_english": "We found old slides.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14569 + }, + { + "word": "Doppelpack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twin pack", + "romanization": "Doppelpack", + "example_sentence_native": "Ich habe einen Doppelpack Batterien gekauft.", + "example_sentence_english": "I bought a twin pack of batteries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14572 + }, + { + "word": "Dosierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dosage", + "romanization": "Dosierung", + "example_sentence_native": "Die richtige Dosierung ist entscheidend.", + "example_sentence_english": "The correct dosage is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14573 + }, + { + "word": "eingestellt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjusted;set;discontinued", + "romanization": "eingestellt", + "example_sentence_native": "Die Maschine ist richtig eingestellt.", + "example_sentence_english": "The machine is correctly adjusted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14575 + }, + { + "word": "eingetragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered;entered", + "romanization": "eingetragen", + "example_sentence_native": "Das Unternehmen ist im Handelsregister eingetragen.", + "example_sentence_english": "The company is registered in the commercial register.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14576 + }, + { + "word": "Enthüllung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unveiling;revelation", + "romanization": "Enthüllung", + "example_sentence_native": "Die Enthüllung der Statue war ein großes Ereignis.", + "example_sentence_english": "The unveiling of the statue was a big event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14578 + }, + { + "word": "Erleuchtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlightenment;illumination", + "romanization": "Erleuchtung", + "example_sentence_native": "Die Erleuchtung kam ihm plötzlich.", + "example_sentence_english": "The enlightenment came to him suddenly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14580 + }, + { + "word": "Error", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "error", + "romanization": "Error", + "example_sentence_native": "Es gab einen Error im System.", + "example_sentence_english": "There was an error in the system.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14581 + }, + { + "word": "erwägen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider;to weigh", + "romanization": "erwägen", + "example_sentence_native": "Wir müssen alle Optionen erwägen.", + "example_sentence_english": "We must consider all options.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14582 + }, + { + "word": "Esprit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wit;spirit;vivacity", + "romanization": "Esprit", + "example_sentence_native": "Er hat viel Esprit und Charme.", + "example_sentence_english": "He has a lot of wit and charm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14583 + }, + { + "word": "Exit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exit", + "romanization": "Exit", + "example_sentence_native": "Der Exit ist auf der rechten Seite.", + "example_sentence_english": "The exit is on the right side.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14584 + }, + { + "word": "Expo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expo;exhibition", + "romanization": "Expo", + "example_sentence_native": "Wir besuchen die Expo nächste Woche.", + "example_sentence_english": "We are visiting the expo next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14585 + }, + { + "word": "fixen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fix;to repair (colloquial)", + "romanization": "fixen", + "example_sentence_native": "Kannst du das schnell fixen?", + "example_sentence_english": "Can you fix that quickly?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14587 + }, + { + "word": "Freak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freak;enthusiast", + "romanization": "Freak", + "example_sentence_native": "Er ist ein echter Computer-Freak.", + "example_sentence_english": "He is a real computer freak.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14589 + }, + { + "word": "fruchtbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fertile;fruitful", + "romanization": "fruchtbar", + "example_sentence_native": "Der Boden ist sehr fruchtbar.", + "example_sentence_english": "The soil is very fertile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14590 + }, + { + "word": "Fördermittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funding;subsidies;grants", + "romanization": "Fördermittel", + "example_sentence_native": "Das Projekt erhielt Fördermittel von der Regierung.", + "example_sentence_english": "The project received funding from the government.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14591 + }, + { + "word": "Garant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guarantor;warrantor", + "romanization": "Garant", + "example_sentence_native": "Er ist der Garant für den Erfolg des Projekts.", + "example_sentence_english": "He is the guarantor for the success of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14594 + }, + { + "word": "gebunden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bound;tied;committed", + "romanization": "gebunden", + "example_sentence_native": "Das Buch ist fest gebunden.", + "example_sentence_english": "The book is firmly bound.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14595 + }, + { + "word": "gefährdet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endangered;at risk;vulnerable", + "romanization": "gefährdet", + "example_sentence_native": "Diese Tierart ist stark gefährdet.", + "example_sentence_english": "This animal species is highly endangered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14596 + }, + { + "word": "Geheimtipp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insider tip;secret tip", + "romanization": "Geheimtipp", + "example_sentence_native": "Das Restaurant ist ein echter Geheimtipp.", + "example_sentence_english": "The restaurant is a real insider tip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14597 + }, + { + "word": "Gemarkung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cadastral district;municipal area", + "romanization": "Gemarkung", + "example_sentence_native": "Die Gemarkung umfasst mehrere Dörfer.", + "example_sentence_english": "The cadastral district includes several villages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14598 + }, + { + "word": "geometrisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geometric", + "romanization": "geometrisch", + "example_sentence_native": "Sie zeichnete geometrische Formen.", + "example_sentence_english": "She drew geometric shapes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14599 + }, + { + "word": "Girokonto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current account", + "romanization": "Girokonto", + "example_sentence_native": "Ich habe ein neues Girokonto eröffnet.", + "example_sentence_english": "I have opened a new current account.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14600 + }, + { + "word": "Grabstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tombstone", + "romanization": "Grabstein", + "example_sentence_native": "Auf dem Friedhof stand ein alter Grabstein.", + "example_sentence_english": "An old tombstone stood in the cemetery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14602 + }, + { + "word": "gravierend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serious", + "romanization": "gravierend", + "example_sentence_native": "Das Problem ist gravierend.", + "example_sentence_english": "The problem is serious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14603 + }, + { + "word": "hauptberuflich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full-time", + "romanization": "hauptberuflich", + "example_sentence_native": "Er arbeitet hauptberuflich als Lehrer.", + "example_sentence_english": "He works full-time as a teacher.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 14606 + }, + { + "word": "Hauptfigur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main character", + "romanization": "Hauptfigur", + "example_sentence_native": "Die Hauptfigur des Buches ist sehr interessant.", + "example_sentence_english": "The main character of the book is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14607 + }, + { + "word": "Headset", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "headset", + "romanization": "Headset", + "example_sentence_native": "Ich brauche ein neues Headset für meine Videokonferenzen.", + "example_sentence_english": "I need a new headset for my video conferences.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14608 + }, + { + "word": "hebräisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hebrew", + "romanization": "hebräisch", + "example_sentence_native": "Sie lernt hebräisch.", + "example_sentence_english": "She is learning Hebrew.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14609 + }, + { + "word": "Heilpraktiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturopath", + "romanization": "Heilpraktiker", + "example_sentence_native": "Ich gehe zu einem Heilpraktiker für meine Rückenschmerzen.", + "example_sentence_english": "I go to a naturopath for my back pain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14610 + }, + { + "word": "Hepatitis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hepatitis", + "romanization": "Hepatitis", + "example_sentence_native": "Hepatitis ist eine Entzündung der Leber.", + "example_sentence_english": "Hepatitis is an inflammation of the liver.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14611 + }, + { + "word": "hergeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hand over", + "romanization": "hergeben", + "example_sentence_native": "Kannst du mir bitte das Buch hergeben?", + "example_sentence_english": "Can you please hand me the book?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14612 + }, + { + "word": "Herrlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glory", + "romanization": "Herrlichkeit", + "example_sentence_native": "Die Herrlichkeit des Sonnenuntergangs war atemberaubend.", + "example_sentence_english": "The glory of the sunset was breathtaking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14613 + }, + { + "word": "Herzblut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heart and soul", + "romanization": "Herzblut", + "example_sentence_native": "Er steckt viel Herzblut in seine Arbeit.", + "example_sentence_english": "He puts a lot of heart and soul into his work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14614 + }, + { + "word": "Highschool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school", + "romanization": "Highschool", + "example_sentence_native": "Meine Schwester geht noch auf die Highschool.", + "example_sentence_english": "My sister is still in high school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14615 + }, + { + "word": "hilfsbereit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helpful", + "romanization": "hilfsbereit", + "example_sentence_native": "Sie ist immer sehr hilfsbereit.", + "example_sentence_english": "She is always very helpful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14616 + }, + { + "word": "Imperialismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialism", + "romanization": "Imperialismus", + "example_sentence_native": "Der Imperialismus prägte das 19. Jahrhundert.", + "example_sentence_english": "Imperialism shaped the 19th century.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14619 + }, + { + "word": "Internetauftritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "website;internet presence", + "romanization": "Internetauftritt", + "example_sentence_native": "Der Internetauftritt des Unternehmens ist sehr professionell.", + "example_sentence_english": "The company's website is very professional.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14620 + }, + { + "word": "interviewen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interview", + "romanization": "interviewen", + "example_sentence_native": "Sie werden den Kandidaten morgen interviewen.", + "example_sentence_english": "They will interview the candidate tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14621 + }, + { + "word": "Kanne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pot;jug;can", + "romanization": "Kanne", + "example_sentence_native": "Die Kanne Tee ist leer.", + "example_sentence_english": "The pot of tea is empty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14626 + }, + { + "word": "Karosserie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "car body;chassis", + "romanization": "Karosserie", + "example_sentence_native": "Die Karosserie des Autos ist aus Aluminium.", + "example_sentence_english": "The car body is made of aluminum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14627 + }, + { + "word": "katastrophal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catastrophic", + "romanization": "katastrophal", + "example_sentence_native": "Die Situation ist katastrophal.", + "example_sentence_english": "The situation is catastrophic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14629 + }, + { + "word": "klarkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cope;to manage;to get along", + "romanization": "klarkommen", + "example_sentence_native": "Ich komme gut mit der neuen Software klar.", + "example_sentence_english": "I'm coping well with the new software.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "klar", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14630 + }, + { + "word": "Klatsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gossip;clap (sound)", + "romanization": "Klatsch", + "example_sentence_native": "Ich mag keinen Klatsch über andere Leute.", + "example_sentence_english": "I don't like gossip about other people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14631 + }, + { + "word": "Klippe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cliff", + "romanization": "Klippe", + "example_sentence_native": "Sie standen am Rand einer hohen Klippe.", + "example_sentence_english": "They stood at the edge of a high cliff.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14632 + }, + { + "word": "Kollegium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faculty;staff;collegium", + "romanization": "Kollegium", + "example_sentence_native": "Das Kollegium traf sich zur Besprechung.", + "example_sentence_english": "The faculty met for the discussion.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14633 + }, + { + "word": "Konsolidierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consolidation", + "romanization": "Konsolidierung", + "example_sentence_native": "Die Konsolidierung der Schulden ist notwendig.", + "example_sentence_english": "The consolidation of debts is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14634 + }, + { + "word": "Konsul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consul", + "romanization": "Konsul", + "example_sentence_native": "Der Konsul vertritt sein Land im Ausland.", + "example_sentence_english": "The consul represents his country abroad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14635 + }, + { + "word": "Kulturgut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultural heritage;cultural asset", + "romanization": "Kulturgut", + "example_sentence_native": "Das alte Schloss ist ein wichtiges Kulturgut.", + "example_sentence_english": "The old castle is an important cultural heritage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14636 + }, + { + "word": "Köchin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female cook", + "romanization": "Köchin", + "example_sentence_native": "Die Köchin bereitet das Abendessen zu.", + "example_sentence_english": "The female cook is preparing dinner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14638 + }, + { + "word": "lausitzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lusatian", + "romanization": "lausitzer", + "example_sentence_native": "Die lausitzer Sprache ist eine westslawische Sprache.", + "example_sentence_english": "The Lusatian language is a West Slavic language.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14641 + }, + { + "word": "Linguistik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguistics", + "romanization": "Linguistik", + "example_sentence_native": "Sie studiert Linguistik an der Universität.", + "example_sentence_english": "She studies linguistics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14643 + }, + { + "word": "Menschenmenge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowd (of people)", + "romanization": "Menschenmenge", + "example_sentence_native": "Die Menschenmenge versammelte sich auf dem Platz.", + "example_sentence_english": "The crowd gathered in the square.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14648 + }, + { + "word": "Misserfolg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "failure;setback", + "romanization": "Misserfolg", + "example_sentence_native": "Trotz des Misserfolgs gab er nicht auf.", + "example_sentence_english": "Despite the failure, he did not give up.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14650 + }, + { + "word": "miterleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to experience together;to witness", + "romanization": "miterleben", + "example_sentence_native": "Ich durfte diesen historischen Moment miterleben.", + "example_sentence_english": "I was able to witness this historic moment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "erleben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14651 + }, + { + "word": "mitverantwortlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jointly responsible;co-responsible", + "romanization": "mitverantwortlich", + "example_sentence_native": "Er war mitverantwortlich für den Erfolg des Projekts.", + "example_sentence_english": "He was jointly responsible for the success of the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14653 + }, + { + "word": "Montagmorgen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Monday morning", + "romanization": "Montagmorgen", + "example_sentence_native": "Am Montagmorgen beginnt die Arbeitswoche.", + "example_sentence_english": "The work week begins on Monday morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14654 + }, + { + "word": "Morgenstern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morning star", + "romanization": "Morgenstern", + "example_sentence_native": "Der Morgenstern ist am Himmel sichtbar.", + "example_sentence_english": "The morning star is visible in the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14656 + }, + { + "word": "Motorhaube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car bonnet;hood (of a car)", + "romanization": "Motorhaube", + "example_sentence_native": "Er öffnete die Motorhaube, um den Motor zu überprüfen.", + "example_sentence_english": "He opened the car bonnet to check the engine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14658 + }, + { + "word": "Mus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puree;sauce;compote", + "romanization": "Mus", + "example_sentence_native": "Zum Nachtisch gab es Apfelmus mit Vanillesauce.", + "example_sentence_english": "For dessert, there was apple puree with vanilla sauce.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14659 + }, + { + "word": "nobel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noble;elegant", + "romanization": "nobel", + "example_sentence_native": "Sie trug ein nobel Kleid.", + "example_sentence_english": "She wore an elegant dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14661 + }, + { + "word": "Oberschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary school;high school", + "romanization": "Oberschule", + "example_sentence_native": "Meine Schwester geht auf die Oberschule.", + "example_sentence_english": "My sister goes to secondary school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14663 + }, + { + "word": "ohnmächtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconscious;powerless", + "romanization": "ohnmächtig", + "example_sentence_native": "Nach dem Unfall war er ohnmächtig.", + "example_sentence_english": "After the accident, he was unconscious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14664 + }, + { + "word": "Orakel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oracle", + "romanization": "Orakel", + "example_sentence_native": "Das Orakel gab eine mysteriöse Prophezeiung.", + "example_sentence_english": "The oracle gave a mysterious prophecy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14666 + }, + { + "word": "Pardon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pardon;excuse me", + "romanization": "Pardon", + "example_sentence_native": "Pardon, können Sie das bitte wiederholen?", + "example_sentence_english": "Pardon, could you please repeat that?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14668 + }, + { + "word": "Phönix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phoenix", + "romanization": "Phönix", + "example_sentence_native": "Der Phönix ist ein mythischer Vogel.", + "example_sentence_english": "The phoenix is a mythical bird.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14669 + }, + { + "word": "Pizzeria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pizzeria", + "romanization": "Pizzeria", + "example_sentence_native": "Wir gehen heute Abend in die Pizzeria.", + "example_sentence_english": "We are going to the pizzeria tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14671 + }, + { + "word": "Prospekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brochure;prospectus", + "romanization": "Prospekt", + "example_sentence_native": "Ich habe einen Prospekt über die neue Ausstellung bekommen.", + "example_sentence_english": "I received a brochure about the new exhibition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14674 + }, + { + "word": "Präparat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preparation;specimen", + "romanization": "Präparat", + "example_sentence_native": "Das Präparat wurde unter dem Mikroskop untersucht.", + "example_sentence_english": "The specimen was examined under the microscope.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14675 + }, + { + "word": "Prüfstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "test bench;test stand", + "romanization": "Prüfstand", + "example_sentence_native": "Der Motor wird auf dem Prüfstand getestet.", + "example_sentence_english": "The engine is tested on the test bench.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14676 + }, + { + "word": "Qualitätssicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quality assurance", + "romanization": "Qualitätssicherung", + "example_sentence_native": "Die Qualitätssicherung ist ein wichtiger Schritt im Produktionsprozess.", + "example_sentence_english": "Quality assurance is an important step in the production process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14678 + }, + { + "word": "Quecksilber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mercury", + "romanization": "Quecksilber", + "example_sentence_native": "Quecksilber ist ein flüssiges Metall.", + "example_sentence_english": "Mercury is a liquid metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14679 + }, + { + "word": "Radikalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalization", + "romanization": "Radikalisierung", + "example_sentence_native": "Die Radikalisierung der Jugend ist ein ernstes Problem.", + "example_sentence_english": "The radicalization of youth is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14682 + }, + { + "word": "Ranger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranger", + "romanization": "Ranger", + "example_sentence_native": "Der Ranger schützt den Wald.", + "example_sentence_english": "The ranger protects the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14684 + }, + { + "word": "Reputation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reputation", + "romanization": "Reputation", + "example_sentence_native": "Er hat eine gute Reputation.", + "example_sentence_english": "He has a good reputation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14686 + }, + { + "word": "Reservierung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reservation", + "romanization": "Reservierung", + "example_sentence_native": "Haben Sie eine Reservierung?", + "example_sentence_english": "Do you have a reservation?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14687 + }, + { + "word": "Sauerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess", + "romanization": "Sauerei", + "example_sentence_native": "Das ist ja eine echte Sauerei!", + "example_sentence_english": "That's a real mess!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14693 + }, + { + "word": "Schadenersatz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensation", + "romanization": "Schadenersatz", + "example_sentence_native": "Er forderte Schadenersatz für den Unfall.", + "example_sentence_english": "He demanded compensation for the accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14694 + }, + { + "word": "Scheich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheikh", + "romanization": "Scheich", + "example_sentence_native": "Der Scheich besuchte die Stadt.", + "example_sentence_english": "The sheikh visited the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14695 + }, + { + "word": "Schiri", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ref", + "romanization": "Schiri", + "example_sentence_native": "Der Schiri pfiff das Spiel ab.", + "example_sentence_english": "The ref blew the whistle to end the game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14697 + }, + { + "word": "Schlitz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slit", + "romanization": "Schlitz", + "example_sentence_native": "Stecken Sie die Münze in den Schlitz.", + "example_sentence_english": "Insert the coin into the slot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14698 + }, + { + "word": "Schriftenreihe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "series of publications", + "romanization": "Schriftenreihe", + "example_sentence_native": "Die neue Schriftenreihe behandelt historische Themen.", + "example_sentence_english": "The new series of publications deals with historical topics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14699 + }, + { + "word": "Schulbildung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education;schooling", + "romanization": "Schulbildung", + "example_sentence_native": "Eine gute Schulbildung ist wichtig für die Zukunft.", + "example_sentence_english": "A good education is important for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14700 + }, + { + "word": "schüren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stir up;to fuel", + "romanization": "schüren", + "example_sentence_native": "Er versuchte, die Angst in der Bevölkerung zu schüren.", + "example_sentence_english": "He tried to stir up fear in the population.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14701 + }, + { + "word": "Simulator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simulator", + "romanization": "Simulator", + "example_sentence_native": "Der Flugsimulator ist sehr realistisch.", + "example_sentence_english": "The flight simulator is very realistic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14705 + }, + { + "word": "skandinavisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Scandinavian", + "romanization": "skandinavisch", + "example_sentence_native": "Sie liebt skandinavische Möbel.", + "example_sentence_english": "She loves Scandinavian furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14706 + }, + { + "word": "standardmässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by default;standard", + "romanization": "standardmässig", + "example_sentence_native": "Die Einstellung ist standardmäßig aktiviert.", + "example_sentence_english": "The setting is activated by default.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14709 + }, + { + "word": "standhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to withstand;to endure", + "romanization": "standhalten", + "example_sentence_native": "Das Gebäude muss dem Sturm standhalten.", + "example_sentence_english": "The building must withstand the storm.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "stand", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14710 + }, + { + "word": "Steigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incline;gradient;slope", + "romanization": "Steigung", + "example_sentence_native": "Die Steigung der Straße war sehr steil.", + "example_sentence_english": "The incline of the road was very steep.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14711 + }, + { + "word": "Strafraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty area", + "romanization": "Strafraum", + "example_sentence_native": "Der Spieler wurde im Strafraum gefoult.", + "example_sentence_english": "The player was fouled in the penalty area.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14712 + }, + { + "word": "Stromerzeugung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power generation;electricity production", + "romanization": "Stromerzeugung", + "example_sentence_native": "Die Stromerzeugung aus erneuerbaren Energien nimmt zu.", + "example_sentence_english": "Power generation from renewable energies is increasing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14713 + }, + { + "word": "studentisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "student (adj.);student-like", + "romanization": "studentisch", + "example_sentence_native": "Sie nahm an einer studentischen Demonstration teil.", + "example_sentence_english": "She participated in a student demonstration.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14714 + }, + { + "word": "sukzessive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "successive;gradually", + "romanization": "sukzessive", + "example_sentence_native": "Die Änderungen wurden sukzessive eingeführt.", + "example_sentence_english": "The changes were introduced gradually.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14716 + }, + { + "word": "Telegramm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telegram", + "romanization": "Telegramm", + "example_sentence_native": "Er schickte ein Telegramm an seine Familie.", + "example_sentence_english": "He sent a telegram to his family.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14722 + }, + { + "word": "Telekommunikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telecommunication", + "romanization": "Telekommunikation", + "example_sentence_native": "Die Telekommunikation ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "Telecommunication is an important economic sector.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14723 + }, + { + "word": "tolerant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tolerant", + "romanization": "tolerant", + "example_sentence_native": "Er ist ein sehr toleranter Mensch.", + "example_sentence_english": "He is a very tolerant person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14726 + }, + { + "word": "Trojaner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Trojan", + "romanization": "Trojaner", + "example_sentence_native": "Der Trojaner hat den Computer infiziert.", + "example_sentence_english": "The Trojan infected the computer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14727 + }, + { + "word": "Trumpf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trump (card);asset;advantage", + "romanization": "Trumpf", + "example_sentence_native": "Ass ist Trumpf in diesem Spiel.", + "example_sentence_english": "Ace is trump in this game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14728 + }, + { + "word": "Trägerschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sponsorship;patronage;body responsible", + "romanization": "Trägerschaft", + "example_sentence_native": "Die Trägerschaft des Projekts liegt bei der Stadt.", + "example_sentence_english": "The sponsorship of the project lies with the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14729 + }, + { + "word": "unbedenklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmless;unobjectionable;safe", + "romanization": "unbedenklich", + "example_sentence_native": "Das Medikament ist unbedenklich für Kinder.", + "example_sentence_english": "The medication is harmless for children.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14730 + }, + { + "word": "Ungewissheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertainty;doubt", + "romanization": "Ungewissheit", + "example_sentence_native": "Die Ungewissheit über die Zukunft macht ihm Sorgen.", + "example_sentence_english": "The uncertainty about the future worries him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14731 + }, + { + "word": "unregelmässig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irregular", + "romanization": "unregelmässig", + "example_sentence_native": "Er hat unregelmässige Arbeitszeiten.", + "example_sentence_english": "He has irregular working hours.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14732 + }, + { + "word": "Unternehmensberater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management consultant", + "romanization": "Unternehmensberater", + "example_sentence_native": "Mein Bruder arbeitet als Unternehmensberater.", + "example_sentence_english": "My brother works as a management consultant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14733 + }, + { + "word": "Veilchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violet (flower)", + "romanization": "Veilchen", + "example_sentence_native": "Im Frühling blühen die Veilchen.", + "example_sentence_english": "In spring, the violets bloom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14735 + }, + { + "word": "Vernehmung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interrogation;hearing;questioning", + "romanization": "Vernehmung", + "example_sentence_native": "Die Vernehmung des Zeugen dauerte Stunden.", + "example_sentence_english": "The interrogation of the witness lasted hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14736 + }, + { + "word": "versinken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sink;to be absorbed (in something)", + "romanization": "versinken", + "example_sentence_native": "Das Schiff begann im Meer zu versinken.", + "example_sentence_english": "The ship began to sink in the sea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14737 + }, + { + "word": "verstören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disturb;to unsettle;to upset", + "romanization": "verstören", + "example_sentence_native": "Die Nachricht hat ihn sehr verstört.", + "example_sentence_english": "The news greatly disturbed him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14738 + }, + { + "word": "Verweigerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refusal;denial", + "romanization": "Verweigerung", + "example_sentence_native": "Seine Verweigerung der Zusammenarbeit war offensichtlich.", + "example_sentence_english": "His refusal to cooperate was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14739 + }, + { + "word": "Volksbegehren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "popular initiative", + "romanization": "Volksbegehren", + "example_sentence_native": "Das Volksbegehren wurde von vielen Bürgern unterstützt.", + "example_sentence_english": "The popular initiative was supported by many citizens.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14741 + }, + { + "word": "vorsorglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precautionary", + "romanization": "vorsorglich", + "example_sentence_native": "Er hat vorsorglich eine Kopie der Dokumente gemacht.", + "example_sentence_english": "He made a copy of the documents as a precaution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14742 + }, + { + "word": "Weltrangliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world ranking list", + "romanization": "Weltrangliste", + "example_sentence_native": "Sie steht auf Platz eins der Weltrangliste.", + "example_sentence_english": "She is number one on the world ranking list.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14743 + }, + { + "word": "Wiedergeburt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rebirth", + "romanization": "Wiedergeburt", + "example_sentence_native": "Die Idee der Wiedergeburt ist in vielen Kulturen verbreitet.", + "example_sentence_english": "The idea of rebirth is widespread in many cultures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14745 + }, + { + "word": "Zehntel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenth", + "romanization": "Zehntel", + "example_sentence_native": "Ein Zehntel von hundert ist zehn.", + "example_sentence_english": "One tenth of a hundred is ten.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14747 + }, + { + "word": "Zeitzeuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemporary witness", + "romanization": "Zeitzeuge", + "example_sentence_native": "Der Zeitzeuge berichtete über die Ereignisse des Krieges.", + "example_sentence_english": "The contemporary witness reported on the events of the war.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14748 + }, + { + "word": "Zement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cement", + "romanization": "Zement", + "example_sentence_native": "Für den Bau des Hauses brauchten wir viel Zement.", + "example_sentence_english": "We needed a lot of cement for building the house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14749 + }, + { + "word": "zensieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to censor", + "romanization": "zensieren", + "example_sentence_native": "Die Regierung versucht, Informationen zu zensieren.", + "example_sentence_english": "The government tries to censor information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14750 + }, + { + "word": "Zerstörer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroyer", + "romanization": "Zerstörer", + "example_sentence_native": "Der Zerstörer patrouillierte die Küste.", + "example_sentence_english": "The destroyer patrolled the coast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14751 + }, + { + "word": "zufriedenstellend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfactory", + "romanization": "zufriedenstellend", + "example_sentence_native": "Das Ergebnis war nicht zufriedenstellend.", + "example_sentence_english": "The result was not satisfactory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14752 + }, + { + "word": "Zugeständnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concession", + "romanization": "Zugeständnis", + "example_sentence_native": "Die Firma machte ein Zugeständnis an die Mitarbeiter.", + "example_sentence_english": "The company made a concession to the employees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14753 + }, + { + "word": "Zunft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guild", + "romanization": "Zunft", + "example_sentence_native": "Im Mittelalter waren Zünfte sehr mächtig.", + "example_sentence_english": "In the Middle Ages, guilds were very powerful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14754 + }, + { + "word": "zurücknehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take back", + "romanization": "zurücknehmen", + "example_sentence_native": "Er musste seine Aussage zurücknehmen.", + "example_sentence_english": "He had to withdraw his statement.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14755 + }, + { + "word": "Zusammenstoss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collision", + "romanization": "Zusammenstoss", + "example_sentence_native": "Es gab einen Zusammenstoss zwischen zwei Autos.", + "example_sentence_english": "There was a collision between two cars.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14756 + }, + { + "word": "zweifelsohne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undoubtedly", + "romanization": "zweifelsohne", + "example_sentence_native": "Er ist zweifelsohne der beste Spieler im Team.", + "example_sentence_english": "He is undoubtedly the best player on the team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 14757 + }, + { + "word": "überbrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bridge", + "romanization": "überbrücken", + "example_sentence_native": "Wir müssen die Schwierigkeiten überbrücken.", + "example_sentence_english": "We need to overcome the difficulties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14758 + }, + { + "word": "überschaubar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manageable", + "romanization": "überschaubar", + "example_sentence_native": "Die Aufgabe ist überschaubar.", + "example_sentence_english": "The task is manageable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14759 + }, + { + "word": "abgelegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remote;secluded", + "romanization": "abgelegen", + "example_sentence_native": "Das Haus liegt in einem abgelegenen Tal.", + "example_sentence_english": "The house is located in a remote valley.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14760 + }, + { + "word": "Abstiegskampf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relegation battle", + "romanization": "Abstiegskampf", + "example_sentence_native": "Der Verein steckt mitten im Abstiegskampf.", + "example_sentence_english": "The club is in the middle of a relegation battle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14761 + }, + { + "word": "akustisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acoustic", + "romanization": "akustisch", + "example_sentence_native": "Die akustische Qualität des Raumes ist ausgezeichnet.", + "example_sentence_english": "The acoustic quality of the room is excellent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14764 + }, + { + "word": "Aminosäure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amino acid", + "romanization": "Aminosäure", + "example_sentence_native": "Proteine bestehen aus Aminosäuren.", + "example_sentence_english": "Proteins consist of amino acids.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14766 + }, + { + "word": "Andacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devotion;contemplation;service", + "romanization": "Andacht", + "example_sentence_native": "Sie hielt eine kurze Andacht vor dem Gottesdienst.", + "example_sentence_english": "She held a short devotion before the service.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14767 + }, + { + "word": "Armenier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Armenian (person)", + "romanization": "Armenier", + "example_sentence_native": "Er ist ein Armenier aus Eriwan.", + "example_sentence_english": "He is an Armenian from Yerevan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14768 + }, + { + "word": "aufreissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tear open;to rip open", + "romanization": "aufreissen", + "example_sentence_native": "Er musste den Brief aufreissen, um ihn zu lesen.", + "example_sentence_english": "He had to tear open the letter to read it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "reissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14770 + }, + { + "word": "ausgerichtet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aligned;oriented;geared", + "romanization": "ausgerichtet", + "example_sentence_native": "Das System ist auf Effizienz ausgerichtet.", + "example_sentence_english": "The system is geared towards efficiency.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14771 + }, + { + "word": "Ausreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "departure (from a country)", + "romanization": "Ausreise", + "example_sentence_native": "Die Ausreise aus dem Land ist jetzt möglich.", + "example_sentence_english": "Departure from the country is now possible.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14772 + }, + { + "word": "automotive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "automotive", + "romanization": "automotive", + "example_sentence_native": "Die automotive Industrie ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "The automotive industry is an important economic sector.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14773 + }, + { + "word": "Baumassnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction measure;project", + "romanization": "Baumassnahme", + "example_sentence_native": "Die Baumassnahme wird voraussichtlich zwei Jahre dauern.", + "example_sentence_english": "The construction project is expected to last two years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14776 + }, + { + "word": "bedingt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conditional;limited", + "romanization": "bedingt", + "example_sentence_native": "Der Erfolg ist bedingt durch viele Faktoren.", + "example_sentence_english": "The success is conditional on many factors.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14777 + }, + { + "word": "befriedigend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfactory;gratifying", + "romanization": "befriedigend", + "example_sentence_native": "Das Ergebnis war befriedigend, aber nicht hervorragend.", + "example_sentence_english": "The result was satisfactory, but not excellent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14779 + }, + { + "word": "Beichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confession", + "romanization": "Beichte", + "example_sentence_native": "Er legte eine Beichte ab.", + "example_sentence_english": "He made a confession.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14780 + }, + { + "word": "bemessen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to measure;to allocate", + "romanization": "bemessen", + "example_sentence_native": "Die Strafe muss der Tat angemessen bemessen sein.", + "example_sentence_english": "The punishment must be appropriately proportioned to the deed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14781 + }, + { + "word": "bemängeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to criticize;to find fault with", + "romanization": "bemängeln", + "example_sentence_native": "Er bemängelte die Qualität der Arbeit.", + "example_sentence_english": "He criticized the quality of the work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14782 + }, + { + "word": "benommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dazed;groggy", + "romanization": "benommen", + "example_sentence_native": "Nach dem Sturz war er etwas benommen.", + "example_sentence_english": "After the fall, he was a bit dazed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14783 + }, + { + "word": "Benziner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "petrol car;gasoline engine", + "romanization": "Benziner", + "example_sentence_native": "Er fährt einen Benziner, keinen Diesel.", + "example_sentence_english": "He drives a petrol car, not a diesel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14784 + }, + { + "word": "Berühmtheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fame;celebrity", + "romanization": "Berühmtheit", + "example_sentence_native": "Sie erlangte schnell Berühmtheit.", + "example_sentence_english": "She quickly achieved fame.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14785 + }, + { + "word": "beschiessen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shell;to bombard", + "romanization": "beschiessen", + "example_sentence_native": "Die Artillerie begann, die feindlichen Stellungen zu beschießen.", + "example_sentence_english": "The artillery began to shell the enemy positions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14786 + }, + { + "word": "bestmöglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "best possible", + "romanization": "bestmöglich", + "example_sentence_native": "Wir werden unser Bestmögliches tun.", + "example_sentence_english": "We will do our best possible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14787 + }, + { + "word": "Bewirtschaftung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "management;cultivation", + "romanization": "Bewirtschaftung", + "example_sentence_native": "Die nachhaltige Bewirtschaftung der Wälder ist wichtig.", + "example_sentence_english": "The sustainable management of forests is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14788 + }, + { + "word": "Billard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billiards;pool", + "romanization": "Billard", + "example_sentence_native": "Sie spielen gerne Billard am Abend.", + "example_sentence_english": "They like to play billiards in the evening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14789 + }, + { + "word": "Brauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brewer", + "romanization": "Brauer", + "example_sentence_native": "Der Brauer stellt Bier her.", + "example_sentence_english": "The brewer produces beer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14793 + }, + { + "word": "Buckel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hump;bump", + "romanization": "Buckel", + "example_sentence_native": "Der alte Mann hatte einen Buckel.", + "example_sentence_english": "The old man had a hunchback.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14794 + }, + { + "word": "Bösewicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "villain;evildoer", + "romanization": "Bösewicht", + "example_sentence_native": "Im Märchen besiegt der Held den Bösewicht.", + "example_sentence_english": "In the fairy tale, the hero defeats the villain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14795 + }, + { + "word": "Carsharing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carsharing", + "romanization": "Carsharing", + "example_sentence_native": "Carsharing wird in Städten immer beliebter.", + "example_sentence_english": "Carsharing is becoming increasingly popular in cities.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14796 + }, + { + "word": "Council", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "council", + "romanization": "Council", + "example_sentence_native": "Der Europäische Council tagt nächste Woche.", + "example_sentence_english": "The European Council meets next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14799 + }, + { + "word": "Dampfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steamboat;steamer", + "romanization": "Dampfer", + "example_sentence_native": "Der alte Dampfer fuhr langsam den Fluss hinunter.", + "example_sentence_english": "The old steamboat slowly went down the river.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14801 + }, + { + "word": "Delikt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offense;crime", + "romanization": "Delikt", + "example_sentence_native": "Das Delikt wurde schnell aufgeklärt.", + "example_sentence_english": "The offense was quickly cleared up.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14802 + }, + { + "word": "Echtheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authenticity;genuineness", + "romanization": "Echtheit", + "example_sentence_native": "Die Echtheit des Dokuments wurde bestätigt.", + "example_sentence_english": "The authenticity of the document was confirmed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14805 + }, + { + "word": "Ehepartner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spouse;husband", + "romanization": "Ehepartner", + "example_sentence_native": "Mein Ehepartner unterstützt mich immer.", + "example_sentence_english": "My spouse always supports me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14806 + }, + { + "word": "eigenartig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiar;strange;odd", + "romanization": "eigenartig", + "example_sentence_native": "Er hatte eine sehr eigenartige Art zu sprechen.", + "example_sentence_english": "He had a very peculiar way of speaking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14807 + }, + { + "word": "Eigenständigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "independence;autonomy", + "romanization": "Eigenständigkeit", + "example_sentence_native": "Sie legt großen Wert auf ihre Eigenständigkeit.", + "example_sentence_english": "She places great importance on her independence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14808 + }, + { + "word": "Einfuhr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "import;importation", + "romanization": "Einfuhr", + "example_sentence_native": "Die Einfuhr von Luxusgütern wurde eingeschränkt.", + "example_sentence_english": "The import of luxury goods was restricted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14809 + }, + { + "word": "einklemmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pinch;to jam;to trap", + "romanization": "einklemmen", + "example_sentence_native": "Er klemmte seinen Finger in der Tür ein.", + "example_sentence_english": "He pinched his finger in the door.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "klemmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14810 + }, + { + "word": "einschreiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intervene;to step in", + "romanization": "einschreiten", + "example_sentence_native": "Die Polizei musste einschreiten, um die Situation zu beruhigen.", + "example_sentence_english": "The police had to intervene to calm the situation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schreiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14811 + }, + { + "word": "einsehbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viewable;accessible for inspection", + "romanization": "einsehbar", + "example_sentence_native": "Die Dokumente sind für alle Mitglieder einsehbar.", + "example_sentence_english": "The documents are viewable for all members.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14812 + }, + { + "word": "Eintrittskarte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "admission ticket;entry ticket", + "romanization": "Eintrittskarte", + "example_sentence_native": "Bitte zeigen Sie Ihre Eintrittskarte am Eingang vor.", + "example_sentence_english": "Please show your admission ticket at the entrance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14813 + }, + { + "word": "Entwarnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all-clear;stand-down", + "romanization": "Entwarnung", + "example_sentence_native": "Nach der Überprüfung gab die Polizei Entwarnung.", + "example_sentence_english": "After the check, the police gave the all-clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14814 + }, + { + "word": "Epos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epic;epic poem", + "romanization": "Epos", + "example_sentence_native": "Das Gilgamesch-Epos ist eines der ältesten literarischen Werke.", + "example_sentence_english": "The Epic of Gilgamesh is one of the oldest literary works.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14815 + }, + { + "word": "Erwachsenenbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adult education", + "romanization": "Erwachsenenbildung", + "example_sentence_native": "Sie arbeitet im Bereich der Erwachsenenbildung.", + "example_sentence_english": "She works in the field of adult education.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14816 + }, + { + "word": "erwidern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reply;to retort;to return (a feeling)", + "romanization": "erwidern", + "example_sentence_native": "Er konnte auf ihre Frage nichts erwidern.", + "example_sentence_english": "He could not reply to her question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14817 + }, + { + "word": "erwähnenswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noteworthy;worth mentioning", + "romanization": "erwähnenswert", + "example_sentence_native": "Seine Leistung war wirklich erwähnenswert.", + "example_sentence_english": "His performance was truly noteworthy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14818 + }, + { + "word": "Essenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "essence", + "romanization": "Essenz", + "example_sentence_native": "Die Essenz des Problems liegt in der Kommunikation.", + "example_sentence_english": "The essence of the problem lies in communication.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14819 + }, + { + "word": "exzellent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellent", + "romanization": "exzellent", + "example_sentence_native": "Das ist eine exzellente Idee.", + "example_sentence_english": "That is an excellent idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14820 + }, + { + "word": "Feb", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Feb (February)", + "romanization": "Feb", + "example_sentence_native": "Der Feb ist ein kurzer Monat.", + "example_sentence_english": "Feb is a short month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14821 + }, + { + "word": "Finne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Finn (person from Finland)", + "romanization": "Finne", + "example_sentence_native": "Er ist ein Finne.", + "example_sentence_english": "He is a Finn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14822 + }, + { + "word": "Fledermaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bat (animal)", + "romanization": "Fledermaus", + "example_sentence_native": "Eine Fledermaus fliegt nachts.", + "example_sentence_english": "A bat flies at night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14823 + }, + { + "word": "freigestellt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exempt;released;optional", + "romanization": "freigestellt", + "example_sentence_native": "Die Teilnahme ist freigestellt.", + "example_sentence_english": "Participation is optional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14825 + }, + { + "word": "Geburtsdatum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "date of birth", + "romanization": "Geburtsdatum", + "example_sentence_native": "Bitte geben Sie Ihr Geburtsdatum an.", + "example_sentence_english": "Please state your date of birth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14827 + }, + { + "word": "Geburtsort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place of birth", + "romanization": "Geburtsort", + "example_sentence_native": "Mein Geburtsort ist Berlin.", + "example_sentence_english": "My place of birth is Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14828 + }, + { + "word": "Geisteswissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanities", + "romanization": "Geisteswissenschaft", + "example_sentence_native": "Sie studiert Geisteswissenschaften an der Universität.", + "example_sentence_english": "She studies humanities at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14829 + }, + { + "word": "Gemeinwohl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "common good;public welfare", + "romanization": "Gemeinwohl", + "example_sentence_native": "Die Regierung sollte sich für das Gemeinwohl einsetzen.", + "example_sentence_english": "The government should advocate for the common good.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14830 + }, + { + "word": "mobben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bully;to mob", + "romanization": "mobben", + "example_sentence_native": "Es ist falsch, andere zu mobben.", + "example_sentence_english": "It is wrong to bully others.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14831 + }, + { + "word": "rammen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ram;to collide with", + "romanization": "rammen", + "example_sentence_native": "Das Schiff rammte den Eisberg.", + "example_sentence_english": "The ship rammed the iceberg.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14833 + }, + { + "word": "geschäftlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business-related;for business", + "romanization": "geschäftlich", + "example_sentence_native": "Ich bin geschäftlich hier.", + "example_sentence_english": "I am here on business.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14834 + }, + { + "word": "gleichberechtigt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equal;having equal rights", + "romanization": "gleichberechtigt", + "example_sentence_native": "Alle Menschen sollten gleichberechtigt sein.", + "example_sentence_english": "All people should have equal rights.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14836 + }, + { + "word": "Gleichgültigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indifference;apathy", + "romanization": "Gleichgültigkeit", + "example_sentence_native": "Seine Gleichgültigkeit war schockierend.", + "example_sentence_english": "His indifference was shocking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14837 + }, + { + "word": "Grundversorgung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "basic services;basic supply", + "romanization": "Grundversorgung", + "example_sentence_native": "Der Staat muss die Grundversorgung der Bürger sichern.", + "example_sentence_english": "The state must ensure the basic services for its citizens.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14839 + }, + { + "word": "Hafenstadt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "port city", + "romanization": "Hafenstadt", + "example_sentence_native": "Hamburg ist eine große Hafenstadt.", + "example_sentence_english": "Hamburg is a large port city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14840 + }, + { + "word": "Hauptteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main part", + "romanization": "Hauptteil", + "example_sentence_native": "Der Hauptteil des Buches ist sehr spannend.", + "example_sentence_english": "The main part of the book is very exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14842 + }, + { + "word": "Hausbesitzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeowner", + "romanization": "Hausbesitzer", + "example_sentence_native": "Der Hausbesitzer hat die Miete erhöht.", + "example_sentence_english": "The homeowner increased the rent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14843 + }, + { + "word": "hightech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-tech", + "romanization": "hightech", + "example_sentence_native": "Das ist ein hightech Gerät.", + "example_sentence_english": "That is a high-tech device.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14848 + }, + { + "word": "hinziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move to", + "romanization": "hinziehen", + "example_sentence_native": "Sie wollen in eine größere Stadt hinziehen.", + "example_sentence_english": "They want to move to a bigger city.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14849 + }, + { + "word": "Intensivstation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensive care unit (ICU)", + "romanization": "Intensivstation", + "example_sentence_native": "Er wurde auf die Intensivstation verlegt.", + "example_sentence_english": "He was transferred to the intensive care unit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14853 + }, + { + "word": "Isolierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulation", + "romanization": "Isolierung", + "example_sentence_native": "Die Isolierung des Hauses ist sehr gut.", + "example_sentence_english": "The insulation of the house is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14854 + }, + { + "word": "Kanalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sewage system", + "romanization": "Kanalisation", + "example_sentence_native": "Die Stadt investiert in die Erneuerung der Kanalisation.", + "example_sentence_english": "The city is investing in the renewal of the sewage system.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14856 + }, + { + "word": "kauen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chew", + "romanization": "kauen", + "example_sentence_native": "Er kaut sein Essen langsam.", + "example_sentence_english": "He chews his food slowly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14857 + }, + { + "word": "Keule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leg (of meat)", + "romanization": "Keule", + "example_sentence_native": "Er bestellte eine Lammkeule im Restaurant.", + "example_sentence_english": "He ordered a leg of lamb at the restaurant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14859 + }, + { + "word": "Klassifikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classification", + "romanization": "Klassifikation", + "example_sentence_native": "Die Klassifikation der Arten ist komplex.", + "example_sentence_english": "The classification of species is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14861 + }, + { + "word": "klassifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to classify", + "romanization": "klassifizieren", + "example_sentence_native": "Wir müssen die Daten klassifizieren.", + "example_sentence_english": "We need to classify the data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14862 + }, + { + "word": "Kommunalpolitiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local politician", + "romanization": "Kommunalpolitiker", + "example_sentence_native": "Der Kommunalpolitiker sprach über neue Projekte.", + "example_sentence_english": "The local politician spoke about new projects.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14863 + }, + { + "word": "Konsulat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consulate", + "romanization": "Konsulat", + "example_sentence_native": "Sie beantragte ihr Visum im Konsulat.", + "example_sentence_english": "She applied for her visa at the consulate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14864 + }, + { + "word": "Korrektheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correctness", + "romanization": "Korrektheit", + "example_sentence_native": "Die Korrektheit der Daten ist entscheidend.", + "example_sentence_english": "The correctness of the data is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14865 + }, + { + "word": "korrupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrupt", + "romanization": "korrupt", + "example_sentence_native": "Der Beamte wurde als korrupt entlarvt.", + "example_sentence_english": "The official was exposed as corrupt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14866 + }, + { + "word": "Kraftstoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel", + "romanization": "Kraftstoff", + "example_sentence_native": "Das Auto braucht mehr Kraftstoff.", + "example_sentence_english": "The car needs more fuel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14867 + }, + { + "word": "Kroate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Croat (male)", + "romanization": "Kroate", + "example_sentence_native": "Er ist ein Kroate aus Zagreb.", + "example_sentence_english": "He is a Croat from Zagreb.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14868 + }, + { + "word": "Köder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bait", + "romanization": "Köder", + "example_sentence_native": "Der Angler benutzte einen Wurm als Köder.", + "example_sentence_english": "The angler used a worm as bait.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14870 + }, + { + "word": "Küsschen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little kiss", + "romanization": "Küsschen", + "example_sentence_native": "Sie gab ihm ein Küsschen auf die Wange.", + "example_sentence_english": "She gave him a little kiss on the cheek.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14871 + }, + { + "word": "Lanze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lance", + "romanization": "Lanze", + "example_sentence_native": "Der Ritter trug eine schwere Lanze.", + "example_sentence_english": "The knight carried a heavy lance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14872 + }, + { + "word": "lautlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silent", + "romanization": "lautlos", + "example_sentence_native": "Die Katze schlich lautlos durch den Garten.", + "example_sentence_english": "The cat crept silently through the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14873 + }, + { + "word": "Leistungsträger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "key performer", + "romanization": "Leistungsträger", + "example_sentence_native": "Die Leistungsträger des Unternehmens wurden ausgezeichnet.", + "example_sentence_english": "The company's key performers were honored.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14874 + }, + { + "word": "losen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw lots", + "romanization": "losen", + "example_sentence_native": "Wir müssen losen, wer anfängt.", + "example_sentence_english": "We have to draw lots to see who starts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14878 + }, + { + "word": "Luxemburger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Luxembourger (male)", + "romanization": "Luxemburger", + "example_sentence_native": "Er ist ein Luxemburger und spricht drei Sprachen.", + "example_sentence_english": "He is a Luxembourger and speaks three languages.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14879 + }, + { + "word": "Mango", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mango", + "romanization": "Mango", + "example_sentence_native": "Ich esse gerne eine Mango.", + "example_sentence_english": "I like to eat a mango.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14880 + }, + { + "word": "Manufaktur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufactory", + "romanization": "Manufaktur", + "example_sentence_native": "Die alte Manufaktur wurde in ein Museum umgewandelt.", + "example_sentence_english": "The old manufactory was converted into a museum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14881 + }, + { + "word": "Matrose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailor", + "romanization": "Matrose", + "example_sentence_native": "Der Matrose stand am Steuer des Schiffes.", + "example_sentence_english": "The sailor stood at the ship's helm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14883 + }, + { + "word": "Mauerwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masonry", + "romanization": "Mauerwerk", + "example_sentence_native": "Das alte Mauerwerk muss restauriert werden.", + "example_sentence_english": "The old masonry needs to be restored.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14884 + }, + { + "word": "Midi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midi (length)", + "romanization": "Midi", + "example_sentence_native": "Sie trug einen eleganten Midi-Rock.", + "example_sentence_english": "She wore an elegant midi skirt.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14885 + }, + { + "word": "Miene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facial expression", + "romanization": "Miene", + "example_sentence_native": "Er hatte eine ernste Miene.", + "example_sentence_english": "He had a serious expression.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14886 + }, + { + "word": "Mikroorganismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microorganism", + "romanization": "Mikroorganismus", + "example_sentence_native": "Viele Mikroorganismen sind für das menschliche Auge unsichtbar.", + "example_sentence_english": "Many microorganisms are invisible to the human eye.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14887 + }, + { + "word": "Mining", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mining", + "romanization": "Mining", + "example_sentence_native": "Das Mining von Kryptowährungen verbraucht viel Energie.", + "example_sentence_english": "The mining of cryptocurrencies consumes a lot of energy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14890 + }, + { + "word": "Mitbestimmung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "co-determination", + "romanization": "Mitbestimmung", + "example_sentence_native": "Die Mitbestimmung der Arbeitnehmer ist in Deutschland gesetzlich verankert.", + "example_sentence_english": "Employee co-determination is legally enshrined in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14891 + }, + { + "word": "Mitbewohnerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female flatmate", + "romanization": "Mitbewohnerin", + "example_sentence_native": "Meine Mitbewohnerin ist sehr nett.", + "example_sentence_english": "My female flatmate is very nice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14892 + }, + { + "word": "mitteldeutsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Central German", + "romanization": "mitteldeutsch", + "example_sentence_native": "Die mitteldeutsche Sprache hat viele Dialekte.", + "example_sentence_english": "The Central German language has many dialects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14894 + }, + { + "word": "Moto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moto (motorcycle)", + "romanization": "Moto", + "example_sentence_native": "Er liebt sein Moto.", + "example_sentence_english": "He loves his motorcycle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14895 + }, + { + "word": "Nachfahre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descendant", + "romanization": "Nachfahre", + "example_sentence_native": "Er ist ein direkter Nachfahre des Königs.", + "example_sentence_english": "He is a direct descendant of the king.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14896 + }, + { + "word": "Nachtschicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "night shift", + "romanization": "Nachtschicht", + "example_sentence_native": "Sie arbeitet diese Woche in der Nachtschicht.", + "example_sentence_english": "She is working the night shift this week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14897 + }, + { + "word": "Nebenkosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incidental expenses;utility costs", + "romanization": "Nebenkosten", + "example_sentence_native": "Die Miete beträgt 500 Euro plus Nebenkosten.", + "example_sentence_english": "The rent is 500 euros plus incidental expenses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14901 + }, + { + "word": "Oberseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "top side;upper side", + "romanization": "Oberseite", + "example_sentence_native": "Die Oberseite des Tisches ist glatt.", + "example_sentence_english": "The top side of the table is smooth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14904 + }, + { + "word": "Panel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panel", + "romanization": "Panel", + "example_sentence_native": "Das Panel diskutierte die neuen Vorschläge.", + "example_sentence_english": "The panel discussed the new proposals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14907 + }, + { + "word": "Pfarrgemeinde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parish;church community", + "romanization": "Pfarrgemeinde", + "example_sentence_native": "Die Pfarrgemeinde organisiert ein Sommerfest.", + "example_sentence_english": "The parish organizes a summer festival.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14910 + }, + { + "word": "Pflegekraft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caregiver;nursing staff", + "romanization": "Pflegekraft", + "example_sentence_native": "Die Pflegekraft half dem Patienten beim Aufstehen.", + "example_sentence_english": "The caregiver helped the patient get up.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14911 + }, + { + "word": "pfälzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Palatinate (adj.);from Palatinate", + "romanization": "pfälzer", + "example_sentence_native": "Er trinkt gerne pfälzer Wein.", + "example_sentence_english": "He likes to drink Palatinate wine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14912 + }, + { + "word": "Preisvergleich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "price comparison", + "romanization": "Preisvergleich", + "example_sentence_native": "Ein Preisvergleich kann viel Geld sparen.", + "example_sentence_english": "A price comparison can save a lot of money.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14914 + }, + { + "word": "Prozedur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure", + "romanization": "Prozedur", + "example_sentence_native": "Die Prozedur dauerte länger als erwartet.", + "example_sentence_english": "The procedure took longer than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14915 + }, + { + "word": "rechnerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arithmetically;by calculation", + "romanization": "rechnerisch", + "example_sentence_native": "Rechnerisch ist das Ergebnis korrekt.", + "example_sentence_english": "Arithmetically, the result is correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14916 + }, + { + "word": "Reiseziel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "travel destination", + "romanization": "Reiseziel", + "example_sentence_native": "Unser Reiseziel ist die Nordsee.", + "example_sentence_english": "Our travel destination is the North Sea.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14917 + }, + { + "word": "Reissverschluss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zipper;zip fastener", + "romanization": "Reissverschluss", + "example_sentence_native": "Der Reissverschluss meiner Jacke ist kaputt.", + "example_sentence_english": "The zipper of my jacket is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14918 + }, + { + "word": "rekonstruieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconstruct", + "romanization": "rekonstruieren", + "example_sentence_native": "Die Archäologen versuchen, das alte Gebäude zu rekonstruieren.", + "example_sentence_english": "The archaeologists are trying to reconstruct the old building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14919 + }, + { + "word": "Rekrut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recruit", + "romanization": "Rekrut", + "example_sentence_native": "Der neue Rekrut musste eine strenge Ausbildung durchlaufen.", + "example_sentence_english": "The new recruit had to undergo strict training.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14920 + }, + { + "word": "Ries", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ream (of paper)", + "romanization": "Ries", + "example_sentence_native": "Wir brauchen ein Ries Papier für den Drucker.", + "example_sentence_english": "We need a ream of paper for the printer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14921 + }, + { + "word": "Salbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ointment;salve", + "romanization": "Salbe", + "example_sentence_native": "Tragen Sie diese Salbe zweimal täglich auf die betroffene Stelle auf.", + "example_sentence_english": "Apply this ointment twice daily to the affected area.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14923 + }, + { + "word": "Sauberkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleanliness", + "romanization": "Sauberkeit", + "example_sentence_native": "Sauberkeit ist in diesem Krankenhaus von größter Bedeutung.", + "example_sentence_english": "Cleanliness is of utmost importance in this hospital.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14924 + }, + { + "word": "Schrein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shrine", + "romanization": "Schrein", + "example_sentence_native": "Der alte Schrein war ein Ort der Verehrung für die Dorfbewohner.", + "example_sentence_english": "The old shrine was a place of worship for the villagers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14925 + }, + { + "word": "Schulsystem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school system", + "romanization": "Schulsystem", + "example_sentence_native": "Das deutsche Schulsystem ist anders als das amerikanische.", + "example_sentence_english": "The German school system is different from the American one.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14926 + }, + { + "word": "schwerwiegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serious;grave;severe", + "romanization": "schwerwiegend", + "example_sentence_native": "Das war ein schwerwiegender Fehler mit weitreichenden Folgen.", + "example_sentence_english": "That was a serious mistake with far-reaching consequences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14928 + }, + { + "word": "Scooter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scooter", + "romanization": "Scooter", + "example_sentence_native": "Mein Kind fährt gerne mit seinem Scooter im Park.", + "example_sentence_english": "My child likes to ride their scooter in the park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14930 + }, + { + "word": "sechzig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixty", + "romanization": "sechzig", + "example_sentence_native": "Er ist schon sechzig Jahre alt, aber immer noch sehr aktiv.", + "example_sentence_english": "He is already sixty years old, but still very active.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "num", + "word_frequency": 14931 + }, + { + "word": "Seelsorge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pastoral care;spiritual guidance", + "romanization": "Seelsorge", + "example_sentence_native": "Die Seelsorge bietet Unterstützung in schwierigen Lebenslagen.", + "example_sentence_english": "Pastoral care offers support in difficult life situations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14932 + }, + { + "word": "Sicherheitspolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security policy", + "romanization": "Sicherheitspolitik", + "example_sentence_native": "Die Sicherheitspolitik des Landes wurde neu bewertet.", + "example_sentence_english": "The country's security policy was re-evaluated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14933 + }, + { + "word": "Siegerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female winner", + "romanization": "Siegerin", + "example_sentence_native": "Die Siegerin des Rennens wurde mit großem Applaus gefeiert.", + "example_sentence_english": "The female winner of the race was celebrated with great applause.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14934 + }, + { + "word": "sinnlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensual;sensory", + "romanization": "sinnlich", + "example_sentence_native": "Sie hat eine sehr sinnliche Ausstrahlung.", + "example_sentence_english": "She has a very sensual aura.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14936 + }, + { + "word": "Slip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefs;slip (underwear)", + "romanization": "Slip", + "example_sentence_native": "Er trägt am liebsten bequeme Slips.", + "example_sentence_english": "He prefers to wear comfortable briefs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14937 + }, + { + "word": "Soda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soda;club soda", + "romanization": "Soda", + "example_sentence_native": "Ich hätte gerne ein Glas Soda mit Zitrone.", + "example_sentence_english": "I would like a glass of soda with lemon.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14938 + }, + { + "word": "Sonntagmorgen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Sunday morning", + "romanization": "Sonntagmorgen", + "example_sentence_native": "Am Sonntagmorgen schlafe ich gerne lange.", + "example_sentence_english": "On Sunday morning, I like to sleep in.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14939 + }, + { + "word": "Sorgerecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custody (parental)", + "romanization": "Sorgerecht", + "example_sentence_native": "Die Eltern teilen sich das Sorgerecht für ihre Kinder.", + "example_sentence_english": "The parents share custody of their children.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14940 + }, + { + "word": "Spalt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gap;crack;slit", + "romanization": "Spalt", + "example_sentence_native": "Es gab einen kleinen Spalt unter der Tür.", + "example_sentence_english": "There was a small gap under the door.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14942 + }, + { + "word": "Spiegelbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection;mirror image", + "romanization": "Spiegelbild", + "example_sentence_native": "Sie sah ihr Spiegelbild im Wasser.", + "example_sentence_english": "She saw her reflection in the water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14943 + }, + { + "word": "Spielbetrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "game operation;play activity", + "romanization": "Spielbetrieb", + "example_sentence_native": "Der Spielbetrieb wurde wegen des Regens eingestellt.", + "example_sentence_english": "The game operation was stopped due to the rain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14944 + }, + { + "word": "sporadisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sporadic", + "romanization": "sporadisch", + "example_sentence_native": "Es gab nur sporadische Regenfälle.", + "example_sentence_english": "There were only sporadic rainfalls.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 14945 + }, + { + "word": "Spore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spore", + "romanization": "Spore", + "example_sentence_native": "Pilze vermehren sich durch Sporen.", + "example_sentence_english": "Fungi reproduce through spores.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14946 + }, + { + "word": "Statut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statute;regulation;bylaw", + "romanization": "Statut", + "example_sentence_native": "Die neuen Statuten wurden von der Versammlung genehmigt.", + "example_sentence_english": "The new statutes were approved by the assembly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14947 + }, + { + "word": "Steuergelder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax money;public funds", + "romanization": "Steuergelder", + "example_sentence_native": "Die Steuergelder werden für öffentliche Projekte verwendet.", + "example_sentence_english": "The tax money is used for public projects.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14949 + }, + { + "word": "strafrechtliche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal (law-related)", + "romanization": "strafrechtliche", + "example_sentence_native": "Es gab keine strafrechtliche Verfolgung.", + "example_sentence_english": "There was no criminal prosecution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14950 + }, + { + "word": "strahlenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radiant;shining", + "romanization": "strahlenden", + "example_sentence_native": "Sie hatte ein strahlendes Lächeln.", + "example_sentence_english": "She had a radiant smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14951 + }, + { + "word": "Streifenwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patrol car;police car", + "romanization": "Streifenwagen", + "example_sentence_native": "Ein Streifenwagen fuhr die Straße entlang.", + "example_sentence_english": "A patrol car drove down the street.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14952 + }, + { + "word": "Strümpfe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stockings;socks", + "romanization": "Strümpfe", + "example_sentence_native": "Sie zog ihre warmen Strümpfe an.", + "example_sentence_english": "She put on her warm stockings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14953 + }, + { + "word": "säubern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clean;to purge", + "romanization": "säubern", + "example_sentence_native": "Er musste den Raum säubern.", + "example_sentence_english": "He had to clean the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14955 + }, + { + "word": "Südseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "south side", + "romanization": "Südseite", + "example_sentence_native": "Das Haus hat Fenster zur Südseite.", + "example_sentence_english": "The house has windows facing the south side.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14956 + }, + { + "word": "tausendmal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thousand times", + "romanization": "tausendmal", + "example_sentence_native": "Ich habe es dir schon tausendmal gesagt.", + "example_sentence_english": "I've told you a thousand times already.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 14959 + }, + { + "word": "Teamkollege", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teammate", + "romanization": "Teamkollege", + "example_sentence_native": "Mein Teamkollege hat das entscheidende Tor geschossen.", + "example_sentence_english": "My teammate scored the decisive goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14960 + }, + { + "word": "Tester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tester", + "romanization": "Tester", + "example_sentence_native": "Der Software-Tester fand einen kritischen Fehler.", + "example_sentence_english": "The software tester found a critical bug.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14961 + }, + { + "word": "Thermometer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thermometer", + "romanization": "Thermometer", + "example_sentence_native": "Das Thermometer zeigt 25 Grad Celsius an.", + "example_sentence_english": "The thermometer shows 25 degrees Celsius.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14962 + }, + { + "word": "unbedeutend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insignificant;unimportant", + "romanization": "unbedeutend", + "example_sentence_native": "Das war ein unbedeutender Fehler.", + "example_sentence_english": "That was an insignificant mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14964 + }, + { + "word": "Unmenge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "huge amount;vast quantity", + "romanization": "Unmenge", + "example_sentence_native": "Er hatte eine Unmenge an Arbeit zu erledigen.", + "example_sentence_english": "He had a huge amount of work to do.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14965 + }, + { + "word": "unterlaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to creep in;to occur (unintentionally)", + "romanization": "unterlaufen", + "example_sentence_native": "Mir ist ein Fehler unterlaufen.", + "example_sentence_english": "A mistake crept in for me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14966 + }, + { + "word": "unvermeidlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unavoidable;inevitable", + "romanization": "unvermeidlich", + "example_sentence_native": "Das Ergebnis war unvermeidlich.", + "example_sentence_english": "The outcome was unavoidable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14967 + }, + { + "word": "Veranstaltungsort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "venue;event location", + "romanization": "Veranstaltungsort", + "example_sentence_native": "Der Veranstaltungsort für das Konzert ist noch nicht bekannt.", + "example_sentence_english": "The venue for the concert is not yet known.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14968 + }, + { + "word": "Verstärker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amplifier;booster", + "romanization": "Verstärker", + "example_sentence_native": "Wir brauchen einen neuen Verstärker für die Gitarre.", + "example_sentence_english": "We need a new amplifier for the guitar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14969 + }, + { + "word": "vertretbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justifiable;defensible;acceptable", + "romanization": "vertretbar", + "example_sentence_native": "Seine Entscheidung war absolut vertretbar.", + "example_sentence_english": "His decision was absolutely justifiable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14970 + }, + { + "word": "Videoüberwachung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "video surveillance", + "romanization": "Videoüberwachung", + "example_sentence_native": "Die Videoüberwachung hat den Dieb gefilmt.", + "example_sentence_english": "The video surveillance filmed the thief.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14971 + }, + { + "word": "Volksmund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "common parlance;popular saying", + "romanization": "Volksmund", + "example_sentence_native": "Im Volksmund heißt es, dass Glück im Unglück steckt.", + "example_sentence_english": "In common parlance, it is said that there is luck in misfortune.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14972 + }, + { + "word": "Voting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voting;vote", + "romanization": "Voting", + "example_sentence_native": "Das Voting für den besten Song beginnt jetzt.", + "example_sentence_english": "The voting for the best song starts now.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14973 + }, + { + "word": "Wahllokal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polling station", + "romanization": "Wahllokal", + "example_sentence_native": "Wir gehen ins Wahllokal, um unsere Stimme abzugeben.", + "example_sentence_english": "We are going to the polling station to cast our vote.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14974 + }, + { + "word": "Wanderweg", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hiking trail", + "romanization": "Wanderweg", + "example_sentence_native": "Der Wanderweg führt durch einen schönen Wald.", + "example_sentence_english": "The hiking trail leads through a beautiful forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14975 + }, + { + "word": "Wespe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wasp", + "romanization": "Wespe", + "example_sentence_native": "Eine Wespe hat mich gestochen.", + "example_sentence_english": "A wasp stung me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14976 + }, + { + "word": "Windkraftanlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wind turbine;wind power plant", + "romanization": "Windkraftanlage", + "example_sentence_native": "Viele Windkraftanlagen produzieren saubere Energie.", + "example_sentence_english": "Many wind turbines produce clean energy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14978 + }, + { + "word": "wurscht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrelevant;doesn't matter (colloquial)", + "romanization": "wurscht", + "example_sentence_native": "Das ist mir doch wurscht!", + "example_sentence_english": "That's all the same to me! / I don't care!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14979 + }, + { + "word": "würfeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dice;to roll (dice)", + "romanization": "würfeln", + "example_sentence_native": "Sie müssen die Zwiebeln würfeln.", + "example_sentence_english": "You need to dice the onions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14980 + }, + { + "word": "zerfallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disintegrate;to decay", + "romanization": "zerfallen", + "example_sentence_native": "Das alte Gebäude begann zu zerfallen.", + "example_sentence_english": "The old building began to disintegrate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14983 + }, + { + "word": "Zimt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cinnamon", + "romanization": "Zimt", + "example_sentence_native": "Ich mag Zimt in meinem Kaffee.", + "example_sentence_english": "I like cinnamon in my coffee.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14984 + }, + { + "word": "Überfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossing (e.g.;by ferry)", + "romanization": "Überfahrt", + "example_sentence_native": "Die Überfahrt dauerte drei Stunden.", + "example_sentence_english": "The crossing lasted three hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14986 + }, + { + "word": "Überführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overpass;transfer;conviction (legal)", + "romanization": "Überführung", + "example_sentence_native": "Die neue Überführung entlastet den Verkehr.", + "example_sentence_english": "The new overpass eases traffic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14987 + }, + { + "word": "Abenteurer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adventurer", + "romanization": "Abenteurer", + "example_sentence_native": "Er ist ein mutiger Abenteurer.", + "example_sentence_english": "He is a brave adventurer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14989 + }, + { + "word": "abhören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eavesdrop;to tap (a phone)", + "romanization": "abhören", + "example_sentence_native": "Die Polizei durfte das Telefon abhören.", + "example_sentence_english": "The police were allowed to tap the phone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "hören", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14990 + }, + { + "word": "abschätzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to estimate;to assess", + "romanization": "abschätzen", + "example_sentence_native": "Es ist schwer, die Kosten abzuschätzen.", + "example_sentence_english": "It is difficult to estimate the costs.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schätzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14991 + }, + { + "word": "abgrenzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delimit;to differentiate", + "romanization": "abgrenzen", + "example_sentence_native": "Man muss die Bereiche klar abgrenzen.", + "example_sentence_english": "One must clearly delimit the areas.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "grenzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 14992 + }, + { + "word": "Ale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ale", + "romanization": "Ale", + "example_sentence_native": "Er bestellte ein dunkles Ale.", + "example_sentence_english": "He ordered a dark ale.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 14994 + }, + { + "word": "allgäuer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from the Allgäu region", + "romanization": "allgäuer", + "example_sentence_native": "Wir haben leckeren allgäuer Käse gekauft.", + "example_sentence_english": "We bought delicious Allgäu cheese.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 14997 + }, + { + "word": "alsbald", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soon;shortly thereafter", + "romanization": "alsbald", + "example_sentence_native": "Er wird alsbald zurückkehren.", + "example_sentence_english": "He will return soon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 14999 + }, + { + "word": "Altenheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing home", + "romanization": "Altenheim", + "example_sentence_native": "Meine Großmutter lebt in einem Altenheim.", + "example_sentence_english": "My grandmother lives in a nursing home.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15000 + }, + { + "word": "Androhung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threat;warning", + "romanization": "Androhung", + "example_sentence_native": "Die Androhung von Sanktionen wurde ausgesprochen.", + "example_sentence_english": "The threat of sanctions was issued.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15001 + }, + { + "word": "anfragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inquire;to request", + "romanization": "anfragen", + "example_sentence_native": "Ich werde beim Kundendienst anfragen.", + "example_sentence_english": "I will inquire with customer service.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15002 + }, + { + "word": "Anrede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "form of address;salutation", + "romanization": "Anrede", + "example_sentence_native": "Die richtige Anrede ist wichtig in einem formellen Brief.", + "example_sentence_english": "The correct form of address is important in a formal letter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15003 + }, + { + "word": "anstossen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clink glasses;to toast;to bump into", + "romanization": "anstossen", + "example_sentence_native": "Lasst uns auf den Erfolg anstossen!", + "example_sentence_english": "Let's toast to success!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "stossen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15004 + }, + { + "word": "Ansturm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rush;onslaught;surge", + "romanization": "Ansturm", + "example_sentence_native": "Es gab einen großen Ansturm auf die Tickets.", + "example_sentence_english": "There was a big rush for the tickets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15005 + }, + { + "word": "Atombombe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atomic bomb", + "romanization": "Atombombe", + "example_sentence_native": "Die Entwicklung der Atombombe veränderte die Welt.", + "example_sentence_english": "The development of the atomic bomb changed the world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15007 + }, + { + "word": "aufschlagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to open (a book);to hit;to strike", + "romanization": "aufschlagen", + "example_sentence_native": "Er schlug das Buch auf.", + "example_sentence_english": "He opened the book.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15009 + }, + { + "word": "augenblicklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instantly;at the moment;currently", + "romanization": "augenblicklich", + "example_sentence_native": "Er wird augenblicklich hier sein.", + "example_sentence_english": "He will be here instantly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 15010 + }, + { + "word": "Ausrufezeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exclamation mark", + "romanization": "Ausrufezeichen", + "example_sentence_native": "Am Ende des Satzes steht ein Ausrufezeichen.", + "example_sentence_english": "There is an exclamation mark at the end of the sentence.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15011 + }, + { + "word": "Autobauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "car manufacturer", + "romanization": "Autobauer", + "example_sentence_native": "Die deutschen Autobauer sind weltweit bekannt.", + "example_sentence_english": "The German car manufacturers are known worldwide.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15013 + }, + { + "word": "Bader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bath attendant;barber-surgeon", + "romanization": "Bader", + "example_sentence_native": "Im Mittelalter war der Bader auch für kleine Operationen zuständig.", + "example_sentence_english": "In the Middle Ages, the barber-surgeon was also responsible for minor operations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15016 + }, + { + "word": "baldig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soon;speedy;imminent", + "romanization": "baldig", + "example_sentence_native": "Ich wünsche Ihnen eine baldige Genesung.", + "example_sentence_english": "I wish you a speedy recovery.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15017 + }, + { + "word": "Beamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "projector", + "romanization": "Beamer", + "example_sentence_native": "Der Beamer ist für die Präsentation notwendig.", + "example_sentence_english": "The projector is necessary for the presentation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15018 + }, + { + "word": "begeistert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiastic", + "romanization": "begeistert", + "example_sentence_native": "Sie war begeistert von der Idee.", + "example_sentence_english": "She was enthusiastic about the idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15020 + }, + { + "word": "Beibehaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retention", + "romanization": "Beibehaltung", + "example_sentence_native": "Die Beibehaltung der alten Traditionen ist wichtig.", + "example_sentence_english": "The retention of old traditions is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15021 + }, + { + "word": "Beisein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presence", + "romanization": "Beisein", + "example_sentence_native": "Im Beisein seiner Familie fühlte er sich sicher.", + "example_sentence_english": "In the presence of his family, he felt safe.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15022 + }, + { + "word": "beneiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to envy", + "romanization": "beneiden", + "example_sentence_native": "Ich beneide dich um deinen neuen Job.", + "example_sentence_english": "I envy you for your new job.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15023 + }, + { + "word": "bereitwillig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "willingly", + "romanization": "bereitwillig", + "example_sentence_native": "Er gab bereitwillig Auskunft.", + "example_sentence_english": "He willingly gave information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15024 + }, + { + "word": "Bestattung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral", + "romanization": "Bestattung", + "example_sentence_native": "Die Bestattung findet nächste Woche statt.", + "example_sentence_english": "The funeral will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15026 + }, + { + "word": "bestrebt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "striving", + "romanization": "bestrebt", + "example_sentence_native": "Er ist stets bestrebt, seine Ziele zu erreichen.", + "example_sentence_english": "He is always striving to achieve his goals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15027 + }, + { + "word": "bleibend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasting", + "romanization": "bleibend", + "example_sentence_native": "Das war ein bleibender Eindruck.", + "example_sentence_english": "That was a lasting impression.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15029 + }, + { + "word": "Cast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cast (of a play;film)", + "romanization": "Cast", + "example_sentence_native": "Der Cast des Films war beeindruckend.", + "example_sentence_english": "The cast of the film was impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15033 + }, + { + "word": "Chlor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chlorine", + "romanization": "Chlor", + "example_sentence_native": "Chlor wird zur Desinfektion von Wasser verwendet.", + "example_sentence_english": "Chlorine is used for water disinfection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15034 + }, + { + "word": "Combo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combo", + "romanization": "Combo", + "example_sentence_native": "Die Jazz-Combo spielte eine tolle Melodie.", + "example_sentence_english": "The jazz combo played a great melody.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15035 + }, + { + "word": "Comment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comment", + "romanization": "Comment", + "example_sentence_native": "Er hinterließ einen positiven Comment unter dem Video.", + "example_sentence_english": "He left a positive comment under the video.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15036 + }, + { + "word": "Computerspiel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "computer game", + "romanization": "Computerspiel", + "example_sentence_native": "Mein Lieblings-Computerspiel ist sehr spannend.", + "example_sentence_english": "My favorite computer game is very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15037 + }, + { + "word": "Courage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courage", + "romanization": "Courage", + "example_sentence_native": "Es braucht viel Courage, um das zu tun.", + "example_sentence_english": "It takes a lot of courage to do that.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15038 + }, + { + "word": "defensiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defensive", + "romanization": "defensiv", + "example_sentence_native": "Seine Haltung war sehr defensiv.", + "example_sentence_english": "His stance was very defensive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15042 + }, + { + "word": "dekorieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decorate", + "romanization": "dekorieren", + "example_sentence_native": "Wir wollen das Zimmer dekorieren.", + "example_sentence_english": "We want to decorate the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15044 + }, + { + "word": "Didaktik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "didactics;teaching methodology", + "romanization": "Didaktik", + "example_sentence_native": "Die Didaktik des Faches ist komplex.", + "example_sentence_english": "The didactics of the subject are complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15046 + }, + { + "word": "Dienstzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working hours;period of service", + "romanization": "Dienstzeit", + "example_sentence_native": "Seine Dienstzeit endet um fünf Uhr.", + "example_sentence_english": "His working hours end at five o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15047 + }, + { + "word": "Dill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dill", + "romanization": "Dill", + "example_sentence_native": "Ich brauche frischen Dill für den Salat.", + "example_sentence_english": "I need fresh dill for the salad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15048 + }, + { + "word": "Doktortitel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctoral degree;PhD title", + "romanization": "Doktortitel", + "example_sentence_native": "Er hat einen Doktortitel in Physik.", + "example_sentence_english": "He has a doctoral degree in physics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15049 + }, + { + "word": "Doppelmoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "double standard", + "romanization": "Doppelmoral", + "example_sentence_native": "Viele kritisieren die Doppelmoral in der Politik.", + "example_sentence_english": "Many criticize the double standard in politics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15051 + }, + { + "word": "Durchsage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announcement", + "romanization": "Durchsage", + "example_sentence_native": "Bitte achten Sie auf die nächste Durchsage.", + "example_sentence_english": "Please pay attention to the next announcement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15052 + }, + { + "word": "eingehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorough;detailed", + "romanization": "eingehend", + "example_sentence_native": "Wir haben eine eingehende Analyse durchgeführt.", + "example_sentence_english": "We conducted a thorough analysis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15053 + }, + { + "word": "einsetzbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "usable;deployable", + "romanization": "einsetzbar", + "example_sentence_native": "Das Gerät ist vielseitig einsetzbar.", + "example_sentence_english": "The device is versatile and usable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15054 + }, + { + "word": "eintauchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to immerse;to dive in", + "romanization": "eintauchen", + "example_sentence_native": "Er tauchte in das kalte Wasser ein.", + "example_sentence_english": "He immersed himself in the cold water.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "tauchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15055 + }, + { + "word": "Energieverbrauch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy consumption", + "romanization": "Energieverbrauch", + "example_sentence_native": "Wir müssen den Energieverbrauch senken.", + "example_sentence_english": "We must reduce energy consumption.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15057 + }, + { + "word": "Entnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "withdrawal;removal;sample", + "romanization": "Entnahme", + "example_sentence_native": "Die Entnahme der Probe erfolgte schnell.", + "example_sentence_english": "The removal of the sample was quick.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15058 + }, + { + "word": "Erfolgsgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "success story", + "romanization": "Erfolgsgeschichte", + "example_sentence_native": "Das Unternehmen ist eine wahre Erfolgsgeschichte.", + "example_sentence_english": "The company is a true success story.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15059 + }, + { + "word": "erlöschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expire;to go out", + "romanization": "erlöschen", + "example_sentence_native": "Die Flamme erlosch langsam.", + "example_sentence_english": "The flame slowly went out.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15060 + }, + { + "word": "Ermittlungsverfahren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "investigation procedure", + "romanization": "Ermittlungsverfahren", + "example_sentence_native": "Das Ermittlungsverfahren wurde eingestellt.", + "example_sentence_english": "The investigation procedure was discontinued.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15061 + }, + { + "word": "Erstligist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first division team;player", + "romanization": "Erstligist", + "example_sentence_native": "Der Verein ist ein bekannter Erstligist.", + "example_sentence_english": "The club is a well-known first division team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15062 + }, + { + "word": "erträglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bearable;tolerable", + "romanization": "erträglich", + "example_sentence_native": "Die Schmerzen waren erträglich.", + "example_sentence_english": "The pain was bearable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15063 + }, + { + "word": "Fahrlässigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "negligence;carelessness", + "romanization": "Fahrlässigkeit", + "example_sentence_native": "Der Unfall geschah aus Fahrlässigkeit.", + "example_sentence_english": "The accident happened due to negligence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15066 + }, + { + "word": "farblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in terms of color;color-wise", + "romanization": "farblich", + "example_sentence_native": "Die Möbel passen farblich gut zusammen.", + "example_sentence_english": "The furniture matches well in terms of color.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15068 + }, + { + "word": "Fkk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "FKK (nudism;naturism)", + "romanization": "Fkk", + "example_sentence_native": "Am Strand gibt es einen FKK-Bereich.", + "example_sentence_english": "There is an FKK area on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15071 + }, + { + "word": "Flop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flop;failure", + "romanization": "Flop", + "example_sentence_native": "Der Film war ein totaler Flop.", + "example_sentence_english": "The movie was a total flop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15072 + }, + { + "word": "Fohlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foal", + "romanization": "Fohlen", + "example_sentence_native": "Das Fohlen spielte auf der Wiese.", + "example_sentence_english": "The foal played in the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15073 + }, + { + "word": "fromm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pious;devout", + "romanization": "fromm", + "example_sentence_native": "Sie ist eine sehr fromme Frau.", + "example_sentence_english": "She is a very pious woman.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15074 + }, + { + "word": "blocken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to block", + "romanization": "blocken", + "example_sentence_native": "Er konnte den Ball blocken.", + "example_sentence_english": "He could block the ball.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15075 + }, + { + "word": "Geburtshilfe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obstetrics;midwifery", + "romanization": "Geburtshilfe", + "example_sentence_native": "Sie arbeitet in der Geburtshilfe.", + "example_sentence_english": "She works in obstetrics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15076 + }, + { + "word": "Gerichtssaal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courtroom", + "romanization": "Gerichtssaal", + "example_sentence_native": "Der Angeklagte betrat den Gerichtssaal.", + "example_sentence_english": "The accused entered the courtroom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15079 + }, + { + "word": "Gesamtbevölkerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "total population", + "romanization": "Gesamtbevölkerung", + "example_sentence_native": "Die Gesamtbevölkerung Deutschlands beträgt über 83 Millionen.", + "example_sentence_english": "The total population of Germany is over 83 million.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15080 + }, + { + "word": "Gewinnerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female winner", + "romanization": "Gewinnerin", + "example_sentence_native": "Die Gewinnerin des Wettbewerbs wurde bekannt gegeben.", + "example_sentence_english": "The female winner of the competition was announced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15081 + }, + { + "word": "Greif", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "griffin", + "romanization": "Greif", + "example_sentence_native": "Der Greif ist ein Fabelwesen mit dem Körper eines Löwen und dem Kopf eines Adlers.", + "example_sentence_english": "The griffin is a mythical creature with the body of a lion and the head of an eagle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15084 + }, + { + "word": "Güterverkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freight transport", + "romanization": "Güterverkehr", + "example_sentence_native": "Der Güterverkehr auf der Schiene nimmt zu.", + "example_sentence_english": "Freight transport by rail is increasing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15085 + }, + { + "word": "Hallenbad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "indoor swimming pool", + "romanization": "Hallenbad", + "example_sentence_native": "Wir gehen am Wochenende ins Hallenbad.", + "example_sentence_english": "We are going to the indoor swimming pool on the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15086 + }, + { + "word": "Herangehensweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach", + "romanization": "Herangehensweise", + "example_sentence_native": "Seine Herangehensweise an das Problem war sehr innovativ.", + "example_sentence_english": "His approach to the problem was very innovative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15090 + }, + { + "word": "herb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tart", + "romanization": "herb", + "example_sentence_native": "Der Wein hat einen herben Geschmack.", + "example_sentence_english": "The wine has a tart taste.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15091 + }, + { + "word": "Hering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "herring", + "romanization": "Hering", + "example_sentence_native": "Ich esse gerne eingelegten Hering.", + "example_sentence_english": "I like to eat pickled herring.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15093 + }, + { + "word": "Herrchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "master (of a pet)", + "romanization": "Herrchen", + "example_sentence_native": "Der Hund wartet auf sein Herrchen.", + "example_sentence_english": "The dog is waiting for its master.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15094 + }, + { + "word": "hierüber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "about this", + "romanization": "hierüber", + "example_sentence_native": "Wir müssen hierüber noch sprechen.", + "example_sentence_english": "We still need to talk about this.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 15095 + }, + { + "word": "himmlisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heavenly", + "romanization": "himmlisch", + "example_sentence_native": "Der Kuchen schmeckt himmlisch.", + "example_sentence_english": "The cake tastes heavenly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15096 + }, + { + "word": "Hubraum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "engine displacement", + "romanization": "Hubraum", + "example_sentence_native": "Der Hubraum des Motors beträgt zwei Liter.", + "example_sentence_english": "The engine displacement is two liters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15098 + }, + { + "word": "Hypothek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortgage", + "romanization": "Hypothek", + "example_sentence_native": "Sie haben eine Hypothek auf ihr Haus aufgenommen.", + "example_sentence_english": "They took out a mortgage on their house.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15099 + }, + { + "word": "immun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immune", + "romanization": "immun", + "example_sentence_native": "Er ist gegen diese Krankheit immun.", + "example_sentence_english": "He is immune to this disease.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15100 + }, + { + "word": "Inhaltsstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingredient;constituent", + "romanization": "Inhaltsstoff", + "example_sentence_native": "Bitte lesen Sie die Liste der Inhaltsstoffe.", + "example_sentence_english": "Please read the list of ingredients.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15102 + }, + { + "word": "Instandsetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repair;restoration", + "romanization": "Instandsetzung", + "example_sentence_native": "Die Instandsetzung des Gebäudes dauert noch an.", + "example_sentence_english": "The restoration of the building is still ongoing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15103 + }, + { + "word": "Intelligence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intelligence", + "romanization": "Intelligence", + "example_sentence_native": "Künstliche Intelligence ist ein wichtiges Forschungsgebiet.", + "example_sentence_english": "Artificial intelligence is an important field of research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15104 + }, + { + "word": "Kanon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canon (rule;principle;body of works)", + "romanization": "Kanon", + "example_sentence_native": "Dieser Text gehört zum Kanon der Weltliteratur.", + "example_sentence_english": "This text belongs to the canon of world literature.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15111 + }, + { + "word": "Kapuze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood", + "romanization": "Kapuze", + "example_sentence_native": "Sie zog die Kapuze über den Kopf.", + "example_sentence_english": "She pulled the hood over her head.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15112 + }, + { + "word": "Karfreitag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Good Friday", + "romanization": "Karfreitag", + "example_sentence_native": "Karfreitag ist ein Feiertag in Deutschland.", + "example_sentence_english": "Good Friday is a public holiday in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15113 + }, + { + "word": "Kinderspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "children's game;(idiom) piece of cake", + "romanization": "Kinderspiel", + "example_sentence_native": "Für ihn war die Aufgabe ein Kinderspiel.", + "example_sentence_english": "For him, the task was a piece of cake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15115 + }, + { + "word": "Kirchengeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "church history", + "romanization": "Kirchengeschichte", + "example_sentence_native": "Er studiert Kirchengeschichte an der Universität.", + "example_sentence_english": "He studies church history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15116 + }, + { + "word": "Kirsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cherry brandy (Kirschwasser)", + "romanization": "Kirsch", + "example_sentence_native": "Er bestellte einen Kirsch zum Nachtisch.", + "example_sentence_english": "He ordered a Kirsch for dessert.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15117 + }, + { + "word": "Kirsche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cherry", + "romanization": "Kirsche", + "example_sentence_native": "Ich esse gerne frische Kirschen im Sommer.", + "example_sentence_english": "I like to eat fresh cherries in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15118 + }, + { + "word": "Kittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lab coat;smock;overall", + "romanization": "Kittel", + "example_sentence_native": "Der Arzt trug einen weißen Kittel.", + "example_sentence_english": "The doctor wore a white lab coat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15119 + }, + { + "word": "Kleidungsstück", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piece of clothing", + "romanization": "Kleidungsstück", + "example_sentence_native": "Dieses Kleidungsstück ist sehr bequem.", + "example_sentence_english": "This piece of clothing is very comfortable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15120 + }, + { + "word": "Krater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crater", + "romanization": "Krater", + "example_sentence_native": "Der Mond hat viele Krater.", + "example_sentence_english": "The moon has many craters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15121 + }, + { + "word": "Kulturzentrum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultural center", + "romanization": "Kulturzentrum", + "example_sentence_native": "Das Kulturzentrum bietet viele Veranstaltungen an.", + "example_sentence_english": "The cultural center offers many events.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15124 + }, + { + "word": "Landratsamt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district administration office", + "romanization": "Landratsamt", + "example_sentence_native": "Ich muss zum Landratsamt, um meinen Ausweis zu verlängern.", + "example_sentence_english": "I have to go to the district administration office to renew my ID.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15125 + }, + { + "word": "langweilen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bore", + "romanization": "langweilen", + "example_sentence_native": "Der Film konnte mich nicht langweilen.", + "example_sentence_english": "The film could not bore me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15126 + }, + { + "word": "Lead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lead (e.g.;sales lead)", + "romanization": "Lead", + "example_sentence_native": "Wir haben einen neuen Lead für unser Produkt generiert.", + "example_sentence_english": "We generated a new lead for our product.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15127 + }, + { + "word": "Lebensweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path of life", + "romanization": "Lebensweg", + "example_sentence_native": "Jeder Mensch hat seinen eigenen Lebensweg.", + "example_sentence_english": "Every person has their own path of life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15128 + }, + { + "word": "Legalisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legalization", + "romanization": "Legalisierung", + "example_sentence_native": "Die Legalisierung von Cannabis wird diskutiert.", + "example_sentence_english": "The legalization of cannabis is being discussed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15130 + }, + { + "word": "Linkshänder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left-hander", + "romanization": "Linkshänder", + "example_sentence_native": "Mein Bruder ist ein Linkshänder.", + "example_sentence_english": "My brother is a left-hander.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15133 + }, + { + "word": "Login", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "login", + "romanization": "Login", + "example_sentence_native": "Bitte geben Sie Ihr Login und Passwort ein.", + "example_sentence_english": "Please enter your login and password.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15134 + }, + { + "word": "Machtergreifung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seizure of power", + "romanization": "Machtergreifung", + "example_sentence_native": "Die Machtergreifung der Nationalsozialisten war ein dunkles Kapitel.", + "example_sentence_english": "The seizure of power by the National Socialists was a dark chapter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15136 + }, + { + "word": "Masterarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master's thesis", + "romanization": "Masterarbeit", + "example_sentence_native": "Sie schreibt gerade an ihrer Masterarbeit.", + "example_sentence_english": "She is currently writing her master's thesis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15138 + }, + { + "word": "Menschenrechtsverletzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "human rights violation", + "romanization": "Menschenrechtsverletzung", + "example_sentence_native": "Eine Menschenrechtsverletzung ist inakzeptabel.", + "example_sentence_english": "A human rights violation is unacceptable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15139 + }, + { + "word": "Messing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brass", + "romanization": "Messing", + "example_sentence_native": "Die Statue war aus Messing gefertigt.", + "example_sentence_english": "The statue was made of brass.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15140 + }, + { + "word": "mindern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reduce;to lessen", + "romanization": "mindern", + "example_sentence_native": "Wir müssen die Risiken mindern.", + "example_sentence_english": "We must reduce the risks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15141 + }, + { + "word": "Monument", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monument", + "romanization": "Monument", + "example_sentence_native": "Das Monument erinnert an die Geschichte der Stadt.", + "example_sentence_english": "The monument commemorates the city's history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15142 + }, + { + "word": "Netzbetreiber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "network operator", + "romanization": "Netzbetreiber", + "example_sentence_native": "Der Netzbetreiber ist für die Stabilität des Stromnetzes verantwortlich.", + "example_sentence_english": "The network operator is responsible for the stability of the power grid.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15143 + }, + { + "word": "Neuregelung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new regulation;new arrangement", + "romanization": "Neuregelung", + "example_sentence_native": "Die neue Neuregelung tritt nächste Woche in Kraft.", + "example_sentence_english": "The new regulation comes into effect next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15144 + }, + { + "word": "Novum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "novelty;new phenomenon", + "romanization": "Novum", + "example_sentence_native": "Das war ein Novum in der Geschichte des Unternehmens.", + "example_sentence_english": "That was a novelty in the company's history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15148 + }, + { + "word": "obligatorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligatory;mandatory", + "romanization": "obligatorisch", + "example_sentence_native": "Die Teilnahme ist obligatorisch.", + "example_sentence_english": "Participation is obligatory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15149 + }, + { + "word": "Orbit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orbit", + "romanization": "Orbit", + "example_sentence_native": "Der Satellit befindet sich im Orbit um die Erde.", + "example_sentence_english": "The satellite is in orbit around the Earth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15151 + }, + { + "word": "orientalisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oriental", + "romanization": "orientalisch", + "example_sentence_native": "Sie mag orientalische Gewürze.", + "example_sentence_english": "She likes oriental spices.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15152 + }, + { + "word": "paranoid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoid", + "romanization": "paranoid", + "example_sentence_native": "Er wurde immer paranoider.", + "example_sentence_english": "He became increasingly paranoid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15154 + }, + { + "word": "Personalie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personnel matter;personal detail", + "romanization": "Personalie", + "example_sentence_native": "Die Personalie des neuen Direktors wurde bekannt gegeben.", + "example_sentence_english": "The personnel matter of the new director was announced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15155 + }, + { + "word": "Psychologin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female psychologist", + "romanization": "Psychologin", + "example_sentence_native": "Sie ist eine erfahrene Psychologin.", + "example_sentence_english": "She is an experienced female psychologist.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15156 + }, + { + "word": "Pöbel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabble;mob", + "romanization": "Pöbel", + "example_sentence_native": "Der Pöbel versammelte sich vor dem Rathaus.", + "example_sentence_english": "The rabble gathered in front of the town hall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15157 + }, + { + "word": "Qualifizierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification;training", + "romanization": "Qualifizierung", + "example_sentence_native": "Die Qualifizierung der Mitarbeiter ist uns wichtig.", + "example_sentence_english": "The qualification of employees is important to us.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15158 + }, + { + "word": "Quantum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantum;amount", + "romanization": "Quantum", + "example_sentence_native": "Ein Quantum Trost war alles, was er brauchte.", + "example_sentence_english": "A quantum of comfort was all he needed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15159 + }, + { + "word": "Ranch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ranch", + "romanization": "Ranch", + "example_sentence_native": "Sie leben auf einer großen Ranch in Texas.", + "example_sentence_english": "They live on a large ranch in Texas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15160 + }, + { + "word": "reger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "active;lively", + "romanization": "reger", + "example_sentence_native": "Er ist ein sehr reger Mensch.", + "example_sentence_english": "He is a very active person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15164 + }, + { + "word": "Reproduktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproduction", + "romanization": "Reproduktion", + "example_sentence_native": "Die Reproduktion dieses Gemäldes ist sehr detailreich.", + "example_sentence_english": "The reproduction of this painting is very detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15166 + }, + { + "word": "Ressort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "department;portfolio", + "romanization": "Ressort", + "example_sentence_native": "Sie leitet das Ressort für Außenpolitik.", + "example_sentence_english": "She heads the foreign policy department.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15167 + }, + { + "word": "Rezession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recession", + "romanization": "Rezession", + "example_sentence_native": "Das Land befindet sich in einer tiefen Rezession.", + "example_sentence_english": "The country is in a deep recession.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15168 + }, + { + "word": "Risk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risk", + "romanization": "Risk", + "example_sentence_native": "Das ist ein hohes Risk für das Unternehmen.", + "example_sentence_english": "That is a high risk for the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15170 + }, + { + "word": "Rockstar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock star", + "romanization": "Rockstar", + "example_sentence_native": "Er träumt davon, ein Rockstar zu werden.", + "example_sentence_english": "He dreams of becoming a rock star.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15172 + }, + { + "word": "Rouge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blush;rouge", + "romanization": "Rouge", + "example_sentence_native": "Sie trug ein leichtes Rouge auf ihre Wangen auf.", + "example_sentence_english": "She applied a light blush to her cheeks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15173 + }, + { + "word": "Scene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scene", + "romanization": "Scene", + "example_sentence_native": "Die Musik-Scene in Berlin ist sehr lebendig.", + "example_sentence_english": "The music scene in Berlin is very lively.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15174 + }, + { + "word": "schleunigst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as quickly as possible;immediately", + "romanization": "schleunigst", + "example_sentence_native": "Sie sollten schleunigst handeln.", + "example_sentence_english": "You should act as quickly as possible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 15175 + }, + { + "word": "schmackhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasty;palatable", + "romanization": "schmackhaft", + "example_sentence_native": "Das Essen war sehr schmackhaft.", + "example_sentence_english": "The food was very tasty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15176 + }, + { + "word": "schneien", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to snow", + "romanization": "schneien", + "example_sentence_native": "Es wird heute Abend schneien.", + "example_sentence_english": "It will snow tonight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15177 + }, + { + "word": "schockierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shocking", + "romanization": "schockierend", + "example_sentence_native": "Die Nachrichten waren schockierend.", + "example_sentence_english": "The news was shocking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15178 + }, + { + "word": "Schulgebäude", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school building", + "romanization": "Schulgebäude", + "example_sentence_native": "Das Schulgebäude ist sehr alt.", + "example_sentence_english": "The school building is very old.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15179 + }, + { + "word": "sechster", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixth", + "romanization": "sechster", + "example_sentence_native": "Er ist der sechste Spieler im Team.", + "example_sentence_english": "He is the sixth player in the team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 15181 + }, + { + "word": "Sechziger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sixties (decade);person in their sixties", + "romanization": "Sechziger", + "example_sentence_native": "Die Sechziger waren eine Zeit des Wandels.", + "example_sentence_english": "The sixties were a time of change.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 15182 + }, + { + "word": "sehnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to long for;to yearn for", + "romanization": "sehnen", + "example_sentence_native": "Sie sehnt sich nach ihrer Heimat.", + "example_sentence_english": "She longs for her homeland.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15183 + }, + { + "word": "Setting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setting;environment", + "romanization": "Setting", + "example_sentence_native": "Das Setting des Films war sehr beeindruckend.", + "example_sentence_english": "The setting of the film was very impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15184 + }, + { + "word": "Sicherheitsbehörde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security authority;agency", + "romanization": "Sicherheitsbehörde", + "example_sentence_native": "Die Sicherheitsbehörden ermitteln in dem Fall.", + "example_sentence_english": "The security authorities are investigating the case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15185 + }, + { + "word": "Sneaker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sneaker;trainers", + "romanization": "Sneaker", + "example_sentence_native": "Ich habe mir neue Sneaker gekauft.", + "example_sentence_english": "I bought new sneakers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15187 + }, + { + "word": "Spannungsfeld", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "field of tension;area of conflict", + "romanization": "Spannungsfeld", + "example_sentence_native": "Das Projekt befindet sich in einem Spannungsfeld zwischen Innovation und Tradition.", + "example_sentence_english": "The project is in a field of tension between innovation and tradition.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15188 + }, + { + "word": "Staatsgewalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state power;public authority", + "romanization": "Staatsgewalt", + "example_sentence_native": "Die Staatsgewalt ist in Deutschland in drei Bereiche aufgeteilt.", + "example_sentence_english": "State power in Germany is divided into three branches.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15189 + }, + { + "word": "Standing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standing;reputation;status", + "romanization": "Standing", + "example_sentence_native": "Er hat ein hohes Standing in der Branche.", + "example_sentence_english": "He has a high standing in the industry.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15190 + }, + { + "word": "steirisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Styrian (from Styria;Austria)", + "romanization": "steirisch", + "example_sentence_native": "Der steirische Wein ist sehr bekannt.", + "example_sentence_english": "The Styrian wine is very well-known.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15191 + }, + { + "word": "sterblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortal", + "romanization": "sterblich", + "example_sentence_native": "Alle Menschen sind sterblich.", + "example_sentence_english": "All humans are mortal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15192 + }, + { + "word": "Strauch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bush;shrub", + "romanization": "Strauch", + "example_sentence_native": "Hinter dem Haus wächst ein großer Strauch.", + "example_sentence_english": "A large bush grows behind the house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15193 + }, + { + "word": "Streicher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "string player;string instrument", + "romanization": "Streicher", + "example_sentence_native": "Die Streicher spielen eine wichtige Rolle im Orchester.", + "example_sentence_english": "The string players play an important role in the orchestra.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15194 + }, + { + "word": "Strip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strip (e.g.;comic strip;performance)", + "romanization": "Strip", + "example_sentence_native": "Er liest gerne Comic-Strips.", + "example_sentence_english": "He likes to read comic strips.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15195 + }, + { + "word": "Tapferkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bravery;courage", + "romanization": "Tapferkeit", + "example_sentence_native": "Seine Tapferkeit im Kampf war bewundernswert.", + "example_sentence_english": "His bravery in battle was admirable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15199 + }, + { + "word": "temporär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary", + "romanization": "temporär", + "example_sentence_native": "Das ist nur eine temporäre Lösung.", + "example_sentence_english": "This is only a temporary solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15200 + }, + { + "word": "Terminkalender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appointment calendar", + "romanization": "Terminkalender", + "example_sentence_native": "Ich habe meinen Terminkalender vergessen.", + "example_sentence_english": "I forgot my appointment calendar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15201 + }, + { + "word": "terroristisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrorist (adj.)", + "romanization": "terroristisch", + "example_sentence_native": "Die Regierung verurteilte die terroristischen Angriffe.", + "example_sentence_english": "The government condemned the terrorist attacks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15202 + }, + { + "word": "Tierwelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wildlife;animal kingdom", + "romanization": "Tierwelt", + "example_sentence_native": "Die Tierwelt in diesem Gebiet ist sehr vielfältig.", + "example_sentence_english": "The wildlife in this area is very diverse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15203 + }, + { + "word": "Tonfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tone of voice;intonation", + "romanization": "Tonfall", + "example_sentence_native": "Sein Tonfall verriet seine Nervosität.", + "example_sentence_english": "His tone of voice betrayed his nervousness.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15204 + }, + { + "word": "träge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sluggish;lazy;inert", + "romanization": "träge", + "example_sentence_native": "Nach dem Essen fühlte er sich träge.", + "example_sentence_english": "After eating, he felt sluggish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15205 + }, + { + "word": "tummeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to romp;to bustle;to swarm", + "romanization": "tummeln", + "example_sentence_native": "Die Kinder tummelten sich auf dem Spielplatz.", + "example_sentence_english": "The children romped around on the playground.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15206 + }, + { + "word": "Ultraschall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultrasound", + "romanization": "Ultraschall", + "example_sentence_native": "Der Arzt machte einen Ultraschall, um das Baby zu sehen.", + "example_sentence_english": "The doctor performed an ultrasound to see the baby.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15208 + }, + { + "word": "umfallen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fall over;to collapse", + "romanization": "umfallen", + "example_sentence_native": "Der Baum ist im Sturm umgefallen.", + "example_sentence_english": "The tree fell over in the storm.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15209 + }, + { + "word": "unbeliebt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpopular", + "romanization": "unbeliebt", + "example_sentence_native": "Er war bei seinen Mitschülern unbeliebt.", + "example_sentence_english": "He was unpopular with his classmates.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15210 + }, + { + "word": "ungeschickt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clumsy;awkward", + "romanization": "ungeschickt", + "example_sentence_native": "Sie ist manchmal etwas ungeschickt.", + "example_sentence_english": "She is sometimes a bit clumsy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15211 + }, + { + "word": "Unregelmässigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irregularity", + "romanization": "Unregelmässigkeit", + "example_sentence_native": "Es gab eine Unregelmässigkeit in den Daten.", + "example_sentence_english": "There was an irregularity in the data.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15212 + }, + { + "word": "unsympathisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant;unlikeable", + "romanization": "unsympathisch", + "example_sentence_native": "Ich finde seinen neuen Kollegen sehr unsympathisch.", + "example_sentence_english": "I find his new colleague very unpleasant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15213 + }, + { + "word": "Unternehmensgruppe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corporate group;group of companies", + "romanization": "Unternehmensgruppe", + "example_sentence_native": "Die Unternehmensgruppe expandiert international.", + "example_sentence_english": "The corporate group is expanding internationally.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15214 + }, + { + "word": "unumgänglich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unavoidable;indispensable", + "romanization": "unumgänglich", + "example_sentence_native": "Diese Maßnahme ist unumgänglich für den Erfolg.", + "example_sentence_english": "This measure is unavoidable for success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15215 + }, + { + "word": "veralten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become obsolete;to age", + "romanization": "veralten", + "example_sentence_native": "Diese Technologie wird schnell veralten.", + "example_sentence_english": "This technology will quickly become obsolete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15216 + }, + { + "word": "Veranlassung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occasion;reason;cause", + "romanization": "Veranlassung", + "example_sentence_native": "Es gab keine Veranlassung zur Sorge.", + "example_sentence_english": "There was no reason for concern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15217 + }, + { + "word": "Vereinfachung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplification", + "romanization": "Vereinfachung", + "example_sentence_native": "Die Vereinfachung des Prozesses spart Zeit.", + "example_sentence_english": "The simplification of the process saves time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15218 + }, + { + "word": "vererben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bequeath;to inherit (pass on)", + "romanization": "vererben", + "example_sentence_native": "Er wollte sein Vermögen an seine Kinder vererben.", + "example_sentence_english": "He wanted to bequeath his fortune to his children.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15219 + }, + { + "word": "Vergiftung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoning", + "romanization": "Vergiftung", + "example_sentence_native": "Die Vergiftung wurde durch kontaminiertes Wasser verursacht.", + "example_sentence_english": "The poisoning was caused by contaminated water.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15220 + }, + { + "word": "verkleiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disguise;to dress up", + "romanization": "verkleiden", + "example_sentence_native": "Kinder lieben es, sich zu verkleiden.", + "example_sentence_english": "Children love to dress up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15221 + }, + { + "word": "verstopfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clog;to block", + "romanization": "verstopfen", + "example_sentence_native": "Das Waschbecken ist verstopft.", + "example_sentence_english": "The sink is clogged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15222 + }, + { + "word": "Vorherrschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supremacy;dominance", + "romanization": "Vorherrschaft", + "example_sentence_native": "Das Land strebte nach regionaler Vorherrschaft.", + "example_sentence_english": "The country strived for regional dominance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15224 + }, + { + "word": "Vorlauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lead time;advance", + "romanization": "Vorlauf", + "example_sentence_native": "Wir benötigen einen Vorlauf von zwei Wochen für die Produktion.", + "example_sentence_english": "We need a lead time of two weeks for production.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15225 + }, + { + "word": "Wechselwirkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interaction;reciprocal action", + "romanization": "Wechselwirkung", + "example_sentence_native": "Es gibt eine komplexe Wechselwirkung zwischen Umwelt und Gesundheit.", + "example_sentence_english": "There is a complex interaction between environment and health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15227 + }, + { + "word": "Weihnachtsfest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas celebration", + "romanization": "Weihnachtsfest", + "example_sentence_native": "Das Weihnachtsfest ist eine Zeit der Freude.", + "example_sentence_english": "Christmas is a time of joy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15228 + }, + { + "word": "Wendepunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turning point", + "romanization": "Wendepunkt", + "example_sentence_native": "Der Fall war ein Wendepunkt in seiner Karriere.", + "example_sentence_english": "The event was a turning point in his career.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15229 + }, + { + "word": "Werbespot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commercial;advertisement spot", + "romanization": "Werbespot", + "example_sentence_native": "Der Werbespot wurde während der Nachrichten ausgestrahlt.", + "example_sentence_english": "The commercial was broadcast during the news.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15230 + }, + { + "word": "Wink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wink;hint", + "romanization": "Wink", + "example_sentence_native": "Er gab mir einen Wink, dass ich gehen sollte.", + "example_sentence_english": "He gave me a hint that I should leave.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15233 + }, + { + "word": "Zeiger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hand (of a clock);pointer", + "romanization": "Zeiger", + "example_sentence_native": "Der kleine Zeiger der Uhr zeigt auf die Stunde.", + "example_sentence_english": "The small hand of the clock points to the hour.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15235 + }, + { + "word": "Zeitaufwand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time expenditure;time commitment", + "romanization": "Zeitaufwand", + "example_sentence_native": "Der Zeitaufwand für dieses Projekt ist beträchtlich.", + "example_sentence_english": "The time commitment for this project is considerable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15236 + }, + { + "word": "Zertifizierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certification", + "romanization": "Zertifizierung", + "example_sentence_native": "Die Firma erhielt eine neue Zertifizierung für ihre Produkte.", + "example_sentence_english": "The company received a new certification for its products.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15237 + }, + { + "word": "Zufahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "access road;driveway", + "romanization": "Zufahrt", + "example_sentence_native": "Die Zufahrt zum Gebäude ist gesperrt.", + "example_sentence_english": "The access road to the building is closed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15239 + }, + { + "word": "Zusammenkunft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meeting;gathering", + "romanization": "Zusammenkunft", + "example_sentence_native": "Die Zusammenkunft der Mitglieder war sehr produktiv.", + "example_sentence_english": "The meeting of the members was very productive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15240 + }, + { + "word": "Zweifelsfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "case of doubt", + "romanization": "Zweifelsfall", + "example_sentence_native": "Im Zweifelsfall sollten Sie einen Arzt konsultieren.", + "example_sentence_english": "In case of doubt, you should consult a doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15241 + }, + { + "word": "Zügel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reins", + "romanization": "Zügel", + "example_sentence_native": "Er nahm die Zügel fest in die Hand.", + "example_sentence_english": "He took the reins firmly in hand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15242 + }, + { + "word": "überbewerten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overrate;to overestimate", + "romanization": "überbewerten", + "example_sentence_native": "Man sollte die Risiken nicht überbewerten.", + "example_sentence_english": "One should not overrate the risks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15243 + }, + { + "word": "Abfindung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "severance pay;compensation", + "romanization": "Abfindung", + "example_sentence_native": "Er erhielt eine hohe Abfindung nach seiner Kündigung.", + "example_sentence_english": "He received high severance pay after his termination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15244 + }, + { + "word": "abführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lead away;to pay off (taxes)", + "romanization": "abführen", + "example_sentence_native": "Die Polizei musste den Demonstranten abführen.", + "example_sentence_english": "The police had to lead the demonstrator away.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15245 + }, + { + "word": "Ableben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demise;death", + "romanization": "Ableben", + "example_sentence_native": "Nach dem Ableben des Königs wurde sein Sohn Thronfolger.", + "example_sentence_english": "After the king's demise, his son became the successor to the throne.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15246 + }, + { + "word": "Absetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deposition;removal;deduction", + "romanization": "Absetzung", + "example_sentence_native": "Die Absetzung des Ministers führte zu Protesten.", + "example_sentence_english": "The removal of the minister led to protests.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15247 + }, + { + "word": "Abzocke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rip-off;scam", + "romanization": "Abzocke", + "example_sentence_native": "Das war reine Abzocke, der Preis war viel zu hoch.", + "example_sentence_english": "That was a pure rip-off, the price was much too high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15248 + }, + { + "word": "adoptieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adopt", + "romanization": "adoptieren", + "example_sentence_native": "Sie beschlossen, ein Kind zu adoptieren.", + "example_sentence_english": "They decided to adopt a child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15249 + }, + { + "word": "Affiliate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affiliate", + "romanization": "Affiliate", + "example_sentence_native": "Er arbeitet als Affiliate-Manager für ein Online-Unternehmen.", + "example_sentence_english": "He works as an affiliate manager for an online company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15250 + }, + { + "word": "analytisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analytical", + "romanization": "analytisch", + "example_sentence_native": "Er hat eine sehr analytische Denkweise.", + "example_sentence_english": "He has a very analytical way of thinking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15254 + }, + { + "word": "Angehöriger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relative;member (male)", + "romanization": "Angehöriger", + "example_sentence_native": "Er ist ein Angehöriger der Familie.", + "example_sentence_english": "He is a member of the family.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15255 + }, + { + "word": "anschießen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shoot (and injure);to wound by shooting", + "romanization": "anschießen", + "example_sentence_native": "Der Jäger musste das verletzte Tier anschießen.", + "example_sentence_english": "The hunter had to shoot the injured animal.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schießen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15256 + }, + { + "word": "ansagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to announce;to introduce", + "romanization": "ansagen", + "example_sentence_native": "Der Moderator wird den nächsten Künstler ansagen.", + "example_sentence_english": "The host will announce the next artist.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "sagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15257 + }, + { + "word": "Arbeitslosenquote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unemployment rate", + "romanization": "Arbeitslosenquote", + "example_sentence_native": "Die Arbeitslosenquote ist in diesem Quartal gesunken.", + "example_sentence_english": "The unemployment rate has decreased this quarter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15258 + }, + { + "word": "auffüllen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refill;to replenish", + "romanization": "auffüllen", + "example_sentence_native": "Bitte füllen Sie das Glas auf.", + "example_sentence_english": "Please refill the glass.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "füllen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15261 + }, + { + "word": "aufgestockt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased;topped up", + "romanization": "aufgestockt", + "example_sentence_native": "Die Mitarbeiterzahl wurde aufgestockt.", + "example_sentence_english": "The number of employees was increased.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15262 + }, + { + "word": "Aufseher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supervisor;overseer", + "romanization": "Aufseher", + "example_sentence_native": "Der Aufseher überwacht die Arbeit.", + "example_sentence_english": "The supervisor monitors the work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15263 + }, + { + "word": "Auftrieb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buoyancy;lift;impetus", + "romanization": "Auftrieb", + "example_sentence_native": "Das Boot hat genug Auftrieb, um zu schwimmen.", + "example_sentence_english": "The boat has enough buoyancy to float.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15264 + }, + { + "word": "auslachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to laugh at;to ridicule", + "romanization": "auslachen", + "example_sentence_native": "Man sollte niemanden auslachen.", + "example_sentence_english": "One should not laugh at anyone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "lachen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15266 + }, + { + "word": "ausgewiesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expelled;designated;proven", + "romanization": "ausgewiesen", + "example_sentence_native": "Er wurde aus dem Land ausgewiesen.", + "example_sentence_english": "He was expelled from the country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15267 + }, + { + "word": "Aussagekraft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expressiveness;significance;informative value", + "romanization": "Aussagekraft", + "example_sentence_native": "Die Studie hat eine hohe Aussagekraft.", + "example_sentence_english": "The study has high informative value.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15268 + }, + { + "word": "Autohersteller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car manufacturer", + "romanization": "Autohersteller", + "example_sentence_native": "Volkswagen ist ein großer Autohersteller.", + "example_sentence_english": "Volkswagen is a big car manufacturer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15270 + }, + { + "word": "Autoindustrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automotive industry", + "romanization": "Autoindustrie", + "example_sentence_native": "Die Autoindustrie ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "The automotive industry is an important economic sector.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15271 + }, + { + "word": "Barriere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrier", + "romanization": "Barriere", + "example_sentence_native": "Es gibt eine Barriere zwischen den beiden Bereichen.", + "example_sentence_english": "There is a barrier between the two areas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15273 + }, + { + "word": "Bashing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bashing;denigration", + "romanization": "Bashing", + "example_sentence_native": "Das Bashing in den sozialen Medien ist oft unfair.", + "example_sentence_english": "The bashing on social media is often unfair.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15274 + }, + { + "word": "bearbeitet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "processed;edited;worked on", + "romanization": "bearbeitet", + "example_sentence_native": "Das bearbeitete Bild sieht besser aus.", + "example_sentence_english": "The edited picture looks better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15277 + }, + { + "word": "beendet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "finished;ended", + "romanization": "beendet", + "example_sentence_native": "Das Projekt ist beendet.", + "example_sentence_english": "The project is finished.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15278 + }, + { + "word": "behauptet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asserted;claimed", + "romanization": "behauptet", + "example_sentence_native": "Die behauptete Tatsache konnte nicht bewiesen werden.", + "example_sentence_english": "The asserted fact could not be proven.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15279 + }, + { + "word": "Benachteiligung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrimination;disadvantage", + "romanization": "Benachteiligung", + "example_sentence_native": "Die Benachteiligung von Minderheiten ist ein ernstes Problem.", + "example_sentence_english": "The discrimination of minorities is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15280 + }, + { + "word": "beschlossen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decided;resolved", + "romanization": "beschlossen", + "example_sentence_native": "Die Entscheidung ist beschlossen.", + "example_sentence_english": "The decision is decided.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15282 + }, + { + "word": "bestaunen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to marvel at;to gaze at", + "romanization": "bestaunen", + "example_sentence_native": "Sie bestaunten die Kunstwerke im Museum.", + "example_sentence_english": "They marveled at the artworks in the museum.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15283 + }, + { + "word": "besteigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb;to ascend;to board", + "romanization": "besteigen", + "example_sentence_native": "Wir wollen den Berg besteigen.", + "example_sentence_english": "We want to climb the mountain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15284 + }, + { + "word": "Bewilligung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approval;permit;authorization", + "romanization": "Bewilligung", + "example_sentence_native": "Sie benötigen eine Bewilligung für das Bauvorhaben.", + "example_sentence_english": "You need an approval for the construction project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15286 + }, + { + "word": "Bim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tram (colloquial;especially Austrian German)", + "romanization": "Bim", + "example_sentence_native": "Die Bim fährt direkt zum Zentrum.", + "example_sentence_english": "The tram goes directly to the center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15289 + }, + { + "word": "blühend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blooming;flourishing", + "romanization": "blühend", + "example_sentence_native": "Der Garten ist voller blühender Blumen.", + "example_sentence_english": "The garden is full of blooming flowers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15291 + }, + { + "word": "Blütezeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heyday;prime;flourishing period", + "romanization": "Blütezeit", + "example_sentence_native": "Die Blütezeit der Renaissance war eine Zeit großer Kunst.", + "example_sentence_english": "The heyday of the Renaissance was a time of great art.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15292 + }, + { + "word": "Bohrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drill;drill bit", + "romanization": "Bohrer", + "example_sentence_native": "Er benutzte einen Bohrer, um ein Loch zu machen.", + "example_sentence_english": "He used a drill to make a hole.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15293 + }, + { + "word": "Botanik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botany", + "romanization": "Botanik", + "example_sentence_native": "Sie studiert Botanik an der Universität.", + "example_sentence_english": "She studies botany at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15294 + }, + { + "word": "Brustkrebs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breast cancer", + "romanization": "Brustkrebs", + "example_sentence_native": "Früherkennung von Brustkrebs ist sehr wichtig.", + "example_sentence_english": "Early detection of breast cancer is very important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15296 + }, + { + "word": "Buchhandel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "book trade;bookselling", + "romanization": "Buchhandel", + "example_sentence_native": "Der Buchhandel hat sich in den letzten Jahren stark verändert.", + "example_sentence_english": "The book trade has changed a lot in recent years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15297 + }, + { + "word": "Cafeteria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cafeteria", + "romanization": "Cafeteria", + "example_sentence_native": "Wir essen oft in der Cafeteria zu Mittag.", + "example_sentence_english": "We often eat lunch in the cafeteria.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15301 + }, + { + "word": "Crack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack", + "romanization": "Crack", + "example_sentence_native": "Es gab einen Crack in der Wand.", + "example_sentence_english": "There was a crack in the wall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15305 + }, + { + "word": "dito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ditto", + "romanization": "dito", + "example_sentence_native": "Ich mag Pizza, und er dito.", + "example_sentence_english": "I like pizza, and he ditto.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 15308 + }, + { + "word": "Diversity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversity", + "romanization": "Diversity", + "example_sentence_native": "Diversity ist wichtig für ein gutes Arbeitsklima.", + "example_sentence_english": "Diversity is important for a good working atmosphere.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15309 + }, + { + "word": "Doom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doom", + "romanization": "Doom", + "example_sentence_native": "Das Schicksal besiegelte ihr Doom.", + "example_sentence_english": "Fate sealed her doom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15311 + }, + { + "word": "dreieinhalb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "three and a half", + "romanization": "dreieinhalb", + "example_sentence_native": "Ich brauche dreieinhalb Stunden.", + "example_sentence_english": "I need three and a half hours.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 15313 + }, + { + "word": "Eheleute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "married couple", + "romanization": "Eheleute", + "example_sentence_native": "Die Eheleute feierten ihren Hochzeitstag.", + "example_sentence_english": "The married couple celebrated their wedding anniversary.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15318 + }, + { + "word": "Ehrenmitglied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honorary member", + "romanization": "Ehrenmitglied", + "example_sentence_native": "Er wurde zum Ehrenmitglied des Vereins ernannt.", + "example_sentence_english": "He was appointed an honorary member of the club.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15319 + }, + { + "word": "Eigentumswohnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condominium;owner-occupied flat", + "romanization": "Eigentumswohnung", + "example_sentence_native": "Sie haben eine schöne Eigentumswohnung in der Stadt gekauft.", + "example_sentence_english": "They bought a beautiful condominium in the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15320 + }, + { + "word": "Eigenverantwortung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personal responsibility;self-responsibility", + "romanization": "Eigenverantwortung", + "example_sentence_native": "Jeder Bürger sollte Eigenverantwortung für sein Handeln übernehmen.", + "example_sentence_english": "Every citizen should take personal responsibility for their actions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15321 + }, + { + "word": "einschreiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to register;to enroll;to send by registered mail", + "romanization": "einschreiben", + "example_sentence_native": "Ich muss mich für den Kurs einschreiben.", + "example_sentence_english": "I need to register for the course.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15322 + }, + { + "word": "einsammeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to collect;to gather", + "romanization": "einsammeln", + "example_sentence_native": "Der Lehrer wird die Hausaufgaben einsammeln.", + "example_sentence_english": "The teacher will collect the homework.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "sammeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15323 + }, + { + "word": "Einschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impact;strike;style", + "romanization": "Einschlag", + "example_sentence_native": "Der Meteoriteneinschlag hinterließ einen großen Krater.", + "example_sentence_english": "The meteorite impact left a large crater.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15324 + }, + { + "word": "einwenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to object;to raise an objection", + "romanization": "einwenden", + "example_sentence_native": "Hat jemand etwas einzuwenden?", + "example_sentence_english": "Does anyone have any objection?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "wenden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15325 + }, + { + "word": "Eklat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scandal;uproar;public scene", + "romanization": "Eklat", + "example_sentence_native": "Der Politiker verursachte einen Eklat mit seinen Äußerungen.", + "example_sentence_english": "The politician caused a scandal with his statements.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15326 + }, + { + "word": "Elternzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parental leave", + "romanization": "Elternzeit", + "example_sentence_native": "Er nimmt zwei Monate Elternzeit, um sich um sein Baby zu kümmern.", + "example_sentence_english": "He is taking two months of parental leave to care for his baby.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15327 + }, + { + "word": "Entertainer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entertainer", + "romanization": "Entertainer", + "example_sentence_native": "Der Entertainer begeisterte das Publikum mit seiner Show.", + "example_sentence_english": "The entertainer thrilled the audience with his show.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15329 + }, + { + "word": "Enthusiasmus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enthusiasm", + "romanization": "Enthusiasmus", + "example_sentence_native": "Sein Enthusiasmus für das Projekt war ansteckend.", + "example_sentence_english": "His enthusiasm for the project was contagious.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15330 + }, + { + "word": "Erdoberfläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Earth's surface", + "romanization": "Erdoberfläche", + "example_sentence_native": "Ein Großteil der Erdoberfläche ist mit Wasser bedeckt.", + "example_sentence_english": "A large part of the Earth's surface is covered with water.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15331 + }, + { + "word": "ermutigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to encourage", + "romanization": "ermutigen", + "example_sentence_native": "Wir sollten uns gegenseitig ermutigen.", + "example_sentence_english": "We should encourage each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15332 + }, + { + "word": "Etablierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment;institutionalization", + "romanization": "Etablierung", + "example_sentence_native": "Die Etablierung neuer Regeln ist notwendig.", + "example_sentence_english": "The establishment of new rules is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15333 + }, + { + "word": "fernab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "far away from;remote from", + "romanization": "fernab", + "example_sentence_native": "Sie leben fernab der Zivilisation.", + "example_sentence_english": "They live far away from civilization.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 15336 + }, + { + "word": "feststehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be certain;to be decided;to be established", + "romanization": "feststehen", + "example_sentence_native": "Es steht fest, dass wir morgen reisen werden.", + "example_sentence_english": "It is certain that we will travel tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15337 + }, + { + "word": "Fiesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "party;festival", + "romanization": "Fiesta", + "example_sentence_native": "Wir feiern eine große Fiesta am Wochenende.", + "example_sentence_english": "We are celebrating a big party on the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15338 + }, + { + "word": "Flip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flip", + "romanization": "Flip", + "example_sentence_native": "Der Flip des Schalters war deutlich zu hören.", + "example_sentence_english": "The flip of the switch was clearly audible.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15339 + }, + { + "word": "Fond", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fund", + "romanization": "Fond", + "example_sentence_native": "Der Fond investiert in erneuerbare Energien.", + "example_sentence_english": "The fund invests in renewable energies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15340 + }, + { + "word": "Freizeitpark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "amusement park", + "romanization": "Freizeitpark", + "example_sentence_native": "Wir haben einen schönen Tag im Freizeitpark verbracht.", + "example_sentence_english": "We spent a nice day at the amusement park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15344 + }, + { + "word": "frustrierend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrating", + "romanization": "frustrierend", + "example_sentence_native": "Die Situation ist sehr frustrierend.", + "example_sentence_english": "The situation is very frustrating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15346 + }, + { + "word": "funktional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functional", + "romanization": "funktional", + "example_sentence_native": "Das Design ist sehr funktional.", + "example_sentence_english": "The design is very functional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15347 + }, + { + "word": "Gartenbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horticulture", + "romanization": "Gartenbau", + "example_sentence_native": "Er studiert Gartenbau an der Universität.", + "example_sentence_english": "He studies horticulture at the university.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15348 + }, + { + "word": "gefürchtet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feared", + "romanization": "gefürchtet", + "example_sentence_native": "Der gefürchtete Sturm näherte sich der Küste.", + "example_sentence_english": "The feared storm approached the coast.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15349 + }, + { + "word": "Geheimhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secrecy", + "romanization": "Geheimhaltung", + "example_sentence_native": "Die Geheimhaltung der Daten ist sehr wichtig.", + "example_sentence_english": "The confidentiality of the data is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15350 + }, + { + "word": "gekauft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bought", + "romanization": "gekauft", + "example_sentence_native": "Das gekaufte Produkt war von hoher Qualität.", + "example_sentence_english": "The purchased product was of high quality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15351 + }, + { + "word": "Geldanlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "romanization": "Geldanlage", + "example_sentence_native": "Eine gute Geldanlage kann hohe Renditen bringen.", + "example_sentence_english": "A good investment can bring high returns.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15352 + }, + { + "word": "gelebt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lived", + "romanization": "gelebt", + "example_sentence_native": "Das gelebte Leben war voller Abenteuer.", + "example_sentence_english": "The lived life was full of adventures.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15353 + }, + { + "word": "genehmigt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approved", + "romanization": "genehmigt", + "example_sentence_native": "Der genehmigte Antrag wurde sofort bearbeitet.", + "example_sentence_english": "The approved application was processed immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15354 + }, + { + "word": "Genozid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genocide", + "romanization": "Genozid", + "example_sentence_native": "Der Genozid ist ein Verbrechen gegen die Menschlichkeit.", + "example_sentence_english": "Genocide is a crime against humanity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15355 + }, + { + "word": "gescheitert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failed", + "romanization": "gescheitert", + "example_sentence_native": "Das Projekt war leider gescheitert.", + "example_sentence_english": "Unfortunately, the project had failed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15357 + }, + { + "word": "gestohlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stolen", + "romanization": "gestohlen", + "example_sentence_native": "Das gestohlene Fahrrad wurde gefunden.", + "example_sentence_english": "The stolen bicycle was found.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15358 + }, + { + "word": "tarnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to camouflage", + "romanization": "tarnen", + "example_sentence_native": "Soldaten tarnen sich im Gelände.", + "example_sentence_english": "Soldiers camouflage themselves in the terrain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15359 + }, + { + "word": "Glaser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glazier", + "romanization": "Glaser", + "example_sentence_native": "Der Glaser reparierte das Fenster.", + "example_sentence_english": "The glazier repaired the window.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15361 + }, + { + "word": "Governance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governance", + "romanization": "Governance", + "example_sentence_native": "Gute Governance ist entscheidend für den Erfolg.", + "example_sentence_english": "Good governance is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15363 + }, + { + "word": "Grafiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graphic designer", + "romanization": "Grafiker", + "example_sentence_native": "Der Grafiker entwarf ein neues Logo.", + "example_sentence_english": "The graphic designer designed a new logo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15364 + }, + { + "word": "Groll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment;grudge", + "romanization": "Groll", + "example_sentence_native": "Er hegte keinen Groll gegen sie.", + "example_sentence_english": "He held no resentment against her.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15365 + }, + { + "word": "grübeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ponder;to brood", + "romanization": "grübeln", + "example_sentence_native": "Sie saß da und grübelte über ihre Zukunft.", + "example_sentence_english": "She sat there pondering her future.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15366 + }, + { + "word": "Hackfleisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "minced meat;ground meat", + "romanization": "Hackfleisch", + "example_sentence_native": "Ich brauche Hackfleisch für die Frikadellen.", + "example_sentence_english": "I need minced meat for the meatballs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15368 + }, + { + "word": "Haltbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "durability;shelf life", + "romanization": "Haltbarkeit", + "example_sentence_native": "Bitte beachten Sie das Datum der Haltbarkeit.", + "example_sentence_english": "Please note the shelf life date.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15369 + }, + { + "word": "Hater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hater", + "romanization": "Hater", + "example_sentence_native": "Ignoriere die Hater in den Kommentaren.", + "example_sentence_english": "Ignore the haters in the comments.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15370 + }, + { + "word": "Haupteingang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "main entrance", + "romanization": "Haupteingang", + "example_sentence_native": "Der Haupteingang ist auf der anderen Seite des Gebäudes.", + "example_sentence_english": "The main entrance is on the other side of the building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15371 + }, + { + "word": "Heiligtum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanctuary;shrine", + "romanization": "Heiligtum", + "example_sentence_native": "Das alte Heiligtum war ein Ort der Ruhe.", + "example_sentence_english": "The old sanctuary was a place of peace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15372 + }, + { + "word": "Heimkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homecoming", + "romanization": "Heimkehr", + "example_sentence_native": "Die Heimkehr der Soldaten wurde gefeiert.", + "example_sentence_english": "The homecoming of the soldiers was celebrated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15373 + }, + { + "word": "Hemmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhibition;hesitation", + "romanization": "Hemmung", + "example_sentence_native": "Er hatte keine Hemmungen, seine Meinung zu sagen.", + "example_sentence_english": "He had no inhibitions about speaking his mind.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15374 + }, + { + "word": "herhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to serve as;to be used for", + "romanization": "herhalten", + "example_sentence_native": "Er musste immer für die Fehler der anderen herhalten.", + "example_sentence_english": "He always had to serve as the scapegoat for others' mistakes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15375 + }, + { + "word": "Hilfeleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assistance;aid", + "romanization": "Hilfeleistung", + "example_sentence_native": "Die schnelle Hilfeleistung rettete viele Leben.", + "example_sentence_english": "The quick assistance saved many lives.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15377 + }, + { + "word": "Holm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beam;spar;islet", + "romanization": "Holm", + "example_sentence_native": "Der Holm stützte das Dach.", + "example_sentence_english": "The beam supported the roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15379 + }, + { + "word": "Hüter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guardian", + "romanization": "Hüter", + "example_sentence_native": "Der Hüter des Waldes beschützt die Tiere.", + "example_sentence_english": "The guardian of the forest protects the animals.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15381 + }, + { + "word": "implementieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to implement", + "romanization": "implementieren", + "example_sentence_native": "Wir müssen die neue Strategie schnell implementieren.", + "example_sentence_english": "We need to implement the new strategy quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15382 + }, + { + "word": "Insulin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulin", + "romanization": "Insulin", + "example_sentence_native": "Patienten mit Diabetes benötigen oft Insulin.", + "example_sentence_english": "Patients with diabetes often need insulin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15383 + }, + { + "word": "irakisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iraqi", + "romanization": "irakisch", + "example_sentence_native": "Er hat viele irakische Freunde.", + "example_sentence_english": "He has many Iraqi friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15384 + }, + { + "word": "Jammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misery;pity", + "romanization": "Jammer", + "example_sentence_native": "Es ist ein Jammer, dass er gehen muss.", + "example_sentence_english": "It's a pity that he has to leave.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15387 + }, + { + "word": "Kabarettist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabaret artist", + "romanization": "Kabarettist", + "example_sentence_native": "Der Kabarettist hat das Publikum zum Lachen gebracht.", + "example_sentence_english": "The cabaret artist made the audience laugh.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15389 + }, + { + "word": "Kontur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contour;outline", + "romanization": "Kontur", + "example_sentence_native": "Die Konturen des Berges waren im Nebel kaum zu erkennen.", + "example_sentence_english": "The contours of the mountain were barely visible in the fog.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15393 + }, + { + "word": "Krokodil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crocodile", + "romanization": "Krokodil", + "example_sentence_native": "Das Krokodil lebt im Wasser.", + "example_sentence_english": "The crocodile lives in the water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15395 + }, + { + "word": "Lauch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leek", + "romanization": "Lauch", + "example_sentence_native": "Ich brauche Lauch für die Suppe.", + "example_sentence_english": "I need leek for the soup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15398 + }, + { + "word": "lauern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lurk", + "romanization": "lauern", + "example_sentence_native": "Die Katze lauerte der Maus auf.", + "example_sentence_english": "The cat was lurking for the mouse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15399 + }, + { + "word": "Legislative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislative (branch)", + "romanization": "Legislative", + "example_sentence_native": "Die Legislative ist für die Gesetzgebung zuständig.", + "example_sentence_english": "The legislative branch is responsible for legislation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15400 + }, + { + "word": "legitimieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legitimize", + "romanization": "legitimieren", + "example_sentence_native": "Er versuchte, seine Entscheidung zu legitimieren.", + "example_sentence_english": "He tried to legitimize his decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15401 + }, + { + "word": "leichtfertig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reckless;careless", + "romanization": "leichtfertig", + "example_sentence_native": "Seine leichtfertige Bemerkung verursachte Ärger.", + "example_sentence_english": "His reckless remark caused trouble.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15402 + }, + { + "word": "Leim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glue", + "romanization": "Leim", + "example_sentence_native": "Der Stuhl wurde mit Leim repariert.", + "example_sentence_english": "The chair was repaired with glue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15403 + }, + { + "word": "Leitbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guiding principle;mission statement", + "romanization": "Leitbild", + "example_sentence_native": "Das Unternehmen hat ein klares Leitbild.", + "example_sentence_english": "The company has a clear mission statement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15404 + }, + { + "word": "lesenswert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worth reading", + "romanization": "lesenswert", + "example_sentence_native": "Dieses Buch ist wirklich lesenswert.", + "example_sentence_english": "This book is really worth reading.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15405 + }, + { + "word": "Literaturwissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "literary studies", + "romanization": "Literaturwissenschaft", + "example_sentence_native": "Sie studiert Literaturwissenschaft an der Universität.", + "example_sentence_english": "She studies literary studies at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15407 + }, + { + "word": "lockern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to loosen;to relax", + "romanization": "lockern", + "example_sentence_native": "Er musste seinen Gürtel lockern.", + "example_sentence_english": "He had to loosen his belt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15408 + }, + { + "word": "Marge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "margin", + "romanization": "Marge", + "example_sentence_native": "Die Gewinnmarge ist sehr gering.", + "example_sentence_english": "The profit margin is very small.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15412 + }, + { + "word": "Meeresspiegel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sea level", + "romanization": "Meeresspiegel", + "example_sentence_native": "Der Meeresspiegel steigt an.", + "example_sentence_english": "The sea level is rising.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15414 + }, + { + "word": "mehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase;to multiply", + "romanization": "mehren", + "example_sentence_native": "Die Probleme mehren sich.", + "example_sentence_english": "The problems are increasing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15416 + }, + { + "word": "Memo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memo;memorandum", + "romanization": "Memo", + "example_sentence_native": "Ich habe ein Memo an alle Mitarbeiter geschickt.", + "example_sentence_english": "I sent a memo to all employees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15417 + }, + { + "word": "Mitbewerber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitor", + "romanization": "Mitbewerber", + "example_sentence_native": "Unser Hauptmitbewerber hat ein neues Produkt auf den Markt gebracht.", + "example_sentence_english": "Our main competitor has launched a new product.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15423 + }, + { + "word": "Mitleidenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sympathy;involvement (often in 'to be affected;damaged')", + "romanization": "Mitleidenschaft", + "example_sentence_native": "Das Erdbeben hat viele Gebäude in Mitleidenschaft gezogen.", + "example_sentence_english": "The earthquake affected many buildings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15424 + }, + { + "word": "Moped", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moped", + "romanization": "Moped", + "example_sentence_native": "Er fährt jeden Tag mit seinem Moped zur Arbeit.", + "example_sentence_english": "He rides his moped to work every day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15425 + }, + { + "word": "Nachbarland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighboring country", + "romanization": "Nachbarland", + "example_sentence_native": "Deutschland hat neun Nachbarländer.", + "example_sentence_english": "Germany has nine neighboring countries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15428 + }, + { + "word": "Nahost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Middle East", + "romanization": "Nahost", + "example_sentence_native": "Die Situation im Nahost ist komplex.", + "example_sentence_english": "The situation in the Middle East is complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15429 + }, + { + "word": "Neige", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decline;end;dregs (often in 'to run out')", + "romanization": "Neige", + "example_sentence_native": "Die Vorräte gehen langsam zur Neige.", + "example_sentence_english": "The supplies are slowly running out.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15430 + }, + { + "word": "Nomen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noun", + "romanization": "Nomen", + "example_sentence_native": "Ein Nomen ist ein Wort, das eine Person, einen Ort oder eine Sache benennt.", + "example_sentence_english": "A noun is a word that names a person, place, or thing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15433 + }, + { + "word": "Oberland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upland;upper country;region", + "romanization": "Oberland", + "example_sentence_native": "Das Oberland ist bekannt für seine malerischen Landschaften.", + "example_sentence_english": "The upland is known for its picturesque landscapes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15435 + }, + { + "word": "Omi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandma;granny", + "romanization": "Omi", + "example_sentence_native": "Meine Omi backt den besten Kuchen.", + "example_sentence_english": "My grandma bakes the best cake.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15436 + }, + { + "word": "Output", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "output", + "romanization": "Output", + "example_sentence_native": "Der Output der Produktion muss erhöht werden.", + "example_sentence_english": "The output of the production must be increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15438 + }, + { + "word": "Pegel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "level (e.g.;water level;sound level)", + "romanization": "Pegel", + "example_sentence_native": "Der Pegel des Flusses steigt schnell.", + "example_sentence_english": "The river's level is rising quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15440 + }, + { + "word": "Pharao", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pharaoh", + "romanization": "Pharao", + "example_sentence_native": "Der Pharao regierte Ägypten.", + "example_sentence_english": "The Pharaoh ruled Egypt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15441 + }, + { + "word": "plastisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plastic;sculptural;vivid", + "romanization": "plastisch", + "example_sentence_native": "Die Beschreibung war sehr plastisch.", + "example_sentence_english": "The description was very vivid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15442 + }, + { + "word": "Poet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poet", + "romanization": "Poet", + "example_sentence_native": "Er ist ein bekannter Poet.", + "example_sentence_english": "He is a well-known poet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15443 + }, + { + "word": "Polizeieinsatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police operation;deployment", + "romanization": "Polizeieinsatz", + "example_sentence_native": "Es gab einen großen Polizeieinsatz in der Stadt.", + "example_sentence_english": "There was a large police operation in the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15444 + }, + { + "word": "prepaid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prepaid", + "romanization": "prepaid", + "example_sentence_native": "Ich habe ein Prepaid-Handy.", + "example_sentence_english": "I have a prepaid phone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15447 + }, + { + "word": "Process", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "process", + "romanization": "Process", + "example_sentence_native": "Der Prozess der Herstellung ist komplex.", + "example_sentence_english": "The manufacturing process is complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15448 + }, + { + "word": "Projektmanagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "project management", + "romanization": "Projektmanagement", + "example_sentence_native": "Sie studiert Projektmanagement.", + "example_sentence_english": "She studies project management.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15449 + }, + { + "word": "Promenade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promenade", + "romanization": "Promenade", + "example_sentence_native": "Wir spazierten entlang der Promenade.", + "example_sentence_english": "We walked along the promenade.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15450 + }, + { + "word": "Raser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speeder;reckless driver", + "romanization": "Raser", + "example_sentence_native": "Die Polizei hat den Raser gestoppt.", + "example_sentence_english": "The police stopped the speeder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15452 + }, + { + "word": "Raupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caterpillar", + "romanization": "Raupe", + "example_sentence_native": "Eine Raupe frisst die Blätter.", + "example_sentence_english": "A caterpillar is eating the leaves.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15453 + }, + { + "word": "reinkommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come in;to get in", + "romanization": "reinkommen", + "example_sentence_native": "Komm bitte rein!", + "example_sentence_english": "Please come in!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rein", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15454 + }, + { + "word": "Rennfahrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racing driver", + "romanization": "Rennfahrer", + "example_sentence_native": "Der Rennfahrer gewann das Rennen.", + "example_sentence_english": "The racing driver won the race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15455 + }, + { + "word": "Repression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repression", + "romanization": "Repression", + "example_sentence_native": "Die Regierung übt Repression aus.", + "example_sentence_english": "The government exercises repression.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15456 + }, + { + "word": "Rückreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "return journey", + "romanization": "Rückreise", + "example_sentence_native": "Die Rückreise war lang und anstrengend.", + "example_sentence_english": "The return journey was long and exhausting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15461 + }, + { + "word": "Rücksprache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultation", + "romanization": "Rücksprache", + "example_sentence_native": "Nach Rücksprache mit meinem Kollegen konnte ich die Frage beantworten.", + "example_sentence_english": "After consultation with my colleague, I could answer the question.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15462 + }, + { + "word": "Saatgut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seeds", + "romanization": "Saatgut", + "example_sentence_native": "Wir brauchen neues Saatgut für den Garten.", + "example_sentence_english": "We need new seeds for the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15463 + }, + { + "word": "Samurai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "samurai", + "romanization": "Samurai", + "example_sentence_native": "Der Samurai war ein tapferer Krieger.", + "example_sentence_english": "The samurai was a brave warrior.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15464 + }, + { + "word": "schmerzlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painful", + "romanization": "schmerzlich", + "example_sentence_native": "Es war ein schmerzlicher Verlust für die Familie.", + "example_sentence_english": "It was a painful loss for the family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15466 + }, + { + "word": "Schultag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school day", + "romanization": "Schultag", + "example_sentence_native": "Der Schultag beginnt um acht Uhr.", + "example_sentence_english": "The school day starts at eight o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15467 + }, + { + "word": "Schutzmassnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protective measure", + "romanization": "Schutzmassnahme", + "example_sentence_native": "Es wurden Schutzmaßnahmen ergriffen, um die Ausbreitung des Virus zu verhindern.", + "example_sentence_english": "Protective measures were taken to prevent the spread of the virus.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15468 + }, + { + "word": "Schwergewicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heavyweight", + "romanization": "Schwergewicht", + "example_sentence_native": "Er ist ein Schwergewicht im Boxen.", + "example_sentence_english": "He is a heavyweight in boxing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15469 + }, + { + "word": "Sensibilität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitivity", + "romanization": "Sensibilität", + "example_sentence_native": "Sie zeigte große Sensibilität für die Gefühle anderer.", + "example_sentence_english": "She showed great sensitivity to the feelings of others.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15471 + }, + { + "word": "Sicherheitsdienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security service", + "romanization": "Sicherheitsdienst", + "example_sentence_native": "Der Sicherheitsdienst überwacht das Gebäude.", + "example_sentence_english": "The security service monitors the building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15473 + }, + { + "word": "Sicherheitsmassnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security measure", + "romanization": "Sicherheitsmassnahme", + "example_sentence_native": "Die neuen Sicherheitsmaßnahmen wurden eingeführt.", + "example_sentence_english": "The new security measures were introduced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15474 + }, + { + "word": "Sozialstaat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "welfare state", + "romanization": "Sozialstaat", + "example_sentence_native": "Deutschland ist ein Sozialstaat.", + "example_sentence_english": "Germany is a welfare state.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15476 + }, + { + "word": "Sprechstunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "office hours", + "romanization": "Sprechstunde", + "example_sentence_native": "Die Sprechstunde des Professors ist am Dienstag.", + "example_sentence_english": "The professor's office hours are on Tuesday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15477 + }, + { + "word": "Staatsanleihe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "government bond", + "romanization": "Staatsanleihe", + "example_sentence_native": "Investitionen in Staatsanleihen gelten als sicher.", + "example_sentence_english": "Investments in government bonds are considered safe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15478 + }, + { + "word": "Stellenangebot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job offer", + "romanization": "Stellenangebot", + "example_sentence_native": "Ich habe ein interessantes Stellenangebot gefunden.", + "example_sentence_english": "I found an interesting job offer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15481 + }, + { + "word": "Steuerrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax law", + "romanization": "Steuerrecht", + "example_sentence_native": "Er ist Experte für Steuerrecht.", + "example_sentence_english": "He is an expert in tax law.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15482 + }, + { + "word": "stocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to falter;to stall", + "romanization": "stocken", + "example_sentence_native": "Die Verhandlungen begannen zu stocken.", + "example_sentence_english": "The negotiations began to falter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15483 + }, + { + "word": "stöbern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to browse;to rummage", + "romanization": "stöbern", + "example_sentence_native": "Ich liebe es, in alten Büchern zu stöbern.", + "example_sentence_english": "I love to browse through old books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15484 + }, + { + "word": "Teenie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teenager", + "romanization": "Teenie", + "example_sentence_native": "Mein Neffe ist ein typischer Teenie.", + "example_sentence_english": "My nephew is a typical teenager.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15487 + }, + { + "word": "Tierhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal husbandry;livestock farming", + "romanization": "Tierhaltung", + "example_sentence_native": "Die Tierhaltung in diesem Betrieb ist vorbildlich.", + "example_sentence_english": "The animal husbandry on this farm is exemplary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15489 + }, + { + "word": "Umgehung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bypass;circumvention", + "romanization": "Umgehung", + "example_sentence_native": "Die neue Umgehung entlastet den Stadtverkehr.", + "example_sentence_english": "The new bypass relieves city traffic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15492 + }, + { + "word": "umsehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look around", + "romanization": "umsehen", + "example_sentence_native": "Er musste sich umsehen, um den Ausgang zu finden.", + "example_sentence_english": "He had to look around to find the exit.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "sehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15493 + }, + { + "word": "Unterbau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "substructure;foundation", + "romanization": "Unterbau", + "example_sentence_native": "Der Unterbau des Gebäudes muss stabil sein.", + "example_sentence_english": "The substructure of the building must be stable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15494 + }, + { + "word": "unvermittelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suddenly;abruptly", + "romanization": "unvermittelt", + "example_sentence_native": "Er stand unvermittelt vor mir.", + "example_sentence_english": "He suddenly stood in front of me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15495 + }, + { + "word": "Verehrer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admirer;suitor", + "romanization": "Verehrer", + "example_sentence_native": "Sie hatte viele Verehrer.", + "example_sentence_english": "She had many admirers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15496 + }, + { + "word": "verfilmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to film;to make into a movie", + "romanization": "verfilmen", + "example_sentence_native": "Der Roman soll verfilmt werden.", + "example_sentence_english": "The novel is to be made into a movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15497 + }, + { + "word": "verheiratet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "married", + "romanization": "verheiratet", + "example_sentence_native": "Sie ist seit zehn Jahren verheiratet.", + "example_sentence_english": "She has been married for ten years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15498 + }, + { + "word": "Verhör", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogation", + "romanization": "Verhör", + "example_sentence_native": "Das Verhör dauerte Stunden.", + "example_sentence_english": "The interrogation lasted for hours.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15499 + }, + { + "word": "Verkündigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announcement;proclamation", + "romanization": "Verkündigung", + "example_sentence_native": "Die Verkündigung des Ergebnisses wird morgen erwartet.", + "example_sentence_english": "The announcement of the result is expected tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15500 + }, + { + "word": "verneinen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deny;to negate", + "romanization": "verneinen", + "example_sentence_native": "Er verneinte die Anschuldigungen.", + "example_sentence_english": "He denied the accusations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15501 + }, + { + "word": "verwerten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to utilize;to recycle", + "romanization": "verwerten", + "example_sentence_native": "Wir müssen alte Materialien besser verwerten.", + "example_sentence_english": "We need to utilize old materials better.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15503 + }, + { + "word": "vorhersehbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreseeable;predictable", + "romanization": "vorhersehbar", + "example_sentence_native": "Die Entwicklung war vorhersehbar.", + "example_sentence_english": "The development was foreseeable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15504 + }, + { + "word": "vorkommend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring;prevalent", + "romanization": "vorkommend", + "example_sentence_native": "Diese Art ist in der Region vorkommend.", + "example_sentence_english": "This species is occurring in the region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15505 + }, + { + "word": "vorletzte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penultimate;second to last", + "romanization": "vorletzte", + "example_sentence_native": "Das ist die vorletzte Seite des Buches.", + "example_sentence_english": "This is the penultimate page of the book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15506 + }, + { + "word": "vorprogrammiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-programmed;inevitable", + "romanization": "vorprogrammiert", + "example_sentence_native": "Der Konflikt war vorprogrammiert.", + "example_sentence_english": "The conflict was inevitable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15507 + }, + { + "word": "vorzüglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellent;exquisite", + "romanization": "vorzüglich", + "example_sentence_native": "Das Essen war vorzüglich.", + "example_sentence_english": "The food was excellent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15508 + }, + { + "word": "Weisung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instruction;directive", + "romanization": "Weisung", + "example_sentence_native": "Er befolgte die Weisung seines Vorgesetzten.", + "example_sentence_english": "He followed his superior's instruction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15509 + }, + { + "word": "Weitsprung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long jump", + "romanization": "Weitsprung", + "example_sentence_native": "Der Athlet gewann die Goldmedaille im Weitsprung.", + "example_sentence_english": "The athlete won the gold medal in the long jump.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15510 + }, + { + "word": "Werbeagentur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertising agency", + "romanization": "Werbeagentur", + "example_sentence_native": "Sie arbeitet bei einer Werbeagentur.", + "example_sentence_english": "She works at an advertising agency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15511 + }, + { + "word": "Wohnungsmarkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "housing market", + "romanization": "Wohnungsmarkt", + "example_sentence_native": "Der Wohnungsmarkt in der Stadt ist sehr angespannt.", + "example_sentence_english": "The housing market in the city is very tight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15512 + }, + { + "word": "Yuan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Yuan (Chinese currency)", + "romanization": "Yuan", + "example_sentence_native": "Ein Yuan entspricht etwa 0,13 Euro.", + "example_sentence_english": "One Yuan is approximately 0.13 Euros.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15514 + }, + { + "word": "zunichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to naught;to nothing", + "romanization": "zunichte", + "example_sentence_native": "Seine Pläne wurden zunichte gemacht.", + "example_sentence_english": "His plans were brought to naught.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 15515 + }, + { + "word": "zurückblicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look back;to reflect", + "romanization": "zurückblicken", + "example_sentence_native": "Er blickte auf seine Kindheit zurück.", + "example_sentence_english": "He looked back on his childhood.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "blicken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15516 + }, + { + "word": "Zynismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cynicism", + "romanization": "Zynismus", + "example_sentence_native": "Sein Zynismus war schwer zu ertragen.", + "example_sentence_english": "His cynicism was hard to bear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15517 + }, + { + "word": "ökumenisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecumenical", + "romanization": "ökumenisch", + "example_sentence_native": "Es gab ein ökumenisches Treffen der Kirchen.", + "example_sentence_english": "There was an ecumenical meeting of the churches.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15518 + }, + { + "word": "überlaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defect", + "romanization": "überlaufen", + "example_sentence_native": "Er lief zum Feind über.", + "example_sentence_english": "He defected to the enemy.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "über", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15519 + }, + { + "word": "abgedreht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wacky;crazy", + "romanization": "abgedreht", + "example_sentence_native": "Der Film war total abgedreht.", + "example_sentence_english": "The movie was totally wacky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15521 + }, + { + "word": "abfeuern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fire (a weapon);to launch", + "romanization": "abfeuern", + "example_sentence_native": "Der Soldat feuerte einen Schuss ab.", + "example_sentence_english": "The soldier fired a shot.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "feuern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15522 + }, + { + "word": "abwegig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misguided;absurd", + "romanization": "abwegig", + "example_sentence_native": "Seine Idee war völlig abwegig.", + "example_sentence_english": "His idea was completely misguided.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15523 + }, + { + "word": "Adaption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adaptation", + "romanization": "Adaption", + "example_sentence_native": "Die Adaption des Buches für die Leinwand war sehr gelungen.", + "example_sentence_english": "The adaptation of the book for the screen was very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15524 + }, + { + "word": "agrar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agrarian;agricultural", + "romanization": "agrar", + "example_sentence_native": "Die agrare Wirtschaft ist in dieser Region sehr wichtig.", + "example_sentence_english": "The agrarian economy is very important in this region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15525 + }, + { + "word": "Akkordeon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accordion", + "romanization": "Akkordeon", + "example_sentence_native": "Er spielt gerne Akkordeon.", + "example_sentence_english": "He likes to play the accordion.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15526 + }, + { + "word": "Algebra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "algebra", + "romanization": "Algebra", + "example_sentence_native": "In der Schule lernen wir Algebra.", + "example_sentence_english": "In school, we learn algebra.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15527 + }, + { + "word": "Altersarmut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poverty in old age", + "romanization": "Altersarmut", + "example_sentence_native": "Altersarmut ist ein wachsendes Problem in vielen Ländern.", + "example_sentence_english": "Poverty in old age is a growing problem in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15529 + }, + { + "word": "angesehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respected;reputable", + "romanization": "angesehen", + "example_sentence_native": "Er ist ein angesehener Wissenschaftler.", + "example_sentence_english": "He is a respected scientist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15531 + }, + { + "word": "animieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to animate;to encourage", + "romanization": "animieren", + "example_sentence_native": "Er wollte die Gruppe zum Tanzen animieren.", + "example_sentence_english": "He wanted to encourage the group to dance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15532 + }, + { + "word": "Applikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "application (e.g.;software)", + "romanization": "Applikation", + "example_sentence_native": "Diese Applikation ist sehr nützlich.", + "example_sentence_english": "This application is very useful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15533 + }, + { + "word": "argentinisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Argentinian", + "romanization": "argentinisch", + "example_sentence_native": "Sie kommt aus Argentinien, sie ist argentinisch.", + "example_sentence_english": "She comes from Argentina, she is Argentinian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15535 + }, + { + "word": "aufgenommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recorded;absorbed", + "romanization": "aufgenommen", + "example_sentence_native": "Das aufgenommene Material war von hoher Qualität.", + "example_sentence_english": "The recorded material was of high quality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15537 + }, + { + "word": "Aufmarsch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parade;deployment", + "romanization": "Aufmarsch", + "example_sentence_native": "Der Aufmarsch der Truppen begann am Morgen.", + "example_sentence_english": "The deployment of the troops began in the morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15538 + }, + { + "word": "ausschöpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exhaust;to utilize fully", + "romanization": "ausschöpfen", + "example_sentence_native": "Wir müssen alle Möglichkeiten ausschöpfen.", + "example_sentence_english": "We must exhaust all possibilities.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schöpfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15539 + }, + { + "word": "auswechseln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to replace;to substitute", + "romanization": "auswechseln", + "example_sentence_native": "Der Trainer musste einen Spieler auswechseln.", + "example_sentence_english": "The coach had to substitute a player.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "wechseln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15540 + }, + { + "word": "aussichtslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hopeless;futile", + "romanization": "aussichtslos", + "example_sentence_native": "Die Situation schien aussichtslos.", + "example_sentence_english": "The situation seemed hopeless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15541 + }, + { + "word": "autoritär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authoritarian", + "romanization": "autoritär", + "example_sentence_native": "Er hat einen sehr autoritären Führungsstil.", + "example_sentence_english": "He has a very authoritarian leadership style.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15542 + }, + { + "word": "bangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to worry;to be anxious", + "romanization": "bangen", + "example_sentence_native": "Sie bangte um die Gesundheit ihres Kindes.", + "example_sentence_english": "She worried about her child's health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15543 + }, + { + "word": "begabt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talented;gifted", + "romanization": "begabt", + "example_sentence_native": "Sie ist eine sehr begabte Musikerin.", + "example_sentence_english": "She is a very talented musician.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15544 + }, + { + "word": "Begebenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "event;incident", + "romanization": "Begebenheit", + "example_sentence_native": "Das war eine merkwürdige Begebenheit.", + "example_sentence_english": "That was a strange incident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15545 + }, + { + "word": "Begräbnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral", + "romanization": "Begräbnis", + "example_sentence_native": "Das Begräbnis fand am Freitag statt.", + "example_sentence_english": "The funeral took place on Friday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15546 + }, + { + "word": "beliefern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to supply;to deliver", + "romanization": "beliefern", + "example_sentence_native": "Die Firma beliefert uns mit frischen Produkten.", + "example_sentence_english": "The company supplies us with fresh products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15547 + }, + { + "word": "besiedeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to settle;to colonize", + "romanization": "besiedeln", + "example_sentence_native": "Die Römer besiedelten dieses Gebiet.", + "example_sentence_english": "The Romans settled this area.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15548 + }, + { + "word": "Brutalität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brutality", + "romanization": "Brutalität", + "example_sentence_native": "Die Brutalität der Tat schockierte alle.", + "example_sentence_english": "The brutality of the act shocked everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15555 + }, + { + "word": "Brühe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broth;stock", + "romanization": "Brühe", + "example_sentence_native": "Die Suppe wird mit einer kräftigen Brühe zubereitet.", + "example_sentence_english": "The soup is prepared with a strong broth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15556 + }, + { + "word": "Buchung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "booking;reservation", + "romanization": "Buchung", + "example_sentence_native": "Ich habe eine Buchung für zwei Nächte.", + "example_sentence_english": "I have a booking for two nights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15557 + }, + { + "word": "Bürgersteig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sidewalk;pavement", + "romanization": "Bürgersteig", + "example_sentence_native": "Bitte gehen Sie auf dem Bürgersteig.", + "example_sentence_english": "Please walk on the sidewalk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15559 + }, + { + "word": "Clique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clique", + "romanization": "Clique", + "example_sentence_native": "Die Clique traf sich jeden Freitagabend.", + "example_sentence_english": "The clique met every Friday evening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15563 + }, + { + "word": "Dancing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dancing (as in a dance event;place)", + "romanization": "Dancing", + "example_sentence_native": "Wir gehen heute Abend ins Dancing.", + "example_sentence_english": "We are going to the dancing tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15565 + }, + { + "word": "Debakel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debacle;disaster", + "romanization": "Debakel", + "example_sentence_native": "Das Projekt endete in einem völligen Debakel.", + "example_sentence_english": "The project ended in a complete debacle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15566 + }, + { + "word": "deprimierend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressing", + "romanization": "deprimierend", + "example_sentence_native": "Das Wetter ist heute sehr deprimierend.", + "example_sentence_english": "The weather is very depressing today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15567 + }, + { + "word": "desweiteren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furthermore;in addition", + "romanization": "desweiteren", + "example_sentence_native": "Desweiteren möchte ich betonen, dass...", + "example_sentence_english": "Furthermore, I would like to emphasize that...", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 15568 + }, + { + "word": "Dolch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dagger", + "romanization": "Dolch", + "example_sentence_native": "Der Ritter zog seinen Dolch.", + "example_sentence_english": "The knight drew his dagger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15570 + }, + { + "word": "Domäne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domain;sphere", + "romanization": "Domäne", + "example_sentence_native": "Das ist nicht meine Domäne.", + "example_sentence_english": "That is not my domain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15571 + }, + { + "word": "Dossier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dossier;file", + "romanization": "Dossier", + "example_sentence_native": "Das Dossier enthält alle wichtigen Informationen.", + "example_sentence_english": "The dossier contains all important information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15572 + }, + { + "word": "Dressur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dressage;training (of animals)", + "romanization": "Dressur", + "example_sentence_native": "Sie trainiert ihr Pferd in Dressur.", + "example_sentence_english": "She trains her horse in dressage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15573 + }, + { + "word": "Durchschnittsalter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "average age", + "romanization": "Durchschnittsalter", + "example_sentence_native": "Das Durchschnittsalter der Bevölkerung steigt.", + "example_sentence_english": "The average age of the population is rising.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15574 + }, + { + "word": "Eagle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eagle (bird or golf term)", + "romanization": "Eagle", + "example_sentence_native": "Der Golfer schaffte ein Eagle auf dem letzten Loch.", + "example_sentence_english": "The golfer made an eagle on the last hole.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15575 + }, + { + "word": "eindrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to press in;to dent", + "romanization": "eindrücken", + "example_sentence_native": "Er konnte die Tür nicht eindrücken.", + "example_sentence_english": "He couldn't press in the door.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "drücken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15579 + }, + { + "word": "Einzugsgebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catchment area", + "romanization": "Einzugsgebiet", + "example_sentence_native": "Das Einzugsgebiet des Flusses ist sehr groß.", + "example_sentence_english": "The river's catchment area is very large.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15580 + }, + { + "word": "entschärfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defuse", + "romanization": "entschärfen", + "example_sentence_native": "Der Experte konnte die Bombe entschärfen.", + "example_sentence_english": "The expert was able to defuse the bomb.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15584 + }, + { + "word": "epic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epic", + "romanization": "epic", + "example_sentence_native": "Das war ein epischer Kampf.", + "example_sentence_english": "That was an epic battle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15585 + }, + { + "word": "Erarbeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development", + "romanization": "Erarbeitung", + "example_sentence_native": "Die Erarbeitung des Konzepts dauerte lange.", + "example_sentence_english": "The development of the concept took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15586 + }, + { + "word": "erkämpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fight for", + "romanization": "erkämpfen", + "example_sentence_native": "Sie mussten sich ihren Platz erkämpfen.", + "example_sentence_english": "They had to fight for their place.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15588 + }, + { + "word": "Ersparnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saving", + "romanization": "Ersparnis", + "example_sentence_native": "Die Ersparnis war größer als erwartet.", + "example_sentence_english": "The saving was greater than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15589 + }, + { + "word": "Erstattung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reimbursement", + "romanization": "Erstattung", + "example_sentence_native": "Sie beantragte die Erstattung der Reisekosten.", + "example_sentence_english": "She applied for the reimbursement of travel expenses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15590 + }, + { + "word": "ertönen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sound", + "romanization": "ertönen", + "example_sentence_native": "Plötzlich ertönte ein lauter Schrei.", + "example_sentence_english": "Suddenly a loud scream sounded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15591 + }, + { + "word": "erwärmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to warm up", + "romanization": "erwärmen", + "example_sentence_native": "Bitte erwärmen Sie die Suppe.", + "example_sentence_english": "Please warm up the soup.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15592 + }, + { + "word": "Esser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eater", + "romanization": "Esser", + "example_sentence_native": "Er ist ein langsamer Esser.", + "example_sentence_english": "He is a slow eater.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15593 + }, + { + "word": "Explorer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explorer", + "romanization": "Explorer", + "example_sentence_native": "Der berühmte Explorer kehrte von seiner Reise zurück.", + "example_sentence_english": "The famous explorer returned from his journey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15595 + }, + { + "word": "Factor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "factor", + "romanization": "Factor", + "example_sentence_native": "Das ist ein wichtiger Factor.", + "example_sentence_english": "That is an important factor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15596 + }, + { + "word": "false", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "false", + "romanization": "false", + "example_sentence_native": "Das ist eine falsche Antwort.", + "example_sentence_english": "That is a false answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 15597 + }, + { + "word": "Font", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "font", + "romanization": "Font", + "example_sentence_native": "Wählen Sie eine schöne Font aus.", + "example_sentence_english": "Choose a nice font.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15598 + }, + { + "word": "frieren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to freeze;to be cold", + "romanization": "frieren", + "example_sentence_native": "Mir friert es an den Füßen.", + "example_sentence_english": "My feet are freezing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15600 + }, + { + "word": "fließen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flow", + "romanization": "fließen", + "example_sentence_native": "Das Wasser fließt schnell.", + "example_sentence_english": "The water flows quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15603 + }, + { + "word": "Gegenwehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resistance;defense", + "romanization": "Gegenwehr", + "example_sentence_native": "Er leistete keine Gegenwehr.", + "example_sentence_english": "He offered no resistance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15604 + }, + { + "word": "Geldpolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monetary policy", + "romanization": "Geldpolitik", + "example_sentence_native": "Die Geldpolitik beeinflusst die Wirtschaft.", + "example_sentence_english": "Monetary policy influences the economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15605 + }, + { + "word": "Gemeindehaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "community center;parish hall", + "romanization": "Gemeindehaus", + "example_sentence_native": "Das Treffen findet im Gemeindehaus statt.", + "example_sentence_english": "The meeting takes place in the community center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15606 + }, + { + "word": "Gemeindeverwaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal administration;local government", + "romanization": "Gemeindeverwaltung", + "example_sentence_native": "Die Gemeindeverwaltung ist für die Bürger da.", + "example_sentence_english": "The municipal administration is there for the citizens.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15607 + }, + { + "word": "Gesandter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "envoy;delegate;emissary", + "romanization": "Gesandter", + "example_sentence_native": "Der Gesandter überbrachte die Nachricht.", + "example_sentence_english": "The envoy delivered the message.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15609 + }, + { + "word": "schlachten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to slaughter", + "romanization": "schlachten", + "example_sentence_native": "Die Tiere werden geschlachtet.", + "example_sentence_english": "The animals are slaughtered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15611 + }, + { + "word": "sponsern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sponsor", + "romanization": "sponsern", + "example_sentence_native": "Die Firma sponsert das Event.", + "example_sentence_english": "The company sponsors the event.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15612 + }, + { + "word": "gnädig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merciful;gracious", + "romanization": "gnädig", + "example_sentence_native": "Der König war gnädig zu seinen Untertanen.", + "example_sentence_english": "The king was merciful to his subjects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15613 + }, + { + "word": "Grenzgebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "border area;frontier region", + "romanization": "Grenzgebiet", + "example_sentence_native": "Das Grenzgebiet ist schwer zugänglich.", + "example_sentence_english": "The border area is difficult to access.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15614 + }, + { + "word": "Hacke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoe (tool) or heel (body part)", + "romanization": "Hacke", + "example_sentence_native": "Er benutzte eine Hacke im Garten.", + "example_sentence_english": "He used a hoe in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15615 + }, + { + "word": "halbieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to halve;to divide in half", + "romanization": "halbieren", + "example_sentence_native": "Wir müssen den Kuchen halbieren.", + "example_sentence_english": "We need to halve the cake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15616 + }, + { + "word": "Handynummer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mobile number;cell phone number", + "romanization": "Handynummer", + "example_sentence_native": "Kannst du mir deine Handynummer geben?", + "example_sentence_english": "Can you give me your mobile number?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15617 + }, + { + "word": "Hauptaufgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main task;primary duty", + "romanization": "Hauptaufgabe", + "example_sentence_native": "Seine Hauptaufgabe ist die Koordination.", + "example_sentence_english": "His main task is coordination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15618 + }, + { + "word": "Heimatort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hometown", + "romanization": "Heimatort", + "example_sentence_native": "Mein Heimatort ist klein, aber schön.", + "example_sentence_english": "My hometown is small but beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15620 + }, + { + "word": "Heimweh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homesickness", + "romanization": "Heimweh", + "example_sentence_native": "Sie hatte starkes Heimweh, als sie im Ausland studierte.", + "example_sentence_english": "She had strong homesickness when she studied abroad.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15621 + }, + { + "word": "hinfällig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsolete", + "romanization": "hinfällig", + "example_sentence_native": "Der alte Vertrag ist nun hinfällig.", + "example_sentence_english": "The old contract is now obsolete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15623 + }, + { + "word": "hinschauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to look closely", + "romanization": "hinschauen", + "example_sentence_native": "Man sollte genau hinschauen, bevor man eine Entscheidung trifft.", + "example_sentence_english": "One should look closely before making a decision.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15624 + }, + { + "word": "hinzukommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be added", + "romanization": "hinzukommen", + "example_sentence_native": "Zu den bestehenden Problemen kommen neue hinzu.", + "example_sentence_english": "New problems are added to the existing ones.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hinzu", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15625 + }, + { + "word": "Horrorfilm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "horror film", + "romanization": "Horrorfilm", + "example_sentence_native": "Ich mag keine Horrorfilme, sie sind zu gruselig.", + "example_sentence_english": "I don't like horror films, they are too scary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15626 + }, + { + "word": "Idealismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idealism", + "romanization": "Idealismus", + "example_sentence_native": "Sein Idealismus trieb ihn an, die Welt zu verbessern.", + "example_sentence_english": "His idealism drove him to improve the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15627 + }, + { + "word": "Imker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beekeeper", + "romanization": "Imker", + "example_sentence_native": "Der Imker kümmert sich um seine Bienen.", + "example_sentence_english": "The beekeeper takes care of his bees.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15629 + }, + { + "word": "institutionell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "institutional", + "romanization": "institutionell", + "example_sentence_native": "Das Problem erfordert eine institutionelle Lösung.", + "example_sentence_english": "The problem requires an institutional solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15630 + }, + { + "word": "Inzest", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "incest", + "romanization": "Inzest", + "example_sentence_native": "Inzest ist in vielen Kulturen ein Tabu.", + "example_sentence_english": "Incest is a taboo in many cultures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15631 + }, + { + "word": "irreführend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misleading", + "romanization": "irreführend", + "example_sentence_native": "Die Werbung war irreführend.", + "example_sentence_english": "The advertisement was misleading.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15634 + }, + { + "word": "Jahrtausend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennium", + "romanization": "Jahrtausend", + "example_sentence_native": "Das neue Jahrtausend begann im Jahr 2001.", + "example_sentence_english": "The new millennium began in the year 2001.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15635 + }, + { + "word": "Junker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Junker", + "romanization": "Junker", + "example_sentence_native": "Die Junker waren eine Klasse von preußischen Adligen.", + "example_sentence_english": "The Junkers were a class of Prussian noblemen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15637 + }, + { + "word": "Kajak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kayak", + "romanization": "Kajak", + "example_sentence_native": "Wir mieteten ein Kajak für unsere Tour auf dem See.", + "example_sentence_english": "We rented a kayak for our tour on the lake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15638 + }, + { + "word": "Klatsche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slap;defeat;fly swatter", + "romanization": "Klatsche", + "example_sentence_native": "Er gab ihm eine Klatsche ins Gesicht.", + "example_sentence_english": "He gave him a slap in the face.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15642 + }, + { + "word": "Kochbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cookbook", + "romanization": "Kochbuch", + "example_sentence_native": "Ich habe ein neues Kochbuch mit italienischen Rezepten gekauft.", + "example_sentence_english": "I bought a new cookbook with Italian recipes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15643 + }, + { + "word": "Kohlendioxid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbon dioxide", + "romanization": "Kohlendioxid", + "example_sentence_native": "Pflanzen wandeln Kohlendioxid in Sauerstoff um.", + "example_sentence_english": "Plants convert carbon dioxide into oxygen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15644 + }, + { + "word": "Kolonne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "column;convoy;queue", + "romanization": "Kolonne", + "example_sentence_native": "Eine lange Kolonne von Autos bewegte sich langsam vorwärts.", + "example_sentence_english": "A long column of cars moved slowly forward.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15645 + }, + { + "word": "Konvoi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convoy", + "romanization": "Konvoi", + "example_sentence_native": "Der Konvoi wurde von Militärfahrzeugen begleitet.", + "example_sentence_english": "The convoy was accompanied by military vehicles.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15646 + }, + { + "word": "Krankenpfleger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "male nurse", + "romanization": "Krankenpfleger", + "example_sentence_native": "Der Krankenpfleger kümmerte sich gut um die Patienten.", + "example_sentence_english": "The male nurse took good care of the patients.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15647 + }, + { + "word": "Körpersprache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "body language", + "romanization": "Körpersprache", + "example_sentence_native": "Ihre Körpersprache verriet ihre Nervosität.", + "example_sentence_english": "Her body language revealed her nervousness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15650 + }, + { + "word": "Leopard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leopard", + "romanization": "Leopard", + "example_sentence_native": "Der Leopard ist eine schnelle Raubkatze.", + "example_sentence_english": "The leopard is a fast big cat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15652 + }, + { + "word": "Lichtjahr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light-year", + "romanization": "Lichtjahr", + "example_sentence_native": "Die Entfernung zu diesem Stern beträgt viele Lichtjahre.", + "example_sentence_english": "The distance to this star is many light-years.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15653 + }, + { + "word": "loyal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loyal", + "romanization": "loyal", + "example_sentence_native": "Er ist ein sehr loyaler Freund.", + "example_sentence_english": "He is a very loyal friend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15655 + }, + { + "word": "Luftdruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "air pressure", + "romanization": "Luftdruck", + "example_sentence_native": "Der Luftdruck ist heute sehr niedrig.", + "example_sentence_english": "The air pressure is very low today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15657 + }, + { + "word": "massieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to massage", + "romanization": "massieren", + "example_sentence_native": "Sie ließ sich den Rücken massieren.", + "example_sentence_english": "She had her back massaged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15659 + }, + { + "word": "Meerschweinchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guinea pig", + "romanization": "Meerschweinchen", + "example_sentence_native": "Mein Meerschweinchen frisst gerne Karotten.", + "example_sentence_english": "My guinea pig likes to eat carrots.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15661 + }, + { + "word": "Mietpreisbremse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rent control", + "romanization": "Mietpreisbremse", + "example_sentence_native": "Die Mietpreisbremse soll steigende Mieten eindämmen.", + "example_sentence_english": "Rent control is intended to curb rising rents.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15663 + }, + { + "word": "Mitschuld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complicity;shared blame", + "romanization": "Mitschuld", + "example_sentence_native": "Er trägt eine Mitschuld an dem Unfall.", + "example_sentence_english": "He bears shared blame for the accident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15666 + }, + { + "word": "moderat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderate", + "romanization": "moderat", + "example_sentence_native": "Er hat eine moderate Meinung zu diesem Thema.", + "example_sentence_english": "He has a moderate opinion on this topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15667 + }, + { + "word": "Montagabend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Monday evening", + "romanization": "Montagabend", + "example_sentence_native": "Wir treffen uns am Montagabend.", + "example_sentence_english": "We are meeting on Monday evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15668 + }, + { + "word": "Morgenstunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "morning hour", + "romanization": "Morgenstunde", + "example_sentence_native": "Die Morgenstunde ist oft die produktivste Zeit des Tages.", + "example_sentence_english": "The morning hour is often the most productive time of the day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15669 + }, + { + "word": "musizieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make music;to play an instrument", + "romanization": "musizieren", + "example_sentence_native": "Sie liebt es, am Wochenende zu musizieren.", + "example_sentence_english": "She loves to make music on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15670 + }, + { + "word": "Mutation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutation", + "romanization": "Mutation", + "example_sentence_native": "Eine genetische Mutation kann Krankheiten verursachen.", + "example_sentence_english": "A genetic mutation can cause diseases.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15671 + }, + { + "word": "Mysterium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mystery", + "romanization": "Mysterium", + "example_sentence_native": "Das Verschwinden des Flugzeugs bleibt ein Mysterium.", + "example_sentence_english": "The disappearance of the plane remains a mystery.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15672 + }, + { + "word": "Mülltonne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garbage can;dumpster", + "romanization": "Mülltonne", + "example_sentence_native": "Bitte wirf den Abfall in die Mülltonne.", + "example_sentence_english": "Please throw the waste into the garbage can.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15673 + }, + { + "word": "nationalistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationalistic", + "romanization": "nationalistisch", + "example_sentence_native": "Seine Ansichten sind sehr nationalistisch geprägt.", + "example_sentence_english": "His views are very nationalistic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15674 + }, + { + "word": "Nervensystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nervous system", + "romanization": "Nervensystem", + "example_sentence_native": "Das Nervensystem steuert alle Körperfunktionen.", + "example_sentence_english": "The nervous system controls all body functions.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15675 + }, + { + "word": "neuartig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "novel;new type of", + "romanization": "neuartig", + "example_sentence_native": "Das ist eine neuartige Technologie.", + "example_sentence_english": "This is a novel technology.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15676 + }, + { + "word": "nicken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to nod", + "romanization": "nicken", + "example_sentence_native": "Er nickte zustimmend.", + "example_sentence_english": "He nodded in agreement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15679 + }, + { + "word": "Ohrfeige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slap (in the face)", + "romanization": "Ohrfeige", + "example_sentence_native": "Er gab ihm eine Ohrfeige.", + "example_sentence_english": "He gave him a slap.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15682 + }, + { + "word": "Ortsvorsteher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "local mayor;village head", + "romanization": "Ortsvorsteher", + "example_sentence_native": "Der Ortsvorsteher begrüßte die neuen Bürger.", + "example_sentence_english": "The local mayor welcomed the new citizens.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15683 + }, + { + "word": "Ortszeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local time", + "romanization": "Ortszeit", + "example_sentence_native": "Die Ankunftszeit ist 14 Uhr Ortszeit.", + "example_sentence_english": "The arrival time is 2 PM local time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15684 + }, + { + "word": "Partizipation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participation", + "romanization": "Partizipation", + "example_sentence_native": "Die Partizipation der Bürger ist wichtig.", + "example_sentence_english": "Citizen participation is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15687 + }, + { + "word": "Patientin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female patient", + "romanization": "Patientin", + "example_sentence_native": "Die Patientin wartet auf den Arzt.", + "example_sentence_english": "The female patient is waiting for the doctor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15688 + }, + { + "word": "Peripherie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "periphery", + "romanization": "Peripherie", + "example_sentence_native": "Die Stadt liegt an der Peripherie des Waldes.", + "example_sentence_english": "The city lies on the periphery of the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15690 + }, + { + "word": "Plugin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plugin", + "romanization": "Plugin", + "example_sentence_native": "Sie müssen das Plugin installieren.", + "example_sentence_english": "You need to install the plugin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15691 + }, + { + "word": "plündern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to plunder;to loot", + "romanization": "plündern", + "example_sentence_native": "Die Soldaten begannen, die Stadt zu plündern.", + "example_sentence_english": "The soldiers began to plunder the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15692 + }, + { + "word": "preisgeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reveal;to disclose;to abandon", + "romanization": "preisgeben", + "example_sentence_native": "Er wollte seine Geheimnisse nicht preisgeben.", + "example_sentence_english": "He did not want to reveal his secrets.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "preis", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15694 + }, + { + "word": "Promo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promo;promotion", + "romanization": "Promo", + "example_sentence_native": "Die Band veröffentlichte eine neue Promo für ihr Album.", + "example_sentence_english": "The band released a new promo for their album.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15696 + }, + { + "word": "Publisher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publisher", + "romanization": "Publisher", + "example_sentence_native": "Der Publisher hat das neue Spiel angekündigt.", + "example_sentence_english": "The publisher announced the new game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15698 + }, + { + "word": "Rabbi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabbi", + "romanization": "Rabbi", + "example_sentence_native": "Der Rabbi hielt eine Predigt in der Synagoge.", + "example_sentence_english": "The rabbi gave a sermon in the synagogue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15699 + }, + { + "word": "rausschmeißen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to throw out;to kick out", + "romanization": "rausschmeißen", + "example_sentence_native": "Sie haben ihn aus der Bar rausgeschmissen.", + "example_sentence_english": "They threw him out of the bar.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "schmeißen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15700 + }, + { + "word": "Rechtsgrundlage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal basis", + "romanization": "Rechtsgrundlage", + "example_sentence_native": "Die Rechtsgrundlage für diese Entscheidung ist unklar.", + "example_sentence_english": "The legal basis for this decision is unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15702 + }, + { + "word": "Rechtsschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal protection", + "romanization": "Rechtsschutz", + "example_sentence_native": "Er hat eine Rechtsschutzversicherung abgeschlossen.", + "example_sentence_english": "He took out legal protection insurance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15703 + }, + { + "word": "Reptil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reptile", + "romanization": "Reptil", + "example_sentence_native": "Schlangen sind Reptilien.", + "example_sentence_english": "Snakes are reptiles.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15704 + }, + { + "word": "Restauration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restoration;restaurant (archaic)", + "romanization": "Restauration", + "example_sentence_native": "Die Restauration des alten Gemäldes dauerte Monate.", + "example_sentence_english": "The restoration of the old painting took months.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15705 + }, + { + "word": "robust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robust;sturdy", + "romanization": "robust", + "example_sentence_native": "Das ist ein sehr robustes Material.", + "example_sentence_english": "This is a very robust material.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15708 + }, + { + "word": "Roulette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roulette", + "romanization": "Roulette", + "example_sentence_native": "Sie spielten Roulette im Casino.", + "example_sentence_english": "They played roulette in the casino.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15709 + }, + { + "word": "Rücklage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reserve;provision (financial)", + "romanization": "Rücklage", + "example_sentence_native": "Das Unternehmen bildete Rücklagen für zukünftige Investitionen.", + "example_sentence_english": "The company formed reserves for future investments.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15711 + }, + { + "word": "Rückruf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recall (product);call-back (phone)", + "romanization": "Rückruf", + "example_sentence_native": "Es gab einen Rückruf für fehlerhafte Autoteile.", + "example_sentence_english": "There was a recall for faulty car parts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15712 + }, + { + "word": "Sachlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "situation;state of affairs", + "romanization": "Sachlage", + "example_sentence_native": "Die Sachlage ist kompliziert.", + "example_sentence_english": "The situation is complicated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15713 + }, + { + "word": "Schizophrenie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schizophrenia", + "romanization": "Schizophrenie", + "example_sentence_native": "Schizophrenie ist eine komplexe psychische Erkrankung.", + "example_sentence_english": "Schizophrenia is a complex mental illness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15716 + }, + { + "word": "Schlosspark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "castle park", + "romanization": "Schlosspark", + "example_sentence_native": "Wir machten einen Spaziergang durch den Schlosspark.", + "example_sentence_english": "We took a walk through the castle park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15717 + }, + { + "word": "Schriftführer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretary (of a meeting;organization);recorder", + "romanization": "Schriftführer", + "example_sentence_native": "Der Schriftführer verlas das Protokoll der letzten Sitzung.", + "example_sentence_english": "The secretary read out the minutes of the last meeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15718 + }, + { + "word": "Schwarzmarkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "black market", + "romanization": "Schwarzmarkt", + "example_sentence_native": "Auf dem Schwarzmarkt werden oft gestohlene Waren verkauft.", + "example_sentence_english": "Stolen goods are often sold on the black market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15719 + }, + { + "word": "Separatist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separatist", + "romanization": "Separatist", + "example_sentence_native": "Der Separatist forderte mehr Autonomie für seine Region.", + "example_sentence_english": "The separatist demanded more autonomy for his region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15720 + }, + { + "word": "Siegerehrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "award ceremony", + "romanization": "Siegerehrung", + "example_sentence_native": "Die Siegerehrung fand nach dem Rennen statt.", + "example_sentence_english": "The award ceremony took place after the race.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15722 + }, + { + "word": "Silhouette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silhouette", + "romanization": "Silhouette", + "example_sentence_native": "Man konnte die Silhouette des Baumes am Horizont sehen.", + "example_sentence_english": "One could see the silhouette of the tree on the horizon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15723 + }, + { + "word": "simulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to simulate", + "romanization": "simulieren", + "example_sentence_native": "Der Computer kann verschiedene Szenarien simulieren.", + "example_sentence_english": "The computer can simulate different scenarios.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15724 + }, + { + "word": "Size", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "size", + "romanization": "Size", + "example_sentence_native": "Welche Size haben Sie?", + "example_sentence_english": "What size do you have?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15726 + }, + { + "word": "Soap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soap opera", + "romanization": "Soap", + "example_sentence_native": "Sie schaut jeden Abend ihre Lieblings-Soap.", + "example_sentence_english": "She watches her favorite soap opera every evening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15728 + }, + { + "word": "Solist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soloist", + "romanization": "Solist", + "example_sentence_native": "Der Solist spielte ein beeindruckendes Gitarrensolo.", + "example_sentence_english": "The soloist played an impressive guitar solo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15729 + }, + { + "word": "statisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "static", + "romanization": "statisch", + "example_sentence_native": "Die Situation blieb statisch und es gab keine Fortschritte.", + "example_sentence_english": "The situation remained static and there was no progress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15731 + }, + { + "word": "Sympathisant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sympathizer", + "romanization": "Sympathisant", + "example_sentence_native": "Er wurde als Sympathisant der Bewegung betrachtet.", + "example_sentence_english": "He was considered a sympathizer of the movement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15735 + }, + { + "word": "synchronisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to synchronize", + "romanization": "synchronisieren", + "example_sentence_native": "Wir müssen die Audiospur mit dem Video synchronisieren.", + "example_sentence_english": "We need to synchronize the audio track with the video.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15736 + }, + { + "word": "Therapeutin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female therapist", + "romanization": "Therapeutin", + "example_sentence_native": "Sie hat einen Termin bei ihrer Therapeutin.", + "example_sentence_english": "She has an appointment with her female therapist.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15739 + }, + { + "word": "Trauerfeier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral service", + "romanization": "Trauerfeier", + "example_sentence_native": "Die Trauerfeier fand in der Kirche statt.", + "example_sentence_english": "The funeral service took place in the church.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15742 + }, + { + "word": "traumatisieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to traumatize", + "romanization": "traumatisieren", + "example_sentence_native": "Das Erlebnis konnte ihn traumatisieren.", + "example_sentence_english": "The experience could traumatize him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15743 + }, + { + "word": "Tsunami", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tsunami", + "romanization": "Tsunami", + "example_sentence_native": "Der Tsunami verursachte große Zerstörung.", + "example_sentence_english": "The tsunami caused great destruction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15744 + }, + { + "word": "türmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pile up;to abscond", + "romanization": "türmen", + "example_sentence_native": "Die Wolken türmten sich am Horizont.", + "example_sentence_english": "The clouds piled up on the horizon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15746 + }, + { + "word": "umkehren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn back;to reverse", + "romanization": "umkehren", + "example_sentence_native": "Wir mussten umkehren, weil die Straße gesperrt war.", + "example_sentence_english": "We had to turn back because the road was closed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "kehren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15749 + }, + { + "word": "ungewollt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwanted;unintentional", + "romanization": "ungewollt", + "example_sentence_native": "Das war eine ungewollte Nebenwirkung.", + "example_sentence_english": "That was an unintentional side effect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15750 + }, + { + "word": "universell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "universal", + "romanization": "universell", + "example_sentence_native": "Diese Regel ist universell anwendbar.", + "example_sentence_english": "This rule is universally applicable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15751 + }, + { + "word": "unschön", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unsightly;unpleasant", + "romanization": "unschön", + "example_sentence_native": "Das war eine unschöne Situation.", + "example_sentence_english": "That was an unpleasant situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15752 + }, + { + "word": "unsinnig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsensical;absurd", + "romanization": "unsinnig", + "example_sentence_native": "Seine Argumente waren völlig unsinnig.", + "example_sentence_english": "His arguments were completely nonsensical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15753 + }, + { + "word": "Untergeschoss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basement;lower floor", + "romanization": "Untergeschoss", + "example_sentence_native": "Wir haben unser Büro im Untergeschoss.", + "example_sentence_english": "We have our office in the basement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15754 + }, + { + "word": "Unterschlupf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shelter;refuge", + "romanization": "Unterschlupf", + "example_sentence_native": "Sie suchten Unterschlupf vor dem Sturm.", + "example_sentence_english": "They sought shelter from the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15755 + }, + { + "word": "Verdauung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digestion", + "romanization": "Verdauung", + "example_sentence_native": "Eine gute Verdauung ist wichtig für die Gesundheit.", + "example_sentence_english": "Good digestion is important for health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15757 + }, + { + "word": "Vereinbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatibility;reconcilability", + "romanization": "Vereinbarkeit", + "example_sentence_native": "Die Vereinbarkeit von Beruf und Familie ist ein wichtiges Thema.", + "example_sentence_english": "The compatibility of work and family is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15758 + }, + { + "word": "Verhängnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doom;fate;calamity", + "romanization": "Verhängnis", + "example_sentence_native": "Das war ein Verhängnis für die ganze Stadt.", + "example_sentence_english": "That was a calamity for the whole city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15759 + }, + { + "word": "Verkehrsminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Minister of Transport", + "romanization": "Verkehrsminister", + "example_sentence_native": "Der Verkehrsminister stellte den neuen Plan vor.", + "example_sentence_english": "The Minister of Transport presented the new plan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15760 + }, + { + "word": "verkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decay;to go to ruin", + "romanization": "verkommen", + "example_sentence_native": "Das alte Haus ist völlig verkommen.", + "example_sentence_english": "The old house has completely decayed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15761 + }, + { + "word": "Verlegenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embarrassment;awkwardness", + "romanization": "Verlegenheit", + "example_sentence_native": "Sie geriet in Verlegenheit, als sie bemerkt wurde.", + "example_sentence_english": "She got into embarrassment when she was noticed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15762 + }, + { + "word": "Verschleiss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wear and tear;abrasion", + "romanization": "Verschleiss", + "example_sentence_native": "Der Motor zeigte starken Verschleiss.", + "example_sentence_english": "The engine showed heavy wear and tear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15763 + }, + { + "word": "Verschmelzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fusion;merger", + "romanization": "Verschmelzung", + "example_sentence_native": "Die Verschmelzung der beiden Unternehmen war erfolgreich.", + "example_sentence_english": "The merger of the two companies was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15764 + }, + { + "word": "versperren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to block;to obstruct", + "romanization": "versperren", + "example_sentence_native": "Der umgestürzte Baum versperrte den Weg.", + "example_sentence_english": "The fallen tree blocked the path.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15765 + }, + { + "word": "Verwechslung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confusion;mix-up", + "romanization": "Verwechslung", + "example_sentence_native": "Es gab eine Verwechslung der Namen.", + "example_sentence_english": "There was a mix-up of the names.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15766 + }, + { + "word": "Vielseitigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "versatility;diversity", + "romanization": "Vielseitigkeit", + "example_sentence_native": "Ihre Vielseitigkeit macht sie zu einer wertvollen Mitarbeiterin.", + "example_sentence_english": "Her versatility makes her a valuable employee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15767 + }, + { + "word": "vorarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work ahead;to prepare", + "romanization": "vorarbeiten", + "example_sentence_native": "Wir müssen vorarbeiten, um das Projekt pünktlich abzuschließen.", + "example_sentence_english": "We need to work ahead to complete the project on time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15770 + }, + { + "word": "Wasserkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydropower;water power", + "romanization": "Wasserkraft", + "example_sentence_native": "Wasserkraft ist eine erneuerbare Energiequelle.", + "example_sentence_english": "Hydropower is a renewable energy source.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15772 + }, + { + "word": "Wedel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frond;plume;tail (of a dog;deer)", + "romanization": "Wedel", + "example_sentence_native": "Der Hund wedelte mit dem Wedel.", + "example_sentence_english": "The dog wagged its tail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15773 + }, + { + "word": "weitergehend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "further;extensive;far-reaching", + "romanization": "weitergehend", + "example_sentence_native": "Wir benötigen weitergehende Informationen.", + "example_sentence_english": "We need further information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15775 + }, + { + "word": "Widmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedication;devotion", + "romanization": "Widmung", + "example_sentence_native": "Das Buch enthält eine Widmung an seine Eltern.", + "example_sentence_english": "The book contains a dedication to his parents.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15776 + }, + { + "word": "wortwörtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literal;literally;verbatim", + "romanization": "wortwörtlich", + "example_sentence_native": "Er hat meine Worte wortwörtlich genommen.", + "example_sentence_english": "He took my words literally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15778 + }, + { + "word": "Würde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dignity", + "romanization": "Würde", + "example_sentence_native": "Jeder Mensch hat Würde.", + "example_sentence_english": "Every person has dignity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15780 + }, + { + "word": "zahllos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countless;innumerable", + "romanization": "zahllos", + "example_sentence_native": "Es gibt zahllose Sterne am Himmel.", + "example_sentence_english": "There are countless stars in the sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15781 + }, + { + "word": "zauberhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magical;enchanting", + "romanization": "zauberhaft", + "example_sentence_native": "Das war ein zauberhafter Abend.", + "example_sentence_english": "That was a magical evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15782 + }, + { + "word": "Zivilcourage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civil courage;moral courage", + "romanization": "Zivilcourage", + "example_sentence_native": "Es erfordert Zivilcourage, sich gegen Ungerechtigkeit zu stellen.", + "example_sentence_english": "It requires civil courage to stand up against injustice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15783 + }, + { + "word": "zusammenbrechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse;to break down", + "romanization": "zusammenbrechen", + "example_sentence_native": "Das alte Gebäude könnte jederzeit zusammenbrechen.", + "example_sentence_english": "The old building could collapse at any moment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "brechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15785 + }, + { + "word": "zusammenhängend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherent;connected", + "romanization": "zusammenhängend", + "example_sentence_native": "Er konnte keine zusammenhängende Geschichte erzählen.", + "example_sentence_english": "He couldn't tell a coherent story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15786 + }, + { + "word": "Zusammenlegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merger;consolidation", + "romanization": "Zusammenlegung", + "example_sentence_native": "Die Zusammenlegung der beiden Firmen wurde angekündigt.", + "example_sentence_english": "The merger of the two companies was announced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15787 + }, + { + "word": "Überdosis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overdose", + "romanization": "Überdosis", + "example_sentence_native": "Eine Überdosis kann lebensbedrohlich sein.", + "example_sentence_english": "An overdose can be life-threatening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15788 + }, + { + "word": "überwältigend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelming", + "romanization": "überwältigend", + "example_sentence_native": "Der Anblick war überwältigend.", + "example_sentence_english": "The sight was overwhelming.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15789 + }, + { + "word": "üppig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lush;opulent;abundant", + "romanization": "üppig", + "example_sentence_native": "Der Garten war üppig mit Blumen bewachsen.", + "example_sentence_english": "The garden was lush with flowers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15790 + }, + { + "word": "abfangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intercept;to catch", + "romanization": "abfangen", + "example_sentence_native": "Die Polizei konnte den Dieb abfangen.", + "example_sentence_english": "The police were able to intercept the thief.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "fangen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15791 + }, + { + "word": "abtragen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remove;to demolish;to pay off (debt)", + "romanization": "abtragen", + "example_sentence_native": "Das alte Gebäude muss abgetragen werden.", + "example_sentence_english": "The old building must be demolished.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15792 + }, + { + "word": "Ablagerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposit;sediment;accumulation", + "romanization": "Ablagerung", + "example_sentence_native": "Es gab Ablagerungen in den Rohren.", + "example_sentence_english": "There were deposits in the pipes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15793 + }, + { + "word": "Adliger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobleman;noble", + "romanization": "Adliger", + "example_sentence_native": "Ein Adliger lebte in der Burg.", + "example_sentence_english": "A nobleman lived in the castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15794 + }, + { + "word": "Alkoholkonsum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alcohol consumption", + "romanization": "Alkoholkonsum", + "example_sentence_native": "Übermäßiger Alkoholkonsum ist schädlich für die Gesundheit.", + "example_sentence_english": "Excessive alcohol consumption is harmful to health.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15795 + }, + { + "word": "altmodisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old-fashioned;outdated", + "romanization": "altmodisch", + "example_sentence_native": "Ihre Kleidung war etwas altmodisch.", + "example_sentence_english": "Her clothes were a bit old-fashioned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15796 + }, + { + "word": "anklicken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to click on", + "romanization": "anklicken", + "example_sentence_native": "Bitte klicken Sie auf den Link.", + "example_sentence_english": "Please click on the link.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "klicken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15797 + }, + { + "word": "Anomalie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anomaly", + "romanization": "Anomalie", + "example_sentence_native": "Das Ergebnis zeigte eine Anomalie.", + "example_sentence_english": "The result showed an anomaly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15798 + }, + { + "word": "anpacken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tackle;to grab;to get stuck in", + "romanization": "anpacken", + "example_sentence_native": "Wir müssen das Problem jetzt anpacken.", + "example_sentence_english": "We need to tackle the problem now.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "packen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15799 + }, + { + "word": "Arbeitsamt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employment office", + "romanization": "Arbeitsamt", + "example_sentence_native": "Ich muss morgen zum Arbeitsamt gehen.", + "example_sentence_english": "I have to go to the employment office tomorrow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15800 + }, + { + "word": "aufdringlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrusive", + "romanization": "aufdringlich", + "example_sentence_native": "Sein Verhalten war sehr aufdringlich.", + "example_sentence_english": "His behavior was very intrusive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15805 + }, + { + "word": "Aufeinandertreffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encounter", + "romanization": "Aufeinandertreffen", + "example_sentence_native": "Das Aufeinandertreffen der beiden Teams war spannend.", + "example_sentence_english": "The encounter between the two teams was exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15806 + }, + { + "word": "auslasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to utilize fully", + "romanization": "auslasten", + "example_sentence_native": "Wir müssen die Maschinen besser auslasten.", + "example_sentence_english": "We need to utilize the machines better.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "lasten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15807 + }, + { + "word": "Auswanderung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emigration", + "romanization": "Auswanderung", + "example_sentence_native": "Die Auswanderung aus dem Land hat zugenommen.", + "example_sentence_english": "Emigration from the country has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15808 + }, + { + "word": "Bachelorarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bachelor's thesis", + "romanization": "Bachelorarbeit", + "example_sentence_native": "Sie schreibt gerade an ihrer Bachelorarbeit.", + "example_sentence_english": "She is currently writing her bachelor's thesis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15809 + }, + { + "word": "Badminton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "badminton", + "romanization": "Badminton", + "example_sentence_native": "Spielen wir heute Nachmittag Badminton?", + "example_sentence_english": "Shall we play badminton this afternoon?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15810 + }, + { + "word": "Basilika", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basilica", + "romanization": "Basilika", + "example_sentence_native": "Die alte Basilika ist ein beeindruckendes Bauwerk.", + "example_sentence_english": "The old basilica is an impressive building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15813 + }, + { + "word": "behaart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairy", + "romanization": "behaart", + "example_sentence_native": "Der Hund hat sehr behaarte Ohren.", + "example_sentence_english": "The dog has very hairy ears.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15814 + }, + { + "word": "beiderseits", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on both sides", + "romanization": "beiderseits", + "example_sentence_native": "Die Straße ist beiderseits von Bäumen gesäumt.", + "example_sentence_english": "The street is lined with trees on both sides.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15815 + }, + { + "word": "Beisitzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assessor", + "romanization": "Beisitzer", + "example_sentence_native": "Der Beisitzer unterstützte den Richter bei der Entscheidung.", + "example_sentence_english": "The assessor supported the judge in the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15816 + }, + { + "word": "Beratungsstelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counseling center", + "romanization": "Beratungsstelle", + "example_sentence_native": "Sie suchte Hilfe bei einer Beratungsstelle.", + "example_sentence_english": "She sought help at a counseling center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15817 + }, + { + "word": "beschneiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prune", + "romanization": "beschneiden", + "example_sentence_native": "Man muss die Rosen regelmäßig beschneiden.", + "example_sentence_english": "You have to prune the roses regularly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15818 + }, + { + "word": "bewegend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moving (emotionally)", + "romanization": "bewegend", + "example_sentence_native": "Das war eine sehr bewegende Rede.", + "example_sentence_english": "That was a very moving speech.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15819 + }, + { + "word": "beweglich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "movable;agile;flexible", + "romanization": "beweglich", + "example_sentence_native": "Er ist sehr beweglich und kann leicht tanzen.", + "example_sentence_english": "He is very agile and can dance easily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15820 + }, + { + "word": "bezwingen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conquer;to overcome", + "romanization": "bezwingen", + "example_sentence_native": "Sie versuchte, ihre Angst zu bezwingen.", + "example_sentence_english": "She tried to overcome her fear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15821 + }, + { + "word": "bildlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "figurative;pictorial", + "romanization": "bildlich", + "example_sentence_native": "Er sprach in einem bildlichen Sinne.", + "example_sentence_english": "He spoke in a figurative sense.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15822 + }, + { + "word": "Bildnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "portrait;image", + "romanization": "Bildnis", + "example_sentence_native": "Das alte Bildnis hing im Flur.", + "example_sentence_english": "The old portrait hung in the hallway.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15823 + }, + { + "word": "Bildungseinrichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educational institution", + "romanization": "Bildungseinrichtung", + "example_sentence_native": "Die Universität ist eine wichtige Bildungseinrichtung.", + "example_sentence_english": "The university is an important educational institution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15824 + }, + { + "word": "Blickfeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "field of vision;line of sight", + "romanization": "Blickfeld", + "example_sentence_native": "Das Auto tauchte plötzlich in meinem Blickfeld auf.", + "example_sentence_english": "The car suddenly appeared in my field of vision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15826 + }, + { + "word": "Bohrung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drilling;bore;hole", + "romanization": "Bohrung", + "example_sentence_native": "Die Bohrung nach Öl war erfolgreich.", + "example_sentence_english": "The drilling for oil was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15827 + }, + { + "word": "bügeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to iron", + "romanization": "bügeln", + "example_sentence_native": "Ich muss noch meine Hemden bügeln.", + "example_sentence_english": "I still need to iron my shirts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15831 + }, + { + "word": "Cache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cache", + "romanization": "Cache", + "example_sentence_native": "Leere den Cache deines Browsers.", + "example_sentence_english": "Clear your browser's cache.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15832 + }, + { + "word": "Catering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catering", + "romanization": "Catering", + "example_sentence_native": "Das Catering für die Party war ausgezeichnet.", + "example_sentence_english": "The catering for the party was excellent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15833 + }, + { + "word": "Chain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chain (e.g.;supply chain;hotel chain)", + "romanization": "Chain", + "example_sentence_native": "Die Lieferkette (Supply Chain) ist komplex.", + "example_sentence_english": "The supply chain is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15834 + }, + { + "word": "Chemotherapie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemotherapy", + "romanization": "Chemotherapie", + "example_sentence_native": "Sie unterzieht sich einer Chemotherapie.", + "example_sentence_english": "She is undergoing chemotherapy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15835 + }, + { + "word": "Cobra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cobra", + "romanization": "Cobra", + "example_sentence_native": "Die Cobra ist eine giftige Schlange.", + "example_sentence_english": "The cobra is a venomous snake.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15836 + }, + { + "word": "Course", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "course (e.g.;language course;golf course)", + "romanization": "Course", + "example_sentence_native": "Ich belege einen Deutschkurs (German Course).", + "example_sentence_english": "I am taking a German course.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15838 + }, + { + "word": "Creed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creed;belief", + "romanization": "Creed", + "example_sentence_native": "Sein persönliches Creed war die Ehrlichkeit.", + "example_sentence_english": "His personal creed was honesty.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15839 + }, + { + "word": "Crossover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossover", + "romanization": "Crossover", + "example_sentence_native": "Der Crossover ist eine Mischung aus verschiedenen Genres.", + "example_sentence_english": "The crossover is a mix of different genres.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15840 + }, + { + "word": "dahingestellt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undecided;open to question", + "romanization": "dahingestellt", + "example_sentence_native": "Ob das stimmt, sei dahingestellt.", + "example_sentence_english": "Whether that is true remains to be seen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15841 + }, + { + "word": "Datenverarbeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data processing", + "romanization": "Datenverarbeitung", + "example_sentence_native": "Die Datenverarbeitung ist ein wichtiger Bereich in der Informatik.", + "example_sentence_english": "Data processing is an important field in computer science.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15842 + }, + { + "word": "deklarieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to declare", + "romanization": "deklarieren", + "example_sentence_native": "Sie müssen die Waren beim Zoll deklarieren.", + "example_sentence_english": "You must declare the goods at customs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15843 + }, + { + "word": "Diskrepanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrepancy", + "romanization": "Diskrepanz", + "example_sentence_native": "Es gibt eine Diskrepanz zwischen den beiden Berichten.", + "example_sentence_english": "There is a discrepancy between the two reports.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15844 + }, + { + "word": "Domino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domino", + "romanization": "Domino", + "example_sentence_native": "Wir spielten eine Runde Domino.", + "example_sentence_english": "We played a round of dominoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15845 + }, + { + "word": "Dramatik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drama;dramatic quality", + "romanization": "Dramatik", + "example_sentence_native": "Die Dramatik des Spiels war atemberaubend.", + "example_sentence_english": "The drama of the game was breathtaking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15846 + }, + { + "word": "Dress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jersey;kit (sports)", + "romanization": "Dress", + "example_sentence_native": "Der Spieler trug ein neues Dress.", + "example_sentence_english": "The player wore a new jersey.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15848 + }, + { + "word": "Drogenhandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug trafficking", + "romanization": "Drogenhandel", + "example_sentence_native": "Der Drogenhandel ist ein ernstes Problem.", + "example_sentence_english": "Drug trafficking is a serious problem.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15849 + }, + { + "word": "dummerweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foolishly;stupidly;unfortunately", + "romanization": "dummerweise", + "example_sentence_native": "Dummerweise habe ich meinen Schlüssel vergessen.", + "example_sentence_english": "Foolishly, I forgot my key.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 15851 + }, + { + "word": "Eheschliessung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marriage;wedding ceremony", + "romanization": "Eheschliessung", + "example_sentence_native": "Die Eheschliessung fand im Rathaus statt.", + "example_sentence_english": "The marriage ceremony took place in the town hall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15853 + }, + { + "word": "einatmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inhale;to breathe in", + "romanization": "einatmen", + "example_sentence_native": "Bitte tief einatmen.", + "example_sentence_english": "Please inhale deeply.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "atmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15854 + }, + { + "word": "einwechseln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to substitute (in sports)", + "romanization": "einwechseln", + "example_sentence_native": "Der Trainer wird einen neuen Spieler einwechseln.", + "example_sentence_english": "The coach will substitute a new player.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "wechseln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15855 + }, + { + "word": "einlösen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to redeem (a voucher;promise)", + "romanization": "einlösen", + "example_sentence_native": "Sie können den Gutschein im Geschäft einlösen.", + "example_sentence_english": "You can redeem the voucher in the store.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "lösen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15856 + }, + { + "word": "eitel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vain;conceited", + "romanization": "eitel", + "example_sentence_native": "Er ist sehr eitel und schaut oft in den Spiegel.", + "example_sentence_english": "He is very vain and often looks in the mirror.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15857 + }, + { + "word": "Endspurt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final sprint;home stretch", + "romanization": "Endspurt", + "example_sentence_native": "Wir sind im Endspurt des Projekts.", + "example_sentence_english": "We are in the final sprint of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15859 + }, + { + "word": "Energieeffizienz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy efficiency", + "romanization": "Energieeffizienz", + "example_sentence_native": "Die Energieeffizienz von Gebäuden ist wichtig für den Klimaschutz.", + "example_sentence_english": "The energy efficiency of buildings is important for climate protection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15860 + }, + { + "word": "entpuppen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn out to be;to emerge", + "romanization": "entpuppen", + "example_sentence_native": "Er entpuppte sich als wahrer Freund.", + "example_sentence_english": "He turned out to be a true friend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15861 + }, + { + "word": "entstammen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to originate from;to stem from", + "romanization": "entstammen", + "example_sentence_native": "Die Geschichte entstammt einer alten Legende.", + "example_sentence_english": "The story originates from an old legend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15862 + }, + { + "word": "Entstehungsgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "history of origin;genesis", + "romanization": "Entstehungsgeschichte", + "example_sentence_native": "Die Entstehungsgeschichte des Universums ist faszinierend.", + "example_sentence_english": "The history of the universe's origin is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15863 + }, + { + "word": "Enzyklopädie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encyclopedia", + "romanization": "Enzyklopädie", + "example_sentence_native": "Ich habe die Information in einer Enzyklopädie gefunden.", + "example_sentence_english": "I found the information in an encyclopedia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15864 + }, + { + "word": "Erz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ore", + "romanization": "Erz", + "example_sentence_native": "Das Erz wird in der Mine abgebaut.", + "example_sentence_english": "The ore is mined in the mine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15866 + }, + { + "word": "Excellence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excellence", + "romanization": "Excellence", + "example_sentence_native": "Das Unternehmen strebt nach Excellence in allen Bereichen.", + "example_sentence_english": "The company strives for excellence in all areas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15867 + }, + { + "word": "Fahrverbot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driving ban", + "romanization": "Fahrverbot", + "example_sentence_native": "Er bekam ein Fahrverbot für einen Monat.", + "example_sentence_english": "He received a driving ban for one month.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15868 + }, + { + "word": "Fallout", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fallout", + "romanization": "Fallout", + "example_sentence_native": "Der radioaktive Fallout war eine große Gefahr.", + "example_sentence_english": "The radioactive fallout was a great danger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15869 + }, + { + "word": "Feuerzeug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lighter", + "romanization": "Feuerzeug", + "example_sentence_native": "Hast du ein Feuerzeug für mich?", + "example_sentence_english": "Do you have a lighter for me?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15871 + }, + { + "word": "finster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dark;gloomy;sinister", + "romanization": "finster", + "example_sentence_native": "Es war eine finstere Nacht.", + "example_sentence_english": "It was a dark night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15872 + }, + { + "word": "fluchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to curse;to swear", + "romanization": "fluchen", + "example_sentence_native": "Er begann zu fluchen, als er den Fehler bemerkte.", + "example_sentence_english": "He started to curse when he noticed the mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15873 + }, + { + "word": "fokussieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to focus", + "romanization": "fokussieren", + "example_sentence_native": "Wir müssen uns auf die Hauptaufgabe fokussieren.", + "example_sentence_english": "We need to focus on the main task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15875 + }, + { + "word": "Fortbestand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continued existence;continuation", + "romanization": "Fortbestand", + "example_sentence_native": "Der Fortbestand des Unternehmens ist gesichert.", + "example_sentence_english": "The continued existence of the company is secured.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15878 + }, + { + "word": "Frame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame", + "romanization": "Frame", + "example_sentence_native": "Jeder Frame des Videos wurde einzeln bearbeitet.", + "example_sentence_english": "Each frame of the video was edited individually.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15879 + }, + { + "word": "Freizügigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freedom of movement", + "romanization": "Freizügigkeit", + "example_sentence_native": "Die Freizügigkeit ist ein Grundrecht in der EU.", + "example_sentence_english": "Freedom of movement is a fundamental right in the EU.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15881 + }, + { + "word": "Friedensvertrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peace treaty", + "romanization": "Friedensvertrag", + "example_sentence_native": "Nach dem Krieg wurde ein Friedensvertrag unterzeichnet.", + "example_sentence_english": "After the war, a peace treaty was signed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15882 + }, + { + "word": "gelblich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yellowish", + "romanization": "gelblich", + "example_sentence_native": "Das Licht hatte einen gelblichen Schein.", + "example_sentence_english": "The light had a yellowish glow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15886 + }, + { + "word": "genüsslich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enjoyable;with relish", + "romanization": "genüsslich", + "example_sentence_native": "Er aß das Stück Kuchen genüsslich.", + "example_sentence_english": "He ate the piece of cake with relish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15887 + }, + { + "word": "geschmacklos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasteless;tacky", + "romanization": "geschmacklos", + "example_sentence_native": "Der Witz war wirklich geschmacklos.", + "example_sentence_english": "The joke was really tasteless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15888 + }, + { + "word": "gleichbedeutend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synonymous;equivalent", + "romanization": "gleichbedeutend", + "example_sentence_native": "Diese beiden Begriffe sind gleichbedeutend.", + "example_sentence_english": "These two terms are synonymous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15890 + }, + { + "word": "gläsern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glass (adj.);glassy", + "romanization": "gläsern", + "example_sentence_native": "Sie trank aus einem gläsernen Becher.", + "example_sentence_english": "She drank from a glass cup.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15891 + }, + { + "word": "grenzenlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boundless;limitless", + "romanization": "grenzenlos", + "example_sentence_native": "Ihre Fantasie ist grenzenlos.", + "example_sentence_english": "Her imagination is boundless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15893 + }, + { + "word": "Gruft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crypt;vault", + "romanization": "Gruft", + "example_sentence_native": "Die alte Gruft war dunkel und feucht.", + "example_sentence_english": "The old crypt was dark and damp.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15894 + }, + { + "word": "Grundsicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic income support", + "romanization": "Grundsicherung", + "example_sentence_native": "Die Grundsicherung soll ein menschenwürdiges Existenzminimum sichern.", + "example_sentence_english": "Basic income support is intended to secure a dignified minimum subsistence level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15895 + }, + { + "word": "Gym", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gym", + "romanization": "Gym", + "example_sentence_native": "Ich gehe dreimal pro Woche ins Gym.", + "example_sentence_english": "I go to the gym three times a week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15896 + }, + { + "word": "Halo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halo", + "romanization": "Halo", + "example_sentence_native": "Um den Mond bildete sich ein leuchtender Halo.", + "example_sentence_english": "A luminous halo formed around the moon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15898 + }, + { + "word": "Handlungsbedarf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "need for action", + "romanization": "Handlungsbedarf", + "example_sentence_native": "Es besteht dringender Handlungsbedarf in dieser Angelegenheit.", + "example_sentence_english": "There is an urgent need for action in this matter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15899 + }, + { + "word": "Header", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "header", + "romanization": "Header", + "example_sentence_native": "Der Header der Webseite enthält das Logo.", + "example_sentence_english": "The header of the website contains the logo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15902 + }, + { + "word": "hegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harbor;to cherish", + "romanization": "hegen", + "example_sentence_native": "Er hegt große Hoffnungen für die Zukunft.", + "example_sentence_english": "He harbors great hopes for the future.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15903 + }, + { + "word": "heikel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicate;tricky;sensitive", + "romanization": "heikel", + "example_sentence_native": "Das ist eine heikle Situation.", + "example_sentence_english": "That is a delicate situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15905 + }, + { + "word": "Heimreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journey home;return journey", + "romanization": "Heimreise", + "example_sentence_native": "Die Heimreise dauerte länger als erwartet.", + "example_sentence_english": "The journey home took longer than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15906 + }, + { + "word": "Hinrunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first half (of a season;round)", + "romanization": "Hinrunde", + "example_sentence_native": "Die Mannschaft spielte eine starke Hinrunde.", + "example_sentence_english": "The team played a strong first half of the season.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15908 + }, + { + "word": "Hinterbliebener", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "survivor;bereaved person", + "romanization": "Hinterbliebener", + "example_sentence_native": "Die Hinterbliebenen erhielten Beileidsbekundungen.", + "example_sentence_english": "The bereaved received condolences.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15909 + }, + { + "word": "Hook", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hook", + "romanization": "Hook", + "example_sentence_native": "Der Song hat einen eingängigen Hook.", + "example_sentence_english": "The song has a catchy hook.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15911 + }, + { + "word": "Hopfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hops", + "romanization": "Hopfen", + "example_sentence_native": "Bier wird aus Wasser, Malz, Hopfen und Hefe gebraut.", + "example_sentence_english": "Beer is brewed from water, malt, hops, and yeast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15912 + }, + { + "word": "humanistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanistic", + "romanization": "humanistisch", + "example_sentence_native": "Er vertritt eine humanistische Weltanschauung.", + "example_sentence_english": "He represents a humanistic worldview.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15913 + }, + { + "word": "hysterisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hysterical", + "romanization": "hysterisch", + "example_sentence_native": "Sie reagierte hysterisch auf die Nachricht.", + "example_sentence_english": "She reacted hysterically to the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15914 + }, + { + "word": "Höhenmeter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertical meters;meters of altitude", + "romanization": "Höhenmeter", + "example_sentence_native": "Die Wanderung hatte über tausend Höhenmeter.", + "example_sentence_english": "The hike had over a thousand vertical meters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15915 + }, + { + "word": "Icon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icon", + "romanization": "Icon", + "example_sentence_native": "Klicke auf das Icon, um die Anwendung zu starten.", + "example_sentence_english": "Click on the icon to start the application.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15916 + }, + { + "word": "Illustrierte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustrated magazine", + "romanization": "Illustrierte", + "example_sentence_native": "Sie liest gerne Illustrierte in ihrer Freizeit.", + "example_sentence_english": "She likes to read illustrated magazines in her free time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15917 + }, + { + "word": "Industriegebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industrial area", + "romanization": "Industriegebiet", + "example_sentence_native": "Das neue Werk wird im Industriegebiet gebaut.", + "example_sentence_english": "The new factory will be built in the industrial area.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15918 + }, + { + "word": "Intellekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellect", + "romanization": "Intellekt", + "example_sentence_native": "Er besitzt einen scharfen Intellekt.", + "example_sentence_english": "He possesses a sharp intellect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15919 + }, + { + "word": "Intrige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrigue;plot", + "romanization": "Intrige", + "example_sentence_native": "Die Intrige wurde aufgedeckt.", + "example_sentence_english": "The plot was uncovered.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15920 + }, + { + "word": "Iraner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iranian (person)", + "romanization": "Iraner", + "example_sentence_native": "Er ist ein Iraner.", + "example_sentence_english": "He is an Iranian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15921 + }, + { + "word": "Juwel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jewel", + "romanization": "Juwel", + "example_sentence_native": "Das Juwel glänzte im Licht.", + "example_sentence_english": "The jewel sparkled in the light.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15923 + }, + { + "word": "Kaff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hick town;backwater", + "romanization": "Kaff", + "example_sentence_native": "Er lebt in einem kleinen Kaff.", + "example_sentence_english": "He lives in a small hick town.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15925 + }, + { + "word": "Kanzel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulpit", + "romanization": "Kanzel", + "example_sentence_native": "Der Priester sprach von der Kanzel.", + "example_sentence_english": "The priest spoke from the pulpit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15926 + }, + { + "word": "Kartell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cartel", + "romanization": "Kartell", + "example_sentence_native": "Das Ölkartell kontrolliert die Preise.", + "example_sentence_english": "The oil cartel controls the prices.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15927 + }, + { + "word": "Kaufvertrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purchase agreement;sales contract", + "romanization": "Kaufvertrag", + "example_sentence_native": "Wir haben den Kaufvertrag unterschrieben.", + "example_sentence_english": "We signed the purchase agreement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15928 + }, + { + "word": "Klassenkamerad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "classmate (male)", + "romanization": "Klassenkamerad", + "example_sentence_native": "Mein Klassenkamerad hilft mir.", + "example_sentence_english": "My classmate helps me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15933 + }, + { + "word": "Klassifizierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "classification", + "romanization": "Klassifizierung", + "example_sentence_native": "Die Klassifizierung der Daten ist wichtig.", + "example_sentence_english": "The classification of the data is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15934 + }, + { + "word": "Knopfdruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "push of a button", + "romanization": "Knopfdruck", + "example_sentence_native": "Das Gerät funktioniert auf Knopfdruck.", + "example_sentence_english": "The device works at the push of a button.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15935 + }, + { + "word": "Kripo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal police (abbr.)", + "romanization": "Kripo", + "example_sentence_native": "Die Kripo ermittelt in dem Fall.", + "example_sentence_english": "The criminal police are investigating the case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15936 + }, + { + "word": "Landesebene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state level;federal state level", + "romanization": "Landesebene", + "example_sentence_native": "Die Entscheidung wurde auf Landesebene getroffen.", + "example_sentence_english": "The decision was made at the state level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15939 + }, + { + "word": "Leitungswasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tap water", + "romanization": "Leitungswasser", + "example_sentence_native": "Ist das Leitungswasser trinkbar?", + "example_sentence_english": "Is the tap water drinkable?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15941 + }, + { + "word": "Liberalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalization", + "romanization": "Liberalisierung", + "example_sentence_native": "Die Liberalisierung des Marktes wurde diskutiert.", + "example_sentence_english": "The liberalization of the market was discussed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15943 + }, + { + "word": "Lokomotive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locomotive", + "romanization": "Lokomotive", + "example_sentence_native": "Die alte Lokomotive dampfte durch die Landschaft.", + "example_sentence_english": "The old locomotive steamed through the landscape.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15944 + }, + { + "word": "Lover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lover", + "romanization": "Lover", + "example_sentence_native": "Sie sprach über ihren neuen Lover.", + "example_sentence_english": "She talked about her new lover.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15945 + }, + { + "word": "lutschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suck", + "romanization": "lutschen", + "example_sentence_native": "Das Kind lutscht am Lutscher.", + "example_sentence_english": "The child is sucking on the lollipop.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15946 + }, + { + "word": "Maestro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maestro", + "romanization": "Maestro", + "example_sentence_native": "Der Maestro dirigierte das Orchester.", + "example_sentence_english": "The maestro conducted the orchestra.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15948 + }, + { + "word": "Mahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meal", + "romanization": "Mahl", + "example_sentence_native": "Wir hatten ein gutes Mahl zusammen.", + "example_sentence_english": "We had a good meal together.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15949 + }, + { + "word": "mitkommen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come along", + "romanization": "mitkommen", + "example_sentence_native": "Möchtest du mitkommen?", + "example_sentence_english": "Do you want to come along?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15955 + }, + { + "word": "Mittelfinger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle finger", + "romanization": "Mittelfinger", + "example_sentence_native": "Er zeigte auf seinen Mittelfinger.", + "example_sentence_english": "He pointed at his middle finger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15956 + }, + { + "word": "nachmachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to imitate", + "romanization": "nachmachen", + "example_sentence_native": "Kannst du das nachmachen?", + "example_sentence_english": "Can you imitate that?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15958 + }, + { + "word": "Nana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandma", + "romanization": "Nana", + "example_sentence_native": "Meine Nana backt die besten Kuchen.", + "example_sentence_english": "My grandma bakes the best cakes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15959 + }, + { + "word": "Nordseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "north side", + "romanization": "Nordseite", + "example_sentence_native": "Die Nordseite des Hauses ist kälter.", + "example_sentence_english": "The north side of the house is colder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15961 + }, + { + "word": "Nuance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nuance", + "romanization": "Nuance", + "example_sentence_native": "Er verstand die feine Nuance des Arguments.", + "example_sentence_english": "He understood the subtle nuance of the argument.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15964 + }, + { + "word": "panisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panicked", + "romanization": "panisch", + "example_sentence_native": "Sie reagierte panisch auf die Nachricht.", + "example_sentence_english": "She reacted in a panic to the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15967 + }, + { + "word": "Paste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paste", + "romanization": "Paste", + "example_sentence_native": "Ich brauche etwas Zahnpasta.", + "example_sentence_english": "I need some toothpaste.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15968 + }, + { + "word": "Pathos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathos", + "romanization": "Pathos", + "example_sentence_native": "Die Rede war voller Pathos.", + "example_sentence_english": "The speech was full of pathos.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15969 + }, + { + "word": "Plage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plague", + "romanization": "Plage", + "example_sentence_native": "Die Mücken sind eine echte Plage.", + "example_sentence_english": "The mosquitoes are a real nuisance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15974 + }, + { + "word": "plagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torment", + "romanization": "plagen", + "example_sentence_native": "Sorgen plagen ihn.", + "example_sentence_english": "Worries torment him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15975 + }, + { + "word": "prall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plump", + "romanization": "prall", + "example_sentence_native": "Die Beeren waren prall und saftig.", + "example_sentence_english": "The berries were plump and juicy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15977 + }, + { + "word": "Pranger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pillory", + "romanization": "Pranger", + "example_sentence_native": "Er wurde an den Pranger gestellt.", + "example_sentence_english": "He was put in the pillory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15978 + }, + { + "word": "promovieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to do a doctorate", + "romanization": "promovieren", + "example_sentence_native": "Sie möchte in Geschichte promovieren.", + "example_sentence_english": "She wants to do a doctorate in history.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15980 + }, + { + "word": "Präferenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preference", + "romanization": "Präferenz", + "example_sentence_native": "Er hat eine klare Präferenz für Kaffee.", + "example_sentence_english": "He has a clear preference for coffee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15981 + }, + { + "word": "Puffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buffer", + "romanization": "Puffer", + "example_sentence_native": "Wir brauchen einen Puffer für unerwartete Ausgaben.", + "example_sentence_english": "We need a buffer for unexpected expenses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15982 + }, + { + "word": "Raubüberfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robbery", + "romanization": "Raubüberfall", + "example_sentence_native": "Die Polizei ermittelt nach einem Raubüberfall auf eine Bank.", + "example_sentence_english": "The police are investigating after a bank robbery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15983 + }, + { + "word": "rausfinden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find out", + "romanization": "rausfinden", + "example_sentence_native": "Ich muss rausfinden, wie das funktioniert.", + "example_sentence_english": "I need to find out how that works.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15984 + }, + { + "word": "Rechtsaussen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right-winger", + "romanization": "Rechtsaussen", + "example_sentence_native": "Er spielt als Rechtsaussen in der Mannschaft.", + "example_sentence_english": "He plays as a right-winger in the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15985 + }, + { + "word": "redlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honest", + "romanization": "redlich", + "example_sentence_native": "Er ist ein redlicher Mann.", + "example_sentence_english": "He is an honest man.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15986 + }, + { + "word": "reinziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull in;to consume (informal)", + "romanization": "reinziehen", + "example_sentence_native": "Er hat sich den ganzen Film reingezogen.", + "example_sentence_english": "He watched the whole movie.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rein", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15988 + }, + { + "word": "rekrutieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recruit", + "romanization": "rekrutieren", + "example_sentence_native": "Das Unternehmen möchte neue Mitarbeiter rekrutieren.", + "example_sentence_english": "The company wants to recruit new employees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 15989 + }, + { + "word": "Rettungswagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambulance", + "romanization": "Rettungswagen", + "example_sentence_native": "Der Rettungswagen ist auf dem Weg zum Unfallort.", + "example_sentence_english": "The ambulance is on its way to the accident site.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15990 + }, + { + "word": "rhetorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhetorical", + "romanization": "rhetorisch", + "example_sentence_native": "Das war nur eine rhetorische Frage.", + "example_sentence_english": "That was just a rhetorical question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 15991 + }, + { + "word": "Rockmusik", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rock music", + "romanization": "Rockmusik", + "example_sentence_native": "Sie hört gerne Rockmusik.", + "example_sentence_english": "She likes to listen to rock music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15992 + }, + { + "word": "Rosine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raisin", + "romanization": "Rosine", + "example_sentence_native": "Ich mag Rosinen im Müsli.", + "example_sentence_english": "I like raisins in my muesli.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15993 + }, + { + "word": "Rutsche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slide", + "romanization": "Rutsche", + "example_sentence_native": "Die Kinder spielen auf der Rutsche.", + "example_sentence_english": "The children are playing on the slide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15996 + }, + { + "word": "Saat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seed", + "romanization": "Saat", + "example_sentence_native": "Die Saat geht auf.", + "example_sentence_english": "The seeds are sprouting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15997 + }, + { + "word": "Sachlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "objectivity", + "romanization": "Sachlichkeit", + "example_sentence_native": "Er schätzte ihre Sachlichkeit in der Diskussion.", + "example_sentence_english": "He appreciated her objectivity in the discussion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15998 + }, + { + "word": "Schadstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pollutant", + "romanization": "Schadstoff", + "example_sentence_native": "Die Fabrik reduziert ihre Schadstoffemissionen.", + "example_sentence_english": "The factory is reducing its pollutant emissions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 15999 + }, + { + "word": "Schatzmeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treasurer", + "romanization": "Schatzmeister", + "example_sentence_native": "Der Schatzmeister verwaltet die Finanzen des Vereins.", + "example_sentence_english": "The treasurer manages the club's finances.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16000 + }, + { + "word": "Scherer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shearer", + "romanization": "Scherer", + "example_sentence_native": "Der Scherer schnitt die Wolle der Schafe.", + "example_sentence_english": "The shearer cut the sheep's wool.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16001 + }, + { + "word": "schlapp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limp;weak;exhausted", + "romanization": "schlapp", + "example_sentence_native": "Nach dem langen Lauf fühlte er sich ganz schlapp.", + "example_sentence_english": "After the long run, he felt completely exhausted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16002 + }, + { + "word": "Schleim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slime;mucus", + "romanization": "Schleim", + "example_sentence_native": "Der Frosch war mit Schleim bedeckt.", + "example_sentence_english": "The frog was covered in slime.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16003 + }, + { + "word": "schränken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to limit;to restrict", + "romanization": "schränken", + "example_sentence_native": "Man sollte die Ausgaben nicht zu stark schränken.", + "example_sentence_english": "One should not limit expenses too much.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16004 + }, + { + "word": "Schulleitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school administration", + "romanization": "Schulleitung", + "example_sentence_native": "Die Schulleitung hat eine neue Regel eingeführt.", + "example_sentence_english": "The school administration introduced a new rule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16005 + }, + { + "word": "Schwachstelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weak point;vulnerability", + "romanization": "Schwachstelle", + "example_sentence_native": "Jedes System hat seine Schwachstellen.", + "example_sentence_english": "Every system has its weak points.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16006 + }, + { + "word": "schwänzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to skip (school;work);to play truant", + "romanization": "schwänzen", + "example_sentence_native": "Er hat heute die Schule geschwänzt.", + "example_sentence_english": "He skipped school today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16007 + }, + { + "word": "Schädigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damage;harm;injury", + "romanization": "Schädigung", + "example_sentence_native": "Die Schädigung der Umwelt ist ein ernstes Problem.", + "example_sentence_english": "Environmental damage is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16008 + }, + { + "word": "Section", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "section", + "romanization": "Section", + "example_sentence_native": "Bitte lesen Sie die nächste Section des Berichts.", + "example_sentence_english": "Please read the next section of the report.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16009 + }, + { + "word": "Shake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shake (e.g.;milkshake)", + "romanization": "Shake", + "example_sentence_native": "Ich hätte gerne einen Erdbeer-Shake.", + "example_sentence_english": "I would like a strawberry shake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16011 + }, + { + "word": "siegreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victorious", + "romanization": "siegreich", + "example_sentence_native": "Die Mannschaft kehrte siegreich nach Hause zurück.", + "example_sentence_english": "The team returned home victorious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16013 + }, + { + "word": "Solution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solution (e.g.;chemical solution)", + "romanization": "Solution", + "example_sentence_native": "Die chemische Solution muss vorsichtig gehandhabt werden.", + "example_sentence_english": "The chemical solution must be handled carefully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16014 + }, + { + "word": "Staatsarchiv", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state archive", + "romanization": "Staatsarchiv", + "example_sentence_native": "Er forschte im Staatsarchiv nach alten Dokumenten.", + "example_sentence_english": "He researched old documents in the state archive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16015 + }, + { + "word": "Stadtmauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "city wall", + "romanization": "Stadtmauer", + "example_sentence_native": "Die alte Stadtmauer umgibt noch immer den historischen Kern.", + "example_sentence_english": "The old city wall still surrounds the historic core.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16016 + }, + { + "word": "Standesamt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registry office;civil registry", + "romanization": "Standesamt", + "example_sentence_native": "Sie haben sich auf dem Standesamt das Ja-Wort gegeben.", + "example_sentence_english": "They said \"I do\" at the registry office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16017 + }, + { + "word": "Stiefvater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepfather", + "romanization": "Stiefvater", + "example_sentence_native": "Mein Stiefvater ist sehr nett.", + "example_sentence_english": "My stepfather is very kind.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16019 + }, + { + "word": "Syntax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "syntax", + "romanization": "Syntax", + "example_sentence_native": "Die Syntax eines Satzes ist wichtig für die Verständlichkeit.", + "example_sentence_english": "The syntax of a sentence is important for comprehensibility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16021 + }, + { + "word": "Tatverdächtiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspect (of a crime)", + "romanization": "Tatverdächtiger", + "example_sentence_native": "Der Tatverdächtige wurde von der Polizei befragt.", + "example_sentence_english": "The suspect was questioned by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16022 + }, + { + "word": "Teaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaser", + "romanization": "Teaser", + "example_sentence_native": "Der Film-Teaser machte neugierig auf den ganzen Film.", + "example_sentence_english": "The movie teaser made people curious about the whole film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16023 + }, + { + "word": "Telefonbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "telephone directory", + "romanization": "Telefonbuch", + "example_sentence_native": "Ich habe seine Nummer im Telefonbuch gefunden.", + "example_sentence_english": "I found his number in the phone book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16024 + }, + { + "word": "Tellerrand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rim of a plate", + "romanization": "Tellerrand", + "example_sentence_native": "Der Tellerrand war mit einem schönen Muster verziert.", + "example_sentence_english": "The rim of the plate was decorated with a beautiful pattern.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16025 + }, + { + "word": "Trance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trance", + "romanization": "Trance", + "example_sentence_native": "Sie fiel in eine tiefe Trance.", + "example_sentence_english": "She fell into a deep trance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16030 + }, + { + "word": "Umlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "levy;charge;contribution", + "romanization": "Umlage", + "example_sentence_native": "Die monatliche Umlage für die Heizkosten ist gestiegen.", + "example_sentence_english": "The monthly charge for heating costs has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16033 + }, + { + "word": "unbezahlbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priceless;invaluable", + "romanization": "unbezahlbar", + "example_sentence_native": "Seine Hilfe war unbezahlbar.", + "example_sentence_english": "His help was priceless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16034 + }, + { + "word": "unermüdlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tireless;indefatigable", + "romanization": "unermüdlich", + "example_sentence_native": "Sie arbeitet unermüdlich an ihrem Projekt.", + "example_sentence_english": "She works tirelessly on her project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16035 + }, + { + "word": "Universitätsbibliothek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university library", + "romanization": "Universitätsbibliothek", + "example_sentence_native": "Ich verbringe viel Zeit in der Universitätsbibliothek.", + "example_sentence_english": "I spend a lot of time in the university library.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16036 + }, + { + "word": "unlängst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recently;not long ago", + "romanization": "unlängst", + "example_sentence_native": "Unlängst habe ich ein interessantes Buch gelesen.", + "example_sentence_english": "Recently, I read an interesting book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 16037 + }, + { + "word": "unmissverständlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unambiguous;unequivocal", + "romanization": "unmissverständlich", + "example_sentence_native": "Seine Botschaft war unmissverständlich.", + "example_sentence_english": "His message was unambiguous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16038 + }, + { + "word": "Unterbewusstsein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subconscious", + "romanization": "Unterbewusstsein", + "example_sentence_native": "Viele unserer Entscheidungen werden vom Unterbewusstsein beeinflusst.", + "example_sentence_english": "Many of our decisions are influenced by the subconscious.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16039 + }, + { + "word": "Unterstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insinuation", + "romanization": "Unterstellung", + "example_sentence_native": "Seine Unterstellung war beleidigend.", + "example_sentence_english": "His insinuation was offensive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16040 + }, + { + "word": "Veranda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veranda", + "romanization": "Veranda", + "example_sentence_native": "Wir saßen auf der Veranda und tranken Kaffee.", + "example_sentence_english": "We sat on the veranda and drank coffee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16045 + }, + { + "word": "verblüfft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonished", + "romanization": "verblüfft", + "example_sentence_native": "Er war verblüfft über die Nachricht.", + "example_sentence_english": "He was astonished by the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16046 + }, + { + "word": "verheerend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devastating", + "romanization": "verheerend", + "example_sentence_native": "Der Sturm hatte verheerende Auswirkungen.", + "example_sentence_english": "The storm had devastating effects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16047 + }, + { + "word": "verhören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interrogate", + "romanization": "verhören", + "example_sentence_native": "Die Polizei wird den Zeugen verhören.", + "example_sentence_english": "The police will interrogate the witness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16048 + }, + { + "word": "verirren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get lost", + "romanization": "verirren", + "example_sentence_native": "Wir haben uns im Wald verirrt.", + "example_sentence_english": "We got lost in the forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16049 + }, + { + "word": "Verkürzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortening", + "romanization": "Verkürzung", + "example_sentence_native": "Die Verkürzung der Arbeitszeit wurde beschlossen.", + "example_sentence_english": "The reduction of working hours was decided.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16050 + }, + { + "word": "Vermehrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiplication", + "romanization": "Vermehrung", + "example_sentence_native": "Die Vermehrung der Kaninchen war enorm.", + "example_sentence_english": "The reproduction of the rabbits was enormous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16051 + }, + { + "word": "verpflichtend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligatory", + "romanization": "verpflichtend", + "example_sentence_native": "Die Teilnahme ist verpflichtend.", + "example_sentence_english": "Participation is obligatory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16052 + }, + { + "word": "verstricken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to entangle", + "romanization": "verstricken", + "example_sentence_native": "Er hat sich in Lügen verstrickt.", + "example_sentence_english": "He got entangled in lies.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16053 + }, + { + "word": "verwachsen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grow together", + "romanization": "verwachsen", + "example_sentence_native": "Die Wunde ist gut verwachsen.", + "example_sentence_english": "The wound has healed well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16054 + }, + { + "word": "vorhergehend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preceding", + "romanization": "vorhergehend", + "example_sentence_native": "Der vorhergehende Absatz war wichtig.", + "example_sentence_english": "The preceding paragraph was important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16057 + }, + { + "word": "vorherrschend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predominant", + "romanization": "vorherrschend", + "example_sentence_native": "Die vorherrschende Meinung ist, dass es regnen wird.", + "example_sentence_english": "The prevailing opinion is that it will rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16058 + }, + { + "word": "wackeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wobble", + "romanization": "wackeln", + "example_sentence_native": "Der Tisch wackelt.", + "example_sentence_english": "The table wobbles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16059 + }, + { + "word": "Wahlsieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election victory", + "romanization": "Wahlsieg", + "example_sentence_native": "Der Wahlsieg der Partei war überraschend.", + "example_sentence_english": "The party's election victory was surprising.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16060 + }, + { + "word": "Weinbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viticulture", + "romanization": "Weinbau", + "example_sentence_native": "Der Weinbau hat in dieser Region eine lange Tradition.", + "example_sentence_english": "Viticulture has a long tradition in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16061 + }, + { + "word": "weinend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crying", + "romanization": "weinend", + "example_sentence_native": "Das weinende Kind wurde von seiner Mutter getröstet.", + "example_sentence_english": "The crying child was comforted by its mother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16062 + }, + { + "word": "Weisswein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "white wine", + "romanization": "Weisswein", + "example_sentence_native": "Möchten Sie lieber Rotwein oder Weisswein?", + "example_sentence_english": "Would you prefer red wine or white wine?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16063 + }, + { + "word": "widerfahren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to happen to;to befall", + "romanization": "widerfahren", + "example_sentence_native": "Ihm ist großes Unrecht widerfahren.", + "example_sentence_english": "A great injustice has befallen him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16065 + }, + { + "word": "wohlgemerkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mind you;mark my words", + "romanization": "wohlgemerkt", + "example_sentence_native": "Er hat es versprochen, wohlgemerkt, er hat es versprochen.", + "example_sentence_english": "He promised it, mind you, he promised it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 16066 + }, + { + "word": "wohlwollend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benevolent;well-meaning", + "romanization": "wohlwollend", + "example_sentence_native": "Sie hörte mit einem wohlwollenden Lächeln zu.", + "example_sentence_english": "She listened with a benevolent smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16067 + }, + { + "word": "Zahnpasta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toothpaste", + "romanization": "Zahnpasta", + "example_sentence_native": "Ich brauche neue Zahnpasta.", + "example_sentence_english": "I need new toothpaste.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16068 + }, + { + "word": "Zander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pike-perch;zander", + "romanization": "Zander", + "example_sentence_native": "Zum Abendessen gab es gebratenen Zander.", + "example_sentence_english": "For dinner, there was fried pike-perch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16069 + }, + { + "word": "Zinn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tin", + "romanization": "Zinn", + "example_sentence_native": "Das Dach war aus Zinn gefertigt.", + "example_sentence_english": "The roof was made of tin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16070 + }, + { + "word": "Zucchini", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zucchini", + "romanization": "Zucchini", + "example_sentence_native": "Wir haben frische Zucchini aus dem Garten.", + "example_sentence_english": "We have fresh zucchini from the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16071 + }, + { + "word": "zugestehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concede;to grant;to admit", + "romanization": "zugestehen", + "example_sentence_native": "Ich muss dir zugestehen, dass du Recht hast.", + "example_sentence_english": "I have to concede to you that you are right.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "gestehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16072 + }, + { + "word": "Zustandekommen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "realization;coming about;conclusion", + "romanization": "Zustandekommen", + "example_sentence_native": "Das Zustandekommen des Vertrages war schwierig.", + "example_sentence_english": "The conclusion of the contract was difficult.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16073 + }, + { + "word": "Zählung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "count;counting;census", + "romanization": "Zählung", + "example_sentence_native": "Die Zählung der Stimmen dauerte die ganze Nacht.", + "example_sentence_english": "The counting of the votes lasted all night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16074 + }, + { + "word": "allererst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very first;first and foremost", + "romanization": "allererst", + "example_sentence_native": "Das ist meine allererste Reise ins Ausland.", + "example_sentence_english": "This is my very first trip abroad.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16076 + }, + { + "word": "Altersheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing home;old people's home", + "romanization": "Altersheim", + "example_sentence_native": "Meine Großmutter lebt in einem Altersheim.", + "example_sentence_english": "My grandmother lives in a nursing home.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16077 + }, + { + "word": "anfallend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accruing;arising;incidental", + "romanization": "anfallend", + "example_sentence_native": "Wir müssen die anfallenden Kosten berücksichtigen.", + "example_sentence_english": "We must consider the accruing costs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16078 + }, + { + "word": "angepasst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adapted;adjusted;appropriate", + "romanization": "angepasst", + "example_sentence_native": "Die Software wurde an die neuen Anforderungen angepasst.", + "example_sentence_english": "The software was adapted to the new requirements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16079 + }, + { + "word": "ansprechend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appealing", + "romanization": "ansprechend", + "example_sentence_native": "Das Design ist sehr ansprechend.", + "example_sentence_english": "The design is very appealing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16080 + }, + { + "word": "Arie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aria", + "romanization": "Arie", + "example_sentence_native": "Die Sopranistin sang eine wunderschöne Arie.", + "example_sentence_english": "The soprano sang a beautiful aria.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16081 + }, + { + "word": "Asset", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asset", + "romanization": "Asset", + "example_sentence_native": "Das Unternehmen verfügt über viele digitale Assets.", + "example_sentence_english": "The company possesses many digital assets.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16083 + }, + { + "word": "Asta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "student union", + "romanization": "Asta", + "example_sentence_native": "Der Asta organisiert viele Veranstaltungen für Studenten.", + "example_sentence_english": "The student union organizes many events for students.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16084 + }, + { + "word": "auffangen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch", + "romanization": "auffangen", + "example_sentence_native": "Er musste den Ball auffangen.", + "example_sentence_english": "He had to catch the ball.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "fangen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16085 + }, + { + "word": "ausgestellt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibited", + "romanization": "ausgestellt", + "example_sentence_native": "Die Kunstwerke sind in der Galerie ausgestellt.", + "example_sentence_english": "The artworks are exhibited in the gallery.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16086 + }, + { + "word": "bedingungslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconditional", + "romanization": "bedingungslos", + "example_sentence_native": "Sie gab ihm ihre bedingungslose Liebe.", + "example_sentence_english": "She gave him her unconditional love.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16091 + }, + { + "word": "benachrichtigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notify", + "romanization": "benachrichtigen", + "example_sentence_native": "Bitte benachrichtigen Sie mich, wenn Sie ankommen.", + "example_sentence_english": "Please notify me when you arrive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16092 + }, + { + "word": "Bescheinigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certificate", + "romanization": "Bescheinigung", + "example_sentence_native": "Sie benötigen eine Bescheinigung für die Reise.", + "example_sentence_english": "You need a certificate for the trip.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16093 + }, + { + "word": "Bevölkerungsgruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "population group", + "romanization": "Bevölkerungsgruppe", + "example_sentence_native": "Die Studie konzentrierte sich auf eine bestimmte Bevölkerungsgruppe.", + "example_sentence_english": "The study focused on a specific population group.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16094 + }, + { + "word": "bewerkstelligen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to accomplish", + "romanization": "bewerkstelligen", + "example_sentence_native": "Er konnte die Aufgabe erfolgreich bewerkstelligen.", + "example_sentence_english": "He was able to successfully accomplish the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16095 + }, + { + "word": "Böller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firecracker", + "romanization": "Böller", + "example_sentence_native": "Zu Silvester wurden viele Böller gezündet.", + "example_sentence_english": "Many firecrackers were set off on New Year's Eve.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16096 + }, + { + "word": "Chauffeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chauffeur", + "romanization": "Chauffeur", + "example_sentence_native": "Der Chauffeur wartete vor dem Hotel.", + "example_sentence_english": "The chauffeur waited in front of the hotel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16099 + }, + { + "word": "chronologisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronological", + "romanization": "chronologisch", + "example_sentence_native": "Die Ereignisse sind chronologisch geordnet.", + "example_sentence_english": "The events are arranged chronologically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16100 + }, + { + "word": "Departement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "department", + "romanization": "Departement", + "example_sentence_native": "Er arbeitet im Departement für Bildung.", + "example_sentence_english": "He works in the department for education.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16107 + }, + { + "word": "Diva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diva", + "romanization": "Diva", + "example_sentence_native": "Sie ist eine echte Diva auf der Bühne.", + "example_sentence_english": "She is a real diva on stage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16110 + }, + { + "word": "Einfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idea;notion;inspiration", + "romanization": "Einfall", + "example_sentence_native": "Das war ein brillanter Einfall!", + "example_sentence_english": "That was a brilliant idea!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16115 + }, + { + "word": "einflussreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influential", + "romanization": "einflussreich", + "example_sentence_native": "Sie ist eine sehr einflussreiche Person.", + "example_sentence_english": "She is a very influential person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16116 + }, + { + "word": "einfordern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demand;to claim;to exact", + "romanization": "einfordern", + "example_sentence_native": "Er wird sein Recht einfordern.", + "example_sentence_english": "He will demand his right.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "fordern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16117 + }, + { + "word": "einjährig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one-year;annual", + "romanization": "einjährig", + "example_sentence_native": "Das ist eine einjährige Pflanze.", + "example_sentence_english": "This is an annual plant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16118 + }, + { + "word": "Elan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enthusiasm;verve;drive", + "romanization": "Elan", + "example_sentence_native": "Er ging mit großem Elan an die Arbeit.", + "example_sentence_english": "He approached the work with great enthusiasm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16119 + }, + { + "word": "Elfenbein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ivory", + "romanization": "Elfenbein", + "example_sentence_native": "Das Elfenbein ist sehr wertvoll.", + "example_sentence_english": "The ivory is very valuable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16120 + }, + { + "word": "Emir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emir", + "romanization": "Emir", + "example_sentence_native": "Der Emir regiert das Land.", + "example_sentence_english": "The emir rules the country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16122 + }, + { + "word": "Endung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ending (grammatical)", + "romanization": "Endung", + "example_sentence_native": "Die Endung des Verbs ändert sich.", + "example_sentence_english": "The ending of the verb changes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16123 + }, + { + "word": "Erlöser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redeemer;savior", + "romanization": "Erlöser", + "example_sentence_native": "Viele glauben an einen Erlöser.", + "example_sentence_english": "Many believe in a redeemer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16124 + }, + { + "word": "erworben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquired;obtained", + "romanization": "erworben", + "example_sentence_native": "Das ist ein erworbenes Recht.", + "example_sentence_english": "That is an acquired right.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16125 + }, + { + "word": "Europapokal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "European Cup", + "romanization": "Europapokal", + "example_sentence_native": "Sie haben den Europapokal gewonnen.", + "example_sentence_english": "They won the European Cup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16126 + }, + { + "word": "fernhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to keep away", + "romanization": "fernhalten", + "example_sentence_native": "Bitte halten Sie sich fern.", + "example_sentence_english": "Please keep away.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fern", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16127 + }, + { + "word": "File", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "file", + "romanization": "File", + "example_sentence_native": "Speichern Sie das File auf dem Desktop.", + "example_sentence_english": "Save the file on the desktop.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16128 + }, + { + "word": "Forschungsprojekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research project", + "romanization": "Forschungsprojekt", + "example_sentence_native": "Sie arbeiten an einem neuen Forschungsprojekt.", + "example_sentence_english": "They are working on a new research project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16130 + }, + { + "word": "Gegentor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposing goal;goal conceded", + "romanization": "Gegentor", + "example_sentence_native": "Die Mannschaft kassierte ein Gegentor.", + "example_sentence_english": "The team conceded a goal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16132 + }, + { + "word": "Geldautomat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ATM;cash machine", + "romanization": "Geldautomat", + "example_sentence_native": "Wo ist der nächste Geldautomat?", + "example_sentence_english": "Where is the nearest ATM?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16133 + }, + { + "word": "Geldgeber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financier;donor", + "romanization": "Geldgeber", + "example_sentence_native": "Die Geldgeber unterstützen das Projekt.", + "example_sentence_english": "The financiers support the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16134 + }, + { + "word": "geläufig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "common;familiar;fluent", + "romanization": "geläufig", + "example_sentence_native": "Diese Redewendung ist mir geläufig.", + "example_sentence_english": "This idiom is familiar to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16135 + }, + { + "word": "gemeinschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communal;joint;collective", + "romanization": "gemeinschaftlich", + "example_sentence_native": "Sie haben eine gemeinschaftliche Entscheidung getroffen.", + "example_sentence_english": "They made a joint decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16136 + }, + { + "word": "gemeldet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reported;registered", + "romanization": "gemeldet", + "example_sentence_native": "Die gemeldete Zahl ist hoch.", + "example_sentence_english": "The reported number is high.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16137 + }, + { + "word": "Genius", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genius (spirit;talent)", + "romanization": "Genius", + "example_sentence_native": "Der Genius des Künstlers war unbestreitbar.", + "example_sentence_english": "The genius of the artist was undeniable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16138 + }, + { + "word": "Geschichtsschreibung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "historiography;historical writing", + "romanization": "Geschichtsschreibung", + "example_sentence_native": "Die Geschichtsschreibung ist eine wichtige Disziplin.", + "example_sentence_english": "Historiography is an important discipline.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16139 + }, + { + "word": "schleudern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spin;to hurl", + "romanization": "schleudern", + "example_sentence_native": "Die Waschmaschine schleudert die Wäsche.", + "example_sentence_english": "The washing machine spins the laundry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16140 + }, + { + "word": "schmieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spread;to grease;to smear", + "romanization": "schmieren", + "example_sentence_native": "Er schmiert Butter auf sein Brot.", + "example_sentence_english": "He spreads butter on his bread.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16141 + }, + { + "word": "Geschäftsordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rules of procedure;standing orders", + "romanization": "Geschäftsordnung", + "example_sentence_native": "Die Geschäftsordnung regelt den Ablauf der Sitzung.", + "example_sentence_english": "The rules of procedure regulate the course of the meeting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16142 + }, + { + "word": "gestiegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risen;increased", + "romanization": "gestiegen", + "example_sentence_native": "Die Preise sind gestiegen.", + "example_sentence_english": "The prices have risen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16143 + }, + { + "word": "Gesundheitsamt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public health department", + "romanization": "Gesundheitsamt", + "example_sentence_native": "Wir müssen uns beim Gesundheitsamt melden.", + "example_sentence_english": "We have to report to the public health department.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16144 + }, + { + "word": "gewachsen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grown;up to the task", + "romanization": "gewachsen", + "example_sentence_native": "Er ist der Aufgabe gewachsen.", + "example_sentence_english": "He is up to the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16145 + }, + { + "word": "Gewährung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "granting;concession", + "romanization": "Gewährung", + "example_sentence_native": "Die Gewährung des Kredits wurde genehmigt.", + "example_sentence_english": "The granting of the loan was approved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16146 + }, + { + "word": "grafisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphic", + "romanization": "grafisch", + "example_sentence_native": "Das ist eine grafische Darstellung.", + "example_sentence_english": "This is a graphic representation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16148 + }, + { + "word": "Grat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ridge;burr", + "romanization": "Grat", + "example_sentence_native": "Der Bergsteiger erreichte den Grat.", + "example_sentence_english": "The mountaineer reached the ridge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16149 + }, + { + "word": "Grossmeister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grandmaster", + "romanization": "Grossmeister", + "example_sentence_native": "Er ist ein Grossmeister im Schach.", + "example_sentence_english": "He is a grandmaster in chess.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16150 + }, + { + "word": "Grundbesitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate;landed property", + "romanization": "Grundbesitz", + "example_sentence_native": "Der Grundbesitz wurde verkauft.", + "example_sentence_english": "The real estate was sold.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16151 + }, + { + "word": "Guru", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guru", + "romanization": "Guru", + "example_sentence_native": "Er gilt als ein Finanz-Guru.", + "example_sentence_english": "He is considered a financial guru.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16152 + }, + { + "word": "handwerklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artisanal;manual;skilled (craft)", + "romanization": "handwerklich", + "example_sentence_native": "Er ist handwerklich sehr begabt.", + "example_sentence_english": "He is very skilled manually.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16155 + }, + { + "word": "Herzogtum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duchy", + "romanization": "Herzogtum", + "example_sentence_native": "Das Herzogtum war reich.", + "example_sentence_english": "The duchy was rich.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16158 + }, + { + "word": "hierhin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "here (to this place)", + "romanization": "hierhin", + "example_sentence_native": "Bitte kommen Sie hierhin.", + "example_sentence_english": "Please come here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 16160 + }, + { + "word": "humorvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humorous", + "romanization": "humorvoll", + "example_sentence_native": "Er ist ein sehr humorvoller Mensch.", + "example_sentence_english": "He is a very humorous person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16164 + }, + { + "word": "inbegriffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included", + "romanization": "inbegriffen", + "example_sentence_native": "Das Frühstück ist im Preis inbegriffen.", + "example_sentence_english": "Breakfast is included in the price.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16165 + }, + { + "word": "inclusive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusive", + "romanization": "inclusive", + "example_sentence_native": "Das Hotel bietet ein All-inclusive-Paket an.", + "example_sentence_english": "The hotel offers an all-inclusive package.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16166 + }, + { + "word": "Inquisition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Inquisition", + "romanization": "Inquisition", + "example_sentence_native": "Die Inquisition war eine Periode religiöser Verfolgung.", + "example_sentence_english": "The Inquisition was a period of religious persecution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16167 + }, + { + "word": "Joke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joke", + "romanization": "Joke", + "example_sentence_native": "Er hat einen guten Joke erzählt.", + "example_sentence_english": "He told a good joke.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16169 + }, + { + "word": "Kindertagesstätte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daycare center", + "romanization": "Kindertagesstätte", + "example_sentence_native": "Mein Kind geht in die Kindertagesstätte.", + "example_sentence_english": "My child goes to the daycare center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16173 + }, + { + "word": "Kindesalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "childhood (age)", + "romanization": "Kindesalter", + "example_sentence_native": "Im Kindesalter lernt man am schnellsten.", + "example_sentence_english": "In childhood, one learns fastest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16174 + }, + { + "word": "Kollaps", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse", + "romanization": "Kollaps", + "example_sentence_native": "Nach dem Marathon erlitt er einen Kollaps.", + "example_sentence_english": "After the marathon, he suffered a collapse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16176 + }, + { + "word": "komfortabel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortable", + "romanization": "komfortabel", + "example_sentence_native": "Das Sofa ist sehr komfortabel.", + "example_sentence_english": "The sofa is very comfortable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16177 + }, + { + "word": "Kontingent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quota;contingent", + "romanization": "Kontingent", + "example_sentence_native": "Jedes Land hat ein bestimmtes Kontingent an Flüchtlingen aufgenommen.", + "example_sentence_english": "Each country has accepted a certain quota of refugees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16178 + }, + { + "word": "Konvent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convention;assembly", + "romanization": "Konvent", + "example_sentence_native": "Der Konvent tagte, um wichtige Entscheidungen zu treffen.", + "example_sentence_english": "The convention met to make important decisions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16179 + }, + { + "word": "Kotze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vomit", + "romanization": "Kotze", + "example_sentence_native": "Die Kotze lag auf dem Boden.", + "example_sentence_english": "The vomit was on the floor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16180 + }, + { + "word": "kraftvoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powerful;vigorous", + "romanization": "kraftvoll", + "example_sentence_native": "Er sang mit einer kraftvollen Stimme.", + "example_sentence_english": "He sang with a powerful voice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16181 + }, + { + "word": "Krankheitsbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clinical picture;disease pattern", + "romanization": "Krankheitsbild", + "example_sentence_native": "Das Krankheitsbild des Patienten war unklar.", + "example_sentence_english": "The patient's clinical picture was unclear.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16182 + }, + { + "word": "Kriminalpolizei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal police;CID", + "romanization": "Kriminalpolizei", + "example_sentence_native": "Die Kriminalpolizei ermittelt in dem Fall.", + "example_sentence_english": "The criminal police are investigating the case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16183 + }, + { + "word": "Krippe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crib;manger;nursery", + "romanization": "Krippe", + "example_sentence_native": "Das Baby schläft in der Krippe.", + "example_sentence_english": "The baby sleeps in the crib.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16184 + }, + { + "word": "krumm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crooked;bent", + "romanization": "krumm", + "example_sentence_native": "Der Ast war ganz krumm gewachsen.", + "example_sentence_english": "The branch had grown completely crooked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16185 + }, + { + "word": "Kupplung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clutch (vehicle);coupling", + "romanization": "Kupplung", + "example_sentence_native": "Er trat die Kupplung, um zu schalten.", + "example_sentence_english": "He pressed the clutch to shift gears.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16186 + }, + { + "word": "Leasing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leasing", + "romanization": "Leasing", + "example_sentence_native": "Viele Unternehmen nutzen Leasing für ihre Fahrzeuge.", + "example_sentence_english": "Many companies use leasing for their vehicles.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16188 + }, + { + "word": "Leuchte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lamp;light", + "romanization": "Leuchte", + "example_sentence_native": "Die Leuchte an der Decke ist sehr hell.", + "example_sentence_english": "The lamp on the ceiling is very bright.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16189 + }, + { + "word": "lieferbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deliverable;available (for delivery)", + "romanization": "lieferbar", + "example_sentence_native": "Das Produkt ist ab nächster Woche wieder lieferbar.", + "example_sentence_english": "The product will be available for delivery again next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16191 + }, + { + "word": "Luftraum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "airspace", + "romanization": "Luftraum", + "example_sentence_native": "Der Luftraum über der Stadt wurde gesperrt.", + "example_sentence_english": "The airspace over the city was closed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16194 + }, + { + "word": "Länderei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landed property;estate", + "romanization": "Länderei", + "example_sentence_native": "Die Familie besitzt große Ländereien.", + "example_sentence_english": "The family owns large landed properties.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16195 + }, + { + "word": "mailänder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Milanese", + "romanization": "mailänder", + "example_sentence_native": "Sie trug ein mailänder Kleid.", + "example_sentence_english": "She wore a Milanese dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16196 + }, + { + "word": "mindest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimum;least", + "romanization": "mindest", + "example_sentence_native": "Die Mindestgröße für die Teilnahme ist 1,50 Meter.", + "example_sentence_english": "The minimum height for participation is 1.50 meters.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16199 + }, + { + "word": "mithelfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help out;to assist", + "romanization": "mithelfen", + "example_sentence_native": "Kannst du mir bitte beim Umzug mithelfen?", + "example_sentence_english": "Can you please help me with the move?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "helfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16200 + }, + { + "word": "Mittwochabend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Wednesday evening", + "romanization": "Mittwochabend", + "example_sentence_native": "Wir treffen uns am Mittwochabend.", + "example_sentence_english": "We are meeting on Wednesday evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16201 + }, + { + "word": "Mordfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murder case", + "romanization": "Mordfall", + "example_sentence_native": "Die Polizei ermittelt in einem neuen Mordfall.", + "example_sentence_english": "The police are investigating a new murder case.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16202 + }, + { + "word": "nachlassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decrease;to subside;to slacken", + "romanization": "nachlassen", + "example_sentence_native": "Der Regen wird bald nachlassen.", + "example_sentence_english": "The rain will soon subside.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16204 + }, + { + "word": "Neugründung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "new foundation;new establishment", + "romanization": "Neugründung", + "example_sentence_native": "Die Neugründung des Unternehmens war ein Erfolg.", + "example_sentence_english": "The new establishment of the company was a success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16207 + }, + { + "word": "Pad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pad (e.g.;tablet;mouse pad)", + "romanization": "Pad", + "example_sentence_native": "Ich habe mein neues Tablet-Pad gekauft.", + "example_sentence_english": "I bought my new tablet pad.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16210 + }, + { + "word": "Parteichef", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party leader", + "romanization": "Parteichef", + "example_sentence_native": "Der Parteichef hielt eine Rede.", + "example_sentence_english": "The party leader gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16212 + }, + { + "word": "Politikwissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "political science", + "romanization": "Politikwissenschaft", + "example_sentence_native": "Sie studiert Politikwissenschaft an der Universität.", + "example_sentence_english": "She studies political science at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16214 + }, + { + "word": "Polizeipräsident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "police president;chief of police", + "romanization": "Polizeipräsident", + "example_sentence_native": "Der Polizeipräsident gab eine Pressekonferenz.", + "example_sentence_english": "The chief of police gave a press conference.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16215 + }, + { + "word": "Pride", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pride (as in LGBTQ+ Pride)", + "romanization": "Pride", + "example_sentence_native": "Die Pride-Parade findet jedes Jahr statt.", + "example_sentence_english": "The Pride parade takes place every year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16216 + }, + { + "word": "Privacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privacy", + "romanization": "Privacy", + "example_sentence_native": "Der Schutz der Privacy ist sehr wichtig.", + "example_sentence_english": "The protection of privacy is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16217 + }, + { + "word": "Professionalität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professionalism", + "romanization": "Professionalität", + "example_sentence_native": "Ihre Professionalität beeindruckte alle.", + "example_sentence_english": "Her professionalism impressed everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16218 + }, + { + "word": "radeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cycle;to bike", + "romanization": "radeln", + "example_sentence_native": "Wir radeln gerne am Wochenende.", + "example_sentence_english": "We like to cycle on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16220 + }, + { + "word": "Radtour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bike tour", + "romanization": "Radtour", + "example_sentence_native": "Die Radtour durch die Berge war anstrengend.", + "example_sentence_english": "The bike tour through the mountains was strenuous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16221 + }, + { + "word": "Rechnungswesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounting;financial accounting", + "romanization": "Rechnungswesen", + "example_sentence_native": "Sie studiert Rechnungswesen an der Universität.", + "example_sentence_english": "She studies accounting at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16224 + }, + { + "word": "Reglement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regulation;rulebook", + "romanization": "Reglement", + "example_sentence_native": "Das neue Reglement tritt nächste Woche in Kraft.", + "example_sentence_english": "The new regulation comes into effect next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16226 + }, + { + "word": "reinschauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look in;to drop by", + "romanization": "reinschauen", + "example_sentence_native": "Kannst du bitte kurz reinschauen, ob das Licht noch brennt?", + "example_sentence_english": "Can you please look in quickly to see if the light is still on?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rein", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16228 + }, + { + "word": "rostocker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Rostock;Rostockian", + "romanization": "rostocker", + "example_sentence_native": "Er ist ein Rostocker Bürger.", + "example_sentence_english": "He is a Rostock citizen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16232 + }, + { + "word": "saftig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "juicy", + "romanization": "saftig", + "example_sentence_native": "Der Apfel war sehr saftig.", + "example_sentence_english": "The apple was very juicy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16235 + }, + { + "word": "Saum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hem;border;edge", + "romanization": "Saum", + "example_sentence_native": "Der Saum des Kleides war lose.", + "example_sentence_english": "The hem of the dress was loose.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16238 + }, + { + "word": "Schaffner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conductor (train;bus)", + "romanization": "Schaffner", + "example_sentence_native": "Der Schaffner kontrollierte die Fahrkarten.", + "example_sentence_english": "The conductor checked the tickets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16239 + }, + { + "word": "schamlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shameless", + "romanization": "schamlos", + "example_sentence_native": "Sein Verhalten war schamlos.", + "example_sentence_english": "His behavior was shameless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16240 + }, + { + "word": "schaukeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swing;to rock", + "romanization": "schaukeln", + "example_sentence_native": "Die Kinder schaukeln im Garten.", + "example_sentence_english": "The children are swinging in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16241 + }, + { + "word": "Scheide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sheath;scabbard;vagina", + "romanization": "Scheide", + "example_sentence_native": "Er zog das Schwert aus der Scheide.", + "example_sentence_english": "He drew the sword from the scabbard.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16242 + }, + { + "word": "Scheissdreck", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shit;crap", + "romanization": "Scheissdreck", + "example_sentence_native": "Das ist doch alles Scheissdreck!", + "example_sentence_english": "That's all just crap!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16243 + }, + { + "word": "schrumpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shrink", + "romanization": "schrumpfen", + "example_sentence_native": "Die Wirtschaft schrumpft.", + "example_sentence_english": "The economy is shrinking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16244 + }, + { + "word": "Schulkind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school child", + "romanization": "Schulkind", + "example_sentence_native": "Jedes Schulkind lernt lesen.", + "example_sentence_english": "Every school child learns to read.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16245 + }, + { + "word": "Seelsorger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritual advisor;chaplain", + "romanization": "Seelsorger", + "example_sentence_native": "Der Seelsorger hörte ihr geduldig zu.", + "example_sentence_english": "The spiritual advisor listened patiently to her.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16246 + }, + { + "word": "Selbstdarstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-presentation;self-portrayal", + "romanization": "Selbstdarstellung", + "example_sentence_native": "Seine Selbstdarstellung in den sozialen Medien ist sehr wichtig für ihn.", + "example_sentence_english": "His self-presentation on social media is very important to him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16248 + }, + { + "word": "Sicherheitslücke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security vulnerability;gap", + "romanization": "Sicherheitslücke", + "example_sentence_native": "Die Software hatte eine kritische Sicherheitslücke.", + "example_sentence_english": "The software had a critical security vulnerability.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16249 + }, + { + "word": "Silbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syllable", + "romanization": "Silbe", + "example_sentence_native": "Das Wort \"Apfel\" hat zwei Silben.", + "example_sentence_english": "The word \"apple\" has two syllables.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16250 + }, + { + "word": "solid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solid;sturdy;reliable", + "romanization": "solid", + "example_sentence_native": "Das ist ein solides Möbelstück.", + "example_sentence_english": "That is a solid piece of furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16251 + }, + { + "word": "Sommersemester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summer semester", + "romanization": "Sommersemester", + "example_sentence_native": "Das Sommersemester beginnt im April.", + "example_sentence_english": "The summer semester begins in April.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16252 + }, + { + "word": "Sparer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saver (person)", + "romanization": "Sparer", + "example_sentence_native": "Viele Sparer sind besorgt über die Inflation.", + "example_sentence_english": "Many savers are concerned about inflation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16253 + }, + { + "word": "Spielminute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minute of play", + "romanization": "Spielminute", + "example_sentence_native": "In der letzten Spielminute fiel das entscheidende Tor.", + "example_sentence_english": "In the last minute of play, the decisive goal was scored.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16254 + }, + { + "word": "Spray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spray", + "romanization": "Spray", + "example_sentence_native": "Sie benutzte ein Haarspray.", + "example_sentence_english": "She used a hair spray.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16255 + }, + { + "word": "Sprengung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demolition;blasting;explosion", + "romanization": "Sprengung", + "example_sentence_native": "Die Sprengung des alten Gebäudes ist für morgen geplant.", + "example_sentence_english": "The demolition of the old building is planned for tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16256 + }, + { + "word": "Stammspieler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regular player;first-team player", + "romanization": "Stammspieler", + "example_sentence_native": "Er ist ein wichtiger Stammspieler in der Mannschaft.", + "example_sentence_english": "He is an important regular player in the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16258 + }, + { + "word": "stattlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stately;imposing;considerable", + "romanization": "stattlich", + "example_sentence_native": "Er hat ein stattliches Vermögen geerbt.", + "example_sentence_english": "He inherited a considerable fortune.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 16259 + }, + { + "word": "Stuck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stucco;plasterwork", + "romanization": "Stuck", + "example_sentence_native": "Das alte Gebäude hat wunderschönen Stuck an der Decke.", + "example_sentence_english": "The old building has beautiful stucco on the ceiling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16264 + }, + { + "word": "Survival", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survival", + "romanization": "Survival", + "example_sentence_native": "Er nahm an einem Survival-Training teil.", + "example_sentence_english": "He participated in a survival training.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16265 + }, + { + "word": "Tarnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camouflage;disguise", + "romanization": "Tarnung", + "example_sentence_native": "Die Tarnung des Soldaten war perfekt.", + "example_sentence_english": "The soldier's camouflage was perfect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16266 + }, + { + "word": "Taschentuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handkerchief;tissue", + "romanization": "Taschentuch", + "example_sentence_native": "Ich brauche ein Taschentuch, ich muss niesen.", + "example_sentence_english": "I need a tissue, I have to sneeze.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16267 + }, + { + "word": "Task", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "task", + "romanization": "Task", + "example_sentence_native": "Diese Task muss bis morgen erledigt sein.", + "example_sentence_english": "This task must be completed by tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16268 + }, + { + "word": "Teleskop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telescope", + "romanization": "Teleskop", + "example_sentence_native": "Mit dem Teleskop kann man die Sterne beobachten.", + "example_sentence_english": "You can observe the stars with the telescope.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16269 + }, + { + "word": "Testosteron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testosterone", + "romanization": "Testosteron", + "example_sentence_native": "Testosteron ist ein wichtiges Hormon.", + "example_sentence_english": "Testosterone is an important hormone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16271 + }, + { + "word": "thermisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal", + "romanization": "thermisch", + "example_sentence_native": "Die thermische Energie wird in Strom umgewandelt.", + "example_sentence_english": "The thermal energy is converted into electricity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16273 + }, + { + "word": "Topmodel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "top model", + "romanization": "Topmodel", + "example_sentence_native": "Sie träumt davon, ein Topmodel zu werden.", + "example_sentence_english": "She dreams of becoming a top model.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16275 + }, + { + "word": "toppen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to top;to surpass", + "romanization": "toppen", + "example_sentence_native": "Das Ergebnis ist schwer zu toppen.", + "example_sentence_english": "The result is hard to top.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16276 + }, + { + "word": "Transit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transit", + "romanization": "Transit", + "example_sentence_native": "Die Ware befindet sich im Transit.", + "example_sentence_english": "The goods are in transit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16277 + }, + { + "word": "Trierer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Trier;Trier-based", + "romanization": "Trierer", + "example_sentence_native": "Der Trierer Dom ist sehr alt.", + "example_sentence_english": "The Trier Cathedral is very old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16278 + }, + { + "word": "Umkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reversal", + "romanization": "Umkehr", + "example_sentence_native": "Die Umkehr der Situation war unerwartet.", + "example_sentence_english": "The reversal of the situation was unexpected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16280 + }, + { + "word": "Umstrukturierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restructuring", + "romanization": "Umstrukturierung", + "example_sentence_native": "Die Firma plant eine umfassende Umstrukturierung.", + "example_sentence_english": "The company plans a comprehensive restructuring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16281 + }, + { + "word": "unangebracht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inappropriate", + "romanization": "unangebracht", + "example_sentence_native": "Sein Kommentar war völlig unangebracht.", + "example_sentence_english": "His comment was completely inappropriate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16282 + }, + { + "word": "unmenschlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhumane", + "romanization": "unmenschlich", + "example_sentence_native": "Die Bedingungen im Gefängnis waren unmenschlich.", + "example_sentence_english": "The conditions in the prison were inhumane.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16283 + }, + { + "word": "Unsterblichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immortality", + "romanization": "Unsterblichkeit", + "example_sentence_native": "Viele Kulturen träumen von der Unsterblichkeit.", + "example_sentence_english": "Many cultures dream of immortality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16284 + }, + { + "word": "untergraben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undermine", + "romanization": "untergraben", + "example_sentence_native": "Seine Handlungen drohten, das Vertrauen zu untergraben.", + "example_sentence_english": "His actions threatened to undermine trust.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16285 + }, + { + "word": "unwürdig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unworthy", + "romanization": "unwürdig", + "example_sentence_native": "Er fühlte sich der Ehre unwürdig.", + "example_sentence_english": "He felt unworthy of the honor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16286 + }, + { + "word": "verdauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to digest", + "romanization": "verdauen", + "example_sentence_native": "Es dauert eine Weile, bis der Körper das Essen verdaut.", + "example_sentence_english": "It takes a while for the body to digest the food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16287 + }, + { + "word": "verschärft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensified", + "romanization": "verschärft", + "example_sentence_native": "Die Sicherheitsmaßnahmen wurden verschärft.", + "example_sentence_english": "The security measures were intensified.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16288 + }, + { + "word": "Verunsicherung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insecurity", + "romanization": "Verunsicherung", + "example_sentence_native": "Die aktuelle Lage führt zu großer Verunsicherung in der Bevölkerung.", + "example_sentence_english": "The current situation leads to great insecurity among the population.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16289 + }, + { + "word": "vierteln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quarter", + "romanization": "vierteln", + "example_sentence_native": "Man muss den Apfel vierteln, bevor man ihn isst.", + "example_sentence_english": "You have to quarter the apple before eating it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16290 + }, + { + "word": "Vorverkauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presale", + "romanization": "Vorverkauf", + "example_sentence_native": "Tickets sind ab morgen im Vorverkauf erhältlich.", + "example_sentence_english": "Tickets are available for presale starting tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16291 + }, + { + "word": "Webdesign", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "web design", + "romanization": "Webdesign", + "example_sentence_native": "Er studiert Webdesign an der Universität.", + "example_sentence_english": "He studies web design at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16292 + }, + { + "word": "Weltuntergang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doomsday", + "romanization": "Weltuntergang", + "example_sentence_native": "Manche Leute glauben an den Weltuntergang.", + "example_sentence_english": "Some people believe in doomsday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16293 + }, + { + "word": "Widerruf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revocation", + "romanization": "Widerruf", + "example_sentence_native": "Der Widerruf des Angebots erfolgte schriftlich.", + "example_sentence_english": "The revocation of the offer was made in writing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16296 + }, + { + "word": "Zinssatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interest rate", + "romanization": "Zinssatz", + "example_sentence_native": "Der Zinssatz für das Darlehen ist sehr niedrig.", + "example_sentence_english": "The interest rate for the loan is very low.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16300 + }, + { + "word": "zweijährig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "two-year;biennial", + "romanization": "zweijährig", + "example_sentence_native": "Sie hat einen zweijährigen Vertrag unterschrieben.", + "example_sentence_english": "She signed a two-year contract.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16301 + }, + { + "word": "Abendland", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Occident;Western world", + "romanization": "Abendland", + "example_sentence_native": "Die Geschichte des Abendlandes ist komplex.", + "example_sentence_english": "The history of the Occident is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16302 + }, + { + "word": "Abteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compartment", + "romanization": "Abteil", + "example_sentence_native": "Wir haben ein Abteil im Zug reserviert.", + "example_sentence_english": "We reserved a compartment on the train.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16303 + }, + { + "word": "Abwanderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emigration;migration;exodus", + "romanization": "Abwanderung", + "example_sentence_native": "Die Abwanderung junger Leute ist ein Problem für die Region.", + "example_sentence_english": "The emigration of young people is a problem for the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16304 + }, + { + "word": "Abwehrspieler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defender (sports)", + "romanization": "Abwehrspieler", + "example_sentence_native": "Der Abwehrspieler hat den Ball geklärt.", + "example_sentence_english": "The defender cleared the ball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16305 + }, + { + "word": "Abwertung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devaluation;depreciation", + "romanization": "Abwertung", + "example_sentence_native": "Die Abwertung der Währung führte zu höheren Preisen.", + "example_sentence_english": "The devaluation of the currency led to higher prices.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16306 + }, + { + "word": "anfreunden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make friends with;to befriend", + "romanization": "anfreunden", + "example_sentence_native": "Er hat sich schnell mit den neuen Kollegen angefreundet.", + "example_sentence_english": "He quickly made friends with the new colleagues.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "freunden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16310 + }, + { + "word": "anhaben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wear (clothes);to have on", + "romanization": "anhaben", + "example_sentence_native": "Sie hat ein rotes Kleid an.", + "example_sentence_english": "She is wearing a red dress.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "haben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16311 + }, + { + "word": "Antlitz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "countenance;face (archaic;poetic)", + "romanization": "Antlitz", + "example_sentence_native": "Sein Antlitz war von Sorge gezeichnet.", + "example_sentence_english": "His countenance was marked by worry.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16312 + }, + { + "word": "Arbeitskollege", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colleague (male)", + "romanization": "Arbeitskollege", + "example_sentence_native": "Mein Arbeitskollege hilft mir oft.", + "example_sentence_english": "My colleague often helps me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16315 + }, + { + "word": "Assistenz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assistance;support", + "romanization": "Assistenz", + "example_sentence_native": "Sie leistet gute Assistenz bei dem Projekt.", + "example_sentence_english": "She provides good assistance with the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16317 + }, + { + "word": "Astrologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astrology", + "romanization": "Astrologie", + "example_sentence_native": "Astrologie ist eine alte Praxis.", + "example_sentence_english": "Astrology is an ancient practice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16318 + }, + { + "word": "Astronom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astronomer (male)", + "romanization": "Astronom", + "example_sentence_native": "Der Astronom beobachtet die Sterne.", + "example_sentence_english": "The astronomer observes the stars.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16319 + }, + { + "word": "atemberaubend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breathtaking", + "romanization": "atemberaubend", + "example_sentence_native": "Die Aussicht vom Berg war atemberaubend.", + "example_sentence_english": "The view from the mountain was breathtaking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16320 + }, + { + "word": "aushandeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to negotiate;to bargain", + "romanization": "aushandeln", + "example_sentence_native": "Wir müssen die Bedingungen aushandeln.", + "example_sentence_english": "We need to negotiate the terms.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "handeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16321 + }, + { + "word": "Aushilfe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporary help;assistant", + "romanization": "Aushilfe", + "example_sentence_native": "Wir brauchen eine Aushilfe für das Wochenende.", + "example_sentence_english": "We need a temporary helper for the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16322 + }, + { + "word": "Befehlshaber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commander;chief", + "romanization": "Befehlshaber", + "example_sentence_native": "Der Befehlshaber gab den Befehl zum Angriff.", + "example_sentence_english": "The commander gave the order to attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16325 + }, + { + "word": "Befruchtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertilization", + "romanization": "Befruchtung", + "example_sentence_native": "Die Befruchtung der Pflanze ist für die Fruchtbildung entscheidend.", + "example_sentence_english": "The fertilization of the plant is crucial for fruit formation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16326 + }, + { + "word": "Beil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hatchet;axe", + "romanization": "Beil", + "example_sentence_native": "Er spaltete das Holz mit einem Beil.", + "example_sentence_english": "He split the wood with a hatchet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16328 + }, + { + "word": "Berufswahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "career choice", + "romanization": "Berufswahl", + "example_sentence_native": "Die Berufswahl ist eine wichtige Entscheidung im Leben.", + "example_sentence_english": "Career choice is an important decision in life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16330 + }, + { + "word": "bescheinigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to certify;to attest", + "romanization": "bescheinigen", + "example_sentence_native": "Der Arzt muss die Arbeitsunfähigkeit bescheinigen.", + "example_sentence_english": "The doctor must certify the incapacity for work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16331 + }, + { + "word": "Besteck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cutlery;silverware", + "romanization": "Besteck", + "example_sentence_native": "Bitte legen Sie das Besteck auf den Tisch.", + "example_sentence_english": "Please put the cutlery on the table.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16332 + }, + { + "word": "Betriebswirtschaftslehre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "business administration;business studies", + "romanization": "Betriebswirtschaftslehre", + "example_sentence_native": "Sie studiert Betriebswirtschaftslehre an der Universität.", + "example_sentence_english": "She studies business administration at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16334 + }, + { + "word": "Biomasse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biomass", + "romanization": "Biomasse", + "example_sentence_native": "Biomasse ist eine erneuerbare Energiequelle.", + "example_sentence_english": "Biomass is a renewable energy source.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16335 + }, + { + "word": "Bistro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bistro", + "romanization": "Bistro", + "example_sentence_native": "Wir trafen uns in einem gemütlichen Bistro.", + "example_sentence_english": "We met in a cozy bistro.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16337 + }, + { + "word": "bizarr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bizarre;strange", + "romanization": "bizarr", + "example_sentence_native": "Das war eine wirklich bizarre Situation.", + "example_sentence_english": "That was a truly bizarre situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16338 + }, + { + "word": "blitzschnell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightning fast;very quick", + "romanization": "blitzschnell", + "example_sentence_native": "Der Hase rannte blitzschnell über das Feld.", + "example_sentence_english": "The rabbit ran lightning fast across the field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16339 + }, + { + "word": "boomen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boom", + "romanization": "boomen", + "example_sentence_native": "Die Wirtschaft boomt in dieser Region.", + "example_sentence_english": "The economy is booming in this region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16341 + }, + { + "word": "Brennstoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel", + "romanization": "Brennstoff", + "example_sentence_native": "Holz ist ein natürlicher Brennstoff.", + "example_sentence_english": "Wood is a natural fuel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16342 + }, + { + "word": "bulgarisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bulgarian", + "romanization": "bulgarisch", + "example_sentence_native": "Sie hat bulgarische Wurzeln.", + "example_sentence_english": "She has Bulgarian roots.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16345 + }, + { + "word": "Bundesbürger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citizen of the Federal Republic (of Germany)", + "romanization": "Bundesbürger", + "example_sentence_native": "Jeder Bundesbürger hat das Recht zu wählen.", + "example_sentence_english": "Every citizen of the Federal Republic has the right to vote.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16346 + }, + { + "word": "Calcium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calcium", + "romanization": "Calcium", + "example_sentence_native": "Calcium ist wichtig für gesunde Knochen.", + "example_sentence_english": "Calcium is important for healthy bones.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16349 + }, + { + "word": "Cargo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cargo", + "romanization": "Cargo", + "example_sentence_native": "Das Schiff transportiert viel Cargo.", + "example_sentence_english": "The ship transports a lot of cargo.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16350 + }, + { + "word": "casual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casual", + "romanization": "casual", + "example_sentence_native": "Sie bevorzugt einen casual Stil.", + "example_sentence_english": "She prefers a casual style.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16351 + }, + { + "word": "Championship", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "championship", + "romanization": "Championship", + "example_sentence_native": "Sie haben die Championship gewonnen.", + "example_sentence_english": "They won the championship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16353 + }, + { + "word": "Chemtrail", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemtrail", + "romanization": "Chemtrail", + "example_sentence_native": "Manche Menschen glauben an die Existenz von Chemtrails.", + "example_sentence_english": "Some people believe in the existence of chemtrails.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16354 + }, + { + "word": "chillen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chill;to relax", + "romanization": "chillen", + "example_sentence_native": "Am Wochenende möchte ich nur chillen.", + "example_sentence_english": "This weekend I just want to chill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16355 + }, + { + "word": "Coin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coin", + "romanization": "Coin", + "example_sentence_native": "Er sammelt alte Coins aus verschiedenen Ländern.", + "example_sentence_english": "He collects old coins from different countries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16356 + }, + { + "word": "Collage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collage", + "romanization": "Collage", + "example_sentence_native": "Sie hat eine wunderschöne Collage aus Fotos erstellt.", + "example_sentence_english": "She created a beautiful collage from photos.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16357 + }, + { + "word": "denkend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinking", + "romanization": "denkend", + "example_sentence_native": "Ein denkender Mensch hinterfragt die Dinge.", + "example_sentence_english": "A thinking person questions things.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16358 + }, + { + "word": "Einbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imagination;delusion", + "romanization": "Einbildung", + "example_sentence_native": "Das ist doch nur deine Einbildung.", + "example_sentence_english": "That's just your imagination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16361 + }, + { + "word": "einrechnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to include;to factor in", + "romanization": "einrechnen", + "example_sentence_native": "Wir müssen die Kosten für den Versand einrechnen.", + "example_sentence_english": "We have to factor in the shipping costs.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "rechnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16362 + }, + { + "word": "Einschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incision;cut;turning point", + "romanization": "Einschnitt", + "example_sentence_native": "Der Unfall war ein tiefer Einschnitt in ihr Leben.", + "example_sentence_english": "The accident was a deep turning point in her life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16363 + }, + { + "word": "einschüchtern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intimidate;to frighten", + "romanization": "einschüchtern", + "example_sentence_native": "Lass dich nicht einschüchtern!", + "example_sentence_english": "Don't let yourself be intimidated!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schüchtern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16364 + }, + { + "word": "einwirken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to influence;to act upon", + "romanization": "einwirken", + "example_sentence_native": "Die Sonne kann stark auf die Haut einwirken.", + "example_sentence_english": "The sun can strongly affect the skin.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "wirken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16365 + }, + { + "word": "Ellbogen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elbow", + "romanization": "Ellbogen", + "example_sentence_native": "Er stieß sich den Ellbogen am Tisch.", + "example_sentence_english": "He hit his elbow on the table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16367 + }, + { + "word": "erlegen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to kill (game);to slay", + "romanization": "erlegen", + "example_sentence_native": "Der Jäger konnte einen Hirsch erlegen.", + "example_sentence_english": "The hunter was able to kill a deer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16370 + }, + { + "word": "Erzeuger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "producer;manufacturer", + "romanization": "Erzeuger", + "example_sentence_native": "Der Erzeuger garantiert die Qualität des Produkts.", + "example_sentence_english": "The producer guarantees the quality of the product.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16371 + }, + { + "word": "Erzieherin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female educator;kindergarten teacher", + "romanization": "Erzieherin", + "example_sentence_native": "Meine Schwester arbeitet als Erzieherin im Kindergarten.", + "example_sentence_english": "My sister works as a kindergarten teacher.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16372 + }, + { + "word": "Fahrerlaubnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driving license;driver's permit", + "romanization": "Fahrerlaubnis", + "example_sentence_native": "Er hat seine Fahrerlaubnis verloren.", + "example_sentence_english": "He lost his driving license.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16375 + }, + { + "word": "Ferkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piglet", + "romanization": "Ferkel", + "example_sentence_native": "Das Ferkel spielte im Schlamm.", + "example_sentence_english": "The piglet played in the mud.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16376 + }, + { + "word": "Festigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmness;strength;stability", + "romanization": "Festigkeit", + "example_sentence_native": "Die Festigkeit des Materials ist beeindruckend.", + "example_sentence_english": "The strength of the material is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16377 + }, + { + "word": "Feuilleton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cultural section (of a newspaper);feuilleton", + "romanization": "Feuilleton", + "example_sentence_native": "Ich lese gerne das Feuilleton in der Sonntagszeitung.", + "example_sentence_english": "I like to read the cultural section in the Sunday newspaper.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16378 + }, + { + "word": "Filz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "felt", + "romanization": "Filz", + "example_sentence_native": "Der Hut ist aus Filz gemacht.", + "example_sentence_english": "The hat is made of felt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16379 + }, + { + "word": "flechten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to braid", + "romanization": "flechten", + "example_sentence_native": "Sie kann ihre Haare selbst flechten.", + "example_sentence_english": "She can braid her hair herself.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16380 + }, + { + "word": "gegenüberstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to face;to confront", + "romanization": "gegenüberstehen", + "example_sentence_native": "Sie müssen der Wahrheit gegenüberstehen.", + "example_sentence_english": "They must face the truth.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "gegenüber", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16384 + }, + { + "word": "Gelaber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blather;chatter", + "romanization": "Gelaber", + "example_sentence_native": "Hör auf mit diesem Gelaber!", + "example_sentence_english": "Stop with this blather!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16385 + }, + { + "word": "Genetik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetics", + "romanization": "Genetik", + "example_sentence_native": "Die Genetik ist ein faszinierendes Forschungsfeld.", + "example_sentence_english": "Genetics is a fascinating field of research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16386 + }, + { + "word": "Genus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gender (grammatical)", + "romanization": "Genus", + "example_sentence_native": "Das Genus eines Wortes ist wichtig für die Deklination.", + "example_sentence_english": "The gender of a word is important for declension.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16387 + }, + { + "word": "Geschäftsleute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business people", + "romanization": "Geschäftsleute", + "example_sentence_native": "Die Geschäftsleute trafen sich zur Konferenz.", + "example_sentence_english": "The business people met for the conference.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16388 + }, + { + "word": "speisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dine", + "romanization": "speisen", + "example_sentence_native": "Wir werden heute Abend im Restaurant speisen.", + "example_sentence_english": "We will dine at the restaurant tonight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16389 + }, + { + "word": "Gewichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weighting;emphasis", + "romanization": "Gewichtung", + "example_sentence_native": "Die Gewichtung der einzelnen Kriterien ist entscheidend.", + "example_sentence_english": "The weighting of the individual criteria is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16390 + }, + { + "word": "gewissenhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscientious", + "romanization": "gewissenhaft", + "example_sentence_native": "Er ist ein sehr gewissenhafter Arbeiter.", + "example_sentence_english": "He is a very conscientious worker.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16391 + }, + { + "word": "gleichgesinnt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "like-minded", + "romanization": "gleichgesinnt", + "example_sentence_native": "Sie suchte nach gleichgesinnten Freunden.", + "example_sentence_english": "She was looking for like-minded friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16394 + }, + { + "word": "Gliedmasse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "limb", + "romanization": "Gliedmasse", + "example_sentence_native": "Eine Gliedmasse ist ein Körperteil, das sich vom Rumpf erstreckt.", + "example_sentence_english": "A limb is a body part that extends from the torso.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16395 + }, + { + "word": "Gläschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small glass;shot glass", + "romanization": "Gläschen", + "example_sentence_native": "Er trank ein Gläschen Wein.", + "example_sentence_english": "He drank a small glass of wine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16397 + }, + { + "word": "Gorilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gorilla", + "romanization": "Gorilla", + "example_sentence_native": "Der Gorilla ist ein großer Affe.", + "example_sentence_english": "The gorilla is a large ape.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16398 + }, + { + "word": "Groschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "groschen (historical coin)", + "romanization": "Groschen", + "example_sentence_native": "Er hatte keinen Groschen mehr in der Tasche.", + "example_sentence_english": "He had no groschen left in his pocket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16399 + }, + { + "word": "Gurt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belt;strap", + "romanization": "Gurt", + "example_sentence_native": "Bitte legen Sie den Sicherheitsgurt an.", + "example_sentence_english": "Please fasten your seatbelt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16401 + }, + { + "word": "Handicap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handicap;disadvantage", + "romanization": "Handicap", + "example_sentence_native": "Sein Handicap hinderte ihn nicht daran, erfolgreich zu sein.", + "example_sentence_english": "His handicap did not prevent him from being successful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16403 + }, + { + "word": "haufenweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in heaps;in large quantities", + "romanization": "haufenweise", + "example_sentence_native": "Es gab haufenweise Schnee diesen Winter.", + "example_sentence_english": "There was snow in heaps this winter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16404 + }, + { + "word": "Heizöl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heating oil", + "romanization": "Heizöl", + "example_sentence_native": "Der Preis für Heizöl ist gestiegen.", + "example_sentence_english": "The price of heating oil has increased.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16406 + }, + { + "word": "Herzstück", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "core;centerpiece;heart (of something)", + "romanization": "Herzstück", + "example_sentence_native": "Der Motor ist das Herzstück des Autos.", + "example_sentence_english": "The engine is the heart of the car.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16408 + }, + { + "word": "Hilfestellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assistance;help;support", + "romanization": "Hilfestellung", + "example_sentence_native": "Er bat um Hilfestellung bei der Aufgabe.", + "example_sentence_english": "He asked for assistance with the task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16409 + }, + { + "word": "hindeuten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to indicate;to point to", + "romanization": "hindeuten", + "example_sentence_native": "Alle Anzeichen deuten auf eine Verbesserung hin.", + "example_sentence_english": "All signs indicate an improvement.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "deuten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16410 + }, + { + "word": "Hochzeitstag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedding anniversary", + "romanization": "Hochzeitstag", + "example_sentence_native": "Sie feierten ihren 25. Hochzeitstag.", + "example_sentence_english": "They celebrated their 25th wedding anniversary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16412 + }, + { + "word": "hupen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to honk;to beep", + "romanization": "hupen", + "example_sentence_native": "Der Fahrer musste hupen, um auf sich aufmerksam zu machen.", + "example_sentence_english": "The driver had to honk to draw attention to himself.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16414 + }, + { + "word": "höchstpersönlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in person;personally (emphatic)", + "romanization": "höchstpersönlich", + "example_sentence_native": "Der Chef kam höchstpersönlich, um die Auszeichnung zu überreichen.", + "example_sentence_english": "The boss came in person to present the award.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16415 + }, + { + "word": "Injektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injection", + "romanization": "Injektion", + "example_sentence_native": "Der Arzt gab ihm eine Injektion.", + "example_sentence_english": "The doctor gave him an injection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16417 + }, + { + "word": "instabil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unstable", + "romanization": "instabil", + "example_sentence_native": "Die Brücke ist instabil und muss repariert werden.", + "example_sentence_english": "The bridge is unstable and needs to be repaired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16418 + }, + { + "word": "interkulturell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intercultural", + "romanization": "interkulturell", + "example_sentence_native": "Wir fördern den interkulturellen Austausch.", + "example_sentence_english": "We promote intercultural exchange.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16419 + }, + { + "word": "Internetpräsenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "online presence", + "romanization": "Internetpräsenz", + "example_sentence_native": "Viele Unternehmen haben eine starke Internetpräsenz.", + "example_sentence_english": "Many companies have a strong online presence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16420 + }, + { + "word": "Joch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yoke", + "romanization": "Joch", + "example_sentence_native": "Das Joch der Ochsen war schwer.", + "example_sentence_english": "The yoke of the oxen was heavy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16424 + }, + { + "word": "Kali", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potash", + "romanization": "Kali", + "example_sentence_native": "Kali ist ein wichtiger Bestandteil von Düngemitteln.", + "example_sentence_english": "Potash is an important component of fertilizers.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16427 + }, + { + "word": "Kassette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cassette", + "romanization": "Kassette", + "example_sentence_native": "Ich habe noch alte Musikkassetten.", + "example_sentence_english": "I still have old music cassettes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16429 + }, + { + "word": "Kerker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dungeon", + "romanization": "Kerker", + "example_sentence_native": "Der Gefangene wurde in den Kerker geworfen.", + "example_sentence_english": "The prisoner was thrown into the dungeon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16431 + }, + { + "word": "knackig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crisp", + "romanization": "knackig", + "example_sentence_native": "Der Salat ist schön knackig.", + "example_sentence_english": "The salad is nice and crisp.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16433 + }, + { + "word": "Kreuzzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crusade", + "romanization": "Kreuzzug", + "example_sentence_native": "Die Kreuzzüge waren eine Reihe von Religionskriegen.", + "example_sentence_english": "The Crusades were a series of religious wars.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16434 + }, + { + "word": "kroatisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Croatian", + "romanization": "kroatisch", + "example_sentence_native": "Sie spricht kroatisch.", + "example_sentence_english": "She speaks Croatian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16435 + }, + { + "word": "Kämmerer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chamberlain", + "romanization": "Kämmerer", + "example_sentence_native": "Der Kämmerer verwaltet die Finanzen der Stadt.", + "example_sentence_english": "The chamberlain manages the city's finances.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16436 + }, + { + "word": "käuflich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purchasable", + "romanization": "käuflich", + "example_sentence_native": "Das Haus ist käuflich zu erwerben.", + "example_sentence_english": "The house is available for purchase.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16437 + }, + { + "word": "lackieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to paint", + "romanization": "lackieren", + "example_sentence_native": "Er möchte sein Auto neu lackieren lassen.", + "example_sentence_english": "He wants to have his car repainted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16438 + }, + { + "word": "Lebensform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life form", + "romanization": "Lebensform", + "example_sentence_native": "Eine neue Lebensform wurde im Ozean entdeckt.", + "example_sentence_english": "A new life form was discovered in the ocean.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16440 + }, + { + "word": "Lebenssituation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "life situation", + "romanization": "Lebenssituation", + "example_sentence_native": "Seine Lebenssituation hat sich stark verbessert.", + "example_sentence_english": "His life situation has greatly improved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16441 + }, + { + "word": "liquid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquid", + "romanization": "liquid", + "example_sentence_native": "Wasser ist eine liquide Substanz.", + "example_sentence_english": "Water is a liquid substance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16444 + }, + { + "word": "Macho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "macho (man)", + "romanization": "Macho", + "example_sentence_native": "Er verhält sich wie ein Macho.", + "example_sentence_english": "He behaves like a macho man.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16446 + }, + { + "word": "Malware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malware", + "romanization": "Malware", + "example_sentence_native": "Mein Computer wurde von Malware befallen.", + "example_sentence_english": "My computer was infected by malware.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16447 + }, + { + "word": "Maniere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manner;habit", + "romanization": "Maniere", + "example_sentence_native": "Sie hat eine elegante Maniere.", + "example_sentence_english": "She has an elegant manner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16448 + }, + { + "word": "Massenmedium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mass medium", + "romanization": "Massenmedium", + "example_sentence_native": "Das Fernsehen ist ein wichtiges Massenmedium.", + "example_sentence_english": "Television is an important mass medium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16451 + }, + { + "word": "Membran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "membrane", + "romanization": "Membran", + "example_sentence_native": "Die Zelle ist von einer Membran umgeben.", + "example_sentence_english": "The cell is surrounded by a membrane.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16452 + }, + { + "word": "Mittelwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mean value;average", + "romanization": "Mittelwert", + "example_sentence_native": "Berechnen Sie den Mittelwert der Daten.", + "example_sentence_english": "Calculate the mean value of the data.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16453 + }, + { + "word": "Mustang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mustang (wild horse)", + "romanization": "Mustang", + "example_sentence_native": "Der Mustang ist ein Wildpferd aus Nordamerika.", + "example_sentence_english": "The mustang is a wild horse from North America.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16459 + }, + { + "word": "Möhre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "carrot", + "romanization": "Möhre", + "example_sentence_native": "Ich esse gerne Möhren.", + "example_sentence_english": "I like to eat carrots.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16461 + }, + { + "word": "Nachbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replica;reproduction", + "romanization": "Nachbildung", + "example_sentence_native": "Das Museum zeigt eine genaue Nachbildung des Originals.", + "example_sentence_english": "The museum shows an exact replica of the original.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16462 + }, + { + "word": "Naturforscher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "naturalist;natural scientist", + "romanization": "Naturforscher", + "example_sentence_native": "Der Naturforscher entdeckte eine neue Pflanzenart.", + "example_sentence_english": "The naturalist discovered a new plant species.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16464 + }, + { + "word": "niederlassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to settle down;to establish oneself", + "romanization": "niederlassen", + "example_sentence_native": "Er möchte sich in Berlin niederlassen.", + "example_sentence_english": "He wants to settle down in Berlin.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nieder", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16467 + }, + { + "word": "Notlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergency;predicament", + "romanization": "Notlage", + "example_sentence_native": "Sie befand sich in einer finanziellen Notlage.", + "example_sentence_english": "She was in a financial predicament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16468 + }, + { + "word": "Olympiade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympiad;Olympic Games", + "romanization": "Olympiade", + "example_sentence_native": "Die nächste Olympiade findet in vier Jahren statt.", + "example_sentence_english": "The next Olympiad will take place in four years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16469 + }, + { + "word": "Opium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opium", + "romanization": "Opium", + "example_sentence_native": "Opium ist eine stark wirkende Droge.", + "example_sentence_english": "Opium is a potent drug.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16470 + }, + { + "word": "Ortsgruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local group;chapter", + "romanization": "Ortsgruppe", + "example_sentence_native": "Die Ortsgruppe trifft sich jeden Dienstag.", + "example_sentence_english": "The local group meets every Tuesday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16472 + }, + { + "word": "Parlamentswahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliamentary election", + "romanization": "Parlamentswahl", + "example_sentence_native": "Die nächste Parlamentswahl findet im Herbst statt.", + "example_sentence_english": "The next parliamentary election will take place in autumn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16477 + }, + { + "word": "Piece", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piece (e.g.;musical;art)", + "romanization": "Piece", + "example_sentence_native": "Dieses Piece ist sehr modern.", + "example_sentence_english": "This piece is very modern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16480 + }, + { + "word": "Pokalsieger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cup winner", + "romanization": "Pokalsieger", + "example_sentence_native": "Der Pokalsieger wurde von den Fans gefeiert.", + "example_sentence_english": "The cup winner was celebrated by the fans.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16482 + }, + { + "word": "Polizeibericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police report", + "romanization": "Polizeibericht", + "example_sentence_native": "Der Polizeibericht enthielt alle wichtigen Details.", + "example_sentence_english": "The police report contained all important details.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16483 + }, + { + "word": "Populist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "populist", + "romanization": "Populist", + "example_sentence_native": "Der Politiker wurde als Populist kritisiert.", + "example_sentence_english": "The politician was criticized as a populist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16485 + }, + { + "word": "pragmatisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pragmatic", + "romanization": "pragmatisch", + "example_sentence_native": "Er traf eine pragmatische Entscheidung.", + "example_sentence_english": "He made a pragmatic decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16486 + }, + { + "word": "Praline", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "praline;chocolate", + "romanization": "Praline", + "example_sentence_native": "Sie aß eine köstliche Praline.", + "example_sentence_english": "She ate a delicious praline.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16487 + }, + { + "word": "Pump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pump", + "romanization": "Pump", + "example_sentence_native": "Der Pump liefert Wasser in den Garten.", + "example_sentence_english": "The pump delivers water to the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16488 + }, + { + "word": "Quadratkilometer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "square kilometer", + "romanization": "Quadratkilometer", + "example_sentence_native": "Die Fläche beträgt zehn Quadratkilometer.", + "example_sentence_english": "The area is ten square kilometers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16489 + }, + { + "word": "quantitativ", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantitative", + "romanization": "quantitativ", + "example_sentence_native": "Wir brauchen eine quantitative Analyse.", + "example_sentence_english": "We need a quantitative analysis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16490 + }, + { + "word": "Raid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid", + "romanization": "Raid", + "example_sentence_native": "Der Raid war erfolgreich.", + "example_sentence_english": "The raid was successful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16491 + }, + { + "word": "Receiver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receiver", + "romanization": "Receiver", + "example_sentence_native": "Der Receiver ist an den Fernseher angeschlossen.", + "example_sentence_english": "The receiver is connected to the television.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16492 + }, + { + "word": "rechtens", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lawful;legally", + "romanization": "rechtens", + "example_sentence_native": "Das Vorgehen war rechtens.", + "example_sentence_english": "The procedure was lawful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16493 + }, + { + "word": "Rechtsstaatlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "rule of law;constitutionalism", + "romanization": "Rechtsstaatlichkeit", + "example_sentence_native": "Die Rechtsstaatlichkeit ist ein Grundpfeiler der Demokratie.", + "example_sentence_english": "The rule of law is a cornerstone of democracy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16494 + }, + { + "word": "Rechtswissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisprudence;legal science", + "romanization": "Rechtswissenschaft", + "example_sentence_native": "Sie studiert Rechtswissenschaft an der Universität.", + "example_sentence_english": "She studies legal science at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16495 + }, + { + "word": "reihen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to line up;to arrange in a row", + "romanization": "reihen", + "example_sentence_native": "Die Bücher wurden im Regal gereiht.", + "example_sentence_english": "The books were arranged in a row on the shelf.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16496 + }, + { + "word": "Reisebüro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "travel agency", + "romanization": "Reisebüro", + "example_sentence_native": "Wir buchten die Reise im Reisebüro.", + "example_sentence_english": "We booked the trip at the travel agency.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16497 + }, + { + "word": "Romanze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "romance", + "romanization": "Romanze", + "example_sentence_native": "Es war eine schöne Romanze zwischen ihnen.", + "example_sentence_english": "It was a beautiful romance between them.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16498 + }, + { + "word": "Rosenkranz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rosary", + "romanization": "Rosenkranz", + "example_sentence_native": "Sie betete mit ihrem Rosenkranz.", + "example_sentence_english": "She prayed with her rosary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16499 + }, + { + "word": "schaufeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shovel", + "romanization": "schaufeln", + "example_sentence_native": "Er muss den Schnee vom Weg schaufeln.", + "example_sentence_english": "He has to shovel the snow off the path.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16502 + }, + { + "word": "scheren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shear;to bother", + "romanization": "scheren", + "example_sentence_native": "Das schert mich nicht.", + "example_sentence_english": "That doesn't bother me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16503 + }, + { + "word": "Schornstein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chimney", + "romanization": "Schornstein", + "example_sentence_native": "Rauch steigt aus dem Schornstein auf.", + "example_sentence_english": "Smoke rises from the chimney.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16504 + }, + { + "word": "Schotter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravel;crushed stone", + "romanization": "Schotter", + "example_sentence_native": "Der Weg war mit Schotter bedeckt.", + "example_sentence_english": "The path was covered with gravel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16505 + }, + { + "word": "Scout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scout", + "romanization": "Scout", + "example_sentence_native": "Der Scout entdeckte eine neue Route.", + "example_sentence_english": "The scout discovered a new route.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16507 + }, + { + "word": "Selbstwertgefühl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-esteem;self-worth", + "romanization": "Selbstwertgefühl", + "example_sentence_native": "Ein gesundes Selbstwertgefühl ist wichtig für das Wohlbefinden.", + "example_sentence_english": "Healthy self-esteem is important for well-being.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16508 + }, + { + "word": "Singular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "singular", + "romanization": "Singular", + "example_sentence_native": "Das Wort 'Katze' steht im Singular.", + "example_sentence_english": "The word 'cat' is in the singular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16511 + }, + { + "word": "Sinnbild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symbol;emblem", + "romanization": "Sinnbild", + "example_sentence_native": "Die Taube ist ein Sinnbild des Friedens.", + "example_sentence_english": "The dove is a symbol of peace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16512 + }, + { + "word": "Songwriter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "songwriter", + "romanization": "Songwriter", + "example_sentence_native": "Der Songwriter schrieb viele Hits.", + "example_sentence_english": "The songwriter wrote many hits.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16513 + }, + { + "word": "Sopran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soprano", + "romanization": "Sopran", + "example_sentence_native": "Sie singt im Chor den Sopran.", + "example_sentence_english": "She sings the soprano part in the choir.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16515 + }, + { + "word": "Sprachwissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "linguistics", + "romanization": "Sprachwissenschaft", + "example_sentence_native": "Sie studiert Sprachwissenschaft an der Universität.", + "example_sentence_english": "She studies linguistics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16516 + }, + { + "word": "Staatsmann", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statesman", + "romanization": "Staatsmann", + "example_sentence_native": "Er war ein angesehener Staatsmann.", + "example_sentence_english": "He was a respected statesman.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16518 + }, + { + "word": "Stadtmitte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city center;downtown", + "romanization": "Stadtmitte", + "example_sentence_native": "Das Hotel liegt in der Stadtmitte.", + "example_sentence_english": "The hotel is located in the city center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16519 + }, + { + "word": "Sternwarte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observatory", + "romanization": "Sternwarte", + "example_sentence_native": "Die Sternwarte bietet öffentliche Führungen an.", + "example_sentence_english": "The observatory offers public tours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16520 + }, + { + "word": "Studiengebühr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuition fee", + "romanization": "Studiengebühr", + "example_sentence_native": "In Deutschland gibt es meist keine Studiengebühren.", + "example_sentence_english": "In Germany, there are usually no tuition fees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16523 + }, + { + "word": "stürmisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stormy;turbulent", + "romanization": "stürmisch", + "example_sentence_native": "Das Wetter war stürmisch.", + "example_sentence_english": "The weather was stormy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16524 + }, + { + "word": "synthetisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synthetic", + "romanization": "synthetisch", + "example_sentence_native": "Viele moderne Stoffe sind synthetisch.", + "example_sentence_english": "Many modern fabrics are synthetic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16525 + }, + { + "word": "Säugling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infant;baby", + "romanization": "Säugling", + "example_sentence_native": "Der Säugling schlief friedlich in seinem Bettchen.", + "example_sentence_english": "The infant slept peacefully in its crib.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16526 + }, + { + "word": "Thunfisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tuna", + "romanization": "Thunfisch", + "example_sentence_native": "Ich esse gerne Thunfischsalat.", + "example_sentence_english": "I like to eat tuna salad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16527 + }, + { + "word": "Tilgung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repayment;amortization;cancellation", + "romanization": "Tilgung", + "example_sentence_native": "Die Tilgung des Kredits erfolgt monatlich.", + "example_sentence_english": "The repayment of the loan occurs monthly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16528 + }, + { + "word": "Tochtergesellschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsidiary company", + "romanization": "Tochtergesellschaft", + "example_sentence_native": "Das Unternehmen hat mehrere Tochtergesellschaften weltweit.", + "example_sentence_english": "The company has several subsidiary companies worldwide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16529 + }, + { + "word": "Trupp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troop;squad;party", + "romanization": "Trupp", + "example_sentence_native": "Ein Trupp Soldaten marschierte durch die Stadt.", + "example_sentence_english": "A troop of soldiers marched through the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16531 + }, + { + "word": "umleiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redirect;to divert", + "romanization": "umleiten", + "example_sentence_native": "Die Polizei musste den Verkehr umleiten.", + "example_sentence_english": "The police had to redirect the traffic.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "leiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16532 + }, + { + "word": "umschalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to switch over;to change (channel;mode)", + "romanization": "umschalten", + "example_sentence_native": "Kannst du bitte auf einen anderen Kanal umschalten?", + "example_sentence_english": "Can you please switch to another channel?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "schalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16533 + }, + { + "word": "Umverteilung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redistribution", + "romanization": "Umverteilung", + "example_sentence_native": "Die Umverteilung von Reichtum ist ein kontroverses Thema.", + "example_sentence_english": "The redistribution of wealth is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16534 + }, + { + "word": "unabdingbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indispensable;essential", + "romanization": "unabdingbar", + "example_sentence_native": "Vertrauen ist für eine gute Beziehung unabdingbar.", + "example_sentence_english": "Trust is indispensable for a good relationship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16535 + }, + { + "word": "Ungehorsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disobedience", + "romanization": "Ungehorsam", + "example_sentence_native": "Sein Ungehorsam führte zu Konsequenzen.", + "example_sentence_english": "His disobedience led to consequences.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16536 + }, + { + "word": "ungestraft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpunished;with impunity", + "romanization": "ungestraft", + "example_sentence_native": "Er konnte seine Taten nicht ungestraft begehen.", + "example_sentence_english": "He could not commit his deeds unpunished.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16537 + }, + { + "word": "unproblematisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unproblematic;straightforward", + "romanization": "unproblematisch", + "example_sentence_native": "Die Installation der Software war unproblematisch.", + "example_sentence_english": "The software installation was unproblematic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16538 + }, + { + "word": "Unstimmigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrepancy;disagreement;inconsistency", + "romanization": "Unstimmigkeit", + "example_sentence_native": "Es gab eine kleine Unstimmigkeit in den Daten.", + "example_sentence_english": "There was a small discrepancy in the data.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16539 + }, + { + "word": "Unwesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischief", + "romanization": "Unwesen", + "example_sentence_native": "Er treibt sein Unwesen in der Nachbarschaft.", + "example_sentence_english": "He's up to his mischief in the neighborhood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16540 + }, + { + "word": "Urwald", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primeval forest", + "romanization": "Urwald", + "example_sentence_native": "Der Urwald ist voller exotischer Tiere.", + "example_sentence_english": "The primeval forest is full of exotic animals.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16541 + }, + { + "word": "Verankerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anchoring", + "romanization": "Verankerung", + "example_sentence_native": "Die Verankerung des Schiffes war sicher.", + "example_sentence_english": "The anchoring of the ship was secure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16542 + }, + { + "word": "vergreifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a mistake", + "romanization": "vergreifen", + "example_sentence_native": "Er hat sich im Regal vergriffen.", + "example_sentence_english": "He made a mistake on the shelf (grabbed the wrong thing).", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16543 + }, + { + "word": "Versandkosten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shipping costs", + "romanization": "Versandkosten", + "example_sentence_native": "Die Versandkosten sind im Preis enthalten.", + "example_sentence_english": "The shipping costs are included in the price.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16544 + }, + { + "word": "verschlingen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devour", + "romanization": "verschlingen", + "example_sentence_native": "Das Kind verschlang das ganze Stück Kuchen.", + "example_sentence_english": "The child devoured the whole piece of cake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16545 + }, + { + "word": "Veto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veto", + "romanization": "Veto", + "example_sentence_native": "Der Präsident legte sein Veto ein.", + "example_sentence_english": "The president cast his veto.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16546 + }, + { + "word": "vorsichtshalber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as a precaution", + "romanization": "vorsichtshalber", + "example_sentence_native": "Ich habe vorsichtshalber eine Decke mitgenommen.", + "example_sentence_english": "I took a blanket just to be on the safe side.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16548 + }, + { + "word": "Waisenhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orphanage", + "romanization": "Waisenhaus", + "example_sentence_native": "Das Waisenhaus kümmert sich um viele Kinder.", + "example_sentence_english": "The orphanage takes care of many children.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16549 + }, + { + "word": "Weigerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refusal", + "romanization": "Weigerung", + "example_sentence_native": "Seine Weigerung überraschte uns alle.", + "example_sentence_english": "His refusal surprised us all.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16550 + }, + { + "word": "Weltreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "world trip", + "romanization": "Weltreise", + "example_sentence_native": "Sie träumt von einer Weltreise.", + "example_sentence_english": "She dreams of a world trip.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16553 + }, + { + "word": "Wimper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyelash", + "romanization": "Wimper", + "example_sentence_native": "Sie hatte eine Wimper auf ihrer Wange.", + "example_sentence_english": "She had an eyelash on her cheek.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16554 + }, + { + "word": "wohnhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resident", + "romanization": "wohnhaft", + "example_sentence_native": "Er ist seit 20 Jahren in Berlin wohnhaft.", + "example_sentence_english": "He has been resident in Berlin for 20 years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16555 + }, + { + "word": "Zahlungsmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "means of payment", + "romanization": "Zahlungsmittel", + "example_sentence_native": "Bargeld ist immer noch ein beliebtes Zahlungsmittel.", + "example_sentence_english": "Cash is still a popular means of payment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16556 + }, + { + "word": "Zange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pliers", + "romanization": "Zange", + "example_sentence_native": "Er benutzte eine Zange, um den Nagel zu entfernen.", + "example_sentence_english": "He used pliers to remove the nail.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16557 + }, + { + "word": "zuschicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to send", + "romanization": "zuschicken", + "example_sentence_native": "Könnten Sie mir die Unterlagen zuschicken?", + "example_sentence_english": "Could you send me the documents?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "schicken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16558 + }, + { + "word": "zusetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to add", + "romanization": "zusetzen", + "example_sentence_native": "Der Lärm setzte ihm sehr zu.", + "example_sentence_english": "The noise really affected him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16559 + }, + { + "word": "zurückholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to retrieve;to fetch back", + "romanization": "zurückholen", + "example_sentence_native": "Ich muss das Buch aus der Bibliothek zurückholen.", + "example_sentence_english": "I need to retrieve the book from the library.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16560 + }, + { + "word": "zusammenhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stick together;to hold together", + "romanization": "zusammenhalten", + "example_sentence_native": "In schwierigen Zeiten müssen wir zusammenhalten.", + "example_sentence_english": "In difficult times, we must stick together.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16561 + }, + { + "word": "zusammenwirken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cooperate;to interact", + "romanization": "zusammenwirken", + "example_sentence_native": "Die verschiedenen Abteilungen müssen eng zusammenwirken.", + "example_sentence_english": "The different departments must cooperate closely.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "wirken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16562 + }, + { + "word": "Zöllner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customs officer", + "romanization": "Zöllner", + "example_sentence_native": "Der Zöllner kontrollierte unsere Pässe.", + "example_sentence_english": "The customs officer checked our passports.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16563 + }, + { + "word": "Überlastung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overload;overwork", + "romanization": "Überlastung", + "example_sentence_native": "Die Überlastung des Systems führte zum Absturz.", + "example_sentence_english": "The system's overload led to the crash.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16564 + }, + { + "word": "überschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overwrite;to title", + "romanization": "überschreiben", + "example_sentence_native": "Bitte überschreiben Sie die alte Datei nicht.", + "example_sentence_english": "Please do not overwrite the old file.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16565 + }, + { + "word": "Abholung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "collection;pick-up", + "romanization": "Abholung", + "example_sentence_native": "Die Abholung der Ware ist morgen möglich.", + "example_sentence_english": "The collection of the goods is possible tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16566 + }, + { + "word": "Ackerland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arable land;farmland", + "romanization": "Ackerland", + "example_sentence_native": "Ein Großteil des Ackerlandes wird für den Anbau von Getreide genutzt.", + "example_sentence_english": "A large part of the farmland is used for growing grain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16567 + }, + { + "word": "Adventskalender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Advent calendar", + "romanization": "Adventskalender", + "example_sentence_native": "Die Kinder lieben ihren Adventskalender.", + "example_sentence_english": "The children love their Advent calendar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16568 + }, + { + "word": "Alk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "booze;alcohol (informal)", + "romanization": "Alk", + "example_sentence_native": "Er trinkt zu viel Alk.", + "example_sentence_english": "He drinks too much booze.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16573 + }, + { + "word": "Altenpflege", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elderly care;geriatric care", + "romanization": "Altenpflege", + "example_sentence_native": "Die Altenpflege ist ein wichtiger Beruf.", + "example_sentence_english": "Elderly care is an important profession.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16574 + }, + { + "word": "Anfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approach;journey;drive", + "romanization": "Anfahrt", + "example_sentence_native": "Die Anfahrt zum Hotel war lang.", + "example_sentence_english": "The drive to the hotel was long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16577 + }, + { + "word": "Anhalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hitchhiker", + "romanization": "Anhalter", + "example_sentence_native": "Ein Anhalter stand am Straßenrand.", + "example_sentence_english": "A hitchhiker stood by the roadside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16578 + }, + { + "word": "Arbeitsverhältnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employment relationship", + "romanization": "Arbeitsverhältnis", + "example_sentence_native": "Das Arbeitsverhältnis wurde nach einem Jahr beendet.", + "example_sentence_english": "The employment relationship was terminated after one year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16580 + }, + { + "word": "aufschlussreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informative;revealing", + "romanization": "aufschlussreich", + "example_sentence_native": "Die Studie lieferte aufschlussreiche Ergebnisse.", + "example_sentence_english": "The study provided informative results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16582 + }, + { + "word": "ausblenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fade out;to suppress", + "romanization": "ausblenden", + "example_sentence_native": "Er versuchte, die störenden Geräusche auszublenden.", + "example_sentence_english": "He tried to fade out the disturbing noises.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "blenden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16583 + }, + { + "word": "auslöschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extinguish;to wipe out", + "romanization": "auslöschen", + "example_sentence_native": "Die Kerze wurde vom Wind ausgelöscht.", + "example_sentence_english": "The candle was extinguished by the wind.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "löschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16584 + }, + { + "word": "Aussetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suspension;exposure", + "romanization": "Aussetzung", + "example_sentence_native": "Die Aussetzung der Bauarbeiten wurde angeordnet.", + "example_sentence_english": "The suspension of the construction work was ordered.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16585 + }, + { + "word": "azur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "azure;sky-blue", + "romanization": "azur", + "example_sentence_native": "Der Himmel war in einem tiefen Azurblau.", + "example_sentence_english": "The sky was in a deep azure blue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16586 + }, + { + "word": "befugt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authorized;entitled", + "romanization": "befugt", + "example_sentence_native": "Nur befugtes Personal hat Zutritt.", + "example_sentence_english": "Only authorized personnel have access.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16587 + }, + { + "word": "Begierde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desire;craving", + "romanization": "Begierde", + "example_sentence_native": "Seine Begierde nach Wissen war unstillbar.", + "example_sentence_english": "His desire for knowledge was insatiable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16588 + }, + { + "word": "beinah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almost;nearly", + "romanization": "beinah", + "example_sentence_native": "Ich bin beinah hingefallen.", + "example_sentence_english": "I almost fell down.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16589 + }, + { + "word": "bekunden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to express;to declare", + "romanization": "bekunden", + "example_sentence_native": "Sie bekundete ihr tiefstes Beileid.", + "example_sentence_english": "She expressed her deepest condolences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16590 + }, + { + "word": "belastend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burdensome;stressful", + "romanization": "belastend", + "example_sentence_native": "Die Situation war sehr belastend für alle Beteiligten.", + "example_sentence_english": "The situation was very stressful for everyone involved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16591 + }, + { + "word": "Bergung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salvage;recovery", + "romanization": "Bergung", + "example_sentence_native": "Die Bergung des Schiffes dauerte mehrere Tage.", + "example_sentence_english": "The salvage of the ship took several days.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16592 + }, + { + "word": "beschließen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decide;to conclude", + "romanization": "beschließen", + "example_sentence_native": "Der Vorstand beschloss, das Projekt zu starten.", + "example_sentence_english": "The board decided to start the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16593 + }, + { + "word": "Bestzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "best time;personal best", + "romanization": "Bestzeit", + "example_sentence_native": "Sie lief eine neue Bestzeit im Marathon.", + "example_sentence_english": "She ran a new personal best in the marathon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16594 + }, + { + "word": "Blizzard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blizzard", + "romanization": "Blizzard", + "example_sentence_native": "Ein starker Blizzard fegte über das Land.", + "example_sentence_english": "A strong blizzard swept across the country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16596 + }, + { + "word": "Bolzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bolt;pin", + "romanization": "Bolzen", + "example_sentence_native": "Der Bolzen hält die Konstruktion zusammen.", + "example_sentence_english": "The bolt holds the construction together.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16597 + }, + { + "word": "chic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chic;stylish", + "romanization": "chic", + "example_sentence_native": "Sie trägt ein sehr schickes Kleid.", + "example_sentence_english": "She is wearing a very chic dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16602 + }, + { + "word": "Demütigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliation", + "romanization": "Demütigung", + "example_sentence_native": "Die Demütigung war schwer zu ertragen.", + "example_sentence_english": "The humiliation was hard to bear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16608 + }, + { + "word": "Detective", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detective", + "romanization": "Detective", + "example_sentence_native": "Der Detective löste den Fall schnell.", + "example_sentence_english": "The detective solved the case quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16609 + }, + { + "word": "Ehrfurcht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reverence;awe", + "romanization": "Ehrfurcht", + "example_sentence_native": "Er empfand tiefe Ehrfurcht vor der Natur.", + "example_sentence_english": "He felt deep reverence for nature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16612 + }, + { + "word": "Eigenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiarity;characteristic", + "romanization": "Eigenheit", + "example_sentence_native": "Jeder Mensch hat seine Eigenheiten.", + "example_sentence_english": "Every person has their peculiarities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16613 + }, + { + "word": "eigenhändig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personally;by hand", + "romanization": "eigenhändig", + "example_sentence_native": "Er hat den Brief eigenhändig unterschrieben.", + "example_sentence_english": "He signed the letter personally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16614 + }, + { + "word": "Eigentor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "own goal (in sports)", + "romanization": "Eigentor", + "example_sentence_native": "Der Spieler schoss ein Eigentor.", + "example_sentence_english": "The player scored an own goal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16615 + }, + { + "word": "Eingangstür", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "entrance door;front door", + "romanization": "Eingangstür", + "example_sentence_native": "Die Eingangstür war verschlossen.", + "example_sentence_english": "The entrance door was locked.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16616 + }, + { + "word": "einhundert", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one hundred", + "romanization": "einhundert", + "example_sentence_native": "Das sind einhundert Euro.", + "example_sentence_english": "That is one hundred euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 16617 + }, + { + "word": "einstweilig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provisional;temporary", + "romanization": "einstweilig", + "example_sentence_native": "Es wurde eine einstweilige Verfügung erlassen.", + "example_sentence_english": "A provisional injunction was issued.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16618 + }, + { + "word": "Entscheidungsträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decision-maker", + "romanization": "Entscheidungsträger", + "example_sentence_native": "Die Entscheidungsträger müssen eine schnelle Lösung finden.", + "example_sentence_english": "The decision-makers must find a quick solution.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16620 + }, + { + "word": "entschädigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compensate;to indemnify", + "romanization": "entschädigen", + "example_sentence_native": "Sie wurden für den Schaden entschädigt.", + "example_sentence_english": "They were compensated for the damage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16621 + }, + { + "word": "ergreifend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moving;touching;poignant", + "romanization": "ergreifend", + "example_sentence_native": "Es war eine sehr ergreifende Rede.", + "example_sentence_english": "It was a very moving speech.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16622 + }, + { + "word": "Eurozone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Eurozone", + "romanization": "Eurozone", + "example_sentence_native": "Die Eurozone umfasst viele europäische Länder.", + "example_sentence_english": "The Eurozone includes many European countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16625 + }, + { + "word": "Fachliteratur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialist literature;technical literature", + "romanization": "Fachliteratur", + "example_sentence_native": "Er liest viel Fachliteratur für seine Forschung.", + "example_sentence_english": "He reads a lot of specialist literature for his research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16628 + }, + { + "word": "Fanatiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fanatic", + "romanization": "Fanatiker", + "example_sentence_native": "Er ist ein Fanatiker seiner Lieblingsmannschaft.", + "example_sentence_english": "He is a fanatic of his favorite team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16629 + }, + { + "word": "Feministin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feminist (female)", + "romanization": "Feministin", + "example_sentence_native": "Sie ist eine überzeugte Feministin.", + "example_sentence_english": "She is a convinced feminist.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16630 + }, + { + "word": "Fixierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fixation;fixing;attachment", + "romanization": "Fixierung", + "example_sentence_native": "Die Fixierung des Problems ist wichtig.", + "example_sentence_english": "The fixing of the problem is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16631 + }, + { + "word": "Frauenfussball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "women's football;soccer", + "romanization": "Frauenfussball", + "example_sentence_native": "Frauenfussball wird immer populärer.", + "example_sentence_english": "Women's football is becoming more and more popular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16633 + }, + { + "word": "Fremdenfeindlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "xenophobia;hostility towards foreigners", + "romanization": "Fremdenfeindlichkeit", + "example_sentence_native": "Fremdenfeindlichkeit ist ein ernstes Problem in der Gesellschaft.", + "example_sentence_english": "Xenophobia is a serious problem in society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16634 + }, + { + "word": "Führungsposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership position;management position", + "romanization": "Führungsposition", + "example_sentence_native": "Sie strebt eine Führungsposition im Unternehmen an.", + "example_sentence_english": "She aims for a leadership position in the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16635 + }, + { + "word": "Geborgenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security;safety;sense of security;comfort", + "romanization": "Geborgenheit", + "example_sentence_native": "Das Kind fühlte sich in den Armen der Mutter voller Geborgenheit.", + "example_sentence_english": "The child felt a sense of security in its mother's arms.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16637 + }, + { + "word": "Geburtstagsfeier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "birthday party", + "romanization": "Geburtstagsfeier", + "example_sentence_native": "Wir gehen heute Abend zu einer Geburtstagsfeier.", + "example_sentence_english": "We are going to a birthday party tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16638 + }, + { + "word": "Gebärmutter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uterus;womb", + "romanization": "Gebärmutter", + "example_sentence_native": "Die Gebärmutter ist ein wichtiges Organ im weiblichen Körper.", + "example_sentence_english": "The uterus is an important organ in the female body.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16639 + }, + { + "word": "Genick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nape of the neck", + "romanization": "Genick", + "example_sentence_native": "Er brach sich das Genick beim Sturz.", + "example_sentence_english": "He broke his neck in the fall.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16640 + }, + { + "word": "Gesundheitsminister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Minister of Health", + "romanization": "Gesundheitsminister", + "example_sentence_native": "Der Gesundheitsminister kündigte neue Maßnahmen an.", + "example_sentence_english": "The Minister of Health announced new measures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16641 + }, + { + "word": "wickeln", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wrap", + "romanization": "wickeln", + "example_sentence_native": "Sie wickelt das Baby in eine Decke.", + "example_sentence_english": "She wraps the baby in a blanket.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16642 + }, + { + "word": "Gewächshaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greenhouse", + "romanization": "Gewächshaus", + "example_sentence_native": "Im Gewächshaus wachsen Tomaten und Gurken.", + "example_sentence_english": "Tomatoes and cucumbers grow in the greenhouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16643 + }, + { + "word": "Gigant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "giant", + "romanization": "Gigant", + "example_sentence_native": "Er war ein Gigant in seinem Fachgebiet.", + "example_sentence_english": "He was a giant in his field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16644 + }, + { + "word": "gleichgestellt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equal", + "romanization": "gleichgestellt", + "example_sentence_native": "Männer und Frauen sollten gleichgestellt sein.", + "example_sentence_english": "Men and women should be equal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16645 + }, + { + "word": "Globe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globe", + "romanization": "Globe", + "example_sentence_native": "Der Lehrer zeigte den Schülern den Globe.", + "example_sentence_english": "The teacher showed the students the globe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16646 + }, + { + "word": "Golfplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "golf course", + "romanization": "Golfplatz", + "example_sentence_native": "Sie verbringen den Sonntag auf dem Golfplatz.", + "example_sentence_english": "They spend Sunday on the golf course.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16647 + }, + { + "word": "grauenhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horrible", + "romanization": "grauenhaft", + "example_sentence_native": "Das Wetter war grauenhaft.", + "example_sentence_english": "The weather was dreadful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16648 + }, + { + "word": "Heiratsantrag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marriage proposal", + "romanization": "Heiratsantrag", + "example_sentence_native": "Er machte ihr einen Heiratsantrag.", + "example_sentence_english": "He made her a marriage proposal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16652 + }, + { + "word": "herumlaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run around", + "romanization": "herumlaufen", + "example_sentence_native": "Die Kinder laufen im Garten herum.", + "example_sentence_english": "The children run around in the garden.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "herum", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16653 + }, + { + "word": "Hilfsorganisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aid organization", + "romanization": "Hilfsorganisation", + "example_sentence_native": "Sie spendete an eine Hilfsorganisation.", + "example_sentence_english": "She donated to an aid organization.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16655 + }, + { + "word": "Hochtour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high-altitude tour", + "romanization": "Hochtour", + "example_sentence_native": "Die Hochtour war anspruchsvoll, aber lohnend.", + "example_sentence_english": "The high-altitude tour was demanding but rewarding.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16656 + }, + { + "word": "homogen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homogeneous", + "romanization": "homogen", + "example_sentence_native": "Die Mischung sollte homogen sein.", + "example_sentence_english": "The mixture should be homogeneous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16657 + }, + { + "word": "Hotspot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hotspot", + "romanization": "Hotspot", + "example_sentence_native": "Wir haben hier einen WLAN-Hotspot.", + "example_sentence_english": "We have a Wi-Fi hotspot here.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16658 + }, + { + "word": "Hörsaal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lecture hall", + "romanization": "Hörsaal", + "example_sentence_native": "Die Vorlesung findet im großen Hörsaal statt.", + "example_sentence_english": "The lecture takes place in the large lecture hall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16659 + }, + { + "word": "ill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bad;evil;ill", + "romanization": "ill", + "example_sentence_native": "Er hat einen illen Ruf.", + "example_sentence_english": "He has a bad reputation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16660 + }, + { + "word": "Influencer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influencer", + "romanization": "Influencer", + "example_sentence_native": "Der Influencer hat viele Follower.", + "example_sentence_english": "The influencer has many followers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16662 + }, + { + "word": "Inkompetenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompetence", + "romanization": "Inkompetenz", + "example_sentence_native": "Seine Inkompetenz war offensichtlich.", + "example_sentence_english": "His incompetence was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16663 + }, + { + "word": "Kalkulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calculation;estimate", + "romanization": "Kalkulation", + "example_sentence_native": "Die Kalkulation der Kosten war schwierig.", + "example_sentence_english": "The calculation of the costs was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16667 + }, + { + "word": "Kameradschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camaraderie;fellowship", + "romanization": "Kameradschaft", + "example_sentence_native": "Es herrschte eine gute Kameradschaft im Team.", + "example_sentence_english": "There was good camaraderie in the team.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16668 + }, + { + "word": "Kapitalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalist", + "romanization": "Kapitalist", + "example_sentence_native": "Er wurde als Kapitalist kritisiert.", + "example_sentence_english": "He was criticized as a capitalist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16669 + }, + { + "word": "kategorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "categorical", + "romanization": "kategorisch", + "example_sentence_native": "Er lehnte den Vorschlag kategorisch ab.", + "example_sentence_english": "He categorically rejected the proposal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16670 + }, + { + "word": "Kirchenmusik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "church music", + "romanization": "Kirchenmusik", + "example_sentence_native": "Sie singt im Chor für Kirchenmusik.", + "example_sentence_english": "She sings in the choir for church music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16673 + }, + { + "word": "Klebeband", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adhesive tape;sticky tape", + "romanization": "Klebeband", + "example_sentence_native": "Ich brauche Klebeband, um das zu reparieren.", + "example_sentence_english": "I need adhesive tape to fix that.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16674 + }, + { + "word": "Kodex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "code (of conduct;laws)", + "romanization": "Kodex", + "example_sentence_native": "Sie halten sich an einen strengen Kodex.", + "example_sentence_english": "They adhere to a strict code.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16676 + }, + { + "word": "Kooperationspartner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cooperation partner;partner (in cooperation)", + "romanization": "Kooperationspartner", + "example_sentence_native": "Wir suchen einen neuen Kooperationspartner.", + "example_sentence_english": "We are looking for a new cooperation partner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16677 + }, + { + "word": "Krankenpflege", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing;patient care", + "romanization": "Krankenpflege", + "example_sentence_native": "Sie studiert Krankenpflege an der Universität.", + "example_sentence_english": "She studies nursing at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16678 + }, + { + "word": "Kriegsführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "warfare", + "romanization": "Kriegsführung", + "example_sentence_native": "Die moderne Kriegsführung ist komplex.", + "example_sentence_english": "Modern warfare is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16679 + }, + { + "word": "Kunstmuseum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "art museum", + "romanization": "Kunstmuseum", + "example_sentence_native": "Das Kunstmuseum hat eine beeindruckende Sammlung.", + "example_sentence_english": "The art museum has an impressive collection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16680 + }, + { + "word": "kunstvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artistic;artful", + "romanization": "kunstvoll", + "example_sentence_native": "Sie schuf ein kunstvolles Gemälde.", + "example_sentence_english": "She created an artistic painting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16681 + }, + { + "word": "Körperschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corporation;body (corporate)", + "romanization": "Körperschaft", + "example_sentence_native": "Eine Körperschaft des öffentlichen Rechts hat besondere Befugnisse.", + "example_sentence_english": "A public corporation has special powers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16684 + }, + { + "word": "Legitimität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimacy", + "romanization": "Legitimität", + "example_sentence_native": "Die Legitimität der Regierung wurde in Frage gestellt.", + "example_sentence_english": "The legitimacy of the government was questioned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16686 + }, + { + "word": "lokalisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to localize;to locate", + "romanization": "lokalisieren", + "example_sentence_native": "Wir müssen die Fehlerquelle lokalisieren.", + "example_sentence_english": "We need to locate the source of the error.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16689 + }, + { + "word": "magnetisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnetic", + "romanization": "magnetisch", + "example_sentence_native": "Eisen ist ein magnetisches Material.", + "example_sentence_english": "Iron is a magnetic material.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16692 + }, + { + "word": "Makel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flaw;blemish;defect", + "romanization": "Makel", + "example_sentence_native": "Das Produkt hatte einen kleinen Makel.", + "example_sentence_english": "The product had a small flaw.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16693 + }, + { + "word": "managen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manage", + "romanization": "managen", + "example_sentence_native": "Er muss viele Projekte gleichzeitig managen.", + "example_sentence_english": "He has to manage many projects simultaneously.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16694 + }, + { + "word": "Marktgemeinde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market town", + "romanization": "Marktgemeinde", + "example_sentence_native": "Die Marktgemeinde veranstaltet jedes Jahr ein großes Fest.", + "example_sentence_english": "The market town hosts a big festival every year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16696 + }, + { + "word": "Meinungsverschiedenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagreement;difference of opinion", + "romanization": "Meinungsverschiedenheit", + "example_sentence_native": "Es gab eine Meinungsverschiedenheit über den besten Weg.", + "example_sentence_english": "There was a disagreement about the best way.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16697 + }, + { + "word": "minütig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minute-long (as in X-minute-long)", + "romanization": "minütig", + "example_sentence_native": "Das ist eine zehnminütige Pause.", + "example_sentence_english": "That is a ten-minute-long break.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16701 + }, + { + "word": "mitsingen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sing along", + "romanization": "mitsingen", + "example_sentence_native": "Alle wollten mitsingen.", + "example_sentence_english": "Everyone wanted to sing along.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "singen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16702 + }, + { + "word": "mittelständisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medium-sized (business);SME-related", + "romanization": "mittelständisch", + "example_sentence_native": "Viele mittelständische Unternehmen sind in Deutschland erfolgreich.", + "example_sentence_english": "Many medium-sized businesses are successful in Germany.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16703 + }, + { + "word": "Mixer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blender;mixer", + "romanization": "Mixer", + "example_sentence_native": "Ich brauche einen Mixer für den Smoothie.", + "example_sentence_english": "I need a blender for the smoothie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16704 + }, + { + "word": "Morddrohung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "death threat", + "romanization": "Morddrohung", + "example_sentence_native": "Er erhielt eine Morddrohung.", + "example_sentence_english": "He received a death threat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16705 + }, + { + "word": "märkisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of the Mark (Brandenburg);Marchian", + "romanization": "märkisch", + "example_sentence_native": "Die märkische Landschaft ist sehr flach.", + "example_sentence_english": "The Marchian landscape is very flat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16709 + }, + { + "word": "naheliegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obvious;plausible;close at hand", + "romanization": "naheliegend", + "example_sentence_native": "Das ist eine naheliegende Lösung.", + "example_sentence_english": "That is an obvious solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16710 + }, + { + "word": "Nebeneffekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side effect", + "romanization": "Nebeneffekt", + "example_sentence_native": "Die Medizin hat keine Nebeneffekte.", + "example_sentence_english": "The medicine has no side effects.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16711 + }, + { + "word": "Notenbank", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "central bank", + "romanization": "Notenbank", + "example_sentence_native": "Die Europäische Zentralbank ist eine Notenbank.", + "example_sentence_english": "The European Central Bank is a central bank.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16714 + }, + { + "word": "nuklear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear", + "romanization": "nuklear", + "example_sentence_native": "Die nukleare Energie ist ein kontroverses Thema.", + "example_sentence_english": "Nuclear energy is a controversial topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16715 + }, + { + "word": "Ohrwurm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earworm (catchy tune)", + "romanization": "Ohrwurm", + "example_sentence_native": "Ich habe einen Ohrwurm von diesem Lied.", + "example_sentence_english": "I have an earworm from this song.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16716 + }, + { + "word": "Olympiastadion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympic Stadium", + "romanization": "Olympiastadion", + "example_sentence_native": "Das Olympiastadion in Berlin ist sehr groß.", + "example_sentence_english": "The Olympic Stadium in Berlin is very large.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16717 + }, + { + "word": "Orkan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurricane;severe gale", + "romanization": "Orkan", + "example_sentence_native": "Ein starker Orkan fegte über das Land.", + "example_sentence_english": "A strong hurricane swept across the country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16719 + }, + { + "word": "osmanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ottoman", + "romanization": "osmanisch", + "example_sentence_native": "Das Osmanische Reich war sehr groß.", + "example_sentence_english": "The Ottoman Empire was very large.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16720 + }, + { + "word": "pfälzisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Palatinate (related to the Palatinate region)", + "romanization": "pfälzisch", + "example_sentence_native": "Er spricht einen pfälzischen Dialekt.", + "example_sentence_english": "He speaks a Palatinate dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16722 + }, + { + "word": "pochen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to knock;to pound;to insist", + "romanization": "pochen", + "example_sentence_native": "Mein Herz pochte vor Aufregung.", + "example_sentence_english": "My heart was pounding with excitement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16723 + }, + { + "word": "Polizeichef", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police chief", + "romanization": "Polizeichef", + "example_sentence_native": "Der Polizeichef gab eine Erklärung ab.", + "example_sentence_english": "The police chief made a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16724 + }, + { + "word": "Polizeirevier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police station;police precinct", + "romanization": "Polizeirevier", + "example_sentence_native": "Sie gingen zum Polizeirevier, um Anzeige zu erstatten.", + "example_sentence_english": "They went to the police station to file a report.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16725 + }, + { + "word": "projizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to project", + "romanization": "projizieren", + "example_sentence_native": "Er projizierte das Bild an die Wand.", + "example_sentence_english": "He projected the image onto the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16727 + }, + { + "word": "Prolog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prologue", + "romanization": "Prolog", + "example_sentence_native": "Der Prolog des Buches war sehr spannend.", + "example_sentence_english": "The prologue of the book was very exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16728 + }, + { + "word": "Prophezeiung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prophecy", + "romanization": "Prophezeiung", + "example_sentence_native": "Die alte Prophezeiung erfüllte sich.", + "example_sentence_english": "The old prophecy came true.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16729 + }, + { + "word": "Prämisse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "premise", + "romanization": "Prämisse", + "example_sentence_native": "Seine Argumentation basiert auf einer falschen Prämisse.", + "example_sentence_english": "His argumentation is based on a false premise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16730 + }, + { + "word": "Präsidentschaftswahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidential election", + "romanization": "Präsidentschaftswahl", + "example_sentence_native": "Die Präsidentschaftswahl findet nächstes Jahr statt.", + "example_sentence_english": "The presidential election will take place next year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16731 + }, + { + "word": "Quad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quad bike;ATV", + "romanization": "Quad", + "example_sentence_native": "Er fuhr mit seinem Quad durch das Gelände.", + "example_sentence_english": "He rode his quad bike through the terrain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16733 + }, + { + "word": "Raster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grid;raster;pattern", + "romanization": "Raster", + "example_sentence_native": "Das Bild wurde in einem feinen Raster dargestellt.", + "example_sentence_english": "The image was displayed in a fine grid.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16734 + }, + { + "word": "Rauchmelder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoke detector", + "romanization": "Rauchmelder", + "example_sentence_native": "Jeder Haushalt sollte einen Rauchmelder haben.", + "example_sentence_english": "Every household should have a smoke detector.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16735 + }, + { + "word": "rauswerfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw out;to kick out", + "romanization": "rauswerfen", + "example_sentence_native": "Er wurde aus der Bar rausgeworfen.", + "example_sentence_english": "He was thrown out of the bar.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "werfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16736 + }, + { + "word": "raussuchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pick out;to look up (and find)", + "romanization": "raussuchen", + "example_sentence_native": "Kannst du mir bitte die Informationen raussuchen?", + "example_sentence_english": "Can you please look up the information for me?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "suchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16737 + }, + { + "word": "Rechtschreibfehler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spelling mistake", + "romanization": "Rechtschreibfehler", + "example_sentence_native": "Der Text enthielt viele Rechtschreibfehler.", + "example_sentence_english": "The text contained many spelling mistakes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16738 + }, + { + "word": "reformieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reform", + "romanization": "reformieren", + "example_sentence_native": "Die Regierung plant, das Bildungssystem zu reformieren.", + "example_sentence_english": "The government plans to reform the education system.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16739 + }, + { + "word": "Rennrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racing bicycle", + "romanization": "Rennrad", + "example_sentence_native": "Er fährt jeden Tag mit seinem Rennrad zur Arbeit.", + "example_sentence_english": "He rides his racing bicycle to work every day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16741 + }, + { + "word": "rothaarig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "red-haired", + "romanization": "rothaarig", + "example_sentence_native": "Sie ist ein rothaariges Mädchen.", + "example_sentence_english": "She is a red-haired girl.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16747 + }, + { + "word": "rumliegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lie around", + "romanization": "rumliegen", + "example_sentence_native": "Die Bücher liegen nur rum.", + "example_sentence_english": "The books are just lying around.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rum", + "base_verb": "liegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16748 + }, + { + "word": "Runner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "runner", + "romanization": "Runner", + "example_sentence_native": "Der Marathonläufer ist ein schneller Runner.", + "example_sentence_english": "The marathon runner is a fast runner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16749 + }, + { + "word": "Sabotage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sabotage", + "romanization": "Sabotage", + "example_sentence_native": "Die Sabotage des Systems verursachte große Probleme.", + "example_sentence_english": "The sabotage of the system caused big problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16750 + }, + { + "word": "Schlafstörung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleep disorder", + "romanization": "Schlafstörung", + "example_sentence_native": "Viele Menschen leiden unter Schlafstörungen.", + "example_sentence_english": "Many people suffer from sleep disorders.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16751 + }, + { + "word": "Schmuckstück", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piece of jewelry", + "romanization": "Schmuckstück", + "example_sentence_native": "Sie trug ein wunderschönes Schmuckstück.", + "example_sentence_english": "She wore a beautiful piece of jewelry.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16752 + }, + { + "word": "Schulklasse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school class", + "romanization": "Schulklasse", + "example_sentence_native": "Unsere Schulklasse hat einen Ausflug gemacht.", + "example_sentence_english": "Our school class went on a trip.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16753 + }, + { + "word": "Schwägerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sister-in-law", + "romanization": "Schwägerin", + "example_sentence_native": "Meine Schwägerin kommt uns nächste Woche besuchen.", + "example_sentence_english": "My sister-in-law is visiting us next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16754 + }, + { + "word": "Sieb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sieve", + "romanization": "Sieb", + "example_sentence_native": "Bitte gib mir das Sieb, um die Nudeln abzugießen.", + "example_sentence_english": "Please give me the sieve to drain the pasta.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16756 + }, + { + "word": "sitzend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sitting", + "romanization": "sitzend", + "example_sentence_native": "Der sitzende Mann las ein Buch.", + "example_sentence_english": "The sitting man read a book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16758 + }, + { + "word": "sorgsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careful;diligent", + "romanization": "sorgsam", + "example_sentence_native": "Er arbeitet sehr sorgsam an seinen Projekten.", + "example_sentence_english": "He works very carefully on his projects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16760 + }, + { + "word": "spassig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funny;amusing", + "romanization": "spassig", + "example_sentence_native": "Das war eine spassige Geschichte.", + "example_sentence_english": "That was a funny story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16761 + }, + { + "word": "Sphäre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sphere;realm", + "romanization": "Sphäre", + "example_sentence_native": "Die Erde ist eine Kugel oder Sphäre.", + "example_sentence_english": "The Earth is a globe or sphere.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16762 + }, + { + "word": "Sportfreund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sports enthusiast;fellow sportsman", + "romanization": "Sportfreund", + "example_sentence_native": "Er ist ein großer Sportfreund und geht oft ins Stadion.", + "example_sentence_english": "He is a big sports enthusiast and often goes to the stadium.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16763 + }, + { + "word": "Sprachkenntnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "language proficiency;knowledge", + "romanization": "Sprachkenntnis", + "example_sentence_native": "Gute Sprachkenntnisse sind im Ausland sehr hilfreich.", + "example_sentence_english": "Good language proficiency is very helpful abroad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16764 + }, + { + "word": "sprechend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaking;eloquent;telling", + "romanization": "sprechend", + "example_sentence_native": "Das sprechende Beispiel verdeutlicht die Situation.", + "example_sentence_english": "The telling example clarifies the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16765 + }, + { + "word": "Spülmaschine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dishwasher", + "romanization": "Spülmaschine", + "example_sentence_native": "Die Spülmaschine ist kaputt.", + "example_sentence_english": "The dishwasher is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16766 + }, + { + "word": "Staatsexamen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state examination", + "romanization": "Staatsexamen", + "example_sentence_native": "Sie hat ihr Staatsexamen mit Auszeichnung bestanden.", + "example_sentence_english": "She passed her state examination with distinction.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16767 + }, + { + "word": "Stadtmuseum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city museum", + "romanization": "Stadtmuseum", + "example_sentence_native": "Wir besuchen morgen das Stadtmuseum.", + "example_sentence_english": "We are visiting the city museum tomorrow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16768 + }, + { + "word": "stilistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stylistic", + "romanization": "stilistisch", + "example_sentence_native": "Der Text hat einige stilistische Schwächen.", + "example_sentence_english": "The text has some stylistic weaknesses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16769 + }, + { + "word": "Stromverbrauch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electricity consumption", + "romanization": "Stromverbrauch", + "example_sentence_native": "Wir müssen unseren Stromverbrauch senken.", + "example_sentence_english": "We need to reduce our electricity consumption.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16771 + }, + { + "word": "subtil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subtle", + "romanization": "subtil", + "example_sentence_native": "Er bemerkte die subtilen Unterschiede nicht.", + "example_sentence_english": "He didn't notice the subtle differences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16772 + }, + { + "word": "südafrikanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South African", + "romanization": "südafrikanisch", + "example_sentence_native": "Sie liebt südafrikanische Musik.", + "example_sentence_english": "She loves South African music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16773 + }, + { + "word": "Sündenbock", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scapegoat", + "romanization": "Sündenbock", + "example_sentence_native": "Er wurde zum Sündenbock gemacht.", + "example_sentence_english": "He was made the scapegoat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16775 + }, + { + "word": "Taille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waist", + "romanization": "Taille", + "example_sentence_native": "Sie hat eine schlanke Taille.", + "example_sentence_english": "She has a slender waist.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16776 + }, + { + "word": "Term", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "term;deadline;appointment", + "romanization": "Term", + "example_sentence_native": "Wir haben einen wichtigen Term nächste Woche.", + "example_sentence_english": "We have an important appointment next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16779 + }, + { + "word": "Terrororganisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrorist organization", + "romanization": "Terrororganisation", + "example_sentence_native": "Die Terrororganisation wurde von der Regierung verurteilt.", + "example_sentence_english": "The terrorist organization was condemned by the government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16780 + }, + { + "word": "Trab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trot", + "romanization": "Trab", + "example_sentence_native": "Das Pferd ging in einen schnellen Trab über.", + "example_sentence_english": "The horse transitioned into a fast trot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16782 + }, + { + "word": "Trauerspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragedy;sad play", + "romanization": "Trauerspiel", + "example_sentence_native": "Das ganze Ereignis war ein wahres Trauerspiel.", + "example_sentence_english": "The whole event was a true tragedy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16783 + }, + { + "word": "Trigger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger", + "romanization": "Trigger", + "example_sentence_native": "Dieser Geruch kann ein Trigger für alte Erinnerungen sein.", + "example_sentence_english": "This smell can be a trigger for old memories.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16785 + }, + { + "word": "Ultimatum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimatum", + "romanization": "Ultimatum", + "example_sentence_native": "Die Gewerkschaft stellte der Firma ein Ultimatum.", + "example_sentence_english": "The union gave the company an ultimatum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16787 + }, + { + "word": "umlegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lay down;to switch over", + "romanization": "umlegen", + "example_sentence_native": "Er musste den Schalter umlegen.", + "example_sentence_english": "He had to flip the switch.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16788 + }, + { + "word": "umsetzbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible;implementable", + "romanization": "umsetzbar", + "example_sentence_native": "Die Idee ist gut, aber nicht umsetzbar.", + "example_sentence_english": "The idea is good, but not implementable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16789 + }, + { + "word": "Unbehagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discomfort;unease", + "romanization": "Unbehagen", + "example_sentence_native": "Er empfand ein tiefes Unbehagen bei dem Gedanken.", + "example_sentence_english": "He felt a deep discomfort at the thought.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16790 + }, + { + "word": "uncool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncool", + "romanization": "uncool", + "example_sentence_native": "Das ist eine total uncoole Sache.", + "example_sentence_english": "That's a totally uncool thing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16791 + }, + { + "word": "Unendlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinity;endlessness", + "romanization": "Unendlichkeit", + "example_sentence_native": "Der Himmel erstreckte sich in die Unendlichkeit.", + "example_sentence_english": "The sky stretched into infinity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16792 + }, + { + "word": "ungemütlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncomfortable;unpleasant;bleak", + "romanization": "ungemütlich", + "example_sentence_native": "Das Wetter war heute sehr ungemütlich.", + "example_sentence_english": "The weather was very unpleasant today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16793 + }, + { + "word": "ungut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad;unpleasant;ill-fated", + "romanization": "ungut", + "example_sentence_native": "Er hatte ein ungutes Gefühl bei der Sache.", + "example_sentence_english": "He had a bad feeling about the matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16794 + }, + { + "word": "Unmöglichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impossibility", + "romanization": "Unmöglichkeit", + "example_sentence_native": "Die Unmöglichkeit des Projekts wurde schnell klar.", + "example_sentence_english": "The impossibility of the project quickly became clear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16795 + }, + { + "word": "Unordnung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mess;disorder", + "romanization": "Unordnung", + "example_sentence_native": "Sein Zimmer war in völliger Unordnung.", + "example_sentence_english": "His room was in complete disorder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16796 + }, + { + "word": "Verallgemeinerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generalization", + "romanization": "Verallgemeinerung", + "example_sentence_native": "Eine solche Verallgemeinerung ist oft zu einfach.", + "example_sentence_english": "Such a generalization is often too simple.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16800 + }, + { + "word": "Veranlagung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predisposition;aptitude", + "romanization": "Veranlagung", + "example_sentence_native": "Er hat eine natürliche Veranlagung für Musik.", + "example_sentence_english": "He has a natural aptitude for music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16801 + }, + { + "word": "veranschaulichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to illustrate;to demonstrate", + "romanization": "veranschaulichen", + "example_sentence_native": "Können Sie das bitte mit einem Beispiel veranschaulichen?", + "example_sentence_english": "Can you please illustrate that with an example?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16802 + }, + { + "word": "verblüffend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonishing;surprising", + "romanization": "verblüffend", + "example_sentence_native": "Das Ergebnis war verblüffend einfach.", + "example_sentence_english": "The result was astonishingly simple.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16803 + }, + { + "word": "Verleumdung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defamation;slander", + "romanization": "Verleumdung", + "example_sentence_native": "Die Anschuldigungen waren reine Verleumdung.", + "example_sentence_english": "The accusations were pure defamation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16804 + }, + { + "word": "Vermischung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixture;blending", + "romanization": "Vermischung", + "example_sentence_native": "Es gab eine interessante Vermischung der Kulturen.", + "example_sentence_english": "There was an interesting mixture of cultures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16805 + }, + { + "word": "verreisen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to travel (away)", + "romanization": "verreisen", + "example_sentence_native": "Wir wollen nächstes Jahr verreisen.", + "example_sentence_english": "We want to travel next year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16806 + }, + { + "word": "Versenkung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immersion;contemplation", + "romanization": "Versenkung", + "example_sentence_native": "Er war in tiefer Versenkung.", + "example_sentence_english": "He was in deep contemplation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16807 + }, + { + "word": "verwahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to keep;to store", + "romanization": "verwahren", + "example_sentence_native": "Bitte verwahren Sie die Dokumente sicher.", + "example_sentence_english": "Please keep the documents safe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16808 + }, + { + "word": "verwurzeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to root;to become rooted", + "romanization": "verwurzeln", + "example_sentence_native": "Der Baum konnte sich gut im Boden verwurzeln.", + "example_sentence_english": "The tree was able to root well in the soil.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16809 + }, + { + "word": "Vierbeiner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quadruped;four-legged animal", + "romanization": "Vierbeiner", + "example_sentence_native": "Unser Hund ist ein treuer Vierbeiner.", + "example_sentence_english": "Our dog is a loyal quadruped.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16810 + }, + { + "word": "Volksentscheid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referendum;plebiscite", + "romanization": "Volksentscheid", + "example_sentence_native": "Über die Frage wird ein Volksentscheid abgehalten.", + "example_sentence_english": "A referendum will be held on the issue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16811 + }, + { + "word": "weiterfahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to continue driving;to drive on", + "romanization": "weiterfahren", + "example_sentence_native": "Wir müssen jetzt weiterfahren.", + "example_sentence_english": "We have to drive on now.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16813 + }, + { + "word": "weiterleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue living;to live on", + "romanization": "weiterleben", + "example_sentence_native": "Trotz der Schwierigkeiten muss man weiterleben.", + "example_sentence_english": "Despite the difficulties, one must continue living.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "leben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16814 + }, + { + "word": "weiterlesen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to continue reading;to read on", + "romanization": "weiterlesen", + "example_sentence_native": "Ich möchte jetzt weiterlesen.", + "example_sentence_english": "I want to continue reading now.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "lesen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16815 + }, + { + "word": "weiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to widen;to expand", + "romanization": "weiten", + "example_sentence_native": "Der Schneider musste die Hose weiten.", + "example_sentence_english": "The tailor had to widen the trousers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16816 + }, + { + "word": "Widder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ram (animal);Aries (zodiac sign)", + "romanization": "Widder", + "example_sentence_native": "Der Widder ist das erste Sternzeichen.", + "example_sentence_english": "Aries is the first zodiac sign.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16817 + }, + { + "word": "wogen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to surge;to undulate", + "romanization": "wogen", + "example_sentence_native": "Die Wellen wogen sanft am Strand.", + "example_sentence_english": "The waves undulate gently on the beach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16819 + }, + { + "word": "Wortspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pun;wordplay", + "romanization": "Wortspiel", + "example_sentence_native": "Sein Vortrag war voller cleverer Wortspiele.", + "example_sentence_english": "His lecture was full of clever wordplay.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16821 + }, + { + "word": "wovor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of what;before what", + "romanization": "wovor", + "example_sentence_native": "Wovor hast du Angst?", + "example_sentence_english": "What are you afraid of?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16822 + }, + { + "word": "zertifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to certify", + "romanization": "zertifizieren", + "example_sentence_native": "Das Unternehmen muss seine Produkte zertifizieren lassen.", + "example_sentence_english": "The company must have its products certified.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16824 + }, + { + "word": "zumutbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasonable;acceptable", + "romanization": "zumutbar", + "example_sentence_native": "Das ist ein zumutbarer Preis für diese Qualität.", + "example_sentence_english": "That is a reasonable price for this quality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16825 + }, + { + "word": "zusammenfassend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in summary;summarizing", + "romanization": "zusammenfassend", + "example_sentence_native": "Zusammenfassend lässt sich sagen, dass das Projekt erfolgreich war.", + "example_sentence_english": "In summary, it can be said that the project was successful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16826 + }, + { + "word": "zusammenführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to merge;to bring together", + "romanization": "zusammenführen", + "example_sentence_native": "Wir müssen die Daten aus verschiedenen Quellen zusammenführen.", + "example_sentence_english": "We need to merge the data from different sources.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16827 + }, + { + "word": "zusammenschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beat up;to knock together", + "romanization": "zusammenschlagen", + "example_sentence_native": "Er drohte, ihn zusammenzuschlagen.", + "example_sentence_english": "He threatened to beat him up.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16828 + }, + { + "word": "Ökosystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecosystem", + "romanization": "Ökosystem", + "example_sentence_native": "Der Schutz des Ökosystems ist entscheidend für die Zukunft.", + "example_sentence_english": "Protecting the ecosystem is crucial for the future.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16830 + }, + { + "word": "Überschreitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceeding;transgression;overrun", + "romanization": "Überschreitung", + "example_sentence_native": "Die Überschreitung der Geschwindigkeitsbegrenzung ist gefährlich.", + "example_sentence_english": "Exceeding the speed limit is dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16831 + }, + { + "word": "abkürzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shorten;to abbreviate", + "romanization": "abkürzen", + "example_sentence_native": "Du kannst den Weg abkürzen, wenn du durch den Park gehst.", + "example_sentence_english": "You can shorten the way if you go through the park.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "kürzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16833 + }, + { + "word": "abschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to chop off;to refuse (an offer)", + "romanization": "abschlagen", + "example_sentence_native": "Er konnte das Angebot nicht abschlagen.", + "example_sentence_english": "He couldn't refuse the offer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16834 + }, + { + "word": "abwechslungsreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "varied;diverse", + "romanization": "abwechslungsreich", + "example_sentence_native": "Die Speisekarte ist sehr abwechslungsreich.", + "example_sentence_english": "The menu is very varied.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16835 + }, + { + "word": "achtzehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eighteen", + "romanization": "achtzehn", + "example_sentence_native": "Sie ist achtzehn Jahre alt.", + "example_sentence_english": "She is eighteen years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 16836 + }, + { + "word": "afghanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Afghan", + "romanization": "afghanisch", + "example_sentence_native": "Er kaufte einen afghanischen Teppich.", + "example_sentence_english": "He bought an Afghan carpet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16838 + }, + { + "word": "angelsächsisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Anglo-Saxon", + "romanization": "angelsächsisch", + "example_sentence_native": "Die angelsächsische Kultur hat viele Spuren hinterlassen.", + "example_sentence_english": "The Anglo-Saxon culture has left many traces.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16841 + }, + { + "word": "Arbeitsleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working life;professional life", + "romanization": "Arbeitsleben", + "example_sentence_native": "Das Arbeitsleben kann sehr anspruchsvoll sein.", + "example_sentence_english": "Working life can be very demanding.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16843 + }, + { + "word": "Auffahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driveway;ramp;Ascension Day", + "romanization": "Auffahrt", + "example_sentence_native": "Die Auffahrt zum Haus ist sehr steil.", + "example_sentence_english": "The driveway to the house is very steep.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16845 + }, + { + "word": "Aufsichtsbehörde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supervisory authority;regulatory body", + "romanization": "Aufsichtsbehörde", + "example_sentence_native": "Die Aufsichtsbehörde prüft die Einhaltung der Vorschriften.", + "example_sentence_english": "The supervisory authority checks compliance with the regulations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16846 + }, + { + "word": "ausstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to endure;to be outstanding;due", + "romanization": "ausstehen", + "example_sentence_native": "Er musste viel Leid ausstehen.", + "example_sentence_english": "He had to endure a lot of suffering.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16848 + }, + { + "word": "austoben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let off steam;to romp around", + "romanization": "austoben", + "example_sentence_native": "Die Kinder müssen sich draußen austoben.", + "example_sentence_english": "The children need to let off steam outside.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "toben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16849 + }, + { + "word": "Bahnlinie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway line;train line", + "romanization": "Bahnlinie", + "example_sentence_native": "Die neue Bahnlinie wird bald eröffnet.", + "example_sentence_english": "The new railway line will open soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16850 + }, + { + "word": "Ballast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballast;burden", + "romanization": "Ballast", + "example_sentence_native": "Er warf allen unnötigen Ballast ab.", + "example_sentence_english": "He threw off all unnecessary ballast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16851 + }, + { + "word": "beachtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerable;remarkable", + "romanization": "beachtlich", + "example_sentence_native": "Das ist eine beachtliche Leistung.", + "example_sentence_english": "That is a considerable achievement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16852 + }, + { + "word": "Bedrängnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distress;predicament", + "romanization": "Bedrängnis", + "example_sentence_native": "Er geriet in große Bedrängnis.", + "example_sentence_english": "He got into great distress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16853 + }, + { + "word": "bedürftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "needy;destitute", + "romanization": "bedürftig", + "example_sentence_native": "Die Organisation hilft bedürftigen Familien.", + "example_sentence_english": "The organization helps needy families.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16854 + }, + { + "word": "beeilen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hurry;to rush", + "romanization": "beeilen", + "example_sentence_native": "Wir müssen uns beeilen, sonst verpassen wir den Zug.", + "example_sentence_english": "We have to hurry, otherwise we'll miss the train.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16855 + }, + { + "word": "Begehung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inspection;commissioning;walk-through", + "romanization": "Begehung", + "example_sentence_native": "Die Begehung des Gebäudes findet morgen statt.", + "example_sentence_english": "The inspection of the building will take place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16856 + }, + { + "word": "Beherrschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastery;control;self-control", + "romanization": "Beherrschung", + "example_sentence_native": "Er zeigte große Beherrschung in der schwierigen Situation.", + "example_sentence_english": "He showed great self-control in the difficult situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16857 + }, + { + "word": "beisetzen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to inter;to bury", + "romanization": "beisetzen", + "example_sentence_native": "Der Verstorbene wurde gestern beigesetzt.", + "example_sentence_english": "The deceased was interred yesterday.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16858 + }, + { + "word": "Bergsteiger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountaineer", + "romanization": "Bergsteiger", + "example_sentence_native": "Der Bergsteiger erreichte den Gipfel nach einem langen Aufstieg.", + "example_sentence_english": "The mountaineer reached the summit after a long ascent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16860 + }, + { + "word": "Berichtigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correction", + "romanization": "Berichtigung", + "example_sentence_native": "Bitte senden Sie uns eine Berichtigung der Rechnung.", + "example_sentence_english": "Please send us a correction of the invoice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16861 + }, + { + "word": "bestechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bribe;to impress", + "romanization": "bestechen", + "example_sentence_native": "Er versuchte, den Beamten zu bestechen.", + "example_sentence_english": "He tried to bribe the official.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16863 + }, + { + "word": "Bewahrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preservation;safekeeping", + "romanization": "Bewahrung", + "example_sentence_native": "Die Bewahrung der historischen Gebäude ist uns wichtig.", + "example_sentence_english": "The preservation of the historical buildings is important to us.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16864 + }, + { + "word": "Bezirksamt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district office", + "romanization": "Bezirksamt", + "example_sentence_native": "Sie müssen Ihr Anliegen beim Bezirksamt einreichen.", + "example_sentence_english": "You have to submit your request at the district office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16865 + }, + { + "word": "Binnenmarkt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internal market;single market", + "romanization": "Binnenmarkt", + "example_sentence_native": "Der europäische Binnenmarkt fördert den freien Warenverkehr.", + "example_sentence_english": "The European single market promotes the free movement of goods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16866 + }, + { + "word": "bloß", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mere;bare;just;only", + "romanization": "bloß", + "example_sentence_native": "Das ist bloß eine Ausrede, keine echte Erklärung.", + "example_sentence_english": "That's just an excuse, not a real explanation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16867 + }, + { + "word": "Brandstifter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arsonist", + "romanization": "Brandstifter", + "example_sentence_native": "Der Brandstifter wurde von der Polizei gefasst.", + "example_sentence_english": "The arsonist was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16869 + }, + { + "word": "Bronzemedaille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bronze medal", + "romanization": "Bronzemedaille", + "example_sentence_native": "Sie gewann die Bronzemedaille bei den Olympischen Spielen.", + "example_sentence_english": "She won the bronze medal at the Olympic Games.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16872 + }, + { + "word": "Buchführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bookkeeping;accounting", + "romanization": "Buchführung", + "example_sentence_native": "Die Buchführung muss sorgfältig erledigt werden.", + "example_sentence_english": "The bookkeeping must be done carefully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16874 + }, + { + "word": "Character", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character", + "romanization": "Character", + "example_sentence_native": "Er hat einen starken Character und lässt sich nicht unterkriegen.", + "example_sentence_english": "He has a strong character and doesn't let himself be defeated.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16877 + }, + { + "word": "Charisma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charisma", + "romanization": "Charisma", + "example_sentence_native": "Ihr Charisma zog alle in ihren Bann.", + "example_sentence_english": "Her charisma captivated everyone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16878 + }, + { + "word": "Chaussee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highway;main road", + "romanization": "Chaussee", + "example_sentence_native": "Die alte Chaussee führt direkt zum Schloss.", + "example_sentence_english": "The old highway leads directly to the castle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16879 + }, + { + "word": "chirurgisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgical", + "romanization": "chirurgisch", + "example_sentence_native": "Der Eingriff war chirurgisch notwendig.", + "example_sentence_english": "The procedure was surgically necessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16881 + }, + { + "word": "Cinema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cinema;movie theater", + "romanization": "Cinema", + "example_sentence_native": "Wir gehen heute Abend ins Cinema.", + "example_sentence_english": "We are going to the cinema tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16882 + }, + { + "word": "Copy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copy", + "romanization": "Copy", + "example_sentence_native": "Ich brauche eine Copy von diesem Dokument.", + "example_sentence_english": "I need a copy of this document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16884 + }, + { + "word": "Counter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counter", + "romanization": "Counter", + "example_sentence_native": "Bitte gehen Sie zum Counter, um Ihre Tickets abzuholen.", + "example_sentence_english": "Please go to the counter to pick up your tickets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16885 + }, + { + "word": "Cube", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cube", + "romanization": "Cube", + "example_sentence_native": "Er hat einen neuen Gaming-Cube gekauft.", + "example_sentence_english": "He bought a new gaming cube.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16886 + }, + { + "word": "Deutschunterricht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "German class;lesson", + "romanization": "Deutschunterricht", + "example_sentence_native": "Der Deutschunterricht beginnt um neun Uhr.", + "example_sentence_english": "The German class starts at nine o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16887 + }, + { + "word": "Dienstagabend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Tuesday evening", + "romanization": "Dienstagabend", + "example_sentence_native": "Wir treffen uns am Dienstagabend.", + "example_sentence_english": "We are meeting on Tuesday evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16888 + }, + { + "word": "Dings", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thingy;whatsit;doodad", + "romanization": "Dings", + "example_sentence_native": "Gib mir mal das Dings da drüben.", + "example_sentence_english": "Hand me that thingy over there.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16891 + }, + { + "word": "Dummkopf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dummy;fool;idiot", + "romanization": "Dummkopf", + "example_sentence_native": "Nenn mich nicht Dummkopf!", + "example_sentence_english": "Don't call me a dummy!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16894 + }, + { + "word": "dürr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "withered;gaunt;arid", + "romanization": "dürr", + "example_sentence_native": "Die dürren Bäume brauchten Wasser.", + "example_sentence_english": "The withered trees needed water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16896 + }, + { + "word": "Einsturz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse", + "romanization": "Einsturz", + "example_sentence_native": "Der Einsturz des Gebäudes war tragisch.", + "example_sentence_english": "The collapse of the building was tragic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16902 + }, + { + "word": "Emblem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emblem", + "romanization": "Emblem", + "example_sentence_native": "Das Emblem auf der Flagge war sehr alt.", + "example_sentence_english": "The emblem on the flag was very old.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16904 + }, + { + "word": "Erbarmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercy;pity", + "romanization": "Erbarmen", + "example_sentence_native": "Er hatte kein Erbarmen mit seinen Feinden.", + "example_sentence_english": "He had no mercy on his enemies.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16908 + }, + { + "word": "Erdreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soil;earth", + "romanization": "Erdreich", + "example_sentence_native": "Die Pflanzen wuchsen gut im fruchtbaren Erdreich.", + "example_sentence_english": "The plants grew well in the fertile soil.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16909 + }, + { + "word": "ergattern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get hold of;to snag", + "romanization": "ergattern", + "example_sentence_native": "Er konnte noch die letzten Tickets ergattern.", + "example_sentence_english": "He was still able to snag the last tickets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16910 + }, + { + "word": "Erkundung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploration;reconnaissance", + "romanization": "Erkundung", + "example_sentence_native": "Die Erkundung des neuen Gebiets begann.", + "example_sentence_english": "The exploration of the new area began.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16911 + }, + { + "word": "Facharbeiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skilled worker", + "romanization": "Facharbeiter", + "example_sentence_native": "Der Betrieb sucht qualifizierte Facharbeiter.", + "example_sentence_english": "The company is looking for qualified skilled workers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16914 + }, + { + "word": "Fahrzeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "travel time;driving time", + "romanization": "Fahrzeit", + "example_sentence_native": "Die Fahrzeit zum Flughafen beträgt 30 Minuten.", + "example_sentence_english": "The travel time to the airport is 30 minutes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16915 + }, + { + "word": "festschreiben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to lay down;to stipulate;to enshrine", + "romanization": "festschreiben", + "example_sentence_native": "Die Regeln müssen im Vertrag festgeschrieben werden.", + "example_sentence_english": "The rules must be stipulated in the contract.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16918 + }, + { + "word": "Fingernagel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fingernail", + "romanization": "Fingernagel", + "example_sentence_native": "Sie hat sich den Fingernagel abgebrochen.", + "example_sentence_english": "She broke her fingernail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16920 + }, + { + "word": "Firmensitz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company headquarters", + "romanization": "Firmensitz", + "example_sentence_native": "Der Firmensitz befindet sich in Berlin.", + "example_sentence_english": "The company headquarters is located in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16921 + }, + { + "word": "Galgen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gallows", + "romanization": "Galgen", + "example_sentence_native": "Der Galgen stand auf dem Hügel.", + "example_sentence_english": "The gallows stood on the hill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16925 + }, + { + "word": "Gastarbeiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guest worker", + "romanization": "Gastarbeiter", + "example_sentence_native": "Viele Gastarbeiter kamen in den 1960er Jahren nach Deutschland.", + "example_sentence_english": "Many guest workers came to Germany in the 1960s.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16926 + }, + { + "word": "Gaumen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palate", + "romanization": "Gaumen", + "example_sentence_native": "Der Gaumen ist der obere Teil des Mundes.", + "example_sentence_english": "The palate is the upper part of the mouth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16927 + }, + { + "word": "Geländewagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "off-road vehicle;SUV", + "romanization": "Geländewagen", + "example_sentence_native": "Er fährt einen großen Geländewagen.", + "example_sentence_english": "He drives a large off-road vehicle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16928 + }, + { + "word": "Gemeindevertretung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal council;community representation", + "romanization": "Gemeindevertretung", + "example_sentence_native": "Die Gemeindevertretung hat über das neue Projekt abgestimmt.", + "example_sentence_english": "The municipal council voted on the new project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16929 + }, + { + "word": "Glamour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glamour", + "romanization": "Glamour", + "example_sentence_native": "Hollywood ist bekannt für seinen Glamour.", + "example_sentence_english": "Hollywood is known for its glamour.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16931 + }, + { + "word": "grotesk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grotesque", + "romanization": "grotesk", + "example_sentence_native": "Die Situation war einfach grotesk.", + "example_sentence_english": "The situation was simply grotesque.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16933 + }, + { + "word": "Grünfläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "green space;lawn", + "romanization": "Grünfläche", + "example_sentence_native": "Die Stadt plant, mehr Grünflächen zu schaffen.", + "example_sentence_english": "The city plans to create more green spaces.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16934 + }, + { + "word": "Guss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casting;pour;downpour", + "romanization": "Guss", + "example_sentence_native": "Ein starker Guss überraschte uns.", + "example_sentence_english": "A heavy downpour surprised us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16935 + }, + { + "word": "Halsband", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "collar (for an animal);necklace", + "romanization": "Halsband", + "example_sentence_native": "Der Hund trägt ein neues Halsband.", + "example_sentence_english": "The dog is wearing a new collar.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16936 + }, + { + "word": "Handschlag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handshake", + "romanization": "Handschlag", + "example_sentence_native": "Sie begrüßten sich mit einem Handschlag.", + "example_sentence_english": "They greeted each other with a handshake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16937 + }, + { + "word": "Harfe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harp", + "romanization": "Harfe", + "example_sentence_native": "Sie spielt wunderschön Harfe.", + "example_sentence_english": "She plays the harp beautifully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16938 + }, + { + "word": "Hausarrest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "house arrest", + "romanization": "Hausarrest", + "example_sentence_native": "Er wurde zu Hausarrest verurteilt.", + "example_sentence_english": "He was sentenced to house arrest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16939 + }, + { + "word": "hierin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herein;in this", + "romanization": "hierin", + "example_sentence_native": "Die Lösung liegt hierin.", + "example_sentence_english": "The solution lies herein.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16942 + }, + { + "word": "hinkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get there;to arrive", + "romanization": "hinkommen", + "example_sentence_native": "Wie kann ich dorthin hinkommen?", + "example_sentence_english": "How can I get there?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16944 + }, + { + "word": "hinkriegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manage;to get done", + "romanization": "hinkriegen", + "example_sentence_native": "Ich werde das schon hinkriegen.", + "example_sentence_english": "I will manage that.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "kriegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16945 + }, + { + "word": "Hospiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospice", + "romanization": "Hospiz", + "example_sentence_native": "Das Hospiz bietet palliative Pflege an.", + "example_sentence_english": "The hospice offers palliative care.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16948 + }, + { + "word": "Idylle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idyll", + "romanization": "Idylle", + "example_sentence_native": "Das Dorf strahlt eine friedliche Idylle aus.", + "example_sentence_english": "The village radiates a peaceful idyll.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16952 + }, + { + "word": "interdisziplinär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interdisciplinary", + "romanization": "interdisziplinär", + "example_sentence_native": "Das Projekt ist interdisziplinär angelegt.", + "example_sentence_english": "The project is designed to be interdisciplinary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16955 + }, + { + "word": "interessanterweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Interestingly enough", + "romanization": "interessanterweise", + "example_sentence_native": "Interessanterweise hat er nichts dazu gesagt.", + "example_sentence_english": "Interestingly enough, he said nothing about it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16956 + }, + { + "word": "Jahresabschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual financial statement;year-end closing", + "romanization": "Jahresabschluss", + "example_sentence_native": "Der Jahresabschluss muss bis Ende März eingereicht werden.", + "example_sentence_english": "The annual financial statement must be submitted by the end of March.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16958 + }, + { + "word": "Jahresbeginn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beginning of the year", + "romanization": "Jahresbeginn", + "example_sentence_native": "Am Jahresbeginn gibt es oft gute Vorsätze.", + "example_sentence_english": "At the beginning of the year, there are often good resolutions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16959 + }, + { + "word": "Juwelier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jeweler", + "romanization": "Juwelier", + "example_sentence_native": "Der Juwelier reparierte meine Uhr.", + "example_sentence_english": "The jeweler repaired my watch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16963 + }, + { + "word": "kalifornisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Californian", + "romanization": "kalifornisch", + "example_sentence_native": "Sie liebt die kalifornische Sonne.", + "example_sentence_english": "She loves the Californian sun.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16964 + }, + { + "word": "Katalysator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catalyst", + "romanization": "Katalysator", + "example_sentence_native": "Der neue Katalysator reduziert die Emissionen.", + "example_sentence_english": "The new catalyst reduces emissions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16965 + }, + { + "word": "Kausalität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causality", + "romanization": "Kausalität", + "example_sentence_native": "Die Kausalität zwischen den Ereignissen ist unklar.", + "example_sentence_english": "The causality between the events is unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16968 + }, + { + "word": "Konfession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denomination", + "romanization": "Konfession", + "example_sentence_native": "Er gehört keiner bestimmten Konfession an.", + "example_sentence_english": "He does not belong to any particular denomination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16970 + }, + { + "word": "Kulturlandschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cultural landscape", + "romanization": "Kulturlandschaft", + "example_sentence_native": "Die Region ist bekannt für ihre einzigartige Kulturlandschaft.", + "example_sentence_english": "The region is known for its unique cultural landscape.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16971 + }, + { + "word": "Kutscher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coachman", + "romanization": "Kutscher", + "example_sentence_native": "Der Kutscher wartete vor dem Schloss.", + "example_sentence_english": "The coachman waited in front of the castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16973 + }, + { + "word": "Kästchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small box", + "romanization": "Kästchen", + "example_sentence_native": "Sie fand einen alten Ring in einem kleinen Kästchen.", + "example_sentence_english": "She found an old ring in a small box.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16974 + }, + { + "word": "Kürzel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbreviation", + "romanization": "Kürzel", + "example_sentence_native": "Das Kürzel 'AG' steht für 'Aktiengesellschaft'.", + "example_sentence_english": "The abbreviation 'AG' stands for 'public limited company'.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16975 + }, + { + "word": "Landebahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "runway", + "romanization": "Landebahn", + "example_sentence_native": "Das Flugzeug landete sicher auf der Landebahn.", + "example_sentence_english": "The plane landed safely on the runway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16976 + }, + { + "word": "Launch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launch", + "romanization": "Launch", + "example_sentence_native": "Der Launch des neuen Produkts war ein großer Erfolg.", + "example_sentence_english": "The launch of the new product was a great success.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16978 + }, + { + "word": "logischerweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logically;naturally", + "romanization": "logischerweise", + "example_sentence_native": "Logischerweise hat er die Prüfung bestanden, er hat viel gelernt.", + "example_sentence_english": "Logically, he passed the exam, he studied a lot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16984 + }, + { + "word": "Maker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maker;creator", + "romanization": "Maker", + "example_sentence_native": "Er ist ein talentierter Maker von Robotern.", + "example_sentence_english": "He is a talented maker of robots.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16986 + }, + { + "word": "masslos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immoderate;excessive;boundless", + "romanization": "masslos", + "example_sentence_native": "Sein Ehrgeiz war maßlos.", + "example_sentence_english": "His ambition was immoderate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16988 + }, + { + "word": "Mauerfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fall of the Berlin Wall", + "romanization": "Mauerfall", + "example_sentence_native": "Der Mauerfall im Jahr 1989 war ein historisches Ereignis.", + "example_sentence_english": "The fall of the Berlin Wall in 1989 was a historical event.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16989 + }, + { + "word": "Maulwurf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mole (animal)", + "romanization": "Maulwurf", + "example_sentence_native": "Ein Maulwurf gräbt Gänge unter der Erde.", + "example_sentence_english": "A mole digs tunnels underground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16990 + }, + { + "word": "Mehrfamilienhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apartment building;multi-family house", + "romanization": "Mehrfamilienhaus", + "example_sentence_native": "Sie wohnen in einem großen Mehrfamilienhaus.", + "example_sentence_english": "They live in a large apartment building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16992 + }, + { + "word": "meilenweit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miles away;by a long shot", + "romanization": "meilenweit", + "example_sentence_native": "Er war meilenweit von der Wahrheit entfernt.", + "example_sentence_english": "He was miles away from the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 16993 + }, + { + "word": "messbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measurable", + "romanization": "messbar", + "example_sentence_native": "Der Fortschritt ist messbar.", + "example_sentence_english": "The progress is measurable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 16995 + }, + { + "word": "messern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to knife;to stab (with a knife)", + "romanization": "messern", + "example_sentence_native": "Er drohte, ihn zu messern.", + "example_sentence_english": "He threatened to knife him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 16996 + }, + { + "word": "Mille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thousand (colloquial;often for money)", + "romanization": "Mille", + "example_sentence_native": "Das Auto kostet zwanzig Mille.", + "example_sentence_english": "The car costs twenty thousand.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 16999 + }, + { + "word": "Ministerrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Council of Ministers", + "romanization": "Ministerrat", + "example_sentence_native": "Der Ministerrat traf sich, um über die neue Gesetzgebung zu beraten.", + "example_sentence_english": "The Council of Ministers met to discuss the new legislation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17001 + }, + { + "word": "Mobilisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobilization", + "romanization": "Mobilisierung", + "example_sentence_native": "Die Mobilisierung der Truppen begann am Morgen.", + "example_sentence_english": "The mobilization of the troops began in the morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17003 + }, + { + "word": "Modem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modem", + "romanization": "Modem", + "example_sentence_native": "Ich brauche ein neues Modem für mein Internet.", + "example_sentence_english": "I need a new modem for my internet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17004 + }, + { + "word": "Monarch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarch", + "romanization": "Monarch", + "example_sentence_native": "Der Monarch regierte das Land mit eiserner Hand.", + "example_sentence_english": "The monarch ruled the country with an iron fist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17005 + }, + { + "word": "Nanny", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nanny", + "romanization": "Nanny", + "example_sentence_native": "Die Nanny kümmert sich um die Kinder, während die Eltern arbeiten.", + "example_sentence_english": "The nanny takes care of the children while the parents work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17006 + }, + { + "word": "Nationalbibliothek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national library", + "romanization": "Nationalbibliothek", + "example_sentence_native": "Die Nationalbibliothek beherbergt Millionen von Büchern.", + "example_sentence_english": "The national library houses millions of books.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17007 + }, + { + "word": "Netzneutralität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "net neutrality", + "romanization": "Netzneutralität", + "example_sentence_native": "Die Debatte über die Netzneutralität ist in vollem Gange.", + "example_sentence_english": "The debate about net neutrality is in full swing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17008 + }, + { + "word": "Neuerscheinung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new release", + "romanization": "Neuerscheinung", + "example_sentence_native": "Die Buchhandlung hat viele interessante Neuerscheinungen.", + "example_sentence_english": "The bookstore has many interesting new releases.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17009 + }, + { + "word": "Neurologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurology", + "romanization": "Neurologie", + "example_sentence_native": "Er studiert Neurologie an der Universität.", + "example_sentence_english": "He studies neurology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17010 + }, + { + "word": "Nordost", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "northeast", + "romanization": "Nordost", + "example_sentence_native": "Der Wind kommt aus Nordost.", + "example_sentence_english": "The wind comes from the northeast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17013 + }, + { + "word": "Nässe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wetness", + "romanization": "Nässe", + "example_sentence_native": "Die Nässe des Bodens ist gut für die Pflanzen.", + "example_sentence_english": "The wetness of the soil is good for the plants.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17014 + }, + { + "word": "Obrigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authorities", + "romanization": "Obrigkeit", + "example_sentence_native": "Man sollte die Obrigkeit respektieren.", + "example_sentence_english": "One should respect the authorities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17015 + }, + { + "word": "Omen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omen", + "romanization": "Omen", + "example_sentence_native": "Die schwarze Katze war ein schlechtes Omen.", + "example_sentence_english": "The black cat was a bad omen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17018 + }, + { + "word": "Papi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "daddy", + "romanization": "Papi", + "example_sentence_native": "Papi, können wir Eis essen gehen?", + "example_sentence_english": "Daddy, can we go eat ice cream?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17019 + }, + { + "word": "Paranoia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paranoia", + "romanization": "Paranoia", + "example_sentence_native": "Er litt unter Paranoia und misstraute jedem.", + "example_sentence_english": "He suffered from paranoia and distrusted everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17020 + }, + { + "word": "Passat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade wind", + "romanization": "Passat", + "example_sentence_native": "Die Passatwinde sind für das Klima in den Tropen wichtig.", + "example_sentence_english": "The trade winds are important for the climate in the tropics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17022 + }, + { + "word": "Pathologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathology", + "romanization": "Pathologie", + "example_sentence_native": "Sie studiert Pathologie an der Universität.", + "example_sentence_english": "She studies pathology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17023 + }, + { + "word": "Pendel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pendulum", + "romanization": "Pendel", + "example_sentence_native": "Das Pendel der Uhr schwang langsam hin und her.", + "example_sentence_english": "The clock's pendulum swung slowly back and forth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17025 + }, + { + "word": "Primus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "top student", + "romanization": "Primus", + "example_sentence_native": "Er war der Primus seiner Klasse und immer der Beste.", + "example_sentence_english": "He was the top student in his class and always the best.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17028 + }, + { + "word": "Progression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progression", + "romanization": "Progression", + "example_sentence_native": "Die Progression der Krankheit war langsam, aber stetig.", + "example_sentence_english": "The progression of the disease was slow but steady.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17030 + }, + { + "word": "provisorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisional", + "romanization": "provisorisch", + "example_sentence_native": "Die Brücke wurde provisorisch repariert.", + "example_sentence_english": "The bridge was provisionally repaired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17031 + }, + { + "word": "Prozession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procession", + "romanization": "Prozession", + "example_sentence_native": "Eine lange Prozession zog durch die Straßen der Stadt.", + "example_sentence_english": "A long procession moved through the city streets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17032 + }, + { + "word": "präzis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precise", + "romanization": "präzis", + "example_sentence_native": "Seine Antwort war kurz und präzis.", + "example_sentence_english": "His answer was short and precise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17033 + }, + { + "word": "Psychopath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychopath", + "romanization": "Psychopath", + "example_sentence_native": "Der Psychopath zeigte keine Reue für seine Taten.", + "example_sentence_english": "The psychopath showed no remorse for his actions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17034 + }, + { + "word": "publik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public (known)", + "romanization": "publik", + "example_sentence_native": "Die Ergebnisse wurden publik gemacht.", + "example_sentence_english": "The results were made public.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17035 + }, + { + "word": "Rechtsform", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal form", + "romanization": "Rechtsform", + "example_sentence_native": "Die Wahl der Rechtsform ist wichtig für ein Unternehmen.", + "example_sentence_english": "The choice of legal form is important for a company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17039 + }, + { + "word": "Regierungspartei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governing party", + "romanization": "Regierungspartei", + "example_sentence_native": "Die Regierungspartei hat eine neue Reform vorgeschlagen.", + "example_sentence_english": "The governing party has proposed a new reform.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17040 + }, + { + "word": "Regierungsrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "government councilor", + "romanization": "Regierungsrat", + "example_sentence_native": "Der Regierungsrat tagt nächste Woche.", + "example_sentence_english": "The government councilor will meet next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17041 + }, + { + "word": "reichern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enrich", + "romanization": "reichern", + "example_sentence_native": "Diese Methode kann das Material mit Eisen reichern.", + "example_sentence_english": "This method can enrich the material with iron.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17042 + }, + { + "word": "reihenweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in rows", + "romanization": "reihenweise", + "example_sentence_native": "Die Blumen blühten reihenweise im Garten.", + "example_sentence_english": "The flowers bloomed in rows in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 17043 + }, + { + "word": "Response", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "response", + "romanization": "Response", + "example_sentence_native": "Wir warten auf eine Response von der Firma.", + "example_sentence_english": "We are waiting for a response from the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17044 + }, + { + "word": "Rider", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rider (technical document)", + "romanization": "Rider", + "example_sentence_native": "Der Rider für die Band war sehr detailliert.", + "example_sentence_english": "The rider for the band was very detailed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17047 + }, + { + "word": "Rivalität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rivalry", + "romanization": "Rivalität", + "example_sentence_native": "Es gibt eine starke Rivalität zwischen den beiden Teams.", + "example_sentence_english": "There is a strong rivalry between the two teams.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17048 + }, + { + "word": "Romantiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "romantic (person)", + "romanization": "Romantiker", + "example_sentence_native": "Er ist ein wahrer Romantiker und liebt Gedichte.", + "example_sentence_english": "He is a true romantic and loves poems.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17050 + }, + { + "word": "rütteln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake", + "romanization": "rütteln", + "example_sentence_native": "Er begann, an der Tür zu rütteln.", + "example_sentence_english": "He began to shake the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17053 + }, + { + "word": "Schaufel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shovel", + "romanization": "Schaufel", + "example_sentence_native": "Er grub ein Loch mit der Schaufel.", + "example_sentence_english": "He dug a hole with the shovel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17057 + }, + { + "word": "schiefgehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go wrong", + "romanization": "schiefgehen", + "example_sentence_native": "Ich hoffe, dass nichts schiefgeht.", + "example_sentence_english": "I hope that nothing goes wrong.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "schief", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17058 + }, + { + "word": "Schlichter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediator", + "romanization": "Schlichter", + "example_sentence_native": "Der Schlichter half, den Streit beizulegen.", + "example_sentence_english": "The mediator helped to settle the dispute.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17059 + }, + { + "word": "schlüssig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conclusive", + "romanization": "schlüssig", + "example_sentence_native": "Seine Argumentation war sehr schlüssig.", + "example_sentence_english": "His argumentation was very conclusive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17060 + }, + { + "word": "schwinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dwindle", + "romanization": "schwinden", + "example_sentence_native": "Die Hoffnung schwand langsam.", + "example_sentence_english": "Hope slowly dwindled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17062 + }, + { + "word": "Shift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shift (work period)", + "romanization": "Shift", + "example_sentence_native": "Meine nächste Shift beginnt um 8 Uhr.", + "example_sentence_english": "My next shift starts at 8 o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17064 + }, + { + "word": "Slot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slot", + "romanization": "Slot", + "example_sentence_native": "Wir haben noch einen freien Slot am Nachmittag.", + "example_sentence_english": "We still have a free slot in the afternoon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17066 + }, + { + "word": "Smalltalk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small talk", + "romanization": "Smalltalk", + "example_sentence_native": "Er ist gut im Smalltalk.", + "example_sentence_english": "He is good at small talk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17067 + }, + { + "word": "Sonate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonata", + "romanization": "Sonate", + "example_sentence_native": "Sie spielte eine Sonate von Beethoven.", + "example_sentence_english": "She played a sonata by Beethoven.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17068 + }, + { + "word": "Stadtgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "city history", + "romanization": "Stadtgeschichte", + "example_sentence_native": "Die Stadtgeschichte ist sehr interessant.", + "example_sentence_english": "The city history is very interesting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17071 + }, + { + "word": "Stalker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stalker", + "romanization": "Stalker", + "example_sentence_native": "Sie wurde von einem Stalker belästigt.", + "example_sentence_english": "She was harassed by a stalker.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17072 + }, + { + "word": "Stammbaum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "family tree", + "romanization": "Stammbaum", + "example_sentence_native": "Wir haben unseren Stammbaum erforscht.", + "example_sentence_english": "We researched our family tree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17073 + }, + { + "word": "Sternzeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zodiac sign", + "romanization": "Sternzeichen", + "example_sentence_native": "Was ist dein Sternzeichen?", + "example_sentence_english": "What is your zodiac sign?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17075 + }, + { + "word": "Strumpfhose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tights", + "romanization": "Strumpfhose", + "example_sentence_native": "Sie trägt eine schwarze Strumpfhose.", + "example_sentence_english": "She is wearing black tights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17076 + }, + { + "word": "Südstadt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "south town;district", + "romanization": "Südstadt", + "example_sentence_native": "Ich wohne in der Südstadt.", + "example_sentence_english": "I live in the south district.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17077 + }, + { + "word": "Tablett", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tray", + "romanization": "Tablett", + "example_sentence_native": "Der Kellner brachte die Getränke auf einem Tablett.", + "example_sentence_english": "The waiter brought the drinks on a tray.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17078 + }, + { + "word": "Tausender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thousand (unit;bill)", + "romanization": "Tausender", + "example_sentence_native": "Er hat einen Tausender gewonnen.", + "example_sentence_english": "He won a thousand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17079 + }, + { + "word": "Tofu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tofu", + "romanization": "Tofu", + "example_sentence_native": "Ich esse gerne Tofu mit Gemüse.", + "example_sentence_english": "I like to eat tofu with vegetables.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17080 + }, + { + "word": "Tragweite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scope;range;implications", + "romanization": "Tragweite", + "example_sentence_native": "Die Tragweite dieser Entscheidung ist noch nicht absehbar.", + "example_sentence_english": "The full implications of this decision are not yet foreseeable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17081 + }, + { + "word": "Trockner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dryer", + "romanization": "Trockner", + "example_sentence_native": "Der Trockner ist kaputt.", + "example_sentence_english": "The dryer is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17082 + }, + { + "word": "Umbenennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renaming", + "romanization": "Umbenennung", + "example_sentence_native": "Die Umbenennung der Straße führte zu Diskussionen.", + "example_sentence_english": "The renaming of the street led to discussions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17083 + }, + { + "word": "Umgangssprache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colloquial language;vernacular", + "romanization": "Umgangssprache", + "example_sentence_native": "In der Umgangssprache gibt es viele Redewendungen.", + "example_sentence_english": "There are many idioms in colloquial language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17084 + }, + { + "word": "Underground", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underground", + "romanization": "Underground", + "example_sentence_native": "Er ist Teil der Underground-Musikszene.", + "example_sentence_english": "He is part of the underground music scene.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17085 + }, + { + "word": "unerhört", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unheard of;outrageous", + "romanization": "unerhört", + "example_sentence_native": "Das ist eine unerhörte Forderung!", + "example_sentence_english": "That is an outrageous demand!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17086 + }, + { + "word": "unerreichbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unreachable;unattainable", + "romanization": "unerreichbar", + "example_sentence_native": "Sein Traum schien unerreichbar.", + "example_sentence_english": "His dream seemed unattainable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17087 + }, + { + "word": "unhaltbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untenable;unsustainable", + "romanization": "unhaltbar", + "example_sentence_native": "Diese Behauptung ist unhaltbar.", + "example_sentence_english": "This assertion is untenable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17088 + }, + { + "word": "Unverschämtheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impudence;insolence;outrage", + "romanization": "Unverschämtheit", + "example_sentence_native": "Das ist eine absolute Unverschämtheit!", + "example_sentence_english": "That is an absolute outrage!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17089 + }, + { + "word": "Ureinwohner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indigenous inhabitant;aboriginal", + "romanization": "Ureinwohner", + "example_sentence_native": "Die Ureinwohner lebten seit Jahrtausenden in dieser Region.", + "example_sentence_english": "The indigenous inhabitants had lived in this region for millennia.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17090 + }, + { + "word": "Vereinsgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "club history;association history", + "romanization": "Vereinsgeschichte", + "example_sentence_native": "Die Vereinsgeschichte ist reich an Erfolgen.", + "example_sentence_english": "The club's history is rich in successes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17092 + }, + { + "word": "vergnügt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerful;amused;merry", + "romanization": "vergnügt", + "example_sentence_native": "Sie lachte vergnügt.", + "example_sentence_english": "She laughed cheerfully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17093 + }, + { + "word": "verladen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to load;to ship", + "romanization": "verladen", + "example_sentence_native": "Die Waren müssen bis morgen verladen werden.", + "example_sentence_english": "The goods must be loaded by tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17094 + }, + { + "word": "verlangsamen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slow down", + "romanization": "verlangsamen", + "example_sentence_native": "Der Fahrer musste verlangsamen.", + "example_sentence_english": "The driver had to slow down.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17095 + }, + { + "word": "verschleiern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to veil;to obscure;to conceal", + "romanization": "verschleiern", + "example_sentence_native": "Er versuchte, die Wahrheit zu verschleiern.", + "example_sentence_english": "He tried to conceal the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17096 + }, + { + "word": "verschütten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spill;to bury (under debris)", + "romanization": "verschütten", + "example_sentence_native": "Ich habe meinen Kaffee verschüttet.", + "example_sentence_english": "I spilled my coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17097 + }, + { + "word": "verstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adjust;to block;to disguise (one's voice)", + "romanization": "verstellen", + "example_sentence_native": "Er musste seine Stimme verstellen, um nicht erkannt zu werden.", + "example_sentence_english": "He had to disguise his voice so as not to be recognized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17098 + }, + { + "word": "vielmals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "many times;very much", + "romanization": "vielmals", + "example_sentence_native": "Vielmals Danke für Ihre Hilfe.", + "example_sentence_english": "Many thanks for your help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 17100 + }, + { + "word": "vital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vital;essential", + "romanization": "vital", + "example_sentence_native": "Es ist vital, dass wir diese Informationen haben.", + "example_sentence_english": "It is vital that we have this information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17101 + }, + { + "word": "Volkskunde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "folklore;ethnology", + "romanization": "Volkskunde", + "example_sentence_native": "Er studiert Volkskunde an der Universität.", + "example_sentence_english": "He studies folklore at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17103 + }, + { + "word": "Vollversammlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "general assembly;plenary session", + "romanization": "Vollversammlung", + "example_sentence_native": "Die Vollversammlung findet nächste Woche statt.", + "example_sentence_english": "The general assembly will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17104 + }, + { + "word": "Vorsteher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head;chairman;director", + "romanization": "Vorsteher", + "example_sentence_native": "Der Vorsteher der Abteilung hat die Entscheidung getroffen.", + "example_sentence_english": "The head of the department made the decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17105 + }, + { + "word": "Vorwarnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prior warning;advance warning", + "romanization": "Vorwarnung", + "example_sentence_native": "Wir erhielten eine Vorwarnung vor dem Sturm.", + "example_sentence_english": "We received a prior warning before the storm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17106 + }, + { + "word": "wachsam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watchful;vigilant", + "romanization": "wachsam", + "example_sentence_native": "Man muss immer wachsam sein.", + "example_sentence_english": "One must always be watchful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17108 + }, + { + "word": "Wandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change;transformation", + "romanization": "Wandlung", + "example_sentence_native": "Die Gesellschaft befindet sich in einem ständigen Prozess der Wandlung.", + "example_sentence_english": "Society is in a constant process of transformation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17109 + }, + { + "word": "wanken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to totter;to waver;to stagger", + "romanization": "wanken", + "example_sentence_native": "Der alte Mann begann zu wanken.", + "example_sentence_english": "The old man began to totter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17110 + }, + { + "word": "Wartezimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waiting room", + "romanization": "Wartezimmer", + "example_sentence_native": "Wir warteten lange im Wartezimmer des Arztes.", + "example_sentence_english": "We waited a long time in the doctor's waiting room.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17111 + }, + { + "word": "Widersacher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adversary;opponent", + "romanization": "Widersacher", + "example_sentence_native": "Er besiegte seinen Widersacher im Kampf.", + "example_sentence_english": "He defeated his adversary in battle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17115 + }, + { + "word": "willig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "willing;ready", + "romanization": "willig", + "example_sentence_native": "Sie war willig, ihm zu helfen.", + "example_sentence_english": "She was willing to help him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17116 + }, + { + "word": "Wörtchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little word;brief word", + "romanization": "Wörtchen", + "example_sentence_native": "Ich muss ein Wörtchen mit dir reden.", + "example_sentence_english": "I need to have a word with you.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17117 + }, + { + "word": "Zauberei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magic;sorcery", + "romanization": "Zauberei", + "example_sentence_native": "Die Kinder waren fasziniert von der Zauberei.", + "example_sentence_english": "The children were fascinated by the magic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17119 + }, + { + "word": "zieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adorn", + "romanization": "zieren", + "example_sentence_native": "Sie zierte ihr Haar mit Blumen.", + "example_sentence_english": "She adorned her hair with flowers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17120 + }, + { + "word": "zurückbleiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stay behind", + "romanization": "zurückbleiben", + "example_sentence_native": "Er musste zurückbleiben, um die Tür abzuschließen.", + "example_sentence_english": "He had to stay behind to lock the door.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "bleiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17121 + }, + { + "word": "Zärtlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenderness", + "romanization": "Zärtlichkeit", + "example_sentence_native": "Sie zeigte große Zärtlichkeit gegenüber ihrem Kind.", + "example_sentence_english": "She showed great tenderness towards her child.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17122 + }, + { + "word": "Übereinkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement", + "romanization": "Übereinkommen", + "example_sentence_native": "Beide Parteien erreichten ein Übereinkommen.", + "example_sentence_english": "Both parties reached an agreement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17123 + }, + { + "word": "übergeordnet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superior", + "romanization": "übergeordnet", + "example_sentence_native": "Die übergeordnete Behörde traf die Entscheidung.", + "example_sentence_english": "The superior authority made the decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17124 + }, + { + "word": "abhauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clear off", + "romanization": "abhauen", + "example_sentence_native": "Er wollte einfach nur abhauen.", + "example_sentence_english": "He just wanted to clear off.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "hauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17127 + }, + { + "word": "Abruf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retrieval", + "romanization": "Abruf", + "example_sentence_native": "Die Daten stehen auf Abruf bereit.", + "example_sentence_english": "The data is available on demand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17128 + }, + { + "word": "Abschreckung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deterrence", + "romanization": "Abschreckung", + "example_sentence_native": "Die Abschreckung ist ein wichtiges Konzept in der Sicherheitspolitik.", + "example_sentence_english": "Deterrence is an important concept in security policy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17129 + }, + { + "word": "abstossend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repulsive", + "romanization": "abstossend", + "example_sentence_native": "Sein Verhalten war sehr abstossend.", + "example_sentence_english": "His behavior was very repulsive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17130 + }, + { + "word": "abwägen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weigh up", + "romanization": "abwägen", + "example_sentence_native": "Man muss die Vor- und Nachteile sorgfältig abwägen.", + "example_sentence_english": "One must carefully weigh up the pros and cons.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "wägen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17131 + }, + { + "word": "administrativ", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administrative", + "romanization": "administrativ", + "example_sentence_native": "Das ist eine rein administrative Angelegenheit.", + "example_sentence_english": "That is a purely administrative matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17134 + }, + { + "word": "Aggressivität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressiveness", + "romanization": "Aggressivität", + "example_sentence_native": "Seine Aggressivität war beängstigend.", + "example_sentence_english": "His aggressiveness was frightening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17135 + }, + { + "word": "Aloe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aloe", + "romanization": "Aloe", + "example_sentence_native": "Aloe Vera ist gut für die Haut.", + "example_sentence_english": "Aloe Vera is good for the skin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17138 + }, + { + "word": "Amtsblatt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official gazette", + "romanization": "Amtsblatt", + "example_sentence_native": "Die Bekanntmachung wurde im Amtsblatt veröffentlicht.", + "example_sentence_english": "The announcement was published in the official gazette.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17139 + }, + { + "word": "Anhebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase", + "romanization": "Anhebung", + "example_sentence_native": "Die Anhebung der Preise war unerwartet.", + "example_sentence_english": "The increase in prices was unexpected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17140 + }, + { + "word": "Antisemit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemite", + "romanization": "Antisemit", + "example_sentence_native": "Er wurde als Antisemit bezeichnet.", + "example_sentence_english": "He was called an antisemite.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17141 + }, + { + "word": "armselig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pathetic", + "romanization": "armselig", + "example_sentence_native": "Er lebte in armseligen Verhältnissen.", + "example_sentence_english": "He lived in miserable conditions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17144 + }, + { + "word": "Artenvielfalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biodiversity", + "romanization": "Artenvielfalt", + "example_sentence_native": "Der Schutz der Artenvielfalt ist entscheidend.", + "example_sentence_english": "The protection of biodiversity is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17145 + }, + { + "word": "Asylsuchend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum seeker", + "romanization": "Asylsuchend", + "example_sentence_native": "Der Asylsuchende wartet auf seine Anhörung.", + "example_sentence_english": "The asylum seeker is waiting for his hearing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17146 + }, + { + "word": "atemlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breathless", + "romanization": "atemlos", + "example_sentence_native": "Nach dem Sprint war er atemlos.", + "example_sentence_english": "After the sprint, he was breathless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17147 + }, + { + "word": "Aussendienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "field service", + "romanization": "Aussendienst", + "example_sentence_native": "Er arbeitet oft im Aussendienst.", + "example_sentence_english": "He often works in field service.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17149 + }, + { + "word": "aussortieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sort out", + "romanization": "aussortieren", + "example_sentence_native": "Ich muss alte Kleidung aussortieren.", + "example_sentence_english": "I need to sort out old clothes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "sortieren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17150 + }, + { + "word": "Bambus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bamboo", + "romanization": "Bambus", + "example_sentence_native": "Bambus wächst sehr schnell.", + "example_sentence_english": "Bamboo grows very fast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17152 + }, + { + "word": "Bankkonto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bank account", + "romanization": "Bankkonto", + "example_sentence_native": "Ich habe ein neues Bankkonto eröffnet.", + "example_sentence_english": "I opened a new bank account.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17153 + }, + { + "word": "Bekanntenkreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circle of acquaintances", + "romanization": "Bekanntenkreis", + "example_sentence_native": "Sie hat einen großen Bekanntenkreis.", + "example_sentence_english": "She has a large circle of acquaintances.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17157 + }, + { + "word": "bestürzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismayed", + "romanization": "bestürzt", + "example_sentence_native": "Sie war bestürzt über die Nachricht.", + "example_sentence_english": "She was dismayed by the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17160 + }, + { + "word": "Betriebswirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business administration", + "romanization": "Betriebswirtschaft", + "example_sentence_native": "Er studiert Betriebswirtschaft an der Universität.", + "example_sentence_english": "He studies business administration at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17161 + }, + { + "word": "betäuben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to numb", + "romanization": "betäuben", + "example_sentence_native": "Der Zahnarzt wird den Bereich betäuben.", + "example_sentence_english": "The dentist will numb the area.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17162 + }, + { + "word": "Bowling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowling", + "romanization": "Bowling", + "example_sentence_native": "Wir gehen am Samstag zum Bowling.", + "example_sentence_english": "We are going bowling on Saturday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17164 + }, + { + "word": "Breitband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broadband", + "romanization": "Breitband", + "example_sentence_native": "Wir brauchen eine Breitband-Internetverbindung.", + "example_sentence_english": "We need a broadband internet connection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17165 + }, + { + "word": "Brise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breeze", + "romanization": "Brise", + "example_sentence_native": "Eine leichte Brise wehte vom Meer her.", + "example_sentence_english": "A light breeze blew from the sea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17166 + }, + { + "word": "brummen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hum", + "romanization": "brummen", + "example_sentence_native": "Der Kühlschrank brummt leise.", + "example_sentence_english": "The refrigerator hums quietly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17168 + }, + { + "word": "Busbahnhof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bus station", + "romanization": "Busbahnhof", + "example_sentence_native": "Der Busbahnhof ist gleich um die Ecke.", + "example_sentence_english": "The bus station is just around the corner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17170 + }, + { + "word": "Bürgerhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "community center", + "romanization": "Bürgerhaus", + "example_sentence_native": "Die Veranstaltung findet im Bürgerhaus statt.", + "example_sentence_english": "The event takes place in the community center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17172 + }, + { + "word": "Chorleiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choir director", + "romanization": "Chorleiter", + "example_sentence_native": "Der Chorleiter gab das Zeichen zum Beginn.", + "example_sentence_english": "The choir director gave the signal to start.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17177 + }, + { + "word": "Computing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "computing", + "romanization": "Computing", + "example_sentence_native": "Er studiert Computing an der Fachhochschule.", + "example_sentence_english": "He studies computing at the university of applied sciences.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17178 + }, + { + "word": "Connection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection", + "romanization": "Connection", + "example_sentence_native": "Die Internet-Connection ist sehr langsam.", + "example_sentence_english": "The internet connection is very slow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17179 + }, + { + "word": "Credo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credo;creed", + "romanization": "Credo", + "example_sentence_native": "Sein Credo ist Ehrlichkeit.", + "example_sentence_english": "His credo is honesty.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17180 + }, + { + "word": "Dattel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "date (fruit)", + "romanization": "Dattel", + "example_sentence_native": "Ich esse gerne Datteln.", + "example_sentence_english": "I like to eat dates.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17182 + }, + { + "word": "demografisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demographic", + "romanization": "demografisch", + "example_sentence_native": "Die demografische Entwicklung ist besorgniserregend.", + "example_sentence_english": "The demographic development is concerning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17184 + }, + { + "word": "Disc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disc", + "romanization": "Disc", + "example_sentence_native": "Die Disc ist zerkratzt.", + "example_sentence_english": "The disc is scratched.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17185 + }, + { + "word": "Distrikt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "district", + "romanization": "Distrikt", + "example_sentence_native": "Dieser Distrikt ist sehr ruhig.", + "example_sentence_english": "This district is very quiet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17187 + }, + { + "word": "Donnerstagabend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Thursday evening", + "romanization": "Donnerstagabend", + "example_sentence_native": "Wir treffen uns am Donnerstagabend.", + "example_sentence_english": "We meet on Thursday evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17189 + }, + { + "word": "Dringlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urgency", + "romanization": "Dringlichkeit", + "example_sentence_native": "Die Dringlichkeit der Situation ist offensichtlich.", + "example_sentence_english": "The urgency of the situation is obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17191 + }, + { + "word": "Drogerie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drugstore;chemist's", + "romanization": "Drogerie", + "example_sentence_native": "Ich muss zur Drogerie gehen.", + "example_sentence_english": "I have to go to the drugstore.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17192 + }, + { + "word": "duften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to smell (good);to give off a scent", + "romanization": "duften", + "example_sentence_native": "Die Blumen duften herrlich.", + "example_sentence_english": "The flowers smell wonderful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17193 + }, + { + "word": "Duldung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toleration;sufferance", + "romanization": "Duldung", + "example_sentence_native": "Er lebt hier unter Duldung.", + "example_sentence_english": "He lives here under toleration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17194 + }, + { + "word": "durchdringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penetrate;to pervade", + "romanization": "durchdringen", + "example_sentence_native": "Der Regen konnte die Kleidung nicht durchdringen.", + "example_sentence_english": "The rain could not penetrate the clothing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17195 + }, + { + "word": "ehrgeizig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambitious", + "romanization": "ehrgeizig", + "example_sentence_native": "Sie ist eine sehr ehrgeizige Studentin.", + "example_sentence_english": "She is a very ambitious student.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17196 + }, + { + "word": "Eigner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owner;proprietor", + "romanization": "Eigner", + "example_sentence_native": "Der Eigner des Schiffes ist unbekannt.", + "example_sentence_english": "The owner of the ship is unknown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17197 + }, + { + "word": "eingeschränkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restricted;limited", + "romanization": "eingeschränkt", + "example_sentence_native": "Die Sicht ist eingeschränkt.", + "example_sentence_english": "The view is restricted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17198 + }, + { + "word": "Einwirkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influence;effect;impact", + "romanization": "Einwirkung", + "example_sentence_native": "Die Einwirkung des Wetters war gering.", + "example_sentence_english": "The effect of the weather was minor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17199 + }, + { + "word": "einzahlen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to deposit", + "romanization": "einzahlen", + "example_sentence_native": "Ich muss Geld auf mein Konto einzahlen.", + "example_sentence_english": "I need to deposit money into my account.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "zahlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17200 + }, + { + "word": "Eitelkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vanity", + "romanization": "Eitelkeit", + "example_sentence_native": "Ihre Eitelkeit war offensichtlich.", + "example_sentence_english": "Her vanity was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17201 + }, + { + "word": "energetisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetic", + "romanization": "energetisch", + "example_sentence_native": "Er hat eine sehr energetische Ausstrahlung.", + "example_sentence_english": "He has a very energetic aura.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17204 + }, + { + "word": "entfachen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ignite", + "romanization": "entfachen", + "example_sentence_native": "Ein Funke kann ein Feuer entfachen.", + "example_sentence_english": "A spark can ignite a fire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17205 + }, + { + "word": "entgegnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retort", + "romanization": "entgegnen", + "example_sentence_native": "Er konnte nichts darauf entgegnen.", + "example_sentence_english": "He couldn't retort anything to that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17206 + }, + { + "word": "Erbrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inheritance law", + "romanization": "Erbrecht", + "example_sentence_native": "Das Erbrecht regelt die Verteilung des Vermögens nach dem Tod.", + "example_sentence_english": "Inheritance law regulates the distribution of assets after death.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17207 + }, + { + "word": "Evidenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evidence", + "romanization": "Evidenz", + "example_sentence_native": "Es gibt keine Evidenz für diese Behauptung.", + "example_sentence_english": "There is no evidence for this claim.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17210 + }, + { + "word": "existent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existent", + "romanization": "existent", + "example_sentence_native": "Ist das Problem noch existent?", + "example_sentence_english": "Is the problem still existent?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17211 + }, + { + "word": "Familienangehöriger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family member", + "romanization": "Familienangehöriger", + "example_sentence_native": "Alle Familienangehörigen kamen zum Treffen.", + "example_sentence_english": "All family members came to the meeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17212 + }, + { + "word": "Familiengeschichte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family history", + "romanization": "Familiengeschichte", + "example_sentence_native": "Sie forschte in ihrer Familiengeschichte.", + "example_sentence_english": "She researched her family history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17213 + }, + { + "word": "Familienvater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family father", + "romanization": "Familienvater", + "example_sentence_native": "Er ist ein verantwortungsbewusster Familienvater.", + "example_sentence_english": "He is a responsible family father.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17214 + }, + { + "word": "favorisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to favor", + "romanization": "favorisieren", + "example_sentence_native": "Welches Team favorisieren Sie?", + "example_sentence_english": "Which team do you favor?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17215 + }, + { + "word": "Filmmusik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film music", + "romanization": "Filmmusik", + "example_sentence_native": "Die Filmmusik war sehr emotional.", + "example_sentence_english": "The film music was very emotional.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17216 + }, + { + "word": "Flaggschiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flagship", + "romanization": "Flaggschiff", + "example_sentence_native": "Das neue Modell ist das Flaggschiff der Marke.", + "example_sentence_english": "The new model is the brand's flagship.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17218 + }, + { + "word": "fortlaufend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous;ongoing", + "romanization": "fortlaufend", + "example_sentence_native": "Wir müssen die fortlaufende Entwicklung des Projekts überwachen.", + "example_sentence_english": "We must monitor the continuous development of the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17220 + }, + { + "word": "Gehege", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enclosure;pen", + "romanization": "Gehege", + "example_sentence_native": "Die Tiere leben in einem großen Gehege.", + "example_sentence_english": "The animals live in a large enclosure.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17223 + }, + { + "word": "geteilt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divided;shared", + "romanization": "geteilt", + "example_sentence_native": "Wir haben die Arbeit geteilt.", + "example_sentence_english": "We shared the work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17228 + }, + { + "word": "Grundausbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic training;fundamental education", + "romanization": "Grundausbildung", + "example_sentence_native": "Die Grundausbildung dauert drei Monate.", + "example_sentence_english": "The basic training lasts three months.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17230 + }, + { + "word": "Grundzug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamental feature;basic characteristic", + "romanization": "Grundzug", + "example_sentence_native": "Ein Grundzug seiner Persönlichkeit ist seine Ehrlichkeit.", + "example_sentence_english": "A fundamental feature of his personality is his honesty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17231 + }, + { + "word": "Gründungsmitglied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founding member", + "romanization": "Gründungsmitglied", + "example_sentence_native": "Er war ein Gründungsmitglied des Vereins.", + "example_sentence_english": "He was a founding member of the club.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17232 + }, + { + "word": "Gönner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patron;benefactor", + "romanization": "Gönner", + "example_sentence_native": "Der Verein dankte seinen Gönnern für die Unterstützung.", + "example_sentence_english": "The club thanked its patrons for the support.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17235 + }, + { + "word": "hausgemacht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homemade", + "romanization": "hausgemacht", + "example_sentence_native": "Ich liebe hausgemachte Marmelade.", + "example_sentence_english": "I love homemade jam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17236 + }, + { + "word": "herausgegeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "published;issued", + "romanization": "herausgegeben", + "example_sentence_native": "Das Buch wurde letztes Jahr herausgegeben.", + "example_sentence_english": "The book was published last year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17237 + }, + { + "word": "herausgekommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "released;come out", + "romanization": "herausgekommen", + "example_sentence_native": "Die neue Version ist endlich herausgekommen.", + "example_sentence_english": "The new version has finally come out.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17238 + }, + { + "word": "Hilflosigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helplessness", + "romanization": "Hilflosigkeit", + "example_sentence_native": "Er spürte eine tiefe Hilflosigkeit.", + "example_sentence_english": "He felt a deep helplessness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17242 + }, + { + "word": "hinken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to limp", + "romanization": "hinken", + "example_sentence_native": "Nach dem Unfall musste er hinken.", + "example_sentence_english": "After the accident, he had to limp.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17243 + }, + { + "word": "Hungersnot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "famine", + "romanization": "Hungersnot", + "example_sentence_native": "Die Region litt unter einer schweren Hungersnot.", + "example_sentence_english": "The region suffered from a severe famine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17244 + }, + { + "word": "Hühnchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chicken", + "romanization": "Hühnchen", + "example_sentence_native": "Wir essen heute Abend Hühnchen mit Reis.", + "example_sentence_english": "We are eating chicken with rice tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17245 + }, + { + "word": "Improvisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvisation", + "romanization": "Improvisation", + "example_sentence_native": "Seine Rede war reine Improvisation.", + "example_sentence_english": "His speech was pure improvisation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17247 + }, + { + "word": "interagieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interact", + "romanization": "interagieren", + "example_sentence_native": "Die Kinder lernen, miteinander zu interagieren.", + "example_sentence_english": "The children learn to interact with each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17248 + }, + { + "word": "Jahreshauptversammlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual general meeting", + "romanization": "Jahreshauptversammlung", + "example_sentence_native": "Die Jahreshauptversammlung findet nächste Woche statt.", + "example_sentence_english": "The annual general meeting will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17249 + }, + { + "word": "Jobsuche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job search", + "romanization": "Jobsuche", + "example_sentence_native": "Er ist gerade auf Jobsuche.", + "example_sentence_english": "He is currently on a job search.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17250 + }, + { + "word": "Jumbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jumbo (jet);jumbo (size)", + "romanization": "Jumbo", + "example_sentence_native": "Der Jumbo-Jet landete pünktlich.", + "example_sentence_english": "The jumbo jet landed on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17251 + }, + { + "word": "Kernenergie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear energy", + "romanization": "Kernenergie", + "example_sentence_native": "Die Debatte über Kernenergie ist in Deutschland sehr präsent.", + "example_sentence_english": "The debate about nuclear energy is very present in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17254 + }, + { + "word": "klarstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clarify;to make clear", + "romanization": "klarstellen", + "example_sentence_native": "Ich möchte das Missverständnis klarstellen.", + "example_sentence_english": "I would like to clarify the misunderstanding.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "klar", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17256 + }, + { + "word": "Kohlensäure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carbonic acid;carbonation", + "romanization": "Kohlensäure", + "example_sentence_native": "Dieses Mineralwasser enthält viel Kohlensäure.", + "example_sentence_english": "This mineral water contains a lot of carbonation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17257 + }, + { + "word": "Komik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comedy;comicality", + "romanization": "Komik", + "example_sentence_native": "Die Komik der Situation war offensichtlich.", + "example_sentence_english": "The comicality of the situation was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17258 + }, + { + "word": "Kontaktlinse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contact lens", + "romanization": "Kontaktlinse", + "example_sentence_native": "Ich trage Kontaktlinsen statt einer Brille.", + "example_sentence_english": "I wear contact lenses instead of glasses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17259 + }, + { + "word": "Kostengrund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cost reason", + "romanization": "Kostengrund", + "example_sentence_native": "Aus Kostengründen wurde das Projekt eingestellt.", + "example_sentence_english": "For cost reasons, the project was discontinued.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17261 + }, + { + "word": "Kriegsverbrecher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "war criminal", + "romanization": "Kriegsverbrecher", + "example_sentence_native": "Der Kriegsverbrecher wurde vor Gericht gestellt.", + "example_sentence_english": "The war criminal was brought to justice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17262 + }, + { + "word": "kultiviert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultivated;refined", + "romanization": "kultiviert", + "example_sentence_native": "Er ist ein sehr kultivierter Mensch.", + "example_sentence_english": "He is a very cultivated person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17264 + }, + { + "word": "kund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "known;public", + "romanization": "kund", + "example_sentence_native": "Er tat seine Meinung kund.", + "example_sentence_english": "He made his opinion known.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17265 + }, + { + "word": "Känguru", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kangaroo", + "romanization": "Känguru", + "example_sentence_native": "Das Känguru hüpfte über das Feld.", + "example_sentence_english": "The kangaroo hopped across the field.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17266 + }, + { + "word": "Köpfchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little head;brains", + "romanization": "Köpfchen", + "example_sentence_native": "Man braucht Köpfchen, um dieses Rätsel zu lösen.", + "example_sentence_english": "You need brains to solve this riddle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17267 + }, + { + "word": "Liquidität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liquidity", + "romanization": "Liquidität", + "example_sentence_native": "Das Unternehmen hat Probleme mit der Liquidität.", + "example_sentence_english": "The company has problems with liquidity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17270 + }, + { + "word": "Lodge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lodge", + "romanization": "Lodge", + "example_sentence_native": "Wir übernachteten in einer gemütlichen Lodge.", + "example_sentence_english": "We stayed overnight in a cozy lodge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17271 + }, + { + "word": "Lore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mine cart;wagon", + "romanization": "Lore", + "example_sentence_native": "Die Lore fuhr auf den Schienen.", + "example_sentence_english": "The mine cart ran on the tracks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17272 + }, + { + "word": "Lumpen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rag;tatter", + "romanization": "Lumpen", + "example_sentence_native": "Er wischte den Tisch mit einem Lumpen ab.", + "example_sentence_english": "He wiped the table with a rag.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17273 + }, + { + "word": "Magnum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnum (large bottle;large caliber)", + "romanization": "Magnum", + "example_sentence_native": "Wir bestellten eine Magnum Champagner.", + "example_sentence_english": "We ordered a magnum of champagne.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17274 + }, + { + "word": "Marktwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market value", + "romanization": "Marktwert", + "example_sentence_native": "Der Marktwert des Unternehmens ist gestiegen.", + "example_sentence_english": "The market value of the company has increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17276 + }, + { + "word": "Memorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial", + "romanization": "Memorial", + "example_sentence_native": "Sie besuchten das Memorial für die Opfer.", + "example_sentence_english": "They visited the memorial for the victims.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17277 + }, + { + "word": "Menschenhandel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "human trafficking", + "romanization": "Menschenhandel", + "example_sentence_native": "Menschenhandel ist ein schweres Verbrechen.", + "example_sentence_english": "Human trafficking is a serious crime.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17278 + }, + { + "word": "Metropolregion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolitan region", + "romanization": "Metropolregion", + "example_sentence_native": "Die Metropolregion wächst stetig.", + "example_sentence_english": "The metropolitan region is growing steadily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17279 + }, + { + "word": "Miniatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miniature", + "romanization": "Miniatur", + "example_sentence_native": "Er sammelt kleine Miniaturen von Autos.", + "example_sentence_english": "He collects small miniatures of cars.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17281 + }, + { + "word": "Mittagszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lunchtime", + "romanization": "Mittagszeit", + "example_sentence_native": "Die Mittagszeit ist meine Lieblingszeit des Tages.", + "example_sentence_english": "Lunchtime is my favorite time of the day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17282 + }, + { + "word": "Muffin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "muffin", + "romanization": "Muffin", + "example_sentence_native": "Ich möchte einen Schokoladenmuffin zum Frühstück.", + "example_sentence_english": "I would like a chocolate muffin for breakfast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17284 + }, + { + "word": "Neuausrichtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "realignment", + "romanization": "Neuausrichtung", + "example_sentence_native": "Das Unternehmen plant eine strategische Neuausrichtung.", + "example_sentence_english": "The company is planning a strategic realignment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17288 + }, + { + "word": "nordöstlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northeastern", + "romanization": "nordöstlich", + "example_sentence_native": "Die Stadt liegt nordöstlich des Flusses.", + "example_sentence_english": "The city is located northeast of the river.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17290 + }, + { + "word": "Orgie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgy", + "romanization": "Orgie", + "example_sentence_native": "Die Party endete in einer wilden Orgie.", + "example_sentence_english": "The party ended in a wild orgy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17292 + }, + { + "word": "Perser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Persian (person or cat)", + "romanization": "Perser", + "example_sentence_native": "Er ist ein Perser und spricht Farsi.", + "example_sentence_english": "He is a Persian and speaks Farsi.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17294 + }, + { + "word": "pflanzlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plant-based", + "romanization": "pflanzlich", + "example_sentence_native": "Viele Menschen bevorzugen pflanzliche Milchalternativen.", + "example_sentence_english": "Many people prefer plant-based milk alternatives.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17295 + }, + { + "word": "Philharmoniker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philharmonic (member)", + "romanization": "Philharmoniker", + "example_sentence_native": "Die Berliner Philharmoniker sind weltberühmt.", + "example_sentence_english": "The Berlin Philharmonic are world-famous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17296 + }, + { + "word": "Praktiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practitioner", + "romanization": "Praktiker", + "example_sentence_native": "Er ist ein Praktiker und bevorzugt praktische Lösungen.", + "example_sentence_english": "He is a practitioner and prefers practical solutions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17297 + }, + { + "word": "preislich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in terms of price", + "romanization": "preislich", + "example_sentence_native": "Preislich ist das Angebot sehr attraktiv.", + "example_sentence_english": "In terms of price, the offer is very attractive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17298 + }, + { + "word": "Privatschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "private school", + "romanization": "Privatschule", + "example_sentence_native": "Viele Eltern schicken ihre Kinder auf eine Privatschule.", + "example_sentence_english": "Many parents send their children to a private school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17299 + }, + { + "word": "Probezeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probation period", + "romanization": "Probezeit", + "example_sentence_native": "Die Probezeit dauert sechs Monate.", + "example_sentence_english": "The probation period lasts six months.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17300 + }, + { + "word": "Pünktlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuality", + "romanization": "Pünktlichkeit", + "example_sentence_native": "Pünktlichkeit ist in Deutschland sehr wichtig.", + "example_sentence_english": "Punctuality is very important in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17303 + }, + { + "word": "Rahmenprogramm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporting program", + "romanization": "Rahmenprogramm", + "example_sentence_native": "Das Rahmenprogramm der Konferenz war sehr interessant.", + "example_sentence_english": "The supporting program of the conference was very interesting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17304 + }, + { + "word": "rappen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rap", + "romanization": "rappen", + "example_sentence_native": "Er kann sehr gut rappen.", + "example_sentence_english": "He can rap very well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17305 + }, + { + "word": "Rasenmäher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lawnmower", + "romanization": "Rasenmäher", + "example_sentence_native": "Der Rasenmäher ist kaputt.", + "example_sentence_english": "The lawnmower is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17306 + }, + { + "word": "Regenschirm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "umbrella", + "romanization": "Regenschirm", + "example_sentence_native": "Vergiss deinen Regenschirm nicht, es regnet.", + "example_sentence_english": "Don't forget your umbrella, it's raining.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17307 + }, + { + "word": "rocken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rock (music)", + "romanization": "rocken", + "example_sentence_native": "Die Band wird die Bühne rocken.", + "example_sentence_english": "The band will rock the stage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17308 + }, + { + "word": "sarkastisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcastic", + "romanization": "sarkastisch", + "example_sentence_native": "Seine Bemerkung war sehr sarkastisch.", + "example_sentence_english": "His remark was very sarcastic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17311 + }, + { + "word": "Schlachthof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slaughterhouse", + "romanization": "Schlachthof", + "example_sentence_native": "Der Schlachthof wurde geschlossen.", + "example_sentence_english": "The slaughterhouse was closed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17314 + }, + { + "word": "Schlinge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noose;loop;snare", + "romanization": "Schlinge", + "example_sentence_native": "Er legte eine Schlinge um den Ast.", + "example_sentence_english": "He put a noose around the branch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17315 + }, + { + "word": "schminken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put on makeup;to make up", + "romanization": "schminken", + "example_sentence_native": "Sie schminkt sich jeden Morgen.", + "example_sentence_english": "She puts on makeup every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17316 + }, + { + "word": "Schutzengel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guardian angel", + "romanization": "Schutzengel", + "example_sentence_native": "Er muss einen Schutzengel gehabt haben.", + "example_sentence_english": "He must have had a guardian angel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17319 + }, + { + "word": "schwarzwälder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Black Forest (adj.)", + "romanization": "schwarzwälder", + "example_sentence_native": "Sie liebt den schwarzwälder Schinken.", + "example_sentence_english": "She loves the Black Forest ham.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17320 + }, + { + "word": "sechsmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "six times", + "romanization": "sechsmal", + "example_sentence_native": "Ich habe das Buch sechsmal gelesen.", + "example_sentence_english": "I have read the book six times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 17322 + }, + { + "word": "Sicherheitsvorkehrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security measure", + "romanization": "Sicherheitsvorkehrung", + "example_sentence_native": "Es wurden strenge Sicherheitsvorkehrungen getroffen.", + "example_sentence_english": "Strict security measures were taken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17325 + }, + { + "word": "siebzehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seventeen", + "romanization": "siebzehn", + "example_sentence_native": "Sie ist siebzehn Jahre alt.", + "example_sentence_english": "She is seventeen years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 17326 + }, + { + "word": "Skyline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skyline", + "romanization": "Skyline", + "example_sentence_native": "Die Skyline von Frankfurt ist beeindruckend.", + "example_sentence_english": "The skyline of Frankfurt is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17327 + }, + { + "word": "Sonderausstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special exhibition", + "romanization": "Sonderausstellung", + "example_sentence_native": "Die Sonderausstellung im Museum ist sehr beliebt.", + "example_sentence_english": "The special exhibition in the museum is very popular.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17328 + }, + { + "word": "Speech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speech", + "romanization": "Speech", + "example_sentence_native": "Er hielt eine beeindruckende Speech.", + "example_sentence_english": "He gave an impressive speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17329 + }, + { + "word": "Sprachrohr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mouthpiece (figurative);speaking tube", + "romanization": "Sprachrohr", + "example_sentence_native": "Die Zeitung ist das Sprachrohr der Regierung.", + "example_sentence_english": "The newspaper is the mouthpiece of the government.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17330 + }, + { + "word": "Stadtfest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city festival", + "romanization": "Stadtfest", + "example_sentence_native": "Jedes Jahr findet ein großes Stadtfest statt.", + "example_sentence_english": "A big city festival takes place every year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17332 + }, + { + "word": "Starkregen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heavy rain;torrential rain", + "romanization": "Starkregen", + "example_sentence_native": "Der Starkregen führte zu Überschwemmungen.", + "example_sentence_english": "The heavy rain led to floods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17333 + }, + { + "word": "Steuergeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax money", + "romanization": "Steuergeld", + "example_sentence_native": "Die Steuergelder werden für öffentliche Projekte verwendet.", + "example_sentence_english": "The tax money is used for public projects.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17334 + }, + { + "word": "Tagblatt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily newspaper", + "romanization": "Tagblatt", + "example_sentence_native": "Er liest jeden Morgen das lokale Tagblatt.", + "example_sentence_english": "He reads the local daily newspaper every morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17335 + }, + { + "word": "Tagebau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "open-pit mining;opencast mining", + "romanization": "Tagebau", + "example_sentence_native": "Der Tagebau hat die Landschaft stark verändert.", + "example_sentence_english": "Open-pit mining has greatly changed the landscape.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17336 + }, + { + "word": "talentiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talented", + "romanization": "talentiert", + "example_sentence_native": "Sie ist eine sehr talentierte Musikerin.", + "example_sentence_english": "She is a very talented musician.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17337 + }, + { + "word": "Tanne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fir tree", + "romanization": "Tanne", + "example_sentence_native": "Im Wald stehen viele hohe Tannen.", + "example_sentence_english": "There are many tall fir trees in the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17338 + }, + { + "word": "Tanzfläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dance floor", + "romanization": "Tanzfläche", + "example_sentence_native": "Die Tanzfläche war voll mit Leuten.", + "example_sentence_english": "The dance floor was full of people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17339 + }, + { + "word": "thüringisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thuringian", + "romanization": "thüringisch", + "example_sentence_native": "Er isst gerne thüringische Bratwurst.", + "example_sentence_english": "He likes to eat Thuringian sausage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17342 + }, + { + "word": "Türsteher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bouncer;doorman", + "romanization": "Türsteher", + "example_sentence_native": "Der Türsteher ließ ihn nicht herein.", + "example_sentence_english": "The bouncer didn't let him in.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17344 + }, + { + "word": "unbefriedigend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsatisfactory;unsatisfying", + "romanization": "unbefriedigend", + "example_sentence_native": "Das Ergebnis war unbefriedigend.", + "example_sentence_english": "The result was unsatisfactory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17346 + }, + { + "word": "unberechenbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpredictable;incalculable", + "romanization": "unberechenbar", + "example_sentence_native": "Das Wetter in den Bergen ist oft unberechenbar.", + "example_sentence_english": "The weather in the mountains is often unpredictable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17347 + }, + { + "word": "untrennbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inseparable", + "romanization": "untrennbar", + "example_sentence_native": "Die beiden Freunde sind untrennbar.", + "example_sentence_english": "The two friends are inseparable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17348 + }, + { + "word": "veranschlagen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to estimate;to budget", + "romanization": "veranschlagen", + "example_sentence_native": "Die Kosten wurden auf 1000 Euro veranschlagt.", + "example_sentence_english": "The costs were estimated at 1000 Euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17350 + }, + { + "word": "verleugnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deny;to disavow", + "romanization": "verleugnen", + "example_sentence_native": "Er konnte seine Herkunft nicht verleugnen.", + "example_sentence_english": "He could not deny his origin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17351 + }, + { + "word": "verspüren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel;to sense", + "romanization": "verspüren", + "example_sentence_native": "Sie verspürte einen starken Hunger.", + "example_sentence_english": "She felt a strong hunger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17352 + }, + { + "word": "Vizepräsidentin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice president (female)", + "romanization": "Vizepräsidentin", + "example_sentence_native": "Die Vizepräsidentin hielt eine Rede.", + "example_sentence_english": "The vice president gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17353 + }, + { + "word": "Vorarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preliminary work;groundwork", + "romanization": "Vorarbeit", + "example_sentence_native": "Die Vorarbeit für das Projekt ist abgeschlossen.", + "example_sentence_english": "The preliminary work for the project is completed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17356 + }, + { + "word": "wahllos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "random;indiscriminate", + "romanization": "wahllos", + "example_sentence_native": "Er wählte wahllos ein Buch aus dem Regal.", + "example_sentence_english": "He randomly chose a book from the shelf.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17359 + }, + { + "word": "Wahltag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "election day", + "romanization": "Wahltag", + "example_sentence_native": "Der Wahltag ist immer ein wichtiger Tag für die Demokratie.", + "example_sentence_english": "Election day is always an important day for democracy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17360 + }, + { + "word": "Waise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orphan", + "romanization": "Waise", + "example_sentence_native": "Das Kind war eine Waise und lebte bei seiner Tante.", + "example_sentence_english": "The child was an orphan and lived with his aunt.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17361 + }, + { + "word": "Weiblichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "femininity", + "romanization": "Weiblichkeit", + "example_sentence_native": "Sie strahlte eine natürliche Weiblichkeit aus.", + "example_sentence_english": "She exuded a natural femininity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17362 + }, + { + "word": "Weihnachtsgeschenk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas present", + "romanization": "Weihnachtsgeschenk", + "example_sentence_native": "Ich habe ein schönes Weihnachtsgeschenk für meine Schwester gekauft.", + "example_sentence_english": "I bought a nice Christmas present for my sister.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17363 + }, + { + "word": "weiterkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make progress", + "romanization": "weiterkommen", + "example_sentence_native": "Wir müssen hart arbeiten, um weiterzukommen.", + "example_sentence_english": "We have to work hard to make progress.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17364 + }, + { + "word": "Weltmeisterin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female world champion", + "romanization": "Weltmeisterin", + "example_sentence_native": "Sie ist die neue Weltmeisterin im Schwimmen.", + "example_sentence_english": "She is the new world champion in swimming.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17365 + }, + { + "word": "widersetzen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to resist", + "romanization": "widersetzen", + "example_sentence_native": "Er wagte es nicht, sich dem Befehl zu widersetzen.", + "example_sentence_english": "He did not dare to resist the order.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17369 + }, + { + "word": "widersprüchlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contradictory", + "romanization": "widersprüchlich", + "example_sentence_native": "Seine Aussagen waren widersprüchlich.", + "example_sentence_english": "His statements were contradictory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17370 + }, + { + "word": "Wiedereinführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reintroduction", + "romanization": "Wiedereinführung", + "example_sentence_native": "Die Wiedereinführung der alten Regel wurde diskutiert.", + "example_sentence_english": "The reintroduction of the old rule was discussed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17371 + }, + { + "word": "Wiederkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return", + "romanization": "Wiederkehr", + "example_sentence_native": "Wir freuen uns auf die Wiederkehr des Frühlings.", + "example_sentence_english": "We look forward to the return of spring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17372 + }, + { + "word": "wirkungslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ineffective", + "romanization": "wirkungslos", + "example_sentence_native": "Die Maßnahme erwies sich als wirkungslos.", + "example_sentence_english": "The measure proved to be ineffective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17375 + }, + { + "word": "wirkungsvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effective", + "romanization": "wirkungsvoll", + "example_sentence_native": "Das neue Medikament ist sehr wirkungsvoll.", + "example_sentence_english": "The new medication is very effective.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17376 + }, + { + "word": "Zeitungsartikel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "newspaper article", + "romanization": "Zeitungsartikel", + "example_sentence_native": "Ich habe einen interessanten Zeitungsartikel gelesen.", + "example_sentence_english": "I read an interesting newspaper article.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17379 + }, + { + "word": "Zeugenaussage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witness statement", + "romanization": "Zeugenaussage", + "example_sentence_native": "Die Zeugenaussage war entscheidend für den Fall.", + "example_sentence_english": "The witness statement was crucial for the case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17380 + }, + { + "word": "zuende", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to an end;finished", + "romanization": "zuende", + "example_sentence_native": "Die Arbeit ist bald zuende.", + "example_sentence_english": "The work is almost finished.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 17381 + }, + { + "word": "Zumutung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposition;unreasonableness", + "romanization": "Zumutung", + "example_sentence_native": "Das war eine echte Zumutung für alle Beteiligten.", + "example_sentence_english": "That was a real imposition for everyone involved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17382 + }, + { + "word": "zurückbringen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bring back;to return", + "romanization": "zurückbringen", + "example_sentence_native": "Ich muss das Buch in die Bibliothek zurückbringen.", + "example_sentence_english": "I have to return the book to the library.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17383 + }, + { + "word": "zurückschicken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send back;to return", + "romanization": "zurückschicken", + "example_sentence_native": "Sie müssen das Paket zurückschicken.", + "example_sentence_english": "You must send the package back.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "schicken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17384 + }, + { + "word": "zurückliegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "past;previous", + "romanization": "zurückliegend", + "example_sentence_native": "Die Ereignisse der zurückliegenden Woche waren ereignisreich.", + "example_sentence_english": "The events of the past week were eventful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17385 + }, + { + "word": "zuzüglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in addition to;plus", + "romanization": "zuzüglich", + "example_sentence_native": "Der Preis beträgt 100 Euro zuzüglich Mehrwertsteuer.", + "example_sentence_english": "The price is 100 Euros plus VAT.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17386 + }, + { + "word": "zwecklos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pointless;futile", + "romanization": "zwecklos", + "example_sentence_native": "Es ist zwecklos, darüber zu streiten.", + "example_sentence_english": "It's pointless to argue about it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17387 + }, + { + "word": "überschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roll over", + "romanization": "überschlagen", + "example_sentence_native": "Das Auto hat sich auf der Autobahn überschlagen.", + "example_sentence_english": "The car rolled over on the highway.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "über", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17388 + }, + { + "word": "abbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissuade;to divert", + "romanization": "abbringen", + "example_sentence_native": "Er ließ sich nicht von seinem Plan abbringen.", + "example_sentence_english": "He couldn't be dissuaded from his plan.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17390 + }, + { + "word": "abgelaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expired;run out", + "romanization": "abgelaufen", + "example_sentence_native": "Die Milch ist abgelaufen.", + "example_sentence_english": "The milk has expired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17391 + }, + { + "word": "absperren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cordon off;to block off", + "romanization": "absperren", + "example_sentence_native": "Die Polizei musste die Straße absperren.", + "example_sentence_english": "The police had to cordon off the street.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sperren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17392 + }, + { + "word": "ablassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drain;to release;to let off", + "romanization": "ablassen", + "example_sentence_native": "Wir müssen das Wasser aus dem Tank ablassen.", + "example_sentence_english": "We need to drain the water from the tank.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17393 + }, + { + "word": "Abonnement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscription", + "romanization": "Abonnement", + "example_sentence_native": "Ich habe ein Abonnement für diese Zeitschrift.", + "example_sentence_english": "I have a subscription for this magazine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17394 + }, + { + "word": "Abpfiff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final whistle", + "romanization": "Abpfiff", + "example_sentence_native": "Nach dem Abpfiff feierten die Fans.", + "example_sentence_english": "After the final whistle, the fans celebrated.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17395 + }, + { + "word": "Abschlussprüfung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final exam", + "romanization": "Abschlussprüfung", + "example_sentence_native": "Sie muss noch ihre Abschlussprüfung bestehen.", + "example_sentence_english": "She still has to pass her final exam.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17396 + }, + { + "word": "abspritzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spray off;to hose down", + "romanization": "abspritzen", + "example_sentence_native": "Er musste das Auto abspritzen, um den Schmutz zu entfernen.", + "example_sentence_english": "He had to hose down the car to remove the dirt.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "spritzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17397 + }, + { + "word": "abwehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ward off;to fend off;to repel", + "romanization": "abwehren", + "example_sentence_native": "Der Torwart konnte den Schuss abwehren.", + "example_sentence_english": "The goalkeeper was able to ward off the shot.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "wehren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17398 + }, + { + "word": "addieren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to add", + "romanization": "addieren", + "example_sentence_native": "Wir müssen die Zahlen addieren.", + "example_sentence_english": "We need to add the numbers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17400 + }, + { + "word": "adäquat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adequate", + "romanization": "adäquat", + "example_sentence_native": "Die Antwort war nicht adäquat.", + "example_sentence_english": "The answer was not adequate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17401 + }, + { + "word": "Afro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "afro (hairstyle)", + "romanization": "Afro", + "example_sentence_native": "Sie trug einen großen Afro.", + "example_sentence_english": "She wore a big afro.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17402 + }, + { + "word": "akkurat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accurate;precise", + "romanization": "akkurat", + "example_sentence_native": "Die Messung war sehr akkurat.", + "example_sentence_english": "The measurement was very accurate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17403 + }, + { + "word": "Aktenzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "file number;reference number", + "romanization": "Aktenzeichen", + "example_sentence_native": "Bitte geben Sie das Aktenzeichen an.", + "example_sentence_english": "Please provide the file number.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17404 + }, + { + "word": "Amok", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frenzy;rampage", + "romanization": "Amok", + "example_sentence_native": "Er lief Amok.", + "example_sentence_english": "He ran amok.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17406 + }, + { + "word": "Anus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anus", + "romanization": "Anus", + "example_sentence_native": "Der Anus ist ein Teil des Verdauungssystems.", + "example_sentence_english": "The anus is part of the digestive system.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17408 + }, + { + "word": "Argentinier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Argentinian (male)", + "romanization": "Argentinier", + "example_sentence_native": "Er ist ein Argentinier.", + "example_sentence_english": "He is an Argentinian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17409 + }, + { + "word": "aufzählen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enumerate;to list", + "romanization": "aufzählen", + "example_sentence_native": "Kannst du die Vorteile aufzählen?", + "example_sentence_english": "Can you list the advantages?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "zählen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17411 + }, + { + "word": "ausbeuten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exploit", + "romanization": "ausbeuten", + "example_sentence_native": "Man sollte niemanden ausbeuten.", + "example_sentence_english": "One should not exploit anyone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "beuten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17412 + }, + { + "word": "ausgewogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balanced;well-balanced", + "romanization": "ausgewogen", + "example_sentence_native": "Eine ausgewogene Ernährung ist wichtig.", + "example_sentence_english": "A balanced diet is important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17413 + }, + { + "word": "ausmalen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to color in;to imagine", + "romanization": "ausmalen", + "example_sentence_native": "Die Kinder malen die Bilder aus.", + "example_sentence_english": "The children color in the pictures.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "malen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17414 + }, + { + "word": "banal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banal;trivial", + "romanization": "banal", + "example_sentence_native": "Das war eine sehr banale Bemerkung.", + "example_sentence_english": "That was a very banal remark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17417 + }, + { + "word": "Barrierefreiheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accessibility", + "romanization": "Barrierefreiheit", + "example_sentence_native": "Barrierefreiheit ist ein wichtiges Thema.", + "example_sentence_english": "Accessibility is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17418 + }, + { + "word": "Bauchgefühl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gut feeling;intuition", + "romanization": "Bauchgefühl", + "example_sentence_native": "Ich habe ein gutes Bauchgefühl bei dieser Sache.", + "example_sentence_english": "I have a good gut feeling about this matter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17419 + }, + { + "word": "Bauwesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction industry", + "romanization": "Bauwesen", + "example_sentence_native": "Das Bauwesen ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "The construction industry is an important economic sector.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17420 + }, + { + "word": "Bebauungsplan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development plan", + "romanization": "Bebauungsplan", + "example_sentence_native": "Der Bebauungsplan regelt die Nutzung eines Grundstücks.", + "example_sentence_english": "The development plan regulates the use of a plot of land.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17421 + }, + { + "word": "behandelnd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treating", + "romanization": "behandelnd", + "example_sentence_native": "Der behandelnde Arzt gab ihm Medikamente.", + "example_sentence_english": "The treating physician gave him medication.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17423 + }, + { + "word": "bewirtschaften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manage", + "romanization": "bewirtschaften", + "example_sentence_native": "Die Familie bewirtschaftet einen großen Bauernhof.", + "example_sentence_english": "The family manages a large farm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17424 + }, + { + "word": "Biologe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biologist", + "romanization": "Biologe", + "example_sentence_native": "Der Biologe erforscht das Verhalten von Tieren.", + "example_sentence_english": "The biologist researches the behavior of animals.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17425 + }, + { + "word": "Blackout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackout", + "romanization": "Blackout", + "example_sentence_native": "Nach dem Sturm gab es einen Blackout in der ganzen Stadt.", + "example_sentence_english": "After the storm, there was a blackout in the whole city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17426 + }, + { + "word": "Blende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aperture", + "romanization": "Blende", + "example_sentence_native": "Die Blende der Kamera steuert die Lichtmenge.", + "example_sentence_english": "The camera's aperture controls the amount of light.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17428 + }, + { + "word": "blitzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flash", + "romanization": "blitzen", + "example_sentence_native": "Es blitzt und donnert draußen.", + "example_sentence_english": "It's lightning and thundering outside.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17429 + }, + { + "word": "Bonbon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "candy", + "romanization": "Bonbon", + "example_sentence_native": "Das Kind bekam ein Bonbon als Belohnung.", + "example_sentence_english": "The child received a candy as a reward.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17430 + }, + { + "word": "Bundesheer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Austrian Armed Forces", + "romanization": "Bundesheer", + "example_sentence_native": "Das Bundesheer ist die Armee Österreichs.", + "example_sentence_english": "The Bundesheer is the army of Austria.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17433 + }, + { + "word": "Bundesvorstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federal executive board", + "romanization": "Bundesvorstand", + "example_sentence_native": "Der Bundesvorstand traf sich zur jährlichen Sitzung.", + "example_sentence_english": "The federal executive board met for the annual meeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17434 + }, + { + "word": "Bürgerbeteiligung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "citizen participation", + "romanization": "Bürgerbeteiligung", + "example_sentence_native": "Die Bürgerbeteiligung ist wichtig für eine funktionierende Demokratie.", + "example_sentence_english": "Citizen participation is important for a functioning democracy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17435 + }, + { + "word": "Checkliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "checklist", + "romanization": "Checkliste", + "example_sentence_native": "Er erstellte eine Checkliste für die Reisevorbereitungen.", + "example_sentence_english": "He created a checklist for the travel preparations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17438 + }, + { + "word": "Cholesterin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cholesterol", + "romanization": "Cholesterin", + "example_sentence_native": "Hohes Cholesterin kann ein Gesundheitsrisiko sein.", + "example_sentence_english": "High cholesterol can be a health risk.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17439 + }, + { + "word": "Compliance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Compliance", + "romanization": "Compliance", + "example_sentence_native": "Das Unternehmen legt großen Wert auf Compliance mit den neuen Vorschriften.", + "example_sentence_english": "The company places great importance on compliance with the new regulations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17443 + }, + { + "word": "Deich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dike;Levee", + "romanization": "Deich", + "example_sentence_native": "Der Deich schützt das Land vor Hochwasser.", + "example_sentence_english": "The dike protects the land from floods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17449 + }, + { + "word": "Dock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dock;Pier", + "romanization": "Dock", + "example_sentence_native": "Das Schiff liegt im Dock zur Reparatur.", + "example_sentence_english": "The ship is in the dock for repair.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17452 + }, + { + "word": "dreijährig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "three-year-old;three-year", + "romanization": "dreijährig", + "example_sentence_native": "Mein dreijähriger Neffe spielt gerne im Garten.", + "example_sentence_english": "My three-year-old nephew likes to play in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17454 + }, + { + "word": "dreissigjährig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thirty-year-old;thirty-year", + "romanization": "dreissigjährig", + "example_sentence_native": "Sie ist eine dreissigjährige Frau mit viel Erfahrung.", + "example_sentence_english": "She is a thirty-year-old woman with a lot of experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17455 + }, + { + "word": "Drucksache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Printed matter", + "romanization": "Drucksache", + "example_sentence_native": "Bitte senden Sie diese Drucksache per Post.", + "example_sentence_english": "Please send this printed matter by mail.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17456 + }, + { + "word": "Düne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dune", + "romanization": "Düne", + "example_sentence_native": "Die Kinder spielten auf den Sanddünen am Strand.", + "example_sentence_english": "The children played on the sand dunes at the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17457 + }, + { + "word": "einloggen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to log in", + "romanization": "einloggen", + "example_sentence_native": "Ich muss mich noch schnell einloggen.", + "example_sentence_english": "I just need to log in quickly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "loggen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17458 + }, + { + "word": "Einzelhändler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Retailer", + "romanization": "Einzelhändler", + "example_sentence_native": "Der Einzelhändler bietet eine große Auswahl an Produkten.", + "example_sentence_english": "The retailer offers a wide selection of products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17459 + }, + { + "word": "elementar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elementary;fundamental", + "romanization": "elementar", + "example_sentence_native": "Das ist eine elementare Frage.", + "example_sentence_english": "That is a fundamental question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17460 + }, + { + "word": "eliminieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eliminate", + "romanization": "eliminieren", + "example_sentence_native": "Wir müssen diese Fehler eliminieren.", + "example_sentence_english": "We must eliminate these errors.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17461 + }, + { + "word": "Elsässer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Alsatian", + "romanization": "Elsässer", + "example_sentence_native": "Ich mag Elsässer Flammkuchen.", + "example_sentence_english": "I like Alsatian tarte flambée.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17462 + }, + { + "word": "Endpunkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "endpoint;destination", + "romanization": "Endpunkt", + "example_sentence_native": "Das ist der Endpunkt unserer Reise.", + "example_sentence_english": "That is the endpoint of our journey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17464 + }, + { + "word": "enteignen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to expropriate;to dispossess", + "romanization": "enteignen", + "example_sentence_native": "Der Staat kann Land enteignen.", + "example_sentence_english": "The state can expropriate land.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17466 + }, + { + "word": "erfunden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invented;fictitious", + "romanization": "erfunden", + "example_sentence_native": "Die Geschichte ist völlig erfunden.", + "example_sentence_english": "The story is completely fictitious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17467 + }, + { + "word": "erklingen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sound;to resound", + "romanization": "erklingen", + "example_sentence_native": "Eine schöne Melodie begann zu erklingen.", + "example_sentence_english": "A beautiful melody began to sound.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17468 + }, + { + "word": "Erosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erosion", + "romanization": "Erosion", + "example_sentence_native": "Bodenerosion ist ein großes Problem.", + "example_sentence_english": "Soil erosion is a big problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17469 + }, + { + "word": "Erreichbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accessibility;reachability", + "romanization": "Erreichbarkeit", + "example_sentence_native": "Die Erreichbarkeit des Gebäudes ist sehr gut.", + "example_sentence_english": "The accessibility of the building is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17470 + }, + { + "word": "erstklassig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first-class;excellent", + "romanization": "erstklassig", + "example_sentence_native": "Das Hotel bietet erstklassigen Service.", + "example_sentence_english": "The hotel offers first-class service.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17471 + }, + { + "word": "erwählen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to elect;to choose", + "romanization": "erwählen", + "example_sentence_native": "Sie erwählten ihn zu ihrem Anführer.", + "example_sentence_english": "They elected him as their leader.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17472 + }, + { + "word": "Eröffnungsfeier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening ceremony", + "romanization": "Eröffnungsfeier", + "example_sentence_native": "Die Eröffnungsfeier war sehr beeindruckend.", + "example_sentence_english": "The opening ceremony was very impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17473 + }, + { + "word": "Esoterik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "esotericism", + "romanization": "Esoterik", + "example_sentence_native": "Sie interessiert sich für Esoterik.", + "example_sentence_english": "She is interested in esotericism.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17474 + }, + { + "word": "Exkursion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excursion;field trip", + "romanization": "Exkursion", + "example_sentence_native": "Die Studenten machten eine Exkursion in den Wald.", + "example_sentence_english": "The students went on an excursion into the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17475 + }, + { + "word": "Fachzeitschrift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professional journal;trade magazine", + "romanization": "Fachzeitschrift", + "example_sentence_native": "Er liest regelmäßig Fachzeitschriften.", + "example_sentence_english": "He regularly reads professional journals.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17476 + }, + { + "word": "Familienleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family life", + "romanization": "Familienleben", + "example_sentence_native": "Ein harmonisches Familienleben ist wichtig.", + "example_sentence_english": "A harmonious family life is important.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17477 + }, + { + "word": "Fastnacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Carnival;Shrovetide", + "romanization": "Fastnacht", + "example_sentence_native": "In vielen Regionen feiert man Fastnacht.", + "example_sentence_english": "In many regions, Carnival is celebrated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17478 + }, + { + "word": "Festsetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "determination;fixing;establishment", + "romanization": "Festsetzung", + "example_sentence_native": "Die Festsetzung des Preises erfolgte durch den Vorstand.", + "example_sentence_english": "The determination of the price was made by the board.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17479 + }, + { + "word": "Finanzverwaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial administration;tax office", + "romanization": "Finanzverwaltung", + "example_sentence_native": "Die Finanzverwaltung ist für die Steuereinnahmen zuständig.", + "example_sentence_english": "The financial administration is responsible for tax revenues.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17482 + }, + { + "word": "Fis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "F sharp (musical note)", + "romanization": "Fis", + "example_sentence_native": "Der Akkord beginnt mit einem Fis.", + "example_sentence_english": "The chord starts with an F sharp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17483 + }, + { + "word": "forcieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to force;to push;to accelerate", + "romanization": "forcieren", + "example_sentence_native": "Sie mussten das Tempo forcieren, um das Ziel zu erreichen.", + "example_sentence_english": "They had to accelerate the pace to reach the goal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17486 + }, + { + "word": "fundamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamental;basic", + "romanization": "fundamental", + "example_sentence_native": "Das ist ein fundamentaler Unterschied.", + "example_sentence_english": "That is a fundamental difference.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17488 + }, + { + "word": "Fütterung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeding", + "romanization": "Fütterung", + "example_sentence_native": "Die Fütterung der Tiere findet um 10 Uhr statt.", + "example_sentence_english": "The feeding of the animals takes place at 10 AM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17489 + }, + { + "word": "Gastro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastronomy;catering industry (colloquial short form)", + "romanization": "Gastro", + "example_sentence_native": "Die Gastro-Branche leidet unter den aktuellen Beschränkungen.", + "example_sentence_english": "The catering industry is suffering from the current restrictions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17490 + }, + { + "word": "Geschichtswissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "historical science;historiography", + "romanization": "Geschichtswissenschaft", + "example_sentence_native": "Sie studiert Geschichtswissenschaft an der Universität.", + "example_sentence_english": "She studies historical science at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17493 + }, + { + "word": "Geschlossenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unity;cohesion;closedness", + "romanization": "Geschlossenheit", + "example_sentence_native": "Die Partei zeigte Geschlossenheit in dieser Frage.", + "example_sentence_english": "The party showed unity on this issue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17494 + }, + { + "word": "geschmeidig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supple;smooth;flexible", + "romanization": "geschmeidig", + "example_sentence_native": "Die Katze bewegte sich geschmeidig.", + "example_sentence_english": "The cat moved smoothly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17495 + }, + { + "word": "Gesuch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "application;petition;request", + "romanization": "Gesuch", + "example_sentence_native": "Er reichte ein Gesuch um Studienbeihilfe ein.", + "example_sentence_english": "He submitted an application for student aid.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17496 + }, + { + "word": "Gewerbesteuer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trade tax;business tax", + "romanization": "Gewerbesteuer", + "example_sentence_native": "Die Gewerbesteuer ist eine wichtige Einnahmequelle für Gemeinden.", + "example_sentence_english": "The trade tax is an important source of income for municipalities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17497 + }, + { + "word": "Giro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giro (account;transfer)", + "romanization": "Giro", + "example_sentence_native": "Ich habe ein Giro bei dieser Bank.", + "example_sentence_english": "I have a giro account with this bank.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17498 + }, + { + "word": "Gis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "G sharp (musical note)", + "romanization": "Gis", + "example_sentence_native": "Die Melodie endet auf einem Gis.", + "example_sentence_english": "The melody ends on a G sharp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17499 + }, + { + "word": "gleichgeschlechtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "same-sex", + "romanization": "gleichgeschlechtlich", + "example_sentence_native": "Sie setzen sich für gleichgeschlechtliche Ehe ein.", + "example_sentence_english": "They advocate for same-sex marriage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17500 + }, + { + "word": "grinsend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grinning", + "romanization": "grinsend", + "example_sentence_native": "Er stand grinsend vor der Tür.", + "example_sentence_english": "He stood grinning at the door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17502 + }, + { + "word": "Halskette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "necklace", + "romanization": "Halskette", + "example_sentence_native": "Sie trug eine schöne Halskette.", + "example_sentence_english": "She wore a beautiful necklace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17505 + }, + { + "word": "Handelsregister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial register", + "romanization": "Handelsregister", + "example_sentence_native": "Die Firma ist im Handelsregister eingetragen.", + "example_sentence_english": "The company is registered in the commercial register.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17506 + }, + { + "word": "Hauptziel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main goal", + "romanization": "Hauptziel", + "example_sentence_native": "Unser Hauptziel ist es, die Kundenzufriedenheit zu erhöhen.", + "example_sentence_english": "Our main goal is to increase customer satisfaction.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17509 + }, + { + "word": "Hausmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "househusband", + "romanization": "Hausmann", + "example_sentence_native": "Er ist ein Hausmann und kümmert sich um die Kinder.", + "example_sentence_english": "He is a househusband and takes care of the children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17510 + }, + { + "word": "Heiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healer", + "romanization": "Heiler", + "example_sentence_native": "Der Heiler versuchte, die Krankheit zu lindern.", + "example_sentence_english": "The healer tried to alleviate the illness.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17513 + }, + { + "word": "Hingucker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eye-catcher", + "romanization": "Hingucker", + "example_sentence_native": "Das neue Auto ist ein echter Hingucker.", + "example_sentence_english": "The new car is a real eye-catcher.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17514 + }, + { + "word": "indoor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indoor", + "romanization": "indoor", + "example_sentence_native": "Wir haben uns für eine Indoor-Sportart entschieden.", + "example_sentence_english": "We decided on an indoor sport.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17517 + }, + { + "word": "Informationstechnik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "information technology", + "romanization": "Informationstechnik", + "example_sentence_native": "Er studiert Informationstechnik an der Universität.", + "example_sentence_english": "He studies information technology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17518 + }, + { + "word": "Innenverteidiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "center-back", + "romanization": "Innenverteidiger", + "example_sentence_native": "Der Innenverteidiger klärte den Ball in letzter Sekunde.", + "example_sentence_english": "The center-back cleared the ball at the last second.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17519 + }, + { + "word": "Kartenspiel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "card game", + "romanization": "Kartenspiel", + "example_sentence_native": "Wir spielen heute Abend ein Kartenspiel.", + "example_sentence_english": "We are playing a card game tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17525 + }, + { + "word": "Kartoffelsalat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "potato salad", + "romanization": "Kartoffelsalat", + "example_sentence_native": "Zum Grillen gibt es oft Kartoffelsalat.", + "example_sentence_english": "Potato salad is often served with barbecue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17526 + }, + { + "word": "Karussell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carousel", + "romanization": "Karussell", + "example_sentence_native": "Die Kinder lieben es, auf dem Karussell zu fahren.", + "example_sentence_english": "The children love riding on the carousel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17527 + }, + { + "word": "Klassenkampf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "class struggle", + "romanization": "Klassenkampf", + "example_sentence_native": "Der Klassenkampf ist ein zentrales Thema in der marxistischen Theorie.", + "example_sentence_english": "Class struggle is a central theme in Marxist theory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17528 + }, + { + "word": "Klerus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clergy", + "romanization": "Klerus", + "example_sentence_native": "Der Klerus spielt eine wichtige Rolle in der Kirche.", + "example_sentence_english": "The clergy plays an important role in the church.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17529 + }, + { + "word": "Klinke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "door handle", + "romanization": "Klinke", + "example_sentence_native": "Er drückte die Klinke und öffnete die Tür.", + "example_sentence_english": "He pressed the door handle and opened the door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17530 + }, + { + "word": "Kommunalpolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local politics", + "romanization": "Kommunalpolitik", + "example_sentence_native": "Er engagiert sich in der Kommunalpolitik.", + "example_sentence_english": "He is involved in local politics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17532 + }, + { + "word": "Kopfschütteln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "head shaking", + "romanization": "Kopfschütteln", + "example_sentence_native": "Sein Kopfschütteln zeigte seine Ablehnung.", + "example_sentence_english": "His head shaking showed his disapproval.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17533 + }, + { + "word": "koreanisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Korean", + "romanization": "koreanisch", + "example_sentence_native": "Sie lernt die koreanische Sprache.", + "example_sentence_english": "She is learning the Korean language.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17534 + }, + { + "word": "Kronprinz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crown prince", + "romanization": "Kronprinz", + "example_sentence_native": "Der Kronprinz wird bald den Thron besteigen.", + "example_sentence_english": "The crown prince will soon ascend the throne.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17535 + }, + { + "word": "Kurator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curator", + "romanization": "Kurator", + "example_sentence_native": "Der Kurator hat die neue Ausstellung organisiert.", + "example_sentence_english": "The curator organized the new exhibition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17537 + }, + { + "word": "kurios", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curious", + "romanization": "kurios", + "example_sentence_native": "Das war eine sehr kuriose Geschichte.", + "example_sentence_english": "That was a very peculiar story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17538 + }, + { + "word": "Landesmuseum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state museum", + "romanization": "Landesmuseum", + "example_sentence_native": "Wir besuchten das Landesmuseum in der Hauptstadt.", + "example_sentence_english": "We visited the state museum in the capital.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17539 + }, + { + "word": "Lebensgefährtin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female partner;companion", + "romanization": "Lebensgefährtin", + "example_sentence_native": "Meine Lebensgefährtin und ich planen einen Urlaub.", + "example_sentence_english": "My female partner and I are planning a vacation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17540 + }, + { + "word": "Lebenshilfe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "life counseling;support for life", + "romanization": "Lebenshilfe", + "example_sentence_native": "Sie suchte Lebenshilfe, um mit ihren Problemen umzugehen.", + "example_sentence_english": "She sought life counseling to deal with her problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17541 + }, + { + "word": "lebenslänglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifelong;for life", + "romanization": "lebenslänglich", + "example_sentence_native": "Er wurde zu lebenslänglicher Haft verurteilt.", + "example_sentence_english": "He was sentenced to lifelong imprisonment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17542 + }, + { + "word": "Lebenszeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sign of life", + "romanization": "Lebenszeichen", + "example_sentence_native": "Nach dem Unfall gab es lange kein Lebenszeichen von ihm.", + "example_sentence_english": "After the accident, there was no sign of life from him for a long time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17543 + }, + { + "word": "Lebkuchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gingerbread (cookie;cake)", + "romanization": "Lebkuchen", + "example_sentence_native": "Zu Weihnachten essen wir immer Lebkuchen.", + "example_sentence_english": "We always eat gingerbread for Christmas.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17544 + }, + { + "word": "Lotterie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lottery", + "romanization": "Lotterie", + "example_sentence_native": "Er hat in der Lotterie gewonnen.", + "example_sentence_english": "He won the lottery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17549 + }, + { + "word": "Lunch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lunch", + "romanization": "Lunch", + "example_sentence_native": "Wir treffen uns zum Lunch um zwölf Uhr.", + "example_sentence_english": "We're meeting for lunch at twelve o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17552 + }, + { + "word": "Lüneburger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Lüneburg;Lüneburgian", + "romanization": "Lüneburger", + "example_sentence_native": "Die Lüneburger Heide ist ein beliebtes Reiseziel.", + "example_sentence_english": "The Lüneburg Heath is a popular travel destination.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17554 + }, + { + "word": "Mappe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "folder;briefcase", + "romanization": "Mappe", + "example_sentence_native": "Bitte legen Sie die Dokumente in die Mappe.", + "example_sentence_english": "Please put the documents in the folder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17558 + }, + { + "word": "Markgraf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "margrave (historical title)", + "romanization": "Markgraf", + "example_sentence_native": "Der Markgraf regierte das Grenzgebiet.", + "example_sentence_english": "The margrave ruled the border region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17559 + }, + { + "word": "Massentierhaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "factory farming", + "romanization": "Massentierhaltung", + "example_sentence_native": "Die Massentierhaltung steht oft in der Kritik.", + "example_sentence_english": "Factory farming is often criticized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17560 + }, + { + "word": "Medizintechnik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medical technology", + "romanization": "Medizintechnik", + "example_sentence_native": "Er studiert Medizintechnik an der Universität.", + "example_sentence_english": "He studies medical technology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17564 + }, + { + "word": "Mikroskop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microscope", + "romanization": "Mikroskop", + "example_sentence_native": "Mit dem Mikroskop kann man sehr kleine Dinge sehen.", + "example_sentence_english": "With the microscope, one can see very small things.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17569 + }, + { + "word": "minor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor", + "romanization": "minor", + "example_sentence_native": "Das ist nur ein minorer Unterschied.", + "example_sentence_english": "That is only a minor difference.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17570 + }, + { + "word": "Modellierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modeling", + "romanization": "Modellierung", + "example_sentence_native": "Die Modellierung des Klimawandels ist komplex.", + "example_sentence_english": "The modeling of climate change is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17572 + }, + { + "word": "Modifikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modification", + "romanization": "Modifikation", + "example_sentence_native": "Eine kleine Modifikation war notwendig.", + "example_sentence_english": "A small modification was necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17573 + }, + { + "word": "Monolog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monologue", + "romanization": "Monolog", + "example_sentence_native": "Der Schauspieler hielt einen langen Monolog.", + "example_sentence_english": "The actor delivered a long monologue.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17575 + }, + { + "word": "Muttertag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Mother's Day", + "romanization": "Muttertag", + "example_sentence_native": "Am Muttertag schenken wir unserer Mutter Blumen.", + "example_sentence_english": "On Mother's Day, we give our mother flowers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17577 + }, + { + "word": "Nachtigall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightingale", + "romanization": "Nachtigall", + "example_sentence_native": "Die Nachtigall singt wunderschön in der Nacht.", + "example_sentence_english": "The nightingale sings beautifully at night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17578 + }, + { + "word": "Neubaugebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "new development area", + "romanization": "Neubaugebiet", + "example_sentence_native": "Im Neubaugebiet entstehen viele neue Häuser.", + "example_sentence_english": "Many new houses are being built in the new development area.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17580 + }, + { + "word": "Neukunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "new customer", + "romanization": "Neukunde", + "example_sentence_native": "Der Neukunde war sehr zufrieden mit unserem Service.", + "example_sentence_english": "The new customer was very satisfied with our service.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17582 + }, + { + "word": "neustädter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of Neustadt;Neustadt-related", + "romanization": "neustädter", + "example_sentence_native": "Die neustädter Brauerei ist bekannt für ihr Bier.", + "example_sentence_english": "The Neustadt brewery is known for its beer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17583 + }, + { + "word": "Nichtwähler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-voter;abstainer", + "romanization": "Nichtwähler", + "example_sentence_native": "Die Zahl der Nichtwähler steigt bei jeder Wahl.", + "example_sentence_english": "The number of non-voters increases with every election.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17584 + }, + { + "word": "Nikotin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nicotine", + "romanization": "Nikotin", + "example_sentence_native": "Nikotin ist schädlich für die Gesundheit.", + "example_sentence_english": "Nicotine is harmful to health.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17585 + }, + { + "word": "nordwestlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "north-westerly;north-western", + "romanization": "nordwestlich", + "example_sentence_native": "Das Haus liegt nordwestlich des Sees.", + "example_sentence_english": "The house is located north-west of the lake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17589 + }, + { + "word": "Notstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state of emergency;emergency", + "romanization": "Notstand", + "example_sentence_native": "Die Regierung rief den Notstand aus.", + "example_sentence_english": "The government declared a state of emergency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17590 + }, + { + "word": "Nussbaum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walnut tree", + "romanization": "Nussbaum", + "example_sentence_native": "Im Garten steht ein alter Nussbaum.", + "example_sentence_english": "There is an old walnut tree in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17591 + }, + { + "word": "Ochse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ox", + "romanization": "Ochse", + "example_sentence_native": "Der Ochse zog den Pflug über das Feld.", + "example_sentence_english": "The ox pulled the plow across the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17592 + }, + { + "word": "Ohm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ohm (unit of electrical resistance)", + "romanization": "Ohm", + "example_sentence_native": "Der Widerstand wird in Ohm gemessen.", + "example_sentence_english": "Resistance is measured in ohms.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17593 + }, + { + "word": "oldenburger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of Oldenburg;Oldenburg-related", + "romanization": "oldenburger", + "example_sentence_native": "Die oldenburger Spezialität ist Grünkohl mit Pinkel.", + "example_sentence_english": "The Oldenburg specialty is kale with Pinkel sausage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17596 + }, + { + "word": "pausieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pause;to take a break", + "romanization": "pausieren", + "example_sentence_native": "Wir sollten kurz pausieren und etwas trinken.", + "example_sentence_english": "We should pause briefly and drink something.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17599 + }, + { + "word": "phantastisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantastic", + "romanization": "phantastisch", + "example_sentence_native": "Das war ein phantastischer Film.", + "example_sentence_english": "That was a fantastic movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17602 + }, + { + "word": "platziert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "placed", + "romanization": "platziert", + "example_sentence_native": "Die Bücher sind ordentlich im Regal platziert.", + "example_sentence_english": "The books are neatly placed on the shelf.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17604 + }, + { + "word": "Publizist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publicist", + "romanization": "Publizist", + "example_sentence_native": "Der Publizist schrieb einen kritischen Artikel.", + "example_sentence_english": "The publicist wrote a critical article.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17608 + }, + { + "word": "radioaktiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radioactive", + "romanization": "radioaktiv", + "example_sentence_native": "Das Material ist radioaktiv.", + "example_sentence_english": "The material is radioactive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17609 + }, + { + "word": "Rechtmässigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legality", + "romanization": "Rechtmässigkeit", + "example_sentence_native": "Die Rechtmässigkeit der Entscheidung wurde angezweifelt.", + "example_sentence_english": "The legality of the decision was questioned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17610 + }, + { + "word": "Rechtsmittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal remedy", + "romanization": "Rechtsmittel", + "example_sentence_native": "Gegen das Urteil ist ein Rechtsmittel möglich.", + "example_sentence_english": "An appeal against the judgment is possible.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17611 + }, + { + "word": "Rechtssicherheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal certainty", + "romanization": "Rechtssicherheit", + "example_sentence_native": "Die Regierung strebt nach mehr Rechtssicherheit.", + "example_sentence_english": "The government strives for more legal certainty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17612 + }, + { + "word": "Reederei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipping company", + "romanization": "Reederei", + "example_sentence_native": "Die Reederei besitzt viele Frachtschiffe.", + "example_sentence_english": "The shipping company owns many cargo ships.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17613 + }, + { + "word": "Rettungskraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rescue worker", + "romanization": "Rettungskraft", + "example_sentence_native": "Eine Rettungskraft half dem Verletzten.", + "example_sentence_english": "A rescue worker helped the injured person.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17614 + }, + { + "word": "Rückendeckung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backing", + "romanization": "Rückendeckung", + "example_sentence_native": "Er brauchte Rückendeckung von seinem Team.", + "example_sentence_english": "He needed backing from his team.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17617 + }, + { + "word": "Sammelband", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthology", + "romanization": "Sammelband", + "example_sentence_native": "Der Sammelband enthält Aufsätze verschiedener Autoren.", + "example_sentence_english": "The anthology contains essays by various authors.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17619 + }, + { + "word": "Schauspielhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playhouse;theater", + "romanization": "Schauspielhaus", + "example_sentence_native": "Das Schauspielhaus ist ein wichtiges Kulturzentrum in der Stadt.", + "example_sentence_english": "The playhouse is an important cultural center in the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17621 + }, + { + "word": "schlafend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sleeping", + "romanization": "schlafend", + "example_sentence_native": "Das Baby liegt schlafend in seinem Bett.", + "example_sentence_english": "The baby lies sleeping in its bed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17622 + }, + { + "word": "Schuhmacher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoemaker", + "romanization": "Schuhmacher", + "example_sentence_native": "Der Schuhmacher repariert alte Schuhe.", + "example_sentence_english": "The shoemaker repairs old shoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17625 + }, + { + "word": "Sendezeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "airtime;broadcast time", + "romanization": "Sendezeit", + "example_sentence_native": "Die Sendezeit für die Nachrichten ist um 20 Uhr.", + "example_sentence_english": "The airtime for the news is at 8 PM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17627 + }, + { + "word": "Sergeant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sergeant", + "romanization": "Sergeant", + "example_sentence_native": "Der Sergeant gab klare Anweisungen.", + "example_sentence_english": "The sergeant gave clear instructions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17628 + }, + { + "word": "Sirene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "siren", + "romanization": "Sirene", + "example_sentence_native": "Wir hörten die Sirene des Krankenwagens.", + "example_sentence_english": "We heard the ambulance's siren.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17632 + }, + { + "word": "Sommermonat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "summer month", + "romanization": "Sommermonat", + "example_sentence_native": "Juli ist ein Sommermonat.", + "example_sentence_english": "July is a summer month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17634 + }, + { + "word": "spendieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat (someone to something);to donate", + "romanization": "spendieren", + "example_sentence_native": "Ich spendiere dir einen Kaffee.", + "example_sentence_english": "I'll treat you to a coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17636 + }, + { + "word": "Spielsache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toy", + "romanization": "Spielsache", + "example_sentence_native": "Das Kind spielt mit seiner neuen Spielsache.", + "example_sentence_english": "The child is playing with its new toy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17637 + }, + { + "word": "Sportdirektor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sports director", + "romanization": "Sportdirektor", + "example_sentence_native": "Der Sportdirektor ist für die Mannschaftsplanung verantwortlich.", + "example_sentence_english": "The sports director is responsible for team planning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17638 + }, + { + "word": "Sprachraum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "language area;linguistic area", + "romanization": "Sprachraum", + "example_sentence_native": "Der deutsche Sprachraum umfasst mehrere Länder.", + "example_sentence_english": "The German language area includes several countries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17639 + }, + { + "word": "Spurensuche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "search for clues;investigation", + "romanization": "Spurensuche", + "example_sentence_native": "Die Polizei begann eine intensive Spurensuche am Tatort.", + "example_sentence_english": "The police began an intensive search for clues at the crime scene.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17640 + }, + { + "word": "Staatskanzlei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "State Chancellery", + "romanization": "Staatskanzlei", + "example_sentence_native": "Die Staatskanzlei ist für die Koordination der Regierungsarbeit zuständig.", + "example_sentence_english": "The State Chancellery is responsible for coordinating government work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17641 + }, + { + "word": "Stadtbahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light rail;city train", + "romanization": "Stadtbahn", + "example_sentence_native": "Wir nehmen die Stadtbahn, um ins Zentrum zu gelangen.", + "example_sentence_english": "We take the light rail to get to the city center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17642 + }, + { + "word": "stapeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stack;to pile", + "romanization": "stapeln", + "example_sentence_native": "Er begann, die Bücher auf dem Tisch zu stapeln.", + "example_sentence_english": "He began to stack the books on the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17643 + }, + { + "word": "Stichprobe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "random sample;spot check", + "romanization": "Stichprobe", + "example_sentence_native": "Für die Qualitätskontrolle wurde eine Stichprobe entnommen.", + "example_sentence_english": "A random sample was taken for quality control.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17644 + }, + { + "word": "stilllegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shut down;to decommission", + "romanization": "stilllegen", + "example_sentence_native": "Die Fabrik wird nächste Woche stillgelegt.", + "example_sentence_english": "The factory will be shut down next week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "still", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17645 + }, + { + "word": "Strafmass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penalty;sentence (measure of punishment)", + "romanization": "Strafmass", + "example_sentence_native": "Das Gericht legte ein angemessenes Strafmass fest.", + "example_sentence_english": "The court determined an appropriate penalty.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17646 + }, + { + "word": "Streichung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deletion;cancellation;cut", + "romanization": "Streichung", + "example_sentence_native": "Die Streichung des Punktes führte zu einer Diskussion.", + "example_sentence_english": "The deletion of the point led to a discussion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17647 + }, + { + "word": "Tagesablauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daily routine;daily schedule", + "romanization": "Tagesablauf", + "example_sentence_native": "Mein Tagesablauf ist sehr strukturiert.", + "example_sentence_english": "My daily routine is very structured.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17649 + }, + { + "word": "Teilnehmerzahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "number of participants", + "romanization": "Teilnehmerzahl", + "example_sentence_native": "Die Teilnehmerzahl für den Kurs ist begrenzt.", + "example_sentence_english": "The number of participants for the course is limited.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17652 + }, + { + "word": "Tiefgang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "draft (of a ship);depth (figurative)", + "romanization": "Tiefgang", + "example_sentence_native": "Das Schiff hat einen Tiefgang von fünf Metern. Seine Rede hatte viel Tiefgang.", + "example_sentence_english": "The ship has a draft of five meters. His speech had a lot of depth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17656 + }, + { + "word": "Titelbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover image;title picture", + "romanization": "Titelbild", + "example_sentence_native": "Das Titelbild des Buches ist sehr ansprechend.", + "example_sentence_english": "The cover image of the book is very appealing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17657 + }, + { + "word": "Triebwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engine;propulsion system", + "romanization": "Triebwerk", + "example_sentence_native": "Das Flugzeug hat zwei Triebwerke.", + "example_sentence_english": "The airplane has two engines.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17661 + }, + { + "word": "unwesentlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insignificant;immaterial", + "romanization": "unwesentlich", + "example_sentence_native": "Das ist ein unwesentlicher Unterschied.", + "example_sentence_english": "That is an insignificant difference.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17664 + }, + { + "word": "unübersichtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confusing;unclear;cluttered", + "romanization": "unübersichtlich", + "example_sentence_native": "Die Situation ist sehr unübersichtlich.", + "example_sentence_english": "The situation is very confusing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17665 + }, + { + "word": "Verführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seduction;temptation", + "romanization": "Verführung", + "example_sentence_native": "Die Verführung war zu groß.", + "example_sentence_english": "The temptation was too great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17667 + }, + { + "word": "verschwunden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappeared;vanished", + "romanization": "verschwunden", + "example_sentence_native": "Das Buch ist verschwunden.", + "example_sentence_english": "The book has disappeared.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17668 + }, + { + "word": "verunglücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have an accident;to perish (in an accident)", + "romanization": "verunglücken", + "example_sentence_native": "Er ist bei dem Unfall verunglückt.", + "example_sentence_english": "He perished in the accident.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17669 + }, + { + "word": "verunglückt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injured (in an accident);perished", + "romanization": "verunglückt", + "example_sentence_native": "Der verunglückte Fahrer wurde ins Krankenhaus gebracht.", + "example_sentence_english": "The injured driver was taken to the hospital.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17670 + }, + { + "word": "Verwunderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonishment;surprise", + "romanization": "Verwunderung", + "example_sentence_native": "Sie sah ihn mit großer Verwunderung an.", + "example_sentence_english": "She looked at him with great astonishment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17671 + }, + { + "word": "verzaubern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enchant;to charm", + "romanization": "verzaubern", + "example_sentence_native": "Der Magier konnte das Publikum verzaubern.", + "example_sentence_english": "The magician could enchant the audience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17672 + }, + { + "word": "Vibrator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vibrator", + "romanization": "Vibrator", + "example_sentence_native": "Der Vibrator erzeugt eine Schwingung.", + "example_sentence_english": "The vibrator produces a vibration.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17673 + }, + { + "word": "vordringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advance;to penetrate", + "romanization": "vordringen", + "example_sentence_native": "Die Truppen konnten bis zur Stadt vordringen.", + "example_sentence_english": "The troops could advance to the city.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "dringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17674 + }, + { + "word": "vorfinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to find (present);to encounter", + "romanization": "vorfinden", + "example_sentence_native": "Wir fanden die Tür offen vor.", + "example_sentence_english": "We found the door open.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17675 + }, + { + "word": "Wallfahrt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pilgrimage", + "romanization": "Wallfahrt", + "example_sentence_native": "Viele Gläubige unternehmen eine Wallfahrt.", + "example_sentence_english": "Many believers undertake a pilgrimage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17678 + }, + { + "word": "Wasserwerfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water cannon", + "romanization": "Wasserwerfer", + "example_sentence_native": "Die Polizei setzte Wasserwerfer gegen die Demonstranten ein.", + "example_sentence_english": "The police used water cannons against the demonstrators.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17679 + }, + { + "word": "weglaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run away", + "romanization": "weglaufen", + "example_sentence_native": "Der Hund wollte weglaufen.", + "example_sentence_english": "The dog wanted to run away.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17680 + }, + { + "word": "Weiterführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuation", + "romanization": "Weiterführung", + "example_sentence_native": "Die Weiterführung des Projekts ist ungewiss.", + "example_sentence_english": "The continuation of the project is uncertain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17681 + }, + { + "word": "Weltpremiere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "world premiere", + "romanization": "Weltpremiere", + "example_sentence_native": "Der Film hatte seine Weltpremiere in Berlin.", + "example_sentence_english": "The film had its world premiere in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17682 + }, + { + "word": "Wettbewerber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competitor", + "romanization": "Wettbewerber", + "example_sentence_native": "Unsere Firma hat viele Wettbewerber.", + "example_sentence_english": "Our company has many competitors.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17683 + }, + { + "word": "Whistleblower", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whistleblower", + "romanization": "Whistleblower", + "example_sentence_native": "Der Whistleblower enthüllte wichtige Informationen.", + "example_sentence_english": "The whistleblower revealed important information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17684 + }, + { + "word": "Windpark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wind farm", + "romanization": "Windpark", + "example_sentence_native": "Der neue Windpark liefert saubere Energie.", + "example_sentence_english": "The new wind farm provides clean energy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17687 + }, + { + "word": "Wunderland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonderland", + "romanization": "Wunderland", + "example_sentence_native": "Alice fiel ins Wunderland.", + "example_sentence_english": "Alice fell into Wonderland.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17688 + }, + { + "word": "Zapfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cone", + "romanization": "Zapfen", + "example_sentence_native": "Das Eichhörnchen sammelte Zapfen.", + "example_sentence_english": "The squirrel collected cones.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17691 + }, + { + "word": "zeitig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "early", + "romanization": "zeitig", + "example_sentence_native": "Wir müssen zeitig aufbrechen.", + "example_sentence_english": "We have to leave early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17693 + }, + { + "word": "zelebrieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to celebrate", + "romanization": "zelebrieren", + "example_sentence_native": "Sie zelebrierten ihren Sieg.", + "example_sentence_english": "They celebrated their victory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17694 + }, + { + "word": "Zenit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "zenith", + "romanization": "Zenit", + "example_sentence_native": "Er erreichte den Zenit seiner Karriere.", + "example_sentence_english": "He reached the zenith of his career.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17695 + }, + { + "word": "zutragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to happen", + "romanization": "zutragen", + "example_sentence_native": "Wie konnte sich das zutragen?", + "example_sentence_english": "How could that happen?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17697 + }, + { + "word": "überliefert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handed down", + "romanization": "überliefert", + "example_sentence_native": "Die Geschichte ist überliefert.", + "example_sentence_english": "The story is handed down.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17698 + }, + { + "word": "Übertreibung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaggeration", + "romanization": "Übertreibung", + "example_sentence_native": "Das ist eine reine Übertreibung.", + "example_sentence_english": "That is a pure exaggeration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17699 + }, + { + "word": "abgeneigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinclined;averse", + "romanization": "abgeneigt", + "example_sentence_native": "Er ist der Idee abgeneigt.", + "example_sentence_english": "He is disinclined to the idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17700 + }, + { + "word": "Abstrich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smear;deduction;compromise", + "romanization": "Abstrich", + "example_sentence_native": "Der Arzt machte einen Abstrich.", + "example_sentence_english": "The doctor took a smear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17701 + }, + { + "word": "Abzweigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turn-off;branch;junction", + "romanization": "Abzweigung", + "example_sentence_native": "Nehmen Sie die nächste Abzweigung links.", + "example_sentence_english": "Take the next turn-off on the left.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17702 + }, + { + "word": "abzüglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "less;deducting", + "romanization": "abzüglich", + "example_sentence_native": "Der Preis ist abzüglich 10% Rabatt.", + "example_sentence_english": "The price is less a 10% discount.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17703 + }, + { + "word": "Achtsamkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mindfulness;attentiveness", + "romanization": "Achtsamkeit", + "example_sentence_native": "Achtsamkeit kann Stress reduzieren.", + "example_sentence_english": "Mindfulness can reduce stress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17704 + }, + { + "word": "Addition", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "addition", + "romanization": "Addition", + "example_sentence_native": "Die Addition von zwei und drei ist fünf.", + "example_sentence_english": "The addition of two and three is five.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17706 + }, + { + "word": "Aktienmarkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stock market", + "romanization": "Aktienmarkt", + "example_sentence_native": "Der Aktienmarkt ist heute gefallen.", + "example_sentence_english": "The stock market fell today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17707 + }, + { + "word": "Aktivistin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "activist (female)", + "romanization": "Aktivistin", + "example_sentence_native": "Sie ist eine bekannte Aktivistin.", + "example_sentence_english": "She is a well-known activist.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17708 + }, + { + "word": "Alarmanlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alarm system", + "romanization": "Alarmanlage", + "example_sentence_native": "Die Alarmanlage ging mitten in der Nacht los.", + "example_sentence_english": "The alarm system went off in the middle of the night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17709 + }, + { + "word": "allgegenwärtig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipresent;ubiquitous", + "romanization": "allgegenwärtig", + "example_sentence_native": "Smartphones sind heutzutage allgegenwärtig.", + "example_sentence_english": "Smartphones are ubiquitous nowadays.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17710 + }, + { + "word": "Ammoniak", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ammonia", + "romanization": "Ammoniak", + "example_sentence_native": "Ammoniak hat einen stechenden Geruch.", + "example_sentence_english": "Ammonia has a pungent smell.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17712 + }, + { + "word": "Amour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "love;affair", + "romanization": "Amour", + "example_sentence_native": "Er hatte eine geheime Amour.", + "example_sentence_english": "He had a secret love affair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17713 + }, + { + "word": "andernorts", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elsewhere;in other places", + "romanization": "andernorts", + "example_sentence_native": "Er suchte andernorts nach Arbeit.", + "example_sentence_english": "He looked for work elsewhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 17714 + }, + { + "word": "angebracht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate;attached;fitted", + "romanization": "angebracht", + "example_sentence_native": "Seine Bemerkung war nicht angebracht.", + "example_sentence_english": "His remark was not appropriate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17715 + }, + { + "word": "angedacht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "considered;planned (in mind)", + "romanization": "angedacht", + "example_sentence_native": "Das Projekt ist noch angedacht.", + "example_sentence_english": "The project is still being considered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17716 + }, + { + "word": "Antidepressivum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antidepressant", + "romanization": "Antidepressivum", + "example_sentence_native": "Sie nimmt ein Antidepressivum.", + "example_sentence_english": "She takes an antidepressant.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17717 + }, + { + "word": "antifaschistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-fascist", + "romanization": "antifaschistisch", + "example_sentence_native": "Er vertritt antifaschistische Ansichten.", + "example_sentence_english": "He holds anti-fascist views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17718 + }, + { + "word": "Application", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "application (software)", + "romanization": "Application", + "example_sentence_native": "Diese Application ist sehr nützlich.", + "example_sentence_english": "This application is very useful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17719 + }, + { + "word": "Aschermittwoch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ash Wednesday", + "romanization": "Aschermittwoch", + "example_sentence_native": "Aschermittwoch markiert den Beginn der Fastenzeit.", + "example_sentence_english": "Ash Wednesday marks the beginning of Lent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17722 + }, + { + "word": "Asylpolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum policy", + "romanization": "Asylpolitik", + "example_sentence_native": "Die Asylpolitik ist ein viel diskutiertes Thema.", + "example_sentence_english": "Asylum policy is a much-discussed topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17723 + }, + { + "word": "auferstehen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rise (from the dead);to resurrect", + "romanization": "auferstehen", + "example_sentence_native": "Es wird gesagt, dass er am dritten Tag auferstanden ist.", + "example_sentence_english": "It is said that he rose on the third day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17724 + }, + { + "word": "ausgebildet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trained;educated", + "romanization": "ausgebildet", + "example_sentence_native": "Sie ist eine gut ausgebildete Fachkraft.", + "example_sentence_english": "She is a well-trained professional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17725 + }, + { + "word": "Ausnutzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploitation;utilization", + "romanization": "Ausnutzung", + "example_sentence_native": "Die Ausnutzung natürlicher Ressourcen ist ein Problem.", + "example_sentence_english": "The exploitation of natural resources is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17726 + }, + { + "word": "Ausverkauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sale;clearance sale", + "romanization": "Ausverkauf", + "example_sentence_native": "Der Laden hat einen großen Ausverkauf.", + "example_sentence_english": "The store has a big clearance sale.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17727 + }, + { + "word": "Auswanderer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emigrant", + "romanization": "Auswanderer", + "example_sentence_native": "Viele Auswanderer suchen ein besseres Leben im Ausland.", + "example_sentence_english": "Many emigrants seek a better life abroad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17728 + }, + { + "word": "Avocado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avocado", + "romanization": "Avocado", + "example_sentence_native": "Ich esse gerne Avocado zum Frühstück.", + "example_sentence_english": "I like to eat avocado for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17729 + }, + { + "word": "Bademantel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathrobe", + "romanization": "Bademantel", + "example_sentence_native": "Nach dem Duschen zog er seinen Bademantel an.", + "example_sentence_english": "After showering, he put on his bathrobe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17730 + }, + { + "word": "Bahnverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rail traffic", + "romanization": "Bahnverkehr", + "example_sentence_native": "Der Bahnverkehr ist heute wegen des Sturms eingeschränkt.", + "example_sentence_english": "Rail traffic is restricted today due to the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17731 + }, + { + "word": "Barrikade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barricade", + "romanization": "Barrikade", + "example_sentence_native": "Die Demonstranten errichteten Barrikaden auf der Straße.", + "example_sentence_english": "The demonstrators erected barricades on the street.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17734 + }, + { + "word": "befestigt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortified;attached;fixed", + "romanization": "befestigt", + "example_sentence_native": "Die alte Burg war gut befestigt.", + "example_sentence_english": "The old castle was well fortified.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17735 + }, + { + "word": "Bewaffnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armament;weaponry", + "romanization": "Bewaffnung", + "example_sentence_native": "Die Bewaffnung der Armee wurde modernisiert.", + "example_sentence_english": "The army's armament was modernized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17736 + }, + { + "word": "Bischofskonferenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bishops' conference", + "romanization": "Bischofskonferenz", + "example_sentence_native": "Die Bischofskonferenz traf sich, um wichtige Themen zu besprechen.", + "example_sentence_english": "The bishops' conference met to discuss important issues.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17738 + }, + { + "word": "blamieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embarrass (oneself);to make a fool of", + "romanization": "blamieren", + "example_sentence_native": "Er wollte sich nicht vor seinen Freunden blamieren.", + "example_sentence_english": "He didn't want to embarrass himself in front of his friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17739 + }, + { + "word": "Blümchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little flower;floweret", + "romanization": "Blümchen", + "example_sentence_native": "Das Blümchen auf dem Tisch ist sehr schön.", + "example_sentence_english": "The little flower on the table is very beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17742 + }, + { + "word": "Bor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boron", + "romanization": "Bor", + "example_sentence_native": "Bor ist ein chemisches Element.", + "example_sentence_english": "Boron is a chemical element.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17744 + }, + { + "word": "Bottom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottom (e.g.;of a page;market)", + "romanization": "Bottom", + "example_sentence_native": "Wir haben den Bottom des Marktes erreicht.", + "example_sentence_english": "We have reached the bottom of the market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17745 + }, + { + "word": "brauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to brew", + "romanization": "brauen", + "example_sentence_native": "Er braut sein eigenes Bier.", + "example_sentence_english": "He brews his own beer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17746 + }, + { + "word": "Bulgare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bulgarian (male person)", + "romanization": "Bulgare", + "example_sentence_native": "Er ist ein Bulgare.", + "example_sentence_english": "He is a Bulgarian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17748 + }, + { + "word": "Börsengang", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "IPO;stock market launch", + "romanization": "Börsengang", + "example_sentence_native": "Der Börsengang des Unternehmens war erfolgreich.", + "example_sentence_english": "The company's IPO was successful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17749 + }, + { + "word": "Büste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bust (sculpture or upper body)", + "romanization": "Büste", + "example_sentence_native": "Die Büste des Kaisers steht im Museum.", + "example_sentence_english": "The emperor's bust is in the museum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17750 + }, + { + "word": "Choreographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "choreography", + "romanization": "Choreographie", + "example_sentence_native": "Die Choreographie des Tanzes war beeindruckend.", + "example_sentence_english": "The choreography of the dance was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17755 + }, + { + "word": "complete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complete", + "romanization": "complete", + "example_sentence_native": "Das Projekt ist jetzt complete.", + "example_sentence_english": "The project is now complete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17758 + }, + { + "word": "Count", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "count (noble title)", + "romanization": "Count", + "example_sentence_native": "Der Count lebte in einem großen Schloss.", + "example_sentence_english": "The Count lived in a large castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17759 + }, + { + "word": "critical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "critical", + "romanization": "critical", + "example_sentence_native": "Seine kritische Analyse war sehr aufschlussreich.", + "example_sentence_english": "His critical analysis was very insightful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17760 + }, + { + "word": "Dachverband", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "umbrella organization;federation", + "romanization": "Dachverband", + "example_sentence_native": "Der Dachverband vertritt die Interessen aller Mitglieder.", + "example_sentence_english": "The umbrella organization represents the interests of all members.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17761 + }, + { + "word": "dehnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stretch", + "romanization": "dehnen", + "example_sentence_native": "Man sollte sich vor dem Sport dehnen.", + "example_sentence_english": "One should stretch before sports.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17765 + }, + { + "word": "Dogma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dogma", + "romanization": "Dogma", + "example_sentence_native": "Er hinterfragte das Dogma der Partei.", + "example_sentence_english": "He questioned the dogma of the party.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17771 + }, + { + "word": "Dramaturgie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dramaturgy", + "romanization": "Dramaturgie", + "example_sentence_native": "Die Dramaturgie des Stücks war sehr komplex.", + "example_sentence_english": "The dramaturgy of the play was very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17773 + }, + { + "word": "Drehzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotational speed;RPM", + "romanization": "Drehzahl", + "example_sentence_native": "Die Drehzahl des Motors war zu hoch.", + "example_sentence_english": "The engine's rotational speed was too high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17774 + }, + { + "word": "dunkelbraun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark brown", + "romanization": "dunkelbraun", + "example_sentence_native": "Sie hat dunkelbraune Haare.", + "example_sentence_english": "She has dark brown hair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17776 + }, + { + "word": "einbürgern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to naturalize (a citizen)", + "romanization": "einbürgern", + "example_sentence_native": "Er möchte sich in Deutschland einbürgern lassen.", + "example_sentence_english": "He wants to be naturalized in Germany.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "bürgern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17777 + }, + { + "word": "einlagern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to store;to warehouse", + "romanization": "einlagern", + "example_sentence_native": "Wir müssen die Waren im Lager einlagern.", + "example_sentence_english": "We need to store the goods in the warehouse.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "lagern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17778 + }, + { + "word": "einweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instruct;to admit (to hospital)", + "romanization": "einweisen", + "example_sentence_native": "Der Arzt musste den Patienten ins Krankenhaus einweisen.", + "example_sentence_english": "The doctor had to admit the patient to the hospital.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17779 + }, + { + "word": "Einhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halt;stop", + "romanization": "Einhalt", + "example_sentence_native": "Dem Treiben muss Einhalt geboten werden.", + "example_sentence_english": "The activity must be stopped.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17780 + }, + { + "word": "einhergehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go hand in hand;to be accompanied by", + "romanization": "einhergehen", + "example_sentence_native": "Erfolg geht oft mit harter Arbeit einher.", + "example_sentence_english": "Success often goes hand in hand with hard work.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "einher", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17781 + }, + { + "word": "Einweisung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instruction;briefing;admission", + "romanization": "Einweisung", + "example_sentence_native": "Vor der Operation gab es eine ausführliche Einweisung.", + "example_sentence_english": "Before the operation, there was a detailed briefing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17783 + }, + { + "word": "Einwurf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "throw-in;slot", + "romanization": "Einwurf", + "example_sentence_native": "Der Spieler machte einen weiten Einwurf.", + "example_sentence_english": "The player made a long throw-in.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17784 + }, + { + "word": "Emigration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emigration", + "romanization": "Emigration", + "example_sentence_native": "Die Emigration vieler junger Menschen ist ein Problem.", + "example_sentence_english": "The emigration of many young people is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17785 + }, + { + "word": "Entfremdung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alienation;estrangement", + "romanization": "Entfremdung", + "example_sentence_native": "Es kam zu einer Entfremdung zwischen den Geschwistern.", + "example_sentence_english": "There was an estrangement between the siblings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17786 + }, + { + "word": "entsenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispatch;to send out", + "romanization": "entsenden", + "example_sentence_native": "Die Regierung wird einen Botschafter entsenden.", + "example_sentence_english": "The government will dispatch an ambassador.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17787 + }, + { + "word": "Entscheidungsfindung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decision-making", + "romanization": "Entscheidungsfindung", + "example_sentence_native": "Der Prozess der Entscheidungsfindung war langwierig.", + "example_sentence_english": "The decision-making process was lengthy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17788 + }, + { + "word": "entsetzlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrible;dreadful", + "romanization": "entsetzlich", + "example_sentence_native": "Das Wetter war entsetzlich.", + "example_sentence_english": "The weather was terrible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17789 + }, + { + "word": "entspannend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxing", + "romanization": "entspannend", + "example_sentence_native": "Ein warmes Bad ist sehr entspannend.", + "example_sentence_english": "A warm bath is very relaxing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17790 + }, + { + "word": "erwirken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to obtain;to achieve", + "romanization": "erwirken", + "example_sentence_native": "Er konnte einen Gerichtsbeschluss erwirken.", + "example_sentence_english": "He was able to obtain a court order.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17793 + }, + { + "word": "Exempel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "example;instance", + "romanization": "Exempel", + "example_sentence_native": "Er wollte ein Exempel statuieren.", + "example_sentence_english": "He wanted to make an example.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17799 + }, + { + "word": "Feinheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subtlety;finesse", + "romanization": "Feinheit", + "example_sentence_native": "Die Feinheit des Geschmacks war beeindruckend.", + "example_sentence_english": "The subtlety of the taste was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17800 + }, + { + "word": "Flugblatt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leaflet;flyer", + "romanization": "Flugblatt", + "example_sentence_native": "Sie verteilten Flugblätter in der Stadt.", + "example_sentence_english": "They distributed leaflets in the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17804 + }, + { + "word": "Friedensbewegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peace movement", + "romanization": "Friedensbewegung", + "example_sentence_native": "Die Friedensbewegung demonstrierte gegen den Krieg.", + "example_sentence_english": "The peace movement demonstrated against the war.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17806 + }, + { + "word": "Frustration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustration", + "romanization": "Frustration", + "example_sentence_native": "Er empfand große Frustration über die Situation.", + "example_sentence_english": "He felt great frustration about the situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17807 + }, + { + "word": "Garnison", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "garrison", + "romanization": "Garnison", + "example_sentence_native": "Die Soldaten kehrten in die Garnison zurück.", + "example_sentence_english": "The soldiers returned to the garrison.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17809 + }, + { + "word": "gebräuchlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "common;customary", + "romanization": "gebräuchlich", + "example_sentence_native": "Dieser Ausdruck ist nicht mehr gebräuchlich.", + "example_sentence_english": "This expression is no longer common.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17810 + }, + { + "word": "Gegenmassnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countermeasure", + "romanization": "Gegenmassnahme", + "example_sentence_native": "Die Regierung ergriff Gegenmaßnahmen gegen die Krise.", + "example_sentence_english": "The government took countermeasures against the crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17811 + }, + { + "word": "geschickt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skillful;clever", + "romanization": "geschickt", + "example_sentence_native": "Er ist sehr geschickt mit seinen Händen.", + "example_sentence_english": "He is very skillful with his hands.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17812 + }, + { + "word": "Grosseinsatz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "large-scale operation;major deployment", + "romanization": "Grosseinsatz", + "example_sentence_native": "Die Feuerwehr hatte einen Grosseinsatz in der Innenstadt.", + "example_sentence_english": "The fire department had a large-scale operation in the city center.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17814 + }, + { + "word": "Gülle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liquid manure;slurry", + "romanization": "Gülle", + "example_sentence_native": "Der Bauer verteilte Gülle auf dem Feld.", + "example_sentence_english": "The farmer spread liquid manure on the field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17817 + }, + { + "word": "Hausbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "house construction", + "romanization": "Hausbau", + "example_sentence_native": "Der Hausbau dauerte ein Jahr.", + "example_sentence_english": "The house construction took one year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17819 + }, + { + "word": "herausbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring out;to publish", + "romanization": "herausbringen", + "example_sentence_native": "Sie wollen ein neues Buch herausbringen.", + "example_sentence_english": "They want to publish a new book.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17820 + }, + { + "word": "herbeiführen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bring about;to cause", + "romanization": "herbeiführen", + "example_sentence_native": "Seine Entscheidung könnte große Veränderungen herbeiführen.", + "example_sentence_english": "His decision could bring about big changes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "herbei", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17821 + }, + { + "word": "implizit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implicit", + "romanization": "implizit", + "example_sentence_native": "Es gab eine implizite Vereinbarung.", + "example_sentence_english": "There was an implicit agreement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17824 + }, + { + "word": "Influenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "influenza;flu", + "romanization": "Influenza", + "example_sentence_native": "Die Influenza ist eine Viruserkrankung.", + "example_sentence_english": "Influenza is a viral disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17825 + }, + { + "word": "intensivieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intensify", + "romanization": "intensivieren", + "example_sentence_native": "Sie müssen ihre Bemühungen intensivieren.", + "example_sentence_english": "They must intensify their efforts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17826 + }, + { + "word": "Jahrmarkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;carnival", + "romanization": "Jahrmarkt", + "example_sentence_native": "Wir gehen jedes Jahr auf den Jahrmarkt.", + "example_sentence_english": "We go to the fair every year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17827 + }, + { + "word": "Karpfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carp", + "romanization": "Karpfen", + "example_sentence_native": "Der Karpfen schwimmt im Teich.", + "example_sentence_english": "The carp swims in the pond.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17830 + }, + { + "word": "Kinderarzt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pediatrician", + "romanization": "Kinderarzt", + "example_sentence_native": "Wir müssen mit dem Baby zum Kinderarzt.", + "example_sentence_english": "We need to take the baby to the pediatrician.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17833 + }, + { + "word": "Kitsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kitsch", + "romanization": "Kitsch", + "example_sentence_native": "Das ist reiner Kitsch.", + "example_sentence_english": "That is pure kitsch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17834 + }, + { + "word": "Klett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "velcro", + "romanization": "Klett", + "example_sentence_native": "Der Schuh hat einen Klett.", + "example_sentence_english": "The shoe has velcro.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17835 + }, + { + "word": "komischerweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strangely;oddly enough", + "romanization": "komischerweise", + "example_sentence_native": "Komischerweise war niemand zu Hause.", + "example_sentence_english": "Strangely enough, nobody was home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 17837 + }, + { + "word": "konform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compliant;in conformity", + "romanization": "konform", + "example_sentence_native": "Die Software ist mit den Regeln konform.", + "example_sentence_english": "The software is compliant with the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17838 + }, + { + "word": "Koreaner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Korean (person)", + "romanization": "Koreaner", + "example_sentence_native": "Er ist ein Koreaner.", + "example_sentence_english": "He is a Korean.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17839 + }, + { + "word": "Kracher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hit;cracker", + "romanization": "Kracher", + "example_sentence_native": "Das neue Lied ist ein echter Kracher.", + "example_sentence_english": "The new song is a real hit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17840 + }, + { + "word": "Kreisel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spinning top;roundabout", + "romanization": "Kreisel", + "example_sentence_native": "Das Kind spielt mit seinem Kreisel.", + "example_sentence_english": "The child is playing with its spinning top.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17841 + }, + { + "word": "Kunstsammler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art collector", + "romanization": "Kunstsammler", + "example_sentence_native": "Der Kunstsammler besitzt viele wertvolle Gemälde.", + "example_sentence_english": "The art collector owns many valuable paintings.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17844 + }, + { + "word": "Leadership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership", + "romanization": "Leadership", + "example_sentence_native": "Gute Leadership ist entscheidend für den Erfolg eines Teams.", + "example_sentence_english": "Good leadership is crucial for a team's success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17845 + }, + { + "word": "Lebensgefühl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attitude towards life;sense of life", + "romanization": "Lebensgefühl", + "example_sentence_native": "Sein Lebensgefühl ist sehr optimistisch.", + "example_sentence_english": "His attitude towards life is very optimistic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17846 + }, + { + "word": "Lebensumstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "living condition;circumstance of life", + "romanization": "Lebensumstand", + "example_sentence_native": "Ihre Lebensumstände haben sich verbessert.", + "example_sentence_english": "Her living conditions have improved.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17847 + }, + { + "word": "Lenkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steering;guidance;direction", + "romanization": "Lenkung", + "example_sentence_native": "Die Lenkung des Autos ist sehr präzise.", + "example_sentence_english": "The car's steering is very precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17848 + }, + { + "word": "Lichtblick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ray of hope;silver lining", + "romanization": "Lichtblick", + "example_sentence_native": "In dieser schwierigen Zeit ist jeder Lichtblick willkommen.", + "example_sentence_english": "In these difficult times, every ray of hope is welcome.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17849 + }, + { + "word": "malerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picturesque", + "romanization": "malerisch", + "example_sentence_native": "Das Dorf liegt in einer malerischen Landschaft.", + "example_sentence_english": "The village is located in a picturesque landscape.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17856 + }, + { + "word": "Masterplan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master plan", + "romanization": "Masterplan", + "example_sentence_native": "Sie haben einen Masterplan für die Entwicklung der Stadt.", + "example_sentence_english": "They have a master plan for the city's development.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17858 + }, + { + "word": "Menschenbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "view of humanity", + "romanization": "Menschenbild", + "example_sentence_native": "Das Menschenbild dieser Epoche war sehr fortschrittlich.", + "example_sentence_english": "The view of humanity of this era was very progressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17860 + }, + { + "word": "Mitläufer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fellow traveler;follower", + "romanization": "Mitläufer", + "example_sentence_native": "Er wurde als Mitläufer der Bewegung bezeichnet.", + "example_sentence_english": "He was called a fellow traveler of the movement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17864 + }, + { + "word": "Mulde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hollow;trough;depression", + "romanization": "Mulde", + "example_sentence_native": "Das Wasser sammelte sich in einer Mulde.", + "example_sentence_english": "The water collected in a hollow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17867 + }, + { + "word": "multikulti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multicultural", + "romanization": "multikulti", + "example_sentence_native": "Berlin ist eine sehr multikulti Stadt.", + "example_sentence_english": "Berlin is a very multicultural city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17868 + }, + { + "word": "Nachsicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leniency;indulgence", + "romanization": "Nachsicht", + "example_sentence_native": "Ich bitte um Ihre Nachsicht.", + "example_sentence_english": "I ask for your leniency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17869 + }, + { + "word": "Nobelpreisträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nobel laureate", + "romanization": "Nobelpreisträger", + "example_sentence_native": "Er ist ein berühmter Nobelpreisträger für Physik.", + "example_sentence_english": "He is a famous Nobel laureate in physics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17874 + }, + { + "word": "nurnoch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "only;only still", + "romanization": "nurnoch", + "example_sentence_native": "Wir haben nurnoch fünf Minuten Zeit.", + "example_sentence_english": "We only have five minutes left.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 17876 + }, + { + "word": "obdachlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeless", + "romanization": "obdachlos", + "example_sentence_native": "Viele Menschen sind obdachlos.", + "example_sentence_english": "Many people are homeless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17877 + }, + { + "word": "Paarung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mating;pairing", + "romanization": "Paarung", + "example_sentence_native": "Die Paarung der Vögel findet im Frühling statt.", + "example_sentence_english": "The mating of the birds takes place in spring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17881 + }, + { + "word": "Patron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patron;sponsor", + "romanization": "Patron", + "example_sentence_native": "Der Künstler dankte seinem Patron für die Unterstützung.", + "example_sentence_english": "The artist thanked his patron for the support.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17882 + }, + { + "word": "Placebo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "placebo", + "romanization": "Placebo", + "example_sentence_native": "Er erhielt ein Placebo anstelle des echten Medikaments.", + "example_sentence_english": "He received a placebo instead of the real medication.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17884 + }, + { + "word": "poetisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poetic", + "romanization": "poetisch", + "example_sentence_native": "Sie schrieb ein sehr poetisches Gedicht.", + "example_sentence_english": "She wrote a very poetic poem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17885 + }, + { + "word": "poppen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pop;to have sex (slang)", + "romanization": "poppen", + "example_sentence_native": "Der Korken poppte aus der Flasche.", + "example_sentence_english": "The cork popped out of the bottle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17886 + }, + { + "word": "Posting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "post (online)", + "romanization": "Posting", + "example_sentence_native": "Ihr letztes Posting auf Social Media war sehr beliebt.", + "example_sentence_english": "Her last post on social media was very popular.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17887 + }, + { + "word": "primitiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primitive", + "romanization": "primitiv", + "example_sentence_native": "Sie lebten unter sehr primitiven Bedingungen.", + "example_sentence_english": "They lived under very primitive conditions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17888 + }, + { + "word": "Prison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prison", + "romanization": "Prison", + "example_sentence_native": "Er verbrachte einige Jahre im Prison.", + "example_sentence_english": "He spent a few years in prison.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17889 + }, + { + "word": "Privatwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "private sector", + "romanization": "Privatwirtschaft", + "example_sentence_native": "Die Privatwirtschaft spielt eine wichtige Rolle in der Wirtschaft.", + "example_sentence_english": "The private sector plays an important role in the economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17890 + }, + { + "word": "pushen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push;to promote", + "romanization": "pushen", + "example_sentence_native": "Wir müssen dieses Projekt jetzt pushen.", + "example_sentence_english": "We need to push this project now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17891 + }, + { + "word": "Raps", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rapeseed;canola", + "romanization": "Raps", + "example_sentence_native": "Auf den Feldern blüht der gelbe Raps.", + "example_sentence_english": "The yellow rapeseed is blooming in the fields.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17896 + }, + { + "word": "rauh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough;harsh", + "romanization": "rauh", + "example_sentence_native": "Die Oberfläche des Steins war sehr rauh.", + "example_sentence_english": "The surface of the stone was very rough.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17897 + }, + { + "word": "Regenwasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rainwater", + "romanization": "Regenwasser", + "example_sentence_native": "Wir sammeln Regenwasser im Garten.", + "example_sentence_english": "We collect rainwater in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17898 + }, + { + "word": "Reimer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhymer;poet", + "romanization": "Reimer", + "example_sentence_native": "Der alte Reimer schrieb wunderschöne Verse.", + "example_sentence_english": "The old rhymer wrote beautiful verses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17899 + }, + { + "word": "reizvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charming;attractive", + "romanization": "reizvoll", + "example_sentence_native": "Die Landschaft ist sehr reizvoll.", + "example_sentence_english": "The landscape is very charming.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17900 + }, + { + "word": "Reklame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertisement;publicity", + "romanization": "Reklame", + "example_sentence_native": "Überall sieht man Reklame für neue Produkte.", + "example_sentence_english": "Everywhere you see advertisements for new products.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17901 + }, + { + "word": "Rentnerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female pensioner;retiree", + "romanization": "Rentnerin", + "example_sentence_native": "Meine Großmutter ist eine glückliche Rentnerin.", + "example_sentence_english": "My grandmother is a happy female pensioner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17902 + }, + { + "word": "Rückfall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relapse;setback", + "romanization": "Rückfall", + "example_sentence_native": "Nach einer Besserung erlitt er einen Rückfall.", + "example_sentence_english": "After an improvement, he suffered a relapse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17909 + }, + { + "word": "Rücknahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return;withdrawal;retraction", + "romanization": "Rücknahme", + "example_sentence_native": "Die Rücknahme des Produkts ist bis Ende des Monats möglich.", + "example_sentence_english": "The return of the product is possible until the end of the month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17910 + }, + { + "word": "Samtgemeinde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collective municipality (administrative unit in Lower Saxony;Germany)", + "romanization": "Samtgemeinde", + "example_sentence_native": "Eine Samtgemeinde ist ein Gemeindeverband in Niedersachsen.", + "example_sentence_english": "A collective municipality is an association of municipalities in Lower Saxony.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17912 + }, + { + "word": "Saxophon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saxophone", + "romanization": "Saxophon", + "example_sentence_native": "Er spielt gerne Saxophon.", + "example_sentence_english": "He likes to play the saxophone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17914 + }, + { + "word": "Schaukel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swing", + "romanization": "Schaukel", + "example_sentence_native": "Die Kinder spielen auf der Schaukel.", + "example_sentence_english": "The children are playing on the swing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17915 + }, + { + "word": "Schmerzensgeld", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensation for pain and suffering;damages", + "romanization": "Schmerzensgeld", + "example_sentence_native": "Er erhielt Schmerzensgeld nach dem Unfall.", + "example_sentence_english": "He received compensation for pain and suffering after the accident.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17916 + }, + { + "word": "Schminke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make-up;cosmetics", + "romanization": "Schminke", + "example_sentence_native": "Sie trägt gerne viel Schminke.", + "example_sentence_english": "She likes to wear a lot of make-up.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17917 + }, + { + "word": "Schneid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courage;guts;spirit", + "romanization": "Schneid", + "example_sentence_native": "Er hat den Schneid, seine Meinung zu sagen.", + "example_sentence_english": "He has the guts to speak his mind.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17918 + }, + { + "word": "schreiend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screaming;shouting (adj.)", + "romanization": "schreiend", + "example_sentence_native": "Das schreiende Baby weckte alle auf.", + "example_sentence_english": "The screaming baby woke everyone up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17919 + }, + { + "word": "Schulhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school building", + "romanization": "Schulhaus", + "example_sentence_native": "Das Schulhaus ist alt, aber gut erhalten.", + "example_sentence_english": "The school building is old, but well-preserved.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17920 + }, + { + "word": "Schwierigkeitsgrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "degree of difficulty", + "romanization": "Schwierigkeitsgrad", + "example_sentence_native": "Der Schwierigkeitsgrad dieser Aufgabe ist hoch.", + "example_sentence_english": "The degree of difficulty of this task is high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17922 + }, + { + "word": "Schützenfest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooting festival", + "romanization": "Schützenfest", + "example_sentence_native": "Jedes Jahr feiern wir ein großes Schützenfest.", + "example_sentence_english": "Every year we celebrate a big shooting festival.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17923 + }, + { + "word": "scrollen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to scroll", + "romanization": "scrollen", + "example_sentence_native": "Ich muss nach unten scrollen, um den ganzen Text zu sehen.", + "example_sentence_english": "I need to scroll down to see the whole text.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17924 + }, + { + "word": "seilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rope (oneself);to abseil", + "romanization": "seilen", + "example_sentence_native": "Die Bergsteiger mussten sich abseilen.", + "example_sentence_english": "The mountaineers had to abseil.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17925 + }, + { + "word": "Sichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sighting;viewing;screening", + "romanization": "Sichtung", + "example_sentence_native": "Die Sichtung der Bewerbungsunterlagen dauert lange.", + "example_sentence_english": "The screening of the application documents takes a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17927 + }, + { + "word": "signieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sign", + "romanization": "signieren", + "example_sentence_native": "Der Autor wird sein neues Buch signieren.", + "example_sentence_english": "The author will sign his new book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17928 + }, + { + "word": "Sippe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kin;clan;family (extended)", + "romanization": "Sippe", + "example_sentence_native": "Die ganze Sippe kam zum Familientreffen.", + "example_sentence_english": "The whole clan came to the family gathering.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17929 + }, + { + "word": "Skeptiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skeptic", + "romanization": "Skeptiker", + "example_sentence_native": "Er ist ein Skeptiker, was neue Technologien angeht.", + "example_sentence_english": "He is a skeptic when it comes to new technologies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17930 + }, + { + "word": "Skigebiet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ski resort;area", + "romanization": "Skigebiet", + "example_sentence_native": "Wir fahren im Winter in ein Skigebiet.", + "example_sentence_english": "We go to a ski resort in winter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17931 + }, + { + "word": "Slave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slave", + "romanization": "Slave", + "example_sentence_native": "In der Antike gab es viele Sklaven.", + "example_sentence_english": "In antiquity there were many slaves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17932 + }, + { + "word": "Sold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pay;wages (for soldiers)", + "romanization": "Sold", + "example_sentence_native": "Die Soldaten erhielten ihren Sold.", + "example_sentence_english": "The soldiers received their pay.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17934 + }, + { + "word": "Spaten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spade", + "romanization": "Spaten", + "example_sentence_native": "Er grub mit dem Spaten ein Loch.", + "example_sentence_english": "He dug a hole with the spade.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17935 + }, + { + "word": "steinern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stone;stony;made of stone", + "romanization": "steinern", + "example_sentence_native": "Die alte Burg hatte steinerne Mauern.", + "example_sentence_english": "The old castle had stone walls.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17939 + }, + { + "word": "Steinmetz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stonemason", + "romanization": "Steinmetz", + "example_sentence_native": "Der Steinmetz arbeitete sorgfältig am Denkmal.", + "example_sentence_english": "The stonemason worked carefully on the monument.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17940 + }, + { + "word": "Streamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "streamer", + "romanization": "Streamer", + "example_sentence_native": "Der Streamer spielte das neue Videospiel live.", + "example_sentence_english": "The streamer played the new video game live.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17942 + }, + { + "word": "Stuff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuff", + "romanization": "Stuff", + "example_sentence_native": "Ich muss noch meinen ganzen Stuff packen.", + "example_sentence_english": "I still have to pack all my stuff.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17943 + }, + { + "word": "Stäbchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chopstick", + "romanization": "Stäbchen", + "example_sentence_native": "Kannst du mit Stäbchen essen?", + "example_sentence_english": "Can you eat with chopsticks?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17944 + }, + { + "word": "synchron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronous", + "romanization": "synchron", + "example_sentence_native": "Die Bewegungen der Tänzer waren perfekt synchron.", + "example_sentence_english": "The dancers' movements were perfectly synchronous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17945 + }, + { + "word": "Südost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southeast", + "romanization": "Südost", + "example_sentence_native": "Der Wind kommt aus Südost.", + "example_sentence_english": "The wind comes from the southeast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17946 + }, + { + "word": "südwestlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southwestern", + "romanization": "südwestlich", + "example_sentence_native": "Die Stadt liegt südwestlich von Berlin.", + "example_sentence_english": "The city is located southwest of Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17947 + }, + { + "word": "tadellos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impeccable", + "romanization": "tadellos", + "example_sentence_native": "Seine Leistung war absolut tadellos.", + "example_sentence_english": "His performance was absolutely impeccable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17948 + }, + { + "word": "tatkräftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetic", + "romanization": "tatkräftig", + "example_sentence_native": "Sie ist eine sehr tatkräftige Person.", + "example_sentence_english": "She is a very energetic person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17950 + }, + { + "word": "Tippfehler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typo", + "romanization": "Tippfehler", + "example_sentence_native": "Entschuldigen Sie den Tippfehler in meiner E-Mail.", + "example_sentence_english": "Excuse the typo in my email.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17956 + }, + { + "word": "Trial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trial (e.g.;sports;legal)", + "romanization": "Trial", + "example_sentence_native": "Das Motorrad-Trial war sehr anspruchsvoll.", + "example_sentence_english": "The motorcycle trial was very demanding.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17958 + }, + { + "word": "Trope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trope", + "romanization": "Trope", + "example_sentence_native": "Die Verwendung dieser Trope ist in der modernen Literatur weit verbreitet.", + "example_sentence_english": "The use of this trope is widespread in modern literature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17959 + }, + { + "word": "Tränengas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tear gas", + "romanization": "Tränengas", + "example_sentence_native": "Die Polizei setzte Tränengas ein, um die Menge zu zerstreuen.", + "example_sentence_english": "The police used tear gas to disperse the crowd.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17960 + }, + { + "word": "Turnschuh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sneaker", + "romanization": "Turnschuh", + "example_sentence_native": "Er trägt seine neuen Turnschuhe zum Sport.", + "example_sentence_english": "He wears his new sneakers for sports.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17961 + }, + { + "word": "unbeschreiblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indescribable", + "romanization": "unbeschreiblich", + "example_sentence_native": "Die Schönheit der Landschaft war unbeschreiblich.", + "example_sentence_english": "The beauty of the landscape was indescribable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17962 + }, + { + "word": "unkontrolliert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrolled", + "romanization": "unkontrolliert", + "example_sentence_native": "Die Flammen breiteten sich unkontrolliert aus.", + "example_sentence_english": "The flames spread uncontrollably.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17964 + }, + { + "word": "Unternehmensberatung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "management consulting", + "romanization": "Unternehmensberatung", + "example_sentence_native": "Er arbeitet in einer großen Unternehmensberatung.", + "example_sentence_english": "He works at a large management consulting firm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17965 + }, + { + "word": "Unternehmensführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corporate management", + "romanization": "Unternehmensführung", + "example_sentence_native": "Die Unternehmensführung traf eine wichtige Entscheidung.", + "example_sentence_english": "The corporate management made an important decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17966 + }, + { + "word": "Unterzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "numerical inferiority", + "romanization": "Unterzahl", + "example_sentence_native": "Das Team spielte die letzten Minuten in Unterzahl.", + "example_sentence_english": "The team played the last few minutes short-handed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17967 + }, + { + "word": "Verbannung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "banishment", + "romanization": "Verbannung", + "example_sentence_native": "Die Verbannung aus dem Land war eine harte Strafe.", + "example_sentence_english": "Banishment from the country was a harsh punishment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17971 + }, + { + "word": "verkneifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suppress", + "romanization": "verkneifen", + "example_sentence_native": "Er konnte sich ein Lachen nicht verkneifen.", + "example_sentence_english": "He couldn't suppress a laugh.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17972 + }, + { + "word": "Vermerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "note", + "romanization": "Vermerk", + "example_sentence_native": "Bitte machen Sie einen Vermerk in der Akte.", + "example_sentence_english": "Please make a note in the file.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17973 + }, + { + "word": "versiegeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seal", + "romanization": "versiegeln", + "example_sentence_native": "Das Paket muss vor dem Versand versiegelt werden.", + "example_sentence_english": "The package must be sealed before shipping.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17974 + }, + { + "word": "Vertragspartner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contracting party", + "romanization": "Vertragspartner", + "example_sentence_native": "Beide Vertragspartner müssen der Änderung zustimmen.", + "example_sentence_english": "Both contracting parties must agree to the change.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17975 + }, + { + "word": "Verunreinigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contamination", + "romanization": "Verunreinigung", + "example_sentence_native": "Die Verunreinigung des Wassers ist ein ernstes Problem.", + "example_sentence_english": "The contamination of the water is a serious problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17976 + }, + { + "word": "volljährig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of legal age", + "romanization": "volljährig", + "example_sentence_native": "Man ist in Deutschland mit 18 Jahren volljährig.", + "example_sentence_english": "One is of legal age in Germany at 18.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 17977 + }, + { + "word": "Vormund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guardian", + "romanization": "Vormund", + "example_sentence_native": "Nach dem Tod der Eltern wurde ein Vormund bestellt.", + "example_sentence_english": "After the parents' death, a guardian was appointed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17978 + }, + { + "word": "Vorrichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "device", + "romanization": "Vorrichtung", + "example_sentence_native": "Die Maschine hat eine spezielle Vorrichtung zum Sortieren.", + "example_sentence_english": "The machine has a special device for sorting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17979 + }, + { + "word": "Weltmarkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world market", + "romanization": "Weltmarkt", + "example_sentence_native": "Der Weltmarkt ist sehr wettbewerbsintensiv.", + "example_sentence_english": "The world market is very competitive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17984 + }, + { + "word": "Wisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wipe;quick note", + "romanization": "Wisch", + "example_sentence_native": "Er hinterließ einen schnellen Wisch auf dem Tisch.", + "example_sentence_english": "He left a quick note on the table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17987 + }, + { + "word": "Wohneinheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "housing unit", + "romanization": "Wohneinheit", + "example_sentence_native": "Die neue Wohneinheit hat drei Zimmer.", + "example_sentence_english": "The new housing unit has three rooms.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17988 + }, + { + "word": "Wählerstimme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voter's vote;ballot", + "romanization": "Wählerstimme", + "example_sentence_native": "Jede Wählerstimme zählt bei der Wahl.", + "example_sentence_english": "Every voter's vote counts in the election.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17989 + }, + { + "word": "Zebra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zebra", + "romanization": "Zebra", + "example_sentence_native": "Das Zebra hat schwarze und weiße Streifen.", + "example_sentence_english": "The zebra has black and white stripes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17991 + }, + { + "word": "Zeitfenster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "time window", + "romanization": "Zeitfenster", + "example_sentence_native": "Wir haben ein kleines Zeitfenster für das Treffen.", + "example_sentence_english": "We have a small time window for the meeting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17992 + }, + { + "word": "Zeitvertreib", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastime;hobby", + "romanization": "Zeitvertreib", + "example_sentence_native": "Lesen ist ein beliebter Zeitvertreib.", + "example_sentence_english": "Reading is a popular pastime.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 17993 + }, + { + "word": "zuallererst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first of all;primarily", + "romanization": "zuallererst", + "example_sentence_native": "Zuallererst möchte ich mich bedanken.", + "example_sentence_english": "First of all, I would like to thank you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 17994 + }, + { + "word": "zusichern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assure;to guarantee", + "romanization": "zusichern", + "example_sentence_native": "Er konnte mir seine Unterstützung zusichern.", + "example_sentence_english": "He could assure me of his support.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "sichern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17995 + }, + { + "word": "überdecken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cover up;to obscure", + "romanization": "überdecken", + "example_sentence_native": "Der Schnee überdeckte die Spuren.", + "example_sentence_english": "The snow covered up the tracks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 17999 + }, + { + "word": "überrollen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roll over;to overrun", + "romanization": "überrollen", + "example_sentence_native": "Das Auto hat den Stein überrollt.", + "example_sentence_english": "The car rolled over the stone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18001 + }, + { + "word": "überschwemmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flood;to inundate", + "romanization": "überschwemmen", + "example_sentence_native": "Der Fluss hat das Tal überschwemmt.", + "example_sentence_english": "The river flooded the valley.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18002 + }, + { + "word": "Überzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "numerical superiority;majority", + "romanization": "Überzahl", + "example_sentence_native": "Sie gewannen das Spiel trotz der Überzahl des Gegners.", + "example_sentence_english": "They won the game despite the opponent's numerical superiority.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18003 + }, + { + "word": "Abendbrot", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "supper;dinner (evening meal;often cold)", + "romanization": "Abendbrot", + "example_sentence_native": "Wir essen um sieben Uhr Abendbrot.", + "example_sentence_english": "We eat supper at seven o'clock.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18004 + }, + { + "word": "abfragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to query;to test;to check", + "romanization": "abfragen", + "example_sentence_native": "Der Lehrer wird uns morgen die Vokabeln abfragen.", + "example_sentence_english": "The teacher will test us on the vocabulary tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "fragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18005 + }, + { + "word": "abgewinnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gain from;to derive from", + "romanization": "abgewinnen", + "example_sentence_native": "Ich konnte der Situation nichts Gutes abgewinnen.", + "example_sentence_english": "I couldn't find anything good in the situation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "gewinnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18006 + }, + { + "word": "abwerfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw off;to yield (profit)", + "romanization": "abwerfen", + "example_sentence_native": "Der Baum hat viele Äpfel abgeworfen.", + "example_sentence_english": "The tree yielded many apples.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "werfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18007 + }, + { + "word": "absorbieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to absorb", + "romanization": "absorbieren", + "example_sentence_native": "Der Schwamm kann viel Wasser absorbieren.", + "example_sentence_english": "The sponge can absorb a lot of water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18008 + }, + { + "word": "Acid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acid", + "romanization": "Acid", + "example_sentence_native": "Er hörte gerne Acid House Musik.", + "example_sentence_english": "He liked listening to acid house music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18009 + }, + { + "word": "Adelig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noble;aristocratic", + "romanization": "Adelig", + "example_sentence_native": "Sie stammt aus einer adeligen Familie.", + "example_sentence_english": "She comes from a noble family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18010 + }, + { + "word": "Anbetung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worship;adoration", + "romanization": "Anbetung", + "example_sentence_native": "Die Anbetung Gottes ist ein wichtiger Teil ihres Glaubens.", + "example_sentence_english": "The worship of God is an important part of their faith.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18012 + }, + { + "word": "anderseits", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on the other hand", + "romanization": "anderseits", + "example_sentence_native": "Einerseits ist es teuer, anderseits ist es sehr praktisch.", + "example_sentence_english": "On the one hand it's expensive, on the other hand it's very practical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 18013 + }, + { + "word": "Anfeindung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hostility;animosity", + "romanization": "Anfeindung", + "example_sentence_native": "Er sah sich vielen Anfeindungen ausgesetzt.", + "example_sentence_english": "He faced a lot of hostility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18014 + }, + { + "word": "Anger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "village green;common pasture", + "romanization": "Anger", + "example_sentence_native": "Die Kinder spielten auf dem Anger.", + "example_sentence_english": "The children played on the village green.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18015 + }, + { + "word": "Angler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angler;fisherman", + "romanization": "Angler", + "example_sentence_native": "Der Angler saß stundenlang am Fluss.", + "example_sentence_english": "The angler sat by the river for hours.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18016 + }, + { + "word": "Antifaschist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-fascist", + "romanization": "Antifaschist", + "example_sentence_native": "Er war ein überzeugter Antifaschist.", + "example_sentence_english": "He was a convinced anti-fascist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18017 + }, + { + "word": "Appartement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apartment;flat", + "romanization": "Appartement", + "example_sentence_native": "Sie mieteten ein kleines Appartement in der Stadt.", + "example_sentence_english": "They rented a small apartment in the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18018 + }, + { + "word": "Arbeitsstunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working hour", + "romanization": "Arbeitsstunde", + "example_sentence_native": "Eine Arbeitsstunde kostet 50 Euro.", + "example_sentence_english": "One working hour costs 50 Euros.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18019 + }, + { + "word": "architektonisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "architectural", + "romanization": "architektonisch", + "example_sentence_native": "Das Gebäude hat eine beeindruckende architektonische Gestaltung.", + "example_sentence_english": "The building has an impressive architectural design.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18020 + }, + { + "word": "aufjedenfall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in any case;definitely", + "romanization": "aufjedenfall", + "example_sentence_native": "Aufjedenfall müssen wir das noch besprechen.", + "example_sentence_english": "In any case, we still need to discuss that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 18022 + }, + { + "word": "Aufwind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "updraft;boost", + "romanization": "Aufwind", + "example_sentence_native": "Der Aufwind half dem Segelflieger, Höhe zu gewinnen.", + "example_sentence_english": "The updraft helped the glider gain altitude.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18023 + }, + { + "word": "Augenschein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspection;visual examination", + "romanization": "Augenschein", + "example_sentence_native": "Wir müssen die Situation genauer in Augenschein nehmen.", + "example_sentence_english": "We need to examine the situation more closely.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18024 + }, + { + "word": "ausbezahlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pay out;to disburse", + "romanization": "ausbezahlen", + "example_sentence_native": "Die Versicherung wird den Schaden ausbezahlen.", + "example_sentence_english": "The insurance will pay out the damage.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "bezahlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18025 + }, + { + "word": "Beachvolleyball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beach volleyball", + "romanization": "Beachvolleyball", + "example_sentence_native": "Im Sommer spielen wir oft Beachvolleyball am Strand.", + "example_sentence_english": "In summer, we often play beach volleyball on the beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18026 + }, + { + "word": "bebauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build on;to develop (land)", + "romanization": "bebauen", + "example_sentence_native": "Das Grundstück soll mit Wohnhäusern bebaut werden.", + "example_sentence_english": "The plot of land is to be developed with residential houses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18028 + }, + { + "word": "Bediensteter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employee;civil servant", + "romanization": "Bediensteter", + "example_sentence_native": "Ein Bediensteter des Ministeriums beantwortete die Fragen.", + "example_sentence_english": "An employee of the ministry answered the questions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18029 + }, + { + "word": "begutachten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to appraise;to evaluate", + "romanization": "begutachten", + "example_sentence_native": "Ein Experte wird den Schaden begutachten.", + "example_sentence_english": "An expert will appraise the damage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18030 + }, + { + "word": "Beule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dent;bump", + "romanization": "Beule", + "example_sentence_native": "Das Auto hat eine kleine Beule an der Tür.", + "example_sentence_english": "The car has a small dent on the door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18031 + }, + { + "word": "bewerfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to throw at;to pelt", + "romanization": "bewerfen", + "example_sentence_native": "Die Kinder bewarfen sich mit Schneebällen.", + "example_sentence_english": "The children pelted each other with snowballs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18032 + }, + { + "word": "bezahlbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affordable;payable", + "romanization": "bezahlbar", + "example_sentence_native": "Die Mieten in dieser Stadt sind kaum noch bezahlbar.", + "example_sentence_english": "Rents in this city are hardly affordable anymore.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18033 + }, + { + "word": "bischöflich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "episcopal;bishop's", + "romanization": "bischöflich", + "example_sentence_native": "Er besuchte die bischöfliche Residenz.", + "example_sentence_english": "He visited the episcopal residence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18034 + }, + { + "word": "Bogenschiessen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "archery", + "romanization": "Bogenschiessen", + "example_sentence_native": "Bogenschiessen erfordert viel Konzentration.", + "example_sentence_english": "Archery requires a lot of concentration.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18035 + }, + { + "word": "Bora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Bora (a cold wind)", + "romanization": "Bora", + "example_sentence_native": "Die Bora ist ein starker Fallwind an der Adriaküste.", + "example_sentence_english": "The Bora is a strong katabatic wind on the Adriatic coast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18038 + }, + { + "word": "Brieftasche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet", + "romanization": "Brieftasche", + "example_sentence_native": "Ich habe meine Brieftasche verloren.", + "example_sentence_english": "I lost my wallet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18041 + }, + { + "word": "Brudi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bro", + "romanization": "Brudi", + "example_sentence_native": "Hey Brudi, wie geht's?", + "example_sentence_english": "Hey bro, how's it going?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18042 + }, + { + "word": "Cappuccino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cappuccino", + "romanization": "Cappuccino", + "example_sentence_native": "Ich möchte einen Cappuccino, bitte.", + "example_sentence_english": "I would like a cappuccino, please.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18045 + }, + { + "word": "Charakterisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characterization", + "romanization": "Charakterisierung", + "example_sentence_native": "Die Charakterisierung der Figuren ist sehr detailliert.", + "example_sentence_english": "The characterization of the figures is very detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18047 + }, + { + "word": "clear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clear", + "romanization": "clear", + "example_sentence_native": "Das ist ein klares Signal.", + "example_sentence_english": "That is a clear signal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18048 + }, + { + "word": "Darling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "darling", + "romanization": "Darling", + "example_sentence_native": "Hallo, mein Darling!", + "example_sentence_english": "Hello, my darling!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18050 + }, + { + "word": "Druckmittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leverage", + "romanization": "Druckmittel", + "example_sentence_native": "Die Verhandlungen erforderten ein starkes Druckmittel.", + "example_sentence_english": "The negotiations required strong leverage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18055 + }, + { + "word": "durchspielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to play through", + "romanization": "durchspielen", + "example_sentence_native": "Wir müssen das Stück noch einmal durchspielen.", + "example_sentence_english": "We need to play through the piece one more time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18056 + }, + { + "word": "Ehrenmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "man of honor", + "romanization": "Ehrenmann", + "example_sentence_native": "Er ist ein echter Ehrenmann.", + "example_sentence_english": "He is a real man of honor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18058 + }, + { + "word": "eidgenössisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federal (Swiss)", + "romanization": "eidgenössisch", + "example_sentence_native": "Die eidgenössischen Wahlen finden alle vier Jahre statt.", + "example_sentence_english": "The federal elections take place every four years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18060 + }, + { + "word": "Eigenart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiarity;characteristic", + "romanization": "Eigenart", + "example_sentence_native": "Jede Region hat ihre eigene Eigenart.", + "example_sentence_english": "Every region has its own peculiarity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18061 + }, + { + "word": "Einbahnstrasse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one-way street", + "romanization": "Einbahnstrasse", + "example_sentence_native": "Das ist eine Einbahnstrasse, du kannst hier nicht einfahren.", + "example_sentence_english": "This is a one-way street, you cannot enter here.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18062 + }, + { + "word": "eingebaut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "built-in;integrated", + "romanization": "eingebaut", + "example_sentence_native": "Die Küche hat einen eingebauten Backofen.", + "example_sentence_english": "The kitchen has a built-in oven.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18063 + }, + { + "word": "einbilden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imagine;to fancy", + "romanization": "einbilden", + "example_sentence_native": "Er bildet sich ein, der Beste zu sein.", + "example_sentence_english": "He imagines himself to be the best.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "bilden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18064 + }, + { + "word": "Einzelteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "individual part;component", + "romanization": "Einzelteil", + "example_sentence_native": "Für die Reparatur benötige ich ein Ersatz-Einzelteil.", + "example_sentence_english": "For the repair, I need a replacement individual part.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18065 + }, + { + "word": "Emoji", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emoji", + "romanization": "Emoji", + "example_sentence_native": "Sie schickte mir ein lachendes Emoji.", + "example_sentence_english": "She sent me a laughing emoji.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18068 + }, + { + "word": "entzückt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delighted;enchanted", + "romanization": "entzückt", + "example_sentence_native": "Sie war entzückt von dem Geschenk.", + "example_sentence_english": "She was delighted with the gift.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18069 + }, + { + "word": "erhaben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sublime;elevated;majestic", + "romanization": "erhaben", + "example_sentence_native": "Die erhabene Schönheit der Berge beeindruckte sie.", + "example_sentence_english": "The sublime beauty of the mountains impressed her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18070 + }, + { + "word": "Erlangung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attainment;acquisition", + "romanization": "Erlangung", + "example_sentence_native": "Die Erlangung des Diploms war ihr größtes Ziel.", + "example_sentence_english": "The attainment of the diploma was her biggest goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18071 + }, + { + "word": "Ernsthaftigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriousness;gravity", + "romanization": "Ernsthaftigkeit", + "example_sentence_native": "Er sprach mit großer Ernsthaftigkeit über die Situation.", + "example_sentence_english": "He spoke with great seriousness about the situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18072 + }, + { + "word": "Erwerbstätig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employed;working", + "romanization": "Erwerbstätig", + "example_sentence_native": "Die Zahl der Erwerbstätigen ist gestiegen.", + "example_sentence_english": "The number of employed people has increased.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18073 + }, + { + "word": "Expert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expert", + "romanization": "Expert", + "example_sentence_native": "Sie ist eine Expertin auf diesem Gebiet.", + "example_sentence_english": "She is an expert in this field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18074 + }, + { + "word": "fabelhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabulous;fantastic", + "romanization": "fabelhaft", + "example_sentence_native": "Das Essen war fabelhaft.", + "example_sentence_english": "The food was fabulous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18075 + }, + { + "word": "Fastenzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lent (fasting period)", + "romanization": "Fastenzeit", + "example_sentence_native": "Viele Menschen verzichten in der Fastenzeit auf bestimmte Dinge.", + "example_sentence_english": "Many people give up certain things during Lent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18077 + }, + { + "word": "Felge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rim (of a wheel)", + "romanization": "Felge", + "example_sentence_native": "Die Felge des Fahrrads ist verbogen.", + "example_sentence_english": "The rim of the bicycle is bent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18078 + }, + { + "word": "Filmfestival", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film festival", + "romanization": "Filmfestival", + "example_sentence_native": "Das Filmfestival beginnt nächste Woche.", + "example_sentence_english": "The film festival starts next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18081 + }, + { + "word": "Firewall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firewall", + "romanization": "Firewall", + "example_sentence_native": "Die Firewall schützt das Netzwerk.", + "example_sentence_english": "The firewall protects the network.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18083 + }, + { + "word": "Flatrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat rate", + "romanization": "Flatrate", + "example_sentence_native": "Ich habe eine Flatrate für mein Handy.", + "example_sentence_english": "I have a flat rate for my mobile phone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18085 + }, + { + "word": "Flugzeugabsturz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plane crash", + "romanization": "Flugzeugabsturz", + "example_sentence_native": "Der Flugzeugabsturz war eine Tragödie.", + "example_sentence_english": "The plane crash was a tragedy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18086 + }, + { + "word": "Fläschchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small bottle;vial", + "romanization": "Fläschchen", + "example_sentence_native": "Das Baby trinkt aus dem Fläschchen.", + "example_sentence_english": "The baby drinks from the small bottle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18087 + }, + { + "word": "Flüchtlingsheim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee home;shelter", + "romanization": "Flüchtlingsheim", + "example_sentence_native": "Das neue Flüchtlingsheim bietet vielen Menschen Schutz.", + "example_sentence_english": "The new refugee home offers protection to many people.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18088 + }, + { + "word": "Fraktionschef", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parliamentary group leader", + "romanization": "Fraktionschef", + "example_sentence_native": "Der Fraktionschef hielt eine Rede im Bundestag.", + "example_sentence_english": "The parliamentary group leader gave a speech in the Bundestag.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18089 + }, + { + "word": "Französin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Frenchwoman", + "romanization": "Französin", + "example_sentence_native": "Sie ist eine Französin.", + "example_sentence_english": "She is a Frenchwoman.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18090 + }, + { + "word": "Frauenbewegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "women's movement", + "romanization": "Frauenbewegung", + "example_sentence_native": "Die Frauenbewegung hat viel erreicht.", + "example_sentence_english": "The women's movement has achieved a lot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18091 + }, + { + "word": "Freestyle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freestyle", + "romanization": "Freestyle", + "example_sentence_native": "Er macht Freestyle-Rap.", + "example_sentence_english": "He does freestyle rap.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18092 + }, + { + "word": "Furz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fart", + "romanization": "Furz", + "example_sentence_native": "Er hat einen Furz gelassen.", + "example_sentence_english": "He let out a fart.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18093 + }, + { + "word": "Fühler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antenna;feeler;sensor", + "romanization": "Fühler", + "example_sentence_native": "Die Ameise hat zwei Fühler.", + "example_sentence_english": "The ant has two antennae.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18094 + }, + { + "word": "Gage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fee;salary (for artists;performers)", + "romanization": "Gage", + "example_sentence_native": "Die Sängerin erhielt eine hohe Gage für ihren Auftritt.", + "example_sentence_english": "The singer received a high fee for her performance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18095 + }, + { + "word": "Geburtstagsgeschenk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "birthday present", + "romanization": "Geburtstagsgeschenk", + "example_sentence_native": "Ich habe ein schönes Geburtstagsgeschenk bekommen.", + "example_sentence_english": "I received a nice birthday present.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18098 + }, + { + "word": "Geschöpf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creature;being", + "romanization": "Geschöpf", + "example_sentence_native": "Jedes Geschöpf hat seinen Platz in der Natur.", + "example_sentence_english": "Every creature has its place in nature.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18099 + }, + { + "word": "Gewaltenteilung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separation of powers", + "romanization": "Gewaltenteilung", + "example_sentence_native": "Die Gewaltenteilung ist ein Grundprinzip der Demokratie.", + "example_sentence_english": "The separation of powers is a fundamental principle of democracy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18100 + }, + { + "word": "geändert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "changed;altered", + "romanization": "geändert", + "example_sentence_native": "Der Plan wurde geändert.", + "example_sentence_english": "The plan was changed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18101 + }, + { + "word": "Grundfläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "base area", + "romanization": "Grundfläche", + "example_sentence_native": "Berechnen Sie die Grundfläche des Zylinders.", + "example_sentence_english": "Calculate the base area of the cylinder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18107 + }, + { + "word": "Grundidee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basic idea", + "romanization": "Grundidee", + "example_sentence_native": "Die Grundidee des Projekts ist einfach.", + "example_sentence_english": "The basic idea of the project is simple.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18108 + }, + { + "word": "Gutscheincode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voucher code", + "romanization": "Gutscheincode", + "example_sentence_native": "Geben Sie den Gutscheincode an der Kasse ein.", + "example_sentence_english": "Enter the voucher code at the checkout.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18109 + }, + { + "word": "Hafer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oats", + "romanization": "Hafer", + "example_sentence_native": "Haferflocken sind ein gesundes Frühstück.", + "example_sentence_english": "Rolled oats are a healthy breakfast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18111 + }, + { + "word": "herrichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prepare;to arrange", + "romanization": "herrichten", + "example_sentence_native": "Wir müssen das Zimmer für die Gäste herrichten.", + "example_sentence_english": "We need to prepare the room for the guests.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "richten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18115 + }, + { + "word": "Hochdruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high pressure", + "romanization": "Hochdruck", + "example_sentence_native": "Wir arbeiten unter Hochdruck.", + "example_sentence_english": "We are working under high pressure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18118 + }, + { + "word": "Humanist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanist", + "romanization": "Humanist", + "example_sentence_native": "Er ist ein bekannter Humanist.", + "example_sentence_english": "He is a well-known humanist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18120 + }, + { + "word": "hundertprozentig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one hundred percent;absolutely", + "romanization": "hundertprozentig", + "example_sentence_native": "Ich bin hundertprozentig sicher.", + "example_sentence_english": "I am one hundred percent sure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18121 + }, + { + "word": "Hurrikan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurricane", + "romanization": "Hurrikan", + "example_sentence_native": "Der Hurrikan verursachte große Schäden.", + "example_sentence_english": "The hurricane caused great damage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18122 + }, + { + "word": "imaginär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imaginary", + "romanization": "imaginär", + "example_sentence_native": "Das ist nur eine imaginäre Zahl.", + "example_sentence_english": "That is just an imaginary number.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18123 + }, + { + "word": "Immigrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigrant", + "romanization": "Immigrant", + "example_sentence_native": "Viele Immigranten suchen ein besseres Leben.", + "example_sentence_english": "Many immigrants are looking for a better life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18124 + }, + { + "word": "indizieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to indicate;to index", + "romanization": "indizieren", + "example_sentence_native": "Diese Daten indizieren einen Trend.", + "example_sentence_english": "These data indicate a trend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18125 + }, + { + "word": "kalkulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to calculate", + "romanization": "kalkulieren", + "example_sentence_native": "Wir müssen die Kosten genau kalkulieren.", + "example_sentence_english": "We need to calculate the costs precisely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18126 + }, + { + "word": "Kernstadt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "city center;core city", + "romanization": "Kernstadt", + "example_sentence_native": "Die Kernstadt ist das historische Zentrum.", + "example_sentence_english": "The city center is the historical heart.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18128 + }, + { + "word": "Kirchturm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "church tower;steeple", + "romanization": "Kirchturm", + "example_sentence_native": "Der Kirchturm ist sehr hoch.", + "example_sentence_english": "The church tower is very high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18129 + }, + { + "word": "kläglich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathetic;miserable;lamentable", + "romanization": "kläglich", + "example_sentence_native": "Er machte einen kläglichen Versuch.", + "example_sentence_english": "He made a pathetic attempt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18132 + }, + { + "word": "Knüppel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "club;cudgel;stick", + "romanization": "Knüppel", + "example_sentence_native": "Er schlug mit einem Knüppel zu.", + "example_sentence_english": "He struck with a club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18133 + }, + { + "word": "Kompensation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensation", + "romanization": "Kompensation", + "example_sentence_native": "Er erhielt eine hohe Kompensation für den Schaden.", + "example_sentence_english": "He received high compensation for the damage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18135 + }, + { + "word": "Konzession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concession;license", + "romanization": "Konzession", + "example_sentence_native": "Die Regierung erteilte eine Konzession für den Bergbau.", + "example_sentence_english": "The government granted a concession for mining.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18136 + }, + { + "word": "Lasagne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lasagna", + "romanization": "Lasagne", + "example_sentence_native": "Ich liebe es, Lasagne zu essen.", + "example_sentence_english": "I love to eat lasagna.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18139 + }, + { + "word": "Lebensstandard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standard of living", + "romanization": "Lebensstandard", + "example_sentence_native": "Der Lebensstandard in diesem Land ist hoch.", + "example_sentence_english": "The standard of living in this country is high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18140 + }, + { + "word": "ledig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "single;unmarried", + "romanization": "ledig", + "example_sentence_native": "Sie ist noch ledig.", + "example_sentence_english": "She is still single.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18141 + }, + { + "word": "Leihe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loan;rental", + "romanization": "Leihe", + "example_sentence_native": "Das Auto ist eine Leihe von einem Freund.", + "example_sentence_english": "The car is a loan from a friend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18142 + }, + { + "word": "Liegenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "property;real estate", + "romanization": "Liegenschaft", + "example_sentence_native": "Die Liegenschaft wurde verkauft.", + "example_sentence_english": "The property was sold.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18145 + }, + { + "word": "limitiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limited", + "romanization": "limitiert", + "example_sentence_native": "Die Anzahl der Plätze ist limitiert.", + "example_sentence_english": "The number of seats is limited.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18146 + }, + { + "word": "Limo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soda;lemonade", + "romanization": "Limo", + "example_sentence_native": "Möchtest du eine Limo trinken?", + "example_sentence_english": "Do you want to drink a soda?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18147 + }, + { + "word": "losfahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drive off;to set off", + "romanization": "losfahren", + "example_sentence_native": "Wir müssen jetzt losfahren.", + "example_sentence_english": "We have to drive off now.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "los", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18148 + }, + { + "word": "loslösen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to detach;to release;to break free", + "romanization": "loslösen", + "example_sentence_native": "Er konnte sich nicht von der Gruppe loslösen.", + "example_sentence_english": "He couldn't detach himself from the group.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "los", + "base_verb": "lösen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18149 + }, + { + "word": "Lungenkrebs", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lung cancer", + "romanization": "Lungenkrebs", + "example_sentence_native": "Lungenkrebs ist eine schwere Krankheit.", + "example_sentence_english": "Lung cancer is a serious disease.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18150 + }, + { + "word": "Lyrics", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lyrics", + "romanization": "Lyrics", + "example_sentence_native": "Die Lyrics des Liedes sind sehr schön.", + "example_sentence_english": "The lyrics of the song are very beautiful.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18152 + }, + { + "word": "Malerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painter (female)", + "romanization": "Malerin", + "example_sentence_native": "Die Malerin hat ein neues Bild fertiggestellt.", + "example_sentence_english": "The painter has finished a new painting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18153 + }, + { + "word": "Managerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manager (female)", + "romanization": "Managerin", + "example_sentence_native": "Die Managerin leitet das Projekt.", + "example_sentence_english": "The manager leads the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18154 + }, + { + "word": "maritim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maritime", + "romanization": "maritim", + "example_sentence_native": "Die Stadt hat eine lange maritime Geschichte.", + "example_sentence_english": "The city has a long maritime history.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18155 + }, + { + "word": "melken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to milk", + "romanization": "melken", + "example_sentence_native": "Der Bauer muss die Kühe melken.", + "example_sentence_english": "The farmer has to milk the cows.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18157 + }, + { + "word": "Methan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "methane", + "romanization": "Methan", + "example_sentence_native": "Methan ist ein starkes Treibhausgas.", + "example_sentence_english": "Methane is a strong greenhouse gas.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18159 + }, + { + "word": "Mietwohnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rental apartment", + "romanization": "Mietwohnung", + "example_sentence_native": "Sie sucht eine neue Mietwohnung in der Stadt.", + "example_sentence_english": "She is looking for a new rental apartment in the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18162 + }, + { + "word": "Misshandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistreatment;abuse", + "romanization": "Misshandlung", + "example_sentence_native": "Die Misshandlung von Tieren ist inakzeptabel.", + "example_sentence_english": "The mistreatment of animals is unacceptable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18163 + }, + { + "word": "Morgengrauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dawn;daybreak", + "romanization": "Morgengrauen", + "example_sentence_native": "Wir brachen im Morgengrauen auf.", + "example_sentence_english": "We set off at dawn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18164 + }, + { + "word": "Musikverein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "music club;association", + "romanization": "Musikverein", + "example_sentence_native": "Er ist Mitglied im örtlichen Musikverein.", + "example_sentence_english": "He is a member of the local music club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18166 + }, + { + "word": "mystisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mystical", + "romanization": "mystisch", + "example_sentence_native": "Der Wald hatte eine mystische Atmosphäre.", + "example_sentence_english": "The forest had a mystical atmosphere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18168 + }, + { + "word": "mähen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mow", + "romanization": "mähen", + "example_sentence_native": "Er muss den Rasen mähen.", + "example_sentence_english": "He has to mow the lawn.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18169 + }, + { + "word": "nahegelegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nearby;adjacent", + "romanization": "nahegelegen", + "example_sentence_native": "Wir besuchten ein nahegelegenes Dorf.", + "example_sentence_english": "We visited a nearby village.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18171 + }, + { + "word": "Naturwissenschaftler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "natural scientist", + "romanization": "Naturwissenschaftler", + "example_sentence_native": "Er ist ein bekannter Naturwissenschaftler.", + "example_sentence_english": "He is a well-known natural scientist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18172 + }, + { + "word": "Neon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neon", + "romanization": "Neon", + "example_sentence_native": "Neon wird oft in Leuchtreklamen verwendet.", + "example_sentence_english": "Neon is often used in neon signs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18173 + }, + { + "word": "Nordpol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North Pole", + "romanization": "Nordpol", + "example_sentence_native": "Der Nordpol ist die nördlichste Stelle der Erde.", + "example_sentence_english": "The North Pole is the northernmost point on Earth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18175 + }, + { + "word": "Oberbefehlshaber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commander-in-chief", + "romanization": "Oberbefehlshaber", + "example_sentence_native": "Der Präsident ist der Oberbefehlshaber der Streitkräfte.", + "example_sentence_english": "The president is the commander-in-chief of the armed forces.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18176 + }, + { + "word": "Ortsname", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "place name;toponym", + "romanization": "Ortsname", + "example_sentence_native": "Viele Ortsnamen haben eine lange Geschichte.", + "example_sentence_english": "Many place names have a long history.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18179 + }, + { + "word": "Partitur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "score (music)", + "romanization": "Partitur", + "example_sentence_native": "Die Dirigentin studierte die Partitur.", + "example_sentence_english": "The conductor studied the score.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18180 + }, + { + "word": "Patriarchat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarchy", + "romanization": "Patriarchat", + "example_sentence_native": "Viele Gesellschaften sind vom Patriarchat geprägt.", + "example_sentence_english": "Many societies are shaped by patriarchy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18181 + }, + { + "word": "pennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sleep (informal)", + "romanization": "pennen", + "example_sentence_native": "Ich muss noch ein bisschen pennen.", + "example_sentence_english": "I still need to sleep a bit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18183 + }, + { + "word": "Piazza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piazza;public square", + "romanization": "Piazza", + "example_sentence_native": "Wir trafen uns auf der Piazza.", + "example_sentence_english": "We met in the piazza.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18185 + }, + { + "word": "Pils", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pilsner (beer)", + "romanization": "Pils", + "example_sentence_native": "Er bestellte ein kühles Pils.", + "example_sentence_english": "He ordered a cold pilsner.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18186 + }, + { + "word": "Pipi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pee-pee;urine (childish)", + "romanization": "Pipi", + "example_sentence_native": "Das Kind musste Pipi machen.", + "example_sentence_english": "The child had to pee-pee.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18188 + }, + { + "word": "Polka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polka", + "romanization": "Polka", + "example_sentence_native": "Sie tanzten eine fröhliche Polka.", + "example_sentence_english": "They danced a cheerful polka.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18191 + }, + { + "word": "privilegiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privileged", + "romanization": "privilegiert", + "example_sentence_native": "Er fühlte sich privilegiert, dort zu leben.", + "example_sentence_english": "He felt privileged to live there.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18193 + }, + { + "word": "Pädophilie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedophilia", + "romanization": "Pädophilie", + "example_sentence_native": "Pädophilie ist eine schwere Straftat.", + "example_sentence_english": "Pedophilia is a serious crime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18194 + }, + { + "word": "Rabbiner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabbi", + "romanization": "Rabbiner", + "example_sentence_native": "Der Rabbiner hielt eine Predigt.", + "example_sentence_english": "The rabbi gave a sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18195 + }, + { + "word": "rasend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furious;raging;incredibly (as adverb)", + "romanization": "rasend", + "example_sentence_native": "Sie war rasend vor Wut.", + "example_sentence_english": "She was furious with rage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18196 + }, + { + "word": "rauslassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let out", + "romanization": "rauslassen", + "example_sentence_native": "Kannst du den Hund rauslassen?", + "example_sentence_english": "Can you let the dog out?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18197 + }, + { + "word": "Reck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontal bar (gymnastics)", + "romanization": "Reck", + "example_sentence_native": "Der Turner übte am Reck.", + "example_sentence_english": "The gymnast practiced on the horizontal bar.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18198 + }, + { + "word": "Refugee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee", + "romanization": "Refugee", + "example_sentence_native": "Viele Refugees suchen Schutz in Europa.", + "example_sentence_english": "Many refugees seek protection in Europe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18199 + }, + { + "word": "Reibung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friction", + "romanization": "Reibung", + "example_sentence_native": "Die Reibung zwischen den Rädern und der Straße ist wichtig.", + "example_sentence_english": "The friction between the wheels and the road is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18200 + }, + { + "word": "remote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remote", + "romanization": "remote", + "example_sentence_native": "Er arbeitet oft im Remote-Modus.", + "example_sentence_english": "He often works in remote mode.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18201 + }, + { + "word": "Roaming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roaming", + "romanization": "Roaming", + "example_sentence_native": "Im Ausland ist Roaming oft teuer.", + "example_sentence_english": "Roaming is often expensive abroad.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18203 + }, + { + "word": "Rückflug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "return flight", + "romanization": "Rückflug", + "example_sentence_native": "Der Rückflug ist für morgen geplant.", + "example_sentence_english": "The return flight is scheduled for tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18206 + }, + { + "word": "Schiffer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailor;skipper", + "romanization": "Schiffer", + "example_sentence_native": "Der Schiffer steuerte das Boot sicher durch den Sturm.", + "example_sentence_english": "The skipper steered the boat safely through the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18208 + }, + { + "word": "Schwellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swelling", + "romanization": "Schwellung", + "example_sentence_native": "Nach dem Sturz hatte er eine Schwellung am Knie.", + "example_sentence_english": "After the fall, he had a swelling on his knee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18210 + }, + { + "word": "schälen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to peel", + "romanization": "schälen", + "example_sentence_native": "Sie muss die Kartoffeln schälen.", + "example_sentence_english": "She has to peel the potatoes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18211 + }, + { + "word": "Setup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "setup", + "romanization": "Setup", + "example_sentence_native": "Das Setup des neuen Computers war einfach.", + "example_sentence_english": "The setup of the new computer was easy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18212 + }, + { + "word": "Showdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showdown", + "romanization": "Showdown", + "example_sentence_native": "Es kam zum Showdown zwischen den beiden Rivalen.", + "example_sentence_english": "It came to a showdown between the two rivals.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18213 + }, + { + "word": "Silikon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silicone", + "romanization": "Silikon", + "example_sentence_native": "Die Dichtung ist aus Silikon.", + "example_sentence_english": "The seal is made of silicone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18216 + }, + { + "word": "Sole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brine", + "romanization": "Sole", + "example_sentence_native": "Das Salzbad enthält eine hohe Konzentration an Sole.", + "example_sentence_english": "The salt bath contains a high concentration of brine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18218 + }, + { + "word": "Spuk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "haunting;spook", + "romanization": "Spuk", + "example_sentence_native": "In dem alten Haus soll es Spuk geben.", + "example_sentence_english": "There is said to be a haunting in the old house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18219 + }, + { + "word": "Squad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squad", + "romanization": "Squad", + "example_sentence_native": "Das Squad bereitete sich auf die Mission vor.", + "example_sentence_english": "The squad prepared for the mission.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18220 + }, + { + "word": "Stadtbücherei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "public library", + "romanization": "Stadtbücherei", + "example_sentence_native": "Ich gehe oft in die Stadtbücherei, um Bücher auszuleihen.", + "example_sentence_english": "I often go to the public library to borrow books.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18221 + }, + { + "word": "Stadtplanung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban planning", + "romanization": "Stadtplanung", + "example_sentence_native": "Die Stadtplanung ist wichtig für die Entwicklung einer Stadt.", + "example_sentence_english": "Urban planning is important for the development of a city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18222 + }, + { + "word": "Stagnation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stagnation", + "romanization": "Stagnation", + "example_sentence_native": "Die Wirtschaft erlebte eine Phase der Stagnation.", + "example_sentence_english": "The economy experienced a period of stagnation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18223 + }, + { + "word": "Stellplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parking space", + "romanization": "Stellplatz", + "example_sentence_native": "Wir suchen einen Stellplatz für unser Auto.", + "example_sentence_english": "We are looking for a parking space for our car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18224 + }, + { + "word": "Stiefmutter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stepmother", + "romanization": "Stiefmutter", + "example_sentence_native": "Meine Stiefmutter ist sehr nett.", + "example_sentence_english": "My stepmother is very kind.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18225 + }, + { + "word": "Strohhalm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straw (for drinking)", + "romanization": "Strohhalm", + "example_sentence_native": "Ich trinke meinen Saft mit einem Strohhalm.", + "example_sentence_english": "I drink my juice with a straw.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18227 + }, + { + "word": "Strukturwandel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "structural change", + "romanization": "Strukturwandel", + "example_sentence_native": "Der Strukturwandel in der Industrie ist unaufhaltsam.", + "example_sentence_english": "Structural change in industry is unstoppable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18228 + }, + { + "word": "symmetrisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symmetrical", + "romanization": "symmetrisch", + "example_sentence_native": "Das Muster ist perfekt symmetrisch.", + "example_sentence_english": "The pattern is perfectly symmetrical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18230 + }, + { + "word": "Tequila", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tequila", + "romanization": "Tequila", + "example_sentence_native": "Er bestellte einen Tequila mit Salz und Zitrone.", + "example_sentence_english": "He ordered a tequila with salt and lemon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18233 + }, + { + "word": "Todesurteil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "death sentence", + "romanization": "Todesurteil", + "example_sentence_native": "Das Gericht fällte ein Todesurteil.", + "example_sentence_english": "The court passed a death sentence.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18235 + }, + { + "word": "totalitär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "totalitarian", + "romanization": "totalitär", + "example_sentence_native": "Das Regime war totalitär und unterdrückte die Bevölkerung.", + "example_sentence_english": "The regime was totalitarian and oppressed the population.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18236 + }, + { + "word": "Tracker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracker", + "romanization": "Tracker", + "example_sentence_native": "Der Fitness-Tracker zählt meine Schritte.", + "example_sentence_english": "The fitness tracker counts my steps.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18237 + }, + { + "word": "trotzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defy;to brave", + "romanization": "trotzen", + "example_sentence_native": "Er trotzt allen Schwierigkeiten.", + "example_sentence_english": "He defies all difficulties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18238 + }, + { + "word": "umschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rewrite;to paraphrase", + "romanization": "umschreiben", + "example_sentence_native": "Könntest du diesen Satz bitte umschreiben?", + "example_sentence_english": "Could you please rewrite this sentence?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18240 + }, + { + "word": "Umsturz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overthrow;revolution", + "romanization": "Umsturz", + "example_sentence_native": "Der Umsturz der Regierung führte zu Chaos.", + "example_sentence_english": "The overthrow of the government led to chaos.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18241 + }, + { + "word": "unausweichlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inevitable;unavoidable", + "romanization": "unausweichlich", + "example_sentence_native": "Die Konsequenzen waren unausweichlich.", + "example_sentence_english": "The consequences were inevitable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18242 + }, + { + "word": "Unfallversicherung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accident insurance", + "romanization": "Unfallversicherung", + "example_sentence_native": "Hast du eine Unfallversicherung?", + "example_sentence_english": "Do you have accident insurance?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18243 + }, + { + "word": "ungefragt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unasked;unsolicited", + "romanization": "ungefragt", + "example_sentence_native": "Er gab ungefragt seinen Rat.", + "example_sentence_english": "He gave his advice unasked.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18244 + }, + { + "word": "unnatürlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unnatural", + "romanization": "unnatürlich", + "example_sentence_native": "Das Licht sah unnatürlich aus.", + "example_sentence_english": "The light looked unnatural.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18246 + }, + { + "word": "unscharf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blurry;out of focus", + "romanization": "unscharf", + "example_sentence_native": "Das Foto ist unscharf.", + "example_sentence_english": "The photo is blurry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18247 + }, + { + "word": "unvereinbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incompatible", + "romanization": "unvereinbar", + "example_sentence_native": "Ihre Meinungen sind unvereinbar.", + "example_sentence_english": "Their opinions are incompatible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18248 + }, + { + "word": "unüblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusual;uncommon", + "romanization": "unüblich", + "example_sentence_native": "Das ist eine unübliche Vorgehensweise.", + "example_sentence_english": "That is an unusual procedure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18249 + }, + { + "word": "Verabredung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appointment;date", + "romanization": "Verabredung", + "example_sentence_native": "Ich habe eine Verabredung um drei Uhr.", + "example_sentence_english": "I have an appointment at three o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18250 + }, + { + "word": "Verbraucherzentrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumer advice center", + "romanization": "Verbraucherzentrale", + "example_sentence_native": "Die Verbraucherzentrale hilft bei Problemen mit Produkten.", + "example_sentence_english": "The consumer advice center helps with product problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18251 + }, + { + "word": "verringert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduced;decreased", + "romanization": "verringert", + "example_sentence_native": "Die verringerte Menge war nicht ausreichend.", + "example_sentence_english": "The reduced amount was not sufficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18252 + }, + { + "word": "Verschmutzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollution;contamination", + "romanization": "Verschmutzung", + "example_sentence_native": "Die Verschmutzung der Umwelt ist ein großes Problem.", + "example_sentence_english": "Environmental pollution is a big problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18253 + }, + { + "word": "verspotten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mock;to ridicule", + "romanization": "verspotten", + "example_sentence_native": "Man sollte niemanden verspotten.", + "example_sentence_english": "One should not mock anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18254 + }, + { + "word": "versöhnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconcile", + "romanization": "versöhnen", + "example_sentence_native": "Sie konnten sich nach dem Streit versöhnen.", + "example_sentence_english": "They were able to reconcile after the argument.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18255 + }, + { + "word": "vervollständigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complete;to fill in", + "romanization": "vervollständigen", + "example_sentence_native": "Bitte vervollständigen Sie das Formular.", + "example_sentence_english": "Please complete the form.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18256 + }, + { + "word": "verziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to warp;to spoil (a child)", + "romanization": "verziehen", + "example_sentence_native": "Das Holz hat sich verzogen.", + "example_sentence_english": "The wood has warped.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18257 + }, + { + "word": "Vordermann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person in front;predecessor;in order", + "romanization": "Vordermann", + "example_sentence_native": "Er brachte seine Angelegenheiten wieder auf Vordermann.", + "example_sentence_english": "He got his affairs back in order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18260 + }, + { + "word": "Vorgarten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "front garden", + "romanization": "Vorgarten", + "example_sentence_native": "Der Vorgarten ist voller Blumen.", + "example_sentence_english": "The front garden is full of flowers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18261 + }, + { + "word": "vorfallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen;to occur", + "romanization": "vorfallen", + "example_sentence_native": "Was ist gestern Abend vorfallen?", + "example_sentence_english": "What happened last night?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18262 + }, + { + "word": "vorhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold out;to last;to reproach", + "romanization": "vorhalten", + "example_sentence_native": "Die Vorräte werden noch eine Woche vorhalten.", + "example_sentence_english": "The supplies will last another week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18263 + }, + { + "word": "Waggon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway carriage;wagon", + "romanization": "Waggon", + "example_sentence_native": "Der Zug hat viele Waggons.", + "example_sentence_english": "The train has many carriages.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18264 + }, + { + "word": "Wasserhahn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tap;faucet", + "romanization": "Wasserhahn", + "example_sentence_native": "Der Wasserhahn tropft.", + "example_sentence_english": "The tap is dripping.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18265 + }, + { + "word": "Westseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "west side", + "romanization": "Westseite", + "example_sentence_native": "Das Haus hat Fenster zur Westseite.", + "example_sentence_english": "The house has windows on the west side.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18268 + }, + { + "word": "Whirlpool", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whirlpool;hot tub", + "romanization": "Whirlpool", + "example_sentence_native": "Wir entspannten uns im Whirlpool.", + "example_sentence_english": "We relaxed in the whirlpool.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18269 + }, + { + "word": "Wirtin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landlady;hostess", + "romanization": "Wirtin", + "example_sentence_native": "Die Wirtin begrüßte uns herzlich.", + "example_sentence_english": "The landlady greeted us warmly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18271 + }, + { + "word": "wund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sore;raw;wounded", + "romanization": "wund", + "example_sentence_native": "Meine Füße sind wund vom langen Gehen.", + "example_sentence_english": "My feet are sore from long walking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18273 + }, + { + "word": "wunderlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whimsical;strange;odd", + "romanization": "wunderlich", + "example_sentence_native": "Er hat manchmal sehr wunderliche Ideen.", + "example_sentence_english": "He sometimes has very strange ideas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18274 + }, + { + "word": "wärmen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to warm;to heat", + "romanization": "wärmen", + "example_sentence_native": "Die Sonne wärmt die Erde.", + "example_sentence_english": "The sun warms the earth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18275 + }, + { + "word": "zugegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "present;in attendance", + "romanization": "zugegen", + "example_sentence_native": "Alle Mitglieder waren zugegen.", + "example_sentence_english": "All members were present.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18277 + }, + { + "word": "zugewandt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friendly;approachable;turned towards", + "romanization": "zugewandt", + "example_sentence_native": "Sie ist eine sehr zugewandte Person.", + "example_sentence_english": "She is a very approachable person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18278 + }, + { + "word": "zumute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the mood;feeling", + "romanization": "zumute", + "example_sentence_native": "Mir ist heute nicht nach Arbeit zumute.", + "example_sentence_english": "I don't feel like working today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 18279 + }, + { + "word": "Zwischenstopp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stopover", + "romanization": "Zwischenstopp", + "example_sentence_native": "Wir hatten einen kurzen Zwischenstopp in Frankfurt.", + "example_sentence_english": "We had a short stopover in Frankfurt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18280 + }, + { + "word": "Zündung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignition", + "romanization": "Zündung", + "example_sentence_native": "Die Zündung des Motors funktionierte nicht.", + "example_sentence_english": "The ignition of the engine didn't work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18281 + }, + { + "word": "überglücklich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overjoyed", + "romanization": "überglücklich", + "example_sentence_native": "Sie war überglücklich über die Nachricht.", + "example_sentence_english": "She was overjoyed about the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18282 + }, + { + "word": "abwesend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absent", + "romanization": "abwesend", + "example_sentence_native": "Er war gestern abwesend vom Unterricht.", + "example_sentence_english": "He was absent from class yesterday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18283 + }, + { + "word": "Amtsinhaber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incumbent", + "romanization": "Amtsinhaber", + "example_sentence_native": "Der Amtsinhaber wurde wiedergewählt.", + "example_sentence_english": "The incumbent was re-elected.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18291 + }, + { + "word": "andersherum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the other way around", + "romanization": "andersherum", + "example_sentence_native": "Du hast das T-Shirt andersherum angezogen.", + "example_sentence_english": "You put the T-shirt on the other way around.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 18292 + }, + { + "word": "Anfangszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initial period", + "romanization": "Anfangszeit", + "example_sentence_native": "In der Anfangszeit gab es viele Herausforderungen.", + "example_sentence_english": "In the initial period, there were many challenges.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18293 + }, + { + "word": "anreisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrive (by travelling)", + "romanization": "anreisen", + "example_sentence_native": "Die Gäste werden morgen anreisen.", + "example_sentence_english": "The guests will arrive tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "reisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18294 + }, + { + "word": "Anhöhe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hill", + "romanization": "Anhöhe", + "example_sentence_native": "Wir standen auf einer kleinen Anhöhe und sahen die Stadt.", + "example_sentence_english": "We stood on a small hill and saw the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18295 + }, + { + "word": "Anzahlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down payment", + "romanization": "Anzahlung", + "example_sentence_native": "Wir mussten eine Anzahlung für das Auto leisten.", + "example_sentence_english": "We had to make a down payment for the car.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18296 + }, + { + "word": "apostolisch", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "apostolic", + "romanization": "apostolisch", + "example_sentence_native": "Er sprach über die apostolische Sukzession.", + "example_sentence_english": "He spoke about the apostolic succession.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18297 + }, + { + "word": "Arbeiterin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female worker", + "romanization": "Arbeiterin", + "example_sentence_native": "Die Arbeiterin war sehr fleißig.", + "example_sentence_english": "The female worker was very diligent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18298 + }, + { + "word": "Artgenosse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fellow creature", + "romanization": "Artgenosse", + "example_sentence_native": "Der Hund erkannte seinen Artgenossen sofort.", + "example_sentence_english": "The dog recognized its fellow creature immediately.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18299 + }, + { + "word": "Asteroid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asteroid", + "romanization": "Asteroid", + "example_sentence_native": "Ein Asteroid könnte die Erde treffen.", + "example_sentence_english": "An asteroid could hit the Earth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18301 + }, + { + "word": "aufholen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to catch up;to make up for", + "romanization": "aufholen", + "example_sentence_native": "Er muss viel Schlaf aufholen.", + "example_sentence_english": "He needs to catch up on a lot of sleep.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18302 + }, + { + "word": "Aufmachung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presentation;layout", + "romanization": "Aufmachung", + "example_sentence_native": "Die Aufmachung des Buches ist sehr ansprechend.", + "example_sentence_english": "The presentation of the book is very appealing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18303 + }, + { + "word": "aufstrebend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aspiring;up-and-coming", + "romanization": "aufstrebend", + "example_sentence_native": "Sie ist eine aufstrebende Künstlerin.", + "example_sentence_english": "She is an aspiring artist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18304 + }, + { + "word": "ausbleiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fail to appear;to stay away", + "romanization": "ausbleiben", + "example_sentence_native": "Die erwarteten Ergebnisse blieben aus.", + "example_sentence_english": "The expected results failed to appear.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "bleiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18305 + }, + { + "word": "ausschütten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distribute;to pay out", + "romanization": "ausschütten", + "example_sentence_native": "Das Unternehmen wird Dividenden ausschütten.", + "example_sentence_english": "The company will distribute dividends.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schütten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18306 + }, + { + "word": "aushelfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help out", + "romanization": "aushelfen", + "example_sentence_native": "Kannst du mir bitte aushelfen?", + "example_sentence_english": "Can you please help me out?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "helfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18307 + }, + { + "word": "Ausläufer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offshoot;spur;foothills", + "romanization": "Ausläufer", + "example_sentence_native": "Die Ausläufer der Berge sind schon sichtbar.", + "example_sentence_english": "The foothills of the mountains are already visible.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18308 + }, + { + "word": "Ausschüttung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distribution;payout", + "romanization": "Ausschüttung", + "example_sentence_native": "Die jährliche Ausschüttung an die Aktionäre war hoch.", + "example_sentence_english": "The annual payout to shareholders was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18309 + }, + { + "word": "Ausspruch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "utterance;saying", + "romanization": "Ausspruch", + "example_sentence_native": "Sein letzter Ausspruch war sehr weise.", + "example_sentence_english": "His last utterance was very wise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18310 + }, + { + "word": "Bandit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandit", + "romanization": "Bandit", + "example_sentence_native": "Der Bandit wurde von der Polizei gefasst.", + "example_sentence_english": "The bandit was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18313 + }, + { + "word": "Bausubstanz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "building fabric;structural substance", + "romanization": "Bausubstanz", + "example_sentence_native": "Die Bausubstanz des alten Hauses ist noch gut.", + "example_sentence_english": "The building fabric of the old house is still good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18315 + }, + { + "word": "Bergwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mine;colliery", + "romanization": "Bergwerk", + "example_sentence_native": "Das alte Bergwerk ist jetzt ein Museum.", + "example_sentence_english": "The old mine is now a museum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18316 + }, + { + "word": "Beschützer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protector;guardian", + "romanization": "Beschützer", + "example_sentence_native": "Er war ihr Beschützer in der Not.", + "example_sentence_english": "He was her protector in need.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18317 + }, + { + "word": "Besiedlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "settlement;colonization", + "romanization": "Besiedlung", + "example_sentence_native": "Die Besiedlung des Mars ist ein langfristiges Ziel.", + "example_sentence_english": "The colonization of Mars is a long-term goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18318 + }, + { + "word": "besinnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reflect;to remember", + "romanization": "besinnen", + "example_sentence_native": "Er besann sich auf seine Stärken.", + "example_sentence_english": "He reflected on his strengths.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18319 + }, + { + "word": "Beständigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constancy", + "romanization": "Beständigkeit", + "example_sentence_native": "Die Beständigkeit seiner Arbeit ist beeindruckend.", + "example_sentence_english": "The constancy of his work is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18320 + }, + { + "word": "beunruhigend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unsettling", + "romanization": "beunruhigend", + "example_sentence_native": "Die Nachrichten waren beunruhigend.", + "example_sentence_english": "The news was unsettling.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18321 + }, + { + "word": "brettern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speed", + "romanization": "brettern", + "example_sentence_native": "Er bretterte mit seinem Fahrrad den Hügel hinunter.", + "example_sentence_english": "He sped down the hill on his bike.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18323 + }, + { + "word": "Bundesgesetz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federal law", + "romanization": "Bundesgesetz", + "example_sentence_native": "Das neue Bundesgesetz tritt nächste Woche in Kraft.", + "example_sentence_english": "The new federal law comes into effect next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18326 + }, + { + "word": "Burschenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "student fraternity", + "romanization": "Burschenschaft", + "example_sentence_native": "Die Burschenschaft feierte ihr 200-jähriges Bestehen.", + "example_sentence_english": "The student fraternity celebrated its 200th anniversary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18327 + }, + { + "word": "campen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to camp", + "romanization": "campen", + "example_sentence_native": "Wir wollen am Wochenende campen gehen.", + "example_sentence_english": "We want to go camping this weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18329 + }, + { + "word": "Dachs", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "badger", + "romanization": "Dachs", + "example_sentence_native": "Der Dachs lebt in einem Bau unter der Erde.", + "example_sentence_english": "The badger lives in a burrow underground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18339 + }, + { + "word": "Dativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dative case", + "romanization": "Dativ", + "example_sentence_native": "Im Deutschen gibt es vier Fälle: Nominativ, Genitiv, Dativ und Akkusativ.", + "example_sentence_english": "In German, there are four cases: nominative, genitive, dative, and accusative.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18342 + }, + { + "word": "Dekade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decade", + "romanization": "Dekade", + "example_sentence_native": "Die letzte Dekade war von großen technologischen Fortschritten geprägt.", + "example_sentence_english": "The last decade was marked by great technological advancements.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18343 + }, + { + "word": "deportieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deport", + "romanization": "deportieren", + "example_sentence_native": "Die Regierung beschloss, die illegalen Einwanderer zu deportieren.", + "example_sentence_english": "The government decided to deport the illegal immigrants.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18345 + }, + { + "word": "Diakon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deacon", + "romanization": "Diakon", + "example_sentence_native": "Der Diakon assistierte dem Priester während der Messe.", + "example_sentence_english": "The deacon assisted the priest during the mass.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18347 + }, + { + "word": "Distanzierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distancing;dissociation", + "romanization": "Distanzierung", + "example_sentence_native": "Seine Distanzierung von der Partei überraschte viele.", + "example_sentence_english": "His distancing from the party surprised many.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18348 + }, + { + "word": "Diversität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversity", + "romanization": "Diversität", + "example_sentence_native": "Diversität am Arbeitsplatz wird immer wichtiger.", + "example_sentence_english": "Diversity in the workplace is becoming increasingly important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18349 + }, + { + "word": "Dschihad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihad", + "romanization": "Dschihad", + "example_sentence_native": "Der Begriff Dschihad hat verschiedene Bedeutungen im Islam.", + "example_sentence_english": "The term jihad has different meanings in Islam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18353 + }, + { + "word": "Durchblick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clear view;insight;grasp", + "romanization": "Durchblick", + "example_sentence_native": "Nach der Erklärung hatte er endlich den Durchblick.", + "example_sentence_english": "After the explanation, he finally had a clear grasp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18354 + }, + { + "word": "durchfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pass through (without stopping)", + "romanization": "durchfahren", + "example_sentence_native": "Der Zug fährt einfach durch.", + "example_sentence_english": "The train just passes through.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18355 + }, + { + "word": "durchsichtig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transparent;see-through", + "romanization": "durchsichtig", + "example_sentence_native": "Das Fenster ist aus durchsichtigem Glas.", + "example_sentence_english": "The window is made of transparent glass.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18356 + }, + { + "word": "Dämpfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damper;setback", + "romanization": "Dämpfer", + "example_sentence_native": "Die schlechten Nachrichten waren ein Dämpfer für seine Stimmung.", + "example_sentence_english": "The bad news was a damper on his mood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18358 + }, + { + "word": "eingereicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submitted;filed", + "romanization": "eingereicht", + "example_sentence_native": "Die eingereichten Dokumente waren vollständig.", + "example_sentence_english": "The submitted documents were complete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18359 + }, + { + "word": "einspringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fill in;to step in", + "romanization": "einspringen", + "example_sentence_native": "Kannst du bitte für mich einspringen?", + "example_sentence_english": "Can you please fill in for me?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "springen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18360 + }, + { + "word": "Emirat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emirate", + "romanization": "Emirat", + "example_sentence_native": "Dubai ist ein bekanntes Emirat.", + "example_sentence_english": "Dubai is a well-known emirate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18361 + }, + { + "word": "Entlohnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remuneration;payment", + "romanization": "Entlohnung", + "example_sentence_native": "Die Entlohnung für diese Arbeit ist fair.", + "example_sentence_english": "The remuneration for this work is fair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18362 + }, + { + "word": "Erwartungshaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expectation;attitude of expectation", + "romanization": "Erwartungshaltung", + "example_sentence_native": "Seine Erwartungshaltung war sehr hoch.", + "example_sentence_english": "His expectation was very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18365 + }, + { + "word": "Esstisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dining table", + "romanization": "Esstisch", + "example_sentence_native": "Wir essen am Esstisch zu Abend.", + "example_sentence_english": "We eat dinner at the dining table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18366 + }, + { + "word": "Establishment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "establishment", + "romanization": "Establishment", + "example_sentence_native": "Er kritisierte das politische Establishment.", + "example_sentence_english": "He criticized the political establishment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "num", + "word_frequency": 18367 + }, + { + "word": "Facts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facts", + "romanization": "Facts", + "example_sentence_native": "Wir brauchen die harten Facts.", + "example_sentence_english": "We need the hard facts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "num", + "word_frequency": 18369 + }, + { + "word": "Feigheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cowardice", + "romanization": "Feigheit", + "example_sentence_native": "Seine Feigheit war offensichtlich.", + "example_sentence_english": "His cowardice was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18370 + }, + { + "word": "Fraktionsvorsitzender", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parliamentary group leader;faction leader", + "romanization": "Fraktionsvorsitzender", + "example_sentence_native": "Der Fraktionsvorsitzende hielt eine Rede.", + "example_sentence_english": "The parliamentary group leader gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18372 + }, + { + "word": "Frauenanteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportion of women;female quota", + "romanization": "Frauenanteil", + "example_sentence_native": "Der Frauenanteil im Unternehmen ist gestiegen.", + "example_sentence_english": "The proportion of women in the company has increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18373 + }, + { + "word": "Freibetrag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax-free allowance;exemption amount", + "romanization": "Freibetrag", + "example_sentence_native": "Jeder Bürger hat einen jährlichen Freibetrag.", + "example_sentence_english": "Every citizen has an annual tax-free allowance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18374 + }, + { + "word": "Gastspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guest performance;guest appearance", + "romanization": "Gastspiel", + "example_sentence_native": "Die Band hatte ein Gastspiel in Berlin.", + "example_sentence_english": "The band had a guest performance in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18378 + }, + { + "word": "Gebiss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "denture;set of teeth", + "romanization": "Gebiss", + "example_sentence_native": "Mein Großvater trägt ein Gebiss.", + "example_sentence_english": "My grandfather wears a denture.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18380 + }, + { + "word": "gebären", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give birth", + "romanization": "gebären", + "example_sentence_native": "Sie wird bald ein Kind gebären.", + "example_sentence_english": "She will soon give birth to a child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18381 + }, + { + "word": "Gedenktag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial day;day of remembrance", + "romanization": "Gedenktag", + "example_sentence_native": "Der 9. November ist ein wichtiger Gedenktag in Deutschland.", + "example_sentence_english": "November 9th is an important memorial day in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18382 + }, + { + "word": "Gefährt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vehicle;conveyance", + "romanization": "Gefährt", + "example_sentence_native": "Das alte Gefährt knarrte bei jeder Bewegung.", + "example_sentence_english": "The old vehicle creaked with every movement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18383 + }, + { + "word": "Gesamtlänge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "total length;overall length", + "romanization": "Gesamtlänge", + "example_sentence_native": "Die Gesamtlänge des Flusses beträgt 100 Kilometer.", + "example_sentence_english": "The total length of the river is 100 kilometers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18384 + }, + { + "word": "gescheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clever;smart", + "romanization": "gescheit", + "example_sentence_native": "Er ist ein sehr gescheiter Junge.", + "example_sentence_english": "He is a very clever boy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18385 + }, + { + "word": "getragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worn;carried", + "romanization": "getragen", + "example_sentence_native": "Sie trug ein getragenes Kleid.", + "example_sentence_english": "She wore a worn dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18386 + }, + { + "word": "getroffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hit;met;affected", + "romanization": "getroffen", + "example_sentence_native": "Die getroffene Entscheidung war richtig.", + "example_sentence_english": "The decision made was correct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18387 + }, + { + "word": "Glut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embers;glow", + "romanization": "Glut", + "example_sentence_native": "Die Glut im Kamin wärmte den Raum.", + "example_sentence_english": "The embers in the fireplace warmed the room.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18388 + }, + { + "word": "gotisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gothic", + "romanization": "gotisch", + "example_sentence_native": "Der Kölner Dom ist ein beeindruckendes gotisches Bauwerk.", + "example_sentence_english": "Cologne Cathedral is an impressive Gothic building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18390 + }, + { + "word": "Grundordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "basic order;fundamental order", + "romanization": "Grundordnung", + "example_sentence_native": "Die Grundordnung der Gesellschaft muss respektiert werden.", + "example_sentence_english": "The basic order of society must be respected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18393 + }, + { + "word": "Grundsteuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property tax;land tax", + "romanization": "Grundsteuer", + "example_sentence_native": "Die Grundsteuer wird jährlich fällig.", + "example_sentence_english": "The property tax is due annually.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18394 + }, + { + "word": "Hauptproblem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main problem;principal problem", + "romanization": "Hauptproblem", + "example_sentence_native": "Das Hauptproblem ist der Mangel an Zeit.", + "example_sentence_english": "The main problem is the lack of time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18398 + }, + { + "word": "Hauptthema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main topic;principal theme", + "romanization": "Hauptthema", + "example_sentence_native": "Das Hauptthema des Buches ist die Liebe.", + "example_sentence_english": "The main topic of the book is love.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18399 + }, + { + "word": "Hilfsbereitschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helpfulness", + "romanization": "Hilfsbereitschaft", + "example_sentence_native": "Ihre Hilfsbereitschaft war beeindruckend.", + "example_sentence_english": "Her helpfulness was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18402 + }, + { + "word": "hipp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hip;trendy", + "romanization": "hipp", + "example_sentence_native": "Das ist ein sehr hippes Café.", + "example_sentence_english": "That is a very hip cafe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18403 + }, + { + "word": "Imperator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emperor", + "romanization": "Imperator", + "example_sentence_native": "Der römische Imperator war sehr mächtig.", + "example_sentence_english": "The Roman emperor was very powerful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18407 + }, + { + "word": "improvisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to improvise", + "romanization": "improvisieren", + "example_sentence_native": "Wir mussten improvisieren, als der Plan scheiterte.", + "example_sentence_english": "We had to improvise when the plan failed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18408 + }, + { + "word": "Inferno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inferno", + "romanization": "Inferno", + "example_sentence_native": "Das Feuer verwandelte das Gebäude in ein Inferno.", + "example_sentence_english": "The fire turned the building into an inferno.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18410 + }, + { + "word": "Informant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informant", + "romanization": "Informant", + "example_sentence_native": "Der Informant gab wichtige Hinweise.", + "example_sentence_english": "The informant gave important clues.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18411 + }, + { + "word": "inoffiziell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unofficial", + "romanization": "inoffiziell", + "example_sentence_native": "Das war eine inoffizielle Besprechung.", + "example_sentence_english": "That was an unofficial meeting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18412 + }, + { + "word": "intim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimate", + "romanization": "intim", + "example_sentence_native": "Sie hatten ein intimes Gespräch.", + "example_sentence_english": "They had an intimate conversation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18413 + }, + { + "word": "Iraker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iraqi (person)", + "romanization": "Iraker", + "example_sentence_native": "Er ist ein Iraker.", + "example_sentence_english": "He is an Iraqi.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18415 + }, + { + "word": "Jahrtausendwende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn of the millennium", + "romanization": "Jahrtausendwende", + "example_sentence_native": "Die Jahrtausendwende war ein besonderes Ereignis.", + "example_sentence_english": "The turn of the millennium was a special event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18416 + }, + { + "word": "Jüdin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jewish woman", + "romanization": "Jüdin", + "example_sentence_native": "Sie ist eine Jüdin.", + "example_sentence_english": "She is a Jewish woman.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18420 + }, + { + "word": "Kaiserzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperial era", + "romanization": "Kaiserzeit", + "example_sentence_native": "Die Kaiserzeit war eine wichtige Epoche in der deutschen Geschichte.", + "example_sentence_english": "The imperial era was an important epoch in German history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18421 + }, + { + "word": "Kalkstein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limestone", + "romanization": "Kalkstein", + "example_sentence_native": "Das Gebäude wurde aus Kalkstein gebaut.", + "example_sentence_english": "The building was built from limestone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18422 + }, + { + "word": "klarmachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make clear;to prepare", + "romanization": "klarmachen", + "example_sentence_native": "Ich muss das noch klarmachen.", + "example_sentence_english": "I still need to make that clear.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "klar", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18426 + }, + { + "word": "Klon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clone", + "romanization": "Klon", + "example_sentence_native": "Der Klon sah seinem Original sehr ähnlich.", + "example_sentence_english": "The clone looked very similar to its original.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18427 + }, + { + "word": "Klosterkirche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monastery church", + "romanization": "Klosterkirche", + "example_sentence_native": "Die alte Klosterkirche ist ein beeindruckendes Bauwerk.", + "example_sentence_english": "The old monastery church is an impressive building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18428 + }, + { + "word": "Koalitionsverhandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coalition negotiation", + "romanization": "Koalitionsverhandlung", + "example_sentence_native": "Die Koalitionsverhandlungen dauerten mehrere Wochen.", + "example_sentence_english": "The coalition negotiations lasted several weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18430 + }, + { + "word": "Konstitution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constitution", + "romanization": "Konstitution", + "example_sentence_native": "Seine Konstitution ist sehr robust.", + "example_sentence_english": "His constitution is very robust.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18431 + }, + { + "word": "Koordinator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coordinator", + "romanization": "Koordinator", + "example_sentence_native": "Der Koordinator organisiert das gesamte Projekt.", + "example_sentence_english": "The coordinator organizes the entire project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18432 + }, + { + "word": "Kulturkreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultural sphere", + "romanization": "Kulturkreis", + "example_sentence_native": "Jeder Kulturkreis hat seine eigenen Traditionen.", + "example_sentence_english": "Every cultural sphere has its own traditions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18433 + }, + { + "word": "Kunstverein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art association", + "romanization": "Kunstverein", + "example_sentence_native": "Der Kunstverein veranstaltet regelmäßig Ausstellungen.", + "example_sentence_english": "The art association regularly organizes exhibitions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18434 + }, + { + "word": "Körperteil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "body part", + "romanization": "Körperteil", + "example_sentence_native": "Jeder Körperteil hat eine Funktion.", + "example_sentence_english": "Every body part has a function.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18435 + }, + { + "word": "Leserin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female reader", + "romanization": "Leserin", + "example_sentence_native": "Die Leserin war von dem Buch begeistert.", + "example_sentence_english": "The female reader was enthusiastic about the book.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18437 + }, + { + "word": "Leserschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "readership", + "romanization": "Leserschaft", + "example_sentence_native": "Die Leserschaft der Zeitung ist sehr treu.", + "example_sentence_english": "The newspaper's readership is very loyal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18438 + }, + { + "word": "libysch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Libyan", + "romanization": "libysch", + "example_sentence_native": "Er ist libyscher Herkunft.", + "example_sentence_english": "He is of Libyan origin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18439 + }, + { + "word": "Lösungsansatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach to a solution", + "romanization": "Lösungsansatz", + "example_sentence_native": "Wir brauchen einen neuen Lösungsansatz für dieses Problem.", + "example_sentence_english": "We need a new approach to a solution for this problem.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18444 + }, + { + "word": "Magd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maid", + "romanization": "Magd", + "example_sentence_native": "Die Magd bereitete das Abendessen vor.", + "example_sentence_english": "The maid prepared dinner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18446 + }, + { + "word": "Mater", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mother (in specific contexts;e.g.;dura mater)", + "romanization": "Mater", + "example_sentence_native": "Die Dura Mater ist eine Hirnhaut.", + "example_sentence_english": "The dura mater is a meninge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18450 + }, + { + "word": "Matsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud", + "romanization": "Matsch", + "example_sentence_native": "Nach dem Regen war der Weg voller Matsch.", + "example_sentence_english": "After the rain, the path was full of mud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18451 + }, + { + "word": "Milchstrasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Milky Way", + "romanization": "Milchstrasse", + "example_sentence_native": "Wir leben in der Milchstrasse.", + "example_sentence_english": "We live in the Milky Way.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18453 + }, + { + "word": "Minderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction", + "romanization": "Minderung", + "example_sentence_native": "Es gab eine Minderung der Kosten.", + "example_sentence_english": "There was a reduction in costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18454 + }, + { + "word": "Mohn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poppy", + "romanization": "Mohn", + "example_sentence_native": "Ich mag Kuchen mit Mohn.", + "example_sentence_english": "I like cake with poppy seeds.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18458 + }, + { + "word": "nachdrücklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emphatic;insistent", + "romanization": "nachdrücklich", + "example_sentence_native": "Er betonte seine Meinung nachdrücklich.", + "example_sentence_english": "He emphasized his opinion emphatically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18463 + }, + { + "word": "nachteilig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disadvantageous;detrimental", + "romanization": "nachteilig", + "example_sentence_native": "Diese Entscheidung könnte nachteilig sein.", + "example_sentence_english": "This decision could be disadvantageous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18464 + }, + { + "word": "Nachwelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "posterity;future generations", + "romanization": "Nachwelt", + "example_sentence_native": "Er hoffte, dass seine Arbeit der Nachwelt nützen würde.", + "example_sentence_english": "He hoped his work would benefit posterity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18465 + }, + { + "word": "Neubauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new farmer;new settler", + "romanization": "Neubauer", + "example_sentence_native": "Der Neubauer bestellte sein Feld.", + "example_sentence_english": "The new farmer tilled his field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18469 + }, + { + "word": "Neufassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new version;revised edition", + "romanization": "Neufassung", + "example_sentence_native": "Die Neufassung des Gesetzes wurde veröffentlicht.", + "example_sentence_english": "The new version of the law was published.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18470 + }, + { + "word": "Notizbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "notebook", + "romanization": "Notizbuch", + "example_sentence_native": "Ich schreibe meine Ideen in mein Notizbuch.", + "example_sentence_english": "I write my ideas in my notebook.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18474 + }, + { + "word": "Oberstleutnant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lieutenant colonel", + "romanization": "Oberstleutnant", + "example_sentence_native": "Der Oberstleutnant gab den Befehl.", + "example_sentence_english": "The lieutenant colonel gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18477 + }, + { + "word": "oppositionell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppositional", + "romanization": "oppositionell", + "example_sentence_native": "Die oppositionelle Partei kritisierte die Regierung.", + "example_sentence_english": "The oppositional party criticized the government.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18479 + }, + { + "word": "Oppositionspartei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposition party", + "romanization": "Oppositionspartei", + "example_sentence_native": "Die Oppositionspartei kritisierte die neue Gesetzgebung scharf.", + "example_sentence_english": "The opposition party sharply criticized the new legislation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18480 + }, + { + "word": "Orangensaft", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "orange juice", + "romanization": "Orangensaft", + "example_sentence_native": "Ich trinke gerne ein Glas Orangensaft zum Frühstück.", + "example_sentence_english": "I like to drink a glass of orange juice for breakfast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18482 + }, + { + "word": "Orthopädie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orthopedics", + "romanization": "Orthopädie", + "example_sentence_native": "Er studiert Orthopädie an der Universität.", + "example_sentence_english": "He studies orthopedics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18483 + }, + { + "word": "Papierkram", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paperwork", + "romanization": "Papierkram", + "example_sentence_native": "Ich muss noch viel Papierkram erledigen.", + "example_sentence_english": "I still have a lot of paperwork to do.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18484 + }, + { + "word": "Patriarch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriarch", + "romanization": "Patriarch", + "example_sentence_native": "Er war der Patriarch der Familie.", + "example_sentence_english": "He was the patriarch of the family.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18486 + }, + { + "word": "Personenverkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passenger transport", + "romanization": "Personenverkehr", + "example_sentence_native": "Der Personenverkehr mit der Bahn nimmt zu.", + "example_sentence_english": "Passenger transport by train is increasing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18487 + }, + { + "word": "pilgern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pilgrimage", + "romanization": "pilgern", + "example_sentence_native": "Viele Gläubige pilgern jedes Jahr nach Rom.", + "example_sentence_english": "Many believers pilgrimage to Rome every year.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18488 + }, + { + "word": "Polizeiruf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police call", + "romanization": "Polizeiruf", + "example_sentence_native": "Nach dem Unfall wählte er den Polizeiruf.", + "example_sentence_english": "After the accident, he dialed the police emergency call.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18490 + }, + { + "word": "Prostata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostate", + "romanization": "Prostata", + "example_sentence_native": "Die Prostata ist eine Drüse im männlichen Körper.", + "example_sentence_english": "The prostate is a gland in the male body.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18491 + }, + { + "word": "Psychotherapeut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychotherapist", + "romanization": "Psychotherapeut", + "example_sentence_native": "Sie sucht einen guten Psychotherapeuten.", + "example_sentence_english": "She is looking for a good psychotherapist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18492 + }, + { + "word": "raffiniert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refined;cunning", + "romanization": "raffiniert", + "example_sentence_native": "Das war ein sehr raffinierter Plan.", + "example_sentence_english": "That was a very cunning plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18494 + }, + { + "word": "Regierungsbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "government formation", + "romanization": "Regierungsbildung", + "example_sentence_native": "Die Regierungsbildung dauerte mehrere Wochen.", + "example_sentence_english": "The government formation took several weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18495 + }, + { + "word": "rhythmisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhythmic", + "romanization": "rhythmisch", + "example_sentence_native": "Die Musik hatte einen sehr rhythmischen Klang.", + "example_sentence_english": "The music had a very rhythmic sound.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18501 + }, + { + "word": "Rücksichtnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration;thoughtfulness", + "romanization": "Rücksichtnahme", + "example_sentence_native": "Rücksichtnahme auf andere ist wichtig.", + "example_sentence_english": "Consideration for others is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18505 + }, + { + "word": "Rüstungsindustrie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arms industry;defense industry", + "romanization": "Rüstungsindustrie", + "example_sentence_native": "Die Rüstungsindustrie spielt eine große Rolle in der Wirtschaft.", + "example_sentence_english": "The arms industry plays a big role in the economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18506 + }, + { + "word": "Sauerkraut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauerkraut", + "romanization": "Sauerkraut", + "example_sentence_native": "Sauerkraut ist ein traditionelles deutsches Gericht.", + "example_sentence_english": "Sauerkraut is a traditional German dish.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18507 + }, + { + "word": "Schachzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chess move;strategic move", + "romanization": "Schachzug", + "example_sentence_native": "Sein letzter Schachzug war sehr clever.", + "example_sentence_english": "His last chess move was very clever.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18508 + }, + { + "word": "schlesisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Silesian", + "romanization": "schlesisch", + "example_sentence_native": "Er spricht einen schlesischen Dialekt.", + "example_sentence_english": "He speaks a Silesian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18509 + }, + { + "word": "schnallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to buckle;to strap", + "romanization": "schnallen", + "example_sentence_native": "Bitte schnallen Sie sich an.", + "example_sentence_english": "Please buckle up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18510 + }, + { + "word": "schnuppern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sniff;to smell (lightly)", + "romanization": "schnuppern", + "example_sentence_native": "Der Hund schnupperte am Boden.", + "example_sentence_english": "The dog sniffed at the ground.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18511 + }, + { + "word": "schweigend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silent;silently", + "romanization": "schweigend", + "example_sentence_native": "Sie saß schweigend am Tisch.", + "example_sentence_english": "She sat silently at the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18514 + }, + { + "word": "Schürze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apron", + "romanization": "Schürze", + "example_sentence_native": "Sie trug eine saubere Schürze beim Kochen.", + "example_sentence_english": "She wore a clean apron while cooking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18515 + }, + { + "word": "Schütte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heap;pile;chute", + "romanization": "Schütte", + "example_sentence_native": "Er kippte den Sand auf eine große Schütte.", + "example_sentence_english": "He dumped the sand onto a large heap.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18516 + }, + { + "word": "sehnsüchtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "longing;wistful", + "romanization": "sehnsüchtig", + "example_sentence_native": "Sie blickte sehnsüchtig aus dem Fenster.", + "example_sentence_english": "She looked longingly out the window.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18517 + }, + { + "word": "sekundär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secondary", + "romanization": "sekundär", + "example_sentence_native": "Das ist nur ein sekundäres Problem.", + "example_sentence_english": "That is only a secondary problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18518 + }, + { + "word": "seufzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sigh", + "romanization": "seufzen", + "example_sentence_native": "Sie seufzte tief, als sie die Nachricht hörte.", + "example_sentence_english": "She sighed deeply when she heard the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18521 + }, + { + "word": "sicherheitshalber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be on the safe side", + "romanization": "sicherheitshalber", + "example_sentence_native": "Nimm sicherheitshalber einen Regenschirm mit.", + "example_sentence_english": "Take an umbrella just in case.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 18522 + }, + { + "word": "slawisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Slavic", + "romanization": "slawisch", + "example_sentence_native": "Er studiert slawische Sprachen.", + "example_sentence_english": "He studies Slavic languages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18524 + }, + { + "word": "Softwareentwicklung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "software development", + "romanization": "Softwareentwicklung", + "example_sentence_native": "Sie arbeitet in der Softwareentwicklung.", + "example_sentence_english": "She works in software development.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18526 + }, + { + "word": "Sozialarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social work", + "romanization": "Sozialarbeit", + "example_sentence_native": "Er studiert Sozialarbeit an der Universität.", + "example_sentence_english": "He studies social work at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18527 + }, + { + "word": "Soziologe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociologist", + "romanization": "Soziologe", + "example_sentence_native": "Der Soziologe hielt einen interessanten Vortrag.", + "example_sentence_english": "The sociologist gave an interesting lecture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18528 + }, + { + "word": "Spanne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "span", + "romanization": "Spanne", + "example_sentence_native": "Die Preisspanne für diese Produkte ist groß.", + "example_sentence_english": "The price range for these products is wide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18529 + }, + { + "word": "Spatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparrow", + "romanization": "Spatz", + "example_sentence_native": "Ein kleiner Spatz saß auf dem Fensterbrett.", + "example_sentence_english": "A small sparrow sat on the windowsill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18530 + }, + { + "word": "Staatsbibliothek", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state library", + "romanization": "Staatsbibliothek", + "example_sentence_native": "Die Staatsbibliothek beherbergt viele alte Manuskripte.", + "example_sentence_english": "The state library houses many old manuscripts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18532 + }, + { + "word": "Staatssicherheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state security", + "romanization": "Staatssicherheit", + "example_sentence_native": "Die Staatssicherheit spielte eine wichtige Rolle in der Geschichte der DDR.", + "example_sentence_english": "State security played an important role in the history of the GDR.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18533 + }, + { + "word": "Stadttheater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city theater", + "romanization": "Stadttheater", + "example_sentence_native": "Wir haben Karten für eine Vorstellung im Stadttheater.", + "example_sentence_english": "We have tickets for a performance at the city theater.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18534 + }, + { + "word": "Steuerreform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax reform", + "romanization": "Steuerreform", + "example_sentence_native": "Die Regierung plant eine neue Steuerreform.", + "example_sentence_english": "The government is planning a new tax reform.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18535 + }, + { + "word": "Strafgesetzbuch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal code", + "romanization": "Strafgesetzbuch", + "example_sentence_native": "Das Strafgesetzbuch regelt die Straftaten und deren Strafen.", + "example_sentence_english": "The criminal code regulates crimes and their penalties.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18536 + }, + { + "word": "Symbiose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbiosis", + "romanization": "Symbiose", + "example_sentence_native": "Die Symbiose zwischen Pilzen und Pflanzen ist faszinierend.", + "example_sentence_english": "The symbiosis between fungi and plants is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18540 + }, + { + "word": "Sättigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturation;satiety", + "romanization": "Sättigung", + "example_sentence_native": "Nach dem großen Essen erreichte er ein Gefühl der Sättigung.", + "example_sentence_english": "After the big meal, he reached a feeling of satiety.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18541 + }, + { + "word": "südamerikanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South American", + "romanization": "südamerikanisch", + "example_sentence_native": "Er liebt südamerikanische Musik.", + "example_sentence_english": "He loves South American music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18542 + }, + { + "word": "Tanzmusik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dance music", + "romanization": "Tanzmusik", + "example_sentence_native": "Sie legten Tanzmusik auf der Party auf.", + "example_sentence_english": "They put on dance music at the party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18544 + }, + { + "word": "tauglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable;fit", + "romanization": "tauglich", + "example_sentence_native": "Das Material ist für den Bau tauglich.", + "example_sentence_english": "The material is suitable for construction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18546 + }, + { + "word": "Teilstück", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "section;piece;cut (of meat)", + "romanization": "Teilstück", + "example_sentence_native": "Er kaufte ein Teilstück Rindfleisch.", + "example_sentence_english": "He bought a cut of beef.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18547 + }, + { + "word": "Tochterunternehmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsidiary company", + "romanization": "Tochterunternehmen", + "example_sentence_native": "Das Unternehmen hat mehrere Tochterunternehmen weltweit.", + "example_sentence_english": "The company has several subsidiary companies worldwide.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18553 + }, + { + "word": "Trichter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funnel", + "romanization": "Trichter", + "example_sentence_native": "Benutze einen Trichter, um die Flüssigkeit umzufüllen.", + "example_sentence_english": "Use a funnel to transfer the liquid.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18557 + }, + { + "word": "undeutlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unclear;indistinct", + "romanization": "undeutlich", + "example_sentence_native": "Seine Aussprache war undeutlich.", + "example_sentence_english": "His pronunciation was unclear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18559 + }, + { + "word": "verführerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seductive", + "romanization": "verführerisch", + "example_sentence_native": "Sie hatte ein verführerisches Lächeln.", + "example_sentence_english": "She had a seductive smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 18561 + }, + { + "word": "Vergünstigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefit", + "romanization": "Vergünstigung", + "example_sentence_native": "Mitarbeiter erhalten eine Vergünstigung auf alle Produkte.", + "example_sentence_english": "Employees receive a benefit on all products.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18562 + }, + { + "word": "Verleih", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rental", + "romanization": "Verleih", + "example_sentence_native": "Der Verleih von Fahrrädern ist hier sehr beliebt.", + "example_sentence_english": "Bicycle rental is very popular here.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18563 + }, + { + "word": "verleiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tempt", + "romanization": "verleiten", + "example_sentence_native": "Lass dich nicht zu schlechten Taten verleiten.", + "example_sentence_english": "Don't let yourself be tempted into bad deeds.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18564 + }, + { + "word": "verschlagen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to drive away", + "romanization": "verschlagen", + "example_sentence_native": "Der Wind hat die Tür verschlagen.", + "example_sentence_english": "The wind has blown the door shut.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18565 + }, + { + "word": "vertagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to postpone", + "romanization": "vertagen", + "example_sentence_native": "Wir müssen die Besprechung auf nächste Woche vertagen.", + "example_sentence_english": "We have to postpone the meeting until next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18566 + }, + { + "word": "Viech", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "critter", + "romanization": "Viech", + "example_sentence_native": "Was ist das für ein komisches Viech?", + "example_sentence_english": "What kind of strange critter is that?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18567 + }, + { + "word": "Visualisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visualization", + "romanization": "Visualisierung", + "example_sentence_native": "Die Visualisierung der Daten hilft beim Verständnis.", + "example_sentence_english": "The visualization of the data helps with understanding.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18568 + }, + { + "word": "vorbeifahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drive past", + "romanization": "vorbeifahren", + "example_sentence_native": "Wir sahen das Auto vorbeifahren.", + "example_sentence_english": "We saw the car drive past.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vorbei", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18573 + }, + { + "word": "vorzuweisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to present", + "romanization": "vorzuweisen", + "example_sentence_native": "Sie müssen einen gültigen Ausweis vorzuweisen haben.", + "example_sentence_english": "You must have a valid ID to present.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "weisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18574 + }, + { + "word": "Wake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wake", + "romanization": "Wake", + "example_sentence_native": "Die Wake hinter dem Boot war beeindruckend.", + "example_sentence_english": "The wake behind the boat was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18575 + }, + { + "word": "Wasserleitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water pipe", + "romanization": "Wasserleitung", + "example_sentence_native": "Die Wasserleitung ist geplatzt.", + "example_sentence_english": "The water pipe burst.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18576 + }, + { + "word": "Weed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weed", + "romanization": "Weed", + "example_sentence_native": "Der Geruch von Weed lag in der Luft.", + "example_sentence_english": "The smell of weed was in the air.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18578 + }, + { + "word": "wehtun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hurt", + "romanization": "wehtun", + "example_sentence_native": "Mein Kopf tut weh.", + "example_sentence_english": "My head hurts.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weh", + "base_verb": "tun", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18579 + }, + { + "word": "Wetterbericht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weather report", + "romanization": "Wetterbericht", + "example_sentence_native": "Ich habe den Wetterbericht gehört.", + "example_sentence_english": "I heard the weather report.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18581 + }, + { + "word": "Windschutzscheibe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "windshield", + "romanization": "Windschutzscheibe", + "example_sentence_native": "Die Windschutzscheibe ist schmutzig.", + "example_sentence_english": "The windshield is dirty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18582 + }, + { + "word": "wirr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confused;tangled", + "romanization": "wirr", + "example_sentence_native": "Seine Gedanken waren wirr.", + "example_sentence_english": "His thoughts were confused.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18583 + }, + { + "word": "Wochenmarkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weekly market", + "romanization": "Wochenmarkt", + "example_sentence_native": "Wir kaufen frisches Gemüse auf dem Wochenmarkt.", + "example_sentence_english": "We buy fresh vegetables at the weekly market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18585 + }, + { + "word": "wüst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desolate;wild;crude", + "romanization": "wüst", + "example_sentence_native": "Die Landschaft war wüst und leer.", + "example_sentence_english": "The landscape was desolate and empty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18589 + }, + { + "word": "zeitlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timeless", + "romanization": "zeitlos", + "example_sentence_native": "Klassische Musik ist oft zeitlos.", + "example_sentence_english": "Classical music is often timeless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18593 + }, + { + "word": "zerren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tug;to pull", + "romanization": "zerren", + "example_sentence_native": "Er musste an dem Seil zerren.", + "example_sentence_english": "He had to tug on the rope.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18594 + }, + { + "word": "Zerschlagung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "smashing;breakup;dissolution", + "romanization": "Zerschlagung", + "example_sentence_native": "Die Zerschlagung des Konzerns war unvermeidlich.", + "example_sentence_english": "The breakup of the conglomerate was inevitable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18595 + }, + { + "word": "zerstreut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scattered;absent-minded", + "romanization": "zerstreut", + "example_sentence_native": "Er ist oft sehr zerstreut.", + "example_sentence_english": "He is often very absent-minded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18596 + }, + { + "word": "Zipfel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tip;corner;end", + "romanization": "Zipfel", + "example_sentence_native": "Er hielt den Zipfel des Tuches fest.", + "example_sentence_english": "He held the tip of the cloth firmly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18597 + }, + { + "word": "zugespitzt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pointed;escalated;acute", + "romanization": "zugespitzt", + "example_sentence_native": "Die Situation hat sich zugespitzt.", + "example_sentence_english": "The situation has escalated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18598 + }, + { + "word": "zumuten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expect (too much);to impose", + "romanization": "zumuten", + "example_sentence_native": "Das kann man ihm nicht zumuten.", + "example_sentence_english": "You can't expect that of him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "muten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18599 + }, + { + "word": "übertrieben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaggerated;excessive", + "romanization": "übertrieben", + "example_sentence_native": "Seine Reaktion war völlig übertrieben.", + "example_sentence_english": "His reaction was completely exaggerated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18601 + }, + { + "word": "abschicken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send off;to dispatch", + "romanization": "abschicken", + "example_sentence_native": "Ich muss das Paket heute abschicken.", + "example_sentence_english": "I have to send off the package today.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schicken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18602 + }, + { + "word": "agierend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acting;operating", + "romanization": "agierend", + "example_sentence_native": "Der agierende Bürgermeister hielt eine Rede.", + "example_sentence_english": "The acting mayor gave a speech.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18604 + }, + { + "word": "Amphibie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphibian", + "romanization": "Amphibie", + "example_sentence_native": "Frösche sind Amphibien.", + "example_sentence_english": "Frogs are amphibians.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18608 + }, + { + "word": "andauern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to continue;to persist", + "romanization": "andauern", + "example_sentence_native": "Der Regen wird noch lange andauern.", + "example_sentence_english": "The rain will continue for a long time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "dauern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18610 + }, + { + "word": "Anfangsphase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initial phase;early stage", + "romanization": "Anfangsphase", + "example_sentence_native": "Wir befinden uns noch in der Anfangsphase des Projekts.", + "example_sentence_english": "We are still in the initial phase of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18612 + }, + { + "word": "Anrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entitlement;right", + "romanization": "Anrecht", + "example_sentence_native": "Jeder Bürger hat ein Anrecht auf Bildung.", + "example_sentence_english": "Every citizen has an entitlement to education.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18613 + }, + { + "word": "Anwaltskanzlei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "law firm", + "romanization": "Anwaltskanzlei", + "example_sentence_native": "Er arbeitet in einer großen Anwaltskanzlei.", + "example_sentence_english": "He works in a large law firm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18614 + }, + { + "word": "Apartheid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apartheid", + "romanization": "Apartheid", + "example_sentence_native": "Die Apartheid war ein System der Rassentrennung.", + "example_sentence_english": "Apartheid was a system of racial segregation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18615 + }, + { + "word": "Asylantrag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum application", + "romanization": "Asylantrag", + "example_sentence_native": "Er hat einen Asylantrag gestellt.", + "example_sentence_english": "He has submitted an asylum application.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18616 + }, + { + "word": "Atheist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atheist", + "romanization": "Atheist", + "example_sentence_native": "Er bezeichnet sich selbst als Atheist.", + "example_sentence_english": "He describes himself as an atheist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18617 + }, + { + "word": "Aufdruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "print;imprint", + "romanization": "Aufdruck", + "example_sentence_native": "Der Aufdruck auf dem T-Shirt ist sehr schön.", + "example_sentence_english": "The print on the T-shirt is very nice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18618 + }, + { + "word": "aufleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revive;to come to life", + "romanization": "aufleben", + "example_sentence_native": "Nach dem Regen begann die Natur aufzuleben.", + "example_sentence_english": "After the rain, nature began to revive.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "leben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18619 + }, + { + "word": "Aufschub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postponement;delay", + "romanization": "Aufschub", + "example_sentence_native": "Wir brauchen einen Aufschub für die Abgabe.", + "example_sentence_english": "We need a postponement for the submission.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18620 + }, + { + "word": "auserwählt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chosen;elect", + "romanization": "auserwählt", + "example_sentence_native": "Er ist der auserwählte Anführer.", + "example_sentence_english": "He is the chosen leader.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18622 + }, + { + "word": "ausgefallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusual;eccentric;cancelled", + "romanization": "ausgefallen", + "example_sentence_native": "Sie hat einen sehr ausgefallenen Geschmack.", + "example_sentence_english": "She has a very unusual taste.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18624 + }, + { + "word": "ausrotten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to eradicate;to exterminate", + "romanization": "ausrotten", + "example_sentence_native": "Sie versuchen, die Schädlinge auszurotten.", + "example_sentence_english": "They are trying to eradicate the pests.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rotten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18625 + }, + { + "word": "Aushängeschild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "figurehead;showpiece;signboard", + "romanization": "Aushängeschild", + "example_sentence_native": "Das Museum ist das Aushängeschild der Stadt.", + "example_sentence_english": "The museum is the showpiece of the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18626 + }, + { + "word": "Autofahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car ride;drive", + "romanization": "Autofahrt", + "example_sentence_native": "Die Autofahrt dauerte drei Stunden.", + "example_sentence_english": "The car ride lasted three hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18627 + }, + { + "word": "befähigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enable;to qualify", + "romanization": "befähigen", + "example_sentence_native": "Seine Erfahrung befähigt ihn für diese Position.", + "example_sentence_english": "His experience qualifies him for this position.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18628 + }, + { + "word": "beschwören", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to conjure;to swear;to implore", + "romanization": "beschwören", + "example_sentence_native": "Er beschwor seine Unschuld.", + "example_sentence_english": "He swore his innocence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18634 + }, + { + "word": "beschämend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shameful;embarrassing", + "romanization": "beschämend", + "example_sentence_native": "Das war eine beschämende Niederlage.", + "example_sentence_english": "That was a shameful defeat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18635 + }, + { + "word": "Besucherzahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "number of visitors;attendance", + "romanization": "Besucherzahl", + "example_sentence_native": "Die Besucherzahl war höher als erwartet.", + "example_sentence_english": "The number of visitors was higher than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18636 + }, + { + "word": "Betäubung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anesthesia;stunning;numbing", + "romanization": "Betäubung", + "example_sentence_native": "Der Zahnarzt gab mir eine lokale Betäubung.", + "example_sentence_english": "The dentist gave me a local anesthesia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18637 + }, + { + "word": "Bibliothekar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "librarian (male)", + "romanization": "Bibliothekar", + "example_sentence_native": "Der Bibliothekar half mir, das Buch zu finden.", + "example_sentence_english": "The librarian helped me find the book.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18638 + }, + { + "word": "Blabla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blah blah;nonsense", + "romanization": "Blabla", + "example_sentence_native": "Hör auf mit diesem Blabla!", + "example_sentence_english": "Stop with this blah blah!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18639 + }, + { + "word": "blinken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to blink;to flash", + "romanization": "blinken", + "example_sentence_native": "Das Auto blinkt nach links.", + "example_sentence_english": "The car is blinking left.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18640 + }, + { + "word": "Blockbuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blockbuster", + "romanization": "Blockbuster", + "example_sentence_native": "Der neue Film ist ein echter Blockbuster.", + "example_sentence_english": "The new movie is a real blockbuster.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18641 + }, + { + "word": "boykottieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boycott", + "romanization": "boykottieren", + "example_sentence_native": "Sie beschlossen, die Produkte zu boykottieren.", + "example_sentence_english": "They decided to boycott the products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18644 + }, + { + "word": "Brennholz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firewood", + "romanization": "Brennholz", + "example_sentence_native": "Wir brauchen mehr Brennholz für den Kamin.", + "example_sentence_english": "We need more firewood for the fireplace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18645 + }, + { + "word": "Bundeskanzleramt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Chancellery", + "romanization": "Bundeskanzleramt", + "example_sentence_native": "Das Bundeskanzleramt ist der Amtssitz des deutschen Bundeskanzlers.", + "example_sentence_english": "The Federal Chancellery is the official seat of the German Chancellor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18648 + }, + { + "word": "byzantinisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Byzantine", + "romanization": "byzantinisch", + "example_sentence_native": "Die byzantinische Kunst ist sehr beeindruckend.", + "example_sentence_english": "Byzantine art is very impressive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18650 + }, + { + "word": "bäuerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rural;peasant-like", + "romanization": "bäuerlich", + "example_sentence_native": "Sie lebten in einem bäuerlichen Haus.", + "example_sentence_english": "They lived in a rural house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18651 + }, + { + "word": "Büchse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tin;can", + "romanization": "Büchse", + "example_sentence_native": "Er öffnete eine Büchse Bohnen.", + "example_sentence_english": "He opened a can of beans.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18652 + }, + { + "word": "büssen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to atone for;to pay for", + "romanization": "büssen", + "example_sentence_native": "Er musste für seine Fehler büssen.", + "example_sentence_english": "He had to pay for his mistakes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18653 + }, + { + "word": "Camper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camper (person or vehicle)", + "romanization": "Camper", + "example_sentence_native": "Die Camper stellten ihr Zelt am See auf.", + "example_sentence_english": "The campers pitched their tent by the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18654 + }, + { + "word": "Cell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cello (musical instrument)", + "romanization": "Cell", + "example_sentence_native": "Er spielt das Cell in einem Orchester.", + "example_sentence_english": "He plays the cello in an orchestra.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18658 + }, + { + "word": "Compagnie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "company", + "romanization": "Compagnie", + "example_sentence_native": "Die Compagnie hat ihren Sitz in Paris.", + "example_sentence_english": "The company is based in Paris.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18663 + }, + { + "word": "Concert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concert", + "romanization": "Concert", + "example_sentence_native": "Das Concert beginnt um acht Uhr.", + "example_sentence_english": "The concert starts at eight o'clock.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18664 + }, + { + "word": "Condor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condor", + "romanization": "Condor", + "example_sentence_native": "Der Condor ist ein großer Greifvogel.", + "example_sentence_english": "The condor is a large bird of prey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18665 + }, + { + "word": "Cutter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cutter (tool or person)", + "romanization": "Cutter", + "example_sentence_native": "Der Cutter ist sehr scharf.", + "example_sentence_english": "The cutter is very sharp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18667 + }, + { + "word": "Delay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delay", + "romanization": "Delay", + "example_sentence_native": "Es gab einen Delay bei der Ankunft des Zuges.", + "example_sentence_english": "There was a delay in the train's arrival.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18670 + }, + { + "word": "demontieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismantle;to disassemble", + "romanization": "demontieren", + "example_sentence_native": "Sie müssen die Maschine demontieren, um sie zu reparieren.", + "example_sentence_english": "You have to dismantle the machine to repair it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18671 + }, + { + "word": "Diabetiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diabetic (person)", + "romanization": "Diabetiker", + "example_sentence_native": "Als Diabetiker muss er auf seine Ernährung achten.", + "example_sentence_english": "As a diabetic, he has to watch his diet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18674 + }, + { + "word": "District", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district", + "romanization": "District", + "example_sentence_native": "Dieser District ist bekannt für seine Kunstgalerien.", + "example_sentence_english": "This district is known for its art galleries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18676 + }, + { + "word": "Drogendealer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug dealer", + "romanization": "Drogendealer", + "example_sentence_native": "Die Polizei hat einen Drogendealer festgenommen.", + "example_sentence_english": "The police arrested a drug dealer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18678 + }, + { + "word": "Drummer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drummer", + "romanization": "Drummer", + "example_sentence_native": "Der Drummer spielt ein Solo.", + "example_sentence_english": "The drummer plays a solo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18679 + }, + { + "word": "Ebbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ebb tide", + "romanization": "Ebbe", + "example_sentence_native": "Bei Ebbe kann man am Strand spazieren gehen.", + "example_sentence_english": "At ebb tide, you can walk on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18682 + }, + { + "word": "einhergehend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accompanying;concomitant", + "romanization": "einhergehend", + "example_sentence_native": "Die Krankheit und die damit einhergehenden Symptome.", + "example_sentence_english": "The disease and the accompanying symptoms.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18686 + }, + { + "word": "eindämmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contain;to curb", + "romanization": "eindämmen", + "example_sentence_native": "Wir müssen die Ausbreitung des Virus eindämmen.", + "example_sentence_english": "We must contain the spread of the virus.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "dämmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18687 + }, + { + "word": "elektromagnetisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electromagnetic", + "romanization": "elektromagnetisch", + "example_sentence_native": "Das ist ein elektromagnetisches Feld.", + "example_sentence_english": "That is an electromagnetic field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18688 + }, + { + "word": "Elektromotor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electric motor", + "romanization": "Elektromotor", + "example_sentence_native": "Das Auto wird von einem Elektromotor angetrieben.", + "example_sentence_english": "The car is powered by an electric motor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18689 + }, + { + "word": "Energiepolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy policy", + "romanization": "Energiepolitik", + "example_sentence_native": "Die Energiepolitik ist ein wichtiges Thema.", + "example_sentence_english": "Energy policy is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18690 + }, + { + "word": "Energieversorger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy supplier", + "romanization": "Energieversorger", + "example_sentence_native": "Der Energieversorger erhöht die Preise.", + "example_sentence_english": "The energy supplier is increasing prices.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18691 + }, + { + "word": "erblicken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to catch sight of;to behold", + "romanization": "erblicken", + "example_sentence_native": "Er erblickte ein Schiff am Horizont.", + "example_sentence_english": "He caught sight of a ship on the horizon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18693 + }, + { + "word": "ersuchen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to request;to ask", + "romanization": "ersuchen", + "example_sentence_native": "Wir ersuchen Sie um Ihre Mithilfe.", + "example_sentence_english": "We request your assistance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18694 + }, + { + "word": "Erwerbstätigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employment;gainful employment", + "romanization": "Erwerbstätigkeit", + "example_sentence_native": "Die Erwerbstätigkeit in diesem Sektor ist gestiegen.", + "example_sentence_english": "Employment in this sector has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18695 + }, + { + "word": "Fahrerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female driver", + "romanization": "Fahrerin", + "example_sentence_native": "Die Fahrerin des Busses war sehr freundlich.", + "example_sentence_english": "The driver of the bus was very friendly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18696 + }, + { + "word": "Fallschirm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parachute", + "romanization": "Fallschirm", + "example_sentence_native": "Er sprang mit einem Fallschirm aus dem Flugzeug.", + "example_sentence_english": "He jumped out of the plane with a parachute.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18697 + }, + { + "word": "Fernsehserie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "TV series", + "romanization": "Fernsehserie", + "example_sentence_native": "Meine Lieblings-Fernsehserie läuft heute Abend.", + "example_sentence_english": "My favorite TV series is on tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18698 + }, + { + "word": "festlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festive;celebratory", + "romanization": "festlich", + "example_sentence_native": "Die Atmosphäre war sehr festlich.", + "example_sentence_english": "The atmosphere was very festive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18699 + }, + { + "word": "Feuerlöscher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire extinguisher", + "romanization": "Feuerlöscher", + "example_sentence_native": "Im Notfall benutzen Sie den Feuerlöscher.", + "example_sentence_english": "In case of emergency, use the fire extinguisher.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18700 + }, + { + "word": "Fundus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stock;collection;fundus", + "romanization": "Fundus", + "example_sentence_native": "Der Theater-Fundus ist riesig.", + "example_sentence_english": "The theater's stock is huge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18702 + }, + { + "word": "funktionell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functional", + "romanization": "funktionell", + "example_sentence_native": "Das Design ist sehr funktionell.", + "example_sentence_english": "The design is very functional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18703 + }, + { + "word": "fälschlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erroneously;falsely", + "romanization": "fälschlich", + "example_sentence_native": "Er wurde fälschlich beschuldigt.", + "example_sentence_english": "He was falsely accused.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 18704 + }, + { + "word": "Fünfziger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fifties (decade);person in their fifties", + "romanization": "Fünfziger", + "example_sentence_native": "In den Fünfzigern war die Mode anders.", + "example_sentence_english": "In the fifties, fashion was different.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 18705 + }, + { + "word": "gefertigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufactured;produced", + "romanization": "gefertigt", + "example_sentence_native": "Das Produkt ist in Deutschland gefertigt.", + "example_sentence_english": "The product is manufactured in Germany.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18707 + }, + { + "word": "Gegenüberstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confrontation;comparison;juxtaposition", + "romanization": "Gegenüberstellung", + "example_sentence_native": "Die Gegenüberstellung der Zeugen fand statt.", + "example_sentence_english": "The confrontation of the witnesses took place.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18708 + }, + { + "word": "Gehirnwäsche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brainwashing", + "romanization": "Gehirnwäsche", + "example_sentence_native": "Er behauptete, er sei einer Gehirnwäsche unterzogen worden.", + "example_sentence_english": "He claimed he had been subjected to brainwashing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18709 + }, + { + "word": "Geiselnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostage-taking;hostage situation", + "romanization": "Geiselnahme", + "example_sentence_native": "Die Polizei beendete die Geiselnahme.", + "example_sentence_english": "The police ended the hostage situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18710 + }, + { + "word": "geleiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escort;to conduct", + "romanization": "geleiten", + "example_sentence_native": "Er wurde zum Ausgang geleitet.", + "example_sentence_english": "He was escorted to the exit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18711 + }, + { + "word": "Gelübde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vow;pledge", + "romanization": "Gelübde", + "example_sentence_native": "Sie legte ein Gelübde ab.", + "example_sentence_english": "She took a vow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18712 + }, + { + "word": "Gemütlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coziness;comfort;snugness", + "romanization": "Gemütlichkeit", + "example_sentence_native": "Die Wohnung strahlt eine besondere Gemütlichkeit aus.", + "example_sentence_english": "The apartment exudes a special coziness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18713 + }, + { + "word": "gestört", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbed;impaired;broken", + "romanization": "gestört", + "example_sentence_native": "Die Verbindung ist gestört.", + "example_sentence_english": "The connection is disturbed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18714 + }, + { + "word": "getrocknet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dried", + "romanization": "getrocknet", + "example_sentence_native": "Wir haben getrocknete Früchte gekauft.", + "example_sentence_english": "We bought dried fruits.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18715 + }, + { + "word": "Gig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gig (performance;job)", + "romanization": "Gig", + "example_sentence_native": "Die Band hatte einen Gig in Berlin.", + "example_sentence_english": "The band had a gig in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18716 + }, + { + "word": "gleichaltrig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "same-aged;of the same age", + "romanization": "gleichaltrig", + "example_sentence_native": "Sie ist mit ihren Freunden gleichaltrig.", + "example_sentence_english": "She is the same age as her friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18717 + }, + { + "word": "Gleichbehandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equal treatment", + "romanization": "Gleichbehandlung", + "example_sentence_native": "Das Gesetz fordert Gleichbehandlung für alle.", + "example_sentence_english": "The law demands equal treatment for everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18718 + }, + { + "word": "Glitzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glitter;sparkle", + "romanization": "Glitzer", + "example_sentence_native": "Das Kleid war voller Glitzer.", + "example_sentence_english": "The dress was full of glitter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18719 + }, + { + "word": "Gnu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wildebeest", + "romanization": "Gnu", + "example_sentence_native": "Das Gnu ist ein großes Tier, das in Afrika lebt.", + "example_sentence_english": "The wildebeest is a large animal that lives in Africa.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18720 + }, + { + "word": "Graph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graph", + "romanization": "Graph", + "example_sentence_native": "Der Graph zeigt die Entwicklung der Verkaufszahlen.", + "example_sentence_english": "The graph shows the development of sales figures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18722 + }, + { + "word": "Grundlagenforschung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "basic research", + "romanization": "Grundlagenforschung", + "example_sentence_native": "Die Grundlagenforschung ist entscheidend für neue Entdeckungen.", + "example_sentence_english": "Basic research is crucial for new discoveries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18723 + }, + { + "word": "Haarfarbe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hair color", + "romanization": "Haarfarbe", + "example_sentence_native": "Ihre natürliche Haarfarbe ist blond.", + "example_sentence_english": "Her natural hair color is blonde.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18724 + }, + { + "word": "Haftpflicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liability (insurance)", + "romanization": "Haftpflicht", + "example_sentence_native": "Eine Haftpflichtversicherung ist in Deutschland sehr wichtig.", + "example_sentence_english": "Liability insurance is very important in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18726 + }, + { + "word": "Handwerkskammer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Chamber of Crafts", + "romanization": "Handwerkskammer", + "example_sentence_native": "Die Handwerkskammer bietet Weiterbildungskurse an.", + "example_sentence_english": "The Chamber of Crafts offers continuing education courses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18727 + }, + { + "word": "Heiterkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerfulness", + "romanization": "Heiterkeit", + "example_sentence_native": "Ihre Heiterkeit war ansteckend für alle Anwesenden.", + "example_sentence_english": "Her cheerfulness was contagious to everyone present.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18729 + }, + { + "word": "Helium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helium", + "romanization": "Helium", + "example_sentence_native": "Ballons werden oft mit Helium gefüllt, damit sie schweben.", + "example_sentence_english": "Balloons are often filled with helium so they float.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18730 + }, + { + "word": "Herausforderer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenger", + "romanization": "Herausforderer", + "example_sentence_native": "Der Herausforderer im Boxkampf war sehr selbstbewusst.", + "example_sentence_english": "The challenger in the boxing match was very confident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18733 + }, + { + "word": "hingehören", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to belong (there)", + "romanization": "hingehören", + "example_sentence_native": "Dieser Stuhl gehört in die Küche.", + "example_sentence_english": "This chair belongs in the kitchen.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "gehören", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18736 + }, + { + "word": "hinreissen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to carry away;to enthrall", + "romanization": "hinreissen", + "example_sentence_native": "Die Musik konnte das Publikum völlig hinreißen.", + "example_sentence_english": "The music could completely enthrall the audience.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "reissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18737 + }, + { + "word": "Hinterhalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambush", + "romanization": "Hinterhalt", + "example_sentence_native": "Sie gerieten in einen Hinterhalt im Wald.", + "example_sentence_english": "They fell into an ambush in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18738 + }, + { + "word": "Hummer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lobster", + "romanization": "Hummer", + "example_sentence_native": "Zum Abendessen gab es frischen Hummer.", + "example_sentence_english": "For dinner, there was fresh lobster.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18739 + }, + { + "word": "imitieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imitate", + "romanization": "imitieren", + "example_sentence_native": "Er versucht, die Bewegungen des Tänzers zu imitieren.", + "example_sentence_english": "He tries to imitate the dancer's movements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18741 + }, + { + "word": "Indikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indication", + "romanization": "Indikation", + "example_sentence_native": "Es gibt keine Indikation für eine Operation.", + "example_sentence_english": "There is no indication for an operation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18743 + }, + { + "word": "instrumental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instrumental", + "romanization": "instrumental", + "example_sentence_native": "Seine Hilfe war instrumental für den Erfolg des Projekts.", + "example_sentence_english": "His help was instrumental for the success of the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18745 + }, + { + "word": "Jugendherberge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "youth hostel", + "romanization": "Jugendherberge", + "example_sentence_native": "Wir übernachten in einer Jugendherberge.", + "example_sentence_english": "We are staying in a youth hostel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18749 + }, + { + "word": "Jugendstil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Art Nouveau", + "romanization": "Jugendstil", + "example_sentence_native": "Das Gebäude ist im Jugendstil erbaut.", + "example_sentence_english": "The building is built in Art Nouveau style.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18750 + }, + { + "word": "Kampfsport", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "martial arts", + "romanization": "Kampfsport", + "example_sentence_native": "Er trainiert seit Jahren Kampfsport.", + "example_sentence_english": "He has been training martial arts for years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18751 + }, + { + "word": "Kellnerin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "waitress", + "romanization": "Kellnerin", + "example_sentence_native": "Die Kellnerin brachte uns die Speisekarte.", + "example_sentence_english": "The waitress brought us the menu.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18752 + }, + { + "word": "kicken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to kick", + "romanization": "kicken", + "example_sentence_native": "Die Kinder kicken den Ball im Garten.", + "example_sentence_english": "The children kick the ball in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18754 + }, + { + "word": "Kindesmissbrauch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "child abuse", + "romanization": "Kindesmissbrauch", + "example_sentence_native": "Kindesmissbrauch ist ein schweres Verbrechen.", + "example_sentence_english": "Child abuse is a serious crime.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18755 + }, + { + "word": "Klarstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarification", + "romanization": "Klarstellung", + "example_sentence_native": "Er bat um eine Klarstellung der Situation.", + "example_sentence_english": "He asked for a clarification of the situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18756 + }, + { + "word": "Kommilitone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fellow student (male)", + "romanization": "Kommilitone", + "example_sentence_native": "Mein Kommilitone und ich arbeiten zusammen an einem Projekt.", + "example_sentence_english": "My fellow student and I are working together on a project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18757 + }, + { + "word": "Kommode", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chest of drawers;dresser", + "romanization": "Kommode", + "example_sentence_native": "Die Kleidung liegt in der Kommode.", + "example_sentence_english": "The clothes are in the chest of drawers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18758 + }, + { + "word": "Kopfkissen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pillow", + "romanization": "Kopfkissen", + "example_sentence_native": "Ich brauche ein neues Kopfkissen für mein Bett.", + "example_sentence_english": "I need a new pillow for my bed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18760 + }, + { + "word": "kriegerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warlike;martial", + "romanization": "kriegerisch", + "example_sentence_native": "Die kriegerische Haltung des Landes beunruhigte die Nachbarn.", + "example_sentence_english": "The country's warlike stance worried its neighbors.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18761 + }, + { + "word": "Kruste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crust", + "romanization": "Kruste", + "example_sentence_native": "Die Kruste des Brotes war knusprig.", + "example_sentence_english": "The crust of the bread was crispy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18762 + }, + { + "word": "Kunsthandwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handicraft;artisanry", + "romanization": "Kunsthandwerk", + "example_sentence_native": "Auf dem Markt gab es viel schönes Kunsthandwerk zu sehen.", + "example_sentence_english": "There was a lot of beautiful handicraft to see at the market.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18763 + }, + { + "word": "Landgraf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "landgrave (historical title)", + "romanization": "Landgraf", + "example_sentence_native": "Der Landgraf regierte über ein großes Gebiet.", + "example_sentence_english": "The landgrave ruled over a large territory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18764 + }, + { + "word": "Landtagsabgeordneter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "member of a state parliament", + "romanization": "Landtagsabgeordneter", + "example_sentence_native": "Der Landtagsabgeordnete sprach über die neuen Gesetze.", + "example_sentence_english": "The member of the state parliament spoke about the new laws.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18765 + }, + { + "word": "Leckerei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treat;delicacy", + "romanization": "Leckerei", + "example_sentence_native": "Als Belohnung gab es eine süße Leckerei.", + "example_sentence_english": "As a reward, there was a sweet treat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18766 + }, + { + "word": "lichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to thin out;to clear (e.g.;a forest;or 'to weigh anchor')", + "romanization": "lichten", + "example_sentence_native": "Der Kapitän befahl, den Anker zu lichten.", + "example_sentence_english": "The captain ordered to weigh anchor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18767 + }, + { + "word": "Lieferwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery van", + "romanization": "Lieferwagen", + "example_sentence_native": "Der Lieferwagen brachte die Pakete pünktlich.", + "example_sentence_english": "The delivery van brought the packages on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18768 + }, + { + "word": "Lockerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loosening;relaxation;easing", + "romanization": "Lockerung", + "example_sentence_native": "Die Regierung kündigte eine Lockerung der Maßnahmen an.", + "example_sentence_english": "The government announced an easing of the measures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18769 + }, + { + "word": "Lohnsteuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income tax (on wages)", + "romanization": "Lohnsteuer", + "example_sentence_native": "Die Lohnsteuer wird direkt vom Gehalt abgezogen.", + "example_sentence_english": "The income tax is deducted directly from the salary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18770 + }, + { + "word": "Loss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lot (as in lottery);fate;destiny", + "romanization": "Loss", + "example_sentence_native": "Er zog das große Los in der Lotterie.", + "example_sentence_english": "He drew the big lot in the lottery.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 18771 + }, + { + "word": "lyrisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lyrical", + "romanization": "lyrisch", + "example_sentence_native": "Er schrieb ein lyrisches Gedicht über die Natur.", + "example_sentence_english": "He wrote a lyrical poem about nature.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18773 + }, + { + "word": "Machtübernahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "takeover of power;seizure of power", + "romanization": "Machtübernahme", + "example_sentence_native": "Die Machtübernahme erfolgte nach langen Verhandlungen.", + "example_sentence_english": "The takeover of power occurred after long negotiations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18776 + }, + { + "word": "Malz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malt", + "romanization": "Malz", + "example_sentence_native": "Bier wird aus Gerste und Malz gebraut.", + "example_sentence_english": "Beer is brewed from barley and malt.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18777 + }, + { + "word": "Mamma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breast;mammary gland", + "romanization": "Mamma", + "example_sentence_native": "Die Mamma ist ein wichtiges Organ für die Milchproduktion.", + "example_sentence_english": "The mammary gland is an important organ for milk production.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18778 + }, + { + "word": "marode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dilapidated;run-down;ailing", + "romanization": "marode", + "example_sentence_native": "Die alte Brücke war in einem maroden Zustand.", + "example_sentence_english": "The old bridge was in a dilapidated condition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18779 + }, + { + "word": "massig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massive;bulky", + "romanization": "massig", + "example_sentence_native": "Er hat eine massige Statur.", + "example_sentence_english": "He has a massive build.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18780 + }, + { + "word": "Metaphysik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphysics", + "romanization": "Metaphysik", + "example_sentence_native": "Die Metaphysik ist ein Zweig der Philosophie.", + "example_sentence_english": "Metaphysics is a branch of philosophy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18781 + }, + { + "word": "mässigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to moderate;to temper", + "romanization": "maessigen", + "example_sentence_native": "Sie sollten Ihren Alkoholkonsum mässigen.", + "example_sentence_english": "You should moderate your alcohol consumption.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18785 + }, + { + "word": "Nachwort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "afterword;epilogue", + "romanization": "Nachwort", + "example_sentence_native": "Das Nachwort fasst die Hauptpunkte zusammen.", + "example_sentence_english": "The afterword summarizes the main points.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18786 + }, + { + "word": "Nationaltrainer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national coach", + "romanization": "Nationaltrainer", + "example_sentence_native": "Der Nationaltrainer gab eine Pressekonferenz.", + "example_sentence_english": "The national coach gave a press conference.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18787 + }, + { + "word": "Natrium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sodium", + "romanization": "Natrium", + "example_sentence_native": "Natrium ist ein chemisches Element.", + "example_sentence_english": "Sodium is a chemical element.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18788 + }, + { + "word": "Olympiasiegerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female Olympic champion", + "romanization": "Olympiasiegerin", + "example_sentence_native": "Sie ist eine Olympiasiegerin im Schwimmen.", + "example_sentence_english": "She is an Olympic champion in swimming.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18793 + }, + { + "word": "Orchidee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchid", + "romanization": "Orchidee", + "example_sentence_native": "Die Orchidee ist eine schöne Blume.", + "example_sentence_english": "The orchid is a beautiful flower.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18794 + }, + { + "word": "Photographie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "photography", + "romanization": "Photographie", + "example_sentence_native": "Die Photographie ist ein faszinierendes Hobby.", + "example_sentence_english": "Photography is a fascinating hobby.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18797 + }, + { + "word": "prognostizieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prognosticate;to forecast", + "romanization": "prognostizieren", + "example_sentence_native": "Es ist schwer, das Wetter genau zu prognostizieren.", + "example_sentence_english": "It is difficult to forecast the weather accurately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18798 + }, + { + "word": "Psychose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychosis", + "romanization": "Psychose", + "example_sentence_native": "Eine Psychose kann verschiedene Ursachen haben.", + "example_sentence_english": "A psychosis can have various causes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18799 + }, + { + "word": "Radioaktivität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radioactivity", + "romanization": "Radioaktivität", + "example_sentence_native": "Die Radioaktivität des Materials wurde gemessen.", + "example_sentence_english": "The radioactivity of the material was measured.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18800 + }, + { + "word": "Rationalität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationality", + "romanization": "Rationalität", + "example_sentence_native": "Seine Rationalität half ihm, eine gute Entscheidung zu treffen.", + "example_sentence_english": "His rationality helped him make a good decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18802 + }, + { + "word": "Rauswurf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expulsion", + "romanization": "Rauswurf", + "example_sentence_native": "Der Rauswurf aus dem Club war unerwartet.", + "example_sentence_english": "The expulsion from the club was unexpected.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18804 + }, + { + "word": "realisierbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible", + "romanization": "realisierbar", + "example_sentence_native": "Ist dieser Plan wirklich realisierbar?", + "example_sentence_english": "Is this plan really feasible?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18805 + }, + { + "word": "Requiem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "requiem", + "romanization": "Requiem", + "example_sentence_native": "Das Requiem wurde in der Kirche aufgeführt.", + "example_sentence_english": "The requiem was performed in the church.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18808 + }, + { + "word": "Retrospektive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrospective", + "romanization": "Retrospektive", + "example_sentence_native": "Eine Retrospektive der Kunstwerke wurde gezeigt.", + "example_sentence_english": "A retrospective of the artworks was shown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18809 + }, + { + "word": "Riff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reef", + "romanization": "Riff", + "example_sentence_native": "Das Korallenriff ist ein wichtiger Lebensraum.", + "example_sentence_english": "The coral reef is an important habitat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18810 + }, + { + "word": "Robot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "robot", + "romanization": "Robot", + "example_sentence_native": "Der Robot erledigte die Aufgabe schnell.", + "example_sentence_english": "The robot completed the task quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18812 + }, + { + "word": "Rosengarten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rose garden", + "romanization": "Rosengarten", + "example_sentence_native": "Wir spazierten durch den Rosengarten.", + "example_sentence_english": "We walked through the rose garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18813 + }, + { + "word": "rätseln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to puzzle", + "romanization": "rätseln", + "example_sentence_native": "Sie rätselten lange über die Lösung.", + "example_sentence_english": "They puzzled over the solution for a long time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18816 + }, + { + "word": "Scheiterhaufen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pyre;stake", + "romanization": "Scheiterhaufen", + "example_sentence_native": "Der Scheiterhaufen wurde für die Verbrennung vorbereitet.", + "example_sentence_english": "The pyre was prepared for the burning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18821 + }, + { + "word": "Schieber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slider;pusher;profiteer", + "romanization": "Schieber", + "example_sentence_native": "Der Schieber am Fenster war kaputt.", + "example_sentence_english": "The slider on the window was broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18822 + }, + { + "word": "Schlappe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeat;setback", + "romanization": "Schlappe", + "example_sentence_native": "Nach der Niederlage war die Schlappe offensichtlich.", + "example_sentence_english": "After the defeat, the setback was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18823 + }, + { + "word": "Schriftart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "font;typeface", + "romanization": "Schriftart", + "example_sentence_native": "Welche Schriftart sollen wir für den Titel verwenden?", + "example_sentence_english": "Which font should we use for the title?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18824 + }, + { + "word": "Schriftzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "character;written character", + "romanization": "Schriftzeichen", + "example_sentence_native": "Jedes Schriftzeichen hat eine Bedeutung.", + "example_sentence_english": "Every character has a meaning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18825 + }, + { + "word": "schwarzweiss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "black and white", + "romanization": "schwarzweiss", + "example_sentence_native": "Ich mag alte schwarzweiss Fotos.", + "example_sentence_english": "I like old black and white photos.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18826 + }, + { + "word": "Schätzchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "darling;sweetheart;little treasure", + "romanization": "Schätzchen", + "example_sentence_native": "Komm her, mein Schätzchen.", + "example_sentence_english": "Come here, my darling.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18827 + }, + { + "word": "skizzieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sketch;to outline", + "romanization": "skizzieren", + "example_sentence_native": "Kannst du mir das kurz skizzieren?", + "example_sentence_english": "Can you briefly sketch that for me?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18832 + }, + { + "word": "Snowboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowboard", + "romanization": "Snowboard", + "example_sentence_native": "Er fährt gerne Snowboard im Winter.", + "example_sentence_english": "He likes to snowboard in winter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18833 + }, + { + "word": "Specht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "woodpecker", + "romanization": "Specht", + "example_sentence_native": "Ein Specht klopfte an den Baum.", + "example_sentence_english": "A woodpecker knocked on the tree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18834 + }, + { + "word": "Sperrmüll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulky waste;refuse", + "romanization": "Sperrmüll", + "example_sentence_native": "Wir müssen den Sperrmüll zur Abholung bereitstellen.", + "example_sentence_english": "We need to put out the bulky waste for collection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18835 + }, + { + "word": "Staatsminister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "minister of state", + "romanization": "Staatsminister", + "example_sentence_native": "Der Staatsminister hielt eine Rede.", + "example_sentence_english": "The Minister of State gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18836 + }, + { + "word": "Stadtverordnetenversammlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "city council assembly;municipal assembly", + "romanization": "Stadtverordnetenversammlung", + "example_sentence_native": "Die Stadtverordnetenversammlung tagt nächste Woche.", + "example_sentence_english": "The city council assembly meets next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18837 + }, + { + "word": "Stadtviertel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city district;quarter", + "romanization": "Stadtviertel", + "example_sentence_native": "Ich wohne in einem ruhigen Stadtviertel.", + "example_sentence_english": "I live in a quiet city district.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18838 + }, + { + "word": "Substantiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noun", + "romanization": "Substantiv", + "example_sentence_native": "Ein Substantiv ist ein Wort, das eine Person, einen Ort, eine Sache oder eine Idee benennt.", + "example_sentence_english": "A noun is a word that names a person, place, thing, or idea.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18841 + }, + { + "word": "Surfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surfer", + "romanization": "Surfer", + "example_sentence_native": "Der Surfer wartete auf die perfekte Welle.", + "example_sentence_english": "The surfer waited for the perfect wave.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18844 + }, + { + "word": "Synchronisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronization;dubbing", + "romanization": "Synchronisation", + "example_sentence_native": "Die Synchronisation des Films war sehr gut gemacht.", + "example_sentence_english": "The dubbing of the film was very well done.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18846 + }, + { + "word": "sägen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to saw", + "romanization": "sägen", + "example_sentence_native": "Er muss das Holz sägen, bevor er es verwenden kann.", + "example_sentence_english": "He has to saw the wood before he can use it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18847 + }, + { + "word": "südöstlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southeastern;southeast", + "romanization": "südöstlich", + "example_sentence_native": "Die Stadt liegt südöstlich von hier.", + "example_sentence_english": "The city is located southeast from here.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18849 + }, + { + "word": "Tageszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "time of day", + "romanization": "Tageszeit", + "example_sentence_native": "Zu jeder Tageszeit ist hier viel los.", + "example_sentence_english": "There's a lot going on here at any time of day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18850 + }, + { + "word": "Teufelskreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vicious circle", + "romanization": "Teufelskreis", + "example_sentence_native": "Sie stecken in einem Teufelskreis aus Schulden und Armut.", + "example_sentence_english": "They are stuck in a vicious circle of debt and poverty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18852 + }, + { + "word": "Tiefbau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civil engineering (sub-surface)", + "romanization": "Tiefbau", + "example_sentence_native": "Das Unternehmen ist auf Tiefbau spezialisiert.", + "example_sentence_english": "The company specializes in civil engineering.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18853 + }, + { + "word": "Tora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Torah", + "romanization": "Tora", + "example_sentence_native": "Die Tora ist ein zentraler Text des Judentums.", + "example_sentence_english": "The Torah is a central text of Judaism.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18854 + }, + { + "word": "Touchscreen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touchscreen", + "romanization": "Touchscreen", + "example_sentence_native": "Das neue Smartphone hat einen großen Touchscreen.", + "example_sentence_english": "The new smartphone has a large touchscreen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18855 + }, + { + "word": "Touristik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tourism (as an industry;field)", + "romanization": "Touristik", + "example_sentence_native": "Die Touristik ist ein wichtiger Wirtschaftszweig in dieser Region.", + "example_sentence_english": "Tourism is an important economic sector in this region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18856 + }, + { + "word": "Trubel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hustle and bustle;commotion", + "romanization": "Trubel", + "example_sentence_native": "Der Trubel in der Stadt war überwältigend.", + "example_sentence_english": "The hustle and bustle in the city was overwhelming.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18858 + }, + { + "word": "Träumer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dreamer", + "romanization": "Träumer", + "example_sentence_native": "Er ist ein Träumer, der immer neue Ideen hat.", + "example_sentence_english": "He is a dreamer who always has new ideas.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18859 + }, + { + "word": "Turbulenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbulence", + "romanization": "Turbulenz", + "example_sentence_native": "Das Flugzeug erlebte starke Turbulenz.", + "example_sentence_english": "The airplane experienced strong turbulence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18860 + }, + { + "word": "Unannehmlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inconvenience", + "romanization": "Unannehmlichkeit", + "example_sentence_native": "Entschuldigen Sie die Unannehmlichkeit.", + "example_sentence_english": "Excuse the inconvenience.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18862 + }, + { + "word": "ungenutzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unused;unutilized", + "romanization": "ungenutzt", + "example_sentence_native": "Das Potenzial bleibt ungenutzt.", + "example_sentence_english": "The potential remains unutilized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18863 + }, + { + "word": "unterkriegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get down;to defeat", + "romanization": "unterkriegen", + "example_sentence_native": "Lass dich nicht unterkriegen!", + "example_sentence_english": "Don't let yourself get down!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "unter", + "base_verb": "kriegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18864 + }, + { + "word": "untertiteln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subtitle", + "romanization": "untertiteln", + "example_sentence_native": "Der Film wurde in mehrere Sprachen untertitelt.", + "example_sentence_english": "The film was subtitled in several languages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18865 + }, + { + "word": "untätig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inactive;idle", + "romanization": "untätig", + "example_sentence_native": "Er blieb untätig, während die Situation eskalierte.", + "example_sentence_english": "He remained inactive while the situation escalated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18866 + }, + { + "word": "vereinfacht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simplified", + "romanization": "vereinfacht", + "example_sentence_native": "Die vereinfachte Version ist leichter zu verstehen.", + "example_sentence_english": "The simplified version is easier to understand.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18869 + }, + { + "word": "verheimlichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceal;to hide", + "romanization": "verheimlichen", + "example_sentence_native": "Er versuchte, die Wahrheit zu verheimlichen.", + "example_sentence_english": "He tried to conceal the truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18870 + }, + { + "word": "Verkehrsaufkommen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "traffic volume", + "romanization": "Verkehrsaufkommen", + "example_sentence_native": "Das Verkehrsaufkommen war heute Morgen sehr hoch.", + "example_sentence_english": "The traffic volume was very high this morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18871 + }, + { + "word": "Verkehrsbetrieb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transport company;traffic operation", + "romanization": "Verkehrsbetrieb", + "example_sentence_native": "Der Verkehrsbetrieb hat neue Busse angeschafft.", + "example_sentence_english": "The transport company has purchased new buses.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18872 + }, + { + "word": "Vermessung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surveying;measurement", + "romanization": "Vermessung", + "example_sentence_native": "Die Vermessung des Grundstücks ist abgeschlossen.", + "example_sentence_english": "The surveying of the property is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18873 + }, + { + "word": "Vermögenswert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asset", + "romanization": "Vermögenswert", + "example_sentence_native": "Immobilien gelten als sicherer Vermögenswert.", + "example_sentence_english": "Real estate is considered a safe asset.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18874 + }, + { + "word": "vernetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to network;to interconnect", + "romanization": "vernetzen", + "example_sentence_native": "Die Computer sind miteinander vernetzt.", + "example_sentence_english": "The computers are networked with each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18875 + }, + { + "word": "vertun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to waste (time);to make a mistake (sich vertun)", + "romanization": "vertun", + "example_sentence_native": "Er hat sich in der Rechnung vertan.", + "example_sentence_english": "He made a mistake in the calculation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18876 + }, + { + "word": "verwendbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "usable;applicable", + "romanization": "verwendbar", + "example_sentence_native": "Diese Software ist für viele Zwecke verwendbar.", + "example_sentence_english": "This software is usable for many purposes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18877 + }, + { + "word": "veräussern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sell;to dispose of", + "romanization": "veräussern", + "example_sentence_native": "Das Unternehmen plant, einige seiner Vermögenswerte zu veräussern.", + "example_sentence_english": "The company plans to sell some of its assets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18878 + }, + { + "word": "Veräusserung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sale;disposal", + "romanization": "Veräusserung", + "example_sentence_native": "Die Veräusserung der Immobilie brachte einen hohen Gewinn.", + "example_sentence_english": "The sale of the property brought a high profit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18879 + }, + { + "word": "Vokabular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vocabulary", + "romanization": "Vokabular", + "example_sentence_native": "Das Vokabular dieses Buches ist sehr umfangreich.", + "example_sentence_english": "The vocabulary of this book is very extensive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18880 + }, + { + "word": "vorausgehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to precede;to go ahead", + "romanization": "vorausgehen", + "example_sentence_native": "Der Hund muss dem Herrchen vorausgehen.", + "example_sentence_english": "The dog must precede its owner.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "voraus", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18881 + }, + { + "word": "vorbestraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with a criminal record;previously convicted", + "romanization": "vorbestraft", + "example_sentence_native": "Er ist wegen Diebstahls vorbestraft.", + "example_sentence_english": "He has a criminal record for theft.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18882 + }, + { + "word": "voreilig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "premature;hasty", + "romanization": "voreilig", + "example_sentence_native": "Treffen Sie keine voreiligen Entscheidungen.", + "example_sentence_english": "Don't make hasty decisions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18883 + }, + { + "word": "vorgenannt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aforementioned;foregoing", + "romanization": "vorgenannt", + "example_sentence_native": "Die vorgenannten Punkte sind wichtig.", + "example_sentence_english": "The aforementioned points are important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18884 + }, + { + "word": "wahrhaben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to admit;to accept as true", + "romanization": "wahrhaben", + "example_sentence_native": "Er wollte die Wahrheit nicht wahrhaben.", + "example_sentence_english": "He didn't want to admit the truth.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "wahr", + "base_verb": "haben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18886 + }, + { + "word": "Warteliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waiting list", + "romanization": "Warteliste", + "example_sentence_native": "Wir stehen auf der Warteliste für die Wohnung.", + "example_sentence_english": "We are on the waiting list for the apartment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18888 + }, + { + "word": "Wassermann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Aquarius (zodiac sign);merman", + "romanization": "Wassermann", + "example_sentence_native": "Mein Sternzeichen ist Wassermann.", + "example_sentence_english": "My zodiac sign is Aquarius.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18889 + }, + { + "word": "Wegbereiter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pioneer;trailblazer", + "romanization": "Wegbereiter", + "example_sentence_native": "Er war ein Wegbereiter der modernen Technologie.", + "example_sentence_english": "He was a pioneer of modern technology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18891 + }, + { + "word": "weilen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stay;to linger", + "romanization": "weilen", + "example_sentence_native": "Er weilt noch in der Stadt.", + "example_sentence_english": "He is still staying in the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18893 + }, + { + "word": "Wettstreit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition;contest", + "romanization": "Wettstreit", + "example_sentence_native": "Der Wettstreit um die besten Plätze war hart.", + "example_sentence_english": "The competition for the best places was tough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18895 + }, + { + "word": "wiederbeleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revive;to resuscitate", + "romanization": "wiederbeleben", + "example_sentence_native": "Man versuchte, den Patienten wiederzubeleben.", + "example_sentence_english": "They tried to resuscitate the patient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18896 + }, + { + "word": "Wildschwein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild boar", + "romanization": "Wildschwein", + "example_sentence_native": "Ein Wildschwein lief durch den Wald.", + "example_sentence_english": "A wild boar ran through the forest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18897 + }, + { + "word": "Wohnungstür", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apartment door", + "romanization": "Wohnungstür", + "example_sentence_native": "Sie klopfte an die Wohnungstür.", + "example_sentence_english": "She knocked on the apartment door.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18898 + }, + { + "word": "zielführend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effective;goal-oriented", + "romanization": "zielführend", + "example_sentence_native": "Wir brauchen eine zielführende Strategie.", + "example_sentence_english": "We need an effective strategy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18899 + }, + { + "word": "Zuchthaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penitentiary", + "romanization": "Zuchthaus", + "example_sentence_native": "Er wurde zu fünf Jahren im Zuchthaus verurteilt.", + "example_sentence_english": "He was sentenced to five years in the penitentiary.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18900 + }, + { + "word": "zweifach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twofold", + "romanization": "zweifach", + "example_sentence_native": "Die Aufgabe hat eine zweifache Bedeutung.", + "example_sentence_english": "The task has a twofold meaning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18901 + }, + { + "word": "Abgas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhaust gas", + "romanization": "Abgas", + "example_sentence_native": "Die Abgase von Autos verschmutzen die Luft.", + "example_sentence_english": "Car exhaust fumes pollute the air.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18903 + }, + { + "word": "abarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work off", + "romanization": "abarbeiten", + "example_sentence_native": "Er muss noch eine lange Liste abarbeiten.", + "example_sentence_english": "He still has a long list to work off.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18904 + }, + { + "word": "Abschreibung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depreciation", + "romanization": "Abschreibung", + "example_sentence_native": "Die Abschreibung des Vermögenswerts ist wichtig für die Bilanz.", + "example_sentence_english": "The depreciation of the asset is important for the balance sheet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18905 + }, + { + "word": "ahnungslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clueless", + "romanization": "ahnungslos", + "example_sentence_native": "Er war ahnungslos über die wahren Umstände.", + "example_sentence_english": "He was clueless about the true circumstances.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18907 + }, + { + "word": "Andrang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowd", + "romanization": "Andrang", + "example_sentence_native": "Es gab einen großen Andrang vor dem Konzert.", + "example_sentence_english": "There was a large crowd before the concert.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18911 + }, + { + "word": "aneignen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquire", + "romanization": "aneignen", + "example_sentence_native": "Er konnte sich schnell neue Kenntnisse aneignen.", + "example_sentence_english": "He was able to quickly acquire new knowledge.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "eignen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18912 + }, + { + "word": "Anfechtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "challenge", + "romanization": "Anfechtung", + "example_sentence_native": "Die Anfechtung des Vertrages war erfolgreich.", + "example_sentence_english": "The challenge to the contract was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18913 + }, + { + "word": "angeordnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arranged", + "romanization": "angeordnet", + "example_sentence_native": "Die Bücher waren alphabetisch angeordnet.", + "example_sentence_english": "The books were arranged alphabetically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18915 + }, + { + "word": "Angleichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alignment", + "romanization": "Angleichung", + "example_sentence_native": "Die Angleichung der Gesetze ist notwendig.", + "example_sentence_english": "The alignment of the laws is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18916 + }, + { + "word": "Arrest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrest", + "romanization": "Arrest", + "example_sentence_native": "Er wurde unter Arrest gestellt.", + "example_sentence_english": "He was placed under arrest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18918 + }, + { + "word": "Aufgabenstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "task description", + "romanization": "Aufgabenstellung", + "example_sentence_native": "Die Aufgabenstellung war klar und präzise formuliert.", + "example_sentence_english": "The task description was clearly and precisely formulated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18921 + }, + { + "word": "aufgeflogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exposed", + "romanization": "aufgeflogen", + "example_sentence_native": "Der Plan ist aufgeflogen.", + "example_sentence_english": "The plan has been exposed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18922 + }, + { + "word": "aufgewertet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upgraded", + "romanization": "aufgewertet", + "example_sentence_native": "Die Immobilie wurde durch die Renovierung aufgewertet.", + "example_sentence_english": "The property was upgraded by the renovation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18923 + }, + { + "word": "auflaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run aground", + "romanization": "auflaufen", + "example_sentence_native": "Das Schiff könnte bei Ebbe auflaufen.", + "example_sentence_english": "The ship could run aground at low tide.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18924 + }, + { + "word": "aufspüren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "track down", + "romanization": "aufspüren", + "example_sentence_native": "Die Polizei konnte den Täter aufspüren.", + "example_sentence_english": "The police were able to track down the perpetrator.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "spüren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18926 + }, + { + "word": "aufstocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase", + "romanization": "aufstocken", + "example_sentence_native": "Wir müssen das Personal aufstocken.", + "example_sentence_english": "We need to increase the staff.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "stocken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18927 + }, + { + "word": "Aufwuchs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growth", + "romanization": "Aufwuchs", + "example_sentence_native": "Der Aufwuchs an neuen Bäumen war beeindruckend.", + "example_sentence_english": "The growth of new trees was impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18928 + }, + { + "word": "Ausflugsziel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excursion destination", + "romanization": "Ausflugsziel", + "example_sentence_native": "Der See ist ein beliebtes Ausflugsziel.", + "example_sentence_english": "The lake is a popular excursion destination.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18930 + }, + { + "word": "ausgebrannt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burnt out", + "romanization": "ausgebrannt", + "example_sentence_native": "Er fühlte sich nach der langen Arbeitsphase völlig ausgebrannt.", + "example_sentence_english": "He felt completely burnt out after the long work phase.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18931 + }, + { + "word": "aussehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "looking", + "romanization": "aussehend", + "example_sentence_native": "Sie ist eine gut aussehende Frau.", + "example_sentence_english": "She is a good-looking woman.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18932 + }, + { + "word": "Aussenhandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreign trade", + "romanization": "Aussenhandel", + "example_sentence_native": "Der Aussenhandel ist wichtig für die Wirtschaft.", + "example_sentence_english": "Foreign trade is important for the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18933 + }, + { + "word": "Bauernhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farmhouse", + "romanization": "Bauernhaus", + "example_sentence_native": "Sie wohnen in einem alten Bauernhaus auf dem Land.", + "example_sentence_english": "They live in an old farmhouse in the countryside.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18936 + }, + { + "word": "Baugenehmigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building permit", + "romanization": "Baugenehmigung", + "example_sentence_native": "Für den Anbau benötigen wir eine Baugenehmigung.", + "example_sentence_english": "We need a building permit for the extension.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18937 + }, + { + "word": "Bauunternehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction company", + "romanization": "Bauunternehmen", + "example_sentence_native": "Ein großes Bauunternehmen hat den Auftrag erhalten.", + "example_sentence_english": "A large construction company received the contract.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18938 + }, + { + "word": "Bauunternehmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building contractor", + "romanization": "Bauunternehmer", + "example_sentence_native": "Der Bauunternehmer ist für das gesamte Projekt verantwortlich.", + "example_sentence_english": "The building contractor is responsible for the entire project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18939 + }, + { + "word": "begleitend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accompanying", + "romanization": "begleitend", + "example_sentence_native": "Die begleitenden Dokumente sind wichtig.", + "example_sentence_english": "The accompanying documents are important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18940 + }, + { + "word": "beharren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persist;to insist", + "romanization": "beharren", + "example_sentence_native": "Er beharrt auf seiner Meinung.", + "example_sentence_english": "He insists on his opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18941 + }, + { + "word": "beiläufig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casual;incidental", + "romanization": "beiläufig", + "example_sentence_native": "Er erwähnte es nur beiläufig.", + "example_sentence_english": "He only mentioned it casually.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18942 + }, + { + "word": "Bekanntheitsgrad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "degree of familiarity;recognition", + "romanization": "Bekanntheitsgrad", + "example_sentence_native": "Der Bekanntheitsgrad des Produkts ist gestiegen.", + "example_sentence_english": "The product's recognition has increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18943 + }, + { + "word": "Belegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupancy;assignment", + "romanization": "Belegung", + "example_sentence_native": "Die Belegung des Hotels ist hoch.", + "example_sentence_english": "The hotel's occupancy is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18944 + }, + { + "word": "Bestie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beast", + "romanization": "Bestie", + "example_sentence_native": "Die Bestie brüllte laut.", + "example_sentence_english": "The beast roared loudly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18946 + }, + { + "word": "Biochemie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biochemistry", + "romanization": "Biochemie", + "example_sentence_native": "Sie studiert Biochemie an der Universität.", + "example_sentence_english": "She studies biochemistry at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18947 + }, + { + "word": "Birke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birch (tree)", + "romanization": "Birke", + "example_sentence_native": "Eine Birke steht im Garten.", + "example_sentence_english": "A birch stands in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18948 + }, + { + "word": "bloggen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blog", + "romanization": "bloggen", + "example_sentence_native": "Sie bloggt regelmäßig über ihre Reisen.", + "example_sentence_english": "She regularly blogs about her travels.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18950 + }, + { + "word": "Bonität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creditworthiness;solvency", + "romanization": "Bonität", + "example_sentence_native": "Die Bank prüft die Bonität des Kunden.", + "example_sentence_english": "The bank checks the customer's creditworthiness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18952 + }, + { + "word": "Bundesverwaltungsgericht", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Federal Administrative Court", + "romanization": "Bundesverwaltungsgericht", + "example_sentence_native": "Das Bundesverwaltungsgericht hat die Klage abgewiesen.", + "example_sentence_english": "The Federal Administrative Court dismissed the lawsuit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18956 + }, + { + "word": "Bunny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bunny", + "romanization": "Bunny", + "example_sentence_native": "Das kleine Bunny hoppelte über die Wiese.", + "example_sentence_english": "The little bunny hopped across the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18957 + }, + { + "word": "Bürgertum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bourgeoisie;middle class", + "romanization": "Bürgertum", + "example_sentence_native": "Das Bürgertum spielte eine wichtige Rolle in der Geschichte.", + "example_sentence_english": "The bourgeoisie played an important role in history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18959 + }, + { + "word": "Bürste", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brush", + "romanization": "Bürste", + "example_sentence_native": "Ich brauche eine Bürste für meine Haare.", + "example_sentence_english": "I need a brush for my hair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18960 + }, + { + "word": "chancenlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hopeless;without a chance", + "romanization": "chancenlos", + "example_sentence_native": "Das Team war chancenlos gegen den stärkeren Gegner.", + "example_sentence_english": "The team was hopeless against the stronger opponent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18962 + }, + { + "word": "Charge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "batch;charge", + "romanization": "Charge", + "example_sentence_native": "Diese Charge Medikamente wurde zurückgerufen.", + "example_sentence_english": "This batch of medication was recalled.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18964 + }, + { + "word": "Christin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christian (female)", + "romanization": "Christin", + "example_sentence_native": "Sie ist eine gläubige Christin.", + "example_sentence_english": "She is a devout Christian.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18966 + }, + { + "word": "Construction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction", + "romanization": "Construction", + "example_sentence_native": "Die Construction des neuen Gebäudes dauert noch an.", + "example_sentence_english": "The construction of the new building is still ongoing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18968 + }, + { + "word": "Dash", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dash (e.g.;quick run)", + "romanization": "Dash", + "example_sentence_native": "Er machte einen schnellen Dash zum Ziel.", + "example_sentence_english": "He made a quick dash to the finish line.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18972 + }, + { + "word": "demonstrativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstrative;ostentatious", + "romanization": "demonstrativ", + "example_sentence_native": "Er zeigte seine Freude sehr demonstrativ.", + "example_sentence_english": "He showed his joy very demonstratively.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18974 + }, + { + "word": "Derivat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derivative", + "romanization": "Derivat", + "example_sentence_native": "Ein Derivat ist ein Finanzinstrument.", + "example_sentence_english": "A derivative is a financial instrument.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18975 + }, + { + "word": "dezentral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decentralized", + "romanization": "dezentral", + "example_sentence_native": "Wir arbeiten in einer dezentralen Struktur.", + "example_sentence_english": "We work in a decentralized structure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18977 + }, + { + "word": "diktieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dictate", + "romanization": "diktieren", + "example_sentence_native": "Der Chef diktiert einen Brief.", + "example_sentence_english": "The boss dictates a letter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18979 + }, + { + "word": "Doktrin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctrine", + "romanization": "Doktrin", + "example_sentence_native": "Die neue Doktrin wurde von der Partei verabschiedet.", + "example_sentence_english": "The new doctrine was adopted by the party.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18981 + }, + { + "word": "dominierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominant", + "romanization": "dominierend", + "example_sentence_native": "Er hat eine dominierende Persönlichkeit.", + "example_sentence_english": "He has a dominant personality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18982 + }, + { + "word": "Dozentin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female lecturer", + "romanization": "Dozentin", + "example_sentence_native": "Die Dozentin erklärte die Aufgabe.", + "example_sentence_english": "The female lecturer explained the task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18984 + }, + { + "word": "durchqueren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cross", + "romanization": "durchqueren", + "example_sentence_native": "Sie mussten den Wald durchqueren.", + "example_sentence_english": "They had to cross the forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18985 + }, + { + "word": "dürftig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meager", + "romanization": "dürftig", + "example_sentence_native": "Die Beweise waren dürftig.", + "example_sentence_english": "The evidence was meager.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18986 + }, + { + "word": "Eigeninitiative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiative", + "romanization": "Eigeninitiative", + "example_sentence_native": "Er zeigte viel Eigeninitiative bei dem Projekt.", + "example_sentence_english": "He showed a lot of initiative in the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18988 + }, + { + "word": "Einberufung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conscription", + "romanization": "Einberufung", + "example_sentence_native": "Die Einberufung zum Militärdienst wurde verschickt.", + "example_sentence_english": "The conscription notice for military service was sent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18989 + }, + { + "word": "Einreichung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submission", + "romanization": "Einreichung", + "example_sentence_native": "Die Frist für die Einreichung der Dokumente ist morgen.", + "example_sentence_english": "The deadline for the submission of the documents is tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18990 + }, + { + "word": "Einschulung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school enrollment", + "romanization": "Einschulung", + "example_sentence_native": "Die Einschulung der Kinder findet im August statt.", + "example_sentence_english": "The children's school enrollment takes place in August.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18991 + }, + { + "word": "Einsetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "installation", + "romanization": "Einsetzung", + "example_sentence_native": "Die Einsetzung des neuen Direktors erfolgte letzte Woche.", + "example_sentence_english": "The installation of the new director took place last week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18992 + }, + { + "word": "Entsprechung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalent", + "romanization": "Entsprechung", + "example_sentence_native": "Es gibt keine direkte Entsprechung in dieser Sprache.", + "example_sentence_english": "There is no direct equivalent in this language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18994 + }, + { + "word": "Enzym", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enzyme", + "romanization": "Enzym", + "example_sentence_native": "Enzyme spielen eine wichtige Rolle im Stoffwechsel.", + "example_sentence_english": "Enzymes play an important role in metabolism.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18995 + }, + { + "word": "Epilepsie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epilepsy", + "romanization": "Epilepsie", + "example_sentence_native": "Epilepsie ist eine neurologische Erkrankung.", + "example_sentence_english": "Epilepsy is a neurological disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 18996 + }, + { + "word": "erbitten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to request", + "romanization": "erbitten", + "example_sentence_native": "Wir erbitten Ihre Mithilfe.", + "example_sentence_english": "We request your assistance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 18997 + }, + { + "word": "erkältet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a cold", + "romanization": "erkältet", + "example_sentence_native": "Ich bin erkältet und muss zu Hause bleiben.", + "example_sentence_english": "I have a cold and have to stay home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 18999 + }, + { + "word": "erleuchten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illuminate", + "romanization": "erleuchten", + "example_sentence_native": "Die Kerzen erleuchten den Raum.", + "example_sentence_english": "The candles illuminate the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19000 + }, + { + "word": "Erprobung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "testing;trial", + "romanization": "Erprobung", + "example_sentence_native": "Das neue System befindet sich in der Erprobung.", + "example_sentence_english": "The new system is currently undergoing testing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19001 + }, + { + "word": "fallend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "falling", + "romanization": "fallend", + "example_sentence_native": "Wir sahen einen fallenden Stern.", + "example_sentence_english": "We saw a falling star.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19003 + }, + { + "word": "Fanclub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan club", + "romanization": "Fanclub", + "example_sentence_native": "Sie ist Mitglied in einem Fanclub.", + "example_sentence_english": "She is a member of a fan club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19004 + }, + { + "word": "Finalist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finalist", + "romanization": "Finalist", + "example_sentence_native": "Er ist ein Finalist im Wettbewerb.", + "example_sentence_english": "He is a finalist in the competition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19009 + }, + { + "word": "Finish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finish (end of a race)", + "romanization": "Finish", + "example_sentence_native": "Das Finish des Rennens war sehr spannend.", + "example_sentence_english": "The finish of the race was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19010 + }, + { + "word": "fortfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continue;proceed", + "romanization": "fortfahren", + "example_sentence_native": "Wir müssen mit der Arbeit fortfahren.", + "example_sentence_english": "We must continue with the work.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fort", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19011 + }, + { + "word": "Fotoshooting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photoshoot", + "romanization": "Fotoshooting", + "example_sentence_native": "Sie hatte ein Fotoshooting für ein Magazin.", + "example_sentence_english": "She had a photoshoot for a magazine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19012 + }, + { + "word": "freilegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expose;uncover", + "romanization": "freilegen", + "example_sentence_native": "Die Archäologen konnten alte Ruinen freilegen.", + "example_sentence_english": "The archaeologists were able to uncover ancient ruins.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "frei", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19015 + }, + { + "word": "Fuhrmann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carter;waggoner", + "romanization": "Fuhrmann", + "example_sentence_native": "Der Fuhrmann brachte die Waren zum Markt.", + "example_sentence_english": "The carter brought the goods to the market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19017 + }, + { + "word": "Gebrauchtwagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "used car", + "romanization": "Gebrauchtwagen", + "example_sentence_native": "Er hat einen Gebrauchtwagen gekauft.", + "example_sentence_english": "He bought a used car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19018 + }, + { + "word": "gebührend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate;due;proper", + "romanization": "gebührend", + "example_sentence_native": "Er wurde gebührend empfangen.", + "example_sentence_english": "He was received appropriately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19019 + }, + { + "word": "dämpfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dampen;to steam;to muffle", + "romanization": "dämpfen", + "example_sentence_native": "Sie dämpft das Gemüse für das Abendessen.", + "example_sentence_english": "She steams the vegetables for dinner.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19020 + }, + { + "word": "Gegenverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oncoming traffic", + "romanization": "Gegenverkehr", + "example_sentence_native": "Auf dieser engen Straße gibt es viel Gegenverkehr.", + "example_sentence_english": "There is a lot of oncoming traffic on this narrow road.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19021 + }, + { + "word": "gekommen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "come;arrived", + "romanization": "gekommen", + "example_sentence_native": "Er ist gerade nach Hause gekommen.", + "example_sentence_english": "He has just come home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19022 + }, + { + "word": "genesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recover;to convalesce", + "romanization": "genesen", + "example_sentence_native": "Nach der Operation muss er sich gut genesen.", + "example_sentence_english": "After the operation, he needs to recover well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19023 + }, + { + "word": "Geschichtsunterricht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "history class;lesson", + "romanization": "Geschichtsunterricht", + "example_sentence_native": "Der Geschichtsunterricht war heute sehr interessant.", + "example_sentence_english": "The history class was very interesting today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19025 + }, + { + "word": "Gesundheitsversorgung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healthcare;health care provision", + "romanization": "Gesundheitsversorgung", + "example_sentence_native": "Die Gesundheitsversorgung in Deutschland ist umfassend.", + "example_sentence_english": "Healthcare in Germany is comprehensive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19026 + }, + { + "word": "Giebel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gable", + "romanization": "Giebel", + "example_sentence_native": "Das alte Haus hatte einen steilen Giebel.", + "example_sentence_english": "The old house had a steep gable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19027 + }, + { + "word": "Gospel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gospel (music)", + "romanization": "Gospel", + "example_sentence_native": "Sie singt in einem Gospelchor.", + "example_sentence_english": "She sings in a gospel choir.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19029 + }, + { + "word": "Graphik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graphic;graph", + "romanization": "Graphik", + "example_sentence_native": "Die Graphik des Buches ist sehr ansprechend.", + "example_sentence_english": "The graphic design of the book is very appealing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19031 + }, + { + "word": "Groove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groove", + "romanization": "Groove", + "example_sentence_native": "Der Schlagzeuger gab dem Lied einen tollen Groove.", + "example_sentence_english": "The drummer gave the song a great groove.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19032 + }, + { + "word": "Grundhaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "basic attitude;fundamental stance", + "romanization": "Grundhaltung", + "example_sentence_native": "Eine positive Grundhaltung ist entscheidend für den Erfolg.", + "example_sentence_english": "A positive basic attitude is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19033 + }, + { + "word": "Guerilla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guerrilla", + "romanization": "Guerilla", + "example_sentence_native": "Die Guerilla kämpfte für die Freiheit ihres Landes.", + "example_sentence_english": "The guerrilla fought for the freedom of their country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19034 + }, + { + "word": "Gästezimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guest room", + "romanization": "Gästezimmer", + "example_sentence_native": "Wir haben ein gemütliches Gästezimmer für unsere Freunde.", + "example_sentence_english": "We have a cozy guest room for our friends.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19036 + }, + { + "word": "haarig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairy", + "romanization": "haarig", + "example_sentence_native": "Die Katze hat ein sehr haariges Fell.", + "example_sentence_english": "The cat has very hairy fur.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19037 + }, + { + "word": "Heimatmuseum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local history museum", + "romanization": "Heimatmuseum", + "example_sentence_native": "Wir besuchten das Heimatmuseum, um mehr über die Geschichte der Stadt zu erfahren.", + "example_sentence_english": "We visited the local history museum to learn more about the city's history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19040 + }, + { + "word": "Herberge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostel;inn", + "romanization": "Herberge", + "example_sentence_native": "Wir übernachteten in einer gemütlichen Herberge am Stadtrand.", + "example_sentence_english": "We stayed overnight in a cozy hostel on the outskirts of the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19042 + }, + { + "word": "Höchststand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record high;peak", + "romanization": "Höchststand", + "example_sentence_native": "Der Aktienkurs erreichte einen neuen Höchststand.", + "example_sentence_english": "The stock price reached a new record high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19046 + }, + { + "word": "Immobilienmarkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate market", + "romanization": "Immobilienmarkt", + "example_sentence_native": "Der Immobilienmarkt ist derzeit sehr dynamisch.", + "example_sentence_english": "The real estate market is currently very dynamic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19047 + }, + { + "word": "infrarot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infrared", + "romanization": "infrarot", + "example_sentence_native": "Die Kamera verwendet infrarote Technologie.", + "example_sentence_english": "The camera uses infrared technology.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19048 + }, + { + "word": "instand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in good repair;functional", + "romanization": "instand", + "example_sentence_native": "Das alte Haus muss instand gesetzt werden.", + "example_sentence_english": "The old house needs to be repaired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19049 + }, + { + "word": "irrtümlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erroneous;mistakenly", + "romanization": "irrtümlich", + "example_sentence_native": "Er hat irrtümlich die falsche Tür geöffnet.", + "example_sentence_english": "He mistakenly opened the wrong door.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19050 + }, + { + "word": "Jahreszahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "year (number);date", + "romanization": "Jahreszahl", + "example_sentence_native": "Bitte geben Sie die Jahreszahl ein.", + "example_sentence_english": "Please enter the year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19052 + }, + { + "word": "Kamel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camel", + "romanization": "Kamel", + "example_sentence_native": "Ein Kamel kann lange ohne Wasser auskommen.", + "example_sentence_english": "A camel can go a long time without water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19055 + }, + { + "word": "kampflos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without a fight;unopposed", + "romanization": "kampflos", + "example_sentence_native": "Die Mannschaft gab das Spiel kampflos auf.", + "example_sentence_english": "The team gave up the game without a fight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19056 + }, + { + "word": "Kinderarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "child labor", + "romanization": "Kinderarbeit", + "example_sentence_native": "Kinderarbeit ist in vielen Ländern verboten.", + "example_sentence_english": "Child labor is forbidden in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19057 + }, + { + "word": "klingend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ringing;sounding", + "romanization": "klingend", + "example_sentence_native": "Sie hatte eine klare, klingende Stimme.", + "example_sentence_english": "She had a clear, ringing voice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19058 + }, + { + "word": "Kolonialismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonialism", + "romanization": "Kolonialismus", + "example_sentence_native": "Der Kolonialismus hatte weitreichende Folgen für die Welt.", + "example_sentence_english": "Colonialism had far-reaching consequences for the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19059 + }, + { + "word": "Kommissarin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commissioner (female)", + "romanization": "Kommissarin", + "example_sentence_native": "Die Kommissarin ermittelt in dem Fall.", + "example_sentence_english": "The commissioner is investigating the case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19060 + }, + { + "word": "Kopplung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coupling;linkage", + "romanization": "Kopplung", + "example_sentence_native": "Die Kopplung der Systeme ist entscheidend.", + "example_sentence_english": "The coupling of the systems is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19061 + }, + { + "word": "Kultusminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minister of education;cultural affairs", + "romanization": "Kultusminister", + "example_sentence_native": "Der Kultusminister hat eine neue Bildungsreform angekündigt.", + "example_sentence_english": "The Minister of Education announced a new education reform.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19064 + }, + { + "word": "langwierig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lengthy;protracted", + "romanization": "langwierig", + "example_sentence_native": "Der Prozess war sehr langwierig.", + "example_sentence_english": "The process was very lengthy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19065 + }, + { + "word": "Laudatio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eulogy;laudation", + "romanization": "Laudatio", + "example_sentence_native": "Er hielt eine bewegende Laudatio auf den Preisträger.", + "example_sentence_english": "He gave a moving eulogy for the award winner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19066 + }, + { + "word": "Lawine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avalanche", + "romanization": "Lawine", + "example_sentence_native": "Eine Lawine ging im Gebirge ab.", + "example_sentence_english": "An avalanche came down in the mountains.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19067 + }, + { + "word": "Lazarett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military hospital;infirmary", + "romanization": "Lazarett", + "example_sentence_native": "Die Verwundeten wurden ins Lazarett gebracht.", + "example_sentence_english": "The wounded were brought to the military hospital.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19068 + }, + { + "word": "Leak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leak (of information)", + "romanization": "Leak", + "example_sentence_native": "Es gab ein Leak von vertraulichen Dokumenten.", + "example_sentence_english": "There was a leak of confidential documents.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19069 + }, + { + "word": "Lebenserfahrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life experience", + "romanization": "Lebenserfahrung", + "example_sentence_native": "Seine Lebenserfahrung half ihm in schwierigen Situationen.", + "example_sentence_english": "His life experience helped him in difficult situations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19070 + }, + { + "word": "Leerzeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "space (character)", + "romanization": "Leerzeichen", + "example_sentence_native": "Bitte fügen Sie ein Leerzeichen zwischen den Wörtern ein.", + "example_sentence_english": "Please insert a space between the words.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19071 + }, + { + "word": "Lösegeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ransom", + "romanization": "Lösegeld", + "example_sentence_native": "Die Entführer forderten ein hohes Lösegeld.", + "example_sentence_english": "The kidnappers demanded a high ransom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19075 + }, + { + "word": "massgebend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authoritative;decisive;crucial", + "romanization": "massgebend", + "example_sentence_native": "Seine Meinung ist in dieser Angelegenheit massgebend.", + "example_sentence_english": "His opinion is decisive in this matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19079 + }, + { + "word": "methodisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodical", + "romanization": "methodisch", + "example_sentence_native": "Er geht immer sehr methodisch vor.", + "example_sentence_english": "He always proceeds very methodically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19081 + }, + { + "word": "Mett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minced pork (raw)", + "romanization": "Mett", + "example_sentence_native": "Zum Frühstück gab es frisches Mettbrötchen.", + "example_sentence_english": "For breakfast, there was a fresh minced pork roll.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19082 + }, + { + "word": "Meute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pack (of hounds);mob", + "romanization": "Meute", + "example_sentence_native": "Die Meute jagte das Wild durch den Wald.", + "example_sentence_english": "The pack hunted the game through the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19083 + }, + { + "word": "Musikerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female musician", + "romanization": "Musikerin", + "example_sentence_native": "Meine Schwester ist eine talentierte Musikerin.", + "example_sentence_english": "My sister is a talented female musician.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19086 + }, + { + "word": "Mystik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysticism", + "romanization": "Mystik", + "example_sentence_native": "Er interessierte sich für die alte Mystik des Ostens.", + "example_sentence_english": "He was interested in the ancient mysticism of the East.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19087 + }, + { + "word": "nachstehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following;below", + "romanization": "nachstehend", + "example_sentence_native": "Bitte beachten Sie die nachstehenden Anweisungen.", + "example_sentence_english": "Please note the following instructions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19088 + }, + { + "word": "Nationalbank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national bank", + "romanization": "Nationalbank", + "example_sentence_native": "Die Nationalbank hat neue Richtlinien erlassen.", + "example_sentence_english": "The national bank has issued new guidelines.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19089 + }, + { + "word": "Nährboden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "culture medium;breeding ground", + "romanization": "Nährboden", + "example_sentence_native": "Der Nährboden ist ideal für das Wachstum der Bakterien.", + "example_sentence_english": "The culture medium is ideal for the growth of the bacteria.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19094 + }, + { + "word": "obsolet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsolete", + "romanization": "obsolet", + "example_sentence_native": "Diese Technologie ist inzwischen obsolet.", + "example_sentence_english": "This technology is now obsolete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19095 + }, + { + "word": "Opernhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opera house", + "romanization": "Opernhaus", + "example_sentence_native": "Wir besuchten das Opernhaus in Wien.", + "example_sentence_english": "We visited the opera house in Vienna.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19098 + }, + { + "word": "Organist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organist", + "romanization": "Organist", + "example_sentence_native": "Der Organist spielte ein beeindruckendes Stück.", + "example_sentence_english": "The organist played an impressive piece.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19099 + }, + { + "word": "Pacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lease;tenancy", + "romanization": "Pacht", + "example_sentence_native": "Der Landwirt hat die Pacht für das Feld bezahlt.", + "example_sentence_english": "The farmer paid the lease for the field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19100 + }, + { + "word": "Palazzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palace;palazzo", + "romanization": "Palazzo", + "example_sentence_native": "Der alte Palazzo in Venedig ist wunderschön.", + "example_sentence_english": "The old palazzo in Venice is beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19101 + }, + { + "word": "Parteiführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party leadership", + "romanization": "Parteiführung", + "example_sentence_native": "Die Parteiführung traf eine wichtige Entscheidung.", + "example_sentence_english": "The party leadership made an important decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19102 + }, + { + "word": "patriotisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotic", + "romanization": "patriotisch", + "example_sentence_native": "Er hat eine sehr patriotische Einstellung.", + "example_sentence_english": "He has a very patriotic attitude.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19103 + }, + { + "word": "Pensionierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retirement", + "romanization": "Pensionierung", + "example_sentence_native": "Seine Pensionierung ist für nächstes Jahr geplant.", + "example_sentence_english": "His retirement is planned for next year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19104 + }, + { + "word": "Pestizid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pesticide", + "romanization": "Pestizid", + "example_sentence_native": "Der Einsatz von Pestiziden wird oft diskutiert.", + "example_sentence_english": "The use of pesticides is often discussed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19105 + }, + { + "word": "Pflegeversicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long-term care insurance", + "romanization": "Pflegeversicherung", + "example_sentence_native": "In Deutschland ist die Pflegeversicherung obligatorisch.", + "example_sentence_english": "In Germany, long-term care insurance is obligatory.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19107 + }, + { + "word": "Pharmaindustrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pharmaceutical industry", + "romanization": "Pharmaindustrie", + "example_sentence_native": "Die Pharmaindustrie entwickelt neue Medikamente.", + "example_sentence_english": "The pharmaceutical industry develops new medicines.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19108 + }, + { + "word": "Plastiktüte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plastic bag", + "romanization": "Plastiktüte", + "example_sentence_native": "Bitte keine Plastiktüte, ich habe eine Stofftasche dabei.", + "example_sentence_english": "No plastic bag, please, I have a cloth bag with me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19110 + }, + { + "word": "polieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to polish", + "romanization": "polieren", + "example_sentence_native": "Er muss seine Schuhe polieren.", + "example_sentence_english": "He needs to polish his shoes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19111 + }, + { + "word": "Polizeipräsidium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police headquarters", + "romanization": "Polizeipräsidium", + "example_sentence_native": "Das Polizeipräsidium befindet sich im Stadtzentrum.", + "example_sentence_english": "The police headquarters is located in the city center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19112 + }, + { + "word": "Pore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pore", + "romanization": "Pore", + "example_sentence_native": "Die Haut hat viele kleine Poren.", + "example_sentence_english": "The skin has many small pores.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19114 + }, + { + "word": "Posaune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trombone", + "romanization": "Posaune", + "example_sentence_native": "Er spielt die Posaune in einem Orchester.", + "example_sentence_english": "He plays the trombone in an orchestra.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19115 + }, + { + "word": "Programmiersprache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "programming language", + "romanization": "Programmiersprache", + "example_sentence_native": "Python ist eine beliebte Programmiersprache.", + "example_sentence_english": "Python is a popular programming language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19117 + }, + { + "word": "Qualifying", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualifying (round)", + "romanization": "Qualifying", + "example_sentence_native": "Das Qualifying für das Rennen war sehr spannend.", + "example_sentence_english": "The qualifying for the race was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19118 + }, + { + "word": "Qualitätsmanagement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quality management", + "romanization": "Qualitätsmanagement", + "example_sentence_native": "Gutes Qualitätsmanagement ist entscheidend für den Erfolg eines Unternehmens.", + "example_sentence_english": "Good quality management is crucial for a company's success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19119 + }, + { + "word": "Quintett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quintet", + "romanization": "Quintett", + "example_sentence_native": "Das Quintett spielte eine wunderschöne Melodie.", + "example_sentence_english": "The quintet played a beautiful melody.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19120 + }, + { + "word": "Rebe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vine", + "romanization": "Rebe", + "example_sentence_native": "Die Rebe wächst schnell im Sommer.", + "example_sentence_english": "The vine grows quickly in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19121 + }, + { + "word": "Regelmässigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regularity", + "romanization": "Regelmässigkeit", + "example_sentence_native": "Er schätzt die Regelmässigkeit seines Tagesablaufs.", + "example_sentence_english": "He appreciates the regularity of his daily routine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19122 + }, + { + "word": "revidieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revise;to review", + "romanization": "revidieren", + "example_sentence_native": "Wir müssen den Plan revidieren.", + "example_sentence_english": "We need to revise the plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19124 + }, + { + "word": "Revolte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolt;rebellion", + "romanization": "Revolte", + "example_sentence_native": "Die Revolte wurde schnell niedergeschlagen.", + "example_sentence_english": "The revolt was quickly suppressed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19125 + }, + { + "word": "Riesling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Riesling (a type of white wine)", + "romanization": "Riesling", + "example_sentence_native": "Ich trinke gerne einen trockenen Riesling.", + "example_sentence_english": "I like to drink a dry Riesling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19126 + }, + { + "word": "Rinne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gutter;channel;groove", + "romanization": "Rinne", + "example_sentence_native": "Das Wasser floss durch die Rinne ab.", + "example_sentence_english": "The water drained through the gutter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19127 + }, + { + "word": "Rockband", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rock band", + "romanization": "Rockband", + "example_sentence_native": "Meine Lieblings-Rockband spielt heute Abend.", + "example_sentence_english": "My favorite rock band is playing tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19128 + }, + { + "word": "Rotz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snot;nonsense (colloquial)", + "romanization": "Rotz", + "example_sentence_native": "Das ist doch alles Rotz!", + "example_sentence_english": "That's all nonsense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19130 + }, + { + "word": "Salsa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salsa (dance or sauce)", + "romanization": "Salsa", + "example_sentence_native": "Wir tanzen gerne Salsa.", + "example_sentence_english": "We like to dance salsa.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19134 + }, + { + "word": "Salzwasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saltwater", + "romanization": "Salzwasser", + "example_sentence_native": "Fische leben im Salzwasser.", + "example_sentence_english": "Fish live in saltwater.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19135 + }, + { + "word": "Schleicher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lurker;sneak;creeper", + "romanization": "Schleicher", + "example_sentence_native": "Er ist ein richtiger Schleicher, man hört ihn nie kommen.", + "example_sentence_english": "He's a real sneak, you never hear him coming.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19136 + }, + { + "word": "Schmarotzer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parasite;sponger", + "romanization": "Schmarotzer", + "example_sentence_native": "Niemand mag einen Schmarotzer.", + "example_sentence_english": "Nobody likes a sponger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19137 + }, + { + "word": "Schneefall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snowfall", + "romanization": "Schneefall", + "example_sentence_native": "Der Schneefall war sehr stark.", + "example_sentence_english": "The snowfall was very heavy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19138 + }, + { + "word": "Schnurrbart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mustache", + "romanization": "Schnurrbart", + "example_sentence_native": "Er hat einen langen Schnurrbart.", + "example_sentence_english": "He has a long mustache.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19139 + }, + { + "word": "Schulunterricht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school lessons", + "romanization": "Schulunterricht", + "example_sentence_native": "Der Schulunterricht beginnt um acht Uhr.", + "example_sentence_english": "School lessons start at eight o'clock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19141 + }, + { + "word": "Schwächung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakening", + "romanization": "Schwächung", + "example_sentence_native": "Die Schwächung des Immunsystems kann zu Krankheiten führen.", + "example_sentence_english": "The weakening of the immune system can lead to illnesses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19142 + }, + { + "word": "schärfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sharpen", + "romanization": "schärfen", + "example_sentence_native": "Er muss das Messer schärfen.", + "example_sentence_english": "He has to sharpen the knife.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19143 + }, + { + "word": "sexistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexist", + "romanization": "sexistisch", + "example_sentence_native": "Seine Bemerkungen waren sehr sexistisch.", + "example_sentence_english": "His remarks were very sexist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19147 + }, + { + "word": "Shisha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hookah;shisha", + "romanization": "Shisha", + "example_sentence_native": "Viele junge Leute rauchen Shisha in Cafés.", + "example_sentence_english": "Many young people smoke shisha in cafes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19149 + }, + { + "word": "Sonderfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special case", + "romanization": "Sonderfall", + "example_sentence_native": "Das ist ein Sonderfall, der besondere Aufmerksamkeit erfordert.", + "example_sentence_english": "This is a special case that requires particular attention.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19151 + }, + { + "word": "Speisesaal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dining hall", + "romanization": "Speisesaal", + "example_sentence_native": "Wir essen unser Mittagessen im Speisesaal.", + "example_sentence_english": "We eat our lunch in the dining hall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19153 + }, + { + "word": "Stacheldraht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbed wire", + "romanization": "Stacheldraht", + "example_sentence_native": "Der Zaun war mit Stacheldraht gesichert.", + "example_sentence_english": "The fence was secured with barbed wire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19155 + }, + { + "word": "Stadtplan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city map", + "romanization": "Stadtplan", + "example_sentence_native": "Haben Sie einen Stadtplan von Berlin?", + "example_sentence_english": "Do you have a city map of Berlin?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19156 + }, + { + "word": "standhaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steadfast;firm", + "romanization": "standhaft", + "example_sentence_native": "Sie blieb standhaft in ihren Überzeugungen.", + "example_sentence_english": "She remained steadfast in her beliefs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19157 + }, + { + "word": "Statik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statics (engineering);stability", + "romanization": "Statik", + "example_sentence_native": "Die Statik des Gebäudes muss überprüft werden.", + "example_sentence_english": "The statics of the building must be checked.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19158 + }, + { + "word": "strukturiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structured", + "romanization": "strukturiert", + "example_sentence_native": "Er arbeitet sehr strukturiert und organisiert.", + "example_sentence_english": "He works very structured and organized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19159 + }, + { + "word": "Szenerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scenery", + "romanization": "Szenerie", + "example_sentence_native": "Die Szenerie des Films war atemberaubend.", + "example_sentence_english": "The scenery of the film was breathtaking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19160 + }, + { + "word": "tagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to meet;to convene", + "romanization": "tagen", + "example_sentence_native": "Die Kommission wird nächste Woche tagen.", + "example_sentence_english": "The commission will meet next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19161 + }, + { + "word": "Tempolimit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "speed limit", + "romanization": "Tempolimit", + "example_sentence_native": "Es gibt ein Tempolimit auf dieser Straße.", + "example_sentence_english": "There is a speed limit on this road.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19162 + }, + { + "word": "territorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "territorial", + "romanization": "territorial", + "example_sentence_native": "Viele Tiere zeigen territorial Verhalten.", + "example_sentence_english": "Many animals show territorial behavior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19164 + }, + { + "word": "trollen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to troll (internet);to stroll", + "romanization": "trollen", + "example_sentence_native": "Er versucht, die Leute im Internet zu trollen.", + "example_sentence_english": "He tries to troll people on the internet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19169 + }, + { + "word": "Tyrannei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyranny", + "romanization": "Tyrannei", + "example_sentence_native": "Das Volk litt unter der Tyrannei des Herrschers.", + "example_sentence_english": "The people suffered under the tyranny of the ruler.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19171 + }, + { + "word": "Umschreibung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circumscription;paraphrase", + "romanization": "Umschreibung", + "example_sentence_native": "Eine Umschreibung des Satzes wäre hilfreich.", + "example_sentence_english": "A rephrasing of the sentence would be helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19173 + }, + { + "word": "ungenügend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insufficient;inadequate", + "romanization": "ungenügend", + "example_sentence_native": "Seine Leistung war ungenügend.", + "example_sentence_english": "His performance was insufficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19174 + }, + { + "word": "Unterkiefer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lower jaw;mandible", + "romanization": "Unterkiefer", + "example_sentence_native": "Der Unterkiefer ist der bewegliche Teil des Kiefers.", + "example_sentence_english": "The lower jaw is the movable part of the jaw.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19175 + }, + { + "word": "untermauern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to underpin;to substantiate", + "romanization": "untermauern", + "example_sentence_native": "Er konnte seine Argumente mit Fakten untermauern.", + "example_sentence_english": "He could substantiate his arguments with facts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19176 + }, + { + "word": "Unversehrtheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrity;inviolability", + "romanization": "Unversehrtheit", + "example_sentence_native": "Die Unversehrtheit des Körpers ist ein Grundrecht.", + "example_sentence_english": "The integrity of the body is a fundamental right.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19177 + }, + { + "word": "ursächlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causal;causative", + "romanization": "ursächlich", + "example_sentence_native": "Es gab keine ursächliche Verbindung zwischen den Ereignissen.", + "example_sentence_english": "There was no causal connection between the events.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19179 + }, + { + "word": "Verantwortlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsibility", + "romanization": "Verantwortlichkeit", + "example_sentence_native": "Die Verantwortlichkeit für das Projekt liegt bei ihm.", + "example_sentence_english": "The responsibility for the project lies with him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19180 + }, + { + "word": "Verfolgungsjagd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chase", + "romanization": "Verfolgungsjagd", + "example_sentence_native": "Die Polizei beendete die Verfolgungsjagd nach einer Stunde.", + "example_sentence_english": "The police ended the chase after an hour.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19181 + }, + { + "word": "Verhältnismässigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proportionality", + "romanization": "Verhältnismässigkeit", + "example_sentence_native": "Das Prinzip der Verhältnismässigkeit ist im Recht wichtig.", + "example_sentence_english": "The principle of proportionality is important in law.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19182 + }, + { + "word": "Verkündung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announcement", + "romanization": "Verkündung", + "example_sentence_native": "Die Verkündung der Ergebnisse wird morgen erwartet.", + "example_sentence_english": "The announcement of the results is expected tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19183 + }, + { + "word": "verwerflich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprehensible", + "romanization": "verwerflich", + "example_sentence_native": "Sein Verhalten war absolut verwerflich.", + "example_sentence_english": "His behavior was absolutely reprehensible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19184 + }, + { + "word": "Verwüstung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastation", + "romanization": "Verwüstung", + "example_sentence_native": "Der Sturm hinterließ eine Spur der Verwüstung.", + "example_sentence_english": "The storm left a trail of devastation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19185 + }, + { + "word": "Vokal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vowel", + "romanization": "Vokal", + "example_sentence_native": "Im Deutschen gibt es fünf Vokale: a, e, i, o, u.", + "example_sentence_english": "In German there are five vowels: a, e, i, o, u.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19188 + }, + { + "word": "vorbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put forward", + "romanization": "vorbringen", + "example_sentence_native": "Er wollte seine Argumente vorbringen.", + "example_sentence_english": "He wanted to put forward his arguments.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19189 + }, + { + "word": "vordergründig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superficial", + "romanization": "vordergründig", + "example_sentence_native": "Vordergründig schien alles in Ordnung zu sein.", + "example_sentence_english": "Ostensibly, everything seemed to be in order.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19190 + }, + { + "word": "Wahlzettel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballot paper", + "romanization": "Wahlzettel", + "example_sentence_native": "Jeder Wähler erhält einen Wahlzettel.", + "example_sentence_english": "Every voter receives a ballot paper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19191 + }, + { + "word": "Waldrand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge of the forest", + "romanization": "Waldrand", + "example_sentence_native": "Wir machten ein Picknick am Waldrand.", + "example_sentence_english": "We had a picnic at the edge of the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19192 + }, + { + "word": "Wasserdampf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water vapor", + "romanization": "Wasserdampf", + "example_sentence_native": "Aus dem Kessel stieg Wasserdampf auf.", + "example_sentence_english": "Water vapor rose from the kettle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19196 + }, + { + "word": "Weekend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weekend", + "romanization": "Weekend", + "example_sentence_native": "Ich freue mich auf das Weekend.", + "example_sentence_english": "I'm looking forward to the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19197 + }, + { + "word": "Weltbevölkerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world population", + "romanization": "Weltbevölkerung", + "example_sentence_native": "Die Weltbevölkerung wächst stetig.", + "example_sentence_english": "The world population is growing steadily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19199 + }, + { + "word": "Werbekampagne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advertising campaign", + "romanization": "Werbekampagne", + "example_sentence_native": "Die neue Werbekampagne war sehr erfolgreich.", + "example_sentence_english": "The new advertising campaign was very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19200 + }, + { + "word": "Wettlauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "race;competition", + "romanization": "Wettlauf", + "example_sentence_native": "Der Wettlauf um die neue Technologie ist hart.", + "example_sentence_english": "The race for the new technology is tough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19201 + }, + { + "word": "Wiedereröffnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reopening", + "romanization": "Wiedereröffnung", + "example_sentence_native": "Die Wiedereröffnung des Theaters ist für nächste Woche geplant.", + "example_sentence_english": "The reopening of the theater is planned for next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19203 + }, + { + "word": "Wohlwollen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "goodwill;benevolence", + "romanization": "Wohlwollen", + "example_sentence_native": "Er begegnete ihr mit großem Wohlwollen.", + "example_sentence_english": "He met her with great goodwill.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19205 + }, + { + "word": "Wohnungssuche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apartment search", + "romanization": "Wohnungssuche", + "example_sentence_native": "Die Wohnungssuche in dieser Stadt ist sehr schwierig.", + "example_sentence_english": "The apartment search in this city is very difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19206 + }, + { + "word": "Wunschliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wish list", + "romanization": "Wunschliste", + "example_sentence_native": "Ich habe eine lange Wunschliste für Weihnachten.", + "example_sentence_english": "I have a long wish list for Christmas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19207 + }, + { + "word": "Würze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seasoning;spice", + "romanization": "Würze", + "example_sentence_native": "Die Suppe braucht noch etwas Würze.", + "example_sentence_english": "The soup still needs some seasoning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19208 + }, + { + "word": "Zepter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scepter", + "romanization": "Zepter", + "example_sentence_native": "Der König hielt das Zepter in seiner Hand.", + "example_sentence_english": "The king held the scepter in his hand.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19209 + }, + { + "word": "Zigarre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cigar", + "romanization": "Zigarre", + "example_sentence_native": "Er rauchte eine Zigarre nach dem Abendessen.", + "example_sentence_english": "He smoked a cigar after dinner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19210 + }, + { + "word": "Zuhälter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pimp", + "romanization": "Zuhälter", + "example_sentence_native": "Der Zuhälter wurde von der Polizei verhaftet.", + "example_sentence_english": "The pimp was arrested by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19211 + }, + { + "word": "zusammenlegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fold together;to pool (money)", + "romanization": "zusammenlegen", + "example_sentence_native": "Wir sollten unser Geld zusammenlegen, um das Geschenk zu kaufen.", + "example_sentence_english": "We should pool our money to buy the gift.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19212 + }, + { + "word": "zweihundert", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two hundred", + "romanization": "zweihundert", + "example_sentence_native": "Das Buch kostet zweihundert Euro.", + "example_sentence_english": "The book costs two hundred euros.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 19213 + }, + { + "word": "Übereinkunft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agreement;accord", + "romanization": "Übereinkunft", + "example_sentence_native": "Sie kamen zu einer Übereinkunft über die Bedingungen.", + "example_sentence_english": "They came to an agreement on the terms.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19214 + }, + { + "word": "Überforderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelm;excessive demand", + "romanization": "Überforderung", + "example_sentence_native": "Die ständige Überforderung führte zu Stress.", + "example_sentence_english": "The constant overwhelm led to stress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19215 + }, + { + "word": "überraschenderweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprisingly", + "romanization": "überraschenderweise", + "example_sentence_native": "Überraschenderweise regnete es nicht.", + "example_sentence_english": "Surprisingly, it didn't rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 19216 + }, + { + "word": "übertragbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transferable;transmissible", + "romanization": "übertragbar", + "example_sentence_native": "Diese Krankheit ist nicht übertragbar.", + "example_sentence_english": "This disease is not transmissible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19217 + }, + { + "word": "abenteuerlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adventurous", + "romanization": "abenteuerlich", + "example_sentence_native": "Sie hatten eine abenteuerliche Reise.", + "example_sentence_english": "They had an adventurous journey.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19218 + }, + { + "word": "abändern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to alter;to modify", + "romanization": "abändern", + "example_sentence_native": "Wir müssen den Plan leicht abändern.", + "example_sentence_english": "We need to slightly alter the plan.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "ändern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19219 + }, + { + "word": "Abschaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shutdown;deactivation", + "romanization": "Abschaltung", + "example_sentence_native": "Die Abschaltung des Systems erfolgte planmäßig.", + "example_sentence_english": "The system shutdown occurred as planned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19220 + }, + { + "word": "Abstinenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstinence", + "romanization": "Abstinenz", + "example_sentence_native": "Er übt Abstinenz von Alkohol.", + "example_sentence_english": "He practices abstinence from alcohol.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19221 + }, + { + "word": "Abtretung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assignment;cession", + "romanization": "Abtretung", + "example_sentence_native": "Die Abtretung der Forderung wurde notariell beurkundet.", + "example_sentence_english": "The assignment of the claim was notarized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19222 + }, + { + "word": "Affinität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affinity;strong liking", + "romanization": "Affinität", + "example_sentence_native": "Sie hat eine starke Affinität zur Musik.", + "example_sentence_english": "She has a strong affinity for music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19225 + }, + { + "word": "Ahorn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maple (tree)", + "romanization": "Ahorn", + "example_sentence_native": "Der Ahornbaum im Garten ist sehr alt.", + "example_sentence_english": "The maple tree in the garden is very old.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19227 + }, + { + "word": "alphabetisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alphabetical", + "romanization": "alphabetisch", + "example_sentence_native": "Bitte ordnen Sie die Namen alphabetisch.", + "example_sentence_english": "Please arrange the names alphabetically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19230 + }, + { + "word": "anlaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to start;to run (up);to tarnish", + "romanization": "anlaufen", + "example_sentence_native": "Der Motor wird bald anlaufen.", + "example_sentence_english": "The engine will start soon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19233 + }, + { + "word": "ansammeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accumulate;to gather", + "romanization": "ansammeln", + "example_sentence_native": "Staub kann sich schnell ansammeln.", + "example_sentence_english": "Dust can accumulate quickly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "sammeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19234 + }, + { + "word": "anzweifeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to doubt;to question", + "romanization": "anzweifeln", + "example_sentence_native": "Man sollte seine Aussagen nicht anzweifeln.", + "example_sentence_english": "One should not doubt his statements.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "zweifeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19235 + }, + { + "word": "Anwendungsbereich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "area of application;scope", + "romanization": "Anwendungsbereich", + "example_sentence_native": "Der Anwendungsbereich dieser Software ist sehr breit.", + "example_sentence_english": "The application area of this software is very broad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19236 + }, + { + "word": "Apfelsaft", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apple juice", + "romanization": "Apfelsaft", + "example_sentence_native": "Ich trinke gerne Apfelsaft zum Frühstück.", + "example_sentence_english": "I like to drink apple juice for breakfast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19237 + }, + { + "word": "Arbeitsleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work performance;output", + "romanization": "Arbeitsleistung", + "example_sentence_native": "Die Arbeitsleistung des Teams war hervorragend.", + "example_sentence_english": "The team's work performance was excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19238 + }, + { + "word": "Armutszeugnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "damning indictment;poor showing", + "romanization": "Armutszeugnis", + "example_sentence_native": "Das schlechte Ergebnis ist ein Armutszeugnis für die ganze Abteilung.", + "example_sentence_english": "The poor result is a damning indictment for the whole department.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19239 + }, + { + "word": "Artenschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "species protection", + "romanization": "Artenschutz", + "example_sentence_native": "Der Artenschutz ist wichtig für die Biodiversität.", + "example_sentence_english": "Species protection is important for biodiversity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19241 + }, + { + "word": "Asylwerber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum seeker", + "romanization": "Asylwerber", + "example_sentence_native": "Viele Asylwerber suchen Schutz in Deutschland.", + "example_sentence_english": "Many asylum seekers seek protection in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19242 + }, + { + "word": "Atomkraftwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear power plant", + "romanization": "Atomkraftwerk", + "example_sentence_native": "Das Atomkraftwerk wurde abgeschaltet.", + "example_sentence_english": "The nuclear power plant was shut down.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19244 + }, + { + "word": "Atommüll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear waste", + "romanization": "Atommüll", + "example_sentence_native": "Die Entsorgung von Atommüll ist ein großes Problem.", + "example_sentence_english": "The disposal of nuclear waste is a big problem.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19245 + }, + { + "word": "Auffahrunfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rear-end collision", + "romanization": "Auffahrunfall", + "example_sentence_native": "Es gab einen Auffahrunfall auf der Autobahn.", + "example_sentence_english": "There was a rear-end collision on the highway.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19247 + }, + { + "word": "Aufstockung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase;top-up;extension", + "romanization": "Aufstockung", + "example_sentence_native": "Die Aufstockung des Personals ist geplant.", + "example_sentence_english": "The increase in staff is planned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19248 + }, + { + "word": "Augenarzt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ophthalmologist;eye doctor", + "romanization": "Augenarzt", + "example_sentence_native": "Ich muss einen Termin beim Augenarzt machen.", + "example_sentence_english": "I need to make an appointment with the eye doctor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19249 + }, + { + "word": "ausschlafen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sleep in", + "romanization": "ausschlafen", + "example_sentence_native": "Am Wochenende kann ich endlich ausschlafen.", + "example_sentence_english": "On the weekend, I can finally sleep in.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schlafen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19250 + }, + { + "word": "Badehose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming trunks", + "romanization": "Badehose", + "example_sentence_native": "Er hat seine Badehose vergessen.", + "example_sentence_english": "He forgot his swimming trunks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19252 + }, + { + "word": "Balsam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balm", + "romanization": "Balsam", + "example_sentence_native": "Dieser Balsam hilft gegen trockene Haut.", + "example_sentence_english": "This balm helps against dry skin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19253 + }, + { + "word": "Bassist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bassist", + "romanization": "Bassist", + "example_sentence_native": "Der Bassist spielt in einer Band.", + "example_sentence_english": "The bassist plays in a band.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19254 + }, + { + "word": "Beauftragter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commissioner;delegate;representative", + "romanization": "Beauftragter", + "example_sentence_native": "Der Beauftragte für Datenschutz wurde ernannt.", + "example_sentence_english": "The data protection commissioner was appointed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19256 + }, + { + "word": "Bergleute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miners", + "romanization": "Bergleute", + "example_sentence_native": "Die Bergleute arbeiten unter Tage.", + "example_sentence_english": "The miners work underground.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19259 + }, + { + "word": "besteuern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tax", + "romanization": "besteuern", + "example_sentence_native": "Die Regierung plant, Luxusgüter zu besteuern.", + "example_sentence_english": "The government plans to tax luxury goods.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19263 + }, + { + "word": "Bewegungsmelder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motion detector", + "romanization": "Bewegungsmelder", + "example_sentence_native": "Der Bewegungsmelder löste Alarm aus.", + "example_sentence_english": "The motion detector triggered an alarm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19264 + }, + { + "word": "beziffern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to quantify", + "romanization": "beziffern", + "example_sentence_native": "Der Schaden lässt sich noch nicht genau beziffern.", + "example_sentence_english": "The damage cannot yet be precisely quantified.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19265 + }, + { + "word": "Bildband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photo book", + "romanization": "Bildband", + "example_sentence_native": "Sie hat einen schönen Bildband über Reisen gekauft.", + "example_sentence_english": "She bought a beautiful photo book about travels.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19266 + }, + { + "word": "Bindeglied", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connecting link", + "romanization": "Bindeglied", + "example_sentence_native": "Er fungiert als Bindeglied zwischen den Abteilungen.", + "example_sentence_english": "He acts as a connecting link between the departments.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19267 + }, + { + "word": "blendend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dazzling", + "romanization": "blendend", + "example_sentence_native": "Sie sah blendend aus in ihrem neuen Kleid.", + "example_sentence_english": "She looked dazzling in her new dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19268 + }, + { + "word": "Blutbad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bloodbath", + "romanization": "Blutbad", + "example_sentence_native": "Die Schlacht endete in einem Blutbad.", + "example_sentence_english": "The battle ended in a bloodbath.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19269 + }, + { + "word": "Boa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boa", + "romanization": "Boa", + "example_sentence_native": "Sie trug eine Federboa um den Hals.", + "example_sentence_english": "She wore a feather boa around her neck.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19270 + }, + { + "word": "Boogie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boogie", + "romanization": "Boogie", + "example_sentence_native": "Sie tanzten den ganzen Abend Boogie.", + "example_sentence_english": "They danced boogie all evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19271 + }, + { + "word": "Boomer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boomer", + "romanization": "Boomer", + "example_sentence_native": "Viele Boomer sind jetzt im Ruhestand.", + "example_sentence_english": "Many boomers are now retired.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19272 + }, + { + "word": "Bundeszentrale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federal headquarters", + "romanization": "Bundeszentrale", + "example_sentence_native": "Die Bundeszentrale befindet sich in Berlin.", + "example_sentence_english": "The federal headquarters are located in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19273 + }, + { + "word": "Butterfly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butterfly", + "romanization": "Butterfly", + "example_sentence_native": "Er schwimmt am liebsten Butterfly.", + "example_sentence_english": "He prefers to swim butterfly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19275 + }, + { + "word": "bösartig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malicious", + "romanization": "bösartig", + "example_sentence_native": "Das Gerücht war bösartig und unwahr.", + "example_sentence_english": "The rumor was malicious and untrue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19276 + }, + { + "word": "Böttcher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cooper", + "romanization": "Böttcher", + "example_sentence_native": "Der Böttcher fertigte Fässer aus Holz.", + "example_sentence_english": "The cooper made barrels from wood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19277 + }, + { + "word": "Datensatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data set", + "romanization": "Datensatz", + "example_sentence_native": "Jeder Datensatz enthält wichtige Informationen.", + "example_sentence_english": "Each data set contains important information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19291 + }, + { + "word": "Deckmantel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pretext", + "romanization": "Deckmantel", + "example_sentence_native": "Unter dem Deckmantel der Kunst betrieb er illegale Geschäfte.", + "example_sentence_english": "Under the pretext of art, he conducted illegal business.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19293 + }, + { + "word": "Default", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "default", + "romanization": "Default", + "example_sentence_native": "Die Standardeinstellung ist der Default-Wert.", + "example_sentence_english": "The standard setting is the default value.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19294 + }, + { + "word": "Diaspora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diaspora", + "romanization": "Diaspora", + "example_sentence_native": "Die jüdische Diaspora ist weltweit verbreitet.", + "example_sentence_english": "The Jewish diaspora is spread worldwide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19295 + }, + { + "word": "Diskretion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discretion", + "romanization": "Diskretion", + "example_sentence_native": "Ich bitte um Diskretion in dieser Angelegenheit.", + "example_sentence_english": "I ask for discretion in this matter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19297 + }, + { + "word": "diszipliniert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disciplined", + "romanization": "diszipliniert", + "example_sentence_native": "Er ist ein sehr disziplinierter Arbeiter.", + "example_sentence_english": "He is a very disciplined worker.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19298 + }, + { + "word": "Doppelpass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dual citizenship;one-two pass (football)", + "romanization": "Doppelpass", + "example_sentence_native": "Viele Sportler haben einen Doppelpass.", + "example_sentence_english": "Many athletes have dual citizenship.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19299 + }, + { + "word": "Drittligist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "third-division player;club", + "romanization": "Drittligist", + "example_sentence_native": "Der Drittligist kämpfte tapfer gegen das Erstligateam.", + "example_sentence_english": "The third-division team fought bravely against the first-division team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19300 + }, + { + "word": "Driver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver (e.g.;software;golf club)", + "romanization": "Driver", + "example_sentence_native": "Ich muss den neuen Driver für meinen Drucker installieren.", + "example_sentence_english": "I need to install the new driver for my printer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19301 + }, + { + "word": "Dämpfung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damping;attenuation;cushioning", + "romanization": "Dämpfung", + "example_sentence_native": "Die Dämpfung des Stoßdämpfers ist sehr gut.", + "example_sentence_english": "The damping of the shock absorber is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19302 + }, + { + "word": "Eau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water (French loanword)", + "romanization": "Eau", + "example_sentence_native": "Sie kaufte ein neues Eau de Parfum.", + "example_sentence_english": "She bought a new Eau de Parfum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19305 + }, + { + "word": "Edelmann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobleman", + "romanization": "Edelmann", + "example_sentence_native": "Der Edelmann lebte in einem großen Schloss.", + "example_sentence_english": "The nobleman lived in a large castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19306 + }, + { + "word": "einzeichnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw in;to mark in;to plot", + "romanization": "einzeichnen", + "example_sentence_native": "Bitte zeichnen Sie die Route auf der Karte ein.", + "example_sentence_english": "Please mark the route on the map.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "zeichnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19307 + }, + { + "word": "Energiewirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy industry;economy", + "romanization": "Energiewirtschaft", + "example_sentence_native": "Die Energiewirtschaft steht vor großen Herausforderungen.", + "example_sentence_english": "The energy industry faces great challenges.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19312 + }, + { + "word": "Enkelkind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandchild", + "romanization": "Enkelkind", + "example_sentence_native": "Mein Enkelkind besucht mich am Wochenende.", + "example_sentence_english": "My grandchild is visiting me on the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19313 + }, + { + "word": "entschlüsseln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decode;to decipher", + "romanization": "entschlüsseln", + "example_sentence_native": "Er versuchte, die geheime Nachricht zu entschlüsseln.", + "example_sentence_english": "He tried to decode the secret message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19314 + }, + { + "word": "Erdkunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geography", + "romanization": "Erdkunde", + "example_sentence_native": "In der Schule lernen wir viel über Erdkunde.", + "example_sentence_english": "At school, we learn a lot about geography.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19315 + }, + { + "word": "Erfahrungsbericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experience report;testimonial", + "romanization": "Erfahrungsbericht", + "example_sentence_native": "Sie schrieb einen detaillierten Erfahrungsbericht über ihre Reise.", + "example_sentence_english": "She wrote a detailed experience report about her trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19316 + }, + { + "word": "ernannt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appointed;designated", + "romanization": "ernannt", + "example_sentence_native": "Er wurde zum neuen Direktor ernannt.", + "example_sentence_english": "He was appointed as the new director.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19317 + }, + { + "word": "erteilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granted;given (e.g.;permission)", + "romanization": "erteilt", + "example_sentence_native": "Die erteilte Genehmigung ist gültig.", + "example_sentence_english": "The granted permission is valid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19318 + }, + { + "word": "Fahrstreifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lane (of traffic)", + "romanization": "Fahrstreifen", + "example_sentence_native": "Der rechte Fahrstreifen ist für langsamere Fahrzeuge.", + "example_sentence_english": "The right lane is for slower vehicles.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19319 + }, + { + "word": "Farbgebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "color scheme", + "romanization": "Farbgebung", + "example_sentence_native": "Die Farbgebung des Gemäldes ist sehr harmonisch.", + "example_sentence_english": "The color scheme of the painting is very harmonious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19321 + }, + { + "word": "Fehlanzeige", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nothing to report", + "romanization": "Fehlanzeige", + "example_sentence_native": "Nach langer Suche gab es Fehlanzeige.", + "example_sentence_english": "After a long search, there was nothing to report.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19323 + }, + { + "word": "Feindschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enmity", + "romanization": "Feindschaft", + "example_sentence_native": "Zwischen den beiden Familien herrschte tiefe Feindschaft.", + "example_sentence_english": "Deep enmity existed between the two families.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19324 + }, + { + "word": "Fiskus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treasury", + "romanization": "Fiskus", + "example_sentence_native": "Der Fiskus erhöhte die Steuern.", + "example_sentence_english": "The treasury increased taxes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19325 + }, + { + "word": "Frachter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freighter", + "romanization": "Frachter", + "example_sentence_native": "Der Frachter legte im Hafen an.", + "example_sentence_english": "The freighter docked in the harbor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19327 + }, + { + "word": "Frauenrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "women's right", + "romanization": "Frauenrecht", + "example_sentence_native": "Das Frauenrecht auf Bildung ist fundamental.", + "example_sentence_english": "The women's right to education is fundamental.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19328 + }, + { + "word": "Freundschaftsspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friendly match", + "romanization": "Freundschaftsspiel", + "example_sentence_native": "Die Mannschaft spielte ein Freundschaftsspiel gegen das Nachbarteam.", + "example_sentence_english": "The team played a friendly match against the neighboring team.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19329 + }, + { + "word": "Föderalismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federalism", + "romanization": "Föderalismus", + "example_sentence_native": "Deutschland ist ein Land mit einem starken Föderalismus.", + "example_sentence_english": "Germany is a country with strong federalism.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19331 + }, + { + "word": "Fötus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetus", + "romanization": "Fötus", + "example_sentence_native": "Der Fötus entwickelt sich im Mutterleib.", + "example_sentence_english": "The fetus develops in the womb.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19332 + }, + { + "word": "Gedankengang", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "train of thought", + "romanization": "Gedankengang", + "example_sentence_native": "Sein Gedankengang war schwer zu folgen.", + "example_sentence_english": "His train of thought was difficult to follow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19334 + }, + { + "word": "gefärbt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colored", + "romanization": "gefärbt", + "example_sentence_native": "Sie trug ein gefärbtes Hemd.", + "example_sentence_english": "She wore a colored shirt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19335 + }, + { + "word": "Gehaltserhöhung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salary increase", + "romanization": "Gehaltserhöhung", + "example_sentence_native": "Er bat um eine Gehaltserhöhung.", + "example_sentence_english": "He asked for a salary increase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19336 + }, + { + "word": "gehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walking", + "romanization": "gehend", + "example_sentence_native": "Die gehenden Menschen füllten die Straße.", + "example_sentence_english": "The walking people filled the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19337 + }, + { + "word": "geladen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loaded", + "romanization": "geladen", + "example_sentence_native": "Die Waffe war geladen.", + "example_sentence_english": "The weapon was loaded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19338 + }, + { + "word": "geleitet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managed", + "romanization": "geleitet", + "example_sentence_native": "Das Projekt wurde gut geleitet.", + "example_sentence_english": "The project was well managed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19339 + }, + { + "word": "Gemeindezentrum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "community center", + "romanization": "Gemeindezentrum", + "example_sentence_native": "Das Gemeindezentrum ist der Treffpunkt für alle.", + "example_sentence_english": "The community center is the meeting point for everyone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19340 + }, + { + "word": "geprüft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tested;examined", + "romanization": "geprüft", + "example_sentence_native": "Die Qualität des Produkts wurde sorgfältig geprüft.", + "example_sentence_english": "The quality of the product was carefully tested.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19341 + }, + { + "word": "pumpen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pump", + "romanization": "pumpen", + "example_sentence_native": "Wir müssen Wasser aus dem Brunnen pumpen.", + "example_sentence_english": "We have to pump water from the well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19342 + }, + { + "word": "Giraffe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "giraffe", + "romanization": "Giraffe", + "example_sentence_native": "Die Giraffe hat einen sehr langen Hals.", + "example_sentence_english": "The giraffe has a very long neck.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19346 + }, + { + "word": "Gourmet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gourmet", + "romanization": "Gourmet", + "example_sentence_native": "Er ist ein wahrer Gourmet und liebt gutes Essen.", + "example_sentence_english": "He is a true gourmet and loves good food.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19347 + }, + { + "word": "grenzüberschreitend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross-border;transnational", + "romanization": "grenzüberschreitend", + "example_sentence_native": "Wir arbeiten an einem grenzüberschreitenden Projekt.", + "example_sentence_english": "We are working on a cross-border project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19349 + }, + { + "word": "hager", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gaunt;thin;haggard", + "romanization": "hager", + "example_sentence_native": "Nach der Krankheit sah er sehr hager aus.", + "example_sentence_english": "After the illness, he looked very gaunt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19351 + }, + { + "word": "Haue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hoe;thrashing (colloquial)", + "romanization": "Haue", + "example_sentence_native": "Die Haue ist ein nützliches Werkzeug im Garten.", + "example_sentence_english": "The hoe is a useful tool in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19352 + }, + { + "word": "Hauptaugenmerk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "main focus;primary attention", + "romanization": "Hauptaugenmerk", + "example_sentence_native": "Das Hauptaugenmerk liegt auf der Kundenzufriedenheit.", + "example_sentence_english": "The main focus is on customer satisfaction.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19353 + }, + { + "word": "Hauptgebäude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main building", + "romanization": "Hauptgebäude", + "example_sentence_native": "Das Hauptgebäude der Universität ist sehr alt.", + "example_sentence_english": "The main building of the university is very old.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19354 + }, + { + "word": "Hauptwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masterpiece;main work", + "romanization": "Hauptwerk", + "example_sentence_native": "Dieses Buch gilt als sein Hauptwerk.", + "example_sentence_english": "This book is considered his masterpiece.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19355 + }, + { + "word": "hellblau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "light blue", + "romanization": "hellblau", + "example_sentence_native": "Der Himmel ist heute hellblau.", + "example_sentence_english": "The sky is light blue today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19356 + }, + { + "word": "Herzchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little heart;sweetheart", + "romanization": "Herzchen", + "example_sentence_native": "Sie malte ein kleines Herzchen auf die Karte.", + "example_sentence_english": "She drew a little heart on the card.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19357 + }, + { + "word": "Hetzer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agitator;rabble-rouser", + "romanization": "Hetzer", + "example_sentence_native": "Er wurde als Hetzer gegen die Regierung bezeichnet.", + "example_sentence_english": "He was called an agitator against the government.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19358 + }, + { + "word": "Imperativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperative (grammar)", + "romanization": "Imperativ", + "example_sentence_native": "Der Imperativ wird für Befehle verwendet.", + "example_sentence_english": "The imperative is used for commands.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19359 + }, + { + "word": "Internetverbindung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internet connection", + "romanization": "Internetverbindung", + "example_sentence_native": "Die Internetverbindung ist sehr langsam.", + "example_sentence_english": "The internet connection is very slow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19360 + }, + { + "word": "irr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erroneous;mad", + "romanization": "irr", + "example_sentence_native": "Seine Argumentation war völlig irr.", + "example_sentence_english": "His argumentation was completely erroneous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19361 + }, + { + "word": "Jüngling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth;young man", + "romanization": "Jüngling", + "example_sentence_native": "Der Jüngling wanderte durch den Wald.", + "example_sentence_english": "The young man wandered through the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19365 + }, + { + "word": "Kalium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potassium", + "romanization": "Kalium", + "example_sentence_native": "Kalium ist ein wichtiges Element für den Körper.", + "example_sentence_english": "Potassium is an important element for the body.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19366 + }, + { + "word": "kantonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cantonal", + "romanization": "kantonal", + "example_sentence_native": "Die kantonale Regierung hat eine neue Regelung erlassen.", + "example_sentence_english": "The cantonal government has issued a new regulation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19367 + }, + { + "word": "Karat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carat", + "romanization": "Karat", + "example_sentence_native": "Der Ring hat 24 Karat Gold.", + "example_sentence_english": "The ring has 24 carat gold.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19368 + }, + { + "word": "kichern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to giggle;to titter", + "romanization": "kichern", + "example_sentence_native": "Die Kinder mussten kichern, als sie den Clown sahen.", + "example_sentence_english": "The children had to giggle when they saw the clown.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19370 + }, + { + "word": "Kontaktaufnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "making contact;establishing contact", + "romanization": "Kontaktaufnahme", + "example_sentence_native": "Die Kontaktaufnahme mit dem Kunden war erfolgreich.", + "example_sentence_english": "Making contact with the customer was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19371 + }, + { + "word": "kontern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to counter;to retort", + "romanization": "kontern", + "example_sentence_native": "Er konnte auf die Kritik gut kontern.", + "example_sentence_english": "He was able to counter the criticism well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19372 + }, + { + "word": "Kontrabass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "double bass", + "romanization": "Kontrabass", + "example_sentence_native": "Sie spielt den Kontrabass in einem Orchester.", + "example_sentence_english": "She plays the double bass in an orchestra.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19373 + }, + { + "word": "Korpus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpus;body", + "romanization": "Korpus", + "example_sentence_native": "Der Korpus der Studie umfasste tausende Texte.", + "example_sentence_english": "The corpus of the study comprised thousands of texts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19374 + }, + { + "word": "kribbeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tingle;to itch", + "romanization": "kribbeln", + "example_sentence_native": "Meine Finger kribbeln vor Kälte.", + "example_sentence_english": "My fingers are tingling from the cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19375 + }, + { + "word": "Kriegserklärung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declaration of war", + "romanization": "Kriegserklärung", + "example_sentence_native": "Die Kriegserklärung wurde am Morgen verlesen.", + "example_sentence_english": "The declaration of war was read out in the morning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19376 + }, + { + "word": "Kröte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toad", + "romanization": "Kröte", + "example_sentence_native": "Eine Kröte saß am Teichrand.", + "example_sentence_english": "A toad sat at the edge of the pond.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19377 + }, + { + "word": "Kurzfassung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summary;abridged version", + "romanization": "Kurzfassung", + "example_sentence_native": "Bitte geben Sie mir eine Kurzfassung des Berichts.", + "example_sentence_english": "Please give me a summary of the report.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19378 + }, + { + "word": "Kurzform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short form;abbreviation", + "romanization": "Kurzform", + "example_sentence_native": "\"PC\" ist die Kurzform für \"Personal Computer\".", + "example_sentence_english": "\"PC\" is the short form for \"Personal Computer\".", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19379 + }, + { + "word": "Kurzschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short circuit", + "romanization": "Kurzschluss", + "example_sentence_native": "Ein Kurzschluss verursachte den Stromausfall.", + "example_sentence_english": "A short circuit caused the power outage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19380 + }, + { + "word": "Lagerraum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "storage room", + "romanization": "Lagerraum", + "example_sentence_native": "Wir lagern die Möbel im Lagerraum.", + "example_sentence_english": "We store the furniture in the storage room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19381 + }, + { + "word": "Lagune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lagoon", + "romanization": "Lagune", + "example_sentence_native": "Die Lagune war voller bunter Fische.", + "example_sentence_english": "The lagoon was full of colorful fish.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19382 + }, + { + "word": "Landwehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militia", + "romanization": "Landwehr", + "example_sentence_native": "Die Landwehr wurde zur Verteidigung des Landes mobilisiert.", + "example_sentence_english": "The militia was mobilized for the defense of the country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19383 + }, + { + "word": "lernend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "learning", + "romanization": "lernend", + "example_sentence_native": "Das lernende Kind stellte viele Fragen.", + "example_sentence_english": "The learning child asked many questions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19386 + }, + { + "word": "Luftverschmutzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "air pollution", + "romanization": "Luftverschmutzung", + "example_sentence_native": "Die Luftverschmutzung ist ein ernstes Problem in Großstädten.", + "example_sentence_english": "Air pollution is a serious problem in big cities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19389 + }, + { + "word": "Lumen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lumen", + "romanization": "Lumen", + "example_sentence_native": "Die Helligkeit einer Lampe wird in Lumen gemessen.", + "example_sentence_english": "The brightness of a lamp is measured in lumens.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19390 + }, + { + "word": "luzerner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lucerne (adj.)", + "romanization": "luzerner", + "example_sentence_native": "Der luzerner Käse ist sehr bekannt.", + "example_sentence_english": "The Lucerne cheese is very well-known.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19391 + }, + { + "word": "Lüfter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan", + "romanization": "Lüfter", + "example_sentence_native": "Der Lüfter im Computer ist sehr laut.", + "example_sentence_english": "The fan in the computer is very loud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19392 + }, + { + "word": "manifestieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manifest", + "romanization": "manifestieren", + "example_sentence_native": "Seine Träume manifestierten sich in der Realität.", + "example_sentence_english": "His dreams manifested in reality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19393 + }, + { + "word": "Manko", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortcoming", + "romanization": "Manko", + "example_sentence_native": "Das größte Manko des Projekts war die fehlende Finanzierung.", + "example_sentence_english": "The biggest shortcoming of the project was the lack of funding.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19394 + }, + { + "word": "Marionette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marionette", + "romanization": "Marionette", + "example_sentence_native": "Die Kinder spielten mit den Marionetten.", + "example_sentence_english": "The children played with the puppets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19396 + }, + { + "word": "Marker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marker (pen)", + "romanization": "Marker", + "example_sentence_native": "Bitte gib mir den roten Marker.", + "example_sentence_english": "Please give me the red marker.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19397 + }, + { + "word": "Median", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "median", + "romanization": "Median", + "example_sentence_native": "Der Median ist der Wert, der eine Datenreihe in zwei Hälften teilt.", + "example_sentence_english": "The median is the value that divides a data set into two halves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19398 + }, + { + "word": "Missionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missionary", + "romanization": "Missionar", + "example_sentence_native": "Der Missionar reiste in ferne Länder.", + "example_sentence_english": "The missionary traveled to distant lands.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19401 + }, + { + "word": "mitarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collaborate", + "romanization": "mitarbeiten", + "example_sentence_native": "Wir müssen alle mitarbeiten, um das Projekt abzuschließen.", + "example_sentence_english": "We all have to collaborate to complete the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19402 + }, + { + "word": "Musikgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "music history", + "romanization": "Musikgeschichte", + "example_sentence_native": "Sie studiert Musikgeschichte an der Universität.", + "example_sentence_english": "She studies music history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19405 + }, + { + "word": "Müllabfuhr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garbage collection", + "romanization": "Müllabfuhr", + "example_sentence_native": "Die Müllabfuhr kommt zweimal pro Woche.", + "example_sentence_english": "The garbage collection comes twice a week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19406 + }, + { + "word": "nachhause", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "home", + "romanization": "nachhause", + "example_sentence_native": "Ich gehe nachhause.", + "example_sentence_english": "I am going home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 19407 + }, + { + "word": "Narkose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anesthesia", + "romanization": "Narkose", + "example_sentence_native": "Vor der Operation bekam der Patient eine Narkose.", + "example_sentence_english": "Before the operation, the patient received anesthesia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19408 + }, + { + "word": "Nationalteam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national team", + "romanization": "Nationalteam", + "example_sentence_native": "Das Nationalteam hat das Spiel gewonnen.", + "example_sentence_english": "The national team won the game.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19409 + }, + { + "word": "Neoliberalismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neoliberalism", + "romanization": "Neoliberalismus", + "example_sentence_native": "Der Neoliberalismus prägt viele politische Debatten.", + "example_sentence_english": "Neoliberalism shapes many political debates.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19410 + }, + { + "word": "niesen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sneeze", + "romanization": "niesen", + "example_sentence_native": "Er musste laut niesen.", + "example_sentence_english": "He had to sneeze loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19411 + }, + { + "word": "Oberhaus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upper house (of parliament)", + "romanization": "Oberhaus", + "example_sentence_native": "Das Oberhaus hat dem Gesetz zugestimmt.", + "example_sentence_english": "The upper house approved the law.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19415 + }, + { + "word": "Oberleitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overhead line", + "romanization": "Oberleitung", + "example_sentence_native": "Die Straßenbahn bezieht ihren Strom von der Oberleitung.", + "example_sentence_english": "The tram gets its power from the overhead line.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19416 + }, + { + "word": "Ortsbürgermeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local mayor", + "romanization": "Ortsbürgermeister", + "example_sentence_native": "Der Ortsbürgermeister begrüßte die neuen Einwohner.", + "example_sentence_english": "The local mayor welcomed the new residents.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19419 + }, + { + "word": "Ostseite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "east side", + "romanization": "Ostseite", + "example_sentence_native": "Die Ostseite des Gebäudes ist sehr sonnig.", + "example_sentence_english": "The east side of the building is very sunny.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19420 + }, + { + "word": "Parcours", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course;obstacle course", + "romanization": "Parcours", + "example_sentence_native": "Der Parcours war sehr anspruchsvoll.", + "example_sentence_english": "The course was very demanding.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19425 + }, + { + "word": "Pickup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pickup truck", + "romanization": "Pickup", + "example_sentence_native": "Er fährt einen großen Pickup.", + "example_sentence_english": "He drives a big pickup truck.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19428 + }, + { + "word": "Pitch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitch (e.g.;sales pitch;sports field)", + "romanization": "Pitch", + "example_sentence_native": "Der Pitch für das neue Produkt war überzeugend.", + "example_sentence_english": "The pitch for the new product was convincing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19430 + }, + { + "word": "Produktionsfirma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production company", + "romanization": "Produktionsfirma", + "example_sentence_native": "Die Produktionsfirma hat den Film gedreht.", + "example_sentence_english": "The production company shot the film.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19433 + }, + { + "word": "profitabel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profitable", + "romanization": "profitabel", + "example_sentence_native": "Das Geschäft ist sehr profitabel.", + "example_sentence_english": "The business is very profitable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19434 + }, + { + "word": "prophezeien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prophesy;to predict", + "romanization": "prophezeien", + "example_sentence_native": "Er konnte die Zukunft prophezeien.", + "example_sentence_english": "He could prophesy the future.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19436 + }, + { + "word": "Quarterback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarterback", + "romanization": "Quarterback", + "example_sentence_native": "Der Quarterback warf einen Touchdown.", + "example_sentence_english": "The quarterback threw a touchdown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19437 + }, + { + "word": "Quarz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quartz", + "romanization": "Quarz", + "example_sentence_native": "Quarz ist ein häufiges Mineral.", + "example_sentence_english": "Quartz is a common mineral.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19438 + }, + { + "word": "Rauchverbot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoking ban", + "romanization": "Rauchverbot", + "example_sentence_native": "Es gibt ein Rauchverbot in öffentlichen Gebäuden.", + "example_sentence_english": "There is a smoking ban in public buildings.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19439 + }, + { + "word": "raushauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to churn out;to blurt out", + "romanization": "raushauen", + "example_sentence_native": "Er kann schnell viele Ideen raushauen.", + "example_sentence_english": "He can quickly churn out many ideas.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "hauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19440 + }, + { + "word": "reimen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rhyme", + "romanization": "reimen", + "example_sentence_native": "Die Kinder lernen, Wörter zu reimen.", + "example_sentence_english": "The children learn to rhyme words.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19441 + }, + { + "word": "Revanche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenge;rematch", + "romanization": "Revanche", + "example_sentence_native": "Er wollte Revanche für die Niederlage.", + "example_sentence_english": "He wanted revenge for the defeat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19443 + }, + { + "word": "Rollstuhlfahrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wheelchair user (male)", + "romanization": "Rollstuhlfahrer", + "example_sentence_native": "Der Rollstuhlfahrer wartete auf den Aufzug.", + "example_sentence_english": "The wheelchair user waited for the elevator.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19448 + }, + { + "word": "Russin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Russian woman", + "romanization": "Russin", + "example_sentence_native": "Sie ist eine Russin.", + "example_sentence_english": "She is a Russian woman.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19452 + }, + { + "word": "Rückfrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "query;follow-up question", + "romanization": "Rückfrage", + "example_sentence_native": "Bei Rückfragen stehe ich Ihnen gerne zur Verfügung.", + "example_sentence_english": "For any queries, I am at your disposal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19453 + }, + { + "word": "rüsten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arm;to equip;to prepare", + "romanization": "rüsten", + "example_sentence_native": "Das Land rüstet sich für den Winter.", + "example_sentence_english": "The country is preparing for winter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19454 + }, + { + "word": "Schallplatte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record (vinyl)", + "romanization": "Schallplatte", + "example_sentence_native": "Er sammelt alte Schallplatten.", + "example_sentence_english": "He collects old records.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19455 + }, + { + "word": "Schirmherrschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patronage;sponsorship", + "romanization": "Schirmherrschaft", + "example_sentence_native": "Die Veranstaltung steht unter der Schirmherrschaft des Bürgermeisters.", + "example_sentence_english": "The event is under the patronage of the mayor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19456 + }, + { + "word": "Schweigepflicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duty of confidentiality;secrecy", + "romanization": "Schweigepflicht", + "example_sentence_native": "Ärzte unterliegen der Schweigepflicht.", + "example_sentence_english": "Doctors are subject to the duty of confidentiality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19458 + }, + { + "word": "Schwiegertochter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daughter-in-law", + "romanization": "Schwiegertochter", + "example_sentence_native": "Meine Schwiegertochter besucht uns am Wochenende.", + "example_sentence_english": "My daughter-in-law is visiting us on the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19459 + }, + { + "word": "Selbstzweck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "end in itself", + "romanization": "Selbstzweck", + "example_sentence_native": "Kunst sollte niemals ein Selbstzweck sein.", + "example_sentence_english": "Art should never be an end in itself.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19460 + }, + { + "word": "Silbermedaille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silver medal", + "romanization": "Silbermedaille", + "example_sentence_native": "Sie gewann die Silbermedaille bei den Olympischen Spielen.", + "example_sentence_english": "She won the silver medal at the Olympic Games.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19463 + }, + { + "word": "Skorpion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scorpion", + "romanization": "Skorpion", + "example_sentence_native": "Ein Skorpion hat einen giftigen Stachel.", + "example_sentence_english": "A scorpion has a poisonous sting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19466 + }, + { + "word": "Softwareentwickler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "software developer", + "romanization": "Softwareentwickler", + "example_sentence_native": "Mein Bruder ist ein Softwareentwickler.", + "example_sentence_english": "My brother is a software developer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19467 + }, + { + "word": "sonderbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strange;peculiar", + "romanization": "sonderbar", + "example_sentence_native": "Das ist eine sehr sonderbare Geschichte.", + "example_sentence_english": "That is a very strange story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19468 + }, + { + "word": "Spatenstich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groundbreaking (ceremony)", + "romanization": "Spatenstich", + "example_sentence_native": "Der Spatenstich für das neue Gebäude findet nächste Woche statt.", + "example_sentence_english": "The groundbreaking ceremony for the new building will take place next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19470 + }, + { + "word": "Staatsministerium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "State Ministry", + "romanization": "Staatsministerium", + "example_sentence_native": "Das Staatsministerium ist für die Landespolitik zuständig.", + "example_sentence_english": "The State Ministry is responsible for state politics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19471 + }, + { + "word": "Stadthaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "townhouse", + "romanization": "Stadthaus", + "example_sentence_native": "Sie wohnen in einem schönen Stadthaus im Zentrum.", + "example_sentence_english": "They live in a beautiful townhouse in the center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19472 + }, + { + "word": "stattgeben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant;to approve", + "romanization": "stattgeben", + "example_sentence_native": "Das Gericht wird dem Antrag stattgeben.", + "example_sentence_english": "The court will grant the request.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "statt", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19473 + }, + { + "word": "Stereotyp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stereotype", + "romanization": "Stereotyp", + "example_sentence_native": "Man sollte keine Stereotypen verwenden.", + "example_sentence_english": "One should not use stereotypes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19475 + }, + { + "word": "Sternenhimmel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starry sky", + "romanization": "Sternenhimmel", + "example_sentence_native": "In der Wüste kann man einen wunderschönen Sternenhimmel sehen.", + "example_sentence_english": "In the desert, you can see a beautiful starry sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19476 + }, + { + "word": "Stundenplan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "timetable;schedule", + "romanization": "Stundenplan", + "example_sentence_native": "Ich muss meinen Stundenplan für das nächste Semester überprüfen.", + "example_sentence_english": "I need to check my timetable for next semester.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19478 + }, + { + "word": "Stunt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stunt", + "romanization": "Stunt", + "example_sentence_native": "Der Schauspieler führte einen gefährlichen Stunt aus.", + "example_sentence_english": "The actor performed a dangerous stunt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19479 + }, + { + "word": "Sucher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewfinder;seeker", + "romanization": "Sucher", + "example_sentence_native": "Der Sucher der Kamera ist sehr klar.", + "example_sentence_english": "The camera's viewfinder is very clear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19480 + }, + { + "word": "Säbel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saber;cutlass", + "romanization": "Säbel", + "example_sentence_native": "Der Soldat zog seinen Säbel.", + "example_sentence_english": "The soldier drew his saber.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19483 + }, + { + "word": "Terminologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terminology", + "romanization": "Terminologie", + "example_sentence_native": "Die Terminologie in diesem Fachgebiet ist sehr komplex.", + "example_sentence_english": "The terminology in this field is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19484 + }, + { + "word": "Terminus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "term;terminus", + "romanization": "Terminus", + "example_sentence_native": "Das ist ein wichtiger Terminus in der Philosophie.", + "example_sentence_english": "This is an important term in philosophy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19485 + }, + { + "word": "Tierchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little animal;creature", + "romanization": "Tierchen", + "example_sentence_native": "Ein kleines Tierchen krabbelte auf dem Blatt.", + "example_sentence_english": "A little creature crawled on the leaf.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19487 + }, + { + "word": "Tierschützer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal rights activist;animal protector", + "romanization": "Tierschützer", + "example_sentence_native": "Die Tierschützer protestierten gegen die Tierversuche.", + "example_sentence_english": "The animal rights activists protested against the animal experiments.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19488 + }, + { + "word": "Tierversuch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal experiment;animal testing", + "romanization": "Tierversuch", + "example_sentence_native": "Tierversuche sind ein kontroverses Thema.", + "example_sentence_english": "Animal experiments are a controversial topic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19489 + }, + { + "word": "tilgen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to delete;to erase;to redeem (debt)", + "romanization": "tilgen", + "example_sentence_native": "Er musste seine Schulden tilgen.", + "example_sentence_english": "He had to redeem his debts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19490 + }, + { + "word": "Toilettenpapier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet paper", + "romanization": "Toilettenpapier", + "example_sentence_native": "Wir brauchen mehr Toilettenpapier.", + "example_sentence_english": "We need more toilet paper.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19491 + }, + { + "word": "Transportmittel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "means of transport;vehicle", + "romanization": "Transportmittel", + "example_sentence_native": "Welches Transportmittel bevorzugst du?", + "example_sentence_english": "Which means of transport do you prefer?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19492 + }, + { + "word": "Trunkenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drunkenness;intoxication", + "romanization": "Trunkenheit", + "example_sentence_native": "Er wurde wegen Trunkenheit am Steuer verhaftet.", + "example_sentence_english": "He was arrested for drunk driving.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19495 + }, + { + "word": "Töpfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potter", + "romanization": "Töpfer", + "example_sentence_native": "Der Töpfer formte eine schöne Vase.", + "example_sentence_english": "The potter shaped a beautiful vase.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19497 + }, + { + "word": "unaufhaltsam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unstoppable;relentless", + "romanization": "unaufhaltsam", + "example_sentence_native": "Der Fortschritt ist unaufhaltsam.", + "example_sentence_english": "Progress is unstoppable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19498 + }, + { + "word": "unbegreiflich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incomprehensible;inconceivable", + "romanization": "unbegreiflich", + "example_sentence_native": "Seine Entscheidung war für mich unbegreiflich.", + "example_sentence_english": "His decision was incomprehensible to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19499 + }, + { + "word": "Universitätsklinikum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "university hospital", + "romanization": "Universitätsklinikum", + "example_sentence_native": "Das Universitätsklinikum ist bekannt für seine Forschung.", + "example_sentence_english": "The university hospital is known for its research.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19500 + }, + { + "word": "unterbreiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to submit;to present", + "romanization": "unterbreiten", + "example_sentence_native": "Er wird Ihnen ein Angebot unterbreiten.", + "example_sentence_english": "He will submit an offer to you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19501 + }, + { + "word": "urheberrechtlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "copyright-related;copyrighted", + "romanization": "urheberrechtlich", + "example_sentence_native": "Das Material ist urheberrechtlich geschützt.", + "example_sentence_english": "The material is protected by copyright.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19502 + }, + { + "word": "urkundlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "documentary;by deed", + "romanization": "urkundlich", + "example_sentence_native": "Die Geschichte ist urkundlich belegt.", + "example_sentence_english": "The history is documented by deed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19503 + }, + { + "word": "Verkehrssicherheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "road safety;traffic safety", + "romanization": "Verkehrssicherheit", + "example_sentence_native": "Die Verkehrssicherheit ist ein wichtiges Thema.", + "example_sentence_english": "Road safety is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19507 + }, + { + "word": "Verschwörungstheoretiker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspiracy theorist", + "romanization": "Verschwörungstheoretiker", + "example_sentence_native": "Er wurde als Verschwörungstheoretiker bezeichnet.", + "example_sentence_english": "He was called a conspiracy theorist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19508 + }, + { + "word": "verseuchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contaminate;to pollute;to infect", + "romanization": "verseuchen", + "example_sentence_native": "Das Wasser wurde durch Chemikalien verseucht.", + "example_sentence_english": "The water was contaminated by chemicals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19509 + }, + { + "word": "Verstopfung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constipation;blockage", + "romanization": "Verstopfung", + "example_sentence_native": "Er leidet unter Verstopfung.", + "example_sentence_english": "He suffers from constipation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19510 + }, + { + "word": "verständlicherweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understandably", + "romanization": "verständlicherweise", + "example_sentence_native": "Verständlicherweise war sie enttäuscht.", + "example_sentence_english": "Understandably, she was disappointed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 19511 + }, + { + "word": "vertrauenswürdig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trustworthy;reliable", + "romanization": "vertrauenswürdig", + "example_sentence_native": "Er ist eine sehr vertrauenswürdige Person.", + "example_sentence_english": "He is a very trustworthy person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19512 + }, + { + "word": "Verzierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decoration;ornament", + "romanization": "Verzierung", + "example_sentence_native": "Die Torte hatte eine schöne Verzierung.", + "example_sentence_english": "The cake had a beautiful decoration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19513 + }, + { + "word": "Vodka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vodka", + "romanization": "Vodka", + "example_sentence_native": "Er bestellte einen Vodka mit Orangensaft.", + "example_sentence_english": "He ordered a vodka with orange juice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19515 + }, + { + "word": "Volltreffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullseye;direct hit;perfect shot", + "romanization": "Volltreffer", + "example_sentence_native": "Das war ein Volltreffer!", + "example_sentence_english": "That was a bullseye!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19516 + }, + { + "word": "väterlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paternal;fatherly", + "romanization": "väterlich", + "example_sentence_native": "Er zeigte eine väterliche Fürsorge.", + "example_sentence_english": "He showed a paternal care.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19517 + }, + { + "word": "weiterarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue working", + "romanization": "weiterarbeiten", + "example_sentence_native": "Wir müssen weiterarbeiten, um das Projekt abzuschließen.", + "example_sentence_english": "We must continue working to complete the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19524 + }, + { + "word": "Weltordnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world order", + "romanization": "Weltordnung", + "example_sentence_native": "Die neue Weltordnung wird viele Veränderungen mit sich bringen.", + "example_sentence_english": "The new world order will bring many changes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19525 + }, + { + "word": "Werkstoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material;raw material", + "romanization": "Werkstoff", + "example_sentence_native": "Dieser Werkstoff ist sehr widerstandsfähig.", + "example_sentence_english": "This material is very resistant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19526 + }, + { + "word": "Wirtschaftsförderung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic development;promotion", + "romanization": "Wirtschaftsförderung", + "example_sentence_native": "Die Stadt investiert viel in die Wirtschaftsförderung.", + "example_sentence_english": "The city invests a lot in economic development.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19528 + }, + { + "word": "Wirtschaftsinformatik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "business informatics;information systems", + "romanization": "Wirtschaftsinformatik", + "example_sentence_native": "Sie studiert Wirtschaftsinformatik an der Universität.", + "example_sentence_english": "She studies business informatics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19529 + }, + { + "word": "Wohngebäude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "residential building", + "romanization": "Wohngebäude", + "example_sentence_native": "Das neue Wohngebäude hat viele Wohnungen.", + "example_sentence_english": "The new residential building has many apartments.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19530 + }, + { + "word": "Workout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "workout", + "romanization": "Workout", + "example_sentence_native": "Ich mache jeden Morgen ein kurzes Workout.", + "example_sentence_english": "I do a short workout every morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19531 + }, + { + "word": "Zopf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "braid;plait", + "romanization": "Zopf", + "example_sentence_native": "Sie trägt ihre Haare oft in einem Zopf.", + "example_sentence_english": "She often wears her hair in a braid.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19534 + }, + { + "word": "überdachen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roof over;to cover", + "romanization": "überdachen", + "example_sentence_native": "Wir müssen die Terrasse überdachen, bevor es regnet.", + "example_sentence_english": "We need to roof over the terrace before it rains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19536 + }, + { + "word": "übereinstimmend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistent;in agreement;corresponding", + "romanization": "übereinstimmend", + "example_sentence_native": "Die Zeugenaussagen waren übereinstimmend.", + "example_sentence_english": "The witness statements were consistent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19537 + }, + { + "word": "überschatten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to overshadow", + "romanization": "überschatten", + "example_sentence_native": "Die schlechten Nachrichten überschatten die Freude über den Sieg.", + "example_sentence_english": "The bad news overshadows the joy of the victory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19538 + }, + { + "word": "abschleppen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tow away", + "romanization": "abschleppen", + "example_sentence_native": "Mein Auto musste abgeschleppt werden.", + "example_sentence_english": "My car had to be towed away.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schleppen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19539 + }, + { + "word": "abstempeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stamp;to label (as)", + "romanization": "abstempeln", + "example_sentence_native": "Er wurde als Versager abgestempelt.", + "example_sentence_english": "He was labeled as a failure.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "stempeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19540 + }, + { + "word": "abtun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismiss;to put aside", + "romanization": "abtun", + "example_sentence_native": "Er tat die Kritik als unwichtig ab.", + "example_sentence_english": "He dismissed the criticism as unimportant.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "tun", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19541 + }, + { + "word": "Absperrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrier;cordon", + "romanization": "Absperrung", + "example_sentence_native": "Die Polizei errichtete eine Absperrung um den Unfallort.", + "example_sentence_english": "The police set up a barrier around the accident site.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19542 + }, + { + "word": "Alleinstellungsmerkmal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unique selling proposition (USP)", + "romanization": "Alleinstellungsmerkmal", + "example_sentence_native": "Das Produkt hat ein klares Alleinstellungsmerkmal.", + "example_sentence_english": "The product has a clear unique selling proposition.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19543 + }, + { + "word": "allmächtig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "almighty;omnipotent", + "romanization": "allmächtig", + "example_sentence_native": "Er glaubte, er sei allmächtig.", + "example_sentence_english": "He believed he was almighty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19544 + }, + { + "word": "Almosen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alms;charity", + "romanization": "Almosen", + "example_sentence_native": "Er bat um ein Almosen.", + "example_sentence_english": "He asked for alms.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19545 + }, + { + "word": "ambitioniert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambitious", + "romanization": "ambitioniert", + "example_sentence_native": "Sie ist eine sehr ambitionierte Studentin.", + "example_sentence_english": "She is a very ambitious student.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19546 + }, + { + "word": "Ambulanz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambulance;outpatient clinic", + "romanization": "Ambulanz", + "example_sentence_native": "Die Ambulanz brachte den Verletzten ins Krankenhaus.", + "example_sentence_english": "The ambulance took the injured person to the hospital.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19547 + }, + { + "word": "Andeutung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hint;suggestion;insinuation", + "romanization": "Andeutung", + "example_sentence_native": "Er machte eine Andeutung über seine Pläne.", + "example_sentence_english": "He made a hint about his plans.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19548 + }, + { + "word": "anteilig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportionate;pro rata", + "romanization": "anteilig", + "example_sentence_native": "Die Kosten werden anteilig aufgeteilt.", + "example_sentence_english": "The costs will be divided proportionately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19549 + }, + { + "word": "Arbeitsschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupational safety", + "romanization": "Arbeitsschutz", + "example_sentence_native": "Der Arbeitsschutz ist in diesem Unternehmen sehr wichtig.", + "example_sentence_english": "Occupational safety is very important in this company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19550 + }, + { + "word": "Audienz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "audience (formal meeting)", + "romanization": "Audienz", + "example_sentence_native": "Der König gewährte ihm eine Audienz.", + "example_sentence_english": "The king granted him an audience.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19554 + }, + { + "word": "aufgebaut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "built up;structured", + "romanization": "aufgebaut", + "example_sentence_native": "Das System ist logisch aufgebaut.", + "example_sentence_english": "The system is logically structured.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19555 + }, + { + "word": "aufkaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to buy up;to acquire", + "romanization": "aufkaufen", + "example_sentence_native": "Das größere Unternehmen will das kleinere aufkaufen.", + "example_sentence_english": "The larger company wants to buy up the smaller one.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "kaufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19556 + }, + { + "word": "Augustiner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Augustinian (monk);Augustiner (beer brand)", + "romanization": "Augustiner", + "example_sentence_native": "Er trank ein Augustiner Bier.", + "example_sentence_english": "He drank an Augustiner beer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19557 + }, + { + "word": "ausdehnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expand;to extend;to stretch", + "romanization": "ausdehnen", + "example_sentence_native": "Die Firma will ihre Aktivitäten ausdehnen.", + "example_sentence_english": "The company wants to expand its activities.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "dehnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19558 + }, + { + "word": "Auspuff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhaust (pipe;system)", + "romanization": "Auspuff", + "example_sentence_native": "Der Auspuff des Autos ist kaputt.", + "example_sentence_english": "The car's exhaust is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19559 + }, + { + "word": "ausrasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to freak out;to lose control", + "romanization": "ausrasten", + "example_sentence_native": "Er rastete völlig aus, als er die Nachricht hörte.", + "example_sentence_english": "He completely freaked out when he heard the news.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rasten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19560 + }, + { + "word": "Ausreisser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outlier;runaway;escapee", + "romanization": "Ausreisser", + "example_sentence_native": "Dieser Datenpunkt ist ein Ausreisser in der Statistik.", + "example_sentence_english": "This data point is an outlier in the statistics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19561 + }, + { + "word": "aussagekräftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meaningful;significant;conclusive", + "romanization": "aussagekräftig", + "example_sentence_native": "Die Studie lieferte aussagekräftige Ergebnisse.", + "example_sentence_english": "The study provided meaningful results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19562 + }, + { + "word": "aussenpolitisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foreign policy-related", + "romanization": "aussenpolitisch", + "example_sentence_native": "Das ist eine aussenpolitische Entscheidung.", + "example_sentence_english": "That is a foreign policy decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19563 + }, + { + "word": "Autoverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car traffic", + "romanization": "Autoverkehr", + "example_sentence_native": "Der Autoverkehr in der Stadt ist sehr dicht.", + "example_sentence_english": "The car traffic in the city is very dense.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19564 + }, + { + "word": "avanciert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advanced;sophisticated", + "romanization": "avanciert", + "example_sentence_native": "Er hat eine avancierte Position in der Firma.", + "example_sentence_english": "He has an advanced position in the company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19565 + }, + { + "word": "Banknote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banknote;bill", + "romanization": "Banknote", + "example_sentence_native": "Ich habe eine 50-Euro-Banknote gefunden.", + "example_sentence_english": "I found a 50-euro banknote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19566 + }, + { + "word": "Barren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bar (e.g.;gold bar;gymnastics bar)", + "romanization": "Barren", + "example_sentence_native": "Der Athlet übte am Barren.", + "example_sentence_english": "The athlete practiced on the parallel bars.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19567 + }, + { + "word": "baumeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dangle;to swing", + "romanization": "baumeln", + "example_sentence_native": "Die Beine des Kindes baumelten vom Stuhl.", + "example_sentence_english": "The child's legs dangled from the chair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19568 + }, + { + "word": "befahrbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passable (for vehicles);navigable", + "romanization": "befahrbar", + "example_sentence_native": "Die Straße ist nach dem Schneefall nicht mehr befahrbar.", + "example_sentence_english": "The road is no longer passable after the snowfall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19569 + }, + { + "word": "bekanntermassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as is well known;notoriously", + "romanization": "bekanntermassen", + "example_sentence_native": "Bekanntermassen ist er ein sehr guter Koch.", + "example_sentence_english": "As is well known, he is a very good cook.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 19570 + }, + { + "word": "berufstätig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employed;working", + "romanization": "berufstätig", + "example_sentence_native": "Meine Mutter ist berufstätig.", + "example_sentence_english": "My mother is employed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19572 + }, + { + "word": "Besinnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consciousness;reflection;contemplation", + "romanization": "Besinnung", + "example_sentence_native": "Er verlor die Besinnung nach dem Unfall.", + "example_sentence_english": "He lost consciousness after the accident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19573 + }, + { + "word": "bevorstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be imminent;to be impending", + "romanization": "bevorstehen", + "example_sentence_native": "Eine wichtige Entscheidung steht uns bevor.", + "example_sentence_english": "An important decision is imminent for us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19574 + }, + { + "word": "bewohnt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabited;occupied", + "romanization": "bewohnt", + "example_sentence_native": "Die Insel ist nicht bewohnt.", + "example_sentence_english": "The island is not inhabited.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19575 + }, + { + "word": "Bezieher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recipient;subscriber;buyer", + "romanization": "Bezieher", + "example_sentence_native": "Die Bezieher der Zeitschrift erhalten eine Sonderausgabe.", + "example_sentence_english": "The subscribers of the magazine receive a special edition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19576 + }, + { + "word": "Bieter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bidder", + "romanization": "Bieter", + "example_sentence_native": "Der höchste Bieter gewann die Auktion.", + "example_sentence_english": "The highest bidder won the auction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19577 + }, + { + "word": "Blumenstrauss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bouquet of flowers", + "romanization": "Blumenstrauss", + "example_sentence_native": "Sie bekam einen schönen Blumenstrauss zum Geburtstag.", + "example_sentence_english": "She received a beautiful bouquet of flowers for her birthday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19579 + }, + { + "word": "Bombardierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bombardment", + "romanization": "Bombardierung", + "example_sentence_native": "Die Bombardierung der Stadt dauerte die ganze Nacht.", + "example_sentence_english": "The bombardment of the city lasted all night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19580 + }, + { + "word": "bundesdeutsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "West German", + "romanization": "bundesdeutsch", + "example_sentence_native": "Die bundesdeutsche Regierung traf eine wichtige Entscheidung.", + "example_sentence_english": "The West German government made an important decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19582 + }, + { + "word": "Bundesgericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Federal Court", + "romanization": "Bundesgericht", + "example_sentence_native": "Das Bundesgericht hat das Urteil aufgehoben.", + "example_sentence_english": "The Federal Court overturned the verdict.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19583 + }, + { + "word": "Bundesinnenminister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Minister of the Interior", + "romanization": "Bundesinnenminister", + "example_sentence_native": "Der Bundesinnenminister gab eine Pressekonferenz.", + "example_sentence_english": "The Federal Minister of the Interior gave a press conference.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19584 + }, + { + "word": "Bühnenbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage design", + "romanization": "Bühnenbild", + "example_sentence_native": "Das Bühnenbild für das neue Stück war sehr beeindruckend.", + "example_sentence_english": "The stage design for the new play was very impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19586 + }, + { + "word": "Bürogebäude", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "office building", + "romanization": "Bürogebäude", + "example_sentence_native": "Das neue Bürogebäude ist sehr modern.", + "example_sentence_english": "The new office building is very modern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19588 + }, + { + "word": "Consultant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultant", + "romanization": "Consultant", + "example_sentence_native": "Sie arbeitet als Consultant in einer großen Firma.", + "example_sentence_english": "She works as a consultant in a large company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19595 + }, + { + "word": "Crisis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crisis", + "romanization": "Crisis", + "example_sentence_native": "Die globale Finanzcrisis hatte weitreichende Folgen.", + "example_sentence_english": "The global financial crisis had far-reaching consequences.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19597 + }, + { + "word": "Dachdecker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roofer", + "romanization": "Dachdecker", + "example_sentence_native": "Der Dachdecker reparierte das undichte Dach.", + "example_sentence_english": "The roofer repaired the leaky roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19598 + }, + { + "word": "debattieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to debate", + "romanization": "debattieren", + "example_sentence_native": "Sie debattieren über die neue Gesetzgebung.", + "example_sentence_english": "They are debating the new legislation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19600 + }, + { + "word": "dementieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to refute", + "romanization": "dementieren", + "example_sentence_native": "Der Sprecher musste die Gerüchte dementieren.", + "example_sentence_english": "The spokesperson had to deny the rumors.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19601 + }, + { + "word": "Demokratisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "democratization", + "romanization": "Demokratisierung", + "example_sentence_native": "Die Demokratisierung des Landes ist ein langer Prozess.", + "example_sentence_english": "The democratization of the country is a long process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19602 + }, + { + "word": "Dramatiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playwright;dramatist", + "romanization": "Dramatiker", + "example_sentence_native": "William Shakespeare war ein berühmter Dramatiker.", + "example_sentence_english": "William Shakespeare was a famous playwright.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19605 + }, + { + "word": "durchfallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail (an exam)", + "romanization": "durchfallen", + "example_sentence_native": "Er ist leider bei der Prüfung durchgefallen.", + "example_sentence_english": "He unfortunately failed the exam.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19607 + }, + { + "word": "Entführer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapper;abductor", + "romanization": "Entführer", + "example_sentence_native": "Die Polizei sucht nach dem Entführer.", + "example_sentence_english": "The police are looking for the kidnapper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19612 + }, + { + "word": "enttarnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unmask;to expose", + "romanization": "enttarnen", + "example_sentence_native": "Die Journalisten konnten den Spion enttarnen.", + "example_sentence_english": "The journalists were able to unmask the spy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19613 + }, + { + "word": "episch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epic", + "romanization": "episch", + "example_sentence_native": "Das war ein epischer Kampf.", + "example_sentence_english": "That was an epic battle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19615 + }, + { + "word": "erbeuten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to capture;to seize (booty)", + "romanization": "erbeuten", + "example_sentence_native": "Die Piraten konnten viel Gold erbeuten.", + "example_sentence_english": "The pirates were able to seize a lot of gold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19616 + }, + { + "word": "Eroberer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conqueror", + "romanization": "Eroberer", + "example_sentence_native": "Alexander der Große war ein berühmter Eroberer.", + "example_sentence_english": "Alexander the Great was a famous conqueror.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19617 + }, + { + "word": "Fastfood", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fast food", + "romanization": "Fastfood", + "example_sentence_native": "Ich esse selten Fastfood.", + "example_sentence_english": "I rarely eat fast food.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19621 + }, + { + "word": "fechten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fence", + "romanization": "fechten", + "example_sentence_native": "Er lernt, wie man fechten kann.", + "example_sentence_english": "He is learning how to fence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19623 + }, + { + "word": "Fokussierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focusing;focus", + "romanization": "Fokussierung", + "example_sentence_native": "Die Fokussierung auf das Ziel ist wichtig.", + "example_sentence_english": "The focusing on the goal is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19624 + }, + { + "word": "Fruchtbarkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertility", + "romanization": "Fruchtbarkeit", + "example_sentence_native": "Die Fruchtbarkeit des Bodens ist entscheidend für die Ernte.", + "example_sentence_english": "The fertility of the soil is crucial for the harvest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19628 + }, + { + "word": "Fussballspieler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football player", + "romanization": "Fussballspieler", + "example_sentence_native": "Der Fussballspieler hat ein Tor geschossen.", + "example_sentence_english": "The football player scored a goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19629 + }, + { + "word": "Fürstentum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "principality", + "romanization": "Fürstentum", + "example_sentence_native": "Liechtenstein ist ein kleines Fürstentum.", + "example_sentence_english": "Liechtenstein is a small principality.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19630 + }, + { + "word": "Gefüge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "structure;framework", + "romanization": "Gefüge", + "example_sentence_native": "Das soziale Gefüge einer Gesellschaft ist komplex.", + "example_sentence_english": "The social fabric of a society is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19635 + }, + { + "word": "Geschicklichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill;dexterity", + "romanization": "Geschicklichkeit", + "example_sentence_native": "Er zeigte große Geschicklichkeit im Umgang mit Werkzeugen.", + "example_sentence_english": "He showed great skill in handling tools.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19637 + }, + { + "word": "Geschäftsidee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business idea", + "romanization": "Geschäftsidee", + "example_sentence_native": "Sie hatte eine brillante Geschäftsidee.", + "example_sentence_english": "She had a brilliant business idea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19638 + }, + { + "word": "gewöhnungsbedürftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "takes getting used to", + "romanization": "gewöhnungsbedürftig", + "example_sentence_native": "Der Geschmack ist etwas gewöhnungsbedürftig.", + "example_sentence_english": "The taste takes some getting used to.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19639 + }, + { + "word": "Haferflocke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oat flake", + "romanization": "Haferflocke", + "example_sentence_native": "Ich esse Haferflocken zum Frühstück.", + "example_sentence_english": "I eat oat flakes for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19649 + }, + { + "word": "Hege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wildlife management;care", + "romanization": "Hege", + "example_sentence_native": "Die Hege des Waldes ist wichtig für die Artenvielfalt.", + "example_sentence_english": "The management of the forest is important for biodiversity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19652 + }, + { + "word": "herausholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get out;to retrieve", + "romanization": "herausholen", + "example_sentence_native": "Kannst du bitte das Buch aus der Tasche herausholen?", + "example_sentence_english": "Can you please get the book out of the bag?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19655 + }, + { + "word": "Herpes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herpes", + "romanization": "Herpes", + "example_sentence_native": "Herpes ist eine Viruserkrankung.", + "example_sentence_english": "Herpes is a viral disease.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19656 + }, + { + "word": "Herrenhaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manor house;mansion", + "romanization": "Herrenhaus", + "example_sentence_native": "Das alte Herrenhaus wurde in ein Hotel umgewandelt.", + "example_sentence_english": "The old manor house was converted into a hotel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19657 + }, + { + "word": "herüber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "over here;across", + "romanization": "herüber", + "example_sentence_native": "Komm doch mal herüber zu mir!", + "example_sentence_english": "Come over here to me!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 19658 + }, + { + "word": "identitär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "identitarian", + "romanization": "identitär", + "example_sentence_native": "Die Bewegung hat identitäre Ansichten.", + "example_sentence_english": "The movement has identitarian views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19662 + }, + { + "word": "inaktiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inactive", + "romanization": "inaktiv", + "example_sentence_native": "Der Vulkan ist seit Jahren inaktiv.", + "example_sentence_english": "The volcano has been inactive for years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19664 + }, + { + "word": "Instabilität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instability", + "romanization": "Instabilität", + "example_sentence_native": "Die politische Instabilität ist besorgniserregend.", + "example_sentence_english": "The political instability is concerning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19665 + }, + { + "word": "instinktiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinctive", + "romanization": "instinktiv", + "example_sentence_native": "Ihre Reaktion war instinktiv.", + "example_sentence_english": "Her reaction was instinctive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19666 + }, + { + "word": "Instruktion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instruction", + "romanization": "Instruktion", + "example_sentence_native": "Bitte lesen Sie die Instruktionen sorgfältig durch.", + "example_sentence_english": "Please read the instructions carefully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19667 + }, + { + "word": "Jour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "day", + "romanization": "Jour", + "example_sentence_native": "Wir haben einen Jour fixe für nächste Woche vereinbart.", + "example_sentence_english": "We have arranged a fixed meeting day for next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19671 + }, + { + "word": "Juice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "juice", + "romanization": "Juice", + "example_sentence_native": "Ich möchte einen Apfel-Juice.", + "example_sentence_english": "I would like an apple juice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19672 + }, + { + "word": "Kammermusik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chamber music", + "romanization": "Kammermusik", + "example_sentence_native": "Sie liebt klassische Kammermusik.", + "example_sentence_english": "She loves classical chamber music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19673 + }, + { + "word": "Karaoke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "karaoke", + "romanization": "Karaoke", + "example_sentence_native": "Wir gehen heute Abend Karaoke singen.", + "example_sentence_english": "We are going to sing karaoke tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19675 + }, + { + "word": "Kernel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kernel", + "romanization": "Kernel", + "example_sentence_native": "Der Linux-Kernel ist Open Source.", + "example_sentence_english": "The Linux kernel is open source.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19677 + }, + { + "word": "klemmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jam;to clamp;to stick", + "romanization": "klemmen", + "example_sentence_native": "Die Tür klemmt.", + "example_sentence_english": "The door is sticking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19678 + }, + { + "word": "Knackpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucial point;sticking point", + "romanization": "Knackpunkt", + "example_sentence_native": "Der Knackpunkt der Diskussion war die Finanzierung.", + "example_sentence_english": "The crucial point of the discussion was the financing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19679 + }, + { + "word": "Kommunion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Communion", + "romanization": "Kommunion", + "example_sentence_native": "Die erste Kommunion ist ein wichtiger Tag für viele Kinder.", + "example_sentence_english": "The first communion is an important day for many children.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19680 + }, + { + "word": "Kriegsgefangener", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Prisoner of war", + "romanization": "Kriegsgefangener", + "example_sentence_native": "Der Kriegsgefangene wurde nach Jahren freigelassen.", + "example_sentence_english": "The prisoner of war was released after years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19681 + }, + { + "word": "Krümel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Crumb", + "romanization": "Krümel", + "example_sentence_native": "Es lagen Krümel auf dem Tisch.", + "example_sentence_english": "There were crumbs on the table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19682 + }, + { + "word": "Kür", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Freestyle", + "romanization": "Kür", + "example_sentence_native": "Die Eiskunstläuferin zeigte eine beeindruckende Kür.", + "example_sentence_english": "The figure skater showed an impressive freestyle program.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19685 + }, + { + "word": "Ladegerät", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Charger", + "romanization": "Ladegerät", + "example_sentence_native": "Ich brauche mein Ladegerät für das Handy.", + "example_sentence_english": "I need my charger for the phone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19686 + }, + { + "word": "Lebenswelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Lifeworld", + "romanization": "Lebenswelt", + "example_sentence_native": "Die Lebenswelt eines Menschen wird durch seine Erfahrungen geprägt.", + "example_sentence_english": "A person's lifeworld is shaped by their experiences.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19687 + }, + { + "word": "Leckerbissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Delicacy", + "romanization": "Leckerbissen", + "example_sentence_native": "Diese Pralinen sind ein wahrer Leckerbissen.", + "example_sentence_english": "These chocolates are a real delicacy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19688 + }, + { + "word": "Lederhose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Leather trousers", + "romanization": "Lederhose", + "example_sentence_native": "Er trug eine traditionelle Lederhose zum Oktoberfest.", + "example_sentence_english": "He wore traditional leather trousers to Oktoberfest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19689 + }, + { + "word": "Leerstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Vacancy", + "romanization": "Leerstand", + "example_sentence_native": "Der Leerstand von Geschäften in der Innenstadt nimmt zu.", + "example_sentence_english": "The vacancy of shops in the city center is increasing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19690 + }, + { + "word": "Lesart", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Interpretation", + "romanization": "Lesart", + "example_sentence_native": "Es gibt verschiedene Lesarten dieses Gedichts.", + "example_sentence_english": "There are different interpretations of this poem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19692 + }, + { + "word": "Letter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Letter", + "romanization": "Letter", + "example_sentence_native": "Jede Letter im Alphabet hat einen eigenen Klang.", + "example_sentence_english": "Every letter in the alphabet has its own sound.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19693 + }, + { + "word": "liebenswert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lovable", + "romanization": "liebenswert", + "example_sentence_native": "Sie ist ein sehr liebenswertes Kind.", + "example_sentence_english": "She is a very lovable child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19694 + }, + { + "word": "Liebeskummer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Heartbreak", + "romanization": "Liebeskummer", + "example_sentence_native": "Er litt unter starkem Liebeskummer.", + "example_sentence_english": "He suffered from severe heartbreak.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19695 + }, + { + "word": "Malteser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Maltese", + "romanization": "Malteser", + "example_sentence_native": "Der Malteser ist eine kleine Hunderasse.", + "example_sentence_english": "The Maltese is a small dog breed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19699 + }, + { + "word": "Medienkompetenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "media literacy", + "romanization": "Medienkompetenz", + "example_sentence_native": "Medienkompetenz ist im digitalen Zeitalter unerlässlich.", + "example_sentence_english": "Media literacy is essential in the digital age.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19703 + }, + { + "word": "Melone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "melon", + "romanization": "Melone", + "example_sentence_native": "Ich esse gerne Wassermelone im Sommer.", + "example_sentence_english": "I like to eat watermelon in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19704 + }, + { + "word": "Metadatum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metadata", + "romanization": "Metadatum", + "example_sentence_native": "Jedes Bild enthält wichtige Metadaten.", + "example_sentence_english": "Every image contains important metadata.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19705 + }, + { + "word": "Mietpreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rental price", + "romanization": "Mietpreis", + "example_sentence_native": "Der Mietpreis für die Wohnung ist sehr hoch.", + "example_sentence_english": "The rental price for the apartment is very high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19707 + }, + { + "word": "nachsagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attribute (something negative to someone);to repeat (gossip)", + "romanization": "nachsagen", + "example_sentence_native": "Man sagt ihm nach, er sei sehr faul.", + "example_sentence_english": "He is said to be very lazy.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "sagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19711 + }, + { + "word": "Naturkatastrophe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "natural disaster", + "romanization": "Naturkatastrophe", + "example_sentence_native": "Die Region wurde von einer Naturkatastrophe heimgesucht.", + "example_sentence_english": "The region was hit by a natural disaster.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19713 + }, + { + "word": "neuerlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "again;anew;recently", + "romanization": "neuerlich", + "example_sentence_native": "Er hat neuerlich versucht, sie anzurufen.", + "example_sentence_english": "He tried to call her again recently.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19715 + }, + { + "word": "Nickerchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nap", + "romanization": "Nickerchen", + "example_sentence_native": "Ich mache gerne ein Nickerchen am Nachmittag.", + "example_sentence_english": "I like to take a nap in the afternoon.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19717 + }, + { + "word": "obendrauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on top of it", + "romanization": "obendrauf", + "example_sentence_native": "Er legte noch einen Apfel obendrauf.", + "example_sentence_english": "He put another apple on top of it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 19721 + }, + { + "word": "Operette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operetta", + "romanization": "Operette", + "example_sentence_native": "Sie liebt es, Operetten zu besuchen.", + "example_sentence_english": "She loves to attend operettas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19724 + }, + { + "word": "Optiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optician", + "romanization": "Optiker", + "example_sentence_native": "Ich muss zum Optiker gehen, um meine Brille reparieren zu lassen.", + "example_sentence_english": "I need to go to the optician to get my glasses repaired.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19726 + }, + { + "word": "Optimum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "optimum", + "romanization": "Optimum", + "example_sentence_native": "Wir streben nach dem Optimum in unserer Leistung.", + "example_sentence_english": "We strive for the optimum in our performance.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19727 + }, + { + "word": "Ortsmitte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "town center", + "romanization": "Ortsmitte", + "example_sentence_native": "Das Rathaus befindet sich in der Ortsmitte.", + "example_sentence_english": "The town hall is located in the town center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19728 + }, + { + "word": "Parzelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot (of land)", + "romanization": "Parzelle", + "example_sentence_native": "Sie haben eine kleine Parzelle Land gekauft.", + "example_sentence_english": "They bought a small plot of land.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19729 + }, + { + "word": "Pedal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pedal", + "romanization": "Pedal", + "example_sentence_native": "Drücken Sie das Pedal ganz durch.", + "example_sentence_english": "Press the pedal all the way down.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19732 + }, + { + "word": "Pilotprojekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilot project", + "romanization": "Pilotprojekt", + "example_sentence_native": "Das Pilotprojekt war ein großer Erfolg.", + "example_sentence_english": "The pilot project was a great success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19736 + }, + { + "word": "Plantage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plantation", + "romanization": "Plantage", + "example_sentence_native": "Die Plantage produziert Kaffee.", + "example_sentence_english": "The plantation produces coffee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19738 + }, + { + "word": "plump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clumsy", + "romanization": "plump", + "example_sentence_native": "Er ist ein bisschen plump in seinen Bewegungen.", + "example_sentence_english": "He is a bit clumsy in his movements.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19739 + }, + { + "word": "Proportion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proportion", + "romanization": "Proportion", + "example_sentence_native": "Die Proportionen des Gebäudes sind beeindruckend.", + "example_sentence_english": "The proportions of the building are impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19743 + }, + { + "word": "Protestantismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestantism", + "romanization": "Protestantismus", + "example_sentence_native": "Der Protestantismus ist eine der Hauptrichtungen des Christentums.", + "example_sentence_english": "Protestantism is one of the main branches of Christianity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19744 + }, + { + "word": "Rechtsanspruch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal claim", + "romanization": "Rechtsanspruch", + "example_sentence_native": "Er hat einen Rechtsanspruch auf Entschädigung.", + "example_sentence_english": "He has a legal claim to compensation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19746 + }, + { + "word": "Regent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regent", + "romanization": "Regent", + "example_sentence_native": "Der Prinz war der Regent während der Krankheit des Königs.", + "example_sentence_english": "The prince was the regent during the king's illness.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19747 + }, + { + "word": "reinfallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall for (a trick)", + "romanization": "reinfallen", + "example_sentence_native": "Lass dich nicht auf diesen Trick reinfallen!", + "example_sentence_english": "Don't fall for this trick!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rein", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19749 + }, + { + "word": "Replik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "replica", + "romanization": "Replik", + "example_sentence_native": "Die Replik des Künstlers war beeindruckend.", + "example_sentence_english": "The artist's replica was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19750 + }, + { + "word": "Ritz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scratch", + "romanization": "Ritz", + "example_sentence_native": "Es gab einen kleinen Ritz im Glas.", + "example_sentence_english": "There was a small scratch in the glass.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19752 + }, + { + "word": "Rückbau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismantling", + "romanization": "Rückbau", + "example_sentence_native": "Der Rückbau des alten Gebäudes beginnt nächste Woche.", + "example_sentence_english": "The dismantling of the old building begins next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19755 + }, + { + "word": "Saisonbeginn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "start of the season", + "romanization": "Saisonbeginn", + "example_sentence_native": "Der Saisonbeginn für den Wintersport ist im Dezember.", + "example_sentence_english": "The start of the season for winter sports is in December.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19756 + }, + { + "word": "Sakrament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrament", + "romanization": "Sakrament", + "example_sentence_native": "Die Taufe ist ein wichtiges Sakrament im Christentum.", + "example_sentence_english": "Baptism is an important sacrament in Christianity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19757 + }, + { + "word": "Samstagmorgen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Saturday morning", + "romanization": "Samstagmorgen", + "example_sentence_native": "Am Samstagmorgen schlafe ich gerne lange.", + "example_sentence_english": "On Saturday morning, I like to sleep in.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19759 + }, + { + "word": "Schauspielerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acting (the art;profession)", + "romanization": "Schauspielerei", + "example_sentence_native": "Die Schauspielerei ist eine anspruchsvolle Kunstform.", + "example_sentence_english": "Acting is a demanding art form.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19760 + }, + { + "word": "Schauspielerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actress", + "romanization": "Schauspielerin", + "example_sentence_native": "Die Schauspielerin spielte ihre Rolle sehr überzeugend.", + "example_sentence_english": "The actress played her role very convincingly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19761 + }, + { + "word": "Schweinehund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inner weaker self", + "romanization": "Schweinehund", + "example_sentence_native": "Ich muss meinen inneren Schweinehund überwinden, um Sport zu treiben.", + "example_sentence_english": "I have to overcome my inner weaker self to exercise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19762 + }, + { + "word": "schwindelig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dizzy", + "romanization": "schwindelig", + "example_sentence_native": "Mir ist schwindelig, wenn ich zu schnell aufstehe.", + "example_sentence_english": "I feel dizzy when I stand up too quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19763 + }, + { + "word": "Schwur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oath", + "romanization": "Schwur", + "example_sentence_native": "Er leistete einen feierlichen Schwur.", + "example_sentence_english": "He took a solemn oath.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19764 + }, + { + "word": "schütten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pour", + "romanization": "schütten", + "example_sentence_native": "Bitte schütten Sie den Kaffee in die Tasse.", + "example_sentence_english": "Please pour the coffee into the cup.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19765 + }, + { + "word": "Seiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rope maker", + "romanization": "Seiler", + "example_sentence_native": "Der Seiler fertigt starke Seile für Schiffe.", + "example_sentence_english": "The rope maker produces strong ropes for ships.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19767 + }, + { + "word": "Sekundarstufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary level", + "romanization": "Sekundarstufe", + "example_sentence_native": "Nach der Grundschule besuchen die Kinder die Sekundarstufe.", + "example_sentence_english": "After primary school, children attend secondary level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19768 + }, + { + "word": "Selbsthilfegruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-help group", + "romanization": "Selbsthilfegruppe", + "example_sentence_native": "Sie fand Unterstützung in einer Selbsthilfegruppe.", + "example_sentence_english": "She found support in a self-help group.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19769 + }, + { + "word": "Selbstkritik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-criticism", + "romanization": "Selbstkritik", + "example_sentence_native": "Ein gewisses Maß an Selbstkritik ist wichtig für die persönliche Entwicklung.", + "example_sentence_english": "A certain degree of self-criticism is important for personal development.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19770 + }, + { + "word": "Semantik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semantics", + "romanization": "Semantik", + "example_sentence_native": "Die Semantik befasst sich mit der Bedeutung von Wörtern und Sätzen.", + "example_sentence_english": "Semantics deals with the meaning of words and sentences.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19772 + }, + { + "word": "Sonnensystem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar system", + "romanization": "Sonnensystem", + "example_sentence_native": "Die Erde ist ein Planet im Sonnensystem.", + "example_sentence_english": "Earth is a planet in the solar system.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19775 + }, + { + "word": "Spagat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "splits (gymnastics);balancing act (figurative)", + "romanization": "Spagat", + "example_sentence_native": "Sie kann einen perfekten Spagat machen.", + "example_sentence_english": "She can do a perfect split.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19776 + }, + { + "word": "Spedition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freight forwarding company", + "romanization": "Spedition", + "example_sentence_native": "Die Spedition liefert die Waren weltweit.", + "example_sentence_english": "The freight forwarding company delivers goods worldwide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19778 + }, + { + "word": "Spengler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plumber;tinsmith", + "romanization": "Spengler", + "example_sentence_native": "Der Spengler reparierte das undichte Dach.", + "example_sentence_english": "The tinsmith repaired the leaky roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19779 + }, + { + "word": "Spielklasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "league;division (sports)", + "romanization": "Spielklasse", + "example_sentence_native": "Die Mannschaft spielt in der höchsten Spielklasse.", + "example_sentence_english": "The team plays in the highest league.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19780 + }, + { + "word": "Sportwette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sports bet", + "romanization": "Sportwette", + "example_sentence_native": "Er hat eine Sportwette auf das Fußballspiel platziert.", + "example_sentence_english": "He placed a sports bet on the football game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19781 + }, + { + "word": "Staatsgebiet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "national territory;state territory", + "romanization": "Staatsgebiet", + "example_sentence_native": "Das Schiff befand sich außerhalb des Staatsgebiets.", + "example_sentence_english": "The ship was outside the national territory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19783 + }, + { + "word": "straff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tight;taut;firm", + "romanization": "straff", + "example_sentence_native": "Die Haut ist straff und glatt.", + "example_sentence_english": "The skin is firm and smooth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19786 + }, + { + "word": "stramm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taut;stiff;upright", + "romanization": "stramm", + "example_sentence_native": "Er stand stramm vor dem Offizier.", + "example_sentence_english": "He stood at attention in front of the officer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19787 + }, + { + "word": "Säuberung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cleansing;purge;purification", + "romanization": "Säuberung", + "example_sentence_native": "Die Säuberung des Waldes ist wichtig für die Umwelt.", + "example_sentence_english": "The cleansing of the forest is important for the environment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19789 + }, + { + "word": "Tapete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallpaper", + "romanization": "Tapete", + "example_sentence_native": "Wir haben neue Tapete im Wohnzimmer.", + "example_sentence_english": "We have new wallpaper in the living room.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19791 + }, + { + "word": "Thronfolger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heir to the throne;successor", + "romanization": "Thronfolger", + "example_sentence_native": "Der Thronfolger wird bald gekrönt.", + "example_sentence_english": "The heir to the throne will soon be crowned.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19792 + }, + { + "word": "Titelgewinn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "title win;winning the title", + "romanization": "Titelgewinn", + "example_sentence_native": "Der Titelgewinn war ein großer Erfolg für das Team.", + "example_sentence_english": "The title win was a great success for the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19794 + }, + { + "word": "Trampolin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trampoline", + "romanization": "Trampolin", + "example_sentence_native": "Die Kinder springen auf dem Trampolin.", + "example_sentence_english": "The children are jumping on the trampoline.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19796 + }, + { + "word": "Transplantation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transplantation", + "romanization": "Transplantation", + "example_sentence_native": "Die Transplantation war erfolgreich.", + "example_sentence_english": "The transplantation was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19797 + }, + { + "word": "Tyrann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tyrant", + "romanization": "Tyrann", + "example_sentence_native": "Der Tyrann unterdrückte sein Volk mit eiserner Hand.", + "example_sentence_english": "The tyrant oppressed his people with an iron hand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19801 + }, + { + "word": "umrahmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frame;to encircle", + "romanization": "umrahmen", + "example_sentence_native": "Sie wollte das Foto mit einem schönen Rahmen umrahmen.", + "example_sentence_english": "She wanted to frame the photo with a beautiful frame.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19802 + }, + { + "word": "unbehelligt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unmolested;undisturbed", + "romanization": "unbehelligt", + "example_sentence_native": "Er konnte unbehelligt seinen Weg fortsetzen.", + "example_sentence_english": "He could continue his way undisturbed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19803 + }, + { + "word": "unlogisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illogical", + "romanization": "unlogisch", + "example_sentence_native": "Seine Argumentation war völlig unlogisch und schwer nachvollziehbar.", + "example_sentence_english": "His argumentation was completely illogical and difficult to follow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19804 + }, + { + "word": "Unterhaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lower house (of parliament)", + "romanization": "Unterhaus", + "example_sentence_native": "Das neue Gesetz wurde im Unterhaus verabschiedet.", + "example_sentence_english": "The new law was passed in the lower house.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19805 + }, + { + "word": "unternehmerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrepreneurial", + "romanization": "unternehmerisch", + "example_sentence_native": "Sie hat eine sehr unternehmerische Denkweise und viele Ideen.", + "example_sentence_english": "She has a very entrepreneurial mindset and many ideas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19806 + }, + { + "word": "verbittern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to embitter", + "romanization": "verbittern", + "example_sentence_native": "Die ständigen Rückschläge konnten ihn verbittern.", + "example_sentence_english": "The constant setbacks could embitter him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19808 + }, + { + "word": "Vereinsmitglied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "club member", + "romanization": "Vereinsmitglied", + "example_sentence_native": "Er ist seit vielen Jahren ein aktives Vereinsmitglied.", + "example_sentence_english": "He has been an active club member for many years.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19809 + }, + { + "word": "Verfehlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transgression;misconduct", + "romanization": "Verfehlung", + "example_sentence_native": "Seine Verfehlung hatte ernste Konsequenzen für seine Karriere.", + "example_sentence_english": "His transgression had serious consequences for his career.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19810 + }, + { + "word": "Verjährung", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "statute of limitations;prescription", + "romanization": "Verjährung", + "example_sentence_native": "Die Verjährung der Forderung ist eingetreten.", + "example_sentence_english": "The statute of limitations for the claim has expired.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19811 + }, + { + "word": "verlernen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unlearn;to forget (a skill)", + "romanization": "verlernen", + "example_sentence_native": "Man kann das Fahrradfahren nicht verlernen.", + "example_sentence_english": "You cannot unlearn how to ride a bike.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19812 + }, + { + "word": "Verlässlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliability;dependability", + "romanization": "Verlässlichkeit", + "example_sentence_native": "Ihre Verlässlichkeit ist eine ihrer größten Stärken.", + "example_sentence_english": "Her reliability is one of her greatest strengths.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19813 + }, + { + "word": "Vernissage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vernissage;private viewing (of an art exhibition)", + "romanization": "Vernissage", + "example_sentence_native": "Die Vernissage der neuen Kunstausstellung war sehr gut besucht.", + "example_sentence_english": "The vernissage of the new art exhibition was very well attended.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19814 + }, + { + "word": "verschönern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beautify;to embellish", + "romanization": "verschönern", + "example_sentence_native": "Sie wollte ihren Garten mit neuen Blumen verschönern.", + "example_sentence_english": "She wanted to beautify her garden with new flowers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19815 + }, + { + "word": "Verteiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distributor;manifold;mailing list", + "romanization": "Verteiler", + "example_sentence_native": "Bitte fügen Sie meine E-Mail-Adresse zum Verteiler hinzu.", + "example_sentence_english": "Please add my email address to the mailing list.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19816 + }, + { + "word": "Volkslied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folk song", + "romanization": "Volkslied", + "example_sentence_native": "Sie sangen ein altes deutsches Volkslied am Lagerfeuer.", + "example_sentence_english": "They sang an old German folk song by the campfire.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19817 + }, + { + "word": "vorschieben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push forward;to put forward (an excuse)", + "romanization": "vorschieben", + "example_sentence_native": "Er versuchte, eine Ausrede vorzuschieben, um nicht mitzukommen.", + "example_sentence_english": "He tried to put forward an excuse not to come along.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "schieben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19818 + }, + { + "word": "Wahlhelfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election assistant;volunteer", + "romanization": "Wahlhelfer", + "example_sentence_native": "Viele Wahlhelfer sorgten für einen reibungslosen Ablauf der Abstimmung.", + "example_sentence_english": "Many election assistants ensured a smooth voting process.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19819 + }, + { + "word": "wasserdicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterproof", + "romanization": "wasserdicht", + "example_sentence_native": "Meine neue Uhr ist wasserdicht.", + "example_sentence_english": "My new watch is waterproof.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19821 + }, + { + "word": "wegdenken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to imagine away;to disregard", + "romanization": "wegdenken", + "example_sentence_native": "Man kann sich die Technologie von heute nicht mehr wegdenken.", + "example_sentence_english": "One can no longer imagine away today's technology.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "denken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19822 + }, + { + "word": "Weihrauch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frankincense", + "romanization": "Weihrauch", + "example_sentence_native": "Der Geruch von Weihrauch erfüllte die Kirche.", + "example_sentence_english": "The smell of frankincense filled the church.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19823 + }, + { + "word": "weitläufig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extensive;spacious", + "romanization": "weitläufig", + "example_sentence_native": "Das Anwesen hat einen weitläufigen Garten.", + "example_sentence_english": "The estate has an extensive garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19825 + }, + { + "word": "Weltpolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "world politics", + "romanization": "Weltpolitik", + "example_sentence_native": "Die Weltpolitik ist komplex und ständig im Wandel.", + "example_sentence_english": "World politics is complex and constantly changing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19826 + }, + { + "word": "Wettervorhersage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weather forecast", + "romanization": "Wettervorhersage", + "example_sentence_native": "Die Wettervorhersage für morgen ist sonnig.", + "example_sentence_english": "The weather forecast for tomorrow is sunny.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19829 + }, + { + "word": "Willkommenskultur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "welcoming culture", + "romanization": "Willkommenskultur", + "example_sentence_native": "Deutschland diskutiert oft über die Willkommenskultur.", + "example_sentence_english": "Germany often discusses the welcoming culture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19830 + }, + { + "word": "Wintersport", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winter sports", + "romanization": "Wintersport", + "example_sentence_native": "Im Winter machen viele Leute Wintersport.", + "example_sentence_english": "In winter, many people do winter sports.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19831 + }, + { + "word": "Wochenzeitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekly newspaper", + "romanization": "Wochenzeitung", + "example_sentence_native": "Ich lese jede Woche die Wochenzeitung.", + "example_sentence_english": "I read the weekly newspaper every week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19833 + }, + { + "word": "Wohnanlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "housing complex", + "romanization": "Wohnanlage", + "example_sentence_native": "Sie wohnen in einer großen Wohnanlage.", + "example_sentence_english": "They live in a large housing complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19834 + }, + { + "word": "Wohnungsnot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "housing shortage", + "romanization": "Wohnungsnot", + "example_sentence_native": "In vielen Städten herrscht Wohnungsnot.", + "example_sentence_english": "There is a housing shortage in many cities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19835 + }, + { + "word": "würgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to choke;to gag", + "romanization": "würgen", + "example_sentence_native": "Er musste würgen, als er das roch.", + "example_sentence_english": "He had to gag when he smelled that.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19836 + }, + { + "word": "würzen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to season;to spice", + "romanization": "würzen", + "example_sentence_native": "Vergiss nicht, das Essen zu würzen.", + "example_sentence_english": "Don't forget to season the food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19837 + }, + { + "word": "zornig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angry;wrathful", + "romanization": "zornig", + "example_sentence_native": "Er war zornig über die Ungerechtigkeit.", + "example_sentence_english": "He was angry about the injustice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19839 + }, + { + "word": "zufälligerweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coincidentally", + "romanization": "zufälligerweise", + "example_sentence_native": "Ich habe ihn zufälligerweise im Supermarkt getroffen.", + "example_sentence_english": "I coincidentally met him at the supermarket.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 19841 + }, + { + "word": "Zugverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "train traffic", + "romanization": "Zugverkehr", + "example_sentence_native": "Der Zugverkehr war wegen des Sturms eingestellt.", + "example_sentence_english": "The train traffic was stopped due to the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19842 + }, + { + "word": "Übermacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superior force;overwhelming power", + "romanization": "Übermacht", + "example_sentence_native": "Sie kämpften gegen eine Übermacht.", + "example_sentence_english": "They fought against a superior force.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19846 + }, + { + "word": "Abendstunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evening hour", + "romanization": "Abendstunde", + "example_sentence_native": "In der Abendstunde kehrte Ruhe ein.", + "example_sentence_english": "In the evening hour, peace returned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19847 + }, + { + "word": "ablehnend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejecting;negative;disapproving", + "romanization": "ablehnend", + "example_sentence_native": "Er reagierte ablehnend auf den Vorschlag.", + "example_sentence_english": "He reacted negatively to the proposal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19848 + }, + { + "word": "Abstraktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstraction", + "romanization": "Abstraktion", + "example_sentence_native": "Die Abstraktion ist ein wichtiger Schritt im Denkprozess.", + "example_sentence_english": "Abstraction is an important step in the thought process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19849 + }, + { + "word": "abwischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wipe off;to wipe away", + "romanization": "abwischen", + "example_sentence_native": "Bitte wisch den Tisch ab.", + "example_sentence_english": "Please wipe off the table.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "wischen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19850 + }, + { + "word": "Adressat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addressee;recipient", + "romanization": "Adressat", + "example_sentence_native": "Der Brief wurde an den falschen Adressaten geschickt.", + "example_sentence_english": "The letter was sent to the wrong addressee.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19851 + }, + { + "word": "alleinstehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "single;standing alone;solitary", + "romanization": "alleinstehend", + "example_sentence_native": "Sie ist eine alleinstehende Mutter.", + "example_sentence_english": "She is a single mother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19855 + }, + { + "word": "allerletzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very last;ultimate", + "romanization": "allerletzt", + "example_sentence_native": "Das war seine allerletzte Chance.", + "example_sentence_english": "That was his very last chance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19856 + }, + { + "word": "Amnestie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amnesty", + "romanization": "Amnestie", + "example_sentence_native": "Die Regierung gewährte eine Amnestie für politische Gefangene.", + "example_sentence_english": "The government granted an amnesty for political prisoners.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19858 + }, + { + "word": "Anbeginn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very beginning;outset", + "romanization": "Anbeginn", + "example_sentence_native": "Vom Anbeginn der Zeit an.", + "example_sentence_english": "From the very beginning of time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19859 + }, + { + "word": "Aneignung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquisition;appropriation", + "romanization": "Aneignung", + "example_sentence_native": "Die Aneignung von Wissen ist entscheidend für den Erfolg.", + "example_sentence_english": "The acquisition of knowledge is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19860 + }, + { + "word": "Anfertigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production;manufacturing", + "romanization": "Anfertigung", + "example_sentence_native": "Die Anfertigung des Prototyps dauerte Wochen.", + "example_sentence_english": "The production of the prototype took weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19861 + }, + { + "word": "anwachsen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grow;to increase", + "romanization": "anwachsen", + "example_sentence_native": "Die Bevölkerung wird voraussichtlich weiter anwachsen.", + "example_sentence_english": "The population is expected to continue to grow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "wachsen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19863 + }, + { + "word": "anziehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attractive;appealing", + "romanization": "anziehend", + "example_sentence_native": "Sie fand die Idee sehr anziehend.", + "example_sentence_english": "She found the idea very appealing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19864 + }, + { + "word": "Anästhesie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anesthesia", + "romanization": "Anästhesie", + "example_sentence_native": "Vor der Operation erhielt der Patient eine Anästhesie.", + "example_sentence_english": "Before the operation, the patient received anesthesia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19865 + }, + { + "word": "Arbeitsagentur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employment agency", + "romanization": "Arbeitsagentur", + "example_sentence_native": "Er suchte Hilfe bei der Arbeitsagentur, um einen Job zu finden.", + "example_sentence_english": "He sought help from the employment agency to find a job.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19866 + }, + { + "word": "Aschenbecher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ashtray", + "romanization": "Aschenbecher", + "example_sentence_native": "Bitte benutzen Sie den Aschenbecher für Ihre Zigaretten.", + "example_sentence_english": "Please use the ashtray for your cigarettes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19867 + }, + { + "word": "Asylverfahren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asylum procedure", + "romanization": "Asylverfahren", + "example_sentence_native": "Das Asylverfahren kann sehr lange dauern.", + "example_sentence_english": "The asylum procedure can take a very long time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19869 + }, + { + "word": "Atheismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atheism", + "romanization": "Atheismus", + "example_sentence_native": "Atheismus ist die Ablehnung des Glaubens an Götter.", + "example_sentence_english": "Atheism is the rejection of belief in gods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19870 + }, + { + "word": "aushändigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hand over;to deliver", + "romanization": "aushändigen", + "example_sentence_native": "Der Beamte wird Ihnen die Dokumente aushändigen.", + "example_sentence_english": "The official will hand over the documents to you.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "händigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19871 + }, + { + "word": "ausräumen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clear out;to empty", + "romanization": "ausräumen", + "example_sentence_native": "Wir müssen den Schrank ausräumen, bevor wir umziehen.", + "example_sentence_english": "We have to clear out the closet before we move.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "räumen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19872 + }, + { + "word": "ausrechnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to calculate;to figure out", + "romanization": "ausrechnen", + "example_sentence_native": "Kannst du bitte ausrechnen, wie viel das kostet?", + "example_sentence_english": "Can you please calculate how much that costs?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rechnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19873 + }, + { + "word": "Babysitter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "babysitter", + "romanization": "Babysitter", + "example_sentence_native": "Wir brauchen einen Babysitter für heute Abend.", + "example_sentence_english": "We need a babysitter for tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19874 + }, + { + "word": "Baukunst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "architecture;art of building", + "romanization": "Baukunst", + "example_sentence_native": "Die Baukunst des Mittelalters ist beeindruckend.", + "example_sentence_english": "The architecture of the Middle Ages is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19875 + }, + { + "word": "Bauphase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction phase", + "romanization": "Bauphase", + "example_sentence_native": "Das Projekt befindet sich in der letzten Bauphase.", + "example_sentence_english": "The project is in its final construction phase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19876 + }, + { + "word": "Befall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infestation;attack", + "romanization": "Befall", + "example_sentence_native": "Der Befall mit Schädlingen muss schnell bekämpft werden.", + "example_sentence_english": "The pest infestation must be combated quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19877 + }, + { + "word": "befremdlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strange;odd;alienating", + "romanization": "befremdlich", + "example_sentence_native": "Sein Verhalten wirkte auf mich sehr befremdlich.", + "example_sentence_english": "His behavior seemed very strange to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19878 + }, + { + "word": "Belebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revitalization;invigoration", + "romanization": "Belebung", + "example_sentence_native": "Die Belebung der Wirtschaft ist ein wichtiges Ziel.", + "example_sentence_english": "The revitalization of the economy is an important goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19879 + }, + { + "word": "Belehrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instruction", + "romanization": "Belehrung", + "example_sentence_native": "Die Belehrung über die neuen Regeln war sehr hilfreich.", + "example_sentence_english": "The instruction about the new rules was very helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19880 + }, + { + "word": "Betroffenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismay", + "romanization": "Betroffenheit", + "example_sentence_native": "Die Betroffenheit über das Unglück war groß.", + "example_sentence_english": "The dismay about the accident was great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19882 + }, + { + "word": "bezaubernd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charming", + "romanization": "bezaubernd", + "example_sentence_native": "Sie hatte ein bezauberndes Lächeln.", + "example_sentence_english": "She had a charming smile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19883 + }, + { + "word": "Bildmaterial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visual material", + "romanization": "Bildmaterial", + "example_sentence_native": "Das Bildmaterial für die Präsentation ist fertig.", + "example_sentence_english": "The visual material for the presentation is ready.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19884 + }, + { + "word": "binär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binary", + "romanization": "binär", + "example_sentence_native": "Computer arbeiten mit binären Codes.", + "example_sentence_english": "Computers work with binary codes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19885 + }, + { + "word": "Bissel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a little bit", + "romanization": "Bissel", + "example_sentence_native": "Kannst du mir ein Bissel helfen?", + "example_sentence_english": "Can you help me a little bit?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19887 + }, + { + "word": "Blinker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turn signal", + "romanization": "Blinker", + "example_sentence_native": "Vergiss nicht, den Blinker zu setzen, wenn du abbiegst.", + "example_sentence_english": "Don't forget to use the turn signal when you turn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19888 + }, + { + "word": "Bombenanschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bomb attack", + "romanization": "Bombenanschlag", + "example_sentence_native": "Der Bombenanschlag verursachte große Zerstörung.", + "example_sentence_english": "The bomb attack caused great destruction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19890 + }, + { + "word": "Brit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Briton", + "romanization": "Brit", + "example_sentence_native": "Er ist ein Brit, der in Berlin lebt.", + "example_sentence_english": "He is a Brit who lives in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19893 + }, + { + "word": "Brokkoli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broccoli", + "romanization": "Brokkoli", + "example_sentence_native": "Ich mag Brokkoli sehr gerne.", + "example_sentence_english": "I like broccoli very much.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19894 + }, + { + "word": "Brunch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brunch", + "romanization": "Brunch", + "example_sentence_native": "Wir treffen uns am Sonntag zum Brunch.", + "example_sentence_english": "We are meeting for brunch on Sunday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19895 + }, + { + "word": "Buchladen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookstore", + "romanization": "Buchladen", + "example_sentence_native": "Ich kaufe meine Bücher immer im Buchladen um die Ecke.", + "example_sentence_english": "I always buy my books at the bookstore around the corner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19897 + }, + { + "word": "Bürgschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guarantee", + "romanization": "Bürgschaft", + "example_sentence_native": "Er musste eine Bürgschaft für den Kredit leisten.", + "example_sentence_english": "He had to provide a guarantee for the loan.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19898 + }, + { + "word": "darbieten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to offer;to present;to perform", + "romanization": "darbieten", + "example_sentence_native": "Der Künstler wird ein neues Stück darbieten.", + "example_sentence_english": "The artist will perform a new piece.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dar", + "base_verb": "bieten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19911 + }, + { + "word": "Deportation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deportation", + "romanization": "Deportation", + "example_sentence_native": "Die Deportation wurde von der Regierung angeordnet.", + "example_sentence_english": "The deportation was ordered by the government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19913 + }, + { + "word": "Designerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female designer", + "romanization": "Designerin", + "example_sentence_native": "Sie ist eine talentierte Designerin.", + "example_sentence_english": "She is a talented female designer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19914 + }, + { + "word": "Dreher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turner;cameraman", + "romanization": "Dreher", + "example_sentence_native": "Der Dreher arbeitet an der Drehbank.", + "example_sentence_english": "The turner works on the lathe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19921 + }, + { + "word": "Dunkelziffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark figure;unreported number", + "romanization": "Dunkelziffer", + "example_sentence_native": "Die Dunkelziffer der Infektionen ist wahrscheinlich viel höher.", + "example_sentence_english": "The dark figure of infections is probably much higher.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19923 + }, + { + "word": "Dunst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "haze;vapor;steam", + "romanization": "Dunst", + "example_sentence_native": "Am Morgen lag ein leichter Dunst über dem See.", + "example_sentence_english": "In the morning, there was a light haze over the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19924 + }, + { + "word": "Edelstein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gemstone;precious stone", + "romanization": "Edelstein", + "example_sentence_native": "Der Ring war mit einem wunderschönen Edelstein besetzt.", + "example_sentence_english": "The ring was set with a beautiful gemstone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19925 + }, + { + "word": "Einsatzort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "place of deployment;site of operation", + "romanization": "Einsatzort", + "example_sentence_native": "Die Feuerwehr erreichte schnell den Einsatzort.", + "example_sentence_english": "The fire department quickly reached the site of operation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19926 + }, + { + "word": "Eintopf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stew;one-pot meal", + "romanization": "Eintopf", + "example_sentence_native": "Zum Abendessen gab es einen herzhaften Eintopf.", + "example_sentence_english": "For dinner, there was a hearty stew.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19927 + }, + { + "word": "elastisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elastic;flexible", + "romanization": "elastisch", + "example_sentence_native": "Das Material ist sehr elastisch und reißfest.", + "example_sentence_english": "The material is very elastic and tear-resistant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19928 + }, + { + "word": "Empfindlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitivity;susceptibility", + "romanization": "Empfindlichkeit", + "example_sentence_native": "Er hat eine hohe Empfindlichkeit gegenüber Lärm.", + "example_sentence_english": "He has a high sensitivity to noise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19930 + }, + { + "word": "Energiekosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy costs", + "romanization": "Energiekosten", + "example_sentence_native": "Die Energiekosten sind in diesem Winter stark gestiegen.", + "example_sentence_english": "Energy costs have risen sharply this winter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19932 + }, + { + "word": "entbunden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delivered (of a baby);released (from duty)", + "romanization": "entbunden", + "example_sentence_native": "Die Mutter wurde gestern von einem gesunden Baby entbunden.", + "example_sentence_english": "The mother was delivered of a healthy baby yesterday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 19933 + }, + { + "word": "Entsendung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispatch;secondment;sending", + "romanization": "Entsendung", + "example_sentence_native": "Die Entsendung von Truppen wurde beschlossen.", + "example_sentence_english": "The dispatch of troops was decided.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19935 + }, + { + "word": "Erektion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erection", + "romanization": "Erektion", + "example_sentence_native": "Eine Erektion ist ein natürlicher physiologischer Vorgang.", + "example_sentence_english": "An erection is a natural physiological process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19938 + }, + { + "word": "ergründen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fathom;to explore", + "romanization": "ergründen", + "example_sentence_native": "Er versuchte, das Geheimnis zu ergründen.", + "example_sentence_english": "He tried to fathom the secret.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19940 + }, + { + "word": "erholsam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restful;relaxing", + "romanization": "erholsam", + "example_sentence_native": "Nach einem langen Tag ist ein erholsamer Schlaf wichtig.", + "example_sentence_english": "After a long day, a restful sleep is important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 19941 + }, + { + "word": "ermächtigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to authorize;to empower", + "romanization": "ermächtigen", + "example_sentence_native": "Der Anwalt wurde ermächtigt, in ihrem Namen zu handeln.", + "example_sentence_english": "The lawyer was authorized to act on her behalf.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19942 + }, + { + "word": "erstaunlicherweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprisingly;astonishingly", + "romanization": "erstaunlicherweise", + "example_sentence_native": "Erstaunlicherweise hat er die Prüfung bestanden.", + "example_sentence_english": "Surprisingly, he passed the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 19944 + }, + { + "word": "Feldmarschall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "field marshal", + "romanization": "Feldmarschall", + "example_sentence_native": "Der Feldmarschall gab den Befehl zum Angriff.", + "example_sentence_english": "The field marshal gave the order to attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19949 + }, + { + "word": "Flugverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "air traffic", + "romanization": "Flugverkehr", + "example_sentence_native": "Der Flugverkehr wurde wegen des Sturms eingestellt.", + "example_sentence_english": "Air traffic was suspended due to the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19951 + }, + { + "word": "Forschungszentrum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research center", + "romanization": "Forschungszentrum", + "example_sentence_native": "Das neue Forschungszentrum wird bald eröffnet.", + "example_sentence_english": "The new research center will open soon.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19952 + }, + { + "word": "Fraktur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fracture (bone);Fraktur (typeface)", + "romanization": "Fraktur", + "example_sentence_native": "Nach dem Unfall hatte sie eine Fraktur am Arm.", + "example_sentence_english": "After the accident, she had a fracture in her arm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19954 + }, + { + "word": "Freihandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free trade", + "romanization": "Freihandel", + "example_sentence_native": "Viele Länder befürworten den Freihandel.", + "example_sentence_english": "Many countries advocate for free trade.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19956 + }, + { + "word": "Freimaurer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Freemason", + "romanization": "Freimaurer", + "example_sentence_native": "Die Freimaurer sind eine alte Bruderschaft.", + "example_sentence_english": "The Freemasons are an old brotherhood.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19957 + }, + { + "word": "freundschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friendly;amicable", + "romanization": "freundschaftlich", + "example_sentence_native": "Sie führten ein freundschaftliches Gespräch.", + "example_sentence_english": "They had a friendly conversation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 19958 + }, + { + "word": "Fähnchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small flag;pennant", + "romanization": "Fähnchen", + "example_sentence_native": "Das Fähnchen wehte im Wind.", + "example_sentence_english": "The small flag waved in the wind.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19962 + }, + { + "word": "Förderprogramm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funding program;support program", + "romanization": "Förderprogramm", + "example_sentence_native": "Die Regierung hat ein neues Förderprogramm für Start-ups angekündigt.", + "example_sentence_english": "The government announced a new funding program for start-ups.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19963 + }, + { + "word": "Gartenhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garden shed;summer house", + "romanization": "Gartenhaus", + "example_sentence_native": "Wir lagern unsere Gartengeräte im Gartenhaus.", + "example_sentence_english": "We store our garden tools in the garden shed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19965 + }, + { + "word": "Gefährder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "potential threat;dangerous person", + "romanization": "Gefährder", + "example_sentence_native": "Die Polizei überwacht bekannte Gefährder.", + "example_sentence_english": "The police monitor known potential threats.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19967 + }, + { + "word": "Gegengewicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterweight;counterbalance", + "romanization": "Gegengewicht", + "example_sentence_native": "Das Gegengewicht sorgt für Stabilität.", + "example_sentence_english": "The counterweight ensures stability.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19968 + }, + { + "word": "geizig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stingy;greedy", + "romanization": "geizig", + "example_sentence_native": "Er ist sehr geizig und gibt selten Geld aus.", + "example_sentence_english": "He is very stingy and rarely spends money.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 19969 + }, + { + "word": "gelernt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "learned;skilled", + "romanization": "gelernt", + "example_sentence_native": "Sie ist eine gelernte Köchin.", + "example_sentence_english": "She is a skilled cook.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 19970 + }, + { + "word": "Gerste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barley", + "romanization": "Gerste", + "example_sentence_native": "Gerste wird oft zur Herstellung von Bier verwendet.", + "example_sentence_english": "Barley is often used for making beer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19971 + }, + { + "word": "Geselligkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociability;conviviality", + "romanization": "Geselligkeit", + "example_sentence_native": "Er schätzt die Geselligkeit mit Freunden.", + "example_sentence_english": "He values sociability with friends.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19972 + }, + { + "word": "Gesetzesentwurf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bill (draft law)", + "romanization": "Gesetzesentwurf", + "example_sentence_native": "Der Gesetzesentwurf wurde im Parlament diskutiert.", + "example_sentence_english": "The bill was discussed in parliament.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19973 + }, + { + "word": "Gesetzesänderung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amendment to a law;legal change", + "romanization": "Gesetzesänderung", + "example_sentence_native": "Die neue Gesetzesänderung tritt nächste Woche in Kraft.", + "example_sentence_english": "The new legal change comes into effect next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19974 + }, + { + "word": "Glyphosat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glyphosate", + "romanization": "Glyphosat", + "example_sentence_native": "Die Debatte über Glyphosat dauert an.", + "example_sentence_english": "The debate about glyphosate continues.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19975 + }, + { + "word": "Grosshandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wholesale", + "romanization": "Grosshandel", + "example_sentence_native": "Er arbeitet im Grosshandel mit Lebensmitteln.", + "example_sentence_english": "He works in food wholesale.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19977 + }, + { + "word": "Gruppenspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "group game;group match", + "romanization": "Gruppenspiel", + "example_sentence_native": "Das erste Gruppenspiel endete unentschieden.", + "example_sentence_english": "The first group game ended in a draw.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19979 + }, + { + "word": "Gästehaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guesthouse", + "romanization": "Gästehaus", + "example_sentence_native": "Wir übernachteten in einem gemütlichen Gästehaus.", + "example_sentence_english": "We stayed overnight in a cozy guesthouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19981 + }, + { + "word": "Haarschnitt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "haircut", + "romanization": "Haarschnitt", + "example_sentence_native": "Ich brauche einen neuen Haarschnitt.", + "example_sentence_english": "I need a new haircut.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19982 + }, + { + "word": "Handhabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handle;means;leverage", + "romanization": "Handhabe", + "example_sentence_native": "Er hatte keine Handhabe gegen die Entscheidung.", + "example_sentence_english": "He had no leverage against the decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19983 + }, + { + "word": "Haustüre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "front door", + "romanization": "Haustüre", + "example_sentence_native": "Bitte schließe die Haustüre, wenn du gehst.", + "example_sentence_english": "Please close the front door when you leave.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19986 + }, + { + "word": "heften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to staple;to attach", + "romanization": "heften", + "example_sentence_native": "Er musste die Papiere zusammenheften.", + "example_sentence_english": "He had to staple the papers together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19987 + }, + { + "word": "hingeben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to devote;to surrender", + "romanization": "hingeben", + "example_sentence_native": "Sie wollte sich ganz der Kunst hingeben.", + "example_sentence_english": "She wanted to devote herself entirely to art.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19988 + }, + { + "word": "Häme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malice;schadenfreude", + "romanization": "Häme", + "example_sentence_native": "Seine Worte waren voller Häme.", + "example_sentence_english": "His words were full of malice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19989 + }, + { + "word": "hämmern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hammer", + "romanization": "hämmern", + "example_sentence_native": "Der Zimmermann hämmerte Nägel in das Holz.", + "example_sentence_english": "The carpenter hammered nails into the wood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 19990 + }, + { + "word": "hängend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hanging;suspended", + "romanization": "hängend", + "example_sentence_native": "Die hängenden Blumenkörbe schmückten den Balkon.", + "example_sentence_english": "The hanging flower baskets decorated the balcony.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 19991 + }, + { + "word": "Hängst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stallion", + "romanization": "Hängst", + "example_sentence_native": "Der Hängst galoppierte über die Weide.", + "example_sentence_english": "The stallion galloped across the pasture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19992 + }, + { + "word": "Immobilienmakler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "real estate agent", + "romanization": "Immobilienmakler", + "example_sentence_native": "Wir haben einen Immobilienmakler beauftragt, unser Haus zu verkaufen.", + "example_sentence_english": "We hired a real estate agent to sell our house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19994 + }, + { + "word": "Inserat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advertisement;classified ad", + "romanization": "Inserat", + "example_sentence_native": "Ich habe ein interessantes Inserat in der Zeitung gefunden.", + "example_sentence_english": "I found an interesting advertisement in the newspaper.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19996 + }, + { + "word": "Interessenvertretung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interest group;representation of interests", + "romanization": "Interessenvertretung", + "example_sentence_native": "Die Gewerkschaft ist eine wichtige Interessenvertretung der Arbeitnehmer.", + "example_sentence_english": "The trade union is an important interest group for employees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19997 + }, + { + "word": "Intervall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interval", + "romanization": "Intervall", + "example_sentence_native": "Zwischen den Übungen gab es ein kurzes Intervall.", + "example_sentence_english": "There was a short interval between the exercises.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 19998 + }, + { + "word": "Ketzer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heretic", + "romanization": "Ketzer", + "example_sentence_native": "Im Mittelalter wurden Ketzer oft verfolgt.", + "example_sentence_english": "In the Middle Ages, heretics were often persecuted.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20006 + }, + { + "word": "Klassenfahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school trip", + "romanization": "Klassenfahrt", + "example_sentence_native": "Die Klassenfahrt nach Berlin war sehr aufregend.", + "example_sentence_english": "The school trip to Berlin was very exciting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20007 + }, + { + "word": "klimatisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climatic", + "romanization": "klimatisch", + "example_sentence_native": "Die klimatischen Bedingungen in dieser Region sind extrem.", + "example_sentence_english": "The climatic conditions in this region are extreme.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20008 + }, + { + "word": "Klumpen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lump;clump", + "romanization": "Klumpen", + "example_sentence_native": "Im Teig waren noch einige Klumpen Mehl.", + "example_sentence_english": "There were still some lumps of flour in the dough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20009 + }, + { + "word": "Knick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crease;kink", + "romanization": "Knick", + "example_sentence_native": "Das Papier hatte einen unschönen Knick.", + "example_sentence_english": "The paper had an unsightly crease.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20010 + }, + { + "word": "Konsortium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consortium", + "romanization": "Konsortium", + "example_sentence_native": "Ein Konsortium von Unternehmen hat das Projekt finanziert.", + "example_sentence_english": "A consortium of companies financed the project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20011 + }, + { + "word": "Kopfweh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "headache", + "romanization": "Kopfweh", + "example_sentence_native": "Ich habe heute Morgen starkes Kopfweh.", + "example_sentence_english": "I have a bad headache this morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20012 + }, + { + "word": "Krücke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crutch", + "romanization": "Krücke", + "example_sentence_native": "Nach dem Unfall musste er mit Krücken gehen.", + "example_sentence_english": "After the accident, he had to walk with crutches.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20013 + }, + { + "word": "Kultusministerium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ministry of Education;Cultural Affairs", + "romanization": "Kultusministerium", + "example_sentence_native": "Das Kultusministerium ist für Bildung und Kultur zuständig.", + "example_sentence_english": "The Ministry of Education is responsible for education and culture.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20014 + }, + { + "word": "Kunstausstellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "art exhibition", + "romanization": "Kunstausstellung", + "example_sentence_native": "Wir besuchten eine interessante Kunstausstellung in der Galerie.", + "example_sentence_english": "We visited an interesting art exhibition in the gallery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20015 + }, + { + "word": "Kurort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spa town;health resort", + "romanization": "Kurort", + "example_sentence_native": "Viele Menschen fahren in einen Kurort, um sich zu erholen.", + "example_sentence_english": "Many people go to a spa town to recover.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20016 + }, + { + "word": "Köstlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicacy;deliciousness", + "romanization": "Köstlichkeit", + "example_sentence_native": "Die Torte war eine wahre Köstlichkeit.", + "example_sentence_english": "The cake was a true delicacy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20017 + }, + { + "word": "Lagerhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warehouse", + "romanization": "Lagerhaus", + "example_sentence_native": "Die Waren werden im Lagerhaus gelagert.", + "example_sentence_english": "The goods are stored in the warehouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20018 + }, + { + "word": "Landeskunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultural studies", + "romanization": "Landeskunde", + "example_sentence_native": "Im Deutschunterricht lernen wir viel über Landeskunde.", + "example_sentence_english": "In German class, we learn a lot about cultural studies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20020 + }, + { + "word": "Landesvorstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state executive board", + "romanization": "Landesvorstand", + "example_sentence_native": "Der Landesvorstand traf sich zur jährlichen Sitzung.", + "example_sentence_english": "The state executive board met for the annual meeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20021 + }, + { + "word": "Landtagsfraktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state parliamentary group", + "romanization": "Landtagsfraktion", + "example_sentence_native": "Die Landtagsfraktion stimmte über das neue Gesetz ab.", + "example_sentence_english": "The state parliamentary group voted on the new law.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20022 + }, + { + "word": "Laube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arbor", + "romanization": "Laube", + "example_sentence_native": "Wir saßen gemütlich in der Laube im Garten.", + "example_sentence_english": "We sat comfortably in the arbor in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20024 + }, + { + "word": "lebenswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worth living", + "romanization": "lebenswert", + "example_sentence_native": "Berlin ist eine sehr lebenswerte Stadt.", + "example_sentence_english": "Berlin is a very livable city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20027 + }, + { + "word": "Leistungssteigerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "performance increase", + "romanization": "Leistungssteigerung", + "example_sentence_native": "Das neue System führte zu einer deutlichen Leistungssteigerung.", + "example_sentence_english": "The new system led to a significant performance increase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20028 + }, + { + "word": "Literaturgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "literary history", + "romanization": "Literaturgeschichte", + "example_sentence_native": "Sie studiert deutsche Literaturgeschichte an der Universität.", + "example_sentence_english": "She studies German literary history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20032 + }, + { + "word": "Magnetfeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnetic field", + "romanization": "Magnetfeld", + "example_sentence_native": "Die Erde hat ein schützendes Magnetfeld.", + "example_sentence_english": "The Earth has a protective magnetic field.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20033 + }, + { + "word": "Maschinengewehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "machine gun", + "romanization": "Maschinengewehr", + "example_sentence_native": "Das Maschinengewehr wurde im Krieg eingesetzt.", + "example_sentence_english": "The machine gun was used in the war.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20037 + }, + { + "word": "Mediengruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "media group", + "romanization": "Mediengruppe", + "example_sentence_native": "Die Mediengruppe besitzt mehrere Zeitungen und Fernsehsender.", + "example_sentence_english": "The media group owns several newspapers and television channels.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20039 + }, + { + "word": "Milz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spleen", + "romanization": "Milz", + "example_sentence_native": "Die Milz ist ein wichtiges Organ im Körper.", + "example_sentence_english": "The spleen is an important organ in the body.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20043 + }, + { + "word": "mitkriegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notice;to get wind of;to understand", + "romanization": "mitkriegen", + "example_sentence_native": "Hast du mitgekriegt, was passiert ist?", + "example_sentence_english": "Did you notice what happened?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "kriegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20044 + }, + { + "word": "Mitgliederzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "number of members;membership count", + "romanization": "Mitgliederzahl", + "example_sentence_native": "Die Mitgliederzahl des Vereins ist gestiegen.", + "example_sentence_english": "The number of members in the club has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20045 + }, + { + "word": "mittelbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indirect;mediate", + "romanization": "mittelbar", + "example_sentence_native": "Das hat mittelbare Auswirkungen auf die Wirtschaft.", + "example_sentence_english": "That has indirect effects on the economy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20046 + }, + { + "word": "Mittellinie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midline;center line", + "romanization": "Mittellinie", + "example_sentence_native": "Der Ball überquerte die Mittellinie.", + "example_sentence_english": "The ball crossed the center line.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20047 + }, + { + "word": "Mobiliar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furniture (collective)", + "romanization": "Mobiliar", + "example_sentence_native": "Das Mobiliar in diesem Büro ist sehr modern.", + "example_sentence_english": "The furniture in this office is very modern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20048 + }, + { + "word": "Motel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motel", + "romanization": "Motel", + "example_sentence_native": "Wir übernachteten in einem kleinen Motel am Stadtrand.", + "example_sentence_english": "We stayed overnight in a small motel on the outskirts of the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20049 + }, + { + "word": "Musikant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "musician (often folk;traditional)", + "romanization": "Musikant", + "example_sentence_native": "Der alte Musikant spielte ein schönes Lied.", + "example_sentence_english": "The old musician played a beautiful song.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20050 + }, + { + "word": "Nacktheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nakedness;nudity", + "romanization": "Nacktheit", + "example_sentence_native": "Die Nacktheit des Modells war Teil der Kunst.", + "example_sentence_english": "The nakedness of the model was part of the art.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20054 + }, + { + "word": "Nutzfläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "usable area;floor space", + "romanization": "Nutzfläche", + "example_sentence_native": "Die Wohnung hat eine Nutzfläche von 80 Quadratmetern.", + "example_sentence_english": "The apartment has a usable area of 80 square meters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20058 + }, + { + "word": "Oberleutnant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "first lieutenant (military rank)", + "romanization": "Oberleutnant", + "example_sentence_native": "Der Oberleutnant gab den Befehl.", + "example_sentence_english": "The first lieutenant gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20059 + }, + { + "word": "Oligarch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oligarch", + "romanization": "Oligarch", + "example_sentence_native": "Der Oligarch kontrolliert große Teile der Wirtschaft.", + "example_sentence_english": "The oligarch controls large parts of the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20060 + }, + { + "word": "Ouvertüre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overture", + "romanization": "Ouvertüre", + "example_sentence_native": "Die Ouvertüre leitete das Konzert ein.", + "example_sentence_english": "The overture introduced the concert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20063 + }, + { + "word": "Personenkreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circle of people", + "romanization": "Personenkreis", + "example_sentence_native": "Der Personenkreis der Teilnehmer war sehr vielfältig.", + "example_sentence_english": "The circle of participants was very diverse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20065 + }, + { + "word": "Pfirsich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peach", + "romanization": "Pfirsich", + "example_sentence_native": "Ich esse gerne einen saftigen Pfirsich.", + "example_sentence_english": "I like to eat a juicy peach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20066 + }, + { + "word": "Pianistin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female pianist", + "romanization": "Pianistin", + "example_sentence_native": "Die Pianistin spielte ein wunderschönes Stück.", + "example_sentence_english": "The female pianist played a beautiful piece.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20067 + }, + { + "word": "Posse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "farce", + "romanization": "Posse", + "example_sentence_native": "Die ganze Situation war eine einzige Posse.", + "example_sentence_english": "The whole situation was a complete farce.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 20069 + }, + { + "word": "prekär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precarious", + "romanization": "prekär", + "example_sentence_native": "Seine finanzielle Lage ist prekär.", + "example_sentence_english": "His financial situation is precarious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20070 + }, + { + "word": "Produktionskosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production costs", + "romanization": "Produktionskosten", + "example_sentence_native": "Die Produktionskosten sind in diesem Jahr gestiegen.", + "example_sentence_english": "The production costs have increased this year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20071 + }, + { + "word": "Publizistik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "journalism", + "romanization": "Publizistik", + "example_sentence_native": "Sie studiert Publizistik an der Universität.", + "example_sentence_english": "She studies journalism at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20073 + }, + { + "word": "Pult", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desk", + "romanization": "Pult", + "example_sentence_native": "Der Lehrer stand am Pult.", + "example_sentence_english": "The teacher stood at the desk.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20074 + }, + { + "word": "quadratisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "square", + "romanization": "quadratisch", + "example_sentence_native": "Der Tisch ist quadratisch.", + "example_sentence_english": "The table is square.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20076 + }, + { + "word": "queer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "queer", + "romanization": "queer", + "example_sentence_native": "Die queere Gemeinschaft ist sehr vielfältig.", + "example_sentence_english": "The queer community is very diverse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 20077 + }, + { + "word": "Randale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riot", + "romanization": "Randale", + "example_sentence_native": "Nach dem Spiel gab es Randale in der Stadt.", + "example_sentence_english": "After the game, there was a riot in the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20079 + }, + { + "word": "rausschmeissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to throw out;to kick out", + "romanization": "rausschmeissen", + "example_sentence_native": "Er wollte den Müll rausschmeissen.", + "example_sentence_english": "He wanted to throw out the trash.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "schmeissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20080 + }, + { + "word": "Redewendung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiom;phrase", + "romanization": "Redewendung", + "example_sentence_native": "Diese Redewendung ist sehr gebräuchlich.", + "example_sentence_english": "This idiom is very common.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20081 + }, + { + "word": "Rekordmeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record champion", + "romanization": "Rekordmeister", + "example_sentence_native": "Bayern München ist der Rekordmeister der Bundesliga.", + "example_sentence_english": "Bayern Munich is the record champion of the Bundesliga.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20084 + }, + { + "word": "Rendezvous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rendezvous;date;appointment", + "romanization": "Rendezvous", + "example_sentence_native": "Sie hatten ein Rendezvous im Café.", + "example_sentence_english": "They had a rendezvous at the cafe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 20085 + }, + { + "word": "Rezeptor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "receptor", + "romanization": "Rezeptor", + "example_sentence_native": "Der Rezeptor bindet spezifische Moleküle.", + "example_sentence_english": "The receptor binds specific molecules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20087 + }, + { + "word": "rührend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touching;moving (emotionally)", + "romanization": "rührend", + "example_sentence_native": "Das war eine sehr rührende Geschichte.", + "example_sentence_english": "That was a very touching story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20093 + }, + { + "word": "Sachbuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "non-fiction book", + "romanization": "Sachbuch", + "example_sentence_native": "Ich lese gerne Sachbücher über Geschichte.", + "example_sentence_english": "I like to read non-fiction books about history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20094 + }, + { + "word": "Sachse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saxon (person from Saxony)", + "romanization": "Sachse", + "example_sentence_native": "Er ist ein Sachse aus Dresden.", + "example_sentence_english": "He is a Saxon from Dresden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20095 + }, + { + "word": "Sattler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saddler", + "romanization": "Sattler", + "example_sentence_native": "Der Sattler reparierte den alten Pferdesattel.", + "example_sentence_english": "The saddler repaired the old horse saddle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20096 + }, + { + "word": "Schlusslicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taillight;last place;team", + "romanization": "Schlusslicht", + "example_sentence_native": "Das Team war das Schlusslicht der Liga.", + "example_sentence_english": "The team was the last place in the league.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20097 + }, + { + "word": "Schreibmaschine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typewriter", + "romanization": "Schreibmaschine", + "example_sentence_native": "Meine Großmutter hatte noch eine alte Schreibmaschine.", + "example_sentence_english": "My grandmother still had an old typewriter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20098 + }, + { + "word": "serienmässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standard;series-produced", + "romanization": "serienmässig", + "example_sentence_native": "Das Auto ist serienmässig mit Klimaanlage ausgestattet.", + "example_sentence_english": "The car is equipped with air conditioning as standard.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20100 + }, + { + "word": "Sinnlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sensuality", + "romanization": "Sinnlichkeit", + "example_sentence_native": "Die Sinnlichkeit der Musik berührte sie tief.", + "example_sentence_english": "The sensuality of the music touched her deeply.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20102 + }, + { + "word": "Skispringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ski jumping", + "romanization": "Skispringen", + "example_sentence_native": "Skispringen ist ein beliebter Wintersport.", + "example_sentence_english": "Ski jumping is a popular winter sport.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20103 + }, + { + "word": "Solarzelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solar cell", + "romanization": "Solarzelle", + "example_sentence_native": "Eine Solarzelle wandelt Sonnenlicht in Strom um.", + "example_sentence_english": "A solar cell converts sunlight into electricity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20105 + }, + { + "word": "Speicherplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storage space", + "romanization": "Speicherplatz", + "example_sentence_native": "Mein Handy hat nicht genug Speicherplatz.", + "example_sentence_english": "My phone doesn't have enough storage space.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20107 + }, + { + "word": "Spezifikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specification", + "romanization": "Spezifikation", + "example_sentence_native": "Bitte lesen Sie die Spezifikation sorgfältig durch.", + "example_sentence_english": "Please read the specification carefully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20108 + }, + { + "word": "sprühen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spray;to sparkle", + "romanization": "sprühen", + "example_sentence_native": "Die Blumen müssen mit Wasser besprüht werden.", + "example_sentence_english": "The flowers need to be sprayed with water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20109 + }, + { + "word": "Startplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starting place;position", + "romanization": "Startplatz", + "example_sentence_native": "Er sicherte sich einen guten Startplatz im Rennen.", + "example_sentence_english": "He secured a good starting place in the race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20110 + }, + { + "word": "Steinkohle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hard coal;anthracite", + "romanization": "Steinkohle", + "example_sentence_native": "Steinkohle ist ein fossiler Brennstoff.", + "example_sentence_english": "Hard coal is a fossil fuel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20112 + }, + { + "word": "steuerfrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax-free", + "romanization": "steuerfrei", + "example_sentence_native": "Diese Einkünfte sind steuerfrei.", + "example_sentence_english": "These earnings are tax-free.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20114 + }, + { + "word": "Steuermann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helmsman;pilot (of a ship;aircraft)", + "romanization": "Steuermann", + "example_sentence_native": "Der Steuermann navigierte das Schiff sicher durch den Sturm.", + "example_sentence_english": "The helmsman safely navigated the ship through the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20115 + }, + { + "word": "Strudel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strudel;whirlpool", + "romanization": "Strudel", + "example_sentence_native": "Ich liebe Apfelstrudel mit Vanillesauce.", + "example_sentence_english": "I love apple strudel with vanilla sauce.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20119 + }, + { + "word": "Substrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "substrate", + "romanization": "Substrat", + "example_sentence_native": "Das Substrat ist die Grundlage für das Wachstum der Pflanzen.", + "example_sentence_english": "The substrate is the basis for plant growth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20121 + }, + { + "word": "Tandem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tandem", + "romanization": "Tandem", + "example_sentence_native": "Sie fahren oft mit ihrem Tandem durch die Stadt.", + "example_sentence_english": "They often ride through the city on their tandem.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20124 + }, + { + "word": "Tanker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tanker", + "romanization": "Tanker", + "example_sentence_native": "Ein großer Tanker fuhr in den Hafen ein.", + "example_sentence_english": "A large tanker entered the harbor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20125 + }, + { + "word": "Taschenrechner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calculator", + "romanization": "Taschenrechner", + "example_sentence_native": "Ich brauche meinen Taschenrechner für die Mathematikaufgabe.", + "example_sentence_english": "I need my calculator for the math problem.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20127 + }, + { + "word": "tendieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tend;to incline", + "romanization": "tendieren", + "example_sentence_native": "Er tendiert dazu, immer zu spät zu kommen.", + "example_sentence_english": "He tends to always be late.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20129 + }, + { + "word": "Truhe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chest;trunk", + "romanization": "Truhe", + "example_sentence_native": "Die alte Truhe war voller Schätze.", + "example_sentence_english": "The old chest was full of treasures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20133 + }, + { + "word": "tüchtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligent;capable;sturdy", + "romanization": "tüchtig", + "example_sentence_native": "Sie ist eine sehr tüchtige Arbeiterin.", + "example_sentence_english": "She is a very diligent worker.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20135 + }, + { + "word": "Unfallstelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accident site", + "romanization": "Unfallstelle", + "example_sentence_native": "Die Polizei sicherte die Unfallstelle ab.", + "example_sentence_english": "The police secured the accident site.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20136 + }, + { + "word": "Universitätsklinik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university hospital", + "romanization": "Universitätsklinik", + "example_sentence_native": "Er wurde in die Universitätsklinik eingeliefert.", + "example_sentence_english": "He was admitted to the university hospital.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20139 + }, + { + "word": "Unkenntnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorance;lack of knowledge", + "romanization": "Unkenntnis", + "example_sentence_native": "Seine Unkenntnis der Regeln führte zu Problemen.", + "example_sentence_english": "His ignorance of the rules led to problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20140 + }, + { + "word": "unnütz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "useless;futile", + "romanization": "unnütz", + "example_sentence_native": "Das ist eine unnütze Diskussion.", + "example_sentence_english": "That is a useless discussion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20141 + }, + { + "word": "unumstritten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undisputed;uncontroversial", + "romanization": "unumstritten", + "example_sentence_native": "Seine Fähigkeiten sind unumstritten.", + "example_sentence_english": "His abilities are undisputed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20142 + }, + { + "word": "unvorbereitet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unprepared", + "romanization": "unvorbereitet", + "example_sentence_native": "Er war unvorbereitet auf die Prüfung.", + "example_sentence_english": "He was unprepared for the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20143 + }, + { + "word": "unzuverlässig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unreliable;untrustworthy", + "romanization": "unzuverlässig", + "example_sentence_native": "Das alte Auto ist sehr unzuverlässig.", + "example_sentence_english": "The old car is very unreliable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20144 + }, + { + "word": "uraufführen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to premiere;to first perform", + "romanization": "uraufführen", + "example_sentence_native": "Das Stück wird nächste Woche uraufgeführt.", + "example_sentence_english": "The play will premiere next week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "urauf", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20145 + }, + { + "word": "Urgrossvater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great-grandfather", + "romanization": "Urgrossvater", + "example_sentence_native": "Mein Urgrossvater war ein mutiger Mann.", + "example_sentence_english": "My great-grandfather was a brave man.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20146 + }, + { + "word": "verantwortungsvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsible;conscientious", + "romanization": "verantwortungsvoll", + "example_sentence_native": "Er ist ein sehr verantwortungsvoller Mitarbeiter.", + "example_sentence_english": "He is a very responsible employee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20148 + }, + { + "word": "verbreitern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to widen;to broaden", + "romanization": "verbreitern", + "example_sentence_native": "Sie müssen die Straße verbreitern.", + "example_sentence_english": "They have to widen the road.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20149 + }, + { + "word": "Verdichtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compression;condensation;densification", + "romanization": "Verdichtung", + "example_sentence_native": "Die Verdichtung des Bodens ist wichtig für den Bau.", + "example_sentence_english": "The compression of the soil is important for construction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20150 + }, + { + "word": "verfälschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to falsify;to distort;to adulterate", + "romanization": "verfälschen", + "example_sentence_native": "Man sollte keine Daten verfälschen.", + "example_sentence_english": "One should not falsify data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20151 + }, + { + "word": "verharmlosen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trivialize;to play down", + "romanization": "verharmlosen", + "example_sentence_native": "Man darf die Gefahr nicht verharmlosen.", + "example_sentence_english": "One must not trivialize the danger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20152 + }, + { + "word": "Verlaub", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "permission;leave (often in 'with all due respect')", + "romanization": "Verlaub", + "example_sentence_native": "Mit Verlaub, das sehe ich anders.", + "example_sentence_english": "With all due respect, I see that differently.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20153 + }, + { + "word": "Vernachlässigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neglect;negligence", + "romanization": "Vernachlässigung", + "example_sentence_native": "Die Vernachlässigung der Pflichten hatte Konsequenzen.", + "example_sentence_english": "The neglect of duties had consequences.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20154 + }, + { + "word": "verstörend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbing;unsettling", + "romanization": "verstörend", + "example_sentence_native": "Der Film hatte eine verstörende Wirkung.", + "example_sentence_english": "The film had a disturbing effect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20155 + }, + { + "word": "Viehzucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "livestock farming;animal husbandry", + "romanization": "Viehzucht", + "example_sentence_native": "Die Viehzucht ist ein wichtiger Wirtschaftszweig in dieser Region.", + "example_sentence_english": "Livestock farming is an important economic sector in this region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20156 + }, + { + "word": "Volkszählung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "census", + "romanization": "Volkszählung", + "example_sentence_native": "Die nächste Volkszählung findet in fünf Jahren statt.", + "example_sentence_english": "The next census will take place in five years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20158 + }, + { + "word": "Vollpfosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot;complete idiot", + "romanization": "Vollpfosten", + "example_sentence_native": "Er hat sich wie ein Vollpfosten benommen.", + "example_sentence_english": "He behaved like a complete idiot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20159 + }, + { + "word": "vorrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advance;to move forward", + "romanization": "vorrücken", + "example_sentence_native": "Die Truppen begannen, vorzurücken.", + "example_sentence_english": "The troops began to advance.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "rücken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20160 + }, + { + "word": "Vorstufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preliminary stage;precursor", + "romanization": "Vorstufe", + "example_sentence_native": "Dies ist nur eine Vorstufe zum eigentlichen Projekt.", + "example_sentence_english": "This is just a preliminary stage to the actual project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20161 + }, + { + "word": "Wahlwerbung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election campaign advertising", + "romanization": "Wahlwerbung", + "example_sentence_native": "Die Wahlwerbung ist in vollem Gange.", + "example_sentence_english": "The election campaign advertising is in full swing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20162 + }, + { + "word": "Wartungsarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance work", + "romanization": "Wartungsarbeit", + "example_sentence_native": "Die Wartungsarbeiten werden am Wochenende durchgeführt.", + "example_sentence_english": "The maintenance work will be carried out on the weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20165 + }, + { + "word": "wegziehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move away;to pull away", + "romanization": "wegziehen", + "example_sentence_native": "Sie werden bald wegziehen.", + "example_sentence_english": "They will move away soon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20167 + }, + { + "word": "Weiterfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "onward journey;continuation of journey", + "romanization": "Weiterfahrt", + "example_sentence_native": "Wir wünschen Ihnen eine gute Weiterfahrt.", + "example_sentence_english": "We wish you a good onward journey.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20168 + }, + { + "word": "Weltherrschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "world domination", + "romanization": "Weltherrschaft", + "example_sentence_native": "Der Bösewicht strebt nach Weltherrschaft.", + "example_sentence_english": "The villain strives for world domination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20170 + }, + { + "word": "Wirtschaftsprüfer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auditor (financial)", + "romanization": "Wirtschaftsprüfer", + "example_sentence_native": "Der Wirtschaftsprüfer hat die Bücher geprüft.", + "example_sentence_english": "The auditor checked the books.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20171 + }, + { + "word": "wühlen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rummage;to dig", + "romanization": "wühlen", + "example_sentence_native": "Er wühlte in seinen Taschen nach dem Schlüssel.", + "example_sentence_english": "He rummaged in his pockets for the key.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20172 + }, + { + "word": "Zehner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ten (e.g.;a ten-euro note);number ten", + "romanization": "Zehner", + "example_sentence_native": "Ich habe einen Zehner in meiner Brieftasche.", + "example_sentence_english": "I have a ten-euro note in my wallet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20173 + }, + { + "word": "Zugführer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "train conductor;platoon leader", + "romanization": "Zugführer", + "example_sentence_native": "Der Zugführer kontrollierte die Fahrkarten.", + "example_sentence_english": "The train conductor checked the tickets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20176 + }, + { + "word": "zunutze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to one's advantage;to make use of", + "romanization": "zunutze", + "example_sentence_native": "Er machte sich die Situation zunutze.", + "example_sentence_english": "He took advantage of the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 20177 + }, + { + "word": "zuwenden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn to;to devote oneself to", + "romanization": "zuwenden", + "example_sentence_native": "Sie wandte sich ihrem Buch zu.", + "example_sentence_english": "She turned to her book.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "wenden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20178 + }, + { + "word": "zuwenig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "too little;not enough", + "romanization": "zuwenig", + "example_sentence_native": "Das ist zuwenig für alle.", + "example_sentence_english": "That is too little for everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 20179 + }, + { + "word": "Ärgernis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoyance;nuisance", + "romanization": "Ärgernis", + "example_sentence_native": "Das ständige Klingeln war ein echtes Ärgernis.", + "example_sentence_english": "The constant ringing was a real nuisance.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20180 + }, + { + "word": "Ölgemälde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oil painting", + "romanization": "Ölgemälde", + "example_sentence_native": "Das Museum zeigte ein beeindruckendes Ölgemälde.", + "example_sentence_english": "The museum displayed an impressive oil painting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20181 + }, + { + "word": "Überbleibsel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remnant;leftover", + "romanization": "Überbleibsel", + "example_sentence_native": "Diese Ruinen sind die letzten Überbleibsel einer alten Zivilisation.", + "example_sentence_english": "These ruins are the last remnants of an ancient civilization.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20182 + }, + { + "word": "Übergangszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transition period", + "romanization": "Übergangszeit", + "example_sentence_native": "Wir befinden uns in einer Übergangszeit zwischen den Jahreszeiten.", + "example_sentence_english": "We are in a transition period between the seasons.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20183 + }, + { + "word": "Aas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carrion;scum", + "romanization": "Aas", + "example_sentence_native": "Der Geier kreiste über dem Aas.", + "example_sentence_english": "The vulture circled above the carrion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 20184 + }, + { + "word": "abhaken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tick off;to check off", + "romanization": "abhaken", + "example_sentence_native": "Ich muss noch ein paar Punkte auf meiner Liste abhaken.", + "example_sentence_english": "I still need to tick off a few items on my list.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "haken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20185 + }, + { + "word": "abwählen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to vote out;to deselect", + "romanization": "abwählen", + "example_sentence_native": "Die Bürger haben beschlossen, den Bürgermeister abzuwählen.", + "example_sentence_english": "The citizens decided to vote out the mayor.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "wählen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20186 + }, + { + "word": "Ablöse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation;relief;transfer fee", + "romanization": "Ablöse", + "example_sentence_native": "Für die neue Wohnung musste er eine hohe Ablöse zahlen.", + "example_sentence_english": "He had to pay a high transfer fee for the new apartment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20187 + }, + { + "word": "adressieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to address", + "romanization": "adressieren", + "example_sentence_native": "Er musste den Brief an die richtige Person adressieren.", + "example_sentence_english": "He had to address the letter to the correct person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20189 + }, + { + "word": "allerseits", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on all sides;to everyone", + "romanization": "allerseits", + "example_sentence_native": "Grüße allerseits!", + "example_sentence_english": "Greetings to everyone!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 20192 + }, + { + "word": "Anarchist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anarchist", + "romanization": "Anarchist", + "example_sentence_native": "Der Anarchist glaubte an eine Gesellschaft ohne Regierung.", + "example_sentence_english": "The anarchist believed in a society without government.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20196 + }, + { + "word": "androhen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to threaten", + "romanization": "androhen", + "example_sentence_native": "Er drohte ihm mit rechtlichen Schritten an.", + "example_sentence_english": "He threatened him with legal action.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "drohen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20197 + }, + { + "word": "Anmut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grace;charm", + "romanization": "Anmut", + "example_sentence_native": "Die Tänzerin bewegte sich mit großer Anmut.", + "example_sentence_english": "The dancer moved with great grace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20198 + }, + { + "word": "Arbeitsteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "division of labor", + "romanization": "Arbeitsteilung", + "example_sentence_native": "Die Arbeitsteilung ist ein wichtiges Konzept in der Wirtschaft.", + "example_sentence_english": "The division of labor is an important concept in economics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20200 + }, + { + "word": "Arztpraxis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor's office", + "romanization": "Arztpraxis", + "example_sentence_native": "Die Arztpraxis ist heute geschlossen.", + "example_sentence_english": "The doctor's office is closed today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20202 + }, + { + "word": "auffindbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "findable", + "romanization": "auffindbar", + "example_sentence_native": "Die verlorenen Schlüssel sind wieder auffindbar.", + "example_sentence_english": "The lost keys are findable again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20205 + }, + { + "word": "Aufgabenbereich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area of responsibility", + "romanization": "Aufgabenbereich", + "example_sentence_native": "Das liegt nicht in meinem Aufgabenbereich.", + "example_sentence_english": "That is not within my area of responsibility.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20206 + }, + { + "word": "auslagern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outsource", + "romanization": "auslagern", + "example_sentence_native": "Viele Firmen entscheiden sich, ihre IT-Dienste auszulagern.", + "example_sentence_english": "Many companies decide to outsource their IT services.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "lagern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20207 + }, + { + "word": "Bankier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banker", + "romanization": "Bankier", + "example_sentence_native": "Der Bankier berät seine Kunden.", + "example_sentence_english": "The banker advises his clients.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20213 + }, + { + "word": "Barometer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barometer", + "romanization": "Barometer", + "example_sentence_native": "Das Barometer zeigt einen fallenden Luftdruck an.", + "example_sentence_english": "The barometer indicates falling air pressure.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20214 + }, + { + "word": "Bastion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bastion", + "romanization": "Bastion", + "example_sentence_native": "Die alte Festung war eine uneinnehmbare Bastion.", + "example_sentence_english": "The old fortress was an impregnable bastion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20215 + }, + { + "word": "Bauabschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction phase", + "romanization": "Bauabschnitt", + "example_sentence_native": "Der erste Bauabschnitt ist fast abgeschlossen.", + "example_sentence_english": "The first construction phase is almost complete.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20216 + }, + { + "word": "bedrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depress", + "romanization": "bedrücken", + "example_sentence_native": "Die Nachricht bedrückte ihn sehr.", + "example_sentence_english": "The news depressed him greatly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20219 + }, + { + "word": "Beiname", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epithet;nickname", + "romanization": "Beiname", + "example_sentence_native": "Der Beiname 'der Große' wurde ihm verliehen.", + "example_sentence_english": "The epithet 'the Great' was bestowed upon him.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20220 + }, + { + "word": "Bergland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountainous region;uplands", + "romanization": "Bergland", + "example_sentence_native": "Das Bergland ist bekannt für seine malerischen Wanderwege.", + "example_sentence_english": "The mountainous region is known for its picturesque hiking trails.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20221 + }, + { + "word": "betrinken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get drunk", + "romanization": "betrinken", + "example_sentence_native": "Er hat sich gestern Abend betrunken.", + "example_sentence_english": "He got drunk last night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20222 + }, + { + "word": "Bevölkerungswachstum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "population growth", + "romanization": "Bevölkerungswachstum", + "example_sentence_native": "Das Bevölkerungswachstum stellt eine Herausforderung dar.", + "example_sentence_english": "Population growth poses a challenge.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20223 + }, + { + "word": "bewundernswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admirable;praiseworthy", + "romanization": "bewundernswert", + "example_sentence_native": "Ihre Ausdauer ist bewundernswert.", + "example_sentence_english": "Her perseverance is admirable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20224 + }, + { + "word": "Bewährungsstrafe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suspended sentence;probation", + "romanization": "Bewährungsstrafe", + "example_sentence_native": "Er erhielt eine Bewährungsstrafe von zwei Jahren.", + "example_sentence_english": "He received a two-year suspended sentence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20225 + }, + { + "word": "bilateral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bilateral", + "romanization": "bilateral", + "example_sentence_native": "Sie führten bilaterale Gespräche.", + "example_sentence_english": "They conducted bilateral talks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 20227 + }, + { + "word": "Blamage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgrace;embarrassment", + "romanization": "Blamage", + "example_sentence_native": "Das war eine echte Blamage für das Team.", + "example_sentence_english": "That was a real disgrace for the team.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20228 + }, + { + "word": "Bollwerk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bulwark;stronghold", + "romanization": "Bollwerk", + "example_sentence_native": "Die Stadt war ein Bollwerk gegen die Angreifer.", + "example_sentence_english": "The city was a bulwark against the attackers.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20229 + }, + { + "word": "Deadline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deadline", + "romanization": "Deadline", + "example_sentence_native": "Die Deadline für das Projekt ist nächste Woche.", + "example_sentence_english": "The deadline for the project is next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 20241 + }, + { + "word": "Demographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demography", + "romanization": "Demographie", + "example_sentence_native": "Die Demographie eines Landes ist wichtig für die Zukunftsplanung.", + "example_sentence_english": "The demography of a country is important for future planning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20243 + }, + { + "word": "Dienstwagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "company car", + "romanization": "Dienstwagen", + "example_sentence_native": "Er fährt einen Dienstwagen zur Arbeit.", + "example_sentence_english": "He drives a company car to work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20246 + }, + { + "word": "Diner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diner", + "romanization": "Diner", + "example_sentence_native": "Wir haben in einem typisch amerikanischen Diner gegessen.", + "example_sentence_english": "We ate in a typical American diner.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 20247 + }, + { + "word": "Doppelgänger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doppelganger", + "romanization": "Doppelgänger", + "example_sentence_native": "Er traf seinen Doppelgänger auf der Straße.", + "example_sentence_english": "He met his doppelganger on the street.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20248 + }, + { + "word": "drosseln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to throttle", + "romanization": "drosseln", + "example_sentence_native": "Man muss die Geschwindigkeit drosseln, wenn man in die Stadt fährt.", + "example_sentence_english": "One must reduce the speed when driving into the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20249 + }, + { + "word": "Durchhaltevermögen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perseverance", + "romanization": "Durchhaltevermögen", + "example_sentence_native": "Für diesen Marathon braucht man viel Durchhaltevermögen.", + "example_sentence_english": "For this marathon, one needs a lot of perseverance.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20251 + }, + { + "word": "Elfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty kick", + "romanization": "Elfer", + "example_sentence_native": "Der Schiedsrichter gab einen Elfer.", + "example_sentence_english": "The referee gave a penalty kick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20257 + }, + { + "word": "Energieträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy source", + "romanization": "Energieträger", + "example_sentence_native": "Kohle ist ein wichtiger Energieträger.", + "example_sentence_english": "Coal is an important energy source.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20260 + }, + { + "word": "entziffern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decipher", + "romanization": "entziffern", + "example_sentence_native": "Er versuchte, die alte Handschrift zu entziffern.", + "example_sentence_english": "He tried to decipher the old handwriting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20261 + }, + { + "word": "Erbin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heiress", + "romanization": "Erbin", + "example_sentence_native": "Sie ist die Erbin eines großen Vermögens.", + "example_sentence_english": "She is the heiress to a large fortune.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20262 + }, + { + "word": "ermahnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to admonish;to warn", + "romanization": "ermahnen", + "example_sentence_native": "Der Lehrer musste den Schüler ermahnen.", + "example_sentence_english": "The teacher had to admonish the student.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20264 + }, + { + "word": "ersehnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to long for;to yearn for", + "romanization": "ersehnen", + "example_sentence_native": "Sie ersehnte sich ein ruhiges Leben.", + "example_sentence_english": "She longed for a quiet life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20265 + }, + { + "word": "Erwachsenenalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adulthood", + "romanization": "Erwachsenenalter", + "example_sentence_native": "Im Erwachsenenalter trifft man eigene Entscheidungen.", + "example_sentence_english": "In adulthood, one makes one's own decisions.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20266 + }, + { + "word": "Erzengel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archangel", + "romanization": "Erzengel", + "example_sentence_native": "Der Erzengel Gabriel erschien Maria.", + "example_sentence_english": "The Archangel Gabriel appeared to Mary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20267 + }, + { + "word": "Exodus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exodus", + "romanization": "Exodus", + "example_sentence_native": "Der Exodus aus Ägypten ist eine biblische Geschichte.", + "example_sentence_english": "The exodus from Egypt is a biblical story.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20268 + }, + { + "word": "Familienname", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surname;family name", + "romanization": "Familienname", + "example_sentence_native": "Mein Familienname ist Müller.", + "example_sentence_english": "My family name is Müller.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20270 + }, + { + "word": "Fassungsvermögen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capacity;volume", + "romanization": "Fassungsvermögen", + "example_sentence_native": "Das Fassungsvermögen des Tanks beträgt 100 Liter.", + "example_sentence_english": "The capacity of the tank is 100 liters.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20271 + }, + { + "word": "Fehde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feud", + "romanization": "Fehde", + "example_sentence_native": "Zwischen den Familien gab es eine lange Fehde.", + "example_sentence_english": "There was a long feud between the families.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20273 + }, + { + "word": "Finder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finder", + "romanization": "Finder", + "example_sentence_native": "Der Finder des verlorenen Hundes erhielt eine Belohnung.", + "example_sentence_english": "The finder of the lost dog received a reward.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20274 + }, + { + "word": "Fröhlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheerfulness;joy", + "romanization": "Fröhlichkeit", + "example_sentence_native": "Ihre Fröhlichkeit ist ansteckend.", + "example_sentence_english": "Her cheerfulness is contagious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20279 + }, + { + "word": "Fussballverein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "football club", + "romanization": "Fussballverein", + "example_sentence_native": "Mein Lieblings-Fussballverein hat gestern gewonnen.", + "example_sentence_english": "My favorite football club won yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20280 + }, + { + "word": "Garn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yarn;thread", + "romanization": "Garn", + "example_sentence_native": "Sie strickt einen Schal aus Wolle und Garn.", + "example_sentence_english": "She is knitting a scarf from wool and yarn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20281 + }, + { + "word": "Gauner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rogue;scoundrel", + "romanization": "Gauner", + "example_sentence_native": "Der Gauner wurde von der Polizei gefasst.", + "example_sentence_english": "The scoundrel was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20282 + }, + { + "word": "Gefängnisstrafe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prison sentence", + "romanization": "Gefängnisstrafe", + "example_sentence_native": "Er erhielt eine lange Gefängnisstrafe.", + "example_sentence_english": "He received a long prison sentence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20283 + }, + { + "word": "hüllen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wrap;to envelop", + "romanization": "hüllen", + "example_sentence_native": "Sie hüllte sich in eine warme Decke.", + "example_sentence_english": "She wrapped herself in a warm blanket.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20284 + }, + { + "word": "gemessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measured;proportionate", + "romanization": "gemessen", + "example_sentence_native": "Er sprach mit gemessenen Worten.", + "example_sentence_english": "He spoke with measured words.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20285 + }, + { + "word": "Gepflogenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "custom;habit;practice", + "romanization": "Gepflogenheit", + "example_sentence_native": "Es ist eine alte Gepflogenheit in dieser Region.", + "example_sentence_english": "It is an old custom in this region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20286 + }, + { + "word": "Geschworener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "juror", + "romanization": "Geschworener", + "example_sentence_native": "Jeder Geschworener musste einen Eid leisten.", + "example_sentence_english": "Every juror had to take an oath.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20288 + }, + { + "word": "gesellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to join;to associate (with)", + "romanization": "gesellen", + "example_sentence_native": "Er gesellte sich zu der Gruppe.", + "example_sentence_english": "He joined the group.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20289 + }, + { + "word": "Gespann", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "team (of horses);combination (e.g.;sidecar motorcycle)", + "romanization": "Gespann", + "example_sentence_native": "Das Pferd und der Wagen bildeten ein beeindruckendes Gespann.", + "example_sentence_english": "The horse and the carriage formed an impressive team.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20290 + }, + { + "word": "Gestell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame;rack;stand", + "romanization": "Gestell", + "example_sentence_native": "Das Gestell des Regals war aus Metall.", + "example_sentence_english": "The frame of the shelf was made of metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20291 + }, + { + "word": "Gestik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gesture;gesticulation", + "romanization": "Gestik", + "example_sentence_native": "Ihre Gestik war sehr ausdrucksstark.", + "example_sentence_english": "Her gestures were very expressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20292 + }, + { + "word": "glätten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smooth;to straighten", + "romanization": "glätten", + "example_sentence_native": "Sie glättete ihre Haare mit einem Glätteisen.", + "example_sentence_english": "She straightened her hair with a flat iron.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20294 + }, + { + "word": "Glühbirne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light bulb", + "romanization": "Glühbirne", + "example_sentence_native": "Die Glühbirne im Wohnzimmer ist kaputt.", + "example_sentence_english": "The light bulb in the living room is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20295 + }, + { + "word": "Grenzkontrolle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "border control", + "romanization": "Grenzkontrolle", + "example_sentence_native": "Bei der Grenzkontrolle mussten wir unsere Pässe zeigen.", + "example_sentence_english": "At border control, we had to show our passports.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20297 + }, + { + "word": "Gummibärchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gummy bear", + "romanization": "Gummibärchen", + "example_sentence_native": "Kinder lieben Gummibärchen.", + "example_sentence_english": "Children love gummy bears.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20298 + }, + { + "word": "Handelsabkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade agreement", + "romanization": "Handelsabkommen", + "example_sentence_native": "Das neue Handelsabkommen wurde unterzeichnet.", + "example_sentence_english": "The new trade agreement was signed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20300 + }, + { + "word": "Handlanger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "henchman", + "romanization": "Handlanger", + "example_sentence_native": "Er wurde als Handlanger des Verbrechers verhaftet.", + "example_sentence_english": "He was arrested as the criminal's henchman.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20301 + }, + { + "word": "hellwach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wide awake", + "romanization": "hellwach", + "example_sentence_native": "Nach dem Kaffee war ich hellwach.", + "example_sentence_english": "After the coffee, I was wide awake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20304 + }, + { + "word": "Herkunftsland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "country of origin", + "romanization": "Herkunftsland", + "example_sentence_native": "Das Herkunftsland der Produkte ist China.", + "example_sentence_english": "The country of origin of the products is China.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20305 + }, + { + "word": "Hochsommer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midsummer", + "romanization": "Hochsommer", + "example_sentence_native": "Im Hochsommer ist es oft sehr heiß.", + "example_sentence_english": "In midsummer, it is often very hot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20307 + }, + { + "word": "Hufeisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horseshoe", + "romanization": "Hufeisen", + "example_sentence_native": "Ein Hufeisen soll Glück bringen.", + "example_sentence_english": "A horseshoe is supposed to bring good luck.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20309 + }, + { + "word": "Hängematte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hammock", + "romanization": "Hängematte", + "example_sentence_native": "Ich entspanne mich gerne in der Hängematte.", + "example_sentence_english": "I like to relax in the hammock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20310 + }, + { + "word": "Häufung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulation", + "romanization": "Häufung", + "example_sentence_native": "Es gab eine Häufung von Fehlern.", + "example_sentence_english": "There was an accumulation of errors.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20311 + }, + { + "word": "immerzu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constantly", + "romanization": "immerzu", + "example_sentence_native": "Er redet immerzu.", + "example_sentence_english": "He talks constantly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20313 + }, + { + "word": "Innensenator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Senator of the Interior", + "romanization": "Innensenator", + "example_sentence_native": "Der Innensenator stellte die neuen Sicherheitsmaßnahmen vor.", + "example_sentence_english": "The Senator of the Interior presented the new security measures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20314 + }, + { + "word": "Interessengemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interest group", + "romanization": "Interessengemeinschaft", + "example_sentence_native": "Sie gründeten eine Interessengemeinschaft zum Schutz der Umwelt.", + "example_sentence_english": "They formed an interest group for environmental protection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20315 + }, + { + "word": "Internetzugang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "internet access", + "romanization": "Internetzugang", + "example_sentence_native": "Wir haben keinen Internetzugang in diesem Hotel.", + "example_sentence_english": "We have no internet access in this hotel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20316 + }, + { + "word": "Jod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iodine", + "romanization": "Jod", + "example_sentence_native": "Jod ist wichtig für die Schilddrüse.", + "example_sentence_english": "Iodine is important for the thyroid gland.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20319 + }, + { + "word": "Junkie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junkie", + "romanization": "Junkie", + "example_sentence_native": "Er ist ein Junkie.", + "example_sentence_english": "He is a junkie.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20321 + }, + { + "word": "Kapitalmarkt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capital market", + "romanization": "Kapitalmarkt", + "example_sentence_native": "Der Kapitalmarkt ist sehr volatil.", + "example_sentence_english": "The capital market is very volatile.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20322 + }, + { + "word": "Kelte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Celt", + "romanization": "Kelte", + "example_sentence_native": "Die Kelten waren ein altes Volk.", + "example_sentence_english": "The Celts were an ancient people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20324 + }, + { + "word": "kindlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childlike", + "romanization": "kindlich", + "example_sentence_native": "Sie hat eine sehr kindliche Freude.", + "example_sentence_english": "She has a very childlike joy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20327 + }, + { + "word": "Kirchensteuer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "church tax", + "romanization": "Kirchensteuer", + "example_sentence_native": "In Deutschland zahlen viele Menschen Kirchensteuer.", + "example_sentence_english": "In Germany, many people pay church tax.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20329 + }, + { + "word": "Klan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clan", + "romanization": "Klan", + "example_sentence_native": "Der alte Klan traf sich jedes Jahr.", + "example_sentence_english": "The old clan met every year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20330 + }, + { + "word": "knusprig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crispy", + "romanization": "knusprig", + "example_sentence_native": "Die Pommes waren sehr knusprig.", + "example_sentence_english": "The fries were very crispy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20331 + }, + { + "word": "konvertieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convert", + "romanization": "konvertieren", + "example_sentence_native": "Er möchte seine Daten in ein anderes Format konvertieren.", + "example_sentence_english": "He wants to convert his data into another format.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20332 + }, + { + "word": "kostenpflichtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject to a charge;chargeable", + "romanization": "kostenpflichtig", + "example_sentence_native": "Dieser Service ist kostenpflichtig.", + "example_sentence_english": "This service is subject to a charge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20333 + }, + { + "word": "krampfhaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convulsive;desperate;frantic", + "romanization": "krampfhaft", + "example_sentence_native": "Er versuchte krampfhaft, sich zu erinnern.", + "example_sentence_english": "He tried desperately to remember.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20334 + }, + { + "word": "Kreditinstitut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "credit institution;bank", + "romanization": "Kreditinstitut", + "example_sentence_native": "Ein Kreditinstitut vergibt Darlehen.", + "example_sentence_english": "A credit institution grants loans.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20335 + }, + { + "word": "Kuratorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "board of trustees", + "romanization": "Kuratorium", + "example_sentence_native": "Das Kuratorium überwacht die Stiftung.", + "example_sentence_english": "The board of trustees oversees the foundation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20336 + }, + { + "word": "Körpertemperatur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "body temperature", + "romanization": "Körpertemperatur", + "example_sentence_native": "Die normale Körpertemperatur beträgt etwa 37 Grad Celsius.", + "example_sentence_english": "Normal body temperature is about 37 degrees Celsius.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20339 + }, + { + "word": "Lebensart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "way of life;lifestyle", + "romanization": "Lebensart", + "example_sentence_native": "Ihre Lebensart ist sehr entspannt und naturverbunden.", + "example_sentence_english": "Her way of life is very relaxed and close to nature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20341 + }, + { + "word": "Liebesleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "love life", + "romanization": "Liebesleben", + "example_sentence_native": "Sein Liebesleben ist in letzter Zeit sehr aufregend.", + "example_sentence_english": "His love life has been very exciting lately.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20343 + }, + { + "word": "Lüftung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ventilation;airing", + "romanization": "Lüftung", + "example_sentence_native": "Die Lüftung im Badezimmer muss repariert werden.", + "example_sentence_english": "The ventilation in the bathroom needs to be repaired.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20346 + }, + { + "word": "Machete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machete", + "romanization": "Machete", + "example_sentence_native": "Er benutzte eine Machete, um sich einen Weg durch den Dschungel zu bahnen.", + "example_sentence_english": "He used a machete to clear a path through the jungle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20347 + }, + { + "word": "Militärdienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military service", + "romanization": "Militärdienst", + "example_sentence_native": "In vielen Ländern ist der Militärdienst noch Pflicht.", + "example_sentence_english": "In many countries, military service is still compulsory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20356 + }, + { + "word": "Mitspracherecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right to have a say;co-determination", + "romanization": "Mitspracherecht", + "example_sentence_native": "Die Arbeitnehmer fordern mehr Mitspracherecht bei Unternehmensentscheidungen.", + "example_sentence_english": "Employees demand more right to have a say in company decisions.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20357 + }, + { + "word": "Mordkommission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homicide squad", + "romanization": "Mordkommission", + "example_sentence_native": "Die Mordkommission hat die Ermittlungen aufgenommen.", + "example_sentence_english": "The homicide squad has started the investigation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20358 + }, + { + "word": "Musikhochschule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university of music;music academy", + "romanization": "Musikhochschule", + "example_sentence_native": "Sie träumt davon, an einer Musikhochschule zu studieren.", + "example_sentence_english": "She dreams of studying at a university of music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20359 + }, + { + "word": "Musikinstrument", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musical instrument", + "romanization": "Musikinstrument", + "example_sentence_native": "Sie spielt ein Musikinstrument.", + "example_sentence_english": "She plays a musical instrument.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20360 + }, + { + "word": "mutieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mutate", + "romanization": "mutieren", + "example_sentence_native": "Das Virus kann schnell mutieren.", + "example_sentence_english": "The virus can mutate quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20361 + }, + { + "word": "Nachtruhe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "night rest", + "romanization": "Nachtruhe", + "example_sentence_native": "Bitte halten Sie die Nachtruhe ein.", + "example_sentence_english": "Please observe the night rest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20363 + }, + { + "word": "Nationalgarde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "National Guard", + "romanization": "Nationalgarde", + "example_sentence_native": "Die Nationalgarde wurde mobilisiert.", + "example_sentence_english": "The National Guard was mobilized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20365 + }, + { + "word": "neoliberal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neoliberal", + "romanization": "neoliberal", + "example_sentence_native": "Er kritisierte die neoliberale Politik.", + "example_sentence_english": "He criticized the neoliberal policy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20366 + }, + { + "word": "Oralsex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oral sex", + "romanization": "Oralsex", + "example_sentence_native": "Der Begriff Oralsex wird in der Sexualkunde verwendet.", + "example_sentence_english": "The term oral sex is used in sex education.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20370 + }, + { + "word": "Organspende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organ donation", + "romanization": "Organspende", + "example_sentence_native": "Organspende kann Leben retten.", + "example_sentence_english": "Organ donation can save lives.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20371 + }, + { + "word": "pausenlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "non-stop", + "romanization": "pausenlos", + "example_sentence_native": "Er arbeitet pausenlos.", + "example_sentence_english": "He works non-stop.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20373 + }, + { + "word": "Personalkosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personnel costs", + "romanization": "Personalkosten", + "example_sentence_native": "Die Personalkosten sind gestiegen.", + "example_sentence_english": "The personnel costs have increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20374 + }, + { + "word": "pflücken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pick", + "romanization": "pflücken", + "example_sentence_native": "Sie pflückt Blumen im Garten.", + "example_sentence_english": "She picks flowers in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20375 + }, + { + "word": "Politikwissenschaftler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "political scientist", + "romanization": "Politikwissenschaftler", + "example_sentence_native": "Der Politikwissenschaftler analysierte die Wahlergebnisse.", + "example_sentence_english": "The political scientist analyzed the election results.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20377 + }, + { + "word": "Privatkunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private customer", + "romanization": "Privatkunde", + "example_sentence_native": "Als Privatkunde haben Sie Zugang zu speziellen Angeboten.", + "example_sentence_english": "As a private customer, you have access to special offers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20379 + }, + { + "word": "Profiling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profiling", + "romanization": "Profiling", + "example_sentence_native": "Das Profiling von Daten ist wichtig für die Analyse.", + "example_sentence_english": "The profiling of data is important for analysis.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20380 + }, + { + "word": "Prophylaxe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophylaxis", + "romanization": "Prophylaxe", + "example_sentence_native": "Die Prophylaxe von Krankheiten ist entscheidend.", + "example_sentence_english": "The prophylaxis of diseases is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20381 + }, + { + "word": "prämieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to award a prize", + "romanization": "prämieren", + "example_sentence_native": "Sie werden den besten Film prämieren.", + "example_sentence_english": "They will award a prize to the best film.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20382 + }, + { + "word": "Rally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rally", + "romanization": "Rally", + "example_sentence_native": "Die Rally war sehr aufregend.", + "example_sentence_english": "The rally was very exciting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20385 + }, + { + "word": "rausnehmen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take out", + "romanization": "rausnehmen", + "example_sentence_native": "Kannst du bitte den Müll rausnehmen?", + "example_sentence_english": "Can you please take out the trash?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20387 + }, + { + "word": "Referentin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker (female)", + "romanization": "Referentin", + "example_sentence_native": "Die Referentin hielt einen interessanten Vortrag.", + "example_sentence_english": "The speaker gave an interesting presentation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20388 + }, + { + "word": "Regenfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rainfall", + "romanization": "Regenfall", + "example_sentence_native": "Der starke Regenfall führte zu Überschwemmungen.", + "example_sentence_english": "The heavy rainfall led to floods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20389 + }, + { + "word": "Regierungszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reign", + "romanization": "Regierungszeit", + "example_sentence_native": "Während ihrer Regierungszeit wurden viele Reformen durchgeführt.", + "example_sentence_english": "Many reforms were carried out during her reign.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20390 + }, + { + "word": "Regulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation", + "romanization": "Regulation", + "example_sentence_native": "Die neue Regulation tritt nächste Woche in Kraft.", + "example_sentence_english": "The new regulation comes into effect next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20391 + }, + { + "word": "Reliquie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relic", + "romanization": "Reliquie", + "example_sentence_native": "Die alte Reliquie wurde im Museum ausgestellt.", + "example_sentence_english": "The old relic was exhibited in the museum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20393 + }, + { + "word": "Rentenalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retirement age", + "romanization": "Rentenalter", + "example_sentence_native": "Das Rentenalter wird in vielen Ländern angehoben.", + "example_sentence_english": "The retirement age is being raised in many countries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20394 + }, + { + "word": "Ressentiment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resentment", + "romanization": "Ressentiment", + "example_sentence_native": "Er hegte ein tiefes Ressentiment gegen die Ungerechtigkeit.", + "example_sentence_english": "He harbored a deep resentment against the injustice.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20395 + }, + { + "word": "rundherum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "all around", + "romanization": "rundherum", + "example_sentence_native": "Die Kinder spielten rundherum im Garten.", + "example_sentence_english": "The children played all around in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20399 + }, + { + "word": "Rückschritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setback", + "romanization": "Rückschritt", + "example_sentence_native": "Der Rückschritt in den Verhandlungen war enttäuschend.", + "example_sentence_english": "The setback in the negotiations was disappointing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20400 + }, + { + "word": "salzen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to salt", + "romanization": "salzen", + "example_sentence_native": "Vergiss nicht, das Wasser zu salzen.", + "example_sentence_english": "Don't forget to salt the water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20401 + }, + { + "word": "schwenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swing;to swivel;to wave", + "romanization": "schwenken", + "example_sentence_native": "Er schwenkte die Fahne im Wind.", + "example_sentence_english": "He waved the flag in the wind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20405 + }, + { + "word": "Schäferhund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "German Shepherd", + "romanization": "Schäferhund", + "example_sentence_native": "Der Schäferhund ist eine beliebte Hunderasse.", + "example_sentence_english": "The German Shepherd is a popular dog breed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20406 + }, + { + "word": "Screening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screening", + "romanization": "Screening", + "example_sentence_native": "Das Screening auf Krankheiten ist wichtig für die Früherkennung.", + "example_sentence_english": "Screening for diseases is important for early detection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20407 + }, + { + "word": "selbstredend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-evident;obviously", + "romanization": "selbstredend", + "example_sentence_native": "Selbstredend stimme ich dir zu.", + "example_sentence_english": "Obviously, I agree with you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20409 + }, + { + "word": "siebent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seventh", + "romanization": "siebent", + "example_sentence_native": "Er ist der siebente in der Reihe.", + "example_sentence_english": "He is the seventh in line.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20410 + }, + { + "word": "Sklerose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sclerosis", + "romanization": "Sklerose", + "example_sentence_native": "Multiple Sklerose ist eine chronische Krankheit.", + "example_sentence_english": "Multiple sclerosis is a chronic disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20412 + }, + { + "word": "Sonnenbrand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunburn", + "romanization": "Sonnenbrand", + "example_sentence_native": "Nach dem Strandtag hatte er einen schlimmen Sonnenbrand.", + "example_sentence_english": "After the beach day, he had a bad sunburn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20414 + }, + { + "word": "Sozialamt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social welfare office", + "romanization": "Sozialamt", + "example_sentence_native": "Sie musste zum Sozialamt gehen, um Unterstützung zu beantragen.", + "example_sentence_english": "She had to go to the social welfare office to apply for support.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20416 + }, + { + "word": "Spitzel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spy;informant", + "romanization": "Spitzel", + "example_sentence_native": "Der Spitzel wurde entlarvt.", + "example_sentence_english": "The spy was exposed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20417 + }, + { + "word": "Spitzenkandidatin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leading candidate (female)", + "romanization": "Spitzenkandidatin", + "example_sentence_native": "Sie ist die Spitzenkandidatin ihrer Partei für die Wahl.", + "example_sentence_english": "She is her party's leading candidate for the election.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20418 + }, + { + "word": "Sprachkurs", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "language course", + "romanization": "Sprachkurs", + "example_sentence_native": "Ich besuche einen Sprachkurs, um Deutsch zu lernen.", + "example_sentence_english": "I am attending a language course to learn German.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20419 + }, + { + "word": "sprichwörtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proverbial", + "romanization": "sprichwörtlich", + "example_sentence_native": "Seine Faulheit ist sprichwörtlich.", + "example_sentence_english": "His laziness is proverbial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20420 + }, + { + "word": "Spucke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saliva;spit", + "romanization": "Spucke", + "example_sentence_native": "Er hatte keine Spucke mehr im Mund.", + "example_sentence_english": "He had no more saliva in his mouth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20421 + }, + { + "word": "Spüle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink (kitchen)", + "romanization": "Spüle", + "example_sentence_native": "Das Geschirr steht in der Spüle.", + "example_sentence_english": "The dishes are in the sink.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20422 + }, + { + "word": "Staatschef", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head of state", + "romanization": "Staatschef", + "example_sentence_native": "Der Staatschef besuchte das Nachbarland.", + "example_sentence_english": "The head of state visited the neighboring country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20423 + }, + { + "word": "Stachel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sting;thorn;prickle", + "romanization": "Stachel", + "example_sentence_native": "Die Rose hat scharfe Stacheln.", + "example_sentence_english": "The rose has sharp thorns.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20424 + }, + { + "word": "Statur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stature;build", + "romanization": "Statur", + "example_sentence_native": "Er war von kleiner, kräftiger Statur.", + "example_sentence_english": "He was of small, strong build.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20425 + }, + { + "word": "Steuersatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax rate", + "romanization": "Steuersatz", + "example_sentence_native": "Der Steuersatz wurde erhöht.", + "example_sentence_english": "The tax rate was increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20427 + }, + { + "word": "Stimmrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right to vote;suffrage", + "romanization": "Stimmrecht", + "example_sentence_native": "Frauen erhielten das Stimmrecht später als Männer.", + "example_sentence_english": "Women received the right to vote later than men.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20428 + }, + { + "word": "Stimulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stimulation", + "romanization": "Stimulation", + "example_sentence_native": "Die Stimulation der Nerven kann Schmerzen lindern.", + "example_sentence_english": "The stimulation of the nerves can relieve pain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20429 + }, + { + "word": "Strafbarkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "culpability;punishability", + "romanization": "Strafbarkeit", + "example_sentence_native": "Die Strafbarkeit der Handlung muss geprüft werden.", + "example_sentence_english": "The culpability of the act must be examined.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20430 + }, + { + "word": "Streiterei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarrel;dispute", + "romanization": "Streiterei", + "example_sentence_native": "Es gab eine laute Streiterei zwischen den Nachbarn.", + "example_sentence_english": "There was a loud quarrel between the neighbors.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20431 + }, + { + "word": "Superintendent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendent", + "romanization": "Superintendent", + "example_sentence_native": "Der Superintendent leitet die Kirchengemeinde.", + "example_sentence_english": "The superintendent leads the parish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20433 + }, + { + "word": "Sync", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sync;synchronization", + "romanization": "Sync", + "example_sentence_native": "Der Sync der Daten dauert noch an.", + "example_sentence_english": "The data sync is still ongoing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20434 + }, + { + "word": "Syphilis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "syphilis", + "romanization": "Syphilis", + "example_sentence_native": "Syphilis ist eine sexuell übertragbare Krankheit.", + "example_sentence_english": "Syphilis is a sexually transmitted disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20435 + }, + { + "word": "Säugetier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mammal", + "romanization": "Säugetier", + "example_sentence_native": "Wale sind Säugetiere, keine Fische.", + "example_sentence_english": "Whales are mammals, not fish.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20436 + }, + { + "word": "Tang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seaweed;kelp", + "romanization": "Tang", + "example_sentence_native": "Am Strand lag viel Tang.", + "example_sentence_english": "There was a lot of seaweed on the beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20437 + }, + { + "word": "Timeline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timeline", + "romanization": "Timeline", + "example_sentence_native": "Die Projekt-Timeline wurde aktualisiert.", + "example_sentence_english": "The project timeline was updated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20441 + }, + { + "word": "Umlaufbahn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orbit", + "romanization": "Umlaufbahn", + "example_sentence_native": "Der Satellit befindet sich in einer stabilen Umlaufbahn.", + "example_sentence_english": "The satellite is in a stable orbit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20447 + }, + { + "word": "umschauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look around", + "romanization": "umschauen", + "example_sentence_native": "Er schaute sich im Raum um.", + "example_sentence_english": "He looked around the room.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20448 + }, + { + "word": "Unterarm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forearm", + "romanization": "Unterarm", + "example_sentence_native": "Er hat sich den Unterarm gebrochen.", + "example_sentence_english": "He broke his forearm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20449 + }, + { + "word": "Unteroffizier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-commissioned officer (NCO)", + "romanization": "Unteroffizier", + "example_sentence_native": "Der Unteroffizier gab klare Anweisungen.", + "example_sentence_english": "The non-commissioned officer gave clear instructions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20450 + }, + { + "word": "unvergesslich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unforgettable", + "romanization": "unvergesslich", + "example_sentence_native": "Das war ein unvergesslicher Urlaub.", + "example_sentence_english": "That was an unforgettable vacation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20451 + }, + { + "word": "utopisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "utopian", + "romanization": "utopisch", + "example_sentence_native": "Seine Ideen klingen etwas utopisch.", + "example_sentence_english": "His ideas sound a bit utopian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20452 + }, + { + "word": "Veggie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veggie", + "romanization": "Veggie", + "example_sentence_native": "Ich bin ein Veggie und esse kein Fleisch.", + "example_sentence_english": "I am a veggie and don't eat meat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20454 + }, + { + "word": "Vektor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vector", + "romanization": "Vektor", + "example_sentence_native": "In der Physik ist ein Vektor eine Größe mit Richtung und Betrag.", + "example_sentence_english": "In physics, a vector is a quantity with direction and magnitude.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20455 + }, + { + "word": "verbocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess up;to botch", + "romanization": "verbocken", + "example_sentence_native": "Er hat die ganze Präsentation verbockt.", + "example_sentence_english": "He messed up the whole presentation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20456 + }, + { + "word": "Verfassungsbeschwerde", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "constitutional complaint", + "romanization": "Verfassungsbeschwerde", + "example_sentence_native": "Er reichte eine Verfassungsbeschwerde beim Bundesverfassungsgericht ein.", + "example_sentence_english": "He filed a constitutional complaint with the Federal Constitutional Court.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20457 + }, + { + "word": "vergüten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate;to remunerate", + "romanization": "vergüten", + "example_sentence_native": "Die Firma wird die Reisekosten vergüten.", + "example_sentence_english": "The company will compensate the travel expenses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20458 + }, + { + "word": "versprochen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promised", + "romanization": "versprochen", + "example_sentence_native": "Das ist ein versprochenes Geschenk.", + "example_sentence_english": "That is a promised gift.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20459 + }, + { + "word": "Verstaatlichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nationalization", + "romanization": "Verstaatlichung", + "example_sentence_native": "Die Verstaatlichung der Industrie war ein kontroverses Thema.", + "example_sentence_english": "The nationalization of the industry was a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20460 + }, + { + "word": "Verwarnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warning;caution", + "romanization": "Verwarnung", + "example_sentence_native": "Er erhielt eine Verwarnung wegen Falschparkens.", + "example_sentence_english": "He received a warning for illegal parking.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20461 + }, + { + "word": "Volksvertreter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representative of the people;parliamentarian", + "romanization": "Volksvertreter", + "example_sentence_native": "Die Volksvertreter diskutierten das neue Gesetz.", + "example_sentence_english": "The representatives of the people discussed the new law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20463 + }, + { + "word": "Voraussicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foresight;prospect", + "romanization": "Voraussicht", + "example_sentence_native": "Mit großer Voraussicht plante er seine Zukunft.", + "example_sentence_english": "With great foresight, he planned his future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20464 + }, + { + "word": "Wertigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valence;value;worth", + "romanization": "Wertigkeit", + "example_sentence_native": "Die Wertigkeit eines Elements bestimmt seine chemischen Eigenschaften.", + "example_sentence_english": "The valence of an element determines its chemical properties.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20470 + }, + { + "word": "wissentlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knowingly;intentionally", + "romanization": "wissentlich", + "example_sentence_native": "Er hat die Regeln wissentlich missachtet.", + "example_sentence_english": "He knowingly disregarded the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20473 + }, + { + "word": "währen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to last;to endure", + "romanization": "währen", + "example_sentence_native": "Der Krieg währte viele Jahre.", + "example_sentence_english": "The war lasted many years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20475 + }, + { + "word": "Währungsunion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monetary union", + "romanization": "Währungsunion", + "example_sentence_native": "Die Europäische Union ist eine Währungsunion.", + "example_sentence_english": "The European Union is a monetary union.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20476 + }, + { + "word": "Zentralrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "central council", + "romanization": "Zentralrat", + "example_sentence_native": "Der Zentralrat der Juden in Deutschland ist eine wichtige Institution.", + "example_sentence_english": "The Central Council of Jews in Germany is an important institution.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20477 + }, + { + "word": "Zielscheibe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "target (for shooting)", + "romanization": "Zielscheibe", + "example_sentence_native": "Er traf genau die Mitte der Zielscheibe.", + "example_sentence_english": "He hit exactly the center of the target.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20479 + }, + { + "word": "zollen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay (respect);to show (tribute)", + "romanization": "zollen", + "example_sentence_native": "Wir sollten den Opfern Respekt zollen.", + "example_sentence_english": "We should pay respect to the victims.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20480 + }, + { + "word": "Zulässigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "admissibility;permissibility", + "romanization": "Zulässigkeit", + "example_sentence_native": "Die Zulässigkeit der Beweise wurde geprüft.", + "example_sentence_english": "The admissibility of the evidence was examined.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20481 + }, + { + "word": "zuwider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repugnant;contrary to", + "romanization": "zuwider", + "example_sentence_native": "Das ist mir zuwider.", + "example_sentence_english": "That is repugnant to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20482 + }, + { + "word": "überragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tower above;to excel", + "romanization": "überragen", + "example_sentence_native": "Der Berg überragt die umliegenden Hügel.", + "example_sentence_english": "The mountain towers above the surrounding hills.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20484 + }, + { + "word": "Überschneidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overlap;intersection", + "romanization": "Überschneidung", + "example_sentence_native": "Es gibt eine Überschneidung der Interessen.", + "example_sentence_english": "There is an overlap of interests.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20485 + }, + { + "word": "Aal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eel", + "romanization": "Aal", + "example_sentence_native": "Der Aal schwamm im Fluss.", + "example_sentence_english": "The eel swam in the river.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20486 + }, + { + "word": "Abrüstung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disarmament", + "romanization": "Abrüstung", + "example_sentence_native": "Die Abrüstung ist ein wichtiges politisches Ziel.", + "example_sentence_english": "Disarmament is an important political goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20487 + }, + { + "word": "Abtransport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "removal;transport away", + "romanization": "Abtransport", + "example_sentence_native": "Der Abtransport des Mülls erfolgte pünktlich.", + "example_sentence_english": "The removal of the waste took place on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20488 + }, + { + "word": "Adressbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "address book", + "romanization": "Adressbuch", + "example_sentence_native": "Ich habe seine Nummer im Adressbuch gefunden.", + "example_sentence_english": "I found his number in the address book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20489 + }, + { + "word": "Akne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acne", + "romanization": "Akne", + "example_sentence_native": "Viele Jugendliche leiden unter Akne.", + "example_sentence_english": "Many teenagers suffer from acne.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20492 + }, + { + "word": "Alp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nightmare", + "romanization": "Alp", + "example_sentence_native": "Ich hatte letzte Nacht einen schlimmen Alp.", + "example_sentence_english": "I had a bad nightmare last night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20493 + }, + { + "word": "Anschauung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "view;opinion;intuition", + "romanization": "Anschauung", + "example_sentence_native": "Er hat eine klare Anschauung zu diesem Thema.", + "example_sentence_english": "He has a clear view on this topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20496 + }, + { + "word": "Ansporn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incentive;encouragement", + "romanization": "Ansporn", + "example_sentence_native": "Sein Erfolg war ein Ansporn für uns alle.", + "example_sentence_english": "His success was an incentive for all of us.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20497 + }, + { + "word": "Armbanduhr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wristwatch", + "romanization": "Armbanduhr", + "example_sentence_native": "Er trägt eine neue Armbanduhr.", + "example_sentence_english": "He is wearing a new wristwatch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20498 + }, + { + "word": "Arthritis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arthritis", + "romanization": "Arthritis", + "example_sentence_native": "Sie leidet unter Arthritis in den Händen.", + "example_sentence_english": "She suffers from arthritis in her hands.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20499 + }, + { + "word": "atlantisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Atlantic", + "romanization": "atlantisch", + "example_sentence_native": "Der atlantische Ozean ist sehr groß.", + "example_sentence_english": "The Atlantic Ocean is very large.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20501 + }, + { + "word": "Atomenergie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear energy", + "romanization": "Atomenergie", + "example_sentence_native": "Die Atomenergie ist ein kontroverses Thema.", + "example_sentence_english": "Nuclear energy is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20502 + }, + { + "word": "Attest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certificate;medical certificate", + "romanization": "Attest", + "example_sentence_native": "Ich brauche ein ärztliches Attest für die Arbeit.", + "example_sentence_english": "I need a medical certificate for work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20503 + }, + { + "word": "ausgestalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to design;to shape;to elaborate", + "romanization": "ausgestalten", + "example_sentence_native": "Wir müssen die Details des Plans noch ausgestalten.", + "example_sentence_english": "We still need to elaborate on the details of the plan.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "gestalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20504 + }, + { + "word": "ausreisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leave the country;to emigrate", + "romanization": "ausreisen", + "example_sentence_native": "Er musste aus politischen Gründen ausreisen.", + "example_sentence_english": "He had to leave the country for political reasons.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "reisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20505 + }, + { + "word": "Austragungsort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "venue;host city;location", + "romanization": "Austragungsort", + "example_sentence_native": "Der Austragungsort der nächsten Olympischen Spiele steht fest.", + "example_sentence_english": "The venue for the next Olympic Games has been decided.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20506 + }, + { + "word": "Bauleiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction manager", + "romanization": "Bauleiter", + "example_sentence_native": "Der Bauleiter überwacht den Fortschritt des Projekts.", + "example_sentence_english": "The construction manager supervises the progress of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20509 + }, + { + "word": "befeuern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fire;to fuel;to stoke", + "romanization": "befeuern", + "example_sentence_native": "Die Diskussion wurde durch neue Informationen befeuert.", + "example_sentence_english": "The discussion was fueled by new information.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20510 + }, + { + "word": "behaften", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to burden;to afflict", + "romanization": "behaften", + "example_sentence_native": "Der Vertrag ist mit einigen Mängeln behaftet.", + "example_sentence_english": "The contract is afflicted with some flaws.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20511 + }, + { + "word": "bereinigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clear;to rectify;to settle", + "romanization": "bereinigen", + "example_sentence_native": "Wir müssen die Daten bereinigen, bevor wir sie verwenden.", + "example_sentence_english": "We need to clear the data before we use it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20513 + }, + { + "word": "beschenken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give a present to;to bestow gifts upon", + "romanization": "beschenken", + "example_sentence_native": "Wir wollen die Kinder zu Weihnachten beschenken.", + "example_sentence_english": "We want to give presents to the children for Christmas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20515 + }, + { + "word": "Bevölkerungsdichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "population density", + "romanization": "Bevölkerungsdichte", + "example_sentence_native": "Die Bevölkerungsdichte in dieser Region ist sehr hoch.", + "example_sentence_english": "The population density in this region is very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20516 + }, + { + "word": "Bewässerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrigation;watering", + "romanization": "Bewässerung", + "example_sentence_native": "Die Bewässerung der Felder ist in trockenen Gebieten entscheidend.", + "example_sentence_english": "The irrigation of the fields is crucial in dry areas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20517 + }, + { + "word": "Biedermann", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upright citizen;philistine", + "romanization": "Biedermann", + "example_sentence_native": "Manchmal ist ein Biedermann zu naiv.", + "example_sentence_english": "Sometimes an upright citizen is too naive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20518 + }, + { + "word": "Bierchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small beer;a little beer", + "romanization": "Bierchen", + "example_sentence_native": "Lass uns ein Bierchen trinken gehen.", + "example_sentence_english": "Let's go have a little beer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20519 + }, + { + "word": "Blickpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focal point", + "romanization": "Blickpunkt", + "example_sentence_native": "Der Blickpunkt der Diskussion war die Wirtschaft.", + "example_sentence_english": "The focal point of the discussion was the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20521 + }, + { + "word": "Booster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "booster", + "romanization": "Booster", + "example_sentence_native": "Er hat seinen Booster-Impfstoff erhalten.", + "example_sentence_english": "He received his booster vaccine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20525 + }, + { + "word": "Bruttoinlandsprodukt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gross domestic product", + "romanization": "Bruttoinlandsprodukt", + "example_sentence_native": "Das Bruttoinlandsprodukt ist ein wichtiger Wirtschaftsindikator.", + "example_sentence_english": "The gross domestic product is an important economic indicator.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20527 + }, + { + "word": "Bundesversammlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Convention", + "romanization": "Bundesversammlung", + "example_sentence_native": "Die Bundesversammlung wählt den Bundespräsidenten.", + "example_sentence_english": "The Federal Convention elects the Federal President.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20529 + }, + { + "word": "Bügel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hanger", + "romanization": "Bügel", + "example_sentence_native": "Häng das Hemd auf den Bügel.", + "example_sentence_english": "Hang the shirt on the hanger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20531 + }, + { + "word": "bürokratisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucratic", + "romanization": "bürokratisch", + "example_sentence_native": "Der Prozess ist sehr bürokratisch.", + "example_sentence_english": "The process is very bureaucratic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20532 + }, + { + "word": "Cognac", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cognac", + "romanization": "Cognac", + "example_sentence_native": "Er trinkt gerne einen Cognac nach dem Essen.", + "example_sentence_english": "He likes to drink a cognac after dinner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20540 + }, + { + "word": "darüberhinaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furthermore", + "romanization": "darüberhinaus", + "example_sentence_native": "Das Projekt ist komplex; darüberhinaus fehlen uns die nötigen Ressourcen.", + "example_sentence_english": "The project is complex; furthermore, we lack the necessary resources.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20546 + }, + { + "word": "Deutschrap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "German hip-hop", + "romanization": "Deutschrap", + "example_sentence_native": "Deutschrap ist in den letzten Jahren sehr populär geworden.", + "example_sentence_english": "German hip-hop has become very popular in recent years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20548 + }, + { + "word": "dolle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great", + "romanization": "dolle", + "example_sentence_native": "Das war eine dolle Party!", + "example_sentence_english": "That was a great party!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20550 + }, + { + "word": "Drogenkonsum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug consumption", + "romanization": "Drogenkonsum", + "example_sentence_native": "Der Drogenkonsum ist ein ernstes Problem in der Gesellschaft.", + "example_sentence_english": "Drug consumption is a serious problem in society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20553 + }, + { + "word": "Durchfahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passage", + "romanization": "Durchfahrt", + "example_sentence_native": "Keine Durchfahrt für Lkws.", + "example_sentence_english": "No through road for trucks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20554 + }, + { + "word": "einfarbig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plain-colored", + "romanization": "einfarbig", + "example_sentence_native": "Ich suche ein einfarbiges Hemd.", + "example_sentence_english": "I'm looking for a plain-colored shirt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20556 + }, + { + "word": "einblenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fade in", + "romanization": "einblenden", + "example_sentence_native": "Bitte blenden Sie den Titel ein.", + "example_sentence_english": "Please fade in the title.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "blenden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20557 + }, + { + "word": "Einzahlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deposit", + "romanization": "Einzahlung", + "example_sentence_native": "Ich muss noch eine Einzahlung auf mein Konto machen.", + "example_sentence_english": "I still need to make a deposit into my account.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20558 + }, + { + "word": "enthoben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relieved (of duty);removed", + "romanization": "enthoben", + "example_sentence_native": "Er wurde seiner Pflichten enthoben.", + "example_sentence_english": "He was relieved of his duties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20561 + }, + { + "word": "Entschädigungen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensations", + "romanization": "Entschädigungen", + "example_sentence_native": "Die Opfer erhielten hohe Entschädigungen.", + "example_sentence_english": "The victims received high compensations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20562 + }, + { + "word": "erfolgter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurred;completed", + "romanization": "erfolgter", + "example_sentence_native": "Nach erfolgter Prüfung erhalten Sie Ihr Zertifikat.", + "example_sentence_english": "After the completed examination, you will receive your certificate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20563 + }, + { + "word": "erhältst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receive (you)", + "romanization": "erhältst", + "example_sentence_native": "Du erhältst eine E-Mail mit den Details.", + "example_sentence_english": "You will receive an email with the details.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20564 + }, + { + "word": "Erledigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completion;handling", + "romanization": "Erledigung", + "example_sentence_native": "Die Erledigung der Aufgabe dauerte länger als erwartet.", + "example_sentence_english": "The completion of the task took longer than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20565 + }, + { + "word": "erträgt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bears;endures", + "romanization": "erträgt", + "example_sentence_native": "Er erträgt den Schmerz mit Würde.", + "example_sentence_english": "He endures the pain with dignity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20566 + }, + { + "word": "essentiell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essential", + "romanization": "essentiell", + "example_sentence_native": "Wasser ist essentiell für das Leben.", + "example_sentence_english": "Water is essential for life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20567 + }, + { + "word": "Evidence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evidence", + "romanization": "Evidence", + "example_sentence_native": "Es gibt keine ausreichende Evidence für diese Behauptung.", + "example_sentence_english": "There is no sufficient evidence for this claim.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20569 + }, + { + "word": "Feldweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dirt road;field path", + "romanization": "Feldweg", + "example_sentence_native": "Wir spazierten den alten Feldweg entlang.", + "example_sentence_english": "We walked along the old dirt road.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20570 + }, + { + "word": "Festsaal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballroom;banqueting hall", + "romanization": "Festsaal", + "example_sentence_native": "Die Hochzeit fand im großen Festsaal statt.", + "example_sentence_english": "The wedding took place in the large ballroom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20571 + }, + { + "word": "Fiasko", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiasco", + "romanization": "Fiasko", + "example_sentence_native": "Das Projekt endete in einem kompletten Fiasko.", + "example_sentence_english": "The project ended in a complete fiasco.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20572 + }, + { + "word": "Firmware", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "firmware", + "romanization": "Firmware", + "example_sentence_native": "Ein Update der Firmware ist erforderlich.", + "example_sentence_english": "A firmware update is required.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20573 + }, + { + "word": "flattern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flutter;to flap", + "romanization": "flattern", + "example_sentence_native": "Die Fahne flatterte im Wind.", + "example_sentence_english": "The flag fluttered in the wind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20575 + }, + { + "word": "Forschungsinstitut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research institute", + "romanization": "Forschungsinstitut", + "example_sentence_native": "Sie arbeitet in einem renommierten Forschungsinstitut.", + "example_sentence_english": "She works at a renowned research institute.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20576 + }, + { + "word": "Fundstück", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "found object;find", + "romanization": "Fundstück", + "example_sentence_native": "Das Museum stellte ein seltenes Fundstück aus.", + "example_sentence_english": "The museum exhibited a rare found object.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20578 + }, + { + "word": "Gaul", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nag;old horse (colloquial)", + "romanization": "Gaul", + "example_sentence_native": "Der alte Gaul stand müde auf der Weide.", + "example_sentence_english": "The old nag stood tired in the pasture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20581 + }, + { + "word": "gedulden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be patient;to wait patiently", + "romanization": "gedulden", + "example_sentence_native": "Sie müssen sich noch etwas gedulden.", + "example_sentence_english": "You still have to be patient for a bit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20583 + }, + { + "word": "gefrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze", + "romanization": "gefrieren", + "example_sentence_native": "Das Wasser wird bei null Grad Celsius gefrieren.", + "example_sentence_english": "The water will freeze at zero degrees Celsius.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20584 + }, + { + "word": "Gefährlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dangerousness;hazard", + "romanization": "Gefährlichkeit", + "example_sentence_native": "Die Gefährlichkeit des Virus wurde unterschätzt.", + "example_sentence_english": "The dangerousness of the virus was underestimated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20585 + }, + { + "word": "Gehirnerschütterung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concussion", + "romanization": "Gehirnerschütterung", + "example_sentence_native": "Nach dem Unfall hatte er eine leichte Gehirnerschütterung.", + "example_sentence_english": "After the accident, he had a mild concussion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20586 + }, + { + "word": "Gemeindegebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "municipal area;community area", + "romanization": "Gemeindegebiet", + "example_sentence_native": "Das neue Bauprojekt liegt im Gemeindegebiet von Musterstadt.", + "example_sentence_english": "The new construction project is located in the municipal area of Musterstadt.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20587 + }, + { + "word": "runden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to round (off);to make round", + "romanization": "runden", + "example_sentence_native": "Bitte runden Sie den Betrag auf die nächste ganze Zahl.", + "example_sentence_english": "Please round the amount to the nearest whole number.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20588 + }, + { + "word": "Gerätschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipment;apparatus", + "romanization": "Gerätschaft", + "example_sentence_native": "Die alte Gerätschaft muss ersetzt werden.", + "example_sentence_english": "The old equipment needs to be replaced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20589 + }, + { + "word": "schrauben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to screw;to bolt", + "romanization": "schrauben", + "example_sentence_native": "Er muss die Schraube festschrauben.", + "example_sentence_english": "He has to screw the bolt tightly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20590 + }, + { + "word": "gespielt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "played;feigned;artificial", + "romanization": "gespielt", + "example_sentence_native": "Seine Überraschung wirkte sehr gespielt.", + "example_sentence_english": "His surprise seemed very feigned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20591 + }, + { + "word": "Giftgas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poison gas", + "romanization": "Giftgas", + "example_sentence_native": "Der Einsatz von Giftgas ist ein Kriegsverbrechen.", + "example_sentence_english": "The use of poison gas is a war crime.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20592 + }, + { + "word": "Golfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "golfer", + "romanization": "Golfer", + "example_sentence_native": "Der Golfer schlug den Ball weit.", + "example_sentence_english": "The golfer hit the ball far.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20595 + }, + { + "word": "Gravitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravitation;gravity", + "romanization": "Gravitation", + "example_sentence_native": "Die Gravitation hält die Planeten in ihrer Umlaufbahn.", + "example_sentence_english": "Gravitation keeps the planets in their orbit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20597 + }, + { + "word": "Grenzübergang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "border crossing", + "romanization": "Grenzübergang", + "example_sentence_native": "Am Grenzübergang gab es lange Wartezeiten.", + "example_sentence_english": "There were long waiting times at the border crossing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20598 + }, + { + "word": "Growth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "growth", + "romanization": "Growth", + "example_sentence_native": "Das Unternehmen verzeichnete ein starkes Growth im letzten Quartal.", + "example_sentence_english": "The company recorded strong growth in the last quarter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20599 + }, + { + "word": "Hausverbot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "house ban;trespass order", + "romanization": "Hausverbot", + "example_sentence_native": "Er bekam ein Hausverbot für den Laden.", + "example_sentence_english": "He received a house ban for the store.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20605 + }, + { + "word": "Hausverwaltung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "property management", + "romanization": "Hausverwaltung", + "example_sentence_native": "Die Hausverwaltung kümmert sich um Reparaturen.", + "example_sentence_english": "The property management takes care of repairs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20606 + }, + { + "word": "Hochachtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high esteem;profound respect", + "romanization": "Hochachtung", + "example_sentence_native": "Ich habe große Hochachtung vor seiner Arbeit.", + "example_sentence_english": "I have great respect for his work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20613 + }, + { + "word": "Hochland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highland;plateau", + "romanization": "Hochland", + "example_sentence_native": "Das schottische Hochland ist sehr schön.", + "example_sentence_english": "The Scottish Highlands are very beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20614 + }, + { + "word": "hochrangig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high-ranking", + "romanization": "hochrangig", + "example_sentence_native": "Er ist ein hochrangiger Beamter.", + "example_sentence_english": "He is a high-ranking official.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20615 + }, + { + "word": "Humanität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanity;humaneness", + "romanization": "Humanität", + "example_sentence_native": "Humanität ist ein wichtiger Wert.", + "example_sentence_english": "Humanity is an important value.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20616 + }, + { + "word": "hypothetisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothetical", + "romanization": "hypothetisch", + "example_sentence_native": "Das ist nur eine hypothetische Frage.", + "example_sentence_english": "That is just a hypothetical question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20618 + }, + { + "word": "Implikation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implication", + "romanization": "Implikation", + "example_sentence_native": "Welche Implikationen hat diese Entscheidung?", + "example_sentence_english": "What implications does this decision have?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20619 + }, + { + "word": "Infektionskrankheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infectious disease", + "romanization": "Infektionskrankheit", + "example_sentence_native": "Eine Infektionskrankheit kann sich schnell ausbreiten.", + "example_sentence_english": "An infectious disease can spread quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20620 + }, + { + "word": "irgendwohin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhere (to a place)", + "romanization": "irgendwohin", + "example_sentence_native": "Ich möchte irgendwohin reisen, wo es warm ist.", + "example_sentence_english": "I want to travel somewhere where it's warm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20622 + }, + { + "word": "Jahrgangsstufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grade level;year group", + "romanization": "Jahrgangsstufe", + "example_sentence_native": "Sie ist in der zehnten Jahrgangsstufe.", + "example_sentence_english": "She is in the tenth grade level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20624 + }, + { + "word": "Kastanie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chestnut", + "romanization": "Kastanie", + "example_sentence_native": "Im Herbst fallen die Kastanien von den Bäumen.", + "example_sentence_english": "In autumn, the chestnuts fall from the trees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20627 + }, + { + "word": "Kinderwunsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desire for children", + "romanization": "Kinderwunsch", + "example_sentence_native": "Viele Paare haben einen starken Kinderwunsch.", + "example_sentence_english": "Many couples have a strong desire for children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20628 + }, + { + "word": "Klemme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clamp;predicament", + "romanization": "Klemme", + "example_sentence_native": "Er steckt in einer finanziellen Klemme.", + "example_sentence_english": "He is in a financial predicament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20629 + }, + { + "word": "Klitoris", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clitoris", + "romanization": "Klitoris", + "example_sentence_native": "Die Klitoris ist ein wichtiges Organ für die weibliche Sexualität.", + "example_sentence_english": "The clitoris is an important organ for female sexuality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20631 + }, + { + "word": "knabbern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nibble", + "romanization": "knabbern", + "example_sentence_native": "Das Eichhörnchen knabbert an einer Nuss.", + "example_sentence_english": "The squirrel is nibbling on a nut.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20632 + }, + { + "word": "konstatieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ascertain;to state;to observe", + "romanization": "konstatieren", + "example_sentence_native": "Der Arzt konnte eine Verbesserung des Zustands konstatieren.", + "example_sentence_english": "The doctor could ascertain an improvement in the condition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20634 + }, + { + "word": "Konstrukteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designer;constructor;engineer", + "romanization": "Konstrukteur", + "example_sentence_native": "Der Konstrukteur hat den neuen Plan entworfen.", + "example_sentence_english": "The designer drafted the new plan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20635 + }, + { + "word": "Koordinierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordination", + "romanization": "Koordinierung", + "example_sentence_native": "Die Koordinierung der Aufgaben ist entscheidend für den Erfolg.", + "example_sentence_english": "The coordination of tasks is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20636 + }, + { + "word": "kosmisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmic", + "romanization": "kosmisch", + "example_sentence_native": "Wir betrachten die kosmische Strahlung.", + "example_sentence_english": "We are observing cosmic radiation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20637 + }, + { + "word": "kreischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shriek;to screech", + "romanization": "kreischen", + "example_sentence_native": "Die Möwen kreischen am Strand.", + "example_sentence_english": "The seagulls are screeching on the beach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20638 + }, + { + "word": "Kreuzfahrtschiff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruise ship", + "romanization": "Kreuzfahrtschiff", + "example_sentence_native": "Das Kreuzfahrtschiff legte im Hafen an.", + "example_sentence_english": "The cruise ship docked in the harbor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20639 + }, + { + "word": "Königshaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royal house", + "romanization": "Königshaus", + "example_sentence_native": "Das Königshaus hat eine lange Geschichte.", + "example_sentence_english": "The royal house has a long history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20640 + }, + { + "word": "Körbchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small basket", + "romanization": "Körbchen", + "example_sentence_native": "Der Hund schläft in seinem Körbchen.", + "example_sentence_english": "The dog sleeps in its small basket.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20641 + }, + { + "word": "Kündigungsfrist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notice period", + "romanization": "Kündigungsfrist", + "example_sentence_native": "Die Kündigungsfrist beträgt drei Monate.", + "example_sentence_english": "The notice period is three months.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20642 + }, + { + "word": "Langweile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boredom", + "romanization": "Langweile", + "example_sentence_native": "Die Langweile war unerträglich.", + "example_sentence_english": "The boredom was unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20645 + }, + { + "word": "Layer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layer", + "romanization": "Layer", + "example_sentence_native": "Die Grafik besteht aus mehreren Layern.", + "example_sentence_english": "The graphic consists of several layers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20646 + }, + { + "word": "Lederjacke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leather jacket", + "romanization": "Lederjacke", + "example_sentence_native": "Sie trug eine schwarze Lederjacke.", + "example_sentence_english": "She wore a black leather jacket.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20647 + }, + { + "word": "lehrreich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instructive", + "romanization": "lehrreich", + "example_sentence_native": "Das Buch war sehr lehrreich.", + "example_sentence_english": "The book was very instructive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20648 + }, + { + "word": "Lichtgeschwindigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "speed of light", + "romanization": "Lichtgeschwindigkeit", + "example_sentence_native": "Nichts kann die Lichtgeschwindigkeit übertreffen.", + "example_sentence_english": "Nothing can exceed the speed of light.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20650 + }, + { + "word": "Löwenzahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dandelion", + "romanization": "Löwenzahn", + "example_sentence_native": "Der Löwenzahn blüht im Frühling.", + "example_sentence_english": "The dandelion blooms in spring.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20657 + }, + { + "word": "Medizinstudium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medical studies", + "romanization": "Medizinstudium", + "example_sentence_native": "Mein Bruder hat sein Medizinstudium abgeschlossen.", + "example_sentence_english": "My brother has completed his medical studies.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20660 + }, + { + "word": "molekular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "molecular", + "romanization": "molekular", + "example_sentence_native": "Die molekulare Struktur ist sehr komplex.", + "example_sentence_english": "The molecular structure is very complex.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20666 + }, + { + "word": "Nebensache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor matter", + "romanization": "Nebensache", + "example_sentence_native": "Das ist nur eine Nebensache.", + "example_sentence_english": "That's just a minor matter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20671 + }, + { + "word": "Obduktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autopsy", + "romanization": "Obduktion", + "example_sentence_native": "Die Obduktion ergab die Todesursache.", + "example_sentence_english": "The autopsy revealed the cause of death.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20678 + }, + { + "word": "Offerte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offer", + "romanization": "Offerte", + "example_sentence_native": "Wir haben eine gute Offerte für das Projekt erhalten.", + "example_sentence_english": "We received a good offer for the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20679 + }, + { + "word": "Ostersonntag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Easter Sunday", + "romanization": "Ostersonntag", + "example_sentence_native": "Ostersonntag ist ein wichtiger Feiertag.", + "example_sentence_english": "Easter Sunday is an important holiday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20683 + }, + { + "word": "Parteimitglied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "party member", + "romanization": "Parteimitglied", + "example_sentence_native": "Jedes Parteimitglied hat eine Stimme.", + "example_sentence_english": "Every party member has one vote.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20687 + }, + { + "word": "Partnersuche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partner search;dating", + "romanization": "Partnersuche", + "example_sentence_native": "Die Partnersuche kann schwierig sein.", + "example_sentence_english": "The partner search can be difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20688 + }, + { + "word": "Petersilie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parsley", + "romanization": "Petersilie", + "example_sentence_native": "Ich brauche frische Petersilie für das Gericht.", + "example_sentence_english": "I need fresh parsley for the dish.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20689 + }, + { + "word": "Pfau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peacock", + "romanization": "Pfau", + "example_sentence_native": "Der Pfau zeigte sein prächtiges Federkleid.", + "example_sentence_english": "The peacock showed its magnificent plumage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20690 + }, + { + "word": "Physiotherapie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physiotherapy", + "romanization": "Physiotherapie", + "example_sentence_native": "Nach der Operation brauchte sie Physiotherapie.", + "example_sentence_english": "After the operation, she needed physiotherapy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20692 + }, + { + "word": "Pieper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beeper;pipit (bird)", + "romanization": "Pieper", + "example_sentence_native": "Der Pieper gab ein lautes Geräusch von sich.", + "example_sentence_english": "The beeper made a loud noise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20693 + }, + { + "word": "Postbote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "postman;mail carrier", + "romanization": "Postbote", + "example_sentence_native": "Der Postbote brachte einen Brief.", + "example_sentence_english": "The postman brought a letter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20694 + }, + { + "word": "profilieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to profile oneself;to distinguish oneself", + "romanization": "profilieren", + "example_sentence_native": "Er versucht, sich als Experte zu profilieren.", + "example_sentence_english": "He tries to profile himself as an expert.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20695 + }, + { + "word": "präventiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventive;precautionary", + "romanization": "präventiv", + "example_sentence_native": "Es wurden präventive Maßnahmen ergriffen.", + "example_sentence_english": "Preventive measures were taken.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20696 + }, + { + "word": "Puck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puck (ice hockey)", + "romanization": "Puck", + "example_sentence_native": "Der Spieler schoss den Puck ins Tor.", + "example_sentence_english": "The player shot the puck into the goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20697 + }, + { + "word": "Qi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Qi (life force)", + "romanization": "Qi", + "example_sentence_native": "Im Tai Chi geht es um die Harmonisierung des Qi.", + "example_sentence_english": "Tai Chi is about harmonizing the Qi.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20698 + }, + { + "word": "Rechtsberatung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal advice", + "romanization": "Rechtsberatung", + "example_sentence_native": "Ich benötige eine Rechtsberatung zu diesem Fall.", + "example_sentence_english": "I need legal advice on this case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20702 + }, + { + "word": "Rechtsweg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal action;recourse to the courts", + "romanization": "Rechtsweg", + "example_sentence_native": "Der Rechtsweg ist in dieser Angelegenheit ausgeschlossen.", + "example_sentence_english": "Recourse to the courts is excluded in this matter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20703 + }, + { + "word": "Regler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controller;regulator;slider", + "romanization": "Regler", + "example_sentence_native": "Drehen Sie den Regler nach rechts, um die Lautstärke zu erhöhen.", + "example_sentence_english": "Turn the controller to the right to increase the volume.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20704 + }, + { + "word": "Reisebericht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "travel report", + "romanization": "Reisebericht", + "example_sentence_native": "Sie hat einen faszinierenden Reisebericht über ihre Abenteuer geschrieben.", + "example_sentence_english": "She wrote a fascinating travel report about her adventures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20705 + }, + { + "word": "Reiseveranstalter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tour operator", + "romanization": "Reiseveranstalter", + "example_sentence_native": "Der Reiseveranstalter hat unsere Buchung bestätigt.", + "example_sentence_english": "The tour operator confirmed our booking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20706 + }, + { + "word": "Requisite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prop;requisite", + "romanization": "Requisite", + "example_sentence_native": "Die Requisite für das Theaterstück wurde sorgfältig ausgewählt.", + "example_sentence_english": "The prop for the play was carefully selected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20707 + }, + { + "word": "Reset", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reset", + "romanization": "Reset", + "example_sentence_native": "Drücken Sie den Reset-Knopf, um das Gerät neu zu starten.", + "example_sentence_english": "Press the reset button to restart the device.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20708 + }, + { + "word": "Risikofaktor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risk factor", + "romanization": "Risikofaktor", + "example_sentence_native": "Rauchen ist ein bekannter Risikofaktor für viele Krankheiten.", + "example_sentence_english": "Smoking is a known risk factor for many diseases.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20710 + }, + { + "word": "Robe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gown;robe", + "romanization": "Robe", + "example_sentence_native": "Die Braut trug eine wunderschöne weiße Robe.", + "example_sentence_english": "The bride wore a beautiful white gown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20711 + }, + { + "word": "Rummel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hustle and bustle;fairground;fuss", + "romanization": "Rummel", + "example_sentence_native": "Auf dem Rummel gab es viele spannende Fahrgeschäfte.", + "example_sentence_english": "There were many exciting rides at the fairground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20716 + }, + { + "word": "rumstehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stand around", + "romanization": "rumstehen", + "example_sentence_native": "Warum stehst du hier nur rum und hilfst nicht?", + "example_sentence_english": "Why are you just standing around here and not helping?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rum", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20717 + }, + { + "word": "Rübe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turnip;beet", + "romanization": "Rübe", + "example_sentence_native": "Ich habe eine rote Rübe im Garten gepflanzt.", + "example_sentence_english": "I planted a red beet in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20719 + }, + { + "word": "Rückkehrer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "returnee", + "romanization": "Rückkehrer", + "example_sentence_native": "Der Rückkehrer wurde herzlich empfangen.", + "example_sentence_english": "The returnee was warmly welcomed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20720 + }, + { + "word": "Sachverstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expertise", + "romanization": "Sachverstand", + "example_sentence_native": "Er zeigte großen Sachverstand in seinem Fachgebiet.", + "example_sentence_english": "He showed great expertise in his field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20722 + }, + { + "word": "Schlafanzug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pajamas", + "romanization": "Schlafanzug", + "example_sentence_native": "Er zog seinen Schlafanzug an, bevor er ins Bett ging.", + "example_sentence_english": "He put on his pajamas before going to bed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20724 + }, + { + "word": "schubsen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to push", + "romanization": "schubsen", + "example_sentence_native": "Du solltest niemanden schubsen.", + "example_sentence_english": "You shouldn't push anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20725 + }, + { + "word": "schwerlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hardly", + "romanization": "schwerlich", + "example_sentence_native": "Das ist schwerlich zu glauben.", + "example_sentence_english": "That is scarcely believable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20726 + }, + { + "word": "Schwimmbecken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming pool", + "romanization": "Schwimmbecken", + "example_sentence_native": "Das Schwimmbecken ist heute geschlossen.", + "example_sentence_english": "The swimming pool is closed today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20727 + }, + { + "word": "seltsamerweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strangely enough", + "romanization": "seltsamerweise", + "example_sentence_native": "Seltsamerweise war niemand zu Hause.", + "example_sentence_english": "Strangely enough, no one was home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20728 + }, + { + "word": "Serienmörder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serial killer", + "romanization": "Serienmörder", + "example_sentence_native": "Der Serienmörder wurde nach langer Fahndung gefasst.", + "example_sentence_english": "The serial killer was caught after a long manhunt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20729 + }, + { + "word": "Sirup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syrup", + "romanization": "Sirup", + "example_sentence_native": "Ich mag Pfannkuchen mit Ahornsirup.", + "example_sentence_english": "I like pancakes with maple syrup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20731 + }, + { + "word": "Sozialforschung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social research", + "romanization": "Sozialforschung", + "example_sentence_native": "Sie arbeitet in der Sozialforschung an der Universität.", + "example_sentence_english": "She works in social research at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20734 + }, + { + "word": "Spielhalle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arcade", + "romanization": "Spielhalle", + "example_sentence_native": "Die Kinder verbrachten den Nachmittag in der Spielhalle.", + "example_sentence_english": "The children spent the afternoon in the arcade.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20735 + }, + { + "word": "Spitzenspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top match", + "romanization": "Spitzenspiel", + "example_sentence_native": "Das Spitzenspiel der Liga findet am Samstag statt.", + "example_sentence_english": "The top match of the league takes place on Saturday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20736 + }, + { + "word": "Sportlehrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sports teacher", + "romanization": "Sportlehrer", + "example_sentence_native": "Unser Sportlehrer ist sehr motivierend.", + "example_sentence_english": "Our sports teacher is very motivating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20737 + }, + { + "word": "Sportunterricht", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "physical education", + "romanization": "Sportunterricht", + "example_sentence_native": "Wir haben heute Sportunterricht in der Turnhalle.", + "example_sentence_english": "We have physical education today in the gym.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20738 + }, + { + "word": "Steiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreman (mining)", + "romanization": "Steiger", + "example_sentence_native": "Der Steiger führte die Bergleute durch den Stollen.", + "example_sentence_english": "The foreman led the miners through the tunnel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20739 + }, + { + "word": "straffrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpunished", + "romanization": "straffrei", + "example_sentence_native": "Er blieb straffrei, obwohl er das Gesetz gebrochen hatte.", + "example_sentence_english": "He remained unpunished, although he had broken the law.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20740 + }, + { + "word": "Strafzettel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parking ticket", + "romanization": "Strafzettel", + "example_sentence_native": "Ich habe einen Strafzettel für Falschparken bekommen.", + "example_sentence_english": "I got a parking ticket for illegal parking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20741 + }, + { + "word": "Strass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rhinestone", + "romanization": "Strass", + "example_sentence_native": "Das Kleid war mit glitzerndem Strass besetzt.", + "example_sentence_english": "The dress was adorned with sparkling rhinestones.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20742 + }, + { + "word": "streitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disputed", + "romanization": "streitig", + "example_sentence_native": "Die Eigentumsverhältnisse sind noch streitig.", + "example_sentence_english": "The ownership conditions are still disputed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20743 + }, + { + "word": "strittig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversial", + "romanization": "strittig", + "example_sentence_native": "Das ist ein strittiger Punkt in der Diskussion.", + "example_sentence_english": "That is a controversial point in the discussion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20744 + }, + { + "word": "stumpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blunt", + "romanization": "stumpfen", + "example_sentence_native": "Harte Arbeit kann die schärfsten Werkzeuge stumpfen.", + "example_sentence_english": "Hard work can blunt the sharpest tools.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20745 + }, + { + "word": "Suchmaschinenoptimierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "search engine optimization", + "romanization": "Suchmaschinenoptimierung", + "example_sentence_native": "Suchmaschinenoptimierung ist entscheidend für Online-Sichtbarkeit.", + "example_sentence_english": "Search engine optimization is crucial for online visibility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20746 + }, + { + "word": "Survey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey", + "romanization": "Survey", + "example_sentence_native": "Wir führen eine Online-Survey durch, um Feedback zu sammeln.", + "example_sentence_english": "We are conducting an online survey to gather feedback.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20748 + }, + { + "word": "Taifun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typhoon", + "romanization": "Taifun", + "example_sentence_native": "Der Taifun verursachte große Schäden an der Küste.", + "example_sentence_english": "The typhoon caused great damage to the coast.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20750 + }, + { + "word": "Teamarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teamwork", + "romanization": "Teamarbeit", + "example_sentence_native": "Gute Teamarbeit ist entscheidend für den Erfolg des Projekts.", + "example_sentence_english": "Good teamwork is crucial for the success of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20751 + }, + { + "word": "Teamleiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "team leader", + "romanization": "Teamleiter", + "example_sentence_native": "Der Teamleiter hat die Verantwortung für das gesamte Team.", + "example_sentence_english": "The team leader has responsibility for the entire team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20752 + }, + { + "word": "Teint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complexion", + "romanization": "Teint", + "example_sentence_native": "Sie hat einen gesunden Teint.", + "example_sentence_english": "She has a healthy complexion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20753 + }, + { + "word": "Timer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "timer", + "romanization": "Timer", + "example_sentence_native": "Stell den Timer auf 10 Minuten.", + "example_sentence_english": "Set the timer for 10 minutes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20756 + }, + { + "word": "Topographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "topography", + "romanization": "Topographie", + "example_sentence_native": "Die Topographie der Region ist sehr bergig.", + "example_sentence_english": "The topography of the region is very mountainous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20757 + }, + { + "word": "toxisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toxic", + "romanization": "toxisch", + "example_sentence_native": "Diese Chemikalie ist toxisch und sollte vorsichtig gehandhabt werden.", + "example_sentence_english": "This chemical is toxic and should be handled carefully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20758 + }, + { + "word": "Tragfähigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "load-bearing capacity", + "romanization": "Tragfähigkeit", + "example_sentence_native": "Die Tragfähigkeit der Brücke muss regelmäßig überprüft werden.", + "example_sentence_english": "The load-bearing capacity of the bridge must be checked regularly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20759 + }, + { + "word": "Treatment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treatment", + "romanization": "Treatment", + "example_sentence_native": "Das neue Treatment hat gute Ergebnisse gezeigt.", + "example_sentence_english": "The new treatment has shown good results.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20761 + }, + { + "word": "Tribunal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tribunal", + "romanization": "Tribunal", + "example_sentence_native": "Das internationale Tribunal hat eine Entscheidung getroffen.", + "example_sentence_english": "The international tribunal has made a decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20762 + }, + { + "word": "Trinker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drinker", + "romanization": "Trinker", + "example_sentence_native": "Er ist ein starker Trinker.", + "example_sentence_english": "He is a heavy drinker.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20763 + }, + { + "word": "Trouble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trouble", + "romanization": "Trouble", + "example_sentence_native": "Er hat immer wieder Trouble mit der Polizei.", + "example_sentence_english": "He always has trouble with the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20764 + }, + { + "word": "umfunktionieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repurpose", + "romanization": "umfunktionieren", + "example_sentence_native": "Wir müssen den Raum umfunktionieren.", + "example_sentence_english": "We need to repurpose the room.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "funktionieren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20766 + }, + { + "word": "umringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surround", + "romanization": "umringen", + "example_sentence_native": "Die Menge begann, ihn zu umringen.", + "example_sentence_english": "The crowd began to surround him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20767 + }, + { + "word": "unantastbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inviolable", + "romanization": "unantastbar", + "example_sentence_native": "Die Menschenwürde ist unantastbar.", + "example_sentence_english": "Human dignity is inviolable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20768 + }, + { + "word": "unerfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inexperienced", + "romanization": "unerfahren", + "example_sentence_native": "Er ist noch sehr unerfahren in diesem Bereich.", + "example_sentence_english": "He is still very inexperienced in this area.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20769 + }, + { + "word": "unerkannt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrecognized", + "romanization": "unerkannt", + "example_sentence_native": "Er konnte unerkannt entkommen.", + "example_sentence_english": "He was able to escape undetected.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20770 + }, + { + "word": "unerwähnt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unmentioned", + "romanization": "unerwähnt", + "example_sentence_native": "Diese Tatsache blieb unerwähnt.", + "example_sentence_english": "This fact remained unmentioned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20771 + }, + { + "word": "ungeniert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uninhibited", + "romanization": "ungeniert", + "example_sentence_native": "Sie lachte ungeniert über den Witz.", + "example_sentence_english": "She laughed uninhibitedly at the joke.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20772 + }, + { + "word": "unique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unique", + "romanization": "unique", + "example_sentence_native": "Das ist eine wirklich unique Gelegenheit.", + "example_sentence_english": "That is a truly unique opportunity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20773 + }, + { + "word": "unschädlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmless", + "romanization": "unschädlich", + "example_sentence_native": "Die Substanz ist völlig unschädlich.", + "example_sentence_english": "The substance is completely harmless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20774 + }, + { + "word": "Unterteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subdivision", + "romanization": "Unterteilung", + "example_sentence_native": "Die Unterteilung des Buches ist sehr logisch.", + "example_sentence_english": "The subdivision of the book is very logical.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20775 + }, + { + "word": "unwissend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorant", + "romanization": "unwissend", + "example_sentence_native": "Er blieb unwissend über die wahren Umstände.", + "example_sentence_english": "He remained ignorant of the true circumstances.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20776 + }, + { + "word": "Utensil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utensil", + "romanization": "Utensil", + "example_sentence_native": "Dieses Utensil ist sehr nützlich in der Küche.", + "example_sentence_english": "This utensil is very useful in the kitchen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20778 + }, + { + "word": "Varietät", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variety", + "romanization": "Varietät", + "example_sentence_native": "Es gibt eine große Varietät an Pflanzen in diesem Garten.", + "example_sentence_english": "There is a great variety of plants in this garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20779 + }, + { + "word": "Veranstaltungsreihe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "series of events", + "romanization": "Veranstaltungsreihe", + "example_sentence_native": "Die Veranstaltungsreihe beginnt nächste Woche.", + "example_sentence_english": "The series of events begins next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20780 + }, + { + "word": "verdrängt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "displaced;repressed", + "romanization": "verdrängt", + "example_sentence_native": "Er hat seine Gefühle verdrängt.", + "example_sentence_english": "He has repressed his feelings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20781 + }, + { + "word": "verewigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to immortalize;to perpetuate", + "romanization": "verewigen", + "example_sentence_native": "Er wollte seinen Namen in der Geschichte verewigen.", + "example_sentence_english": "He wanted to immortalize his name in history.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20782 + }, + { + "word": "vergewissern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ascertain;to make sure", + "romanization": "vergewissern", + "example_sentence_native": "Sie müssen sich vergewissern, dass alles in Ordnung ist.", + "example_sentence_english": "You must make sure that everything is in order.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20783 + }, + { + "word": "verstreichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to elapse;to pass (time)", + "romanization": "verstreichen", + "example_sentence_native": "Die Zeit verstreicht schnell.", + "example_sentence_english": "Time passes quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20784 + }, + { + "word": "verstummen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fall silent;to become mute", + "romanization": "verstummen", + "example_sentence_native": "Die Musik verstummte plötzlich.", + "example_sentence_english": "The music suddenly fell silent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20785 + }, + { + "word": "Vogelart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bird species", + "romanization": "Vogelart", + "example_sentence_native": "Das ist eine seltene Vogelart.", + "example_sentence_english": "That is a rare bird species.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20787 + }, + { + "word": "vormachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demonstrate;to pretend;to fool", + "romanization": "vormachen", + "example_sentence_native": "Er hat mir vorgemacht, wie es geht.", + "example_sentence_english": "He showed me how it's done.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20788 + }, + { + "word": "Vorsaison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preseason;off-season (early part)", + "romanization": "Vorsaison", + "example_sentence_native": "In der Vorsaison sind die Preise niedriger.", + "example_sentence_english": "In the preseason, prices are lower.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20789 + }, + { + "word": "Wachtmeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sergeant (police;military);constable", + "romanization": "Wachtmeister", + "example_sentence_native": "Der Wachtmeister patrouillierte durch die Straßen.", + "example_sentence_english": "The sergeant patrolled the streets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20790 + }, + { + "word": "Wasserstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water level", + "romanization": "Wasserstand", + "example_sentence_native": "Der Wasserstand des Flusses ist gestiegen.", + "example_sentence_english": "The water level of the river has risen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20794 + }, + { + "word": "Weltfrieden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world peace", + "romanization": "Weltfrieden", + "example_sentence_native": "Viele Menschen wünschen sich Weltfrieden.", + "example_sentence_english": "Many people wish for world peace.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20797 + }, + { + "word": "wiedererkennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize (again)", + "romanization": "wiedererkennen", + "example_sentence_native": "Ich habe ihn sofort wiedererkannt.", + "example_sentence_english": "I recognized him immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20799 + }, + { + "word": "Winterzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winter time", + "romanization": "Winterzeit", + "example_sentence_native": "Die Winterzeit beginnt Ende Oktober.", + "example_sentence_english": "Winter time begins at the end of October.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20803 + }, + { + "word": "wundersam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wondrous;miraculous", + "romanization": "wundersam", + "example_sentence_native": "Es war eine wundersame Rettung.", + "example_sentence_english": "It was a wondrous rescue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20806 + }, + { + "word": "zahlend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paying", + "romanization": "zahlend", + "example_sentence_native": "Wir haben viele zahlende Kunden.", + "example_sentence_english": "We have many paying customers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20808 + }, + { + "word": "Zauberwort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magic word", + "romanization": "Zauberwort", + "example_sentence_native": "Bitte und Danke sind Zauberwörter.", + "example_sentence_english": "Please and thank you are magic words.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20809 + }, + { + "word": "Zaum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bridle;rein", + "romanization": "Zaum", + "example_sentence_native": "Der Reiter legte dem Pferd den Zaum an.", + "example_sentence_english": "The rider put the bridle on the horse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20810 + }, + { + "word": "zehnjährig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ten-year-old", + "romanization": "zehnjährig", + "example_sentence_native": "Mein zehnjähriger Bruder spielt Fußball.", + "example_sentence_english": "My ten-year-old brother plays soccer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20811 + }, + { + "word": "Zeitmaschine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time machine", + "romanization": "Zeitmaschine", + "example_sentence_native": "Er träumt davon, eine Zeitmaschine zu bauen.", + "example_sentence_english": "He dreams of building a time machine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20812 + }, + { + "word": "Zeitumstellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daylight saving time change;time change", + "romanization": "Zeitumstellung", + "example_sentence_native": "Die Zeitumstellung findet zweimal im Jahr statt.", + "example_sentence_english": "The time change happens twice a year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20813 + }, + { + "word": "zierlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delicate;dainty;graceful", + "romanization": "zierlich", + "example_sentence_native": "Sie hat zierliche Hände.", + "example_sentence_english": "She has delicate hands.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20815 + }, + { + "word": "Zocker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gambler;gamer (informal)", + "romanization": "Zocker", + "example_sentence_native": "Er ist ein leidenschaftlicher Zocker.", + "example_sentence_english": "He is a passionate gambler.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20816 + }, + { + "word": "Zoologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "zoology", + "romanization": "Zoologie", + "example_sentence_native": "Sie studiert Zoologie an der Universität.", + "example_sentence_english": "She studies zoology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20817 + }, + { + "word": "zuerkennen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to award;to grant;to recognize", + "romanization": "zuerkennen", + "example_sentence_native": "Das Gericht wird ihm den Schadenersatz zuerkennen.", + "example_sentence_english": "The court will award him the compensation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "erkennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20819 + }, + { + "word": "zurücklehnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lean back", + "romanization": "zurücklehnen", + "example_sentence_native": "Er lehnte sich entspannt zurück.", + "example_sentence_english": "He leaned back relaxed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "lehnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20820 + }, + { + "word": "überholt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outdated;obsolete", + "romanization": "überholt", + "example_sentence_native": "Diese Technologie ist völlig überholt.", + "example_sentence_english": "This technology is completely outdated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20821 + }, + { + "word": "Übermittlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmission;submission", + "romanization": "Übermittlung", + "example_sentence_native": "Die Übermittlung der Daten dauerte lange.", + "example_sentence_english": "The transmission of the data took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20822 + }, + { + "word": "überrennen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to overrun;to overwhelm", + "romanization": "überrennen", + "example_sentence_native": "Die Fans drohten, das Stadion zu überrennen.", + "example_sentence_english": "The fans threatened to overrun the stadium.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20823 + }, + { + "word": "abkaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to buy from", + "romanization": "abkaufen", + "example_sentence_native": "Er wollte ihm das Auto abkaufen.", + "example_sentence_english": "He wanted to buy the car from him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "kaufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20825 + }, + { + "word": "Abschlussarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final thesis;dissertation", + "romanization": "Abschlussarbeit", + "example_sentence_native": "Sie schreibt gerade an ihrer Abschlussarbeit.", + "example_sentence_english": "She is currently writing her final thesis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20826 + }, + { + "word": "Abschlussbericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final report", + "romanization": "Abschlussbericht", + "example_sentence_native": "Der Abschlussbericht wurde gestern eingereicht.", + "example_sentence_english": "The final report was submitted yesterday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20827 + }, + { + "word": "allzeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at all times;always", + "romanization": "allzeit", + "example_sentence_native": "Er war allzeit bereit zu helfen.", + "example_sentence_english": "He was always ready to help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 20829 + }, + { + "word": "Altertum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiquity;ancient times", + "romanization": "Altertum", + "example_sentence_native": "Das Altertum ist eine faszinierende Epoche.", + "example_sentence_english": "Antiquity is a fascinating epoch.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20830 + }, + { + "word": "Ankläger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosecutor;accuser", + "romanization": "Ankläger", + "example_sentence_native": "Der Ankläger forderte eine hohe Strafe.", + "example_sentence_english": "The prosecutor demanded a high penalty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20833 + }, + { + "word": "appellieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appeal (to);to call (on)", + "romanization": "appellieren", + "example_sentence_native": "Er appellierte an ihr Gewissen.", + "example_sentence_english": "He appealed to her conscience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20834 + }, + { + "word": "Aquarell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watercolor (painting)", + "romanization": "Aquarell", + "example_sentence_native": "Sie malte ein wunderschönes Aquarell.", + "example_sentence_english": "She painted a beautiful watercolor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20835 + }, + { + "word": "Arbeitsalltag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily work routine", + "romanization": "Arbeitsalltag", + "example_sentence_native": "Sein Arbeitsalltag ist sehr stressig.", + "example_sentence_english": "His daily work routine is very stressful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20836 + }, + { + "word": "Arbeitsgericht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labor court", + "romanization": "Arbeitsgericht", + "example_sentence_native": "Der Fall wurde vor dem Arbeitsgericht verhandelt.", + "example_sentence_english": "The case was heard before the labor court.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20837 + }, + { + "word": "Assessment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assessment", + "romanization": "Assessment", + "example_sentence_native": "Das Assessment der Situation war schwierig.", + "example_sentence_english": "The assessment of the situation was difficult.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20840 + }, + { + "word": "Assimilation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assimilation", + "romanization": "Assimilation", + "example_sentence_native": "Die Assimilation neuer Kulturen kann eine Herausforderung sein.", + "example_sentence_english": "The assimilation of new cultures can be a challenge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20841 + }, + { + "word": "ausgebaut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expanded;well-developed", + "romanization": "ausgebaut", + "example_sentence_native": "Das ist ein gut ausgebautes Netzwerk.", + "example_sentence_english": "This is a well-developed network.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20843 + }, + { + "word": "Autobiographie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autobiography", + "romanization": "Autobiographie", + "example_sentence_native": "Sie schrieb eine interessante Autobiographie.", + "example_sentence_english": "She wrote an interesting autobiography.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20844 + }, + { + "word": "Badeanzug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimsuit", + "romanization": "Badeanzug", + "example_sentence_native": "Er hat seinen Badeanzug vergessen.", + "example_sentence_english": "He forgot his swimsuit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20845 + }, + { + "word": "Barkeeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bartender", + "romanization": "Barkeeper", + "example_sentence_native": "Der Barkeeper mixte einen Cocktail.", + "example_sentence_english": "The bartender mixed a cocktail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20846 + }, + { + "word": "Basilikum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basil", + "romanization": "Basilikum", + "example_sentence_native": "Ich liebe frisches Basilikum auf meiner Pizza.", + "example_sentence_english": "I love fresh basil on my pizza.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20847 + }, + { + "word": "Baurecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "building law", + "romanization": "Baurecht", + "example_sentence_native": "Das Baurecht ist in dieser Region sehr streng.", + "example_sentence_english": "The building law is very strict in this region.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20848 + }, + { + "word": "beflügeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inspire;to give wings to", + "romanization": "beflügeln", + "example_sentence_native": "Seine Worte beflügelten die Mannschaft.", + "example_sentence_english": "His words inspired the team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20850 + }, + { + "word": "beharrlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistent;tenacious", + "romanization": "beharrlich", + "example_sentence_native": "Sie arbeitete beharrlich an ihrem Projekt.", + "example_sentence_english": "She worked persistently on her project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20851 + }, + { + "word": "bekehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convert;to persuade", + "romanization": "bekehren", + "example_sentence_native": "Er versuchte, sie zu bekehren.", + "example_sentence_english": "He tried to convert her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20852 + }, + { + "word": "Beschlussfassung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decision-making;resolution", + "romanization": "Beschlussfassung", + "example_sentence_native": "Die Beschlussfassung erfolgte einstimmig.", + "example_sentence_english": "The decision-making was unanimous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20854 + }, + { + "word": "Beschriftung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labeling;inscription", + "romanization": "Beschriftung", + "example_sentence_native": "Die Beschriftung auf der Verpackung war unklar.", + "example_sentence_english": "The labeling on the packaging was unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20855 + }, + { + "word": "beschämen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shame;to embarrass", + "romanization": "beschämen", + "example_sentence_native": "Sein Verhalten beschämte seine Familie.", + "example_sentence_english": "His behavior shamed his family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20856 + }, + { + "word": "besonnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "level-headed;prudent", + "romanization": "besonnen", + "example_sentence_native": "Er reagierte in der Krise sehr besonnen.", + "example_sentence_english": "He reacted very level-headed in the crisis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20857 + }, + { + "word": "Bettdecke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duvet;blanket", + "romanization": "Bettdecke", + "example_sentence_native": "Ich zog die Bettdecke über mich.", + "example_sentence_english": "I pulled the duvet over myself.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20858 + }, + { + "word": "Bewegungsfreiheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freedom of movement;mobility", + "romanization": "Bewegungsfreiheit", + "example_sentence_native": "Die neue Kleidung bietet mehr Bewegungsfreiheit.", + "example_sentence_english": "The new clothing offers more freedom of movement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20859 + }, + { + "word": "bezogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "related;covered", + "romanization": "bezogen", + "example_sentence_native": "Die Aussage ist auf den Kontext bezogen.", + "example_sentence_english": "The statement is related to the context.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20860 + }, + { + "word": "Bildchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small picture;little image", + "romanization": "Bildchen", + "example_sentence_native": "Sie zeigte mir ein süßes Bildchen von ihrem Hund.", + "example_sentence_english": "She showed me a cute small picture of her dog.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20861 + }, + { + "word": "Blasmusik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brass band music", + "romanization": "Blasmusik", + "example_sentence_native": "Auf dem Fest spielte eine traditionelle Blasmusik.", + "example_sentence_english": "A traditional brass band music played at the festival.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20863 + }, + { + "word": "Branding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branding", + "romanization": "Branding", + "example_sentence_native": "Das Branding ist entscheidend für den Erfolg eines Unternehmens.", + "example_sentence_english": "Branding is crucial for a company's success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20865 + }, + { + "word": "Brass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anger;rage (colloquial)", + "romanization": "Brass", + "example_sentence_native": "Er hatte großen Brass auf seinen Chef.", + "example_sentence_english": "He had great anger towards his boss.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20866 + }, + { + "word": "Breakfast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "breakfast", + "romanization": "Breakfast", + "example_sentence_native": "Das Hotel bietet ein reichhaltiges Breakfast an.", + "example_sentence_english": "The hotel offers a rich breakfast.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20867 + }, + { + "word": "Brustwarze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nipple", + "romanization": "Brustwarze", + "example_sentence_native": "Die Brustwarze ist ein Teil der Brust.", + "example_sentence_english": "The nipple is a part of the breast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20868 + }, + { + "word": "Büchlein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small book;booklet", + "romanization": "Büchlein", + "example_sentence_native": "Sie las ein kleines Büchlein im Park.", + "example_sentence_english": "She read a small book in the park.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20870 + }, + { + "word": "bürgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to vouch;to guarantee", + "romanization": "bürgen", + "example_sentence_native": "Ich kann für seine Ehrlichkeit bürgen.", + "example_sentence_english": "I can vouch for his honesty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20871 + }, + { + "word": "Cable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cable", + "romanization": "Cable", + "example_sentence_native": "Wir brauchen ein neues Cable für den Fernseher.", + "example_sentence_english": "We need a new cable for the television.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20872 + }, + { + "word": "Chemiewaffe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemical weapon", + "romanization": "Chemiewaffe", + "example_sentence_native": "Der Einsatz von Chemiewaffen ist international verboten.", + "example_sentence_english": "The use of chemical weapons is internationally prohibited.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20877 + }, + { + "word": "closed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closed", + "romanization": "closed", + "example_sentence_native": "Der Laden ist am Sonntag closed.", + "example_sentence_english": "The shop is closed on Sunday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20879 + }, + { + "word": "Coupon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coupon", + "romanization": "Coupon", + "example_sentence_native": "Ich habe einen Coupon für den Supermarkt.", + "example_sentence_english": "I have a coupon for the supermarket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20881 + }, + { + "word": "dankend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratefully", + "romanization": "dankend", + "example_sentence_native": "Er nahm das Geschenk dankend an.", + "example_sentence_english": "He gratefully accepted the gift.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20883 + }, + { + "word": "degradieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to degrade;to demote", + "romanization": "degradieren", + "example_sentence_native": "Er wurde wegen Fehlverhaltens degradiert.", + "example_sentence_english": "He was demoted due to misconduct.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20885 + }, + { + "word": "Delfin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dolphin", + "romanization": "Delfin", + "example_sentence_native": "Der Delfin ist ein sehr intelligentes Meerestier.", + "example_sentence_english": "The dolphin is a very intelligent marine animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20886 + }, + { + "word": "Doktorand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctoral candidate;PhD student", + "romanization": "Doktorand", + "example_sentence_native": "Der Doktorand arbeitet an seiner Dissertation.", + "example_sentence_english": "The doctoral candidate is working on his dissertation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20891 + }, + { + "word": "Eidgenossenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confederation;commonwealth (specifically Swiss Confederation)", + "romanization": "Eidgenossenschaft", + "example_sentence_native": "Die Schweizerische Eidgenossenschaft wurde 1291 gegründet.", + "example_sentence_english": "The Swiss Confederation was founded in 1291.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20894 + }, + { + "word": "einstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to vouch for;to stand up for;to guarantee", + "romanization": "einstehen", + "example_sentence_native": "Ich werde für meine Fehler einstehen.", + "example_sentence_english": "I will stand up for my mistakes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20896 + }, + { + "word": "Equity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Equity", + "romanization": "Equity", + "example_sentence_native": "Die Investoren bewerten die Equity des Startups.", + "example_sentence_english": "The investors are evaluating the startup's equity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20900 + }, + { + "word": "Erderwärmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Global warming", + "romanization": "Erderwärmung", + "example_sentence_native": "Die Erderwärmung ist eine globale Herausforderung.", + "example_sentence_english": "Global warming is a global challenge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20901 + }, + { + "word": "Erzbistum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Archdiocese", + "romanization": "Erzbistum", + "example_sentence_native": "Das Erzbistum Köln ist sehr alt.", + "example_sentence_english": "The Archdiocese of Cologne is very old.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20903 + }, + { + "word": "Esszimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dining room", + "romanization": "Esszimmer", + "example_sentence_native": "Wir essen im Esszimmer zu Abend.", + "example_sentence_english": "We have dinner in the dining room.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20904 + }, + { + "word": "extended", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extended", + "romanization": "extended", + "example_sentence_native": "Das ist eine extended Version des Programms.", + "example_sentence_english": "This is an extended version of the program.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20905 + }, + { + "word": "Extremfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Extreme case", + "romanization": "Extremfall", + "example_sentence_native": "Im Extremfall müssen wir evakuieren.", + "example_sentence_english": "In an extreme case, we will have to evacuate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20906 + }, + { + "word": "Festanstellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Permanent position", + "romanization": "Festanstellung", + "example_sentence_native": "Er hat eine Festanstellung bekommen.", + "example_sentence_english": "He got a permanent position.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20909 + }, + { + "word": "flicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mend", + "romanization": "flicken", + "example_sentence_native": "Ich muss mein Fahrrad flicken.", + "example_sentence_english": "I need to mend my bicycle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20911 + }, + { + "word": "Flugzeugträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Aircraft carrier", + "romanization": "Flugzeugträger", + "example_sentence_native": "Der Flugzeugträger ist riesig.", + "example_sentence_english": "The aircraft carrier is huge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20912 + }, + { + "word": "Formalität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Formality", + "romanization": "Formalität", + "example_sentence_native": "Das ist nur eine Formalität.", + "example_sentence_english": "That's just a formality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20913 + }, + { + "word": "Freiberufler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Freelancer", + "romanization": "Freiberufler", + "example_sentence_native": "Viele Menschen arbeiten als Freiberufler.", + "example_sentence_english": "Many people work as freelancers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20914 + }, + { + "word": "fremdgehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cheat (on a partner)", + "romanization": "fremdgehen", + "example_sentence_native": "Er ist fremdgegangen.", + "example_sentence_english": "He cheated.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fremd", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20915 + }, + { + "word": "Fremdkörper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Foreign body", + "romanization": "Fremdkörper", + "example_sentence_native": "Es war ein Fremdkörper im Auge.", + "example_sentence_english": "There was a foreign body in the eye.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20916 + }, + { + "word": "Fury", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Fury", + "romanization": "Fury", + "example_sentence_native": "Er war voller Fury.", + "example_sentence_english": "He was full of fury.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20919 + }, + { + "word": "ganzheitlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holistic", + "romanization": "ganzheitlich", + "example_sentence_native": "Wir verfolgen einen ganzheitlichen Ansatz.", + "example_sentence_english": "We pursue a holistic approach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20920 + }, + { + "word": "Gedenktafel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial plaque", + "romanization": "Gedenktafel", + "example_sentence_native": "An der Wand hing eine Gedenktafel für die Opfer.", + "example_sentence_english": "A memorial plaque for the victims hung on the wall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20922 + }, + { + "word": "Gedränge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowd", + "romanization": "Gedränge", + "example_sentence_native": "Im Gedränge verlor ich meine Freunde.", + "example_sentence_english": "I lost my friends in the crowd.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20923 + }, + { + "word": "falten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fold", + "romanization": "falten", + "example_sentence_native": "Kannst du bitte die Wäsche falten?", + "example_sentence_english": "Can you please fold the laundry?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20924 + }, + { + "word": "geisteskrank", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mentally ill", + "romanization": "geisteskrank", + "example_sentence_native": "Er wurde als geisteskrank eingestuft.", + "example_sentence_english": "He was classified as mentally ill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20925 + }, + { + "word": "kränken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to offend", + "romanization": "kränken", + "example_sentence_native": "Seine Worte haben mich tief gekränkt.", + "example_sentence_english": "His words deeply offended me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20926 + }, + { + "word": "Geltungsbereich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scope", + "romanization": "Geltungsbereich", + "example_sentence_native": "Dieses Gesetz hat einen weiten Geltungsbereich.", + "example_sentence_english": "This law has a wide scope of application.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20927 + }, + { + "word": "Gemeinwesen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "community", + "romanization": "Gemeinwesen", + "example_sentence_native": "Ein starkes Gemeinwesen ist wichtig für die Gesellschaft.", + "example_sentence_english": "A strong community is important for society.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20928 + }, + { + "word": "Generalprobe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dress rehearsal", + "romanization": "Generalprobe", + "example_sentence_native": "Die Generalprobe findet morgen statt.", + "example_sentence_english": "The dress rehearsal will take place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20929 + }, + { + "word": "Genitiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "genitive case", + "romanization": "Genitiv", + "example_sentence_native": "Der Genitiv wird oft mit Präpositionen verwendet.", + "example_sentence_english": "The genitive case is often used with prepositions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20930 + }, + { + "word": "Gesamtausgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete edition", + "romanization": "Gesamtausgabe", + "example_sentence_native": "Die Gesamtausgabe seiner Werke ist jetzt erhältlich.", + "example_sentence_english": "The complete edition of his works is now available.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20931 + }, + { + "word": "Gesamtgewicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total weight", + "romanization": "Gesamtgewicht", + "example_sentence_native": "Das Gesamtgewicht des Pakets beträgt 5 Kilogramm.", + "example_sentence_english": "The total weight of the package is 5 kilograms.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20932 + }, + { + "word": "schnitzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carve", + "romanization": "schnitzen", + "example_sentence_native": "Er schnitzt gerne Figuren aus Holz.", + "example_sentence_english": "He likes to carve figures out of wood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20933 + }, + { + "word": "glorreich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glorious", + "romanization": "glorreich", + "example_sentence_native": "Das war ein glorreicher Sieg.", + "example_sentence_english": "That was a glorious victory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20936 + }, + { + "word": "Goal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goal (sports)", + "romanization": "Goal", + "example_sentence_native": "Er schoss ein fantastisches Goal.", + "example_sentence_english": "He scored a fantastic goal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20938 + }, + { + "word": "Grossfamilie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extended family", + "romanization": "Grossfamilie", + "example_sentence_native": "Sie lebt in einer Grossfamilie auf dem Land.", + "example_sentence_english": "She lives in an extended family in the countryside.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20940 + }, + { + "word": "Grossveranstaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "major event", + "romanization": "Grossveranstaltung", + "example_sentence_native": "Die Stadt plant eine Grossveranstaltung für das Jubiläum.", + "example_sentence_english": "The city is planning a major event for the anniversary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20941 + }, + { + "word": "Grundbuch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "land register", + "romanization": "Grundbuch", + "example_sentence_native": "Der Kaufvertrag muss im Grundbuch eingetragen werden.", + "example_sentence_english": "The purchase agreement must be entered in the land register.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20943 + }, + { + "word": "Gulasch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goulash", + "romanization": "Gulasch", + "example_sentence_native": "Ich esse gerne Gulasch mit Nudeln.", + "example_sentence_english": "I like to eat goulash with noodles.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20944 + }, + { + "word": "Habitus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "habitus", + "romanization": "Habitus", + "example_sentence_native": "Sein Habitus verriet seine Herkunft.", + "example_sentence_english": "His habitus revealed his origin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20946 + }, + { + "word": "hastig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hasty", + "romanization": "hastig", + "example_sentence_native": "Er verliess das Zimmer hastig.", + "example_sentence_english": "He left the room hastily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20948 + }, + { + "word": "Haushälterin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "housekeeper", + "romanization": "Haushälterin", + "example_sentence_native": "Die Haushälterin putzt das ganze Haus.", + "example_sentence_english": "The housekeeper cleans the whole house.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20949 + }, + { + "word": "Hazard", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hazard", + "romanization": "Hazard", + "example_sentence_native": "Das moralische Hazard ist ein Problem in der Wirtschaft.", + "example_sentence_english": "Moral hazard is a problem in economics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20950 + }, + { + "word": "Headline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headline", + "romanization": "Headline", + "example_sentence_native": "Die Headline der Zeitung war sehr reisserisch.", + "example_sentence_english": "The newspaper's headline was very sensational.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20951 + }, + { + "word": "Heimfahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journey home", + "romanization": "Heimfahrt", + "example_sentence_native": "Die Heimfahrt dauerte länger als erwartet.", + "example_sentence_english": "The journey home took longer than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20952 + }, + { + "word": "hemmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inhibit", + "romanization": "hemmen", + "example_sentence_native": "Dieser Faktor kann das Wachstum hemmen.", + "example_sentence_english": "This factor can inhibit growth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20954 + }, + { + "word": "herausfordern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to challenge", + "romanization": "herausfordern", + "example_sentence_native": "Er wollte seinen Gegner herausfordern.", + "example_sentence_english": "He wanted to challenge his opponent.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "fordern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20956 + }, + { + "word": "herholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fetch", + "romanization": "herholen", + "example_sentence_native": "Kannst du bitte das Buch von dort herholen?", + "example_sentence_english": "Can you please fetch the book from over there?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 20957 + }, + { + "word": "Hieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blow", + "romanization": "Hieb", + "example_sentence_native": "Er versetzte ihm einen kräftigen Hieb.", + "example_sentence_english": "He dealt him a powerful blow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20958 + }, + { + "word": "Hirt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shepherd", + "romanization": "Hirt", + "example_sentence_native": "Der Hirt führte seine Schafe auf die Weide.", + "example_sentence_english": "The shepherd led his sheep to the pasture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20959 + }, + { + "word": "Hochverrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high treason", + "romanization": "Hochverrat", + "example_sentence_native": "Er wurde des Hochverrats angeklagt.", + "example_sentence_english": "He was accused of high treason.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20961 + }, + { + "word": "Hostel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostel", + "romanization": "Hostel", + "example_sentence_native": "Wir übernachteten in einem günstigen Hostel.", + "example_sentence_english": "We stayed overnight in a cheap hostel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20962 + }, + { + "word": "hyper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hyper;extremely", + "romanization": "hyper", + "example_sentence_native": "Er war hyperaktiv und konnte nicht still sitzen.", + "example_sentence_english": "He was hyperactive and couldn't sit still.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20963 + }, + { + "word": "indigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indigenous", + "romanization": "indigen", + "example_sentence_native": "Die indigenen Völker haben eine reiche Kultur.", + "example_sentence_english": "The indigenous peoples have a rich culture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20965 + }, + { + "word": "inländisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domestic;inland", + "romanization": "inländisch", + "example_sentence_native": "Die inländische Produktion ist gestiegen.", + "example_sentence_english": "Domestic production has increased.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20966 + }, + { + "word": "Innenausstattung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interior design;fittings", + "romanization": "Innenausstattung", + "example_sentence_native": "Die Innenausstattung des Autos ist sehr luxuriös.", + "example_sentence_english": "The car's interior is very luxurious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20967 + }, + { + "word": "Kalifat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caliphate", + "romanization": "Kalifat", + "example_sentence_native": "Das Kalifat war eine historische Staatsform.", + "example_sentence_english": "The caliphate was a historical form of state.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20975 + }, + { + "word": "Kantor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cantor;choirmaster", + "romanization": "Kantor", + "example_sentence_native": "Der Kantor leitete den Kirchenchor.", + "example_sentence_english": "The cantor led the church choir.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20976 + }, + { + "word": "Karo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diamond (suit in cards);check;plaid pattern", + "romanization": "Karo", + "example_sentence_native": "Er spielte eine Karte mit Karo.", + "example_sentence_english": "He played a card with a diamond.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20977 + }, + { + "word": "Kirchdorf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "church village", + "romanization": "Kirchdorf", + "example_sentence_native": "Das Kirchdorf liegt idyllisch in den Bergen.", + "example_sentence_english": "The church village is idyllically situated in the mountains.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20980 + }, + { + "word": "Kirchhof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "churchyard;graveyard", + "romanization": "Kirchhof", + "example_sentence_native": "Der alte Kirchhof ist ein Ort der Ruhe.", + "example_sentence_english": "The old churchyard is a place of peace.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20981 + }, + { + "word": "Kokosnuss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coconut", + "romanization": "Kokosnuss", + "example_sentence_native": "Die Kokosnuss ist eine tropische Frucht.", + "example_sentence_english": "The coconut is a tropical fruit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20984 + }, + { + "word": "Kontaktdatum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contact date", + "romanization": "Kontaktdatum", + "example_sentence_native": "Bitte geben Sie das Kontaktdatum an.", + "example_sentence_english": "Please provide the contact date.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20985 + }, + { + "word": "kooperativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperative", + "romanization": "kooperativ", + "example_sentence_native": "Er ist ein sehr kooperativer Kollege.", + "example_sentence_english": "He is a very cooperative colleague.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20986 + }, + { + "word": "Kopfbedeckung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "head covering;headwear", + "romanization": "Kopfbedeckung", + "example_sentence_native": "Eine Mütze ist eine Art von Kopfbedeckung.", + "example_sentence_english": "A cap is a type of head covering.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20987 + }, + { + "word": "kurzsichtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short-sighted;myopic", + "romanization": "kurzsichtig", + "example_sentence_native": "Ohne Brille ist er sehr kurzsichtig.", + "example_sentence_english": "Without glasses, he is very short-sighted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 20989 + }, + { + "word": "Legacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legacy", + "romanization": "Legacy", + "example_sentence_native": "Das alte System ist eine Legacy-Anwendung.", + "example_sentence_english": "The old system is a legacy application.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20994 + }, + { + "word": "Leistungssport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitive sport;high-performance sport", + "romanization": "Leistungssport", + "example_sentence_native": "Leistungssport erfordert viel Training und Disziplin.", + "example_sentence_english": "Competitive sport requires a lot of training and discipline.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20995 + }, + { + "word": "Leitstelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "control center;dispatch center", + "romanization": "Leitstelle", + "example_sentence_native": "Die Leitstelle koordiniert alle Rettungseinsätze.", + "example_sentence_english": "The control center coordinates all rescue operations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 20996 + }, + { + "word": "Lieferservice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery service", + "romanization": "Lieferservice", + "example_sentence_native": "Der Lieferservice bringt das Essen direkt zu dir nach Hause.", + "example_sentence_english": "The delivery service brings the food directly to your home.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21000 + }, + { + "word": "Loft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loft", + "romanization": "Loft", + "example_sentence_native": "Sie wohnt in einem modernen Loft in der Stadt.", + "example_sentence_english": "She lives in a modern loft in the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21001 + }, + { + "word": "Lump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scoundrel;rag", + "romanization": "Lump", + "example_sentence_native": "Er nannte ihn einen alten Lump.", + "example_sentence_english": "He called him an old scoundrel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21002 + }, + { + "word": "lästern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gossip;to badmouth", + "romanization": "lästern", + "example_sentence_native": "Man sollte nicht über andere lästern.", + "example_sentence_english": "One should not gossip about others.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21003 + }, + { + "word": "Macke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quirk;flaw", + "romanization": "Macke", + "example_sentence_native": "Jeder Mensch hat seine kleinen Macken.", + "example_sentence_english": "Every person has their little quirks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21004 + }, + { + "word": "Markenname", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brand name", + "romanization": "Markenname", + "example_sentence_native": "Der Markenname ist sehr bekannt.", + "example_sentence_english": "The brand name is very well-known.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21006 + }, + { + "word": "Marokkaner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Moroccan (person)", + "romanization": "Marokkaner", + "example_sentence_native": "Er ist ein Marokkaner, der in Deutschland lebt.", + "example_sentence_english": "He is a Moroccan who lives in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21007 + }, + { + "word": "Meerwasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seawater", + "romanization": "Meerwasser", + "example_sentence_native": "Das Meerwasser ist heute sehr kalt.", + "example_sentence_english": "The seawater is very cold today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21009 + }, + { + "word": "miserabel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miserable;terrible", + "romanization": "miserabel", + "example_sentence_native": "Das Wetter ist heute miserabel.", + "example_sentence_english": "The weather is miserable today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21013 + }, + { + "word": "Mitgründer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-founder", + "romanization": "Mitgründer", + "example_sentence_native": "Er ist der Mitgründer des Unternehmens.", + "example_sentence_english": "He is the co-founder of the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21014 + }, + { + "word": "mitnichten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "by no means;absolutely not", + "romanization": "mitnichten", + "example_sentence_native": "Das ist mitnichten die ganze Wahrheit.", + "example_sentence_english": "That is by no means the whole truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21015 + }, + { + "word": "Monatsende", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "end of the month", + "romanization": "Monatsende", + "example_sentence_native": "Am Monatsende erhalten wir unser Gehalt.", + "example_sentence_english": "At the end of the month, we receive our salary.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21016 + }, + { + "word": "mässig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderate;mediocre", + "romanization": "mässig", + "example_sentence_native": "Der Erfolg war nur mässig.", + "example_sentence_english": "The success was only moderate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21018 + }, + { + "word": "Nachahmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imitator;copycat", + "romanization": "Nachahmer", + "example_sentence_native": "Er ist kein Original, nur ein Nachahmer.", + "example_sentence_english": "He is not an original, just an imitator.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21019 + }, + { + "word": "Nachtleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightlife", + "romanization": "Nachtleben", + "example_sentence_native": "Das Nachtleben in Berlin ist sehr lebhaft.", + "example_sentence_english": "The nightlife in Berlin is very lively.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21020 + }, + { + "word": "Nagellack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nail polish", + "romanization": "Nagellack", + "example_sentence_native": "Sie hat roten Nagellack aufgetragen.", + "example_sentence_english": "She applied red nail polish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21021 + }, + { + "word": "nonstop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonstop", + "romanization": "nonstop", + "example_sentence_native": "Der Zug fährt nonstop nach München.", + "example_sentence_english": "The train goes nonstop to Munich.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21026 + }, + { + "word": "Normalisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "normalization", + "romanization": "Normalisierung", + "example_sentence_native": "Die Normalisierung der Beziehungen ist wichtig.", + "example_sentence_english": "The normalization of relations is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21027 + }, + { + "word": "Notdienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency service", + "romanization": "Notdienst", + "example_sentence_native": "Rufen Sie den Notdienst bei einem medizinischen Notfall.", + "example_sentence_english": "Call the emergency service in a medical emergency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21028 + }, + { + "word": "Operator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operator", + "romanization": "Operator", + "example_sentence_native": "Der Operator überwacht die Maschinen.", + "example_sentence_english": "The operator monitors the machines.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21031 + }, + { + "word": "Ostermontag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Easter Monday", + "romanization": "Ostermontag", + "example_sentence_native": "Ostermontag ist ein Feiertag in Deutschland.", + "example_sentence_english": "Easter Monday is a public holiday in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21033 + }, + { + "word": "Overall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overall;jumpsuit", + "romanization": "Overall", + "example_sentence_native": "Sie trug einen blauen Overall.", + "example_sentence_english": "She wore a blue overall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21034 + }, + { + "word": "Paradoxon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradox", + "romanization": "Paradoxon", + "example_sentence_native": "Das ist ein interessantes Paradoxon.", + "example_sentence_english": "That is an interesting paradox.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21035 + }, + { + "word": "Percussion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percussion", + "romanization": "Percussion", + "example_sentence_native": "Er spielt Percussion in einer Band.", + "example_sentence_english": "He plays percussion in a band.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21036 + }, + { + "word": "Pfahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pole;stake", + "romanization": "Pfahl", + "example_sentence_native": "Der Zaun wird von Holzpfählen gestützt.", + "example_sentence_english": "The fence is supported by wooden poles.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21037 + }, + { + "word": "Pflanzenart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plant species", + "romanization": "Pflanzenart", + "example_sentence_native": "Es gibt viele verschiedene Pflanzenarten in diesem Wald.", + "example_sentence_english": "There are many different plant species in this forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21038 + }, + { + "word": "Pflegepersonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing staff;care personnel", + "romanization": "Pflegepersonal", + "example_sentence_native": "Das Pflegepersonal kümmert sich um die Patienten.", + "example_sentence_english": "The nursing staff takes care of the patients.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21039 + }, + { + "word": "Popo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bottom;butt", + "romanization": "Popo", + "example_sentence_native": "Das Baby hat einen kleinen Popo.", + "example_sentence_english": "The baby has a small bottom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21041 + }, + { + "word": "Postleitzahl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "postal code;zip code", + "romanization": "Postleitzahl", + "example_sentence_native": "Bitte geben Sie Ihre Postleitzahl ein.", + "example_sentence_english": "Please enter your postal code.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21042 + }, + { + "word": "Preview", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preview", + "romanization": "Preview", + "example_sentence_native": "Wir haben eine Preview des neuen Films gesehen.", + "example_sentence_english": "We saw a preview of the new movie.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21043 + }, + { + "word": "Präsidentenwahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidential election", + "romanization": "Präsidentenwahl", + "example_sentence_native": "Die nächste Präsidentenwahl findet im Herbst statt.", + "example_sentence_english": "The next presidential election will take place in autumn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21044 + }, + { + "word": "Rechenzentrum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data center", + "romanization": "Rechenzentrum", + "example_sentence_native": "Das Unternehmen betreibt ein großes Rechenzentrum.", + "example_sentence_english": "The company operates a large data center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21048 + }, + { + "word": "Rechtsordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal system;legal order", + "romanization": "Rechtsordnung", + "example_sentence_native": "Die Rechtsordnung eines Landes ist komplex.", + "example_sentence_english": "The legal system of a country is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21049 + }, + { + "word": "redaktionell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editorial", + "romanization": "redaktionell", + "example_sentence_native": "Das ist eine redaktionelle Entscheidung.", + "example_sentence_english": "That is an editorial decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21050 + }, + { + "word": "Resignation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation", + "romanization": "Resignation", + "example_sentence_native": "Er spürte eine tiefe Resignation.", + "example_sentence_english": "He felt a deep resignation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21053 + }, + { + "word": "rosig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosy;pink", + "romanization": "rosig", + "example_sentence_native": "Sie hatte rosige Wangen.", + "example_sentence_english": "She had rosy cheeks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21054 + }, + { + "word": "rätselhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mysterious;puzzling", + "romanization": "rätselhaft", + "example_sentence_native": "Das war eine rätselhafte Nachricht.", + "example_sentence_english": "That was a mysterious message.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21056 + }, + { + "word": "Sanatorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sanatorium", + "romanization": "Sanatorium", + "example_sentence_native": "Er verbrachte einige Zeit in einem Sanatorium.", + "example_sentence_english": "He spent some time in a sanatorium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21057 + }, + { + "word": "Sandkasten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sandbox", + "romanization": "Sandkasten", + "example_sentence_native": "Die Kinder spielen im Sandkasten.", + "example_sentence_english": "The children are playing in the sandbox.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21058 + }, + { + "word": "Scale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scale", + "romanization": "Scale", + "example_sentence_native": "Wir müssen die Lösung auf Scale bringen.", + "example_sentence_english": "We need to bring the solution to scale.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21059 + }, + { + "word": "scherzhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jocular;facetious", + "romanization": "scherzhaft", + "example_sentence_native": "Er machte eine scherzhafte Bemerkung.", + "example_sentence_english": "He made a jocular remark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21061 + }, + { + "word": "Schimpanse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chimpanzee", + "romanization": "Schimpanse", + "example_sentence_native": "Der Schimpanse ist ein intelligentes Tier.", + "example_sentence_english": "The chimpanzee is an intelligent animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21062 + }, + { + "word": "Schmalz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lard;rendered fat", + "romanization": "Schmalz", + "example_sentence_native": "Er kochte mit Schmalz.", + "example_sentence_english": "He cooked with lard.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21064 + }, + { + "word": "Schmelzer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "smelter;melter", + "romanization": "Schmelzer", + "example_sentence_native": "Der Schmelzer arbeitet im Hochofen.", + "example_sentence_english": "The smelter works in the blast furnace.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21065 + }, + { + "word": "Schurke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "villain;rogue", + "romanization": "Schurke", + "example_sentence_native": "Der Schurke wurde am Ende gefasst.", + "example_sentence_english": "The villain was caught in the end.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21066 + }, + { + "word": "schweissen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to weld", + "romanization": "schweissen", + "example_sentence_native": "Er muss das Metall schweissen.", + "example_sentence_english": "He has to weld the metal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21067 + }, + { + "word": "Schädling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pest;harmful organism", + "romanization": "Schädling", + "example_sentence_native": "Diese Insekten sind Schädlinge für die Pflanzen.", + "example_sentence_english": "These insects are pests for the plants.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21068 + }, + { + "word": "Schützenverein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooting club", + "romanization": "Schützenverein", + "example_sentence_native": "Er ist Mitglied im örtlichen Schützenverein.", + "example_sentence_english": "He is a member of the local shooting club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21069 + }, + { + "word": "Selbstbild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-image;self-concept", + "romanization": "Selbstbild", + "example_sentence_native": "Ihr Selbstbild hat sich stark verbessert.", + "example_sentence_english": "Her self-image has greatly improved.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21070 + }, + { + "word": "selektiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selective", + "romanization": "selektiv", + "example_sentence_native": "Er ist sehr selektiv bei der Auswahl seiner Freunde.", + "example_sentence_english": "He is very selective in choosing his friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21071 + }, + { + "word": "Send", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fair;carnival (Münster)", + "romanization": "Send", + "example_sentence_native": "Der Herbst-Send findet im Oktober statt.", + "example_sentence_english": "The autumn fair takes place in October.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21072 + }, + { + "word": "Skateboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skateboard", + "romanization": "Skateboard", + "example_sentence_native": "Er fährt gerne Skateboard.", + "example_sentence_english": "He likes to ride a skateboard.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21075 + }, + { + "word": "skurril", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bizarre;quirky;whimsical", + "romanization": "skurril", + "example_sentence_native": "Er erzählte eine skurrile Geschichte.", + "example_sentence_english": "He told a bizarre story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21076 + }, + { + "word": "sorglos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carefree;thoughtless", + "romanization": "sorglos", + "example_sentence_native": "Sie lebt ein sorgloses Leben.", + "example_sentence_english": "She lives a carefree life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21078 + }, + { + "word": "Sozialisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "socialization", + "romanization": "Sozialisation", + "example_sentence_native": "Die Sozialisation spielt eine wichtige Rolle in der Entwicklung.", + "example_sentence_english": "Socialization plays an important role in development.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21079 + }, + { + "word": "Spule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coil;spool", + "romanization": "Spule", + "example_sentence_native": "Die Spule des Motors ist defekt.", + "example_sentence_english": "The motor's coil is defective.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21081 + }, + { + "word": "Staatsschutz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state security;domestic intelligence", + "romanization": "Staatsschutz", + "example_sentence_native": "Der Staatsschutz ermittelt in diesem Fall.", + "example_sentence_english": "State security is investigating this case.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21082 + }, + { + "word": "Staatstheater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state theatre", + "romanization": "Staatstheater", + "example_sentence_native": "Wir besuchen heute Abend das Staatstheater.", + "example_sentence_english": "We are visiting the state theatre tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21083 + }, + { + "word": "steinigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stone (to death)", + "romanization": "steinigen", + "example_sentence_native": "In einigen Kulturen war es üblich, Verbrecher zu steinigen.", + "example_sentence_english": "In some cultures, it was common to stone criminals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21084 + }, + { + "word": "Stellwerk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "signal box;interlocking tower", + "romanization": "Stellwerk", + "example_sentence_native": "Der Zugverkehr wird vom Stellwerk aus gesteuert.", + "example_sentence_english": "Train traffic is controlled from the signal box.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21085 + }, + { + "word": "Sterblichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortality", + "romanization": "Sterblichkeit", + "example_sentence_native": "Die Sterblichkeit bei dieser Krankheit ist hoch.", + "example_sentence_english": "The mortality rate for this disease is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21086 + }, + { + "word": "Studienzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "study period;time of study", + "romanization": "Studienzeit", + "example_sentence_native": "Meine Studienzeit war eine sehr prägende Phase.", + "example_sentence_english": "My study period was a very formative phase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21087 + }, + { + "word": "Stückzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "number of pieces;units;quantity", + "romanization": "Stückzahl", + "example_sentence_native": "Die Stückzahl der produzierten Güter ist gestiegen.", + "example_sentence_english": "The number of produced goods has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21088 + }, + { + "word": "Sud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brew;decoction", + "romanization": "Sud", + "example_sentence_native": "Der Sud für das Bier muss lange köcheln.", + "example_sentence_english": "The brew for the beer must simmer for a long time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21089 + }, + { + "word": "Testsieger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "test winner", + "romanization": "Testsieger", + "example_sentence_native": "Dieses Produkt ist der Testsieger in seiner Kategorie.", + "example_sentence_english": "This product is the test winner in its category.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21092 + }, + { + "word": "Textilindustrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "textile industry", + "romanization": "Textilindustrie", + "example_sentence_native": "Die Textilindustrie hat in den letzten Jahren viele Veränderungen erlebt.", + "example_sentence_english": "The textile industry has experienced many changes in recent years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21093 + }, + { + "word": "Titelblatt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "title page;front page", + "romanization": "Titelblatt", + "example_sentence_native": "Das Titelblatt des Buches ist sehr ansprechend gestaltet.", + "example_sentence_english": "The title page of the book is very attractively designed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21096 + }, + { + "word": "Token", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "token", + "romanization": "Token", + "example_sentence_native": "Sie benötigen einen Token, um sich anzumelden.", + "example_sentence_english": "You need a token to log in.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21097 + }, + { + "word": "Torjäger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goal scorer;top scorer", + "romanization": "Torjäger", + "example_sentence_native": "Der neue Stürmer ist ein echter Torjäger.", + "example_sentence_english": "The new striker is a real goal scorer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21098 + }, + { + "word": "Trompeter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trumpeter", + "romanization": "Trompeter", + "example_sentence_native": "Der Trompeter spielte ein wunderschönes Solo.", + "example_sentence_english": "The trumpeter played a beautiful solo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21101 + }, + { + "word": "Tuba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuba", + "romanization": "Tuba", + "example_sentence_native": "Sie lernt, die Tuba zu spielen.", + "example_sentence_english": "She is learning to play the tuba.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21102 + }, + { + "word": "Ud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oud (lute-like instrument)", + "romanization": "Ud", + "example_sentence_native": "Er spielt die Ud, ein traditionelles Instrument aus dem Nahen Osten.", + "example_sentence_english": "He plays the oud, a traditional instrument from the Middle East.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21105 + }, + { + "word": "umfahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to run over;to knock down", + "romanization": "umfahren", + "example_sentence_native": "Er hat aus Versehen den Poller umgefahren.", + "example_sentence_english": "He accidentally ran over the bollard.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21106 + }, + { + "word": "umkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perish;to die", + "romanization": "umkommen", + "example_sentence_native": "Viele Menschen sind bei der Flutkatastrophe umgekommen.", + "example_sentence_english": "Many people perished in the flood disaster.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21107 + }, + { + "word": "umzingeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surround;to encircle", + "romanization": "umzingeln", + "example_sentence_native": "Die Polizei umzingelte das Gebäude.", + "example_sentence_english": "The police surrounded the building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21108 + }, + { + "word": "Ungar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Hungarian (person)", + "romanization": "Ungar", + "example_sentence_native": "Er ist ein Ungar und spricht fließend Ungarisch.", + "example_sentence_english": "He is a Hungarian and speaks fluent Hungarian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21109 + }, + { + "word": "unterwandern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to infiltrate;to subvert", + "romanization": "unterwandern", + "example_sentence_native": "Die Gruppe versuchte, die Organisation zu unterwandern.", + "example_sentence_english": "The group tried to infiltrate the organization.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21111 + }, + { + "word": "Unterzeichner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signatory;signer", + "romanization": "Unterzeichner", + "example_sentence_native": "Die Unterzeichner des Vertrags trafen sich zur Besprechung.", + "example_sentence_english": "The signatories of the treaty met for discussion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21112 + }, + { + "word": "unwiderstehlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresistible", + "romanization": "unwiderstehlich", + "example_sentence_native": "Ihr Lächeln war unwiderstehlich.", + "example_sentence_english": "Her smile was irresistible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21113 + }, + { + "word": "urplötzlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "all of a sudden;very suddenly", + "romanization": "urplötzlich", + "example_sentence_native": "Urplötzlich stand ein Reh vor dem Auto.", + "example_sentence_english": "All of a sudden, a deer stood in front of the car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21114 + }, + { + "word": "verantwortungslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresponsible", + "romanization": "verantwortungslos", + "example_sentence_native": "Sein Verhalten war völlig verantwortungslos.", + "example_sentence_english": "His behavior was completely irresponsible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21119 + }, + { + "word": "vereidigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swear in", + "romanization": "vereidigen", + "example_sentence_native": "Der Zeuge wurde vor Gericht vereidigt.", + "example_sentence_english": "The witness was sworn in before court.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21120 + }, + { + "word": "verfassungsrechtlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional (law)", + "romanization": "verfassungsrechtlich", + "example_sentence_native": "Das ist eine verfassungsrechtliche Frage.", + "example_sentence_english": "That is a constitutional question.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21121 + }, + { + "word": "verschlimmern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worsen", + "romanization": "verschlimmern", + "example_sentence_native": "Die Situation hat sich verschlimmert.", + "example_sentence_english": "The situation has worsened.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21122 + }, + { + "word": "verächtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemptuous", + "romanization": "verächtlich", + "example_sentence_native": "Er warf ihr einen verächtlichen Blick zu.", + "example_sentence_english": "He gave her a contemptuous look.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21123 + }, + { + "word": "Vesper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "afternoon snack", + "romanization": "Vesper", + "example_sentence_native": "Wir essen eine kleine Vesper am Nachmittag.", + "example_sentence_english": "We eat a small afternoon snack.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21124 + }, + { + "word": "Vollstreckung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enforcement", + "romanization": "Vollstreckung", + "example_sentence_native": "Die Vollstreckung des Urteils wurde angeordnet.", + "example_sentence_english": "The enforcement of the judgment was ordered.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21127 + }, + { + "word": "Vorbeugung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevention", + "romanization": "Vorbeugung", + "example_sentence_native": "Vorbeugung ist besser als Heilung.", + "example_sentence_english": "Prevention is better than cure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21128 + }, + { + "word": "Waschmittel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "detergent", + "romanization": "Waschmittel", + "example_sentence_native": "Ich brauche neues Waschmittel für die Wäsche.", + "example_sentence_english": "I need new detergent for the laundry.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21130 + }, + { + "word": "Wasseroberfläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water surface", + "romanization": "Wasseroberfläche", + "example_sentence_native": "Die Ente schwamm auf der Wasseroberfläche.", + "example_sentence_english": "The duck swam on the water surface.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21131 + }, + { + "word": "Wasserqualität", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water quality", + "romanization": "Wasserqualität", + "example_sentence_native": "Die Wasserqualität des Sees ist sehr gut.", + "example_sentence_english": "The water quality of the lake is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21132 + }, + { + "word": "Wasserwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "water management", + "romanization": "Wasserwirtschaft", + "example_sentence_native": "Die Wasserwirtschaft ist für die Trinkwasserversorgung zuständig.", + "example_sentence_english": "Water management is responsible for drinking water supply.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21133 + }, + { + "word": "Werwolf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "werewolf", + "romanization": "Werwolf", + "example_sentence_native": "In der Geschichte verwandelte sich der Mann in einen Werwolf.", + "example_sentence_english": "In the story, the man transformed into a werewolf.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21134 + }, + { + "word": "Wetterdienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weather service", + "romanization": "Wetterdienst", + "example_sentence_native": "Der Wetterdienst hat Schnee für morgen vorhergesagt.", + "example_sentence_english": "The weather service has predicted snow for tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21135 + }, + { + "word": "widerwillig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reluctant", + "romanization": "widerwillig", + "example_sentence_native": "Er stimmte widerwillig zu.", + "example_sentence_english": "He reluctantly agreed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21136 + }, + { + "word": "Wilder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savage", + "romanization": "Wilder", + "example_sentence_native": "Die Kinder spielten wie kleine Wilde im Garten.", + "example_sentence_english": "The children played like little savages in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21137 + }, + { + "word": "Winterschlaf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hibernation", + "romanization": "Winterschlaf", + "example_sentence_native": "Bären halten Winterschlaf.", + "example_sentence_english": "Bears hibernate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21138 + }, + { + "word": "Wochentag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "weekday", + "romanization": "Wochentag", + "example_sentence_native": "Montag ist der erste Wochentag.", + "example_sentence_english": "Monday is the first weekday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21139 + }, + { + "word": "zeitlebens", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lifelong", + "romanization": "zeitlebens", + "example_sentence_native": "Er hat zeitlebens für die Gerechtigkeit gekämpft.", + "example_sentence_english": "He fought for justice his entire life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21143 + }, + { + "word": "zertrümmern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smash", + "romanization": "zertrümmern", + "example_sentence_native": "Der Stein zertrümmerte das Fenster.", + "example_sentence_english": "The stone shattered the window.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21144 + }, + { + "word": "Ziehung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drawing", + "romanization": "Ziehung", + "example_sentence_native": "Die Ziehung der Lottozahlen findet jeden Samstag statt.", + "example_sentence_english": "The drawing of the lottery numbers takes place every Saturday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21145 + }, + { + "word": "Zielort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destination", + "romanization": "Zielort", + "example_sentence_native": "Wir haben unseren Zielort erreicht.", + "example_sentence_english": "We have reached our destination.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21146 + }, + { + "word": "Zuweisung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assignment", + "romanization": "Zuweisung", + "example_sentence_native": "Die Zuweisung der Aufgaben erfolgte schnell.", + "example_sentence_english": "The assignment of tasks was done quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21148 + }, + { + "word": "zögerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hesitant", + "romanization": "zögerlich", + "example_sentence_native": "Er antwortete zögerlich auf die Frage.", + "example_sentence_english": "He answered the question hesitantly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21149 + }, + { + "word": "überproportional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disproportionately high", + "romanization": "überproportional", + "example_sentence_native": "Die Kosten stiegen überproportional an.", + "example_sentence_english": "The costs increased disproportionately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21150 + }, + { + "word": "Abendblatt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evening paper", + "romanization": "Abendblatt", + "example_sentence_native": "Ich lese jeden Abend das Abendblatt.", + "example_sentence_english": "I read the evening paper every evening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21152 + }, + { + "word": "Ablage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filing", + "romanization": "Ablage", + "example_sentence_native": "Bitte legen Sie die Dokumente in die Ablage.", + "example_sentence_english": "Please put the documents in the tray.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21153 + }, + { + "word": "Abschottung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "isolation", + "romanization": "Abschottung", + "example_sentence_native": "Die Abschottung des Landes führte zu Problemen.", + "example_sentence_english": "The isolation of the country led to problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21154 + }, + { + "word": "absitzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to serve (a sentence)", + "romanization": "absitzen", + "example_sentence_native": "Er musste seine Strafe absitzen.", + "example_sentence_english": "He had to serve his sentence.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sitzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21155 + }, + { + "word": "Allerheiligen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "All Saints' Day", + "romanization": "Allerheiligen", + "example_sentence_native": "Allerheiligen ist ein Feiertag in vielen Bundesländern.", + "example_sentence_english": "All Saints' Day is a public holiday in many federal states.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21159 + }, + { + "word": "Altersgrenze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "age limit", + "romanization": "Altersgrenze", + "example_sentence_native": "Es gibt eine Altersgrenze für den Eintritt.", + "example_sentence_english": "There is an age limit for entry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21161 + }, + { + "word": "anreichern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enrich", + "romanization": "anreichern", + "example_sentence_native": "Man kann den Boden mit Nährstoffen anreichern.", + "example_sentence_english": "You can enrich the soil with nutrients.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "reichern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21162 + }, + { + "word": "Ansteckung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infection", + "romanization": "Ansteckung", + "example_sentence_native": "Die Ansteckung kann durch Tröpfchen erfolgen.", + "example_sentence_english": "The infection can occur through droplets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21163 + }, + { + "word": "astronomisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomical", + "romanization": "astronomisch", + "example_sentence_native": "Die Kosten waren astronomisch hoch.", + "example_sentence_english": "The costs were astronomically high.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21165 + }, + { + "word": "Asylsuchender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum seeker", + "romanization": "Asylsuchender", + "example_sentence_native": "Viele Asylsuchende kommen in unser Land.", + "example_sentence_english": "Many asylum seekers come to our country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21166 + }, + { + "word": "Auffälligkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspicuousness", + "romanization": "Auffälligkeit", + "example_sentence_native": "Es gab keine besonderen Auffälligkeiten.", + "example_sentence_english": "There were no particular peculiarities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21168 + }, + { + "word": "Aufzucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rearing", + "romanization": "Aufzucht", + "example_sentence_native": "Die Aufzucht von Fischen ist komplex.", + "example_sentence_english": "The rearing of fish is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21169 + }, + { + "word": "Ausgangssperre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curfew", + "romanization": "Ausgangssperre", + "example_sentence_native": "Während der Pandemie gab es eine Ausgangssperre.", + "example_sentence_english": "During the pandemic, there was a curfew.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21170 + }, + { + "word": "auslesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to read out", + "romanization": "auslesen", + "example_sentence_native": "Er muss die Daten auslesen.", + "example_sentence_english": "He has to read out the data.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "lesen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21172 + }, + { + "word": "Bauland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building land", + "romanization": "Bauland", + "example_sentence_native": "Das Bauland ist sehr teuer geworden.", + "example_sentence_english": "The building land has become very expensive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21174 + }, + { + "word": "Baumstamm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tree trunk", + "romanization": "Baumstamm", + "example_sentence_native": "Der Baumstamm war sehr dick.", + "example_sentence_english": "The tree trunk was very thick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21175 + }, + { + "word": "beifügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enclose", + "romanization": "beifügen", + "example_sentence_native": "Bitte fügen Sie die Dokumente bei.", + "example_sentence_english": "Please attach the documents.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "fügen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21176 + }, + { + "word": "Beilegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "settlement", + "romanization": "Beilegung", + "example_sentence_native": "Die Beilegung des Konflikts ist wichtig.", + "example_sentence_english": "The resolution of the conflict is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21177 + }, + { + "word": "beisteuern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contribute", + "romanization": "beisteuern", + "example_sentence_native": "Jeder sollte etwas beisteuern.", + "example_sentence_english": "Everyone should contribute something.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "steuern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21178 + }, + { + "word": "beschriften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to label", + "romanization": "beschriften", + "example_sentence_native": "Bitte beschriften Sie die Ordner.", + "example_sentence_english": "Please label the folders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21179 + }, + { + "word": "Bestleistung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peak performance", + "romanization": "Bestleistung", + "example_sentence_native": "Sie hat eine Bestleistung im Marathon erzielt.", + "example_sentence_english": "She achieved a peak performance in the marathon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21180 + }, + { + "word": "Bewachung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guard;surveillance", + "romanization": "Bewachung", + "example_sentence_native": "Das Gebäude steht unter ständiger Bewachung.", + "example_sentence_english": "The building is under constant surveillance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21181 + }, + { + "word": "bezichtigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to accuse;to charge", + "romanization": "bezichtigen", + "example_sentence_native": "Man bezichtigte ihn des Diebstahls.", + "example_sentence_english": "He was accused of theft.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21182 + }, + { + "word": "Bildfläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screen;surface (of a picture)", + "romanization": "Bildfläche", + "example_sentence_native": "Er ist von der Bildfläche verschwunden.", + "example_sentence_english": "He disappeared from the scene.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21184 + }, + { + "word": "Bildungswesen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "education system", + "romanization": "Bildungswesen", + "example_sentence_native": "Das Bildungswesen in Deutschland ist komplex.", + "example_sentence_english": "The education system in Germany is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21185 + }, + { + "word": "blechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay (informal;often reluctantly)", + "romanization": "blechen", + "example_sentence_native": "Er musste viel Geld für die Reparatur blechen.", + "example_sentence_english": "He had to fork out a lot of money for the repair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21186 + }, + { + "word": "Bluff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bluff", + "romanization": "Bluff", + "example_sentence_native": "Sein Angebot war nur ein Bluff.", + "example_sentence_english": "His offer was just a bluff.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21187 + }, + { + "word": "Bluthochdruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high blood pressure", + "romanization": "Bluthochdruck", + "example_sentence_native": "Er leidet unter Bluthochdruck.", + "example_sentence_english": "He suffers from high blood pressure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21188 + }, + { + "word": "Comfort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comfort", + "romanization": "Comfort", + "example_sentence_native": "Das Hotel bietet viel Comfort.", + "example_sentence_english": "The hotel offers a lot of comfort.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21193 + }, + { + "word": "Command", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "command", + "romanization": "Command", + "example_sentence_native": "Geben Sie den Command in die Konsole ein.", + "example_sentence_english": "Enter the command into the console.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21194 + }, + { + "word": "Dekanat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dean's office;deanery", + "romanization": "Dekanat", + "example_sentence_native": "Das Dekanat befindet sich im Hauptgebäude.", + "example_sentence_english": "The dean's office is located in the main building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21198 + }, + { + "word": "demographisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demographic", + "romanization": "demographisch", + "example_sentence_native": "Die demographische Entwicklung ist besorgniserregend.", + "example_sentence_english": "The demographic development is concerning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21199 + }, + { + "word": "deprimieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depress", + "romanization": "deprimieren", + "example_sentence_native": "Die schlechten Nachrichten deprimierten ihn.", + "example_sentence_english": "The bad news depressed him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21200 + }, + { + "word": "Disk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disk", + "romanization": "Disk", + "example_sentence_native": "Die Daten sind auf der Festplatte gespeichert.", + "example_sentence_english": "The data is stored on the hard disk.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21202 + }, + { + "word": "Domizil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "domicile;residence", + "romanization": "Domizil", + "example_sentence_native": "Sein Domizil ist in der Schweiz.", + "example_sentence_english": "His domicile is in Switzerland.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21205 + }, + { + "word": "Dorfplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "village square", + "romanization": "Dorfplatz", + "example_sentence_native": "Wir trafen uns auf dem Dorfplatz.", + "example_sentence_english": "We met in the village square.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21206 + }, + { + "word": "Downtown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downtown", + "romanization": "Downtown", + "example_sentence_native": "Sie wohnt im Downtown von Berlin.", + "example_sentence_english": "She lives downtown in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21207 + }, + { + "word": "Drehbuchautor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screenwriter", + "romanization": "Drehbuchautor", + "example_sentence_native": "Der Drehbuchautor hat eine neue Serie geschrieben.", + "example_sentence_english": "The screenwriter has written a new series.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21208 + }, + { + "word": "Dub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dub (music genre;remix)", + "romanization": "Dub", + "example_sentence_native": "Er hört gerne Dub-Musik.", + "example_sentence_english": "He likes listening to dub music.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21209 + }, + { + "word": "durchdrehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go crazy;to spin out", + "romanization": "durchdrehen", + "example_sentence_native": "Er würde durchdrehen, wenn er das erfahren würde.", + "example_sentence_english": "He would go crazy if he found that out.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "drehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21210 + }, + { + "word": "durchleben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to live through;to experience", + "romanization": "durchleben", + "example_sentence_native": "Sie musste viele Schwierigkeiten durchleben.", + "example_sentence_english": "She had to live through many difficulties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21211 + }, + { + "word": "ebenbürtig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equal;on a par", + "romanization": "ebenbürtig", + "example_sentence_native": "Er ist seinem Gegner ebenbürtig.", + "example_sentence_english": "He is equal to his opponent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21213 + }, + { + "word": "Eichhorn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squirrel", + "romanization": "Eichhorn", + "example_sentence_native": "Ein Eichhorn kletterte auf den Baum.", + "example_sentence_english": "A squirrel climbed the tree.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21215 + }, + { + "word": "Einschaltquote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewership rating", + "romanization": "Einschaltquote", + "example_sentence_native": "Die Einschaltquote der Sendung war sehr hoch.", + "example_sentence_english": "The viewership rating of the show was very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21216 + }, + { + "word": "Einstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debut;housewarming;initial contribution", + "romanization": "Einstand", + "example_sentence_native": "Er gab einen Einstand für seine neuen Kollegen.", + "example_sentence_english": "He gave a housewarming party for his new colleagues.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21217 + }, + { + "word": "einvernehmlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consensual;by mutual agreement", + "romanization": "einvernehmlich", + "example_sentence_native": "Sie haben sich einvernehmlich getrennt.", + "example_sentence_english": "They separated by mutual agreement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21218 + }, + { + "word": "empfänglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "susceptible;receptive", + "romanization": "empfänglich", + "example_sentence_native": "Er ist sehr empfänglich für neue Ideen.", + "example_sentence_english": "He is very receptive to new ideas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21220 + }, + { + "word": "erübrigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to save;to make unnecessary", + "romanization": "erübrigen", + "example_sentence_native": "Das erübrigt weitere Fragen.", + "example_sentence_english": "That makes further questions unnecessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21221 + }, + { + "word": "Fachschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technical college;vocational school", + "romanization": "Fachschule", + "example_sentence_native": "Nach der Realschule besuchte sie eine Fachschule.", + "example_sentence_english": "After secondary school, she attended a technical college.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21223 + }, + { + "word": "festspielen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cast permanently;to establish oneself (in a role)", + "romanization": "festspielen", + "example_sentence_native": "Er hat sich in dieser Rolle festgespielt.", + "example_sentence_english": "He has established himself in this role.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21228 + }, + { + "word": "Finanzpolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial policy", + "romanization": "Finanzpolitik", + "example_sentence_native": "Die Finanzpolitik der Regierung wird kritisiert.", + "example_sentence_english": "The government's financial policy is being criticized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21229 + }, + { + "word": "fortwährend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuous;perpetual;constantly", + "romanization": "fortwährend", + "example_sentence_native": "Er klagte über fortwährende Schmerzen.", + "example_sentence_english": "He complained about continuous pain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21233 + }, + { + "word": "Friedensverhandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peace negotiation", + "romanization": "Friedensverhandlung", + "example_sentence_native": "Die Friedensverhandlungen wurden fortgesetzt.", + "example_sentence_english": "The peace negotiations were continued.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21235 + }, + { + "word": "Fuhrpark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleet (of vehicles)", + "romanization": "Fuhrpark", + "example_sentence_native": "Das Unternehmen erweitert seinen Fuhrpark.", + "example_sentence_english": "The company is expanding its fleet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21236 + }, + { + "word": "Gastbeitrag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guest contribution;guest article", + "romanization": "Gastbeitrag", + "example_sentence_native": "Der Professor schrieb einen Gastbeitrag für die Zeitung.", + "example_sentence_english": "The professor wrote a guest contribution for the newspaper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21239 + }, + { + "word": "Geburtstagskind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birthday child", + "romanization": "Geburtstagskind", + "example_sentence_native": "Das Geburtstagskind hat viele Geschenke bekommen.", + "example_sentence_english": "The birthday child received many presents.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21240 + }, + { + "word": "gefasst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composed", + "romanization": "gefasst", + "example_sentence_native": "Sie blieb gefasst, obwohl die Situation schwierig war.", + "example_sentence_english": "She remained composed, although the situation was difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21241 + }, + { + "word": "Gemahl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "husband", + "romanization": "Gemahl", + "example_sentence_native": "Ihr Gemahl ist ein bekannter Wissenschaftler.", + "example_sentence_english": "Her husband is a well-known scientist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21243 + }, + { + "word": "Gerichtsvollzieher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bailiff", + "romanization": "Gerichtsvollzieher", + "example_sentence_native": "Der Gerichtsvollzieher kam, um die Schulden einzutreiben.", + "example_sentence_english": "The bailiff came to collect the debts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21244 + }, + { + "word": "Geschäftsbericht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business report", + "romanization": "Geschäftsbericht", + "example_sentence_native": "Der Geschäftsbericht wurde auf der Hauptversammlung vorgestellt.", + "example_sentence_english": "The business report was presented at the general meeting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21245 + }, + { + "word": "gewichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weigh", + "romanization": "gewichten", + "example_sentence_native": "Man muss die Argumente sorgfältig gewichten.", + "example_sentence_english": "One must carefully weigh the arguments.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21247 + }, + { + "word": "Grazie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grace", + "romanization": "Grazie", + "example_sentence_native": "Sie bewegte sich mit großer Grazie.", + "example_sentence_english": "She moved with great grace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21248 + }, + { + "word": "Grosszügigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generosity", + "romanization": "Grosszügigkeit", + "example_sentence_native": "Seine Grosszügigkeit war bekannt.", + "example_sentence_english": "His generosity was well-known.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21249 + }, + { + "word": "Grotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grotto", + "romanization": "Grotte", + "example_sentence_native": "Die Kinder entdeckten eine kleine Grotte am Strand.", + "example_sentence_english": "The children discovered a small grotto on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21250 + }, + { + "word": "Gräueltat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atrocity", + "romanization": "Gräueltat", + "example_sentence_native": "Die Gräueltaten des Krieges sind unvergesslich.", + "example_sentence_english": "The atrocities of the war are unforgettable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21251 + }, + { + "word": "grösstmöglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greatest possible", + "romanization": "grösstmöglich", + "example_sentence_native": "Wir streben nach dem grösstmöglichen Erfolg.", + "example_sentence_english": "We strive for the greatest possible success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21252 + }, + { + "word": "Haftpflichtversicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liability insurance", + "romanization": "Haftpflichtversicherung", + "example_sentence_native": "Eine Haftpflichtversicherung ist in Deutschland sehr wichtig.", + "example_sentence_english": "Liability insurance is very important in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21254 + }, + { + "word": "handfest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangible", + "romanization": "handfest", + "example_sentence_native": "Wir brauchen handfeste Beweise.", + "example_sentence_english": "We need tangible evidence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21255 + }, + { + "word": "Hausdurchsuchung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "house search", + "romanization": "Hausdurchsuchung", + "example_sentence_native": "Die Polizei führte eine Hausdurchsuchung durch.", + "example_sentence_english": "The police conducted a house search.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21257 + }, + { + "word": "hemmungslos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uninhibited", + "romanization": "hemmungslos", + "example_sentence_native": "Er lachte hemmungslos über den Witz.", + "example_sentence_english": "He laughed uninhibitedly at the joke.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21258 + }, + { + "word": "herzhaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hearty;savory", + "romanization": "herzhaft", + "example_sentence_native": "Das Essen war sehr herzhaft und lecker.", + "example_sentence_english": "The food was very hearty and delicious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21260 + }, + { + "word": "hineinziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull into;to drag into", + "romanization": "hineinziehen", + "example_sentence_native": "Er wollte sie nicht in den Streit hineinziehen.", + "example_sentence_english": "He didn't want to drag her into the argument.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hinein", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21262 + }, + { + "word": "homophob", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homophobic", + "romanization": "homophob", + "example_sentence_native": "Homophobe Einstellungen sind in unserer Gesellschaft inakzeptabel.", + "example_sentence_english": "Homophobic attitudes are unacceptable in our society.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21263 + }, + { + "word": "Hydraulik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydraulics", + "romanization": "Hydraulik", + "example_sentence_native": "Die Hydraulik des Baggers funktionierte einwandfrei.", + "example_sentence_english": "The excavator's hydraulics worked perfectly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21264 + }, + { + "word": "Häppchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snack;canapé;bite-sized piece", + "romanization": "Häppchen", + "example_sentence_native": "Wir hatten ein paar Häppchen vor dem Abendessen.", + "example_sentence_english": "We had a few snacks before dinner.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21265 + }, + { + "word": "ignorant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorant", + "romanization": "ignorant", + "example_sentence_native": "Seine ignorante Haltung überraschte mich.", + "example_sentence_english": "His ignorant attitude surprised me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21266 + }, + { + "word": "inline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inline", + "romanization": "inline", + "example_sentence_native": "Sie fährt gerne Inline-Skates.", + "example_sentence_english": "She likes to ride inline skates.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21267 + }, + { + "word": "Inneneinrichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interior design;interior furnishing", + "romanization": "Inneneinrichtung", + "example_sentence_native": "Die Inneneinrichtung des Hotels war sehr modern.", + "example_sentence_english": "The interior design of the hotel was very modern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21268 + }, + { + "word": "Jogginghose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweatpants;jogging bottoms", + "romanization": "Jogginghose", + "example_sentence_native": "Ich trage am liebsten eine bequeme Jogginghose zu Hause.", + "example_sentence_english": "I prefer to wear comfortable sweatpants at home.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21272 + }, + { + "word": "Juniorin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junior (female)", + "romanization": "Juniorin", + "example_sentence_native": "Sie ist die jüngste Juniorin im Team.", + "example_sentence_english": "She is the youngest junior in the team.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21274 + }, + { + "word": "Kalenderjahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calendar year", + "romanization": "Kalenderjahr", + "example_sentence_native": "Das Kalenderjahr beginnt am ersten Januar.", + "example_sentence_english": "The calendar year begins on the first of January.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21276 + }, + { + "word": "Kampfkunst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "martial art", + "romanization": "Kampfkunst", + "example_sentence_native": "Er trainiert seit Jahren eine asiatische Kampfkunst.", + "example_sentence_english": "He has been training an Asian martial art for years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21277 + }, + { + "word": "Kerlchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little fellow;chap", + "romanization": "Kerlchen", + "example_sentence_native": "Das kleine Kerlchen spielte im Garten.", + "example_sentence_english": "The little fellow was playing in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21279 + }, + { + "word": "kiewer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Kyiv;Kievian", + "romanization": "kiewer", + "example_sentence_native": "Die kiewer Bevölkerung ist sehr widerstandsfähig.", + "example_sentence_english": "The Kyivian population is very resilient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21281 + }, + { + "word": "Kindererziehung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "child-rearing;upbringing", + "romanization": "Kindererziehung", + "example_sentence_native": "Die Kindererziehung ist eine große Verantwortung.", + "example_sentence_english": "Child-rearing is a great responsibility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21282 + }, + { + "word": "Kinderheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "children's home;orphanage", + "romanization": "Kinderheim", + "example_sentence_native": "Das Kinderheim bietet vielen Waisen ein Zuhause.", + "example_sentence_english": "The children's home offers a home to many orphans.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21283 + }, + { + "word": "kitschig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kitschy;tacky", + "romanization": "kitschig", + "example_sentence_native": "Das Gemälde war sehr kitschig.", + "example_sentence_english": "The painting was very kitschy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21285 + }, + { + "word": "Kleriker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cleric", + "romanization": "Kleriker", + "example_sentence_native": "Der Kleriker hielt eine beeindruckende Predigt.", + "example_sentence_english": "The cleric delivered an impressive sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21286 + }, + { + "word": "konkretisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concretize;to specify", + "romanization": "konkretisieren", + "example_sentence_native": "Könnten Sie Ihre Vorschläge bitte konkretisieren?", + "example_sentence_english": "Could you please concretize your suggestions?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21287 + }, + { + "word": "Kopfball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "header (in soccer)", + "romanization": "Kopfball", + "example_sentence_native": "Er erzielte ein Tor mit einem Kopfball.", + "example_sentence_english": "He scored a goal with a header.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21288 + }, + { + "word": "kopfüber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headfirst;head over heels", + "romanization": "kopfüber", + "example_sentence_native": "Er sprang kopfüber ins Wasser.", + "example_sentence_english": "He jumped headfirst into the water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21289 + }, + { + "word": "Krawall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riot;commotion", + "romanization": "Krawall", + "example_sentence_native": "Es gab Krawall in der Innenstadt.", + "example_sentence_english": "There was a riot in the city center.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21291 + }, + { + "word": "Kriegsschiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warship", + "romanization": "Kriegsschiff", + "example_sentence_native": "Das Kriegsschiff legte im Hafen an.", + "example_sentence_english": "The warship docked in the harbor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21292 + }, + { + "word": "Küster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexton;sacristan", + "romanization": "Küster", + "example_sentence_native": "Der Küster bereitete die Kirche für den Gottesdienst vor.", + "example_sentence_english": "The sexton prepared the church for the service.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21297 + }, + { + "word": "Lamelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lamella;slat;fin", + "romanization": "Lamelle", + "example_sentence_native": "Die Lamellen der Jalousie waren verstellt.", + "example_sentence_english": "The slats of the blind were out of alignment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21298 + }, + { + "word": "Landbevölkerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rural population;country folk", + "romanization": "Landbevölkerung", + "example_sentence_native": "Die Landbevölkerung lebt oft von der Landwirtschaft.", + "example_sentence_english": "The rural population often lives from agriculture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21299 + }, + { + "word": "Landing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing", + "romanization": "Landing", + "example_sentence_native": "Die Landing der neuen Webseite war erfolgreich.", + "example_sentence_english": "The landing of the new website was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21300 + }, + { + "word": "langzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long-term", + "romanization": "langzeit", + "example_sentence_native": "Das ist eine langzeitige Investition.", + "example_sentence_english": "This is a long-term investment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21301 + }, + { + "word": "Laufwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drive", + "romanization": "Laufwerk", + "example_sentence_native": "Das externe Laufwerk ist voll.", + "example_sentence_english": "The external drive is full.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21302 + }, + { + "word": "Legierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alloy", + "romanization": "Legierung", + "example_sentence_native": "Diese Legierung ist sehr widerstandsfähig.", + "example_sentence_english": "This alloy is very resistant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21304 + }, + { + "word": "Lemon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lemon", + "romanization": "Lemon", + "example_sentence_native": "Ich mag Wasser mit einer Scheibe Lemon.", + "example_sentence_english": "I like water with a slice of lemon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21305 + }, + { + "word": "Leserbrief", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "letter to the editor", + "romanization": "Leserbrief", + "example_sentence_native": "Sein Leserbrief wurde in der Zeitung veröffentlicht.", + "example_sentence_english": "His letter to the editor was published in the newspaper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21306 + }, + { + "word": "Liebeserklärung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declaration of love", + "romanization": "Liebeserklärung", + "example_sentence_native": "Er machte ihr eine Liebeserklärung.", + "example_sentence_english": "He made her a declaration of love.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21307 + }, + { + "word": "Listenplatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "list position", + "romanization": "Listenplatz", + "example_sentence_native": "Sie erhielt einen sicheren Listenplatz bei der Wahl.", + "example_sentence_english": "She received a safe list position in the election.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21308 + }, + { + "word": "Lyriker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lyric poet", + "romanization": "Lyriker", + "example_sentence_native": "Rilke war ein berühmter Lyriker.", + "example_sentence_english": "Rilke was a famous lyric poet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21310 + }, + { + "word": "lückenlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete", + "romanization": "lückenlos", + "example_sentence_native": "Die Beweiskette war lückenlos.", + "example_sentence_english": "The chain of evidence was complete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21312 + }, + { + "word": "Massenmord", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mass murder", + "romanization": "Massenmord", + "example_sentence_native": "Der Massenmord schockierte die Welt.", + "example_sentence_english": "The mass murder shocked the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21313 + }, + { + "word": "metallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metallic", + "romanization": "metallen", + "example_sentence_native": "Die metallene Oberfläche glänzte im Licht.", + "example_sentence_english": "The metallic surface gleamed in the light.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21315 + }, + { + "word": "Meteorologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meteorology", + "romanization": "Meteorologie", + "example_sentence_native": "Die Meteorologie ist die Wissenschaft vom Wetter.", + "example_sentence_english": "Meteorology is the science of weather.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21316 + }, + { + "word": "Missgeschick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mishap", + "romanization": "Missgeschick", + "example_sentence_native": "Ein kleines Missgeschick führte zu einer Verzögerung.", + "example_sentence_english": "A small mishap led to a delay.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21319 + }, + { + "word": "Mitschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recording;transcript", + "romanization": "Mitschnitt", + "example_sentence_native": "Der Mitschnitt des Interviews war sehr klar.", + "example_sentence_english": "The recording of the interview was very clear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21320 + }, + { + "word": "mittelmässig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mediocre;average", + "romanization": "mittelmässig", + "example_sentence_native": "Seine Leistung war nur mittelmässig.", + "example_sentence_english": "His performance was only mediocre.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21321 + }, + { + "word": "morgendlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morning (adjective);matutinal", + "romanization": "morgendlich", + "example_sentence_native": "Der morgendliche Kaffee ist ein Ritual für viele.", + "example_sentence_english": "The morning coffee is a ritual for many.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21324 + }, + { + "word": "nachschlagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look up (in a dictionary;book)", + "romanization": "nachschlagen", + "example_sentence_native": "Ich muss dieses Wort im Wörterbuch nachschlagen.", + "example_sentence_english": "I need to look up this word in the dictionary.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21326 + }, + { + "word": "Navigator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "navigator", + "romanization": "Navigator", + "example_sentence_native": "Der Navigator half uns, den richtigen Weg zu finden.", + "example_sentence_english": "The navigator helped us find the right way.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21329 + }, + { + "word": "Nervenzelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nerve cell;neuron", + "romanization": "Nervenzelle", + "example_sentence_native": "Eine Nervenzelle ist die Grundeinheit des Nervensystems.", + "example_sentence_english": "A nerve cell is the basic unit of the nervous system.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21331 + }, + { + "word": "notgedrungen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compelled;forced;out of necessity", + "romanization": "notgedrungen", + "example_sentence_native": "Er musste notgedrungen seine Pläne ändern.", + "example_sentence_english": "He was compelled to change his plans.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21333 + }, + { + "word": "Novel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "novella;short novel", + "romanization": "Novel", + "example_sentence_native": "Diese Novel ist kürzer als ein Roman.", + "example_sentence_english": "This novella is shorter than a novel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21334 + }, + { + "word": "Omnibus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bus", + "romanization": "Omnibus", + "example_sentence_native": "Der Omnibus fährt durch die Stadt.", + "example_sentence_english": "The bus drives through the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21340 + }, + { + "word": "Ordre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "order (command)", + "romanization": "Ordre", + "example_sentence_native": "Er gab die Ordre, sofort abzureisen.", + "example_sentence_english": "He gave the order to depart immediately.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21341 + }, + { + "word": "Ortsrand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outskirts of town", + "romanization": "Ortsrand", + "example_sentence_native": "Sie wohnen am Ortsrand, wo es ruhig ist.", + "example_sentence_english": "They live on the outskirts of town, where it is quiet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21342 + }, + { + "word": "Pape", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cardboard (thick paper)", + "romanization": "Pape", + "example_sentence_native": "Die alte Pape war sehr stabil.", + "example_sentence_english": "The old cardboard was very stable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21345 + }, + { + "word": "pharmazeutisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pharmaceutical", + "romanization": "pharmazeutisch", + "example_sentence_native": "Er arbeitet in der pharmazeutischen Industrie.", + "example_sentence_english": "He works in the pharmaceutical industry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21348 + }, + { + "word": "Phishing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phishing", + "romanization": "Phishing", + "example_sentence_native": "Er wurde Opfer eines Phishing-Angriffs.", + "example_sentence_english": "He became a victim of a phishing attack.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21349 + }, + { + "word": "Phosphor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phosphorus", + "romanization": "Phosphor", + "example_sentence_native": "Phosphor ist ein chemisches Element.", + "example_sentence_english": "Phosphorus is a chemical element.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21350 + }, + { + "word": "Pike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pike (fish)", + "romanization": "Pike", + "example_sentence_native": "Der Fischer fing eine große Pike.", + "example_sentence_english": "The fisherman caught a large pike.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21351 + }, + { + "word": "Pokalfinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cup final", + "romanization": "Pokalfinale", + "example_sentence_native": "Das Pokalfinale findet am Samstag statt.", + "example_sentence_english": "The cup final takes place on Saturday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21354 + }, + { + "word": "Polizeiwache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police station", + "romanization": "Polizeiwache", + "example_sentence_native": "Er ging zur Polizeiwache, um Anzeige zu erstatten.", + "example_sentence_english": "He went to the police station to file a report.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21355 + }, + { + "word": "Popkultur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pop culture", + "romanization": "Popkultur", + "example_sentence_native": "Popkultur beeinflusst viele Aspekte des modernen Lebens.", + "example_sentence_english": "Pop culture influences many aspects of modern life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21356 + }, + { + "word": "Pressemeldung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press release", + "romanization": "Pressemeldung", + "example_sentence_native": "Die Firma veröffentlichte eine Pressemeldung.", + "example_sentence_english": "The company published a press release.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21357 + }, + { + "word": "Printmedium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "print medium", + "romanization": "Printmedium", + "example_sentence_native": "Zeitungen sind ein klassisches Printmedium.", + "example_sentence_english": "Newspapers are a classic print medium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21358 + }, + { + "word": "Profilbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profile picture", + "romanization": "Profilbild", + "example_sentence_native": "Sie änderte ihr Profilbild auf Social Media.", + "example_sentence_english": "She changed her profile picture on social media.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21359 + }, + { + "word": "Prominenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prominence;celebrity", + "romanization": "Prominenz", + "example_sentence_native": "Die Prominenz versammelte sich bei der Gala.", + "example_sentence_english": "The celebrities gathered at the gala.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21360 + }, + { + "word": "Protagonistin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protagonist (female)", + "romanization": "Protagonistin", + "example_sentence_native": "Sie ist die Protagonistin des neuen Romans.", + "example_sentence_english": "She is the protagonist of the new novel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21361 + }, + { + "word": "Proviant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "provisions;supplies", + "romanization": "Proviant", + "example_sentence_native": "Wir packten genug Proviant für die Wanderung ein.", + "example_sentence_english": "We packed enough provisions for the hike.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21362 + }, + { + "word": "Publicity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publicity", + "romanization": "Publicity", + "example_sentence_native": "Der Film erhielt viel Publicity.", + "example_sentence_english": "The film received a lot of publicity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21363 + }, + { + "word": "Punch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punch (drink)", + "romanization": "Punch", + "example_sentence_native": "Wir tranken einen warmen Punch auf der Party.", + "example_sentence_english": "We drank a warm punch at the party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21364 + }, + { + "word": "Rechtspopulismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right-wing populism", + "romanization": "Rechtspopulismus", + "example_sentence_native": "Der Rechtspopulismus nimmt in vielen Ländern zu.", + "example_sentence_english": "Right-wing populism is increasing in many countries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21367 + }, + { + "word": "referieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to report;to give a presentation", + "romanization": "referieren", + "example_sentence_native": "Er wird morgen über das Thema referieren.", + "example_sentence_english": "He will report on the topic tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21368 + }, + { + "word": "Religionsgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "religious community", + "romanization": "Religionsgemeinschaft", + "example_sentence_native": "Jede Religionsgemeinschaft hat ihre eigenen Bräuche.", + "example_sentence_english": "Every religious community has its own customs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21370 + }, + { + "word": "Relikt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relic;remnant", + "romanization": "Relikt", + "example_sentence_native": "Das alte Gebäude ist ein Relikt aus vergangenen Zeiten.", + "example_sentence_english": "The old building is a relic from past times.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21371 + }, + { + "word": "Results", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "results", + "romanization": "Results", + "example_sentence_native": "Die Results der Studie waren überraschend.", + "example_sentence_english": "The results of the study were surprising.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21372 + }, + { + "word": "Resümee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summary;résumé", + "romanization": "Resümee", + "example_sentence_native": "Er gab ein kurzes Resümee der Besprechung.", + "example_sentence_english": "He gave a short summary of the meeting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21373 + }, + { + "word": "Riesenslalom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "giant slalom", + "romanization": "Riesenslalom", + "example_sentence_native": "Sie gewann die Goldmedaille im Riesenslalom.", + "example_sentence_english": "She won the gold medal in the giant slalom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21374 + }, + { + "word": "Roggen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rye", + "romanization": "Roggen", + "example_sentence_native": "Roggenbrot ist sehr gesund.", + "example_sentence_english": "Rye bread is very healthy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21375 + }, + { + "word": "Rune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rune", + "romanization": "Rune", + "example_sentence_native": "Alte Runen wurden in den Stein gemeißelt.", + "example_sentence_english": "Ancient runes were carved into the stone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21376 + }, + { + "word": "Sample", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sample", + "romanization": "Sample", + "example_sentence_native": "Er verwendete ein Sample in seinem neuen Lied.", + "example_sentence_english": "He used a sample in his new song.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21377 + }, + { + "word": "Sandmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sandman", + "romanization": "Sandmann", + "example_sentence_native": "Der Sandmann bringt den Kindern süße Träume.", + "example_sentence_english": "The Sandman brings sweet dreams to the children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21378 + }, + { + "word": "satirisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satirical", + "romanization": "satirisch", + "example_sentence_native": "Er schrieb einen satirischen Artikel über die Politik.", + "example_sentence_english": "He wrote a satirical article about politics.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21380 + }, + { + "word": "scheel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squinting;askance;envious", + "romanization": "scheel", + "example_sentence_native": "Er sah mich scheel an.", + "example_sentence_english": "He looked at me askance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21382 + }, + { + "word": "Schilddrüse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thyroid gland", + "romanization": "Schilddrüse", + "example_sentence_native": "Die Schilddrüse produziert Hormone.", + "example_sentence_english": "The thyroid gland produces hormones.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21383 + }, + { + "word": "schlampig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sloppy;messy;careless", + "romanization": "schlampig", + "example_sentence_native": "Seine Arbeit war sehr schlampig.", + "example_sentence_english": "His work was very sloppy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21384 + }, + { + "word": "schuften", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to toil;to slave away", + "romanization": "schuften", + "example_sentence_native": "Er musste hart schuften, um seine Familie zu ernähren.", + "example_sentence_english": "He had to toil hard to feed his family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21386 + }, + { + "word": "schweifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roam;to stray;to wander", + "romanization": "schweifen", + "example_sentence_native": "Seine Gedanken schweiften ab.", + "example_sentence_english": "His thoughts wandered off.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21388 + }, + { + "word": "Seitenlinie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sideline;touchline", + "romanization": "Seitenlinie", + "example_sentence_native": "Der Trainer stand an der Seitenlinie.", + "example_sentence_english": "The coach stood on the sideline.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21392 + }, + { + "word": "Senke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depression;hollow;sink", + "romanization": "Senke", + "example_sentence_native": "Das Wasser sammelte sich in einer Senke.", + "example_sentence_english": "The water collected in a hollow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21393 + }, + { + "word": "Setzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "setting;placement;subsidence;composition", + "romanization": "Setzung", + "example_sentence_native": "Die Setzung des Gebäudes verursachte Risse.", + "example_sentence_english": "The subsidence of the building caused cracks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21394 + }, + { + "word": "siebenjährig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seven-year-old;seven years old", + "romanization": "siebenjährig", + "example_sentence_native": "Das siebenjährige Mädchen spielte im Garten.", + "example_sentence_english": "The seven-year-old girl played in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21396 + }, + { + "word": "siebzig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seventy", + "romanization": "siebzig", + "example_sentence_native": "Er ist siebzig Jahre alt.", + "example_sentence_english": "He is seventy years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 21398 + }, + { + "word": "Silvesternacht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "New Year's Eve night", + "romanization": "Silvesternacht", + "example_sentence_native": "Die Silvesternacht wird oft mit Feuerwerk gefeiert.", + "example_sentence_english": "New Year's Eve night is often celebrated with fireworks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21400 + }, + { + "word": "sommerlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summery", + "romanization": "sommerlich", + "example_sentence_native": "Das Wetter ist heute sehr sommerlich.", + "example_sentence_english": "The weather is very summery today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21402 + }, + { + "word": "Spannweite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wingspan;range;scope", + "romanization": "Spannweite", + "example_sentence_native": "Die Spannweite des Adlers war beeindruckend.", + "example_sentence_english": "The eagle's wingspan was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21403 + }, + { + "word": "Spezialeinheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special unit", + "romanization": "Spezialeinheit", + "example_sentence_native": "Die Spezialeinheit wurde zum Einsatz gerufen.", + "example_sentence_english": "The special unit was called to action.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21405 + }, + { + "word": "Spielstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "score (of a game)", + "romanization": "Spielstand", + "example_sentence_native": "Der aktuelle Spielstand ist 2 zu 1.", + "example_sentence_english": "The current score is 2 to 1.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21406 + }, + { + "word": "Sprungbrett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "springboard;stepping stone", + "romanization": "Sprungbrett", + "example_sentence_native": "Das Praktikum war ein Sprungbrett für seine Karriere.", + "example_sentence_english": "The internship was a springboard for his career.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21407 + }, + { + "word": "Statistiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistician", + "romanization": "Statistiker", + "example_sentence_native": "Der Statistiker analysierte die Daten.", + "example_sentence_english": "The statistician analyzed the data.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21409 + }, + { + "word": "Stecher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stinger;pricker;(colloquial) guy", + "romanization": "Stecher", + "example_sentence_native": "Vorsicht, die Biene hat einen Stecher.", + "example_sentence_english": "Be careful, the bee has a stinger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21410 + }, + { + "word": "Stillschweigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silence;secrecy;non-disclosure", + "romanization": "Stillschweigen", + "example_sentence_native": "Er bewahrte Stillschweigen über die Angelegenheit.", + "example_sentence_english": "He maintained silence about the matter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21412 + }, + { + "word": "stilvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stylish;tasteful;elegant", + "romanization": "stilvoll", + "example_sentence_native": "Sie hat eine sehr stilvolle Einrichtung.", + "example_sentence_english": "She has a very stylish interior design.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21413 + }, + { + "word": "stimmig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherent;consistent;harmonious", + "romanization": "stimmig", + "example_sentence_native": "Das Konzept ist sehr stimmig.", + "example_sentence_english": "The concept is very coherent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21414 + }, + { + "word": "Streuung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scattering;dispersion;variance", + "romanization": "Streuung", + "example_sentence_native": "Die Streuung der Daten war gering.", + "example_sentence_english": "The dispersion of the data was low.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21417 + }, + { + "word": "systemisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "systemic", + "romanization": "systemisch", + "example_sentence_native": "Das Problem ist systemisch bedingt.", + "example_sentence_english": "The problem is systemically caused.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21418 + }, + { + "word": "säen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sow;to plant", + "romanization": "säen", + "example_sentence_native": "Der Bauer wird im Frühling Weizen säen.", + "example_sentence_english": "The farmer will sow wheat in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21419 + }, + { + "word": "Tanke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gas station (colloquial)", + "romanization": "Tanke", + "example_sentence_native": "Ich muss noch zur Tanke fahren.", + "example_sentence_english": "I still need to drive to the gas station.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21422 + }, + { + "word": "tatenlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inactive;idle", + "romanization": "tatenlos", + "example_sentence_native": "Er sah tatenlos zu, wie es geschah.", + "example_sentence_english": "He watched idly as it happened.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21423 + }, + { + "word": "Teilnehmerfeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "field of participants;lineup", + "romanization": "Teilnehmerfeld", + "example_sentence_native": "Das Teilnehmerfeld war sehr stark.", + "example_sentence_english": "The field of participants was very strong.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21424 + }, + { + "word": "Telegraph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegraph", + "romanization": "Telegraph", + "example_sentence_native": "Der Telegraph revolutionierte die Kommunikation.", + "example_sentence_english": "The telegraph revolutionized communication.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21425 + }, + { + "word": "Theoretiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theoretician;theorist", + "romanization": "Theoretiker", + "example_sentence_native": "Er ist ein bekannter Theoretiker auf diesem Gebiet.", + "example_sentence_english": "He is a well-known theoretician in this field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21428 + }, + { + "word": "umweltfreundlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmentally friendly", + "romanization": "umweltfreundlich", + "example_sentence_native": "Wir sollten umweltfreundliche Produkte kaufen.", + "example_sentence_english": "We should buy environmentally friendly products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21436 + }, + { + "word": "unberechtigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unauthorized;unjustified", + "romanization": "unberechtigt", + "example_sentence_native": "Der Zugang war unberechtigt.", + "example_sentence_english": "The access was unauthorized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21437 + }, + { + "word": "Ungnade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disgrace;disfavor", + "romanization": "Ungnade", + "example_sentence_native": "Er fiel in Ungnade beim König.", + "example_sentence_english": "He fell into disgrace with the king.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21438 + }, + { + "word": "unrechtmässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlawful;illegal", + "romanization": "unrechtmässig", + "example_sentence_native": "Die Handlung war unrechtmässig.", + "example_sentence_english": "The action was unlawful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21439 + }, + { + "word": "unterstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be subordinate to", + "romanization": "unterstehen", + "example_sentence_native": "Alle Mitarbeiter unterstehen dem Abteilungsleiter.", + "example_sentence_english": "All employees are subordinate to the department head.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21440 + }, + { + "word": "Vasall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vassal", + "romanization": "Vasall", + "example_sentence_native": "Der Vasall schwor seinem Lehnsherrn Treue.", + "example_sentence_english": "The vassal swore loyalty to his liege lord.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21441 + }, + { + "word": "Vehikel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vehicle", + "romanization": "Vehikel", + "example_sentence_native": "Das Auto ist ein nützliches Vehikel für den Transport.", + "example_sentence_english": "The car is a useful vehicle for transport.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21442 + }, + { + "word": "verblassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fade", + "romanization": "verblassen", + "example_sentence_native": "Die Farben des alten Fotos beginnen zu verblassen.", + "example_sentence_english": "The colors of the old photo are starting to fade.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21443 + }, + { + "word": "vereiteln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to thwart", + "romanization": "vereiteln", + "example_sentence_native": "Die Polizei konnte den Plan der Diebe vereiteln.", + "example_sentence_english": "The police were able to thwart the thieves' plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21444 + }, + { + "word": "verjagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to chase away", + "romanization": "verjagen", + "example_sentence_native": "Der Hund versuchte, die Katze zu verjagen.", + "example_sentence_english": "The dog tried to chase the cat away.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21445 + }, + { + "word": "Verkaufspreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selling price", + "romanization": "Verkaufspreis", + "example_sentence_native": "Der Verkaufspreis des Hauses war höher als erwartet.", + "example_sentence_english": "The selling price of the house was higher than expected.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21446 + }, + { + "word": "verspäten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to delay", + "romanization": "verspäten", + "example_sentence_native": "Ich muss mich beeilen, sonst verspäte ich mich.", + "example_sentence_english": "I have to hurry, otherwise I'll be late.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21447 + }, + { + "word": "versteuern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tax", + "romanization": "versteuern", + "example_sentence_native": "Man muss alle Einkünfte versteuern.", + "example_sentence_english": "One must pay tax on all income.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21448 + }, + { + "word": "Vertragsverlängerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contract extension", + "romanization": "Vertragsverlängerung", + "example_sentence_native": "Er hat eine Vertragsverlängerung um zwei Jahre erhalten.", + "example_sentence_english": "He received a contract extension for two years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21449 + }, + { + "word": "Verwerfung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rejection", + "romanization": "Verwerfung", + "example_sentence_native": "Die geologische Verwerfung führte zu einem Erdbeben.", + "example_sentence_english": "The geological fault led to an earthquake.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21450 + }, + { + "word": "Vitrine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "display cabinet", + "romanization": "Vitrine", + "example_sentence_native": "Die alten Münzen sind in der Vitrine ausgestellt.", + "example_sentence_english": "The old coins are displayed in the showcase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21451 + }, + { + "word": "vollstrecken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to execute", + "romanization": "vollstrecken", + "example_sentence_native": "Das Gericht wird das Urteil vollstrecken.", + "example_sentence_english": "The court will execute the judgment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21452 + }, + { + "word": "Vorspeise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appetizer", + "romanization": "Vorspeise", + "example_sentence_native": "Als Vorspeise hatten wir einen kleinen Salat.", + "example_sentence_english": "As a starter, we had a small salad.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21453 + }, + { + "word": "Wahlplakat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "election poster", + "romanization": "Wahlplakat", + "example_sentence_native": "Überall in der Stadt hängen Wahlplakate.", + "example_sentence_english": "Election posters are hanging everywhere in the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21455 + }, + { + "word": "Wahlversprechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election promise", + "romanization": "Wahlversprechen", + "example_sentence_native": "Viele Wähler sind skeptisch gegenüber Wahlversprechen.", + "example_sentence_english": "Many voters are skeptical of election promises.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21456 + }, + { + "word": "Wechselkurs", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange rate", + "romanization": "Wechselkurs", + "example_sentence_native": "Der Wechselkurs zwischen Euro und Dollar schwankt täglich.", + "example_sentence_english": "The exchange rate between Euro and Dollar fluctuates daily.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21458 + }, + { + "word": "wegschmeissen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw away", + "romanization": "wegschmeissen", + "example_sentence_native": "Du solltest den alten Müll wegschmeissen.", + "example_sentence_english": "You should throw away the old trash.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "schmeissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21459 + }, + { + "word": "Winterreifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winter tires", + "romanization": "Winterreifen", + "example_sentence_native": "Es ist Zeit, die Winterreifen zu wechseln.", + "example_sentence_english": "It's time to change the winter tires.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21465 + }, + { + "word": "wohltuend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficial;soothing", + "romanization": "wohltuend", + "example_sentence_native": "Die warme Dusche war sehr wohltuend nach dem langen Tag.", + "example_sentence_english": "The warm shower was very soothing after the long day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21466 + }, + { + "word": "Wohnbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residential construction", + "romanization": "Wohnbau", + "example_sentence_native": "Der Wohnbau in der Stadt boomt.", + "example_sentence_english": "Residential construction is booming in the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21467 + }, + { + "word": "Wohnfläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living space;floor area", + "romanization": "Wohnfläche", + "example_sentence_native": "Die Wohnung hat eine Wohnfläche von 70 Quadratmetern.", + "example_sentence_english": "The apartment has a living space of 70 square meters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21468 + }, + { + "word": "Zahnfleisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gums", + "romanization": "Zahnfleisch", + "example_sentence_native": "Gesundes Zahnfleisch ist wichtig für die Mundhygiene.", + "example_sentence_english": "Healthy gums are important for oral hygiene.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21470 + }, + { + "word": "Zeitarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary work", + "romanization": "Zeitarbeit", + "example_sentence_native": "Er hat eine Stelle in der Zeitarbeit gefunden.", + "example_sentence_english": "He found a job in temporary work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21471 + }, + { + "word": "Zulage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allowance;supplement", + "romanization": "Zulage", + "example_sentence_native": "Er bekommt eine Zulage für seine Nachtschichten.", + "example_sentence_english": "He receives an allowance for his night shifts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21473 + }, + { + "word": "Zustrom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "influx;flow", + "romanization": "Zustrom", + "example_sentence_native": "Der Zustrom von Touristen hat die Wirtschaft belebt.", + "example_sentence_english": "The influx of tourists has stimulated the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21474 + }, + { + "word": "Ölpreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil price", + "romanization": "Ölpreis", + "example_sentence_native": "Der Ölpreis ist in den letzten Wochen stark gestiegen.", + "example_sentence_english": "The oil price has risen sharply in recent weeks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21475 + }, + { + "word": "Überwachungskamera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surveillance camera", + "romanization": "Überwachungskamera", + "example_sentence_native": "Die Überwachungskamera zeichnet alles auf.", + "example_sentence_english": "The surveillance camera records everything.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21476 + }, + { + "word": "überwintern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overwinter;to hibernate", + "romanization": "überwintern", + "example_sentence_native": "Viele Zugvögel überwintern in wärmeren Regionen.", + "example_sentence_english": "Many migratory birds overwinter in warmer regions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21477 + }, + { + "word": "abendlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evening;nightly", + "romanization": "abendlich", + "example_sentence_native": "Wir genossen den abendlichen Spaziergang.", + "example_sentence_english": "We enjoyed the evening walk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21478 + }, + { + "word": "abmelden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to log out;to unsubscribe", + "romanization": "abmelden", + "example_sentence_native": "Vergessen Sie nicht, sich nach der Sitzung abzumelden.", + "example_sentence_english": "Don't forget to log out after the session.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "melden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21479 + }, + { + "word": "Abschrift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copy;transcript", + "romanization": "Abschrift", + "example_sentence_native": "Bitte senden Sie mir eine Abschrift des Dokuments.", + "example_sentence_english": "Please send me a copy of the document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21481 + }, + { + "word": "Absenkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lowering;subsidence;reduction", + "romanization": "Absenkung", + "example_sentence_native": "Die Absenkung des Wasserspiegels ist besorgniserregend.", + "example_sentence_english": "The lowering of the water level is concerning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21482 + }, + { + "word": "Alkoholismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholism", + "romanization": "Alkoholismus", + "example_sentence_native": "Alkoholismus ist eine ernsthafte Krankheit.", + "example_sentence_english": "Alcoholism is a serious illness.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21484 + }, + { + "word": "Altersversorgung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pension;retirement provision", + "romanization": "Altersversorgung", + "example_sentence_native": "Die Altersversorgung ist ein wichtiges Thema für viele Menschen.", + "example_sentence_english": "Retirement provision is an important topic for many people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21486 + }, + { + "word": "Amtssprache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "official language", + "romanization": "Amtssprache", + "example_sentence_native": "Deutsch ist die Amtssprache in Deutschland.", + "example_sentence_english": "German is the official language in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21488 + }, + { + "word": "anbraten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sear;to brown (by frying)", + "romanization": "anbraten", + "example_sentence_native": "Du musst das Fleisch zuerst scharf anbraten.", + "example_sentence_english": "You have to sear the meat sharply first.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "braten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21489 + }, + { + "word": "ansprechbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approachable;responsive", + "romanization": "ansprechbar", + "example_sentence_native": "Der neue Chef ist sehr ansprechbar.", + "example_sentence_english": "The new boss is very approachable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21495 + }, + { + "word": "Anthologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthology", + "romanization": "Anthologie", + "example_sentence_native": "Sie hat eine Anthologie moderner Gedichte gelesen.", + "example_sentence_english": "She read an anthology of modern poems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21496 + }, + { + "word": "Architekturbüro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "architectural office", + "romanization": "Architekturbüro", + "example_sentence_native": "Er arbeitet in einem Architekturbüro in Berlin.", + "example_sentence_english": "He works in an architectural office in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21497 + }, + { + "word": "Asbest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asbestos", + "romanization": "Asbest", + "example_sentence_native": "Asbest ist ein gefährliches Material.", + "example_sentence_english": "Asbestos is a dangerous material.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21498 + }, + { + "word": "aufatmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breathe a sigh of relief", + "romanization": "aufatmen", + "example_sentence_native": "Nach der Prüfung konnte er endlich aufatmen.", + "example_sentence_english": "After the exam, he could finally breathe a sigh of relief.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "atmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21499 + }, + { + "word": "ausatmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exhale", + "romanization": "ausatmen", + "example_sentence_native": "Bitte atmen Sie langsam aus.", + "example_sentence_english": "Please exhale slowly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "atmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21500 + }, + { + "word": "Ausrutscher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slip;blunder", + "romanization": "Ausrutscher", + "example_sentence_native": "Das war nur ein kleiner Ausrutscher.", + "example_sentence_english": "That was just a small slip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21501 + }, + { + "word": "Bengel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rascal;brat", + "romanization": "Bengel", + "example_sentence_native": "Der kleine Bengel hat schon wieder Unsinn gemacht.", + "example_sentence_english": "The little rascal has been up to mischief again.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21508 + }, + { + "word": "bestatten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bury;to inter", + "romanization": "bestatten", + "example_sentence_native": "Sie werden den Verstorbenen morgen bestatten.", + "example_sentence_english": "They will bury the deceased tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21511 + }, + { + "word": "Bestrahlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiation;irradiation", + "romanization": "Bestrahlung", + "example_sentence_native": "Die Bestrahlung ist Teil der Therapie.", + "example_sentence_english": "The radiation is part of the therapy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21512 + }, + { + "word": "Bevorzugung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preference;favoritism", + "romanization": "Bevorzugung", + "example_sentence_native": "Es gab eine klare Bevorzugung bestimmter Kandidaten.", + "example_sentence_english": "There was a clear preference for certain candidates.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21513 + }, + { + "word": "Biogas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biogas", + "romanization": "Biogas", + "example_sentence_native": "Biogas ist eine erneuerbare Energiequelle.", + "example_sentence_english": "Biogas is a renewable energy source.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21514 + }, + { + "word": "blanco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blank;empty", + "romanization": "blanco", + "example_sentence_native": "Er unterschrieb einen blanco Scheck.", + "example_sentence_english": "He signed a blank check.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21516 + }, + { + "word": "Brautkleid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedding dress", + "romanization": "Brautkleid", + "example_sentence_native": "Sie suchte nach dem perfekten Brautkleid.", + "example_sentence_english": "She was looking for the perfect wedding dress.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21517 + }, + { + "word": "Brettspiel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "board game", + "romanization": "Brettspiel", + "example_sentence_native": "Wir spielen gerne Brettspiele am Abend.", + "example_sentence_english": "We like to play board games in the evening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21518 + }, + { + "word": "Brustkorb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rib cage;chest", + "romanization": "Brustkorb", + "example_sentence_native": "Der Arzt untersuchte seinen Brustkorb.", + "example_sentence_english": "The doctor examined his rib cage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21519 + }, + { + "word": "Buddhist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Buddhist", + "romanization": "Buddhist", + "example_sentence_native": "Der Buddhist meditiert jeden Tag.", + "example_sentence_english": "The Buddhist meditates every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21520 + }, + { + "word": "Börde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertile lowlands;plain", + "romanization": "Börde", + "example_sentence_native": "Die Magdeburger Börde ist bekannt für ihre fruchtbaren Böden.", + "example_sentence_english": "The Magdeburg Börde is known for its fertile soils.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21522 + }, + { + "word": "Catch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catch", + "romanization": "Catch", + "example_sentence_native": "Der Torwart machte einen unglaublichen Catch.", + "example_sentence_english": "The goalkeeper made an incredible catch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21524 + }, + { + "word": "Chefkoch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "head chef", + "romanization": "Chefkoch", + "example_sentence_native": "Der Chefkoch bereitete ein exquisites Menü zu.", + "example_sentence_english": "The head chef prepared an exquisite menu.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21525 + }, + { + "word": "Dachstuhl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roof truss;roof framework", + "romanization": "Dachstuhl", + "example_sentence_native": "Der Zimmermann reparierte den alten Dachstuhl.", + "example_sentence_english": "The carpenter repaired the old roof truss.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21529 + }, + { + "word": "Darknet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Darknet", + "romanization": "Darknet", + "example_sentence_native": "Das Darknet ist ein Teil des Internets, der nicht öffentlich zugänglich ist.", + "example_sentence_english": "The Darknet is a part of the internet that is not publicly accessible.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21531 + }, + { + "word": "Dart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dart (for throwing)", + "romanization": "Dart", + "example_sentence_native": "Er warf den Dart auf die Zielscheibe.", + "example_sentence_english": "He threw the dart at the target.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21533 + }, + { + "word": "Desinteresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinterest;lack of interest", + "romanization": "Desinteresse", + "example_sentence_native": "Sein Desinteresse am Thema war offensichtlich.", + "example_sentence_english": "His disinterest in the topic was obvious.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21535 + }, + { + "word": "Developer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developer (e.g.;software developer)", + "romanization": "Developer", + "example_sentence_native": "Der Software-Developer arbeitet an einem neuen Projekt.", + "example_sentence_english": "The software developer is working on a new project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21536 + }, + { + "word": "Dolomit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dolomite (mineral;rock)", + "romanization": "Dolomit", + "example_sentence_native": "Die Dolomiten bestehen hauptsächlich aus Dolomit.", + "example_sentence_english": "The Dolomites consist mainly of dolomite.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21538 + }, + { + "word": "dotieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to endow;to dope;to provide with funds", + "romanization": "dotieren", + "example_sentence_native": "Die Stiftung wurde großzügig dotiert.", + "example_sentence_english": "The foundation was generously endowed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21539 + }, + { + "word": "durchwegs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistently;throughout", + "romanization": "durchwegs", + "example_sentence_native": "Die Qualität der Produkte war durchwegs hoch.", + "example_sentence_english": "The quality of the products was consistently high.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21542 + }, + { + "word": "Einband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "binding (of a book)", + "romanization": "Einband", + "example_sentence_native": "Der Einband des Buches ist sehr schön.", + "example_sentence_english": "The binding of the book is very beautiful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21544 + }, + { + "word": "Einnahmequelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "source of income", + "romanization": "Einnahmequelle", + "example_sentence_native": "Tourismus ist eine wichtige Einnahmequelle für die Region.", + "example_sentence_english": "Tourism is an important source of income for the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21546 + }, + { + "word": "eintauschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exchange;to trade in", + "romanization": "eintauschen", + "example_sentence_native": "Ich möchte mein altes Handy gegen ein neues eintauschen.", + "example_sentence_english": "I would like to trade in my old phone for a new one.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "tauschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21547 + }, + { + "word": "Elektrode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electrode", + "romanization": "Elektrode", + "example_sentence_native": "Die Elektrode wurde in die Lösung getaucht.", + "example_sentence_english": "The electrode was dipped into the solution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21548 + }, + { + "word": "entgegennehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to receive;to accept", + "romanization": "entgegennehmen", + "example_sentence_native": "Er musste das Paket persönlich entgegennehmen.", + "example_sentence_english": "He had to receive the package personally.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "entgegen", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21550 + }, + { + "word": "entgegentreten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to confront;to oppose", + "romanization": "entgegentreten", + "example_sentence_native": "Man muss den Herausforderungen mutig entgegentreten.", + "example_sentence_english": "One must bravely confront the challenges.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "entgegen", + "base_verb": "treten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21551 + }, + { + "word": "Erbgut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genetic material;genome", + "romanization": "Erbgut", + "example_sentence_native": "Das Erbgut enthält alle Informationen für die Entwicklung eines Organismus.", + "example_sentence_english": "The genetic material contains all information for the development of an organism.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21552 + }, + { + "word": "erzwungen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forced;compulsory", + "romanization": "erzwungen", + "example_sentence_native": "Das war eine erzwungene Entscheidung.", + "example_sentence_english": "That was a forced decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21553 + }, + { + "word": "Ethanol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethanol", + "romanization": "Ethanol", + "example_sentence_native": "Ethanol wird oft als Lösungsmittel verwendet.", + "example_sentence_english": "Ethanol is often used as a solvent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21554 + }, + { + "word": "Euthanasie", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "euthanasia", + "romanization": "Euthanasie", + "example_sentence_native": "Die Debatte über Euthanasie ist ethisch komplex.", + "example_sentence_english": "The debate about euthanasia is ethically complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21555 + }, + { + "word": "Exklave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exclave", + "romanization": "Exklave", + "example_sentence_native": "Kaliningrad ist eine russische Exklave.", + "example_sentence_english": "Kaliningrad is a Russian exclave.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21556 + }, + { + "word": "Feldherr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commander;general (military leader)", + "romanization": "Feldherr", + "example_sentence_native": "Der Feldherr führte seine Truppen in die Schlacht.", + "example_sentence_english": "The commander led his troops into battle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21559 + }, + { + "word": "Fernbus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long-distance bus", + "romanization": "Fernbus", + "example_sentence_native": "Ich nehme den Fernbus, um nach Berlin zu fahren.", + "example_sentence_english": "I'm taking the long-distance bus to go to Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21560 + }, + { + "word": "feststellbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detectable", + "romanization": "feststellbar", + "example_sentence_native": "Der Fehler war leicht feststellbar.", + "example_sentence_english": "The error was easily detectable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21561 + }, + { + "word": "Flüchtlingshilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee aid", + "romanization": "Flüchtlingshilfe", + "example_sentence_native": "Die Flüchtlingshilfe leistet wichtige Arbeit.", + "example_sentence_english": "Refugee aid does important work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21564 + }, + { + "word": "Forschungseinrichtung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "research institution", + "romanization": "Forschungseinrichtung", + "example_sentence_native": "Die neue Forschungseinrichtung wurde eröffnet.", + "example_sentence_english": "The new research institution was opened.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21565 + }, + { + "word": "forsten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to afforest", + "romanization": "forsten", + "example_sentence_native": "Man muss das Land forsten, um den Wald zu erhalten.", + "example_sentence_english": "One must afforest the land to preserve the forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21566 + }, + { + "word": "Fortbewegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locomotion", + "romanization": "Fortbewegung", + "example_sentence_native": "Die Fortbewegung der Schnecke ist sehr langsam.", + "example_sentence_english": "The locomotion of the snail is very slow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21567 + }, + { + "word": "Friedensnobelpreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nobel Peace Prize", + "romanization": "Friedensnobelpreis", + "example_sentence_native": "Sie erhielt den Friedensnobelpreis für ihre Arbeit.", + "example_sentence_english": "She received the Nobel Peace Prize for her work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21572 + }, + { + "word": "Frühsommer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "early summer", + "romanization": "Frühsommer", + "example_sentence_native": "Im Frühsommer blühen viele Blumen.", + "example_sentence_english": "Many flowers bloom in early summer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21573 + }, + { + "word": "funktionsfähig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functional", + "romanization": "funktionsfähig", + "example_sentence_native": "Das Gerät ist wieder voll funktionsfähig.", + "example_sentence_english": "The device is fully functional again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21575 + }, + { + "word": "fürstlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "princely", + "romanization": "fürstlich", + "example_sentence_native": "Sie lebten ein fürstliches Leben.", + "example_sentence_english": "They lived a princely life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21576 + }, + { + "word": "geblieben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remaining", + "romanization": "geblieben", + "example_sentence_native": "Die gebliebenen Gäste genossen den Abend.", + "example_sentence_english": "The remaining guests enjoyed the evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21579 + }, + { + "word": "geboten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate;required", + "romanization": "geboten", + "example_sentence_native": "Es ist geboten, in dieser Situation vorsichtig zu sein.", + "example_sentence_english": "It is appropriate to be careful in this situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21580 + }, + { + "word": "Gegenseitigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reciprocity;mutuality", + "romanization": "Gegenseitigkeit", + "example_sentence_native": "Die Beziehung basiert auf Gegenseitigkeit.", + "example_sentence_english": "The relationship is based on reciprocity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21581 + }, + { + "word": "Geiz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greed;stinginess", + "romanization": "Geiz", + "example_sentence_native": "Sein Geiz war bekannt.", + "example_sentence_english": "His stinginess was well-known.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21582 + }, + { + "word": "gekennzeichnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marked;characterized", + "romanization": "gekennzeichnet", + "example_sentence_native": "Das Produkt ist durch ein spezielles Logo gekennzeichnet.", + "example_sentence_english": "The product is marked by a special logo.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21583 + }, + { + "word": "gelobt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "praised;commended", + "romanization": "gelobt", + "example_sentence_native": "Er war für seine Arbeit gelobt worden.", + "example_sentence_english": "He had been praised for his work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21584 + }, + { + "word": "gentechnisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genetic engineering (adj.)", + "romanization": "gentechnisch", + "example_sentence_native": "Die gentechnische Veränderung von Pflanzen ist umstritten.", + "example_sentence_english": "The genetic engineering modification of plants is controversial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21585 + }, + { + "word": "Gerichtsverhandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court hearing;trial", + "romanization": "Gerichtsverhandlung", + "example_sentence_native": "Die Gerichtsverhandlung dauerte den ganzen Tag.", + "example_sentence_english": "The court hearing lasted all day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21586 + }, + { + "word": "geschildert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "described;depicted", + "romanization": "geschildert", + "example_sentence_native": "Die Situation wurde detailliert geschildert.", + "example_sentence_english": "The situation was described in detail.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21587 + }, + { + "word": "geschmacklich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in terms of taste;taste-wise", + "romanization": "geschmacklich", + "example_sentence_native": "Geschmacklich ist das Gericht ausgezeichnet.", + "example_sentence_english": "In terms of taste, the dish is excellent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21588 + }, + { + "word": "Geschmackssache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matter of taste", + "romanization": "Geschmackssache", + "example_sentence_native": "Ob man es mag, ist Geschmackssache.", + "example_sentence_english": "Whether one likes it is a matter of taste.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21589 + }, + { + "word": "geschäftsführend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "managing;executive", + "romanization": "geschäftsführend", + "example_sentence_native": "Er ist der geschäftsführende Direktor des Unternehmens.", + "example_sentence_english": "He is the managing director of the company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21590 + }, + { + "word": "gesehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seen", + "romanization": "gesehen", + "example_sentence_native": "Das ist ein oft gesehenes Problem.", + "example_sentence_english": "That is an often seen problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21591 + }, + { + "word": "Gewalttäter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violent offender", + "romanization": "Gewalttäter", + "example_sentence_native": "Der Gewalttäter wurde festgenommen.", + "example_sentence_english": "The violent offender was arrested.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21592 + }, + { + "word": "gewappnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prepared;equipped", + "romanization": "gewappnet", + "example_sentence_native": "Sie waren gut auf die Herausforderung gewappnet.", + "example_sentence_english": "They were well prepared for the challenge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21593 + }, + { + "word": "gezogen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drawn;pulled", + "romanization": "gezogen", + "example_sentence_native": "Die gezogenen Linien waren nicht gerade.", + "example_sentence_english": "The drawn lines were not straight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21594 + }, + { + "word": "Gigabyte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gigabyte", + "romanization": "Gigabyte", + "example_sentence_native": "Die Datei ist zwei Gigabyte groß.", + "example_sentence_english": "The file is two gigabytes in size.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21595 + }, + { + "word": "glühen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to glow;to smolder", + "romanization": "glühen", + "example_sentence_native": "Die Kohlen glühten im Kamin.", + "example_sentence_english": "The coals glowed in the fireplace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21597 + }, + { + "word": "Golem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "golem", + "romanization": "Golem", + "example_sentence_native": "Der Golem ist eine Figur aus der jüdischen Mythologie.", + "example_sentence_english": "The Golem is a figure from Jewish mythology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21598 + }, + { + "word": "Grabmal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tomb;monument", + "romanization": "Grabmal", + "example_sentence_native": "Das Grabmal war sehr alt und verwittert.", + "example_sentence_english": "The tomb was very old and weathered.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21599 + }, + { + "word": "Grundprinzip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic principle", + "romanization": "Grundprinzip", + "example_sentence_native": "Das Grundprinzip der Demokratie ist die Volkssouveränität.", + "example_sentence_english": "The basic principle of democracy is popular sovereignty.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21600 + }, + { + "word": "Grundvoraussetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic requirement", + "romanization": "Grundvoraussetzung", + "example_sentence_native": "Eine gute Ausbildung ist eine Grundvoraussetzung für diesen Job.", + "example_sentence_english": "A good education is a basic requirement for this job.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21601 + }, + { + "word": "Gynäkologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gynecology", + "romanization": "Gynäkologie", + "example_sentence_native": "Sie studiert Gynäkologie an der Universität.", + "example_sentence_english": "She studies gynecology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21605 + }, + { + "word": "Halterung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holder", + "romanization": "Halterung", + "example_sentence_native": "Die Halterung für das Telefon ist kaputt.", + "example_sentence_english": "The holder for the phone is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21606 + }, + { + "word": "Heiland", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Savior", + "romanization": "Heiland", + "example_sentence_native": "Viele Gläubige sehen Jesus als ihren Heiland.", + "example_sentence_english": "Many believers see Jesus as their Savior.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21609 + }, + { + "word": "herausnehmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take out", + "romanization": "herausnehmen", + "example_sentence_native": "Bitte nehmen Sie das Buch aus dem Regal heraus.", + "example_sentence_english": "Please take the book out of the shelf.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21611 + }, + { + "word": "Hofburg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hofburg (imperial palace in Vienna)", + "romanization": "Hofburg", + "example_sentence_native": "Die Hofburg ist eine berühmte Sehenswürdigkeit in Wien.", + "example_sentence_english": "The Hofburg is a famous sight in Vienna.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21613 + }, + { + "word": "Holzkohle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charcoal", + "romanization": "Holzkohle", + "example_sentence_native": "Wir brauchen Holzkohle für den Grillabend.", + "example_sentence_english": "We need charcoal for the barbecue evening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21614 + }, + { + "word": "hygienisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hygienic", + "romanization": "hygienisch", + "example_sentence_native": "Es ist wichtig, hygienisch zu arbeiten.", + "example_sentence_english": "It is important to work hygienically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21616 + }, + { + "word": "idiotisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiotic", + "romanization": "idiotisch", + "example_sentence_native": "Das war eine idiotische Idee.", + "example_sentence_english": "That was an idiotic idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21617 + }, + { + "word": "Indigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indigo", + "romanization": "Indigo", + "example_sentence_native": "Die Farbe Indigo ist sehr tief und dunkel.", + "example_sentence_english": "The color indigo is very deep and dark.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21619 + }, + { + "word": "Inhaftierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprisonment;detention", + "romanization": "Inhaftierung", + "example_sentence_native": "Die Inhaftierung des Verdächtigen erfolgte gestern.", + "example_sentence_english": "The detention of the suspect took place yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21622 + }, + { + "word": "irgendwoher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from somewhere", + "romanization": "irgendwoher", + "example_sentence_native": "Er hat die Information irgendwoher bekommen.", + "example_sentence_english": "He got the information from somewhere.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21623 + }, + { + "word": "Jugendfeuerwehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth fire brigade", + "romanization": "Jugendfeuerwehr", + "example_sentence_native": "Er ist Mitglied der Jugendfeuerwehr.", + "example_sentence_english": "He is a member of the youth fire brigade.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21626 + }, + { + "word": "Jugendschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth protection", + "romanization": "Jugendschutz", + "example_sentence_native": "Der Jugendschutz ist in Deutschland sehr wichtig.", + "example_sentence_english": "Youth protection is very important in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21627 + }, + { + "word": "Kettensäge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chainsaw", + "romanization": "Kettensäge", + "example_sentence_native": "Er benutzte eine Kettensäge, um den Baum zu fällen.", + "example_sentence_english": "He used a chainsaw to cut down the tree.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21631 + }, + { + "word": "Knete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dough (money;colloquial)", + "romanization": "Knete", + "example_sentence_native": "Ich habe keine Knete mehr.", + "example_sentence_english": "I don't have any dough left.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21635 + }, + { + "word": "kollidieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collide", + "romanization": "kollidieren", + "example_sentence_native": "Die beiden Autos kollidierten an der Kreuzung.", + "example_sentence_english": "The two cars collided at the intersection.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21636 + }, + { + "word": "Konjunktiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjunctive", + "romanization": "Konjunktiv", + "example_sentence_native": "Der Konjunktiv wird oft für indirekte Rede verwendet.", + "example_sentence_english": "The subjunctive is often used for indirect speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21637 + }, + { + "word": "Kreisverwaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district administration", + "romanization": "Kreisverwaltung", + "example_sentence_native": "Sie arbeitet bei der Kreisverwaltung.", + "example_sentence_english": "She works at the district administration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21638 + }, + { + "word": "kämpfend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fighting;struggling", + "romanization": "kämpfend", + "example_sentence_native": "Die kämpfenden Soldaten waren erschöpft.", + "example_sentence_english": "The fighting soldiers were exhausted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21639 + }, + { + "word": "Körperhaltung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "posture", + "romanization": "Körperhaltung", + "example_sentence_native": "Eine gute Körperhaltung ist wichtig für die Gesundheit.", + "example_sentence_english": "Good posture is important for health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21640 + }, + { + "word": "Küchentisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kitchen table", + "romanization": "Küchentisch", + "example_sentence_native": "Wir essen oft am Küchentisch.", + "example_sentence_english": "We often eat at the kitchen table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21641 + }, + { + "word": "Landesbank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state bank", + "romanization": "Landesbank", + "example_sentence_native": "Die Landesbank spielt eine wichtige Rolle in der regionalen Wirtschaft.", + "example_sentence_english": "The state bank plays an important role in the regional economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21642 + }, + { + "word": "Landesgrenze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state border", + "romanization": "Landesgrenze", + "example_sentence_native": "Wir überquerten die Landesgrenze.", + "example_sentence_english": "We crossed the state border.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21643 + }, + { + "word": "landschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scenic", + "romanization": "landschaftlich", + "example_sentence_native": "Die Gegend ist landschaftlich sehr reizvoll.", + "example_sentence_english": "The area is very scenic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21644 + }, + { + "word": "lasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weigh", + "romanization": "lasten", + "example_sentence_native": "Die Verantwortung lastet schwer auf seinen Schultern.", + "example_sentence_english": "The responsibility weighs heavily on his shoulders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21646 + }, + { + "word": "latent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "latent", + "romanization": "latent", + "example_sentence_native": "Es gibt eine latente Gefahr.", + "example_sentence_english": "There is a latent danger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21647 + }, + { + "word": "Leitartikel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editorial", + "romanization": "Leitartikel", + "example_sentence_native": "Der Leitartikel kommentierte die aktuelle politische Lage.", + "example_sentence_english": "The editorial commented on the current political situation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21649 + }, + { + "word": "Lektor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor", + "romanization": "Lektor", + "example_sentence_native": "Der Lektor hat das Manuskript gründlich überarbeitet.", + "example_sentence_english": "The editor thoroughly revised the manuscript.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21650 + }, + { + "word": "Lira", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lira (currency)", + "romanization": "Lira", + "example_sentence_native": "Früher war die Lira die Währung Italiens.", + "example_sentence_english": "The lira used to be the currency of Italy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21653 + }, + { + "word": "Logbuch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logbook", + "romanization": "Logbuch", + "example_sentence_native": "Der Kapitän trug alle Ereignisse ins Logbuch ein.", + "example_sentence_english": "The captain entered all events into the logbook.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21654 + }, + { + "word": "Luftverkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "air traffic", + "romanization": "Luftverkehr", + "example_sentence_native": "Der Luftverkehr wurde wegen des Sturms eingestellt.", + "example_sentence_english": "Air traffic was suspended due to the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21657 + }, + { + "word": "Metzgerei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher shop", + "romanization": "Metzgerei", + "example_sentence_native": "Ich kaufe mein Fleisch in der Metzgerei.", + "example_sentence_english": "I buy my meat at the butcher shop.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21666 + }, + { + "word": "Milchprodukt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dairy product", + "romanization": "Milchprodukt", + "example_sentence_native": "Joghurt ist ein gesundes Milchprodukt.", + "example_sentence_english": "Yogurt is a healthy dairy product.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21668 + }, + { + "word": "mitgestalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to help shape", + "romanization": "mitgestalten", + "example_sentence_native": "Jeder Bürger sollte die Zukunft seiner Stadt mitgestalten.", + "example_sentence_english": "Every citizen should help shape the future of their city.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "gestalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21671 + }, + { + "word": "Motte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moth", + "romanization": "Motte", + "example_sentence_native": "Eine Motte flog ins Licht.", + "example_sentence_english": "A moth flew into the light.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21673 + }, + { + "word": "multiplizieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to multiply", + "romanization": "multiplizieren", + "example_sentence_native": "Man muss diese Zahlen multiplizieren.", + "example_sentence_english": "You have to multiply these numbers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21674 + }, + { + "word": "Mörtel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortar", + "romanization": "Mörtel", + "example_sentence_native": "Der Maurer mischt den Mörtel für die Wand.", + "example_sentence_english": "The bricklayer mixes the mortar for the wall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21676 + }, + { + "word": "Nachbarstaat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighboring state", + "romanization": "Nachbarstaat", + "example_sentence_native": "Deutschland grenzt an mehrere Nachbarstaaten.", + "example_sentence_english": "Germany borders several neighboring states.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21677 + }, + { + "word": "Nationalstaat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nation-state", + "romanization": "Nationalstaat", + "example_sentence_native": "Der Nationalstaat ist eine moderne Form der politischen Organisation.", + "example_sentence_english": "The nation-state is a modern form of political organization.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21679 + }, + { + "word": "Neandertaler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Neanderthal", + "romanization": "Neandertaler", + "example_sentence_native": "Der Neandertaler lebte vor Tausenden von Jahren.", + "example_sentence_english": "The Neanderthal lived thousands of years ago.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21681 + }, + { + "word": "neutralisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to neutralize", + "romanization": "neutralisieren", + "example_sentence_native": "Man muss die Säure neutralisieren.", + "example_sentence_english": "One must neutralize the acid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21682 + }, + { + "word": "Offenlegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disclosure", + "romanization": "Offenlegung", + "example_sentence_native": "Die Offenlegung der Daten ist gesetzlich vorgeschrieben.", + "example_sentence_english": "The disclosure of the data is legally required.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21687 + }, + { + "word": "Osmane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ottoman (person)", + "romanization": "Osmane", + "example_sentence_native": "Die Osmanen waren ein mächtiges Volk.", + "example_sentence_english": "The Ottomans were a powerful people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21688 + }, + { + "word": "Personalabteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "human resources department", + "romanization": "Personalabteilung", + "example_sentence_native": "Bitte wenden Sie sich an die Personalabteilung.", + "example_sentence_english": "Please contact the human resources department.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21691 + }, + { + "word": "Personengruppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "group of people", + "romanization": "Personengruppe", + "example_sentence_native": "Eine kleine Personengruppe versammelte sich vor dem Gebäude.", + "example_sentence_english": "A small group of people gathered in front of the building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21692 + }, + { + "word": "pessimistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pessimistic", + "romanization": "pessimistisch", + "example_sentence_native": "Er hat eine sehr pessimistische Einstellung.", + "example_sentence_english": "He has a very pessimistic attitude.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21693 + }, + { + "word": "Petersburger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Petersburger (person from St. Petersburg)", + "romanization": "Petersburger", + "example_sentence_native": "Die Petersburger sind stolz auf ihre Stadt.", + "example_sentence_english": "The Petersburgers are proud of their city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21694 + }, + { + "word": "Pfarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parish", + "romanization": "Pfarre", + "example_sentence_native": "Die Pfarre organisiert viele Gemeindeveranstaltungen.", + "example_sentence_english": "The parish organizes many community events.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21695 + }, + { + "word": "Pflanzenwelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flora;plant world", + "romanization": "Pflanzenwelt", + "example_sentence_native": "Die Pflanzenwelt in diesem Gebiet ist sehr vielfältig.", + "example_sentence_english": "The flora in this area is very diverse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21696 + }, + { + "word": "Pharmazie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pharmacy (field of study;industry)", + "romanization": "Pharmazie", + "example_sentence_native": "Sie studiert Pharmazie an der Universität.", + "example_sentence_english": "She studies pharmacy at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21698 + }, + { + "word": "polar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polar", + "romanization": "polar", + "example_sentence_native": "Die Arktis ist eine polare Region.", + "example_sentence_english": "The Arctic is a polar region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21700 + }, + { + "word": "Polizeistation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police station", + "romanization": "Polizeistation", + "example_sentence_native": "Die Polizeistation ist um die Ecke.", + "example_sentence_english": "The police station is around the corner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21701 + }, + { + "word": "postmodern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "postmodern", + "romanization": "postmodern", + "example_sentence_native": "Er studiert postmoderne Kunst.", + "example_sentence_english": "He studies postmodern art.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21702 + }, + { + "word": "Proof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proof", + "romanization": "Proof", + "example_sentence_native": "Bitte senden Sie mir den Proof zur Korrektur.", + "example_sentence_english": "Please send me the proof for correction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21704 + }, + { + "word": "Propst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provost", + "romanization": "Propst", + "example_sentence_native": "Der Propst leitete die Versammlung.", + "example_sentence_english": "The provost led the assembly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21705 + }, + { + "word": "Question", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "question", + "romanization": "Question", + "example_sentence_native": "Ich habe eine Question dazu.", + "example_sentence_english": "I have a question about that.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21708 + }, + { + "word": "Ratsherr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "councilman", + "romanization": "Ratsherr", + "example_sentence_native": "Der Ratsherr stimmte für den Vorschlag.", + "example_sentence_english": "The councilman voted for the proposal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21711 + }, + { + "word": "Raumtemperatur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "room temperature", + "romanization": "Raumtemperatur", + "example_sentence_native": "Das Wasser hat Raumtemperatur.", + "example_sentence_english": "The water is at room temperature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21712 + }, + { + "word": "rausbringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take out;to bring out", + "romanization": "rausbringen", + "example_sentence_native": "Kannst du bitte den Müll rausbringen?", + "example_sentence_english": "Can you please take out the trash?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21713 + }, + { + "word": "Raute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhombus;diamond (shape)", + "romanization": "Raute", + "example_sentence_native": "Das Symbol ist eine Raute.", + "example_sentence_english": "The symbol is a diamond.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21714 + }, + { + "word": "Rechteck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rectangle", + "romanization": "Rechteck", + "example_sentence_native": "Ein Quadrat ist ein spezielles Rechteck.", + "example_sentence_english": "A square is a special rectangle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21715 + }, + { + "word": "Rechtsgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal history", + "romanization": "Rechtsgeschichte", + "example_sentence_native": "Er studiert Rechtsgeschichte an der Universität.", + "example_sentence_english": "He studies legal history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21716 + }, + { + "word": "relaxen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relax", + "romanization": "relaxen", + "example_sentence_native": "Ich möchte am Wochenende einfach nur relaxen.", + "example_sentence_english": "I just want to relax on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21719 + }, + { + "word": "Rennwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racing car", + "romanization": "Rennwagen", + "example_sentence_native": "Der Rennwagen raste mit hoher Geschwindigkeit über die Strecke.", + "example_sentence_english": "The racing car sped at high speed along the track.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21720 + }, + { + "word": "Ritus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rite;ritual", + "romanization": "Ritus", + "example_sentence_native": "Der alte Ritus wurde seit Generationen praktiziert.", + "example_sentence_english": "The ancient rite has been practiced for generations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21722 + }, + { + "word": "Rosette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rosette", + "romanization": "Rosette", + "example_sentence_native": "Die Rosette an der Decke war wunderschön geschnitzt.", + "example_sentence_english": "The rosette on the ceiling was beautifully carved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21724 + }, + { + "word": "Rundfunkbeitrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broadcasting fee", + "romanization": "Rundfunkbeitrag", + "example_sentence_native": "Jeder Haushalt in Deutschland muss den Rundfunkbeitrag zahlen.", + "example_sentence_english": "Every household in Germany must pay the broadcasting fee.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21725 + }, + { + "word": "Saisonauftakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "season opener", + "romanization": "Saisonauftakt", + "example_sentence_native": "Der Saisonauftakt im Fußball war sehr spannend.", + "example_sentence_english": "The season opener in football was very exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21726 + }, + { + "word": "salonfähig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "socially acceptable;presentable", + "romanization": "salonfähig", + "example_sentence_native": "Seine Ideen waren noch nicht salonfähig genug für die Öffentlichkeit.", + "example_sentence_english": "His ideas were not yet socially acceptable enough for the public.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21727 + }, + { + "word": "Scharfschütze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sniper", + "romanization": "Scharfschütze", + "example_sentence_native": "Der Scharfschütze zielte präzise auf sein Ziel.", + "example_sentence_english": "The sniper aimed precisely at his target.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21728 + }, + { + "word": "Schelm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rogue;rascal", + "romanization": "Schelm", + "example_sentence_native": "Er ist ein kleiner Schelm, der immer Streiche spielt.", + "example_sentence_english": "He is a little rogue who always plays pranks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21729 + }, + { + "word": "Schiit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Shiite", + "romanization": "Schiit", + "example_sentence_native": "Ein Schiit ist ein Anhänger einer bestimmten Richtung des Islam.", + "example_sentence_english": "A Shiite is a follower of a specific branch of Islam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21731 + }, + { + "word": "Schlaflosigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleeplessness;insomnia", + "romanization": "Schlaflosigkeit", + "example_sentence_native": "Sie litt unter starker Schlaflosigkeit nach dem Unfall.", + "example_sentence_english": "She suffered from severe sleeplessness after the accident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21732 + }, + { + "word": "Schmach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disgrace;shame", + "romanization": "Schmach", + "example_sentence_native": "Die Niederlage war eine große Schmach für das Team.", + "example_sentence_english": "The defeat was a great disgrace for the team.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21733 + }, + { + "word": "schäbig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shabby;dingy", + "romanization": "schäbig", + "example_sentence_native": "Er trug einen schäbigen Mantel, der schon sehr alt war.", + "example_sentence_english": "He wore a shabby coat that was very old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21735 + }, + { + "word": "Semesterferien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semester break", + "romanization": "Semesterferien", + "example_sentence_native": "Während der Semesterferien reiste sie durch Europa.", + "example_sentence_english": "During the semester break, she traveled through Europe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21736 + }, + { + "word": "Sexvideo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sex video", + "romanization": "Sexvideo", + "example_sentence_native": "Das Sexvideo wurde ohne ihre Zustimmung veröffentlicht.", + "example_sentence_english": "The sex video was released without her consent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21737 + }, + { + "word": "Siegeszug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triumphal procession;victorious advance", + "romanization": "Siegeszug", + "example_sentence_native": "Der Siegeszug der neuen Technologie war unaufhaltsam.", + "example_sentence_english": "The victorious advance of the new technology was unstoppable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21739 + }, + { + "word": "Skrupel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scruple", + "romanization": "Skrupel", + "example_sentence_native": "Er hatte keine Skrupel, die Wahrheit zu sagen.", + "example_sentence_english": "He had no scruples about telling the truth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21741 + }, + { + "word": "Solarenergie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar energy", + "romanization": "Solarenergie", + "example_sentence_native": "Solarenergie ist eine wichtige erneuerbare Energiequelle.", + "example_sentence_english": "Solar energy is an important renewable energy source.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21743 + }, + { + "word": "Sparbuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savings book;passbook", + "romanization": "Sparbuch", + "example_sentence_native": "Sie hat ihr Geld auf einem Sparbuch angelegt.", + "example_sentence_english": "She invested her money in a savings book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21744 + }, + { + "word": "Spielleiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "game master;director", + "romanization": "Spielleiter", + "example_sentence_native": "Der Spielleiter erklärte die Regeln des Spiels.", + "example_sentence_english": "The game master explained the rules of the game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21746 + }, + { + "word": "Staatshaushalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national budget;state budget", + "romanization": "Staatshaushalt", + "example_sentence_native": "Der Staatshaushalt muss ausgeglichen sein.", + "example_sentence_english": "The national budget must be balanced.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21747 + }, + { + "word": "Staatsstreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coup d'état;coup", + "romanization": "Staatsstreich", + "example_sentence_native": "Es gab Gerüchte über einen bevorstehenden Staatsstreich.", + "example_sentence_english": "There were rumors of an impending coup d'état.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21748 + }, + { + "word": "Stammzelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stem cell", + "romanization": "Stammzelle", + "example_sentence_native": "Die Forschung an Stammzellen ist ein vielversprechendes Feld.", + "example_sentence_english": "Stem cell research is a promising field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21750 + }, + { + "word": "stampfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stamp;to stomp;to pound", + "romanization": "stampfen", + "example_sentence_native": "Er begann wütend mit dem Fuß zu stampfen.", + "example_sentence_english": "He began to stamp his foot angrily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21751 + }, + { + "word": "Standbein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standing leg;mainstay;pillar", + "romanization": "Standbein", + "example_sentence_native": "Das Unternehmen hat mehrere Standbeine, um Risiken zu minimieren.", + "example_sentence_english": "The company has several mainstays to minimize risks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21752 + }, + { + "word": "Startpunkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starting point", + "romanization": "Startpunkt", + "example_sentence_native": "Der Startpunkt der Wanderung war am See.", + "example_sentence_english": "The starting point of the hike was at the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21753 + }, + { + "word": "Stausee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reservoir;artificial lake", + "romanization": "Stausee", + "example_sentence_native": "Der Stausee dient der Stromerzeugung.", + "example_sentence_english": "The reservoir serves for electricity generation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21754 + }, + { + "word": "Steppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steppe", + "romanization": "Steppe", + "example_sentence_native": "Die weiten Steppen Zentralasiens sind beeindruckend.", + "example_sentence_english": "The vast steppes of Central Asia are impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21755 + }, + { + "word": "Stromkosten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electricity costs", + "romanization": "Stromkosten", + "example_sentence_native": "Die Stromkosten sind in diesem Monat stark gestiegen.", + "example_sentence_english": "The electricity costs have risen sharply this month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21756 + }, + { + "word": "Studi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "student (informal)", + "romanization": "Studi", + "example_sentence_native": "Viele Studis treffen sich in der Mensa.", + "example_sentence_english": "Many students meet in the cafeteria.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21757 + }, + { + "word": "Stuhlgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bowel movement;stool", + "romanization": "Stuhlgang", + "example_sentence_native": "Er hatte seit zwei Tagen keinen Stuhlgang.", + "example_sentence_english": "He hasn't had a bowel movement for two days.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21758 + }, + { + "word": "Styling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "styling", + "romanization": "Styling", + "example_sentence_native": "Ihr neues Styling ist sehr modern.", + "example_sentence_english": "Her new styling is very modern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21759 + }, + { + "word": "Südstaat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "southern state", + "romanization": "Südstaat", + "example_sentence_native": "Die Südstaaten der USA haben eine reiche Geschichte.", + "example_sentence_english": "The southern states of the USA have a rich history.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21762 + }, + { + "word": "Tacho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speedometer;tachometer", + "romanization": "Tacho", + "example_sentence_native": "Der Tacho im Auto zeigte 120 km/h an.", + "example_sentence_english": "The speedometer in the car showed 120 km/h.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21763 + }, + { + "word": "Testphase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "test phase", + "romanization": "Testphase", + "example_sentence_native": "Das Produkt befindet sich noch in der Testphase.", + "example_sentence_english": "The product is still in the test phase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21766 + }, + { + "word": "Tierquälerei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "animal cruelty", + "romanization": "Tierquälerei", + "example_sentence_native": "Tierquälerei ist in vielen Ländern strafbar.", + "example_sentence_english": "Animal cruelty is punishable in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21770 + }, + { + "word": "Todesangst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mortal fear;terror", + "romanization": "Todesangst", + "example_sentence_native": "Er hatte Todesangst, als er den Bären sah.", + "example_sentence_english": "He had mortal fear when he saw the bear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21772 + }, + { + "word": "umkippen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tip over;to fall over;to faint", + "romanization": "umkippen", + "example_sentence_native": "Der Stuhl könnte umkippen, wenn du dich so bewegst.", + "example_sentence_english": "The chair could tip over if you move like that.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "kippen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21775 + }, + { + "word": "umschliessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enclose;to surround", + "romanization": "umschliessen", + "example_sentence_native": "Die Mauer umschließt den gesamten Garten.", + "example_sentence_english": "The wall encloses the entire garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21776 + }, + { + "word": "Ungeziefer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vermin;pests", + "romanization": "Ungeziefer", + "example_sentence_native": "Das Haus war voller Ungeziefer.", + "example_sentence_english": "The house was full of vermin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21777 + }, + { + "word": "unliebsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpleasant;unwelcome", + "romanization": "unliebsam", + "example_sentence_native": "Wir hatten eine unliebsame Begegnung.", + "example_sentence_english": "We had an unpleasant encounter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21778 + }, + { + "word": "Unterführung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underpass;subway (pedestrian)", + "romanization": "Unterführung", + "example_sentence_native": "Wir gingen durch die Unterführung, um die Straße zu überqueren.", + "example_sentence_english": "We went through the underpass to cross the street.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21779 + }, + { + "word": "unterwasser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underwater", + "romanization": "unterwasser", + "example_sentence_native": "Die Kamera ist unterwasser wasserdicht.", + "example_sentence_english": "The camera is waterproof underwater.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21780 + }, + { + "word": "untypisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "untypical", + "romanization": "untypisch", + "example_sentence_native": "Sein Verhalten war untypisch für ihn.", + "example_sentence_english": "His behavior was untypical for him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21781 + }, + { + "word": "unvermeidbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unavoidable", + "romanization": "unvermeidbar", + "example_sentence_native": "Der Konflikt schien unvermeidbar.", + "example_sentence_english": "The conflict seemed unavoidable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21782 + }, + { + "word": "verstauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stow;to store away", + "romanization": "verstauen", + "example_sentence_native": "Wir müssen das Gepäck im Kofferraum verstauen.", + "example_sentence_english": "We need to stow the luggage in the trunk.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21784 + }, + { + "word": "vertieft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deepened;absorbed;engrossed", + "romanization": "vertieft", + "example_sentence_native": "Er war in seine Arbeit vertieft.", + "example_sentence_english": "He was engrossed in his work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21785 + }, + { + "word": "verwischen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blur;to smudge;to wipe away", + "romanization": "verwischen", + "example_sentence_native": "Die Spuren wurden verwischt.", + "example_sentence_english": "The traces were blurred.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21786 + }, + { + "word": "Verzerrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distortion;bias", + "romanization": "Verzerrung", + "example_sentence_native": "Es gab eine Verzerrung im Bild.", + "example_sentence_english": "There was a distortion in the image.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21787 + }, + { + "word": "Volkszeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "people's newspaper;popular newspaper", + "romanization": "Volkszeitung", + "example_sentence_native": "Die Volkszeitung berichtete über die Ereignisse.", + "example_sentence_english": "The people's newspaper reported on the events.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21791 + }, + { + "word": "voraussagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to predict;to forecast", + "romanization": "voraussagen", + "example_sentence_native": "Niemand konnte das Ergebnis voraussagen.", + "example_sentence_english": "Nobody could predict the outcome.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "voraus", + "base_verb": "sagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21792 + }, + { + "word": "vorgetragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presented;recited;performed", + "romanization": "vorgetragen", + "example_sentence_native": "Die Rede war gut vorgetragen.", + "example_sentence_english": "The speech was well presented.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21793 + }, + { + "word": "vorstehend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preceding;aforementioned;protruding", + "romanization": "vorstehend", + "example_sentence_native": "Bitte beachten Sie die vorstehenden Anweisungen.", + "example_sentence_english": "Please note the preceding instructions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21794 + }, + { + "word": "Vorstellungskraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imagination;power of imagination", + "romanization": "Vorstellungskraft", + "example_sentence_native": "Seine Vorstellungskraft war grenzenlos.", + "example_sentence_english": "His imagination was boundless.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21795 + }, + { + "word": "Vorwahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area code;primary election", + "romanization": "Vorwahl", + "example_sentence_native": "Vergessen Sie nicht die Vorwahl der Stadt.", + "example_sentence_english": "Don't forget the area code of the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21796 + }, + { + "word": "voten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vote", + "romanization": "voten", + "example_sentence_native": "Wir müssen heute voten gehen.", + "example_sentence_english": "We have to go vote today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21797 + }, + { + "word": "Wasserstrasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waterway", + "romanization": "Wasserstrasse", + "example_sentence_native": "Die Elbe ist eine wichtige Wasserstrasse.", + "example_sentence_english": "The Elbe is an important waterway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21799 + }, + { + "word": "weiterspielen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue playing", + "romanization": "weiterspielen", + "example_sentence_native": "Die Kinder wollen weiterspielen.", + "example_sentence_english": "The children want to continue playing.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21804 + }, + { + "word": "Welterbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "World Heritage", + "romanization": "Welterbe", + "example_sentence_native": "Die Stadt ist ein UNESCO-Welterbe.", + "example_sentence_english": "The city is a UNESCO World Heritage site.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21805 + }, + { + "word": "Wertvorstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "value concept", + "romanization": "Wertvorstellung", + "example_sentence_native": "Jede Kultur hat ihre eigenen Wertvorstellungen.", + "example_sentence_english": "Every culture has its own value concepts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21806 + }, + { + "word": "Wetterlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weather situation", + "romanization": "Wetterlage", + "example_sentence_native": "Die Wetterlage hat sich verbessert.", + "example_sentence_english": "The weather situation has improved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21808 + }, + { + "word": "wiedermal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "again", + "romanization": "wiedermal", + "example_sentence_native": "Er hat wiedermal zu spät angerufen.", + "example_sentence_english": "He called too late again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21810 + }, + { + "word": "windig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "windy", + "romanization": "windig", + "example_sentence_native": "Heute ist es sehr windig.", + "example_sentence_english": "It is very windy today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21812 + }, + { + "word": "Wochenstunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekly hour", + "romanization": "Wochenstunde", + "example_sentence_native": "Der Kurs hat drei Wochenstunden.", + "example_sentence_english": "The course has three weekly hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21813 + }, + { + "word": "Wolkenkratzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skyscraper", + "romanization": "Wolkenkratzer", + "example_sentence_native": "New York ist bekannt für seine Wolkenkratzer.", + "example_sentence_english": "New York is known for its skyscrapers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21814 + }, + { + "word": "Zebrastreifen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zebra crossing", + "romanization": "Zebrastreifen", + "example_sentence_native": "Bitte überqueren Sie die Straße am Zebrastreifen.", + "example_sentence_english": "Please cross the street at the zebra crossing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21817 + }, + { + "word": "Zentner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hundredweight", + "romanization": "Zentner", + "example_sentence_native": "Ein Zentner sind fünfzig Kilogramm.", + "example_sentence_english": "One hundredweight is fifty kilograms.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21818 + }, + { + "word": "zielgerichtet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goal-oriented", + "romanization": "zielgerichtet", + "example_sentence_native": "Sie arbeitet sehr zielgerichtet an ihrem Projekt.", + "example_sentence_english": "She works very goal-oriented on her project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21819 + }, + { + "word": "zusammenbringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bring together;to reconcile", + "romanization": "zusammenbringen", + "example_sentence_native": "Wir müssen die beiden Parteien wieder zusammenbringen.", + "example_sentence_english": "We need to bring the two parties back together.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21820 + }, + { + "word": "überladen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overload", + "romanization": "überladen", + "example_sentence_native": "Der Lastwagen war überladen.", + "example_sentence_english": "The truck was overloaded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21821 + }, + { + "word": "überlagern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to superimpose;to overlap", + "romanization": "überlagern", + "example_sentence_native": "Die neuen Informationen überlagern die alten Daten.", + "example_sentence_english": "The new information overlays the old data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21822 + }, + { + "word": "überzeugt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convinced", + "romanization": "überzeugt", + "example_sentence_native": "Ich bin von seiner Ehrlichkeit überzeugt.", + "example_sentence_english": "I am convinced of his honesty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21823 + }, + { + "word": "Abfrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "query;request", + "romanization": "Abfrage", + "example_sentence_native": "Die Datenbankabfrage dauerte lange.", + "example_sentence_english": "The database query took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21824 + }, + { + "word": "abwaschen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wash up;to rinse off", + "romanization": "abwaschen", + "example_sentence_native": "Ich muss noch das Geschirr abwaschen.", + "example_sentence_english": "I still need to wash up the dishes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "waschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21825 + }, + { + "word": "alternativlos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without alternative;unavoidable", + "romanization": "alternativlos", + "example_sentence_native": "Diese Entscheidung ist alternativlos.", + "example_sentence_english": "This decision is without alternative.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21827 + }, + { + "word": "anlocken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attract;to lure", + "romanization": "anlocken", + "example_sentence_native": "Der Duft lockt die Bienen an.", + "example_sentence_english": "The scent attracts the bees.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "locken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21830 + }, + { + "word": "Anrechnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crediting;allowance;recognition", + "romanization": "Anrechnung", + "example_sentence_native": "Die Anrechnung der Studienleistungen ist wichtig.", + "example_sentence_english": "The crediting of academic achievements is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21831 + }, + { + "word": "Ansinnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "request;demand;proposition", + "romanization": "Ansinnen", + "example_sentence_native": "Sein Ansinnen wurde abgelehnt.", + "example_sentence_english": "His request was rejected.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21832 + }, + { + "word": "Anteilseigner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shareholder;stakeholder", + "romanization": "Anteilseigner", + "example_sentence_native": "Die Anteilseigner stimmten dem Vorschlag zu.", + "example_sentence_english": "The shareholders agreed to the proposal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21833 + }, + { + "word": "Anziehung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attraction;appeal", + "romanization": "Anziehung", + "example_sentence_native": "Die Anziehungskraft der Erde ist stark.", + "example_sentence_english": "The Earth's gravitational pull is strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21834 + }, + { + "word": "Arbeitsspeicher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "RAM;main memory", + "romanization": "Arbeitsspeicher", + "example_sentence_native": "Mein Computer braucht mehr Arbeitsspeicher.", + "example_sentence_english": "My computer needs more RAM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21835 + }, + { + "word": "Arznei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine;drug", + "romanization": "Arznei", + "example_sentence_native": "Diese Arznei hilft gegen Kopfschmerzen.", + "example_sentence_english": "This medicine helps against headaches.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21838 + }, + { + "word": "aufdrehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn on (e.g.;tap);to turn up (volume)", + "romanization": "aufdrehen", + "example_sentence_native": "Kannst du bitte das Radio aufdrehen?", + "example_sentence_english": "Can you please turn up the radio?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "drehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21839 + }, + { + "word": "aufrüsten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arm;to upgrade", + "romanization": "aufrüsten", + "example_sentence_native": "Das Land beschloss, seine Armee aufzurüsten.", + "example_sentence_english": "The country decided to arm its army.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "rüsten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21840 + }, + { + "word": "auslosen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw (lots);to raffle", + "romanization": "auslosen", + "example_sentence_native": "Die Gewinner werden morgen ausgelost.", + "example_sentence_english": "The winners will be drawn tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "losen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21841 + }, + { + "word": "Ausklang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fading sound;end;conclusion", + "romanization": "Ausklang", + "example_sentence_native": "Der Abend fand seinen Ausklang bei einem Glas Wein.", + "example_sentence_english": "The evening found its conclusion with a glass of wine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21842 + }, + { + "word": "Auszählung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counting;tally", + "romanization": "Auszählung", + "example_sentence_native": "Die Auszählung der Stimmen dauerte die ganze Nacht.", + "example_sentence_english": "The counting of the votes lasted all night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21843 + }, + { + "word": "Autobiografie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autobiography", + "romanization": "Autobiografie", + "example_sentence_native": "Sie schrieb eine Autobiografie über ihr Leben.", + "example_sentence_english": "She wrote an autobiography about her life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21844 + }, + { + "word": "Baguette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baguette", + "romanization": "Baguette", + "example_sentence_native": "Ich kaufe ein frisches Baguette für das Abendessen.", + "example_sentence_english": "I'm buying a fresh baguette for dinner.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21846 + }, + { + "word": "Bariton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baritone", + "romanization": "Bariton", + "example_sentence_native": "Er hat eine kräftige Baritonstimme.", + "example_sentence_english": "He has a powerful baritone voice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21849 + }, + { + "word": "Berufungsgericht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "court of appeal", + "romanization": "Berufungsgericht", + "example_sentence_native": "Der Fall ging vor das Berufungsgericht.", + "example_sentence_english": "The case went before the court of appeal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21852 + }, + { + "word": "besorgniserregend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worrying;alarming", + "romanization": "besorgniserregend", + "example_sentence_native": "Die Situation ist besorgniserregend.", + "example_sentence_english": "The situation is worrying.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21853 + }, + { + "word": "Betrachtungsweise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "way of looking at things;perspective", + "romanization": "Betrachtungsweise", + "example_sentence_native": "Man muss die Betrachtungsweise ändern.", + "example_sentence_english": "One must change the perspective.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21854 + }, + { + "word": "betrüben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sadden;to grieve", + "romanization": "betrüben", + "example_sentence_native": "Die Nachricht betrübte ihn sehr.", + "example_sentence_english": "The news saddened him greatly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21855 + }, + { + "word": "Bewerbungsgespräch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job interview", + "romanization": "Bewerbungsgespräch", + "example_sentence_native": "Sie hatte ein wichtiges Bewerbungsgespräch.", + "example_sentence_english": "She had an important job interview.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21856 + }, + { + "word": "Biennale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biennale (biennial exhibition)", + "romanization": "Biennale", + "example_sentence_native": "Die Kunst-Biennale findet alle zwei Jahre statt.", + "example_sentence_english": "The art biennale takes place every two years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21857 + }, + { + "word": "Biodiversität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biodiversity", + "romanization": "Biodiversität", + "example_sentence_native": "Der Schutz der Biodiversität ist entscheidend.", + "example_sentence_english": "The protection of biodiversity is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21858 + }, + { + "word": "Blindheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blindness", + "romanization": "Blindheit", + "example_sentence_native": "Die Blindheit kann durch verschiedene Ursachen hervorgerufen werden.", + "example_sentence_english": "Blindness can be caused by various reasons.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21860 + }, + { + "word": "Brandung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surf;breakers", + "romanization": "Brandung", + "example_sentence_native": "Die Brandung war heute sehr stark.", + "example_sentence_english": "The surf was very strong today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21862 + }, + { + "word": "Brauhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brewery;brewpub", + "romanization": "Brauhaus", + "example_sentence_native": "Wir haben im Brauhaus zu Abend gegessen.", + "example_sentence_english": "We had dinner at the brewpub.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21863 + }, + { + "word": "brüten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to brood;to hatch", + "romanization": "brüten", + "example_sentence_native": "Die Henne brütet auf ihren Eiern.", + "example_sentence_english": "The hen is brooding on her eggs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21866 + }, + { + "word": "Bullet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullet", + "romanization": "Bullet", + "example_sentence_native": "Das Bullet traf das Ziel genau.", + "example_sentence_english": "The bullet hit the target precisely.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21867 + }, + { + "word": "Bully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bully", + "romanization": "Bully", + "example_sentence_native": "Der Bully wurde von der Schule verwiesen.", + "example_sentence_english": "The bully was expelled from school.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21868 + }, + { + "word": "Bundesverdienstkreuz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Cross of Merit", + "romanization": "Bundesverdienstkreuz", + "example_sentence_native": "Er erhielt das Bundesverdienstkreuz für seine Verdienste.", + "example_sentence_english": "He received the Federal Cross of Merit for his services.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21869 + }, + { + "word": "bändigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tame;to curb;to control", + "romanization": "bändigen", + "example_sentence_native": "Es ist schwer, wilde Tiere zu bändigen.", + "example_sentence_english": "It is difficult to tame wild animals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21870 + }, + { + "word": "bös", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evil;wicked", + "romanization": "bös", + "example_sentence_native": "Er hatte einen bös Blick.", + "example_sentence_english": "He had an evil look.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21871 + }, + { + "word": "bücken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bend down;to stoop", + "romanization": "bücken", + "example_sentence_native": "Er musste sich bücken, um den Stift aufzuheben.", + "example_sentence_english": "He had to bend down to pick up the pen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21872 + }, + { + "word": "callen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to call (e.g.;in poker;or to call a function)", + "romanization": "callen", + "example_sentence_native": "Im Poker muss man oft callen oder erhöhen.", + "example_sentence_english": "In poker, you often have to call or raise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21873 + }, + { + "word": "Cream", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cream", + "romanization": "Cream", + "example_sentence_native": "Diese Cream ist gut für trockene Haut.", + "example_sentence_english": "This cream is good for dry skin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21875 + }, + { + "word": "Crossing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossing", + "romanization": "Crossing", + "example_sentence_native": "Das ist ein gefährliches Crossing für Fußgänger.", + "example_sentence_english": "That is a dangerous crossing for pedestrians.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21876 + }, + { + "word": "Dauerausstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanent exhibition", + "romanization": "Dauerausstellung", + "example_sentence_native": "Das Museum hat eine interessante Dauerausstellung.", + "example_sentence_english": "The museum has an interesting permanent exhibition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21879 + }, + { + "word": "Dekor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decor;decoration", + "romanization": "Dekor", + "example_sentence_native": "Das Dekor des Raumes war sehr geschmackvoll.", + "example_sentence_english": "The decor of the room was very tasteful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21880 + }, + { + "word": "Dienstmädchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maid;housemaid", + "romanization": "Dienstmädchen", + "example_sentence_native": "Das Dienstmädchen putzte das Haus jeden Tag.", + "example_sentence_english": "The maid cleaned the house every day.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21882 + }, + { + "word": "Disko", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disco;nightclub", + "romanization": "Disko", + "example_sentence_native": "Wir gehen heute Abend in die Disko.", + "example_sentence_english": "We are going to the disco tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21884 + }, + { + "word": "diskreditieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to discredit", + "romanization": "diskreditieren", + "example_sentence_native": "Er versuchte, seinen Gegner zu diskreditieren.", + "example_sentence_english": "He tried to discredit his opponent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21885 + }, + { + "word": "diskriminierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discriminatory", + "romanization": "diskriminierend", + "example_sentence_native": "Das war eine diskriminierende Bemerkung.", + "example_sentence_english": "That was a discriminatory remark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21886 + }, + { + "word": "dritteln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to divide into thirds;to third", + "romanization": "dritteln", + "example_sentence_native": "Wir müssen den Kuchen dritteln.", + "example_sentence_english": "We have to divide the cake into thirds.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21890 + }, + { + "word": "Drücker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "door handle;trigger;button", + "romanization": "Drücker", + "example_sentence_native": "Der Drücker der Tür war locker.", + "example_sentence_english": "The door handle was loose.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21891 + }, + { + "word": "durchschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break through;to soak through;to last", + "romanization": "durchschlagen", + "example_sentence_native": "Das Wasser ist durch die Decke durchgeschlagen.", + "example_sentence_english": "The water has soaked through the ceiling.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21894 + }, + { + "word": "durchstarten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go around (aviation);to make a fresh start", + "romanization": "durchstarten", + "example_sentence_native": "Das Flugzeug musste durchstarten.", + "example_sentence_english": "The plane had to go around.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "starten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21895 + }, + { + "word": "Eidgenosse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confederate (esp. Swiss)", + "romanization": "Eidgenosse", + "example_sentence_native": "Die Schweizer nennen sich oft Eidgenossen.", + "example_sentence_english": "The Swiss often call themselves confederates.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21897 + }, + { + "word": "eingliedern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to integrate;to incorporate", + "romanization": "eingliedern", + "example_sentence_native": "Man muss neue Mitarbeiter gut eingliedern.", + "example_sentence_english": "New employees must be well integrated.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "gliedern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21898 + }, + { + "word": "einschleichen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sneak in;to creep in", + "romanization": "einschleichen", + "example_sentence_native": "Er versuchte, sich unbemerkt einzuschleichen.", + "example_sentence_english": "He tried to sneak in unnoticed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schleichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21899 + }, + { + "word": "Embryo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embryo", + "romanization": "Embryo", + "example_sentence_native": "Die Entwicklung eines Embryos ist faszinierend.", + "example_sentence_english": "The development of an embryo is fascinating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21903 + }, + { + "word": "Expression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expression", + "romanization": "Expression", + "example_sentence_native": "Ihre Expression war sehr ausdrucksstark.", + "example_sentence_english": "Her expression was very expressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21910 + }, + { + "word": "Extension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extension", + "romanization": "Extension", + "example_sentence_native": "Die Extension des Arms ist wichtig für die Übung.", + "example_sentence_english": "The extension of the arm is important for the exercise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21911 + }, + { + "word": "Fachwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "half-timbering;framework", + "romanization": "Fachwerk", + "example_sentence_native": "Viele alte Häuser haben Fachwerk.", + "example_sentence_english": "Many old houses have half-timbering.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21912 + }, + { + "word": "Familienangehörige", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family member (female);family members (plural)", + "romanization": "Familienangehörige", + "example_sentence_native": "Sie ist eine Familienangehörige.", + "example_sentence_english": "She is a family member.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21915 + }, + { + "word": "Familienbetrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "family business", + "romanization": "Familienbetrieb", + "example_sentence_native": "Unser Restaurant ist ein Familienbetrieb.", + "example_sentence_english": "Our restaurant is a family business.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21916 + }, + { + "word": "Familiennachzug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "family reunification", + "romanization": "Familiennachzug", + "example_sentence_native": "Der Familiennachzug ist ein wichtiges Thema in der Politik.", + "example_sentence_english": "Family reunification is an important topic in politics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21917 + }, + { + "word": "fegen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sweep", + "romanization": "fegen", + "example_sentence_native": "Ich muss den Boden fegen.", + "example_sentence_english": "I have to sweep the floor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21919 + }, + { + "word": "feilen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to file;to polish", + "romanization": "feilen", + "example_sentence_native": "Er feilt an den Details seines Plans.", + "example_sentence_english": "He is polishing the details of his plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21920 + }, + { + "word": "Fighter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fighter", + "romanization": "Fighter", + "example_sentence_native": "Der Boxer war ein starker Fighter.", + "example_sentence_english": "The boxer was a strong fighter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21922 + }, + { + "word": "Forschungsarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research work", + "romanization": "Forschungsarbeit", + "example_sentence_native": "Sie schreibt an ihrer Forschungsarbeit.", + "example_sentence_english": "She is writing her research work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21925 + }, + { + "word": "Franziskaner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Franciscan (monk);Franciscan (beer)", + "romanization": "Franziskaner", + "example_sentence_native": "Er traf einen Franziskaner im Kloster.", + "example_sentence_english": "He met a Franciscan monk in the monastery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21926 + }, + { + "word": "Freske", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fresco", + "romanization": "Freske", + "example_sentence_native": "Die alte Kirche ist bekannt für ihre schönen Fresken.", + "example_sentence_english": "The old church is known for its beautiful frescoes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21927 + }, + { + "word": "futsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gone;ruined (informal)", + "romanization": "futsch", + "example_sentence_native": "Mein Geld ist futsch.", + "example_sentence_english": "My money is gone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21929 + }, + { + "word": "Galaxis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "galaxy", + "romanization": "Galaxis", + "example_sentence_native": "Unsere Galaxis heißt Milchstraße.", + "example_sentence_english": "Our galaxy is called the Milky Way.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21931 + }, + { + "word": "Gardine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curtain", + "romanization": "Gardine", + "example_sentence_native": "Die Gardinen sind zugezogen.", + "example_sentence_english": "The curtains are drawn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21932 + }, + { + "word": "geballt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concentrated;bundled;clenched", + "romanization": "geballt", + "example_sentence_native": "Er zeigte geballte Faust.", + "example_sentence_english": "He showed a clenched fist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21934 + }, + { + "word": "Geburtsurkunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birth certificate", + "romanization": "Geburtsurkunde", + "example_sentence_native": "Sie brauchte ihre Geburtsurkunde für die Anmeldung.", + "example_sentence_english": "She needed her birth certificate for registration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21935 + }, + { + "word": "Gedenkfeier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial service;commemoration", + "romanization": "Gedenkfeier", + "example_sentence_native": "Die Gedenkfeier fand am Sonntag statt.", + "example_sentence_english": "The memorial service took place on Sunday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21936 + }, + { + "word": "Gefolgschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "followers;allegiance;retinue", + "romanization": "Gefolgschaft", + "example_sentence_native": "Er genoss die volle Gefolgschaft seiner Anhänger.", + "example_sentence_english": "He enjoyed the full allegiance of his followers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21937 + }, + { + "word": "geformt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formed;shaped", + "romanization": "geformt", + "example_sentence_native": "Die Skulptur war kunstvoll geformt.", + "example_sentence_english": "The sculpture was artfully shaped.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21938 + }, + { + "word": "Gegendemonstrant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counter-demonstrator", + "romanization": "Gegendemonstrant", + "example_sentence_native": "Die Polizei trennte die Demonstranten von den Gegendemonstranten.", + "example_sentence_english": "The police separated the demonstrators from the counter-demonstrators.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21939 + }, + { + "word": "gelinde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mild;gentle", + "romanization": "gelinde", + "example_sentence_native": "Sie sprach mit gelinder Stimme.", + "example_sentence_english": "She spoke in a gentle voice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21940 + }, + { + "word": "geografisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographical", + "romanization": "geografisch", + "example_sentence_native": "Wir untersuchten die geografische Lage.", + "example_sentence_english": "We examined the geographical location.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21941 + }, + { + "word": "geschieden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divorced", + "romanization": "geschieden", + "example_sentence_native": "Sie ist seit zwei Jahren geschieden.", + "example_sentence_english": "She has been divorced for two years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21943 + }, + { + "word": "geschwollen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swollen", + "romanization": "geschwollen", + "example_sentence_native": "Sein Knöchel war geschwollen.", + "example_sentence_english": "His ankle was swollen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21944 + }, + { + "word": "geschwungen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "curved;swung", + "romanization": "geschwungen", + "example_sentence_native": "Die Brücke hatte eine elegante, geschwungene Form.", + "example_sentence_english": "The bridge had an elegant, curved shape.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21945 + }, + { + "word": "gesellig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociable;gregarious", + "romanization": "gesellig", + "example_sentence_native": "Er ist ein sehr geselliger Mensch.", + "example_sentence_english": "He is a very sociable person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21946 + }, + { + "word": "Gesetzbuch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "law book;code of laws", + "romanization": "Gesetzbuch", + "example_sentence_native": "Das neue Gesetzbuch wurde verabschiedet.", + "example_sentence_english": "The new code of laws was passed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21947 + }, + { + "word": "gestorben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dead;deceased", + "romanization": "gestorben", + "example_sentence_native": "Die gestorbene Katze lag im Garten.", + "example_sentence_english": "The dead cat lay in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21948 + }, + { + "word": "gleichauf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neck and neck;level", + "romanization": "gleichauf", + "example_sentence_native": "Die beiden Läufer lagen gleichauf.", + "example_sentence_english": "The two runners were neck and neck.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 21950 + }, + { + "word": "Grabung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excavation;digging", + "romanization": "Grabung", + "example_sentence_native": "Bei der Grabung wurden alte Artefakte gefunden.", + "example_sentence_english": "Old artifacts were found during the excavation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21951 + }, + { + "word": "Grossherzog", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Grand Duke", + "romanization": "Grossherzog", + "example_sentence_native": "Der Grossherzog regierte das Land.", + "example_sentence_english": "The Grand Duke ruled the country.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21952 + }, + { + "word": "Grundschüler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primary school student", + "romanization": "Grundschüler", + "example_sentence_native": "Die Grundschüler lernten lesen und schreiben.", + "example_sentence_english": "The primary school students learned to read and write.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21953 + }, + { + "word": "Güterzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freight train", + "romanization": "Güterzug", + "example_sentence_native": "Ein langer Güterzug fuhr durch den Bahnhof.", + "example_sentence_english": "A long freight train passed through the station.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21954 + }, + { + "word": "Hauptrunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main round;preliminary round (in sports)", + "romanization": "Hauptrunde", + "example_sentence_native": "Das Team erreichte die Hauptrunde des Turniers.", + "example_sentence_english": "The team reached the main round of the tournament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21959 + }, + { + "word": "Hochmut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arrogance;haughtiness", + "romanization": "Hochmut", + "example_sentence_native": "Sein Hochmut war unerträglich.", + "example_sentence_english": "His arrogance was unbearable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21965 + }, + { + "word": "Hochsprung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high jump", + "romanization": "Hochsprung", + "example_sentence_native": "Sie trainiert für den Hochsprung.", + "example_sentence_english": "She trains for the high jump.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21966 + }, + { + "word": "Hundehalter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dog owner", + "romanization": "Hundehalter", + "example_sentence_native": "Jeder Hundehalter muss seinen Hund anmelden.", + "example_sentence_english": "Every dog owner must register their dog.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21970 + }, + { + "word": "Häschen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bunny;little hare", + "romanization": "Häschen", + "example_sentence_native": "Das kleine Häschen hoppelte über die Wiese.", + "example_sentence_english": "The little bunny hopped across the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21971 + }, + { + "word": "imperial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperial", + "romanization": "imperial", + "example_sentence_native": "Das ist ein imperialer Palast.", + "example_sentence_english": "That is an imperial palace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21974 + }, + { + "word": "imposant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposing;impressive", + "romanization": "imposant", + "example_sentence_native": "Das Gebäude sieht sehr imposant aus.", + "example_sentence_english": "The building looks very imposing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21975 + }, + { + "word": "individual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual", + "romanization": "individual", + "example_sentence_native": "Jeder Mensch hat individuelle Bedürfnisse.", + "example_sentence_english": "Every person has individual needs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21976 + }, + { + "word": "Jugendorganisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth organization", + "romanization": "Jugendorganisation", + "example_sentence_native": "Sie trat einer Jugendorganisation bei.", + "example_sentence_english": "She joined a youth organization.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21981 + }, + { + "word": "Katastrophenschutz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disaster control", + "romanization": "Katastrophenschutz", + "example_sentence_native": "Der Katastrophenschutz war schnell vor Ort.", + "example_sentence_english": "The disaster control was quickly on site.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21983 + }, + { + "word": "Kaviar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caviar", + "romanization": "Kaviar", + "example_sentence_native": "Er mag keinen Kaviar.", + "example_sentence_english": "He doesn't like caviar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21984 + }, + { + "word": "keck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheeky", + "romanization": "keck", + "example_sentence_native": "Sie gab eine kecke Antwort.", + "example_sentence_english": "She gave a cheeky answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21985 + }, + { + "word": "keimen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to germinate", + "romanization": "keimen", + "example_sentence_native": "Die Samen beginnen zu keimen.", + "example_sentence_english": "The seeds begin to germinate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 21986 + }, + { + "word": "Kenntnisstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state of knowledge", + "romanization": "Kenntnisstand", + "example_sentence_native": "Der aktuelle Kenntnisstand ist unzureichend.", + "example_sentence_english": "The current state of knowledge is insufficient.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21988 + }, + { + "word": "Kläranlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sewage treatment plant", + "romanization": "Kläranlage", + "example_sentence_native": "Das Abwasser wird in der Kläranlage gereinigt.", + "example_sentence_english": "The wastewater is cleaned in the sewage treatment plant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21991 + }, + { + "word": "Konfirmation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmation", + "romanization": "Konfirmation", + "example_sentence_native": "Ihre Konfirmation ist nächsten Monat.", + "example_sentence_english": "Her confirmation is next month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21992 + }, + { + "word": "konkurrenzfähig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitive", + "romanization": "konkurrenzfähig", + "example_sentence_native": "Das Unternehmen muss konkurrenzfähig bleiben.", + "example_sentence_english": "The company must remain competitive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 21993 + }, + { + "word": "Kraftfahrzeug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motor vehicle", + "romanization": "Kraftfahrzeug", + "example_sentence_native": "Ein Kraftfahrzeug benötigt eine Zulassung.", + "example_sentence_english": "A motor vehicle requires registration.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21994 + }, + { + "word": "Kritikpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "point of criticism", + "romanization": "Kritikpunkt", + "example_sentence_native": "Ein wichtiger Kritikpunkt wurde angesprochen.", + "example_sentence_english": "An important point of criticism was raised.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21995 + }, + { + "word": "Kuckuck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cuckoo", + "romanization": "Kuckuck", + "example_sentence_native": "Der Kuckuck ruft im Frühling.", + "example_sentence_english": "The cuckoo calls in spring.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21996 + }, + { + "word": "Kulturpolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cultural policy", + "romanization": "Kulturpolitik", + "example_sentence_native": "Die Kulturpolitik fördert lokale Künstler.", + "example_sentence_english": "The cultural policy promotes local artists.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21997 + }, + { + "word": "Kundendienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customer service", + "romanization": "Kundendienst", + "example_sentence_native": "Bitte kontaktieren Sie den Kundendienst.", + "example_sentence_english": "Please contact customer service.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21998 + }, + { + "word": "Köter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutt", + "romanization": "Köter", + "example_sentence_native": "Der alte Köter bellte die ganze Nacht.", + "example_sentence_english": "The old mutt barked all night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 21999 + }, + { + "word": "lauthals", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loudly", + "romanization": "lauthals", + "example_sentence_native": "Sie lachte lauthals.", + "example_sentence_english": "She laughed loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 22001 + }, + { + "word": "Lebensalter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "age", + "romanization": "Lebensalter", + "example_sentence_native": "Das Lebensalter spielt eine Rolle.", + "example_sentence_english": "The age plays a role.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22002 + }, + { + "word": "Leier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurdy-gurdy", + "romanization": "Leier", + "example_sentence_native": "Er spielte eine alte Leier.", + "example_sentence_english": "He played an old hurdy-gurdy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22003 + }, + { + "word": "Linderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief", + "romanization": "Linderung", + "example_sentence_native": "Das Medikament brachte Linderung.", + "example_sentence_english": "The medicine brought relief.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22005 + }, + { + "word": "liturgisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liturgical", + "romanization": "liturgisch", + "example_sentence_native": "Die liturgische Musik war sehr schön.", + "example_sentence_english": "The liturgical music was very beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22006 + }, + { + "word": "Mantra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mantra", + "romanization": "Mantra", + "example_sentence_native": "Sie wiederholte ihr Mantra.", + "example_sentence_english": "She repeated her mantra.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22010 + }, + { + "word": "Margarine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "margarine", + "romanization": "Margarine", + "example_sentence_native": "Ich esse Brot mit Margarine.", + "example_sentence_english": "I eat bread with margarine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22011 + }, + { + "word": "Mediation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediation", + "romanization": "Mediation", + "example_sentence_native": "Die Mediation half, den Konflikt zu lösen.", + "example_sentence_english": "The mediation helped to resolve the conflict.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22013 + }, + { + "word": "Minze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mint", + "romanization": "Minze", + "example_sentence_native": "Ich mag Tee mit Minze.", + "example_sentence_english": "I like tea with mint.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22016 + }, + { + "word": "mitgeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give along;to give something to take with", + "romanization": "mitgeben", + "example_sentence_native": "Ich werde dir etwas zu essen mitgeben.", + "example_sentence_english": "I will give you something to eat to take with you.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22018 + }, + { + "word": "Muttermilch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breast milk", + "romanization": "Muttermilch", + "example_sentence_native": "Babys trinken Muttermilch.", + "example_sentence_english": "Babies drink breast milk.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22020 + }, + { + "word": "Namensgeber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "namesake", + "romanization": "Namensgeber", + "example_sentence_native": "Der Fluss ist der Namensgeber der Stadt.", + "example_sentence_english": "The river is the namesake of the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22022 + }, + { + "word": "nebensächlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secondary", + "romanization": "nebensächlich", + "example_sentence_native": "Das ist eine nebensächliche Angelegenheit.", + "example_sentence_english": "That is a minor matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22024 + }, + { + "word": "Notbremse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency brake", + "romanization": "Notbremse", + "example_sentence_native": "Ziehen Sie die Notbremse nur im Notfall.", + "example_sentence_english": "Pull the emergency brake only in an emergency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22026 + }, + { + "word": "Onkologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oncology", + "romanization": "Onkologie", + "example_sentence_native": "Sie studiert Onkologie an der Universität.", + "example_sentence_english": "She studies oncology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22028 + }, + { + "word": "Palmöl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palm oil", + "romanization": "Palmöl", + "example_sentence_native": "Palmöl wird in vielen Produkten verwendet.", + "example_sentence_english": "Palm oil is used in many products.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22035 + }, + { + "word": "Pflaume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plum", + "romanization": "Pflaume", + "example_sentence_native": "Ich esse gerne eine süße Pflaume.", + "example_sentence_english": "I like to eat a sweet plum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22040 + }, + { + "word": "Pflug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plow", + "romanization": "Pflug", + "example_sentence_native": "Der Bauer benutzt einen Pflug, um das Feld zu bearbeiten.", + "example_sentence_english": "The farmer uses a plow to cultivate the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22041 + }, + { + "word": "Piercing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piercing", + "romanization": "Piercing", + "example_sentence_native": "Sie hat ein neues Piercing in der Nase.", + "example_sentence_english": "She has a new piercing in her nose.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22044 + }, + { + "word": "Pope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pope", + "romanization": "Pope", + "example_sentence_native": "Der Pope besuchte die Stadt.", + "example_sentence_english": "The Pope visited the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22047 + }, + { + "word": "possible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possible", + "romanization": "possible", + "example_sentence_native": "Ist das überhaupt possible?", + "example_sentence_english": "Is that even possible?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22049 + }, + { + "word": "Postillon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "postilion", + "romanization": "Postillon", + "example_sentence_native": "Der Postillon blies sein Horn.", + "example_sentence_english": "The postilion blew his horn.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22050 + }, + { + "word": "Problemlösung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "problem-solving", + "romanization": "Problemlösung", + "example_sentence_native": "Die Problemlösung erfordert Kreativität.", + "example_sentence_english": "Problem-solving requires creativity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22051 + }, + { + "word": "punkten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to score points", + "romanization": "punkten", + "example_sentence_native": "Er konnte mit seiner Präsentation punkten.", + "example_sentence_english": "He was able to score points with his presentation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22052 + }, + { + "word": "Punsch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punch (drink)", + "romanization": "Punsch", + "example_sentence_native": "Wir tranken heißen Punsch auf dem Weihnachtsmarkt.", + "example_sentence_english": "We drank hot punch at the Christmas market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22053 + }, + { + "word": "Radverkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bicycle traffic", + "romanization": "Radverkehr", + "example_sentence_native": "Der Radverkehr nimmt in der Stadt zu.", + "example_sentence_english": "Bicycle traffic is increasing in the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22054 + }, + { + "word": "Rechnungshof", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "audit court", + "romanization": "Rechnungshof", + "example_sentence_native": "Der Rechnungshof prüft die Staatsausgaben.", + "example_sentence_english": "The audit court examines state expenditures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22055 + }, + { + "word": "Rechtssystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal system", + "romanization": "Rechtssystem", + "example_sentence_native": "Das Rechtssystem ist komplex.", + "example_sentence_english": "The legal system is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22056 + }, + { + "word": "Regentschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regency", + "romanization": "Regentschaft", + "example_sentence_native": "Die Regentschaft dauerte zehn Jahre.", + "example_sentence_english": "The regency lasted ten years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22057 + }, + { + "word": "Regenzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rainy season", + "romanization": "Regenzeit", + "example_sentence_native": "In den Tropen beginnt bald die Regenzeit.", + "example_sentence_english": "The rainy season will soon begin in the tropics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22058 + }, + { + "word": "Retail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retail", + "romanization": "Retail", + "example_sentence_native": "Der Retail-Sektor wächst.", + "example_sentence_english": "The retail sector is growing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22059 + }, + { + "word": "Roadster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roadster", + "romanization": "Roadster", + "example_sentence_native": "Der Roadster fuhr schnell die Küstenstraße entlang.", + "example_sentence_english": "The roadster drove fast along the coastal road.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22060 + }, + { + "word": "runterfallen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fall down", + "romanization": "runterfallen", + "example_sentence_native": "Das Buch ist vom Tisch runtergefallen.", + "example_sentence_english": "The book fell down from the table.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "runter", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22063 + }, + { + "word": "salzig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salty", + "romanization": "salzig", + "example_sentence_native": "Die Suppe ist zu salzig.", + "example_sentence_english": "The soup is too salty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22065 + }, + { + "word": "Satiriker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satirist", + "romanization": "Satiriker", + "example_sentence_native": "Der Satiriker kommentierte die aktuellen Ereignisse.", + "example_sentence_english": "The satirist commented on current events.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22068 + }, + { + "word": "scherzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to joke", + "romanization": "scherzen", + "example_sentence_native": "Er scherzte über die Situation.", + "example_sentence_english": "He joked about the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22070 + }, + { + "word": "Schimpfwort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swear word;insult", + "romanization": "Schimpfwort", + "example_sentence_native": "Er benutzte ein Schimpfwort.", + "example_sentence_english": "He used a swear word.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22071 + }, + { + "word": "Schlussstrich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final line;conclusion", + "romanization": "Schlussstrich", + "example_sentence_native": "Es ist Zeit, einen Schlussstrich zu ziehen.", + "example_sentence_english": "It's time to draw a line under it.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22072 + }, + { + "word": "Schnitzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carver;blunder", + "romanization": "Schnitzer", + "example_sentence_native": "Der Schnitzer hat ein schönes Holzpferd gemacht.", + "example_sentence_english": "The carver made a beautiful wooden horse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22073 + }, + { + "word": "Schreibstil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "writing style", + "romanization": "Schreibstil", + "example_sentence_native": "Ihr Schreibstil ist sehr elegant.", + "example_sentence_english": "Her writing style is very elegant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22074 + }, + { + "word": "schulen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to train;to educate", + "romanization": "schulen", + "example_sentence_native": "Wir müssen unsere Mitarbeiter schulen.", + "example_sentence_english": "We need to train our employees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22075 + }, + { + "word": "Schweinerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess;outrage", + "romanization": "Schweinerei", + "example_sentence_native": "Das ist ja eine Schweinerei!", + "example_sentence_english": "That's a real mess!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22077 + }, + { + "word": "schützend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protective;shielding", + "romanization": "schützend", + "example_sentence_native": "Sie legte ihre schützende Hand auf das Kind.", + "example_sentence_english": "She placed her protective hand on the child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22079 + }, + { + "word": "selbstgemacht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homemade", + "romanization": "selbstgemacht", + "example_sentence_native": "Ich liebe selbstgemachte Kekse.", + "example_sentence_english": "I love homemade cookies.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22080 + }, + { + "word": "Senatorin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senator (female)", + "romanization": "Senatorin", + "example_sentence_native": "Die Senatorin hielt eine Rede.", + "example_sentence_english": "The senator gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22081 + }, + { + "word": "Sichel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sickle", + "romanization": "Sichel", + "example_sentence_native": "Der Bauer benutzte eine Sichel, um das Getreide zu schneiden.", + "example_sentence_english": "The farmer used a sickle to cut the grain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22083 + }, + { + "word": "Sicherheitskonferenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security conference", + "romanization": "Sicherheitskonferenz", + "example_sentence_native": "Die Sicherheitskonferenz findet nächste Woche statt.", + "example_sentence_english": "The security conference will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22084 + }, + { + "word": "Sicherheitsrisiko", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security risk", + "romanization": "Sicherheitsrisiko", + "example_sentence_native": "Das alte System stellt ein Sicherheitsrisiko dar.", + "example_sentence_english": "The old system poses a security risk.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22085 + }, + { + "word": "Smartwatch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smartwatch", + "romanization": "Smartwatch", + "example_sentence_native": "Ich habe eine neue Smartwatch gekauft.", + "example_sentence_english": "I bought a new smartwatch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22087 + }, + { + "word": "Sode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sod;turf", + "romanization": "Sode", + "example_sentence_native": "Er hob eine Sode aus dem Boden.", + "example_sentence_english": "He lifted a sod from the ground.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22089 + }, + { + "word": "Solaranlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solar panel system;solar installation", + "romanization": "Solaranlage", + "example_sentence_native": "Viele Häuser haben jetzt eine Solaranlage auf dem Dach.", + "example_sentence_english": "Many houses now have a solar panel system on the roof.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22090 + }, + { + "word": "Sonntagnachmittag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Sunday afternoon", + "romanization": "Sonntagnachmittag", + "example_sentence_native": "Wir treffen uns am Sonntagnachmittag im Park.", + "example_sentence_english": "We meet in the park on Sunday afternoon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22092 + }, + { + "word": "Sozialgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social history", + "romanization": "Sozialgeschichte", + "example_sentence_native": "Er studiert Sozialgeschichte an der Universität.", + "example_sentence_english": "He studies social history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22093 + }, + { + "word": "soziologisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociological", + "romanization": "soziologisch", + "example_sentence_native": "Das ist eine soziologische Studie.", + "example_sentence_english": "This is a sociological study.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22094 + }, + { + "word": "Spezialgebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialty;special field", + "romanization": "Spezialgebiet", + "example_sentence_native": "Sein Spezialgebiet ist die Quantenphysik.", + "example_sentence_english": "His specialty is quantum physics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22095 + }, + { + "word": "Spielball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plaything;toy ball;pawn (figurative)", + "romanization": "Spielball", + "example_sentence_native": "Das Kind spielte mit dem Spielball im Garten.", + "example_sentence_english": "The child played with the toy ball in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22096 + }, + { + "word": "Spieldauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playing time;duration of play", + "romanization": "Spieldauer", + "example_sentence_native": "Die Spieldauer des Films beträgt zwei Stunden.", + "example_sentence_english": "The playing time of the movie is two hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22097 + }, + { + "word": "Staatskasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state treasury;public purse", + "romanization": "Staatskasse", + "example_sentence_native": "Die Einnahmen fließen in die Staatskasse.", + "example_sentence_english": "The revenues flow into the state treasury.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22099 + }, + { + "word": "Stack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stack", + "romanization": "Stack", + "example_sentence_native": "Der Programmierer arbeitet am Stack.", + "example_sentence_english": "The programmer is working on the stack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22100 + }, + { + "word": "startklar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ready to start", + "romanization": "startklar", + "example_sentence_native": "Das Team ist startklar für das Rennen.", + "example_sentence_english": "The team is ready to start for the race.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22101 + }, + { + "word": "Synchro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dubbing", + "romanization": "Synchro", + "example_sentence_native": "Die Synchro des Films war sehr gut.", + "example_sentence_english": "The dubbing of the film was very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22103 + }, + { + "word": "Taverne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tavern", + "romanization": "Taverne", + "example_sentence_native": "Sie trafen sich in der Taverne.", + "example_sentence_english": "They met in the tavern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22105 + }, + { + "word": "Teamgeist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "team spirit", + "romanization": "Teamgeist", + "example_sentence_native": "Guter Teamgeist ist wichtig für den Erfolg.", + "example_sentence_english": "Good team spirit is important for success.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22106 + }, + { + "word": "twittern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tweet", + "romanization": "twittern", + "example_sentence_native": "Er twittert oft über Politik.", + "example_sentence_english": "He often tweets about politics.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22114 + }, + { + "word": "Umdrehung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolution", + "romanization": "Umdrehung", + "example_sentence_native": "Die Maschine macht 1000 Umdrehungen pro Minute.", + "example_sentence_english": "The machine makes 1000 revolutions per minute.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22116 + }, + { + "word": "Umkehrschluss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inference by inversion", + "romanization": "Umkehrschluss", + "example_sentence_native": "Aus diesem Umkehrschluss ergibt sich eine neue Perspektive.", + "example_sentence_english": "A new perspective arises from this inference by inversion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22117 + }, + { + "word": "Umweltpolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmental policy", + "romanization": "Umweltpolitik", + "example_sentence_native": "Die Umweltpolitik ist ein wichtiges Thema.", + "example_sentence_english": "Environmental policy is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22118 + }, + { + "word": "Umweltverschmutzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmental pollution", + "romanization": "Umweltverschmutzung", + "example_sentence_native": "Wir müssen die Umweltverschmutzung reduzieren.", + "example_sentence_english": "We must reduce environmental pollution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22119 + }, + { + "word": "ungebrochen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbroken;undaunted", + "romanization": "ungebrochen", + "example_sentence_native": "Sein Wille blieb ungebrochen.", + "example_sentence_english": "His will remained unbroken.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22121 + }, + { + "word": "unterschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embezzle;withhold;suppress", + "romanization": "unterschlagen", + "example_sentence_native": "Er wurde beschuldigt, Gelder unterschlagen zu haben.", + "example_sentence_english": "He was accused of having embezzled funds.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22124 + }, + { + "word": "unverkennbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unmistakable;distinctive", + "romanization": "unverkennbar", + "example_sentence_native": "Seine Handschrift ist unverkennbar.", + "example_sentence_english": "His handwriting is unmistakable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22126 + }, + { + "word": "veranlagen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invest;assess (for tax)", + "romanization": "veranlagen", + "example_sentence_native": "Er möchte sein Geld sinnvoll veranlagen.", + "example_sentence_english": "He wants to invest his money wisely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22128 + }, + { + "word": "Verbraucherschützer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumer advocate;protector", + "romanization": "Verbraucherschützer", + "example_sentence_native": "Die Verbraucherschützer warnen vor neuen Betrugsmaschen.", + "example_sentence_english": "Consumer advocates warn against new fraud schemes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22129 + }, + { + "word": "Verfassungsgerichtshof", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional court", + "romanization": "Verfassungsgerichtshof", + "example_sentence_native": "Der Verfassungsgerichtshof hat die Klage abgewiesen.", + "example_sentence_english": "The constitutional court dismissed the complaint.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22130 + }, + { + "word": "verinnerlichen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internalize;assimilate", + "romanization": "verinnerlichen", + "example_sentence_native": "Man muss die Regeln verinnerlichen, um sie anzuwenden.", + "example_sentence_english": "One must internalize the rules to apply them.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22131 + }, + { + "word": "verschwindend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vanishing;negligible", + "romanization": "verschwindend", + "example_sentence_native": "Die Wahrscheinlichkeit ist verschwindend gering.", + "example_sentence_english": "The probability is vanishingly small.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22133 + }, + { + "word": "Verwendungszweck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purpose of use;intended use", + "romanization": "Verwendungszweck", + "example_sentence_native": "Bitte geben Sie den Verwendungszweck an.", + "example_sentence_english": "Please state the purpose of use.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22134 + }, + { + "word": "verweben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interweave;entwine", + "romanization": "verweben", + "example_sentence_native": "Die Geschichten sind eng miteinander verwoben.", + "example_sentence_english": "The stories are closely interwoven.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22135 + }, + { + "word": "Vorhaut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foreskin", + "romanization": "Vorhaut", + "example_sentence_native": "Die Vorhaut ist ein Teil des männlichen Geschlechtsorgans.", + "example_sentence_english": "The foreskin is part of the male genital organ.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22137 + }, + { + "word": "Waffengewalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armed violence;force of arms", + "romanization": "Waffengewalt", + "example_sentence_native": "Der Konflikt eskalierte in Waffengewalt.", + "example_sentence_english": "The conflict escalated into armed violence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22138 + }, + { + "word": "Weggang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "departure", + "romanization": "Weggang", + "example_sentence_native": "Sein plötzlicher Weggang überraschte alle.", + "example_sentence_english": "His sudden departure surprised everyone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22140 + }, + { + "word": "Weilchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a little while", + "romanization": "Weilchen", + "example_sentence_native": "Warte bitte ein Weilchen.", + "example_sentence_english": "Please wait a little while.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22141 + }, + { + "word": "Weltmacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world power", + "romanization": "Weltmacht", + "example_sentence_native": "Deutschland war einst eine Weltmacht.", + "example_sentence_english": "Germany was once a world power.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22142 + }, + { + "word": "Zoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarrel", + "romanization": "Zoff", + "example_sentence_native": "Es gab Zoff zwischen den Nachbarn.", + "example_sentence_english": "There was trouble between the neighbors.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22145 + }, + { + "word": "zoologisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zoological", + "romanization": "zoologisch", + "example_sentence_native": "Er studiert zoologische Wissenschaften.", + "example_sentence_english": "He studies zoological sciences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22146 + }, + { + "word": "zugucken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to watch", + "romanization": "zugucken", + "example_sentence_native": "Ich gucke dir gerne beim Kochen zu.", + "example_sentence_english": "I like to watch you cook.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "gucken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22147 + }, + { + "word": "zurückdrängen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push back", + "romanization": "zurückdrängen", + "example_sentence_native": "Die Armee konnte den Feind zurückdrängen.", + "example_sentence_english": "The army was able to push back the enemy.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "drängen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22148 + }, + { + "word": "zweistellig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "two-digit", + "romanization": "zweistellig", + "example_sentence_native": "Die Zahl ist zweistellig.", + "example_sentence_english": "The number is two-digit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22149 + }, + { + "word": "zweitrangig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secondary", + "romanization": "zweitrangig", + "example_sentence_native": "Das ist nur eine zweitrangige Angelegenheit.", + "example_sentence_english": "That is only a secondary matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22150 + }, + { + "word": "zwitschern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chirp", + "romanization": "zwitschern", + "example_sentence_native": "Die Vögel zwitschern am Morgen.", + "example_sentence_english": "The birds chirp in the morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22151 + }, + { + "word": "überbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliver", + "romanization": "überbringen", + "example_sentence_native": "Er musste die schlechte Nachricht überbringen.", + "example_sentence_english": "He had to deliver the bad news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22152 + }, + { + "word": "abdrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull the trigger", + "romanization": "abdrücken", + "example_sentence_native": "Er drückte den Abzug ab.", + "example_sentence_english": "He pulled the trigger.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "drücken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22154 + }, + { + "word": "Aberglaube", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superstition", + "romanization": "Aberglaube", + "example_sentence_native": "Schwarze Katzen bringen angeblich Unglück, aber das ist nur Aberglaube.", + "example_sentence_english": "Black cats supposedly bring bad luck, but that's just superstition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22155 + }, + { + "word": "Abfuhr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejection", + "romanization": "Abfuhr", + "example_sentence_native": "Er erhielt eine klare Abfuhr.", + "example_sentence_english": "He received a clear rejection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22156 + }, + { + "word": "abfüllen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bottle", + "romanization": "abfüllen", + "example_sentence_native": "Das Bier wird in Flaschen abgefüllt.", + "example_sentence_english": "The beer is bottled.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "füllen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22157 + }, + { + "word": "abklären", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clarify", + "romanization": "abklären", + "example_sentence_native": "Wir müssen das noch abklären.", + "example_sentence_english": "We still need to clarify that.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "klären", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22158 + }, + { + "word": "Abgleich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comparison", + "romanization": "Abgleich", + "example_sentence_native": "Ein Datenabgleich ist notwendig.", + "example_sentence_english": "A data reconciliation is necessary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22159 + }, + { + "word": "abscheulich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hideous;abominable", + "romanization": "abscheulich", + "example_sentence_native": "Das Wetter war abscheulich.", + "example_sentence_english": "The weather was abominable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22160 + }, + { + "word": "Akkord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chord;piecework", + "romanization": "Akkord", + "example_sentence_native": "Er spielte einen schönen Akkord auf der Gitarre.", + "example_sentence_english": "He played a beautiful chord on the guitar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22163 + }, + { + "word": "alkoholisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alcoholic", + "romanization": "alkoholisch", + "example_sentence_native": "Ist dieses Getränk alkoholisch?", + "example_sentence_english": "Is this drink alcoholic?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22166 + }, + { + "word": "Analphabet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illiterate person", + "romanization": "Analphabet", + "example_sentence_native": "Ein Analphabet kann nicht lesen oder schreiben.", + "example_sentence_english": "An an illiterate person cannot read or write.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22167 + }, + { + "word": "Anarchismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchism", + "romanization": "Anarchismus", + "example_sentence_native": "Anarchismus ist eine politische Philosophie.", + "example_sentence_english": "Anarchism is a political philosophy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22168 + }, + { + "word": "angeboren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innate;inborn", + "romanization": "angeboren", + "example_sentence_native": "Diese Fähigkeit ist angeboren.", + "example_sentence_english": "This ability is innate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22169 + }, + { + "word": "Angewohnheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habit", + "romanization": "Angewohnheit", + "example_sentence_native": "Er hat die Angewohnheit, spät aufzustehen.", + "example_sentence_english": "He has the habit of getting up late.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22171 + }, + { + "word": "Anis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anise", + "romanization": "Anis", + "example_sentence_native": "Anis wird oft in der Weihnachtsbäckerei verwendet.", + "example_sentence_english": "Anise is often used in Christmas baking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22172 + }, + { + "word": "Anschlusstreffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consolation goal;equalizer (in sports)", + "romanization": "Anschlusstreffer", + "example_sentence_native": "Die Mannschaft erzielte einen Anschlusstreffer.", + "example_sentence_english": "The team scored a consolation goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22173 + }, + { + "word": "Arbeitsaufwand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workload;effort", + "romanization": "Arbeitsaufwand", + "example_sentence_native": "Der Arbeitsaufwand für dieses Projekt ist hoch.", + "example_sentence_english": "The workload for this project is high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22175 + }, + { + "word": "Arbeitslager", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labor camp", + "romanization": "Arbeitslager", + "example_sentence_native": "Viele Menschen litten in Arbeitslagern.", + "example_sentence_english": "Many people suffered in labor camps.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22176 + }, + { + "word": "Assistenzarzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resident physician;assistant doctor", + "romanization": "Assistenzarzt", + "example_sentence_native": "Der Assistenzarzt untersucht den Patienten.", + "example_sentence_english": "The resident physician examines the patient.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22177 + }, + { + "word": "ausgrenzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exclude;to marginalize", + "romanization": "ausgrenzen", + "example_sentence_native": "Man sollte niemanden ausgrenzen.", + "example_sentence_english": "One should not exclude anyone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "grenzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22178 + }, + { + "word": "Ausrottung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eradication;extermination", + "romanization": "Ausrottung", + "example_sentence_native": "Die Ausrottung dieser Art muss verhindert werden.", + "example_sentence_english": "The eradication of this species must be prevented.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22179 + }, + { + "word": "Auswuchs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outgrowth", + "romanization": "Auswuchs", + "example_sentence_native": "Der Auswuchs am Baumstamm war ungewöhnlich groß.", + "example_sentence_english": "The outgrowth on the tree trunk was unusually large.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22180 + }, + { + "word": "Backhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bakehouse", + "romanization": "Backhaus", + "example_sentence_native": "Im alten Backhaus wurde früher Brot gebacken.", + "example_sentence_english": "Bread used to be baked in the old bakehouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22183 + }, + { + "word": "Badesee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming lake", + "romanization": "Badesee", + "example_sentence_native": "Wir fahren im Sommer oft zum Badesee.", + "example_sentence_english": "We often go to the swimming lake in summer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22184 + }, + { + "word": "ballern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shoot", + "romanization": "ballern", + "example_sentence_native": "Die Kinder ballerten mit Wasserpistolen.", + "example_sentence_english": "The children shot with water pistols.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22185 + }, + { + "word": "Barrel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barrel", + "romanization": "Barrel", + "example_sentence_native": "Der Ölpreis pro Barrel ist gestiegen.", + "example_sentence_english": "The oil price per barrel has increased.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22186 + }, + { + "word": "Beet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flowerbed", + "romanization": "Beet", + "example_sentence_native": "Im Garten haben wir ein schönes Blumenbeet.", + "example_sentence_english": "We have a beautiful flowerbed in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22188 + }, + { + "word": "Behebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rectification", + "romanization": "Behebung", + "example_sentence_native": "Die Behebung des Fehlers dauerte lange.", + "example_sentence_english": "The rectification of the error took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22189 + }, + { + "word": "behördlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "official", + "romanization": "behördlich", + "example_sentence_native": "Wir warten auf die behördliche Genehmigung.", + "example_sentence_english": "We are waiting for the official approval.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22190 + }, + { + "word": "belanglos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trivial", + "romanization": "belanglos", + "example_sentence_native": "Seine Bemerkung war völlig belanglos.", + "example_sentence_english": "His remark was completely trivial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22191 + }, + { + "word": "belächeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scoff at", + "romanization": "belächeln", + "example_sentence_native": "Er wurde für seine Ideen oft belächelt.", + "example_sentence_english": "He was often scoffed at for his ideas.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22193 + }, + { + "word": "Berufstätigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employment", + "romanization": "Berufstätigkeit", + "example_sentence_native": "Ihre Berufstätigkeit begann nach dem Studium.", + "example_sentence_english": "Her employment began after her studies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22194 + }, + { + "word": "Betriebsleiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operations manager", + "romanization": "Betriebsleiter", + "example_sentence_native": "Der Betriebsleiter ist für die Produktion verantwortlich.", + "example_sentence_english": "The operations manager is responsible for production.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22195 + }, + { + "word": "betriebswirtschaftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business-related", + "romanization": "betriebswirtschaftlich", + "example_sentence_native": "Er hat betriebswirtschaftliche Kenntnisse.", + "example_sentence_english": "He has business-related knowledge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22196 + }, + { + "word": "Bevormundung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paternalism", + "romanization": "Bevormundung", + "example_sentence_native": "Er lehnte jede Bevormundung ab.", + "example_sentence_english": "He rejected any paternalism.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22197 + }, + { + "word": "biographisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biographical", + "romanization": "biographisch", + "example_sentence_native": "Das Buch enthält viele biographische Details.", + "example_sentence_english": "The book contains many biographical details.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22199 + }, + { + "word": "Blutgefäss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blood vessel", + "romanization": "Blutgefäss", + "example_sentence_native": "Die Arterien sind wichtige Blutgefässe.", + "example_sentence_english": "Arteries are important blood vessels.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22200 + }, + { + "word": "Bläser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wind player", + "romanization": "Bläser", + "example_sentence_native": "Der Bläser spielte ein Solo auf seiner Trompete.", + "example_sentence_english": "The wind player played a solo on his trumpet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22201 + }, + { + "word": "bodenständig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "down-to-earth", + "romanization": "bodenständig", + "example_sentence_native": "Sie ist eine sehr bodenständige Person.", + "example_sentence_english": "She is a very down-to-earth person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22203 + }, + { + "word": "Boost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boost", + "romanization": "Boost", + "example_sentence_native": "Das neue Projekt gab der Wirtschaft einen Boost.", + "example_sentence_english": "The new project gave the economy a boost.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22205 + }, + { + "word": "Borste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bristle", + "romanization": "Borste", + "example_sentence_native": "Die Bürste hat harte Borsten.", + "example_sentence_english": "The brush has hard bristles.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22206 + }, + { + "word": "Boutique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boutique", + "romanization": "Boutique", + "example_sentence_native": "Sie kaufte ein Kleid in einer kleinen Boutique.", + "example_sentence_english": "She bought a dress in a small boutique.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22207 + }, + { + "word": "Brautpaar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bridal couple", + "romanization": "Brautpaar", + "example_sentence_native": "Das Brautpaar tanzte den ersten Tanz.", + "example_sentence_english": "The bridal couple danced the first dance.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22208 + }, + { + "word": "brisant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitive", + "romanization": "brisant", + "example_sentence_native": "Das Thema ist sehr brisant.", + "example_sentence_english": "The topic is very sensitive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22209 + }, + { + "word": "buddhistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhist", + "romanization": "buddhistisch", + "example_sentence_native": "Er praktiziert buddhistische Meditation.", + "example_sentence_english": "He practices Buddhist meditation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22213 + }, + { + "word": "Bundesanwaltschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Public Prosecutor's Office", + "romanization": "Bundesanwaltschaft", + "example_sentence_native": "Die Bundesanwaltschaft ermittelt in dem Fall.", + "example_sentence_english": "The Federal Public Prosecutor's Office is investigating the case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22214 + }, + { + "word": "Buslinie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bus route", + "romanization": "Buslinie", + "example_sentence_native": "Welche Buslinie fährt zum Bahnhof?", + "example_sentence_english": "Which bus route goes to the train station?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22215 + }, + { + "word": "bündig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flush", + "romanization": "bündig", + "example_sentence_native": "Die Bretter müssen bündig anliegen.", + "example_sentence_english": "The boards must lie flush.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22219 + }, + { + "word": "Bürde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burden", + "romanization": "Bürde", + "example_sentence_native": "Die Bürde der Verantwortung war schwer.", + "example_sentence_english": "The burden of responsibility was heavy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22220 + }, + { + "word": "Chanson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chanson", + "romanization": "Chanson", + "example_sentence_native": "Sie sang ein französisches Chanson.", + "example_sentence_english": "She sang a French chanson.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22223 + }, + { + "word": "Chaot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaotic person", + "romanization": "Chaot", + "example_sentence_native": "Er ist ein ziemlicher Chaot.", + "example_sentence_english": "He is quite a chaotic person.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22224 + }, + { + "word": "Chapter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chapter", + "romanization": "Chapter", + "example_sentence_native": "Das erste Chapter des Buches war spannend.", + "example_sentence_english": "The first chapter of the book was exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22225 + }, + { + "word": "Coupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coupe", + "romanization": "Coupe", + "example_sentence_native": "Er fuhr ein sportliches Coupe.", + "example_sentence_english": "He drove a sporty coupe.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22230 + }, + { + "word": "Deg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dagger", + "romanization": "Deg", + "example_sentence_native": "Er zog seinen scharfen Deg.", + "example_sentence_english": "He drew his sharp dagger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22232 + }, + { + "word": "Demografie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demography", + "romanization": "Demografie", + "example_sentence_native": "Die Demografie der Region ändert sich.", + "example_sentence_english": "The demography of the region is changing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22234 + }, + { + "word": "denkmalgeschützt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "listed (building)", + "romanization": "denkmalgeschützt", + "example_sentence_native": "Das Haus ist denkmalgeschützt.", + "example_sentence_english": "The house is a listed building.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22235 + }, + { + "word": "Description", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "description", + "romanization": "Description", + "example_sentence_native": "Bitte lesen Sie die Description sorgfältig.", + "example_sentence_english": "Please read the description carefully.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22236 + }, + { + "word": "digitalisieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to digitize", + "romanization": "digitalisieren", + "example_sentence_native": "Wir müssen die alten Dokumente digitalisieren.", + "example_sentence_english": "We need to digitize the old documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22238 + }, + { + "word": "Diktat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictation", + "romanization": "Diktat", + "example_sentence_native": "Das Diktat des Lehrers war schwer.", + "example_sentence_english": "The teacher's dictation was difficult.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22239 + }, + { + "word": "Dip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dip", + "romanization": "Dip", + "example_sentence_native": "Der Dip passt gut zu den Chips.", + "example_sentence_english": "The dip goes well with the chips.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22240 + }, + { + "word": "Diskus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discus", + "romanization": "Diskus", + "example_sentence_native": "Der Athlet warf den Diskus weit.", + "example_sentence_english": "The athlete threw the discus far.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22241 + }, + { + "word": "Dutt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bun (hair)", + "romanization": "Dutt", + "example_sentence_native": "Sie trug ihr Haar in einem Dutt.", + "example_sentence_english": "She wore her hair in a bun.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22247 + }, + { + "word": "einwerfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw in;to insert", + "romanization": "einwerfen", + "example_sentence_native": "Er muss noch einen Euro einwerfen.", + "example_sentence_english": "He still has to insert one euro.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "werfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22251 + }, + { + "word": "einleuchtend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plausible;clear;obvious", + "romanization": "einleuchtend", + "example_sentence_native": "Seine Erklärung war sehr einleuchtend.", + "example_sentence_english": "His explanation was very plausible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22252 + }, + { + "word": "Einstimmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;attunement;mood-setting", + "romanization": "Einstimmung", + "example_sentence_native": "Zur Einstimmung auf das Fest hörten wir Musik.", + "example_sentence_english": "To get in the mood for the party, we listened to music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22253 + }, + { + "word": "Einzelgänger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loner;individualist", + "romanization": "Einzelgänger", + "example_sentence_native": "Er war schon immer ein Einzelgänger.", + "example_sentence_english": "He has always been a loner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22255 + }, + { + "word": "Eistee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "iced tea", + "romanization": "Eistee", + "example_sentence_native": "Im Sommer trinke ich gerne Eistee.", + "example_sentence_english": "In summer, I like to drink iced tea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22256 + }, + { + "word": "Elch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moose;elk", + "romanization": "Elch", + "example_sentence_native": "Ein Elch ist ein großes Tier.", + "example_sentence_english": "A moose is a large animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22257 + }, + { + "word": "Elektrik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electrics;electrical system", + "romanization": "Elektrik", + "example_sentence_native": "Die Elektrik im alten Haus muss erneuert werden.", + "example_sentence_english": "The electrics in the old house need to be renewed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22258 + }, + { + "word": "Emigrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emigrant", + "romanization": "Emigrant", + "example_sentence_native": "Viele Emigranten suchen ein besseres Leben.", + "example_sentence_english": "Many emigrants are looking for a better life.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22259 + }, + { + "word": "Empfindung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensation;feeling", + "romanization": "Empfindung", + "example_sentence_native": "Eine seltsame Empfindung durchfuhr mich.", + "example_sentence_english": "A strange sensation ran through me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22260 + }, + { + "word": "Energiequelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy source", + "romanization": "Energiequelle", + "example_sentence_native": "Die Sonne ist eine wichtige Energiequelle.", + "example_sentence_english": "The sun is an important energy source.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22261 + }, + { + "word": "Engpass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bottleneck;narrow pass", + "romanization": "Engpass", + "example_sentence_native": "Wir müssen diesen Engpass überwinden.", + "example_sentence_english": "We must overcome this bottleneck.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22262 + }, + { + "word": "entgegengesetzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposite;opposed", + "romanization": "entgegengesetzt", + "example_sentence_native": "Sie haben entgegengesetzte Meinungen.", + "example_sentence_english": "They have opposite opinions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22264 + }, + { + "word": "enthaupten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to behead", + "romanization": "enthaupten", + "example_sentence_native": "Im Mittelalter konnte man für Verbrechen enthauptet werden.", + "example_sentence_english": "In the Middle Ages, one could be beheaded for crimes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22265 + }, + { + "word": "Erbauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "builder;constructor", + "romanization": "Erbauer", + "example_sentence_native": "Der Erbauer des Hauses war ein bekannter Architekt.", + "example_sentence_english": "The builder of the house was a famous architect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22266 + }, + { + "word": "ergebend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yielding;resulting", + "romanization": "ergebend", + "example_sentence_native": "Die ergebende Summe war überraschend hoch.", + "example_sentence_english": "The resulting sum was surprisingly high.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22267 + }, + { + "word": "Erörterung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discussion;debate", + "romanization": "Erörterung", + "example_sentence_native": "Die Erörterung des Themas dauerte Stunden.", + "example_sentence_english": "The discussion of the topic lasted hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22268 + }, + { + "word": "Exekution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution", + "romanization": "Exekution", + "example_sentence_native": "Die Exekution des Plans verlief reibungslos.", + "example_sentence_english": "The execution of the plan went smoothly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22270 + }, + { + "word": "Extremität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremity;limb", + "romanization": "Extremität", + "example_sentence_native": "Die Verletzung betraf eine obere Extremität.", + "example_sentence_english": "The injury affected an upper extremity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22272 + }, + { + "word": "Federführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leadership;responsibility", + "romanization": "Federführung", + "example_sentence_native": "Die Federführung für das Projekt liegt bei ihm.", + "example_sentence_english": "The leadership for the project lies with him.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22273 + }, + { + "word": "Feindbild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enemy image;bogeyman", + "romanization": "Feindbild", + "example_sentence_native": "Das Feindbild wurde in der Propaganda aufgebaut.", + "example_sentence_english": "The enemy image was built up in the propaganda.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22274 + }, + { + "word": "Finanzmarkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial market", + "romanization": "Finanzmarkt", + "example_sentence_native": "Der Finanzmarkt ist sehr volatil.", + "example_sentence_english": "The financial market is very volatile.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22277 + }, + { + "word": "flink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nimble;quick", + "romanization": "flink", + "example_sentence_native": "Das Eichhörnchen war sehr flink.", + "example_sentence_english": "The squirrel was very nimble.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22278 + }, + { + "word": "Flüchtlingsunterkunft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee accommodation", + "romanization": "Flüchtlingsunterkunft", + "example_sentence_native": "Die neue Flüchtlingsunterkunft wurde eröffnet.", + "example_sentence_english": "The new refugee accommodation was opened.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22279 + }, + { + "word": "fortschreitend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive;advancing", + "romanization": "fortschreitend", + "example_sentence_native": "Die fortschreitende Entwicklung der Technologie ist beeindruckend.", + "example_sentence_english": "The progressive development of technology is impressive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22280 + }, + { + "word": "Frauenarzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gynecologist", + "romanization": "Frauenarzt", + "example_sentence_native": "Sie hat einen Termin beim Frauenarzt vereinbart.", + "example_sentence_english": "She made an appointment with the gynecologist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22281 + }, + { + "word": "Fundamentalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamentalist", + "romanization": "Fundamentalist", + "example_sentence_native": "Er wurde als Fundamentalist bezeichnet.", + "example_sentence_english": "He was referred to as a fundamentalist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22282 + }, + { + "word": "Fährte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "track;trail (animal)", + "romanization": "Fährte", + "example_sentence_native": "Der Jäger folgte der Fährte des Hirsches.", + "example_sentence_english": "The hunter followed the deer's track.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22283 + }, + { + "word": "Föhn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairdryer;Foehn wind", + "romanization": "Föhn", + "example_sentence_native": "Ich brauche meinen Föhn, um meine Haare zu trocknen.", + "example_sentence_english": "I need my hairdryer to dry my hair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22284 + }, + { + "word": "Geburtstagsparty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "birthday party", + "romanization": "Geburtstagsparty", + "example_sentence_native": "Wir feiern seine Geburtstagsparty am Samstag.", + "example_sentence_english": "We are celebrating his birthday party on Saturday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22285 + }, + { + "word": "gedeckt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered;set (table);muted (colors)", + "romanization": "gedeckt", + "example_sentence_native": "Der Tisch ist bereits gedeckt.", + "example_sentence_english": "The table is already set.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22286 + }, + { + "word": "Gemeindeordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "municipal code;local government regulations", + "romanization": "Gemeindeordnung", + "example_sentence_native": "Die neue Gemeindeordnung tritt nächste Woche in Kraft.", + "example_sentence_english": "The new municipal code comes into effect next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22287 + }, + { + "word": "Gesamtsumme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total sum;grand total", + "romanization": "Gesamtsumme", + "example_sentence_native": "Bitte überprüfen Sie die Gesamtsumme auf der Rechnung.", + "example_sentence_english": "Please check the grand total on the invoice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22288 + }, + { + "word": "gewinnbringend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profitable;lucrative", + "romanization": "gewinnbringend", + "example_sentence_native": "Das war eine sehr gewinnbringende Investition.", + "example_sentence_english": "That was a very profitable investment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22289 + }, + { + "word": "gezeichnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drawn;signed;marked (by hardship)", + "romanization": "gezeichnet", + "example_sentence_native": "Er sah gezeichnet aus nach der langen Krankheit.", + "example_sentence_english": "He looked marked after the long illness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22290 + }, + { + "word": "Gluten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gluten", + "romanization": "Gluten", + "example_sentence_native": "Viele Menschen meiden Gluten in ihrer Ernährung.", + "example_sentence_english": "Many people avoid gluten in their diet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22294 + }, + { + "word": "Glücksfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stroke of luck;lucky break", + "romanization": "Glücksfall", + "example_sentence_native": "Es war ein Glücksfall, dass wir uns getroffen haben.", + "example_sentence_english": "It was a stroke of luck that we met.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22295 + }, + { + "word": "gothaer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of Gotha;Gothan", + "romanization": "gothaer", + "example_sentence_native": "Die gothaer Spezialität ist bekannt.", + "example_sentence_english": "The Gothan specialty is well-known.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[as-is]", + "word_frequency": 22297 + }, + { + "word": "Gral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Grail", + "romanization": "Gral", + "example_sentence_native": "Die Suche nach dem Heiligen Gral ist eine Legende.", + "example_sentence_english": "The search for the Holy Grail is a legend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22298 + }, + { + "word": "Groteske", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grotesque;farce", + "romanization": "Groteske", + "example_sentence_native": "Die ganze Situation war eine einzige Groteske.", + "example_sentence_english": "The whole situation was a complete farce.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22301 + }, + { + "word": "Haarausfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hair loss", + "romanization": "Haarausfall", + "example_sentence_native": "Haarausfall kann viele Ursachen haben.", + "example_sentence_english": "Hair loss can have many causes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22302 + }, + { + "word": "Happen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite;morsel", + "romanization": "Happen", + "example_sentence_native": "Er nahm einen kleinen Happen von seinem Brot.", + "example_sentence_english": "He took a small bite of his bread.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "[as-is]", + "word_frequency": 22305 + }, + { + "word": "Happen", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite;morsel", + "romanization": "Happen", + "example_sentence_native": "Er nahm einen kleinen Happen von seinem Brot.", + "example_sentence_english": "He took a small bite of his bread.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 22305 + }, + { + "word": "Hauptverhandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "main hearing;trial", + "romanization": "Hauptverhandlung", + "example_sentence_native": "Die Hauptverhandlung beginnt nächste Woche.", + "example_sentence_english": "The main hearing begins next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22307 + }, + { + "word": "Hausherr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landlord;master of the house", + "romanization": "Hausherr", + "example_sentence_native": "Der Hausherr begrüßte seine Gäste.", + "example_sentence_english": "The master of the house greeted his guests.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22308 + }, + { + "word": "Hauswand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "house wall;exterior wall", + "romanization": "Hauswand", + "example_sentence_native": "An der Hauswand wächst Efeu.", + "example_sentence_english": "Ivy grows on the house wall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22309 + }, + { + "word": "Hehl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secret;concealment", + "romanization": "Hehl", + "example_sentence_native": "Er machte keinen Hehl aus seiner Meinung.", + "example_sentence_english": "He made no secret of his opinion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22310 + }, + { + "word": "Heizkosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heating costs", + "romanization": "Heizkosten", + "example_sentence_native": "Die Heizkosten sind diesen Winter sehr hoch.", + "example_sentence_english": "The heating costs are very high this winter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22312 + }, + { + "word": "hiernach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hereafter;subsequently", + "romanization": "hiernach", + "example_sentence_native": "Hiernach werden wir die Ergebnisse besprechen.", + "example_sentence_english": "Hereafter, we will discuss the results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[as-is]", + "word_frequency": 22314 + }, + { + "word": "hinderlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstructive;hindering", + "romanization": "hinderlich", + "example_sentence_native": "Sein Verhalten war sehr hinderlich für den Fortschritt.", + "example_sentence_english": "His behavior was very obstructive to progress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22315 + }, + { + "word": "holsteinisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Holsteinian;from Holstein", + "romanization": "holsteinisch", + "example_sentence_native": "Die holsteinische Küche ist bekannt für ihre Fischgerichte.", + "example_sentence_english": "Holsteinian cuisine is known for its fish dishes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22317 + }, + { + "word": "horten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hoard;to stockpile", + "romanization": "horten", + "example_sentence_native": "Viele Menschen begannen, Lebensmittel zu horten.", + "example_sentence_english": "Many people started to hoard food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22319 + }, + { + "word": "innerorts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "within town;city limits", + "romanization": "innerorts", + "example_sentence_native": "Innerorts gilt eine Geschwindigkeitsbegrenzung von 50 km/h.", + "example_sentence_english": "Within town limits, there is a speed limit of 50 km/h.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[as-is]", + "word_frequency": 22323 + }, + { + "word": "inspirierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspiring", + "romanization": "inspirierend", + "example_sentence_native": "Das war eine sehr inspirierende Rede.", + "example_sentence_english": "That was a very inspiring speech.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22324 + }, + { + "word": "Internationalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internationalization", + "romanization": "Internationalisierung", + "example_sentence_native": "Die Internationalisierung des Unternehmens schreitet voran.", + "example_sentence_english": "The internationalization of the company is progressing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22325 + }, + { + "word": "Intimität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimacy", + "romanization": "Intimität", + "example_sentence_native": "Vertrauen ist wichtig für Intimität in einer Beziehung.", + "example_sentence_english": "Trust is important for intimacy in a relationship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22326 + }, + { + "word": "Kampfhandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "act of war;combat operation", + "romanization": "Kampfhandlung", + "example_sentence_native": "Die Kampfhandlungen wurden eingestellt.", + "example_sentence_english": "The combat operations were ceased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22328 + }, + { + "word": "Kiffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stoner;pothead", + "romanization": "Kiffer", + "example_sentence_native": "Die Polizei hat einen Kiffer mit Drogen erwischt.", + "example_sentence_english": "The police caught a stoner with drugs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22331 + }, + { + "word": "Kinostart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cinema release;movie premiere", + "romanization": "Kinostart", + "example_sentence_native": "Der Kinostart des neuen Films ist nächste Woche.", + "example_sentence_english": "The cinema release of the new film is next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22332 + }, + { + "word": "Knospe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bud (of a plant)", + "romanization": "Knospe", + "example_sentence_native": "Im Frühling öffnen sich die Knospen an den Bäumen.", + "example_sentence_english": "In spring, the buds on the trees open.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22334 + }, + { + "word": "Kolbe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "piston;club;mace", + "romanization": "Kolbe", + "example_sentence_native": "Der Kolben bewegt sich im Zylinder auf und ab.", + "example_sentence_english": "The piston moves up and down in the cylinder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22335 + }, + { + "word": "Kompression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compression", + "romanization": "Kompression", + "example_sentence_native": "Die Kompression der Daten reduziert die Dateigröße.", + "example_sentence_english": "The compression of the data reduces the file size.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22336 + }, + { + "word": "konkurrierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competing;rival", + "romanization": "konkurrierend", + "example_sentence_native": "Es gibt viele konkurrierende Unternehmen auf dem Markt.", + "example_sentence_english": "There are many competing companies in the market.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22337 + }, + { + "word": "konstituierend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constituent;constitutive", + "romanization": "konstituierend", + "example_sentence_native": "Die konstituierende Sitzung des Parlaments findet nächste Woche statt.", + "example_sentence_english": "The constituent session of parliament will take place next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22338 + }, + { + "word": "konstruiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constructed;fabricated", + "romanization": "konstruiert", + "example_sentence_native": "Die Geschichte wirkte sehr konstruiert.", + "example_sentence_english": "The story seemed very fabricated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22339 + }, + { + "word": "Kontrolleur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspector", + "romanization": "Kontrolleur", + "example_sentence_native": "Der Kontrolleur prüfte die Fahrkarten.", + "example_sentence_english": "The inspector checked the tickets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22340 + }, + { + "word": "Koralle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coral", + "romanization": "Koralle", + "example_sentence_native": "Die Koralle ist ein Meerestier.", + "example_sentence_english": "Coral is a marine animal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22341 + }, + { + "word": "Kosake", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cossack", + "romanization": "Kosake", + "example_sentence_native": "Ein Kosake ritt über die Steppe.", + "example_sentence_english": "A Cossack rode across the steppe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22342 + }, + { + "word": "Kunststück", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trick;feat", + "romanization": "Kunststück", + "example_sentence_native": "Der Zauberer zeigte ein beeindruckendes Kunststück.", + "example_sentence_english": "The magician showed an impressive trick.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22346 + }, + { + "word": "Kurie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "curia", + "romanization": "Kurie", + "example_sentence_native": "Die Kurie ist die Verwaltung des Vatikans.", + "example_sentence_english": "The Curia is the administration of the Vatican.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22347 + }, + { + "word": "Laboratorium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laboratory", + "romanization": "Laboratorium", + "example_sentence_native": "Im Laboratorium werden Experimente durchgeführt.", + "example_sentence_english": "Experiments are conducted in the laboratory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22348 + }, + { + "word": "langen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reach for;to be enough", + "romanization": "langen", + "example_sentence_native": "Kannst du mir bitte das Salz langen?", + "example_sentence_english": "Can you please hand me the salt?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22350 + }, + { + "word": "lateinamerikanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latin American", + "romanization": "lateinamerikanisch", + "example_sentence_native": "Sie tanzt gerne lateinamerikanische Tänze.", + "example_sentence_english": "She likes to dance Latin American dances.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22351 + }, + { + "word": "Lebensführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifestyle;conduct of life", + "romanization": "Lebensführung", + "example_sentence_native": "Eine gesunde Lebensführung ist wichtig für das Wohlbefinden.", + "example_sentence_english": "A healthy lifestyle is important for well-being.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22352 + }, + { + "word": "Liedermacher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "singer-songwriter", + "romanization": "Liedermacher", + "example_sentence_native": "Der Liedermacher sang seine eigenen Kompositionen.", + "example_sentence_english": "The singer-songwriter sang his own compositions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22355 + }, + { + "word": "Limonade", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lemonade;soda", + "romanization": "Limonade", + "example_sentence_native": "Ich hätte gerne eine Limonade, bitte.", + "example_sentence_english": "I would like a lemonade, please.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22356 + }, + { + "word": "löhnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay;to remunerate", + "romanization": "löhnen", + "example_sentence_native": "Er musste für seine Fehler löhnen.", + "example_sentence_english": "He had to pay for his mistakes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22360 + }, + { + "word": "Mammut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mammoth", + "romanization": "Mammut", + "example_sentence_native": "Das Mammut ist ein ausgestorbenes Tier.", + "example_sentence_english": "The mammoth is an extinct animal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22362 + }, + { + "word": "Manual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manual;handbook", + "romanization": "Manual", + "example_sentence_native": "Bitte lesen Sie das Manual sorgfältig durch.", + "example_sentence_english": "Please read the manual carefully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[as-is]", + "word_frequency": 22363 + }, + { + "word": "maskulin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masculine", + "romanization": "maskulin", + "example_sentence_native": "Er hat eine sehr maskuline Ausstrahlung.", + "example_sentence_english": "He has a very masculine aura.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22364 + }, + { + "word": "Massenmörder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mass murderer", + "romanization": "Massenmörder", + "example_sentence_native": "Der Massenmörder wurde gefasst.", + "example_sentence_english": "The mass murderer was caught.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22365 + }, + { + "word": "Meerjungfrau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mermaid", + "romanization": "Meerjungfrau", + "example_sentence_native": "Die kleine Meerjungfrau ist ein bekanntes Märchen.", + "example_sentence_english": "The Little Mermaid is a well-known fairy tale.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22367 + }, + { + "word": "mehrjährig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perennial;multi-year", + "romanization": "mehrjährig", + "example_sentence_native": "Diese Pflanze ist mehrjährig.", + "example_sentence_english": "This plant is perennial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22368 + }, + { + "word": "Momentaufnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "snapshot;momentary recording", + "romanization": "Momentaufnahme", + "example_sentence_native": "Das Foto ist nur eine Momentaufnahme.", + "example_sentence_english": "The photo is just a snapshot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22371 + }, + { + "word": "Nachahmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imitation;copy", + "romanization": "Nachahmung", + "example_sentence_native": "Das ist nur eine billige Nachahmung.", + "example_sentence_english": "That's just a cheap imitation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22373 + }, + { + "word": "Nachwirkung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "after-effect;lingering effect", + "romanization": "Nachwirkung", + "example_sentence_native": "Die Nachwirkungen des Sturms waren noch lange spürbar.", + "example_sentence_english": "The after-effects of the storm were still noticeable for a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22374 + }, + { + "word": "Nationalelf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national team (specifically football;soccer)", + "romanization": "Nationalelf", + "example_sentence_native": "Die Nationalelf hat das Spiel gewonnen.", + "example_sentence_english": "The national team won the game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22375 + }, + { + "word": "Natürlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalness;authenticity", + "romanization": "Natürlichkeit", + "example_sentence_native": "Ihre Natürlichkeit ist sehr ansprechend.", + "example_sentence_english": "Her naturalness is very appealing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22376 + }, + { + "word": "Netzausbau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "network expansion", + "romanization": "Netzausbau", + "example_sentence_native": "Der Netzausbau ist ein wichtiges Thema.", + "example_sentence_english": "Network expansion is an important topic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22378 + }, + { + "word": "Neubeginn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new beginning", + "romanization": "Neubeginn", + "example_sentence_native": "Jeder Tag ist ein Neubeginn.", + "example_sentence_english": "Every day is a new beginning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22379 + }, + { + "word": "Ortsverband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local association;chapter", + "romanization": "Ortsverband", + "example_sentence_native": "Der Ortsverband trifft sich nächste Woche.", + "example_sentence_english": "The local association meets next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22390 + }, + { + "word": "partout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absolutely;by all means;definitely not", + "romanization": "partout", + "example_sentence_native": "Er wollte partout nicht mitkommen.", + "example_sentence_english": "He absolutely did not want to come along.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[as-is]", + "word_frequency": 22391 + }, + { + "word": "Penthouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penthouse", + "romanization": "Penthouse", + "example_sentence_native": "Sie wohnt in einem Penthouse mit Blick über die Stadt.", + "example_sentence_english": "She lives in a penthouse with a view over the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22392 + }, + { + "word": "Petroleum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petroleum;kerosene", + "romanization": "Petroleum", + "example_sentence_native": "Petroleum wird oft als Brennstoff verwendet.", + "example_sentence_english": "Petroleum is often used as fuel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22394 + }, + { + "word": "Pluspunkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantage;plus point", + "romanization": "Pluspunkt", + "example_sentence_native": "Seine Erfahrung ist ein großer Pluspunkt.", + "example_sentence_english": "His experience is a big advantage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22397 + }, + { + "word": "Polizeiarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police work", + "romanization": "Polizeiarbeit", + "example_sentence_native": "Die Polizeiarbeit ist oft sehr anspruchsvoll.", + "example_sentence_english": "Police work is often very demanding.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22398 + }, + { + "word": "Polizeischutz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police protection", + "romanization": "Polizeischutz", + "example_sentence_native": "Die Demonstration stand unter Polizeischutz.", + "example_sentence_english": "The demonstration was under police protection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22399 + }, + { + "word": "Postamt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "post office", + "romanization": "Postamt", + "example_sentence_native": "Ich gehe zum Postamt, um einen Brief zu verschicken.", + "example_sentence_english": "I am going to the post office to send a letter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22402 + }, + { + "word": "Prisma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prism", + "romanization": "Prisma", + "example_sentence_native": "Ein Prisma kann Licht in seine Spektralfarben zerlegen.", + "example_sentence_english": "A prism can split light into its spectral colors.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22404 + }, + { + "word": "reaktionär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactionary", + "romanization": "reaktionär", + "example_sentence_native": "Seine Ansichten sind sehr reaktionär.", + "example_sentence_english": "His views are very reactionary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22409 + }, + { + "word": "Regatta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regatta", + "romanization": "Regatta", + "example_sentence_native": "Die jährliche Segelregatta zieht viele Zuschauer an.", + "example_sentence_english": "The annual sailing regatta attracts many spectators.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22410 + }, + { + "word": "Regierungskoalition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governing coalition", + "romanization": "Regierungskoalition", + "example_sentence_native": "Die Regierungskoalition hat sich auf neue Gesetze geeinigt.", + "example_sentence_english": "The governing coalition has agreed on new laws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22411 + }, + { + "word": "Reisekosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "travel expenses", + "romanization": "Reisekosten", + "example_sentence_native": "Die Reisekosten werden vom Unternehmen erstattet.", + "example_sentence_english": "The travel expenses will be reimbursed by the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22412 + }, + { + "word": "Rekrutierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruitment", + "romanization": "Rekrutierung", + "example_sentence_native": "Die Rekrutierung neuer Mitarbeiter ist eine Herausforderung.", + "example_sentence_english": "The recruitment of new employees is a challenge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22413 + }, + { + "word": "resistent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistant", + "romanization": "resistent", + "example_sentence_native": "Viele Bakterien sind resistent gegen Antibiotika.", + "example_sentence_english": "Many bacteria are resistant to antibiotics.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22416 + }, + { + "word": "ritzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scratch;to carve", + "romanization": "ritzen", + "example_sentence_native": "Er hat seinen Namen in den Baum geritzt.", + "example_sentence_english": "He carved his name into the tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22417 + }, + { + "word": "Rosenmontag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Rose Monday (Carnival Monday)", + "romanization": "Rosenmontag", + "example_sentence_native": "Am Rosenmontag gibt es große Umzüge.", + "example_sentence_english": "On Rose Monday, there are large parades.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22418 + }, + { + "word": "Rückenwind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tailwind", + "romanization": "Rückenwind", + "example_sentence_native": "Mit Rückenwind ist das Fahrradfahren viel einfacher.", + "example_sentence_english": "Cycling is much easier with a tailwind.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22419 + }, + { + "word": "Rückspiegel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rearview mirror", + "romanization": "Rückspiegel", + "example_sentence_native": "Ich habe in den Rückspiegel geschaut.", + "example_sentence_english": "I looked in the rearview mirror.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22420 + }, + { + "word": "saarbrücker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Saarbrücken", + "romanization": "saarbrücker", + "example_sentence_native": "Die saarbrücker Innenstadt ist sehr schön.", + "example_sentence_english": "The Saarbrücken city center is very beautiful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[as-is]", + "word_frequency": 22421 + }, + { + "word": "Sager", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "saying;statement", + "romanization": "Sager", + "example_sentence_native": "Sein letzter Sager sorgte für Aufsehen.", + "example_sentence_english": "His last statement caused a stir.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22422 + }, + { + "word": "Schadenfreude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "schadenfreude;malicious joy", + "romanization": "Schadenfreude", + "example_sentence_native": "Er empfand eine gewisse Schadenfreude über ihr Missgeschick.", + "example_sentence_english": "He felt a certain schadenfreude about her misfortune.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22424 + }, + { + "word": "Scheitel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parting (hair);vertex", + "romanization": "Scheitel", + "example_sentence_native": "Sie zog einen geraden Scheitel in ihr Haar.", + "example_sentence_english": "She drew a straight parting in her hair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22425 + }, + { + "word": "Schlafsack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sleeping bag", + "romanization": "Schlafsack", + "example_sentence_native": "Ich packte meinen Schlafsack für die Wanderung ein.", + "example_sentence_english": "I packed my sleeping bag for the hike.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22426 + }, + { + "word": "Schlusspfiff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final whistle", + "romanization": "Schlusspfiff", + "example_sentence_native": "Nach dem Schlusspfiff feierten die Fans.", + "example_sentence_english": "After the final whistle, the fans celebrated.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22427 + }, + { + "word": "Schuldgefühl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling of guilt", + "romanization": "Schuldgefühl", + "example_sentence_native": "Er hatte ein starkes Schuldgefühl nach seinem Fehler.", + "example_sentence_english": "He had a strong feeling of guilt after his mistake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22428 + }, + { + "word": "Schulpflicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compulsory schooling", + "romanization": "Schulpflicht", + "example_sentence_native": "In Deutschland gibt es eine allgemeine Schulpflicht.", + "example_sentence_english": "In Germany, there is compulsory schooling.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22429 + }, + { + "word": "Schulweg", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "way to school", + "romanization": "Schulweg", + "example_sentence_native": "Der Schulweg ist für viele Kinder lang.", + "example_sentence_english": "The way to school is long for many children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22430 + }, + { + "word": "Schwarzarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeclared work;illegal employment", + "romanization": "Schwarzarbeit", + "example_sentence_native": "Schwarzarbeit ist in Deutschland illegal.", + "example_sentence_english": "Undeclared work is illegal in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22431 + }, + { + "word": "schwerpunktmässig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primarily;mainly", + "romanization": "schwerpunktmässig", + "example_sentence_native": "Die Diskussion konzentrierte sich schwerpunktmässig auf die Wirtschaft.", + "example_sentence_english": "The discussion focused primarily on the economy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[as-is]", + "word_frequency": 22432 + }, + { + "word": "skandalös", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandalous", + "romanization": "skandalös", + "example_sentence_native": "Das ist eine skandalöse Situation.", + "example_sentence_english": "That is a scandalous situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22442 + }, + { + "word": "Sortierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sorting;classification", + "romanization": "Sortierung", + "example_sentence_native": "Die Sortierung der Dokumente ist wichtig.", + "example_sentence_english": "The sorting of the documents is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22446 + }, + { + "word": "Souvenir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "souvenir", + "romanization": "Souvenir", + "example_sentence_native": "Ich habe ein schönes Souvenir aus Paris mitgebracht.", + "example_sentence_english": "I brought a nice souvenir from Paris.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22447 + }, + { + "word": "Speichel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "saliva", + "romanization": "Speichel", + "example_sentence_native": "Der Speichel hilft bei der Verdauung.", + "example_sentence_english": "Saliva helps with digestion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22448 + }, + { + "word": "Sprengel", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "district;precinct", + "romanization": "Sprengel", + "example_sentence_native": "Der Bischof ist für diesen Sprengel zuständig.", + "example_sentence_english": "The bishop is responsible for this district.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22449 + }, + { + "word": "Staatsvertrag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state treaty;interstate treaty", + "romanization": "Staatsvertrag", + "example_sentence_native": "Der Staatsvertrag wurde von beiden Ländern unterzeichnet.", + "example_sentence_english": "The state treaty was signed by both countries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22450 + }, + { + "word": "statten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equip;to furnish (often in 'stattfinden' - to take place)", + "romanization": "statten", + "example_sentence_native": "Die Feier wird im großen Saal stattfinden.", + "example_sentence_english": "The celebration will take place in the large hall.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "statt", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22451 + }, + { + "word": "Stengel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stalk;stem", + "romanization": "Stengel", + "example_sentence_native": "Der Stengel der Blume war sehr lang.", + "example_sentence_english": "The stem of the flower was very long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22452 + }, + { + "word": "Stilmittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stylistic device;figure of speech", + "romanization": "Stilmittel", + "example_sentence_native": "Ironie ist ein häufig verwendetes Stilmittel.", + "example_sentence_english": "Irony is a frequently used stylistic device.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22453 + }, + { + "word": "Strapaze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strain;exertion;hardship", + "romanization": "Strapaze", + "example_sentence_native": "Die lange Wanderung war eine große Strapaze.", + "example_sentence_english": "The long hike was a great exertion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22454 + }, + { + "word": "Strompreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electricity price", + "romanization": "Strompreis", + "example_sentence_native": "Der Strompreis ist in diesem Jahr gestiegen.", + "example_sentence_english": "The electricity price has increased this year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22455 + }, + { + "word": "Stundenlohn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hourly wage", + "romanization": "Stundenlohn", + "example_sentence_native": "Sein Stundenlohn ist sehr gut.", + "example_sentence_english": "His hourly wage is very good.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22456 + }, + { + "word": "Sturmgewehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assault rifle", + "romanization": "Sturmgewehr", + "example_sentence_native": "Das Sturmgewehr ist eine automatische Waffe.", + "example_sentence_english": "The assault rifle is an automatic weapon.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22457 + }, + { + "word": "Städtebau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urban planning;city planning", + "romanization": "Städtebau", + "example_sentence_native": "Der Städtebau ist wichtig für die Entwicklung einer Stadt.", + "example_sentence_english": "Urban planning is important for the development of a city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22458 + }, + { + "word": "städtebaulich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urban planning-related;town planning-related", + "romanization": "städtebaulich", + "example_sentence_native": "Das Projekt hat große städtebauliche Auswirkungen.", + "example_sentence_english": "The project has major urban planning implications.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22459 + }, + { + "word": "Symbolbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolic image", + "romanization": "Symbolbild", + "example_sentence_native": "Das ist nur ein Symbolbild.", + "example_sentence_english": "This is just a symbolic image.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22461 + }, + { + "word": "säkular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secular", + "romanization": "säkular", + "example_sentence_native": "Er hat eine säkulare Weltanschauung.", + "example_sentence_english": "He has a secular worldview.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22462 + }, + { + "word": "südkoreanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South Korean", + "romanization": "südkoreanisch", + "example_sentence_native": "Sie mag südkoreanische Musik.", + "example_sentence_english": "She likes South Korean music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22463 + }, + { + "word": "Treuhand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trust", + "romanization": "Treuhand", + "example_sentence_native": "Die Treuhand war für die Privatisierung der DDR-Betriebe zuständig.", + "example_sentence_english": "The Treuhand was responsible for the privatization of GDR companies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22468 + }, + { + "word": "unattraktiv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unattractive", + "romanization": "unattraktiv", + "example_sentence_native": "Er findet das Angebot unattraktiv.", + "example_sentence_english": "He finds the offer unattractive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22475 + }, + { + "word": "unbeantwortet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unanswered", + "romanization": "unbeantwortet", + "example_sentence_native": "Viele Fragen blieben unbeantwortet.", + "example_sentence_english": "Many questions remained unanswered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22476 + }, + { + "word": "Ungereimtheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inconsistency", + "romanization": "Ungereimtheit", + "example_sentence_native": "Es gab einige Ungereimtheiten in seiner Aussage.", + "example_sentence_english": "There were some inconsistencies in his statement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22477 + }, + { + "word": "Unterstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shelter", + "romanization": "Unterstand", + "example_sentence_native": "Sie suchten Schutz in einem Unterstand.", + "example_sentence_english": "They sought shelter in a dugout.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22478 + }, + { + "word": "unvergessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unforgotten", + "romanization": "unvergessen", + "example_sentence_native": "Seine Taten bleiben unvergessen.", + "example_sentence_english": "His deeds remain unforgotten.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22479 + }, + { + "word": "unwahr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untrue", + "romanization": "unwahr", + "example_sentence_native": "Seine Aussage war unwahr.", + "example_sentence_english": "His statement was untrue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22480 + }, + { + "word": "vergönnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to grant", + "romanization": "vergönnen", + "example_sentence_native": "Ich vergönne ihm seinen Erfolg.", + "example_sentence_english": "I grant him his success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22482 + }, + { + "word": "verhaftet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrested", + "romanization": "verhaftet", + "example_sentence_native": "Der Mann wurde verhaftet.", + "example_sentence_english": "The man was arrested.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22483 + }, + { + "word": "Verhaltensmuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behavior pattern", + "romanization": "Verhaltensmuster", + "example_sentence_native": "Er zeigte ein ungewöhnliches Verhaltensmuster.", + "example_sentence_english": "He showed an unusual behavior pattern.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22484 + }, + { + "word": "Verkleinerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction", + "romanization": "Verkleinerung", + "example_sentence_native": "Die Verkleinerung des Bildes war notwendig.", + "example_sentence_english": "The reduction of the image was necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22485 + }, + { + "word": "Verschleierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concealment", + "romanization": "Verschleierung", + "example_sentence_native": "Es gab eine Verschleierung der Tatsachen.", + "example_sentence_english": "There was a concealment of the facts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22486 + }, + { + "word": "Volksgruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethnic group", + "romanization": "Volksgruppe", + "example_sentence_native": "Jede Volksgruppe hat ihre eigene Kultur.", + "example_sentence_english": "Every ethnic group has its own culture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22489 + }, + { + "word": "Vollbeschäftigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full employment", + "romanization": "Vollbeschäftigung", + "example_sentence_native": "Das Ziel der Regierung ist Vollbeschäftigung.", + "example_sentence_english": "The government's goal is full employment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22490 + }, + { + "word": "vornehm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elegant", + "romanization": "vornehm", + "example_sentence_native": "Sie trug ein sehr vornehmes Kleid.", + "example_sentence_english": "She wore a very elegant dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22491 + }, + { + "word": "Vorraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anteroom", + "romanization": "Vorraum", + "example_sentence_native": "Bitte warten Sie im Vorraum.", + "example_sentence_english": "Please wait in the anteroom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22492 + }, + { + "word": "vortäuschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feign", + "romanization": "vortäuschen", + "example_sentence_native": "Er versuchte, Krankheit vorzutäuschen.", + "example_sentence_english": "He tried to feign illness.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "täuschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22493 + }, + { + "word": "vorzeigen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to show", + "romanization": "vorzeigen", + "example_sentence_native": "Bitte zeigen Sie Ihren Ausweis vor.", + "example_sentence_english": "Please show your ID.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "zeigen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22494 + }, + { + "word": "Weiterleitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forwarding", + "romanization": "Weiterleitung", + "example_sentence_native": "Die Weiterleitung der E-Mail war erfolgreich.", + "example_sentence_english": "The forwarding of the email was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22499 + }, + { + "word": "Wildbahn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wildlife habitat", + "romanization": "Wildbahn", + "example_sentence_native": "In dieser Wildbahn leben viele seltene Tierarten.", + "example_sentence_english": "Many rare animal species live in this wildlife habitat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22503 + }, + { + "word": "Windmühle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "windmill", + "romanization": "Windmühle", + "example_sentence_native": "Die alte Windmühle steht auf dem Hügel.", + "example_sentence_english": "The old windmill stands on the hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22505 + }, + { + "word": "Wintermonat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "winter month", + "romanization": "Wintermonat", + "example_sentence_native": "Dezember ist ein typischer Wintermonat.", + "example_sentence_english": "December is a typical winter month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22506 + }, + { + "word": "witzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to joke", + "romanization": "witzen", + "example_sentence_native": "Er fängt an zu witzen, wenn er nervös ist.", + "example_sentence_english": "He starts to joke when he is nervous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22508 + }, + { + "word": "wählerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picky", + "romanization": "wählerisch", + "example_sentence_native": "Mein Kind ist sehr wählerisch beim Essen.", + "example_sentence_english": "My child is very picky about food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22512 + }, + { + "word": "Wärter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guard", + "romanization": "Wärter", + "example_sentence_native": "Der Wärter öffnete das Tor.", + "example_sentence_english": "The guard opened the gate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22513 + }, + { + "word": "zersetzen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decompose", + "romanization": "zersetzen", + "example_sentence_native": "Bakterien können organische Stoffe zersetzen.", + "example_sentence_english": "Bacteria can decompose organic matter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22514 + }, + { + "word": "Ziellinie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finish line", + "romanization": "Ziellinie", + "example_sentence_native": "Der Läufer überquerte die Ziellinie als Erster.", + "example_sentence_english": "The runner crossed the finish line first.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22515 + }, + { + "word": "zielstrebig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determined", + "romanization": "zielstrebig", + "example_sentence_native": "Sie ist eine sehr zielstrebige Studentin.", + "example_sentence_english": "She is a very determined student.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22516 + }, + { + "word": "Zivilrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civil law", + "romanization": "Zivilrecht", + "example_sentence_native": "Er studiert Zivilrecht an der Universität.", + "example_sentence_english": "He studies civil law at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22518 + }, + { + "word": "zurückfallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall back", + "romanization": "zurückfallen", + "example_sentence_native": "Der Läufer begann, zurückzufallen.", + "example_sentence_english": "The runner started to fall back.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22519 + }, + { + "word": "Zuständigkeitsbereich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "area of responsibility", + "romanization": "Zuständigkeitsbereich", + "example_sentence_native": "Der Zuständigkeitsbereich des Gerichts ist klar definiert.", + "example_sentence_english": "The court's area of responsibility is clearly defined.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22520 + }, + { + "word": "zweckmässig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appropriate", + "romanization": "zweckmässig", + "example_sentence_native": "Es ist zweckmässig, frühzeitig zu planen.", + "example_sentence_english": "It is appropriate to plan early.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22521 + }, + { + "word": "Äther", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ether", + "romanization": "Äther", + "example_sentence_native": "Der Äther wurde früher als Anästhetikum verwendet.", + "example_sentence_english": "Ether was formerly used as an anesthetic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22522 + }, + { + "word": "Überheblichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogance", + "romanization": "Überheblichkeit", + "example_sentence_native": "Seine Überheblichkeit war unerträglich.", + "example_sentence_english": "His arrogance was unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22523 + }, + { + "word": "übernatürlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supernatural", + "romanization": "übernatürlich", + "example_sentence_native": "Sie glaubt an übernatürliche Phänomene.", + "example_sentence_english": "She believes in supernatural phenomena.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22524 + }, + { + "word": "aberkennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revoke", + "romanization": "aberkennen", + "example_sentence_native": "Dem Sportler wurde der Titel aberkannt.", + "example_sentence_english": "The athlete was stripped of his title.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "erkennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22525 + }, + { + "word": "Abnutzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wear and tear", + "romanization": "Abnutzung", + "example_sentence_native": "Die Abnutzung der Reifen war deutlich sichtbar.", + "example_sentence_english": "The wear and tear on the tires was clearly visible.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22526 + }, + { + "word": "Aktionismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "activism", + "romanization": "Aktionismus", + "example_sentence_native": "Reiner Aktionismus führt selten zu nachhaltigen Lösungen.", + "example_sentence_english": "Pure activism rarely leads to sustainable solutions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22527 + }, + { + "word": "Alltagsleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "everyday life", + "romanization": "Alltagsleben", + "example_sentence_native": "Das Alltagsleben in der Stadt ist sehr hektisch.", + "example_sentence_english": "Everyday life in the city is very hectic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22530 + }, + { + "word": "Altpapier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waste paper", + "romanization": "Altpapier", + "example_sentence_native": "Bitte werfen Sie Altpapier in den blauen Container.", + "example_sentence_english": "Please throw waste paper into the blue container.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22531 + }, + { + "word": "Alufolie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aluminum foil", + "romanization": "Alufolie", + "example_sentence_native": "Wickeln Sie das Sandwich in Alufolie ein.", + "example_sentence_english": "Wrap the sandwich in aluminum foil.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22532 + }, + { + "word": "Anführungszeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quotation marks", + "romanization": "Anführungszeichen", + "example_sentence_native": "Setzen Sie das Zitat in Anführungszeichen.", + "example_sentence_english": "Put the quote in quotation marks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22536 + }, + { + "word": "animiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animated", + "romanization": "animiert", + "example_sentence_native": "Der Film war sehr animiert und unterhaltsam.", + "example_sentence_english": "The film was very animated and entertaining.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22538 + }, + { + "word": "anmutend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "graceful", + "romanization": "anmutend", + "example_sentence_native": "Sie hatte eine sehr anmutende Erscheinung.", + "example_sentence_english": "She had a very graceful appearance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22539 + }, + { + "word": "Arbeitslosenversicherung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment insurance", + "romanization": "Arbeitslosenversicherung", + "example_sentence_native": "Die Arbeitslosenversicherung hilft Menschen ohne Job.", + "example_sentence_english": "Unemployment insurance helps people without a job.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22541 + }, + { + "word": "archivieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to archive", + "romanization": "archivieren", + "example_sentence_native": "Wir müssen diese Dokumente archivieren.", + "example_sentence_english": "We need to archive these documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22542 + }, + { + "word": "Atemnot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortness of breath", + "romanization": "Atemnot", + "example_sentence_native": "Er litt unter starker Atemnot.", + "example_sentence_english": "He suffered from severe shortness of breath.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22544 + }, + { + "word": "Aufdeckung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discovery;uncovering", + "romanization": "Aufdeckung", + "example_sentence_native": "Die Aufdeckung des Skandals schockierte die Öffentlichkeit.", + "example_sentence_english": "The uncovering of the scandal shocked the public.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22545 + }, + { + "word": "aufeinanderfolgend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consecutive;successive", + "romanization": "aufeinanderfolgend", + "example_sentence_native": "Wir hatten drei aufeinanderfolgende Regentage.", + "example_sentence_english": "We had three consecutive rainy days.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22546 + }, + { + "word": "Aufrichtigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sincerity;honesty", + "romanization": "Aufrichtigkeit", + "example_sentence_native": "Ihre Aufrichtigkeit wurde von allen geschätzt.", + "example_sentence_english": "Her sincerity was appreciated by everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22547 + }, + { + "word": "aufspielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to play up;to show off;to install (software)", + "romanization": "aufspielen", + "example_sentence_native": "Er versucht, sich vor seinen Freunden aufzuspielen.", + "example_sentence_english": "He tries to show off in front of his friends.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22548 + }, + { + "word": "Aufwärtstrend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upward trend", + "romanization": "Aufwärtstrend", + "example_sentence_native": "Der Aktienmarkt zeigt einen klaren Aufwärtstrend.", + "example_sentence_english": "The stock market shows a clear upward trend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22549 + }, + { + "word": "austauschbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interchangeable;replaceable", + "romanization": "austauschbar", + "example_sentence_native": "Diese Teile sind austauschbar.", + "example_sentence_english": "These parts are interchangeable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22550 + }, + { + "word": "Backware", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baked good;pastry", + "romanization": "Backware", + "example_sentence_native": "Ich kaufe frische Backwaren beim Bäcker.", + "example_sentence_english": "I buy fresh baked goods at the bakery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22552 + }, + { + "word": "Bademeister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lifeguard;pool attendant", + "romanization": "Bademeister", + "example_sentence_native": "Der Bademeister pfeift, wenn jemand rennt.", + "example_sentence_english": "The lifeguard whistles if someone runs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22553 + }, + { + "word": "Bahnübergang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway crossing;level crossing", + "romanization": "Bahnübergang", + "example_sentence_native": "Vorsicht am Bahnübergang!", + "example_sentence_english": "Caution at the railway crossing!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22554 + }, + { + "word": "Bankett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banquet", + "romanization": "Bankett", + "example_sentence_native": "Nach der Zeremonie gab es ein großes Bankett.", + "example_sentence_english": "After the ceremony there was a big banquet.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22555 + }, + { + "word": "Beanspruchung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stress;strain;demand", + "romanization": "Beanspruchung", + "example_sentence_native": "Das Material hält hoher Beanspruchung stand.", + "example_sentence_english": "The material withstands high stress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22557 + }, + { + "word": "beanstanden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to object to;to complain about", + "romanization": "beanstanden", + "example_sentence_native": "Der Kunde beanstandete die fehlerhafte Lieferung.", + "example_sentence_english": "The customer complained about the faulty delivery.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22558 + }, + { + "word": "bedauerlicherweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunately", + "romanization": "bedauerlicherweise", + "example_sentence_native": "Bedauerlicherweise konnte er nicht kommen.", + "example_sentence_english": "Unfortunately, he couldn't come.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 22560 + }, + { + "word": "Beifahrersitz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger seat", + "romanization": "Beifahrersitz", + "example_sentence_native": "Er saß auf dem Beifahrersitz.", + "example_sentence_english": "He sat in the passenger seat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22563 + }, + { + "word": "Beigeschmack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aftertaste;undertone", + "romanization": "Beigeschmack", + "example_sentence_native": "Die ganze Sache hatte einen bitteren Beigeschmack.", + "example_sentence_english": "The whole thing had a bitter aftertaste.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22564 + }, + { + "word": "Berufsbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocational training", + "romanization": "Berufsbildung", + "example_sentence_native": "Die Berufsbildung ist wichtig für die Karriere.", + "example_sentence_english": "Vocational training is important for the career.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22571 + }, + { + "word": "Berufsfeuerwehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professional fire brigade", + "romanization": "Berufsfeuerwehr", + "example_sentence_native": "Die Berufsfeuerwehr war schnell vor Ort.", + "example_sentence_english": "The professional fire brigade was quickly on site.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22572 + }, + { + "word": "Berufsverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rush hour traffic", + "romanization": "Berufsverkehr", + "example_sentence_native": "Im Berufsverkehr gibt es oft Stau.", + "example_sentence_english": "There is often traffic jam during rush hour.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22573 + }, + { + "word": "Betriebswirt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "business economist", + "romanization": "Betriebswirt", + "example_sentence_native": "Er studiert, um Betriebswirt zu werden.", + "example_sentence_english": "He is studying to become a business economist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22576 + }, + { + "word": "Bevölkerungszahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "population figure", + "romanization": "Bevölkerungszahl", + "example_sentence_native": "Die Bevölkerungszahl der Stadt ist gestiegen.", + "example_sentence_english": "The population figure of the city has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22577 + }, + { + "word": "Blender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blender", + "romanization": "Blender", + "example_sentence_native": "Ich benutze den Blender, um Smoothies zu machen.", + "example_sentence_english": "I use the blender to make smoothies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22580 + }, + { + "word": "Bundle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bundle", + "romanization": "Bundle", + "example_sentence_native": "Das Software-Bundle enthält mehrere Programme.", + "example_sentence_english": "The software bundle contains several programs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22591 + }, + { + "word": "Bürgerwehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vigilante group", + "romanization": "Bürgerwehr", + "example_sentence_native": "Die Bürgerwehr patrouilliert nachts in der Nachbarschaft.", + "example_sentence_english": "The vigilante group patrols the neighborhood at night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22593 + }, + { + "word": "Demontage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Dismantling;disassembly", + "romanization": "Demontage", + "example_sentence_native": "Die Demontage der Maschine dauerte Stunden.", + "example_sentence_english": "The dismantling of the machine took hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22604 + }, + { + "word": "Diagonale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Diagonal", + "romanization": "Diagonale", + "example_sentence_native": "Zeichne eine Diagonale von Ecke zu Ecke.", + "example_sentence_english": "Draw a diagonal from corner to corner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22605 + }, + { + "word": "Ehebruch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Adultery", + "romanization": "Ehebruch", + "example_sentence_native": "Ehebruch ist in vielen Kulturen verpönt.", + "example_sentence_english": "Adultery is frowned upon in many cultures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22609 + }, + { + "word": "Einbürgerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Naturalization;citizenship", + "romanization": "Einbürgerung", + "example_sentence_native": "Die Einbürgerung ist ein langer Prozess.", + "example_sentence_english": "Naturalization is a long process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22610 + }, + { + "word": "einspielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to warm up;to record;to get used to", + "romanization": "einspielen", + "example_sentence_native": "Die Band muss sich vor dem Konzert einspielen.", + "example_sentence_english": "The band needs to warm up before the concert.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22611 + }, + { + "word": "Elterngeld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Parental allowance", + "romanization": "Elterngeld", + "example_sentence_native": "Viele Eltern beantragen Elterngeld.", + "example_sentence_english": "Many parents apply for parental allowance.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22612 + }, + { + "word": "Endphase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Final phase;end stage", + "romanization": "Endphase", + "example_sentence_native": "Das Projekt ist in der Endphase.", + "example_sentence_english": "The project is in its final phase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22613 + }, + { + "word": "Entrüstung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Indignation;outrage", + "romanization": "Entrüstung", + "example_sentence_native": "Die Entrüstung über die Entscheidung war groß.", + "example_sentence_english": "The indignation about the decision was great.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22615 + }, + { + "word": "Entscheider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Decision-maker", + "romanization": "Entscheider", + "example_sentence_native": "Die Entscheider müssen eine Lösung finden.", + "example_sentence_english": "The decision-makers must find a solution.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22616 + }, + { + "word": "Entwässerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Drainage;dewatering", + "romanization": "Entwässerung", + "example_sentence_native": "Das System zur Entwässerung ist sehr effizient.", + "example_sentence_english": "The drainage system is very efficient.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22617 + }, + { + "word": "Ermächtigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Authorization;empowerment", + "romanization": "Ermächtigung", + "example_sentence_native": "Er erhielt die Ermächtigung, den Vertrag zu unterzeichnen.", + "example_sentence_english": "He received the authorization to sign the contract.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22618 + }, + { + "word": "erniedrigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to humiliate;to degrade", + "romanization": "erniedrigen", + "example_sentence_native": "Man sollte niemanden erniedrigen.", + "example_sentence_english": "One should not humiliate anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22619 + }, + { + "word": "erproben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to test;to try out", + "romanization": "erproben", + "example_sentence_native": "Wir müssen die neue Software erproben.", + "example_sentence_english": "We need to test the new software.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22620 + }, + { + "word": "euphorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "euphoric", + "romanization": "euphorisch", + "example_sentence_native": "Sie war euphorisch über ihren Sieg.", + "example_sentence_english": "She was euphoric about her victory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22621 + }, + { + "word": "Europarat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Council of Europe", + "romanization": "Europarat", + "example_sentence_native": "Der Europarat setzt sich für Menschenrechte ein.", + "example_sentence_english": "The Council of Europe advocates for human rights.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22622 + }, + { + "word": "Extrakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extract", + "romanization": "Extrakt", + "example_sentence_native": "Der Extrakt wird in der Medizin verwendet.", + "example_sentence_english": "The extract is used in medicine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22626 + }, + { + "word": "fahnden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to search for;to hunt for (a criminal)", + "romanization": "fahnden", + "example_sentence_native": "Die Polizei fahndet nach dem Täter.", + "example_sentence_english": "The police are searching for the perpetrator.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22627 + }, + { + "word": "Fernglas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "binoculars", + "romanization": "Fernglas", + "example_sentence_native": "Er beobachtete die Vögel mit einem Fernglas.", + "example_sentence_english": "He watched the birds with binoculars.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22629 + }, + { + "word": "Fernsehturm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "television tower", + "romanization": "Fernsehturm", + "example_sentence_native": "Der Berliner Fernsehturm ist ein Wahrzeichen.", + "example_sentence_english": "The Berlin TV Tower is a landmark.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22630 + }, + { + "word": "fortschrittlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive;advanced", + "romanization": "fortschrittlich", + "example_sentence_native": "Das ist ein sehr fortschrittlicher Ansatz.", + "example_sentence_english": "That is a very progressive approach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22631 + }, + { + "word": "Freiwilligkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voluntariness;voluntary nature", + "romanization": "Freiwilligkeit", + "example_sentence_native": "Die Teilnahme basiert auf Freiwilligkeit.", + "example_sentence_english": "Participation is based on voluntariness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22633 + }, + { + "word": "Frühzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "early period;early days", + "romanization": "Frühzeit", + "example_sentence_native": "In der Frühzeit der Menschheit lebten die Menschen in Höhlen.", + "example_sentence_english": "In the early period of humanity, people lived in caves.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22634 + }, + { + "word": "funkeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sparkle;to twinkle", + "romanization": "funkeln", + "example_sentence_native": "Die Sterne funkeln am Nachthimmel.", + "example_sentence_english": "The stars twinkle in the night sky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22635 + }, + { + "word": "fußen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be based on;to rest on", + "romanization": "fußen", + "example_sentence_native": "Diese Theorie fußt auf neuen Erkenntnissen.", + "example_sentence_english": "This theory is based on new findings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22637 + }, + { + "word": "futtern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gobble;to munch (informal for \"to eat\")", + "romanization": "futtern", + "example_sentence_native": "Die Kinder futtern ihre Süßigkeiten.", + "example_sentence_english": "The children are gobbling their sweets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22638 + }, + { + "word": "Füller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fountain pen", + "romanization": "Füller", + "example_sentence_native": "Ich schreibe mit meinem neuen Füller.", + "example_sentence_english": "I am writing with my new fountain pen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22641 + }, + { + "word": "Gebein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bones;remains", + "romanization": "Gebein", + "example_sentence_native": "Archäologen entdeckten alte Gebeine in der Höhle.", + "example_sentence_english": "Archaeologists discovered ancient remains in the cave.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22643 + }, + { + "word": "Geburtsjahr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "year of birth", + "romanization": "Geburtsjahr", + "example_sentence_native": "Bitte geben Sie Ihr Geburtsjahr an.", + "example_sentence_english": "Please state your year of birth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22644 + }, + { + "word": "demütigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to humiliate;to humble", + "romanization": "demütigen", + "example_sentence_native": "Er versuchte, seinen Gegner zu demütigen.", + "example_sentence_english": "He tried to humiliate his opponent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22645 + }, + { + "word": "Geleit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escort;convoy", + "romanization": "Geleit", + "example_sentence_native": "Die Königin reiste unter militärischem Geleit.", + "example_sentence_english": "The queen traveled under military escort.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22646 + }, + { + "word": "Generalstaatsanwalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attorney general;public prosecutor general", + "romanization": "Generalstaatsanwalt", + "example_sentence_native": "Der Generalstaatsanwalt gab eine Erklärung ab.", + "example_sentence_english": "The attorney general made a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22647 + }, + { + "word": "Gesamtfläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total area", + "romanization": "Gesamtfläche", + "example_sentence_native": "Die Gesamtfläche des Parks beträgt 100 Hektar.", + "example_sentence_english": "The total area of the park is 100 hectares.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22649 + }, + { + "word": "Glotze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "TV (slang)", + "romanization": "Glotze", + "example_sentence_native": "Mach die Glotze aus und komm essen!", + "example_sentence_english": "Turn off the TV and come eat!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22650 + }, + { + "word": "graphisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphic;graphical", + "romanization": "graphisch", + "example_sentence_native": "Die graphische Darstellung hilft, die Daten zu verstehen.", + "example_sentence_english": "The graphic representation helps to understand the data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22651 + }, + { + "word": "Grundgedanke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic idea;fundamental thought", + "romanization": "Grundgedanke", + "example_sentence_native": "Der Grundgedanke des Projekts ist einfach.", + "example_sentence_english": "The basic idea of the project is simple.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22655 + }, + { + "word": "Gummistiefel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rubber boots;wellington boots", + "romanization": "Gummistiefel", + "example_sentence_native": "Bei Regenwetter trage ich immer Gummistiefel.", + "example_sentence_english": "In rainy weather, I always wear rubber boots.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22658 + }, + { + "word": "Gärtnerei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursery;garden center", + "romanization": "Gärtnerei", + "example_sentence_native": "Wir kaufen unsere Blumen in der Gärtnerei.", + "example_sentence_english": "We buy our flowers at the nursery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22660 + }, + { + "word": "Halbbruder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half-brother", + "romanization": "Halbbruder", + "example_sentence_native": "Mein Halbbruder lebt in einer anderen Stadt.", + "example_sentence_english": "My half-brother lives in another city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22661 + }, + { + "word": "Handgepäck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hand luggage;carry-on", + "romanization": "Handgepäck", + "example_sentence_native": "Darf ich mein Handgepäck mit in die Kabine nehmen?", + "example_sentence_english": "May I take my hand luggage into the cabin?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22662 + }, + { + "word": "hauptamtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full-time (official capacity);salaried", + "romanization": "hauptamtlich", + "example_sentence_native": "Er arbeitet hauptamtlich als Lehrer.", + "example_sentence_english": "He works full-time as a teacher.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22664 + }, + { + "word": "Herrenmannschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "men's team", + "romanization": "Herrenmannschaft", + "example_sentence_native": "Die Herrenmannschaft hat das Spiel gewonnen.", + "example_sentence_english": "The men's team won the game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22673 + }, + { + "word": "hinhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stall;to hold out;to keep waiting", + "romanization": "hinhalten", + "example_sentence_native": "Er versucht, uns mit leeren Versprechungen hinzuhalten.", + "example_sentence_english": "He is trying to stall us with empty promises.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22674 + }, + { + "word": "Hornhaut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornea;callus", + "romanization": "Hornhaut", + "example_sentence_native": "Die Hornhaut des Auges ist sehr empfindlich.", + "example_sentence_english": "The cornea of the eye is very sensitive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22679 + }, + { + "word": "Hundebesitzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dog owner", + "romanization": "Hundebesitzer", + "example_sentence_native": "Der Hundebesitzer ging mit seinem Labrador spazieren.", + "example_sentence_english": "The dog owner went for a walk with his Labrador.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22680 + }, + { + "word": "Hundefutter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dog food", + "romanization": "Hundefutter", + "example_sentence_native": "Er kaufte neues Hundefutter für seinen Welpen.", + "example_sentence_english": "He bought new dog food for his puppy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22681 + }, + { + "word": "Hupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn (vehicle)", + "romanization": "Hupe", + "example_sentence_native": "Die Hupe des Autos funktionierte nicht mehr.", + "example_sentence_english": "The car's horn no longer worked.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22682 + }, + { + "word": "Imitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imitation", + "romanization": "Imitation", + "example_sentence_native": "Die Imitation des Gemäldes war sehr überzeugend.", + "example_sentence_english": "The imitation of the painting was very convincing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22686 + }, + { + "word": "inkompetent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompetent", + "romanization": "inkompetent", + "example_sentence_native": "Er wurde als inkompetent für die Aufgabe angesehen.", + "example_sentence_english": "He was considered incompetent for the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22687 + }, + { + "word": "Innenleben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inner life;inner workings", + "romanization": "Innenleben", + "example_sentence_native": "Das Innenleben der Maschine war komplex.", + "example_sentence_english": "The inner workings of the machine were complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22688 + }, + { + "word": "innerst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innermost", + "romanization": "innerst", + "example_sentence_native": "Sie spürte eine innere Ruhe in ihrem innersten Kern.", + "example_sentence_english": "She felt an inner peace in her innermost core.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22689 + }, + { + "word": "Insolvenzverfahren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insolvency proceedings", + "romanization": "Insolvenzverfahren", + "example_sentence_native": "Das Unternehmen musste ein Insolvenzverfahren einleiten.", + "example_sentence_english": "The company had to initiate insolvency proceedings.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22690 + }, + { + "word": "instrumentalisieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to instrumentalize", + "romanization": "instrumentalisieren", + "example_sentence_native": "Er versuchte, die Situation zu instrumentalisieren.", + "example_sentence_english": "He tried to instrumentalize the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22692 + }, + { + "word": "Interieur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interior", + "romanization": "Interieur", + "example_sentence_native": "Das Interieur des Hauses war sehr stilvoll.", + "example_sentence_english": "The interior of the house was very stylish.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22693 + }, + { + "word": "Internetnutzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internet user", + "romanization": "Internetnutzer", + "example_sentence_native": "Die Zahl der Internetnutzer steigt weltweit.", + "example_sentence_english": "The number of internet users is increasing worldwide.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22694 + }, + { + "word": "Jahrestagung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual conference;meeting", + "romanization": "Jahrestagung", + "example_sentence_native": "Die Jahrestagung findet im November statt.", + "example_sentence_english": "The annual conference takes place in November.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22696 + }, + { + "word": "Jeside", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Yazidi (person)", + "romanization": "Jeside", + "example_sentence_native": "Die Jesiden sind eine ethnisch-religiöse Gruppe.", + "example_sentence_english": "The Yazidis are an ethno-religious group.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22698 + }, + { + "word": "Jungtier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "young animal", + "romanization": "Jungtier", + "example_sentence_native": "Das Jungtier spielte fröhlich auf der Wiese.", + "example_sentence_english": "The young animal played happily in the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22701 + }, + { + "word": "Junta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "junta", + "romanization": "Junta", + "example_sentence_native": "Die Militärjunta übernahm die Macht im Land.", + "example_sentence_english": "The military junta took power in the country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22702 + }, + { + "word": "Kapitalerhöhung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capital increase", + "romanization": "Kapitalerhöhung", + "example_sentence_native": "Das Unternehmen plant eine Kapitalerhöhung, um neue Projekte zu finanzieren.", + "example_sentence_english": "The company plans a capital increase to finance new projects.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22704 + }, + { + "word": "Kerngeschäft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "core business", + "romanization": "Kerngeschäft", + "example_sentence_native": "Das Kerngeschäft des Unternehmens ist die Softwareentwicklung.", + "example_sentence_english": "The company's core business is software development.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22707 + }, + { + "word": "Knebel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gag", + "romanization": "Knebel", + "example_sentence_native": "Er legte ihr einen Knebel in den Mund.", + "example_sentence_english": "He put a gag in her mouth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22711 + }, + { + "word": "Knigge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "etiquette rules", + "romanization": "Knigge", + "example_sentence_native": "Das ist gegen den Knigge.", + "example_sentence_english": "That's against the rules of etiquette.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "unclear", + "word_frequency": 22712 + }, + { + "word": "Konkurrenzkampf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitive struggle", + "romanization": "Konkurrenzkampf", + "example_sentence_native": "Der Konkurrenzkampf in der Branche ist sehr hart.", + "example_sentence_english": "The competitive struggle in the industry is very tough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22714 + }, + { + "word": "Korsett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corset", + "romanization": "Korsett", + "example_sentence_native": "Sie trug ein enges Korsett unter ihrem Kleid.", + "example_sentence_english": "She wore a tight corset under her dress.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22715 + }, + { + "word": "Kreation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creation", + "romanization": "Kreation", + "example_sentence_native": "Diese Kreation ist ein Meisterwerk der modernen Kunst.", + "example_sentence_english": "This creation is a masterpiece of modern art.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22718 + }, + { + "word": "kubanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cuban", + "romanization": "kubanisch", + "example_sentence_native": "Sie liebt kubanische Musik.", + "example_sentence_english": "She loves Cuban music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22721 + }, + { + "word": "Kurzurlaub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short break", + "romanization": "Kurzurlaub", + "example_sentence_native": "Wir machen einen Kurzurlaub am Wochenende.", + "example_sentence_english": "We are taking a short break on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22722 + }, + { + "word": "Lagerhalle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warehouse", + "romanization": "Lagerhalle", + "example_sentence_native": "Die Waren werden in der Lagerhalle gelagert.", + "example_sentence_english": "The goods are stored in the warehouse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22723 + }, + { + "word": "Landessprache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national language", + "romanization": "Landessprache", + "example_sentence_native": "In der Schweiz gibt es mehrere Landessprachen.", + "example_sentence_english": "In Switzerland, there are several national languages.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22724 + }, + { + "word": "Langlauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cross-country skiing", + "romanization": "Langlauf", + "example_sentence_native": "Im Winter gehen wir oft Langlauf machen.", + "example_sentence_english": "In winter, we often go cross-country skiing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22725 + }, + { + "word": "Lavendel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lavender", + "romanization": "Lavendel", + "example_sentence_native": "Der Duft von Lavendel ist sehr beruhigend.", + "example_sentence_english": "The scent of lavender is very calming.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22726 + }, + { + "word": "Lobbyismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lobbyism", + "romanization": "Lobbyismus", + "example_sentence_native": "Lobbyismus spielt eine große Rolle in der Politik.", + "example_sentence_english": "Lobbyism plays a big role in politics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22732 + }, + { + "word": "Luftlinie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as the crow flies", + "romanization": "Luftlinie", + "example_sentence_native": "Die Entfernung beträgt 10 km Luftlinie.", + "example_sentence_english": "The distance is 10 km as the crow flies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22733 + }, + { + "word": "Lösungsmittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solvent", + "romanization": "Lösungsmittel", + "example_sentence_native": "Aceton ist ein häufig verwendetes Lösungsmittel.", + "example_sentence_english": "Acetone is a commonly used solvent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22734 + }, + { + "word": "Markteinführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market launch", + "romanization": "Markteinführung", + "example_sentence_native": "Die Markteinführung des neuen Produkts ist für nächsten Monat geplant.", + "example_sentence_english": "The market launch of the new product is planned for next month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22736 + }, + { + "word": "massenweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in large quantities", + "romanization": "massenweise", + "example_sentence_native": "Die Touristen kamen massenweise in die Stadt.", + "example_sentence_english": "The tourists came in large quantities to the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "unclear", + "word_frequency": 22738 + }, + { + "word": "Megawatt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "megawatt", + "romanization": "Megawatt", + "example_sentence_native": "Das Kraftwerk erzeugt mehrere Megawatt Strom.", + "example_sentence_english": "The power plant generates several megawatts of electricity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22740 + }, + { + "word": "melancholisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melancholic", + "romanization": "melancholisch", + "example_sentence_native": "Sie hatte eine melancholische Stimmung.", + "example_sentence_english": "She had a melancholic mood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22741 + }, + { + "word": "Meteorit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorite", + "romanization": "Meteorit", + "example_sentence_native": "Ein Meteorit schlug in der Wüste ein.", + "example_sentence_english": "A meteorite struck in the desert.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22743 + }, + { + "word": "missfallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to displease", + "romanization": "missfallen", + "example_sentence_native": "Sein Verhalten missfiel ihr sehr.", + "example_sentence_english": "His behavior displeased her greatly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22746 + }, + { + "word": "Mitgift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dowry", + "romanization": "Mitgift", + "example_sentence_native": "In früheren Zeiten war die Mitgift wichtig für eine Heirat.", + "example_sentence_english": "In earlier times, the dowry was important for a marriage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22747 + }, + { + "word": "Monographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monograph", + "romanization": "Monographie", + "example_sentence_native": "Sie schrieb eine Monographie über die Geschichte der Kunst.", + "example_sentence_english": "She wrote a monograph on the history of art.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22749 + }, + { + "word": "Morphologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morphology", + "romanization": "Morphologie", + "example_sentence_native": "Die Morphologie ist ein Teilgebiet der Biologie.", + "example_sentence_english": "Morphology is a subfield of biology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22751 + }, + { + "word": "Mops", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pug", + "romanization": "Mops", + "example_sentence_native": "Der Mops ist eine kleine Hunderasse.", + "example_sentence_english": "The pug is a small dog breed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22753 + }, + { + "word": "Nachrichtendienst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intelligence service", + "romanization": "Nachrichtendienst", + "example_sentence_native": "Der Nachrichtendienst sammelt wichtige Informationen.", + "example_sentence_english": "The intelligence service collects important information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22754 + }, + { + "word": "Nichtstun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idleness;doing nothing", + "romanization": "Nichtstun", + "example_sentence_native": "Sein Nichtstun ärgert mich.", + "example_sentence_english": "His idleness annoys me.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22760 + }, + { + "word": "Nicki", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "velour;sweatshirt", + "romanization": "Nicki", + "example_sentence_native": "Er trug einen weichen Nicki.", + "example_sentence_english": "He wore a soft velour sweatshirt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "unclear", + "word_frequency": 22761 + }, + { + "word": "niederbrennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burn down", + "romanization": "niederbrennen", + "example_sentence_native": "Das alte Haus wird niederbrennen.", + "example_sentence_english": "The old house will burn down.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nieder", + "base_verb": "brennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22762 + }, + { + "word": "Nummernschild", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "license plate", + "romanization": "Nummernschild", + "example_sentence_native": "Das Auto hatte ein neues Nummernschild.", + "example_sentence_english": "The car had a new license plate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22764 + }, + { + "word": "nähren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nourish;to feed", + "romanization": "nähren", + "example_sentence_native": "Die Mutter nährt ihr Kind.", + "example_sentence_english": "The mother nourishes her child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22766 + }, + { + "word": "oberösterreichisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Upper Austrian", + "romanization": "oberösterreichisch", + "example_sentence_native": "Er spricht einen oberösterreichischen Dialekt.", + "example_sentence_english": "He speaks an Upper Austrian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22767 + }, + { + "word": "Originalität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originality", + "romanization": "Originalität", + "example_sentence_native": "Seine Kunst zeichnet sich durch Originalität aus.", + "example_sentence_english": "His art is characterized by originality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22770 + }, + { + "word": "Ozon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ozone", + "romanization": "Ozon", + "example_sentence_native": "Die Ozonschicht schützt uns vor UV-Strahlung.", + "example_sentence_english": "The ozone layer protects us from UV radiation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22773 + }, + { + "word": "Papagei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parrot", + "romanization": "Papagei", + "example_sentence_native": "Der Papagei kann sprechen.", + "example_sentence_english": "The parrot can speak.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22775 + }, + { + "word": "Paradebeispiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prime example;textbook example", + "romanization": "Paradebeispiel", + "example_sentence_native": "Das ist ein Paradebeispiel für gute Planung.", + "example_sentence_english": "That is a prime example of good planning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22776 + }, + { + "word": "Parteivorsitzender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party leader;chairman", + "romanization": "Parteivorsitzender", + "example_sentence_native": "Der Parteivorsitzende hielt eine Rede.", + "example_sentence_english": "The party leader gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22777 + }, + { + "word": "Partisan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partisan", + "romanization": "Partisan", + "example_sentence_native": "Die Partisanen kämpften im Untergrund.", + "example_sentence_english": "The partisans fought underground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22778 + }, + { + "word": "Pflichtspiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competitive match;game (official game)", + "romanization": "Pflichtspiel", + "example_sentence_native": "Das nächste Pflichtspiel ist am Samstag.", + "example_sentence_english": "The next competitive match is on Saturday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22779 + }, + { + "word": "Pragmatismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pragmatism", + "romanization": "Pragmatismus", + "example_sentence_native": "Sein Pragmatismus half ihm, die Probleme zu lösen.", + "example_sentence_english": "His pragmatism helped him solve the problems.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22783 + }, + { + "word": "Privateigentum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private property", + "romanization": "Privateigentum", + "example_sentence_native": "Das Haus ist sein Privateigentum.", + "example_sentence_english": "The house is his private property.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22787 + }, + { + "word": "provinzial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provincial", + "romanization": "provinzial", + "example_sentence_native": "Die provinziale Stadt hatte ihren eigenen Charme.", + "example_sentence_english": "The provincial town had its own charm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22789 + }, + { + "word": "Pyjama", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pajamas", + "romanization": "Pyjama", + "example_sentence_native": "Er zog seinen Pyjama an, bevor er ins Bett ging.", + "example_sentence_english": "He put on his pajamas before going to bed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22791 + }, + { + "word": "Raststätte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest stop;service area", + "romanization": "Raststätte", + "example_sentence_native": "Wir machten eine Pause an der nächsten Raststätte.", + "example_sentence_english": "We took a break at the next rest stop.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22792 + }, + { + "word": "Rechtsfrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal question;point of law", + "romanization": "Rechtsfrage", + "example_sentence_native": "Das ist eine komplizierte Rechtsfrage.", + "example_sentence_english": "That is a complicated legal question.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22793 + }, + { + "word": "reell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real;genuine;fair", + "romanization": "reell", + "example_sentence_native": "Er machte ein reelles Angebot.", + "example_sentence_english": "He made a fair offer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22794 + }, + { + "word": "reichhaltig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rich;abundant;varied", + "romanization": "reichhaltig", + "example_sentence_native": "Das Frühstücksbuffet war sehr reichhaltig.", + "example_sentence_english": "The breakfast buffet was very rich/abundant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22795 + }, + { + "word": "Reigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "round dance;sequence;cycle", + "romanization": "Reigen", + "example_sentence_native": "Die Kinder tanzten einen fröhlichen Reigen.", + "example_sentence_english": "The children danced a joyful round dance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22796 + }, + { + "word": "reproduzieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reproduce", + "romanization": "reproduzieren", + "example_sentence_native": "Es ist schwierig, diese Ergebnisse zu reproduzieren.", + "example_sentence_english": "It is difficult to reproduce these results.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22797 + }, + { + "word": "Repräsentantenhaus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "House of Representatives", + "romanization": "Repräsentantenhaus", + "example_sentence_native": "Das Gesetz wurde vom Repräsentantenhaus verabschiedet.", + "example_sentence_english": "The law was passed by the House of Representatives.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22798 + }, + { + "word": "roden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clear (land)", + "romanization": "roden", + "example_sentence_native": "Die Bauern mussten das Land roden, um neue Felder anzulegen.", + "example_sentence_english": "The farmers had to clear the land to create new fields.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22801 + }, + { + "word": "rötlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reddish", + "romanization": "rötlich", + "example_sentence_native": "Sie hatte rötliche Haare.", + "example_sentence_english": "She had reddish hair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22805 + }, + { + "word": "Schattenseite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "downside", + "romanization": "Schattenseite", + "example_sentence_native": "Jede Medaille hat ihre Schattenseite.", + "example_sentence_english": "Every coin has its downside.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22807 + }, + { + "word": "Schiedsgericht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitration court", + "romanization": "Schiedsgericht", + "example_sentence_native": "Die Parteien einigten sich auf ein Schiedsgericht.", + "example_sentence_english": "The parties agreed on an arbitration court.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22809 + }, + { + "word": "Schlussphase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final phase", + "romanization": "Schlussphase", + "example_sentence_native": "Das Spiel ist in der Schlussphase.", + "example_sentence_english": "The game is in the final phase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22810 + }, + { + "word": "Schneemann", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "snowman", + "romanization": "Schneemann", + "example_sentence_native": "Die Kinder bauten einen Schneemann.", + "example_sentence_english": "The children built a snowman.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22811 + }, + { + "word": "Schulbus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "school bus", + "romanization": "Schulbus", + "example_sentence_native": "Der Schulbus fährt um 7 Uhr ab.", + "example_sentence_english": "The school bus departs at 7 AM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22812 + }, + { + "word": "Schweinchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piggy", + "romanization": "Schweinchen", + "example_sentence_native": "Das kleine Schweinchen grunzte fröhlich.", + "example_sentence_english": "The little piggy grunted happily.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22813 + }, + { + "word": "schwelgen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to revel", + "romanization": "schwelgen", + "example_sentence_native": "Er schwelgte in Erinnerungen an seine Jugend.", + "example_sentence_english": "He reveled in memories of his youth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22814 + }, + { + "word": "Schwiegereltern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parents-in-law", + "romanization": "Schwiegereltern", + "example_sentence_native": "Meine Schwiegereltern besuchen uns nächste Woche.", + "example_sentence_english": "My parents-in-law are visiting us next week.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22815 + }, + { + "word": "Schützling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protégé", + "romanization": "Schützling", + "example_sentence_native": "Der Professor war stolz auf seinen Schützling.", + "example_sentence_english": "The professor was proud of his protégé.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22816 + }, + { + "word": "Seenot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distress at sea", + "romanization": "Seenot", + "example_sentence_native": "Das Schiff sendete ein Seenotsignal.", + "example_sentence_english": "The ship sent a distress signal at sea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22817 + }, + { + "word": "Seenotrettung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sea rescue", + "romanization": "Seenotrettung", + "example_sentence_native": "Die Seenotrettung war schnell vor Ort.", + "example_sentence_english": "The sea rescue was quickly on site.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22818 + }, + { + "word": "Selbstjustiz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vigilantism", + "romanization": "Selbstjustiz", + "example_sentence_native": "Selbstjustiz ist in einem Rechtsstaat nicht erlaubt.", + "example_sentence_english": "Vigilantism is not allowed in a constitutional state.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22819 + }, + { + "word": "Senatsverwaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Senate administration", + "romanization": "Senatsverwaltung", + "example_sentence_native": "Die Senatsverwaltung ist für die Stadtplanung zuständig.", + "example_sentence_english": "The Senate administration is responsible for urban planning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22820 + }, + { + "word": "Sonderausgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special edition", + "romanization": "Sonderausgabe", + "example_sentence_native": "Das Magazin veröffentlichte eine Sonderausgabe zum Jubiläum.", + "example_sentence_english": "The magazine published a special edition for the anniversary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22826 + }, + { + "word": "Sonderstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special position", + "romanization": "Sonderstellung", + "example_sentence_native": "Das Land genießt eine Sonderstellung in der Region.", + "example_sentence_english": "The country enjoys a special position in the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22827 + }, + { + "word": "Sonnenfinsternis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar eclipse", + "romanization": "Sonnenfinsternis", + "example_sentence_native": "Wir konnten die Sonnenfinsternis gestern Abend sehen.", + "example_sentence_english": "We could see the solar eclipse last night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22828 + }, + { + "word": "spitzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sharpen", + "romanization": "spitzen", + "example_sentence_native": "Kannst du bitte den Bleistift spitzen?", + "example_sentence_english": "Can you please sharpen the pencil?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22830 + }, + { + "word": "standardisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to standardize", + "romanization": "standardisieren", + "example_sentence_native": "Wir müssen den Prozess standardisieren.", + "example_sentence_english": "We need to standardize the process.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22831 + }, + { + "word": "stinkend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stinking;smelly", + "romanization": "stinkend", + "example_sentence_native": "Der Müll riecht stinkend.", + "example_sentence_english": "The trash smells stinking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22833 + }, + { + "word": "Suchfunktion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "search function", + "romanization": "Suchfunktion", + "example_sentence_native": "Die Webseite hat eine nützliche Suchfunktion.", + "example_sentence_english": "The website has a useful search function.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22837 + }, + { + "word": "suspekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicious;suspect", + "romanization": "suspekt", + "example_sentence_native": "Sein Verhalten war sehr suspekt.", + "example_sentence_english": "His behavior was very suspicious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22838 + }, + { + "word": "Symmetrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symmetry", + "romanization": "Symmetrie", + "example_sentence_native": "Die Symmetrie des Gebäudes ist beeindruckend.", + "example_sentence_english": "The symmetry of the building is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22840 + }, + { + "word": "Testergebnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "test result", + "romanization": "Testergebnis", + "example_sentence_native": "Das Testergebnis war positiv.", + "example_sentence_english": "The test result was positive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22841 + }, + { + "word": "Totalschaden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "total loss", + "romanization": "Totalschaden", + "example_sentence_native": "Nach dem Unfall war das Auto ein Totalschaden.", + "example_sentence_english": "After the accident, the car was a total loss.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22846 + }, + { + "word": "Tragik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tragedy", + "romanization": "Tragik", + "example_sentence_native": "Die Tragik der Situation war offensichtlich.", + "example_sentence_english": "The tragedy of the situation was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22847 + }, + { + "word": "trüb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloudy", + "romanization": "trüb", + "example_sentence_native": "Das Wasser im See war trüb.", + "example_sentence_english": "The water in the lake was murky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22848 + }, + { + "word": "Tuning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuning", + "romanization": "Tuning", + "example_sentence_native": "Er hat viel Geld für das Tuning seines Autos ausgegeben.", + "example_sentence_english": "He spent a lot of money on tuning his car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "unclear", + "word_frequency": 22849 + }, + { + "word": "Täufer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baptist", + "romanization": "Täufer", + "example_sentence_native": "Johannes der Täufer ist eine wichtige Figur im Christentum.", + "example_sentence_english": "John the Baptist is an important figure in Christianity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22850 + }, + { + "word": "Umhang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloak", + "romanization": "Umhang", + "example_sentence_native": "Er trug einen dunklen Umhang.", + "example_sentence_english": "He wore a dark cloak.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22852 + }, + { + "word": "Umriss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outline", + "romanization": "Umriss", + "example_sentence_native": "Man konnte nur den Umriss des Berges sehen.", + "example_sentence_english": "One could only see the outline of the mountain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22853 + }, + { + "word": "umtauschen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to exchange", + "romanization": "umtauschen", + "example_sentence_native": "Ich möchte dieses Hemd umtauschen.", + "example_sentence_english": "I would like to exchange this shirt.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "tauschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22854 + }, + { + "word": "Umweltminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environment minister", + "romanization": "Umweltminister", + "example_sentence_native": "Der Umweltminister hielt eine Rede.", + "example_sentence_english": "The environment minister gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22855 + }, + { + "word": "Umweltministerium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ministry of Environment", + "romanization": "Umweltministerium", + "example_sentence_native": "Das Umweltministerium ist für den Klimaschutz zuständig.", + "example_sentence_english": "The Ministry of Environment is responsible for climate protection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22856 + }, + { + "word": "Ungeduld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impatience", + "romanization": "Ungeduld", + "example_sentence_native": "Seine Ungeduld war spürbar.", + "example_sentence_english": "His impatience was palpable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22857 + }, + { + "word": "Ungleichgewicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imbalance", + "romanization": "Ungleichgewicht", + "example_sentence_native": "Es gibt ein Ungleichgewicht zwischen Angebot und Nachfrage.", + "example_sentence_english": "There is an imbalance between supply and demand.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22858 + }, + { + "word": "Unklarheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertainty;ambiguity", + "romanization": "Unklarheit", + "example_sentence_native": "Es gab eine gewisse Unklarheit bezüglich der Anweisungen.", + "example_sentence_english": "There was some uncertainty regarding the instructions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22860 + }, + { + "word": "unmoralisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immoral", + "romanization": "unmoralisch", + "example_sentence_native": "Sein Verhalten war völlig unmoralisch.", + "example_sentence_english": "His behavior was completely immoral.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22861 + }, + { + "word": "Unternehmenskultur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corporate culture", + "romanization": "Unternehmenskultur", + "example_sentence_native": "Die Unternehmenskultur spielt eine wichtige Rolle für den Erfolg.", + "example_sentence_english": "The corporate culture plays an important role for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22862 + }, + { + "word": "verbiegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bend;to distort", + "romanization": "verbiegen", + "example_sentence_native": "Er versuchte, den Draht zu verbiegen.", + "example_sentence_english": "He tried to bend the wire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22864 + }, + { + "word": "verfeinern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refine;to improve", + "romanization": "verfeinern", + "example_sentence_native": "Sie muss ihre Technik noch verfeinern.", + "example_sentence_english": "She still needs to refine her technique.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22865 + }, + { + "word": "verharren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to persist;to remain;to linger", + "romanization": "verharren", + "example_sentence_native": "Er verharrte in seiner Meinung.", + "example_sentence_english": "He persisted in his opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22866 + }, + { + "word": "verhöhnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mock;to ridicule", + "romanization": "verhöhnen", + "example_sentence_native": "Man sollte niemanden verhöhnen.", + "example_sentence_english": "One should not mock anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22867 + }, + { + "word": "verlogen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mendacious;deceitful;dishonest", + "romanization": "verlogen", + "example_sentence_native": "Seine Ausreden klangen sehr verlogen.", + "example_sentence_english": "His excuses sounded very deceitful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22868 + }, + { + "word": "verspeisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eat;to consume", + "romanization": "verspeisen", + "example_sentence_native": "Die Kinder verspeisten das ganze Eis.", + "example_sentence_english": "The children ate all the ice cream.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22869 + }, + { + "word": "verständnisvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understanding;sympathetic", + "romanization": "verständnisvoll", + "example_sentence_native": "Sie reagierte sehr verständnisvoll auf seine Probleme.", + "example_sentence_english": "She reacted very understandingly to his problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22870 + }, + { + "word": "Vertragsabschluss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conclusion of contract;contract signing", + "romanization": "Vertragsabschluss", + "example_sentence_native": "Der Vertragsabschluss erfolgte nach langen Verhandlungen.", + "example_sentence_english": "The conclusion of the contract took place after long negotiations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22871 + }, + { + "word": "Vitalität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vitality", + "romanization": "Vitalität", + "example_sentence_native": "Er strahlte eine unglaubliche Vitalität aus.", + "example_sentence_english": "He radiated incredible vitality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22872 + }, + { + "word": "Vogelsang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bird song", + "romanization": "Vogelsang", + "example_sentence_native": "Am Morgen weckte mich der Vogelsang.", + "example_sentence_english": "In the morning, the bird song woke me up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "unclear", + "word_frequency": 22873 + }, + { + "word": "Volltext", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full text", + "romanization": "Volltext", + "example_sentence_native": "Der Volltext des Artikels ist online verfügbar.", + "example_sentence_english": "The full text of the article is available online.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22874 + }, + { + "word": "Wasserburg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moated castle;water castle", + "romanization": "Wasserburg", + "example_sentence_native": "Die alte Wasserburg ist eine Touristenattraktion.", + "example_sentence_english": "The old moated castle is a tourist attraction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22876 + }, + { + "word": "Wasserturm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water tower", + "romanization": "Wasserturm", + "example_sentence_native": "Der Wasserturm ist ein Wahrzeichen der Stadt.", + "example_sentence_english": "The water tower is a landmark of the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22877 + }, + { + "word": "weiterlaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue running;to walk on", + "romanization": "weiterlaufen", + "example_sentence_native": "Trotz des Regens mussten wir weiterlaufen.", + "example_sentence_english": "Despite the rain, we had to continue walking.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22878 + }, + { + "word": "Weltliteratur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "world literature", + "romanization": "Weltliteratur", + "example_sentence_native": "Er ist ein Experte für Weltliteratur.", + "example_sentence_english": "He is an expert in world literature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22879 + }, + { + "word": "Wildtier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild animal", + "romanization": "Wildtier", + "example_sentence_native": "Im Wald leben viele Wildtiere.", + "example_sentence_english": "Many wild animals live in the forest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22881 + }, + { + "word": "Wochenblatt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weekly newspaper", + "romanization": "Wochenblatt", + "example_sentence_native": "Das Wochenblatt erscheint jeden Freitag.", + "example_sentence_english": "The weekly newspaper is published every Friday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22882 + }, + { + "word": "Zentralstelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "central office", + "romanization": "Zentralstelle", + "example_sentence_native": "Die Zentralstelle koordiniert alle Aktivitäten.", + "example_sentence_english": "The central office coordinates all activities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22883 + }, + { + "word": "Zivildienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civilian service", + "romanization": "Zivildienst", + "example_sentence_native": "Früher mussten junge Männer Zivildienst leisten.", + "example_sentence_english": "In the past, young men had to perform civilian service.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22885 + }, + { + "word": "Zugfahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "train journey", + "romanization": "Zugfahrt", + "example_sentence_native": "Die Zugfahrt dauerte drei Stunden.", + "example_sentence_english": "The train journey lasted three hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22886 + }, + { + "word": "zurechtkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cope;to manage", + "romanization": "zurechtkommen", + "example_sentence_native": "Ich komme gut mit der neuen Software zurecht.", + "example_sentence_english": "I cope well with the new software.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurecht", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22887 + }, + { + "word": "zurückbekommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get back;to receive back", + "romanization": "zurückbekommen", + "example_sentence_native": "Wann bekomme ich mein Geld zurück?", + "example_sentence_english": "When will I get my money back?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "bekommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22888 + }, + { + "word": "zurückgewinnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regain;to recover", + "romanization": "zurückgewinnen", + "example_sentence_native": "Sie versuchen, das verlorene Gebiet zurückzugewinnen.", + "example_sentence_english": "They are trying to regain the lost territory.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "gewinnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22889 + }, + { + "word": "Überhand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upper hand;prevalence", + "romanization": "Überhand", + "example_sentence_native": "Die Probleme nehmen Überhand.", + "example_sentence_english": "The problems are getting out of hand.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22890 + }, + { + "word": "überheblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogant;conceited", + "romanization": "überheblich", + "example_sentence_native": "Sein überhebliches Verhalten ärgert mich.", + "example_sentence_english": "His arrogant behavior annoys me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22891 + }, + { + "word": "überschüssig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess;surplus", + "romanization": "überschüssig", + "example_sentence_native": "Wir müssen die überschüssige Energie speichern.", + "example_sentence_english": "We need to store the excess energy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22892 + }, + { + "word": "überzogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaggerated;overdrawn", + "romanization": "überzogen", + "example_sentence_native": "Seine Reaktion war völlig überzogen.", + "example_sentence_english": "His reaction was completely exaggerated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22893 + }, + { + "word": "Abendzeitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evening newspaper", + "romanization": "Abendzeitung", + "example_sentence_native": "Ich lese die Abendzeitung nach der Arbeit.", + "example_sentence_english": "I read the evening newspaper after work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22894 + }, + { + "word": "abraten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advise against", + "romanization": "abraten", + "example_sentence_native": "Ich rate dir davon ab, das zu tun.", + "example_sentence_english": "I advise you against doing that.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "raten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22895 + }, + { + "word": "abschwächen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weaken;to mitigate", + "romanization": "abschwächen", + "example_sentence_native": "Wir müssen die Auswirkungen abschwächen.", + "example_sentence_english": "We need to mitigate the effects.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schwächen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22896 + }, + { + "word": "Abschlussfeier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graduation ceremony;closing celebration", + "romanization": "Abschlussfeier", + "example_sentence_native": "Die Abschlussfeier findet nächste Woche statt.", + "example_sentence_english": "The graduation ceremony will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22897 + }, + { + "word": "abstreiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to dispute", + "romanization": "abstreiten", + "example_sentence_native": "Er kann die Vorwürfe nicht abstreiten.", + "example_sentence_english": "He cannot deny the accusations.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "streiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22898 + }, + { + "word": "abtransportieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transport away;to remove", + "romanization": "abtransportieren", + "example_sentence_native": "Der Müll muss abtransportiert werden.", + "example_sentence_english": "The trash must be transported away.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "transportieren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22899 + }, + { + "word": "achtzig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eighty", + "romanization": "achtzig", + "example_sentence_native": "Sie ist achtzig Jahre alt.", + "example_sentence_english": "She is eighty years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 22900 + }, + { + "word": "anspielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allude to;to hint at", + "romanization": "anspielen", + "example_sentence_native": "Er wollte auf das Problem anspielen.", + "example_sentence_english": "He wanted to allude to the problem.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22906 + }, + { + "word": "Anmarsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach;advance", + "romanization": "Anmarsch", + "example_sentence_native": "Die Gäste sind im Anmarsch.", + "example_sentence_english": "The guests are on their way.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22908 + }, + { + "word": "Asylrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asylum law;right to asylum", + "romanization": "Asylrecht", + "example_sentence_native": "Das Asylrecht ist ein wichtiges Thema.", + "example_sentence_english": "Asylum law is an important topic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22912 + }, + { + "word": "aufgewendet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expended;spent", + "romanization": "aufgewendet", + "example_sentence_native": "Die aufgewendete Zeit war es wert.", + "example_sentence_english": "The time expended was worth it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22915 + }, + { + "word": "Auswahlverfahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selection process", + "romanization": "Auswahlverfahren", + "example_sentence_native": "Das Auswahlverfahren für die neue Stelle ist sehr streng.", + "example_sentence_english": "The selection process for the new position is very strict.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22920 + }, + { + "word": "Automobilhersteller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automobile manufacturer", + "romanization": "Automobilhersteller", + "example_sentence_native": "Der Automobilhersteller plant, ein neues Elektromodell auf den Markt zu bringen.", + "example_sentence_english": "The automobile manufacturer plans to launch a new electric model.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22921 + }, + { + "word": "Bahncard", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "train discount card", + "romanization": "Bahncard", + "example_sentence_native": "Ich habe eine Bahncard 50 für meine Reisen.", + "example_sentence_english": "I have a Bahncard 50 for my travels.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 22923 + }, + { + "word": "Barrett", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beret", + "romanization": "Barrett", + "example_sentence_native": "Sie trug ein elegantes Barrett auf dem Kopf.", + "example_sentence_english": "She wore an elegant beret on her head.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 22924 + }, + { + "word": "Basar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bazaar;market", + "romanization": "Basar", + "example_sentence_native": "Auf dem Basar gab es viele interessante Dinge zu kaufen.", + "example_sentence_english": "There were many interesting things to buy at the bazaar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22925 + }, + { + "word": "Berichterstatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reporter;rapporteur", + "romanization": "Berichterstatter", + "example_sentence_native": "Der Berichterstatter informierte über die neuesten Entwicklungen.", + "example_sentence_english": "The reporter informed about the latest developments.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22927 + }, + { + "word": "Berufskolleg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocational college", + "romanization": "Berufskolleg", + "example_sentence_native": "Nach der Schule besuchte er ein Berufskolleg, um einen technischen Beruf zu lernen.", + "example_sentence_english": "After school, he attended a vocational college to learn a technical profession.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22929 + }, + { + "word": "Beschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fitting;condensation;shoeing", + "romanization": "Beschlag", + "example_sentence_native": "Der Beschlag an den Fenstern zeigte, wie kalt es draußen war.", + "example_sentence_english": "The condensation on the windows showed how cold it was outside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22930 + }, + { + "word": "Bezirksregierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "district government", + "romanization": "Bezirksregierung", + "example_sentence_native": "Die Bezirksregierung ist für die Verwaltung der Region zuständig.", + "example_sentence_english": "The district government is responsible for the administration of the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22932 + }, + { + "word": "Biotechnologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biotechnology", + "romanization": "Biotechnologie", + "example_sentence_native": "Die Biotechnologie bietet innovative Lösungen für die Medizin.", + "example_sentence_english": "Biotechnology offers innovative solutions for medicine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22933 + }, + { + "word": "Blutkörperchen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blood cell", + "romanization": "Blutkörperchen", + "example_sentence_native": "Rote Blutkörperchen transportieren Sauerstoff im Körper.", + "example_sentence_english": "Red blood cells transport oxygen in the body.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22934 + }, + { + "word": "Breitbandausbau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "broadband expansion", + "romanization": "Breitbandausbau", + "example_sentence_native": "Der Breitbandausbau ist wichtig für die digitale Infrastruktur.", + "example_sentence_english": "Broadband expansion is important for the digital infrastructure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22936 + }, + { + "word": "Busfahrt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bus ride", + "romanization": "Busfahrt", + "example_sentence_native": "Die Busfahrt zum Strand dauerte eine Stunde.", + "example_sentence_english": "The bus ride to the beach took an hour.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22939 + }, + { + "word": "Bändchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small ribbon;wristband", + "romanization": "Bändchen", + "example_sentence_native": "Sie trug ein hübsches Bändchen im Haar.", + "example_sentence_english": "She wore a pretty small ribbon in her hair.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22941 + }, + { + "word": "Büffel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buffalo;(slang) crammer;swot", + "romanization": "Büffel", + "example_sentence_native": "Der Büffel graste auf der weiten Ebene.", + "example_sentence_english": "The buffalo grazed on the wide plain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22942 + }, + { + "word": "Charakteristik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic;feature", + "romanization": "Charakteristik", + "example_sentence_native": "Eine wichtige Charakteristik dieses Materials ist seine Härte.", + "example_sentence_english": "An important characteristic of this material is its hardness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22948 + }, + { + "word": "Chassis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chassis;frame", + "romanization": "Chassis", + "example_sentence_native": "Das Chassis des Autos war stark beschädigt.", + "example_sentence_english": "The car's chassis was heavily damaged.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22949 + }, + { + "word": "Christkind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christ Child (figure who brings gifts at Christmas in some German-speaking regions)", + "romanization": "Christkind", + "example_sentence_native": "Das Christkind bringt die Geschenke an Heiligabend.", + "example_sentence_english": "The Christ Child brings the presents on Christmas Eve.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22950 + }, + { + "word": "Chromosom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chromosome", + "romanization": "Chromosom", + "example_sentence_native": "Jedes Chromosom enthält genetische Informationen.", + "example_sentence_english": "Each chromosome contains genetic information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22951 + }, + { + "word": "Clash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clash;conflict", + "romanization": "Clash", + "example_sentence_native": "Es gab einen Clash der Kulturen.", + "example_sentence_english": "There was a clash of cultures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22953 + }, + { + "word": "Competition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition", + "romanization": "Competition", + "example_sentence_native": "Die Competition in diesem Markt ist sehr stark.", + "example_sentence_english": "The competition in this market is very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22954 + }, + { + "word": "Couleur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "color;tint;(fig.) character;stripe (e.g.;political)", + "romanization": "Couleur", + "example_sentence_native": "Er zeigte seine wahre Couleur in der Debatte.", + "example_sentence_english": "He showed his true colors in the debate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22955 + }, + { + "word": "Dackel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dachshund;badger dog", + "romanization": "Dackel", + "example_sentence_native": "Unser Dackel ist sehr verspielt.", + "example_sentence_english": "Our dachshund is very playful.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22956 + }, + { + "word": "dekorativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorative", + "romanization": "dekorativ", + "example_sentence_native": "Die Vase ist sehr dekorativ.", + "example_sentence_english": "The vase is very decorative.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22957 + }, + { + "word": "diesseits", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on this side;on this side of", + "romanization": "diesseits", + "example_sentence_native": "Diesseits des Flusses ist das Land fruchtbarer.", + "example_sentence_english": "On this side of the river, the land is more fertile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 22960 + }, + { + "word": "diffamieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to defame;to slander", + "romanization": "diffamieren", + "example_sentence_native": "Er versuchte, seinen Ruf zu diffamieren.", + "example_sentence_english": "He tried to defame his reputation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22961 + }, + { + "word": "dunkelblau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark blue", + "romanization": "dunkelblau", + "example_sentence_native": "Sie trug ein dunkelblaues Kleid.", + "example_sentence_english": "She wore a dark blue dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22966 + }, + { + "word": "durchgreifen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take drastic measures;to intervene decisively", + "romanization": "durchgreifen", + "example_sentence_native": "Die Regierung muss jetzt durchgreifen.", + "example_sentence_english": "The government must now take decisive action.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "greifen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22967 + }, + { + "word": "ebensowenig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "just as little;no more than", + "romanization": "ebensowenig", + "example_sentence_native": "Er wusste es nicht, und ich ebensowenig.", + "example_sentence_english": "He didn't know it, and neither did I.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 22969 + }, + { + "word": "ehelichen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to marry (formally)", + "romanization": "ehelichen", + "example_sentence_native": "Sie beschlossen, sich im Frühling zu ehelichen.", + "example_sentence_english": "They decided to marry in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22970 + }, + { + "word": "Ehrenbürger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "honorary citizen", + "romanization": "Ehrenbürger", + "example_sentence_native": "Er wurde zum Ehrenbürger der Stadt ernannt.", + "example_sentence_english": "He was appointed an honorary citizen of the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22971 + }, + { + "word": "einlaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shrink (clothes);to enter (ship);to run in (shoes)", + "romanization": "einlaufen", + "example_sentence_native": "Die Hose ist beim Waschen eingelaufen.", + "example_sentence_english": "The trousers shrunk in the wash.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22973 + }, + { + "word": "Einsiedler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermit;recluse", + "romanization": "Einsiedler", + "example_sentence_native": "Der alte Mann lebte wie ein Einsiedler im Wald.", + "example_sentence_english": "The old man lived like a hermit in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22974 + }, + { + "word": "Elastizität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elasticity", + "romanization": "Elastizität", + "example_sentence_native": "Die Elastizität des Materials ist sehr hoch.", + "example_sentence_english": "The elasticity of the material is very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22975 + }, + { + "word": "Elektrifizierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electrification", + "romanization": "Elektrifizierung", + "example_sentence_native": "Die Elektrifizierung der Bahnstrecke ist ein großes Projekt.", + "example_sentence_english": "The electrification of the railway line is a big project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22977 + }, + { + "word": "entgegenstehen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to oppose;to stand in the way of", + "romanization": "entgegenstehen", + "example_sentence_native": "Diesen Plänen stehen große Hindernisse entgegen.", + "example_sentence_english": "Great obstacles stand in the way of these plans.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22979 + }, + { + "word": "entgegensetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppose;to counter", + "romanization": "entgegensetzen", + "example_sentence_native": "Er musste sich den Vorwürfen entgegensetzen.", + "example_sentence_english": "He had to oppose the accusations.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "entgegen", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22980 + }, + { + "word": "erdenklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceivable;imaginable", + "romanization": "erdenklich", + "example_sentence_native": "Wir haben alles erdenkliche getan, um zu helfen.", + "example_sentence_english": "We did everything conceivable to help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22981 + }, + { + "word": "erfragen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inquire;to ask for", + "romanization": "erfragen", + "example_sentence_native": "Sie wollte den Weg erfragen.", + "example_sentence_english": "She wanted to ask for the way.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22982 + }, + { + "word": "Erfrischung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshment", + "romanization": "Erfrischung", + "example_sentence_native": "Nach dem langen Spaziergang brauchten wir eine Erfrischung.", + "example_sentence_english": "After the long walk, we needed a refreshment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22983 + }, + { + "word": "erklärbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explainable;explicable", + "romanization": "erklärbar", + "example_sentence_native": "Das Phänomen ist nicht erklärbar.", + "example_sentence_english": "The phenomenon is not explainable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 22986 + }, + { + "word": "Erschütterung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tremor;shock;concussion", + "romanization": "Erschütterung", + "example_sentence_native": "Die Erschütterung war im ganzen Haus zu spüren.", + "example_sentence_english": "The tremor could be felt throughout the house.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22987 + }, + { + "word": "erstehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquire;to buy", + "romanization": "erstehen", + "example_sentence_native": "Er konnte das seltene Buch auf einer Auktion erstehen.", + "example_sentence_english": "He was able to acquire the rare book at an auction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22988 + }, + { + "word": "Ethnologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnology", + "romanization": "Ethnologie", + "example_sentence_native": "Sie studiert Ethnologie an der Universität.", + "example_sentence_english": "She studies ethnology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22991 + }, + { + "word": "Etikette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "etiquette;label", + "romanization": "Etikette", + "example_sentence_native": "Die Etikette verlangt, dass man pünktlich ist.", + "example_sentence_english": "Etiquette requires one to be punctual.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22992 + }, + { + "word": "Evangelist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evangelist", + "romanization": "Evangelist", + "example_sentence_native": "Der Evangelist predigte vor einer großen Menge.", + "example_sentence_english": "The evangelist preached before a large crowd.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22993 + }, + { + "word": "expandieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expand", + "romanization": "expandieren", + "example_sentence_native": "Das Unternehmen plant, international zu expandieren.", + "example_sentence_english": "The company plans to expand internationally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 22994 + }, + { + "word": "Fahrerflucht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hit-and-run (leaving the scene of an accident)", + "romanization": "Fahrerflucht", + "example_sentence_native": "Nach dem Unfall beging der Fahrer Fahrerflucht.", + "example_sentence_english": "After the accident, the driver committed hit-and-run.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22995 + }, + { + "word": "Familienpolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "family policy", + "romanization": "Familienpolitik", + "example_sentence_native": "Die Familienpolitik ist ein wichtiges Thema in der Regierung.", + "example_sentence_english": "Family policy is an important topic in the government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22996 + }, + { + "word": "Feldwebel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sergeant (military rank)", + "romanization": "Feldwebel", + "example_sentence_native": "Der Feldwebel gab den Befehl.", + "example_sentence_english": "The sergeant gave the order.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 22999 + }, + { + "word": "Freisetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "release;liberation", + "romanization": "Freisetzung", + "example_sentence_native": "Die Freisetzung von Energie ist ein wichtiger Prozess.", + "example_sentence_english": "The release of energy is an important process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23003 + }, + { + "word": "Fremdwort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loanword;foreign word", + "romanization": "Fremdwort", + "example_sentence_native": "Viele englische Wörter sind heute Fremdwörter im Deutschen.", + "example_sentence_english": "Many English words are now loanwords in German.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23004 + }, + { + "word": "fristlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without notice;summarily", + "romanization": "fristlos", + "example_sentence_native": "Er wurde fristlos entlassen.", + "example_sentence_english": "He was dismissed without notice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 23005 + }, + { + "word": "Frontmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frontman;leader", + "romanization": "Frontmann", + "example_sentence_native": "Der Frontmann der Band sang das Lied.", + "example_sentence_english": "The frontman of the band sang the song.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23006 + }, + { + "word": "Frömmigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "piety;devoutness", + "romanization": "Frömmigkeit", + "example_sentence_native": "Ihre Frömmigkeit war tief und aufrichtig.", + "example_sentence_english": "Her piety was deep and sincere.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23007 + }, + { + "word": "Fussnote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footnote", + "romanization": "Fussnote", + "example_sentence_native": "Bitte beachten Sie die Fussnote am Ende der Seite.", + "example_sentence_english": "Please note the footnote at the bottom of the page.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23009 + }, + { + "word": "fünfjährig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "five-year-old;five-year", + "romanization": "fünfjährig", + "example_sentence_native": "Mein fünfjähriger Neffe spielt gerne im Garten.", + "example_sentence_english": "My five-year-old nephew likes to play in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23010 + }, + { + "word": "Gartenarbeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gardening;garden work", + "romanization": "Gartenarbeit", + "example_sentence_native": "Meine Großmutter liebt die Gartenarbeit.", + "example_sentence_english": "My grandmother loves gardening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23013 + }, + { + "word": "Geheiss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "command;bidding;behest", + "romanization": "Geheiss", + "example_sentence_native": "Er handelte auf Geheiß seines Vorgesetzten.", + "example_sentence_english": "He acted at the command of his superior.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23016 + }, + { + "word": "Gejammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whining;lamenting;constant complaining", + "romanization": "Gejammer", + "example_sentence_native": "Sein ständiges Gejammer ging mir auf die Nerven.", + "example_sentence_english": "His constant whining got on my nerves.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23017 + }, + { + "word": "Gelatine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gelatin", + "romanization": "Gelatine", + "example_sentence_native": "Für das Dessert brauchen wir Gelatine.", + "example_sentence_english": "We need gelatin for the dessert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23018 + }, + { + "word": "Gerichtsurteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court judgment", + "romanization": "Gerichtsurteil", + "example_sentence_native": "Das Gerichtsurteil wurde heute verkündet.", + "example_sentence_english": "The court judgment was announced today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23020 + }, + { + "word": "Gesamtkonzept", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall concept", + "romanization": "Gesamtkonzept", + "example_sentence_native": "Wir müssen ein Gesamtkonzept für das Projekt entwickeln.", + "example_sentence_english": "We need to develop an overall concept for the project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23021 + }, + { + "word": "spicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheat (in an exam)", + "romanization": "spicken", + "example_sentence_native": "Er wurde erwischt, als er versuchte, bei der Prüfung zu spicken.", + "example_sentence_english": "He was caught trying to cheat on the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23022 + }, + { + "word": "Gewerbetreibende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tradesperson;business owner", + "romanization": "Gewerbetreibende", + "example_sentence_native": "Die Gewerbetreibenden in der Stadt fordern Unterstützung.", + "example_sentence_english": "The business owners in the city are demanding support.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23023 + }, + { + "word": "Gleichsetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equation;identification", + "romanization": "Gleichsetzung", + "example_sentence_native": "Die Gleichsetzung von Reichtum und Glück ist oft irreführend.", + "example_sentence_english": "The equation of wealth and happiness is often misleading.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23024 + }, + { + "word": "Glossar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glossary", + "romanization": "Glossar", + "example_sentence_native": "Am Ende des Buches finden Sie ein nützliches Glossar.", + "example_sentence_english": "At the end of the book, you will find a useful glossary.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23025 + }, + { + "word": "Glucose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glucose", + "romanization": "Glucose", + "example_sentence_native": "Glucose ist eine wichtige Energiequelle für den Körper.", + "example_sentence_english": "Glucose is an important energy source for the body.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23026 + }, + { + "word": "Glückseligkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bliss;felicity", + "romanization": "Glückseligkeit", + "example_sentence_native": "Er suchte die wahre Glückseligkeit im einfachen Leben.", + "example_sentence_english": "He sought true bliss in a simple life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23027 + }, + { + "word": "Goldmünze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gold coin", + "romanization": "Goldmünze", + "example_sentence_native": "Er fand eine alte Goldmünze im Garten.", + "example_sentence_english": "He found an old gold coin in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23029 + }, + { + "word": "Gondel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gondola", + "romanization": "Gondel", + "example_sentence_native": "Wir fuhren mit der Gondel auf den Berg.", + "example_sentence_english": "We rode the gondola up the mountain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23030 + }, + { + "word": "gießen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pour;to water", + "romanization": "gießen", + "example_sentence_native": "Vergiss nicht, die Blumen zu gießen.", + "example_sentence_english": "Don't forget to water the flowers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23032 + }, + { + "word": "Gütesiegel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quality seal;seal of approval", + "romanization": "Gütesiegel", + "example_sentence_native": "Das Produkt trägt ein offizielles Gütesiegel.", + "example_sentence_english": "The product bears an official quality seal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23035 + }, + { + "word": "haftbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liable;responsible", + "romanization": "haftbar", + "example_sentence_native": "Der Verkäufer ist für Mängel haftbar.", + "example_sentence_english": "The seller is liable for defects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23036 + }, + { + "word": "Halluzination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hallucination", + "romanization": "Halluzination", + "example_sentence_native": "Er litt unter starken Halluzinationen.", + "example_sentence_english": "He suffered from severe hallucinations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23037 + }, + { + "word": "Handumdrehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instant;twinkling of an eye", + "romanization": "Handumdrehen", + "example_sentence_native": "Er erledigte die Aufgabe im Handumdrehen.", + "example_sentence_english": "He completed the task in an instant.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23038 + }, + { + "word": "Harmony", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmony", + "romanization": "Harmony", + "example_sentence_native": "Sie leben in perfekter Harmony miteinander.", + "example_sentence_english": "They live in perfect harmony with each other.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23039 + }, + { + "word": "Haschisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hashish", + "romanization": "Haschisch", + "example_sentence_native": "Der Besitz von Haschisch ist in vielen Ländern illegal.", + "example_sentence_english": "The possession of hashish is illegal in many countries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23042 + }, + { + "word": "Hauptfach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "major subject", + "romanization": "Hauptfach", + "example_sentence_native": "Mein Hauptfach an der Universität war Geschichte.", + "example_sentence_english": "My major subject at university was history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23043 + }, + { + "word": "Hauptschulabschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lower secondary school leaving certificate", + "romanization": "Hauptschulabschluss", + "example_sentence_native": "Er hat seinen Hauptschulabschluss letztes Jahr gemacht.", + "example_sentence_english": "He got his lower secondary school leaving certificate last year.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23044 + }, + { + "word": "hauseigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in-house;homemade", + "romanization": "hauseigen", + "example_sentence_native": "Wir verwenden nur hauseigene Produkte.", + "example_sentence_english": "We only use in-house products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23045 + }, + { + "word": "Hausflur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hallway;entrance hall", + "romanization": "Hausflur", + "example_sentence_native": "Der Hausflur ist sehr eng.", + "example_sentence_english": "The hallway is very narrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23046 + }, + { + "word": "heidnisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pagan;heathen", + "romanization": "heidnisch", + "example_sentence_native": "Viele alte Kulturen hatten heidnische Rituale.", + "example_sentence_english": "Many ancient cultures had pagan rituals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23048 + }, + { + "word": "heterosexuell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterosexual", + "romanization": "heterosexuell", + "example_sentence_native": "Sie identifiziert sich als heterosexuell.", + "example_sentence_english": "She identifies as heterosexual.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23051 + }, + { + "word": "Heuschrecke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grasshopper;locust", + "romanization": "Heuschrecke", + "example_sentence_native": "Eine Heuschrecke sprang über das Feld.", + "example_sentence_english": "A grasshopper jumped across the field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23052 + }, + { + "word": "Hilferuf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cry for help;distress call", + "romanization": "Hilferuf", + "example_sentence_native": "Sie hörte einen lauten Hilferuf aus dem Wald.", + "example_sentence_english": "She heard a loud cry for help from the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23053 + }, + { + "word": "Himmelreich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kingdom of heaven", + "romanization": "Himmelreich", + "example_sentence_native": "Im Himmelreich gibt es keinen Schmerz.", + "example_sentence_english": "In the kingdom of heaven there is no pain.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23054 + }, + { + "word": "hochziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pull up;hoist", + "romanization": "hochziehen", + "example_sentence_native": "Er musste die Flagge hochziehen.", + "example_sentence_english": "He had to pull up the flag.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hoch", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23056 + }, + { + "word": "informell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informal", + "romanization": "informell", + "example_sentence_native": "Das Treffen war sehr informell.", + "example_sentence_english": "The meeting was very informal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23059 + }, + { + "word": "Inhaberin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owner (female)", + "romanization": "Inhaberin", + "example_sentence_native": "Die Inhaberin des Geschäfts war sehr freundlich.", + "example_sentence_english": "The owner of the shop was very friendly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23060 + }, + { + "word": "Jugendzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youth;adolescence", + "romanization": "Jugendzeit", + "example_sentence_native": "Meine Jugendzeit war voller Abenteuer.", + "example_sentence_english": "My youth was full of adventures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23064 + }, + { + "word": "Kaiserschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "C-section;Caesarean section", + "romanization": "Kaiserschnitt", + "example_sentence_native": "Das Baby kam per Kaiserschnitt zur Welt.", + "example_sentence_english": "The baby was born by C-section.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23065 + }, + { + "word": "Kampfgeist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighting spirit;morale", + "romanization": "Kampfgeist", + "example_sentence_native": "Die Mannschaft zeigte großen Kampfgeist.", + "example_sentence_english": "The team showed great fighting spirit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23066 + }, + { + "word": "kenntlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identifiable;recognizable", + "romanization": "kenntlich", + "example_sentence_native": "Die Spuren waren kaum noch kenntlich.", + "example_sentence_english": "The traces were barely recognizable anymore.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23067 + }, + { + "word": "kleinlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petty;nitpicky", + "romanization": "kleinlich", + "example_sentence_native": "Sei nicht so kleinlich wegen der Rechnung.", + "example_sentence_english": "Don't be so petty about the bill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23068 + }, + { + "word": "Klimapolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climate policy", + "romanization": "Klimapolitik", + "example_sentence_native": "Die Klimapolitik ist ein wichtiges Thema.", + "example_sentence_english": "Climate policy is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23069 + }, + { + "word": "knöpfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to button;to fasten", + "romanization": "knöpfen", + "example_sentence_native": "Er knöpfte sein Hemd zu.", + "example_sentence_english": "He buttoned up his shirt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23070 + }, + { + "word": "Kollaboration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collaboration", + "romanization": "Kollaboration", + "example_sentence_native": "Das Projekt ist das Ergebnis einer engen Kollaboration.", + "example_sentence_english": "The project is the result of close collaboration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23071 + }, + { + "word": "Kolonist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonist", + "romanization": "Kolonist", + "example_sentence_native": "Die ersten Kolonisten kamen aus Europa.", + "example_sentence_english": "The first colonists came from Europe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23072 + }, + { + "word": "konzentriert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concentrated;focused", + "romanization": "konzentriert", + "example_sentence_native": "Er arbeitete sehr konzentriert an seiner Aufgabe.", + "example_sentence_english": "He worked very concentratedly on his task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23073 + }, + { + "word": "Kunstform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art form", + "romanization": "Kunstform", + "example_sentence_native": "Tanz ist eine alte Kunstform.", + "example_sentence_english": "Dance is an ancient art form.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23074 + }, + { + "word": "kuschelig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cozy;cuddly", + "romanization": "kuschelig", + "example_sentence_native": "Die Decke ist sehr kuschelig.", + "example_sentence_english": "The blanket is very cozy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23075 + }, + { + "word": "Körperbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physique;build", + "romanization": "Körperbau", + "example_sentence_native": "Er hat einen kräftigen Körperbau.", + "example_sentence_english": "He has a strong physique.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23076 + }, + { + "word": "Lebenspartner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "life partner", + "romanization": "Lebenspartner", + "example_sentence_native": "Mein Lebenspartner und ich planen eine Reise.", + "example_sentence_english": "My life partner and I are planning a trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23080 + }, + { + "word": "Leiharbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary work", + "romanization": "Leiharbeit", + "example_sentence_native": "Viele Unternehmen nutzen Leiharbeit, um flexible Arbeitskräfte zu haben.", + "example_sentence_english": "Many companies use temporary work to have flexible workers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23081 + }, + { + "word": "Lesebuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reading book", + "romanization": "Lesebuch", + "example_sentence_native": "Die Kinder lernen mit einem Lesebuch.", + "example_sentence_english": "The children learn with a reading book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23083 + }, + { + "word": "Lesezeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bookmark", + "romanization": "Lesezeichen", + "example_sentence_native": "Ich benutze ein Lesezeichen, um meine Seite zu markieren.", + "example_sentence_english": "I use a bookmark to mark my page.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23084 + }, + { + "word": "Lichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearing", + "romanization": "Lichtung", + "example_sentence_native": "Wir machten ein Picknick auf der Lichtung im Wald.", + "example_sentence_english": "We had a picnic in the clearing in the forest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23085 + }, + { + "word": "lind", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mild", + "romanization": "lind", + "example_sentence_native": "Ein linder Wind wehte durch die Bäume.", + "example_sentence_english": "A mild wind blew through the trees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23086 + }, + { + "word": "Lokalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "localization", + "romanization": "Lokalisierung", + "example_sentence_native": "Die Lokalisierung der Software ist für den internationalen Markt wichtig.", + "example_sentence_english": "The localization of the software is important for the international market.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23087 + }, + { + "word": "Lähmung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paralysis", + "romanization": "Lähmung", + "example_sentence_native": "Nach dem Unfall litt er unter einer Lähmung.", + "example_sentence_english": "After the accident, he suffered from paralysis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23089 + }, + { + "word": "Mainboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motherboard", + "romanization": "Mainboard", + "example_sentence_native": "Das Mainboard ist das Herzstück eines Computers.", + "example_sentence_english": "The motherboard is the heart of a computer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23090 + }, + { + "word": "makellos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flawless", + "romanization": "makellos", + "example_sentence_native": "Ihr Auftritt war makellos.", + "example_sentence_english": "Her performance was flawless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23092 + }, + { + "word": "Marktteilnehmer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "market participant", + "romanization": "Marktteilnehmer", + "example_sentence_native": "Die Marktteilnehmer reagierten auf die neuen Vorschriften.", + "example_sentence_english": "The market participants reacted to the new regulations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23095 + }, + { + "word": "Meisterstück", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masterpiece", + "romanization": "Meisterstück", + "example_sentence_native": "Das Gemälde gilt als sein Meisterstück.", + "example_sentence_english": "The painting is considered his masterpiece.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23096 + }, + { + "word": "Mem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meme", + "romanization": "Mem", + "example_sentence_native": "Das Internet ist voll von lustigen Mems.", + "example_sentence_english": "The internet is full of funny memes.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23098 + }, + { + "word": "Merch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchandise", + "romanization": "Merch", + "example_sentence_native": "Die Band verkauft viel Merch auf ihren Konzerten.", + "example_sentence_english": "The band sells a lot of merchandise at their concerts.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23099 + }, + { + "word": "militant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militant", + "romanization": "militant", + "example_sentence_native": "Die Gruppe vertritt militante Ansichten.", + "example_sentence_english": "The group holds militant views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23102 + }, + { + "word": "Mitfahrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger;fellow traveler", + "romanization": "Mitfahrer", + "example_sentence_native": "Der Mitfahrer hat mir geholfen.", + "example_sentence_english": "The passenger helped me.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23103 + }, + { + "word": "Mittelweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle ground;compromise", + "romanization": "Mittelweg", + "example_sentence_native": "Wir müssen einen Mittelweg finden.", + "example_sentence_english": "We need to find a middle ground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23106 + }, + { + "word": "Mofa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moped", + "romanization": "Mofa", + "example_sentence_native": "Er fährt mit seinem Mofa zur Arbeit.", + "example_sentence_english": "He rides his moped to work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23108 + }, + { + "word": "mollig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plump;chubby;cozy", + "romanization": "mollig", + "example_sentence_native": "Die Katze ist mollig und weich.", + "example_sentence_english": "The cat is plump and soft.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23109 + }, + { + "word": "Musiklehrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "music teacher", + "romanization": "Musiklehrer", + "example_sentence_native": "Mein Musiklehrer spielt Klavier.", + "example_sentence_english": "My music teacher plays piano.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23110 + }, + { + "word": "nachempfinden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to empathize with;to feel for", + "romanization": "nachempfinden", + "example_sentence_native": "Ich kann seine Trauer nachempfinden.", + "example_sentence_english": "I can empathize with his sadness.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "empfinden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23111 + }, + { + "word": "Nachgang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aftermath;follow-up", + "romanization": "Nachgang", + "example_sentence_native": "Im Nachgang der Veranstaltung gab es viele Fragen.", + "example_sentence_english": "In the aftermath of the event, there were many questions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23112 + }, + { + "word": "Nahaufnahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "close-up (shot)", + "romanization": "Nahaufnahme", + "example_sentence_native": "Der Fotograf machte eine Nahaufnahme des Gesichts.", + "example_sentence_english": "The photographer took a close-up of the face.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23113 + }, + { + "word": "Nahrungsaufnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food intake;ingestion", + "romanization": "Nahrungsaufnahme", + "example_sentence_native": "Die Nahrungsaufnahme ist für das Überleben unerlässlich.", + "example_sentence_english": "Food intake is essential for survival.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23114 + }, + { + "word": "Namensgebung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naming;nomenclature", + "romanization": "Namensgebung", + "example_sentence_native": "Die Namensgebung des neuen Produkts war schwierig.", + "example_sentence_english": "The naming of the new product was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23115 + }, + { + "word": "Nebengebäude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annex;outbuilding", + "romanization": "Nebengebäude", + "example_sentence_native": "Das Nebengebäude wird als Lager genutzt.", + "example_sentence_english": "The outbuilding is used as storage.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23116 + }, + { + "word": "neurologisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurological", + "romanization": "neurologisch", + "example_sentence_native": "Er hat eine neurologische Erkrankung.", + "example_sentence_english": "He has a neurological disease.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23118 + }, + { + "word": "offenlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disclose;to reveal", + "romanization": "offenlegen", + "example_sentence_native": "Er musste seine Finanzen offenlegen.", + "example_sentence_english": "He had to disclose his finances.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "offen", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23122 + }, + { + "word": "Panikmache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scaremongering;fear-mongering", + "romanization": "Panikmache", + "example_sentence_native": "Die Medien betreiben oft Panikmache.", + "example_sentence_english": "The media often engages in scaremongering.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23127 + }, + { + "word": "Parteiprogramm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party platform;party program", + "romanization": "Parteiprogramm", + "example_sentence_native": "Das Parteiprogramm wurde vorgestellt.", + "example_sentence_english": "The party platform was presented.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23128 + }, + { + "word": "Pocke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pock;smallpox", + "romanization": "Pocke", + "example_sentence_native": "Die Pocken waren eine gefürchtete Krankheit.", + "example_sentence_english": "Smallpox was a feared disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23132 + }, + { + "word": "Proklamation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proclamation", + "romanization": "Proklamation", + "example_sentence_native": "Die Proklamation des neuen Gesetzes erfolgte gestern.", + "example_sentence_english": "The proclamation of the new law took place yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23134 + }, + { + "word": "Präambel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preamble", + "romanization": "Präambel", + "example_sentence_native": "Die Präambel der Verfassung ist sehr wichtig.", + "example_sentence_english": "The preamble of the constitution is very important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23135 + }, + { + "word": "prädestiniert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predestined;ideally suited", + "romanization": "prädestiniert", + "example_sentence_native": "Er ist für diese Rolle prädestiniert.", + "example_sentence_english": "He is predestined for this role.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23136 + }, + { + "word": "Prügelei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brawl;fight", + "romanization": "Prügelei", + "example_sentence_native": "Es kam zu einer Prügelei in der Bar.", + "example_sentence_english": "There was a brawl in the bar.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23137 + }, + { + "word": "Pudel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poodle", + "romanization": "Pudel", + "example_sentence_native": "Mein Pudel ist sehr intelligent.", + "example_sentence_english": "My poodle is very intelligent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23138 + }, + { + "word": "Qualitätskontrolle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quality control", + "romanization": "Qualitätskontrolle", + "example_sentence_native": "Die Qualitätskontrolle ist entscheidend für das Produkt.", + "example_sentence_english": "Quality control is crucial for the product.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23139 + }, + { + "word": "Quereinsteiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "career changer", + "romanization": "Quereinsteiger", + "example_sentence_native": "Als Quereinsteiger fand er schnell eine neue Position.", + "example_sentence_english": "As a career changer, he quickly found a new position.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23140 + }, + { + "word": "Rastplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest stop", + "romanization": "Rastplatz", + "example_sentence_native": "Wir machten eine Pause an einem Rastplatz.", + "example_sentence_english": "We took a break at a rest stop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23143 + }, + { + "word": "reizend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charming", + "romanization": "reizend", + "example_sentence_native": "Sie ist eine sehr reizende Person.", + "example_sentence_english": "She is a very charming person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23144 + }, + { + "word": "rentabel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profitable", + "romanization": "rentabel", + "example_sentence_native": "Das Geschäft ist sehr rentabel.", + "example_sentence_english": "The business is very profitable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23146 + }, + { + "word": "Reservoir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reservoir", + "romanization": "Reservoir", + "example_sentence_native": "Das Reservoir versorgt die Stadt mit Wasser.", + "example_sentence_english": "The reservoir supplies the city with water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23147 + }, + { + "word": "Rollo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roller blind", + "romanization": "Rollo", + "example_sentence_native": "Zieh das Rollo hoch, es ist hell draußen.", + "example_sentence_english": "Pull up the roller blind, it's bright outside.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23150 + }, + { + "word": "Schatzkammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treasury", + "romanization": "Schatzkammer", + "example_sentence_native": "Die Kronjuwelen werden in der Schatzkammer aufbewahrt.", + "example_sentence_english": "The crown jewels are kept in the treasury.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23154 + }, + { + "word": "Schenker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donor", + "romanization": "Schenker", + "example_sentence_native": "Der Schenker wollte anonym bleiben.", + "example_sentence_english": "The donor wanted to remain anonymous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23155 + }, + { + "word": "schleppend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sluggishly", + "romanization": "schleppend", + "example_sentence_native": "Die Verhandlungen verliefen schleppend.", + "example_sentence_english": "The negotiations proceeded sluggishly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 23156 + }, + { + "word": "Schreibfehler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "typo", + "romanization": "Schreibfehler", + "example_sentence_native": "Entschuldigen Sie den Schreibfehler im Text.", + "example_sentence_english": "Excuse the typo in the text.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23157 + }, + { + "word": "Seenplatte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lake district", + "romanization": "Seenplatte", + "example_sentence_native": "Die Mecklenburgische Seenplatte ist ein beliebtes Reiseziel.", + "example_sentence_english": "The Mecklenburg Lake District is a popular travel destination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23158 + }, + { + "word": "sensibilisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sensitize", + "romanization": "sensibilisieren", + "example_sentence_native": "Wir müssen die Öffentlichkeit für dieses Thema sensibilisieren.", + "example_sentence_english": "We need to sensitize the public to this issue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23159 + }, + { + "word": "Sicherheitslage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security situation", + "romanization": "Sicherheitslage", + "example_sentence_native": "Die Sicherheitslage in der Region ist angespannt.", + "example_sentence_english": "The security situation in the region is tense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23161 + }, + { + "word": "Sonnencreme", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunscreen", + "romanization": "Sonnencreme", + "example_sentence_native": "Vergiss deine Sonnencreme nicht!", + "example_sentence_english": "Don't forget your sunscreen!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23164 + }, + { + "word": "Spike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spike", + "romanization": "Spike", + "example_sentence_native": "Der Spike in den Daten war unerwartet.", + "example_sentence_english": "The spike in the data was unexpected.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23165 + }, + { + "word": "Spätzle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Spätzle (a type of pasta;dumpling)", + "romanization": "Spätzle", + "example_sentence_native": "Ich liebe Spätzle mit Soße.", + "example_sentence_english": "I love Spätzle with sauce.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23166 + }, + { + "word": "Staatsmacht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state power", + "romanization": "Staatsmacht", + "example_sentence_native": "Die Staatsmacht muss die Rechte der Bürger schützen.", + "example_sentence_english": "The state power must protect the rights of the citizens.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23167 + }, + { + "word": "Stiefelette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ankle boot", + "romanization": "Stiefelette", + "example_sentence_native": "Sie trägt elegante Stiefeletten.", + "example_sentence_english": "She is wearing elegant ankle boots.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23168 + }, + { + "word": "Strg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ctrl (Control key)", + "romanization": "Strg", + "example_sentence_native": "Drücken Sie Strg + C zum Kopieren.", + "example_sentence_english": "Press Ctrl + C to copy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23169 + }, + { + "word": "Stripper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stripper (person)", + "romanization": "Stripper", + "example_sentence_native": "Der Stripper trat auf der Party auf.", + "example_sentence_english": "The stripper performed at the party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23170 + }, + { + "word": "Sunnit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sunni (person)", + "romanization": "Sunnit", + "example_sentence_native": "Er ist ein Sunnit.", + "example_sentence_english": "He is a Sunni.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23171 + }, + { + "word": "Südländer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Southerner (person from a southern country;region)", + "romanization": "Südländer", + "example_sentence_native": "Viele Südländer genießen das warme Klima.", + "example_sentence_english": "Many Southerners enjoy the warm climate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23172 + }, + { + "word": "Tannenbaum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fir tree;Christmas tree", + "romanization": "Tannenbaum", + "example_sentence_native": "Wir schmücken den Tannenbaum zu Weihnachten.", + "example_sentence_english": "We decorate the fir tree for Christmas.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23173 + }, + { + "word": "Teilhaber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partner;shareholder", + "romanization": "Teilhaber", + "example_sentence_native": "Er ist ein wichtiger Teilhaber der Firma.", + "example_sentence_english": "He is an important partner in the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23174 + }, + { + "word": "Terrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrier", + "romanization": "Terrier", + "example_sentence_native": "Unser Hund ist ein kleiner Terrier.", + "example_sentence_english": "Our dog is a small terrier.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23175 + }, + { + "word": "Textur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "texture", + "romanization": "Textur", + "example_sentence_native": "Die Textur des Stoffes ist sehr weich.", + "example_sentence_english": "The texture of the fabric is very soft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23176 + }, + { + "word": "Theatergruppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theater group", + "romanization": "Theatergruppe", + "example_sentence_native": "Sie ist Mitglied einer Theatergruppe.", + "example_sentence_english": "She is a member of a theater group.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23177 + }, + { + "word": "Touchdown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touchdown", + "romanization": "Touchdown", + "example_sentence_native": "Der Spieler erzielte einen Touchdown.", + "example_sentence_english": "The player scored a touchdown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23181 + }, + { + "word": "Tulpe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tulip", + "romanization": "Tulpe", + "example_sentence_native": "Die Tulpe ist eine schöne Blume.", + "example_sentence_english": "The tulip is a beautiful flower.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23185 + }, + { + "word": "umschließen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enclose;to surround", + "romanization": "umschließen", + "example_sentence_native": "Eine Mauer umschließt den Garten.", + "example_sentence_english": "A wall encloses the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23187 + }, + { + "word": "umwerfend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stunning;overwhelming", + "romanization": "umwerfend", + "example_sentence_native": "Sie sah in dem Kleid umwerfend aus.", + "example_sentence_english": "She looked stunning in the dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23188 + }, + { + "word": "unbezahlt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpaid", + "romanization": "unbezahlt", + "example_sentence_native": "Er hat noch viele unbezahlte Rechnungen.", + "example_sentence_english": "He still has many unpaid bills.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23189 + }, + { + "word": "Unfallort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accident site", + "romanization": "Unfallort", + "example_sentence_native": "Die Polizei sicherte den Unfallort ab.", + "example_sentence_english": "The police secured the accident site.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23190 + }, + { + "word": "unglücklicherweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunately", + "romanization": "unglücklicherweise", + "example_sentence_native": "Unglücklicherweise regnete es den ganzen Tag.", + "example_sentence_english": "Unfortunately, it rained all day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 23191 + }, + { + "word": "unlustig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unamusing;cheerless", + "romanization": "unlustig", + "example_sentence_native": "Er machte einen unlustigen Witz.", + "example_sentence_english": "He made an unamusing joke.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23192 + }, + { + "word": "unplugged", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unplugged", + "romanization": "unplugged", + "example_sentence_native": "Die Band spielte ein unplugged Konzert.", + "example_sentence_english": "The band played an unplugged concert.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23193 + }, + { + "word": "unterkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find accommodation;to get by", + "romanization": "unterkommen", + "example_sentence_native": "Wir müssen sehen, wo wir heute Nacht unterkommen können.", + "example_sentence_english": "We need to see where we can find accommodation tonight.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "unter", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23194 + }, + { + "word": "Unterlassung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omission;failure to act", + "romanization": "Unterlassung", + "example_sentence_native": "Das war eine schwere Unterlassung.", + "example_sentence_english": "That was a serious omission.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23195 + }, + { + "word": "Unterschicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lower class", + "romanization": "Unterschicht", + "example_sentence_native": "Die Unterschicht hat oft mit vielen Problemen zu kämpfen.", + "example_sentence_english": "The lower class often struggles with many problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23196 + }, + { + "word": "verdammen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to condemn;to damn", + "romanization": "verdammen", + "example_sentence_native": "Er wurde für seine Taten verdammt.", + "example_sentence_english": "He was condemned for his actions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23199 + }, + { + "word": "Verfassungsänderung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional amendment", + "romanization": "Verfassungsänderung", + "example_sentence_native": "Die Verfassungsänderung wurde vom Parlament verabschiedet.", + "example_sentence_english": "The constitutional amendment was passed by parliament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23200 + }, + { + "word": "verifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to verify", + "romanization": "verifizieren", + "example_sentence_native": "Sie müssen Ihre Identität verifizieren.", + "example_sentence_english": "You need to verify your identity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23201 + }, + { + "word": "Verkehrsanbindung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transport connection", + "romanization": "Verkehrsanbindung", + "example_sentence_native": "Die Stadt hat eine ausgezeichnete Verkehrsanbindung.", + "example_sentence_english": "The city has an excellent transport connection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23202 + }, + { + "word": "Versicherungsschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurance coverage", + "romanization": "Versicherungsschutz", + "example_sentence_native": "Prüfen Sie Ihren Versicherungsschutz vor der Reise.", + "example_sentence_english": "Check your insurance coverage before the trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23203 + }, + { + "word": "vorangehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go ahead;to precede", + "romanization": "vorangehen", + "example_sentence_native": "Ich werde vorangehen, um den Weg zu zeigen.", + "example_sentence_english": "I will go ahead to show the way.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "voran", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23205 + }, + { + "word": "Vorkenntnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prior knowledge", + "romanization": "Vorkenntnis", + "example_sentence_native": "Für diesen Kurs sind keine Vorkenntnisse erforderlich.", + "example_sentence_english": "No prior knowledge is required for this course.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23206 + }, + { + "word": "Vormundschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guardianship", + "romanization": "Vormundschaft", + "example_sentence_native": "Das Gericht hat ihr die Vormundschaft für das Kind übertragen.", + "example_sentence_english": "The court granted her guardianship of the child.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23207 + }, + { + "word": "vorschnell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rashly;prematurely", + "romanization": "vorschnell", + "example_sentence_native": "Man sollte keine vorschnellen Entscheidungen treffen.", + "example_sentence_english": "One should not make rash decisions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 23208 + }, + { + "word": "Wahlberechtigter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eligible voter", + "romanization": "Wahlberechtigter", + "example_sentence_native": "Jeder Wahlberechtigte sollte sein Recht nutzen.", + "example_sentence_english": "Every eligible voter should exercise their right.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23209 + }, + { + "word": "Wasserwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterworks;water treatment plant", + "romanization": "Wasserwerk", + "example_sentence_native": "Das Wasserwerk versorgt die ganze Stadt mit sauberem Wasser.", + "example_sentence_english": "The waterworks supplies the whole city with clean water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23210 + }, + { + "word": "Weinstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cream of tartar;tartaric acid", + "romanization": "Weinstein", + "example_sentence_native": "Weinstein wird oft beim Backen verwendet.", + "example_sentence_english": "Cream of tartar is often used in baking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23211 + }, + { + "word": "Wertsache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valuable (item)", + "romanization": "Wertsache", + "example_sentence_native": "Bitte bewahren Sie Ihre Wertsachen im Safe auf.", + "example_sentence_english": "Please keep your valuables in the safe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23213 + }, + { + "word": "widerwärtig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repulsive;disgusting", + "romanization": "widerwärtig", + "example_sentence_native": "Sein Verhalten war wirklich widerwärtig.", + "example_sentence_english": "His behavior was truly repulsive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23214 + }, + { + "word": "Wirtschaftskammer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chamber of commerce;economy", + "romanization": "Wirtschaftskammer", + "example_sentence_native": "Die Wirtschaftskammer vertritt die Interessen der Unternehmen.", + "example_sentence_english": "The chamber of commerce represents the interests of businesses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23219 + }, + { + "word": "Wirtschaftsleistung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic output", + "romanization": "Wirtschaftsleistung", + "example_sentence_native": "Die Wirtschaftsleistung des Landes ist im letzten Quartal gestiegen.", + "example_sentence_english": "The country's economic output increased in the last quarter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23220 + }, + { + "word": "Wissenschaftlerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female scientist", + "romanization": "Wissenschaftlerin", + "example_sentence_native": "Die junge Wissenschaftlerin präsentierte ihre Forschungsergebnisse.", + "example_sentence_english": "The young female scientist presented her research findings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23221 + }, + { + "word": "Zurückweisung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejection", + "romanization": "Zurückweisung", + "example_sentence_native": "Er musste eine Zurückweisung seiner Bewerbung hinnehmen.", + "example_sentence_english": "He had to accept a rejection of his application.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23228 + }, + { + "word": "zusammenfügen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assemble", + "romanization": "zusammenfügen", + "example_sentence_native": "Wir müssen die Teile zusammenfügen.", + "example_sentence_english": "We need to assemble the parts.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "fügen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23229 + }, + { + "word": "zustehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "due", + "romanization": "zustehend", + "example_sentence_native": "Das ist der Betrag, der Ihnen zustehend ist.", + "example_sentence_english": "That is the amount that is due to you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23230 + }, + { + "word": "zweitgross", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "second largest", + "romanization": "zweitgross", + "example_sentence_native": "Berlin ist die zweitgrösste Stadt Deutschlands.", + "example_sentence_english": "Berlin is the second largest city in Germany.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23231 + }, + { + "word": "Zwischenstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interim result", + "romanization": "Zwischenstand", + "example_sentence_native": "Der Zwischenstand des Spiels ist 2 zu 1.", + "example_sentence_english": "The interim result of the game is 2 to 1.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23232 + }, + { + "word": "zwölft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twelfth", + "romanization": "zwölft", + "example_sentence_native": "Heute ist der zwölfte Dezember.", + "example_sentence_english": "Today is the twelfth of December.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 23233 + }, + { + "word": "Ärztekammer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medical association", + "romanization": "Ärztekammer", + "example_sentence_native": "Die Ärztekammer ist für die Berufsordnung zuständig.", + "example_sentence_english": "The medical association is responsible for professional regulations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23234 + }, + { + "word": "Übeltäter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culprit", + "romanization": "Übeltäter", + "example_sentence_native": "Der Übeltäter wurde von der Polizei gefasst.", + "example_sentence_english": "The culprit was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23237 + }, + { + "word": "Übertritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer", + "romanization": "Übertritt", + "example_sentence_native": "Sein Übertritt zu einem anderen Verein war überraschend.", + "example_sentence_english": "His transfer to another club was surprising.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23238 + }, + { + "word": "abgelassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drained;released", + "romanization": "abgelassen", + "example_sentence_native": "Das Wasser wurde aus dem Pool abgelassen.", + "example_sentence_english": "The water was drained from the pool.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23240 + }, + { + "word": "Abhang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slope;hillside", + "romanization": "Abhang", + "example_sentence_native": "Sie wanderten den steilen Abhang hinauf.", + "example_sentence_english": "They hiked up the steep slope.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23242 + }, + { + "word": "abschreckend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deterrent;intimidating", + "romanization": "abschreckend", + "example_sentence_native": "Die abschreckende Wirkung der Strafe war gering.", + "example_sentence_english": "The deterrent effect of the punishment was small.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23244 + }, + { + "word": "Abstract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstract (summary)", + "romanization": "Abstract", + "example_sentence_native": "Bitte lesen Sie das Abstract der Studie.", + "example_sentence_english": "Please read the abstract of the study.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23245 + }, + { + "word": "Acryl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acrylic", + "romanization": "Acryl", + "example_sentence_native": "Das Bild wurde mit Acrylfarben gemalt.", + "example_sentence_english": "The painting was done with acrylic paints.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23248 + }, + { + "word": "Adipositas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obesity", + "romanization": "Adipositas", + "example_sentence_native": "Adipositas ist ein ernstes Gesundheitsproblem.", + "example_sentence_english": "Obesity is a serious health problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23249 + }, + { + "word": "Ais", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A-sharp (musical note)", + "romanization": "Ais", + "example_sentence_native": "Der Geiger spielte ein klares Ais.", + "example_sentence_english": "The violinist played a clear A-sharp.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23251 + }, + { + "word": "Amokläufer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spree killer;rampager", + "romanization": "Amokläufer", + "example_sentence_native": "Die Polizei suchte nach dem Amokläufer.", + "example_sentence_english": "The police were looking for the spree killer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23253 + }, + { + "word": "angezeigt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "displayed;indicated;reported", + "romanization": "angezeigt", + "example_sentence_native": "Die angezeigte Temperatur war zu hoch.", + "example_sentence_english": "The displayed temperature was too high.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23255 + }, + { + "word": "anliegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjacent;close-fitting", + "romanization": "anliegend", + "example_sentence_native": "Das anliegende Grundstück steht zum Verkauf.", + "example_sentence_english": "The adjacent property is for sale.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23256 + }, + { + "word": "Ara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "macaw", + "romanization": "Ara", + "example_sentence_native": "Der bunte Ara saß auf der Schulter des Piraten.", + "example_sentence_english": "The colorful macaw sat on the pirate's shoulder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23257 + }, + { + "word": "armenisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Armenian", + "romanization": "armenisch", + "example_sentence_native": "Sie sprach fließend Armenisch.", + "example_sentence_english": "She spoke fluent Armenian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23258 + }, + { + "word": "Atemweg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "airway;respiratory tract", + "romanization": "Atemweg", + "example_sentence_native": "Eine Blockade der Atemwege kann lebensbedrohlich sein.", + "example_sentence_english": "An airway blockage can be life-threatening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23259 + }, + { + "word": "Atomausstieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear phase-out", + "romanization": "Atomausstieg", + "example_sentence_native": "Der Atomausstieg ist ein kontroverses Thema in Deutschland.", + "example_sentence_english": "The nuclear phase-out is a controversial topic in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23261 + }, + { + "word": "aufkommend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerging;arising", + "romanization": "aufkommend", + "example_sentence_native": "Es gibt eine aufkommende Bewegung für mehr Umweltschutz.", + "example_sentence_english": "There is an emerging movement for more environmental protection.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23262 + }, + { + "word": "Aufreger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause for excitement;annoyance;fuss", + "romanization": "Aufreger", + "example_sentence_native": "Die Nachricht war ein echter Aufreger für alle.", + "example_sentence_english": "The news was a real cause for excitement for everyone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23263 + }, + { + "word": "ausgereift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mature;well-developed", + "romanization": "ausgereift", + "example_sentence_native": "Das Produkt ist noch nicht ausgereift.", + "example_sentence_english": "The product is not yet mature.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23266 + }, + { + "word": "Auslauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "run;expiry;outlet", + "romanization": "Auslauf", + "example_sentence_native": "Der Hund braucht viel Auslauf.", + "example_sentence_english": "The dog needs a lot of run.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23267 + }, + { + "word": "Ausrichter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organizer;host", + "romanization": "Ausrichter", + "example_sentence_native": "Der Ausrichter des Turniers gab die Regeln bekannt.", + "example_sentence_english": "The organizer of the tournament announced the rules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23268 + }, + { + "word": "Baracke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barracks;hut", + "romanization": "Baracke", + "example_sentence_native": "Die Soldaten lebten in einer Baracke.", + "example_sentence_english": "The soldiers lived in a barracks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23270 + }, + { + "word": "Bearbeiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "editor;processor;handler", + "romanization": "Bearbeiter", + "example_sentence_native": "Der Bearbeiter der Anfrage meldet sich bald.", + "example_sentence_english": "The handler of the request will get in touch soon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23272 + }, + { + "word": "Befristung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limitation;fixed-term (contract)", + "romanization": "Befristung", + "example_sentence_native": "Die Befristung des Arbeitsvertrags läuft bald ab.", + "example_sentence_english": "The fixed-term of the employment contract expires soon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23273 + }, + { + "word": "Begleiterin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female companion;escort", + "romanization": "Begleiterin", + "example_sentence_native": "Sie war seine ständige Begleiterin auf Reisen.", + "example_sentence_english": "She was his constant companion on travels.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23274 + }, + { + "word": "begnadigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pardon;to reprieve", + "romanization": "begnadigen", + "example_sentence_native": "Der Präsident kann einen Verurteilten begnadigen.", + "example_sentence_english": "The president can pardon a convicted person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23275 + }, + { + "word": "Begnadigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pardon;reprieve", + "romanization": "Begnadigung", + "example_sentence_native": "Er hoffte auf eine Begnadigung.", + "example_sentence_english": "He hoped for a pardon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23276 + }, + { + "word": "Begrifflichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terminology;conceptual framework", + "romanization": "Begrifflichkeit", + "example_sentence_native": "Die Begrifflichkeit in diesem Bereich ist komplex.", + "example_sentence_english": "The terminology in this area is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23277 + }, + { + "word": "Beisetzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burial;interment", + "romanization": "Beisetzung", + "example_sentence_native": "Die Beisetzung findet nächste Woche statt.", + "example_sentence_english": "The burial will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23279 + }, + { + "word": "Belt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belt", + "romanization": "Belt", + "example_sentence_native": "Er trägt einen schwarzen Belt.", + "example_sentence_english": "He is wearing a black belt.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23280 + }, + { + "word": "bereisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to travel around;to tour", + "romanization": "bereisen", + "example_sentence_native": "Er möchte die ganze Welt bereisen.", + "example_sentence_english": "He wants to travel around the whole world.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23283 + }, + { + "word": "beurlauben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant leave;to furlough", + "romanization": "beurlauben", + "example_sentence_native": "Der Chef wird ihn für eine Woche beurlauben.", + "example_sentence_english": "The boss will grant him leave for a week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23285 + }, + { + "word": "bevölkern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to populate;to inhabit", + "romanization": "bevölkern", + "example_sentence_native": "Viele Tiere bevölkern diesen Wald.", + "example_sentence_english": "Many animals inhabit this forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23286 + }, + { + "word": "Beweislast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burden of proof", + "romanization": "Beweislast", + "example_sentence_native": "Die Beweislast liegt beim Kläger.", + "example_sentence_english": "The burden of proof lies with the plaintiff.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23287 + }, + { + "word": "bissi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a little bit (colloquial)", + "romanization": "bissi", + "example_sentence_native": "Kannst du mir bissi helfen?", + "example_sentence_english": "Can you help me a little bit?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 23288 + }, + { + "word": "Blocker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blocker;stopper", + "romanization": "Blocker", + "example_sentence_native": "Der Blocker hat den Ball abgewehrt.", + "example_sentence_english": "The blocker fended off the ball.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23289 + }, + { + "word": "brilliant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brilliant;excellent", + "romanization": "brilliant", + "example_sentence_native": "Das war eine brillante Idee!", + "example_sentence_english": "That was a brilliant idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23293 + }, + { + "word": "Buchautor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "book author", + "romanization": "Buchautor", + "example_sentence_native": "Der Buchautor stellte sein neues Werk vor.", + "example_sentence_english": "The book author presented his new work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23295 + }, + { + "word": "Bundeshauptstadt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal capital", + "romanization": "Bundeshauptstadt", + "example_sentence_native": "Berlin ist die Bundeshauptstadt Deutschlands.", + "example_sentence_english": "Berlin is the federal capital of Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23297 + }, + { + "word": "Böschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embankment;slope", + "romanization": "Böschung", + "example_sentence_native": "Die Böschung war steil und rutschig.", + "example_sentence_english": "The embankment was steep and slippery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23298 + }, + { + "word": "Cake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cake", + "romanization": "Cake", + "example_sentence_native": "Möchtest du ein Stück Cake?", + "example_sentence_english": "Would you like a piece of cake?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23299 + }, + { + "word": "deponieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deposit;to file", + "romanization": "deponieren", + "example_sentence_native": "Sie müssen die Dokumente deponieren.", + "example_sentence_english": "You must deposit the documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23307 + }, + { + "word": "dirigieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conduct (an orchestra);to direct", + "romanization": "dirigieren", + "example_sentence_native": "Der Maestro wird das Orchester dirigieren.", + "example_sentence_english": "The maestro will conduct the orchestra.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23308 + }, + { + "word": "Diskothek", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "discotheque;nightclub", + "romanization": "Diskothek", + "example_sentence_native": "Wir gehen heute Abend in die Diskothek.", + "example_sentence_english": "We are going to the discotheque tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23309 + }, + { + "word": "Drehscheibe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turntable;hub;pivot", + "romanization": "Drehscheibe", + "example_sentence_native": "Der Flughafen ist eine wichtige Drehscheibe für internationale Flüge.", + "example_sentence_english": "The airport is an important hub for international flights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23314 + }, + { + "word": "Eindämmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "containment;curbing;damming", + "romanization": "Eindämmung", + "example_sentence_native": "Die Eindämmung des Virus ist entscheidend.", + "example_sentence_english": "The containment of the virus is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23319 + }, + { + "word": "einfühlsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empathetic", + "romanization": "einfühlsam", + "example_sentence_native": "Sie ist eine sehr einfühlsame Person.", + "example_sentence_english": "She is a very empathetic person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23320 + }, + { + "word": "Einschüchterung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidation", + "romanization": "Einschüchterung", + "example_sentence_native": "Die Einschüchterung der Zeugen ist illegal.", + "example_sentence_english": "The intimidation of witnesses is illegal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23321 + }, + { + "word": "Einsendung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "submission", + "romanization": "Einsendung", + "example_sentence_native": "Die Frist für die Einsendung ist morgen.", + "example_sentence_english": "The deadline for submission is tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23322 + }, + { + "word": "Ekstase", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecstasy", + "romanization": "Ekstase", + "example_sentence_native": "Sie tanzte in Ekstase.", + "example_sentence_english": "She danced in ecstasy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23323 + }, + { + "word": "erbittert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fierce", + "romanization": "erbittert", + "example_sentence_native": "Es war ein erbitterter Kampf.", + "example_sentence_english": "It was a fierce battle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23330 + }, + { + "word": "Erfahrungsaustausch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange of experiences", + "romanization": "Erfahrungsaustausch", + "example_sentence_native": "Wir hatten einen nützlichen Erfahrungsaustausch.", + "example_sentence_english": "We had a useful exchange of experiences.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23331 + }, + { + "word": "erklimmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to climb", + "romanization": "erklimmen", + "example_sentence_native": "Sie versuchten, den Berg zu erklimmen.", + "example_sentence_english": "They tried to climb the mountain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23332 + }, + { + "word": "Eso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "New Age (colloquial for esotericism)", + "romanization": "Eso", + "example_sentence_native": "Er interessiert sich für Eso-Themen.", + "example_sentence_english": "He is interested in New Age topics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23333 + }, + { + "word": "Ester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ester (chemical compound)", + "romanization": "Ester", + "example_sentence_native": "Ester sind organische Verbindungen.", + "example_sentence_english": "Esters are organic compounds.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23334 + }, + { + "word": "Facelift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facelift", + "romanization": "Facelift", + "example_sentence_native": "Das Auto bekam ein Facelift.", + "example_sentence_english": "The car got a facelift.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23335 + }, + { + "word": "Fanatismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fanaticism", + "romanization": "Fanatismus", + "example_sentence_native": "Religiöser Fanatismus kann gefährlich sein.", + "example_sentence_english": "Religious fanaticism can be dangerous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23336 + }, + { + "word": "Fasnacht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Carnival (Southern Germany;Switzerland)", + "romanization": "Fasnacht", + "example_sentence_native": "Die Fasnacht wird in vielen Städten gefeiert.", + "example_sentence_english": "Carnival is celebrated in many cities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23337 + }, + { + "word": "festmachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fasten", + "romanization": "festmachen", + "example_sentence_native": "Er musste das Boot am Steg festmachen.", + "example_sentence_english": "He had to moor the boat to the jetty.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fest", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23338 + }, + { + "word": "Feuerwache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fire station", + "romanization": "Feuerwache", + "example_sentence_native": "Die Feuerwache ist gleich um die Ecke.", + "example_sentence_english": "The fire station is just around the corner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23339 + }, + { + "word": "Fingerspitze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fingertip", + "romanization": "Fingerspitze", + "example_sentence_native": "Sie berührte die Oberfläche mit der Fingerspitze.", + "example_sentence_english": "She touched the surface with her fingertip.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23340 + }, + { + "word": "Flamenco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flamenco", + "romanization": "Flamenco", + "example_sentence_native": "Er liebt es, Flamenco zu tanzen.", + "example_sentence_english": "He loves to dance flamenco.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23341 + }, + { + "word": "Flint", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flint", + "romanization": "Flint", + "example_sentence_native": "Feuerstein (Flint) wurde früher für Werkzeuge verwendet.", + "example_sentence_english": "Flint was formerly used for tools.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23342 + }, + { + "word": "Floskel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platitude;stock phrase", + "romanization": "Floskel", + "example_sentence_native": "Seine Rede war voller leerer Floskeln.", + "example_sentence_english": "His speech was full of empty platitudes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23343 + }, + { + "word": "Following", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following (e.g.;on social media)", + "romanization": "Following", + "example_sentence_native": "Sie hat ein großes Following auf Instagram.", + "example_sentence_english": "She has a large following on Instagram.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23344 + }, + { + "word": "formieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to form;to shape", + "romanization": "formieren", + "example_sentence_native": "Die Soldaten formierten sich zu einer Reihe.", + "example_sentence_english": "The soldiers formed a line.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23345 + }, + { + "word": "Fähnrich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ensign;cadet officer", + "romanization": "Fähnrich", + "example_sentence_native": "Der junge Fähnrich führte die Truppe an.", + "example_sentence_english": "The young ensign led the troop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23348 + }, + { + "word": "Garnele", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shrimp;prawn", + "romanization": "Garnele", + "example_sentence_native": "Ich esse gerne Garnelen mit Knoblauch.", + "example_sentence_english": "I like to eat shrimp with garlic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23350 + }, + { + "word": "gastieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to guest;to perform as a guest", + "romanization": "gastieren", + "example_sentence_native": "Die Band wird nächste Woche in Berlin gastieren.", + "example_sentence_english": "The band will guest in Berlin next week.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23351 + }, + { + "word": "Gaudi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fun;prank;revelry", + "romanization": "Gaudi", + "example_sentence_native": "Das war eine riesige Gaudi auf dem Fest.", + "example_sentence_english": "That was a huge fun at the festival.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23352 + }, + { + "word": "Geber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giver;donor", + "romanization": "Geber", + "example_sentence_native": "Der Geber der Spende möchte anonym bleiben.", + "example_sentence_english": "The donor of the donation wishes to remain anonymous.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23353 + }, + { + "word": "Gedankenwelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "world of thought;intellectual world", + "romanization": "Gedankenwelt", + "example_sentence_native": "Seine Gedankenwelt ist sehr komplex.", + "example_sentence_english": "His world of thought is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23354 + }, + { + "word": "killen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kill (informal;often figurative)", + "romanization": "killen", + "example_sentence_native": "Das Spiel hat meine Langeweile gekillt.", + "example_sentence_english": "The game killed my boredom.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23355 + }, + { + "word": "Geldbusse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine (monetary)", + "romanization": "Geldbusse", + "example_sentence_native": "Er musste eine hohe Geldbusse zahlen.", + "example_sentence_english": "He had to pay a high fine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23356 + }, + { + "word": "Genealogie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genealogy", + "romanization": "Genealogie", + "example_sentence_native": "Sie forscht in der Genealogie ihrer Familie.", + "example_sentence_english": "She researches her family's genealogy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23357 + }, + { + "word": "Gesamtpaket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall package;complete package", + "romanization": "Gesamtpaket", + "example_sentence_native": "Das Angebot ist ein attraktives Gesamtpaket.", + "example_sentence_english": "The offer is an attractive overall package.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23358 + }, + { + "word": "geschmückt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorated;adorned", + "romanization": "geschmückt", + "example_sentence_native": "Der Weihnachtsbaum war wunderschön geschmückt.", + "example_sentence_english": "The Christmas tree was beautifully decorated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23359 + }, + { + "word": "taggen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tag", + "romanization": "taggen", + "example_sentence_native": "Wir müssen die Fotos taggen, damit wir sie später leichter finden können.", + "example_sentence_english": "We need to tag the photos so we can find them more easily later.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23360 + }, + { + "word": "Gipfeltreffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summit meeting", + "romanization": "Gipfeltreffen", + "example_sentence_native": "Das Gipfeltreffen der Staatschefs findet nächste Woche statt.", + "example_sentence_english": "The summit meeting of the heads of state will take place next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23361 + }, + { + "word": "Grundkurs", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basic course", + "romanization": "Grundkurs", + "example_sentence_native": "Ich habe einen Grundkurs in Spanisch belegt.", + "example_sentence_english": "I took a basic course in Spanish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23366 + }, + { + "word": "Grundregel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basic rule", + "romanization": "Grundregel", + "example_sentence_native": "Die Grundregel ist, immer höflich zu sein.", + "example_sentence_english": "The basic rule is to always be polite.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23367 + }, + { + "word": "Grundsteinlegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laying of the foundation stone", + "romanization": "Grundsteinlegung", + "example_sentence_native": "Die Grundsteinlegung für das neue Gebäude findet nächste Woche statt.", + "example_sentence_english": "The laying of the foundation stone for the new building will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23368 + }, + { + "word": "Gulag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Gulag", + "romanization": "Gulag", + "example_sentence_native": "Viele Menschen wurden in den Gulag geschickt.", + "example_sentence_english": "Many people were sent to the Gulag.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23370 + }, + { + "word": "Hauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tusk;miner", + "romanization": "Hauer", + "example_sentence_native": "Der Eber hatte beeindruckende Hauer.", + "example_sentence_english": "The boar had impressive tusks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23371 + }, + { + "word": "Haufe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heap;pile (often in \"ein Haufe\")", + "romanization": "Haufe", + "example_sentence_native": "Er hatte einen Haufe Arbeit vor sich.", + "example_sentence_english": "He had a heap of work in front of him.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23372 + }, + { + "word": "Hauptsponsor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main sponsor", + "romanization": "Hauptsponsor", + "example_sentence_native": "Die Bank ist der Hauptsponsor des Festivals.", + "example_sentence_english": "The bank is the main sponsor of the festival.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23373 + }, + { + "word": "Hausrat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "household goods;furnishings", + "romanization": "Hausrat", + "example_sentence_native": "Sie versicherte ihren gesamten Hausrat gegen Diebstahl.", + "example_sentence_english": "She insured all her household goods against theft.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23374 + }, + { + "word": "herausarbeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work out;to elaborate", + "romanization": "herausarbeiten", + "example_sentence_native": "Er musste die Details des Plans sorgfältig herausarbeiten.", + "example_sentence_english": "He had to carefully work out the details of the plan.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heraus", + "base_verb": "arbeiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23380 + }, + { + "word": "Hindu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hindu", + "romanization": "Hindu", + "example_sentence_native": "Er ist ein Hindu.", + "example_sentence_english": "He is a Hindu.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23382 + }, + { + "word": "hinzugeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add (to something)", + "romanization": "hinzugeben", + "example_sentence_native": "Sie müssen noch etwas Salz hinzugeben.", + "example_sentence_english": "You still need to add some salt.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hinzu", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23383 + }, + { + "word": "Hocke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squat;crouch", + "romanization": "Hocke", + "example_sentence_native": "Er ging in die Hocke, um das Kind zu umarmen.", + "example_sentence_english": "He went into a squat to hug the child.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23386 + }, + { + "word": "Hungerstreik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hunger strike", + "romanization": "Hungerstreik", + "example_sentence_native": "Die Gefangenen traten in einen Hungerstreik.", + "example_sentence_english": "The prisoners went on a hunger strike.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23389 + }, + { + "word": "Imago", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imago (adult insect;idealized image)", + "romanization": "Imago", + "example_sentence_native": "Die Raupe verwandelt sich in die Imago des Schmetterlings.", + "example_sentence_english": "The caterpillar transforms into the imago of the butterfly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23391 + }, + { + "word": "Impfgegner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-vaxxer;vaccine opponent", + "romanization": "Impfgegner", + "example_sentence_native": "Die Impfgegner demonstrierten gegen die Impfpflicht.", + "example_sentence_english": "The anti-vaxxers demonstrated against mandatory vaccination.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23392 + }, + { + "word": "Inflationsrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflation rate", + "romanization": "Inflationsrate", + "example_sentence_native": "Die Inflationsrate ist im letzten Monat gestiegen.", + "example_sentence_english": "The inflation rate increased last month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23393 + }, + { + "word": "innenpolitisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domestic political;internal political", + "romanization": "innenpolitisch", + "example_sentence_native": "Die innenpolitische Lage ist angespannt.", + "example_sentence_english": "The domestic political situation is tense.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23394 + }, + { + "word": "Kaktus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cactus", + "romanization": "Kaktus", + "example_sentence_native": "Der Kaktus braucht nicht viel Wasser.", + "example_sentence_english": "The cactus doesn't need much water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23400 + }, + { + "word": "Kapellmeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conductor (of an orchestra;choir)", + "romanization": "Kapellmeister", + "example_sentence_native": "Der Kapellmeister hob den Taktstock.", + "example_sentence_english": "The conductor raised the baton.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23401 + }, + { + "word": "Karriereende", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "end of career", + "romanization": "Karriereende", + "example_sentence_native": "Sein Karriereende kam überraschend.", + "example_sentence_english": "His career end came surprisingly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23402 + }, + { + "word": "keltisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Celtic", + "romanization": "keltisch", + "example_sentence_native": "Die keltische Kultur ist sehr alt.", + "example_sentence_english": "The Celtic culture is very old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23404 + }, + { + "word": "Kindergeburtstag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "children's birthday party", + "romanization": "Kindergeburtstag", + "example_sentence_native": "Wir feiern einen Kindergeburtstag.", + "example_sentence_english": "We are celebrating a children's birthday party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23407 + }, + { + "word": "Kleinod", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jewel;treasure", + "romanization": "Kleinod", + "example_sentence_native": "Das alte Buch war ein wahres Kleinod.", + "example_sentence_english": "The old book was a true treasure.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23408 + }, + { + "word": "Kommerz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commerce;commercialism", + "romanization": "Kommerz", + "example_sentence_native": "Der Kommerz dominiert oft die Feiertage.", + "example_sentence_english": "Commercialism often dominates the holidays.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23410 + }, + { + "word": "kommunikativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communicative", + "romanization": "kommunikativ", + "example_sentence_native": "Sie ist eine sehr kommunikative Person.", + "example_sentence_english": "She is a very communicative person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23411 + }, + { + "word": "Konsonant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consonant", + "romanization": "Konsonant", + "example_sentence_native": "Das Wort „Buch“ beginnt mit einem Konsonanten.", + "example_sentence_english": "The word \"Buch\" begins with a consonant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23412 + }, + { + "word": "Konsorte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "associate;accomplice", + "romanization": "Konsorte", + "example_sentence_native": "Er wurde mit seinen Konsorten verhaftet.", + "example_sentence_english": "He was arrested with his associates.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23413 + }, + { + "word": "kostspielig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expensive;costly", + "romanization": "kostspielig", + "example_sentence_native": "Das Projekt war sehr kostspielig.", + "example_sentence_english": "The project was very costly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23414 + }, + { + "word": "Kreisgebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district area;county area", + "romanization": "Kreisgebiet", + "example_sentence_native": "Das Kreisgebiet umfasst mehrere Gemeinden.", + "example_sentence_english": "The district area includes several municipalities.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23415 + }, + { + "word": "Kreuzigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucifixion", + "romanization": "Kreuzigung", + "example_sentence_native": "Die Kreuzigung ist ein zentrales Thema in der christlichen Kunst.", + "example_sentence_english": "The crucifixion is a central theme in Christian art.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23416 + }, + { + "word": "Krypto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crypto (cryptocurrency)", + "romanization": "Krypto", + "example_sentence_native": "Viele investieren in Krypto.", + "example_sentence_english": "Many invest in crypto.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23417 + }, + { + "word": "Kundendatum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customer data", + "romanization": "Kundendatum", + "example_sentence_native": "Wir schützen unsere Kundendaten.", + "example_sentence_english": "We protect our customer data.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23418 + }, + { + "word": "Kurhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spa house;cure house", + "romanization": "Kurhaus", + "example_sentence_native": "Das Kurhaus bietet verschiedene Wellness-Behandlungen an.", + "example_sentence_english": "The spa house offers various wellness treatments.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23419 + }, + { + "word": "Kurpark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spa park", + "romanization": "Kurpark", + "example_sentence_native": "Der Kurpark ist ein schöner Ort zum Entspannen.", + "example_sentence_english": "The spa park is a beautiful place to relax.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23420 + }, + { + "word": "kursieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to circulate", + "romanization": "kursieren", + "example_sentence_native": "Gerüchte kursieren in der Stadt.", + "example_sentence_english": "Rumors are circulating in the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23421 + }, + { + "word": "köpfig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "-headed (as in 'two-headed')", + "romanization": "köpfig", + "example_sentence_native": "Das ist ein dreiköpfiges Team.", + "example_sentence_english": "This is a three-headed team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23424 + }, + { + "word": "Laken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sheet (bed sheet)", + "romanization": "Laken", + "example_sentence_native": "Das Laken auf dem Bett ist sauber.", + "example_sentence_english": "The sheet on the bed is clean.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23426 + }, + { + "word": "Landesliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state list (electoral list)", + "romanization": "Landesliste", + "example_sentence_native": "Sie wurde über die Landesliste gewählt.", + "example_sentence_english": "She was elected via the state list.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23427 + }, + { + "word": "Lebensmittelindustrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food industry", + "romanization": "Lebensmittelindustrie", + "example_sentence_native": "Die Lebensmittelindustrie ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "The food industry is an important economic sector.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23429 + }, + { + "word": "Leibwächter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bodyguard", + "romanization": "Leibwächter", + "example_sentence_native": "Der Präsident hat einen Leibwächter.", + "example_sentence_english": "The president has a bodyguard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23430 + }, + { + "word": "logistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logistical", + "romanization": "logistisch", + "example_sentence_native": "Das Projekt ist logistisch sehr anspruchsvoll.", + "example_sentence_english": "The project is logistically very demanding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23436 + }, + { + "word": "lukrativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lucrative", + "romanization": "lukrativ", + "example_sentence_native": "Das Geschäft war sehr lukrativ.", + "example_sentence_english": "The business was very lucrative.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23438 + }, + { + "word": "länglich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oblong;elongated", + "romanization": "länglich", + "example_sentence_native": "Die Form des Tisches ist länglich.", + "example_sentence_english": "The shape of the table is oblong.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23439 + }, + { + "word": "Maid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maid;maiden", + "romanization": "Maid", + "example_sentence_native": "Die Maid trug ein einfaches Kleid.", + "example_sentence_english": "The maid wore a simple dress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23440 + }, + { + "word": "Mangold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chard;Swiss chard", + "romanization": "Mangold", + "example_sentence_native": "Wir haben Mangold im Garten angebaut.", + "example_sentence_english": "We grew chard in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23444 + }, + { + "word": "marginal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marginal", + "romanization": "marginal", + "example_sentence_native": "Das ist nur ein marginaler Unterschied.", + "example_sentence_english": "That is only a marginal difference.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23445 + }, + { + "word": "Marshal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marshal", + "romanization": "Marshal", + "example_sentence_native": "Der Marshal überwachte die Parade.", + "example_sentence_english": "The marshal supervised the parade.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23447 + }, + { + "word": "martial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "martial", + "romanization": "martial", + "example_sentence_native": "Er zeigte eine martialische Haltung.", + "example_sentence_english": "He showed a martial attitude.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23448 + }, + { + "word": "Medienlandschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "media landscape", + "romanization": "Medienlandschaft", + "example_sentence_native": "Die Medienlandschaft hat sich stark verändert.", + "example_sentence_english": "The media landscape has changed significantly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23450 + }, + { + "word": "meditieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to meditate", + "romanization": "meditieren", + "example_sentence_native": "Sie versucht jeden Morgen zu meditieren.", + "example_sentence_english": "She tries to meditate every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23452 + }, + { + "word": "Meinungsbildung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opinion formation", + "romanization": "Meinungsbildung", + "example_sentence_native": "Die Meinungsbildung in der Gesellschaft ist komplex.", + "example_sentence_english": "Opinion formation in society is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23453 + }, + { + "word": "Meteor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteor", + "romanization": "Meteor", + "example_sentence_native": "Ein heller Meteor leuchtete am Nachthimmel.", + "example_sentence_english": "A bright meteor shone in the night sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23455 + }, + { + "word": "Mittelteil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "middle part;central section", + "romanization": "Mittelteil", + "example_sentence_native": "Der Mittelteil des Buches war am spannendsten.", + "example_sentence_english": "The middle part of the book was the most exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23457 + }, + { + "word": "Mumie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mummy", + "romanization": "Mumie", + "example_sentence_native": "Die Mumie wurde in einem alten Grab gefunden.", + "example_sentence_english": "The mummy was found in an ancient tomb.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23462 + }, + { + "word": "mundtot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silenced;gagged", + "romanization": "mundtot", + "example_sentence_native": "Er wurde mundtot gemacht und durfte seine Meinung nicht äußern.", + "example_sentence_english": "He was silenced and not allowed to express his opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23463 + }, + { + "word": "Musikszene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "music scene", + "romanization": "Musikszene", + "example_sentence_native": "Die lokale Musikszene ist sehr lebendig.", + "example_sentence_english": "The local music scene is very vibrant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23464 + }, + { + "word": "Muskelkater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscle soreness", + "romanization": "Muskelkater", + "example_sentence_native": "Nach dem Training hatte ich starken Muskelkater.", + "example_sentence_english": "After the workout, I had severe muscle soreness.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23465 + }, + { + "word": "Möwe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seagull", + "romanization": "Möwe", + "example_sentence_native": "Eine Möwe flog über das Meer.", + "example_sentence_english": "A seagull flew over the sea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23466 + }, + { + "word": "Nacktfoto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nude photo", + "romanization": "Nacktfoto", + "example_sentence_native": "Das Nacktfoto wurde ohne ihre Zustimmung veröffentlicht.", + "example_sentence_english": "The nude photo was published without her consent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23467 + }, + { + "word": "ortsansässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local;resident", + "romanization": "ortsansässig", + "example_sentence_native": "Wir bevorzugen ortsansässige Unternehmen.", + "example_sentence_english": "We prefer local businesses.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23476 + }, + { + "word": "ostfriesisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "East Frisian", + "romanization": "ostfriesisch", + "example_sentence_native": "Er spricht den ostfriesischen Dialekt.", + "example_sentence_english": "He speaks the East Frisian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23478 + }, + { + "word": "outen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to out (someone);to come out (reflexive)", + "romanization": "outen", + "example_sentence_native": "Er hat sich als schwul geoutet.", + "example_sentence_english": "He came out as gay.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23479 + }, + { + "word": "Passus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "passage (of text)", + "romanization": "Passus", + "example_sentence_native": "Dieser Passus im Buch ist schwer zu verstehen.", + "example_sentence_english": "This passage in the book is difficult to understand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23483 + }, + { + "word": "Pelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skin;peel (informal)", + "romanization": "Pelle", + "example_sentence_native": "Die Pelle der Wurst ist essbar.", + "example_sentence_english": "The skin of the sausage is edible.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23485 + }, + { + "word": "Persönlichkeitsentwicklung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personality development", + "romanization": "Persönlichkeitsentwicklung", + "example_sentence_native": "Persönlichkeitsentwicklung ist ein lebenslanger Prozess.", + "example_sentence_english": "Personality development is a lifelong process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23487 + }, + { + "word": "Pesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pesto", + "romanization": "Pesto", + "example_sentence_native": "Ich mache Nudeln mit Pesto.", + "example_sentence_english": "I am making pasta with pesto.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23488 + }, + { + "word": "physiologisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiological", + "romanization": "physiologisch", + "example_sentence_native": "Das ist eine physiologische Reaktion des Körpers.", + "example_sentence_english": "That is a physiological reaction of the body.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23489 + }, + { + "word": "Pokalspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cup match;game", + "romanization": "Pokalspiel", + "example_sentence_native": "Das Pokalspiel findet am Samstag statt.", + "example_sentence_english": "The cup match will take place on Saturday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23491 + }, + { + "word": "Pornografie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pornography", + "romanization": "Pornografie", + "example_sentence_native": "Die Diskussion über Pornografie ist oft kontrovers.", + "example_sentence_english": "The discussion about pornography is often controversial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23492 + }, + { + "word": "Praktikantin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female intern", + "romanization": "Praktikantin", + "example_sentence_native": "Die neue Praktikantin beginnt nächste Woche.", + "example_sentence_english": "The new female intern starts next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23493 + }, + { + "word": "Probefahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "test drive", + "romanization": "Probefahrt", + "example_sentence_native": "Ich mache eine Probefahrt mit dem neuen Auto.", + "example_sentence_english": "I am taking the new car for a test drive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23494 + }, + { + "word": "produzierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "producing;manufacturing", + "romanization": "produzierend", + "example_sentence_native": "Die produzierende Industrie ist wichtig für die Wirtschaft.", + "example_sentence_english": "The manufacturing industry is important for the economy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23495 + }, + { + "word": "Propeller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propeller", + "romanization": "Propeller", + "example_sentence_native": "Der Propeller des Flugzeugs drehte sich schnell.", + "example_sentence_english": "The airplane's propeller spun quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23496 + }, + { + "word": "prozentual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percentage-wise;proportional", + "romanization": "prozentual", + "example_sentence_native": "Die prozentuale Steigerung war beeindruckend.", + "example_sentence_english": "The percentage increase was impressive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23497 + }, + { + "word": "pusten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to blow", + "romanization": "pusten", + "example_sentence_native": "Das Kind pustet Seifenblasen.", + "example_sentence_english": "The child blows soap bubbles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23498 + }, + { + "word": "quetschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to squeeze;to crush", + "romanization": "quetschen", + "example_sentence_native": "Er musste sich durch die Menge quetschen.", + "example_sentence_english": "He had to squeeze through the crowd.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23499 + }, + { + "word": "Randalierer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rioter", + "romanization": "Randalierer", + "example_sentence_native": "Die Polizei verhaftete mehrere Randalierer nach der Demonstration.", + "example_sentence_english": "The police arrested several rioters after the demonstration.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23501 + }, + { + "word": "ratifizieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ratify", + "romanization": "ratifizieren", + "example_sentence_native": "Das Parlament muss das Abkommen ratifizieren.", + "example_sentence_english": "The parliament must ratify the agreement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23502 + }, + { + "word": "Rechtsvorschrift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal regulation", + "romanization": "Rechtsvorschrift", + "example_sentence_native": "Diese Rechtsvorschrift ist seit letztem Jahr in Kraft.", + "example_sentence_english": "This legal regulation has been in force since last year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23505 + }, + { + "word": "Regierungserklärung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "government statement", + "romanization": "Regierungserklärung", + "example_sentence_native": "Die Kanzlerin gab eine Regierungserklärung ab.", + "example_sentence_english": "The Chancellor made a government statement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23506 + }, + { + "word": "Regionalverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regional transport", + "romanization": "Regionalverkehr", + "example_sentence_native": "Der Regionalverkehr ist oft überfüllt.", + "example_sentence_english": "Regional transport is often overcrowded.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23507 + }, + { + "word": "reinstecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put in;to stick in", + "romanization": "reinstecken", + "example_sentence_native": "Du musst den Stecker reinstecken.", + "example_sentence_english": "You have to plug in the connector.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rein", + "base_verb": "stecken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23509 + }, + { + "word": "Rheinländer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person from the Rhineland", + "romanization": "Rheinländer", + "example_sentence_native": "Die Rheinländer sind bekannt für ihre Gastfreundschaft.", + "example_sentence_english": "People from the Rhineland are known for their hospitality.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23511 + }, + { + "word": "Rheinufer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Rhine bank;shore", + "romanization": "Rheinufer", + "example_sentence_native": "Wir spazierten am Rheinufer entlang.", + "example_sentence_english": "We walked along the Rhine bank.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23514 + }, + { + "word": "rigoros", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rigorous;strict", + "romanization": "rigoros", + "example_sentence_native": "Er verfolgte seine Ziele rigoros.", + "example_sentence_english": "He pursued his goals rigorously.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23515 + }, + { + "word": "rittern", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to joust;to knight", + "romanization": "rittern", + "example_sentence_native": "Im Mittelalter pflegten Ritter zu rittern.", + "example_sentence_english": "In the Middle Ages, knights used to joust.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23516 + }, + { + "word": "Rohbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shell (of a building);carcass", + "romanization": "Rohbau", + "example_sentence_native": "Das Haus ist noch im Rohbau.", + "example_sentence_english": "The house is still in its shell (under construction).", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23519 + }, + { + "word": "Rolltreppe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "escalator", + "romanization": "Rolltreppe", + "example_sentence_native": "Die Rolltreppe ist kaputt.", + "example_sentence_english": "The escalator is broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23520 + }, + { + "word": "Rückstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provision (accounting)", + "romanization": "Rückstellung", + "example_sentence_native": "Das Unternehmen bildete eine Rückstellung für zukünftige Ausgaben.", + "example_sentence_english": "The company formed a provision for future expenses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23526 + }, + { + "word": "Rüge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reprimand", + "romanization": "Rüge", + "example_sentence_native": "Er erhielt eine Rüge für sein Verhalten.", + "example_sentence_english": "He received a reprimand for his behavior.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23527 + }, + { + "word": "Rüssel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk (elephant)", + "romanization": "Rüssel", + "example_sentence_native": "Der Elefant benutzt seinen Rüssel, um Wasser zu trinken.", + "example_sentence_english": "The elephant uses its trunk to drink water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23528 + }, + { + "word": "Schippe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shovel", + "romanization": "Schippe", + "example_sentence_native": "Er nahm die Schippe, um den Schnee wegzuschaufeln.", + "example_sentence_english": "He took the shovel to clear away the snow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23531 + }, + { + "word": "schmerzfrei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pain-free", + "romanization": "schmerzfrei", + "example_sentence_native": "Nach der Operation war er endlich schmerzfrei.", + "example_sentence_english": "After the operation, he was finally pain-free.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23533 + }, + { + "word": "schmuggeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smuggle", + "romanization": "schmuggeln", + "example_sentence_native": "Sie versuchten, Drogen über die Grenze zu schmuggeln.", + "example_sentence_english": "They tried to smuggle drugs across the border.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23534 + }, + { + "word": "Schnickschnack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knick-knacks", + "romanization": "Schnickschnack", + "example_sentence_native": "Kauf nicht so viel Schnickschnack!", + "example_sentence_english": "Don't buy so much knick-knacks!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23535 + }, + { + "word": "Schreibung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spelling", + "romanization": "Schreibung", + "example_sentence_native": "Die neue Schreibung ist kompliziert.", + "example_sentence_english": "The new spelling is complicated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23537 + }, + { + "word": "schächten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ritually slaughter", + "romanization": "schächten", + "example_sentence_native": "Das Schächten von Tieren ist in einigen Ländern verboten.", + "example_sentence_english": "The ritual slaughter of animals is forbidden in some countries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23538 + }, + { + "word": "sentimental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentimental", + "romanization": "sentimental", + "example_sentence_native": "Sie ist sehr sentimental, wenn sie alte Fotos ansieht.", + "example_sentence_english": "She is very sentimental when she looks at old photos.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23540 + }, + { + "word": "singend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "singing", + "romanization": "singend", + "example_sentence_native": "Das singende Kind erfreute alle.", + "example_sentence_english": "The singing child delighted everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23541 + }, + { + "word": "Slawe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Slav (male)", + "romanization": "Slawe", + "example_sentence_native": "Er ist ein Slawe.", + "example_sentence_english": "He is a Slav.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23543 + }, + { + "word": "Snooker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snooker", + "romanization": "Snooker", + "example_sentence_native": "Er spielt gerne Snooker am Wochenende.", + "example_sentence_english": "He likes to play snooker on weekends.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23545 + }, + { + "word": "Sonderangebot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "special offer", + "romanization": "Sonderangebot", + "example_sentence_native": "Dieses Sonderangebot ist nur heute gültig.", + "example_sentence_english": "This special offer is only valid today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23546 + }, + { + "word": "Sozialwohnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social housing apartment", + "romanization": "Sozialwohnung", + "example_sentence_native": "Viele Menschen leben in Sozialwohnungen.", + "example_sentence_english": "Many people live in social housing apartments.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23547 + }, + { + "word": "Spanner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrench;peeping tom", + "romanization": "Spanner", + "example_sentence_native": "Er benutzte einen Spanner, um die Schraube festzuziehen.", + "example_sentence_english": "He used a wrench to tighten the screw.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23548 + }, + { + "word": "Spermium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sperm cell", + "romanization": "Spermium", + "example_sentence_native": "Ein Spermium ist eine männliche Keimzelle.", + "example_sentence_english": "A sperm cell is a male germ cell.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23549 + }, + { + "word": "Spiritus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methylated spirits;alcohol", + "romanization": "Spiritus", + "example_sentence_native": "Er reinigte die Oberfläche mit Spiritus.", + "example_sentence_english": "He cleaned the surface with methylated spirits.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23550 + }, + { + "word": "sprunghaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erratic;volatile;jumpy", + "romanization": "sprunghaft", + "example_sentence_native": "Seine Stimmung war sprunghaft.", + "example_sentence_english": "His mood was erratic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23551 + }, + { + "word": "spulen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spool;to wind;to rewind", + "romanization": "spulen", + "example_sentence_native": "Kannst du das Band bitte zurückspulen?", + "example_sentence_english": "Can you please rewind the tape?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23552 + }, + { + "word": "Staatssekretärin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state secretary (female)", + "romanization": "Staatssekretärin", + "example_sentence_native": "Die Staatssekretärin hielt eine Rede.", + "example_sentence_english": "The state secretary gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23554 + }, + { + "word": "Stammplatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regular spot;place", + "romanization": "Stammplatz", + "example_sentence_native": "Er hat sich einen Stammplatz in der Mannschaft erkämpft.", + "example_sentence_english": "He fought for a regular spot on the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23555 + }, + { + "word": "steril", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterile", + "romanization": "steril", + "example_sentence_native": "Die Instrumente müssen steril sein.", + "example_sentence_english": "The instruments must be sterile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23556 + }, + { + "word": "stilisieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stylize", + "romanization": "stilisieren", + "example_sentence_native": "Der Künstler wollte die Figur stilisieren.", + "example_sentence_english": "The artist wanted to stylize the figure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23557 + }, + { + "word": "Stilllegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shutdown;decommissioning;closure", + "romanization": "Stilllegung", + "example_sentence_native": "Die Stilllegung des Atomkraftwerks ist geplant.", + "example_sentence_english": "The decommissioning of the nuclear power plant is planned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23558 + }, + { + "word": "stillschweigend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tacit;silent;implicit", + "romanization": "stillschweigend", + "example_sentence_native": "Sie gaben ihre stillschweigende Zustimmung.", + "example_sentence_english": "They gave their tacit consent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23559 + }, + { + "word": "stornieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cancel", + "romanization": "stornieren", + "example_sentence_native": "Wir müssen die Buchung stornieren.", + "example_sentence_english": "We have to cancel the booking.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23560 + }, + { + "word": "Strafvollzug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution of sentence;penal system", + "romanization": "Strafvollzug", + "example_sentence_native": "Der Strafvollzug in diesem Land ist umstritten.", + "example_sentence_english": "The penal system in this country is controversial.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23561 + }, + { + "word": "Tagesgeschäft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily business", + "romanization": "Tagesgeschäft", + "example_sentence_native": "Das Tagesgeschäft nimmt viel Zeit in Anspruch.", + "example_sentence_english": "The daily business takes up a lot of time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23563 + }, + { + "word": "Tampon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tampon", + "romanization": "Tampon", + "example_sentence_native": "Sie kaufte einen Tampon in der Apotheke.", + "example_sentence_english": "She bought a tampon at the pharmacy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23564 + }, + { + "word": "tiefgreifend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profound;far-reaching", + "romanization": "tiefgreifend", + "example_sentence_native": "Das hatte tiefgreifende Auswirkungen.", + "example_sentence_english": "That had profound effects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23565 + }, + { + "word": "Tomb", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "tomb", + "romanization": "Tomb", + "example_sentence_native": "Die alte Tomb war mit Hieroglyphen verziert.", + "example_sentence_english": "The old tomb was decorated with hieroglyphs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23567 + }, + { + "word": "topographisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "topographical", + "romanization": "topographisch", + "example_sentence_native": "Die topographische Karte zeigte alle Höhenunterschiede.", + "example_sentence_english": "The topographical map showed all elevation differences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23568 + }, + { + "word": "traditionsreich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rich in tradition;traditional", + "romanization": "traditionsreich", + "example_sentence_native": "Das ist ein traditionsreiches Unternehmen.", + "example_sentence_english": "This is a company rich in tradition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23569 + }, + { + "word": "Trainingseinheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training session;unit", + "romanization": "Trainingseinheit", + "example_sentence_native": "Die Mannschaft absolvierte eine intensive Trainingseinheit.", + "example_sentence_english": "The team completed an intensive training session.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23570 + }, + { + "word": "Tropf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drip (medical);simpleton;idiot", + "romanization": "Tropf", + "example_sentence_native": "Der Patient bekam eine Infusion über den Tropf.", + "example_sentence_english": "The patient received an infusion via the drip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23571 + }, + { + "word": "tätowieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tattoo", + "romanization": "tätowieren", + "example_sentence_native": "Er ließ sich einen Drachen auf den Arm tätowieren.", + "example_sentence_english": "He had a dragon tattooed on his arm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23572 + }, + { + "word": "Uhrwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clockwork;movement (of a watch)", + "romanization": "Uhrwerk", + "example_sentence_native": "Das Uhrwerk der alten Standuhr war sehr komplex.", + "example_sentence_english": "The clockwork of the old grandfather clock was very complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23573 + }, + { + "word": "Umkleide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "changing room;locker room", + "romanization": "Umkleide", + "example_sentence_native": "Die Umkleide war nach dem Spiel sehr voll.", + "example_sentence_english": "The changing room was very full after the game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23575 + }, + { + "word": "Umschulung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retraining;vocational retraining", + "romanization": "Umschulung", + "example_sentence_native": "Er machte eine Umschulung zum IT-Spezialisten.", + "example_sentence_english": "He did a retraining to become an IT specialist.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23576 + }, + { + "word": "unbefristet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlimited;indefinite (e.g.;contract)", + "romanization": "unbefristet", + "example_sentence_native": "Sie erhielt einen unbefristeten Arbeitsvertrag.", + "example_sentence_english": "She received an indefinite employment contract.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23577 + }, + { + "word": "unbeschwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefree;lighthearted", + "romanization": "unbeschwert", + "example_sentence_native": "Sie verbrachte eine unbeschwerte Kindheit.", + "example_sentence_english": "She spent a carefree childhood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23578 + }, + { + "word": "undankbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ungrateful;thankless", + "romanization": "undankbar", + "example_sentence_native": "Das ist eine undankbare Aufgabe.", + "example_sentence_english": "That is a thankless task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23579 + }, + { + "word": "unentschlossen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undecided;irresolute", + "romanization": "unentschlossen", + "example_sentence_native": "Er war unentschlossen, welchen Weg er nehmen sollte.", + "example_sentence_english": "He was undecided which way he should take.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23580 + }, + { + "word": "unerlaubt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unauthorized;illicit", + "romanization": "unerlaubt", + "example_sentence_native": "Das Parken hier ist unerlaubt.", + "example_sentence_english": "Parking here is unauthorized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23581 + }, + { + "word": "ungerade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "odd (number);uneven", + "romanization": "ungerade", + "example_sentence_native": "Die Zahl sieben ist ungerade.", + "example_sentence_english": "The number seven is odd.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23582 + }, + { + "word": "Unternehmerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female entrepreneur", + "romanization": "Unternehmerin", + "example_sentence_native": "Sie ist eine erfolgreiche Unternehmerin.", + "example_sentence_english": "She is a successful female entrepreneur.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23584 + }, + { + "word": "Unterton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undertone;nuance", + "romanization": "Unterton", + "example_sentence_native": "Seine Bemerkung hatte einen ironischen Unterton.", + "example_sentence_english": "His remark had an ironic undertone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23585 + }, + { + "word": "Unvermögen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inability;incapacity", + "romanization": "Unvermögen", + "example_sentence_native": "Sein Unvermögen, Entscheidungen zu treffen, war offensichtlich.", + "example_sentence_english": "His inability to make decisions was obvious.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23586 + }, + { + "word": "Varianz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variance", + "romanization": "Varianz", + "example_sentence_native": "Die Varianz der Daten war gering.", + "example_sentence_english": "The variance of the data was low.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23587 + }, + { + "word": "Vaterschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paternity;fatherhood", + "romanization": "Vaterschaft", + "example_sentence_native": "Die Vaterschaft des Kindes wurde gerichtlich festgestellt.", + "example_sentence_english": "The paternity of the child was legally established.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23588 + }, + { + "word": "Verbesserungsvorschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggestion for improvement", + "romanization": "Verbesserungsvorschlag", + "example_sentence_native": "Er reichte einen Verbesserungsvorschlag ein.", + "example_sentence_english": "He submitted a suggestion for improvement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23589 + }, + { + "word": "Vervielfältigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproduction;duplication", + "romanization": "Vervielfältigung", + "example_sentence_native": "Die Vervielfältigung dieses Dokuments ist untersagt.", + "example_sentence_english": "The reproduction of this document is prohibited.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23591 + }, + { + "word": "Verwaltungsrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administrative law", + "romanization": "Verwaltungsrecht", + "example_sentence_native": "Er studiert Verwaltungsrecht an der Universität.", + "example_sentence_english": "He studies administrative law at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23592 + }, + { + "word": "Videoaufnahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "video recording", + "romanization": "Videoaufnahme", + "example_sentence_native": "Die Videoaufnahme zeigte den Vorfall deutlich.", + "example_sentence_english": "The video recording clearly showed the incident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23594 + }, + { + "word": "vierfach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fourfold;quadruple", + "romanization": "vierfach", + "example_sentence_native": "Die Menge wurde vierfach erhöht.", + "example_sentence_english": "The quantity was increased fourfold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23595 + }, + { + "word": "vonnöten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necessary;required", + "romanization": "vonnöten", + "example_sentence_native": "Seine Hilfe war vonnöten.", + "example_sentence_english": "His help was necessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23598 + }, + { + "word": "Vorplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forecourt", + "romanization": "Vorplatz", + "example_sentence_native": "Der Vorplatz des Theaters war voller Menschen.", + "example_sentence_english": "The forecourt of the theater was full of people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23600 + }, + { + "word": "Wachmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "security guard", + "romanization": "Wachmann", + "example_sentence_native": "Der Wachmann öffnete das Tor.", + "example_sentence_english": "The security guard opened the gate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23603 + }, + { + "word": "Wahlbezirk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electoral district", + "romanization": "Wahlbezirk", + "example_sentence_native": "Er kandidiert in seinem Wahlbezirk.", + "example_sentence_english": "He is running in his electoral district.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23604 + }, + { + "word": "Wahnvorstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delusion", + "romanization": "Wahnvorstellung", + "example_sentence_native": "Er litt unter Wahnvorstellungen.", + "example_sentence_english": "He suffered from delusions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23605 + }, + { + "word": "wahrnehmbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perceptible", + "romanization": "wahrnehmbar", + "example_sentence_native": "Der Unterschied war kaum wahrnehmbar.", + "example_sentence_english": "The difference was hardly perceptible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23606 + }, + { + "word": "Wallach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gelding", + "romanization": "Wallach", + "example_sentence_native": "Der Wallach war sehr ruhig.", + "example_sentence_english": "The gelding was very calm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23607 + }, + { + "word": "wartend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waiting", + "romanization": "wartend", + "example_sentence_native": "Die wartenden Passagiere wurden ungeduldig.", + "example_sentence_english": "The waiting passengers became impatient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23609 + }, + { + "word": "Weckruf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wake-up call", + "romanization": "Weckruf", + "example_sentence_native": "Der Vorfall war ein Weckruf für die Regierung.", + "example_sentence_english": "The incident was a wake-up call for the government.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23611 + }, + { + "word": "wehrlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defenseless", + "romanization": "wehrlos", + "example_sentence_native": "Das kleine Kätzchen war völlig wehrlos.", + "example_sentence_english": "The little kitten was completely defenseless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23612 + }, + { + "word": "Weihbischof", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auxiliary bishop", + "romanization": "Weihbischof", + "example_sentence_native": "Der Weihbischof hielt die Predigt.", + "example_sentence_english": "The auxiliary bishop gave the sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23613 + }, + { + "word": "Wildpark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wildlife park", + "romanization": "Wildpark", + "example_sentence_native": "Wir besuchten einen Wildpark am Wochenende.", + "example_sentence_english": "We visited a wildlife park on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23616 + }, + { + "word": "Willenskraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "willpower", + "romanization": "Willenskraft", + "example_sentence_native": "Er zeigte große Willenskraft, um sein Ziel zu erreichen.", + "example_sentence_english": "He showed great willpower to achieve his goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23617 + }, + { + "word": "Windrichtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wind direction", + "romanization": "Windrichtung", + "example_sentence_native": "Die Windrichtung hat sich geändert.", + "example_sentence_english": "The wind direction has changed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23618 + }, + { + "word": "Wirtschaftsforschung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic research", + "romanization": "Wirtschaftsforschung", + "example_sentence_native": "Das Institut für Wirtschaftsforschung veröffentlichte neue Daten.", + "example_sentence_english": "The Institute for Economic Research published new data.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23619 + }, + { + "word": "Wirtschaftswoche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business week (magazine)", + "romanization": "Wirtschaftswoche", + "example_sentence_native": "Die Wirtschaftswoche ist ein wichtiges Magazin für Geschäftsleute.", + "example_sentence_english": "The Wirtschaftswoche is an important magazine for business people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23620 + }, + { + "word": "Wunschdenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wishful thinking", + "romanization": "Wunschdenken", + "example_sentence_native": "Das ist reines Wunschdenken und keine realistische Lösung.", + "example_sentence_english": "That is pure wishful thinking and not a realistic solution.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23622 + }, + { + "word": "wälzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roll;to wallow", + "romanization": "wälzen", + "example_sentence_native": "Der Hund wälzte sich im Gras.", + "example_sentence_english": "The dog rolled in the grass.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23623 + }, + { + "word": "Zahlungsverkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "payment traffic;payment transactions", + "romanization": "Zahlungsverkehr", + "example_sentence_native": "Der elektronische Zahlungsverkehr wird immer wichtiger.", + "example_sentence_english": "Electronic payment transactions are becoming increasingly important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23625 + }, + { + "word": "Zeitlupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slow motion", + "romanization": "Zeitlupe", + "example_sentence_native": "Wir sahen die Wiederholung in Zeitlupe.", + "example_sentence_english": "We watched the replay in slow motion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23626 + }, + { + "word": "Zeitrechnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronology;calendar system", + "romanization": "Zeitrechnung", + "example_sentence_native": "Die moderne Zeitrechnung beginnt mit Christi Geburt.", + "example_sentence_english": "Modern chronology begins with the birth of Christ.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23627 + }, + { + "word": "Zentralregierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "central government", + "romanization": "Zentralregierung", + "example_sentence_native": "Die Zentralregierung hat neue Maßnahmen angekündigt.", + "example_sentence_english": "The central government has announced new measures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23628 + }, + { + "word": "zerkratzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scratch up;to scratch thoroughly", + "romanization": "zerkratzen", + "example_sentence_native": "Die Katze hat das Sofa zerkratzt.", + "example_sentence_english": "The cat scratched up the sofa.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23629 + }, + { + "word": "zurückfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drive back;to reduce", + "romanization": "zurückfahren", + "example_sentence_native": "Wir müssen die Produktion zurückfahren.", + "example_sentence_english": "We have to reduce production.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23630 + }, + { + "word": "zurückstellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put back;to set back", + "romanization": "zurückstellen", + "example_sentence_native": "Bitte stellen Sie die Uhr eine Stunde zurück.", + "example_sentence_english": "Please set the clock back one hour.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23631 + }, + { + "word": "Zuteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allocation;assignment", + "romanization": "Zuteilung", + "example_sentence_native": "Die Zuteilung der Plätze erfolgt nach dem Zufallsprinzip.", + "example_sentence_english": "The allocation of seats is done randomly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23632 + }, + { + "word": "zweitbest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "second best", + "romanization": "zweitbest", + "example_sentence_native": "Er ist der zweitbeste Spieler im Team.", + "example_sentence_english": "He is the second best player on the team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23633 + }, + { + "word": "Zwinger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kennel;zwinger (historical building)", + "romanization": "Zwinger", + "example_sentence_native": "Der Hund lebt in einem Zwinger.", + "example_sentence_english": "The dog lives in a kennel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23634 + }, + { + "word": "abfallen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall off;to decline", + "romanization": "abfallen", + "example_sentence_native": "Die Blätter fallen im Herbst von den Bäumen ab.", + "example_sentence_english": "The leaves fall off the trees in autumn.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "fallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23636 + }, + { + "word": "absegnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approve;to bless", + "romanization": "absegnen", + "example_sentence_native": "Der Plan muss noch vom Vorstand abgesegnet werden.", + "example_sentence_english": "The plan still needs to be approved by the board.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "segnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23637 + }, + { + "word": "Abscheu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgust;abhorrence", + "romanization": "Abscheu", + "example_sentence_native": "Er empfand Abscheu vor der Gewalt.", + "example_sentence_english": "He felt disgust at the violence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23638 + }, + { + "word": "Abschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discount;down payment;deduction", + "romanization": "Abschlag", + "example_sentence_native": "Wir bekommen einen Abschlag von zehn Prozent.", + "example_sentence_english": "We get a ten percent discount.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23639 + }, + { + "word": "Abspann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credits (film;TV)", + "romanization": "Abspann", + "example_sentence_native": "Der Abspann lief am Ende des Films.", + "example_sentence_english": "The credits ran at the end of the film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23640 + }, + { + "word": "adaptieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adapt", + "romanization": "adaptieren", + "example_sentence_native": "Wir müssen den Plan an die neuen Umstände adaptieren.", + "example_sentence_english": "We need to adapt the plan to the new circumstances.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23641 + }, + { + "word": "aero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aero- (relating to air)", + "romanization": "aero", + "example_sentence_native": "Das aerodynamische Design verbessert die Leistung.", + "example_sentence_english": "The aerodynamic design improves performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23642 + }, + { + "word": "Affaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affair;scandal", + "romanization": "Affaire", + "example_sentence_native": "Die politische Affaire dominierte die Nachrichten.", + "example_sentence_english": "The political affair dominated the news.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23643 + }, + { + "word": "Allgemeinbildung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "general knowledge;general education", + "romanization": "Allgemeinbildung", + "example_sentence_native": "Gute Allgemeinbildung ist wichtig für das Leben.", + "example_sentence_english": "Good general knowledge is important for life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23646 + }, + { + "word": "Allrounder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all-rounder;versatile person;thing", + "romanization": "Allrounder", + "example_sentence_native": "Er ist ein echter Allrounder im Team.", + "example_sentence_english": "He is a true all-rounder in the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23647 + }, + { + "word": "Altpartei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "established party;old party (often pejorative)", + "romanization": "Altpartei", + "example_sentence_native": "Viele Wähler sind von den Altparteien enttäuscht.", + "example_sentence_english": "Many voters are disappointed with the established parties.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23648 + }, + { + "word": "Amtsträger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "office holder;public official", + "romanization": "Amtsträger", + "example_sentence_native": "Die Amtsträger müssen die Gesetze respektieren.", + "example_sentence_english": "The office holders must respect the laws.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23651 + }, + { + "word": "anatomisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anatomical", + "romanization": "anatomisch", + "example_sentence_native": "Er hat anatomische Kenntnisse.", + "example_sentence_english": "He has anatomical knowledge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23652 + }, + { + "word": "anbei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attached;enclosed", + "romanization": "anbei", + "example_sentence_native": "Anbei finden Sie die gewünschten Unterlagen.", + "example_sentence_english": "Attached you will find the requested documents.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 23653 + }, + { + "word": "anfügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attach;to add", + "romanization": "anfügen", + "example_sentence_native": "Er wollte noch eine Bemerkung anfügen.", + "example_sentence_english": "He wanted to add another remark.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fügen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23654 + }, + { + "word": "angesetzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scheduled;set (e.g.;a meeting);accumulated (e.g.;fat)", + "romanization": "angesetzt", + "example_sentence_native": "Das Treffen ist für morgen angesetzt.", + "example_sentence_english": "The meeting is scheduled for tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23655 + }, + { + "word": "anschreien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to yell at;to shout at", + "romanization": "anschreien", + "example_sentence_native": "Er hat mich ohne Grund angeschrien.", + "example_sentence_english": "He yelled at me for no reason.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schreien", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23656 + }, + { + "word": "Architektin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female architect", + "romanization": "Architektin", + "example_sentence_native": "Meine Schwester ist eine talentierte Architektin.", + "example_sentence_english": "My sister is a talented female architect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23659 + }, + { + "word": "Atrium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atrium", + "romanization": "Atrium", + "example_sentence_native": "Das Atrium des Gebäudes ist sehr hell.", + "example_sentence_english": "The atrium of the building is very bright.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23662 + }, + { + "word": "aufessen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to eat up;to finish eating", + "romanization": "aufessen", + "example_sentence_native": "Du musst deinen Teller aufessen.", + "example_sentence_english": "You must eat up your plate.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "essen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23664 + }, + { + "word": "aufschieben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to postpone;to defer", + "romanization": "aufschieben", + "example_sentence_native": "Er sollte die Arbeit nicht aufschieben.", + "example_sentence_english": "He should not postpone the work.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "schieben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23665 + }, + { + "word": "Aufklärer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlightener;scout;reconnaissance aircraft", + "romanization": "Aufklärer", + "example_sentence_native": "Der Aufklärer lieferte wichtige Informationen.", + "example_sentence_english": "The scout provided important information.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23666 + }, + { + "word": "Auflauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casserole;crowd;uprising", + "romanization": "Auflauf", + "example_sentence_native": "Wir haben einen leckeren Kartoffelauflauf gemacht.", + "example_sentence_english": "We made a delicious potato casserole.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23667 + }, + { + "word": "auftreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to procure;to round up", + "romanization": "auftreiben", + "example_sentence_native": "Er konnte das Geld nicht auftreiben.", + "example_sentence_english": "He couldn't procure the money.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "treiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23668 + }, + { + "word": "aufwarten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to serve;to wait on", + "romanization": "aufwarten", + "example_sentence_native": "Der Kellner wartete uns mit Getränken auf.", + "example_sentence_english": "The waiter served us with drinks.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "warten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23669 + }, + { + "word": "aufzwingen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impose;to force upon", + "romanization": "aufzwingen", + "example_sentence_native": "Man sollte niemandem seine Meinung aufzwingen.", + "example_sentence_english": "One should not impose one's opinion on anyone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "zwingen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23670 + }, + { + "word": "ausheben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dig out;to lift out;to raid", + "romanization": "ausheben", + "example_sentence_native": "Sie mussten einen Graben ausheben.", + "example_sentence_english": "They had to dig out a trench.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "heben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23671 + }, + { + "word": "Aussenspiegel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wing mirror;side mirror", + "romanization": "Aussenspiegel", + "example_sentence_native": "Der Aussenspiegel meines Autos ist kaputt.", + "example_sentence_english": "The wing mirror of my car is broken.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23672 + }, + { + "word": "Baronin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baroness", + "romanization": "Baronin", + "example_sentence_native": "Die Baronin besuchte das Schloss.", + "example_sentence_english": "The baroness visited the castle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23675 + }, + { + "word": "Baseballschläger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baseball bat", + "romanization": "Baseballschläger", + "example_sentence_native": "Er hielt einen Baseballschläger in der Hand.", + "example_sentence_english": "He held a baseball bat in his hand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23676 + }, + { + "word": "Baugewerbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction industry", + "romanization": "Baugewerbe", + "example_sentence_native": "Das Baugewerbe boomt derzeit.", + "example_sentence_english": "The construction industry is currently booming.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23677 + }, + { + "word": "Bauingenieur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil engineer", + "romanization": "Bauingenieur", + "example_sentence_native": "Mein Bruder ist Bauingenieur.", + "example_sentence_english": "My brother is a civil engineer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23678 + }, + { + "word": "Baumaterial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building material", + "romanization": "Baumaterial", + "example_sentence_native": "Wir brauchen mehr Baumaterial für das Haus.", + "example_sentence_english": "We need more building material for the house.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23679 + }, + { + "word": "Bauprojekt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction project", + "romanization": "Bauprojekt", + "example_sentence_native": "Das Bauprojekt wird voraussichtlich nächstes Jahr abgeschlossen sein.", + "example_sentence_english": "The construction project is expected to be completed next year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23680 + }, + { + "word": "Befähigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification;ability", + "romanization": "Befähigung", + "example_sentence_native": "Sie hat die Befähigung, diese komplexe Aufgabe zu lösen.", + "example_sentence_english": "She has the qualification to solve this complex task.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23681 + }, + { + "word": "Belastbarkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resilience;load capacity", + "romanization": "Belastbarkeit", + "example_sentence_native": "Ihre Belastbarkeit wurde in der Krise auf die Probe gestellt.", + "example_sentence_english": "Her resilience was tested during the crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23682 + }, + { + "word": "Benutzername", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "username", + "romanization": "Benutzername", + "example_sentence_native": "Bitte geben Sie Ihren Benutzernamen und Ihr Passwort ein.", + "example_sentence_english": "Please enter your username and password.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23683 + }, + { + "word": "beordern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to order;to command", + "romanization": "beordern", + "example_sentence_native": "Der Offizier beorderte seine Truppen zum Rückzug.", + "example_sentence_english": "The officer ordered his troops to retreat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23684 + }, + { + "word": "Beschilderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signage;signs", + "romanization": "Beschilderung", + "example_sentence_native": "Die neue Beschilderung im Gebäude ist sehr hilfreich.", + "example_sentence_english": "The new signage in the building is very helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23685 + }, + { + "word": "beschreiten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to tread;to embark on", + "romanization": "beschreiten", + "example_sentence_native": "Sie beschreiten einen neuen Weg in der Forschung.", + "example_sentence_english": "They are embarking on a new path in research.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23686 + }, + { + "word": "Bleiberecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right of residence", + "romanization": "Bleiberecht", + "example_sentence_native": "Viele Flüchtlinge kämpfen um ihr Bleiberecht in Deutschland.", + "example_sentence_english": "Many refugees are fighting for their right of residence in Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23688 + }, + { + "word": "Brezel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pretzel", + "romanization": "Brezel", + "example_sentence_native": "Ich esse gerne eine Brezel zum Frühstück.", + "example_sentence_english": "I like to eat a pretzel for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23691 + }, + { + "word": "Brisanz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "explosiveness;topicality;urgency", + "romanization": "Brisanz", + "example_sentence_native": "Die politische Brisanz der Situation ist offensichtlich.", + "example_sentence_english": "The political explosiveness of the situation is obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23693 + }, + { + "word": "Bundesbahn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "German Federal Railway (historical)", + "romanization": "Bundesbahn", + "example_sentence_native": "Früher war die Deutsche Bundesbahn für den Zugverkehr zuständig.", + "example_sentence_english": "Previously, the German Federal Railway was responsible for train traffic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23694 + }, + { + "word": "Bungalow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bungalow", + "romanization": "Bungalow", + "example_sentence_native": "Sie haben einen schönen Bungalow am See gemietet.", + "example_sentence_english": "They rented a beautiful bungalow by the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23695 + }, + { + "word": "bürsten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to brush", + "romanization": "bürsten", + "example_sentence_native": "Sie bürstet sich jeden Morgen die Haare.", + "example_sentence_english": "She brushes her hair every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23698 + }, + { + "word": "Checkpoint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "checkpoint", + "romanization": "Checkpoint", + "example_sentence_native": "Wir erreichten den Checkpoint an der Grenze.", + "example_sentence_english": "We reached the checkpoint at the border.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23703 + }, + { + "word": "dampfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to steam;to vape", + "romanization": "dampfen", + "example_sentence_native": "Das Wasser dampft im Topf.", + "example_sentence_english": "The water is steaming in the pot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23709 + }, + { + "word": "Darlegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "explanation;exposition;presentation", + "romanization": "Darlegung", + "example_sentence_native": "Seine Darlegung war sehr klar und präzise.", + "example_sentence_english": "His explanation was very clear and precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23710 + }, + { + "word": "Datenträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data carrier;storage medium", + "romanization": "Datenträger", + "example_sentence_native": "Speichern Sie die Daten auf einem externen Datenträger.", + "example_sentence_english": "Save the data on an external data carrier.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23711 + }, + { + "word": "dazugeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add (to something already there)", + "romanization": "dazugeben", + "example_sentence_native": "Sie können noch etwas Salz dazugeben.", + "example_sentence_english": "You can add some more salt.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dazu", + "base_verb": "geben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23712 + }, + { + "word": "Dekadenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decadence", + "romanization": "Dekadenz", + "example_sentence_native": "Die Dekadenz der Gesellschaft war offensichtlich.", + "example_sentence_english": "The decadence of society was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23713 + }, + { + "word": "Donut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donut", + "romanization": "Donut", + "example_sentence_native": "Ich möchte einen Donut zum Kaffee.", + "example_sentence_english": "I would like a donut with my coffee.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23718 + }, + { + "word": "drängeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push;to jostle;to queue-jump", + "romanization": "drängeln", + "example_sentence_native": "Bitte nicht drängeln!", + "example_sentence_english": "Please don't push!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23719 + }, + { + "word": "Dungeon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dungeon", + "romanization": "Dungeon", + "example_sentence_native": "Der alte Dungeon war dunkel und feucht.", + "example_sentence_english": "The old dungeon was dark and damp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23721 + }, + { + "word": "durstig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirsty", + "romanization": "durstig", + "example_sentence_native": "Ich bin sehr durstig.", + "example_sentence_english": "I am very thirsty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23722 + }, + { + "word": "Duschgel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shower gel", + "romanization": "Duschgel", + "example_sentence_native": "Hast du noch Duschgel?", + "example_sentence_english": "Do you still have shower gel?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23723 + }, + { + "word": "duzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to use the informal \"du\" (to address informally)", + "romanization": "duzen", + "example_sentence_native": "Wir duzen uns schon lange.", + "example_sentence_english": "We've been on a first-name basis for a long time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23724 + }, + { + "word": "Eckstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornerstone", + "romanization": "Eckstein", + "example_sentence_native": "Der Eckstein des Gebäudes ist sehr alt.", + "example_sentence_english": "The cornerstone of the building is very old.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23725 + }, + { + "word": "Eigenregie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-management;own direction", + "romanization": "Eigenregie", + "example_sentence_native": "Das Projekt wird in Eigenregie durchgeführt.", + "example_sentence_english": "The project is carried out under its own direction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23727 + }, + { + "word": "Eigentümerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female owner", + "romanization": "Eigentümerin", + "example_sentence_native": "Die Eigentümerin des Hauses ist sehr nett.", + "example_sentence_english": "The owner of the house is very nice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23728 + }, + { + "word": "Eindringling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intruder", + "romanization": "Eindringling", + "example_sentence_native": "Der Eindringling wurde von der Polizei gefasst.", + "example_sentence_english": "The intruder was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23729 + }, + { + "word": "Eingangshalle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entrance hall;lobby", + "romanization": "Eingangshalle", + "example_sentence_native": "Wir treffen uns in der Eingangshalle.", + "example_sentence_english": "We meet in the entrance hall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23730 + }, + { + "word": "Einkäufer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buyer;purchaser (male)", + "romanization": "Einkäufer", + "example_sentence_native": "Der Einkäufer verhandelt über den Preis.", + "example_sentence_english": "The buyer negotiates the price.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23731 + }, + { + "word": "Einsatzgebiet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "area of application;field of operation", + "romanization": "Einsatzgebiet", + "example_sentence_native": "Das neue Produkt hat ein breites Einsatzgebiet.", + "example_sentence_english": "The new product has a wide area of application.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23732 + }, + { + "word": "einsetzend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beginning;setting in", + "romanization": "einsetzend", + "example_sentence_native": "Mit einsetzendem Regen wurde es kälter.", + "example_sentence_english": "With the onset of rain, it got colder.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23733 + }, + { + "word": "einen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unite;to make one", + "romanization": "einen", + "example_sentence_native": "Die beiden Parteien versuchten, sich zu einen.", + "example_sentence_english": "The two parties tried to unite.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23734 + }, + { + "word": "Eisdiele", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice cream parlor", + "romanization": "Eisdiele", + "example_sentence_native": "Gehen wir zur Eisdiele?", + "example_sentence_english": "Shall we go to the ice cream parlor?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23735 + }, + { + "word": "Eiswürfel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ice cube", + "romanization": "Eiswürfel", + "example_sentence_native": "Ich hätte gerne Eiswürfel in meinem Getränk.", + "example_sentence_english": "I would like ice cubes in my drink.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23736 + }, + { + "word": "Elder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elder", + "romanization": "Elder", + "example_sentence_native": "Der Elder der Gemeinschaft sprach weise Worte.", + "example_sentence_english": "The elder of the community spoke wise words.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23737 + }, + { + "word": "embedded", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embedded", + "romanization": "embedded", + "example_sentence_native": "Das System verwendet eine embedded Software.", + "example_sentence_english": "The system uses embedded software.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23738 + }, + { + "word": "Empore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gallery;choir loft", + "romanization": "Empore", + "example_sentence_native": "Die Orgel befindet sich auf der Empore.", + "example_sentence_english": "The organ is located on the gallery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23739 + }, + { + "word": "entbehren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to do without;to lack", + "romanization": "entbehren", + "example_sentence_native": "Er kann diese Unterstützung nicht entbehren.", + "example_sentence_english": "He cannot do without this support.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23740 + }, + { + "word": "erhören", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant (a prayer);to hear (a request)", + "romanization": "erhören", + "example_sentence_native": "Möge Gott deine Gebete erhören.", + "example_sentence_english": "May God grant your prayers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23741 + }, + { + "word": "erkaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to buy;to purchase;to acquire", + "romanization": "erkaufen", + "example_sentence_native": "Man kann Glück nicht erkaufen.", + "example_sentence_english": "One cannot buy happiness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23742 + }, + { + "word": "Ernüchterung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disillusionment;sobering", + "romanization": "Ernüchterung", + "example_sentence_native": "Nach der anfänglichen Euphorie folgte die Ernüchterung.", + "example_sentence_english": "After the initial euphoria, disillusionment followed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23743 + }, + { + "word": "erstrahlen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shine brightly;to radiate", + "romanization": "erstrahlen", + "example_sentence_native": "Ihr Gesicht ließ erstrahlen, als sie die Nachricht hörte.", + "example_sentence_english": "Her face lit up when she heard the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23744 + }, + { + "word": "Eurokrise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Euro crisis", + "romanization": "Eurokrise", + "example_sentence_native": "Die Eurokrise hatte weitreichende Folgen.", + "example_sentence_english": "The Euro crisis had far-reaching consequences.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23746 + }, + { + "word": "Fahrweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driving style", + "romanization": "Fahrweise", + "example_sentence_native": "Seine aggressive Fahrweise ist gefährlich.", + "example_sentence_english": "His aggressive driving style is dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23747 + }, + { + "word": "Faustregel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rule of thumb", + "romanization": "Faustregel", + "example_sentence_native": "Als Faustregel gilt: Immer pünktlich sein.", + "example_sentence_english": "As a rule of thumb: always be on time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23750 + }, + { + "word": "Feigling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coward", + "romanization": "Feigling", + "example_sentence_native": "Er wurde als Feigling bezeichnet.", + "example_sentence_english": "He was called a coward.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23751 + }, + { + "word": "Fernost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Far East", + "romanization": "Fernost", + "example_sentence_native": "Viele Produkte kommen aus Fernost.", + "example_sentence_english": "Many products come from the Far East.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23753 + }, + { + "word": "Fortgang", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "progress;continuation", + "romanization": "Fortgang", + "example_sentence_native": "Wir hoffen auf einen guten Fortgang der Verhandlungen.", + "example_sentence_english": "We hope for good progress in the negotiations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23755 + }, + { + "word": "Freelancer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freelancer", + "romanization": "Freelancer", + "example_sentence_native": "Viele junge Leute arbeiten heute als Freelancer.", + "example_sentence_english": "Many young people work as freelancers today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23757 + }, + { + "word": "Freibier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free beer", + "romanization": "Freibier", + "example_sentence_native": "Auf dem Fest gab es Freibier für alle.", + "example_sentence_english": "At the festival, there was free beer for everyone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23758 + }, + { + "word": "Freilichtmuseum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "open-air museum", + "romanization": "Freilichtmuseum", + "example_sentence_native": "Wir besuchten ein Freilichtmuseum, um alte Häuser zu sehen.", + "example_sentence_english": "We visited an open-air museum to see old houses.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23759 + }, + { + "word": "Fördergeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funding;subsidy", + "romanization": "Fördergeld", + "example_sentence_native": "Das Unternehmen beantragte Fördergeld für sein neues Projekt.", + "example_sentence_english": "The company applied for funding for its new project.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23761 + }, + { + "word": "Gastgeberin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostess", + "romanization": "Gastgeberin", + "example_sentence_native": "Die Gastgeberin begrüßte uns herzlich.", + "example_sentence_english": "The hostess welcomed us warmly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23763 + }, + { + "word": "geigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to play the violin", + "romanization": "geigen", + "example_sentence_native": "Sie lernt seit drei Jahren geigen.", + "example_sentence_english": "She has been learning to play the violin for three years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23765 + }, + { + "word": "gemeint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meant;intended", + "romanization": "gemeint", + "example_sentence_native": "Das war nicht böse gemeint.", + "example_sentence_english": "That was not meant maliciously.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23766 + }, + { + "word": "Gentrifizierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gentrification", + "romanization": "Gentrifizierung", + "example_sentence_native": "Die Gentrifizierung verändert das Stadtbild.", + "example_sentence_english": "Gentrification changes the cityscape.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23768 + }, + { + "word": "Geologe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geologist", + "romanization": "Geologe", + "example_sentence_native": "Der Geologe untersuchte die Gesteinsproben.", + "example_sentence_english": "The geologist examined the rock samples.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23769 + }, + { + "word": "geradewegs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "straight;directly", + "romanization": "geradewegs", + "example_sentence_native": "Er ging geradewegs nach Hause.", + "example_sentence_english": "He went straight home.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 23770 + }, + { + "word": "gerettet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saved;rescued", + "romanization": "gerettet", + "example_sentence_native": "Das Kind wurde aus dem brennenden Haus gerettet.", + "example_sentence_english": "The child was rescued from the burning house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23771 + }, + { + "word": "Gesamtwerk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complete works;oeuvre", + "romanization": "Gesamtwerk", + "example_sentence_native": "Das Gesamtwerk des Künstlers ist beeindruckend.", + "example_sentence_english": "The artist's complete works are impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23772 + }, + { + "word": "Gesandtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legation;embassy", + "romanization": "Gesandtschaft", + "example_sentence_native": "Die Gesandtschaft befindet sich im Stadtzentrum.", + "example_sentence_english": "The legation is located in the city center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23773 + }, + { + "word": "Geschäftsreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business trip", + "romanization": "Geschäftsreise", + "example_sentence_native": "Er ist auf einer Geschäftsreise in Berlin.", + "example_sentence_english": "He is on a business trip in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23774 + }, + { + "word": "stranden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be stranded;to run aground", + "romanization": "stranden", + "example_sentence_native": "Das Schiff ist im Sturm gestrandet.", + "example_sentence_english": "The ship was stranded in the storm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23775 + }, + { + "word": "Gesundheitspolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "health policy", + "romanization": "Gesundheitspolitik", + "example_sentence_native": "Die Gesundheitspolitik ist ein wichtiges Thema.", + "example_sentence_english": "Health policy is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23776 + }, + { + "word": "Gewinde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thread (e.g.;screw thread)", + "romanization": "Gewinde", + "example_sentence_native": "Das Gewinde der Schraube ist beschädigt.", + "example_sentence_english": "The screw thread is damaged.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23777 + }, + { + "word": "Gibs", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster;gypsum", + "romanization": "Gibs", + "example_sentence_native": "Der Arm ist im Gibs.", + "example_sentence_english": "The arm is in plaster.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23779 + }, + { + "word": "Glashaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glasshouse", + "romanization": "Glashaus", + "example_sentence_native": "Sie leben in einem Glashaus.", + "example_sentence_english": "They live in a glasshouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23780 + }, + { + "word": "Goldpreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gold price", + "romanization": "Goldpreis", + "example_sentence_native": "Der Goldpreis ist heute gestiegen.", + "example_sentence_english": "The gold price has risen today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23781 + }, + { + "word": "Grünkohl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kale", + "romanization": "Grünkohl", + "example_sentence_native": "Grünkohl ist ein gesundes Gemüse.", + "example_sentence_english": "Kale is a healthy vegetable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23786 + }, + { + "word": "Hauptdarstellerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leading actress", + "romanization": "Hauptdarstellerin", + "example_sentence_native": "Die Hauptdarstellerin gewann einen Preis.", + "example_sentence_english": "The leading actress won an award.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23793 + }, + { + "word": "Homeoffice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home office", + "romanization": "Homeoffice", + "example_sentence_native": "Viele Leute arbeiten jetzt im Homeoffice.", + "example_sentence_english": "Many people now work in the home office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23800 + }, + { + "word": "Hurricane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurricane", + "romanization": "Hurricane", + "example_sentence_native": "Der Hurricane verursachte große Schäden.", + "example_sentence_english": "The hurricane caused great damage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23802 + }, + { + "word": "Häkchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tick mark;check mark", + "romanization": "Häkchen", + "example_sentence_native": "Bitte setzen Sie ein Häkchen in das Kästchen.", + "example_sentence_english": "Please put a tick mark in the box.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23805 + }, + { + "word": "höllisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hellish;tremendous", + "romanization": "höllisch", + "example_sentence_native": "Das war ein höllischer Lärm.", + "example_sentence_english": "That was a tremendous noise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23806 + }, + { + "word": "Inch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inch", + "romanization": "Inch", + "example_sentence_native": "Der Bildschirm ist 27 Inch groß.", + "example_sentence_english": "The screen is 27 inches big.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23808 + }, + { + "word": "Informationsaustausch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange of information", + "romanization": "Informationsaustausch", + "example_sentence_native": "Ein regelmäßiger Informationsaustausch ist wichtig.", + "example_sentence_english": "A regular exchange of information is important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23809 + }, + { + "word": "Informationsveranstaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "information event;briefing", + "romanization": "Informationsveranstaltung", + "example_sentence_native": "Wir besuchen eine Informationsveranstaltung über das Studium.", + "example_sentence_english": "We are attending an information event about the studies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23810 + }, + { + "word": "integral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integral;essential", + "romanization": "integral", + "example_sentence_native": "Das ist ein integraler Bestandteil des Systems.", + "example_sentence_english": "This is an integral part of the system.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23811 + }, + { + "word": "Interessengruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interest group", + "romanization": "Interessengruppe", + "example_sentence_native": "Die Interessengruppe setzt sich für Umweltschutz ein.", + "example_sentence_english": "The interest group advocates for environmental protection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23812 + }, + { + "word": "Invest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "romanization": "Invest", + "example_sentence_native": "Das war ein gutes Invest in die Zukunft.", + "example_sentence_english": "That was a good investment in the future.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23813 + }, + { + "word": "Jahreshälfte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half-year;six months", + "romanization": "Jahreshälfte", + "example_sentence_native": "Die erste Jahreshälfte war sehr erfolgreich.", + "example_sentence_english": "The first half-year was very successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23816 + }, + { + "word": "Katakombe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catacomb", + "romanization": "Katakombe", + "example_sentence_native": "Die alten Katakomben unter der Stadt sind ein beliebtes Touristenziel.", + "example_sentence_english": "The old catacombs under the city are a popular tourist destination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23821 + }, + { + "word": "Kautschuk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rubber;caoutchouc", + "romanization": "Kautschuk", + "example_sentence_native": "Reifen werden aus Kautschuk hergestellt.", + "example_sentence_english": "Tires are made from rubber.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23822 + }, + { + "word": "Kehrtwende", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "U-turn;volte-face", + "romanization": "Kehrtwende", + "example_sentence_native": "Die Regierung machte eine Kehrtwende in ihrer Politik.", + "example_sentence_english": "The government made a U-turn in its policy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23824 + }, + { + "word": "Kiwi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiwi (fruit or bird)", + "romanization": "Kiwi", + "example_sentence_native": "Ich esse gerne eine Kiwi zum Frühstück.", + "example_sentence_english": "I like to eat a kiwi for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23825 + }, + { + "word": "Klugheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wisdom;prudence", + "romanization": "Klugheit", + "example_sentence_native": "Ihre Klugheit half ihr, die schwierige Situation zu meistern.", + "example_sentence_english": "Her wisdom helped her to master the difficult situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23826 + }, + { + "word": "Knotenpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junction;hub;nodal point", + "romanization": "Knotenpunkt", + "example_sentence_native": "Der Hauptbahnhof ist ein wichtiger Knotenpunkt für den öffentlichen Nahverkehr.", + "example_sentence_english": "The main station is an important hub for public transport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23827 + }, + { + "word": "Kontostand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "account balance", + "romanization": "Kontostand", + "example_sentence_native": "Ich habe meinen Kontostand online überprüft.", + "example_sentence_english": "I checked my account balance online.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23828 + }, + { + "word": "korrelieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to correlate", + "romanization": "korrelieren", + "example_sentence_native": "Diese Daten korrelieren stark miteinander.", + "example_sentence_english": "These data correlate strongly with each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23829 + }, + { + "word": "Kreisklasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district league (football)", + "romanization": "Kreisklasse", + "example_sentence_native": "Mein Bruder spielt Fußball in der Kreisklasse.", + "example_sentence_english": "My brother plays football in the district league.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23830 + }, + { + "word": "Kunstsammlung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "art collection", + "romanization": "Kunstsammlung", + "example_sentence_native": "Die Kunstsammlung des Museums ist sehr beeindruckend.", + "example_sentence_english": "The museum's art collection is very impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23833 + }, + { + "word": "Lebensverhältnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "living conditions;circumstances of life", + "romanization": "Lebensverhältnis", + "example_sentence_native": "Die Lebensverhältnisse in dieser Region haben sich verbessert.", + "example_sentence_english": "The living conditions in this region have improved.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23834 + }, + { + "word": "Leerlauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idle;idling;downtime", + "romanization": "Leerlauf", + "example_sentence_native": "Der Motor läuft im Leerlauf.", + "example_sentence_english": "The engine is idling.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23836 + }, + { + "word": "leistungsfähig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficient;high-performance;capable", + "romanization": "leistungsfähig", + "example_sentence_native": "Das neue System ist sehr leistungsfähig.", + "example_sentence_english": "The new system is very efficient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23837 + }, + { + "word": "Markthalle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "market hall", + "romanization": "Markthalle", + "example_sentence_native": "Wir kaufen frisches Gemüse in der Markthalle.", + "example_sentence_english": "We buy fresh vegetables in the market hall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23849 + }, + { + "word": "Marzipan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marzipan", + "romanization": "Marzipan", + "example_sentence_native": "Lübecker Marzipan ist sehr berühmt.", + "example_sentence_english": "Lübeck marzipan is very famous.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23851 + }, + { + "word": "Mechatroniker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechatronics engineer;technician", + "romanization": "Mechatroniker", + "example_sentence_native": "Der Mechatroniker repariert die komplexen Maschinen.", + "example_sentence_english": "The mechatronics engineer repairs the complex machines.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23853 + }, + { + "word": "Menschheitsgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "history of humanity", + "romanization": "Menschheitsgeschichte", + "example_sentence_native": "Die Menschheitsgeschichte ist voller faszinierender Ereignisse.", + "example_sentence_english": "The history of humanity is full of fascinating events.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23855 + }, + { + "word": "Messegelände", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibition grounds", + "romanization": "Messegelände", + "example_sentence_native": "Die Buchmesse findet auf dem Messegelände statt.", + "example_sentence_english": "The book fair takes place on the exhibition grounds.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23857 + }, + { + "word": "Messlatte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measuring stick", + "romanization": "Messlatte", + "example_sentence_native": "Diese Leistung setzt eine neue Messlatte für die Konkurrenz.", + "example_sentence_english": "This performance sets a new benchmark for the competition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23858 + }, + { + "word": "Messtechnik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "measurement technology", + "romanization": "Messtechnik", + "example_sentence_native": "Die Messtechnik ist entscheidend für die Qualitätssicherung.", + "example_sentence_english": "Measurement technology is crucial for quality assurance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23859 + }, + { + "word": "mitzählen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to count along;to include in the count", + "romanization": "mitzählen", + "example_sentence_native": "Bitte zähle mich bei der Bestellung mit.", + "example_sentence_english": "Please count me in for the order.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "zählen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23862 + }, + { + "word": "Mittagstisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lunch table;set lunch", + "romanization": "Mittagstisch", + "example_sentence_native": "Das Restaurant bietet einen günstigen Mittagstisch an.", + "example_sentence_english": "The restaurant offers an affordable set lunch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23863 + }, + { + "word": "Mittelstufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle school;intermediate level", + "romanization": "Mittelstufe", + "example_sentence_native": "Meine Tochter ist jetzt in der Mittelstufe.", + "example_sentence_english": "My daughter is now in middle school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23865 + }, + { + "word": "Mongole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mongolian (person)", + "romanization": "Mongole", + "example_sentence_native": "Er ist ein Mongole und kommt aus Ulaanbaatar.", + "example_sentence_english": "He is a Mongolian and comes from Ulaanbaatar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23866 + }, + { + "word": "Musikgeschmack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "musical taste", + "romanization": "Musikgeschmack", + "example_sentence_native": "Wir haben einen ähnlichen Musikgeschmack.", + "example_sentence_english": "We have a similar musical taste.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23867 + }, + { + "word": "Musiktheater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musical theatre;opera house", + "romanization": "Musiktheater", + "example_sentence_native": "Sie arbeitet im Musiktheater als Bühnenbildnerin.", + "example_sentence_english": "She works in musical theatre as a set designer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23868 + }, + { + "word": "Musterbeispiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prime example;textbook example", + "romanization": "Musterbeispiel", + "example_sentence_native": "Sein Verhalten war ein Musterbeispiel an Höflichkeit.", + "example_sentence_english": "His behavior was a prime example of politeness.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23869 + }, + { + "word": "Nachbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replica;reconstruction", + "romanization": "Nachbau", + "example_sentence_native": "Der Nachbau des alten Schlosses ist beeindruckend.", + "example_sentence_english": "The replica of the old castle is impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23870 + }, + { + "word": "Nugget", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nugget", + "romanization": "Nugget", + "example_sentence_native": "Die Kinder lieben Chicken Nuggets.", + "example_sentence_english": "The children love chicken nuggets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23874 + }, + { + "word": "Nähmaschine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sewing machine", + "romanization": "Nähmaschine", + "example_sentence_native": "Meine Großmutter hat eine alte Nähmaschine.", + "example_sentence_english": "My grandmother has an old sewing machine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23875 + }, + { + "word": "Oberklasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upper class;luxury class (e.g.;car)", + "romanization": "Oberklasse", + "example_sentence_native": "Dieses Auto gehört zur Oberklasse.", + "example_sentence_english": "This car belongs to the luxury class.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23876 + }, + { + "word": "Ochs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ox", + "romanization": "Ochs", + "example_sentence_native": "Der Ochs zog den Pflug über das Feld.", + "example_sentence_english": "The ox pulled the plow across the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23877 + }, + { + "word": "Offense", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offense (sports)", + "romanization": "Offense", + "example_sentence_native": "Die Offense des Teams war sehr stark.", + "example_sentence_english": "The team's offense was very strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23878 + }, + { + "word": "Ortsverein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local association", + "romanization": "Ortsverein", + "example_sentence_native": "Der Ortsverein trifft sich jeden Monat.", + "example_sentence_english": "The local association meets every month.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23882 + }, + { + "word": "Ostfront", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eastern Front", + "romanization": "Ostfront", + "example_sentence_native": "Die Ostfront war ein wichtiger Schauplatz im Zweiten Weltkrieg.", + "example_sentence_english": "The Eastern Front was an important theater in World War II.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23883 + }, + { + "word": "Otter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "otter", + "romanization": "Otter", + "example_sentence_native": "Der Otter ist ein geschickter Schwimmer.", + "example_sentence_english": "The otter is a skilled swimmer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23884 + }, + { + "word": "Papierkorb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wastebasket", + "romanization": "Papierkorb", + "example_sentence_native": "Wirf das bitte in den Papierkorb.", + "example_sentence_english": "Please throw that in the wastebasket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23885 + }, + { + "word": "Parmesan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Parmesan cheese", + "romanization": "Parmesan", + "example_sentence_native": "Ich mag Nudeln mit viel Parmesan.", + "example_sentence_english": "I like pasta with a lot of Parmesan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23886 + }, + { + "word": "parteilos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independent (politically)", + "romanization": "parteilos", + "example_sentence_native": "Sie kandidiert als parteilose Bewerberin.", + "example_sentence_english": "She is running as an independent candidate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23887 + }, + { + "word": "perfide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perfidious;treacherous", + "romanization": "perfide", + "example_sentence_native": "Das war ein perfider Plan.", + "example_sentence_english": "That was a perfidious plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23889 + }, + { + "word": "philosophieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to philosophize", + "romanization": "philosophieren", + "example_sentence_native": "Sie sitzen oft zusammen und philosophieren über das Leben.", + "example_sentence_english": "They often sit together and philosophize about life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23890 + }, + { + "word": "Plünderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looting;plunder", + "romanization": "Plünderung", + "example_sentence_native": "Nach dem Erdbeben kam es zu Plünderungen.", + "example_sentence_english": "After the earthquake, there was looting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23891 + }, + { + "word": "Pornostar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "porn star", + "romanization": "Pornostar", + "example_sentence_native": "Er wurde als Pornostar bekannt.", + "example_sentence_english": "He became known as a porn star.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23893 + }, + { + "word": "Privatvermögen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private assets;wealth", + "romanization": "Privatvermögen", + "example_sentence_native": "Sein Privatvermögen ist beträchtlich.", + "example_sentence_english": "His private wealth is considerable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23895 + }, + { + "word": "Prothese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosthesis", + "romanization": "Prothese", + "example_sentence_native": "Er trägt eine Prothese am Bein.", + "example_sentence_english": "He wears a prosthesis on his leg.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23896 + }, + { + "word": "punktuell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selective;punctual", + "romanization": "punktuell", + "example_sentence_native": "Wir bieten punktuelle Unterstützung an.", + "example_sentence_english": "We offer selective support.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23898 + }, + { + "word": "Quellcode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "source code", + "romanization": "Quellcode", + "example_sentence_native": "Der Quellcode des Programms ist öffentlich zugänglich.", + "example_sentence_english": "The source code of the program is publicly accessible.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23900 + }, + { + "word": "Quellenangabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "source reference", + "romanization": "Quellenangabe", + "example_sentence_native": "Bitte fügen Sie eine Quellenangabe für alle Zitate hinzu.", + "example_sentence_english": "Please add a source reference for all quotes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23901 + }, + { + "word": "rangieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shunt;to maneuver", + "romanization": "rangieren", + "example_sentence_native": "Der Zug muss auf ein anderes Gleis rangieren.", + "example_sentence_english": "The train has to shunt to another track.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23904 + }, + { + "word": "Rechtsstreitigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal dispute", + "romanization": "Rechtsstreitigkeit", + "example_sentence_native": "Die Firma ist in eine Rechtsstreitigkeit verwickelt.", + "example_sentence_english": "The company is involved in a legal dispute.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23906 + }, + { + "word": "Reformer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reformer", + "romanization": "Reformer", + "example_sentence_native": "Er war ein bekannter Reformer in seiner Zeit.", + "example_sentence_english": "He was a well-known reformer in his time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23907 + }, + { + "word": "Regularium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regulation", + "romanization": "Regularium", + "example_sentence_native": "Das neue Regularium tritt nächste Woche in Kraft.", + "example_sentence_english": "The new regulation comes into effect next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23908 + }, + { + "word": "reinlassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let in", + "romanization": "reinlassen", + "example_sentence_native": "Kannst du mich bitte reinlassen?", + "example_sentence_english": "Can you please let me in?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rein", + "base_verb": "lassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23910 + }, + { + "word": "Relativitätstheorie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theory of relativity", + "romanization": "Relativitätstheorie", + "example_sentence_native": "Albert Einstein entwickelte die Relativitätstheorie.", + "example_sentence_english": "Albert Einstein developed the theory of relativity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23911 + }, + { + "word": "Reservat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reservation;reserve", + "romanization": "Reservat", + "example_sentence_native": "Das Naturschutzgebiet ist ein wichtiges Reservat für seltene Vögel.", + "example_sentence_english": "The nature reserve is an important reservation for rare birds.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23912 + }, + { + "word": "Restriktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restriction", + "romanization": "Restriktion", + "example_sentence_native": "Es gibt neue Restriktionen für Reisen.", + "example_sentence_english": "There are new restrictions for travel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23913 + }, + { + "word": "Rettungsaktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rescue operation", + "romanization": "Rettungsaktion", + "example_sentence_native": "Die Rettungsaktion dauerte die ganze Nacht.", + "example_sentence_english": "The rescue operation lasted all night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23914 + }, + { + "word": "richterlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judicial", + "romanization": "richterlich", + "example_sentence_native": "Es bedarf einer richterlichen Anordnung.", + "example_sentence_english": "A judicial order is required.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23916 + }, + { + "word": "Risikomanagement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "risk management", + "romanization": "Risikomanagement", + "example_sentence_native": "Effektives Risikomanagement ist entscheidend für den Erfolg.", + "example_sentence_english": "Effective risk management is crucial for success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23917 + }, + { + "word": "Ritterschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "knighthood", + "romanization": "Ritterschaft", + "example_sentence_native": "Die Ritterschaft versammelte sich zur Schlacht.", + "example_sentence_english": "The knighthood gathered for battle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23918 + }, + { + "word": "Role", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "role", + "romanization": "Role", + "example_sentence_native": "Sie spielt eine wichtige Role in diesem Projekt.", + "example_sentence_english": "She plays an important role in this project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23919 + }, + { + "word": "Rundreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "round trip", + "romanization": "Rundreise", + "example_sentence_native": "Wir planen eine Rundreise durch Europa.", + "example_sentence_english": "We are planning a round trip through Europe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23921 + }, + { + "word": "Rückzieher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retraction", + "romanization": "Rückzieher", + "example_sentence_native": "Er machte einen Rückzieher von seiner Aussage.", + "example_sentence_english": "He made a retraction of his statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23922 + }, + { + "word": "Schmankerl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicacy", + "romanization": "Schmankerl", + "example_sentence_native": "Dieses Gericht ist ein echtes Schmankerl.", + "example_sentence_english": "This dish is a real delicacy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23926 + }, + { + "word": "Schmelze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melting", + "romanization": "Schmelze", + "example_sentence_native": "Die Schmelze des Eises führt zu steigendem Meeresspiegel.", + "example_sentence_english": "The melting of the ice leads to rising sea levels.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23927 + }, + { + "word": "schwimmend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swimming", + "romanization": "schwimmend", + "example_sentence_native": "Der schwimmende Eisberg war riesig.", + "example_sentence_english": "The floating iceberg was huge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23929 + }, + { + "word": "Schäfchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little sheep", + "romanization": "Schäfchen", + "example_sentence_native": "Das Schäfchen graste auf der Wiese.", + "example_sentence_english": "The little sheep grazed in the meadow.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23930 + }, + { + "word": "Selbstmitleid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-pity", + "romanization": "Selbstmitleid", + "example_sentence_native": "Er versank in Selbstmitleid.", + "example_sentence_english": "He sank into self-pity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23931 + }, + { + "word": "Seniorin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "senior woman", + "romanization": "Seniorin", + "example_sentence_native": "Die Seniorin saß auf der Parkbank.", + "example_sentence_english": "The senior woman sat on the park bench.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23932 + }, + { + "word": "sexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexual", + "romanization": "sexual", + "example_sentence_native": "Sie sprach über sexuelle Gesundheit.", + "example_sentence_english": "She talked about sexual health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23933 + }, + { + "word": "Shipping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipping", + "romanization": "Shipping", + "example_sentence_native": "Die Kosten für das Shipping sind im Preis enthalten.", + "example_sentence_english": "The costs for shipping are included in the price.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23934 + }, + { + "word": "slowenisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovenian", + "romanization": "slowenisch", + "example_sentence_native": "Sie spricht fließend Slowenisch.", + "example_sentence_english": "She speaks fluent Slovenian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23936 + }, + { + "word": "Smoothie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smoothie", + "romanization": "Smoothie", + "example_sentence_native": "Ich trinke jeden Morgen einen grünen Smoothie.", + "example_sentence_english": "I drink a green smoothie every morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23937 + }, + { + "word": "Spesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expenses", + "romanization": "Spesen", + "example_sentence_native": "Die Firma erstattet die Reisekosten und Spesen.", + "example_sentence_english": "The company reimburses travel costs and expenses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23940 + }, + { + "word": "spielbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playable", + "romanization": "spielbar", + "example_sentence_native": "Das neue Videospiel ist sehr gut spielbar.", + "example_sentence_english": "The new video game is very playable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23941 + }, + { + "word": "Spirituose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirit;liquor", + "romanization": "Spirituose", + "example_sentence_native": "Spirituosen sind in Deutschland ab 18 Jahren erlaubt.", + "example_sentence_english": "Spirits are allowed from 18 years in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23942 + }, + { + "word": "Spritzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splash;dash (of liquid)", + "romanization": "Spritzer", + "example_sentence_native": "Gib noch einen Spritzer Zitrone in den Salat.", + "example_sentence_english": "Add another dash of lemon to the salad.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23944 + }, + { + "word": "spritzte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squirted;splashed", + "romanization": "spritzte", + "example_sentence_native": "Das Kind spritzte Wasser aus der Pistole.", + "example_sentence_english": "The child squirted water from the gun.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23945 + }, + { + "word": "Spross", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sprout;offspring;scion", + "romanization": "Spross", + "example_sentence_native": "Der junge Spross der Familie wird bald das Geschäft übernehmen.", + "example_sentence_english": "The young scion of the family will soon take over the business.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23946 + }, + { + "word": "späteres", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "later (adjective)", + "romanization": "späteres", + "example_sentence_native": "Wir müssen das auf einen späteren Zeitpunkt verschieben.", + "example_sentence_english": "We have to postpone that to a later time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23948 + }, + { + "word": "spürbare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noticeable;tangible", + "romanization": "spürbare", + "example_sentence_native": "Es gab eine spürbare Verbesserung der Situation.", + "example_sentence_english": "There was a noticeable improvement in the situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23949 + }, + { + "word": "stagnieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stagnate", + "romanization": "stagnieren", + "example_sentence_native": "Die Wirtschaft begann zu stagnieren.", + "example_sentence_english": "The economy began to stagnate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23950 + }, + { + "word": "Steuererhöhung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax increase", + "romanization": "Steuererhöhung", + "example_sentence_native": "Die Regierung plant eine Steuererhöhung.", + "example_sentence_english": "The government is planning a tax increase.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23951 + }, + { + "word": "stimmberechtigt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eligible to vote;enfranchised", + "romanization": "stimmberechtigt", + "example_sentence_native": "Alle Bürger über 18 sind stimmberechtigt.", + "example_sentence_english": "All citizens over 18 are eligible to vote.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23952 + }, + { + "word": "straffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tighten;to streamline", + "romanization": "straffen", + "example_sentence_native": "Sie muss ihre Muskeln straffen.", + "example_sentence_english": "She needs to tighten her muscles.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23954 + }, + { + "word": "stutzig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puzzled;suspicious", + "romanization": "stutzig", + "example_sentence_native": "Seine seltsame Antwort machte mich stutzig.", + "example_sentence_english": "His strange answer made me suspicious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23956 + }, + { + "word": "subventionieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to subsidize", + "romanization": "subventionieren", + "example_sentence_native": "Der Staat subventioniert erneuerbare Energien.", + "example_sentence_english": "The state subsidizes renewable energies.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23958 + }, + { + "word": "Suchergebnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "search result", + "romanization": "Suchergebnis", + "example_sentence_native": "Das erste Suchergebnis war genau das, was ich brauchte.", + "example_sentence_english": "The first search result was exactly what I needed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23959 + }, + { + "word": "supi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "super;great", + "romanization": "supi", + "example_sentence_native": "Das ist supi!", + "example_sentence_english": "That's super!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23961 + }, + { + "word": "symptomatisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symptomatic", + "romanization": "symptomatisch", + "example_sentence_native": "Das ist symptomatisch für das Problem.", + "example_sentence_english": "That is symptomatic of the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23963 + }, + { + "word": "Tabellenführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "league leadership;top of the table", + "romanization": "Tabellenführung", + "example_sentence_native": "Die Mannschaft hat die Tabellenführung übernommen.", + "example_sentence_english": "The team has taken the league leadership.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23964 + }, + { + "word": "tangieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to touch;to concern", + "romanization": "tangieren", + "example_sentence_native": "Diese Entscheidung wird uns nicht tangieren.", + "example_sentence_english": "This decision will not concern us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23965 + }, + { + "word": "Tap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tap (e.g.;on a screen)", + "romanization": "Tap", + "example_sentence_native": "Ein leichter Tap auf das Display genügt.", + "example_sentence_english": "A light tap on the display is enough.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23966 + }, + { + "word": "Texter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copywriter;lyricist", + "romanization": "Texter", + "example_sentence_native": "Er arbeitet als Texter in einer Agentur.", + "example_sentence_english": "He works as a copywriter in an agency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23968 + }, + { + "word": "Tierärztin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female veterinarian", + "romanization": "Tierärztin", + "example_sentence_native": "Die Tierärztin hat meinen Hund untersucht.", + "example_sentence_english": "The female veterinarian examined my dog.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23969 + }, + { + "word": "Tröpfchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "droplet;little drop", + "romanization": "Tröpfchen", + "example_sentence_native": "Ein kleines Tröpfchen Wasser fiel auf den Tisch.", + "example_sentence_english": "A little droplet of water fell on the table.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23971 + }, + { + "word": "Turnverein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnastics club;sports club", + "romanization": "Turnverein", + "example_sentence_native": "Sie ist Mitglied im örtlichen Turnverein.", + "example_sentence_english": "She is a member of the local gymnastics club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23972 + }, + { + "word": "Umgangsform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manner;etiquette;form of address", + "romanization": "Umgangsform", + "example_sentence_native": "Gute Umgangsformen sind wichtig.", + "example_sentence_english": "Good manners are important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23974 + }, + { + "word": "Umrüstung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conversion;refitting;retooling", + "romanization": "Umrüstung", + "example_sentence_native": "Die Umrüstung der Anlage ist abgeschlossen.", + "example_sentence_english": "The conversion of the plant is complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23975 + }, + { + "word": "unentbehrlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indispensable;essential", + "romanization": "unentbehrlich", + "example_sentence_native": "Dieses Werkzeug ist unentbehrlich für die Arbeit.", + "example_sentence_english": "This tool is indispensable for the work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23976 + }, + { + "word": "unisex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unisex", + "romanization": "unisex", + "example_sentence_native": "Das ist ein Unisex-Parfüm.", + "example_sentence_english": "That is a unisex perfume.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23977 + }, + { + "word": "Unterleib", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abdomen;lower abdomen", + "romanization": "Unterleib", + "example_sentence_native": "Er hatte Schmerzen im Unterleib.", + "example_sentence_english": "He had pain in his lower abdomen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23978 + }, + { + "word": "Unterordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subordination;subjection", + "romanization": "Unterordnung", + "example_sentence_native": "Er forderte absolute Unterordnung.", + "example_sentence_english": "He demanded absolute subordination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23979 + }, + { + "word": "untertauchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dive under;to go into hiding", + "romanization": "untertauchen", + "example_sentence_native": "Der Spion musste untertauchen, um nicht entdeckt zu werden.", + "example_sentence_english": "The spy had to go into hiding to avoid being discovered.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "unter", + "base_verb": "tauchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23980 + }, + { + "word": "Untätigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inactivity", + "romanization": "Untätigkeit", + "example_sentence_native": "Seine Untätigkeit führte zu Problemen.", + "example_sentence_english": "His inactivity led to problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23981 + }, + { + "word": "Unzulänglichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inadequacy;deficiency", + "romanization": "Unzulänglichkeit", + "example_sentence_native": "Er erkannte die Unzulänglichkeit seiner Vorbereitung.", + "example_sentence_english": "He recognized the inadequacy of his preparation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23982 + }, + { + "word": "unübersehbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immense;vast;unmistakable", + "romanization": "unübersehbar", + "example_sentence_native": "Die Schäden waren unübersehbar.", + "example_sentence_english": "The damage was immense.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23983 + }, + { + "word": "ural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primeval;ancient", + "romanization": "ural", + "example_sentence_native": "Der uralte Baum stand seit Jahrhunderten dort.", + "example_sentence_english": "The ancient tree had stood there for centuries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23984 + }, + { + "word": "vaterländisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriotic;national", + "romanization": "vaterländisch", + "example_sentence_native": "Er hatte starke vaterländische Gefühle.", + "example_sentence_english": "He had strong patriotic feelings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23986 + }, + { + "word": "verblenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blind;to dazzle;to delude", + "romanization": "verblenden", + "example_sentence_native": "Die Sonne konnte ihn verblenden.", + "example_sentence_english": "The sun could blind him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23987 + }, + { + "word": "Verdoppelung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubling;duplication", + "romanization": "Verdoppelung", + "example_sentence_native": "Die Verdoppelung der Bevölkerung ist ein Problem.", + "example_sentence_english": "The doubling of the population is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23988 + }, + { + "word": "verdünnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dilute;to thin", + "romanization": "verdünnen", + "example_sentence_native": "Du musst die Farbe mit Wasser verdünnen.", + "example_sentence_english": "You have to dilute the paint with water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23989 + }, + { + "word": "vergrössert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enlarged;magnified", + "romanization": "vergrössert", + "example_sentence_native": "Das vergrösserte Bild zeigte mehr Details.", + "example_sentence_english": "The enlarged image showed more details.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23991 + }, + { + "word": "Verkehrsverbund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public transport association;network", + "romanization": "Verkehrsverbund", + "example_sentence_native": "Der Verkehrsverbund bietet einheitliche Tickets für Bus und Bahn.", + "example_sentence_english": "The public transport association offers uniform tickets for bus and train.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23992 + }, + { + "word": "Verkörperung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embodiment;personification", + "romanization": "Verkörperung", + "example_sentence_native": "Sie war die Verkörperung der Eleganz.", + "example_sentence_english": "She was the embodiment of elegance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23993 + }, + { + "word": "Verminderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction;decrease", + "romanization": "Verminderung", + "example_sentence_native": "Eine Verminderung des Lärms ist dringend nötig.", + "example_sentence_english": "A reduction in noise is urgently needed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23994 + }, + { + "word": "verpönen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to frown upon;to condemn", + "romanization": "verpönen", + "example_sentence_native": "In dieser Kultur wird das Rauchen verpönt.", + "example_sentence_english": "In this culture, smoking is frowned upon.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 23995 + }, + { + "word": "verschwommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blurred;vague;indistinct", + "romanization": "verschwommen", + "example_sentence_native": "Das Foto war leider verschwommen.", + "example_sentence_english": "Unfortunately, the photo was blurred.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 23996 + }, + { + "word": "Verwahrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custody;safekeeping", + "romanization": "Verwahrung", + "example_sentence_native": "Die Dokumente wurden zur sicheren Verwahrung gegeben.", + "example_sentence_english": "The documents were given for safekeeping.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23997 + }, + { + "word": "Verwaltungsgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administrative community (a type of municipal association in Germany)", + "romanization": "Verwaltungsgemeinschaft", + "example_sentence_native": "Die Verwaltungsgemeinschaft kümmert sich um die Angelegenheiten mehrerer kleiner Gemeinden.", + "example_sentence_english": "The administrative community handles the affairs of several small municipalities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23998 + }, + { + "word": "Verzinsung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interest (rate);yield", + "romanization": "Verzinsung", + "example_sentence_native": "Die Verzinsung des Sparkontos ist sehr niedrig.", + "example_sentence_english": "The interest rate on the savings account is very low.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 23999 + }, + { + "word": "viral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viral", + "romanization": "viral", + "example_sentence_native": "Das Video ging viral.", + "example_sentence_english": "The video went viral.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24001 + }, + { + "word": "vollumfänglich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comprehensive;fully", + "romanization": "vollumfänglich", + "example_sentence_native": "Die Aufgabe wurde vollumfänglich erfüllt.", + "example_sentence_english": "The task was fully completed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24002 + }, + { + "word": "vonstatten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(to take place;to proceed)", + "romanization": "vonstatten", + "example_sentence_native": "Die Vorbereitungen gingen schnell vonstatten.", + "example_sentence_english": "The preparations proceeded quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 24003 + }, + { + "word": "Vorentscheidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preliminary decision;pre-selection", + "romanization": "Vorentscheidung", + "example_sentence_native": "Die Vorentscheidung für den Wettbewerb findet nächste Woche statt.", + "example_sentence_english": "The preliminary decision for the competition will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24004 + }, + { + "word": "Vorstandsvorsitzende", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chairwoman of the board", + "romanization": "Vorstandsvorsitzende", + "example_sentence_native": "Die Vorstandsvorsitzende hielt eine Rede.", + "example_sentence_english": "The chairwoman of the board gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24005 + }, + { + "word": "Waffenlieferung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arms delivery", + "romanization": "Waffenlieferung", + "example_sentence_native": "Die Regierung diskutiert über Waffenlieferungen an das Land.", + "example_sentence_english": "The government is discussing arms deliveries to the country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24006 + }, + { + "word": "Waschlappen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "washcloth", + "romanization": "Waschlappen", + "example_sentence_native": "Ich brauche einen Waschlappen, um mein Gesicht zu waschen.", + "example_sentence_english": "I need a washcloth to wash my face.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24008 + }, + { + "word": "wegfahren", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drive away;to depart", + "romanization": "wegfahren", + "example_sentence_native": "Wir müssen jetzt wegfahren.", + "example_sentence_english": "We have to drive away now.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24010 + }, + { + "word": "wegkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get away;to escape", + "romanization": "wegkommen", + "example_sentence_native": "Er konnte nicht wegkommen.", + "example_sentence_english": "He couldn't get away.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24011 + }, + { + "word": "weihnachtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christmassy;festive", + "romanization": "weihnachtlich", + "example_sentence_native": "Die Stadt ist weihnachtlich geschmückt.", + "example_sentence_english": "The city is decorated in a Christmassy way.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24012 + }, + { + "word": "Weitblick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foresight;vision", + "romanization": "Weitblick", + "example_sentence_native": "Er zeigte großen Weitblick bei seinen Entscheidungen.", + "example_sentence_english": "He showed great foresight in his decisions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24013 + }, + { + "word": "Weltausstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world exhibition;world's fair", + "romanization": "Weltausstellung", + "example_sentence_native": "Die nächste Weltausstellung findet in Dubai statt.", + "example_sentence_english": "The next world exhibition will take place in Dubai.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24014 + }, + { + "word": "Werfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thrower;pitcher", + "romanization": "Werfer", + "example_sentence_native": "Der Werfer erzielte einen Punkt.", + "example_sentence_english": "The thrower scored a point.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24017 + }, + { + "word": "Zeitrahmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timeframe", + "romanization": "Zeitrahmen", + "example_sentence_native": "Wir müssen den Zeitrahmen für das Projekt festlegen.", + "example_sentence_english": "We need to set the timeframe for the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24026 + }, + { + "word": "Zusammenführung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merger;consolidation", + "romanization": "Zusammenführung", + "example_sentence_native": "Die Zusammenführung der beiden Abteilungen war erfolgreich.", + "example_sentence_english": "The merger of the two departments was successful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24027 + }, + { + "word": "zusammenreissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull oneself together", + "romanization": "zusammenreissen", + "example_sentence_native": "Du musst dich zusammenreissen, um das zu schaffen.", + "example_sentence_english": "You have to pull yourself together to achieve that.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "reissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24028 + }, + { + "word": "zusammenschliessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to merge;to unite", + "romanization": "zusammenschliessen", + "example_sentence_native": "Die beiden Firmen wollen sich zusammenschliessen.", + "example_sentence_english": "The two companies want to merge.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "schliessen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24029 + }, + { + "word": "Zwickmühle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilemma;Catch-22", + "romanization": "Zwickmühle", + "example_sentence_native": "Er steckt in einer echten Zwickmühle.", + "example_sentence_english": "He's in a real dilemma.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24030 + }, + { + "word": "Zwischenbilanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interim balance;interim report", + "romanization": "Zwischenbilanz", + "example_sentence_native": "Wir ziehen eine Zwischenbilanz des Projekts.", + "example_sentence_english": "We are taking an interim balance of the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24031 + }, + { + "word": "abriegeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cordon off;to seal off", + "romanization": "abriegeln", + "example_sentence_native": "Die Polizei musste das Gebiet abriegeln.", + "example_sentence_english": "The police had to cordon off the area.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "riegeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24034 + }, + { + "word": "Abtrennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separation;partition", + "romanization": "Abtrennung", + "example_sentence_native": "Die Abtrennung des Raumes schafft mehr Privatsphäre.", + "example_sentence_english": "The separation of the room creates more privacy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24035 + }, + { + "word": "abverlangen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to demand;to exact", + "romanization": "abverlangen", + "example_sentence_native": "Diese Aufgabe wird dir viel abverlangen.", + "example_sentence_english": "This task will demand a lot from you.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "verlangen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24036 + }, + { + "word": "adlig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noble;aristocratic", + "romanization": "adlig", + "example_sentence_native": "Er stammt aus einer adligen Familie.", + "example_sentence_english": "He comes from a noble family.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24038 + }, + { + "word": "Adventszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Advent season", + "romanization": "Adventszeit", + "example_sentence_native": "In der Adventszeit backen wir Plätzchen.", + "example_sentence_english": "During the Advent season, we bake cookies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24039 + }, + { + "word": "akribisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous", + "romanization": "akribisch", + "example_sentence_native": "Er arbeitet sehr akribisch an seinen Projekten.", + "example_sentence_english": "He works very meticulously on his projects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24040 + }, + { + "word": "allegro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegro (fast;lively)", + "romanization": "allegro", + "example_sentence_native": "Das Stück sollte allegro gespielt werden.", + "example_sentence_english": "The piece should be played allegro.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24041 + }, + { + "word": "Anbringung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attachment;mounting", + "romanization": "Anbringung", + "example_sentence_native": "Die Anbringung des Schildes war einfach.", + "example_sentence_english": "The attachment of the sign was easy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24043 + }, + { + "word": "ankreuzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tick;to mark with a cross", + "romanization": "ankreuzen", + "example_sentence_native": "Bitte kreuzen Sie die richtige Antwort an.", + "example_sentence_english": "Please tick the correct answer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "kreuzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24045 + }, + { + "word": "anmuten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to seem;to appear", + "romanization": "anmuten", + "example_sentence_native": "Seine Worte muteten seltsam an.", + "example_sentence_english": "His words seemed strange.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "muten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24046 + }, + { + "word": "Apex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apex;peak", + "romanization": "Apex", + "example_sentence_native": "Der Apex des Berges war schneebedeckt.", + "example_sentence_english": "The apex of the mountain was snow-covered.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24047 + }, + { + "word": "Auditorium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auditorium;lecture hall", + "romanization": "Auditorium", + "example_sentence_native": "Das Auditorium war voll besetzt.", + "example_sentence_english": "The auditorium was fully occupied.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24052 + }, + { + "word": "auffahren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drive up;to collide (rear-end)", + "romanization": "auffahren", + "example_sentence_native": "Das Auto ist auf das andere aufgefahren.", + "example_sentence_english": "The car rear-ended the other one.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24053 + }, + { + "word": "Ausbildungsplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprenticeship position", + "romanization": "Ausbildungsplatz", + "example_sentence_native": "Er sucht einen Ausbildungsplatz als Mechaniker.", + "example_sentence_english": "He is looking for an apprenticeship position as a mechanic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24054 + }, + { + "word": "ausführend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executive;performing", + "romanization": "ausführend", + "example_sentence_native": "Die ausführende Firma hat gute Arbeit geleistet.", + "example_sentence_english": "The executing company did a good job.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24055 + }, + { + "word": "Ausgangssituation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initial situation", + "romanization": "Ausgangssituation", + "example_sentence_native": "Die Ausgangssituation war schwierig.", + "example_sentence_english": "The initial situation was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24056 + }, + { + "word": "auszählen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to count out;to tally", + "romanization": "auszählen", + "example_sentence_native": "Sie müssen die Stimmen auszählen.", + "example_sentence_english": "They have to count out the votes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "zählen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24057 + }, + { + "word": "Auslese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selection;choice", + "romanization": "Auslese", + "example_sentence_native": "Das ist eine gute Auslese an Büchern.", + "example_sentence_english": "That is a good selection of books.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24058 + }, + { + "word": "Autopilot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autopilot", + "romanization": "Autopilot", + "example_sentence_native": "Das Flugzeug flog im Autopilot-Modus.", + "example_sentence_english": "The plane flew in autopilot mode.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24059 + }, + { + "word": "Autoreifen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car tire", + "romanization": "Autoreifen", + "example_sentence_native": "Der Autoreifen ist platt.", + "example_sentence_english": "The car tire is flat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24060 + }, + { + "word": "bahnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make one's way;to clear a path", + "romanization": "bahnen", + "example_sentence_native": "Das Wasser bahnte sich seinen Weg durch die Felsen.", + "example_sentence_english": "The water made its way through the rocks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24065 + }, + { + "word": "Bai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bay", + "romanization": "Bai", + "example_sentence_native": "Wir segelten in die kleine Bai.", + "example_sentence_english": "We sailed into the small bay.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24066 + }, + { + "word": "Barbier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barber", + "romanization": "Barbier", + "example_sentence_native": "Der Barbier schnitt ihm die Haare.", + "example_sentence_english": "The barber cut his hair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24068 + }, + { + "word": "Betäubungsmittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anesthetic;narcotic", + "romanization": "Betäubungsmittel", + "example_sentence_native": "Der Arzt verabreichte ein Betäubungsmittel.", + "example_sentence_english": "The doctor administered an anesthetic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24071 + }, + { + "word": "Bias", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bias", + "romanization": "Bias", + "example_sentence_native": "Es gibt einen Bias in den Daten.", + "example_sentence_english": "There is a bias in the data.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24072 + }, + { + "word": "Bildungsarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educational work;educational outreach", + "romanization": "Bildungsarbeit", + "example_sentence_native": "Die Organisation leistet wichtige Bildungsarbeit.", + "example_sentence_english": "The organization does important educational work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24073 + }, + { + "word": "Blickfang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eye-catcher;focal point", + "romanization": "Blickfang", + "example_sentence_native": "Das Gemälde ist ein echter Blickfang.", + "example_sentence_english": "The painting is a real eye-catcher.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24075 + }, + { + "word": "Blumenkohl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cauliflower", + "romanization": "Blumenkohl", + "example_sentence_native": "Ich mag Blumenkohl mit Käsesauce.", + "example_sentence_english": "I like cauliflower with cheese sauce.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24076 + }, + { + "word": "Butt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flounder", + "romanization": "Butt", + "example_sentence_native": "Der Butt ist ein Plattfisch.", + "example_sentence_english": "The flounder is a flatfish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24082 + }, + { + "word": "Byte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "byte", + "romanization": "Byte", + "example_sentence_native": "Ein Byte besteht aus acht Bit.", + "example_sentence_english": "A byte consists of eight bits.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24083 + }, + { + "word": "Callcenter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "call center", + "romanization": "Callcenter", + "example_sentence_native": "Sie arbeitet in einem Callcenter.", + "example_sentence_english": "She works in a call center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24084 + }, + { + "word": "Cheerleader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerleader", + "romanization": "Cheerleader", + "example_sentence_native": "Die Cheerleader feuerten ihr Team an.", + "example_sentence_english": "The cheerleaders cheered on their team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24088 + }, + { + "word": "Chemo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemo (chemotherapy)", + "romanization": "Chemo", + "example_sentence_native": "Sie muss sich einer Chemo unterziehen.", + "example_sentence_english": "She has to undergo chemo.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24089 + }, + { + "word": "chilenisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Chilean", + "romanization": "chilenisch", + "example_sentence_native": "Er mag chilenischen Wein.", + "example_sentence_english": "He likes Chilean wine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24090 + }, + { + "word": "Datensicherheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data security", + "romanization": "Datensicherheit", + "example_sentence_native": "Datensicherheit ist heutzutage sehr wichtig.", + "example_sentence_english": "Data security is very important nowadays.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24094 + }, + { + "word": "dazugehören", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to belong to it;to be part of it", + "romanization": "dazugehören", + "example_sentence_native": "Das gehört einfach dazu.", + "example_sentence_english": "That's just part of it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dazu", + "base_verb": "gehören", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24096 + }, + { + "word": "dezidiert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decided;explicit;resolute", + "romanization": "dezidiert", + "example_sentence_native": "Er äußerte eine dezidierte Meinung.", + "example_sentence_english": "He expressed a decided opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24099 + }, + { + "word": "Draft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "draft (preliminary version)", + "romanization": "Draft", + "example_sentence_native": "Der erste Draft des Berichts ist fertig.", + "example_sentence_english": "The first draft of the report is ready.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24103 + }, + { + "word": "Drahtzieher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mastermind;puppet master", + "romanization": "Drahtzieher", + "example_sentence_native": "Er gilt als der Drahtzieher hinter der ganzen Operation.", + "example_sentence_english": "He is considered the mastermind behind the whole operation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24104 + }, + { + "word": "Ecstasy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecstasy", + "romanization": "Ecstasy", + "example_sentence_native": "Die Musik versetzte sie in einen Zustand der Ecstasy.", + "example_sentence_english": "The music put her in a state of ecstasy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24106 + }, + { + "word": "Edelmetall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precious metal", + "romanization": "Edelmetall", + "example_sentence_native": "Gold ist ein Edelmetall.", + "example_sentence_english": "Gold is a precious metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24107 + }, + { + "word": "Eigenbedarf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personal use;own needs", + "romanization": "Eigenbedarf", + "example_sentence_native": "Die Wohnung wird wegen Eigenbedarfs gekündigt.", + "example_sentence_english": "The apartment is being terminated due to personal use.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24109 + }, + { + "word": "eigenmächtig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unauthorized;arbitrary", + "romanization": "eigenmächtig", + "example_sentence_native": "Er hat eigenmächtig gehandelt.", + "example_sentence_english": "He acted without authorization.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24110 + }, + { + "word": "eindrücklich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impressive;memorable", + "romanization": "eindrücklich", + "example_sentence_native": "Das war eine eindrückliche Vorstellung.", + "example_sentence_english": "That was an impressive performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24111 + }, + { + "word": "einbrocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get oneself into trouble;to cause trouble", + "romanization": "einbrocken", + "example_sentence_native": "Das hast du dir selbst eingebrockt.", + "example_sentence_english": "You brought that upon yourself.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "brocken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24112 + }, + { + "word": "Eingeweide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrails;guts", + "romanization": "Eingeweide", + "example_sentence_native": "Die Eingeweide des Tieres wurden entfernt.", + "example_sentence_english": "The animal's entrails were removed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24113 + }, + { + "word": "einladend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inviting;welcoming", + "romanization": "einladend", + "example_sentence_native": "Das Haus sah sehr einladend aus.", + "example_sentence_english": "The house looked very inviting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24114 + }, + { + "word": "Energiegewinnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy generation;energy production", + "romanization": "Energiegewinnung", + "example_sentence_native": "Die Energiegewinnung aus erneuerbaren Quellen ist wichtig.", + "example_sentence_english": "Energy generation from renewable sources is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24117 + }, + { + "word": "entreissen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to snatch away;to tear away", + "romanization": "entreissen", + "example_sentence_native": "Er konnte sich dem Griff entreissen.", + "example_sentence_english": "He was able to tear himself free from the grip.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24119 + }, + { + "word": "Erbauung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edification;construction", + "romanization": "Erbauung", + "example_sentence_native": "Die Erbauung des neuen Gebäudes dauerte zwei Jahre.", + "example_sentence_english": "The construction of the new building took two years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24120 + }, + { + "word": "Erbschaftssteuer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inheritance tax", + "romanization": "Erbschaftssteuer", + "example_sentence_native": "In Deutschland muss man oft Erbschaftssteuer zahlen.", + "example_sentence_english": "In Germany, one often has to pay inheritance tax.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24121 + }, + { + "word": "Erdnussbutter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peanut butter", + "romanization": "Erdnussbutter", + "example_sentence_native": "Ich esse gerne Brot mit Erdnussbutter.", + "example_sentence_english": "I like to eat bread with peanut butter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24123 + }, + { + "word": "erfrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze to death", + "romanization": "erfrieren", + "example_sentence_native": "Ohne warme Kleidung könnte man in dieser Kälte erfrieren.", + "example_sentence_english": "Without warm clothes, one could freeze to death in this cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24124 + }, + { + "word": "erlebbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experienceable;tangible", + "romanization": "erlebbar", + "example_sentence_native": "Die Geschichte wird durch diese Ausstellung erlebbar gemacht.", + "example_sentence_english": "The history is made experienceable through this exhibition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24126 + }, + { + "word": "Erschaffung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creation;genesis", + "romanization": "Erschaffung", + "example_sentence_native": "Die Erschaffung der Welt ist ein zentrales Thema in vielen Religionen.", + "example_sentence_english": "The creation of the world is a central theme in many religions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24129 + }, + { + "word": "Fabrikant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturer;producer", + "romanization": "Fabrikant", + "example_sentence_native": "Der Fabrikant liefert die Waren pünktlich.", + "example_sentence_english": "The manufacturer delivers the goods on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24133 + }, + { + "word": "Fachgruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialist group;working group", + "romanization": "Fachgruppe", + "example_sentence_native": "Die Fachgruppe trifft sich einmal im Monat.", + "example_sentence_english": "The specialist group meets once a month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24134 + }, + { + "word": "Fachtagung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specialist conference;symposium", + "romanization": "Fachtagung", + "example_sentence_native": "Nächste Woche findet eine wichtige Fachtagung statt.", + "example_sentence_english": "An important specialist conference will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24135 + }, + { + "word": "fad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bland;dull;insipid", + "romanization": "fad", + "example_sentence_native": "Das Essen schmeckt heute sehr fad.", + "example_sentence_english": "The food tastes very bland today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24136 + }, + { + "word": "Fahrlehrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driving instructor", + "romanization": "Fahrlehrer", + "example_sentence_native": "Mein Fahrlehrer ist sehr geduldig.", + "example_sentence_english": "My driving instructor is very patient.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24137 + }, + { + "word": "Farbton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shade;hue;tint", + "romanization": "Farbton", + "example_sentence_native": "Dieser Farbton passt gut zu deiner Wandfarbe.", + "example_sentence_english": "This shade goes well with your wall color.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24138 + }, + { + "word": "federführend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leading;in charge;responsible", + "romanization": "federführend", + "example_sentence_native": "Die Abteilung ist federführend bei diesem Projekt.", + "example_sentence_english": "The department is leading this project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24139 + }, + { + "word": "Fernsehsendung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "television program", + "romanization": "Fernsehsendung", + "example_sentence_native": "Meine Lieblingsfernsehsendung läuft jeden Abend um acht Uhr.", + "example_sentence_english": "My favorite television program runs every evening at eight o'clock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24141 + }, + { + "word": "Festakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceremony", + "romanization": "Festakt", + "example_sentence_native": "Der Festakt zur Eröffnung des Museums war sehr beeindruckend.", + "example_sentence_english": "The ceremony for the opening of the museum was very impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24142 + }, + { + "word": "Flinte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shotgun", + "romanization": "Flinte", + "example_sentence_native": "Der Jäger trug seine Flinte auf der Schulter.", + "example_sentence_english": "The hunter carried his shotgun on his shoulder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24145 + }, + { + "word": "Folgekosten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "follow-up costs", + "romanization": "Folgekosten", + "example_sentence_native": "Die Reparatur verursachte unerwartete Folgekosten.", + "example_sentence_english": "The repair caused unexpected follow-up costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24147 + }, + { + "word": "Frachtschiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cargo ship", + "romanization": "Frachtschiff", + "example_sentence_native": "Ein großes Frachtschiff legte im Hafen an.", + "example_sentence_english": "A large cargo ship docked in the harbor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24148 + }, + { + "word": "freiberuflich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freelance", + "romanization": "freiberuflich", + "example_sentence_native": "Sie arbeitet freiberuflich als Designerin.", + "example_sentence_english": "She works freelance as a designer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24150 + }, + { + "word": "Freiheitskämpfer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "freedom fighter", + "romanization": "Freiheitskämpfer", + "example_sentence_native": "Er wurde als Freiheitskämpfer verehrt.", + "example_sentence_english": "He was revered as a freedom fighter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24151 + }, + { + "word": "Fussabdruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footprint", + "romanization": "Fussabdruck", + "example_sentence_native": "Wir sahen einen grossen Fussabdruck im Schnee.", + "example_sentence_english": "We saw a large footprint in the snow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24153 + }, + { + "word": "Fussballverband", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "football association", + "romanization": "Fussballverband", + "example_sentence_native": "Der Fussballverband hat neue Regeln eingeführt.", + "example_sentence_english": "The football association has introduced new rules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24154 + }, + { + "word": "Futsal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "futsal", + "romanization": "Futsal", + "example_sentence_native": "Futsal ist eine Variante des Fussballs.", + "example_sentence_english": "Futsal is a variant of football.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24155 + }, + { + "word": "Futtermittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal feed", + "romanization": "Futtermittel", + "example_sentence_native": "Die Bauern kaufen Futtermittel für ihre Tiere.", + "example_sentence_english": "The farmers buy animal feed for their animals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24156 + }, + { + "word": "Gastwirt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "innkeeper", + "romanization": "Gastwirt", + "example_sentence_native": "Der Gastwirt begrüsste uns freundlich.", + "example_sentence_english": "The innkeeper greeted us kindly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24158 + }, + { + "word": "Gateway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gateway", + "romanization": "Gateway", + "example_sentence_native": "Das Internet-Gateway verbindet unser Netzwerk mit dem World Wide Web.", + "example_sentence_english": "The internet gateway connects our network to the World Wide Web.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24159 + }, + { + "word": "Gebärdensprache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign language", + "romanization": "Gebärdensprache", + "example_sentence_native": "Sie lernt Gebärdensprache, um mit Gehörlosen zu kommunizieren.", + "example_sentence_english": "She is learning sign language to communicate with deaf people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24160 + }, + { + "word": "gefahrlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safe;harmless", + "romanization": "gefahrlos", + "example_sentence_native": "Die Operation war gefahrlos.", + "example_sentence_english": "The operation was safe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24161 + }, + { + "word": "Geschirrspüler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dishwasher", + "romanization": "Geschirrspüler", + "example_sentence_native": "Wir haben einen neuen Geschirrspüler gekauft.", + "example_sentence_english": "We bought a new dishwasher.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24164 + }, + { + "word": "Geschlechtskrankheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexually transmitted disease (STD)", + "romanization": "Geschlechtskrankheit", + "example_sentence_native": "Eine Geschlechtskrankheit erfordert ärztliche Behandlung.", + "example_sentence_english": "A sexually transmitted disease requires medical treatment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24165 + }, + { + "word": "Gewerbefläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial area;space", + "romanization": "Gewerbefläche", + "example_sentence_native": "Das Unternehmen sucht eine neue Gewerbefläche.", + "example_sentence_english": "The company is looking for a new commercial space.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24166 + }, + { + "word": "Gewichtsklasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weight class", + "romanization": "Gewichtsklasse", + "example_sentence_native": "Er tritt in der nächsten Gewichtsklasse an.", + "example_sentence_english": "He is competing in the next weight class.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24167 + }, + { + "word": "Glaubensgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "religious community;denomination", + "romanization": "Glaubensgemeinschaft", + "example_sentence_native": "Sie gehört einer kleinen Glaubensgemeinschaft an.", + "example_sentence_english": "She belongs to a small religious community.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24169 + }, + { + "word": "glühend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glowing;ardent", + "romanization": "glühend", + "example_sentence_native": "Das Eisen war glühend heiß.", + "example_sentence_english": "The iron was glowing hot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24170 + }, + { + "word": "Grundstock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic stock;foundation", + "romanization": "Grundstock", + "example_sentence_native": "Er legte den Grundstock für sein Vermögen.", + "example_sentence_english": "He laid the foundation for his fortune.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24173 + }, + { + "word": "Gusto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appetite;liking", + "romanization": "Gusto", + "example_sentence_native": "Ich habe keinen Gusto auf Süßigkeiten.", + "example_sentence_english": "I don't have an appetite for sweets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24175 + }, + { + "word": "Hangar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hangar", + "romanization": "Hangar", + "example_sentence_native": "Das Flugzeug steht im Hangar.", + "example_sentence_english": "The airplane is in the hangar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24180 + }, + { + "word": "hellbraun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light brown", + "romanization": "hellbraun", + "example_sentence_native": "Sie hat hellbraune Haare.", + "example_sentence_english": "She has light brown hair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24183 + }, + { + "word": "Herzfrequenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heart rate", + "romanization": "Herzfrequenz", + "example_sentence_native": "Die Herzfrequenz steigt beim Sport.", + "example_sentence_english": "The heart rate increases during exercise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24185 + }, + { + "word": "Hilfskraft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assistant", + "romanization": "Hilfskraft", + "example_sentence_native": "Er arbeitet als Hilfskraft in der Bibliothek.", + "example_sentence_english": "He works as an assistant in the library.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24186 + }, + { + "word": "Himbeere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raspberry", + "romanization": "Himbeere", + "example_sentence_native": "Ich liebe frische Himbeeren im Sommer.", + "example_sentence_english": "I love fresh raspberries in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24187 + }, + { + "word": "hinausgehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "going beyond", + "romanization": "hinausgehend", + "example_sentence_native": "Die Kosten sind über das Budget hinausgehend.", + "example_sentence_english": "The costs are exceeding the budget.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24188 + }, + { + "word": "Hintergedanke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ulterior motive", + "romanization": "Hintergedanke", + "example_sentence_native": "Er hatte einen Hintergedanken bei seiner Hilfe.", + "example_sentence_english": "He had an ulterior motive for his help.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24189 + }, + { + "word": "hinzuziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consult", + "romanization": "hinzuziehen", + "example_sentence_native": "Wir müssen einen Experten hinzuziehen.", + "example_sentence_english": "We need to consult an expert.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hinzu", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24190 + }, + { + "word": "hochfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to boot up", + "romanization": "hochfahren", + "example_sentence_native": "Ich muss den Computer hochfahren.", + "example_sentence_english": "I need to boot up the computer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hoch", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24191 + }, + { + "word": "Hochglanz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-gloss", + "romanization": "Hochglanz", + "example_sentence_native": "Das Möbelstück hat eine Hochglanz-Oberfläche.", + "example_sentence_english": "The piece of furniture has a high-gloss surface.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24192 + }, + { + "word": "Hochrechnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "projection", + "romanization": "Hochrechnung", + "example_sentence_native": "Die erste Hochrechnung zeigt ein klares Ergebnis.", + "example_sentence_english": "The first projection shows a clear result.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24193 + }, + { + "word": "homöopathisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homeopathic", + "romanization": "homöopathisch", + "example_sentence_native": "Er versucht eine homöopathische Behandlung.", + "example_sentence_english": "He is trying a homeopathic treatment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24194 + }, + { + "word": "Horoskop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horoscope", + "romanization": "Horoskop", + "example_sentence_native": "Liest du dein Horoskop jeden Tag?", + "example_sentence_english": "Do you read your horoscope every day?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24197 + }, + { + "word": "idyllisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idyllic", + "romanization": "idyllisch", + "example_sentence_native": "Das ist ein idyllischer Ort.", + "example_sentence_english": "This is an idyllic place.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24200 + }, + { + "word": "Individualisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "individualization", + "romanization": "Individualisierung", + "example_sentence_native": "Die Individualisierung der Gesellschaft nimmt zu.", + "example_sentence_english": "The individualization of society is increasing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24202 + }, + { + "word": "Industriestaat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrialized nation", + "romanization": "Industriestaat", + "example_sentence_native": "Deutschland ist ein wichtiger Industriestaat.", + "example_sentence_english": "Germany is an important industrialized nation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24203 + }, + { + "word": "Infusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infusion", + "romanization": "Infusion", + "example_sentence_native": "Der Patient bekam eine Infusion.", + "example_sentence_english": "The patient received an infusion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24205 + }, + { + "word": "Ingenieurbüro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engineering office", + "romanization": "Ingenieurbüro", + "example_sentence_native": "Er arbeitet in einem Ingenieurbüro.", + "example_sentence_english": "He works in an engineering office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24206 + }, + { + "word": "Inhaltsangabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summary;synopsis", + "romanization": "Inhaltsangabe", + "example_sentence_native": "Bitte schreiben Sie eine Inhaltsangabe des Textes.", + "example_sentence_english": "Please write a summary of the text.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24207 + }, + { + "word": "injizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inject", + "romanization": "injizieren", + "example_sentence_native": "Der Arzt muss das Medikament injizieren.", + "example_sentence_english": "The doctor must inject the medication.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24208 + }, + { + "word": "innerstädtisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inner-city;urban", + "romanization": "innerstädtisch", + "example_sentence_native": "Es gibt viele innerstädtische Probleme.", + "example_sentence_english": "There are many inner-city problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24209 + }, + { + "word": "irrational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrational", + "romanization": "irrational", + "example_sentence_native": "Seine Angst war völlig irrational.", + "example_sentence_english": "His fear was completely irrational.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24210 + }, + { + "word": "Jeck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fool;carnival reveler", + "romanization": "Jeck", + "example_sentence_native": "An Karneval verkleiden sich die Jecken.", + "example_sentence_english": "During carnival, the revelers dress up.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24215 + }, + { + "word": "Jogger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jogger", + "romanization": "Jogger", + "example_sentence_native": "Der Jogger läuft jeden Morgen im Park.", + "example_sentence_english": "The jogger runs in the park every morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24217 + }, + { + "word": "Karawane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caravan", + "romanization": "Karawane", + "example_sentence_native": "Eine Karawane zog durch die Wüste.", + "example_sentence_english": "A caravan moved through the desert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24219 + }, + { + "word": "kastrieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to castrate", + "romanization": "kastrieren", + "example_sentence_native": "Der Tierarzt wird das Kätzchen kastrieren.", + "example_sentence_english": "The vet will castrate the kitten.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24220 + }, + { + "word": "Kelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ladle;trowel", + "romanization": "Kelle", + "example_sentence_native": "Sie rührte die Suppe mit einer großen Kelle um.", + "example_sentence_english": "She stirred the soup with a large ladle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24223 + }, + { + "word": "Kerbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notch;indentation", + "romanization": "Kerbe", + "example_sentence_native": "Er machte eine Kerbe in den Stock.", + "example_sentence_english": "He made a notch in the stick.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24225 + }, + { + "word": "Kernkraftwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear power plant", + "romanization": "Kernkraftwerk", + "example_sentence_native": "Das Kernkraftwerk wurde abgeschaltet.", + "example_sentence_english": "The nuclear power plant was shut down.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24226 + }, + { + "word": "Kirschbaum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cherry tree", + "romanization": "Kirschbaum", + "example_sentence_native": "Im Frühling blüht der Kirschbaum wunderschön.", + "example_sentence_english": "In spring, the cherry tree blossoms beautifully.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24227 + }, + { + "word": "Knauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knob;pommel", + "romanization": "Knauf", + "example_sentence_native": "Der Knauf der Tür war locker.", + "example_sentence_english": "The doorknob was loose.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24228 + }, + { + "word": "Knechtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "servitude;bondage", + "romanization": "Knechtschaft", + "example_sentence_native": "Viele Völker litten unter der Knechtschaft.", + "example_sentence_english": "Many peoples suffered under servitude.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24229 + }, + { + "word": "Kobold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goblin;imp", + "romanization": "Kobold", + "example_sentence_native": "Der Kobold versteckte sich unter dem Bett.", + "example_sentence_english": "The goblin hid under the bed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24232 + }, + { + "word": "Kocher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooker;stove;boiler", + "romanization": "Kocher", + "example_sentence_native": "Der Kocher ist sehr effizient.", + "example_sentence_english": "The cooker is very efficient.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24233 + }, + { + "word": "komplettieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to complete;to complement", + "romanization": "komplettieren", + "example_sentence_native": "Er muss die Aufgabe noch komplettieren.", + "example_sentence_english": "He still has to complete the task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24235 + }, + { + "word": "Konservatorium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservatory (music;arts school)", + "romanization": "Konservatorium", + "example_sentence_native": "Sie studiert Musik am Konservatorium.", + "example_sentence_english": "She studies music at the conservatory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24237 + }, + { + "word": "konservieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preserve;to conserve", + "romanization": "konservieren", + "example_sentence_native": "Man kann Obst durch Einkochen konservieren.", + "example_sentence_english": "You can preserve fruit by canning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24238 + }, + { + "word": "Konversion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conversion", + "romanization": "Konversion", + "example_sentence_native": "Die Konversion von Daten ist oft komplex.", + "example_sentence_english": "The conversion of data is often complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24240 + }, + { + "word": "Kunsthaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "art museum", + "romanization": "Kunsthaus", + "example_sentence_native": "Das Kunsthaus zeigt moderne Skulpturen.", + "example_sentence_english": "The art museum shows modern sculptures.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24242 + }, + { + "word": "Landesbibliothek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state library", + "romanization": "Landesbibliothek", + "example_sentence_native": "Die Landesbibliothek hat eine große Sammlung alter Bücher.", + "example_sentence_english": "The state library has a large collection of old books.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24245 + }, + { + "word": "Laufband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treadmill", + "romanization": "Laufband", + "example_sentence_native": "Ich trainiere jeden Morgen auf dem Laufband.", + "example_sentence_english": "I train every morning on the treadmill.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24246 + }, + { + "word": "Lebendigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liveliness;vitality", + "romanization": "Lebendigkeit", + "example_sentence_native": "Die Lebendigkeit der Stadt ist beeindruckend.", + "example_sentence_english": "The liveliness of the city is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24247 + }, + { + "word": "leichtsinnig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careless;reckless", + "romanization": "leichtsinnig", + "example_sentence_native": "Seine leichtsinnige Entscheidung führte zu Problemen.", + "example_sentence_english": "His careless decision led to problems.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24250 + }, + { + "word": "letztgenannt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "last-mentioned;latter", + "romanization": "letztgenannt", + "example_sentence_native": "Die letztgenannte Option ist die beste.", + "example_sentence_english": "The last-mentioned option is the best.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24251 + }, + { + "word": "Limes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Limes (Roman border);limit (math)", + "romanization": "Limes", + "example_sentence_native": "Der römische Limes war eine Grenze des Römischen Reiches.", + "example_sentence_english": "The Roman Limes was a border of the Roman Empire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24252 + }, + { + "word": "Machtverhältnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "power relation;balance", + "romanization": "Machtverhältnis", + "example_sentence_native": "Das Machtverhältnis zwischen den Parteien hat sich verschoben.", + "example_sentence_english": "The power relation between the parties has shifted.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24258 + }, + { + "word": "Mangelware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarce commodity", + "romanization": "Mangelware", + "example_sentence_native": "Benzin war in Kriegszeiten oft Mangelware.", + "example_sentence_english": "Gasoline was often a scarce commodity during wartime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24260 + }, + { + "word": "Martyrium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "martyrdom", + "romanization": "Martyrium", + "example_sentence_native": "Sein Leben war ein Martyrium.", + "example_sentence_english": "His life was a martyrdom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24262 + }, + { + "word": "Milligramm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "milligram", + "romanization": "Milligramm", + "example_sentence_native": "Die Tablette enthält 500 Milligramm Paracetamol.", + "example_sentence_english": "The tablet contains 500 milligrams of paracetamol.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24269 + }, + { + "word": "Mineralogie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mineralogy", + "romanization": "Mineralogie", + "example_sentence_native": "Er studierte Mineralogie an der Universität.", + "example_sentence_english": "He studied mineralogy at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24271 + }, + { + "word": "Moose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosses", + "romanization": "Moose", + "example_sentence_native": "Der alte Baumstamm war mit grünen Moosen bedeckt.", + "example_sentence_english": "The old tree trunk was covered with green mosses.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24273 + }, + { + "word": "motiviert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivated", + "romanization": "motiviert", + "example_sentence_native": "Sie ist sehr motiviert, ihre Ziele zu erreichen.", + "example_sentence_english": "She is very motivated to achieve her goals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24274 + }, + { + "word": "murmeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to murmur", + "romanization": "murmeln", + "example_sentence_native": "Er begann, leise vor sich hin zu murmeln.", + "example_sentence_english": "He began to murmur softly to himself.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24275 + }, + { + "word": "nachlässig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careless", + "romanization": "nachlässig", + "example_sentence_native": "Seine Arbeit war oft sehr nachlässig.", + "example_sentence_english": "His work was often very careless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24276 + }, + { + "word": "naschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to snack", + "romanization": "naschen", + "example_sentence_native": "Kinder naschen gerne Süßigkeiten.", + "example_sentence_english": "Children like to snack on sweets.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24278 + }, + { + "word": "Nektar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nectar", + "romanization": "Nektar", + "example_sentence_native": "Bienen sammeln Nektar von Blumen.", + "example_sentence_english": "Bees collect nectar from flowers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24279 + }, + { + "word": "Newsticker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "news ticker", + "romanization": "Newsticker", + "example_sentence_native": "Der Newsticker zeigte die neuesten Schlagzeilen.", + "example_sentence_english": "The news ticker showed the latest headlines.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24282 + }, + { + "word": "niederschreiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to write down", + "romanization": "niederschreiben", + "example_sentence_native": "Er musste alles niederschreiben, was er gehört hatte.", + "example_sentence_english": "He had to write down everything he had heard.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nieder", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24283 + }, + { + "word": "Niederschrift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "written record;transcript", + "romanization": "Niederschrift", + "example_sentence_native": "Die Niederschrift des Protokolls dauerte lange.", + "example_sentence_english": "The transcription of the minutes took a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24284 + }, + { + "word": "Nomaden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nomads", + "romanization": "Nomaden", + "example_sentence_native": "Die Nomaden zogen mit ihren Herden durch die Wüste.", + "example_sentence_english": "The nomads moved with their herds through the desert.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24286 + }, + { + "word": "Nut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groove;slot", + "romanization": "Nut", + "example_sentence_native": "Die Schraube passte genau in die Nut.", + "example_sentence_english": "The screw fit exactly into the groove.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24289 + }, + { + "word": "Oboe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oboe", + "romanization": "Oboe", + "example_sentence_native": "Sie spielt die Oboe in einem Orchester.", + "example_sentence_english": "She plays the oboe in an orchestra.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24292 + }, + { + "word": "Parlamentarismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parliamentarism", + "romanization": "Parlamentarismus", + "example_sentence_native": "Der Parlamentarismus ist eine Form der Regierung.", + "example_sentence_english": "Parliamentarism is a form of government.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24297 + }, + { + "word": "partiell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partial", + "romanization": "partiell", + "example_sentence_native": "Es gab eine partielle Sonnenfinsternis.", + "example_sentence_english": "There was a partial solar eclipse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24299 + }, + { + "word": "Patenschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsorship", + "romanization": "Patenschaft", + "example_sentence_native": "Sie übernahm die Patenschaft für das Waisenkind.", + "example_sentence_english": "She took on the sponsorship for the orphan.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24300 + }, + { + "word": "Patientenverfügung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "living will", + "romanization": "Patientenverfügung", + "example_sentence_native": "Eine Patientenverfügung regelt medizinische Entscheidungen im Voraus.", + "example_sentence_english": "A living will regulates medical decisions in advance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24301 + }, + { + "word": "Patrouille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patrol", + "romanization": "Patrouille", + "example_sentence_native": "Die Polizei schickte eine Patrouille in das Viertel.", + "example_sentence_english": "The police sent a patrol into the neighborhood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24302 + }, + { + "word": "pazifisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pacific", + "romanization": "pazifisch", + "example_sentence_native": "Der pazifische Ozean ist der größte der Welt.", + "example_sentence_english": "The Pacific Ocean is the largest in the world.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24303 + }, + { + "word": "Pfütze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puddle", + "romanization": "Pfütze", + "example_sentence_native": "Nach dem Regen gab es viele Pfützen auf der Straße.", + "example_sentence_english": "After the rain, there were many puddles on the street.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24305 + }, + { + "word": "polarisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to polarize", + "romanization": "polarisieren", + "example_sentence_native": "Die Debatte begann, die Meinungen zu polarisieren.", + "example_sentence_english": "The debate began to polarize opinions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24308 + }, + { + "word": "Polizeidirektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police headquarters", + "romanization": "Polizeidirektion", + "example_sentence_native": "Er arbeitet bei der örtlichen Polizeidirektion.", + "example_sentence_english": "He works at the local police headquarters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24309 + }, + { + "word": "Privatdozent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "private lecturer (academic title)", + "romanization": "Privatdozent", + "example_sentence_native": "Nach seiner Habilitation wurde er Privatdozent.", + "example_sentence_english": "After his habilitation, he became a private lecturer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24310 + }, + { + "word": "Producer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "producer", + "romanization": "Producer", + "example_sentence_native": "Der Producer war für die gesamte Filmproduktion verantwortlich.", + "example_sentence_english": "The producer was responsible for the entire film production.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24311 + }, + { + "word": "Proxy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proxy", + "romanization": "Proxy", + "example_sentence_native": "Wir verwenden einen Proxy-Server, um unsere IP-Adresse zu verbergen.", + "example_sentence_english": "We use a proxy server to hide our IP address.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24312 + }, + { + "word": "prägnant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concise", + "romanization": "prägnant", + "example_sentence_native": "Er formulierte seine Gedanken sehr prägnant.", + "example_sentence_english": "He formulated his thoughts very concisely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24313 + }, + { + "word": "Präsidentschaftskandidat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidential candidate", + "romanization": "Präsidentschaftskandidat", + "example_sentence_native": "Der Präsidentschaftskandidat hielt eine Rede vor großem Publikum.", + "example_sentence_english": "The presidential candidate gave a speech to a large audience.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24314 + }, + { + "word": "Pünktchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little dot", + "romanization": "Pünktchen", + "example_sentence_native": "Auf dem i fehlt ein Pünktchen.", + "example_sentence_english": "There's a little dot missing on the i.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24316 + }, + { + "word": "Racer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racer", + "romanization": "Racer", + "example_sentence_native": "Der Racer überquerte die Ziellinie als Erster.", + "example_sentence_english": "The racer crossed the finish line first.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24318 + }, + { + "word": "Rasierer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "razor", + "romanization": "Rasierer", + "example_sentence_native": "Mein neuer Rasierer ist sehr scharf.", + "example_sentence_english": "My new razor is very sharp.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24320 + }, + { + "word": "Rathausplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "town hall square", + "romanization": "Rathausplatz", + "example_sentence_native": "Wir treffen uns auf dem Rathausplatz.", + "example_sentence_english": "We are meeting in the town hall square.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24321 + }, + { + "word": "Raubtier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predator", + "romanization": "Raubtier", + "example_sentence_native": "Ein Löwe ist ein gefährliches Raubtier.", + "example_sentence_english": "A lion is a dangerous predator.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24323 + }, + { + "word": "Rechtsruck", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shift to the right (politically)", + "romanization": "Rechtsruck", + "example_sentence_native": "Die Partei erlebte einen deutlichen Rechtsruck.", + "example_sentence_english": "The party experienced a clear shift to the right.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24324 + }, + { + "word": "Regionalbahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regional train", + "romanization": "Regionalbahn", + "example_sentence_native": "Die Regionalbahn fährt alle dreißig Minuten.", + "example_sentence_english": "The regional train runs every thirty minutes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24326 + }, + { + "word": "Reiser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "twig;shoot", + "romanization": "Reiser", + "example_sentence_native": "Der Vogel sammelte kleine Reiser für sein Nest.", + "example_sentence_english": "The bird collected small twigs for its nest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24327 + }, + { + "word": "Renovierungsarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renovation work", + "romanization": "Renovierungsarbeit", + "example_sentence_native": "Die Renovierungsarbeiten am Haus dauern noch an.", + "example_sentence_english": "The renovation work on the house is still ongoing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24331 + }, + { + "word": "Repressalie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprisal;retaliation", + "romanization": "Repressalie", + "example_sentence_native": "Die Regierung drohte mit Repressalien.", + "example_sentence_english": "The government threatened reprisals.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24332 + }, + { + "word": "retour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back;return", + "romanization": "retour", + "example_sentence_native": "Das Paket ging retour an den Absender.", + "example_sentence_english": "The package went back to the sender.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24333 + }, + { + "word": "Riege", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squad;group", + "romanization": "Riege", + "example_sentence_native": "Die Turnerinnen der deutschen Riege gewannen Gold.", + "example_sentence_english": "The gymnasts of the German squad won gold.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24335 + }, + { + "word": "Ringstrasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring road;circular road", + "romanization": "Ringstrasse", + "example_sentence_native": "Die Ringstrasse um die Stadt ist oft überlastet.", + "example_sentence_english": "The ring road around the city is often congested.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24336 + }, + { + "word": "rumhängen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hang around;to lounge", + "romanization": "rumhängen", + "example_sentence_native": "Er hängt den ganzen Tag nur rum.", + "example_sentence_english": "He just hangs around all day.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rum", + "base_verb": "hängen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24337 + }, + { + "word": "rumsitzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sit around", + "romanization": "rumsitzen", + "example_sentence_native": "Warum sitzt du nur rum und machst nichts?", + "example_sentence_english": "Why are you just sitting around and doing nothing?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rum", + "base_verb": "sitzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24338 + }, + { + "word": "Rückwand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back panel;rear wall", + "romanization": "Rückwand", + "example_sentence_native": "Die Rückwand des Schranks ist lose.", + "example_sentence_english": "The back panel of the cabinet is loose.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24339 + }, + { + "word": "saarländisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saarlandic", + "romanization": "saarländisch", + "example_sentence_native": "Die saarländische Küche ist bekannt für ihre deftigen Gerichte.", + "example_sentence_english": "Saarlandic cuisine is known for its hearty dishes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24340 + }, + { + "word": "Satzzeichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuation mark", + "romanization": "Satzzeichen", + "example_sentence_native": "Vergiss nicht, die richtigen Satzzeichen zu verwenden.", + "example_sentence_english": "Don't forget to use the correct punctuation marks.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24341 + }, + { + "word": "sausen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whiz;to rush", + "romanization": "sausen", + "example_sentence_native": "Der Wind sauste durch die Bäume.", + "example_sentence_english": "The wind whizzed through the trees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24342 + }, + { + "word": "Schelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bell;clamp;slap", + "romanization": "Schelle", + "example_sentence_native": "Die Schelle am Fahrrad klingelte laut.", + "example_sentence_english": "The bell on the bicycle rang loudly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24343 + }, + { + "word": "Schliff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polish;refinement;cut (of a gem)", + "romanization": "Schliff", + "example_sentence_native": "Der Diamant erhielt einen perfekten Schliff.", + "example_sentence_english": "The diamond received a perfect cut.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24344 + }, + { + "word": "Schlossgarten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "castle garden", + "romanization": "Schlossgarten", + "example_sentence_native": "Wir machten einen Spaziergang durch den Schlossgarten.", + "example_sentence_english": "We took a walk through the castle garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24345 + }, + { + "word": "Schlüsselanhänger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "keyring;keychain", + "romanization": "Schlüsselanhänger", + "example_sentence_native": "Ich habe einen neuen Schlüsselanhänger gekauft.", + "example_sentence_english": "I bought a new keyring.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24346 + }, + { + "word": "Schmelz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enamel;melt;luster", + "romanization": "Schmelz", + "example_sentence_native": "Der Schmelz der Zähne ist sehr hart.", + "example_sentence_english": "The enamel of the teeth is very hard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24347 + }, + { + "word": "Schneeflocke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snowflake", + "romanization": "Schneeflocke", + "example_sentence_native": "Jede Schneeflocke ist einzigartig.", + "example_sentence_english": "Every snowflake is unique.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24348 + }, + { + "word": "schnüren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lace;to tie", + "romanization": "schnüren", + "example_sentence_native": "Er schnürte seine Schuhe fest.", + "example_sentence_english": "He tied his shoes tightly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24349 + }, + { + "word": "sehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seeing;sighted", + "romanization": "sehend", + "example_sentence_native": "Er ist ein sehender Mensch, aber er kann Farben nicht unterscheiden.", + "example_sentence_english": "He is a sighted person, but he cannot distinguish colors.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24351 + }, + { + "word": "Selbstironie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-irony", + "romanization": "Selbstironie", + "example_sentence_native": "Ihr Humor zeichnet sich durch viel Selbstironie aus.", + "example_sentence_english": "Her humor is characterized by a lot of self-irony.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24352 + }, + { + "word": "Selbstkontrolle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-control", + "romanization": "Selbstkontrolle", + "example_sentence_native": "Es erfordert viel Selbstkontrolle, um Versuchungen zu widerstehen.", + "example_sentence_english": "It requires a lot of self-control to resist temptations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24353 + }, + { + "word": "Selbstreflexion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-reflection", + "romanization": "Selbstreflexion", + "example_sentence_native": "Regelmäßige Selbstreflexion hilft bei der persönlichen Entwicklung.", + "example_sentence_english": "Regular self-reflection helps with personal development.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24354 + }, + { + "word": "Selbstverwirklichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-realization;self-actualization", + "romanization": "Selbstverwirklichung", + "example_sentence_native": "Die Selbstverwirklichung ist ein wichtiges menschliches Bedürfnis.", + "example_sentence_english": "Self-realization is an important human need.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24355 + }, + { + "word": "Sinus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sine", + "romanization": "Sinus", + "example_sentence_native": "Der Sinus eines Winkels ist das Verhältnis der Gegenkathete zur Hypotenuse.", + "example_sentence_english": "The sine of an angle is the ratio of the opposite side to the hypotenuse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24358 + }, + { + "word": "Skater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skater", + "romanization": "Skater", + "example_sentence_native": "Der Skater zeigte beeindruckende Tricks im Park.", + "example_sentence_english": "The skater showed impressive tricks in the park.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24360 + }, + { + "word": "Sonnenschutz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sun protection", + "romanization": "Sonnenschutz", + "example_sentence_native": "Vergiss den Sonnenschutz nicht, wenn du an den Strand gehst.", + "example_sentence_english": "Don't forget the sun protection when you go to the beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24361 + }, + { + "word": "Sopranistin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soprano (female)", + "romanization": "Sopranistin", + "example_sentence_native": "Die Sopranistin sang eine wunderschöne Arie.", + "example_sentence_english": "The soprano sang a beautiful aria.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24363 + }, + { + "word": "Spekulant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "speculator", + "romanization": "Spekulant", + "example_sentence_native": "Der Spekulant hoffte auf schnelle Gewinne am Aktienmarkt.", + "example_sentence_english": "The speculator hoped for quick profits on the stock market.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24364 + }, + { + "word": "Spiegelung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflection", + "romanization": "Spiegelung", + "example_sentence_native": "Die Spiegelung des Mondes im See war wunderschön.", + "example_sentence_english": "The reflection of the moon in the lake was beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24365 + }, + { + "word": "Spielertrainer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "player-coach", + "romanization": "Spielertrainer", + "example_sentence_native": "Er ist der Spielertrainer unserer Fußballmannschaft.", + "example_sentence_english": "He is the player-coach of our soccer team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24366 + }, + { + "word": "spiessig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuffy;narrow-minded", + "romanization": "spiessig", + "example_sentence_native": "Seine Ansichten sind manchmal etwas spiessig.", + "example_sentence_english": "His views are sometimes a bit stuffy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24367 + }, + { + "word": "Staatsangehöriger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "citizen;national", + "romanization": "Staatsangehöriger", + "example_sentence_native": "Jeder Staatsangehöriger hat das Recht auf freie Meinungsäußerung.", + "example_sentence_english": "Every citizen has the right to freedom of speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24368 + }, + { + "word": "Staatsrat", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "State Council", + "romanization": "Staatsrat", + "example_sentence_native": "Der Staatsrat berät die Regierung in wichtigen Fragen.", + "example_sentence_english": "The State Council advises the government on important matters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24369 + }, + { + "word": "Stadtplaner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urban planner", + "romanization": "Stadtplaner", + "example_sentence_native": "Die Stadtplaner entwickeln neue Konzepte für die Innenstadt.", + "example_sentence_english": "The urban planners are developing new concepts for the city center.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24370 + }, + { + "word": "Standardisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standardization", + "romanization": "Standardisierung", + "example_sentence_native": "Die Standardisierung von Prozessen kann die Effizienz erhöhen.", + "example_sentence_english": "The standardization of processes can increase efficiency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24371 + }, + { + "word": "stempeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stamp", + "romanization": "stempeln", + "example_sentence_native": "Sie muss die Pakete stempeln, bevor sie verschickt werden.", + "example_sentence_english": "She has to stamp the packages before they are sent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24373 + }, + { + "word": "Stossstange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bumper", + "romanization": "Stossstange", + "example_sentence_native": "Die Stossstange des Autos war nach dem Unfall beschädigt.", + "example_sentence_english": "The car's bumper was damaged after the accident.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24374 + }, + { + "word": "Streichquartett", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "string quartet", + "romanization": "Streichquartett", + "example_sentence_native": "Das Streichquartett spielte ein Stück von Beethoven.", + "example_sentence_english": "The string quartet played a piece by Beethoven.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24375 + }, + { + "word": "stutzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trim;to prune", + "romanization": "stutzen", + "example_sentence_native": "Der Gärtner musste die Hecke stutzen.", + "example_sentence_english": "The gardener had to trim the hedge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24376 + }, + { + "word": "Supplement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplement", + "romanization": "Supplement", + "example_sentence_native": "Er nimmt ein Vitamin-Supplement für seine Gesundheit.", + "example_sentence_english": "He takes a vitamin supplement for his health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24377 + }, + { + "word": "Surprise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surprise", + "romanization": "Surprise", + "example_sentence_native": "Sie bereitete eine kleine Surprise für ihren Geburtstag vor.", + "example_sentence_english": "She prepared a small surprise for her birthday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24378 + }, + { + "word": "Terrormiliz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrorist militia", + "romanization": "Terrormiliz", + "example_sentence_native": "Die Terrormiliz verübte einen Anschlag.", + "example_sentence_english": "The terrorist militia carried out an attack.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24380 + }, + { + "word": "thronen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be enthroned", + "romanization": "thronen", + "example_sentence_native": "Der König thronte auf seinem Stuhl.", + "example_sentence_english": "The king was enthroned on his chair.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24382 + }, + { + "word": "Titelverteidigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "title defense", + "romanization": "Titelverteidigung", + "example_sentence_native": "Die Mannschaft bereitete sich auf die Titelverteidigung vor.", + "example_sentence_english": "The team prepared for the title defense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24384 + }, + { + "word": "trivial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trivial", + "romanization": "trivial", + "example_sentence_native": "Das Problem war trivial und leicht zu lösen.", + "example_sentence_english": "The problem was trivial and easy to solve.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24385 + }, + { + "word": "Umbauarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renovation work", + "romanization": "Umbauarbeit", + "example_sentence_native": "Die Umbauarbeiten am Haus dauern noch an.", + "example_sentence_english": "The renovation work on the house is still ongoing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24387 + }, + { + "word": "Umweltschützer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmentalist", + "romanization": "Umweltschützer", + "example_sentence_native": "Die Umweltschützer protestierten gegen die Abholzung.", + "example_sentence_english": "The environmentalists protested against the deforestation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24388 + }, + { + "word": "unentdeckt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undiscovered", + "romanization": "unentdeckt", + "example_sentence_native": "Der Schatz blieb jahrelang unentdeckt.", + "example_sentence_english": "The treasure remained undiscovered for years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24389 + }, + { + "word": "ungelöst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsolved", + "romanization": "ungelöst", + "example_sentence_native": "Das Rätsel blieb ungelöst.", + "example_sentence_english": "The riddle remained unsolved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24390 + }, + { + "word": "universitär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university-related", + "romanization": "universitär", + "example_sentence_native": "Er hat eine universitäre Ausbildung.", + "example_sentence_english": "He has a university education.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24391 + }, + { + "word": "Unterrichtsstunde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lesson", + "romanization": "Unterrichtsstunde", + "example_sentence_native": "Die Unterrichtsstunde begann pünktlich.", + "example_sentence_english": "The lesson started on time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24393 + }, + { + "word": "unvernünftig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unreasonable", + "romanization": "unvernünftig", + "example_sentence_native": "Es wäre unvernünftig, jetzt aufzugeben.", + "example_sentence_english": "It would be unreasonable to give up now.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24394 + }, + { + "word": "Unzucht", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "lewdness", + "romanization": "Unzucht", + "example_sentence_native": "Im Mittelalter wurde Unzucht streng bestraft.", + "example_sentence_english": "In the Middle Ages, lewdness was severely punished.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24395 + }, + { + "word": "Verarsche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rip-off", + "romanization": "Verarsche", + "example_sentence_native": "Das war doch eine totale Verarsche!", + "example_sentence_english": "That was a total rip-off!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24397 + }, + { + "word": "verbissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenacious", + "romanization": "verbissen", + "example_sentence_native": "Er kämpfte verbissen um seinen Erfolg.", + "example_sentence_english": "He fought tenaciously for his success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24398 + }, + { + "word": "verdreifachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to triple", + "romanization": "verdreifachen", + "example_sentence_native": "Die Firma konnte ihren Umsatz verdreifachen.", + "example_sentence_english": "The company was able to triple its revenue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24399 + }, + { + "word": "verlauten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be announced", + "romanization": "verlauten", + "example_sentence_native": "Es verlautete, dass die Verhandlungen erfolgreich waren.", + "example_sentence_english": "It was announced that the negotiations were successful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24400 + }, + { + "word": "verpennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to oversleep", + "romanization": "verpennen", + "example_sentence_native": "Ich habe den Bus verpennt.", + "example_sentence_english": "I overslept and missed the bus.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24401 + }, + { + "word": "verschmutzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pollute", + "romanization": "verschmutzen", + "example_sentence_native": "Die Fabrik verschmutzt die Umwelt.", + "example_sentence_english": "The factory pollutes the environment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24402 + }, + { + "word": "verträglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatible", + "romanization": "verträglich", + "example_sentence_native": "Er ist ein sehr verträglicher Mensch.", + "example_sentence_english": "He is a very agreeable person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24404 + }, + { + "word": "verübeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resent", + "romanization": "verübeln", + "example_sentence_native": "Ich kann es ihm nicht verübeln, dass er gegangen ist.", + "example_sentence_english": "I can't resent him for leaving.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24405 + }, + { + "word": "vierjährig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "four-year-old", + "romanization": "vierjährig", + "example_sentence_native": "Sie hat ein vierjähriges Kind.", + "example_sentence_english": "She has a four-year-old child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24408 + }, + { + "word": "Vorbildfunktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "role model function", + "romanization": "Vorbildfunktion", + "example_sentence_native": "Lehrer haben eine wichtige Vorbildfunktion.", + "example_sentence_english": "Teachers have an important role model function.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24409 + }, + { + "word": "Vordenker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pioneer", + "romanization": "Vordenker", + "example_sentence_native": "Er gilt als Vordenker in seinem Bereich.", + "example_sentence_english": "He is considered a pioneer in his field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24410 + }, + { + "word": "vorrätig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in stock", + "romanization": "vorrätig", + "example_sentence_native": "Ist dieser Artikel vorrätig?", + "example_sentence_english": "Is this item in stock?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24412 + }, + { + "word": "Weltwirtschaftskrise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Great Depression", + "romanization": "Weltwirtschaftskrise", + "example_sentence_native": "Die Weltwirtschaftskrise begann 1929.", + "example_sentence_english": "The Great Depression began in 1929.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24419 + }, + { + "word": "Wertverlust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depreciation", + "romanization": "Wertverlust", + "example_sentence_native": "Der Wertverlust des Autos war nach fünf Jahren erheblich.", + "example_sentence_english": "The depreciation of the car was significant after five years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24420 + }, + { + "word": "Wintergarten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conservatory", + "romanization": "Wintergarten", + "example_sentence_native": "Wir trinken Kaffee im Wintergarten.", + "example_sentence_english": "We drink coffee in the conservatory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24422 + }, + { + "word": "Wirtschaftsgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic history", + "romanization": "Wirtschaftsgeschichte", + "example_sentence_native": "Sie studiert Wirtschaftsgeschichte an der Universität.", + "example_sentence_english": "She studies economic history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24423 + }, + { + "word": "Würdenträger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dignitary", + "romanization": "Würdenträger", + "example_sentence_native": "Viele Würdenträger nahmen an der Zeremonie teil.", + "example_sentence_english": "Many dignitaries attended the ceremony.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24427 + }, + { + "word": "Zauberstab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magic wand", + "romanization": "Zauberstab", + "example_sentence_native": "Die Fee hatte einen glitzernden Zauberstab.", + "example_sentence_english": "The fairy had a glittering magic wand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24429 + }, + { + "word": "zimperlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squeamish", + "romanization": "zimperlich", + "example_sentence_native": "Sei nicht so zimperlich!", + "example_sentence_english": "Don't be so squeamish!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24430 + }, + { + "word": "zivilisiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civilized", + "romanization": "zivilisiert", + "example_sentence_native": "Er verhielt sich sehr zivilisiert.", + "example_sentence_english": "He behaved very civilized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24431 + }, + { + "word": "zurueck", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "back", + "romanization": "zurueck", + "example_sentence_native": "Er kam spät zurueck.", + "example_sentence_english": "He came back late.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24432 + }, + { + "word": "Zäsur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caesura;turning point", + "romanization": "Zäsur", + "example_sentence_native": "Der Mauerfall war eine Zäsur in der deutschen Geschichte.", + "example_sentence_english": "The fall of the Berlin Wall was a turning point in German history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24433 + }, + { + "word": "ölen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to oil;to lubricate", + "romanization": "ölen", + "example_sentence_native": "Er muss die Fahrradkette ölen.", + "example_sentence_english": "He has to oil the bicycle chain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24434 + }, + { + "word": "abgegeben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handed in;submitted", + "romanization": "abgegeben", + "example_sentence_native": "Die abgegebene Arbeit war sehr gut.", + "example_sentence_english": "The submitted work was very good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24436 + }, + { + "word": "Abmachung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agreement;arrangement", + "romanization": "Abmachung", + "example_sentence_native": "Wir haben eine klare Abmachung getroffen.", + "example_sentence_english": "We made a clear agreement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24437 + }, + { + "word": "absterben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to die off;to wither", + "romanization": "absterben", + "example_sentence_native": "Die Blätter beginnen im Herbst abzusterben.", + "example_sentence_english": "The leaves begin to die off in autumn.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sterben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24438 + }, + { + "word": "abwertend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derogatory;disparaging", + "romanization": "abwertend", + "example_sentence_native": "Seine abwertenden Kommentare waren unangebracht.", + "example_sentence_english": "His derogatory comments were inappropriate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24439 + }, + { + "word": "Adeliger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobleman", + "romanization": "Adeliger", + "example_sentence_native": "Der Adeliger trug einen feinen Anzug.", + "example_sentence_english": "The nobleman wore a fine suit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24440 + }, + { + "word": "Agitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agitation", + "romanization": "Agitation", + "example_sentence_native": "Die politische Agitation nahm zu.", + "example_sentence_english": "The political agitation increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24441 + }, + { + "word": "Altlast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contaminated site", + "romanization": "Altlast", + "example_sentence_native": "Die Sanierung der Altlasten ist teuer.", + "example_sentence_english": "The remediation of the contaminated sites is expensive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24442 + }, + { + "word": "anfeuern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheer on", + "romanization": "anfeuern", + "example_sentence_native": "Die Fans feuerten ihre Mannschaft an.", + "example_sentence_english": "The fans cheered on their team.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "feuern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24445 + }, + { + "word": "angestammt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ancestral", + "romanization": "angestammt", + "example_sentence_native": "Er kehrte in sein angestammtes Dorf zurück.", + "example_sentence_english": "He returned to his ancestral village.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24446 + }, + { + "word": "Anhängerschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following", + "romanization": "Anhängerschaft", + "example_sentence_native": "Die Partei hat eine große Anhängerschaft.", + "example_sentence_english": "The party has a large following.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24447 + }, + { + "word": "Anrufbeantworter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "answering machine", + "romanization": "Anrufbeantworter", + "example_sentence_native": "Bitte hinterlassen Sie eine Nachricht auf dem Anrufbeantworter.", + "example_sentence_english": "Please leave a message on the answering machine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24448 + }, + { + "word": "artikulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to articulate", + "romanization": "artikulieren", + "example_sentence_native": "Er konnte seine Gedanken nicht klar artikulieren.", + "example_sentence_english": "He could not clearly articulate his thoughts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24452 + }, + { + "word": "atomar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atomic", + "romanization": "atomar", + "example_sentence_native": "Die atomare Energie ist ein komplexes Thema.", + "example_sentence_english": "Atomic energy is a complex topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24455 + }, + { + "word": "aufwenden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spend", + "romanization": "aufwenden", + "example_sentence_native": "Er musste viel Zeit für das Projekt aufwenden.", + "example_sentence_english": "He had to spend a lot of time on the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "wenden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24457 + }, + { + "word": "Auktionshaus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auction house", + "romanization": "Auktionshaus", + "example_sentence_native": "Das Gemälde wurde in einem Auktionshaus verkauft.", + "example_sentence_english": "The painting was sold at an auction house.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24458 + }, + { + "word": "ausgeglichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balanced", + "romanization": "ausgeglichen", + "example_sentence_native": "Sie ist eine sehr ausgeglichene Person.", + "example_sentence_english": "She is a very balanced person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24459 + }, + { + "word": "ausgewachsen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grown-up;adult", + "romanization": "ausgewachsen", + "example_sentence_native": "Der Hund ist jetzt ausgewachsen.", + "example_sentence_english": "The dog is now grown-up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24460 + }, + { + "word": "Aussichtspunkt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viewpoint;observation point", + "romanization": "Aussichtspunkt", + "example_sentence_native": "Von diesem Aussichtspunkt hat man eine tolle Sicht.", + "example_sentence_english": "From this viewpoint, you have a great view.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24461 + }, + { + "word": "Barbarei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barbarity;barbarism", + "romanization": "Barbarei", + "example_sentence_native": "Die Barbarei des Krieges ist unerträglich.", + "example_sentence_english": "The barbarity of war is unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24464 + }, + { + "word": "Basket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basket", + "romanization": "Basket", + "example_sentence_native": "Er warf den Ball in den Basket.", + "example_sentence_english": "He threw the ball into the basket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24465 + }, + { + "word": "befüllen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fill (up)", + "romanization": "befüllen", + "example_sentence_native": "Bitte befüllen Sie das Formular vollständig.", + "example_sentence_english": "Please fill out the form completely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24468 + }, + { + "word": "beglücken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make happy;to bless", + "romanization": "beglücken", + "example_sentence_native": "Er wollte sie mit einem Geschenk beglücken.", + "example_sentence_english": "He wanted to make her happy with a gift.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24469 + }, + { + "word": "bereithalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold ready;to keep available", + "romanization": "bereithalten", + "example_sentence_native": "Bitte halten Sie Ihren Ausweis bereit.", + "example_sentence_english": "Please keep your ID ready.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bereit", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24472 + }, + { + "word": "Berufsbezeichnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "job title;professional designation", + "romanization": "Berufsbezeichnung", + "example_sentence_native": "Meine Berufsbezeichnung ist Softwareentwickler.", + "example_sentence_english": "My job title is software developer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24474 + }, + { + "word": "Bestatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undertaker;funeral director", + "romanization": "Bestatter", + "example_sentence_native": "Der Bestatter kümmerte sich um die Beerdigung.", + "example_sentence_english": "The undertaker took care of the funeral.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24475 + }, + { + "word": "Bildqualität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "image quality;picture quality", + "romanization": "Bildqualität", + "example_sentence_native": "Die Bildqualität dieser Kamera ist ausgezeichnet.", + "example_sentence_english": "The image quality of this camera is excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24478 + }, + { + "word": "Biotop", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biotope", + "romanization": "Biotop", + "example_sentence_native": "Ein Biotop ist ein Lebensraum für bestimmte Pflanzen und Tiere.", + "example_sentence_english": "A biotope is a habitat for specific plants and animals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24479 + }, + { + "word": "Blutprobe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood sample", + "romanization": "Blutprobe", + "example_sentence_native": "Der Arzt nahm eine Blutprobe.", + "example_sentence_english": "The doctor took a blood sample.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24481 + }, + { + "word": "Blähung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flatulence", + "romanization": "Blähung", + "example_sentence_native": "Er litt unter starken Blähungen.", + "example_sentence_english": "He suffered from severe flatulence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24482 + }, + { + "word": "Bosheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malice", + "romanization": "Bosheit", + "example_sentence_native": "Seine Bosheit war offensichtlich.", + "example_sentence_english": "His malice was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24484 + }, + { + "word": "Botaniker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "botanist", + "romanization": "Botaniker", + "example_sentence_native": "Der Botaniker studierte die Pflanzen.", + "example_sentence_english": "The botanist studied the plants.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24485 + }, + { + "word": "Charakteristikum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characteristic", + "romanization": "Charakteristikum", + "example_sentence_native": "Ein wichtiges Charakteristikum dieser Art ist ihre Anpassungsfähigkeit.", + "example_sentence_english": "An important characteristic of this species is its adaptability.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24492 + }, + { + "word": "Dauerregen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuous rain", + "romanization": "Dauerregen", + "example_sentence_native": "Der Dauerregen hielt die ganze Nacht an.", + "example_sentence_english": "The continuous rain lasted all night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24501 + }, + { + "word": "deckungsgleich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congruent", + "romanization": "deckungsgleich", + "example_sentence_native": "Die beiden Dreiecke sind deckungsgleich.", + "example_sentence_english": "The two triangles are congruent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24502 + }, + { + "word": "Deklaration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declaration", + "romanization": "Deklaration", + "example_sentence_native": "Die Deklaration der Menschenrechte ist ein wichtiges Dokument.", + "example_sentence_english": "The Declaration of Human Rights is an important document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24503 + }, + { + "word": "Dialyse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialysis", + "romanization": "Dialyse", + "example_sentence_native": "Der Patient muss regelmäßig zur Dialyse.", + "example_sentence_english": "The patient needs regular dialysis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24506 + }, + { + "word": "Dichterin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poetess", + "romanization": "Dichterin", + "example_sentence_native": "Die Dichterin las ihre neuesten Gedichte vor.", + "example_sentence_english": "The poetess read her latest poems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24507 + }, + { + "word": "Direktmandat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "direct mandate", + "romanization": "Direktmandat", + "example_sentence_native": "Er gewann das Direktmandat in seinem Wahlkreis.", + "example_sentence_english": "He won the direct mandate in his constituency.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24510 + }, + { + "word": "Dissident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissident", + "romanization": "Dissident", + "example_sentence_native": "Der Dissident wurde wegen seiner politischen Ansichten verfolgt.", + "example_sentence_english": "The dissident was persecuted for his political views.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24511 + }, + { + "word": "Ehrenzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medal of honor", + "romanization": "Ehrenzeichen", + "example_sentence_native": "Er erhielt ein Ehrenzeichen für seinen Mut.", + "example_sentence_english": "He received a medal of honor for his bravery.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24519 + }, + { + "word": "einfinden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrive;to appear", + "romanization": "einfinden", + "example_sentence_native": "Bitte finden Sie sich pünktlich zur Besprechung ein.", + "example_sentence_english": "Please arrive punctually for the meeting.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "finden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24520 + }, + { + "word": "Eingeständnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admission;confession", + "romanization": "Eingeständnis", + "example_sentence_native": "Sein Eingeständnis überraschte alle.", + "example_sentence_english": "His admission surprised everyone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24521 + }, + { + "word": "Einkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stop;reflection", + "romanization": "Einkehr", + "example_sentence_native": "Nach einem langen Tag suchten wir Einkehr in einem Gasthaus.", + "example_sentence_english": "After a long day, we sought a stop at an inn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24522 + }, + { + "word": "Elektroniker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electrician;electronics technician", + "romanization": "Elektroniker", + "example_sentence_native": "Der Elektroniker reparierte das defekte Gerät.", + "example_sentence_english": "The electrician repaired the defective device.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24524 + }, + { + "word": "Endverbraucher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "end consumer;final user", + "romanization": "Endverbraucher", + "example_sentence_native": "Das Produkt ist für den Endverbraucher bestimmt.", + "example_sentence_english": "The product is intended for the end consumer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24527 + }, + { + "word": "Entbindung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "childbirth;delivery", + "romanization": "Entbindung", + "example_sentence_native": "Die Entbindung verlief ohne Komplikationen.", + "example_sentence_english": "The childbirth proceeded without complications.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24528 + }, + { + "word": "Enthauptung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beheading;decapitation", + "romanization": "Enthauptung", + "example_sentence_native": "Die Enthauptung war eine grausame Strafe.", + "example_sentence_english": "The beheading was a cruel punishment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24529 + }, + { + "word": "ersatzlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without replacement;without substitute", + "romanization": "ersatzlos", + "example_sentence_native": "Der Zug wurde ersatzlos gestrichen.", + "example_sentence_english": "The train was cancelled without replacement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24530 + }, + { + "word": "erstrebenswert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desirable;worthwhile", + "romanization": "erstrebenswert", + "example_sentence_native": "Ein gesundes Leben ist immer erstrebenswert.", + "example_sentence_english": "A healthy life is always desirable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24531 + }, + { + "word": "essbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edible", + "romanization": "essbar", + "example_sentence_native": "Sind diese Pilze essbar?", + "example_sentence_english": "Are these mushrooms edible?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24532 + }, + { + "word": "Fangemeinde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fan base;fan community", + "romanization": "Fangemeinde", + "example_sentence_native": "Die Band hat eine große Fangemeinde.", + "example_sentence_english": "The band has a large fan base.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24534 + }, + { + "word": "Farbstoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dye;coloring agent", + "romanization": "Farbstoff", + "example_sentence_native": "Dieser Stoff enthält künstliche Farbstoffe.", + "example_sentence_english": "This food contains artificial coloring agents.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24535 + }, + { + "word": "Fehlentscheidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrong decision;misjudgment", + "romanization": "Fehlentscheidung", + "example_sentence_native": "Das war eine klare Fehlentscheidung des Schiedsrichters.", + "example_sentence_english": "That was a clear wrong decision by the referee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24536 + }, + { + "word": "fehlschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fail;to go wrong", + "romanization": "fehlschlagen", + "example_sentence_native": "Der Plan könnte fehlschlagen.", + "example_sentence_english": "The plan could fail.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fehl", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24537 + }, + { + "word": "Fernwärme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district heating", + "romanization": "Fernwärme", + "example_sentence_native": "Viele neue Gebäude werden mit Fernwärme versorgt.", + "example_sentence_english": "Many new buildings are supplied with district heating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24540 + }, + { + "word": "Feuerwehrhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire station", + "romanization": "Feuerwehrhaus", + "example_sentence_native": "Das neue Feuerwehrhaus wurde gestern eröffnet.", + "example_sentence_english": "The new fire station was opened yesterday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24541 + }, + { + "word": "Fingerspitzengefühl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intuition;tact;delicate touch", + "romanization": "Fingerspitzengefühl", + "example_sentence_native": "Für diese Aufgabe braucht man viel Fingerspitzengefühl.", + "example_sentence_english": "This task requires a lot of intuition.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24542 + }, + { + "word": "Forschungsgruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research group", + "romanization": "Forschungsgruppe", + "example_sentence_native": "Die Forschungsgruppe hat neue Erkenntnisse gewonnen.", + "example_sentence_english": "The research group has gained new insights.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24543 + }, + { + "word": "fremdschämen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel vicarious embarrassment", + "romanization": "fremdschämen", + "example_sentence_native": "Ich musste mich für ihn fremdschämen.", + "example_sentence_english": "I had to feel vicarious embarrassment for him.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fremd", + "base_verb": "schämen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24544 + }, + { + "word": "Fährmann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ferryman", + "romanization": "Fährmann", + "example_sentence_native": "Der Fährmann brachte uns über den Fluss.", + "example_sentence_english": "The ferryman took us across the river.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24546 + }, + { + "word": "Fünfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "five (e.g.;a five-euro note;a group of five)", + "romanization": "Fünfer", + "example_sentence_native": "Er gab mir einen Fünfer für das Eis.", + "example_sentence_english": "He gave me a five-euro note for the ice cream.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 24547 + }, + { + "word": "Gegenpol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opposite pole;antithesis", + "romanization": "Gegenpol", + "example_sentence_native": "Er ist der Gegenpol zu ihrem ruhigen Charakter.", + "example_sentence_english": "He is the opposite pole to her calm character.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24550 + }, + { + "word": "gegenüberstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confront;to contrast;to juxtapose", + "romanization": "gegenüberstellen", + "example_sentence_native": "Man muss die Fakten einander gegenüberstellen.", + "example_sentence_english": "One must juxtapose the facts.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "gegenüber", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24551 + }, + { + "word": "Gesamtergebnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall result;total outcome", + "romanization": "Gesamtergebnis", + "example_sentence_native": "Das Gesamtergebnis der Studie war überraschend.", + "example_sentence_english": "The overall result of the study was surprising.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24553 + }, + { + "word": "Gesamtwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "total value;aggregate value", + "romanization": "Gesamtwert", + "example_sentence_native": "Der Gesamtwert der Waren beträgt 500 Euro.", + "example_sentence_english": "The total value of the goods is 500 Euros.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24554 + }, + { + "word": "Gestalter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designer;shaper;creator", + "romanization": "Gestalter", + "example_sentence_native": "Er ist ein bekannter Gestalter von Möbeln.", + "example_sentence_english": "He is a well-known designer of furniture.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24555 + }, + { + "word": "Gesäss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buttocks;bottom", + "romanization": "Gesäss", + "example_sentence_native": "Er fiel auf sein Gesäss.", + "example_sentence_english": "He fell on his bottom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24556 + }, + { + "word": "Gezeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tide", + "romanization": "Gezeit", + "example_sentence_native": "Die Gezeiten beeinflussen die Küstenregionen.", + "example_sentence_english": "The tides influence the coastal regions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24557 + }, + { + "word": "Gleichstrom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "direct current (DC)", + "romanization": "Gleichstrom", + "example_sentence_native": "Batterien liefern Gleichstrom.", + "example_sentence_english": "Batteries supply direct current.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24559 + }, + { + "word": "Grundstimmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic mood;general atmosphere", + "romanization": "Grundstimmung", + "example_sentence_native": "Die Grundstimmung im Team war sehr positiv.", + "example_sentence_english": "The general atmosphere in the team was very positive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24563 + }, + { + "word": "gütig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kind;benevolent", + "romanization": "gütig", + "example_sentence_native": "Sie war immer sehr gütig zu ihren Nachbarn.", + "example_sentence_english": "She was always very kind to her neighbors.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24564 + }, + { + "word": "hinauslaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to amount to;to result in", + "romanization": "hinauslaufen", + "example_sentence_native": "Das wird auf dasselbe hinauslaufen.", + "example_sentence_english": "That will amount to the same thing.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hinaus", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24569 + }, + { + "word": "hinführen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lead to;to guide to", + "romanization": "hinführen", + "example_sentence_native": "Der Weg wird uns zum See hinführen.", + "example_sentence_english": "The path will lead us to the lake.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24570 + }, + { + "word": "Hänger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer;hanger", + "romanization": "Hänger", + "example_sentence_native": "Wir haben einen Hänger für das Auto gemietet.", + "example_sentence_english": "We rented a trailer for the car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24571 + }, + { + "word": "Häufchen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small pile;heaplet", + "romanization": "Häufchen", + "example_sentence_native": "Auf dem Tisch lag ein kleines Häufchen Münzen.", + "example_sentence_english": "There was a small pile of coins on the table.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24572 + }, + { + "word": "Insolvenzverwalter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insolvency administrator", + "romanization": "Insolvenzverwalter", + "example_sentence_native": "Der Insolvenzverwalter übernahm die Kontrolle über das Unternehmen.", + "example_sentence_english": "The insolvency administrator took control of the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24577 + }, + { + "word": "integrativ", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrative", + "romanization": "integrativ", + "example_sentence_native": "Wir verfolgen einen integrativen Ansatz.", + "example_sentence_english": "We pursue an integrative approach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24578 + }, + { + "word": "Internetportal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internet portal", + "romanization": "Internetportal", + "example_sentence_native": "Das neue Internetportal bietet viele nützliche Informationen.", + "example_sentence_english": "The new internet portal offers a lot of useful information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24579 + }, + { + "word": "Jargon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jargon", + "romanization": "Jargon", + "example_sentence_native": "Der technische Jargon war schwer zu verstehen.", + "example_sentence_english": "The technical jargon was difficult to understand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24582 + }, + { + "word": "Justizvollzugsanstalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correctional facility;prison", + "romanization": "Justizvollzugsanstalt", + "example_sentence_native": "Er wurde in die Justizvollzugsanstalt gebracht.", + "example_sentence_english": "He was brought to the correctional facility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24587 + }, + { + "word": "jämmerlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pathetic;miserable", + "romanization": "jämmerlich", + "example_sentence_native": "Sein Versuch war jämmerlich und erfolglos.", + "example_sentence_english": "His attempt was pathetic and unsuccessful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24588 + }, + { + "word": "Kaffeehaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coffee house;cafe", + "romanization": "Kaffeehaus", + "example_sentence_native": "Wir treffen uns oft im Kaffeehaus.", + "example_sentence_english": "We often meet at the coffee house.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24589 + }, + { + "word": "Kardiologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cardiology", + "romanization": "Kardiologie", + "example_sentence_native": "Er ist Spezialist für Kardiologie.", + "example_sentence_english": "He is a specialist in cardiology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24591 + }, + { + "word": "Kasino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casino", + "romanization": "Kasino", + "example_sentence_native": "Sie haben einen Abend im Kasino verbracht.", + "example_sentence_english": "They spent an evening at the casino.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24592 + }, + { + "word": "Kehrseite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "downside;flip side", + "romanization": "Kehrseite", + "example_sentence_native": "Jede Medaille hat ihre Kehrseite.", + "example_sentence_english": "Every coin has its flip side.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24593 + }, + { + "word": "kinderleicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "child's play;extremely easy", + "romanization": "kinderleicht", + "example_sentence_native": "Die Aufgabe war kinderleicht zu lösen.", + "example_sentence_english": "The task was child's play to solve.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24595 + }, + { + "word": "Klassenraum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "classroom", + "romanization": "Klassenraum", + "example_sentence_native": "Der Klassenraum ist sehr hell.", + "example_sentence_english": "The classroom is very bright.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24596 + }, + { + "word": "Klempner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plumber", + "romanization": "Klempner", + "example_sentence_native": "Der Klempner repariert das Waschbecken.", + "example_sentence_english": "The plumber is repairing the sink.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24597 + }, + { + "word": "Knarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gun (slang);rattle", + "romanization": "Knarre", + "example_sentence_native": "Er zog eine Knarre aus seiner Tasche.", + "example_sentence_english": "He pulled a gun from his bag.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24598 + }, + { + "word": "knicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crease;to fold;to bend", + "romanization": "knicken", + "example_sentence_native": "Bitte knicken Sie das Blatt nicht.", + "example_sentence_english": "Please do not crease the sheet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24599 + }, + { + "word": "Kolloquium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colloquium", + "romanization": "Kolloquium", + "example_sentence_native": "Das Kolloquium findet nächste Woche statt.", + "example_sentence_english": "The colloquium will take place next week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24603 + }, + { + "word": "Kolumnist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "columnist", + "romanization": "Kolumnist", + "example_sentence_native": "Der Kolumnist schreibt über aktuelle politische Themen.", + "example_sentence_english": "The columnist writes about current political topics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24604 + }, + { + "word": "Konditorei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastry shop", + "romanization": "Konditorei", + "example_sentence_native": "Wir kaufen Kuchen in der Konditorei.", + "example_sentence_english": "We buy cake at the pastry shop.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24607 + }, + { + "word": "Konfetti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confetti", + "romanization": "Konfetti", + "example_sentence_native": "Überall lag Konfetti nach der Party.", + "example_sentence_english": "There was confetti everywhere after the party.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24608 + }, + { + "word": "Kontonummer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "account number", + "romanization": "Kontonummer", + "example_sentence_native": "Bitte geben Sie Ihre Kontonummer an.", + "example_sentence_english": "Please provide your account number.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24609 + }, + { + "word": "Krafttraining", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strength training", + "romanization": "Krafttraining", + "example_sentence_native": "Er macht zweimal pro Woche Krafttraining.", + "example_sentence_english": "He does strength training twice a week.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24610 + }, + { + "word": "Kundenzufriedenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customer satisfaction", + "romanization": "Kundenzufriedenheit", + "example_sentence_native": "Die Kundenzufriedenheit ist unser oberstes Ziel.", + "example_sentence_english": "Customer satisfaction is our top priority.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24612 + }, + { + "word": "Kurbel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crank", + "romanization": "Kurbel", + "example_sentence_native": "Drehen Sie die Kurbel, um das Fenster zu öffnen.", + "example_sentence_english": "Turn the crank to open the window.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24613 + }, + { + "word": "Kurswechsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change of course", + "romanization": "Kurswechsel", + "example_sentence_native": "Die Regierung kündigte einen Kurswechsel an.", + "example_sentence_english": "The government announced a change of course.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24614 + }, + { + "word": "Körperpflege", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personal hygiene", + "romanization": "Körperpflege", + "example_sentence_native": "Produkte für die Körperpflege sind im Bad.", + "example_sentence_english": "Personal hygiene products are in the bathroom.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24615 + }, + { + "word": "Kübel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bucket", + "romanization": "Kübel", + "example_sentence_native": "Fülle den Kübel mit Wasser.", + "example_sentence_english": "Fill the bucket with water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24616 + }, + { + "word": "Kümmel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caraway", + "romanization": "Kümmel", + "example_sentence_native": "Brot mit Kümmel schmeckt sehr gut.", + "example_sentence_english": "Bread with caraway tastes very good.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24617 + }, + { + "word": "Lackierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paintwork", + "romanization": "Lackierung", + "example_sentence_native": "Die Lackierung des Autos ist neu.", + "example_sentence_english": "The car's paintwork is new.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24618 + }, + { + "word": "Ladekabel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "charging cable", + "romanization": "Ladekabel", + "example_sentence_native": "Ich brauche mein Ladekabel für das Handy.", + "example_sentence_english": "I need my charging cable for the phone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24619 + }, + { + "word": "lancieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to launch;to initiate", + "romanization": "lancieren", + "example_sentence_native": "Das Unternehmen wird ein neues Produkt lancieren.", + "example_sentence_english": "The company will launch a new product.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24620 + }, + { + "word": "legalisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legalize", + "romanization": "legalisieren", + "example_sentence_native": "Die Regierung plant, Cannabis zu legalisieren.", + "example_sentence_english": "The government plans to legalize cannabis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24623 + }, + { + "word": "Legging", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legging", + "romanization": "Legging", + "example_sentence_native": "Sie trägt eine schwarze Legging.", + "example_sentence_english": "She is wearing a black legging.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24624 + }, + { + "word": "Lehrender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teacher;instructor (male)", + "romanization": "Lehrender", + "example_sentence_native": "Der Lehrende erklärte die Aufgabe.", + "example_sentence_english": "The teacher explained the task.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24625 + }, + { + "word": "Lehrveranstaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course;lecture;teaching event", + "romanization": "Lehrveranstaltung", + "example_sentence_native": "Die Lehrveranstaltung beginnt um 9 Uhr.", + "example_sentence_english": "The course starts at 9 AM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24626 + }, + { + "word": "Lernender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "learner;student (male)", + "romanization": "Lernender", + "example_sentence_native": "Der Lernende stellte viele Fragen.", + "example_sentence_english": "The learner asked many questions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24627 + }, + { + "word": "Lichtquelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light source", + "romanization": "Lichtquelle", + "example_sentence_native": "Die Sonne ist eine natürliche Lichtquelle.", + "example_sentence_english": "The sun is a natural light source.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24630 + }, + { + "word": "Liebespaar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "couple in love;lovers", + "romanization": "Liebespaar", + "example_sentence_native": "Das Liebespaar spazierte Hand in Hand.", + "example_sentence_english": "The couple in love walked hand in hand.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24631 + }, + { + "word": "lieblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lovely;sweet;charming", + "romanization": "lieblich", + "example_sentence_native": "Der Gesang der Vögel war lieblich.", + "example_sentence_english": "The birds' song was lovely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24632 + }, + { + "word": "liieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ally;to associate;to enter into a relationship", + "romanization": "liieren", + "example_sentence_native": "Sie haben sich vor kurzem liiert.", + "example_sentence_english": "They recently entered into a relationship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24634 + }, + { + "word": "litauisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lithuanian", + "romanization": "litauisch", + "example_sentence_native": "Er spricht fließend Litauisch.", + "example_sentence_english": "He speaks fluent Lithuanian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 24635 + }, + { + "word": "Litauisch", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lithuanian (language)", + "romanization": "Litauisch", + "example_sentence_native": "Ich lerne Litauisch, weil ich dort studieren möchte.", + "example_sentence_english": "I am learning Lithuanian because I want to study there.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 24635 + }, + { + "word": "Literat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "man of letters;literary person", + "romanization": "Literat", + "example_sentence_native": "Er ist ein bekannter Literat.", + "example_sentence_english": "He is a well-known man of letters.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24636 + }, + { + "word": "mahlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grind;to mill", + "romanization": "mahlen", + "example_sentence_native": "Der Bäcker mahlt das Getreide zu Mehl.", + "example_sentence_english": "The baker grinds the grain into flour.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24638 + }, + { + "word": "Mailbox", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mailbox;voicemail", + "romanization": "Mailbox", + "example_sentence_native": "Ich habe eine Nachricht auf deiner Mailbox hinterlassen.", + "example_sentence_english": "I left a message on your voicemail.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24640 + }, + { + "word": "mancherorts", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in some places;here and there", + "romanization": "mancherorts", + "example_sentence_native": "Mancherorts gibt es noch unberührte Natur.", + "example_sentence_english": "In some places, there is still untouched nature.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 24641 + }, + { + "word": "Medienunternehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "media company", + "romanization": "Medienunternehmen", + "example_sentence_native": "Das Medienunternehmen hat viele Zeitungen und Fernsehsender.", + "example_sentence_english": "The media company owns many newspapers and television channels.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24645 + }, + { + "word": "Meeresboden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seabed;ocean floor", + "romanization": "Meeresboden", + "example_sentence_native": "Viele Lebewesen leben auf dem Meeresboden.", + "example_sentence_english": "Many creatures live on the seabed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24646 + }, + { + "word": "Menschenmasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowd of people", + "romanization": "Menschenmasse", + "example_sentence_native": "Die Menschenmasse bewegte sich langsam durch die Straßen.", + "example_sentence_english": "The crowd of people moved slowly through the streets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24648 + }, + { + "word": "Millennium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennium", + "romanization": "Millennium", + "example_sentence_native": "Wir leben im dritten Millennium.", + "example_sentence_english": "We live in the third millennium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24651 + }, + { + "word": "Minijob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mini-job (low-income employment)", + "romanization": "Minijob", + "example_sentence_native": "Viele Studenten haben einen Minijob, um ihr Studium zu finanzieren.", + "example_sentence_english": "Many students have a mini-job to finance their studies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24652 + }, + { + "word": "minutenlang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for minutes;lasting minutes", + "romanization": "minutenlang", + "example_sentence_native": "Er stand minutenlang schweigend da.", + "example_sentence_english": "He stood there silently for minutes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24653 + }, + { + "word": "mittragen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bear jointly;to support", + "romanization": "mittragen", + "example_sentence_native": "Wir müssen die Verantwortung gemeinsam mittragen.", + "example_sentence_english": "We must bear the responsibility jointly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "tragen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24654 + }, + { + "word": "mitlesen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to read along;to follow (a text)", + "romanization": "mitlesen", + "example_sentence_native": "Du kannst gerne mitlesen, wenn du möchtest.", + "example_sentence_english": "You can read along if you like.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "lesen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24655 + }, + { + "word": "mitmischen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get involved;to join in;to meddle", + "romanization": "mitmischen", + "example_sentence_native": "Er wollte unbedingt bei der Diskussion mitmischen.", + "example_sentence_english": "He absolutely wanted to get involved in the discussion.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "mischen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24656 + }, + { + "word": "mitteleuropäisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Central European", + "romanization": "mitteleuropäisch", + "example_sentence_native": "Die mitteleuropäische Küche ist sehr vielfältig.", + "example_sentence_english": "Central European cuisine is very diverse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24657 + }, + { + "word": "monoton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monotonous", + "romanization": "monoton", + "example_sentence_native": "Die Arbeit war sehr monoton.", + "example_sentence_english": "The work was very monotonous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24658 + }, + { + "word": "Mumm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courage;guts", + "romanization": "Mumm", + "example_sentence_native": "Man braucht viel Mumm, um das zu tun.", + "example_sentence_english": "You need a lot of guts to do that.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24662 + }, + { + "word": "Mundharmonika", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmonica", + "romanization": "Mundharmonika", + "example_sentence_native": "Er spielt gerne Mundharmonika.", + "example_sentence_english": "He likes to play the harmonica.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24663 + }, + { + "word": "Musikunterricht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "music lesson", + "romanization": "Musikunterricht", + "example_sentence_native": "Ich habe jeden Dienstag Musikunterricht.", + "example_sentence_english": "I have music lessons every Tuesday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24664 + }, + { + "word": "Mähne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mane", + "romanization": "Mähne", + "example_sentence_native": "Das Pferd hat eine lange, schöne Mähne.", + "example_sentence_english": "The horse has a long, beautiful mane.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24666 + }, + { + "word": "mörderisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "murderous;tremendous", + "romanization": "mörderisch", + "example_sentence_native": "Die Hitze war mörderisch.", + "example_sentence_english": "The heat was tremendous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24667 + }, + { + "word": "müssig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idle;futile", + "romanization": "müssig", + "example_sentence_native": "Es ist müssig, darüber zu streiten.", + "example_sentence_english": "It is futile to argue about it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24668 + }, + { + "word": "Nachholbedarf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "need to catch up;backlog", + "romanization": "Nachholbedarf", + "example_sentence_native": "Wir haben großen Nachholbedarf in diesem Bereich.", + "example_sentence_english": "We have a great need to catch up in this area.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24669 + }, + { + "word": "nachlegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add more;to follow up", + "romanization": "nachlegen", + "example_sentence_native": "Er musste Holz nachlegen, damit das Feuer nicht ausging.", + "example_sentence_english": "He had to add more wood so the fire wouldn't go out.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24670 + }, + { + "word": "Nachspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aftermath;epilogue", + "romanization": "Nachspiel", + "example_sentence_native": "Die Ereignisse hatten ein unerwartetes Nachspiel.", + "example_sentence_english": "The events had an unexpected aftermath.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24671 + }, + { + "word": "Namensänderung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "name change", + "romanization": "Namensänderung", + "example_sentence_native": "Sie beantragte eine Namensänderung nach der Hochzeit.", + "example_sentence_english": "She applied for a name change after the wedding.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24672 + }, + { + "word": "Networking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "networking", + "romanization": "Networking", + "example_sentence_native": "Networking ist wichtig für die Karriere.", + "example_sentence_english": "Networking is important for one's career.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24673 + }, + { + "word": "Niemandsland", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "no man's land", + "romanization": "Niemandsland", + "example_sentence_native": "Das Gebiet zwischen den Fronten war Niemandsland.", + "example_sentence_english": "The area between the fronts was no man's land.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24675 + }, + { + "word": "Oberarm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upper arm", + "romanization": "Oberarm", + "example_sentence_native": "Er spürte einen Schmerz in seinem Oberarm.", + "example_sentence_english": "He felt a pain in his upper arm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24677 + }, + { + "word": "Ordnungswidrigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administrative offense;minor infraction", + "romanization": "Ordnungswidrigkeit", + "example_sentence_native": "Das Falschparken ist eine Ordnungswidrigkeit.", + "example_sentence_english": "Illegal parking is a minor infraction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24678 + }, + { + "word": "Ortung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "localization;positioning;tracking", + "romanization": "Ortung", + "example_sentence_native": "Die Ortung des Schiffes war schwierig wegen des Sturms.", + "example_sentence_english": "The localization of the ship was difficult because of the storm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24680 + }, + { + "word": "paarweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in pairs;pairwise", + "romanization": "paarweise", + "example_sentence_native": "Die Schüler sollten paarweise arbeiten.", + "example_sentence_english": "The students should work in pairs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 24682 + }, + { + "word": "pakistanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pakistani", + "romanization": "pakistanisch", + "example_sentence_native": "Er probierte ein pakistanisches Gericht.", + "example_sentence_english": "He tried a Pakistani dish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24683 + }, + { + "word": "Paradigmenwechsel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradigm shift", + "romanization": "Paradigmenwechsel", + "example_sentence_native": "Die neue Technologie führte zu einem Paradigmenwechsel in der Industrie.", + "example_sentence_english": "The new technology led to a paradigm shift in the industry.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24685 + }, + { + "word": "Parteivorstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party executive board", + "romanization": "Parteivorstand", + "example_sentence_native": "Der Parteivorstand traf sich, um die Strategie zu besprechen.", + "example_sentence_english": "The party executive board met to discuss the strategy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24686 + }, + { + "word": "Patzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blunder;mistake;gaffe", + "romanization": "Patzer", + "example_sentence_native": "Er machte einen kleinen Patzer bei seiner Präsentation.", + "example_sentence_english": "He made a small blunder during his presentation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24687 + }, + { + "word": "Pflegebedürftiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person in need of care;care recipient", + "romanization": "Pflegebedürftiger", + "example_sentence_native": "Die Betreuung eines Pflegebedürftigen erfordert viel Geduld.", + "example_sentence_english": "Caring for a person in need of care requires a lot of patience.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24690 + }, + { + "word": "phänomenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phenomenal", + "romanization": "phänomenal", + "example_sentence_native": "Ihre Leistung war phänomenal.", + "example_sentence_english": "Her performance was phenomenal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24691 + }, + { + "word": "Pioneer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pioneer", + "romanization": "Pioneer", + "example_sentence_native": "Er war ein Pioneer auf dem Gebiet der künstlichen Intelligenz.", + "example_sentence_english": "He was a pioneer in the field of artificial intelligence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24692 + }, + { + "word": "planlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aimless;planless;haphazard", + "romanization": "planlos", + "example_sentence_native": "Er wanderte planlos durch die Stadt.", + "example_sentence_english": "He wandered aimlessly through the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24695 + }, + { + "word": "Polarisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polarization", + "romanization": "Polarisierung", + "example_sentence_native": "Die Polarisierung der Gesellschaft nimmt zu.", + "example_sentence_english": "The polarization of society is increasing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24696 + }, + { + "word": "Produktpalette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "product range;product line", + "romanization": "Produktpalette", + "example_sentence_native": "Das Unternehmen erweiterte seine Produktpalette.", + "example_sentence_english": "The company expanded its product range.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24698 + }, + { + "word": "Professionalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professionalization", + "romanization": "Professionalisierung", + "example_sentence_native": "Die Professionalisierung des Berufsstandes ist wichtig.", + "example_sentence_english": "The professionalization of the profession is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24699 + }, + { + "word": "Projektmanager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "project manager", + "romanization": "Projektmanager", + "example_sentence_native": "Der Projektmanager leitet das Team.", + "example_sentence_english": "The project manager leads the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24700 + }, + { + "word": "Proletariat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proletariat", + "romanization": "Proletariat", + "example_sentence_native": "Das Proletariat spielte eine wichtige Rolle in der Geschichte.", + "example_sentence_english": "The proletariat played an important role in history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24701 + }, + { + "word": "Präses", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "president (of a synod;assembly);chairman", + "romanization": "Präses", + "example_sentence_native": "Der Präses der Synode hielt eine Rede.", + "example_sentence_english": "The president of the synod gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24702 + }, + { + "word": "Puste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath;wind (informal)", + "romanization": "Puste", + "example_sentence_native": "Nach dem Sprint hatte ich keine Puste mehr.", + "example_sentence_english": "After the sprint, I had no breath left.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24703 + }, + { + "word": "Raffinerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refinery", + "romanization": "Raffinerie", + "example_sentence_native": "Die Ölraffinerie verarbeitet Rohöl.", + "example_sentence_english": "The oil refinery processes crude oil.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24706 + }, + { + "word": "rangehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to answer (the phone);to approach", + "romanization": "rangehen", + "example_sentence_native": "Er geht nicht ans Telefon ran.", + "example_sentence_english": "He doesn't answer the phone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ran", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24707 + }, + { + "word": "regular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regular", + "romanization": "regular", + "example_sentence_native": "Das ist ein regulärer Flug.", + "example_sentence_english": "This is a regular flight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24708 + }, + { + "word": "Religiosität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "religiosity", + "romanization": "Religiosität", + "example_sentence_native": "Seine Religiosität war tief verwurzelt.", + "example_sentence_english": "His religiosity was deeply rooted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24710 + }, + { + "word": "Rennbahn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racetrack;racecourse", + "romanization": "Rennbahn", + "example_sentence_native": "Die Pferde liefen schnell auf der Rennbahn.", + "example_sentence_english": "The horses ran fast on the racetrack.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24711 + }, + { + "word": "Rezeptur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formulation;prescription (pharmacy)", + "romanization": "Rezeptur", + "example_sentence_native": "Die Apotheke bereitet die Rezeptur zu.", + "example_sentence_english": "The pharmacy prepares the formulation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24713 + }, + { + "word": "ringsum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all around;roundabout", + "romanization": "ringsum", + "example_sentence_native": "Ringsum war alles still.", + "example_sentence_english": "All around, everything was quiet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 24714 + }, + { + "word": "rotieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rotate", + "romanization": "rotieren", + "example_sentence_native": "Die Erde rotiert um ihre Achse.", + "example_sentence_english": "The Earth rotates around its axis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24719 + }, + { + "word": "rüberkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to come over;to come across (as)", + "romanization": "rüberkommen", + "example_sentence_native": "Er wollte nicht rüberkommen, aber er musste.", + "example_sentence_english": "He didn't want to come over, but he had to.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rüber", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24722 + }, + { + "word": "Rührei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scrambled eggs", + "romanization": "Rührei", + "example_sentence_native": "Zum Frühstück esse ich gerne Rührei.", + "example_sentence_english": "For breakfast, I like to eat scrambled eggs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24723 + }, + { + "word": "Sabbat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sabbath", + "romanization": "Sabbat", + "example_sentence_native": "Am Sabbat ruhen viele Menschen.", + "example_sentence_english": "On the Sabbath, many people rest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24725 + }, + { + "word": "Sakko", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jacket;blazer", + "romanization": "Sakko", + "example_sentence_native": "Er trug ein elegantes Sakko zu seinem Anzug.", + "example_sentence_english": "He wore an elegant jacket with his suit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24726 + }, + { + "word": "Schamane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shaman", + "romanization": "Schamane", + "example_sentence_native": "Der Schamane führte ein altes Ritual durch.", + "example_sentence_english": "The shaman performed an ancient ritual.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24728 + }, + { + "word": "Schlagabtausch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exchange of blows;heated debate", + "romanization": "Schlagabtausch", + "example_sentence_native": "Es gab einen heftigen Schlagabtausch zwischen den Politikern.", + "example_sentence_english": "There was a fierce exchange of blows between the politicians.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24729 + }, + { + "word": "schlimmstenfalls", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the worst case", + "romanization": "schlimmstenfalls", + "example_sentence_native": "Schlimmstenfalls müssen wir den Plan ändern.", + "example_sentence_english": "In the worst case, we will have to change the plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 24730 + }, + { + "word": "Schnappschuss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snapshot", + "romanization": "Schnappschuss", + "example_sentence_native": "Sie machte einen Schnappschuss von der Landschaft.", + "example_sentence_english": "She took a snapshot of the landscape.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24731 + }, + { + "word": "Schulmedizin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conventional medicine", + "romanization": "Schulmedizin", + "example_sentence_native": "Viele Menschen vertrauen auf die Schulmedizin.", + "example_sentence_english": "Many people trust conventional medicine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24732 + }, + { + "word": "selbstbestimmt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-determined;autonomous", + "romanization": "selbstbestimmt", + "example_sentence_native": "Sie führt ein selbstbestimmtes Leben.", + "example_sentence_english": "She leads a self-determined life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24735 + }, + { + "word": "Selbstschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-protection;self-defense", + "romanization": "Selbstschutz", + "example_sentence_native": "Er handelte aus Selbstschutz.", + "example_sentence_english": "He acted in self-defense.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24736 + }, + { + "word": "Sis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sis (sister)", + "romanization": "Sis", + "example_sentence_native": "Meine Sis kommt uns besuchen.", + "example_sentence_english": "My sis is coming to visit us.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24739 + }, + { + "word": "Sitzbank", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bench", + "romanization": "Sitzbank", + "example_sentence_native": "Wir saßen auf der Sitzbank im Park.", + "example_sentence_english": "We sat on the bench in the park.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24740 + }, + { + "word": "Skipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skipper", + "romanization": "Skipper", + "example_sentence_native": "Der Skipper steuerte das Boot sicher durch den Sturm.", + "example_sentence_english": "The skipper steered the boat safely through the storm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24742 + }, + { + "word": "slowakisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovak", + "romanization": "slowakisch", + "example_sentence_native": "Er hat ein slowakisches Auto gekauft.", + "example_sentence_english": "He bought a Slovak car.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "adjective", + "word_frequency": 24743 + }, + { + "word": "Slowakisch", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovak (language)", + "romanization": "Slowakisch", + "example_sentence_native": "Sprichst du Slowakisch oder Tschechisch?", + "example_sentence_english": "Do you speak Slovak or Czech?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 24743 + }, + { + "word": "Sodbrennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heartburn", + "romanization": "Sodbrennen", + "example_sentence_native": "Nach dem Essen hatte er starkes Sodbrennen.", + "example_sentence_english": "After eating, he had severe heartburn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24745 + }, + { + "word": "Sommerurlaub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "summer holiday", + "romanization": "Sommerurlaub", + "example_sentence_native": "Wir planen unseren Sommerurlaub in Italien.", + "example_sentence_english": "We are planning our summer holiday in Italy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24746 + }, + { + "word": "Sowjetrepublik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Soviet republic", + "romanization": "Sowjetrepublik", + "example_sentence_native": "Die Ukraine war eine Sowjetrepublik.", + "example_sentence_english": "Ukraine was a Soviet republic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24747 + }, + { + "word": "Speiseplan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "menu;meal plan", + "romanization": "Speiseplan", + "example_sentence_native": "Was steht heute auf dem Speiseplan?", + "example_sentence_english": "What's on the menu today?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24748 + }, + { + "word": "Spendenaktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundraising campaign;donation drive", + "romanization": "Spendenaktion", + "example_sentence_native": "Die Spendenaktion war ein großer Erfolg.", + "example_sentence_english": "The fundraising campaign was a great success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24749 + }, + { + "word": "Spitzenpolitiker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leading politician;top politician", + "romanization": "Spitzenpolitiker", + "example_sentence_native": "Ein bekannter Spitzenpolitiker besuchte die Stadt.", + "example_sentence_english": "A well-known leading politician visited the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24750 + }, + { + "word": "Spätherbst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "late autumn;late fall", + "romanization": "Spätherbst", + "example_sentence_native": "Der Spätherbst ist oft neblig.", + "example_sentence_english": "Late autumn is often foggy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24752 + }, + { + "word": "Staatsdienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil service;public service", + "romanization": "Staatsdienst", + "example_sentence_native": "Er hat sein ganzes Leben im Staatsdienst verbracht.", + "example_sentence_english": "He spent his whole life in the civil service.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24753 + }, + { + "word": "Stadtbezirk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "city district;borough", + "romanization": "Stadtbezirk", + "example_sentence_native": "Jeder Stadtbezirk hat seine eigene Verwaltung.", + "example_sentence_english": "Every city district has its own administration.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24754 + }, + { + "word": "Stadtgemeinde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urban municipality;city commune", + "romanization": "Stadtgemeinde", + "example_sentence_native": "Die Stadtgemeinde ist für die lokalen Angelegenheiten zuständig.", + "example_sentence_english": "The urban municipality is responsible for local affairs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24755 + }, + { + "word": "Stadtverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city traffic;urban transport", + "romanization": "Stadtverkehr", + "example_sentence_native": "Der Stadtverkehr ist während der Rushhour sehr dicht.", + "example_sentence_english": "City traffic is very dense during rush hour.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24756 + }, + { + "word": "Stammkunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regular customer;loyal customer", + "romanization": "Stammkunde", + "example_sentence_native": "Als Stammkunde erhalten Sie einen Rabatt.", + "example_sentence_english": "As a regular customer, you receive a discount.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24757 + }, + { + "word": "Standardwerk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standard work;definitive work", + "romanization": "Standardwerk", + "example_sentence_native": "Dieses Buch gilt als Standardwerk in der Linguistik.", + "example_sentence_english": "This book is considered a standard work in linguistics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24758 + }, + { + "word": "Stiftskirche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collegiate church;minster", + "romanization": "Stiftskirche", + "example_sentence_native": "Die alte Stiftskirche ist ein beeindruckendes Bauwerk.", + "example_sentence_english": "The old collegiate church is an impressive building.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24759 + }, + { + "word": "stufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grade;to classify", + "romanization": "stufen", + "example_sentence_native": "Man kann die Schwierigkeit in verschiedene Niveaus stufen.", + "example_sentence_english": "One can grade the difficulty into different levels.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24761 + }, + { + "word": "Städtepartnerschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "town twinning;city partnership", + "romanization": "Städtepartnerschaft", + "example_sentence_native": "Unsere Stadt hat eine Städtepartnerschaft mit einer französischen Gemeinde.", + "example_sentence_english": "Our city has a town twinning with a French municipality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24762 + }, + { + "word": "Tagesthema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "topic of the day;daily topic", + "romanization": "Tagesthema", + "example_sentence_native": "Das Tagesthema in den Nachrichten war die Wirtschaftskrise.", + "example_sentence_english": "The topic of the day in the news was the economic crisis.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24765 + }, + { + "word": "Teer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tar", + "romanization": "Teer", + "example_sentence_native": "Die Straße wurde mit Teer repariert.", + "example_sentence_english": "The road was repaired with tar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24766 + }, + { + "word": "Telefonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telephony", + "romanization": "Telefonie", + "example_sentence_native": "Die moderne Telefonie bietet viele neue Möglichkeiten.", + "example_sentence_english": "Modern telephony offers many new possibilities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24767 + }, + { + "word": "Trakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wing (of a building);tract", + "romanization": "Trakt", + "example_sentence_native": "Der neue Trakt des Krankenhauses wird bald eröffnet.", + "example_sentence_english": "The new wing of the hospital will open soon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24773 + }, + { + "word": "Traumjob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dream job", + "romanization": "Traumjob", + "example_sentence_native": "Er hat endlich seinen Traumjob gefunden.", + "example_sentence_english": "He finally found his dream job.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24774 + }, + { + "word": "triggern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to trigger", + "romanization": "triggern", + "example_sentence_native": "Bestimmte Gerüche können alte Erinnerungen triggern.", + "example_sentence_english": "Certain smells can trigger old memories.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24775 + }, + { + "word": "Trägheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inertia;sluggishness;laziness", + "romanization": "Trägheit", + "example_sentence_native": "Die Trägheit des Systems erschwert Veränderungen.", + "example_sentence_english": "The inertia of the system makes changes difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24777 + }, + { + "word": "umkämpft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contested;hard-fought", + "romanization": "umkämpft", + "example_sentence_native": "Der umkämpfte Markt erfordert innovative Strategien.", + "example_sentence_english": "The contested market requires innovative strategies.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24778 + }, + { + "word": "unbesetzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unoccupied;vacant;unfilled", + "romanization": "unbesetzt", + "example_sentence_native": "Die Stelle ist seit Monaten unbesetzt.", + "example_sentence_english": "The position has been vacant for months.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24779 + }, + { + "word": "ungeahnt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unforeseen", + "romanization": "ungeahnt", + "example_sentence_native": "Die ungeahnten Schwierigkeiten machten das Projekt komplizierter.", + "example_sentence_english": "The unforeseen difficulties made the project more complicated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24780 + }, + { + "word": "unheilbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incurable", + "romanization": "unheilbar", + "example_sentence_native": "Leider ist die Krankheit unheilbar.", + "example_sentence_english": "Unfortunately, the disease is incurable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24781 + }, + { + "word": "unpraktisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impractical", + "romanization": "unpraktisch", + "example_sentence_native": "Das neue Design ist leider sehr unpraktisch.", + "example_sentence_english": "Unfortunately, the new design is very impractical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24782 + }, + { + "word": "unprofessionell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprofessional", + "romanization": "unprofessionell", + "example_sentence_native": "Sein Verhalten war völlig unprofessionell.", + "example_sentence_english": "His behavior was completely unprofessional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24783 + }, + { + "word": "untauglich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unsuitable", + "romanization": "untauglich", + "example_sentence_native": "Das Material erwies sich als untauglich für den Bau.", + "example_sentence_english": "The material proved to be unsuitable for construction.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24784 + }, + { + "word": "untragbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unbearable", + "romanization": "untragbar", + "example_sentence_native": "Diese Situation ist untragbar geworden.", + "example_sentence_english": "This situation has become unbearable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24785 + }, + { + "word": "Urenkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great-grandson", + "romanization": "Urenkel", + "example_sentence_native": "Mein Urenkel besucht mich jedes Wochenende.", + "example_sentence_english": "My great-grandson visits me every weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24786 + }, + { + "word": "vatikanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Vatican (adj.)", + "romanization": "vatikanisch", + "example_sentence_native": "Die vatikanische Bibliothek enthält viele alte Manuskripte.", + "example_sentence_english": "The Vatican library contains many ancient manuscripts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24788 + }, + { + "word": "Verbrennungsmotor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internal combustion engine", + "romanization": "Verbrennungsmotor", + "example_sentence_native": "Viele Autos werden noch von einem Verbrennungsmotor angetrieben.", + "example_sentence_english": "Many cars are still powered by an internal combustion engine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24789 + }, + { + "word": "Vereinheitlichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standardization", + "romanization": "Vereinheitlichung", + "example_sentence_native": "Die Vereinheitlichung der Regeln ist notwendig.", + "example_sentence_english": "The standardization of the rules is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24790 + }, + { + "word": "verhandelbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiable", + "romanization": "verhandelbar", + "example_sentence_native": "Der Preis ist nicht verhandelbar.", + "example_sentence_english": "The price is not negotiable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24791 + }, + { + "word": "verjähren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to become statute-barred", + "romanization": "verjähren", + "example_sentence_native": "Die Forderung wird bald verjähren.", + "example_sentence_english": "The claim will soon expire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24792 + }, + { + "word": "verkrampft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tense", + "romanization": "verkrampft", + "example_sentence_native": "Er wirkte sehr verkrampft vor dem Auftritt.", + "example_sentence_english": "He seemed very tense before the performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24793 + }, + { + "word": "Vernichtungslager", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "extermination camp", + "romanization": "Vernichtungslager", + "example_sentence_native": "Die Geschichte der Vernichtungslager ist ein dunkles Kapitel der Menschheit.", + "example_sentence_english": "The history of the extermination camps is a dark chapter of humanity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24794 + }, + { + "word": "Versorger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provider", + "romanization": "Versorger", + "example_sentence_native": "Der lokale Energieversorger hat die Preise erhöht.", + "example_sentence_english": "The local energy provider has increased prices.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24795 + }, + { + "word": "Vertriebener", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "displaced person", + "romanization": "Vertriebener", + "example_sentence_native": "Viele Vertriebene suchten nach dem Krieg eine neue Heimat.", + "example_sentence_english": "Many displaced persons sought a new home after the war.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24796 + }, + { + "word": "Verwaltungskosten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administrative costs", + "romanization": "Verwaltungskosten", + "example_sentence_native": "Die Verwaltungskosten müssen gesenkt werden.", + "example_sentence_english": "The administrative costs must be reduced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24797 + }, + { + "word": "vibrieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vibrate", + "romanization": "vibrieren", + "example_sentence_native": "Mein Handy vibriert, wenn ich einen Anruf bekomme.", + "example_sentence_english": "My phone vibrates when I get a call.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24798 + }, + { + "word": "Violoncello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cello", + "romanization": "Violoncello", + "example_sentence_native": "Sie spielt das Violoncello in einem Orchester.", + "example_sentence_english": "She plays the cello in an orchestra.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24801 + }, + { + "word": "Visite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visit (medical;official)", + "romanization": "Visite", + "example_sentence_native": "Der Arzt macht seine tägliche Visite.", + "example_sentence_english": "The doctor makes his daily rounds.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24802 + }, + { + "word": "Volksinitiative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "popular initiative", + "romanization": "Volksinitiative", + "example_sentence_native": "Die Volksinitiative wurde von vielen Bürgern unterstützt.", + "example_sentence_english": "The popular initiative was supported by many citizens.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24804 + }, + { + "word": "Volkspark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "public park", + "romanization": "Volkspark", + "example_sentence_native": "Wir gehen oft im Volkspark spazieren.", + "example_sentence_english": "We often go for a walk in the public park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24805 + }, + { + "word": "vorhinein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beforehand", + "romanization": "vorhinein", + "example_sentence_native": "Das hätte man schon vorhinein wissen müssen.", + "example_sentence_english": "One should have known that beforehand.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 24806 + }, + { + "word": "Wagnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risk", + "romanization": "Wagnis", + "example_sentence_native": "Es war ein großes Wagnis, diese Reise anzutreten.", + "example_sentence_english": "It was a great risk to embark on this journey.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24807 + }, + { + "word": "Warenhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "department store", + "romanization": "Warenhaus", + "example_sentence_native": "Wir kaufen oft im Warenhaus ein.", + "example_sentence_english": "We often shop at the department store.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24809 + }, + { + "word": "Warteschlange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "queue", + "romanization": "Warteschlange", + "example_sentence_native": "Es gab eine lange Warteschlange vor dem Kino.", + "example_sentence_english": "There was a long queue in front of the cinema.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24810 + }, + { + "word": "Weggefährte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "companion", + "romanization": "Weggefährte", + "example_sentence_native": "Er war mein treuer Weggefährte auf dieser Reise.", + "example_sentence_english": "He was my loyal companion on this journey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24811 + }, + { + "word": "Weltsicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worldview", + "romanization": "Weltsicht", + "example_sentence_native": "Seine Weltsicht ist sehr optimistisch.", + "example_sentence_english": "His worldview is very optimistic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24812 + }, + { + "word": "Wildcard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wildcard", + "romanization": "Wildcard", + "example_sentence_native": "Er erhielt eine Wildcard für das Turnier.", + "example_sentence_english": "He received a wildcard for the tournament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24813 + }, + { + "word": "Wissensstand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state of knowledge", + "romanization": "Wissensstand", + "example_sentence_native": "Der aktuelle Wissensstand ist beeindruckend.", + "example_sentence_english": "The current state of knowledge is impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24814 + }, + { + "word": "wohlbehalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safe and sound", + "romanization": "wohlbehalten", + "example_sentence_native": "Sie kehrten wohlbehalten von ihrer Reise zurück.", + "example_sentence_english": "They returned safe and sound from their journey.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24815 + }, + { + "word": "wortlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speechless", + "romanization": "wortlos", + "example_sentence_native": "Er verließ den Raum wortlos.", + "example_sentence_english": "He left the room speechless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24816 + }, + { + "word": "Wunderkind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "child prodigy", + "romanization": "Wunderkind", + "example_sentence_native": "Mozart war ein musikalisches Wunderkind.", + "example_sentence_english": "Mozart was a musical child prodigy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24817 + }, + { + "word": "Wählerschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electorate", + "romanization": "Wählerschaft", + "example_sentence_native": "Die Wählerschaft ist unzufrieden mit der aktuellen Regierung.", + "example_sentence_english": "The electorate is dissatisfied with the current government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24818 + }, + { + "word": "zerstritten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estranged;at odds", + "romanization": "zerstritten", + "example_sentence_native": "Die Familie ist seit Jahren zerstritten.", + "example_sentence_english": "The family has been estranged for years.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24820 + }, + { + "word": "Zitadelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citadel", + "romanization": "Zitadelle", + "example_sentence_native": "Die alte Zitadelle thront über der Stadt.", + "example_sentence_english": "The old citadel towers over the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24821 + }, + { + "word": "Zufuhr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply;delivery;input", + "romanization": "Zufuhr", + "example_sentence_native": "Die Zufuhr von frischem Wasser ist entscheidend.", + "example_sentence_english": "The supply of fresh water is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24822 + }, + { + "word": "zusammenpassen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fit together;to match", + "romanization": "zusammenpassen", + "example_sentence_native": "Die Farben der Kleidung passen gut zusammen.", + "example_sentence_english": "The colors of the clothes fit well together.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "passen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24823 + }, + { + "word": "Zwangsarbeiter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forced laborer", + "romanization": "Zwangsarbeiter", + "example_sentence_native": "Viele Zwangsarbeiter wurden während des Krieges eingesetzt.", + "example_sentence_english": "Many forced laborers were used during the war.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24824 + }, + { + "word": "Zwillingsbruder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twin brother", + "romanization": "Zwillingsbruder", + "example_sentence_native": "Mein Zwillingsbruder und ich sehen uns sehr ähnlich.", + "example_sentence_english": "My twin brother and I look very similar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24825 + }, + { + "word": "Äquator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equator", + "romanization": "Äquator", + "example_sentence_native": "Der Äquator teilt die Erde in zwei Hälften.", + "example_sentence_english": "The equator divides the Earth into two halves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24826 + }, + { + "word": "überblicken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to survey;to grasp;to oversee", + "romanization": "überblicken", + "example_sentence_native": "Es ist schwer, die ganze Situation zu überblicken.", + "example_sentence_english": "It's hard to grasp the whole situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24827 + }, + { + "word": "abdrehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn off;to turn away", + "romanization": "abdrehen", + "example_sentence_native": "Bitte dreh das Licht ab, wenn du gehst.", + "example_sentence_english": "Please turn off the light when you leave.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "drehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24828 + }, + { + "word": "abrutschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to slip off;down;to slide", + "romanization": "abrutschen", + "example_sentence_native": "Er ist auf dem nassen Boden abgerutscht.", + "example_sentence_english": "He slipped on the wet floor.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "rutschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24829 + }, + { + "word": "abzielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aim at;to target", + "romanization": "abzielen", + "example_sentence_native": "Die Kampagne zielt auf junge Wähler ab.", + "example_sentence_english": "The campaign targets young voters.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "zielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24830 + }, + { + "word": "Airbag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airbag", + "romanization": "Airbag", + "example_sentence_native": "Der Airbag schützt den Fahrer bei einem Unfall.", + "example_sentence_english": "The airbag protects the driver in an accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24833 + }, + { + "word": "albanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Albanian", + "romanization": "albanisch", + "example_sentence_native": "Sie spricht fließend Albanisch.", + "example_sentence_english": "She speaks fluent Albanian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24834 + }, + { + "word": "Allradantrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "four-wheel drive", + "romanization": "Allradantrieb", + "example_sentence_native": "Dieses Auto hat Allradantrieb für bessere Traktion.", + "example_sentence_english": "This car has four-wheel drive for better traction.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24835 + }, + { + "word": "Analytik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "analytics;analysis", + "romanization": "Analytik", + "example_sentence_native": "Die Analytik der Daten ist entscheidend für den Erfolg.", + "example_sentence_english": "The analytics of the data is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24836 + }, + { + "word": "Anfangsbuchstabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initial letter;first letter", + "romanization": "Anfangsbuchstabe", + "example_sentence_native": "Der Anfangsbuchstabe des Namens ist \"M\".", + "example_sentence_english": "The initial letter of the name is \"M\".", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24837 + }, + { + "word": "anbrechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break (open);to begin (of day;period)", + "romanization": "anbrechen", + "example_sentence_native": "Der neue Tag bricht an.", + "example_sentence_english": "The new day is dawning.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "brechen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24838 + }, + { + "word": "anrühren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mix;to stir;to touch (rarely)", + "romanization": "anrühren", + "example_sentence_native": "Sie muss den Teig gut anrühren.", + "example_sentence_english": "She has to mix the dough well.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "rühren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24839 + }, + { + "word": "anwidern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disgust;to repel", + "romanization": "anwidern", + "example_sentence_native": "Der Geruch von altem Käse kann mich wirklich anwidern.", + "example_sentence_english": "The smell of old cheese can really disgust me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24840 + }, + { + "word": "anhängig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pending;ongoing", + "romanization": "anhängig", + "example_sentence_native": "Das Verfahren ist noch anhängig.", + "example_sentence_english": "The procedure is still pending.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24841 + }, + { + "word": "anmassend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumptuous;arrogant", + "romanization": "anmassend", + "example_sentence_native": "Seine anmassende Art ärgert mich.", + "example_sentence_english": "His presumptuous manner annoys me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24842 + }, + { + "word": "Anschaffungskosten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquisition costs", + "romanization": "Anschaffungskosten", + "example_sentence_native": "Die Anschaffungskosten für das neue Auto waren hoch.", + "example_sentence_english": "The acquisition costs for the new car were high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24843 + }, + { + "word": "applaudieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to applaud", + "romanization": "applaudieren", + "example_sentence_native": "Das Publikum begann zu applaudieren.", + "example_sentence_english": "The audience began to applaud.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24845 + }, + { + "word": "Attitüde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attitude", + "romanization": "Attitüde", + "example_sentence_native": "Er hat eine sehr negative Attitüde.", + "example_sentence_english": "He has a very negative attitude.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24847 + }, + { + "word": "aufblasen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inflate;to blow up", + "romanization": "aufblasen", + "example_sentence_native": "Wir müssen den Ballon aufblasen.", + "example_sentence_english": "We need to inflate the balloon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "blasen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24848 + }, + { + "word": "ausrutschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slip;to slide", + "romanization": "ausrutschen", + "example_sentence_native": "Er ist auf dem Eis ausgerutscht.", + "example_sentence_english": "He slipped on the ice.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rutschen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24849 + }, + { + "word": "ausschildern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to signpost;to mark with signs", + "romanization": "ausschildern", + "example_sentence_native": "Der Weg ist gut ausgeschildert.", + "example_sentence_english": "The path is well signposted.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schildern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24850 + }, + { + "word": "Aussengrenze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "external border", + "romanization": "Aussengrenze", + "example_sentence_native": "Die Kontrolle an der Aussengrenze wurde verstärkt.", + "example_sentence_english": "Control at the external border was strengthened.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24851 + }, + { + "word": "ausspionieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to spy on;to scout out", + "romanization": "ausspionieren", + "example_sentence_native": "Er versuchte, die Konkurrenz auszuspionieren.", + "example_sentence_english": "He tried to spy on the competition.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "spionieren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24852 + }, + { + "word": "ausstehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outstanding;pending", + "romanization": "ausstehend", + "example_sentence_native": "Es gibt noch einige ausstehende Rechnungen.", + "example_sentence_english": "There are still some outstanding invoices.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24853 + }, + { + "word": "Austragung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holding;staging (of an event)", + "romanization": "Austragung", + "example_sentence_native": "Die Austragung der Meisterschaft findet nächstes Jahr statt.", + "example_sentence_english": "The holding of the championship will take place next year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24854 + }, + { + "word": "austrocknen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dry out;to desiccate", + "romanization": "austrocknen", + "example_sentence_native": "Die Sonne hat den Boden völlig ausgetrocknet.", + "example_sentence_english": "The sun has completely dried out the ground.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "trocknen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24855 + }, + { + "word": "Autorennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car race", + "romanization": "Autorennen", + "example_sentence_native": "Er liebt es, Autorennen anzusehen.", + "example_sentence_english": "He loves watching car races.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24856 + }, + { + "word": "Ballbesitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ball possession", + "romanization": "Ballbesitz", + "example_sentence_native": "Die Mannschaft hatte viel Ballbesitz, aber wenig Torchancen.", + "example_sentence_english": "The team had a lot of ball possession, but few scoring opportunities.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24857 + }, + { + "word": "Ballerina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballerina", + "romanization": "Ballerina", + "example_sentence_native": "Die Ballerina tanzte anmutig über die Bühne.", + "example_sentence_english": "The ballerina danced gracefully across the stage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24858 + }, + { + "word": "Bauträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property developer", + "romanization": "Bauträger", + "example_sentence_native": "Der Bauträger hat das neue Wohngebiet geplant.", + "example_sentence_english": "The property developer planned the new residential area.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24863 + }, + { + "word": "Bedeutungslosigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insignificance", + "romanization": "Bedeutungslosigkeit", + "example_sentence_native": "Er empfand eine tiefe Bedeutungslosigkeit in seinem Leben.", + "example_sentence_english": "He felt a deep insignificance in his life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24864 + }, + { + "word": "benachteiligt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disadvantaged", + "romanization": "benachteiligt", + "example_sentence_native": "Wir müssen die benachteiligten Gruppen in der Gesellschaft unterstützen.", + "example_sentence_english": "We must support the disadvantaged groups in society.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24865 + }, + { + "word": "Benefiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefit;charity event", + "romanization": "Benefiz", + "example_sentence_native": "Das Benefizkonzert sammelte Spenden für die Opfer.", + "example_sentence_english": "The benefit concert collected donations for the victims.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24866 + }, + { + "word": "Besatzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupier", + "romanization": "Besatzer", + "example_sentence_native": "Die Besatzer zogen sich aus der Stadt zurück.", + "example_sentence_english": "The occupiers withdrew from the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24867 + }, + { + "word": "beschmieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to smear;to deface", + "romanization": "beschmieren", + "example_sentence_native": "Jemand hat die Wand mit Graffiti beschmiert.", + "example_sentence_english": "Someone has defaced the wall with graffiti.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24868 + }, + { + "word": "Bestenliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high score list;leaderboard", + "romanization": "Bestenliste", + "example_sentence_native": "Sein Name steht ganz oben auf der Bestenliste.", + "example_sentence_english": "His name is at the top of the high score list.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24869 + }, + { + "word": "bestehlen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to steal from", + "romanization": "bestehlen", + "example_sentence_native": "Der Dieb hat ihn um sein Geld bestohlen.", + "example_sentence_english": "The thief stole his money from him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24870 + }, + { + "word": "besänftigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appease;to pacify", + "romanization": "besänftigen", + "example_sentence_native": "Sie versuchte, das weinende Kind zu besänftigen.", + "example_sentence_english": "She tried to calm down the crying child.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24871 + }, + { + "word": "Bevölkerungsschicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social stratum;population layer", + "romanization": "Bevölkerungsschicht", + "example_sentence_native": "Die Studie untersuchte verschiedene Bevölkerungsschichten.", + "example_sentence_english": "The study examined different social strata.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24872 + }, + { + "word": "Bindegewebe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connective tissue", + "romanization": "Bindegewebe", + "example_sentence_native": "Das Bindegewebe stützt und verbindet Organe.", + "example_sentence_english": "Connective tissue supports and connects organs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24874 + }, + { + "word": "Blackbox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "black box", + "romanization": "Blackbox", + "example_sentence_native": "Die Blackbox des Flugzeugs wurde gefunden.", + "example_sentence_english": "The black box of the airplane was found.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24875 + }, + { + "word": "Blasorchester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wind orchestra;brass band", + "romanization": "Blasorchester", + "example_sentence_native": "Das Blasorchester spielte traditionelle Volkslieder.", + "example_sentence_english": "The wind orchestra played traditional folk songs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24876 + }, + { + "word": "Blumentopf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flowerpot", + "romanization": "Blumentopf", + "example_sentence_native": "Sie stellte die Blume in einen Blumentopf.", + "example_sentence_english": "She put the flower in a flowerpot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24879 + }, + { + "word": "brandneu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brand new", + "romanization": "brandneu", + "example_sentence_native": "Das Auto ist brandneu.", + "example_sentence_english": "The car is brand new.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24881 + }, + { + "word": "Brennweite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "focal length", + "romanization": "Brennweite", + "example_sentence_native": "Die Brennweite des Objektivs ist wichtig für die Fotografie.", + "example_sentence_english": "The focal length of the lens is important for photography.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24883 + }, + { + "word": "bräunlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brownish", + "romanization": "bräunlich", + "example_sentence_native": "Das Fell des Bären war bräunlich.", + "example_sentence_english": "The bear's fur was brownish.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24885 + }, + { + "word": "Chai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chai (tea)", + "romanization": "Chai", + "example_sentence_native": "Ich trinke gerne einen Chai Latte.", + "example_sentence_english": "I like to drink a chai latte.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24892 + }, + { + "word": "Chronist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chronicler", + "romanization": "Chronist", + "example_sentence_native": "Der Chronist schrieb die Geschichte der Stadt nieder.", + "example_sentence_english": "The chronicler wrote down the history of the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24896 + }, + { + "word": "Circuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circuit", + "romanization": "Circuit", + "example_sentence_native": "Der elektrische Circuit war defekt.", + "example_sentence_english": "The electrical circuit was defective.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24898 + }, + { + "word": "Corso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parade;promenade", + "romanization": "Corso", + "example_sentence_native": "Der Blumenkorso zog durch die Stadt.", + "example_sentence_english": "The flower parade moved through the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24901 + }, + { + "word": "Dachterrasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roof terrace", + "romanization": "Dachterrasse", + "example_sentence_native": "Die Wohnung hat eine schöne Dachterrasse.", + "example_sentence_english": "The apartment has a beautiful roof terrace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24902 + }, + { + "word": "darstellend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depicting;representing;performing", + "romanization": "darstellend", + "example_sentence_native": "Die darstellenden Künste umfassen Theater und Tanz.", + "example_sentence_english": "The performing arts include theater and dance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24903 + }, + { + "word": "Delphin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dolphin", + "romanization": "Delphin", + "example_sentence_native": "Der Delphin ist ein sehr intelligentes Meerestier.", + "example_sentence_english": "The dolphin is a very intelligent marine animal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24905 + }, + { + "word": "demütig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humble;meek", + "romanization": "demütig", + "example_sentence_native": "Er nahm die Kritik demütig an.", + "example_sentence_english": "He humbly accepted the criticism.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24906 + }, + { + "word": "Device", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device", + "romanization": "Device", + "example_sentence_native": "Dieses mobile Device ist sehr nützlich.", + "example_sentence_english": "This mobile device is very useful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24907 + }, + { + "word": "didaktisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "didactic;pedagogical", + "romanization": "didaktisch", + "example_sentence_native": "Der Lehrer verwendete eine didaktisch sinnvolle Methode.", + "example_sentence_english": "The teacher used a didactically sensible method.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24908 + }, + { + "word": "Dienstreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business trip", + "romanization": "Dienstreise", + "example_sentence_native": "Er ist auf Dienstreise in Berlin.", + "example_sentence_english": "He is on a business trip in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24909 + }, + { + "word": "Drecksau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dirty pig;scumbag (derogatory)", + "romanization": "Drecksau", + "example_sentence_native": "Nenn mich nicht so, du Drecksau!", + "example_sentence_english": "Don't call me that, you scumbag!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24912 + }, + { + "word": "Drift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drift", + "romanization": "Drift", + "example_sentence_native": "Die Drift des Kontinents ist ein langsamer Prozess.", + "example_sentence_english": "The drift of the continent is a slow process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24913 + }, + { + "word": "Drug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug (often illegal)", + "romanization": "Drug", + "example_sentence_native": "Er wurde wegen Besitzes illegaler Drugs verhaftet.", + "example_sentence_english": "He was arrested for possession of illegal drugs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24914 + }, + { + "word": "eckig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angular;square", + "romanization": "eckig", + "example_sentence_native": "Der Tisch ist eckig.", + "example_sentence_english": "The table is square.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24920 + }, + { + "word": "einrahmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frame", + "romanization": "einrahmen", + "example_sentence_native": "Ich möchte das Bild einrahmen lassen.", + "example_sentence_english": "I want to have the picture framed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "rahmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24924 + }, + { + "word": "einschulen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enroll (in school);to start school", + "romanization": "einschulen", + "example_sentence_native": "Mein Kind wird nächstes Jahr eingeschult.", + "example_sentence_english": "My child will start school next year.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "schulen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24925 + }, + { + "word": "einwandern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to immigrate", + "romanization": "einwandern", + "example_sentence_native": "Viele Menschen wandern nach Deutschland ein.", + "example_sentence_english": "Many people immigrate to Germany.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "wandern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24926 + }, + { + "word": "eingrenzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to narrow down;to limit;to confine", + "romanization": "eingrenzen", + "example_sentence_native": "Wir müssen das Problem eingrenzen.", + "example_sentence_english": "We need to narrow down the problem.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "grenzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24927 + }, + { + "word": "Einlauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run-in;entry;enema", + "romanization": "Einlauf", + "example_sentence_native": "Der Einlauf des Wassers war zu stark.", + "example_sentence_english": "The entry of the water was too strong.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24928 + }, + { + "word": "Einsatzbereitschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "readiness for action;operational readiness", + "romanization": "Einsatzbereitschaft", + "example_sentence_native": "Die Einsatzbereitschaft der Truppen ist hoch.", + "example_sentence_english": "The readiness for action of the troops is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24929 + }, + { + "word": "einsichtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insightful;reasonable;understanding", + "romanization": "einsichtig", + "example_sentence_native": "Er war sehr einsichtig und hat seinen Fehler zugegeben.", + "example_sentence_english": "He was very understanding and admitted his mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24930 + }, + { + "word": "Einwendung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objection;remonstrance", + "romanization": "Einwendung", + "example_sentence_native": "Er hatte keine Einwendungen gegen den Vorschlag.", + "example_sentence_english": "He had no objections to the proposal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24931 + }, + { + "word": "Einzelzimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "single room", + "romanization": "Einzelzimmer", + "example_sentence_native": "Ich hätte gerne ein Einzelzimmer mit Bad.", + "example_sentence_english": "I would like a single room with a bathroom.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24932 + }, + { + "word": "eisig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icy;freezing", + "romanization": "eisig", + "example_sentence_native": "Der Wind war eisig kalt.", + "example_sentence_english": "The wind was icy cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24933 + }, + { + "word": "Elektrogerät", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electrical appliance", + "romanization": "Elektrogerät", + "example_sentence_native": "Dieses Elektrogerät verbraucht viel Strom.", + "example_sentence_english": "This electrical appliance consumes a lot of electricity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24934 + }, + { + "word": "Enthaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstention (from voting)", + "romanization": "Enthaltung", + "example_sentence_native": "Es gab drei Enthaltungen bei der Abstimmung.", + "example_sentence_english": "There were three abstentions in the vote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24935 + }, + { + "word": "entlohnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remunerate;to reward", + "romanization": "entlohnen", + "example_sentence_native": "Gute Arbeit sollte angemessen entlohnt werden.", + "example_sentence_english": "Good work should be adequately rewarded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24936 + }, + { + "word": "enttäuscht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointed", + "romanization": "enttäuscht", + "example_sentence_native": "Ich war sehr enttäuscht über das Ergebnis.", + "example_sentence_english": "I was very disappointed with the result.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24937 + }, + { + "word": "entworfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designed;drafted", + "romanization": "entworfen", + "example_sentence_native": "Das Kleid wurde von einem berühmten Designer entworfen.", + "example_sentence_english": "The dress was designed by a famous designer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24938 + }, + { + "word": "Erbschaftsteuer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inheritance tax", + "romanization": "Erbschaftsteuer", + "example_sentence_native": "Die Erbschaftsteuer ist in Deutschland umstritten.", + "example_sentence_english": "Inheritance tax is controversial in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24939 + }, + { + "word": "Erdnuss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peanut", + "romanization": "Erdnuss", + "example_sentence_native": "Ich esse gerne Erdnüsse als Snack.", + "example_sentence_english": "I like to eat peanuts as a snack.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24940 + }, + { + "word": "erfreulicherweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortunately", + "romanization": "erfreulicherweise", + "example_sentence_native": "Erfreulicherweise hat das Wetter gehalten.", + "example_sentence_english": "Fortunately, the weather held up.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 24941 + }, + { + "word": "erschwerend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggravating", + "romanization": "erschwerend", + "example_sentence_native": "Erschwerend kommt hinzu, dass wir wenig Zeit haben.", + "example_sentence_english": "An aggravating factor is that we have little time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24942 + }, + { + "word": "erstarren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to freeze", + "romanization": "erstarren", + "example_sentence_native": "Das Wasser begann zu erstarren.", + "example_sentence_english": "The water began to freeze.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 24943 + }, + { + "word": "explosiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosive", + "romanization": "explosiv", + "example_sentence_native": "Die Situation war sehr explosiv.", + "example_sentence_english": "The situation was very explosive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24944 + }, + { + "word": "Facharbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "research paper", + "romanization": "Facharbeit", + "example_sentence_native": "Sie schreibt eine Facharbeit über erneuerbare Energien.", + "example_sentence_english": "She is writing a research paper on renewable energies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24945 + }, + { + "word": "fade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bland", + "romanization": "fade", + "example_sentence_native": "Das Essen schmeckt heute etwas fade.", + "example_sentence_english": "The food tastes a bit bland today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24946 + }, + { + "word": "Fahrtkosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "travel expenses", + "romanization": "Fahrtkosten", + "example_sentence_native": "Die Fahrtkosten werden vom Unternehmen erstattet.", + "example_sentence_english": "The travel expenses will be reimbursed by the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24947 + }, + { + "word": "Faktum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fact", + "romanization": "Faktum", + "example_sentence_native": "Es ist ein bekanntes Faktum, dass die Erde rund ist.", + "example_sentence_english": "It is a known fact that the Earth is round.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24948 + }, + { + "word": "Fanboy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fanboy", + "romanization": "Fanboy", + "example_sentence_native": "Er ist ein großer Fanboy dieser Videospielreihe.", + "example_sentence_english": "He is a big fanboy of this video game series.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24950 + }, + { + "word": "Feingefühl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sensitivity", + "romanization": "Feingefühl", + "example_sentence_native": "Sie zeigte viel Feingefühl in der schwierigen Situation.", + "example_sentence_english": "She showed a lot of sensitivity in the difficult situation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24952 + }, + { + "word": "Fernsehprogramm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "TV program", + "romanization": "Fernsehprogramm", + "example_sentence_native": "Was läuft heute Abend im Fernsehprogramm?", + "example_sentence_english": "What's on the TV program tonight?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24953 + }, + { + "word": "Forschungsgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "research community", + "romanization": "Forschungsgemeinschaft", + "example_sentence_native": "Die Forschungsgemeinschaft arbeitet an einer Lösung.", + "example_sentence_english": "The research community is working on a solution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24956 + }, + { + "word": "Freistellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemption", + "romanization": "Freistellung", + "example_sentence_native": "Er beantragte eine Freistellung von der Arbeit.", + "example_sentence_english": "He applied for an exemption from work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24957 + }, + { + "word": "functional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "functional", + "romanization": "functional", + "example_sentence_native": "Die neue Software ist sehr functional.", + "example_sentence_english": "The new software is very functional.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24959 + }, + { + "word": "Fürsprecher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advocate", + "romanization": "Fürsprecher", + "example_sentence_native": "Er ist ein starker Fürsprecher für soziale Gerechtigkeit.", + "example_sentence_english": "He is a strong advocate for social justice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24960 + }, + { + "word": "Ganztagsschule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full-day school", + "romanization": "Ganztagsschule", + "example_sentence_native": "Viele Eltern bevorzugen eine Ganztagsschule für ihre Kinder.", + "example_sentence_english": "Many parents prefer a full-day school for their children.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24962 + }, + { + "word": "gefiltert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filtered", + "romanization": "gefiltert", + "example_sentence_native": "Das gefilterte Wasser ist trinkbar.", + "example_sentence_english": "The filtered water is drinkable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24966 + }, + { + "word": "Gegenwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalent value", + "romanization": "Gegenwert", + "example_sentence_native": "Er erhielt einen Gegenwert für seine Arbeit.", + "example_sentence_english": "He received an equivalent value for his work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24967 + }, + { + "word": "gehäuft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulated", + "romanization": "gehäuft", + "example_sentence_native": "Es gab gehäufte Beschwerden über den Service.", + "example_sentence_english": "There were frequent complaints about the service.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24968 + }, + { + "word": "Gesichtserkennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facial recognition", + "romanization": "Gesichtserkennung", + "example_sentence_native": "Die Gesichtserkennung wird in vielen Smartphones verwendet.", + "example_sentence_english": "Facial recognition is used in many smartphones.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24973 + }, + { + "word": "Gewaltanwendung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "use of force", + "romanization": "Gewaltanwendung", + "example_sentence_native": "Die Polizei rechtfertigte die Gewaltanwendung.", + "example_sentence_english": "The police justified the use of force.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24974 + }, + { + "word": "glimpflich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without serious consequences", + "romanization": "glimpflich", + "example_sentence_native": "Der Unfall ging glimpflich aus.", + "example_sentence_english": "The accident ended without serious consequences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24975 + }, + { + "word": "Grundbesitzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landowner", + "romanization": "Grundbesitzer", + "example_sentence_native": "Der Grundbesitzer verkaufte sein Land.", + "example_sentence_english": "The landowner sold his land.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24977 + }, + { + "word": "Handballer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handball player", + "romanization": "Handballer", + "example_sentence_native": "Der Handballer war der beste Spieler im Team.", + "example_sentence_english": "The handball player was the best player in the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24982 + }, + { + "word": "Handbremse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handbrake", + "romanization": "Handbremse", + "example_sentence_native": "Zieh die Handbremse an, bevor du aussteigst.", + "example_sentence_english": "Pull the handbrake before you get out.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24983 + }, + { + "word": "Handelspartner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trading partner", + "romanization": "Handelspartner", + "example_sentence_native": "Deutschland ist ein wichtiger Handelspartner für viele Länder.", + "example_sentence_english": "Germany is an important trading partner for many countries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24984 + }, + { + "word": "handschriftlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handwritten", + "romanization": "handschriftlich", + "example_sentence_native": "Der Brief war handschriftlich verfasst.", + "example_sentence_english": "The letter was handwritten.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24985 + }, + { + "word": "Harmonisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmonization", + "romanization": "Harmonisierung", + "example_sentence_native": "Die Harmonisierung der Gesetze ist ein komplexer Prozess.", + "example_sentence_english": "The harmonization of laws is a complex process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24988 + }, + { + "word": "heiser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoarse", + "romanization": "heiser", + "example_sentence_native": "Nach dem Konzert war ihre Stimme heiser.", + "example_sentence_english": "After the concert, her voice was hoarse.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 24989 + }, + { + "word": "Herleitung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derivation", + "romanization": "Herleitung", + "example_sentence_native": "Die Herleitung der Formel ist kompliziert.", + "example_sentence_english": "The derivation of the formula is complicated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24990 + }, + { + "word": "Hexerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witchcraft", + "romanization": "Hexerei", + "example_sentence_native": "Sie glaubte an Hexerei und Magie.", + "example_sentence_english": "She believed in witchcraft and magic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24991 + }, + { + "word": "Hilfswerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aid organization", + "romanization": "Hilfswerk", + "example_sentence_native": "Das Hilfswerk leistet wichtige Arbeit in Krisengebieten.", + "example_sentence_english": "The aid organization does important work in crisis areas.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24993 + }, + { + "word": "Hochschulreife", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "university entrance qualification", + "romanization": "Hochschulreife", + "example_sentence_native": "Mit der Hochschulreife kann man an jeder Universität studieren.", + "example_sentence_english": "With the university entrance qualification, one can study at any university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24994 + }, + { + "word": "Hosting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hosting", + "romanization": "Hosting", + "example_sentence_native": "Wir bieten zuverlässiges Web-Hosting für Ihre Website an.", + "example_sentence_english": "We offer reliable web hosting for your website.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24998 + }, + { + "word": "Hotellerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hotel industry", + "romanization": "Hotellerie", + "example_sentence_native": "Die Hotellerie erholt sich langsam von der Krise.", + "example_sentence_english": "The hotel industry is slowly recovering from the crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 24999 + }, + { + "word": "hundertmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a hundred times", + "romanization": "hundertmal", + "example_sentence_native": "Ich habe es dir schon hundertmal gesagt.", + "example_sentence_english": "I've told you a hundred times already.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 25000 + }, + { + "word": "hydraulisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydraulic", + "romanization": "hydraulisch", + "example_sentence_native": "Das System verwendet hydraulische Bremsen.", + "example_sentence_english": "The system uses hydraulic brakes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25001 + }, + { + "word": "Höhenflug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-altitude flight;boom", + "romanization": "Höhenflug", + "example_sentence_native": "Das Unternehmen erlebt gerade einen Höhenflug.", + "example_sentence_english": "The company is currently experiencing a boom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25002 + }, + { + "word": "Immigration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigration", + "romanization": "Immigration", + "example_sentence_native": "Die Immigration ist ein wichtiges Thema in der Politik.", + "example_sentence_english": "Immigration is an important topic in politics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25006 + }, + { + "word": "Industrieunternehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrial company", + "romanization": "Industrieunternehmen", + "example_sentence_native": "Viele Industrieunternehmen sind in dieser Region angesiedelt.", + "example_sentence_english": "Many industrial companies are located in this region.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25007 + }, + { + "word": "innehalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pause;to stop", + "romanization": "innehalten", + "example_sentence_native": "Er musste innehalten, um Luft zu holen.", + "example_sentence_english": "He had to pause to catch his breath.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "inne", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25008 + }, + { + "word": "innig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heartfelt;fervent;intimate", + "romanization": "innig", + "example_sentence_native": "Sie umarmte ihn innig.", + "example_sentence_english": "She hugged him intimately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25009 + }, + { + "word": "irdisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthly;terrestrial", + "romanization": "irdisch", + "example_sentence_native": "Wir sprechen über irdische Angelegenheiten.", + "example_sentence_english": "We are talking about earthly matters.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25012 + }, + { + "word": "irritierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irritating;confusing", + "romanization": "irritierend", + "example_sentence_native": "Sein Verhalten war sehr irritierend.", + "example_sentence_english": "His behavior was very irritating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25013 + }, + { + "word": "Kanzlerkandidat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chancellor candidate", + "romanization": "Kanzlerkandidat", + "example_sentence_native": "Der Kanzlerkandidat stellte sein Programm vor.", + "example_sentence_english": "The chancellor candidate presented his program.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25020 + }, + { + "word": "Kiesel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pebble", + "romanization": "Kiesel", + "example_sentence_native": "Am Strand fand ich einen glatten Kiesel.", + "example_sentence_english": "On the beach, I found a smooth pebble.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25023 + }, + { + "word": "Kirchenkreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "church district", + "romanization": "Kirchenkreis", + "example_sentence_native": "Der Kirchenkreis organisiert viele soziale Projekte.", + "example_sentence_english": "The church district organizes many social projects.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25026 + }, + { + "word": "Kleeblatt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloverleaf", + "romanization": "Kleeblatt", + "example_sentence_native": "Sie fand ein vierblättriges Kleeblatt.", + "example_sentence_english": "She found a four-leaf clover.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25027 + }, + { + "word": "Kompatibilität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatibility", + "romanization": "Kompatibilität", + "example_sentence_native": "Die Kompatibilität der Software ist wichtig.", + "example_sentence_english": "The compatibility of the software is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25029 + }, + { + "word": "Kompost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compost", + "romanization": "Kompost", + "example_sentence_native": "Wir werfen unsere Bioabfälle auf den Kompost.", + "example_sentence_english": "We throw our organic waste onto the compost.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25030 + }, + { + "word": "kompromisslos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncompromising", + "romanization": "kompromisslos", + "example_sentence_native": "Er verfolgte seine Ziele kompromisslos.", + "example_sentence_english": "He pursued his goals uncompromisingly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25031 + }, + { + "word": "Kontrakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contract", + "romanization": "Kontrakt", + "example_sentence_native": "Der Kontrakt wurde von beiden Parteien unterzeichnet.", + "example_sentence_english": "The contract was signed by both parties.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25032 + }, + { + "word": "Konzerthaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concert hall", + "romanization": "Konzerthaus", + "example_sentence_native": "Das neue Konzerthaus hat eine hervorragende Akustik.", + "example_sentence_english": "The new concert hall has excellent acoustics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25033 + }, + { + "word": "Konzertsaal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concert hall", + "romanization": "Konzertsaal", + "example_sentence_native": "Der Konzertsaal war bis auf den letzten Platz gefüllt.", + "example_sentence_english": "The concert hall was filled to capacity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25034 + }, + { + "word": "Kopfhaut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scalp", + "romanization": "Kopfhaut", + "example_sentence_native": "Eine gesunde Kopfhaut ist wichtig für kräftiges Haar.", + "example_sentence_english": "A healthy scalp is important for strong hair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25035 + }, + { + "word": "Koppel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paddock", + "romanization": "Koppel", + "example_sentence_native": "Die Pferde grasen auf der grünen Koppel.", + "example_sentence_english": "The horses are grazing in the green paddock.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25036 + }, + { + "word": "Krapfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doughnut", + "romanization": "Krapfen", + "example_sentence_native": "Zum Fasching gibt es traditionell Krapfen.", + "example_sentence_english": "Traditionally, there are doughnuts for Carnival.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25038 + }, + { + "word": "Krebserkrankung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancer (disease)", + "romanization": "Krebserkrankung", + "example_sentence_native": "Die Forschung nach Heilmitteln für Krebserkrankungen macht Fortschritte.", + "example_sentence_english": "Research into cures for cancer is making progress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25039 + }, + { + "word": "Kronleuchter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chandelier", + "romanization": "Kronleuchter", + "example_sentence_native": "Ein großer Kronleuchter hing in der Mitte des Saales.", + "example_sentence_english": "A large chandelier hung in the middle of the hall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25043 + }, + { + "word": "Küchenchef", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "head chef", + "romanization": "Küchenchef", + "example_sentence_native": "Der Küchenchef bereitete ein exquisites Menü zu.", + "example_sentence_english": "The head chef prepared an exquisite menu.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25046 + }, + { + "word": "Labrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Labrador (dog breed)", + "romanization": "Labrador", + "example_sentence_native": "Unser Labrador liebt es, im See zu schwimmen.", + "example_sentence_english": "Our Labrador loves to swim in the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25047 + }, + { + "word": "Lagerstätte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deposit (geological);storage site", + "romanization": "Lagerstätte", + "example_sentence_native": "Die neue Lagerstätte enthält große Mengen an Erdöl.", + "example_sentence_english": "The new deposit contains large quantities of crude oil.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25048 + }, + { + "word": "Landesgartenschau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "State Garden Show", + "romanization": "Landesgartenschau", + "example_sentence_native": "Wir besuchten letztes Jahr die Landesgartenschau in unserer Stadt.", + "example_sentence_english": "We visited the State Garden Show in our city last year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25049 + }, + { + "word": "Landesverteidigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national defense", + "romanization": "Landesverteidigung", + "example_sentence_native": "Die Landesverteidigung ist eine wichtige Aufgabe des Staates.", + "example_sentence_english": "National defense is an important task of the state.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25050 + }, + { + "word": "Lebenskraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vitality;life force", + "romanization": "Lebenskraft", + "example_sentence_native": "Nach der Krankheit fehlte ihm die Lebenskraft.", + "example_sentence_english": "After the illness, he lacked vitality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25052 + }, + { + "word": "Lebensretter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lifesaver;rescuer", + "romanization": "Lebensretter", + "example_sentence_native": "Der Schwimmer war ein echter Lebensretter.", + "example_sentence_english": "The swimmer was a real lifesaver.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25053 + }, + { + "word": "Leberwurst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "liver sausage", + "romanization": "Leberwurst", + "example_sentence_native": "Ich esse gerne Brot mit Leberwurst.", + "example_sentence_english": "I like to eat bread with liver sausage.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25054 + }, + { + "word": "Lesbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "readability", + "romanization": "Lesbarkeit", + "example_sentence_native": "Die Lesbarkeit des Textes ist sehr gut.", + "example_sentence_english": "The readability of the text is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25056 + }, + { + "word": "Leseprobe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reading sample;excerpt", + "romanization": "Leseprobe", + "example_sentence_native": "Ich habe eine Leseprobe des neuen Romans heruntergeladen.", + "example_sentence_english": "I downloaded a reading sample of the new novel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25057 + }, + { + "word": "Luchs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lynx", + "romanization": "Luchs", + "example_sentence_native": "Der Luchs ist eine scheue Katze.", + "example_sentence_english": "The lynx is a shy cat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25060 + }, + { + "word": "Lustspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comedy (play)", + "romanization": "Lustspiel", + "example_sentence_native": "Das Lustspiel wurde vom Publikum gefeiert.", + "example_sentence_english": "The comedy was celebrated by the audience.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25062 + }, + { + "word": "Materialismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "materialism", + "romanization": "Materialismus", + "example_sentence_native": "Der Materialismus prägt oft die moderne Gesellschaft.", + "example_sentence_english": "Materialism often shapes modern society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25064 + }, + { + "word": "Mayonnaise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mayonnaise", + "romanization": "Mayonnaise", + "example_sentence_native": "Ich mag Pommes mit Mayonnaise.", + "example_sentence_english": "I like fries with mayonnaise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25065 + }, + { + "word": "Mehraufwand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additional effort;expense", + "romanization": "Mehraufwand", + "example_sentence_native": "Der Mehraufwand für das Projekt war unerwartet.", + "example_sentence_english": "The additional effort for the project was unexpected.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25066 + }, + { + "word": "Messgerät", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measuring device", + "romanization": "Messgerät", + "example_sentence_native": "Das Messgerät zeigte eine hohe Temperatur an.", + "example_sentence_english": "The measuring device showed a high temperature.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25068 + }, + { + "word": "Migrationspolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migration policy", + "romanization": "Migrationspolitik", + "example_sentence_native": "Die Migrationspolitik ist ein wichtiges Thema in der Debatte.", + "example_sentence_english": "Migration policy is an important topic in the debate.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25070 + }, + { + "word": "misslingen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail;to go wrong", + "romanization": "misslingen", + "example_sentence_native": "Der Versuch könnte misslingen.", + "example_sentence_english": "The attempt could fail.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25074 + }, + { + "word": "Mittelständler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "SME owner;employee", + "romanization": "Mittelständler", + "example_sentence_native": "Viele Mittelständler sind das Rückgrat der deutschen Wirtschaft.", + "example_sentence_english": "Many SME owners are the backbone of the German economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25075 + }, + { + "word": "motorisiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorized", + "romanization": "motorisiert", + "example_sentence_native": "Das Fahrzeug ist motorisiert.", + "example_sentence_english": "The vehicle is motorized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25079 + }, + { + "word": "Mutant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutant", + "romanization": "Mutant", + "example_sentence_native": "Der Mutant hatte ungewöhnliche Fähigkeiten.", + "example_sentence_english": "The mutant had unusual abilities.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25080 + }, + { + "word": "mutwillig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malicious;wanton;deliberate", + "romanization": "mutwillig", + "example_sentence_native": "Er hat das Fenster mutwillig zerstört.", + "example_sentence_english": "He deliberately destroyed the window.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25081 + }, + { + "word": "Nachbarort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighboring village;town", + "romanization": "Nachbarort", + "example_sentence_native": "Unser Nachbarort hat ein schönes altes Schloss.", + "example_sentence_english": "Our neighboring village has a beautiful old castle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25084 + }, + { + "word": "Nachbarstadt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighboring city;town", + "romanization": "Nachbarstadt", + "example_sentence_native": "Die Nachbarstadt ist viel größer als unsere.", + "example_sentence_english": "The neighboring city is much larger than ours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25085 + }, + { + "word": "Nachschlagewerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference work", + "romanization": "Nachschlagewerk", + "example_sentence_native": "Dieses Lexikon ist ein nützliches Nachschlagewerk.", + "example_sentence_english": "This encyclopedia is a useful reference work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25086 + }, + { + "word": "Nachtclub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightclub", + "romanization": "Nachtclub", + "example_sentence_native": "Wir haben den Abend in einem Nachtclub verbracht.", + "example_sentence_english": "We spent the evening in a nightclub.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25087 + }, + { + "word": "Nachttisch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nightstand;bedside table", + "romanization": "Nachttisch", + "example_sentence_native": "Auf dem Nachttisch stand eine Lampe.", + "example_sentence_english": "There was a lamp on the nightstand.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25088 + }, + { + "word": "nachziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to follow;to catch up;to tighten", + "romanization": "nachziehen", + "example_sentence_native": "Die Kinder mussten ihren Eltern nachziehen.", + "example_sentence_english": "The children had to follow their parents.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25089 + }, + { + "word": "Nervenkitzel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thrill;adrenaline rush", + "romanization": "Nervenkitzel", + "example_sentence_native": "Der Fallschirmsprung war ein echter Nervenkitzel.", + "example_sentence_english": "The parachute jump was a real thrill.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25090 + }, + { + "word": "Netzhaut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retina", + "romanization": "Netzhaut", + "example_sentence_native": "Die Netzhaut ist ein wichtiger Teil des Auges.", + "example_sentence_english": "The retina is an important part of the eye.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25091 + }, + { + "word": "Nordseeküste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North Sea coast", + "romanization": "Nordseeküste", + "example_sentence_native": "Wir verbringen unseren Urlaub oft an der Nordseeküste.", + "example_sentence_english": "We often spend our holidays on the North Sea coast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25093 + }, + { + "word": "Opferrolle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "victim role", + "romanization": "Opferrolle", + "example_sentence_native": "Er neigt dazu, sich in die Opferrolle zu begeben.", + "example_sentence_english": "He tends to put himself in the victim role.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25098 + }, + { + "word": "Orang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orangutan (short for Orang-Utan);person (Malay;Indonesian origin)", + "romanization": "Orang", + "example_sentence_native": "Der Orang ist ein großer Menschenaffe.", + "example_sentence_english": "The orangutan is a large ape.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25099 + }, + { + "word": "ordern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to order", + "romanization": "ordern", + "example_sentence_native": "Ich möchte ein Taxi ordern.", + "example_sentence_english": "I would like to order a taxi.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25100 + }, + { + "word": "Ortsbeirat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local advisory council", + "romanization": "Ortsbeirat", + "example_sentence_native": "Der Ortsbeirat trifft sich nächste Woche.", + "example_sentence_english": "The local advisory council meets next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25101 + }, + { + "word": "Osterfeuer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Easter bonfire", + "romanization": "Osterfeuer", + "example_sentence_native": "Wir gehen heute Abend zum Osterfeuer.", + "example_sentence_english": "We are going to the Easter bonfire tonight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25102 + }, + { + "word": "Pampa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boondocks;middle of nowhere", + "romanization": "Pampa", + "example_sentence_native": "Sie wohnen irgendwo in der Pampa.", + "example_sentence_english": "They live somewhere in the middle of nowhere.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25104 + }, + { + "word": "Peanuts", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peanuts (small amount of money)", + "romanization": "Peanuts", + "example_sentence_native": "Für ihn sind das Peanuts.", + "example_sentence_english": "For him, that's peanuts.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25105 + }, + { + "word": "Plattenspieler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record player", + "romanization": "Plattenspieler", + "example_sentence_native": "Er hat einen alten Plattenspieler gefunden.", + "example_sentence_english": "He found an old record player.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25107 + }, + { + "word": "Preisniveau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "price level", + "romanization": "Preisniveau", + "example_sentence_native": "Das Preisniveau ist in den letzten Jahren gestiegen.", + "example_sentence_english": "The price level has risen in recent years.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25109 + }, + { + "word": "privatisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to privatize", + "romanization": "privatisieren", + "example_sentence_native": "Die Regierung plant, den Staatsbetrieb zu privatisieren.", + "example_sentence_english": "The government plans to privatize the state-owned company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25110 + }, + { + "word": "Profession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profession", + "romanization": "Profession", + "example_sentence_native": "Er übt seine Profession mit großer Leidenschaft aus.", + "example_sentence_english": "He practices his profession with great passion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25111 + }, + { + "word": "Projektor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "projector", + "romanization": "Projektor", + "example_sentence_native": "Der Projektor ist für die Präsentation notwendig.", + "example_sentence_english": "The projector is necessary for the presentation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25112 + }, + { + "word": "Quarter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarter (e.g.;of a year;in sports)", + "romanization": "Quarter", + "example_sentence_native": "Die Firma hat im letzten Quarter gute Zahlen gemeldet.", + "example_sentence_english": "The company reported good figures in the last quarter.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25113 + }, + { + "word": "Regierungspräsidium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regional administrative authority", + "romanization": "Regierungspräsidium", + "example_sentence_native": "Das Regierungspräsidium ist für die Genehmigung zuständig.", + "example_sentence_english": "The regional administrative authority is responsible for the approval.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25116 + }, + { + "word": "resignieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resign;to give up", + "romanization": "resignieren", + "example_sentence_native": "Er begann zu resignieren, als er die Schwierigkeiten sah.", + "example_sentence_english": "He began to resign when he saw the difficulties.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25117 + }, + { + "word": "Rute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rod;switch;tail (of an animal)", + "romanization": "Rute", + "example_sentence_native": "Der Hund wedelte mit der Rute.", + "example_sentence_english": "The dog wagged its tail.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25119 + }, + { + "word": "Schamlippe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labium (of vulva)", + "romanization": "Schamlippe", + "example_sentence_native": "Die Schamlippen sind Teil der weiblichen Genitalien.", + "example_sentence_english": "The labia are part of the female genitalia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25122 + }, + { + "word": "schleichend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creeping;insidious", + "romanization": "schleichend", + "example_sentence_native": "Die Krankheit hatte einen schleichenden Beginn.", + "example_sentence_english": "The disease had an insidious onset.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25124 + }, + { + "word": "Schlossberg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "castle hill", + "romanization": "Schlossberg", + "example_sentence_native": "Wir wanderten auf den Schlossberg, um die Aussicht zu genießen.", + "example_sentence_english": "We hiked up the castle hill to enjoy the view.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25125 + }, + { + "word": "Schlossplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "castle square", + "romanization": "Schlossplatz", + "example_sentence_native": "Der Schlossplatz ist ein beliebter Treffpunkt in der Stadt.", + "example_sentence_english": "The castle square is a popular meeting point in the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25126 + }, + { + "word": "schmälern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diminish;to reduce", + "romanization": "schmälern", + "example_sentence_native": "Seine Fehler schmälern seine Leistung nicht.", + "example_sentence_english": "His mistakes do not diminish his performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25127 + }, + { + "word": "Schulmädchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "schoolgirl", + "romanization": "Schulmädchen", + "example_sentence_native": "Das Schulmädchen trug einen roten Rucksack.", + "example_sentence_english": "The schoolgirl carried a red backpack.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25128 + }, + { + "word": "schutzlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defenseless;unprotected", + "romanization": "schutzlos", + "example_sentence_native": "Das kleine Kätzchen war völlig schutzlos.", + "example_sentence_english": "The little kitten was completely defenseless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25129 + }, + { + "word": "Schwerverletzter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriously injured person", + "romanization": "Schwerverletzter", + "example_sentence_native": "Ein Schwerverletzter wurde ins Krankenhaus gebracht.", + "example_sentence_english": "A seriously injured person was taken to the hospital.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25131 + }, + { + "word": "Seefahrt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sea voyage;seafaring", + "romanization": "Seefahrt", + "example_sentence_native": "Die lange Seefahrt war anstrengend.", + "example_sentence_english": "The long sea voyage was exhausting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25133 + }, + { + "word": "Seitenwechsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change of sides", + "romanization": "Seitenwechsel", + "example_sentence_native": "Nach dem Seitenwechsel spielten sie besser.", + "example_sentence_english": "After the change of sides, they played better.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25134 + }, + { + "word": "selbsternannt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-proclaimed;self-appointed", + "romanization": "selbsternannt", + "example_sentence_native": "Er ist ein selbsternannter Experte.", + "example_sentence_english": "He is a self-proclaimed expert.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25135 + }, + { + "word": "siebenmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seven times", + "romanization": "siebenmal", + "example_sentence_native": "Ich habe das Lied siebenmal gehört.", + "example_sentence_english": "I have heard the song seven times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 25141 + }, + { + "word": "Sintflut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deluge;great flood", + "romanization": "Sintflut", + "example_sentence_native": "Die Geschichte von der Sintflut ist sehr alt.", + "example_sentence_english": "The story of the great flood is very old.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25143 + }, + { + "word": "Skispringer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ski jumper", + "romanization": "Skispringer", + "example_sentence_native": "Der Skispringer landete perfekt.", + "example_sentence_english": "The ski jumper landed perfectly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25145 + }, + { + "word": "Solarstrom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar power", + "romanization": "Solarstrom", + "example_sentence_native": "Immer mehr Haushalte nutzen Solarstrom.", + "example_sentence_english": "More and more households use solar power.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25146 + }, + { + "word": "Spielerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trifle;gimmick", + "romanization": "Spielerei", + "example_sentence_native": "Das neue Gadget ist nur eine teure Spielerei.", + "example_sentence_english": "The new gadget is just an expensive gimmick.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25149 + }, + { + "word": "Spielverlauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "course of the game", + "romanization": "Spielverlauf", + "example_sentence_native": "Der Spielverlauf war sehr spannend.", + "example_sentence_english": "The course of the game was very exciting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25150 + }, + { + "word": "Stadtkern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city center", + "romanization": "Stadtkern", + "example_sentence_native": "Wir trafen uns im Stadtkern.", + "example_sentence_english": "We met in the city center.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25151 + }, + { + "word": "Stativ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tripod", + "romanization": "Stativ", + "example_sentence_native": "Ich brauche ein Stativ für meine Kamera.", + "example_sentence_english": "I need a tripod for my camera.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25153 + }, + { + "word": "Steinchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small stone;pebble", + "romanization": "Steinchen", + "example_sentence_native": "Ein kleines Steinchen lag auf dem Weg.", + "example_sentence_english": "A small stone lay on the path.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25155 + }, + { + "word": "Stigma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stigma", + "romanization": "Stigma", + "example_sentence_native": "Das Stigma der Armut ist schwer zu überwinden.", + "example_sentence_english": "The stigma of poverty is hard to overcome.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25157 + }, + { + "word": "Straftatbestand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal offense", + "romanization": "Straftatbestand", + "example_sentence_native": "Der Diebstahl erfüllt den Straftatbestand.", + "example_sentence_english": "The theft fulfills the elements of a criminal offense.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25158 + }, + { + "word": "Supporter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporter", + "romanization": "Supporter", + "example_sentence_native": "Er ist ein großer Supporter des Teams.", + "example_sentence_english": "He is a big supporter of the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25160 + }, + { + "word": "Sägewerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sawmill", + "romanization": "Sägewerk", + "example_sentence_native": "Das alte Sägewerk wurde abgerissen.", + "example_sentence_english": "The old sawmill was torn down.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25163 + }, + { + "word": "Taschenmesser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pocket knife", + "romanization": "Taschenmesser", + "example_sentence_native": "Er hat immer ein Taschenmesser dabei.", + "example_sentence_english": "He always carries a pocket knife.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25164 + }, + { + "word": "Teamchef", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "team leader", + "romanization": "Teamchef", + "example_sentence_native": "Der Teamchef hat die Strategie erklärt.", + "example_sentence_english": "The team leader explained the strategy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25166 + }, + { + "word": "Tonband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnetic tape", + "romanization": "Tonband", + "example_sentence_native": "Er nahm die Musik auf ein Tonband auf.", + "example_sentence_english": "He recorded the music on a magnetic tape.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25171 + }, + { + "word": "Torchance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scoring chance", + "romanization": "Torchance", + "example_sentence_native": "Der Stürmer hatte eine gute Torchance.", + "example_sentence_english": "The striker had a good scoring chance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25172 + }, + { + "word": "Torf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peat", + "romanization": "Torf", + "example_sentence_native": "Torf wird oft als Brennstoff verwendet.", + "example_sentence_english": "Peat is often used as fuel.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25173 + }, + { + "word": "Torpedo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torpedo", + "romanization": "Torpedo", + "example_sentence_native": "Das U-Boot feuerte einen Torpedo ab.", + "example_sentence_english": "The submarine fired a torpedo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25174 + }, + { + "word": "transferieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transfer", + "romanization": "transferieren", + "example_sentence_native": "Wir müssen die Daten transferieren.", + "example_sentence_english": "We need to transfer the data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25175 + }, + { + "word": "Transformer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformer", + "romanization": "Transformer", + "example_sentence_native": "Der Transformer wandelt die Spannung um.", + "example_sentence_english": "The transformer converts the voltage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25176 + }, + { + "word": "Traumfrau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dream woman", + "romanization": "Traumfrau", + "example_sentence_native": "Er hat seine Traumfrau gefunden.", + "example_sentence_english": "He found his dream woman.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25177 + }, + { + "word": "trendy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trendy", + "romanization": "trendy", + "example_sentence_native": "Das ist ein sehr trendy Outfit.", + "example_sentence_english": "That is a very trendy outfit.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25178 + }, + { + "word": "Trias", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "triad", + "romanization": "Trias", + "example_sentence_native": "Die Trias von Freiheit, Gleichheit und Brüderlichkeit ist ein bekanntes Ideal.", + "example_sentence_english": "The triad of liberty, equality, and fraternity is a well-known ideal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25180 + }, + { + "word": "trotzig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defiant;stubborn", + "romanization": "trotzig", + "example_sentence_native": "Das Kind war trotzig und weigerte sich, ins Bett zu gehen.", + "example_sentence_english": "The child was defiant and refused to go to bed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25182 + }, + { + "word": "Typhus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typhoid fever", + "romanization": "Typhus", + "example_sentence_native": "Er erkrankte an Typhus während seiner Reise.", + "example_sentence_english": "He contracted typhoid fever during his trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25183 + }, + { + "word": "umhüllen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wrap;to envelop", + "romanization": "umhüllen", + "example_sentence_native": "Sie umhüllte das Geschenk sorgfältig mit Papier.", + "example_sentence_english": "She carefully wrapped the gift with paper.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25184 + }, + { + "word": "unbeachtet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnoticed;disregarded", + "romanization": "unbeachtet", + "example_sentence_native": "Seine Warnungen blieben unbeachtet.", + "example_sentence_english": "His warnings remained unnoticed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25187 + }, + { + "word": "Uneinigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagreement;discord", + "romanization": "Uneinigkeit", + "example_sentence_native": "Es gab Uneinigkeit über den besten Weg, das Problem zu lösen.", + "example_sentence_english": "There was disagreement about the best way to solve the problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25188 + }, + { + "word": "Uniklinik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university hospital", + "romanization": "Uniklinik", + "example_sentence_native": "Er wurde in die Uniklinik eingeliefert.", + "example_sentence_english": "He was admitted to the university hospital.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25189 + }, + { + "word": "unkommentiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncommented;without comment", + "romanization": "unkommentiert", + "example_sentence_native": "Die Nachricht wurde unkommentiert veröffentlicht.", + "example_sentence_english": "The news was published without comment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25190 + }, + { + "word": "unschlüssig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indecisive;irresolute", + "romanization": "unschlüssig", + "example_sentence_native": "Sie war unschlüssig, welche Option sie wählen sollte.", + "example_sentence_english": "She was indecisive about which option to choose.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25191 + }, + { + "word": "unspektakulär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unspectacular", + "romanization": "unspektakulär", + "example_sentence_native": "Der Film hatte ein unspektakuläres Ende.", + "example_sentence_english": "The movie had an unspectacular ending.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25192 + }, + { + "word": "unterschreiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall below;to undercut", + "romanization": "unterschreiten", + "example_sentence_native": "Die Temperatur darf den Gefrierpunkt nicht unterschreiten.", + "example_sentence_english": "The temperature must not fall below freezing point.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25193 + }, + { + "word": "unverhofft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unexpected;unhoped-for", + "romanization": "unverhofft", + "example_sentence_native": "Er erhielt unverhofft eine Erbschaft.", + "example_sentence_english": "He unexpectedly received an inheritance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25194 + }, + { + "word": "unzumutbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unacceptable;unreasonable", + "romanization": "unzumutbar", + "example_sentence_native": "Die Arbeitsbedingungen waren unzumutbar.", + "example_sentence_english": "The working conditions were unacceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25195 + }, + { + "word": "Vereinsheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "club house", + "romanization": "Vereinsheim", + "example_sentence_native": "Das Vereinsheim ist jeden Freitagabend geöffnet.", + "example_sentence_english": "The club house is open every Friday evening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25197 + }, + { + "word": "verengen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to narrow;to constrict", + "romanization": "verengen", + "example_sentence_native": "Die Straße verengt sich nach der Brücke.", + "example_sentence_english": "The road narrows after the bridge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25198 + }, + { + "word": "Vererbung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inheritance;heredity", + "romanization": "Vererbung", + "example_sentence_native": "Die Vererbung von Merkmalen ist ein zentrales Thema in der Biologie.", + "example_sentence_english": "The inheritance of traits is a central topic in biology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25199 + }, + { + "word": "verfliegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fly away;to pass quickly (of time)", + "romanization": "verfliegen", + "example_sentence_native": "Die Zeit verfliegt, wenn man Spaß hat.", + "example_sentence_english": "Time flies when you're having fun.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25200 + }, + { + "word": "Vergleichbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparability", + "romanization": "Vergleichbarkeit", + "example_sentence_native": "Die Vergleichbarkeit der Daten ist entscheidend für die Studie.", + "example_sentence_english": "The comparability of the data is crucial for the study.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25201 + }, + { + "word": "vergolden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to gild;to make golden", + "romanization": "vergolden", + "example_sentence_native": "Er wollte die Statue vergolden lassen.", + "example_sentence_english": "He wanted to have the statue gilded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25202 + }, + { + "word": "Vergänglichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transience;ephemerality", + "romanization": "Vergänglichkeit", + "example_sentence_native": "Die Vergänglichkeit des Lebens ist ein häufiges Thema in der Kunst.", + "example_sentence_english": "The transience of life is a common theme in art.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25203 + }, + { + "word": "Verkehrspolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transport policy;traffic policy", + "romanization": "Verkehrspolitik", + "example_sentence_native": "Die neue Verkehrspolitik soll den öffentlichen Nahverkehr stärken.", + "example_sentence_english": "The new transport policy aims to strengthen public transport.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25204 + }, + { + "word": "verletzungsbedingt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "due to injury;injury-related", + "romanization": "verletzungsbedingt", + "example_sentence_native": "Er musste das Spiel verletzungsbedingt verlassen.", + "example_sentence_english": "He had to leave the game due to injury.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25205 + }, + { + "word": "Vermögensverwaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asset management;wealth management", + "romanization": "Vermögensverwaltung", + "example_sentence_native": "Er arbeitet in der Vermögensverwaltung einer großen Bank.", + "example_sentence_english": "He works in asset management for a large bank.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25206 + }, + { + "word": "verstümmeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to mutilate;to maim", + "romanization": "verstümmeln", + "example_sentence_native": "Der Text wurde in der Übersetzung verstümmelt.", + "example_sentence_english": "The text was mutilated in the translation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25207 + }, + { + "word": "Versäumnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omission;failure;default", + "romanization": "Versäumnis", + "example_sentence_native": "Das Versäumnis, die Frist einzuhalten, hatte Konsequenzen.", + "example_sentence_english": "The failure to meet the deadline had consequences.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25208 + }, + { + "word": "Verteidigungsministerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Minister of Defense (female)", + "romanization": "Verteidigungsministerin", + "example_sentence_native": "Die Verteidigungsministerin hielt eine Rede.", + "example_sentence_english": "The Minister of Defense gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25209 + }, + { + "word": "Viewer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewer", + "romanization": "Viewer", + "example_sentence_native": "Der Viewer ermöglicht das Betrachten von PDF-Dateien.", + "example_sentence_english": "The viewer allows viewing of PDF files.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25210 + }, + { + "word": "Volatilität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "volatility", + "romanization": "Volatilität", + "example_sentence_native": "Die Volatilität des Marktes ist derzeit sehr hoch.", + "example_sentence_english": "The market's volatility is currently very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25212 + }, + { + "word": "Vorstrafe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previous conviction;criminal record", + "romanization": "Vorstrafe", + "example_sentence_native": "Er hat eine Vorstrafe wegen Diebstahls.", + "example_sentence_english": "He has a previous conviction for theft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25213 + }, + { + "word": "Wahrheitsgehalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truthfulness;veracity;truth content", + "romanization": "Wahrheitsgehalt", + "example_sentence_native": "Der Wahrheitsgehalt der Aussage wurde angezweifelt.", + "example_sentence_english": "The truthfulness of the statement was doubted.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25215 + }, + { + "word": "Wanze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bug (insect);bedbug;(listening) bug", + "romanization": "Wanze", + "example_sentence_native": "Ich habe eine Wanze an der Wand gesehen.", + "example_sentence_english": "I saw a bug on the wall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25216 + }, + { + "word": "wegschauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look away", + "romanization": "wegschauen", + "example_sentence_native": "Er konnte nicht wegschauen, als es passierte.", + "example_sentence_english": "He couldn't look away when it happened.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25218 + }, + { + "word": "Weihnachtsgeld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christmas bonus;13th month salary", + "romanization": "Weihnachtsgeld", + "example_sentence_native": "Viele Arbeitnehmer erhalten im November Weihnachtsgeld.", + "example_sentence_english": "Many employees receive a Christmas bonus in November.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25219 + }, + { + "word": "Weinkeller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wine cellar", + "romanization": "Weinkeller", + "example_sentence_native": "Der Weinkeller ist kühl und dunkel.", + "example_sentence_english": "The wine cellar is cool and dark.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25220 + }, + { + "word": "weiterempfehlen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recommend further", + "romanization": "weiterempfehlen", + "example_sentence_native": "Ich werde Ihr Restaurant gerne weiterempfehlen.", + "example_sentence_english": "I will gladly recommend your restaurant further.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "empfehlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25222 + }, + { + "word": "Werber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertiser", + "romanization": "Werber", + "example_sentence_native": "Der Werber präsentierte eine neue Kampagne.", + "example_sentence_english": "The advertiser presented a new campaign.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25223 + }, + { + "word": "wimmeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to teem", + "romanization": "wimmeln", + "example_sentence_native": "Der Park wimmelte von Menschen.", + "example_sentence_english": "The park was teeming with people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25224 + }, + { + "word": "Wirtschaftswissenschaftler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economist", + "romanization": "Wirtschaftswissenschaftler", + "example_sentence_native": "Der Wirtschaftswissenschaftler analysierte die Marktdaten.", + "example_sentence_english": "The economist analyzed the market data.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25226 + }, + { + "word": "Wählerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female voter", + "romanization": "Wählerin", + "example_sentence_native": "Die Wählerin gab ihre Stimme ab.", + "example_sentence_english": "The female voter cast her vote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25227 + }, + { + "word": "zaghaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hesitant", + "romanization": "zaghaft", + "example_sentence_native": "Er gab eine zaghafte Antwort.", + "example_sentence_english": "He gave a hesitant answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25230 + }, + { + "word": "Zahnersatz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dental prosthesis", + "romanization": "Zahnersatz", + "example_sentence_native": "Er benötigt einen neuen Zahnersatz.", + "example_sentence_english": "He needs new dentures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25231 + }, + { + "word": "zugrundeliegen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to underlie", + "romanization": "zugrundeliegen", + "example_sentence_native": "Welches Prinzip liegt dieser Theorie zugrunde?", + "example_sentence_english": "Which principle underlies this theory?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zugrunde", + "base_verb": "liegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25233 + }, + { + "word": "zurückverfolgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trace back", + "romanization": "zurückverfolgen", + "example_sentence_native": "Wir konnten die Ursache des Problems zurückverfolgen.", + "example_sentence_english": "We could trace back the cause of the problem.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "verfolgen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25234 + }, + { + "word": "zusammenbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assemble", + "romanization": "zusammenbauen", + "example_sentence_native": "Er musste die Möbel selbst zusammenbauen.", + "example_sentence_english": "He had to assemble the furniture himself.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25235 + }, + { + "word": "Zuspitzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "escalation", + "romanization": "Zuspitzung", + "example_sentence_native": "Die Zuspitzung der Lage führte zu Verhandlungen.", + "example_sentence_english": "The escalation of the situation led to negotiations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25236 + }, + { + "word": "Zusteller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deliverer", + "romanization": "Zusteller", + "example_sentence_native": "Der Zusteller brachte das Paket.", + "example_sentence_english": "The deliverer brought the package.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25237 + }, + { + "word": "Zweigstelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch office", + "romanization": "Zweigstelle", + "example_sentence_native": "Die Bank eröffnete eine neue Zweigstelle.", + "example_sentence_english": "The bank opened a new branch office.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25238 + }, + { + "word": "zwischenmenschlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpersonal", + "romanization": "zwischenmenschlich", + "example_sentence_native": "Sie hat gute zwischenmenschliche Fähigkeiten.", + "example_sentence_english": "She has good interpersonal skills.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25239 + }, + { + "word": "Zähneputzen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brushing teeth", + "romanization": "Zähneputzen", + "example_sentence_native": "Das Zähneputzen ist wichtig für gesunde Zähne.", + "example_sentence_english": "Brushing teeth is important for healthy teeth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25240 + }, + { + "word": "abmachen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree;to remove", + "romanization": "abmachen", + "example_sentence_native": "Wir müssen einen Termin abmachen.", + "example_sentence_english": "We need to agree on an appointment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "machen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25242 + }, + { + "word": "abschließen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lock;to conclude", + "romanization": "abschließen", + "example_sentence_native": "Vergiss nicht, die Tür abzuschließen.", + "example_sentence_english": "Don't forget to lock the door.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schließen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25243 + }, + { + "word": "abzocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rip off;to fleece", + "romanization": "abzocken", + "example_sentence_native": "Der Händler hat versucht, mich abzuzocken.", + "example_sentence_english": "The dealer tried to rip me off.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "zocken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25244 + }, + { + "word": "Absurdität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absurdity", + "romanization": "Absurdität", + "example_sentence_native": "Die Absurdität der Situation war offensichtlich.", + "example_sentence_english": "The absurdity of the situation was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25245 + }, + { + "word": "abtauchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dive;to disappear", + "romanization": "abtauchen", + "example_sentence_native": "Der Taucher ist in die Tiefe abgetaucht.", + "example_sentence_english": "The diver dived into the depths.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "tauchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25246 + }, + { + "word": "Affekt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affect;emotion", + "romanization": "Affekt", + "example_sentence_native": "Er handelte im Affekt.", + "example_sentence_english": "He acted on impulse/in a fit of emotion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25249 + }, + { + "word": "Agrarpolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agricultural policy", + "romanization": "Agrarpolitik", + "example_sentence_native": "Die Agrarpolitik ist ein wichtiges Thema in der EU.", + "example_sentence_english": "Agricultural policy is an important topic in the EU.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25250 + }, + { + "word": "Ahne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestor", + "romanization": "Ahne", + "example_sentence_native": "Meine Ahnen kamen aus diesem Dorf.", + "example_sentence_english": "My ancestors came from this village.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25251 + }, + { + "word": "Aktionsplan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "action plan", + "romanization": "Aktionsplan", + "example_sentence_native": "Die Regierung hat einen neuen Aktionsplan vorgestellt.", + "example_sentence_english": "The government presented a new action plan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25253 + }, + { + "word": "Altenpfleger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geriatric nurse (male)", + "romanization": "Altenpfleger", + "example_sentence_native": "Mein Bruder arbeitet als Altenpfleger.", + "example_sentence_english": "My brother works as a geriatric nurse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25254 + }, + { + "word": "Altersstufe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "age group;level", + "romanization": "Altersstufe", + "example_sentence_native": "Diese Übung ist für alle Altersstufen geeignet.", + "example_sentence_english": "This exercise is suitable for all age groups.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25255 + }, + { + "word": "andermal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "another time", + "romanization": "andermal", + "example_sentence_native": "Das können wir ja andermal besprechen.", + "example_sentence_english": "We can discuss that another time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25256 + }, + { + "word": "anheuern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hire;to engage", + "romanization": "anheuern", + "example_sentence_native": "Sie haben einen neuen Kapitän angeheuert.", + "example_sentence_english": "They hired a new captain.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "heuern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25258 + }, + { + "word": "anlügen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lie to (someone)", + "romanization": "anlügen", + "example_sentence_native": "Du solltest mich nicht anlügen.", + "example_sentence_english": "You shouldn't lie to me.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "lügen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25259 + }, + { + "word": "anwerben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recruit;to acquire", + "romanization": "anwerben", + "example_sentence_native": "Die Firma möchte neue Talente anwerben.", + "example_sentence_english": "The company wants to recruit new talents.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "werben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25260 + }, + { + "word": "Antifaschismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-fascism", + "romanization": "Antifaschismus", + "example_sentence_native": "Antifaschismus ist eine wichtige politische Haltung.", + "example_sentence_english": "Anti-fascism is an important political stance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25262 + }, + { + "word": "Arbeiterschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workforce;labor force", + "romanization": "Arbeiterschaft", + "example_sentence_native": "Die Arbeiterschaft forderte bessere Arbeitsbedingungen.", + "example_sentence_english": "The workforce demanded better working conditions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25265 + }, + { + "word": "Armbrust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossbow", + "romanization": "Armbrust", + "example_sentence_native": "Er zielte mit der Armbrust auf die Zielscheibe.", + "example_sentence_english": "He aimed the crossbow at the target.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25267 + }, + { + "word": "attestieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to attest;to certify", + "romanization": "attestieren", + "example_sentence_native": "Der Arzt attestierte ihm eine gute Gesundheit.", + "example_sentence_english": "The doctor attested to his good health.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25268 + }, + { + "word": "aufbieten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to muster;to deploy;to offer", + "romanization": "aufbieten", + "example_sentence_native": "Er musste all seine Kräfte aufbieten, um die Aufgabe zu lösen.", + "example_sentence_english": "He had to muster all his strength to solve the task.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "bieten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25269 + }, + { + "word": "aufgeweckt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lively;bright;alert", + "romanization": "aufgeweckt", + "example_sentence_native": "Das Kind ist sehr aufgeweckt und neugierig.", + "example_sentence_english": "The child is very lively and curious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25270 + }, + { + "word": "Augenmass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judgment;sense of proportion", + "romanization": "Augenmass", + "example_sentence_native": "Man braucht Augenmass, um diese Situation richtig einzuschätzen.", + "example_sentence_english": "One needs good judgment to assess this situation correctly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25271 + }, + { + "word": "Ausländerbehörde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immigration office;foreigners' authority", + "romanization": "Ausländerbehörde", + "example_sentence_native": "Er musste zur Ausländerbehörde, um seine Aufenthaltserlaubnis zu verlängern.", + "example_sentence_english": "He had to go to the immigration office to extend his residence permit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25272 + }, + { + "word": "austeilen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distribute;to deal out", + "romanization": "austeilen", + "example_sentence_native": "Der Lehrer begann, die Arbeitsblätter auszuteilen.", + "example_sentence_english": "The teacher began to distribute the worksheets.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "teilen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25273 + }, + { + "word": "Bastel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "craft (item);handicraft", + "romanization": "Bastel", + "example_sentence_native": "Die Kinder zeigten stolz ihre Bastel.", + "example_sentence_english": "The children proudly showed their craft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25275 + }, + { + "word": "Baufirma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction company", + "romanization": "Baufirma", + "example_sentence_native": "Eine neue Baufirma errichtet das Gebäude.", + "example_sentence_english": "A new construction company is building the edifice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25276 + }, + { + "word": "Bauform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "design;construction type;form factor", + "romanization": "Bauform", + "example_sentence_native": "Die Bauform des neuen Autos ist sehr aerodynamisch.", + "example_sentence_english": "The design of the new car is very aerodynamic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25277 + }, + { + "word": "Baustoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building material", + "romanization": "Baustoff", + "example_sentence_native": "Beton ist ein wichtiger Baustoff.", + "example_sentence_english": "Concrete is an important building material.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25278 + }, + { + "word": "behüten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to protect;to guard", + "romanization": "behüten", + "example_sentence_native": "Sie muss ihre Kinder vor Gefahren behüten.", + "example_sentence_english": "She must protect her children from dangers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25280 + }, + { + "word": "beirren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse;to mislead", + "romanization": "beirren", + "example_sentence_native": "Lass dich nicht von Gerüchten beirren.", + "example_sentence_english": "Don't let rumors confuse you.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25281 + }, + { + "word": "bejahen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affirm;to say yes to", + "romanization": "bejahen", + "example_sentence_native": "Er bejahte die Frage ohne Zögern.", + "example_sentence_english": "He affirmed the question without hesitation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25282 + }, + { + "word": "belagern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to besiege", + "romanization": "belagern", + "example_sentence_native": "Die Truppen begannen, die Stadt zu belagern.", + "example_sentence_english": "The troops began to besiege the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25283 + }, + { + "word": "Beschlagnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seizure;confiscation", + "romanization": "Beschlagnahme", + "example_sentence_native": "Die Beschlagnahme der Waren erfolgte ohne Vorwarnung.", + "example_sentence_english": "The seizure of the goods occurred without warning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25285 + }, + { + "word": "Besoldung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "salary (for public servants)", + "romanization": "Besoldung", + "example_sentence_native": "Die Besoldung der Beamten wurde angepasst.", + "example_sentence_english": "The salary of the civil servants was adjusted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25286 + }, + { + "word": "Bewunderer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admirer", + "romanization": "Bewunderer", + "example_sentence_native": "Sie hat viele Bewunderer.", + "example_sentence_english": "She has many admirers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25288 + }, + { + "word": "Blickkontakt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eye contact", + "romanization": "Blickkontakt", + "example_sentence_native": "Es ist wichtig, Blickkontakt zu halten.", + "example_sentence_english": "It is important to maintain eye contact.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25294 + }, + { + "word": "Bronzezeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Bronze Age", + "romanization": "Bronzezeit", + "example_sentence_native": "Die Bronzezeit war eine wichtige Epoche.", + "example_sentence_english": "The Bronze Age was an important epoch.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25298 + }, + { + "word": "Bundeskriminalamt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Federal Criminal Police Office (Germany)", + "romanization": "Bundeskriminalamt", + "example_sentence_native": "Das Bundeskriminalamt ermittelt in dem Fall.", + "example_sentence_english": "The Federal Criminal Police Office is investigating the case.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25301 + }, + { + "word": "Bundespolitik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "federal politics", + "romanization": "Bundespolitik", + "example_sentence_native": "Die Bundespolitik beschäftigt sich mit wichtigen Themen.", + "example_sentence_english": "Federal politics deals with important issues.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25302 + }, + { + "word": "Chefredakteurin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor-in-chief (female)", + "romanization": "Chefredakteurin", + "example_sentence_native": "Die Chefredakteurin hat den Artikel genehmigt.", + "example_sentence_english": "The editor-in-chief approved the article.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25306 + }, + { + "word": "choral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choral", + "romanization": "choral", + "example_sentence_native": "Sie sangen ein schönes Chorallied.", + "example_sentence_english": "They sang a beautiful choral song.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25308 + }, + { + "word": "Claim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claim (e.g.;marketing claim;assertion)", + "romanization": "Claim", + "example_sentence_native": "Der Werbespot macht einen großen Claim.", + "example_sentence_english": "The commercial makes a big claim.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25309 + }, + { + "word": "Collier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "necklace", + "romanization": "Collier", + "example_sentence_native": "Sie trug ein wunderschönes Collier.", + "example_sentence_english": "She wore a beautiful necklace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25311 + }, + { + "word": "Cornflakes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cornflakes", + "romanization": "Cornflakes", + "example_sentence_native": "Ich esse Cornflakes zum Frühstück.", + "example_sentence_english": "I eat cornflakes for breakfast.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25315 + }, + { + "word": "Dampfmaschine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steam engine", + "romanization": "Dampfmaschine", + "example_sentence_native": "Die Dampfmaschine revolutionierte die Industrie.", + "example_sentence_english": "The steam engine revolutionized industry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25322 + }, + { + "word": "Debütalbum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debut album", + "romanization": "Debütalbum", + "example_sentence_native": "Ihr Debütalbum war ein großer Erfolg.", + "example_sentence_english": "Her debut album was a great success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25323 + }, + { + "word": "Delivery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery", + "romanization": "Delivery", + "example_sentence_native": "Die Delivery des Essens dauerte länger als erwartet.", + "example_sentence_english": "The food delivery took longer than expected.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25324 + }, + { + "word": "Despot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despot", + "romanization": "Despot", + "example_sentence_native": "Der Despot regierte mit eiserner Hand.", + "example_sentence_english": "The despot ruled with an iron fist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25326 + }, + { + "word": "Detonation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detonation", + "romanization": "Detonation", + "example_sentence_native": "Die Detonation war weithin zu hören.", + "example_sentence_english": "The detonation was heard far and wide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25328 + }, + { + "word": "dienlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "useful;helpful", + "romanization": "dienlich", + "example_sentence_native": "Diese Information ist sehr dienlich für unsere Arbeit.", + "example_sentence_english": "This information is very useful for our work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25329 + }, + { + "word": "Discount", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discount", + "romanization": "Discount", + "example_sentence_native": "Es gibt einen großen Discount auf diese Produkte.", + "example_sentence_english": "There is a big discount on these products.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25330 + }, + { + "word": "Diskussionsrunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discussion round;panel discussion", + "romanization": "Diskussionsrunde", + "example_sentence_native": "Die Diskussionsrunde dauerte zwei Stunden.", + "example_sentence_english": "The discussion round lasted two hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25331 + }, + { + "word": "Doppelzimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "double room", + "romanization": "Doppelzimmer", + "example_sentence_native": "Wir haben ein Doppelzimmer im Hotel gebucht.", + "example_sentence_english": "We booked a double room at the hotel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25333 + }, + { + "word": "Drops", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lozenge;cough drop;candy", + "romanization": "Drops", + "example_sentence_native": "Ich habe Halsschmerzen und brauche ein paar Drops.", + "example_sentence_english": "I have a sore throat and need some cough drops.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25334 + }, + { + "word": "Durchreise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transit;passage through", + "romanization": "Durchreise", + "example_sentence_native": "Wir sind nur auf der Durchreise und bleiben eine Nacht.", + "example_sentence_english": "We are just passing through and staying one night.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25335 + }, + { + "word": "Dämmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulation;damping", + "romanization": "Dämmung", + "example_sentence_native": "Die neue Dämmung spart Heizkosten.", + "example_sentence_english": "The new insulation saves heating costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25336 + }, + { + "word": "Eckpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corner point;key point", + "romanization": "Eckpunkt", + "example_sentence_native": "Das ist ein wichtiger Eckpunkt unserer Strategie.", + "example_sentence_english": "This is an important key point of our strategy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25337 + }, + { + "word": "Einflussfaktor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influencing factor", + "romanization": "Einflussfaktor", + "example_sentence_native": "Der Einflussfaktor auf das Ergebnis war gering.", + "example_sentence_english": "The influencing factor on the result was small.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25340 + }, + { + "word": "eingespannt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "busy;tied up", + "romanization": "eingespannt", + "example_sentence_native": "Er ist momentan sehr eingespannt mit seiner Arbeit.", + "example_sentence_english": "He is currently very busy with his work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25341 + }, + { + "word": "einparken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to park (a car)", + "romanization": "einparken", + "example_sentence_native": "Kannst du mir helfen, das Auto einzuparken?", + "example_sentence_english": "Can you help me park the car?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "parken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25342 + }, + { + "word": "empfunden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "felt;perceived", + "romanization": "empfunden", + "example_sentence_native": "Die Situation wurde als sehr unangenehm empfunden.", + "example_sentence_english": "The situation was perceived as very unpleasant.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25345 + }, + { + "word": "entkräften", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to refute;to weaken", + "romanization": "entkräften", + "example_sentence_native": "Er versuchte, die Argumente seines Gegners zu entkräften.", + "example_sentence_english": "He tried to refute his opponent's arguments.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25346 + }, + { + "word": "entwickelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "developed", + "romanization": "entwickelt", + "example_sentence_native": "Deutschland ist ein hoch entwickeltes Land.", + "example_sentence_english": "Germany is a highly developed country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25347 + }, + { + "word": "Erinnerungskultur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "culture of remembrance", + "romanization": "Erinnerungskultur", + "example_sentence_native": "Die Erinnerungskultur spielt eine wichtige Rolle in der deutschen Gesellschaft.", + "example_sentence_english": "The culture of remembrance plays an important role in German society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25348 + }, + { + "word": "ermuntern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to encourage;to cheer up", + "romanization": "ermuntern", + "example_sentence_native": "Sie versuchte, ihn zu ermuntern, weiterzumachen.", + "example_sentence_english": "She tried to encourage him to continue.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25349 + }, + { + "word": "Erniedrigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humiliation;degradation", + "romanization": "Erniedrigung", + "example_sentence_native": "Er empfand die Behandlung als eine große Erniedrigung.", + "example_sentence_english": "He felt the treatment was a great humiliation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25350 + }, + { + "word": "ersehnt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longed-for;yearned-for", + "romanization": "ersehnt", + "example_sentence_native": "Der ersehnte Urlaub stand endlich vor der Tür.", + "example_sentence_english": "The longed-for vacation was finally around the corner.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25351 + }, + { + "word": "Erzfeind", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arch-enemy", + "romanization": "Erzfeind", + "example_sentence_native": "Der Held traf auf seinen Erzfeind in der letzten Schlacht.", + "example_sentence_english": "The hero met his arch-enemy in the final battle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25352 + }, + { + "word": "Fabel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fable;myth", + "romanization": "Fabel", + "example_sentence_native": "Die Fabel vom Fuchs und den Trauben ist sehr bekannt.", + "example_sentence_english": "The fable of the fox and the grapes is very well known.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25353 + }, + { + "word": "Fallzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "number of cases;case count", + "romanization": "Fallzahl", + "example_sentence_native": "Die Fallzahl der Infektionen steigt täglich.", + "example_sentence_english": "The number of cases of infections is increasing daily.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25354 + }, + { + "word": "Fehlermeldung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "error message", + "romanization": "Fehlermeldung", + "example_sentence_native": "Der Computer zeigte eine Fehlermeldung an.", + "example_sentence_english": "The computer displayed an error message.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25357 + }, + { + "word": "Feindseligkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hostility;animosity", + "romanization": "Feindseligkeit", + "example_sentence_native": "Zwischen den beiden Gruppen herrschte große Feindseligkeit.", + "example_sentence_english": "There was great hostility between the two groups.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25358 + }, + { + "word": "Filmmaterial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "film footage", + "romanization": "Filmmaterial", + "example_sentence_native": "Das Filmmaterial wurde im Studio geschnitten.", + "example_sentence_english": "The film footage was edited in the studio.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25361 + }, + { + "word": "Flachland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flatland", + "romanization": "Flachland", + "example_sentence_native": "Die Niederlande sind bekannt für ihr Flachland.", + "example_sentence_english": "The Netherlands are known for their flatland.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25362 + }, + { + "word": "Flitterwoche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honeymoon", + "romanization": "Flitterwoche", + "example_sentence_native": "Sie planen ihre Flitterwochen in Italien.", + "example_sentence_english": "They are planning their honeymoon in Italy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25363 + }, + { + "word": "flugs", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quickly", + "romanization": "flugs", + "example_sentence_native": "Er war flugs verschwunden.", + "example_sentence_english": "He was swiftly gone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25365 + }, + { + "word": "flüchtend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleeing", + "romanization": "flüchtend", + "example_sentence_native": "Die flüchtenden Tiere suchten Schutz.", + "example_sentence_english": "The fleeing animals sought shelter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25366 + }, + { + "word": "Flüchtlingskind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee child", + "romanization": "Flüchtlingskind", + "example_sentence_native": "Jedes Flüchtlingskind verdient eine Chance auf Bildung.", + "example_sentence_english": "Every refugee child deserves a chance at education.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25367 + }, + { + "word": "Forelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trout", + "romanization": "Forelle", + "example_sentence_native": "Die Forelle schwamm im klaren Bach.", + "example_sentence_english": "The trout swam in the clear stream.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25368 + }, + { + "word": "Framing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "framing", + "romanization": "Framing", + "example_sentence_native": "Das Framing der Nachrichten beeinflusst die öffentliche Meinung.", + "example_sentence_english": "The framing of the news influences public opinion.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25369 + }, + { + "word": "Frischkäse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream cheese", + "romanization": "Frischkäse", + "example_sentence_native": "Ich esse gerne Brot mit Frischkäse.", + "example_sentence_english": "I like to eat bread with cream cheese.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25370 + }, + { + "word": "Frisör", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairdresser", + "romanization": "Frisör", + "example_sentence_native": "Ich gehe morgen zum Frisör.", + "example_sentence_english": "I'm going to the hairdresser tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25371 + }, + { + "word": "funky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funky", + "romanization": "funky", + "example_sentence_native": "Das ist ein sehr funky Song.", + "example_sentence_english": "That's a very funky song.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25372 + }, + { + "word": "Fussballplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football field", + "romanization": "Fussballplatz", + "example_sentence_native": "Die Kinder spielen auf dem Fussballplatz.", + "example_sentence_english": "The children are playing on the football field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25373 + }, + { + "word": "Fussballstadion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "football stadium", + "romanization": "Fussballstadion", + "example_sentence_native": "Das Fussballstadion war ausverkauft.", + "example_sentence_english": "The football stadium was sold out.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25374 + }, + { + "word": "Förderschule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special needs school", + "romanization": "Förderschule", + "example_sentence_native": "Er besucht eine Förderschule.", + "example_sentence_english": "He attends a special needs school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25375 + }, + { + "word": "Galopp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallop", + "romanization": "Galopp", + "example_sentence_native": "Das Pferd rannte im vollen Galopp über das Feld.", + "example_sentence_english": "The horse ran across the field at a full gallop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25377 + }, + { + "word": "Gefahrenabwehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hazard prevention", + "romanization": "Gefahrenabwehr", + "example_sentence_native": "Die Gefahrenabwehr ist eine wichtige Aufgabe der Polizei.", + "example_sentence_english": "Hazard prevention is an important task of the police.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25379 + }, + { + "word": "Gegenrichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposite direction", + "romanization": "Gegenrichtung", + "example_sentence_native": "Er fuhr in die Gegenrichtung.", + "example_sentence_english": "He drove in the opposite direction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25380 + }, + { + "word": "Geilheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lust;lewdness", + "romanization": "Geilheit", + "example_sentence_native": "Seine Geilheit war offensichtlich.", + "example_sentence_english": "His lust was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25381 + }, + { + "word": "Generalmajor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "major general", + "romanization": "Generalmajor", + "example_sentence_native": "Der Generalmajor inspizierte die Truppen.", + "example_sentence_english": "The major general inspected the troops.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25382 + }, + { + "word": "Generalsekretärin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretary general (female)", + "romanization": "Generalsekretärin", + "example_sentence_native": "Die Generalsekretärin hielt eine Rede.", + "example_sentence_english": "The secretary general gave a speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25383 + }, + { + "word": "pachten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lease;to rent (land;property)", + "romanization": "pachten", + "example_sentence_native": "Sie wollen das Land pachten.", + "example_sentence_english": "They want to lease the land.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25385 + }, + { + "word": "Gesellschaftskritik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social criticism", + "romanization": "Gesellschaftskritik", + "example_sentence_native": "Seine Kunst ist voller Gesellschaftskritik.", + "example_sentence_english": "His art is full of social criticism.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25386 + }, + { + "word": "Gesetzeslage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal situation;legal position", + "romanization": "Gesetzeslage", + "example_sentence_native": "Die Gesetzeslage ist kompliziert.", + "example_sentence_english": "The legal situation is complicated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25387 + }, + { + "word": "Gesundheitsförderung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "health promotion", + "romanization": "Gesundheitsförderung", + "example_sentence_native": "Das Programm dient der Gesundheitsförderung.", + "example_sentence_english": "The program serves health promotion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25388 + }, + { + "word": "Gesundheitsministerium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ministry of Health", + "romanization": "Gesundheitsministerium", + "example_sentence_native": "Das Gesundheitsministerium hat neue Richtlinien erlassen.", + "example_sentence_english": "The Ministry of Health has issued new guidelines.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25389 + }, + { + "word": "gewagt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daring;risky", + "romanization": "gewagt", + "example_sentence_native": "Das war ein gewagter Schritt.", + "example_sentence_english": "That was a daring step.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25390 + }, + { + "word": "glasklar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crystal clear", + "romanization": "glasklar", + "example_sentence_native": "Seine Erklärung war glasklar.", + "example_sentence_english": "His explanation was crystal clear.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25394 + }, + { + "word": "Gleichnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parable;analogy", + "romanization": "Gleichnis", + "example_sentence_native": "Er erzählte ein Gleichnis.", + "example_sentence_english": "He told a parable.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25395 + }, + { + "word": "Grenzschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "border protection", + "romanization": "Grenzschutz", + "example_sentence_native": "Der Grenzschutz wurde verstärkt.", + "example_sentence_english": "Border protection was strengthened.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25397 + }, + { + "word": "Halbmond", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half moon;crescent", + "romanization": "Halbmond", + "example_sentence_native": "Am Himmel stand ein schmaler Halbmond.", + "example_sentence_english": "A narrow crescent moon stood in the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25402 + }, + { + "word": "Handlungsfähigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capacity to act;legal capacity", + "romanization": "Handlungsfähigkeit", + "example_sentence_native": "Die Handlungsfähigkeit einer Person kann eingeschränkt sein.", + "example_sentence_english": "A person's capacity to act can be limited.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25403 + }, + { + "word": "Handzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hand signal;sign with the hand", + "romanization": "Handzeichen", + "example_sentence_native": "Er gab ein Handzeichen, um anzuhalten.", + "example_sentence_english": "He gave a hand signal to stop.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25404 + }, + { + "word": "Hardliner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hardliner", + "romanization": "Hardliner", + "example_sentence_native": "Die Verhandlungen wurden durch die Hardliner erschwert.", + "example_sentence_english": "The negotiations were complicated by the hardliners.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25406 + }, + { + "word": "Hattrick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hat-trick", + "romanization": "Hattrick", + "example_sentence_native": "Der Stürmer erzielte einen Hattrick im Spiel.", + "example_sentence_english": "The striker scored a hat-trick in the game.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25407 + }, + { + "word": "Hauptgeschäftsführer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "CEO;managing director", + "romanization": "Hauptgeschäftsführer", + "example_sentence_native": "Der Hauptgeschäftsführer präsentierte die Jahresbilanz.", + "example_sentence_english": "The CEO presented the annual balance sheet.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25408 + }, + { + "word": "Headhunter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headhunter", + "romanization": "Headhunter", + "example_sentence_native": "Ein Headhunter kontaktierte ihn wegen einer neuen Position.", + "example_sentence_english": "A headhunter contacted him about a new position.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25409 + }, + { + "word": "Heilkunde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medicine;healing arts", + "romanization": "Heilkunde", + "example_sentence_native": "Die traditionelle Heilkunde hat eine lange Geschichte.", + "example_sentence_english": "Traditional medicine has a long history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25411 + }, + { + "word": "Heimatschutz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homeland security;home protection", + "romanization": "Heimatschutz", + "example_sentence_native": "Der Heimatschutz ist eine wichtige Aufgabe des Staates.", + "example_sentence_english": "Homeland security is an important task of the state.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25412 + }, + { + "word": "Helix", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "helix", + "romanization": "Helix", + "example_sentence_native": "Die DNA hat eine Doppelhelix-Struktur.", + "example_sentence_english": "DNA has a double helix structure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25413 + }, + { + "word": "herankommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get close to;to approach", + "romanization": "herankommen", + "example_sentence_native": "Man konnte nicht an das Tier herankommen.", + "example_sentence_english": "One could not get close to the animal.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heran", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25415 + }, + { + "word": "Herzlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cordiality;warmth;heartiness", + "romanization": "Herzlichkeit", + "example_sentence_native": "Sie wurde mit großer Herzlichkeit empfangen.", + "example_sentence_english": "She was received with great cordiality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25416 + }, + { + "word": "Hexenjagd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "witch hunt", + "romanization": "Hexenjagd", + "example_sentence_native": "Die Anschuldigungen führten zu einer regelrechten Hexenjagd.", + "example_sentence_english": "The accusations led to a veritable witch hunt.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25417 + }, + { + "word": "Hifi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hi-fi", + "romanization": "Hifi", + "example_sentence_native": "Er hat eine neue Hifi-Anlage gekauft.", + "example_sentence_english": "He bought a new hi-fi system.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25418 + }, + { + "word": "Hinterrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rear wheel", + "romanization": "Hinterrad", + "example_sentence_native": "Das Hinterrad des Fahrrads hatte einen Platten.", + "example_sentence_english": "The rear wheel of the bicycle had a flat tire.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25419 + }, + { + "word": "Hinterteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rear part", + "romanization": "Hinterteil", + "example_sentence_native": "Das Hinterteil des Autos war beschädigt.", + "example_sentence_english": "The rear part of the car was damaged.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25420 + }, + { + "word": "Hinwendung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedication", + "romanization": "Hinwendung", + "example_sentence_native": "Seine Hinwendung zur Kunst war offensichtlich.", + "example_sentence_english": "His dedication to art was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25421 + }, + { + "word": "Hochbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building construction", + "romanization": "Hochbau", + "example_sentence_native": "Er studiert Hochbau an der Universität.", + "example_sentence_english": "He studies building construction at the university.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25424 + }, + { + "word": "honorieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to honor", + "romanization": "honorieren", + "example_sentence_native": "Wir möchten Ihre Bemühungen honorieren.", + "example_sentence_english": "We would like to honor your efforts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25425 + }, + { + "word": "Illustrator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustrator", + "romanization": "Illustrator", + "example_sentence_native": "Der Illustrator hat das Buch wunderschön gestaltet.", + "example_sentence_english": "The illustrator designed the book beautifully.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25428 + }, + { + "word": "Imagination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imagination", + "romanization": "Imagination", + "example_sentence_native": "Kinder haben oft eine lebhafte Imagination.", + "example_sentence_english": "Children often have a vivid imagination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25429 + }, + { + "word": "importiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imported", + "romanization": "importiert", + "example_sentence_native": "Diese Waren sind importiert.", + "example_sentence_english": "These goods are imported.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25430 + }, + { + "word": "Induktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "induction", + "romanization": "Induktion", + "example_sentence_native": "Das Prinzip der elektromagnetischen Induktion ist wichtig in der Physik.", + "example_sentence_english": "The principle of electromagnetic induction is important in physics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25431 + }, + { + "word": "Industrieland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrialized country", + "romanization": "Industrieland", + "example_sentence_native": "Deutschland ist ein Industrieland.", + "example_sentence_english": "Germany is an industrialized country.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25432 + }, + { + "word": "Industrienation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrial nation", + "romanization": "Industrienation", + "example_sentence_native": "Japan ist eine führende Industrienation.", + "example_sentence_english": "Japan is a leading industrial nation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25433 + }, + { + "word": "inkludieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to include", + "romanization": "inkludieren", + "example_sentence_native": "Der Preis inkludiert die Mehrwertsteuer.", + "example_sentence_english": "The price includes VAT.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25434 + }, + { + "word": "Instrumentalisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instrumentalization", + "romanization": "Instrumentalisierung", + "example_sentence_native": "Die Instrumentalisierung von Daten ist ein ethisches Problem.", + "example_sentence_english": "The instrumentalization of data is an ethical problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25435 + }, + { + "word": "Invasor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invader", + "romanization": "Invasor", + "example_sentence_native": "Die Invasoren wurden zurückgeschlagen.", + "example_sentence_english": "The invaders were repelled.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25437 + }, + { + "word": "jahrhundertelang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for centuries", + "romanization": "jahrhundertelang", + "example_sentence_native": "Diese Tradition besteht schon jahrhundertelang.", + "example_sentence_english": "This tradition has existed for centuries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25439 + }, + { + "word": "Jugendabteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth department", + "romanization": "Jugendabteilung", + "example_sentence_native": "Die Jugendabteilung des Vereins ist sehr aktiv.", + "example_sentence_english": "The youth department of the club is very active.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25440 + }, + { + "word": "Kanister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canister", + "romanization": "Kanister", + "example_sentence_native": "Er füllte den Kanister mit Benzin.", + "example_sentence_english": "He filled the canister with gasoline.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25442 + }, + { + "word": "kapern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hijack", + "romanization": "kapern", + "example_sentence_native": "Die Piraten versuchten, das Schiff zu kapern.", + "example_sentence_english": "The pirates tried to hijack the ship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25443 + }, + { + "word": "Kaschmir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cashmere", + "romanization": "Kaschmir", + "example_sentence_native": "Sie trug einen Schal aus Kaschmir.", + "example_sentence_english": "She wore a cashmere scarf.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25445 + }, + { + "word": "Klaue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "claw", + "romanization": "Klaue", + "example_sentence_native": "Der Adler hat scharfe Klauen.", + "example_sentence_english": "The eagle has sharp talons.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25447 + }, + { + "word": "Kleinbauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small farmer", + "romanization": "Kleinbauer", + "example_sentence_native": "Der Kleinbauer bewirtschaftet ein kleines Stück Land.", + "example_sentence_english": "The small farmer cultivates a small piece of land.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25448 + }, + { + "word": "Komplott", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot", + "romanization": "Komplott", + "example_sentence_native": "Sie deckten ein Komplott gegen den König auf.", + "example_sentence_english": "They uncovered a plot against the king.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25450 + }, + { + "word": "Kondensator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capacitor", + "romanization": "Kondensator", + "example_sentence_native": "Der Kondensator speichert elektrische Energie.", + "example_sentence_english": "The capacitor stores electrical energy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25451 + }, + { + "word": "Kraftfahrer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "driver", + "romanization": "Kraftfahrer", + "example_sentence_native": "Der Kraftfahrer lieferte die Waren pünktlich.", + "example_sentence_english": "The driver delivered the goods on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25453 + }, + { + "word": "krankhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morbid", + "romanization": "krankhaft", + "example_sentence_native": "Er hat eine krankhafte Angst vor Spinnen.", + "example_sentence_english": "He has a pathological fear of spiders.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25454 + }, + { + "word": "Kunstakademie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art academy", + "romanization": "Kunstakademie", + "example_sentence_native": "Sie studiert an der Kunstakademie in Berlin.", + "example_sentence_english": "She studies at the art academy in Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25455 + }, + { + "word": "Kunstschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "art school", + "romanization": "Kunstschule", + "example_sentence_native": "Mein Bruder besucht eine Kunstschule.", + "example_sentence_english": "My brother attends an art school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25456 + }, + { + "word": "Kursziel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "target price", + "romanization": "Kursziel", + "example_sentence_native": "Analysten haben das Kursziel für die Aktie erhöht.", + "example_sentence_english": "Analysts have raised the target price for the stock.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25457 + }, + { + "word": "Landesmeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state champion", + "romanization": "Landesmeister", + "example_sentence_native": "Er wurde Landesmeister im Schwimmen.", + "example_sentence_english": "He became state champion in swimming.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25459 + }, + { + "word": "Landesrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state councilor", + "romanization": "Landesrat", + "example_sentence_native": "Der Landesrat ist für die regionale Entwicklung zuständig.", + "example_sentence_english": "The state councilor is responsible for regional development.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25460 + }, + { + "word": "Lebensabend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twilight years", + "romanization": "Lebensabend", + "example_sentence_native": "Sie verbrachte ihren Lebensabend in Ruhe auf dem Land.", + "example_sentence_english": "She spent her twilight years peacefully in the countryside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25461 + }, + { + "word": "Lebensgrundlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "livelihood", + "romanization": "Lebensgrundlage", + "example_sentence_native": "Die Landwirtschaft ist die Lebensgrundlage vieler Familien in dieser Region.", + "example_sentence_english": "Agriculture is the livelihood of many families in this region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25462 + }, + { + "word": "Legat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legacy", + "romanization": "Legat", + "example_sentence_native": "Das Legat des Großvaters ermöglichte den Bau der Bibliothek.", + "example_sentence_english": "The grandfather's legacy enabled the construction of the library.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25463 + }, + { + "word": "Leitmotiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leitmotif", + "romanization": "Leitmotiv", + "example_sentence_native": "Das Leitmotiv der Oper war die Liebe.", + "example_sentence_english": "The leitmotif of the opera was love.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25464 + }, + { + "word": "Lerner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "learner", + "romanization": "Lerner", + "example_sentence_native": "Die Lerner übten die neuen Vokabeln.", + "example_sentence_english": "The learners practiced the new vocabulary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25465 + }, + { + "word": "liebenswürdig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amiable", + "romanization": "liebenswürdig", + "example_sentence_native": "Sie ist eine sehr liebenswürdige Person.", + "example_sentence_english": "She is a very amiable person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25466 + }, + { + "word": "Likör", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liqueur", + "romanization": "Likör", + "example_sentence_native": "Nach dem Essen tranken sie einen süßen Likör.", + "example_sentence_english": "After dinner, they drank a sweet liqueur.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25467 + }, + { + "word": "Losung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slogan", + "romanization": "Losung", + "example_sentence_native": "Die Losung der Revolution war \"Freiheit, Gleichheit, Brüderlichkeit\".", + "example_sentence_english": "The slogan of the revolution was \"Liberty, Equality, Fraternity\".", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25473 + }, + { + "word": "lösbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solvable", + "romanization": "lösbar", + "example_sentence_native": "Das Problem ist lösbar.", + "example_sentence_english": "The problem is solvable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25475 + }, + { + "word": "Mahnwache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigil", + "romanization": "Mahnwache", + "example_sentence_native": "Die Aktivisten hielten eine Mahnwache vor dem Parlament ab.", + "example_sentence_english": "The activists held a vigil in front of the parliament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25477 + }, + { + "word": "Marder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marten", + "romanization": "Marder", + "example_sentence_native": "Ein Marder hat die Kabel im Auto angeknabbert.", + "example_sentence_english": "A marten gnawed on the cables in the car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25478 + }, + { + "word": "Marktforschung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market research", + "romanization": "Marktforschung", + "example_sentence_native": "Das Unternehmen investiert viel in Marktforschung.", + "example_sentence_english": "The company invests a lot in market research.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25479 + }, + { + "word": "marxistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxist", + "romanization": "marxistisch", + "example_sentence_native": "Er hat eine marxistische Weltanschauung.", + "example_sentence_english": "He has a Marxist worldview.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25480 + }, + { + "word": "Masseneinwanderung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mass immigration", + "romanization": "Masseneinwanderung", + "example_sentence_native": "Die Masseneinwanderung ist ein kontroverses Thema.", + "example_sentence_english": "Mass immigration is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25481 + }, + { + "word": "Medaillon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locket", + "romanization": "Medaillon", + "example_sentence_native": "Sie trug ein kleines Medaillon um ihren Hals.", + "example_sentence_english": "She wore a small locket around her neck.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25482 + }, + { + "word": "Metrik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metric", + "romanization": "Metrik", + "example_sentence_native": "Die Metrik eines Gedichts ist wichtig für seinen Rhythmus.", + "example_sentence_english": "The metric of a poem is important for its rhythm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25485 + }, + { + "word": "metropolitan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolitan", + "romanization": "metropolitan", + "example_sentence_native": "Das ist ein metropolitaner Lebensstil.", + "example_sentence_english": "That is a metropolitan lifestyle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25486 + }, + { + "word": "missverständlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misleading", + "romanization": "missverständlich", + "example_sentence_native": "Seine Aussage war missverständlich.", + "example_sentence_english": "His statement was misleading.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25488 + }, + { + "word": "mitbestimmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have a say", + "romanization": "mitbestimmen", + "example_sentence_native": "Die Mitarbeiter wollen bei wichtigen Entscheidungen mitbestimmen.", + "example_sentence_english": "The employees want to have a say in important decisions.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "bestimmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25489 + }, + { + "word": "mitgebracht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brought along", + "romanization": "mitgebracht", + "example_sentence_native": "Das mitgebrachte Essen war sehr lecker.", + "example_sentence_english": "The food brought along was very delicious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25490 + }, + { + "word": "mitreissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enthrall", + "romanization": "mitreissen", + "example_sentence_native": "Seine Begeisterung konnte das Publikum mitreissen.", + "example_sentence_english": "His enthusiasm could enthrall the audience.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "reissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25491 + }, + { + "word": "Mitverantwortung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "co-responsibility", + "romanization": "Mitverantwortung", + "example_sentence_native": "Jeder hat eine Mitverantwortung für den Umweltschutz.", + "example_sentence_english": "Everyone has a co-responsibility for environmental protection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25492 + }, + { + "word": "modellieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to model", + "romanization": "modellieren", + "example_sentence_native": "Der Künstler modelliert eine Figur aus Ton.", + "example_sentence_english": "The artist models a figure from clay.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25493 + }, + { + "word": "modifiziert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modified", + "romanization": "modifiziert", + "example_sentence_native": "Das modifizierte Programm läuft jetzt stabiler.", + "example_sentence_english": "The modified program now runs more stably.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25494 + }, + { + "word": "modisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fashionable", + "romanization": "modisch", + "example_sentence_native": "Sie trägt immer sehr modische Kleidung.", + "example_sentence_english": "She always wears very fashionable clothes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25495 + }, + { + "word": "Mozzarella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mozzarella", + "romanization": "Mozzarella", + "example_sentence_native": "Ich mache einen Salat mit Tomaten und Mozzarella.", + "example_sentence_english": "I am making a salad with tomatoes and mozzarella.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25498 + }, + { + "word": "Nabel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "navel;belly button", + "romanization": "Nabel", + "example_sentence_native": "Der Nabel ist der Punkt, an dem die Nabelschnur befestigt war.", + "example_sentence_english": "The navel is the point where the umbilical cord was attached.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25502 + }, + { + "word": "Nervenzusammenbruch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nervous breakdown", + "romanization": "Nervenzusammenbruch", + "example_sentence_native": "Nach dem Stress erlitt sie einen Nervenzusammenbruch.", + "example_sentence_english": "After the stress, she suffered a nervous breakdown.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25504 + }, + { + "word": "notdürftig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "makeshift;rudimentary", + "romanization": "notdürftig", + "example_sentence_native": "Sie bauten eine notdürftige Unterkunft.", + "example_sentence_english": "They built a makeshift shelter.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25507 + }, + { + "word": "numerisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "numerical", + "romanization": "numerisch", + "example_sentence_native": "Die numerische Analyse ist komplex.", + "example_sentence_english": "The numerical analysis is complex.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25508 + }, + { + "word": "Obsession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsession", + "romanization": "Obsession", + "example_sentence_native": "Er entwickelte eine Obsession für alte Münzen.", + "example_sentence_english": "He developed an obsession for old coins.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25509 + }, + { + "word": "Outsourcing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outsourcing", + "romanization": "Outsourcing", + "example_sentence_native": "Das Unternehmen plant, das Outsourcing zu reduzieren.", + "example_sentence_english": "The company plans to reduce outsourcing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25513 + }, + { + "word": "paarmal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a couple of times;a few times", + "romanization": "paarmal", + "example_sentence_native": "Ich habe ihn schon paarmal getroffen.", + "example_sentence_english": "I have met him a couple of times already.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25514 + }, + { + "word": "Parteispitze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "party leadership;party executive", + "romanization": "Parteispitze", + "example_sentence_native": "Die Parteispitze traf sich zur Krisensitzung.", + "example_sentence_english": "The party leadership met for the crisis meeting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25517 + }, + { + "word": "Persönlichkeitsrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right of personality", + "romanization": "Persönlichkeitsrecht", + "example_sentence_native": "Das Persönlichkeitsrecht schützt die Identität einer Person.", + "example_sentence_english": "The right of personality protects a person's identity.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25521 + }, + { + "word": "Planwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planned economy", + "romanization": "Planwirtschaft", + "example_sentence_native": "In einer Planwirtschaft kontrolliert der Staat die Produktion.", + "example_sentence_english": "In a planned economy, the state controls production.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25523 + }, + { + "word": "Polizeisprecher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police spokesperson", + "romanization": "Polizeisprecher", + "example_sentence_native": "Der Polizeisprecher gab eine Erklärung ab.", + "example_sentence_english": "The police spokesperson made a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25524 + }, + { + "word": "porträtieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to portray", + "romanization": "porträtieren", + "example_sentence_native": "Der Künstler porträtiert oft Menschen in ihrem Alltag.", + "example_sentence_english": "The artist often portrays people in their daily lives.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25526 + }, + { + "word": "posieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pose", + "romanization": "posieren", + "example_sentence_native": "Das Model musste lange für das Foto posieren.", + "example_sentence_english": "The model had to pose for a long time for the photo.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25527 + }, + { + "word": "Premierministerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prime minister (female)", + "romanization": "Premierministerin", + "example_sentence_native": "Die Premierministerin hielt eine wichtige Rede.", + "example_sentence_english": "The prime minister gave an important speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25528 + }, + { + "word": "Privatrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "private law", + "romanization": "Privatrecht", + "example_sentence_native": "Das Privatrecht regelt die Beziehungen zwischen Bürgern.", + "example_sentence_english": "Private law regulates the relationships between citizens.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25529 + }, + { + "word": "Produktionsmittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "means of production", + "romanization": "Produktionsmittel", + "example_sentence_native": "Die Produktionsmittel wurden verstaatlicht.", + "example_sentence_english": "The means of production were nationalized.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25530 + }, + { + "word": "prägend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formative", + "romanization": "prägend", + "example_sentence_native": "Diese Erfahrung war prägend für seine Entwicklung.", + "example_sentence_english": "This experience was formative for his development.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25531 + }, + { + "word": "Rave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rave (party)", + "romanization": "Rave", + "example_sentence_native": "Sie gingen am Wochenende zu einem Rave.", + "example_sentence_english": "They went to a rave on the weekend.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25533 + }, + { + "word": "Reaktionszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reaction time", + "romanization": "Reaktionszeit", + "example_sentence_native": "Die Reaktionszeit des Fahrers war sehr schnell.", + "example_sentence_english": "The driver's reaction time was very fast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25535 + }, + { + "word": "Regierungspräsident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "district president", + "romanization": "Regierungspräsident", + "example_sentence_native": "Der Regierungspräsident besuchte die betroffene Region.", + "example_sentence_english": "The district president visited the affected region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25537 + }, + { + "word": "reingehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go in;to enter", + "romanization": "reingehen", + "example_sentence_native": "Wir müssen jetzt reingehen, es wird kalt.", + "example_sentence_english": "We have to go in now, it's getting cold.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rein", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25540 + }, + { + "word": "Reisezeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "travel time;travel season", + "romanization": "Reisezeit", + "example_sentence_native": "Die Reisezeit ist im Sommer am beliebtesten.", + "example_sentence_english": "The travel season is most popular in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25541 + }, + { + "word": "Rettungssanitäter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paramedic;emergency medical technician", + "romanization": "Rettungssanitäter", + "example_sentence_native": "Der Rettungssanitäter leistete Erste Hilfe.", + "example_sentence_english": "The paramedic provided first aid.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25542 + }, + { + "word": "Rheuma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rheumatism", + "romanization": "Rheuma", + "example_sentence_native": "Sie leidet unter Rheuma in den Gelenken.", + "example_sentence_english": "She suffers from rheumatism in her joints.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25543 + }, + { + "word": "Rollator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rollator;walker (with wheels)", + "romanization": "Rollator", + "example_sentence_native": "Der alte Mann benutzt einen Rollator, um sich fortzubewegen.", + "example_sentence_english": "The old man uses a rollator to get around.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25546 + }, + { + "word": "ruhend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resting;dormant;quiescent", + "romanization": "ruhend", + "example_sentence_native": "Der Vulkan ist seit Jahrhunderten ruhend.", + "example_sentence_english": "The volcano has been dormant for centuries.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25549 + }, + { + "word": "Ruhestätte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resting place;grave;burial site", + "romanization": "Ruhestätte", + "example_sentence_native": "Dies ist seine letzte Ruhestätte.", + "example_sentence_english": "This is his final resting place.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25550 + }, + { + "word": "Sakura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cherry blossom (Japanese)", + "romanization": "Sakura", + "example_sentence_native": "Die Sakura-Blüte in Japan ist ein wunderschönes Spektakel.", + "example_sentence_english": "The cherry blossom bloom in Japan is a beautiful spectacle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25551 + }, + { + "word": "Saldo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balance (financial)", + "romanization": "Saldo", + "example_sentence_native": "Bitte überprüfen Sie den Saldo Ihres Kontos.", + "example_sentence_english": "Please check the balance of your account.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25552 + }, + { + "word": "Salto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somersault;flip", + "romanization": "Salto", + "example_sentence_native": "Der Turner machte einen beeindruckenden Salto.", + "example_sentence_english": "The gymnast performed an impressive somersault.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25554 + }, + { + "word": "Schah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Shah (title of the former monarch of Iran)", + "romanization": "Schah", + "example_sentence_native": "Der letzte Schah von Persien wurde 1979 gestürzt.", + "example_sentence_english": "The last Shah of Persia was overthrown in 1979.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25557 + }, + { + "word": "Scheibenwischer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "windshield wiper", + "romanization": "Scheibenwischer", + "example_sentence_native": "Die Scheibenwischer funktionieren bei diesem Regen nicht gut.", + "example_sentence_english": "The windshield wipers don't work well in this rain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25558 + }, + { + "word": "Scherge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "henchman;minion;thug", + "romanization": "Scherge", + "example_sentence_native": "Der Tyrann schickte seine Schergen, um das Dorf zu terrorisieren.", + "example_sentence_english": "The tyrant sent his henchmen to terrorize the village.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25559 + }, + { + "word": "Schlauchboot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inflatable boat", + "romanization": "Schlauchboot", + "example_sentence_native": "Wir fuhren mit dem Schlauchboot über den See.", + "example_sentence_english": "We went across the lake in the inflatable boat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25561 + }, + { + "word": "schmoren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to braise;to stew", + "romanization": "schmoren", + "example_sentence_native": "Das Fleisch muss lange schmoren, um zart zu werden.", + "example_sentence_english": "The meat needs to braise for a long time to become tender.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25562 + }, + { + "word": "Schober", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stack;rick (of hay;straw)", + "romanization": "Schober", + "example_sentence_native": "Der Bauer baute einen großen Schober Heu auf dem Feld.", + "example_sentence_english": "The farmer built a large stack of hay in the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25563 + }, + { + "word": "Schulbesuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school attendance;visit to school", + "romanization": "Schulbesuch", + "example_sentence_native": "Der Schulbesuch ist in Deutschland Pflicht.", + "example_sentence_english": "School attendance is compulsory in Germany.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25564 + }, + { + "word": "Schulbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school book;textbook", + "romanization": "Schulbuch", + "example_sentence_native": "Das neue Schulbuch ist sehr interessant.", + "example_sentence_english": "The new school book is very interesting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25565 + }, + { + "word": "Schulwesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "education system;school system", + "romanization": "Schulwesen", + "example_sentence_native": "Das deutsche Schulwesen ist komplex.", + "example_sentence_english": "The German education system is complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25566 + }, + { + "word": "Selbstorganisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-organization", + "romanization": "Selbstorganisation", + "example_sentence_native": "Die Selbstorganisation ist ein wichtiges Prinzip in der Natur.", + "example_sentence_english": "Self-organization is an important principle in nature.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25569 + }, + { + "word": "Seniorenheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing home;retirement home", + "romanization": "Seniorenheim", + "example_sentence_native": "Meine Großmutter lebt in einem Seniorenheim.", + "example_sentence_english": "My grandmother lives in a nursing home.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25572 + }, + { + "word": "Sensibilisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sensitization;awareness-raising", + "romanization": "Sensibilisierung", + "example_sentence_native": "Die Sensibilisierung für Umweltthemen ist wichtig.", + "example_sentence_english": "Sensitization to environmental issues is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25573 + }, + { + "word": "Seriennummer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serial number", + "romanization": "Seriennummer", + "example_sentence_native": "Bitte geben Sie die Seriennummer des Geräts an.", + "example_sentence_english": "Please provide the serial number of the device.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25574 + }, + { + "word": "sesshaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settled;sedentary", + "romanization": "sesshaft", + "example_sentence_native": "Nach vielen Reisen wurde er sesshaft.", + "example_sentence_english": "After many travels, he became settled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25575 + }, + { + "word": "Sitzungssaal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meeting room;session hall", + "romanization": "Sitzungssaal", + "example_sentence_native": "Die Besprechung findet im Sitzungssaal statt.", + "example_sentence_english": "The meeting takes place in the meeting room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25577 + }, + { + "word": "Skifahrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skier", + "romanization": "Skifahrer", + "example_sentence_native": "Der Skifahrer fuhr schnell den Berg hinunter.", + "example_sentence_english": "The skier skied quickly down the mountain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25578 + }, + { + "word": "Sonderheft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special issue", + "romanization": "Sonderheft", + "example_sentence_native": "Das Sonderheft über die Geschichte der Stadt ist sehr beliebt.", + "example_sentence_english": "The special issue about the city's history is very popular.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25580 + }, + { + "word": "Spaziergänger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stroller;walker", + "romanization": "Spaziergänger", + "example_sentence_native": "Ein Spaziergänger fand den verlorenen Hund im Park.", + "example_sentence_english": "A walker found the lost dog in the park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25581 + }, + { + "word": "Spitzengruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leading group;top group", + "romanization": "Spitzengruppe", + "example_sentence_native": "Die Läufer in der Spitzengruppe kämpften um den Sieg.", + "example_sentence_english": "The runners in the leading group fought for victory.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25582 + }, + { + "word": "Staatsbesuch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state visit", + "romanization": "Staatsbesuch", + "example_sentence_native": "Der Präsident unternahm einen Staatsbesuch in Japan.", + "example_sentence_english": "The president undertook a state visit to Japan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25583 + }, + { + "word": "Staatsschuld", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "national debt;public debt", + "romanization": "Staatsschuld", + "example_sentence_native": "Die Staatsschuld ist in den letzten Jahren stark angestiegen.", + "example_sentence_english": "The national debt has risen sharply in recent years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25584 + }, + { + "word": "Staatsverschuldung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "national indebtedness;public debt", + "romanization": "Staatsverschuldung", + "example_sentence_native": "Die Staatsverschuldung ist ein großes Problem für viele Länder.", + "example_sentence_english": "National indebtedness is a big problem for many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25585 + }, + { + "word": "Stadtgrenze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city limit;city boundary", + "romanization": "Stadtgrenze", + "example_sentence_native": "Wir haben die Stadtgrenze gerade überschritten.", + "example_sentence_english": "We have just crossed the city limit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25586 + }, + { + "word": "Startloch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "starting block;starting hole", + "romanization": "Startloch", + "example_sentence_native": "Der Läufer positionierte sich im Startloch.", + "example_sentence_english": "The runner positioned himself in the starting block.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25587 + }, + { + "word": "Steckbrief", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wanted poster;profile", + "romanization": "Steckbrief", + "example_sentence_native": "Die Polizei veröffentlichte einen Steckbrief des Verdächtigen.", + "example_sentence_english": "The police published a wanted poster of the suspect.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25588 + }, + { + "word": "stehenbleiben", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop;to stand still", + "romanization": "stehenbleiben", + "example_sentence_native": "Das Auto blieb plötzlich stehen.", + "example_sentence_english": "The car suddenly stopped.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "stehen", + "base_verb": "bleiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25589 + }, + { + "word": "Streber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nerd;swot", + "romanization": "Streber", + "example_sentence_native": "Er wurde in der Schule oft als Streber bezeichnet.", + "example_sentence_english": "He was often called a nerd at school.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25590 + }, + { + "word": "Tanzschule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dance school", + "romanization": "Tanzschule", + "example_sentence_native": "Sie lernt in der Tanzschule Salsa.", + "example_sentence_english": "She is learning salsa at the dance school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25591 + }, + { + "word": "Tatwaffe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "murder weapon;weapon used in a crime", + "romanization": "Tatwaffe", + "example_sentence_native": "Die Polizei suchte nach der Tatwaffe.", + "example_sentence_english": "The police were looking for the murder weapon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25592 + }, + { + "word": "Terrorgruppe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrorist group", + "romanization": "Terrorgruppe", + "example_sentence_native": "Die Terrorgruppe bekannte sich zu dem Anschlag.", + "example_sentence_english": "The terrorist group claimed responsibility for the attack.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25595 + }, + { + "word": "Thorax", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "thorax;chest", + "romanization": "Thorax", + "example_sentence_native": "Der Arzt untersuchte den Thorax des Patienten.", + "example_sentence_english": "The doctor examined the patient's thorax.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25597 + }, + { + "word": "Tic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tic", + "romanization": "Tic", + "example_sentence_native": "Er hat einen nervösen Tic im Auge.", + "example_sentence_english": "He has a nervous tic in his eye.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25598 + }, + { + "word": "Tonart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "key (music)", + "romanization": "Tonart", + "example_sentence_native": "Das Stück ist in einer Dur-Tonart geschrieben.", + "example_sentence_english": "The piece is written in a major key.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25599 + }, + { + "word": "tonnenweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tons of;in tons", + "romanization": "tonnenweise", + "example_sentence_native": "Sie haben tonnenweise Schnee geräumt.", + "example_sentence_english": "They cleared tons of snow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25600 + }, + { + "word": "Torschützenkönig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top scorer (football)", + "romanization": "Torschützenkönig", + "example_sentence_native": "Er wurde der Torschützenkönig der Liga.", + "example_sentence_english": "He became the top scorer of the league.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25601 + }, + { + "word": "Tumult", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tumult;commotion", + "romanization": "Tumult", + "example_sentence_native": "Es gab einen Tumult auf dem Marktplatz.", + "example_sentence_english": "There was a commotion in the marketplace.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25604 + }, + { + "word": "turbulent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turbulent", + "romanization": "turbulent", + "example_sentence_native": "Wir hatten einen turbulenten Flug.", + "example_sentence_english": "We had a turbulent flight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25605 + }, + { + "word": "Uhrzeigersinn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clockwise", + "romanization": "Uhrzeigersinn", + "example_sentence_native": "Drehen Sie den Knopf im Uhrzeigersinn.", + "example_sentence_english": "Turn the knob clockwise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25607 + }, + { + "word": "Uhu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eagle owl", + "romanization": "Uhu", + "example_sentence_native": "Ein Uhu saß auf dem Ast.", + "example_sentence_english": "An eagle owl sat on the branch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25608 + }, + { + "word": "Umfragewert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poll rating;survey value", + "romanization": "Umfragewert", + "example_sentence_native": "Die Umfragewerte der Partei sind gestiegen.", + "example_sentence_english": "The party's poll ratings have risen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25609 + }, + { + "word": "unabsichtlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unintentionally;accidentally", + "romanization": "unabsichtlich", + "example_sentence_native": "Er hat die Vase unabsichtlich zerbrochen.", + "example_sentence_english": "He accidentally broke the vase.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25611 + }, + { + "word": "unbewaffnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unarmed", + "romanization": "unbewaffnet", + "example_sentence_native": "Die Polizisten waren unbewaffnet.", + "example_sentence_english": "The police officers were unarmed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25612 + }, + { + "word": "Unding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absurdity;impossible thing", + "romanization": "Unding", + "example_sentence_native": "Das ist ein Unding, so etwas zu verlangen.", + "example_sentence_english": "That's an absurdity to demand something like that.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25613 + }, + { + "word": "unentwegt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incessantly;constantly", + "romanization": "unentwegt", + "example_sentence_native": "Er arbeitete unentwegt an seinem Projekt.", + "example_sentence_english": "He worked incessantly on his project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25614 + }, + { + "word": "untreu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfaithful;disloyal", + "romanization": "untreu", + "example_sentence_native": "Sie war ihrem Partner untreu.", + "example_sentence_english": "She was unfaithful to her partner.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25616 + }, + { + "word": "unwählbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unelectable", + "romanization": "unwählbar", + "example_sentence_native": "Der Kandidat galt als unwählbar.", + "example_sentence_english": "The candidate was considered unelectable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25617 + }, + { + "word": "Urknall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Big Bang", + "romanization": "Urknall", + "example_sentence_native": "Die Theorie des Urknalls erklärt den Ursprung des Universums.", + "example_sentence_english": "The Big Bang theory explains the origin of the universe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25618 + }, + { + "word": "Urlaubstag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vacation day;holiday", + "romanization": "Urlaubstag", + "example_sentence_native": "Ich habe noch fünf Urlaubstage übrig.", + "example_sentence_english": "I still have five vacation days left.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25619 + }, + { + "word": "valide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valid", + "romanization": "valide", + "example_sentence_native": "Diese Argumentation ist nicht valide.", + "example_sentence_english": "This argumentation is not valid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25622 + }, + { + "word": "Vandale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandal", + "romanization": "Vandale", + "example_sentence_native": "Die Vandale haben die Bushaltestelle beschädigt.", + "example_sentence_english": "The vandals damaged the bus stop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25623 + }, + { + "word": "Verbeugung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bow (gesture)", + "romanization": "Verbeugung", + "example_sentence_native": "Er machte eine tiefe Verbeugung vor dem Publikum.", + "example_sentence_english": "He made a deep bow before the audience.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25625 + }, + { + "word": "verjüngen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rejuvenate", + "romanization": "verjüngen", + "example_sentence_native": "Diese Kur soll die Haut verjüngen.", + "example_sentence_english": "This treatment is supposed to rejuvenate the skin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25626 + }, + { + "word": "vermeidbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avoidable", + "romanization": "vermeidbar", + "example_sentence_native": "Dieser Fehler war vermeidbar.", + "example_sentence_english": "This mistake was avoidable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25627 + }, + { + "word": "verorten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to locate", + "romanization": "verorten", + "example_sentence_native": "Man muss das Problem im richtigen Kontext verorten.", + "example_sentence_english": "One must locate the problem in the correct context.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25628 + }, + { + "word": "Versammlungsfreiheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "freedom of assembly", + "romanization": "Versammlungsfreiheit", + "example_sentence_native": "Die Versammlungsfreiheit ist ein Grundrecht.", + "example_sentence_english": "The freedom of assembly is a fundamental right.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25629 + }, + { + "word": "verwirken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to forfeit", + "romanization": "verwirken", + "example_sentence_native": "Er hat sein Recht auf Berufung verwirkt.", + "example_sentence_english": "He has forfeited his right to appeal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25630 + }, + { + "word": "Vibration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibration", + "romanization": "Vibration", + "example_sentence_native": "Man konnte eine leichte Vibration im Boden spüren.", + "example_sentence_english": "One could feel a slight vibration in the ground.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25631 + }, + { + "word": "Vietnamese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Vietnamese (person)", + "romanization": "Vietnamese", + "example_sentence_native": "Der Vietnamese sprach sehr schnell.", + "example_sentence_english": "The Vietnamese person spoke very quickly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25632 + }, + { + "word": "visionär", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visionary", + "romanization": "visionär", + "example_sentence_native": "Er ist ein visionärer Anführer.", + "example_sentence_english": "He is a visionary leader.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25633 + }, + { + "word": "Waldgebiet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forest area", + "romanization": "Waldgebiet", + "example_sentence_native": "Wir wanderten durch ein großes Waldgebiet.", + "example_sentence_english": "We hiked through a large forest area.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25635 + }, + { + "word": "Waller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wels catfish", + "romanization": "Waller", + "example_sentence_native": "Der Waller ist ein großer Süßwasserfisch.", + "example_sentence_english": "The wels catfish is a large freshwater fish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25636 + }, + { + "word": "Wasserzeichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watermark", + "romanization": "Wasserzeichen", + "example_sentence_native": "Das Dokument hatte ein Wasserzeichen.", + "example_sentence_english": "The document had a watermark.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25637 + }, + { + "word": "weben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weave", + "romanization": "weben", + "example_sentence_native": "Sie lernt, wie man Stoffe webt.", + "example_sentence_english": "She is learning how to weave fabrics.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25639 + }, + { + "word": "Weissbrot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "white bread", + "romanization": "Weissbrot", + "example_sentence_native": "Ich esse gerne Weissbrot zum Frühstück.", + "example_sentence_english": "I like to eat white bread for breakfast.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25640 + }, + { + "word": "Weitsicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foresight;vision", + "romanization": "Weitsicht", + "example_sentence_native": "Seine Weitsicht half dem Unternehmen, Krisen zu vermeiden.", + "example_sentence_english": "His foresight helped the company avoid crises.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25641 + }, + { + "word": "westeuropäisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Western European", + "romanization": "westeuropäisch", + "example_sentence_native": "Er hat einen westeuropäischen Akzent.", + "example_sentence_english": "He has a Western European accent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25643 + }, + { + "word": "Wiederaufstieg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resurgence;comeback", + "romanization": "Wiederaufstieg", + "example_sentence_native": "Der Wiederaufstieg des Phönix aus der Asche ist ein Symbol der Hoffnung.", + "example_sentence_english": "The resurgence of the phoenix from the ashes is a symbol of hope.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25644 + }, + { + "word": "wiederentdecken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rediscover", + "romanization": "wiederentdecken", + "example_sentence_native": "Ich möchte meine alte Leidenschaft für das Malen wiederentdecken.", + "example_sentence_english": "I want to rediscover my old passion for painting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25645 + }, + { + "word": "Windgeschwindigkeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wind speed", + "romanization": "Windgeschwindigkeit", + "example_sentence_native": "Die Windgeschwindigkeit nimmt zu.", + "example_sentence_english": "The wind speed is increasing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25647 + }, + { + "word": "wirbeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swirl;to whirl", + "romanization": "wirbeln", + "example_sentence_native": "Der Wind lässt die Blätter wirbeln.", + "example_sentence_english": "The wind makes the leaves swirl.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25648 + }, + { + "word": "Wirtschaftslage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economic situation", + "romanization": "Wirtschaftslage", + "example_sentence_native": "Die Wirtschaftslage hat sich verbessert.", + "example_sentence_english": "The economic situation has improved.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25650 + }, + { + "word": "wittern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scent;to sense;to smell", + "romanization": "wittern", + "example_sentence_native": "Der Hund konnte die Beute wittern.", + "example_sentence_english": "The dog could scent the prey.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25651 + }, + { + "word": "Witwer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widower", + "romanization": "Witwer", + "example_sentence_native": "Der alte Witwer lebte allein.", + "example_sentence_english": "The old widower lived alone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25652 + }, + { + "word": "Zionismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zionism", + "romanization": "Zionismus", + "example_sentence_native": "Zionismus ist eine politische Ideologie.", + "example_sentence_english": "Zionism is a political ideology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25657 + }, + { + "word": "zurückrufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to call back;to recall", + "romanization": "zurückrufen", + "example_sentence_native": "Ich muss meinen Freund zurückrufen.", + "example_sentence_english": "I need to call my friend back.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "rufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25660 + }, + { + "word": "Zuschauerzahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audience number;attendance figure", + "romanization": "Zuschauerzahl", + "example_sentence_native": "Die Zuschauerzahl war beeindruckend.", + "example_sentence_english": "The audience number was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25661 + }, + { + "word": "abbremsen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to brake;to slow down", + "romanization": "abbremsen", + "example_sentence_native": "Er musste plötzlich abbremsen.", + "example_sentence_english": "He suddenly had to brake.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "bremsen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25662 + }, + { + "word": "abgeleitet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derived", + "romanization": "abgeleitet", + "example_sentence_native": "Das Wort ist vom Lateinischen abgeleitet.", + "example_sentence_english": "The word is derived from Latin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25663 + }, + { + "word": "abgestimmt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordinated;tuned;matched", + "romanization": "abgestimmt", + "example_sentence_native": "Die Farben sind perfekt aufeinander abgestimmt.", + "example_sentence_english": "The colors are perfectly coordinated with each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25664 + }, + { + "word": "Abschlusstraining", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final training;last practice", + "romanization": "Abschlusstraining", + "example_sentence_native": "Das Team hatte heute sein Abschlusstraining.", + "example_sentence_english": "The team had its final training today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25666 + }, + { + "word": "Abstufung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gradation;nuance;step", + "romanization": "Abstufung", + "example_sentence_native": "Es gibt feine Abstufungen in der Farbe.", + "example_sentence_english": "There are subtle gradations in the color.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25667 + }, + { + "word": "Adjutant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adjutant;aide-de-camp", + "romanization": "Adjutant", + "example_sentence_native": "Der General sprach mit seinem Adjutanten.", + "example_sentence_english": "The general spoke with his adjutant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25668 + }, + { + "word": "Akkulaufzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battery life", + "romanization": "Akkulaufzeit", + "example_sentence_native": "Die Akkulaufzeit meines Handys ist sehr gut.", + "example_sentence_english": "The battery life of my phone is very good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25670 + }, + { + "word": "Aktienkurs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stock price", + "romanization": "Aktienkurs", + "example_sentence_native": "Der Aktienkurs ist heute gestiegen.", + "example_sentence_english": "The stock price rose today.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25671 + }, + { + "word": "Algerier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Algerian (male)", + "romanization": "Algerier", + "example_sentence_native": "Ein Algerier gewann das Rennen.", + "example_sentence_english": "An Algerian won the race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25673 + }, + { + "word": "alteingesessen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "long-established;old-established", + "romanization": "alteingesessen", + "example_sentence_native": "Das ist ein alteingesessenes Unternehmen.", + "example_sentence_english": "That is a long-established company.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25675 + }, + { + "word": "anbrennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burn (food);to scorch", + "romanization": "anbrennen", + "example_sentence_native": "Sei vorsichtig, dass das Essen nicht anbrennt.", + "example_sentence_english": "Be careful that the food doesn't burn.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "brennen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25676 + }, + { + "word": "anliefern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliver (to a specific place)", + "romanization": "anliefern", + "example_sentence_native": "Die Waren werden morgen angeliefert.", + "example_sentence_english": "The goods will be delivered tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "liefern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25678 + }, + { + "word": "angetrunken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tipsy;slightly drunk", + "romanization": "angetrunken", + "example_sentence_native": "Er war schon etwas angetrunken, als er ankam.", + "example_sentence_english": "He was already a bit tipsy when he arrived.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25679 + }, + { + "word": "angreifbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulnerable", + "romanization": "angreifbar", + "example_sentence_native": "Seine Argumentation ist angreifbar.", + "example_sentence_english": "His argumentation is vulnerable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25680 + }, + { + "word": "Anlagenbau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plant construction", + "romanization": "Anlagenbau", + "example_sentence_native": "Der Anlagenbau ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "Plant construction is an important sector of the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25681 + }, + { + "word": "anregend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulating", + "romanization": "anregend", + "example_sentence_native": "Das Gespräch war sehr anregend.", + "example_sentence_english": "The conversation was very stimulating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25682 + }, + { + "word": "ansteigend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rising", + "romanization": "ansteigend", + "example_sentence_native": "Wir fuhren eine ansteigende Straße entlang.", + "example_sentence_english": "We drove along a rising road.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25683 + }, + { + "word": "Apfelkuchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apple pie", + "romanization": "Apfelkuchen", + "example_sentence_native": "Ich liebe Apfelkuchen mit Sahne.", + "example_sentence_english": "I love apple pie with cream.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25684 + }, + { + "word": "Approbation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "license (to practice a profession)", + "romanization": "Approbation", + "example_sentence_native": "Er hat seine Approbation als Arzt erhalten.", + "example_sentence_english": "He received his license to practice as a doctor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25685 + }, + { + "word": "Arbeitsort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "workplace", + "romanization": "Arbeitsort", + "example_sentence_native": "Mein Arbeitsort ist in der Innenstadt.", + "example_sentence_english": "My workplace is in the city center.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25686 + }, + { + "word": "Arkade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arcade", + "romanization": "Arkade", + "example_sentence_native": "Die Arkaden des Platzes bieten Schatten.", + "example_sentence_english": "The arcades of the square offer shade.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25688 + }, + { + "word": "Armutsgrenze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poverty line", + "romanization": "Armutsgrenze", + "example_sentence_native": "Viele Familien leben unter der Armutsgrenze.", + "example_sentence_english": "Many families live below the poverty line.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25689 + }, + { + "word": "atmosphärisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atmospheric", + "romanization": "atmosphärisch", + "example_sentence_native": "Der Film hatte eine sehr atmosphärische Stimmung.", + "example_sentence_english": "The film had a very atmospheric mood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25691 + }, + { + "word": "auffliegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be exposed", + "romanization": "auffliegen", + "example_sentence_native": "Der Betrug ist endlich aufgeflogen.", + "example_sentence_english": "The fraud has finally been exposed.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "fliegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25693 + }, + { + "word": "aufgelöst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distraught", + "romanization": "aufgelöst", + "example_sentence_native": "Sie war nach der Nachricht völlig aufgelöst.", + "example_sentence_english": "She was completely distraught after the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25694 + }, + { + "word": "Aufladung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charging", + "romanization": "Aufladung", + "example_sentence_native": "Die Aufladung des Akkus dauert mehrere Stunden.", + "example_sentence_english": "The charging of the battery takes several hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25695 + }, + { + "word": "aufschneiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut open", + "romanization": "aufschneiden", + "example_sentence_native": "Er musste den Kuchen aufschneiden.", + "example_sentence_english": "He had to cut open the cake.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "schneiden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25696 + }, + { + "word": "Aufsichtsratsvorsitzender", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "chairman of the supervisory board", + "romanization": "Aufsichtsratsvorsitzender", + "example_sentence_native": "Der Aufsichtsratsvorsitzende gab eine Erklärung ab.", + "example_sentence_english": "The chairman of the supervisory board made a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25697 + }, + { + "word": "Augenfarbe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eye color", + "romanization": "Augenfarbe", + "example_sentence_native": "Ihre Augenfarbe ist blau.", + "example_sentence_english": "Her eye color is blue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25698 + }, + { + "word": "ausschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reject", + "romanization": "ausschlagen", + "example_sentence_native": "Er musste das Angebot ausschlagen.", + "example_sentence_english": "He had to reject the offer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25699 + }, + { + "word": "Auslage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "display;outlay", + "romanization": "Auslage", + "example_sentence_native": "Die Auslage des Geschäfts war sehr ansprechend.", + "example_sentence_english": "The shop's display was very appealing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25700 + }, + { + "word": "ausschauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look out;to appear", + "romanization": "ausschauen", + "example_sentence_native": "Er muss aus dem Fenster ausschauen.", + "example_sentence_english": "He has to look out of the window.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25701 + }, + { + "word": "Aussentemperatur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outside temperature", + "romanization": "Aussentemperatur", + "example_sentence_native": "Die Aussentemperatur ist heute sehr niedrig.", + "example_sentence_english": "The outside temperature is very low today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25702 + }, + { + "word": "Aussichtsplattform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewing platform", + "romanization": "Aussichtsplattform", + "example_sentence_native": "Von der Aussichtsplattform hat man eine tolle Sicht.", + "example_sentence_english": "From the viewing platform, you have a great view.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25703 + }, + { + "word": "Auster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oyster", + "romanization": "Auster", + "example_sentence_native": "Austern sind eine Delikatesse.", + "example_sentence_english": "Oysters are a delicacy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25704 + }, + { + "word": "Autopsie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autopsy", + "romanization": "Autopsie", + "example_sentence_native": "Die Autopsie ergab die Todesursache.", + "example_sentence_english": "The autopsy revealed the cause of death.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25706 + }, + { + "word": "Befindlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state of mind;disposition", + "romanization": "Befindlichkeit", + "example_sentence_native": "Seine Befindlichkeit war nach der Nachricht sehr schlecht.", + "example_sentence_english": "His state of mind was very bad after the news.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25714 + }, + { + "word": "Beharrlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perseverance;persistence", + "romanization": "Beharrlichkeit", + "example_sentence_native": "Mit Beharrlichkeit erreichte er sein Ziel.", + "example_sentence_english": "With perseverance, he reached his goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25717 + }, + { + "word": "bejubeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cheer;to acclaim", + "romanization": "bejubeln", + "example_sentence_native": "Die Fans bejubelten ihr Team.", + "example_sentence_english": "The fans cheered their team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25718 + }, + { + "word": "Berufsverband", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professional association", + "romanization": "Berufsverband", + "example_sentence_native": "Der Berufsverband vertritt die Interessen seiner Mitglieder.", + "example_sentence_english": "The professional association represents the interests of its members.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25720 + }, + { + "word": "Besatzungsmacht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occupying power", + "romanization": "Besatzungsmacht", + "example_sentence_native": "Nach dem Krieg wurde das Land von einer Besatzungsmacht regiert.", + "example_sentence_english": "After the war, the country was governed by an occupying power.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25721 + }, + { + "word": "bespielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to play on;to record;to program", + "romanization": "bespielen", + "example_sentence_native": "Der DJ wird die Tanzfläche mit neuen Tracks bespielen.", + "example_sentence_english": "The DJ will play new tracks on the dance floor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25722 + }, + { + "word": "Bildungszentrum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educational center", + "romanization": "Bildungszentrum", + "example_sentence_native": "Das neue Bildungszentrum bietet Kurse für alle Altersgruppen an.", + "example_sentence_english": "The new educational center offers courses for all age groups.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25724 + }, + { + "word": "bleich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pale;pallid", + "romanization": "bleich", + "example_sentence_native": "Nach der Krankheit sah er sehr bleich aus.", + "example_sentence_english": "After the illness, he looked very pale.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25726 + }, + { + "word": "Bleiche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bleach;bleaching ground", + "romanization": "Bleiche", + "example_sentence_native": "Verwenden Sie keine Bleiche für farbige Kleidung.", + "example_sentence_english": "Do not use bleach for colored clothes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "pos": "noun", + "word_frequency": 25727 + }, + { + "word": "Bleiche", + "pos": "noun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bleach;bleaching;bleaching ground", + "romanization": "Bleiche", + "example_sentence_native": "Die Wäsche braucht eine Bleiche.", + "example_sentence_english": "The laundry needs bleaching.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": true, + "word_frequency": 25727 + }, + { + "word": "bleichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bleach;to fade", + "romanization": "bleichen", + "example_sentence_native": "Die Sonne kann die Farben der Vorhänge bleichen.", + "example_sentence_english": "The sun can bleach the colors of the curtains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25728 + }, + { + "word": "bummeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stroll;to dawdle", + "romanization": "bummeln", + "example_sentence_native": "Am Wochenende bummeln wir gerne durch die Stadt.", + "example_sentence_english": "On the weekend, we like to stroll through the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25734 + }, + { + "word": "Bürokrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucrat", + "romanization": "Bürokrat", + "example_sentence_native": "Der Bürokrat erklärte die komplexen Regeln.", + "example_sentence_english": "The bureaucrat explained the complex rules.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25736 + }, + { + "word": "Datenmenge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data volume;amount of data", + "romanization": "Datenmenge", + "example_sentence_native": "Die Datenmenge ist zu groß für den Upload.", + "example_sentence_english": "The data volume is too large for the upload.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25748 + }, + { + "word": "Deutlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarity;distinctness", + "romanization": "Deutlichkeit", + "example_sentence_native": "Er sprach mit großer Deutlichkeit, um Missverständnisse zu vermeiden.", + "example_sentence_english": "He spoke with great clarity to avoid misunderstandings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25751 + }, + { + "word": "diagonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagonal", + "romanization": "diagonal", + "example_sentence_native": "Die Linie verläuft diagonal über das Blatt.", + "example_sentence_english": "The line runs diagonally across the sheet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25752 + }, + { + "word": "Dieselmotor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diesel engine", + "romanization": "Dieselmotor", + "example_sentence_native": "Der LKW wird von einem starken Dieselmotor angetrieben.", + "example_sentence_english": "The truck is powered by a strong diesel engine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25753 + }, + { + "word": "diffus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diffuse;vague", + "romanization": "diffus", + "example_sentence_native": "Das Licht war diffus und weich.", + "example_sentence_english": "The light was diffuse and soft.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25755 + }, + { + "word": "Drehort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filming location;shooting location", + "romanization": "Drehort", + "example_sentence_native": "Der Drehort für den neuen Film ist in Berlin.", + "example_sentence_english": "The filming location for the new movie is in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25757 + }, + { + "word": "Dreifaltigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Trinity", + "romanization": "Dreifaltigkeit", + "example_sentence_native": "Die Dreifaltigkeit ist ein zentrales Konzept im Christentum.", + "example_sentence_english": "The Trinity is a central concept in Christianity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25758 + }, + { + "word": "Druckluft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressed air", + "romanization": "Druckluft", + "example_sentence_native": "Die Maschine wird mit Druckluft betrieben.", + "example_sentence_english": "The machine is operated with compressed air.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25760 + }, + { + "word": "durchblicken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to see through;to understand", + "romanization": "durchblicken", + "example_sentence_native": "Ich kann bei dieser komplexen Situation nicht ganz durchblicken.", + "example_sentence_english": "I can't quite see through this complex situation.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "blicken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25762 + }, + { + "word": "durchführbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible;practicable", + "romanization": "durchführbar", + "example_sentence_native": "Ist dieser Plan wirklich durchführbar?", + "example_sentence_english": "Is this plan really feasible?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25763 + }, + { + "word": "durchgeknallt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;nuts (informal)", + "romanization": "durchgeknallt", + "example_sentence_native": "Er ist total durchgeknallt, aber liebenswert.", + "example_sentence_english": "He's totally crazy, but lovable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25764 + }, + { + "word": "durchschneiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut through", + "romanization": "durchschneiden", + "example_sentence_native": "Er musste das Seil durchschneiden, um sich zu befreien.", + "example_sentence_english": "He had to cut through the rope to free himself.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "durch", + "base_verb": "schneiden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25765 + }, + { + "word": "einfassen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to border;to frame;to set (a gem)", + "romanization": "einfassen", + "example_sentence_native": "Der Goldschmied wird den Edelstein in den Ring einfassen.", + "example_sentence_english": "The goldsmith will set the gemstone in the ring.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "fassen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25767 + }, + { + "word": "eingeleitet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiated;introduced", + "romanization": "eingeleitet", + "example_sentence_native": "Die eingeleiteten Maßnahmen zeigten schnell Wirkung.", + "example_sentence_english": "The initiated measures quickly showed effect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25768 + }, + { + "word": "Einöde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wasteland;desolate place", + "romanization": "Einöde", + "example_sentence_native": "Sie lebten in einer abgelegenen Einöde.", + "example_sentence_english": "They lived in a remote wasteland.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25769 + }, + { + "word": "Endprodukt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "end product;final product", + "romanization": "Endprodukt", + "example_sentence_native": "Das Endprodukt muss unseren Qualitätsstandards entsprechen.", + "example_sentence_english": "The end product must meet our quality standards.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25773 + }, + { + "word": "Endzeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "end time;doomsday", + "romanization": "Endzeit", + "example_sentence_native": "Viele Prophezeiungen sprechen von der Endzeit.", + "example_sentence_english": "Many prophecies speak of the end time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25774 + }, + { + "word": "entweichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape;to leak (gas;air)", + "romanization": "entweichen", + "example_sentence_native": "Das Gas konnte aus dem Behälter entweichen.", + "example_sentence_english": "The gas could escape from the container.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25776 + }, + { + "word": "Entwicklungsgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "history of development;evolutionary history", + "romanization": "Entwicklungsgeschichte", + "example_sentence_native": "Die Entwicklungsgeschichte der Menschheit ist faszinierend.", + "example_sentence_english": "The history of human development is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25777 + }, + { + "word": "erdacht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devised;conceived;invented", + "romanization": "erdacht", + "example_sentence_native": "Das war ein clever erdachter Plan.", + "example_sentence_english": "That was a cleverly devised plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25779 + }, + { + "word": "erlernt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "learned;acquired", + "romanization": "erlernt", + "example_sentence_native": "Die erlernten Fähigkeiten sind sehr nützlich.", + "example_sentence_english": "The learned skills are very useful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25780 + }, + { + "word": "Ermangelung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lack;absence", + "romanization": "Ermangelung", + "example_sentence_native": "In Ermangelung weiterer Beweise wurde der Fall eingestellt.", + "example_sentence_english": "In the absence of further evidence, the case was closed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25781 + }, + { + "word": "ermüdend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiring;exhausting", + "romanization": "ermüdend", + "example_sentence_native": "Die lange Reise war sehr ermüdend.", + "example_sentence_english": "The long journey was very tiring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25782 + }, + { + "word": "Erpresser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extortionist;blackmailer", + "romanization": "Erpresser", + "example_sentence_native": "Der Erpresser forderte eine große Summe Geld.", + "example_sentence_english": "The blackmailer demanded a large sum of money.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25783 + }, + { + "word": "Falschparker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegally parked car;person", + "romanization": "Falschparker", + "example_sentence_native": "Der Falschparker wurde abgeschleppt.", + "example_sentence_english": "The illegally parked car was towed away.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25786 + }, + { + "word": "feminin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feminine", + "romanization": "feminin", + "example_sentence_native": "Sie hat eine sehr feminine Ausstrahlung.", + "example_sentence_english": "She has a very feminine aura.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25788 + }, + { + "word": "Filialleiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch manager", + "romanization": "Filialleiter", + "example_sentence_native": "Der Filialleiter ist für das gesamte Geschäft verantwortlich.", + "example_sentence_english": "The branch manager is responsible for the entire business.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25790 + }, + { + "word": "Filmstar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film star;movie star", + "romanization": "Filmstar", + "example_sentence_native": "Sie träumt davon, ein Filmstar zu werden.", + "example_sentence_english": "She dreams of becoming a film star.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25791 + }, + { + "word": "Fliessband", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly line;conveyor belt", + "romanization": "Fliessband", + "example_sentence_native": "Die Produktion erfolgt am Fliessband.", + "example_sentence_english": "Production takes place on the assembly line.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25794 + }, + { + "word": "Flitzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speedster;streaker;fast car", + "romanization": "Flitzer", + "example_sentence_native": "Der rote Sportwagen ist ein echter Flitzer.", + "example_sentence_english": "The red sports car is a real speedster.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25795 + }, + { + "word": "Frack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tailcoat;tuxedo", + "romanization": "Frack", + "example_sentence_native": "Er trug einen eleganten Frack zur Gala.", + "example_sentence_english": "He wore an elegant tailcoat to the gala.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25798 + }, + { + "word": "Freikarte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free ticket", + "romanization": "Freikarte", + "example_sentence_native": "Ich habe eine Freikarte für das Konzert bekommen.", + "example_sentence_english": "I got a free ticket for the concert.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25801 + }, + { + "word": "Freizeitgestaltung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leisure activities", + "romanization": "Freizeitgestaltung", + "example_sentence_native": "Die Freizeitgestaltung ist wichtig für das Wohlbefinden.", + "example_sentence_english": "The organization of leisure time is important for well-being.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25802 + }, + { + "word": "fristgerecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on time", + "romanization": "fristgerecht", + "example_sentence_native": "Die Lieferung erfolgte fristgerecht.", + "example_sentence_english": "The delivery was made on time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25804 + }, + { + "word": "Frühgeschichte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "early history", + "romanization": "Frühgeschichte", + "example_sentence_native": "Wir studieren die Frühgeschichte Europas.", + "example_sentence_english": "We are studying the early history of Europe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25805 + }, + { + "word": "Führungsriege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leadership team", + "romanization": "Führungsriege", + "example_sentence_native": "Die Führungsriege traf eine wichtige Entscheidung.", + "example_sentence_english": "The leadership team made an important decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25806 + }, + { + "word": "Gastronom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restaurateur", + "romanization": "Gastronom", + "example_sentence_native": "Der Gastronom eröffnete ein neues Restaurant.", + "example_sentence_english": "The restaurateur opened a new restaurant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25807 + }, + { + "word": "gebieten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to command", + "romanization": "gebieten", + "example_sentence_native": "Die Situation gebietet schnelles Handeln.", + "example_sentence_english": "The situation demands quick action.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25808 + }, + { + "word": "Geflecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "braid", + "romanization": "Geflecht", + "example_sentence_native": "Das Geflecht aus Ästen war sehr dicht.", + "example_sentence_english": "The intertwining of branches was very dense.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25809 + }, + { + "word": "Geheimrat", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "privy councillor", + "romanization": "Geheimrat", + "example_sentence_native": "Der Geheimrat beriet den König.", + "example_sentence_english": "The privy councillor advised the king.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25810 + }, + { + "word": "gekleidet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressed", + "romanization": "gekleidet", + "example_sentence_native": "Sie war elegant gekleidet.", + "example_sentence_english": "She was elegantly dressed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25811 + }, + { + "word": "gelagert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stored", + "romanization": "gelagert", + "example_sentence_native": "Die Waren sind sicher gelagert.", + "example_sentence_english": "The goods are safely stored.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25812 + }, + { + "word": "Geltendmachung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assertion", + "romanization": "Geltendmachung", + "example_sentence_native": "Die Geltendmachung von Ansprüchen ist wichtig.", + "example_sentence_english": "The assertion of claims is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25813 + }, + { + "word": "geradlinig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "straightforward", + "romanization": "geradlinig", + "example_sentence_native": "Er verfolgte einen geradlinigen Plan.", + "example_sentence_english": "He pursued a straightforward plan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25814 + }, + { + "word": "Gesamteindruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall impression", + "romanization": "Gesamteindruck", + "example_sentence_native": "Der Gesamteindruck des Hauses war positiv.", + "example_sentence_english": "The overall impression of the house was positive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25815 + }, + { + "word": "gewaltbereit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prone to violence", + "romanization": "gewaltbereit", + "example_sentence_native": "Die Gruppe wurde als gewaltbereit eingestuft.", + "example_sentence_english": "The group was classified as prone to violence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25817 + }, + { + "word": "Gleichschaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coordination;synchronization", + "romanization": "Gleichschaltung", + "example_sentence_native": "Die Gleichschaltung der Gesellschaft war ein Ziel des Regimes.", + "example_sentence_english": "The coordination of society was a goal of the regime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25820 + }, + { + "word": "Grenzöffnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "border opening", + "romanization": "Grenzöffnung", + "example_sentence_native": "Die Grenzöffnung führte zu großen Veränderungen.", + "example_sentence_english": "The border opening led to big changes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25823 + }, + { + "word": "Grosskonzern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large corporation", + "romanization": "Grosskonzern", + "example_sentence_native": "Der Grosskonzern expandiert weltweit.", + "example_sentence_english": "The large corporation is expanding worldwide.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25825 + }, + { + "word": "Gruppenarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "group work", + "romanization": "Gruppenarbeit", + "example_sentence_native": "Wir haben eine Gruppenarbeit für das Projekt gemacht.", + "example_sentence_english": "We did group work for the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25827 + }, + { + "word": "Grünland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grassland", + "romanization": "Grünland", + "example_sentence_native": "Das Grünland wird für die Viehzucht genutzt.", + "example_sentence_english": "The grassland is used for livestock farming.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25828 + }, + { + "word": "Gusseisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cast iron", + "romanization": "Gusseisen", + "example_sentence_native": "Die Pfanne ist aus Gusseisen.", + "example_sentence_english": "The pan is made of cast iron.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25830 + }, + { + "word": "gutschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to credit", + "romanization": "gutschreiben", + "example_sentence_native": "Wir werden Ihnen den Betrag auf Ihr Konto gutschreiben.", + "example_sentence_english": "We will credit the amount to your account.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "gut", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25831 + }, + { + "word": "Gürtellinie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waistline", + "romanization": "Gürtellinie", + "example_sentence_native": "Die Hose sitzt hoch an der Gürtellinie.", + "example_sentence_english": "The trousers sit high on the waistline.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25832 + }, + { + "word": "Hauptplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main square", + "romanization": "Hauptplatz", + "example_sentence_native": "Wir treffen uns am Hauptplatz.", + "example_sentence_english": "We meet at the main square.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25836 + }, + { + "word": "Hauptpreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main prize", + "romanization": "Hauptpreis", + "example_sentence_native": "Sie hat den Hauptpreis in der Lotterie gewonnen.", + "example_sentence_english": "She won the main prize in the lottery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25837 + }, + { + "word": "Hegemonie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hegemony", + "romanization": "Hegemonie", + "example_sentence_native": "Die Hegemonie einer Nation kann zu Spannungen führen.", + "example_sentence_english": "The hegemony of a nation can lead to tensions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25840 + }, + { + "word": "Heimniederlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "home defeat", + "romanization": "Heimniederlage", + "example_sentence_native": "Die Mannschaft erlitt eine schmerzhafte Heimniederlage.", + "example_sentence_english": "The team suffered a painful home defeat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25841 + }, + { + "word": "hinlänglich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sufficient;adequate", + "romanization": "hinlänglich", + "example_sentence_native": "Die Beweise waren nicht hinlänglich, um ihn zu verurteilen.", + "example_sentence_english": "The evidence was not sufficient to convict him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25846 + }, + { + "word": "Hintergrundinformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "background information", + "romanization": "Hintergrundinformation", + "example_sentence_native": "Wir benötigen mehr Hintergrundinformationen zu diesem Fall.", + "example_sentence_english": "We need more background information on this case.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25847 + }, + { + "word": "Hochschullehrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university lecturer;professor", + "romanization": "Hochschullehrer", + "example_sentence_native": "Mein Vater ist ein Hochschullehrer für Geschichte.", + "example_sentence_english": "My father is a university lecturer for history.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25849 + }, + { + "word": "Hoffnungsträger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bearer of hope;promising talent", + "romanization": "Hoffnungsträger", + "example_sentence_native": "Er gilt als der große Hoffnungsträger des Teams.", + "example_sentence_english": "He is considered the great hope of the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25850 + }, + { + "word": "Hunderter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hundred (as a banknote;number)", + "romanization": "Hunderter", + "example_sentence_native": "Er hat einen Hunderter aus dem Geldautomaten gezogen.", + "example_sentence_english": "He withdrew a hundred-euro note from the ATM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25852 + }, + { + "word": "Ideologe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideologist", + "romanization": "Ideologe", + "example_sentence_native": "Er war ein überzeugter Ideologe seiner Partei.", + "example_sentence_english": "He was a convinced ideologist of his party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25853 + }, + { + "word": "inständig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urgent;earnest;imploring", + "romanization": "inständig", + "example_sentence_native": "Sie bat ihn inständig um Hilfe.", + "example_sentence_english": "She urgently implored him for help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25858 + }, + { + "word": "Jugendmannschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youth team", + "romanization": "Jugendmannschaft", + "example_sentence_native": "Die Jugendmannschaft hat das Turnier gewonnen.", + "example_sentence_english": "The youth team won the tournament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25867 + }, + { + "word": "Katechismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catechism", + "romanization": "Katechismus", + "example_sentence_native": "Er studierte den alten Katechismus.", + "example_sentence_english": "He studied the old catechism.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25870 + }, + { + "word": "kellern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cellar", + "romanization": "kellern", + "example_sentence_native": "Wir müssen die Äpfel im Keller kellern.", + "example_sentence_english": "We have to cellar the apples in the basement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25871 + }, + { + "word": "kennzeichnend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic", + "romanization": "kennzeichnend", + "example_sentence_native": "Seine Freundlichkeit ist kennzeichnend für ihn.", + "example_sentence_english": "His kindness is characteristic of him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25872 + }, + { + "word": "klammern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cling", + "romanization": "klammern", + "example_sentence_native": "Das Kind klammerte sich an seine Mutter.", + "example_sentence_english": "The child clung to its mother.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25874 + }, + { + "word": "Klassentreffen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "class reunion", + "romanization": "Klassentreffen", + "example_sentence_native": "Wir planen ein Klassentreffen für nächstes Jahr.", + "example_sentence_english": "We are planning a class reunion for next year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25875 + }, + { + "word": "klebrig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sticky", + "romanization": "klebrig", + "example_sentence_native": "Der Honig ist sehr klebrig.", + "example_sentence_english": "The honey is very sticky.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25876 + }, + { + "word": "Knochenmark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bone marrow", + "romanization": "Knochenmark", + "example_sentence_native": "Knochenmark ist wichtig für die Blutbildung.", + "example_sentence_english": "Bone marrow is important for blood formation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25879 + }, + { + "word": "Kompetenzzentrum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competence center", + "romanization": "Kompetenzzentrum", + "example_sentence_native": "Das Kompetenzzentrum bietet Schulungen an.", + "example_sentence_english": "The competence center offers training.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25880 + }, + { + "word": "Konvergenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convergence", + "romanization": "Konvergenz", + "example_sentence_native": "Die Konvergenz der Technologien ist offensichtlich.", + "example_sentence_english": "The convergence of technologies is obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25881 + }, + { + "word": "Korken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cork", + "romanization": "Korken", + "example_sentence_native": "Der Korken war schwer zu entfernen.", + "example_sentence_english": "The cork was difficult to remove.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25882 + }, + { + "word": "Kostprobe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sample;tasting", + "romanization": "Kostprobe", + "example_sentence_native": "Wir bekamen eine Kostprobe des neuen Weins.", + "example_sentence_english": "We got a sample of the new wine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25883 + }, + { + "word": "Kotflügel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fender;mudguard", + "romanization": "Kotflügel", + "example_sentence_native": "Der Kotflügel des Autos war verbeult.", + "example_sentence_english": "The car's fender was dented.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25884 + }, + { + "word": "Krankheitserreger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathogen;germ", + "romanization": "Krankheitserreger", + "example_sentence_native": "Viele Krankheitserreger sind mikroskopisch klein.", + "example_sentence_english": "Many pathogens are microscopic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25885 + }, + { + "word": "Kubaner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cuban (person)", + "romanization": "Kubaner", + "example_sentence_native": "Er ist ein Kubaner, der in Berlin lebt.", + "example_sentence_english": "He is a Cuban who lives in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25887 + }, + { + "word": "Kulturhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultural center", + "romanization": "Kulturhaus", + "example_sentence_native": "Das Kulturhaus bietet viele Veranstaltungen an.", + "example_sentence_english": "The cultural center offers many events.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25888 + }, + { + "word": "Kunsthändler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art dealer", + "romanization": "Kunsthändler", + "example_sentence_native": "Der Kunsthändler präsentierte eine neue Sammlung.", + "example_sentence_english": "The art dealer presented a new collection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25889 + }, + { + "word": "Ladefläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loading area;cargo bed", + "romanization": "Ladefläche", + "example_sentence_native": "Die Ladefläche des Lastwagens war voll.", + "example_sentence_english": "The truck's loading area was full.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25890 + }, + { + "word": "Landesvorsitzender", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state chairman;chairperson", + "romanization": "Landesvorsitzender", + "example_sentence_native": "Der Landesvorsitzende hielt eine Rede.", + "example_sentence_english": "The state chairman gave a speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25891 + }, + { + "word": "Leuchter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chandelier;candelabra", + "romanization": "Leuchter", + "example_sentence_native": "Der alte Leuchter hing in der Mitte des Raumes.", + "example_sentence_english": "The old chandelier hung in the middle of the room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25894 + }, + { + "word": "Liane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liana;vine", + "romanization": "Liane", + "example_sentence_native": "Tarzan schwang sich an einer Liane durch den Dschungel.", + "example_sentence_english": "Tarzan swung through the jungle on a liana.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25895 + }, + { + "word": "Lineal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ruler", + "romanization": "Lineal", + "example_sentence_native": "Ich brauche ein Lineal, um eine gerade Linie zu ziehen.", + "example_sentence_english": "I need a ruler to draw a straight line.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25897 + }, + { + "word": "Mailadresse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "email address", + "romanization": "Mailadresse", + "example_sentence_native": "Bitte geben Sie Ihre Mailadresse ein.", + "example_sentence_english": "Please enter your email address.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25903 + }, + { + "word": "Massenproduktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mass production", + "romanization": "Massenproduktion", + "example_sentence_native": "Die Massenproduktion senkt die Kosten.", + "example_sentence_english": "Mass production lowers costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25909 + }, + { + "word": "Menstruation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "menstruation", + "romanization": "Menstruation", + "example_sentence_native": "Die Menstruation ist ein natürlicher Prozess.", + "example_sentence_english": "Menstruation is a natural process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25911 + }, + { + "word": "Mietrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenancy law", + "romanization": "Mietrecht", + "example_sentence_native": "Er kennt sich gut im Mietrecht aus.", + "example_sentence_english": "He is well-versed in tenancy law.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25913 + }, + { + "word": "Mitfahrgelegenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ride-sharing opportunity", + "romanization": "Mitfahrgelegenheit", + "example_sentence_native": "Ich suche eine Mitfahrgelegenheit nach Berlin.", + "example_sentence_english": "I'm looking for a ride-sharing opportunity to Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25914 + }, + { + "word": "Morgenröte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dawn", + "romanization": "Morgenröte", + "example_sentence_native": "Die Morgenröte färbte den Himmel rot.", + "example_sentence_english": "The dawn colored the sky red.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25915 + }, + { + "word": "Muskelkraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muscle power", + "romanization": "Muskelkraft", + "example_sentence_native": "Er bewegte den Stein mit reiner Muskelkraft.", + "example_sentence_english": "He moved the stone with pure muscle power.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25917 + }, + { + "word": "Männerchor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "male choir", + "romanization": "Männerchor", + "example_sentence_native": "Der Männerchor sang ein traditionelles Lied.", + "example_sentence_english": "The male choir sang a traditional song.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25918 + }, + { + "word": "Mäuschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little mouse", + "romanization": "Mäuschen", + "example_sentence_native": "Das kleine Mäuschen huschte über den Boden.", + "example_sentence_english": "The little mouse scurried across the floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25919 + }, + { + "word": "Mörser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortar", + "romanization": "Mörser", + "example_sentence_native": "Sie zermahlte die Kräuter in einem Mörser.", + "example_sentence_english": "She ground the herbs in a mortar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25920 + }, + { + "word": "Nachtwächter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "night watchman", + "romanization": "Nachtwächter", + "example_sentence_native": "Der Nachtwächter machte seine Runde durch die Stadt.", + "example_sentence_english": "The night watchman made his rounds through the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25922 + }, + { + "word": "Narzissmus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcissism", + "romanization": "Narzissmus", + "example_sentence_native": "Sein Narzissmus machte es ihm schwer, andere zu verstehen.", + "example_sentence_english": "His narcissism made it difficult for him to understand others.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25924 + }, + { + "word": "Nationalfeiertag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national holiday", + "romanization": "Nationalfeiertag", + "example_sentence_native": "Am Nationalfeiertag bleiben viele Geschäfte geschlossen.", + "example_sentence_english": "On the national holiday, many shops remain closed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25925 + }, + { + "word": "Naturfreund", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nature lover", + "romanization": "Naturfreund", + "example_sentence_native": "Als Naturfreund verbringt er viel Zeit im Wald.", + "example_sentence_english": "As a nature lover, he spends a lot of time in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25926 + }, + { + "word": "Natursekt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "natural sparkling wine;natural sekt", + "romanization": "Natursekt", + "example_sentence_native": "Wir haben einen köstlichen Natursekt zum Anstoßen.", + "example_sentence_english": "We have a delicious natural sparkling wine for toasting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25927 + }, + { + "word": "Nazizeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nazi era;Nazi period", + "romanization": "Nazizeit", + "example_sentence_native": "Viele Bücher wurden während der Nazizeit verboten.", + "example_sentence_english": "Many books were forbidden during the Nazi era.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25928 + }, + { + "word": "Netzpolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internet policy;net politics", + "romanization": "Netzpolitik", + "example_sentence_native": "Die Netzpolitik ist ein wichtiges Thema in der heutigen Gesellschaft.", + "example_sentence_english": "Internet policy is an important topic in today's society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25930 + }, + { + "word": "Nitrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nitrate", + "romanization": "Nitrat", + "example_sentence_native": "Hohe Nitratwerte im Wasser können schädlich sein.", + "example_sentence_english": "High nitrate levels in water can be harmful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25931 + }, + { + "word": "normalisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to normalize", + "romanization": "normalisieren", + "example_sentence_native": "Die Situation begann sich langsam zu normalisieren.", + "example_sentence_english": "The situation slowly began to normalize.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25932 + }, + { + "word": "Nutzfahrzeug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial vehicle;utility vehicle", + "romanization": "Nutzfahrzeug", + "example_sentence_native": "Ein Lastwagen ist ein typisches Nutzfahrzeug.", + "example_sentence_english": "A truck is a typical commercial vehicle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25935 + }, + { + "word": "Originaltitel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "original title", + "romanization": "Originaltitel", + "example_sentence_native": "Der Originaltitel des Films ist \"Die Verurteilten\".", + "example_sentence_english": "The original title of the film is \"The Shawshank Redemption\".", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25940 + }, + { + "word": "Ostblock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eastern Bloc", + "romanization": "Ostblock", + "example_sentence_native": "Viele Länder gehörten früher zum Ostblock.", + "example_sentence_english": "Many countries formerly belonged to the Eastern Bloc.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25941 + }, + { + "word": "Parabel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parable;parabola", + "romanization": "Parabel", + "example_sentence_native": "Die Geschichte ist eine Parabel über Geduld.", + "example_sentence_english": "The story is a parable about patience.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25946 + }, + { + "word": "Phosphat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phosphate", + "romanization": "Phosphat", + "example_sentence_native": "Phosphat ist ein wichtiger Nährstoff für Pflanzen.", + "example_sentence_english": "Phosphate is an important nutrient for plants.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25949 + }, + { + "word": "prahlen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boast;to brag", + "romanization": "prahlen", + "example_sentence_native": "Er prahlt gerne mit seinen Erfolgen.", + "example_sentence_english": "He likes to boast about his successes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25955 + }, + { + "word": "Puder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powder", + "romanization": "Puder", + "example_sentence_native": "Sie trug etwas Puder auf ihr Gesicht auf.", + "example_sentence_english": "She applied some powder to her face.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25957 + }, + { + "word": "Putschversuch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coup attempt", + "romanization": "Putschversuch", + "example_sentence_native": "Der Putschversuch wurde schnell niedergeschlagen.", + "example_sentence_english": "The coup attempt was quickly suppressed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25958 + }, + { + "word": "Raserei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frenzy", + "romanization": "Raserei", + "example_sentence_native": "Die Raserei des Sturms war beängstigend.", + "example_sentence_english": "The frenzy of the storm was frightening.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25961 + }, + { + "word": "raushalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to keep out", + "romanization": "raushalten", + "example_sentence_native": "Du solltest dich aus dieser Angelegenheit raushalten.", + "example_sentence_english": "You should stay out of this matter.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25962 + }, + { + "word": "Rechen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rake", + "romanization": "Rechen", + "example_sentence_native": "Ich brauche einen Rechen, um die Blätter zu sammeln.", + "example_sentence_english": "I need a rake to collect the leaves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25963 + }, + { + "word": "rechtspopulistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right-wing populist", + "romanization": "rechtspopulistisch", + "example_sentence_native": "Die Partei vertritt rechtspopulistische Ansichten.", + "example_sentence_english": "The party represents right-wing populist views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25964 + }, + { + "word": "Reorganisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reorganization", + "romanization": "Reorganisation", + "example_sentence_native": "Die Firma plant eine umfassende Reorganisation.", + "example_sentence_english": "The company is planning a comprehensive reorganization.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25965 + }, + { + "word": "Riesenrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ferris wheel", + "romanization": "Riesenrad", + "example_sentence_native": "Wir sind auf dem Riesenrad gefahren.", + "example_sentence_english": "We rode on the Ferris wheel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25967 + }, + { + "word": "Robotik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "robotics", + "romanization": "Robotik", + "example_sentence_native": "Die Robotik ist ein schnell wachsendes Feld.", + "example_sentence_english": "Robotics is a rapidly growing field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25968 + }, + { + "word": "Rohrleitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pipeline", + "romanization": "Rohrleitung", + "example_sentence_native": "Es gab ein Leck in der Rohrleitung.", + "example_sentence_english": "There was a leak in the pipeline.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25970 + }, + { + "word": "Rückbank", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back seat", + "romanization": "Rückbank", + "example_sentence_native": "Die Kinder sitzen auf der Rückbank.", + "example_sentence_english": "The children are sitting in the back seat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25975 + }, + { + "word": "sabotieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sabotage", + "romanization": "sabotieren", + "example_sentence_native": "Jemand versucht, das Projekt zu sabotieren.", + "example_sentence_english": "Someone is trying to sabotage the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25977 + }, + { + "word": "Samariter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Samaritan", + "romanization": "Samariter", + "example_sentence_native": "Er handelte wie ein guter Samariter und half dem Verletzten.", + "example_sentence_english": "He acted like a good Samaritan and helped the injured person.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25978 + }, + { + "word": "scheinheilig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypocritical", + "romanization": "scheinheilig", + "example_sentence_native": "Seine scheinheilige Art ärgert mich.", + "example_sentence_english": "His hypocritical manner annoys me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25980 + }, + { + "word": "Schieflage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tilt;imbalance;precarious situation", + "romanization": "Schieflage", + "example_sentence_native": "Das Unternehmen geriet in eine finanzielle Schieflage.", + "example_sentence_english": "The company got into a financial imbalance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25982 + }, + { + "word": "Schilf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reed;rush", + "romanization": "Schilf", + "example_sentence_native": "Am Ufer wächst hohes Schilf.", + "example_sentence_english": "Tall reeds grow on the bank.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25983 + }, + { + "word": "Schlachtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slaughter;butchering", + "romanization": "Schlachtung", + "example_sentence_native": "Die Schlachtung der Tiere fand auf dem Bauernhof statt.", + "example_sentence_english": "The slaughter of the animals took place on the farm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25984 + }, + { + "word": "schlendern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stroll;to saunter", + "romanization": "schlendern", + "example_sentence_native": "Wir schlenderten gemütlich durch den Park.", + "example_sentence_english": "We strolled leisurely through the park.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 25985 + }, + { + "word": "schonend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gentle;careful;mild", + "romanization": "schonend", + "example_sentence_native": "Verwenden Sie ein schonendes Waschmittel für empfindliche Stoffe.", + "example_sentence_english": "Use a gentle detergent for delicate fabrics.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 25987 + }, + { + "word": "Schuhwerk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footwear", + "romanization": "Schuhwerk", + "example_sentence_native": "Für die Wanderung ist festes Schuhwerk wichtig.", + "example_sentence_english": "Sturdy footwear is important for the hike.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25988 + }, + { + "word": "Schulalltag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school routine;school day", + "romanization": "Schulalltag", + "example_sentence_native": "Der Schulalltag kann manchmal sehr anstrengend sein.", + "example_sentence_english": "The school routine can sometimes be very exhausting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25989 + }, + { + "word": "Schulferien", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school holidays", + "romanization": "Schulferien", + "example_sentence_native": "Wann beginnen die Schulferien in diesem Jahr?", + "example_sentence_english": "When do the school holidays start this year?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25990 + }, + { + "word": "Schwenk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pan (camera);swivel;quick turn", + "romanization": "Schwenk", + "example_sentence_native": "Ein schneller Schwenk der Kamera zeigte die ganze Landschaft.", + "example_sentence_english": "A quick pan of the camera showed the entire landscape.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25992 + }, + { + "word": "seitwärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sideways", + "romanization": "seitwärts", + "example_sentence_native": "Er trat einen Schritt seitwärts, um Platz zu machen.", + "example_sentence_english": "He stepped one step sideways to make room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 25996 + }, + { + "word": "Selbstbestimmungsrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "right to self-determination", + "romanization": "Selbstbestimmungsrecht", + "example_sentence_native": "Das Selbstbestimmungsrecht der Völker ist ein wichtiges Prinzip.", + "example_sentence_english": "The right to self-determination of peoples is an important principle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25997 + }, + { + "word": "Selbsterkenntnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-knowledge;self-awareness", + "romanization": "Selbsterkenntnis", + "example_sentence_native": "Wahre Weisheit beginnt mit Selbsterkenntnis.", + "example_sentence_english": "True wisdom begins with self-knowledge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25998 + }, + { + "word": "Sellerie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "celery", + "romanization": "Sellerie", + "example_sentence_native": "Für die Suppe brauchen wir Sellerie und Karotten.", + "example_sentence_english": "For the soup, we need celery and carrots.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 25999 + }, + { + "word": "Seriosität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriousness;credibility", + "romanization": "Seriosität", + "example_sentence_native": "Seine Seriosität ist unbestreitbar.", + "example_sentence_english": "His seriousness is undeniable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26000 + }, + { + "word": "Siegtreffer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winning goal", + "romanization": "Siegtreffer", + "example_sentence_native": "Er erzielte den Siegtreffer in der letzten Minute.", + "example_sentence_english": "He scored the winning goal in the last minute.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26001 + }, + { + "word": "Smoking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuxedo;dinner jacket", + "romanization": "Smoking", + "example_sentence_native": "Er trug einen eleganten Smoking.", + "example_sentence_english": "He wore an elegant tuxedo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26008 + }, + { + "word": "Sonneneinstrahlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solar radiation;insolation", + "romanization": "Sonneneinstrahlung", + "example_sentence_native": "Die Sonneneinstrahlung ist im Sommer am stärksten.", + "example_sentence_english": "Solar radiation is strongest in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26011 + }, + { + "word": "Sozialsystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social system", + "romanization": "Sozialsystem", + "example_sentence_native": "Das Sozialsystem unterstützt Bedürftige.", + "example_sentence_english": "The social system supports those in need.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26013 + }, + { + "word": "Spülung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rinse;conditioner", + "romanization": "Spülung", + "example_sentence_native": "Nach dem Shampoo benutze ich eine Spülung.", + "example_sentence_english": "After shampoo, I use a conditioner.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26016 + }, + { + "word": "Staatsform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "form of government", + "romanization": "Staatsform", + "example_sentence_native": "Die Demokratie ist eine Staatsform.", + "example_sentence_english": "Democracy is a form of government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26017 + }, + { + "word": "stadtauswärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "out of town;city-outwards", + "romanization": "stadtauswärts", + "example_sentence_native": "Wir fahren stadtauswärts, um dem Verkehr zu entgehen.", + "example_sentence_english": "We drive out of town to avoid traffic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 26018 + }, + { + "word": "Statist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extra (in a film;play)", + "romanization": "Statist", + "example_sentence_native": "Er spielte einen Statist in dem neuen Film.", + "example_sentence_english": "He played an extra in the new film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26019 + }, + { + "word": "stauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jam;to accumulate", + "romanization": "stauen", + "example_sentence_native": "Der Verkehr staut sich auf der Autobahn.", + "example_sentence_english": "Traffic is jamming on the highway.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26020 + }, + { + "word": "Stimmabgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vote;ballot", + "romanization": "Stimmabgabe", + "example_sentence_native": "Die Stimmabgabe findet morgen statt.", + "example_sentence_english": "The vote will take place tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26022 + }, + { + "word": "stimulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stimulate", + "romanization": "stimulieren", + "example_sentence_native": "Kaffee kann die Konzentration stimulieren.", + "example_sentence_english": "Coffee can stimulate concentration.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26023 + }, + { + "word": "Streckenabschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "section of a route;track", + "romanization": "Streckenabschnitt", + "example_sentence_native": "Dieser Streckenabschnitt ist wegen Bauarbeiten gesperrt.", + "example_sentence_english": "This section of the route is closed due to construction work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26025 + }, + { + "word": "streckenweise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in stretches;intermittently", + "romanization": "streckenweise", + "example_sentence_native": "Die Straße ist streckenweise glatt.", + "example_sentence_english": "The road is intermittently slippery.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 26026 + }, + { + "word": "suboptimal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suboptimal", + "romanization": "suboptimal", + "example_sentence_native": "Die Ergebnisse waren suboptimal.", + "example_sentence_english": "The results were suboptimal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26027 + }, + { + "word": "Suffix", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suffix", + "romanization": "Suffix", + "example_sentence_native": "Das Wort „Freundlichkeit“ hat das Suffix „-keit“.", + "example_sentence_english": "The word \"Freundlichkeit\" has the suffix \"-keit\".", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26028 + }, + { + "word": "Synchronsprecher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dubbing actor;voice actor", + "romanization": "Synchronsprecher", + "example_sentence_native": "Er ist ein bekannter Synchronsprecher für Zeichentrickfilme.", + "example_sentence_english": "He is a well-known dubbing actor for animated films.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26030 + }, + { + "word": "Südafrikaner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South African (person)", + "romanization": "Südafrikaner", + "example_sentence_native": "Er ist ein Südafrikaner.", + "example_sentence_english": "He is a South African.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26031 + }, + { + "word": "tanzend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dancing", + "romanization": "tanzend", + "example_sentence_native": "Das tanzende Paar sah glücklich aus.", + "example_sentence_english": "The dancing couple looked happy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26032 + }, + { + "word": "tausendfach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thousandfold;thousands of times", + "romanization": "tausendfach", + "example_sentence_native": "Diese Methode wurde tausendfach erprobt.", + "example_sentence_english": "This method has been tested a thousandfold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 26033 + }, + { + "word": "thailändisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai", + "romanization": "thailändisch", + "example_sentence_native": "Sie kocht gerne thailändisches Essen.", + "example_sentence_english": "She likes to cook Thai food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26034 + }, + { + "word": "Tortur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torture;ordeal", + "romanization": "Tortur", + "example_sentence_native": "Die lange Wartezeit war eine echte Tortur.", + "example_sentence_english": "The long waiting time was a real ordeal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26036 + }, + { + "word": "umrühren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stir", + "romanization": "umrühren", + "example_sentence_native": "Bitte rühren Sie den Kaffee um.", + "example_sentence_english": "Please stir the coffee.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "rühren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26040 + }, + { + "word": "Umsiedlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resettlement;relocation", + "romanization": "Umsiedlung", + "example_sentence_native": "Die Umsiedlung der Bevölkerung war eine große Herausforderung.", + "example_sentence_english": "The resettlement of the population was a big challenge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26041 + }, + { + "word": "unanständig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indecent;improper", + "romanization": "unanständig", + "example_sentence_native": "Sein Verhalten war unanständig.", + "example_sentence_english": "His behavior was indecent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26042 + }, + { + "word": "Unfallflucht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hit and run (leaving the scene of an accident)", + "romanization": "Unfallflucht", + "example_sentence_native": "Unfallflucht ist eine Straftat.", + "example_sentence_english": "Hit and run is a criminal offense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26043 + }, + { + "word": "unklug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwise;imprudent", + "romanization": "unklug", + "example_sentence_native": "Es war eine unkluge Entscheidung.", + "example_sentence_english": "It was an unwise decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26044 + }, + { + "word": "unkritisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncritical", + "romanization": "unkritisch", + "example_sentence_native": "Er nimmt Informationen oft unkritisch auf.", + "example_sentence_english": "He often accepts information uncritically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26045 + }, + { + "word": "Unschuldsvermutung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumption of innocence", + "romanization": "Unschuldsvermutung", + "example_sentence_native": "Die Unschuldsvermutung ist ein Grundsatz des Rechtsstaats.", + "example_sentence_english": "The presumption of innocence is a principle of the rule of law.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26046 + }, + { + "word": "unseriös", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disreputable;untrustworthy", + "romanization": "unseriös", + "example_sentence_native": "Das Angebot wirkte unseriös.", + "example_sentence_english": "The offer seemed disreputable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26047 + }, + { + "word": "Unterhändler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "negotiator", + "romanization": "Unterhändler", + "example_sentence_native": "Die Unterhändler trafen sich zu weiteren Gesprächen.", + "example_sentence_english": "The negotiators met for further talks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26048 + }, + { + "word": "Unwahrheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untruth;falsehood", + "romanization": "Unwahrheit", + "example_sentence_native": "Er sagte eine Unwahrheit.", + "example_sentence_english": "He told an untruth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26049 + }, + { + "word": "Vatertag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Father's Day", + "romanization": "Vatertag", + "example_sentence_native": "Wir feiern Vatertag im Mai.", + "example_sentence_english": "We celebrate Father's Day in May.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26051 + }, + { + "word": "Vereinsleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "club life;association life", + "romanization": "Vereinsleben", + "example_sentence_native": "Das Vereinsleben ist in Deutschland sehr wichtig.", + "example_sentence_english": "Club life is very important in Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26052 + }, + { + "word": "Verkehrszeichen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traffic sign", + "romanization": "Verkehrszeichen", + "example_sentence_native": "Achten Sie auf das Verkehrszeichen.", + "example_sentence_english": "Pay attention to the traffic sign.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26053 + }, + { + "word": "Verlinkung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linking;link (on a website)", + "romanization": "Verlinkung", + "example_sentence_native": "Die Verlinkung zu externen Seiten ist erlaubt.", + "example_sentence_english": "Linking to external pages is allowed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26054 + }, + { + "word": "verpachten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to lease out;to rent out (land;property)", + "romanization": "verpachten", + "example_sentence_native": "Er möchte sein Land verpachten.", + "example_sentence_english": "He wants to lease out his land.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26056 + }, + { + "word": "verschießen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shoot away;to use up (ammunition);to fade (color)", + "romanization": "verschießen", + "example_sentence_native": "Die Farbe des Stoffes ist verschossen.", + "example_sentence_english": "The color of the fabric has faded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26057 + }, + { + "word": "versprühen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spray;to spread (e.g.;charm)", + "romanization": "versprühen", + "example_sentence_native": "Sie versprühte ihren Lieblingsduft.", + "example_sentence_english": "She sprayed her favorite scent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26058 + }, + { + "word": "Vertraulichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confidentiality;privacy", + "romanization": "Vertraulichkeit", + "example_sentence_native": "Wir garantieren absolute Vertraulichkeit.", + "example_sentence_english": "We guarantee absolute confidentiality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26059 + }, + { + "word": "Vetternwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nepotism;cronyism", + "romanization": "Vetternwirtschaft", + "example_sentence_native": "Vetternwirtschaft ist in vielen Ländern ein großes Problem.", + "example_sentence_english": "Nepotism is a big problem in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26060 + }, + { + "word": "Vlies", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleece;non-woven fabric", + "romanization": "Vlies", + "example_sentence_native": "Das Vlies ist sehr weich und warm.", + "example_sentence_english": "The fleece is very soft and warm.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26063 + }, + { + "word": "Volkswirtschaftslehre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economics (field of study)", + "romanization": "Volkswirtschaftslehre", + "example_sentence_native": "Sie studiert Volkswirtschaftslehre an der Universität.", + "example_sentence_english": "She studies economics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26064 + }, + { + "word": "Vögelchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little bird;birdie", + "romanization": "Vögelchen", + "example_sentence_native": "Ein kleines Vögelchen saß auf dem Ast.", + "example_sentence_english": "A little bird sat on the branch.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26066 + }, + { + "word": "Waldstück", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patch of forest;small wood", + "romanization": "Waldstück", + "example_sentence_native": "Hinter dem Haus ist ein kleines Waldstück.", + "example_sentence_english": "Behind the house is a small patch of forest.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26067 + }, + { + "word": "Wallfahrtskirche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrimage church", + "romanization": "Wallfahrtskirche", + "example_sentence_native": "Die Wallfahrtskirche zieht jedes Jahr viele Pilger an.", + "example_sentence_english": "The pilgrimage church attracts many pilgrims every year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26070 + }, + { + "word": "Waschbär", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raccoon", + "romanization": "Waschbär", + "example_sentence_native": "Ein Waschbär hat unseren Mülleimer durchwühlt.", + "example_sentence_english": "A raccoon rummaged through our trash can.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26071 + }, + { + "word": "Wasserkocher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electric kettle", + "romanization": "Wasserkocher", + "example_sentence_native": "Ich brauche den Wasserkocher für meinen Tee.", + "example_sentence_english": "I need the electric kettle for my tea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26072 + }, + { + "word": "Watte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cotton wool;wadding", + "romanization": "Watte", + "example_sentence_native": "Die Wunde wurde mit Watte gereinigt.", + "example_sentence_english": "The wound was cleaned with cotton wool.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26073 + }, + { + "word": "Welthandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world trade", + "romanization": "Welthandel", + "example_sentence_native": "Der Welthandel hat in den letzten Jahrzehnten stark zugenommen.", + "example_sentence_english": "World trade has increased significantly in recent decades.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26075 + }, + { + "word": "Weltkarte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "world map", + "romanization": "Weltkarte", + "example_sentence_native": "An der Wand hängt eine große Weltkarte.", + "example_sentence_english": "A large world map hangs on the wall.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26076 + }, + { + "word": "Weltspitze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world's top;world-class", + "romanization": "Weltspitze", + "example_sentence_native": "Dieses Unternehmen gehört zur Weltspitze in seiner Branche.", + "example_sentence_english": "This company belongs to the world's top in its industry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26077 + }, + { + "word": "Werkzeugmaschine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "machine tool", + "romanization": "Werkzeugmaschine", + "example_sentence_native": "Die Produktion verwendet moderne Werkzeugmaschinen.", + "example_sentence_english": "Production uses modern machine tools.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26078 + }, + { + "word": "Widerstandskämpfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance fighter", + "romanization": "Widerstandskämpfer", + "example_sentence_native": "Der Widerstandskämpfer wurde für seinen Mut geehrt.", + "example_sentence_english": "The resistance fighter was honored for his courage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26081 + }, + { + "word": "Wilderer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poacher", + "romanization": "Wilderer", + "example_sentence_native": "Der Wilderer wurde im Wald gefasst.", + "example_sentence_english": "The poacher was caught in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26083 + }, + { + "word": "Wirkungsweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mode of action", + "romanization": "Wirkungsweise", + "example_sentence_native": "Die Wirkungsweise des Medikaments ist komplex.", + "example_sentence_english": "The mode of action of the medication is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26084 + }, + { + "word": "Wirtschaftsrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commercial law", + "romanization": "Wirtschaftsrecht", + "example_sentence_native": "Er studiert Wirtschaftsrecht an der Universität.", + "example_sentence_english": "He studies commercial law at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26085 + }, + { + "word": "Zahnmedizin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dentistry", + "romanization": "Zahnmedizin", + "example_sentence_native": "Sie hat sich für ein Studium der Zahnmedizin entschieden.", + "example_sentence_english": "She decided to study dentistry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26086 + }, + { + "word": "Zufluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflow", + "romanization": "Zufluss", + "example_sentence_native": "Der Fluss hat viele kleine Zuflüsse.", + "example_sentence_english": "The river has many small tributaries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26087 + }, + { + "word": "Zuhilfenahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assistance", + "romanization": "Zuhilfenahme", + "example_sentence_native": "Die Lösung wurde unter Zuhilfenahme externer Experten gefunden.", + "example_sentence_english": "The solution was found with the assistance of external experts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26088 + }, + { + "word": "zusammentun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to team up", + "romanization": "zusammentun", + "example_sentence_native": "Wir sollten uns zusammentun, um das Projekt zu beenden.", + "example_sentence_english": "We should team up to finish the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "tun", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26089 + }, + { + "word": "Zuschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cut", + "romanization": "Zuschnitt", + "example_sentence_native": "Der Zuschnitt des Kleides ist sehr modern.", + "example_sentence_english": "The cut of the dress is very modern.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26090 + }, + { + "word": "Züchtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breeding", + "romanization": "Züchtung", + "example_sentence_native": "Die neue Züchtung ist resistenter gegen Krankheiten.", + "example_sentence_english": "The new breeding is more resistant to diseases.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26092 + }, + { + "word": "Ökumene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecumenism", + "romanization": "Ökumene", + "example_sentence_native": "Die Ökumene fördert die Einheit der christlichen Kirchen.", + "example_sentence_english": "Ecumenism promotes the unity of Christian churches.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26093 + }, + { + "word": "überhöht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessive", + "romanization": "überhöht", + "example_sentence_native": "Die Preise in diesem Restaurant sind überhöht.", + "example_sentence_english": "The prices in this restaurant are excessive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26094 + }, + { + "word": "Überlassung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfer", + "romanization": "Überlassung", + "example_sentence_native": "Die Überlassung der Wohnung erfolgt nach Vertragsunterzeichnung.", + "example_sentence_english": "The transfer of the apartment takes place after contract signing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26095 + }, + { + "word": "überstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transfer", + "romanization": "überstellen", + "example_sentence_native": "Der Gefangene wird in ein anderes Gefängnis überstellt.", + "example_sentence_english": "The prisoner will be transferred to another prison.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26096 + }, + { + "word": "übersäen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to strew", + "romanization": "übersäen", + "example_sentence_native": "Der Himmel war mit Sternen übersät.", + "example_sentence_english": "The sky was strewn with stars.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26097 + }, + { + "word": "übertreten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transgress", + "romanization": "übertreten", + "example_sentence_native": "Er hat die Regeln übertreten.", + "example_sentence_english": "He violated the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26098 + }, + { + "word": "abendländisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Western;occidental", + "romanization": "abendländisch", + "example_sentence_native": "Die abendländische Kultur hat viele Einflüsse.", + "example_sentence_english": "Western culture has many influences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26101 + }, + { + "word": "abhandeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deal with;to discuss", + "romanization": "abhandeln", + "example_sentence_native": "Wir müssen dieses Thema noch abhandeln.", + "example_sentence_english": "We still need to deal with this topic.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "handeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26102 + }, + { + "word": "abgerundet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rounded;well-rounded", + "romanization": "abgerundet", + "example_sentence_native": "Das Design ist sehr abgerundet.", + "example_sentence_english": "The design is very rounded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26103 + }, + { + "word": "abspeichern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to save (data)", + "romanization": "abspeichern", + "example_sentence_native": "Vergessen Sie nicht, die Datei abzuspeichern.", + "example_sentence_english": "Don't forget to save the file.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "speichern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26104 + }, + { + "word": "abreisen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to depart;to leave", + "romanization": "abreisen", + "example_sentence_native": "Wir werden morgen früh abreisen.", + "example_sentence_english": "We will depart early tomorrow morning.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "reisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26105 + }, + { + "word": "Abwandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variation;modification", + "romanization": "Abwandlung", + "example_sentence_native": "Dies ist eine interessante Abwandlung des Originals.", + "example_sentence_english": "This is an interesting variation of the original.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26106 + }, + { + "word": "Achtel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one eighth", + "romanization": "Achtel", + "example_sentence_native": "Ein Achtel des Kuchens ist übrig.", + "example_sentence_english": "One eighth of the cake is left.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 26107 + }, + { + "word": "Affront", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affront;insult", + "romanization": "Affront", + "example_sentence_native": "Seine Bemerkung war ein direkter Affront.", + "example_sentence_english": "His remark was a direct affront.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26108 + }, + { + "word": "Aktivismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activism", + "romanization": "Aktivismus", + "example_sentence_native": "Der Aktivismus der Jugend ist beeindruckend.", + "example_sentence_english": "The activism of the youth is impressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26109 + }, + { + "word": "Aluhut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tin foil hat", + "romanization": "Aluhut", + "example_sentence_native": "Er trägt einen Aluhut, um sich vor Strahlen zu schützen.", + "example_sentence_english": "He wears a tin foil hat to protect himself from radiation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26110 + }, + { + "word": "Amtmann", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official;bailiff", + "romanization": "Amtmann", + "example_sentence_native": "Der Amtmann verwaltete die Ländereien.", + "example_sentence_english": "The official administered the lands.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26112 + }, + { + "word": "anbeten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to worship;to adore", + "romanization": "anbeten", + "example_sentence_native": "Viele Menschen anbeten einen Gott.", + "example_sentence_english": "Many people worship a god.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "beten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26113 + }, + { + "word": "angleichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adapt;to adjust;to assimilate", + "romanization": "angleichen", + "example_sentence_native": "Die Preise müssen sich dem Markt angleichen.", + "example_sentence_english": "The prices must adapt to the market.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "gleichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26115 + }, + { + "word": "anhäufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accumulate;to pile up", + "romanization": "anhäufen", + "example_sentence_native": "Er hat viel Wissen angehäuft.", + "example_sentence_english": "He has accumulated a lot of knowledge.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "häufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26116 + }, + { + "word": "anschneiden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut into;to broach (a subject)", + "romanization": "anschneiden", + "example_sentence_native": "Er wollte das Thema nicht anschneiden.", + "example_sentence_english": "He didn't want to broach the subject.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schneiden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26117 + }, + { + "word": "Anstiftung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incitement;instigation", + "romanization": "Anstiftung", + "example_sentence_native": "Die Anstiftung zur Gewalt ist strafbar.", + "example_sentence_english": "Incitement to violence is punishable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26118 + }, + { + "word": "Aufgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ascent;rise;entrance", + "romanization": "Aufgang", + "example_sentence_native": "Der Aufgang zum Berg war steil.", + "example_sentence_english": "The ascent to the mountain was steep.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26120 + }, + { + "word": "aufsteigend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascending;rising", + "romanization": "aufsteigend", + "example_sentence_native": "Wir sahen den aufsteigenden Rauch.", + "example_sentence_english": "We saw the rising smoke.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26121 + }, + { + "word": "Augenzwinkern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wink;twinkle of an eye", + "romanization": "Augenzwinkern", + "example_sentence_native": "Er gab ihr ein Augenzwinkern.", + "example_sentence_english": "He gave her a wink.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26122 + }, + { + "word": "Ausbildungsberuf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprenticeship profession;occupation", + "romanization": "Ausbildungsberuf", + "example_sentence_native": "Welchen Ausbildungsberuf möchtest du lernen?", + "example_sentence_english": "Which apprenticeship profession do you want to learn?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26123 + }, + { + "word": "Bankräuber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank robber", + "romanization": "Bankräuber", + "example_sentence_native": "Der Bankräuber wurde von der Polizei gefasst.", + "example_sentence_english": "The bank robber was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26124 + }, + { + "word": "barmherzig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merciful;compassionate", + "romanization": "barmherzig", + "example_sentence_native": "Sie war sehr barmherzig zu den Armen.", + "example_sentence_english": "She was very merciful to the poor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26126 + }, + { + "word": "Bauelement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building component;structural element", + "romanization": "Bauelement", + "example_sentence_native": "Jedes Bauelement muss sorgfältig geprüft werden.", + "example_sentence_english": "Every building component must be carefully checked.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26127 + }, + { + "word": "Baumhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "treehouse", + "romanization": "Baumhaus", + "example_sentence_native": "Die Kinder spielen gerne im Baumhaus.", + "example_sentence_english": "The children like to play in the treehouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26128 + }, + { + "word": "Bauwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction industry", + "romanization": "Bauwirtschaft", + "example_sentence_native": "Die Bauwirtschaft erlebt einen Aufschwung.", + "example_sentence_english": "The construction industry is experiencing a boom.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26129 + }, + { + "word": "Beatmung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ventilation;artificial respiration", + "romanization": "Beatmung", + "example_sentence_native": "Der Patient benötigte Beatmung.", + "example_sentence_english": "The patient required artificial respiration.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26131 + }, + { + "word": "beichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confess", + "romanization": "beichten", + "example_sentence_native": "Er musste seine Sünden beichten.", + "example_sentence_english": "He had to confess his sins.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26132 + }, + { + "word": "beileibe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "by no means;certainly not", + "romanization": "beileibe", + "example_sentence_native": "Das ist beileibe nicht die ganze Wahrheit.", + "example_sentence_english": "That is by no means the whole truth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 26133 + }, + { + "word": "beistehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assist;to stand by", + "romanization": "beistehen", + "example_sentence_native": "Er wird dir in schwierigen Zeiten beistehen.", + "example_sentence_english": "He will stand by you in difficult times.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "stehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26135 + }, + { + "word": "belastbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resilient;able to bear loads;robust", + "romanization": "belastbar", + "example_sentence_native": "Sie ist eine sehr belastbare Person.", + "example_sentence_english": "She is a very resilient person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26136 + }, + { + "word": "beratend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advisory;consulting", + "romanization": "beratend", + "example_sentence_native": "Er arbeitet in einer beratenden Funktion.", + "example_sentence_english": "He works in an advisory capacity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26137 + }, + { + "word": "Berufsverbot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professional ban;occupational ban", + "romanization": "Berufsverbot", + "example_sentence_native": "Er erhielt ein Berufsverbot wegen Fehlverhaltens.", + "example_sentence_english": "He received a professional ban due to misconduct.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26138 + }, + { + "word": "Bevölkerungsentwicklung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "population development;trend", + "romanization": "Bevölkerungsentwicklung", + "example_sentence_native": "Die Bevölkerungsentwicklung ist ein wichtiges Thema.", + "example_sentence_english": "Population development is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26139 + }, + { + "word": "Blasphemie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blasphemy", + "romanization": "Blasphemie", + "example_sentence_native": "Er wurde der Blasphemie beschuldigt.", + "example_sentence_english": "He was accused of blasphemy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26140 + }, + { + "word": "Bordstein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curb", + "romanization": "Bordstein", + "example_sentence_native": "Er stolperte über den Bordstein.", + "example_sentence_english": "He stumbled over the curb.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26144 + }, + { + "word": "Brandanschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arson attack", + "romanization": "Brandanschlag", + "example_sentence_native": "Die Polizei ermittelt nach dem Brandanschlag.", + "example_sentence_english": "The police are investigating after the arson attack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26146 + }, + { + "word": "Brennstoffzelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fuel cell", + "romanization": "Brennstoffzelle", + "example_sentence_native": "Die Brennstoffzelle wandelt chemische Energie in elektrische Energie um.", + "example_sentence_english": "The fuel cell converts chemical energy into electrical energy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26147 + }, + { + "word": "Bundeshaushalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal budget", + "romanization": "Bundeshaushalt", + "example_sentence_native": "Der Bundestag hat den Bundeshaushalt verabschiedet.", + "example_sentence_english": "The Bundestag has passed the federal budget.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26148 + }, + { + "word": "Bundesparteitag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federal party conference", + "romanization": "Bundesparteitag", + "example_sentence_native": "Der Bundesparteitag findet nächste Woche statt.", + "example_sentence_english": "The federal party conference will take place next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26149 + }, + { + "word": "Böe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gust", + "romanization": "Böe", + "example_sentence_native": "Eine starke Böe riss den Regenschirm weg.", + "example_sentence_english": "A strong gust ripped away the umbrella.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26151 + }, + { + "word": "Clou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highlight;main point", + "romanization": "Clou", + "example_sentence_native": "Der Clou der Geschichte war das unerwartete Ende.", + "example_sentence_english": "The highlight of the story was the unexpected ending.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "discard", + "word_frequency": 26159 + }, + { + "word": "daherkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come from;to originate", + "romanization": "daherkommen", + "example_sentence_native": "Woher kommt diese Idee daher?", + "example_sentence_english": "Where does this idea come from?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "daher", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26168 + }, + { + "word": "Deutschlehrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "German teacher", + "romanization": "Deutschlehrer", + "example_sentence_native": "Mein Deutschlehrer ist sehr nett.", + "example_sentence_english": "My German teacher is very nice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26170 + }, + { + "word": "dreidimensional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "three-dimensional", + "romanization": "dreidimensional", + "example_sentence_native": "Das ist ein dreidimensionales Modell.", + "example_sentence_english": "That is a three-dimensional model.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26178 + }, + { + "word": "dubios", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dubious;shady", + "romanization": "dubios", + "example_sentence_native": "Er machte ein dubioses Geschäft.", + "example_sentence_english": "He made a dubious deal.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26179 + }, + { + "word": "Engelchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little angel", + "romanization": "Engelchen", + "example_sentence_native": "Das kleine Engelchen sang ein Lied.", + "example_sentence_english": "The little angel sang a song.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26185 + }, + { + "word": "entbehrlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispensable", + "romanization": "entbehrlich", + "example_sentence_native": "Diese Information ist entbehrlich.", + "example_sentence_english": "This information is dispensable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26186 + }, + { + "word": "entledigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to get rid of", + "romanization": "entledigen", + "example_sentence_native": "Er wollte sich der alten Möbel entledigen.", + "example_sentence_english": "He wanted to get rid of the old furniture.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26187 + }, + { + "word": "entlehnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to borrow;to derive", + "romanization": "entlehnen", + "example_sentence_native": "Viele Wörter im Deutschen sind aus dem Lateinischen entlehnt.", + "example_sentence_english": "Many words in German are borrowed from Latin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26188 + }, + { + "word": "entreißen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to snatch away", + "romanization": "entreißen", + "example_sentence_native": "Er versuchte, ihr die Tasche zu entreißen.", + "example_sentence_english": "He tried to snatch the bag away from her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26189 + }, + { + "word": "Erfahrungswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empirical value", + "romanization": "Erfahrungswert", + "example_sentence_native": "Basierend auf Erfahrungswerten können wir eine bessere Schätzung abgeben.", + "example_sentence_english": "Based on empirical values, we can make a better estimate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26192 + }, + { + "word": "ernüchternd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sobering;disillusioning", + "romanization": "ernüchternd", + "example_sentence_native": "Die Ergebnisse der Studie waren ernüchternd.", + "example_sentence_english": "The results of the study were sobering.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26196 + }, + { + "word": "erstarken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grow stronger", + "romanization": "erstarken", + "example_sentence_native": "Die Wirtschaft begann, wieder zu erstarken.", + "example_sentence_english": "The economy began to grow stronger again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26197 + }, + { + "word": "Esche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ash tree", + "romanization": "Esche", + "example_sentence_native": "Die Esche ist ein hoher Baum.", + "example_sentence_english": "The ash tree is a tall tree.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26198 + }, + { + "word": "Esslöffel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablespoon", + "romanization": "Esslöffel", + "example_sentence_native": "Bitte gib mir einen Esslöffel Zucker.", + "example_sentence_english": "Please give me a tablespoon of sugar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26199 + }, + { + "word": "Etymologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "etymology", + "romanization": "Etymologie", + "example_sentence_native": "Die Etymologie des Wortes ist faszinierend.", + "example_sentence_english": "The etymology of the word is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26201 + }, + { + "word": "Festtag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holiday;feast day", + "romanization": "Festtag", + "example_sentence_native": "Weihnachten ist ein wichtiger Festtag.", + "example_sentence_english": "Christmas is an important holiday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26209 + }, + { + "word": "Feuerstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flint;firestone", + "romanization": "Feuerstein", + "example_sentence_native": "Ein Feuerstein kann Funken erzeugen.", + "example_sentence_english": "A flint can produce sparks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26210 + }, + { + "word": "Fleischhauer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "butcher (Austrian;Southern German)", + "romanization": "Fleischhauer", + "example_sentence_native": "Der Fleischhauer schneidet das Fleisch.", + "example_sentence_english": "The butcher cuts the meat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26211 + }, + { + "word": "Fluglärm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aircraft noise", + "romanization": "Fluglärm", + "example_sentence_native": "Fluglärm ist ein Problem in der Nähe des Flughafens.", + "example_sentence_english": "Aircraft noise is a problem near the airport.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26213 + }, + { + "word": "Fregatte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frigate", + "romanization": "Fregatte", + "example_sentence_native": "Eine Fregatte ist ein Kriegsschiff.", + "example_sentence_english": "A frigate is a warship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26214 + }, + { + "word": "Fundstelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "find spot;discovery site;reference", + "romanization": "Fundstelle", + "example_sentence_native": "Die Archäologen entdeckten eine neue Fundstelle.", + "example_sentence_english": "The archaeologists discovered a new find spot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26216 + }, + { + "word": "Funktionsfähigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "functionality;operational capability", + "romanization": "Funktionsfähigkeit", + "example_sentence_native": "Die Funktionsfähigkeit des Systems muss gewährleistet sein.", + "example_sentence_english": "The functionality of the system must be ensured.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26217 + }, + { + "word": "garnieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to garnish", + "romanization": "garnieren", + "example_sentence_native": "Sie können den Salat mit frischen Kräutern garnieren.", + "example_sentence_english": "You can garnish the salad with fresh herbs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26221 + }, + { + "word": "Geburtsstadt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birthplace (city of birth)", + "romanization": "Geburtsstadt", + "example_sentence_native": "Meine Geburtsstadt ist Berlin.", + "example_sentence_english": "My birthplace is Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26222 + }, + { + "word": "gefroren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frozen", + "romanization": "gefroren", + "example_sentence_native": "Das Wasser im See ist gefroren.", + "example_sentence_english": "The water in the lake is frozen.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26223 + }, + { + "word": "Gefährtin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female companion", + "romanization": "Gefährtin", + "example_sentence_native": "Sie war seine treue Gefährtin auf der Reise.", + "example_sentence_english": "She was his loyal female companion on the journey.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26224 + }, + { + "word": "Geldbetrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amount of money", + "romanization": "Geldbetrag", + "example_sentence_native": "Er spendete einen großen Geldbetrag für wohltätige Zwecke.", + "example_sentence_english": "He donated a large amount of money for charity.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26225 + }, + { + "word": "Genom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genome", + "romanization": "Genom", + "example_sentence_native": "Das menschliche Genom wurde entschlüsselt.", + "example_sentence_english": "The human genome has been deciphered.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26227 + }, + { + "word": "Gesamtsieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall victory", + "romanization": "Gesamtsieg", + "example_sentence_native": "Das Team feierte den Gesamtsieg in der Meisterschaft.", + "example_sentence_english": "The team celebrated the overall victory in the championship.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26229 + }, + { + "word": "Geschäftshaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commercial building", + "romanization": "Geschäftshaus", + "example_sentence_native": "Das neue Geschäftshaus bietet viele Büros und Läden.", + "example_sentence_english": "The new commercial building offers many offices and shops.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26230 + }, + { + "word": "Gesellschaftsordnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social order", + "romanization": "Gesellschaftsordnung", + "example_sentence_native": "Die Gesellschaftsordnung hat sich im Laufe der Jahrhunderte verändert.", + "example_sentence_english": "The social order has changed over the centuries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26231 + }, + { + "word": "Gewaltverbrechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violent crime", + "romanization": "Gewaltverbrechen", + "example_sentence_native": "Die Polizei untersucht ein schweres Gewaltverbrechen.", + "example_sentence_english": "The police are investigating a serious violent crime.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26232 + }, + { + "word": "Giesserei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundry", + "romanization": "Giesserei", + "example_sentence_native": "Die alte Giesserei wurde in ein Museum umgewandelt.", + "example_sentence_english": "The old foundry was converted into a museum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26233 + }, + { + "word": "Grauzone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grey area", + "romanization": "Grauzone", + "example_sentence_native": "Das ist eine Grauzone im Gesetz.", + "example_sentence_english": "That is a grey area in the law.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26236 + }, + { + "word": "Greis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "old man", + "romanization": "Greis", + "example_sentence_native": "Ein alter Greis saß auf der Parkbank.", + "example_sentence_english": "An old man sat on the park bench.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26237 + }, + { + "word": "Grusswort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welcoming address", + "romanization": "Grusswort", + "example_sentence_native": "Der Bürgermeister hielt ein kurzes Grusswort.", + "example_sentence_english": "The mayor gave a short welcoming address.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26240 + }, + { + "word": "Grünanlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "green space", + "romanization": "Grünanlage", + "example_sentence_native": "Die Stadt plant eine neue Grünanlage im Zentrum.", + "example_sentence_english": "The city is planning a new green space in the center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26241 + }, + { + "word": "Handelsbeziehung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade relationship", + "romanization": "Handelsbeziehung", + "example_sentence_native": "Die Handelsbeziehungen zwischen den Ländern sind stark.", + "example_sentence_english": "The trade relationships between the countries are strong.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26243 + }, + { + "word": "Hauptursache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main cause", + "romanization": "Hauptursache", + "example_sentence_native": "Die Hauptursache des Problems ist noch unklar.", + "example_sentence_english": "The main cause of the problem is still unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26244 + }, + { + "word": "Hausbesuch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home visit", + "romanization": "Hausbesuch", + "example_sentence_native": "Der Arzt machte einen Hausbesuch.", + "example_sentence_english": "The doctor made a home visit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26245 + }, + { + "word": "Helferin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female helper", + "romanization": "Helferin", + "example_sentence_native": "Die Helferin unterstützte uns bei der Arbeit.", + "example_sentence_english": "The female helper assisted us with the work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26247 + }, + { + "word": "Herzklopfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heart palpitations", + "romanization": "Herzklopfen", + "example_sentence_native": "Vor dem Auftritt hatte sie starkes Herzklopfen.", + "example_sentence_english": "Before the performance, she had strong heart palpitations.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26250 + }, + { + "word": "Himmelskörper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celestial body", + "romanization": "Himmelskörper", + "example_sentence_native": "Sterne und Planeten sind Himmelskörper.", + "example_sentence_english": "Stars and planets are celestial bodies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26251 + }, + { + "word": "Hinterachse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rear axle", + "romanization": "Hinterachse", + "example_sentence_native": "Die Hinterachse des Autos muss repariert werden.", + "example_sentence_english": "The car's rear axle needs to be repaired.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26252 + }, + { + "word": "Hoheitsgebiet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereign territory", + "romanization": "Hoheitsgebiet", + "example_sentence_native": "Das Schiff befand sich im Hoheitsgebiet eines anderen Landes.", + "example_sentence_english": "The ship was in the sovereign territory of another country.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26255 + }, + { + "word": "Hoodie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hoodie", + "romanization": "Hoodie", + "example_sentence_native": "Er trug einen bequemen Hoodie.", + "example_sentence_english": "He wore a comfortable hoodie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "discard", + "word_frequency": 26256 + }, + { + "word": "häkeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crochet", + "romanization": "häkeln", + "example_sentence_native": "Meine Grossmutter liebt es zu häkeln.", + "example_sentence_english": "My grandmother loves to crochet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26257 + }, + { + "word": "Händedruck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handshake", + "romanization": "Händedruck", + "example_sentence_native": "Ein fester Händedruck ist wichtig.", + "example_sentence_english": "A firm handshake is important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26258 + }, + { + "word": "Hörensagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hearsay", + "romanization": "Hörensagen", + "example_sentence_native": "Das ist nur Hörensagen, keine Fakten.", + "example_sentence_english": "That's just hearsay, not facts.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26259 + }, + { + "word": "innerdeutsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inner-German", + "romanization": "innerdeutsch", + "example_sentence_native": "Die innerdeutsche Grenze war eine wichtige Trennlinie.", + "example_sentence_english": "The inner-German border was an important dividing line.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26260 + }, + { + "word": "Intermezzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interlude", + "romanization": "Intermezzo", + "example_sentence_native": "Das kurze Intermezzo bot eine willkommene Pause.", + "example_sentence_english": "The short interlude offered a welcome break.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26261 + }, + { + "word": "israelitisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Israelite;Israeli (adj.)", + "romanization": "israelitisch", + "example_sentence_native": "Die israelitische Geschichte ist sehr alt.", + "example_sentence_english": "The Israelite history is very old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26263 + }, + { + "word": "Italienerin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Italian woman", + "romanization": "Italienerin", + "example_sentence_native": "Sie ist eine Italienerin aus Rom.", + "example_sentence_english": "She is an Italian woman from Rome.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26264 + }, + { + "word": "Jugendzentrum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youth center", + "romanization": "Jugendzentrum", + "example_sentence_native": "Das Jugendzentrum bietet viele Aktivitäten an.", + "example_sentence_english": "The youth center offers many activities.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26270 + }, + { + "word": "Junggeselle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bachelor", + "romanization": "Junggeselle", + "example_sentence_native": "Er ist ein überzeugter Junggeselle.", + "example_sentence_english": "He is a convinced bachelor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26271 + }, + { + "word": "jäh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abrupt;sudden", + "romanization": "jäh", + "example_sentence_native": "Die jäh endende Straße überraschte uns.", + "example_sentence_english": "The abruptly ending road surprised us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26273 + }, + { + "word": "Kapitalanlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital investment", + "romanization": "Kapitalanlage", + "example_sentence_native": "Eine gute Kapitalanlage kann hohe Renditen bringen.", + "example_sentence_english": "A good capital investment can yield high returns.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26274 + }, + { + "word": "karg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meager;sparse;barren", + "romanization": "karg", + "example_sentence_native": "Die Landschaft war karg und steinig.", + "example_sentence_english": "The landscape was meager and stony.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26275 + }, + { + "word": "Karies", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tooth decay;cavities", + "romanization": "Karies", + "example_sentence_native": "Regelmäßiges Zähneputzen beugt Karies vor.", + "example_sentence_english": "Regular brushing prevents tooth decay.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26276 + }, + { + "word": "Katzenfutter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cat food", + "romanization": "Katzenfutter", + "example_sentence_native": "Ich muss neues Katzenfutter kaufen.", + "example_sentence_english": "I need to buy new cat food.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26277 + }, + { + "word": "Kennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identifier;identification;designation", + "romanization": "Kennung", + "example_sentence_native": "Bitte geben Sie Ihre Kennung ein.", + "example_sentence_english": "Please enter your identifier.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26278 + }, + { + "word": "Kernstück", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "core piece", + "romanization": "Kernstück", + "example_sentence_native": "Das Kernstück des Projekts ist die neue Software.", + "example_sentence_english": "The core piece of the project is the new software.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26280 + }, + { + "word": "Kinderklinik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "children's hospital", + "romanization": "Kinderklinik", + "example_sentence_native": "Wir mussten unser Kind in die Kinderklinik bringen.", + "example_sentence_english": "We had to take our child to the children's hospital.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26283 + }, + { + "word": "kinderlos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childless", + "romanization": "kinderlos", + "example_sentence_native": "Das kinderlose Paar adoptierte ein Baby.", + "example_sentence_english": "The childless couple adopted a baby.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26284 + }, + { + "word": "klappern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rattle", + "romanization": "klappern", + "example_sentence_native": "Die Fenster klapperten im Wind.", + "example_sentence_english": "The windows rattled in the wind.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26285 + }, + { + "word": "Klebstoff", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glue", + "romanization": "Klebstoff", + "example_sentence_native": "Ich brauche Klebstoff, um das Papier zu befestigen.", + "example_sentence_english": "I need glue to attach the paper.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26286 + }, + { + "word": "Knappheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarcity", + "romanization": "Knappheit", + "example_sentence_native": "Es gibt eine Knappheit an qualifizierten Arbeitskräften.", + "example_sentence_english": "There is a shortage of skilled workers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26287 + }, + { + "word": "Knödel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dumpling", + "romanization": "Knödel", + "example_sentence_native": "Zum Abendessen gab es Knödel mit Soße.", + "example_sentence_english": "For dinner, there were dumplings with gravy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26289 + }, + { + "word": "Knöllchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parking ticket", + "romanization": "Knöllchen", + "example_sentence_native": "Ich habe ein Knöllchen bekommen, weil ich falsch geparkt habe.", + "example_sentence_english": "I got a parking ticket because I parked incorrectly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26290 + }, + { + "word": "kolonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonial", + "romanization": "kolonial", + "example_sentence_native": "Die kolonialen Mächte hatten großen Einfluss.", + "example_sentence_english": "The colonial powers had great influence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26292 + }, + { + "word": "komprimieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compress", + "romanization": "komprimieren", + "example_sentence_native": "Sie müssen die Datei komprimieren, um Speicherplatz zu sparen.", + "example_sentence_english": "You need to compress the file to save space.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26293 + }, + { + "word": "Konserve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canned food", + "romanization": "Konserve", + "example_sentence_native": "Wir haben viele Konserven für Notfälle.", + "example_sentence_english": "We have many canned foods for emergencies.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26294 + }, + { + "word": "Korrosion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corrosion", + "romanization": "Korrosion", + "example_sentence_native": "Rost ist eine Form der Korrosion.", + "example_sentence_english": "Rust is a form of corrosion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26295 + }, + { + "word": "Kreuzweg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossroads", + "romanization": "Kreuzweg", + "example_sentence_native": "An diesem Kreuzweg müssen wir eine Entscheidung treffen.", + "example_sentence_english": "At this crossroads, we have to make a decision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26298 + }, + { + "word": "Kunsthistoriker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art historian", + "romanization": "Kunsthistoriker", + "example_sentence_native": "Der Kunsthistoriker analysierte das Gemälde.", + "example_sentence_english": "The art historian analyzed the painting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26301 + }, + { + "word": "Laufsteg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catwalk", + "romanization": "Laufsteg", + "example_sentence_native": "Das Model ging über den Laufsteg.", + "example_sentence_english": "The model walked across the catwalk.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26305 + }, + { + "word": "Lebensabschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "period of life", + "romanization": "Lebensabschnitt", + "example_sentence_native": "Jeder Lebensabschnitt bringt neue Herausforderungen mit sich.", + "example_sentence_english": "Every period of life brings new challenges.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26306 + }, + { + "word": "Lebenshaltungskosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cost of living", + "romanization": "Lebenshaltungskosten", + "example_sentence_native": "Die Lebenshaltungskosten sind in dieser Stadt sehr hoch.", + "example_sentence_english": "The cost of living is very high in this city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26307 + }, + { + "word": "Lebenslage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life situation", + "romanization": "Lebenslage", + "example_sentence_native": "In jeder Lebenslage ist es wichtig, optimistisch zu bleiben.", + "example_sentence_english": "In every life situation, it is important to remain optimistic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26308 + }, + { + "word": "Lehrmeister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentor", + "romanization": "Lehrmeister", + "example_sentence_native": "Er war mein Lehrmeister in der Kunst des Kochens.", + "example_sentence_english": "He was my mentor in the art of cooking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26309 + }, + { + "word": "Leichtsinn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carelessness", + "romanization": "Leichtsinn", + "example_sentence_native": "Sein Leichtsinn führte zu dem Unfall.", + "example_sentence_english": "His carelessness led to the accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26310 + }, + { + "word": "Lernprozess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "learning process", + "romanization": "Lernprozess", + "example_sentence_native": "Der Lernprozess kann manchmal langwierig sein.", + "example_sentence_english": "The learning process can sometimes be lengthy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26312 + }, + { + "word": "liken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to like (on social media)", + "romanization": "liken", + "example_sentence_native": "Viele Leute liken seine Beiträge.", + "example_sentence_english": "Many people like his posts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26313 + }, + { + "word": "linksradikal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "left-wing radical", + "romanization": "linksradikal", + "example_sentence_native": "Die linksradikale Gruppe protestierte gegen die Regierung.", + "example_sentence_english": "The left-wing radical group protested against the government.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26314 + }, + { + "word": "Läuferin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "runner (female)", + "romanization": "Läuferin", + "example_sentence_native": "Die Läuferin gewann das Rennen.", + "example_sentence_english": "The runner won the race.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26315 + }, + { + "word": "Maschinenfabrik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "machine factory", + "romanization": "Maschinenfabrik", + "example_sentence_native": "Die Maschinenfabrik produziert hochwertige Geräte.", + "example_sentence_english": "The machine factory produces high-quality equipment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26320 + }, + { + "word": "Medikation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medication", + "romanization": "Medikation", + "example_sentence_native": "Die Medikation muss regelmäßig eingenommen werden.", + "example_sentence_english": "The medication must be taken regularly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26321 + }, + { + "word": "Metier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profession;trade;métier", + "romanization": "Metier", + "example_sentence_native": "Das ist sein Metier, er kennt sich damit aus.", + "example_sentence_english": "That is his profession, he knows a lot about it.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26322 + }, + { + "word": "mitlaufen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run along;to go along with", + "romanization": "mitlaufen", + "example_sentence_native": "Er wollte nicht nur mitlaufen, sondern aktiv teilnehmen.", + "example_sentence_english": "He didn't just want to run along, but to actively participate.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26324 + }, + { + "word": "Mixtape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixtape", + "romanization": "Mixtape", + "example_sentence_native": "Sie hat ein Mixtape mit ihren Lieblingsliedern gemacht.", + "example_sentence_english": "She made a mixtape with her favorite songs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26325 + }, + { + "word": "Musterung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspection;conscription;pattern", + "romanization": "Musterung", + "example_sentence_native": "Er musste zur Musterung für den Wehrdienst.", + "example_sentence_english": "He had to go to the inspection for military service.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26333 + }, + { + "word": "Mutterland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motherland;homeland", + "romanization": "Mutterland", + "example_sentence_native": "Viele Auswanderer sehnen sich nach ihrem Mutterland.", + "example_sentence_english": "Many emigrants long for their motherland.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26336 + }, + { + "word": "Nacktbild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nude picture", + "romanization": "Nacktbild", + "example_sentence_native": "Das Nacktbild wurde ohne ihre Zustimmung veröffentlicht.", + "example_sentence_english": "The nude picture was published without her consent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26337 + }, + { + "word": "namenlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nameless;anonymous", + "romanization": "namenlos", + "example_sentence_native": "Der namenlose Held rettete die Stadt.", + "example_sentence_english": "The nameless hero saved the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26338 + }, + { + "word": "Nationalratswahl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "National Council election", + "romanization": "Nationalratswahl", + "example_sentence_native": "Die Nationalratswahl findet alle vier Jahre statt.", + "example_sentence_english": "The National Council election takes place every four years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26339 + }, + { + "word": "Neuausgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new edition", + "romanization": "Neuausgabe", + "example_sentence_native": "Die Neuausgabe des Buches enthält zusätzliche Kapitel.", + "example_sentence_english": "The new edition of the book contains additional chapters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26341 + }, + { + "word": "Neuorientierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reorientation", + "romanization": "Neuorientierung", + "example_sentence_native": "Das Unternehmen plant eine Neuorientierung seiner Strategie.", + "example_sentence_english": "The company is planning a reorientation of its strategy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26342 + }, + { + "word": "Nigerianer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nigerian (person)", + "romanization": "Nigerianer", + "example_sentence_native": "Er ist ein Nigerianer.", + "example_sentence_english": "He is a Nigerian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26344 + }, + { + "word": "Nutztier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farm animal", + "romanization": "Nutztier", + "example_sentence_native": "Kühe sind Nutztiere.", + "example_sentence_english": "Cows are farm animals.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26346 + }, + { + "word": "Osterfest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Easter festival", + "romanization": "Osterfest", + "example_sentence_native": "Das Osterfest wird im Frühling gefeiert.", + "example_sentence_english": "The Easter festival is celebrated in spring.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26351 + }, + { + "word": "Papyrus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papyrus", + "romanization": "Papyrus", + "example_sentence_native": "Alte Schriften wurden oft auf Papyrus verfasst.", + "example_sentence_english": "Ancient writings were often written on papyrus.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26353 + }, + { + "word": "Paradigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradigm", + "romanization": "Paradigma", + "example_sentence_native": "Das neue Paradigma verändert die Art, wie wir denken.", + "example_sentence_english": "The new paradigm changes the way we think.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26354 + }, + { + "word": "Personalentwicklung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personnel development", + "romanization": "Personalentwicklung", + "example_sentence_native": "Die Personalentwicklung ist wichtig für das Wachstum des Unternehmens.", + "example_sentence_english": "Personnel development is important for the company's growth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26357 + }, + { + "word": "Pflanzenschutzmittel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plant protection product", + "romanization": "Pflanzenschutzmittel", + "example_sentence_native": "Der Einsatz von Pflanzenschutzmitteln wird streng reguliert.", + "example_sentence_english": "The use of plant protection products is strictly regulated.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26358 + }, + { + "word": "Planetarium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planetarium", + "romanization": "Planetarium", + "example_sentence_native": "Wir besuchten das Planetarium, um die Sterne zu sehen.", + "example_sentence_english": "We visited the planetarium to see the stars.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26359 + }, + { + "word": "Polizeiinspektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police station", + "romanization": "Polizeiinspektion", + "example_sentence_native": "Die Polizeiinspektion befindet sich am Ende der Straße.", + "example_sentence_english": "The police station is located at the end of the street.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26361 + }, + { + "word": "Preiserhöhung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "price increase", + "romanization": "Preiserhöhung", + "example_sentence_native": "Es gab eine Preiserhöhung bei den Lebensmitteln.", + "example_sentence_english": "There was a price increase in groceries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26362 + }, + { + "word": "preisgekrönt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "award-winning", + "romanization": "preisgekrönt", + "example_sentence_native": "Der preisgekrönte Film läuft heute Abend im Kino.", + "example_sentence_english": "The award-winning film is showing tonight at the cinema.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26363 + }, + { + "word": "Pressestelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press office", + "romanization": "Pressestelle", + "example_sentence_native": "Bitte wenden Sie sich an die Pressestelle für weitere Informationen.", + "example_sentence_english": "Please contact the press office for more information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26364 + }, + { + "word": "Privatleute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "private individuals", + "romanization": "Privatleute", + "example_sentence_native": "Viele Privatleute investieren in erneuerbare Energien.", + "example_sentence_english": "Many private individuals invest in renewable energies.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26365 + }, + { + "word": "Produktionsstätte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production site", + "romanization": "Produktionsstätte", + "example_sentence_native": "Die neue Produktionsstätte wird im nächsten Jahr eröffnet.", + "example_sentence_english": "The new production site will open next year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26366 + }, + { + "word": "provokant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocative", + "romanization": "provokant", + "example_sentence_native": "Seine provokante Aussage sorgte für Aufsehen.", + "example_sentence_english": "His provocative statement caused a stir.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26367 + }, + { + "word": "Prozedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure", + "romanization": "Prozedere", + "example_sentence_native": "Das Prozedere für die Antragstellung ist sehr komplex.", + "example_sentence_english": "The procedure for the application is very complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26368 + }, + { + "word": "Pupille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pupil (of the eye)", + "romanization": "Pupille", + "example_sentence_native": "Die Pupille reagiert auf Licht.", + "example_sentence_english": "The pupil reacts to light.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26369 + }, + { + "word": "Quintessenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quintessence", + "romanization": "Quintessenz", + "example_sentence_native": "Die Quintessenz seiner Rede war die Notwendigkeit von Zusammenarbeit.", + "example_sentence_english": "The quintessence of his speech was the necessity of cooperation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26370 + }, + { + "word": "Reichsstadt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperial city", + "romanization": "Reichsstadt", + "example_sentence_native": "Nürnberg war eine bedeutende Reichsstadt im Heiligen Römischen Reich.", + "example_sentence_english": "Nuremberg was an important imperial city in the Holy Roman Empire.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26373 + }, + { + "word": "Reporting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reporting", + "romanization": "Reporting", + "example_sentence_native": "Das monatliche Reporting ist für die Geschäftsleitung wichtig.", + "example_sentence_english": "The monthly reporting is important for the management.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26375 + }, + { + "word": "Resource", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resource", + "romanization": "Resource", + "example_sentence_native": "Wasser ist eine wichtige natürliche Resource.", + "example_sentence_english": "Water is an important natural resource.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26376 + }, + { + "word": "Rückerstattung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refund", + "romanization": "Rückerstattung", + "example_sentence_native": "Sie haben Anspruch auf eine volle Rückerstattung.", + "example_sentence_english": "You are entitled to a full refund.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26379 + }, + { + "word": "sagenhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legendary", + "romanization": "sagenhaft", + "example_sentence_native": "Die Geschichte war sagenhaft.", + "example_sentence_english": "The story was legendary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26380 + }, + { + "word": "saisonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seasonal", + "romanization": "saisonal", + "example_sentence_native": "Wir kaufen saisonales Gemüse.", + "example_sentence_english": "We buy seasonal vegetables.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26381 + }, + { + "word": "sandig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sandy", + "romanization": "sandig", + "example_sentence_native": "Der Strand ist sehr sandig.", + "example_sentence_english": "The beach is very sandy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26382 + }, + { + "word": "sanktionieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sanction", + "romanization": "sanktionieren", + "example_sentence_native": "Die Regierung wird das Verhalten sanktionieren.", + "example_sentence_english": "The government will sanction the behavior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26383 + }, + { + "word": "Schaar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flock;crowd", + "romanization": "Schaar", + "example_sentence_native": "Eine Schaar Vögel flog über das Feld.", + "example_sentence_english": "A flock of birds flew over the field.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26386 + }, + { + "word": "Schiessstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooting range", + "romanization": "Schiessstand", + "example_sentence_native": "Er übt auf dem Schiessstand.", + "example_sentence_english": "He practices at the shooting range.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26387 + }, + { + "word": "Schiffbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipbuilding", + "romanization": "Schiffbau", + "example_sentence_native": "Der Schiffbau ist eine wichtige Industrie in dieser Region.", + "example_sentence_english": "Shipbuilding is an important industry in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26388 + }, + { + "word": "Schlachter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "butcher", + "romanization": "Schlachter", + "example_sentence_native": "Der Schlachter hat frisches Fleisch.", + "example_sentence_english": "The butcher has fresh meat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26391 + }, + { + "word": "Schlafplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleeping place;berth", + "romanization": "Schlafplatz", + "example_sentence_native": "Wir suchen einen Schlafplatz für die Nacht.", + "example_sentence_english": "We are looking for a sleeping place for the night.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26392 + }, + { + "word": "Schlusswort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concluding remark;final word", + "romanization": "Schlusswort", + "example_sentence_native": "Der Redner sprach das Schlusswort.", + "example_sentence_english": "The speaker gave the concluding remark.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26393 + }, + { + "word": "Seefahrer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seafarer;sailor", + "romanization": "Seefahrer", + "example_sentence_native": "Die Seefahrer entdeckten neue Länder.", + "example_sentence_english": "The seafarers discovered new lands.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26395 + }, + { + "word": "Seher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seer;visionary", + "romanization": "Seher", + "example_sentence_native": "Der alte Seher hatte eine Vision.", + "example_sentence_english": "The old seer had a vision.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26396 + }, + { + "word": "Sekundarschule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary school", + "romanization": "Sekundarschule", + "example_sentence_native": "Meine Schwester geht auf die Sekundarschule.", + "example_sentence_english": "My sister goes to secondary school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26397 + }, + { + "word": "selbstkritisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-critical", + "romanization": "selbstkritisch", + "example_sentence_native": "Er ist sehr selbstkritisch.", + "example_sentence_english": "He is very self-critical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26398 + }, + { + "word": "Soma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soma (body)", + "romanization": "Soma", + "example_sentence_native": "Das Soma ist der Zellkörper eines Neurons.", + "example_sentence_english": "The soma is the cell body of a neuron.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26403 + }, + { + "word": "Sommertag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "summer day", + "romanization": "Sommertag", + "example_sentence_native": "Es war ein wunderschöner Sommertag.", + "example_sentence_english": "It was a beautiful summer day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26404 + }, + { + "word": "Speiseröhre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esophagus", + "romanization": "Speiseröhre", + "example_sentence_native": "Die Nahrung gelangt durch die Speiseröhre in den Magen.", + "example_sentence_english": "Food passes through the esophagus into the stomach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26408 + }, + { + "word": "Spielstätte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "venue", + "romanization": "Spielstätte", + "example_sentence_native": "Die Spielstätte für das Konzert war ausverkauft.", + "example_sentence_english": "The venue for the concert was sold out.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26409 + }, + { + "word": "Spurensicherung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forensic investigation", + "romanization": "Spurensicherung", + "example_sentence_native": "Die Spurensicherung am Tatort dauerte Stunden.", + "example_sentence_english": "The forensic investigation at the crime scene lasted hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26410 + }, + { + "word": "Stadtwald", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city forest", + "romanization": "Stadtwald", + "example_sentence_native": "Wir machten einen Spaziergang im Stadtwald.", + "example_sentence_english": "We took a walk in the city forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26411 + }, + { + "word": "Stigmatisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stigmatization", + "romanization": "Stigmatisierung", + "example_sentence_native": "Die Stigmatisierung von psychischen Erkrankungen ist ein Problem.", + "example_sentence_english": "The stigmatization of mental illnesses is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26415 + }, + { + "word": "stottern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stutter", + "romanization": "stottern", + "example_sentence_native": "Er begann zu stottern, als er nervös wurde.", + "example_sentence_english": "He started to stutter when he got nervous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26416 + }, + { + "word": "Streifzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foray;ramble", + "romanization": "Streifzug", + "example_sentence_native": "Wir machten einen Streifzug durch die Altstadt.", + "example_sentence_english": "We took a ramble through the old town.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26417 + }, + { + "word": "stündig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "-hour (e.g.;zweistündig = two-hour)", + "romanization": "stündig", + "example_sentence_native": "Das ist ein zweistündiger Film.", + "example_sentence_english": "This is a two-hour movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26418 + }, + { + "word": "Subkultur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subculture", + "romanization": "Subkultur", + "example_sentence_native": "Jede Stadt hat ihre eigenen Subkulturen.", + "example_sentence_english": "Every city has its own subcultures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26419 + }, + { + "word": "Swimmingpool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming pool", + "romanization": "Swimmingpool", + "example_sentence_native": "Der Swimmingpool ist sehr groß.", + "example_sentence_english": "The swimming pool is very large.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26420 + }, + { + "word": "tappen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grope;to stumble", + "romanization": "tappen", + "example_sentence_native": "Er musste im Dunkeln tappen, um den Lichtschalter zu finden.", + "example_sentence_english": "He had to grope in the dark to find the light switch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26423 + }, + { + "word": "Teelöffel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teaspoon", + "romanization": "Teelöffel", + "example_sentence_native": "Bitte gib mir einen Teelöffel Zucker.", + "example_sentence_english": "Please give me a teaspoon of sugar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26425 + }, + { + "word": "Teilbereich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sub-area;sub-section", + "romanization": "Teilbereich", + "example_sentence_native": "Dieser Teilbereich des Projekts ist sehr komplex.", + "example_sentence_english": "This sub-area of the project is very complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26426 + }, + { + "word": "Thesis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thesis", + "romanization": "Thesis", + "example_sentence_native": "Sie schreibt gerade an ihrer Master-Thesis.", + "example_sentence_english": "She is currently writing her master's thesis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26427 + }, + { + "word": "Tonstudio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recording studio", + "romanization": "Tonstudio", + "example_sentence_native": "Die Band nimmt ihr neues Album im Tonstudio auf.", + "example_sentence_english": "The band is recording their new album in the recording studio.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26428 + }, + { + "word": "Tonträger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sound carrier;recording medium", + "romanization": "Tonträger", + "example_sentence_native": "Alte Tonträger wie Schallplatten erleben ein Comeback.", + "example_sentence_english": "Old recording media like vinyl records are experiencing a comeback.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26429 + }, + { + "word": "umrüsten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convert;to retool;to refit", + "romanization": "umrüsten", + "example_sentence_native": "Die Fabrik muss ihre Maschinen umrüsten.", + "example_sentence_english": "The factory has to retool its machines.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "um", + "base_verb": "rüsten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26432 + }, + { + "word": "Umkehrung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reversal;inversion", + "romanization": "Umkehrung", + "example_sentence_native": "Die Umkehrung der Situation war überraschend.", + "example_sentence_english": "The reversal of the situation was surprising.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26433 + }, + { + "word": "unaufhörlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incessant;continuous", + "romanization": "unaufhörlich", + "example_sentence_native": "Der Regen fiel unaufhörlich.", + "example_sentence_english": "The rain fell incessantly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26434 + }, + { + "word": "unerbittlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relentless;unyielding", + "romanization": "unerbittlich", + "example_sentence_native": "Er verfolgte sein Ziel unerbittlich.", + "example_sentence_english": "He pursued his goal relentlessly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26435 + }, + { + "word": "ungeboren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unborn", + "romanization": "ungeboren", + "example_sentence_native": "Das ungeborene Kind ist gesund.", + "example_sentence_english": "The unborn child is healthy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26436 + }, + { + "word": "unstrittig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undisputed;uncontentious", + "romanization": "unstrittig", + "example_sentence_native": "Es ist unstrittig, dass er Recht hat.", + "example_sentence_english": "It is undisputed that he is right.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26437 + }, + { + "word": "updaten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to update", + "romanization": "updaten", + "example_sentence_native": "Ich muss meine Software updaten.", + "example_sentence_english": "I need to update my software.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26438 + }, + { + "word": "Verharmlosung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trivialization;downplaying", + "romanization": "Verharmlosung", + "example_sentence_native": "Die Verharmlosung des Problems ist gefährlich.", + "example_sentence_english": "The trivialization of the problem is dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26439 + }, + { + "word": "verordnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescribed", + "romanization": "verordnet", + "example_sentence_native": "Das Medikament ist vom Arzt verordnet.", + "example_sentence_english": "The medication is prescribed by the doctor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26440 + }, + { + "word": "verschwitzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweaty", + "romanization": "verschwitzt", + "example_sentence_native": "Nach dem Sport war er ganz verschwitzt.", + "example_sentence_english": "After sports, he was all sweaty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26441 + }, + { + "word": "Versicherungsunternehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurance company", + "romanization": "Versicherungsunternehmen", + "example_sentence_native": "Er arbeitet bei einem großen Versicherungsunternehmen.", + "example_sentence_english": "He works at a large insurance company.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26442 + }, + { + "word": "Videomaterial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "video footage", + "romanization": "Videomaterial", + "example_sentence_native": "Das Videomaterial wurde der Polizei übergeben.", + "example_sentence_english": "The video footage was handed over to the police.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26444 + }, + { + "word": "Vikar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vicar", + "romanization": "Vikar", + "example_sentence_native": "Der Vikar hielt die Predigt.", + "example_sentence_english": "The vicar gave the sermon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26445 + }, + { + "word": "Volljährigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal age;majority", + "romanization": "Volljährigkeit", + "example_sentence_native": "Mit der Volljährigkeit darf man wählen.", + "example_sentence_english": "With legal age, one is allowed to vote.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26447 + }, + { + "word": "vorbehaltlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subject to", + "romanization": "vorbehaltlich", + "example_sentence_native": "Die Zusage erfolgt vorbehaltlich der Genehmigung.", + "example_sentence_english": "The approval is subject to permission.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26448 + }, + { + "word": "Vorschuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advance;down payment", + "romanization": "Vorschuss", + "example_sentence_native": "Er bat um einen Vorschuss auf sein Gehalt.", + "example_sentence_english": "He asked for an advance on his salary.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26449 + }, + { + "word": "Vorspann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening credits;lead-in", + "romanization": "Vorspann", + "example_sentence_native": "Der Film hatte einen langen Vorspann.", + "example_sentence_english": "The movie had long opening credits.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26450 + }, + { + "word": "völkerrechtlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "under international law", + "romanization": "völkerrechtlich", + "example_sentence_native": "Das ist eine völkerrechtliche Frage.", + "example_sentence_english": "That is a question of international law.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26451 + }, + { + "word": "Waldbrand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forest fire", + "romanization": "Waldbrand", + "example_sentence_native": "Ein großer Waldbrand wütete in der Region.", + "example_sentence_english": "A large forest fire raged in the region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26452 + }, + { + "word": "Waldorfschule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Waldorf school", + "romanization": "Waldorfschule", + "example_sentence_native": "Meine Kinder gehen auf eine Waldorfschule.", + "example_sentence_english": "My children go to a Waldorf school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26454 + }, + { + "word": "Waldsee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forest lake", + "romanization": "Waldsee", + "example_sentence_native": "Wir haben am Waldsee gepicknickt.", + "example_sentence_english": "We had a picnic by the forest lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26455 + }, + { + "word": "Warenkorb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shopping cart", + "romanization": "Warenkorb", + "example_sentence_native": "Legen Sie die Artikel in den Warenkorb.", + "example_sentence_english": "Add the items to the shopping cart.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26456 + }, + { + "word": "Wassertemperatur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "water temperature", + "romanization": "Wassertemperatur", + "example_sentence_native": "Die Wassertemperatur ist heute sehr angenehm.", + "example_sentence_english": "The water temperature is very pleasant today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26457 + }, + { + "word": "Wechselstrom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternating current (AC)", + "romanization": "Wechselstrom", + "example_sentence_native": "Die meisten Haushaltsgeräte nutzen Wechselstrom.", + "example_sentence_english": "Most household appliances use alternating current.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26458 + }, + { + "word": "Werkstätte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "workshop", + "romanization": "Werkstätte", + "example_sentence_native": "Die alte Werkstätte wurde in ein modernes Atelier umgewandelt.", + "example_sentence_english": "The old workshop was converted into a modern studio.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26460 + }, + { + "word": "Wetterbedingung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weather condition", + "romanization": "Wetterbedingung", + "example_sentence_native": "Die Wetterbedingungen sind heute ideal für einen Spaziergang.", + "example_sentence_english": "The weather conditions are ideal for a walk today.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26461 + }, + { + "word": "Wirtschaftskraft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic power", + "romanization": "Wirtschaftskraft", + "example_sentence_native": "Die Wirtschaftskraft des Landes ist in den letzten Jahren gestiegen.", + "example_sentence_english": "The economic power of the country has increased in recent years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26463 + }, + { + "word": "Wohltäter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefactor", + "romanization": "Wohltäter", + "example_sentence_native": "Der unbekannte Wohltäter spendete eine große Summe Geld.", + "example_sentence_english": "The unknown benefactor donated a large sum of money.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26466 + }, + { + "word": "Wortwitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pun;wordplay", + "romanization": "Wortwitz", + "example_sentence_native": "Sein Vortrag war voller cleverer Wortwitze.", + "example_sentence_english": "His lecture was full of clever puns.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26468 + }, + { + "word": "Wutbürger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "angry citizen", + "romanization": "Wutbürger", + "example_sentence_native": "Die Wutbürger protestierten gegen die neue Bauplanung.", + "example_sentence_english": "The angry citizens protested against the new construction plan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26469 + }, + { + "word": "Zufluchtsort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refuge;sanctuary", + "romanization": "Zufluchtsort", + "example_sentence_native": "Die alte Kirche diente als Zufluchtsort für Verfolgte.", + "example_sentence_english": "The old church served as a refuge for the persecuted.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26472 + }, + { + "word": "Zusammensein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathering;get-together", + "romanization": "Zusammensein", + "example_sentence_native": "Das jährliche Zusammensein der Familie ist immer etwas Besonderes.", + "example_sentence_english": "The annual family gathering is always something special.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26474 + }, + { + "word": "übergewichtig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overweight", + "romanization": "übergewichtig", + "example_sentence_native": "Der Arzt riet ihm, nicht mehr übergewichtig zu sein.", + "example_sentence_english": "The doctor advised him not to be overweight anymore.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26475 + }, + { + "word": "Abendkleid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evening dress", + "romanization": "Abendkleid", + "example_sentence_native": "Sie trug ein elegantes Abendkleid zur Gala.", + "example_sentence_english": "She wore an elegant evening dress to the gala.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26477 + }, + { + "word": "absenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lower;to sink", + "romanization": "absenken", + "example_sentence_native": "Der Kran kann die Last langsam absenken.", + "example_sentence_english": "The crane can slowly lower the load.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "senken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26478 + }, + { + "word": "ablösefrei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfer-free", + "romanization": "ablösefrei", + "example_sentence_native": "Der Spieler wechselte ablösefrei zum neuen Verein.", + "example_sentence_english": "The player moved to the new club transfer-free.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26479 + }, + { + "word": "abwechseln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alternate;to take turns", + "romanization": "abwechseln", + "example_sentence_native": "Wir müssen uns beim Fahren abwechseln.", + "example_sentence_english": "We have to take turns driving.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "wechseln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26480 + }, + { + "word": "Abzweig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn-off;branch (road;path)", + "romanization": "Abzweig", + "example_sentence_native": "Nehmen Sie den nächsten Abzweig links.", + "example_sentence_english": "Take the next turn-off on the left.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26481 + }, + { + "word": "Akkreditierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accreditation", + "romanization": "Akkreditierung", + "example_sentence_native": "Die Universität erhielt die Akkreditierung für ihr neues Programm.", + "example_sentence_english": "The university received accreditation for its new program.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26486 + }, + { + "word": "Allergiker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allergy sufferer (male)", + "romanization": "Allergiker", + "example_sentence_native": "Als Allergiker muss er auf bestimmte Lebensmittel verzichten.", + "example_sentence_english": "As an allergy sufferer, he has to avoid certain foods.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26487 + }, + { + "word": "Allrad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all-wheel drive", + "romanization": "Allrad", + "example_sentence_native": "Das Auto hat Allrad und ist gut für unwegsames Gelände.", + "example_sentence_english": "The car has all-wheel drive and is good for rough terrain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26488 + }, + { + "word": "Almanach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "almanac", + "romanization": "Almanach", + "example_sentence_native": "Der alte Almanach enthielt viele interessante Fakten.", + "example_sentence_english": "The old almanac contained many interesting facts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26489 + }, + { + "word": "anfechten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to contest;to challenge;to appeal", + "romanization": "anfechten", + "example_sentence_native": "Er wollte die Entscheidung anfechten.", + "example_sentence_english": "He wanted to contest the decision.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "fechten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26494 + }, + { + "word": "Angelpunkt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "linchpin;pivot;crucial point", + "romanization": "Angelpunkt", + "example_sentence_native": "Die Zusammenarbeit ist der Angelpunkt des Projekts.", + "example_sentence_english": "Collaboration is the linchpin of the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26495 + }, + { + "word": "annähern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approach;to approximate", + "romanization": "annähern", + "example_sentence_native": "Die beiden Teams begannen, sich annähern.", + "example_sentence_english": "The two teams began to approach each other.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "nähern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26496 + }, + { + "word": "Ansichtssache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matter of opinion", + "romanization": "Ansichtssache", + "example_sentence_native": "Ob das schön ist, ist reine Ansichtssache.", + "example_sentence_english": "Whether that's beautiful is purely a matter of opinion.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26497 + }, + { + "word": "Apfelbaum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apple tree", + "romanization": "Apfelbaum", + "example_sentence_native": "Im Garten steht ein alter Apfelbaum.", + "example_sentence_english": "There is an old apple tree in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26498 + }, + { + "word": "Arbeitsbereich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work area;scope of work", + "romanization": "Arbeitsbereich", + "example_sentence_native": "Mein Arbeitsbereich umfasst verschiedene Aufgaben.", + "example_sentence_english": "My work area includes various tasks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26499 + }, + { + "word": "argumentativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "argumentative", + "romanization": "argumentativ", + "example_sentence_native": "Seine argumentativen Fähigkeiten sind beeindruckend.", + "example_sentence_english": "His argumentative skills are impressive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26500 + }, + { + "word": "aufdrängen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impose;to force upon", + "romanization": "aufdrängen", + "example_sentence_native": "Er wollte sich nicht aufdrängen.", + "example_sentence_english": "He didn't want to impose himself.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "drängen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26503 + }, + { + "word": "Aufenthaltsraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "common room;lounge", + "romanization": "Aufenthaltsraum", + "example_sentence_native": "Der Aufenthaltsraum ist sehr gemütlich.", + "example_sentence_english": "The common room is very cozy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26504 + }, + { + "word": "Aufspaltung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "splitting;division;fission", + "romanization": "Aufspaltung", + "example_sentence_native": "Die Aufspaltung des Unternehmens war unvermeidlich.", + "example_sentence_english": "The division of the company was inevitable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26505 + }, + { + "word": "Ausgangsposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starting position;initial position", + "romanization": "Ausgangsposition", + "example_sentence_native": "Kehren Sie zur Ausgangsposition zurück.", + "example_sentence_english": "Return to the starting position.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26506 + }, + { + "word": "ausgeruht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well-rested", + "romanization": "ausgeruht", + "example_sentence_native": "Nach dem Schlaf fühlte er sich ausgeruht.", + "example_sentence_english": "After the sleep, he felt well-rested.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26507 + }, + { + "word": "ausgesprochen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pronounced;distinct;extremely", + "romanization": "ausgesprochen", + "example_sentence_native": "Das ist ein ausgesprochen schwieriges Problem.", + "example_sentence_english": "That is an extremely difficult problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26508 + }, + { + "word": "Ausleihe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loan;borrowing", + "romanization": "Ausleihe", + "example_sentence_native": "Die Ausleihe von Büchern ist kostenlos.", + "example_sentence_english": "The borrowing of books is free.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26509 + }, + { + "word": "Auslöschung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extinction;annihilation", + "romanization": "Auslöschung", + "example_sentence_native": "Die Auslöschung der Dinosaurier ist ein Rätsel.", + "example_sentence_english": "The extinction of the dinosaurs is a mystery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26510 + }, + { + "word": "Ausruf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exclamation;cry", + "romanization": "Ausruf", + "example_sentence_native": "Sein Ausruf der Freude war laut.", + "example_sentence_english": "His exclamation of joy was loud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26511 + }, + { + "word": "Bankkaufmann", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank clerk (male)", + "romanization": "Bankkaufmann", + "example_sentence_native": "Er arbeitet als Bankkaufmann bei einer großen Bank.", + "example_sentence_english": "He works as a bank clerk at a large bank.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26512 + }, + { + "word": "Baumaschine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction machine", + "romanization": "Baumaschine", + "example_sentence_native": "Auf der Baustelle sind viele Baumaschinen im Einsatz.", + "example_sentence_english": "Many construction machines are in use on the construction site.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26513 + }, + { + "word": "Bauplan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building plan;blueprint", + "romanization": "Bauplan", + "example_sentence_native": "Der Architekt zeigte uns den Bauplan des neuen Hauses.", + "example_sentence_english": "The architect showed us the blueprint of the new house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26514 + }, + { + "word": "Bautätigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction activity", + "romanization": "Bautätigkeit", + "example_sentence_native": "Die Bautätigkeit in der Stadt hat zugenommen.", + "example_sentence_english": "Construction activity in the city has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26515 + }, + { + "word": "Beisammensein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "get-together;gathering", + "romanization": "Beisammensein", + "example_sentence_native": "Das gemütliche Beisammensein war sehr schön.", + "example_sentence_english": "The cozy get-together was very nice.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26518 + }, + { + "word": "Berufsbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "job description;professional profile", + "romanization": "Berufsbild", + "example_sentence_native": "Das Berufsbild des Lehrers hat sich verändert.", + "example_sentence_english": "The job description of the teacher has changed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26519 + }, + { + "word": "Berufsgenossenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professional association", + "romanization": "Berufsgenossenschaft", + "example_sentence_native": "Die Berufsgenossenschaft ist für die Unfallversicherung zuständig.", + "example_sentence_english": "The professional association is responsible for accident insurance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26520 + }, + { + "word": "Bindemittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding agent", + "romanization": "Bindemittel", + "example_sentence_native": "Zement ist ein wichtiges Bindemittel im Bauwesen.", + "example_sentence_english": "Cement is an important binding agent in construction.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26522 + }, + { + "word": "Blazer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blazer", + "romanization": "Blazer", + "example_sentence_native": "Sie trug einen eleganten blauen Blazer.", + "example_sentence_english": "She wore an elegant blue blazer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26523 + }, + { + "word": "Bodyguard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bodyguard", + "romanization": "Bodyguard", + "example_sentence_native": "Der Prominente hatte immer einen Bodyguard dabei.", + "example_sentence_english": "The celebrity always had a bodyguard with him.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26526 + }, + { + "word": "Bolognese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Bolognese sauce", + "romanization": "Bolognese", + "example_sentence_native": "Ich koche heute Spaghetti mit Bolognese.", + "example_sentence_english": "Today I'm cooking spaghetti with Bolognese sauce.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26527 + }, + { + "word": "bosnisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bosnian", + "romanization": "bosnisch", + "example_sentence_native": "Sie spricht fließend Bosnisch.", + "example_sentence_english": "She speaks fluent Bosnian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26528 + }, + { + "word": "Bratkartoffel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fried potato", + "romanization": "Bratkartoffel", + "example_sentence_native": "Als Beilage gab es knusprige Bratkartoffeln.", + "example_sentence_english": "As a side dish, there were crispy fried potatoes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26529 + }, + { + "word": "Bronchitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bronchitis", + "romanization": "Bronchitis", + "example_sentence_native": "Er leidet an akuter Bronchitis.", + "example_sentence_english": "He is suffering from acute bronchitis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26531 + }, + { + "word": "Brüderlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fraternity", + "romanization": "Brüderlichkeit", + "example_sentence_native": "Freiheit, Gleichheit, Brüderlichkeit sind die Ideale der Revolution.", + "example_sentence_english": "Liberty, equality, fraternity are the ideals of the revolution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26532 + }, + { + "word": "Bäumchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small tree", + "romanization": "Bäumchen", + "example_sentence_native": "Im Garten wächst ein kleines Bäumchen.", + "example_sentence_english": "A small tree is growing in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26534 + }, + { + "word": "Bürgermeisterwahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mayoral election", + "romanization": "Bürgermeisterwahl", + "example_sentence_native": "Die Bürgermeisterwahl findet nächsten Monat statt.", + "example_sentence_english": "The mayoral election will take place next month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26535 + }, + { + "word": "Caddy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caddy", + "romanization": "Caddy", + "example_sentence_native": "Der Golfspieler hatte einen erfahrenen Caddy.", + "example_sentence_english": "The golfer had an experienced caddy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26536 + }, + { + "word": "Calling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calling (vocation)", + "romanization": "Calling", + "example_sentence_native": "Er sah es als seine wahre Calling an, anderen zu helfen.", + "example_sentence_english": "He saw it as his true calling to help others.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26537 + }, + { + "word": "Cashback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cashback", + "romanization": "Cashback", + "example_sentence_native": "Viele Kreditkarten bieten Cashback-Programme an.", + "example_sentence_english": "Many credit cards offer cashback programs.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26539 + }, + { + "word": "Cembalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harpsichord", + "romanization": "Cembalo", + "example_sentence_native": "Das Cembalo hat einen einzigartigen Klang.", + "example_sentence_english": "The harpsichord has a unique sound.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26540 + }, + { + "word": "Choreografie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choreography", + "romanization": "Choreografie", + "example_sentence_native": "Die Choreografie des Tanzes war beeindruckend.", + "example_sentence_english": "The choreography of the dance was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26543 + }, + { + "word": "Christdemokrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christian Democrat", + "romanization": "Christdemokrat", + "example_sentence_native": "Er ist ein überzeugter Christdemokrat.", + "example_sentence_english": "He is a convinced Christian Democrat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26544 + }, + { + "word": "Commercial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commercial (advertisement)", + "romanization": "Commercial", + "example_sentence_native": "Das Commercial vor dem Film war sehr lang.", + "example_sentence_english": "The commercial before the movie was very long.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26547 + }, + { + "word": "Cricket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cricket (sport)", + "romanization": "Cricket", + "example_sentence_native": "Cricket ist in England sehr beliebt.", + "example_sentence_english": "Cricket is very popular in England.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26549 + }, + { + "word": "Damenschuh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "women's shoe", + "romanization": "Damenschuh", + "example_sentence_native": "Sie kaufte ein Paar neue Damenschuhe.", + "example_sentence_english": "She bought a pair of new women's shoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26554 + }, + { + "word": "Datenblatt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data sheet", + "romanization": "Datenblatt", + "example_sentence_native": "Bitte lesen Sie das Datenblatt für weitere Informationen.", + "example_sentence_english": "Please read the data sheet for more information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26555 + }, + { + "word": "Diffamierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defamation", + "romanization": "Diffamierung", + "example_sentence_native": "Die Diffamierung seines Rufes war ungerechtfertigt.", + "example_sentence_english": "The defamation of his reputation was unjustified.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26557 + }, + { + "word": "Disclaimer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disclaimer", + "romanization": "Disclaimer", + "example_sentence_native": "Bitte beachten Sie den Disclaimer am Ende der Seite.", + "example_sentence_english": "Please note the disclaimer at the bottom of the page.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26558 + }, + { + "word": "Dispo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overdraft facility", + "romanization": "Dispo", + "example_sentence_native": "Mein Dispo ist schon wieder ausgeschöpft.", + "example_sentence_english": "My overdraft facility is already used up again.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26559 + }, + { + "word": "Disput", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute", + "romanization": "Disput", + "example_sentence_native": "Der Disput über die neue Regelung dauerte Stunden.", + "example_sentence_english": "The dispute about the new regulation lasted hours.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26560 + }, + { + "word": "Durchzug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draft", + "romanization": "Durchzug", + "example_sentence_native": "Bitte schließen Sie das Fenster, es gibt einen starken Durchzug.", + "example_sentence_english": "Please close the window, there's a strong draft.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26562 + }, + { + "word": "Ehrenmal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "memorial", + "romanization": "Ehrenmal", + "example_sentence_native": "Das Ehrenmal erinnert an die gefallenen Soldaten.", + "example_sentence_english": "The memorial commemorates the fallen soldiers.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26564 + }, + { + "word": "Ehrennadel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "badge of honor", + "romanization": "Ehrennadel", + "example_sentence_native": "Sie erhielt die Ehrennadel für ihre langjährige Arbeit.", + "example_sentence_english": "She received the badge of honor for her many years of work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26565 + }, + { + "word": "Eilmeldung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breaking news", + "romanization": "Eilmeldung", + "example_sentence_native": "Eine Eilmeldung unterbrach das laufende Programm.", + "example_sentence_english": "Breaking news interrupted the current program.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26566 + }, + { + "word": "Environment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environment", + "romanization": "Environment", + "example_sentence_native": "Das Environment der Stadt ist sehr grün.", + "example_sentence_english": "The environment of the city is very green.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26569 + }, + { + "word": "Erfolgsaussicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prospect of success", + "romanization": "Erfolgsaussicht", + "example_sentence_native": "Die Erfolgsaussicht für das Projekt ist hoch.", + "example_sentence_english": "The prospect of success for the project is high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26571 + }, + { + "word": "Erfordernis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "requirement", + "romanization": "Erfordernis", + "example_sentence_native": "Die Sicherheit ist ein grundlegendes Erfordernis.", + "example_sentence_english": "Safety is a fundamental requirement.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26572 + }, + { + "word": "erhellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to illuminate", + "romanization": "erhellen", + "example_sentence_native": "Die Lampe erhellt den Raum.", + "example_sentence_english": "The lamp illuminates the room.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26573 + }, + { + "word": "erregend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exciting", + "romanization": "erregend", + "example_sentence_native": "Das war ein sehr erregender Film.", + "example_sentence_english": "That was a very exciting movie.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26574 + }, + { + "word": "erschütternd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shattering", + "romanization": "erschütternd", + "example_sentence_native": "Die Nachricht war erschütternd für alle Beteiligten.", + "example_sentence_english": "The news was shattering for everyone involved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26575 + }, + { + "word": "Eucharistie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Eucharist", + "romanization": "Eucharistie", + "example_sentence_native": "Die Eucharistie ist ein zentrales Sakrament im Christentum.", + "example_sentence_english": "The Eucharist is a central sacrament in Christianity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26579 + }, + { + "word": "Fachpersonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialized personnel", + "romanization": "Fachpersonal", + "example_sentence_native": "Das Fachpersonal in der Klinik ist sehr kompetent.", + "example_sentence_english": "The specialized personnel in the clinic are very competent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26580 + }, + { + "word": "Fegefeuer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purgatory", + "romanization": "Fegefeuer", + "example_sentence_native": "Im Mittelalter glaubten viele Menschen an das Fegefeuer.", + "example_sentence_english": "In the Middle Ages, many people believed in purgatory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26581 + }, + { + "word": "Flieder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lilac", + "romanization": "Flieder", + "example_sentence_native": "Im Frühling blüht der Flieder wunderschön.", + "example_sentence_english": "In spring, the lilac blooms beautifully.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26582 + }, + { + "word": "Folgejahr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following year", + "romanization": "Folgejahr", + "example_sentence_native": "Im Folgejahr stiegen die Verkaufszahlen deutlich an.", + "example_sentence_english": "In the following year, sales figures increased significantly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26584 + }, + { + "word": "Freiheitsrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right to liberty", + "romanization": "Freiheitsrecht", + "example_sentence_native": "Das Freiheitsrecht ist ein Grundrecht in vielen Verfassungen.", + "example_sentence_english": "The right to liberty is a fundamental right in many constitutions.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26586 + }, + { + "word": "Furore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sensation", + "romanization": "Furore", + "example_sentence_native": "Der neue Künstler machte Furore mit seiner Ausstellung.", + "example_sentence_english": "The new artist caused a sensation with his exhibition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26591 + }, + { + "word": "Fussballmannschaft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football team", + "romanization": "Fussballmannschaft", + "example_sentence_native": "Meine Lieblingsfussballmannschaft hat gestern gewonnen.", + "example_sentence_english": "My favorite football team won yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26592 + }, + { + "word": "Förderpreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsorship award", + "romanization": "Förderpreis", + "example_sentence_native": "Sie erhielt einen Förderpreis für ihre innovative Forschung.", + "example_sentence_english": "She received a sponsorship award for her innovative research.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26593 + }, + { + "word": "Gadget", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gadget", + "romanization": "Gadget", + "example_sentence_native": "Er liebt technische Gadgets.", + "example_sentence_english": "He loves technical gadgets.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26595 + }, + { + "word": "Gaspedal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accelerator pedal", + "romanization": "Gaspedal", + "example_sentence_native": "Er drückte das Gaspedal durch.", + "example_sentence_english": "He pressed the accelerator pedal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26598 + }, + { + "word": "Gebrüll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roaring;bellowing;shouting", + "romanization": "Gebrüll", + "example_sentence_native": "Das Gebrüll des Löwen war im ganzen Zoo zu hören.", + "example_sentence_english": "The roaring of the lion could be heard throughout the zoo.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26600 + }, + { + "word": "Gegenmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antidote;remedy", + "romanization": "Gegenmittel", + "example_sentence_native": "Es gibt kein bekanntes Gegenmittel für dieses Gift.", + "example_sentence_english": "There is no known antidote for this poison.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26601 + }, + { + "word": "Gehilfe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assistant;helper", + "romanization": "Gehilfe", + "example_sentence_native": "Der Professor stellte einen neuen Gehilfen ein.", + "example_sentence_english": "The professor hired a new assistant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26602 + }, + { + "word": "Generalstreik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "general strike", + "romanization": "Generalstreik", + "example_sentence_native": "Die Gewerkschaften drohten mit einem Generalstreik.", + "example_sentence_english": "The unions threatened a general strike.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26603 + }, + { + "word": "Geografie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geography", + "romanization": "Geografie", + "example_sentence_native": "Im Fach Geografie lernen wir viel über die Welt.", + "example_sentence_english": "In geography class, we learn a lot about the world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26604 + }, + { + "word": "Getue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuss;ado;affectation", + "romanization": "Getue", + "example_sentence_native": "Mach nicht so ein Getue wegen Kleinigkeiten.", + "example_sentence_english": "Don't make such a fuss about trifles.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26606 + }, + { + "word": "Gicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gout", + "romanization": "Gicht", + "example_sentence_native": "Er leidet unter Gicht in den Füßen.", + "example_sentence_english": "He suffers from gout in his feet.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26607 + }, + { + "word": "Glücksbringer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "good luck charm;mascot", + "romanization": "Glücksbringer", + "example_sentence_native": "Dieses vierblättrige Kleeblatt ist mein Glücksbringer.", + "example_sentence_english": "This four-leaf clover is my good luck charm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26608 + }, + { + "word": "Gram", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grief;sorrow;heartache", + "romanization": "Gram", + "example_sentence_native": "Sein Herz war erfüllt von tiefem Gram.", + "example_sentence_english": "His heart was filled with deep sorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26609 + }, + { + "word": "grell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glaring;shrill;garish", + "romanization": "grell", + "example_sentence_native": "Das grelle Licht der Scheinwerfer blendete ihn.", + "example_sentence_english": "The glaring light of the headlights blinded him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26611 + }, + { + "word": "Grossbank", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "major bank;large bank", + "romanization": "Grossbank", + "example_sentence_native": "Die Grossbank kündigte eine Fusion an.", + "example_sentence_english": "The major bank announced a merger.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26612 + }, + { + "word": "grünlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greenish", + "romanization": "grünlich", + "example_sentence_native": "Das Wasser hatte eine leicht grünliche Farbe.", + "example_sentence_english": "The water had a slightly greenish color.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26613 + }, + { + "word": "Gymnasiast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school student (Gymnasium student)", + "romanization": "Gymnasiast", + "example_sentence_native": "Der Gymnasiast bereitete sich auf seine Abiturprüfung vor.", + "example_sentence_english": "The high school student prepared for his Abitur exam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26614 + }, + { + "word": "Halde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heap;dump;spoil tip", + "romanization": "Halde", + "example_sentence_native": "Die alte Kohlehalde wurde in einen Park umgewandelt.", + "example_sentence_english": "The old coal heap was converted into a park.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26615 + }, + { + "word": "Hauswirtschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "home economics;household management", + "romanization": "Hauswirtschaft", + "example_sentence_native": "Sie studiert Hauswirtschaft an der Universität.", + "example_sentence_english": "She studies home economics at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26618 + }, + { + "word": "Heimarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homework (paid work done at home);telecommuting", + "romanization": "Heimarbeit", + "example_sentence_native": "Viele Menschen machen heutzutage Heimarbeit.", + "example_sentence_english": "Many people do telecommuting nowadays.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26619 + }, + { + "word": "Hintergrundwissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "background knowledge", + "romanization": "Hintergrundwissen", + "example_sentence_native": "Für diese Aufgabe benötigt man viel Hintergrundwissen.", + "example_sentence_english": "For this task, a lot of background knowledge is needed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26621 + }, + { + "word": "Hinterzimmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back room", + "romanization": "Hinterzimmer", + "example_sentence_native": "Die Politiker trafen sich im Hinterzimmer.", + "example_sentence_english": "The politicians met in the back room.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26622 + }, + { + "word": "Hochstapler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impostor;swindler", + "romanization": "Hochstapler", + "example_sentence_native": "Er entpuppte sich als Hochstapler.", + "example_sentence_english": "He turned out to be an impostor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26625 + }, + { + "word": "hoffnungsvoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hopeful", + "romanization": "hoffnungsvoll", + "example_sentence_native": "Sie blickte hoffnungsvoll in die Zukunft.", + "example_sentence_english": "She looked hopefully into the future.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26626 + }, + { + "word": "huldigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pay homage to;to revere", + "romanization": "huldigen", + "example_sentence_native": "Die Fans huldigen ihrem Idol.", + "example_sentence_english": "The fans pay homage to their idol.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26629 + }, + { + "word": "Husky", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "husky (dog breed)", + "romanization": "Husky", + "example_sentence_native": "Der Husky ist ein Schlittenhund.", + "example_sentence_english": "The husky is a sled dog.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26630 + }, + { + "word": "Hypertonie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypertension;high blood pressure", + "romanization": "Hypertonie", + "example_sentence_native": "Viele Menschen leiden unter Hypertonie.", + "example_sentence_english": "Many people suffer from hypertension.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26631 + }, + { + "word": "Höhenunterschied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difference in height;elevation difference", + "romanization": "Höhenunterschied", + "example_sentence_native": "Der Höhenunterschied zwischen den beiden Bergen ist beträchtlich.", + "example_sentence_english": "The difference in height between the two mountains is considerable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26632 + }, + { + "word": "Hülse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shell;casing;pod;sleeve", + "romanization": "Hülse", + "example_sentence_native": "Die Erbsen sind noch in der Hülse.", + "example_sentence_english": "The peas are still in the pod.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26633 + }, + { + "word": "Infekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infection", + "romanization": "Infekt", + "example_sentence_native": "Er hat einen viralen Infekt.", + "example_sentence_english": "He has a viral infection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26635 + }, + { + "word": "Interim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interim;temporary period", + "romanization": "Interim", + "example_sentence_native": "Er leitet das Unternehmen im Interim.", + "example_sentence_english": "He is leading the company on an interim basis.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26636 + }, + { + "word": "isländisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Icelandic", + "romanization": "isländisch", + "example_sentence_native": "Sie spricht fließend Isländisch.", + "example_sentence_english": "She speaks fluent Icelandic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26637 + }, + { + "word": "Jahresumsatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual turnover;annual revenue", + "romanization": "Jahresumsatz", + "example_sentence_native": "Der Jahresumsatz des Unternehmens ist gestiegen.", + "example_sentence_english": "The company's annual turnover has increased.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26639 + }, + { + "word": "Jungfräulichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virginity", + "romanization": "Jungfräulichkeit", + "example_sentence_native": "Die Jungfräulichkeit ist in einigen Kulturen von großer Bedeutung.", + "example_sentence_english": "Virginity is of great importance in some cultures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26642 + }, + { + "word": "Kadaver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carcass;cadaver", + "romanization": "Kadaver", + "example_sentence_native": "Der Kadaver des Tieres lag am Straßenrand.", + "example_sentence_english": "The animal's carcass lay by the roadside.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26643 + }, + { + "word": "Kakerlake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cockroach", + "romanization": "Kakerlake", + "example_sentence_native": "Eine Kakerlake krabbelte über den Küchenboden.", + "example_sentence_english": "A cockroach crawled across the kitchen floor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26644 + }, + { + "word": "Kategorisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "categorization", + "romanization": "Kategorisierung", + "example_sentence_native": "Die Kategorisierung von Daten ist wichtig für die Analyse.", + "example_sentence_english": "The categorization of data is important for analysis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26648 + }, + { + "word": "klamm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clammy;damp;broke", + "romanization": "klamm", + "example_sentence_native": "Nach dem Regen war die Luft klamm.", + "example_sentence_english": "After the rain, the air was clammy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26651 + }, + { + "word": "klonen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clone", + "romanization": "klonen", + "example_sentence_native": "Wissenschaftler versuchen, Tiere zu klonen.", + "example_sentence_english": "Scientists are trying to clone animals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26654 + }, + { + "word": "Krabbe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crab", + "romanization": "Krabbe", + "example_sentence_native": "Die Krabbe läuft seitwärts am Strand.", + "example_sentence_english": "The crab walks sideways on the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26661 + }, + { + "word": "Kruzifix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucifix", + "romanization": "Kruzifix", + "example_sentence_native": "An der Wand hing ein altes Kruzifix.", + "example_sentence_english": "An old crucifix hung on the wall.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26662 + }, + { + "word": "Krümmung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curvature;bend", + "romanization": "Krümmung", + "example_sentence_native": "Die Krümmung der Straße war sehr scharf.", + "example_sentence_english": "The bend in the road was very sharp.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26663 + }, + { + "word": "Kuppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summit;top;dome", + "romanization": "Kuppe", + "example_sentence_native": "Wir erreichten die Kuppe des Hügels.", + "example_sentence_english": "We reached the summit of the hill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26664 + }, + { + "word": "Käpt'n", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain (colloquial)", + "romanization": "Käpt'n", + "example_sentence_native": "Der Käpt'n gab den Befehl zum Ablegen.", + "example_sentence_english": "The captain gave the order to depart.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26665 + }, + { + "word": "Königsklasse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "premier class;top tier", + "romanization": "Königsklasse", + "example_sentence_native": "Die Formel 1 ist die Königsklasse des Motorsports.", + "example_sentence_english": "Formula 1 is the premier class of motorsport.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26667 + }, + { + "word": "Körperkontakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physical contact", + "romanization": "Körperkontakt", + "example_sentence_native": "Im Sport ist Körperkontakt oft unvermeidlich.", + "example_sentence_english": "In sports, physical contact is often unavoidable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26668 + }, + { + "word": "Landesteil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "part of a country;state", + "romanization": "Landesteil", + "example_sentence_native": "Dieser Landesteil ist bekannt für seine Weinberge.", + "example_sentence_english": "This part of the country is known for its vineyards.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26669 + }, + { + "word": "Landleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural life;country life", + "romanization": "Landleben", + "example_sentence_native": "Das Landleben ist oft ruhiger als das Stadtleben.", + "example_sentence_english": "Rural life is often quieter than city life.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26670 + }, + { + "word": "Landschaftsbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landscape;scenery", + "romanization": "Landschaftsbild", + "example_sentence_native": "Das Landschaftsbild der Alpen ist atemberaubend.", + "example_sentence_english": "The landscape of the Alps is breathtaking.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26671 + }, + { + "word": "Landwirtschaftsminister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Minister of Agriculture", + "romanization": "Landwirtschaftsminister", + "example_sentence_native": "Der Landwirtschaftsminister besuchte die Bauern.", + "example_sentence_english": "The Minister of Agriculture visited the farmers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26672 + }, + { + "word": "Leistungsdruck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressure to perform;performance pressure", + "romanization": "Leistungsdruck", + "example_sentence_native": "Viele Studenten leiden unter hohem Leistungsdruck.", + "example_sentence_english": "Many students suffer from high performance pressure.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26677 + }, + { + "word": "Lorbeer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laurel;bay leaf", + "romanization": "Lorbeer", + "example_sentence_native": "Gib etwas Lorbeer in die Suppe.", + "example_sentence_english": "Put some bay leaf in the soup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26682 + }, + { + "word": "Lymphknoten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lymph node", + "romanization": "Lymphknoten", + "example_sentence_native": "Die Lymphknoten sind ein wichtiger Teil des Immunsystems.", + "example_sentence_english": "The lymph nodes are an important part of the immune system.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26683 + }, + { + "word": "Lümmel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lout;rascal;rogue", + "romanization": "Lümmel", + "example_sentence_native": "Der Lümmel hat schon wieder seine Hausaufgaben nicht gemacht.", + "example_sentence_english": "The rascal hasn't done his homework again.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26685 + }, + { + "word": "Magma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magma", + "romanization": "Magma", + "example_sentence_native": "Magma steigt aus dem Erdinneren auf.", + "example_sentence_english": "Magma rises from the Earth's interior.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26686 + }, + { + "word": "Mana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mana", + "romanization": "Mana", + "example_sentence_native": "In vielen Fantasy-Spielen benötigt man Mana für Zaubersprüche.", + "example_sentence_english": "In many fantasy games, you need mana for spells.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26687 + }, + { + "word": "Mangan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manganese", + "romanization": "Mangan", + "example_sentence_native": "Mangan ist ein wichtiges Spurenelement für den Körper.", + "example_sentence_english": "Manganese is an important trace element for the body.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26688 + }, + { + "word": "meisterhaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masterful;masterly", + "romanization": "meisterhaft", + "example_sentence_native": "Er spielte das Stück meisterhaft.", + "example_sentence_english": "He played the piece masterfully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26691 + }, + { + "word": "Mietspiegel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rent index", + "romanization": "Mietspiegel", + "example_sentence_native": "Der Mietspiegel gibt Auskunft über die ortsübliche Vergleichsmiete.", + "example_sentence_english": "The rent index provides information about the local comparative rent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26694 + }, + { + "word": "Mitnahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "takeaway;taking along", + "romanization": "Mitnahme", + "example_sentence_native": "Die Mitnahme von Speisen und Getränken ist nicht gestattet.", + "example_sentence_english": "The taking along of food and drinks is not permitted.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26695 + }, + { + "word": "Modellbau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model building", + "romanization": "Modellbau", + "example_sentence_native": "Sein Hobby ist der Modellbau von Flugzeugen.", + "example_sentence_english": "His hobby is model building of airplanes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26696 + }, + { + "word": "motorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motor (adj.);motoric", + "romanization": "motorisch", + "example_sentence_native": "Das Kind zeigt eine gute motorische Entwicklung.", + "example_sentence_english": "The child shows good motor development.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26698 + }, + { + "word": "mythisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythical", + "romanization": "mythisch", + "example_sentence_native": "Die mythische Kreatur lebte in den Bergen.", + "example_sentence_english": "The mythical creature lived in the mountains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26702 + }, + { + "word": "Nachtzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nighttime", + "romanization": "Nachtzeit", + "example_sentence_native": "In der Nachtzeit ist es sehr ruhig.", + "example_sentence_english": "It is very quiet at nighttime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26705 + }, + { + "word": "Nashorn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhinoceros", + "romanization": "Nashorn", + "example_sentence_native": "Das Nashorn ist ein großes Tier.", + "example_sentence_english": "The rhinoceros is a large animal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26706 + }, + { + "word": "Nebenrolle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporting role", + "romanization": "Nebenrolle", + "example_sentence_native": "Er spielte nur eine Nebenrolle in dem Film.", + "example_sentence_english": "He only played a supporting role in the film.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26709 + }, + { + "word": "Neuankömmling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newcomer", + "romanization": "Neuankömmling", + "example_sentence_native": "Der Neuankömmling wurde herzlich begrüßt.", + "example_sentence_english": "The newcomer was warmly welcomed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26710 + }, + { + "word": "Nomenklatur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nomenclature", + "romanization": "Nomenklatur", + "example_sentence_native": "Die Nomenklatur der Pflanzen ist sehr komplex.", + "example_sentence_english": "The nomenclature of plants is very complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26712 + }, + { + "word": "nordafrikanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "North African", + "romanization": "nordafrikanisch", + "example_sentence_native": "Er hat nordafrikanische Wurzeln.", + "example_sentence_english": "He has North African roots.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26713 + }, + { + "word": "Oldie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oldie (song;car;person)", + "romanization": "Oldie", + "example_sentence_native": "Im Radio lief ein alter Oldie.", + "example_sentence_english": "An oldie was playing on the radio.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26714 + }, + { + "word": "Oratorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oratorio", + "romanization": "Oratorium", + "example_sentence_native": "Händels \"Messiah\" ist ein berühmtes Oratorium.", + "example_sentence_english": "Handel's \"Messiah\" is a famous oratorio.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26716 + }, + { + "word": "Ortseingang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "town entrance", + "romanization": "Ortseingang", + "example_sentence_native": "Am Ortseingang steht ein großes Schild.", + "example_sentence_english": "There is a large sign at the town entrance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26717 + }, + { + "word": "Ostseeküste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Baltic Sea coast", + "romanization": "Ostseeküste", + "example_sentence_native": "Wir verbringen unseren Urlaub an der Ostseeküste.", + "example_sentence_english": "We are spending our vacation on the Baltic Sea coast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26718 + }, + { + "word": "Penalty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty", + "romanization": "Penalty", + "example_sentence_native": "Der Schiedsrichter gab einen Elfmeter, einen Penalty.", + "example_sentence_english": "The referee gave a penalty kick, a penalty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26723 + }, + { + "word": "penibel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous", + "romanization": "penibel", + "example_sentence_native": "Er ist sehr penibel, wenn es um Sauberkeit geht.", + "example_sentence_english": "He is very meticulous when it comes to cleanliness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26724 + }, + { + "word": "perfektionieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perfect", + "romanization": "perfektionieren", + "example_sentence_native": "Sie möchte ihre Deutschkenntnisse perfektionieren.", + "example_sentence_english": "She wants to perfect her German skills.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26725 + }, + { + "word": "periodisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "periodic", + "romanization": "periodisch", + "example_sentence_native": "Die periodischen Bewegungen der Pendeluhr sind faszinierend.", + "example_sentence_english": "The periodic movements of the pendulum clock are fascinating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26726 + }, + { + "word": "Perso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ID card", + "romanization": "Perso", + "example_sentence_native": "Hast du deinen Perso dabei?", + "example_sentence_english": "Do you have your ID card with you?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26727 + }, + { + "word": "Personaler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "HR manager", + "romanization": "Personaler", + "example_sentence_native": "Der Personaler hat das Vorstellungsgespräch geführt.", + "example_sentence_english": "The HR manager conducted the job interview.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26728 + }, + { + "word": "Personalmangel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "staff shortage", + "romanization": "Personalmangel", + "example_sentence_native": "Viele Branchen leiden unter Personalmangel.", + "example_sentence_english": "Many industries suffer from staff shortages.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26729 + }, + { + "word": "Personennahverkehr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "local public transport", + "romanization": "Personennahverkehr", + "example_sentence_native": "Der Ausbau des Personennahverkehrs ist wichtig für die Umwelt.", + "example_sentence_english": "The expansion of local public transport is important for the environment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26730 + }, + { + "word": "pflegend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caring", + "romanization": "pflegend", + "example_sentence_native": "Sie hat eine sehr pflegende Art.", + "example_sentence_english": "She has a very caring manner.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26732 + }, + { + "word": "Phobie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phobia", + "romanization": "Phobie", + "example_sentence_native": "Viele Menschen leiden unter einer Spinnenphobie.", + "example_sentence_english": "Many people suffer from arachnophobia.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26733 + }, + { + "word": "Primat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primate", + "romanization": "Primat", + "example_sentence_native": "Der Mensch gehört zur Ordnung der Primaten.", + "example_sentence_english": "Humans belong to the order of primates.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26736 + }, + { + "word": "Präzedenzfall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precedent", + "romanization": "Präzedenzfall", + "example_sentence_native": "Dieses Urteil könnte einen wichtigen Präzedenzfall schaffen.", + "example_sentence_english": "This ruling could set an important precedent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26738 + }, + { + "word": "Punkrock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punk rock", + "romanization": "Punkrock", + "example_sentence_native": "Er hört gerne alten Punkrock.", + "example_sentence_english": "He likes listening to old punk rock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26739 + }, + { + "word": "putzig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cute;droll", + "romanization": "putzig", + "example_sentence_native": "Das Eichhörnchen war sehr putzig.", + "example_sentence_english": "The squirrel was very cute.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26740 + }, + { + "word": "qualvoll", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agonizing;torturous", + "romanization": "qualvoll", + "example_sentence_native": "Er erlebte einen qualvollen Tod.", + "example_sentence_english": "He experienced an agonizing death.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26742 + }, + { + "word": "Radiologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiology", + "romanization": "Radiologie", + "example_sentence_native": "Sie arbeitet in der Radiologie des Krankenhauses.", + "example_sentence_english": "She works in the radiology department of the hospital.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26743 + }, + { + "word": "Rarität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rarity", + "romanization": "Rarität", + "example_sentence_native": "Diese Briefmarke ist eine echte Rarität.", + "example_sentence_english": "This stamp is a real rarity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26745 + }, + { + "word": "Rasur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shave;shaving", + "romanization": "Rasur", + "example_sentence_native": "Er braucht eine gründliche Rasur.", + "example_sentence_english": "He needs a thorough shave.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26746 + }, + { + "word": "rausziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pull out;to extract", + "romanization": "rausziehen", + "example_sentence_native": "Er musste den Nagel aus dem Holz rausziehen.", + "example_sentence_english": "He had to pull the nail out of the wood.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26747 + }, + { + "word": "reaktivieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reactivate", + "romanization": "reaktivieren", + "example_sentence_native": "Wir müssen das alte System reaktivieren.", + "example_sentence_english": "We need to reactivate the old system.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26748 + }, + { + "word": "Recovery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recovery", + "romanization": "Recovery", + "example_sentence_native": "Die Recovery des Systems dauerte Stunden.", + "example_sentence_english": "The recovery of the system took hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26749 + }, + { + "word": "Redensart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiom;phrase;figure of speech", + "romanization": "Redensart", + "example_sentence_native": "Das ist nur eine Redensart.", + "example_sentence_english": "That's just an idiom.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26750 + }, + { + "word": "Referendariat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal traineeship;teacher training (practical phase)", + "romanization": "Referendariat", + "example_sentence_native": "Sie beginnt ihr Referendariat im nächsten Monat.", + "example_sentence_english": "She starts her traineeship next month.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26751 + }, + { + "word": "Regenschauer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rain shower", + "romanization": "Regenschauer", + "example_sentence_native": "Wir wurden von einem plötzlichen Regenschauer überrascht.", + "example_sentence_english": "We were surprised by a sudden rain shower.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26752 + }, + { + "word": "Rentabilität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profitability;viability", + "romanization": "Rentabilität", + "example_sentence_native": "Die Rentabilität des Projekts ist fraglich.", + "example_sentence_english": "The profitability of the project is questionable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26756 + }, + { + "word": "Resistenz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance", + "romanization": "Resistenz", + "example_sentence_native": "Bakterien können eine Resistenz gegen Antibiotika entwickeln.", + "example_sentence_english": "Bacteria can develop resistance to antibiotics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26757 + }, + { + "word": "Rohöl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crude oil", + "romanization": "Rohöl", + "example_sentence_native": "Der Preis für Rohöl ist gestiegen.", + "example_sentence_english": "The price of crude oil has risen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26761 + }, + { + "word": "Rosé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosé (wine)", + "romanization": "Rosé", + "example_sentence_native": "Ich trinke gerne ein Glas Rosé im Sommer.", + "example_sentence_english": "I like to drink a glass of rosé in summer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26763 + }, + { + "word": "Schlafengehen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "going to bed;bedtime", + "romanization": "Schlafengehen", + "example_sentence_native": "Das Schlafengehen ist für Kinder oft eine Herausforderung.", + "example_sentence_english": "Going to bed is often a challenge for children.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26770 + }, + { + "word": "Schlips", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tie (necktie)", + "romanization": "Schlips", + "example_sentence_native": "Er trägt immer einen Schlips zur Arbeit.", + "example_sentence_english": "He always wears a tie to work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26771 + }, + { + "word": "Schnittpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intersection;point of intersection", + "romanization": "Schnittpunkt", + "example_sentence_native": "Der Schnittpunkt der beiden Linien ist (2,3).", + "example_sentence_english": "The intersection of the two lines is (2,3).", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26772 + }, + { + "word": "Schnürsenkel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shoelace", + "romanization": "Schnürsenkel", + "example_sentence_native": "Mein Schnürsenkel ist offen.", + "example_sentence_english": "My shoelace is untied.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26773 + }, + { + "word": "Schriftstück", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "document;written piece", + "romanization": "Schriftstück", + "example_sentence_native": "Bitte reichen Sie alle notwendigen Schriftstücke ein.", + "example_sentence_english": "Please submit all necessary documents.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26774 + }, + { + "word": "Schund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trash;rubbish;junk (e.g.;literature)", + "romanization": "Schund", + "example_sentence_native": "Dieses Buch ist reiner Schund.", + "example_sentence_english": "This book is pure trash.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26775 + }, + { + "word": "schwül", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humid;muggy", + "romanization": "schwül", + "example_sentence_native": "Das Wetter ist heute sehr schwül.", + "example_sentence_english": "The weather is very humid today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26777 + }, + { + "word": "Seemeile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nautical mile", + "romanization": "Seemeile", + "example_sentence_native": "Eine Seemeile entspricht 1852 Metern.", + "example_sentence_english": "One nautical mile is equal to 1852 meters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26778 + }, + { + "word": "Selbstmordattentäter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicide bomber", + "romanization": "Selbstmordattentäter", + "example_sentence_native": "Der Selbstmordattentäter wurde von der Polizei gestoppt.", + "example_sentence_english": "The suicide bomber was stopped by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26779 + }, + { + "word": "Sozialpädagogik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social pedagogy", + "romanization": "Sozialpädagogik", + "example_sentence_native": "Sie studiert Sozialpädagogik an der Universität.", + "example_sentence_english": "She studies social pedagogy at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26782 + }, + { + "word": "Sozialwissenschaftler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social scientist", + "romanization": "Sozialwissenschaftler", + "example_sentence_native": "Der Sozialwissenschaftler veröffentlichte eine neue Studie.", + "example_sentence_english": "The social scientist published a new study.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26783 + }, + { + "word": "Sparsamkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frugality", + "romanization": "Sparsamkeit", + "example_sentence_native": "Sparsamkeit ist eine Tugend, besonders in schwierigen Zeiten.", + "example_sentence_english": "Frugality is a virtue, especially in difficult times.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26784 + }, + { + "word": "spekulativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculative", + "romanization": "spekulativ", + "example_sentence_native": "Seine Aussagen waren rein spekulativ.", + "example_sentence_english": "His statements were purely speculative.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26785 + }, + { + "word": "Sphinx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sphinx", + "romanization": "Sphinx", + "example_sentence_native": "Die Sphinx von Gizeh ist ein beeindruckendes Bauwerk.", + "example_sentence_english": "The Sphinx of Giza is an impressive structure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26786 + }, + { + "word": "Sportpark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sports park", + "romanization": "Sportpark", + "example_sentence_native": "Wir treffen uns morgen im Sportpark.", + "example_sentence_english": "We'll meet tomorrow at the sports park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26787 + }, + { + "word": "Stadtführung", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "city tour", + "romanization": "Stadtführung", + "example_sentence_native": "Wir haben eine interessante Stadtführung gemacht.", + "example_sentence_english": "We did an interesting city tour.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26788 + }, + { + "word": "Stalking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stalking", + "romanization": "Stalking", + "example_sentence_native": "Stalking ist in vielen Ländern strafbar.", + "example_sentence_english": "Stalking is punishable in many countries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26789 + }, + { + "word": "Startkapital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seed capital", + "romanization": "Startkapital", + "example_sentence_native": "Für die Gründung des Unternehmens benötigte er Startkapital.", + "example_sentence_english": "He needed seed capital to found the company.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26790 + }, + { + "word": "Staudamm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dam", + "romanization": "Staudamm", + "example_sentence_native": "Der Staudamm dient der Stromerzeugung.", + "example_sentence_english": "The dam is used for electricity generation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26791 + }, + { + "word": "Steinhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stone house", + "romanization": "Steinhaus", + "example_sentence_native": "Sie wohnen in einem alten Steinhaus auf dem Land.", + "example_sentence_english": "They live in an old stone house in the countryside.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26792 + }, + { + "word": "Stele", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stele", + "romanization": "Stele", + "example_sentence_native": "Die alte Stele trug eine Inschrift in Hieroglyphen.", + "example_sentence_english": "The old stele bore an inscription in hieroglyphs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26793 + }, + { + "word": "Sternbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constellation", + "romanization": "Sternbild", + "example_sentence_native": "Am Nachthimmel konnte man viele Sternbilder sehen.", + "example_sentence_english": "Many constellations could be seen in the night sky.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26794 + }, + { + "word": "Strukturierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structuring", + "romanization": "Strukturierung", + "example_sentence_native": "Die Strukturierung des Projekts ist entscheidend für den Erfolg.", + "example_sentence_english": "The structuring of the project is crucial for success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26795 + }, + { + "word": "Suspendierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suspension", + "romanization": "Suspendierung", + "example_sentence_native": "Nach dem Vorfall erfolgte seine Suspendierung vom Dienst.", + "example_sentence_english": "After the incident, his suspension from duty followed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26797 + }, + { + "word": "Swap", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "swap", + "romanization": "Swap", + "example_sentence_native": "Ein Zinsswap ist ein Finanzinstrument.", + "example_sentence_english": "An interest rate swap is a financial instrument.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26798 + }, + { + "word": "Südkoreaner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South Korean (person)", + "romanization": "Südkoreaner", + "example_sentence_native": "Er ist ein Südkoreaner, der in Berlin lebt.", + "example_sentence_english": "He is a South Korean who lives in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26799 + }, + { + "word": "Teiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divisor;divider", + "romanization": "Teiler", + "example_sentence_native": "Die Zahl 3 ist ein Teiler von 9.", + "example_sentence_english": "The number 3 is a divisor of 9.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26803 + }, + { + "word": "Telefonzelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "telephone booth", + "romanization": "Telefonzelle", + "example_sentence_native": "Ich suchte eine Telefonzelle, um anzurufen.", + "example_sentence_english": "I was looking for a telephone booth to make a call.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26804 + }, + { + "word": "Template", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "template", + "romanization": "Template", + "example_sentence_native": "Wir verwenden ein Template für die Präsentation.", + "example_sentence_english": "We use a template for the presentation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26805 + }, + { + "word": "Tischplatte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tabletop", + "romanization": "Tischplatte", + "example_sentence_native": "Die Tischplatte ist aus massivem Holz gefertigt.", + "example_sentence_english": "The tabletop is made of solid wood.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26807 + }, + { + "word": "Totenkopf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skull;death's head", + "romanization": "Totenkopf", + "example_sentence_native": "Auf der Piratenflagge war ein Totenkopf abgebildet.", + "example_sentence_english": "A skull was depicted on the pirate flag.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26809 + }, + { + "word": "Touring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "touring", + "romanization": "Touring", + "example_sentence_native": "Das ist ein Touring-Modell von BMW.", + "example_sentence_english": "That is a touring model from BMW.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26810 + }, + { + "word": "trauernd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mourning;grieving", + "romanization": "trauernd", + "example_sentence_native": "Die trauernde Familie versammelte sich am Grab.", + "example_sentence_english": "The grieving family gathered at the grave.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26811 + }, + { + "word": "Treuhänder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trustee;fiduciary", + "romanization": "Treuhänder", + "example_sentence_native": "Der Treuhänder verwaltet das Vermögen im Auftrag des Erben.", + "example_sentence_english": "The trustee manages the assets on behalf of the heir.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26812 + }, + { + "word": "tunlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feasible;advisable", + "romanization": "tunlich", + "example_sentence_native": "Wir sollten dies tunlichst vermeiden.", + "example_sentence_english": "We should avoid this as much as possible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26813 + }, + { + "word": "umgebaut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rebuilt;converted", + "romanization": "umgebaut", + "example_sentence_native": "Das umgebaute Haus hat jetzt mehr Platz.", + "example_sentence_english": "The rebuilt house now has more space.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26815 + }, + { + "word": "unangetastet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "untouched;intact", + "romanization": "unangetastet", + "example_sentence_native": "Die alte Tradition blieb unangetastet.", + "example_sentence_english": "The old tradition remained untouched.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26816 + }, + { + "word": "undicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leaky;not watertight", + "romanization": "undicht", + "example_sentence_native": "Das Dach ist undicht und muss repariert werden.", + "example_sentence_english": "The roof is leaky and needs to be repaired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26817 + }, + { + "word": "Ungleichbehandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequal treatment;discrimination", + "romanization": "Ungleichbehandlung", + "example_sentence_native": "Es gab Vorwürfe der Ungleichbehandlung am Arbeitsplatz.", + "example_sentence_english": "There were accusations of unequal treatment at the workplace.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26818 + }, + { + "word": "Unikat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unique item;one of a kind", + "romanization": "Unikat", + "example_sentence_native": "Dieses Kunstwerk ist ein echtes Unikat.", + "example_sentence_english": "This artwork is a true unique item.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26819 + }, + { + "word": "unreif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unripe;immature", + "romanization": "unreif", + "example_sentence_native": "Die Früchte sind noch unreif.", + "example_sentence_english": "The fruits are still unripe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26820 + }, + { + "word": "Unterholz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undergrowth;brushwood", + "romanization": "Unterholz", + "example_sentence_native": "Das Unterholz war dicht und schwer zu durchdringen.", + "example_sentence_english": "The undergrowth was dense and difficult to penetrate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26821 + }, + { + "word": "untermalen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to underscore;to accompany (with music)", + "romanization": "untermalen", + "example_sentence_native": "Die Musik untermalt die Szene perfekt.", + "example_sentence_english": "The music perfectly underscores the scene.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26822 + }, + { + "word": "unverdient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeserved", + "romanization": "unverdient", + "example_sentence_native": "Sein Erfolg war nicht unverdient.", + "example_sentence_english": "His success was not undeserved.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26823 + }, + { + "word": "Verblendung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delusion;cladding", + "romanization": "Verblendung", + "example_sentence_native": "Seine Verblendung führte zu falschen Entscheidungen.", + "example_sentence_english": "His delusion led to wrong decisions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26825 + }, + { + "word": "verdreht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twisted;distorted", + "romanization": "verdreht", + "example_sentence_native": "Er hat eine verdrehte Sicht der Dinge.", + "example_sentence_english": "He has a twisted view of things.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26826 + }, + { + "word": "verfangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get caught;to become entangled", + "romanization": "verfangen", + "example_sentence_native": "Der Fisch hat sich im Netz verfangen.", + "example_sentence_english": "The fish got caught in the net.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26827 + }, + { + "word": "Verfassungsrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional law", + "romanization": "Verfassungsrecht", + "example_sentence_native": "Er studiert Verfassungsrecht an der Universität.", + "example_sentence_english": "He studies constitutional law at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26828 + }, + { + "word": "verfestigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consolidate;to solidify", + "romanization": "verfestigen", + "example_sentence_native": "Die Maßnahmen sollen den Frieden verfestigen.", + "example_sentence_english": "The measures are intended to consolidate peace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26829 + }, + { + "word": "verfärben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discolor;to stain", + "romanization": "verfärben", + "example_sentence_native": "Das alte T-Shirt hat sich verfärbt.", + "example_sentence_english": "The old T-shirt has discolored.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26830 + }, + { + "word": "Vergaser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carburetor", + "romanization": "Vergaser", + "example_sentence_native": "Der Motor braucht einen neuen Vergaser.", + "example_sentence_english": "The engine needs a new carburetor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26831 + }, + { + "word": "Verkehrsweg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "traffic route;transport route", + "romanization": "Verkehrsweg", + "example_sentence_native": "Der neue Verkehrsweg soll die Staus reduzieren.", + "example_sentence_english": "The new traffic route is intended to reduce traffic jams.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26833 + }, + { + "word": "vermelden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to report;to announce", + "romanization": "vermelden", + "example_sentence_native": "Die Nachrichten vermelden gute Neuigkeiten.", + "example_sentence_english": "The news reports good news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26834 + }, + { + "word": "Versicherungswirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurance industry", + "romanization": "Versicherungswirtschaft", + "example_sentence_native": "Die Versicherungswirtschaft ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "The insurance industry is an important economic sector.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26836 + }, + { + "word": "vertonen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set to music;to score (a film)", + "romanization": "vertonen", + "example_sentence_native": "Der Komponist wird den Film vertonen.", + "example_sentence_english": "The composer will score the film.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26837 + }, + { + "word": "Verzahnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interlocking;gearing", + "romanization": "Verzahnung", + "example_sentence_native": "Die Verzahnung der Räder ist präzise.", + "example_sentence_english": "The meshing of the gears is precise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26838 + }, + { + "word": "verängstigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frightened;scared", + "romanization": "verängstigt", + "example_sentence_native": "Das Kind sah sehr verängstigt aus.", + "example_sentence_english": "The child looked very frightened.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26839 + }, + { + "word": "vielschichtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multifaceted", + "romanization": "vielschichtig", + "example_sentence_native": "Das Problem ist vielschichtig.", + "example_sentence_english": "The problem is multifaceted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26840 + }, + { + "word": "volkstümlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "popular;traditional (folk)", + "romanization": "volkstümlich", + "example_sentence_native": "Er sang ein volkstümliches Lied.", + "example_sentence_english": "He sang a traditional folk song.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26842 + }, + { + "word": "volkswirtschaftlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic (national economy)", + "romanization": "volkswirtschaftlich", + "example_sentence_native": "Das hat volkswirtschaftliche Auswirkungen.", + "example_sentence_english": "That has economic implications.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26843 + }, + { + "word": "Vollbremsung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergency stop", + "romanization": "Vollbremsung", + "example_sentence_native": "Der Fahrer machte eine Vollbremsung.", + "example_sentence_english": "The driver made an emergency stop.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26844 + }, + { + "word": "vollwertig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wholesome;full-value", + "romanization": "vollwertig", + "example_sentence_native": "Sie ernährt sich vollwertig.", + "example_sentence_english": "She eats a wholesome diet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26845 + }, + { + "word": "voranbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advance;to promote", + "romanization": "voranbringen", + "example_sentence_native": "Wir müssen das Projekt voranbringen.", + "example_sentence_english": "We must advance the project.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "voran", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26846 + }, + { + "word": "vorankommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make progress;to get ahead", + "romanization": "vorankommen", + "example_sentence_native": "Wir kommen gut voran.", + "example_sentence_english": "We are making good progress.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "voran", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26847 + }, + { + "word": "Vorsichtsmassnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precautionary measure", + "romanization": "Vorsichtsmassnahme", + "example_sentence_native": "Es ist eine wichtige Vorsichtsmassnahme.", + "example_sentence_english": "It is an important precautionary measure.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26848 + }, + { + "word": "Vorstandschef", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "CEO;chairman of the board", + "romanization": "Vorstandschef", + "example_sentence_native": "Der Vorstandschef gab eine Erklärung ab.", + "example_sentence_english": "The CEO issued a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26849 + }, + { + "word": "Vortritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right of way;precedence", + "romanization": "Vortritt", + "example_sentence_native": "Er gab ihr den Vortritt.", + "example_sentence_english": "He gave her the right of way.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26850 + }, + { + "word": "Warteschleife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waiting loop;hold queue (phone)", + "romanization": "Warteschleife", + "example_sentence_native": "Ich hing lange in der Warteschleife.", + "example_sentence_english": "I was on hold for a long time.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26851 + }, + { + "word": "Warze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wart", + "romanization": "Warze", + "example_sentence_native": "Er hatte eine Warze am Finger.", + "example_sentence_english": "He had a wart on his finger.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26852 + }, + { + "word": "Wehmut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "melancholy;wistfulness", + "romanization": "Wehmut", + "example_sentence_native": "Sie empfand eine tiefe Wehmut.", + "example_sentence_english": "She felt a deep melancholy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26853 + }, + { + "word": "Weihnachtslied", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas carol", + "romanization": "Weihnachtslied", + "example_sentence_native": "Wir sangen ein Weihnachtslied.", + "example_sentence_english": "We sang a Christmas carol.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26854 + }, + { + "word": "Weltmeistertitel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world championship title", + "romanization": "Weltmeistertitel", + "example_sentence_native": "Er gewann den Weltmeistertitel.", + "example_sentence_english": "He won the world championship title.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26855 + }, + { + "word": "Werbungskosten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "income-related expenses (tax deductible)", + "romanization": "Werbungskosten", + "example_sentence_native": "Sie können die Werbungskosten absetzen.", + "example_sentence_english": "You can deduct the income-related expenses.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26856 + }, + { + "word": "westafrikanisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "West African", + "romanization": "westafrikanisch", + "example_sentence_native": "Er studierte westafrikanische Musik.", + "example_sentence_english": "He studied West African music.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26858 + }, + { + "word": "Wirtschaftsministerium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ministry of Economy", + "romanization": "Wirtschaftsministerium", + "example_sentence_native": "Das Wirtschaftsministerium hat neue Richtlinien angekündigt.", + "example_sentence_english": "The Ministry of Economy has announced new guidelines.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26861 + }, + { + "word": "Wohngemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shared flat", + "romanization": "Wohngemeinschaft", + "example_sentence_native": "Ich lebe in einer Wohngemeinschaft mit drei anderen Studenten.", + "example_sentence_english": "I live in a shared flat with three other students.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26862 + }, + { + "word": "Zahlungsunfähigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insolvency", + "romanization": "Zahlungsunfähigkeit", + "example_sentence_native": "Das Unternehmen meldete Zahlungsunfähigkeit an.", + "example_sentence_english": "The company declared insolvency.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26869 + }, + { + "word": "Zeitmanagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time management", + "romanization": "Zeitmanagement", + "example_sentence_native": "Gutes Zeitmanagement ist entscheidend für den Erfolg.", + "example_sentence_english": "Good time management is crucial for success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26870 + }, + { + "word": "zerbrechlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fragile", + "romanization": "zerbrechlich", + "example_sentence_native": "Vorsicht, diese Vase ist sehr zerbrechlich.", + "example_sentence_english": "Be careful, this vase is very fragile.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26871 + }, + { + "word": "zerschneiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut up", + "romanization": "zerschneiden", + "example_sentence_native": "Er musste das Seil zerschneiden, um sich zu befreien.", + "example_sentence_english": "He had to cut up the rope to free himself.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26872 + }, + { + "word": "Zersetzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decomposition", + "romanization": "Zersetzung", + "example_sentence_native": "Die Zersetzung organischer Stoffe ist ein natürlicher Prozess.", + "example_sentence_english": "The decomposition of organic matter is a natural process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26873 + }, + { + "word": "zertifiziert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certified", + "romanization": "zertifiziert", + "example_sentence_native": "Er ist ein zertifizierter Tauchlehrer.", + "example_sentence_english": "He is a certified diving instructor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26874 + }, + { + "word": "Zier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ornament", + "romanization": "Zier", + "example_sentence_native": "Die Zier des Gartens war beeindruckend.", + "example_sentence_english": "The ornament of the garden was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26875 + }, + { + "word": "zudecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cover up", + "romanization": "zudecken", + "example_sentence_native": "Bitte deck das Baby gut zu.", + "example_sentence_english": "Please cover the baby well.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "decken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26876 + }, + { + "word": "zurücksetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reset", + "romanization": "zurücksetzen", + "example_sentence_native": "Sie müssen das Gerät auf die Werkseinstellungen zurücksetzen.", + "example_sentence_english": "You need to reset the device to factory settings.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26877 + }, + { + "word": "zurückwerfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to throw back", + "romanization": "zurückwerfen", + "example_sentence_native": "Der Wind warf den Ball zurück.", + "example_sentence_english": "The wind threw the ball back.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "werfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26878 + }, + { + "word": "zusammenziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move in together", + "romanization": "zusammenziehen", + "example_sentence_native": "Sie wollen nächsten Monat zusammenziehen.", + "example_sentence_english": "They want to move in together next month.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26879 + }, + { + "word": "Zwangsversteigerung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forced auction", + "romanization": "Zwangsversteigerung", + "example_sentence_native": "Die Zwangsversteigerung des Hauses findet nächste Woche statt.", + "example_sentence_english": "The forced auction of the house will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26880 + }, + { + "word": "überrumpeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take by surprise", + "romanization": "überrumpeln", + "example_sentence_native": "Sie versuchten, den Feind zu überrumpeln.", + "example_sentence_english": "They tried to take the enemy by surprise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26882 + }, + { + "word": "überschneiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overlap", + "romanization": "überschneiden", + "example_sentence_native": "Die Termine überschneiden sich.", + "example_sentence_english": "The appointments overlap.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26883 + }, + { + "word": "überschütten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pour over", + "romanization": "überschütten", + "example_sentence_native": "Sie überschütteten ihn mit Geschenken.", + "example_sentence_english": "They showered him with gifts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26884 + }, + { + "word": "abschirmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shield", + "romanization": "abschirmen", + "example_sentence_native": "Er versuchte, seine Augen vor dem Licht abzuschirmen.", + "example_sentence_english": "He tried to shield his eyes from the light.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schirmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26885 + }, + { + "word": "Abordnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegation", + "romanization": "Abordnung", + "example_sentence_native": "Eine Abordnung der Regierung besuchte die Stadt.", + "example_sentence_english": "A delegation from the government visited the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26886 + }, + { + "word": "Absprung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "take-off", + "romanization": "Absprung", + "example_sentence_native": "Der Skispringer hatte einen perfekten Absprung.", + "example_sentence_english": "The ski jumper had a perfect take-off.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26887 + }, + { + "word": "angeführt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "led", + "romanization": "angeführt", + "example_sentence_native": "Das Team, angeführt vom Kapitän, gewann das Spiel.", + "example_sentence_english": "The team, led by the captain, won the game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26893 + }, + { + "word": "angliedern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affiliate", + "romanization": "angliedern", + "example_sentence_native": "Die neue Abteilung soll an das Hauptbüro angegliedert werden.", + "example_sentence_english": "The new department is to be affiliated with the main office.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "gliedern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26894 + }, + { + "word": "anmieten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rent", + "romanization": "anmieten", + "example_sentence_native": "Wir wollen eine Wohnung anmieten.", + "example_sentence_english": "We want to rent an apartment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "mieten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26895 + }, + { + "word": "anraten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advise", + "romanization": "anraten", + "example_sentence_native": "Ich würde Ihnen anraten, vorsichtig zu sein.", + "example_sentence_english": "I would advise you to be careful.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "raten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26896 + }, + { + "word": "Armaturenbrett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dashboard", + "romanization": "Armaturenbrett", + "example_sentence_native": "Auf dem Armaturenbrett leuchtete eine Warnlampe.", + "example_sentence_english": "A warning light lit up on the dashboard.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26899 + }, + { + "word": "aufrichten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to straighten up;to erect", + "romanization": "aufrichten", + "example_sentence_native": "Er musste sich aufrichten, um besser sehen zu können.", + "example_sentence_english": "He had to straighten up to see better.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "richten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26900 + }, + { + "word": "aufwühlen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stir up;to agitate", + "romanization": "aufwühlen", + "example_sentence_native": "Die Nachricht wühlte seine Gefühle auf.", + "example_sentence_english": "The news stirred up his feelings.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "wühlen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26901 + }, + { + "word": "aufwerten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to upgrade;to revalue", + "romanization": "aufwerten", + "example_sentence_native": "Die Renovierung wird das Haus aufwerten.", + "example_sentence_english": "The renovation will upgrade the house.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "werten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26902 + }, + { + "word": "ausfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drive out;to extend", + "romanization": "ausfahren", + "example_sentence_native": "Wir werden morgen aufs Land ausfahren.", + "example_sentence_english": "We will drive out to the countryside tomorrow.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26903 + }, + { + "word": "Ausfuhr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "export", + "romanization": "Ausfuhr", + "example_sentence_native": "Die Ausfuhr von Gütern ist gestiegen.", + "example_sentence_english": "The export of goods has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26904 + }, + { + "word": "ausbessern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repair;to mend", + "romanization": "ausbessern", + "example_sentence_native": "Er musste das Loch in der Hose ausbessern.", + "example_sentence_english": "He had to mend the hole in the trousers.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "bessern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26905 + }, + { + "word": "ausdienen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to serve one's time;to be worn out", + "romanization": "ausdienen", + "example_sentence_native": "Das alte Auto hat ausgedient.", + "example_sentence_english": "The old car has served its time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "dienen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26906 + }, + { + "word": "aussperren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lock out;to exclude", + "romanization": "aussperren", + "example_sentence_native": "Sie hat sich aus Versehen aus der Wohnung ausgesperrt.", + "example_sentence_english": "She accidentally locked herself out of the apartment.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "sperren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26907 + }, + { + "word": "Ausgliederung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outsourcing;spin-off", + "romanization": "Ausgliederung", + "example_sentence_native": "Die Ausgliederung der IT-Abteilung führte zu Kosteneinsparungen.", + "example_sentence_english": "The outsourcing of the IT department led to cost savings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26908 + }, + { + "word": "Autist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autistic person (male)", + "romanization": "Autist", + "example_sentence_native": "Er ist ein Autist und hat eine besondere Art, die Welt zu sehen.", + "example_sentence_english": "He is an autistic person and has a special way of seeing the world.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26909 + }, + { + "word": "Autofahrerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female car driver", + "romanization": "Autofahrerin", + "example_sentence_native": "Die Autofahrerin parkte ihr Auto am Straßenrand.", + "example_sentence_english": "The female car driver parked her car at the roadside.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26910 + }, + { + "word": "autorisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to authorize", + "romanization": "autorisieren", + "example_sentence_native": "Nur autorisierte Personen haben Zugang.", + "example_sentence_english": "Only authorized persons have access.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26911 + }, + { + "word": "Autoschlüssel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car key", + "romanization": "Autoschlüssel", + "example_sentence_native": "Wo sind meine Autoschlüssel?", + "example_sentence_english": "Where are my car keys?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26912 + }, + { + "word": "bakteriell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bacterial", + "romanization": "bakteriell", + "example_sentence_native": "Die Infektion ist bakteriell.", + "example_sentence_english": "The infection is bacterial.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26915 + }, + { + "word": "Barbecue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barbecue", + "romanization": "Barbecue", + "example_sentence_native": "Wir machen am Wochenende ein Barbecue.", + "example_sentence_english": "We are having a barbecue on the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26917 + }, + { + "word": "Bausch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wad;lump;pad", + "romanization": "Bausch", + "example_sentence_native": "Er stopfte einen Bausch Watte in die Wunde.", + "example_sentence_english": "He stuffed a wad of cotton into the wound.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26919 + }, + { + "word": "bekennend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confessing;avowed", + "romanization": "bekennend", + "example_sentence_native": "Er ist ein bekennender Fan der Band.", + "example_sentence_english": "He is an avowed fan of the band.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26923 + }, + { + "word": "Belichtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exposure;lighting", + "romanization": "Belichtung", + "example_sentence_native": "Die Belichtung des Fotos war perfekt.", + "example_sentence_english": "The exposure of the photo was perfect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26924 + }, + { + "word": "berechenbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predictable;calculable", + "romanization": "berechenbar", + "example_sentence_native": "Sein Verhalten ist sehr berechenbar.", + "example_sentence_english": "His behavior is very predictable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26928 + }, + { + "word": "bezwecken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aim at;to intend", + "romanization": "bezwecken", + "example_sentence_native": "Was bezweckst du mit dieser Frage?", + "example_sentence_english": "What do you aim to achieve with this question?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26929 + }, + { + "word": "Blindgänger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dud;unexploded bomb", + "romanization": "Blindgänger", + "example_sentence_native": "Die alte Bombe war ein Blindgänger.", + "example_sentence_english": "The old bomb was a dud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26930 + }, + { + "word": "Blättchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small leaf;leaflet", + "romanization": "Blättchen", + "example_sentence_native": "Ein kleines Blättchen fiel vom Baum.", + "example_sentence_english": "A small leaf fell from the tree.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26932 + }, + { + "word": "Bootshaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boathouse", + "romanization": "Bootshaus", + "example_sentence_native": "Das Bootshaus liegt direkt am See.", + "example_sentence_english": "The boathouse is right by the lake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26934 + }, + { + "word": "brodeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to simmer;to bubble", + "romanization": "brodeln", + "example_sentence_native": "Das Wasser brodelte im Topf.", + "example_sentence_english": "The water was bubbling in the pot.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26937 + }, + { + "word": "Buggy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buggy;stroller", + "romanization": "Buggy", + "example_sentence_native": "Der Buggy ist perfekt für das Baby.", + "example_sentence_english": "The stroller is perfect for the baby.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26938 + }, + { + "word": "Champignon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mushroom", + "romanization": "Champignon", + "example_sentence_native": "Ich mag Champignons in meiner Suppe.", + "example_sentence_english": "I like mushrooms in my soup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26944 + }, + { + "word": "Charter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charter", + "romanization": "Charter", + "example_sentence_native": "Die Charter des Schiffes wurde unterschrieben.", + "example_sentence_english": "The charter of the ship was signed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26945 + }, + { + "word": "Chihuahua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Chihuahua", + "romanization": "Chihuahua", + "example_sentence_native": "Mein Nachbar hat einen kleinen Chihuahua.", + "example_sentence_english": "My neighbor has a small Chihuahua.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26947 + }, + { + "word": "Denkschrift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "memorandum", + "romanization": "Denkschrift", + "example_sentence_native": "Die Regierung veröffentlichte eine Denkschrift zu diesem Thema.", + "example_sentence_english": "The government published a memorandum on this topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26953 + }, + { + "word": "denunzieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to denounce", + "romanization": "denunzieren", + "example_sentence_native": "Er drohte, seinen Kollegen zu denunzieren.", + "example_sentence_english": "He threatened to denounce his colleague.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26954 + }, + { + "word": "diagnostisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnostic", + "romanization": "diagnostisch", + "example_sentence_native": "Die diagnostischen Tests waren sehr genau.", + "example_sentence_english": "The diagnostic tests were very accurate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26955 + }, + { + "word": "Diele", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hallway", + "romanization": "Diele", + "example_sentence_native": "Die Diele ist lang und schmal.", + "example_sentence_english": "The hallway is long and narrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26956 + }, + { + "word": "Dinkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spelt", + "romanization": "Dinkel", + "example_sentence_native": "Brot aus Dinkel ist sehr gesund.", + "example_sentence_english": "Bread made from spelt is very healthy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26957 + }, + { + "word": "Dorfgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "village community", + "romanization": "Dorfgemeinschaft", + "example_sentence_native": "Die Dorfgemeinschaft traf sich im Gemeindehaus.", + "example_sentence_english": "The village community met in the community center.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26961 + }, + { + "word": "Dreissiger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person in their thirties", + "romanization": "Dreissiger", + "example_sentence_native": "Er ist ein Dreissiger und sucht eine neue Herausforderung.", + "example_sentence_english": "He is a person in his thirties and is looking for a new challenge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26963 + }, + { + "word": "Durchblutung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blood circulation", + "romanization": "Durchblutung", + "example_sentence_native": "Regelmäßige Bewegung fördert die Durchblutung.", + "example_sentence_english": "Regular exercise promotes blood circulation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26966 + }, + { + "word": "Ehrengast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guest of honor", + "romanization": "Ehrengast", + "example_sentence_native": "Der Bürgermeister war der Ehrengast bei der Feier.", + "example_sentence_english": "The mayor was the guest of honor at the celebration.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26969 + }, + { + "word": "Einfühlungsvermögen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empathy;sensitivity", + "romanization": "Einfühlungsvermögen", + "example_sentence_native": "Sie zeigte viel Einfühlungsvermögen für die Situation.", + "example_sentence_english": "She showed a lot of empathy for the situation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26970 + }, + { + "word": "eingegangen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "withered;received;shrunken", + "romanization": "eingegangen", + "example_sentence_native": "Die Blumen sind leider eingegangen.", + "example_sentence_english": "The flowers have unfortunately withered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26971 + }, + { + "word": "eingeschlossen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included;enclosed;trapped", + "romanization": "eingeschlossen", + "example_sentence_native": "Der Preis ist inklusive aller Steuern und Gebühren eingeschlossen.", + "example_sentence_english": "The price is included with all taxes and fees.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26972 + }, + { + "word": "Eisberg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iceberg", + "romanization": "Eisberg", + "example_sentence_native": "Nur die Spitze des Eisbergs war sichtbar.", + "example_sentence_english": "Only the tip of the iceberg was visible.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26973 + }, + { + "word": "ekelig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusting;gross", + "romanization": "ekelig", + "example_sentence_native": "Der Geruch war wirklich ekelig.", + "example_sentence_english": "The smell was really disgusting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26974 + }, + { + "word": "Eleven", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pupils;students", + "romanization": "Eleven", + "example_sentence_native": "Die Eleven bereiteten sich auf die Aufführung vor.", + "example_sentence_english": "The pupils prepared for the performance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26975 + }, + { + "word": "Endgerät", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terminal device;end device", + "romanization": "Endgerät", + "example_sentence_native": "Das Smartphone ist ein beliebtes Endgerät.", + "example_sentence_english": "The smartphone is a popular end device.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26976 + }, + { + "word": "Endkunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "end customer;end user", + "romanization": "Endkunde", + "example_sentence_native": "Das Produkt wurde speziell für den Endkunden entwickelt.", + "example_sentence_english": "The product was developed specifically for the end customer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26977 + }, + { + "word": "Endlager", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "final repository", + "romanization": "Endlager", + "example_sentence_native": "Die Suche nach einem sicheren Endlager ist eine große Herausforderung.", + "example_sentence_english": "The search for a safe final repository is a big challenge.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26978 + }, + { + "word": "Energiebedarf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy demand", + "romanization": "Energiebedarf", + "example_sentence_native": "Der Energiebedarf des Hauses ist sehr hoch.", + "example_sentence_english": "The energy demand of the house is very high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26979 + }, + { + "word": "entblössen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expose;to bare", + "romanization": "entblössen", + "example_sentence_native": "Er entblößte seinen Oberkörper.", + "example_sentence_english": "He bared his upper body.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26980 + }, + { + "word": "entmutigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discourage", + "romanization": "entmutigen", + "example_sentence_native": "Lass dich nicht entmutigen.", + "example_sentence_english": "Don't get discouraged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26981 + }, + { + "word": "Entstehungszeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "period of origin;time of creation", + "romanization": "Entstehungszeit", + "example_sentence_native": "Die Entstehungszeit des Gemäldes ist unbekannt.", + "example_sentence_english": "The period of origin of the painting is unknown.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26982 + }, + { + "word": "entwerten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devalue;to invalidate", + "romanization": "entwerten", + "example_sentence_native": "Man muss das Ticket vor der Fahrt entwerten.", + "example_sentence_english": "You have to validate the ticket before the ride.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26983 + }, + { + "word": "ergebnislos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without result;fruitless", + "romanization": "ergebnislos", + "example_sentence_native": "Die Suche war ergebnislos.", + "example_sentence_english": "The search was fruitless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 26984 + }, + { + "word": "Erzdiözese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archdiocese", + "romanization": "Erzdiözese", + "example_sentence_native": "Die Erzdiözese Köln ist eine der größten.", + "example_sentence_english": "The Archdiocese of Cologne is one of the largest.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26986 + }, + { + "word": "Exploration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploration", + "romanization": "Exploration", + "example_sentence_native": "Die Exploration neuer Gebiete ist wichtig.", + "example_sentence_english": "The exploration of new areas is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26988 + }, + { + "word": "Fahrschein", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ticket;fare ticket", + "romanization": "Fahrschein", + "example_sentence_native": "Bitte zeigen Sie Ihren Fahrschein.", + "example_sentence_english": "Please show your ticket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26990 + }, + { + "word": "Fechter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fencer", + "romanization": "Fechter", + "example_sentence_native": "Der Fechter gewann die Goldmedaille.", + "example_sentence_english": "The fencer won the gold medal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26993 + }, + { + "word": "Felswand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rock face;cliff", + "romanization": "Felswand", + "example_sentence_native": "Die Kletterer bestiegen die steile Felswand.", + "example_sentence_english": "The climbers ascended the steep rock face.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26995 + }, + { + "word": "fernbleiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stay away;to be absent", + "romanization": "fernbleiben", + "example_sentence_native": "Er musste der Versammlung fernbleiben.", + "example_sentence_english": "He had to stay away from the meeting.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fern", + "base_verb": "bleiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 26996 + }, + { + "word": "Festzelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marquee;festival tent", + "romanization": "Festzelt", + "example_sentence_native": "Das Festzelt war voller Menschen.", + "example_sentence_english": "The festival tent was full of people.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 26998 + }, + { + "word": "flehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implore;to beg", + "romanization": "flehen", + "example_sentence_native": "Sie musste ihn anflehen, ihr zu helfen.", + "example_sentence_english": "She had to implore him to help her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27001 + }, + { + "word": "Fluktuation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluctuation", + "romanization": "Fluktuation", + "example_sentence_native": "Die Fluktuation der Mitarbeiter war hoch.", + "example_sentence_english": "The fluctuation of employees was high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27003 + }, + { + "word": "fortgehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go away;to leave", + "romanization": "fortgehen", + "example_sentence_native": "Er wollte sofort fortgehen.", + "example_sentence_english": "He wanted to leave immediately.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fort", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27004 + }, + { + "word": "frühmorgens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "early in the morning", + "romanization": "frühmorgens", + "example_sentence_native": "Er steht frühmorgens auf.", + "example_sentence_english": "He gets up early in the morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 27009 + }, + { + "word": "Frühschoppen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morning pint (social gathering with drinks before noon)", + "romanization": "Frühschoppen", + "example_sentence_native": "Am Sonntag treffen wir uns zum Frühschoppen.", + "example_sentence_english": "On Sunday, we'll meet for a morning pint.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27010 + }, + { + "word": "Förde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fjord;inlet", + "romanization": "Förde", + "example_sentence_native": "Die Kieler Förde ist eine bekannte Förde in Deutschland.", + "example_sentence_english": "The Kiel Fjord is a well-known fjord in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27011 + }, + { + "word": "brandmarken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stigmatize;to brand", + "romanization": "brandmarken", + "example_sentence_native": "Er wurde für seine Taten gebrandmarkt.", + "example_sentence_english": "He was stigmatized for his actions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27012 + }, + { + "word": "Geburtenrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "birth rate", + "romanization": "Geburtenrate", + "example_sentence_native": "Die Geburtenrate ist in vielen Ländern gesunken.", + "example_sentence_english": "The birth rate has decreased in many countries.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27013 + }, + { + "word": "Gebäudekomplex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building complex", + "romanization": "Gebäudekomplex", + "example_sentence_native": "Der neue Gebäudekomplex wird bald fertiggestellt.", + "example_sentence_english": "The new building complex will be completed soon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27014 + }, + { + "word": "fluten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flood", + "romanization": "fluten", + "example_sentence_native": "Der Fluss begann, die Felder zu fluten.", + "example_sentence_english": "The river began to flood the fields.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27015 + }, + { + "word": "Gegenbewegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counter-movement;opposition", + "romanization": "Gegenbewegung", + "example_sentence_native": "Es gab eine starke Gegenbewegung gegen die Reform.", + "example_sentence_english": "There was a strong counter-movement against the reform.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27016 + }, + { + "word": "Gemeindemitglied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community member;parishioner", + "romanization": "Gemeindemitglied", + "example_sentence_native": "Jedes Gemeindemitglied hat das Recht zu wählen.", + "example_sentence_english": "Every community member has the right to vote.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27017 + }, + { + "word": "Gendarmerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gendarmerie (military police)", + "romanization": "Gendarmerie", + "example_sentence_native": "Die Gendarmerie war für die Aufrechterhaltung der Ordnung zuständig.", + "example_sentence_english": "The gendarmerie was responsible for maintaining order.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27018 + }, + { + "word": "Geröll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scree;rubble", + "romanization": "Geröll", + "example_sentence_native": "Der Weg war mit losem Geröll bedeckt.", + "example_sentence_english": "The path was covered with loose scree.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27019 + }, + { + "word": "Geschichtsbuch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "history book", + "romanization": "Geschichtsbuch", + "example_sentence_native": "Ich lese ein interessantes Geschichtsbuch.", + "example_sentence_english": "I am reading an interesting history book.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27020 + }, + { + "word": "schmeicheln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flatter", + "romanization": "schmeicheln", + "example_sentence_native": "Er versucht, ihr zu schmeicheln.", + "example_sentence_english": "He is trying to flatter her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27021 + }, + { + "word": "Geschwader", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squadron;fleet", + "romanization": "Geschwader", + "example_sentence_native": "Das Geschwader flog über das Meer.", + "example_sentence_english": "The squadron flew over the sea.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27022 + }, + { + "word": "säumen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hem;to border;to delay", + "romanization": "säumen", + "example_sentence_native": "Sie säumte den Rock.", + "example_sentence_english": "She hemmed the skirt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27023 + }, + { + "word": "Gotik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gothic (style)", + "romanization": "Gotik", + "example_sentence_native": "Die Kölner Kathedrale ist ein Meisterwerk der Gotik.", + "example_sentence_english": "Cologne Cathedral is a masterpiece of Gothic architecture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27030 + }, + { + "word": "Gouvernement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "government;governorship", + "romanization": "Gouvernement", + "example_sentence_native": "Das Gouvernement erließ neue Gesetze.", + "example_sentence_english": "The government issued new laws.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27031 + }, + { + "word": "Gravur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engraving", + "romanization": "Gravur", + "example_sentence_native": "Die Gravur auf dem Ring ist sehr fein.", + "example_sentence_english": "The engraving on the ring is very fine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27032 + }, + { + "word": "Grundbegriff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basic concept;fundamental term", + "romanization": "Grundbegriff", + "example_sentence_native": "Das ist ein Grundbegriff der Philosophie.", + "example_sentence_english": "That is a basic concept of philosophy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27033 + }, + { + "word": "Grundwert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamental value;base value", + "romanization": "Grundwert", + "example_sentence_native": "Respekt ist ein wichtiger Grundwert unserer Gesellschaft.", + "example_sentence_english": "Respect is an important fundamental value of our society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27034 + }, + { + "word": "Grundwissen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basic knowledge", + "romanization": "Grundwissen", + "example_sentence_native": "Für diese Aufgabe braucht man Grundwissen in Mathematik.", + "example_sentence_english": "For this task, one needs basic knowledge in mathematics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27035 + }, + { + "word": "Grusel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creepiness;horror;shivers", + "romanization": "Grusel", + "example_sentence_native": "Der Film verbreitete echten Grusel.", + "example_sentence_english": "The film spread real horror.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27036 + }, + { + "word": "gutheissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approve of;to endorse", + "romanization": "gutheissen", + "example_sentence_native": "Ich kann dieses Verhalten nicht gutheissen.", + "example_sentence_english": "I cannot approve of this behavior.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "gut", + "base_verb": "heissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27037 + }, + { + "word": "Harem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harem", + "romanization": "Harem", + "example_sentence_native": "Der Harem war ein privater Bereich in vielen Kulturen.", + "example_sentence_english": "The harem was a private area in many cultures.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27041 + }, + { + "word": "Hasch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hashish", + "romanization": "Hasch", + "example_sentence_native": "Der Besitz von Hasch ist in vielen Ländern illegal.", + "example_sentence_english": "The possession of hashish is illegal in many countries.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27042 + }, + { + "word": "Heimmannschaft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home team", + "romanization": "Heimmannschaft", + "example_sentence_native": "Die Heimmannschaft gewann das Spiel mit 3:1.", + "example_sentence_english": "The home team won the game 3-1.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27044 + }, + { + "word": "herabsetzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reduce;to degrade", + "romanization": "herabsetzen", + "example_sentence_native": "Man sollte niemanden herabsetzen.", + "example_sentence_english": "One should not degrade anyone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "herab", + "base_verb": "setzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27046 + }, + { + "word": "Herstellungskosten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "production costs", + "romanization": "Herstellungskosten", + "example_sentence_native": "Die Herstellungskosten sind in den letzten Jahren gestiegen.", + "example_sentence_english": "Production costs have increased in recent years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27048 + }, + { + "word": "Himmelsrichtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cardinal direction", + "romanization": "Himmelsrichtung", + "example_sentence_native": "Norden ist eine Himmelsrichtung.", + "example_sentence_english": "North is a cardinal direction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27050 + }, + { + "word": "Hitzewelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heatwave", + "romanization": "Hitzewelle", + "example_sentence_native": "Eine Hitzewelle hat das Land erfasst.", + "example_sentence_english": "A heatwave has gripped the country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27052 + }, + { + "word": "hochkarätig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high-caliber;top-class", + "romanization": "hochkarätig", + "example_sentence_native": "Das war eine hochkarätige Leistung.", + "example_sentence_english": "That was a top-class performance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27053 + }, + { + "word": "holprig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bumpy;rough", + "romanization": "holprig", + "example_sentence_native": "Der Weg war sehr holprig.", + "example_sentence_english": "The path was very bumpy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27055 + }, + { + "word": "Hörfunk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radio broadcasting", + "romanization": "Hörfunk", + "example_sentence_native": "Der Hörfunk spielt eine wichtige Rolle in der Nachrichtenverbreitung.", + "example_sentence_english": "Radio broadcasting plays an important role in news dissemination.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27057 + }, + { + "word": "Hörgerät", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hearing aid", + "romanization": "Hörgerät", + "example_sentence_native": "Sie trägt ein Hörgerät, um besser hören zu können.", + "example_sentence_english": "She wears a hearing aid to hear better.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27058 + }, + { + "word": "Implantat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implant", + "romanization": "Implantat", + "example_sentence_native": "Das Zahnimplantat wurde erfolgreich eingesetzt.", + "example_sentence_english": "The dental implant was successfully inserted.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27061 + }, + { + "word": "Inkasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debt collection", + "romanization": "Inkasso", + "example_sentence_native": "Das Unternehmen hat ein Inkasso-Büro beauftragt.", + "example_sentence_english": "The company hired a debt collection agency.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27062 + }, + { + "word": "innehaben", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hold (a position)", + "romanization": "innehaben", + "example_sentence_native": "Er wird die Position des Direktors innehaben.", + "example_sentence_english": "He will hold the position of director.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "inne", + "base_verb": "haben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27063 + }, + { + "word": "Innenausbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interior finishing", + "romanization": "Innenausbau", + "example_sentence_native": "Der Innenausbau des Hauses ist fast abgeschlossen.", + "example_sentence_english": "The interior finishing of the house is almost complete.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27064 + }, + { + "word": "Innung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guild", + "romanization": "Innung", + "example_sentence_native": "Die Handwerker sind in ihrer Innung organisiert.", + "example_sentence_english": "The craftsmen are organized in their guild.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27065 + }, + { + "word": "Internetanschluss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "internet connection", + "romanization": "Internetanschluss", + "example_sentence_native": "Wir brauchen einen neuen Internetanschluss.", + "example_sentence_english": "We need a new internet connection.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27066 + }, + { + "word": "intervenieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intervene", + "romanization": "intervenieren", + "example_sentence_native": "Die Regierung musste in den Konflikt intervenieren.", + "example_sentence_english": "The government had to intervene in the conflict.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27067 + }, + { + "word": "Interviewer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interviewer", + "romanization": "Interviewer", + "example_sentence_native": "Der Interviewer stellte viele Fragen.", + "example_sentence_english": "The interviewer asked many questions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27068 + }, + { + "word": "Jünger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disciple", + "romanization": "Jünger", + "example_sentence_native": "Die Jünger folgten ihrem Meister.", + "example_sentence_english": "The disciples followed their master.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27070 + }, + { + "word": "Kalzium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calcium", + "romanization": "Kalzium", + "example_sentence_native": "Milch ist eine gute Quelle für Kalzium.", + "example_sentence_english": "Milk is a good source of calcium.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27073 + }, + { + "word": "Kastration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "castration", + "romanization": "Kastration", + "example_sentence_native": "Die Kastration des Tieres wurde durchgeführt.", + "example_sentence_english": "The castration of the animal was performed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27076 + }, + { + "word": "katalanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catalan", + "romanization": "katalanisch", + "example_sentence_native": "Sie spricht fließend Katalanisch.", + "example_sentence_english": "She speaks fluent Catalan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27077 + }, + { + "word": "Kennwort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "password", + "romanization": "Kennwort", + "example_sentence_native": "Bitte geben Sie Ihr Kennwort ein.", + "example_sentence_english": "Please enter your password.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27080 + }, + { + "word": "Kettenreaktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chain reaction", + "romanization": "Kettenreaktion", + "example_sentence_native": "Eine kleine Störung kann eine Kettenreaktion auslösen.", + "example_sentence_english": "A small disturbance can trigger a chain reaction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27081 + }, + { + "word": "Kinderspielplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "children's playground", + "romanization": "Kinderspielplatz", + "example_sentence_native": "Der Kinderspielplatz ist voller Kinder.", + "example_sentence_english": "The children's playground is full of children.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27083 + }, + { + "word": "Klipp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clip (e.g.;paper clip)", + "romanization": "Klipp", + "example_sentence_native": "Ich brauche einen Klipp für diese Papiere.", + "example_sentence_english": "I need a clip for these papers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27084 + }, + { + "word": "Knacker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type of sausage (Knackwurst)", + "romanization": "Knacker", + "example_sentence_native": "Er isst gerne eine Knacker mit Senf.", + "example_sentence_english": "He likes to eat a Knacker sausage with mustard.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27085 + }, + { + "word": "kneten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to knead", + "romanization": "kneten", + "example_sentence_native": "Sie muss den Teig gut kneten.", + "example_sentence_english": "She has to knead the dough well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27086 + }, + { + "word": "Kohlekraftwerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coal-fired power plant", + "romanization": "Kohlekraftwerk", + "example_sentence_native": "Das Kohlekraftwerk wird bald stillgelegt.", + "example_sentence_english": "The coal-fired power plant will soon be shut down.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27088 + }, + { + "word": "Konservierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preservation;conservation", + "romanization": "Konservierung", + "example_sentence_native": "Die Konservierung von Lebensmitteln ist wichtig.", + "example_sentence_english": "The preservation of food is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27089 + }, + { + "word": "kurzweilig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entertaining;amusing", + "romanization": "kurzweilig", + "example_sentence_native": "Der Film war sehr kurzweilig.", + "example_sentence_english": "The movie was very entertaining.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27092 + }, + { + "word": "Landesparteitag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state party conference", + "romanization": "Landesparteitag", + "example_sentence_native": "Der Landesparteitag findet nächste Woche statt.", + "example_sentence_english": "The state party conference will take place next week.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27093 + }, + { + "word": "Landstrich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "region;stretch of land", + "romanization": "Landstrich", + "example_sentence_native": "Dieser Landstrich ist bekannt für seine Weinberge.", + "example_sentence_english": "This region is known for its vineyards.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27094 + }, + { + "word": "Lebensbereich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "area of life;sphere of life", + "romanization": "Lebensbereich", + "example_sentence_native": "Sport ist ein wichtiger Lebensbereich für viele Menschen.", + "example_sentence_english": "Sport is an important area of life for many people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27097 + }, + { + "word": "Lebenseinstellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attitude to life;philosophy of life", + "romanization": "Lebenseinstellung", + "example_sentence_native": "Ihre positive Lebenseinstellung ist bewundernswert.", + "example_sentence_english": "Her positive attitude to life is admirable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27098 + }, + { + "word": "Lebenszyklus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "life cycle", + "romanization": "Lebenszyklus", + "example_sentence_native": "Der Lebenszyklus eines Schmetterlings ist faszinierend.", + "example_sentence_english": "The life cycle of a butterfly is fascinating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27099 + }, + { + "word": "Leitplanke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guardrail", + "romanization": "Leitplanke", + "example_sentence_native": "Das Auto prallte gegen die Leitplanke.", + "example_sentence_english": "The car crashed into the guardrail.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27101 + }, + { + "word": "letztmals", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for the last time", + "romanization": "letztmals", + "example_sentence_native": "Er sah sie letztmals vor zehn Jahren.", + "example_sentence_english": "He saw her for the last time ten years ago.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 27103 + }, + { + "word": "libanesisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lebanese", + "romanization": "libanesisch", + "example_sentence_native": "Sie probierten libanesisches Essen.", + "example_sentence_english": "They tried Lebanese food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27104 + }, + { + "word": "Linienführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "line management", + "romanization": "Linienführung", + "example_sentence_native": "Die Linienführung des neuen Autos ist sehr elegant.", + "example_sentence_english": "The line management of the new car is very elegant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27108 + }, + { + "word": "Luftgewehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "air rifle", + "romanization": "Luftgewehr", + "example_sentence_native": "Er übte das Schießen mit einem Luftgewehr.", + "example_sentence_english": "He practiced shooting with an air rifle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27113 + }, + { + "word": "Lächerlichkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ridiculousness", + "romanization": "Lächerlichkeit", + "example_sentence_native": "Seine Argumente grenzten an Lächerlichkeit.", + "example_sentence_english": "His arguments bordered on ridiculousness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27115 + }, + { + "word": "Mademoiselle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Miss (French loanword)", + "romanization": "Mademoiselle", + "example_sentence_native": "Die Mademoiselle bestellte einen Kaffee.", + "example_sentence_english": "The Mademoiselle ordered a coffee.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27116 + }, + { + "word": "Maschinenbauer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanical engineer", + "romanization": "Maschinenbauer", + "example_sentence_native": "Mein Bruder ist Maschinenbauer.", + "example_sentence_english": "My brother is a mechanical engineer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27118 + }, + { + "word": "maskieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mask;to disguise", + "romanization": "maskieren", + "example_sentence_native": "Sie mussten ihr Gesicht maskieren.", + "example_sentence_english": "They had to mask their face.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27119 + }, + { + "word": "maximieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maximize", + "romanization": "maximieren", + "example_sentence_native": "Wir müssen unsere Effizienz maximieren.", + "example_sentence_english": "We must maximize our efficiency.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27120 + }, + { + "word": "Meerblick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sea view", + "romanization": "Meerblick", + "example_sentence_native": "Das Hotelzimmer hatte einen wunderschönen Meerblick.", + "example_sentence_english": "The hotel room had a beautiful sea view.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27121 + }, + { + "word": "Merchandise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchandise", + "romanization": "Merchandise", + "example_sentence_native": "Sie verkauften viel Merchandise auf dem Konzert.", + "example_sentence_english": "They sold a lot of merchandise at the concert.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27123 + }, + { + "word": "Metamorphose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metamorphosis", + "romanization": "Metamorphose", + "example_sentence_native": "Die Raupe durchläuft eine Metamorphose zum Schmetterling.", + "example_sentence_english": "The caterpillar undergoes a metamorphosis into a butterfly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27125 + }, + { + "word": "mildern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mitigate", + "romanization": "mildern", + "example_sentence_native": "Wir müssen Maßnahmen ergreifen, um die Auswirkungen zu mildern.", + "example_sentence_english": "We must take measures to mitigate the effects.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27127 + }, + { + "word": "minderwertig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inferior", + "romanization": "minderwertig", + "example_sentence_native": "Die Qualität des Produkts war minderwertig.", + "example_sentence_english": "The quality of the product was inferior.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27128 + }, + { + "word": "Mittäter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accomplice", + "romanization": "Mittäter", + "example_sentence_native": "Der Hauptverdächtige und seine Mittäter wurden verhaftet.", + "example_sentence_english": "The main suspect and his accomplices were arrested.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27129 + }, + { + "word": "Modenschau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fashion show", + "romanization": "Modenschau", + "example_sentence_native": "Sie besuchte eine Modenschau in Paris.", + "example_sentence_english": "She attended a fashion show in Paris.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27131 + }, + { + "word": "Momentum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "momentum", + "romanization": "Momentum", + "example_sentence_native": "Das Projekt gewann an Momentum.", + "example_sentence_english": "The project gained momentum.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27132 + }, + { + "word": "Mondlicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moonlight", + "romanization": "Mondlicht", + "example_sentence_native": "Der Garten war im Mondlicht wunderschön.", + "example_sentence_english": "The garden was beautiful in the moonlight.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27133 + }, + { + "word": "Mondschein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moonlight", + "romanization": "Mondschein", + "example_sentence_native": "Wir saßen lange im Mondschein.", + "example_sentence_english": "We sat for a long time in the moonlight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27134 + }, + { + "word": "Morgendämmerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dawn", + "romanization": "Morgendämmerung", + "example_sentence_native": "Wir brachen bei Morgendämmerung auf.", + "example_sentence_english": "We set off at dawn.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27135 + }, + { + "word": "Murks", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botched job", + "romanization": "Murks", + "example_sentence_native": "Das ist doch alles Murks!", + "example_sentence_english": "This is all rubbish!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27136 + }, + { + "word": "Musikindustrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "music industry", + "romanization": "Musikindustrie", + "example_sentence_native": "Sie arbeitet in der Musikindustrie.", + "example_sentence_english": "She works in the music industry.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27137 + }, + { + "word": "Möbelhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "furniture store", + "romanization": "Möbelhaus", + "example_sentence_native": "Wir haben ein neues Sofa im Möbelhaus gekauft.", + "example_sentence_english": "We bought a new sofa at the furniture store.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27138 + }, + { + "word": "Nachkomme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "descendant", + "romanization": "Nachkomme", + "example_sentence_native": "Er ist ein direkter Nachkomme des Königs.", + "example_sentence_english": "He is a direct descendant of the king.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27139 + }, + { + "word": "Nachthimmel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "night sky", + "romanization": "Nachthimmel", + "example_sentence_native": "Der Nachthimmel war klar und voller Sterne.", + "example_sentence_english": "The night sky was clear and full of stars.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27140 + }, + { + "word": "Nasenbluten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nosebleed", + "romanization": "Nasenbluten", + "example_sentence_native": "Er hatte plötzlich Nasenbluten.", + "example_sentence_english": "He suddenly had a nosebleed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27142 + }, + { + "word": "Naturheilkunde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "naturopathy", + "romanization": "Naturheilkunde", + "example_sentence_native": "Sie studiert Naturheilkunde an der Universität.", + "example_sentence_english": "She studies naturopathy at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27143 + }, + { + "word": "nebenberuflich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "part-time (as a side job)", + "romanization": "nebenberuflich", + "example_sentence_native": "Er arbeitet nebenberuflich als Musiker.", + "example_sentence_english": "He works part-time as a musician.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adv", + "word_frequency": 27144 + }, + { + "word": "Neubürger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new citizen", + "romanization": "Neubürger", + "example_sentence_native": "Die Stadt begrüßt ihre Neubürger herzlich.", + "example_sentence_english": "The city warmly welcomes its new citizens.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27145 + }, + { + "word": "niedergelassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "established (e.g.;as a doctor)", + "romanization": "niedergelassen", + "example_sentence_native": "Sie ist eine niedergelassene Ärztin in Berlin.", + "example_sentence_english": "She is an established doctor in Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27146 + }, + { + "word": "Nutzniesser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beneficiary", + "romanization": "Nutzniesser", + "example_sentence_native": "Er ist der Nutzniesser des Testaments.", + "example_sentence_english": "He is the beneficiary of the will.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27147 + }, + { + "word": "Obstbaum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fruit tree", + "romanization": "Obstbaum", + "example_sentence_native": "Im Garten steht ein alter Obstbaum.", + "example_sentence_english": "There is an old fruit tree in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27152 + }, + { + "word": "Optimist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimist", + "romanization": "Optimist", + "example_sentence_native": "Er ist immer ein Optimist, egal was passiert.", + "example_sentence_english": "He is always an optimist, no matter what happens.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27154 + }, + { + "word": "Ornament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ornament", + "romanization": "Ornament", + "example_sentence_native": "Das Gebäude hat viele schöne Ornamente.", + "example_sentence_english": "The building has many beautiful ornaments.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27155 + }, + { + "word": "Palladium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palladium (chemical element)", + "romanization": "Palladium", + "example_sentence_native": "Palladium ist ein seltenes Edelmetall.", + "example_sentence_english": "Palladium is a rare precious metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27158 + }, + { + "word": "Paparazzi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paparazzi", + "romanization": "Paparazzi", + "example_sentence_native": "Die Paparazzi verfolgten den Star.", + "example_sentence_english": "The paparazzi followed the star.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27159 + }, + { + "word": "Peinlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarrassment", + "romanization": "Peinlichkeit", + "example_sentence_native": "Die Peinlichkeit war groß, als er stolperte.", + "example_sentence_english": "The embarrassment was great when he stumbled.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27160 + }, + { + "word": "Penetration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penetration", + "romanization": "Penetration", + "example_sentence_native": "Die Penetration des Marktes war schwierig.", + "example_sentence_english": "The penetration of the market was difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27161 + }, + { + "word": "Pflegedienst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing service", + "romanization": "Pflegedienst", + "example_sentence_native": "Der Pflegedienst kommt jeden Morgen.", + "example_sentence_english": "The nursing service comes every morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27163 + }, + { + "word": "Pförtner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doorman", + "romanization": "Pförtner", + "example_sentence_native": "Der Pförtner öffnete das Tor.", + "example_sentence_english": "The doorman opened the gate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27164 + }, + { + "word": "Platzverweis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sending-off", + "romanization": "Platzverweis", + "example_sentence_native": "Der Spieler erhielt einen Platzverweis.", + "example_sentence_english": "The player received a sending-off.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27165 + }, + { + "word": "Plutonium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plutonium", + "romanization": "Plutonium", + "example_sentence_native": "Plutonium ist ein radioaktives Element.", + "example_sentence_english": "Plutonium is a radioactive element.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27167 + }, + { + "word": "Plüsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plush", + "romanization": "Plüsch", + "example_sentence_native": "Das Sofa ist aus weichem Plüsch.", + "example_sentence_english": "The sofa is made of soft plush.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27168 + }, + { + "word": "Poliklinik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polyclinic", + "romanization": "Poliklinik", + "example_sentence_native": "Er wurde in der Poliklinik behandelt.", + "example_sentence_english": "He was treated at the polyclinic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27169 + }, + { + "word": "Politologe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "political scientist", + "romanization": "Politologe", + "example_sentence_native": "Der Politologe analysierte die Wahlergebnisse.", + "example_sentence_english": "The political scientist analyzed the election results.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27170 + }, + { + "word": "Polizeigewerkschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "police union", + "romanization": "Polizeigewerkschaft", + "example_sentence_native": "Die Polizeigewerkschaft forderte bessere Arbeitsbedingungen.", + "example_sentence_english": "The police union demanded better working conditions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27171 + }, + { + "word": "postulieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to postulate", + "romanization": "postulieren", + "example_sentence_native": "Er postulierte eine neue Theorie.", + "example_sentence_english": "He postulated a new theory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27172 + }, + { + "word": "Preisklasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "price range", + "romanization": "Preisklasse", + "example_sentence_native": "Das Auto gehört zur oberen Preisklasse.", + "example_sentence_english": "The car belongs to the upper price range.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27175 + }, + { + "word": "Prellung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bruise", + "romanization": "Prellung", + "example_sentence_native": "Er hatte eine schmerzhafte Prellung am Bein.", + "example_sentence_english": "He had a painful bruise on his leg.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27176 + }, + { + "word": "Privatsache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "private matter", + "romanization": "Privatsache", + "example_sentence_native": "Das ist meine Privatsache.", + "example_sentence_english": "That is my private matter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27179 + }, + { + "word": "Privatsender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private broadcaster", + "romanization": "Privatsender", + "example_sentence_native": "Viele Leute bevorzugen den Privatsender gegenüber dem öffentlich-rechtlichen.", + "example_sentence_english": "Many people prefer the private broadcaster over the public one.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27180 + }, + { + "word": "präparieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prepare;to preserve", + "romanization": "präparieren", + "example_sentence_native": "Der Biologe muss die Probe sorgfältig präparieren.", + "example_sentence_english": "The biologist must carefully prepare the sample.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27181 + }, + { + "word": "Qualm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thick smoke;fumes", + "romanization": "Qualm", + "example_sentence_native": "Aus dem Schornstein stieg dicker Qualm auf.", + "example_sentence_english": "Thick smoke rose from the chimney.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27184 + }, + { + "word": "quietschen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to squeak;to screech", + "romanization": "quietschen", + "example_sentence_native": "Die alten Türen quietschen, wenn man sie öffnet.", + "example_sentence_english": "The old doors squeak when you open them.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27185 + }, + { + "word": "Rangfolge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hierarchy;ranking order", + "romanization": "Rangfolge", + "example_sentence_native": "Die Rangfolge der Mitarbeiter ist klar definiert.", + "example_sentence_english": "The ranking order of the employees is clearly defined.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27187 + }, + { + "word": "Rebel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebel", + "romanization": "Rebel", + "example_sentence_native": "Der junge Rebel weigerte sich, den Befehlen zu folgen.", + "example_sentence_english": "The young rebel refused to follow orders.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27189 + }, + { + "word": "rechteckig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rectangular", + "romanization": "rechteckig", + "example_sentence_native": "Der Tisch hat eine rechteckige Form.", + "example_sentence_english": "The table has a rectangular shape.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27190 + }, + { + "word": "Regentropfen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raindrop", + "romanization": "Regentropfen", + "example_sentence_native": "Ein Regentropfen fiel auf meine Nase.", + "example_sentence_english": "A raindrop fell on my nose.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27192 + }, + { + "word": "Rekordhoch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record high", + "romanization": "Rekordhoch", + "example_sentence_native": "Der Aktienkurs erreichte ein neues Rekordhoch.", + "example_sentence_english": "The stock price reached a new record high.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27193 + }, + { + "word": "Rettungshubschrauber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescue helicopter", + "romanization": "Rettungshubschrauber", + "example_sentence_native": "Der Rettungshubschrauber landete auf dem Dach des Krankenhauses.", + "example_sentence_english": "The rescue helicopter landed on the hospital roof.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27197 + }, + { + "word": "Richtfest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "topping-out ceremony", + "romanization": "Richtfest", + "example_sentence_native": "Wir feiern das Richtfest für unser neues Haus.", + "example_sentence_english": "We are celebrating the topping-out ceremony for our new house.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27198 + }, + { + "word": "Risotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risotto", + "romanization": "Risotto", + "example_sentence_native": "Ich habe gestern Abend ein leckeres Risotto gegessen.", + "example_sentence_english": "I ate a delicious risotto last night.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27201 + }, + { + "word": "Rosmarin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosemary", + "romanization": "Rosmarin", + "example_sentence_native": "Rosmarin passt gut zu Kartoffeln.", + "example_sentence_english": "Rosemary goes well with potatoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27204 + }, + { + "word": "rumheulen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whine;cry around", + "romanization": "rumheulen", + "example_sentence_native": "Hör auf, so rumzuheulen!", + "example_sentence_english": "Stop whining around like that!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "rum", + "base_verb": "heulen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27205 + }, + { + "word": "Sanierungsarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renovation work", + "romanization": "Sanierungsarbeit", + "example_sentence_native": "Die Sanierungsarbeiten am alten Gebäude dauern noch an.", + "example_sentence_english": "The renovation work on the old building is still ongoing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27209 + }, + { + "word": "Schalldämpfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silencer", + "romanization": "Schalldämpfer", + "example_sentence_native": "Der Schalldämpfer am Auto muss ersetzt werden.", + "example_sentence_english": "The muffler on the car needs to be replaced.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27211 + }, + { + "word": "Schatzi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweetheart", + "romanization": "Schatzi", + "example_sentence_native": "Komm her, Schatzi!", + "example_sentence_english": "Come here, sweetheart!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27212 + }, + { + "word": "Schikane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassment", + "romanization": "Schikane", + "example_sentence_native": "Er musste viel Schikane am Arbeitsplatz ertragen.", + "example_sentence_english": "He had to endure a lot of harassment at work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27214 + }, + { + "word": "Schleimhaut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mucous membrane", + "romanization": "Schleimhaut", + "example_sentence_native": "Die Schleimhaut in der Nase ist entzündet.", + "example_sentence_english": "The mucous membrane in the nose is inflamed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27216 + }, + { + "word": "schlummern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to slumber", + "romanization": "schlummern", + "example_sentence_native": "Der Schatz schlummert tief unter der Erde.", + "example_sentence_english": "The treasure slumbers deep beneath the earth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27217 + }, + { + "word": "Schmuggler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggler", + "romanization": "Schmuggler", + "example_sentence_native": "Der Schmuggler wurde an der Grenze gefasst.", + "example_sentence_english": "The smuggler was caught at the border.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27218 + }, + { + "word": "Schneesturm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowstorm", + "romanization": "Schneesturm", + "example_sentence_native": "Ein starker Schneesturm hat die Straßen blockiert.", + "example_sentence_english": "A strong snowstorm has blocked the roads.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27219 + }, + { + "word": "Schriftsprache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "written language", + "romanization": "Schriftsprache", + "example_sentence_native": "Die Schriftsprache unterscheidet sich oft von der Umgangssprache.", + "example_sentence_english": "Written language often differs from spoken language.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27220 + }, + { + "word": "Schwefelsäure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfuric acid", + "romanization": "Schwefelsäure", + "example_sentence_native": "Schwefelsäure ist eine stark ätzende Flüssigkeit.", + "example_sentence_english": "Sulfuric acid is a highly corrosive liquid.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27221 + }, + { + "word": "semantisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "semantic", + "romanization": "semantisch", + "example_sentence_native": "Die semantische Analyse des Textes ist komplex.", + "example_sentence_english": "The semantic analysis of the text is complex.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27224 + }, + { + "word": "Semmel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bread roll", + "romanization": "Semmel", + "example_sentence_native": "Ich hätte gerne zwei Semmeln zum Frühstück.", + "example_sentence_english": "I would like two bread rolls for breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27225 + }, + { + "word": "siebente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seventh", + "romanization": "siebente", + "example_sentence_native": "Er kam als siebenter ins Ziel.", + "example_sentence_english": "He finished seventh.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "num", + "word_frequency": 27231 + }, + { + "word": "Slowene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovene (male person from Slovenia)", + "romanization": "Slowene", + "example_sentence_native": "Der Slowene sprach fließend Deutsch.", + "example_sentence_english": "The Slovene spoke fluent German.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27232 + }, + { + "word": "spazierengehen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go for a walk", + "romanization": "spazierengehen", + "example_sentence_native": "Wir wollen heute Nachmittag spazierengehen.", + "example_sentence_english": "We want to go for a walk this afternoon.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "spazieren", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27233 + }, + { + "word": "Spielart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "type;kind (of game;play)", + "romanization": "Spielart", + "example_sentence_native": "Schach ist eine Spielart des Brettspiels.", + "example_sentence_english": "Chess is a type of board game.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27235 + }, + { + "word": "Sportclub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sports club", + "romanization": "Sportclub", + "example_sentence_native": "Er ist Mitglied in einem Sportclub.", + "example_sentence_english": "He is a member of a sports club.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27236 + }, + { + "word": "spriessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sprout;to shoot (of plants)", + "romanization": "spriessen", + "example_sentence_native": "Die ersten Blumen sprießen im Frühling.", + "example_sentence_english": "The first flowers sprout in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27237 + }, + { + "word": "Startbahn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "runway", + "romanization": "Startbahn", + "example_sentence_native": "Das Flugzeug rollte zur Startbahn.", + "example_sentence_english": "The airplane taxied to the runway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27239 + }, + { + "word": "Staude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perennial;shrub", + "romanization": "Staude", + "example_sentence_native": "Die Staude blüht jedes Jahr wunderschön.", + "example_sentence_english": "The perennial blooms beautifully every year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27240 + }, + { + "word": "Stilrichtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "style;artistic movement", + "romanization": "Stilrichtung", + "example_sentence_native": "Diese Stilrichtung ist typisch für das 19. Jahrhundert.", + "example_sentence_english": "This style is typical for the 19th century.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27242 + }, + { + "word": "Stratege", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategist", + "romanization": "Stratege", + "example_sentence_native": "Er ist ein brillanter Stratege.", + "example_sentence_english": "He is a brilliant strategist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27243 + }, + { + "word": "Streitmacht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armed forces;military power", + "romanization": "Streitmacht", + "example_sentence_native": "Die Streitmacht wurde mobilisiert.", + "example_sentence_english": "The armed forces were mobilized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27244 + }, + { + "word": "Ständerat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Council of States (Swiss parliament)", + "romanization": "Ständerat", + "example_sentence_native": "Der Ständerat hat dem Gesetz zugestimmt.", + "example_sentence_english": "The Council of States approved the law.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27245 + }, + { + "word": "Supervision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supervision", + "romanization": "Supervision", + "example_sentence_native": "Die Supervision der Projekte ist wichtig.", + "example_sentence_english": "The supervision of the projects is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27247 + }, + { + "word": "surreal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surreal", + "romanization": "surreal", + "example_sentence_native": "Das war eine sehr surreale Erfahrung.", + "example_sentence_english": "That was a very surreal experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27248 + }, + { + "word": "Synergie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synergy", + "romanization": "Synergie", + "example_sentence_native": "Es gibt eine gute Synergie zwischen den Teams.", + "example_sentence_english": "There is good synergy between the teams.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27251 + }, + { + "word": "Südpol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South Pole", + "romanization": "Südpol", + "example_sentence_native": "Der Südpol ist sehr kalt.", + "example_sentence_english": "The South Pole is very cold.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27252 + }, + { + "word": "Talfahrt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "downward trend;decline", + "romanization": "Talfahrt", + "example_sentence_native": "Die Wirtschaft ist auf Talfahrt.", + "example_sentence_english": "The economy is on a downward trend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27254 + }, + { + "word": "Tanga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thong;G-string", + "romanization": "Tanga", + "example_sentence_native": "Sie trug einen Tanga unter dem Kleid.", + "example_sentence_english": "She wore a thong under the dress.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27255 + }, + { + "word": "Teamwork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teamwork", + "romanization": "Teamwork", + "example_sentence_native": "Gutes Teamwork ist entscheidend für den Erfolg.", + "example_sentence_english": "Good teamwork is crucial for success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "none", + "word_frequency": 27257 + }, + { + "word": "Topspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top match", + "romanization": "Topspiel", + "example_sentence_native": "Das Topspiel der Liga findet am Samstag statt.", + "example_sentence_english": "The top match of the league takes place on Saturday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27261 + }, + { + "word": "Torrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torrent", + "romanization": "Torrent", + "example_sentence_native": "Er lud die Datei über einen Torrent herunter.", + "example_sentence_english": "He downloaded the file via a torrent.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27262 + }, + { + "word": "traumatisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traumatic", + "romanization": "traumatisch", + "example_sentence_native": "Das Erlebnis war sehr traumatisch für sie.", + "example_sentence_english": "The experience was very traumatic for her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27263 + }, + { + "word": "Traumwelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dream world", + "romanization": "Traumwelt", + "example_sentence_native": "Sie lebt oft in ihrer eigenen Traumwelt.", + "example_sentence_english": "She often lives in her own dream world.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27264 + }, + { + "word": "Trendwende", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trend reversal", + "romanization": "Trendwende", + "example_sentence_native": "Die Regierung hofft auf eine Trendwende in der Wirtschaft.", + "example_sentence_english": "The government hopes for a trend reversal in the economy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27265 + }, + { + "word": "Trocknung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drying", + "romanization": "Trocknung", + "example_sentence_native": "Die Trocknung des Holzes dauert mehrere Wochen.", + "example_sentence_english": "The drying of the wood takes several weeks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27266 + }, + { + "word": "unbeirrt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undeterred", + "romanization": "unbeirrt", + "example_sentence_native": "Er verfolgte sein Ziel unbeirrt.", + "example_sentence_english": "He pursued his goal undeterred.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27271 + }, + { + "word": "unbeschränkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlimited", + "romanization": "unbeschränkt", + "example_sentence_native": "Der Zugang ist unbeschränkt.", + "example_sentence_english": "The access is unrestricted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27272 + }, + { + "word": "unbewohnbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uninhabitable", + "romanization": "unbewohnbar", + "example_sentence_native": "Das Haus ist nach dem Brand unbewohnbar.", + "example_sentence_english": "The house is uninhabitable after the fire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27273 + }, + { + "word": "undemokratisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undemocratic", + "romanization": "undemokratisch", + "example_sentence_native": "Diese Entscheidung ist undemokratisch.", + "example_sentence_english": "This decision is undemocratic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27274 + }, + { + "word": "unsäglich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unspeakable", + "romanization": "unsäglich", + "example_sentence_native": "Er empfand unsägliche Schmerzen.", + "example_sentence_english": "He felt unspeakable pain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27276 + }, + { + "word": "unvergleichlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incomparable", + "romanization": "unvergleichlich", + "example_sentence_native": "Ihre Schönheit ist unvergleichlich.", + "example_sentence_english": "Her beauty is incomparable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27277 + }, + { + "word": "unwiderruflich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrevocable", + "romanization": "unwiderruflich", + "example_sentence_native": "Die Entscheidung ist unwiderruflich.", + "example_sentence_english": "The decision is irrevocable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27278 + }, + { + "word": "Urlaubszeit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "holiday season", + "romanization": "Urlaubszeit", + "example_sentence_native": "Die Urlaubszeit beginnt nächste Woche.", + "example_sentence_english": "The holiday season starts next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27279 + }, + { + "word": "Uterus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "uterus", + "romanization": "Uterus", + "example_sentence_native": "Der Uterus ist ein wichtiges Organ im weiblichen Körper.", + "example_sentence_english": "The uterus is an important organ in the female body.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27280 + }, + { + "word": "Varieté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variety show", + "romanization": "Varieté", + "example_sentence_native": "Wir besuchten ein Varieté mit Akrobaten und Komikern.", + "example_sentence_english": "We visited a variety show with acrobats and comedians.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27282 + }, + { + "word": "verhüten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prevent", + "romanization": "verhüten", + "example_sentence_native": "Man sollte Unfälle verhüten, wo immer es geht.", + "example_sentence_english": "One should prevent accidents wherever possible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27283 + }, + { + "word": "verknallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall in love (informal)", + "romanization": "verknallen", + "example_sentence_native": "Er hat sich total in sie verknallt.", + "example_sentence_english": "He totally fell in love with her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27284 + }, + { + "word": "vermachen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bequeath", + "romanization": "vermachen", + "example_sentence_native": "Er vermachte sein gesamtes Vermögen einer Wohltätigkeitsorganisation.", + "example_sentence_english": "He bequeathed his entire fortune to a charity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27285 + }, + { + "word": "vermummen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to muffle up;to disguise", + "romanization": "vermummen", + "example_sentence_native": "Die Demonstranten vermummten sich, um nicht erkannt zu werden.", + "example_sentence_english": "The demonstrators muffled themselves up so as not to be recognized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27286 + }, + { + "word": "verputzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plaster;to gobble up", + "romanization": "verputzen", + "example_sentence_native": "Die Kinder haben den ganzen Kuchen verputzt.", + "example_sentence_english": "The children gobbled up the whole cake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27287 + }, + { + "word": "Verschwiegenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discretion;confidentiality", + "romanization": "Verschwiegenheit", + "example_sentence_native": "Ärzte sind zur Verschwiegenheit verpflichtet.", + "example_sentence_english": "Doctors are obliged to confidentiality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27288 + }, + { + "word": "Verschwörer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspirator", + "romanization": "Verschwörer", + "example_sentence_native": "Die Verschwörer planten einen Staatsstreich.", + "example_sentence_english": "The conspirators planned a coup.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27289 + }, + { + "word": "vertrauensvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trusting;confident", + "romanization": "vertrauensvoll", + "example_sentence_native": "Sie blickte ihn vertrauensvoll an.", + "example_sentence_english": "She looked at him trustingly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27290 + }, + { + "word": "Verwicklung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complication;entanglement", + "romanization": "Verwicklung", + "example_sentence_native": "Die Geschichte hatte viele unerwartete Verwicklungen.", + "example_sentence_english": "The story had many unexpected complications.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27291 + }, + { + "word": "Viereck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quadrilateral", + "romanization": "Viereck", + "example_sentence_native": "Ein Quadrat ist ein spezielles Viereck.", + "example_sentence_english": "A square is a special quadrilateral.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27292 + }, + { + "word": "Vierzylinder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "four-cylinder", + "romanization": "Vierzylinder", + "example_sentence_native": "Das Auto hat einen Vierzylinder-Motor.", + "example_sentence_english": "The car has a four-cylinder engine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27293 + }, + { + "word": "Vollbart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full beard", + "romanization": "Vollbart", + "example_sentence_native": "Er trägt seit Jahren einen Vollbart.", + "example_sentence_english": "He has been wearing a full beard for years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27296 + }, + { + "word": "Vorarbeiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreman;supervisor", + "romanization": "Vorarbeiter", + "example_sentence_native": "Der Vorarbeiter gab Anweisungen für den Tag.", + "example_sentence_english": "The foreman gave instructions for the day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27298 + }, + { + "word": "vorderst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foremost;frontmost", + "romanization": "vorderst", + "example_sentence_native": "Die vorderste Reihe war bereits besetzt.", + "example_sentence_english": "The foremost row was already occupied.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27299 + }, + { + "word": "Vorschule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preschool", + "romanization": "Vorschule", + "example_sentence_native": "Meine Tochter geht in die Vorschule.", + "example_sentence_english": "My daughter goes to preschool.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27300 + }, + { + "word": "Vorsehung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providence", + "romanization": "Vorsehung", + "example_sentence_native": "Sie glaubte an die göttliche Vorsehung.", + "example_sentence_english": "She believed in divine providence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27301 + }, + { + "word": "Völkerwanderung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Migration Period", + "romanization": "Völkerwanderung", + "example_sentence_native": "Die Völkerwanderung prägte die Geschichte Europas.", + "example_sentence_english": "The Migration Period shaped the history of Europe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27302 + }, + { + "word": "waagerecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horizontal", + "romanization": "waagerecht", + "example_sentence_native": "Die Linie ist waagerecht gezeichnet.", + "example_sentence_english": "The line is drawn horizontally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27303 + }, + { + "word": "Wachsamkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigilance", + "romanization": "Wachsamkeit", + "example_sentence_native": "Ständige Wachsamkeit ist im Dienst erforderlich.", + "example_sentence_english": "Constant vigilance is required on duty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27304 + }, + { + "word": "Wahlbetrug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electoral fraud", + "romanization": "Wahlbetrug", + "example_sentence_native": "Die Partei wurde des Wahlbetrugs beschuldigt.", + "example_sentence_english": "The party was accused of electoral fraud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27305 + }, + { + "word": "Wanderschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wandering;journey", + "romanization": "Wanderschaft", + "example_sentence_native": "Er begab sich auf eine lange Wanderschaft.", + "example_sentence_english": "He embarked on a long journey.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27306 + }, + { + "word": "Wechselspiel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interplay;interaction", + "romanization": "Wechselspiel", + "example_sentence_native": "Es gibt ein komplexes Wechselspiel zwischen Angebot und Nachfrage.", + "example_sentence_english": "There is a complex interplay between supply and demand.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27307 + }, + { + "word": "wegsperren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lock away;to block off", + "romanization": "wegsperren", + "example_sentence_native": "Sie mussten den Weg wegsperren.", + "example_sentence_english": "They had to block off the path.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weg", + "base_verb": "sperren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27308 + }, + { + "word": "Weintraube", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grape", + "romanization": "Weintraube", + "example_sentence_native": "Ich esse gerne Weintrauben.", + "example_sentence_english": "I like to eat grapes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27309 + }, + { + "word": "Wirtschaftsraum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic area;zone", + "romanization": "Wirtschaftsraum", + "example_sentence_native": "Die EU ist ein großer Wirtschaftsraum.", + "example_sentence_english": "The EU is a large economic area.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27313 + }, + { + "word": "Wirtschaftsstandort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "business location;economic hub", + "romanization": "Wirtschaftsstandort", + "example_sentence_native": "Deutschland ist ein attraktiver Wirtschaftsstandort.", + "example_sentence_english": "Germany is an attractive business location.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27314 + }, + { + "word": "ziellos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aimless;without a goal", + "romanization": "ziellos", + "example_sentence_native": "Er wanderte ziellos durch die Stadt.", + "example_sentence_english": "He wandered aimlessly through the city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27318 + }, + { + "word": "Zitronensaft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lemon juice", + "romanization": "Zitronensaft", + "example_sentence_native": "Ich mag Zitronensaft in meinem Tee.", + "example_sentence_english": "I like lemon juice in my tea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27321 + }, + { + "word": "zurückerobern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconquer;to recapture", + "romanization": "zurückerobern", + "example_sentence_native": "Sie versuchen, das verlorene Gebiet zurückzuerobern.", + "example_sentence_english": "They are trying to reconquer the lost territory.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "erobern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27322 + }, + { + "word": "Übersichtlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarity;conciseness;lucidity", + "romanization": "Übersichtlichkeit", + "example_sentence_native": "Die Übersichtlichkeit des Dokuments ist beeindruckend.", + "example_sentence_english": "The clarity of the document is impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27323 + }, + { + "word": "abnutzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wear out;to wear down", + "romanization": "abnutzen", + "example_sentence_native": "Die Reifen nutzen sich schnell ab.", + "example_sentence_english": "The tires wear out quickly.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "nutzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27324 + }, + { + "word": "Abgeschiedenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seclusion;solitude;remoteness", + "romanization": "Abgeschiedenheit", + "example_sentence_native": "Er genoss die Abgeschiedenheit der Berge.", + "example_sentence_english": "He enjoyed the seclusion of the mountains.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27325 + }, + { + "word": "Ablösesumme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer fee;buyout clause", + "romanization": "Ablösesumme", + "example_sentence_native": "Die Ablösesumme für den Spieler war sehr hoch.", + "example_sentence_english": "The transfer fee for the player was very high.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27327 + }, + { + "word": "Abschätzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estimate;assessment;appraisal", + "romanization": "Abschätzung", + "example_sentence_native": "Eine genaue Abschätzung der Kosten ist schwierig.", + "example_sentence_english": "An accurate estimate of the costs is difficult.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27328 + }, + { + "word": "Abwahl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recall (of an official);deselection", + "romanization": "Abwahl", + "example_sentence_native": "Die Abwahl des Bürgermeisters wurde beantragt.", + "example_sentence_english": "The recall of the mayor was requested.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27329 + }, + { + "word": "Advokat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advocate;lawyer", + "romanization": "Advokat", + "example_sentence_native": "Er arbeitet als Advokat in einer großen Kanzlei.", + "example_sentence_english": "He works as an advocate in a large law firm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27330 + }, + { + "word": "angegriffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attacked;affected;run-down", + "romanization": "angegriffen", + "example_sentence_native": "Er sah sehr angegriffen aus nach der Krankheit.", + "example_sentence_english": "He looked very run-down after the illness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27336 + }, + { + "word": "angeschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battered;damaged;unwell;ailing", + "romanization": "angeschlagen", + "example_sentence_native": "Die Wirtschaft ist angeschlagen.", + "example_sentence_english": "The economy is ailing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27338 + }, + { + "word": "ankämpfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fight against;to struggle against", + "romanization": "ankämpfen", + "example_sentence_native": "Er musste gegen die Müdigkeit ankämpfen.", + "example_sentence_english": "He had to fight against the tiredness.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "kämpfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27339 + }, + { + "word": "Annehmlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convenience;amenity", + "romanization": "Annehmlichkeit", + "example_sentence_native": "Die Annehmlichkeiten des Hotels waren ausgezeichnet.", + "example_sentence_english": "The amenities of the hotel were excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27340 + }, + { + "word": "ansehnlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerable;respectable", + "romanization": "ansehnlich", + "example_sentence_native": "Er hat ein ansehnliches Vermögen geerbt.", + "example_sentence_english": "He inherited a considerable fortune.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adj", + "word_frequency": 27342 + }, + { + "word": "ansteuern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to head for;to approach", + "romanization": "ansteuern", + "example_sentence_native": "Das Schiff steuert den Hafen an.", + "example_sentence_english": "The ship is heading for the port.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "steuern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27343 + }, + { + "word": "Archipel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archipelago", + "romanization": "Archipel", + "example_sentence_native": "Der Archipel besteht aus vielen kleinen Inseln.", + "example_sentence_english": "The archipelago consists of many small islands.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27346 + }, + { + "word": "Aufklärungsarbeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "educational work;enlightenment work", + "romanization": "Aufklärungsarbeit", + "example_sentence_native": "Die Organisation leistet wichtige Aufklärungsarbeit.", + "example_sentence_english": "The organization does important educational work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27352 + }, + { + "word": "Aufnahmeprüfung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrance examination;admission test", + "romanization": "Aufnahmeprüfung", + "example_sentence_native": "Sie musste eine schwierige Aufnahmeprüfung ablegen.", + "example_sentence_english": "She had to take a difficult entrance examination.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27353 + }, + { + "word": "ausgeklammert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excluded;disregarded", + "romanization": "ausgeklammert", + "example_sentence_native": "Diese Aspekte wurden in der Diskussion ausgeklammert.", + "example_sentence_english": "These aspects were excluded from the discussion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27356 + }, + { + "word": "ausgelaugt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhausted;drained", + "romanization": "ausgelaugt", + "example_sentence_native": "Nach der langen Reise fühlte er sich völlig ausgelaugt.", + "example_sentence_english": "After the long journey, he felt completely exhausted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27357 + }, + { + "word": "ausrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move out;to deploy", + "romanization": "ausrücken", + "example_sentence_native": "Die Feuerwehr musste sofort ausrücken.", + "example_sentence_english": "The fire department had to deploy immediately.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "rücken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27358 + }, + { + "word": "Aussteiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dropout;deserter", + "romanization": "Aussteiger", + "example_sentence_native": "Er wurde zu einem Aussteiger aus der Gesellschaft.", + "example_sentence_english": "He became a dropout from society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27359 + }, + { + "word": "Aussöhnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconciliation", + "romanization": "Aussöhnung", + "example_sentence_native": "Nach dem Streit gab es eine langsame Aussöhnung zwischen den Freunden.", + "example_sentence_english": "After the argument, there was a slow reconciliation between the friends.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27360 + }, + { + "word": "Bahnstation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "train station", + "romanization": "Bahnstation", + "example_sentence_native": "Die nächste Bahnstation ist nur fünf Minuten entfernt.", + "example_sentence_english": "The next train station is only five minutes away.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27361 + }, + { + "word": "Batzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wad;chunk (of money)", + "romanization": "Batzen", + "example_sentence_native": "Er fand einen Batzen Geld unter dem Sofa.", + "example_sentence_english": "He found a wad of money under the sofa.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27363 + }, + { + "word": "Bauchnabel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly button;navel", + "romanization": "Bauchnabel", + "example_sentence_native": "Der Bauchnabel ist ein interessanter Teil des Körpers.", + "example_sentence_english": "The belly button is an interesting part of the body.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27364 + }, + { + "word": "Bauplatz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building site;construction plot", + "romanization": "Bauplatz", + "example_sentence_native": "Auf dem Bauplatz wird ein neues Haus errichtet.", + "example_sentence_english": "A new house is being built on the construction plot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27365 + }, + { + "word": "bedenkenlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unscrupulous;thoughtless;unhesitating", + "romanization": "bedenkenlos", + "example_sentence_native": "Er handelte bedenkenlos, ohne an die Folgen zu denken.", + "example_sentence_english": "He acted unscrupulously, without thinking of the consequences.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27366 + }, + { + "word": "bedruckt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "printed", + "romanization": "bedruckt", + "example_sentence_native": "Ich habe ein T-Shirt mit einem bedruckten Logo gekauft.", + "example_sentence_english": "I bought a T-shirt with a printed logo.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27367 + }, + { + "word": "Beinbruch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leg fracture;break a leg!", + "romanization": "Beinbruch", + "example_sentence_native": "Er hatte einen Beinbruch nach dem Unfall.", + "example_sentence_english": "He had a leg fracture after the accident.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27368 + }, + { + "word": "berichtigen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to correct;to rectify", + "romanization": "berichtigen", + "example_sentence_native": "Bitte berichtigen Sie die Fehler in diesem Text.", + "example_sentence_english": "Please correct the errors in this text.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27370 + }, + { + "word": "Besitztum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possession;property", + "romanization": "Besitztum", + "example_sentence_native": "Das alte Besitztum wurde an die nächste Generation weitergegeben.", + "example_sentence_english": "The old property was passed on to the next generation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27371 + }, + { + "word": "Bettchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little bed;cot", + "romanization": "Bettchen", + "example_sentence_native": "Das Baby schläft friedlich in seinem Bettchen.", + "example_sentence_english": "The baby sleeps peacefully in its little bed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27373 + }, + { + "word": "bewahrheiten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prove true;to be confirmed", + "romanization": "bewahrheiten", + "example_sentence_native": "Ich hoffe, die Gerüchte werden sich nicht bewahrheiten.", + "example_sentence_english": "I hope the rumors will not prove true.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27374 + }, + { + "word": "Bezirksgericht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "district court", + "romanization": "Bezirksgericht", + "example_sentence_native": "Der Fall wird vor dem Bezirksgericht verhandelt.", + "example_sentence_english": "The case will be heard before the district court.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27375 + }, + { + "word": "Bezugnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reference;referring to", + "romanization": "Bezugnahme", + "example_sentence_native": "In Bezugnahme auf Ihr Schreiben vom letzten Monat...", + "example_sentence_english": "With reference to your letter from last month...", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27376 + }, + { + "word": "Billigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "approval;consent", + "romanization": "Billigung", + "example_sentence_native": "Das Projekt erhielt die Billigung der Behörden.", + "example_sentence_english": "The project received the approval of the authorities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27377 + }, + { + "word": "Bizeps", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biceps", + "romanization": "Bizeps", + "example_sentence_native": "Er trainiert seinen Bizeps im Fitnessstudio.", + "example_sentence_english": "He trains his biceps at the gym.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27378 + }, + { + "word": "Bürgerrechtler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil rights activist", + "romanization": "Bürgerrechtler", + "example_sentence_native": "Martin Luther King Jr. war ein berühmter Bürgerrechtler.", + "example_sentence_english": "Martin Luther King Jr. was a famous civil rights activist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27386 + }, + { + "word": "Datenübertragung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data transfer", + "romanization": "Datenübertragung", + "example_sentence_native": "Die Datenübertragung war sehr schnell.", + "example_sentence_english": "The data transfer was very fast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27391 + }, + { + "word": "davonkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get away with it", + "romanization": "davonkommen", + "example_sentence_native": "Er konnte mit einem blauen Auge davonkommen.", + "example_sentence_english": "He was able to get away with a black eye.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "davon", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27392 + }, + { + "word": "Destination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destination", + "romanization": "Destination", + "example_sentence_native": "Unsere nächste Destination ist Paris.", + "example_sentence_english": "Our next destination is Paris.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27394 + }, + { + "word": "Deutschkenntnis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knowledge of German", + "romanization": "Deutschkenntnis", + "example_sentence_native": "Seine Deutschkenntnisse sind ausgezeichnet.", + "example_sentence_english": "His knowledge of German is excellent.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27395 + }, + { + "word": "dranbleiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stick with it", + "romanization": "dranbleiben", + "example_sentence_native": "Du musst dranbleiben, um Erfolg zu haben.", + "example_sentence_english": "You have to stick with it to be successful.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dran", + "base_verb": "bleiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27397 + }, + { + "word": "Dreistigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audacity", + "romanization": "Dreistigkeit", + "example_sentence_native": "Seine Dreistigkeit war unglaublich.", + "example_sentence_english": "His audacity was incredible.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27398 + }, + { + "word": "dumpf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dull;muffled", + "romanization": "dumpf", + "example_sentence_native": "Der dumpfe Klang kam aus dem Keller.", + "example_sentence_english": "The dull sound came from the basement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27400 + }, + { + "word": "ebnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to level;to pave", + "romanization": "ebnen", + "example_sentence_native": "Sie müssen den Boden ebnen, bevor sie bauen.", + "example_sentence_english": "They have to level the ground before they build.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27402 + }, + { + "word": "editieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to edit", + "romanization": "editieren", + "example_sentence_native": "Er muss den Text noch editieren.", + "example_sentence_english": "He still has to edit the text.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27403 + }, + { + "word": "Ehevertrag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marriage contract;prenuptial agreement", + "romanization": "Ehevertrag", + "example_sentence_native": "Sie haben einen Ehevertrag unterschrieben.", + "example_sentence_english": "They signed a marriage contract.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27404 + }, + { + "word": "Ehrenpreis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "honorary prize;speedwell (plant)", + "romanization": "Ehrenpreis", + "example_sentence_native": "Er erhielt den Ehrenpreis für sein Lebenswerk.", + "example_sentence_english": "He received the honorary prize for his life's work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27405 + }, + { + "word": "Eigenleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "own contribution;self-performance", + "romanization": "Eigenleistung", + "example_sentence_native": "Durch Eigenleistung konnten sie die Kosten senken.", + "example_sentence_english": "Through their own contribution, they were able to reduce costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27406 + }, + { + "word": "eingewickelt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrapped;enveloped", + "romanization": "eingewickelt", + "example_sentence_native": "Das Geschenk war schön eingewickelt.", + "example_sentence_english": "The gift was beautifully wrapped.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27407 + }, + { + "word": "Energieerzeugung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy generation", + "romanization": "Energieerzeugung", + "example_sentence_native": "Die Energieerzeugung aus erneuerbaren Quellen nimmt zu.", + "example_sentence_english": "Energy generation from renewable sources is increasing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27410 + }, + { + "word": "erblich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hereditary;genetic", + "romanization": "erblich", + "example_sentence_native": "Diese Krankheit ist erblich.", + "example_sentence_english": "This disease is hereditary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27412 + }, + { + "word": "ermässigt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reduced;discounted", + "romanization": "ermässigt", + "example_sentence_native": "Studenten erhalten ermässigte Preise.", + "example_sentence_english": "Students receive discounted prices.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27413 + }, + { + "word": "Esport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esports", + "romanization": "Esport", + "example_sentence_native": "Esport wird immer populärer.", + "example_sentence_english": "Esports is becoming increasingly popular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27414 + }, + { + "word": "Existenzminimum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsistence level;minimum living standard", + "romanization": "Existenzminimum", + "example_sentence_native": "Viele Menschen leben am Existenzminimum.", + "example_sentence_english": "Many people live at the subsistence level.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27416 + }, + { + "word": "Extraklasse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "top class;supreme quality", + "romanization": "Extraklasse", + "example_sentence_native": "Das Restaurant ist Extraklasse.", + "example_sentence_english": "The restaurant is top class.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27417 + }, + { + "word": "Fachinformatiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "IT specialist;IT professional", + "romanization": "Fachinformatiker", + "example_sentence_native": "Er macht eine Ausbildung zum Fachinformatiker.", + "example_sentence_english": "He is training to be an IT specialist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27418 + }, + { + "word": "Fachsprache", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "technical language;jargon", + "romanization": "Fachsprache", + "example_sentence_native": "Die Fachsprache der Medizin ist komplex.", + "example_sentence_english": "The technical language of medicine is complex.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27419 + }, + { + "word": "Familienbesitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "family property", + "romanization": "Familienbesitz", + "example_sentence_native": "Der Familienbesitz wurde über Generationen weitergegeben.", + "example_sentence_english": "The family property was passed down through generations.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27420 + }, + { + "word": "favorisiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favored", + "romanization": "favorisiert", + "example_sentence_native": "Das favorisierte Team hat das Spiel gewonnen.", + "example_sentence_english": "The favored team won the game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27422 + }, + { + "word": "feindselig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostile", + "romanization": "feindselig", + "example_sentence_native": "Er hatte eine feindselige Haltung.", + "example_sentence_english": "He had a hostile attitude.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27424 + }, + { + "word": "Fensterscheibe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "window pane", + "romanization": "Fensterscheibe", + "example_sentence_native": "Die Fensterscheibe war zerbrochen.", + "example_sentence_english": "The window pane was broken.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27425 + }, + { + "word": "Fernstudium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distance learning", + "romanization": "Fernstudium", + "example_sentence_native": "Sie macht ein Fernstudium in Informatik.", + "example_sentence_english": "She is doing distance learning in computer science.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27426 + }, + { + "word": "Filmpreis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film award", + "romanization": "Filmpreis", + "example_sentence_native": "Sie hat einen wichtigen Filmpreis gewonnen.", + "example_sentence_english": "She won an important film award.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27428 + }, + { + "word": "Fischmarkt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fish market", + "romanization": "Fischmarkt", + "example_sentence_native": "Wir besuchten den Fischmarkt in Hamburg.", + "example_sentence_english": "We visited the fish market in Hamburg.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27429 + }, + { + "word": "Fluglinie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airline", + "romanization": "Fluglinie", + "example_sentence_native": "Welche Fluglinie fliegst du?", + "example_sentence_english": "Which airline are you flying?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27430 + }, + { + "word": "Flutlicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "floodlight", + "romanization": "Flutlicht", + "example_sentence_native": "Das Fußballspiel fand unter Flutlicht statt.", + "example_sentence_english": "The football game took place under floodlights.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27431 + }, + { + "word": "forsch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brisk", + "romanization": "forsch", + "example_sentence_native": "Sie gab eine forsche Antwort.", + "example_sentence_english": "She gave a brisk answer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27432 + }, + { + "word": "fortbestehen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to continue to exist", + "romanization": "fortbestehen", + "example_sentence_native": "Die Tradition wird fortbestehen.", + "example_sentence_english": "The tradition will continue to exist.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fort", + "base_verb": "bestehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27433 + }, + { + "word": "fusionieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to merge", + "romanization": "fusionieren", + "example_sentence_native": "Die beiden Unternehmen werden fusionieren.", + "example_sentence_english": "The two companies will merge.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27436 + }, + { + "word": "Ganove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crook", + "romanization": "Ganove", + "example_sentence_native": "Der Ganove wurde von der Polizei gefasst.", + "example_sentence_english": "The crook was caught by the police.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27439 + }, + { + "word": "Geburtshaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birthplace", + "romanization": "Geburtshaus", + "example_sentence_native": "Das Geburtshaus von Mozart ist in Salzburg.", + "example_sentence_english": "Mozart's birthplace is in Salzburg.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27440 + }, + { + "word": "Gegenangriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterattack", + "romanization": "Gegenangriff", + "example_sentence_native": "Die Armee startete einen Gegenangriff.", + "example_sentence_english": "The army launched a counterattack.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27441 + }, + { + "word": "gegensätzlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contradictory;opposing", + "romanization": "gegensätzlich", + "example_sentence_native": "Sie hatten gegensätzliche Meinungen.", + "example_sentence_english": "They had opposing opinions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27442 + }, + { + "word": "gekocht", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cooked", + "romanization": "gekocht", + "example_sentence_native": "Ich mag gekochtes Gemüse.", + "example_sentence_english": "I like cooked vegetables.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27443 + }, + { + "word": "gemeisselt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chiseled;carved", + "romanization": "gemeisselt", + "example_sentence_native": "Die Statue hatte ein gemeisseltes Gesicht.", + "example_sentence_english": "The statue had a chiseled face.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27444 + }, + { + "word": "Geocaching", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geocaching", + "romanization": "Geocaching", + "example_sentence_native": "Geocaching ist ein beliebtes Outdoor-Hobby.", + "example_sentence_english": "Geocaching is a popular outdoor hobby.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27445 + }, + { + "word": "geschlagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaten;defeated", + "romanization": "geschlagen", + "example_sentence_native": "Die geschlagene Mannschaft verließ das Feld.", + "example_sentence_english": "The defeated team left the field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27446 + }, + { + "word": "gesegnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blessed", + "romanization": "gesegnet", + "example_sentence_native": "Er fühlte sich gesegnet, so gute Freunde zu haben.", + "example_sentence_english": "He felt blessed to have such good friends.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27447 + }, + { + "word": "Gesichtszug", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "facial feature", + "romanization": "Gesichtszug", + "example_sentence_native": "Ihre Gesichtszüge waren sehr ausdrucksstark.", + "example_sentence_english": "Her facial features were very expressive.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27448 + }, + { + "word": "Glaubensbekenntnis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "creed;confession of faith", + "romanization": "Glaubensbekenntnis", + "example_sentence_native": "Das Apostolische Glaubensbekenntnis ist ein wichtiges Dokument.", + "example_sentence_english": "The Apostles' Creed is an important document.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27451 + }, + { + "word": "Glockenspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glockenspiel;carillon", + "romanization": "Glockenspiel", + "example_sentence_native": "Das Glockenspiel spielte eine schöne Melodie.", + "example_sentence_english": "The glockenspiel played a beautiful melody.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27452 + }, + { + "word": "Glöckchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small bell;jingle bell", + "romanization": "Glöckchen", + "example_sentence_native": "Das Kätzchen spielte mit einem Glöckchen.", + "example_sentence_english": "The kitten played with a small bell.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27454 + }, + { + "word": "Goldstück", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gold piece;treasure", + "romanization": "Goldstück", + "example_sentence_native": "Du bist ein echtes Goldstück!", + "example_sentence_english": "You are a real treasure!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27457 + }, + { + "word": "Grabstätte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burial site;grave site", + "romanization": "Grabstätte", + "example_sentence_native": "Die alte Grabstätte war von Bäumen umgeben.", + "example_sentence_english": "The old burial site was surrounded by trees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27459 + }, + { + "word": "Grossmacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great power", + "romanization": "Grossmacht", + "example_sentence_native": "Die Grossmacht übte ihren Einfluss aus.", + "example_sentence_english": "The great power exerted its influence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27461 + }, + { + "word": "gruppieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to group", + "romanization": "gruppieren", + "example_sentence_native": "Wir müssen die Daten gruppieren.", + "example_sentence_english": "We need to group the data.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27463 + }, + { + "word": "Guillotine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guillotine", + "romanization": "Guillotine", + "example_sentence_native": "Die Guillotine wurde während der Französischen Revolution eingesetzt.", + "example_sentence_english": "The guillotine was used during the French Revolution.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27464 + }, + { + "word": "Halbpension", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half board", + "romanization": "Halbpension", + "example_sentence_native": "Wir haben ein Zimmer mit Halbpension gebucht.", + "example_sentence_english": "We booked a room with half board.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27466 + }, + { + "word": "Handlungsspielraum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "room for maneuver;scope for action", + "romanization": "Handlungsspielraum", + "example_sentence_native": "Wir brauchen mehr Handlungsspielraum, um das Problem zu lösen.", + "example_sentence_english": "We need more room for maneuver to solve the problem.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27468 + }, + { + "word": "Handwerksbetrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "craft business;trade business", + "romanization": "Handwerksbetrieb", + "example_sentence_native": "Er arbeitet in einem kleinen Handwerksbetrieb.", + "example_sentence_english": "He works in a small craft business.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27469 + }, + { + "word": "Hautkrebs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skin cancer", + "romanization": "Hautkrebs", + "example_sentence_native": "Sonnenschutz ist wichtig, um Hautkrebs vorzubeugen.", + "example_sentence_english": "Sun protection is important to prevent skin cancer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27471 + }, + { + "word": "heilend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healing", + "romanization": "heilend", + "example_sentence_native": "Die Pflanze hat eine heilende Wirkung.", + "example_sentence_english": "The plant has a healing effect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27474 + }, + { + "word": "Hemisphäre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemisphere", + "romanization": "Hemisphäre", + "example_sentence_native": "Die Erde ist in zwei Hemisphären geteilt.", + "example_sentence_english": "The Earth is divided into two hemispheres.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27475 + }, + { + "word": "Hemmschwelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhibition threshold;barrier", + "romanization": "Hemmschwelle", + "example_sentence_native": "Er hat eine hohe Hemmschwelle, um Hilfe zu bitten.", + "example_sentence_english": "He has a high inhibition threshold for asking for help.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27476 + }, + { + "word": "hinzubekommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manage to get;achieve;to add", + "romanization": "hinzubekommen", + "example_sentence_native": "Ich versuche, das noch hinzubekommen.", + "example_sentence_english": "I'm trying to manage to get that done.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hin", + "base_verb": "bekommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27478 + }, + { + "word": "Holzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "woodcutter;lumberjack", + "romanization": "Holzer", + "example_sentence_native": "Der Holzer fällte den Baum.", + "example_sentence_english": "The woodcutter felled the tree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27479 + }, + { + "word": "hörnern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "horny;made of horn", + "romanization": "hörnern", + "example_sentence_native": "Die Statue hatte hörnerne Flügel.", + "example_sentence_english": "The statue had horny wings.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27484 + }, + { + "word": "Imkerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beekeeping;apiary", + "romanization": "Imkerei", + "example_sentence_native": "Die Imkerei ist ein altes Handwerk.", + "example_sentence_english": "Beekeeping is an old craft.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27485 + }, + { + "word": "indonesisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Indonesian", + "romanization": "indonesisch", + "example_sentence_native": "Sie spricht fließend Indonesisch.", + "example_sentence_english": "She speaks fluent Indonesian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27486 + }, + { + "word": "Inventur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventory;stocktaking", + "romanization": "Inventur", + "example_sentence_native": "Wir müssen die jährliche Inventur machen.", + "example_sentence_english": "We have to do the annual inventory.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27487 + }, + { + "word": "ironischerweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ironically", + "romanization": "ironischerweise", + "example_sentence_native": "Ironischerweise regnete es an unserem sonnigen Urlaubstag.", + "example_sentence_english": "Ironically, it rained on our sunny vacation day.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 27489 + }, + { + "word": "Jubiläumsjahr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anniversary year;jubilee year", + "romanization": "Jubiläumsjahr", + "example_sentence_native": "Dieses Jahr ist unser Jubiläumsjahr.", + "example_sentence_english": "This year is our anniversary year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27493 + }, + { + "word": "Kantate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cantata", + "romanization": "Kantate", + "example_sentence_native": "Bach komponierte viele Kantaten.", + "example_sentence_english": "Bach composed many cantatas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27497 + }, + { + "word": "kapitulieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capitulate;to surrender", + "romanization": "kapitulieren", + "example_sentence_native": "Die Armee musste kapitulieren.", + "example_sentence_english": "The army had to capitulate.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27498 + }, + { + "word": "Karamell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caramel", + "romanization": "Karamell", + "example_sentence_native": "Ich liebe Eis mit Karamell.", + "example_sentence_english": "I love ice cream with caramel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27499 + }, + { + "word": "kegeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bowl (skittles)", + "romanization": "kegeln", + "example_sentence_native": "Wir gehen am Wochenende kegeln.", + "example_sentence_english": "We are going bowling on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27501 + }, + { + "word": "Kirchenchor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "church choir", + "romanization": "Kirchenchor", + "example_sentence_native": "Der Kirchenchor singt jeden Sonntag.", + "example_sentence_english": "The church choir sings every Sunday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27504 + }, + { + "word": "Kirchplatz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "church square", + "romanization": "Kirchplatz", + "example_sentence_native": "Wir treffen uns auf dem Kirchplatz.", + "example_sentence_english": "We meet at the church square.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27505 + }, + { + "word": "Klebe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glue;adhesive", + "romanization": "Klebe", + "example_sentence_native": "Die Klebe hält sehr gut.", + "example_sentence_english": "The glue holds very well.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27506 + }, + { + "word": "knechten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enslave;to subjugate", + "romanization": "knechten", + "example_sentence_native": "Er versuchte, die Menschen zu knechten.", + "example_sentence_english": "He tried to enslave the people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27508 + }, + { + "word": "kolumbianisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Colombian", + "romanization": "kolumbianisch", + "example_sentence_native": "Sie mag kolumbianischen Kaffee.", + "example_sentence_english": "She likes Colombian coffee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27509 + }, + { + "word": "kommissarisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provisional;acting", + "romanization": "kommissarisch", + "example_sentence_native": "Er wurde kommissarisch zum Leiter ernannt.", + "example_sentence_english": "He was provisionally appointed as head.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27510 + }, + { + "word": "Kompressor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressor", + "romanization": "Kompressor", + "example_sentence_native": "Der Kompressor ist sehr laut.", + "example_sentence_english": "The compressor is very loud.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27511 + }, + { + "word": "Kopfschuss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "headshot (wound)", + "romanization": "Kopfschuss", + "example_sentence_native": "Der Detektiv untersuchte den Kopfschuss.", + "example_sentence_english": "The detective investigated the headshot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27512 + }, + { + "word": "krabbeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crawl;to creep", + "romanization": "krabbeln", + "example_sentence_native": "Das Baby beginnt zu krabbeln.", + "example_sentence_english": "The baby is starting to crawl.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27514 + }, + { + "word": "kreisfrei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "independent city;district", + "romanization": "kreisfrei", + "example_sentence_native": "Mainz ist eine kreisfreie Stadt.", + "example_sentence_english": "Mainz is an independent city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27515 + }, + { + "word": "Kreuzchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little cross;tick mark", + "romanization": "Kreuzchen", + "example_sentence_native": "Bitte machen Sie ein Kreuzchen in das Kästchen.", + "example_sentence_english": "Please put a tick mark in the box.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27516 + }, + { + "word": "Kriminalstatistik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crime statistics", + "romanization": "Kriminalstatistik", + "example_sentence_native": "Die Kriminalstatistik zeigt einen Rückgang der Diebstähle.", + "example_sentence_english": "The crime statistics show a decrease in thefts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27517 + }, + { + "word": "Kuhmilch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cow's milk", + "romanization": "Kuhmilch", + "example_sentence_native": "Viele Menschen trinken Kuhmilch.", + "example_sentence_english": "Many people drink cow's milk.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27519 + }, + { + "word": "kämmen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to comb", + "romanization": "kämmen", + "example_sentence_native": "Sie kämmt sich jeden Morgen die Haare.", + "example_sentence_english": "She combs her hair every morning.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27520 + }, + { + "word": "Käsekuchen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheesecake", + "romanization": "Käsekuchen", + "example_sentence_native": "Ich liebe Käsekuchen mit Kirschen.", + "example_sentence_english": "I love cheesecake with cherries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27521 + }, + { + "word": "Landbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agriculture", + "romanization": "Landbau", + "example_sentence_native": "Der Landbau ist wichtig für die Wirtschaft.", + "example_sentence_english": "Agriculture is important for the economy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27523 + }, + { + "word": "Landesanstalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state institution", + "romanization": "Landesanstalt", + "example_sentence_native": "Die Landesanstalt forscht im Bereich Umweltschutz.", + "example_sentence_english": "The state institution conducts research in environmental protection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27524 + }, + { + "word": "Lebensmittelpunkt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "center of life", + "romanization": "Lebensmittelpunkt", + "example_sentence_native": "Sein Lebensmittelpunkt ist jetzt Berlin.", + "example_sentence_english": "His center of life is now Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27526 + }, + { + "word": "Lebenswandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifestyle", + "romanization": "Lebenswandel", + "example_sentence_native": "Ein gesunder Lebenswandel ist wichtig für die Gesundheit.", + "example_sentence_english": "A healthy lifestyle is important for health.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27527 + }, + { + "word": "Lesestoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reading material", + "romanization": "Lesestoff", + "example_sentence_native": "Ich brauche neuen Lesestoff für den Urlaub.", + "example_sentence_english": "I need new reading material for the holiday.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27530 + }, + { + "word": "lobenswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praiseworthy", + "romanization": "lobenswert", + "example_sentence_native": "Ihr Engagement ist wirklich lobenswert.", + "example_sentence_english": "Her commitment is truly praiseworthy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27532 + }, + { + "word": "längerfristig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long-term", + "romanization": "längerfristig", + "example_sentence_native": "Wir brauchen eine längerfristige Lösung.", + "example_sentence_english": "We need a long-term solution.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27537 + }, + { + "word": "Lösungsvorschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proposed solution", + "romanization": "Lösungsvorschlag", + "example_sentence_native": "Er machte einen guten Lösungsvorschlag.", + "example_sentence_english": "He made a good proposed solution.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27538 + }, + { + "word": "Mandarin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mandarin (official)", + "romanization": "Mandarin", + "example_sentence_native": "Der Mandarin trug eine prächtige Robe.", + "example_sentence_english": "The Mandarin wore a magnificent robe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27540 + }, + { + "word": "marokkanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Moroccan", + "romanization": "marokkanisch", + "example_sentence_native": "Sie hat einen marokkanischen Teppich gekauft.", + "example_sentence_english": "She bought a Moroccan carpet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27542 + }, + { + "word": "Marxist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxist", + "romanization": "Marxist", + "example_sentence_native": "Er ist ein überzeugter Marxist.", + "example_sentence_english": "He is a convinced Marxist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27543 + }, + { + "word": "Maulkorb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muzzle", + "romanization": "Maulkorb", + "example_sentence_native": "Der Hund musste einen Maulkorb tragen.", + "example_sentence_english": "The dog had to wear a muzzle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27545 + }, + { + "word": "Mausoleum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mausoleum", + "romanization": "Mausoleum", + "example_sentence_native": "Das alte Mausoleum war beeindruckend.", + "example_sentence_english": "The old mausoleum was impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27546 + }, + { + "word": "Meridian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meridian", + "romanization": "Meridian", + "example_sentence_native": "Der Nullmeridian verläuft durch Greenwich.", + "example_sentence_english": "The prime meridian runs through Greenwich.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27548 + }, + { + "word": "metallisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metallic", + "romanization": "metallisch", + "example_sentence_native": "Das Geräusch klang metallisch.", + "example_sentence_english": "The sound had a metallic ring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27549 + }, + { + "word": "miteinbeziehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to include;to involve", + "romanization": "miteinbeziehen", + "example_sentence_native": "Wir müssen alle Meinungen miteinbeziehen.", + "example_sentence_english": "We must include all opinions.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mitein", + "base_verb": "beziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27550 + }, + { + "word": "mitschuldig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complicit;jointly guilty", + "romanization": "mitschuldig", + "example_sentence_native": "Er war mitschuldig an dem Verbrechen.", + "example_sentence_english": "He was complicit in the crime.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27551 + }, + { + "word": "mixen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mix", + "romanization": "mixen", + "example_sentence_native": "Kannst du mir einen Cocktail mixen?", + "example_sentence_english": "Can you mix me a cocktail?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27553 + }, + { + "word": "Mobilfunkanbieter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobile phone provider", + "romanization": "Mobilfunkanbieter", + "example_sentence_native": "Welcher Mobilfunkanbieter hat das beste Netz?", + "example_sentence_english": "Which mobile phone provider has the best network?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27554 + }, + { + "word": "Mundwinkel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corner of the mouth", + "romanization": "Mundwinkel", + "example_sentence_native": "Ein Lächeln spielte um ihre Mundwinkel.", + "example_sentence_english": "A smile played around the corners of her mouth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27556 + }, + { + "word": "Musikstück", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piece of music", + "romanization": "Musikstück", + "example_sentence_native": "Das ist mein Lieblingsmusikstück.", + "example_sentence_english": "That is my favorite piece of music.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27557 + }, + { + "word": "Nationalmuseum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national museum", + "romanization": "Nationalmuseum", + "example_sentence_native": "Wir besuchten das Nationalmuseum in Berlin.", + "example_sentence_english": "We visited the National Museum in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27559 + }, + { + "word": "Naturgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "natural history", + "romanization": "Naturgeschichte", + "example_sentence_native": "Er studierte Naturgeschichte an der Universität.", + "example_sentence_english": "He studied natural history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27560 + }, + { + "word": "Neueröffnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grand opening", + "romanization": "Neueröffnung", + "example_sentence_native": "Die Neueröffnung des Geschäfts ist nächste Woche.", + "example_sentence_english": "The grand opening of the store is next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27561 + }, + { + "word": "nordwärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northward", + "romanization": "nordwärts", + "example_sentence_native": "Wir reisten nordwärts in die Berge.", + "example_sentence_english": "We traveled northward into the mountains.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 27565 + }, + { + "word": "Oberkommando", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high command", + "romanization": "Oberkommando", + "example_sentence_native": "Das Oberkommando traf eine wichtige Entscheidung.", + "example_sentence_english": "The high command made an important decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27567 + }, + { + "word": "Ostbahnhof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "East Station", + "romanization": "Ostbahnhof", + "example_sentence_native": "Wir treffen uns am Ostbahnhof.", + "example_sentence_english": "We meet at the East Station.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27572 + }, + { + "word": "peitschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whip;to lash", + "romanization": "peitschen", + "example_sentence_native": "Der Wind peitschte den Regen gegen die Fenster.", + "example_sentence_english": "The wind lashed the rain against the windows.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27576 + }, + { + "word": "Personalunion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personal union", + "romanization": "Personalunion", + "example_sentence_native": "Die beiden Länder waren in Personalunion verbunden.", + "example_sentence_english": "The two countries were connected in a personal union.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27577 + }, + { + "word": "Persönlichkeitsstörung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personality disorder", + "romanization": "Persönlichkeitsstörung", + "example_sentence_native": "Eine Persönlichkeitsstörung kann das tägliche Leben stark beeinträchtigen.", + "example_sentence_english": "A personality disorder can severely impair daily life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27578 + }, + { + "word": "Pessimismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pessimism", + "romanization": "Pessimismus", + "example_sentence_native": "Sein Pessimismus stand ihm oft im Weg.", + "example_sentence_english": "His pessimism often stood in his way.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27579 + }, + { + "word": "Pflegeeltern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foster parents", + "romanization": "Pflegeeltern", + "example_sentence_native": "Die Pflegeeltern kümmerten sich liebevoll um das Kind.", + "example_sentence_english": "The foster parents lovingly cared for the child.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27580 + }, + { + "word": "Physiotherapeut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physiotherapist", + "romanization": "Physiotherapeut", + "example_sentence_native": "Der Physiotherapeut half mir, meine Verletzung zu heilen.", + "example_sentence_english": "The physiotherapist helped me heal my injury.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27582 + }, + { + "word": "Piraterie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piracy", + "romanization": "Piraterie", + "example_sentence_native": "Die Piraterie ist ein ernstes Problem in internationalen Gewässern.", + "example_sentence_english": "Piracy is a serious problem in international waters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27583 + }, + { + "word": "Primetime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primetime", + "romanization": "Primetime", + "example_sentence_native": "Die Sendung läuft zur Primetime.", + "example_sentence_english": "The show airs during primetime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27586 + }, + { + "word": "Proceeding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proceeding", + "romanization": "Proceeding", + "example_sentence_native": "Das Proceeding des Gerichts dauerte mehrere Stunden.", + "example_sentence_english": "The court proceeding lasted several hours.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27587 + }, + { + "word": "Psychopharmakon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotropic drug", + "romanization": "Psychopharmakon", + "example_sentence_native": "Das Psychopharmakon muss regelmäßig eingenommen werden.", + "example_sentence_english": "The psychotropic drug must be taken regularly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27588 + }, + { + "word": "Puppenspieler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puppeteer", + "romanization": "Puppenspieler", + "example_sentence_native": "Der Puppenspieler führte ein lustiges Stück auf.", + "example_sentence_english": "The puppeteer performed a funny play.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27591 + }, + { + "word": "rausfliegen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be kicked out;to fly out", + "romanization": "rausfliegen", + "example_sentence_native": "Er ist aus der Schule rausgeflogen.", + "example_sentence_english": "He was kicked out of school.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "raus", + "base_verb": "fliegen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27593 + }, + { + "word": "Recke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "warrior;hero", + "romanization": "Recke", + "example_sentence_native": "Der Recke zog in den Kampf.", + "example_sentence_english": "The warrior went into battle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27594 + }, + { + "word": "recken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stretch;to crane", + "romanization": "recken", + "example_sentence_native": "Er musste sich recken, um das Buch zu erreichen.", + "example_sentence_english": "He had to stretch to reach the book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27595 + }, + { + "word": "Resistance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance", + "romanization": "Resistance", + "example_sentence_native": "Die Resistance kämpfte gegen die Besatzungsmacht.", + "example_sentence_english": "The Resistance fought against the occupying power.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27598 + }, + { + "word": "Rittmeister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cavalry captain", + "romanization": "Rittmeister", + "example_sentence_native": "Der Rittmeister führte seine Truppen in die Schlacht.", + "example_sentence_english": "The cavalry captain led his troops into battle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27601 + }, + { + "word": "Rokoko", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Rococo", + "romanization": "Rokoko", + "example_sentence_native": "Das Rokoko ist ein Kunststil des 18. Jahrhunderts.", + "example_sentence_english": "Rococo is an 18th-century art style.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27602 + }, + { + "word": "Ruderer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rower", + "romanization": "Ruderer", + "example_sentence_native": "Der Ruderer trainiert jeden Tag auf dem See.", + "example_sentence_english": "The rower trains every day on the lake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27603 + }, + { + "word": "Rundschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circular;memo", + "romanization": "Rundschreiben", + "example_sentence_native": "Das Unternehmen hat ein Rundschreiben an alle Mitarbeiter verschickt.", + "example_sentence_english": "The company sent a circular to all employees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27604 + }, + { + "word": "runterholen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get down;to take down", + "romanization": "runterholen", + "example_sentence_native": "Kannst du bitte das Buch vom Regal runterholen?", + "example_sentence_english": "Can you please get the book down from the shelf?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "runter", + "base_verb": "holen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27605 + }, + { + "word": "runterkommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to come down;to calm down", + "romanization": "runterkommen", + "example_sentence_native": "Er muss erst mal runterkommen, bevor wir reden können.", + "example_sentence_english": "He needs to calm down first before we can talk.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "runter", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27606 + }, + { + "word": "Rückwärtsgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reverse gear", + "romanization": "Rückwärtsgang", + "example_sentence_native": "Er legte den Rückwärtsgang ein und fuhr langsam zurück.", + "example_sentence_english": "He put it in reverse gear and slowly drove back.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27607 + }, + { + "word": "sachte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gentle;softly", + "romanization": "sachte", + "example_sentence_native": "Er öffnete die Tür sachte, um niemanden zu wecken.", + "example_sentence_english": "He opened the door gently so as not to wake anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27608 + }, + { + "word": "Saisonsieg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "season victory", + "romanization": "Saisonsieg", + "example_sentence_native": "Das Team feierte seinen ersten Saisonsieg.", + "example_sentence_english": "The team celebrated its first season victory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27610 + }, + { + "word": "Sakristei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacristy", + "romanization": "Sakristei", + "example_sentence_native": "Der Priester bereitete sich in der Sakristei auf die Messe vor.", + "example_sentence_english": "The priest prepared for mass in the sacristy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27611 + }, + { + "word": "Saphir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sapphire", + "romanization": "Saphir", + "example_sentence_native": "Sie trug einen Ring mit einem großen Saphir.", + "example_sentence_english": "She wore a ring with a large sapphire.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27612 + }, + { + "word": "Schatzsuche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treasure hunt", + "romanization": "Schatzsuche", + "example_sentence_native": "Die Kinder veranstalteten eine spannende Schatzsuche im Garten.", + "example_sentence_english": "The children organized an exciting treasure hunt in the garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27614 + }, + { + "word": "Schiffbruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipwreck", + "romanization": "Schiffbruch", + "example_sentence_native": "Nach dem Sturm erlitt das Schiff Schiffbruch.", + "example_sentence_english": "After the storm, the ship suffered shipwreck.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27615 + }, + { + "word": "schlaflos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleepless", + "romanization": "schlaflos", + "example_sentence_native": "Sie verbrachte eine schlaflose Nacht.", + "example_sentence_english": "She spent a sleepless night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27616 + }, + { + "word": "Schlund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gullet;abyss;chasm", + "romanization": "Schlund", + "example_sentence_native": "Der Bergsteiger blickte in den tiefen Schlund.", + "example_sentence_english": "The mountaineer looked into the deep chasm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27617 + }, + { + "word": "Schneeberg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snow mountain", + "romanization": "Schneeberg", + "example_sentence_native": "Wir sahen einen hohen Schneeberg in der Ferne.", + "example_sentence_english": "We saw a high snow mountain in the distance.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27618 + }, + { + "word": "Scholle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flounder (fish);clod (of earth);floe (of ice)", + "romanization": "Scholle", + "example_sentence_native": "Zum Abendessen gab es gebratene Scholle.", + "example_sentence_english": "For dinner, there was fried flounder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27619 + }, + { + "word": "schonungslos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merciless;ruthless", + "romanization": "schonungslos", + "example_sentence_native": "Er kritisierte die Regierung schonungslos.", + "example_sentence_english": "He criticized the government mercilessly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27620 + }, + { + "word": "Schulzentrum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school complex", + "romanization": "Schulzentrum", + "example_sentence_native": "Das neue Schulzentrum bietet viele Möglichkeiten.", + "example_sentence_english": "The new school complex offers many opportunities.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27621 + }, + { + "word": "Sechser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "six (e.g.;a six in a lottery;a grade of six)", + "romanization": "Sechser", + "example_sentence_native": "Er hatte einen Sechser im Lotto.", + "example_sentence_english": "He had a six in the lottery.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27622 + }, + { + "word": "selbstfahrend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-driving", + "romanization": "selbstfahrend", + "example_sentence_native": "Wir sahen ein selbstfahrendes Auto auf der Straße.", + "example_sentence_english": "We saw a self-driving car on the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27623 + }, + { + "word": "Slum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slum", + "romanization": "Slum", + "example_sentence_native": "Viele Menschen leben in den Slums der Großstadt.", + "example_sentence_english": "Many people live in the slums of the big city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27627 + }, + { + "word": "Sparmassnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "austerity measure;savings measure", + "romanization": "Sparmassnahme", + "example_sentence_native": "Die Regierung kündigte neue Sparmassnahmen an.", + "example_sentence_english": "The government announced new austerity measures.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27629 + }, + { + "word": "spezifizieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to specify", + "romanization": "spezifizieren", + "example_sentence_native": "Bitte spezifizieren Sie Ihre Anforderungen genauer.", + "example_sentence_english": "Please specify your requirements more precisely.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27630 + }, + { + "word": "Sprengsatz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "explosive device;bomb", + "romanization": "Sprengsatz", + "example_sentence_native": "Die Polizei fand einen Sprengsatz im Gebäude.", + "example_sentence_english": "The police found an explosive device in the building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27631 + }, + { + "word": "stadteinwärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city-bound;inwards to the city", + "romanization": "stadteinwärts", + "example_sentence_native": "Der Bus fährt stadteinwärts.", + "example_sentence_english": "The bus is driving city-bound.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 27632 + }, + { + "word": "Stammsitz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "headquarters;main office", + "romanization": "Stammsitz", + "example_sentence_native": "Der Stammsitz der Firma ist in Berlin.", + "example_sentence_english": "The company's headquarters is in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27633 + }, + { + "word": "Steinbock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ibex;Capricorn", + "romanization": "Steinbock", + "example_sentence_native": "Der Steinbock lebt in den Bergen.", + "example_sentence_english": "The ibex lives in the mountains.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27634 + }, + { + "word": "Studienjahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "academic year;study year", + "romanization": "Studienjahr", + "example_sentence_native": "Das Studienjahr beginnt im Herbst.", + "example_sentence_english": "The academic year begins in autumn.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27637 + }, + { + "word": "stufenweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gradually;step by step", + "romanization": "stufenweise", + "example_sentence_native": "Die Änderungen werden stufenweise eingeführt.", + "example_sentence_english": "The changes will be introduced gradually.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 27638 + }, + { + "word": "Sturmböe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squall;gust of wind", + "romanization": "Sturmböe", + "example_sentence_native": "Eine plötzliche Sturmböe riss den Regenschirm weg.", + "example_sentence_english": "A sudden gust of wind tore away the umbrella.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27639 + }, + { + "word": "Sühne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atonement", + "romanization": "Sühne", + "example_sentence_native": "Er suchte Sühne für seine Taten.", + "example_sentence_english": "He sought atonement for his actions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27640 + }, + { + "word": "Tabellenspitze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top of the table", + "romanization": "Tabellenspitze", + "example_sentence_native": "Die Mannschaft steht an der Tabellenspitze.", + "example_sentence_english": "The team is at the top of the table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27641 + }, + { + "word": "Tageskarte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "day ticket", + "romanization": "Tageskarte", + "example_sentence_native": "Ich hätte gerne eine Tageskarte für den Bus.", + "example_sentence_english": "I would like a day ticket for the bus.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27642 + }, + { + "word": "Talsperre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dam", + "romanization": "Talsperre", + "example_sentence_native": "Die Talsperre versorgt die Stadt mit Wasser.", + "example_sentence_english": "The dam supplies the city with water.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27643 + }, + { + "word": "Thermodynamik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thermodynamics", + "romanization": "Thermodynamik", + "example_sentence_native": "Die Thermodynamik ist ein Teilgebiet der Physik.", + "example_sentence_english": "Thermodynamics is a subfield of physics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27649 + }, + { + "word": "tight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tight;cool (slang)", + "romanization": "tight", + "example_sentence_native": "Das Konzert war echt tight.", + "example_sentence_english": "The concert was really cool.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27650 + }, + { + "word": "Tinnitus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tinnitus", + "romanization": "Tinnitus", + "example_sentence_native": "Er leidet unter chronischem Tinnitus.", + "example_sentence_english": "He suffers from chronic tinnitus.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27651 + }, + { + "word": "Trabant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satellite;Trabant (car)", + "romanization": "Trabant", + "example_sentence_native": "Der Trabant umkreist die Erde.", + "example_sentence_english": "The satellite orbits the Earth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27655 + }, + { + "word": "Turban", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turban", + "romanization": "Turban", + "example_sentence_native": "Er trug einen bunten Turban.", + "example_sentence_english": "He wore a colorful turban.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27658 + }, + { + "word": "Töchterchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little daughter", + "romanization": "Töchterchen", + "example_sentence_native": "Unser Töchterchen spielt im Garten.", + "example_sentence_english": "Our little daughter is playing in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27660 + }, + { + "word": "Uhrmacher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watchmaker;clockmaker", + "romanization": "Uhrmacher", + "example_sentence_native": "Der Uhrmacher reparierte meine alte Uhr.", + "example_sentence_english": "The watchmaker repaired my old watch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27663 + }, + { + "word": "unbeabsichtigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unintentional;accidental", + "romanization": "unbeabsichtigt", + "example_sentence_native": "Das war ein unbeabsichtigter Fehler.", + "example_sentence_english": "That was an unintentional mistake.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27664 + }, + { + "word": "unberücksichtigt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconsidered;disregarded", + "romanization": "unberücksichtigt", + "example_sentence_native": "Seine Meinung blieb unberücksichtigt.", + "example_sentence_english": "His opinion remained unconsidered.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27665 + }, + { + "word": "unbeschädigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undamaged;intact", + "romanization": "unbeschädigt", + "example_sentence_native": "Das Paket kam unbeschädigt an.", + "example_sentence_english": "The package arrived undamaged.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27666 + }, + { + "word": "uneins", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at odds;in disagreement", + "romanization": "uneins", + "example_sentence_native": "Die Geschwister waren sich uneins über die Erbschaft.", + "example_sentence_english": "The siblings were at odds about the inheritance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27667 + }, + { + "word": "ungeheuerlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monstrous;outrageous;enormous", + "romanization": "ungeheuerlich", + "example_sentence_native": "Das war eine ungeheuerliche Behauptung.", + "example_sentence_english": "That was an outrageous claim.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27668 + }, + { + "word": "Universitätsstadt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university town;city", + "romanization": "Universitätsstadt", + "example_sentence_native": "Heidelberg ist eine bekannte Universitätsstadt.", + "example_sentence_english": "Heidelberg is a well-known university town.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27669 + }, + { + "word": "unkonventionell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconventional", + "romanization": "unkonventionell", + "example_sentence_native": "Sie hat einen sehr unkonventionellen Stil.", + "example_sentence_english": "She has a very unconventional style.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27670 + }, + { + "word": "unscheinbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconspicuous;unassuming", + "romanization": "unscheinbar", + "example_sentence_native": "Das unscheinbare Gebäude birgt ein Geheimnis.", + "example_sentence_english": "The inconspicuous building holds a secret.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27671 + }, + { + "word": "Usus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "custom;usage;practice", + "romanization": "Usus", + "example_sentence_native": "Es ist Usus, sich vor dem Betreten des Hauses die Schuhe auszuziehen.", + "example_sentence_english": "It is customary to take off your shoes before entering the house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27672 + }, + { + "word": "Verabreichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administration (of medicine);dispensing", + "romanization": "Verabreichung", + "example_sentence_native": "Die Verabreichung des Medikaments erfolgte oral.", + "example_sentence_english": "The administration of the medication was oral.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27676 + }, + { + "word": "Veranschaulichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illustration;visualization;clarification", + "romanization": "Veranschaulichung", + "example_sentence_native": "Zur besseren Veranschaulichung zeigte er ein Diagramm.", + "example_sentence_english": "For better illustration, he showed a diagram.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27677 + }, + { + "word": "Verantwortungsbewusstsein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sense of responsibility;responsibility awareness", + "romanization": "Verantwortungsbewusstsein", + "example_sentence_native": "Ein hohes Verantwortungsbewusstsein ist in dieser Position unerlässlich.", + "example_sentence_english": "A high sense of responsibility is essential in this position.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27678 + }, + { + "word": "verhauen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess up;to beat up", + "romanization": "verhauen", + "example_sentence_native": "Er hat die Prüfung total verhauen.", + "example_sentence_english": "He totally messed up the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27681 + }, + { + "word": "Verhängung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imposition;pronouncement", + "romanization": "Verhängung", + "example_sentence_native": "Die Verhängung der Strafe erfolgte gestern.", + "example_sentence_english": "The imposition of the penalty took place yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27683 + }, + { + "word": "Verkehrsministerium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ministry of Transport", + "romanization": "Verkehrsministerium", + "example_sentence_native": "Das Verkehrsministerium plant neue Straßen.", + "example_sentence_english": "The Ministry of Transport is planning new roads.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27684 + }, + { + "word": "Verkehrsrecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traffic law", + "romanization": "Verkehrsrecht", + "example_sentence_native": "Er ist Experte für Verkehrsrecht.", + "example_sentence_english": "He is an expert in traffic law.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27685 + }, + { + "word": "verletzend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurtful;offensive", + "romanization": "verletzend", + "example_sentence_native": "Seine Worte waren sehr verletzend.", + "example_sentence_english": "His words were very hurtful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27686 + }, + { + "word": "Vermählung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wedding;nuptials", + "romanization": "Vermählung", + "example_sentence_native": "Die Vermählung fand in einer kleinen Kapelle statt.", + "example_sentence_english": "The wedding took place in a small chapel.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27687 + }, + { + "word": "Versandhandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mail order business", + "romanization": "Versandhandel", + "example_sentence_native": "Der Versandhandel boomt in der heutigen Zeit.", + "example_sentence_english": "The mail order business is booming nowadays.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27688 + }, + { + "word": "verschanzen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to entrench oneself;to barricade oneself", + "romanization": "verschanzen", + "example_sentence_native": "Die Soldaten verschanzten sich hinter den Sandsäcken.", + "example_sentence_english": "The soldiers entrenched themselves behind the sandbags.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27689 + }, + { + "word": "Versicherungsnehmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "policyholder;insured person", + "romanization": "Versicherungsnehmer", + "example_sentence_native": "Der Versicherungsnehmer muss die Prämien pünktlich zahlen.", + "example_sentence_english": "The policyholder must pay the premiums on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27690 + }, + { + "word": "Vertuschung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cover-up;concealment", + "romanization": "Vertuschung", + "example_sentence_native": "Es gab Vorwürfe der Vertuschung von Beweisen.", + "example_sentence_english": "There were accusations of evidence cover-up.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27691 + }, + { + "word": "Virtuose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtuoso", + "romanization": "Virtuose", + "example_sentence_native": "Er ist ein wahrer Virtuose an der Geige.", + "example_sentence_english": "He is a true virtuoso on the violin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27692 + }, + { + "word": "Vorauswahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-selection;shortlist", + "romanization": "Vorauswahl", + "example_sentence_native": "Nur Kandidaten in der Vorauswahl werden zum Interview eingeladen.", + "example_sentence_english": "Only candidates on the shortlist will be invited for an interview.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27695 + }, + { + "word": "Webinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "webinar", + "romanization": "Webinar", + "example_sentence_native": "Ich nehme an einem Webinar über Online-Marketing teil.", + "example_sentence_english": "I am participating in a webinar about online marketing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27698 + }, + { + "word": "weltbest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "world's best", + "romanization": "weltbest", + "example_sentence_native": "Er ist der weltbeste Koch.", + "example_sentence_english": "He is the world's best chef.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27700 + }, + { + "word": "weltoffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmopolitan;open-minded", + "romanization": "weltoffen", + "example_sentence_native": "Sie ist eine sehr weltoffene Person.", + "example_sentence_english": "She is a very open-minded person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27701 + }, + { + "word": "widrig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adverse;contrary", + "romanization": "widrig", + "example_sentence_native": "Trotz widriger Umstände haben sie es geschafft.", + "example_sentence_english": "Despite adverse circumstances, they succeeded.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27702 + }, + { + "word": "Wirtschaftssystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economic system", + "romanization": "Wirtschaftssystem", + "example_sentence_native": "Jedes Land hat sein eigenes Wirtschaftssystem.", + "example_sentence_english": "Every country has its own economic system.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27703 + }, + { + "word": "Wirtschaftswunder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic miracle", + "romanization": "Wirtschaftswunder", + "example_sentence_native": "Das deutsche Wirtschaftswunder begann nach dem Krieg.", + "example_sentence_english": "The German economic miracle began after the war.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27704 + }, + { + "word": "Wirtschaftszweig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economic sector;branch of industry", + "romanization": "Wirtschaftszweig", + "example_sentence_native": "Der Tourismus ist ein wichtiger Wirtschaftszweig in dieser Region.", + "example_sentence_english": "Tourism is an important economic sector in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27705 + }, + { + "word": "Wrestler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrestler", + "romanization": "Wrestler", + "example_sentence_native": "Der Wrestler gewann den Kampf.", + "example_sentence_english": "The wrestler won the fight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27708 + }, + { + "word": "Währungsfonds", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "currency fund", + "romanization": "Währungsfonds", + "example_sentence_native": "Der Internationale Währungsfonds unterstützt Länder in Finanzkrisen.", + "example_sentence_english": "The International Monetary Fund supports countries in financial crises.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27709 + }, + { + "word": "zerstreuen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scatter;to disperse;to distract", + "romanization": "zerstreuen", + "example_sentence_native": "Der Wind zerstreute die Blätter.", + "example_sentence_english": "The wind scattered the leaves.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27712 + }, + { + "word": "zerstückeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismember;to cut into pieces", + "romanization": "zerstückeln", + "example_sentence_native": "Er musste das Holz zerstückeln, um es ins Feuer zu legen.", + "example_sentence_english": "He had to cut the wood into pieces to put it in the fire.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27713 + }, + { + "word": "zischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hiss;to fizz", + "romanization": "zischen", + "example_sentence_native": "Die Schlange zischte laut.", + "example_sentence_english": "The snake hissed loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27714 + }, + { + "word": "Zugangsdaten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "access data;login credentials", + "romanization": "Zugangsdaten", + "example_sentence_native": "Bitte geben Sie Ihre Zugangsdaten ein.", + "example_sentence_english": "Please enter your login credentials.", + "gender": "Unknown", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27715 + }, + { + "word": "Zusicherung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assurance;guarantee", + "romanization": "Zusicherung", + "example_sentence_native": "Er gab ihr die Zusicherung, dass alles in Ordnung sei.", + "example_sentence_english": "He gave her the assurance that everything was fine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27717 + }, + { + "word": "zuvorkommend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courteous;obliging", + "romanization": "zuvorkommend", + "example_sentence_native": "Sie war sehr zuvorkommend und hilfsbereit.", + "example_sentence_english": "She was very courteous and helpful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27718 + }, + { + "word": "zügeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to curb;to restrain;to bridle", + "romanization": "zügeln", + "example_sentence_native": "Er musste seine Wut zügeln.", + "example_sentence_english": "He had to curb his anger.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27719 + }, + { + "word": "übernächst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "next but one", + "romanization": "übernächst", + "example_sentence_native": "Wir treffen uns übernächste Woche.", + "example_sentence_english": "We'll meet the week after next.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27722 + }, + { + "word": "überspannen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to span;to overstretch", + "romanization": "überspannen", + "example_sentence_native": "Eine Brücke überspannt den Fluss.", + "example_sentence_english": "A bridge spans the river.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27723 + }, + { + "word": "abgetrennt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separated;detached", + "romanization": "abgetrennt", + "example_sentence_native": "Der abgetrennte Bereich ist nur für Personal.", + "example_sentence_english": "The separated area is for staff only.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27724 + }, + { + "word": "abladen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unload;to dump", + "romanization": "abladen", + "example_sentence_native": "Er muss die Waren abladen.", + "example_sentence_english": "He has to unload the goods.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "laden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27725 + }, + { + "word": "Ablieferung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delivery;submission", + "romanization": "Ablieferung", + "example_sentence_native": "Die Ablieferung der Dokumente ist morgen.", + "example_sentence_english": "The submission of the documents is tomorrow.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27726 + }, + { + "word": "Abschiedsbrief", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farewell letter", + "romanization": "Abschiedsbrief", + "example_sentence_native": "Sie fand einen Abschiedsbrief auf dem Tisch.", + "example_sentence_english": "She found a farewell letter on the table.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27727 + }, + { + "word": "absinken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sink;to drop", + "romanization": "absinken", + "example_sentence_native": "Die Temperatur wird absinken.", + "example_sentence_english": "The temperature will drop.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "sinken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27728 + }, + { + "word": "abtrünnig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renegade;disloyal", + "romanization": "abtrünnig", + "example_sentence_native": "Er wurde als abtrünnig betrachtet.", + "example_sentence_english": "He was considered renegade.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27729 + }, + { + "word": "achtmal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eight times", + "romanization": "achtmal", + "example_sentence_native": "Ich habe das achtmal versucht.", + "example_sentence_english": "I tried that eight times.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 27730 + }, + { + "word": "Alarmbereitschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alert readiness;state of alert", + "romanization": "Alarmbereitschaft", + "example_sentence_native": "Die Truppen wurden in Alarmbereitschaft versetzt.", + "example_sentence_english": "The troops were put on alert readiness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27733 + }, + { + "word": "alert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alert;vigilant", + "romanization": "alert", + "example_sentence_native": "Er blieb die ganze Nacht alert.", + "example_sentence_english": "He remained alert all night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27735 + }, + { + "word": "Alterung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aging;senescence", + "romanization": "Alterung", + "example_sentence_native": "Die Alterung der Bevölkerung ist ein Problem.", + "example_sentence_english": "The aging of the population is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27737 + }, + { + "word": "Amboss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anvil", + "romanization": "Amboss", + "example_sentence_native": "Der Schmied schlug auf den Amboss.", + "example_sentence_english": "The blacksmith struck the anvil.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27738 + }, + { + "word": "Amme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wet nurse", + "romanization": "Amme", + "example_sentence_native": "Die Amme kümmerte sich um das Baby.", + "example_sentence_english": "The wet nurse took care of the baby.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27739 + }, + { + "word": "Anamnese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anamnesis;medical history", + "romanization": "Anamnese", + "example_sentence_native": "Der Arzt nahm eine detaillierte Anamnese auf.", + "example_sentence_english": "The doctor took a detailed medical history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27740 + }, + { + "word": "anerkennend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciative;acknowledging", + "romanization": "anerkennend", + "example_sentence_native": "Er nickte anerkennend.", + "example_sentence_english": "He nodded appreciatively.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27742 + }, + { + "word": "anpreisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to praise;to extol;to advertise", + "romanization": "anpreisen", + "example_sentence_native": "Die Firma preist ihr neues Produkt an.", + "example_sentence_english": "The company advertises its new product.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "preisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27743 + }, + { + "word": "anstarren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stare at", + "romanization": "anstarren", + "example_sentence_native": "Er begann, sie unhöflich anzustarren.", + "example_sentence_english": "He began to stare at her rudely.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "starren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27744 + }, + { + "word": "anmutig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graceful;charming", + "romanization": "anmutig", + "example_sentence_native": "Die Tänzerin bewegte sich anmutig über die Bühne.", + "example_sentence_english": "The dancer moved gracefully across the stage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27745 + }, + { + "word": "anorganisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inorganic", + "romanization": "anorganisch", + "example_sentence_native": "Wasser ist eine anorganische Verbindung.", + "example_sentence_english": "Water is an inorganic compound.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27746 + }, + { + "word": "Arbeitseinsatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work effort;deployment;work assignment", + "romanization": "Arbeitseinsatz", + "example_sentence_native": "Sein Arbeitseinsatz war bemerkenswert.", + "example_sentence_english": "His work effort was remarkable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27747 + }, + { + "word": "Arterie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artery", + "romanization": "Arterie", + "example_sentence_native": "Die Arterie transportiert Blut vom Herzen weg.", + "example_sentence_english": "The artery transports blood away from the heart.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27749 + }, + { + "word": "auffrischen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refresh;to brush up (on)", + "romanization": "auffrischen", + "example_sentence_native": "Ich muss meine Sprachkenntnisse auffrischen.", + "example_sentence_english": "I need to brush up on my language skills.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "frischen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27751 + }, + { + "word": "auftauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to thaw;to defrost", + "romanization": "auftauen", + "example_sentence_native": "Das gefrorene Gemüse muss zuerst auftauen.", + "example_sentence_english": "The frozen vegetables must thaw first.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "tauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27752 + }, + { + "word": "Augenweide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feast for the eyes;eye-catcher", + "romanization": "Augenweide", + "example_sentence_native": "Der Garten war eine wahre Augenweide.", + "example_sentence_english": "The garden was a true feast for the eyes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27753 + }, + { + "word": "ausschneiden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut out", + "romanization": "ausschneiden", + "example_sentence_native": "Sie muss das Bild sorgfältig ausschneiden.", + "example_sentence_english": "She has to cut out the picture carefully.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "schneiden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27754 + }, + { + "word": "Aushang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notice;poster;bulletin", + "romanization": "Aushang", + "example_sentence_native": "Bitte lesen Sie den Aushang am Schwarzen Brett.", + "example_sentence_english": "Please read the notice on the bulletin board.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27755 + }, + { + "word": "ausharren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persevere;to endure;to hold out", + "romanization": "ausharren", + "example_sentence_native": "Sie mussten lange ausharren, bis Hilfe kam.", + "example_sentence_english": "They had to endure for a long time until help arrived.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "harren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27756 + }, + { + "word": "auslaufend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expiring;phasing out;outgoing", + "romanization": "auslaufend", + "example_sentence_native": "Der Vertrag ist auslaufend und muss erneuert werden.", + "example_sentence_english": "The contract is expiring and needs to be renewed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27757 + }, + { + "word": "Ausscheidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elimination;excretion;discharge", + "romanization": "Ausscheidung", + "example_sentence_native": "Die Ausscheidung von Giftstoffen ist wichtig für die Gesundheit.", + "example_sentence_english": "The elimination of toxins is important for health.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27758 + }, + { + "word": "barsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gruff;curt", + "romanization": "barsch", + "example_sentence_native": "Seine Antwort war barsch und kurz.", + "example_sentence_english": "His answer was gruff and short.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27760 + }, + { + "word": "Bedenkzeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection period;cooling-off period", + "romanization": "Bedenkzeit", + "example_sentence_native": "Ich brauche etwas Bedenkzeit, bevor ich mich entscheide.", + "example_sentence_english": "I need some time for reflection before I decide.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27762 + }, + { + "word": "Belletristik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiction;belles-lettres", + "romanization": "Belletristik", + "example_sentence_native": "Sie liest gerne Belletristik.", + "example_sentence_english": "She likes to read fiction.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27764 + }, + { + "word": "Belüftung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ventilation", + "romanization": "Belüftung", + "example_sentence_native": "Die Belüftung im Raum ist schlecht.", + "example_sentence_english": "The ventilation in the room is poor.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27765 + }, + { + "word": "Benchmark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benchmark", + "romanization": "Benchmark", + "example_sentence_native": "Wir müssen einen neuen Benchmark setzen.", + "example_sentence_english": "We need to set a new benchmark.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27766 + }, + { + "word": "Benutzeroberfläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "user interface", + "romanization": "Benutzeroberfläche", + "example_sentence_native": "Die Benutzeroberfläche ist sehr intuitiv.", + "example_sentence_english": "The user interface is very intuitive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27768 + }, + { + "word": "benützen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to use;to utilize", + "romanization": "benützen", + "example_sentence_native": "Sie benützt oft öffentliche Verkehrsmittel.", + "example_sentence_english": "She often uses public transport.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27769 + }, + { + "word": "Bergarbeiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miner", + "romanization": "Bergarbeiter", + "example_sentence_native": "Der Bergarbeiter arbeitet unter Tage.", + "example_sentence_english": "The miner works underground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27770 + }, + { + "word": "Berufsfachschule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocational school", + "romanization": "Berufsfachschule", + "example_sentence_native": "Nach der Schule besuchte er eine Berufsfachschule.", + "example_sentence_english": "After school, he attended a vocational school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27771 + }, + { + "word": "Berührungspunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "point of contact;tangent point", + "romanization": "Berührungspunkt", + "example_sentence_native": "Wir haben viele Berührungspunkte in unseren Interessen.", + "example_sentence_english": "We have many points of contact in our interests.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27772 + }, + { + "word": "Beschuldigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accusation;charge", + "romanization": "Beschuldigung", + "example_sentence_native": "Er wies die Beschuldigung zurück.", + "example_sentence_english": "He rejected the accusation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27773 + }, + { + "word": "bevollmächtigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to authorize;to empower", + "romanization": "bevollmächtigen", + "example_sentence_native": "Er wurde bevollmächtigt, den Vertrag zu unterzeichnen.", + "example_sentence_english": "He was authorized to sign the contract.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27775 + }, + { + "word": "Beweisaufnahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taking of evidence;evidentiary hearing", + "romanization": "Beweisaufnahme", + "example_sentence_native": "Die Beweisaufnahme im Prozess dauerte mehrere Tage.", + "example_sentence_english": "The taking of evidence in the trial lasted several days.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27776 + }, + { + "word": "Beweismaterial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evidence;proof material", + "romanization": "Beweismaterial", + "example_sentence_native": "Das Beweismaterial wurde dem Gericht vorgelegt.", + "example_sentence_english": "The evidence was presented to the court.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27777 + }, + { + "word": "Bewerb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition;application (Austrian)", + "romanization": "Bewerb", + "example_sentence_native": "Er hat sich für den Bewerb angemeldet.", + "example_sentence_english": "He registered for the competition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27778 + }, + { + "word": "Bezirksklasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district league;class", + "romanization": "Bezirksklasse", + "example_sentence_native": "Die Mannschaft spielt in der Bezirksklasse.", + "example_sentence_english": "The team plays in the district league.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27779 + }, + { + "word": "Bierflasche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beer bottle", + "romanization": "Bierflasche", + "example_sentence_native": "Er hat eine leere Bierflasche auf den Tisch gestellt.", + "example_sentence_english": "He put an empty beer bottle on the table.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27780 + }, + { + "word": "Bildbearbeitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "image processing", + "romanization": "Bildbearbeitung", + "example_sentence_native": "Die Bildbearbeitung ist ein wichtiger Schritt für professionelle Fotos.", + "example_sentence_english": "Image processing is an important step for professional photos.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27781 + }, + { + "word": "Bildungsbereich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education sector", + "romanization": "Bildungsbereich", + "example_sentence_native": "Der Bildungsbereich steht vor großen Herausforderungen.", + "example_sentence_english": "The education sector faces great challenges.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27782 + }, + { + "word": "Birnbaum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pear tree", + "romanization": "Birnbaum", + "example_sentence_native": "Im Garten steht ein alter Birnbaum.", + "example_sentence_english": "There is an old pear tree in the garden.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27783 + }, + { + "word": "Blogeintrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blog post", + "romanization": "Blogeintrag", + "example_sentence_native": "Sie hat einen neuen Blogeintrag über ihre Reise geschrieben.", + "example_sentence_english": "She wrote a new blog post about her trip.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27784 + }, + { + "word": "Blutzucker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blood sugar", + "romanization": "Blutzucker", + "example_sentence_native": "Es ist wichtig, den Blutzucker regelmäßig zu überprüfen.", + "example_sentence_english": "It is important to check blood sugar regularly.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27785 + }, + { + "word": "bold", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bold", + "romanization": "bold", + "example_sentence_native": "Der Text ist in fetter Schrift (bold) gedruckt.", + "example_sentence_english": "The text is printed in bold font.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27787 + }, + { + "word": "Budapester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Budapester;from Budapest", + "romanization": "Budapester", + "example_sentence_native": "Er liebt die Budapester Küche.", + "example_sentence_english": "He loves Budapester cuisine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27789 + }, + { + "word": "bunkern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hoard", + "romanization": "bunkern", + "example_sentence_native": "Viele Leute begannen, Lebensmittel zu bunkern, als die Krise begann.", + "example_sentence_english": "Many people started to hoard food when the crisis began.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27791 + }, + { + "word": "Burgruine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "castle ruin", + "romanization": "Burgruine", + "example_sentence_native": "Wir besuchten eine alte Burgruine in den Bergen.", + "example_sentence_english": "We visited an old castle ruin in the mountains.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27792 + }, + { + "word": "Castingshow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casting show", + "romanization": "Castingshow", + "example_sentence_native": "Viele junge Talente träumen von einer Karriere durch eine Castingshow.", + "example_sentence_english": "Many young talents dream of a career through a casting show.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27796 + }, + { + "word": "Cottage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cottage", + "romanization": "Cottage", + "example_sentence_native": "Wir mieteten ein kleines Cottage am See.", + "example_sentence_english": "We rented a small cottage by the lake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27802 + }, + { + "word": "Couture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "couture", + "romanization": "Couture", + "example_sentence_native": "Die neue Kollektion zeigt exquisite Couture.", + "example_sentence_english": "The new collection displays exquisite couture.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27804 + }, + { + "word": "Deckname", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "code name", + "romanization": "Deckname", + "example_sentence_native": "Sein Deckname war \"Adler\".", + "example_sentence_english": "His code name was \"Eagle\".", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27807 + }, + { + "word": "designen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to design", + "romanization": "designen", + "example_sentence_native": "Er muss ein neues Logo designen.", + "example_sentence_english": "He has to design a new logo.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27808 + }, + { + "word": "Desinfektionsmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinfectant", + "romanization": "Desinfektionsmittel", + "example_sentence_native": "Bitte verwenden Sie Desinfektionsmittel für Ihre Hände.", + "example_sentence_english": "Please use disinfectant for your hands.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27809 + }, + { + "word": "Detektor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detector", + "romanization": "Detektor", + "example_sentence_native": "Der Detektor schlug Alarm.", + "example_sentence_english": "The detector sounded an alarm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27810 + }, + { + "word": "Dienerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female servant", + "romanization": "Dienerin", + "example_sentence_native": "Die Dienerin brachte Tee.", + "example_sentence_english": "The female servant brought tea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27811 + }, + { + "word": "Dienstleistungsunternehmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "service company", + "romanization": "Dienstleistungsunternehmen", + "example_sentence_native": "Er arbeitet für ein großes Dienstleistungsunternehmen.", + "example_sentence_english": "He works for a large service company.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27812 + }, + { + "word": "Direktkandidat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "direct candidate", + "romanization": "Direktkandidat", + "example_sentence_native": "Sie ist die Direktkandidatin für diesen Wahlkreis.", + "example_sentence_english": "She is the direct candidate for this constituency.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27813 + }, + { + "word": "Dissonanz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissonance", + "romanization": "Dissonanz", + "example_sentence_native": "Es gab eine Dissonanz zwischen ihren Aussagen.", + "example_sentence_english": "There was a dissonance between their statements.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27814 + }, + { + "word": "Drill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drill;training", + "romanization": "Drill", + "example_sentence_native": "Der tägliche Drill war anstrengend.", + "example_sentence_english": "The daily drill was exhausting.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27816 + }, + { + "word": "Drittstaat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "third country", + "romanization": "Drittstaat", + "example_sentence_native": "Waren aus Drittstaaten unterliegen Zöllen.", + "example_sentence_english": "Goods from third countries are subject to customs duties.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27817 + }, + { + "word": "durchbohren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pierce;to bore through", + "romanization": "durchbohren", + "example_sentence_native": "Er versuchte, die Wand zu durchbohren.", + "example_sentence_english": "He tried to bore through the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27818 + }, + { + "word": "Dynamit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamite", + "romanization": "Dynamit", + "example_sentence_native": "Dynamit wurde von Alfred Nobel erfunden.", + "example_sentence_english": "Dynamite was invented by Alfred Nobel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27821 + }, + { + "word": "Eckdatum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "key date;milestone date", + "romanization": "Eckdatum", + "example_sentence_native": "Das Eckdatum für die Fertigstellung des Projekts ist der 31. Dezember.", + "example_sentence_english": "The key date for the project's completion is December 31st.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27822 + }, + { + "word": "einbehalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to withhold;to retain", + "romanization": "einbehalten", + "example_sentence_native": "Der Vermieter darf einen Teil der Kaution einbehalten.", + "example_sentence_english": "The landlord is allowed to withhold part of the deposit.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "behalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27823 + }, + { + "word": "einstürzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collapse;to fall down", + "romanization": "einstürzen", + "example_sentence_native": "Das alte Gebäude drohte einzustürzen.", + "example_sentence_english": "The old building threatened to collapse.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "stürzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27824 + }, + { + "word": "einsatzfähig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operational;ready for use", + "romanization": "einsatzfähig", + "example_sentence_native": "Das neue System ist ab morgen einsatzfähig.", + "example_sentence_english": "The new system is operational from tomorrow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27825 + }, + { + "word": "Eisenbahner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway worker;railroad worker", + "romanization": "Eisenbahner", + "example_sentence_native": "Mein Großvater war ein Eisenbahner.", + "example_sentence_english": "My grandfather was a railway worker.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27826 + }, + { + "word": "Eiskunstlauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figure skating", + "romanization": "Eiskunstlauf", + "example_sentence_native": "Sie trainiert jeden Tag für den Eiskunstlauf.", + "example_sentence_english": "She trains every day for figure skating.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27827 + }, + { + "word": "Eizelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egg cell;ovum", + "romanization": "Eizelle", + "example_sentence_native": "Die Befruchtung einer Eizelle führt zur Entwicklung eines Embryos.", + "example_sentence_english": "The fertilization of an egg cell leads to the development of an embryo.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27828 + }, + { + "word": "Empfängnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conception", + "romanization": "Empfängnis", + "example_sentence_native": "Die Empfängnis ist der Beginn einer Schwangerschaft.", + "example_sentence_english": "Conception is the beginning of a pregnancy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27831 + }, + { + "word": "entleeren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to empty;to drain", + "romanization": "entleeren", + "example_sentence_native": "Bitte entleeren Sie den Mülleimer.", + "example_sentence_english": "Please empty the trash can.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27833 + }, + { + "word": "entlocken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to elicit;to coax (something out of someone)", + "romanization": "entlocken", + "example_sentence_native": "Er konnte ihr ein Lächeln entlocken.", + "example_sentence_english": "He managed to elicit a smile from her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27834 + }, + { + "word": "entstellen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disfigure;to distort", + "romanization": "entstellen", + "example_sentence_native": "Der Unfall hat sein Gesicht entstellt.", + "example_sentence_english": "The accident disfigured his face.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27835 + }, + { + "word": "Erstausgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first edition", + "romanization": "Erstausgabe", + "example_sentence_native": "Die Erstausgabe dieses Buches ist sehr wertvoll.", + "example_sentence_english": "The first edition of this book is very valuable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27837 + }, + { + "word": "Erziehungswissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "educational science;pedagogy", + "romanization": "Erziehungswissenschaft", + "example_sentence_native": "Sie studiert Erziehungswissenschaft an der Universität.", + "example_sentence_english": "She studies educational science at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27838 + }, + { + "word": "exclusive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive", + "romanization": "exclusive", + "example_sentence_native": "Das ist ein exklusives Angebot.", + "example_sentence_english": "This is an exclusive offer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27840 + }, + { + "word": "Fabelwesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythical creature", + "romanization": "Fabelwesen", + "example_sentence_native": "Einhörner sind Fabelwesen.", + "example_sentence_english": "Unicorns are mythical creatures.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27841 + }, + { + "word": "Fachwerkhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half-timbered house", + "romanization": "Fachwerkhaus", + "example_sentence_native": "Viele alte Städte haben schöne Fachwerkhäuser.", + "example_sentence_english": "Many old towns have beautiful half-timbered houses.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27842 + }, + { + "word": "Fahrwasser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairway;channel (nautical)", + "romanization": "Fahrwasser", + "example_sentence_native": "Das Schiff blieb im Fahrwasser.", + "example_sentence_english": "The ship stayed in the channel.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27843 + }, + { + "word": "Fakenews", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fake news", + "romanization": "Fakenews", + "example_sentence_native": "Man sollte vorsichtig mit Fakenews sein.", + "example_sentence_english": "One should be careful with fake news.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27844 + }, + { + "word": "Familientreffen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "family gathering", + "romanization": "Familientreffen", + "example_sentence_native": "Wir haben jedes Jahr ein großes Familientreffen.", + "example_sentence_english": "We have a big family gathering every year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27845 + }, + { + "word": "farblos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colorless", + "romanization": "farblos", + "example_sentence_native": "Wasser ist farblos.", + "example_sentence_english": "Water is colorless.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27846 + }, + { + "word": "Feinschmecker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gourmet;connoisseur", + "romanization": "Feinschmecker", + "example_sentence_native": "Er ist ein echter Feinschmecker und liebt gutes Essen.", + "example_sentence_english": "He is a true gourmet and loves good food.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27848 + }, + { + "word": "Fettnäpfchen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "faux pas;blunder", + "romanization": "Fettnäpfchen", + "example_sentence_native": "Er ist ins Fettnäpfchen getreten.", + "example_sentence_english": "He made a blunder.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27850 + }, + { + "word": "Filmaufnahme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film recording;shot", + "romanization": "Filmaufnahme", + "example_sentence_native": "Die Filmaufnahme dauerte den ganzen Tag.", + "example_sentence_english": "The film recording lasted all day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27852 + }, + { + "word": "Flussufer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "riverbank", + "romanization": "Flussufer", + "example_sentence_native": "Wir spazierten am Flussufer entlang.", + "example_sentence_english": "We walked along the riverbank.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27853 + }, + { + "word": "Folgetag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following day;next day", + "romanization": "Folgetag", + "example_sentence_native": "Die Lieferung erfolgt am Folgetag.", + "example_sentence_english": "The delivery will take place on the following day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27854 + }, + { + "word": "Formgebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "design;shaping", + "romanization": "Formgebung", + "example_sentence_native": "Die Formgebung des neuen Autos ist sehr modern.", + "example_sentence_english": "The design of the new car is very modern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27855 + }, + { + "word": "Fratze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grimace;grotesque face", + "romanization": "Fratze", + "example_sentence_native": "Er schnitt eine Fratze, um die Kinder zum Lachen zu bringen.", + "example_sentence_english": "He made a grimace to make the children laugh.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27857 + }, + { + "word": "Frauentag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Women's Day", + "romanization": "Frauentag", + "example_sentence_native": "Der Internationale Frauentag ist am 8. März.", + "example_sentence_english": "International Women's Day is on March 8th.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27858 + }, + { + "word": "Fremdenverkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tourism", + "romanization": "Fremdenverkehr", + "example_sentence_native": "Der Fremdenverkehr ist eine wichtige Einnahmequelle für die Region.", + "example_sentence_english": "Tourism is an important source of income for the region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27859 + }, + { + "word": "Führungsrolle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership role", + "romanization": "Führungsrolle", + "example_sentence_native": "Sie übernahm eine wichtige Führungsrolle im Projekt.", + "example_sentence_english": "She took on an important leadership role in the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27864 + }, + { + "word": "Gastgewerbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospitality industry", + "romanization": "Gastgewerbe", + "example_sentence_native": "Das Gastgewerbe erholt sich langsam.", + "example_sentence_english": "The hospitality industry is slowly recovering.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27867 + }, + { + "word": "Gefangennahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capture;apprehension", + "romanization": "Gefangennahme", + "example_sentence_native": "Die Gefangennahme des Täters erfolgte schnell.", + "example_sentence_english": "The capture of the perpetrator happened quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27869 + }, + { + "word": "Gefrierfach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "freezer compartment", + "romanization": "Gefrierfach", + "example_sentence_native": "Leg das Eis ins Gefrierfach.", + "example_sentence_english": "Put the ice cream in the freezer compartment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27870 + }, + { + "word": "krümmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bend;to curve", + "romanization": "krümmen", + "example_sentence_native": "Er musste sich krümmen, um unter dem Ast hindurchzukommen.", + "example_sentence_english": "He had to bend to get under the branch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27871 + }, + { + "word": "Geldmenge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money supply", + "romanization": "Geldmenge", + "example_sentence_native": "Die Zentralbank kontrolliert die Geldmenge.", + "example_sentence_english": "The central bank controls the money supply.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27872 + }, + { + "word": "Generalstab", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "general staff", + "romanization": "Generalstab", + "example_sentence_native": "Der Generalstab plante die Operation.", + "example_sentence_english": "The general staff planned the operation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27874 + }, + { + "word": "Genialität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genius;brilliance", + "romanization": "Genialität", + "example_sentence_native": "Seine Genialität war unbestreitbar.", + "example_sentence_english": "His genius was undeniable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27875 + }, + { + "word": "Gesamtleistung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "total output;overall performance", + "romanization": "Gesamtleistung", + "example_sentence_native": "Die Gesamtleistung des Teams war beeindruckend.", + "example_sentence_english": "The overall performance of the team was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27876 + }, + { + "word": "Geschäftsfeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business segment;field of business", + "romanization": "Geschäftsfeld", + "example_sentence_native": "Das Unternehmen expandiert in neue Geschäftsfelder.", + "example_sentence_english": "The company is expanding into new business segments.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27877 + }, + { + "word": "Geschäftstätigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "business activity;commercial operation", + "romanization": "Geschäftstätigkeit", + "example_sentence_native": "Die Geschäftstätigkeit wurde vorübergehend eingestellt.", + "example_sentence_english": "The business activity was temporarily suspended.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27878 + }, + { + "word": "Gesprächsthema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "topic of conversation", + "romanization": "Gesprächsthema", + "example_sentence_native": "Das Wetter ist immer ein gutes Gesprächsthema.", + "example_sentence_english": "The weather is always a good topic of conversation.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27879 + }, + { + "word": "staffeln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stagger;to grade", + "romanization": "staffeln", + "example_sentence_native": "Die Preise staffeln sich nach der Menge.", + "example_sentence_english": "The prices are graded according to quantity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27880 + }, + { + "word": "gesteigert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased;enhanced", + "romanization": "gesteigert", + "example_sentence_native": "Er zeigte ein gesteigertes Interesse an dem Thema.", + "example_sentence_english": "He showed an increased interest in the topic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27881 + }, + { + "word": "gestreift", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "striped", + "romanization": "gestreift", + "example_sentence_native": "Sie trug ein gestreiftes Hemd.", + "example_sentence_english": "She wore a striped shirt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27882 + }, + { + "word": "trimmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trim;to train", + "romanization": "trimmen", + "example_sentence_native": "Er muss seinen Bart trimmen.", + "example_sentence_english": "He needs to trim his beard.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27883 + }, + { + "word": "Gewichtsverlust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weight loss", + "romanization": "Gewichtsverlust", + "example_sentence_native": "Der Gewichtsverlust war bemerkenswert.", + "example_sentence_english": "The weight loss was remarkable.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27884 + }, + { + "word": "geübt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practiced;skilled", + "romanization": "geübt", + "example_sentence_native": "Sie ist sehr geübt im Klavierspielen.", + "example_sentence_english": "She is very skilled at playing the piano.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27885 + }, + { + "word": "Grenzgänger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "border commuter", + "romanization": "Grenzgänger", + "example_sentence_native": "Viele Grenzgänger pendeln täglich zur Arbeit.", + "example_sentence_english": "Many border commuters travel daily to work.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27886 + }, + { + "word": "Gruppenführer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group leader", + "romanization": "Gruppenführer", + "example_sentence_native": "Der Gruppenführer gab klare Anweisungen.", + "example_sentence_english": "The group leader gave clear instructions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27887 + }, + { + "word": "Gymnasiallehrer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high school teacher", + "romanization": "Gymnasiallehrer", + "example_sentence_native": "Mein Vater ist Gymnasiallehrer.", + "example_sentence_english": "My father is a high school teacher.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27888 + }, + { + "word": "Gästeliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guest list", + "romanization": "Gästeliste", + "example_sentence_native": "Stehst du auf der Gästeliste?", + "example_sentence_english": "Are you on the guest list?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27889 + }, + { + "word": "Habgier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "greed;avarice", + "romanization": "Habgier", + "example_sentence_native": "Seine Habgier kannte keine Grenzen.", + "example_sentence_english": "His greed knew no bounds.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27890 + }, + { + "word": "Habitat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "habitat", + "romanization": "Habitat", + "example_sentence_native": "Der Schutz des natürlichen Habitats ist wichtig.", + "example_sentence_english": "The protection of the natural habitat is important.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27891 + }, + { + "word": "halbherzig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "half-hearted", + "romanization": "halbherzig", + "example_sentence_native": "Er machte nur einen halbherzigen Versuch.", + "example_sentence_english": "He only made a half-hearted attempt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27893 + }, + { + "word": "Halbwertszeit", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "half-life", + "romanization": "Halbwertszeit", + "example_sentence_native": "Die Halbwertszeit des radioaktiven Materials ist sehr lang.", + "example_sentence_english": "The half-life of the radioactive material is very long.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27894 + }, + { + "word": "Handling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handling;management", + "romanization": "Handling", + "example_sentence_native": "Das Handling des neuen Geräts ist sehr einfach.", + "example_sentence_english": "The handling of the new device is very easy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27895 + }, + { + "word": "heilbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curable;treatable", + "romanization": "heilbar", + "example_sentence_native": "Glücklicherweise ist die Krankheit heilbar.", + "example_sentence_english": "Fortunately, the disease is curable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27898 + }, + { + "word": "Heizkörper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "radiator", + "romanization": "Heizkörper", + "example_sentence_native": "Der Heizkörper ist warm.", + "example_sentence_english": "The radiator is warm.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27900 + }, + { + "word": "heranführen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to introduce;to lead up to", + "romanization": "heranführen", + "example_sentence_native": "Wir müssen die Schüler langsam an das Thema heranführen.", + "example_sentence_english": "We need to slowly introduce the students to the topic.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heran", + "base_verb": "führen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27901 + }, + { + "word": "herreissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull down;to tear down", + "romanization": "herreissen", + "example_sentence_native": "Er wollte das alte Plakat von der Wand herreissen.", + "example_sentence_english": "He wanted to tear the old poster down from the wall.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "reissen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27902 + }, + { + "word": "Hochwasserschutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flood protection", + "romanization": "Hochwasserschutz", + "example_sentence_native": "Der Hochwasserschutz ist in dieser Region sehr wichtig.", + "example_sentence_english": "Flood protection is very important in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27906 + }, + { + "word": "Hochzeitskleid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedding dress", + "romanization": "Hochzeitskleid", + "example_sentence_native": "Sie suchte nach dem perfekten Hochzeitskleid.", + "example_sentence_english": "She was looking for the perfect wedding dress.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27907 + }, + { + "word": "Holzschnitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "woodcut", + "romanization": "Holzschnitt", + "example_sentence_native": "Der Künstler zeigte einen beeindruckenden Holzschnitt.", + "example_sentence_english": "The artist showed an impressive woodcut.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27909 + }, + { + "word": "Humbug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humbug;nonsense", + "romanization": "Humbug", + "example_sentence_native": "Das ist doch alles Humbug!", + "example_sentence_english": "That's all humbug!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27911 + }, + { + "word": "Hunne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hun", + "romanization": "Hunne", + "example_sentence_native": "Die Hunnen waren ein Reitervolk.", + "example_sentence_english": "The Huns were a nomadic people.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27913 + }, + { + "word": "Husar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hussar", + "romanization": "Husar", + "example_sentence_native": "Der Husar trug eine auffällige Uniform.", + "example_sentence_english": "The hussar wore a striking uniform.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27914 + }, + { + "word": "händeringend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desperately;pleadingly", + "romanization": "händeringend", + "example_sentence_native": "Er bat händeringend um Hilfe.", + "example_sentence_english": "He desperately pleaded for help.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27915 + }, + { + "word": "Höcker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hump;bump", + "romanization": "Höcker", + "example_sentence_native": "Das Kamel hat zwei Höcker.", + "example_sentence_english": "The camel has two humps.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27916 + }, + { + "word": "Independence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence", + "romanization": "Independence", + "example_sentence_native": "Das Land kämpfte für seine Independence.", + "example_sentence_english": "The country fought for its independence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27919 + }, + { + "word": "Individualismus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individualism", + "romanization": "Individualismus", + "example_sentence_native": "Der Individualismus ist in modernen Gesellschaften oft stark ausgeprägt.", + "example_sentence_english": "Individualism is often strongly pronounced in modern societies.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27920 + }, + { + "word": "Informationstechnologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "information technology", + "romanization": "Informationstechnologie", + "example_sentence_native": "Die Informationstechnologie entwickelt sich rasant.", + "example_sentence_english": "Information technology is developing rapidly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27921 + }, + { + "word": "inkognito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incognito", + "romanization": "inkognito", + "example_sentence_native": "Er reiste inkognito, um nicht erkannt zu werden.", + "example_sentence_english": "He traveled incognito so as not to be recognized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27922 + }, + { + "word": "Intensivierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensification", + "romanization": "Intensivierung", + "example_sentence_native": "Die Intensivierung der Zusammenarbeit ist notwendig.", + "example_sentence_english": "The intensification of cooperation is necessary.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27923 + }, + { + "word": "Interior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interior", + "romanization": "Interior", + "example_sentence_native": "Das Interior des Hauses war sehr modern gestaltet.", + "example_sentence_english": "The interior of the house was designed very modernly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27924 + }, + { + "word": "Israelit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Israelite", + "romanization": "Israelit", + "example_sentence_native": "Ein Israelit war auf dem Weg nach Jericho.", + "example_sentence_english": "An Israelite was on his way to Jericho.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27926 + }, + { + "word": "Jackentasche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jacket pocket", + "romanization": "Jackentasche", + "example_sentence_native": "Er steckte seine Schlüssel in die Jackentasche.", + "example_sentence_english": "He put his keys in his jacket pocket.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27928 + }, + { + "word": "jonglieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to juggle", + "romanization": "jonglieren", + "example_sentence_native": "Er kann drei Bälle gleichzeitig jonglieren.", + "example_sentence_english": "He can juggle three balls at the same time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27930 + }, + { + "word": "Kadett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cadet", + "romanization": "Kadett", + "example_sentence_native": "Der junge Kadett träumte von einer Karriere bei der Marine.", + "example_sentence_english": "The young cadet dreamed of a career in the navy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27931 + }, + { + "word": "Kammerorchester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chamber orchestra", + "romanization": "Kammerorchester", + "example_sentence_native": "Das Kammerorchester spielte eine wunderschöne Symphonie.", + "example_sentence_english": "The chamber orchestra played a beautiful symphony.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27932 + }, + { + "word": "Kampfjet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fighter jet", + "romanization": "Kampfjet", + "example_sentence_native": "Ein Kampfjet flog über die Stadt.", + "example_sentence_english": "A fighter jet flew over the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27933 + }, + { + "word": "Katalane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catalan (person)", + "romanization": "Katalane", + "example_sentence_native": "Er ist ein Katalane und spricht Katalanisch.", + "example_sentence_english": "He is a Catalan and speaks Catalan.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27934 + }, + { + "word": "Kerosin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kerosene", + "romanization": "Kerosin", + "example_sentence_native": "Flugzeuge werden mit Kerosin betrieben.", + "example_sentence_english": "Airplanes are powered by kerosene.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27937 + }, + { + "word": "Kindheitserinnerung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childhood memory", + "romanization": "Kindheitserinnerung", + "example_sentence_native": "Sie hat viele schöne Kindheitserinnerungen.", + "example_sentence_english": "She has many beautiful childhood memories.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27938 + }, + { + "word": "Kletterer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climber", + "romanization": "Kletterer", + "example_sentence_native": "Der Kletterer erreichte den Gipfel.", + "example_sentence_english": "The climber reached the summit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27940 + }, + { + "word": "Kokos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coconut (pulp;material)", + "romanization": "Kokos", + "example_sentence_native": "Ich mag den Geschmack von Kokos.", + "example_sentence_english": "I like the taste of coconut.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27941 + }, + { + "word": "Kommentierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commentary;annotation", + "romanization": "Kommentierung", + "example_sentence_native": "Die Kommentierung des Textes war sehr hilfreich.", + "example_sentence_english": "The commentary on the text was very helpful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27942 + }, + { + "word": "Kompendium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compendium", + "romanization": "Kompendium", + "example_sentence_native": "Das Kompendium bietet einen Überblick über das Thema.", + "example_sentence_english": "The compendium provides an overview of the topic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27943 + }, + { + "word": "konstituieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to constitute;to establish", + "romanization": "konstituieren", + "example_sentence_native": "Die Mitglieder konstituierten den neuen Ausschuss.", + "example_sentence_english": "The members constituted the new committee.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27945 + }, + { + "word": "konsultieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consult", + "romanization": "konsultieren", + "example_sentence_native": "Sie sollten einen Arzt konsultieren.", + "example_sentence_english": "You should consult a doctor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27946 + }, + { + "word": "krankheitsbedingt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "due to illness;illness-related", + "romanization": "krankheitsbedingt", + "example_sentence_native": "Er war krankheitsbedingt abwesend.", + "example_sentence_english": "He was absent due to illness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27948 + }, + { + "word": "Kunstprojekt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "art project", + "romanization": "Kunstprojekt", + "example_sentence_native": "Das Kunstprojekt wurde von Studenten erstellt.", + "example_sentence_english": "The art project was created by students.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27949 + }, + { + "word": "Ladestation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charging station", + "romanization": "Ladestation", + "example_sentence_native": "Wir suchten eine Ladestation für unser Elektroauto.", + "example_sentence_english": "We were looking for a charging station for our electric car.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27950 + }, + { + "word": "lahmlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to paralyze;to cripple;to shut down", + "romanization": "lahmlegen", + "example_sentence_native": "Der Streik droht, den Verkehr lahmzulegen.", + "example_sentence_english": "The strike threatens to paralyze traffic.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "lahm", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27952 + }, + { + "word": "Laktose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lactose", + "romanization": "Laktose", + "example_sentence_native": "Viele Menschen haben eine Laktoseintoleranz.", + "example_sentence_english": "Many people have a lactose intolerance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27953 + }, + { + "word": "Landespolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state politics;regional politics", + "romanization": "Landespolitik", + "example_sentence_native": "Die Landespolitik beeinflusst das tägliche Leben.", + "example_sentence_english": "State politics influences daily life.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27954 + }, + { + "word": "Laufschuh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "running shoe", + "romanization": "Laufschuh", + "example_sentence_native": "Er kaufte ein neues Paar Laufschuhe.", + "example_sentence_english": "He bought a new pair of running shoes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27955 + }, + { + "word": "Launcher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launcher", + "romanization": "Launcher", + "example_sentence_native": "Der neue Launcher verbessert die Benutzeroberfläche.", + "example_sentence_english": "The new launcher improves the user interface.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27956 + }, + { + "word": "Legionär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legionary", + "romanization": "Legionär", + "example_sentence_native": "Der römische Legionär trug eine schwere Rüstung.", + "example_sentence_english": "The Roman legionary wore heavy armor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27959 + }, + { + "word": "Lehrerzimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "staff room", + "romanization": "Lehrerzimmer", + "example_sentence_native": "Das Lehrerzimmer ist im ersten Stock.", + "example_sentence_english": "The staff room is on the first floor.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27960 + }, + { + "word": "Lehrstelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprenticeship", + "romanization": "Lehrstelle", + "example_sentence_native": "Er sucht eine Lehrstelle als Mechaniker.", + "example_sentence_english": "He is looking for an apprenticeship as a mechanic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27961 + }, + { + "word": "Lieblingsfarbe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "favorite color", + "romanization": "Lieblingsfarbe", + "example_sentence_native": "Meine Lieblingsfarbe ist Blau.", + "example_sentence_english": "My favorite color is blue.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27962 + }, + { + "word": "Liquidation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidation", + "romanization": "Liquidation", + "example_sentence_native": "Die Firma befindet sich in Liquidation.", + "example_sentence_english": "The company is in liquidation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27965 + }, + { + "word": "Megapixel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "megapixel", + "romanization": "Megapixel", + "example_sentence_native": "Die Kamera hat 20 Megapixel.", + "example_sentence_english": "The camera has 20 megapixels.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27970 + }, + { + "word": "Memorandum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "memorandum", + "romanization": "Memorandum", + "example_sentence_native": "Er verfasste ein Memorandum für die Besprechung.", + "example_sentence_english": "He drafted a memorandum for the meeting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27973 + }, + { + "word": "metallic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metallic", + "romanization": "metallic", + "example_sentence_native": "Das Auto hatte einen metallic-blauen Lack.", + "example_sentence_english": "The car had a metallic blue paint.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27975 + }, + { + "word": "metaphorisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metaphorical", + "romanization": "metaphorisch", + "example_sentence_native": "Seine Aussage war metaphorisch gemeint.", + "example_sentence_english": "His statement was meant metaphorically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27976 + }, + { + "word": "Meuterei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutiny", + "romanization": "Meuterei", + "example_sentence_native": "Die Meuterei auf der Bounty ist bekannt.", + "example_sentence_english": "The mutiny on the Bounty is well-known.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27977 + }, + { + "word": "Millionenhöhe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millions (in terms of amount)", + "romanization": "Millionenhöhe", + "example_sentence_native": "Der Schaden belief sich auf Millionenhöhe.", + "example_sentence_english": "The damage amounted to millions.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27978 + }, + { + "word": "Miner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miner", + "romanization": "Miner", + "example_sentence_native": "Der Miner arbeitete tief unter der Erde.", + "example_sentence_english": "The miner worked deep underground.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27979 + }, + { + "word": "missglückt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failed;unsuccessful", + "romanization": "missglückt", + "example_sentence_native": "Der Versuch war leider missglückt.", + "example_sentence_english": "The attempt was unfortunately unsuccessful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27980 + }, + { + "word": "Missgunst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "envy;ill will", + "romanization": "Missgunst", + "example_sentence_native": "Ihre Missgunst war offensichtlich.", + "example_sentence_english": "Her ill will was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27981 + }, + { + "word": "Modalität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "modality", + "romanization": "Modalität", + "example_sentence_native": "Die Modalität des Vertrags wurde diskutiert.", + "example_sentence_english": "The modality of the contract was discussed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27983 + }, + { + "word": "Molkerei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dairy;dairy farm", + "romanization": "Molkerei", + "example_sentence_native": "Wir kaufen frische Milch in der Molkerei.", + "example_sentence_english": "We buy fresh milk at the dairy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27985 + }, + { + "word": "monumental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monumental", + "romanization": "monumental", + "example_sentence_native": "Das Gebäude hatte eine monumentale Größe.", + "example_sentence_english": "The building had a monumental size.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27987 + }, + { + "word": "Mordversuch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attempted murder", + "romanization": "Mordversuch", + "example_sentence_native": "Er wurde wegen Mordversuchs angeklagt.", + "example_sentence_english": "He was charged with attempted murder.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27988 + }, + { + "word": "Mucke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "music (colloquial)", + "romanization": "Mucke", + "example_sentence_native": "Mach mal gute Mucke an!", + "example_sentence_english": "Put on some good music!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27991 + }, + { + "word": "Mülheimer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Mülheim;Mülheim-based", + "romanization": "Mülheimer", + "example_sentence_native": "Die Mülheimer Brücke ist bekannt.", + "example_sentence_english": "The Mülheim bridge is well-known.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27995 + }, + { + "word": "nachstellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stalk;to adjust;to recreate", + "romanization": "nachstellen", + "example_sentence_native": "Er versuchte, ihr nachzustellen.", + "example_sentence_english": "He tried to stalk her.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "stellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 27996 + }, + { + "word": "nahestehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "close;closely related;affiliated", + "romanization": "nahestehend", + "example_sentence_native": "Sie ist eine mir nahestehende Person.", + "example_sentence_english": "She is a person close to me.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 27997 + }, + { + "word": "Naturgesetz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "law of nature;natural law", + "romanization": "Naturgesetz", + "example_sentence_native": "Das ist ein Naturgesetz.", + "example_sentence_english": "That is a law of nature.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 27998 + }, + { + "word": "neunzig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ninety", + "romanization": "neunzig", + "example_sentence_native": "Ich habe neunzig Bücher.", + "example_sentence_english": "I have ninety books.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "number", + "word_frequency": 28000 + }, + { + "word": "Nuntius", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "nuncio (papal ambassador)", + "romanization": "Nuntius", + "example_sentence_native": "Der päpstliche Nuntius besuchte die Kathedrale.", + "example_sentence_english": "The papal nuncio visited the cathedral.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28005 + }, + { + "word": "Oberbegriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superordinate term;hypernym", + "romanization": "Oberbegriff", + "example_sentence_native": "\"Fahrzeug\" ist ein Oberbegriff für \"Auto\" und \"Fahrrad\".", + "example_sentence_english": "\"Vehicle\" is a superordinate term for \"car\" and \"bicycle\".", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28008 + }, + { + "word": "Observatorium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observatory", + "romanization": "Observatorium", + "example_sentence_native": "Wir besuchten das Observatorium, um die Sterne zu sehen.", + "example_sentence_english": "We visited the observatory to see the stars.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28009 + }, + { + "word": "Personenwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger car", + "romanization": "Personenwagen", + "example_sentence_native": "Der Personenwagen fuhr schnell auf der Autobahn.", + "example_sentence_english": "The passenger car drove fast on the highway.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28020 + }, + { + "word": "Pik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spade (card suit)", + "romanization": "Pik", + "example_sentence_native": "Er spielte das Pik-Ass.", + "example_sentence_english": "He played the ace of spades.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28023 + }, + { + "word": "Plagiat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plagiarism;copy", + "romanization": "Plagiat", + "example_sentence_native": "Das war ein klares Plagiat seiner Arbeit.", + "example_sentence_english": "That was a clear plagiarism of his work.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28024 + }, + { + "word": "plattdeutsch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Low German (dialect)", + "romanization": "plattdeutsch", + "example_sentence_native": "Sie spricht fließend Plattdeutsch.", + "example_sentence_english": "She speaks fluent Low German.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28025 + }, + { + "word": "Plattenfirma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record company", + "romanization": "Plattenfirma", + "example_sentence_native": "Die Band unterschrieb bei einer großen Plattenfirma.", + "example_sentence_english": "The band signed with a big record company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28026 + }, + { + "word": "Polizeigewahrsam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police custody", + "romanization": "Polizeigewahrsam", + "example_sentence_native": "Der Verdächtige wurde in Polizeigewahrsam genommen.", + "example_sentence_english": "The suspect was taken into police custody.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28027 + }, + { + "word": "Popstar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pop star", + "romanization": "Popstar", + "example_sentence_native": "Sie träumt davon, ein Popstar zu werden.", + "example_sentence_english": "She dreams of becoming a pop star.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28028 + }, + { + "word": "populistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "populist", + "romanization": "populistisch", + "example_sentence_native": "Seine Rede war sehr populistisch.", + "example_sentence_english": "His speech was very populist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28029 + }, + { + "word": "Privatmann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private individual;private citizen", + "romanization": "Privatmann", + "example_sentence_native": "Er handelte als Privatmann, nicht im Namen der Firma.", + "example_sentence_english": "He acted as a private individual, not on behalf of the company.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28032 + }, + { + "word": "Projektarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project work", + "romanization": "Projektarbeit", + "example_sentence_native": "Die Studenten müssen eine Projektarbeit einreichen.", + "example_sentence_english": "The students have to submit project work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28033 + }, + { + "word": "proklamieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to proclaim;to declare", + "romanization": "proklamieren", + "example_sentence_native": "Der König proklamierte den Frieden.", + "example_sentence_english": "The king proclaimed peace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28034 + }, + { + "word": "Präfix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prefix", + "romanization": "Präfix", + "example_sentence_native": "Das Wort hat ein Präfix.", + "example_sentence_english": "The word has a prefix.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28035 + }, + { + "word": "punktgleich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tied on points;level on points", + "romanization": "punktgleich", + "example_sentence_native": "Die beiden Teams sind punktgleich an der Spitze der Tabelle.", + "example_sentence_english": "The two teams are tied on points at the top of the table.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28036 + }, + { + "word": "Quadrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrant", + "romanization": "Quadrant", + "example_sentence_native": "Der Punkt liegt im ersten Quadranten.", + "example_sentence_english": "The point is in the first quadrant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28037 + }, + { + "word": "Radstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wheelbase", + "romanization": "Radstand", + "example_sentence_native": "Der Radstand des Autos ist sehr lang.", + "example_sentence_english": "The wheelbase of the car is very long.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28038 + }, + { + "word": "Raumordnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spatial planning", + "romanization": "Raumordnung", + "example_sentence_native": "Die Raumordnung ist wichtig für die Entwicklung einer Region.", + "example_sentence_english": "Spatial planning is important for the development of a region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28040 + }, + { + "word": "Rechtsabteilung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal department", + "romanization": "Rechtsabteilung", + "example_sentence_native": "Bitte wenden Sie sich an die Rechtsabteilung.", + "example_sentence_english": "Please contact the legal department.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28042 + }, + { + "word": "regenerativ", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regenerative", + "romanization": "regenerativ", + "example_sentence_native": "Wir brauchen mehr regenerative Energiequellen.", + "example_sentence_english": "We need more regenerative energy sources.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28043 + }, + { + "word": "regenerieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regenerate;to recover", + "romanization": "regenerieren", + "example_sentence_native": "Der Körper muss sich nach dem Sport regenerieren.", + "example_sentence_english": "The body needs to regenerate after exercise.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28044 + }, + { + "word": "Regierungstruppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "government troops", + "romanization": "Regierungstruppe", + "example_sentence_native": "Die Regierungstruppen haben die Stadt eingenommen.", + "example_sentence_english": "The government troops have captured the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28045 + }, + { + "word": "Reparaturarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repair work", + "romanization": "Reparaturarbeit", + "example_sentence_native": "Die Reparaturarbeiten dauern noch an.", + "example_sentence_english": "The repair work is still ongoing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28049 + }, + { + "word": "Reservist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reservist", + "romanization": "Reservist", + "example_sentence_native": "Er ist ein Reservist in der Armee.", + "example_sentence_english": "He is a reservist in the army.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28051 + }, + { + "word": "Rettungsgasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency lane (for emergency vehicles)", + "romanization": "Rettungsgasse", + "example_sentence_native": "Bilden Sie eine Rettungsgasse bei Stau!", + "example_sentence_english": "Form an emergency lane in a traffic jam!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28052 + }, + { + "word": "Revers", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lapel;reverse (of a coin)", + "romanization": "Revers", + "example_sentence_native": "Er trug eine Anstecknadel am Revers seines Sakkos.", + "example_sentence_english": "He wore a pin on the lapel of his jacket.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28053 + }, + { + "word": "Rodeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rodeo", + "romanization": "Rodeo", + "example_sentence_native": "Wir haben ein spannendes Rodeo besucht.", + "example_sentence_english": "We visited an exciting rodeo.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28056 + }, + { + "word": "Rücksitz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back seat", + "romanization": "Rücksitz", + "example_sentence_native": "Die Kinder sitzen auf dem Rücksitz.", + "example_sentence_english": "The children are sitting in the back seat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28057 + }, + { + "word": "sacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gentle;soft;slight", + "romanization": "sacht", + "example_sentence_native": "Sie berührte seine Hand sacht.", + "example_sentence_english": "She gently touched his hand.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28059 + }, + { + "word": "Safran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saffron", + "romanization": "Safran", + "example_sentence_native": "Safran ist ein teures Gewürz.", + "example_sentence_english": "Saffron is an expensive spice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28060 + }, + { + "word": "salben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to anoint;to salve", + "romanization": "salben", + "example_sentence_native": "Sie salbte die Wunde mit einer Heilsalbe.", + "example_sentence_english": "She salved the wound with a healing ointment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28062 + }, + { + "word": "Schimpf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproach;abuse", + "romanization": "Schimpf", + "example_sentence_native": "Er musste viel Schimpf ertragen.", + "example_sentence_english": "He had to endure much abuse.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28064 + }, + { + "word": "schluchzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sob", + "romanization": "schluchzen", + "example_sentence_native": "Das Kind begann zu schluchzen.", + "example_sentence_english": "The child began to sob.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28065 + }, + { + "word": "Schulterschluss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "close cooperation;solidarity", + "romanization": "Schulterschluss", + "example_sentence_native": "Die Parteien bildeten einen Schulterschluss.", + "example_sentence_english": "The parties formed a close cooperation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28067 + }, + { + "word": "Schweif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tail (of an animal);train (of a comet)", + "romanization": "Schweif", + "example_sentence_native": "Der Hund wedelte mit dem Schweif.", + "example_sentence_english": "The dog wagged its tail.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28068 + }, + { + "word": "Schweigeminute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minute of silence", + "romanization": "Schweigeminute", + "example_sentence_native": "Wir hielten eine Schweigeminute für die Opfer ab.", + "example_sentence_english": "We held a minute of silence for the victims.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28069 + }, + { + "word": "Schwellenland", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emerging country;developing country", + "romanization": "Schwellenland", + "example_sentence_native": "Viele Schwellenländer erleben ein starkes Wachstum.", + "example_sentence_english": "Many emerging countries are experiencing strong growth.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28070 + }, + { + "word": "schwellen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swell;to rise", + "romanization": "schwellen", + "example_sentence_native": "Sein Knöchel begann zu schwellen.", + "example_sentence_english": "His ankle began to swell.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28072 + }, + { + "word": "selbstlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selfless", + "romanization": "selbstlos", + "example_sentence_native": "Sie ist eine sehr selbstlose Person.", + "example_sentence_english": "She is a very selfless person.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28074 + }, + { + "word": "Shape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shape;form", + "romanization": "Shape", + "example_sentence_native": "Er ist in guter Shape.", + "example_sentence_english": "He is in good shape.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28076 + }, + { + "word": "Shoot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shoot (e.g.;photo shoot)", + "romanization": "Shoot", + "example_sentence_native": "Wir haben einen Fotoshoot geplant.", + "example_sentence_english": "We have planned a photo shoot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28078 + }, + { + "word": "Sinfonieorchester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symphony orchestra", + "romanization": "Sinfonieorchester", + "example_sentence_native": "Das Sinfonieorchester spielte eine wunderschöne Melodie.", + "example_sentence_english": "The symphony orchestra played a beautiful melody.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28080 + }, + { + "word": "skrupellos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unscrupulous;ruthless", + "romanization": "skrupellos", + "example_sentence_native": "Er handelte skrupellos, um seine Ziele zu erreichen.", + "example_sentence_english": "He acted unscrupulously to achieve his goals.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28081 + }, + { + "word": "Spielgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint team;playing community", + "romanization": "Spielgemeinschaft", + "example_sentence_native": "Die Spielgemeinschaft hat das Turnier gewonnen.", + "example_sentence_english": "The joint team won the tournament.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28085 + }, + { + "word": "Splash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splash", + "romanization": "Splash", + "example_sentence_native": "Der Splash im Wasser war erfrischend.", + "example_sentence_english": "The splash in the water was refreshing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28086 + }, + { + "word": "Sportschuh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sports shoe;sneaker", + "romanization": "Sportschuh", + "example_sentence_native": "Ich brauche neue Sportschuhe zum Laufen.", + "example_sentence_english": "I need new sports shoes for running.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28087 + }, + { + "word": "Spread", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spread (e.g.;financial;food)", + "romanization": "Spread", + "example_sentence_native": "Der Spread zwischen Kauf- und Verkaufspreis war gering.", + "example_sentence_english": "The spread between the buy and sell price was small.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28088 + }, + { + "word": "spröde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brittle;fragile;chapped", + "romanization": "spröde", + "example_sentence_native": "Das alte Holz war spröde und brach leicht.", + "example_sentence_english": "The old wood was brittle and broke easily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28089 + }, + { + "word": "Stadtverordneter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "city councilor;municipal representative", + "romanization": "Stadtverordneter", + "example_sentence_native": "Der Stadtverordnete sprach über die neuen Baupläne.", + "example_sentence_english": "The city councilor spoke about the new building plans.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28090 + }, + { + "word": "Stahlindustrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steel industry", + "romanization": "Stahlindustrie", + "example_sentence_native": "Die Stahlindustrie ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "The steel industry is an important economic sector.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28091 + }, + { + "word": "Standbild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statue;still image", + "romanization": "Standbild", + "example_sentence_native": "Das Standbild des Königs steht auf dem Marktplatz.", + "example_sentence_english": "The statue of the king stands in the marketplace.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28092 + }, + { + "word": "Startnummer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starting number;bib number", + "romanization": "Startnummer", + "example_sentence_native": "Jeder Läufer erhielt eine Startnummer.", + "example_sentence_english": "Every runner received a starting number.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28093 + }, + { + "word": "Steuersystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax system", + "romanization": "Steuersystem", + "example_sentence_native": "Das Steuersystem muss reformiert werden.", + "example_sentence_english": "The tax system needs to be reformed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28095 + }, + { + "word": "Stillleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "still life", + "romanization": "Stillleben", + "example_sentence_native": "Das Museum zeigte ein beeindruckendes Stillleben.", + "example_sentence_english": "The museum displayed an impressive still life.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28096 + }, + { + "word": "Storytelling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storytelling", + "romanization": "Storytelling", + "example_sentence_native": "Gutes Storytelling ist entscheidend für den Erfolg.", + "example_sentence_english": "Good storytelling is crucial for success.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28098 + }, + { + "word": "Strahlentherapie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiation therapy;radiotherapy", + "romanization": "Strahlentherapie", + "example_sentence_native": "Die Strahlentherapie ist eine Behandlungsmethode bei Krebs.", + "example_sentence_english": "Radiation therapy is a treatment method for cancer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28099 + }, + { + "word": "suchend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "searching", + "romanization": "suchend", + "example_sentence_native": "Er hatte einen suchenden Blick.", + "example_sentence_english": "He had a searching look.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28102 + }, + { + "word": "Suggestion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggestion", + "romanization": "Suggestion", + "example_sentence_native": "Ich habe eine Suggestion für dich.", + "example_sentence_english": "I have a suggestion for you.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28104 + }, + { + "word": "Sujet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subject", + "romanization": "Sujet", + "example_sentence_native": "Das Sujet des Gemäldes war sehr komplex.", + "example_sentence_english": "The subject of the painting was very complex.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28106 + }, + { + "word": "Südküste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "south coast", + "romanization": "Südküste", + "example_sentence_native": "Wir verbrachten unseren Urlaub an der Südküste.", + "example_sentence_english": "We spent our holiday on the south coast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28109 + }, + { + "word": "Tarifverhandlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collective bargaining", + "romanization": "Tarifverhandlung", + "example_sentence_native": "Die Tarifverhandlungen sind in vollem Gange.", + "example_sentence_english": "The collective bargaining negotiations are in full swing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28111 + }, + { + "word": "Testing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "testing", + "romanization": "Testing", + "example_sentence_native": "Das Testing der Software ist abgeschlossen.", + "example_sentence_english": "The testing of the software is complete.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28113 + }, + { + "word": "Thymian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thyme", + "romanization": "Thymian", + "example_sentence_native": "Ich habe frischen Thymian für das Gericht verwendet.", + "example_sentence_english": "I used fresh thyme for the dish.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28116 + }, + { + "word": "Tollwut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabies", + "romanization": "Tollwut", + "example_sentence_native": "Die Impfung gegen Tollwut ist wichtig für Haustiere.", + "example_sentence_english": "Vaccination against rabies is important for pets.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28119 + }, + { + "word": "Totem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "totem", + "romanization": "Totem", + "example_sentence_native": "Das Totem stand im Zentrum des Dorfes.", + "example_sentence_english": "The totem stood in the center of the village.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28120 + }, + { + "word": "Trainerwechsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change of coach", + "romanization": "Trainerwechsel", + "example_sentence_native": "Nach der Niederlage gab es einen Trainerwechsel.", + "example_sentence_english": "After the defeat, there was a change of coach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28122 + }, + { + "word": "Transmission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmission", + "romanization": "Transmission", + "example_sentence_native": "Die Transmission des Signals war gestört.", + "example_sentence_english": "The transmission of the signal was disturbed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28123 + }, + { + "word": "Trüffel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truffle", + "romanization": "Trüffel", + "example_sentence_native": "Sie bestellte Pasta mit Trüffel.", + "example_sentence_english": "She ordered pasta with truffle.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28125 + }, + { + "word": "tunneln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tunnel;to nutmeg", + "romanization": "tunneln", + "example_sentence_native": "Der Spieler versuchte, den Ball zu tunneln.", + "example_sentence_english": "The player tried to nutmeg the ball.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28127 + }, + { + "word": "Tücke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trick;malice;pitfall", + "romanization": "Tücke", + "example_sentence_native": "Die Tücke des Objekts ist bekannt.", + "example_sentence_english": "The trickiness of the object is well-known.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28128 + }, + { + "word": "umkreisen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to orbit;to circle", + "romanization": "umkreisen", + "example_sentence_native": "Der Satellit umkreist die Erde.", + "example_sentence_english": "The satellite orbits the Earth.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28130 + }, + { + "word": "Umtrieb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "activity;machination", + "romanization": "Umtrieb", + "example_sentence_native": "Seine Umtriebe führten zu Problemen.", + "example_sentence_english": "His machinations led to problems.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28131 + }, + { + "word": "unbeeindruckt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unimpressed", + "romanization": "unbeeindruckt", + "example_sentence_native": "Er blieb unbeeindruckt von der Kritik.", + "example_sentence_english": "He remained unimpressed by the criticism.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28132 + }, + { + "word": "unbenutzt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unused", + "romanization": "unbenutzt", + "example_sentence_native": "Das Fahrrad ist noch unbenutzt.", + "example_sentence_english": "The bicycle is still unused.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28133 + }, + { + "word": "unbesiegbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invincible", + "romanization": "unbesiegbar", + "example_sentence_native": "Der Held schien unbesiegbar zu sein.", + "example_sentence_english": "The hero seemed to be invincible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28134 + }, + { + "word": "undurchsichtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opaque;non-transparent", + "romanization": "undurchsichtig", + "example_sentence_native": "Das Glas war undurchsichtig.", + "example_sentence_english": "The glass was opaque.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28135 + }, + { + "word": "unfehlbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infallible", + "romanization": "unfehlbar", + "example_sentence_native": "Niemand ist unfehlbar.", + "example_sentence_english": "Nobody is infallible.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28136 + }, + { + "word": "ungebremst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbraked;unchecked", + "romanization": "ungebremst", + "example_sentence_native": "Der Wagen rollte ungebremst den Hügel hinunter.", + "example_sentence_english": "The car rolled unchecked down the hill.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28137 + }, + { + "word": "unveröffentlicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpublished", + "romanization": "unveröffentlicht", + "example_sentence_native": "Das Manuskript ist noch unveröffentlicht.", + "example_sentence_english": "The manuscript is still unpublished.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28139 + }, + { + "word": "verarbeitend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing;manufacturing", + "romanization": "verarbeitend", + "example_sentence_native": "Die verarbeitende Industrie ist ein wichtiger Wirtschaftszweig.", + "example_sentence_english": "The manufacturing industry is an important economic sector.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28142 + }, + { + "word": "verfrachten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ship;to transport", + "romanization": "verfrachten", + "example_sentence_native": "Die Waren müssen schnell verfrachtet werden.", + "example_sentence_english": "The goods must be shipped quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28143 + }, + { + "word": "vergeuden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to waste;to squander", + "romanization": "vergeuden", + "example_sentence_native": "Wir sollten keine Zeit vergeuden.", + "example_sentence_english": "We should not waste any time.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28144 + }, + { + "word": "Verhaltensregel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rule of conduct;behavioral rule", + "romanization": "Verhaltensregel", + "example_sentence_native": "Es gibt klare Verhaltensregeln in diesem Unternehmen.", + "example_sentence_english": "There are clear rules of conduct in this company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28146 + }, + { + "word": "verliehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awarded;lent", + "romanization": "verliehen", + "example_sentence_native": "Der verliehene Preis war eine große Ehre.", + "example_sentence_english": "The awarded prize was a great honor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28147 + }, + { + "word": "vermiesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spoil;to ruin", + "romanization": "vermiesen", + "example_sentence_native": "Lass dir den Tag nicht vermiesen!", + "example_sentence_english": "Don't let your day be spoiled!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28148 + }, + { + "word": "Verruf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disrepute;bad reputation", + "romanization": "Verruf", + "example_sentence_native": "Er ist wegen seiner Taten in Verruf geraten.", + "example_sentence_english": "He has fallen into disrepute because of his actions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28149 + }, + { + "word": "Verwaltungsgerichtshof", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Higher Administrative Court", + "romanization": "Verwaltungsgerichtshof", + "example_sentence_native": "Der Fall wurde vor dem Verwaltungsgerichtshof verhandelt.", + "example_sentence_english": "The case was heard before the Higher Administrative Court.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28150 + }, + { + "word": "verwehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blow away;to drift away", + "romanization": "verwehen", + "example_sentence_native": "Der Wind hat die Blätter verweht.", + "example_sentence_english": "The wind has blown away the leaves.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28151 + }, + { + "word": "Videoclip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video clip", + "romanization": "Videoclip", + "example_sentence_native": "Hast du den neuen Videoclip gesehen?", + "example_sentence_english": "Have you seen the new video clip?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28152 + }, + { + "word": "Volksbühne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "people's theatre", + "romanization": "Volksbühne", + "example_sentence_native": "Die Volksbühne bietet Theater für alle Schichten der Gesellschaft.", + "example_sentence_english": "The people's theatre offers theatre for all strata of society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28154 + }, + { + "word": "vollgestopft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crammed;stuffed full", + "romanization": "vollgestopft", + "example_sentence_native": "Der Koffer war vollgestopft mit Kleidung.", + "example_sentence_english": "The suitcase was crammed full of clothes.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28155 + }, + { + "word": "Vollkommenheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfection;completeness", + "romanization": "Vollkommenheit", + "example_sentence_native": "Sie strebt nach Vollkommenheit in ihrer Arbeit.", + "example_sentence_english": "She strives for perfection in her work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28156 + }, + { + "word": "Vollsperrung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complete closure;full road closure", + "romanization": "Vollsperrung", + "example_sentence_native": "Wegen Bauarbeiten gibt es eine Vollsperrung der Autobahn.", + "example_sentence_english": "Due to construction work, there is a complete closure of the highway.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28157 + }, + { + "word": "Vorbereitungszeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation time", + "romanization": "Vorbereitungszeit", + "example_sentence_native": "Wir brauchen mehr Vorbereitungszeit für das Projekt.", + "example_sentence_english": "We need more preparation time for the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28158 + }, + { + "word": "Vorgängerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female predecessor", + "romanization": "Vorgängerin", + "example_sentence_native": "Meine Vorgängerin hat hervorragende Arbeit geleistet.", + "example_sentence_english": "My female predecessor did an excellent job.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28159 + }, + { + "word": "Völkerverständigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "International understanding", + "romanization": "Völkerverständigung", + "example_sentence_native": "Die Völkerverständigung ist ein wichtiges Ziel der Vereinten Nationen.", + "example_sentence_english": "International understanding is an important goal of the United Nations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28161 + }, + { + "word": "Wahlfreiheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Freedom of choice", + "romanization": "Wahlfreiheit", + "example_sentence_native": "Jeder Bürger hat das Recht auf Wahlfreiheit.", + "example_sentence_english": "Every citizen has the right to freedom of choice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28162 + }, + { + "word": "Wanderausstellung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Traveling exhibition", + "romanization": "Wanderausstellung", + "example_sentence_native": "Die Wanderausstellung wird in mehreren Städten gezeigt.", + "example_sentence_english": "The traveling exhibition will be shown in several cities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28163 + }, + { + "word": "Wechselgeld", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Change (money)", + "romanization": "Wechselgeld", + "example_sentence_native": "Haben Sie Wechselgeld für einen Zehn-Euro-Schein?", + "example_sentence_english": "Do you have change for a ten-euro note?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28166 + }, + { + "word": "Werbeeinnahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Advertising revenue", + "romanization": "Werbeeinnahme", + "example_sentence_native": "Die Werbeeinnahmen sind in diesem Quartal gestiegen.", + "example_sentence_english": "The advertising revenues have increased this quarter.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28169 + }, + { + "word": "widerrechtlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Unlawful;illegal", + "romanization": "widerrechtlich", + "example_sentence_native": "Das war eine widerrechtliche Handlung.", + "example_sentence_english": "That was an unlawful act.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28174 + }, + { + "word": "winterlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Wintry;wintery", + "romanization": "winterlich", + "example_sentence_native": "Das Wetter ist heute sehr winterlich.", + "example_sentence_english": "The weather is very wintry today.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28176 + }, + { + "word": "Wok", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Wok", + "romanization": "Wok", + "example_sentence_native": "Ich koche gerne im Wok.", + "example_sentence_english": "I like to cook in a wok.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28177 + }, + { + "word": "wüten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rage", + "romanization": "wüten", + "example_sentence_native": "Der Sturm wütete die ganze Nacht.", + "example_sentence_english": "The storm raged all night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28181 + }, + { + "word": "Zahltag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "payday", + "romanization": "Zahltag", + "example_sentence_native": "Heute ist Zahltag, ich kann endlich meine Rechnungen bezahlen.", + "example_sentence_english": "Today is payday, I can finally pay my bills.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28183 + }, + { + "word": "zerfetzen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shred", + "romanization": "zerfetzen", + "example_sentence_native": "Der Hund hat das Kissen zerfetzt.", + "example_sentence_english": "The dog shredded the pillow.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28186 + }, + { + "word": "Zicke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female goat;bitch (slang)", + "romanization": "Zicke", + "example_sentence_native": "Die Zicke meckerte laut.", + "example_sentence_english": "The female goat bleated loudly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28188 + }, + { + "word": "zusammennehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull oneself together", + "romanization": "zusammennehmen", + "example_sentence_native": "Du musst dich zusammennehmen!", + "example_sentence_english": "You have to pull yourself together!", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zusammen", + "base_verb": "nehmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28189 + }, + { + "word": "zwanzigst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twentieth", + "romanization": "zwanzigst", + "example_sentence_native": "Das ist der zwanzigste Geburtstag.", + "example_sentence_english": "This is the twentieth birthday.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28190 + }, + { + "word": "Zweckverband", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "special purpose association", + "romanization": "Zweckverband", + "example_sentence_native": "Der Zweckverband ist für die Wasserversorgung zuständig.", + "example_sentence_english": "The special purpose association is responsible for water supply.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28191 + }, + { + "word": "zweisprachig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bilingual", + "romanization": "zweisprachig", + "example_sentence_native": "Sie wuchs zweisprachig auf.", + "example_sentence_english": "She grew up bilingual.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28192 + }, + { + "word": "zweitplatziert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "second-placed", + "romanization": "zweitplatziert", + "example_sentence_native": "Der zweitplatzierte Läufer war enttäuscht.", + "example_sentence_english": "The second-placed runner was disappointed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28193 + }, + { + "word": "Zweitstimme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "second vote (in German electoral system)", + "romanization": "Zweitstimme", + "example_sentence_native": "Die Zweitstimme entscheidet über die Sitzverteilung im Bundestag.", + "example_sentence_english": "The second vote decides on the distribution of seats in the Bundestag.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28194 + }, + { + "word": "Zünder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detonator", + "romanization": "Zünder", + "example_sentence_native": "Der Zünder wurde entschärft.", + "example_sentence_english": "The detonator was defused.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28195 + }, + { + "word": "Äbtissin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abbess", + "romanization": "Äbtissin", + "example_sentence_native": "Die Äbtissin leitete das Kloster.", + "example_sentence_english": "The abbess led the monastery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28196 + }, + { + "word": "übergreifend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overarching", + "romanization": "übergreifend", + "example_sentence_native": "Das ist ein übergreifendes Konzept.", + "example_sentence_english": "This is an overarching concept.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28198 + }, + { + "word": "überteuert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overpriced", + "romanization": "überteuert", + "example_sentence_native": "Das Hotel war völlig überteuert.", + "example_sentence_english": "The hotel was completely overpriced.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28199 + }, + { + "word": "abgesetzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposed;discontinued", + "romanization": "abgesetzt", + "example_sentence_native": "Der abgesetzte König floh aus dem Land.", + "example_sentence_english": "The deposed king fled the country.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28201 + }, + { + "word": "abschütteln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake off;to get rid of", + "romanization": "abschütteln", + "example_sentence_native": "Er konnte die Angst nicht abschütteln.", + "example_sentence_english": "He couldn't shake off the fear.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schütteln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28202 + }, + { + "word": "Absorption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absorption", + "romanization": "Absorption", + "example_sentence_native": "Die Absorption von Licht ist ein physikalischer Prozess.", + "example_sentence_english": "The absorption of light is a physical process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28203 + }, + { + "word": "Aerobic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aerobics", + "romanization": "Aerobic", + "example_sentence_native": "Sie macht jeden Morgen Aerobic.", + "example_sentence_english": "She does aerobics every morning.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28204 + }, + { + "word": "Aggregat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggregate;generator", + "romanization": "Aggregat", + "example_sentence_native": "Das Notstromaggregat sprang automatisch an.", + "example_sentence_english": "The emergency power generator started automatically.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28205 + }, + { + "word": "alternd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aging;growing old", + "romanization": "alternd", + "example_sentence_native": "Die alternde Bevölkerung stellt neue Herausforderungen dar.", + "example_sentence_english": "The aging population presents new challenges.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28208 + }, + { + "word": "Amazone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Amazon (female warrior)", + "romanization": "Amazone", + "example_sentence_native": "Die Amazone war eine mutige Kriegerin.", + "example_sentence_english": "The Amazon was a brave warrior.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28210 + }, + { + "word": "Amsel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blackbird", + "romanization": "Amsel", + "example_sentence_native": "Eine Amsel sang auf dem Baum.", + "example_sentence_english": "A blackbird sang on the tree.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28212 + }, + { + "word": "Amtseinführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inauguration;induction into office", + "romanization": "Amtseinführung", + "example_sentence_native": "Die Amtseinführung des neuen Präsidenten fand gestern statt.", + "example_sentence_english": "The inauguration of the new president took place yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28213 + }, + { + "word": "angenommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assumed;accepted;supposed", + "romanization": "angenommen", + "example_sentence_native": "Der Vorschlag wurde angenommen.", + "example_sentence_english": "The proposal was accepted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28215 + }, + { + "word": "annektieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to annex", + "romanization": "annektieren", + "example_sentence_native": "Das Land versuchte, das Nachbargebiet zu annektieren.", + "example_sentence_english": "The country tried to annex the neighboring territory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28216 + }, + { + "word": "anschalten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to switch on;to turn on", + "romanization": "anschalten", + "example_sentence_native": "Bitte schalte das Licht an.", + "example_sentence_english": "Please turn on the light.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schalten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28217 + }, + { + "word": "Antragstellung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "application submission;filing of an application", + "romanization": "Antragstellung", + "example_sentence_native": "Die Frist für die Antragstellung endet nächste Woche.", + "example_sentence_english": "The deadline for the application submission ends next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28219 + }, + { + "word": "apokalyptisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apocalyptic", + "romanization": "apokalyptisch", + "example_sentence_native": "Die Stimmung war apokalyptisch nach dem Sturm.", + "example_sentence_english": "The mood was apocalyptic after the storm.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28220 + }, + { + "word": "Appeal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeal", + "romanization": "Appeal", + "example_sentence_native": "Der Film hatte einen breiten Appeal für das Publikum.", + "example_sentence_english": "The film had a broad appeal for the audience.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28221 + }, + { + "word": "archaisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archaic", + "romanization": "archaisch", + "example_sentence_native": "Seine Ansichten sind ziemlich archaisch.", + "example_sentence_english": "His views are quite archaic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28223 + }, + { + "word": "Archivar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archivist (male)", + "romanization": "Archivar", + "example_sentence_native": "Der Archivar fand das alte Dokument.", + "example_sentence_english": "The archivist found the old document.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28224 + }, + { + "word": "Armatur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fitting;fixture;tap", + "romanization": "Armatur", + "example_sentence_native": "Die Armatur im Badezimmer tropft.", + "example_sentence_english": "The tap in the bathroom is dripping.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28225 + }, + { + "word": "Artefakt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artifact", + "romanization": "Artefakt", + "example_sentence_native": "Das Museum stellte ein seltenes Artefakt aus.", + "example_sentence_english": "The museum exhibited a rare artifact.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28226 + }, + { + "word": "aufwerfen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise (a question;issue);to throw up", + "romanization": "aufwerfen", + "example_sentence_native": "Die Diskussion wird neue Fragen aufwerfen.", + "example_sentence_english": "The discussion will raise new questions.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "werfen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28227 + }, + { + "word": "ausstrecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stretch out;to extend", + "romanization": "ausstrecken", + "example_sentence_native": "Er musste seinen Arm ausstrecken, um es zu erreichen.", + "example_sentence_english": "He had to stretch out his arm to reach it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "strecken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28228 + }, + { + "word": "Auslösung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triggering;release;activation", + "romanization": "Auslösung", + "example_sentence_native": "Die Auslösung des Alarms erfolgte automatisch.", + "example_sentence_english": "The triggering of the alarm occurred automatically.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28229 + }, + { + "word": "befangen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biased;prejudiced;conflicted", + "romanization": "befangen", + "example_sentence_native": "Der Richter wurde als befangen abgelehnt.", + "example_sentence_english": "The judge was rejected as biased.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28232 + }, + { + "word": "Befangenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bias;prejudice;conflict of interest", + "romanization": "Befangenheit", + "example_sentence_native": "Seine Befangenheit war offensichtlich.", + "example_sentence_english": "His bias was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28233 + }, + { + "word": "berauschend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intoxicating;exhilarating;thrilling", + "romanization": "berauschend", + "example_sentence_native": "Der Erfolg war ein berauschendes Gefühl.", + "example_sentence_english": "The success was an exhilarating feeling.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28235 + }, + { + "word": "Besonnenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prudence;circumspection;level-headedness", + "romanization": "Besonnenheit", + "example_sentence_native": "Er handelte mit großer Besonnenheit.", + "example_sentence_english": "He acted with great prudence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28236 + }, + { + "word": "Betreuerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female supervisor;female caregiver;female mentor", + "romanization": "Betreuerin", + "example_sentence_native": "Die Betreuerin half den Kindern bei den Hausaufgaben.", + "example_sentence_english": "The female caregiver helped the children with their homework.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28237 + }, + { + "word": "Betreuungsgeld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "childcare allowance", + "romanization": "Betreuungsgeld", + "example_sentence_native": "Das Betreuungsgeld wurde in Deutschland eingeführt.", + "example_sentence_english": "The childcare allowance was introduced in Germany.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28238 + }, + { + "word": "Bitches", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bitches", + "romanization": "Bitches", + "example_sentence_native": "Manche Leute verwenden das Wort \"Bitches\" abfällig.", + "example_sentence_english": "Some people use the word \"bitches\" disparagingly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28239 + }, + { + "word": "Blogpost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blog post", + "romanization": "Blogpost", + "example_sentence_native": "Ich habe einen interessanten Blogpost über künstliche Intelligenz gelesen.", + "example_sentence_english": "I read an interesting blog post about artificial intelligence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28240 + }, + { + "word": "Brause", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fizzy drink;shower head", + "romanization": "Brause", + "example_sentence_native": "Im Sommer trinke ich gerne eine kalte Brause.", + "example_sentence_english": "In summer, I like to drink a cold fizzy drink.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28242 + }, + { + "word": "Briefing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "briefing", + "romanization": "Briefing", + "example_sentence_native": "Vor dem Start gab es ein kurzes Briefing für das Team.", + "example_sentence_english": "Before the start, there was a short briefing for the team.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28244 + }, + { + "word": "brüchig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brittle;fragile;shaky", + "romanization": "brüchig", + "example_sentence_native": "Das alte Holz ist sehr brüchig geworden.", + "example_sentence_english": "The old wood has become very brittle.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28245 + }, + { + "word": "Bundesvereinigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Association", + "romanization": "Bundesvereinigung", + "example_sentence_native": "Die Bundesvereinigung setzt sich für den Umweltschutz ein.", + "example_sentence_english": "The Federal Association advocates for environmental protection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28247 + }, + { + "word": "Bundesverfassung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Federal Constitution", + "romanization": "Bundesverfassung", + "example_sentence_native": "Die Bundesverfassung garantiert die Grundrechte der Bürger.", + "example_sentence_english": "The Federal Constitution guarantees the fundamental rights of citizens.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28248 + }, + { + "word": "Busverkehr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bus transport", + "romanization": "Busverkehr", + "example_sentence_native": "Der Busverkehr in der Stadt ist sehr gut ausgebaut.", + "example_sentence_english": "The bus transport in the city is very well developed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28250 + }, + { + "word": "Bücherregal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookshelf", + "romanization": "Bücherregal", + "example_sentence_native": "Ich habe ein neues Bücherregal für meine Sammlung gekauft.", + "example_sentence_english": "I bought a new bookshelf for my collection.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28252 + }, + { + "word": "Clubhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clubhouse", + "romanization": "Clubhaus", + "example_sentence_native": "Nach dem Spiel trafen wir uns im Clubhaus.", + "example_sentence_english": "After the game, we met at the clubhouse.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28259 + }, + { + "word": "Curling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curling", + "romanization": "Curling", + "example_sentence_native": "Curling ist ein Wintersport, der auf Eis gespielt wird.", + "example_sentence_english": "Curling is a winter sport played on ice.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28263 + }, + { + "word": "Cycle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cycle", + "romanization": "Cycle", + "example_sentence_native": "Der Entwicklungs-Cycle der Software ist abgeschlossen.", + "example_sentence_english": "The development cycle of the software is complete.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28264 + }, + { + "word": "dahinterstecken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be behind (something);to be the reason for", + "romanization": "dahinterstecken", + "example_sentence_native": "Ich frage mich, was wirklich dahintersteckt.", + "example_sentence_english": "I wonder what's really behind it.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dahinter", + "base_verb": "stecken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28265 + }, + { + "word": "Dampflok", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steam locomotive", + "romanization": "Dampflok", + "example_sentence_native": "Die alte Dampflok fuhr langsam in den Bahnhof ein.", + "example_sentence_english": "The old steam locomotive slowly entered the station.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28266 + }, + { + "word": "Deponie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landfill;dump", + "romanization": "Deponie", + "example_sentence_native": "Der Müll wird auf der Deponie entsorgt.", + "example_sentence_english": "The waste is disposed of at the landfill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28267 + }, + { + "word": "dereinst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "one day;someday (in the future)", + "romanization": "dereinst", + "example_sentence_native": "Dereinst werden wir diese Zeiten als Geschichte betrachten.", + "example_sentence_english": "One day we will look back on these times as history.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 28268 + }, + { + "word": "Desinfektion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinfection", + "romanization": "Desinfektion", + "example_sentence_native": "Die Desinfektion der Hände ist wichtig, um Keime zu vermeiden.", + "example_sentence_english": "Hand disinfection is important to avoid germs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28269 + }, + { + "word": "dienstlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official;for business", + "romanization": "dienstlich", + "example_sentence_native": "Er ist dienstlich unterwegs.", + "example_sentence_english": "He is away on business.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28271 + }, + { + "word": "Document", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "document", + "romanization": "Document", + "example_sentence_native": "Bitte speichern Sie das Document ab.", + "example_sentence_english": "Please save the document.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28274 + }, + { + "word": "dreihundert", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "three hundred", + "romanization": "dreihundert", + "example_sentence_native": "Das Buch hat dreihundert Seiten.", + "example_sentence_english": "The book has three hundred pages.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 28276 + }, + { + "word": "Drosselung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "throttling;reduction;curtailment", + "romanization": "Drosselung", + "example_sentence_native": "Die Drosselung der Internetgeschwindigkeit war ärgerlich.", + "example_sentence_english": "The throttling of the internet speed was annoying.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28277 + }, + { + "word": "Drüse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gland", + "romanization": "Drüse", + "example_sentence_native": "Die Schilddrüse ist eine wichtige Drüse im Körper.", + "example_sentence_english": "The thyroid gland is an important gland in the body.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28278 + }, + { + "word": "dufte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great;cool;awesome", + "romanization": "dufte", + "example_sentence_native": "Das ist eine dufte Idee!", + "example_sentence_english": "That's a great idea!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28280 + }, + { + "word": "durchleuchten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to X-ray;to scrutinize", + "romanization": "durchleuchten", + "example_sentence_native": "Der Arzt wird Ihre Lunge durchleuchten.", + "example_sentence_english": "The doctor will X-ray your lungs.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28281 + }, + { + "word": "durchtrennen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut through;to sever", + "romanization": "durchtrennen", + "example_sentence_native": "Er musste das Seil durchtrennen.", + "example_sentence_english": "He had to cut through the rope.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28282 + }, + { + "word": "durchwachsen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "streaky;mixed;mediocre", + "romanization": "durchwachsen", + "example_sentence_native": "Das Ergebnis war eher durchwachsen.", + "example_sentence_english": "The result was rather mixed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28283 + }, + { + "word": "Düngung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fertilization", + "romanization": "Düngung", + "example_sentence_native": "Die Düngung des Bodens ist wichtig für gute Ernten.", + "example_sentence_english": "The fertilization of the soil is important for good harvests.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28284 + }, + { + "word": "Eigenname", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proper noun", + "romanization": "Eigenname", + "example_sentence_native": "\"Berlin\" ist ein Eigenname.", + "example_sentence_english": "\"Berlin\" is a proper noun.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28286 + }, + { + "word": "eindecken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cover;to set (a table)", + "romanization": "eindecken", + "example_sentence_native": "Bitte deck den Tisch für das Abendessen ein.", + "example_sentence_english": "Please set the table for dinner.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "decken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28287 + }, + { + "word": "einleben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to settle in;to get used to", + "romanization": "einleben", + "example_sentence_native": "Es dauert eine Weile, sich in einem neuen Land einzuleben.", + "example_sentence_english": "It takes a while to settle in a new country.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "leben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28288 + }, + { + "word": "Einheitspartei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "single party;unity party", + "romanization": "Einheitspartei", + "example_sentence_native": "In diesem Land regiert eine Einheitspartei.", + "example_sentence_english": "A single party governs in this country.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28289 + }, + { + "word": "einweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disposable;single-use", + "romanization": "einweg", + "example_sentence_native": "Wir sollten weniger Einwegprodukte verwenden.", + "example_sentence_english": "We should use fewer disposable products.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28291 + }, + { + "word": "Erbfolge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "succession;line of succession", + "romanization": "Erbfolge", + "example_sentence_native": "Die Erbfolge wurde im Testament festgelegt.", + "example_sentence_english": "The line of succession was determined in the will.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28293 + }, + { + "word": "erdrücken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crush;to overwhelm", + "romanization": "erdrücken", + "example_sentence_native": "Die Last drohte ihn zu erdrücken.", + "example_sentence_english": "The burden threatened to crush him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28294 + }, + { + "word": "erdulden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to endure;to suffer", + "romanization": "erdulden", + "example_sentence_native": "Er musste viel Leid erdulden.", + "example_sentence_english": "He had to endure much suffering.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28295 + }, + { + "word": "erhaschen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to snatch;to catch (a glimpse)", + "romanization": "erhaschen", + "example_sentence_native": "Sie konnte nur einen kurzen Blick erhaschen.", + "example_sentence_english": "She could only snatch a brief glance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28296 + }, + { + "word": "Ermutigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encouragement", + "romanization": "Ermutigung", + "example_sentence_native": "Seine Worte waren eine große Ermutigung für mich.", + "example_sentence_english": "His words were a great encouragement to me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28298 + }, + { + "word": "erschwinglich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affordable;reasonably priced", + "romanization": "erschwinglich", + "example_sentence_native": "Die Mieten in dieser Stadt sind nicht mehr erschwinglich.", + "example_sentence_english": "Rents in this city are no longer affordable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28299 + }, + { + "word": "Erweiterungsbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension building", + "romanization": "Erweiterungsbau", + "example_sentence_native": "Der neue Erweiterungsbau bietet mehr Platz für Büros.", + "example_sentence_english": "The new extension building offers more space for offices.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28300 + }, + { + "word": "Familienbeihilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "family allowance", + "romanization": "Familienbeihilfe", + "example_sentence_native": "Viele Familien sind auf die Familienbeihilfe angewiesen.", + "example_sentence_english": "Many families depend on the family allowance.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28303 + }, + { + "word": "fanatisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fanatical", + "romanization": "fanatisch", + "example_sentence_native": "Er ist ein fanatischer Fußballfan.", + "example_sentence_english": "He is a fanatical football fan.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28304 + }, + { + "word": "farbenfroh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colorful", + "romanization": "farbenfroh", + "example_sentence_native": "Die Blumen im Garten sind sehr farbenfroh.", + "example_sentence_english": "The flowers in the garden are very colorful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28305 + }, + { + "word": "Feueralarm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire alarm", + "romanization": "Feueralarm", + "example_sentence_native": "Bei einem Feueralarm müssen alle das Gebäude verlassen.", + "example_sentence_english": "In case of a fire alarm, everyone must leave the building.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28306 + }, + { + "word": "Filmchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short film", + "romanization": "Filmchen", + "example_sentence_native": "Sie hat ein lustiges Filmchen auf ihrem Handy.", + "example_sentence_english": "She has a funny short film on her phone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28308 + }, + { + "word": "Fluchtweg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "escape route", + "romanization": "Fluchtweg", + "example_sentence_native": "Der Fluchtweg muss immer freigehalten werden.", + "example_sentence_english": "The escape route must always be kept clear.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28310 + }, + { + "word": "Flugticket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flight ticket", + "romanization": "Flugticket", + "example_sentence_native": "Ich habe mein Flugticket online gebucht.", + "example_sentence_english": "I booked my flight ticket online.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28311 + }, + { + "word": "fragend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "questioning", + "romanization": "fragend", + "example_sentence_native": "Er sah sie mit einem fragenden Blick an.", + "example_sentence_english": "He looked at her with a questioning gaze.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28314 + }, + { + "word": "Freifläche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open space", + "romanization": "Freifläche", + "example_sentence_native": "Die Stadt plant, die Freifläche in einen Park umzuwandeln.", + "example_sentence_english": "The city plans to convert the open space into a park.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28316 + }, + { + "word": "freistehend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detached", + "romanization": "freistehend", + "example_sentence_native": "Sie wohnen in einem freistehenden Haus.", + "example_sentence_english": "They live in a detached house.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28317 + }, + { + "word": "Freizeitaktivität", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leisure activity", + "romanization": "Freizeitaktivität", + "example_sentence_native": "Lesen ist meine liebste Freizeitaktivität.", + "example_sentence_english": "Reading is my favorite leisure activity.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28318 + }, + { + "word": "Friedenszeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peacetime", + "romanization": "Friedenszeit", + "example_sentence_native": "In Friedenszeiten blüht die Wirtschaft auf.", + "example_sentence_english": "In peacetime, the economy flourishes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28319 + }, + { + "word": "Frontend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontend", + "romanization": "Frontend", + "example_sentence_native": "Das Frontend der Anwendung ist sehr benutzerfreundlich.", + "example_sentence_english": "The frontend of the application is very user-friendly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28320 + }, + { + "word": "Früherkennung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "early detection", + "romanization": "Früherkennung", + "example_sentence_native": "Die Früherkennung von Krankheiten ist entscheidend.", + "example_sentence_english": "The early detection of diseases is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28321 + }, + { + "word": "Führungsstil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership style", + "romanization": "Führungsstil", + "example_sentence_native": "Sein Führungsstil ist sehr kooperativ.", + "example_sentence_english": "His leadership style is very cooperative.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28322 + }, + { + "word": "Gedöns", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuss;bother;stuff", + "romanization": "Gedöns", + "example_sentence_native": "Mach nicht so ein Gedöns darum!", + "example_sentence_english": "Don't make such a fuss about it!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28324 + }, + { + "word": "gegenteilig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contrary;opposite", + "romanization": "gegenteilig", + "example_sentence_native": "Er hatte eine gegenteilige Meinung.", + "example_sentence_english": "He had a contrary opinion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28326 + }, + { + "word": "Geisterfahrer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrong-way driver", + "romanization": "Geisterfahrer", + "example_sentence_native": "Im Radio wurde vor einem Geisterfahrer gewarnt.", + "example_sentence_english": "A wrong-way driver was warned about on the radio.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28327 + }, + { + "word": "Geisteskrankheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mental illness", + "romanization": "Geisteskrankheit", + "example_sentence_native": "Geisteskrankheit ist ein ernstes Thema.", + "example_sentence_english": "Mental illness is a serious topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28328 + }, + { + "word": "Geldmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funds;financial resources", + "romanization": "Geldmittel", + "example_sentence_native": "Es fehlen die nötigen Geldmittel für das Projekt.", + "example_sentence_english": "The necessary funds for the project are missing.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28329 + }, + { + "word": "gelistet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listed", + "romanization": "gelistet", + "example_sentence_native": "Die Firma ist an der Börse gelistet.", + "example_sentence_english": "The company is listed on the stock exchange.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28330 + }, + { + "word": "Gemeinnützigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public benefit;non-profit status", + "romanization": "Gemeinnützigkeit", + "example_sentence_native": "Der Verein hat den Status der Gemeinnützigkeit.", + "example_sentence_english": "The association has non-profit status.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28331 + }, + { + "word": "nageln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nail", + "romanization": "nageln", + "example_sentence_native": "Er wird das Brett an die Wand nageln.", + "example_sentence_english": "He will nail the board to the wall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28332 + }, + { + "word": "Genussmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulants;luxury foods", + "romanization": "Genussmittel", + "example_sentence_native": "Kaffee und Tee sind beliebte Genussmittel.", + "example_sentence_english": "Coffee and tea are popular stimulants.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28333 + }, + { + "word": "Gerichtsgebäude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courthouse", + "romanization": "Gerichtsgebäude", + "example_sentence_native": "Das Gerichtsgebäude ist ein imposanter Bau.", + "example_sentence_english": "The courthouse is an imposing building.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28336 + }, + { + "word": "Geschäftsbetrieb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business operations;commercial activity", + "romanization": "Geschäftsbetrieb", + "example_sentence_native": "Der Geschäftsbetrieb wurde vorübergehend eingestellt.", + "example_sentence_english": "Business operations were temporarily suspended.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28338 + }, + { + "word": "Gestrüpp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thicket", + "romanization": "Gestrüpp", + "example_sentence_native": "Das Kind versteckte sich im dichten Gestrüpp.", + "example_sentence_english": "The child hid in the dense thicket.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28342 + }, + { + "word": "Getöse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "din", + "romanization": "Getöse", + "example_sentence_native": "Das Getöse des Sturms war ohrenbetäubend.", + "example_sentence_english": "The din of the storm was deafening.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28344 + }, + { + "word": "Gewerkschaftsbund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trade union federation", + "romanization": "Gewerkschaftsbund", + "example_sentence_native": "Der Gewerkschaftsbund forderte höhere Löhne.", + "example_sentence_english": "The trade union federation demanded higher wages.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28346 + }, + { + "word": "Gigabit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gigabit", + "romanization": "Gigabit", + "example_sentence_native": "Die Internetverbindung hat eine Geschwindigkeit von einem Gigabit pro Sekunde.", + "example_sentence_english": "The internet connection has a speed of one gigabit per second.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28348 + }, + { + "word": "grenzwertig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "borderline", + "romanization": "grenzwertig", + "example_sentence_native": "Seine Bemerkung war grenzwertig.", + "example_sentence_english": "His remark was borderline.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28353 + }, + { + "word": "griffbereit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handy", + "romanization": "griffbereit", + "example_sentence_native": "Halten Sie die Werkzeuge griffbereit.", + "example_sentence_english": "Keep the tools handy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28354 + }, + { + "word": "grimmig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grim", + "romanization": "grimmig", + "example_sentence_native": "Er sah ihn mit einem grimmigen Blick an.", + "example_sentence_english": "He looked at him with a grim gaze.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28355 + }, + { + "word": "gähnen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to yawn", + "romanization": "gähnen", + "example_sentence_native": "Er musste gähnen, weil er müde war.", + "example_sentence_english": "He had to yawn because he was tired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28359 + }, + { + "word": "haargenau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exactly;precisely", + "romanization": "haargenau", + "example_sentence_native": "Er beschrieb die Szene haargenau.", + "example_sentence_english": "He described the scene exactly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28360 + }, + { + "word": "hageln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hail", + "romanization": "hageln", + "example_sentence_native": "Es begann plötzlich zu hageln.", + "example_sentence_english": "It suddenly started to hail.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28361 + }, + { + "word": "halal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halal (permissible in Islam)", + "romanization": "halal", + "example_sentence_native": "Ist dieses Fleisch halal?", + "example_sentence_english": "Is this meat halal?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28362 + }, + { + "word": "Halbleiter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semiconductor", + "romanization": "Halbleiter", + "example_sentence_native": "Ein Computerchip enthält viele Halbleiter.", + "example_sentence_english": "A computer chip contains many semiconductors.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28363 + }, + { + "word": "hallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to echo;to resound", + "romanization": "hallen", + "example_sentence_native": "Die Stimmen hallten in der leeren Halle.", + "example_sentence_english": "The voices echoed in the empty hall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28364 + }, + { + "word": "Handfläche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm (of the hand)", + "romanization": "Handfläche", + "example_sentence_native": "Sie spürte den Regen auf ihrer Handfläche.", + "example_sentence_english": "She felt the rain on her palm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28365 + }, + { + "word": "Handgranate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hand grenade", + "romanization": "Handgranate", + "example_sentence_native": "Der Soldat warf eine Handgranate.", + "example_sentence_english": "The soldier threw a hand grenade.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28366 + }, + { + "word": "handgreiflich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physical;violent", + "romanization": "handgreiflich", + "example_sentence_native": "Die Situation wurde handgreiflich.", + "example_sentence_english": "The situation became physical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28367 + }, + { + "word": "Haselnuss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hazelnut", + "romanization": "Haselnuss", + "example_sentence_native": "Ich mag Schokolade mit Haselnüssen.", + "example_sentence_english": "I like chocolate with hazelnuts.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28368 + }, + { + "word": "Haupthaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main house", + "romanization": "Haupthaus", + "example_sentence_native": "Das Haupthaus ist das größte Gebäude auf dem Grundstück.", + "example_sentence_english": "The main house is the largest building on the property.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28369 + }, + { + "word": "Hausschuh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slipper", + "romanization": "Hausschuh", + "example_sentence_native": "Zieh deine Hausschuhe an, es ist kalt.", + "example_sentence_english": "Put on your slippers, it's cold.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28370 + }, + { + "word": "herablassend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "condescending", + "romanization": "herablassend", + "example_sentence_native": "Sein Ton war sehr herablassend.", + "example_sentence_english": "His tone was very condescending.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28372 + }, + { + "word": "Heritage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heritage", + "romanization": "Heritage", + "example_sentence_native": "Das Gebäude ist Teil des kulturellen Heritage der Stadt.", + "example_sentence_english": "The building is part of the city's cultural heritage.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28374 + }, + { + "word": "herleiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to derive;to deduce", + "romanization": "herleiten", + "example_sentence_native": "Man kann diese Regel aus den Grundprinzipien herleiten.", + "example_sentence_english": "One can derive this rule from the basic principles.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "her", + "base_verb": "leiten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28375 + }, + { + "word": "Hilfsarbeiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laborer;assistant worker", + "romanization": "Hilfsarbeiter", + "example_sentence_native": "Er begann seine Karriere als Hilfsarbeiter in der Fabrik.", + "example_sentence_english": "He started his career as a laborer in the factory.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28379 + }, + { + "word": "hitzig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heated;fiery;passionate", + "romanization": "hitzig", + "example_sentence_native": "Die Diskussion wurde hitzig.", + "example_sentence_english": "The discussion became heated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28380 + }, + { + "word": "Hochebene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plateau;high plain", + "romanization": "Hochebene", + "example_sentence_native": "Die Hochebene erstreckt sich über viele Kilometer.", + "example_sentence_english": "The plateau extends over many kilometers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28381 + }, + { + "word": "Hohlraum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavity;void;hollow space", + "romanization": "Hohlraum", + "example_sentence_native": "Es gab einen Hohlraum in der Wand.", + "example_sentence_english": "There was a cavity in the wall.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28382 + }, + { + "word": "Idiotie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idiocy;foolishness", + "romanization": "Idiotie", + "example_sentence_native": "Seine Handlungen grenzten an Idiotie.", + "example_sentence_english": "His actions bordered on idiocy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28386 + }, + { + "word": "Indoktrination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indoctrination", + "romanization": "Indoktrination", + "example_sentence_native": "Die Indoktrination der Jugend ist gefährlich.", + "example_sentence_english": "The indoctrination of the youth is dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28388 + }, + { + "word": "insolvent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insolvent", + "romanization": "insolvent", + "example_sentence_native": "Das Unternehmen wurde für insolvent erklärt.", + "example_sentence_english": "The company was declared insolvent.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28390 + }, + { + "word": "Inzidenz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incidence", + "romanization": "Inzidenz", + "example_sentence_native": "Die Inzidenz der Krankheit ist gestiegen.", + "example_sentence_english": "The incidence of the disease has increased.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28391 + }, + { + "word": "Irrenanstalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asylum;mental institution", + "romanization": "Irrenanstalt", + "example_sentence_native": "Früher wurden psychisch Kranke in Irrenanstalten untergebracht.", + "example_sentence_english": "In the past, mentally ill people were housed in asylums.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28393 + }, + { + "word": "Isländer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Icelander (male)", + "romanization": "Isländer", + "example_sentence_native": "Ein Isländer gewann den Wettbewerb.", + "example_sentence_english": "An Icelander won the competition.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28395 + }, + { + "word": "Kindermädchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nanny", + "romanization": "Kindermädchen", + "example_sentence_native": "Das Kindermädchen kümmert sich um die Kinder.", + "example_sentence_english": "The nanny takes care of the children.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28405 + }, + { + "word": "Kirchenglocke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "church bell", + "romanization": "Kirchenglocke", + "example_sentence_native": "Wir hörten die Kirchenglocke läuten.", + "example_sentence_english": "We heard the church bell ring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28406 + }, + { + "word": "Kitt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "putty", + "romanization": "Kitt", + "example_sentence_native": "Der Fensterrahmen wurde mit Kitt abgedichtet.", + "example_sentence_english": "The window frame was sealed with putty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28407 + }, + { + "word": "Kleingruppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small group", + "romanization": "Kleingruppe", + "example_sentence_native": "Wir arbeiten in einer Kleingruppe an dem Projekt.", + "example_sentence_english": "We are working on the project in a small group.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28409 + }, + { + "word": "Kleintier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small animal", + "romanization": "Kleintier", + "example_sentence_native": "Ein Kaninchen ist ein beliebtes Kleintier.", + "example_sentence_english": "A rabbit is a popular small animal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28410 + }, + { + "word": "knutschen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smooch", + "romanization": "knutschen", + "example_sentence_native": "Das junge Paar knutschte im Park.", + "example_sentence_english": "The young couple was smooching in the park.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28413 + }, + { + "word": "Kommentarfunktion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comment function", + "romanization": "Kommentarfunktion", + "example_sentence_native": "Die Kommentarfunktion unter dem Artikel ist deaktiviert.", + "example_sentence_english": "The comment function below the article is disabled.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28414 + }, + { + "word": "Konservatismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conservatism", + "romanization": "Konservatismus", + "example_sentence_native": "Der Konservatismus ist eine politische Ideologie.", + "example_sentence_english": "Conservatism is a political ideology.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28415 + }, + { + "word": "Kontor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "office (historical;commercial)", + "romanization": "Kontor", + "example_sentence_native": "Im alten Kontor wurden die Bücher geführt.", + "example_sentence_english": "The books were kept in the old office.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28416 + }, + { + "word": "konzeptionell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conceptual", + "romanization": "konzeptionell", + "example_sentence_native": "Das ist ein konzeptioneller Ansatz zur Problemlösung.", + "example_sentence_english": "This is a conceptual approach to problem-solving.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28417 + }, + { + "word": "Kreuzworträtsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossword puzzle", + "romanization": "Kreuzworträtsel", + "example_sentence_native": "Ich mache gerne Kreuzworträtsel in meiner Freizeit.", + "example_sentence_english": "I like to do crossword puzzles in my free time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28420 + }, + { + "word": "Kriegsbeginn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start of the war", + "romanization": "Kriegsbeginn", + "example_sentence_native": "Der Kriegsbeginn war ein Schock für alle.", + "example_sentence_english": "The start of the war was a shock for everyone.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28421 + }, + { + "word": "Krisenzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time of crisis", + "romanization": "Krisenzeit", + "example_sentence_native": "Wir leben in einer Krisenzeit.", + "example_sentence_english": "We are living in a time of crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28422 + }, + { + "word": "Kultus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cult;religious worship", + "romanization": "Kultus", + "example_sentence_native": "Der Kultus der alten Götter war weit verbreitet.", + "example_sentence_english": "The cult of the old gods was widespread.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28424 + }, + { + "word": "Kunstrasen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artificial turf", + "romanization": "Kunstrasen", + "example_sentence_native": "Viele Sportplätze haben heute Kunstrasen.", + "example_sentence_english": "Many sports fields today have artificial turf.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28425 + }, + { + "word": "Laderaum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cargo hold;loading space", + "romanization": "Laderaum", + "example_sentence_native": "Der Laderaum des Schiffes war voll beladen.", + "example_sentence_english": "The ship's cargo hold was fully loaded.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28427 + }, + { + "word": "Lehrjahr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprenticeship year", + "romanization": "Lehrjahr", + "example_sentence_native": "Im ersten Lehrjahr lernt man die Grundlagen.", + "example_sentence_english": "In the first apprenticeship year, one learns the basics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28430 + }, + { + "word": "Leihgabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loan;borrowed item", + "romanization": "Leihgabe", + "example_sentence_native": "Das Kunstwerk ist eine Leihgabe aus einem anderen Museum.", + "example_sentence_english": "The artwork is a loan from another museum.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28431 + }, + { + "word": "leistungsstark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerful;high-performance", + "romanization": "leistungsstark", + "example_sentence_native": "Dieser Motor ist sehr leistungsstark.", + "example_sentence_english": "This engine is very powerful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28432 + }, + { + "word": "Leugnung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denial", + "romanization": "Leugnung", + "example_sentence_native": "Seine Leugnung der Tatsachen war offensichtlich.", + "example_sentence_english": "His denial of the facts was obvious.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28434 + }, + { + "word": "lieblos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loveless;uncaring;perfunctory", + "romanization": "lieblos", + "example_sentence_native": "Er erledigte die Aufgabe lieblos und schnell.", + "example_sentence_english": "He completed the task carelessly and quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28435 + }, + { + "word": "Linksextremist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "left-wing extremist", + "romanization": "Linksextremist", + "example_sentence_native": "Die Polizei überwacht bekannte Linksextremisten.", + "example_sentence_english": "The police monitor known left-wing extremists.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28436 + }, + { + "word": "lobend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praising;commendatory", + "romanization": "lobend", + "example_sentence_native": "Er sprach lobende Worte über ihre Arbeit.", + "example_sentence_english": "He spoke praising words about her work.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28437 + }, + { + "word": "Lutscher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lollipop", + "romanization": "Lutscher", + "example_sentence_native": "Das Kind isst einen Lutscher.", + "example_sentence_english": "The child is eating a lollipop.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28441 + }, + { + "word": "Lärmbelästigung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noise nuisance", + "romanization": "Lärmbelästigung", + "example_sentence_native": "Die Lärmbelästigung durch den Bau ist unerträglich.", + "example_sentence_english": "The noise nuisance from the construction is unbearable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28443 + }, + { + "word": "Maure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Moor", + "romanization": "Maure", + "example_sentence_native": "Die Mauren herrschten lange Zeit in Spanien.", + "example_sentence_english": "The Moors ruled in Spain for a long time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28448 + }, + { + "word": "Mehrarbeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overtime", + "romanization": "Mehrarbeit", + "example_sentence_native": "Er musste gestern viel Mehrarbeit leisten.", + "example_sentence_english": "He had to do a lot of overtime yesterday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28449 + }, + { + "word": "Migrantin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female migrant", + "romanization": "Migrantin", + "example_sentence_native": "Die neue Migrantin lernt schnell Deutsch.", + "example_sentence_english": "The new female migrant is learning German quickly.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28451 + }, + { + "word": "Mindestalter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimum age", + "romanization": "Mindestalter", + "example_sentence_native": "Das Mindestalter für den Führerschein ist 17 Jahre.", + "example_sentence_english": "The minimum age for the driving license is 17 years.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28454 + }, + { + "word": "Mitgliedsbeitrag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "membership fee", + "romanization": "Mitgliedsbeitrag", + "example_sentence_native": "Der jährliche Mitgliedsbeitrag ist im Januar fällig.", + "example_sentence_english": "The annual membership fee is due in January.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28457 + }, + { + "word": "Mixtur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixture", + "romanization": "Mixtur", + "example_sentence_native": "Der Apotheker bereitete eine Mixtur für den Patienten zu.", + "example_sentence_english": "The pharmacist prepared a mixture for the patient.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28458 + }, + { + "word": "Mobilmachung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mobilization", + "romanization": "Mobilmachung", + "example_sentence_native": "Die Mobilmachung der Truppen wurde angeordnet.", + "example_sentence_english": "The mobilization of the troops was ordered.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28459 + }, + { + "word": "Mole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pier", + "romanization": "Mole", + "example_sentence_native": "Wir gingen am Abend entlang der Mole spazieren.", + "example_sentence_english": "We walked along the pier in the evening.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28460 + }, + { + "word": "Morphium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morphine", + "romanization": "Morphium", + "example_sentence_native": "Der Patient erhielt Morphium zur Schmerzlinderung.", + "example_sentence_english": "The patient received morphine for pain relief.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28462 + }, + { + "word": "Multiplikation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiplication", + "romanization": "Multiplikation", + "example_sentence_native": "Die Multiplikation ist eine der vier Grundrechenarten.", + "example_sentence_english": "Multiplication is one of the four basic arithmetic operations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28465 + }, + { + "word": "Mäzen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patron", + "romanization": "Mäzen", + "example_sentence_native": "Der reiche Mäzen unterstützte viele junge Künstler.", + "example_sentence_english": "The rich patron supported many young artists.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28466 + }, + { + "word": "nachbauen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reconstruct", + "romanization": "nachbauen", + "example_sentence_native": "Wir wollen das alte Schloss originalgetreu nachbauen.", + "example_sentence_english": "We want to reconstruct the old castle true to the original.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "bauen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28467 + }, + { + "word": "nachgewiesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proven", + "romanization": "nachgewiesen", + "example_sentence_native": "Die Wirksamkeit des Medikaments ist klinisch nachgewiesen.", + "example_sentence_english": "The effectiveness of the medication is clinically proven.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28468 + }, + { + "word": "nahelegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suggest", + "romanization": "nahelegen", + "example_sentence_native": "Seine Worte scheinen eine bestimmte Absicht nahelegen zu wollen.", + "example_sentence_english": "His words seem to want to suggest a certain intention.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nahe", + "base_verb": "legen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28469 + }, + { + "word": "Naturschützer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservationist", + "romanization": "Naturschützer", + "example_sentence_native": "Die Naturschützer kämpfen für den Erhalt des Regenwaldes.", + "example_sentence_english": "The conservationists are fighting for the preservation of the rainforest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28470 + }, + { + "word": "Nelke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnation", + "romanization": "Nelke", + "example_sentence_native": "Sie pflanzte rote Nelken in ihren Garten.", + "example_sentence_english": "She planted red carnations in her garden.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28471 + }, + { + "word": "Neubearbeitung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revision", + "romanization": "Neubearbeitung", + "example_sentence_native": "Das Buch ist in einer neuen Neubearbeitung erschienen.", + "example_sentence_english": "The book has been published in a new revision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28472 + }, + { + "word": "neunzehn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nineteen", + "romanization": "neunzehn", + "example_sentence_native": "Sie ist neunzehn Jahre alt.", + "example_sentence_english": "She is nineteen years old.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "numeral", + "word_frequency": 28474 + }, + { + "word": "Newsroom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newsroom", + "romanization": "Newsroom", + "example_sentence_native": "Im Newsroom herrschte hektische Betriebsamkeit.", + "example_sentence_english": "There was hectic activity in the newsroom.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28475 + }, + { + "word": "Nothilfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergency aid", + "romanization": "Nothilfe", + "example_sentence_native": "Die Organisation leistet Nothilfe in Katastrophengebieten.", + "example_sentence_english": "The organization provides emergency aid in disaster areas.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28479 + }, + { + "word": "Nutzlast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "payload", + "romanization": "Nutzlast", + "example_sentence_native": "Die Rakete kann eine Nutzlast von mehreren Tonnen tragen.", + "example_sentence_english": "The rocket can carry a payload of several tons.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28481 + }, + { + "word": "Oberlehrer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "senior teacher", + "romanization": "Oberlehrer", + "example_sentence_native": "Der Oberlehrer korrigierte jeden kleinen Fehler.", + "example_sentence_english": "The senior teacher corrected every small mistake.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28482 + }, + { + "word": "Ordination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doctor's office", + "romanization": "Ordination", + "example_sentence_native": "Die Ordination des Arztes ist von 9 bis 17 Uhr geöffnet.", + "example_sentence_english": "The doctor's office is open from 9 AM to 5 PM.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28485 + }, + { + "word": "oriental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oriental", + "romanization": "oriental", + "example_sentence_native": "Sie bewundert die orientalische Kunst.", + "example_sentence_english": "She admires oriental art.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28486 + }, + { + "word": "Osterei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Easter egg", + "romanization": "Osterei", + "example_sentence_native": "Die Kinder suchen die Ostereier im Garten.", + "example_sentence_english": "The children are looking for the Easter eggs in the garden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28488 + }, + { + "word": "Paragraf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paragraph", + "romanization": "Paragraf", + "example_sentence_native": "Bitte lesen Sie den ersten Paragrafen des Dokuments.", + "example_sentence_english": "Please read the first paragraph of the document.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28490 + }, + { + "word": "Pattern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pattern", + "romanization": "Pattern", + "example_sentence_native": "Das Kleid hat ein schönes Blumen-Pattern.", + "example_sentence_english": "The dress has a beautiful floral pattern.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28491 + }, + { + "word": "personalisiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personalized", + "romanization": "personalisiert", + "example_sentence_native": "Sie erhielt ein personalisiertes Geschenk.", + "example_sentence_english": "She received a personalized gift.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28492 + }, + { + "word": "perspektivisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perspectival", + "romanization": "perspektivisch", + "example_sentence_native": "Wir müssen die Situation perspektivisch betrachten.", + "example_sentence_english": "We must consider the situation from a perspectival view.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28493 + }, + { + "word": "Polizeiauto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police car", + "romanization": "Polizeiauto", + "example_sentence_native": "Ein Polizeiauto fuhr mit Blaulicht vorbei.", + "example_sentence_english": "A police car drove by with flashing lights.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28498 + }, + { + "word": "prachtvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnificent", + "romanization": "prachtvoll", + "example_sentence_native": "Das Schloss war ein prachtvoller Anblick.", + "example_sentence_english": "The castle was a magnificent sight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28499 + }, + { + "word": "Presseerklärung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press release", + "romanization": "Presseerklärung", + "example_sentence_native": "Die Firma gab eine Presseerklärung heraus.", + "example_sentence_english": "The company issued a press release.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28501 + }, + { + "word": "Probetraining", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trial training session", + "romanization": "Probetraining", + "example_sentence_native": "Ich habe heute ein Probetraining im Fitnessstudio.", + "example_sentence_english": "I have a trial training session at the gym today.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28502 + }, + { + "word": "Produktentwicklung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "product development", + "romanization": "Produktentwicklung", + "example_sentence_native": "Die Produktentwicklung ist ein wichtiger Teil des Unternehmens.", + "example_sentence_english": "Product development is an important part of the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28503 + }, + { + "word": "Prohibition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prohibition", + "romanization": "Prohibition", + "example_sentence_native": "Die Prohibition von Alkohol führte zu vielen Problemen.", + "example_sentence_english": "The prohibition of alcohol led to many problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28504 + }, + { + "word": "Projektgruppe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project group", + "romanization": "Projektgruppe", + "example_sentence_native": "Die Projektgruppe trifft sich jeden Dienstag.", + "example_sentence_english": "The project group meets every Tuesday.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28505 + }, + { + "word": "randalieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to riot;to rampage", + "romanization": "randalieren", + "example_sentence_native": "Die Fans begannen nach dem Spiel zu randalieren.", + "example_sentence_english": "The fans started to riot after the game.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28507 + }, + { + "word": "Rauschgift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcotic;illicit drug", + "romanization": "Rauschgift", + "example_sentence_native": "Der Handel mit Rauschgift ist streng verboten.", + "example_sentence_english": "Trading in narcotics is strictly forbidden.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28510 + }, + { + "word": "Realist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "realist", + "romanization": "Realist", + "example_sentence_native": "Er ist ein Realist und sieht die Dinge, wie sie sind.", + "example_sentence_english": "He is a realist and sees things as they are.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28511 + }, + { + "word": "Realschulabschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secondary school leaving certificate (from a Realschule)", + "romanization": "Realschulabschluss", + "example_sentence_native": "Nach dem Realschulabschluss kann man eine Ausbildung beginnen.", + "example_sentence_english": "After obtaining the secondary school leaving certificate, one can start an apprenticeship.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28512 + }, + { + "word": "Rebound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebound", + "romanization": "Rebound", + "example_sentence_native": "Der Spieler holte den Rebound unter dem Korb.", + "example_sentence_english": "The player got the rebound under the basket.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28513 + }, + { + "word": "Reiniger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleaner (substance or person)", + "romanization": "Reiniger", + "example_sentence_native": "Dieser Reiniger entfernt alle Flecken.", + "example_sentence_english": "This cleaner removes all stains.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28516 + }, + { + "word": "reklamieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complain;to claim;to reclaim", + "romanization": "reklamieren", + "example_sentence_native": "Ich musste das defekte Produkt reklamieren.", + "example_sentence_english": "I had to complain about the defective product.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28517 + }, + { + "word": "renoviert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renovated", + "romanization": "renoviert", + "example_sentence_native": "Die Wohnung ist frisch renoviert.", + "example_sentence_english": "The apartment is freshly renovated.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28518 + }, + { + "word": "Request", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "request", + "romanization": "Request", + "example_sentence_native": "Der Request wurde erfolgreich bearbeitet.", + "example_sentence_english": "The request was processed successfully.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28520 + }, + { + "word": "Residence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residence", + "romanization": "Residence", + "example_sentence_native": "Die alte Residence des Königs ist jetzt ein Museum.", + "example_sentence_english": "The old residence of the king is now a museum.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28521 + }, + { + "word": "revolutionieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revolutionize", + "romanization": "revolutionieren", + "example_sentence_native": "Neue Technologien können die Industrie revolutionieren.", + "example_sentence_english": "New technologies can revolutionize the industry.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28522 + }, + { + "word": "riesengross", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gigantic;enormous", + "romanization": "riesengross", + "example_sentence_native": "Der Elefant war riesengross.", + "example_sentence_english": "The elephant was gigantic.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28524 + }, + { + "word": "Rotlicht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "red light", + "romanization": "Rotlicht", + "example_sentence_native": "Das Auto hielt am Rotlicht an.", + "example_sentence_english": "The car stopped at the red light.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28527 + }, + { + "word": "ruckzuck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a flash;quickly", + "romanization": "ruckzuck", + "example_sentence_native": "Das Problem war ruckzuck gelöst.", + "example_sentence_english": "The problem was solved in a flash.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28529 + }, + { + "word": "runterfahren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shut down;to calm down", + "romanization": "runterfahren", + "example_sentence_native": "Bitte fahren Sie den Computer herunter.", + "example_sentence_english": "Please shut down the computer.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "runter", + "base_verb": "fahren", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28530 + }, + { + "word": "Rächer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avenger", + "romanization": "Rächer", + "example_sentence_native": "Der Rächer kämpfte für Gerechtigkeit.", + "example_sentence_english": "The avenger fought for justice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28531 + }, + { + "word": "räubern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rob;to plunder", + "romanization": "räubern", + "example_sentence_native": "Die Piraten räuberten das Schiff.", + "example_sentence_english": "The pirates plundered the ship.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28532 + }, + { + "word": "Rückenmark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spinal cord", + "romanization": "Rückenmark", + "example_sentence_native": "Eine Verletzung des Rückenmarks kann schwerwiegend sein.", + "example_sentence_english": "An injury to the spinal cord can be severe.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28533 + }, + { + "word": "Rückschau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retrospect;review", + "romanization": "Rückschau", + "example_sentence_native": "In der Rückschau war es eine gute Entscheidung.", + "example_sentence_english": "In retrospect, it was a good decision.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28534 + }, + { + "word": "Salbei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sage", + "romanization": "Salbei", + "example_sentence_native": "Salbei wird oft in der Küche verwendet.", + "example_sentence_english": "Sage is often used in cooking.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28536 + }, + { + "word": "Sandstrand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sandy beach", + "romanization": "Sandstrand", + "example_sentence_native": "Wir verbrachten den Tag am Sandstrand.", + "example_sentence_english": "We spent the day at the sandy beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28537 + }, + { + "word": "sanitär", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanitary;plumbing", + "romanization": "sanitär", + "example_sentence_native": "Die sanitären Anlagen waren sehr sauber.", + "example_sentence_english": "The sanitary facilities were very clean.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28538 + }, + { + "word": "Schienennetz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rail network", + "romanization": "Schienennetz", + "example_sentence_native": "Das Schienennetz in Deutschland ist sehr gut ausgebaut.", + "example_sentence_english": "The rail network in Germany is very well developed.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28539 + }, + { + "word": "schlagfertig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quick-witted", + "romanization": "schlagfertig", + "example_sentence_native": "Er ist bekannt für seine schlagfertigen Antworten.", + "example_sentence_english": "He is known for his quick-witted answers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28540 + }, + { + "word": "Schlagstock", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baton", + "romanization": "Schlagstock", + "example_sentence_native": "Die Polizei fand einen Schlagstock im Auto.", + "example_sentence_english": "The police found a baton in the car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28541 + }, + { + "word": "Schmerzgrenze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pain threshold", + "romanization": "Schmerzgrenze", + "example_sentence_native": "Er hat eine hohe Schmerzgrenze.", + "example_sentence_english": "He has a high pain threshold.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28542 + }, + { + "word": "Schmuggel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggling", + "romanization": "Schmuggel", + "example_sentence_native": "Der Schmuggel von Drogen ist ein ernstes Verbrechen.", + "example_sentence_english": "The smuggling of drugs is a serious crime.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28543 + }, + { + "word": "Schornsteinfeger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chimney sweep", + "romanization": "Schornsteinfeger", + "example_sentence_native": "Der Schornsteinfeger brachte Glück.", + "example_sentence_english": "The chimney sweep brought good luck.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28544 + }, + { + "word": "Schraubenzieher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screwdriver", + "romanization": "Schraubenzieher", + "example_sentence_native": "Ich brauche einen Schraubenzieher, um das zu reparieren.", + "example_sentence_english": "I need a screwdriver to fix that.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28545 + }, + { + "word": "schummeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheat", + "romanization": "schummeln", + "example_sentence_native": "Es ist nicht erlaubt, bei der Prüfung zu schummeln.", + "example_sentence_english": "It is not allowed to cheat on the exam.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28546 + }, + { + "word": "Seitenhieb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dig", + "romanization": "Seitenhieb", + "example_sentence_native": "Er konnte sich einen Seitenhieb nicht verkneifen.", + "example_sentence_english": "He couldn't resist a dig.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28547 + }, + { + "word": "seitig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "-sided", + "romanization": "seitig", + "example_sentence_native": "Das ist eine einseitige Ansicht.", + "example_sentence_english": "That is a one-sided view.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28548 + }, + { + "word": "Selbsthass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-hatred", + "romanization": "Selbsthass", + "example_sentence_native": "Er kämpfte mit Gefühlen des Selbsthasses.", + "example_sentence_english": "He struggled with feelings of self-hatred.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28549 + }, + { + "word": "Serviette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "napkin", + "romanization": "Serviette", + "example_sentence_native": "Kannst du mir bitte eine Serviette geben?", + "example_sentence_english": "Can you please give me a napkin?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28552 + }, + { + "word": "Seufzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sigh", + "romanization": "Seufzer", + "example_sentence_native": "Sie stieß einen tiefen Seufzer aus.", + "example_sentence_english": "She let out a deep sigh.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28553 + }, + { + "word": "Sexanzeige", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sex ad", + "romanization": "Sexanzeige", + "example_sentence_native": "Er fand die Sexanzeige in der Zeitung.", + "example_sentence_english": "He found the sex ad in the newspaper.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28554 + }, + { + "word": "Sexdate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sex date", + "romanization": "Sexdate", + "example_sentence_native": "Sie hatte ein Sexdate vereinbart.", + "example_sentence_english": "She arranged a sex date.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28555 + }, + { + "word": "Sitzverteilung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seat distribution", + "romanization": "Sitzverteilung", + "example_sentence_native": "Die Sitzverteilung im Parlament wurde bekannt gegeben.", + "example_sentence_english": "The seat distribution in parliament was announced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28562 + }, + { + "word": "Skiurlaub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ski holiday", + "romanization": "Skiurlaub", + "example_sentence_native": "Wir planen unseren nächsten Skiurlaub in den Alpen.", + "example_sentence_english": "We are planning our next ski holiday in the Alps.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28563 + }, + { + "word": "Sonnenenergie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar energy", + "romanization": "Sonnenenergie", + "example_sentence_native": "Sonnenenergie ist eine wichtige erneuerbare Energiequelle.", + "example_sentence_english": "Solar energy is an important renewable energy source.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28566 + }, + { + "word": "Sozialgericht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social court", + "romanization": "Sozialgericht", + "example_sentence_native": "Er hat Klage beim Sozialgericht eingereicht.", + "example_sentence_english": "He filed a lawsuit with the social court.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28567 + }, + { + "word": "Sozialverhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social behavior", + "romanization": "Sozialverhalten", + "example_sentence_native": "Das Sozialverhalten von Kindern entwickelt sich im Laufe der Zeit.", + "example_sentence_english": "Children's social behavior develops over time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28568 + }, + { + "word": "sozialwissenschaftlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social scientific", + "romanization": "sozialwissenschaftlich", + "example_sentence_native": "Sie führt eine sozialwissenschaftliche Studie durch.", + "example_sentence_english": "She is conducting a social scientific study.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28569 + }, + { + "word": "Spange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clip;brace", + "romanization": "Spange", + "example_sentence_native": "Sie trägt eine Zahnspange.", + "example_sentence_english": "She wears dental braces.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28571 + }, + { + "word": "Spielmannszug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marching band (with fifes and drums)", + "romanization": "Spielmannszug", + "example_sentence_native": "Der Spielmannszug führte den Umzug an.", + "example_sentence_english": "The marching band led the parade.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28573 + }, + { + "word": "Springbrunnen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fountain", + "romanization": "Springbrunnen", + "example_sentence_native": "Im Park gibt es einen schönen Springbrunnen.", + "example_sentence_english": "There is a beautiful fountain in the park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28576 + }, + { + "word": "Stammstrecke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main line", + "romanization": "Stammstrecke", + "example_sentence_native": "Die Stammstrecke ist wegen Bauarbeiten gesperrt.", + "example_sentence_english": "The main line is closed due to construction work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28580 + }, + { + "word": "Stieftochter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepdaughter", + "romanization": "Stieftochter", + "example_sentence_native": "Meine Stieftochter besucht uns am Wochenende.", + "example_sentence_english": "My stepdaughter is visiting us this weekend.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28582 + }, + { + "word": "stillgelegt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decommissioned", + "romanization": "stillgelegt", + "example_sentence_native": "Die alte Fabrik wurde stillgelegt.", + "example_sentence_english": "The old factory was decommissioned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28583 + }, + { + "word": "Strafprozess", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal trial", + "romanization": "Strafprozess", + "example_sentence_native": "Der Strafprozess dauerte mehrere Wochen.", + "example_sentence_english": "The criminal trial lasted several weeks.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28584 + }, + { + "word": "Streu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "litter", + "romanization": "Streu", + "example_sentence_native": "Die Katze braucht frische Streu in ihrem Klo.", + "example_sentence_english": "The cat needs fresh litter in its box.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28585 + }, + { + "word": "Striptease", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striptease", + "romanization": "Striptease", + "example_sentence_native": "Er sah einen Striptease in der Bar.", + "example_sentence_english": "He saw a striptease in the bar.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28586 + }, + { + "word": "Stuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense", + "romanization": "Stuss", + "example_sentence_native": "Rede keinen Stuss!", + "example_sentence_english": "Don't talk nonsense!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28587 + }, + { + "word": "Symptomatik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symptomatology", + "romanization": "Symptomatik", + "example_sentence_native": "Die Symptomatik der Krankheit ist sehr vielfältig.", + "example_sentence_english": "The symptomatology of the disease is very diverse.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28588 + }, + { + "word": "Tagespresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily press", + "romanization": "Tagespresse", + "example_sentence_native": "Die Tagespresse berichtete ausführlich über das Ereignis.", + "example_sentence_english": "The daily press reported extensively on the event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28590 + }, + { + "word": "Tatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tartar", + "romanization": "Tatar", + "example_sentence_native": "Er bestellte ein Tatar im Restaurant.", + "example_sentence_english": "He ordered a Tartar at the restaurant.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28592 + }, + { + "word": "tauern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to linger", + "romanization": "tauern", + "example_sentence_native": "Er tauert oft im Garten herum.", + "example_sentence_english": "He often lingers around in the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28593 + }, + { + "word": "Trace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trace", + "romanization": "Trace", + "example_sentence_native": "Die Trace des Signals war schwer zu finden.", + "example_sentence_english": "The trace of the signal was hard to find.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28596 + }, + { + "word": "transformieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transform", + "romanization": "transformieren", + "example_sentence_native": "Die Raupe wird sich in einen Schmetterling transformieren.", + "example_sentence_english": "The caterpillar will transform into a butterfly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28597 + }, + { + "word": "Transponder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transponder", + "romanization": "Transponder", + "example_sentence_native": "Der Transponder sendet ein Signal.", + "example_sentence_english": "The transponder sends a signal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28598 + }, + { + "word": "Triebwagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "railcar", + "romanization": "Triebwagen", + "example_sentence_native": "Der Triebwagen fuhr pünktlich ab.", + "example_sentence_english": "The railcar departed on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28599 + }, + { + "word": "Troika", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troika (group of three)", + "romanization": "Troika", + "example_sentence_native": "Die Troika traf sich, um die Krise zu besprechen.", + "example_sentence_english": "The troika met to discuss the crisis.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28600 + }, + { + "word": "Tross", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baggage train;retinue", + "romanization": "Tross", + "example_sentence_native": "Der Tross folgte der Armee durch das schwierige Gelände.", + "example_sentence_english": "The baggage train followed the army through the difficult terrain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28601 + }, + { + "word": "trügen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deceive;to mislead", + "romanization": "trügen", + "example_sentence_native": "Der Schein kann trügen.", + "example_sentence_english": "Appearances can be deceiving.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28602 + }, + { + "word": "Uigure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Uyghur (person)", + "romanization": "Uigure", + "example_sentence_native": "Die Uiguren leben hauptsächlich in Zentralasien.", + "example_sentence_english": "The Uyghurs mainly live in Central Asia.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28605 + }, + { + "word": "unangefochten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undisputed;unchallenged", + "romanization": "unangefochten", + "example_sentence_native": "Er ist der unangefochtene Meister in dieser Disziplin.", + "example_sentence_english": "He is the undisputed master in this discipline.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28606 + }, + { + "word": "unbeaufsichtigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsupervised;unattended", + "romanization": "unbeaufsichtigt", + "example_sentence_native": "Lassen Sie Kinder niemals unbeaufsichtigt.", + "example_sentence_english": "Never leave children unsupervised.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28607 + }, + { + "word": "unbestreitbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeniable;indisputable", + "romanization": "unbestreitbar", + "example_sentence_native": "Es ist unbestreitbar, dass er Recht hat.", + "example_sentence_english": "It is undeniable that he is right.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28608 + }, + { + "word": "unerklärlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexplicable;unexplainable", + "romanization": "unerklärlich", + "example_sentence_native": "Das Phänomen blieb unerklärlich.", + "example_sentence_english": "The phenomenon remained inexplicable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28609 + }, + { + "word": "ungerechtfertigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustified;unwarranted", + "romanization": "ungerechtfertigt", + "example_sentence_native": "Die Kritik war völlig ungerechtfertigt.", + "example_sentence_english": "The criticism was completely unjustified.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28610 + }, + { + "word": "Unterschlagung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embezzlement;misappropriation", + "romanization": "Unterschlagung", + "example_sentence_native": "Er wurde wegen Unterschlagung angeklagt.", + "example_sentence_english": "He was accused of embezzlement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28612 + }, + { + "word": "unterstützend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supportive;assisting", + "romanization": "unterstützend", + "example_sentence_native": "Sie leistete unterstützende Arbeit im Projekt.", + "example_sentence_english": "She provided supportive work in the project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28613 + }, + { + "word": "Unterweisung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instruction;teaching", + "romanization": "Unterweisung", + "example_sentence_native": "Die Unterweisung der neuen Mitarbeiter dauerte eine Woche.", + "example_sentence_english": "The instruction of the new employees lasted a week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28614 + }, + { + "word": "unwillkürlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involuntary;spontaneous", + "romanization": "unwillkürlich", + "example_sentence_native": "Er zuckte unwillkürlich zusammen.", + "example_sentence_english": "He flinched involuntarily.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28615 + }, + { + "word": "Usability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "usability", + "romanization": "Usability", + "example_sentence_native": "Die Usability der Software ist sehr gut.", + "example_sentence_english": "The usability of the software is very good.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28617 + }, + { + "word": "Vati", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "daddy;dad", + "romanization": "Vati", + "example_sentence_native": "Mein Vati kommt heute Abend nach Hause.", + "example_sentence_english": "My daddy is coming home tonight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28619 + }, + { + "word": "verallgemeinern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to generalize", + "romanization": "verallgemeinern", + "example_sentence_native": "Man sollte nicht zu schnell verallgemeinern.", + "example_sentence_english": "One should not generalize too quickly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28620 + }, + { + "word": "verdampfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to evaporate", + "romanization": "verdampfen", + "example_sentence_native": "Das Wasser wird bei Hitze verdampfen.", + "example_sentence_english": "The water will evaporate with heat.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28621 + }, + { + "word": "verfehlt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misguided;failed", + "romanization": "verfehlt", + "example_sentence_native": "Seine Bemühungen waren leider verfehlt.", + "example_sentence_english": "His efforts were unfortunately misguided.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28623 + }, + { + "word": "verfrüht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "premature;too early", + "romanization": "verfrüht", + "example_sentence_native": "Die Entscheidung war verfrüht.", + "example_sentence_english": "The decision was premature.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28624 + }, + { + "word": "Verhaltenstherapie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "behavioral therapy", + "romanization": "Verhaltenstherapie", + "example_sentence_native": "Sie macht eine Verhaltenstherapie.", + "example_sentence_english": "She is doing behavioral therapy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28625 + }, + { + "word": "verhasst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hated;detested", + "romanization": "verhasst", + "example_sentence_native": "Er war seinen Kollegen verhasst.", + "example_sentence_english": "He was hated by his colleagues.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28626 + }, + { + "word": "Verlagsbuchhandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "publishing bookstore", + "romanization": "Verlagsbuchhandlung", + "example_sentence_native": "Die Verlagsbuchhandlung hat viele neue Bücher.", + "example_sentence_english": "The publishing bookstore has many new books.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28627 + }, + { + "word": "Verlagsgruppe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "publishing group", + "romanization": "Verlagsgruppe", + "example_sentence_native": "Die Verlagsgruppe hat mehrere Imprints.", + "example_sentence_english": "The publishing group has several imprints.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28628 + }, + { + "word": "vermählen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to marry (off);to unite in marriage", + "romanization": "vermählen", + "example_sentence_native": "Sie wurden in einer feierlichen Zeremonie vermählt.", + "example_sentence_english": "They were united in marriage in a solemn ceremony.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28629 + }, + { + "word": "Videothek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "video rental store", + "romanization": "Videothek", + "example_sentence_native": "Früher ging man oft in die Videothek.", + "example_sentence_english": "In the past, people often went to the video rental store.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28632 + }, + { + "word": "vierteljährlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarterly", + "romanization": "vierteljährlich", + "example_sentence_native": "Der Bericht erscheint vierteljährlich.", + "example_sentence_english": "The report is published quarterly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28633 + }, + { + "word": "vorbestellen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pre-order;to reserve", + "romanization": "vorbestellen", + "example_sentence_native": "Ich möchte das neue Buch vorbestellen.", + "example_sentence_english": "I would like to pre-order the new book.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "bestellen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28635 + }, + { + "word": "vorgezogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brought forward;brought forward (in time);preferred", + "romanization": "vorgezogen", + "example_sentence_native": "Der Termin wurde vorgezogen.", + "example_sentence_english": "The appointment was brought forward.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28636 + }, + { + "word": "Vorhalle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vestibule;antechamber;lobby", + "romanization": "Vorhalle", + "example_sentence_native": "Wir warteten in der Vorhalle.", + "example_sentence_english": "We waited in the vestibule.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28637 + }, + { + "word": "vorsorgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make provisions;to take precautions", + "romanization": "vorsorgen", + "example_sentence_native": "Man sollte für das Alter vorsorgen.", + "example_sentence_english": "One should make provisions for old age.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "sorgen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28638 + }, + { + "word": "Vorwissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prior knowledge;previous knowledge", + "romanization": "Vorwissen", + "example_sentence_native": "Für dieses Thema ist Vorwissen hilfreich.", + "example_sentence_english": "Prior knowledge is helpful for this topic.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28639 + }, + { + "word": "Vorwoche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous week", + "romanization": "Vorwoche", + "example_sentence_native": "Die Vorwoche war sehr anstrengend.", + "example_sentence_english": "The previous week was very exhausting.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28640 + }, + { + "word": "Voyeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voyeur", + "romanization": "Voyeur", + "example_sentence_native": "Er wurde als Voyeur bezeichnet.", + "example_sentence_english": "He was called a voyeur.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28641 + }, + { + "word": "Wallpaper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wallpaper", + "romanization": "Wallpaper", + "example_sentence_native": "Ich habe ein neues Wallpaper auf meinem Handy.", + "example_sentence_english": "I have a new wallpaper on my phone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28643 + }, + { + "word": "Wassermasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "body of water", + "romanization": "Wassermasse", + "example_sentence_native": "Eine große Wassermasse bedeckt den größten Teil der Erde.", + "example_sentence_english": "A large body of water covers most of the Earth.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28645 + }, + { + "word": "Webauftritt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "web presence", + "romanization": "Webauftritt", + "example_sentence_native": "Jede Firma braucht einen professionellen Webauftritt.", + "example_sentence_english": "Every company needs a professional web presence.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28646 + }, + { + "word": "Weltmarktführer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "world market leader", + "romanization": "Weltmarktführer", + "example_sentence_native": "Dieses Unternehmen ist der Weltmarktführer in seiner Branche.", + "example_sentence_english": "This company is the world market leader in its industry.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28648 + }, + { + "word": "Wicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imp", + "romanization": "Wicht", + "example_sentence_native": "Der kleine Wicht versteckte sich hinter dem Baum.", + "example_sentence_english": "The little imp hid behind the tree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28650 + }, + { + "word": "Wiesel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weasel", + "romanization": "Wiesel", + "example_sentence_native": "Ein Wiesel huschte durch das Gras.", + "example_sentence_english": "A weasel scurried through the grass.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28651 + }, + { + "word": "winsen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to whimper", + "romanization": "winsen", + "example_sentence_native": "Der Hund begann zu winsen, als er allein gelassen wurde.", + "example_sentence_english": "The dog began to whimper when it was left alone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "[keep as-is]", + "word_frequency": 28652 + }, + { + "word": "wohltätig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charitable", + "romanization": "wohltätig", + "example_sentence_native": "Sie engagiert sich in wohltätigen Organisationen.", + "example_sentence_english": "She is involved in charitable organizations.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28654 + }, + { + "word": "Wonne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bliss", + "romanization": "Wonne", + "example_sentence_native": "Er empfand reine Wonne beim Anblick des Meeres.", + "example_sentence_english": "He felt pure bliss at the sight of the sea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28656 + }, + { + "word": "Wucher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usury", + "romanization": "Wucher", + "example_sentence_native": "Wucher ist in vielen Ländern illegal.", + "example_sentence_english": "Usury is illegal in many countries.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28658 + }, + { + "word": "Wärmedämmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal insulation", + "romanization": "Wärmedämmung", + "example_sentence_native": "Eine gute Wärmedämmung spart Heizkosten.", + "example_sentence_english": "Good thermal insulation saves heating costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28659 + }, + { + "word": "Wäscherei", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundry;laundromat", + "romanization": "Wäscherei", + "example_sentence_native": "Ich muss meine Kleidung zur Wäscherei bringen.", + "example_sentence_english": "I need to take my clothes to the laundromat.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28660 + }, + { + "word": "Zacke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prong;point;jag", + "romanization": "Zacke", + "example_sentence_native": "Die Zacken des Kamms sind abgebrochen.", + "example_sentence_english": "The teeth of the comb are broken off.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28662 + }, + { + "word": "Zensus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "census", + "romanization": "Zensus", + "example_sentence_native": "Der nächste Zensus findet in fünf Jahren statt.", + "example_sentence_english": "The next census will take place in five years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28663 + }, + { + "word": "Zentralisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centralization", + "romanization": "Zentralisierung", + "example_sentence_native": "Die Zentralisierung der Verwaltung wurde kritisiert.", + "example_sentence_english": "The centralization of the administration was criticized.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28664 + }, + { + "word": "zugewiesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assigned;allocated", + "romanization": "zugewiesen", + "example_sentence_native": "Die zugewiesene Aufgabe war schwierig.", + "example_sentence_english": "The assigned task was difficult.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28666 + }, + { + "word": "zuhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold shut;to cover", + "romanization": "zuhalten", + "example_sentence_native": "Er musste sich die Ohren zuhalten, weil es so laut war.", + "example_sentence_english": "He had to cover his ears because it was so loud.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zu", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28667 + }, + { + "word": "ätherisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethereal;essential (oil)", + "romanization": "ätherisch", + "example_sentence_native": "Sie hatte eine ätherische Schönheit.", + "example_sentence_english": "She had an ethereal beauty.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28668 + }, + { + "word": "Örtchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small place;toilet (euphemism)", + "romanization": "Örtchen", + "example_sentence_native": "Entschuldigen Sie, wo ist das Örtchen?", + "example_sentence_english": "Excuse me, where is the little room (toilet)?", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28669 + }, + { + "word": "abräumen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to clear away;to clear the table", + "romanization": "abräumen", + "example_sentence_native": "Kannst du bitte den Tisch abräumen?", + "example_sentence_english": "Can you please clear the table?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "räumen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28671 + }, + { + "word": "abstrafen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to punish severely;to penalize", + "romanization": "abstrafen", + "example_sentence_native": "Der Richter musste den Täter abstrafen.", + "example_sentence_english": "The judge had to punish the offender severely.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "strafen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28672 + }, + { + "word": "abgrundtief", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abysmal;profound", + "romanization": "abgrundtief", + "example_sentence_native": "Er empfand abgrundtiefe Traurigkeit.", + "example_sentence_english": "He felt abysmal sadness.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28673 + }, + { + "word": "Abholzung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deforestation", + "romanization": "Abholzung", + "example_sentence_native": "Die Abholzung des Regenwaldes ist ein großes Problem.", + "example_sentence_english": "The deforestation of the rainforest is a big problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28674 + }, + { + "word": "abnehmend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decreasing;waning", + "romanization": "abnehmend", + "example_sentence_native": "Die abnehmende Zahl der Studenten ist besorgniserregend.", + "example_sentence_english": "The decreasing number of students is worrying.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28675 + }, + { + "word": "agil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agile;nimble", + "romanization": "agil", + "example_sentence_native": "Er ist ein sehr agiler Sportler.", + "example_sentence_english": "He is a very agile athlete.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28678 + }, + { + "word": "Alarmstufe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alert level", + "romanization": "Alarmstufe", + "example_sentence_native": "Die Alarmstufe wurde erhöht.", + "example_sentence_english": "The alert level was raised.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28681 + }, + { + "word": "Amulett", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amulet", + "romanization": "Amulett", + "example_sentence_native": "Sie trug ein Amulett um den Hals.", + "example_sentence_english": "She wore an amulet around her neck.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28685 + }, + { + "word": "Anhängsel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appendage", + "romanization": "Anhängsel", + "example_sentence_native": "Das kleine Anhängsel am Ende des Dokuments war wichtig.", + "example_sentence_english": "The small appendage at the end of the document was important.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28689 + }, + { + "word": "anreden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to address", + "romanization": "anreden", + "example_sentence_native": "Wie soll ich ihn anreden?", + "example_sentence_english": "How should I address him?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "reden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28690 + }, + { + "word": "Anreicherung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enrichment", + "romanization": "Anreicherung", + "example_sentence_native": "Die Anreicherung von Uran ist ein komplexer Prozess.", + "example_sentence_english": "The enrichment of uranium is a complex process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28691 + }, + { + "word": "aufgeschnitten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut open;sliced", + "romanization": "aufgeschnitten", + "example_sentence_native": "Die aufgeschnittene Melone sah sehr appetitlich aus.", + "example_sentence_english": "The sliced melon looked very appetizing.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28703 + }, + { + "word": "aufspringen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jump up;to spring open", + "romanization": "aufspringen", + "example_sentence_native": "Er musste schnell aufspringen, um den Ball zu fangen.", + "example_sentence_english": "He had to jump up quickly to catch the ball.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "auf", + "base_verb": "springen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28704 + }, + { + "word": "Aufwandsentschädigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expense allowance;reimbursement", + "romanization": "Aufwandsentschädigung", + "example_sentence_native": "Er erhielt eine Aufwandsentschädigung für seine Reisekosten.", + "example_sentence_english": "He received an expense allowance for his travel costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28707 + }, + { + "word": "ausbaden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay for;to bear the consequences", + "romanization": "ausbaden", + "example_sentence_native": "Er musste die Fehler seiner Freunde ausbaden.", + "example_sentence_english": "He had to pay for his friends' mistakes.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "baden", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28708 + }, + { + "word": "ausgelesen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selected;read out", + "romanization": "ausgelesen", + "example_sentence_native": "Die ausgelesenen Daten wurden analysiert.", + "example_sentence_english": "The selected data was analyzed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28711 + }, + { + "word": "Aussaat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sowing;seeding", + "romanization": "Aussaat", + "example_sentence_native": "Die Aussaat des Weizens erfolgt im Frühjahr.", + "example_sentence_english": "The sowing of wheat takes place in spring.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28713 + }, + { + "word": "Aussendung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "broadcast;dispatch", + "romanization": "Aussendung", + "example_sentence_native": "Die erste Aussendung des Radiosenders war ein Erfolg.", + "example_sentence_english": "The first broadcast of the radio station was a success.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28715 + }, + { + "word": "Aussenministerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female foreign minister", + "romanization": "Aussenministerin", + "example_sentence_native": "Die Aussenministerin reiste zu internationalen Gesprächen.", + "example_sentence_english": "The female foreign minister traveled for international talks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28716 + }, + { + "word": "Aussichtsturm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observation tower", + "romanization": "Aussichtsturm", + "example_sentence_native": "Vom Aussichtsturm hatte man eine wunderbare Sicht.", + "example_sentence_english": "From the observation tower, there was a wonderful view.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28717 + }, + { + "word": "Autokorrektur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autocorrection", + "romanization": "Autokorrektur", + "example_sentence_native": "Die Autokorrektur hat meinen Text verändert.", + "example_sentence_english": "The autocorrection changed my text.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28719 + }, + { + "word": "baff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flabbergasted;stunned", + "romanization": "baff", + "example_sentence_native": "Ich war total baff, als ich die Nachricht hörte.", + "example_sentence_english": "I was totally flabbergasted when I heard the news.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28723 + }, + { + "word": "Basalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basalt", + "romanization": "Basalt", + "example_sentence_native": "Basalt ist ein dunkles, feinkörniges Vulkangestein.", + "example_sentence_english": "Basalt is a dark, fine-grained volcanic rock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28724 + }, + { + "word": "begehbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accessible;walkable", + "romanization": "begehbar", + "example_sentence_native": "Der Weg ist wieder begehbar.", + "example_sentence_english": "The path is accessible again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28728 + }, + { + "word": "beherrschend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dominant;controlling", + "romanization": "beherrschend", + "example_sentence_native": "Er hat eine beherrschende Persönlichkeit.", + "example_sentence_english": "He has a dominant personality.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28729 + }, + { + "word": "berührend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "touching;moving (emotionally)", + "romanization": "berührend", + "example_sentence_native": "Das war eine sehr berührende Geschichte.", + "example_sentence_english": "That was a very touching story.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28731 + }, + { + "word": "Bescherung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gift-giving (Christmas);present distribution", + "romanization": "Bescherung", + "example_sentence_native": "Die Bescherung findet am Heiligabend statt.", + "example_sentence_english": "The gift-giving takes place on Christmas Eve.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28732 + }, + { + "word": "Beweisführung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "argumentation;presentation of evidence", + "romanization": "Beweisführung", + "example_sentence_native": "Die Beweisführung des Anwalts war überzeugend.", + "example_sentence_english": "The lawyer's argumentation was convincing.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28733 + }, + { + "word": "Bewölkung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloudiness;cloud cover", + "romanization": "Bewölkung", + "example_sentence_native": "Die Bewölkung nimmt im Laufe des Tages zu.", + "example_sentence_english": "The cloudiness increases during the day.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28734 + }, + { + "word": "Blockflöte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recorder (musical instrument)", + "romanization": "Blockflöte", + "example_sentence_native": "Sie lernt, Blockflöte zu spielen.", + "example_sentence_english": "She is learning to play the recorder.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28735 + }, + { + "word": "bläulich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bluish", + "romanization": "bläulich", + "example_sentence_native": "Der Himmel hatte einen bläulichen Schimmer.", + "example_sentence_english": "The sky had a bluish shimmer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28736 + }, + { + "word": "Briefträger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "postman", + "romanization": "Briefträger", + "example_sentence_native": "Der Briefträger bringt jeden Morgen die Post.", + "example_sentence_english": "The postman brings the mail every morning.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28741 + }, + { + "word": "Buchmacher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bookmaker", + "romanization": "Buchmacher", + "example_sentence_native": "Der Buchmacher nahm Wetten auf das Pferderennen an.", + "example_sentence_english": "The bookmaker accepted bets on the horse race.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28742 + }, + { + "word": "Buchse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "socket", + "romanization": "Buchse", + "example_sentence_native": "Stecken Sie das Kabel in die Buchse.", + "example_sentence_english": "Plug the cable into the socket.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28743 + }, + { + "word": "Bürgerentscheid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referendum", + "romanization": "Bürgerentscheid", + "example_sentence_native": "Es wird einen Bürgerentscheid über das neue Bauprojekt geben.", + "example_sentence_english": "There will be a referendum on the new construction project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28745 + }, + { + "word": "Büroraum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "office room", + "romanization": "Büroraum", + "example_sentence_native": "Wir suchen einen neuen Büroraum in der Innenstadt.", + "example_sentence_english": "We are looking for a new office room in the city center.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28746 + }, + { + "word": "Cabriolet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convertible", + "romanization": "Cabriolet", + "example_sentence_native": "Er fährt ein rotes Cabriolet.", + "example_sentence_english": "He drives a red convertible.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28748 + }, + { + "word": "Capture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capture", + "romanization": "Capture", + "example_sentence_native": "Machen Sie einen Capture des Bildschirms.", + "example_sentence_english": "Make a capture of the screen.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28749 + }, + { + "word": "Commissioner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commissioner", + "romanization": "Commissioner", + "example_sentence_native": "Der Commissioner gab eine Erklärung ab.", + "example_sentence_english": "The commissioner made a statement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28752 + }, + { + "word": "connected", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connected", + "romanization": "connected", + "example_sentence_native": "Ist Ihr Gerät mit dem Internet connected?", + "example_sentence_english": "Is your device connected to the internet?", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28754 + }, + { + "word": "Cons", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cons (disadvantages)", + "romanization": "Cons", + "example_sentence_native": "Wir müssen die Pros und Cons abwägen.", + "example_sentence_english": "We need to weigh the pros and cons.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28755 + }, + { + "word": "Crush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crush (infatuation)", + "romanization": "Crush", + "example_sentence_native": "Sie hat einen Crush auf ihren Kollegen.", + "example_sentence_english": "She has a crush on her colleague.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28756 + }, + { + "word": "Darmkrebs", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bowel cancer", + "romanization": "Darmkrebs", + "example_sentence_native": "Früherkennung ist wichtig bei Darmkrebs.", + "example_sentence_english": "Early detection is important for bowel cancer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28758 + }, + { + "word": "dazukommen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to join;to come along", + "romanization": "dazukommen", + "example_sentence_native": "Möchtest du zu unserer Gruppe dazukommen?", + "example_sentence_english": "Would you like to join our group?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dazu", + "base_verb": "kommen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28759 + }, + { + "word": "Dehnung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stretching", + "romanization": "Dehnung", + "example_sentence_native": "Vor dem Sport ist eine gute Dehnung wichtig.", + "example_sentence_english": "Before sports, good stretching is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28761 + }, + { + "word": "Dickicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thicket", + "romanization": "Dickicht", + "example_sentence_native": "Sie versteckten sich im dichten Dickicht.", + "example_sentence_english": "They hid in the dense thicket.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28764 + }, + { + "word": "Dogmatik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dogmatics", + "romanization": "Dogmatik", + "example_sentence_native": "Die Dogmatik der Kirche ist streng.", + "example_sentence_english": "The dogmatics of the church are strict.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28767 + }, + { + "word": "donnern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to thunder", + "romanization": "donnern", + "example_sentence_native": "Es hat die ganze Nacht gedonnert.", + "example_sentence_english": "It thundered all night.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28768 + }, + { + "word": "dröhnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roar", + "romanization": "dröhnen", + "example_sentence_native": "Der Motor dröhnte laut.", + "example_sentence_english": "The engine roared loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28771 + }, + { + "word": "Dukat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ducat", + "romanization": "Dukat", + "example_sentence_native": "Ein Dukat war eine alte Goldmünze.", + "example_sentence_english": "A ducat was an old gold coin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28772 + }, + { + "word": "durchsetzbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enforceable", + "romanization": "durchsetzbar", + "example_sentence_native": "Diese Regelung ist nicht durchsetzbar.", + "example_sentence_english": "This regulation is not enforceable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28773 + }, + { + "word": "Einsatzleiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incident commander", + "romanization": "Einsatzleiter", + "example_sentence_native": "Der Einsatzleiter gab die Anweisungen.", + "example_sentence_english": "The incident commander gave the instructions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28778 + }, + { + "word": "Eisenbahnbrücke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "railway bridge", + "romanization": "Eisenbahnbrücke", + "example_sentence_native": "Die alte Eisenbahnbrücke wird renoviert.", + "example_sentence_english": "The old railway bridge is being renovated.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28779 + }, + { + "word": "Elektrofahrzeug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electric vehicle", + "romanization": "Elektrofahrzeug", + "example_sentence_native": "Immer mehr Menschen kaufen ein Elektrofahrzeug.", + "example_sentence_english": "More and more people are buying an electric vehicle.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28781 + }, + { + "word": "Emirate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emirates", + "romanization": "Emirate", + "example_sentence_native": "Die Vereinigten Arabischen Emirate sind ein beliebtes Reiseziel.", + "example_sentence_english": "The United Arab Emirates are a popular travel destination.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28784 + }, + { + "word": "Entdeckungsreise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journey of discovery", + "romanization": "Entdeckungsreise", + "example_sentence_native": "Die Entdeckungsreise führte sie in unbekannte Länder.", + "example_sentence_english": "The journey of discovery led them to unknown lands.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28785 + }, + { + "word": "enthusiastisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enthusiastic", + "romanization": "enthusiastisch", + "example_sentence_native": "Sie war sehr enthusiastisch über das neue Projekt.", + "example_sentence_english": "She was very enthusiastic about the new project.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28786 + }, + { + "word": "entwickelnd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developing", + "romanization": "entwickelnd", + "example_sentence_native": "Die entwickelnden Länder stehen vor großen Herausforderungen.", + "example_sentence_english": "The developing countries face great challenges.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28787 + }, + { + "word": "Entwicklungspolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "development policy", + "romanization": "Entwicklungspolitik", + "example_sentence_native": "Die Entwicklungspolitik zielt darauf ab, Armut zu reduzieren.", + "example_sentence_english": "Development policy aims to reduce poverty.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28788 + }, + { + "word": "Entwicklungszusammenarbeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "development cooperation", + "romanization": "Entwicklungszusammenarbeit", + "example_sentence_native": "Die Entwicklungszusammenarbeit ist entscheidend für globale Fortschritte.", + "example_sentence_english": "Development cooperation is crucial for global progress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28789 + }, + { + "word": "erwehren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to defend oneself against", + "romanization": "erwehren", + "example_sentence_native": "Er konnte sich der Angreifer kaum erwehren.", + "example_sentence_english": "He could barely defend himself against the attackers.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28791 + }, + { + "word": "erwürgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strangle", + "romanization": "erwürgen", + "example_sentence_native": "Der Täter versuchte, sein Opfer zu erwürgen.", + "example_sentence_english": "The perpetrator tried to strangle his victim.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28792 + }, + { + "word": "Evaluierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluation", + "romanization": "Evaluierung", + "example_sentence_native": "Die Evaluierung des Projekts ist noch nicht abgeschlossen.", + "example_sentence_english": "The evaluation of the project is not yet complete.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28793 + }, + { + "word": "Evolutionstheorie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theory of evolution", + "romanization": "Evolutionstheorie", + "example_sentence_native": "Die Evolutionstheorie ist ein Grundpfeiler der Biologie.", + "example_sentence_english": "The theory of evolution is a cornerstone of biology.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28794 + }, + { + "word": "Exkurs", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "digression", + "romanization": "Exkurs", + "example_sentence_native": "Er machte einen kurzen Exkurs in die Geschichte der Philosophie.", + "example_sentence_english": "He made a short digression into the history of philosophy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28795 + }, + { + "word": "exponentiell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exponential", + "romanization": "exponentiell", + "example_sentence_native": "Die Bevölkerung wächst exponentiell.", + "example_sentence_english": "The population is growing exponentially.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28796 + }, + { + "word": "Fachwelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expert community", + "romanization": "Fachwelt", + "example_sentence_native": "Die neue Entdeckung wurde in der Fachwelt kontrovers diskutiert.", + "example_sentence_english": "The new discovery was controversially discussed in the expert community.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28797 + }, + { + "word": "Fallschirmjäger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paratrooper", + "romanization": "Fallschirmjäger", + "example_sentence_native": "Die Fallschirmjäger landeten hinter den feindlichen Linien.", + "example_sentence_english": "The paratroopers landed behind enemy lines.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28798 + }, + { + "word": "Fernsteuerung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remote control", + "romanization": "Fernsteuerung", + "example_sentence_native": "Wo ist die Fernsteuerung für den Fernseher?", + "example_sentence_english": "Where is the remote control for the TV?", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28800 + }, + { + "word": "fettig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "greasy;fatty", + "romanization": "fettig", + "example_sentence_native": "Das Essen war sehr fettig.", + "example_sentence_english": "The food was very greasy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28801 + }, + { + "word": "Feuerpause", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceasefire;truce", + "romanization": "Feuerpause", + "example_sentence_native": "Die Parteien einigten sich auf eine kurze Feuerpause.", + "example_sentence_english": "The parties agreed on a short ceasefire.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28802 + }, + { + "word": "Finalrunde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final round", + "romanization": "Finalrunde", + "example_sentence_native": "Sie haben sich für die Finalrunde qualifiziert.", + "example_sentence_english": "They qualified for the final round.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28804 + }, + { + "word": "Fischfang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fishing;catch (of fish)", + "romanization": "Fischfang", + "example_sentence_native": "Der Fischfang ist in dieser Region eine wichtige Einnahmequelle.", + "example_sentence_english": "Fishing is an important source of income in this region.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28805 + }, + { + "word": "flauschig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fluffy;soft", + "romanization": "flauschig", + "example_sentence_native": "Die Katze hat ein sehr flauschiges Fell.", + "example_sentence_english": "The cat has very fluffy fur.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28806 + }, + { + "word": "fordernd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanding;challenging", + "romanization": "fordernd", + "example_sentence_native": "Die neue Aufgabe ist sehr fordernd.", + "example_sentence_english": "The new task is very demanding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28807 + }, + { + "word": "forensisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forensic", + "romanization": "forensisch", + "example_sentence_native": "Die forensische Untersuchung ergab neue Hinweise.", + "example_sentence_english": "The forensic investigation yielded new clues.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28808 + }, + { + "word": "Formatierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formatting", + "romanization": "Formatierung", + "example_sentence_native": "Überprüfen Sie die Formatierung des Dokuments.", + "example_sentence_english": "Check the formatting of the document.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28809 + }, + { + "word": "Freeze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freeze (e.g.;computer freeze)", + "romanization": "Freeze", + "example_sentence_native": "Der Computer hatte einen Freeze.", + "example_sentence_english": "The computer had a freeze.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28812 + }, + { + "word": "Freitod", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicide (literally \"free death\")", + "romanization": "Freitod", + "example_sentence_native": "Der Freitod ist ein komplexes Thema.", + "example_sentence_english": "Suicide is a complex topic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28813 + }, + { + "word": "fremdenfeindlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "xenophobic;hostile to foreigners", + "romanization": "fremdenfeindlich", + "example_sentence_native": "Fremdenfeindliche Äußerungen sind inakzeptabel.", + "example_sentence_english": "Xenophobic statements are unacceptable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28814 + }, + { + "word": "fruchtig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fruity", + "romanization": "fruchtig", + "example_sentence_native": "Dieser Wein hat einen sehr fruchtigen Geschmack.", + "example_sentence_english": "This wine has a very fruity taste.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28815 + }, + { + "word": "Fundamentalismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamentalism", + "romanization": "Fundamentalismus", + "example_sentence_native": "Der Fundamentalismus ist eine Herausforderung für die Gesellschaft.", + "example_sentence_english": "Fundamentalism is a challenge for society.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28816 + }, + { + "word": "Gazette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gazette;newspaper", + "romanization": "Gazette", + "example_sentence_native": "Die lokale Gazette berichtete über das Ereignis.", + "example_sentence_english": "The local gazette reported on the event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28818 + }, + { + "word": "Geburtsstunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "birth hour;moment of origin", + "romanization": "Geburtsstunde", + "example_sentence_native": "Das war die Geburtsstunde einer neuen Ära.", + "example_sentence_english": "That was the birth hour of a new era.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28819 + }, + { + "word": "gefeiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celebrated;acclaimed", + "romanization": "gefeiert", + "example_sentence_native": "Der gefeierte Künstler stellte seine neue Ausstellung vor.", + "example_sentence_english": "The celebrated artist presented his new exhibition.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28820 + }, + { + "word": "Gefieder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plumage;feathers", + "romanization": "Gefieder", + "example_sentence_native": "Das bunte Gefieder des Vogels war wunderschön.", + "example_sentence_english": "The bird's colorful plumage was beautiful.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28821 + }, + { + "word": "Gefilde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fields;realms", + "romanization": "Gefilde", + "example_sentence_native": "Sie wanderten durch die grünen Gefilde.", + "example_sentence_english": "They wandered through the green fields.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28822 + }, + { + "word": "gefragt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in demand;popular", + "romanization": "gefragt", + "example_sentence_native": "Er ist ein sehr gefragter Experte auf seinem Gebiet.", + "example_sentence_english": "He is a very popular expert in his field.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28823 + }, + { + "word": "gelassen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calm;composed;relaxed", + "romanization": "gelassen", + "example_sentence_native": "Sie blieb in der schwierigen Situation ganz gelassen.", + "example_sentence_english": "She remained completely calm in the difficult situation.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28824 + }, + { + "word": "Gemeinschaftsschule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comprehensive school", + "romanization": "Gemeinschaftsschule", + "example_sentence_native": "Meine Kinder besuchen eine Gemeinschaftsschule.", + "example_sentence_english": "My children attend a comprehensive school.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28825 + }, + { + "word": "Generalverdacht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "general suspicion", + "romanization": "Generalverdacht", + "example_sentence_native": "Die Polizei stand unter Generalverdacht, nachdem die Ermittlungen fehlschlugen.", + "example_sentence_english": "The police were under general suspicion after the investigations failed.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28826 + }, + { + "word": "Gerüchteküche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rumor mill;gossip factory", + "romanization": "Gerüchteküche", + "example_sentence_native": "In der Gerüchteküche brodelte es nach der Ankündigung.", + "example_sentence_english": "The rumor mill was buzzing after the announcement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28827 + }, + { + "word": "geschrieben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "written", + "romanization": "geschrieben", + "example_sentence_native": "Das geschriebene Wort hat eine große Macht.", + "example_sentence_english": "The written word has great power.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28828 + }, + { + "word": "globalisiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globalized", + "romanization": "globalisiert", + "example_sentence_native": "Wir leben in einer zunehmend globalisierten Welt.", + "example_sentence_english": "We live in an increasingly globalized world.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28829 + }, + { + "word": "Glätte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smoothness;slipperiness;ice (on roads)", + "romanization": "Glätte", + "example_sentence_native": "Wegen der Glätte auf den Straßen kam es zu vielen Unfällen.", + "example_sentence_english": "Due to the slipperiness on the roads, there were many accidents.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28830 + }, + { + "word": "Graus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "horror;dread;terror", + "romanization": "Graus", + "example_sentence_native": "Der Anblick war ein wahrer Graus.", + "example_sentence_english": "The sight was a true horror.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28832 + }, + { + "word": "Grip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grip;traction", + "romanization": "Grip", + "example_sentence_native": "Die Reifen haben einen guten Grip auf nasser Fahrbahn.", + "example_sentence_english": "The tires have good grip on wet roads.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28833 + }, + { + "word": "Gruppensieger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group winner", + "romanization": "Gruppensieger", + "example_sentence_native": "Die Mannschaft wurde Gruppensieger und zog ins Finale ein.", + "example_sentence_english": "The team became group winner and advanced to the final.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28834 + }, + { + "word": "Grütze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groats;grits;nonsense", + "romanization": "Grütze", + "example_sentence_native": "Er redet nur Grütze.", + "example_sentence_english": "He's talking nonsense.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28836 + }, + { + "word": "Halbzeitpause", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "halftime break", + "romanization": "Halbzeitpause", + "example_sentence_native": "In der Halbzeitpause gab es Snacks und Getränke.", + "example_sentence_english": "During the halftime break, there were snacks and drinks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28838 + }, + { + "word": "hamburgisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hamburgian;from Hamburg", + "romanization": "hamburgisch", + "example_sentence_native": "Er spricht einen hamburgischen Dialekt.", + "example_sentence_english": "He speaks a Hamburgian dialect.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28839 + }, + { + "word": "Handgriff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handle;grip", + "romanization": "Handgriff", + "example_sentence_native": "Der Handgriff der Tür war locker.", + "example_sentence_english": "The door handle was loose.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28841 + }, + { + "word": "Hausmittel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "home remedy", + "romanization": "Hausmittel", + "example_sentence_native": "Ein altes Hausmittel gegen Erkältung ist Hühnersuppe.", + "example_sentence_english": "An old home remedy for a cold is chicken soup.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28842 + }, + { + "word": "Hedgefonds", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hedge fund", + "romanization": "Hedgefonds", + "example_sentence_native": "Viele Investoren legen ihr Geld in Hedgefonds an.", + "example_sentence_english": "Many investors put their money into hedge funds.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28844 + }, + { + "word": "herumschlagen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to struggle with;to beat around", + "romanization": "herumschlagen", + "example_sentence_native": "Er musste sich lange mit dem Problem herumschlagen.", + "example_sentence_english": "He had to struggle with the problem for a long time.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "herum", + "base_verb": "schlagen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28847 + }, + { + "word": "hochhalten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold up;to uphold", + "romanization": "hochhalten", + "example_sentence_native": "Wir müssen unsere Werte hochhalten.", + "example_sentence_english": "We must uphold our values.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hoch", + "base_verb": "halten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28848 + }, + { + "word": "Hochschulabschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university degree", + "romanization": "Hochschulabschluss", + "example_sentence_native": "Ein Hochschulabschluss ist oft eine Voraussetzung für gute Jobs.", + "example_sentence_english": "A university degree is often a prerequisite for good jobs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28849 + }, + { + "word": "Hofstaat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "court;royal household", + "romanization": "Hofstaat", + "example_sentence_native": "Der König reiste mit seinem gesamten Hofstaat.", + "example_sentence_english": "The king traveled with his entire court.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28850 + }, + { + "word": "Höchststrafe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maximum penalty;maximum sentence", + "romanization": "Höchststrafe", + "example_sentence_native": "Für dieses Verbrechen droht die Höchststrafe.", + "example_sentence_english": "The maximum penalty threatens for this crime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28855 + }, + { + "word": "Höhenlage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altitude;high-altitude location", + "romanization": "Höhenlage", + "example_sentence_native": "Die Hütte liegt in einer Höhenlage von 2000 Metern.", + "example_sentence_english": "The hut is located at an altitude of 2000 meters.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28857 + }, + { + "word": "imperialistisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialistic", + "romanization": "imperialistisch", + "example_sentence_native": "Die imperialistische Politik führte zu Konflikten.", + "example_sentence_english": "The imperialistic policy led to conflicts.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28860 + }, + { + "word": "indianisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Native American;Indian", + "romanization": "indianisch", + "example_sentence_native": "Sie studiert indianische Kulturen.", + "example_sentence_english": "She studies Native American cultures.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28861 + }, + { + "word": "Instrumentalmusik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instrumental music", + "romanization": "Instrumentalmusik", + "example_sentence_native": "Ich höre gerne Instrumentalmusik zum Entspannen.", + "example_sentence_english": "I like listening to instrumental music to relax.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28862 + }, + { + "word": "intolerant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerant", + "romanization": "intolerant", + "example_sentence_native": "Er ist sehr intolerant gegenüber anderen Meinungen.", + "example_sentence_english": "He is very intolerant of other opinions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28863 + }, + { + "word": "Irritation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irritation", + "romanization": "Irritation", + "example_sentence_native": "Seine Bemerkung verursachte eine gewisse Irritation.", + "example_sentence_english": "His remark caused some irritation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28864 + }, + { + "word": "Jahreseinkommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual income", + "romanization": "Jahreseinkommen", + "example_sentence_native": "Sein Jahreseinkommen ist ziemlich hoch.", + "example_sentence_english": "His annual income is quite high.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28867 + }, + { + "word": "Jahresgehalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual salary", + "romanization": "Jahresgehalt", + "example_sentence_native": "Das Jahresgehalt wurde neu verhandelt.", + "example_sentence_english": "The annual salary was renegotiated.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28868 + }, + { + "word": "Justizministerin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Minister of Justice (female)", + "romanization": "Justizministerin", + "example_sentence_native": "Die Justizministerin hielt eine wichtige Rede.", + "example_sentence_english": "The Minister of Justice held an important speech.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28871 + }, + { + "word": "Kirchentag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Church Convention (Protestant)", + "romanization": "Kirchentag", + "example_sentence_native": "Tausende Menschen besuchten den Kirchentag in Berlin.", + "example_sentence_english": "Thousands of people attended the Church Convention in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28876 + }, + { + "word": "Klimaerwärmung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "global warming;climate warming", + "romanization": "Klimaerwärmung", + "example_sentence_native": "Die Klimaerwärmung ist eine globale Herausforderung.", + "example_sentence_english": "Climate warming is a global challenge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28877 + }, + { + "word": "kloppen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit;to beat;to knock (informal)", + "romanization": "kloppen", + "example_sentence_native": "Er musste auf die Tür kloppen, um gehört zu werden.", + "example_sentence_english": "He had to knock on the door to be heard.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28878 + }, + { + "word": "Kolonialzeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonial era;period", + "romanization": "Kolonialzeit", + "example_sentence_native": "Viele Länder wurden während der Kolonialzeit ausgebeutet.", + "example_sentence_english": "Many countries were exploited during the colonial era.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28879 + }, + { + "word": "Kommerzialisierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commercialization", + "romanization": "Kommerzialisierung", + "example_sentence_native": "Die Kommerzialisierung des Sports ist ein kontroverses Thema.", + "example_sentence_english": "The commercialization of sports is a controversial topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28880 + }, + { + "word": "kopfschüttelnd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaking one's head", + "romanization": "kopfschüttelnd", + "example_sentence_native": "Er sah mich kopfschüttelnd an.", + "example_sentence_english": "He looked at me shaking his head.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28881 + }, + { + "word": "Kork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cork", + "romanization": "Kork", + "example_sentence_native": "Der Boden in der Küche ist aus Kork.", + "example_sentence_english": "The floor in the kitchen is made of cork.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28882 + }, + { + "word": "Kosmetikum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmetic product", + "romanization": "Kosmetikum", + "example_sentence_native": "Dieses Kosmetikum ist für empfindliche Haut geeignet.", + "example_sentence_english": "This cosmetic product is suitable for sensitive skin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28884 + }, + { + "word": "kosmetisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmetic", + "romanization": "kosmetisch", + "example_sentence_native": "Sie unterzog sich einem kosmetischen Eingriff.", + "example_sentence_english": "She underwent a cosmetic procedure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28885 + }, + { + "word": "Kostbarkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preciousness;valuable item", + "romanization": "Kostbarkeit", + "example_sentence_native": "Die alte Vase war eine echte Kostbarkeit.", + "example_sentence_english": "The old vase was a real valuable item.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28886 + }, + { + "word": "Kriegsgefangenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prisoner of war status;captivity", + "romanization": "Kriegsgefangenschaft", + "example_sentence_native": "Er verbrachte mehrere Jahre in Kriegsgefangenschaft.", + "example_sentence_english": "He spent several years in captivity as a prisoner of war.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28887 + }, + { + "word": "Kriminalroman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crime novel;detective novel", + "romanization": "Kriminalroman", + "example_sentence_native": "Ich lese gerne Kriminalromane am Abend.", + "example_sentence_english": "I like to read crime novels in the evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28888 + }, + { + "word": "Laguna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lagoon", + "romanization": "Laguna", + "example_sentence_native": "Die blaue Laguna war atemberaubend schön.", + "example_sentence_english": "The blue lagoon was breathtakingly beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28891 + }, + { + "word": "Landeanflug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing approach", + "romanization": "Landeanflug", + "example_sentence_native": "Das Flugzeug befindet sich im Landeanflug.", + "example_sentence_english": "The plane is on its landing approach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28893 + }, + { + "word": "Landgut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "country estate;manor", + "romanization": "Landgut", + "example_sentence_native": "Sie verbrachten ihren Urlaub auf einem alten Landgut.", + "example_sentence_english": "They spent their holiday at an old country estate.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28894 + }, + { + "word": "Landwirtschaftskammer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Chamber of Agriculture", + "romanization": "Landwirtschaftskammer", + "example_sentence_native": "Die Landwirtschaftskammer berät Bauern in der Region.", + "example_sentence_english": "The Chamber of Agriculture advises farmers in the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28895 + }, + { + "word": "Lastschrift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "direct debit", + "romanization": "Lastschrift", + "example_sentence_native": "Die Miete wird per Lastschrift eingezogen.", + "example_sentence_english": "The rent is collected by direct debit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28896 + }, + { + "word": "lax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lax;lenient", + "romanization": "lax", + "example_sentence_native": "Seine Einstellung zur Arbeit ist sehr lax.", + "example_sentence_english": "His attitude towards work is very lax.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28897 + }, + { + "word": "Legalität", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legality", + "romanization": "Legalität", + "example_sentence_native": "Die Legalität der Maßnahme wurde angezweifelt.", + "example_sentence_english": "The legality of the measure was questioned.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28899 + }, + { + "word": "Lehrtätigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaching activity", + "romanization": "Lehrtätigkeit", + "example_sentence_native": "Ihre Lehrtätigkeit an der Universität ist sehr geschätzt.", + "example_sentence_english": "Her teaching activity at the university is highly valued.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28900 + }, + { + "word": "Liebesbeziehung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "romantic relationship", + "romanization": "Liebesbeziehung", + "example_sentence_native": "Sie führten eine lange und glückliche Liebesbeziehung.", + "example_sentence_english": "They had a long and happy romantic relationship.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28903 + }, + { + "word": "Laus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "louse", + "romanization": "Laus", + "example_sentence_native": "Eine Laus ist ein kleines Insekt, das auf Haaren lebt.", + "example_sentence_english": "A louse is a small insect that lives on hair.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28907 + }, + { + "word": "maschinell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanical;automated", + "romanization": "maschinell", + "example_sentence_native": "Die Daten werden maschinell verarbeitet.", + "example_sentence_english": "The data is processed mechanically.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28913 + }, + { + "word": "Maschinerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machinery", + "romanization": "Maschinerie", + "example_sentence_native": "Die alte Maschinerie muss ersetzt werden.", + "example_sentence_english": "The old machinery needs to be replaced.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28914 + }, + { + "word": "Masseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masseur", + "romanization": "Masseur", + "example_sentence_native": "Der Masseur half ihm, seine Rückenschmerzen zu lindern.", + "example_sentence_english": "The masseur helped him relieve his back pain.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28915 + }, + { + "word": "Mauerbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wall construction", + "romanization": "Mauerbau", + "example_sentence_native": "Der Mauerbau begann im Sommer.", + "example_sentence_english": "The wall construction began in the summer.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28917 + }, + { + "word": "mediterran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mediterranean", + "romanization": "mediterran", + "example_sentence_native": "Wir lieben die mediterrane Küche.", + "example_sentence_english": "We love Mediterranean cuisine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28920 + }, + { + "word": "Medley", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medley", + "romanization": "Medley", + "example_sentence_native": "Die Band spielte ein Medley ihrer größten Hits.", + "example_sentence_english": "The band played a medley of their greatest hits.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28921 + }, + { + "word": "Militarismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militarism", + "romanization": "Militarismus", + "example_sentence_native": "Der Militarismus führte zu vielen Konflikten.", + "example_sentence_english": "Militarism led to many conflicts.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28925 + }, + { + "word": "Motorroller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scooter;moped", + "romanization": "Motorroller", + "example_sentence_native": "Er fährt jeden Tag mit seinem Motorroller zur Arbeit.", + "example_sentence_english": "He rides his scooter to work every day.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28930 + }, + { + "word": "Mundgeruch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad breath;halitosis", + "romanization": "Mundgeruch", + "example_sentence_native": "Er schämte sich wegen seines Mundgeruchs.", + "example_sentence_english": "He was ashamed because of his bad breath.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28932 + }, + { + "word": "Mutterschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motherhood;maternity", + "romanization": "Mutterschaft", + "example_sentence_native": "Die Mutterschaft ist eine große Verantwortung.", + "example_sentence_english": "Motherhood is a great responsibility.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28935 + }, + { + "word": "Männlein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little man;male (diminutive)", + "romanization": "Männlein", + "example_sentence_native": "Das kleine Männlein saß auf dem Stein.", + "example_sentence_english": "The little man sat on the stone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28936 + }, + { + "word": "Nachbargemeinde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighboring municipality;community", + "romanization": "Nachbargemeinde", + "example_sentence_native": "Wir wohnen in der Nachbargemeinde.", + "example_sentence_english": "We live in the neighboring municipality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28937 + }, + { + "word": "Nachrichtenmagazin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "news magazine", + "romanization": "Nachrichtenmagazin", + "example_sentence_native": "Er liest jeden Sonntag ein Nachrichtenmagazin.", + "example_sentence_english": "He reads a news magazine every Sunday.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28938 + }, + { + "word": "Nationalgalerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national gallery", + "romanization": "Nationalgalerie", + "example_sentence_native": "Die Nationalgalerie beherbergt viele berühmte Kunstwerke.", + "example_sentence_english": "The National Gallery houses many famous artworks.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28939 + }, + { + "word": "Naturkunde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "natural history", + "romanization": "Naturkunde", + "example_sentence_native": "Im Museum gibt es eine Abteilung für Naturkunde.", + "example_sentence_english": "In the museum, there is a department for natural history.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28940 + }, + { + "word": "Nordafrikaner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North African (person)", + "romanization": "Nordafrikaner", + "example_sentence_native": "Er ist ein Nordafrikaner.", + "example_sentence_english": "He is a North African.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28944 + }, + { + "word": "nordkoreanisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North Korean", + "romanization": "nordkoreanisch", + "example_sentence_native": "Die nordkoreanische Küche ist interessant.", + "example_sentence_english": "North Korean cuisine is interesting.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28945 + }, + { + "word": "normativ", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "normative", + "romanization": "normativ", + "example_sentence_native": "Das ist eine normative Aussage.", + "example_sentence_english": "That is a normative statement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28946 + }, + { + "word": "Nougat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nougat", + "romanization": "Nougat", + "example_sentence_native": "Ich mag Schokolade mit Nougat.", + "example_sentence_english": "I like chocolate with nougat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28947 + }, + { + "word": "Nutzungsdauer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "service life", + "romanization": "Nutzungsdauer", + "example_sentence_native": "Die Nutzungsdauer dieses Geräts ist begrenzt.", + "example_sentence_english": "The service life of this device is limited.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28950 + }, + { + "word": "Obdach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shelter", + "romanization": "Obdach", + "example_sentence_native": "Viele Menschen suchen Obdach in der Kälte.", + "example_sentence_english": "Many people seek shelter in the cold.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28952 + }, + { + "word": "Oberstaatsanwalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chief public prosecutor", + "romanization": "Oberstaatsanwalt", + "example_sentence_native": "Der Oberstaatsanwalt leitete die Ermittlungen.", + "example_sentence_english": "The chief public prosecutor led the investigation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28953 + }, + { + "word": "Offenbacher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person from Offenbach", + "romanization": "Offenbacher", + "example_sentence_native": "Er ist ein Offenbacher.", + "example_sentence_english": "He is a person from Offenbach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28954 + }, + { + "word": "Ortsausgang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "town exit", + "romanization": "Ortsausgang", + "example_sentence_native": "Am Ortsausgang steht ein Schild.", + "example_sentence_english": "There is a sign at the town exit.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28956 + }, + { + "word": "Pfarrerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female pastor", + "romanization": "Pfarrerin", + "example_sentence_native": "Die Pfarrerin hielt eine bewegende Predigt.", + "example_sentence_english": "The female pastor gave a moving sermon.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28962 + }, + { + "word": "phasenweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in phases;periodically", + "romanization": "phasenweise", + "example_sentence_native": "Das Projekt wurde phasenweise umgesetzt.", + "example_sentence_english": "The project was implemented in phases.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 28963 + }, + { + "word": "polemisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polemical", + "romanization": "polemisch", + "example_sentence_native": "Seine Rede war sehr polemisch.", + "example_sentence_english": "His speech was very polemical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28969 + }, + { + "word": "Polizeidienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police service", + "romanization": "Polizeidienst", + "example_sentence_native": "Er ist seit zehn Jahren im Polizeidienst.", + "example_sentence_english": "He has been in the police service for ten years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28970 + }, + { + "word": "praktikabel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practicable;feasible", + "romanization": "praktikabel", + "example_sentence_native": "Die Lösung ist nicht praktikabel.", + "example_sentence_english": "The solution is not practicable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28971 + }, + { + "word": "Produzentin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female producer", + "romanization": "Produzentin", + "example_sentence_native": "Sie ist eine erfolgreiche Produzentin.", + "example_sentence_english": "She is a successful producer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28973 + }, + { + "word": "Präsens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "present tense", + "romanization": "Präsens", + "example_sentence_native": "Das Verb steht im Präsens.", + "example_sentence_english": "The verb is in the present tense.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28975 + }, + { + "word": "psychosomatisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychosomatic", + "romanization": "psychosomatisch", + "example_sentence_native": "Stress kann psychosomatische Beschwerden verursachen.", + "example_sentence_english": "Stress can cause psychosomatic complaints.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28977 + }, + { + "word": "psychosozial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychosocial", + "romanization": "psychosozial", + "example_sentence_native": "Die psychosoziale Unterstützung ist sehr wichtig.", + "example_sentence_english": "Psychosocial support is very important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28978 + }, + { + "word": "Pyrotechnik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyrotechnics", + "romanization": "Pyrotechnik", + "example_sentence_native": "Die Pyrotechnik beim Konzert war beeindruckend.", + "example_sentence_english": "The pyrotechnics at the concert were impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28979 + }, + { + "word": "queren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cross", + "romanization": "queren", + "example_sentence_native": "Wir müssen die Straße queren.", + "example_sentence_english": "We have to cross the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28980 + }, + { + "word": "Rahm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cream", + "romanization": "Rahm", + "example_sentence_native": "Möchten Sie Rahm in Ihren Kaffee?", + "example_sentence_english": "Would you like cream in your coffee?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28982 + }, + { + "word": "Rebsorte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grape variety", + "romanization": "Rebsorte", + "example_sentence_native": "Diese Rebsorte ist typisch für die Region.", + "example_sentence_english": "This grape variety is typical for the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28983 + }, + { + "word": "Reihenhaus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terraced house", + "romanization": "Reihenhaus", + "example_sentence_native": "Sie wohnen in einem Reihenhaus am Stadtrand.", + "example_sentence_english": "They live in a terraced house on the outskirts of the city.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28984 + }, + { + "word": "resch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crispy;crusty (Austrian;Southern German)", + "romanization": "resch", + "example_sentence_native": "Das Brot ist schön resch gebacken.", + "example_sentence_english": "The bread is baked nicely crispy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28987 + }, + { + "word": "resümieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to summarize;to conclude", + "romanization": "resümieren", + "example_sentence_native": "Er resümierte die wichtigsten Punkte der Diskussion.", + "example_sentence_english": "He summarized the main points of the discussion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 28988 + }, + { + "word": "rituell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ritual;ritualistic", + "romanization": "rituell", + "example_sentence_native": "Das ist ein ritueller Tanz.", + "example_sentence_english": "That is a ritual dance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28991 + }, + { + "word": "Rodung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearing (of land;forest);deforestation", + "romanization": "Rodung", + "example_sentence_native": "Die Rodung des Waldes hat ökologische Folgen.", + "example_sentence_english": "The clearing of the forest has ecological consequences.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28993 + }, + { + "word": "rotierend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotating", + "romanization": "rotierend", + "example_sentence_native": "Die rotierenden Teile der Maschine sind gefährlich.", + "example_sentence_english": "The rotating parts of the machine are dangerous.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 28994 + }, + { + "word": "Ruhetag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "day of rest;closing day", + "romanization": "Ruhetag", + "example_sentence_native": "Sonntag ist unser Ruhetag.", + "example_sentence_english": "Sunday is our day of rest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28995 + }, + { + "word": "Salve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salvo;volley;burst", + "romanization": "Salve", + "example_sentence_native": "Eine Salve von Schüssen ertönte.", + "example_sentence_english": "A volley of shots rang out.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 28999 + }, + { + "word": "saudisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saudi;Saudi Arabian", + "romanization": "saudisch", + "example_sentence_native": "Die saudische Regierung hat eine neue Politik angekündigt.", + "example_sentence_english": "The Saudi government has announced a new policy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29000 + }, + { + "word": "schallen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resound;to echo", + "romanization": "schallen", + "example_sentence_native": "Seine Stimme schallte durch den leeren Saal.", + "example_sentence_english": "His voice echoed through the empty hall.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29004 + }, + { + "word": "schattig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shady", + "romanization": "schattig", + "example_sentence_native": "Es ist schön schattig unter dem Baum.", + "example_sentence_english": "It's nice and shady under the tree.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29005 + }, + { + "word": "Schienbein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shin;shinbone", + "romanization": "Schienbein", + "example_sentence_native": "Er hat sich das Schienbein gestoßen.", + "example_sentence_english": "He bumped his shin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29007 + }, + { + "word": "Schirmherr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patron;sponsor", + "romanization": "Schirmherr", + "example_sentence_native": "Der Bundespräsident ist der Schirmherr der Veranstaltung.", + "example_sentence_english": "The Federal President is the patron of the event.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29008 + }, + { + "word": "Schlamassel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess;predicament;pickle", + "romanization": "Schlamassel", + "example_sentence_native": "Wir stecken in einem echten Schlamassel.", + "example_sentence_english": "We're in a real mess.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29009 + }, + { + "word": "Schleppe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "train (of a dress);drag", + "romanization": "Schleppe", + "example_sentence_native": "Die Braut trug ein Kleid mit einer langen Schleppe.", + "example_sentence_english": "The bride wore a dress with a long train.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29010 + }, + { + "word": "schläfrig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleepy;drowsy", + "romanization": "schläfrig", + "example_sentence_native": "Nach dem langen Flug fühlte ich mich sehr schläfrig.", + "example_sentence_english": "After the long flight, I felt very sleepy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29011 + }, + { + "word": "Schlüsselrolle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "key role", + "romanization": "Schlüsselrolle", + "example_sentence_native": "Sie spielte eine Schlüsselrolle bei den Verhandlungen.", + "example_sentence_english": "She played a key role in the negotiations.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29012 + }, + { + "word": "Schonung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protection;sparing;young forest", + "romanization": "Schonung", + "example_sentence_native": "Der Arzt empfahl Schonung für das Bein.", + "example_sentence_english": "The doctor recommended sparing the leg.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29013 + }, + { + "word": "schwachsinnig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idiotic;imbecilic;feeble-minded", + "romanization": "schwachsinnig", + "example_sentence_native": "Das ist eine schwachsinnige Idee.", + "example_sentence_english": "That's an idiotic idea.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29014 + }, + { + "word": "Sediment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sediment", + "romanization": "Sediment", + "example_sentence_native": "Das Sediment am Boden des Sees ist sehr fein.", + "example_sentence_english": "The sediment at the bottom of the lake is very fine.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29020 + }, + { + "word": "Seehöhe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sea level", + "romanization": "Seehöhe", + "example_sentence_native": "Die Stadt liegt 500 Meter über dem Meeresspiegel.", + "example_sentence_english": "The city is 500 meters above sea level.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29021 + }, + { + "word": "Selbstbefriedigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masturbation", + "romanization": "Selbstbefriedigung", + "example_sentence_native": "Selbstbefriedigung ist ein natürlicher Teil der menschlichen Sexualität.", + "example_sentence_english": "Masturbation is a natural part of human sexuality.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29022 + }, + { + "word": "Sicherheitsabstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safety distance", + "romanization": "Sicherheitsabstand", + "example_sentence_native": "Bitte halten Sie immer den Sicherheitsabstand zum vorausfahrenden Fahrzeug ein.", + "example_sentence_english": "Please always maintain a safety distance from the vehicle in front.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29025 + }, + { + "word": "Sinnhaftigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meaningfulness", + "romanization": "Sinnhaftigkeit", + "example_sentence_native": "Er hinterfragte die Sinnhaftigkeit seiner Arbeit.", + "example_sentence_english": "He questioned the meaningfulness of his work.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29026 + }, + { + "word": "Sonnenschirm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parasol", + "romanization": "Sonnenschirm", + "example_sentence_native": "Wir haben einen Sonnenschirm am Strand aufgestellt.", + "example_sentence_english": "We put up a parasol on the beach.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29028 + }, + { + "word": "Sonntagszeitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sunday newspaper", + "romanization": "Sonntagszeitung", + "example_sentence_native": "Ich lese die Sonntagszeitung immer beim Frühstück.", + "example_sentence_english": "I always read the Sunday newspaper at breakfast.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29029 + }, + { + "word": "Spann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instep", + "romanization": "Spann", + "example_sentence_native": "Der Schuh drückt am Spann.", + "example_sentence_english": "The shoe pinches at the instep.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29030 + }, + { + "word": "Spielbeginn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "start of the game", + "romanization": "Spielbeginn", + "example_sentence_native": "Der Spielbeginn ist für 18 Uhr angesetzt.", + "example_sentence_english": "The start of the game is scheduled for 6 PM.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29031 + }, + { + "word": "Spielwelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "game world", + "romanization": "Spielwelt", + "example_sentence_native": "Die Spielwelt dieses Videospiels ist riesig und detailliert.", + "example_sentence_english": "The game world of this video game is huge and detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29032 + }, + { + "word": "Sportanlage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sports facility", + "romanization": "Sportanlage", + "example_sentence_native": "Die neue Sportanlage bietet viele Möglichkeiten für verschiedene Sportarten.", + "example_sentence_english": "The new sports facility offers many opportunities for various sports.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29034 + }, + { + "word": "Sportveranstaltung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sporting event", + "romanization": "Sportveranstaltung", + "example_sentence_native": "Wir besuchen jedes Jahr eine große Sportveranstaltung.", + "example_sentence_english": "We attend a big sporting event every year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29035 + }, + { + "word": "Sprosse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rung", + "romanization": "Sprosse", + "example_sentence_native": "Er kletterte die Leiter Sprosse für Sprosse hinauf.", + "example_sentence_english": "He climbed the ladder rung by rung.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29036 + }, + { + "word": "stimmungsvoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atmospheric", + "romanization": "stimmungsvoll", + "example_sentence_native": "Die Beleuchtung schuf eine sehr stimmungsvolle Atmosphäre.", + "example_sentence_english": "The lighting created a very atmospheric ambiance.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29038 + }, + { + "word": "Stipendiat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scholarship holder", + "romanization": "Stipendiat", + "example_sentence_native": "Er ist ein Stipendiat der renommierten Stiftung.", + "example_sentence_english": "He is a scholarship holder of the renowned foundation.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29039 + }, + { + "word": "Strandbad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lido;public beach", + "romanization": "Strandbad", + "example_sentence_native": "Wir gehen im Sommer oft ins Strandbad.", + "example_sentence_english": "We often go to the lido in summer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29040 + }, + { + "word": "Stromanbieter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electricity provider", + "romanization": "Stromanbieter", + "example_sentence_native": "Ich muss meinen Stromanbieter wechseln.", + "example_sentence_english": "I need to change my electricity provider.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29043 + }, + { + "word": "Stromrechnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electricity bill", + "romanization": "Stromrechnung", + "example_sentence_native": "Die Stromrechnung war diesen Monat sehr hoch.", + "example_sentence_english": "The electricity bill was very high this month.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29044 + }, + { + "word": "strömend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "streaming;pouring", + "romanization": "strömend", + "example_sentence_native": "Es regnet strömend.", + "example_sentence_english": "It's pouring rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29045 + }, + { + "word": "Studienplatz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university place;study place", + "romanization": "Studienplatz", + "example_sentence_native": "Sie hat einen Studienplatz in Medizin bekommen.", + "example_sentence_english": "She got a university place in medicine.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29046 + }, + { + "word": "Syndikat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syndicate", + "romanization": "Syndikat", + "example_sentence_native": "Das Syndikat kontrolliert den illegalen Handel.", + "example_sentence_english": "The syndicate controls the illegal trade.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29048 + }, + { + "word": "sündigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sin", + "romanization": "sündigen", + "example_sentence_native": "Er bereut, dass er gesündigt hat.", + "example_sentence_english": "He regrets that he has sinned.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29049 + }, + { + "word": "Tatendrang", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drive to act;urge to do something", + "romanization": "Tatendrang", + "example_sentence_native": "Nach dem Urlaub hatte er wieder viel Tatendrang.", + "example_sentence_english": "After the vacation, he had a lot of drive to act again.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29051 + }, + { + "word": "Telefongespräch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phone call", + "romanization": "Telefongespräch", + "example_sentence_native": "Ich hatte ein langes Telefongespräch mit meiner Mutter.", + "example_sentence_english": "I had a long phone call with my mother.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29053 + }, + { + "word": "Todesfolge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fatal consequence;death", + "romanization": "Todesfolge", + "example_sentence_native": "Der Unfall hatte Todesfolge.", + "example_sentence_english": "The accident resulted in death.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29057 + }, + { + "word": "tough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tough;difficult", + "romanization": "tough", + "example_sentence_native": "Das war eine tough Entscheidung.", + "example_sentence_english": "That was a tough decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29059 + }, + { + "word": "Trader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trader", + "romanization": "Trader", + "example_sentence_native": "Der Trader beobachtet die Märkte genau.", + "example_sentence_english": "The trader observes the markets closely.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29060 + }, + { + "word": "Transkription", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transcription", + "romanization": "Transkription", + "example_sentence_native": "Die Transkription des Interviews dauerte Stunden.", + "example_sentence_english": "The transcription of the interview took hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29061 + }, + { + "word": "Treibhausgas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greenhouse gas", + "romanization": "Treibhausgas", + "example_sentence_native": "Kohlendioxid ist ein wichtiges Treibhausgas.", + "example_sentence_english": "Carbon dioxide is an important greenhouse gas.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29063 + }, + { + "word": "Tätowierung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "romanization": "Tätowierung", + "example_sentence_native": "Sie hat eine schöne Tätowierung auf dem Arm.", + "example_sentence_english": "She has a beautiful tattoo on her arm.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29065 + }, + { + "word": "töricht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolish;silly", + "romanization": "töricht", + "example_sentence_native": "Das war eine törichte Entscheidung.", + "example_sentence_english": "That was a foolish decision.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29066 + }, + { + "word": "Umwälzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upheaval;revolution;circulation", + "romanization": "Umwälzung", + "example_sentence_native": "Die industrielle Revolution war eine große Umwälzung.", + "example_sentence_english": "The Industrial Revolution was a great upheaval.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29069 + }, + { + "word": "Unachtsamkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carelessness;inattention", + "romanization": "Unachtsamkeit", + "example_sentence_native": "Ein Unfall kann durch Unachtsamkeit passieren.", + "example_sentence_english": "An accident can happen due to carelessness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29070 + }, + { + "word": "Unfallchirurgie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trauma surgery;accident surgery", + "romanization": "Unfallchirurgie", + "example_sentence_native": "Er arbeitet in der Abteilung für Unfallchirurgie.", + "example_sentence_english": "He works in the department of trauma surgery.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29071 + }, + { + "word": "ungebildet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uneducated;uncultured", + "romanization": "ungebildet", + "example_sentence_native": "Es ist traurig, so viele ungebildete Menschen zu sehen.", + "example_sentence_english": "It is sad to see so many uneducated people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29072 + }, + { + "word": "unordentlich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messy;untidy", + "romanization": "unordentlich", + "example_sentence_native": "Sein Zimmer ist immer unordentlich.", + "example_sentence_english": "His room is always messy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29074 + }, + { + "word": "unschwer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "easily;without difficulty", + "romanization": "unschwer", + "example_sentence_native": "Man kann unschwer erkennen, dass er müde ist.", + "example_sentence_english": "One can easily recognize that he is tired.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29075 + }, + { + "word": "Unterhaltungswert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entertainment value", + "romanization": "Unterhaltungswert", + "example_sentence_native": "Der Film hat einen hohen Unterhaltungswert.", + "example_sentence_english": "The film has a high entertainment value.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29076 + }, + { + "word": "Untermieter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subtenant;lodger", + "romanization": "Untermieter", + "example_sentence_native": "Er hat einen Untermieter in seiner Wohnung.", + "example_sentence_english": "He has a subtenant in his apartment.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29077 + }, + { + "word": "Unwohlsein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discomfort;malaise;indisposition", + "romanization": "Unwohlsein", + "example_sentence_native": "Er verspürte ein allgemeines Unwohlsein.", + "example_sentence_english": "He felt a general malaise.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29078 + }, + { + "word": "Veranstaltungskalender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "event calendar", + "romanization": "Veranstaltungskalender", + "example_sentence_native": "Der Veranstaltungskalender listet alle kommenden Ereignisse auf.", + "example_sentence_english": "The event calendar lists all upcoming events.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29081 + }, + { + "word": "Verfahrenstechnik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "process engineering", + "romanization": "Verfahrenstechnik", + "example_sentence_native": "Sie studiert Verfahrenstechnik an der Universität.", + "example_sentence_english": "She studies process engineering at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29082 + }, + { + "word": "Vergnügungspark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amusement park", + "romanization": "Vergnügungspark", + "example_sentence_native": "Wir haben den ganzen Tag im Vergnügungspark verbracht.", + "example_sentence_english": "We spent the whole day at the amusement park.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29083 + }, + { + "word": "Verheissung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promise;pledge", + "romanization": "Verheissung", + "example_sentence_native": "Die Verheissung einer besseren Zukunft motivierte sie.", + "example_sentence_english": "The promise of a better future motivated her.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29084 + }, + { + "word": "Verherrlichung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glorification;exaltation", + "romanization": "Verherrlichung", + "example_sentence_native": "Die Verherrlichung von Gewalt ist inakzeptabel.", + "example_sentence_english": "The glorification of violence is unacceptable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29085 + }, + { + "word": "verhüllen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to veil;to shroud;to cover", + "romanization": "verhüllen", + "example_sentence_native": "Sie verhüllte ihr Gesicht mit einem Schleier.", + "example_sentence_english": "She veiled her face with a scarf.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29086 + }, + { + "word": "Verkehrsunternehmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transport company", + "romanization": "Verkehrsunternehmen", + "example_sentence_native": "Das Verkehrsunternehmen hat neue Busse angeschafft.", + "example_sentence_english": "The transport company has purchased new buses.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29087 + }, + { + "word": "verkleben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to glue up;to stick together;to clog", + "romanization": "verkleben", + "example_sentence_native": "Der Kleber hat die Seiten verklebt.", + "example_sentence_english": "The glue has stuck the pages together.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29088 + }, + { + "word": "verletzlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulnerable;fragile", + "romanization": "verletzlich", + "example_sentence_native": "Er ist sehr verletzlich nach der Trennung.", + "example_sentence_english": "He is very vulnerable after the breakup.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29089 + }, + { + "word": "vernichtend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devastating;annihilating;crushing", + "romanization": "vernichtend", + "example_sentence_native": "Die Kritik war vernichtend.", + "example_sentence_english": "The criticism was devastating.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29090 + }, + { + "word": "verplanen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to misplan;to overplan;to allocate incorrectly", + "romanization": "verplanen", + "example_sentence_native": "Er hat seine Zeit völlig verplant und keine Pausen gemacht.", + "example_sentence_english": "He completely misplanned his time and didn't take any breaks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29091 + }, + { + "word": "verschwimmen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blur;to become indistinct;to run (colors)", + "romanization": "verschwimmen", + "example_sentence_native": "Die Farben auf dem Bild verschwammen im Regen.", + "example_sentence_english": "The colors in the picture blurred in the rain.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29093 + }, + { + "word": "Versicherungsgesellschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurance company", + "romanization": "Versicherungsgesellschaft", + "example_sentence_native": "Er arbeitet bei einer grossen Versicherungsgesellschaft.", + "example_sentence_english": "He works for a large insurance company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29094 + }, + { + "word": "Vertragspartei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contracting party;party to a contract", + "romanization": "Vertragspartei", + "example_sentence_native": "Beide Vertragsparteien müssen dem Abkommen zustimmen.", + "example_sentence_english": "Both contracting parties must agree to the agreement.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29095 + }, + { + "word": "Vertrautheit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "familiarity;intimacy", + "romanization": "Vertrautheit", + "example_sentence_native": "Zwischen ihnen herrschte eine angenehme Vertrautheit.", + "example_sentence_english": "There was a pleasant familiarity between them.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29096 + }, + { + "word": "verunglimpfen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disparage;to defame;to denigrate", + "romanization": "verunglimpfen", + "example_sentence_native": "Man sollte niemanden öffentlich verunglimpfen.", + "example_sentence_english": "One should not publicly disparage anyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29097 + }, + { + "word": "verunreinigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pollute;to contaminate;to soil", + "romanization": "verunreinigen", + "example_sentence_native": "Chemikalien können das Wasser verunreinigen.", + "example_sentence_english": "Chemicals can pollute the water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29098 + }, + { + "word": "Vervollständigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "completion;supplementation", + "romanization": "Vervollständigung", + "example_sentence_native": "Die Vervollständigung des Projekts ist für nächste Woche geplant.", + "example_sentence_english": "The completion of the project is planned for next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29099 + }, + { + "word": "Verwundung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wound;injury", + "romanization": "Verwundung", + "example_sentence_native": "Die Verwundung war schwer.", + "example_sentence_english": "The wound was severe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29100 + }, + { + "word": "Videokamera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "video camera", + "romanization": "Videokamera", + "example_sentence_native": "Er kaufte eine neue Videokamera.", + "example_sentence_english": "He bought a new video camera.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29101 + }, + { + "word": "vietnamesisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Vietnamese", + "romanization": "vietnamesisch", + "example_sentence_native": "Sie isst gerne vietnamesisches Essen.", + "example_sentence_english": "She likes to eat Vietnamese food.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29102 + }, + { + "word": "vollbusig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "busty;full-breasted", + "romanization": "vollbusig", + "example_sentence_native": "Sie trug ein Kleid, das ihre vollbusige Figur betonte.", + "example_sentence_english": "She wore a dress that emphasized her busty figure.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29105 + }, + { + "word": "vorausschauend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forward-looking;proactive", + "romanization": "vorausschauend", + "example_sentence_native": "Eine vorausschauende Planung ist wichtig für den Erfolg.", + "example_sentence_english": "Forward-looking planning is important for success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29106 + }, + { + "word": "Vorderrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front wheel", + "romanization": "Vorderrad", + "example_sentence_native": "Das Vorderrad des Fahrrads war platt.", + "example_sentence_english": "The front wheel of the bicycle was flat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29107 + }, + { + "word": "vorhersehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foresee;predict", + "romanization": "vorhersehen", + "example_sentence_native": "Niemand konnte das Ergebnis vorhersehen.", + "example_sentence_english": "Nobody could foresee the outcome.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29108 + }, + { + "word": "vorspielen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "play (for someone);audition", + "romanization": "vorspielen", + "example_sentence_native": "Kannst du mir das Lied vorspielen?", + "example_sentence_english": "Can you play the song for me?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "vor", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29109 + }, + { + "word": "Waffengesetz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gun law;weapons act", + "romanization": "Waffengesetz", + "example_sentence_native": "Das Waffengesetz wurde verschärft.", + "example_sentence_english": "The gun law was tightened.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29110 + }, + { + "word": "Wandbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mural;wall painting", + "romanization": "Wandbild", + "example_sentence_native": "Das Wandbild schmückt die ganze Wand.", + "example_sentence_english": "The mural decorates the entire wall.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29112 + }, + { + "word": "Warnschuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warning shot", + "romanization": "Warnschuss", + "example_sentence_native": "Die Polizei gab einen Warnschuss ab.", + "example_sentence_english": "The police fired a warning shot.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29113 + }, + { + "word": "Wassermelone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "watermelon", + "romanization": "Wassermelone", + "example_sentence_native": "Ich esse gerne Wassermelone im Sommer.", + "example_sentence_english": "I like to eat watermelon in summer.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29115 + }, + { + "word": "Webmaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "webmaster", + "romanization": "Webmaster", + "example_sentence_native": "Der Webmaster aktualisiert die Webseite.", + "example_sentence_english": "The webmaster updates the website.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29116 + }, + { + "word": "Weichei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wimp;sissy", + "romanization": "Weichei", + "example_sentence_native": "Sei kein Weichei!", + "example_sentence_english": "Don't be a wimp!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29117 + }, + { + "word": "Weihwasser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holy water", + "romanization": "Weihwasser", + "example_sentence_native": "Er besprengte sich mit Weihwasser.", + "example_sentence_english": "He sprinkled himself with holy water.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29118 + }, + { + "word": "Weinfest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wine festival", + "romanization": "Weinfest", + "example_sentence_native": "Wir besuchen jedes Jahr das Weinfest.", + "example_sentence_english": "We visit the wine festival every year.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29119 + }, + { + "word": "Weiterverarbeitung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further processing", + "romanization": "Weiterverarbeitung", + "example_sentence_native": "Die Weiterverarbeitung der Daten ist entscheidend für das Projekt.", + "example_sentence_english": "The further processing of the data is crucial for the project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29120 + }, + { + "word": "weltberühmt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "world-famous", + "romanization": "weltberühmt", + "example_sentence_native": "Er ist ein weltberühmter Pianist.", + "example_sentence_english": "He is a world-famous pianist.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29121 + }, + { + "word": "weltgross", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "world-sized;global", + "romanization": "weltgross", + "example_sentence_native": "Das Problem hat weltgrosse Ausmasse angenommen.", + "example_sentence_english": "The problem has taken on world-sized proportions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29122 + }, + { + "word": "wettbewerbsfähig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitive", + "romanization": "wettbewerbsfähig", + "example_sentence_native": "Das Unternehmen muss wettbewerbsfähig bleiben.", + "example_sentence_english": "The company must remain competitive.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29123 + }, + { + "word": "wohlauf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well;in good health", + "romanization": "wohlauf", + "example_sentence_native": "Ich bin froh, dass du wohlauf bist.", + "example_sentence_english": "I'm glad you are well.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29125 + }, + { + "word": "Wohltat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "good deed;benefit", + "romanization": "Wohltat", + "example_sentence_native": "Das war eine wahre Wohltat für mich.", + "example_sentence_english": "That was a true benefit for me.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29126 + }, + { + "word": "zahm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tame;docile", + "romanization": "zahm", + "example_sentence_native": "Das Tier ist sehr zahm und freundlich.", + "example_sentence_english": "The animal is very tame and friendly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29131 + }, + { + "word": "Zehe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toe", + "romanization": "Zehe", + "example_sentence_native": "Ich habe mir die Zehe gestoßen.", + "example_sentence_english": "I stubbed my toe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29132 + }, + { + "word": "Zeltlager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tent camp;campsite", + "romanization": "Zeltlager", + "example_sentence_native": "Die Kinder fahren im Sommer ins Zeltlager.", + "example_sentence_english": "The children are going to the tent camp in summer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29133 + }, + { + "word": "Zentralkomitee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "central committee", + "romanization": "Zentralkomitee", + "example_sentence_native": "Das Zentralkomitee traf eine wichtige Entscheidung.", + "example_sentence_english": "The central committee made an important decision.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29134 + }, + { + "word": "Zerlegung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decomposition;dismantling", + "romanization": "Zerlegung", + "example_sentence_native": "Die Zerlegung des Motors dauerte Stunden.", + "example_sentence_english": "The dismantling of the engine took hours.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29135 + }, + { + "word": "zumindestens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at least", + "romanization": "zumindestens", + "example_sentence_native": "Du solltest es zumindestens versuchen.", + "example_sentence_english": "You should at least try it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29138 + }, + { + "word": "zurückdrehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn back;to rewind", + "romanization": "zurückdrehen", + "example_sentence_native": "Kannst du das Video bitte zurückdrehen?", + "example_sentence_english": "Can you please rewind the video?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "zurück", + "base_verb": "drehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29139 + }, + { + "word": "zwanghaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsive;obsessive", + "romanization": "zwanghaft", + "example_sentence_native": "Er hat ein zwanghaftes Bedürfnis nach Ordnung.", + "example_sentence_english": "He has a compulsive need for order.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29140 + }, + { + "word": "Zwist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute;quarrel", + "romanization": "Zwist", + "example_sentence_native": "Es gab einen Zwist zwischen den Nachbarn.", + "example_sentence_english": "There was a dispute between the neighbors.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29141 + }, + { + "word": "Übergangsregierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interim government;transitional government", + "romanization": "Übergangsregierung", + "example_sentence_native": "Eine Übergangsregierung wurde gebildet, um die Krise zu bewältigen.", + "example_sentence_english": "An interim government was formed to manage the crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29142 + }, + { + "word": "überhöhen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overstate;to exaggerate;to overcharge", + "romanization": "überhöhen", + "example_sentence_native": "Man sollte die Risiken nicht überhöhen.", + "example_sentence_english": "One should not overstate the risks.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29143 + }, + { + "word": "Übersetzerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female translator", + "romanization": "Übersetzerin", + "example_sentence_native": "Sie arbeitet als freiberufliche Übersetzerin.", + "example_sentence_english": "She works as a freelance translator.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29144 + }, + { + "word": "abfackeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to flare off;to burn down (colloquial)", + "romanization": "abfackeln", + "example_sentence_native": "Die Bauern mussten das Feld abfackeln.", + "example_sentence_english": "The farmers had to burn down the field.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "fackeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29145 + }, + { + "word": "abbuchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to debit;to charge (an account)", + "romanization": "abbuchen", + "example_sentence_native": "Der Betrag wird von Ihrem Konto abgebucht.", + "example_sentence_english": "The amount will be debited from your account.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "buchen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29146 + }, + { + "word": "Absolution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absolution;forgiveness", + "romanization": "Absolution", + "example_sentence_native": "Er suchte Absolution für seine Sünden.", + "example_sentence_english": "He sought absolution for his sins.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29147 + }, + { + "word": "abtreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abort;to drift away", + "romanization": "abtreiben", + "example_sentence_native": "Das Boot trieb vom Ufer ab.", + "example_sentence_english": "The boat drifted away from the shore.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "treiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29148 + }, + { + "word": "Abwasch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dishwashing;washing up", + "romanization": "Abwasch", + "example_sentence_native": "Wer macht heute den Abwasch?", + "example_sentence_english": "Who is doing the washing up today?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29149 + }, + { + "word": "abweisend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismissive;repellent;aloof", + "romanization": "abweisend", + "example_sentence_native": "Seine abweisende Haltung machte es schwer, mit ihm zu reden.", + "example_sentence_english": "His dismissive attitude made it hard to talk to him.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29150 + }, + { + "word": "Alkoholgehalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcohol content", + "romanization": "Alkoholgehalt", + "example_sentence_native": "Der Alkoholgehalt dieses Bieres ist hoch.", + "example_sentence_english": "The alcohol content of this beer is high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29155 + }, + { + "word": "Analytiker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analyst (male)", + "romanization": "Analytiker", + "example_sentence_native": "Der Analytiker präsentierte seine Ergebnisse.", + "example_sentence_english": "The analyst presented his results.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29159 + }, + { + "word": "anprangern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to denounce", + "romanization": "anprangern", + "example_sentence_native": "Die Presse prangerte die Missstände an.", + "example_sentence_english": "The press denounced the grievances.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "prangern", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29160 + }, + { + "word": "anschnallen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to buckle up", + "romanization": "anschnallen", + "example_sentence_native": "Bitte schnallen Sie sich an.", + "example_sentence_english": "Please buckle up.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "an", + "base_verb": "schnallen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29161 + }, + { + "word": "Ansatzpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starting point", + "romanization": "Ansatzpunkt", + "example_sentence_native": "Wir brauchen einen neuen Ansatzpunkt für unser Projekt.", + "example_sentence_english": "We need a new starting point for our project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29162 + }, + { + "word": "arktisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arctic", + "romanization": "arktisch", + "example_sentence_native": "Die arktische Region ist sehr kalt.", + "example_sentence_english": "The arctic region is very cold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29164 + }, + { + "word": "Armada", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armada", + "romanization": "Armada", + "example_sentence_native": "Eine große Armada segelte über das Meer.", + "example_sentence_english": "A large armada sailed across the sea.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29165 + }, + { + "word": "asymmetrisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asymmetrical", + "romanization": "asymmetrisch", + "example_sentence_native": "Das Design ist asymmetrisch.", + "example_sentence_english": "The design is asymmetrical.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29170 + }, + { + "word": "Athletin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female athlete", + "romanization": "Athletin", + "example_sentence_native": "Die Athletin gewann die Goldmedaille.", + "example_sentence_english": "The female athlete won the gold medal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29171 + }, + { + "word": "Aufgabengebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "area of responsibility", + "romanization": "Aufgabengebiet", + "example_sentence_native": "Das ist mein Aufgabengebiet.", + "example_sentence_english": "That is my area of responsibility.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29173 + }, + { + "word": "Aussenverteidiger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full-back (soccer)", + "romanization": "Aussenverteidiger", + "example_sentence_native": "Der Aussenverteidiger spielte sehr gut.", + "example_sentence_english": "The full-back played very well.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29174 + }, + { + "word": "Backend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backend", + "romanization": "Backend", + "example_sentence_native": "Das Backend der Anwendung muss optimiert werden.", + "example_sentence_english": "The backend of the application needs to be optimized.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29178 + }, + { + "word": "Barcode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barcode", + "romanization": "Barcode", + "example_sentence_native": "Der Barcode auf dem Produkt ist beschädigt.", + "example_sentence_english": "The barcode on the product is damaged.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29180 + }, + { + "word": "Behandlungsmethode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treatment method", + "romanization": "Behandlungsmethode", + "example_sentence_native": "Die neue Behandlungsmethode zeigt vielversprechende Ergebnisse.", + "example_sentence_english": "The new treatment method shows promising results.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29185 + }, + { + "word": "beispiellos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unprecedented;unparalleled", + "romanization": "beispiellos", + "example_sentence_native": "Das war ein beispielloser Erfolg.", + "example_sentence_english": "That was an unprecedented success.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29186 + }, + { + "word": "beiwohnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attend;to be present at", + "romanization": "beiwohnen", + "example_sentence_native": "Er wird der Konferenz beiwohnen.", + "example_sentence_english": "He will attend the conference.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "bei", + "base_verb": "wohnen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29187 + }, + { + "word": "Benefit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefit;advantage", + "romanization": "Benefit", + "example_sentence_native": "Welchen Benefit bietet dieses Produkt?", + "example_sentence_english": "What benefit does this product offer?", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29188 + }, + { + "word": "Bepflanzung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planting;vegetation", + "romanization": "Bepflanzung", + "example_sentence_native": "Die Bepflanzung des Gartens ist sehr schön.", + "example_sentence_english": "The planting of the garden is very beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29189 + }, + { + "word": "bereden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discuss;to talk over", + "romanization": "bereden", + "example_sentence_native": "Wir müssen das Problem bereden.", + "example_sentence_english": "We need to discuss the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29190 + }, + { + "word": "Besatzungsmitglied", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crew member", + "romanization": "Besatzungsmitglied", + "example_sentence_native": "Jedes Besatzungsmitglied hat eine wichtige Aufgabe.", + "example_sentence_english": "Every crew member has an important task.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29192 + }, + { + "word": "Besessenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsession;possession", + "romanization": "Besessenheit", + "example_sentence_native": "Seine Besessenheit mit Details war beeindruckend.", + "example_sentence_english": "His obsession with details was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29193 + }, + { + "word": "Blutbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blood count;blood test", + "romanization": "Blutbild", + "example_sentence_native": "Das Blutbild zeigte normale Werte.", + "example_sentence_english": "The blood count showed normal values.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29196 + }, + { + "word": "Bodentruppe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ground troop", + "romanization": "Bodentruppe", + "example_sentence_native": "Die Bodentruppen wurden in die Region entsandt.", + "example_sentence_english": "The ground troops were dispatched to the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29197 + }, + { + "word": "Bresche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breach;gap", + "romanization": "Bresche", + "example_sentence_native": "Sie schlugen eine Bresche in die feindlichen Linien.", + "example_sentence_english": "They broke a breach in the enemy lines.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29199 + }, + { + "word": "Bundesbehörde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal authority", + "romanization": "Bundesbehörde", + "example_sentence_native": "Die Bundesbehörde ist für die Einhaltung der Gesetze zuständig.", + "example_sentence_english": "The federal authority is responsible for enforcing the laws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29203 + }, + { + "word": "Bügeleisen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "iron (for clothes)", + "romanization": "Bügeleisen", + "example_sentence_native": "Ich brauche ein Bügeleisen, um meine Hemden zu bügeln.", + "example_sentence_english": "I need an iron to iron my shirts.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29205 + }, + { + "word": "Danksagung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thank-you;acknowledgement", + "romanization": "Danksagung", + "example_sentence_native": "Er schrieb eine Danksagung für die erhaltene Hilfe.", + "example_sentence_english": "He wrote a thank-you for the help received.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29213 + }, + { + "word": "Datenaustausch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data exchange", + "romanization": "Datenaustausch", + "example_sentence_native": "Der sichere Datenaustausch ist sehr wichtig.", + "example_sentence_english": "Secure data exchange is very important.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29214 + }, + { + "word": "Deeskalation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "de-escalation", + "romanization": "Deeskalation", + "example_sentence_native": "Die Deeskalation der Situation ist unser Ziel.", + "example_sentence_english": "The de-escalation of the situation is our goal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29216 + }, + { + "word": "Dekolleté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "décolletage;neckline", + "romanization": "Dekolleté", + "example_sentence_native": "Sie trug ein Kleid mit einem tiefen Dekolleté.", + "example_sentence_english": "She wore a dress with a deep neckline.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29218 + }, + { + "word": "Denkzettel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesson;reminder (often a harsh one)", + "romanization": "Denkzettel", + "example_sentence_native": "Er hat einen Denkzettel bekommen, als er die Prüfung nicht bestanden hat.", + "example_sentence_english": "He got a harsh lesson when he failed the exam.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29219 + }, + { + "word": "dunkelgrün", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark green", + "romanization": "dunkelgrün", + "example_sentence_native": "Sie trug ein dunkelgrünes Kleid.", + "example_sentence_english": "She wore a dark green dress.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29223 + }, + { + "word": "dunkelrot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark red", + "romanization": "dunkelrot", + "example_sentence_native": "Das Auto war dunkelrot lackiert.", + "example_sentence_english": "The car was painted dark red.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29224 + }, + { + "word": "durchdenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to think through;to consider carefully", + "romanization": "durchdenken", + "example_sentence_native": "Er muss den Plan noch einmal gründlich durchdenken.", + "example_sentence_english": "He needs to think through the plan thoroughly again.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29225 + }, + { + "word": "dörflich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural;village-like", + "romanization": "dörflich", + "example_sentence_native": "Sie bevorzugt das dörfliche Leben.", + "example_sentence_english": "She prefers rural life.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29226 + }, + { + "word": "Eber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boar;male pig", + "romanization": "Eber", + "example_sentence_native": "Ein großer Eber durchquerte den Wald.", + "example_sentence_english": "A large boar crossed the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29227 + }, + { + "word": "eigenverantwortlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-responsible;acting on one's own responsibility", + "romanization": "eigenverantwortlich", + "example_sentence_native": "Mitarbeiter sollen eigenverantwortlich handeln.", + "example_sentence_english": "Employees should act on their own responsibility.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29229 + }, + { + "word": "einspeisen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feed in;to inject (e.g.;data;electricity)", + "romanization": "einspeisen", + "example_sentence_native": "Solaranlagen speisen Strom ins Netz ein.", + "example_sentence_english": "Solar systems feed electricity into the grid.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "speisen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29230 + }, + { + "word": "einlenken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give in;to yield;to compromise", + "romanization": "einlenken", + "example_sentence_native": "Nach langer Diskussion musste er schließlich einlenken.", + "example_sentence_english": "After a long discussion, he finally had to give in.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "lenken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29231 + }, + { + "word": "Einschluss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusion;confinement", + "romanization": "Einschluss", + "example_sentence_native": "Der Einschluss von CO2 in Gestein ist eine Methode zur Speicherung.", + "example_sentence_english": "The inclusion of CO2 in rock is a method of storage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29232 + }, + { + "word": "eintönig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monotonous;dull", + "romanization": "eintönig", + "example_sentence_native": "Die Arbeit war sehr eintönig und langweilig.", + "example_sentence_english": "The work was very monotonous and boring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29233 + }, + { + "word": "Einzigartigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uniqueness;singularity", + "romanization": "Einzigartigkeit", + "example_sentence_native": "Die Einzigartigkeit dieses Kunstwerks ist unbestreitbar.", + "example_sentence_english": "The uniqueness of this artwork is undeniable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29234 + }, + { + "word": "Eisbrecher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "icebreaker (ship or social activity)", + "romanization": "Eisbrecher", + "example_sentence_native": "Der Eisbrecher bahnte sich einen Weg durch das gefrorene Meer.", + "example_sentence_english": "The icebreaker made its way through the frozen sea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29235 + }, + { + "word": "Elfe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elf;fairy", + "romanization": "Elfe", + "example_sentence_native": "Die kleine Elfe tanzte im Mondlicht.", + "example_sentence_english": "The little elf danced in the moonlight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29238 + }, + { + "word": "entlegen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remote", + "romanization": "entlegen", + "example_sentence_native": "Das entlegene Dorf war schwer zu erreichen.", + "example_sentence_english": "The remote village was difficult to reach.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29240 + }, + { + "word": "erhängen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hang (oneself;someone)", + "romanization": "erhängen", + "example_sentence_native": "Er drohte, sich zu erhängen.", + "example_sentence_english": "He threatened to hang himself.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29242 + }, + { + "word": "ernstzunehmend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be taken seriously", + "romanization": "ernstzunehmend", + "example_sentence_native": "Das ist ein ernstzunehmendes Problem.", + "example_sentence_english": "This is a serious problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29243 + }, + { + "word": "Europapolitik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "European policy", + "romanization": "Europapolitik", + "example_sentence_native": "Die Europapolitik ist ein wichtiges Thema.", + "example_sentence_english": "European policy is an important topic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29246 + }, + { + "word": "extremistisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremist", + "romanization": "extremistisch", + "example_sentence_native": "Er wurde wegen extremistischer Ansichten kritisiert.", + "example_sentence_english": "He was criticized for extremist views.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29248 + }, + { + "word": "Fachbegriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technical term", + "romanization": "Fachbegriff", + "example_sentence_native": "Das ist ein Fachbegriff aus der Informatik.", + "example_sentence_english": "That is a technical term from computer science.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29249 + }, + { + "word": "Fachkreis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expert circle", + "romanization": "Fachkreis", + "example_sentence_native": "Der Vorschlag wurde im Fachkreis diskutiert.", + "example_sentence_english": "The proposal was discussed in the expert circle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29250 + }, + { + "word": "Fehlgeburt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "miscarriage", + "romanization": "Fehlgeburt", + "example_sentence_native": "Eine Fehlgeburt ist ein tragisches Ereignis.", + "example_sentence_english": "A miscarriage is a tragic event.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29251 + }, + { + "word": "Feminist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminist", + "romanization": "Feminist", + "example_sentence_native": "Er ist ein überzeugter Feminist.", + "example_sentence_english": "He is a convinced feminist.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29253 + }, + { + "word": "Festigung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consolidation", + "romanization": "Festigung", + "example_sentence_native": "Die Festigung der Beziehungen ist wichtig.", + "example_sentence_english": "The consolidation of relations is important.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29254 + }, + { + "word": "Filmgeschichte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "film history", + "romanization": "Filmgeschichte", + "example_sentence_native": "Er studiert Filmgeschichte an der Universität.", + "example_sentence_english": "He studies film history at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29256 + }, + { + "word": "filmisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cinematic", + "romanization": "filmisch", + "example_sentence_native": "Der Regisseur hat einen sehr filmischen Stil.", + "example_sentence_english": "The director has a very cinematic style.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29257 + }, + { + "word": "Firmenwagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company car", + "romanization": "Firmenwagen", + "example_sentence_native": "Er fährt einen Firmenwagen.", + "example_sentence_english": "He drives a company car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29258 + }, + { + "word": "Fjord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fjord", + "romanization": "Fjord", + "example_sentence_native": "Norwegen ist bekannt für seine Fjorde.", + "example_sentence_english": "Norway is known for its fjords.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29259 + }, + { + "word": "Flamingo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flamingo", + "romanization": "Flamingo", + "example_sentence_native": "Der Flamingo steht auf einem Bein im Wasser.", + "example_sentence_english": "The flamingo stands on one leg in the water.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29260 + }, + { + "word": "Flaute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calm;doldrums;slump", + "romanization": "Flaute", + "example_sentence_native": "Nach der Flaute im Sommer zog das Geschäft wieder an.", + "example_sentence_english": "After the slump in summer, business picked up again.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29261 + }, + { + "word": "fluid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluid;liquid;flowing", + "romanization": "fluid", + "example_sentence_native": "Die Bewegung des Tänzers war sehr fluid.", + "example_sentence_english": "The dancer's movement was very fluid.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29262 + }, + { + "word": "Frauenbild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "image of women;female stereotype", + "romanization": "Frauenbild", + "example_sentence_native": "Das Frauenbild hat sich in den letzten Jahrzehnten stark verändert.", + "example_sentence_english": "The image of women has changed significantly in recent decades.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29265 + }, + { + "word": "Fussfessel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ankle cuff;shackle;leg iron", + "romanization": "Fussfessel", + "example_sentence_native": "Der Gefangene trug eine Fussfessel.", + "example_sentence_english": "The prisoner wore an ankle cuff.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29269 + }, + { + "word": "Fäkalie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "faeces;excrement", + "romanization": "Fäkalie", + "example_sentence_native": "Die Fäkalien wurden in einem speziellen Behälter gesammelt.", + "example_sentence_english": "The faeces were collected in a special container.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29270 + }, + { + "word": "Garnitur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set;suite;garnish", + "romanization": "Garnitur", + "example_sentence_native": "Wir haben eine neue Garnitur für das Wohnzimmer gekauft.", + "example_sentence_english": "We bought a new suite for the living room.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29273 + }, + { + "word": "Gartenstadt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garden city", + "romanization": "Gartenstadt", + "example_sentence_native": "Die Gartenstadt ist bekannt für ihre vielen Grünflächen.", + "example_sentence_english": "The garden city is known for its many green spaces.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29274 + }, + { + "word": "gefügig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compliant;submissive;pliable", + "romanization": "gefügig", + "example_sentence_native": "Er war sehr gefügig und folgte allen Anweisungen.", + "example_sentence_english": "He was very compliant and followed all instructions.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29276 + }, + { + "word": "Gegenfrage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counter-question", + "romanization": "Gegenfrage", + "example_sentence_native": "Statt zu antworten, stellte er eine Gegenfrage.", + "example_sentence_english": "Instead of answering, he asked a counter-question.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29277 + }, + { + "word": "Gehirnzelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brain cell", + "romanization": "Gehirnzelle", + "example_sentence_native": "Jede Gehirnzelle spielt eine wichtige Rolle.", + "example_sentence_english": "Every brain cell plays an important role.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29278 + }, + { + "word": "Geissel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scourge;whip;plague", + "romanization": "Geissel", + "example_sentence_native": "Die Armut war eine Geissel für die Gesellschaft.", + "example_sentence_english": "Poverty was a scourge for society.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29279 + }, + { + "word": "Geldschein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banknote", + "romanization": "Geldschein", + "example_sentence_native": "Ich habe einen Geldschein gefunden.", + "example_sentence_english": "I found a banknote.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29280 + }, + { + "word": "pflastern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pave", + "romanization": "pflastern", + "example_sentence_native": "Sie werden die Straße pflastern.", + "example_sentence_english": "They will pave the street.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29282 + }, + { + "word": "geschmackvoll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasteful", + "romanization": "geschmackvoll", + "example_sentence_native": "Sie hat eine sehr geschmackvolle Einrichtung.", + "example_sentence_english": "She has very tasteful decor.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29284 + }, + { + "word": "Geschwür", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ulcer", + "romanization": "Geschwür", + "example_sentence_native": "Das Geschwür musste behandelt werden.", + "example_sentence_english": "The ulcer had to be treated.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29285 + }, + { + "word": "Goldbarren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gold bar", + "romanization": "Goldbarren", + "example_sentence_native": "Er fand einen Goldbarren.", + "example_sentence_english": "He found a gold bar.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29287 + }, + { + "word": "Grabfeld", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burial ground", + "romanization": "Grabfeld", + "example_sentence_native": "Das alte Grabfeld war von Bäumen umgeben.", + "example_sentence_english": "The old burial ground was surrounded by trees.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29290 + }, + { + "word": "grossziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise", + "romanization": "grossziehen", + "example_sentence_native": "Sie musste ihre Kinder alleine grossziehen.", + "example_sentence_english": "She had to raise her children alone.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "gross", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29292 + }, + { + "word": "Gruppenleiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group leader", + "romanization": "Gruppenleiter", + "example_sentence_native": "Der Gruppenleiter hat das Projekt vorgestellt.", + "example_sentence_english": "The group leader presented the project.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29293 + }, + { + "word": "Gutsbesitzer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "estate owner", + "romanization": "Gutsbesitzer", + "example_sentence_native": "Der Gutsbesitzer lebte in einem großen Haus.", + "example_sentence_english": "The estate owner lived in a large house.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29294 + }, + { + "word": "gärtnern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to garden", + "romanization": "gärtnern", + "example_sentence_native": "Sie liebt es, im Sommer zu gärtnern.", + "example_sentence_english": "She loves to garden in the summer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29296 + }, + { + "word": "Hacking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacking", + "romanization": "Hacking", + "example_sentence_native": "Hacking ist ein ernstes Problem.", + "example_sentence_english": "Hacking is a serious problem.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29297 + }, + { + "word": "Hafner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "potter", + "romanization": "Hafner", + "example_sentence_native": "Der Hafner stellte schöne Keramik her.", + "example_sentence_english": "The potter produced beautiful ceramics.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29298 + }, + { + "word": "Halsschmerz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sore throat", + "romanization": "Halsschmerz", + "example_sentence_native": "Ich habe einen Halsschmerz.", + "example_sentence_english": "I have a sore throat.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29299 + }, + { + "word": "hapern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to falter;to be amiss", + "romanization": "hapern", + "example_sentence_native": "Es hapert noch an der Finanzierung des Projekts.", + "example_sentence_english": "The financing of the project is still faltering.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29301 + }, + { + "word": "harmonieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to harmonize;to be in tune", + "romanization": "harmonieren", + "example_sentence_native": "Die Farben harmonieren gut miteinander.", + "example_sentence_english": "The colors harmonize well with each other.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29302 + }, + { + "word": "Hauptwohnsitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primary residence", + "romanization": "Hauptwohnsitz", + "example_sentence_native": "Sein Hauptwohnsitz ist in Berlin.", + "example_sentence_english": "His primary residence is in Berlin.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29304 + }, + { + "word": "Hausfriedensbruch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trespassing;breaking and entering", + "romanization": "Hausfriedensbruch", + "example_sentence_native": "Er wurde wegen Hausfriedensbruchs angezeigt.", + "example_sentence_english": "He was charged with trespassing.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29305 + }, + { + "word": "Heber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifter;siphon;jack", + "romanization": "Heber", + "example_sentence_native": "Er benutzte einen Heber, um das Auto anzuheben.", + "example_sentence_english": "He used a jack to lift the car.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29307 + }, + { + "word": "Heimatdorf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home village;native village", + "romanization": "Heimatdorf", + "example_sentence_native": "Sie kehrte in ihr Heimatdorf zurück.", + "example_sentence_english": "She returned to her home village.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29308 + }, + { + "word": "heimspielen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to play at home (sports)", + "romanization": "heimspielen", + "example_sentence_native": "Die Mannschaft wird nächste Woche heimspielen.", + "example_sentence_english": "The team will play at home next week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heim", + "base_verb": "spielen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29309 + }, + { + "word": "Hemmer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhibitor;suppressor", + "romanization": "Hemmer", + "example_sentence_native": "Dieser Stoff wirkt als Hemmer für das Enzym.", + "example_sentence_english": "This substance acts as an inhibitor for the enzyme.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29311 + }, + { + "word": "herangehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approach;to tackle", + "romanization": "herangehen", + "example_sentence_native": "Wir müssen anders an das Problem herangehen.", + "example_sentence_english": "We need to approach the problem differently.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "heran", + "base_verb": "gehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29313 + }, + { + "word": "herausfordernd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenging;demanding", + "romanization": "herausfordernd", + "example_sentence_native": "Das war eine sehr herausfordernde Aufgabe.", + "example_sentence_english": "That was a very challenging task.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29314 + }, + { + "word": "Hetzjagd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manhunt;witch hunt;chase", + "romanization": "Hetzjagd", + "example_sentence_native": "Die Polizei startete eine Hetzjagd auf den Flüchtigen.", + "example_sentence_english": "The police started a manhunt for the fugitive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29316 + }, + { + "word": "Heuriger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new wine tavern (in Austria)", + "romanization": "Heuriger", + "example_sentence_native": "Wir haben den Abend in einem gemütlichen Heurigen verbracht.", + "example_sentence_english": "We spent the evening in a cozy new wine tavern.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29317 + }, + { + "word": "hinfort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "henceforth;from now on", + "romanization": "hinfort", + "example_sentence_native": "Hinfort werde ich vorsichtiger sein.", + "example_sentence_english": "Henceforth, I will be more careful.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29319 + }, + { + "word": "Hirse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millet", + "romanization": "Hirse", + "example_sentence_native": "Hirse ist ein gesundes Getreide.", + "example_sentence_english": "Millet is a healthy grain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29320 + }, + { + "word": "hissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hoist", + "romanization": "hissen", + "example_sentence_native": "Sie werden die Flagge hissen.", + "example_sentence_english": "They will hoist the flag.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29321 + }, + { + "word": "Hochkultur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high culture;advanced civilization", + "romanization": "Hochkultur", + "example_sentence_native": "Die ägyptische Hochkultur ist faszinierend.", + "example_sentence_english": "The Egyptian high culture is fascinating.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29323 + }, + { + "word": "Hochspannung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high voltage;great tension", + "romanization": "Hochspannung", + "example_sentence_native": "Vorsicht, hier ist Hochspannung!", + "example_sentence_english": "Caution, high voltage here!", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29324 + }, + { + "word": "Hämorrhoide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemorrhoid", + "romanization": "Hämorrhoide", + "example_sentence_native": "Eine Hämorrhoide kann sehr schmerzhaft sein.", + "example_sentence_english": "A hemorrhoid can be very painful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29328 + }, + { + "word": "Häusler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cottager;smallholder", + "romanization": "Häusler", + "example_sentence_native": "Der Häusler lebte in einem kleinen Haus am Rande des Dorfes.", + "example_sentence_english": "The cottager lived in a small house on the edge of the village.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29330 + }, + { + "word": "Immobilienpreis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate price", + "romanization": "Immobilienpreis", + "example_sentence_native": "Die Immobilienpreise sind in den letzten Jahren stark gestiegen.", + "example_sentence_english": "Real estate prices have risen sharply in recent years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29332 + }, + { + "word": "Informationsquelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "source of information", + "romanization": "Informationsquelle", + "example_sentence_native": "Das Internet ist eine wichtige Informationsquelle.", + "example_sentence_english": "The internet is an important source of information.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29333 + }, + { + "word": "Infostand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "information booth;stand", + "romanization": "Infostand", + "example_sentence_native": "Am Infostand erhalten Sie alle nötigen Informationen.", + "example_sentence_english": "You can get all necessary information at the information booth.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29334 + }, + { + "word": "Innerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offal;entrails;internal organ", + "romanization": "Innerei", + "example_sentence_native": "Viele Leute essen keine Innereien.", + "example_sentence_english": "Many people don't eat offal.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29335 + }, + { + "word": "Interna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internal matters;inside information", + "romanization": "Interna", + "example_sentence_native": "Die Interna des Unternehmens sollten nicht nach außen dringen.", + "example_sentence_english": "The internal matters of the company should not leak out.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29336 + }, + { + "word": "Inzucht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inbreeding", + "romanization": "Inzucht", + "example_sentence_native": "Inzucht kann zu genetischen Problemen führen.", + "example_sentence_english": "Inbreeding can lead to genetic problems.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29337 + }, + { + "word": "jugoslawisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Yugoslavian", + "romanization": "jugoslawisch", + "example_sentence_native": "Er hat jugoslawische Wurzeln.", + "example_sentence_english": "He has Yugoslavian roots.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29341 + }, + { + "word": "Kapitalertrag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capital gain;yield", + "romanization": "Kapitalertrag", + "example_sentence_native": "Der Kapitalertrag aus den Aktien war hoch.", + "example_sentence_english": "The capital gain from the shares was high.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29342 + }, + { + "word": "Katheter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catheter", + "romanization": "Katheter", + "example_sentence_native": "Der Patient benötigte einen Katheter.", + "example_sentence_english": "The patient needed a catheter.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29344 + }, + { + "word": "kitzeln", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tickle", + "romanization": "kitzeln", + "example_sentence_native": "Es kitzelt mich an der Nase.", + "example_sentence_english": "It tickles my nose.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29345 + }, + { + "word": "Klimaziel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climate target", + "romanization": "Klimaziel", + "example_sentence_native": "Die Regierung hat ehrgeizige Klimaziele gesetzt.", + "example_sentence_english": "The government has set ambitious climate targets.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29346 + }, + { + "word": "knistern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crackle;to rustle", + "romanization": "knistern", + "example_sentence_native": "Das Feuer knistert gemütlich im Kamin.", + "example_sentence_english": "The fire crackles cozily in the fireplace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29348 + }, + { + "word": "Knolle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuber;bulb;lump", + "romanization": "Knolle", + "example_sentence_native": "Kartoffeln sind Knollen.", + "example_sentence_english": "Potatoes are tubers.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29349 + }, + { + "word": "Koeffizient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coefficient", + "romanization": "Koeffizient", + "example_sentence_native": "Der Koeffizient in der Gleichung ist 5.", + "example_sentence_english": "The coefficient in the equation is 5.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29350 + }, + { + "word": "Kolumbianer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Colombian (person)", + "romanization": "Kolumbianer", + "example_sentence_native": "Er ist ein Kolumbianer.", + "example_sentence_english": "He is a Colombian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29351 + }, + { + "word": "kommentarlos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without comment;uncommented", + "romanization": "kommentarlos", + "example_sentence_native": "Er verließ den Raum kommentarlos.", + "example_sentence_english": "He left the room without comment.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29352 + }, + { + "word": "Kostenübernahme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assumption;coverage of costs", + "romanization": "Kostenübernahme", + "example_sentence_native": "Die Krankenkasse hat die Kostenübernahme zugesagt.", + "example_sentence_english": "The health insurance company has agreed to cover the costs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29353 + }, + { + "word": "Krake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "octopus", + "romanization": "Krake", + "example_sentence_native": "Die Krake hat acht Arme.", + "example_sentence_english": "The octopus has eight arms.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29354 + }, + { + "word": "Kreditnehmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "borrower", + "romanization": "Kreditnehmer", + "example_sentence_native": "Der Kreditnehmer muss die Zinsen pünktlich zahlen.", + "example_sentence_english": "The borrower must pay the interest on time.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29355 + }, + { + "word": "Kreditwürdigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creditworthiness", + "romanization": "Kreditwürdigkeit", + "example_sentence_native": "Seine Kreditwürdigkeit wurde geprüft.", + "example_sentence_english": "His creditworthiness was checked.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29356 + }, + { + "word": "Kriegsgebiet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "war zone", + "romanization": "Kriegsgebiet", + "example_sentence_native": "Das Gebiet wurde zum Kriegsgebiet erklärt.", + "example_sentence_english": "The area was declared a war zone.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29357 + }, + { + "word": "Kriegsminister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "minister of war", + "romanization": "Kriegsminister", + "example_sentence_native": "Der Kriegsminister traf wichtige Entscheidungen.", + "example_sentence_english": "The minister of war made important decisions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29358 + }, + { + "word": "Kriegszeiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wartime;times of war", + "romanization": "Kriegszeiten", + "example_sentence_native": "In Kriegszeiten ist das Leben schwierig.", + "example_sentence_english": "Life is difficult in wartime.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29359 + }, + { + "word": "Krätze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scabies", + "romanization": "Krätze", + "example_sentence_native": "Die Krätze ist eine ansteckende Hautkrankheit.", + "example_sentence_english": "Scabies is a contagious skin disease.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29360 + }, + { + "word": "Kämpferin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female fighter", + "romanization": "Kämpferin", + "example_sentence_native": "Sie ist eine wahre Kämpferin und gibt niemals auf.", + "example_sentence_english": "She is a true fighter and never gives up.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29363 + }, + { + "word": "ködern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bait;to lure", + "romanization": "ködern", + "example_sentence_native": "Er versuchte, die Fische mit Würmern zu ködern.", + "example_sentence_english": "He tried to bait the fish with worms.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29365 + }, + { + "word": "lachhaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laughable;ridiculous", + "romanization": "lachhaft", + "example_sentence_native": "Seine Ausrede war einfach lachhaft.", + "example_sentence_english": "His excuse was simply laughable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29367 + }, + { + "word": "Landtagspräsident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "President of the State Parliament", + "romanization": "Landtagspräsident", + "example_sentence_native": "Der Landtagspräsident eröffnete die Sitzung.", + "example_sentence_english": "The President of the State Parliament opened the session.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29371 + }, + { + "word": "Lebensgemeinschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community;cohabitation;partnership", + "romanization": "Lebensgemeinschaft", + "example_sentence_native": "Sie leben in einer eingetragenen Lebensgemeinschaft.", + "example_sentence_english": "They live in a registered partnership.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29373 + }, + { + "word": "Lehrerbildung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teacher training", + "romanization": "Lehrerbildung", + "example_sentence_native": "Die Qualität der Lehrerbildung ist entscheidend.", + "example_sentence_english": "The quality of teacher training is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29375 + }, + { + "word": "Leiharbeiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary worker", + "romanization": "Leiharbeiter", + "example_sentence_native": "Viele Firmen stellen Leiharbeiter ein.", + "example_sentence_english": "Many companies hire temporary workers.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29376 + }, + { + "word": "Libero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "libero (sports)", + "romanization": "Libero", + "example_sentence_native": "Der Libero ist für die Verteidigung zuständig.", + "example_sentence_english": "The libero is responsible for defense.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29378 + }, + { + "word": "Lokalzeitung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local newspaper", + "romanization": "Lokalzeitung", + "example_sentence_native": "Die Lokalzeitung berichtet über Ereignisse in der Stadt.", + "example_sentence_english": "The local newspaper reports on events in the city.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29381 + }, + { + "word": "Masterstudium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master's degree program", + "romanization": "Masterstudium", + "example_sentence_native": "Sie hat sich für ein Masterstudium in Berlin entschieden.", + "example_sentence_english": "She decided on a master's degree program in Berlin.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29387 + }, + { + "word": "Mehrzweckhalle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multi-purpose hall", + "romanization": "Mehrzweckhalle", + "example_sentence_native": "Die Mehrzweckhalle wird für Konzerte und Sportveranstaltungen genutzt.", + "example_sentence_english": "The multi-purpose hall is used for concerts and sports events.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29390 + }, + { + "word": "Meldepflicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reporting obligation;duty to register", + "romanization": "Meldepflicht", + "example_sentence_native": "In Deutschland besteht eine Meldepflicht für den Wohnsitz.", + "example_sentence_english": "In Germany, there is a reporting obligation for one's place of residence.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29391 + }, + { + "word": "menschenverachtend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhumane;contemptuous of human beings", + "romanization": "menschenverachtend", + "example_sentence_native": "Seine menschenverachtende Haltung schockierte alle.", + "example_sentence_english": "His inhumane attitude shocked everyone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29393 + }, + { + "word": "mikroskopisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "microscopic", + "romanization": "mikroskopisch", + "example_sentence_native": "Wir untersuchten die mikroskopischen Organismen.", + "example_sentence_english": "We examined the microscopic organisms.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29397 + }, + { + "word": "Mittelstürmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "center forward", + "romanization": "Mittelstürmer", + "example_sentence_native": "Der Mittelstürmer schoss das entscheidende Tor.", + "example_sentence_english": "The center forward scored the decisive goal.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29400 + }, + { + "word": "Monatsschrift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monthly magazine", + "romanization": "Monatsschrift", + "example_sentence_native": "Er abonniert eine wissenschaftliche Monatsschrift.", + "example_sentence_english": "He subscribes to a scientific monthly magazine.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29402 + }, + { + "word": "Musikwissenschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "musicology", + "romanization": "Musikwissenschaft", + "example_sentence_native": "Sie studiert Musikwissenschaft an der Universität.", + "example_sentence_english": "She studies musicology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29407 + }, + { + "word": "Nachrede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gossip", + "romanization": "Nachrede", + "example_sentence_native": "Er fürchtete die Nachrede der Leute.", + "example_sentence_english": "He feared the gossip of the people.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29409 + }, + { + "word": "Nahkampf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "close combat", + "romanization": "Nahkampf", + "example_sentence_native": "Im Nahkampf ist Schnelligkeit entscheidend.", + "example_sentence_english": "In close combat, speed is crucial.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29410 + }, + { + "word": "Nahrungskette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food chain", + "romanization": "Nahrungskette", + "example_sentence_native": "Jedes Lebewesen spielt eine Rolle in der Nahrungskette.", + "example_sentence_english": "Every living creature plays a role in the food chain.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29411 + }, + { + "word": "napoleonisch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Napoleonic", + "romanization": "napoleonisch", + "example_sentence_native": "Die napoleonischen Kriege prägten Europa.", + "example_sentence_english": "The Napoleonic Wars shaped Europe.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29412 + }, + { + "word": "nominell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nominal", + "romanization": "nominell", + "example_sentence_native": "Der nominelle Wert des Produkts ist höher als der reale.", + "example_sentence_english": "The nominal value of the product is higher than the real one.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29415 + }, + { + "word": "nostalgisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nostalgic", + "romanization": "nostalgisch", + "example_sentence_native": "Sie wurde nostalgisch, als sie die alten Fotos sah.", + "example_sentence_english": "She became nostalgic when she saw the old photos.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29417 + }, + { + "word": "Novellierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amendment", + "romanization": "Novellierung", + "example_sentence_native": "Die Novellierung des Gesetzes ist in Arbeit.", + "example_sentence_english": "The amendment of the law is in progress.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29418 + }, + { + "word": "optimiert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimized", + "romanization": "optimiert", + "example_sentence_native": "Die Software wurde optimiert.", + "example_sentence_english": "The software was optimized.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29420 + }, + { + "word": "ordnungsgemäß", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proper;in due form", + "romanization": "ordnungsgemäß", + "example_sentence_native": "Die Dokumente wurden ordnungsgemäß eingereicht.", + "example_sentence_english": "The documents were submitted in due form.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29421 + }, + { + "word": "Ortszentrum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "town center;city center", + "romanization": "Ortszentrum", + "example_sentence_native": "Das Hotel liegt im Ortszentrum.", + "example_sentence_english": "The hotel is located in the town center.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29423 + }, + { + "word": "Osterhase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Easter Bunny", + "romanization": "Osterhase", + "example_sentence_native": "Der Osterhase bringt die Eier.", + "example_sentence_english": "The Easter Bunny brings the eggs.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29424 + }, + { + "word": "ostwärts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eastward;eastwards", + "romanization": "ostwärts", + "example_sentence_native": "Wir fahren ostwärts.", + "example_sentence_english": "We are driving eastward.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29425 + }, + { + "word": "Outing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outing (e.g.;coming out;or a trip)", + "romanization": "Outing", + "example_sentence_native": "Sein Outing war eine große Erleichterung für ihn.", + "example_sentence_english": "His coming out was a great relief for him.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29427 + }, + { + "word": "Ox", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ox", + "romanization": "Ox", + "example_sentence_native": "Der Bauer hat einen starken Ox.", + "example_sentence_english": "The farmer has a strong ox.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29428 + }, + { + "word": "Pflänzchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small plant;seedling", + "romanization": "Pflänzchen", + "example_sentence_native": "Das kleine Pflänzchen wächst schnell.", + "example_sentence_english": "The small plant grows quickly.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29432 + }, + { + "word": "Photosynthese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "photosynthesis", + "romanization": "Photosynthese", + "example_sentence_native": "Pflanzen betreiben Photosynthese.", + "example_sentence_english": "Plants perform photosynthesis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29433 + }, + { + "word": "Piccolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piccolo (flute);small bottle of sparkling wine", + "romanization": "Piccolo", + "example_sentence_native": "Er spielt die Piccolo.", + "example_sentence_english": "He plays the piccolo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29434 + }, + { + "word": "Pipe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pipe (e.g.;for smoking;or in IT for data flow)", + "romanization": "Pipe", + "example_sentence_native": "Er raucht eine Pipe.", + "example_sentence_english": "He smokes a pipe.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29437 + }, + { + "word": "Plastikmüll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plastic waste;garbage", + "romanization": "Plastikmüll", + "example_sentence_native": "Wir müssen den Plastikmüll reduzieren.", + "example_sentence_english": "We must reduce plastic waste.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29438 + }, + { + "word": "Platinum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platinum", + "romanization": "Platinum", + "example_sentence_native": "Platinum ist ein seltenes Metall.", + "example_sentence_english": "Platinum is a rare metal.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29439 + }, + { + "word": "Playa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beach", + "romanization": "Playa", + "example_sentence_native": "Wir verbrachten den ganzen Tag an der Playa.", + "example_sentence_english": "We spent the whole day at the beach.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29440 + }, + { + "word": "Pluralismus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pluralism", + "romanization": "Pluralismus", + "example_sentence_native": "Die Gesellschaft zeichnet sich durch einen hohen Grad an Pluralismus aus.", + "example_sentence_english": "The society is characterized by a high degree of pluralism.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29441 + }, + { + "word": "pokern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to play poker", + "romanization": "pokern", + "example_sentence_native": "Er liebt es, am Wochenende mit Freunden zu pokern.", + "example_sentence_english": "He loves to play poker with friends on the weekend.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29442 + }, + { + "word": "Polin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Polish woman", + "romanization": "Polin", + "example_sentence_native": "Sie ist eine Polin und lebt seit fünf Jahren in Berlin.", + "example_sentence_english": "She is a Polish woman and has lived in Berlin for five years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29443 + }, + { + "word": "Polymer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polymer", + "romanization": "Polymer", + "example_sentence_native": "Dieses Material besteht aus einem speziellen Polymer.", + "example_sentence_english": "This material consists of a special polymer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29444 + }, + { + "word": "Preisträgerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female prize winner", + "romanization": "Preisträgerin", + "example_sentence_native": "Die Preisträgerin nahm ihren Preis mit Stolz entgegen.", + "example_sentence_english": "The female prize winner accepted her award with pride.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29447 + }, + { + "word": "Pressearbeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "press work", + "romanization": "Pressearbeit", + "example_sentence_native": "Sie ist für die gesamte Pressearbeit des Unternehmens verantwortlich.", + "example_sentence_english": "She is responsible for all press work of the company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29448 + }, + { + "word": "Privatbank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private bank", + "romanization": "Privatbank", + "example_sentence_native": "Er hat sein Konto bei einer Privatbank eröffnet.", + "example_sentence_english": "He opened his account at a private bank.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29450 + }, + { + "word": "Profiliga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professional league", + "romanization": "Profiliga", + "example_sentence_native": "Er träumt davon, in der Profiliga zu spielen.", + "example_sentence_english": "He dreams of playing in the professional league.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29451 + }, + { + "word": "Qualifikationsspiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification match", + "romanization": "Qualifikationsspiel", + "example_sentence_native": "Das nächste Qualifikationsspiel ist entscheidend für die Meisterschaft.", + "example_sentence_english": "The next qualification match is crucial for the championship.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29455 + }, + { + "word": "Radfahrerin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female cyclist", + "romanization": "Radfahrerin", + "example_sentence_native": "Die Radfahrerin trug einen Helm zum Schutz.", + "example_sentence_english": "The female cyclist wore a helmet for protection.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29456 + }, + { + "word": "Rechenleistung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "computing power", + "romanization": "Rechenleistung", + "example_sentence_native": "Die neue CPU bietet eine beeindruckende Rechenleistung.", + "example_sentence_english": "The new CPU offers impressive computing power.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29460 + }, + { + "word": "Rechnungslegung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accounting", + "romanization": "Rechnungslegung", + "example_sentence_native": "Die Rechnungslegung muss den gesetzlichen Vorschriften entsprechen.", + "example_sentence_english": "The accounting must comply with legal requirements.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29461 + }, + { + "word": "Rechteinhaber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rights holder", + "romanization": "Rechteinhaber", + "example_sentence_native": "Der Rechteinhaber hat die Veröffentlichung des Films genehmigt.", + "example_sentence_english": "The rights holder has approved the release of the film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29462 + }, + { + "word": "Reeder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipowner", + "romanization": "Reeder", + "example_sentence_native": "Der Reeder besitzt eine Flotte von Containerschiffen.", + "example_sentence_english": "The shipowner owns a fleet of container ships.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29463 + }, + { + "word": "Regierungsbeteiligung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "government participation", + "romanization": "Regierungsbeteiligung", + "example_sentence_native": "Die Partei strebt eine Regierungsbeteiligung an.", + "example_sentence_english": "The party aims for government participation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29464 + }, + { + "word": "Regierungswechsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change of government", + "romanization": "Regierungswechsel", + "example_sentence_native": "Nach den Wahlen kam es zu einem Regierungswechsel.", + "example_sentence_english": "After the elections, there was a change of government.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29465 + }, + { + "word": "Regionalligist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regional league team", + "romanization": "Regionalligist", + "example_sentence_native": "Der Regionalligist schlug überraschend den Erstligisten.", + "example_sentence_english": "The regional league team surprisingly beat the first division team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29466 + }, + { + "word": "Relativierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relativization", + "romanization": "Relativierung", + "example_sentence_native": "Seine Aussage bedarf einer Relativierung.", + "example_sentence_english": "His statement requires a relativization.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29467 + }, + { + "word": "Religionszugehörigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "religious affiliation", + "romanization": "Religionszugehörigkeit", + "example_sentence_native": "Die Religionszugehörigkeit ist in Deutschland frei wählbar.", + "example_sentence_english": "Religious affiliation is freely selectable in Germany.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29468 + }, + { + "word": "Rentier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reindeer", + "romanization": "Rentier", + "example_sentence_native": "Das Rentier lebt in kalten Regionen.", + "example_sentence_english": "The reindeer lives in cold regions.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29469 + }, + { + "word": "Reparation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reparation", + "romanization": "Reparation", + "example_sentence_native": "Nach dem Krieg wurden Reparationen gefordert.", + "example_sentence_english": "After the war, reparations were demanded.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29470 + }, + { + "word": "Rückgriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recourse", + "romanization": "Rückgriff", + "example_sentence_native": "Wir müssen auf unsere Reserven Rückgriff nehmen.", + "example_sentence_english": "We must have recourse to our reserves.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29477 + }, + { + "word": "Saisonverlauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course of the season", + "romanization": "Saisonverlauf", + "example_sentence_native": "Der Saisonverlauf war für das Team sehr erfolgreich.", + "example_sentence_english": "The course of the season was very successful for the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29479 + }, + { + "word": "Samstagnachmittag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Saturday afternoon", + "romanization": "Samstagnachmittag", + "example_sentence_native": "Wir treffen uns am Samstagnachmittag.", + "example_sentence_english": "We are meeting on Saturday afternoon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29480 + }, + { + "word": "Sarkophag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sarcophagus", + "romanization": "Sarkophag", + "example_sentence_native": "Der Sarkophag war reich verziert.", + "example_sentence_english": "The sarcophagus was richly decorated.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29481 + }, + { + "word": "schimmern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shimmer;to gleam", + "romanization": "schimmern", + "example_sentence_native": "Das Wasser schimmerte im Mondlicht.", + "example_sentence_english": "The water shimmered in the moonlight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29485 + }, + { + "word": "schleierhaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysterious;inexplicable", + "romanization": "schleierhaft", + "example_sentence_native": "Es ist mir schleierhaft, wie das passieren konnte.", + "example_sentence_english": "It is inexplicable to me how that could have happened.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29487 + }, + { + "word": "Schoner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schooner", + "romanization": "Schoner", + "example_sentence_native": "Der alte Schoner segelte langsam in den Hafen.", + "example_sentence_english": "The old schooner sailed slowly into the harbor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29488 + }, + { + "word": "schrill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shrill;piercing", + "romanization": "schrill", + "example_sentence_native": "Sie hörte einen schrillen Schrei.", + "example_sentence_english": "She heard a shrill scream.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29489 + }, + { + "word": "Schutzkleidung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protective clothing", + "romanization": "Schutzkleidung", + "example_sentence_native": "Das Tragen von Schutzkleidung ist Pflicht.", + "example_sentence_english": "Wearing protective clothing is mandatory.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29490 + }, + { + "word": "Schutzschild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shield;protective shield", + "romanization": "Schutzschild", + "example_sentence_native": "Er hob seinen Schutzschild, um sich zu verteidigen.", + "example_sentence_english": "He raised his shield to defend himself.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29491 + }, + { + "word": "Schweisser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welder", + "romanization": "Schweisser", + "example_sentence_native": "Der Schweisser trug eine Schutzmaske.", + "example_sentence_english": "The welder wore a protective mask.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29493 + }, + { + "word": "Schöffe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lay judge;assessor", + "romanization": "Schöffe", + "example_sentence_native": "Ein Schöffe ist ein ehrenamtlicher Richter.", + "example_sentence_english": "A lay judge is an honorary judge.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29494 + }, + { + "word": "Scrub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrub (e.g.;medical uniform;body scrub)", + "romanization": "Scrub", + "example_sentence_native": "Sie trug einen blauen Scrub im Krankenhaus.", + "example_sentence_english": "She wore blue scrubs in the hospital.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29495 + }, + { + "word": "Selbstbeherrschung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-control;self-restraint", + "romanization": "Selbstbeherrschung", + "example_sentence_native": "Er zeigte große Selbstbeherrschung in der schwierigen Situation.", + "example_sentence_english": "He showed great self-control in the difficult situation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29497 + }, + { + "word": "Selbstüberschätzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overestimation of oneself;conceit", + "romanization": "Selbstüberschätzung", + "example_sentence_native": "Seine Selbstüberschätzung führte zu Fehlern.", + "example_sentence_english": "His overestimation of himself led to mistakes.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29498 + }, + { + "word": "sibirisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Siberian", + "romanization": "sibirisch", + "example_sentence_native": "Die sibirische Kälte ist extrem.", + "example_sentence_english": "The Siberian cold is extreme.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29501 + }, + { + "word": "Sicherheitskonzept", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security concept", + "romanization": "Sicherheitskonzept", + "example_sentence_native": "Das neue Sicherheitskonzept wurde vorgestellt.", + "example_sentence_english": "The new security concept was presented.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29502 + }, + { + "word": "signiert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signed", + "romanization": "signiert", + "example_sentence_native": "Ich habe ein signiertes Buch.", + "example_sentence_english": "I have a signed book.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29503 + }, + { + "word": "Silo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silo", + "romanization": "Silo", + "example_sentence_native": "Das Getreide wird im Silo gelagert.", + "example_sentence_english": "The grain is stored in the silo.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29504 + }, + { + "word": "Sixpack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "six-pack", + "romanization": "Sixpack", + "example_sentence_native": "Er kaufte ein Sixpack Bier.", + "example_sentence_english": "He bought a six-pack of beer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29505 + }, + { + "word": "Skat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Skat (card game)", + "romanization": "Skat", + "example_sentence_native": "Sie spielen jeden Abend Skat.", + "example_sentence_english": "They play Skat every evening.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29506 + }, + { + "word": "Slang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slang", + "romanization": "Slang", + "example_sentence_native": "Er benutzt viel Jugendslang.", + "example_sentence_english": "He uses a lot of youth slang.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29507 + }, + { + "word": "Smaragd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerald", + "romanization": "Smaragd", + "example_sentence_native": "Der Ring ist mit einem Smaragd besetzt.", + "example_sentence_english": "The ring is set with an emerald.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29509 + }, + { + "word": "Sozialrecht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social law", + "romanization": "Sozialrecht", + "example_sentence_native": "Sie studiert Sozialrecht an der Universität.", + "example_sentence_english": "She studies social law at the university.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29510 + }, + { + "word": "Sperber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sparrowhawk", + "romanization": "Sperber", + "example_sentence_native": "Ein Sperber kreiste über dem Feld.", + "example_sentence_english": "A sparrowhawk circled over the field.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29511 + }, + { + "word": "Sportstätte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sports facility", + "romanization": "Sportstätte", + "example_sentence_native": "Die neue Sportstätte bietet viele Möglichkeiten.", + "example_sentence_english": "The new sports facility offers many possibilities.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29513 + }, + { + "word": "springend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jumping", + "romanization": "springend", + "example_sentence_native": "Das springende Kind lachte laut.", + "example_sentence_english": "The jumping child laughed loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29514 + }, + { + "word": "Springreiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "show jumper", + "romanization": "Springreiter", + "example_sentence_native": "Der Springreiter gewann das Turnier.", + "example_sentence_english": "The show jumper won the tournament.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29515 + }, + { + "word": "Spaß", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fun", + "romanization": "Spaß", + "example_sentence_native": "Wir hatten viel Spaß auf der Party.", + "example_sentence_english": "We had a lot of fun at the party.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29516 + }, + { + "word": "spöttisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mocking;scornful", + "romanization": "spöttisch", + "example_sentence_native": "Er gab eine spöttische Bemerkung ab.", + "example_sentence_english": "He made a mocking remark.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29517 + }, + { + "word": "Stallung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stable;stall (for animals)", + "romanization": "Stallung", + "example_sentence_native": "Die Pferde stehen in der Stallung.", + "example_sentence_english": "The horses are in the stable.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29518 + }, + { + "word": "Stickerei", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embroidery", + "romanization": "Stickerei", + "example_sentence_native": "Die Stickerei auf dem Kissen ist sehr schön.", + "example_sentence_english": "The embroidery on the cushion is very beautiful.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29521 + }, + { + "word": "Stiege", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flight of stairs;staircase", + "romanization": "Stiege", + "example_sentence_native": "Er stieg die Stiege hinauf zum Dachboden.", + "example_sentence_english": "He climbed the stairs up to the attic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29522 + }, + { + "word": "Strahler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spotlight;radiator;climber", + "romanization": "Strahler", + "example_sentence_native": "Der Strahler beleuchtete die Bühne.", + "example_sentence_english": "The spotlight illuminated the stage.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29523 + }, + { + "word": "Strassenfest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "street festival", + "romanization": "Strassenfest", + "example_sentence_native": "Wir gehen am Wochenende zum Straßenfest.", + "example_sentence_english": "We are going to the street festival on the weekend.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29524 + }, + { + "word": "Strumpf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stocking;sock", + "romanization": "Strumpf", + "example_sentence_native": "Er zog einen warmen Strumpf an.", + "example_sentence_english": "He put on a warm sock.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29525 + }, + { + "word": "säuberlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neat;tidy;meticulous", + "romanization": "säuberlich", + "example_sentence_native": "Sie schreibt sehr säuberlich.", + "example_sentence_english": "She writes very neatly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29529 + }, + { + "word": "Tauglichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitability;aptitude;fitness", + "romanization": "Tauglichkeit", + "example_sentence_native": "Die Tauglichkeit des Materials wurde geprüft.", + "example_sentence_english": "The suitability of the material was tested.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29531 + }, + { + "word": "Tennisspieler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tennis player", + "romanization": "Tennisspieler", + "example_sentence_native": "Der Tennisspieler gewann das Match.", + "example_sentence_english": "The tennis player won the match.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29532 + }, + { + "word": "Terminplan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schedule;timetable", + "romanization": "Terminplan", + "example_sentence_native": "Ich muss meinen Terminplan überprüfen.", + "example_sentence_english": "I need to check my schedule.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29533 + }, + { + "word": "terrorisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to terrorize", + "romanization": "terrorisieren", + "example_sentence_native": "Die Gruppe versuchte, die Bevölkerung zu terrorisieren.", + "example_sentence_english": "The group tried to terrorize the population.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29534 + }, + { + "word": "Themenbereich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject area;topic area", + "romanization": "Themenbereich", + "example_sentence_native": "Dieser Themenbereich ist sehr komplex.", + "example_sentence_english": "This subject area is very complex.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29537 + }, + { + "word": "Thrombose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thrombosis", + "romanization": "Thrombose", + "example_sentence_native": "Eine tiefe Venenthrombose kann gefährlich sein.", + "example_sentence_english": "A deep vein thrombosis can be dangerous.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29538 + }, + { + "word": "tiefgründig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profound;deep", + "romanization": "tiefgründig", + "example_sentence_native": "Er hatte eine sehr tiefgründige Analyse des Problems.", + "example_sentence_english": "He had a very profound analysis of the problem.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29539 + }, + { + "word": "Transportkosten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transport costs", + "romanization": "Transportkosten", + "example_sentence_native": "Die Transportkosten sind im Preis inbegriffen.", + "example_sentence_english": "The transport costs are included in the price.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29542 + }, + { + "word": "Traumberuf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dream job", + "romanization": "Traumberuf", + "example_sentence_native": "Mein Traumberuf ist es, Tierarzt zu werden.", + "example_sentence_english": "My dream job is to become a veterinarian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29543 + }, + { + "word": "triumphieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to triumph", + "romanization": "triumphieren", + "example_sentence_native": "Die Mannschaft konnte am Ende triumphieren.", + "example_sentence_english": "The team was able to triumph in the end.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29545 + }, + { + "word": "Truthahn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turkey", + "romanization": "Truthahn", + "example_sentence_native": "Zum Erntedankfest gab es einen großen Truthahn.", + "example_sentence_english": "For Thanksgiving, there was a big turkey.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29548 + }, + { + "word": "Tuner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuner", + "romanization": "Tuner", + "example_sentence_native": "Der Gitarrist benutzte einen elektronischen Tuner.", + "example_sentence_english": "The guitarist used an electronic tuner.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29549 + }, + { + "word": "Turniersieg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tournament victory", + "romanization": "Turniersieg", + "example_sentence_native": "Der Turniersieg war eine große Überraschung.", + "example_sentence_english": "The tournament victory was a big surprise.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29551 + }, + { + "word": "Turnus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cycle", + "romanization": "Turnus", + "example_sentence_native": "Die Sitzungen finden im wöchentlichen Turnus statt.", + "example_sentence_english": "The meetings take place on a weekly cycle.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29552 + }, + { + "word": "Umschwung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turnaround", + "romanization": "Umschwung", + "example_sentence_native": "Es gab einen plötzlichen Umschwung in der öffentlichen Meinung.", + "example_sentence_english": "There was a sudden turnaround in public opinion.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29554 + }, + { + "word": "Umtausch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange", + "romanization": "Umtausch", + "example_sentence_native": "Der Umtausch der Ware ist innerhalb von 14 Tagen möglich.", + "example_sentence_english": "The exchange of the goods is possible within 14 days.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29555 + }, + { + "word": "unbeteiligt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uninvolved", + "romanization": "unbeteiligt", + "example_sentence_native": "Er blieb unbeteiligt an der Diskussion.", + "example_sentence_english": "He remained uninvolved in the discussion.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29556 + }, + { + "word": "unkenntlich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unrecognizable", + "romanization": "unkenntlich", + "example_sentence_native": "Nach dem Unfall war das Auto unkenntlich.", + "example_sentence_english": "After the accident, the car was unrecognizable.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29557 + }, + { + "word": "Unterhaltungselektronik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumer electronics", + "romanization": "Unterhaltungselektronik", + "example_sentence_native": "Der Laden bietet eine große Auswahl an Unterhaltungselektronik.", + "example_sentence_english": "The store offers a wide selection of consumer electronics.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29558 + }, + { + "word": "unterordnen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subordinate", + "romanization": "unterordnen", + "example_sentence_native": "Man muss sich den Regeln unterordnen.", + "example_sentence_english": "One must subordinate oneself to the rules.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29559 + }, + { + "word": "Unterschenkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lower leg", + "romanization": "Unterschenkel", + "example_sentence_native": "Er hat sich den Unterschenkel gebrochen.", + "example_sentence_english": "He broke his lower leg.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29560 + }, + { + "word": "Unwissen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorance", + "romanization": "Unwissen", + "example_sentence_native": "Sein Unwissen über das Thema war offensichtlich.", + "example_sentence_english": "His ignorance about the topic was obvious.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29561 + }, + { + "word": "unzertrennlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inseparable", + "romanization": "unzertrennlich", + "example_sentence_native": "Sie sind seit ihrer Kindheit unzertrennlich.", + "example_sentence_english": "They have been inseparable since their childhood.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29562 + }, + { + "word": "Urgestein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bedrock;veteran", + "romanization": "Urgestein", + "example_sentence_native": "Er ist ein Urgestein des Vereins.", + "example_sentence_english": "He is a veteran of the club.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29564 + }, + { + "word": "Variabilität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variability", + "romanization": "Variabilität", + "example_sentence_native": "Die Variabilität der Daten war überraschend.", + "example_sentence_english": "The variability of the data was surprising.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29565 + }, + { + "word": "verbraucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "used up;worn out;exhausted", + "romanization": "verbraucht", + "example_sentence_native": "Nach dem langen Tag fühlte er sich völlig verbraucht.", + "example_sentence_english": "After the long day, he felt completely exhausted.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29566 + }, + { + "word": "Vereidigung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "swearing-in;inauguration", + "romanization": "Vereidigung", + "example_sentence_native": "Die Vereidigung des neuen Präsidenten findet nächste Woche statt.", + "example_sentence_english": "The swearing-in of the new president will take place next week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29567 + }, + { + "word": "Verkehrskontrolle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic stop;traffic control", + "romanization": "Verkehrskontrolle", + "example_sentence_native": "Er wurde bei einer Verkehrskontrolle angehalten.", + "example_sentence_english": "He was stopped at a traffic control.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29568 + }, + { + "word": "Verklärung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfiguration;idealization", + "romanization": "Verklärung", + "example_sentence_native": "Die Verklärung Christi ist ein wichtiges Thema in der Kunst.", + "example_sentence_english": "The Transfiguration of Christ is an important theme in art.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29569 + }, + { + "word": "verkriechen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crawl away;to hide oneself", + "romanization": "verkriechen", + "example_sentence_native": "Er wollte sich am liebsten unter der Decke verkriechen.", + "example_sentence_english": "He would have preferred to hide under the blanket.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29570 + }, + { + "word": "Verlagsgesellschaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publishing company", + "romanization": "Verlagsgesellschaft", + "example_sentence_native": "Sie arbeitet bei einer großen Verlagsgesellschaft.", + "example_sentence_english": "She works at a large publishing company.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29571 + }, + { + "word": "Vermögenssteuer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wealth tax;property tax", + "romanization": "Vermögenssteuer", + "example_sentence_native": "Die Einführung einer Vermögenssteuer wird diskutiert.", + "example_sentence_english": "The introduction of a wealth tax is being discussed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29572 + }, + { + "word": "verschlechtert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worsened;deteriorated", + "romanization": "verschlechtert", + "example_sentence_native": "Sein Gesundheitszustand hat sich verschlechtert.", + "example_sentence_english": "His health condition has worsened.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29573 + }, + { + "word": "Verschönerung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beautification;embellishment", + "romanization": "Verschönerung", + "example_sentence_native": "Die Verschönerung der Stadt ist ein wichtiges Projekt.", + "example_sentence_english": "The beautification of the city is an important project.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29574 + }, + { + "word": "versklaven", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enslave", + "romanization": "versklaven", + "example_sentence_native": "Es ist unmenschlich, Menschen zu versklaven.", + "example_sentence_english": "It is inhumane to enslave people.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29575 + }, + { + "word": "versäumt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missed;neglected", + "romanization": "versäumt", + "example_sentence_native": "Er bedauerte die versäumte Gelegenheit.", + "example_sentence_english": "He regretted the missed opportunity.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29576 + }, + { + "word": "Verträglichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatibility;tolerance;agreeableness", + "romanization": "Verträglichkeit", + "example_sentence_native": "Die Verträglichkeit der Medikamente muss geprüft werden.", + "example_sentence_english": "The compatibility of the medications must be checked.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29577 + }, + { + "word": "Vibe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibe", + "romanization": "Vibe", + "example_sentence_native": "Der Ort hat einen guten Vibe.", + "example_sentence_english": "The place has a good vibe.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29579 + }, + { + "word": "Voranmeldung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-registration", + "romanization": "Voranmeldung", + "example_sentence_native": "Eine Voranmeldung ist für den Kurs erforderlich.", + "example_sentence_english": "Pre-registration is required for the course.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29580 + }, + { + "word": "vorgehalten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "held up;presented", + "romanization": "vorgehalten", + "example_sentence_native": "Die vorgehaltene Waffe war eine Attrappe.", + "example_sentence_english": "The held-up weapon was a dummy.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29581 + }, + { + "word": "vorgenommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undertaken;carried out", + "romanization": "vorgenommen", + "example_sentence_native": "Die vorgenommenen Änderungen waren notwendig.", + "example_sentence_english": "The undertaken changes were necessary.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29582 + }, + { + "word": "Vorladung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "summons", + "romanization": "Vorladung", + "example_sentence_native": "Er erhielt eine Vorladung vor Gericht.", + "example_sentence_english": "He received a summons to court.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29583 + }, + { + "word": "Vorschub", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advancement;furtherance", + "romanization": "Vorschub", + "example_sentence_native": "Man leistete dem Projekt Vorschub.", + "example_sentence_english": "The project was given advancement.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29584 + }, + { + "word": "Vorweihnachtszeit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pre-Christmas season", + "romanization": "Vorweihnachtszeit", + "example_sentence_native": "Die Vorweihnachtszeit ist oft sehr hektisch.", + "example_sentence_english": "The pre-Christmas season is often very hectic.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29585 + }, + { + "word": "Wash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wash (e.g.;car wash)", + "romanization": "Wash", + "example_sentence_native": "Ich fahre mein Auto zum Wash.", + "example_sentence_english": "I'm taking my car to the wash.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29588 + }, + { + "word": "Wasserspiegel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water level", + "romanization": "Wasserspiegel", + "example_sentence_native": "Der Wasserspiegel im See ist gesunken.", + "example_sentence_english": "The water level in the lake has dropped.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29589 + }, + { + "word": "Wasserverbrauch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water consumption", + "romanization": "Wasserverbrauch", + "example_sentence_native": "Wir müssen unseren Wasserverbrauch reduzieren.", + "example_sentence_english": "We need to reduce our water consumption.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29590 + }, + { + "word": "Wegstrecke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distance;stretch of road", + "romanization": "Wegstrecke", + "example_sentence_native": "Die Wegstrecke bis zum Ziel ist noch weit.", + "example_sentence_english": "The distance to the destination is still far.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29591 + }, + { + "word": "Weissbier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheat beer", + "romanization": "Weissbier", + "example_sentence_native": "Ein kühles Weissbier schmeckt im Sommer gut.", + "example_sentence_english": "A cold wheat beer tastes good in summer.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29593 + }, + { + "word": "weisslich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whitish", + "romanization": "weisslich", + "example_sentence_native": "Die Wolken hatten einen weisslichen Schimmer.", + "example_sentence_english": "The clouds had a whitish shimmer.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29594 + }, + { + "word": "weiterreichen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pass on;to hand over", + "romanization": "weiterreichen", + "example_sentence_native": "Könntest du mir bitte das Salz weiterreichen?", + "example_sentence_english": "Could you please pass me the salt?", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "weiter", + "base_verb": "reichen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29595 + }, + { + "word": "Weltoffenheit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmopolitanism;open-mindedness", + "romanization": "Weltoffenheit", + "example_sentence_native": "Ihre Weltoffenheit beeindruckte alle.", + "example_sentence_english": "Her cosmopolitanism impressed everyone.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29596 + }, + { + "word": "Wetterstation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weather station", + "romanization": "Wetterstation", + "example_sentence_native": "Die Wetterstation meldete starken Wind.", + "example_sentence_english": "The weather station reported strong wind.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29598 + }, + { + "word": "Wettrennen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "race;competition", + "romanization": "Wettrennen", + "example_sentence_native": "Das Wettrennen war sehr spannend.", + "example_sentence_english": "The race was very exciting.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29599 + }, + { + "word": "widerstandsfähig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistant;resilient", + "romanization": "widerstandsfähig", + "example_sentence_native": "Diese Pflanze ist sehr widerstandsfähig gegen Krankheiten.", + "example_sentence_english": "This plant is very resistant to diseases.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29600 + }, + { + "word": "wiedergebären", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be reborn;to regenerate", + "romanization": "wiedergebären", + "example_sentence_native": "Die Natur scheint sich im Frühling wiedergebären zu wollen.", + "example_sentence_english": "Nature seems to want to be reborn in spring.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29602 + }, + { + "word": "Wochenschrift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weekly magazine;journal", + "romanization": "Wochenschrift", + "example_sentence_native": "Er liest jede Woche eine Wochenschrift über Politik.", + "example_sentence_english": "He reads a weekly magazine about politics every week.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29604 + }, + { + "word": "Wohneigentum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home ownership;residential property", + "romanization": "Wohneigentum", + "example_sentence_native": "Viele Menschen träumen vom Wohneigentum.", + "example_sentence_english": "Many people dream of home ownership.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29605 + }, + { + "word": "Wäldchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small forest;grove", + "romanization": "Wäldchen", + "example_sentence_native": "Hinter dem Haus ist ein kleines Wäldchen.", + "example_sentence_english": "Behind the house is a small grove.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29607 + }, + { + "word": "Zahnspange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "braces (dental)", + "romanization": "Zahnspange", + "example_sentence_native": "Viele Jugendliche tragen eine Zahnspange.", + "example_sentence_english": "Many teenagers wear braces.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29611 + }, + { + "word": "zehnfach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenfold;ten times", + "romanization": "zehnfach", + "example_sentence_native": "Die Kosten haben sich zehnfach erhöht.", + "example_sentence_english": "The costs have increased tenfold.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29612 + }, + { + "word": "Zersplitterung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fragmentation;splintering", + "romanization": "Zersplitterung", + "example_sentence_native": "Die Zersplitterung der politischen Parteien ist ein Problem.", + "example_sentence_english": "The fragmentation of political parties is a problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29613 + }, + { + "word": "Zubringer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeder (e.g.;road;bus;flight)", + "romanization": "Zubringer", + "example_sentence_native": "Der Zubringer zum Flughafen ist oft überlastet.", + "example_sentence_english": "The feeder road to the airport is often overloaded.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29615 + }, + { + "word": "zusammengesetzt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compound;composite;assembled", + "romanization": "zusammengesetzt", + "example_sentence_native": "Das Wort \"Haustür\" ist ein zusammengesetztes Nomen.", + "example_sentence_english": "The word \"Haustür\" is a compound noun.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29616 + }, + { + "word": "zustimmend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approving;affirmative", + "romanization": "zustimmend", + "example_sentence_native": "Sie nickte zustimmend.", + "example_sentence_english": "She nodded approvingly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29617 + }, + { + "word": "zweitstark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "second strongest", + "romanization": "zweitstark", + "example_sentence_native": "Er ist der zweitstärkste Spieler im Team.", + "example_sentence_english": "He is the second strongest player in the team.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29618 + }, + { + "word": "Zwiespalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilemma;conflict;quandary", + "romanization": "Zwiespalt", + "example_sentence_native": "Er befand sich in einem inneren Zwiespalt.", + "example_sentence_english": "He was in an inner dilemma.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29619 + }, + { + "word": "Örtlichkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locality;place", + "romanization": "Örtlichkeit", + "example_sentence_native": "Die Örtlichkeit des Treffens wurde geändert.", + "example_sentence_english": "The locality of the meeting was changed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29620 + }, + { + "word": "übermächtig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming;overpowering", + "romanization": "übermächtig", + "example_sentence_native": "Er stand einer übermächtigen Armee gegenüber.", + "example_sentence_english": "He faced an overwhelming army.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29621 + }, + { + "word": "übernommen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taken over;adopted", + "romanization": "übernommen", + "example_sentence_native": "Die übernommenen Aufgaben waren sehr anspruchsvoll.", + "example_sentence_english": "The adopted tasks were very demanding.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29622 + }, + { + "word": "Abfallwirtschaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waste management", + "romanization": "Abfallwirtschaft", + "example_sentence_native": "Die Abfallwirtschaft ist ein wichtiger Sektor für die Umwelt.", + "example_sentence_english": "Waste management is an important sector for the environment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29623 + }, + { + "word": "abgebrochen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broken off;discontinued", + "romanization": "abgebrochen", + "example_sentence_native": "Der abgebrochene Ast lag auf dem Weg.", + "example_sentence_english": "The broken off branch lay on the path.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29624 + }, + { + "word": "abgefertigt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processed;dispatched;dealt with", + "romanization": "abgefertigt", + "example_sentence_native": "Die abgefertigten Passagiere warteten auf ihren Flug.", + "example_sentence_english": "The processed passengers waited for their flight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29625 + }, + { + "word": "abschlachten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to slaughter;to massacre", + "romanization": "abschlachten", + "example_sentence_native": "Die Rebellen drohten, die Gefangenen abzuschlachten.", + "example_sentence_english": "The rebels threatened to slaughter the prisoners.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ab", + "base_verb": "schlachten", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29626 + }, + { + "word": "Amphitheater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphitheater", + "romanization": "Amphitheater", + "example_sentence_native": "Das alte Amphitheater war beeindruckend.", + "example_sentence_english": "The old amphitheater was impressive.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29636 + }, + { + "word": "Amtshandlung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official act;official procedure", + "romanization": "Amtshandlung", + "example_sentence_native": "Die Unterschrift des Beamten ist eine Amtshandlung.", + "example_sentence_english": "The official's signature is an official act.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29637 + }, + { + "word": "Amtsperiode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "term of office", + "romanization": "Amtsperiode", + "example_sentence_native": "Die Amtsperiode des Präsidenten dauert vier Jahre.", + "example_sentence_english": "The president's term of office lasts four years.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29638 + }, + { + "word": "angeflogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flown in;approached (by flight)", + "romanization": "angeflogen", + "example_sentence_native": "Der angeflogene Vogel landete sanft auf dem Ast.", + "example_sentence_english": "The flown-in bird landed gently on the branch.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29639 + }, + { + "word": "angesiedelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settled;located", + "romanization": "angesiedelt", + "example_sentence_native": "Das Unternehmen ist in Berlin angesiedelt.", + "example_sentence_english": "The company is located in Berlin.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29640 + }, + { + "word": "Aprilscherz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "April Fool's joke", + "romanization": "Aprilscherz", + "example_sentence_native": "Das war nur ein Aprilscherz!", + "example_sentence_english": "That was just an April Fool's joke!", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29644 + }, + { + "word": "Arbeiterkammer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Chamber of Labour (Austrian institution)", + "romanization": "Arbeiterkammer", + "example_sentence_native": "Die Arbeiterkammer vertritt die Interessen der Arbeitnehmer.", + "example_sentence_english": "The Chamber of Labour represents the interests of employees.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29645 + }, + { + "word": "Armeekorps", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "army corps", + "romanization": "Armeekorps", + "example_sentence_native": "Das Armeekorps wurde an die Front verlegt.", + "example_sentence_english": "The army corps was moved to the front.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29646 + }, + { + "word": "Audit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audit", + "romanization": "Audit", + "example_sentence_native": "Das Unternehmen führte ein internes Audit durch.", + "example_sentence_english": "The company conducted an internal audit.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29650 + }, + { + "word": "Aufenthaltserlaubnis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residence permit", + "romanization": "Aufenthaltserlaubnis", + "example_sentence_native": "Er beantragte eine Aufenthaltserlaubnis.", + "example_sentence_english": "He applied for a residence permit.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29651 + }, + { + "word": "aufgerollt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rolled up;unraveled (case)", + "romanization": "aufgerollt", + "example_sentence_native": "Der Teppich war aufgerollt. Der Fall wurde neu aufgerollt.", + "example_sentence_english": "The carpet was rolled up. The case was reopened/unraveled.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29652 + }, + { + "word": "aufgeweicht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "softened;weakened", + "romanization": "aufgeweicht", + "example_sentence_native": "Das Brot ist durch den Regen aufgeweicht. Die Regeln wurden aufgeweicht.", + "example_sentence_english": "The bread is softened by the rain. The rules were softened/relaxed.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29653 + }, + { + "word": "aushebeln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to lever out;to undermine;to circumvent", + "romanization": "aushebeln", + "example_sentence_native": "Man versuchte, die Vorschriften auszuhebeln.", + "example_sentence_english": "They tried to circumvent the regulations.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "aus", + "base_verb": "hebeln", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29654 + }, + { + "word": "Aussenwirkung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "external effect;public perception", + "romanization": "Aussenwirkung", + "example_sentence_native": "Die Aussenwirkung der Entscheidung war negativ.", + "example_sentence_english": "The external effect of the decision was negative.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29655 + }, + { + "word": "Baugruppe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assembly;module;subassembly", + "romanization": "Baugruppe", + "example_sentence_native": "Die Baugruppe muss vor dem Einbau geprüft werden.", + "example_sentence_english": "The assembly must be checked before installation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29659 + }, + { + "word": "bepflanzen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plant", + "romanization": "bepflanzen", + "example_sentence_native": "Wir müssen den Garten bepflanzen.", + "example_sentence_english": "We need to plant the garden.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29660 + }, + { + "word": "bergsteigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mountaineer", + "romanization": "bergsteigen", + "example_sentence_native": "Er liebt es, in den Alpen bergsteigen zu gehen.", + "example_sentence_english": "He loves to go mountaineering in the Alps.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29661 + }, + { + "word": "Berufsorientierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "career guidance", + "romanization": "Berufsorientierung", + "example_sentence_native": "Die Schule bietet Berufsorientierung für Schüler an.", + "example_sentence_english": "The school offers career guidance for students.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29662 + }, + { + "word": "Besatzungszone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occupation zone", + "romanization": "Besatzungszone", + "example_sentence_native": "Nach dem Krieg wurde Deutschland in Besatzungszonen aufgeteilt.", + "example_sentence_english": "After the war, Germany was divided into occupation zones.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29663 + }, + { + "word": "Besserwisser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "know-it-all", + "romanization": "Besserwisser", + "example_sentence_native": "Niemand mag einen Besserwisser.", + "example_sentence_english": "Nobody likes a know-it-all.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29664 + }, + { + "word": "Bestürzung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismay", + "romanization": "Bestürzung", + "example_sentence_native": "Die Nachricht löste große Bestürzung aus.", + "example_sentence_english": "The news caused great dismay.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29665 + }, + { + "word": "beteuern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assure", + "romanization": "beteuern", + "example_sentence_native": "Er beteuert seine Unschuld.", + "example_sentence_english": "He assures his innocence.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29666 + }, + { + "word": "Bewusstlosigkeit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconsciousness", + "romanization": "Bewusstlosigkeit", + "example_sentence_native": "Nach dem Unfall fiel er in Bewusstlosigkeit.", + "example_sentence_english": "After the accident, he fell into unconsciousness.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29667 + }, + { + "word": "Bigband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "big band", + "romanization": "Bigband", + "example_sentence_native": "Die Bigband spielte Jazzmusik.", + "example_sentence_english": "The big band played jazz music.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29668 + }, + { + "word": "Bildsprache", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visual language", + "romanization": "Bildsprache", + "example_sentence_native": "Die Bildsprache des Films war beeindruckend.", + "example_sentence_english": "The visual language of the film was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29669 + }, + { + "word": "Bravour", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "bravura", + "romanization": "Bravour", + "example_sentence_native": "Er spielte das Stück mit Bravour.", + "example_sentence_english": "He played the piece with bravura.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29674 + }, + { + "word": "Capo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capo (boss)", + "romanization": "Capo", + "example_sentence_native": "Der Capo der Mafia wurde verhaftet.", + "example_sentence_english": "The mafia capo was arrested.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29676 + }, + { + "word": "Coronavirus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coronavirus", + "romanization": "Coronavirus", + "example_sentence_native": "Das Coronavirus hat die Welt verändert.", + "example_sentence_english": "The coronavirus has changed the world.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29682 + }, + { + "word": "Dauerbrenner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long-running success;evergreen", + "romanization": "Dauerbrenner", + "example_sentence_native": "Dieses Lied ist ein echter Dauerbrenner im Radio.", + "example_sentence_english": "This song is a real long-running success on the radio.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29686 + }, + { + "word": "dazulernen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to learn additionally;to learn from experience", + "romanization": "dazulernen", + "example_sentence_native": "Man muss immer dazulernen, um sich zu verbessern.", + "example_sentence_english": "One must always learn additionally to improve oneself.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "dazu", + "base_verb": "lernen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29687 + }, + { + "word": "Delikatesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicacy", + "romanization": "Delikatesse", + "example_sentence_native": "Kaviar ist eine teure Delikatesse.", + "example_sentence_english": "Caviar is an expensive delicacy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29688 + }, + { + "word": "Demokratieverständnis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "understanding of democracy", + "romanization": "Demokratieverständnis", + "example_sentence_native": "Sein Demokratieverständnis ist sehr ausgeprägt.", + "example_sentence_english": "His understanding of democracy is very pronounced.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29689 + }, + { + "word": "desinfizieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disinfect", + "romanization": "desinfizieren", + "example_sentence_native": "Man sollte Wunden sofort desinfizieren.", + "example_sentence_english": "One should disinfect wounds immediately.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29690 + }, + { + "word": "destabilisieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destabilize", + "romanization": "destabilisieren", + "example_sentence_native": "Der Konflikt könnte die Region destabilisieren.", + "example_sentence_english": "The conflict could destabilize the region.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29691 + }, + { + "word": "Destabilisierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destabilization", + "romanization": "Destabilisierung", + "example_sentence_native": "Die Destabilisierung der Wirtschaft ist besorgniserregend.", + "example_sentence_english": "The destabilization of the economy is concerning.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29692 + }, + { + "word": "Differentialgleichung", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "differential equation", + "romanization": "Differentialgleichung", + "example_sentence_native": "Er löste eine komplexe Differentialgleichung.", + "example_sentence_english": "He solved a complex differential equation.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29694 + }, + { + "word": "drein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "into it;therein", + "romanization": "drein", + "example_sentence_native": "Er schaute traurig drein.", + "example_sentence_english": "He looked sadly into it.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29701 + }, + { + "word": "durchdrungen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "permeated;imbued", + "romanization": "durchdrungen", + "example_sentence_native": "Der Stoff war von Wasser durchdrungen.", + "example_sentence_english": "The fabric was permeated by water.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29705 + }, + { + "word": "déjà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "already", + "romanization": "déjà", + "example_sentence_native": "Er hatte ein Déjà-vu-Erlebnis.", + "example_sentence_english": "He had a déjà vu experience.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29706 + }, + { + "word": "Eichenholz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oak wood", + "romanization": "Eichenholz", + "example_sentence_native": "Der Tisch ist aus massivem Eichenholz gefertigt.", + "example_sentence_english": "The table is made of solid oak wood.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29709 + }, + { + "word": "einchecken", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to check in", + "romanization": "einchecken", + "example_sentence_native": "Wir müssen um 15 Uhr im Hotel einchecken.", + "example_sentence_english": "We have to check in at the hotel at 3 PM.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "checken", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29711 + }, + { + "word": "einreiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rub in", + "romanization": "einreiben", + "example_sentence_native": "Sie sollte die Salbe zweimal täglich einreiben.", + "example_sentence_english": "She should rub in the ointment twice a day.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "reiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29712 + }, + { + "word": "eintreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collect (debts);to drive in", + "romanization": "eintreiben", + "example_sentence_native": "Die Firma versucht, die Schulden einzutreiben.", + "example_sentence_english": "The company is trying to collect the debts.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "ein", + "base_verb": "treiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29713 + }, + { + "word": "Emotionalität", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emotionality", + "romanization": "Emotionalität", + "example_sentence_native": "Seine Emotionalität war in diesem Moment sehr deutlich.", + "example_sentence_english": "His emotionality was very clear at that moment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29717 + }, + { + "word": "entfesseln", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unleash;to unchain", + "romanization": "entfesseln", + "example_sentence_native": "Der Sturm konnte seine volle Kraft entfesseln.", + "example_sentence_english": "The storm could unleash its full power.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29719 + }, + { + "word": "entgegenbringen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show;to offer;to accord", + "romanization": "entgegenbringen", + "example_sentence_native": "Er möchte ihr seinen Respekt entgegenbringen.", + "example_sentence_english": "He wants to show her his respect.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "entgegen", + "base_verb": "bringen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29720 + }, + { + "word": "Entnazifizierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denazification", + "romanization": "Entnazifizierung", + "example_sentence_native": "Die Entnazifizierung war ein wichtiger Prozess nach dem Krieg.", + "example_sentence_english": "Denazification was an important process after the war.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29721 + }, + { + "word": "Epilog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epilogue", + "romanization": "Epilog", + "example_sentence_native": "Der Epilog fasst die Ereignisse zusammen.", + "example_sentence_english": "The epilogue summarizes the events.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29722 + }, + { + "word": "erbost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enraged;furious", + "romanization": "erbost", + "example_sentence_native": "Er war erbost über die Ungerechtigkeit.", + "example_sentence_english": "He was enraged about the injustice.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29724 + }, + { + "word": "Erfolgsfaktor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "success factor", + "romanization": "Erfolgsfaktor", + "example_sentence_native": "Kommunikation ist ein wichtiger Erfolgsfaktor.", + "example_sentence_english": "Communication is an important success factor.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29725 + }, + { + "word": "ermutigend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouraging", + "romanization": "ermutigend", + "example_sentence_native": "Ihre Worte waren sehr ermutigend.", + "example_sentence_english": "Her words were very encouraging.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29726 + }, + { + "word": "Eruption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eruption", + "romanization": "Eruption", + "example_sentence_native": "Die Eruption des Vulkans war beeindruckend.", + "example_sentence_english": "The eruption of the volcano was impressive.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29727 + }, + { + "word": "erzürnen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enrage;to infuriate", + "romanization": "erzürnen", + "example_sentence_native": "Seine Lüge konnte sie sehr erzürnen.", + "example_sentence_english": "His lie could greatly enrage her.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29728 + }, + { + "word": "Etablissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment", + "romanization": "Etablissement", + "example_sentence_native": "Das Etablissement hatte eine lange Geschichte.", + "example_sentence_english": "The establishment had a long history.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29731 + }, + { + "word": "evangelikal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evangelical", + "romanization": "evangelikal", + "example_sentence_native": "Er gehört zur evangelikalen Bewegung.", + "example_sentence_english": "He belongs to the evangelical movement.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29732 + }, + { + "word": "Exegese", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "exegesis", + "romanization": "Exegese", + "example_sentence_native": "Die Exegese des Textes war sehr detailliert.", + "example_sentence_english": "The exegesis of the text was very detailed.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29736 + }, + { + "word": "fachgerecht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professional;expert;proper (in a technical sense)", + "romanization": "fachgerecht", + "example_sentence_native": "Die Reparatur wurde fachgerecht ausgeführt.", + "example_sentence_english": "The repair was carried out professionally.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29738 + }, + { + "word": "Fahrverhalten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "driving behavior;handling (of a vehicle)", + "romanization": "Fahrverhalten", + "example_sentence_native": "Das Fahrverhalten des neuen Autos ist ausgezeichnet.", + "example_sentence_english": "The handling of the new car is excellent.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29739 + }, + { + "word": "Fehlschlag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure", + "romanization": "Fehlschlag", + "example_sentence_native": "Trotz des Fehlschlags gab er nicht auf.", + "example_sentence_english": "Despite the failure, he did not give up.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29741 + }, + { + "word": "Fete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "party", + "romanization": "Fete", + "example_sentence_native": "Wir gehen heute Abend auf eine Fete.", + "example_sentence_english": "We are going to a party tonight.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29744 + }, + { + "word": "Fettleibigkeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obesity", + "romanization": "Fettleibigkeit", + "example_sentence_native": "Fettleibigkeit ist ein wachsendes Gesundheitsproblem.", + "example_sentence_english": "Obesity is a growing health problem.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29745 + }, + { + "word": "Filmindustrie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film industry", + "romanization": "Filmindustrie", + "example_sentence_native": "Die Filmindustrie hat sich stark verändert.", + "example_sentence_english": "The film industry has changed a lot.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29747 + }, + { + "word": "Finaleinzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reaching the final", + "romanization": "Finaleinzug", + "example_sentence_native": "Der Finaleinzug war ein großer Erfolg für das Team.", + "example_sentence_english": "Reaching the final was a great success for the team.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29748 + }, + { + "word": "Finanzplanung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "financial planning", + "romanization": "Finanzplanung", + "example_sentence_native": "Eine gute Finanzplanung ist wichtig für die Zukunft.", + "example_sentence_english": "Good financial planning is important for the future.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29749 + }, + { + "word": "Firmengründer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company founder", + "romanization": "Firmengründer", + "example_sentence_native": "Der Firmengründer stellte sein neues Produkt vor.", + "example_sentence_english": "The company founder presented his new product.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29750 + }, + { + "word": "Flügeldecke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elytron", + "romanization": "Flügeldecke", + "example_sentence_native": "Die Flügeldecke des Käfers schützt seine zarten Flügel.", + "example_sentence_english": "The elytron of the beetle protects its delicate wings.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29751 + }, + { + "word": "fortpflanzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reproduce", + "romanization": "fortpflanzen", + "example_sentence_native": "Viele Tiere pflanzen sich im Frühling fort.", + "example_sentence_english": "Many animals reproduce in spring.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "fort", + "base_verb": "pflanzen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29752 + }, + { + "word": "Fortschreibung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuation", + "romanization": "Fortschreibung", + "example_sentence_native": "Die Fortschreibung der Daten ist für die Analyse wichtig.", + "example_sentence_english": "The continuation of the data is important for the analysis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29753 + }, + { + "word": "fotografisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photographic", + "romanization": "fotografisch", + "example_sentence_native": "Er hat ein fotografisches Gedächtnis.", + "example_sentence_english": "He has a photographic memory.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29755 + }, + { + "word": "Fotostrecke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photo series", + "romanization": "Fotostrecke", + "example_sentence_native": "Die Zeitung veröffentlichte eine beeindruckende Fotostrecke.", + "example_sentence_english": "The newspaper published an impressive photo series.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29756 + }, + { + "word": "Freibrief", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carte blanche", + "romanization": "Freibrief", + "example_sentence_native": "Das ist kein Freibrief für schlechtes Benehmen.", + "example_sentence_english": "That is not a carte blanche for bad behavior.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29757 + }, + { + "word": "Freiland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open country", + "romanization": "Freiland", + "example_sentence_native": "Die Pflanzen wachsen gut im Freiland.", + "example_sentence_english": "The plants grow well in the open country.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29758 + }, + { + "word": "Freitagnachmittag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Friday afternoon", + "romanization": "Freitagnachmittag", + "example_sentence_native": "Wir treffen uns am Freitagnachmittag.", + "example_sentence_english": "We are meeting on Friday afternoon.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29759 + }, + { + "word": "Freiwild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fair game;outlaw", + "romanization": "Freiwild", + "example_sentence_native": "Er fühlte sich wie Freiwild in der feindlichen Umgebung.", + "example_sentence_english": "He felt like fair game in the hostile environment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29760 + }, + { + "word": "Freundchen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buddy;pal (often condescending)", + "romanization": "Freundchen", + "example_sentence_native": "Hör mal zu, Freundchen, so geht das nicht!", + "example_sentence_english": "Listen, buddy, that's not how it works!", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29761 + }, + { + "word": "Gabelstapler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forklift", + "romanization": "Gabelstapler", + "example_sentence_native": "Der Gabelstapler transportierte die schweren Kisten.", + "example_sentence_english": "The forklift transported the heavy boxes.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29763 + }, + { + "word": "Gangart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gait;manner of walking", + "romanization": "Gangart", + "example_sentence_native": "Die Gangart des Pferdes war elegant.", + "example_sentence_english": "The horse's gait was elegant.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29766 + }, + { + "word": "Gedenkstein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial stone;monument", + "romanization": "Gedenkstein", + "example_sentence_native": "Ein Gedenkstein wurde für die Opfer errichtet.", + "example_sentence_english": "A memorial stone was erected for the victims.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29768 + }, + { + "word": "Gegendemo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counter-demonstration", + "romanization": "Gegendemo", + "example_sentence_native": "Es gab eine Gegendemo zur geplanten Kundgebung.", + "example_sentence_english": "There was a counter-demonstration to the planned rally.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29769 + }, + { + "word": "gemächlich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leisurely;unhurried", + "romanization": "gemächlich", + "example_sentence_native": "Er ging in einem gemächlichen Tempo.", + "example_sentence_english": "He walked at a leisurely pace.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29770 + }, + { + "word": "Genese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genesis;origin", + "romanization": "Genese", + "example_sentence_native": "Die Genese der Krankheit ist noch unklar.", + "example_sentence_english": "The genesis of the disease is still unclear.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29771 + }, + { + "word": "geräumig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spacious;roomy", + "romanization": "geräumig", + "example_sentence_native": "Die Wohnung ist sehr geräumig.", + "example_sentence_english": "The apartment is very spacious.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29772 + }, + { + "word": "Geschäftsfrau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "businesswoman", + "romanization": "Geschäftsfrau", + "example_sentence_native": "Sie ist eine erfolgreiche Geschäftsfrau.", + "example_sentence_english": "She is a successful businesswoman.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29773 + }, + { + "word": "sättigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to satisfy;to satiate", + "romanization": "sättigen", + "example_sentence_native": "Das Essen sollte uns sättigen.", + "example_sentence_english": "The food should satiate us.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29774 + }, + { + "word": "Gewichtszunahme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weight gain", + "romanization": "Gewichtszunahme", + "example_sentence_native": "Eine plötzliche Gewichtszunahme kann ein Symptom sein.", + "example_sentence_english": "A sudden weight gain can be a symptom.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29775 + }, + { + "word": "Glasur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glaze;icing", + "romanization": "Glasur", + "example_sentence_native": "Der Kuchen hat eine süße Glasur.", + "example_sentence_english": "The cake has a sweet glaze.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29776 + }, + { + "word": "glotzen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stare;to gawk", + "romanization": "glotzen", + "example_sentence_native": "Hör auf, so zu glotzen!", + "example_sentence_english": "Stop staring like that!", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29777 + }, + { + "word": "Graphit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphite", + "romanization": "Graphit", + "example_sentence_native": "Bleistifte enthalten Graphit.", + "example_sentence_english": "Pencils contain graphite.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29779 + }, + { + "word": "Gärung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fermentation", + "romanization": "Gärung", + "example_sentence_native": "Die Gärung des Weins ist ein wichtiger Prozess.", + "example_sentence_english": "The fermentation of the wine is an important process.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29780 + }, + { + "word": "Göre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brat;impudent girl", + "romanization": "Göre", + "example_sentence_native": "Die kleine Göre hat schon wieder Ärger gemacht.", + "example_sentence_english": "The little brat caused trouble again.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29781 + }, + { + "word": "Habicht", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "goshawk", + "romanization": "Habicht", + "example_sentence_native": "Der Habicht kreiste hoch am Himmel.", + "example_sentence_english": "The goshawk circled high in the sky.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29782 + }, + { + "word": "hantieren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to handle;to tinker", + "romanization": "hantieren", + "example_sentence_native": "Er hantiert gerne mit Werkzeugen.", + "example_sentence_english": "He likes to tinker with tools.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29786 + }, + { + "word": "Hasser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hater", + "romanization": "Hasser", + "example_sentence_native": "Er wurde zum Hasser der Ungerechtigkeit.", + "example_sentence_english": "He became a hater of injustice.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29789 + }, + { + "word": "Hausordnung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "house rules;building regulations", + "romanization": "Hausordnung", + "example_sentence_native": "Bitte beachten Sie die Hausordnung.", + "example_sentence_english": "Please observe the house rules.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29790 + }, + { + "word": "Heisshunger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ravenous hunger;craving", + "romanization": "Heisshunger", + "example_sentence_native": "Nach dem Sport hatte ich Heisshunger.", + "example_sentence_english": "After sports, I had ravenous hunger.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29791 + }, + { + "word": "Hervorhebung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emphasis;highlighting", + "romanization": "Hervorhebung", + "example_sentence_native": "Die Hervorhebung wichtiger Punkte ist entscheidend.", + "example_sentence_english": "The highlighting of important points is crucial.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29793 + }, + { + "word": "Hieroglyphe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hieroglyph", + "romanization": "Hieroglyphe", + "example_sentence_native": "Die alten Ägypter schrieben in Hieroglyphen.", + "example_sentence_english": "The ancient Egyptians wrote in hieroglyphs.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29794 + }, + { + "word": "Holzbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timber construction;wooden building", + "romanization": "Holzbau", + "example_sentence_native": "Der Holzbau wird immer beliebter.", + "example_sentence_english": "Timber construction is becoming increasingly popular.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29798 + }, + { + "word": "Holzfäller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lumberjack;woodcutter", + "romanization": "Holzfäller", + "example_sentence_native": "Der Holzfäller fällte den Baum.", + "example_sentence_english": "The lumberjack felled the tree.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29799 + }, + { + "word": "Hotelier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hotelier;hotel owner", + "romanization": "Hotelier", + "example_sentence_native": "Der Hotelier begrüßte die Gäste herzlich.", + "example_sentence_english": "The hotelier warmly welcomed the guests.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29800 + }, + { + "word": "humoristisch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humorous;comical", + "romanization": "humoristisch", + "example_sentence_native": "Er hat einen sehr humoristischen Schreibstil.", + "example_sentence_english": "He has a very humorous writing style.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29802 + }, + { + "word": "hängenbleiben", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get stuck;to remain hanging", + "romanization": "hängenbleiben", + "example_sentence_native": "Der Schlüssel ist im Schloss hängengeblieben.", + "example_sentence_english": "The key got stuck in the lock.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "hängen", + "base_verb": "bleiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29804 + }, + { + "word": "Hülsenfrucht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legume;pulse", + "romanization": "Hülsenfrucht", + "example_sentence_native": "Linsen sind eine gesunde Hülsenfrucht.", + "example_sentence_english": "Lentils are a healthy legume.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29805 + }, + { + "word": "Illuminat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Illuminati (member of)", + "romanization": "Illuminat", + "example_sentence_native": "Er glaubt an die Verschwörung der Illuminaten.", + "example_sentence_english": "He believes in the Illuminati conspiracy.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29806 + }, + { + "word": "Imp", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imp;goblin", + "romanization": "Imp", + "example_sentence_native": "Der kleine Imp spielte Streiche im Wald.", + "example_sentence_english": "The little imp played tricks in the forest.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29808 + }, + { + "word": "Individualverkehr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual transport;private transport", + "romanization": "Individualverkehr", + "example_sentence_native": "Der Individualverkehr trägt zur Luftverschmutzung bei.", + "example_sentence_english": "Individual transport contributes to air pollution.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29810 + }, + { + "word": "inserieren", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advertise;to place an ad", + "romanization": "inserieren", + "example_sentence_native": "Er möchte sein altes Auto in der Zeitung inserieren.", + "example_sentence_english": "He wants to advertise his old car in the newspaper.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29812 + }, + { + "word": "Investmentfonds", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "investment fund;mutual fund", + "romanization": "Investmentfonds", + "example_sentence_native": "Sie investiert in verschiedene Investmentfonds.", + "example_sentence_english": "She invests in various investment funds.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29814 + }, + { + "word": "Japanerin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Japanese woman", + "romanization": "Japanerin", + "example_sentence_native": "Die Japanerin sprach fließend Deutsch.", + "example_sentence_english": "The Japanese woman spoke fluent German.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29819 + }, + { + "word": "Judoka", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judoka (judo practitioner)", + "romanization": "Judoka", + "example_sentence_native": "Der Judoka gewann den Kampf.", + "example_sentence_english": "The judoka won the fight.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29824 + }, + { + "word": "Kampfansage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declaration of war;challenge", + "romanization": "Kampfansage", + "example_sentence_native": "Seine Rede war eine Kampfansage an die Opposition.", + "example_sentence_english": "His speech was a declaration of war against the opposition.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29826 + }, + { + "word": "Knicks", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curtsy;bow", + "romanization": "Knicks", + "example_sentence_native": "Sie machte einen Knicks vor der Königin.", + "example_sentence_english": "She made a curtsy before the queen.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29831 + }, + { + "word": "Knorpel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartilage", + "romanization": "Knorpel", + "example_sentence_native": "Der Knorpel im Knie ist beschädigt.", + "example_sentence_english": "The cartilage in the knee is damaged.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29832 + }, + { + "word": "Konferenzraum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conference room", + "romanization": "Konferenzraum", + "example_sentence_native": "Wir treffen uns im Konferenzraum.", + "example_sentence_english": "We meet in the conference room.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29833 + }, + { + "word": "konsequenterweise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequently;logically", + "romanization": "konsequenterweise", + "example_sentence_native": "Er hatte keine Zeit, konsequenterweise konnte er nicht kommen.", + "example_sentence_english": "He had no time, consequently he couldn't come.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adverb", + "word_frequency": 29834 + }, + { + "word": "Konsumgut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consumer good", + "romanization": "Konsumgut", + "example_sentence_native": "Ein Auto ist ein teures Konsumgut.", + "example_sentence_english": "A car is an expensive consumer good.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29835 + }, + { + "word": "Kontoauszug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank statement", + "romanization": "Kontoauszug", + "example_sentence_native": "Ich brauche einen Kontoauszug für die Bank.", + "example_sentence_english": "I need a bank statement for the bank.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29836 + }, + { + "word": "Kopfkino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mind movie;vivid imagination", + "romanization": "Kopfkino", + "example_sentence_native": "Bei dieser Geschichte hatte ich sofort Kopfkino.", + "example_sentence_english": "With this story, I immediately had a mind movie.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29838 + }, + { + "word": "Krankenbett", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sickbed;hospital bed", + "romanization": "Krankenbett", + "example_sentence_native": "Er musste lange im Krankenbett liegen.", + "example_sentence_english": "He had to lie in the sickbed for a long time.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29839 + }, + { + "word": "krankschreiben", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to certify as sick", + "romanization": "krankschreiben", + "example_sentence_native": "Der Arzt wird Sie für eine Woche krankschreiben.", + "example_sentence_english": "The doctor will certify you as sick for a week.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "krank", + "base_verb": "schreiben", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29840 + }, + { + "word": "Kriegsdienst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military service", + "romanization": "Kriegsdienst", + "example_sentence_native": "Er hat seinen Kriegsdienst in der Armee geleistet.", + "example_sentence_english": "He performed his military service in the army.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29841 + }, + { + "word": "Kubus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cube", + "romanization": "Kubus", + "example_sentence_native": "Ein Kubus hat sechs gleiche Seiten.", + "example_sentence_english": "A cube has six equal sides.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29842 + }, + { + "word": "Kulturerbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultural heritage", + "romanization": "Kulturerbe", + "example_sentence_native": "Das Schloss ist ein wichtiges Kulturerbe der Region.", + "example_sentence_english": "The castle is an important cultural heritage of the region.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29843 + }, + { + "word": "Kupferstich", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "copper engraving", + "romanization": "Kupferstich", + "example_sentence_native": "Der alte Kupferstich zeigte eine Stadtansicht aus dem 17. Jahrhundert.", + "example_sentence_english": "The old copper engraving showed a city view from the 17th century.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29844 + }, + { + "word": "Kurzarbeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short-time work", + "romanization": "Kurzarbeit", + "example_sentence_native": "Viele Unternehmen mussten während der Krise Kurzarbeit anmelden.", + "example_sentence_english": "Many companies had to register for short-time work during the crisis.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29845 + }, + { + "word": "Küchenmesser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kitchen knife", + "romanization": "Küchenmesser", + "example_sentence_native": "Sie schnitt das Gemüse mit einem scharfen Küchenmesser.", + "example_sentence_english": "She cut the vegetables with a sharp kitchen knife.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29846 + }, + { + "word": "leblos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifeless", + "romanization": "leblos", + "example_sentence_native": "Der Baumstamm lag leblos im Wald.", + "example_sentence_english": "The tree trunk lay lifeless in the forest.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29848 + }, + { + "word": "lettisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latvian", + "romanization": "lettisch", + "example_sentence_native": "Sie spricht fließend Lettisch.", + "example_sentence_english": "She speaks fluent Latvian.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29849 + }, + { + "word": "Lichtschalter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light switch", + "romanization": "Lichtschalter", + "example_sentence_native": "Bitte betätigen Sie den Lichtschalter.", + "example_sentence_english": "Please operate the light switch.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29850 + }, + { + "word": "Linksfraktion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Left Party parliamentary group", + "romanization": "Linksfraktion", + "example_sentence_native": "Die Linksfraktion stimmte gegen den Gesetzentwurf.", + "example_sentence_english": "The Left Party parliamentary group voted against the bill.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29853 + }, + { + "word": "Locher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hole punch", + "romanization": "Locher", + "example_sentence_native": "Ich brauche einen Locher, um die Blätter abzuheften.", + "example_sentence_english": "I need a hole punch to file the sheets.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29855 + }, + { + "word": "Lohnerhöhung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pay raise", + "romanization": "Lohnerhöhung", + "example_sentence_native": "Er hat eine Lohnerhöhung bekommen.", + "example_sentence_english": "He received a pay raise.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29857 + }, + { + "word": "Meinungsaustausch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange of opinions", + "romanization": "Meinungsaustausch", + "example_sentence_native": "Es gab einen regen Meinungsaustausch über das Thema.", + "example_sentence_english": "There was a lively exchange of opinions on the topic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29865 + }, + { + "word": "Meteorologe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorologist", + "romanization": "Meteorologe", + "example_sentence_native": "Der Meteorologe sagte Schnee für morgen voraus.", + "example_sentence_english": "The meteorologist predicted snow for tomorrow.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29867 + }, + { + "word": "Mikrobiologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microbiology", + "romanization": "Mikrobiologie", + "example_sentence_native": "Sie studiert Mikrobiologie an der Universität.", + "example_sentence_english": "She studies microbiology at the university.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29868 + }, + { + "word": "Militärregierung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military government", + "romanization": "Militärregierung", + "example_sentence_native": "Das Land wurde von einer Militärregierung geführt.", + "example_sentence_english": "The country was led by a military government.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29869 + }, + { + "word": "Mindestabstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimum distance", + "romanization": "Mindestabstand", + "example_sentence_native": "Bitte halten Sie den Mindestabstand zum vorausfahrenden Fahrzeug ein.", + "example_sentence_english": "Please maintain the minimum distance to the vehicle in front.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29870 + }, + { + "word": "Mittelgebirge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "low mountain range", + "romanization": "Mittelgebirge", + "example_sentence_native": "Deutschland hat viele schöne Mittelgebirge.", + "example_sentence_english": "Germany has many beautiful low mountain ranges.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29872 + }, + { + "word": "Mittelmeerraum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mediterranean region", + "romanization": "Mittelmeerraum", + "example_sentence_native": "Der Mittelmeerraum ist bekannt für sein mildes Klima.", + "example_sentence_english": "The Mediterranean region is known for its mild climate.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29873 + }, + { + "word": "mitziehen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go along with", + "romanization": "mitziehen", + "example_sentence_native": "Er wollte nicht mitziehen, aber er musste.", + "example_sentence_english": "He didn't want to go along, but he had to.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "mit", + "base_verb": "ziehen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29874 + }, + { + "word": "Motorboot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorboat", + "romanization": "Motorboot", + "example_sentence_native": "Wir fuhren mit einem Motorboot über den See.", + "example_sentence_english": "We drove across the lake in a motorboat.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29878 + }, + { + "word": "multikulturell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multicultural", + "romanization": "multikulturell", + "example_sentence_native": "Berlin ist eine sehr multikulturelle Stadt.", + "example_sentence_english": "Berlin is a very multicultural city.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29879 + }, + { + "word": "Muskelmasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muscle mass", + "romanization": "Muskelmasse", + "example_sentence_native": "Er hat viel Muskelmasse aufgebaut.", + "example_sentence_english": "He has built up a lot of muscle mass.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29880 + }, + { + "word": "nachahmen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to imitate;to mimic", + "romanization": "nachahmen", + "example_sentence_native": "Kinder ahmen oft ihre Eltern nach.", + "example_sentence_english": "Children often imitate their parents.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "nach", + "base_verb": "ahmen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29881 + }, + { + "word": "Nachzahlung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additional payment;back payment", + "romanization": "Nachzahlung", + "example_sentence_native": "Er musste eine hohe Nachzahlung leisten.", + "example_sentence_english": "He had to make a high additional payment.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29882 + }, + { + "word": "Nager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rodent", + "romanization": "Nager", + "example_sentence_native": "Mäuse und Ratten sind Nager.", + "example_sentence_english": "Mice and rats are rodents.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29883 + }, + { + "word": "nagen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gnaw;to nibble", + "romanization": "nagen", + "example_sentence_native": "Der Hund nagte an seinem Knochen.", + "example_sentence_english": "The dog gnawed on its bone.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29884 + }, + { + "word": "Nebenzimmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjoining room;side room", + "romanization": "Nebenzimmer", + "example_sentence_native": "Das Nebenzimmer ist für Gäste reserviert.", + "example_sentence_english": "The adjoining room is reserved for guests.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29886 + }, + { + "word": "Neuaufbau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstruction;rebuilding", + "romanization": "Neuaufbau", + "example_sentence_native": "Der Neuaufbau der Stadt dauerte Jahre.", + "example_sentence_english": "The reconstruction of the city took years.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29888 + }, + { + "word": "Niederung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lowland;depression", + "romanization": "Niederung", + "example_sentence_native": "Die Flüsse fließen durch die weite Niederung.", + "example_sentence_english": "The rivers flow through the wide lowland.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29890 + }, + { + "word": "Notlösung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergency solution;makeshift solution", + "romanization": "Notlösung", + "example_sentence_native": "Das war nur eine Notlösung, keine dauerhafte Lösung.", + "example_sentence_english": "That was just an emergency solution, not a permanent one.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29892 + }, + { + "word": "Nullpunkt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zero point;origin", + "romanization": "Nullpunkt", + "example_sentence_native": "Der Thermometer zeigte den Nullpunkt an.", + "example_sentence_english": "The thermometer showed the zero point.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29893 + }, + { + "word": "Onlinehandel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "online trade;retail", + "romanization": "Onlinehandel", + "example_sentence_native": "Der Onlinehandel wächst stetig.", + "example_sentence_english": "Online retail is growing steadily.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29898 + }, + { + "word": "Opi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandpa (colloquial)", + "romanization": "Opi", + "example_sentence_native": "Mein Opi erzählt immer lustige Geschichten.", + "example_sentence_english": "My grandpa always tells funny stories.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29899 + }, + { + "word": "Orgelmusik", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organ music", + "romanization": "Orgelmusik", + "example_sentence_native": "Die Orgelmusik erfüllte die Kirche.", + "example_sentence_english": "The organ music filled the church.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29900 + }, + { + "word": "Packstation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parcel locker", + "romanization": "Packstation", + "example_sentence_native": "Ich habe mein Paket an der Packstation abgeholt.", + "example_sentence_english": "I picked up my parcel at the parcel locker.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29901 + }, + { + "word": "Panikattacke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panic attack", + "romanization": "Panikattacke", + "example_sentence_native": "Sie erlitt eine Panikattacke während der Prüfung.", + "example_sentence_english": "She suffered a panic attack during the exam.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29902 + }, + { + "word": "Partnerstadt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twin town", + "romanization": "Partnerstadt", + "example_sentence_native": "Unsere Stadt hat eine Partnerstadt in Frankreich.", + "example_sentence_english": "Our city has a twin town in France.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29903 + }, + { + "word": "Pensionsfonds", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pension fund", + "romanization": "Pensionsfonds", + "example_sentence_native": "Viele Arbeitnehmer zahlen in einen Pensionsfonds ein.", + "example_sentence_english": "Many employees pay into a pension fund.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29905 + }, + { + "word": "Pergament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parchment", + "romanization": "Pergament", + "example_sentence_native": "Das alte Manuskript war auf Pergament geschrieben.", + "example_sentence_english": "The old manuscript was written on parchment.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29906 + }, + { + "word": "personenbezogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personal", + "romanization": "personenbezogen", + "example_sentence_native": "Der Schutz personenbezogener Daten ist wichtig.", + "example_sentence_english": "The protection of personal data is important.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29907 + }, + { + "word": "Perversion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perversion", + "romanization": "Perversion", + "example_sentence_native": "Er sah darin eine Perversion der Gerechtigkeit.", + "example_sentence_english": "He saw it as a perversion of justice.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29908 + }, + { + "word": "Pharmaunternehmen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pharmaceutical company", + "romanization": "Pharmaunternehmen", + "example_sentence_native": "Das Pharmaunternehmen entwickelt neue Medikamente.", + "example_sentence_english": "The pharmaceutical company develops new medicines.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29910 + }, + { + "word": "philippinisch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Philippine", + "romanization": "philippinisch", + "example_sentence_native": "Sie liebt die philippinische Küche.", + "example_sentence_english": "She loves Philippine cuisine.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29911 + }, + { + "word": "Positionspapier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "position paper", + "romanization": "Positionspapier", + "example_sentence_native": "Die Partei veröffentlichte ein Positionspapier zur Bildungspolitik.", + "example_sentence_english": "The party published a position paper on education policy.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29916 + }, + { + "word": "Preusse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Prussian", + "romanization": "Preusse", + "example_sentence_native": "Friedrich der Große war ein berühmter Preuße.", + "example_sentence_english": "Frederick the Great was a famous Prussian.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29917 + }, + { + "word": "Privatdetektiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private detective", + "romanization": "Privatdetektiv", + "example_sentence_native": "Der Privatdetektiv nahm den Fall an.", + "example_sentence_english": "The private detective took on the case.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29919 + }, + { + "word": "Präfektur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prefecture", + "romanization": "Präfektur", + "example_sentence_native": "Die Präfektur ist für die Verwaltung der Region zuständig.", + "example_sentence_english": "The prefecture is responsible for the administration of the region.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29921 + }, + { + "word": "Prälat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prelate", + "romanization": "Prälat", + "example_sentence_native": "Der Prälat hielt eine feierliche Rede.", + "example_sentence_english": "The prelate gave a solemn speech.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29922 + }, + { + "word": "raffen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to snatch;to gather quickly;to grasp", + "romanization": "raffen", + "example_sentence_native": "Er raffte seine Sachen zusammen und ging.", + "example_sentence_english": "He gathered his things quickly and left.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29923 + }, + { + "word": "Rapport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "report;rapport", + "romanization": "Rapport", + "example_sentence_native": "Der Soldat musste Rapport erstatten.", + "example_sentence_english": "The soldier had to make a report.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29926 + }, + { + "word": "Raumsonde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "space probe", + "romanization": "Raumsonde", + "example_sentence_native": "Die Raumsonde sendete Daten vom Mars.", + "example_sentence_english": "The space probe sent data from Mars.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29927 + }, + { + "word": "rehabilitieren", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rehabilitate", + "romanization": "rehabilitieren", + "example_sentence_native": "Der Arzt versucht, den Patienten zu rehabilitieren.", + "example_sentence_english": "The doctor tries to rehabilitate the patient.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29929 + }, + { + "word": "Reichsregierung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Reich government (historical)", + "romanization": "Reichsregierung", + "example_sentence_native": "Die Reichsregierung erließ neue Gesetze.", + "example_sentence_english": "The Reich government enacted new laws.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29930 + }, + { + "word": "Ripper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ripper;shredder", + "romanization": "Ripper", + "example_sentence_native": "Der Ripper wurde nie gefasst.", + "example_sentence_english": "The ripper was never caught.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29932 + }, + { + "word": "Routing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "routing", + "romanization": "Routing", + "example_sentence_native": "Das Routing des Netzwerks muss optimiert werden.", + "example_sentence_english": "The network routing needs to be optimized.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29933 + }, + { + "word": "rückwärtig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rear;backward;posterior", + "romanization": "rückwärtig", + "example_sentence_native": "Der rückwärtige Teil des Hauses ist sehr ruhig.", + "example_sentence_english": "The rear part of the house is very quiet.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29935 + }, + { + "word": "sacken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sink;to sag;to bag", + "romanization": "sacken", + "example_sentence_native": "Der Boden sackte unter seinem Gewicht.", + "example_sentence_english": "The ground sagged under his weight.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29936 + }, + { + "word": "Sailor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailor", + "romanization": "Sailor", + "example_sentence_native": "Der alte Sailor erzählte Geschichten vom Meer.", + "example_sentence_english": "The old sailor told stories of the sea.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29937 + }, + { + "word": "Schablone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "template;stencil", + "romanization": "Schablone", + "example_sentence_native": "Ich brauche eine Schablone für dieses Muster.", + "example_sentence_english": "I need a template for this pattern.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29942 + }, + { + "word": "Schandfleck", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disgrace;blot on the landscape", + "romanization": "Schandfleck", + "example_sentence_native": "Das verlassene Gebäude ist ein Schandfleck in der Stadt.", + "example_sentence_english": "The abandoned building is a blot on the city.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29943 + }, + { + "word": "schieflaufen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go wrong;to go awry", + "romanization": "schieflaufen", + "example_sentence_native": "Ich hoffe, nichts wird schieflaufen.", + "example_sentence_english": "I hope nothing will go wrong.", + "gender": "", + "is_separable_verb": true, + "separable_prefix": "schief", + "base_verb": "laufen", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29944 + }, + { + "word": "Schlingel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rascal;rogue", + "romanization": "Schlingel", + "example_sentence_native": "Der kleine Schlingel hat schon wieder Schokolade gestohlen.", + "example_sentence_english": "The little rascal stole chocolate again.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29945 + }, + { + "word": "schlürfen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slurp", + "romanization": "schlürfen", + "example_sentence_native": "Er schlürfte seinen Kaffee laut.", + "example_sentence_english": "He slurped his coffee loudly.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "verb", + "word_frequency": 29946 + }, + { + "word": "Schnellstrasse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "expressway;highway", + "romanization": "Schnellstrasse", + "example_sentence_native": "Wir fahren auf der Schnellstrasse nach Berlin.", + "example_sentence_english": "We are driving on the expressway to Berlin.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29947 + }, + { + "word": "Schopf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuft of hair;thatch (of hair)", + "romanization": "Schopf", + "example_sentence_native": "Er hatte einen wilden Schopf Haare.", + "example_sentence_english": "He had a wild tuft of hair.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29948 + }, + { + "word": "schroff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abrupt;gruff;steep", + "romanization": "schroff", + "example_sentence_native": "Seine Antwort war sehr schroff.", + "example_sentence_english": "His answer was very abrupt.", + "gender": "", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "adjective", + "word_frequency": 29949 + }, + { + "word": "Schulmeister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schoolmaster (often pejorative for pedantic person)", + "romanization": "Schulmeister", + "example_sentence_native": "Er verhielt sich wie ein alter Schulmeister.", + "example_sentence_english": "He behaved like an old schoolmaster.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29950 + }, + { + "word": "Schwarzfahrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fare dodger;stowaway", + "romanization": "Schwarzfahrer", + "example_sentence_native": "Der Schwarzfahrer wurde im Bus erwischt.", + "example_sentence_english": "The fare dodger was caught on the bus.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29952 + }, + { + "word": "Selbstachtung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-respect;self-esteem", + "romanization": "Selbstachtung", + "example_sentence_native": "Sie hat viel Selbstachtung.", + "example_sentence_english": "She has a lot of self-respect.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29956 + }, + { + "word": "Sexfilm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pornographic film;sex film", + "romanization": "Sexfilm", + "example_sentence_native": "Der Film wurde als Sexfilm eingestuft.", + "example_sentence_english": "The film was classified as a sex film.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29958 + }, + { + "word": "Silizium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silicon", + "romanization": "Silizium", + "example_sentence_native": "Silizium ist ein wichtiges Element in der Elektronik.", + "example_sentence_english": "Silicon is an important element in electronics.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29960 + }, + { + "word": "Slowake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovak (person)", + "romanization": "Slowake", + "example_sentence_native": "Er ist ein Slowake und kommt aus Bratislava.", + "example_sentence_english": "He is a Slovak and comes from Bratislava.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29964 + }, + { + "word": "Sohnemann", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little son", + "romanization": "Sohnemann", + "example_sentence_native": "Mein kleiner Sohnemann schläft schon tief und fest.", + "example_sentence_english": "My little son is already fast asleep.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29965 + }, + { + "word": "Sommerhaus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summer house", + "romanization": "Sommerhaus", + "example_sentence_native": "Wir verbringen den Urlaub in unserem Sommerhaus am See.", + "example_sentence_english": "We are spending the holiday in our summer house by the lake.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29966 + }, + { + "word": "Spielware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toy", + "romanization": "Spielware", + "example_sentence_native": "Das Geschäft verkauft verschiedene Arten von Spielwaren.", + "example_sentence_english": "The shop sells various types of toys.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29968 + }, + { + "word": "Spielzug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "move (in a game)", + "romanization": "Spielzug", + "example_sentence_native": "Der Trainer lobte den cleveren Spielzug seiner Mannschaft.", + "example_sentence_english": "The coach praised his team's clever play.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29969 + }, + { + "word": "Spinnerei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "craziness;spinning mill", + "romanization": "Spinnerei", + "example_sentence_native": "Was für eine Spinnerei! Das kann doch nicht wahr sein.", + "example_sentence_english": "What craziness! That can't be true.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29970 + }, + { + "word": "Spreu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chaff", + "romanization": "Spreu", + "example_sentence_native": "Man muss die Spreu vom Weizen trennen, um das Gute zu finden.", + "example_sentence_english": "One must separate the chaff from the wheat to find the good.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29971 + }, + { + "word": "Spätmittelalter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Late Middle Ages", + "romanization": "Spätmittelalter", + "example_sentence_native": "Viele wichtige Ereignisse fanden im Spätmittelalter statt.", + "example_sentence_english": "Many important events took place in the Late Middle Ages.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29972 + }, + { + "word": "Staatsausgabe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "government expenditure", + "romanization": "Staatsausgabe", + "example_sentence_native": "Die Staatsausgaben wurden im letzten Jahr stark erhöht.", + "example_sentence_english": "Government expenditures were significantly increased last year.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29974 + }, + { + "word": "Staatsfernsehen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state television", + "romanization": "Staatsfernsehen", + "example_sentence_native": "In einigen Ländern wird das Staatsfernsehen stark kontrolliert.", + "example_sentence_english": "In some countries, state television is heavily controlled.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29975 + }, + { + "word": "Stadtgarten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city garden", + "romanization": "Stadtgarten", + "example_sentence_native": "Wir trafen uns im Stadtgarten, um zu picknicken.", + "example_sentence_english": "We met in the city garden to have a picnic.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29976 + }, + { + "word": "Stellenanzeige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "job advertisement", + "romanization": "Stellenanzeige", + "example_sentence_native": "Ich habe eine interessante Stellenanzeige im Internet gefunden.", + "example_sentence_english": "I found an interesting job advertisement online.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29977 + }, + { + "word": "Sterbebett", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deathbed", + "romanization": "Sterbebett", + "example_sentence_native": "Er lag auf seinem Sterbebett und verabschiedete sich von seiner Familie.", + "example_sentence_english": "He lay on his deathbed, saying goodbye to his family.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29978 + }, + { + "word": "Steuerpolitik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax policy", + "romanization": "Steuerpolitik", + "example_sentence_native": "Die Regierung diskutiert eine neue Steuerpolitik.", + "example_sentence_english": "The government is discussing a new tax policy.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29979 + }, + { + "word": "Stiftungsrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foundation board", + "romanization": "Stiftungsrat", + "example_sentence_native": "Der Stiftungsrat traf sich, um wichtige Entscheidungen zu treffen.", + "example_sentence_english": "The foundation board met to make important decisions.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29980 + }, + { + "word": "Strafstoss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty kick", + "romanization": "Strafstoss", + "example_sentence_native": "Der Schiedsrichter gab einen Strafstoß.", + "example_sentence_english": "The referee awarded a penalty kick.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29984 + }, + { + "word": "Strafverteidiger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defense lawyer", + "romanization": "Strafverteidiger", + "example_sentence_native": "Der Strafverteidiger plädierte auf unschuldig.", + "example_sentence_english": "The defense lawyer pleaded not guilty.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29985 + }, + { + "word": "Strassenbeleuchtung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "street lighting", + "romanization": "Strassenbeleuchtung", + "example_sentence_native": "Die Strassenbeleuchtung wurde repariert.", + "example_sentence_english": "The street lighting was repaired.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29986 + }, + { + "word": "Studentenwohnheim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "student dormitory", + "romanization": "Studentenwohnheim", + "example_sentence_native": "Viele Studenten leben im Studentenwohnheim.", + "example_sentence_english": "Many students live in the student dormitory.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29987 + }, + { + "word": "Sturmflut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storm surge", + "romanization": "Sturmflut", + "example_sentence_native": "Die Küste wurde von einer Sturmflut getroffen.", + "example_sentence_english": "The coast was hit by a storm surge.", + "gender": "feminine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29988 + }, + { + "word": "Stöpsel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plug", + "romanization": "Stöpsel", + "example_sentence_native": "Der Stöpsel passte nicht in das Waschbecken.", + "example_sentence_english": "The plug did not fit into the sink.", + "gender": "masculine", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29989 + }, + { + "word": "Tableau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tableau", + "romanization": "Tableau", + "example_sentence_native": "Das Tableau zeigte alle wichtigen Informationen an.", + "example_sentence_english": "The tableau displayed all important information.", + "gender": "neuter", + "is_separable_verb": false, + "separable_prefix": "", + "base_verb": "", + "capitalization_sensitive": false, + "pos": "noun", + "word_frequency": 29994 + } +] diff --git a/data-pipeline/stage-2-annotate/sources/cefr/en.json b/data-pipeline/stage-2-annotate/sources/cefr/en.json new file mode 100644 index 0000000..aab3373 --- /dev/null +++ b/data-pipeline/stage-2-annotate/sources/cefr/en.json @@ -0,0 +1,186374 @@ +[ + { + "word": "be", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be", + "example_sentence_english": "I want to be a doctor.", + "pos": "verb", + "word_frequency": 7 + }, + { + "word": "have", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have", + "example_sentence_english": "I have a new car.", + "pos": "verb", + "word_frequency": 16 + }, + { + "word": "not", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not", + "example_sentence_english": "I am not hungry.", + "pos": "adverb", + "word_frequency": 19 + }, + { + "word": "all", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "all", + "example_sentence_english": "All students passed the exam.", + "pos": "adjective", + "word_frequency": 28 + }, + { + "word": "so", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "so", + "example_sentence_english": "It was so cold yesterday.", + "pos": "adverb", + "word_frequency": 29 + }, + { + "word": "one", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one", + "example_sentence_english": "I have one brother.", + "pos": "numeral", + "word_frequency": 34 + }, + { + "word": "can", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "can", + "example_sentence_english": "I can swim.", + "pos": "verb", + "word_frequency": 35 + }, + { + "word": "will", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "will", + "example_sentence_english": "I will call you later.", + "pos": "verb", + "word_frequency": 36 + }, + { + "word": "just", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "just", + "example_sentence_english": "I just finished my homework.", + "pos": "adverb", + "word_frequency": 37 + }, + { + "word": "like", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to like", + "example_sentence_english": "I like ice cream.", + "pos": "verb", + "word_frequency": 38 + }, + { + "word": "up", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "upwards, higher", + "example_sentence_english": "Please stand up.", + "pos": "adverb", + "word_frequency": 40 + }, + { + "word": "out", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "away from the inside", + "example_sentence_english": "She went out to buy milk.", + "pos": "adverb", + "word_frequency": 41 + }, + { + "word": "when", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at what time", + "example_sentence_english": "When do you want to meet?", + "pos": "adverb", + "word_frequency": 43 + }, + { + "word": "much", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large amount", + "example_sentence_english": "I don't have much time.", + "pos": "adjective", + "word_frequency": 44 + }, + { + "word": "do", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "perform an action", + "example_sentence_english": "What do you do for a living?", + "pos": "verb", + "word_frequency": 45 + }, + { + "word": "no", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not any", + "example_sentence_english": "There is no milk left.", + "pos": "adjective", + "word_frequency": 46 + }, + { + "word": "there", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in that place", + "example_sentence_english": "The book is over there.", + "pos": "adverb", + "word_frequency": 49 + }, + { + "word": "time", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the indefinite continued progress of existence", + "example_sentence_english": "What time is it?", + "pos": "noun", + "word_frequency": 52 + }, + { + "word": "get", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "obtain, receive", + "example_sentence_english": "Can you get me a glass of water?", + "pos": "verb", + "word_frequency": 53 + }, + { + "word": "new", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not existing before", + "example_sentence_english": "I bought a new car.", + "pos": "adjective", + "word_frequency": 56 + }, + { + "word": "people", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "human beings in general", + "example_sentence_english": "Many people attended the event.", + "pos": "noun", + "word_frequency": 57 + }, + { + "word": "how", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in what way", + "example_sentence_english": "How do you spell your name?", + "pos": "adverb", + "word_frequency": 58 + }, + { + "word": "some", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an unspecified amount or number", + "example_sentence_english": "I need some sugar.", + "pos": "adjective", + "word_frequency": 59 + }, + { + "word": "also", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in addition", + "example_sentence_english": "She is a doctor, and also a writer.", + "pos": "adverb", + "word_frequency": 60 + }, + { + "word": "now", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at the present time", + "example_sentence_english": "I need to leave now.", + "pos": "adverb", + "word_frequency": 62 + }, + { + "word": "other", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "different from the one mentioned", + "example_sentence_english": "Do you have any other questions.", + "pos": "adjective", + "word_frequency": 63 + }, + { + "word": "good", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "of high quality", + "example_sentence_english": "She is a good student.", + "pos": "adjective", + "word_frequency": 67 + }, + { + "word": "only", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "no one or nothing more than", + "example_sentence_english": "I only have five dollars.", + "pos": "adverb", + "word_frequency": 68 + }, + { + "word": "first", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coming before all others", + "example_sentence_english": "This is my first time here.", + "pos": "adjective", + "word_frequency": 70 + }, + { + "word": "know", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "have information or understanding", + "example_sentence_english": "I know the answer.", + "pos": "verb", + "word_frequency": 73 + }, + { + "word": "see", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "perceive with the eyes", + "example_sentence_english": "Can you see the mountain?", + "pos": "verb", + "word_frequency": 74 + }, + { + "word": "two", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 2", + "example_sentence_english": "I have two cats.", + "pos": "numeral", + "word_frequency": 75 + }, + { + "word": "make", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "create, produce", + "example_sentence_english": "Can you make a cake.", + "pos": "verb", + "word_frequency": 76 + }, + { + "word": "think", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "form or have in the mind", + "example_sentence_english": "I think it's a good idea.", + "pos": "verb", + "word_frequency": 78 + }, + { + "word": "any", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "some, a single", + "example_sentence_english": "Do you have any questions?", + "pos": "adjective", + "word_frequency": 79 + }, + { + "word": "then", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "next", + "example_sentence_english": "First, we eat, then we go home.", + "pos": "adverb", + "word_frequency": 80 + }, + { + "word": "back", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to the rear", + "example_sentence_english": "Please go back to your seat.", + "pos": "adverb", + "word_frequency": 82 + }, + { + "word": "want", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "desire", + "example_sentence_english": "I want a new car.", + "pos": "verb", + "word_frequency": 85 + }, + { + "word": "go", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "move", + "example_sentence_english": "Let's go to the cinema.", + "pos": "verb", + "word_frequency": 87 + }, + { + "word": "well", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in a good way", + "example_sentence_english": "She sings very well.", + "pos": "adverb", + "word_frequency": 88 + }, + { + "word": "say", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "speak", + "example_sentence_english": "What did you say?", + "pos": "verb", + "word_frequency": 89 + }, + { + "word": "way", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "path", + "example_sentence_english": "Which way is the station?", + "pos": "noun", + "word_frequency": 90 + }, + { + "word": "very", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "extremely", + "example_sentence_english": "It's very cold today.", + "pos": "adverb", + "word_frequency": 93 + }, + { + "word": "where", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at what place", + "example_sentence_english": "Where do you live?", + "pos": "adverb", + "word_frequency": 94 + }, + { + "word": "even", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surprisingly", + "example_sentence_english": "He didn't even say goodbye.", + "pos": "adverb", + "word_frequency": 95 + }, + { + "word": "here", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in this place", + "example_sentence_english": "Come here, please.", + "pos": "adverb", + "word_frequency": 98 + }, + { + "word": "need", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "require", + "example_sentence_english": "I need help.", + "pos": "verb", + "word_frequency": 99 + }, + { + "word": "really", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "truly", + "example_sentence_english": "I really like this song.", + "pos": "adverb", + "word_frequency": 100 + }, + { + "word": "right", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "correct", + "example_sentence_english": "That's the right answer.", + "pos": "adjective", + "word_frequency": 101 + }, + { + "word": "work", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "perform a task", + "example_sentence_english": "I work in an office.", + "pos": "verb", + "word_frequency": 102 + }, + { + "word": "year", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "period of 365 days", + "example_sentence_english": "Happy New Year!", + "pos": "noun", + "word_frequency": 103 + }, + { + "word": "day", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "period of 24 hours", + "example_sentence_english": "Have a good day!", + "pos": "noun", + "word_frequency": 104 + }, + { + "word": "too", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "also", + "example_sentence_english": "I want to come too.", + "pos": "adverb", + "word_frequency": 105 + }, + { + "word": "off", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "away from", + "example_sentence_english": "Turn the light off.", + "pos": "adverb", + "word_frequency": 107 + }, + { + "word": "why", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "for what reason", + "example_sentence_english": "Why are you late.", + "pos": "adverb", + "word_frequency": 108 + }, + { + "word": "still", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "continuing", + "example_sentence_english": "It's still raining.", + "pos": "adverb", + "word_frequency": 109 + }, + { + "word": "take", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grasp", + "example_sentence_english": "Please take a seat.", + "pos": "verb", + "word_frequency": 110 + }, + { + "word": "many", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large number of", + "example_sentence_english": "I have many friends.", + "pos": "adjective", + "word_frequency": 112 + }, + { + "word": "never", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at no time", + "example_sentence_english": "I never eat meat.", + "pos": "adverb", + "word_frequency": 113 + }, + { + "word": "life", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "existence", + "example_sentence_english": "Life is beautiful.", + "pos": "noun", + "word_frequency": 115 + }, + { + "word": "world", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the Earth", + "example_sentence_english": "The world is a big place.", + "pos": "noun", + "word_frequency": 116 + }, + { + "word": "down", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to a lower position", + "example_sentence_english": "Sit down, please.", + "pos": "adverb", + "word_frequency": 117 + }, + { + "word": "great", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "excellent", + "example_sentence_english": "That's a great idea!", + "pos": "adjective", + "word_frequency": 118 + }, + { + "word": "last", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "final; previous", + "example_sentence_english": "This is the last piece of cake.", + "pos": "adjective", + "word_frequency": 120 + }, + { + "word": "while", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of time", + "example_sentence_english": "I waited for a while.", + "pos": "noun", + "word_frequency": 122 + }, + { + "word": "such", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "of a kind previously mentioned; to such a degree", + "example_sentence_english": "It was such a beautiful day.", + "pos": "adjective", + "word_frequency": 123 + }, + { + "word": "love", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feel deep affection for", + "example_sentence_english": "I love to read books.", + "pos": "verb", + "word_frequency": 124 + }, + { + "word": "man", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an adult male human being", + "example_sentence_english": "The man walked quickly.", + "pos": "noun", + "word_frequency": 125 + }, + { + "word": "home", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the place where one lives permanently", + "example_sentence_english": "I'm going home now.", + "pos": "noun", + "word_frequency": 126 + }, + { + "word": "long", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "measuring a great distance from end to end", + "example_sentence_english": "She has long hair.", + "pos": "adjective", + "word_frequency": 127 + }, + { + "word": "look", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "direct one's gaze", + "example_sentence_english": "Look at that beautiful bird!", + "pos": "verb", + "word_frequency": 128 + }, + { + "word": "use", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "take, hold, or deploy (something) as a means of accomplishing a purpose", + "example_sentence_english": "Can I use your pen?", + "pos": "verb", + "word_frequency": 130 + }, + { + "word": "same", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "identical; not different", + "example_sentence_english": "We have the same idea.", + "pos": "adjective", + "word_frequency": 131 + }, + { + "word": "come", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "move or travel towards or into a place", + "example_sentence_english": "Please come here.", + "pos": "verb", + "word_frequency": 135 + }, + { + "word": "part", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece or segment of something", + "example_sentence_english": "This is an important part of the project.", + "pos": "noun", + "word_frequency": 136 + }, + { + "word": "state", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a nation or territory considered as an organized political community", + "example_sentence_english": "The state provides public services.", + "pos": "noun", + "word_frequency": 137 + }, + { + "word": "around", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on every side of", + "example_sentence_english": "We walked around the park.", + "pos": "adverb", + "word_frequency": 139 + }, + { + "word": "always", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at all times; on all occasions", + "example_sentence_english": "I always drink coffee in the morning.", + "pos": "adverb", + "word_frequency": 141 + }, + { + "word": "find", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "discover or perceive after a search", + "example_sentence_english": "I need to find my keys.", + "pos": "verb", + "word_frequency": 142 + }, + { + "word": "help", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "make it easier for (someone) to do something", + "example_sentence_english": "Can you help me?", + "pos": "verb", + "word_frequency": 144 + }, + { + "word": "high", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "of great or more than average extent, size, or amount", + "example_sentence_english": "The mountain is very high.", + "pos": "adjective", + "word_frequency": 145 + }, + { + "word": "little", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "small in size, amount, or degree", + "example_sentence_english": "I have a little dog.", + "pos": "adjective", + "word_frequency": 146 + }, + { + "word": "old", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "having lived for a long time; no longer young", + "example_sentence_english": "My grandfather is old.", + "pos": "adjective", + "word_frequency": 147 + }, + { + "word": "own", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "have (something) as one's own property; possess", + "example_sentence_english": "I own a small car.", + "pos": "verb", + "word_frequency": 150 + }, + { + "word": "thing", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an inanimate object", + "example_sentence_english": "What is that thing?", + "pos": "noun", + "word_frequency": 151 + }, + { + "word": "game", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an activity or sport involving skill, chance, or endurance", + "example_sentence_english": "Let's play a game.", + "pos": "noun", + "word_frequency": 154 + }, + { + "word": "give", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "freely transfer the possession of (something) to (someone)", + "example_sentence_english": "Can you give me that book?", + "pos": "verb", + "word_frequency": 155 + }, + { + "word": "house", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a building for human habitation", + "example_sentence_english": "My house is big.", + "pos": "noun", + "word_frequency": 156 + }, + { + "word": "place", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a particular position, point, or area in space", + "example_sentence_english": "This is a nice place.", + "pos": "noun", + "word_frequency": 157 + }, + { + "word": "school", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an institution for educating children", + "example_sentence_english": "I go to school every day.", + "pos": "noun", + "word_frequency": 158 + }, + { + "word": "again", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "another time; once more", + "example_sentence_english": "Please say that again.", + "pos": "adverb", + "word_frequency": 159 + }, + { + "word": "next", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "following; coming immediately after", + "example_sentence_english": "The next train leaves in five minutes.", + "pos": "adjective", + "word_frequency": 160 + }, + { + "word": "each", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "every single", + "example_sentence_english": "Each student received a book.", + "pos": "adjective", + "word_frequency": 161 + }, + { + "word": "mr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mister (title)", + "example_sentence_english": "Mr. Smith is our new teacher.", + "pos": "noun", + "word_frequency": 162 + }, + { + "word": "end", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the final part", + "example_sentence_english": "This is the end of the movie.", + "pos": "noun", + "word_frequency": 165 + }, + { + "word": "show", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to display; to present", + "example_sentence_english": "Can you show me your new phone?", + "pos": "verb", + "word_frequency": 167 + }, + { + "word": "big", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "large in size", + "example_sentence_english": "That's a very big dog.", + "pos": "adjective", + "word_frequency": 168 + }, + { + "word": "feel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to experience an emotion or sensation", + "example_sentence_english": "I feel happy today.", + "pos": "verb", + "word_frequency": 169 + }, + { + "word": "sure", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "certain; confident", + "example_sentence_english": "Are you sure about that?", + "pos": "adjective", + "word_frequency": 170 + }, + { + "word": "team", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a group of people working together", + "example_sentence_english": "Our team won the game.", + "pos": "noun", + "word_frequency": 171 + }, + { + "word": "ever", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at any time", + "example_sentence_english": "Have you ever been to Paris.", + "pos": "adverb", + "word_frequency": 172 + }, + { + "word": "family", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a group of related people", + "example_sentence_english": "My family lives in a small house.", + "pos": "noun", + "word_frequency": 173 + }, + { + "word": "keep", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to retain; to continue", + "example_sentence_english": "Please keep the change.", + "pos": "verb", + "word_frequency": 174 + }, + { + "word": "please", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make happy or satisfied", + "example_sentence_english": "He tried to please his parents.", + "pos": "verb", + "word_frequency": 176 + }, + { + "word": "put", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to place", + "example_sentence_english": "Please put the book on the table.", + "pos": "verb", + "word_frequency": 177 + }, + { + "word": "money", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "currency", + "example_sentence_english": "I need some money for the bus.", + "pos": "noun", + "word_frequency": 178 + }, + { + "word": "free", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not costing anything; not restricted", + "example_sentence_english": "This concert is free.", + "pos": "adjective", + "word_frequency": 179 + }, + { + "word": "second", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "next after the first", + "example_sentence_english": "This is my second cup of coffee.", + "pos": "adjective", + "word_frequency": 180 + }, + { + "word": "away", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to or at a distance", + "example_sentence_english": "Go away from here!", + "pos": "adverb", + "word_frequency": 182 + }, + { + "word": "left", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "on the side of the body that is to the west when one is facing north", + "example_sentence_english": "Turn left at the next corner.", + "pos": "adjective", + "word_frequency": 183 + }, + { + "word": "number", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a quantity or count", + "example_sentence_english": "What's your phone number?", + "pos": "noun", + "word_frequency": 184 + }, + { + "word": "city", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large town", + "example_sentence_english": "London is a big city.", + "pos": "noun", + "word_frequency": 185 + }, + { + "word": "lot", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large amount or number", + "example_sentence_english": "We have a lot of work to do.", + "pos": "noun", + "word_frequency": 186 + }, + { + "word": "name", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a word or term by which a person or thing is known", + "example_sentence_english": "My name is John.", + "pos": "noun", + "word_frequency": 187 + }, + { + "word": "night", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the period of darkness between sunset and sunrise", + "example_sentence_english": "I like to read at night.", + "pos": "noun", + "word_frequency": 188 + }, + { + "word": "play", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to engage in an activity for enjoyment", + "example_sentence_english": "Let's play a game.", + "pos": "verb", + "word_frequency": 189 + }, + { + "word": "company", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a business organization", + "example_sentence_english": "She works for a big company.", + "pos": "noun", + "word_frequency": 191 + }, + { + "word": "few", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small number of", + "example_sentence_english": "I have a few friends coming over.", + "pos": "adjective", + "word_frequency": 192 + }, + { + "word": "let", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to allow", + "example_sentence_english": "Let me help you.", + "pos": "verb", + "word_frequency": 193 + }, + { + "word": "real", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actual; genuine", + "example_sentence_english": "Is that a real diamond?", + "pos": "adjective", + "word_frequency": 194 + }, + { + "word": "call", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to telephone; to name", + "example_sentence_english": "I will call you later.", + "pos": "verb", + "word_frequency": 196 + }, + { + "word": "different", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not the same", + "example_sentence_english": "These two shirts are very different.", + "pos": "adjective", + "word_frequency": 197 + }, + { + "word": "set", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put or place; to establish", + "example_sentence_english": "Please set the table for dinner.", + "pos": "verb", + "word_frequency": 198 + }, + { + "word": "however", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in whatever way; nevertheless", + "example_sentence_english": "It was raining; however, we still went for a walk.", + "pos": "adverb", + "word_frequency": 199 + }, + { + "word": "god", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deity", + "example_sentence_english": "Many people believe in one God.", + "pos": "noun", + "word_frequency": 200 + }, + { + "word": "government", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "governing body", + "example_sentence_english": "The government announced new policies.", + "pos": "noun", + "word_frequency": 201 + }, + { + "word": "group", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "collection of people/things", + "example_sentence_english": "We worked in a small group.", + "pos": "noun", + "word_frequency": 202 + }, + { + "word": "public", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to people in general", + "example_sentence_english": "The park is open to the public.", + "pos": "adjective", + "word_frequency": 203 + }, + { + "word": "top", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "highest part", + "example_sentence_english": "He reached the top of the mountain.", + "pos": "noun", + "word_frequency": 204 + }, + { + "word": "woman", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "adult female human", + "example_sentence_english": "The woman smiled at me.", + "pos": "noun", + "word_frequency": 205 + }, + { + "word": "business", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "commercial activity", + "example_sentence_english": "She started her own business.", + "pos": "noun", + "word_frequency": 206 + }, + { + "word": "care", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feel concern or interest", + "example_sentence_english": "I care about my family.", + "pos": "verb", + "word_frequency": 207 + }, + { + "word": "start", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "begin", + "example_sentence_english": "Let's start the meeting.", + "pos": "verb", + "word_frequency": 208 + }, + { + "word": "system", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "set of connected things", + "example_sentence_english": "The new computer system is very efficient.", + "pos": "noun", + "word_frequency": 209 + }, + { + "word": "week", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "period of seven days", + "example_sentence_english": "I will see you next week.", + "pos": "noun", + "word_frequency": 210 + }, + { + "word": "already", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "by this time", + "example_sentence_english": "I have already finished my homework.", + "pos": "adverb", + "word_frequency": 212 + }, + { + "word": "case", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instance or situation", + "example_sentence_english": "In this case, we should wait.", + "pos": "noun", + "word_frequency": 214 + }, + { + "word": "person", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "human being", + "example_sentence_english": "She is a kind person.", + "pos": "noun", + "word_frequency": 216 + }, + { + "word": "today", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "this day", + "example_sentence_english": "What are you doing today?", + "pos": "noun", + "word_frequency": 217 + }, + { + "word": "change", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "make or become different", + "example_sentence_english": "The weather can change quickly.", + "pos": "verb", + "word_frequency": 218 + }, + { + "word": "enough", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "as much as needed", + "example_sentence_english": "Do we have enough time?", + "pos": "adjective", + "word_frequency": 219 + }, + { + "word": "full", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "containing as much as possible", + "example_sentence_english": "The glass is full of water.", + "pos": "adjective", + "word_frequency": 221 + }, + { + "word": "live", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "reside; be alive", + "example_sentence_english": "I live in a big city.", + "pos": "verb", + "word_frequency": 222 + }, + { + "word": "point", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "specific position or idea", + "example_sentence_english": "What's the point of this discussion?", + "pos": "noun", + "word_frequency": 223 + }, + { + "word": "read", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "interpret written words", + "example_sentence_english": "I love to read books.", + "pos": "verb", + "word_frequency": 224 + }, + { + "word": "tell", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "communicate information", + "example_sentence_english": "Please tell me your name.", + "pos": "verb", + "word_frequency": 225 + }, + { + "word": "yet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "up to the present time", + "example_sentence_english": "He hasn't arrived yet.", + "pos": "adverb", + "word_frequency": 226 + }, + { + "word": "bad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not good", + "example_sentence_english": "That was a bad idea.", + "pos": "adjective", + "word_frequency": 227 + }, + { + "word": "hard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difficult; firm", + "example_sentence_english": "This test is very hard.", + "pos": "adjective", + "word_frequency": 229 + }, + { + "word": "mean", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intend to convey", + "example_sentence_english": "What does this word mean?", + "pos": "verb", + "word_frequency": 230 + }, + { + "word": "once", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one time", + "example_sentence_english": "I only met him once.", + "pos": "adverb", + "word_frequency": 231 + }, + { + "word": "support", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "give assistance to", + "example_sentence_english": "We support local businesses.", + "pos": "verb", + "word_frequency": 232 + }, + { + "word": "include", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contain as part of a whole", + "example_sentence_english": "The price includes tax.", + "pos": "verb", + "word_frequency": 233 + }, + { + "word": "music", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "organized sound", + "example_sentence_english": "I like listening to music.", + "pos": "noun", + "word_frequency": 234 + }, + { + "word": "power", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ability to act or influence", + "example_sentence_english": "The country has a lot of economic power.", + "pos": "noun", + "word_frequency": 235 + }, + { + "word": "stop", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cease movement or activity", + "example_sentence_english": "Please stop talking.", + "pos": "verb", + "word_frequency": 236 + }, + { + "word": "water", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clear liquid", + "example_sentence_english": "I need a glass of water.", + "pos": "noun", + "word_frequency": 237 + }, + { + "word": "base", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "use as a foundation", + "example_sentence_english": "The movie is based on a true story.", + "pos": "verb", + "word_frequency": 238 + }, + { + "word": "believe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accept as true", + "example_sentence_english": "I believe in you.", + "pos": "verb", + "word_frequency": 239 + }, + { + "word": "head", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "head", + "example_sentence_english": "My head hurts.", + "pos": "noun", + "word_frequency": 240 + }, + { + "word": "national", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national", + "example_sentence_english": "The national anthem was played.", + "pos": "adjective", + "word_frequency": 241 + }, + { + "word": "small", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "small", + "example_sentence_english": "I live in a small house.", + "pos": "adjective", + "word_frequency": 242 + }, + { + "word": "white", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "white", + "example_sentence_english": "The snow is white.", + "pos": "adjective", + "word_frequency": 243 + }, + { + "word": "far", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "far", + "example_sentence_english": "The store is not far from here.", + "pos": "adjective", + "word_frequency": 244 + }, + { + "word": "job", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "job", + "example_sentence_english": "What is your job?", + "pos": "noun", + "word_frequency": 245 + }, + { + "word": "side", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "side", + "example_sentence_english": "Look on the other side of the street.", + "pos": "noun", + "word_frequency": 246 + }, + { + "word": "try", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "try", + "example_sentence_english": "I will try my best.", + "pos": "verb", + "word_frequency": 248 + }, + { + "word": "actually", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actually", + "example_sentence_english": "I actually forgot my keys.", + "pos": "adverb", + "word_frequency": 250 + }, + { + "word": "later", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "later", + "example_sentence_english": "See you later.", + "pos": "adverb", + "word_frequency": 252 + }, + { + "word": "line", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "example_sentence_english": "Please stand in line.", + "pos": "noun", + "word_frequency": 253 + }, + { + "word": "order", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "order", + "example_sentence_english": "The books are in alphabetical order.", + "pos": "noun", + "word_frequency": 254 + }, + { + "word": "party", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "party", + "example_sentence_english": "We are going to a party tonight.", + "pos": "noun", + "word_frequency": 255 + }, + { + "word": "run", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "run", + "example_sentence_english": "I like to run in the park.", + "pos": "verb", + "word_frequency": 256 + }, + { + "word": "service", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "service", + "example_sentence_english": "The customer service was excellent.", + "pos": "noun", + "word_frequency": 257 + }, + { + "word": "country", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "country", + "example_sentence_english": "Which country are you from?", + "pos": "noun", + "word_frequency": 259 + }, + { + "word": "open", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "open", + "example_sentence_english": "The door is open.", + "pos": "adjective", + "word_frequency": 260 + }, + { + "word": "season", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "season", + "example_sentence_english": "My favorite season is summer.", + "pos": "noun", + "word_frequency": 261 + }, + { + "word": "thank", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thank", + "example_sentence_english": "I want to thank you for your help.", + "pos": "verb", + "word_frequency": 263 + }, + { + "word": "child", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "child", + "example_sentence_english": "She is a happy child.", + "pos": "noun", + "word_frequency": 264 + }, + { + "word": "general", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "general", + "example_sentence_english": "This is a general rule.", + "pos": "adjective", + "word_frequency": 266 + }, + { + "word": "area", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "area", + "example_sentence_english": "This is a quiet area.", + "pos": "noun", + "word_frequency": 268 + }, + { + "word": "black", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "black", + "example_sentence_english": "My cat is black.", + "pos": "adjective", + "word_frequency": 269 + }, + { + "word": "follow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "follow", + "example_sentence_english": "Please follow me.", + "pos": "verb", + "word_frequency": 271 + }, + { + "word": "law", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "law", + "example_sentence_english": "It's against the law.", + "pos": "noun", + "word_frequency": 272 + }, + { + "word": "together", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "together", + "example_sentence_english": "We work together.", + "pos": "adverb", + "word_frequency": 273 + }, + { + "word": "war", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "war", + "example_sentence_english": "The country was at war.", + "pos": "noun", + "word_frequency": 274 + }, + { + "word": "whole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whole", + "example_sentence_english": "I ate the whole cake.", + "pos": "adjective", + "word_frequency": 275 + }, + { + "word": "car", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 276 + }, + { + "word": "face", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "face", + "example_sentence_english": "She has a beautiful face.", + "pos": "noun", + "word_frequency": 277 + }, + { + "word": "kind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kind", + "example_sentence_english": "She is a very kind person.", + "pos": "adjective", + "word_frequency": 279 + }, + { + "word": "maybe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perhaps", + "example_sentence_english": "Maybe we should go home now.", + "pos": "adverb", + "word_frequency": 280 + }, + { + "word": "president", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "head of state", + "example_sentence_english": "The president gave a speech.", + "pos": "noun", + "word_frequency": 282 + }, + { + "word": "story", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "narrative", + "example_sentence_english": "Tell me a story.", + "pos": "noun", + "word_frequency": 283 + }, + { + "word": "course", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "path; subject of study", + "example_sentence_english": "I'm taking a history course.", + "pos": "noun", + "word_frequency": 284 + }, + { + "word": "health", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "state of well-being", + "example_sentence_english": "Good health is important.", + "pos": "noun", + "word_frequency": 285 + }, + { + "word": "hope", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wish for", + "example_sentence_english": "I hope you have a good day.", + "pos": "verb", + "word_frequency": 286 + }, + { + "word": "important", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "significant", + "example_sentence_english": "This is an important decision.", + "pos": "adjective", + "word_frequency": 287 + }, + { + "word": "news", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "information about recent events", + "example_sentence_english": "Did you hear the news?", + "pos": "noun", + "word_frequency": 288 + }, + { + "word": "able", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "capable", + "example_sentence_english": "I am able to help you.", + "pos": "adjective", + "word_frequency": 290 + }, + { + "word": "book", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "written work", + "example_sentence_english": "I am reading a good book.", + "pos": "noun", + "word_frequency": 291 + }, + { + "word": "early", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "before the usual time", + "example_sentence_english": "We arrived early.", + "pos": "adjective", + "word_frequency": 292 + }, + { + "word": "friend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "companion", + "example_sentence_english": "She is my best friend.", + "pos": "noun", + "word_frequency": 293 + }, + { + "word": "information", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "facts or details", + "example_sentence_english": "I need more information.", + "pos": "noun", + "word_frequency": 294 + }, + { + "word": "local", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to a particular area", + "example_sentence_english": "We visited a local market.", + "pos": "adjective", + "word_frequency": 295 + }, + { + "word": "post", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of writing; a job", + "example_sentence_english": "I saw your post on social media.", + "pos": "noun", + "word_frequency": 297 + }, + { + "word": "video", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moving images", + "example_sentence_english": "Let's watch a video.", + "pos": "noun", + "word_frequency": 299 + }, + { + "word": "young", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not old", + "example_sentence_english": "She has a young child.", + "pos": "adjective", + "word_frequency": 300 + }, + { + "word": "ago", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in the past", + "example_sentence_english": "I saw him two days ago.", + "pos": "adverb", + "word_frequency": 301 + }, + { + "word": "social", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to society", + "example_sentence_english": "Humans are social creatures.", + "pos": "adjective", + "word_frequency": 302 + }, + { + "word": "talk", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "speak", + "example_sentence_english": "Let's talk about it.", + "pos": "verb", + "word_frequency": 303 + }, + { + "word": "court", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legal tribunal; playing area", + "example_sentence_english": "The case went to court.", + "pos": "noun", + "word_frequency": 305 + }, + { + "word": "fact", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of information known to be true", + "example_sentence_english": "That's an interesting fact.", + "pos": "noun", + "word_frequency": 306 + }, + { + "word": "guy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "man", + "example_sentence_english": "That guy is really tall.", + "pos": "noun", + "word_frequency": 307 + }, + { + "word": "half", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one of two equal parts", + "example_sentence_english": "I'll take half of the cake.", + "pos": "noun", + "word_frequency": 308 + }, + { + "word": "hand", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "part of the body", + "example_sentence_english": "She raised her hand.", + "pos": "noun", + "word_frequency": 309 + }, + { + "word": "level", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a position on a scale", + "example_sentence_english": "What level are you on?", + "pos": "noun", + "word_frequency": 310 + }, + { + "word": "mind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intellect; thought", + "example_sentence_english": "Keep that in mind.", + "pos": "noun", + "word_frequency": 311 + }, + { + "word": "often", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "frequently", + "example_sentence_english": "I often go for a walk.", + "pos": "adverb", + "word_frequency": 312 + }, + { + "word": "single", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one only", + "example_sentence_english": "I bought a single ticket.", + "pos": "adjective", + "word_frequency": 313 + }, + { + "word": "become", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grow into", + "example_sentence_english": "He wants to become a doctor.", + "pos": "verb", + "word_frequency": 314 + }, + { + "word": "body", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "physical structure", + "example_sentence_english": "The human body is amazing.", + "pos": "noun", + "word_frequency": 315 + }, + { + "word": "control", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manage", + "example_sentence_english": "He can control his emotions.", + "pos": "verb", + "word_frequency": 316 + }, + { + "word": "death", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "end of life", + "example_sentence_english": "Death is a natural part of life.", + "pos": "noun", + "word_frequency": 317 + }, + { + "word": "food", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "edible substance", + "example_sentence_english": "I need some food.", + "pos": "noun", + "word_frequency": 318 + }, + { + "word": "hour", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "60 minutes", + "example_sentence_english": "The meeting lasted an hour.", + "pos": "noun", + "word_frequency": 319 + }, + { + "word": "office", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a place where people work", + "example_sentence_english": "I go to the office every day.", + "pos": "noun", + "word_frequency": 320 + }, + { + "word": "pay", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to give money for something", + "example_sentence_english": "I need to pay for the groceries.", + "pos": "verb", + "word_frequency": 321 + }, + { + "word": "problem", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a difficulty", + "example_sentence_english": "We have a big problem to solve.", + "pos": "noun", + "word_frequency": 322 + }, + { + "word": "south", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one of the four main points of the compass", + "example_sentence_english": "The birds fly south for the winter.", + "pos": "noun", + "word_frequency": 323 + }, + { + "word": "true", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in accordance with fact or reality", + "example_sentence_english": "Is that story true?", + "pos": "adjective", + "word_frequency": 324 + }, + { + "word": "almost", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "very nearly", + "example_sentence_english": "I almost forgot my keys.", + "pos": "adverb", + "word_frequency": 325 + }, + { + "word": "history", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the study of past events", + "example_sentence_english": "I love studying history.", + "pos": "noun", + "word_frequency": 327 + }, + { + "word": "large", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "of considerable or relatively great size", + "example_sentence_english": "That's a large dog.", + "pos": "adjective", + "word_frequency": 328 + }, + { + "word": "lose", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to no longer have something", + "example_sentence_english": "Don't lose your passport.", + "pos": "verb", + "word_frequency": 329 + }, + { + "word": "research", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "systematic investigation into materials and sources", + "example_sentence_english": "She is doing research for her thesis.", + "pos": "noun", + "word_frequency": 331 + }, + { + "word": "room", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a part of a building enclosed by walls", + "example_sentence_english": "My room is on the second floor.", + "pos": "noun", + "word_frequency": 332 + }, + { + "word": "several", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "more than two but not many", + "example_sentence_english": "I have several books to read.", + "pos": "adjective", + "word_frequency": 333 + }, + { + "word": "university", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a high-level educational institution", + "example_sentence_english": "She wants to go to university next year.", + "pos": "noun", + "word_frequency": 334 + }, + { + "word": "win", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be successful in a competition", + "example_sentence_english": "I hope we win the game.", + "pos": "verb", + "word_frequency": 335 + }, + { + "word": "wrong", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "incorrect or mistaken", + "example_sentence_english": "That answer is wrong.", + "pos": "adjective", + "word_frequency": 336 + }, + { + "word": "along", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a line; onward", + "example_sentence_english": "We walked along the beach.", + "pos": "adverb", + "word_frequency": 337 + }, + { + "word": "else", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in addition; besides", + "example_sentence_english": "What else do you need?", + "pos": "adverb", + "word_frequency": 339 + }, + { + "word": "girl", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a female child or young woman", + "example_sentence_english": "The little girl is playing.", + "pos": "noun", + "word_frequency": 340 + }, + { + "word": "matter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a subject or situation", + "example_sentence_english": "What's the matter?", + "pos": "noun", + "word_frequency": 342 + }, + { + "word": "pretty", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "attractive in a delicate way", + "example_sentence_english": "She has a pretty dress.", + "pos": "adjective", + "word_frequency": 343 + }, + { + "word": "remember", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to recall from memory", + "example_sentence_english": "I can't remember his name.", + "pos": "verb", + "word_frequency": 344 + }, + { + "word": "air", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the invisible gaseous substance surrounding the Earth", + "example_sentence_english": "The air is fresh today.", + "pos": "noun", + "word_frequency": 345 + }, + { + "word": "bit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small piece or amount", + "example_sentence_english": "Can I have a bit of cake?", + "pos": "noun", + "word_frequency": 346 + }, + { + "word": "hit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to strike with a blow", + "example_sentence_english": "He hit the ball very hard.", + "pos": "verb", + "word_frequency": 347 + }, + { + "word": "nice", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pleasant or agreeable", + "example_sentence_english": "Have a nice day!", + "pos": "adjective", + "word_frequency": 348 + }, + { + "word": "probably", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "almost certainly", + "example_sentence_english": "It will probably rain tomorrow.", + "pos": "adverb", + "word_frequency": 349 + }, + { + "word": "understand", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to perceive the meaning of", + "example_sentence_english": "Do you understand the instructions?", + "pos": "verb", + "word_frequency": 350 + }, + { + "word": "class", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a group of students taught together", + "example_sentence_english": "I have a math class at 10 AM.", + "pos": "noun", + "word_frequency": 353 + }, + { + "word": "close", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a short distance away", + "example_sentence_english": "The store is very close to my house.", + "pos": "adjective", + "word_frequency": 354 + }, + { + "word": "idea", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a thought or suggestion", + "example_sentence_english": "That's a great idea!", + "pos": "noun", + "word_frequency": 355 + }, + { + "word": "international", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing or occurring between nations", + "example_sentence_english": "This is an international airport.", + "pos": "adjective", + "word_frequency": 356 + }, + { + "word": "past", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the time that has gone by", + "example_sentence_english": "Learn from the past.", + "pos": "noun", + "word_frequency": 357 + }, + { + "word": "possible", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "able to be done or achieved", + "example_sentence_english": "Is it possible to finish this today?", + "pos": "adjective", + "word_frequency": 358 + }, + { + "word": "cause", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reason, origin", + "example_sentence_english": "What was the cause of the accident?", + "pos": "noun", + "word_frequency": 360 + }, + { + "word": "due", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expected, owed", + "example_sentence_english": "The train is due to arrive at 3 PM.", + "pos": "adjective", + "word_frequency": 361 + }, + { + "word": "happy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feeling pleasure or contentment", + "example_sentence_english": "She was very happy with her new car.", + "pos": "adjective", + "word_frequency": 362 + }, + { + "word": "human", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to people", + "example_sentence_english": "It's a basic human right.", + "pos": "adjective", + "word_frequency": 363 + }, + { + "word": "member", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person belonging to a group", + "example_sentence_english": "He is a member of the club.", + "pos": "noun", + "word_frequency": 364 + }, + { + "word": "month", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a period of about 30 days", + "example_sentence_english": "There are twelve months in a year.", + "pos": "noun", + "word_frequency": 365 + }, + { + "word": "move", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "change position", + "example_sentence_english": "Please move your car.", + "pos": "verb", + "word_frequency": 366 + }, + { + "word": "question", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sentence asking for information", + "example_sentence_english": "Do you have any questions?", + "pos": "noun", + "word_frequency": 367 + }, + { + "word": "series", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a number of similar things coming one after another", + "example_sentence_english": "The TV series has many episodes.", + "pos": "noun", + "word_frequency": 369 + }, + { + "word": "wait", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "stay in one place until something happens", + "example_sentence_english": "Please wait for me.", + "pos": "verb", + "word_frequency": 370 + }, + { + "word": "ask", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to put a question to someone", + "example_sentence_english": "I need to ask you a question.", + "pos": "verb", + "word_frequency": 371 + }, + { + "word": "community", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of people living in the same place", + "example_sentence_english": "The local community is very supportive.", + "pos": "noun", + "word_frequency": 372 + }, + { + "word": "data", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facts and statistics collected together", + "example_sentence_english": "We need to analyze the data.", + "pos": "noun", + "word_frequency": 373 + }, + { + "word": "late", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "after the usual or expected time", + "example_sentence_english": "He was late for the meeting.", + "pos": "adjective", + "word_frequency": 374 + }, + { + "word": "leave", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "go away from", + "example_sentence_english": "I have to leave now.", + "pos": "verb", + "word_frequency": 375 + }, + { + "word": "north", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one of the four main points of the compass", + "example_sentence_english": "The city is located to the north.", + "pos": "noun", + "word_frequency": 376 + }, + { + "word": "special", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "better, greater, or different from what is usual", + "example_sentence_english": "This is a very special occasion.", + "pos": "adjective", + "word_frequency": 377 + }, + { + "word": "watch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "look at or observe attentively", + "example_sentence_english": "Let's watch a movie tonight.", + "pos": "verb", + "word_frequency": 378 + }, + { + "word": "future", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the time yet to come", + "example_sentence_english": "What will happen in the future?", + "pos": "noun", + "word_frequency": 381 + }, + { + "word": "light", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the natural agent that stimulates sight", + "example_sentence_english": "Turn on the light, please.", + "pos": "noun", + "word_frequency": 382 + }, + { + "word": "low", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not high", + "example_sentence_english": "The water level is very low.", + "pos": "adjective", + "word_frequency": 383 + }, + { + "word": "morning", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the period of time between midnight and noon", + "example_sentence_english": "I wake up early every morning.", + "pos": "noun", + "word_frequency": 385 + }, + { + "word": "police", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the civil force of a state, responsible for the prevention and detection of crime", + "example_sentence_english": "Call the police if you see anything suspicious.", + "pos": "noun", + "word_frequency": 386 + }, + { + "word": "short", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "having little length", + "example_sentence_english": "He is quite short for his age.", + "pos": "adjective", + "word_frequency": 387 + }, + { + "word": "stay", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "remain in a place", + "example_sentence_english": "I want to stay home tonight.", + "pos": "verb", + "word_frequency": 388 + }, + { + "word": "age", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the length of time that a person has lived", + "example_sentence_english": "What is your age?", + "pos": "noun", + "word_frequency": 389 + }, + { + "word": "buy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "obtain in exchange for payment", + "example_sentence_english": "I need to buy some groceries.", + "pos": "verb", + "word_frequency": 390 + }, + { + "word": "deal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distribute, handle", + "example_sentence_english": "How do you deal with stress?", + "pos": "verb", + "word_frequency": 391 + }, + { + "word": "rather", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to a certain extent; somewhat", + "example_sentence_english": "It's rather cold today.", + "pos": "adverb", + "word_frequency": 392 + }, + { + "word": "reason", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cause, explanation, or justification", + "example_sentence_english": "What was the reason for your decision?", + "pos": "noun", + "word_frequency": 393 + }, + { + "word": "red", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a primary color", + "example_sentence_english": "Her favorite color is red.", + "pos": "adjective", + "word_frequency": 394 + }, + { + "word": "report", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a spoken or written account of something", + "example_sentence_english": "I have to write a report for work.", + "pos": "noun", + "word_frequency": 395 + }, + { + "word": "soon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in a short time", + "example_sentence_english": "I'll be there soon.", + "pos": "adverb", + "word_frequency": 396 + }, + { + "word": "third", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coming after the second", + "example_sentence_english": "This is my third cup of coffee.", + "pos": "adjective", + "word_frequency": 397 + }, + { + "word": "turn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "move in a circular direction", + "example_sentence_english": "Turn left at the next corner.", + "pos": "verb", + "word_frequency": 398 + }, + { + "word": "check", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to verify", + "example_sentence_english": "Please check your answers carefully.", + "pos": "verb", + "word_frequency": 401 + }, + { + "word": "development", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "growth, progress", + "example_sentence_english": "The city has seen rapid development in recent years.", + "pos": "noun", + "word_frequency": 402 + }, + { + "word": "form", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shape, document", + "example_sentence_english": "Please fill out this form completely.", + "pos": "noun", + "word_frequency": 403 + }, + { + "word": "further", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "more, additionally", + "example_sentence_english": "We need to discuss this further.", + "pos": "adverb", + "word_frequency": 404 + }, + { + "word": "heart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "organ that pumps blood", + "example_sentence_english": "The human heart beats about 70 times a minute.", + "pos": "noun", + "word_frequency": 405 + }, + { + "word": "minute", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixty seconds", + "example_sentence_english": "I'll be ready in a minute.", + "pos": "noun", + "word_frequency": 406 + }, + { + "word": "act", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to perform an action", + "example_sentence_english": "He decided to act quickly.", + "pos": "verb", + "word_frequency": 410 + }, + { + "word": "fire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "combustion, flames", + "example_sentence_english": "Be careful with fire.", + "pos": "noun", + "word_frequency": 412 + }, + { + "word": "fun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "enjoyment, amusement", + "example_sentence_english": "We had a lot of fun at the party.", + "pos": "noun", + "word_frequency": 413 + }, + { + "word": "major", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "important, significant", + "example_sentence_english": "This is a major problem.", + "pos": "adjective", + "word_frequency": 414 + }, + { + "word": "medium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a means, average size", + "example_sentence_english": "Water is a good medium for growing plants.", + "pos": "noun", + "word_frequency": 415 + }, + { + "word": "phone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telephone", + "example_sentence_english": "Can I use your phone?", + "pos": "noun", + "word_frequency": 416 + }, + { + "word": "player", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "someone who plays", + "example_sentence_english": "He is a key player on the team.", + "pos": "noun", + "word_frequency": 417 + }, + { + "word": "art", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "creative expression", + "example_sentence_english": "She loves visiting art galleries.", + "pos": "noun", + "word_frequency": 418 + }, + { + "word": "build", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to construct", + "example_sentence_english": "They plan to build a new house.", + "pos": "verb", + "word_frequency": 420 + }, + { + "word": "easy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not difficult", + "example_sentence_english": "This test is very easy.", + "pos": "adjective", + "word_frequency": 421 + }, + { + "word": "market", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place for buying and selling", + "example_sentence_english": "Let's go to the market to buy fresh vegetables.", + "pos": "noun", + "word_frequency": 423 + }, + { + "word": "near", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "close to", + "example_sentence_english": "The park is near my house.", + "pos": "adjective", + "word_frequency": 424 + }, + { + "word": "plan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a detailed proposal", + "example_sentence_english": "What's your plan for the weekend?", + "pos": "noun", + "word_frequency": 426 + }, + { + "word": "political", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to government or public affairs", + "example_sentence_english": "They discussed the current political situation.", + "pos": "adjective", + "word_frequency": 427 + }, + { + "word": "quite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fairly, completely", + "example_sentence_english": "It's quite cold outside today.", + "pos": "adverb", + "word_frequency": 428 + }, + { + "word": "west", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one of the four main compass points", + "example_sentence_english": "The sun sets in the west.", + "pos": "noun", + "word_frequency": 430 + }, + { + "word": "available", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obtainable, ready for use", + "example_sentence_english": "The book is available in the library.", + "pos": "adjective", + "word_frequency": 432 + }, + { + "word": "education", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the process of learning", + "example_sentence_english": "Education is important for everyone.", + "pos": "noun", + "word_frequency": 434 + }, + { + "word": "final", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "last, ultimate", + "example_sentence_english": "This is the final decision.", + "pos": "adjective", + "word_frequency": 435 + }, + { + "word": "former", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous, earlier", + "example_sentence_english": "The former president gave a speech.", + "pos": "adjective", + "word_frequency": 436 + }, + { + "word": "front", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the forward part", + "example_sentence_english": "The car is parked in front of the house.", + "pos": "noun", + "word_frequency": 437 + }, + { + "word": "kid", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "child", + "example_sentence_english": "The kids are playing in the garden.", + "pos": "noun", + "word_frequency": 438 + }, + { + "word": "list", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a series of items", + "example_sentence_english": "I made a shopping list.", + "pos": "noun", + "word_frequency": 439 + }, + { + "word": "ready", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "prepared", + "example_sentence_english": "Are you ready to go?", + "pos": "adjective", + "word_frequency": 440 + }, + { + "word": "sometimes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "occasionally", + "example_sentence_english": "Sometimes I like to read a book.", + "pos": "adverb", + "word_frequency": 441 + }, + { + "word": "son", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "male child", + "example_sentence_english": "My son is five years old.", + "pos": "noun", + "word_frequency": 442 + }, + { + "word": "street", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "road", + "example_sentence_english": "The shop is on the main street.", + "pos": "noun", + "word_frequency": 443 + }, + { + "word": "bring", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "carry, take", + "example_sentence_english": "Please bring your book tomorrow.", + "pos": "verb", + "word_frequency": 445 + }, + { + "word": "college", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "institution for higher education", + "example_sentence_english": "She is studying at college.", + "pos": "noun", + "word_frequency": 446 + }, + { + "word": "current", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening now", + "example_sentence_english": "What is your current address?", + "pos": "adjective", + "word_frequency": 447 + }, + { + "word": "example", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "instance, model", + "example_sentence_english": "Can you give me an example?", + "pos": "noun", + "word_frequency": 448 + }, + { + "word": "experience", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knowledge or skill gained over time", + "example_sentence_english": "He has a lot of experience in teaching.", + "pos": "noun", + "word_frequency": 449 + }, + { + "word": "hear", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "perceive sound", + "example_sentence_english": "Can you hear me?", + "pos": "verb", + "word_frequency": 450 + }, + { + "word": "meet", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "encounter, get to know", + "example_sentence_english": "Nice to meet you.", + "pos": "verb", + "word_frequency": 452 + }, + { + "word": "program", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plan, software", + "example_sentence_english": "The TV program starts at 8 PM.", + "pos": "noun", + "word_frequency": 453 + }, + { + "word": "type", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kind, sort", + "example_sentence_english": "What type of music do you like?", + "pos": "noun", + "word_frequency": 454 + }, + { + "word": "baby", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "infant", + "example_sentence_english": "The baby is sleeping.", + "pos": "noun", + "word_frequency": 455 + }, + { + "word": "chance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opportunity, possibility", + "example_sentence_english": "I hope I get a chance to visit.", + "pos": "noun", + "word_frequency": 456 + }, + { + "word": "father", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "male parent", + "example_sentence_english": "My father works in an office.", + "pos": "noun", + "word_frequency": 457 + }, + { + "word": "process", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a series of actions", + "example_sentence_english": "Learning a language is a long process.", + "pos": "noun", + "word_frequency": 459 + }, + { + "word": "song", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "musical composition", + "example_sentence_english": "She sang a beautiful song.", + "pos": "noun", + "word_frequency": 460 + }, + { + "word": "study", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "act of learning, research", + "example_sentence_english": "I have a lot of study to do tonight.", + "pos": "noun", + "word_frequency": 461 + }, + { + "word": "word", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "unit of language", + "example_sentence_english": "Please spell the word.", + "pos": "noun", + "word_frequency": 462 + }, + { + "word": "action", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "something done", + "example_sentence_english": "We need to take action now.", + "pos": "noun", + "word_frequency": 464 + }, + { + "word": "clear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "easy to understand, transparent", + "example_sentence_english": "The sky is clear today.", + "pos": "adjective", + "word_frequency": 465 + }, + { + "word": "outside", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the exterior part", + "example_sentence_english": "Let's go play outside.", + "pos": "noun", + "word_frequency": 467 + }, + { + "word": "self", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's essential being", + "example_sentence_english": "She has a strong sense of self.", + "pos": "noun", + "word_frequency": 468 + }, + { + "word": "student", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "person who is studying", + "example_sentence_english": "I am a student.", + "pos": "noun", + "word_frequency": 469 + }, + { + "word": "board", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flat piece of material", + "example_sentence_english": "Write it on the board.", + "pos": "noun", + "word_frequency": 470 + }, + { + "word": "cost", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "price", + "example_sentence_english": "What is the cost of this book?", + "pos": "noun", + "word_frequency": 471 + }, + { + "word": "cut", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "divide with a sharp tool", + "example_sentence_english": "Be careful not to cut yourself.", + "pos": "verb", + "word_frequency": 472 + }, + { + "word": "field", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "area of land, area of study", + "example_sentence_english": "The cows are in the field.", + "pos": "noun", + "word_frequency": 474 + }, + { + "word": "hold", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grasp, keep", + "example_sentence_english": "Please hold my hand.", + "pos": "verb", + "word_frequency": 475 + }, + { + "word": "instead", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "as an alternative", + "example_sentence_english": "I don't want coffee, I'll have tea instead.", + "pos": "adverb", + "word_frequency": 476 + }, + { + "word": "main", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "principal, most important", + "example_sentence_english": "What is the main idea?", + "pos": "adjective", + "word_frequency": 477 + }, + { + "word": "moment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a very brief period of time", + "example_sentence_english": "Just a moment, please.", + "pos": "noun", + "word_frequency": 478 + }, + { + "word": "mother", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female parent", + "example_sentence_english": "My mother is a teacher.", + "pos": "noun", + "word_frequency": 479 + }, + { + "word": "road", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "road", + "example_sentence_english": "The road was long and winding.", + "pos": "noun", + "word_frequency": 480 + }, + { + "word": "seem", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seem", + "example_sentence_english": "It seems like a good idea.", + "pos": "verb", + "word_frequency": 481 + }, + { + "word": "town", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "town", + "example_sentence_english": "We live in a small town.", + "pos": "noun", + "word_frequency": 482 + }, + { + "word": "department", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "department", + "example_sentence_english": "She works in the sales department.", + "pos": "noun", + "word_frequency": 484 + }, + { + "word": "energy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy", + "example_sentence_english": "He has a lot of energy.", + "pos": "noun", + "word_frequency": 485 + }, + { + "word": "fight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fight", + "example_sentence_english": "They had a big fight.", + "pos": "noun", + "word_frequency": 486 + }, + { + "word": "fine", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "good, acceptable", + "example_sentence_english": "I feel fine today.", + "pos": "adjective", + "word_frequency": 487 + }, + { + "word": "force", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "force", + "example_sentence_english": "The police used force to open the door.", + "pos": "noun", + "word_frequency": 488 + }, + { + "word": "issue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "issue, problem", + "example_sentence_english": "We need to address this issue.", + "pos": "noun", + "word_frequency": 489 + }, + { + "word": "price", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "price", + "example_sentence_english": "What is the price of this book?", + "pos": "noun", + "word_frequency": 490 + }, + { + "word": "rest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rest, remainder", + "example_sentence_english": "I need some rest after work.", + "pos": "noun", + "word_frequency": 492 + }, + { + "word": "result", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "result", + "example_sentence_english": "The results of the test were good.", + "pos": "noun", + "word_frequency": 493 + }, + { + "word": "space", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "space", + "example_sentence_english": "There isn't much space in this room.", + "pos": "noun", + "word_frequency": 494 + }, + { + "word": "summer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "summer", + "example_sentence_english": "We go on holiday in the summer.", + "pos": "noun", + "word_frequency": 495 + }, + { + "word": "term", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "term, period", + "example_sentence_english": "The school term ends in July.", + "pos": "noun", + "word_frequency": 496 + }, + { + "word": "wife", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wife", + "example_sentence_english": "My wife is a doctor.", + "pos": "noun", + "word_frequency": 497 + }, + { + "word": "beautiful", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beautiful", + "example_sentence_english": "She has a beautiful smile.", + "pos": "adjective", + "word_frequency": 500 + }, + { + "word": "date", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "date", + "example_sentence_english": "What is today's date?", + "pos": "noun", + "word_frequency": 501 + }, + { + "word": "kill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kill", + "example_sentence_english": "The hunter tried to kill the animal.", + "pos": "verb", + "word_frequency": 502 + }, + { + "word": "land", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "land", + "example_sentence_english": "They bought a piece of land.", + "pos": "noun", + "word_frequency": 503 + }, + { + "word": "miss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "miss", + "example_sentence_english": "I miss my family when I travel.", + "pos": "verb", + "word_frequency": 504 + }, + { + "word": "project", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project", + "example_sentence_english": "We are working on a new project.", + "pos": "noun", + "word_frequency": 505 + }, + { + "word": "sex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sex, gender", + "example_sentence_english": "Please indicate your sex on the form.", + "pos": "noun", + "word_frequency": 506 + }, + { + "word": "shot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shot (e.g., photograph, attempt, injection)", + "example_sentence_english": "He took a great shot with his camera.", + "pos": "noun", + "word_frequency": 507 + }, + { + "word": "site", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "site, location", + "example_sentence_english": "The construction site is very busy.", + "pos": "noun", + "word_frequency": 508 + }, + { + "word": "strong", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strong", + "example_sentence_english": "He is a very strong man.", + "pos": "adjective", + "word_frequency": 509 + }, + { + "word": "account", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "account", + "example_sentence_english": "I need to open a bank account.", + "pos": "noun", + "word_frequency": 510 + }, + { + "word": "especially", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially", + "example_sentence_english": "I like all fruits, especially apples.", + "pos": "adverb", + "word_frequency": 512 + }, + { + "word": "eye", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eye", + "example_sentence_english": "She has blue eyes.", + "pos": "noun", + "word_frequency": 513 + }, + { + "word": "parent", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "parent", + "example_sentence_english": "My parents are visiting next week.", + "pos": "noun", + "word_frequency": 515 + }, + { + "word": "period", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period, duration", + "example_sentence_english": "The training period lasts for three months.", + "pos": "noun", + "word_frequency": 516 + }, + { + "word": "position", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position", + "example_sentence_english": "What is your current position in the company?", + "pos": "noun", + "word_frequency": 517 + }, + { + "word": "record", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record", + "example_sentence_english": "He broke the world record.", + "pos": "noun", + "word_frequency": 518 + }, + { + "word": "similar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar", + "example_sentence_english": "These two cars are very similar.", + "pos": "adjective", + "word_frequency": 519 + }, + { + "word": "total", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complete; sum", + "example_sentence_english": "The total cost of the trip was higher than expected.", + "pos": "adjective", + "word_frequency": 520 + }, + { + "word": "club", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an organization; a heavy stick", + "example_sentence_english": "She joined a book club last year.", + "pos": "noun", + "word_frequency": 523 + }, + { + "word": "common", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "usual; shared", + "example_sentence_english": "It's common to see tourists here in summer.", + "pos": "adjective", + "word_frequency": 524 + }, + { + "word": "die", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop living", + "example_sentence_english": "Many plants die in winter.", + "pos": "verb", + "word_frequency": 525 + }, + { + "word": "film", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a movie; a thin layer", + "example_sentence_english": "We watched a good film last night.", + "pos": "noun", + "word_frequency": 526 + }, + { + "word": "happen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to occur", + "example_sentence_english": "What happened to your car?", + "pos": "verb", + "word_frequency": 527 + }, + { + "word": "lead", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guide; to be in charge", + "example_sentence_english": "She will lead the team on the new project.", + "pos": "verb", + "word_frequency": 528 + }, + { + "word": "likely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probably", + "example_sentence_english": "It's likely to rain later today.", + "pos": "adverb", + "word_frequency": 529 + }, + { + "word": "military", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to armed forces", + "example_sentence_english": "He has a long career in the military.", + "pos": "adjective", + "word_frequency": 530 + }, + { + "word": "perfect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flawless; ideal", + "example_sentence_english": "The weather was perfect for a picnic.", + "pos": "adjective", + "word_frequency": 531 + }, + { + "word": "personal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "private; individual", + "example_sentence_english": "Please keep your personal belongings safe.", + "pos": "adjective", + "word_frequency": 532 + }, + { + "word": "security", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safety; protection", + "example_sentence_english": "Airport security is very strict.", + "pos": "noun", + "word_frequency": 533 + }, + { + "word": "share", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a portion; a part", + "example_sentence_english": "Everyone got an equal share of the cake.", + "pos": "noun", + "word_frequency": 534 + }, + { + "word": "tv", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "television", + "example_sentence_english": "I like to watch TV in the evenings.", + "pos": "noun", + "word_frequency": 536 + }, + { + "word": "center", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the middle point", + "example_sentence_english": "The city center is very busy.", + "pos": "noun", + "word_frequency": 539 + }, + { + "word": "county", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a geographical division", + "example_sentence_english": "They live in the next county over.", + "pos": "noun", + "word_frequency": 540 + }, + { + "word": "couple", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "two people or things", + "example_sentence_english": "A young couple walked hand in hand.", + "pos": "noun", + "word_frequency": 541 + }, + { + "word": "dead", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not alive", + "example_sentence_english": "The plant is dead because I forgot to water it.", + "pos": "adjective", + "word_frequency": 542 + }, + { + "word": "industry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economic activity; diligence", + "example_sentence_english": "The car industry is very important.", + "pos": "noun", + "word_frequency": 544 + }, + { + "word": "inside", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the inner part", + "example_sentence_english": "The inside of the box was empty.", + "pos": "noun", + "word_frequency": 545 + }, + { + "word": "online", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "connected to the internet", + "example_sentence_english": "I bought the tickets online.", + "pos": "adjective", + "word_frequency": 546 + }, + { + "word": "private", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personal; not public", + "example_sentence_english": "This is a private conversation.", + "pos": "adjective", + "word_frequency": 547 + }, + { + "word": "return", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the act of coming back", + "example_sentence_english": "We are looking forward to his return.", + "pos": "noun", + "word_frequency": 548 + }, + { + "word": "sense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a faculty of perception; meaning", + "example_sentence_english": "It makes no sense to argue about it.", + "pos": "noun", + "word_frequency": 549 + }, + { + "word": "star", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a celestial body; a famous person", + "example_sentence_english": "The sky was full of bright stars.", + "pos": "noun", + "word_frequency": 550 + }, + { + "word": "test", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an examination; a trial", + "example_sentence_english": "I have a math test tomorrow.", + "pos": "noun", + "word_frequency": 551 + }, + { + "word": "view", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sight; an opinion", + "example_sentence_english": "The view from the mountain was amazing.", + "pos": "noun", + "word_frequency": 552 + }, + { + "word": "break", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pause; a fracture", + "example_sentence_english": "Let's take a short break.", + "pos": "noun", + "word_frequency": 553 + }, + { + "word": "event", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "something that happens", + "example_sentence_english": "The concert was a major event.", + "pos": "noun", + "word_frequency": 555 + }, + { + "word": "middle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "center; intermediate", + "example_sentence_english": "He lives in the middle of the city.", + "pos": "adjective", + "word_frequency": 557 + }, + { + "word": "present", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "here; current", + "example_sentence_english": "All students were present for the lesson.", + "pos": "adjective", + "word_frequency": 558 + }, + { + "word": "sorry", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feeling regret; apologetic", + "example_sentence_english": "I'm sorry for the delay.", + "pos": "adjective", + "word_frequency": 559 + }, + { + "word": "train", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to teach or prepare someone for a particular job or activity", + "example_sentence_english": "We need to train new employees.", + "pos": "verb", + "word_frequency": 560 + }, + { + "word": "wish", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a desire or hope", + "example_sentence_english": "My biggest wish is for peace.", + "pos": "noun", + "word_frequency": 561 + }, + { + "word": "answer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a reply or solution", + "example_sentence_english": "Do you know the answer to the question?", + "pos": "noun", + "word_frequency": 563 + }, + { + "word": "boy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a male child", + "example_sentence_english": "The boy is playing in the park.", + "pos": "noun", + "word_frequency": 564 + }, + { + "word": "design", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plan or drawing produced to show the look and function of something", + "example_sentence_english": "I like the modern design of the building.", + "pos": "noun", + "word_frequency": 565 + }, + { + "word": "finally", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "after a long time, typically when there has been difficulty or delay", + "example_sentence_english": "We finally arrived home after a long journey.", + "pos": "adverb", + "word_frequency": 566 + }, + { + "word": "gold", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a precious yellow metallic element", + "example_sentence_english": "She wears a beautiful gold ring.", + "pos": "noun", + "word_frequency": 567 + }, + { + "word": "guess", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an estimate or conclusion formed by guessing", + "example_sentence_english": "Take a guess at how many candies are in the jar.", + "pos": "noun", + "word_frequency": 568 + }, + { + "word": "interest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the feeling of wanting to know or learn about something", + "example_sentence_english": "He has a strong interest in history.", + "pos": "noun", + "word_frequency": 569 + }, + { + "word": "king", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the male ruler of an independent state", + "example_sentence_english": "The king ruled his kingdom wisely.", + "pos": "noun", + "word_frequency": 571 + }, + { + "word": "learn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to gain knowledge or skill", + "example_sentence_english": "I want to learn a new language.", + "pos": "verb", + "word_frequency": 572 + }, + { + "word": "policy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a course or principle of action adopted or proposed by a government, party, business, or individual", + "example_sentence_english": "The company has a strict no-smoking policy.", + "pos": "noun", + "word_frequency": 573 + }, + { + "word": "society", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the aggregate of people living together in a more or less ordered community", + "example_sentence_english": "We live in a diverse society.", + "pos": "noun", + "word_frequency": 574 + }, + { + "word": "add", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to join something to something else", + "example_sentence_english": "Please add sugar to my coffee.", + "pos": "verb", + "word_frequency": 575 + }, + { + "word": "alone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "without other people", + "example_sentence_english": "She likes to be alone sometimes.", + "pos": "adjective", + "word_frequency": 577 + }, + { + "word": "average", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typical or normal", + "example_sentence_english": "The average temperature today is 20 degrees Celsius.", + "pos": "adjective", + "word_frequency": 578 + }, + { + "word": "bank", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a financial institution", + "example_sentence_english": "I need to go to the bank.", + "pos": "noun", + "word_frequency": 579 + }, + { + "word": "certain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sure; confident", + "example_sentence_english": "Are you certain about your decision?", + "pos": "adjective", + "word_frequency": 580 + }, + { + "word": "church", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a building used for public Christian worship", + "example_sentence_english": "They go to church every Sunday.", + "pos": "noun", + "word_frequency": 581 + }, + { + "word": "east", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the direction toward the point of the horizon where the sun rises", + "example_sentence_english": "The sun rises in the east.", + "pos": "noun", + "word_frequency": 582 + }, + { + "word": "hot", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "having a high temperature", + "example_sentence_english": "Be careful, the plate is hot.", + "pos": "adjective", + "word_frequency": 583 + }, + { + "word": "medical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the science or practice of medicine", + "example_sentence_english": "She is studying to become a medical doctor.", + "pos": "adjective", + "word_frequency": 584 + }, + { + "word": "movie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a film or motion picture", + "example_sentence_english": "Let's watch a movie tonight.", + "pos": "noun", + "word_frequency": 585 + }, + { + "word": "original", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing from the beginning; the first or earliest", + "example_sentence_english": "This is the original version of the song.", + "pos": "adjective", + "word_frequency": 586 + }, + { + "word": "park", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large public green area in a town, used for recreation", + "example_sentence_english": "The children are playing in the park.", + "pos": "noun", + "word_frequency": 587 + }, + { + "word": "performance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of presenting a play, concert, or other form of entertainment", + "example_sentence_english": "The band gave an excellent performance.", + "pos": "noun", + "word_frequency": 588 + }, + { + "word": "press", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "newspapers and magazines collectively, or the journalists and photographers who work for them", + "example_sentence_english": "The event attracted a lot of attention from the press.", + "pos": "noun", + "word_frequency": 589 + }, + { + "word": "receive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be given, presented with, or paid (something)", + "example_sentence_english": "I received a letter yesterday.", + "pos": "verb", + "word_frequency": 590 + }, + { + "word": "role", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part played by a person or thing in a particular situation", + "example_sentence_english": "She played a key role in the project.", + "pos": "noun", + "word_frequency": 591 + }, + { + "word": "send", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cause to go or be taken to a destination", + "example_sentence_english": "I will send you an email.", + "pos": "verb", + "word_frequency": 592 + }, + { + "word": "worth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a specified value", + "example_sentence_english": "The painting is worth a lot of money.", + "pos": "adjective", + "word_frequency": 594 + }, + { + "word": "bill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a statement of money owed for goods or services", + "example_sentence_english": "Can I have the bill, please?", + "pos": "noun", + "word_frequency": 595 + }, + { + "word": "cool", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "of or at a fairly low temperature", + "example_sentence_english": "It's a cool evening.", + "pos": "adjective", + "word_frequency": 596 + }, + { + "word": "director", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who directs a film, play, or business", + "example_sentence_english": "The director is responsible for the movie.", + "pos": "noun", + "word_frequency": 597 + }, + { + "word": "exactly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in an exact way; precisely", + "example_sentence_english": "That's exactly what I meant.", + "pos": "adverb", + "word_frequency": 598 + }, + { + "word": "ground", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the solid surface of the earth", + "example_sentence_english": "The ball fell to the ground.", + "pos": "noun", + "word_frequency": 599 + }, + { + "word": "meeting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gathering, assembly", + "example_sentence_english": "We have a meeting at 10 AM.", + "pos": "noun", + "word_frequency": 600 + }, + { + "word": "provide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supply, give", + "example_sentence_english": "We need to provide more information.", + "pos": "verb", + "word_frequency": 602 + }, + { + "word": "relationship", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection, bond", + "example_sentence_english": "Their relationship is very strong.", + "pos": "noun", + "word_frequency": 603 + }, + { + "word": "september", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "September", + "example_sentence_english": "My birthday is in September.", + "pos": "noun", + "word_frequency": 604 + }, + { + "word": "sound", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noise, auditory sensation", + "example_sentence_english": "I heard a strange sound.", + "pos": "noun", + "word_frequency": 605 + }, + { + "word": "source", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "origin, point of supply", + "example_sentence_english": "What is the source of this information?", + "pos": "noun", + "word_frequency": 606 + }, + { + "word": "usually", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normally, generally", + "example_sentence_english": "I usually wake up early.", + "pos": "adverb", + "word_frequency": 607 + }, + { + "word": "value", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worth, importance", + "example_sentence_english": "The old painting has great value.", + "pos": "noun", + "word_frequency": 608 + }, + { + "word": "evidence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proof, data", + "example_sentence_english": "There is no evidence to support that claim.", + "pos": "noun", + "word_frequency": 609 + }, + { + "word": "official", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authorized, formal", + "example_sentence_english": "This is the official document.", + "pos": "adjective", + "word_frequency": 610 + }, + { + "word": "production", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufacturing, output", + "example_sentence_english": "Car production increased last year.", + "pos": "noun", + "word_frequency": 612 + }, + { + "word": "rate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed, proportion", + "example_sentence_english": "The unemployment rate is high.", + "pos": "noun", + "word_frequency": 613 + }, + { + "word": "round", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circular, spherical", + "example_sentence_english": "The table is round.", + "pos": "adjective", + "word_frequency": 614 + }, + { + "word": "save", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rescue, store", + "example_sentence_english": "I need to save money.", + "pos": "verb", + "word_frequency": 615 + }, + { + "word": "stand", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "be upright, tolerate", + "example_sentence_english": "Please stand up.", + "pos": "verb", + "word_frequency": 616 + }, + { + "word": "stuff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "things, material", + "example_sentence_english": "I have a lot of stuff to do.", + "pos": "noun", + "word_frequency": 617 + }, + { + "word": "tax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "levy, duty", + "example_sentence_english": "You have to pay tax on that.", + "pos": "noun", + "word_frequency": 618 + }, + { + "word": "amount", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quantity, sum", + "example_sentence_english": "A large amount of work is needed.", + "pos": "noun", + "word_frequency": 620 + }, + { + "word": "blue", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blue", + "example_sentence_english": "The sky is blue.", + "pos": "adjective", + "word_frequency": 621 + }, + { + "word": "drive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journey, motivation", + "example_sentence_english": "It's a long drive to the coast.", + "pos": "noun", + "word_frequency": 623 + }, + { + "word": "eat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "consume food", + "example_sentence_english": "I want to eat pizza.", + "pos": "verb", + "word_frequency": 624 + }, + { + "word": "fall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "autumn, descent", + "example_sentence_english": "The leaves change color in the fall.", + "pos": "noun", + "word_frequency": 625 + }, + { + "word": "fast", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "quick, rapid", + "example_sentence_english": "He is a fast runner.", + "pos": "adjective", + "word_frequency": 626 + }, + { + "word": "federal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governmental, national", + "example_sentence_english": "The federal government announced new policies.", + "pos": "adjective", + "word_frequency": 627 + }, + { + "word": "green", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "green", + "example_sentence_english": "The grass is green.", + "pos": "adjective", + "word_frequency": 628 + }, + { + "word": "league", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "association, division", + "example_sentence_english": "Our team won the league championship.", + "pos": "noun", + "word_frequency": 629 + }, + { + "word": "management", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "administration, control", + "example_sentence_english": "Good management is key to success.", + "pos": "noun", + "word_frequency": 630 + }, + { + "word": "match", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "game, pair", + "example_sentence_english": "We watched a football match.", + "pos": "noun", + "word_frequency": 631 + }, + { + "word": "model", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "example, representation", + "example_sentence_english": "This is a new car model.", + "pos": "noun", + "word_frequency": 632 + }, + { + "word": "picture", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "image, photograph", + "example_sentence_english": "I took a picture of the sunset.", + "pos": "noun", + "word_frequency": 634 + }, + { + "word": "size", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dimensions, magnitude", + "example_sentence_english": "What size shoes do you wear?", + "pos": "noun", + "word_frequency": 635 + }, + { + "word": "step", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pace, stage", + "example_sentence_english": "Take one step at a time.", + "pos": "noun", + "word_frequency": 636 + }, + { + "word": "trust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confidence, reliance", + "example_sentence_english": "Trust is important in any relationship.", + "pos": "noun", + "word_frequency": 637 + }, + { + "word": "central", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main, middle", + "example_sentence_english": "The central idea of the book is freedom.", + "pos": "adjective", + "word_frequency": 638 + }, + { + "word": "forward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards the front", + "example_sentence_english": "Please step forward.", + "pos": "adverb", + "word_frequency": 640 + }, + { + "word": "key", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a tool for opening locks", + "example_sentence_english": "I lost my house key.", + "pos": "noun", + "word_frequency": 642 + }, + { + "word": "mom", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother", + "example_sentence_english": "My mom is a great cook.", + "pos": "noun", + "word_frequency": 643 + }, + { + "word": "page", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a side of a sheet of paper", + "example_sentence_english": "Please turn to page 20.", + "pos": "noun", + "word_frequency": 645 + }, + { + "word": "range", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of different things of the same general type", + "example_sentence_english": "The store offers a wide range of products.", + "pos": "noun", + "word_frequency": 646 + }, + { + "word": "review", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a formal assessment of something", + "example_sentence_english": "The movie received excellent reviews.", + "pos": "noun", + "word_frequency": 647 + }, + { + "word": "science", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the study of the natural and physical world", + "example_sentence_english": "I enjoy studying science.", + "pos": "noun", + "word_frequency": 648 + }, + { + "word": "trade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of buying and selling goods and services", + "example_sentence_english": "International trade is important for the economy.", + "pos": "noun", + "word_frequency": 649 + }, + { + "word": "various", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "different", + "example_sentence_english": "There are various options available.", + "pos": "adjective", + "word_frequency": 652 + }, + { + "word": "attention", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of focusing the mind on something", + "example_sentence_english": "Please pay attention in class.", + "pos": "noun", + "word_frequency": 653 + }, + { + "word": "brother", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a male sibling", + "example_sentence_english": "My brother is older than me.", + "pos": "noun", + "word_frequency": 654 + }, + { + "word": "character", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person in a novel, play, or movie", + "example_sentence_english": "The main character in the story is very brave.", + "pos": "noun", + "word_frequency": 656 + }, + { + "word": "chief", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a leader or head of a group or organization", + "example_sentence_english": "The chief of police arrived at the scene.", + "pos": "noun", + "word_frequency": 657 + }, + { + "word": "cup", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small, round container for drinking", + "example_sentence_english": "Would you like a cup of tea?", + "pos": "noun", + "word_frequency": 658 + }, + { + "word": "football", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a team sport played with a ball", + "example_sentence_english": "They play football every Saturday.", + "pos": "noun", + "word_frequency": 659 + }, + { + "word": "hate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intense dislike", + "example_sentence_english": "He felt a strong hate for injustice.", + "pos": "noun", + "word_frequency": 660 + }, + { + "word": "natural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing in or derived from nature", + "example_sentence_english": "This park has beautiful natural scenery.", + "pos": "adjective", + "word_frequency": 663 + }, + { + "word": "property", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing or things belonging to someone", + "example_sentence_english": "This house is a valuable property.", + "pos": "noun", + "word_frequency": 665 + }, + { + "word": "quality", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the standard of something as measured against other things of a similar kind", + "example_sentence_english": "We aim for high quality in our products.", + "pos": "noun", + "word_frequency": 666 + }, + { + "word": "style", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a distinctive manner of doing something", + "example_sentence_english": "I like her unique sense of style.", + "pos": "noun", + "word_frequency": 667 + }, + { + "word": "vote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a formal indication of a choice", + "example_sentence_english": "Every citizen has the right to vote.", + "pos": "noun", + "word_frequency": 669 + }, + { + "word": "amazing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "causing great wonder or surprise", + "example_sentence_english": "The view from the mountain was amazing.", + "pos": "adjective", + "word_frequency": 670 + }, + { + "word": "blood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the red liquid that circulates in the arteries and veins", + "example_sentence_english": "Blood flows through our veins.", + "pos": "noun", + "word_frequency": 672 + }, + { + "word": "complete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having all the necessary parts", + "example_sentence_english": "The puzzle is now complete.", + "pos": "adjective", + "word_frequency": 674 + }, + { + "word": "dog", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a common domesticated carnivorous mammal", + "example_sentence_english": "My dog loves to play fetch.", + "pos": "noun", + "word_frequency": 675 + }, + { + "word": "economic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to economics or the economy", + "example_sentence_english": "The country is facing economic challenges.", + "pos": "adjective", + "word_frequency": 676 + }, + { + "word": "hell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place of evil and suffering", + "example_sentence_english": "The traffic was hell this morning.", + "pos": "noun", + "word_frequency": 677 + }, + { + "word": "involve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to include or affect someone or something", + "example_sentence_english": "The project will involve a lot of teamwork.", + "pos": "verb", + "word_frequency": 678 + }, + { + "word": "language", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "language", + "example_sentence_english": "English is a global language.", + "pos": "noun", + "word_frequency": 680 + }, + { + "word": "lord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lord", + "example_sentence_english": "The lord of the manor was a kind man.", + "pos": "noun", + "word_frequency": 681 + }, + { + "word": "november", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "November", + "example_sentence_english": "My birthday is in November.", + "pos": "noun", + "word_frequency": 682 + }, + { + "word": "oil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oil", + "example_sentence_english": "We need to change the oil in the car.", + "pos": "noun", + "word_frequency": 683 + }, + { + "word": "relate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relate", + "example_sentence_english": "I can relate to your feelings.", + "pos": "verb", + "word_frequency": 684 + }, + { + "word": "serious", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "serious", + "example_sentence_english": "This is a serious problem.", + "pos": "adjective", + "word_frequency": 685 + }, + { + "word": "stage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stage", + "example_sentence_english": "The actors walked onto the stage.", + "pos": "noun", + "word_frequency": 686 + }, + { + "word": "title", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "title", + "example_sentence_english": "What is the title of this book?", + "pos": "noun", + "word_frequency": 687 + }, + { + "word": "article", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "article", + "example_sentence_english": "I read an interesting article online.", + "pos": "noun", + "word_frequency": 688 + }, + { + "word": "attack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attack", + "example_sentence_english": "The city was under attack.", + "pos": "noun", + "word_frequency": 689 + }, + { + "word": "bear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bear", + "example_sentence_english": "I can't bear the thought of losing you.", + "pos": "verb", + "word_frequency": 690 + }, + { + "word": "decide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "decide", + "example_sentence_english": "I need to decide what to do next.", + "pos": "verb", + "word_frequency": 693 + }, + { + "word": "decision", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "decision", + "example_sentence_english": "That was a difficult decision.", + "pos": "noun", + "word_frequency": 694 + }, + { + "word": "enjoy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "enjoy", + "example_sentence_english": "I really enjoy reading books.", + "pos": "verb", + "word_frequency": 695 + }, + { + "word": "entire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entire", + "example_sentence_english": "He ate the entire cake.", + "pos": "adjective", + "word_frequency": 696 + }, + { + "word": "french", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "French", + "example_sentence_english": "She speaks French fluently.", + "pos": "adjective", + "word_frequency": 697 + }, + { + "word": "january", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "January", + "example_sentence_english": "January is the first month of the year.", + "pos": "noun", + "word_frequency": 698 + }, + { + "word": "perhaps", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perhaps", + "example_sentence_english": "Perhaps we should go home now.", + "pos": "adverb", + "word_frequency": 699 + }, + { + "word": "poor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poor", + "example_sentence_english": "The family was very poor.", + "pos": "adjective", + "word_frequency": 700 + }, + { + "word": "release", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "release", + "example_sentence_english": "The new movie's release date is next month.", + "pos": "noun", + "word_frequency": 701 + }, + { + "word": "situation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "situation", + "example_sentence_english": "It's a difficult situation.", + "pos": "noun", + "word_frequency": 702 + }, + { + "word": "technology", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technology", + "example_sentence_english": "Modern technology has changed our lives.", + "pos": "noun", + "word_frequency": 703 + }, + { + "word": "website", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "website", + "example_sentence_english": "You can find more information on our website.", + "pos": "noun", + "word_frequency": 704 + }, + { + "word": "write", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "write", + "example_sentence_english": "I need to write an email.", + "pos": "verb", + "word_frequency": 705 + }, + { + "word": "choice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "choice", + "example_sentence_english": "You have to make a choice.", + "pos": "noun", + "word_frequency": 706 + }, + { + "word": "code", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "code", + "example_sentence_english": "He wrote the code for the new software.", + "pos": "noun", + "word_frequency": 707 + }, + { + "word": "consider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consider", + "example_sentence_english": "Please consider my offer.", + "pos": "verb", + "word_frequency": 708 + }, + { + "word": "continue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "continue", + "example_sentence_english": "We will continue our discussion tomorrow.", + "pos": "verb", + "word_frequency": 709 + }, + { + "word": "council", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "council", + "example_sentence_english": "The city council held a meeting.", + "pos": "noun", + "word_frequency": 710 + }, + { + "word": "cover", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cover", + "example_sentence_english": "The book has a beautiful cover.", + "pos": "noun", + "word_frequency": 711 + }, + { + "word": "currently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currently", + "example_sentence_english": "He is currently working on a new project.", + "pos": "adverb", + "word_frequency": 712 + }, + { + "word": "door", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "door", + "example_sentence_english": "Please close the door.", + "pos": "noun", + "word_frequency": 713 + }, + { + "word": "election", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "election", + "example_sentence_english": "The next election is in two years.", + "pos": "noun", + "word_frequency": 714 + }, + { + "word": "european", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "European", + "example_sentence_english": "She is a European citizen.", + "pos": "adjective", + "word_frequency": 715 + }, + { + "word": "financial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial", + "example_sentence_english": "He has some financial problems.", + "pos": "adjective", + "word_frequency": 717 + }, + { + "word": "foreign", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foreign", + "example_sentence_english": "She speaks several foreign languages.", + "pos": "adjective", + "word_frequency": 718 + }, + { + "word": "hair", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hair", + "example_sentence_english": "She has long, brown hair.", + "pos": "noun", + "word_frequency": 719 + }, + { + "word": "increase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "growth, rise", + "example_sentence_english": "There has been a significant increase in sales this quarter.", + "pos": "noun", + "word_frequency": 720 + }, + { + "word": "legal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lawful", + "example_sentence_english": "It's important to get legal advice before signing the contract.", + "pos": "adjective", + "word_frequency": 721 + }, + { + "word": "pick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "choice, selection", + "example_sentence_english": "You can have your pick of any dessert.", + "pos": "noun", + "word_frequency": 723 + }, + { + "word": "race", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "competition of speed", + "example_sentence_english": "The horse won the race by a nose.", + "pos": "noun", + "word_frequency": 724 + }, + { + "word": "seven", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "7", + "example_sentence_english": "There are seven days in a week.", + "pos": "numeral", + "word_frequency": 725 + }, + { + "word": "sign", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "indication, symbol", + "example_sentence_english": "The road sign warned of a sharp bend.", + "pos": "noun", + "word_frequency": 726 + }, + { + "word": "simple", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "easy, not complicated", + "example_sentence_english": "The instructions were very simple to follow.", + "pos": "adjective", + "word_frequency": 727 + }, + { + "word": "simply", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "just, merely", + "example_sentence_english": "I simply forgot to call him back.", + "pos": "adverb", + "word_frequency": 728 + }, + { + "word": "staff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employees", + "example_sentence_english": "The hospital staff are working hard.", + "pos": "noun", + "word_frequency": 729 + }, + { + "word": "super", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excellent, very good", + "example_sentence_english": "That was a super idea!", + "pos": "adjective", + "word_frequency": 730 + }, + { + "word": "union", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "association, alliance", + "example_sentence_english": "The workers formed a union to protect their rights.", + "pos": "noun", + "word_frequency": 731 + }, + { + "word": "walk", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "stroll, journey on foot", + "example_sentence_english": "Let's go for a walk in the park.", + "pos": "noun", + "word_frequency": 732 + }, + { + "word": "bed", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "furniture for sleeping", + "example_sentence_english": "I'm going to bed now.", + "pos": "noun", + "word_frequency": 734 + }, + { + "word": "begin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "start", + "example_sentence_english": "The movie begins at 7 PM.", + "pos": "verb", + "word_frequency": 735 + }, + { + "word": "career", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profession, occupation", + "example_sentence_english": "She has a successful career in medicine.", + "pos": "noun", + "word_frequency": 736 + }, + { + "word": "crazy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "insane, wild", + "example_sentence_english": "That's a crazy idea, but it might work!", + "pos": "adjective", + "word_frequency": 737 + }, + { + "word": "daily", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happening every day", + "example_sentence_english": "I read the daily newspaper.", + "pos": "adjective", + "word_frequency": 738 + }, + { + "word": "daughter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female child", + "example_sentence_english": "My daughter is learning to read.", + "pos": "noun", + "word_frequency": 739 + }, + { + "word": "december", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "12th month", + "example_sentence_english": "Christmas is in December.", + "pos": "noun", + "word_frequency": 740 + }, + { + "word": "difficult", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hard, not easy", + "example_sentence_english": "This math problem is very difficult.", + "pos": "adjective", + "word_frequency": 741 + }, + { + "word": "figure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "number, shape, person", + "example_sentence_english": "The sales figures for this month are impressive.", + "pos": "noun", + "word_frequency": 742 + }, + { + "word": "hospital", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "medical institution", + "example_sentence_english": "He had to go to the hospital for an operation.", + "pos": "noun", + "word_frequency": 743 + }, + { + "word": "loss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "act of losing, damage", + "example_sentence_english": "The company reported a significant loss this quarter.", + "pos": "noun", + "word_frequency": 744 + }, + { + "word": "modern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "contemporary, new", + "example_sentence_english": "I prefer modern art to classical art.", + "pos": "adjective", + "word_frequency": 745 + }, + { + "word": "paper", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "material for writing/printing", + "example_sentence_english": "Please write your name on the paper.", + "pos": "noun", + "word_frequency": 746 + }, + { + "word": "popular", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "well-liked", + "example_sentence_english": "This song is very popular right now.", + "pos": "adjective", + "word_frequency": 747 + }, + { + "word": "publish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "print and distribute", + "example_sentence_english": "The author will publish a new book next year.", + "pos": "verb", + "word_frequency": 748 + }, + { + "word": "safe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "secure, not in danger", + "example_sentence_english": "It's not safe to walk alone at night.", + "pos": "adjective", + "word_frequency": 749 + }, + { + "word": "version", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variant, edition", + "example_sentence_english": "This is the latest version of the software.", + "pos": "noun", + "word_frequency": 750 + }, + { + "word": "voice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sound from mouth", + "example_sentence_english": "She has a beautiful singing voice.", + "pos": "noun", + "word_frequency": 751 + }, + { + "word": "army", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "military force", + "example_sentence_english": "The army was deployed to help with disaster relief.", + "pos": "noun", + "word_frequency": 753 + }, + { + "word": "earth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "planet, ground", + "example_sentence_english": "The Earth revolves around the sun.", + "pos": "noun", + "word_frequency": 755 + }, + { + "word": "forget", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fail to remember", + "example_sentence_english": "Don't forget to lock the door.", + "pos": "verb", + "word_frequency": 756 + }, + { + "word": "goal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective, aim", + "example_sentence_english": "My goal is to learn a new language.", + "pos": "noun", + "word_frequency": 757 + }, + { + "word": "huge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "enormous, very big", + "example_sentence_english": "They live in a huge house.", + "pos": "adjective", + "word_frequency": 759 + }, + { + "word": "internet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the global computer network", + "example_sentence_english": "I use the internet every day for work.", + "pos": "noun", + "word_frequency": 760 + }, + { + "word": "listen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to hear with attention", + "example_sentence_english": "Please listen carefully to the instructions.", + "pos": "verb", + "word_frequency": 761 + }, + { + "word": "practice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "repeated exercise to improve skill", + "example_sentence_english": "Regular practice is essential to learn a new language.", + "pos": "noun", + "word_frequency": 763 + }, + { + "word": "rule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a regulation or principle", + "example_sentence_english": "You must follow the rules of the game.", + "pos": "noun", + "word_frequency": 764 + }, + { + "word": "sea", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the ocean", + "example_sentence_english": "We went for a swim in the sea.", + "pos": "noun", + "word_frequency": 765 + }, + { + "word": "sir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a polite term of address for a man", + "example_sentence_english": "Excuse me, sir, can you help me?", + "pos": "noun", + "word_frequency": 766 + }, + { + "word": "success", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the accomplishment of an aim or purpose", + "example_sentence_english": "Hard work is the key to success.", + "pos": "noun", + "word_frequency": 767 + }, + { + "word": "access", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the means or opportunity to approach or enter a place", + "example_sentence_english": "You need a key to gain access to the building.", + "pos": "noun", + "word_frequency": 770 + }, + { + "word": "create", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bring something into existence", + "example_sentence_english": "Artists create beautiful works of art.", + "pos": "verb", + "word_frequency": 773 + }, + { + "word": "deep", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "extending far down from the top or surface", + "example_sentence_english": "The lake is very deep in the middle.", + "pos": "adjective", + "word_frequency": 774 + }, + { + "word": "mark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a visible impression or stain", + "example_sentence_english": "There's a strange mark on the wall.", + "pos": "noun", + "word_frequency": 777 + }, + { + "word": "offer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a proposal or bid", + "example_sentence_english": "They made a good offer for the house.", + "pos": "noun", + "word_frequency": 778 + }, + { + "word": "pass", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move or cause to move in a specified direction", + "example_sentence_english": "Please pass the salt.", + "pos": "verb", + "word_frequency": 779 + }, + { + "word": "professional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or belonging to a profession", + "example_sentence_english": "She always maintains a professional attitude at work.", + "pos": "adjective", + "word_frequency": 780 + }, + { + "word": "risk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a situation involving exposure to danger", + "example_sentence_english": "There's a high risk of rain today.", + "pos": "noun", + "word_frequency": 781 + }, + { + "word": "sleep", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to rest in a state of unconsciousness", + "example_sentence_english": "I need to sleep for at least eight hours.", + "pos": "verb", + "word_frequency": 782 + }, + { + "word": "table", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of furniture with a flat top and one or more legs", + "example_sentence_english": "Please put the books on the table.", + "pos": "noun", + "word_frequency": 783 + }, + { + "word": "ten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 10", + "example_sentence_english": "There are ten apples in the basket.", + "pos": "numeral", + "word_frequency": 784 + }, + { + "word": "truth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality or state of being true", + "example_sentence_english": "Always tell the truth, even if it's difficult.", + "pos": "noun", + "word_frequency": 785 + }, + { + "word": "ball", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a round object used in games", + "example_sentence_english": "The child played with a red ball.", + "pos": "noun", + "word_frequency": 786 + }, + { + "word": "box", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a container with flat sides and a lid", + "example_sentence_english": "He put the gift in a small box.", + "pos": "noun", + "word_frequency": 787 + }, + { + "word": "card", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of thick stiff paper or plastic", + "example_sentence_english": "I sent her a birthday card.", + "pos": "noun", + "word_frequency": 788 + }, + { + "word": "dark", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "with little or no light", + "example_sentence_english": "It gets dark early in winter.", + "pos": "adjective", + "word_frequency": 789 + }, + { + "word": "district", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area of a country or city", + "example_sentence_english": "This is the main shopping district of the city.", + "pos": "noun", + "word_frequency": 790 + }, + { + "word": "minister", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a head of a government department", + "example_sentence_english": "The Prime Minister announced new policies.", + "pos": "noun", + "word_frequency": 795 + }, + { + "word": "note", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a short written message", + "example_sentence_english": "I left a note on the fridge.", + "pos": "noun", + "word_frequency": 796 + }, + { + "word": "percent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one part in every hundred", + "example_sentence_english": "Only ten percent of the students passed the exam.", + "pos": "noun", + "word_frequency": 797 + }, + { + "word": "piece", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a part of something", + "example_sentence_english": "Can I have a piece of cake?", + "pos": "noun", + "word_frequency": 798 + }, + { + "word": "product", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an article or substance that is manufactured or refined for sale", + "example_sentence_english": "This new product will be available next month.", + "pos": "noun", + "word_frequency": 799 + }, + { + "word": "recent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening or starting a short time ago", + "example_sentence_english": "I read a recent article about climate change.", + "pos": "adjective", + "word_frequency": 800 + }, + { + "word": "straight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not curved or bent", + "example_sentence_english": "Draw a straight line.", + "pos": "adjective", + "word_frequency": 801 + }, + { + "word": "visit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an act of going to see a person or place", + "example_sentence_english": "We paid a visit to our grandparents.", + "pos": "noun", + "word_frequency": 802 + }, + { + "word": "wall", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a continuous vertical brick or stone structure", + "example_sentence_english": "The room has four walls.", + "pos": "noun", + "word_frequency": 803 + }, + { + "word": "allow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let someone do something", + "example_sentence_english": "My parents allow me to stay out late.", + "pos": "verb", + "word_frequency": 805 + }, + { + "word": "culture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the customs, arts, social institutions, and achievements of a particular nation, people, or group", + "example_sentence_english": "We learned about Japanese culture.", + "pos": "noun", + "word_frequency": 806 + }, + { + "word": "fan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an admirer of a person or thing; a device for creating a current of air", + "example_sentence_english": "He is a big fan of that band.", + "pos": "noun", + "word_frequency": 808 + }, + { + "word": "growth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of increasing in size, amount, or degree", + "example_sentence_english": "The company showed significant growth last year.", + "pos": "noun", + "word_frequency": 810 + }, + { + "word": "marry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to join in marriage", + "example_sentence_english": "They plan to marry next spring.", + "pos": "verb", + "word_frequency": 811 + }, + { + "word": "officer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person holding a position of authority or trust", + "example_sentence_english": "A police officer helped us.", + "pos": "noun", + "word_frequency": 812 + }, + { + "word": "pain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "physical suffering or discomfort", + "example_sentence_english": "I felt a sharp pain in my leg.", + "pos": "noun", + "word_frequency": 813 + }, + { + "word": "respect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of deep admiration for someone or something elicited by their abilities, qualities, or achievements", + "example_sentence_english": "We should show respect for elders.", + "pos": "noun", + "word_frequency": 815 + }, + { + "word": "response", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a verbal or written answer", + "example_sentence_english": "Her response was very quick.", + "pos": "noun", + "word_frequency": 816 + }, + { + "word": "river", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large natural stream of water flowing in a channel to the sea, a lake, or another river", + "example_sentence_english": "The city is located by a big river.", + "pos": "noun", + "word_frequency": 817 + }, + { + "word": "rock", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large mass of stone forming a hill, cliff, or peak", + "example_sentence_english": "We climbed over the rocks.", + "pos": "noun", + "word_frequency": 818 + }, + { + "word": "speak", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to say words; to talk", + "example_sentence_english": "Can you speak louder?", + "pos": "verb", + "word_frequency": 820 + }, + { + "word": "specific", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearly defined or identified", + "example_sentence_english": "Please give me specific instructions.", + "pos": "adjective", + "word_frequency": 821 + }, + { + "word": "standard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "used or accepted as normal or average", + "example_sentence_english": "This is the standard procedure.", + "pos": "adjective", + "word_frequency": 822 + }, + { + "word": "tonight", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "on the evening of the present day", + "example_sentence_english": "I'm going out tonight.", + "pos": "adverb", + "word_frequency": 823 + }, + { + "word": "album", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a collection of musical recordings or photographs", + "example_sentence_english": "She bought the new album by her favorite band.", + "pos": "noun", + "word_frequency": 825 + }, + { + "word": "century", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of one hundred years", + "example_sentence_english": "The 21st century began in 2001.", + "pos": "noun", + "word_frequency": 826 + }, + { + "word": "charge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a price asked for goods or services; an accusation", + "example_sentence_english": "There is no charge for delivery.", + "pos": "noun", + "word_frequency": 827 + }, + { + "word": "cold", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "at a low temperature", + "example_sentence_english": "It's very cold outside today.", + "pos": "adjective", + "word_frequency": 828 + }, + { + "word": "effect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a change which is a result or consequence of an action or other cause", + "example_sentence_english": "The medicine had a strong effect.", + "pos": "noun", + "word_frequency": 829 + }, + { + "word": "funny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "causing laughter or amusement", + "example_sentence_english": "That movie was really funny.", + "pos": "adjective", + "word_frequency": 832 + }, + { + "word": "limited", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restricted in size, amount, or extent", + "example_sentence_english": "We have a limited amount of time.", + "pos": "adjective", + "word_frequency": 834 + }, + { + "word": "network", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an interconnected system of things or people", + "example_sentence_english": "The company has a global network of offices.", + "pos": "noun", + "word_frequency": 835 + }, + { + "word": "peace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freedom from disturbance; tranquility", + "example_sentence_english": "I enjoy the peace and quiet of the countryside.", + "pos": "noun", + "word_frequency": 836 + }, + { + "word": "recently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not long ago", + "example_sentence_english": "I recently visited Paris.", + "pos": "adverb", + "word_frequency": 837 + }, + { + "word": "require", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to need for a particular purpose", + "example_sentence_english": "This job requires a lot of skill.", + "pos": "verb", + "word_frequency": 838 + }, + { + "word": "sale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the exchange of a commodity for money; a period when goods are sold at reduced prices", + "example_sentence_english": "The store is having a big sale.", + "pos": "noun", + "word_frequency": 839 + }, + { + "word": "spend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to use money or time", + "example_sentence_english": "I like to spend time with my family.", + "pos": "verb", + "word_frequency": 840 + }, + { + "word": "store", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a shop", + "example_sentence_english": "I bought milk at the store.", + "pos": "noun", + "word_frequency": 841 + }, + { + "word": "tomorrow", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the day after today", + "example_sentence_english": "I will see you tomorrow.", + "pos": "adverb", + "word_frequency": 842 + }, + { + "word": "track", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a path or course", + "example_sentence_english": "The train runs on the track.", + "pos": "noun", + "word_frequency": 843 + }, + { + "word": "weight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "how heavy something is", + "example_sentence_english": "What is the weight of this box?", + "pos": "noun", + "word_frequency": 845 + }, + { + "word": "addition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something added", + "example_sentence_english": "In addition to the main course, we had dessert.", + "pos": "noun", + "word_frequency": 846 + }, + { + "word": "ahead", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in front", + "example_sentence_english": "Go straight ahead.", + "pos": "adverb", + "word_frequency": 847 + }, + { + "word": "anti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposed to", + "example_sentence_english": "She is very anti-war.", + "pos": "adjective", + "word_frequency": 848 + }, + { + "word": "association", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organization of people", + "example_sentence_english": "He is a member of the local sports association.", + "pos": "noun", + "word_frequency": 849 + }, + { + "word": "beat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to defeat", + "example_sentence_english": "Our team can beat them.", + "pos": "verb", + "word_frequency": 850 + }, + { + "word": "brown", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a color", + "example_sentence_english": "The dog has brown fur.", + "pos": "adjective", + "word_frequency": 851 + }, + { + "word": "capital", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the most important city of a country", + "example_sentence_english": "Paris is the capital of France.", + "pos": "noun", + "word_frequency": 852 + }, + { + "word": "chinese", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "relating to China", + "example_sentence_english": "She is learning Chinese culture.", + "pos": "adjective", + "word_frequency": 853 + }, + { + "word": "committee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of people chosen to do a particular job", + "example_sentence_english": "The committee will meet next week.", + "pos": "noun", + "word_frequency": 854 + }, + { + "word": "conference", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a formal meeting", + "example_sentence_english": "They attended a business conference.", + "pos": "noun", + "word_frequency": 855 + }, + { + "word": "difference", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a way in which things are not the same", + "example_sentence_english": "What is the difference between these two shirts?", + "pos": "noun", + "word_frequency": 856 + }, + { + "word": "double", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twice as much or as many", + "example_sentence_english": "I ordered a double espresso.", + "pos": "adjective", + "word_frequency": 857 + }, + { + "word": "expect", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to think that something will happen", + "example_sentence_english": "I expect him to arrive soon.", + "pos": "verb", + "word_frequency": 858 + }, + { + "word": "gas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fuel for cars", + "example_sentence_english": "I need to put gas in the car.", + "pos": "noun", + "word_frequency": 859 + }, + { + "word": "island", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of land surrounded by water", + "example_sentence_english": "We visited a beautiful island.", + "pos": "noun", + "word_frequency": 860 + }, + { + "word": "normal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "usual or ordinary", + "example_sentence_english": "It's normal to feel nervous before a test.", + "pos": "adjective", + "word_frequency": 861 + }, + { + "word": "population", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the number of people living in an area", + "example_sentence_english": "The city has a large population.", + "pos": "noun", + "word_frequency": 862 + }, + { + "word": "potential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possible", + "example_sentence_english": "He has great potential as a leader.", + "pos": "adjective", + "word_frequency": 863 + }, + { + "word": "pressure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the force that presses on something", + "example_sentence_english": "There is a lot of pressure at work.", + "pos": "noun", + "word_frequency": 864 + }, + { + "word": "radio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a device for listening to broadcasts", + "example_sentence_english": "I listen to the radio in the car.", + "pos": "noun", + "word_frequency": 865 + }, + { + "word": "russian", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "relating to Russia", + "example_sentence_english": "She is studying Russian history.", + "pos": "adjective", + "word_frequency": 866 + }, + { + "word": "station", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a place where trains or buses stop", + "example_sentence_english": "We met at the train station.", + "pos": "noun", + "word_frequency": 867 + }, + { + "word": "text", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "written words", + "example_sentence_english": "Please read the text carefully.", + "pos": "noun", + "word_frequency": 868 + }, + { + "word": "treatment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medical care", + "example_sentence_english": "He is receiving treatment for his illness.", + "pos": "noun", + "word_frequency": 869 + }, + { + "word": "western", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the west", + "example_sentence_english": "Western countries have different customs.", + "pos": "adjective", + "word_frequency": 870 + }, + { + "word": "ass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buttocks; a foolish person", + "example_sentence_english": "Don't be an ass.", + "pos": "noun", + "word_frequency": 871 + }, + { + "word": "beginning", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the start", + "example_sentence_english": "This is just the beginning.", + "pos": "noun", + "word_frequency": 872 + }, + { + "word": "campaign", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a series of activities to achieve a goal", + "example_sentence_english": "The political campaign is in full swing.", + "pos": "noun", + "word_frequency": 874 + }, + { + "word": "certainly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "without a doubt", + "example_sentence_english": "I will certainly help you.", + "pos": "adverb", + "word_frequency": 875 + }, + { + "word": "completely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "totally", + "example_sentence_english": "I completely forgot about the meeting.", + "pos": "adverb", + "word_frequency": 876 + }, + { + "word": "content", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the subjects or topics covered", + "example_sentence_english": "The book has interesting content.", + "pos": "noun", + "word_frequency": 877 + }, + { + "word": "credit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money lent by a bank", + "example_sentence_english": "I paid with my credit card.", + "pos": "noun", + "word_frequency": 878 + }, + { + "word": "cross", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shape made of two lines intersecting", + "example_sentence_english": "He drew a cross on the paper.", + "pos": "noun", + "word_frequency": 879 + }, + { + "word": "describe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give an account of in words", + "example_sentence_english": "Can you describe the suspect?", + "pos": "verb", + "word_frequency": 880 + }, + { + "word": "female", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the sex that can bear offspring", + "example_sentence_english": "The female lion protects her cubs.", + "pos": "adjective", + "word_frequency": 882 + }, + { + "word": "focus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the center of interest or activity", + "example_sentence_english": "The main focus of the meeting was the budget.", + "pos": "noun", + "word_frequency": 883 + }, + { + "word": "husband", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a married man", + "example_sentence_english": "Her husband works as a doctor.", + "pos": "noun", + "word_frequency": 886 + }, + { + "word": "ice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frozen water", + "example_sentence_english": "Please put some ice in my drink.", + "pos": "noun", + "word_frequency": 887 + }, + { + "word": "individual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "single; separate", + "example_sentence_english": "Each individual student received a certificate.", + "pos": "adjective", + "word_frequency": 888 + }, + { + "word": "interesting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arousing curiosity or interest", + "example_sentence_english": "That was a very interesting book.", + "pos": "adjective", + "word_frequency": 889 + }, + { + "word": "join", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to connect or combine", + "example_sentence_english": "Would you like to join us for dinner?", + "pos": "verb", + "word_frequency": 891 + }, + { + "word": "message", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a communication sent or delivered", + "example_sentence_english": "I received a message from my friend.", + "pos": "noun", + "word_frequency": 892 + }, + { + "word": "mile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of distance (approx. 1.6 km)", + "example_sentence_english": "The store is about a mile from here.", + "pos": "noun", + "word_frequency": 893 + }, + { + "word": "nearly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "almost", + "example_sentence_english": "It's nearly midnight.", + "pos": "adverb", + "word_frequency": 894 + }, + { + "word": "particular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specific; distinct", + "example_sentence_english": "Is there any particular reason you chose that color?", + "pos": "adjective", + "word_frequency": 895 + }, + { + "word": "previous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing or occurring before in time or order", + "example_sentence_english": "We discussed this in the previous meeting.", + "pos": "adjective", + "word_frequency": 896 + }, + { + "word": "quickly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at a fast speed", + "example_sentence_english": "He finished his homework quickly.", + "pos": "adverb", + "word_frequency": 897 + }, + { + "word": "region", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area or division", + "example_sentence_english": "This region is known for its beautiful mountains.", + "pos": "noun", + "word_frequency": 898 + }, + { + "word": "section", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "any of the more or less distinct parts into which something is divided", + "example_sentence_english": "Please read the next section of the book.", + "pos": "noun", + "word_frequency": 899 + }, + { + "word": "sort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a category of things or people", + "example_sentence_english": "What sort of music do you like?", + "pos": "noun", + "word_frequency": 900 + }, + { + "word": "speed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the rate at which someone or something is able to move or operate", + "example_sentence_english": "The car was traveling at a high speed.", + "pos": "noun", + "word_frequency": 901 + }, + { + "word": "travel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the action of going from one place to another", + "example_sentence_english": "Air travel can be expensive.", + "pos": "noun", + "word_frequency": 902 + }, + { + "word": "contact", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or condition of physical touching", + "example_sentence_english": "Please keep in contact with us.", + "pos": "noun", + "word_frequency": 903 + }, + { + "word": "drop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to let or make something fall", + "example_sentence_english": "Be careful not to drop the glass.", + "pos": "verb", + "word_frequency": 904 + }, + { + "word": "fair", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "just or appropriate in the circumstances", + "example_sentence_english": "That was a fair decision.", + "pos": "adjective", + "word_frequency": 905 + }, + { + "word": "foot", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the lower extremity of the leg", + "example_sentence_english": "My foot hurts after running.", + "pos": "noun", + "word_frequency": 906 + }, + { + "word": "link", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a connection between two things", + "example_sentence_english": "Can you send me the link to that website?", + "pos": "noun", + "word_frequency": 908 + }, + { + "word": "positive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constructive, optimistic, or confident", + "example_sentence_english": "We received positive feedback on our project.", + "pos": "adjective", + "word_frequency": 909 + }, + { + "word": "tour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a journey for pleasure or education", + "example_sentence_english": "We went on a guided tour of the city.", + "pos": "noun", + "word_frequency": 911 + }, + { + "word": "welcome", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gladly received", + "example_sentence_english": "You are always welcome in our home.", + "pos": "adjective", + "word_frequency": 912 + }, + { + "word": "absolutely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely; totally", + "example_sentence_english": "I absolutely agree with you.", + "pos": "adverb", + "word_frequency": 913 + }, + { + "word": "additional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "added, extra, or supplementary", + "example_sentence_english": "Do you need any additional information?", + "pos": "adjective", + "word_frequency": 914 + }, + { + "word": "condition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of something with regard to its appearance, quality, or working order", + "example_sentence_english": "The car is in excellent condition.", + "pos": "noun", + "word_frequency": 916 + }, + { + "word": "extra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "added to an existing or usual amount or number", + "example_sentence_english": "Do you want an extra slice of cake?", + "pos": "adjective", + "word_frequency": 917 + }, + { + "word": "immediately", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at once; instantly", + "example_sentence_english": "Please come here immediately.", + "pos": "adverb", + "word_frequency": 918 + }, + { + "word": "nature", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the phenomena of the physical world collectively", + "example_sentence_english": "We love spending time in nature.", + "pos": "noun", + "word_frequency": 919 + }, + { + "word": "quick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fast, rapid", + "example_sentence_english": "She made a quick decision.", + "pos": "adjective", + "word_frequency": 920 + }, + { + "word": "sell", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to exchange for money", + "example_sentence_english": "They want to sell their old car.", + "pos": "verb", + "word_frequency": 921 + }, + { + "word": "significant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "important, notable", + "example_sentence_english": "There was a significant increase in sales.", + "pos": "adjective", + "word_frequency": 922 + }, + { + "word": "agree", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to have the same opinion", + "example_sentence_english": "We all agree on the plan.", + "pos": "verb", + "word_frequency": 924 + }, + { + "word": "clean", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not dirty", + "example_sentence_english": "Please keep your room clean.", + "pos": "adjective", + "word_frequency": 926 + }, + { + "word": "computer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "electronic device for processing data", + "example_sentence_english": "I use my computer for work.", + "pos": "noun", + "word_frequency": 927 + }, + { + "word": "construction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of building", + "example_sentence_english": "The new building is still under construction.", + "pos": "noun", + "word_frequency": 928 + }, + { + "word": "episode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a single part of a series", + "example_sentence_english": "I watched the latest episode of my favorite show.", + "pos": "noun", + "word_frequency": 929 + }, + { + "word": "favorite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preferred above all others", + "example_sentence_english": "What's your favorite color?", + "pos": "adjective", + "word_frequency": 930 + }, + { + "word": "income", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money received, especially regularly", + "example_sentence_english": "His income increased last year.", + "pos": "noun", + "word_frequency": 931 + }, + { + "word": "justice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairness, righteousness", + "example_sentence_english": "They are fighting for social justice.", + "pos": "noun", + "word_frequency": 932 + }, + { + "word": "manager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person responsible for controlling a company or organization", + "example_sentence_english": "The manager approved my request.", + "pos": "noun", + "word_frequency": 933 + }, + { + "word": "movement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of moving", + "example_sentence_english": "We observed the movement of the stars.", + "pos": "noun", + "word_frequency": 934 + }, + { + "word": "photo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a photograph", + "example_sentence_english": "She took a beautiful photo of the sunset.", + "pos": "noun", + "word_frequency": 935 + }, + { + "word": "safety", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being safe", + "example_sentence_english": "Safety is our top priority.", + "pos": "noun", + "word_frequency": 936 + }, + { + "word": "scene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a part of a play, movie, or story", + "example_sentence_english": "The final scene of the movie was very emotional.", + "pos": "noun", + "word_frequency": 938 + }, + { + "word": "statement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a definite or clear expression of something in speech or writing", + "example_sentence_english": "The company released an official statement.", + "pos": "noun", + "word_frequency": 939 + }, + { + "word": "sun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the star that the Earth orbits", + "example_sentence_english": "The sun is shining brightly today.", + "pos": "noun", + "word_frequency": 940 + }, + { + "word": "ability", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the power or skill to do something", + "example_sentence_english": "She has a great ability to learn new languages.", + "pos": "noun", + "word_frequency": 941 + }, + { + "word": "announce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make a public statement about something", + "example_sentence_english": "They will announce the winner tomorrow.", + "pos": "verb", + "word_frequency": 942 + }, + { + "word": "coach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who trains a sports team or athlete", + "example_sentence_english": "The football coach gave a motivational speech.", + "pos": "noun", + "word_frequency": 943 + }, + { + "word": "collection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of things gathered together", + "example_sentence_english": "He has a large collection of stamps.", + "pos": "noun", + "word_frequency": 944 + }, + { + "word": "definitely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without any doubt", + "example_sentence_english": "I will definitely be there.", + "pos": "adverb", + "word_frequency": 945 + }, + { + "word": "gun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a weapon that fires projectiles", + "example_sentence_english": "The police officer carried a gun.", + "pos": "noun", + "word_frequency": 947 + }, + { + "word": "heavy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "of great weight", + "example_sentence_english": "This box is very heavy.", + "pos": "adjective", + "word_frequency": 948 + }, + { + "word": "knowledge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facts, information, and skills acquired through experience or education", + "example_sentence_english": "He has a lot of knowledge about history.", + "pos": "noun", + "word_frequency": 949 + }, + { + "word": "particularly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "especially, specifically", + "example_sentence_english": "I particularly enjoyed the dessert.", + "pos": "adverb", + "word_frequency": 950 + }, + { + "word": "search", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of looking for something", + "example_sentence_english": "The police conducted a thorough search of the area.", + "pos": "noun", + "word_frequency": 951 + }, + { + "word": "subject", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a topic or area of study", + "example_sentence_english": "My favorite subject in school is science.", + "pos": "noun", + "word_frequency": 952 + }, + { + "word": "wide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broad, extensive", + "example_sentence_english": "The river is very wide at this point.", + "pos": "adjective", + "word_frequency": 953 + }, + { + "word": "author", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a writer of a book, article, or report", + "example_sentence_english": "Who is the author of this book?", + "pos": "noun", + "word_frequency": 955 + }, + { + "word": "centre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the middle point or part", + "example_sentence_english": "The city centre is very busy.", + "pos": "noun", + "word_frequency": 956 + }, + { + "word": "claim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statement that something is true", + "example_sentence_english": "He made a claim that he saw a UFO.", + "pos": "noun", + "word_frequency": 957 + }, + { + "word": "dad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father", + "example_sentence_english": "My dad is a great cook.", + "pos": "noun", + "word_frequency": 958 + }, + { + "word": "develop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grow or cause to grow and become more mature, advanced, or elaborate", + "example_sentence_english": "The city plans to develop a new park.", + "pos": "verb", + "word_frequency": 959 + }, + { + "word": "fear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fear", + "example_sentence_english": "His greatest fear was losing his family.", + "pos": "noun", + "word_frequency": 960 + }, + { + "word": "fit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fit", + "example_sentence_english": "Does this shirt still fit you?", + "pos": "verb", + "word_frequency": 961 + }, + { + "word": "generally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generally", + "example_sentence_english": "Generally, I prefer to work in the morning.", + "pos": "adverb", + "word_frequency": 962 + }, + { + "word": "german", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "German", + "example_sentence_english": "She is learning the German language.", + "pos": "adjective", + "word_frequency": 963 + }, + { + "word": "global", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "global", + "example_sentence_english": "Climate change is a global issue.", + "pos": "adjective", + "word_frequency": 964 + }, + { + "word": "hotel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hotel", + "example_sentence_english": "We booked a hotel room for the night.", + "pos": "noun", + "word_frequency": 966 + }, + { + "word": "interested", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interested", + "example_sentence_english": "Are you interested in learning a new language?", + "pos": "adjective", + "word_frequency": 967 + }, + { + "word": "judge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judge", + "example_sentence_english": "The judge listened carefully to the arguments.", + "pos": "noun", + "word_frequency": 968 + }, + { + "word": "lady", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lady", + "example_sentence_english": "A kind lady helped me find my way.", + "pos": "noun", + "word_frequency": 969 + }, + { + "word": "leader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leader", + "example_sentence_english": "She is a strong and inspiring leader.", + "pos": "noun", + "word_frequency": 970 + }, + { + "word": "letter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "letter", + "example_sentence_english": "I received a letter from my friend.", + "pos": "noun", + "word_frequency": 971 + }, + { + "word": "material", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material", + "example_sentence_english": "What material is this shirt made of?", + "pos": "noun", + "word_frequency": 972 + }, + { + "word": "opportunity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunity", + "example_sentence_english": "This is a great opportunity to learn.", + "pos": "noun", + "word_frequency": 974 + }, + { + "word": "regular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regular", + "example_sentence_english": "He has a regular exercise routine.", + "pos": "adjective", + "word_frequency": 977 + }, + { + "word": "secretary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretary", + "example_sentence_english": "The secretary typed the letter.", + "pos": "noun", + "word_frequency": 978 + }, + { + "word": "sister", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sister", + "example_sentence_english": "My sister lives in another city.", + "pos": "noun", + "word_frequency": 979 + }, + { + "word": "unit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unit", + "example_sentence_english": "The apartment building has twenty units.", + "pos": "noun", + "word_frequency": 980 + }, + { + "word": "worker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worker", + "example_sentence_english": "The factory workers are on strike.", + "pos": "noun", + "word_frequency": 981 + }, + { + "word": "annual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annual", + "example_sentence_english": "The company holds an annual meeting.", + "pos": "adjective", + "word_frequency": 982 + }, + { + "word": "anymore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anymore", + "example_sentence_english": "I don't live there anymore.", + "pos": "adverb", + "word_frequency": 983 + }, + { + "word": "bar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bar", + "example_sentence_english": "We met at the bar for a drink.", + "pos": "noun", + "word_frequency": 984 + }, + { + "word": "battle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battle", + "example_sentence_english": "The soldiers prepared for battle.", + "pos": "noun", + "word_frequency": 985 + }, + { + "word": "brain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brain", + "example_sentence_english": "The human brain is incredibly complex.", + "pos": "noun", + "word_frequency": 986 + }, + { + "word": "contract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contract", + "example_sentence_english": "They signed a new contract last week.", + "pos": "noun", + "word_frequency": 987 + }, + { + "word": "degree", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "degree", + "example_sentence_english": "She earned a degree in history.", + "pos": "noun", + "word_frequency": 988 + }, + { + "word": "feature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feature", + "example_sentence_english": "The new phone has many exciting features.", + "pos": "noun", + "word_frequency": 989 + }, + { + "word": "finish", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to finish", + "example_sentence_english": "I need to finish my homework.", + "pos": "verb", + "word_frequency": 990 + }, + { + "word": "floor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "floor", + "example_sentence_english": "The book fell on the floor.", + "pos": "noun", + "word_frequency": 991 + }, + { + "word": "grow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to grow", + "example_sentence_english": "Plants grow towards the sunlight.", + "pos": "verb", + "word_frequency": 993 + }, + { + "word": "hurt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hurt", + "example_sentence_english": "Did you hurt your leg?", + "pos": "verb", + "word_frequency": 994 + }, + { + "word": "image", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "image", + "example_sentence_english": "The image on the screen was very clear.", + "pos": "noun", + "word_frequency": 995 + }, + { + "word": "insurance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurance", + "example_sentence_english": "You should get travel insurance for your trip.", + "pos": "noun", + "word_frequency": 996 + }, + { + "word": "majority", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majority", + "example_sentence_english": "The majority of students passed the exam.", + "pos": "noun", + "word_frequency": 997 + }, + { + "word": "opening", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening", + "example_sentence_english": "There's an opening for a new position at work.", + "pos": "noun", + "word_frequency": 998 + }, + { + "word": "opinion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opinion", + "example_sentence_english": "What's your opinion on this matter?", + "pos": "noun", + "word_frequency": 999 + }, + { + "word": "physical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the body or material things", + "example_sentence_english": "Regular exercise improves your physical health.", + "pos": "adjective", + "word_frequency": 1000 + }, + { + "word": "pro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a professional; an advantage", + "example_sentence_english": "One pro of working from home is flexibility.", + "pos": "noun", + "word_frequency": 1001 + }, + { + "word": "reach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to arrive at; to extend to", + "example_sentence_english": "Can you reach the book on the top shelf?", + "pos": "verb", + "word_frequency": 1002 + }, + { + "word": "seriously", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a serious manner; very much", + "example_sentence_english": "He took the criticism seriously.", + "pos": "adverb", + "word_frequency": 1003 + }, + { + "word": "sport", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an activity involving physical exertion and skill", + "example_sentence_english": "My favorite sport is basketball.", + "pos": "noun", + "word_frequency": 1004 + }, + { + "word": "stupid", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lacking intelligence or common sense", + "example_sentence_english": "It was a stupid mistake to make.", + "pos": "adjective", + "word_frequency": 1005 + }, + { + "word": "successful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "achieving a desired aim or result", + "example_sentence_english": "The event was very successful.", + "pos": "adjective", + "word_frequency": 1006 + }, + { + "word": "active", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "engaging or ready to engage in physically energetic pursuits", + "example_sentence_english": "She leads a very active lifestyle.", + "pos": "adjective", + "word_frequency": 1007 + }, + { + "word": "administration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the management of public affairs; the people who manage an organization", + "example_sentence_english": "The university administration announced new policies.", + "pos": "noun", + "word_frequency": 1008 + }, + { + "word": "approach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a way of dealing with something; a path or road", + "example_sentence_english": "We need a new approach to solve this problem.", + "pos": "noun", + "word_frequency": 1009 + }, + { + "word": "australian", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to Australia or its people", + "example_sentence_english": "My friend is Australian.", + "pos": "adjective", + "word_frequency": 1010 + }, + { + "word": "cancer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a serious disease caused by uncontrolled cell growth", + "example_sentence_english": "Research continues to find a cure for cancer.", + "pos": "noun", + "word_frequency": 1011 + }, + { + "word": "civil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to ordinary citizens and their concerns; polite", + "example_sentence_english": "We need to maintain civil discourse.", + "pos": "adjective", + "word_frequency": 1012 + }, + { + "word": "dance", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a series of steps and movements that match the speed and rhythm of a piece of music", + "example_sentence_english": "Let's go to the dance tonight.", + "pos": "noun", + "word_frequency": 1013 + }, + { + "word": "defense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of defending from attack; the system of protecting a country", + "example_sentence_english": "The country's defense budget is very high.", + "pos": "noun", + "word_frequency": 1014 + }, + { + "word": "direction", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the path that something takes; guidance", + "example_sentence_english": "Which direction should we go?", + "pos": "noun", + "word_frequency": 1015 + }, + { + "word": "independent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not dependent on others; self-governing", + "example_sentence_english": "She is a very independent person.", + "pos": "adjective", + "word_frequency": 1016 + }, + { + "word": "master", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has complete control of something; an expert", + "example_sentence_english": "He is a master of chess.", + "pos": "noun", + "word_frequency": 1017 + }, + { + "word": "ship", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large boat for transporting people or goods", + "example_sentence_english": "The ship sailed across the ocean.", + "pos": "noun", + "word_frequency": 1020 + }, + { + "word": "stock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the goods or merchandise kept on the premises of a business; shares of a company", + "example_sentence_english": "The store has a large stock of new books.", + "pos": "noun", + "word_frequency": 1021 + }, + { + "word": "weekend", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday and Sunday", + "example_sentence_english": "What are your plans for the weekend.", + "pos": "noun", + "word_frequency": 1023 + }, + { + "word": "wonder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of surprise and admiration; a remarkable thing", + "example_sentence_english": "The Grand Canyon is a natural wonder.", + "pos": "noun", + "word_frequency": 1024 + }, + { + "word": "awesome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely impressive or daunting; excellent", + "example_sentence_english": "That concert was awesome!", + "pos": "adjective", + "word_frequency": 1026 + }, + { + "word": "band", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a group of musicians; a strip of material", + "example_sentence_english": "My favorite band is playing tonight.", + "pos": "noun", + "word_frequency": 1027 + }, + { + "word": "beach", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sandy or pebbly shore by the sea or a lake", + "example_sentence_english": "We spent the day at the beach.", + "pos": "noun", + "word_frequency": 1028 + }, + { + "word": "cash", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "money in coins or notes", + "example_sentence_english": "Do you have any cash on you?", + "pos": "noun", + "word_frequency": 1029 + }, + { + "word": "clearly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a clear manner; obviously", + "example_sentence_english": "He spoke clearly so everyone could understand.", + "pos": "adverb", + "word_frequency": 1030 + }, + { + "word": "commercial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to commerce; intended to make a profit", + "example_sentence_english": "The area is zoned for commercial use.", + "pos": "adjective", + "word_frequency": 1031 + }, + { + "word": "compare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to estimate, measure, or note the similarity or dissimilarity between", + "example_sentence_english": "Let's compare the two options.", + "pos": "verb", + "word_frequency": 1032 + }, + { + "word": "effort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a vigorous or determined attempt", + "example_sentence_english": "It takes a lot of effort to learn a new language.", + "pos": "noun", + "word_frequency": 1033 + }, + { + "word": "imagine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to form a mental image or concept of", + "example_sentence_english": "Can you imagine a world without internet?", + "pos": "verb", + "word_frequency": 1034 + }, + { + "word": "impact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the striking of one thing against another; a powerful effect", + "example_sentence_english": "The new policy had a significant impact.", + "pos": "noun", + "word_frequency": 1035 + }, + { + "word": "lack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being without or not having enough of something", + "example_sentence_english": "There is a lack of funding for the project.", + "pos": "noun", + "word_frequency": 1036 + }, + { + "word": "multiple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consisting of or involving many individuals or elements", + "example_sentence_english": "The problem has multiple solutions.", + "pos": "adjective", + "word_frequency": 1037 + }, + { + "word": "operation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of functioning or being active; a surgical procedure", + "example_sentence_english": "The company's operation runs smoothly.", + "pos": "noun", + "word_frequency": 1038 + }, + { + "word": "organization", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an organized body of people with a particular purpose; the action of organizing", + "example_sentence_english": "She works for a non-profit organization.", + "pos": "noun", + "word_frequency": 1039 + }, + { + "word": "protect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to keep safe from harm", + "example_sentence_english": "Parents try to protect their children from danger.", + "pos": "verb", + "word_frequency": 1040 + }, + { + "word": "secret", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kept hidden from others", + "example_sentence_english": "They shared a secret handshake.", + "pos": "adjective", + "word_frequency": 1041 + }, + { + "word": "senior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "older or higher in rank", + "example_sentence_english": "She is a senior manager in the company.", + "pos": "adjective", + "word_frequency": 1042 + }, + { + "word": "spring", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the season after winter", + "example_sentence_english": "Flowers bloom in the spring.", + "pos": "noun", + "word_frequency": 1043 + }, + { + "word": "wear", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have clothes on your body", + "example_sentence_english": "She likes to wear colorful dresses.", + "pos": "verb", + "word_frequency": 1045 + }, + { + "word": "activity", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "something that you do", + "example_sentence_english": "Reading is a relaxing activity.", + "pos": "noun", + "word_frequency": 1046 + }, + { + "word": "address", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the number of a house and name of the street", + "example_sentence_english": "Please write down your address.", + "pos": "noun", + "word_frequency": 1047 + }, + { + "word": "analysis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detailed examination of the elements or structure of something", + "example_sentence_english": "The report provided a detailed analysis of the data.", + "pos": "noun", + "word_frequency": 1048 + }, + { + "word": "anyway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in any case; regardless", + "example_sentence_english": "It was raining, but we went out anyway.", + "pos": "adverb", + "word_frequency": 1049 + }, + { + "word": "choose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to select from a number of alternatives", + "example_sentence_english": "You can choose any book you like.", + "pos": "verb", + "word_frequency": 1050 + }, + { + "word": "color", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the property of objects that depends on the light they reflect", + "example_sentence_english": "Red is my favorite color.", + "pos": "noun", + "word_frequency": 1052 + }, + { + "word": "commission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of people given official authority to do something", + "example_sentence_english": "The government formed a commission to investigate the issue.", + "pos": "noun", + "word_frequency": 1053 + }, + { + "word": "competition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a contest in which people try to win something", + "example_sentence_english": "There is strong competition for the job.", + "pos": "noun", + "word_frequency": 1054 + }, + { + "word": "detail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small part of something", + "example_sentence_english": "He explained every detail of the plan.", + "pos": "noun", + "word_frequency": 1055 + }, + { + "word": "direct", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "going straight from one place to another", + "example_sentence_english": "Take the direct route to the city center.", + "pos": "adjective", + "word_frequency": 1056 + }, + { + "word": "dream", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a series of thoughts, images, and sensations occurring in a person's mind during sleep", + "example_sentence_english": "I had a strange dream last night.", + "pos": "noun", + "word_frequency": 1057 + }, + { + "word": "easily", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "without difficulty", + "example_sentence_english": "She can easily lift that box.", + "pos": "adverb", + "word_frequency": 1058 + }, + { + "word": "grand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnificent and impressive", + "example_sentence_english": "The old building had a grand staircase.", + "pos": "adjective", + "word_frequency": 1059 + }, + { + "word": "indian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to India or its people", + "example_sentence_english": "She enjoys Indian food.", + "pos": "adjective", + "word_frequency": 1061 + }, + { + "word": "literally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a literal or actual sense", + "example_sentence_english": "I was literally shaking with fear.", + "pos": "adverb", + "word_frequency": 1063 + }, + { + "word": "luck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "success or failure apparently brought by chance", + "example_sentence_english": "Good luck with your exam!", + "pos": "noun", + "word_frequency": 1064 + }, + { + "word": "marriage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the legally or formally recognized union of two people", + "example_sentence_english": "Their marriage lasted for fifty years.", + "pos": "noun", + "word_frequency": 1065 + }, + { + "word": "necessary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "needed to be done or achieved", + "example_sentence_english": "It is necessary to study for the test.", + "pos": "adjective", + "word_frequency": 1066 + }, + { + "word": "patient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person receiving medical treatment", + "example_sentence_english": "The doctor visited the patient in the hospital.", + "pos": "noun", + "word_frequency": 1067 + }, + { + "word": "resource", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stock or supply of money, materials, staff, and other assets that can be drawn on by a person or organization in order to function effectively", + "example_sentence_english": "Water is a valuable natural resource.", + "pos": "noun", + "word_frequency": 1068 + }, + { + "word": "rich", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a lot of money or possessions", + "example_sentence_english": "He became rich after starting his own business.", + "pos": "adjective", + "word_frequency": 1069 + }, + { + "word": "skin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the outer covering of the body", + "example_sentence_english": "She has very sensitive skin.", + "pos": "noun", + "word_frequency": 1070 + }, + { + "word": "suppose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assume that something is true", + "example_sentence_english": "I suppose you're right.", + "pos": "verb", + "word_frequency": 1071 + }, + { + "word": "sweet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having the pleasant taste characteristic of sugar or honey", + "example_sentence_english": "This cake is very sweet.", + "pos": "adjective", + "word_frequency": 1072 + }, + { + "word": "thus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as a result or consequence of this", + "example_sentence_english": "He is ill, thus he cannot come to work.", + "pos": "adverb", + "word_frequency": 1073 + }, + { + "word": "touch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act or an instance of touching", + "example_sentence_english": "He felt a light touch on his shoulder.", + "pos": "noun", + "word_frequency": 1074 + }, + { + "word": "yesterday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "on the day before today", + "example_sentence_english": "I saw her yesterday.", + "pos": "adverb", + "word_frequency": 1075 + }, + { + "word": "catch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to intercept and hold something that has been thrown", + "example_sentence_english": "He tried to catch the ball.", + "pos": "verb", + "word_frequency": 1076 + }, + { + "word": "congress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal meeting or series of meetings for discussion", + "example_sentence_english": "The new law was passed by Congress.", + "pos": "noun", + "word_frequency": 1077 + }, + { + "word": "damage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical harm that impairs the value, usefulness, or normal function of something", + "example_sentence_english": "The storm caused a lot of damage to the roof.", + "pos": "noun", + "word_frequency": 1078 + }, + { + "word": "directly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a direct manner; without delay or interruption", + "example_sentence_english": "Please send the email directly to him.", + "pos": "adverb", + "word_frequency": 1079 + }, + { + "word": "disease", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illness", + "example_sentence_english": "The doctor diagnosed a rare disease.", + "pos": "noun", + "word_frequency": 1080 + }, + { + "word": "doctor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "physician", + "example_sentence_english": "I need to see a doctor.", + "pos": "noun", + "word_frequency": 1081 + }, + { + "word": "doubt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncertainty", + "example_sentence_english": "There is no doubt about his honesty.", + "pos": "noun", + "word_frequency": 1082 + }, + { + "word": "drink", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beverage", + "example_sentence_english": "Would you like a drink?", + "pos": "noun", + "word_frequency": 1083 + }, + { + "word": "establish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set up, found", + "example_sentence_english": "They plan to establish a new company.", + "pos": "verb", + "word_frequency": 1084 + }, + { + "word": "fish", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "aquatic animal", + "example_sentence_english": "We saw many colorful fish in the ocean.", + "pos": "noun", + "word_frequency": 1086 + }, + { + "word": "gay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homosexual", + "example_sentence_english": "The parade celebrated gay pride.", + "pos": "adjective", + "word_frequency": 1087 + }, + { + "word": "glad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happy, pleased", + "example_sentence_english": "I'm glad to hear that.", + "pos": "adjective", + "word_frequency": 1089 + }, + { + "word": "machine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "device, apparatus", + "example_sentence_english": "The washing machine broke down.", + "pos": "noun", + "word_frequency": 1090 + }, + { + "word": "notice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announcement, warning", + "example_sentence_english": "There was a notice on the board.", + "pos": "noun", + "word_frequency": 1091 + }, + { + "word": "overall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "general, total", + "example_sentence_english": "The overall cost was higher than expected.", + "pos": "adjective", + "word_frequency": 1092 + }, + { + "word": "professor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university teacher", + "example_sentence_english": "Professor Smith teaches history.", + "pos": "noun", + "word_frequency": 1093 + }, + { + "word": "sit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "take a seat", + "example_sentence_english": "Please sit down.", + "pos": "verb", + "word_frequency": 1094 + }, + { + "word": "trip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journey, excursion", + "example_sentence_english": "We went on a short trip to the mountains.", + "pos": "noun", + "word_frequency": 1095 + }, + { + "word": "associate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connect, link", + "example_sentence_english": "I associate that song with my childhood.", + "pos": "verb", + "word_frequency": 1096 + }, + { + "word": "basic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fundamental, essential", + "example_sentence_english": "He has a basic understanding of the subject.", + "pos": "adjective", + "word_frequency": 1097 + }, + { + "word": "captain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leader of a ship or team", + "example_sentence_english": "The captain steered the ship through the storm.", + "pos": "noun", + "word_frequency": 1098 + }, + { + "word": "carry", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "transport, hold", + "example_sentence_english": "Can you help me carry these bags?", + "pos": "verb", + "word_frequency": 1099 + }, + { + "word": "crime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illegal act", + "example_sentence_english": "The police are investigating the crime.", + "pos": "noun", + "word_frequency": 1100 + }, + { + "word": "effective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successful in producing a desired result", + "example_sentence_english": "The new strategy was very effective.", + "pos": "adjective", + "word_frequency": 1101 + }, + { + "word": "explain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "make clear", + "example_sentence_english": "Can you explain this to me.", + "pos": "verb", + "word_frequency": 1102 + }, + { + "word": "fully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely, entirely", + "example_sentence_english": "I fully understand your point.", + "pos": "adverb", + "word_frequency": 1103 + }, + { + "word": "highly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very, to a great degree", + "example_sentence_english": "He is a highly respected scientist.", + "pos": "adverb", + "word_frequency": 1104 + }, + { + "word": "male", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "masculine, relating to men", + "example_sentence_english": "The survey asked for the respondent's male or female status.", + "pos": "adjective", + "word_frequency": 1106 + }, + { + "word": "plant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "living organism (e.g., tree, flower)", + "example_sentence_english": "She watered the plant every day.", + "pos": "noun", + "word_frequency": 1108 + }, + { + "word": "reality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of things as they actually exist", + "example_sentence_english": "We need to face the reality of the situation.", + "pos": "noun", + "word_frequency": 1109 + }, + { + "word": "spot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "place, mark", + "example_sentence_english": "I found a good spot for a picnic.", + "pos": "noun", + "word_frequency": 1111 + }, + { + "word": "winter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coldest season of the year", + "example_sentence_english": "Winter is my favorite season.", + "pos": "noun", + "word_frequency": 1114 + }, + { + "word": "advice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guidance, recommendation", + "example_sentence_english": "Can you give me some advice?", + "pos": "noun", + "word_frequency": 1115 + }, + { + "word": "agreement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mutual understanding or contract", + "example_sentence_english": "We reached an agreement on the terms.", + "pos": "noun", + "word_frequency": 1116 + }, + { + "word": "award", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prize, honor", + "example_sentence_english": "She won an award for her research.", + "pos": "noun", + "word_frequency": 1118 + }, + { + "word": "block", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "solid piece, city street section", + "example_sentence_english": "The building is one block away.", + "pos": "noun", + "word_frequency": 1119 + }, + { + "word": "challenge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a difficult task or problem", + "example_sentence_english": "Learning a new language can be a real challenge.", + "pos": "noun", + "word_frequency": 1120 + }, + { + "word": "christian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Christianity or its adherents", + "example_sentence_english": "Many Christian holidays are celebrated in December.", + "pos": "adjective", + "word_frequency": 1121 + }, + { + "word": "comment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a remark expressing an opinion or reaction", + "example_sentence_english": "She made a positive comment about his work.", + "pos": "noun", + "word_frequency": 1122 + }, + { + "word": "equipment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the necessary items for a particular purpose", + "example_sentence_english": "We need to buy new equipment for the gym.", + "pos": "noun", + "word_frequency": 1123 + }, + { + "word": "eventually", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the end, especially after a long delay", + "example_sentence_english": "Eventually, he found the keys he was looking for.", + "pos": "adverb", + "word_frequency": 1124 + }, + { + "word": "holy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedicated or consecrated to God or a religious purpose", + "example_sentence_english": "The church is considered a holy place by many.", + "pos": "adjective", + "word_frequency": 1125 + }, + { + "word": "nation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large body of people united by common descent, history, culture, or language, inhabiting a particular country or territory", + "example_sentence_english": "The nation celebrated its independence day.", + "pos": "noun", + "word_frequency": 1126 + }, + { + "word": "otherwise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in circumstances different from those present or implied", + "example_sentence_english": "You should study hard; otherwise, you might fail the exam.", + "pos": "adverb", + "word_frequency": 1127 + }, + { + "word": "primary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of chief importance; principal", + "example_sentence_english": "Her primary goal is to finish her degree.", + "pos": "adjective", + "word_frequency": 1129 + }, + { + "word": "purpose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the reason for which something is done or created or for which something exists", + "example_sentence_english": "What is the purpose of this meeting?", + "pos": "noun", + "word_frequency": 1130 + }, + { + "word": "responsible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having an obligation to do something, or having control over or care for someone or something", + "example_sentence_english": "You are responsible for your own actions.", + "pos": "adjective", + "word_frequency": 1131 + }, + { + "word": "shop", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a building or part of a building where goods or services are sold", + "example_sentence_english": "I need to go to the shop to buy some milk.", + "pos": "noun", + "word_frequency": 1132 + }, + { + "word": "sick", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feeling unwell; ill", + "example_sentence_english": "She felt sick after eating too much candy.", + "pos": "adjective", + "word_frequency": 1133 + }, + { + "word": "teacher", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a person who teaches, especially in a school", + "example_sentence_english": "My favorite teacher taught us about history.", + "pos": "noun", + "word_frequency": 1134 + }, + { + "word": "theory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of ideas intended to explain something", + "example_sentence_english": "He developed a new theory about the origin of the universe.", + "pos": "noun", + "word_frequency": 1135 + }, + { + "word": "agency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a business or organization providing a particular service", + "example_sentence_english": "She works for a travel agency.", + "pos": "noun", + "word_frequency": 1137 + }, + { + "word": "avoid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keep away from or stop oneself from doing (something)", + "example_sentence_english": "Try to avoid making the same mistake twice.", + "pos": "verb", + "word_frequency": 1138 + }, + { + "word": "camera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a device for recording visual images", + "example_sentence_english": "He took a picture with his new camera.", + "pos": "noun", + "word_frequency": 1139 + }, + { + "word": "cell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the smallest structural and functional unit of an organism", + "example_sentence_english": "All living things are made up of cells.", + "pos": "noun", + "word_frequency": 1140 + }, + { + "word": "coast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the part of the land adjoining or near the sea", + "example_sentence_english": "We spent our vacation on the coast.", + "pos": "noun", + "word_frequency": 1141 + }, + { + "word": "drug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a medicine or other substance which has a physiological effect when ingested or otherwise introduced into the body", + "example_sentence_english": "The doctor prescribed a drug for her headache.", + "pos": "noun", + "word_frequency": 1142 + }, + { + "word": "economy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of a country or region in terms of the production and consumption of goods and services and the supply of money", + "example_sentence_english": "The global economy is facing many challenges.", + "pos": "noun", + "word_frequency": 1143 + }, + { + "word": "environment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the surroundings or conditions in which a person, animal, or plant lives or operates", + "example_sentence_english": "We should protect our natural environment.", + "pos": "noun", + "word_frequency": 1144 + }, + { + "word": "executive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person with senior managerial responsibility in a business organization", + "example_sentence_english": "She is a senior executive at the company.", + "pos": "noun", + "word_frequency": 1145 + }, + { + "word": "hall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a corridor in a building", + "example_sentence_english": "The students waited in the hall before class.", + "pos": "noun", + "word_frequency": 1146 + }, + { + "word": "mass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large number of people or things", + "example_sentence_english": "A mass of people gathered in the square.", + "pos": "noun", + "word_frequency": 1147 + }, + { + "word": "meaning", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "what is meant by a word, text, concept, or action", + "example_sentence_english": "What is the meaning of this word?", + "pos": "noun", + "word_frequency": 1148 + }, + { + "word": "mission", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an important assignment carried out for political, religious, or commercial purposes, typically by a group of people", + "example_sentence_english": "Their mission was to explore the new planet.", + "pos": "noun", + "word_frequency": 1149 + }, + { + "word": "nine", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number equivalent to the sum of eight and one", + "example_sentence_english": "There are nine apples in the basket.", + "pos": "numeral", + "word_frequency": 1150 + }, + { + "word": "politics", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activities associated with the governance of a country or area", + "example_sentence_english": "He is very interested in politics and current events.", + "pos": "noun", + "word_frequency": 1151 + }, + { + "word": "pop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of popular music", + "example_sentence_english": "She loves listening to pop music.", + "pos": "noun", + "word_frequency": 1152 + }, + { + "word": "produce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "make or manufacture from components or raw materials", + "example_sentence_english": "This factory produces cars.", + "pos": "verb", + "word_frequency": 1153 + }, + { + "word": "saturday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the day of the week before Sunday and after Friday", + "example_sentence_english": "We usually go shopping on Saturday.", + "pos": "noun", + "word_frequency": 1154 + }, + { + "word": "status", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the relative social, professional, or other standing of someone or something", + "example_sentence_english": "What is the current status of your project.", + "pos": "noun", + "word_frequency": 1155 + }, + { + "word": "therefore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for that reason; consequently", + "example_sentence_english": "He was tired; therefore, he went to bed early.", + "pos": "adverb", + "word_frequency": 1156 + }, + { + "word": "trial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal examination of evidence by a judge and jury, typically in a court of law, to decide guilt in a case of criminal or civil proceedings", + "example_sentence_english": "The suspect is currently awaiting trial.", + "pos": "noun", + "word_frequency": 1157 + }, + { + "word": "truly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a truthful way; genuinely", + "example_sentence_english": "I truly appreciate your help.", + "pos": "adverb", + "word_frequency": 1158 + }, + { + "word": "weather", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the state of the atmosphere at a particular place and time as regards heat, cloudiness, dryness, sunshine, wind, rain, etc.", + "example_sentence_english": "The weather is beautiful today.", + "pos": "noun", + "word_frequency": 1159 + }, + { + "word": "app", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application", + "example_sentence_english": "I downloaded a new app on my phone.", + "pos": "noun", + "word_frequency": 1160 + }, + { + "word": "application", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application", + "example_sentence_english": "You need to fill out an application for the job.", + "pos": "noun", + "word_frequency": 1161 + }, + { + "word": "coffee", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coffee", + "example_sentence_english": "Would you like a cup of coffee?", + "pos": "noun", + "word_frequency": 1162 + }, + { + "word": "complex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complicated, intricate", + "example_sentence_english": "The problem was too complex to solve quickly.", + "pos": "adjective", + "word_frequency": 1163 + }, + { + "word": "division", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separation, section", + "example_sentence_english": "The division of tasks made the project easier.", + "pos": "noun", + "word_frequency": 1164 + }, + { + "word": "evening", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "evening", + "example_sentence_english": "We usually eat dinner in the evening.", + "pos": "noun", + "word_frequency": 1165 + }, + { + "word": "flight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journey by air, act of flying", + "example_sentence_english": "Our flight was delayed due to bad weather.", + "pos": "noun", + "word_frequency": 1166 + }, + { + "word": "freedom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liberty", + "example_sentence_english": "Everyone deserves the right to freedom.", + "pos": "noun", + "word_frequency": 1167 + }, + { + "word": "heat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "warmth, high temperature", + "example_sentence_english": "The heat from the sun was intense.", + "pos": "noun", + "word_frequency": 1169 + }, + { + "word": "interview", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formal meeting", + "example_sentence_english": "She had a job interview this morning.", + "pos": "noun", + "word_frequency": 1170 + }, + { + "word": "library", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "library", + "example_sentence_english": "I borrowed a book from the library.", + "pos": "noun", + "word_frequency": 1171 + }, + { + "word": "locate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "find, discover the position of", + "example_sentence_english": "Can you help me locate my lost keys?", + "pos": "verb", + "word_frequency": 1172 + }, + { + "word": "location", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place, position", + "example_sentence_english": "What is the exact location of the meeting?", + "pos": "noun", + "word_frequency": 1173 + }, + { + "word": "murder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlawful killing", + "example_sentence_english": "The police are investigating the murder.", + "pos": "noun", + "word_frequency": 1174 + }, + { + "word": "queen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female monarch", + "example_sentence_english": "The queen waved to the crowd.", + "pos": "noun", + "word_frequency": 1176 + }, + { + "word": "accept", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receive, agree to", + "example_sentence_english": "I accept your apology.", + "pos": "verb", + "word_frequency": 1177 + }, + { + "word": "actual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "real, true", + "example_sentence_english": "The actual cost was higher than we expected.", + "pos": "adjective", + "word_frequency": 1178 + }, + { + "word": "appear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seem, become visible", + "example_sentence_english": "He didn't appear to be happy.", + "pos": "verb", + "word_frequency": 1179 + }, + { + "word": "attempt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effort, try", + "example_sentence_english": "This is my first attempt at baking a cake.", + "pos": "noun", + "word_frequency": 1180 + }, + { + "word": "channel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a band of frequencies, a passage for water, a means of communication", + "example_sentence_english": "What channel is the news on?", + "pos": "noun", + "word_frequency": 1181 + }, + { + "word": "distance", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "extent of space between two points", + "example_sentence_english": "The distance to the city center is about 5 miles.", + "pos": "noun", + "word_frequency": 1182 + }, + { + "word": "exchange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "act of giving and receiving", + "example_sentence_english": "We had a brief exchange of words.", + "pos": "noun", + "word_frequency": 1183 + }, + { + "word": "fat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "having a lot of flesh", + "example_sentence_english": "The cat was very fat.", + "pos": "adjective", + "word_frequency": 1184 + }, + { + "word": "glass", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hard, brittle substance; a drinking vessel", + "example_sentence_english": "Please pour me a glass of water.", + "pos": "noun", + "word_frequency": 1185 + }, + { + "word": "mobile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to move or be moved freely", + "example_sentence_english": "She works from her mobile office.", + "pos": "adjective", + "word_frequency": 1186 + }, + { + "word": "northern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in or characteristic of the north", + "example_sentence_english": "We traveled to the northern part of the country.", + "pos": "adjective", + "word_frequency": 1187 + }, + { + "word": "powerful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having great power or strength", + "example_sentence_english": "The storm was very powerful.", + "pos": "adjective", + "word_frequency": 1188 + }, + { + "word": "prior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing or coming before in time, order, or importance", + "example_sentence_english": "You need to get prior approval for this.", + "pos": "adjective", + "word_frequency": 1189 + }, + { + "word": "protection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of protecting, or the state of being protected", + "example_sentence_english": "Wear a helmet for head protection.", + "pos": "noun", + "word_frequency": 1190 + }, + { + "word": "religious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or believing in a religion", + "example_sentence_english": "She has strong religious beliefs.", + "pos": "adjective", + "word_frequency": 1191 + }, + { + "word": "ride", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a journey on a horse, bicycle, or in a vehicle", + "example_sentence_english": "Do you want to go for a bike ride?", + "pos": "noun", + "word_frequency": 1192 + }, + { + "word": "royal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to a king or queen", + "example_sentence_english": "The royal family lives in the palace.", + "pos": "adjective", + "word_frequency": 1194 + }, + { + "word": "screen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flat surface on which images are displayed", + "example_sentence_english": "The movie was shown on a large screen.", + "pos": "noun", + "word_frequency": 1195 + }, + { + "word": "serve", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perform duties or services for; present food or drink", + "example_sentence_english": "He served in the army for ten years.", + "pos": "verb", + "word_frequency": 1196 + }, + { + "word": "slow", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moving or operating at a low speed", + "example_sentence_english": "The internet connection is very slow today.", + "pos": "adjective", + "word_frequency": 1197 + }, + { + "word": "species", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of living organisms consisting of similar individuals", + "example_sentence_english": "Pandas are an endangered species.", + "pos": "noun", + "word_frequency": 1198 + }, + { + "word": "speech", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the expression of thoughts and feelings in spoken words; a formal address", + "example_sentence_english": "The president gave a powerful speech.", + "pos": "noun", + "word_frequency": 1199 + }, + { + "word": "traffic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the movement of vehicles or people", + "example_sentence_english": "The traffic was very heavy this morning.", + "pos": "noun", + "word_frequency": 1200 + }, + { + "word": "tree", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a tall plant with a trunk and branches", + "example_sentence_english": "There is a big tree in the garden.", + "pos": "noun", + "word_frequency": 1201 + }, + { + "word": "wonderful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "extremely good or pleasing", + "example_sentence_english": "We had a wonderful time at the party.", + "pos": "adjective", + "word_frequency": 1203 + }, + { + "word": "airport", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a place where aircraft take off and land", + "example_sentence_english": "I need to go to the airport to catch my flight.", + "pos": "noun", + "word_frequency": 1204 + }, + { + "word": "animal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a living organism that feeds on organic matter", + "example_sentence_english": "My favorite animal is a dog.", + "pos": "noun", + "word_frequency": 1205 + }, + { + "word": "benefit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an advantage or profit", + "example_sentence_english": "There are many benefits to exercising regularly.", + "pos": "noun", + "word_frequency": 1206 + }, + { + "word": "bottom", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the lowest part of something", + "example_sentence_english": "The book fell to the bottom of the stairs.", + "pos": "noun", + "word_frequency": 1207 + }, + { + "word": "demand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong request or need", + "example_sentence_english": "There is a high demand for new smartphones.", + "pos": "noun", + "word_frequency": 1208 + }, + { + "word": "engine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine with moving parts that converts power into motion", + "example_sentence_english": "The car's engine started making a strange noise.", + "pos": "noun", + "word_frequency": 1209 + }, + { + "word": "famous", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "known by many people", + "example_sentence_english": "He is a famous actor.", + "pos": "adjective", + "word_frequency": 1211 + }, + { + "word": "investment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of investing money for profit", + "example_sentence_english": "Buying a house is a big investment.", + "pos": "noun", + "word_frequency": 1212 + }, + { + "word": "lie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be in a horizontal position; to say something untrue", + "example_sentence_english": "He likes to lie on the sofa and read.", + "pos": "verb", + "word_frequency": 1213 + }, + { + "word": "partner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who takes part in an undertaking with another or others", + "example_sentence_english": "She is my business partner.", + "pos": "noun", + "word_frequency": 1214 + }, + { + "word": "raise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lift or move to a higher position", + "example_sentence_english": "Please raise your hand if you have a question.", + "pos": "verb", + "word_frequency": 1215 + }, + { + "word": "sad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feeling or showing sorrow; unhappy", + "example_sentence_english": "She felt sad when her pet left.", + "pos": "adjective", + "word_frequency": 1216 + }, + { + "word": "solution", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a means of solving a problem or dealing with a difficult situation", + "example_sentence_english": "We need to find a solution to this problem.", + "pos": "noun", + "word_frequency": 1217 + }, + { + "word": "southern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated in or facing the south", + "example_sentence_english": "They live in the southern part of the country.", + "pos": "adjective", + "word_frequency": 1218 + }, + { + "word": "square", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having four equal straight sides and four right angles", + "example_sentence_english": "The table has a square top.", + "pos": "adjective", + "word_frequency": 1219 + }, + { + "word": "structure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the arrangement of and relations between the parts or elements of something complex", + "example_sentence_english": "The building has a very strong structure.", + "pos": "noun", + "word_frequency": 1220 + }, + { + "word": "traditional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing in or as part of a tradition; long-established", + "example_sentence_english": "They celebrated with a traditional dance.", + "pos": "adjective", + "word_frequency": 1222 + }, + { + "word": "twice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "two times", + "example_sentence_english": "I have visited that city twice.", + "pos": "adverb", + "word_frequency": 1223 + }, + { + "word": "wind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the perceptible natural movement of the air", + "example_sentence_english": "The wind was blowing strongly.", + "pos": "noun", + "word_frequency": 1224 + }, + { + "word": "worry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to feel or cause to feel anxious or troubled", + "example_sentence_english": "Don't worry about the exam.", + "pos": "verb", + "word_frequency": 1225 + }, + { + "word": "brand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of product manufactured by a particular company under a particular name", + "example_sentence_english": "What brand of shoes do you prefer?", + "pos": "noun", + "word_frequency": 1227 + }, + { + "word": "bus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large motor vehicle carrying passengers by road", + "example_sentence_english": "I take the bus to work every day.", + "pos": "noun", + "word_frequency": 1228 + }, + { + "word": "cent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a monetary unit equal to one hundredth of a dollar, euro, or other decimal currency unit", + "example_sentence_english": "I only have a few cents left.", + "pos": "noun", + "word_frequency": 1229 + }, + { + "word": "count", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to determine the total number of a collection of items", + "example_sentence_english": "Can you count to ten.", + "pos": "verb", + "word_frequency": 1231 + }, + { + "word": "critical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressing adverse or disapproving comments or judgments; involving the objective analysis and evaluation of an issue", + "example_sentence_english": "It is critical that we finish this project on time.", + "pos": "adjective", + "word_frequency": 1232 + }, + { + "word": "digital", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or using computer technology", + "example_sentence_english": "We live in a digital age.", + "pos": "adjective", + "word_frequency": 1233 + }, + { + "word": "fresh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not previously known or used; newly made or acquired", + "example_sentence_english": "I love the smell of fresh bread.", + "pos": "adjective", + "word_frequency": 1235 + }, + { + "word": "lake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large body of water surrounded by land", + "example_sentence_english": "We went swimming in the lake.", + "pos": "noun", + "word_frequency": 1236 + }, + { + "word": "mental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the mind", + "example_sentence_english": "He is doing mental arithmetic.", + "pos": "adjective", + "word_frequency": 1237 + }, + { + "word": "mention", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refer to something briefly and without going into detail", + "example_sentence_english": "Did he mention anything about the meeting?", + "pos": "verb", + "word_frequency": 1238 + }, + { + "word": "mostly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for the most part; mainly", + "example_sentence_english": "The weather was mostly sunny today.", + "pos": "adverb", + "word_frequency": 1239 + }, + { + "word": "mouth", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the opening in the lower part of the human face, surrounded by the lips, through which food is taken in and from which sounds and speech are emitted.", + "example_sentence_english": "Open your mouth wide.", + "pos": "noun", + "word_frequency": 1240 + }, + { + "word": "owner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who owns something.", + "example_sentence_english": "The dog ran to its owner.", + "pos": "noun", + "word_frequency": 1241 + }, + { + "word": "previously", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at a previous time; before now.", + "example_sentence_english": "She had previously worked as a teacher.", + "pos": "adverb", + "word_frequency": 1242 + }, + { + "word": "realize", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to become aware of something.", + "example_sentence_english": "I didn't realize how late it was.", + "pos": "verb", + "word_frequency": 1243 + }, + { + "word": "remain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue to be in the same state or condition.", + "example_sentence_english": "Please remain seated.", + "pos": "verb", + "word_frequency": 1244 + }, + { + "word": "scale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of levels or numbers used for measuring something.", + "example_sentence_english": "The earthquake measured 7.0 on the Richter scale.", + "pos": "noun", + "word_frequency": 1245 + }, + { + "word": "score", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the number of points, goals, etc. achieved in a game or competition.", + "example_sentence_english": "What's the final score?", + "pos": "noun", + "word_frequency": 1246 + }, + { + "word": "separate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forming a unit apart; not together.", + "example_sentence_english": "We have separate rooms.", + "pos": "adjective", + "word_frequency": 1247 + }, + { + "word": "smart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intelligent or clever.", + "example_sentence_english": "She's a very smart student.", + "pos": "adjective", + "word_frequency": 1248 + }, + { + "word": "surface", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the outside part or uppermost layer of something.", + "example_sentence_english": "The table has a smooth surface.", + "pos": "noun", + "word_frequency": 1249 + }, + { + "word": "throw", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to propel something through the air with a rapid movement of the arm and hand.", + "example_sentence_english": "Throw the ball to me.", + "pos": "verb", + "word_frequency": 1250 + }, + { + "word": "totally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely; absolutely.", + "example_sentence_english": "I totally agree with you.", + "pos": "adverb", + "word_frequency": 1252 + }, + { + "word": "wedding", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a marriage ceremony.", + "example_sentence_english": "They are planning their wedding.", + "pos": "noun", + "word_frequency": 1254 + }, + { + "word": "african", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to Africa or its people.", + "example_sentence_english": "She loves African music.", + "pos": "adjective", + "word_frequency": 1255 + }, + { + "word": "arm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "each of the two upper limbs of the human body from the shoulder to the hand.", + "example_sentence_english": "He broke his arm.", + "pos": "noun", + "word_frequency": 1256 + }, + { + "word": "budget", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an estimate of income and expenditure for a set period of time.", + "example_sentence_english": "We need to stick to our budget.", + "pos": "noun", + "word_frequency": 1257 + }, + { + "word": "click", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to press a button on a computer mouse or other device.", + "example_sentence_english": "Click here to open the link.", + "pos": "verb", + "word_frequency": 1258 + }, + { + "word": "estate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area or amount of land or property, in particular.", + "example_sentence_english": "The family owns a large country estate.", + "pos": "noun", + "word_frequency": 1259 + }, + { + "word": "fail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be unsuccessful in achieving one's goal.", + "example_sentence_english": "He failed the exam.", + "pos": "verb", + "word_frequency": 1260 + }, + { + "word": "faith", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete trust or confidence in someone or something.", + "example_sentence_english": "I have faith in your abilities.", + "pos": "noun", + "word_frequency": 1261 + }, + { + "word": "fashion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a popular or the latest style of clothing, hair, decoration, or behavior.", + "example_sentence_english": "She always dresses in the latest fashion.", + "pos": "noun", + "word_frequency": 1262 + }, + { + "word": "fund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sum of money saved or made available for a particular purpose.", + "example_sentence_english": "We need to raise funds for the new library.", + "pos": "noun", + "word_frequency": 1263 + }, + { + "word": "generation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "all of the people born and living at about the same time.", + "example_sentence_english": "This technology will benefit future generations.", + "pos": "noun", + "word_frequency": 1264 + }, + { + "word": "hearing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the faculty of perceiving sounds.", + "example_sentence_english": "Her hearing is excellent.", + "pos": "noun", + "word_frequency": 1265 + }, + { + "word": "hill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a naturally raised area of land, smaller than a mountain.", + "example_sentence_english": "We walked up the hill.", + "pos": "noun", + "word_frequency": 1266 + }, + { + "word": "metal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a solid material that is typically hard, shiny, malleable, fusible, and ductile, with good electrical and thermal conductivity.", + "example_sentence_english": "The bridge is made of metal.", + "pos": "noun", + "word_frequency": 1269 + }, + { + "word": "mid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated in the middle of a range, series, or group.", + "example_sentence_english": "We met in mid-August.", + "pos": "adjective", + "word_frequency": 1270 + }, + { + "word": "profile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an outline of something, especially a person's head, seen from one side. Also, a short description of someone or something.", + "example_sentence_english": "She updated her online profile.", + "pos": "noun", + "word_frequency": 1272 + }, + { + "word": "pull", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to exert force on (someone or something) so as to cause movement toward oneself or the thing exerting the force.", + "example_sentence_english": "Pull the door open.", + "pos": "verb", + "word_frequency": 1273 + }, + { + "word": "push", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to exert force on (someone or something) in order to move them away from oneself.", + "example_sentence_english": "Push the button to start.", + "pos": "verb", + "word_frequency": 1274 + }, + { + "word": "rose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a prickly bush or shrub that typically bears fragrant red, pink, yellow, or white flowers.", + "example_sentence_english": "She gave him a red rose.", + "pos": "noun", + "word_frequency": 1275 + }, + { + "word": "seat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a thing made or used for sitting on.", + "example_sentence_english": "Take a seat, please.", + "pos": "noun", + "word_frequency": 1276 + }, + { + "word": "sexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the instincts, physiological processes, and activities connected with physical attraction or reproduction.", + "example_sentence_english": "The film contains some sexual content.", + "pos": "adjective", + "word_frequency": 1277 + }, + { + "word": "target", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person, object, or place selected as the aim of an attack. Also, a goal or aim.", + "example_sentence_english": "Our sales target for this month is very high.", + "pos": "noun", + "word_frequency": 1278 + }, + { + "word": "understanding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the ability to understand something; comprehension.", + "example_sentence_english": "We need a better understanding of the problem.", + "pos": "noun", + "word_frequency": 1279 + }, + { + "word": "village", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small community", + "example_sentence_english": "The small village was surrounded by green fields.", + "pos": "noun", + "word_frequency": 1280 + }, + { + "word": "agent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who acts on behalf of another", + "example_sentence_english": "She works as a real estate agent.", + "pos": "noun", + "word_frequency": 1281 + }, + { + "word": "apply", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make a formal request; to put something on a surface", + "example_sentence_english": "You should apply for the job by Friday.", + "pos": "verb", + "word_frequency": 1282 + }, + { + "word": "authority", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the power or right to give orders", + "example_sentence_english": "The police have the authority to stop vehicles.", + "pos": "noun", + "word_frequency": 1283 + }, + { + "word": "basis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the underlying support or foundation", + "example_sentence_english": "We made our decision on the basis of the available facts.", + "pos": "noun", + "word_frequency": 1284 + }, + { + "word": "draw", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to make a picture with a pencil or pen", + "example_sentence_english": "Can you draw a picture of a house?", + "pos": "verb", + "word_frequency": 1286 + }, + { + "word": "employee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person employed for wages or salary", + "example_sentence_english": "Every employee receives a bonus at the end of the year.", + "pos": "noun", + "word_frequency": 1288 + }, + { + "word": "enter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to come or go into", + "example_sentence_english": "Please enter the room quietly.", + "pos": "verb", + "word_frequency": 1289 + }, + { + "word": "foundation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the lowest load-bearing part of a building; an underlying basis", + "example_sentence_english": "The foundation of the old house was very strong.", + "pos": "noun", + "word_frequency": 1291 + }, + { + "word": "gain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to obtain or acquire something", + "example_sentence_english": "He hopes to gain more experience in this role.", + "pos": "verb", + "word_frequency": 1292 + }, + { + "word": "memory", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the faculty by which the mind stores and remembers information", + "example_sentence_english": "I have a good memory for faces.", + "pos": "noun", + "word_frequency": 1295 + }, + { + "word": "prime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of first importance; main", + "example_sentence_english": "His prime concern is the safety of his family.", + "pos": "adjective", + "word_frequency": 1296 + }, + { + "word": "ring", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a circular band, typically of metal", + "example_sentence_english": "She wears a beautiful diamond ring on her finger.", + "pos": "noun", + "word_frequency": 1297 + }, + { + "word": "rise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move from a lower to a higher position", + "example_sentence_english": "The sun will rise at 6 AM tomorrow.", + "pos": "verb", + "word_frequency": 1298 + }, + { + "word": "silver", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a precious white metallic element", + "example_sentence_english": "She bought a necklace made of silver.", + "pos": "noun", + "word_frequency": 1299 + }, + { + "word": "soul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the spiritual or immaterial part of a human being", + "example_sentence_english": "Many believe the soul lives on after death.", + "pos": "noun", + "word_frequency": 1300 + }, + { + "word": "spread", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to extend over a large or increasing area", + "example_sentence_english": "The news spread quickly through the town.", + "pos": "verb", + "word_frequency": 1301 + }, + { + "word": "supply", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stock of a resource from which a person or place can be provided", + "example_sentence_english": "The supply of fresh water is limited.", + "pos": "noun", + "word_frequency": 1302 + }, + { + "word": "waste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to use or expend carelessly, extravagantly, or to no purpose", + "example_sentence_english": "Don't waste food; eat everything on your plate.", + "pos": "verb", + "word_frequency": 1303 + }, + { + "word": "weird", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suggesting something supernatural; strange or unusual", + "example_sentence_english": "That was a really weird dream I had last night.", + "pos": "adjective", + "word_frequency": 1304 + }, + { + "word": "adult", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a person who is fully grown or developed", + "example_sentence_english": "Children must be accompanied by an adult.", + "pos": "noun", + "word_frequency": 1305 + }, + { + "word": "apparently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as far as one knows or can see", + "example_sentence_english": "Apparently, it's going to rain tomorrow.", + "pos": "adverb", + "word_frequency": 1306 + }, + { + "word": "artist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who creates art", + "example_sentence_english": "Pablo Picasso was a famous artist.", + "pos": "noun", + "word_frequency": 1307 + }, + { + "word": "chairman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person chosen to preside over a meeting or committee", + "example_sentence_english": "The chairman opened the meeting with a brief speech.", + "pos": "noun", + "word_frequency": 1308 + }, + { + "word": "edition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a particular form or version of a published text", + "example_sentence_english": "This is the first edition of the novel.", + "pos": "noun", + "word_frequency": 1309 + }, + { + "word": "engineering", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the branch of science and technology concerned with the design, building, and use of engines, machines, and structures", + "example_sentence_english": "She is studying engineering at university.", + "pos": "noun", + "word_frequency": 1310 + }, + { + "word": "grade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a mark indicating the quality of a student's work", + "example_sentence_english": "He got a good grade on his math test.", + "pos": "noun", + "word_frequency": 1311 + }, + { + "word": "healthy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in good health", + "example_sentence_english": "Eating fruits and vegetables helps you stay healthy.", + "pos": "adjective", + "word_frequency": 1312 + }, + { + "word": "institute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organization for the promotion of a cause; a research body", + "example_sentence_english": "She works at a research institute.", + "pos": "noun", + "word_frequency": 1313 + }, + { + "word": "method", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a particular procedure for accomplishing or approaching something", + "example_sentence_english": "What method did you use to solve the problem?", + "pos": "noun", + "word_frequency": 1314 + }, + { + "word": "obviously", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that is easily perceived or understood; clearly", + "example_sentence_english": "Obviously, you need to study more for the exam.", + "pos": "adverb", + "word_frequency": 1317 + }, + { + "word": "option", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a choice; something that is or may be chosen", + "example_sentence_english": "We have several options for dinner tonight.", + "pos": "noun", + "word_frequency": 1318 + }, + { + "word": "prison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a building in which people are legally held as a punishment for a crime", + "example_sentence_english": "He spent five years in prison for the crime.", + "pos": "noun", + "word_frequency": 1319 + }, + { + "word": "senate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "senate", + "example_sentence_english": "The bill was passed by the Senate.", + "pos": "noun", + "word_frequency": 1320 + }, + { + "word": "stone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stone", + "example_sentence_english": "He threw a stone into the water.", + "pos": "noun", + "word_frequency": 1322 + }, + { + "word": "strength", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strength", + "example_sentence_english": "Physical strength is important for athletes.", + "pos": "noun", + "word_frequency": 1323 + }, + { + "word": "user", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "user", + "example_sentence_english": "The software is easy for new users.", + "pos": "noun", + "word_frequency": 1324 + }, + { + "word": "wild", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wild", + "example_sentence_english": "We saw many wild animals in the forest.", + "pos": "adjective", + "word_frequency": 1325 + }, + { + "word": "window", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "window", + "example_sentence_english": "Please close the window, it's cold.", + "pos": "noun", + "word_frequency": 1326 + }, + { + "word": "winner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "winner", + "example_sentence_english": "The winner of the race received a medal.", + "pos": "noun", + "word_frequency": 1327 + }, + { + "word": "arrive", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "arrive", + "example_sentence_english": "What time will you arrive?", + "pos": "verb", + "word_frequency": 1328 + }, + { + "word": "bag", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bag", + "example_sentence_english": "She carried a small bag.", + "pos": "noun", + "word_frequency": 1329 + }, + { + "word": "bet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bet", + "example_sentence_english": "I wouldn't bet on that horse.", + "pos": "verb", + "word_frequency": 1330 + }, + { + "word": "camp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camp", + "example_sentence_english": "We set up our camp near the river.", + "pos": "noun", + "word_frequency": 1331 + }, + { + "word": "cast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cast", + "example_sentence_english": "The tree cast a long shadow.", + "pos": "verb", + "word_frequency": 1332 + }, + { + "word": "correct", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "correct", + "example_sentence_english": "Your answer is correct.", + "pos": "adjective", + "word_frequency": 1334 + }, + { + "word": "dangerous", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dangerous", + "example_sentence_english": "It's dangerous to walk alone at night.", + "pos": "adjective", + "word_frequency": 1335 + }, + { + "word": "extremely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely", + "example_sentence_english": "The weather was extremely cold.", + "pos": "adverb", + "word_frequency": 1337 + }, + { + "word": "firm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firm", + "example_sentence_english": "The ground was firm after the rain.", + "pos": "adjective", + "word_frequency": 1338 + }, + { + "word": "handle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handle", + "example_sentence_english": "She can handle difficult situations well.", + "pos": "verb", + "word_frequency": 1339 + }, + { + "word": "improve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improve", + "example_sentence_english": "He wants to improve his English skills.", + "pos": "verb", + "word_frequency": 1340 + }, + { + "word": "indeed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indeed", + "example_sentence_english": "It was a very good performance indeed.", + "pos": "adverb", + "word_frequency": 1341 + }, + { + "word": "leaf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leaf", + "example_sentence_english": "A single leaf fell from the tree.", + "pos": "noun", + "word_frequency": 1342 + }, + { + "word": "negative", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "negative", + "example_sentence_english": "Try to avoid negative thoughts.", + "pos": "adjective", + "word_frequency": 1343 + }, + { + "word": "prevent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prevent", + "example_sentence_english": "We need to prevent further damage.", + "pos": "verb", + "word_frequency": 1344 + }, + { + "word": "remove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remove", + "example_sentence_english": "Please remove your shoes before entering.", + "pos": "verb", + "word_frequency": 1345 + }, + { + "word": "spirit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirit", + "example_sentence_english": "She has a strong and positive spirit.", + "pos": "noun", + "word_frequency": 1347 + }, + { + "word": "television", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "television", + "example_sentence_english": "We watched a movie on television.", + "pos": "noun", + "word_frequency": 1348 + }, + { + "word": "trouble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trouble", + "example_sentence_english": "He got into trouble for being late.", + "pos": "noun", + "word_frequency": 1350 + }, + { + "word": "advantage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantage", + "example_sentence_english": "Having a car is a great advantage.", + "pos": "noun", + "word_frequency": 1352 + }, + { + "word": "apart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apart", + "example_sentence_english": "The two houses are far apart.", + "pos": "adverb", + "word_frequency": 1353 + }, + { + "word": "aware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aware", + "example_sentence_english": "Are you aware of the risks?", + "pos": "adjective", + "word_frequency": 1354 + }, + { + "word": "cat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cat", + "example_sentence_english": "My cat loves to sleep.", + "pos": "noun", + "word_frequency": 1355 + }, + { + "word": "customer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "customer", + "example_sentence_english": "The customer bought a new phone.", + "pos": "noun", + "word_frequency": 1356 + }, + { + "word": "dinner", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dinner", + "example_sentence_english": "What's for dinner tonight?", + "pos": "noun", + "word_frequency": 1357 + }, + { + "word": "dollar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dollar", + "example_sentence_english": "This book costs ten dollars.", + "pos": "noun", + "word_frequency": 1358 + }, + { + "word": "eastern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eastern", + "example_sentence_english": "The sun rises in the eastern sky.", + "pos": "adjective", + "word_frequency": 1359 + }, + { + "word": "fifth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fifth", + "example_sentence_english": "This is the fifth time I've asked you.", + "pos": "numeral", + "word_frequency": 1360 + }, + { + "word": "function", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "function", + "example_sentence_english": "The main function of this button is to turn on the light.", + "pos": "noun", + "word_frequency": 1361 + }, + { + "word": "gift", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gift", + "example_sentence_english": "She received a beautiful gift for her birthday.", + "pos": "noun", + "word_frequency": 1362 + }, + { + "word": "impossible", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "impossible", + "example_sentence_english": "It's impossible to finish this work in one day.", + "pos": "adjective", + "word_frequency": 1364 + }, + { + "word": "influence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "influence", + "example_sentence_english": "His parents had a strong influence on his career choice.", + "pos": "noun", + "word_frequency": 1365 + }, + { + "word": "item", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "item", + "example_sentence_english": "Please check each item on the list.", + "pos": "noun", + "word_frequency": 1366 + }, + { + "word": "marketing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing", + "example_sentence_english": "The company needs a new marketing strategy.", + "pos": "noun", + "word_frequency": 1369 + }, + { + "word": "progress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progress", + "example_sentence_english": "We are making good progress on the project.", + "pos": "noun", + "word_frequency": 1372 + }, + { + "word": "proud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "proud", + "example_sentence_english": "She was very proud of her son's achievements.", + "pos": "adjective", + "word_frequency": 1373 + }, + { + "word": "shoot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoot", + "example_sentence_english": "Don't shoot the messenger.", + "pos": "verb", + "word_frequency": 1374 + }, + { + "word": "shut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shut", + "example_sentence_english": "Please shut the door quietly.", + "pos": "verb", + "word_frequency": 1375 + }, + { + "word": "van", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "van", + "example_sentence_english": "They loaded the furniture into the van.", + "pos": "noun", + "word_frequency": 1376 + }, + { + "word": "wood", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wood", + "example_sentence_english": "The table is made of wood.", + "pos": "noun", + "word_frequency": 1377 + }, + { + "word": "background", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "background", + "example_sentence_english": "He has a strong background in computer science.", + "pos": "noun", + "word_frequency": 1378 + }, + { + "word": "birth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "birth", + "example_sentence_english": "The birth of her child changed her life.", + "pos": "noun", + "word_frequency": 1379 + }, + { + "word": "bridge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bridge", + "example_sentence_english": "We walked across the old stone bridge.", + "pos": "noun", + "word_frequency": 1380 + }, + { + "word": "concept", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concept", + "example_sentence_english": "It's a difficult concept to grasp.", + "pos": "noun", + "word_frequency": 1382 + }, + { + "word": "copy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "copy", + "example_sentence_english": "Can I have a copy of that document?", + "pos": "noun", + "word_frequency": 1383 + }, + { + "word": "dear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dear", + "example_sentence_english": "My dear friend, how are you?", + "pos": "adjective", + "word_frequency": 1384 + }, + { + "word": "garden", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garden", + "example_sentence_english": "She spends a lot of time working in her garden.", + "pos": "noun", + "word_frequency": 1385 + }, + { + "word": "host", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "host", + "example_sentence_english": "Our host made us feel very welcome.", + "pos": "noun", + "word_frequency": 1386 + }, + { + "word": "housing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "housing", + "example_sentence_english": "There is a shortage of affordable housing in the city.", + "pos": "noun", + "word_frequency": 1387 + }, + { + "word": "journal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journal", + "example_sentence_english": "She writes in her journal every night.", + "pos": "noun", + "word_frequency": 1390 + }, + { + "word": "labor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labor", + "example_sentence_english": "The factory relies on manual labor.", + "pos": "noun", + "word_frequency": 1391 + }, + { + "word": "leadership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership", + "example_sentence_english": "Good leadership is essential for success.", + "pos": "noun", + "word_frequency": 1392 + }, + { + "word": "length", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "length", + "example_sentence_english": "What is the length of this rope?", + "pos": "noun", + "word_frequency": 1393 + }, + { + "word": "lucky", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lucky", + "example_sentence_english": "You are very lucky to have such good friends.", + "pos": "adjective", + "word_frequency": 1394 + }, + { + "word": "possibly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibly", + "example_sentence_english": "It's possibly the best movie I've ever seen.", + "pos": "adverb", + "word_frequency": 1397 + }, + { + "word": "prove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prove", + "example_sentence_english": "Can you prove that you were there?", + "pos": "verb", + "word_frequency": 1398 + }, + { + "word": "rare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rare", + "example_sentence_english": "It's rare to see such a beautiful bird.", + "pos": "adjective", + "word_frequency": 1399 + }, + { + "word": "setting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environment, context", + "example_sentence_english": "The story has a beautiful mountain setting.", + "pos": "noun", + "word_frequency": 1400 + }, + { + "word": "skill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ability", + "example_sentence_english": "Learning a new language requires a lot of skill.", + "pos": "noun", + "word_frequency": 1401 + }, + { + "word": "software", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computer programs", + "example_sentence_english": "You need to install new software on your computer.", + "pos": "noun", + "word_frequency": 1402 + }, + { + "word": "thousand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "1,000", + "example_sentence_english": "There are a thousand stars in the night sky.", + "pos": "noun", + "word_frequency": 1403 + }, + { + "word": "tough", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difficult, strong", + "example_sentence_english": "It was a tough decision to make.", + "pos": "adjective", + "word_frequency": 1404 + }, + { + "word": "ad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertisement", + "example_sentence_english": "I saw an interesting ad for a new car.", + "pos": "noun", + "word_frequency": 1405 + }, + { + "word": "alive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "living", + "example_sentence_english": "Is the plant still alive?", + "pos": "adjective", + "word_frequency": 1406 + }, + { + "word": "apple", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a common fruit", + "example_sentence_english": "She ate a red apple for a snack.", + "pos": "noun", + "word_frequency": 1407 + }, + { + "word": "balance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equilibrium, remaining amount", + "example_sentence_english": "He lost his balance and fell.", + "pos": "noun", + "word_frequency": 1408 + }, + { + "word": "birthday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "anniversary of birth", + "example_sentence_english": "Happy birthday! I hope you have a great day.", + "pos": "noun", + "word_frequency": 1409 + }, + { + "word": "boss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "manager, employer", + "example_sentence_english": "My boss gave me a new project.", + "pos": "noun", + "word_frequency": 1411 + }, + { + "word": "connection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "link, relationship", + "example_sentence_english": "There's a strong connection between diet and health.", + "pos": "noun", + "word_frequency": 1412 + }, + { + "word": "dress", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of clothing", + "example_sentence_english": "She wore a beautiful blue dress to the party.", + "pos": "noun", + "word_frequency": 1413 + }, + { + "word": "fellow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "man, person", + "example_sentence_english": "He's a good fellow to have around.", + "pos": "noun", + "word_frequency": 1414 + }, + { + "word": "horse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large animal", + "example_sentence_english": "The horse galloped across the field.", + "pos": "noun", + "word_frequency": 1416 + }, + { + "word": "magic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "supernatural power", + "example_sentence_english": "The magician performed a trick with real magic.", + "pos": "noun", + "word_frequency": 1417 + }, + { + "word": "manage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to control, to succeed in doing", + "example_sentence_english": "Can you manage to finish the report by Friday?", + "pos": "verb", + "word_frequency": 1418 + }, + { + "word": "map", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a drawing of an area", + "example_sentence_english": "We used a map to find our way.", + "pos": "noun", + "word_frequency": 1419 + }, + { + "word": "net", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a material made of threads; the internet", + "example_sentence_english": "The fisherman cast his net into the sea.", + "pos": "noun", + "word_frequency": 1420 + }, + { + "word": "request", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a polite demand or asking", + "example_sentence_english": "She made a request for more information.", + "pos": "noun", + "word_frequency": 1421 + }, + { + "word": "stick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attach, to pierce", + "example_sentence_english": "Please stick the poster on the wall.", + "pos": "verb", + "word_frequency": 1422 + }, + { + "word": "vehicle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine for transport", + "example_sentence_english": "A car is a type of vehicle.", + "pos": "noun", + "word_frequency": 1423 + }, + { + "word": "volume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amount of space; loudness", + "example_sentence_english": "Please turn down the volume on the TV.", + "pos": "noun", + "word_frequency": 1424 + }, + { + "word": "wake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop sleeping", + "example_sentence_english": "I usually wake up at 7 AM.", + "pos": "verb", + "word_frequency": 1425 + }, + { + "word": "aid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "help, assistance", + "example_sentence_english": "The country sent humanitarian aid to the disaster zone.", + "pos": "noun", + "word_frequency": 1426 + }, + { + "word": "beauty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quality of being beautiful", + "example_sentence_english": "The beauty of the sunset was breathtaking.", + "pos": "noun", + "word_frequency": 1427 + }, + { + "word": "billion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "1,000,000,000", + "example_sentence_english": "The world population is over seven billion people.", + "pos": "numeral", + "word_frequency": 1428 + }, + { + "word": "busy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "occupied, active", + "example_sentence_english": "I'm too busy to talk right now.", + "pos": "adjective", + "word_frequency": 1429 + }, + { + "word": "concern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to worry, to relate to", + "example_sentence_english": "His health concerns me greatly.", + "pos": "verb", + "word_frequency": 1430 + }, + { + "word": "conversation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a talk between two or more people", + "example_sentence_english": "We had a long conversation about our plans.", + "pos": "noun", + "word_frequency": 1431 + }, + { + "word": "corner", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where two lines or surfaces meet", + "example_sentence_english": "The book fell off the corner of the table.", + "pos": "noun", + "word_frequency": 1432 + }, + { + "word": "criminal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who commits a crime", + "example_sentence_english": "The police arrested the criminal.", + "pos": "noun", + "word_frequency": 1433 + }, + { + "word": "cultural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to culture", + "example_sentence_english": "We visited many cultural sites on our trip.", + "pos": "adjective", + "word_frequency": 1434 + }, + { + "word": "driver", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who drives", + "example_sentence_english": "The bus driver was very friendly.", + "pos": "noun", + "word_frequency": 1435 + }, + { + "word": "exist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be real, to live", + "example_sentence_english": "Do aliens really exist?", + "pos": "verb", + "word_frequency": 1436 + }, + { + "word": "farm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "land used for growing crops or raising animals", + "example_sentence_english": "My grandparents live on a farm.", + "pos": "noun", + "word_frequency": 1437 + }, + { + "word": "file", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a folder for documents; a computer document", + "example_sentence_english": "I saved the document as a PDF file.", + "pos": "noun", + "word_frequency": 1438 + }, + { + "word": "fix", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to repair, to make ready", + "example_sentence_english": "Can you fix my broken phone?", + "pos": "verb", + "word_frequency": 1439 + }, + { + "word": "fly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move through the air", + "example_sentence_english": "Birds can fly.", + "pos": "verb", + "word_frequency": 1440 + }, + { + "word": "frank", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of sausage, a hot dog", + "example_sentence_english": "He ate a frank at the baseball game.", + "pos": "noun", + "word_frequency": 1441 + }, + { + "word": "guide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who shows the way", + "example_sentence_english": "The tour guide led us through the museum.", + "pos": "noun", + "word_frequency": 1442 + }, + { + "word": "investigation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal inquiry or systematic examination", + "example_sentence_english": "The police launched an investigation into the crime.", + "pos": "noun", + "word_frequency": 1443 + }, + { + "word": "operate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to control the functioning of a machine, process, or system", + "example_sentence_english": "You need to learn how to operate this machine.", + "pos": "verb", + "word_frequency": 1445 + }, + { + "word": "responsibility", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or fact of having a duty to deal with something", + "example_sentence_english": "Taking care of a pet is a big responsibility.", + "pos": "noun", + "word_frequency": 1446 + }, + { + "word": "roll", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move by turning over and over", + "example_sentence_english": "The ball started to roll down the hill.", + "pos": "verb", + "word_frequency": 1447 + }, + { + "word": "slightly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to a small degree; a little", + "example_sentence_english": "She was slightly taller than her brother.", + "pos": "adverb", + "word_frequency": 1448 + }, + { + "word": "suggest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put forward for consideration", + "example_sentence_english": "I suggest we take a break now.", + "pos": "verb", + "word_frequency": 1449 + }, + { + "word": "surprise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an unexpected or astonishing event, fact, or thing", + "example_sentence_english": "Her sudden visit was a pleasant surprise.", + "pos": "noun", + "word_frequency": 1450 + }, + { + "word": "technical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a particular subject, art, or craft, or its techniques", + "example_sentence_english": "He has a lot of technical knowledge about computers.", + "pos": "adjective", + "word_frequency": 1451 + }, + { + "word": "thought", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an idea or opinion produced by thinking", + "example_sentence_english": "She shared her thoughts on the new project.", + "pos": "noun", + "word_frequency": 1452 + }, + { + "word": "treat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to behave towards or deal with in a certain way", + "example_sentence_english": "Please treat others with respect.", + "pos": "verb", + "word_frequency": 1453 + }, + { + "word": "unique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "being the only one of its kind; unlike anything else", + "example_sentence_english": "Each snowflake is unique.", + "pos": "adjective", + "word_frequency": 1454 + }, + { + "word": "variety", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality or state of being different or diverse", + "example_sentence_english": "The store offers a wide variety of products.", + "pos": "noun", + "word_frequency": 1455 + }, + { + "word": "violence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behavior involving physical force intended to hurt, damage, or kill someone or something", + "example_sentence_english": "The film contained scenes of extreme violence.", + "pos": "noun", + "word_frequency": 1456 + }, + { + "word": "weapon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing designed or used for inflicting bodily harm or physical damage", + "example_sentence_english": "The police found a weapon at the scene.", + "pos": "noun", + "word_frequency": 1457 + }, + { + "word": "youth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the period of being young", + "example_sentence_english": "He spent his youth living in the countryside.", + "pos": "noun", + "word_frequency": 1459 + }, + { + "word": "appreciate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize the full worth of", + "example_sentence_english": "I really appreciate your help.", + "pos": "verb", + "word_frequency": 1461 + }, + { + "word": "discover", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to find unexpectedly or during a search", + "example_sentence_english": "They hope to discover a cure for the disease.", + "pos": "verb", + "word_frequency": 1462 + }, + { + "word": "dry", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "free from moisture or liquid", + "example_sentence_english": "The clothes are dry now.", + "pos": "adjective", + "word_frequency": 1463 + }, + { + "word": "edge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the outside limit of an object, area, or surface", + "example_sentence_english": "Be careful not to fall off the edge of the cliff.", + "pos": "noun", + "word_frequency": 1464 + }, + { + "word": "evil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profoundly immoral and wicked", + "example_sentence_english": "He believed the villain was truly evil.", + "pos": "adjective", + "word_frequency": 1465 + }, + { + "word": "excite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cause strong feelings of enthusiasm and eagerness", + "example_sentence_english": "The news excited everyone.", + "pos": "verb", + "word_frequency": 1466 + }, + { + "word": "forever", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for all time; for always", + "example_sentence_english": "I will love you forever.", + "pos": "adverb", + "word_frequency": 1467 + }, + { + "word": "injury", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harm or damage", + "example_sentence_english": "He sustained a serious injury during the game.", + "pos": "noun", + "word_frequency": 1469 + }, + { + "word": "iron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strong, hard magnetic silvery-grey metal", + "example_sentence_english": "The bridge was made of iron.", + "pos": "noun", + "word_frequency": 1470 + }, + { + "word": "lovely", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exquisitely beautiful", + "example_sentence_english": "What a lovely day!", + "pos": "adjective", + "word_frequency": 1471 + }, + { + "word": "mad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "insane; very angry", + "example_sentence_english": "Don't get mad at me.", + "pos": "adjective", + "word_frequency": 1472 + }, + { + "word": "magazine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a periodical publication containing articles and illustrations", + "example_sentence_english": "I read an interesting article in a magazine.", + "pos": "noun", + "word_frequency": 1473 + }, + { + "word": "parliament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the highest legislature, consisting of the sovereign, the House of Lords, and the House of Commons", + "example_sentence_english": "The new law was debated in parliament.", + "pos": "noun", + "word_frequency": 1475 + }, + { + "word": "prepare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make (something) ready for use or consideration", + "example_sentence_english": "We need to prepare for the exam.", + "pos": "verb", + "word_frequency": 1476 + }, + { + "word": "reference", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of mentioning or alluding to something", + "example_sentence_english": "Please provide a reference for your claims.", + "pos": "noun", + "word_frequency": 1477 + }, + { + "word": "religion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the belief in and worship of a superhuman controlling power, especially a personal God or gods", + "example_sentence_english": "Freedom of religion is an important right.", + "pos": "noun", + "word_frequency": 1478 + }, + { + "word": "somewhere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in or to some place", + "example_sentence_english": "I left my keys somewhere in the house.", + "pos": "adverb", + "word_frequency": 1479 + }, + { + "word": "strategy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plan of action", + "example_sentence_english": "We need a clear strategy to win the game.", + "pos": "noun", + "word_frequency": 1480 + }, + { + "word": "web", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the internet; a network of threads", + "example_sentence_english": "I found the information on the web.", + "pos": "noun", + "word_frequency": 1481 + }, + { + "word": "wine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an alcoholic drink made from grapes", + "example_sentence_english": "Would you like a glass of red wine?", + "pos": "noun", + "word_frequency": 1482 + }, + { + "word": "audience", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the assembled spectators or listeners", + "example_sentence_english": "The audience applauded loudly after the show.", + "pos": "noun", + "word_frequency": 1484 + }, + { + "word": "bay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a broad inlet of the sea", + "example_sentence_english": "We sailed into a beautiful bay.", + "pos": "noun", + "word_frequency": 1485 + }, + { + "word": "blog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an online journal", + "example_sentence_english": "She writes a popular blog about travel.", + "pos": "noun", + "word_frequency": 1486 + }, + { + "word": "core", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the central or most important part", + "example_sentence_english": "The core of the problem is a lack of communication.", + "pos": "noun", + "word_frequency": 1487 + }, + { + "word": "democratic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to democracy", + "example_sentence_english": "The country has a democratic government.", + "pos": "adjective", + "word_frequency": 1488 + }, + { + "word": "description", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a spoken or written account", + "example_sentence_english": "Can you give me a description of the suspect?", + "pos": "noun", + "word_frequency": 1489 + }, + { + "word": "excellent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "extremely good", + "example_sentence_english": "That was an excellent meal.", + "pos": "adjective", + "word_frequency": 1490 + }, + { + "word": "guard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who protects", + "example_sentence_english": "The security guard stood by the door.", + "pos": "noun", + "word_frequency": 1491 + }, + { + "word": "honest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truthful and sincere", + "example_sentence_english": "He is an honest person.", + "pos": "adjective", + "word_frequency": 1492 + }, + { + "word": "medicine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the science of treating illness", + "example_sentence_english": "You should take your medicine.", + "pos": "noun", + "word_frequency": 1495 + }, + { + "word": "mountain", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large natural elevation of the earth's surface", + "example_sentence_english": "We climbed to the top of the mountain.", + "pos": "noun", + "word_frequency": 1496 + }, + { + "word": "nuclear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to atomic energy", + "example_sentence_english": "The country is developing nuclear power.", + "pos": "adjective", + "word_frequency": 1497 + }, + { + "word": "port", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a town or city with a harbor", + "example_sentence_english": "The ship arrived at the port.", + "pos": "noun", + "word_frequency": 1498 + }, + { + "word": "presence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being present", + "example_sentence_english": "Her presence made everyone feel calm.", + "pos": "noun", + "word_frequency": 1499 + }, + { + "word": "reaction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an action performed or a feeling experienced in response to a situation", + "example_sentence_english": "What was his reaction to the news?", + "pos": "noun", + "word_frequency": 1500 + }, + { + "word": "reduce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make smaller or less in amount", + "example_sentence_english": "We need to reduce our expenses.", + "pos": "verb", + "word_frequency": 1501 + }, + { + "word": "solid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm and stable in shape", + "example_sentence_english": "The ice is now solid.", + "pos": "adjective", + "word_frequency": 1502 + }, + { + "word": "stress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a state of mental or emotional strain", + "example_sentence_english": "He is under a lot of stress at work.", + "pos": "noun", + "word_frequency": 1504 + }, + { + "word": "taste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the sensation of flavor", + "example_sentence_english": "This soup has a delicious taste.", + "pos": "noun", + "word_frequency": 1505 + }, + { + "word": "tea", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a hot drink made from tea leaves", + "example_sentence_english": "Would you like a cup of tea?", + "pos": "noun", + "word_frequency": 1506 + }, + { + "word": "victory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of defeating an enemy or opponent", + "example_sentence_english": "The team celebrated their victory.", + "pos": "noun", + "word_frequency": 1507 + }, + { + "word": "afternoon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the period between noon and evening", + "example_sentence_english": "I will meet you in the afternoon.", + "pos": "noun", + "word_frequency": 1508 + }, + { + "word": "assistant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who helps", + "example_sentence_english": "My assistant will call you back.", + "pos": "noun", + "word_frequency": 1509 + }, + { + "word": "citizen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a legally recognized subject or national of a state", + "example_sentence_english": "Every citizen has the right to vote.", + "pos": "noun", + "word_frequency": 1511 + }, + { + "word": "classic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judged over a period of time to be of the highest quality", + "example_sentence_english": "This is a classic example of his work.", + "pos": "adjective", + "word_frequency": 1512 + }, + { + "word": "clothes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "items of dress", + "example_sentence_english": "I need to buy some new clothes.", + "pos": "noun", + "word_frequency": 1513 + }, + { + "word": "electric", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "powered by electricity", + "example_sentence_english": "We bought an electric car.", + "pos": "adjective", + "word_frequency": 1514 + }, + { + "word": "emergency", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a serious, unexpected, and dangerous situation", + "example_sentence_english": "Call 911 in case of an emergency.", + "pos": "noun", + "word_frequency": 1515 + }, + { + "word": "entirely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completely; wholly", + "example_sentence_english": "The situation is entirely different now.", + "pos": "adverb", + "word_frequency": 1516 + }, + { + "word": "failure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lack of success", + "example_sentence_english": "His first attempt was a complete failure.", + "pos": "noun", + "word_frequency": 1517 + }, + { + "word": "festival", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a day or period of celebration", + "example_sentence_english": "We went to a music festival last weekend.", + "pos": "noun", + "word_frequency": 1518 + }, + { + "word": "flat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a level surface", + "example_sentence_english": "The road was flat and easy to cycle on.", + "pos": "adjective", + "word_frequency": 1519 + }, + { + "word": "fuel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material burned to produce energy", + "example_sentence_english": "The car needs more fuel to reach its destination.", + "pos": "noun", + "word_frequency": 1520 + }, + { + "word": "hello", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a greeting", + "example_sentence_english": "She said hello to her friend.", + "pos": "interjection", + "word_frequency": 1522 + }, + { + "word": "ill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sick", + "example_sentence_english": "He felt ill after eating too much.", + "pos": "adjective", + "word_frequency": 1523 + }, + { + "word": "initial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "first", + "example_sentence_english": "The initial plan was to leave early.", + "pos": "adjective", + "word_frequency": 1524 + }, + { + "word": "introduce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to present someone or something", + "example_sentence_english": "Let me introduce you to my colleague.", + "pos": "verb", + "word_frequency": 1525 + }, + { + "word": "kick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to strike with the foot", + "example_sentence_english": "He tried to kick the ball into the net.", + "pos": "verb", + "word_frequency": 1527 + }, + { + "word": "mail", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "letters and packages", + "example_sentence_english": "I received a lot of mail today.", + "pos": "noun", + "word_frequency": 1528 + }, + { + "word": "massive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very large", + "example_sentence_english": "The building was massive and impressive.", + "pos": "adjective", + "word_frequency": 1529 + }, + { + "word": "pair", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "two of something", + "example_sentence_english": "I need a new pair of shoes.", + "pos": "noun", + "word_frequency": 1530 + }, + { + "word": "plane", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an aircraft", + "example_sentence_english": "We took a plane to travel across the country.", + "pos": "noun", + "word_frequency": 1531 + }, + { + "word": "plenty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sufficient or more than sufficient amount", + "example_sentence_english": "There's plenty of food for everyone.", + "pos": "noun", + "word_frequency": 1532 + }, + { + "word": "prince", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a male royal", + "example_sentence_english": "The prince will inherit the throne.", + "pos": "noun", + "word_frequency": 1533 + }, + { + "word": "proper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitable or correct", + "example_sentence_english": "Make sure you use the proper tools for the job.", + "pos": "adjective", + "word_frequency": 1534 + }, + { + "word": "quarter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one fourth", + "example_sentence_english": "I'll meet you in a quarter of an hour.", + "pos": "noun", + "word_frequency": 1535 + }, + { + "word": "regional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a region", + "example_sentence_english": "They discussed regional differences in dialect.", + "pos": "adjective", + "word_frequency": 1536 + }, + { + "word": "session", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of time for an activity", + "example_sentence_english": "The training session lasted for two hours.", + "pos": "noun", + "word_frequency": 1538 + }, + { + "word": "shape", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the external form or appearance", + "example_sentence_english": "The table is in the shape of a circle.", + "pos": "noun", + "word_frequency": 1539 + }, + { + "word": "sky", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the area above the earth", + "example_sentence_english": "The sky was clear and blue.", + "pos": "noun", + "word_frequency": 1540 + }, + { + "word": "teach", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to impart knowledge", + "example_sentence_english": "She wants to teach English abroad.", + "pos": "verb", + "word_frequency": 1541 + }, + { + "word": "transfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move from one place to another", + "example_sentence_english": "Please transfer the files to the new folder.", + "pos": "verb", + "word_frequency": 1543 + }, + { + "word": "upper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated above another", + "example_sentence_english": "He lives on the upper floor of the building.", + "pos": "adjective", + "word_frequency": 1544 + }, + { + "word": "useful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "able to be used for a practical purpose", + "example_sentence_english": "This tool is very useful for repairs.", + "pos": "adjective", + "word_frequency": 1545 + }, + { + "word": "valley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a low area between hills or mountains", + "example_sentence_english": "The river flows through the valley.", + "pos": "noun", + "word_frequency": 1546 + }, + { + "word": "willing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ready or prepared to do something", + "example_sentence_english": "She was willing to help with the project.", + "pos": "adjective", + "word_frequency": 1547 + }, + { + "word": "zone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area or region", + "example_sentence_english": "This is a no-parking zone.", + "pos": "noun", + "word_frequency": 1548 + }, + { + "word": "accident", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an unfortunate incident", + "example_sentence_english": "There was a car accident on the highway.", + "pos": "noun", + "word_frequency": 1549 + }, + { + "word": "advance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make progress", + "example_sentence_english": "The army began to advance towards the enemy.", + "pos": "verb", + "word_frequency": 1550 + }, + { + "word": "alternative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "available as another possibility", + "example_sentence_english": "We need to find an alternative solution.", + "pos": "adjective", + "word_frequency": 1551 + }, + { + "word": "anywhere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in, at, or to any place", + "example_sentence_english": "I can't find my keys anywhere.", + "pos": "adverb", + "word_frequency": 1552 + }, + { + "word": "boat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small vessel for traveling on water", + "example_sentence_english": "We went for a ride on the boat.", + "pos": "noun", + "word_frequency": 1553 + }, + { + "word": "capacity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the maximum amount that something can contain", + "example_sentence_english": "The hall has a seating capacity of 500 people.", + "pos": "noun", + "word_frequency": 1554 + }, + { + "word": "cheap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "low in price", + "example_sentence_english": "The clothes in this shop are very cheap.", + "pos": "adjective", + "word_frequency": 1555 + }, + { + "word": "climate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the weather conditions in an area", + "example_sentence_english": "The climate in this region is very mild.", + "pos": "noun", + "word_frequency": 1556 + }, + { + "word": "discussion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a conversation about a topic", + "example_sentence_english": "We had a long discussion about the new project.", + "pos": "noun", + "word_frequency": 1557 + }, + { + "word": "duty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a moral or legal obligation", + "example_sentence_english": "It is your duty to report any suspicious activity.", + "pos": "noun", + "word_frequency": 1558 + }, + { + "word": "fantastic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extraordinarily good or attractive", + "example_sentence_english": "We had a fantastic time at the party.", + "pos": "adjective", + "word_frequency": 1559 + }, + { + "word": "feeling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emotion, sensation", + "example_sentence_english": "I have a strange feeling about this.", + "pos": "noun", + "word_frequency": 1560 + }, + { + "word": "governor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elected head of a state", + "example_sentence_english": "The governor signed the new bill into law.", + "pos": "noun", + "word_frequency": 1561 + }, + { + "word": "hundred", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "100", + "example_sentence_english": "There are one hundred pages in this book.", + "pos": "numeral", + "word_frequency": 1562 + }, + { + "word": "industrial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to industry", + "example_sentence_english": "The city has a large industrial area.", + "pos": "adjective", + "word_frequency": 1563 + }, + { + "word": "joint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shared, common", + "example_sentence_english": "They made a joint decision to buy the house.", + "pos": "adjective", + "word_frequency": 1564 + }, + { + "word": "mix", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "combine", + "example_sentence_english": "Mix the ingredients well before baking.", + "pos": "verb", + "word_frequency": 1565 + }, + { + "word": "museum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place for exhibiting artifacts", + "example_sentence_english": "We visited the natural history museum yesterday.", + "pos": "noun", + "word_frequency": 1566 + }, + { + "word": "path", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "narrow way, route", + "example_sentence_english": "Follow the path through the forest.", + "pos": "noun", + "word_frequency": 1567 + }, + { + "word": "promise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a commitment", + "example_sentence_english": "He kept his promise to help me.", + "pos": "noun", + "word_frequency": 1568 + }, + { + "word": "propose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggest, offer", + "example_sentence_english": "I propose we take a short break.", + "pos": "verb", + "word_frequency": 1569 + }, + { + "word": "purchase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of buying", + "example_sentence_english": "My recent purchase was a new laptop.", + "pos": "noun", + "word_frequency": 1570 + }, + { + "word": "rain", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "precipitation", + "example_sentence_english": "The rain started falling heavily.", + "pos": "noun", + "word_frequency": 1571 + }, + { + "word": "steel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strong metal alloy", + "example_sentence_english": "The bridge is made of steel.", + "pos": "noun", + "word_frequency": 1572 + }, + { + "word": "terrible", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very bad", + "example_sentence_english": "The weather was terrible yesterday.", + "pos": "adjective", + "word_frequency": 1574 + }, + { + "word": "tire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "become weary", + "example_sentence_english": "Running a marathon will tire you out.", + "pos": "verb", + "word_frequency": 1575 + }, + { + "word": "vice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immoral behavior, bad habit", + "example_sentence_english": "Smoking is a common vice.", + "pos": "noun", + "word_frequency": 1576 + }, + { + "word": "warm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moderately hot", + "example_sentence_english": "The tea is still warm.", + "pos": "adjective", + "word_frequency": 1577 + }, + { + "word": "afraid", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scared", + "example_sentence_english": "I'm afraid of spiders.", + "pos": "adjective", + "word_frequency": 1579 + }, + { + "word": "beer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alcoholic beverage", + "example_sentence_english": "Would you like a glass of beer?", + "pos": "noun", + "word_frequency": 1580 + }, + { + "word": "border", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boundary", + "example_sentence_english": "We crossed the border into Canada.", + "pos": "noun", + "word_frequency": 1581 + }, + { + "word": "command", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an order", + "example_sentence_english": "The general gave a command to advance.", + "pos": "noun", + "word_frequency": 1583 + }, + { + "word": "crew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of people working together", + "example_sentence_english": "The airplane crew was very helpful.", + "pos": "noun", + "word_frequency": 1584 + }, + { + "word": "crowd", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large group of people", + "example_sentence_english": "A large crowd gathered in the square.", + "pos": "noun", + "word_frequency": 1585 + }, + { + "word": "element", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a component, a basic part", + "example_sentence_english": "Trust is a key element in any relationship.", + "pos": "noun", + "word_frequency": 1587 + }, + { + "word": "enemy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opponent, foe", + "example_sentence_english": "They were once enemies, but now they are friends.", + "pos": "noun", + "word_frequency": 1588 + }, + { + "word": "ensure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make certain", + "example_sentence_english": "Please ensure all doors are locked.", + "pos": "verb", + "word_frequency": 1589 + }, + { + "word": "environmental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the natural world", + "example_sentence_english": "We need to address environmental issues.", + "pos": "adjective", + "word_frequency": 1590 + }, + { + "word": "fill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "make full", + "example_sentence_english": "Please fill the bottle with water.", + "pos": "verb", + "word_frequency": 1591 + }, + { + "word": "forest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "large area of trees", + "example_sentence_english": "We went for a walk in the forest.", + "pos": "noun", + "word_frequency": 1592 + }, + { + "word": "intelligence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ability to acquire and apply knowledge", + "example_sentence_english": "She showed great intelligence in solving the problem.", + "pos": "noun", + "word_frequency": 1593 + }, + { + "word": "intend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plan, mean to do", + "example_sentence_english": "I intend to finish this project by Friday.", + "pos": "verb", + "word_frequency": 1594 + }, + { + "word": "labour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work, effort", + "example_sentence_english": "Manual labour is physically demanding.", + "pos": "noun", + "word_frequency": 1595 + }, + { + "word": "limit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boundary, a restriction", + "example_sentence_english": "There's a speed limit on this road.", + "pos": "noun", + "word_frequency": 1596 + }, + { + "word": "moon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Earth's natural satellite", + "example_sentence_english": "The moon was full and bright last night.", + "pos": "noun", + "word_frequency": 1597 + }, + { + "word": "ocean", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very large sea", + "example_sentence_english": "The Pacific Ocean is the largest ocean.", + "pos": "noun", + "word_frequency": 1598 + }, + { + "word": "profit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "financial gain", + "example_sentence_english": "The company made a significant profit this quarter.", + "pos": "noun", + "word_frequency": 1599 + }, + { + "word": "proof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evidence", + "example_sentence_english": "Can you show me proof of purchase?", + "pos": "noun", + "word_frequency": 1600 + }, + { + "word": "republican", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a republic", + "example_sentence_english": "The country has a republican form of government.", + "pos": "adjective", + "word_frequency": 1601 + }, + { + "word": "soldier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who serves in an army", + "example_sentence_english": "The soldier wore a green uniform.", + "pos": "noun", + "word_frequency": 1602 + }, + { + "word": "suit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a set of clothes", + "example_sentence_english": "He wore a dark suit to the meeting.", + "pos": "noun", + "word_frequency": 1603 + }, + { + "word": "appearance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way someone or something looks", + "example_sentence_english": "Her sudden appearance surprised everyone.", + "pos": "noun", + "word_frequency": 1604 + }, + { + "word": "asian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Asia", + "example_sentence_english": "She enjoys Asian cuisine.", + "pos": "adjective", + "word_frequency": 1605 + }, + { + "word": "attorney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lawyer", + "example_sentence_english": "The attorney presented the case to the judge.", + "pos": "noun", + "word_frequency": 1606 + }, + { + "word": "behavior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way someone acts", + "example_sentence_english": "His behavior in class was excellent.", + "pos": "noun", + "word_frequency": 1607 + }, + { + "word": "building", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a structure with walls and a roof", + "example_sentence_english": "That tall building is an office.", + "pos": "noun", + "word_frequency": 1609 + }, + { + "word": "chair", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a seat for one person", + "example_sentence_english": "Please sit on the chair.", + "pos": "noun", + "word_frequency": 1610 + }, + { + "word": "debt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money owed", + "example_sentence_english": "He is trying to pay off his debt.", + "pos": "noun", + "word_frequency": 1611 + }, + { + "word": "domestic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to home or country", + "example_sentence_english": "We need to address domestic issues first.", + "pos": "adjective", + "word_frequency": 1612 + }, + { + "word": "expensive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "costing a lot of money", + "example_sentence_english": "That car is very expensive.", + "pos": "adjective", + "word_frequency": 1613 + }, + { + "word": "historical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to history", + "example_sentence_english": "The city has many historical buildings.", + "pos": "adjective", + "word_frequency": 1614 + }, + { + "word": "honestly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an honest way", + "example_sentence_english": "Honestly, I don't know the answer.", + "pos": "adverb", + "word_frequency": 1615 + }, + { + "word": "honor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high respect", + "example_sentence_english": "It was an honor to meet him.", + "pos": "noun", + "word_frequency": 1616 + }, + { + "word": "jump", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to push oneself off the ground", + "example_sentence_english": "The cat likes to jump on the table.", + "pos": "verb", + "word_frequency": 1618 + }, + { + "word": "launch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to start or send off", + "example_sentence_english": "They plan to launch a new product next month.", + "pos": "verb", + "word_frequency": 1619 + }, + { + "word": "minimum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the smallest possible amount", + "example_sentence_english": "You need a minimum of three years' experience.", + "pos": "adjective", + "word_frequency": 1620 + }, + { + "word": "native", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belonging to a particular place by birth", + "example_sentence_english": "She is a native speaker of French.", + "pos": "adjective", + "word_frequency": 1621 + }, + { + "word": "originally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at first", + "example_sentence_english": "The house was originally built in 1900.", + "pos": "adverb", + "word_frequency": 1622 + }, + { + "word": "ray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a line of light or energy", + "example_sentence_english": "A ray of sunshine came through the clouds.", + "pos": "noun", + "word_frequency": 1624 + }, + { + "word": "suddenly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quickly and unexpectedly", + "example_sentence_english": "The car suddenly stopped.", + "pos": "adverb", + "word_frequency": 1625 + }, + { + "word": "supreme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "highest in rank or authority", + "example_sentence_english": "He has supreme authority in the company.", + "pos": "adjective", + "word_frequency": 1626 + }, + { + "word": "survey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a general view, examination, or description of something", + "example_sentence_english": "We conducted a survey to gather opinions.", + "pos": "noun", + "word_frequency": 1627 + }, + { + "word": "update", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of updating something", + "example_sentence_english": "Do you have any update on the project?", + "pos": "noun", + "word_frequency": 1629 + }, + { + "word": "writer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who writes books, articles, etc.", + "example_sentence_english": "My favorite writer published a new book.", + "pos": "noun", + "word_frequency": 1630 + }, + { + "word": "yellow", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a primary color", + "example_sentence_english": "The sun is yellow.", + "pos": "adjective", + "word_frequency": 1631 + }, + { + "word": "ancient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very old", + "example_sentence_english": "We visited an ancient castle.", + "pos": "adjective", + "word_frequency": 1632 + }, + { + "word": "combine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put together", + "example_sentence_english": "You can combine these ingredients.", + "pos": "verb", + "word_frequency": 1633 + }, + { + "word": "communication", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the imparting or exchanging of information", + "example_sentence_english": "Good communication is key to success.", + "pos": "noun", + "word_frequency": 1634 + }, + { + "word": "connect", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to join together", + "example_sentence_english": "Can you connect these two wires?", + "pos": "verb", + "word_frequency": 1635 + }, + { + "word": "contain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold or include", + "example_sentence_english": "The box contains old letters.", + "pos": "verb", + "word_frequency": 1636 + }, + { + "word": "download", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to copy data from one computer system to another", + "example_sentence_english": "I need to download the new software update.", + "pos": "verb", + "word_frequency": 1637 + }, + { + "word": "email", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electronic mail", + "example_sentence_english": "I sent him an email this morning.", + "pos": "noun", + "word_frequency": 1638 + }, + { + "word": "exercise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "physical activity", + "example_sentence_english": "Regular exercise is good for your health.", + "pos": "noun", + "word_frequency": 1639 + }, + { + "word": "express", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to show a feeling or opinion", + "example_sentence_english": "It's important to express your feelings.", + "pos": "verb", + "word_frequency": 1640 + }, + { + "word": "flow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move steadily and continuously", + "example_sentence_english": "The river flows into the sea.", + "pos": "verb", + "word_frequency": 1641 + }, + { + "word": "girlfriend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a female romantic partner", + "example_sentence_english": "He introduced me to his girlfriend.", + "pos": "noun", + "word_frequency": 1642 + }, + { + "word": "hero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person admired for courage or achievements", + "example_sentence_english": "The firefighter was a true hero.", + "pos": "noun", + "word_frequency": 1643 + }, + { + "word": "illegal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "against the law", + "example_sentence_english": "It is illegal to drive without a license.", + "pos": "adjective", + "word_frequency": 1644 + }, + { + "word": "joke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "something said or done to cause laughter", + "example_sentence_english": "He told a funny joke.", + "pos": "noun", + "word_frequency": 1645 + }, + { + "word": "loan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money lent to be repaid", + "example_sentence_english": "She took out a loan to buy a car.", + "pos": "noun", + "word_frequency": 1646 + }, + { + "word": "perform", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to carry out, accomplish, or entertain", + "example_sentence_english": "The band will perform tonight.", + "pos": "verb", + "word_frequency": 1647 + }, + { + "word": "planet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large celestial body orbiting a star", + "example_sentence_english": "Earth is a beautiful planet.", + "pos": "noun", + "word_frequency": 1648 + }, + { + "word": "restaurant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a place where meals are served", + "example_sentence_english": "Let's eat at the new restaurant.", + "pos": "noun", + "word_frequency": 1649 + }, + { + "word": "select", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to choose", + "example_sentence_english": "Please select your preferred option.", + "pos": "verb", + "word_frequency": 1651 + }, + { + "word": "soft", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "easy to mold, cut, or chew; not hard", + "example_sentence_english": "The pillow was very soft.", + "pos": "adjective", + "word_frequency": 1652 + }, + { + "word": "sugar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sweet crystalline substance", + "example_sentence_english": "Do you take sugar in your coffee?", + "pos": "noun", + "word_frequency": 1653 + }, + { + "word": "transport", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a system for carrying people or goods", + "example_sentence_english": "Public transport is very efficient here.", + "pos": "noun", + "word_frequency": 1654 + }, + { + "word": "affair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a matter or concern", + "example_sentence_english": "It's a private affair.", + "pos": "noun", + "word_frequency": 1655 + }, + { + "word": "appeal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a serious or urgent request", + "example_sentence_english": "The charity launched an appeal for donations.", + "pos": "noun", + "word_frequency": 1656 + }, + { + "word": "appropriate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable or proper", + "example_sentence_english": "Wear appropriate clothing for the interview.", + "pos": "adjective", + "word_frequency": 1657 + }, + { + "word": "confirm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to state or show that something is true", + "example_sentence_english": "Can you confirm your reservation?", + "pos": "verb", + "word_frequency": 1660 + }, + { + "word": "device", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool or piece of equipment", + "example_sentence_english": "This new device is very useful.", + "pos": "noun", + "word_frequency": 1661 + }, + { + "word": "drama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a play for theater, radio, or television; an exciting or emotional event", + "example_sentence_english": "I enjoy watching historical dramas.", + "pos": "noun", + "word_frequency": 1662 + }, + { + "word": "entry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of coming or going in", + "example_sentence_english": "The entry to the building is on the left.", + "pos": "noun", + "word_frequency": 1663 + }, + { + "word": "era", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long and distinct period of history", + "example_sentence_english": "We are living in a new digital era.", + "pos": "noun", + "word_frequency": 1664 + }, + { + "word": "factor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a circumstance, fact, or influence that contributes to a result", + "example_sentence_english": "Cost was a major factor in our decision.", + "pos": "noun", + "word_frequency": 1665 + }, + { + "word": "feed", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give food to", + "example_sentence_english": "Don't forget to feed the dog.", + "pos": "verb", + "word_frequency": 1666 + }, + { + "word": "golden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made of gold; bright yellow", + "example_sentence_english": "She wore a beautiful golden necklace.", + "pos": "adjective", + "word_frequency": 1667 + }, + { + "word": "grant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sum of money given for a specific purpose", + "example_sentence_english": "The university received a research grant.", + "pos": "noun", + "word_frequency": 1668 + }, + { + "word": "lawyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who practices law", + "example_sentence_english": "You should consult a lawyer.", + "pos": "noun", + "word_frequency": 1669 + }, + { + "word": "leg", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a limb used for walking or standing", + "example_sentence_english": "My leg hurts after running.", + "pos": "noun", + "word_frequency": 1670 + }, + { + "word": "measure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plan or course of action taken to achieve a particular purpose", + "example_sentence_english": "We need to take strong measures to reduce pollution.", + "pos": "noun", + "word_frequency": 1671 + }, + { + "word": "mistake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an error or wrong action", + "example_sentence_english": "I made a mistake on the test.", + "pos": "noun", + "word_frequency": 1672 + }, + { + "word": "muslim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the religion of Islam", + "example_sentence_english": "He is a Muslim scholar.", + "pos": "adjective", + "word_frequency": 1674 + }, + { + "word": "platform", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a raised level surface; a system on which applications run", + "example_sentence_english": "The train is arriving on platform 3.", + "pos": "noun", + "word_frequency": 1675 + }, + { + "word": "pool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small body of still water; a swimming pool", + "example_sentence_english": "Let's go for a swim in the pool.", + "pos": "noun", + "word_frequency": 1676 + }, + { + "word": "regard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider or think of in a specified way", + "example_sentence_english": "I regard him as a friend.", + "pos": "verb", + "word_frequency": 1677 + }, + { + "word": "relation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way in which two or more concepts, objects, or people are connected", + "example_sentence_english": "What is your relation to the victim?", + "pos": "noun", + "word_frequency": 1678 + }, + { + "word": "route", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a way or course taken in getting from one place to another", + "example_sentence_english": "What's the best route to the city center?", + "pos": "noun", + "word_frequency": 1679 + }, + { + "word": "schedule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plan of activities", + "example_sentence_english": "What's your schedule for tomorrow?", + "pos": "noun", + "word_frequency": 1680 + }, + { + "word": "scientific", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to science", + "example_sentence_english": "They conducted a scientific experiment.", + "pos": "adjective", + "word_frequency": 1681 + }, + { + "word": "shoe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "footwear", + "example_sentence_english": "I need a new pair of shoes.", + "pos": "noun", + "word_frequency": 1682 + }, + { + "word": "smoke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visible vapor from burning", + "example_sentence_english": "There was a lot of smoke from the fire.", + "pos": "noun", + "word_frequency": 1683 + }, + { + "word": "squad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small group of people", + "example_sentence_english": "The police squad arrived quickly.", + "pos": "noun", + "word_frequency": 1684 + }, + { + "word": "abuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruel or violent treatment", + "example_sentence_english": "The report detailed cases of child abuse.", + "pos": "noun", + "word_frequency": 1686 + }, + { + "word": "angry", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feeling or showing anger", + "example_sentence_english": "She was very angry about the delay.", + "pos": "adjective", + "word_frequency": 1687 + }, + { + "word": "candidate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person applying for a job or position", + "example_sentence_english": "He is a strong candidate for the job.", + "pos": "noun", + "word_frequency": 1688 + }, + { + "word": "comfortable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "providing physical ease", + "example_sentence_english": "The sofa is very comfortable.", + "pos": "adjective", + "word_frequency": 1689 + }, + { + "word": "discuss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talk about something", + "example_sentence_english": "Let's discuss this issue later.", + "pos": "verb", + "word_frequency": 1690 + }, + { + "word": "emotional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to emotions", + "example_sentence_english": "It was an emotional moment for everyone.", + "pos": "adjective", + "word_frequency": 1691 + }, + { + "word": "everywhere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in all places", + "example_sentence_english": "I looked everywhere for my keys.", + "pos": "adverb", + "word_frequency": 1693 + }, + { + "word": "facility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place or building", + "example_sentence_english": "The new sports facility is impressive.", + "pos": "noun", + "word_frequency": 1694 + }, + { + "word": "fox", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a wild animal", + "example_sentence_english": "A fox ran across the field.", + "pos": "noun", + "word_frequency": 1695 + }, + { + "word": "hole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an opening or gap", + "example_sentence_english": "There's a hole in my sock.", + "pos": "noun", + "word_frequency": 1696 + }, + { + "word": "holiday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a day of celebration or rest", + "example_sentence_english": "We're going on holiday next week.", + "pos": "noun", + "word_frequency": 1697 + }, + { + "word": "internal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inside", + "example_sentence_english": "The company conducted an internal investigation.", + "pos": "adjective", + "word_frequency": 1698 + }, + { + "word": "jersey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of knitted fabric or shirt", + "example_sentence_english": "He wore his favorite football jersey.", + "pos": "noun", + "word_frequency": 1702 + }, + { + "word": "laugh", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "make sounds of amusement", + "example_sentence_english": "She started to laugh at the joke.", + "pos": "verb", + "word_frequency": 1703 + }, + { + "word": "liberal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open to new ideas", + "example_sentence_english": "He has very liberal views on education.", + "pos": "adjective", + "word_frequency": 1704 + }, + { + "word": "lunch", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "midday meal", + "example_sentence_english": "What are you having for lunch?", + "pos": "noun", + "word_frequency": 1706 + }, + { + "word": "milk", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "white liquid from mammals", + "example_sentence_english": "Would you like some milk in your coffee?", + "pos": "noun", + "word_frequency": 1708 + }, + { + "word": "pack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a group of things or animals", + "example_sentence_english": "He bought a pack of cards.", + "pos": "noun", + "word_frequency": 1709 + }, + { + "word": "payment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money paid", + "example_sentence_english": "The payment is due next week.", + "pos": "noun", + "word_frequency": 1710 + }, + { + "word": "relatively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in comparison to something else", + "example_sentence_english": "The task was relatively easy.", + "pos": "adverb", + "word_frequency": 1711 + }, + { + "word": "sector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a part or division", + "example_sentence_english": "The technology sector is growing rapidly.", + "pos": "noun", + "word_frequency": 1712 + }, + { + "word": "snow", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "frozen precipitation", + "example_sentence_english": "It started to snow heavily.", + "pos": "noun", + "word_frequency": 1713 + }, + { + "word": "storm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a violent disturbance of the atmosphere", + "example_sentence_english": "A big storm is coming.", + "pos": "noun", + "word_frequency": 1714 + }, + { + "word": "strike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a refusal to work", + "example_sentence_english": "The workers went on strike for better pay.", + "pos": "noun", + "word_frequency": 1715 + }, + { + "word": "studio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room for artistic work or recording", + "example_sentence_english": "The artist works in a large studio.", + "pos": "noun", + "word_frequency": 1716 + }, + { + "word": "weak", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lacking strength", + "example_sentence_english": "He felt weak after the illness.", + "pos": "adjective", + "word_frequency": 1718 + }, + { + "word": "actor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actor", + "example_sentence_english": "The actor performed well in the play.", + "pos": "noun", + "word_frequency": 1721 + }, + { + "word": "apartment", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apartment", + "example_sentence_english": "They live in a small apartment in the city.", + "pos": "noun", + "word_frequency": 1722 + }, + { + "word": "chain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chain", + "example_sentence_english": "The dog was tied to a chain.", + "pos": "noun", + "word_frequency": 1724 + }, + { + "word": "chapter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chapter", + "example_sentence_english": "Read the first chapter of the book.", + "pos": "noun", + "word_frequency": 1725 + }, + { + "word": "commit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commit", + "example_sentence_english": "He decided to commit to the project.", + "pos": "verb", + "word_frequency": 1726 + }, + { + "word": "confidence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confidence", + "example_sentence_english": "She spoke with great confidence.", + "pos": "noun", + "word_frequency": 1727 + }, + { + "word": "cook", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cook", + "example_sentence_english": "I like to cook dinner every evening.", + "pos": "verb", + "word_frequency": 1728 + }, + { + "word": "cute", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cute", + "example_sentence_english": "The puppy is very cute.", + "pos": "adjective", + "word_frequency": 1729 + }, + { + "word": "equal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equal", + "example_sentence_english": "All people should be treated as equal.", + "pos": "adjective", + "word_frequency": 1730 + }, + { + "word": "fake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fake", + "example_sentence_english": "That's a fake designer bag.", + "pos": "adjective", + "word_frequency": 1731 + }, + { + "word": "finance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finance", + "example_sentence_english": "He works in the field of finance.", + "pos": "noun", + "word_frequency": 1732 + }, + { + "word": "identity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identity", + "example_sentence_english": "She is trying to find her true identity.", + "pos": "noun", + "word_frequency": 1733 + }, + { + "word": "journey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journey", + "example_sentence_english": "They embarked on a long journey across the desert.", + "pos": "noun", + "word_frequency": 1734 + }, + { + "word": "kitchen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kitchen", + "example_sentence_english": "The kitchen is the heart of the home.", + "pos": "noun", + "word_frequency": 1735 + }, + { + "word": "maintain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maintain", + "example_sentence_english": "It's important to maintain a healthy diet.", + "pos": "verb", + "word_frequency": 1737 + }, + { + "word": "numerous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "numerous", + "example_sentence_english": "There were numerous reasons for the delay.", + "pos": "adjective", + "word_frequency": 1739 + }, + { + "word": "quiet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiet", + "example_sentence_english": "Please be quiet in the library.", + "pos": "adjective", + "word_frequency": 1740 + }, + { + "word": "reveal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reveal", + "example_sentence_english": "The investigation will reveal the truth.", + "pos": "verb", + "word_frequency": 1741 + }, + { + "word": "specifically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifically", + "example_sentence_english": "He asked specifically for your help.", + "pos": "adverb", + "word_frequency": 1742 + }, + { + "word": "split", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "split", + "example_sentence_english": "They decided to split the bill.", + "pos": "verb", + "word_frequency": 1743 + }, + { + "word": "task", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "task", + "example_sentence_english": "Completing this task will take time.", + "pos": "noun", + "word_frequency": 1744 + }, + { + "word": "urban", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban", + "example_sentence_english": "Life in an urban area can be busy.", + "pos": "adjective", + "word_frequency": 1747 + }, + { + "word": "affect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affect", + "example_sentence_english": "The weather can affect your mood.", + "pos": "verb", + "word_frequency": 1748 + }, + { + "word": "aircraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aircraft", + "example_sentence_english": "The aircraft landed safely on the runway.", + "pos": "noun", + "word_frequency": 1749 + }, + { + "word": "approve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approve", + "example_sentence_english": "The committee needs to approve the new plan.", + "pos": "verb", + "word_frequency": 1750 + }, + { + "word": "approximately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximately", + "example_sentence_english": "The journey will take approximately two hours.", + "pos": "adverb", + "word_frequency": 1751 + }, + { + "word": "argument", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "argument", + "example_sentence_english": "They had a long argument about politics.", + "pos": "noun", + "word_frequency": 1752 + }, + { + "word": "arrest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrest", + "example_sentence_english": "The police decided to arrest the suspect.", + "pos": "verb", + "word_frequency": 1753 + }, + { + "word": "conflict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conflict", + "example_sentence_english": "There was a conflict of interest.", + "pos": "noun", + "word_frequency": 1754 + }, + { + "word": "corporate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporate", + "example_sentence_english": "He works in corporate law.", + "pos": "adjective", + "word_frequency": 1755 + }, + { + "word": "debate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debate", + "example_sentence_english": "The candidates held a public debate.", + "pos": "noun", + "word_frequency": 1756 + }, + { + "word": "determine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determine", + "example_sentence_english": "We need to determine the cause of the problem.", + "pos": "verb", + "word_frequency": 1757 + }, + { + "word": "distribution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution", + "example_sentence_english": "The company handles the distribution of goods.", + "pos": "noun", + "word_frequency": 1758 + }, + { + "word": "document", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "document", + "example_sentence_english": "Please sign this document.", + "pos": "noun", + "word_frequency": 1759 + }, + { + "word": "escape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of escaping", + "example_sentence_english": "The prisoner made a daring escape from the jail.", + "pos": "noun", + "word_frequency": 1760 + }, + { + "word": "extend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stretch out or prolong", + "example_sentence_english": "We decided to extend our stay for another week.", + "pos": "verb", + "word_frequency": 1761 + }, + { + "word": "fault", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mistake or defect", + "example_sentence_english": "It was my fault that we missed the train.", + "pos": "noun", + "word_frequency": 1762 + }, + { + "word": "flower", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the part of a plant that blossoms", + "example_sentence_english": "She picked a beautiful red flower from the garden.", + "pos": "noun", + "word_frequency": 1763 + }, + { + "word": "friendly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kind and pleasant", + "example_sentence_english": "The new neighbors are very friendly.", + "pos": "adjective", + "word_frequency": 1764 + }, + { + "word": "lay", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put something down gently", + "example_sentence_english": "Please lay the book on the table.", + "pos": "verb", + "word_frequency": 1765 + }, + { + "word": "phase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stage in a process", + "example_sentence_english": "The project is currently in its final phase.", + "pos": "noun", + "word_frequency": 1766 + }, + { + "word": "properly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correctly or appropriately", + "example_sentence_english": "Make sure you close the door properly.", + "pos": "adverb", + "word_frequency": 1767 + }, + { + "word": "pure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not mixed with anything else; clean", + "example_sentence_english": "We drank pure water from the mountain spring.", + "pos": "adjective", + "word_frequency": 1768 + }, + { + "word": "requirement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that is needed or demanded", + "example_sentence_english": "Meeting all the requirements is essential for graduation.", + "pos": "noun", + "word_frequency": 1769 + }, + { + "word": "resident", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who lives in a place", + "example_sentence_english": "She has been a resident of this city for twenty years.", + "pos": "noun", + "word_frequency": 1770 + }, + { + "word": "revenue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income, especially from a company's activities", + "example_sentence_english": "The company's revenue increased significantly last quarter.", + "pos": "noun", + "word_frequency": 1771 + }, + { + "word": "secure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safe or protected", + "example_sentence_english": "The building is very secure with multiple cameras.", + "pos": "adjective", + "word_frequency": 1773 + }, + { + "word": "smile", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a facial expression indicating pleasure", + "example_sentence_english": "Her warm smile made everyone feel welcome.", + "pos": "noun", + "word_frequency": 1774 + }, + { + "word": "strange", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unusual or surprising", + "example_sentence_english": "I heard a strange noise outside last night.", + "pos": "adjective", + "word_frequency": 1775 + }, + { + "word": "talent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a natural aptitude or skill", + "example_sentence_english": "She has a great talent for playing the piano.", + "pos": "noun", + "word_frequency": 1776 + }, + { + "word": "temperature", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the degree or intensity of heat present", + "example_sentence_english": "The temperature dropped suddenly this evening.", + "pos": "noun", + "word_frequency": 1777 + }, + { + "word": "troop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of soldiers or people", + "example_sentence_english": "The troops were deployed to the affected area.", + "pos": "noun", + "word_frequency": 1779 + }, + { + "word": "truck", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large road vehicle for carrying goods", + "example_sentence_english": "The delivery truck arrived early this morning.", + "pos": "noun", + "word_frequency": 1780 + }, + { + "word": "basically", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the most essential respects; fundamentally", + "example_sentence_english": "Basically, the plan is to save money.", + "pos": "adverb", + "word_frequency": 1782 + }, + { + "word": "bird", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a feathered animal that can fly", + "example_sentence_english": "A small bird landed on the window sill.", + "pos": "noun", + "word_frequency": 1784 + }, + { + "word": "blame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "responsibility for a fault or wrong", + "example_sentence_english": "Don't put all the blame on yourself.", + "pos": "noun", + "word_frequency": 1785 + }, + { + "word": "bowl", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a round, deep dish", + "example_sentence_english": "She filled the bowl with soup.", + "pos": "noun", + "word_frequency": 1787 + }, + { + "word": "chicken", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a common farm bird or its meat", + "example_sentence_english": "We had roasted chicken for dinner.", + "pos": "noun", + "word_frequency": 1788 + }, + { + "word": "collect", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to gather together", + "example_sentence_english": "He likes to collect stamps from different countries.", + "pos": "verb", + "word_frequency": 1789 + }, + { + "word": "context", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the circumstances that form the setting for an event, statement, or idea", + "example_sentence_english": "You need to understand the historical context of the speech.", + "pos": "noun", + "word_frequency": 1790 + }, + { + "word": "coverage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the extent to which something is covered", + "example_sentence_english": "The news coverage of the event was extensive.", + "pos": "noun", + "word_frequency": 1791 + }, + { + "word": "display", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of showing or exhibiting", + "example_sentence_english": "The museum has a new display of ancient artifacts.", + "pos": "noun", + "word_frequency": 1792 + }, + { + "word": "elect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to choose someone by voting", + "example_sentence_english": "Citizens will elect a new president next year.", + "pos": "verb", + "word_frequency": 1793 + }, + { + "word": "false", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not true or correct", + "example_sentence_english": "That statement is completely false.", + "pos": "adjective", + "word_frequency": 1794 + }, + { + "word": "identify", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize or establish the identity of", + "example_sentence_english": "Can you identify the person in this photograph?", + "pos": "verb", + "word_frequency": 1795 + }, + { + "word": "incredible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impossible to believe; amazing", + "example_sentence_english": "The view from the mountain top was incredible.", + "pos": "adjective", + "word_frequency": 1797 + }, + { + "word": "inspire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fill someone with the urge or ability to do something", + "example_sentence_english": "Her story will inspire many young people.", + "pos": "verb", + "word_frequency": 1798 + }, + { + "word": "ma", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother (informal)", + "example_sentence_english": "My ma always bakes the best cookies.", + "pos": "noun", + "word_frequency": 1799 + }, + { + "word": "meat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meat", + "example_sentence_english": "I don't eat meat.", + "pos": "noun", + "word_frequency": 1800 + }, + { + "word": "ministry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ministry", + "example_sentence_english": "The Ministry of Education announced new policies.", + "pos": "noun", + "word_frequency": 1801 + }, + { + "word": "mode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mode", + "example_sentence_english": "Please switch your phone to silent mode.", + "pos": "noun", + "word_frequency": 1802 + }, + { + "word": "neck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neck", + "example_sentence_english": "He wore a scarf around his neck.", + "pos": "noun", + "word_frequency": 1803 + }, + { + "word": "novel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novel", + "example_sentence_english": "She is reading a new novel.", + "pos": "noun", + "word_frequency": 1804 + }, + { + "word": "obvious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obvious", + "example_sentence_english": "It was obvious that he was lying.", + "pos": "adjective", + "word_frequency": 1805 + }, + { + "word": "shirt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shirt", + "example_sentence_english": "He put on a clean shirt.", + "pos": "noun", + "word_frequency": 1806 + }, + { + "word": "slowly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slowly", + "example_sentence_english": "The snail moved slowly across the leaf.", + "pos": "adverb", + "word_frequency": 1807 + }, + { + "word": "stadium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stadium", + "example_sentence_english": "Thousands of fans filled the stadium.", + "pos": "noun", + "word_frequency": 1808 + }, + { + "word": "surgery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgery", + "example_sentence_english": "She had to undergo emergency surgery.", + "pos": "noun", + "word_frequency": 1809 + }, + { + "word": "tuesday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Tuesday", + "example_sentence_english": "We have a meeting on Tuesday.", + "pos": "noun", + "word_frequency": 1810 + }, + { + "word": "vision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vision", + "example_sentence_english": "His vision for the company was ambitious.", + "pos": "noun", + "word_frequency": 1811 + }, + { + "word": "zero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zero", + "example_sentence_english": "The temperature dropped to zero degrees.", + "pos": "numeral", + "word_frequency": 1813 + }, + { + "word": "champion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champion", + "example_sentence_english": "She is the reigning world champion.", + "pos": "noun", + "word_frequency": 1815 + }, + { + "word": "cream", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream", + "example_sentence_english": "Would you like cream in your coffee?", + "pos": "noun", + "word_frequency": 1816 + }, + { + "word": "crisis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crisis", + "example_sentence_english": "The country is facing an economic crisis.", + "pos": "noun", + "word_frequency": 1817 + }, + { + "word": "deliver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deliver", + "example_sentence_english": "The postman will deliver the package tomorrow.", + "pos": "verb", + "word_frequency": 1819 + }, + { + "word": "editor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor", + "example_sentence_english": "She works as an editor for a publishing company.", + "pos": "noun", + "word_frequency": 1820 + }, + { + "word": "estimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estimate", + "example_sentence_english": "Can you estimate the cost of the repairs?", + "pos": "verb", + "word_frequency": 1821 + }, + { + "word": "giant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giant", + "example_sentence_english": "They saw a giant tree in the forest.", + "pos": "adjective", + "word_frequency": 1823 + }, + { + "word": "jail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jail", + "example_sentence_english": "He was sent to jail for his crime.", + "pos": "noun", + "word_frequency": 1825 + }, + { + "word": "kingdom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kingdom", + "example_sentence_english": "The United Kingdom is an island country.", + "pos": "noun", + "word_frequency": 1827 + }, + { + "word": "literature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literature", + "example_sentence_english": "She studies English literature at university.", + "pos": "noun", + "word_frequency": 1828 + }, + { + "word": "mayor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mayor", + "example_sentence_english": "The mayor gave a speech about the city's future.", + "pos": "noun", + "word_frequency": 1829 + }, + { + "word": "minor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor", + "example_sentence_english": "It was a minor issue, easily resolved.", + "pos": "adjective", + "word_frequency": 1830 + }, + { + "word": "opposite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "opposite", + "example_sentence_english": "The store is on the opposite side of the street.", + "pos": "adjective", + "word_frequency": 1831 + }, + { + "word": "orange", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "orange", + "example_sentence_english": "She wore an orange dress.", + "pos": "adjective", + "word_frequency": 1832 + }, + { + "word": "selection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selection", + "example_sentence_english": "There was a wide selection of books.", + "pos": "noun", + "word_frequency": 1834 + }, + { + "word": "signal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signal", + "example_sentence_english": "The train driver gave a signal to depart.", + "pos": "noun", + "word_frequency": 1835 + }, + { + "word": "stream", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stream", + "example_sentence_english": "A small stream flowed through the forest.", + "pos": "noun", + "word_frequency": 1836 + }, + { + "word": "struggle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "struggle", + "example_sentence_english": "It was a long struggle to achieve their goals.", + "pos": "noun", + "word_frequency": 1837 + }, + { + "word": "suicide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicide", + "example_sentence_english": "The documentary discussed the causes of suicide.", + "pos": "noun", + "word_frequency": 1838 + }, + { + "word": "theme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theme", + "example_sentence_english": "The main theme of the book is love.", + "pos": "noun", + "word_frequency": 1839 + }, + { + "word": "thursday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Thursday", + "example_sentence_english": "We have a meeting every Thursday morning.", + "pos": "noun", + "word_frequency": 1840 + }, + { + "word": "tiny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very small", + "example_sentence_english": "The baby's hands were so tiny.", + "pos": "adjective", + "word_frequency": 1841 + }, + { + "word": "typically", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usually; in a typical way", + "example_sentence_english": "She typically arrives at work around 9 AM.", + "pos": "adverb", + "word_frequency": 1842 + }, + { + "word": "unfortunately", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sadly; regrettably", + "example_sentence_english": "Unfortunately, we ran out of tickets.", + "pos": "adverb", + "word_frequency": 1844 + }, + { + "word": "usual", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normal; customary", + "example_sentence_english": "He took his usual route to work.", + "pos": "adjective", + "word_frequency": 1845 + }, + { + "word": "wave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a moving ridge of water; a gesture with the hand", + "example_sentence_english": "The children played in the waves at the beach.", + "pos": "noun", + "word_frequency": 1847 + }, + { + "word": "alcohol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a colorless volatile flammable liquid", + "example_sentence_english": "Please don't drink alcohol if you are driving.", + "pos": "noun", + "word_frequency": 1848 + }, + { + "word": "assembly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of people gathered together; the action of assembling", + "example_sentence_english": "The school held a special assembly for the new students.", + "pos": "noun", + "word_frequency": 1849 + }, + { + "word": "breakfast", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the first meal of the day", + "example_sentence_english": "What do you usually have for breakfast?", + "pos": "noun", + "word_frequency": 1850 + }, + { + "word": "bright", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "giving out or reflecting much light; intelligent", + "example_sentence_english": "The sun was very bright this morning.", + "pos": "adjective", + "word_frequency": 1851 + }, + { + "word": "capable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having the ability or quality necessary to do something", + "example_sentence_english": "She is a very capable student.", + "pos": "adjective", + "word_frequency": 1852 + }, + { + "word": "combination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mixture or blend", + "example_sentence_english": "The dish was a delicious combination of flavors.", + "pos": "noun", + "word_frequency": 1853 + }, + { + "word": "conservative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holding to traditional attitudes and values; cautious", + "example_sentence_english": "He has very conservative views on economic policy.", + "pos": "adjective", + "word_frequency": 1854 + }, + { + "word": "desire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong feeling of wanting something", + "example_sentence_english": "She expressed a strong desire to travel the world.", + "pos": "noun", + "word_frequency": 1855 + }, + { + "word": "destroy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put an end to the existence of something", + "example_sentence_english": "The fire destroyed the old building.", + "pos": "verb", + "word_frequency": 1856 + }, + { + "word": "draft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a preliminary version; a current of cool air", + "example_sentence_english": "This is the first draft of my essay.", + "pos": "noun", + "word_frequency": 1857 + }, + { + "word": "drunk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affected by alcohol to the extent of losing control of one's faculties or behavior", + "example_sentence_english": "He was too drunk to drive home safely.", + "pos": "adjective", + "word_frequency": 1858 + }, + { + "word": "essential", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolutely necessary or important", + "example_sentence_english": "Water is essential for life.", + "pos": "adjective", + "word_frequency": 1859 + }, + { + "word": "familiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well known or recognized", + "example_sentence_english": "Her face looked familiar, but I couldn't remember her name.", + "pos": "adjective", + "word_frequency": 1860 + }, + { + "word": "guilty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culpable of or responsible for a specified wrongdoing", + "example_sentence_english": "He felt guilty for breaking the vase.", + "pos": "adjective", + "word_frequency": 1861 + }, + { + "word": "id", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "identification document", + "example_sentence_english": "Can I see your ID, please?", + "pos": "noun", + "word_frequency": 1862 + }, + { + "word": "jewish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or characteristic of the Jews or Judaism", + "example_sentence_english": "They celebrate many Jewish holidays throughout the year.", + "pos": "adjective", + "word_frequency": 1863 + }, + { + "word": "largely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to a great extent; mostly", + "example_sentence_english": "The success of the project was largely due to her efforts.", + "pos": "adverb", + "word_frequency": 1864 + }, + { + "word": "perfectly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a perfect manner; completely", + "example_sentence_english": "The plan worked perfectly.", + "pos": "adverb", + "word_frequency": 1866 + }, + { + "word": "recommend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suggest or praise as suitable or good", + "example_sentence_english": "I highly recommend this book.", + "pos": "verb", + "word_frequency": 1867 + }, + { + "word": "refer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mention or allude to; to direct attention to", + "example_sentence_english": "Please refer to the manual for more details.", + "pos": "verb", + "word_frequency": 1868 + }, + { + "word": "relevant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closely connected or appropriate to what is being considered", + "example_sentence_english": "Your comments are not relevant to the discussion.", + "pos": "adjective", + "word_frequency": 1869 + }, + { + "word": "seek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try to find or obtain something", + "example_sentence_english": "They are seeking new opportunities abroad.", + "pos": "verb", + "word_frequency": 1870 + }, + { + "word": "solo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "done by one person alone; unaccompanied", + "example_sentence_english": "She decided to take a solo trip around the world.", + "pos": "adjective", + "word_frequency": 1871 + }, + { + "word": "ticket", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of paper or card that gives the holder a certain right", + "example_sentence_english": "Do you have your train ticket?", + "pos": "noun", + "word_frequency": 1872 + }, + { + "word": "unable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not having the ability to do something", + "example_sentence_english": "I was unable to attend the meeting.", + "pos": "adjective", + "word_frequency": 1873 + }, + { + "word": "upset", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unhappy, disappointed, or worried", + "example_sentence_english": "She was very upset about the news.", + "pos": "adjective", + "word_frequency": 1874 + }, + { + "word": "wing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a limb or appendage of a bird, bat, or insect, enabling flight", + "example_sentence_english": "The bird spread its wings and flew away.", + "pos": "noun", + "word_frequency": 1875 + }, + { + "word": "bomb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an explosive device", + "example_sentence_english": "The police found an unexploded bomb.", + "pos": "noun", + "word_frequency": 1876 + }, + { + "word": "creative", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or involving the use of the imagination or original ideas", + "example_sentence_english": "She is a very creative artist.", + "pos": "adjective", + "word_frequency": 1877 + }, + { + "word": "cycle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a series of events that are regularly repeated in the same order", + "example_sentence_english": "The water cycle is an important natural process.", + "pos": "noun", + "word_frequency": 1878 + }, + { + "word": "don", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a university teacher; a Mafia boss", + "example_sentence_english": "He was a respected don at Oxford University.", + "pos": "noun", + "word_frequency": 1879 + }, + { + "word": "educational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to education", + "example_sentence_english": "The program has great educational value.", + "pos": "adjective", + "word_frequency": 1880 + }, + { + "word": "entertainment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amusement or pleasure", + "example_sentence_english": "The show provided excellent entertainment for the whole family.", + "pos": "noun", + "word_frequency": 1881 + }, + { + "word": "extreme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very great or severe", + "example_sentence_english": "They went to extreme lengths to finish the project.", + "pos": "adjective", + "word_frequency": 1882 + }, + { + "word": "hang", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suspend or be suspended", + "example_sentence_english": "Please hang your coat on the hook.", + "pos": "verb", + "word_frequency": 1883 + }, + { + "word": "info", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "information", + "example_sentence_english": "Can you give me some info about the event.", + "pos": "noun", + "word_frequency": 1884 + }, + { + "word": "mainly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mostly; chiefly", + "example_sentence_english": "The audience was mainly composed of students.", + "pos": "adverb", + "word_frequency": 1885 + }, + { + "word": "maximum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the greatest possible amount or degree", + "example_sentence_english": "The maximum speed limit here is 60 miles per hour.", + "pos": "adjective", + "word_frequency": 1886 + }, + { + "word": "newspaper", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a daily or weekly publication", + "example_sentence_english": "I read the newspaper every morning.", + "pos": "noun", + "word_frequency": 1887 + }, + { + "word": "painting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a picture made with paint", + "example_sentence_english": "She bought a beautiful painting for her living room.", + "pos": "noun", + "word_frequency": 1888 + }, + { + "word": "republic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state in which supreme power is held by the people and their elected representatives", + "example_sentence_english": "France is a republic.", + "pos": "noun", + "word_frequency": 1889 + }, + { + "word": "reserve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a supply of something kept for future use", + "example_sentence_english": "The country has large oil reserves.", + "pos": "noun", + "word_frequency": 1890 + }, + { + "word": "row", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a line of people or things", + "example_sentence_english": "Please stand in a straight row.", + "pos": "noun", + "word_frequency": 1891 + }, + { + "word": "salt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a white crystalline substance used as a seasoning", + "example_sentence_english": "Please pass the salt.", + "pos": "noun", + "word_frequency": 1892 + }, + { + "word": "scare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to frighten", + "example_sentence_english": "Don't scare the cat.", + "pos": "verb", + "word_frequency": 1893 + }, + { + "word": "scottish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Scotland", + "example_sentence_english": "He has a Scottish accent.", + "pos": "adjective", + "word_frequency": 1894 + }, + { + "word": "statistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece of numerical data", + "example_sentence_english": "The latest statistics show a rise in unemployment.", + "pos": "noun", + "word_frequency": 1895 + }, + { + "word": "switch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device for making and breaking the connection in an electric circuit", + "example_sentence_english": "Flip the switch to turn on the light.", + "pos": "noun", + "word_frequency": 1896 + }, + { + "word": "territory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area of land under the jurisdiction of a ruler or state", + "example_sentence_english": "The dog is very protective of its territory.", + "pos": "noun", + "word_frequency": 1897 + }, + { + "word": "threat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a statement of an intention to inflict pain, injury, damage, or other hostile action", + "example_sentence_english": "He received a death threat.", + "pos": "noun", + "word_frequency": 1898 + }, + { + "word": "appoint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assign a job or role to (someone)", + "example_sentence_english": "They decided to appoint her as the new manager.", + "pos": "verb", + "word_frequency": 1900 + }, + { + "word": "assistance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of helping someone", + "example_sentence_english": "Thank you for your assistance.", + "pos": "noun", + "word_frequency": 1902 + }, + { + "word": "bell", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a hollow, cup-shaped metal object that rings when struck", + "example_sentence_english": "The school bell rang.", + "pos": "noun", + "word_frequency": 1903 + }, + { + "word": "blow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "(of wind) move creating an air current", + "example_sentence_english": "The wind began to blow strongly.", + "pos": "verb", + "word_frequency": 1904 + }, + { + "word": "bond", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing used to tie or bind something", + "example_sentence_english": "They formed a strong bond over the years.", + "pos": "noun", + "word_frequency": 1905 + }, + { + "word": "boyfriend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person's regular male companion with whom they have a romantic or sexual relationship", + "example_sentence_english": "She introduced me to her new boyfriend.", + "pos": "noun", + "word_frequency": 1906 + }, + { + "word": "careful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exercising caution or showing attention to detail", + "example_sentence_english": "Be careful when crossing the road.", + "pos": "adjective", + "word_frequency": 1907 + }, + { + "word": "circumstance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fact or condition connected with or relevant to an event or action", + "example_sentence_english": "Under no circumstances should you open that door.", + "pos": "noun", + "word_frequency": 1908 + }, + { + "word": "corporation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large company or group of companies authorized to act as a single entity", + "example_sentence_english": "She works for a large multinational corporation.", + "pos": "noun", + "word_frequency": 1909 + }, + { + "word": "cry", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shed tears", + "example_sentence_english": "The baby started to cry.", + "pos": "verb", + "word_frequency": 1910 + }, + { + "word": "danger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the possibility of suffering harm or injury", + "example_sentence_english": "You are in danger if you go there alone.", + "pos": "noun", + "word_frequency": 1911 + }, + { + "word": "delivery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of delivering letters, parcels, or goods", + "example_sentence_english": "The package is out for delivery.", + "pos": "noun", + "word_frequency": 1912 + }, + { + "word": "deserve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "do something or have qualities worthy of (reward or punishment)", + "example_sentence_english": "You deserve a break after all that hard work.", + "pos": "verb", + "word_frequency": 1913 + }, + { + "word": "empty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "containing nothing", + "example_sentence_english": "The box was empty.", + "pos": "adjective", + "word_frequency": 1914 + }, + { + "word": "folk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "people in general", + "example_sentence_english": "Some folk prefer to live in the countryside.", + "pos": "noun", + "word_frequency": 1915 + }, + { + "word": "gender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being male or female", + "example_sentence_english": "Please indicate your gender on the form.", + "pos": "noun", + "word_frequency": 1916 + }, + { + "word": "instance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an example or single occurrence of something", + "example_sentence_english": "For instance, consider the case of climate change.", + "pos": "noun", + "word_frequency": 1917 + }, + { + "word": "motion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "movement", + "example_sentence_english": "The car's motion made me feel sick.", + "pos": "noun", + "word_frequency": 1920 + }, + { + "word": "nick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small cut or notch", + "example_sentence_english": "He got a small nick on his chin while shaving.", + "pos": "noun", + "word_frequency": 1921 + }, + { + "word": "pacific", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peaceful; calm", + "example_sentence_english": "The pacific nature of the village made it a perfect retreat.", + "pos": "adjective", + "word_frequency": 1922 + }, + { + "word": "prize", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "award; reward", + "example_sentence_english": "She won the first prize in the competition.", + "pos": "noun", + "word_frequency": 1923 + }, + { + "word": "reasonable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair; sensible", + "example_sentence_english": "That's a very reasonable price for such a good car.", + "pos": "adjective", + "word_frequency": 1924 + }, + { + "word": "register", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to record; to sign up", + "example_sentence_english": "You need to register for the course by Friday.", + "pos": "verb", + "word_frequency": 1925 + }, + { + "word": "resolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a firm decision; a solution", + "example_sentence_english": "He made a New Year's resolution to exercise more.", + "pos": "noun", + "word_frequency": 1926 + }, + { + "word": "rural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the countryside", + "example_sentence_english": "They live in a small rural village.", + "pos": "adjective", + "word_frequency": 1927 + }, + { + "word": "sing", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to make musical sounds with the voice", + "example_sentence_english": "She loves to sing in the shower.", + "pos": "verb", + "word_frequency": 1929 + }, + { + "word": "tool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an implement used to carry out a particular function", + "example_sentence_english": "He used a special tool to fix the engine.", + "pos": "noun", + "word_frequency": 1931 + }, + { + "word": "typical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "representative of a kind; characteristic", + "example_sentence_english": "It was a typical English summer day, cloudy and cool.", + "pos": "adjective", + "word_frequency": 1932 + }, + { + "word": "universe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "all existing matter and space", + "example_sentence_english": "Scientists study the origins of the universe.", + "pos": "noun", + "word_frequency": 1933 + }, + { + "word": "warning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a statement or event that indicates a possible danger or problem", + "example_sentence_english": "The weather forecast issued a warning for strong winds.", + "pos": "noun", + "word_frequency": 1934 + }, + { + "word": "admit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confess; to allow entry", + "example_sentence_english": "He had to admit he was wrong.", + "pos": "verb", + "word_frequency": 1936 + }, + { + "word": "attitude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a settled way of thinking or feeling about something", + "example_sentence_english": "She has a very positive attitude towards life.", + "pos": "noun", + "word_frequency": 1937 + }, + { + "word": "branch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a limb of a tree; a division of an organization", + "example_sentence_english": "A bird was sitting on a branch of the tree.", + "pos": "noun", + "word_frequency": 1938 + }, + { + "word": "conduct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to organize and carry out; to behave", + "example_sentence_english": "They will conduct a survey to gather opinions.", + "pos": "verb", + "word_frequency": 1940 + }, + { + "word": "decade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of ten years", + "example_sentence_english": "The company has grown significantly over the last decade.", + "pos": "noun", + "word_frequency": 1941 + }, + { + "word": "dedicate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devote (time or effort) to a particular task or purpose", + "example_sentence_english": "She decided to dedicate her life to helping others.", + "pos": "verb", + "word_frequency": 1942 + }, + { + "word": "definition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a statement of the exact meaning of a word or phrase", + "example_sentence_english": "Can you give me the definition of that word?", + "pos": "noun", + "word_frequency": 1943 + }, + { + "word": "favor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of kindness; approval", + "example_sentence_english": "Could you do me a favor and help me move this box.", + "pos": "noun", + "word_frequency": 1944 + }, + { + "word": "flag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of cloth with a distinctive design, used as a symbol", + "example_sentence_english": "The flag was waving in the wind.", + "pos": "noun", + "word_frequency": 1945 + }, + { + "word": "frame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rigid structure that surrounds or encloses something", + "example_sentence_english": "She put the picture in a beautiful wooden frame.", + "pos": "noun", + "word_frequency": 1946 + }, + { + "word": "guest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who is invited to visit someone's home or attend a social occasion", + "example_sentence_english": "We had a guest staying with us for the weekend.", + "pos": "noun", + "word_frequency": 1947 + }, + { + "word": "heaven", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the abode of God or the gods; a place of supreme happiness", + "example_sentence_english": "The view from the mountain top was like a piece of heaven.", + "pos": "noun", + "word_frequency": 1949 + }, + { + "word": "independence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freedom from external control or support", + "example_sentence_english": "The country celebrated its independence day.", + "pos": "noun", + "word_frequency": 1950 + }, + { + "word": "institution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an established organization or foundation", + "example_sentence_english": "The university is a respected educational institution.", + "pos": "noun", + "word_frequency": 1951 + }, + { + "word": "kiss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to touch with the lips as a sign of love, greeting, or respect", + "example_sentence_english": "She leaned in to kiss her child goodnight.", + "pos": "verb", + "word_frequency": 1954 + }, + { + "word": "load", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quantity of something carried or supported", + "example_sentence_english": "The truck was carrying a heavy load of timber.", + "pos": "noun", + "word_frequency": 1955 + }, + { + "word": "plot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the main events of a play, novel, or movie; a small piece of ground", + "example_sentence_english": "The plot of the movie was very exciting.", + "pos": "noun", + "word_frequency": 1956 + }, + { + "word": "possibility", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing that may happen or be the case", + "example_sentence_english": "There's a possibility of rain later today.", + "pos": "noun", + "word_frequency": 1957 + }, + { + "word": "random", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made, done, or happening without method or conscious decision", + "example_sentence_english": "The survey selected participants at random.", + "pos": "adjective", + "word_frequency": 1958 + }, + { + "word": "recovery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a return to a normal state of health, mind, or strength", + "example_sentence_english": "Her recovery from the illness was slow but steady.", + "pos": "noun", + "word_frequency": 1959 + }, + { + "word": "rent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pay for the use of something", + "example_sentence_english": "We decided to rent a car for our vacation.", + "pos": "verb", + "word_frequency": 1960 + }, + { + "word": "replace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take the place of", + "example_sentence_english": "You need to replace the old battery with a new one.", + "pos": "verb", + "word_frequency": 1961 + }, + { + "word": "represent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stand for or act on behalf of", + "example_sentence_english": "The lawyer will represent her client in court.", + "pos": "verb", + "word_frequency": 1962 + }, + { + "word": "senator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a senate", + "example_sentence_english": "The senator gave a speech about the new bill.", + "pos": "noun", + "word_frequency": 1963 + }, + { + "word": "sentence", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a set of words that is complete in itself", + "example_sentence_english": "Please write a complete sentence.", + "pos": "noun", + "word_frequency": 1964 + }, + { + "word": "tooth", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a hard white structure in the mouth", + "example_sentence_english": "My baby is getting a new tooth.", + "pos": "noun", + "word_frequency": 1965 + }, + { + "word": "tip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small piece of advice or a small sum of money given for a service", + "example_sentence_english": "He gave me a useful tip for cooking.", + "pos": "noun", + "word_frequency": 1966 + }, + { + "word": "academic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to education and scholarship", + "example_sentence_english": "She has a strong academic background.", + "pos": "adjective", + "word_frequency": 1967 + }, + { + "word": "academy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place of study or training", + "example_sentence_english": "He enrolled in a military academy.", + "pos": "noun", + "word_frequency": 1968 + }, + { + "word": "accurate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correct in all details", + "example_sentence_english": "Please provide accurate information.", + "pos": "adjective", + "word_frequency": 1969 + }, + { + "word": "achieve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to successfully bring about or reach", + "example_sentence_english": "She worked hard to achieve her goals.", + "pos": "verb", + "word_frequency": 1970 + }, + { + "word": "afford", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to have enough money to pay for", + "example_sentence_english": "I can't afford a new car right now.", + "pos": "verb", + "word_frequency": 1972 + }, + { + "word": "assume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suppose to be the case, without proof", + "example_sentence_english": "Don't assume anything; always check the facts.", + "pos": "verb", + "word_frequency": 1974 + }, + { + "word": "bottle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a container, typically made of glass or plastic", + "example_sentence_english": "Please recycle this plastic bottle.", + "pos": "noun", + "word_frequency": 1976 + }, + { + "word": "bunch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a number of things, typically of the same kind, growing or fastened together", + "example_sentence_english": "She bought a bunch of flowers.", + "pos": "noun", + "word_frequency": 1977 + }, + { + "word": "category", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a class or division of people or things", + "example_sentence_english": "This book belongs to the fiction category.", + "pos": "noun", + "word_frequency": 1978 + }, + { + "word": "chat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to talk in a friendly, informal way", + "example_sentence_english": "We had a nice chat over coffee.", + "pos": "verb", + "word_frequency": 1979 + }, + { + "word": "cheese", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a food made from the pressed curds of milk", + "example_sentence_english": "Would you like some cheese with your bread?", + "pos": "noun", + "word_frequency": 1980 + }, + { + "word": "chemical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a distinct compound or substance", + "example_sentence_english": "Be careful when handling strong chemicals.", + "pos": "noun", + "word_frequency": 1981 + }, + { + "word": "competitive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characterized by competition", + "example_sentence_english": "The market for smartphones is very competitive.", + "pos": "adjective", + "word_frequency": 1983 + }, + { + "word": "diet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the kinds of food that a person, animal, or community habitually eats", + "example_sentence_english": "He changed his diet to eat healthier.", + "pos": "noun", + "word_frequency": 1984 + }, + { + "word": "favourite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preferred before all others of the same kind", + "example_sentence_english": "What's your favourite color?", + "pos": "adjective", + "word_frequency": 1986 + }, + { + "word": "fruit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the sweet and fleshy product of a tree or other plant", + "example_sentence_english": "Apples are my favourite fruit.", + "pos": "noun", + "word_frequency": 1987 + }, + { + "word": "index", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an alphabetical list of names, subjects, etc., with the page numbers where they are mentioned", + "example_sentence_english": "Check the index at the back of the book.", + "pos": "noun", + "word_frequency": 1989 + }, + { + "word": "lane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a narrow road or path", + "example_sentence_english": "Stay in your lane while driving.", + "pos": "noun", + "word_frequency": 1990 + }, + { + "word": "mess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a state of disorder or untidiness", + "example_sentence_english": "Your room is a complete mess.", + "pos": "noun", + "word_frequency": 1991 + }, + { + "word": "navy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the branch of a nation's armed forces that conducts military operations at sea", + "example_sentence_english": "My brother joined the navy.", + "pos": "noun", + "word_frequency": 1992 + }, + { + "word": "normally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usually; in normal circumstances", + "example_sentence_english": "I normally wake up at 7 AM.", + "pos": "adverb", + "word_frequency": 1993 + }, + { + "word": "occur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to happen; to take place", + "example_sentence_english": "The accident occurred at midnight.", + "pos": "verb", + "word_frequency": 1994 + }, + { + "word": "opposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance or dissent, expressed in action or argument", + "example_sentence_english": "There was strong opposition to the new policy.", + "pos": "noun", + "word_frequency": 1995 + }, + { + "word": "permanent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasting or intended to last or remain unchanged indefinitely", + "example_sentence_english": "She is looking for a permanent job.", + "pos": "adjective", + "word_frequency": 1996 + }, + { + "word": "personally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a personal capacity; by way of personal involvement or opinion", + "example_sentence_english": "Personally, I think it's a great idea.", + "pos": "adverb", + "word_frequency": 1997 + }, + { + "word": "pleasure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of happy satisfaction and enjoyment", + "example_sentence_english": "It was a pleasure to meet you.", + "pos": "noun", + "word_frequency": 1998 + }, + { + "word": "prefer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to like better than another", + "example_sentence_english": "I prefer coffee to tea.", + "pos": "verb", + "word_frequency": 1999 + }, + { + "word": "programme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "program", + "example_sentence_english": "The television programme starts at 8 PM.", + "pos": "noun", + "word_frequency": 2000 + }, + { + "word": "representative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegate, spokesperson", + "example_sentence_english": "Our sales representative will contact you soon.", + "pos": "noun", + "word_frequency": 2001 + }, + { + "word": "scheme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plan, system", + "example_sentence_english": "The new marketing scheme was very successful.", + "pos": "noun", + "word_frequency": 2002 + }, + { + "word": "shift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change, work period", + "example_sentence_english": "I work the night shift this week.", + "pos": "noun", + "word_frequency": 2003 + }, + { + "word": "storage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keeping, repository", + "example_sentence_english": "We need more storage space in the kitchen.", + "pos": "noun", + "word_frequency": 2004 + }, + { + "word": "tank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "container, military vehicle", + "example_sentence_english": "The fish tank needs cleaning.", + "pos": "noun", + "word_frequency": 2005 + }, + { + "word": "tend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "be inclined, look after", + "example_sentence_english": "Prices tend to rise in the summer.", + "pos": "verb", + "word_frequency": 2006 + }, + { + "word": "tight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not loose, strict", + "example_sentence_english": "These jeans are too tight for me.", + "pos": "adjective", + "word_frequency": 2007 + }, + { + "word": "transportation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transport", + "example_sentence_english": "Public transportation is very efficient here.", + "pos": "noun", + "word_frequency": 2008 + }, + { + "word": "ultimately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the end, finally", + "example_sentence_english": "Ultimately, the decision is yours.", + "pos": "adverb", + "word_frequency": 2009 + }, + { + "word": "unlike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dissimilar, different from", + "example_sentence_english": "The two brothers are very unlike each other.", + "pos": "adjective", + "word_frequency": 2010 + }, + { + "word": "weekly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "once a week", + "example_sentence_english": "We meet weekly to discuss progress.", + "pos": "adverb", + "word_frequency": 2011 + }, + { + "word": "yard", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garden, unit of measurement", + "example_sentence_english": "The children are playing in the yard.", + "pos": "noun", + "word_frequency": 2012 + }, + { + "word": "asset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valuable item, advantage", + "example_sentence_english": "Her experience is a great asset to the team.", + "pos": "noun", + "word_frequency": 2014 + }, + { + "word": "basketball", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sport", + "example_sentence_english": "Do you want to play basketball?", + "pos": "noun", + "word_frequency": 2015 + }, + { + "word": "button", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fastener, control", + "example_sentence_english": "Press the red button to start.", + "pos": "noun", + "word_frequency": 2016 + }, + { + "word": "combat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighting, battle", + "example_sentence_english": "The soldiers were trained for combat.", + "pos": "noun", + "word_frequency": 2017 + }, + { + "word": "constitution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamental principles, body's health", + "example_sentence_english": "The country's constitution guarantees freedom of speech.", + "pos": "noun", + "word_frequency": 2018 + }, + { + "word": "consumer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buyer, user", + "example_sentence_english": "Consumers are demanding more eco-friendly products.", + "pos": "noun", + "word_frequency": 2019 + }, + { + "word": "counter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surface, register", + "example_sentence_english": "Please place your order at the counter.", + "pos": "noun", + "word_frequency": 2020 + }, + { + "word": "creation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "act of creating, something created", + "example_sentence_english": "The creation of new jobs is essential for the economy.", + "pos": "noun", + "word_frequency": 2021 + }, + { + "word": "crown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "royal headwear, top part", + "example_sentence_english": "The queen wore a beautiful crown.", + "pos": "noun", + "word_frequency": 2022 + }, + { + "word": "define", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explain, characterize", + "example_sentence_english": "Can you define the term 'democracy'?", + "pos": "verb", + "word_frequency": 2024 + }, + { + "word": "depend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rely on, be contingent on", + "example_sentence_english": "Our picnic depends on the weather.", + "pos": "verb", + "word_frequency": 2025 + }, + { + "word": "depression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sadness, economic downturn", + "example_sentence_english": "She sought help for her depression.", + "pos": "noun", + "word_frequency": 2026 + }, + { + "word": "employment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work, job", + "example_sentence_english": "The company offers good employment opportunities.", + "pos": "noun", + "word_frequency": 2028 + }, + { + "word": "exclusive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restricted, high-end", + "example_sentence_english": "This offer is exclusive to our members.", + "pos": "adjective", + "word_frequency": 2029 + }, + { + "word": "excuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reason, justification", + "example_sentence_english": "He had no excuse for being late.", + "pos": "noun", + "word_frequency": 2030 + }, + { + "word": "expert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialist, master", + "example_sentence_english": "She is an expert in ancient history.", + "pos": "noun", + "word_frequency": 2031 + }, + { + "word": "frequently", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "often, many times", + "example_sentence_english": "He frequently visits his grandparents.", + "pos": "adverb", + "word_frequency": 2032 + }, + { + "word": "golf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sport", + "example_sentence_english": "Do you play golf?", + "pos": "noun", + "word_frequency": 2033 + }, + { + "word": "grace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elegance, divine favor", + "example_sentence_english": "She moved with elegance and grace.", + "pos": "noun", + "word_frequency": 2034 + }, + { + "word": "hopefully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with hope", + "example_sentence_english": "Hopefully, the weather will be good tomorrow.", + "pos": "adverb", + "word_frequency": 2035 + }, + { + "word": "importance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "significance, value", + "example_sentence_english": "The importance of education cannot be overstated.", + "pos": "noun", + "word_frequency": 2036 + }, + { + "word": "latter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "second of two, near the end", + "example_sentence_english": "Of the two options, I prefer the latter.", + "pos": "adjective", + "word_frequency": 2038 + }, + { + "word": "manufacturing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production, making of goods", + "example_sentence_english": "The manufacturing industry is crucial for the economy.", + "pos": "noun", + "word_frequency": 2039 + }, + { + "word": "mining", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of extracting minerals from the earth", + "example_sentence_english": "Coal mining is a dangerous but essential industry.", + "pos": "noun", + "word_frequency": 2040 + }, + { + "word": "object", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a material thing that can be seen and touched", + "example_sentence_english": "There was a strange object floating in the water.", + "pos": "noun", + "word_frequency": 2041 + }, + { + "word": "pattern", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a repeated decorative design", + "example_sentence_english": "The wallpaper had a floral pattern.", + "pos": "noun", + "word_frequency": 2042 + }, + { + "word": "personnel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "staff; employees", + "example_sentence_english": "All personnel are required to attend the meeting.", + "pos": "noun", + "word_frequency": 2043 + }, + { + "word": "perspective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a particular attitude toward or way of regarding something", + "example_sentence_english": "Try to see the situation from her perspective.", + "pos": "noun", + "word_frequency": 2044 + }, + { + "word": "pregnant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carrying a fetus or young in the womb", + "example_sentence_english": "She announced that she was pregnant with her first child.", + "pos": "adjective", + "word_frequency": 2045 + }, + { + "word": "premier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "first in importance, order, or rank", + "example_sentence_english": "The company is a premier provider of software solutions.", + "pos": "adjective", + "word_frequency": 2046 + }, + { + "word": "promote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support or actively encourage", + "example_sentence_english": "The campaign aims to promote healthy eating habits.", + "pos": "verb", + "word_frequency": 2047 + }, + { + "word": "revolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a forcible overthrow of a government or social order", + "example_sentence_english": "The industrial revolution changed society dramatically.", + "pos": "noun", + "word_frequency": 2049 + }, + { + "word": "severe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very great; intense", + "example_sentence_english": "The storm caused severe damage to the coast.", + "pos": "adjective", + "word_frequency": 2050 + }, + { + "word": "tournament", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a series of contests between a number of competitors", + "example_sentence_english": "Our team won the football tournament last year.", + "pos": "noun", + "word_frequency": 2051 + }, + { + "word": "turkey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large North American bird", + "example_sentence_english": "We usually have roast turkey for Thanksgiving dinner.", + "pos": "noun", + "word_frequency": 2052 + }, + { + "word": "victim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person harmed, injured, or killed as a result of a crime, accident, or other event or action", + "example_sentence_english": "The police are helping the victims of the flood.", + "pos": "noun", + "word_frequency": 2054 + }, + { + "word": "attend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be present at an event, meeting, or institution", + "example_sentence_english": "She decided to attend the university in London.", + "pos": "verb", + "word_frequency": 2057 + }, + { + "word": "ban", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "officially or legally prohibit", + "example_sentence_english": "Smoking is banned in all public buildings.", + "pos": "verb", + "word_frequency": 2058 + }, + { + "word": "brilliant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very bright or radiant; exceptionally clever or talented", + "example_sentence_english": "That was a brilliant idea!", + "pos": "adjective", + "word_frequency": 2059 + }, + { + "word": "carbon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a nonmetallic element", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "noun", + "word_frequency": 2060 + }, + { + "word": "catholic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Roman Catholic Church; universal", + "example_sentence_english": "She grew up in a Catholic family.", + "pos": "adjective", + "word_frequency": 2061 + }, + { + "word": "circle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a round plane figure", + "example_sentence_english": "Draw a circle on the paper.", + "pos": "noun", + "word_frequency": 2062 + }, + { + "word": "concert", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a musical performance", + "example_sentence_english": "We went to a rock concert last night.", + "pos": "noun", + "word_frequency": 2063 + }, + { + "word": "crash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit something hard; to fail suddenly", + "example_sentence_english": "The car crashed into a tree.", + "pos": "verb", + "word_frequency": 2064 + }, + { + "word": "declare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state officially or publicly", + "example_sentence_english": "The government declared a state of emergency.", + "pos": "verb", + "word_frequency": 2065 + }, + { + "word": "depth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the distance from the top or surface to the bottom", + "example_sentence_english": "The lake has a depth of 10 meters.", + "pos": "noun", + "word_frequency": 2066 + }, + { + "word": "deputy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person appointed to act as a substitute for another", + "example_sentence_english": "The deputy mayor attended the meeting.", + "pos": "noun", + "word_frequency": 2067 + }, + { + "word": "dirty", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not clean", + "example_sentence_english": "Your hands are very dirty.", + "pos": "adjective", + "word_frequency": 2068 + }, + { + "word": "earn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to obtain money in return for labor or services", + "example_sentence_english": "He works hard to earn a living.", + "pos": "verb", + "word_frequency": 2069 + }, + { + "word": "electronic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to electronics", + "example_sentence_english": "I bought a new electronic device.", + "pos": "adjective", + "word_frequency": 2070 + }, + { + "word": "error", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a mistake", + "example_sentence_english": "There was an error in the calculation.", + "pos": "noun", + "word_frequency": 2071 + }, + { + "word": "existence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the fact or state of living or having objective reality", + "example_sentence_english": "Do you believe in the existence of aliens?", + "pos": "noun", + "word_frequency": 2072 + }, + { + "word": "expression", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of making known one's thoughts or feelings", + "example_sentence_english": "Her face showed an expression of surprise.", + "pos": "noun", + "word_frequency": 2073 + }, + { + "word": "factory", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a building where goods are manufactured", + "example_sentence_english": "The new car factory employs thousands of people.", + "pos": "noun", + "word_frequency": 2074 + }, + { + "word": "interior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the inner part of something", + "example_sentence_english": "The interior of the house was beautifully decorated.", + "pos": "noun", + "word_frequency": 2075 + }, + { + "word": "joy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a feeling of great pleasure and happiness", + "example_sentence_english": "The children shouted with joy.", + "pos": "noun", + "word_frequency": 2076 + }, + { + "word": "legislation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laws, considered collectively", + "example_sentence_english": "New legislation was passed to protect the environment.", + "pos": "noun", + "word_frequency": 2078 + }, + { + "word": "maintenance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of preserving a condition or situation", + "example_sentence_english": "The building requires regular maintenance.", + "pos": "noun", + "word_frequency": 2079 + }, + { + "word": "manner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way; style", + "example_sentence_english": "She spoke in a calm manner.", + "pos": "noun", + "word_frequency": 2080 + }, + { + "word": "mate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friend; partner", + "example_sentence_english": "My old school mate came to visit.", + "pos": "noun", + "word_frequency": 2081 + }, + { + "word": "nearby", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "close by", + "example_sentence_english": "The store is nearby.", + "pos": "adverb", + "word_frequency": 2083 + }, + { + "word": "noise", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sound", + "example_sentence_english": "There was a loud noise outside.", + "pos": "noun", + "word_frequency": 2084 + }, + { + "word": "origin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "source; beginning", + "example_sentence_english": "What is the origin of this tradition?", + "pos": "noun", + "word_frequency": 2085 + }, + { + "word": "panel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flat section; a group of experts", + "example_sentence_english": "The solar panel converts sunlight into electricity.", + "pos": "noun", + "word_frequency": 2087 + }, + { + "word": "personality", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character; individual nature", + "example_sentence_english": "She has a very strong personality.", + "pos": "noun", + "word_frequency": 2088 + }, + { + "word": "plate", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a flat dish", + "example_sentence_english": "Please put the food on the plate.", + "pos": "noun", + "word_frequency": 2089 + }, + { + "word": "relief", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of reassurance; aid", + "example_sentence_english": "It was a great relief to finish the exam.", + "pos": "noun", + "word_frequency": 2090 + }, + { + "word": "resistance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposition; ability to withstand", + "example_sentence_english": "The material has high resistance to heat.", + "pos": "noun", + "word_frequency": 2091 + }, + { + "word": "retail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sale of goods to the public", + "example_sentence_english": "She works in retail.", + "pos": "noun", + "word_frequency": 2092 + }, + { + "word": "rice", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a type of grain", + "example_sentence_english": "We had rice with our dinner.", + "pos": "noun", + "word_frequency": 2093 + }, + { + "word": "roof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the top covering of a building", + "example_sentence_english": "The roof needs to be repaired.", + "pos": "noun", + "word_frequency": 2094 + }, + { + "word": "shame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of embarrassment; a pity", + "example_sentence_english": "It's a shame you can't come to the party.", + "pos": "noun", + "word_frequency": 2095 + }, + { + "word": "somewhat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to some extent", + "example_sentence_english": "I'm somewhat tired after the long journey.", + "pos": "adverb", + "word_frequency": 2096 + }, + { + "word": "surely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certainly; without doubt", + "example_sentence_english": "Surely you're not going out in this rain?", + "pos": "adverb", + "word_frequency": 2097 + }, + { + "word": "absolute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete; total", + "example_sentence_english": "He spoke with absolute confidence.", + "pos": "adjective", + "word_frequency": 2098 + }, + { + "word": "advertising", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the activity of promoting products", + "example_sentence_english": "The company spends a lot on advertising.", + "pos": "noun", + "word_frequency": 2099 + }, + { + "word": "baseball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bat-and-ball game", + "example_sentence_english": "My favorite sport is baseball.", + "pos": "noun", + "word_frequency": 2100 + }, + { + "word": "bathroom", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a room with a toilet and sink", + "example_sentence_english": "Where is the bathroom?", + "pos": "noun", + "word_frequency": 2101 + }, + { + "word": "cable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong wire; a system for TV", + "example_sentence_english": "We need a new cable for the internet.", + "pos": "noun", + "word_frequency": 2103 + }, + { + "word": "calm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peaceful; not agitated", + "example_sentence_english": "The sea was calm this morning.", + "pos": "adjective", + "word_frequency": 2104 + }, + { + "word": "championship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a competition to find the best", + "example_sentence_english": "They won the national championship.", + "pos": "noun", + "word_frequency": 2105 + }, + { + "word": "client", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a customer; a person receiving services", + "example_sentence_english": "Our company has many international clients.", + "pos": "noun", + "word_frequency": 2106 + }, + { + "word": "constant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous; unchanging", + "example_sentence_english": "The constant noise was annoying.", + "pos": "adjective", + "word_frequency": 2107 + }, + { + "word": "dumb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupid; unable to speak", + "example_sentence_english": "That was a dumb mistake.", + "pos": "adjective", + "word_frequency": 2110 + }, + { + "word": "empire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large group of states or countries under a single authority", + "example_sentence_english": "The Roman Empire was vast.", + "pos": "noun", + "word_frequency": 2111 + }, + { + "word": "exciting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "causing great enthusiasm", + "example_sentence_english": "It was an exciting game.", + "pos": "adjective", + "word_frequency": 2112 + }, + { + "word": "expansion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of increasing in size or scope", + "example_sentence_english": "The company announced its expansion into new markets.", + "pos": "noun", + "word_frequency": 2113 + }, + { + "word": "heavily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to a great degree; with great weight", + "example_sentence_english": "It was raining heavily.", + "pos": "adverb", + "word_frequency": 2115 + }, + { + "word": "hide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put or keep out of sight", + "example_sentence_english": "The children love to hide and seek.", + "pos": "verb", + "word_frequency": 2116 + }, + { + "word": "incident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an event or occurrence", + "example_sentence_english": "There was a minor incident at the party.", + "pos": "noun", + "word_frequency": 2117 + }, + { + "word": "multi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "many; more than one", + "example_sentence_english": "This is a multi-purpose tool.", + "pos": "adjective", + "word_frequency": 2120 + }, + { + "word": "politician", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person active in party politics", + "example_sentence_english": "The politician gave a speech about the economy.", + "pos": "noun", + "word_frequency": 2122 + }, + { + "word": "print", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to produce text or images on paper", + "example_sentence_english": "Please print this document for me.", + "pos": "verb", + "word_frequency": 2123 + }, + { + "word": "quit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop doing something", + "example_sentence_english": "He decided to quit his job.", + "pos": "verb", + "word_frequency": 2124 + }, + { + "word": "refuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to say that you will not do or accept something", + "example_sentence_english": "She refused to answer the question.", + "pos": "verb", + "word_frequency": 2125 + }, + { + "word": "sight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the ability to see; something that is seen", + "example_sentence_english": "Her sight is very good.", + "pos": "noun", + "word_frequency": 2126 + }, + { + "word": "significantly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is large or important enough to have an effect", + "example_sentence_english": "The cost has increased significantly.", + "pos": "adverb", + "word_frequency": 2127 + }, + { + "word": "soviet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the former Soviet Union", + "example_sentence_english": "The Soviet Union dissolved in 1991.", + "pos": "adjective", + "word_frequency": 2128 + }, + { + "word": "wet", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "covered or saturated with water or another liquid", + "example_sentence_english": "Don't sit on the wet grass.", + "pos": "adjective", + "word_frequency": 2129 + }, + { + "word": "widely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by a large number of people or in many places", + "example_sentence_english": "The news was widely reported.", + "pos": "adverb", + "word_frequency": 2130 + }, + { + "word": "worldwide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "throughout the world", + "example_sentence_english": "The product is sold worldwide.", + "pos": "adverb", + "word_frequency": 2131 + }, + { + "word": "anniversary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the date on which an event took place in a previous year", + "example_sentence_english": "We celebrated our tenth wedding anniversary.", + "pos": "noun", + "word_frequency": 2132 + }, + { + "word": "attractive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pleasing or appealing to the senses or mind", + "example_sentence_english": "She is a very attractive person.", + "pos": "adjective", + "word_frequency": 2133 + }, + { + "word": "bike", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a bicycle or motorcycle", + "example_sentence_english": "I ride my bike to work every day.", + "pos": "noun", + "word_frequency": 2134 + }, + { + "word": "broad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wide; general", + "example_sentence_english": "The river is very broad at this point.", + "pos": "adjective", + "word_frequency": 2135 + }, + { + "word": "burn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be on fire; to destroy by fire", + "example_sentence_english": "Be careful not to burn yourself.", + "pos": "verb", + "word_frequency": 2136 + }, + { + "word": "cake", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sweet baked food", + "example_sentence_english": "She baked a delicious chocolate cake.", + "pos": "noun", + "word_frequency": 2137 + }, + { + "word": "closely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a close manner; with little space or time between", + "example_sentence_english": "They worked closely together on the project.", + "pos": "adverb", + "word_frequency": 2138 + }, + { + "word": "constantly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "all the time; continuously", + "example_sentence_english": "He is constantly checking his phone.", + "pos": "adverb", + "word_frequency": 2139 + }, + { + "word": "contest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an event in which people compete", + "example_sentence_english": "She won the singing contest.", + "pos": "noun", + "word_frequency": 2140 + }, + { + "word": "fee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a payment made to a professional person or to a professional or public body in exchange for advice or services", + "example_sentence_english": "There is an entrance fee for the museum.", + "pos": "noun", + "word_frequency": 2142 + }, + { + "word": "hardly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "almost not; barely", + "example_sentence_english": "I could hardly hear what he was saying.", + "pos": "adverb", + "word_frequency": 2145 + }, + { + "word": "hat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a covering for the head", + "example_sentence_english": "She wore a red hat.", + "pos": "noun", + "word_frequency": 2146 + }, + { + "word": "height", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the measurement from base to top", + "example_sentence_english": "What is your height?", + "pos": "noun", + "word_frequency": 2147 + }, + { + "word": "invite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ask someone to come somewhere or do something", + "example_sentence_english": "We invited them to our party.", + "pos": "verb", + "word_frequency": 2149 + }, + { + "word": "loud", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "producing or capable of producing much noise", + "example_sentence_english": "The music was very loud.", + "pos": "adjective", + "word_frequency": 2150 + }, + { + "word": "marine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a body of troops trained to serve on land or at sea", + "example_sentence_english": "He joined the Marine Corps.", + "pos": "noun", + "word_frequency": 2152 + }, + { + "word": "motor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine that produces motion or power", + "example_sentence_english": "The car's motor needs to be repaired.", + "pos": "noun", + "word_frequency": 2153 + }, + { + "word": "officially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a formal and public way", + "example_sentence_english": "The new building was officially opened today.", + "pos": "adverb", + "word_frequency": 2154 + }, + { + "word": "pc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "personal computer", + "example_sentence_english": "I bought a new PC for gaming.", + "pos": "noun", + "word_frequency": 2155 + }, + { + "word": "peak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the point of highest activity, intensity, or achievement", + "example_sentence_english": "We reached the peak of the mountain.", + "pos": "noun", + "word_frequency": 2156 + }, + { + "word": "portion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a part of a larger whole", + "example_sentence_english": "She ate a small portion of cake.", + "pos": "noun", + "word_frequency": 2157 + }, + { + "word": "pound", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of weight or currency", + "example_sentence_english": "The baby weighs ten pounds.", + "pos": "noun", + "word_frequency": 2158 + }, + { + "word": "princess", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a daughter of a monarch", + "example_sentence_english": "The princess wore a beautiful gown.", + "pos": "noun", + "word_frequency": 2159 + }, + { + "word": "protein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance found in food such as meat, eggs, and milk, that is an important part of the human diet", + "example_sentence_english": "Meat and fish are good sources of protein.", + "pos": "noun", + "word_frequency": 2160 + }, + { + "word": "raw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not cooked", + "example_sentence_english": "Be careful when handling raw meat.", + "pos": "adjective", + "word_frequency": 2161 + }, + { + "word": "reform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to improve a system or organization by making changes to it", + "example_sentence_english": "The government plans to reform the education system.", + "pos": "verb", + "word_frequency": 2162 + }, + { + "word": "respond", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to say or do something as a reaction to something that has been said or done", + "example_sentence_english": "Please respond to my email as soon as possible.", + "pos": "verb", + "word_frequency": 2163 + }, + { + "word": "retirement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the period of your life after you have stopped working", + "example_sentence_english": "She is looking forward to her retirement next year.", + "pos": "noun", + "word_frequency": 2164 + }, + { + "word": "sample", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small amount of something that shows you what the rest is like", + "example_sentence_english": "Can I have a sample of the new perfume?", + "pos": "noun", + "word_frequency": 2165 + }, + { + "word": "secondary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "less important than something else; not primary", + "example_sentence_english": "The secondary effects of the drug are still being studied.", + "pos": "adjective", + "word_frequency": 2166 + }, + { + "word": "solar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the sun", + "example_sentence_english": "Many homes now use solar panels to generate electricity.", + "pos": "adjective", + "word_frequency": 2167 + }, + { + "word": "somehow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that is not known or specified; by some means", + "example_sentence_english": "We'll manage to finish the project somehow.", + "pos": "adverb", + "word_frequency": 2168 + }, + { + "word": "suffer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to experience something bad or unpleasant", + "example_sentence_english": "He suffers from severe headaches.", + "pos": "verb", + "word_frequency": 2169 + }, + { + "word": "ultimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final; fundamental; best or most extreme", + "example_sentence_english": "Our ultimate goal is to achieve peace.", + "pos": "adjective", + "word_frequency": 2172 + }, + { + "word": "unknown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not known or familiar", + "example_sentence_english": "The cause of the fire is still unknown.", + "pos": "adjective", + "word_frequency": 2173 + }, + { + "word": "attach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fasten or join one thing to another", + "example_sentence_english": "Please attach your resume to the application form.", + "pos": "verb", + "word_frequency": 2175 + }, + { + "word": "automatically", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without human intervention; by itself", + "example_sentence_english": "The door opens automatically when you approach it.", + "pos": "adverb", + "word_frequency": 2176 + }, + { + "word": "battery", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device that produces electricity to provide power for radios, cars, etc.", + "example_sentence_english": "My phone battery is low.", + "pos": "noun", + "word_frequency": 2177 + }, + { + "word": "blind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unable to see", + "example_sentence_english": "He has been blind since birth.", + "pos": "adjective", + "word_frequency": 2178 + }, + { + "word": "breath", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the air that you take in and let out when you breathe", + "example_sentence_english": "Take a deep breath and relax.", + "pos": "noun", + "word_frequency": 2179 + }, + { + "word": "brief", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lasting only a short time; concise", + "example_sentence_english": "We had a brief discussion about the project.", + "pos": "adjective", + "word_frequency": 2180 + }, + { + "word": "chest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the upper front part of the body of humans and some animals, between the neck and the stomach", + "example_sentence_english": "He felt a pain in his chest.", + "pos": "noun", + "word_frequency": 2182 + }, + { + "word": "debut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the first public appearance of a performer or sports player", + "example_sentence_english": "Her debut album was a huge success.", + "pos": "noun", + "word_frequency": 2183 + }, + { + "word": "engage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to involve someone in something; to attract and keep someone's attention", + "example_sentence_english": "It's important to engage students in the learning process.", + "pos": "verb", + "word_frequency": 2185 + }, + { + "word": "external", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the outside of something", + "example_sentence_english": "The building has an external staircase.", + "pos": "adjective", + "word_frequency": 2186 + }, + { + "word": "fantasy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pleasant situation or event that you imagine but that is unlikely to happen", + "example_sentence_english": "He often escapes into a world of fantasy.", + "pos": "noun", + "word_frequency": 2187 + }, + { + "word": "grab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take hold of something or someone suddenly and roughly", + "example_sentence_english": "He grabbed his bag and ran out the door.", + "pos": "verb", + "word_frequency": 2189 + }, + { + "word": "immediate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening or done without delay; closest in relationship or space", + "example_sentence_english": "We need an immediate response.", + "pos": "adjective", + "word_frequency": 2192 + }, + { + "word": "introduction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of introducing something or someone; the opening part of a book or speech", + "example_sentence_english": "The introduction to the book was very informative.", + "pos": "noun", + "word_frequency": 2193 + }, + { + "word": "license", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official document giving you permission to do something", + "example_sentence_english": "You need a license to drive a car.", + "pos": "noun", + "word_frequency": 2195 + }, + { + "word": "paint", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cover a surface with paint", + "example_sentence_english": "We decided to paint the living room blue.", + "pos": "verb", + "word_frequency": 2196 + }, + { + "word": "pilot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who operates the flying controls of an aircraft", + "example_sentence_english": "The pilot announced that we were about to land.", + "pos": "noun", + "word_frequency": 2197 + }, + { + "word": "pink", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a pale red color", + "example_sentence_english": "Her favorite color is pink.", + "pos": "adjective", + "word_frequency": 2198 + }, + { + "word": "presidential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a president or presidency", + "example_sentence_english": "The presidential election will be held next year.", + "pos": "adjective", + "word_frequency": 2199 + }, + { + "word": "principal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main; most important", + "example_sentence_english": "The principal reason for his success was hard work.", + "pos": "adjective", + "word_frequency": 2200 + }, + { + "word": "recognize", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "identify; know again", + "example_sentence_english": "I didn't recognize you at first.", + "pos": "verb", + "word_frequency": 2201 + }, + { + "word": "regularly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "often; at regular intervals", + "example_sentence_english": "She regularly visits her grandparents.", + "pos": "adverb", + "word_frequency": 2202 + }, + { + "word": "shipping", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the transport of goods", + "example_sentence_english": "The shipping cost was higher than expected.", + "pos": "noun", + "word_frequency": 2203 + }, + { + "word": "singer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a person who sings", + "example_sentence_english": "My favorite singer is performing tonight.", + "pos": "noun", + "word_frequency": 2204 + }, + { + "word": "steam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot gas produced by boiling water", + "example_sentence_english": "Steam rose from the hot cup of tea.", + "pos": "noun", + "word_frequency": 2205 + }, + { + "word": "survive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continue to live or exist", + "example_sentence_english": "Only a few plants can survive in the desert.", + "pos": "verb", + "word_frequency": 2206 + }, + { + "word": "tall", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "of great height", + "example_sentence_english": "He is a very tall man.", + "pos": "adjective", + "word_frequency": 2207 + }, + { + "word": "theatre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a building where plays are performed", + "example_sentence_english": "We went to the theatre to see a play.", + "pos": "noun", + "word_frequency": 2209 + }, + { + "word": "therapy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treatment for an illness or injury", + "example_sentence_english": "She is undergoing physical therapy for her knee injury.", + "pos": "noun", + "word_frequency": 2210 + }, + { + "word": "witness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who sees an event", + "example_sentence_english": "The police asked the witness for a description.", + "pos": "noun", + "word_frequency": 2211 + }, + { + "word": "adopt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "take into one's family; formally accept", + "example_sentence_english": "They decided to adopt a child.", + "pos": "verb", + "word_frequency": 2212 + }, + { + "word": "aim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "point or direct; intend", + "example_sentence_english": "He aimed the camera at the bird.", + "pos": "verb", + "word_frequency": 2213 + }, + { + "word": "campus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the grounds and buildings of a university", + "example_sentence_english": "The university campus is very beautiful.", + "pos": "noun", + "word_frequency": 2214 + }, + { + "word": "cap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of hat; a lid", + "example_sentence_english": "He wore a baseball cap.", + "pos": "noun", + "word_frequency": 2215 + }, + { + "word": "childhood", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the period of being a child", + "example_sentence_english": "She had a happy childhood.", + "pos": "noun", + "word_frequency": 2216 + }, + { + "word": "clinical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the observation and treatment of patients", + "example_sentence_english": "The new drug is undergoing clinical trials.", + "pos": "adjective", + "word_frequency": 2217 + }, + { + "word": "comedy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a humorous play or film", + "example_sentence_english": "We watched a funny comedy last night.", + "pos": "noun", + "word_frequency": 2218 + }, + { + "word": "commander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person in command, especially of a military unit", + "example_sentence_english": "The commander gave the order to advance.", + "pos": "noun", + "word_frequency": 2219 + }, + { + "word": "comparison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of comparing two or more things", + "example_sentence_english": "There's no comparison between the two products.", + "pos": "noun", + "word_frequency": 2220 + }, + { + "word": "defeat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "win a victory over", + "example_sentence_english": "They managed to defeat their opponents.", + "pos": "verb", + "word_frequency": 2222 + }, + { + "word": "defence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of defending or protecting", + "example_sentence_english": "The country's defence system is strong.", + "pos": "noun", + "word_frequency": 2223 + }, + { + "word": "democracy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of government by the whole population", + "example_sentence_english": "Democracy is a fundamental principle of this nation.", + "pos": "noun", + "word_frequency": 2224 + }, + { + "word": "entitle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "give a right or claim to", + "example_sentence_english": "This ticket entitles you to free entry.", + "pos": "verb", + "word_frequency": 2225 + }, + { + "word": "exact", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precise; accurate", + "example_sentence_english": "I need the exact measurements.", + "pos": "adjective", + "word_frequency": 2226 + }, + { + "word": "expose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make visible or known", + "example_sentence_english": "The investigation exposed the truth.", + "pos": "verb", + "word_frequency": 2227 + }, + { + "word": "injure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cause harm or damage to", + "example_sentence_english": "He injured his knee playing football.", + "pos": "verb", + "word_frequency": 2228 + }, + { + "word": "lock", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fasten or secure with a lock", + "example_sentence_english": "Please lock the door when you leave.", + "pos": "verb", + "word_frequency": 2231 + }, + { + "word": "musical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to music", + "example_sentence_english": "She has a great musical talent.", + "pos": "adjective", + "word_frequency": 2232 + }, + { + "word": "nose", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the part of the face used for smelling and breathing", + "example_sentence_english": "He has a small nose.", + "pos": "noun", + "word_frequency": 2233 + }, + { + "word": "oppose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagree with and try to prevent", + "example_sentence_english": "Many people oppose the new policy.", + "pos": "verb", + "word_frequency": 2234 + }, + { + "word": "organize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrange or put in order", + "example_sentence_english": "We need to organize the event.", + "pos": "verb", + "word_frequency": 2235 + }, + { + "word": "plastic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a synthetic material", + "example_sentence_english": "This bottle is made of plastic.", + "pos": "noun", + "word_frequency": 2236 + }, + { + "word": "quote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repeat or copy words from a text or speech", + "example_sentence_english": "He likes to quote famous authors.", + "pos": "verb", + "word_frequency": 2237 + }, + { + "word": "semi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "half; partly", + "example_sentence_english": "The project is semi-finished.", + "pos": "adjective", + "word_frequency": 2238 + }, + { + "word": "suspect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "believe to be true or likely; doubt the honesty of", + "example_sentence_english": "I suspect he is hiding something.", + "pos": "verb", + "word_frequency": 2239 + }, + { + "word": "swear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make a solemn promise; use offensive language", + "example_sentence_english": "I swear I will tell the truth.", + "pos": "verb", + "word_frequency": 2240 + }, + { + "word": "technique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a way of carrying out a particular task", + "example_sentence_english": "She has a unique technique for painting.", + "pos": "noun", + "word_frequency": 2241 + }, + { + "word": "tie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fasten or secure with string or rope", + "example_sentence_english": "Can you help me tie my shoelaces?", + "pos": "verb", + "word_frequency": 2242 + }, + { + "word": "trend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a general direction in which something is developing or changing", + "example_sentence_english": "The latest fashion trend is very colorful.", + "pos": "noun", + "word_frequency": 2244 + }, + { + "word": "valuable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worth a great deal of money; very useful or important", + "example_sentence_english": "This old book is very valuable.", + "pos": "adjective", + "word_frequency": 2245 + }, + { + "word": "wealth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an abundance of valuable possessions or money", + "example_sentence_english": "He accumulated great wealth over the years.", + "pos": "noun", + "word_frequency": 2246 + }, + { + "word": "wise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing experience, knowledge, and good judgment", + "example_sentence_english": "It was a wise decision to save money.", + "pos": "adjective", + "word_frequency": 2247 + }, + { + "word": "approval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of approving something", + "example_sentence_english": "The project needs final approval from the manager.", + "pos": "noun", + "word_frequency": 2248 + }, + { + "word": "aspect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a particular part or feature of something", + "example_sentence_english": "We considered every aspect of the plan.", + "pos": "noun", + "word_frequency": 2249 + }, + { + "word": "bread", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a staple food made from flour and water", + "example_sentence_english": "I bought a loaf of bread.", + "pos": "noun", + "word_frequency": 2250 + }, + { + "word": "convention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a way in which something is usually done; a large meeting or conference", + "example_sentence_english": "It's a social convention to shake hands when you meet someone new.", + "pos": "noun", + "word_frequency": 2251 + }, + { + "word": "egg", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an oval or round object laid by a female bird, reptile, insect, or fish", + "example_sentence_english": "I had an egg for breakfast.", + "pos": "noun", + "word_frequency": 2252 + }, + { + "word": "engineer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who designs, builds, or maintains engines, machines, or structures", + "example_sentence_english": "My sister is a software engineer.", + "pos": "noun", + "word_frequency": 2254 + }, + { + "word": "equivalent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equal in value, amount, function, meaning, etc.", + "example_sentence_english": "One dollar is equivalent to 100 cents.", + "pos": "adjective", + "word_frequency": 2255 + }, + { + "word": "fairly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to a moderate extent; justly", + "example_sentence_english": "She sings fairly well.", + "pos": "adverb", + "word_frequency": 2256 + }, + { + "word": "finger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "each of the five digits at the end of the hand", + "example_sentence_english": "He pointed with his finger.", + "pos": "noun", + "word_frequency": 2257 + }, + { + "word": "found", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "past tense of find; establish or originate", + "example_sentence_english": "I found my keys under the couch.", + "pos": "verb", + "word_frequency": 2259 + }, + { + "word": "gang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organized group of criminals; a group of friends", + "example_sentence_english": "A gang of friends went to the movies.", + "pos": "noun", + "word_frequency": 2260 + }, + { + "word": "graduate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successfully complete an academic degree", + "example_sentence_english": "She will graduate from university next year.", + "pos": "verb", + "word_frequency": 2261 + }, + { + "word": "inner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated inside or further in", + "example_sentence_english": "She felt an inner peace.", + "pos": "adjective", + "word_frequency": 2263 + }, + { + "word": "lift", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raise to a higher position or level", + "example_sentence_english": "Can you help me lift this box?", + "pos": "verb", + "word_frequency": 2264 + }, + { + "word": "monthly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "done, produced, or occurring once a month", + "example_sentence_english": "We have a monthly meeting.", + "pos": "adjective", + "word_frequency": 2266 + }, + { + "word": "neighborhood", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a district, especially one forming a community within a town or city", + "example_sentence_english": "Our neighborhood is very quiet.", + "pos": "noun", + "word_frequency": 2267 + }, + { + "word": "outstanding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceptionally good; not yet paid, resolved, or dealt with", + "example_sentence_english": "Her performance was truly outstanding.", + "pos": "adjective", + "word_frequency": 2268 + }, + { + "word": "permission", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of allowing someone to do something", + "example_sentence_english": "You need permission to enter this area.", + "pos": "noun", + "word_frequency": 2269 + }, + { + "word": "regulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rule or directive made and maintained by an authority", + "example_sentence_english": "New safety regulations were introduced.", + "pos": "noun", + "word_frequency": 2271 + }, + { + "word": "reply", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "say something in response to something someone has said", + "example_sentence_english": "Please reply to my email.", + "pos": "verb", + "word_frequency": 2272 + }, + { + "word": "rid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make free of something undesirable", + "example_sentence_english": "We need to get rid of this old furniture.", + "pos": "verb", + "word_frequency": 2273 + }, + { + "word": "scientist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is studying or has studied science", + "example_sentence_english": "The scientist conducted an experiment.", + "pos": "noun", + "word_frequency": 2275 + }, + { + "word": "shoulder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the joint connecting the arm or forelimb to the trunk", + "example_sentence_english": "He carried the bag on his shoulder.", + "pos": "noun", + "word_frequency": 2276 + }, + { + "word": "shower", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a brief fall of rain; an act of washing oneself in a shower", + "example_sentence_english": "I'm going to take a shower.", + "pos": "noun", + "word_frequency": 2277 + }, + { + "word": "tower", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tall, narrow building or part of a building", + "example_sentence_english": "The Eiffel Tower is in Paris.", + "pos": "noun", + "word_frequency": 2279 + }, + { + "word": "tradition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "custom, belief passed down", + "example_sentence_english": "It's a family tradition to have a big dinner on Sundays.", + "pos": "noun", + "word_frequency": 2280 + }, + { + "word": "visual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to sight", + "example_sentence_english": "The artist created a stunning visual display.", + "pos": "adjective", + "word_frequency": 2281 + }, + { + "word": "wheel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circular part that turns", + "example_sentence_english": "The car has four wheels.", + "pos": "noun", + "word_frequency": 2282 + }, + { + "word": "appointment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a scheduled meeting", + "example_sentence_english": "I have an appointment with the doctor at 3 PM.", + "pos": "noun", + "word_frequency": 2284 + }, + { + "word": "barely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "almost not, hardly", + "example_sentence_english": "She could barely hear him over the noise.", + "pos": "adverb", + "word_frequency": 2285 + }, + { + "word": "bush", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shrub or small tree", + "example_sentence_english": "There's a rose bush growing by the fence.", + "pos": "noun", + "word_frequency": 2287 + }, + { + "word": "cabinet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of furniture or a group of government ministers", + "example_sentence_english": "She keeps her dishes in the kitchen cabinet.", + "pos": "noun", + "word_frequency": 2288 + }, + { + "word": "celebrate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mark an occasion with festivities", + "example_sentence_english": "We will celebrate her birthday next weekend.", + "pos": "verb", + "word_frequency": 2289 + }, + { + "word": "chocolate", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sweet food made from cocoa", + "example_sentence_english": "I love eating chocolate.", + "pos": "noun", + "word_frequency": 2290 + }, + { + "word": "coal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a black mineral used as fuel", + "example_sentence_english": "Coal is a fossil fuel used to generate electricity.", + "pos": "noun", + "word_frequency": 2291 + }, + { + "word": "contemporary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modern, current", + "example_sentence_english": "She is a leading figure in contemporary art.", + "pos": "adjective", + "word_frequency": 2292 + }, + { + "word": "criticism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expression of disapproval", + "example_sentence_english": "He received a lot of criticism for his performance.", + "pos": "noun", + "word_frequency": 2293 + }, + { + "word": "dna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deoxyribonucleic acid", + "example_sentence_english": "DNA carries genetic information in all living organisms.", + "pos": "noun", + "word_frequency": 2295 + }, + { + "word": "effectively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that produces a desired result", + "example_sentence_english": "The new system effectively reduced costs.", + "pos": "adverb", + "word_frequency": 2296 + }, + { + "word": "extensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "covering a large area or range", + "example_sentence_english": "The company has extensive experience in this field.", + "pos": "adjective", + "word_frequency": 2298 + }, + { + "word": "formation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of forming or being formed", + "example_sentence_english": "The rock formation was millions of years old.", + "pos": "noun", + "word_frequency": 2299 + }, + { + "word": "gallery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room or building for displaying art", + "example_sentence_english": "We visited an art gallery downtown.", + "pos": "noun", + "word_frequency": 2300 + }, + { + "word": "highway", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a main road", + "example_sentence_english": "The highway was busy with traffic.", + "pos": "noun", + "word_frequency": 2301 + }, + { + "word": "historic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "famous or important in history", + "example_sentence_english": "The city has many historic buildings.", + "pos": "adjective", + "word_frequency": 2302 + }, + { + "word": "hunt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chase and kill animals for food or sport", + "example_sentence_english": "They went out to hunt deer.", + "pos": "verb", + "word_frequency": 2303 + }, + { + "word": "improvement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of making something better", + "example_sentence_english": "There has been a significant improvement in his health.", + "pos": "noun", + "word_frequency": 2304 + }, + { + "word": "inch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of length (2.54 cm)", + "example_sentence_english": "The snail moved an inch at a time.", + "pos": "noun", + "word_frequency": 2305 + }, + { + "word": "initially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at first", + "example_sentence_english": "Initially, I was hesitant to accept the offer.", + "pos": "adverb", + "word_frequency": 2306 + }, + { + "word": "junior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "younger, lower in rank", + "example_sentence_english": "He is a junior member of the team.", + "pos": "adjective", + "word_frequency": 2307 + }, + { + "word": "jury", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of people who decide a verdict in court", + "example_sentence_english": "The jury delivered its verdict after two days of deliberation.", + "pos": "noun", + "word_frequency": 2308 + }, + { + "word": "monster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, frightening creature", + "example_sentence_english": "The child was afraid of the monster under his bed.", + "pos": "noun", + "word_frequency": 2311 + }, + { + "word": "obtain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get, acquire", + "example_sentence_english": "You can obtain a visa from the embassy.", + "pos": "verb", + "word_frequency": 2312 + }, + { + "word": "philosophy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of fundamental nature of knowledge, reality, and existence", + "example_sentence_english": "She is studying philosophy at university.", + "pos": "noun", + "word_frequency": 2314 + }, + { + "word": "pride", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of deep pleasure or satisfaction", + "example_sentence_english": "He felt great pride in his daughter's achievements.", + "pos": "noun", + "word_frequency": 2315 + }, + { + "word": "repeat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to say or do again", + "example_sentence_english": "Could you please repeat that?", + "pos": "verb", + "word_frequency": 2316 + }, + { + "word": "rough", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not smooth or gentle", + "example_sentence_english": "The road was rough and bumpy.", + "pos": "adjective", + "word_frequency": 2317 + }, + { + "word": "settlement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where people establish a community", + "example_sentence_english": "The early settlement grew into a large town.", + "pos": "noun", + "word_frequency": 2319 + }, + { + "word": "smell", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to perceive odor", + "example_sentence_english": "I can smell the fresh bread.", + "pos": "verb", + "word_frequency": 2320 + }, + { + "word": "speaker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who speaks; a device that produces sound", + "example_sentence_english": "The speaker gave an interesting presentation.", + "pos": "noun", + "word_frequency": 2321 + }, + { + "word": "surround", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be all around", + "example_sentence_english": "Trees surround the old house.", + "pos": "verb", + "word_frequency": 2322 + }, + { + "word": "tone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quality of sound; a manner of speaking", + "example_sentence_english": "Her tone of voice was very serious.", + "pos": "noun", + "word_frequency": 2323 + }, + { + "word": "topic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a subject of discussion", + "example_sentence_english": "We discussed many interesting topics.", + "pos": "noun", + "word_frequency": 2324 + }, + { + "word": "universal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to everyone or everything", + "example_sentence_english": "Love is a universal emotion.", + "pos": "adjective", + "word_frequency": 2326 + }, + { + "word": "vast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very great in extent or quantity", + "example_sentence_english": "The desert stretched out before them, vast and empty.", + "pos": "adjective", + "word_frequency": 2327 + }, + { + "word": "visitor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person visiting a place or person", + "example_sentence_english": "We had a visitor come to our house today.", + "pos": "noun", + "word_frequency": 2328 + }, + { + "word": "auto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a car", + "example_sentence_english": "He bought a new auto last month.", + "pos": "noun", + "word_frequency": 2329 + }, + { + "word": "consistent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acting or done in the same way over time", + "example_sentence_english": "Her performance has been consistent all season.", + "pos": "adjective", + "word_frequency": 2330 + }, + { + "word": "gray", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a color between black and white", + "example_sentence_english": "The sky was gray and cloudy.", + "pos": "adjective", + "word_frequency": 2331 + }, + { + "word": "guitar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a stringed musical instrument", + "example_sentence_english": "He loves to play the guitar.", + "pos": "noun", + "word_frequency": 2332 + }, + { + "word": "ignore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refuse to take notice of", + "example_sentence_english": "Don't ignore my advice.", + "pos": "verb", + "word_frequency": 2334 + }, + { + "word": "meal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an occasion when food is eaten", + "example_sentence_english": "We had a delicious meal for dinner.", + "pos": "noun", + "word_frequency": 2337 + }, + { + "word": "meanwhile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at the same time", + "example_sentence_english": "The train was delayed; meanwhile, we waited at the station.", + "pos": "adverb", + "word_frequency": 2338 + }, + { + "word": "naturally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a natural way; as expected", + "example_sentence_english": "She naturally excels at sports.", + "pos": "adverb", + "word_frequency": 2339 + }, + { + "word": "necessarily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as a necessary consequence", + "example_sentence_english": "More money doesn't necessarily mean more happiness.", + "pos": "adverb", + "word_frequency": 2340 + }, + { + "word": "pant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a single leg covering (usually plural 'pants')", + "example_sentence_english": "The pant leg was torn.", + "pos": "noun", + "word_frequency": 2341 + }, + { + "word": "partnership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a relationship between partners", + "example_sentence_english": "They formed a partnership to start the new business.", + "pos": "noun", + "word_frequency": 2342 + }, + { + "word": "percentage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rate, number, or amount in each hundred", + "example_sentence_english": "A large percentage of students passed the exam.", + "pos": "noun", + "word_frequency": 2343 + }, + { + "word": "pocket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small bag sewn into clothing", + "example_sentence_english": "He put his keys in his pocket.", + "pos": "noun", + "word_frequency": 2344 + }, + { + "word": "practical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to actual experience or use", + "example_sentence_english": "It's a practical solution to the problem.", + "pos": "adjective", + "word_frequency": 2345 + }, + { + "word": "primarily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for the most part; mainly", + "example_sentence_english": "The book is primarily for beginners.", + "pos": "adverb", + "word_frequency": 2346 + }, + { + "word": "rape", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unlawful sexual activity", + "example_sentence_english": "The legal definition of rape varies by jurisdiction.", + "pos": "noun", + "word_frequency": 2347 + }, + { + "word": "regardless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without regard to; despite everything", + "example_sentence_english": "He decided to go, regardless of the weather.", + "pos": "adverb", + "word_frequency": 2348 + }, + { + "word": "relative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considered in relation or in proportion to something else", + "example_sentence_english": "The cost is relative to the quality.", + "pos": "adjective", + "word_frequency": 2349 + }, + { + "word": "rescue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to save from a dangerous situation", + "example_sentence_english": "The firefighters managed to rescue everyone from the burning building.", + "pos": "verb", + "word_frequency": 2350 + }, + { + "word": "rush", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move with urgent haste", + "example_sentence_english": "We had to rush to catch the train.", + "pos": "verb", + "word_frequency": 2351 + }, + { + "word": "sharp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a keen edge or point; intelligent", + "example_sentence_english": "Be careful, that knife is very sharp.", + "pos": "adjective", + "word_frequency": 2353 + }, + { + "word": "soccer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a game played with a ball between two teams of 11 players", + "example_sentence_english": "My favorite sport is soccer.", + "pos": "noun", + "word_frequency": 2355 + }, + { + "word": "stable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not likely to change or fail", + "example_sentence_english": "The economy is finally stable.", + "pos": "adjective", + "word_frequency": 2356 + }, + { + "word": "symptom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a physical or mental feature indicating a condition", + "example_sentence_english": "Fever is a common symptom of the flu.", + "pos": "noun", + "word_frequency": 2357 + }, + { + "word": "temporary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lasting for only a limited period of time", + "example_sentence_english": "This is just a temporary solution.", + "pos": "adjective", + "word_frequency": 2358 + }, + { + "word": "trick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cunning or skillful act or scheme", + "example_sentence_english": "He played a clever trick on his friend.", + "pos": "noun", + "word_frequency": 2359 + }, + { + "word": "audio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sound", + "example_sentence_english": "The audio quality of the recording was excellent.", + "pos": "noun", + "word_frequency": 2360 + }, + { + "word": "bone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a hard, rigid form of connective tissue constituting most of the skeleton of vertebrates", + "example_sentence_english": "The dog buried its bone in the garden.", + "pos": "noun", + "word_frequency": 2361 + }, + { + "word": "chamber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a room, especially a private room or a room used for a specific purpose", + "example_sentence_english": "The king held court in the royal chamber.", + "pos": "noun", + "word_frequency": 2364 + }, + { + "word": "chart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a graphic representation of data", + "example_sentence_english": "The sales chart showed a steady increase over the last quarter.", + "pos": "noun", + "word_frequency": 2365 + }, + { + "word": "circuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a closed path through which electricity can flow", + "example_sentence_english": "The electrician checked the circuit for any faults.", + "pos": "noun", + "word_frequency": 2366 + }, + { + "word": "clothing", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garments collectively", + "example_sentence_english": "She bought some new clothing for her trip.", + "pos": "noun", + "word_frequency": 2367 + }, + { + "word": "complicate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something more difficult or complex", + "example_sentence_english": "His sudden illness will complicate our travel plans.", + "pos": "verb", + "word_frequency": 2368 + }, + { + "word": "confuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make someone unable to think clearly or understand", + "example_sentence_english": "The instructions confused me, so I couldn't finish the task.", + "pos": "verb", + "word_frequency": 2369 + }, + { + "word": "consequence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a result or effect of an action or condition", + "example_sentence_english": "The severe drought was a direct consequence of climate change.", + "pos": "noun", + "word_frequency": 2370 + }, + { + "word": "defend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protect from harm or danger", + "example_sentence_english": "The lawyer tried to defend his client in court.", + "pos": "verb", + "word_frequency": 2371 + }, + { + "word": "divide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to separate into parts or shares", + "example_sentence_english": "We need to divide the cake into equal slices.", + "pos": "verb", + "word_frequency": 2372 + }, + { + "word": "everyday", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ordinary, usual, or happening every day", + "example_sentence_english": "Brushing your teeth is an everyday activity.", + "pos": "adjective", + "word_frequency": 2374 + }, + { + "word": "extent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the degree to which something has spread or been affected", + "example_sentence_english": "We don't know the full extent of the damage yet.", + "pos": "noun", + "word_frequency": 2375 + }, + { + "word": "format", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way in which something is arranged or presented", + "example_sentence_english": "Please save the document in PDF format.", + "pos": "noun", + "word_frequency": 2376 + }, + { + "word": "gap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a break or opening in something", + "example_sentence_english": "There was a small gap between the two fences.", + "pos": "noun", + "word_frequency": 2377 + }, + { + "word": "gate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a movable barrier in a fence or wall", + "example_sentence_english": "Please close the gate when you leave.", + "pos": "noun", + "word_frequency": 2378 + }, + { + "word": "harm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical injury or damage", + "example_sentence_english": "The storm caused no serious harm to the building.", + "pos": "noun", + "word_frequency": 2379 + }, + { + "word": "healthcare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the organized provision of medical care to individuals or a community", + "example_sentence_english": "Access to affordable healthcare is a major concern.", + "pos": "noun", + "word_frequency": 2380 + }, + { + "word": "household", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a house and its occupants regarded as a unit", + "example_sentence_english": "Most households now have internet access.", + "pos": "noun", + "word_frequency": 2381 + }, + { + "word": "immigration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of coming to live permanently in a foreign country", + "example_sentence_english": "Immigration policies are often debated by politicians.", + "pos": "noun", + "word_frequency": 2382 + }, + { + "word": "impressive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evoking admiration through size, quality, or skill", + "example_sentence_english": "Her performance was truly impressive.", + "pos": "adjective", + "word_frequency": 2383 + }, + { + "word": "killer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that kills", + "example_sentence_english": "The police are still searching for the killer.", + "pos": "noun", + "word_frequency": 2385 + }, + { + "word": "lesson", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a period of learning or teaching", + "example_sentence_english": "We had a math lesson this morning.", + "pos": "noun", + "word_frequency": 2386 + }, + { + "word": "membership", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of belonging to a group or organization", + "example_sentence_english": "She applied for membership at the local gym.", + "pos": "noun", + "word_frequency": 2388 + }, + { + "word": "mirror", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a reflective surface, typically glass coated with a metallic amalgam", + "example_sentence_english": "She looked at herself in the mirror.", + "pos": "noun", + "word_frequency": 2390 + }, + { + "word": "mount", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mountain or hill (often used in names)", + "example_sentence_english": "We hiked to the top of Mount Everest.", + "pos": "noun", + "word_frequency": 2391 + }, + { + "word": "proposal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plan or suggestion, especially a formal one", + "example_sentence_english": "The committee reviewed the new budget proposal.", + "pos": "noun", + "word_frequency": 2392 + }, + { + "word": "province", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a principal administrative division of certain countries or empires", + "example_sentence_english": "Quebec is a large province in Canada.", + "pos": "noun", + "word_frequency": 2393 + }, + { + "word": "recognition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of recognizing or being recognized", + "example_sentence_english": "He received recognition for his outstanding work.", + "pos": "noun", + "word_frequency": 2394 + }, + { + "word": "reputation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the beliefs or opinions that are generally held about someone or something", + "example_sentence_english": "The restaurant has a good reputation for its food.", + "pos": "noun", + "word_frequency": 2395 + }, + { + "word": "shortly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a short time; soon", + "example_sentence_english": "The train will arrive shortly.", + "pos": "adverb", + "word_frequency": 2396 + }, + { + "word": "strongly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with great physical power or force; in a strong manner", + "example_sentence_english": "She strongly believes in equal rights for everyone.", + "pos": "adverb", + "word_frequency": 2397 + }, + { + "word": "tear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a drop of clear salty liquid secreted from the eye", + "example_sentence_english": "A single tear rolled down her cheek.", + "pos": "noun", + "word_frequency": 2398 + }, + { + "word": "thin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a small distance between opposite sides or surfaces", + "example_sentence_english": "The book has very thin pages.", + "pos": "adjective", + "word_frequency": 2399 + }, + { + "word": "accuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blame someone for something", + "example_sentence_english": "They accused him of stealing the money.", + "pos": "verb", + "word_frequency": 2402 + }, + { + "word": "adventure", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an exciting or unusual experience", + "example_sentence_english": "Going on a safari was a great adventure.", + "pos": "noun", + "word_frequency": 2403 + }, + { + "word": "argue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to express disagreement", + "example_sentence_english": "They often argue about politics.", + "pos": "verb", + "word_frequency": 2404 + }, + { + "word": "assessment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an evaluation or judgment", + "example_sentence_english": "The teacher gave a fair assessment of the student's progress.", + "pos": "noun", + "word_frequency": 2405 + }, + { + "word": "atmosphere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the air around the Earth; the mood of a place", + "example_sentence_english": "The restaurant had a very relaxed atmosphere.", + "pos": "noun", + "word_frequency": 2406 + }, + { + "word": "awful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very bad or unpleasant", + "example_sentence_english": "The weather was awful yesterday.", + "pos": "adjective", + "word_frequency": 2407 + }, + { + "word": "bedroom", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a room used for sleeping", + "example_sentence_english": "My bedroom is on the second floor.", + "pos": "noun", + "word_frequency": 2408 + }, + { + "word": "belief", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something accepted as true", + "example_sentence_english": "He has a strong belief in justice.", + "pos": "noun", + "word_frequency": 2409 + }, + { + "word": "bind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tie or fasten something tightly", + "example_sentence_english": "She used a rope to bind the packages together.", + "pos": "verb", + "word_frequency": 2410 + }, + { + "word": "carefully", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "with great attention or caution", + "example_sentence_english": "He carefully opened the old box.", + "pos": "adverb", + "word_frequency": 2411 + }, + { + "word": "cloud", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a visible mass of water droplets in the air", + "example_sentence_english": "There isn't a single cloud in the sky today.", + "pos": "noun", + "word_frequency": 2413 + }, + { + "word": "contrast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a striking difference between two things", + "example_sentence_english": "There was a sharp contrast between their opinions.", + "pos": "noun", + "word_frequency": 2415 + }, + { + "word": "elsewhere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in, at, or to some other place", + "example_sentence_english": "He decided to look for work elsewhere.", + "pos": "adverb", + "word_frequency": 2417 + }, + { + "word": "extension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of making something longer or larger", + "example_sentence_english": "They requested an extension for the project deadline.", + "pos": "noun", + "word_frequency": 2418 + }, + { + "word": "founder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who establishes an institution or settlement", + "example_sentence_english": "She is the founder of a successful tech company.", + "pos": "noun", + "word_frequency": 2419 + }, + { + "word": "gear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipment or clothing for a particular activity", + "example_sentence_english": "We packed all our camping gear before the trip.", + "pos": "noun", + "word_frequency": 2420 + }, + { + "word": "hip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the part of the body between the waist and the top of the thigh", + "example_sentence_english": "She put her hands on her hips and smiled.", + "pos": "noun", + "word_frequency": 2422 + }, + { + "word": "infrastructure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the basic physical and organizational structures needed for the operation of a society or enterprise", + "example_sentence_english": "The country needs to invest more in its infrastructure, like roads and bridges.", + "pos": "noun", + "word_frequency": 2423 + }, + { + "word": "loose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not firmly or tightly fixed in place", + "example_sentence_english": "The button on my shirt is loose.", + "pos": "adjective", + "word_frequency": 2425 + }, + { + "word": "moral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerned with the principles of right and wrong behavior", + "example_sentence_english": "It's important to make moral choices.", + "pos": "adjective", + "word_frequency": 2426 + }, + { + "word": "offensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing someone to feel upset, angry, or insulted", + "example_sentence_english": "His comments were highly offensive to many people.", + "pos": "adjective", + "word_frequency": 2427 + }, + { + "word": "package", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an object or set of objects wrapped or packed in a container", + "example_sentence_english": "I received a package in the mail today.", + "pos": "noun", + "word_frequency": 2429 + }, + { + "word": "poverty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being extremely poor", + "example_sentence_english": "Many organizations are working to reduce poverty worldwide.", + "pos": "noun", + "word_frequency": 2430 + }, + { + "word": "qualify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be entitled to a particular benefit or privilege by fulfilling a necessary condition", + "example_sentence_english": "You need to pass this exam to qualify for the next level.", + "pos": "verb", + "word_frequency": 2431 + }, + { + "word": "railway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a track or set of tracks made of steel rails along which passenger and freight trains run", + "example_sentence_english": "The old railway line is now used for walking.", + "pos": "noun", + "word_frequency": 2432 + }, + { + "word": "ridiculous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserving or inviting derision or mockery; absurd", + "example_sentence_english": "That's a ridiculous idea, it will never work.", + "pos": "adjective", + "word_frequency": 2433 + }, + { + "word": "sensitive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quick to detect or respond to slight changes, signals, or influences", + "example_sentence_english": "She is very sensitive to criticism.", + "pos": "adjective", + "word_frequency": 2434 + }, + { + "word": "server", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who serves food or drinks; a computer program or device that provides a service to other computer programs or devices", + "example_sentence_english": "The restaurant server was very polite.", + "pos": "noun", + "word_frequency": 2435 + }, + { + "word": "shock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden upsetting or surprising event or experience", + "example_sentence_english": "The news of his resignation came as a complete shock.", + "pos": "noun", + "word_frequency": 2436 + }, + { + "word": "silence", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "complete absence of sound", + "example_sentence_english": "There was a moment of silence before the announcement.", + "pos": "noun", + "word_frequency": 2437 + }, + { + "word": "superior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "higher in rank, status, or quality", + "example_sentence_english": "This new model is superior to the old one in every way.", + "pos": "adjective", + "word_frequency": 2438 + }, + { + "word": "supporter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who approves of and encourages someone or something", + "example_sentence_english": "She is a strong supporter of environmental protection.", + "pos": "noun", + "word_frequency": 2439 + }, + { + "word": "thick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a large distance between two sides", + "example_sentence_english": "The book has a thick cover.", + "pos": "adjective", + "word_frequency": 2440 + }, + { + "word": "ton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of weight equal to 2,000 pounds or 1,000 kilograms", + "example_sentence_english": "He said he had a ton of work to do.", + "pos": "noun", + "word_frequency": 2441 + }, + { + "word": "transition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process or a period of changing from one state or condition to another", + "example_sentence_english": "The transition from school to university can be challenging.", + "pos": "noun", + "word_frequency": 2442 + }, + { + "word": "violent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "using or involving physical force intended to hurt, damage, or kill someone or something", + "example_sentence_english": "The storm was very violent, with strong winds and heavy rain.", + "pos": "adjective", + "word_frequency": 2443 + }, + { + "word": "voter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who votes or has the right to vote in an election", + "example_sentence_english": "Every voter has the right to choose their representative.", + "pos": "noun", + "word_frequency": 2444 + }, + { + "word": "wash", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to clean with water and usually soap", + "example_sentence_english": "Please wash your hands before dinner.", + "pos": "verb", + "word_frequency": 2445 + }, + { + "word": "acid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical substance that tastes sour, reacts with metals, and turns litmus paper red", + "example_sentence_english": "Lemon juice is an acid.", + "pos": "noun", + "word_frequency": 2446 + }, + { + "word": "actress", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a female actor", + "example_sentence_english": "She dreams of becoming a famous actress.", + "pos": "noun", + "word_frequency": 2447 + }, + { + "word": "administrative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the running of a business, organization, etc.", + "example_sentence_english": "He works in the administrative department.", + "pos": "adjective", + "word_frequency": 2448 + }, + { + "word": "angel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a spiritual being acting as a messenger of God", + "example_sentence_english": "The Christmas tree was topped with an angel.", + "pos": "noun", + "word_frequency": 2451 + }, + { + "word": "anxiety", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of worry, nervousness, or unease", + "example_sentence_english": "She felt a lot of anxiety before her exam.", + "pos": "noun", + "word_frequency": 2452 + }, + { + "word": "bonus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an amount of money added to wages as a reward for good performance", + "example_sentence_english": "The employees received a year-end bonus.", + "pos": "noun", + "word_frequency": 2453 + }, + { + "word": "castle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large fortified building or set of buildings", + "example_sentence_english": "We visited an old castle on our trip.", + "pos": "noun", + "word_frequency": 2454 + }, + { + "word": "charity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an organization set up to provide help and raise money for those in need", + "example_sentence_english": "She donates regularly to a local charity.", + "pos": "noun", + "word_frequency": 2455 + }, + { + "word": "curious", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eager to know or learn something", + "example_sentence_english": "The cat was curious about the new toy.", + "pos": "adjective", + "word_frequency": 2456 + }, + { + "word": "discovery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action or process of finding or learning something for the first time", + "example_sentence_english": "The discovery of penicillin changed medicine forever.", + "pos": "noun", + "word_frequency": 2457 + }, + { + "word": "duke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male ruler of a small independent state or a nobleman of the highest rank", + "example_sentence_english": "The duke attended the royal wedding.", + "pos": "noun", + "word_frequency": 2458 + }, + { + "word": "encourage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give support, confidence, or hope to someone", + "example_sentence_english": "Her parents always encourage her to study hard.", + "pos": "verb", + "word_frequency": 2460 + }, + { + "word": "enforcement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of compelling observance of or compliance with a law, rule, or obligation", + "example_sentence_english": "Law enforcement is responsible for maintaining order.", + "pos": "noun", + "word_frequency": 2461 + }, + { + "word": "flash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden brief burst of light", + "example_sentence_english": "There was a flash of lightning during the storm.", + "pos": "noun", + "word_frequency": 2462 + }, + { + "word": "formal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "done in accordance with rules of convention or etiquette; suitable for an official or important occasion", + "example_sentence_english": "You need to wear formal clothes for the interview.", + "pos": "adjective", + "word_frequency": 2463 + }, + { + "word": "formula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mathematical relationship or rule expressed in symbols", + "example_sentence_english": "The scientist developed a new formula for the chemical reaction.", + "pos": "noun", + "word_frequency": 2464 + }, + { + "word": "fort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fortified building or strategic position", + "example_sentence_english": "The soldiers built a fort to defend their position.", + "pos": "noun", + "word_frequency": 2465 + }, + { + "word": "gross", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "total, without deductions; or, very unpleasant", + "example_sentence_english": "His gross income is higher than his net income.", + "pos": "adjective", + "word_frequency": 2466 + }, + { + "word": "hungry", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feeling or showing the need for food", + "example_sentence_english": "I'm so hungry, I could eat a horse!", + "pos": "adjective", + "word_frequency": 2467 + }, + { + "word": "inform", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give someone facts or information", + "example_sentence_english": "Please inform me if there are any changes.", + "pos": "verb", + "word_frequency": 2468 + }, + { + "word": "innocent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not guilty of a crime or offense", + "example_sentence_english": "The jury found the defendant innocent.", + "pos": "adjective", + "word_frequency": 2469 + }, + { + "word": "math", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the study of numbers, shapes, and quantities", + "example_sentence_english": "My favorite subject in school is math.", + "pos": "noun", + "word_frequency": 2473 + }, + { + "word": "mystery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something that is difficult or impossible to understand or explain", + "example_sentence_english": "The disappearance of the ancient artifact remains a mystery.", + "pos": "noun", + "word_frequency": 2474 + }, + { + "word": "palace", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the official residence of a sovereign, archbishop, bishop, or other exalted person", + "example_sentence_english": "The Queen lives in a beautiful palace.", + "pos": "noun", + "word_frequency": 2475 + }, + { + "word": "penalty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a punishment imposed for breaking a law, rule, or contract", + "example_sentence_english": "The referee awarded a penalty kick.", + "pos": "noun", + "word_frequency": 2476 + }, + { + "word": "pet", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a domestic or tamed animal kept for companionship or pleasure", + "example_sentence_english": "Do you have any pets at home.", + "pos": "noun", + "word_frequency": 2477 + }, + { + "word": "photography", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the art or process of producing images by the action of radiant energy and especially light on a sensitive surface", + "example_sentence_english": "She is studying photography at college.", + "pos": "noun", + "word_frequency": 2478 + }, + { + "word": "protest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statement or action expressing disapproval of or objection to something", + "example_sentence_english": "The students organized a protest against the tuition fees.", + "pos": "noun", + "word_frequency": 2479 + }, + { + "word": "publication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publication", + "example_sentence_english": "The new scientific publication was widely discussed.", + "pos": "noun", + "word_frequency": 2480 + }, + { + "word": "rating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rating", + "example_sentence_english": "The movie received a high rating from critics.", + "pos": "noun", + "word_frequency": 2481 + }, + { + "word": "respectively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectively", + "example_sentence_english": "John and Mary scored 90 and 85 points, respectively.", + "pos": "adverb", + "word_frequency": 2482 + }, + { + "word": "silent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silent", + "example_sentence_english": "The library was completely silent.", + "pos": "adjective", + "word_frequency": 2484 + }, + { + "word": "successfully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successfully", + "example_sentence_english": "She successfully completed the difficult task.", + "pos": "adverb", + "word_frequency": 2485 + }, + { + "word": "temple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple", + "example_sentence_english": "We visited an ancient temple during our trip.", + "pos": "noun", + "word_frequency": 2486 + }, + { + "word": "trail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trail", + "example_sentence_english": "We followed the hiking trail through the forest.", + "pos": "noun", + "word_frequency": 2487 + }, + { + "word": "uncle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "uncle", + "example_sentence_english": "My uncle lives in New York.", + "pos": "noun", + "word_frequency": 2488 + }, + { + "word": "unusual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unusual", + "example_sentence_english": "It's unusual to see snow in April.", + "pos": "adjective", + "word_frequency": 2489 + }, + { + "word": "arrival", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrival", + "example_sentence_english": "We waited for their arrival at the airport.", + "pos": "noun", + "word_frequency": 2491 + }, + { + "word": "assault", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assault", + "example_sentence_english": "The police are investigating the assault.", + "pos": "noun", + "word_frequency": 2492 + }, + { + "word": "awareness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awareness", + "example_sentence_english": "There is growing public awareness of environmental issues.", + "pos": "noun", + "word_frequency": 2493 + }, + { + "word": "badly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "badly", + "example_sentence_english": "He played badly in the first half of the game.", + "pos": "adverb", + "word_frequency": 2494 + }, + { + "word": "bath", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bath", + "example_sentence_english": "I like to take a hot bath after work.", + "pos": "noun", + "word_frequency": 2495 + }, + { + "word": "capture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capture", + "example_sentence_english": "The police managed to capture the suspect.", + "pos": "verb", + "word_frequency": 2496 + }, + { + "word": "chase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chase", + "example_sentence_english": "The dog loves to chase squirrels in the park.", + "pos": "verb", + "word_frequency": 2497 + }, + { + "word": "component", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "component", + "example_sentence_english": "Each component of the machine must work perfectly.", + "pos": "noun", + "word_frequency": 2498 + }, + { + "word": "concrete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concrete", + "example_sentence_english": "The building's foundation is made of concrete.", + "pos": "noun", + "word_frequency": 2499 + }, + { + "word": "deeply", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deeply", + "example_sentence_english": "She was deeply moved by the story.", + "pos": "adverb", + "word_frequency": 2501 + }, + { + "word": "expectation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expectation", + "example_sentence_english": "His performance exceeded all expectations.", + "pos": "noun", + "word_frequency": 2502 + }, + { + "word": "explanation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explanation", + "example_sentence_english": "Can you give me an explanation for this?", + "pos": "noun", + "word_frequency": 2503 + }, + { + "word": "exposure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exposure", + "example_sentence_english": "Prolonged exposure to the sun can be harmful.", + "pos": "noun", + "word_frequency": 2504 + }, + { + "word": "fiction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fiction", + "example_sentence_english": "I prefer reading non-fiction to fiction.", + "pos": "noun", + "word_frequency": 2505 + }, + { + "word": "guarantee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guarantee", + "example_sentence_english": "The product comes with a five-year guarantee.", + "pos": "noun", + "word_frequency": 2506 + }, + { + "word": "happiness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happiness", + "example_sentence_english": "Her happiness was evident in her smile.", + "pos": "noun", + "word_frequency": 2507 + }, + { + "word": "horrible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horrible", + "example_sentence_english": "The weather was absolutely horrible yesterday.", + "pos": "adjective", + "word_frequency": 2509 + }, + { + "word": "ideal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideal", + "example_sentence_english": "This is the ideal place for a picnic.", + "pos": "adjective", + "word_frequency": 2510 + }, + { + "word": "islamic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamic", + "example_sentence_english": "We visited an Islamic art museum.", + "pos": "adjective", + "word_frequency": 2512 + }, + { + "word": "legend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legend", + "example_sentence_english": "The local legend tells of a hidden treasure.", + "pos": "noun", + "word_frequency": 2515 + }, + { + "word": "lieutenant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lieutenant", + "example_sentence_english": "The lieutenant led his platoon into battle.", + "pos": "noun", + "word_frequency": 2516 + }, + { + "word": "mini", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mini", + "example_sentence_english": "She bought a mini skirt.", + "pos": "adjective", + "word_frequency": 2517 + }, + { + "word": "mood", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mood", + "example_sentence_english": "He's in a good mood today.", + "pos": "noun", + "word_frequency": 2518 + }, + { + "word": "muscle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscle", + "example_sentence_english": "Regular exercise helps build strong muscles.", + "pos": "noun", + "word_frequency": 2519 + }, + { + "word": "p.m", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "afternoon/evening", + "example_sentence_english": "The meeting is at 3 p.m.", + "pos": "noun", + "word_frequency": 2520 + }, + { + "word": "passion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strong emotion or enthusiasm", + "example_sentence_english": "She has a great passion for music.", + "pos": "noun", + "word_frequency": 2521 + }, + { + "word": "procedure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a series of actions conducted in a certain order", + "example_sentence_english": "Follow the correct procedure for safety.", + "pos": "noun", + "word_frequency": 2522 + }, + { + "word": "producer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or company that makes or grows goods", + "example_sentence_english": "The film producer announced the new project.", + "pos": "noun", + "word_frequency": 2523 + }, + { + "word": "rank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a position in a hierarchy", + "example_sentence_english": "He holds a high rank in the army.", + "pos": "noun", + "word_frequency": 2524 + }, + { + "word": "replacement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that takes the place of another", + "example_sentence_english": "We need a replacement for the broken part.", + "pos": "noun", + "word_frequency": 2525 + }, + { + "word": "retire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop working due to age", + "example_sentence_english": "My grandfather plans to retire next year.", + "pos": "verb", + "word_frequency": 2526 + }, + { + "word": "sand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a loose granular substance", + "example_sentence_english": "The children played in the sand.", + "pos": "noun", + "word_frequency": 2527 + }, + { + "word": "saving", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money kept for future use", + "example_sentence_english": "She put her savings into a bank account.", + "pos": "noun", + "word_frequency": 2528 + }, + { + "word": "settle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resolve a dispute or to make a home", + "example_sentence_english": "Let's try to settle this argument peacefully.", + "pos": "verb", + "word_frequency": 2529 + }, + { + "word": "shadow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dark area or shape produced by an object blocking light", + "example_sentence_english": "The tree cast a long shadow.", + "pos": "noun", + "word_frequency": 2530 + }, + { + "word": "tag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a label attached to something", + "example_sentence_english": "Read the price tag before buying.", + "pos": "noun", + "word_frequency": 2531 + }, + { + "word": "tape", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a narrow strip of material", + "example_sentence_english": "Please pass me the sticky tape.", + "pos": "noun", + "word_frequency": 2532 + }, + { + "word": "thread", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, thin strand of cotton, nylon, or other fibers", + "example_sentence_english": "She used a needle and thread to mend the shirt.", + "pos": "noun", + "word_frequency": 2533 + }, + { + "word": "wage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fixed regular payment earned for work or services", + "example_sentence_english": "He earns a good wage for his work.", + "pos": "noun", + "word_frequency": 2535 + }, + { + "word": "avenue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a broad road in a town or city", + "example_sentence_english": "They live on a tree-lined avenue.", + "pos": "noun", + "word_frequency": 2537 + }, + { + "word": "bore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make someone feel tired and uninterested", + "example_sentence_english": "His long speech began to bore the audience.", + "pos": "verb", + "word_frequency": 2538 + }, + { + "word": "clock", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an instrument for measuring time", + "example_sentence_english": "The clock on the wall shows the time.", + "pos": "noun", + "word_frequency": 2540 + }, + { + "word": "commissioner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of a commission", + "example_sentence_english": "The police commissioner addressed the public.", + "pos": "noun", + "word_frequency": 2541 + }, + { + "word": "commitment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a promise or firm decision to do something", + "example_sentence_english": "She showed great commitment to her studies.", + "pos": "noun", + "word_frequency": 2542 + }, + { + "word": "confident", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling or showing confidence in oneself or one's abilities", + "example_sentence_english": "He felt confident about passing the exam.", + "pos": "adjective", + "word_frequency": 2543 + }, + { + "word": "custom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a traditional and widely accepted way of behaving or doing something", + "example_sentence_english": "It's a local custom to celebrate with a feast.", + "pos": "noun", + "word_frequency": 2544 + }, + { + "word": "deny", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to state that something is not true", + "example_sentence_english": "He denied all the accusations.", + "pos": "verb", + "word_frequency": 2545 + }, + { + "word": "desk", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of furniture with a flat top and drawers", + "example_sentence_english": "She sat at her desk to work.", + "pos": "noun", + "word_frequency": 2546 + }, + { + "word": "ear", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the organ of hearing", + "example_sentence_english": "He whispered something in her ear.", + "pos": "noun", + "word_frequency": 2547 + }, + { + "word": "electricity", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a form of energy", + "example_sentence_english": "The house lost electricity during the storm.", + "pos": "noun", + "word_frequency": 2548 + }, + { + "word": "farmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who owns or manages a farm", + "example_sentence_english": "The farmer harvested the crops.", + "pos": "noun", + "word_frequency": 2549 + }, + { + "word": "gym", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a gymnasium", + "example_sentence_english": "I go to the gym three times a week.", + "pos": "noun", + "word_frequency": 2551 + }, + { + "word": "helpful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "providing help; useful", + "example_sentence_english": "She was very helpful with my homework.", + "pos": "adjective", + "word_frequency": 2552 + }, + { + "word": "horror", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an intense feeling of fear, shock, or disgust", + "example_sentence_english": "The news filled them with horror.", + "pos": "noun", + "word_frequency": 2553 + }, + { + "word": "label", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small piece of paper, fabric, plastic, or similar material attached to an object", + "example_sentence_english": "Read the label before washing the clothes.", + "pos": "noun", + "word_frequency": 2556 + }, + { + "word": "naked", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without clothes", + "example_sentence_english": "The baby was naked after its bath.", + "pos": "adjective", + "word_frequency": 2558 + }, + { + "word": "output", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "result; production", + "example_sentence_english": "The factory's output increased this quarter.", + "pos": "noun", + "word_frequency": 2560 + }, + { + "word": "pitch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a throw; a sales presentation; the quality of a sound", + "example_sentence_english": "He made a great pitch to the investors.", + "pos": "noun", + "word_frequency": 2561 + }, + { + "word": "pizza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pizza", + "example_sentence_english": "Let's order a large pizza for dinner.", + "pos": "noun", + "word_frequency": 2562 + }, + { + "word": "plain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simple; clear; not decorated", + "example_sentence_english": "She prefers plain clothes without any patterns.", + "pos": "adjective", + "word_frequency": 2563 + }, + { + "word": "rear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the back part", + "example_sentence_english": "The car was hit in the rear.", + "pos": "noun", + "word_frequency": 2564 + }, + { + "word": "romantic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to love or romance", + "example_sentence_english": "They had a very romantic dinner by candlelight.", + "pos": "adjective", + "word_frequency": 2565 + }, + { + "word": "strategic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to strategy; important for a plan", + "example_sentence_english": "This was a strategic move to gain market share.", + "pos": "adjective", + "word_frequency": 2566 + }, + { + "word": "swim", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to move through water using your body", + "example_sentence_english": "I love to swim in the ocean during summer.", + "pos": "verb", + "word_frequency": 2567 + }, + { + "word": "welfare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "health, happiness, and fortunes of a person or group", + "example_sentence_english": "The government is responsible for the welfare of its citizens.", + "pos": "noun", + "word_frequency": 2568 + }, + { + "word": "wire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin strand of metal", + "example_sentence_english": "Be careful, there's a loose wire sticking out.", + "pos": "noun", + "word_frequency": 2569 + }, + { + "word": "afterwards", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at a later time; subsequently", + "example_sentence_english": "We went to the cinema and afterwards we had dinner.", + "pos": "adverb", + "word_frequency": 2571 + }, + { + "word": "alright", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "acceptable; satisfactory; well", + "example_sentence_english": "Are you alright? You look a bit pale.", + "pos": "adjective", + "word_frequency": 2572 + }, + { + "word": "android", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a robot with a human appearance", + "example_sentence_english": "Many new phones run on the Android operating system.", + "pos": "noun", + "word_frequency": 2573 + }, + { + "word": "anger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong feeling of annoyance, displeasure, or hostility", + "example_sentence_english": "He couldn't control his anger after the argument.", + "pos": "noun", + "word_frequency": 2574 + }, + { + "word": "architecture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the art or practice of designing and constructing buildings", + "example_sentence_english": "The city is famous for its modern architecture.", + "pos": "noun", + "word_frequency": 2575 + }, + { + "word": "assist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help or support someone or something", + "example_sentence_english": "Can I assist you with your bags?", + "pos": "verb", + "word_frequency": 2576 + }, + { + "word": "behalf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the interest of; as a representative of", + "example_sentence_english": "He spoke on behalf of the entire team.", + "pos": "noun", + "word_frequency": 2577 + }, + { + "word": "belt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strip of material worn around the waist", + "example_sentence_english": "He tightened his belt after eating too much.", + "pos": "noun", + "word_frequency": 2578 + }, + { + "word": "ceremony", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a formal religious or public occasion", + "example_sentence_english": "The wedding ceremony was beautiful.", + "pos": "noun", + "word_frequency": 2579 + }, + { + "word": "comic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes people laugh; a comic book", + "example_sentence_english": "He loves reading old comic books.", + "pos": "noun", + "word_frequency": 2580 + }, + { + "word": "cop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a police officer (informal)", + "example_sentence_english": "The cop directed traffic at the intersection.", + "pos": "noun", + "word_frequency": 2581 + }, + { + "word": "designer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plans the form or structure of something", + "example_sentence_english": "She works as a fashion designer.", + "pos": "noun", + "word_frequency": 2583 + }, + { + "word": "diamond", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a precious stone; a geometric shape", + "example_sentence_english": "She wore a beautiful diamond ring.", + "pos": "noun", + "word_frequency": 2584 + }, + { + "word": "disappoint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail to fulfill the hopes or expectations of", + "example_sentence_english": "I hope I don't disappoint you with my performance.", + "pos": "verb", + "word_frequency": 2585 + }, + { + "word": "economics", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of how societies use scarce resources", + "example_sentence_english": "She is studying economics at university.", + "pos": "noun", + "word_frequency": 2586 + }, + { + "word": "efficient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "achieving maximum productivity with minimum wasted effort or expense", + "example_sentence_english": "The new system is much more efficient.", + "pos": "adjective", + "word_frequency": 2587 + }, + { + "word": "electrical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or operated by electricity", + "example_sentence_english": "He's training to be an electrical engineer.", + "pos": "adjective", + "word_frequency": 2588 + }, + { + "word": "employ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give work to someone; to make use of", + "example_sentence_english": "The company employs over 500 people.", + "pos": "verb", + "word_frequency": 2589 + }, + { + "word": "essentially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basically; fundamentally", + "example_sentence_english": "Essentially, we need to start over.", + "pos": "adverb", + "word_frequency": 2590 + }, + { + "word": "establishment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a business or organization; the ruling class of a society", + "example_sentence_english": "It's a well-known establishment in the city center.", + "pos": "noun", + "word_frequency": 2591 + }, + { + "word": "ghost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the spirit of a dead person", + "example_sentence_english": "They say the old house is haunted by a ghost.", + "pos": "noun", + "word_frequency": 2592 + }, + { + "word": "hockey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a team sport played on ice or a field", + "example_sentence_english": "Ice hockey is very popular in Canada.", + "pos": "noun", + "word_frequency": 2593 + }, + { + "word": "hunting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the activity of chasing and killing wild animals", + "example_sentence_english": "Deer hunting is a popular sport in this region.", + "pos": "noun", + "word_frequency": 2596 + }, + { + "word": "kit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of articles or equipment for a specific purpose", + "example_sentence_english": "He bought a first-aid kit for his car.", + "pos": "noun", + "word_frequency": 2599 + }, + { + "word": "lab", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laboratory", + "example_sentence_english": "We conducted the experiment in the science lab.", + "pos": "noun", + "word_frequency": 2600 + }, + { + "word": "min", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute (abbreviation)", + "example_sentence_english": "I'll be there in five min.", + "pos": "noun", + "word_frequency": 2601 + }, + { + "word": "nervous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anxious, uneasy", + "example_sentence_english": "She felt nervous before her presentation.", + "pos": "adjective", + "word_frequency": 2605 + }, + { + "word": "odd", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strange, unusual", + "example_sentence_english": "That's an odd thing to say.", + "pos": "adjective", + "word_frequency": 2606 + }, + { + "word": "ordinary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "normal, common", + "example_sentence_english": "It was just an ordinary day.", + "pos": "adjective", + "word_frequency": 2608 + }, + { + "word": "participate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "take part in", + "example_sentence_english": "Everyone should participate in the discussion.", + "pos": "verb", + "word_frequency": 2609 + }, + { + "word": "prayer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of praying", + "example_sentence_english": "She said a silent prayer before bed.", + "pos": "noun", + "word_frequency": 2611 + }, + { + "word": "principle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fundamental truth or belief", + "example_sentence_english": "He lives by strong moral principles.", + "pos": "noun", + "word_frequency": 2612 + }, + { + "word": "racist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudiced against a race", + "example_sentence_english": "His comments were widely condemned as racist.", + "pos": "adjective", + "word_frequency": 2613 + }, + { + "word": "sexy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sexually attractive", + "example_sentence_english": "She wore a very sexy dress.", + "pos": "adjective", + "word_frequency": 2614 + }, + { + "word": "soil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earth, ground", + "example_sentence_english": "The plants grow well in rich soil.", + "pos": "noun", + "word_frequency": 2615 + }, + { + "word": "solve", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "find an answer to", + "example_sentence_english": "Can you help me solve this puzzle?", + "pos": "verb", + "word_frequency": 2616 + }, + { + "word": "stomach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "organ for digestion", + "example_sentence_english": "My stomach hurts after eating too much.", + "pos": "noun", + "word_frequency": 2617 + }, + { + "word": "suck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draw into the mouth; be bad (informal)", + "example_sentence_english": "The baby continued to suck his thumb.", + "pos": "verb", + "word_frequency": 2618 + }, + { + "word": "trash", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rubbish, waste", + "example_sentence_english": "Please take out the trash.", + "pos": "noun", + "word_frequency": 2619 + }, + { + "word": "ugly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unpleasant to look at", + "example_sentence_english": "That's an ugly sweater.", + "pos": "adjective", + "word_frequency": 2620 + }, + { + "word": "virus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infectious agent; computer program", + "example_sentence_english": "The doctor said it was a common cold virus.", + "pos": "noun", + "word_frequency": 2622 + }, + { + "word": "walker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who walks; a frame for support", + "example_sentence_english": "The old man used a walker to move around.", + "pos": "noun", + "word_frequency": 2623 + }, + { + "word": "boost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of helping or encouraging", + "example_sentence_english": "The good news gave him a confidence boost.", + "pos": "noun", + "word_frequency": 2627 + }, + { + "word": "bureau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "government department; chest of drawers", + "example_sentence_english": "He works for a government bureau.", + "pos": "noun", + "word_frequency": 2628 + }, + { + "word": "colonel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a military rank", + "example_sentence_english": "The colonel commanded the regiment.", + "pos": "noun", + "word_frequency": 2629 + }, + { + "word": "comfort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a state of physical ease and freedom from pain or constraint", + "example_sentence_english": "She found comfort in her old blanket.", + "pos": "noun", + "word_frequency": 2630 + }, + { + "word": "cousin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a child of one's aunt or uncle", + "example_sentence_english": "My cousin is coming to visit next week.", + "pos": "noun", + "word_frequency": 2631 + }, + { + "word": "crack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a line on a surface where it has broken", + "example_sentence_english": "There's a crack in the window.", + "pos": "noun", + "word_frequency": 2632 + }, + { + "word": "deck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a floor of a ship; a pack of cards", + "example_sentence_english": "We played cards with a new deck.", + "pos": "noun", + "word_frequency": 2633 + }, + { + "word": "dragon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mythical creature", + "example_sentence_english": "Dragons are often depicted in fantasy stories.", + "pos": "noun", + "word_frequency": 2634 + }, + { + "word": "dramatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden and striking; relating to drama", + "example_sentence_english": "There was a dramatic change in the weather.", + "pos": "adjective", + "word_frequency": 2635 + }, + { + "word": "dust", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fine powder of earth or other matter", + "example_sentence_english": "The old books were covered in dust.", + "pos": "noun", + "word_frequency": 2636 + }, + { + "word": "dutch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to the Netherlands", + "example_sentence_english": "My friend is Dutch.", + "pos": "adjective", + "word_frequency": 2637 + }, + { + "word": "evolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the gradual development of something", + "example_sentence_english": "The evolution of technology is rapid.", + "pos": "noun", + "word_frequency": 2638 + }, + { + "word": "hire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employ for wages; obtain the temporary use of", + "example_sentence_english": "The company decided to hire a new manager.", + "pos": "verb", + "word_frequency": 2639 + }, + { + "word": "illness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sickness", + "example_sentence_english": "She is recovering from a long illness.", + "pos": "noun", + "word_frequency": 2640 + }, + { + "word": "inspiration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden brilliant or creative idea", + "example_sentence_english": "His music is a great source of inspiration for me.", + "pos": "noun", + "word_frequency": 2641 + }, + { + "word": "knife", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cutting tool", + "example_sentence_english": "Be careful with that sharp knife.", + "pos": "noun", + "word_frequency": 2642 + }, + { + "word": "memorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a monument or statue established to remind people of a person or event", + "example_sentence_english": "They built a memorial to honor the fallen soldiers.", + "pos": "noun", + "word_frequency": 2643 + }, + { + "word": "minority", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a smaller number or part", + "example_sentence_english": "The decision was made by a small minority of the members.", + "pos": "noun", + "word_frequency": 2645 + }, + { + "word": "mum", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother (informal)", + "example_sentence_english": "My mum always bakes a cake for my birthday.", + "pos": "noun", + "word_frequency": 2646 + }, + { + "word": "priority", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something that is regarded as more important than others", + "example_sentence_english": "Safety is our top priority.", + "pos": "noun", + "word_frequency": 2647 + }, + { + "word": "promotion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of promoting someone to a higher position or rank", + "example_sentence_english": "She received a promotion at work last week.", + "pos": "noun", + "word_frequency": 2648 + }, + { + "word": "rail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bar or series of bars, typically fixed on upright supports, serving as a barrier or support", + "example_sentence_english": "The train runs on a steel rail.", + "pos": "noun", + "word_frequency": 2649 + }, + { + "word": "reader", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who reads", + "example_sentence_english": "She is an avid reader of fantasy novels.", + "pos": "noun", + "word_frequency": 2650 + }, + { + "word": "remote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "far away from other places, people, or things", + "example_sentence_english": "They live in a remote village in the mountains.", + "pos": "adjective", + "word_frequency": 2651 + }, + { + "word": "repair", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of fixing or mending something", + "example_sentence_english": "The car needs a major repair.", + "pos": "noun", + "word_frequency": 2652 + }, + { + "word": "root", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a plant that attaches it to the ground or to a support", + "example_sentence_english": "The tree has deep roots.", + "pos": "noun", + "word_frequency": 2653 + }, + { + "word": "saint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person acknowledged as holy or virtuous", + "example_sentence_english": "Saint Patrick is the patron saint of Ireland.", + "pos": "noun", + "word_frequency": 2654 + }, + { + "word": "steal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take (another person's property) without permission or legal right", + "example_sentence_english": "Someone tried to steal my bike.", + "pos": "verb", + "word_frequency": 2655 + }, + { + "word": "telephone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a system for transmitting voices over a distance", + "example_sentence_english": "Can I use your telephone to make a call?", + "pos": "noun", + "word_frequency": 2656 + }, + { + "word": "abandon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave (a place, thing, or person) permanently", + "example_sentence_english": "The crew had to abandon the sinking ship.", + "pos": "verb", + "word_frequency": 2661 + }, + { + "word": "acquire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to buy or obtain (an asset or object) for oneself", + "example_sentence_english": "She hopes to acquire a new skill this year.", + "pos": "verb", + "word_frequency": 2662 + }, + { + "word": "alliance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a union or association formed for mutual benefit", + "example_sentence_english": "The two countries formed an alliance.", + "pos": "noun", + "word_frequency": 2664 + }, + { + "word": "annoy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to irritate or bother (someone)", + "example_sentence_english": "His constant whistling began to annoy me.", + "pos": "verb", + "word_frequency": 2665 + }, + { + "word": "bid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an offer of a price, especially at an auction", + "example_sentence_english": "She made a high bid for the painting.", + "pos": "noun", + "word_frequency": 2667 + }, + { + "word": "buddy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a close friend", + "example_sentence_english": "He's my best buddy from college.", + "pos": "noun", + "word_frequency": 2669 + }, + { + "word": "bury", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put or hide underground", + "example_sentence_english": "They decided to bury the treasure in the garden.", + "pos": "verb", + "word_frequency": 2670 + }, + { + "word": "butter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a pale yellow edible fatty substance made by churning cream", + "example_sentence_english": "Please pass the butter for the toast.", + "pos": "noun", + "word_frequency": 2671 + }, + { + "word": "conclusion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the end or finish of an event or process", + "example_sentence_english": "In conclusion, we need to work together.", + "pos": "noun", + "word_frequency": 2673 + }, + { + "word": "congratulation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an expression of praise for an achievement or good wishes on a special occasion", + "example_sentence_english": "She received a congratulation for her excellent work.", + "pos": "noun", + "word_frequency": 2674 + }, + { + "word": "convince", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to persuade (someone) to do something", + "example_sentence_english": "I tried to convince him to join us.", + "pos": "verb", + "word_frequency": 2675 + }, + { + "word": "crystal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of a homogeneous solid substance having a natural geometric form", + "example_sentence_english": "The chandelier was made of sparkling crystal.", + "pos": "noun", + "word_frequency": 2677 + }, + { + "word": "dean", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a head of a college or university faculty or department", + "example_sentence_english": "The dean announced the new policy.", + "pos": "noun", + "word_frequency": 2678 + }, + { + "word": "decent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of an acceptable standard; satisfactory", + "example_sentence_english": "He's a decent person, always willing to help.", + "pos": "adjective", + "word_frequency": 2679 + }, + { + "word": "decline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refuse; decrease", + "example_sentence_english": "He had to decline the invitation due to a prior commitment.", + "pos": "verb", + "word_frequency": 2680 + }, + { + "word": "delay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of time by which something is late", + "example_sentence_english": "There was a significant delay in the flight.", + "pos": "noun", + "word_frequency": 2681 + }, + { + "word": "desert", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a very dry, empty area of land", + "example_sentence_english": "The Sahara is the largest hot desert in the world.", + "pos": "noun", + "word_frequency": 2682 + }, + { + "word": "downtown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to or in the central part of a city", + "example_sentence_english": "Let's go downtown for dinner tonight.", + "pos": "adverb", + "word_frequency": 2683 + }, + { + "word": "elite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superior; best", + "example_sentence_english": "Only an elite group of athletes qualifies for the Olympics.", + "pos": "adjective", + "word_frequency": 2684 + }, + { + "word": "hop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to jump on one foot", + "example_sentence_english": "The rabbit hopped across the garden.", + "pos": "verb", + "word_frequency": 2687 + }, + { + "word": "insane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mad; crazy", + "example_sentence_english": "The idea sounds completely insane.", + "pos": "adjective", + "word_frequency": 2688 + }, + { + "word": "install", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put in place for use", + "example_sentence_english": "We need to install new software on the computer.", + "pos": "verb", + "word_frequency": 2689 + }, + { + "word": "landing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of coming to rest on a surface", + "example_sentence_english": "The plane made a smooth landing.", + "pos": "noun", + "word_frequency": 2691 + }, + { + "word": "layer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sheet or thickness of material", + "example_sentence_english": "There was a thick layer of dust on the old books.", + "pos": "noun", + "word_frequency": 2692 + }, + { + "word": "nowhere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not anywhere", + "example_sentence_english": "We searched everywhere, but the keys were nowhere to be found.", + "pos": "adverb", + "word_frequency": 2694 + }, + { + "word": "nurse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a person trained to care for the sick", + "example_sentence_english": "The nurse checked the patient's temperature.", + "pos": "noun", + "word_frequency": 2695 + }, + { + "word": "organic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "produced without artificial chemicals", + "example_sentence_english": "She prefers to buy organic vegetables.", + "pos": "adjective", + "word_frequency": 2696 + }, + { + "word": "ownership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of owning something", + "example_sentence_english": "The company changed ownership last year.", + "pos": "noun", + "word_frequency": 2697 + }, + { + "word": "participant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who takes part in something", + "example_sentence_english": "Each participant received a certificate.", + "pos": "noun", + "word_frequency": 2698 + }, + { + "word": "poetry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "literary work in verse", + "example_sentence_english": "She enjoys reading modern poetry.", + "pos": "noun", + "word_frequency": 2700 + }, + { + "word": "pot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a round container", + "example_sentence_english": "She cooked the soup in a large pot.", + "pos": "noun", + "word_frequency": 2701 + }, + { + "word": "pray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to speak to God", + "example_sentence_english": "Many people pray for peace.", + "pos": "verb", + "word_frequency": 2702 + }, + { + "word": "recall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remember; to officially order the return of", + "example_sentence_english": "I can't recall his name right now.", + "pos": "verb", + "word_frequency": 2703 + }, + { + "word": "rugby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of football", + "example_sentence_english": "Rugby is a popular sport in New Zealand.", + "pos": "noun", + "word_frequency": 2704 + }, + { + "word": "sake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purpose; benefit", + "example_sentence_english": "For goodness sake, hurry up!", + "pos": "noun", + "word_frequency": 2705 + }, + { + "word": "sheet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large piece of thin material", + "example_sentence_english": "Please put clean sheets on the bed.", + "pos": "noun", + "word_frequency": 2706 + }, + { + "word": "smooth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having an even surface", + "example_sentence_english": "The stone felt smooth to the touch.", + "pos": "adjective", + "word_frequency": 2707 + }, + { + "word": "spiritual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the spirit or soul", + "example_sentence_english": "She is on a spiritual journey.", + "pos": "adjective", + "word_frequency": 2708 + }, + { + "word": "string", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin cord", + "example_sentence_english": "He tied the package with a piece of string.", + "pos": "noun", + "word_frequency": 2709 + }, + { + "word": "sudden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening quickly and unexpectedly", + "example_sentence_english": "There was a sudden change in the weather.", + "pos": "adjective", + "word_frequency": 2710 + }, + { + "word": "vacation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a holiday", + "example_sentence_english": "We are planning a vacation to the beach.", + "pos": "noun", + "word_frequency": 2713 + }, + { + "word": "abroad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in or to a foreign country", + "example_sentence_english": "She decided to study abroad for a year.", + "pos": "adverb", + "word_frequency": 2714 + }, + { + "word": "assign", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give a task or duty", + "example_sentence_english": "The teacher assigned homework to the students.", + "pos": "verb", + "word_frequency": 2716 + }, + { + "word": "bench", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a long seat", + "example_sentence_english": "We sat on a park bench.", + "pos": "noun", + "word_frequency": 2718 + }, + { + "word": "bother", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy; to take the trouble to do something", + "example_sentence_english": "Don't bother me when I'm working.", + "pos": "verb", + "word_frequency": 2719 + }, + { + "word": "broadcast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmit (a program or information) by radio or television", + "example_sentence_english": "The news will broadcast live at 6 PM.", + "pos": "verb", + "word_frequency": 2720 + }, + { + "word": "compete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strive to gain or win something by defeating or establishing superiority over others", + "example_sentence_english": "Athletes compete for gold medals.", + "pos": "verb", + "word_frequency": 2723 + }, + { + "word": "consist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "be composed or made up of", + "example_sentence_english": "The team consists of five members.", + "pos": "verb", + "word_frequency": 2724 + }, + { + "word": "contribute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "give (something, especially money or time) in order to help achieve or provide something", + "example_sentence_english": "Everyone should contribute to the project.", + "pos": "verb", + "word_frequency": 2725 + }, + { + "word": "cricket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an insect or a sport", + "example_sentence_english": "We heard a cricket chirping outside.", + "pos": "noun", + "word_frequency": 2726 + }, + { + "word": "critic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who expresses an unfavorable opinion of something", + "example_sentence_english": "The film critic gave the movie a bad review.", + "pos": "noun", + "word_frequency": 2727 + }, + { + "word": "disaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden event that causes great damage or loss of life", + "example_sentence_english": "The earthquake was a natural disaster.", + "pos": "noun", + "word_frequency": 2728 + }, + { + "word": "entrance", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a door or gate by which you can enter a place", + "example_sentence_english": "The main entrance is on the left.", + "pos": "noun", + "word_frequency": 2730 + }, + { + "word": "fitness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the condition of being physically fit and healthy", + "example_sentence_english": "Regular exercise improves your fitness.", + "pos": "noun", + "word_frequency": 2731 + }, + { + "word": "friendship", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the state of being friends", + "example_sentence_english": "Their friendship lasted for many years.", + "pos": "noun", + "word_frequency": 2733 + }, + { + "word": "idiot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a foolish or stupid person", + "example_sentence_english": "Don't be an idiot, think before you act.", + "pos": "noun", + "word_frequency": 2735 + }, + { + "word": "intense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of extreme force, degree, or strength", + "example_sentence_english": "The heat was intense during the summer.", + "pos": "adjective", + "word_frequency": 2736 + }, + { + "word": "lifetime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the duration of a person's life", + "example_sentence_english": "It was a once-in-a-lifetime opportunity.", + "pos": "noun", + "word_frequency": 2737 + }, + { + "word": "liquid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a consistency like that of water or oil", + "example_sentence_english": "Water is a clear liquid.", + "pos": "adjective", + "word_frequency": 2738 + }, + { + "word": "makeup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cosmetics applied to the face to improve or change the appearance", + "example_sentence_english": "She put on some makeup before going out.", + "pos": "noun", + "word_frequency": 2739 + }, + { + "word": "medal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a metal disk given as an award", + "example_sentence_english": "He won a gold medal in the Olympics.", + "pos": "noun", + "word_frequency": 2740 + }, + { + "word": "mortgage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a legal agreement by which a bank lends money at interest in exchange for taking title to the debtor's property", + "example_sentence_english": "They took out a mortgage to buy their house.", + "pos": "noun", + "word_frequency": 2741 + }, + { + "word": "narrative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a spoken or written account of connected events; a story", + "example_sentence_english": "The book has a compelling narrative.", + "pos": "noun", + "word_frequency": 2742 + }, + { + "word": "narrow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of small width in relation to length", + "example_sentence_english": "The road was very narrow.", + "pos": "adjective", + "word_frequency": 2743 + }, + { + "word": "observe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notice or perceive (something) and register it as being significant", + "example_sentence_english": "Scientists observe the stars.", + "pos": "verb", + "word_frequency": 2745 + }, + { + "word": "occasional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening or appearing sometimes but not often", + "example_sentence_english": "We enjoy an occasional walk in the park.", + "pos": "adverb", + "word_frequency": 2746 + }, + { + "word": "pan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a metal container used for cooking", + "example_sentence_english": "Heat the oil in a frying pan.", + "pos": "noun", + "word_frequency": 2747 + }, + { + "word": "physics", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the branch of science concerned with the nature and properties of matter and energy", + "example_sentence_english": "She is studying physics at university.", + "pos": "noun", + "word_frequency": 2748 + }, + { + "word": "reduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or fact of making something smaller or less in amount, degree, or size", + "example_sentence_english": "There was a significant reduction in costs.", + "pos": "noun", + "word_frequency": 2749 + }, + { + "word": "reflect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "throw back (heat, light, or sound) without absorbing it", + "example_sentence_english": "The mirror reflects your image.", + "pos": "verb", + "word_frequency": 2750 + }, + { + "word": "researcher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who carries out academic or scientific research", + "example_sentence_english": "The researcher published a new study.", + "pos": "noun", + "word_frequency": 2751 + }, + { + "word": "shell", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the hard protective outer case of a mollusk or crustacean", + "example_sentence_english": "We found a beautiful shell on the beach.", + "pos": "noun", + "word_frequency": 2755 + }, + { + "word": "silly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having or showing a lack of common sense or judgment; absurd and foolish", + "example_sentence_english": "Don't be silly, it's not that difficult.", + "pos": "adjective", + "word_frequency": 2756 + }, + { + "word": "subsequent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coming after something in time; following", + "example_sentence_english": "The subsequent events were even more surprising.", + "pos": "adjective", + "word_frequency": 2757 + }, + { + "word": "translation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of translating words or text from one language into another", + "example_sentence_english": "The translation of the document was accurate.", + "pos": "noun", + "word_frequency": 2758 + }, + { + "word": "visible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be seen", + "example_sentence_english": "The moon was clearly visible tonight.", + "pos": "adjective", + "word_frequency": 2759 + }, + { + "word": "amendment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change, alteration", + "example_sentence_english": "They proposed an amendment to the constitution.", + "pos": "noun", + "word_frequency": 2762 + }, + { + "word": "angle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corner, perspective", + "example_sentence_english": "The angle of the roof was steep.", + "pos": "noun", + "word_frequency": 2763 + }, + { + "word": "belong", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "be a part of, be owned by", + "example_sentence_english": "This book belongs on the top shelf.", + "pos": "verb", + "word_frequency": 2765 + }, + { + "word": "bishop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-ranking clergyman", + "example_sentence_english": "The bishop delivered a sermon.", + "pos": "noun", + "word_frequency": 2767 + }, + { + "word": "defensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protective, guarding", + "example_sentence_english": "He became defensive when questioned about his actions.", + "pos": "adjective", + "word_frequency": 2769 + }, + { + "word": "efficiency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productivity, effectiveness", + "example_sentence_english": "The new system improved the efficiency of the process.", + "pos": "noun", + "word_frequency": 2770 + }, + { + "word": "enterprise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business, undertaking", + "example_sentence_english": "Starting a new enterprise requires courage.", + "pos": "noun", + "word_frequency": 2771 + }, + { + "word": "experiment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "test, trial", + "example_sentence_english": "They conducted an experiment to test the hypothesis.", + "pos": "noun", + "word_frequency": 2772 + }, + { + "word": "finding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discovery, conclusion", + "example_sentence_english": "The research findings were published last week.", + "pos": "noun", + "word_frequency": 2774 + }, + { + "word": "forum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public meeting place, discussion group", + "example_sentence_english": "The online forum was a place for lively debate.", + "pos": "noun", + "word_frequency": 2775 + }, + { + "word": "grass", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "green plant covering ground", + "example_sentence_english": "The grass is green in spring.", + "pos": "noun", + "word_frequency": 2776 + }, + { + "word": "hence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "therefore, for this reason", + "example_sentence_english": "The road was icy; hence, driving was dangerous.", + "pos": "adverb", + "word_frequency": 2777 + }, + { + "word": "increasing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "growing, becoming more", + "example_sentence_english": "The cost of living is increasing rapidly.", + "pos": "adverb", + "word_frequency": 2778 + }, + { + "word": "jay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type of bird", + "example_sentence_english": "A blue jay landed on the branch.", + "pos": "noun", + "word_frequency": 2780 + }, + { + "word": "journalist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reporter, writer for news", + "example_sentence_english": "The journalist interviewed the politician.", + "pos": "noun", + "word_frequency": 2781 + }, + { + "word": "mill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "factory, grinding machine", + "example_sentence_english": "The old mill was converted into apartments.", + "pos": "noun", + "word_frequency": 2782 + }, + { + "word": "occasion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event, special time", + "example_sentence_english": "It was a special occasion for the family.", + "pos": "noun", + "word_frequency": 2784 + }, + { + "word": "pace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed, rhythm", + "example_sentence_english": "He walked at a slow pace.", + "pos": "noun", + "word_frequency": 2786 + }, + { + "word": "passenger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traveler, rider", + "example_sentence_english": "The bus was full of passengers.", + "pos": "noun", + "word_frequency": 2787 + }, + { + "word": "pen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "writing instrument", + "example_sentence_english": "Can I borrow your pen?", + "pos": "noun", + "word_frequency": 2788 + }, + { + "word": "pope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head of the Catholic Church", + "example_sentence_english": "The Pope delivered his blessing.", + "pos": "noun", + "word_frequency": 2789 + }, + { + "word": "possession", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ownership, belonging", + "example_sentence_english": "He took possession of the new house.", + "pos": "noun", + "word_frequency": 2790 + }, + { + "word": "rapid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fast, quick", + "example_sentence_english": "The river had a rapid current.", + "pos": "adjective", + "word_frequency": 2792 + }, + { + "word": "spin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rotation, twist", + "example_sentence_english": "The ball had a lot of spin.", + "pos": "noun", + "word_frequency": 2794 + }, + { + "word": "suitable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appropriate, fitting", + "example_sentence_english": "This dress is suitable for the party.", + "pos": "adjective", + "word_frequency": 2795 + }, + { + "word": "valid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legitimate, acceptable", + "example_sentence_english": "Your passport is valid for another six months.", + "pos": "adjective", + "word_frequency": 2797 + }, + { + "word": "vital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essential, crucial", + "example_sentence_english": "It is vital to stay hydrated.", + "pos": "adjective", + "word_frequency": 2798 + }, + { + "word": "agriculture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farming", + "example_sentence_english": "Modern agriculture relies heavily on technology.", + "pos": "noun", + "word_frequency": 2800 + }, + { + "word": "allege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "claim without proof", + "example_sentence_english": "The police allege that he committed the crime.", + "pos": "verb", + "word_frequency": 2801 + }, + { + "word": "commerce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade; business", + "example_sentence_english": "International commerce is vital for global economies.", + "pos": "noun", + "word_frequency": 2804 + }, + { + "word": "creek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small stream", + "example_sentence_english": "We found a small creek flowing through the woods.", + "pos": "noun", + "word_frequency": 2805 + }, + { + "word": "currency", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money in circulation", + "example_sentence_english": "The local currency is the euro.", + "pos": "noun", + "word_frequency": 2806 + }, + { + "word": "emotion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strong feeling", + "example_sentence_english": "Joy is a powerful emotion.", + "pos": "noun", + "word_frequency": 2807 + }, + { + "word": "exhibition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "public display", + "example_sentence_english": "We visited an art exhibition at the museum.", + "pos": "noun", + "word_frequency": 2808 + }, + { + "word": "fraud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deception; trickery", + "example_sentence_english": "He was arrested for credit card fraud.", + "pos": "noun", + "word_frequency": 2809 + }, + { + "word": "funeral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burial ceremony", + "example_sentence_english": "Many people attended the funeral.", + "pos": "noun", + "word_frequency": 2810 + }, + { + "word": "genuine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real; authentic", + "example_sentence_english": "This is a genuine leather bag.", + "pos": "adjective", + "word_frequency": 2811 + }, + { + "word": "honey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweet food made by bees", + "example_sentence_english": "I like to put honey in my tea.", + "pos": "noun", + "word_frequency": 2813 + }, + { + "word": "honour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respect; privilege", + "example_sentence_english": "It was an honour to meet her.", + "pos": "noun", + "word_frequency": 2814 + }, + { + "word": "hook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curved piece of metal", + "example_sentence_english": "Hang your coat on the hook.", + "pos": "noun", + "word_frequency": 2815 + }, + { + "word": "hunter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person who hunts", + "example_sentence_english": "The hunter tracked the deer through the snow.", + "pos": "noun", + "word_frequency": 2816 + }, + { + "word": "immigrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who comes to live permanently in a foreign country", + "example_sentence_english": "Many immigrants contribute to the economy.", + "pos": "noun", + "word_frequency": 2817 + }, + { + "word": "instruction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "direction; teaching", + "example_sentence_english": "Please read the instructions carefully.", + "pos": "noun", + "word_frequency": 2818 + }, + { + "word": "km", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kilometer", + "example_sentence_english": "The distance was 10 km.", + "pos": "noun", + "word_frequency": 2820 + }, + { + "word": "legacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something handed down from the past", + "example_sentence_english": "The artist left a lasting legacy.", + "pos": "noun", + "word_frequency": 2821 + }, + { + "word": "log", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piece of wood", + "example_sentence_english": "We threw another log on the fire.", + "pos": "noun", + "word_frequency": 2822 + }, + { + "word": "monitor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screen; supervisor", + "example_sentence_english": "I bought a new computer monitor.", + "pos": "noun", + "word_frequency": 2825 + }, + { + "word": "nov", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "November", + "example_sentence_english": "The meeting is scheduled for Nov 15th.", + "pos": "noun", + "word_frequency": 2826 + }, + { + "word": "prisoner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person held captive", + "example_sentence_english": "The prisoner attempted to escape.", + "pos": "noun", + "word_frequency": 2829 + }, + { + "word": "ratio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportion; relationship between two numbers", + "example_sentence_english": "The ratio of boys to girls in the class is 2:1.", + "pos": "noun", + "word_frequency": 2830 + }, + { + "word": "regret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling of sadness about something that happened", + "example_sentence_english": "He expressed his deep regret for the mistake.", + "pos": "noun", + "word_frequency": 2831 + }, + { + "word": "reject", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refuse to accept", + "example_sentence_english": "They decided to reject the offer.", + "pos": "verb", + "word_frequency": 2832 + }, + { + "word": "remind", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "make someone remember", + "example_sentence_english": "Please remind me to call him.", + "pos": "verb", + "word_frequency": 2833 + }, + { + "word": "resort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holiday destination; last option", + "example_sentence_english": "We stayed at a beautiful beach resort.", + "pos": "noun", + "word_frequency": 2834 + }, + { + "word": "reverse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposite; back side", + "example_sentence_english": "He put the car in reverse.", + "pos": "noun", + "word_frequency": 2835 + }, + { + "word": "routine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regular way of doing things", + "example_sentence_english": "My morning routine includes exercise.", + "pos": "noun", + "word_frequency": 2836 + }, + { + "word": "scary", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frightening", + "example_sentence_english": "That movie was really scary.", + "pos": "adjective", + "word_frequency": 2837 + }, + { + "word": "seed", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "part of a plant from which a new plant grows", + "example_sentence_english": "Plant the seeds in fertile soil.", + "pos": "noun", + "word_frequency": 2838 + }, + { + "word": "sin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immoral act", + "example_sentence_english": "He confessed his sins.", + "pos": "noun", + "word_frequency": 2839 + }, + { + "word": "spell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of time; a magical charm", + "example_sentence_english": "We had a cold spell last week.", + "pos": "noun", + "word_frequency": 2840 + }, + { + "word": "summary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a brief statement of the main points", + "example_sentence_english": "Please give me a summary of the meeting.", + "pos": "noun", + "word_frequency": 2841 + }, + { + "word": "survival", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of continuing to live or exist", + "example_sentence_english": "Survival in the wilderness is difficult.", + "pos": "noun", + "word_frequency": 2842 + }, + { + "word": "sword", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a weapon with a long metal blade", + "example_sentence_english": "The knight carried a shining sword.", + "pos": "noun", + "word_frequency": 2843 + }, + { + "word": "tongue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the movable muscular organ in the mouth", + "example_sentence_english": "He bit his tongue accidentally.", + "pos": "noun", + "word_frequency": 2844 + }, + { + "word": "ward", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a room in a hospital; a district", + "example_sentence_english": "She was moved to the children's ward.", + "pos": "noun", + "word_frequency": 2845 + }, + { + "word": "achievement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something important that you succeed in doing", + "example_sentence_english": "Winning the award was a great achievement.", + "pos": "noun", + "word_frequency": 2847 + }, + { + "word": "asleep", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a state of sleep", + "example_sentence_english": "The baby is fast asleep.", + "pos": "adjective", + "word_frequency": 2849 + }, + { + "word": "automatic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working by itself with little or no direct human control", + "example_sentence_english": "The car has an automatic transmission.", + "pos": "adjective", + "word_frequency": 2851 + }, + { + "word": "cd", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "compact disc", + "example_sentence_english": "I bought a new music CD.", + "pos": "noun", + "word_frequency": 2852 + }, + { + "word": "coat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an outer garment", + "example_sentence_english": "It's cold, put on your coat.", + "pos": "noun", + "word_frequency": 2853 + }, + { + "word": "comprehensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "including all or nearly all elements or aspects of something", + "example_sentence_english": "The report provides a comprehensive overview.", + "pos": "adjective", + "word_frequency": 2854 + }, + { + "word": "consent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permission for something to happen or agreement to do something", + "example_sentence_english": "You need parental consent to participate.", + "pos": "noun", + "word_frequency": 2855 + }, + { + "word": "daddy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father (informal)", + "example_sentence_english": "My daddy reads me a story every night.", + "pos": "noun", + "word_frequency": 2856 + }, + { + "word": "destruction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of causing so much damage to something that it no longer exists or cannot be repaired", + "example_sentence_english": "The earthquake caused widespread destruction.", + "pos": "noun", + "word_frequency": 2857 + }, + { + "word": "divorce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the legal dissolution of a marriage", + "example_sentence_english": "They decided to get a divorce.", + "pos": "noun", + "word_frequency": 2859 + }, + { + "word": "doc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor (informal); document (informal)", + "example_sentence_english": "I need to see the doc about my cough.", + "pos": "noun", + "word_frequency": 2860 + }, + { + "word": "extraordinary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very unusual or remarkable", + "example_sentence_english": "She has an extraordinary talent for music.", + "pos": "adjective", + "word_frequency": 2861 + }, + { + "word": "fate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the development of events outside a person's control, regarded as predetermined", + "example_sentence_english": "It was fate that brought them together.", + "pos": "noun", + "word_frequency": 2862 + }, + { + "word": "frequency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the rate at which something occurs or is repeated", + "example_sentence_english": "The frequency of his visits increased.", + "pos": "noun", + "word_frequency": 2863 + }, + { + "word": "gene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit of heredity", + "example_sentence_english": "Genes determine many of our characteristics.", + "pos": "noun", + "word_frequency": 2864 + }, + { + "word": "glory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high renown or honor won by notable achievements", + "example_sentence_english": "He fought for the glory of his country.", + "pos": "noun", + "word_frequency": 2865 + }, + { + "word": "headquarters", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main office or center of an organization", + "example_sentence_english": "The company's headquarters are in London.", + "pos": "noun", + "word_frequency": 2866 + }, + { + "word": "heritage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property that is or may be inherited; valued things passed down from previous generations", + "example_sentence_english": "The building is part of our national heritage.", + "pos": "noun", + "word_frequency": 2867 + }, + { + "word": "initiative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to assess and initiate things independently; an act or strategy intended to resolve a difficulty or improve a situation", + "example_sentence_english": "She showed great initiative in her new role.", + "pos": "noun", + "word_frequency": 2868 + }, + { + "word": "juice", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the liquid part of a fruit or vegetable", + "example_sentence_english": "I'd like a glass of orange juice.", + "pos": "noun", + "word_frequency": 2870 + }, + { + "word": "landscape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "all the visible features of an area of land", + "example_sentence_english": "The landscape was beautiful with rolling hills.", + "pos": "noun", + "word_frequency": 2871 + }, + { + "word": "logic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasoning conducted or assessed according to strict principles of validity", + "example_sentence_english": "There's no logic in his argument.", + "pos": "noun", + "word_frequency": 2872 + }, + { + "word": "objective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a goal or aim", + "example_sentence_english": "Our main objective is to finish the project on time.", + "pos": "noun", + "word_frequency": 2875 + }, + { + "word": "privacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or condition of being free from being observed or disturbed by other people", + "example_sentence_english": "Everyone deserves a certain level of privacy.", + "pos": "noun", + "word_frequency": 2876 + }, + { + "word": "residence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's home; the place where someone lives", + "example_sentence_english": "The official residence of the President is the White House.", + "pos": "noun", + "word_frequency": 2877 + }, + { + "word": "salary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fixed regular payment, typically paid on a monthly or biweekly basis", + "example_sentence_english": "He earns a good salary at his new job.", + "pos": "noun", + "word_frequency": 2878 + }, + { + "word": "script", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the written text of a play, film, or broadcast", + "example_sentence_english": "The actors are rehearsing the new script.", + "pos": "noun", + "word_frequency": 2879 + }, + { + "word": "strip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, narrow piece of material", + "example_sentence_english": "She cut the fabric into long strips.", + "pos": "noun", + "word_frequency": 2880 + }, + { + "word": "threaten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state one's intention to harm someone or something", + "example_sentence_english": "The dark clouds threaten rain.", + "pos": "verb", + "word_frequency": 2881 + }, + { + "word": "tube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, hollow cylinder", + "example_sentence_english": "Water flows through the tube.", + "pos": "noun", + "word_frequency": 2882 + }, + { + "word": "ambassador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official representative of a country", + "example_sentence_english": "The ambassador delivered a speech.", + "pos": "noun", + "word_frequency": 2887 + }, + { + "word": "breast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the upper front part of the body", + "example_sentence_english": "He felt a pain in his breast.", + "pos": "noun", + "word_frequency": 2889 + }, + { + "word": "chemistry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the branch of science concerned with the substances of which matter is composed", + "example_sentence_english": "I enjoy studying chemistry.", + "pos": "noun", + "word_frequency": 2893 + }, + { + "word": "conclude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring to an end; to infer", + "example_sentence_english": "Let's conclude the meeting now.", + "pos": "verb", + "word_frequency": 2894 + }, + { + "word": "consumption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of consuming", + "example_sentence_english": "Energy consumption has increased.", + "pos": "noun", + "word_frequency": 2895 + }, + { + "word": "corruption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonest or fraudulent conduct by those in power", + "example_sentence_english": "The government is fighting corruption.", + "pos": "noun", + "word_frequency": 2896 + }, + { + "word": "cotton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft white fibrous substance", + "example_sentence_english": "This shirt is made of cotton.", + "pos": "noun", + "word_frequency": 2897 + }, + { + "word": "discount", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a deduction from the usual cost", + "example_sentence_english": "They offered a 10% discount.", + "pos": "noun", + "word_frequency": 2899 + }, + { + "word": "dozen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a group or set of twelve", + "example_sentence_english": "I bought a dozen eggs.", + "pos": "numeral", + "word_frequency": 2900 + }, + { + "word": "epic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heroic or grand in scale or character", + "example_sentence_english": "That was an epic movie.", + "pos": "adjective", + "word_frequency": 2901 + }, + { + "word": "exception", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that is excluded from a general statement or rule", + "example_sentence_english": "There is an exception to every rule.", + "pos": "noun", + "word_frequency": 2902 + }, + { + "word": "exit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a way out", + "example_sentence_english": "Please use the emergency exit.", + "pos": "noun", + "word_frequency": 2903 + }, + { + "word": "expand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to become or make larger or more extensive", + "example_sentence_english": "The company plans to expand its business.", + "pos": "verb", + "word_frequency": 2904 + }, + { + "word": "fancy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elaborate in structure or decoration; expensive", + "example_sentence_english": "They went to a fancy restaurant.", + "pos": "adjective", + "word_frequency": 2905 + }, + { + "word": "gorgeous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beautiful; very attractive", + "example_sentence_english": "She looked gorgeous in her new dress.", + "pos": "adjective", + "word_frequency": 2906 + }, + { + "word": "grateful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling or showing appreciation for something received or done", + "example_sentence_english": "I am grateful for your help.", + "pos": "adjective", + "word_frequency": 2907 + }, + { + "word": "impression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an idea, feeling, or opinion about something or someone", + "example_sentence_english": "He made a good impression on me.", + "pos": "noun", + "word_frequency": 2908 + }, + { + "word": "indicate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to point out or show", + "example_sentence_english": "The signs indicate the way to the exit.", + "pos": "verb", + "word_frequency": 2909 + }, + { + "word": "input", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "what is put in, taken in, or operated on by any process or system", + "example_sentence_english": "We need more input from the team.", + "pos": "noun", + "word_frequency": 2910 + }, + { + "word": "knock", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sharp blow or rap, especially with the knuckles on a door", + "example_sentence_english": "I heard a knock at the door.", + "pos": "noun", + "word_frequency": 2913 + }, + { + "word": "leather", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a material made from the skin of an animal", + "example_sentence_english": "She bought a new leather jacket.", + "pos": "noun", + "word_frequency": 2914 + }, + { + "word": "lip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "either of the two fleshy folds surrounding the mouth", + "example_sentence_english": "She bit her lip nervously.", + "pos": "noun", + "word_frequency": 2915 + }, + { + "word": "luxury", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a state of great comfort or elegance, especially when involving great expense", + "example_sentence_english": "They live a life of luxury.", + "pos": "noun", + "word_frequency": 2916 + }, + { + "word": "lyric", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the words of a song", + "example_sentence_english": "I love the lyric of this song.", + "pos": "noun", + "word_frequency": 2917 + }, + { + "word": "manufacturer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that makes goods for sale", + "example_sentence_english": "The car manufacturer recalled several models.", + "pos": "noun", + "word_frequency": 2918 + }, + { + "word": "outcome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "result", + "example_sentence_english": "What was the outcome of the meeting?", + "pos": "noun", + "word_frequency": 2921 + }, + { + "word": "poll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "survey", + "example_sentence_english": "The latest poll shows a shift in public opinion.", + "pos": "noun", + "word_frequency": 2922 + }, + { + "word": "removal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act of taking away", + "example_sentence_english": "The removal of the old tree improved the view.", + "pos": "noun", + "word_frequency": 2923 + }, + { + "word": "reporter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journalist", + "example_sentence_english": "The reporter asked many questions about the incident.", + "pos": "noun", + "word_frequency": 2925 + }, + { + "word": "rob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steal from", + "example_sentence_english": "Someone tried to rob the bank last night.", + "pos": "verb", + "word_frequency": 2927 + }, + { + "word": "scream", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yell loudly", + "example_sentence_english": "She began to scream when she saw the spider.", + "pos": "verb", + "word_frequency": 2928 + }, + { + "word": "sequence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "order", + "example_sentence_english": "The events happened in a strange sequence.", + "pos": "noun", + "word_frequency": 2930 + }, + { + "word": "stretch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area or period", + "example_sentence_english": "We went for a long stretch of road.", + "pos": "noun", + "word_frequency": 2932 + }, + { + "word": "tennis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a racket sport", + "example_sentence_english": "Do you want to play tennis this weekend?", + "pos": "noun", + "word_frequency": 2933 + }, + { + "word": "terrorist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who uses terror", + "example_sentence_english": "The government is fighting against terrorist groups.", + "pos": "noun", + "word_frequency": 2934 + }, + { + "word": "theater", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a building for plays or movies", + "example_sentence_english": "We are going to the theater tonight to see a play.", + "pos": "noun", + "word_frequency": 2935 + }, + { + "word": "virgin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has not had sexual intercourse", + "example_sentence_english": "The story is about a young virgin.", + "pos": "noun", + "word_frequency": 2937 + }, + { + "word": "wolf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a wild animal similar to a dog", + "example_sentence_english": "A wolf howled at the moon in the forest.", + "pos": "noun", + "word_frequency": 2938 + }, + { + "word": "absence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state of being away", + "example_sentence_english": "Her absence was noted by the teacher.", + "pos": "noun", + "word_frequency": 2939 + }, + { + "word": "agricultural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "related to farming", + "example_sentence_english": "The region is known for its agricultural products.", + "pos": "adjective", + "word_frequency": 2940 + }, + { + "word": "athletes", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "people who compete in sports", + "example_sentence_english": "The athletes trained hard for the competition.", + "pos": "noun", + "word_frequency": 2942 + }, + { + "word": "bull", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a male cow", + "example_sentence_english": "The bull was in the field with the cows.", + "pos": "noun", + "word_frequency": 2944 + }, + { + "word": "commonwealth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an independent country or community", + "example_sentence_english": "The Commonwealth consists of many nations.", + "pos": "noun", + "word_frequency": 2945 + }, + { + "word": "contribution", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something given", + "example_sentence_english": "Her contribution to the project was significant.", + "pos": "noun", + "word_frequency": 2946 + }, + { + "word": "delicious", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very tasty", + "example_sentence_english": "This cake is absolutely delicious.", + "pos": "adjective", + "word_frequency": 2947 + }, + { + "word": "ease", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lack of difficulty", + "example_sentence_english": "He passed the exam with ease.", + "pos": "noun", + "word_frequency": 2948 + }, + { + "word": "fame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "being widely known", + "example_sentence_english": "She achieved international fame as a singer.", + "pos": "noun", + "word_frequency": 2949 + }, + { + "word": "flood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an overflow of water", + "example_sentence_english": "The heavy rain caused a flood in the town.", + "pos": "noun", + "word_frequency": 2950 + }, + { + "word": "generate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "produce or create", + "example_sentence_english": "The new system will generate more revenue.", + "pos": "verb", + "word_frequency": 2951 + }, + { + "word": "genetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to genes", + "example_sentence_english": "They are studying genetic diseases.", + "pos": "adjective", + "word_frequency": 2952 + }, + { + "word": "impress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make someone admire", + "example_sentence_english": "He tried to impress his boss with his hard work.", + "pos": "verb", + "word_frequency": 2953 + }, + { + "word": "instant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediate", + "example_sentence_english": "I need an instant reply to my email.", + "pos": "adjective", + "word_frequency": 2954 + }, + { + "word": "investor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who puts money into something", + "example_sentence_english": "The company is looking for new investors.", + "pos": "noun", + "word_frequency": 2955 + }, + { + "word": "liberty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freedom", + "example_sentence_english": "The statue symbolizes liberty and freedom.", + "pos": "noun", + "word_frequency": 2957 + }, + { + "word": "monitoring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of observing", + "example_sentence_english": "The continuous monitoring of the patient's vital signs is crucial.", + "pos": "noun", + "word_frequency": 2959 + }, + { + "word": "photograph", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a picture taken with a camera", + "example_sentence_english": "She showed me an old photograph of her grandparents.", + "pos": "noun", + "word_frequency": 2960 + }, + { + "word": "progressive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favoring social reform or new ideas", + "example_sentence_english": "The company has a progressive approach to employee benefits.", + "pos": "adjective", + "word_frequency": 2961 + }, + { + "word": "punishment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a penalty for wrongdoing", + "example_sentence_english": "The punishment for the crime was severe.", + "pos": "noun", + "word_frequency": 2962 + }, + { + "word": "rally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mass meeting of people to show support or protest", + "example_sentence_english": "Thousands attended the political rally.", + "pos": "noun", + "word_frequency": 2963 + }, + { + "word": "rapidly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very quickly", + "example_sentence_english": "The technology is developing rapidly.", + "pos": "adverb", + "word_frequency": 2964 + }, + { + "word": "representation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of speaking or acting on behalf of someone", + "example_sentence_english": "Every citizen deserves fair representation in government.", + "pos": "noun", + "word_frequency": 2965 + }, + { + "word": "sum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a total amount", + "example_sentence_english": "Please calculate the sum of these numbers.", + "pos": "noun", + "word_frequency": 2966 + }, + { + "word": "swing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a movement back and forth", + "example_sentence_english": "The child loved playing on the swing in the park.", + "pos": "noun", + "word_frequency": 2967 + }, + { + "word": "tail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the rear part of an animal's body", + "example_sentence_english": "The dog wagged its tail excitedly.", + "pos": "noun", + "word_frequency": 2968 + }, + { + "word": "twin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one of two children born at the same birth", + "example_sentence_english": "My aunt has twin daughters.", + "pos": "noun", + "word_frequency": 2969 + }, + { + "word": "upcoming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening soon", + "example_sentence_english": "We are preparing for the upcoming exams.", + "pos": "adjective", + "word_frequency": 2970 + }, + { + "word": "veteran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has had long experience in a particular field", + "example_sentence_english": "He is a veteran of the music industry.", + "pos": "noun", + "word_frequency": 2971 + }, + { + "word": "alert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watchful and ready", + "example_sentence_english": "The guard remained alert throughout the night.", + "pos": "adjective", + "word_frequency": 2972 + }, + { + "word": "arena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a level area for public events", + "example_sentence_english": "The concert will be held in the main arena.", + "pos": "noun", + "word_frequency": 2973 + }, + { + "word": "boom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of rapid economic growth", + "example_sentence_english": "The city experienced a housing boom last year.", + "pos": "noun", + "word_frequency": 2976 + }, + { + "word": "boot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of shoe covering the foot and ankle", + "example_sentence_english": "He put on his hiking boots.", + "pos": "noun", + "word_frequency": 2977 + }, + { + "word": "brave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ready to face danger or pain", + "example_sentence_english": "The brave firefighter rescued the cat from the tree.", + "pos": "adjective", + "word_frequency": 2978 + }, + { + "word": "column", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a vertical division of a page or text", + "example_sentence_english": "Read the first column of the newspaper.", + "pos": "noun", + "word_frequency": 2979 + }, + { + "word": "compensation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something, typically money, awarded to someone as recompense for loss, injury, or suffering", + "example_sentence_english": "She received compensation for the damages.", + "pos": "noun", + "word_frequency": 2980 + }, + { + "word": "composition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the nature of something's ingredients or constituents", + "example_sentence_english": "The composition of the soil affects plant growth.", + "pos": "noun", + "word_frequency": 2981 + }, + { + "word": "conservation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the protection of animals, plants, and natural resources", + "example_sentence_english": "Wildlife conservation is very important.", + "pos": "noun", + "word_frequency": 2982 + }, + { + "word": "constitutional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an established set of principles governing a state", + "example_sentence_english": "The new law was declared unconstitutional.", + "pos": "adjective", + "word_frequency": 2983 + }, + { + "word": "crossing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place where roads or railway lines cross", + "example_sentence_english": "Be careful when you approach the railway crossing.", + "pos": "noun", + "word_frequency": 2984 + }, + { + "word": "density", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the degree of compactness of a substance", + "example_sentence_english": "The density of water is higher than that of ice.", + "pos": "noun", + "word_frequency": 2986 + }, + { + "word": "difficulty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the state or condition of being difficult", + "example_sentence_english": "She faced many difficulties in her new job.", + "pos": "noun", + "word_frequency": 2988 + }, + { + "word": "elementary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the most basic principles of a subject", + "example_sentence_english": "He has an elementary understanding of physics.", + "pos": "adjective", + "word_frequency": 2989 + }, + { + "word": "ethnic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a population subgroup with a common cultural tradition", + "example_sentence_english": "The city is known for its diverse ethnic groups.", + "pos": "adjective", + "word_frequency": 2990 + }, + { + "word": "expense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the cost incurred in doing something", + "example_sentence_english": "Travel expenses can add up quickly.", + "pos": "noun", + "word_frequency": 2991 + }, + { + "word": "fleet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of vehicles or ships operating together", + "example_sentence_english": "The company has a large fleet of delivery trucks.", + "pos": "noun", + "word_frequency": 2992 + }, + { + "word": "foster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encourage or promote the development of", + "example_sentence_english": "We need to foster a sense of community.", + "pos": "verb", + "word_frequency": 2993 + }, + { + "word": "fundamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forming a necessary base or core", + "example_sentence_english": "Understanding the fundamental principles is crucial.", + "pos": "adjective", + "word_frequency": 2995 + }, + { + "word": "genius", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceptional intellectual or creative power", + "example_sentence_english": "Albert Einstein was a scientific genius.", + "pos": "noun", + "word_frequency": 2997 + }, + { + "word": "greatly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to a great extent", + "example_sentence_english": "Her efforts contributed greatly to the project's success.", + "pos": "adverb", + "word_frequency": 2998 + }, + { + "word": "guidance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advice or information aimed at resolving a problem or difficulty", + "example_sentence_english": "We sought guidance from an expert.", + "pos": "noun", + "word_frequency": 2999 + }, + { + "word": "infection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of infecting or the state of being infected", + "example_sentence_english": "The doctor prescribed antibiotics for the infection.", + "pos": "noun", + "word_frequency": 3000 + }, + { + "word": "intention", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plan or aim", + "example_sentence_english": "His intention was to finish the project by Friday.", + "pos": "noun", + "word_frequency": 3002 + }, + { + "word": "knee", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the joint between the thigh and the lower leg", + "example_sentence_english": "He hurt his knee playing football.", + "pos": "noun", + "word_frequency": 3004 + }, + { + "word": "mechanical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to machines or machinery", + "example_sentence_english": "The car had a mechanical problem.", + "pos": "adjective", + "word_frequency": 3005 + }, + { + "word": "participation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of taking part in something", + "example_sentence_english": "Student participation is encouraged in class discussions.", + "pos": "noun", + "word_frequency": 3007 + }, + { + "word": "precious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of great value; not to be wasted or treated carelessly", + "example_sentence_english": "Time is a precious commodity.", + "pos": "adjective", + "word_frequency": 3008 + }, + { + "word": "pregnancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being pregnant", + "example_sentence_english": "She announced her pregnancy last month.", + "pos": "noun", + "word_frequency": 3009 + }, + { + "word": "premium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of superior quality or value", + "example_sentence_english": "They offer premium services to their clients.", + "pos": "adjective", + "word_frequency": 3010 + }, + { + "word": "pretend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to behave as if something is true when you know it is not", + "example_sentence_english": "The children love to pretend they are superheroes.", + "pos": "verb", + "word_frequency": 3011 + }, + { + "word": "priest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person authorized to perform sacred rites of a religion", + "example_sentence_english": "The priest gave a sermon during the service.", + "pos": "noun", + "word_frequency": 3012 + }, + { + "word": "prominent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "important or famous", + "example_sentence_english": "He is a prominent figure in the community.", + "pos": "adjective", + "word_frequency": 3013 + }, + { + "word": "radical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or affecting the fundamental nature of something; far-reaching or thorough", + "example_sentence_english": "The company underwent a radical change in management.", + "pos": "adjective", + "word_frequency": 3014 + }, + { + "word": "residential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to an area where people live", + "example_sentence_english": "This is a quiet residential area.", + "pos": "adjective", + "word_frequency": 3015 + }, + { + "word": "reward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing given in recognition of one's service, effort, or achievement", + "example_sentence_english": "Hard work often brings its own reward.", + "pos": "noun", + "word_frequency": 3016 + }, + { + "word": "robin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small European or North American bird", + "example_sentence_english": "A robin built a nest in our garden.", + "pos": "noun", + "word_frequency": 3017 + }, + { + "word": "satellite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an artificial body placed in orbit around the earth or another planet", + "example_sentence_english": "The satellite transmits data back to Earth.", + "pos": "noun", + "word_frequency": 3019 + }, + { + "word": "shake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move quickly to and fro or up and down", + "example_sentence_english": "He shook his head in disagreement.", + "pos": "verb", + "word_frequency": 3020 + }, + { + "word": "shore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the land along the edge of a sea, lake, or wide river", + "example_sentence_english": "We walked along the shore at sunset.", + "pos": "noun", + "word_frequency": 3021 + }, + { + "word": "stat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statistic or piece of data", + "example_sentence_english": "Can you give me the latest sales stats?", + "pos": "noun", + "word_frequency": 3022 + }, + { + "word": "substantial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of considerable importance, size, or worth", + "example_sentence_english": "They made a substantial donation to the charity.", + "pos": "adjective", + "word_frequency": 3023 + }, + { + "word": "teen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person aged between 13 and 19 years", + "example_sentence_english": "Many teens enjoy playing video games.", + "pos": "noun", + "word_frequency": 3024 + }, + { + "word": "transmission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of transmitting something", + "example_sentence_english": "The transmission of the disease was rapid.", + "pos": "noun", + "word_frequency": 3025 + }, + { + "word": "trap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device or enclosure designed to catch and retain animals", + "example_sentence_english": "The hunter set a trap for the rabbit.", + "pos": "noun", + "word_frequency": 3026 + }, + { + "word": "uniform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remaining the same in all cases and at all times; unchanging in form or character", + "example_sentence_english": "The quality of the products is uniform.", + "pos": "adjective", + "word_frequency": 3027 + }, + { + "word": "wildlife", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild animals collectively; the native fauna of a region", + "example_sentence_english": "The park is home to diverse wildlife.", + "pos": "noun", + "word_frequency": 3028 + }, + { + "word": "wooden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "made of wood", + "example_sentence_english": "She bought a beautiful wooden table.", + "pos": "adjective", + "word_frequency": 3029 + }, + { + "word": "aggressive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ready or likely to attack or confront; characterized by aggression", + "example_sentence_english": "The dog's aggressive behavior worried its owner.", + "pos": "adjective", + "word_frequency": 3030 + }, + { + "word": "apparent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearly visible or understood; obvious", + "example_sentence_english": "It was apparent that he was tired.", + "pos": "adjective", + "word_frequency": 3032 + }, + { + "word": "bang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden loud noise", + "example_sentence_english": "We heard a loud bang from the kitchen.", + "pos": "noun", + "word_frequency": 3033 + }, + { + "word": "blast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a destructive wave of highly compressed air spreading outward from an explosion", + "example_sentence_english": "The blast shattered the windows.", + "pos": "noun", + "word_frequency": 3034 + }, + { + "word": "communist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who supports or believes in the principles of communism", + "example_sentence_english": "He was accused of being a communist during the Cold War.", + "pos": "noun", + "word_frequency": 3035 + }, + { + "word": "complaint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a statement that something is unsatisfactory or unacceptable", + "example_sentence_english": "She filed a complaint about the poor service.", + "pos": "noun", + "word_frequency": 3036 + }, + { + "word": "courage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the ability to do something that frightens one", + "example_sentence_english": "It takes courage to speak in front of a large audience.", + "pos": "noun", + "word_frequency": 3037 + }, + { + "word": "cure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a remedy for a disease or illness", + "example_sentence_english": "Scientists are still searching for a cure for cancer.", + "pos": "noun", + "word_frequency": 3038 + }, + { + "word": "desperate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing a hopeless sense that a situation is so bad as to be impossible to deal with", + "example_sentence_english": "He made a desperate attempt to save his drowning friend.", + "pos": "adjective", + "word_frequency": 3040 + }, + { + "word": "diversity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being diverse; variety", + "example_sentence_english": "The company values diversity in its workforce.", + "pos": "noun", + "word_frequency": 3041 + }, + { + "word": "eve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the day or evening before a holiday or event", + "example_sentence_english": "We always open one present on Christmas Eve.", + "pos": "noun", + "word_frequency": 3042 + }, + { + "word": "faculty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the teaching staff of a university or college, or an inherent mental or physical power", + "example_sentence_english": "The university faculty met to discuss the new curriculum.", + "pos": "noun", + "word_frequency": 3043 + }, + { + "word": "feedback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "information about reactions to a product, a person's performance of a task, etc., used as a basis for improvement", + "example_sentence_english": "We appreciate your feedback on our new service.", + "pos": "noun", + "word_frequency": 3044 + }, + { + "word": "fighter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or animal that fights", + "example_sentence_english": "He's a real fighter and never gives up.", + "pos": "noun", + "word_frequency": 3045 + }, + { + "word": "freeze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turn into ice or be turned into ice", + "example_sentence_english": "The water will freeze if the temperature drops below zero.", + "pos": "verb", + "word_frequency": 3046 + }, + { + "word": "humanity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the human race; human beings collectively", + "example_sentence_english": "We must protect the planet for the sake of humanity.", + "pos": "noun", + "word_frequency": 3047 + }, + { + "word": "innovation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of innovating", + "example_sentence_english": "The company is known for its constant innovation.", + "pos": "noun", + "word_frequency": 3050 + }, + { + "word": "instrument", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool or implement, especially one for delicate or scientific work", + "example_sentence_english": "She plays several musical instruments.", + "pos": "noun", + "word_frequency": 3051 + }, + { + "word": "invest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "put money into financial schemes, shares, or property with the expectation of achieving a profit", + "example_sentence_english": "It's wise to invest in your future.", + "pos": "verb", + "word_frequency": 3052 + }, + { + "word": "jacket", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an outer garment extending to the waist or hips, with sleeves, a collar, and an opening down the front", + "example_sentence_english": "Please hang your jacket on the hook.", + "pos": "noun", + "word_frequency": 3053 + }, + { + "word": "legislative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to laws or the making of laws", + "example_sentence_english": "The legislative body passed a new bill.", + "pos": "adjective", + "word_frequency": 3055 + }, + { + "word": "listing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a list or an item in a list", + "example_sentence_english": "The real estate agent showed us a new listing.", + "pos": "noun", + "word_frequency": 3056 + }, + { + "word": "manual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or done with the hands", + "example_sentence_english": "The car has a manual transmission.", + "pos": "adjective", + "word_frequency": 3057 + }, + { + "word": "nursing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the profession or practice of providing care for the sick and infirm", + "example_sentence_english": "She decided to pursue a career in nursing.", + "pos": "noun", + "word_frequency": 3058 + }, + { + "word": "occupy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reside or have one's place of business in (a building)", + "example_sentence_english": "The protesters decided to occupy the square.", + "pos": "verb", + "word_frequency": 3059 + }, + { + "word": "ongoing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuing; still in progress", + "example_sentence_english": "The negotiations are still ongoing.", + "pos": "adjective", + "word_frequency": 3060 + }, + { + "word": "operator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who operates equipment or a machine", + "example_sentence_english": "Please connect me to the operator.", + "pos": "noun", + "word_frequency": 3061 + }, + { + "word": "painful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "affected with pain", + "example_sentence_english": "The injection was quite painful.", + "pos": "adjective", + "word_frequency": 3062 + }, + { + "word": "preparation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action or process of making ready or being made ready for use or consideration", + "example_sentence_english": "The team is in full preparation for the big game.", + "pos": "noun", + "word_frequency": 3063 + }, + { + "word": "punch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a blow with the fist", + "example_sentence_english": "He delivered a powerful punch to the bag.", + "pos": "noun", + "word_frequency": 3064 + }, + { + "word": "purple", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a color intermediate between blue and red", + "example_sentence_english": "Her favorite color is purple.", + "pos": "adjective", + "word_frequency": 3065 + }, + { + "word": "railroad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a track or set of tracks made of steel rails along which passenger and freight trains run", + "example_sentence_english": "The old railroad tracks are no longer in use.", + "pos": "noun", + "word_frequency": 3066 + }, + { + "word": "registration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action or process of registering or being registered", + "example_sentence_english": "Online registration for the conference is now open.", + "pos": "noun", + "word_frequency": 3067 + }, + { + "word": "romance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of excitement and mystery associated with love", + "example_sentence_english": "They shared a beautiful romance.", + "pos": "noun", + "word_frequency": 3069 + }, + { + "word": "submit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accept or yield to a superior force or to the authority of another person", + "example_sentence_english": "Please submit your application by Friday.", + "pos": "verb", + "word_frequency": 3070 + }, + { + "word": "sufficient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enough; adequate", + "example_sentence_english": "We have sufficient food for everyone.", + "pos": "adjective", + "word_frequency": 3071 + }, + { + "word": "suspend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporarily prevent from continuing or being in force or effect", + "example_sentence_english": "The school decided to suspend the student for a week.", + "pos": "verb", + "word_frequency": 3072 + }, + { + "word": "tissue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "any of the distinct types of material of which animals or plants are made, consisting of specialized cells and their products", + "example_sentence_english": "Could you pass me a tissue, please?", + "pos": "noun", + "word_frequency": 3073 + }, + { + "word": "trailer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a part of a film or television show that is shown in advance to advertise it", + "example_sentence_english": "We watched the trailer for the new movie.", + "pos": "noun", + "word_frequency": 3074 + }, + { + "word": "underground", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated or operating beneath the surface of the ground", + "example_sentence_english": "The underground train system is very efficient.", + "pos": "adjective", + "word_frequency": 3076 + }, + { + "word": "virtual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almost or nearly as described, but not completely or according to strict definition", + "example_sentence_english": "We attended a virtual meeting online.", + "pos": "adjective", + "word_frequency": 3078 + }, + { + "word": "wound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflict an injury on (someone)", + "example_sentence_english": "The soldier was wounded in battle.", + "pos": "verb", + "word_frequency": 3079 + }, + { + "word": "announcement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public statement", + "example_sentence_english": "The principal made an important announcement.", + "pos": "noun", + "word_frequency": 3082 + }, + { + "word": "arrange", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to organize or put in order", + "example_sentence_english": "Can you arrange the chairs for the meeting?", + "pos": "verb", + "word_frequency": 3083 + }, + { + "word": "arsenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collection of weapons or resources", + "example_sentence_english": "The country built up its arsenal of modern weapons.", + "pos": "noun", + "word_frequency": 3084 + }, + { + "word": "attract", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw attention or interest", + "example_sentence_english": "The bright colors attract butterflies.", + "pos": "verb", + "word_frequency": 3085 + }, + { + "word": "biological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to biology or living organisms", + "example_sentence_english": "She is studying biological sciences at university.", + "pos": "adjective", + "word_frequency": 3086 + }, + { + "word": "bite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an act of biting; a small amount of food", + "example_sentence_english": "The dog gave a playful bite.", + "pos": "noun", + "word_frequency": 3087 + }, + { + "word": "chip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small piece broken off; a thin slice of food; an electronic component", + "example_sentence_english": "I dropped the plate and a chip broke off.", + "pos": "noun", + "word_frequency": 3088 + }, + { + "word": "dare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be brave enough to do something", + "example_sentence_english": "I dare you to jump into the cold water.", + "pos": "verb", + "word_frequency": 3090 + }, + { + "word": "database", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organized collection of data", + "example_sentence_english": "The company stores all customer information in a secure database.", + "pos": "noun", + "word_frequency": 3091 + }, + { + "word": "discrimination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfair treatment of a person or group", + "example_sentence_english": "There should be no discrimination based on race or gender.", + "pos": "noun", + "word_frequency": 3092 + }, + { + "word": "disorder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of confusion; a medical condition", + "example_sentence_english": "The room was in complete disorder after the party.", + "pos": "noun", + "word_frequency": 3093 + }, + { + "word": "distribute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give out or spread around", + "example_sentence_english": "Please distribute these flyers to everyone.", + "pos": "verb", + "word_frequency": 3094 + }, + { + "word": "documentary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a film or TV program presenting facts", + "example_sentence_english": "We watched a documentary about the history of space travel.", + "pos": "noun", + "word_frequency": 3095 + }, + { + "word": "domain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of knowledge or activity; a territory", + "example_sentence_english": "Physics is outside my domain of expertise.", + "pos": "noun", + "word_frequency": 3096 + }, + { + "word": "dynamic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characterized by constant change, activity, or progress", + "example_sentence_english": "The city has a dynamic and growing economy.", + "pos": "adjective", + "word_frequency": 3097 + }, + { + "word": "edit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prepare for publication by correcting, revising, or adapting", + "example_sentence_english": "I need to edit my essay before submitting it.", + "pos": "verb", + "word_frequency": 3098 + }, + { + "word": "engagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal agreement to get married; involvement; a battle", + "example_sentence_english": "Their engagement was announced last week.", + "pos": "noun", + "word_frequency": 3099 + }, + { + "word": "explore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to travel through an unfamiliar area to learn about it; to examine thoroughly", + "example_sentence_english": "Let's explore the old castle.", + "pos": "verb", + "word_frequency": 3100 + }, + { + "word": "favour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of kindness; approval or support", + "example_sentence_english": "Could you do me a favour and help me move this box?", + "pos": "noun", + "word_frequency": 3101 + }, + { + "word": "footage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raw, unedited film or video material", + "example_sentence_english": "The news channel showed exclusive footage of the event.", + "pos": "noun", + "word_frequency": 3102 + }, + { + "word": "grave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place of burial for a dead body", + "example_sentence_english": "They visited the soldier's grave.", + "pos": "noun", + "word_frequency": 3103 + }, + { + "word": "implementation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of putting a decision or plan into effect", + "example_sentence_english": "The implementation of the new system will take several months.", + "pos": "noun", + "word_frequency": 3105 + }, + { + "word": "investigate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to carry out a systematic or formal inquiry to discover and examine the facts of (an incident, allegation, etc.) so as to establish the truth", + "example_sentence_english": "The police will investigate the cause of the accident.", + "pos": "verb", + "word_frequency": 3107 + }, + { + "word": "jazz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of music", + "example_sentence_english": "I love listening to jazz music.", + "pos": "noun", + "word_frequency": 3108 + }, + { + "word": "laboratory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room or building equipped for scientific experiments, research, or teaching", + "example_sentence_english": "Scientists conduct experiments in the laboratory.", + "pos": "noun", + "word_frequency": 3111 + }, + { + "word": "literary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to literature", + "example_sentence_english": "She has a strong interest in literary criticism.", + "pos": "adjective", + "word_frequency": 3114 + }, + { + "word": "mask", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a covering for the face", + "example_sentence_english": "He wore a mask to the costume party.", + "pos": "noun", + "word_frequency": 3115 + }, + { + "word": "midnight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "12 o'clock at night", + "example_sentence_english": "The clock struck midnight.", + "pos": "noun", + "word_frequency": 3117 + }, + { + "word": "mouse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small rodent; a computer pointing device", + "example_sentence_english": "The cat chased the mouse.", + "pos": "noun", + "word_frequency": 3119 + }, + { + "word": "piano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "piano", + "example_sentence_english": "She plays the piano very well.", + "pos": "noun", + "word_frequency": 3121 + }, + { + "word": "praise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "praise", + "example_sentence_english": "The teacher gave him praise for his hard work.", + "pos": "noun", + "word_frequency": 3122 + }, + { + "word": "presentation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presentation", + "example_sentence_english": "She gave a great presentation on her research.", + "pos": "noun", + "word_frequency": 3123 + }, + { + "word": "psychology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychology", + "example_sentence_english": "He is studying psychology at university.", + "pos": "noun", + "word_frequency": 3124 + }, + { + "word": "restriction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restriction", + "example_sentence_english": "There are new restrictions on travel.", + "pos": "noun", + "word_frequency": 3125 + }, + { + "word": "rocket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocket", + "example_sentence_english": "The rocket launched into space.", + "pos": "noun", + "word_frequency": 3126 + }, + { + "word": "ruin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruin", + "example_sentence_english": "The old castle is now a ruin.", + "pos": "noun", + "word_frequency": 3127 + }, + { + "word": "slave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slave", + "example_sentence_english": "Historically, many people were forced to live as slaves.", + "pos": "noun", + "word_frequency": 3131 + }, + { + "word": "stability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stability", + "example_sentence_english": "The country needs economic stability.", + "pos": "noun", + "word_frequency": 3132 + }, + { + "word": "steady", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steady", + "example_sentence_english": "Keep the camera steady.", + "pos": "adjective", + "word_frequency": 3133 + }, + { + "word": "symbol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symbol", + "example_sentence_english": "The dove is a symbol of peace.", + "pos": "noun", + "word_frequency": 3134 + }, + { + "word": "terminal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terminal", + "example_sentence_english": "We arrived at Terminal 3 for our flight.", + "pos": "noun", + "word_frequency": 3135 + }, + { + "word": "toilet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet", + "example_sentence_english": "Where is the toilet?", + "pos": "noun", + "word_frequency": 3136 + }, + { + "word": "treaty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treaty", + "example_sentence_english": "The two countries signed a peace treaty.", + "pos": "noun", + "word_frequency": 3137 + }, + { + "word": "triple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triple", + "example_sentence_english": "They ordered a triple cheeseburger.", + "pos": "adjective", + "word_frequency": 3138 + }, + { + "word": "unlikely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlikely", + "example_sentence_english": "It's unlikely that he will come now.", + "pos": "adjective", + "word_frequency": 3139 + }, + { + "word": "agenda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agenda", + "example_sentence_english": "What's on the agenda for today's meeting?", + "pos": "noun", + "word_frequency": 3142 + }, + { + "word": "bat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bat (animal or sports equipment)", + "example_sentence_english": "A bat flew out of the cave.", + "pos": "noun", + "word_frequency": 3143 + }, + { + "word": "bow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bow (weapon or knot)", + "example_sentence_english": "He tied a bow in his shoelaces.", + "pos": "noun", + "word_frequency": 3144 + }, + { + "word": "calendar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calendar", + "example_sentence_english": "Check the calendar for the date.", + "pos": "noun", + "word_frequency": 3145 + }, + { + "word": "cape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cape (garment or landform)", + "example_sentence_english": "The superhero wore a red cape.", + "pos": "noun", + "word_frequency": 3146 + }, + { + "word": "collective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collective", + "example_sentence_english": "This was a collective effort from the whole team.", + "pos": "adjective", + "word_frequency": 3147 + }, + { + "word": "cooperation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooperation", + "example_sentence_english": "International cooperation is essential for peace.", + "pos": "noun", + "word_frequency": 3148 + }, + { + "word": "craft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "craft (skill or small boat)", + "example_sentence_english": "She enjoys various arts and crafts.", + "pos": "noun", + "word_frequency": 3149 + }, + { + "word": "darkness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "darkness", + "example_sentence_english": "The room was filled with darkness.", + "pos": "noun", + "word_frequency": 3150 + }, + { + "word": "devil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devil", + "example_sentence_english": "He said he felt like the devil was on his shoulder.", + "pos": "noun", + "word_frequency": 3151 + }, + { + "word": "enable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enable", + "example_sentence_english": "This new software will enable us to work more efficiently.", + "pos": "verb", + "word_frequency": 3152 + }, + { + "word": "equity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equity", + "example_sentence_english": "The company aims for greater equity in its hiring practices.", + "pos": "noun", + "word_frequency": 3153 + }, + { + "word": "fortune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortune", + "example_sentence_english": "She told him his fortune.", + "pos": "noun", + "word_frequency": 3154 + }, + { + "word": "hardware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardware", + "example_sentence_english": "We need to buy new computer hardware.", + "pos": "noun", + "word_frequency": 3157 + }, + { + "word": "intellectual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectual", + "example_sentence_english": "She is a highly intellectual person.", + "pos": "adjective", + "word_frequency": 3159 + }, + { + "word": "involvement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participation", + "example_sentence_english": "Her involvement in the project was crucial for its success.", + "pos": "noun", + "word_frequency": 3160 + }, + { + "word": "nut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a fruit with a hard shell", + "example_sentence_english": "I like to eat nuts as a healthy snack.", + "pos": "noun", + "word_frequency": 3164 + }, + { + "word": "partly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to some extent", + "example_sentence_english": "The success of the project was partly due to her efforts.", + "pos": "adverb", + "word_frequency": 3166 + }, + { + "word": "petition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal request", + "example_sentence_english": "They started a petition to save the local park.", + "pos": "noun", + "word_frequency": 3167 + }, + { + "word": "phrase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small group of words", + "example_sentence_english": "Can you explain the meaning of that phrase?", + "pos": "noun", + "word_frequency": 3168 + }, + { + "word": "physically", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a physical way", + "example_sentence_english": "He was physically exhausted after the long run.", + "pos": "adverb", + "word_frequency": 3169 + }, + { + "word": "racial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to race", + "example_sentence_english": "The company is committed to promoting racial equality.", + "pos": "adjective", + "word_frequency": 3170 + }, + { + "word": "regime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of government", + "example_sentence_english": "The old regime was overthrown by a popular uprising.", + "pos": "noun", + "word_frequency": 3171 + }, + { + "word": "sauce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a liquid served with food", + "example_sentence_english": "This pasta needs more tomato sauce.", + "pos": "noun", + "word_frequency": 3173 + }, + { + "word": "seal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a marine mammal; a stamp", + "example_sentence_english": "We saw a seal basking on the rocks.", + "pos": "noun", + "word_frequency": 3174 + }, + { + "word": "shield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece of armor", + "example_sentence_english": "The knight carried a sword and a shield.", + "pos": "noun", + "word_frequency": 3175 + }, + { + "word": "similarly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a similar way", + "example_sentence_english": "The two cases were similarly complex.", + "pos": "adverb", + "word_frequency": 3176 + }, + { + "word": "slide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a smooth surface for sliding", + "example_sentence_english": "The children loved playing on the slide in the park.", + "pos": "noun", + "word_frequency": 3177 + }, + { + "word": "stem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main body of a plant; a root word", + "example_sentence_english": "The rose has a long, thorny stem.", + "pos": "noun", + "word_frequency": 3178 + }, + { + "word": "summit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the highest point; a meeting", + "example_sentence_english": "They reached the summit of the mountain at dawn.", + "pos": "noun", + "word_frequency": 3179 + }, + { + "word": "talented", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a natural aptitude", + "example_sentence_english": "She is a very talented musician.", + "pos": "adjective", + "word_frequency": 3180 + }, + { + "word": "throat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the front part of the neck", + "example_sentence_english": "My throat is sore from shouting.", + "pos": "noun", + "word_frequency": 3181 + }, + { + "word": "tiger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large striped cat", + "example_sentence_english": "The tiger is a powerful predator.", + "pos": "noun", + "word_frequency": 3182 + }, + { + "word": "toy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an object for children to play with", + "example_sentence_english": "The child played with his new toy car.", + "pos": "noun", + "word_frequency": 3183 + }, + { + "word": "warrior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a brave fighter", + "example_sentence_english": "The ancient warrior fought bravely in battle.", + "pos": "noun", + "word_frequency": 3184 + }, + { + "word": "wisdom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of having experience, knowledge, and good judgment", + "example_sentence_english": "He shared his wisdom with the younger generation.", + "pos": "noun", + "word_frequency": 3185 + }, + { + "word": "accounting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of keeping financial records", + "example_sentence_english": "She is studying accounting at university.", + "pos": "noun", + "word_frequency": 3186 + }, + { + "word": "alien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfamiliar or foreign", + "example_sentence_english": "The customs of the new country felt alien to him.", + "pos": "adjective", + "word_frequency": 3187 + }, + { + "word": "awkward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clumsy or uncomfortable", + "example_sentence_english": "There was an awkward silence after his comment.", + "pos": "adjective", + "word_frequency": 3188 + }, + { + "word": "beast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an animal, especially a large or dangerous one", + "example_sentence_english": "The beast emerged from the forest.", + "pos": "noun", + "word_frequency": 3189 + }, + { + "word": "beef", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meat from a cow", + "example_sentence_english": "We had roast beef for dinner.", + "pos": "noun", + "word_frequency": 3190 + }, + { + "word": "candy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sweet food", + "example_sentence_english": "Children love to eat candy.", + "pos": "noun", + "word_frequency": 3191 + }, + { + "word": "carrier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that carries something", + "example_sentence_english": "The airline is a major carrier of international passengers.", + "pos": "noun", + "word_frequency": 3192 + }, + { + "word": "celebration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a special event for enjoyment", + "example_sentence_english": "The town held a big celebration for its anniversary.", + "pos": "noun", + "word_frequency": 3193 + }, + { + "word": "celebrity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a famous person", + "example_sentence_english": "She became a celebrity after winning the competition.", + "pos": "noun", + "word_frequency": 3194 + }, + { + "word": "certificate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official document", + "example_sentence_english": "He received a certificate for completing the course.", + "pos": "noun", + "word_frequency": 3195 + }, + { + "word": "cite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to quote as evidence", + "example_sentence_english": "You must cite your sources in academic writing.", + "pos": "verb", + "word_frequency": 3196 + }, + { + "word": "clay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of heavy, sticky earth", + "example_sentence_english": "The artist molded the clay into a beautiful pot.", + "pos": "noun", + "word_frequency": 3197 + }, + { + "word": "coaching", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity of training or instructing", + "example_sentence_english": "His coaching helped the team win the championship.", + "pos": "noun", + "word_frequency": 3198 + }, + { + "word": "colleague", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person with whom one works", + "example_sentence_english": "I discussed the issue with my colleague.", + "pos": "noun", + "word_frequency": 3199 + }, + { + "word": "construct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build or create", + "example_sentence_english": "They plan to construct a new bridge over the river.", + "pos": "verb", + "word_frequency": 3200 + }, + { + "word": "default", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a preselected option; failure to fulfill an obligation", + "example_sentence_english": "The computer settings are set to default.", + "pos": "noun", + "word_frequency": 3202 + }, + { + "word": "derive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to obtain or get something from", + "example_sentence_english": "Many English words derive from Latin.", + "pos": "verb", + "word_frequency": 3204 + }, + { + "word": "dialogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a conversation between two or more people", + "example_sentence_english": "The play had very witty dialogue.", + "pos": "noun", + "word_frequency": 3205 + }, + { + "word": "disable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something unable to function", + "example_sentence_english": "You can disable notifications in the settings.", + "pos": "verb", + "word_frequency": 3206 + }, + { + "word": "distinct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearly separate and different", + "example_sentence_english": "The two cultures have distinct traditions.", + "pos": "adjective", + "word_frequency": 3207 + }, + { + "word": "drag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pull something along the ground", + "example_sentence_english": "He had to drag the heavy box across the floor.", + "pos": "verb", + "word_frequency": 3208 + }, + { + "word": "educate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to teach or train someone", + "example_sentence_english": "Parents have a responsibility to educate their children.", + "pos": "verb", + "word_frequency": 3209 + }, + { + "word": "eligible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the right to do or obtain something", + "example_sentence_english": "Only citizens are eligible to vote.", + "pos": "adjective", + "word_frequency": 3210 + }, + { + "word": "execution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of carrying out a plan or order", + "example_sentence_english": "The execution of the project went smoothly.", + "pos": "noun", + "word_frequency": 3211 + }, + { + "word": "fifty", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 50", + "example_sentence_english": "There are fifty states in the USA.", + "pos": "numeral", + "word_frequency": 3212 + }, + { + "word": "follower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who supports or admires someone", + "example_sentence_english": "She has many followers on social media.", + "pos": "noun", + "word_frequency": 3213 + }, + { + "word": "fool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a silly or stupid person", + "example_sentence_english": "Don't be a fool; think before you act.", + "pos": "noun", + "word_frequency": 3214 + }, + { + "word": "framework", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a basic structure underlying a system", + "example_sentence_english": "We need a legal framework for this new technology.", + "pos": "noun", + "word_frequency": 3215 + }, + { + "word": "franchise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an authorization granted to an individual or group to sell a company's goods or services", + "example_sentence_english": "He bought a fast-food franchise.", + "pos": "noun", + "word_frequency": 3216 + }, + { + "word": "furniture", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "movable articles that are used to make a room or building suitable for living or working", + "example_sentence_english": "We need to buy new furniture for the living room.", + "pos": "noun", + "word_frequency": 3217 + }, + { + "word": "integrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to combine or make into a whole", + "example_sentence_english": "It's important to integrate new employees into the team quickly.", + "pos": "verb", + "word_frequency": 3218 + }, + { + "word": "intelligent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing intelligence, especially of a high level", + "example_sentence_english": "She is a very intelligent student.", + "pos": "adjective", + "word_frequency": 3219 + }, + { + "word": "interaction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reciprocal action or influence", + "example_sentence_english": "Social interaction is important for mental health.", + "pos": "noun", + "word_frequency": 3220 + }, + { + "word": "jet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an aircraft powered by jet engines", + "example_sentence_english": "The jet flew high above the clouds.", + "pos": "noun", + "word_frequency": 3221 + }, + { + "word": "lifestyle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way in which a person or group lives", + "example_sentence_english": "A healthy lifestyle includes exercise and good food.", + "pos": "noun", + "word_frequency": 3222 + }, + { + "word": "lighting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the arrangement or effect of lights", + "example_sentence_english": "The lighting in the room was very dim.", + "pos": "noun", + "word_frequency": 3223 + }, + { + "word": "loop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shape produced by a curve that bends around and crosses itself", + "example_sentence_english": "The road makes a loop around the park.", + "pos": "noun", + "word_frequency": 3225 + }, + { + "word": "mall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large enclosed shopping area", + "example_sentence_english": "We went to the mall to buy new clothes.", + "pos": "noun", + "word_frequency": 3226 + }, + { + "word": "overseas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in or to a foreign country, across the sea", + "example_sentence_english": "Many students choose to study overseas.", + "pos": "adverb", + "word_frequency": 3228 + }, + { + "word": "polish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make something smooth and shiny by rubbing", + "example_sentence_english": "She used a cloth to polish the silver.", + "pos": "verb", + "word_frequency": 3230 + }, + { + "word": "recommendation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a suggestion or proposal as to the best course of action", + "example_sentence_english": "Do you have any recommendations for a good restaurant?", + "pos": "noun", + "word_frequency": 3231 + }, + { + "word": "recover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to return to a normal state of health, mind, or strength", + "example_sentence_english": "It took him a long time to recover from the illness.", + "pos": "verb", + "word_frequency": 3232 + }, + { + "word": "relax", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make or become less tense or anxious", + "example_sentence_english": "After work, I like to relax with a book.", + "pos": "verb", + "word_frequency": 3233 + }, + { + "word": "reliable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistently good in quality or performance; able to be trusted", + "example_sentence_english": "She is a very reliable employee.", + "pos": "adjective", + "word_frequency": 3234 + }, + { + "word": "rely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depend on with full trust or confidence", + "example_sentence_english": "You can always rely on him for help.", + "pos": "verb", + "word_frequency": 3235 + }, + { + "word": "remarkable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worthy of attention; striking", + "example_sentence_english": "She made remarkable progress in her studies.", + "pos": "adjective", + "word_frequency": 3236 + }, + { + "word": "ruling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an authoritative decision or pronouncement, especially one made by a judge", + "example_sentence_english": "The court's ruling was final.", + "pos": "noun", + "word_frequency": 3237 + }, + { + "word": "sacrifice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of giving up something valued for the sake of something else regarded as more important or worthy", + "example_sentence_english": "Parents often make sacrifices for their children.", + "pos": "noun", + "word_frequency": 3238 + }, + { + "word": "sole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only; single", + "example_sentence_english": "His sole purpose was to help others.", + "pos": "adjective", + "word_frequency": 3240 + }, + { + "word": "succeed", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "achieve a goal; follow in order", + "example_sentence_english": "She worked hard to succeed in her career.", + "pos": "verb", + "word_frequency": 3241 + }, + { + "word": "tale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "story", + "example_sentence_english": "The old man told a fascinating tale about his travels.", + "pos": "noun", + "word_frequency": 3242 + }, + { + "word": "timing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the choice or control of the time when something happens", + "example_sentence_english": "The timing of the announcement was perfect.", + "pos": "noun", + "word_frequency": 3243 + }, + { + "word": "volunteer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who offers to do something without being forced or paid", + "example_sentence_english": "Many volunteers helped clean up the park.", + "pos": "noun", + "word_frequency": 3244 + }, + { + "word": "worship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "show reverence and adoration for (a deity); treat with adoration", + "example_sentence_english": "People gather to worship at the temple.", + "pos": "verb", + "word_frequency": 3245 + }, + { + "word": "worthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserving respect or attention", + "example_sentence_english": "Her efforts were worthy of praise.", + "pos": "adjective", + "word_frequency": 3246 + }, + { + "word": "alarm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a warning sound or signal; fear or anxiety", + "example_sentence_english": "The fire alarm rang loudly.", + "pos": "noun", + "word_frequency": 3247 + }, + { + "word": "bass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "low frequency sound; a type of fish", + "example_sentence_english": "The bass in the music was very strong.", + "pos": "noun", + "word_frequency": 3248 + }, + { + "word": "bloody", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "covered in blood; (UK informal) used to express anger or to emphasize a statement", + "example_sentence_english": "He had a bloody nose after the fall.", + "pos": "adjective", + "word_frequency": 3249 + }, + { + "word": "breathe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "take air into and expel it from the lungs", + "example_sentence_english": "It's important to breathe deeply when you exercise.", + "pos": "verb", + "word_frequency": 3250 + }, + { + "word": "butt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the thicker end of something; a target; buttocks", + "example_sentence_english": "He flicked the cigarette butt into the ashtray.", + "pos": "noun", + "word_frequency": 3251 + }, + { + "word": "characteristic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feature or quality belonging typically to a person, place, or thing", + "example_sentence_english": "A key characteristic of the species is its long tail.", + "pos": "noun", + "word_frequency": 3252 + }, + { + "word": "collaboration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of working with someone to produce or create something", + "example_sentence_english": "The project was a successful collaboration between the two teams.", + "pos": "noun", + "word_frequency": 3254 + }, + { + "word": "con", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disadvantage; a confidence trick", + "example_sentence_english": "We weighed the pros and cons of the proposal.", + "pos": "noun", + "word_frequency": 3255 + }, + { + "word": "consideration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careful thought; a factor to be taken into account", + "example_sentence_english": "After much consideration, we decided to accept the offer.", + "pos": "noun", + "word_frequency": 3256 + }, + { + "word": "crucial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely important; vital", + "example_sentence_english": "It is crucial that we act immediately.", + "pos": "adjective", + "word_frequency": 3257 + }, + { + "word": "dependent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reliant on someone or something else", + "example_sentence_english": "Children are dependent on their parents.", + "pos": "adjective", + "word_frequency": 3258 + }, + { + "word": "dual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consisting of two parts, elements, or aspects", + "example_sentence_english": "He holds dual citizenship.", + "pos": "adjective", + "word_frequency": 3259 + }, + { + "word": "equip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provide with necessary items for a particular purpose", + "example_sentence_english": "The school aims to equip students with essential skills.", + "pos": "verb", + "word_frequency": 3261 + }, + { + "word": "experimental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based on or derived from experience rather than theory; new or innovative", + "example_sentence_english": "They are conducting experimental research on new drugs.", + "pos": "adjective", + "word_frequency": 3262 + }, + { + "word": "filter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device that removes impurities or unwanted elements", + "example_sentence_english": "The coffee machine has a built-in filter.", + "pos": "noun", + "word_frequency": 3263 + }, + { + "word": "galaxy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of millions or billions of stars, together with gas and dust, held together by gravitational attraction", + "example_sentence_english": "Our solar system is part of the Milky Way galaxy.", + "pos": "noun", + "word_frequency": 3264 + }, + { + "word": "globe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the Earth; a spherical model of the Earth", + "example_sentence_english": "The children learned about different countries on the globe.", + "pos": "noun", + "word_frequency": 3265 + }, + { + "word": "gulf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deep inlet of the sea almost surrounded by land, with a narrow mouth; a wide gap or difference", + "example_sentence_english": "The Gulf of Mexico is a large body of water.", + "pos": "noun", + "word_frequency": 3267 + }, + { + "word": "highlight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the most interesting or memorable part", + "example_sentence_english": "The highlight of the trip was visiting the ancient ruins.", + "pos": "noun", + "word_frequency": 3268 + }, + { + "word": "intent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purpose or aim", + "example_sentence_english": "His intent was to finish the project on time.", + "pos": "noun", + "word_frequency": 3269 + }, + { + "word": "judgment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to make considered decisions or come to sensible conclusions", + "example_sentence_english": "She showed good judgment in a difficult situation.", + "pos": "noun", + "word_frequency": 3270 + }, + { + "word": "knight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man who served his sovereign or lord as a mounted soldier in armor", + "example_sentence_english": "The knight wore shining armor.", + "pos": "noun", + "word_frequency": 3272 + }, + { + "word": "logo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a symbol or other design adopted by an organization to identify its products, uniform, vehicles, etc.", + "example_sentence_english": "The company updated its logo last year.", + "pos": "noun", + "word_frequency": 3276 + }, + { + "word": "mature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fully developed physically; behaving in a sensible way like an adult", + "example_sentence_english": "She is very mature for her age.", + "pos": "adjective", + "word_frequency": 3278 + }, + { + "word": "peaceful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calm, quiet, without war", + "example_sentence_english": "The lake was very peaceful at dawn.", + "pos": "adjective", + "word_frequency": 3282 + }, + { + "word": "photographer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "person who takes photos", + "example_sentence_english": "The photographer captured the beautiful sunset.", + "pos": "noun", + "word_frequency": 3284 + }, + { + "word": "pin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small, thin piece of metal with a sharp point", + "example_sentence_english": "She used a pin to attach the note to the board.", + "pos": "noun", + "word_frequency": 3285 + }, + { + "word": "prevention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of stopping something from happening", + "example_sentence_english": "Disease prevention is crucial for public health.", + "pos": "noun", + "word_frequency": 3286 + }, + { + "word": "printing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of producing books, newspapers, etc., by machine", + "example_sentence_english": "The printing of the new book will begin next week.", + "pos": "noun", + "word_frequency": 3287 + }, + { + "word": "publicly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that involves the public", + "example_sentence_english": "He apologized publicly for his mistake.", + "pos": "adverb", + "word_frequency": 3288 + }, + { + "word": "pump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device used to force liquid or gas into or out of something", + "example_sentence_english": "We need a pump to inflate the tires.", + "pos": "noun", + "word_frequency": 3289 + }, + { + "word": "revenge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harm done to someone as a punishment for harm they have done to you", + "example_sentence_english": "He sought revenge for the injustice.", + "pos": "noun", + "word_frequency": 3290 + }, + { + "word": "satisfy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to please someone by giving them what they want or need", + "example_sentence_english": "The meal was enough to satisfy my hunger.", + "pos": "verb", + "word_frequency": 3291 + }, + { + "word": "slip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small piece of paper; a mistake", + "example_sentence_english": "I made a slip of the tongue during the presentation.", + "pos": "noun", + "word_frequency": 3292 + }, + { + "word": "spare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extra, not needed for ordinary use", + "example_sentence_english": "Do you have a spare key?", + "pos": "adjective", + "word_frequency": 3293 + }, + { + "word": "specialist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who has special knowledge or skill in a particular area", + "example_sentence_english": "You should see a specialist about your knee pain.", + "pos": "noun", + "word_frequency": 3294 + }, + { + "word": "stranger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person you do not know", + "example_sentence_english": "Don't talk to strangers.", + "pos": "noun", + "word_frequency": 3295 + }, + { + "word": "tap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device that controls the flow of water from a pipe", + "example_sentence_english": "Please turn off the tap when you're done.", + "pos": "noun", + "word_frequency": 3296 + }, + { + "word": "tourism", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the business of providing services for tourists", + "example_sentence_english": "Tourism is a major industry in this region.", + "pos": "noun", + "word_frequency": 3298 + }, + { + "word": "acceptable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be agreed on or approved of", + "example_sentence_english": "The quality of the work was acceptable.", + "pos": "adjective", + "word_frequency": 3301 + }, + { + "word": "ally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a country or person that helps another in a war or conflict", + "example_sentence_english": "They became close allies during the war.", + "pos": "noun", + "word_frequency": 3302 + }, + { + "word": "auction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a public sale in which goods or property are sold to the highest bidder", + "example_sentence_english": "The painting was sold at auction for a high price.", + "pos": "noun", + "word_frequency": 3303 + }, + { + "word": "chaos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete disorder and confusion", + "example_sentence_english": "The sudden announcement caused complete chaos.", + "pos": "noun", + "word_frequency": 3304 + }, + { + "word": "compose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to create or write (a piece of music or writing)", + "example_sentence_english": "He likes to compose music in his free time.", + "pos": "verb", + "word_frequency": 3307 + }, + { + "word": "concentration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to give all your attention to one thing", + "example_sentence_english": "Studying requires a lot of concentration.", + "pos": "noun", + "word_frequency": 3308 + }, + { + "word": "copper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a reddish-brown metal", + "example_sentence_english": "The pipes were made of copper.", + "pos": "noun", + "word_frequency": 3309 + }, + { + "word": "corps", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a main subdivision of an army; a body of people engaged in a particular activity", + "example_sentence_english": "The Marine Corps is a branch of the US Armed Forces.", + "pos": "noun", + "word_frequency": 3311 + }, + { + "word": "dawn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the first appearance of light in the sky before sunrise", + "example_sentence_english": "We woke up at dawn to see the sunrise.", + "pos": "noun", + "word_frequency": 3312 + }, + { + "word": "dispute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disagreement or argument", + "example_sentence_english": "They had a dispute over the property.", + "pos": "noun", + "word_frequency": 3313 + }, + { + "word": "earning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money obtained in return for labor or services", + "example_sentence_english": "His earning potential increased after he got his degree.", + "pos": "noun", + "word_frequency": 3314 + }, + { + "word": "execute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry out or perform (a plan, order, or course of action); to kill someone as a legal punishment", + "example_sentence_english": "The team needs to execute the plan perfectly.", + "pos": "verb", + "word_frequency": 3315 + }, + { + "word": "frequent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening often", + "example_sentence_english": "He is a frequent visitor to the library.", + "pos": "adjective", + "word_frequency": 3316 + }, + { + "word": "gather", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to come together; to collect", + "example_sentence_english": "The family will gather for dinner tonight.", + "pos": "verb", + "word_frequency": 3317 + }, + { + "word": "hilarious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely funny", + "example_sentence_english": "The movie was absolutely hilarious.", + "pos": "adjective", + "word_frequency": 3318 + }, + { + "word": "margin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edge; difference", + "example_sentence_english": "Please write your notes in the margin of the page.", + "pos": "noun", + "word_frequency": 3321 + }, + { + "word": "mechanism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of parts working together", + "example_sentence_english": "The clock's internal mechanism is very complex.", + "pos": "noun", + "word_frequency": 3324 + }, + { + "word": "moderate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "average; not extreme", + "example_sentence_english": "The weather forecast predicts moderate winds for tomorrow.", + "pos": "adjective", + "word_frequency": 3325 + }, + { + "word": "opera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dramatic work in one or more acts, set to music", + "example_sentence_english": "They went to see an opera at the Royal Opera House.", + "pos": "noun", + "word_frequency": 3328 + }, + { + "word": "overcome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defeat or succeed in dealing with", + "example_sentence_english": "She had to overcome many challenges to achieve her goal.", + "pos": "verb", + "word_frequency": 3329 + }, + { + "word": "parallel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side by side and having the same distance continuously between them", + "example_sentence_english": "The two roads run parallel to each other for several miles.", + "pos": "adjective", + "word_frequency": 3330 + }, + { + "word": "passage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a narrow way allowing access; a section of text", + "example_sentence_english": "The secret passage led to an old hidden room.", + "pos": "noun", + "word_frequency": 3331 + }, + { + "word": "pit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large hole in the ground; a stone of a fruit", + "example_sentence_english": "They dug a deep pit to plant the new tree.", + "pos": "noun", + "word_frequency": 3332 + }, + { + "word": "psychological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the mind and mental states", + "example_sentence_english": "The accident had a significant psychological impact on her.", + "pos": "adjective", + "word_frequency": 3333 + }, + { + "word": "quest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long or arduous search for something", + "example_sentence_english": "The knights embarked on a quest for the Holy Grail.", + "pos": "noun", + "word_frequency": 3334 + }, + { + "word": "radiation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy transmitted in the form of waves or particles", + "example_sentence_english": "Exposure to high levels of radiation can be dangerous.", + "pos": "noun", + "word_frequency": 3335 + }, + { + "word": "stroke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden disabling attack; a single movement", + "example_sentence_english": "He suffered a stroke that affected his speech.", + "pos": "noun", + "word_frequency": 3336 + }, + { + "word": "stunning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely impressive or attractive", + "example_sentence_english": "The view from the mountain top was absolutely stunning.", + "pos": "adjective", + "word_frequency": 3337 + }, + { + "word": "tune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a melody or song", + "example_sentence_english": "I can't get that catchy tune out of my head.", + "pos": "noun", + "word_frequency": 3339 + }, + { + "word": "utility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being useful, profitable, or beneficial", + "example_sentence_english": "The new software has great utility for data analysis.", + "pos": "noun", + "word_frequency": 3340 + }, + { + "word": "vessel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ship or large boat; a container", + "example_sentence_english": "The ancient vessel was discovered at the bottom of the sea.", + "pos": "noun", + "word_frequency": 3341 + }, + { + "word": "weed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wild plant growing where it is not wanted", + "example_sentence_english": "I spent the afternoon pulling weeds from the garden.", + "pos": "noun", + "word_frequency": 3342 + }, + { + "word": "wherever", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in or to whatever place", + "example_sentence_english": "You can sit wherever you like.", + "pos": "adverb", + "word_frequency": 3343 + }, + { + "word": "acquisition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of gaining possession of something", + "example_sentence_english": "The company announced its latest acquisition of a smaller firm.", + "pos": "noun", + "word_frequency": 3345 + }, + { + "word": "anime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Japanese animated films and television shows", + "example_sentence_english": "Many people enjoy watching Japanese anime series.", + "pos": "noun", + "word_frequency": 3348 + }, + { + "word": "autumn", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the season after summer and before winter", + "example_sentence_english": "The leaves turn beautiful colors in autumn.", + "pos": "noun", + "word_frequency": 3349 + }, + { + "word": "bold", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showing a willingness to take risks; strong in appearance", + "example_sentence_english": "It was a bold decision to quit her job and start her own business.", + "pos": "adjective", + "word_frequency": 3351 + }, + { + "word": "classical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to ancient Greek or Latin literature, art, or culture; traditional", + "example_sentence_english": "She enjoys listening to classical music, especially Mozart.", + "pos": "adjective", + "word_frequency": 3353 + }, + { + "word": "classify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange in classes or categories", + "example_sentence_english": "Scientists classify animals into different species.", + "pos": "verb", + "word_frequency": 3354 + }, + { + "word": "clip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for holding things together; a short extract from a film or broadcast", + "example_sentence_english": "She used a paper clip to hold the documents together.", + "pos": "noun", + "word_frequency": 3355 + }, + { + "word": "coin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a flat, typically round piece of metal with an official stamp, used as money", + "example_sentence_english": "I found a rare old coin in my grandfather's collection.", + "pos": "noun", + "word_frequency": 3356 + }, + { + "word": "conspiracy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a secret plan by a group to do something unlawful or harmful", + "example_sentence_english": "The police uncovered a conspiracy to defraud the government.", + "pos": "noun", + "word_frequency": 3357 + }, + { + "word": "controversy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prolonged public disagreement or argument", + "example_sentence_english": "The new policy sparked a lot of controversy among the public.", + "pos": "noun", + "word_frequency": 3358 + }, + { + "word": "disappear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to vanish", + "example_sentence_english": "The magician made the rabbit disappear.", + "pos": "verb", + "word_frequency": 3360 + }, + { + "word": "encounter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a meeting, often unexpected", + "example_sentence_english": "Their first encounter was at a coffee shop.", + "pos": "noun", + "word_frequency": 3362 + }, + { + "word": "equality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being equal", + "example_sentence_english": "They fought for equality and justice.", + "pos": "noun", + "word_frequency": 3363 + }, + { + "word": "exam", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a test of knowledge or ability", + "example_sentence_english": "I have a math exam tomorrow.", + "pos": "noun", + "word_frequency": 3364 + }, + { + "word": "examination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a formal test or inspection", + "example_sentence_english": "The doctor performed a thorough examination.", + "pos": "noun", + "word_frequency": 3365 + }, + { + "word": "federation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of states or organizations united under a central government", + "example_sentence_english": "The federation of states agreed on a new policy.", + "pos": "noun", + "word_frequency": 3366 + }, + { + "word": "fiscal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to government revenue, especially taxes", + "example_sentence_english": "The government announced new fiscal policies.", + "pos": "adjective", + "word_frequency": 3368 + }, + { + "word": "guardian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who protects or looks after someone or something", + "example_sentence_english": "She was appointed as the child's legal guardian.", + "pos": "noun", + "word_frequency": 3369 + }, + { + "word": "homeless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without a home", + "example_sentence_english": "Many people become homeless due to economic hardship.", + "pos": "adjective", + "word_frequency": 3371 + }, + { + "word": "intervention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of intervening", + "example_sentence_english": "Military intervention was considered to resolve the conflict.", + "pos": "noun", + "word_frequency": 3372 + }, + { + "word": "lover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who loves someone or something", + "example_sentence_english": "He was a great lover of classical music.", + "pos": "noun", + "word_frequency": 3374 + }, + { + "word": "mainstream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ideas, attitudes, or activities that are regarded as normal or conventional", + "example_sentence_english": "His ideas are outside the mainstream.", + "pos": "noun", + "word_frequency": 3375 + }, + { + "word": "menu", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a list of dishes available in a restaurant", + "example_sentence_english": "Can I see the menu, please?", + "pos": "noun", + "word_frequency": 3376 + }, + { + "word": "mutual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a feeling or action) experienced or done by each of two or more parties toward the other or others", + "example_sentence_english": "They had a mutual respect for each other.", + "pos": "adjective", + "word_frequency": 3378 + }, + { + "word": "offense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an illegal act; a crime", + "example_sentence_english": "He was charged with a minor offense.", + "pos": "noun", + "word_frequency": 3380 + }, + { + "word": "oral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the mouth; spoken rather than written", + "example_sentence_english": "The students had an oral exam.", + "pos": "adjective", + "word_frequency": 3381 + }, + { + "word": "panic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sudden uncontrollable fear or anxiety", + "example_sentence_english": "There was a moment of panic when the lights went out.", + "pos": "noun", + "word_frequency": 3382 + }, + { + "word": "pursue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to follow or chase (someone or something)", + "example_sentence_english": "He decided to pursue a career in medicine.", + "pos": "verb", + "word_frequency": 3383 + }, + { + "word": "realise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to become aware of something", + "example_sentence_english": "I didn't realise how late it was.", + "pos": "verb", + "word_frequency": 3384 + }, + { + "word": "refugee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has been forced to leave their country", + "example_sentence_english": "The camp provided shelter for thousands of refugees.", + "pos": "noun", + "word_frequency": 3385 + }, + { + "word": "rip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tear or cut in something", + "example_sentence_english": "There was a small rip in his jacket.", + "pos": "noun", + "word_frequency": 3386 + }, + { + "word": "scope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the extent of the area or subject matter that something deals with or to which it is relevant", + "example_sentence_english": "The project's scope was very broad.", + "pos": "noun", + "word_frequency": 3387 + }, + { + "word": "segment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a part of something larger", + "example_sentence_english": "We watched a news segment about the election.", + "pos": "noun", + "word_frequency": 3388 + }, + { + "word": "spectrum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a range of different things", + "example_sentence_english": "The book covers a wide spectrum of topics.", + "pos": "noun", + "word_frequency": 3389 + }, + { + "word": "terror", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme fear", + "example_sentence_english": "The city lived in terror after the attacks.", + "pos": "noun", + "word_frequency": 3391 + }, + { + "word": "venture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a risky or daring journey or undertaking", + "example_sentence_english": "The new business venture proved to be very successful.", + "pos": "noun", + "word_frequency": 3394 + }, + { + "word": "virtually", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almost; nearly", + "example_sentence_english": "The city was virtually empty during the holiday.", + "pos": "adverb", + "word_frequency": 3395 + }, + { + "word": "accompany", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go somewhere with someone as a companion or escort", + "example_sentence_english": "She agreed to accompany him to the party.", + "pos": "verb", + "word_frequency": 3399 + }, + { + "word": "alpha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first letter of the Greek alphabet; dominant individual", + "example_sentence_english": "Alpha is the first letter of the Greek alphabet.", + "pos": "noun", + "word_frequency": 3401 + }, + { + "word": "arrangement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plan; order", + "example_sentence_english": "We need to make an arrangement for the meeting next week.", + "pos": "noun", + "word_frequency": 3402 + }, + { + "word": "boundary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a line that marks the limits of an area", + "example_sentence_english": "The river forms a natural boundary between the two countries.", + "pos": "noun", + "word_frequency": 3403 + }, + { + "word": "brick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a block of baked clay used for building", + "example_sentence_english": "The house was built with red bricks.", + "pos": "noun", + "word_frequency": 3404 + }, + { + "word": "considerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large or important", + "example_sentence_english": "They made considerable progress on the project.", + "pos": "adjective", + "word_frequency": 3406 + }, + { + "word": "conventional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based on or in accordance with what is generally accepted", + "example_sentence_english": "She prefers conventional methods of teaching.", + "pos": "adjective", + "word_frequency": 3407 + }, + { + "word": "designate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to officially choose someone or something for a particular purpose", + "example_sentence_english": "The area was designated a national park.", + "pos": "verb", + "word_frequency": 3410 + }, + { + "word": "emperor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sovereign ruler of great power and rank", + "example_sentence_english": "The emperor ruled over a vast empire.", + "pos": "noun", + "word_frequency": 3412 + }, + { + "word": "employer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person or organization that employs people", + "example_sentence_english": "My employer offers good benefits.", + "pos": "noun", + "word_frequency": 3413 + }, + { + "word": "enormous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very large", + "example_sentence_english": "The elephant was an enormous animal.", + "pos": "adjective", + "word_frequency": 3414 + }, + { + "word": "forgive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop feeling angry or resentful towards someone for an offense", + "example_sentence_english": "Please forgive me for my mistake.", + "pos": "verb", + "word_frequency": 3415 + }, + { + "word": "garage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a building for parking a car", + "example_sentence_english": "I parked my car in the garage.", + "pos": "noun", + "word_frequency": 3416 + }, + { + "word": "gathering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a meeting or assembly", + "example_sentence_english": "There was a small gathering of friends at her house.", + "pos": "noun", + "word_frequency": 3417 + }, + { + "word": "guideline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a general rule, principle, or piece of advice", + "example_sentence_english": "The company issued new guidelines for remote work.", + "pos": "noun", + "word_frequency": 3418 + }, + { + "word": "inquiry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of asking for information", + "example_sentence_english": "We received an inquiry about our new product.", + "pos": "noun", + "word_frequency": 3420 + }, + { + "word": "inspector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official who examines things carefully", + "example_sentence_english": "The building inspector checked the new construction.", + "pos": "noun", + "word_frequency": 3421 + }, + { + "word": "lion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large wild cat", + "example_sentence_english": "The lion roared loudly in the savanna.", + "pos": "noun", + "word_frequency": 3424 + }, + { + "word": "lonely", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sad because one has no friends or company", + "example_sentence_english": "She felt lonely after her friends left.", + "pos": "adjective", + "word_frequency": 3425 + }, + { + "word": "mercy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassion or forgiveness shown toward someone", + "example_sentence_english": "The judge showed mercy to the young offender.", + "pos": "noun", + "word_frequency": 3426 + }, + { + "word": "outer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on the outside", + "example_sentence_english": "The outer layer of the onion was dry.", + "pos": "adjective", + "word_frequency": 3428 + }, + { + "word": "oxygen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a colorless, odorless reactive gas", + "example_sentence_english": "Humans need oxygen to breathe.", + "pos": "noun", + "word_frequency": 3429 + }, + { + "word": "pipe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tube used to convey water, gas, oil, etc.", + "example_sentence_english": "The water pipe burst during the winter.", + "pos": "noun", + "word_frequency": 3430 + }, + { + "word": "piss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to urinate", + "example_sentence_english": "He had to piss urgently.", + "pos": "verb", + "word_frequency": 3431 + }, + { + "word": "poem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of writing in which the expression of feelings and ideas is given intensity by the use of distinctive style and rhythm", + "example_sentence_english": "She wrote a beautiful poem about nature.", + "pos": "noun", + "word_frequency": 3432 + }, + { + "word": "powder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fine dry particles of a substance", + "example_sentence_english": "She put some face powder on her nose.", + "pos": "noun", + "word_frequency": 3433 + }, + { + "word": "racism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudice, discrimination, or antagonism directed against someone of a different race", + "example_sentence_english": "Racism is a serious social issue.", + "pos": "noun", + "word_frequency": 3434 + }, + { + "word": "rude", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "impolite or offensive", + "example_sentence_english": "It was rude of him to interrupt.", + "pos": "adjective", + "word_frequency": 3436 + }, + { + "word": "screw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a metal fastener with a helical thread", + "example_sentence_english": "He used a screwdriver to tighten the screw.", + "pos": "noun", + "word_frequency": 3437 + }, + { + "word": "shelter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place providing protection from bad weather or danger", + "example_sentence_english": "They sought shelter from the storm.", + "pos": "noun", + "word_frequency": 3439 + }, + { + "word": "signature", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signature", + "example_sentence_english": "Please put your signature at the bottom of the form.", + "pos": "noun", + "word_frequency": 3440 + }, + { + "word": "spider", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spider", + "example_sentence_english": "A spider built a web in the corner of the window.", + "pos": "noun", + "word_frequency": 3441 + }, + { + "word": "tribute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribute", + "example_sentence_english": "The concert was a tribute to the late singer.", + "pos": "noun", + "word_frequency": 3443 + }, + { + "word": "trigger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger", + "example_sentence_english": "Loud noises can be a trigger for his anxiety.", + "pos": "noun", + "word_frequency": 3444 + }, + { + "word": "vary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to differ", + "example_sentence_english": "Prices may vary depending on the season.", + "pos": "verb", + "word_frequency": 3445 + }, + { + "word": "venue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "venue", + "example_sentence_english": "The concert venue was packed with fans.", + "pos": "noun", + "word_frequency": 3446 + }, + { + "word": "abortion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abortion", + "example_sentence_english": "The debate around abortion rights is complex.", + "pos": "noun", + "word_frequency": 3451 + }, + { + "word": "accuracy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accuracy", + "example_sentence_english": "We need to ensure the accuracy of the data.", + "pos": "noun", + "word_frequency": 3452 + }, + { + "word": "artificial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not natural", + "example_sentence_english": "The flowers were beautiful, but they were artificial.", + "pos": "adjective", + "word_frequency": 3454 + }, + { + "word": "bullet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullet", + "example_sentence_english": "The detective found a bullet casing at the crime scene.", + "pos": "noun", + "word_frequency": 3457 + }, + { + "word": "consistently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regularly, always", + "example_sentence_english": "She consistently performs well in her exams.", + "pos": "adverb", + "word_frequency": 3459 + }, + { + "word": "conversion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change", + "example_sentence_english": "The conversion of the old factory into apartments took a year.", + "pos": "noun", + "word_frequency": 3460 + }, + { + "word": "copyright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "copyright", + "example_sentence_english": "This book is protected by copyright law.", + "pos": "noun", + "word_frequency": 3461 + }, + { + "word": "deposit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deposit", + "example_sentence_english": "You need to pay a deposit to rent the apartment.", + "pos": "noun", + "word_frequency": 3462 + }, + { + "word": "destination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destination", + "example_sentence_english": "We reached our destination after a long journey.", + "pos": "noun", + "word_frequency": 3463 + }, + { + "word": "dirt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dirt", + "example_sentence_english": "His shoes were covered in dirt from the garden.", + "pos": "noun", + "word_frequency": 3464 + }, + { + "word": "diverse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "varied", + "example_sentence_english": "The city has a diverse population.", + "pos": "adjective", + "word_frequency": 3465 + }, + { + "word": "divine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holy, heavenly", + "example_sentence_english": "Many cultures believe in a divine power.", + "pos": "adjective", + "word_frequency": 3466 + }, + { + "word": "exclusively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only", + "example_sentence_english": "This offer is available exclusively to our members.", + "pos": "adverb", + "word_frequency": 3468 + }, + { + "word": "export", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "export", + "example_sentence_english": "Coffee is a major export of Brazil.", + "pos": "noun", + "word_frequency": 3469 + }, + { + "word": "formerly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previously", + "example_sentence_english": "She formerly worked as a teacher before becoming a writer.", + "pos": "adverb", + "word_frequency": 3470 + }, + { + "word": "functional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working, practical", + "example_sentence_english": "The new software is fully functional.", + "pos": "adjective", + "word_frequency": 3471 + }, + { + "word": "grandfather", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandfather", + "example_sentence_english": "My grandfather loves to tell stories about his youth.", + "pos": "noun", + "word_frequency": 3472 + }, + { + "word": "habit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habit", + "example_sentence_english": "It's a good habit to read every day.", + "pos": "noun", + "word_frequency": 3473 + }, + { + "word": "isolate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to separate", + "example_sentence_english": "They had to isolate the patient to prevent the spread of the virus.", + "pos": "verb", + "word_frequency": 3475 + }, + { + "word": "jealous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jealous", + "example_sentence_english": "He felt jealous when his friend won the award.", + "pos": "adjective", + "word_frequency": 3476 + }, + { + "word": "lazy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lazy", + "example_sentence_english": "He felt too lazy to go for a run.", + "pos": "adjective", + "word_frequency": 3478 + }, + { + "word": "mama", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mom, mother", + "example_sentence_english": "The child called out for his mama.", + "pos": "noun", + "word_frequency": 3479 + }, + { + "word": "modify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change or alter", + "example_sentence_english": "You may need to modify your plans.", + "pos": "verb", + "word_frequency": 3482 + }, + { + "word": "municipal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a city or town", + "example_sentence_english": "The municipal government handles local services.", + "pos": "adjective", + "word_frequency": 3483 + }, + { + "word": "naval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a navy or ships", + "example_sentence_english": "The country has a strong naval force.", + "pos": "adjective", + "word_frequency": 3484 + }, + { + "word": "neighbor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person living next door", + "example_sentence_english": "My neighbor helped me with my garden.", + "pos": "noun", + "word_frequency": 3485 + }, + { + "word": "neutral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not supporting either side", + "example_sentence_english": "It's important to remain neutral in an argument.", + "pos": "adjective", + "word_frequency": 3487 + }, + { + "word": "noble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having high moral principles", + "example_sentence_english": "He made a noble effort to help the poor.", + "pos": "adjective", + "word_frequency": 3488 + }, + { + "word": "pat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light tap or stroke", + "example_sentence_english": "She gave the dog a gentle pat on the head.", + "pos": "noun", + "word_frequency": 3489 + }, + { + "word": "popularity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being liked by many people", + "example_sentence_english": "The singer's popularity grew rapidly.", + "pos": "noun", + "word_frequency": 3491 + }, + { + "word": "robot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a machine designed to do tasks", + "example_sentence_english": "The factory uses robots for assembly.", + "pos": "noun", + "word_frequency": 3493 + }, + { + "word": "sacred", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holy or deserving respect", + "example_sentence_english": "The temple is a sacred place for many people.", + "pos": "adjective", + "word_frequency": 3494 + }, + { + "word": "spy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who secretly gathers information", + "example_sentence_english": "The spy collected secret documents.", + "pos": "noun", + "word_frequency": 3495 + }, + { + "word": "suggestion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an idea or plan put forward", + "example_sentence_english": "Do you have any suggestions for dinner?", + "pos": "noun", + "word_frequency": 3497 + }, + { + "word": "suspension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of stopping something temporarily", + "example_sentence_english": "The student received a suspension from school.", + "pos": "noun", + "word_frequency": 3499 + }, + { + "word": "terrorism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of violence to achieve political aims", + "example_sentence_english": "The government is fighting against terrorism.", + "pos": "noun", + "word_frequency": 3500 + }, + { + "word": "toxic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisonous or harmful", + "example_sentence_english": "Be careful, that plant is toxic.", + "pos": "adjective", + "word_frequency": 3502 + }, + { + "word": "treasury", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where money is kept; a government department", + "example_sentence_english": "The national treasury manages the country's finances.", + "pos": "noun", + "word_frequency": 3503 + }, + { + "word": "tunnel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an underground passage", + "example_sentence_english": "The train went through a long tunnel.", + "pos": "noun", + "word_frequency": 3504 + }, + { + "word": "upgrade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an improvement or enhancement", + "example_sentence_english": "We need an upgrade to our computer system.", + "pos": "noun", + "word_frequency": 3505 + }, + { + "word": "warrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official authorization", + "example_sentence_english": "The police obtained a search warrant.", + "pos": "noun", + "word_frequency": 3506 + }, + { + "word": "actively", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an active way", + "example_sentence_english": "She actively participates in class discussions.", + "pos": "adverb", + "word_frequency": 3508 + }, + { + "word": "ai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artificial intelligence", + "example_sentence_english": "AI is changing many industries.", + "pos": "noun", + "word_frequency": 3510 + }, + { + "word": "baker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who bakes bread and cakes", + "example_sentence_english": "The baker makes fresh bread every morning.", + "pos": "noun", + "word_frequency": 3511 + }, + { + "word": "bless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ask for divine favor; to make holy", + "example_sentence_english": "May God bless you and your family.", + "pos": "verb", + "word_frequency": 3513 + }, + { + "word": "brazilian", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to Brazil", + "example_sentence_english": "She speaks Brazilian Portuguese.", + "pos": "adjective", + "word_frequency": 3514 + }, + { + "word": "brush", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an implement with bristles", + "example_sentence_english": "I need a new brush for my hair.", + "pos": "noun", + "word_frequency": 3515 + }, + { + "word": "burden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy load; a responsibility", + "example_sentence_english": "The financial burden was too much for him.", + "pos": "noun", + "word_frequency": 3516 + }, + { + "word": "casual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxed and informal", + "example_sentence_english": "He prefers casual clothes for work.", + "pos": "adjective", + "word_frequency": 3518 + }, + { + "word": "certify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confirm officially", + "example_sentence_english": "The doctor will certify your medical condition.", + "pos": "verb", + "word_frequency": 3519 + }, + { + "word": "charter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a written grant of rights", + "example_sentence_english": "The company was granted a royal charter.", + "pos": "noun", + "word_frequency": 3520 + }, + { + "word": "chef", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a professional cook", + "example_sentence_english": "The chef prepared a delicious meal.", + "pos": "noun", + "word_frequency": 3521 + }, + { + "word": "civilian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person not in the armed forces", + "example_sentence_english": "The accident involved both military personnel and civilians.", + "pos": "noun", + "word_frequency": 3522 + }, + { + "word": "coalition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a temporary alliance", + "example_sentence_english": "The two parties formed a coalition government.", + "pos": "noun", + "word_frequency": 3523 + }, + { + "word": "cock", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a male chicken", + "example_sentence_english": "The cock crowed at dawn.", + "pos": "noun", + "word_frequency": 3524 + }, + { + "word": "complain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "express dissatisfaction", + "example_sentence_english": "She always complains about the weather.", + "pos": "verb", + "word_frequency": 3525 + }, + { + "word": "controversial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing public disagreement", + "example_sentence_english": "The new policy is highly controversial.", + "pos": "adjective", + "word_frequency": 3526 + }, + { + "word": "differently", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a different manner", + "example_sentence_english": "Try to do it differently this time.", + "pos": "adverb", + "word_frequency": 3528 + }, + { + "word": "discipline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training to obey rules", + "example_sentence_english": "Good discipline is essential for success.", + "pos": "noun", + "word_frequency": 3529 + }, + { + "word": "disgusting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing a strong feeling of dislike", + "example_sentence_english": "That smell is absolutely disgusting.", + "pos": "adjective", + "word_frequency": 3530 + }, + { + "word": "dj", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disc jockey", + "example_sentence_english": "The DJ played some great music at the party.", + "pos": "noun", + "word_frequency": 3531 + }, + { + "word": "dominant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most important, powerful, or influential", + "example_sentence_english": "The company holds a dominant position in the market.", + "pos": "adjective", + "word_frequency": 3532 + }, + { + "word": "essay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short piece of writing on a particular subject", + "example_sentence_english": "I have to write an essay for my English class.", + "pos": "noun", + "word_frequency": 3534 + }, + { + "word": "furthermore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in addition; besides", + "example_sentence_english": "It's too expensive; furthermore, it's too small.", + "pos": "adverb", + "word_frequency": 3535 + }, + { + "word": "graphic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to visual art; vivid", + "example_sentence_english": "The movie contained graphic violence.", + "pos": "adjective", + "word_frequency": 3536 + }, + { + "word": "heal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to become sound or healthy again", + "example_sentence_english": "It will take time for the wound to heal.", + "pos": "verb", + "word_frequency": 3538 + }, + { + "word": "implement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put a decision or plan into effect", + "example_sentence_english": "The company decided to implement new safety procedures.", + "pos": "verb", + "word_frequency": 3539 + }, + { + "word": "instantly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediately", + "example_sentence_english": "She recognized him instantly.", + "pos": "adverb", + "word_frequency": 3540 + }, + { + "word": "invasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of invading a country or region", + "example_sentence_english": "The invasion began at dawn.", + "pos": "noun", + "word_frequency": 3541 + }, + { + "word": "laptop", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a portable computer", + "example_sentence_english": "I bought a new laptop for work.", + "pos": "noun", + "word_frequency": 3543 + }, + { + "word": "legendary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very famous or well known", + "example_sentence_english": "He is a legendary figure in the music industry.", + "pos": "adjective", + "word_frequency": 3544 + }, + { + "word": "maker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that makes something", + "example_sentence_english": "He is a skilled furniture maker.", + "pos": "noun", + "word_frequency": 3546 + }, + { + "word": "opponent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "someone who competes against or fights another", + "example_sentence_english": "He defeated his opponent in the final round.", + "pos": "noun", + "word_frequency": 3549 + }, + { + "word": "outdoor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "done, used, or located outside", + "example_sentence_english": "We enjoy outdoor activities like hiking.", + "pos": "adjective", + "word_frequency": 3550 + }, + { + "word": "palm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the inner surface of the hand", + "example_sentence_english": "She held the small bird in the palm of her hand.", + "pos": "noun", + "word_frequency": 3551 + }, + { + "word": "pole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, slender piece of wood or metal", + "example_sentence_english": "The flag was flying from the top of the pole.", + "pos": "noun", + "word_frequency": 3553 + }, + { + "word": "pub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a public house; bar", + "example_sentence_english": "Let's go to the pub for a drink.", + "pos": "noun", + "word_frequency": 3554 + }, + { + "word": "ranger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a keeper of a park or forest", + "example_sentence_english": "The park ranger warned us about bears.", + "pos": "noun", + "word_frequency": 3556 + }, + { + "word": "reception", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area in a hotel or office where guests are greeted", + "example_sentence_english": "Please ask at the reception desk for your key.", + "pos": "noun", + "word_frequency": 3557 + }, + { + "word": "recipe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a set of instructions for preparing food", + "example_sentence_english": "Do you have a good recipe for chocolate cake?", + "pos": "noun", + "word_frequency": 3558 + }, + { + "word": "regulatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving to regulate", + "example_sentence_english": "The company must comply with all regulatory requirements.", + "pos": "adjective", + "word_frequency": 3559 + }, + { + "word": "rubber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elastic material", + "example_sentence_english": "The sole of the shoe is made of rubber.", + "pos": "noun", + "word_frequency": 3560 + }, + { + "word": "serial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequential", + "example_sentence_english": "The police are looking for a serial killer.", + "pos": "adjective", + "word_frequency": 3561 + }, + { + "word": "shed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small building", + "example_sentence_english": "We keep our gardening tools in the shed.", + "pos": "noun", + "word_frequency": 3562 + }, + { + "word": "snake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reptile", + "example_sentence_english": "Be careful, there might be a snake in the grass.", + "pos": "noun", + "word_frequency": 3563 + }, + { + "word": "sponsor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support financially", + "example_sentence_english": "The company decided to sponsor the local sports team.", + "pos": "verb", + "word_frequency": 3564 + }, + { + "word": "strict", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm, rigid", + "example_sentence_english": "My parents were very strict about bedtime.", + "pos": "adjective", + "word_frequency": 3565 + }, + { + "word": "subsequently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "afterwards", + "example_sentence_english": "He failed the first test, but subsequently passed the retake.", + "pos": "adverb", + "word_frequency": 3566 + }, + { + "word": "substance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material, essence", + "example_sentence_english": "Water is a clear liquid substance.", + "pos": "noun", + "word_frequency": 3567 + }, + { + "word": "syndrome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of symptoms", + "example_sentence_english": "The patient was diagnosed with a rare syndrome.", + "pos": "noun", + "word_frequency": 3569 + }, + { + "word": "ultra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extreme, beyond", + "example_sentence_english": "He is an ultra marathon runner, completing races over 100 miles.", + "pos": "adjective", + "word_frequency": 3570 + }, + { + "word": "unexpected", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not anticipated", + "example_sentence_english": "The sudden rain was completely unexpected.", + "pos": "adjective", + "word_frequency": 3571 + }, + { + "word": "usage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the way something is used", + "example_sentence_english": "The correct usage of this word is important.", + "pos": "noun", + "word_frequency": 3572 + }, + { + "word": "accidentally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by chance, unintentionally", + "example_sentence_english": "I accidentally spilled coffee on my shirt.", + "pos": "adverb", + "word_frequency": 3574 + }, + { + "word": "affordable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reasonably priced", + "example_sentence_english": "We are looking for an affordable apartment.", + "pos": "adjective", + "word_frequency": 3575 + }, + { + "word": "amateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-professional", + "example_sentence_english": "He's an amateur photographer, but his photos are excellent.", + "pos": "noun", + "word_frequency": 3576 + }, + { + "word": "bearing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevance, direction", + "example_sentence_english": "His comments had no bearing on the discussion.", + "pos": "noun", + "word_frequency": 3580 + }, + { + "word": "bin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "container for waste", + "example_sentence_english": "Please put the rubbish in the bin.", + "pos": "noun", + "word_frequency": 3581 + }, + { + "word": "biology", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the study of living organisms", + "example_sentence_english": "She is studying biology at university.", + "pos": "noun", + "word_frequency": 3582 + }, + { + "word": "briefly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for a short time", + "example_sentence_english": "He spoke briefly about his plans.", + "pos": "adverb", + "word_frequency": 3584 + }, + { + "word": "canal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artificial waterway", + "example_sentence_english": "The Panama Canal connects the Atlantic and Pacific oceans.", + "pos": "noun", + "word_frequency": 3585 + }, + { + "word": "cancel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "call off, annul", + "example_sentence_english": "They had to cancel the flight due to bad weather.", + "pos": "verb", + "word_frequency": 3586 + }, + { + "word": "climb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ascend, go up", + "example_sentence_english": "We decided to climb the mountain.", + "pos": "verb", + "word_frequency": 3589 + }, + { + "word": "completion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of finishing", + "example_sentence_english": "The project is nearing completion.", + "pos": "noun", + "word_frequency": 3591 + }, + { + "word": "cruise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sea voyage for pleasure", + "example_sentence_english": "They went on a cruise to the Caribbean.", + "pos": "noun", + "word_frequency": 3592 + }, + { + "word": "custody", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guardianship, imprisonment", + "example_sentence_english": "The police took the suspect into custody.", + "pos": "noun", + "word_frequency": 3593 + }, + { + "word": "delete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "remove, erase", + "example_sentence_english": "Please delete the old files from your computer.", + "pos": "verb", + "word_frequency": 3594 + }, + { + "word": "demonstrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "show, prove", + "example_sentence_english": "The teacher will demonstrate how to solve the problem.", + "pos": "verb", + "word_frequency": 3595 + }, + { + "word": "departure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "act of leaving", + "example_sentence_english": "Our departure time is 10:00 AM.", + "pos": "noun", + "word_frequency": 3596 + }, + { + "word": "developer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who creates or builds", + "example_sentence_english": "She works as a software developer.", + "pos": "noun", + "word_frequency": 3597 + }, + { + "word": "dig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excavate, make a hole", + "example_sentence_english": "The dog loves to dig holes in the garden.", + "pos": "verb", + "word_frequency": 3598 + }, + { + "word": "eagle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "large bird of prey", + "example_sentence_english": "An eagle soared high above the mountains.", + "pos": "noun", + "word_frequency": 3599 + }, + { + "word": "explosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a violent bursting with a loud noise", + "example_sentence_english": "The sudden explosion shook the entire building.", + "pos": "noun", + "word_frequency": 3601 + }, + { + "word": "fever", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an abnormally high body temperature", + "example_sentence_english": "She has a high fever and needs to rest.", + "pos": "noun", + "word_frequency": 3602 + }, + { + "word": "fluid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that flows easily, like a liquid or gas", + "example_sentence_english": "Drink plenty of fluids when you are sick.", + "pos": "noun", + "word_frequency": 3603 + }, + { + "word": "handsome", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "good-looking (especially for a man)", + "example_sentence_english": "He is a very handsome man with a kind smile.", + "pos": "adjective", + "word_frequency": 3605 + }, + { + "word": "imagination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the ability to form new ideas or images in the mind", + "example_sentence_english": "Children often have a vivid imagination.", + "pos": "noun", + "word_frequency": 3607 + }, + { + "word": "integration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of combining parts into a whole", + "example_sentence_english": "The integration of new technology improved efficiency.", + "pos": "noun", + "word_frequency": 3608 + }, + { + "word": "integrity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being honest and having strong moral principles", + "example_sentence_english": "He is known for his integrity and honesty.", + "pos": "noun", + "word_frequency": 3609 + }, + { + "word": "interpretation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of explaining the meaning of something", + "example_sentence_english": "Her interpretation of the poem was very insightful.", + "pos": "noun", + "word_frequency": 3610 + }, + { + "word": "legitimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conforming to the law or rules; valid", + "example_sentence_english": "That's a legitimate question that deserves an answer.", + "pos": "adjective", + "word_frequency": 3611 + }, + { + "word": "lightning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flash of light in the sky during a storm", + "example_sentence_english": "We saw a bright flash of lightning during the storm.", + "pos": "noun", + "word_frequency": 3612 + }, + { + "word": "magical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or using magic; enchanting", + "example_sentence_english": "The children believed in the magical powers of the fairy.", + "pos": "adjective", + "word_frequency": 3613 + }, + { + "word": "motivation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the reason or reasons for acting or behaving in a particular way", + "example_sentence_english": "His motivation to succeed was very strong.", + "pos": "noun", + "word_frequency": 3614 + }, + { + "word": "nasty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant or unkind", + "example_sentence_english": "That was a nasty comment to make.", + "pos": "adjective", + "word_frequency": 3615 + }, + { + "word": "outfit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of clothes worn together", + "example_sentence_english": "She wore a beautiful outfit to the wedding.", + "pos": "noun", + "word_frequency": 3617 + }, + { + "word": "pension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a regular payment made during a person's retirement", + "example_sentence_english": "He retired last year and is now living on his pension.", + "pos": "noun", + "word_frequency": 3618 + }, + { + "word": "permit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official document giving authorization", + "example_sentence_english": "You need a permit to build a new house.", + "pos": "noun", + "word_frequency": 3619 + }, + { + "word": "pleasant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "giving a sense of happy satisfaction or enjoyment", + "example_sentence_english": "We had a very pleasant evening together.", + "pos": "adjective", + "word_frequency": 3621 + }, + { + "word": "portrait", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a painting, drawing, or photograph of a person", + "example_sentence_english": "The artist painted a beautiful portrait of the queen.", + "pos": "noun", + "word_frequency": 3622 + }, + { + "word": "productive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "achieving a significant amount or result", + "example_sentence_english": "It was a very productive meeting; we made a lot of progress.", + "pos": "adjective", + "word_frequency": 3623 + }, + { + "word": "safely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a safe manner; without danger", + "example_sentence_english": "Please drive safely and arrive home soon.", + "pos": "adverb", + "word_frequency": 3625 + }, + { + "word": "slight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small in degree; inconsiderable", + "example_sentence_english": "There was a slight delay due to traffic.", + "pos": "adjective", + "word_frequency": 3626 + }, + { + "word": "socialist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who advocates or practices socialism", + "example_sentence_english": "He identifies as a democratic socialist.", + "pos": "noun", + "word_frequency": 3627 + }, + { + "word": "sue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take legal action against a person or institution", + "example_sentence_english": "They decided to sue the company for damages.", + "pos": "verb", + "word_frequency": 3628 + }, + { + "word": "tension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of mental or emotional strain", + "example_sentence_english": "There was a lot of tension in the room before the announcement.", + "pos": "noun", + "word_frequency": 3629 + }, + { + "word": "transaction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an instance of buying or selling something", + "example_sentence_english": "The bank processed the transaction quickly.", + "pos": "noun", + "word_frequency": 3631 + }, + { + "word": "twist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an unexpected turn or development", + "example_sentence_english": "The story had an unexpected twist at the end.", + "pos": "noun", + "word_frequency": 3632 + }, + { + "word": "unemployment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being jobless", + "example_sentence_english": "The government is working to reduce unemployment.", + "pos": "noun", + "word_frequency": 3634 + }, + { + "word": "unity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being united or joined as a whole", + "example_sentence_english": "The team showed great unity in their efforts.", + "pos": "noun", + "word_frequency": 3635 + }, + { + "word": "useless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serving no purpose; without use", + "example_sentence_english": "This broken tool is completely useless.", + "pos": "adjective", + "word_frequency": 3636 + }, + { + "word": "viewer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who watches or looks at something", + "example_sentence_english": "The television show attracted millions of viewers.", + "pos": "noun", + "word_frequency": 3637 + }, + { + "word": "advocate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporter, proponent", + "example_sentence_english": "She is a strong advocate for human rights.", + "pos": "noun", + "word_frequency": 3640 + }, + { + "word": "arc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curve, segment", + "example_sentence_english": "The ball flew in a high arc over the fence.", + "pos": "noun", + "word_frequency": 3641 + }, + { + "word": "backup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support, reserve", + "example_sentence_english": "Always make a backup of your important files.", + "pos": "noun", + "word_frequency": 3642 + }, + { + "word": "bitter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharp, unpleasant taste; resentful", + "example_sentence_english": "The coffee was very bitter without sugar.", + "pos": "adjective", + "word_frequency": 3643 + }, + { + "word": "clever", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intelligent, smart", + "example_sentence_english": "She is a very clever student.", + "pos": "adjective", + "word_frequency": 3645 + }, + { + "word": "clinic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "medical facility", + "example_sentence_english": "I went to the clinic for a check-up.", + "pos": "noun", + "word_frequency": 3646 + }, + { + "word": "continuous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ongoing, uninterrupted", + "example_sentence_english": "The rain was continuous for three days.", + "pos": "adjective", + "word_frequency": 3647 + }, + { + "word": "convert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change, transform", + "example_sentence_english": "They plan to convert the old factory into apartments.", + "pos": "verb", + "word_frequency": 3648 + }, + { + "word": "correctly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a correct manner", + "example_sentence_english": "Please spell your name correctly.", + "pos": "adverb", + "word_frequency": 3649 + }, + { + "word": "creator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maker, inventor", + "example_sentence_english": "He is the creator of this popular video game.", + "pos": "noun", + "word_frequency": 3650 + }, + { + "word": "creature", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "living being, animal", + "example_sentence_english": "The forest is home to many strange creatures.", + "pos": "noun", + "word_frequency": 3651 + }, + { + "word": "criterion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standard, basis for judgment", + "example_sentence_english": "What are the main criteria for success?", + "pos": "noun", + "word_frequency": 3652 + }, + { + "word": "detective", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "investigator", + "example_sentence_english": "The detective solved the mystery quickly.", + "pos": "noun", + "word_frequency": 3653 + }, + { + "word": "disability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impairment, handicap", + "example_sentence_english": "The building has ramps for people with disabilities.", + "pos": "noun", + "word_frequency": 3654 + }, + { + "word": "dish", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "plate; prepared food", + "example_sentence_english": "Please put the dirty dishes in the sink.", + "pos": "noun", + "word_frequency": 3655 + }, + { + "word": "duck", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "water bird", + "example_sentence_english": "A duck swam across the pond.", + "pos": "noun", + "word_frequency": 3658 + }, + { + "word": "egyptian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Egypt", + "example_sentence_english": "We visited the Egyptian museum.", + "pos": "adjective", + "word_frequency": 3659 + }, + { + "word": "evaluation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assessment, appraisal", + "example_sentence_english": "The teacher gave an evaluation of the student's progress.", + "pos": "noun", + "word_frequency": 3661 + }, + { + "word": "excess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus, too much", + "example_sentence_english": "Please remove any excess material.", + "pos": "noun", + "word_frequency": 3662 + }, + { + "word": "fence", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barrier, enclosure", + "example_sentence_english": "The dog jumped over the fence.", + "pos": "noun", + "word_frequency": 3663 + }, + { + "word": "gradually", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slowly, little by little", + "example_sentence_english": "The weather gradually got warmer.", + "pos": "adverb", + "word_frequency": 3667 + }, + { + "word": "gravity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "force of attraction; seriousness", + "example_sentence_english": "The apple fell due to gravity.", + "pos": "noun", + "word_frequency": 3668 + }, + { + "word": "holder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one who holds; container", + "example_sentence_english": "She is the current record holder.", + "pos": "noun", + "word_frequency": 3670 + }, + { + "word": "hood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covering; part of a car; neighborhood", + "example_sentence_english": "He pulled up his hood to protect himself from the rain.", + "pos": "noun", + "word_frequency": 3671 + }, + { + "word": "identical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exactly alike", + "example_sentence_english": "The two cars were identical.", + "pos": "adjective", + "word_frequency": 3672 + }, + { + "word": "imperial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an empire", + "example_sentence_english": "The Imperial Palace is a famous landmark.", + "pos": "adjective", + "word_frequency": 3673 + }, + { + "word": "legally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to law", + "example_sentence_english": "You must be legally old enough to drive.", + "pos": "adverb", + "word_frequency": 3676 + }, + { + "word": "meter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unit of length; measuring device", + "example_sentence_english": "The room is three meters wide.", + "pos": "noun", + "word_frequency": 3677 + }, + { + "word": "nail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hard covering on finger/toe; metal fastener", + "example_sentence_english": "She painted her fingernails red.", + "pos": "noun", + "word_frequency": 3678 + }, + { + "word": "negotiation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formal discussion to reach an agreement", + "example_sentence_english": "The negotiation for the new contract took several weeks.", + "pos": "noun", + "word_frequency": 3680 + }, + { + "word": "nonsense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absurd or meaningless words or ideas", + "example_sentence_english": "Don't talk nonsense; focus on the task.", + "pos": "noun", + "word_frequency": 3681 + }, + { + "word": "operational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in working order; ready for use", + "example_sentence_english": "The new system is fully operational now.", + "pos": "adjective", + "word_frequency": 3683 + }, + { + "word": "playoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a series of games to decide a championship", + "example_sentence_english": "The team made it to the playoffs this year.", + "pos": "noun", + "word_frequency": 3686 + }, + { + "word": "poet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who writes poems", + "example_sentence_english": "William Shakespeare is a famous English poet.", + "pos": "noun", + "word_frequency": 3687 + }, + { + "word": "repeatedly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "again and again", + "example_sentence_english": "He repeatedly asked the same question.", + "pos": "adverb", + "word_frequency": 3688 + }, + { + "word": "sink", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go down below the surface of water", + "example_sentence_english": "The ship began to sink after hitting the iceberg.", + "pos": "verb", + "word_frequency": 3690 + }, + { + "word": "skip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to jump lightly; to miss or omit", + "example_sentence_english": "Let's skip the next chapter and go straight to the end.", + "pos": "verb", + "word_frequency": 3691 + }, + { + "word": "slavery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being a slave", + "example_sentence_english": "The abolition of slavery was a major historical event.", + "pos": "noun", + "word_frequency": 3692 + }, + { + "word": "snap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break suddenly with a sharp sound; to take a quick photograph", + "example_sentence_english": "The twig snapped under his foot.", + "pos": "verb", + "word_frequency": 3693 + }, + { + "word": "swedish", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to Sweden, its people, or its language", + "example_sentence_english": "She is learning Swedish.", + "pos": "adjective", + "word_frequency": 3694 + }, + { + "word": "swiss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to Switzerland, its people, or its languages", + "example_sentence_english": "He loves Swiss chocolate.", + "pos": "adjective", + "word_frequency": 3695 + }, + { + "word": "transformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dramatic change in form or appearance", + "example_sentence_english": "The city underwent a major transformation over the last decade.", + "pos": "noun", + "word_frequency": 3697 + }, + { + "word": "vulnerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exposed to the possibility of being attacked or harmed", + "example_sentence_english": "Young children are especially vulnerable to illness.", + "pos": "adjective", + "word_frequency": 3698 + }, + { + "word": "wealthy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a great deal of money, resources, or assets", + "example_sentence_english": "He became a wealthy businessman.", + "pos": "adjective", + "word_frequency": 3699 + }, + { + "word": "additionally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in addition; also", + "example_sentence_english": "Additionally, we need to consider the environmental impact.", + "pos": "adverb", + "word_frequency": 3700 + }, + { + "word": "beta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the second letter of the Greek alphabet; a preliminary version of software", + "example_sentence_english": "The software is currently in its beta testing phase.", + "pos": "noun", + "word_frequency": 3703 + }, + { + "word": "bronze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a yellowish-brown alloy of copper and tin", + "example_sentence_english": "The statue was made of bronze.", + "pos": "noun", + "word_frequency": 3704 + }, + { + "word": "bug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an insect; a fault or defect in a computer program", + "example_sentence_english": "There's a bug in the software that needs fixing.", + "pos": "noun", + "word_frequency": 3705 + }, + { + "word": "cave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large natural underground chamber", + "example_sentence_english": "We explored the dark cave with flashlights.", + "pos": "noun", + "word_frequency": 3706 + }, + { + "word": "cheat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act dishonestly or unfairly in order to gain an advantage", + "example_sentence_english": "It's wrong to cheat on an exam.", + "pos": "verb", + "word_frequency": 3707 + }, + { + "word": "chronic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of an illness or problem) persisting for a long time or constantly recurring", + "example_sentence_english": "He suffers from chronic back pain.", + "pos": "adjective", + "word_frequency": 3708 + }, + { + "word": "communicate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to share or exchange information, news, or ideas", + "example_sentence_english": "It's important to communicate clearly.", + "pos": "verb", + "word_frequency": 3709 + }, + { + "word": "convict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to declare (someone) guilty of a criminal offense by the verdict of a jury or the decision of a judge", + "example_sentence_english": "The jury decided to convict him of the crime.", + "pos": "verb", + "word_frequency": 3710 + }, + { + "word": "diagnosis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the identification of the nature of an illness or other problem by examination of the symptoms", + "example_sentence_english": "The doctor gave him a diagnosis of the flu.", + "pos": "noun", + "word_frequency": 3711 + }, + { + "word": "dismiss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to order or allow to leave; to treat as unworthy of serious consideration", + "example_sentence_english": "The teacher dismissed the class early.", + "pos": "verb", + "word_frequency": 3712 + }, + { + "word": "distinguish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recognize or point out a difference", + "example_sentence_english": "It's hard to distinguish between the two identical twins.", + "pos": "verb", + "word_frequency": 3713 + }, + { + "word": "dose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quantity of a medicine or drug taken or administered at one time", + "example_sentence_english": "Take one dose of this medicine every eight hours.", + "pos": "noun", + "word_frequency": 3714 + }, + { + "word": "eighth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "constituting number eight in a sequence; one of eight equal parts", + "example_sentence_english": "He finished in eighth place in the race.", + "pos": "numeral", + "word_frequency": 3715 + }, + { + "word": "flesh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the soft substance consisting of muscle and fat that is found between the skin and bones of an animal or human", + "example_sentence_english": "The wound went deep into the flesh.", + "pos": "noun", + "word_frequency": 3717 + }, + { + "word": "flip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn over or cause to turn over with a sudden quick movement", + "example_sentence_english": "He flipped the coin to decide who would go first.", + "pos": "verb", + "word_frequency": 3718 + }, + { + "word": "forty", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number equivalent to the product of four and ten; 40", + "example_sentence_english": "There are forty students in the class.", + "pos": "numeral", + "word_frequency": 3719 + }, + { + "word": "generous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giving freely", + "example_sentence_english": "She is very generous with her time.", + "pos": "adjective", + "word_frequency": 3720 + }, + { + "word": "incorporate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "include", + "example_sentence_english": "We should incorporate these ideas into our plan.", + "pos": "verb", + "word_frequency": 3722 + }, + { + "word": "laser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device that produces a strong beam of light", + "example_sentence_english": "The doctor used a laser during the surgery.", + "pos": "noun", + "word_frequency": 3724 + }, + { + "word": "loyal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faithful", + "example_sentence_english": "He is a loyal friend.", + "pos": "adjective", + "word_frequency": 3725 + }, + { + "word": "marijuana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannabis", + "example_sentence_english": "Marijuana is illegal in some countries.", + "pos": "noun", + "word_frequency": 3726 + }, + { + "word": "mentally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the mind", + "example_sentence_english": "He was mentally prepared for the challenge.", + "pos": "adverb", + "word_frequency": 3728 + }, + { + "word": "occupation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a job or profession; the act of occupying", + "example_sentence_english": "What is your occupation?", + "pos": "noun", + "word_frequency": 3729 + }, + { + "word": "patch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small piece of material used to cover a hole", + "example_sentence_english": "She sewed a patch onto her jeans.", + "pos": "noun", + "word_frequency": 3730 + }, + { + "word": "patience", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the ability to wait calmly", + "example_sentence_english": "You need a lot of patience to teach young children.", + "pos": "noun", + "word_frequency": 3731 + }, + { + "word": "pollution", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmful substances in the environment", + "example_sentence_english": "Air pollution is a serious problem in many cities.", + "pos": "noun", + "word_frequency": 3733 + }, + { + "word": "precisely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exactly", + "example_sentence_english": "That's precisely what I meant.", + "pos": "adverb", + "word_frequency": 3734 + }, + { + "word": "privilege", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a special right or advantage", + "example_sentence_english": "It was a privilege to meet her.", + "pos": "noun", + "word_frequency": 3735 + }, + { + "word": "punk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of music or a young person who dresses in a particular way", + "example_sentence_english": "He was into punk music in the 80s.", + "pos": "noun", + "word_frequency": 3736 + }, + { + "word": "radar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a system for detecting objects", + "example_sentence_english": "The plane appeared on the radar.", + "pos": "noun", + "word_frequency": 3737 + }, + { + "word": "resist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to oppose or fight against", + "example_sentence_english": "It's hard to resist chocolate.", + "pos": "verb", + "word_frequency": 3738 + }, + { + "word": "solely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only", + "example_sentence_english": "He is solely responsible for the decision.", + "pos": "adverb", + "word_frequency": 3739 + }, + { + "word": "tourist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who travels for pleasure", + "example_sentence_english": "Many tourists visit Paris every year.", + "pos": "noun", + "word_frequency": 3741 + }, + { + "word": "transit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of moving people or goods from one place to another", + "example_sentence_english": "Public transit is very efficient in this city.", + "pos": "noun", + "word_frequency": 3742 + }, + { + "word": "villa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large country house", + "example_sentence_english": "They rented a beautiful villa for their vacation.", + "pos": "noun", + "word_frequency": 3743 + }, + { + "word": "wireless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "using radio waves rather than wires", + "example_sentence_english": "I bought a new wireless mouse.", + "pos": "adjective", + "word_frequency": 3744 + }, + { + "word": "wrap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cover something completely", + "example_sentence_english": "Please wrap the gift in colorful paper.", + "pos": "verb", + "word_frequency": 3745 + }, + { + "word": "yoga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a system of exercises for physical and mental health", + "example_sentence_english": "She practices yoga every morning.", + "pos": "noun", + "word_frequency": 3747 + }, + { + "word": "airline", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a company that provides air transport", + "example_sentence_english": "Which airline are you flying with?", + "pos": "noun", + "word_frequency": 3748 + }, + { + "word": "anytime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at any time", + "example_sentence_english": "You can call me anytime.", + "pos": "adverb", + "word_frequency": 3750 + }, + { + "word": "bacterium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a single-celled microorganism", + "example_sentence_english": "A single bacterium can multiply rapidly.", + "pos": "noun", + "word_frequency": 3751 + }, + { + "word": "being", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existence; a living creature", + "example_sentence_english": "Human beings are complex creatures.", + "pos": "noun", + "word_frequency": 3752 + }, + { + "word": "blade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the sharp part of a knife or tool", + "example_sentence_english": "Be careful, the knife has a sharp blade.", + "pos": "noun", + "word_frequency": 3754 + }, + { + "word": "buck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male deer; an informal term for a dollar", + "example_sentence_english": "He paid twenty bucks for the shirt.", + "pos": "noun", + "word_frequency": 3755 + }, + { + "word": "bulk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main part of something; large quantity", + "example_sentence_english": "The bulk of the work is done.", + "pos": "noun", + "word_frequency": 3756 + }, + { + "word": "cargo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goods carried on a ship, aircraft, or vehicle", + "example_sentence_english": "The ship was loaded with cargo.", + "pos": "noun", + "word_frequency": 3757 + }, + { + "word": "census", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official count of a population", + "example_sentence_english": "The government conducts a census every ten years.", + "pos": "noun", + "word_frequency": 3758 + }, + { + "word": "christianity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the Christian religion", + "example_sentence_english": "Christianity is one of the world's largest religions.", + "pos": "noun", + "word_frequency": 3759 + }, + { + "word": "coastal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the coast", + "example_sentence_english": "The coastal towns are popular tourist destinations.", + "pos": "adjective", + "word_frequency": 3760 + }, + { + "word": "commentary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an explanation or interpretation", + "example_sentence_english": "The sports commentary was very insightful.", + "pos": "noun", + "word_frequency": 3761 + }, + { + "word": "confusion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a state of not understanding", + "example_sentence_english": "There was a lot of confusion about the new rules.", + "pos": "noun", + "word_frequency": 3762 + }, + { + "word": "congressional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a congress", + "example_sentence_english": "The congressional hearing lasted all day.", + "pos": "adjective", + "word_frequency": 3763 + }, + { + "word": "corn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of grain", + "example_sentence_english": "We had corn on the cob for dinner.", + "pos": "noun", + "word_frequency": 3764 + }, + { + "word": "dealer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who buys and sells", + "example_sentence_english": "He works as a car dealer.", + "pos": "noun", + "word_frequency": 3765 + }, + { + "word": "deem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to consider or judge", + "example_sentence_english": "They deemed the project a success.", + "pos": "verb", + "word_frequency": 3766 + }, + { + "word": "destiny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fate", + "example_sentence_english": "She believed it was her destiny to become a doctor.", + "pos": "noun", + "word_frequency": 3767 + }, + { + "word": "distant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "far away", + "example_sentence_english": "We could see a distant light in the darkness.", + "pos": "adjective", + "word_frequency": 3768 + }, + { + "word": "emerge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come out into view", + "example_sentence_english": "The sun emerged from behind the clouds.", + "pos": "verb", + "word_frequency": 3769 + }, + { + "word": "emphasis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special importance", + "example_sentence_english": "The teacher put emphasis on correct pronunciation.", + "pos": "noun", + "word_frequency": 3770 + }, + { + "word": "ethic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a set of moral principles", + "example_sentence_english": "He has a strong work ethic.", + "pos": "noun", + "word_frequency": 3771 + }, + { + "word": "excitement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a feeling of great enthusiasm", + "example_sentence_english": "The children were full of excitement on Christmas morning.", + "pos": "noun", + "word_frequency": 3772 + }, + { + "word": "exploration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of traveling to discover", + "example_sentence_english": "Space exploration is a fascinating field.", + "pos": "noun", + "word_frequency": 3773 + }, + { + "word": "humor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being amusing", + "example_sentence_english": "He has a great sense of humor.", + "pos": "noun", + "word_frequency": 3776 + }, + { + "word": "insight", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a deep understanding", + "example_sentence_english": "Her analysis provided valuable insight into the problem.", + "pos": "noun", + "word_frequency": 3777 + }, + { + "word": "mar", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a blemish or flaw", + "example_sentence_english": "The scratch was a mar on the otherwise perfect surface.", + "pos": "noun", + "word_frequency": 3781 + }, + { + "word": "nerve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courage; a fiber in the body", + "example_sentence_english": "It takes a lot of nerve to speak in public.", + "pos": "noun", + "word_frequency": 3784 + }, + { + "word": "nightmare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bad dream", + "example_sentence_english": "I had a terrible nightmare last night.", + "pos": "noun", + "word_frequency": 3786 + }, + { + "word": "overnight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "during the night", + "example_sentence_english": "The package arrived overnight.", + "pos": "adverb", + "word_frequency": 3787 + }, + { + "word": "partially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to some extent", + "example_sentence_english": "The door was partially open.", + "pos": "adverb", + "word_frequency": 3788 + }, + { + "word": "pie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a baked dish", + "example_sentence_english": "My grandmother bakes the best apple pie.", + "pos": "noun", + "word_frequency": 3789 + }, + { + "word": "poster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large printed picture or notice", + "example_sentence_english": "She hung a poster of her favorite band on the wall.", + "pos": "noun", + "word_frequency": 3790 + }, + { + "word": "pr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public relations", + "example_sentence_english": "She works in PR for a large company.", + "pos": "noun", + "word_frequency": 3791 + }, + { + "word": "practically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almost; in a practical way", + "example_sentence_english": "It was practically impossible to finish on time.", + "pos": "adverb", + "word_frequency": 3792 + }, + { + "word": "preserve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to keep in good condition", + "example_sentence_english": "We need to preserve our natural resources.", + "pos": "verb", + "word_frequency": 3793 + }, + { + "word": "raid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden attack or visit", + "example_sentence_english": "The police conducted a raid on the building.", + "pos": "noun", + "word_frequency": 3794 + }, + { + "word": "ram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male sheep; a device for striking", + "example_sentence_english": "The ram charged at the fence.", + "pos": "noun", + "word_frequency": 3795 + }, + { + "word": "respective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belonging to each of the people or things previously mentioned", + "example_sentence_english": "They returned to their respective homes.", + "pos": "adjective", + "word_frequency": 3796 + }, + { + "word": "restrict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to limit", + "example_sentence_english": "We need to restrict access to this area.", + "pos": "verb", + "word_frequency": 3797 + }, + { + "word": "sandy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with sand", + "example_sentence_english": "We walked along the sandy beach.", + "pos": "adjective", + "word_frequency": 3799 + }, + { + "word": "scenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a possible situation", + "example_sentence_english": "Let's consider a worst-case scenario.", + "pos": "noun", + "word_frequency": 3800 + }, + { + "word": "sheep", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a farm animal", + "example_sentence_english": "The sheep were grazing in the field.", + "pos": "noun", + "word_frequency": 3801 + }, + { + "word": "situate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to place or locate", + "example_sentence_english": "The hotel is ideally situated near the beach.", + "pos": "verb", + "word_frequency": 3802 + }, + { + "word": "sustainable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be maintained", + "example_sentence_english": "We need to find sustainable energy solutions.", + "pos": "adjective", + "word_frequency": 3805 + }, + { + "word": "sustain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to keep something going", + "example_sentence_english": "The bridge could not sustain the heavy load.", + "pos": "verb", + "word_frequency": 3806 + }, + { + "word": "taxi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a car for hire", + "example_sentence_english": "Let's take a taxi to the airport.", + "pos": "noun", + "word_frequency": 3807 + }, + { + "word": "tobacco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plant whose leaves are used for smoking", + "example_sentence_english": "Smoking tobacco is harmful to your health.", + "pos": "noun", + "word_frequency": 3808 + }, + { + "word": "trace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to find or discover by investigation", + "example_sentence_english": "Police are trying to trace the owner of the car.", + "pos": "verb", + "word_frequency": 3809 + }, + { + "word": "uncomfortable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not feeling physically or mentally at ease", + "example_sentence_english": "I felt uncomfortable in the tight shoes.", + "pos": "adjective", + "word_frequency": 3811 + }, + { + "word": "weakness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being weak", + "example_sentence_english": "His main weakness is his lack of experience.", + "pos": "noun", + "word_frequency": 3812 + }, + { + "word": "widespread", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "found or distributed over a large area", + "example_sentence_english": "There is widespread support for the new policy.", + "pos": "adjective", + "word_frequency": 3813 + }, + { + "word": "accessible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be reached or entered", + "example_sentence_english": "The building is accessible to wheelchair users.", + "pos": "adjective", + "word_frequency": 3815 + }, + { + "word": "acknowledge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accept or admit the existence or truth of", + "example_sentence_english": "He acknowledged his mistake.", + "pos": "verb", + "word_frequency": 3816 + }, + { + "word": "advise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to offer suggestions about the best course of action", + "example_sentence_english": "I advise you to study hard for the exam.", + "pos": "verb", + "word_frequency": 3817 + }, + { + "word": "advisory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the power to advise", + "example_sentence_english": "The committee has an advisory role.", + "pos": "adjective", + "word_frequency": 3818 + }, + { + "word": "animation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the technique of making inanimate objects appear to move", + "example_sentence_english": "The animation in the movie was amazing.", + "pos": "noun", + "word_frequency": 3819 + }, + { + "word": "assignment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a task or piece of work assigned to someone", + "example_sentence_english": "I have a lot of homework assignments this week.", + "pos": "noun", + "word_frequency": 3820 + }, + { + "word": "bare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not clothed or covered", + "example_sentence_english": "He walked across the bare floor.", + "pos": "adjective", + "word_frequency": 3821 + }, + { + "word": "basement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a floor of a building partly or entirely below ground level", + "example_sentence_english": "We store old boxes in the basement.", + "pos": "noun", + "word_frequency": 3822 + }, + { + "word": "bias", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudice in favor of or against one thing, person, or group", + "example_sentence_english": "The report showed a clear bias against the new policy.", + "pos": "noun", + "word_frequency": 3823 + }, + { + "word": "carpet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a floor covering", + "example_sentence_english": "The room had a soft carpet.", + "pos": "noun", + "word_frequency": 3825 + }, + { + "word": "ceiling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the upper interior surface of a room", + "example_sentence_english": "The ceiling needs a fresh coat of paint.", + "pos": "noun", + "word_frequency": 3826 + }, + { + "word": "cherry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, round, red or black fruit", + "example_sentence_english": "I love eating fresh cherries in summer.", + "pos": "noun", + "word_frequency": 3827 + }, + { + "word": "chill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make something cold", + "example_sentence_english": "Chill the wine before serving.", + "pos": "verb", + "word_frequency": 3828 + }, + { + "word": "classification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of classifying something", + "example_sentence_english": "The classification of species is complex.", + "pos": "noun", + "word_frequency": 3829 + }, + { + "word": "clue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of evidence or information", + "example_sentence_english": "The police found a clue at the crime scene.", + "pos": "noun", + "word_frequency": 3830 + }, + { + "word": "collapse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall down or in", + "example_sentence_english": "The old building collapsed after the earthquake.", + "pos": "verb", + "word_frequency": 3832 + }, + { + "word": "compound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that is composed of two or more separate elements", + "example_sentence_english": "Water is a chemical compound.", + "pos": "noun", + "word_frequency": 3833 + }, + { + "word": "conscious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aware of and responding to one's surroundings", + "example_sentence_english": "He was conscious of the eyes watching him.", + "pos": "adjective", + "word_frequency": 3834 + }, + { + "word": "consecutive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "following one after another continuously", + "example_sentence_english": "This is our third consecutive win.", + "pos": "adjective", + "word_frequency": 3835 + }, + { + "word": "costume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of clothes worn in a play or at a fancy dress ball", + "example_sentence_english": "She wore a witch costume for Halloween.", + "pos": "noun", + "word_frequency": 3836 + }, + { + "word": "devote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give all or most of one's time or resources to", + "example_sentence_english": "She devoted her life to helping others.", + "pos": "verb", + "word_frequency": 3838 + }, + { + "word": "dominate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "control, be superior", + "example_sentence_english": "The team managed to dominate the game from start to finish.", + "pos": "verb", + "word_frequency": 3840 + }, + { + "word": "earl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a British nobleman", + "example_sentence_english": "The Earl of Sandwich is credited with inventing the sandwich.", + "pos": "noun", + "word_frequency": 3841 + }, + { + "word": "endless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without end", + "example_sentence_english": "The children had endless energy to play all day.", + "pos": "adjective", + "word_frequency": 3842 + }, + { + "word": "examine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspect closely", + "example_sentence_english": "The doctor will examine your throat.", + "pos": "verb", + "word_frequency": 3843 + }, + { + "word": "float", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rest on water or air", + "example_sentence_english": "A boat can float on water.", + "pos": "verb", + "word_frequency": 3844 + }, + { + "word": "garbage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waste, trash", + "example_sentence_english": "Please put the garbage out for collection.", + "pos": "noun", + "word_frequency": 3845 + }, + { + "word": "gospel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "religious teachings; absolute truth", + "example_sentence_english": "He preached the gospel to the congregation.", + "pos": "noun", + "word_frequency": 3846 + }, + { + "word": "grain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small hard seed; texture", + "example_sentence_english": "Rice is a type of grain.", + "pos": "noun", + "word_frequency": 3847 + }, + { + "word": "grid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a network of lines", + "example_sentence_english": "The city's streets are laid out on a grid pattern.", + "pos": "noun", + "word_frequency": 3848 + }, + { + "word": "identification", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proof of identity", + "example_sentence_english": "You need to show identification to enter the building.", + "pos": "noun", + "word_frequency": 3849 + }, + { + "word": "lap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the flat area between the waist and knees; one circuit of a track", + "example_sentence_english": "The child sat on his mother's lap.", + "pos": "noun", + "word_frequency": 3850 + }, + { + "word": "liver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an organ in the body", + "example_sentence_english": "The liver plays a vital role in digestion.", + "pos": "noun", + "word_frequency": 3851 + }, + { + "word": "metro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subway, underground train system", + "example_sentence_english": "We took the metro to get across the city quickly.", + "pos": "noun", + "word_frequency": 3852 + }, + { + "word": "metropolitan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a large city", + "example_sentence_english": "New York is a large metropolitan area.", + "pos": "adjective", + "word_frequency": 3853 + }, + { + "word": "mixture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a combination of different things", + "example_sentence_english": "The cake recipe calls for a mixture of flour and sugar.", + "pos": "noun", + "word_frequency": 3854 + }, + { + "word": "nominate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propose someone for a position", + "example_sentence_english": "They decided to nominate her for the award.", + "pos": "verb", + "word_frequency": 3855 + }, + { + "word": "oak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of tree", + "example_sentence_english": "The old oak tree stood tall in the forest.", + "pos": "noun", + "word_frequency": 3856 + }, + { + "word": "parliamentary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a parliament", + "example_sentence_english": "The parliamentary debate lasted for hours.", + "pos": "adjective", + "word_frequency": 3857 + }, + { + "word": "patent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an exclusive right granted for an invention", + "example_sentence_english": "He applied for a patent for his new invention.", + "pos": "noun", + "word_frequency": 3858 + }, + { + "word": "perception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to see, hear, or become aware of something", + "example_sentence_english": "His perception of the situation was very different from mine.", + "pos": "noun", + "word_frequency": 3859 + }, + { + "word": "physician", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical doctor", + "example_sentence_english": "The physician advised him to rest.", + "pos": "noun", + "word_frequency": 3860 + }, + { + "word": "proceed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continue, go forward", + "example_sentence_english": "Please proceed with your presentation.", + "pos": "verb", + "word_frequency": 3862 + }, + { + "word": "proceeding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an event or a series of activities", + "example_sentence_english": "The legal proceedings are expected to last for several months.", + "pos": "noun", + "word_frequency": 3863 + }, + { + "word": "pupil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a student; the dark center of the eye", + "example_sentence_english": "The teacher asked the pupil to answer the question.", + "pos": "noun", + "word_frequency": 3864 + }, + { + "word": "restore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bring back to original condition", + "example_sentence_english": "They plan to restore the old building to its former glory.", + "pos": "verb", + "word_frequency": 3865 + }, + { + "word": "rifle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of gun", + "example_sentence_english": "The hunter carried a rifle.", + "pos": "noun", + "word_frequency": 3866 + }, + { + "word": "rival", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a competitor", + "example_sentence_english": "He faced his main rival in the final match.", + "pos": "noun", + "word_frequency": 3867 + }, + { + "word": "runner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who runs", + "example_sentence_english": "She is a fast runner.", + "pos": "noun", + "word_frequency": 3869 + }, + { + "word": "sadly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a sad manner", + "example_sentence_english": "Sadly, the concert was cancelled due to rain.", + "pos": "adverb", + "word_frequency": 3870 + }, + { + "word": "significance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "importance", + "example_sentence_english": "The discovery has great significance for medical research.", + "pos": "noun", + "word_frequency": 3874 + }, + { + "word": "soap", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a substance used for washing", + "example_sentence_english": "Please use soap to wash your hands.", + "pos": "noun", + "word_frequency": 3875 + }, + { + "word": "spray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scatter liquid in fine drops", + "example_sentence_english": "He used a bottle to spray water on the plants.", + "pos": "verb", + "word_frequency": 3876 + }, + { + "word": "structural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to structure", + "example_sentence_english": "The engineers checked the structural integrity of the bridge.", + "pos": "adjective", + "word_frequency": 3877 + }, + { + "word": "suite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a set of rooms; a set of related items", + "example_sentence_english": "We booked a suite at the hotel for our vacation.", + "pos": "noun", + "word_frequency": 3878 + }, + { + "word": "tropical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or situated in the tropics", + "example_sentence_english": "Brazil has a tropical climate.", + "pos": "adjective", + "word_frequency": 3880 + }, + { + "word": "unnecessary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not needed", + "example_sentence_english": "It's unnecessary to bring a coat; it's warm outside.", + "pos": "adjective", + "word_frequency": 3882 + }, + { + "word": "verse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of lines forming a unit in a poem or song", + "example_sentence_english": "She recited the first verse of the poem.", + "pos": "noun", + "word_frequency": 3883 + }, + { + "word": "victor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who defeats an opponent", + "example_sentence_english": "The victor raised his arms in triumph.", + "pos": "noun", + "word_frequency": 3884 + }, + { + "word": "vintage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of high quality and lasting value, or relating to a past era", + "example_sentence_english": "She loves collecting vintage clothing.", + "pos": "adjective", + "word_frequency": 3885 + }, + { + "word": "warn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to inform someone of a possible danger", + "example_sentence_english": "I warned him about the slippery road.", + "pos": "verb", + "word_frequency": 3886 + }, + { + "word": "acre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of land area", + "example_sentence_english": "The farm covers fifty acres.", + "pos": "noun", + "word_frequency": 3888 + }, + { + "word": "adapt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adjust to new conditions", + "example_sentence_english": "It takes time to adapt to a new culture.", + "pos": "verb", + "word_frequency": 3889 + }, + { + "word": "adoption", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the legal process of taking another's child as one's own", + "example_sentence_english": "The adoption process can be lengthy.", + "pos": "noun", + "word_frequency": 3890 + }, + { + "word": "anonymous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not identified by name", + "example_sentence_english": "The donation was made by an anonymous donor.", + "pos": "adjective", + "word_frequency": 3891 + }, + { + "word": "artistic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing creative skill", + "example_sentence_english": "She has a very artistic talent.", + "pos": "adjective", + "word_frequency": 3893 + }, + { + "word": "attendance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of being present", + "example_sentence_english": "Attendance at the meeting is mandatory.", + "pos": "noun", + "word_frequency": 3894 + }, + { + "word": "aviation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the flying or operating of aircraft", + "example_sentence_english": "He works in the aviation industry.", + "pos": "noun", + "word_frequency": 3895 + }, + { + "word": "barrel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cylindrical container", + "example_sentence_english": "They stored water in a large wooden barrel.", + "pos": "noun", + "word_frequency": 3896 + }, + { + "word": "beloved", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dearly loved", + "example_sentence_english": "He returned to his beloved hometown.", + "pos": "adjective", + "word_frequency": 3897 + }, + { + "word": "cinema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a movie theater", + "example_sentence_english": "Let's go to the cinema tonight.", + "pos": "noun", + "word_frequency": 3899 + }, + { + "word": "colonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a colony", + "example_sentence_english": "Many countries have a colonial past.", + "pos": "adjective", + "word_frequency": 3900 + }, + { + "word": "compliance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of obeying a rule or request", + "example_sentence_english": "The company must ensure compliance with regulations.", + "pos": "noun", + "word_frequency": 3901 + }, + { + "word": "contrary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposite in nature, direction, or meaning", + "example_sentence_english": "On the contrary, I think it's a good idea.", + "pos": "adjective", + "word_frequency": 3902 + }, + { + "word": "couch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long upholstered seat", + "example_sentence_english": "We bought a new couch for the living room.", + "pos": "noun", + "word_frequency": 3903 + }, + { + "word": "crush", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to press or squeeze something so hard that it is flattened or broken", + "example_sentence_english": "He accidentally crushed the empty can.", + "pos": "verb", + "word_frequency": 3904 + }, + { + "word": "dam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a barrier built to hold back water", + "example_sentence_english": "The dam helps control the river's flow.", + "pos": "noun", + "word_frequency": 3905 + }, + { + "word": "decrease", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become smaller or fewer", + "example_sentence_english": "The number of visitors has decreased.", + "pos": "verb", + "word_frequency": 3906 + }, + { + "word": "diabetes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a metabolic disease", + "example_sentence_english": "She manages her diabetes with diet and exercise.", + "pos": "noun", + "word_frequency": 3907 + }, + { + "word": "genre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a category of artistic composition", + "example_sentence_english": "My favorite music genre is jazz.", + "pos": "noun", + "word_frequency": 3908 + }, + { + "word": "gentle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mild and kind", + "example_sentence_english": "He has a very gentle nature.", + "pos": "adjective", + "word_frequency": 3909 + }, + { + "word": "grammar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the whole system and structure of a language", + "example_sentence_english": "Learning grammar is essential for language acquisition.", + "pos": "noun", + "word_frequency": 3910 + }, + { + "word": "hiv", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Human Immunodeficiency Virus", + "example_sentence_english": "HIV is a serious global health concern.", + "pos": "noun", + "word_frequency": 3911 + }, + { + "word": "illustrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to explain or make clear by using examples or pictures", + "example_sentence_english": "The speaker used slides to illustrate his points.", + "pos": "verb", + "word_frequency": 3913 + }, + { + "word": "invent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to create or design something that has not existed before", + "example_sentence_english": "Thomas Edison invented the light bulb.", + "pos": "verb", + "word_frequency": 3914 + }, + { + "word": "jam", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sweet spread made from fruit and sugar", + "example_sentence_english": "I like toast with strawberry jam.", + "pos": "noun", + "word_frequency": 3916 + }, + { + "word": "lease", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a contract by which one conveys land, property, services, etc., to another for a specified time, usually in return for a periodic payment", + "example_sentence_english": "They signed a five-year lease on the apartment.", + "pos": "noun", + "word_frequency": 3921 + }, + { + "word": "lens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of glass or other transparent material with curved sides for concentrating or dispersing light rays", + "example_sentence_english": "The camera has a powerful zoom lens.", + "pos": "noun", + "word_frequency": 3922 + }, + { + "word": "loyalty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being loyal; faithfulness to commitments or obligations", + "example_sentence_english": "His loyalty to the company was unwavering.", + "pos": "noun", + "word_frequency": 3923 + }, + { + "word": "magnetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the properties of a magnet; able to attract iron or steel", + "example_sentence_english": "The refrigerator door has a magnetic seal.", + "pos": "adjective", + "word_frequency": 3925 + }, + { + "word": "metre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the fundamental unit of length in the metric system, equal to 100 centimeters", + "example_sentence_english": "The swimming pool is 25 metres long.", + "pos": "noun", + "word_frequency": 3926 + }, + { + "word": "mysterious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difficult or impossible to understand, explain, or identify", + "example_sentence_english": "She received a mysterious package in the mail.", + "pos": "adjective", + "word_frequency": 3927 + }, + { + "word": "notion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a conception of or belief about something", + "example_sentence_english": "He had a strange notion that he was being watched.", + "pos": "noun", + "word_frequency": 3928 + }, + { + "word": "partial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing only in part; incomplete", + "example_sentence_english": "The report gave only a partial explanation of the events.", + "pos": "adjective", + "word_frequency": 3929 + }, + { + "word": "propaganda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "information, especially of a biased or misleading nature, used to promote or publicize a particular political cause or point of view", + "example_sentence_english": "The government used propaganda to control public opinion.", + "pos": "noun", + "word_frequency": 3930 + }, + { + "word": "rat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a rodent larger than a mouse, typically having a pointed snout and a long, sparsely haired tail", + "example_sentence_english": "A rat scurried across the floor.", + "pos": "noun", + "word_frequency": 3931 + }, + { + "word": "reflection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the throwing back by a body or surface of light, heat, or sound without absorbing it", + "example_sentence_english": "She saw her reflection in the mirror.", + "pos": "noun", + "word_frequency": 3932 + }, + { + "word": "resolve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settle or find a solution to (a problem, dispute, or contentious matter)", + "example_sentence_english": "They hoped to resolve the conflict peacefully.", + "pos": "verb", + "word_frequency": 3933 + }, + { + "word": "revolutionary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving or causing a complete or dramatic change", + "example_sentence_english": "The invention of the internet was a revolutionary development.", + "pos": "adjective", + "word_frequency": 3934 + }, + { + "word": "scandal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an action or event regarded as morally or legally wrong and causing general public outrage", + "example_sentence_english": "The politician was involved in a financial scandal.", + "pos": "noun", + "word_frequency": 3935 + }, + { + "word": "shine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emit light; be bright or luminous", + "example_sentence_english": "The sun began to shine brightly.", + "pos": "verb", + "word_frequency": 3936 + }, + { + "word": "simultaneously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at the same time", + "example_sentence_english": "They arrived simultaneously at the finish line.", + "pos": "adverb", + "word_frequency": 3938 + }, + { + "word": "substitute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replace (someone or something) with another", + "example_sentence_english": "You can substitute honey for sugar in this recipe.", + "pos": "verb", + "word_frequency": 3939 + }, + { + "word": "surveillance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "close observation, especially of a suspected spy or criminal", + "example_sentence_english": "The police kept the suspect under constant surveillance.", + "pos": "noun", + "word_frequency": 3940 + }, + { + "word": "tactic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an action or strategy carefully planned to achieve a specific end", + "example_sentence_english": "Their new marketing tactic proved very effective.", + "pos": "noun", + "word_frequency": 3941 + }, + { + "word": "testimony", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a formal written or spoken statement, especially one given in a court of law", + "example_sentence_english": "The witness gave compelling testimony in court.", + "pos": "noun", + "word_frequency": 3942 + }, + { + "word": "treasure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quantity of precious metals, gems, or other valuable objects", + "example_sentence_english": "They discovered a hidden treasure chest.", + "pos": "noun", + "word_frequency": 3944 + }, + { + "word": "trophy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cup or other decorative object awarded as a prize for a victory or success", + "example_sentence_english": "The team proudly displayed their championship trophy.", + "pos": "noun", + "word_frequency": 3945 + }, + { + "word": "tweet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a post made on the Twitter social media service", + "example_sentence_english": "She posted a funny tweet about her day.", + "pos": "noun", + "word_frequency": 3946 + }, + { + "word": "underlie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be the cause or basis of (something)", + "example_sentence_english": "The fundamental principles that underlie the theory are complex.", + "pos": "verb", + "word_frequency": 3948 + }, + { + "word": "unfair", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not based on or behaving according to the principles of equality and justice", + "example_sentence_english": "It was unfair to blame him for the mistake.", + "pos": "adjective", + "word_frequency": 3949 + }, + { + "word": "acceptance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of consenting to receive or undertake something offered", + "example_sentence_english": "Her acceptance of the award was met with applause.", + "pos": "noun", + "word_frequency": 3952 + }, + { + "word": "annually", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "once every year; yearly", + "example_sentence_english": "The company publishes its financial report annually.", + "pos": "adverb", + "word_frequency": 3953 + }, + { + "word": "apologize", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "express regret for something one has done wrong", + "example_sentence_english": "You should apologize for your rude behavior.", + "pos": "verb", + "word_frequency": 3954 + }, + { + "word": "ash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the powdery residue left after the burning of a substance", + "example_sentence_english": "The fireplace was full of cold ash.", + "pos": "noun", + "word_frequency": 3955 + }, + { + "word": "aunt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the sister of one's father or mother or the wife of one's uncle", + "example_sentence_english": "My aunt lives in Canada.", + "pos": "noun", + "word_frequency": 3956 + }, + { + "word": "bubble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin sphere of liquid enclosing air or another gas", + "example_sentence_english": "Children love to blow soap bubbles.", + "pos": "noun", + "word_frequency": 3959 + }, + { + "word": "buyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person who buys", + "example_sentence_english": "The buyer was happy with the purchase.", + "pos": "noun", + "word_frequency": 3960 + }, + { + "word": "casino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gambling establishment", + "example_sentence_english": "We visited a large casino in Las Vegas.", + "pos": "noun", + "word_frequency": 3961 + }, + { + "word": "counsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advice; lawyer", + "example_sentence_english": "The lawyer offered sound counsel to his client.", + "pos": "noun", + "word_frequency": 3962 + }, + { + "word": "deadly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing death", + "example_sentence_english": "The snake's venom was deadly.", + "pos": "adjective", + "word_frequency": 3963 + }, + { + "word": "determination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmness of purpose", + "example_sentence_english": "Her determination to succeed was inspiring.", + "pos": "noun", + "word_frequency": 3965 + }, + { + "word": "embrace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hug; to accept", + "example_sentence_english": "She embraced the new challenge with enthusiasm.", + "pos": "verb", + "word_frequency": 3966 + }, + { + "word": "exhibit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show; to display", + "example_sentence_english": "The museum will exhibit ancient artifacts.", + "pos": "verb", + "word_frequency": 3967 + }, + { + "word": "gentleman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polite man", + "example_sentence_english": "He behaved like a true gentleman.", + "pos": "noun", + "word_frequency": 3968 + }, + { + "word": "hammer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tool for hitting", + "example_sentence_english": "He used a hammer to fix the nail.", + "pos": "noun", + "word_frequency": 3971 + }, + { + "word": "icon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbol; revered person", + "example_sentence_english": "The pop star became a cultural icon.", + "pos": "noun", + "word_frequency": 3973 + }, + { + "word": "impose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to force; to inflict", + "example_sentence_english": "The government decided to impose new taxes.", + "pos": "verb", + "word_frequency": 3974 + }, + { + "word": "indigenous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "native; originating in a place", + "example_sentence_english": "The indigenous people have lived here for centuries.", + "pos": "adjective", + "word_frequency": 3975 + }, + { + "word": "infinite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endless; limitless", + "example_sentence_english": "The universe seems to be infinite.", + "pos": "adjective", + "word_frequency": 3976 + }, + { + "word": "installation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act of installing; something installed", + "example_sentence_english": "The installation of the new software took an hour.", + "pos": "noun", + "word_frequency": 3977 + }, + { + "word": "inter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bury (a corpse)", + "example_sentence_english": "They decided to inter the remains in the family plot.", + "pos": "verb", + "word_frequency": 3978 + }, + { + "word": "legislature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "law-making body", + "example_sentence_english": "The bill was passed by the state legislature.", + "pos": "noun", + "word_frequency": 3980 + }, + { + "word": "liability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "responsibility; disadvantage", + "example_sentence_english": "The company has a large financial liability.", + "pos": "noun", + "word_frequency": 3981 + }, + { + "word": "marathon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long-distance race", + "example_sentence_english": "She trained for months to run the marathon.", + "pos": "noun", + "word_frequency": 3984 + }, + { + "word": "marvel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wonderful thing", + "example_sentence_english": "The Grand Canyon is a natural marvel.", + "pos": "noun", + "word_frequency": 3985 + }, + { + "word": "moreover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in addition; furthermore", + "example_sentence_english": "The food was delicious; moreover, it was very affordable.", + "pos": "adverb", + "word_frequency": 3987 + }, + { + "word": "parade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "public procession", + "example_sentence_english": "We watched the Thanksgiving Day parade.", + "pos": "noun", + "word_frequency": 3989 + }, + { + "word": "paradise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideal place; heaven", + "example_sentence_english": "The island felt like a tropical paradise.", + "pos": "noun", + "word_frequency": 3990 + }, + { + "word": "perceive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become aware of; to understand", + "example_sentence_english": "He could perceive a faint light in the distance.", + "pos": "verb", + "word_frequency": 3991 + }, + { + "word": "preliminary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "introductory; prior to main event", + "example_sentence_english": "The preliminary results were promising.", + "pos": "adjective", + "word_frequency": 3992 + }, + { + "word": "premiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "first performance", + "example_sentence_english": "The movie's premiere was held in Hollywood.", + "pos": "noun", + "word_frequency": 3993 + }, + { + "word": "presidency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "office of president", + "example_sentence_english": "His presidency lasted for four years.", + "pos": "noun", + "word_frequency": 3994 + }, + { + "word": "react", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to respond", + "example_sentence_english": "How did he react to the news?", + "pos": "verb", + "word_frequency": 3995 + }, + { + "word": "realistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensible; practical", + "example_sentence_english": "We need to set realistic goals.", + "pos": "adjective", + "word_frequency": 3996 + }, + { + "word": "remark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comment; statement", + "example_sentence_english": "He made a positive remark about her work.", + "pos": "noun", + "word_frequency": 3997 + }, + { + "word": "retain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to keep; to hold", + "example_sentence_english": "She managed to retain her composure.", + "pos": "verb", + "word_frequency": 3998 + }, + { + "word": "rocky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of rocks; unstable", + "example_sentence_english": "The path was rocky and difficult to climb.", + "pos": "adjective", + "word_frequency": 4000 + }, + { + "word": "satisfaction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fulfillment of a desire or need", + "example_sentence_english": "She found great satisfaction in helping others.", + "pos": "noun", + "word_frequency": 4001 + }, + { + "word": "scratch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mark or damage a surface with a sharp object", + "example_sentence_english": "Be careful not to scratch the new car.", + "pos": "verb", + "word_frequency": 4002 + }, + { + "word": "shade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an area of darkness produced by an object blocking light", + "example_sentence_english": "We sat in the shade of the tree to escape the sun.", + "pos": "noun", + "word_frequency": 4003 + }, + { + "word": "sheriff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an elected officer in a county, responsible for keeping the peace", + "example_sentence_english": "The sheriff investigated the mysterious disappearance.", + "pos": "noun", + "word_frequency": 4004 + }, + { + "word": "shy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nervous or timid in the company of other people", + "example_sentence_english": "The shy child hid behind her mother.", + "pos": "adjective", + "word_frequency": 4005 + }, + { + "word": "sometime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at an unspecified or unknown time", + "example_sentence_english": "Let's meet for coffee sometime next week.", + "pos": "adverb", + "word_frequency": 4006 + }, + { + "word": "strictly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a strict manner; rigorously", + "example_sentence_english": "The rules are strictly enforced in this library.", + "pos": "adverb", + "word_frequency": 4007 + }, + { + "word": "sunshine", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "direct sunlight", + "example_sentence_english": "We enjoyed the warm sunshine on the beach.", + "pos": "noun", + "word_frequency": 4008 + }, + { + "word": "tier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a row or level of a structure", + "example_sentence_english": "The stadium has three tiers of seating.", + "pos": "noun", + "word_frequency": 4009 + }, + { + "word": "vocal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the human voice", + "example_sentence_english": "She has a very strong vocal performance.", + "pos": "adjective", + "word_frequency": 4012 + }, + { + "word": "yield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to produce or provide", + "example_sentence_english": "The apple tree yields a lot of fruit every year.", + "pos": "verb", + "word_frequency": 4013 + }, + { + "word": "accomplish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to achieve or complete successfully", + "example_sentence_english": "We hope to accomplish all our goals this year.", + "pos": "verb", + "word_frequency": 4014 + }, + { + "word": "admission", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of allowing to enter", + "example_sentence_english": "Admission to the museum is free on Tuesdays.", + "pos": "noun", + "word_frequency": 4015 + }, + { + "word": "bacon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cured meat from the back or sides of a pig", + "example_sentence_english": "I love to eat bacon and eggs for breakfast.", + "pos": "noun", + "word_frequency": 4017 + }, + { + "word": "barrier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fence or other obstacle that prevents movement or access", + "example_sentence_english": "The language barrier made communication difficult.", + "pos": "noun", + "word_frequency": 4018 + }, + { + "word": "burst", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break open or apart suddenly and violently", + "example_sentence_english": "The balloon burst when it hit the sharp branch.", + "pos": "verb", + "word_frequency": 4020 + }, + { + "word": "cattle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cows, bulls, or oxen, kept for meat or milk", + "example_sentence_english": "The farmer moved his cattle to a new pasture.", + "pos": "noun", + "word_frequency": 4021 + }, + { + "word": "classroom", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a room in a school or college where classes are taught", + "example_sentence_english": "The students gathered in the classroom for their lesson.", + "pos": "noun", + "word_frequency": 4023 + }, + { + "word": "compromise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an agreement or a settlement of a dispute that is reached by each side making concessions", + "example_sentence_english": "They reached a compromise after a long discussion.", + "pos": "noun", + "word_frequency": 4025 + }, + { + "word": "convenient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fitting in well with a person's needs, activities, and plans", + "example_sentence_english": "The store is very convenient, just a short walk from my house.", + "pos": "adjective", + "word_frequency": 4026 + }, + { + "word": "crop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cultivated plant that is grown on a large scale commercially", + "example_sentence_english": "The main crop grown here is corn.", + "pos": "noun", + "word_frequency": 4028 + }, + { + "word": "earthquake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden violent shaking of the ground", + "example_sentence_english": "The earthquake caused widespread damage to the city.", + "pos": "noun", + "word_frequency": 4029 + }, + { + "word": "elderly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old or aging", + "example_sentence_english": "The elderly couple enjoyed their quiet life.", + "pos": "adjective", + "word_frequency": 4030 + }, + { + "word": "eliminate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to completely remove or get rid of something", + "example_sentence_english": "We need to eliminate all errors from the report.", + "pos": "verb", + "word_frequency": 4031 + }, + { + "word": "embarrass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause (someone) to feel awkward, self-conscious, or ashamed", + "example_sentence_english": "His rude comments embarrassed everyone at the party.", + "pos": "verb", + "word_frequency": 4032 + }, + { + "word": "harbor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place on the coast where ships may find shelter", + "example_sentence_english": "The ships were docked safely in the harbor.", + "pos": "noun", + "word_frequency": 4033 + }, + { + "word": "ion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an atom or molecule with an electric charge", + "example_sentence_english": "An ion is an atom that has gained or lost electrons.", + "pos": "noun", + "word_frequency": 4035 + }, + { + "word": "lesbian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a homosexual woman", + "example_sentence_english": "She identifies as a lesbian.", + "pos": "noun", + "word_frequency": 4037 + }, + { + "word": "mathematics", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the science of numbers, quantities, and shapes", + "example_sentence_english": "She is studying advanced mathematics at university.", + "pos": "noun", + "word_frequency": 4039 + }, + { + "word": "medication", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine", + "example_sentence_english": "The doctor prescribed new medication for her cough.", + "pos": "noun", + "word_frequency": 4040 + }, + { + "word": "par", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "average standard; equal value", + "example_sentence_english": "He shot two strokes under par on the last hole.", + "pos": "noun", + "word_frequency": 4043 + }, + { + "word": "podcast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digital audio program", + "example_sentence_english": "I listen to a lot of podcasts during my commute.", + "pos": "noun", + "word_frequency": 4044 + }, + { + "word": "portfolio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection of works or investments", + "example_sentence_english": "She showed her art portfolio to the gallery owner.", + "pos": "noun", + "word_frequency": 4045 + }, + { + "word": "productivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being productive", + "example_sentence_english": "New software can help improve team productivity.", + "pos": "noun", + "word_frequency": 4046 + }, + { + "word": "protocol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set of rules or procedures", + "example_sentence_english": "The scientists followed a strict protocol for the experiment.", + "pos": "noun", + "word_frequency": 4047 + }, + { + "word": "quietly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a quiet manner", + "example_sentence_english": "He closed the door quietly so as not to wake anyone.", + "pos": "adverb", + "word_frequency": 4048 + }, + { + "word": "salad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a dish of mixed raw vegetables", + "example_sentence_english": "I had a fresh salad for lunch.", + "pos": "noun", + "word_frequency": 4050 + }, + { + "word": "scholarship", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "financial aid for students", + "example_sentence_english": "She received a scholarship to study at university.", + "pos": "noun", + "word_frequency": 4051 + }, + { + "word": "soup", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "liquid food", + "example_sentence_english": "I like to eat hot soup on a cold day.", + "pos": "noun", + "word_frequency": 4052 + }, + { + "word": "southeast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the direction between south and east", + "example_sentence_english": "The storm is moving towards the southeast.", + "pos": "noun", + "word_frequency": 4053 + }, + { + "word": "stake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a share or interest; a pointed stick", + "example_sentence_english": "The company has a financial stake in the new project.", + "pos": "noun", + "word_frequency": 4054 + }, + { + "word": "strain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressure; injury; type", + "example_sentence_english": "He pulled a muscle and suffered a leg strain.", + "pos": "noun", + "word_frequency": 4055 + }, + { + "word": "swift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fast; quick", + "example_sentence_english": "The gazelle is a swift runner.", + "pos": "adjective", + "word_frequency": 4056 + }, + { + "word": "tackle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deal with; to confront", + "example_sentence_english": "We need to tackle this problem immediately.", + "pos": "verb", + "word_frequency": 4057 + }, + { + "word": "timeline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chronological sequence of events", + "example_sentence_english": "The project timeline shows all the key dates.", + "pos": "noun", + "word_frequency": 4058 + }, + { + "word": "torture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "severe pain or suffering", + "example_sentence_english": "The prisoner endured days of torture.", + "pos": "noun", + "word_frequency": 4059 + }, + { + "word": "translate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to convert from one language to another", + "example_sentence_english": "Can you translate this sentence into Spanish?", + "pos": "verb", + "word_frequency": 4060 + }, + { + "word": "urgent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "requiring immediate action", + "example_sentence_english": "This is an urgent matter that needs our attention.", + "pos": "adjective", + "word_frequency": 4061 + }, + { + "word": "vegetable", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a plant or part of a plant used as food", + "example_sentence_english": "Eating fresh vegetables is good for your health.", + "pos": "noun", + "word_frequency": 4062 + }, + { + "word": "vertical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upright; perpendicular to the horizontal", + "example_sentence_english": "The cliff face was almost perfectly vertical.", + "pos": "adjective", + "word_frequency": 4063 + }, + { + "word": "violation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of breaking a rule or law", + "example_sentence_english": "Parking here is a violation of the rules.", + "pos": "noun", + "word_frequency": 4064 + }, + { + "word": "wallet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small case for money and cards", + "example_sentence_english": "I keep my money and cards in my wallet.", + "pos": "noun", + "word_frequency": 4065 + }, + { + "word": "workshop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place for making things; a training session", + "example_sentence_english": "We attended a workshop on digital marketing.", + "pos": "noun", + "word_frequency": 4067 + }, + { + "word": "aboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on or into a ship, aircraft, or train", + "example_sentence_english": "All passengers are now aboard the flight.", + "pos": "adverb", + "word_frequency": 4069 + }, + { + "word": "abstract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing in thought or as an idea but not having a physical or concrete existence", + "example_sentence_english": "His paintings are very abstract and open to interpretation.", + "pos": "adjective", + "word_frequency": 4070 + }, + { + "word": "accent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a distinctive way of pronouncing a language", + "example_sentence_english": "She has a strong French accent.", + "pos": "noun", + "word_frequency": 4071 + }, + { + "word": "addiction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsive need for something", + "example_sentence_english": "He is trying to overcome his addiction to sugar.", + "pos": "noun", + "word_frequency": 4072 + }, + { + "word": "awake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not asleep", + "example_sentence_english": "I was still awake when the sun came up.", + "pos": "adjective", + "word_frequency": 4073 + }, + { + "word": "beam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a ray of light; a long, sturdy piece of timber", + "example_sentence_english": "A beam of sunlight shone through the window.", + "pos": "noun", + "word_frequency": 4074 + }, + { + "word": "bean", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an edible seed", + "example_sentence_english": "I like to add black beans to my chili.", + "pos": "noun", + "word_frequency": 4075 + }, + { + "word": "blank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "empty; without writing or images", + "example_sentence_english": "The page was completely blank.", + "pos": "adjective", + "word_frequency": 4076 + }, + { + "word": "buffalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large wild ox", + "example_sentence_english": "We saw a herd of buffalo in the national park.", + "pos": "noun", + "word_frequency": 4077 + }, + { + "word": "conviction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a firm belief; a formal declaration of guilt", + "example_sentence_english": "He spoke with great conviction about his beliefs.", + "pos": "noun", + "word_frequency": 4079 + }, + { + "word": "corrupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonest or immoral", + "example_sentence_english": "The corrupt official was arrested for bribery.", + "pos": "adjective", + "word_frequency": 4080 + }, + { + "word": "cow", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large farm animal", + "example_sentence_english": "The cow grazed peacefully in the field.", + "pos": "noun", + "word_frequency": 4081 + }, + { + "word": "curve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bending line", + "example_sentence_english": "The car slowed down as it approached the sharp curve in the road.", + "pos": "noun", + "word_frequency": 4082 + }, + { + "word": "depress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone feel sad; to push down", + "example_sentence_english": "The bad news began to depress him.", + "pos": "verb", + "word_frequency": 4083 + }, + { + "word": "dine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to eat dinner", + "example_sentence_english": "We decided to dine at a new restaurant tonight.", + "pos": "verb", + "word_frequency": 4084 + }, + { + "word": "duration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the length of time something lasts", + "example_sentence_english": "The duration of the flight was six hours.", + "pos": "noun", + "word_frequency": 4085 + }, + { + "word": "fifteen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 15", + "example_sentence_english": "There are fifteen students in the class.", + "pos": "numeral", + "word_frequency": 4088 + }, + { + "word": "grandmother", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the mother of one's father or mother", + "example_sentence_english": "My grandmother bakes delicious cookies.", + "pos": "noun", + "word_frequency": 4090 + }, + { + "word": "harsh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severe or cruel; unpleasantly rough", + "example_sentence_english": "The desert climate can be very harsh.", + "pos": "adjective", + "word_frequency": 4091 + }, + { + "word": "horn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hard, pointed growth on an animal's head; a device for making a loud sound", + "example_sentence_english": "The car driver honked the horn.", + "pos": "noun", + "word_frequency": 4092 + }, + { + "word": "hurry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move or act quickly", + "example_sentence_english": "We need to hurry or we'll miss the train.", + "pos": "verb", + "word_frequency": 4093 + }, + { + "word": "immune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protected from a disease or obligation", + "example_sentence_english": "After vaccination, she became immune to the virus.", + "pos": "adjective", + "word_frequency": 4094 + }, + { + "word": "inflation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a general increase in prices and fall in the purchasing value of money", + "example_sentence_english": "High inflation is a concern for the economy.", + "pos": "noun", + "word_frequency": 4095 + }, + { + "word": "ingredient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a component part of a mixture", + "example_sentence_english": "Flour is a key ingredient in bread.", + "pos": "noun", + "word_frequency": 4096 + }, + { + "word": "inspection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a careful examination or review", + "example_sentence_english": "The house passed its final inspection.", + "pos": "noun", + "word_frequency": 4097 + }, + { + "word": "intensity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being intense", + "example_sentence_english": "The intensity of the storm surprised everyone.", + "pos": "noun", + "word_frequency": 4098 + }, + { + "word": "inventory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a complete list of items", + "example_sentence_english": "The store conducted an inventory check at the end of the month.", + "pos": "noun", + "word_frequency": 4099 + }, + { + "word": "invitation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a request to attend an event", + "example_sentence_english": "She received an invitation to the party.", + "pos": "noun", + "word_frequency": 4100 + }, + { + "word": "judicial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to courts of law or judges", + "example_sentence_english": "The judicial system ensures justice.", + "pos": "adjective", + "word_frequency": 4101 + }, + { + "word": "justify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show or prove to be right or reasonable", + "example_sentence_english": "Can you justify your decision?", + "pos": "verb", + "word_frequency": 4102 + }, + { + "word": "lean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to incline or bend from a vertical position", + "example_sentence_english": "Don't lean on the wet paint.", + "pos": "verb", + "word_frequency": 4104 + }, + { + "word": "lecture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an educational talk to an audience", + "example_sentence_english": "The professor gave an interesting lecture on history.", + "pos": "noun", + "word_frequency": 4105 + }, + { + "word": "logical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to the rules of logic or formal argument", + "example_sentence_english": "His argument was very logical and convincing.", + "pos": "adjective", + "word_frequency": 4106 + }, + { + "word": "meaningful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a serious, important, or useful quality or purpose", + "example_sentence_english": "They had a meaningful conversation about their future.", + "pos": "adjective", + "word_frequency": 4108 + }, + { + "word": "migration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seasonal movement of animals or people", + "example_sentence_english": "The annual bird migration is a spectacular sight.", + "pos": "noun", + "word_frequency": 4109 + }, + { + "word": "missile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an object propelled to hit a distant target", + "example_sentence_english": "The missile was launched from the submarine.", + "pos": "noun", + "word_frequency": 4110 + }, + { + "word": "motivate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide with a motive for doing something", + "example_sentence_english": "His success motivates others to work harder.", + "pos": "verb", + "word_frequency": 4111 + }, + { + "word": "northwest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the direction between north and west", + "example_sentence_english": "The wind is blowing from the northwest.", + "pos": "noun", + "word_frequency": 4114 + }, + { + "word": "organ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a part of an animal or plant body with a specific function; a large musical instrument", + "example_sentence_english": "The heart is a vital organ.", + "pos": "noun", + "word_frequency": 4115 + }, + { + "word": "patrol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of people or vehicles that patrol an area", + "example_sentence_english": "The police patrol maintains order in the city.", + "pos": "noun", + "word_frequency": 4116 + }, + { + "word": "pearl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hard, glistening object produced within the soft tissue of a living shelled mollusk", + "example_sentence_english": "She wore a necklace with a beautiful pearl.", + "pos": "noun", + "word_frequency": 4117 + }, + { + "word": "peer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person of the same age, status, or ability as another", + "example_sentence_english": "Children often learn a lot from their peers.", + "pos": "noun", + "word_frequency": 4118 + }, + { + "word": "pepper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pungent spice or a type of vegetable", + "example_sentence_english": "Please pass the salt and pepper.", + "pos": "noun", + "word_frequency": 4119 + }, + { + "word": "pig", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pig", + "example_sentence_english": "The pig rolled in the mud.", + "pos": "noun", + "word_frequency": 4120 + }, + { + "word": "pile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pile", + "example_sentence_english": "There was a pile of books on the table.", + "pos": "noun", + "word_frequency": 4121 + }, + { + "word": "plug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plug", + "example_sentence_english": "He pulled the plug out of the wall.", + "pos": "noun", + "word_frequency": 4122 + }, + { + "word": "provision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provision", + "example_sentence_english": "The contract includes a provision for early termination.", + "pos": "noun", + "word_frequency": 4123 + }, + { + "word": "revise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revise", + "example_sentence_english": "She needs to revise her essay before submitting it.", + "pos": "verb", + "word_frequency": 4124 + }, + { + "word": "rod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rod", + "example_sentence_english": "He used a fishing rod to catch the fish.", + "pos": "noun", + "word_frequency": 4125 + }, + { + "word": "stair", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stair", + "example_sentence_english": "He walked up the last stair to the second floor.", + "pos": "noun", + "word_frequency": 4126 + }, + { + "word": "stare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stare", + "example_sentence_english": "It's rude to stare at people.", + "pos": "verb", + "word_frequency": 4127 + }, + { + "word": "statistical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statistical", + "example_sentence_english": "The report presented statistical data.", + "pos": "adjective", + "word_frequency": 4128 + }, + { + "word": "sweat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweat", + "example_sentence_english": "After running, he was covered in sweat.", + "pos": "noun", + "word_frequency": 4129 + }, + { + "word": "syrian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Syrian", + "example_sentence_english": "The Syrian conflict has displaced millions.", + "pos": "adjective", + "word_frequency": 4130 + }, + { + "word": "tattoo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tattoo", + "example_sentence_english": "She got a new tattoo on her arm.", + "pos": "noun", + "word_frequency": 4131 + }, + { + "word": "teenage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teenage", + "example_sentence_english": "He has two teenage children.", + "pos": "adjective", + "word_frequency": 4132 + }, + { + "word": "thunder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thunder", + "example_sentence_english": "We heard the thunder after the lightning.", + "pos": "noun", + "word_frequency": 4133 + }, + { + "word": "tragedy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragedy", + "example_sentence_english": "The accident was a terrible tragedy.", + "pos": "noun", + "word_frequency": 4134 + }, + { + "word": "trauma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trauma", + "example_sentence_english": "He experienced significant emotional trauma.", + "pos": "noun", + "word_frequency": 4135 + }, + { + "word": "wrestle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrestle", + "example_sentence_english": "The two brothers like to wrestle.", + "pos": "verb", + "word_frequency": 4137 + }, + { + "word": "zoo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zoo", + "example_sentence_english": "We went to the zoo to see the animals.", + "pos": "noun", + "word_frequency": 4138 + }, + { + "word": "accordance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accordance", + "example_sentence_english": "The decision was made in accordance with the rules.", + "pos": "noun", + "word_frequency": 4139 + }, + { + "word": "activist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activist", + "example_sentence_english": "She is a well-known environmental activist.", + "pos": "noun", + "word_frequency": 4140 + }, + { + "word": "alike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alike", + "example_sentence_english": "The two sisters look very much alike.", + "pos": "adjective", + "word_frequency": 4141 + }, + { + "word": "applicable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicable", + "example_sentence_english": "This rule is not applicable in your case.", + "pos": "adjective", + "word_frequency": 4142 + }, + { + "word": "arrow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arrow", + "example_sentence_english": "Follow the arrow to the exit.", + "pos": "noun", + "word_frequency": 4143 + }, + { + "word": "availability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "availability", + "example_sentence_english": "Please check the availability of the product.", + "pos": "noun", + "word_frequency": 4144 + }, + { + "word": "bend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bend", + "example_sentence_english": "Don't bend the book pages.", + "pos": "verb", + "word_frequency": 4147 + }, + { + "word": "breach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breach", + "example_sentence_english": "There was a security breach in the system.", + "pos": "noun", + "word_frequency": 4148 + }, + { + "word": "cabin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cabin", + "example_sentence_english": "We stayed in a small cabin by the lake.", + "pos": "noun", + "word_frequency": 4149 + }, + { + "word": "cage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cage", + "example_sentence_english": "The bird was in a cage.", + "pos": "noun", + "word_frequency": 4150 + }, + { + "word": "chancellor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chancellor", + "example_sentence_english": "The Chancellor delivered a speech.", + "pos": "noun", + "word_frequency": 4151 + }, + { + "word": "cheer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheer", + "example_sentence_english": "The crowd let out a loud cheer.", + "pos": "noun", + "word_frequency": 4152 + }, + { + "word": "closet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "closet", + "example_sentence_english": "Her clothes are in the closet.", + "pos": "noun", + "word_frequency": 4153 + }, + { + "word": "companion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "companion", + "example_sentence_english": "He was a loyal companion on the journey.", + "pos": "noun", + "word_frequency": 4154 + }, + { + "word": "consciousness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consciousness", + "example_sentence_english": "He slowly regained consciousness after the accident.", + "pos": "noun", + "word_frequency": 4155 + }, + { + "word": "consultant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultant", + "example_sentence_english": "She works as a business consultant.", + "pos": "noun", + "word_frequency": 4156 + }, + { + "word": "controller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controller", + "example_sentence_english": "The air traffic controller guided the plane.", + "pos": "noun", + "word_frequency": 4157 + }, + { + "word": "correspond", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correspond", + "example_sentence_english": "The numbers on the list correspond to the items in the box.", + "pos": "verb", + "word_frequency": 4158 + }, + { + "word": "courtesy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courtesy", + "example_sentence_english": "He showed great courtesy to his guests.", + "pos": "noun", + "word_frequency": 4159 + }, + { + "word": "disc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disc", + "example_sentence_english": "The CD is a small, round disc.", + "pos": "noun", + "word_frequency": 4161 + }, + { + "word": "embassy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embassy", + "example_sentence_english": "We visited the American embassy in London.", + "pos": "noun", + "word_frequency": 4162 + }, + { + "word": "fascinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fascinate", + "example_sentence_english": "The magician's tricks always fascinate the audience.", + "pos": "verb", + "word_frequency": 4163 + }, + { + "word": "flexible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexible", + "example_sentence_english": "Yoga helps you become more flexible.", + "pos": "adjective", + "word_frequency": 4164 + }, + { + "word": "goodness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goodness", + "example_sentence_english": "She always tries to see the goodness in people.", + "pos": "noun", + "word_frequency": 4165 + }, + { + "word": "guilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guilt", + "example_sentence_english": "He felt a strong sense of guilt after lying.", + "pos": "noun", + "word_frequency": 4166 + }, + { + "word": "haven", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "haven", + "example_sentence_english": "The library was a quiet haven for students.", + "pos": "noun", + "word_frequency": 4167 + }, + { + "word": "helicopter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helicopter", + "example_sentence_english": "A helicopter flew low over the city.", + "pos": "noun", + "word_frequency": 4168 + }, + { + "word": "homework", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "homework", + "example_sentence_english": "I need to finish my homework before dinner.", + "pos": "noun", + "word_frequency": 4169 + }, + { + "word": "iconic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iconic", + "example_sentence_english": "The Eiffel Tower is an iconic landmark of Paris.", + "pos": "adjective", + "word_frequency": 4171 + }, + { + "word": "infect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to infect", + "example_sentence_english": "Viruses can infect computer systems.", + "pos": "verb", + "word_frequency": 4172 + }, + { + "word": "keen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "keen (eager, sharp)", + "example_sentence_english": "She's very keen to learn new things.", + "pos": "adjective", + "word_frequency": 4173 + }, + { + "word": "less", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "less", + "example_sentence_english": "I have less time today than yesterday.", + "pos": "adjective", + "word_frequency": 4175 + }, + { + "word": "mandatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mandatory", + "example_sentence_english": "Wearing a helmet is mandatory for cyclists.", + "pos": "adjective", + "word_frequency": 4176 + }, + { + "word": "manufacture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manufacture", + "example_sentence_english": "The company manufactures cars in Germany.", + "pos": "verb", + "word_frequency": 4177 + }, + { + "word": "mechanic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mechanic", + "example_sentence_english": "The mechanic fixed my car's engine.", + "pos": "noun", + "word_frequency": 4178 + }, + { + "word": "miracle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miracle", + "example_sentence_english": "It was a miracle that no one was seriously hurt.", + "pos": "noun", + "word_frequency": 4179 + }, + { + "word": "mud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mud", + "example_sentence_english": "The children played in the mud after the rain.", + "pos": "noun", + "word_frequency": 4181 + }, + { + "word": "observation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observation", + "example_sentence_english": "Scientific observation is crucial for research.", + "pos": "noun", + "word_frequency": 4184 + }, + { + "word": "owe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to owe", + "example_sentence_english": "I owe you five dollars for the coffee.", + "pos": "verb", + "word_frequency": 4185 + }, + { + "word": "phenomenon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phenomenon", + "example_sentence_english": "The aurora borealis is a beautiful natural phenomenon.", + "pos": "noun", + "word_frequency": 4186 + }, + { + "word": "precise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precise", + "example_sentence_english": "We need precise measurements for this experiment.", + "pos": "adjective", + "word_frequency": 4188 + }, + { + "word": "profession", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profession", + "example_sentence_english": "Teaching is a noble profession.", + "pos": "noun", + "word_frequency": 4189 + }, + { + "word": "prospect", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prospect (possibility, outlook)", + "example_sentence_english": "The prospect of a long holiday excited her.", + "pos": "noun", + "word_frequency": 4190 + }, + { + "word": "protective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protective", + "example_sentence_english": "Parents are naturally protective of their children.", + "pos": "adjective", + "word_frequency": 4191 + }, + { + "word": "provider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provider", + "example_sentence_english": "Our internet provider offers fast speeds.", + "pos": "noun", + "word_frequency": 4192 + }, + { + "word": "publisher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publisher", + "example_sentence_english": "She sent her manuscript to a book publisher.", + "pos": "noun", + "word_frequency": 4193 + }, + { + "word": "reportedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reportedly", + "example_sentence_english": "The suspect reportedly fled the scene.", + "pos": "adverb", + "word_frequency": 4195 + }, + { + "word": "retreat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retreat (withdrawal, quiet place)", + "example_sentence_english": "The army ordered a strategic retreat.", + "pos": "noun", + "word_frequency": 4196 + }, + { + "word": "rookie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rookie", + "example_sentence_english": "The new police officer is still a rookie.", + "pos": "noun", + "word_frequency": 4197 + }, + { + "word": "sandwich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sandwich", + "example_sentence_english": "I'll have a ham sandwich for lunch.", + "pos": "noun", + "word_frequency": 4198 + }, + { + "word": "separation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separation", + "example_sentence_english": "The separation of powers is a key principle of democracy.", + "pos": "noun", + "word_frequency": 4199 + }, + { + "word": "sexually", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a sexual way", + "example_sentence_english": "The topic was discussed sexually.", + "pos": "adverb", + "word_frequency": 4200 + }, + { + "word": "ski", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move over snow on skis", + "example_sentence_english": "We plan to ski in the mountains this winter.", + "pos": "verb", + "word_frequency": 4201 + }, + { + "word": "skilled", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having special abilities or training", + "example_sentence_english": "She is a highly skilled worker.", + "pos": "adjective", + "word_frequency": 4202 + }, + { + "word": "sterling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excellent or British currency", + "example_sentence_english": "He made a sterling effort to finish the project on time.", + "pos": "adjective", + "word_frequency": 4203 + }, + { + "word": "surgeon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a doctor who performs operations", + "example_sentence_english": "The surgeon explained the procedure carefully.", + "pos": "noun", + "word_frequency": 4205 + }, + { + "word": "theft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of stealing", + "example_sentence_english": "The police are investigating the theft of the car.", + "pos": "noun", + "word_frequency": 4206 + }, + { + "word": "valve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that controls the flow of liquid or gas", + "example_sentence_english": "The plumber replaced the faulty valve.", + "pos": "noun", + "word_frequency": 4208 + }, + { + "word": "visa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official endorsement on a passport allowing entry into a country", + "example_sentence_english": "You need a visa to enter that country.", + "pos": "noun", + "word_frequency": 4209 + }, + { + "word": "adjacent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "next to or adjoining something else", + "example_sentence_english": "The library is adjacent to the park.", + "pos": "adjective", + "word_frequency": 4210 + }, + { + "word": "appreciation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recognition and enjoyment of the good qualities of something", + "example_sentence_english": "We showed our appreciation for their hard work.", + "pos": "noun", + "word_frequency": 4211 + }, + { + "word": "athletic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physically strong and active", + "example_sentence_english": "He has a very athletic build.", + "pos": "adjective", + "word_frequency": 4213 + }, + { + "word": "authorize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give official permission for", + "example_sentence_english": "The manager must authorize all expenses.", + "pos": "verb", + "word_frequency": 4214 + }, + { + "word": "banner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long strip of cloth bearing a slogan or design", + "example_sentence_english": "The protest marchers carried a large banner.", + "pos": "noun", + "word_frequency": 4215 + }, + { + "word": "charm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the power or quality of delighting or attracting", + "example_sentence_english": "Her charm made everyone feel at ease.", + "pos": "noun", + "word_frequency": 4219 + }, + { + "word": "colony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a country or area under the full or partial political control of another country", + "example_sentence_english": "India was once a British colony.", + "pos": "noun", + "word_frequency": 4220 + }, + { + "word": "cookie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small sweet cake", + "example_sentence_english": "I baked some chocolate chip cookies.", + "pos": "noun", + "word_frequency": 4221 + }, + { + "word": "cruel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willfully causing pain or suffering to others", + "example_sentence_english": "It was cruel to leave the dog alone in the rain.", + "pos": "adjective", + "word_frequency": 4222 + }, + { + "word": "curriculum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the subjects comprising a course of study in a school or college", + "example_sentence_english": "The school is reviewing its new curriculum.", + "pos": "noun", + "word_frequency": 4223 + }, + { + "word": "deadline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the latest time or date by which something should be completed", + "example_sentence_english": "The deadline for the project is Friday.", + "pos": "noun", + "word_frequency": 4224 + }, + { + "word": "deer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a hoofed ruminant mammal", + "example_sentence_english": "We saw a deer in the forest.", + "pos": "noun", + "word_frequency": 4225 + }, + { + "word": "delta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a triangular tract of sediment at the mouth of a river", + "example_sentence_english": "The Nile Delta is very fertile.", + "pos": "noun", + "word_frequency": 4226 + }, + { + "word": "dive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plunge head first into water", + "example_sentence_english": "He learned to dive into the swimming pool.", + "pos": "verb", + "word_frequency": 4227 + }, + { + "word": "electoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to elections or electors", + "example_sentence_english": "The electoral system needs reform.", + "pos": "adjective", + "word_frequency": 4229 + }, + { + "word": "eleven", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 11", + "example_sentence_english": "There are eleven players on a soccer team.", + "pos": "numeral", + "word_frequency": 4230 + }, + { + "word": "entity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing with distinct and independent existence", + "example_sentence_english": "The company is a separate legal entity.", + "pos": "noun", + "word_frequency": 4231 + }, + { + "word": "excessive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "more than is necessary, normal, or desirable", + "example_sentence_english": "The noise level was excessive.", + "pos": "adjective", + "word_frequency": 4232 + }, + { + "word": "feminist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who supports feminism", + "example_sentence_english": "She is a strong feminist and advocates for equal rights.", + "pos": "noun", + "word_frequency": 4233 + }, + { + "word": "govern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conduct the policy, actions, and affairs of (a state, organization, or people)", + "example_sentence_english": "The new laws will govern how businesses operate.", + "pos": "verb", + "word_frequency": 4234 + }, + { + "word": "ham", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meat from the upper part of a pig's leg", + "example_sentence_english": "We had ham and eggs for breakfast.", + "pos": "noun", + "word_frequency": 4235 + }, + { + "word": "interface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a point where two subjects, systems, etc., meet and interact", + "example_sentence_english": "The user interface of the software is very intuitive.", + "pos": "noun", + "word_frequency": 4236 + }, + { + "word": "jewelry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "personal ornaments, such as necklaces, rings, or bracelets", + "example_sentence_english": "She loves wearing antique jewelry.", + "pos": "noun", + "word_frequency": 4238 + }, + { + "word": "journalism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity or profession of writing for newspapers, magazines, or news websites or preparing news to be broadcast", + "example_sentence_english": "She studied journalism at university.", + "pos": "noun", + "word_frequency": 4239 + }, + { + "word": "jungle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dense forest in tropical regions", + "example_sentence_english": "The explorers ventured deep into the Amazon jungle.", + "pos": "noun", + "word_frequency": 4242 + }, + { + "word": "linear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arranged in or extending along a straight or nearly straight line", + "example_sentence_english": "The story has a linear plot, moving from beginning to end.", + "pos": "adjective", + "word_frequency": 4243 + }, + { + "word": "mg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "milligram (a unit of mass)", + "example_sentence_english": "Take 500 mg of this medicine twice a day.", + "pos": "noun", + "word_frequency": 4244 + }, + { + "word": "orient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to align or position oneself or something in relation to a specific direction or object", + "example_sentence_english": "It took him a while to orient himself in the new city.", + "pos": "verb", + "word_frequency": 4245 + }, + { + "word": "predict", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to say or estimate that a specified thing will happen in the future or will be a consequence of something", + "example_sentence_english": "It's difficult to predict the weather accurately for next week.", + "pos": "verb", + "word_frequency": 4247 + }, + { + "word": "prof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professor (an abbreviation)", + "example_sentence_english": "Prof. Smith gave an interesting lecture today.", + "pos": "noun", + "word_frequency": 4248 + }, + { + "word": "pursuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of following or pursuing someone or something; an activity that one engages in as a hobby or interest", + "example_sentence_english": "She is dedicated to the pursuit of knowledge.", + "pos": "noun", + "word_frequency": 4249 + }, + { + "word": "rap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of popular music of US black origin in which words are recited rapidly and rhythmically over a prerecorded backing", + "example_sentence_english": "He enjoys listening to rap music.", + "pos": "noun", + "word_frequency": 4250 + }, + { + "word": "reminder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "something that makes you remember something", + "example_sentence_english": "I set a reminder on my phone for the meeting.", + "pos": "noun", + "word_frequency": 4251 + }, + { + "word": "resume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a brief account of one's professional or work experience and qualifications, often submitted with a job application", + "example_sentence_english": "Please attach your resume to the application form.", + "pos": "noun", + "word_frequency": 4252 + }, + { + "word": "rev", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a revolution of an engine", + "example_sentence_english": "The car engine idled at 800 revs per minute.", + "pos": "noun", + "word_frequency": 4253 + }, + { + "word": "ridge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow hilltop, mountain range, or watershed", + "example_sentence_english": "We hiked along the mountain ridge, enjoying the views.", + "pos": "noun", + "word_frequency": 4255 + }, + { + "word": "scholar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies a great deal and has a lot of knowledge about a particular subject", + "example_sentence_english": "She is a respected scholar in the field of ancient history.", + "pos": "noun", + "word_frequency": 4257 + }, + { + "word": "tribe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of people, often of related families, who live together, sharing the same language, culture, and history", + "example_sentence_english": "The indigenous tribe has lived in this region for centuries.", + "pos": "noun", + "word_frequency": 4259 + }, + { + "word": "unfortunate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having bad luck; regrettable or inappropriate", + "example_sentence_english": "It was an unfortunate accident, but no one was seriously hurt.", + "pos": "adjective", + "word_frequency": 4260 + }, + { + "word": "variable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not consistent or having a fixed pattern; liable to change", + "example_sentence_english": "The weather in the mountains is highly variable.", + "pos": "adjective", + "word_frequency": 4261 + }, + { + "word": "victorian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the reign of Queen Victoria (1837–1901) or to the art, architecture, or customs of that period", + "example_sentence_english": "The house had beautiful Victorian architecture.", + "pos": "adjective", + "word_frequency": 4262 + }, + { + "word": "ace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who excels at a particular activity", + "example_sentence_english": "She's an ace at tennis, winning every match.", + "pos": "noun", + "word_frequency": 4264 + }, + { + "word": "adjust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alter or move something slightly in order to achieve the desired fit, appearance, or result", + "example_sentence_english": "You can adjust the height of the chair.", + "pos": "verb", + "word_frequency": 4265 + }, + { + "word": "alternate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring or succeeding by turns; every other", + "example_sentence_english": "We meet on alternate Tuesdays.", + "pos": "adjective", + "word_frequency": 4266 + }, + { + "word": "artwork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustrations, photographs, or other graphic material prepared for inclusion in a book, magazine, or other publication", + "example_sentence_english": "The museum features modern artwork from local artists.", + "pos": "noun", + "word_frequency": 4267 + }, + { + "word": "athlete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who is proficient in sports and other forms of physical exercise", + "example_sentence_english": "The athlete trained hard for the Olympics.", + "pos": "noun", + "word_frequency": 4269 + }, + { + "word": "attraction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action or power of evoking interest, pleasure, or liking in someone or something", + "example_sentence_english": "The Eiffel Tower is a major tourist attraction in Paris.", + "pos": "noun", + "word_frequency": 4270 + }, + { + "word": "babe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a baby or young child; an attractive young woman (informal)", + "example_sentence_english": "The little babe slept peacefully in her crib.", + "pos": "noun", + "word_frequency": 4271 + }, + { + "word": "bankruptcy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being completely without money", + "example_sentence_english": "The company filed for bankruptcy after years of financial struggles.", + "pos": "noun", + "word_frequency": 4272 + }, + { + "word": "canon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a general law, rule, principle, or criterion by which something is judged", + "example_sentence_english": "The book is considered part of the literary canon.", + "pos": "noun", + "word_frequency": 4273 + }, + { + "word": "capability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability or power to do something", + "example_sentence_english": "The new software has enhanced capabilities.", + "pos": "noun", + "word_frequency": 4274 + }, + { + "word": "closure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act or process of closing something; a sense of resolution or conclusion", + "example_sentence_english": "The family sought closure after the long legal battle.", + "pos": "noun", + "word_frequency": 4276 + }, + { + "word": "cognitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving the mental processes of knowing, perceiving, remembering, and reasoning", + "example_sentence_english": "The study examined the cognitive development of children.", + "pos": "adjective", + "word_frequency": 4277 + }, + { + "word": "competitor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or organization competing with others for the same objective or for superiority in the same field of activity", + "example_sentence_english": "Our main competitor just released a similar product.", + "pos": "noun", + "word_frequency": 4278 + }, + { + "word": "defender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who defends someone or something", + "example_sentence_english": "The team's best defender blocked the shot.", + "pos": "noun", + "word_frequency": 4281 + }, + { + "word": "dental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to teeth or dentistry", + "example_sentence_english": "She has a dental appointment next week.", + "pos": "adjective", + "word_frequency": 4282 + }, + { + "word": "diplomatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to diplomacy; tactful", + "example_sentence_english": "He gave a diplomatic answer to avoid offending anyone.", + "pos": "adjective", + "word_frequency": 4283 + }, + { + "word": "drum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a musical instrument played by hitting it", + "example_sentence_english": "He learned to play the drum at a young age.", + "pos": "noun", + "word_frequency": 4284 + }, + { + "word": "editorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an article in a newspaper or magazine expressing the opinion of the editor or publisher", + "example_sentence_english": "The newspaper's editorial criticized the new policy.", + "pos": "noun", + "word_frequency": 4285 + }, + { + "word": "entertain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to provide amusement or enjoyment", + "example_sentence_english": "The clown entertained the children with his tricks.", + "pos": "verb", + "word_frequency": 4286 + }, + { + "word": "eternal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasting or existing forever; without end", + "example_sentence_english": "They swore eternal love to each other.", + "pos": "adjective", + "word_frequency": 4288 + }, + { + "word": "generic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not specific; characteristic of a whole group or class", + "example_sentence_english": "He bought the generic brand of cereal to save money.", + "pos": "adjective", + "word_frequency": 4289 + }, + { + "word": "grandma", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandmother", + "example_sentence_english": "My grandma bakes the best cookies.", + "pos": "noun", + "word_frequency": 4290 + }, + { + "word": "grip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a firm hold or grasp", + "example_sentence_english": "He lost his grip on the rope and fell.", + "pos": "noun", + "word_frequency": 4291 + }, + { + "word": "handful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small number or amount; a person or thing that is difficult to control", + "example_sentence_english": "Only a handful of students passed the difficult exam.", + "pos": "noun", + "word_frequency": 4292 + }, + { + "word": "happily", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a happy way", + "example_sentence_english": "They lived happily ever after.", + "pos": "adverb", + "word_frequency": 4293 + }, + { + "word": "harmony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement or concord; pleasing arrangement of parts", + "example_sentence_english": "The different cultures lived together in harmony.", + "pos": "noun", + "word_frequency": 4294 + }, + { + "word": "humble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing a modest or low estimate of one's own importance", + "example_sentence_english": "Despite his success, he remained a humble person.", + "pos": "adjective", + "word_frequency": 4296 + }, + { + "word": "hybrid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing made by combining two different elements", + "example_sentence_english": "The new car is a hybrid, running on both gasoline and electricity.", + "pos": "noun", + "word_frequency": 4297 + }, + { + "word": "keyboard", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a set of keys on a piano or computer", + "example_sentence_english": "She typed the letter on her computer keyboard.", + "pos": "noun", + "word_frequency": 4298 + }, + { + "word": "lasting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enduring or permanent", + "example_sentence_english": "Their friendship formed a lasting bond.", + "pos": "adjective", + "word_frequency": 4299 + }, + { + "word": "locally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in or to a particular area or neighborhood", + "example_sentence_english": "We try to buy our produce locally to support farmers.", + "pos": "adverb", + "word_frequency": 4300 + }, + { + "word": "mild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not severe, harsh, or extreme", + "example_sentence_english": "The weather was mild for this time of year.", + "pos": "adjective", + "word_frequency": 4301 + }, + { + "word": "minimal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of a minimum amount, quantity, or degree", + "example_sentence_english": "The damage to the car was minimal.", + "pos": "adjective", + "word_frequency": 4302 + }, + { + "word": "molecular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or consisting of molecules", + "example_sentence_english": "Scientists are studying the molecular structure of the virus.", + "pos": "adjective", + "word_frequency": 4303 + }, + { + "word": "noon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twelve o'clock in the daytime; midday", + "example_sentence_english": "Let's meet for lunch at noon.", + "pos": "noun", + "word_frequency": 4304 + }, + { + "word": "nowadays", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at the present time; in contrast with the past", + "example_sentence_english": "Nowadays, most people use smartphones.", + "pos": "adverb", + "word_frequency": 4305 + }, + { + "word": "openly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without concealment; frankly", + "example_sentence_english": "She spoke openly about her struggles.", + "pos": "adverb", + "word_frequency": 4306 + }, + { + "word": "overview", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a general review or summary of a subject", + "example_sentence_english": "The presentation provided a brief overview of the project.", + "pos": "noun", + "word_frequency": 4307 + }, + { + "word": "parish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small administrative district typically having its own church and a priest or pastor", + "example_sentence_english": "The local church serves the entire parish.", + "pos": "noun", + "word_frequency": 4309 + }, + { + "word": "pathetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arousing pity, especially through vulnerability or sadness; miserably inadequate", + "example_sentence_english": "His attempt to fix the car was pathetic.", + "pos": "adjective", + "word_frequency": 4310 + }, + { + "word": "potato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a starchy plant tuber eaten as a vegetable", + "example_sentence_english": "I like to eat baked potato with cheese.", + "pos": "noun", + "word_frequency": 4311 + }, + { + "word": "potter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes pottery", + "example_sentence_english": "The potter shaped the clay into a beautiful vase.", + "pos": "noun", + "word_frequency": 4312 + }, + { + "word": "preference", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a greater liking for one alternative over another", + "example_sentence_english": "Do you have a preference for tea or coffee?", + "pos": "noun", + "word_frequency": 4313 + }, + { + "word": "promising", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing signs of future success", + "example_sentence_english": "She is a promising young artist.", + "pos": "adjective", + "word_frequency": 4314 + }, + { + "word": "proportion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a part, share, or number considered in comparative relation to a whole", + "example_sentence_english": "The proportion of women in the workforce has increased.", + "pos": "noun", + "word_frequency": 4315 + }, + { + "word": "rage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violent uncontrollable anger", + "example_sentence_english": "He was filled with rage after hearing the news.", + "pos": "noun", + "word_frequency": 4316 + }, + { + "word": "restoration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of returning something to a former condition", + "example_sentence_english": "The restoration of the old painting took years.", + "pos": "noun", + "word_frequency": 4318 + }, + { + "word": "selfish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacking consideration for others; concerned chiefly with one's own personal profit or pleasure", + "example_sentence_english": "It was selfish of him to take the last piece of cake.", + "pos": "adjective", + "word_frequency": 4319 + }, + { + "word": "sergeant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a non-commissioned officer in the army or police force", + "example_sentence_english": "The sergeant gave orders to the new recruits.", + "pos": "noun", + "word_frequency": 4320 + }, + { + "word": "silk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a fine, strong, soft, lustrous fiber produced by silkworms", + "example_sentence_english": "She wore a beautiful silk scarf.", + "pos": "noun", + "word_frequency": 4321 + }, + { + "word": "stamp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small adhesive piece of paper affixed to a letter or parcel to show that postage has been paid", + "example_sentence_english": "Don't forget to put a stamp on the envelope.", + "pos": "noun", + "word_frequency": 4322 + }, + { + "word": "throne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a ceremonial chair for a sovereign, bishop, or other high dignitary", + "example_sentence_english": "The king sat on his golden throne.", + "pos": "noun", + "word_frequency": 4323 + }, + { + "word": "urge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try to persuade strongly", + "example_sentence_english": "I urge you to reconsider your decision.", + "pos": "verb", + "word_frequency": 4325 + }, + { + "word": "witch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woman thought to have magic powers, especially evil ones", + "example_sentence_english": "The old witch lived in a house made of gingerbread.", + "pos": "noun", + "word_frequency": 4327 + }, + { + "word": "archive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collection of historical documents or records", + "example_sentence_english": "We keep old records in the company archive.", + "pos": "noun", + "word_frequency": 4328 + }, + { + "word": "array", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an impressive display or range of a particular type of thing", + "example_sentence_english": "There was an impressive array of food at the buffet.", + "pos": "noun", + "word_frequency": 4329 + }, + { + "word": "belly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the front part of the human body below the chest, containing the stomach and bowels", + "example_sentence_english": "The baby lay on its belly.", + "pos": "noun", + "word_frequency": 4330 + }, + { + "word": "booth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small temporary tent or structure at a market, fair, or exhibition", + "example_sentence_english": "We waited in the voting booth to cast our ballots.", + "pos": "noun", + "word_frequency": 4331 + }, + { + "word": "breakdown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mechanical failure or a collapse of mental health", + "example_sentence_english": "The car had a breakdown on the highway.", + "pos": "noun", + "word_frequency": 4332 + }, + { + "word": "brutal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savagely violent", + "example_sentence_english": "The weather was brutal, with freezing winds and heavy snow.", + "pos": "adjective", + "word_frequency": 4333 + }, + { + "word": "calculate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "determine (the amount or number of something) mathematically", + "example_sentence_english": "Can you calculate the total cost for me.", + "pos": "verb", + "word_frequency": 4334 + }, + { + "word": "citizenship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the status of being a citizen of a particular country", + "example_sentence_english": "He applied for dual citizenship.", + "pos": "noun", + "word_frequency": 4336 + }, + { + "word": "cliff", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a steep rock face, especially at the edge of the sea", + "example_sentence_english": "They stood at the edge of the cliff, looking at the ocean.", + "pos": "noun", + "word_frequency": 4337 + }, + { + "word": "consensus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "general agreement", + "example_sentence_english": "After a long discussion, they reached a consensus.", + "pos": "noun", + "word_frequency": 4338 + }, + { + "word": "declaration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal or explicit statement or announcement", + "example_sentence_english": "The declaration of independence was signed in 1776.", + "pos": "noun", + "word_frequency": 4339 + }, + { + "word": "distinction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a difference or contrast between similar things or people", + "example_sentence_english": "There is a clear distinction between the two theories.", + "pos": "noun", + "word_frequency": 4342 + }, + { + "word": "donation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something given to a charity, especially a sum of money", + "example_sentence_english": "We made a donation to the local animal shelter.", + "pos": "noun", + "word_frequency": 4343 + }, + { + "word": "facial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of or relating to the face", + "example_sentence_english": "She received a facial massage at the spa.", + "pos": "adjective", + "word_frequency": 4344 + }, + { + "word": "faithful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loyal, true, and constant", + "example_sentence_english": "The dog was a faithful companion.", + "pos": "adjective", + "word_frequency": 4345 + }, + { + "word": "fatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing death", + "example_sentence_english": "The accident proved fatal for the driver.", + "pos": "adjective", + "word_frequency": 4346 + }, + { + "word": "fig", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft, sweet fruit with many small seeds, eaten fresh or dried", + "example_sentence_english": "I love eating fresh figs in the summer.", + "pos": "noun", + "word_frequency": 4347 + }, + { + "word": "fitting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small part used to join or connect other parts", + "example_sentence_english": "The plumber replaced the faulty pipe fitting.", + "pos": "noun", + "word_frequency": 4348 + }, + { + "word": "genuinely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a truly sincere or authentic way", + "example_sentence_english": "He genuinely apologized for his mistake.", + "pos": "adverb", + "word_frequency": 4349 + }, + { + "word": "hunger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a feeling of discomfort or weakness caused by lack of food", + "example_sentence_english": "After the long hike, he felt extreme hunger.", + "pos": "noun", + "word_frequency": 4351 + }, + { + "word": "hurricane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a storm with a violent wind, in particular a tropical cyclone in the Caribbean", + "example_sentence_english": "The hurricane caused widespread damage along the coast.", + "pos": "noun", + "word_frequency": 4352 + }, + { + "word": "implication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the conclusion that can be drawn from something although it is not explicitly stated", + "example_sentence_english": "The implication of his words was clear.", + "pos": "noun", + "word_frequency": 4353 + }, + { + "word": "import", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a commodity, article, or service brought in from abroad for sale", + "example_sentence_english": "The country relies heavily on oil imports.", + "pos": "noun", + "word_frequency": 4354 + }, + { + "word": "innovative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "featuring new methods, ideas, or products", + "example_sentence_english": "The company is known for its innovative designs.", + "pos": "adjective", + "word_frequency": 4355 + }, + { + "word": "jurisdiction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the official power to make legal decisions and judgments", + "example_sentence_english": "The case falls under the jurisdiction of the local court.", + "pos": "noun", + "word_frequency": 4357 + }, + { + "word": "laughter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the action or sound of laughing", + "example_sentence_english": "Her laughter filled the room with joy.", + "pos": "noun", + "word_frequency": 4358 + }, + { + "word": "lemon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a yellow, oval citrus fruit with thick skin and fragrant, acidic juice", + "example_sentence_english": "I like to add a slice of lemon to my tea.", + "pos": "noun", + "word_frequency": 4359 + }, + { + "word": "lung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an organ for breathing", + "example_sentence_english": "The doctor examined his lungs.", + "pos": "noun", + "word_frequency": 4361 + }, + { + "word": "matching", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corresponding in color, pattern, or style", + "example_sentence_english": "She bought a matching hat and scarf.", + "pos": "adjective", + "word_frequency": 4362 + }, + { + "word": "mighty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerful, strong", + "example_sentence_english": "The mighty river flowed through the valley.", + "pos": "adjective", + "word_frequency": 4363 + }, + { + "word": "monetary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to money or currency", + "example_sentence_english": "The company faced significant monetary challenges.", + "pos": "adjective", + "word_frequency": 4364 + }, + { + "word": "nutrition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of providing or obtaining the food necessary for health and growth", + "example_sentence_english": "Good nutrition is essential for a healthy lifestyle.", + "pos": "noun", + "word_frequency": 4365 + }, + { + "word": "ore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a naturally occurring solid material from which a metal or valuable mineral can be extracted", + "example_sentence_english": "Iron ore is a key component in steel production.", + "pos": "noun", + "word_frequency": 4366 + }, + { + "word": "pine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an evergreen coniferous tree", + "example_sentence_english": "The forest was filled with tall pine trees.", + "pos": "noun", + "word_frequency": 4369 + }, + { + "word": "poorly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a bad or inferior way", + "example_sentence_english": "He performed poorly on the exam.", + "pos": "adverb", + "word_frequency": 4370 + }, + { + "word": "pose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to present or constitute (a problem, danger, etc.)", + "example_sentence_english": "The new policy could pose a risk to small businesses.", + "pos": "verb", + "word_frequency": 4372 + }, + { + "word": "pour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to flow or cause to flow in a steady stream", + "example_sentence_english": "She poured water into the glass.", + "pos": "verb", + "word_frequency": 4373 + }, + { + "word": "purely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only, simply", + "example_sentence_english": "His decision was purely based on emotion.", + "pos": "adverb", + "word_frequency": 4374 + }, + { + "word": "rental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something that is rented, or the act of renting", + "example_sentence_english": "We picked up our car rental at the airport.", + "pos": "noun", + "word_frequency": 4376 + }, + { + "word": "seemingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparently, outwardly", + "example_sentence_english": "The task was seemingly simple, but it proved difficult.", + "pos": "adverb", + "word_frequency": 4377 + }, + { + "word": "severely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very seriously", + "example_sentence_english": "He was severely criticized for his actions.", + "pos": "adverb", + "word_frequency": 4378 + }, + { + "word": "shark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large predatory marine fish", + "example_sentence_english": "A shark was spotted near the beach.", + "pos": "noun", + "word_frequency": 4379 + }, + { + "word": "shocking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing a sudden, disturbing feeling of surprise or horror", + "example_sentence_english": "The news was absolutely shocking.", + "pos": "adjective", + "word_frequency": 4380 + }, + { + "word": "southwest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the direction or region between south and west", + "example_sentence_english": "They traveled to the southwest of the country.", + "pos": "noun", + "word_frequency": 4381 + }, + { + "word": "survivor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who remains alive after an event that could have killed them", + "example_sentence_english": "She was the sole survivor of the accident.", + "pos": "noun", + "word_frequency": 4383 + }, + { + "word": "technically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to the facts or the exact meaning of something", + "example_sentence_english": "Technically, the rule applies to everyone.", + "pos": "adverb", + "word_frequency": 4384 + }, + { + "word": "unlimited", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not limited or restricted", + "example_sentence_english": "The plan offers unlimited calls and data.", + "pos": "adjective", + "word_frequency": 4385 + }, + { + "word": "anxious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling or showing worry, nervousness, or unease", + "example_sentence_english": "She felt anxious about her upcoming exam.", + "pos": "adjective", + "word_frequency": 4386 + }, + { + "word": "bee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a stinging winged insect that collects nectar and pollen", + "example_sentence_english": "A bee buzzed around the flowers.", + "pos": "noun", + "word_frequency": 4387 + }, + { + "word": "bombing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of attacking a place with bombs", + "example_sentence_english": "The city suffered heavy bombing during the war.", + "pos": "noun", + "word_frequency": 4388 + }, + { + "word": "cafe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small restaurant selling light meals and drinks", + "example_sentence_english": "Let's meet at the cafe for coffee.", + "pos": "noun", + "word_frequency": 4389 + }, + { + "word": "cigarette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin cylinder of finely cut tobacco rolled in paper for smoking", + "example_sentence_english": "He lit a cigarette after dinner.", + "pos": "noun", + "word_frequency": 4391 + }, + { + "word": "cult", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of religious veneration and devotion directed toward a particular figure or object", + "example_sentence_english": "The documentary explored the history of the cult.", + "pos": "noun", + "word_frequency": 4393 + }, + { + "word": "dairy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "food made from milk", + "example_sentence_english": "She avoids dairy products due to an allergy.", + "pos": "noun", + "word_frequency": 4394 + }, + { + "word": "darling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a beloved person", + "example_sentence_english": "Come here, my darling.", + "pos": "noun", + "word_frequency": 4396 + }, + { + "word": "delight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to please greatly", + "example_sentence_english": "The news delighted everyone.", + "pos": "verb", + "word_frequency": 4397 + }, + { + "word": "diary", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a book in which one keeps a daily record of events and experiences", + "example_sentence_english": "She wrote her thoughts in her diary every night.", + "pos": "noun", + "word_frequency": 4398 + }, + { + "word": "disagree", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to have a different opinion", + "example_sentence_english": "I disagree with your point of view.", + "pos": "verb", + "word_frequency": 4399 + }, + { + "word": "drill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make a hole with a drill; to practice", + "example_sentence_english": "We need to drill a hole in the wall.", + "pos": "verb", + "word_frequency": 4400 + }, + { + "word": "euro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "European currency", + "example_sentence_english": "How many euros do you have?", + "pos": "noun", + "word_frequency": 4401 + }, + { + "word": "evolve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to develop gradually", + "example_sentence_english": "Species evolve over millions of years.", + "pos": "verb", + "word_frequency": 4402 + }, + { + "word": "forecast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a prediction of future events", + "example_sentence_english": "The weather forecast predicts rain tomorrow.", + "pos": "noun", + "word_frequency": 4404 + }, + { + "word": "governance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of governing", + "example_sentence_english": "Good governance is essential for a stable society.", + "pos": "noun", + "word_frequency": 4406 + }, + { + "word": "hug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to embrace", + "example_sentence_english": "She gave her friend a warm hug.", + "pos": "verb", + "word_frequency": 4407 + }, + { + "word": "importantly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an important manner", + "example_sentence_english": "More importantly, we need to finish this project on time.", + "pos": "adverb", + "word_frequency": 4408 + }, + { + "word": "indoor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "located or used inside a building", + "example_sentence_english": "We played indoor games because of the rain.", + "pos": "adjective", + "word_frequency": 4409 + }, + { + "word": "influential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having great influence", + "example_sentence_english": "She is an influential figure in the art world.", + "pos": "adjective", + "word_frequency": 4410 + }, + { + "word": "invisible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unable to be seen", + "example_sentence_english": "The tiny particles were invisible to the naked eye.", + "pos": "adjective", + "word_frequency": 4411 + }, + { + "word": "jeans", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "trousers made from denim", + "example_sentence_english": "I like to wear blue jeans.", + "pos": "noun", + "word_frequency": 4412 + }, + { + "word": "lawsuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a claim or dispute brought to a court of law", + "example_sentence_english": "The company faced a major lawsuit.", + "pos": "noun", + "word_frequency": 4415 + }, + { + "word": "leak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to escape or allow to escape through a hole", + "example_sentence_english": "The pipe started to leak.", + "pos": "verb", + "word_frequency": 4416 + }, + { + "word": "musician", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who plays a musical instrument", + "example_sentence_english": "My brother is a professional musician.", + "pos": "noun", + "word_frequency": 4419 + }, + { + "word": "olive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small oval fruit; a greenish-brown color", + "example_sentence_english": "I like olives in my salad.", + "pos": "noun", + "word_frequency": 4420 + }, + { + "word": "passionate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing strong feelings", + "example_sentence_english": "She is passionate about her work.", + "pos": "adjective", + "word_frequency": 4421 + }, + { + "word": "receiver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that receives something", + "example_sentence_english": "The receiver of the package signed for it.", + "pos": "noun", + "word_frequency": 4422 + }, + { + "word": "riot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a violent disturbance of the peace", + "example_sentence_english": "The police were called to control the riot.", + "pos": "noun", + "word_frequency": 4423 + }, + { + "word": "roster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a list of people or things", + "example_sentence_english": "Check the team roster for tomorrow's game.", + "pos": "noun", + "word_frequency": 4425 + }, + { + "word": "servant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who performs duties for others", + "example_sentence_english": "The old house had many servants.", + "pos": "noun", + "word_frequency": 4426 + }, + { + "word": "setup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way in which something is organized or arranged", + "example_sentence_english": "The setup of the new office is very efficient.", + "pos": "noun", + "word_frequency": 4427 + }, + { + "word": "skull", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bony framework enclosing the brain", + "example_sentence_english": "The human skull protects the brain.", + "pos": "noun", + "word_frequency": 4429 + }, + { + "word": "slot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, narrow opening", + "example_sentence_english": "Insert the coin into the slot.", + "pos": "noun", + "word_frequency": 4430 + }, + { + "word": "smash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break into pieces violently", + "example_sentence_english": "He accidentally smashed the glass.", + "pos": "verb", + "word_frequency": 4431 + }, + { + "word": "statue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a carved or cast figure of a person or animal", + "example_sentence_english": "There is a large statue in the park.", + "pos": "noun", + "word_frequency": 4432 + }, + { + "word": "surprisingly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an unexpected way", + "example_sentence_english": "Surprisingly, the weather was good today.", + "pos": "adverb", + "word_frequency": 4433 + }, + { + "word": "surrender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give up or yield", + "example_sentence_english": "The enemy decided to surrender.", + "pos": "verb", + "word_frequency": 4434 + }, + { + "word": "suspicious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing a cautious distrust of someone or something", + "example_sentence_english": "His behavior seemed very suspicious.", + "pos": "adjective", + "word_frequency": 4435 + }, + { + "word": "teenager", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person aged between 13 and 19 years", + "example_sentence_english": "My cousin is a teenager.", + "pos": "noun", + "word_frequency": 4436 + }, + { + "word": "tender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft or easily chewed; gentle and loving", + "example_sentence_english": "The meat was very tender.", + "pos": "adjective", + "word_frequency": 4437 + }, + { + "word": "thoroughly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a thorough manner; completely", + "example_sentence_english": "Please clean the room thoroughly.", + "pos": "adverb", + "word_frequency": 4438 + }, + { + "word": "vacuum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A space entirely devoid of matter.", + "example_sentence_english": "The vacuum cleaner picked up all the dust.", + "pos": "noun", + "word_frequency": 4440 + }, + { + "word": "variation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A change or difference.", + "example_sentence_english": "There is a lot of variation in the weather this week.", + "pos": "noun", + "word_frequency": 4441 + }, + { + "word": "allegation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A claim or assertion that someone has done something illegal or wrong, typically made without proof.", + "example_sentence_english": "The police are investigating an allegation of fraud.", + "pos": "noun", + "word_frequency": 4446 + }, + { + "word": "anticipate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To expect or predict.", + "example_sentence_english": "We anticipate a busy holiday season.", + "pos": "verb", + "word_frequency": 4447 + }, + { + "word": "architect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who designs buildings.", + "example_sentence_english": "The architect presented the plans for the new library.", + "pos": "noun", + "word_frequency": 4448 + }, + { + "word": "basin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A wide, shallow container for holding liquids.", + "example_sentence_english": "She washed her hands in the basin.", + "pos": "noun", + "word_frequency": 4449 + }, + { + "word": "beneficial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Favorable or advantageous.", + "example_sentence_english": "Regular exercise is beneficial for your health.", + "pos": "adjective", + "word_frequency": 4450 + }, + { + "word": "bleed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To lose blood.", + "example_sentence_english": "His nose started to bleed after the fall.", + "pos": "verb", + "word_frequency": 4451 + }, + { + "word": "breed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To reproduce or cause to reproduce.", + "example_sentence_english": "Many animals breed in the spring.", + "pos": "verb", + "word_frequency": 4452 + }, + { + "word": "breeding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The producing of offspring.", + "example_sentence_english": "The breeding season for birds is usually in spring.", + "pos": "noun", + "word_frequency": 4453 + }, + { + "word": "bride", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A woman on her wedding day.", + "example_sentence_english": "The bride looked beautiful in her white dress.", + "pos": "noun", + "word_frequency": 4454 + }, + { + "word": "bud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small protuberance on a plant that develops into a flower, leaf, or shoot.", + "example_sentence_english": "The rose bush is full of new buds.", + "pos": "noun", + "word_frequency": 4456 + }, + { + "word": "butler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The chief male servant of a house.", + "example_sentence_english": "The butler announced dinner was served.", + "pos": "noun", + "word_frequency": 4457 + }, + { + "word": "cartoon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A motion picture using animation techniques.", + "example_sentence_english": "My children love watching cartoons on Saturday mornings.", + "pos": "noun", + "word_frequency": 4458 + }, + { + "word": "chick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A young bird, especially one newly hatched.", + "example_sentence_english": "The hen had five fluffy chicks.", + "pos": "noun", + "word_frequency": 4459 + }, + { + "word": "comparable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Able to be compared.", + "example_sentence_english": "The two products are comparable in quality.", + "pos": "adjective", + "word_frequency": 4461 + }, + { + "word": "confirmation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of confirming something.", + "example_sentence_english": "We are waiting for confirmation of our flight details.", + "pos": "noun", + "word_frequency": 4462 + }, + { + "word": "console", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To comfort someone at a time of grief or disappointment.", + "example_sentence_english": "She tried to console her friend after the bad news.", + "pos": "verb", + "word_frequency": 4463 + }, + { + "word": "contractor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person or company that undertakes a contract to provide materials or labor to perform a service or do a job.", + "example_sentence_english": "We hired a contractor to renovate our kitchen.", + "pos": "noun", + "word_frequency": 4464 + }, + { + "word": "diameter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A straight line passing from side to side through the center of a body or figure, especially a circle or sphere.", + "example_sentence_english": "The diameter of the circle is 10 centimeters.", + "pos": "noun", + "word_frequency": 4465 + }, + { + "word": "dump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To drop or let fall.", + "example_sentence_english": "He dumped the rubbish in the bin.", + "pos": "verb", + "word_frequency": 4468 + }, + { + "word": "duo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A pair of people or things, especially in music or entertainment.", + "example_sentence_english": "The musical duo performed a beautiful song.", + "pos": "noun", + "word_frequency": 4469 + }, + { + "word": "elephant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "A very large plant-eating mammal with a trunk, tusks, and large ears.", + "example_sentence_english": "We saw an elephant at the zoo.", + "pos": "noun", + "word_frequency": 4470 + }, + { + "word": "enhance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To intensify, increase, or further improve the quality, value, or extent of.", + "example_sentence_english": "This software can enhance the quality of your photos.", + "pos": "verb", + "word_frequency": 4471 + }, + { + "word": "exhaust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To use up or tire out completely.", + "example_sentence_english": "The long hike completely exhausted us.", + "pos": "verb", + "word_frequency": 4472 + }, + { + "word": "fabric", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cloth produced by weaving or knitting fibers.", + "example_sentence_english": "This dress is made from a soft cotton fabric.", + "pos": "noun", + "word_frequency": 4473 + }, + { + "word": "fabulous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Extraordinary, especially in being very good or impressive.", + "example_sentence_english": "You look absolutely fabulous in that outfit!", + "pos": "adjective", + "word_frequency": 4474 + }, + { + "word": "fairy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A small, imaginary being of human form, with magical powers.", + "example_sentence_english": "Children often believe in tooth fairies.", + "pos": "noun", + "word_frequency": 4475 + }, + { + "word": "fold", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "To bend something over on itself so that part of it covers another part.", + "example_sentence_english": "Please fold your clothes neatly.", + "pos": "verb", + "word_frequency": 4476 + }, + { + "word": "freak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person, animal, or plant with an unusual physical abnormality.", + "example_sentence_english": "He's a real fitness freak.", + "pos": "noun", + "word_frequency": 4477 + }, + { + "word": "frustrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To prevent (someone) from progressing, succeeding, or fulfilling something.", + "example_sentence_english": "It frustrates me when I can't solve a problem.", + "pos": "verb", + "word_frequency": 4478 + }, + { + "word": "gambling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The activity of playing games of chance for money.", + "example_sentence_english": "He lost a lot of money due to his gambling habit.", + "pos": "noun", + "word_frequency": 4479 + }, + { + "word": "gently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a gentle manner", + "example_sentence_english": "She gently closed the door.", + "pos": "adverb", + "word_frequency": 4480 + }, + { + "word": "glorious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnificent; splendid", + "example_sentence_english": "They celebrated a glorious victory.", + "pos": "adjective", + "word_frequency": 4481 + }, + { + "word": "grief", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intense sorrow", + "example_sentence_english": "He felt deep grief after the loss.", + "pos": "noun", + "word_frequency": 4482 + }, + { + "word": "historically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to history", + "example_sentence_english": "Historically, this region was very important.", + "pos": "adverb", + "word_frequency": 4484 + }, + { + "word": "hub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a central point of activity", + "example_sentence_english": "The city is a major transport hub.", + "pos": "noun", + "word_frequency": 4485 + }, + { + "word": "inevitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certain to happen", + "example_sentence_english": "Change is an inevitable part of life.", + "pos": "adjective", + "word_frequency": 4487 + }, + { + "word": "layout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way things are arranged", + "example_sentence_english": "I like the layout of the new office.", + "pos": "noun", + "word_frequency": 4489 + }, + { + "word": "lodge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small house, especially in the countryside", + "example_sentence_english": "We stayed in a hunting lodge.", + "pos": "noun", + "word_frequency": 4490 + }, + { + "word": "merchant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person involved in wholesale trade", + "example_sentence_english": "The merchant sold spices and textiles.", + "pos": "noun", + "word_frequency": 4491 + }, + { + "word": "merit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worth or excellence", + "example_sentence_english": "The proposal has considerable merit.", + "pos": "noun", + "word_frequency": 4492 + }, + { + "word": "myth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a traditional story; a widely held but false belief", + "example_sentence_english": "The story of Atlantis is a famous myth.", + "pos": "noun", + "word_frequency": 4494 + }, + { + "word": "obsess", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to preoccupy or fill the mind of (someone) continually and to a troubling extent", + "example_sentence_english": "Don't obsess over small details.", + "pos": "verb", + "word_frequency": 4496 + }, + { + "word": "organise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrange or put in order", + "example_sentence_english": "We need to organise the event.", + "pos": "verb", + "word_frequency": 4497 + }, + { + "word": "overwhelm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defeat or overcome completely; to affect strongly", + "example_sentence_english": "The task might overwhelm him.", + "pos": "verb", + "word_frequency": 4498 + }, + { + "word": "pale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light in color or shade; (of a person's face) having less color than usual", + "example_sentence_english": "She looked pale after the long flight.", + "pos": "adjective", + "word_frequency": 4499 + }, + { + "word": "particle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tiny portion of matter; a minor part of speech", + "example_sentence_english": "Dust particles were floating in the air.", + "pos": "noun", + "word_frequency": 4500 + }, + { + "word": "pastor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a minister in charge of a Christian church or congregation", + "example_sentence_english": "The pastor delivered a sermon.", + "pos": "noun", + "word_frequency": 4501 + }, + { + "word": "permanently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that lasts or remains unchanged indefinitely", + "example_sentence_english": "He moved permanently to Canada.", + "pos": "adverb", + "word_frequency": 4502 + }, + { + "word": "poison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance that causes illness or death when eaten or absorbed", + "example_sentence_english": "Be careful, that plant contains poison.", + "pos": "noun", + "word_frequency": 4503 + }, + { + "word": "provincial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or concerning a province of a country or empire; unsophisticated or narrow-minded", + "example_sentence_english": "She found the small town rather provincial.", + "pos": "adjective", + "word_frequency": 4504 + }, + { + "word": "rebel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who rises in opposition or armed resistance against an established government or ruler", + "example_sentence_english": "The rebels fought for their freedom.", + "pos": "noun", + "word_frequency": 4505 + }, + { + "word": "rotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of rotating around an axis or center", + "example_sentence_english": "The Earth's rotation causes day and night.", + "pos": "noun", + "word_frequency": 4506 + }, + { + "word": "separately", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apart from others", + "example_sentence_english": "They decided to work separately.", + "pos": "adverb", + "word_frequency": 4507 + }, + { + "word": "subtle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "so delicate or precise as to be difficult to analyze or describe", + "example_sentence_english": "She noticed a subtle change in his mood.", + "pos": "adjective", + "word_frequency": 4509 + }, + { + "word": "toll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a charge payable for permission to use a bridge or road; the number of deaths or casualties", + "example_sentence_english": "The accident took a heavy toll.", + "pos": "noun", + "word_frequency": 4510 + }, + { + "word": "tragic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing or characterized by extreme distress or sorrow", + "example_sentence_english": "It was a tragic accident.", + "pos": "adjective", + "word_frequency": 4511 + }, + { + "word": "trainer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who trains people or animals; a type of soft shoe suitable for sports", + "example_sentence_english": "The dog trainer taught the puppy new tricks.", + "pos": "noun", + "word_frequency": 4512 + }, + { + "word": "transform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a thorough or dramatic change in the form, appearance, or character of", + "example_sentence_english": "Technology can transform our lives.", + "pos": "verb", + "word_frequency": 4513 + }, + { + "word": "unbelievable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not able to be believed; astonishing", + "example_sentence_english": "The story was absolutely unbelievable.", + "pos": "adjective", + "word_frequency": 4514 + }, + { + "word": "underneath", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directly below", + "example_sentence_english": "The cat was hiding underneath the bed.", + "pos": "adverb", + "word_frequency": 4515 + }, + { + "word": "viral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or caused by a virus; circulated rapidly and widely on the internet", + "example_sentence_english": "The video went viral overnight.", + "pos": "adjective", + "word_frequency": 4516 + }, + { + "word": "warehouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large building for storing goods", + "example_sentence_english": "The company stores its products in a large warehouse.", + "pos": "noun", + "word_frequency": 4517 + }, + { + "word": "widow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who has lost her husband by death and has not remarried", + "example_sentence_english": "The old widow lived alone.", + "pos": "noun", + "word_frequency": 4518 + }, + { + "word": "administrator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person responsible for running a business, organization, etc.", + "example_sentence_english": "The system administrator fixed the network issue quickly.", + "pos": "noun", + "word_frequency": 4520 + }, + { + "word": "allied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joined by agreement; related", + "example_sentence_english": "The allied forces worked together to achieve their goal.", + "pos": "adjective", + "word_frequency": 4521 + }, + { + "word": "altogether", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely; in total", + "example_sentence_english": "It was an altogether different experience than I expected.", + "pos": "adverb", + "word_frequency": 4522 + }, + { + "word": "animate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bring to life; give spirit to", + "example_sentence_english": "The artist used special effects to animate the characters.", + "pos": "verb", + "word_frequency": 4523 + }, + { + "word": "assess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluate or estimate the nature, ability, or quality of", + "example_sentence_english": "We need to assess the risks before making a decision.", + "pos": "verb", + "word_frequency": 4524 + }, + { + "word": "assumption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that is accepted as true or as certain to happen, without proof", + "example_sentence_english": "Your assumption about the project's timeline was incorrect.", + "pos": "noun", + "word_frequency": 4525 + }, + { + "word": "assure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tell someone something positively to remove any doubt", + "example_sentence_english": "I can assure you that the information is accurate.", + "pos": "verb", + "word_frequency": 4526 + }, + { + "word": "basket", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a container made of woven material", + "example_sentence_english": "She put the apples in the basket.", + "pos": "noun", + "word_frequency": 4528 + }, + { + "word": "beard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hair growing on the chin and cheeks of an adult man", + "example_sentence_english": "My grandfather has a long white beard.", + "pos": "noun", + "word_frequency": 4529 + }, + { + "word": "bio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short biography or biographical sketch", + "example_sentence_english": "Read my bio on the company website to learn more about me.", + "pos": "noun", + "word_frequency": 4530 + }, + { + "word": "blanket", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large piece of woolen or similar material used as a covering", + "example_sentence_english": "I pulled the blanket over me to stay warm.", + "pos": "noun", + "word_frequency": 4531 + }, + { + "word": "bucket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a roughly cylindrical open container with a handle", + "example_sentence_english": "He filled the bucket with water from the well.", + "pos": "noun", + "word_frequency": 4532 + }, + { + "word": "burger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a patty of ground meat, typically beef, served in a bun", + "example_sentence_english": "I ordered a cheeseburger and fries for lunch.", + "pos": "noun", + "word_frequency": 4533 + }, + { + "word": "charming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasant or attractive", + "example_sentence_english": "The old village was very charming with its narrow streets.", + "pos": "adjective", + "word_frequency": 4534 + }, + { + "word": "compute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calculate or reckon (a figure or amount)", + "example_sentence_english": "The software can compute complex equations in seconds.", + "pos": "verb", + "word_frequency": 4535 + }, + { + "word": "concentrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "focus all one's attention on a particular object or activity", + "example_sentence_english": "It's hard to concentrate with all this noise.", + "pos": "verb", + "word_frequency": 4536 + }, + { + "word": "continent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "any of the world's main continuous expanses of land", + "example_sentence_english": "Africa is the second-largest continent.", + "pos": "noun", + "word_frequency": 4537 + }, + { + "word": "curse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utter offensive words; invoke evil upon", + "example_sentence_english": "He would often curse under his breath when things went wrong.", + "pos": "verb", + "word_frequency": 4539 + }, + { + "word": "drain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cause the water or other liquid in (something) to run out", + "example_sentence_english": "Please drain the pasta before adding the sauce.", + "pos": "verb", + "word_frequency": 4540 + }, + { + "word": "emission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the production and discharge of something, especially gas or radiation", + "example_sentence_english": "Car manufacturers are working to reduce harmful emissions.", + "pos": "noun", + "word_frequency": 4541 + }, + { + "word": "ethical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to moral principles or the branch of knowledge dealing with these", + "example_sentence_english": "We must ensure that our business practices are ethical.", + "pos": "adjective", + "word_frequency": 4542 + }, + { + "word": "excellence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being outstanding or extremely good", + "example_sentence_english": "The company strives for excellence in all its products.", + "pos": "noun", + "word_frequency": 4543 + }, + { + "word": "flame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hot glowing body of ignited gas that is generated by something on fire", + "example_sentence_english": "The candle's flame flickered in the breeze.", + "pos": "noun", + "word_frequency": 4544 + }, + { + "word": "freely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without restriction or impediment", + "example_sentence_english": "You can speak freely about your concerns.", + "pos": "adverb", + "word_frequency": 4545 + }, + { + "word": "graduation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the successful completion of a course of study", + "example_sentence_english": "Her graduation ceremony is next month.", + "pos": "noun", + "word_frequency": 4546 + }, + { + "word": "hint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a slight indication or suggestion", + "example_sentence_english": "She gave me a hint about the answer to the puzzle.", + "pos": "noun", + "word_frequency": 4547 + }, + { + "word": "horizon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the line at which the earth's surface and the sky appear to meet", + "example_sentence_english": "The sun dipped below the horizon.", + "pos": "noun", + "word_frequency": 4548 + }, + { + "word": "hostile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfriendly; antagonistic", + "example_sentence_english": "The crowd became hostile after the announcement.", + "pos": "adjective", + "word_frequency": 4549 + }, + { + "word": "inhabitant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or animal that lives in or occupies a place", + "example_sentence_english": "The island's inhabitants rely on fishing for their livelihood.", + "pos": "noun", + "word_frequency": 4550 + }, + { + "word": "ink", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a colored fluid used for writing, drawing, or printing", + "example_sentence_english": "The printer is running low on ink.", + "pos": "noun", + "word_frequency": 4551 + }, + { + "word": "inn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public house providing food, drink, and lodging for travelers", + "example_sentence_english": "We stayed at a charming old inn during our trip.", + "pos": "noun", + "word_frequency": 4552 + }, + { + "word": "intel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intelligence information, especially of a military or political nature", + "example_sentence_english": "We received some valuable intel about the competitor's plans.", + "pos": "noun", + "word_frequency": 4553 + }, + { + "word": "matrix", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rectangular array of quantities or expressions arranged in rows and columns", + "example_sentence_english": "The data was organized into a complex matrix.", + "pos": "noun", + "word_frequency": 4556 + }, + { + "word": "miserable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wretchedly unhappy or uncomfortable", + "example_sentence_english": "I felt miserable after catching the flu.", + "pos": "adjective", + "word_frequency": 4557 + }, + { + "word": "momentum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quantity of motion of a moving body; the impetus gained by a moving object", + "example_sentence_english": "The team gained momentum in the second half of the game.", + "pos": "noun", + "word_frequency": 4558 + }, + { + "word": "monkey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a primate typically having a long tail and living in trees", + "example_sentence_english": "The monkey swung from tree to tree in the jungle.", + "pos": "noun", + "word_frequency": 4559 + }, + { + "word": "motorcycle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorcycle", + "example_sentence_english": "He rides a powerful motorcycle.", + "pos": "noun", + "word_frequency": 4561 + }, + { + "word": "nationwide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationwide", + "example_sentence_english": "The company launched a nationwide advertising campaign.", + "pos": "adjective", + "word_frequency": 4562 + }, + { + "word": "nest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nest", + "example_sentence_english": "The bird built a nest in the tree.", + "pos": "noun", + "word_frequency": 4563 + }, + { + "word": "nicely", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nicely", + "example_sentence_english": "She sings very nicely.", + "pos": "adverb", + "word_frequency": 4565 + }, + { + "word": "ninth", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ninth", + "example_sentence_english": "He finished in ninth place.", + "pos": "numeral", + "word_frequency": 4566 + }, + { + "word": "nomination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nomination", + "example_sentence_english": "Her nomination for the award was well-deserved.", + "pos": "noun", + "word_frequency": 4567 + }, + { + "word": "notable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notable", + "example_sentence_english": "She made a notable contribution to the project.", + "pos": "adjective", + "word_frequency": 4568 + }, + { + "word": "obligation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligation", + "example_sentence_english": "He felt an obligation to help his family.", + "pos": "noun", + "word_frequency": 4569 + }, + { + "word": "optical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optical", + "example_sentence_english": "The optician checked his optical health.", + "pos": "adjective", + "word_frequency": 4570 + }, + { + "word": "outlook", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outlook", + "example_sentence_english": "The economic outlook for next year is positive.", + "pos": "noun", + "word_frequency": 4571 + }, + { + "word": "penny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "penny", + "example_sentence_english": "I found a shiny penny on the sidewalk.", + "pos": "noun", + "word_frequency": 4572 + }, + { + "word": "petty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petty", + "example_sentence_english": "Don't argue over such petty matters.", + "pos": "adjective", + "word_frequency": 4573 + }, + { + "word": "phd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "PhD (Doctor of Philosophy)", + "example_sentence_english": "She is currently working on her PhD.", + "pos": "noun", + "word_frequency": 4574 + }, + { + "word": "quantity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quantity", + "example_sentence_english": "We need a large quantity of materials for the project.", + "pos": "noun", + "word_frequency": 4575 + }, + { + "word": "quantum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantum", + "example_sentence_english": "Quantum physics is a complex field of study.", + "pos": "noun", + "word_frequency": 4576 + }, + { + "word": "rainbow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rainbow", + "example_sentence_english": "After the rain, a beautiful rainbow appeared.", + "pos": "noun", + "word_frequency": 4577 + }, + { + "word": "recognise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recognize", + "example_sentence_english": "I didn't recognise him at first.", + "pos": "verb", + "word_frequency": 4578 + }, + { + "word": "reed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reed", + "example_sentence_english": "The ducks hid among the tall reeds by the river.", + "pos": "noun", + "word_frequency": 4579 + }, + { + "word": "reign", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reign", + "example_sentence_english": "Queen Victoria reigned for over 60 years.", + "pos": "verb", + "word_frequency": 4580 + }, + { + "word": "scan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scan", + "example_sentence_english": "Please scan this document and email it to me.", + "pos": "verb", + "word_frequency": 4581 + }, + { + "word": "shorts", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shorts", + "example_sentence_english": "It's hot, so I'm wearing shorts today.", + "pos": "noun", + "word_frequency": 4582 + }, + { + "word": "span", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "span", + "example_sentence_english": "The bridge spans the river.", + "pos": "verb", + "word_frequency": 4583 + }, + { + "word": "specialize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialize", + "example_sentence_english": "She specializes in ancient history.", + "pos": "verb", + "word_frequency": 4584 + }, + { + "word": "submission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submission", + "example_sentence_english": "The deadline for essay submission is Friday.", + "pos": "noun", + "word_frequency": 4586 + }, + { + "word": "sunny", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sunny", + "example_sentence_english": "It's a beautiful sunny day.", + "pos": "adjective", + "word_frequency": 4587 + }, + { + "word": "testament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testament", + "example_sentence_english": "His success is a testament to his hard work.", + "pos": "noun", + "word_frequency": 4589 + }, + { + "word": "toe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toe", + "example_sentence_english": "I stubbed my toe on the table leg.", + "pos": "noun", + "word_frequency": 4590 + }, + { + "word": "tremendous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tremendous", + "example_sentence_english": "They made a tremendous effort to finish on time.", + "pos": "adjective", + "word_frequency": 4591 + }, + { + "word": "accommodation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accommodation", + "example_sentence_english": "We found cheap accommodation near the beach.", + "pos": "noun", + "word_frequency": 4593 + }, + { + "word": "adorable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adorable", + "example_sentence_english": "The puppy was absolutely adorable.", + "pos": "adjective", + "word_frequency": 4594 + }, + { + "word": "allegedly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegedly", + "example_sentence_english": "He allegedly committed the crime.", + "pos": "adverb", + "word_frequency": 4595 + }, + { + "word": "ambulance", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ambulance", + "example_sentence_english": "An ambulance arrived quickly at the scene.", + "pos": "noun", + "word_frequency": 4596 + }, + { + "word": "ashamed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ashamed", + "example_sentence_english": "She felt ashamed of her behavior.", + "pos": "adjective", + "word_frequency": 4598 + }, + { + "word": "ballot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of voting", + "example_sentence_english": "The citizens cast their ballots in the election.", + "pos": "noun", + "word_frequency": 4600 + }, + { + "word": "blessing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a divine favor or gift", + "example_sentence_english": "Her recovery was a true blessing.", + "pos": "noun", + "word_frequency": 4601 + }, + { + "word": "cemetery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a burial ground", + "example_sentence_english": "They visited the cemetery to pay their respects.", + "pos": "noun", + "word_frequency": 4603 + }, + { + "word": "compact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "densely packed; small", + "example_sentence_english": "The car was very compact, making it easy to park.", + "pos": "adjective", + "word_frequency": 4605 + }, + { + "word": "consult", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to seek advice or information from", + "example_sentence_english": "You should consult a doctor if the pain continues.", + "pos": "verb", + "word_frequency": 4606 + }, + { + "word": "deficit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shortfall or lack", + "example_sentence_english": "The country is facing a large budget deficit.", + "pos": "noun", + "word_frequency": 4608 + }, + { + "word": "demon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an evil spirit or devil", + "example_sentence_english": "According to the legend, a demon guarded the treasure.", + "pos": "noun", + "word_frequency": 4610 + }, + { + "word": "demonstration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of showing or proving something", + "example_sentence_english": "The scientist gave a demonstration of the new experiment.", + "pos": "noun", + "word_frequency": 4611 + }, + { + "word": "detect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discover or identify the presence of", + "example_sentence_english": "The security system can detect any unauthorized entry.", + "pos": "verb", + "word_frequency": 4612 + }, + { + "word": "detection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of detecting something", + "example_sentence_english": "Early detection of the disease can save lives.", + "pos": "noun", + "word_frequency": 4613 + }, + { + "word": "doll", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a toy figure of a human", + "example_sentence_english": "The child played with her new doll.", + "pos": "noun", + "word_frequency": 4614 + }, + { + "word": "donate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give money or goods for a good cause", + "example_sentence_english": "Many people choose to donate blood regularly.", + "pos": "verb", + "word_frequency": 4615 + }, + { + "word": "elaborate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detailed and complicated in design or planning", + "example_sentence_english": "She wore an elaborate dress to the party.", + "pos": "adjective", + "word_frequency": 4616 + }, + { + "word": "elder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of a greater age", + "example_sentence_english": "My elder sister is a doctor.", + "pos": "adjective", + "word_frequency": 4617 + }, + { + "word": "expertise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expert skill or knowledge", + "example_sentence_english": "He has great expertise in computer programming.", + "pos": "noun", + "word_frequency": 4618 + }, + { + "word": "fiber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thread or filament from which a textile is made", + "example_sentence_english": "Eating enough fiber is important for digestion.", + "pos": "noun", + "word_frequency": 4620 + }, + { + "word": "fry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cook in hot fat or oil", + "example_sentence_english": "She decided to fry some eggs for breakfast.", + "pos": "verb", + "word_frequency": 4621 + }, + { + "word": "grocery", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "food and household supplies", + "example_sentence_english": "I need to go to the store to buy groceries.", + "pos": "noun", + "word_frequency": 4622 + }, + { + "word": "halfway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at the midpoint between two points", + "example_sentence_english": "We stopped halfway through the journey for a break.", + "pos": "adverb", + "word_frequency": 4624 + }, + { + "word": "heel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the back part of the human foot", + "example_sentence_english": "She wore shoes with high heels.", + "pos": "noun", + "word_frequency": 4625 + }, + { + "word": "hull", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main body or frame of a ship or boat", + "example_sentence_english": "The ship's hull was damaged in the storm.", + "pos": "noun", + "word_frequency": 4627 + }, + { + "word": "independently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without relying on others", + "example_sentence_english": "She learned to work independently.", + "pos": "adverb", + "word_frequency": 4628 + }, + { + "word": "indication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sign or piece of information that indicates something", + "example_sentence_english": "There was no indication of a problem.", + "pos": "noun", + "word_frequency": 4629 + }, + { + "word": "insist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demand forcefully", + "example_sentence_english": "He insisted on paying for the meal.", + "pos": "verb", + "word_frequency": 4630 + }, + { + "word": "intensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concentrated on a single area or subject", + "example_sentence_english": "The course was very intensive, covering a lot of material.", + "pos": "adjective", + "word_frequency": 4631 + }, + { + "word": "interactive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allowing a two-way flow of information", + "example_sentence_english": "The museum has many interactive exhibits.", + "pos": "adjective", + "word_frequency": 4632 + }, + { + "word": "intimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closely acquainted; private and personal", + "example_sentence_english": "They shared an intimate moment together.", + "pos": "adjective", + "word_frequency": 4633 + }, + { + "word": "laundry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clothes and linens that need to be washed", + "example_sentence_english": "I need to do the laundry this weekend.", + "pos": "noun", + "word_frequency": 4634 + }, + { + "word": "martial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of or appropriate to war; warlike", + "example_sentence_english": "He practices martial arts every day.", + "pos": "adjective", + "word_frequency": 4637 + }, + { + "word": "northeast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the direction between north and east", + "example_sentence_english": "The storm is moving towards the northeast.", + "pos": "noun", + "word_frequency": 4639 + }, + { + "word": "password", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a secret word or phrase that must be used to gain admission to something", + "example_sentence_english": "You need to enter your password to log in.", + "pos": "noun", + "word_frequency": 4640 + }, + { + "word": "politically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a political manner", + "example_sentence_english": "The decision was politically motivated.", + "pos": "adverb", + "word_frequency": 4642 + }, + { + "word": "presumably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by reasonable assumption", + "example_sentence_english": "Presumably, he's still at work.", + "pos": "adv", + "word_frequency": 4643 + }, + { + "word": "pronounce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make the sound of a word or letter", + "example_sentence_english": "How do you pronounce this word?", + "pos": "v", + "word_frequency": 4644 + }, + { + "word": "prosecution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the institution and conduct of legal proceedings against someone", + "example_sentence_english": "The prosecution presented strong evidence.", + "pos": "n", + "word_frequency": 4645 + }, + { + "word": "pulse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rhythmic throbbing of the arteries", + "example_sentence_english": "The doctor checked her pulse.", + "pos": "n", + "word_frequency": 4646 + }, + { + "word": "rational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based on or in accordance with reason or logic", + "example_sentence_english": "Try to be rational about this decision.", + "pos": "adj", + "word_frequency": 4647 + }, + { + "word": "realm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a kingdom; a field or domain of activity or interest", + "example_sentence_english": "This issue is outside my realm of expertise.", + "pos": "n", + "word_frequency": 4648 + }, + { + "word": "rope", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a length of strong cord", + "example_sentence_english": "He tied the boat with a thick rope.", + "pos": "n", + "word_frequency": 4649 + }, + { + "word": "shout", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a loud cry", + "example_sentence_english": "We heard a shout from the crowd.", + "pos": "n", + "word_frequency": 4650 + }, + { + "word": "smartphone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a mobile phone that performs many of the functions of a computer", + "example_sentence_english": "I use my smartphone for everything.", + "pos": "n", + "word_frequency": 4652 + }, + { + "word": "specify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state a fact or requirement clearly and precisely", + "example_sentence_english": "Please specify your preferred delivery date.", + "pos": "v", + "word_frequency": 4653 + }, + { + "word": "spectacular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beautiful in a dramatic and eye-catching way", + "example_sentence_english": "The view from the mountain was spectacular.", + "pos": "adj", + "word_frequency": 4654 + }, + { + "word": "streak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, thin mark or stripe; a continuous period of success or failure", + "example_sentence_english": "He's on a winning streak.", + "pos": "n", + "word_frequency": 4656 + }, + { + "word": "subscription", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an amount of money that you pay regularly to receive a product or service", + "example_sentence_english": "My magazine subscription expires next month.", + "pos": "n", + "word_frequency": 4657 + }, + { + "word": "technological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or involving technology", + "example_sentence_english": "We live in a rapidly advancing technological age.", + "pos": "adj", + "word_frequency": 4658 + }, + { + "word": "temporarily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for a limited period of time", + "example_sentence_english": "The office is temporarily closed.", + "pos": "adv", + "word_frequency": 4659 + }, + { + "word": "tolerance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability or willingness to tolerate the existence of opinions or behavior that one dislikes or disagrees with", + "example_sentence_english": "We need to show more tolerance towards different cultures.", + "pos": "n", + "word_frequency": 4660 + }, + { + "word": "traditionally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "according to tradition", + "example_sentence_english": "Traditionally, we have turkey for Christmas.", + "pos": "adv", + "word_frequency": 4661 + }, + { + "word": "unhappy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not happy", + "example_sentence_english": "She was unhappy with the results.", + "pos": "adj", + "word_frequency": 4662 + }, + { + "word": "adequate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfactory or acceptable in quality or quantity", + "example_sentence_english": "The food supply was adequate for everyone.", + "pos": "adj", + "word_frequency": 4664 + }, + { + "word": "alter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to change or cause to change in character or composition", + "example_sentence_english": "We had to alter our plans.", + "pos": "v", + "word_frequency": 4665 + }, + { + "word": "apology", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a regretful acknowledgment of an offense or failure", + "example_sentence_english": "He offered a sincere apology.", + "pos": "n", + "word_frequency": 4666 + }, + { + "word": "attribute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to regard something as being caused by", + "example_sentence_english": "She attributed her success to hard work.", + "pos": "v", + "word_frequency": 4668 + }, + { + "word": "beg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ask (someone) earnestly or humbly for something", + "example_sentence_english": "He begged for forgiveness.", + "pos": "v", + "word_frequency": 4669 + }, + { + "word": "bout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short period of intense activity of a specified kind", + "example_sentence_english": "He suffered a severe bout of flu.", + "pos": "n", + "word_frequency": 4670 + }, + { + "word": "brass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a yellow alloy of copper and zinc", + "example_sentence_english": "The statue was made of brass.", + "pos": "n", + "word_frequency": 4671 + }, + { + "word": "buzz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a low, continuous humming or murmuring sound", + "example_sentence_english": "I heard a buzz from the beehive.", + "pos": "n", + "word_frequency": 4672 + }, + { + "word": "comeback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a return to a former position of success or popularity", + "example_sentence_english": "The band made a great comeback.", + "pos": "n", + "word_frequency": 4674 + }, + { + "word": "diagnose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to identify the nature of an illness or other problem by examination of the symptoms", + "example_sentence_english": "The doctor diagnosed her with a cold.", + "pos": "v", + "word_frequency": 4676 + }, + { + "word": "diesel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of heavy oil used as fuel", + "example_sentence_english": "This car runs on diesel.", + "pos": "n", + "word_frequency": 4677 + }, + { + "word": "dimension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a measurable extent of some kind, such as length, breadth, or depth", + "example_sentence_english": "We need to consider every dimension of the problem.", + "pos": "n", + "word_frequency": 4678 + }, + { + "word": "dip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a brief downward movement or slope", + "example_sentence_english": "There was a slight dip in sales.", + "pos": "n", + "word_frequency": 4679 + }, + { + "word": "disturb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interrupt; to bother", + "example_sentence_english": "Please do not disturb the sleeping baby.", + "pos": "v", + "word_frequency": 4680 + }, + { + "word": "dot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small spot or mark", + "example_sentence_english": "There's a small dot on the map indicating our location.", + "pos": "n", + "word_frequency": 4682 + }, + { + "word": "effectiveness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the degree to which something is successful in producing a desired result", + "example_sentence_english": "The effectiveness of the new policy is still being evaluated.", + "pos": "n", + "word_frequency": 4684 + }, + { + "word": "exceptional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusually good; outstanding", + "example_sentence_english": "Her performance was truly exceptional.", + "pos": "adj", + "word_frequency": 4686 + }, + { + "word": "flee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run away from a place or situation of danger", + "example_sentence_english": "The refugees were forced to flee their homes.", + "pos": "v", + "word_frequency": 4687 + }, + { + "word": "foul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpleasant or disgusting; unfair", + "example_sentence_english": "The air in the old building had a foul smell.", + "pos": "adj", + "word_frequency": 4688 + }, + { + "word": "frankly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an open, honest, and direct manner", + "example_sentence_english": "Frankly, I don't think that's a good idea.", + "pos": "adv", + "word_frequency": 4689 + }, + { + "word": "graph", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a diagram showing the relationship between two or more variables", + "example_sentence_english": "The report included a graph showing sales figures.", + "pos": "n", + "word_frequency": 4690 + }, + { + "word": "hack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of gaining unauthorized access to data in a system or computer", + "example_sentence_english": "The company reported a major data hack.", + "pos": "n", + "word_frequency": 4691 + }, + { + "word": "hatred", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intense dislike or ill will", + "example_sentence_english": "The conflict was fueled by deep-seated hatred.", + "pos": "n", + "word_frequency": 4693 + }, + { + "word": "ignorant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking knowledge or awareness in general; uneducated", + "example_sentence_english": "Many people are ignorant of the true cost of living.", + "pos": "adj", + "word_frequency": 4694 + }, + { + "word": "interact", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act in such a way as to have an effect on another", + "example_sentence_english": "It's important for children to interact with others.", + "pos": "v", + "word_frequency": 4695 + }, + { + "word": "lamp", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a device for giving light", + "example_sentence_english": "She turned on the lamp to read her book.", + "pos": "n", + "word_frequency": 4696 + }, + { + "word": "limitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a restricting condition or circumstance", + "example_sentence_english": "Every system has its limitations.", + "pos": "n", + "word_frequency": 4697 + }, + { + "word": "majesty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impressive stateliness, dignity, or beauty", + "example_sentence_english": "The queen addressed her subjects with great majesty.", + "pos": "n", + "word_frequency": 4698 + }, + { + "word": "measurement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of measuring something", + "example_sentence_english": "Accurate measurement is crucial in scientific experiments.", + "pos": "n", + "word_frequency": 4699 + }, + { + "word": "median", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denoting or relating to the median of a set of values", + "example_sentence_english": "The median age of the population is increasing.", + "pos": "adj", + "word_frequency": 4700 + }, + { + "word": "medieval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Middle Ages", + "example_sentence_english": "They visited a medieval castle in France.", + "pos": "adj", + "word_frequency": 4701 + }, + { + "word": "mobility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to move or be moved freely and easily", + "example_sentence_english": "Improved public transport increases urban mobility.", + "pos": "n", + "word_frequency": 4703 + }, + { + "word": "orientation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the relative physical position or direction of something", + "example_sentence_english": "New employees attend an orientation session.", + "pos": "n", + "word_frequency": 4709 + }, + { + "word": "oven", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an enclosed compartment for cooking and heating food", + "example_sentence_english": "She baked a cake in the oven.", + "pos": "n", + "word_frequency": 4710 + }, + { + "word": "passport", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an official document issued by a government, certifying the holder's identity and citizenship", + "example_sentence_english": "You need a passport to travel internationally.", + "pos": "n", + "word_frequency": 4712 + }, + { + "word": "penis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the male external sexual organ", + "example_sentence_english": "The doctor explained the anatomy of the penis.", + "pos": "n", + "word_frequency": 4713 + }, + { + "word": "pill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small round mass of solid medicine for swallowing whole", + "example_sentence_english": "He takes a pill every morning for his allergies.", + "pos": "n", + "word_frequency": 4714 + }, + { + "word": "rabbit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a burrowing, gregarious, plant-eating mammal with long ears", + "example_sentence_english": "A rabbit hopped across the garden.", + "pos": "n", + "word_frequency": 4715 + }, + { + "word": "rhythm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong, regular, repeated pattern of movement or sound", + "example_sentence_english": "The music had a catchy rhythm.", + "pos": "n", + "word_frequency": 4716 + }, + { + "word": "savage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fierce, violent, and uncontrolled", + "example_sentence_english": "The critics launched a savage attack on the new film.", + "pos": "adj", + "word_frequency": 4718 + }, + { + "word": "shooter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who shoots a gun; a person who takes photographs or videos", + "example_sentence_english": "The police are searching for the shooter.", + "pos": "n", + "word_frequency": 4719 + }, + { + "word": "sibling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brother or sister", + "example_sentence_english": "I have one sibling, an older brother.", + "pos": "n", + "word_frequency": 4720 + }, + { + "word": "slim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thin, slender", + "example_sentence_english": "She has a very slim figure.", + "pos": "adj", + "word_frequency": 4721 + }, + { + "word": "someday", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at some point in the future", + "example_sentence_english": "Someday, I hope to travel the world.", + "pos": "adv", + "word_frequency": 4722 + }, + { + "word": "sophisticated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complex, refined", + "example_sentence_english": "The new software has a very sophisticated interface.", + "pos": "adj", + "word_frequency": 4723 + }, + { + "word": "spam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unwanted email", + "example_sentence_english": "My inbox is full of spam.", + "pos": "n", + "word_frequency": 4724 + }, + { + "word": "stack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pile or heap", + "example_sentence_english": "There's a stack of books on the table.", + "pos": "n", + "word_frequency": 4725 + }, + { + "word": "stance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "position or attitude", + "example_sentence_english": "The company's stance on environmental issues is clear.", + "pos": "n", + "word_frequency": 4726 + }, + { + "word": "static", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not moving or changing", + "example_sentence_english": "The image on the screen remained static.", + "pos": "adj", + "word_frequency": 4727 + }, + { + "word": "subway", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "underground train system", + "example_sentence_english": "We took the subway to get downtown.", + "pos": "n", + "word_frequency": 4728 + }, + { + "word": "supportive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "providing encouragement or help", + "example_sentence_english": "My family has always been very supportive of my decisions.", + "pos": "adj", + "word_frequency": 4729 + }, + { + "word": "surgical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to surgery", + "example_sentence_english": "The patient required surgical intervention.", + "pos": "adj", + "word_frequency": 4730 + }, + { + "word": "tablet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flat, portable computer", + "example_sentence_english": "I read books on my tablet.", + "pos": "n", + "word_frequency": 4731 + }, + { + "word": "tent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a portable shelter", + "example_sentence_english": "We set up our tent by the lake.", + "pos": "n", + "word_frequency": 4732 + }, + { + "word": "thesis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long essay or dissertation", + "example_sentence_english": "She is writing her master's thesis.", + "pos": "n", + "word_frequency": 4733 + }, + { + "word": "tide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the rise and fall of the sea", + "example_sentence_english": "The tide is coming in, so the beach will get smaller.", + "pos": "n", + "word_frequency": 4734 + }, + { + "word": "warfare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity of fighting a war", + "example_sentence_english": "Modern warfare involves advanced technology.", + "pos": "n", + "word_frequency": 4736 + }, + { + "word": "withdraw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take back or remove", + "example_sentence_english": "He decided to withdraw his application.", + "pos": "v", + "word_frequency": 4737 + }, + { + "word": "withdrawal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of taking money out of an account", + "example_sentence_english": "I made a cash withdrawal from the ATM.", + "pos": "n", + "word_frequency": 4738 + }, + { + "word": "audit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official inspection of accounts", + "example_sentence_english": "The company is undergoing an annual financial audit.", + "pos": "n", + "word_frequency": 4740 + }, + { + "word": "authentic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genuine, real", + "example_sentence_english": "This is an authentic antique vase.", + "pos": "adj", + "word_frequency": 4741 + }, + { + "word": "backwards", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in reverse direction", + "example_sentence_english": "He walked backwards to avoid tripping.", + "pos": "adv", + "word_frequency": 4743 + }, + { + "word": "blonde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having light-colored hair", + "example_sentence_english": "She has beautiful blonde hair.", + "pos": "adj", + "word_frequency": 4745 + }, + { + "word": "bolt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a metal pin or bar", + "example_sentence_english": "He secured the door with a heavy bolt.", + "pos": "n", + "word_frequency": 4746 + }, + { + "word": "brook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small stream", + "example_sentence_english": "A small brook runs through the forest.", + "pos": "n", + "word_frequency": 4747 + }, + { + "word": "bust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sculpture of a person's head and shoulders", + "example_sentence_english": "The museum displayed a marble bust of the emperor.", + "pos": "n", + "word_frequency": 4748 + }, + { + "word": "collar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the part of a shirt around the neck", + "example_sentence_english": "He adjusted the collar of his shirt.", + "pos": "n", + "word_frequency": 4749 + }, + { + "word": "comply", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to act in accordance with a wish or command", + "example_sentence_english": "All employees must comply with safety regulations.", + "pos": "v", + "word_frequency": 4751 + }, + { + "word": "cope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deal effectively with something difficult", + "example_sentence_english": "It's hard to cope with so much stress.", + "pos": "v", + "word_frequency": 4752 + }, + { + "word": "creepy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing an unpleasant feeling of fear or unease", + "example_sentence_english": "That old abandoned house looks really creepy.", + "pos": "adj", + "word_frequency": 4753 + }, + { + "word": "drawing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a picture or diagram made with a pencil, pen, or crayon", + "example_sentence_english": "She showed me a beautiful drawing of a landscape.", + "pos": "n", + "word_frequency": 4756 + }, + { + "word": "echo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sound or series of sounds caused by the reflection of sound waves", + "example_sentence_english": "The cave produced a loud echo when I shouted.", + "pos": "n", + "word_frequency": 4758 + }, + { + "word": "emotionally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an emotional way", + "example_sentence_english": "She reacted emotionally to the news.", + "pos": "adv", + "word_frequency": 4760 + }, + { + "word": "finale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the last part of a piece of music, a show, or a public event", + "example_sentence_english": "The fireworks were the grand finale of the festival.", + "pos": "n", + "word_frequency": 4761 + }, + { + "word": "flavor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the distinctive taste of a food or drink", + "example_sentence_english": "This ice cream has a delicious vanilla flavor.", + "pos": "n", + "word_frequency": 4762 + }, + { + "word": "glove", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a covering for the hand", + "example_sentence_english": "He put on his warm gloves before going outside.", + "pos": "n", + "word_frequency": 4763 + }, + { + "word": "ignorance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of knowledge or information", + "example_sentence_english": "His ignorance of the law was no excuse.", + "pos": "n", + "word_frequency": 4766 + }, + { + "word": "induce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "succeed in persuading or influencing (someone) to do something", + "example_sentence_english": "Nothing could induce him to change his mind.", + "pos": "v", + "word_frequency": 4767 + }, + { + "word": "intermediate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coming between two things in time, place, order, character, etc.", + "example_sentence_english": "This course is for intermediate learners.", + "pos": "adj", + "word_frequency": 4768 + }, + { + "word": "invention", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of inventing something, typically a process or device", + "example_sentence_english": "The invention of the internet changed the world.", + "pos": "n", + "word_frequency": 4769 + }, + { + "word": "likewise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the same way; also", + "example_sentence_english": "\"I enjoyed meeting you.\" \"Likewise.\"", + "pos": "adv", + "word_frequency": 4773 + }, + { + "word": "lineup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a set of people or things assembled for a particular purpose", + "example_sentence_english": "The band announced their new lineup for the tour.", + "pos": "n", + "word_frequency": 4774 + }, + { + "word": "magnificent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impressively beautiful, elaborate, or extravagant; superb", + "example_sentence_english": "The view from the mountain was magnificent.", + "pos": "adj", + "word_frequency": 4776 + }, + { + "word": "mathematical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to mathematics", + "example_sentence_english": "He has a strong mathematical mind.", + "pos": "adj", + "word_frequency": 4777 + }, + { + "word": "meantime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the intervening period of time", + "example_sentence_english": "The food will be ready in 20 minutes; in the meantime, you can set the table.", + "pos": "n", + "word_frequency": 4778 + }, + { + "word": "nonetheless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in spite of that; nevertheless", + "example_sentence_english": "It was a difficult task, but he succeeded nonetheless.", + "pos": "adv", + "word_frequency": 4780 + }, + { + "word": "o'clock", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "used after a number from one to twelve to indicate the hour of the day", + "example_sentence_english": "The meeting starts at nine o'clock.", + "pos": "n", + "word_frequency": 4781 + }, + { + "word": "pipeline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long pipe, typically underground, for conveying oil, gas, etc.", + "example_sentence_english": "The new oil pipeline will run across the country.", + "pos": "n", + "word_frequency": 4783 + }, + { + "word": "placement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of putting something in a particular place or position", + "example_sentence_english": "She found a good job placement after graduation.", + "pos": "n", + "word_frequency": 4784 + }, + { + "word": "recreation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "activity done for enjoyment when one is not working", + "example_sentence_english": "Hiking is a popular form of recreation in this area.", + "pos": "n", + "word_frequency": 4787 + }, + { + "word": "renew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resume (an activity) after an interruption", + "example_sentence_english": "You need to renew your passport before your trip.", + "pos": "v", + "word_frequency": 4788 + }, + { + "word": "resign", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voluntarily leave a job or other position", + "example_sentence_english": "She decided to resign from her position as CEO.", + "pos": "v", + "word_frequency": 4789 + }, + { + "word": "shallow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of little depth", + "example_sentence_english": "The water in the pool is very shallow at this end.", + "pos": "adj", + "word_frequency": 4791 + }, + { + "word": "sketch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rough or unfinished drawing or painting", + "example_sentence_english": "She quickly drew a sketch of the landscape.", + "pos": "n", + "word_frequency": 4795 + }, + { + "word": "soda", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a carbonated soft drink", + "example_sentence_english": "Would you like a glass of soda with your meal?", + "pos": "n", + "word_frequency": 4796 + }, + { + "word": "spite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a desire to hurt, annoy, or offend someone", + "example_sentence_english": "He broke the toy out of spite.", + "pos": "n", + "word_frequency": 4797 + }, + { + "word": "strengthen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make or become stronger", + "example_sentence_english": "Regular exercise will strengthen your muscles.", + "pos": "v", + "word_frequency": 4798 + }, + { + "word": "sunset", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the time in the evening when the sun disappears or daylight fades", + "example_sentence_english": "We watched the beautiful sunset over the ocean.", + "pos": "n", + "word_frequency": 4799 + }, + { + "word": "thanksgiving", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thanksgiving", + "example_sentence_english": "We celebrate Thanksgiving with a big family dinner.", + "pos": "n", + "word_frequency": 4801 + }, + { + "word": "thermal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to heat", + "example_sentence_english": "The house has excellent thermal insulation.", + "pos": "adj", + "word_frequency": 4803 + }, + { + "word": "workplace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place where people work", + "example_sentence_english": "Safety is a top priority in the workplace.", + "pos": "n", + "word_frequency": 4804 + }, + { + "word": "yell", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shout loudly", + "example_sentence_english": "Don't yell at me, I can hear you perfectly.", + "pos": "v", + "word_frequency": 4805 + }, + { + "word": "analyst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who analyzes", + "example_sentence_english": "She works as a financial analyst for a large bank.", + "pos": "n", + "word_frequency": 4808 + }, + { + "word": "arabic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Arabia or its language", + "example_sentence_english": "He is learning to speak Arabic.", + "pos": "adj", + "word_frequency": 4809 + }, + { + "word": "arctic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the North Pole region", + "example_sentence_english": "The Arctic region is home to polar bears.", + "pos": "adj", + "word_frequency": 4810 + }, + { + "word": "calorie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of energy in food", + "example_sentence_english": "This snack contains a lot of calories.", + "pos": "n", + "word_frequency": 4813 + }, + { + "word": "cannabis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a plant used for drugs or fiber", + "example_sentence_english": "Some countries have legalized cannabis for medical use.", + "pos": "n", + "word_frequency": 4814 + }, + { + "word": "cease", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stop", + "example_sentence_english": "The rain ceased after an hour.", + "pos": "v", + "word_frequency": 4815 + }, + { + "word": "chapel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small church or place of worship", + "example_sentence_english": "They held the wedding ceremony in a small chapel.", + "pos": "n", + "word_frequency": 4816 + }, + { + "word": "cloth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "woven fabric", + "example_sentence_english": "She used a damp cloth to wipe the table.", + "pos": "n", + "word_frequency": 4817 + }, + { + "word": "container", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an object for holding things", + "example_sentence_english": "Please put the leftovers in a plastic container.", + "pos": "n", + "word_frequency": 4818 + }, + { + "word": "cowboy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who works with cattle", + "example_sentence_english": "The cowboy rode his horse across the prairie.", + "pos": "n", + "word_frequency": 4819 + }, + { + "word": "deploy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move into position for use", + "example_sentence_english": "The company plans to deploy new software next month.", + "pos": "v", + "word_frequency": 4820 + }, + { + "word": "differ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be different", + "example_sentence_english": "Our opinions often differ on political matters.", + "pos": "v", + "word_frequency": 4821 + }, + { + "word": "dimensional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having dimensions", + "example_sentence_english": "We are studying three-dimensional shapes in math class.", + "pos": "adj", + "word_frequency": 4822 + }, + { + "word": "eager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keen or enthusiastic", + "example_sentence_english": "She was eager to start her new job.", + "pos": "adj", + "word_frequency": 4823 + }, + { + "word": "elevate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise to a higher position", + "example_sentence_english": "The new policy aims to elevate the standard of living.", + "pos": "v", + "word_frequency": 4824 + }, + { + "word": "essence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the intrinsic nature or indispensable quality of something", + "example_sentence_english": "The essence of his argument was that everyone deserves respect.", + "pos": "n", + "word_frequency": 4825 + }, + { + "word": "fork", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an eating utensil with prongs", + "example_sentence_english": "Please pass me a fork for my salad.", + "pos": "n", + "word_frequency": 4826 + }, + { + "word": "fur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the short, fine, soft hair of certain animals", + "example_sentence_english": "My cat has very soft fur.", + "pos": "n", + "word_frequency": 4827 + }, + { + "word": "gps", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Global Positioning System", + "example_sentence_english": "We used the GPS to find our way through the city.", + "pos": "n", + "word_frequency": 4828 + }, + { + "word": "harvest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of gathering crops", + "example_sentence_english": "The farmers celebrated a good harvest this year.", + "pos": "n", + "word_frequency": 4830 + }, + { + "word": "headline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a heading at the top of an article or page", + "example_sentence_english": "The headline on the newspaper caught my attention.", + "pos": "n", + "word_frequency": 4831 + }, + { + "word": "hype", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extravagant or intensive publicity or promotion", + "example_sentence_english": "There was a lot of hype around the new movie, but it wasn't that good.", + "pos": "n", + "word_frequency": 4833 + }, + { + "word": "junk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old or discarded articles that are considered useless or of little value", + "example_sentence_english": "My garage is full of old junk.", + "pos": "n", + "word_frequency": 4835 + }, + { + "word": "kidney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organ that filters blood", + "example_sentence_english": "The human body has two kidneys.", + "pos": "n", + "word_frequency": 4837 + }, + { + "word": "ladder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a structure for climbing up or down", + "example_sentence_english": "He used a ladder to reach the top shelf.", + "pos": "n", + "word_frequency": 4838 + }, + { + "word": "lobby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entrance hall", + "example_sentence_english": "We waited for them in the hotel lobby.", + "pos": "n", + "word_frequency": 4840 + }, + { + "word": "mineral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "natural substance", + "example_sentence_english": "Water often contains various minerals.", + "pos": "n", + "word_frequency": 4842 + }, + { + "word": "mob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large crowd", + "example_sentence_english": "The angry mob gathered outside the building.", + "pos": "n", + "word_frequency": 4843 + }, + { + "word": "modest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humble", + "example_sentence_english": "She was very modest about her achievements.", + "pos": "adj", + "word_frequency": 4844 + }, + { + "word": "mph", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miles per hour", + "example_sentence_english": "The speed limit is 60 mph on this road.", + "pos": "n", + "word_frequency": 4845 + }, + { + "word": "navigation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of finding the way", + "example_sentence_english": "Modern cars have excellent navigation systems.", + "pos": "n", + "word_frequency": 4846 + }, + { + "word": "orbit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "path around a celestial body", + "example_sentence_english": "The moon is in orbit around the Earth.", + "pos": "n", + "word_frequency": 4848 + }, + { + "word": "paragraph", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "section of text", + "example_sentence_english": "Please read the first paragraph of the article.", + "pos": "n", + "word_frequency": 4849 + }, + { + "word": "passive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not active", + "example_sentence_english": "He took a passive role in the discussion.", + "pos": "adj", + "word_frequency": 4850 + }, + { + "word": "peninsula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "land surrounded by water on three sides", + "example_sentence_english": "Florida is a large peninsula.", + "pos": "n", + "word_frequency": 4851 + }, + { + "word": "pork", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meat from a pig", + "example_sentence_english": "We had roast pork for dinner.", + "pos": "n", + "word_frequency": 4853 + }, + { + "word": "profitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "making money", + "example_sentence_english": "The new business venture proved to be very profitable.", + "pos": "adj", + "word_frequency": 4855 + }, + { + "word": "ranch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large farm for raising animals", + "example_sentence_english": "They own a large cattle ranch in Texas.", + "pos": "n", + "word_frequency": 4856 + }, + { + "word": "reasonably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairly", + "example_sentence_english": "The price was reasonably low.", + "pos": "adv", + "word_frequency": 4857 + }, + { + "word": "remainder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "what is left", + "example_sentence_english": "He ate half the cake and gave me the remainder.", + "pos": "n", + "word_frequency": 4858 + }, + { + "word": "seize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take hold of suddenly", + "example_sentence_english": "The police seized the illegal goods.", + "pos": "v", + "word_frequency": 4859 + }, + { + "word": "semester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half of an academic year", + "example_sentence_english": "The new semester begins in September.", + "pos": "n", + "word_frequency": 4860 + }, + { + "word": "sentiment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling or opinion", + "example_sentence_english": "Public sentiment was against the new policy.", + "pos": "n", + "word_frequency": 4861 + }, + { + "word": "sock", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garment for the foot", + "example_sentence_english": "I can't find my other sock.", + "pos": "n", + "word_frequency": 4862 + }, + { + "word": "supplement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something added to complete or enhance", + "example_sentence_english": "He takes a vitamin supplement every day.", + "pos": "n", + "word_frequency": 4865 + }, + { + "word": "thereby", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "by that means", + "example_sentence_english": "He failed the exam, thereby losing his scholarship.", + "pos": "adv", + "word_frequency": 4866 + }, + { + "word": "threshold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doorway or point of beginning", + "example_sentence_english": "She stood on the threshold of a new career.", + "pos": "n", + "word_frequency": 4867 + }, + { + "word": "tin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metal container or metallic element", + "example_sentence_english": "He opened a tin of beans.", + "pos": "n", + "word_frequency": 4869 + }, + { + "word": "tribal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a tribe", + "example_sentence_english": "The region is known for its rich tribal history.", + "pos": "adj", + "word_frequency": 4870 + }, + { + "word": "trunk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "main stem of a tree or car storage", + "example_sentence_english": "We put the suitcases in the car trunk.", + "pos": "n", + "word_frequency": 4871 + }, + { + "word": "uncertainty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state of being unsure", + "example_sentence_english": "There was a lot of uncertainty about the future.", + "pos": "n", + "word_frequency": 4872 + }, + { + "word": "vampire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mythical creature that feeds on blood", + "example_sentence_english": "The story was about a vampire living in a castle.", + "pos": "n", + "word_frequency": 4873 + }, + { + "word": "verdict", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decision of a jury or judgment", + "example_sentence_english": "The jury delivered a guilty verdict.", + "pos": "n", + "word_frequency": 4874 + }, + { + "word": "accommodate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide space for", + "example_sentence_english": "The hotel can accommodate up to 200 guests.", + "pos": "v", + "word_frequency": 4875 + }, + { + "word": "accordingly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that is appropriate", + "example_sentence_english": "The weather forecast was bad, and we dressed accordingly.", + "pos": "adv", + "word_frequency": 4876 + }, + { + "word": "aesthetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concerned with beauty", + "example_sentence_english": "The painting had great aesthetic appeal.", + "pos": "adj", + "word_frequency": 4877 + }, + { + "word": "algorithm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set of rules for solving a problem", + "example_sentence_english": "The search engine uses a complex algorithm.", + "pos": "n", + "word_frequency": 4878 + }, + { + "word": "anchor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heavy device to moor a ship", + "example_sentence_english": "The ship dropped its anchor in the bay.", + "pos": "n", + "word_frequency": 4879 + }, + { + "word": "arch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a curved structure", + "example_sentence_english": "The bridge has a beautiful stone arch.", + "pos": "n", + "word_frequency": 4882 + }, + { + "word": "axis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an imaginary line around which a body rotates", + "example_sentence_english": "The Earth rotates on its axis.", + "pos": "n", + "word_frequency": 4884 + }, + { + "word": "badge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small sign or emblem", + "example_sentence_english": "He proudly wore his police badge.", + "pos": "n", + "word_frequency": 4885 + }, + { + "word": "bizarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very strange or unusual", + "example_sentence_english": "The dream I had last night was truly bizarre.", + "pos": "adj", + "word_frequency": 4887 + }, + { + "word": "bounce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rebound or spring", + "example_sentence_english": "The ball took a high bounce off the ground.", + "pos": "n", + "word_frequency": 4888 + }, + { + "word": "cannon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, heavy gun", + "example_sentence_english": "An old cannon stood guard at the castle entrance.", + "pos": "n", + "word_frequency": 4890 + }, + { + "word": "complexity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being complicated", + "example_sentence_english": "The complexity of the problem made it difficult to solve.", + "pos": "n", + "word_frequency": 4892 + }, + { + "word": "consultation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a meeting for discussion or advice", + "example_sentence_english": "She had a consultation with her doctor about her symptoms.", + "pos": "n", + "word_frequency": 4893 + }, + { + "word": "continental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a continent", + "example_sentence_english": "They offer a continental breakfast at the hotel.", + "pos": "adj", + "word_frequency": 4894 + }, + { + "word": "convenience", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being suitable or easy", + "example_sentence_english": "For your convenience, the store is open 24 hours.", + "pos": "n", + "word_frequency": 4895 + }, + { + "word": "deliberately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on purpose; intentionally", + "example_sentence_english": "He deliberately ignored my question.", + "pos": "adv", + "word_frequency": 4896 + }, + { + "word": "dictionary", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a book of words and their meanings", + "example_sentence_english": "I looked up the word in the dictionary.", + "pos": "n", + "word_frequency": 4898 + }, + { + "word": "dignity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being worthy of respect", + "example_sentence_english": "She faced the challenge with great dignity.", + "pos": "n", + "word_frequency": 4899 + }, + { + "word": "ego", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's sense of self-esteem or self-importance", + "example_sentence_english": "His large ego made him difficult to work with.", + "pos": "n", + "word_frequency": 4902 + }, + { + "word": "enthusiasm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intense and eager enjoyment, interest, or approval", + "example_sentence_english": "She showed great enthusiasm for the new project.", + "pos": "n", + "word_frequency": 4903 + }, + { + "word": "equation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statement that two expressions are equal", + "example_sentence_english": "Solve the equation for x.", + "pos": "n", + "word_frequency": 4904 + }, + { + "word": "extract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short passage taken from a text", + "example_sentence_english": "The book contains an extract from his diary.", + "pos": "n", + "word_frequency": 4905 + }, + { + "word": "ferry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boat that transports people or vehicles", + "example_sentence_english": "We took the ferry across the lake.", + "pos": "n", + "word_frequency": 4906 + }, + { + "word": "fisher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who fishes", + "example_sentence_english": "The old fisher cast his net into the sea.", + "pos": "n", + "word_frequency": 4907 + }, + { + "word": "flexibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of bending easily without breaking", + "example_sentence_english": "Yoga helps improve your flexibility.", + "pos": "n", + "word_frequency": 4908 + }, + { + "word": "fridge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator (informal)", + "example_sentence_english": "Please put the milk back in the fridge.", + "pos": "n", + "word_frequency": 4910 + }, + { + "word": "fusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of joining two or more things together", + "example_sentence_english": "The restaurant serves a delicious fusion of Asian and European cuisine.", + "pos": "n", + "word_frequency": 4911 + }, + { + "word": "gauge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an instrument for measuring", + "example_sentence_english": "The fuel gauge showed that the tank was almost empty.", + "pos": "n", + "word_frequency": 4912 + }, + { + "word": "goat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a common farm animal", + "example_sentence_english": "A goat was grazing in the field.", + "pos": "n", + "word_frequency": 4913 + }, + { + "word": "gut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intestine; instinct (informal)", + "example_sentence_english": "I had a gut feeling that something was wrong.", + "pos": "n", + "word_frequency": 4914 + }, + { + "word": "helmet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hard hat to protect the head", + "example_sentence_english": "Always wear a helmet when riding your bicycle.", + "pos": "n", + "word_frequency": 4916 + }, + { + "word": "ideology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of ideas and ideals", + "example_sentence_english": "Political ideology often shapes public policy.", + "pos": "n", + "word_frequency": 4917 + }, + { + "word": "inclusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or state of including or being included", + "example_sentence_english": "The school promotes the inclusion of all students.", + "pos": "n", + "word_frequency": 4918 + }, + { + "word": "inning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a division of a baseball game", + "example_sentence_english": "The home team scored three runs in the ninth inning.", + "pos": "n", + "word_frequency": 4919 + }, + { + "word": "insect", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small arthropod animal that has six legs and generally one or two pairs of wings", + "example_sentence_english": "An insect crawled across the table.", + "pos": "n", + "word_frequency": 4920 + }, + { + "word": "instructor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who teaches something", + "example_sentence_english": "The yoga instructor demonstrated the pose.", + "pos": "n", + "word_frequency": 4921 + }, + { + "word": "isolation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being alone or apart from others", + "example_sentence_english": "He felt a sense of isolation living in the remote cabin.", + "pos": "n", + "word_frequency": 4922 + }, + { + "word": "keeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who looks after or takes care of something or someone", + "example_sentence_english": "The zookeeper fed the lions.", + "pos": "n", + "word_frequency": 4924 + }, + { + "word": "lamb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a young sheep", + "example_sentence_english": "The shepherd carried a tiny lamb.", + "pos": "n", + "word_frequency": 4925 + }, + { + "word": "liar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who tells lies", + "example_sentence_english": "Nobody trusts a liar.", + "pos": "n", + "word_frequency": 4926 + }, + { + "word": "machinery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machines or mechanical parts collectively", + "example_sentence_english": "The factory uses heavy machinery.", + "pos": "n", + "word_frequency": 4927 + }, + { + "word": "mansion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, impressive house", + "example_sentence_english": "They bought a beautiful old mansion in the countryside.", + "pos": "n", + "word_frequency": 4928 + }, + { + "word": "mega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very large or impressive; excellent", + "example_sentence_english": "That was a mega concert last night!", + "pos": "adj", + "word_frequency": 4929 + }, + { + "word": "mercury", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy, silvery-white metallic element; the smallest planet in the solar system", + "example_sentence_english": "Mercury is a liquid at room temperature.", + "pos": "n", + "word_frequency": 4930 + }, + { + "word": "namely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "that is to say; specifically", + "example_sentence_english": "There are two main issues, namely, cost and time.", + "pos": "adv", + "word_frequency": 4931 + }, + { + "word": "pending", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awaiting decision or settlement; about to happen", + "example_sentence_english": "The outcome of the case is still pending.", + "pos": "adj", + "word_frequency": 4935 + }, + { + "word": "platinum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a precious silvery-white metallic element", + "example_sentence_english": "Platinum is a very valuable metal.", + "pos": "n", + "word_frequency": 4936 + }, + { + "word": "possess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to have or own something", + "example_sentence_english": "He possesses great skill in playing the piano.", + "pos": "v", + "word_frequency": 4937 + }, + { + "word": "premise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a statement or idea on which a conclusion or theory is based", + "example_sentence_english": "The argument was based on a false premise.", + "pos": "n", + "word_frequency": 4938 + }, + { + "word": "probability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the extent to which something is likely to happen or be true", + "example_sentence_english": "There's a high probability of rain tomorrow.", + "pos": "n", + "word_frequency": 4939 + }, + { + "word": "resignation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of giving up a job or position; acceptance of something undesirable but inevitable", + "example_sentence_english": "His resignation came as a surprise to everyone.", + "pos": "n", + "word_frequency": 4941 + }, + { + "word": "rider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who rides a horse, bicycle, or motorcycle", + "example_sentence_english": "The horse and its rider jumped over the fence.", + "pos": "n", + "word_frequency": 4942 + }, + { + "word": "ritual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a religious or solemn ceremony consisting of a series of actions performed according to a prescribed order", + "example_sentence_english": "The ancient ritual was performed at dawn.", + "pos": "n", + "word_frequency": 4943 + }, + { + "word": "shelf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flat length of wood or other rigid material, attached to a wall or forming part of a unit, used for storing or displaying objects", + "example_sentence_english": "She placed the book on the top shelf.", + "pos": "n", + "word_frequency": 4944 + }, + { + "word": "slam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a forceful impact or blow; a loud bang", + "example_sentence_english": "The door closed with a loud slam.", + "pos": "n", + "word_frequency": 4945 + }, + { + "word": "starter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that starts something; the first course of a meal", + "example_sentence_english": "He ordered soup as a starter.", + "pos": "n", + "word_frequency": 4946 + }, + { + "word": "subscribe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrange to receive something regularly, typically a publication or service", + "example_sentence_english": "You can subscribe to our newsletter online.", + "pos": "v", + "word_frequency": 4947 + }, + { + "word": "utterly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "completely and without qualification", + "example_sentence_english": "She was utterly exhausted after the long journey.", + "pos": "adv", + "word_frequency": 4951 + }, + { + "word": "voltage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an electromotive force or potential difference expressed in volts", + "example_sentence_english": "Check the voltage before plugging in the appliance.", + "pos": "n", + "word_frequency": 4952 + }, + { + "word": "width", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the measurement or extent of something from side to side", + "example_sentence_english": "Measure the width of the table.", + "pos": "n", + "word_frequency": 4953 + }, + { + "word": "workout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a session of physical exercise", + "example_sentence_english": "I had a great workout at the gym today.", + "pos": "n", + "word_frequency": 4954 + }, + { + "word": "activate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something active or operative", + "example_sentence_english": "Press the button to activate the alarm.", + "pos": "v", + "word_frequency": 4957 + }, + { + "word": "adaptation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of adjusting to new conditions; a movie, television drama, or stage play that has been adapted from a written work", + "example_sentence_english": "The adaptation of the novel was very popular.", + "pos": "n", + "word_frequency": 4958 + }, + { + "word": "advisor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who gives advice, especially professionally", + "example_sentence_english": "She consulted her financial advisor.", + "pos": "n", + "word_frequency": 4959 + }, + { + "word": "aluminum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light, silvery-grey metal", + "example_sentence_english": "The can is made of aluminum.", + "pos": "n", + "word_frequency": 4960 + }, + { + "word": "bail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money paid to release someone from jail", + "example_sentence_english": "He was released on bail.", + "pos": "n", + "word_frequency": 4961 + }, + { + "word": "characterize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to describe the distinctive nature or features of", + "example_sentence_english": "His honesty characterizes his personality.", + "pos": "v", + "word_frequency": 4966 + }, + { + "word": "civilization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the stage of human social and cultural development", + "example_sentence_english": "Ancient civilizations left behind impressive ruins.", + "pos": "n", + "word_frequency": 4967 + }, + { + "word": "creativity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the use of imagination or original ideas", + "example_sentence_english": "Her creativity shines in her artwork.", + "pos": "noun", + "word_frequency": 4969 + }, + { + "word": "delicate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily broken or damaged", + "example_sentence_english": "The butterfly has delicate wings.", + "pos": "adjective", + "word_frequency": 4970 + }, + { + "word": "den", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a wild animal's lair or a small, comfortable room", + "example_sentence_english": "The bear returned to its den.", + "pos": "noun", + "word_frequency": 4971 + }, + { + "word": "disappointment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sadness or displeasure caused by the non-fulfillment of one's hopes or expectations", + "example_sentence_english": "The cancellation of the concert was a big disappointment.", + "pos": "noun", + "word_frequency": 4973 + }, + { + "word": "disk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flat, circular object", + "example_sentence_english": "He saved the data on a floppy disk.", + "pos": "noun", + "word_frequency": 4974 + }, + { + "word": "evaluate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to form an idea of the amount, number, or value of; assess", + "example_sentence_english": "We need to evaluate the risks before proceeding.", + "pos": "verb", + "word_frequency": 4975 + }, + { + "word": "goddess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a female deity", + "example_sentence_english": "Athena was the Greek goddess of wisdom.", + "pos": "noun", + "word_frequency": 4976 + }, + { + "word": "harassment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aggressive pressure or intimidation", + "example_sentence_english": "The company has a strict policy against harassment.", + "pos": "noun", + "word_frequency": 4979 + }, + { + "word": "insert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to place, fit, or push (something) into something else", + "example_sentence_english": "Please insert the key into the lock.", + "pos": "verb", + "word_frequency": 4981 + }, + { + "word": "liquor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alcoholic drinks, especially distilled spirits", + "example_sentence_english": "The store sells beer, wine, and liquor.", + "pos": "noun", + "word_frequency": 4987 + }, + { + "word": "loser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that fails or is defeated", + "example_sentence_english": "He felt like a loser after losing the game.", + "pos": "noun", + "word_frequency": 4988 + }, + { + "word": "massage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the rubbing and kneading of muscles and joints", + "example_sentence_english": "She gave him a relaxing back massage.", + "pos": "noun", + "word_frequency": 4990 + }, + { + "word": "nephew", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a son of one's brother or sister", + "example_sentence_english": "My nephew is visiting next week.", + "pos": "noun", + "word_frequency": 4993 + }, + { + "word": "orchestra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of instrumentalists, especially one combining string, woodwind, brass, and percussion sections", + "example_sentence_english": "The orchestra played a beautiful symphony.", + "pos": "noun", + "word_frequency": 4994 + }, + { + "word": "pad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick piece of soft material or a flat surface", + "example_sentence_english": "He wrote notes on a yellow pad.", + "pos": "noun", + "word_frequency": 4996 + }, + { + "word": "precision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality, condition, or fact of being exact and accurate", + "example_sentence_english": "The surgery requires great precision.", + "pos": "noun", + "word_frequency": 4998 + }, + { + "word": "preservation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of preserving something", + "example_sentence_english": "The preservation of historical buildings is important.", + "pos": "noun", + "word_frequency": 4999 + }, + { + "word": "reasoning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of thinking about something in a logical way", + "example_sentence_english": "Her reasoning for the decision was sound.", + "pos": "noun", + "word_frequency": 5000 + }, + { + "word": "rumor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of information or a story that has not been proved to be true", + "example_sentence_english": "There's a rumor going around that they're getting married.", + "pos": "noun", + "word_frequency": 5001 + }, + { + "word": "sail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to travel on water in a ship or boat", + "example_sentence_english": "We sailed across the lake.", + "pos": "verb", + "word_frequency": 5002 + }, + { + "word": "salmon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, edible fish", + "example_sentence_english": "I had grilled salmon for dinner.", + "pos": "noun", + "word_frequency": 5003 + }, + { + "word": "seller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who sells something", + "example_sentence_english": "The seller offered a good price.", + "pos": "noun", + "word_frequency": 5004 + }, + { + "word": "sheer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete and absolute; very thin", + "example_sentence_english": "It was sheer joy to see them again.", + "pos": "adjective", + "word_frequency": 5007 + }, + { + "word": "stark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "severe or bare in appearance or outline; complete", + "example_sentence_english": "The room was stark and empty.", + "pos": "adjective", + "word_frequency": 5009 + }, + { + "word": "sympathy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feelings of pity and sorrow for someone else's misfortune", + "example_sentence_english": "I felt great sympathy for the victims.", + "pos": "noun", + "word_frequency": 5010 + }, + { + "word": "tan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a yellowish-brown color; a darker skin color from sun exposure", + "example_sentence_english": "She got a nice tan on her vacation.", + "pos": "noun", + "word_frequency": 5011 + }, + { + "word": "theoretical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerned with the theories rather than the practical application of a subject", + "example_sentence_english": "His knowledge was purely theoretical.", + "pos": "adjective", + "word_frequency": 5012 + }, + { + "word": "thumb", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the short, thick first digit of the human hand", + "example_sentence_english": "He gave me a thumbs up.", + "pos": "noun", + "word_frequency": 5013 + }, + { + "word": "timber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wood prepared for use in building and carpentry", + "example_sentence_english": "The house was built with strong timber.", + "pos": "noun", + "word_frequency": 5014 + }, + { + "word": "transparent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allowing light to pass through so that objects behind can be distinctly seen", + "example_sentence_english": "The glass was completely transparent.", + "pos": "adjective", + "word_frequency": 5015 + }, + { + "word": "upside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the positive aspect of something", + "example_sentence_english": "The upside of the situation is that we learned a lot.", + "pos": "noun", + "word_frequency": 5018 + }, + { + "word": "vitamin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "any of a group of organic compounds that are essential for normal growth and nutrition", + "example_sentence_english": "Oranges are a good source of Vitamin C.", + "pos": "noun", + "word_frequency": 5019 + }, + { + "word": "void", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a completely empty space; a feeling of emptiness", + "example_sentence_english": "He felt a void in his life after she left.", + "pos": "noun", + "word_frequency": 5020 + }, + { + "word": "voluntary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done, given, or acting of one's own free will", + "example_sentence_english": "She does a lot of voluntary work.", + "pos": "adjective", + "word_frequency": 5021 + }, + { + "word": "wheat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cereal grain that is the most important kind grown in temperate countries", + "example_sentence_english": "Bread is made from wheat.", + "pos": "noun", + "word_frequency": 5022 + }, + { + "word": "whip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strip of leather or cord fastened to a handle, used for flogging or beating", + "example_sentence_english": "He cracked the whip to make the horses go faster.", + "pos": "noun", + "word_frequency": 5023 + }, + { + "word": "wipe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to clean or dry (something) by rubbing its surface with a cloth or one's hand", + "example_sentence_english": "Please wipe the table clean.", + "pos": "verb", + "word_frequency": 5024 + }, + { + "word": "wrist", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the joint connecting the hand with the forearm", + "example_sentence_english": "She wears a watch on her wrist.", + "pos": "noun", + "word_frequency": 5025 + }, + { + "word": "acute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a bad, difficult, or unwelcome situation or phenomenon) present or experienced to a severe or intense degree", + "example_sentence_english": "She has an acute sense of smell.", + "pos": "adjective", + "word_frequency": 5027 + }, + { + "word": "admiral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a high-ranking officer in the navy", + "example_sentence_english": "The admiral commanded the fleet.", + "pos": "noun", + "word_frequency": 5028 + }, + { + "word": "banana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a long curved fruit which grows in clusters and has a soft pulpy flesh and yellow skin when ripe", + "example_sentence_english": "I like to eat a banana for breakfast.", + "pos": "noun", + "word_frequency": 5031 + }, + { + "word": "behave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to act or conduct oneself in a specified way", + "example_sentence_english": "The children behaved well at the party.", + "pos": "verb", + "word_frequency": 5032 + }, + { + "word": "betting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of gambling money on the outcome of a race, game, or other unpredictable event", + "example_sentence_english": "He lost a lot of money on horse betting.", + "pos": "noun", + "word_frequency": 5033 + }, + { + "word": "borrow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take and use (something belonging to someone else) with the intention of returning it", + "example_sentence_english": "Can I borrow your pen?", + "pos": "verb", + "word_frequency": 5036 + }, + { + "word": "camping", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the activity of spending a holiday living in a tent", + "example_sentence_english": "We went camping in the mountains.", + "pos": "noun", + "word_frequency": 5037 + }, + { + "word": "capitol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a building in which a state legislature meets", + "example_sentence_english": "The protest took place at the Capitol building.", + "pos": "noun", + "word_frequency": 5038 + }, + { + "word": "celtic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Celts or their languages", + "example_sentence_english": "She is interested in Celtic music.", + "pos": "adjective", + "word_frequency": 5039 + }, + { + "word": "chin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the part of the face below the mouth", + "example_sentence_english": "He rested his chin on his hand.", + "pos": "noun", + "word_frequency": 5041 + }, + { + "word": "civic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a city or town or the people who live there", + "example_sentence_english": "It is our civic duty to vote.", + "pos": "adjective", + "word_frequency": 5042 + }, + { + "word": "clerk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who works in an office or shop and whose job is to keep records or accounts", + "example_sentence_english": "The hotel clerk checked us in quickly.", + "pos": "noun", + "word_frequency": 5043 + }, + { + "word": "cottage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small house, typically in the countryside", + "example_sentence_english": "They spent their holidays in a charming little cottage.", + "pos": "noun", + "word_frequency": 5044 + }, + { + "word": "coup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, violent, and illegal seizure of power from a government", + "example_sentence_english": "The military attempted a coup to overthrow the government.", + "pos": "noun", + "word_frequency": 5045 + }, + { + "word": "criticize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express disapproval of someone or something", + "example_sentence_english": "It's easy to criticize others, but harder to offer solutions.", + "pos": "verb", + "word_frequency": 5046 + }, + { + "word": "crude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a natural or raw state; not yet processed or refined", + "example_sentence_english": "The country exports crude oil.", + "pos": "adjective", + "word_frequency": 5047 + }, + { + "word": "dash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small amount of something; a short, fast run", + "example_sentence_english": "He made a dash for the finish line.", + "pos": "noun", + "word_frequency": 5048 + }, + { + "word": "disclosure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of making new or secret information known", + "example_sentence_english": "The company made a full disclosure of its financial records.", + "pos": "noun", + "word_frequency": 5049 + }, + { + "word": "disposal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of getting rid of something", + "example_sentence_english": "Waste disposal is a major environmental concern.", + "pos": "noun", + "word_frequency": 5050 + }, + { + "word": "distinctive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic of one person or thing, and so serving to distinguish it from others", + "example_sentence_english": "The building has a very distinctive architectural style.", + "pos": "adjective", + "word_frequency": 5051 + }, + { + "word": "drone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a remote-controlled unmanned aircraft; a continuous low humming sound", + "example_sentence_english": "The military uses drones for surveillance.", + "pos": "noun", + "word_frequency": 5052 + }, + { + "word": "escort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person, vehicle, or group accompanying another for protection or as a courtesy", + "example_sentence_english": "The dignitary arrived with a police escort.", + "pos": "noun", + "word_frequency": 5053 + }, + { + "word": "flour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a powder made from grain, used for making bread, cakes, etc.", + "example_sentence_english": "You need flour to bake a cake.", + "pos": "noun", + "word_frequency": 5054 + }, + { + "word": "gdp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gross Domestic Product", + "example_sentence_english": "The country's GDP grew by 3% last year.", + "pos": "noun", + "word_frequency": 5055 + }, + { + "word": "holding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an amount of land, property, or shares held by one person or group", + "example_sentence_english": "The company increased its holding in the rival firm.", + "pos": "noun", + "word_frequency": 5058 + }, + { + "word": "indie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independent (especially in music or film)", + "example_sentence_english": "She prefers listening to indie music.", + "pos": "adjective", + "word_frequency": 5059 + }, + { + "word": "indirect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not direct in course or connection; roundabout", + "example_sentence_english": "We took an indirect route to avoid traffic.", + "pos": "adjective", + "word_frequency": 5060 + }, + { + "word": "institutional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a large and important organization, such as a university or bank", + "example_sentence_english": "The report highlighted institutional racism within the system.", + "pos": "adjective", + "word_frequency": 5061 + }, + { + "word": "interim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in the intervening period; temporary", + "example_sentence_english": "The company appointed an interim CEO.", + "pos": "adjective", + "word_frequency": 5062 + }, + { + "word": "jerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a quick, sharp, sudden movement; a foolish or contemptible person", + "example_sentence_english": "The car stopped with a sudden jerk.", + "pos": "noun", + "word_frequency": 5065 + }, + { + "word": "kindness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the quality of being friendly, generous, and considerate", + "example_sentence_english": "She showed great kindness to the new student.", + "pos": "noun", + "word_frequency": 5067 + }, + { + "word": "lottery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a means of raising money by selling numbered tickets and giving prizes to the holders of tickets with certain numbers drawn at random", + "example_sentence_english": "He won a small prize in the lottery.", + "pos": "noun", + "word_frequency": 5068 + }, + { + "word": "magnitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the great size or extent of something; the importance, quality, or significance of something", + "example_sentence_english": "The earthquake was of great magnitude.", + "pos": "noun", + "word_frequency": 5070 + }, + { + "word": "minus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reduced by the subtraction of; indicating a negative quantity", + "example_sentence_english": "The temperature dropped to minus five degrees Celsius.", + "pos": "adjective", + "word_frequency": 5072 + }, + { + "word": "nude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without clothes; naked", + "example_sentence_english": "The artist painted a nude figure.", + "pos": "adjective", + "word_frequency": 5074 + }, + { + "word": "outlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a channel for expression or communication; a shop that sells goods of a particular type", + "example_sentence_english": "She uses painting as an outlet for her creativity.", + "pos": "noun", + "word_frequency": 5075 + }, + { + "word": "parameter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a limit or boundary that defines the scope of a particular process or activity", + "example_sentence_english": "We need to define the parameters of the project.", + "pos": "noun", + "word_frequency": 5076 + }, + { + "word": "pause", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a temporary stop in action or speech", + "example_sentence_english": "There was a brief pause before she continued speaking.", + "pos": "noun", + "word_frequency": 5077 + }, + { + "word": "pledge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a solemn promise or undertaking", + "example_sentence_english": "The candidate made a pledge to reduce taxes.", + "pos": "noun", + "word_frequency": 5078 + }, + { + "word": "portal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a doorway, gate, or other entrance; a website that acts as an entry point to other websites", + "example_sentence_english": "The website serves as a portal to various government services.", + "pos": "noun", + "word_frequency": 5079 + }, + { + "word": "prescription", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a written order for medicine", + "example_sentence_english": "The doctor gave me a prescription for antibiotics.", + "pos": "noun", + "word_frequency": 5080 + }, + { + "word": "protester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who takes part in a public demonstration", + "example_sentence_english": "The police arrested several protesters during the demonstration.", + "pos": "noun", + "word_frequency": 5081 + }, + { + "word": "publicity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attention given to someone or something by the media", + "example_sentence_english": "The new movie generated a lot of publicity.", + "pos": "noun", + "word_frequency": 5082 + }, + { + "word": "punish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make someone suffer for a crime or wrongdoing", + "example_sentence_english": "The teacher had to punish the student for cheating.", + "pos": "verb", + "word_frequency": 5083 + }, + { + "word": "puppy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a young dog", + "example_sentence_english": "My new puppy loves to play in the garden.", + "pos": "noun", + "word_frequency": 5084 + }, + { + "word": "recruitment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of finding new people to join an organization", + "example_sentence_english": "The company is focusing on recruitment for new engineers.", + "pos": "noun", + "word_frequency": 5085 + }, + { + "word": "silicon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical element, used in electronics", + "example_sentence_english": "Silicon is a key material in computer chips.", + "pos": "noun", + "word_frequency": 5087 + }, + { + "word": "slice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thin, flat piece cut from something", + "example_sentence_english": "Would you like another slice of cake?", + "pos": "noun", + "word_frequency": 5088 + }, + { + "word": "spelling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the act of forming words with letters", + "example_sentence_english": "Her spelling has improved a lot this year.", + "pos": "noun", + "word_frequency": 5089 + }, + { + "word": "spur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thing that prompts or encourages someone", + "example_sentence_english": "The prize money was a spur to greater effort.", + "pos": "noun", + "word_frequency": 5090 + }, + { + "word": "subscriber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who pays to receive a service or publication", + "example_sentence_english": "The magazine has over a million subscribers.", + "pos": "noun", + "word_frequency": 5091 + }, + { + "word": "telegraph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an apparatus for sending messages over a distance", + "example_sentence_english": "The invention of the telegraph revolutionized communication.", + "pos": "noun", + "word_frequency": 5092 + }, + { + "word": "vaccine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used to stimulate the production of antibodies", + "example_sentence_english": "Scientists are working on a new vaccine for the virus.", + "pos": "noun", + "word_frequency": 5094 + }, + { + "word": "vinyl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of strong plastic, or records made from it", + "example_sentence_english": "He collects old vinyl records.", + "pos": "noun", + "word_frequency": 5095 + }, + { + "word": "affiliate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or organization officially attached to a larger body", + "example_sentence_english": "The local club became an affiliate of the national organization.", + "pos": "noun", + "word_frequency": 5098 + }, + { + "word": "asylum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protection granted by a state to someone who has left their home country as a political refugee", + "example_sentence_english": "Many people seek asylum in other countries due to conflict.", + "pos": "noun", + "word_frequency": 5100 + }, + { + "word": "barn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large farm building for storing hay or housing animals", + "example_sentence_english": "The farmer keeps his cows in the barn.", + "pos": "noun", + "word_frequency": 5101 + }, + { + "word": "cathedral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the principal church of a diocese", + "example_sentence_english": "We visited the beautiful cathedral in the city center.", + "pos": "noun", + "word_frequency": 5104 + }, + { + "word": "clause", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of words containing a subject and a verb", + "example_sentence_english": "Every contract has a termination clause.", + "pos": "noun", + "word_frequency": 5105 + }, + { + "word": "cluster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of similar things or people positioned or occurring closely together", + "example_sentence_english": "There was a cluster of stars visible in the night sky.", + "pos": "noun", + "word_frequency": 5106 + }, + { + "word": "consistency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of achieving a level of performance which does not vary greatly", + "example_sentence_english": "Consistency is key to success in sports.", + "pos": "noun", + "word_frequency": 5107 + }, + { + "word": "cylinder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a solid geometric figure with straight parallel sides and a circular or oval cross section", + "example_sentence_english": "The engine has four cylinders.", + "pos": "noun", + "word_frequency": 5109 + }, + { + "word": "dancer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who dances", + "example_sentence_english": "She is a talented ballet dancer.", + "pos": "noun", + "word_frequency": 5110 + }, + { + "word": "deaf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unable to hear", + "example_sentence_english": "My grandfather is partially deaf.", + "pos": "adjective", + "word_frequency": 5111 + }, + { + "word": "denial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of declaring something to be untrue", + "example_sentence_english": "He issued a strong denial of the accusations.", + "pos": "noun", + "word_frequency": 5112 + }, + { + "word": "dock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an enclosed area of water for loading, unloading, and repairing ships", + "example_sentence_english": "The ship arrived at the dock early this morning.", + "pos": "noun", + "word_frequency": 5113 + }, + { + "word": "entrepreneur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who organizes and operates a business or businesses", + "example_sentence_english": "She is a successful entrepreneur who started her own tech company.", + "pos": "noun", + "word_frequency": 5114 + }, + { + "word": "evident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plain or obvious; clearly seen or understood", + "example_sentence_english": "It was evident that she was upset.", + "pos": "adjective", + "word_frequency": 5115 + }, + { + "word": "expedition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a journey or voyage undertaken by a group of people with a particular purpose", + "example_sentence_english": "They planned an expedition to the Amazon rainforest.", + "pos": "noun", + "word_frequency": 5116 + }, + { + "word": "facilitate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make an action or process easy or easier", + "example_sentence_english": "The new software will facilitate communication between teams.", + "pos": "verb", + "word_frequency": 5117 + }, + { + "word": "feat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an achievement that requires great courage, skill, or strength", + "example_sentence_english": "Climbing Mount Everest is an incredible feat.", + "pos": "noun", + "word_frequency": 5118 + }, + { + "word": "fossil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the remains or impression of a prehistoric plant or animal embedded in rock", + "example_sentence_english": "Scientists discovered a dinosaur fossil in the desert.", + "pos": "noun", + "word_frequency": 5119 + }, + { + "word": "founding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "establishment", + "example_sentence_english": "The founding of the company was a major event for the city.", + "pos": "noun", + "word_frequency": 5120 + }, + { + "word": "freight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goods transported", + "example_sentence_english": "The ship carried a large amount of freight.", + "pos": "noun", + "word_frequency": 5121 + }, + { + "word": "honesty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truthfulness", + "example_sentence_english": "Honesty is the best policy.", + "pos": "noun", + "word_frequency": 5123 + }, + { + "word": "inappropriate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unsuitable", + "example_sentence_english": "His comments were completely inappropriate for the meeting.", + "pos": "adjective", + "word_frequency": 5124 + }, + { + "word": "infant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby", + "example_sentence_english": "The infant slept peacefully in its crib.", + "pos": "noun", + "word_frequency": 5125 + }, + { + "word": "initiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start", + "example_sentence_english": "They decided to initiate a new project.", + "pos": "verb", + "word_frequency": 5126 + }, + { + "word": "injection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shot", + "example_sentence_english": "The nurse gave him an injection for the pain.", + "pos": "noun", + "word_frequency": 5127 + }, + { + "word": "instrumental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crucial", + "example_sentence_english": "Her support was instrumental in the success of the project.", + "pos": "adjective", + "word_frequency": 5128 + }, + { + "word": "insult", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offense", + "example_sentence_english": "He took her comment as a personal insult.", + "pos": "noun", + "word_frequency": 5129 + }, + { + "word": "interference", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meddling", + "example_sentence_english": "We experienced some interference with the radio signal.", + "pos": "noun", + "word_frequency": 5130 + }, + { + "word": "interstate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "between states", + "example_sentence_english": "They drove along the interstate highway.", + "pos": "adjective", + "word_frequency": 5131 + }, + { + "word": "liking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fondness", + "example_sentence_english": "She developed a strong liking for classical music.", + "pos": "noun", + "word_frequency": 5133 + }, + { + "word": "neat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tidy", + "example_sentence_english": "Her room is always very neat.", + "pos": "adjective", + "word_frequency": 5137 + }, + { + "word": "negotiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discuss to reach agreement", + "example_sentence_english": "They need to negotiate a new contract.", + "pos": "verb", + "word_frequency": 5138 + }, + { + "word": "offset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterbalance", + "example_sentence_english": "The company bought carbon credits to offset its emissions.", + "pos": "noun", + "word_frequency": 5141 + }, + { + "word": "outbreak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden occurrence", + "example_sentence_english": "There was a sudden outbreak of flu in the region.", + "pos": "noun", + "word_frequency": 5142 + }, + { + "word": "pal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friend", + "example_sentence_english": "He's my best pal from childhood.", + "pos": "noun", + "word_frequency": 5143 + }, + { + "word": "perfection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flawlessness", + "example_sentence_english": "She strives for perfection in her work.", + "pos": "noun", + "word_frequency": 5145 + }, + { + "word": "pirate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sea robber", + "example_sentence_english": "The story was about a famous pirate.", + "pos": "noun", + "word_frequency": 5146 + }, + { + "word": "probe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigation", + "example_sentence_english": "The police launched a full probe into the incident.", + "pos": "noun", + "word_frequency": 5147 + }, + { + "word": "prohibit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forbid", + "example_sentence_english": "Smoking is prohibited in this area.", + "pos": "verb", + "word_frequency": 5148 + }, + { + "word": "quarterly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "every three months", + "example_sentence_english": "The reports are published quarterly.", + "pos": "adverb", + "word_frequency": 5149 + }, + { + "word": "recruit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlist", + "example_sentence_english": "The company plans to recruit new staff next month.", + "pos": "verb", + "word_frequency": 5150 + }, + { + "word": "rehabilitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restoration to health/normal life", + "example_sentence_english": "He is undergoing rehabilitation after his injury.", + "pos": "noun", + "word_frequency": 5151 + }, + { + "word": "remix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reworked version", + "example_sentence_english": "I prefer the remix of this song.", + "pos": "noun", + "word_frequency": 5153 + }, + { + "word": "resistant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposed to", + "example_sentence_english": "This material is resistant to water.", + "pos": "adjective", + "word_frequency": 5154 + }, + { + "word": "roller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cylindrical device", + "example_sentence_english": "She used a paint roller to cover the wall quickly.", + "pos": "noun", + "word_frequency": 5156 + }, + { + "word": "skinny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very thin", + "example_sentence_english": "He was a tall, skinny boy.", + "pos": "adjective", + "word_frequency": 5157 + }, + { + "word": "sneak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move secretly", + "example_sentence_english": "He tried to sneak out of the house unnoticed.", + "pos": "verb", + "word_frequency": 5158 + }, + { + "word": "sore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painful", + "example_sentence_english": "My muscles are sore after the workout.", + "pos": "adjective", + "word_frequency": 5159 + }, + { + "word": "spark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tiny fiery particle; a trace of a quality", + "example_sentence_english": "A tiny spark flew from the bonfire.", + "pos": "noun", + "word_frequency": 5160 + }, + { + "word": "speculation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the forming of a theory or conjecture without firm evidence", + "example_sentence_english": "There was much speculation about the company's future.", + "pos": "noun", + "word_frequency": 5161 + }, + { + "word": "steep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rising or falling sharply", + "example_sentence_english": "The path was very steep, making the climb difficult.", + "pos": "adjective", + "word_frequency": 5162 + }, + { + "word": "straw", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dried stalks of grain; a thin tube for drinking", + "example_sentence_english": "The farmer used straw to bed the animals.", + "pos": "noun", + "word_frequency": 5164 + }, + { + "word": "successor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that succeeds another", + "example_sentence_english": "The vice president was named as the CEO's successor.", + "pos": "noun", + "word_frequency": 5165 + }, + { + "word": "uncertain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not known or definite", + "example_sentence_english": "The future of the project remains uncertain.", + "pos": "adjective", + "word_frequency": 5166 + }, + { + "word": "upload", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transfer data to a larger computer system", + "example_sentence_english": "Please upload the document to the shared drive.", + "pos": "verb", + "word_frequency": 5167 + }, + { + "word": "vector", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a quantity having direction as well as magnitude", + "example_sentence_english": "In physics, force is a vector quantity.", + "pos": "noun", + "word_frequency": 5168 + }, + { + "word": "weigh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "find out how heavy something is", + "example_sentence_english": "We need to weigh the luggage before going to the airport.", + "pos": "verb", + "word_frequency": 5169 + }, + { + "word": "whatsoever", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at all (used for emphasis after a negative statement)", + "example_sentence_english": "There was no doubt whatsoever about his guilt.", + "pos": "adverb", + "word_frequency": 5170 + }, + { + "word": "wicked", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evil or morally wrong; excellent (informal)", + "example_sentence_english": "The wicked witch cast a spell.", + "pos": "adjective", + "word_frequency": 5171 + }, + { + "word": "absent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not present in a place, at an occasion, or in a thing", + "example_sentence_english": "She was absent from school due to illness.", + "pos": "adjective", + "word_frequency": 5173 + }, + { + "word": "acoustic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to sound or the sense of hearing", + "example_sentence_english": "The acoustic guitar has a rich, natural sound.", + "pos": "adjective", + "word_frequency": 5174 + }, + { + "word": "ancestor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person, typically one more remote than a grandparent, from whom one is descended", + "example_sentence_english": "My ancestors came from Ireland.", + "pos": "noun", + "word_frequency": 5175 + }, + { + "word": "atomic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to an atom or atoms", + "example_sentence_english": "The atomic bomb changed warfare forever.", + "pos": "adjective", + "word_frequency": 5176 + }, + { + "word": "bicycle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a vehicle with two wheels, propelled by pedals", + "example_sentence_english": "He rides his bicycle to work every day.", + "pos": "noun", + "word_frequency": 5177 + }, + { + "word": "bump", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sudden, jarring blow; a protuberance", + "example_sentence_english": "I hit a bump in the road.", + "pos": "noun", + "word_frequency": 5179 + }, + { + "word": "cart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strong open vehicle with two or four wheels, typically used for transport", + "example_sentence_english": "We loaded the groceries into the shopping cart.", + "pos": "noun", + "word_frequency": 5180 + }, + { + "word": "circus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a traveling company of acrobats, clowns, and other entertainers", + "example_sentence_english": "The children were excited to go to the circus.", + "pos": "noun", + "word_frequency": 5181 + }, + { + "word": "cocaine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an addictive drug", + "example_sentence_english": "The police seized a large amount of cocaine.", + "pos": "noun", + "word_frequency": 5183 + }, + { + "word": "compel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "force or oblige (someone) to do something", + "example_sentence_english": "The law will compel employers to provide health insurance.", + "pos": "verb", + "word_frequency": 5185 + }, + { + "word": "compile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "produce (a book, list, or other publication) by assembling information", + "example_sentence_english": "She needs to compile a report by Friday.", + "pos": "verb", + "word_frequency": 5186 + }, + { + "word": "complication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a difficulty or problem", + "example_sentence_english": "The surgery had an unexpected complication.", + "pos": "noun", + "word_frequency": 5187 + }, + { + "word": "cord", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a length of string, rope, or wire", + "example_sentence_english": "He tied the package with a piece of cord.", + "pos": "noun", + "word_frequency": 5188 + }, + { + "word": "cyber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of the culture of computers, information technology, and virtual reality", + "example_sentence_english": "Cyber security is a growing concern for businesses.", + "pos": "adjective", + "word_frequency": 5189 + }, + { + "word": "defendant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person, company, or institution sued or accused in a court of law", + "example_sentence_english": "The defendant pleaded not guilty to the charges.", + "pos": "noun", + "word_frequency": 5191 + }, + { + "word": "dense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closely compacted in substance; stupid", + "example_sentence_english": "The forest was very dense, making it hard to walk through.", + "pos": "adjective", + "word_frequency": 5192 + }, + { + "word": "doctrine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a belief or set of beliefs held and taught by a Church, political party, or other group", + "example_sentence_english": "The new economic doctrine was widely debated.", + "pos": "noun", + "word_frequency": 5193 + }, + { + "word": "freshman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a first-year student at a university, college, or high school", + "example_sentence_english": "She is a freshman at the university this year.", + "pos": "noun", + "word_frequency": 5194 + }, + { + "word": "furious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely angry", + "example_sentence_english": "He was furious when he found out about the lie.", + "pos": "adjective", + "word_frequency": 5195 + }, + { + "word": "gameplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the way a game is played, especially the rules and features that make it enjoyable or interesting", + "example_sentence_english": "The game's innovative gameplay kept players engaged for hours.", + "pos": "noun", + "word_frequency": 5196 + }, + { + "word": "geography", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the study of the physical features of the earth and its atmosphere", + "example_sentence_english": "We learned about the geography of South America.", + "pos": "noun", + "word_frequency": 5197 + }, + { + "word": "gig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a live performance by a musician or group; a temporary job", + "example_sentence_english": "The band played a great gig last night.", + "pos": "noun", + "word_frequency": 5198 + }, + { + "word": "habitat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the natural home or environment of an animal, plant, or other organism", + "example_sentence_english": "The panda's natural habitat is bamboo forests.", + "pos": "noun", + "word_frequency": 5199 + }, + { + "word": "hazard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "danger or risk", + "example_sentence_english": "Driving in icy conditions can be a real hazard.", + "pos": "noun", + "word_frequency": 5200 + }, + { + "word": "hydrogen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chemical element", + "example_sentence_english": "Water is made of hydrogen and oxygen.", + "pos": "noun", + "word_frequency": 5201 + }, + { + "word": "imply", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suggest without stating directly", + "example_sentence_english": "His silence seemed to imply agreement.", + "pos": "verb", + "word_frequency": 5202 + }, + { + "word": "intact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undamaged; complete", + "example_sentence_english": "Despite the fall, the vase remained intact.", + "pos": "adjective", + "word_frequency": 5203 + }, + { + "word": "intake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the amount of something taken in", + "example_sentence_english": "Her daily intake of water is very high.", + "pos": "noun", + "word_frequency": 5204 + }, + { + "word": "irrelevant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not important or not related", + "example_sentence_english": "That information is completely irrelevant to our discussion.", + "pos": "adjective", + "word_frequency": 5205 + }, + { + "word": "jaw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "either of the two bones that form the framework of the mouth", + "example_sentence_english": "He clenched his jaw in frustration.", + "pos": "noun", + "word_frequency": 5206 + }, + { + "word": "kitty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a young cat; a fund of money", + "example_sentence_english": "The little kitty was playing with a ball of yarn.", + "pos": "noun", + "word_frequency": 5208 + }, + { + "word": "lawn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an area of short grass in a garden", + "example_sentence_english": "The children were playing on the lawn.", + "pos": "noun", + "word_frequency": 5210 + }, + { + "word": "needle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin, sharp piece of metal used for sewing or injections", + "example_sentence_english": "She threaded the needle carefully.", + "pos": "noun", + "word_frequency": 5216 + }, + { + "word": "oval", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a rounded shape like an egg", + "example_sentence_english": "The table had an oval top.", + "pos": "adjective", + "word_frequency": 5219 + }, + { + "word": "pity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sympathy and sorrow for the sufferings of others", + "example_sentence_english": "I felt great pity for the homeless man.", + "pos": "noun", + "word_frequency": 5220 + }, + { + "word": "pond", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small body of still water", + "example_sentence_english": "Ducks were swimming on the pond.", + "pos": "noun", + "word_frequency": 5221 + }, + { + "word": "porter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person employed to carry luggage; a dark beer", + "example_sentence_english": "The porter helped us with our bags at the hotel.", + "pos": "noun", + "word_frequency": 5222 + }, + { + "word": "prey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal hunted or caught for food", + "example_sentence_english": "The lion stalked its prey.", + "pos": "noun", + "word_frequency": 5223 + }, + { + "word": "prophet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who speaks for God or a deity", + "example_sentence_english": "The prophet delivered a message of hope.", + "pos": "noun", + "word_frequency": 5224 + }, + { + "word": "referendum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a direct vote by the electorate on a particular proposal", + "example_sentence_english": "The country held a referendum on joining the union.", + "pos": "noun", + "word_frequency": 5226 + }, + { + "word": "regulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to control or maintain the rate or speed of", + "example_sentence_english": "The government regulates the banking industry.", + "pos": "verb", + "word_frequency": 5227 + }, + { + "word": "ruby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a precious red gemstone", + "example_sentence_english": "She wore a necklace with a beautiful ruby.", + "pos": "noun", + "word_frequency": 5228 + }, + { + "word": "seasonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or characteristic of a particular season", + "example_sentence_english": "Strawberries are a seasonal fruit.", + "pos": "adjective", + "word_frequency": 5230 + }, + { + "word": "sensible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practical and reasonable", + "example_sentence_english": "It was a sensible decision to save money.", + "pos": "adjective", + "word_frequency": 5231 + }, + { + "word": "sequel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a published, broadcast, or recorded work that continues the story or develops the theme of an earlier one", + "example_sentence_english": "The movie's sequel was even better than the original.", + "pos": "noun", + "word_frequency": 5232 + }, + { + "word": "teammate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a member of the same team", + "example_sentence_english": "My teammate scored the winning goal.", + "pos": "noun", + "word_frequency": 5234 + }, + { + "word": "township", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a division of a county with some corporate powers", + "example_sentence_english": "The township council held a meeting.", + "pos": "noun", + "word_frequency": 5235 + }, + { + "word": "usb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Universal Serial Bus (a standard for connecting computer peripherals)", + "example_sentence_english": "I need a USB cable to charge my phone.", + "pos": "noun", + "word_frequency": 5236 + }, + { + "word": "wade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk with difficulty through water or mud", + "example_sentence_english": "We had to wade through the shallow river.", + "pos": "verb", + "word_frequency": 5238 + }, + { + "word": "whale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a very large marine mammal", + "example_sentence_english": "The whale surfaced near our boat.", + "pos": "noun", + "word_frequency": 5239 + }, + { + "word": "writing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act or process of producing text", + "example_sentence_english": "Her writing is clear and concise.", + "pos": "noun", + "word_frequency": 5240 + }, + { + "word": "admire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to respect and approve of someone or something", + "example_sentence_english": "I admire her dedication to her work.", + "pos": "verb", + "word_frequency": 5241 + }, + { + "word": "amber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard, transparent, yellowish-brown substance", + "example_sentence_english": "The traffic light turned amber.", + "pos": "noun", + "word_frequency": 5243 + }, + { + "word": "ankle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the joint connecting the foot to the leg", + "example_sentence_english": "She twisted her ankle playing soccer.", + "pos": "noun", + "word_frequency": 5244 + }, + { + "word": "armor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protective covering", + "example_sentence_english": "Knights wore heavy armor in battle.", + "pos": "noun", + "word_frequency": 5245 + }, + { + "word": "autism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a developmental disorder", + "example_sentence_english": "Autism affects how a person communicates and interacts.", + "pos": "noun", + "word_frequency": 5246 + }, + { + "word": "bachelor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unmarried man; a university degree", + "example_sentence_english": "He earned his bachelor's degree in engineering.", + "pos": "noun", + "word_frequency": 5247 + }, + { + "word": "berry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, pulpy fruit", + "example_sentence_english": "Strawberries are a type of berry.", + "pos": "noun", + "word_frequency": 5248 + }, + { + "word": "bullying", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of force or threats to abuse or intimidate", + "example_sentence_english": "Schools are working to prevent bullying.", + "pos": "noun", + "word_frequency": 5251 + }, + { + "word": "capitalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an economic and political system", + "example_sentence_english": "Capitalism is characterized by private ownership.", + "pos": "noun", + "word_frequency": 5252 + }, + { + "word": "caution", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "care taken to avoid danger or mistakes", + "example_sentence_english": "Proceed with caution on icy roads.", + "pos": "noun", + "word_frequency": 5253 + }, + { + "word": "certification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official document attesting to a status or level of achievement", + "example_sentence_english": "She received her teaching certification last year.", + "pos": "noun", + "word_frequency": 5254 + }, + { + "word": "clan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of close-knit and interrelated families", + "example_sentence_english": "The Scottish clans have a rich history.", + "pos": "noun", + "word_frequency": 5255 + }, + { + "word": "clash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a violent confrontation or argument", + "example_sentence_english": "There was a clash between the two rival gangs.", + "pos": "noun", + "word_frequency": 5256 + }, + { + "word": "compatible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to exist or occur together without conflict", + "example_sentence_english": "Their personalities are very compatible.", + "pos": "adjective", + "word_frequency": 5257 + }, + { + "word": "condemn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "express complete disapproval of", + "example_sentence_english": "The government condemned the terrorist attack.", + "pos": "verb", + "word_frequency": 5258 + }, + { + "word": "configuration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an arrangement of parts or elements", + "example_sentence_english": "Check the network configuration settings.", + "pos": "noun", + "word_frequency": 5259 + }, + { + "word": "curiosity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong desire to know or learn something", + "example_sentence_english": "Her curiosity led her to explore new subjects.", + "pos": "noun", + "word_frequency": 5260 + }, + { + "word": "explosive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able or likely to explode", + "example_sentence_english": "The situation became explosive after the announcement.", + "pos": "adjective", + "word_frequency": 5261 + }, + { + "word": "fortunate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favored by or involving good luck", + "example_sentence_english": "We were fortunate to find a parking spot so quickly.", + "pos": "adjective", + "word_frequency": 5262 + }, + { + "word": "frontier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a border separating two countries; the extreme limit of settled land", + "example_sentence_english": "Space is often called the final frontier.", + "pos": "noun", + "word_frequency": 5263 + }, + { + "word": "frustration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the feeling of being upset or annoyed", + "example_sentence_english": "He felt a lot of frustration with the slow progress.", + "pos": "noun", + "word_frequency": 5264 + }, + { + "word": "geographic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to geography", + "example_sentence_english": "They studied the geographic features of the region.", + "pos": "adjective", + "word_frequency": 5265 + }, + { + "word": "grasp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a firm hold or understanding", + "example_sentence_english": "He has a good grasp of the subject.", + "pos": "noun", + "word_frequency": 5268 + }, + { + "word": "handy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "useful or convenient", + "example_sentence_english": "It's handy to have a map with you.", + "pos": "adjective", + "word_frequency": 5269 + }, + { + "word": "hardcore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme or uncompromising", + "example_sentence_english": "He's a hardcore fan of the band.", + "pos": "adjective", + "word_frequency": 5270 + }, + { + "word": "harmful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing or likely to cause harm", + "example_sentence_english": "Smoking is harmful to your health.", + "pos": "adjective", + "word_frequency": 5271 + }, + { + "word": "headache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pain in the head", + "example_sentence_english": "I have a terrible headache.", + "pos": "noun", + "word_frequency": 5272 + }, + { + "word": "hispanic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Spain or Spanish-speaking countries", + "example_sentence_english": "The Hispanic population is growing rapidly.", + "pos": "adjective", + "word_frequency": 5273 + }, + { + "word": "incentive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that motivates or encourages one to do something", + "example_sentence_english": "The company offered a bonus as an incentive.", + "pos": "noun", + "word_frequency": 5274 + }, + { + "word": "inclusive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "including all types of people or things", + "example_sentence_english": "The school promotes an inclusive environment.", + "pos": "adjective", + "word_frequency": 5275 + }, + { + "word": "madness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being mentally ill; extreme folly", + "example_sentence_english": "The crowd descended into madness after the goal.", + "pos": "noun", + "word_frequency": 5278 + }, + { + "word": "mandate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official order or commission to do something", + "example_sentence_english": "The new policy has a clear mandate from the voters.", + "pos": "noun", + "word_frequency": 5279 + }, + { + "word": "manga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Japanese comics", + "example_sentence_english": "She loves reading manga in her free time.", + "pos": "noun", + "word_frequency": 5280 + }, + { + "word": "memorable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easy to remember", + "example_sentence_english": "It was a truly memorable experience.", + "pos": "adjective", + "word_frequency": 5281 + }, + { + "word": "merger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combination of two companies", + "example_sentence_english": "The two companies announced a merger.", + "pos": "noun", + "word_frequency": 5282 + }, + { + "word": "poker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "card game", + "example_sentence_english": "They played poker all night.", + "pos": "noun", + "word_frequency": 5286 + }, + { + "word": "portable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easy to carry", + "example_sentence_english": "This laptop is very portable.", + "pos": "adjective", + "word_frequency": 5287 + }, + { + "word": "ranking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "position on a list", + "example_sentence_english": "Her ranking improved after the last competition.", + "pos": "noun", + "word_frequency": 5289 + }, + { + "word": "robbery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "act of stealing", + "example_sentence_english": "There was a bank robbery last night.", + "pos": "noun", + "word_frequency": 5291 + }, + { + "word": "rub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move your hand over a surface", + "example_sentence_english": "She rubbed her eyes sleepily.", + "pos": "verb", + "word_frequency": 5292 + }, + { + "word": "scatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to throw in different directions", + "example_sentence_english": "The wind scattered the leaves across the yard.", + "pos": "verb", + "word_frequency": 5294 + }, + { + "word": "scout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person sent to gather information", + "example_sentence_english": "The scout reported back to the team.", + "pos": "noun", + "word_frequency": 5295 + }, + { + "word": "sexuality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual orientation or activity", + "example_sentence_english": "Discussions about human sexuality are becoming more open.", + "pos": "noun", + "word_frequency": 5296 + }, + { + "word": "slap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quick hit with an open hand", + "example_sentence_english": "He gave the table a loud slap.", + "pos": "noun", + "word_frequency": 5297 + }, + { + "word": "steak", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a slice of meat", + "example_sentence_english": "I ordered a medium-rare steak.", + "pos": "noun", + "word_frequency": 5298 + }, + { + "word": "succession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a series of things following one another", + "example_sentence_english": "There has been a succession of bad weather days.", + "pos": "noun", + "word_frequency": 5299 + }, + { + "word": "superintendent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who manages or directs", + "example_sentence_english": "The school superintendent announced new policies.", + "pos": "noun", + "word_frequency": 5300 + }, + { + "word": "suspicion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling that something is wrong", + "example_sentence_english": "He looked at her with suspicion.", + "pos": "noun", + "word_frequency": 5301 + }, + { + "word": "sweep", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to clean with a broom", + "example_sentence_english": "Please sweep the floor.", + "pos": "verb", + "word_frequency": 5302 + }, + { + "word": "tactical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to strategy", + "example_sentence_english": "They made a tactical decision to retreat.", + "pos": "adjective", + "word_frequency": 5303 + }, + { + "word": "therapist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who provides therapy", + "example_sentence_english": "She decided to see a therapist for her anxiety.", + "pos": "noun", + "word_frequency": 5304 + }, + { + "word": "thereafter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "after that", + "example_sentence_english": "He moved to London in 2005 and lived there thereafter.", + "pos": "adverb", + "word_frequency": 5305 + }, + { + "word": "thorough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete and careful", + "example_sentence_english": "She did a thorough job cleaning the house.", + "pos": "adjective", + "word_frequency": 5306 + }, + { + "word": "tuition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fee for instruction", + "example_sentence_english": "University tuition fees are very high.", + "pos": "noun", + "word_frequency": 5307 + }, + { + "word": "tumor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an abnormal growth of tissue", + "example_sentence_english": "The doctor found a small tumor.", + "pos": "noun", + "word_frequency": 5308 + }, + { + "word": "wholesale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in large quantities", + "example_sentence_english": "They buy their products wholesale.", + "pos": "adverb", + "word_frequency": 5310 + }, + { + "word": "administer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manage or supervise", + "example_sentence_english": "The government will administer the new program.", + "pos": "verb", + "word_frequency": 5312 + }, + { + "word": "architectural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to architecture", + "example_sentence_english": "The city has many beautiful architectural designs.", + "pos": "adjective", + "word_frequency": 5313 + }, + { + "word": "artillery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "large guns used in warfare", + "example_sentence_english": "The army used heavy artillery in the battle.", + "pos": "noun", + "word_frequency": 5314 + }, + { + "word": "assemble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put together", + "example_sentence_english": "We need to assemble the new furniture.", + "pos": "verb", + "word_frequency": 5315 + }, + { + "word": "canvas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong, coarse cloth", + "example_sentence_english": "The artist painted on a large canvas.", + "pos": "noun", + "word_frequency": 5318 + }, + { + "word": "canyon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a deep gorge", + "example_sentence_english": "The Grand Canyon is a famous natural wonder.", + "pos": "noun", + "word_frequency": 5319 + }, + { + "word": "cheek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the side of the face below the eye", + "example_sentence_english": "She kissed her baby's soft cheek.", + "pos": "noun", + "word_frequency": 5321 + }, + { + "word": "circular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the form of a circle; round", + "example_sentence_english": "The table was circular, perfect for a small group.", + "pos": "adjective", + "word_frequency": 5324 + }, + { + "word": "circulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "movement of blood around the body; distribution of something", + "example_sentence_english": "Regular exercise improves blood circulation.", + "pos": "noun", + "word_frequency": 5325 + }, + { + "word": "clearance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "official permission; space or distance", + "example_sentence_english": "The plane received clearance for takeoff.", + "pos": "noun", + "word_frequency": 5326 + }, + { + "word": "coincidence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a remarkable concurrence of events or circumstances without apparent causal connection", + "example_sentence_english": "It was a strange coincidence that we both wore the same outfit.", + "pos": "noun", + "word_frequency": 5327 + }, + { + "word": "comedian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an entertainer who performs comedy", + "example_sentence_english": "The comedian had the audience laughing throughout the show.", + "pos": "noun", + "word_frequency": 5328 + }, + { + "word": "conscience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an inner feeling or voice viewed as acting as a guide to the rightness or wrongness of one's behavior", + "example_sentence_english": "His conscience bothered him after he lied.", + "pos": "noun", + "word_frequency": 5329 + }, + { + "word": "countless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "too many to be counted; innumerable", + "example_sentence_english": "There are countless stars in the night sky.", + "pos": "adjective", + "word_frequency": 5330 + }, + { + "word": "curry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dish of meat, fish, or vegetables cooked in a sauce with spices", + "example_sentence_english": "I love to eat chicken curry with rice.", + "pos": "noun", + "word_frequency": 5331 + }, + { + "word": "dame", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a title given to a woman equivalent to a knight", + "example_sentence_english": "Dame Judi Dench is a renowned actress.", + "pos": "noun", + "word_frequency": 5332 + }, + { + "word": "deceased", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dead", + "example_sentence_english": "The deceased's family gathered for the funeral.", + "pos": "adjective", + "word_frequency": 5333 + }, + { + "word": "dedication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being committed to a task or purpose", + "example_sentence_english": "Her dedication to her studies paid off with excellent grades.", + "pos": "noun", + "word_frequency": 5334 + }, + { + "word": "detention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of detaining someone or the state of being detained in official custody", + "example_sentence_english": "He was given detention for misbehaving in class.", + "pos": "noun", + "word_frequency": 5335 + }, + { + "word": "enforce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compel observance of or compliance with (a law, rule, or obligation)", + "example_sentence_english": "The police are here to enforce the law.", + "pos": "verb", + "word_frequency": 5337 + }, + { + "word": "explicit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stated clearly and in detail, leaving no room for confusion or doubt", + "example_sentence_english": "He gave explicit instructions on how to assemble the furniture.", + "pos": "adjective", + "word_frequency": 5338 + }, + { + "word": "explicitly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a clear and detailed manner, leaving no room for confusion or doubt", + "example_sentence_english": "The rules were explicitly stated in the contract.", + "pos": "adverb", + "word_frequency": 5339 + }, + { + "word": "flu", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "influenza, a common infectious disease", + "example_sentence_english": "I caught the flu and had to stay home from work.", + "pos": "noun", + "word_frequency": 5341 + }, + { + "word": "forbid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refuse to allow (something)", + "example_sentence_english": "My parents forbid me from staying out late.", + "pos": "verb", + "word_frequency": 5342 + }, + { + "word": "fraction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small or tiny part, amount, or proportion of something", + "example_sentence_english": "Only a small fraction of the students passed the difficult exam.", + "pos": "noun", + "word_frequency": 5343 + }, + { + "word": "infantry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soldiers who fight on foot", + "example_sentence_english": "The infantry advanced slowly across the field.", + "pos": "noun", + "word_frequency": 5344 + }, + { + "word": "integral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necessary to make a whole complete; essential or fundamental", + "example_sentence_english": "Trust is an integral part of any strong relationship.", + "pos": "adjective", + "word_frequency": 5345 + }, + { + "word": "kidnap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abduct (someone) and hold them captive", + "example_sentence_english": "The criminals tried to kidnap the wealthy businessman.", + "pos": "verb", + "word_frequency": 5348 + }, + { + "word": "lightly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with little weight or force", + "example_sentence_english": "She touched his arm lightly to get his attention.", + "pos": "adverb", + "word_frequency": 5349 + }, + { + "word": "marble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hard crystalline metamorphic form of limestone, typically white with mottlings or streaks of color, that is capable of taking a polish and is used in sculpture and architecture", + "example_sentence_english": "The statue was carved from white marble.", + "pos": "noun", + "word_frequency": 5350 + }, + { + "word": "maritime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connected with the sea, especially in relation to seafaring commercial or military activity", + "example_sentence_english": "The city has a rich maritime history.", + "pos": "adjective", + "word_frequency": 5351 + }, + { + "word": "melt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make or become liquefied by heat", + "example_sentence_english": "The ice cream will melt quickly in the sun.", + "pos": "verb", + "word_frequency": 5352 + }, + { + "word": "nominee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is proposed or formally entered as a candidate for an office or as the recipient of a grant or award", + "example_sentence_english": "She was a strong nominee for the Best Actress award.", + "pos": "noun", + "word_frequency": 5355 + }, + { + "word": "oath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a solemn promise, often invoking a divine witness, regarding one's future action or behavior", + "example_sentence_english": "He took an oath to tell the truth in court.", + "pos": "noun", + "word_frequency": 5356 + }, + { + "word": "offence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an illegal act; a crime (UK spelling)", + "example_sentence_english": "Driving without a license is a serious offence.", + "pos": "noun", + "word_frequency": 5357 + }, + { + "word": "packaging", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "materials used to wrap or protect goods", + "example_sentence_english": "The new product has attractive packaging.", + "pos": "noun", + "word_frequency": 5358 + }, + { + "word": "patriot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who vigorously supports their country and is prepared to defend it against enemies or detractors", + "example_sentence_english": "He was a true patriot, always putting his country first.", + "pos": "noun", + "word_frequency": 5359 + }, + { + "word": "pee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urinate", + "example_sentence_english": "The dog needs to pee.", + "pos": "verb", + "word_frequency": 5360 + }, + { + "word": "pillow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft support for the head", + "example_sentence_english": "I rest my head on a soft pillow.", + "pos": "noun", + "word_frequency": 5361 + }, + { + "word": "polar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a pole or extreme", + "example_sentence_english": "The polar ice caps are melting.", + "pos": "adjective", + "word_frequency": 5362 + }, + { + "word": "prediction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a forecast", + "example_sentence_english": "Her prediction about the weather was accurate.", + "pos": "noun", + "word_frequency": 5363 + }, + { + "word": "preview", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an advance showing", + "example_sentence_english": "We watched a preview of the new movie.", + "pos": "noun", + "word_frequency": 5364 + }, + { + "word": "puzzle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a game or problem", + "example_sentence_english": "I enjoy solving crossword puzzles.", + "pos": "noun", + "word_frequency": 5365 + }, + { + "word": "rapper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hip-hop artist", + "example_sentence_english": "The rapper performed his new song.", + "pos": "noun", + "word_frequency": 5366 + }, + { + "word": "reconstruction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of rebuilding", + "example_sentence_english": "The city began the reconstruction after the earthquake.", + "pos": "noun", + "word_frequency": 5368 + }, + { + "word": "renowned", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "famous", + "example_sentence_english": "He is a renowned scientist in his field.", + "pos": "adjective", + "word_frequency": 5369 + }, + { + "word": "revelation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a surprising disclosure", + "example_sentence_english": "The discovery was a revelation to the scientific community.", + "pos": "noun", + "word_frequency": 5370 + }, + { + "word": "skirt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a garment worn by women", + "example_sentence_english": "She wore a long blue skirt.", + "pos": "noun", + "word_frequency": 5372 + }, + { + "word": "socially", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a social manner", + "example_sentence_english": "He is very active socially.", + "pos": "adverb", + "word_frequency": 5373 + }, + { + "word": "spa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a health resort", + "example_sentence_english": "We spent the day relaxing at the spa.", + "pos": "noun", + "word_frequency": 5374 + }, + { + "word": "spike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sharp point; a sudden increase", + "example_sentence_english": "There was a sudden spike in temperatures.", + "pos": "noun", + "word_frequency": 5375 + }, + { + "word": "sprint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "run at full speed", + "example_sentence_english": "He had to sprint to catch the bus.", + "pos": "verb", + "word_frequency": 5376 + }, + { + "word": "stir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mix with a spoon", + "example_sentence_english": "Please stir the soup slowly.", + "pos": "verb", + "word_frequency": 5377 + }, + { + "word": "substantially", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to a great extent", + "example_sentence_english": "The cost has increased substantially.", + "pos": "adverb", + "word_frequency": 5378 + }, + { + "word": "suburb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an outlying district of a city", + "example_sentence_english": "They live in a quiet suburb outside the city.", + "pos": "noun", + "word_frequency": 5379 + }, + { + "word": "superb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellent", + "example_sentence_english": "The food at the restaurant was superb.", + "pos": "adjective", + "word_frequency": 5380 + }, + { + "word": "supposedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to what is generally believed", + "example_sentence_english": "He supposedly won the lottery.", + "pos": "adverb", + "word_frequency": 5381 + }, + { + "word": "tab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small flap; a bill", + "example_sentence_english": "Can you open a new tab in your browser?", + "pos": "noun", + "word_frequency": 5382 + }, + { + "word": "tendency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an inclination", + "example_sentence_english": "She has a tendency to procrastinate.", + "pos": "noun", + "word_frequency": 5383 + }, + { + "word": "toast", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sliced bread browned by heat", + "example_sentence_english": "I had toast and coffee for breakfast.", + "pos": "noun", + "word_frequency": 5386 + }, + { + "word": "touchdown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a score in American football; landing of an aircraft", + "example_sentence_english": "The team scored a touchdown in the last minute.", + "pos": "noun", + "word_frequency": 5387 + }, + { + "word": "trait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a distinguishing quality", + "example_sentence_english": "Honesty is a valuable trait.", + "pos": "noun", + "word_frequency": 5388 + }, + { + "word": "trek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "go on a long arduous journey", + "example_sentence_english": "They decided to trek across the mountains.", + "pos": "verb", + "word_frequency": 5389 + }, + { + "word": "tricky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difficult or complicated", + "example_sentence_english": "This puzzle is quite tricky.", + "pos": "adjective", + "word_frequency": 5390 + }, + { + "word": "triumph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a great victory or achievement", + "example_sentence_english": "Winning the championship was a great triumph.", + "pos": "noun", + "word_frequency": 5391 + }, + { + "word": "underwear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clothes worn next to the skin", + "example_sentence_english": "She bought new underwear.", + "pos": "noun", + "word_frequency": 5393 + }, + { + "word": "viable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capable of working successfully", + "example_sentence_english": "The plan is not economically viable.", + "pos": "adjective", + "word_frequency": 5395 + }, + { + "word": "waist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the part of the body between the ribs and hips", + "example_sentence_english": "She tied a belt around her waist.", + "pos": "noun", + "word_frequency": 5396 + }, + { + "word": "wit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mental sharpness and inventiveness", + "example_sentence_english": "He is known for his quick wit.", + "pos": "noun", + "word_frequency": 5397 + }, + { + "word": "wreck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destroy or severely damage", + "example_sentence_english": "The storm could wreck the ship.", + "pos": "verb", + "word_frequency": 5398 + }, + { + "word": "absurd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wildly unreasonable, illogical", + "example_sentence_english": "That's an absurd idea.", + "pos": "adjective", + "word_frequency": 5399 + }, + { + "word": "accessory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an extra item of dress or equipment", + "example_sentence_english": "She bought a new accessory for her phone.", + "pos": "noun", + "word_frequency": 5400 + }, + { + "word": "ambitious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a strong desire for success", + "example_sentence_english": "She is very ambitious and works hard.", + "pos": "adjective", + "word_frequency": 5403 + }, + { + "word": "ballet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a classical dance form", + "example_sentence_english": "They went to see a ballet performance.", + "pos": "noun", + "word_frequency": 5405 + }, + { + "word": "bargain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing bought or offered for sale more cheaply than is usual or expected", + "example_sentence_english": "I got a great bargain on this shirt.", + "pos": "noun", + "word_frequency": 5406 + }, + { + "word": "binary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to, composed of, or involving two things", + "example_sentence_english": "Computers use binary code.", + "pos": "adjective", + "word_frequency": 5407 + }, + { + "word": "blend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix together", + "example_sentence_english": "Blend the ingredients until smooth.", + "pos": "verb", + "word_frequency": 5408 + }, + { + "word": "brake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device used for slowing or stopping a vehicle", + "example_sentence_english": "He pressed the brake pedal.", + "pos": "noun", + "word_frequency": 5409 + }, + { + "word": "businessman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a man who works in business", + "example_sentence_english": "My father is a businessman.", + "pos": "noun", + "word_frequency": 5410 + }, + { + "word": "cab", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a taxi", + "example_sentence_english": "Let's take a cab to the airport.", + "pos": "noun", + "word_frequency": 5411 + }, + { + "word": "collision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an instance of one moving object striking violently against another", + "example_sentence_english": "There was a collision between two cars.", + "pos": "noun", + "word_frequency": 5415 + }, + { + "word": "compassion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sympathetic pity and concern for the sufferings or misfortunes of others", + "example_sentence_english": "She showed great compassion for the victims.", + "pos": "noun", + "word_frequency": 5417 + }, + { + "word": "consume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to eat, drink, or use up", + "example_sentence_english": "We consume a lot of electricity.", + "pos": "verb", + "word_frequency": 5418 + }, + { + "word": "correction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action or process of correcting something", + "example_sentence_english": "Please make the necessary corrections.", + "pos": "noun", + "word_frequency": 5419 + }, + { + "word": "cough", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to expel air from the lungs with a sudden sharp sound", + "example_sentence_english": "He started to cough loudly.", + "pos": "verb", + "word_frequency": 5420 + }, + { + "word": "czech", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the Czech Republic or its language", + "example_sentence_english": "She is learning the Czech language.", + "pos": "adjective", + "word_frequency": 5421 + }, + { + "word": "depot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place for the storage of large quantities of goods", + "example_sentence_english": "The bus leaves from the main depot.", + "pos": "noun", + "word_frequency": 5422 + }, + { + "word": "distress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme anxiety, sorrow, or pain", + "example_sentence_english": "The animal was in great distress.", + "pos": "noun", + "word_frequency": 5423 + }, + { + "word": "documentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material that provides official information or evidence", + "example_sentence_english": "Please bring all the necessary documentation.", + "pos": "noun", + "word_frequency": 5424 + }, + { + "word": "dramatically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a sudden and striking manner", + "example_sentence_english": "The situation changed dramatically.", + "pos": "adverb", + "word_frequency": 5425 + }, + { + "word": "elegant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graceful and stylish in appearance or manner", + "example_sentence_english": "She wore an elegant dress.", + "pos": "adjective", + "word_frequency": 5426 + }, + { + "word": "elevator", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a machine that carries people or goods up and down in buildings", + "example_sentence_english": "Let's take the elevator to the tenth floor.", + "pos": "noun", + "word_frequency": 5427 + }, + { + "word": "feast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large meal, typically a celebratory one", + "example_sentence_english": "We prepared a feast for Thanksgiving.", + "pos": "noun", + "word_frequency": 5429 + }, + { + "word": "frost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a deposit of small white ice crystals formed on surfaces", + "example_sentence_english": "There was a thick layer of frost on the car.", + "pos": "noun", + "word_frequency": 5432 + }, + { + "word": "herald", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that announces or signals the approach of something", + "example_sentence_english": "The robin is a herald of spring.", + "pos": "noun", + "word_frequency": 5434 + }, + { + "word": "hike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to walk a long distance, especially in the country or mountains", + "example_sentence_english": "We decided to hike to the top of the mountain.", + "pos": "verb", + "word_frequency": 5435 + }, + { + "word": "hollow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a hole or empty space inside", + "example_sentence_english": "The tree trunk was hollow.", + "pos": "adjective", + "word_frequency": 5436 + }, + { + "word": "homeland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's native land", + "example_sentence_english": "He returned to his homeland after many years.", + "pos": "noun", + "word_frequency": 5437 + }, + { + "word": "internationally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worldwide; globally", + "example_sentence_english": "The company operates internationally.", + "pos": "adverb", + "word_frequency": 5440 + }, + { + "word": "lame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to walk properly; unconvincing", + "example_sentence_english": "He gave a lame excuse for being late.", + "pos": "adjective", + "word_frequency": 5444 + }, + { + "word": "licensing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the granting of a license", + "example_sentence_english": "The company handles software licensing.", + "pos": "noun", + "word_frequency": 5445 + }, + { + "word": "lily", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of flower", + "example_sentence_english": "She picked a beautiful lily from the garden.", + "pos": "noun", + "word_frequency": 5446 + }, + { + "word": "locker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small lockable cupboard", + "example_sentence_english": "He put his books in his locker.", + "pos": "noun", + "word_frequency": 5447 + }, + { + "word": "mainland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large continuous extent of land", + "example_sentence_english": "They traveled from the island to the mainland.", + "pos": "noun", + "word_frequency": 5448 + }, + { + "word": "meditation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the practice of focusing one's mind", + "example_sentence_english": "She finds peace through daily meditation.", + "pos": "noun", + "word_frequency": 5449 + }, + { + "word": "messenger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who carries a message", + "example_sentence_english": "The messenger delivered the urgent package.", + "pos": "noun", + "word_frequency": 5450 + }, + { + "word": "pencil", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a writing implement", + "example_sentence_english": "Can I borrow your pencil?", + "pos": "noun", + "word_frequency": 5453 + }, + { + "word": "philosophical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to philosophy", + "example_sentence_english": "He has a very philosophical approach to life.", + "pos": "adjective", + "word_frequency": 5454 + }, + { + "word": "plasma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a component of blood; a state of matter", + "example_sentence_english": "The doctor ordered a plasma test.", + "pos": "noun", + "word_frequency": 5456 + }, + { + "word": "plea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an urgent request; a defendant's answer to a charge", + "example_sentence_english": "He made a plea for help.", + "pos": "noun", + "word_frequency": 5457 + }, + { + "word": "purse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small bag for money or personal items", + "example_sentence_english": "She keeps her keys in her purse.", + "pos": "noun", + "word_frequency": 5458 + }, + { + "word": "quarterback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a player in American football", + "example_sentence_english": "The quarterback threw a long pass.", + "pos": "noun", + "word_frequency": 5459 + }, + { + "word": "ref", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short for referee", + "example_sentence_english": "The ref blew the whistle.", + "pos": "noun", + "word_frequency": 5461 + }, + { + "word": "relieve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ease pain or distress; to replace", + "example_sentence_english": "The medicine will relieve your headache.", + "pos": "verb", + "word_frequency": 5462 + }, + { + "word": "reservation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an arrangement to have something held; a doubt", + "example_sentence_english": "I made a dinner reservation for two.", + "pos": "noun", + "word_frequency": 5463 + }, + { + "word": "rhetoric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the art of effective speaking or writing", + "example_sentence_english": "His speech was full of powerful rhetoric.", + "pos": "noun", + "word_frequency": 5464 + }, + { + "word": "salvation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preservation from harm or ruin; deliverance from sin", + "example_sentence_english": "Many seek salvation through faith.", + "pos": "noun", + "word_frequency": 5465 + }, + { + "word": "sanction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "official permission or approval; a penalty for disobedience", + "example_sentence_english": "The UN imposed sanctions on the country.", + "pos": "noun", + "word_frequency": 5466 + }, + { + "word": "secular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not religious or spiritual", + "example_sentence_english": "The country has a secular government.", + "pos": "adjective", + "word_frequency": 5467 + }, + { + "word": "sensitivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being sensitive", + "example_sentence_english": "She showed great sensitivity to his feelings.", + "pos": "noun", + "word_frequency": 5468 + }, + { + "word": "sigh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exhale audibly", + "example_sentence_english": "She let out a long sigh of relief.", + "pos": "verb", + "word_frequency": 5470 + }, + { + "word": "sixteen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 16", + "example_sentence_english": "There are sixteen students in the class.", + "pos": "numeral", + "word_frequency": 5471 + }, + { + "word": "sovereign", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "possessing supreme power; independent", + "example_sentence_english": "The country is a sovereign state.", + "pos": "adjective", + "word_frequency": 5472 + }, + { + "word": "specification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a detailed description of requirements", + "example_sentence_english": "Please check the product specifications.", + "pos": "noun", + "word_frequency": 5473 + }, + { + "word": "spouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a husband or wife", + "example_sentence_english": "Please list your spouse's name.", + "pos": "noun", + "word_frequency": 5474 + }, + { + "word": "supervisor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who supervises", + "example_sentence_english": "My supervisor approved the project.", + "pos": "noun", + "word_frequency": 5475 + }, + { + "word": "synthetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made by chemical synthesis; artificial", + "example_sentence_english": "This fabric is made of synthetic fibers.", + "pos": "adjective", + "word_frequency": 5476 + }, + { + "word": "tense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretched tight; feeling nervous", + "example_sentence_english": "The atmosphere in the room was very tense.", + "pos": "adjective", + "word_frequency": 5477 + }, + { + "word": "terrify", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause to feel extreme fear", + "example_sentence_english": "The loud noise terrified the cat.", + "pos": "verb", + "word_frequency": 5478 + }, + { + "word": "trader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who buys and sells goods or stocks", + "example_sentence_english": "The stock trader made a significant profit today.", + "pos": "noun", + "word_frequency": 5480 + }, + { + "word": "vegan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who does not eat or use animal products", + "example_sentence_english": "My sister became a vegan last year.", + "pos": "noun", + "word_frequency": 5482 + }, + { + "word": "wilderness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an uncultivated, uninhabited, and inhospitable region", + "example_sentence_english": "They got lost in the vast wilderness.", + "pos": "noun", + "word_frequency": 5485 + }, + { + "word": "adviser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who gives advice", + "example_sentence_english": "She consulted her financial adviser.", + "pos": "noun", + "word_frequency": 5486 + }, + { + "word": "aggregate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a whole formed by combining several separate elements", + "example_sentence_english": "The aggregate of all sales figures showed a decline.", + "pos": "noun", + "word_frequency": 5487 + }, + { + "word": "anatomy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of the structure of the body", + "example_sentence_english": "We studied human anatomy in biology class.", + "pos": "noun", + "word_frequency": 5489 + }, + { + "word": "applicant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who applies for a job or position", + "example_sentence_english": "There were many qualified applicants for the job.", + "pos": "noun", + "word_frequency": 5491 + }, + { + "word": "automobile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a car", + "example_sentence_english": "The invention of the automobile changed society.", + "pos": "noun", + "word_frequency": 5492 + }, + { + "word": "cement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a powdery substance used to make concrete", + "example_sentence_english": "They used cement to build the foundation.", + "pos": "noun", + "word_frequency": 5494 + }, + { + "word": "chess", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a board game for two players", + "example_sentence_english": "Do you want to play a game of chess?", + "pos": "noun", + "word_frequency": 5495 + }, + { + "word": "composite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a material made from two or more different materials", + "example_sentence_english": "The aircraft wing was made of a strong composite material.", + "pos": "noun", + "word_frequency": 5496 + }, + { + "word": "consequently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as a result; therefore", + "example_sentence_english": "It rained heavily; consequently, the game was cancelled.", + "pos": "adverb", + "word_frequency": 5497 + }, + { + "word": "decorate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make something look more attractive", + "example_sentence_english": "We decided to decorate the living room.", + "pos": "verb", + "word_frequency": 5500 + }, + { + "word": "delegate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person sent or authorized to represent others", + "example_sentence_english": "Each country sent a delegate to the conference.", + "pos": "noun", + "word_frequency": 5501 + }, + { + "word": "dull", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not interesting or exciting; not sharp", + "example_sentence_english": "The movie was quite dull.", + "pos": "adjective", + "word_frequency": 5502 + }, + { + "word": "fare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the money a passenger pays for a journey", + "example_sentence_english": "The bus fare has increased recently.", + "pos": "noun", + "word_frequency": 5503 + }, + { + "word": "generator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine that produces electricity", + "example_sentence_english": "We need a generator during power outages.", + "pos": "noun", + "word_frequency": 5504 + }, + { + "word": "grind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reduce something to small particles or powder by crushing it", + "example_sentence_english": "She used a machine to grind the coffee beans.", + "pos": "verb", + "word_frequency": 5505 + }, + { + "word": "grove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small wood, orchard, or group of trees", + "example_sentence_english": "We walked through the olive grove.", + "pos": "noun", + "word_frequency": 5506 + }, + { + "word": "gum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sticky substance, often chewed", + "example_sentence_english": "Please don't chew gum in class.", + "pos": "noun", + "word_frequency": 5507 + }, + { + "word": "hobby", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an activity done regularly in one's leisure time for pleasure", + "example_sentence_english": "My hobby is collecting stamps.", + "pos": "noun", + "word_frequency": 5508 + }, + { + "word": "idol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an object of worship; a person or thing greatly admired", + "example_sentence_english": "Many young people look up to pop idols.", + "pos": "noun", + "word_frequency": 5509 + }, + { + "word": "illusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deceptive appearance or impression", + "example_sentence_english": "The magician created an optical illusion.", + "pos": "noun", + "word_frequency": 5510 + }, + { + "word": "incorrect", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not correct or true", + "example_sentence_english": "Your answer is incorrect.", + "pos": "adjective", + "word_frequency": 5511 + }, + { + "word": "junction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a point where two or more things are joined", + "example_sentence_english": "Turn left at the next junction.", + "pos": "noun", + "word_frequency": 5513 + }, + { + "word": "leap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jump a long way or to a great height", + "example_sentence_english": "The deer leaped over the fence.", + "pos": "verb", + "word_frequency": 5515 + }, + { + "word": "lynch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to kill someone, especially by hanging, without legal trial", + "example_sentence_english": "Historically, some groups were subjected to mob rule and would lynch individuals.", + "pos": "verb", + "word_frequency": 5517 + }, + { + "word": "motive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a reason for doing something", + "example_sentence_english": "The police are trying to determine the killer's motive.", + "pos": "noun", + "word_frequency": 5519 + }, + { + "word": "neighbourhood", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the area where one lives", + "example_sentence_english": "Our neighbourhood is very quiet.", + "pos": "noun", + "word_frequency": 5520 + }, + { + "word": "networking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of interacting with others to exchange information and develop professional or social contacts", + "example_sentence_english": "Networking is crucial for career development.", + "pos": "noun", + "word_frequency": 5521 + }, + { + "word": "optimal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "best or most favorable", + "example_sentence_english": "We are looking for the optimal solution.", + "pos": "adjective", + "word_frequency": 5523 + }, + { + "word": "overtime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "time worked in addition to regular hours", + "example_sentence_english": "I had to work a lot of overtime last month.", + "pos": "noun", + "word_frequency": 5524 + }, + { + "word": "postal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the post office or mail", + "example_sentence_english": "Please check the postal address carefully.", + "pos": "adjective", + "word_frequency": 5526 + }, + { + "word": "prep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation", + "example_sentence_english": "We need to do some prep before the meeting.", + "pos": "noun", + "word_frequency": 5527 + }, + { + "word": "profound", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very great or intense; deep", + "example_sentence_english": "His speech had a profound impact on the audience.", + "pos": "adjective", + "word_frequency": 5528 + }, + { + "word": "prosecutor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a legal official who conducts criminal prosecutions", + "example_sentence_english": "The prosecutor presented strong evidence.", + "pos": "noun", + "word_frequency": 5529 + }, + { + "word": "rebellion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of open, organized, and armed resistance to an established government or ruler", + "example_sentence_english": "The rebellion was quickly suppressed.", + "pos": "noun", + "word_frequency": 5530 + }, + { + "word": "recipient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who receives something", + "example_sentence_english": "She was the recipient of a prestigious award.", + "pos": "noun", + "word_frequency": 5531 + }, + { + "word": "refund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a repayment of a sum of money", + "example_sentence_english": "I asked for a full refund.", + "pos": "noun", + "word_frequency": 5532 + }, + { + "word": "risky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of the possibility of danger, failure, or loss", + "example_sentence_english": "That was a very risky decision.", + "pos": "adjective", + "word_frequency": 5533 + }, + { + "word": "robust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strong and healthy; sturdy", + "example_sentence_english": "The company has a robust economy.", + "pos": "adjective", + "word_frequency": 5534 + }, + { + "word": "scam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dishonest scheme; a fraud", + "example_sentence_english": "Be careful not to fall for that online scam.", + "pos": "noun", + "word_frequency": 5535 + }, + { + "word": "shareholder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an owner of shares in a company", + "example_sentence_english": "The shareholders voted on the new proposal.", + "pos": "noun", + "word_frequency": 5538 + }, + { + "word": "simulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the imitation of the operation of a real-world process or system over time", + "example_sentence_english": "The flight simulation was very realistic.", + "pos": "noun", + "word_frequency": 5539 + }, + { + "word": "sober", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not affected by alcohol; serious and sensible", + "example_sentence_english": "He remained sober throughout the party.", + "pos": "adjective", + "word_frequency": 5540 + }, + { + "word": "spice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an aromatic or pungent vegetable substance used to flavor food", + "example_sentence_english": "Add a little spice to the soup.", + "pos": "noun", + "word_frequency": 5541 + }, + { + "word": "squeeze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firmly press (something soft or pliable), typically to extract liquid or alter its shape", + "example_sentence_english": "Squeeze the lemon to get the juice.", + "pos": "verb", + "word_frequency": 5542 + }, + { + "word": "supervision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of overseeing or managing", + "example_sentence_english": "Children require constant supervision.", + "pos": "noun", + "word_frequency": 5543 + }, + { + "word": "swap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange (one thing) for another", + "example_sentence_english": "Let's swap seats.", + "pos": "verb", + "word_frequency": 5544 + }, + { + "word": "terrain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stretch of land, especially with regard to its physical features", + "example_sentence_english": "The mountainous terrain was difficult to cross.", + "pos": "noun", + "word_frequency": 5545 + }, + { + "word": "thrill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause (someone) to feel a sudden wave of excitement and pleasure", + "example_sentence_english": "The roller coaster ride thrilled the children.", + "pos": "verb", + "word_frequency": 5546 + }, + { + "word": "towel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of absorbent fabric used for drying", + "example_sentence_english": "Please grab a clean towel from the cupboard.", + "pos": "noun", + "word_frequency": 5547 + }, + { + "word": "trio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of three people or things", + "example_sentence_english": "The musical trio performed beautifully.", + "pos": "noun", + "word_frequency": 5548 + }, + { + "word": "unconscious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not awake and aware of one's surroundings", + "example_sentence_english": "He was knocked unconscious after the fall.", + "pos": "adjective", + "word_frequency": 5549 + }, + { + "word": "verify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make sure or demonstrate that (something) is true, accurate, or justified", + "example_sentence_english": "Please verify your account details.", + "pos": "verb", + "word_frequency": 5551 + }, + { + "word": "vibe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person's emotional state or the atmosphere of a place as communicated to and felt by others", + "example_sentence_english": "I got a good vibe from the new restaurant.", + "pos": "noun", + "word_frequency": 5552 + }, + { + "word": "virtue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "behavior showing high moral standards", + "example_sentence_english": "Patience is a great virtue.", + "pos": "noun", + "word_frequency": 5553 + }, + { + "word": "wifi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a facility allowing computers, smartphones, or other devices to connect to the Internet or communicate with one another wirelessly within a particular area", + "example_sentence_english": "Is there free Wi-Fi here?", + "pos": "noun", + "word_frequency": 5554 + }, + { + "word": "workforce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the people engaged in or available for work, either in a country or area or in a particular company or industry", + "example_sentence_english": "The company is expanding its workforce.", + "pos": "noun", + "word_frequency": 5555 + }, + { + "word": "zombie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mythical undead creature; a person who is listless or apathetic", + "example_sentence_english": "He felt like a zombie after working all night.", + "pos": "noun", + "word_frequency": 5556 + }, + { + "word": "arise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to happen; to emerge", + "example_sentence_english": "New problems often arise when we try to implement complex solutions.", + "pos": "verb", + "word_frequency": 5560 + }, + { + "word": "automotive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to cars", + "example_sentence_english": "The automotive industry is facing significant changes due to electric vehicles.", + "pos": "adjective", + "word_frequency": 5561 + }, + { + "word": "battlefield", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place where a battle is fought", + "example_sentence_english": "The soldiers bravely advanced across the muddy battlefield.", + "pos": "noun", + "word_frequency": 5562 + }, + { + "word": "bloom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce flowers", + "example_sentence_english": "The roses in the garden will bloom beautifully in spring.", + "pos": "verb", + "word_frequency": 5564 + }, + { + "word": "bundle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a collection of things tied or wrapped together", + "example_sentence_english": "He carried a bundle of old newspapers under his arm.", + "pos": "noun", + "word_frequency": 5565 + }, + { + "word": "butterfly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an insect with large, often brightly colored wings", + "example_sentence_english": "A colorful butterfly landed gently on the flower.", + "pos": "noun", + "word_frequency": 5566 + }, + { + "word": "casualty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person injured or killed in an accident or war", + "example_sentence_english": "There were many casualties reported after the earthquake.", + "pos": "noun", + "word_frequency": 5567 + }, + { + "word": "clown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an entertainer who wears funny clothes and makeup", + "example_sentence_english": "The clown made all the children laugh with his silly tricks.", + "pos": "noun", + "word_frequency": 5569 + }, + { + "word": "conjunction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a word used to connect clauses or sentences", + "example_sentence_english": "The word 'and' is a common conjunction in English.", + "pos": "conjunction", + "word_frequency": 5570 + }, + { + "word": "costly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expensive; resulting in loss", + "example_sentence_english": "The delay proved to be a costly mistake for the company.", + "pos": "adjective", + "word_frequency": 5571 + }, + { + "word": "cuban", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Cuba", + "example_sentence_english": "She enjoyed listening to Cuban music.", + "pos": "adjective", + "word_frequency": 5572 + }, + { + "word": "descent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of moving downwards; ancestry", + "example_sentence_english": "The plane began its slow descent towards the airport.", + "pos": "noun", + "word_frequency": 5574 + }, + { + "word": "desktop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the top of a desk; a type of computer", + "example_sentence_english": "He prefers working on his desktop computer rather than a laptop.", + "pos": "noun", + "word_frequency": 5575 + }, + { + "word": "dial", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make a call by pressing numbers on a phone", + "example_sentence_english": "Please dial the emergency number if you need help.", + "pos": "verb", + "word_frequency": 5576 + }, + { + "word": "directory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book or list of names and addresses; a folder on a computer", + "example_sentence_english": "I found her phone number in the local directory.", + "pos": "noun", + "word_frequency": 5577 + }, + { + "word": "discharge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to release; to send out; to fulfill (a duty)", + "example_sentence_english": "The hospital will discharge the patient tomorrow.", + "pos": "verb", + "word_frequency": 5578 + }, + { + "word": "dodge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to avoid (something) by moving quickly", + "example_sentence_english": "He had to dodge a falling branch as he walked through the forest.", + "pos": "verb", + "word_frequency": 5579 + }, + { + "word": "elimination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of removing or getting rid of something", + "example_sentence_english": "The elimination of waste is crucial for environmental protection.", + "pos": "noun", + "word_frequency": 5580 + }, + { + "word": "ginger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a spicy root used in cooking; a reddish-brown color", + "example_sentence_english": "She added fresh ginger to the stir-fry for extra flavor.", + "pos": "noun", + "word_frequency": 5583 + }, + { + "word": "guild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an association of people for mutual aid or the pursuit of a common goal", + "example_sentence_english": "In medieval times, craftsmen often belonged to a guild.", + "pos": "noun", + "word_frequency": 5584 + }, + { + "word": "halt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop; to bring to a stop", + "example_sentence_english": "The police ordered the car to halt at the checkpoint.", + "pos": "verb", + "word_frequency": 5585 + }, + { + "word": "inability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being unable to do something", + "example_sentence_english": "His inability to focus affected his academic performance.", + "pos": "noun", + "word_frequency": 5589 + }, + { + "word": "incoming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arriving; approaching", + "example_sentence_english": "Please check for any incoming messages.", + "pos": "adjective", + "word_frequency": 5590 + }, + { + "word": "jar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cylindrical container, typically made of glass", + "example_sentence_english": "She filled the jar with homemade jam.", + "pos": "noun", + "word_frequency": 5592 + }, + { + "word": "litigation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of taking legal action", + "example_sentence_english": "The company is involved in ongoing litigation over patent infringement.", + "pos": "noun", + "word_frequency": 5597 + }, + { + "word": "mentor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an experienced and trusted adviser", + "example_sentence_english": "She found a great mentor who guided her through her career.", + "pos": "noun", + "word_frequency": 5598 + }, + { + "word": "merchandise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goods to be bought and sold", + "example_sentence_english": "The store displayed its new merchandise in the front window.", + "pos": "noun", + "word_frequency": 5599 + }, + { + "word": "miner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who works in a mine", + "example_sentence_english": "The miner found a large vein of coal.", + "pos": "noun", + "word_frequency": 5600 + }, + { + "word": "monk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a member of a religious community of men", + "example_sentence_english": "The monk lived a life of quiet contemplation.", + "pos": "noun", + "word_frequency": 5601 + }, + { + "word": "norm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a standard or pattern", + "example_sentence_english": "It's the norm for students to wear uniforms.", + "pos": "noun", + "word_frequency": 5604 + }, + { + "word": "offend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause someone to feel upset or angry", + "example_sentence_english": "I didn't mean to offend you.", + "pos": "verb", + "word_frequency": 5605 + }, + { + "word": "orthodox", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conforming to what is generally accepted as right or true", + "example_sentence_english": "He holds very orthodox views on education.", + "pos": "adjective", + "word_frequency": 5606 + }, + { + "word": "overhead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the general costs of running a business", + "example_sentence_english": "We need to reduce our overhead costs.", + "pos": "noun", + "word_frequency": 5607 + }, + { + "word": "painter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an artist who paints pictures", + "example_sentence_english": "The painter used bright colors in his landscape.", + "pos": "noun", + "word_frequency": 5609 + }, + { + "word": "pierce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a hole in something with a sharp object", + "example_sentence_english": "She decided to pierce her ears.", + "pos": "verb", + "word_frequency": 5611 + }, + { + "word": "pistol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small firearm", + "example_sentence_english": "The police officer carried a pistol.", + "pos": "noun", + "word_frequency": 5612 + }, + { + "word": "printer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a machine that prints text or images", + "example_sentence_english": "My printer ran out of ink.", + "pos": "noun", + "word_frequency": 5613 + }, + { + "word": "prone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "likely to suffer from or do something", + "example_sentence_english": "He is prone to accidents.", + "pos": "adjective", + "word_frequency": 5614 + }, + { + "word": "raider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who attacks an enemy in their territory", + "example_sentence_english": "The raiders attacked the village at dawn.", + "pos": "noun", + "word_frequency": 5615 + }, + { + "word": "readily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without difficulty or hesitation", + "example_sentence_english": "She readily agreed to help.", + "pos": "adverb", + "word_frequency": 5616 + }, + { + "word": "regiment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a permanent unit of an army", + "example_sentence_english": "The regiment marched in formation.", + "pos": "noun", + "word_frequency": 5617 + }, + { + "word": "reunion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a gathering of people who have been separated", + "example_sentence_english": "We had a family reunion last summer.", + "pos": "noun", + "word_frequency": 5618 + }, + { + "word": "revival", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an improvement in the condition or strength of something", + "example_sentence_english": "The city is experiencing an economic revival.", + "pos": "noun", + "word_frequency": 5619 + }, + { + "word": "sanctuary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place of refuge or safety", + "example_sentence_english": "The church offered sanctuary to the refugees.", + "pos": "noun", + "word_frequency": 5620 + }, + { + "word": "sensor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that detects or measures a physical property", + "example_sentence_english": "The car has a sensor to detect obstacles.", + "pos": "noun", + "word_frequency": 5622 + }, + { + "word": "siege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a military operation in which enemy forces surround a town or building", + "example_sentence_english": "The city was under siege for months.", + "pos": "noun", + "word_frequency": 5624 + }, + { + "word": "sleeve", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the part of a garment that covers the arm", + "example_sentence_english": "He rolled up his sleeves.", + "pos": "noun", + "word_frequency": 5626 + }, + { + "word": "sonic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to sound", + "example_sentence_english": "The jet broke the sonic barrier.", + "pos": "adjective", + "word_frequency": 5627 + }, + { + "word": "soundtrack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the music accompanying a film or play", + "example_sentence_english": "I love the soundtrack of that movie.", + "pos": "noun", + "word_frequency": 5628 + }, + { + "word": "spine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the backbone of a vertebrate", + "example_sentence_english": "He injured his spine in the accident.", + "pos": "noun", + "word_frequency": 5629 + }, + { + "word": "steer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guide the movement of a vehicle", + "example_sentence_english": "He steered the car around the corner.", + "pos": "verb", + "word_frequency": 5630 + }, + { + "word": "tenure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the period for which an office or position is held", + "example_sentence_english": "She was granted tenure at the university.", + "pos": "noun", + "word_frequency": 5632 + }, + { + "word": "texture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the feel, appearance, or consistency of a surface or substance", + "example_sentence_english": "The fabric has a soft texture.", + "pos": "noun", + "word_frequency": 5633 + }, + { + "word": "thankful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feeling or expressing gratitude", + "example_sentence_english": "I am thankful for your help.", + "pos": "adjective", + "word_frequency": 5634 + }, + { + "word": "treasurer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person responsible for the funds of a society or club", + "example_sentence_english": "The treasurer presented the financial report.", + "pos": "noun", + "word_frequency": 5635 + }, + { + "word": "triangle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a plane figure with three straight sides and three angles", + "example_sentence_english": "A triangle has three sides.", + "pos": "noun", + "word_frequency": 5636 + }, + { + "word": "unclear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not clear or easy to understand", + "example_sentence_english": "The instructions were unclear.", + "pos": "adjective", + "word_frequency": 5637 + }, + { + "word": "wizard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man who has magical powers", + "example_sentence_english": "The old wizard cast a powerful spell.", + "pos": "noun", + "word_frequency": 5641 + }, + { + "word": "absorb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take in a liquid, gas, or other substance", + "example_sentence_english": "The sponge can absorb a lot of water.", + "pos": "verb", + "word_frequency": 5643 + }, + { + "word": "admin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrator or administration", + "example_sentence_english": "Please contact the admin if you have any issues.", + "pos": "noun", + "word_frequency": 5644 + }, + { + "word": "affection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a gentle feeling of fondness or liking", + "example_sentence_english": "She showed great affection for her grandchildren.", + "pos": "noun", + "word_frequency": 5645 + }, + { + "word": "airplane", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a powered flying vehicle with fixed wings", + "example_sentence_english": "We traveled by airplane to our vacation destination.", + "pos": "noun", + "word_frequency": 5646 + }, + { + "word": "altitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the height of an object or point in relation to sea level or ground level", + "example_sentence_english": "The airplane reached an altitude of 30,000 feet.", + "pos": "noun", + "word_frequency": 5647 + }, + { + "word": "bake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cook (food) by dry heat, especially in an oven", + "example_sentence_english": "She loves to bake cakes for her friends.", + "pos": "verb", + "word_frequency": 5649 + }, + { + "word": "biblical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or contained in the Bible", + "example_sentence_english": "Many stories have biblical origins.", + "pos": "adjective", + "word_frequency": 5651 + }, + { + "word": "competent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the necessary ability, knowledge, or skill to do something successfully", + "example_sentence_english": "She is a very competent manager.", + "pos": "adjective", + "word_frequency": 5655 + }, + { + "word": "countryside", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the land outside of towns and cities", + "example_sentence_english": "We enjoyed a walk in the beautiful countryside.", + "pos": "noun", + "word_frequency": 5656 + }, + { + "word": "crane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large machine used for moving heavy objects, or a large bird with long legs", + "example_sentence_english": "A construction crane lifted the steel beam into place.", + "pos": "noun", + "word_frequency": 5657 + }, + { + "word": "debris", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scattered pieces of waste or remains", + "example_sentence_english": "The street was covered in debris after the storm.", + "pos": "noun", + "word_frequency": 5658 + }, + { + "word": "delegation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of delegates", + "example_sentence_english": "A delegation from the company visited the new factory.", + "pos": "noun", + "word_frequency": 5659 + }, + { + "word": "demographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a particular sector of a population", + "example_sentence_english": "The company is targeting a younger demographic.", + "pos": "noun", + "word_frequency": 5660 + }, + { + "word": "donor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who gives something, especially money or blood", + "example_sentence_english": "He became a blood donor after the accident.", + "pos": "noun", + "word_frequency": 5661 + }, + { + "word": "enroll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to officially register as a member of an institution or a student on a course", + "example_sentence_english": "She decided to enroll in a language course.", + "pos": "verb", + "word_frequency": 5662 + }, + { + "word": "enrollment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of enrolling or being enrolled", + "example_sentence_english": "University enrollment has increased this year.", + "pos": "noun", + "word_frequency": 5663 + }, + { + "word": "exceed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be greater than or go beyond (a limit, amount, etc.)", + "example_sentence_english": "Do not exceed the speed limit.", + "pos": "verb", + "word_frequency": 5665 + }, + { + "word": "exclude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny (someone) access to or membership of a place, group, or area", + "example_sentence_english": "The club decided to exclude members who didn't pay their fees.", + "pos": "verb", + "word_frequency": 5666 + }, + { + "word": "fierce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or displaying an intense or ferocious aggressiveness", + "example_sentence_english": "The tiger gave a fierce roar.", + "pos": "adjective", + "word_frequency": 5667 + }, + { + "word": "garlic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strong-smelling pungent-tasting bulb, used as a flavoring in cooking", + "example_sentence_english": "She added some fresh garlic to the sauce.", + "pos": "noun", + "word_frequency": 5669 + }, + { + "word": "gratitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being thankful; readiness to show appreciation for and to return kindness", + "example_sentence_english": "He expressed his gratitude for their help.", + "pos": "noun", + "word_frequency": 5671 + }, + { + "word": "hail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pellets of frozen rain", + "example_sentence_english": "Large hailstones damaged the car.", + "pos": "noun", + "word_frequency": 5672 + }, + { + "word": "heroin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a highly addictive analgesic drug", + "example_sentence_english": "Heroin is a dangerous illegal drug.", + "pos": "noun", + "word_frequency": 5673 + }, + { + "word": "illustration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a picture illustrating a book, newspaper, etc.", + "example_sentence_english": "The book contained many beautiful illustrations.", + "pos": "noun", + "word_frequency": 5675 + }, + { + "word": "indicator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sign or signal that something exists or is true", + "example_sentence_english": "High unemployment is an indicator of a weak economy.", + "pos": "noun", + "word_frequency": 5676 + }, + { + "word": "inequality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "difference in size, degree, circumstances, etc.; lack of equality", + "example_sentence_english": "There is growing income inequality in many countries.", + "pos": "noun", + "word_frequency": 5677 + }, + { + "word": "interpret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to explain the meaning of (information, words, or actions)", + "example_sentence_english": "It's difficult to interpret these complex instructions.", + "pos": "verb", + "word_frequency": 5678 + }, + { + "word": "leisure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free time", + "example_sentence_english": "What do you like to do in your leisure time?", + "pos": "noun", + "word_frequency": 5682 + }, + { + "word": "lend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give something temporarily", + "example_sentence_english": "Can you lend me your pen for a moment?", + "pos": "verb", + "word_frequency": 5683 + }, + { + "word": "lounge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a comfortable public room", + "example_sentence_english": "We waited for our flight in the airport lounge.", + "pos": "noun", + "word_frequency": 5685 + }, + { + "word": "manuscript", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an author's text before publication", + "example_sentence_english": "The author submitted the final manuscript to the publisher.", + "pos": "noun", + "word_frequency": 5686 + }, + { + "word": "mint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fragrant herb; a candy; a place where coins are made", + "example_sentence_english": "I like the fresh taste of mint in my tea.", + "pos": "noun", + "word_frequency": 5688 + }, + { + "word": "molecule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the smallest unit of a chemical compound", + "example_sentence_english": "A water molecule consists of two hydrogen atoms and one oxygen atom.", + "pos": "noun", + "word_frequency": 5689 + }, + { + "word": "notification", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official announcement or warning", + "example_sentence_english": "I received a notification about a new email.", + "pos": "noun", + "word_frequency": 5691 + }, + { + "word": "nova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a star showing a sudden large increase in brightness", + "example_sentence_english": "Astronomers observed a new nova in the distant galaxy.", + "pos": "noun", + "word_frequency": 5692 + }, + { + "word": "outline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a general description or plan", + "example_sentence_english": "She drew an outline of the main points for her presentation.", + "pos": "noun", + "word_frequency": 5694 + }, + { + "word": "pasta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Italian food made from dough", + "example_sentence_english": "We had pasta for dinner last night.", + "pos": "noun", + "word_frequency": 5695 + }, + { + "word": "polite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having good manners", + "example_sentence_english": "It's polite to say 'please' and 'thank you'.", + "pos": "adjective", + "word_frequency": 5697 + }, + { + "word": "receipt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a written acknowledgment of payment", + "example_sentence_english": "Please keep your receipt in case you need to return the item.", + "pos": "noun", + "word_frequency": 5699 + }, + { + "word": "reliability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being trustworthy or performing consistently well", + "example_sentence_english": "The reliability of the new car model is excellent.", + "pos": "noun", + "word_frequency": 5700 + }, + { + "word": "retailer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or business that sells goods to the public", + "example_sentence_english": "The online retailer offers free shipping on all orders.", + "pos": "noun", + "word_frequency": 5701 + }, + { + "word": "runway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strip of ground for aircraft to take off and land", + "example_sentence_english": "The plane taxied down the runway before takeoff.", + "pos": "noun", + "word_frequency": 5702 + }, + { + "word": "sculpture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the art of making three-dimensional forms", + "example_sentence_english": "The museum has a beautiful collection of modern sculpture.", + "pos": "noun", + "word_frequency": 5703 + }, + { + "word": "showcase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a display case; an event to present talent", + "example_sentence_english": "The art gallery held a showcase of local artists' work.", + "pos": "noun", + "word_frequency": 5706 + }, + { + "word": "subsidiary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a company controlled by a larger company", + "example_sentence_english": "The smaller company became a subsidiary of the multinational corporation.", + "pos": "noun", + "word_frequency": 5708 + }, + { + "word": "theology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of religious faith and practice", + "example_sentence_english": "She decided to pursue a degree in theology.", + "pos": "noun", + "word_frequency": 5711 + }, + { + "word": "underwater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated or occurring beneath the surface of water", + "example_sentence_english": "Divers explored the beautiful underwater world.", + "pos": "adjective", + "word_frequency": 5712 + }, + { + "word": "velocity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the speed of something in a given direction", + "example_sentence_english": "The rocket reached an incredible velocity as it ascended.", + "pos": "noun", + "word_frequency": 5713 + }, + { + "word": "wax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sticky, yellowish substance made by bees; a solid fatty substance", + "example_sentence_english": "Candles are typically made from wax.", + "pos": "noun", + "word_frequency": 5714 + }, + { + "word": "accountability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsibility", + "example_sentence_english": "The new policy aims to increase accountability among employees.", + "pos": "noun", + "word_frequency": 5720 + }, + { + "word": "aerial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the air", + "example_sentence_english": "The drone provided an excellent aerial view of the landscape.", + "pos": "adjective", + "word_frequency": 5721 + }, + { + "word": "alcoholic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "containing alcohol; related to alcohol addiction", + "example_sentence_english": "The drink was non-alcoholic, suitable for everyone.", + "pos": "adjective", + "word_frequency": 5723 + }, + { + "word": "amaze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surprise greatly", + "example_sentence_english": "Her talent continues to amaze me.", + "pos": "verb", + "word_frequency": 5724 + }, + { + "word": "ambition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strong desire to achieve something", + "example_sentence_english": "His ambition is to become a successful entrepreneur.", + "pos": "noun", + "word_frequency": 5725 + }, + { + "word": "ammunition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullets, shells, etc.", + "example_sentence_english": "The soldiers were running low on ammunition.", + "pos": "noun", + "word_frequency": 5726 + }, + { + "word": "anthem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a song of praise or patriotism", + "example_sentence_english": "The crowd stood for the national anthem.", + "pos": "noun", + "word_frequency": 5727 + }, + { + "word": "automate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something operate automatically", + "example_sentence_english": "We need to automate this process to save time.", + "pos": "verb", + "word_frequency": 5728 + }, + { + "word": "batch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quantity of something produced at one time", + "example_sentence_english": "She baked a fresh batch of cookies.", + "pos": "noun", + "word_frequency": 5729 + }, + { + "word": "catalog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a complete list of items", + "example_sentence_english": "I found the book in the library catalog.", + "pos": "noun", + "word_frequency": 5731 + }, + { + "word": "catalogue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a complete list of items", + "example_sentence_english": "Please refer to the product catalogue for more details.", + "pos": "noun", + "word_frequency": 5732 + }, + { + "word": "charitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to charity; generous", + "example_sentence_english": "She is known for her charitable donations.", + "pos": "adjective", + "word_frequency": 5733 + }, + { + "word": "collector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who collects things", + "example_sentence_english": "He is a passionate stamp collector.", + "pos": "noun", + "word_frequency": 5735 + }, + { + "word": "compliment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an expression of praise", + "example_sentence_english": "She received a compliment on her new hairstyle.", + "pos": "noun", + "word_frequency": 5736 + }, + { + "word": "continual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happening repeatedly", + "example_sentence_english": "The continual noise was very distracting.", + "pos": "adverb", + "word_frequency": 5737 + }, + { + "word": "coordinator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who organizes activities", + "example_sentence_english": "She works as a project coordinator.", + "pos": "noun", + "word_frequency": 5738 + }, + { + "word": "danish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Denmark", + "example_sentence_english": "He enjoys Danish pastries for breakfast.", + "pos": "adjective", + "word_frequency": 5739 + }, + { + "word": "deployment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of moving troops or equipment into position", + "example_sentence_english": "The deployment of new software will happen next month.", + "pos": "noun", + "word_frequency": 5741 + }, + { + "word": "enjoyable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pleasant; giving pleasure", + "example_sentence_english": "We had a very enjoyable evening.", + "pos": "adjective", + "word_frequency": 5742 + }, + { + "word": "exotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from a distant foreign country; unusual", + "example_sentence_english": "The market sold a variety of exotic fruits.", + "pos": "adjective", + "word_frequency": 5743 + }, + { + "word": "exterior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the outer surface or structure", + "example_sentence_english": "The exterior of the building needs painting.", + "pos": "noun", + "word_frequency": 5744 + }, + { + "word": "feminine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to women or girls", + "example_sentence_english": "She has a very feminine style.", + "pos": "adjective", + "word_frequency": 5745 + }, + { + "word": "firearm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gun", + "example_sentence_english": "The police officer carried a firearm.", + "pos": "noun", + "word_frequency": 5746 + }, + { + "word": "fountain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a structure from which water is jetted", + "example_sentence_english": "There is a beautiful fountain in the park.", + "pos": "noun", + "word_frequency": 5747 + }, + { + "word": "fury", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme anger", + "example_sentence_english": "He reacted with great fury to the news.", + "pos": "noun", + "word_frequency": 5748 + }, + { + "word": "genocide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the deliberate killing of a large group of people", + "example_sentence_english": "The international community condemned the act of genocide.", + "pos": "noun", + "word_frequency": 5750 + }, + { + "word": "glance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quick look", + "example_sentence_english": "She cast a quick glance at her watch.", + "pos": "noun", + "word_frequency": 5751 + }, + { + "word": "glow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft, steady light", + "example_sentence_english": "The fire cast a warm glow on the room.", + "pos": "noun", + "word_frequency": 5752 + }, + { + "word": "hay", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grass that has been mown and dried", + "example_sentence_english": "The farmer stored the hay in the barn.", + "pos": "noun", + "word_frequency": 5753 + }, + { + "word": "hebrew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Semitic language; a member of an ancient people", + "example_sentence_english": "She is studying Hebrew at university.", + "pos": "noun", + "word_frequency": 5754 + }, + { + "word": "hometown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the town where one was born or grew up", + "example_sentence_english": "He always visits his hometown during the holidays.", + "pos": "noun", + "word_frequency": 5755 + }, + { + "word": "humanitarian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerned with human welfare", + "example_sentence_english": "The organization provides humanitarian aid to disaster victims.", + "pos": "adjective", + "word_frequency": 5756 + }, + { + "word": "immunity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protection from disease or legal obligation", + "example_sentence_english": "Vaccination provides immunity against many diseases.", + "pos": "noun", + "word_frequency": 5759 + }, + { + "word": "inherit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receive (money, property, or a title) as an heir", + "example_sentence_english": "She will inherit a large fortune from her grandmother.", + "pos": "verb", + "word_frequency": 5760 + }, + { + "word": "liberation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of setting someone free from imprisonment, slavery, or oppression", + "example_sentence_english": "The liberation of the city was celebrated by all.", + "pos": "noun", + "word_frequency": 5763 + }, + { + "word": "likelihood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or fact of being likely; probability", + "example_sentence_english": "There is a high likelihood of rain tomorrow.", + "pos": "noun", + "word_frequency": 5764 + }, + { + "word": "lone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solitary or single", + "example_sentence_english": "A lone wolf howled at the moon.", + "pos": "adjective", + "word_frequency": 5765 + }, + { + "word": "massacre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an indiscriminate and brutal slaughter of people", + "example_sentence_english": "The historical records describe a terrible massacre.", + "pos": "noun", + "word_frequency": 5766 + }, + { + "word": "meme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an image, video, piece of text, etc., typically humorous in nature, that is copied and spread rapidly by internet users, often with slight variations", + "example_sentence_english": "That meme went viral very quickly.", + "pos": "noun", + "word_frequency": 5767 + }, + { + "word": "mod", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who moderates an internet forum or online discussion; a modification to a game or software", + "example_sentence_english": "The game has many interesting mods created by players.", + "pos": "noun", + "word_frequency": 5769 + }, + { + "word": "nationalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who advocates political independence for a country", + "example_sentence_english": "He was a strong nationalist who believed in his country's sovereignty.", + "pos": "noun", + "word_frequency": 5770 + }, + { + "word": "necessity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the fact of being required or indispensable", + "example_sentence_english": "Food and water are basic necessities for survival.", + "pos": "noun", + "word_frequency": 5771 + }, + { + "word": "nickname", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a familiar or humorous name given to a person or thing instead of or as well as the real name", + "example_sentence_english": "His nickname is \"Speedy\" because he runs so fast.", + "pos": "noun", + "word_frequency": 5772 + }, + { + "word": "observer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who watches or notices something", + "example_sentence_english": "An independent observer was present during the negotiations.", + "pos": "noun", + "word_frequency": 5774 + }, + { + "word": "offshore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "situated at sea some distance from the coast", + "example_sentence_english": "They built an offshore wind farm.", + "pos": "adjective", + "word_frequency": 5775 + }, + { + "word": "optional", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "available to be chosen but not obligatory", + "example_sentence_english": "Attending the meeting is optional.", + "pos": "adjective", + "word_frequency": 5776 + }, + { + "word": "papa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father (informal)", + "example_sentence_english": "My papa always tells the best stories.", + "pos": "noun", + "word_frequency": 5777 + }, + { + "word": "paste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thick, soft, moist substance; a computer command to insert copied data", + "example_sentence_english": "Please copy and paste the text into the document.", + "pos": "noun", + "word_frequency": 5778 + }, + { + "word": "ph.d", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Doctor of Philosophy (a doctoral degree)", + "example_sentence_english": "She is studying for her Ph.D. in physics.", + "pos": "noun", + "word_frequency": 5779 + }, + { + "word": "pioneer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is among the first to explore or settle a new country or area", + "example_sentence_english": "Marie Curie was a pioneer in the field of radioactivity.", + "pos": "noun", + "word_frequency": 5780 + }, + { + "word": "plaza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a public square or open space in a city or town", + "example_sentence_english": "We met in the main plaza of the city.", + "pos": "noun", + "word_frequency": 5781 + }, + { + "word": "prescribe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a medical practitioner) advise and authorize the use of (a medicine or treatment) for someone", + "example_sentence_english": "The doctor prescribed antibiotics for her infection.", + "pos": "verb", + "word_frequency": 5782 + }, + { + "word": "prosperity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being successful, especially financially", + "example_sentence_english": "The country enjoyed a period of great prosperity.", + "pos": "noun", + "word_frequency": 5783 + }, + { + "word": "recreational", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or denoting activity done for enjoyment when one is not working", + "example_sentence_english": "They offer many recreational activities at the resort.", + "pos": "adjective", + "word_frequency": 5785 + }, + { + "word": "refuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a condition of being safe or sheltered from pursuit, danger, or trouble", + "example_sentence_english": "The old building served as a refuge during the storm.", + "pos": "noun", + "word_frequency": 5786 + }, + { + "word": "renewable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a natural resource or source of energy) not depleted when used", + "example_sentence_english": "Solar power is a renewable energy source.", + "pos": "adjective", + "word_frequency": 5787 + }, + { + "word": "sack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large bag made of a strong material; the dismissal of an employee", + "example_sentence_english": "He carried the potatoes in a large sack.", + "pos": "noun", + "word_frequency": 5791 + }, + { + "word": "shortage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a state or situation in which something needed cannot be obtained in sufficient amounts", + "example_sentence_english": "There is a shortage of clean water in the region.", + "pos": "noun", + "word_frequency": 5793 + }, + { + "word": "sphere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a round solid figure; an area of activity, interest, or expertise", + "example_sentence_english": "The Earth is not a perfect sphere.", + "pos": "noun", + "word_frequency": 5795 + }, + { + "word": "suburban", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to a suburb", + "example_sentence_english": "They live in a quiet suburban neighborhood.", + "pos": "adjective", + "word_frequency": 5796 + }, + { + "word": "supplier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or organization that provides something needed or wanted", + "example_sentence_english": "Our company is a major supplier of electronic components.", + "pos": "noun", + "word_frequency": 5797 + }, + { + "word": "territorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the ownership of an area of land or sea", + "example_sentence_english": "The dispute was over territorial waters.", + "pos": "adjective", + "word_frequency": 5798 + }, + { + "word": "thriller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a novel, play, or film that has an exciting plot, typically involving crime or espionage", + "example_sentence_english": "I love reading a good thriller before bed.", + "pos": "noun", + "word_frequency": 5799 + }, + { + "word": "toss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a throw", + "example_sentence_english": "It was a coin toss to decide who started.", + "pos": "noun", + "word_frequency": 5800 + }, + { + "word": "transgender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a person whose sense of personal identity and gender does not correspond with their birth sex", + "example_sentence_english": "The organization supports transgender rights.", + "pos": "adjective", + "word_frequency": 5801 + }, + { + "word": "turtle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a reptile with a shell", + "example_sentence_english": "The turtle slowly walked across the road.", + "pos": "noun", + "word_frequency": 5802 + }, + { + "word": "verbal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to words or speech", + "example_sentence_english": "She gave a verbal agreement.", + "pos": "adjective", + "word_frequency": 5804 + }, + { + "word": "violate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break or fail to comply with", + "example_sentence_english": "He was accused of violating the law.", + "pos": "verb", + "word_frequency": 5805 + }, + { + "word": "wool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fabric from sheep", + "example_sentence_english": "This sweater is made of soft wool.", + "pos": "noun", + "word_frequency": 5806 + }, + { + "word": "accountable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsible for your actions", + "example_sentence_english": "Leaders must be accountable to the public.", + "pos": "adjective", + "word_frequency": 5808 + }, + { + "word": "advocacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public support for a cause", + "example_sentence_english": "She is involved in environmental advocacy.", + "pos": "noun", + "word_frequency": 5809 + }, + { + "word": "aftermath", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the consequences of an event", + "example_sentence_english": "The city was rebuilt in the aftermath of the earthquake.", + "pos": "noun", + "word_frequency": 5810 + }, + { + "word": "aggression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostile or violent behavior", + "example_sentence_english": "His aggression led to a fight.", + "pos": "noun", + "word_frequency": 5811 + }, + { + "word": "analyze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "examine in detail", + "example_sentence_english": "We need to analyze the data carefully.", + "pos": "verb", + "word_frequency": 5812 + }, + { + "word": "arguable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open to argument or debate", + "example_sentence_english": "It is arguable that his decision was the best one.", + "pos": "adverb", + "word_frequency": 5813 + }, + { + "word": "balloon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an inflatable bag", + "example_sentence_english": "The child held a red balloon.", + "pos": "noun", + "word_frequency": 5815 + }, + { + "word": "blunt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not sharp; direct in speech", + "example_sentence_english": "The knife was blunt.", + "pos": "adjective", + "word_frequency": 5816 + }, + { + "word": "brigade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a military unit; a group of people", + "example_sentence_english": "The fire brigade arrived quickly.", + "pos": "noun", + "word_frequency": 5818 + }, + { + "word": "burial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of burying a dead body", + "example_sentence_english": "The family attended the burial.", + "pos": "noun", + "word_frequency": 5820 + }, + { + "word": "cardinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a leading dignitary of the Roman Catholic Church; a type of bird", + "example_sentence_english": "The cardinal wore a red robe.", + "pos": "noun", + "word_frequency": 5821 + }, + { + "word": "champagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sparkling wine", + "example_sentence_english": "We celebrated with a bottle of champagne.", + "pos": "noun", + "word_frequency": 5823 + }, + { + "word": "chorus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of singers; the refrain of a song", + "example_sentence_english": "The choir sang the chorus beautifully.", + "pos": "noun", + "word_frequency": 5824 + }, + { + "word": "chrome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a metallic element", + "example_sentence_english": "The car had shiny chrome bumpers.", + "pos": "noun", + "word_frequency": 5825 + }, + { + "word": "clarity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being clear", + "example_sentence_english": "He spoke with great clarity.", + "pos": "noun", + "word_frequency": 5826 + }, + { + "word": "cleaner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person or substance that cleans", + "example_sentence_english": "The cleaner arrived to tidy the office.", + "pos": "noun", + "word_frequency": 5827 + }, + { + "word": "confidential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intended to be kept secret", + "example_sentence_english": "This information is strictly confidential.", + "pos": "adjective", + "word_frequency": 5828 + }, + { + "word": "coordination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the organization of different elements", + "example_sentence_english": "Good coordination is essential for team success.", + "pos": "noun", + "word_frequency": 5829 + }, + { + "word": "discretion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of behaving or speaking in such a way as to avoid causing offense or revealing private information", + "example_sentence_english": "He handled the sensitive matter with great discretion.", + "pos": "noun", + "word_frequency": 5832 + }, + { + "word": "ditch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a narrow channel dug in the ground", + "example_sentence_english": "The car ended up in a ditch by the side of the road.", + "pos": "noun", + "word_frequency": 5833 + }, + { + "word": "dome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rounded vault forming the roof of a building", + "example_sentence_english": "The capitol building has a large dome.", + "pos": "noun", + "word_frequency": 5834 + }, + { + "word": "drought", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prolonged period of abnormally low rainfall", + "example_sentence_english": "The region is experiencing a severe drought.", + "pos": "noun", + "word_frequency": 5836 + }, + { + "word": "elevation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "height above a given level; the action of raising something", + "example_sentence_english": "The town is at an elevation of 1,000 meters.", + "pos": "noun", + "word_frequency": 5837 + }, + { + "word": "esteem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respect and admiration", + "example_sentence_english": "He held his mentor in high esteem.", + "pos": "noun", + "word_frequency": 5839 + }, + { + "word": "fog", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thick cloud of tiny water droplets suspended in the atmosphere at or near the earth's surface that obscures or restricts visibility", + "example_sentence_english": "The fog was so thick we couldn't see the road.", + "pos": "noun", + "word_frequency": 5842 + }, + { + "word": "gesture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a movement of part of the body, especially a hand or the head, to express an idea or meaning", + "example_sentence_english": "He made a rude gesture with his hand.", + "pos": "noun", + "word_frequency": 5843 + }, + { + "word": "gif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of image file that can be animated", + "example_sentence_english": "She sent me a funny GIF of a cat.", + "pos": "noun", + "word_frequency": 5846 + }, + { + "word": "historian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert in or student of history", + "example_sentence_english": "The historian spent years researching ancient civilizations.", + "pos": "noun", + "word_frequency": 5850 + }, + { + "word": "horizontal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parallel to the plane of the horizon; at right angles to the vertical", + "example_sentence_english": "Draw a horizontal line across the page.", + "pos": "adjective", + "word_frequency": 5851 + }, + { + "word": "hospitality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the friendly and generous reception and entertainment of guests, visitors, or strangers", + "example_sentence_english": "They showed great hospitality to their foreign guests.", + "pos": "noun", + "word_frequency": 5852 + }, + { + "word": "hostage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person seized or held as security for the fulfillment of a condition", + "example_sentence_english": "The police negotiated for the release of the hostage.", + "pos": "noun", + "word_frequency": 5853 + }, + { + "word": "lad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boy or young man", + "example_sentence_english": "The young lad helped his father in the garden.", + "pos": "noun", + "word_frequency": 5856 + }, + { + "word": "literacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to read and write", + "example_sentence_english": "Promoting literacy is crucial for societal development.", + "pos": "noun", + "word_frequency": 5859 + }, + { + "word": "migrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who moves from one place to another, especially in order to find work or better living conditions", + "example_sentence_english": "Many economic migrants seek opportunities abroad.", + "pos": "noun", + "word_frequency": 5861 + }, + { + "word": "mislead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause (someone) to have a wrong idea or impression about someone or something", + "example_sentence_english": "Don't let appearances mislead you.", + "pos": "verb", + "word_frequency": 5862 + }, + { + "word": "moisture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water or other liquid diffused in a small quantity as vapor, condensation, etc., or contained in or absorbed by a substance", + "example_sentence_english": "The plant needs plenty of moisture to grow.", + "pos": "noun", + "word_frequency": 5863 + }, + { + "word": "monument", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a statue, building, or other structure erected to commemorate a famous or notable person or event", + "example_sentence_english": "The monument stands as a tribute to the fallen soldiers.", + "pos": "noun", + "word_frequency": 5864 + }, + { + "word": "mortality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being subject to death; the death rate", + "example_sentence_english": "The mortality rate for this disease is very low.", + "pos": "noun", + "word_frequency": 5865 + }, + { + "word": "obsession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being obsessed with someone or something; an idea or thought that continually preoccupies or intrudes on a person's mind", + "example_sentence_english": "He has an obsession with collecting rare stamps.", + "pos": "noun", + "word_frequency": 5867 + }, + { + "word": "opt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a choice from a range of possibilities", + "example_sentence_english": "You can opt to pay monthly or annually.", + "pos": "verb", + "word_frequency": 5868 + }, + { + "word": "peanut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a leguminous plant of tropical America that bears pods underground, containing edible seeds", + "example_sentence_english": "Some people are allergic to peanuts.", + "pos": "noun", + "word_frequency": 5869 + }, + { + "word": "persistent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuing firmly or obstinately in a course of action in spite of difficulty or opposition", + "example_sentence_english": "Her persistent efforts finally paid off.", + "pos": "adjective", + "word_frequency": 5871 + }, + { + "word": "petroleum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a liquid mixture of hydrocarbons that is present in certain rock strata and can be extracted and refined to produce fuels including gasoline, kerosene, and diesel oil; crude oil", + "example_sentence_english": "Petroleum is a major source of energy.", + "pos": "noun", + "word_frequency": 5872 + }, + { + "word": "pharmaceutical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to medicinal drugs, or their preparation, use, or sale", + "example_sentence_english": "The pharmaceutical industry develops new medicines.", + "pos": "adjective", + "word_frequency": 5873 + }, + { + "word": "progression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a movement or development toward a destination or a more advanced state", + "example_sentence_english": "We observed a steady progression in his language skills.", + "pos": "noun", + "word_frequency": 5874 + }, + { + "word": "rack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a framework, typically with bars or pegs, for holding or storing things", + "example_sentence_english": "She hung her clothes on the drying rack.", + "pos": "noun", + "word_frequency": 5877 + }, + { + "word": "rebuild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build (something) again after it has been damaged or destroyed", + "example_sentence_english": "They plan to rebuild the old house.", + "pos": "verb", + "word_frequency": 5878 + }, + { + "word": "recording", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of audio or video that has been recorded", + "example_sentence_english": "The band released a new recording of their live concert.", + "pos": "noun", + "word_frequency": 5879 + }, + { + "word": "rejection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of rejecting or being rejected", + "example_sentence_english": "His proposal met with immediate rejection.", + "pos": "noun", + "word_frequency": 5880 + }, + { + "word": "reservoir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large natural or artificial lake used as a source of water supply", + "example_sentence_english": "The city's water supply comes from the large reservoir.", + "pos": "noun", + "word_frequency": 5881 + }, + { + "word": "scrap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small piece or amount of something", + "example_sentence_english": "He wrote a note on a scrap of paper.", + "pos": "noun", + "word_frequency": 5883 + }, + { + "word": "sensation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a physical feeling or perception", + "example_sentence_english": "She felt a burning sensation in her hand.", + "pos": "noun", + "word_frequency": 5885 + }, + { + "word": "shaft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow part or section forming the handle or main body of a tool or weapon", + "example_sentence_english": "A shaft of light pierced through the clouds.", + "pos": "noun", + "word_frequency": 5886 + }, + { + "word": "shepherd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who tends, feeds, or guards sheep", + "example_sentence_english": "The shepherd led his flock to new pastures.", + "pos": "noun", + "word_frequency": 5887 + }, + { + "word": "shuttle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a form of transport that travels regularly between two places", + "example_sentence_english": "The airport shuttle runs every 30 minutes.", + "pos": "noun", + "word_frequency": 5888 + }, + { + "word": "slope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a surface of which one end or side is at a higher level than another", + "example_sentence_english": "The house is built on a steep slope.", + "pos": "noun", + "word_frequency": 5889 + }, + { + "word": "snack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small amount of food eaten between meals", + "example_sentence_english": "I usually have a snack in the afternoon.", + "pos": "noun", + "word_frequency": 5890 + }, + { + "word": "spotlight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lamp projecting a narrow, intense beam of light directly onto a place or person", + "example_sentence_english": "The singer stood in the spotlight.", + "pos": "noun", + "word_frequency": 5891 + }, + { + "word": "stab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to thrust a knife or other pointed weapon into someone or something", + "example_sentence_english": "He tried to stab the attacker with a pen.", + "pos": "verb", + "word_frequency": 5892 + }, + { + "word": "stern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person or their manner) serious and unrelenting, especially in the assertion of authority and exercise of discipline", + "example_sentence_english": "The teacher gave a stern warning.", + "pos": "adjective", + "word_frequency": 5893 + }, + { + "word": "stiff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not easily bent or changed in shape; rigid", + "example_sentence_english": "My neck feels stiff after sleeping awkwardly.", + "pos": "adjective", + "word_frequency": 5894 + }, + { + "word": "striker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that strikes, especially a player in soccer whose main role is to score goals", + "example_sentence_english": "The team's new striker scored two goals.", + "pos": "noun", + "word_frequency": 5895 + }, + { + "word": "terrific", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excellent; great", + "example_sentence_english": "We had a terrific time at the party.", + "pos": "adjective", + "word_frequency": 5898 + }, + { + "word": "titan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing of colossal size, strength, or influence", + "example_sentence_english": "He was a titan of industry.", + "pos": "noun", + "word_frequency": 5899 + }, + { + "word": "tomato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a soft, red or yellow, pulpy fruit eaten as a vegetable", + "example_sentence_english": "I like to eat tomatoes in my salad.", + "pos": "noun", + "word_frequency": 5900 + }, + { + "word": "tory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member or supporter of the Conservative Party in the UK", + "example_sentence_english": "The Tory party won the election.", + "pos": "noun", + "word_frequency": 5901 + }, + { + "word": "transparency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the condition of being transparent; openness", + "example_sentence_english": "The government aims for greater transparency in its dealings.", + "pos": "noun", + "word_frequency": 5902 + }, + { + "word": "trinity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of three people or things", + "example_sentence_english": "The Holy Trinity is a central doctrine in Christianity.", + "pos": "noun", + "word_frequency": 5903 + }, + { + "word": "unemployed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a person) without a job but available to work", + "example_sentence_english": "He has been unemployed for six months.", + "pos": "adjective", + "word_frequency": 5904 + }, + { + "word": "unite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to come or bring together for a common purpose or action", + "example_sentence_english": "The team needs to unite to win the championship.", + "pos": "verb", + "word_frequency": 5905 + }, + { + "word": "unlock", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to open (something locked) by means of a key or other device", + "example_sentence_english": "Can you unlock the door for me?", + "pos": "verb", + "word_frequency": 5906 + }, + { + "word": "vault", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large room or chamber used for storage, especially an underground one", + "example_sentence_english": "The bank keeps its money in a secure vault.", + "pos": "noun", + "word_frequency": 5907 + }, + { + "word": "vet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person qualified to treat diseased or injured animals; a veterinarian", + "example_sentence_english": "We took our dog to the vet.", + "pos": "noun", + "word_frequency": 5908 + }, + { + "word": "wagon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a vehicle, especially a four-wheeled one, for transporting heavy goods", + "example_sentence_english": "The farmer loaded hay onto the wagon.", + "pos": "noun", + "word_frequency": 5910 + }, + { + "word": "adverse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventing success or development; unfavorable", + "example_sentence_english": "The company faced adverse economic conditions.", + "pos": "adjective", + "word_frequency": 5912 + }, + { + "word": "alumnus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a former student of a particular school, college, or university", + "example_sentence_english": "He is an alumnus of Harvard University.", + "pos": "noun", + "word_frequency": 5914 + }, + { + "word": "awhile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for a short time", + "example_sentence_english": "Please wait awhile, I'll be right back.", + "pos": "adverb", + "word_frequency": 5916 + }, + { + "word": "biography", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an account of someone's life written by someone else", + "example_sentence_english": "I read a fascinating biography of Marie Curie.", + "pos": "noun", + "word_frequency": 5919 + }, + { + "word": "broker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who buys and sells goods or assets for others", + "example_sentence_english": "She works as a stock broker.", + "pos": "noun", + "word_frequency": 5921 + }, + { + "word": "browser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a program used to access the internet", + "example_sentence_english": "I use a web browser to surf the internet.", + "pos": "noun", + "word_frequency": 5922 + }, + { + "word": "cellular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to cells", + "example_sentence_english": "The human body is made of many cellular structures.", + "pos": "adjective", + "word_frequency": 5923 + }, + { + "word": "cocktail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an alcoholic drink", + "example_sentence_english": "Let's order a cocktail at the bar.", + "pos": "noun", + "word_frequency": 5924 + }, + { + "word": "cod", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of fish", + "example_sentence_english": "We had baked cod for dinner.", + "pos": "noun", + "word_frequency": 5925 + }, + { + "word": "cub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a young animal, especially a bear, lion, fox, etc.", + "example_sentence_english": "The lioness protected her cub.", + "pos": "noun", + "word_frequency": 5926 + }, + { + "word": "destructive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing great damage or harm", + "example_sentence_english": "The storm was very destructive.", + "pos": "adjective", + "word_frequency": 5928 + }, + { + "word": "dislike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of not liking something or someone", + "example_sentence_english": "My main dislike is dishonesty.", + "pos": "noun", + "word_frequency": 5929 + }, + { + "word": "embed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fix something firmly in a surrounding mass", + "example_sentence_english": "The journalist was embedded with the troops.", + "pos": "verb", + "word_frequency": 5930 + }, + { + "word": "farewell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of parting or saying goodbye", + "example_sentence_english": "We said our farewells before leaving.", + "pos": "noun", + "word_frequency": 5932 + }, + { + "word": "fist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a hand with the fingers curled into the palm and the thumb clenched tightly across the fingers", + "example_sentence_english": "He clenched his fist in anger.", + "pos": "noun", + "word_frequency": 5933 + }, + { + "word": "fond", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a strong liking or affection for someone or something", + "example_sentence_english": "I am very fond of my grandmother.", + "pos": "adjective", + "word_frequency": 5934 + }, + { + "word": "foolish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacking good sense or judgment; silly", + "example_sentence_english": "It was a foolish mistake to make.", + "pos": "adjective", + "word_frequency": 5935 + }, + { + "word": "frog", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small, tailless amphibian with a short squat body and long hind legs for leaping", + "example_sentence_english": "A frog jumped into the pond.", + "pos": "noun", + "word_frequency": 5936 + }, + { + "word": "gifted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having exceptional natural ability or talent", + "example_sentence_english": "She is a gifted musician.", + "pos": "adjective", + "word_frequency": 5938 + }, + { + "word": "hawk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of bird of prey", + "example_sentence_english": "A hawk soared high above the trees.", + "pos": "noun", + "word_frequency": 5939 + }, + { + "word": "heir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person legally entitled to the property or rank of another on that person's death", + "example_sentence_english": "He was the sole heir to the fortune.", + "pos": "noun", + "word_frequency": 5940 + }, + { + "word": "holocaust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "destruction or slaughter on a mass scale, especially caused by fire or nuclear war", + "example_sentence_english": "The museum provided a detailed account of the Holocaust.", + "pos": "noun", + "word_frequency": 5941 + }, + { + "word": "homer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a home run in baseball", + "example_sentence_english": "He hit a grand slam homer in the ninth inning.", + "pos": "noun", + "word_frequency": 5942 + }, + { + "word": "imprisonment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being imprisoned; captivity", + "example_sentence_english": "He faced a long period of imprisonment.", + "pos": "noun", + "word_frequency": 5945 + }, + { + "word": "indonesian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Indonesia, its people, or its language", + "example_sentence_english": "She is learning Indonesian culture.", + "pos": "adjective", + "word_frequency": 5946 + }, + { + "word": "landlord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who rents out land, a building, or an apartment", + "example_sentence_english": "Our landlord fixed the broken pipe.", + "pos": "noun", + "word_frequency": 5951 + }, + { + "word": "landmark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an object or feature of a landscape or town that is easily seen and recognized", + "example_sentence_english": "The Eiffel Tower is a famous landmark in Paris.", + "pos": "noun", + "word_frequency": 5952 + }, + { + "word": "liable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsible by law; legally answerable", + "example_sentence_english": "The company is liable for any damages.", + "pos": "adjective", + "word_frequency": 5954 + }, + { + "word": "midst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the middle part or stage", + "example_sentence_english": "He found himself in the midst of a crowd.", + "pos": "noun", + "word_frequency": 5956 + }, + { + "word": "misery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a state or feeling of great distress or discomfort of mind or body", + "example_sentence_english": "The war brought widespread misery.", + "pos": "noun", + "word_frequency": 5957 + }, + { + "word": "module", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "each of a set of standardized parts or independent units that can be used to construct a more complex structure", + "example_sentence_english": "The course is divided into several modules.", + "pos": "noun", + "word_frequency": 5958 + }, + { + "word": "mommy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother (informal, used by children)", + "example_sentence_english": "The little girl ran to her mommy.", + "pos": "noun", + "word_frequency": 5959 + }, + { + "word": "mosque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosque", + "example_sentence_english": "We visited a beautiful mosque in Istanbul.", + "pos": "noun", + "word_frequency": 5961 + }, + { + "word": "moss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moss", + "example_sentence_english": "The old stones were covered in green moss.", + "pos": "noun", + "word_frequency": 5962 + }, + { + "word": "nursery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursery", + "example_sentence_english": "The baby sleeps in the nursery.", + "pos": "noun", + "word_frequency": 5964 + }, + { + "word": "onion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "onion", + "example_sentence_english": "I chopped an onion for the soup.", + "pos": "noun", + "word_frequency": 5966 + }, + { + "word": "plague", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plague", + "example_sentence_english": "The Black Death was a devastating plague.", + "pos": "noun", + "word_frequency": 5968 + }, + { + "word": "rogue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rogue", + "example_sentence_english": "He was a rogue who always broke the rules.", + "pos": "noun", + "word_frequency": 5971 + }, + { + "word": "sincere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincere", + "example_sentence_english": "He gave a sincere apology.", + "pos": "adverb", + "word_frequency": 5974 + }, + { + "word": "solidarity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solidarity", + "example_sentence_english": "The workers showed solidarity with their colleagues.", + "pos": "noun", + "word_frequency": 5975 + }, + { + "word": "specialty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialty", + "example_sentence_english": "Italian food is their specialty.", + "pos": "noun", + "word_frequency": 5976 + }, + { + "word": "supernatural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supernatural", + "example_sentence_english": "They investigated the supernatural events in the old house.", + "pos": "adjective", + "word_frequency": 5977 + }, + { + "word": "thirteen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirteen", + "example_sentence_english": "There are thirteen students in the class.", + "pos": "numeral", + "word_frequency": 5979 + }, + { + "word": "tomb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tomb", + "example_sentence_english": "The ancient king was buried in a grand tomb.", + "pos": "noun", + "word_frequency": 5980 + }, + { + "word": "trademark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trademark", + "example_sentence_english": "The company registered its new logo as a trademark.", + "pos": "noun", + "word_frequency": 5981 + }, + { + "word": "trim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trim", + "example_sentence_english": "He kept himself in very trim condition.", + "pos": "adjective", + "word_frequency": 5982 + }, + { + "word": "umbrella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "umbrella", + "example_sentence_english": "Don't forget your umbrella, it's raining.", + "pos": "noun", + "word_frequency": 5983 + }, + { + "word": "voyage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voyage", + "example_sentence_english": "The ship embarked on a long voyage across the ocean.", + "pos": "noun", + "word_frequency": 5984 + }, + { + "word": "abbey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbey", + "example_sentence_english": "Westminster Abbey is a famous church in London.", + "pos": "noun", + "word_frequency": 5986 + }, + { + "word": "adjustment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjustment", + "example_sentence_english": "She made a small adjustment to the settings.", + "pos": "noun", + "word_frequency": 5987 + }, + { + "word": "attachment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attachment", + "example_sentence_english": "I sent the document as an email attachment.", + "pos": "noun", + "word_frequency": 5989 + }, + { + "word": "baron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baron", + "example_sentence_english": "The baron owned a vast estate.", + "pos": "noun", + "word_frequency": 5990 + }, + { + "word": "bomber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bomber", + "example_sentence_english": "The bomber aircraft flew over the city.", + "pos": "noun", + "word_frequency": 5994 + }, + { + "word": "bunny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bunny", + "example_sentence_english": "The little bunny hopped across the field.", + "pos": "noun", + "word_frequency": 5996 + }, + { + "word": "candle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "candle", + "example_sentence_english": "We lit a candle when the power went out.", + "pos": "noun", + "word_frequency": 5997 + }, + { + "word": "carve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carve", + "example_sentence_english": "He used a knife to carve the wood.", + "pos": "verb", + "word_frequency": 5998 + }, + { + "word": "choir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choir", + "example_sentence_english": "The church choir sang beautifully.", + "pos": "noun", + "word_frequency": 5999 + }, + { + "word": "clutch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tight grasp; a small bag", + "example_sentence_english": "He kept a tight clutch on the steering wheel.", + "pos": "noun", + "word_frequency": 6000 + }, + { + "word": "coconut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large nut from a palm tree", + "example_sentence_english": "We drank fresh coconut water on the beach.", + "pos": "noun", + "word_frequency": 6001 + }, + { + "word": "comprise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consist of; be made up of", + "example_sentence_english": "The committee will comprise members from various departments.", + "pos": "verb", + "word_frequency": 6002 + }, + { + "word": "confession", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a formal statement admitting guilt", + "example_sentence_english": "He made a full confession to the police.", + "pos": "noun", + "word_frequency": 6003 + }, + { + "word": "corridor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long passage in a building", + "example_sentence_english": "The offices are located down the main corridor.", + "pos": "noun", + "word_frequency": 6004 + }, + { + "word": "credibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being trusted and believed in", + "example_sentence_english": "The scandal damaged his credibility as a leader.", + "pos": "noun", + "word_frequency": 6005 + }, + { + "word": "distract", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prevent someone from concentrating", + "example_sentence_english": "Please don't distract me while I'm working.", + "pos": "verb", + "word_frequency": 6007 + }, + { + "word": "dolphin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a marine mammal", + "example_sentence_english": "We saw a pod of dolphins swimming near the boat.", + "pos": "noun", + "word_frequency": 6009 + }, + { + "word": "fourteen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 14", + "example_sentence_english": "There are fourteen students in the class.", + "pos": "numeral", + "word_frequency": 6012 + }, + { + "word": "geometry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the branch of mathematics concerned with shapes", + "example_sentence_english": "We are studying geometry in math class.", + "pos": "noun", + "word_frequency": 6014 + }, + { + "word": "gossip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casual talk about other people's private lives", + "example_sentence_english": "I don't like to listen to office gossip.", + "pos": "noun", + "word_frequency": 6016 + }, + { + "word": "grandparent", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a parent of one's parent", + "example_sentence_english": "My grandparents live in a different city.", + "pos": "noun", + "word_frequency": 6018 + }, + { + "word": "haul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a quantity of something obtained", + "example_sentence_english": "The fishermen returned with a large haul of fish.", + "pos": "noun", + "word_frequency": 6019 + }, + { + "word": "header", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a title or heading at the top of a page", + "example_sentence_english": "Make sure to add a header to your document.", + "pos": "noun", + "word_frequency": 6020 + }, + { + "word": "headphone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device worn on the head to listen to audio", + "example_sentence_english": "I always wear my headphones when I'm on the bus.", + "pos": "noun", + "word_frequency": 6021 + }, + { + "word": "holly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a shrub with prickly leaves and red berries", + "example_sentence_english": "We decorated the house with holly for Christmas.", + "pos": "noun", + "word_frequency": 6022 + }, + { + "word": "immense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely large or great", + "example_sentence_english": "The project required an immense amount of effort.", + "pos": "adjective", + "word_frequency": 6023 + }, + { + "word": "interfere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevent (a process or activity) from continuing or being carried out properly", + "example_sentence_english": "Don't interfere in matters that don't concern you.", + "pos": "verb", + "word_frequency": 6024 + }, + { + "word": "intersection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a point where two or more things cross", + "example_sentence_english": "Turn left at the next intersection.", + "pos": "noun", + "word_frequency": 6025 + }, + { + "word": "investigator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who carries out a formal inquiry", + "example_sentence_english": "The police investigator questioned the witnesses.", + "pos": "noun", + "word_frequency": 6026 + }, + { + "word": "juvenile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to young people; immature", + "example_sentence_english": "The court deals with juvenile offenders.", + "pos": "adjective", + "word_frequency": 6027 + }, + { + "word": "karma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sum of a person's actions in this and previous states of existence, viewed as deciding their fate in future existences.", + "example_sentence_english": "He believes in good karma coming back to you.", + "pos": "noun", + "word_frequency": 6028 + }, + { + "word": "leverage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "power to influence a situation", + "example_sentence_english": "The company used its market position as leverage in negotiations.", + "pos": "noun", + "word_frequency": 6031 + }, + { + "word": "lining", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a layer of material covering the inside surface", + "example_sentence_english": "The coat has a warm fur lining.", + "pos": "noun", + "word_frequency": 6033 + }, + { + "word": "mankind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "human beings collectively", + "example_sentence_english": "The future of mankind depends on our actions today.", + "pos": "noun", + "word_frequency": 6036 + }, + { + "word": "mapping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making maps or assigning relationships", + "example_sentence_english": "GPS technology is used for accurate mapping.", + "pos": "noun", + "word_frequency": 6037 + }, + { + "word": "metric", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the metric system of measurement", + "example_sentence_english": "The metric system is used in most countries.", + "pos": "adjective", + "word_frequency": 6039 + }, + { + "word": "militia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an army of ordinary citizens", + "example_sentence_english": "The local militia was called upon to defend the town.", + "pos": "noun", + "word_frequency": 6040 + }, + { + "word": "node", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a point in a network or system", + "example_sentence_english": "Each computer acts as a node in the network.", + "pos": "noun", + "word_frequency": 6043 + }, + { + "word": "obstacle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something that blocks progress", + "example_sentence_english": "Lack of funding was a major obstacle to the project.", + "pos": "noun", + "word_frequency": 6044 + }, + { + "word": "opener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for opening something; the first event", + "example_sentence_english": "Can you find the bottle opener?", + "pos": "noun", + "word_frequency": 6045 + }, + { + "word": "performer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who entertains an audience", + "example_sentence_english": "The performer sang beautifully on stage.", + "pos": "noun", + "word_frequency": 6046 + }, + { + "word": "pointless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having no purpose or meaning", + "example_sentence_english": "Arguing with him is pointless.", + "pos": "adjective", + "word_frequency": 6049 + }, + { + "word": "prompt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause or bring about", + "example_sentence_english": "His question prompted a long discussion.", + "pos": "verb", + "word_frequency": 6050 + }, + { + "word": "proximity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nearness in space, time, or relationship", + "example_sentence_english": "The proximity of the two houses made it easy to visit.", + "pos": "noun", + "word_frequency": 6051 + }, + { + "word": "qualification", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official requirement or achievement", + "example_sentence_english": "What qualifications do you have for this job?", + "pos": "noun", + "word_frequency": 6052 + }, + { + "word": "render", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause to be or become; to provide", + "example_sentence_english": "The news rendered him speechless.", + "pos": "verb", + "word_frequency": 6053 + }, + { + "word": "sadness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the state of being sad", + "example_sentence_english": "A wave of sadness washed over her.", + "pos": "noun", + "word_frequency": 6054 + }, + { + "word": "selective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending to choose carefully", + "example_sentence_english": "She is very selective about her friends.", + "pos": "adjective", + "word_frequency": 6055 + }, + { + "word": "shiny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reflecting light; bright", + "example_sentence_english": "The car had a shiny new coat of paint.", + "pos": "adjective", + "word_frequency": 6057 + }, + { + "word": "socialism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a political and economic theory of social organization", + "example_sentence_english": "Many countries have adopted elements of socialism.", + "pos": "noun", + "word_frequency": 6058 + }, + { + "word": "sour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having an acidic taste", + "example_sentence_english": "The lemon was very sour.", + "pos": "adjective", + "word_frequency": 6059 + }, + { + "word": "spoon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an eating utensil", + "example_sentence_english": "Please pass me a spoon for my soup.", + "pos": "noun", + "word_frequency": 6060 + }, + { + "word": "stressful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing mental or emotional stress", + "example_sentence_english": "Moving to a new city can be very stressful.", + "pos": "adjective", + "word_frequency": 6061 + }, + { + "word": "teddy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a teddy bear", + "example_sentence_english": "The child hugged his teddy tightly.", + "pos": "noun", + "word_frequency": 6062 + }, + { + "word": "tenant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who occupies land or property rented from a landlord", + "example_sentence_english": "The tenant signed a new lease agreement.", + "pos": "noun", + "word_frequency": 6063 + }, + { + "word": "terrace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a paved outdoor area next to a house", + "example_sentence_english": "We had dinner on the terrace overlooking the garden.", + "pos": "noun", + "word_frequency": 6064 + }, + { + "word": "thief", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who steals", + "example_sentence_english": "The police caught the thief.", + "pos": "noun", + "word_frequency": 6065 + }, + { + "word": "tribunal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a court of justice or a judicial body", + "example_sentence_english": "The case was heard by an international tribunal.", + "pos": "noun", + "word_frequency": 6066 + }, + { + "word": "undoubtedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without doubt; certainly", + "example_sentence_english": "She is undoubtedly the best candidate for the job.", + "pos": "adverb", + "word_frequency": 6067 + }, + { + "word": "villain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the bad guy in a story", + "example_sentence_english": "The superhero always defeats the villain.", + "pos": "noun", + "word_frequency": 6068 + }, + { + "word": "whistle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a high-pitched sound or device", + "example_sentence_english": "The referee blew his whistle.", + "pos": "noun", + "word_frequency": 6069 + }, + { + "word": "yearly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happening once a year", + "example_sentence_english": "The festival is held yearly.", + "pos": "adverb", + "word_frequency": 6071 + }, + { + "word": "abusive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "using cruel or violent language or treatment", + "example_sentence_english": "He was accused of abusive behavior.", + "pos": "adjective", + "word_frequency": 6074 + }, + { + "word": "alley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a narrow passageway", + "example_sentence_english": "The cat ran down the dark alley.", + "pos": "noun", + "word_frequency": 6075 + }, + { + "word": "appetite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a natural desire to satisfy a bodily need, especially for food", + "example_sentence_english": "Exercise can increase your appetite.", + "pos": "noun", + "word_frequency": 6076 + }, + { + "word": "backyard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a yard at the back of a house", + "example_sentence_english": "The children played in the backyard.", + "pos": "noun", + "word_frequency": 6077 + }, + { + "word": "billboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large outdoor board for displaying advertisements", + "example_sentence_english": "We saw a huge billboard advertising a new car.", + "pos": "noun", + "word_frequency": 6080 + }, + { + "word": "bully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who uses strength or influence to harm or intimidate those who are weaker", + "example_sentence_english": "The teacher told the bully to stop bothering the other students.", + "pos": "noun", + "word_frequency": 6082 + }, + { + "word": "calculation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process or result of calculating", + "example_sentence_english": "The engineer made a careful calculation before building the bridge.", + "pos": "noun", + "word_frequency": 6084 + }, + { + "word": "conceive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to form or devise (a plan or idea) in the mind", + "example_sentence_english": "She conceived a brilliant plan for the new project.", + "pos": "verb", + "word_frequency": 6085 + }, + { + "word": "dissolve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become or cause to become incorporated into a liquid so as to form a solution", + "example_sentence_english": "Sugar dissolves quickly in hot water.", + "pos": "verb", + "word_frequency": 6087 + }, + { + "word": "dynasty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a line of hereditary rulers of a country", + "example_sentence_english": "The Ming Dynasty ruled China for nearly 300 years.", + "pos": "noun", + "word_frequency": 6088 + }, + { + "word": "economist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies or writes about economics", + "example_sentence_english": "The economist predicted a rise in inflation next year.", + "pos": "noun", + "word_frequency": 6089 + }, + { + "word": "endorse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to declare one's public approval or support of", + "example_sentence_english": "Many celebrities endorse various products.", + "pos": "verb", + "word_frequency": 6090 + }, + { + "word": "forehead", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the part of the face above the eyebrows and below the hairline", + "example_sentence_english": "He wiped the sweat from his forehead.", + "pos": "noun", + "word_frequency": 6092 + }, + { + "word": "foreigner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person born in or coming from a foreign country", + "example_sentence_english": "Many foreigners visit our city every year.", + "pos": "noun", + "word_frequency": 6093 + }, + { + "word": "forgiveness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of forgiving or being forgiven", + "example_sentence_english": "It takes courage to ask for forgiveness.", + "pos": "noun", + "word_frequency": 6094 + }, + { + "word": "gem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a precious or semiprecious stone, especially one cut and polished", + "example_sentence_english": "She wore a necklace with a beautiful blue gem.", + "pos": "noun", + "word_frequency": 6095 + }, + { + "word": "glen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a narrow valley, especially in Scotland or Ireland", + "example_sentence_english": "We hiked through a beautiful glen in the Scottish Highlands.", + "pos": "noun", + "word_frequency": 6096 + }, + { + "word": "haunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a ghost) manifest itself in (a place) regularly", + "example_sentence_english": "The old house is said to be haunted by a friendly ghost.", + "pos": "verb", + "word_frequency": 6098 + }, + { + "word": "heather", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a low-growing evergreen shrub with small, bell-shaped pink or purple flowers", + "example_sentence_english": "The hills were covered in purple heather.", + "pos": "noun", + "word_frequency": 6100 + }, + { + "word": "hiking", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the activity of going for long walks, especially in the country or woods", + "example_sentence_english": "We enjoy hiking in the mountains every summer.", + "pos": "noun", + "word_frequency": 6101 + }, + { + "word": "hypothesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a supposition or proposed explanation made on the basis of limited evidence as a starting point for further investigation", + "example_sentence_english": "The scientist developed a new hypothesis to explain the phenomenon.", + "pos": "noun", + "word_frequency": 6102 + }, + { + "word": "incline", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to lean or turn away from the vertical or horizontal", + "example_sentence_english": "The road began to incline steeply uphill.", + "pos": "verb", + "word_frequency": 6103 + }, + { + "word": "informal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a relaxed, friendly, or unofficial style or manner", + "example_sentence_english": "We had an informal meeting to discuss the plans.", + "pos": "adjective", + "word_frequency": 6104 + }, + { + "word": "marker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an object used to indicate a position, place, or route", + "example_sentence_english": "Please use a permanent marker to write on the board.", + "pos": "noun", + "word_frequency": 6105 + }, + { + "word": "marsh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of low-lying land that is flooded in wet seasons or at high tide, and typically remains waterlogged at all times", + "example_sentence_english": "Birds often nest in the marsh near the river.", + "pos": "noun", + "word_frequency": 6106 + }, + { + "word": "marshal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a high-ranking officer in the armed forces or a ceremonial officer", + "example_sentence_english": "The fire marshal investigated the cause of the blaze.", + "pos": "noun", + "word_frequency": 6107 + }, + { + "word": "maturity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state, fact, or period of being mature", + "example_sentence_english": "She showed great maturity for her age.", + "pos": "noun", + "word_frequency": 6108 + }, + { + "word": "messy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "untidy or dirty", + "example_sentence_english": "His room is always messy.", + "pos": "adjective", + "word_frequency": 6110 + }, + { + "word": "neighboring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a place or person) next to or very near another", + "example_sentence_english": "Our neighboring town has a great market.", + "pos": "adjective", + "word_frequency": 6117 + }, + { + "word": "neighbour", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a person living next door to or very near the speaker or person referred to", + "example_sentence_english": "Our neighbour helped us with our garden.", + "pos": "noun", + "word_frequency": 6118 + }, + { + "word": "ninja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person skilled in ninjutsu, a Japanese martial art", + "example_sentence_english": "The children pretended to be ninjas.", + "pos": "noun", + "word_frequency": 6119 + }, + { + "word": "optimistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hopeful and confident about the future", + "example_sentence_english": "She's always optimistic about her chances of success.", + "pos": "adjective", + "word_frequency": 6120 + }, + { + "word": "owl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a nocturnal bird of prey", + "example_sentence_english": "An owl hooted in the distance.", + "pos": "noun", + "word_frequency": 6121 + }, + { + "word": "parenting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of raising and educating a child", + "example_sentence_english": "Good parenting involves patience and understanding.", + "pos": "noun", + "word_frequency": 6122 + }, + { + "word": "pharmacy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shop where medicines are prepared and sold", + "example_sentence_english": "I need to pick up my prescription from the pharmacy.", + "pos": "noun", + "word_frequency": 6123 + }, + { + "word": "problematic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constituting a problem or difficulty", + "example_sentence_english": "The new policy proved to be highly problematic.", + "pos": "adjective", + "word_frequency": 6124 + }, + { + "word": "processor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine or person that processes something", + "example_sentence_english": "The computer's processor is very fast.", + "pos": "noun", + "word_frequency": 6125 + }, + { + "word": "promotional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the publicizing of a product, organization, or venture", + "example_sentence_english": "They launched a new promotional campaign.", + "pos": "adjective", + "word_frequency": 6126 + }, + { + "word": "prospective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "likely to happen at a future date; potential", + "example_sentence_english": "We interviewed several prospective candidates for the job.", + "pos": "adjective", + "word_frequency": 6127 + }, + { + "word": "psychiatric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to mental illness or its treatment", + "example_sentence_english": "He received psychiatric evaluation after the incident.", + "pos": "adjective", + "word_frequency": 6128 + }, + { + "word": "renaissance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a revival of something; a rebirth", + "example_sentence_english": "The city is experiencing a renaissance in its art scene.", + "pos": "noun", + "word_frequency": 6129 + }, + { + "word": "repeal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revoke or annul (a law or act)", + "example_sentence_english": "The government decided to repeal the controversial law.", + "pos": "verb", + "word_frequency": 6130 + }, + { + "word": "roast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cook (food, especially meat) by prolonged exposure to heat in an oven or over a fire", + "example_sentence_english": "We decided to roast a chicken for dinner.", + "pos": "verb", + "word_frequency": 6132 + }, + { + "word": "rubbish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waste material; trash", + "example_sentence_english": "Please put the rubbish in the bin.", + "pos": "noun", + "word_frequency": 6134 + }, + { + "word": "saga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a long story of heroic achievement; a long, involved story or series of incidents", + "example_sentence_english": "The family saga spanned three generations.", + "pos": "noun", + "word_frequency": 6135 + }, + { + "word": "salon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place where people get their hair cut or styled, or other beauty treatments", + "example_sentence_english": "She went to the salon to get a new haircut.", + "pos": "noun", + "word_frequency": 6136 + }, + { + "word": "sodium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soft, silvery-white, highly reactive metallic element", + "example_sentence_english": "Salt is made of sodium and chloride.", + "pos": "noun", + "word_frequency": 6138 + }, + { + "word": "surplus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an amount of something left over when requirements have been met; an excess", + "example_sentence_english": "The company reported a budget surplus this year.", + "pos": "noun", + "word_frequency": 6139 + }, + { + "word": "swallow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cause food or drink to pass down the throat", + "example_sentence_english": "He found it hard to swallow the large pill.", + "pos": "verb", + "word_frequency": 6140 + }, + { + "word": "systematic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done or acting according to a fixed plan or system; methodical", + "example_sentence_english": "They conducted a systematic review of the evidence.", + "pos": "adjective", + "word_frequency": 6141 + }, + { + "word": "transmit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause (something) to pass on from one place or person to another", + "example_sentence_english": "The radio tower transmits signals across the region.", + "pos": "verb", + "word_frequency": 6142 + }, + { + "word": "unacceptable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not satisfactory or allowable", + "example_sentence_english": "His behavior was completely unacceptable.", + "pos": "adjective", + "word_frequency": 6143 + }, + { + "word": "unaware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having no knowledge of a situation or fact", + "example_sentence_english": "She was unaware of the danger.", + "pos": "adjective", + "word_frequency": 6144 + }, + { + "word": "uncommon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not common; rare", + "example_sentence_english": "It's uncommon to see snow here in May.", + "pos": "adjective", + "word_frequency": 6145 + }, + { + "word": "underway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having started and in progress", + "example_sentence_english": "Preparations for the event are already underway.", + "pos": "adjective", + "word_frequency": 6146 + }, + { + "word": "unify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make or become united, uniform, or whole", + "example_sentence_english": "The goal is to unify the different departments.", + "pos": "verb", + "word_frequency": 6147 + }, + { + "word": "unstable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "likely to change or give way; not stable", + "example_sentence_english": "The political situation in the country is very unstable.", + "pos": "adjective", + "word_frequency": 6148 + }, + { + "word": "upstairs", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on or to an upper floor or level", + "example_sentence_english": "He went upstairs to get his book.", + "pos": "adverb", + "word_frequency": 6149 + }, + { + "word": "vague", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of uncertain, indefinite, or unclear character or meaning", + "example_sentence_english": "She gave a vague answer to the question.", + "pos": "adjective", + "word_frequency": 6150 + }, + { + "word": "wee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little; small", + "example_sentence_english": "Just a wee bit more sugar, please.", + "pos": "adjective", + "word_frequency": 6151 + }, + { + "word": "woo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "try to gain the love, support, or custom of (someone)", + "example_sentence_english": "The company is trying to woo new customers with special offers.", + "pos": "verb", + "word_frequency": 6152 + }, + { + "word": "zip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fastener consisting of two rows of teeth on strips of fabric that are interlocked by a sliding tab", + "example_sentence_english": "My jacket zip is broken.", + "pos": "noun", + "word_frequency": 6154 + }, + { + "word": "abs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abdominal muscles; anti-lock braking system", + "example_sentence_english": "He works out his abs every day.", + "pos": "noun", + "word_frequency": 6156 + }, + { + "word": "abundance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very large quantity of something", + "example_sentence_english": "The region has an abundance of natural resources.", + "pos": "noun", + "word_frequency": 6157 + }, + { + "word": "ant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small insect", + "example_sentence_english": "An ant crawled across the picnic blanket.", + "pos": "noun", + "word_frequency": 6160 + }, + { + "word": "antique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old and valuable", + "example_sentence_english": "She collects antique furniture.", + "pos": "adjective", + "word_frequency": 6161 + }, + { + "word": "autonomy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "independence", + "example_sentence_english": "The region is seeking greater autonomy from the central government.", + "pos": "noun", + "word_frequency": 6162 + }, + { + "word": "behavioral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to behavior", + "example_sentence_english": "She studies behavioral patterns in animals.", + "pos": "adjective", + "word_frequency": 6164 + }, + { + "word": "booking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an arrangement to reserve something", + "example_sentence_english": "We have a booking for dinner at 7 PM.", + "pos": "noun", + "word_frequency": 6166 + }, + { + "word": "breeze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a gentle wind", + "example_sentence_english": "A cool breeze blew through the open window.", + "pos": "noun", + "word_frequency": 6167 + }, + { + "word": "carnival", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public festival", + "example_sentence_english": "The town hosts a carnival every summer.", + "pos": "noun", + "word_frequency": 6169 + }, + { + "word": "commodity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a raw material or primary agricultural product that can be bought and sold", + "example_sentence_english": "Oil is a valuable commodity.", + "pos": "noun", + "word_frequency": 6170 + }, + { + "word": "congressman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male member of a congress", + "example_sentence_english": "The congressman voted on the new bill.", + "pos": "noun", + "word_frequency": 6171 + }, + { + "word": "cooperative", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "involving cooperation", + "example_sentence_english": "The students were very cooperative during the group project.", + "pos": "adjective", + "word_frequency": 6172 + }, + { + "word": "coral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard stony substance formed by marine polyps", + "example_sentence_english": "The Great Barrier Reef is made of coral.", + "pos": "noun", + "word_frequency": 6173 + }, + { + "word": "correlation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mutual relationship or connection between two or more things", + "example_sentence_english": "There is a strong correlation between smoking and lung cancer.", + "pos": "noun", + "word_frequency": 6174 + }, + { + "word": "correspondent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who writes letters or reports for a newspaper or broadcast", + "example_sentence_english": "The war correspondent reported live from the front lines.", + "pos": "noun", + "word_frequency": 6175 + }, + { + "word": "coupon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a voucher entitling the holder to a discount", + "example_sentence_english": "I used a coupon to get a discount on the groceries.", + "pos": "noun", + "word_frequency": 6176 + }, + { + "word": "curtain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of material suspended to cover a window or opening", + "example_sentence_english": "Please draw the curtains to block out the light.", + "pos": "noun", + "word_frequency": 6178 + }, + { + "word": "dentist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person qualified to treat diseases and conditions of the teeth and gums", + "example_sentence_english": "I have an appointment with the dentist tomorrow.", + "pos": "noun", + "word_frequency": 6179 + }, + { + "word": "dough", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick, malleable mixture of flour and liquid", + "example_sentence_english": "She kneaded the dough to make bread.", + "pos": "noun", + "word_frequency": 6181 + }, + { + "word": "endanger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "put at risk", + "example_sentence_english": "Pollution can endanger wildlife.", + "pos": "verb", + "word_frequency": 6182 + }, + { + "word": "envelope", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flat, usually paper, container for a letter", + "example_sentence_english": "I put the letter in an envelope.", + "pos": "noun", + "word_frequency": 6183 + }, + { + "word": "fade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gradually grow faint or disappear", + "example_sentence_english": "The colors of the old photograph began to fade.", + "pos": "verb", + "word_frequency": 6184 + }, + { + "word": "fatigue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme tiredness", + "example_sentence_english": "The long journey caused him great fatigue.", + "pos": "noun", + "word_frequency": 6185 + }, + { + "word": "fellowship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "friendly association, or a scholarly grant", + "example_sentence_english": "She received a research fellowship for her studies.", + "pos": "noun", + "word_frequency": 6186 + }, + { + "word": "fictional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to fiction", + "example_sentence_english": "The characters in the novel are entirely fictional.", + "pos": "adjective", + "word_frequency": 6187 + }, + { + "word": "fragile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily broken or damaged", + "example_sentence_english": "Handle with care, as the vase is very fragile.", + "pos": "adjective", + "word_frequency": 6188 + }, + { + "word": "fringe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the outer, marginal, or extreme part of an area, group, or sphere of activity", + "example_sentence_english": "He was on the fringe of the crowd.", + "pos": "noun", + "word_frequency": 6189 + }, + { + "word": "fulfill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "achieve or realize", + "example_sentence_english": "He worked hard to fulfill his dreams.", + "pos": "verb", + "word_frequency": 6190 + }, + { + "word": "granite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very hard, granular, crystalline igneous rock", + "example_sentence_english": "The kitchen countertops are made of granite.", + "pos": "noun", + "word_frequency": 6191 + }, + { + "word": "handbook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book giving instructions or information", + "example_sentence_english": "Please refer to the employee handbook for company policies.", + "pos": "noun", + "word_frequency": 6192 + }, + { + "word": "hardy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "robust; capable of enduring difficult conditions", + "example_sentence_english": "These plants are very hardy and can survive cold winters.", + "pos": "adjective", + "word_frequency": 6193 + }, + { + "word": "instinct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an innate, typically fixed pattern of behavior", + "example_sentence_english": "Birds build nests by instinct.", + "pos": "noun", + "word_frequency": 6194 + }, + { + "word": "irony", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the expression of one's meaning by using language that normally signifies the opposite", + "example_sentence_english": "The irony of the situation was that the fire station burned down.", + "pos": "noun", + "word_frequency": 6195 + }, + { + "word": "judgement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to make considered decisions or come to sensible conclusions", + "example_sentence_english": "He showed good judgement in a difficult situation.", + "pos": "noun", + "word_frequency": 6198 + }, + { + "word": "judiciary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the judicial authorities of a country; judges collectively", + "example_sentence_english": "The independence of the judiciary is crucial for a fair legal system.", + "pos": "noun", + "word_frequency": 6199 + }, + { + "word": "legion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large group of people or things", + "example_sentence_english": "A legion of fans waited outside the stadium.", + "pos": "noun", + "word_frequency": 6200 + }, + { + "word": "lethal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadly", + "example_sentence_english": "The snake's venom was lethal.", + "pos": "adjective", + "word_frequency": 6201 + }, + { + "word": "lime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small green citrus fruit", + "example_sentence_english": "I like to add a slice of lime to my drink.", + "pos": "noun", + "word_frequency": 6202 + }, + { + "word": "lively", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of life and energy", + "example_sentence_english": "The party was very lively with music and dancing.", + "pos": "adjective", + "word_frequency": 6203 + }, + { + "word": "logistics", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the detailed organization and implementation of a complex operation", + "example_sentence_english": "The logistics of organizing the event were complicated.", + "pos": "noun", + "word_frequency": 6204 + }, + { + "word": "lower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move something downwards", + "example_sentence_english": "Please lower your voice.", + "pos": "verb", + "word_frequency": 6205 + }, + { + "word": "maid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female domestic servant", + "example_sentence_english": "The hotel maid cleaned our room every day.", + "pos": "noun", + "word_frequency": 6207 + }, + { + "word": "maple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of tree", + "example_sentence_english": "Maple syrup comes from maple trees.", + "pos": "noun", + "word_frequency": 6210 + }, + { + "word": "midfielder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player in the middle of the field in sports like soccer", + "example_sentence_english": "The midfielder scored a goal from outside the box.", + "pos": "noun", + "word_frequency": 6212 + }, + { + "word": "mindset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the established set of attitudes held by someone", + "example_sentence_english": "She has a positive mindset towards challenges.", + "pos": "noun", + "word_frequency": 6213 + }, + { + "word": "mistress", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a woman in a position of authority or control", + "example_sentence_english": "The mistress of the house greeted her guests.", + "pos": "noun", + "word_frequency": 6214 + }, + { + "word": "morality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "principles concerning the distinction between right and wrong behavior", + "example_sentence_english": "The story explores themes of morality and justice.", + "pos": "noun", + "word_frequency": 6216 + }, + { + "word": "mortal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject to death; causing death", + "example_sentence_english": "All humans are mortal.", + "pos": "adjective", + "word_frequency": 6217 + }, + { + "word": "nonprofit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not making or conducted primarily to make a profit", + "example_sentence_english": "She works for a nonprofit organization.", + "pos": "adjective", + "word_frequency": 6218 + }, + { + "word": "operative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "functioning or having an effect", + "example_sentence_english": "The new policy will be operative from next month.", + "pos": "adjective", + "word_frequency": 6220 + }, + { + "word": "pickup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small truck; the act of collecting something", + "example_sentence_english": "We need to arrange for the pickup of the package.", + "pos": "noun", + "word_frequency": 6222 + }, + { + "word": "prestigious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inspiring respect and admiration; having high status", + "example_sentence_english": "Harvard is a prestigious university.", + "pos": "adjective", + "word_frequency": 6223 + }, + { + "word": "radius", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a straight line from the center to the circumference of a circle or sphere", + "example_sentence_english": "The explosion had an impact radius of five miles.", + "pos": "noun", + "word_frequency": 6224 + }, + { + "word": "referee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official who watches a game or match closely to ensure that the rules are adhered to", + "example_sentence_english": "The referee blew the whistle to end the game.", + "pos": "noun", + "word_frequency": 6225 + }, + { + "word": "relay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a race between teams; a device that passes on an electrical signal", + "example_sentence_english": "The 4x100 meter relay team won the gold medal.", + "pos": "noun", + "word_frequency": 6226 + }, + { + "word": "rig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large structure for drilling for oil or gas; a particular type of equipment", + "example_sentence_english": "The oil rig was visible from the coastline.", + "pos": "noun", + "word_frequency": 6227 + }, + { + "word": "scroll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a roll of parchment or paper; a decorative design", + "example_sentence_english": "She found an ancient scroll in the library.", + "pos": "noun", + "word_frequency": 6229 + }, + { + "word": "sovereignty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supreme power or authority", + "example_sentence_english": "The country declared its sovereignty.", + "pos": "noun", + "word_frequency": 6231 + }, + { + "word": "stunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an action displaying spectacular skill; something unusual done to attract attention", + "example_sentence_english": "The movie featured many dangerous stunts.", + "pos": "noun", + "word_frequency": 6232 + }, + { + "word": "sunlight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the light from the sun", + "example_sentence_english": "Plants need sunlight to grow.", + "pos": "noun", + "word_frequency": 6233 + }, + { + "word": "surf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the mass or line of foam formed by waves breaking on a seashore", + "example_sentence_english": "We watched the surf crash against the rocks.", + "pos": "noun", + "word_frequency": 6234 + }, + { + "word": "symbolic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving as a symbol", + "example_sentence_english": "The dove is symbolic of peace.", + "pos": "adjective", + "word_frequency": 6235 + }, + { + "word": "sync", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronization", + "example_sentence_english": "Make sure your calendar is in sync with your phone.", + "pos": "noun", + "word_frequency": 6236 + }, + { + "word": "taxpayer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who pays taxes", + "example_sentence_english": "Taxpayers fund public services.", + "pos": "noun", + "word_frequency": 6237 + }, + { + "word": "tempt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entice or allure someone to do something", + "example_sentence_english": "The delicious smell of cookies tempted me.", + "pos": "verb", + "word_frequency": 6238 + }, + { + "word": "thrust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sudden or violent push; the propulsive force of an engine", + "example_sentence_english": "The rocket's powerful thrust lifted it off the ground.", + "pos": "noun", + "word_frequency": 6239 + }, + { + "word": "trilogy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a series of three related novels, plays, or films", + "example_sentence_english": "The Lord of the Rings is a famous fantasy trilogy.", + "pos": "noun", + "word_frequency": 6241 + }, + { + "word": "url", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Uniform Resource Locator (web address)", + "example_sentence_english": "Please type the URL into your browser.", + "pos": "noun", + "word_frequency": 6242 + }, + { + "word": "wheelchair", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a chair with wheels, used by people who cannot walk", + "example_sentence_english": "The hospital provides wheelchairs for patients.", + "pos": "noun", + "word_frequency": 6243 + }, + { + "word": "whore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute (offensive)", + "example_sentence_english": "The character was portrayed as a whore in the old novel.", + "pos": "noun", + "word_frequency": 6244 + }, + { + "word": "accusation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a charge or claim that someone has done something illegal or wrong", + "example_sentence_english": "He denied the accusation of theft.", + "pos": "noun", + "word_frequency": 6246 + }, + { + "word": "allowance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "money given regularly to a child or for a specific purpose", + "example_sentence_english": "My parents gave me a weekly allowance.", + "pos": "noun", + "word_frequency": 6247 + }, + { + "word": "arbitrary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on random choice or personal whim, rather than any reason or system", + "example_sentence_english": "The decision seemed arbitrary and unfair.", + "pos": "adjective", + "word_frequency": 6249 + }, + { + "word": "atm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Automated Teller Machine", + "example_sentence_english": "I need to find an ATM to withdraw cash.", + "pos": "noun", + "word_frequency": 6250 + }, + { + "word": "autonomous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the freedom to govern itself or control its own affairs", + "example_sentence_english": "The region became an autonomous republic.", + "pos": "adjective", + "word_frequency": 6251 + }, + { + "word": "bait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food used to attract fish or other animals", + "example_sentence_english": "He put some worms on the hook as bait.", + "pos": "noun", + "word_frequency": 6252 + }, + { + "word": "bark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the outer covering of a tree trunk; the sound a dog makes", + "example_sentence_english": "The dog's loud bark startled the cat.", + "pos": "noun", + "word_frequency": 6253 + }, + { + "word": "blogger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who writes for a blog", + "example_sentence_english": "She is a popular fashion blogger.", + "pos": "noun", + "word_frequency": 6254 + }, + { + "word": "bra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a woman's undergarment worn to support the breasts", + "example_sentence_english": "She bought a new bra.", + "pos": "noun", + "word_frequency": 6255 + }, + { + "word": "brotherhood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the relationship between brothers; a feeling of friendship and understanding among people", + "example_sentence_english": "They shared a strong sense of brotherhood.", + "pos": "noun", + "word_frequency": 6257 + }, + { + "word": "buddhist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a follower of Buddhism", + "example_sentence_english": "He became a Buddhist after studying Eastern philosophy.", + "pos": "noun", + "word_frequency": 6258 + }, + { + "word": "builder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who constructs or repairs buildings", + "example_sentence_english": "The builder finished the new house last week.", + "pos": "noun", + "word_frequency": 6259 + }, + { + "word": "carriage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wheeled vehicle, especially one pulled by horses or a part of a train", + "example_sentence_english": "The royal family arrived in a horse-drawn carriage.", + "pos": "noun", + "word_frequency": 6260 + }, + { + "word": "censorship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the suppression or prohibition of any parts of books, films, news, etc. that are considered obscene, politically unacceptable, or a threat to security", + "example_sentence_english": "The government imposed strict censorship on the media.", + "pos": "noun", + "word_frequency": 6261 + }, + { + "word": "clarify", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make (something) less confusing and more comprehensible", + "example_sentence_english": "Could you please clarify your last point?", + "pos": "verb", + "word_frequency": 6264 + }, + { + "word": "compilation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collection of things, especially musical recordings or literary works", + "example_sentence_english": "She released a compilation of her greatest hits.", + "pos": "noun", + "word_frequency": 6266 + }, + { + "word": "composer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who writes music", + "example_sentence_english": "Beethoven was a famous classical composer.", + "pos": "noun", + "word_frequency": 6267 + }, + { + "word": "constitute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be (a part) of a whole; combine to form (a whole)", + "example_sentence_english": "These elements constitute the main part of the report.", + "pos": "verb", + "word_frequency": 6268 + }, + { + "word": "correspondence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communication by exchange of letters or emails", + "example_sentence_english": "We maintain regular correspondence with our overseas clients.", + "pos": "noun", + "word_frequency": 6269 + }, + { + "word": "desirable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wished for as being an attractive, useful, or necessary quality", + "example_sentence_english": "A good work-life balance is highly desirable.", + "pos": "adjective", + "word_frequency": 6270 + }, + { + "word": "devastate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroy or ruin (something); cause (someone) severe and overwhelming shock or grief", + "example_sentence_english": "The news of her death devastated her family.", + "pos": "verb", + "word_frequency": 6271 + }, + { + "word": "diagram", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a simplified drawing showing the appearance, structure, or workings of something", + "example_sentence_english": "The teacher drew a diagram to explain the process.", + "pos": "noun", + "word_frequency": 6272 + }, + { + "word": "erect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construct (a building, monument, or other structure); set up", + "example_sentence_english": "They plan to erect a new monument in the town square.", + "pos": "verb", + "word_frequency": 6273 + }, + { + "word": "explorer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who explores an unfamiliar area", + "example_sentence_english": "Christopher Columbus was a famous explorer.", + "pos": "noun", + "word_frequency": 6274 + }, + { + "word": "favorable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressing approval; advantageous or suitable", + "example_sentence_english": "The weather forecast is favorable for our picnic.", + "pos": "adjective", + "word_frequency": 6275 + }, + { + "word": "feminism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the advocacy of women's rights on the basis of the equality of the sexes", + "example_sentence_english": "Feminism advocates for equal rights for all genders.", + "pos": "noun", + "word_frequency": 6276 + }, + { + "word": "flaw", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fault or weakness in a person's character; a defect in something", + "example_sentence_english": "The only flaw in the plan was the lack of funding.", + "pos": "noun", + "word_frequency": 6277 + }, + { + "word": "gasoline", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a refined petroleum spirit used as fuel for internal combustion engines", + "example_sentence_english": "We need to stop for gasoline before the long drive.", + "pos": "noun", + "word_frequency": 6278 + }, + { + "word": "genesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the origin or mode of formation of something", + "example_sentence_english": "The book describes the genesis of the universe.", + "pos": "noun", + "word_frequency": 6279 + }, + { + "word": "geographical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to geography", + "example_sentence_english": "The geographical features of the region are diverse.", + "pos": "adjective", + "word_frequency": 6280 + }, + { + "word": "governmental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to government", + "example_sentence_english": "Governmental policies can have a big impact on the economy.", + "pos": "adjective", + "word_frequency": 6281 + }, + { + "word": "grandson", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the son of one's son or daughter", + "example_sentence_english": "My grandson loves to play with his toy cars.", + "pos": "noun", + "word_frequency": 6282 + }, + { + "word": "incomplete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not finished or complete", + "example_sentence_english": "The report is still incomplete.", + "pos": "adjective", + "word_frequency": 6284 + }, + { + "word": "interrupt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop someone from speaking or doing something", + "example_sentence_english": "Please don't interrupt me when I'm talking.", + "pos": "verb", + "word_frequency": 6285 + }, + { + "word": "ivory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard, white substance from the tusks of elephants", + "example_sentence_english": "The piano keys were made of ivory.", + "pos": "noun", + "word_frequency": 6286 + }, + { + "word": "lengthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very long", + "example_sentence_english": "The meeting was a lengthy discussion.", + "pos": "adjective", + "word_frequency": 6290 + }, + { + "word": "levy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tax, fee, or fine", + "example_sentence_english": "The government imposed a new levy on imported goods.", + "pos": "noun", + "word_frequency": 6291 + }, + { + "word": "lp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long-playing record", + "example_sentence_english": "He still collects old LPs.", + "pos": "noun", + "word_frequency": 6292 + }, + { + "word": "manipulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of controlling or influencing someone or something skillfully, often unfairly", + "example_sentence_english": "The manipulation of data can lead to false conclusions.", + "pos": "noun", + "word_frequency": 6293 + }, + { + "word": "mock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make fun of someone or something", + "example_sentence_english": "Don't mock his efforts; he's trying his best.", + "pos": "verb", + "word_frequency": 6295 + }, + { + "word": "necklace", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an ornament worn around the neck", + "example_sentence_english": "She wore a beautiful pearl necklace.", + "pos": "noun", + "word_frequency": 6296 + }, + { + "word": "niche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a specialized segment of the market for a particular kind of product or service", + "example_sentence_english": "He found his niche in the tech industry.", + "pos": "noun", + "word_frequency": 6297 + }, + { + "word": "obscure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not discovered or known about; uncertain", + "example_sentence_english": "His early life remains obscure.", + "pos": "adjective", + "word_frequency": 6300 + }, + { + "word": "porch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a covered shelter projecting in front of the entrance of a building", + "example_sentence_english": "We sat on the porch and watched the sunset.", + "pos": "noun", + "word_frequency": 6304 + }, + { + "word": "portray", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depict or represent (someone or something) in a work of art or literature", + "example_sentence_english": "The artist tried to portray the beauty of the landscape.", + "pos": "verb", + "word_frequency": 6305 + }, + { + "word": "proposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statement or assertion that expresses a judgment or opinion", + "example_sentence_english": "He made an interesting proposition during the meeting.", + "pos": "noun", + "word_frequency": 6307 + }, + { + "word": "reading", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the action or skill of reading", + "example_sentence_english": "Reading is a great way to learn new things.", + "pos": "noun", + "word_frequency": 6308 + }, + { + "word": "recession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of temporary economic decline", + "example_sentence_english": "The country is currently experiencing a recession.", + "pos": "noun", + "word_frequency": 6309 + }, + { + "word": "rim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the outer edge of a circular object", + "example_sentence_english": "The rim of the glass was chipped.", + "pos": "noun", + "word_frequency": 6311 + }, + { + "word": "spinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the spine or backbone", + "example_sentence_english": "He suffered a spinal injury.", + "pos": "adjective", + "word_frequency": 6313 + }, + { + "word": "spiral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a curve that winds around a central point", + "example_sentence_english": "The staircase had a beautiful spiral design.", + "pos": "noun", + "word_frequency": 6314 + }, + { + "word": "spit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to eject saliva from the mouth", + "example_sentence_english": "It's rude to spit on the street.", + "pos": "verb", + "word_frequency": 6315 + }, + { + "word": "splash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sound or mark made by something falling into or hitting liquid", + "example_sentence_english": "We heard a big splash as he jumped into the pool.", + "pos": "noun", + "word_frequency": 6316 + }, + { + "word": "successive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following one another or following others", + "example_sentence_english": "They won the championship for three successive years.", + "pos": "adjective", + "word_frequency": 6317 + }, + { + "word": "superhero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fictional character with superhuman powers", + "example_sentence_english": "My favorite superhero is Spider-Man.", + "pos": "noun", + "word_frequency": 6318 + }, + { + "word": "therapeutic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the healing of disease", + "example_sentence_english": "The warm bath had a therapeutic effect.", + "pos": "adjective", + "word_frequency": 6319 + }, + { + "word": "timely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done or occurring at a favorable or appropriate time", + "example_sentence_english": "The timely arrival of the ambulance saved his life.", + "pos": "adjective", + "word_frequency": 6321 + }, + { + "word": "tub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a wide, open, deep, usually round container", + "example_sentence_english": "She filled the tub with warm water for a bath.", + "pos": "noun", + "word_frequency": 6322 + }, + { + "word": "undergraduate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a university student who has not yet received a first degree", + "example_sentence_english": "She is an undergraduate student studying history.", + "pos": "noun", + "word_frequency": 6324 + }, + { + "word": "undertake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commit oneself to and begin (an enterprise or responsibility)", + "example_sentence_english": "The company decided to undertake a new project.", + "pos": "verb", + "word_frequency": 6325 + }, + { + "word": "utter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete; absolute", + "example_sentence_english": "The meeting was an utter disaster.", + "pos": "adjective", + "word_frequency": 6327 + }, + { + "word": "vietnamese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Vietnam, its people, or its language", + "example_sentence_english": "She is learning Vietnamese cuisine.", + "pos": "adjective", + "word_frequency": 6328 + }, + { + "word": "volleyball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a team sport in which two teams hit a ball over a net", + "example_sentence_english": "They played volleyball on the beach.", + "pos": "noun", + "word_frequency": 6329 + }, + { + "word": "advertisement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a notice or announcement promoting a product, service, or event", + "example_sentence_english": "I saw an interesting advertisement for a new car.", + "pos": "noun", + "word_frequency": 6332 + }, + { + "word": "atmospheric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creating a distinctive mood", + "example_sentence_english": "The old house had a very atmospheric feel.", + "pos": "adjective", + "word_frequency": 6333 + }, + { + "word": "bracket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a support projecting from a wall", + "example_sentence_english": "He installed a new bracket to hold the shelf.", + "pos": "noun", + "word_frequency": 6337 + }, + { + "word": "confront", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meet (someone) face to face with hostile or argumentative intent", + "example_sentence_english": "She decided to confront her fears.", + "pos": "verb", + "word_frequency": 6341 + }, + { + "word": "creep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move slowly and carefully in order to avoid being heard or noticed", + "example_sentence_english": "The cat tried to creep silently towards the bird.", + "pos": "verb", + "word_frequency": 6343 + }, + { + "word": "daylight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the natural light of the day", + "example_sentence_english": "We need to finish before daylight fades.", + "pos": "noun", + "word_frequency": 6344 + }, + { + "word": "disclose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (secret or new information) known", + "example_sentence_english": "The company refused to disclose the financial details.", + "pos": "verb", + "word_frequency": 6347 + }, + { + "word": "doe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female deer, especially a fallow deer or roe deer", + "example_sentence_english": "We saw a doe and her fawn in the forest.", + "pos": "noun", + "word_frequency": 6348 + }, + { + "word": "elbow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the joint between the forearm and the upper arm", + "example_sentence_english": "He hit his elbow on the table.", + "pos": "noun", + "word_frequency": 6350 + }, + { + "word": "enthusiastic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing intense and eager enjoyment, interest, or approval", + "example_sentence_english": "She was very enthusiastic about the new project.", + "pos": "adjective", + "word_frequency": 6351 + }, + { + "word": "envy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of discontented or resentful longing aroused by someone else's possessions, qualities, or luck", + "example_sentence_english": "He felt a pang of envy when he saw her new car.", + "pos": "noun", + "word_frequency": 6352 + }, + { + "word": "exile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being barred from one's native country, typically for political or punitive reasons", + "example_sentence_english": "The political leader lived in exile for many years.", + "pos": "noun", + "word_frequency": 6353 + }, + { + "word": "exploitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or fact of treating someone unfairly in order to benefit from their work", + "example_sentence_english": "The report highlighted the exploitation of child labor.", + "pos": "noun", + "word_frequency": 6354 + }, + { + "word": "gel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a jelly-like substance", + "example_sentence_english": "She used hair gel to style her hair.", + "pos": "noun", + "word_frequency": 6356 + }, + { + "word": "goose", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large water bird with a long neck, short legs, webbed feet, and a short broad bill", + "example_sentence_english": "A flock of geese flew over the lake.", + "pos": "noun", + "word_frequency": 6357 + }, + { + "word": "grill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a framework of metal bars used for cooking food over an open fire", + "example_sentence_english": "We cooked burgers on the grill.", + "pos": "noun", + "word_frequency": 6358 + }, + { + "word": "heroic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the characteristics of a hero or heroine; very brave", + "example_sentence_english": "The firefighters made a heroic effort to save the building.", + "pos": "adjective", + "word_frequency": 6359 + }, + { + "word": "hut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, simple dwelling", + "example_sentence_english": "They built a small hut by the river.", + "pos": "noun", + "word_frequency": 6360 + }, + { + "word": "inmate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person confined to an institution", + "example_sentence_english": "The inmate was released after serving his sentence.", + "pos": "noun", + "word_frequency": 6361 + }, + { + "word": "instruct", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to teach or direct", + "example_sentence_english": "Please instruct me on how to use this machine.", + "pos": "verb", + "word_frequency": 6362 + }, + { + "word": "malaysian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Malaysia", + "example_sentence_english": "She enjoys Malaysian food.", + "pos": "adjective", + "word_frequency": 6366 + }, + { + "word": "marina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a harbor for pleasure boats", + "example_sentence_english": "We walked along the marina at sunset.", + "pos": "noun", + "word_frequency": 6367 + }, + { + "word": "mat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of material for covering a floor or other surface", + "example_sentence_english": "Please wipe your feet on the mat.", + "pos": "noun", + "word_frequency": 6368 + }, + { + "word": "monopoly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive control of a commodity or service", + "example_sentence_english": "The company has a monopoly on the software market.", + "pos": "noun", + "word_frequency": 6373 + }, + { + "word": "nobel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Nobel Prizes", + "example_sentence_english": "She won a Nobel Prize for her research.", + "pos": "adjective", + "word_frequency": 6375 + }, + { + "word": "outrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme anger or shock", + "example_sentence_english": "There was public outrage over the decision.", + "pos": "noun", + "word_frequency": 6377 + }, + { + "word": "paperwork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "routine administrative work involving documents", + "example_sentence_english": "I have a lot of paperwork to finish today.", + "pos": "noun", + "word_frequency": 6378 + }, + { + "word": "renewal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of resuming or extending", + "example_sentence_english": "The contract is due for renewal next month.", + "pos": "noun", + "word_frequency": 6381 + }, + { + "word": "ruler", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a straight strip of material used for measuring", + "example_sentence_english": "Can I borrow your ruler to draw a straight line?", + "pos": "noun", + "word_frequency": 6383 + }, + { + "word": "skate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to glide on skates", + "example_sentence_english": "They love to skate on the ice rink.", + "pos": "verb", + "word_frequency": 6384 + }, + { + "word": "slaughter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the killing of animals for food; violent killing of people", + "example_sentence_english": "The slaughter of innocent people was condemned.", + "pos": "noun", + "word_frequency": 6385 + }, + { + "word": "sperm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "male reproductive cells", + "example_sentence_english": "Sperm are essential for reproduction.", + "pos": "noun", + "word_frequency": 6387 + }, + { + "word": "spill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of spilling", + "example_sentence_english": "Be careful not to cause a spill.", + "pos": "noun", + "word_frequency": 6388 + }, + { + "word": "swamp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area of low-lying uncultivated ground where water collects", + "example_sentence_english": "Alligators live in the swamp.", + "pos": "noun", + "word_frequency": 6389 + }, + { + "word": "swan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large water bird", + "example_sentence_english": "A beautiful white swan swam on the lake.", + "pos": "noun", + "word_frequency": 6390 + }, + { + "word": "synthesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the combination of components to form a connected whole", + "example_sentence_english": "The report provides a synthesis of the research findings.", + "pos": "noun", + "word_frequency": 6391 + }, + { + "word": "tasty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a pleasant flavor", + "example_sentence_english": "This cake is very tasty.", + "pos": "adjective", + "word_frequency": 6392 + }, + { + "word": "testify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give evidence as a witness", + "example_sentence_english": "He was called to testify in court.", + "pos": "verb", + "word_frequency": 6393 + }, + { + "word": "tolerate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allow the existence of something without interference", + "example_sentence_english": "I cannot tolerate such rude behavior.", + "pos": "verb", + "word_frequency": 6394 + }, + { + "word": "traveler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who travels", + "example_sentence_english": "The traveler explored many new countries.", + "pos": "noun", + "word_frequency": 6395 + }, + { + "word": "treason", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the crime of betraying one's country", + "example_sentence_english": "He was accused of treason against the state.", + "pos": "noun", + "word_frequency": 6396 + }, + { + "word": "trustee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an individual or body holding legal title to property for the benefit of another", + "example_sentence_english": "The university's board of trustees met last week.", + "pos": "noun", + "word_frequency": 6397 + }, + { + "word": "urine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a liquid waste product", + "example_sentence_english": "A urine sample was taken for analysis.", + "pos": "noun", + "word_frequency": 6398 + }, + { + "word": "vanilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flavoring extract from vanilla beans", + "example_sentence_english": "I'd like a scoop of vanilla ice cream.", + "pos": "noun", + "word_frequency": 6399 + }, + { + "word": "violet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violet (color/flower)", + "example_sentence_english": "She wore a dress of a beautiful violet color.", + "pos": "noun", + "word_frequency": 6403 + }, + { + "word": "activation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making something active or operative", + "example_sentence_english": "The activation of the alarm system prevented the theft.", + "pos": "noun", + "word_frequency": 6405 + }, + { + "word": "afghan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Afghanistan or its people", + "example_sentence_english": "He bought a beautiful Afghan rug.", + "pos": "adjective", + "word_frequency": 6406 + }, + { + "word": "afterward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at a later or subsequent time", + "example_sentence_english": "We went to the cinema and afterward we had dinner.", + "pos": "adverb", + "word_frequency": 6407 + }, + { + "word": "allocate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribute (resources or duties) for a particular purpose", + "example_sentence_english": "The government decided to allocate more funds to education.", + "pos": "verb", + "word_frequency": 6409 + }, + { + "word": "applause", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clapping to show approval or enjoyment", + "example_sentence_english": "The audience erupted in thunderous applause.", + "pos": "noun", + "word_frequency": 6410 + }, + { + "word": "bald", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having little or no hair on the scalp", + "example_sentence_english": "My uncle started to go bald in his thirties.", + "pos": "adjective", + "word_frequency": 6411 + }, + { + "word": "boil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reach or cause to reach the temperature at which it bubbles and turns to vapor", + "example_sentence_english": "Please boil some water for the tea.", + "pos": "verb", + "word_frequency": 6412 + }, + { + "word": "borough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a town or district that is an administrative unit", + "example_sentence_english": "The borough council is responsible for local services.", + "pos": "noun", + "word_frequency": 6413 + }, + { + "word": "breakthrough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, dramatic, and important discovery or development", + "example_sentence_english": "Scientists announced a major breakthrough in cancer research.", + "pos": "noun", + "word_frequency": 6416 + }, + { + "word": "cone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a solid or hollow object with a round base and a tapering side to a point", + "example_sentence_english": "The ice cream was served in a waffle cone.", + "pos": "noun", + "word_frequency": 6420 + }, + { + "word": "convey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (an idea, impression, or feeling) known or understandable to someone", + "example_sentence_english": "His words failed to convey his true feelings.", + "pos": "verb", + "word_frequency": 6421 + }, + { + "word": "critique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a detailed analysis and assessment of something", + "example_sentence_english": "She wrote a thoughtful critique of the new novel.", + "pos": "noun", + "word_frequency": 6422 + }, + { + "word": "decay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or process of rotting or decomposition", + "example_sentence_english": "The old wooden house showed signs of decay.", + "pos": "noun", + "word_frequency": 6424 + }, + { + "word": "dessert", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the sweet course eaten at the end of a meal", + "example_sentence_english": "For dessert, we had apple pie with ice cream.", + "pos": "noun", + "word_frequency": 6425 + }, + { + "word": "diagnostic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concerned with the diagnosis of illness or other problems", + "example_sentence_english": "The doctor ordered several diagnostic tests.", + "pos": "adjective", + "word_frequency": 6426 + }, + { + "word": "differential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of, relating to, or constituting a difference", + "example_sentence_english": "There is a differential in pay between the two roles.", + "pos": "adjective", + "word_frequency": 6428 + }, + { + "word": "discourse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "written or spoken communication or debate", + "example_sentence_english": "The political discourse has become increasingly polarized.", + "pos": "noun", + "word_frequency": 6429 + }, + { + "word": "dominance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power and influence over others", + "example_sentence_english": "The company achieved market dominance with its new product.", + "pos": "noun", + "word_frequency": 6430 + }, + { + "word": "exploit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make full use of and derive benefit from (a resource)", + "example_sentence_english": "We need to exploit new technologies to improve efficiency.", + "pos": "verb", + "word_frequency": 6431 + }, + { + "word": "firework", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device containing combustible chemicals that is ignited to produce colored lights, smoke, and noise", + "example_sentence_english": "The firework display on New Year's Eve was spectacular.", + "pos": "noun", + "word_frequency": 6432 + }, + { + "word": "gateway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an opening that can be closed by a gate; a means of access or entry", + "example_sentence_english": "The city is often called the gateway to the West.", + "pos": "noun", + "word_frequency": 6436 + }, + { + "word": "humidity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being humid; a moderate amount of wetness in the air", + "example_sentence_english": "The high humidity made the summer day feel even hotter.", + "pos": "noun", + "word_frequency": 6438 + }, + { + "word": "humour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being amusing or comic, especially as expressed in literature or speech", + "example_sentence_english": "His dry humour always makes me laugh.", + "pos": "noun", + "word_frequency": 6439 + }, + { + "word": "imagery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mental images, figurative language", + "example_sentence_english": "The poem used vivid imagery to describe the sunset.", + "pos": "noun", + "word_frequency": 6440 + }, + { + "word": "inherent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing as a natural part", + "example_sentence_english": "There are inherent risks in any investment.", + "pos": "adjective", + "word_frequency": 6441 + }, + { + "word": "inland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "away from the coast", + "example_sentence_english": "They traveled to the inland regions of the country.", + "pos": "adjective", + "word_frequency": 6442 + }, + { + "word": "innocence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state of being innocent", + "example_sentence_english": "Her innocence was clear to everyone.", + "pos": "noun", + "word_frequency": 6443 + }, + { + "word": "isle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small island", + "example_sentence_english": "We visited a beautiful isle in the Caribbean.", + "pos": "noun", + "word_frequency": 6444 + }, + { + "word": "ivy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a climbing plant", + "example_sentence_english": "The old house was covered in ivy.", + "pos": "noun", + "word_frequency": 6445 + }, + { + "word": "justification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a good reason for something", + "example_sentence_english": "There was no justification for his rude behavior.", + "pos": "noun", + "word_frequency": 6446 + }, + { + "word": "livestock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farm animals", + "example_sentence_english": "The farmer raised various types of livestock.", + "pos": "noun", + "word_frequency": 6450 + }, + { + "word": "mafia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organized crime syndicate", + "example_sentence_english": "The movie was about the Italian Mafia.", + "pos": "noun", + "word_frequency": 6453 + }, + { + "word": "merry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheerful and lively", + "example_sentence_english": "We wished everyone a merry Christmas.", + "pos": "adjective", + "word_frequency": 6454 + }, + { + "word": "missionary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person sent on a religious mission", + "example_sentence_english": "The missionary traveled to remote villages to help people.", + "pos": "noun", + "word_frequency": 6456 + }, + { + "word": "nationalism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotic feeling, principles, or efforts", + "example_sentence_english": "The rise of nationalism can lead to conflict.", + "pos": "noun", + "word_frequency": 6457 + }, + { + "word": "naughty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disobedient, mischievous", + "example_sentence_english": "The naughty child wouldn't share his toys.", + "pos": "adjective", + "word_frequency": 6458 + }, + { + "word": "notify", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inform someone", + "example_sentence_english": "Please notify me if there are any changes.", + "pos": "verb", + "word_frequency": 6461 + }, + { + "word": "notorious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "famous for something bad", + "example_sentence_english": "The area is notorious for its high crime rate.", + "pos": "adjective", + "word_frequency": 6462 + }, + { + "word": "obey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to follow rules or commands", + "example_sentence_english": "Dogs are trained to obey commands.", + "pos": "verb", + "word_frequency": 6463 + }, + { + "word": "organizational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to an organization", + "example_sentence_english": "Good organizational skills are essential for this job.", + "pos": "adjective", + "word_frequency": 6465 + }, + { + "word": "outright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completely, openly", + "example_sentence_english": "He told an outright lie.", + "pos": "adverb", + "word_frequency": 6466 + }, + { + "word": "overly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessively, too much", + "example_sentence_english": "Don't be overly critical of yourself.", + "pos": "adverb", + "word_frequency": 6467 + }, + { + "word": "oversight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unintentional error; supervision", + "example_sentence_english": "It was an unfortunate oversight on my part.", + "pos": "noun", + "word_frequency": 6468 + }, + { + "word": "panther", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large wild cat", + "example_sentence_english": "A black panther was spotted in the jungle.", + "pos": "noun", + "word_frequency": 6469 + }, + { + "word": "persian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Persia/Iran", + "example_sentence_english": "She has a beautiful Persian rug.", + "pos": "adjective", + "word_frequency": 6470 + }, + { + "word": "prototype", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an original model", + "example_sentence_english": "They are testing the new prototype of the car.", + "pos": "noun", + "word_frequency": 6471 + }, + { + "word": "pumpkin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large round orange squash", + "example_sentence_english": "We carved a pumpkin for Halloween.", + "pos": "noun", + "word_frequency": 6472 + }, + { + "word": "ramp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sloping surface", + "example_sentence_english": "The building has a ramp for wheelchair access.", + "pos": "noun", + "word_frequency": 6473 + }, + { + "word": "reactor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device to control a nuclear chain reaction", + "example_sentence_english": "The nuclear power plant has several reactors.", + "pos": "noun", + "word_frequency": 6475 + }, + { + "word": "reef", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a ridge of rock, sand, or coral near the surface of the sea", + "example_sentence_english": "We went snorkeling near the coral reef.", + "pos": "noun", + "word_frequency": 6476 + }, + { + "word": "refine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to improve by making small changes", + "example_sentence_english": "We need to refine our strategy.", + "pos": "verb", + "word_frequency": 6477 + }, + { + "word": "refresh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give new strength or energy to", + "example_sentence_english": "A cold drink will refresh you.", + "pos": "verb", + "word_frequency": 6478 + }, + { + "word": "refusal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of refusing", + "example_sentence_english": "His refusal to cooperate caused problems.", + "pos": "noun", + "word_frequency": 6479 + }, + { + "word": "reinforce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strengthen", + "example_sentence_english": "The new evidence will reinforce our argument.", + "pos": "verb", + "word_frequency": 6480 + }, + { + "word": "remedy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a solution or cure", + "example_sentence_english": "There is no easy remedy for this problem.", + "pos": "noun", + "word_frequency": 6481 + }, + { + "word": "reset", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "set again", + "example_sentence_english": "I need to reset my password.", + "pos": "verb", + "word_frequency": 6482 + }, + { + "word": "sage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a wise person or an aromatic herb", + "example_sentence_english": "The old sage offered valuable advice.", + "pos": "noun", + "word_frequency": 6483 + }, + { + "word": "shave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "remove hair with a razor", + "example_sentence_english": "He needs to shave his beard.", + "pos": "verb", + "word_frequency": 6484 + }, + { + "word": "sickness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "illness", + "example_sentence_english": "She was absent due to sickness.", + "pos": "noun", + "word_frequency": 6485 + }, + { + "word": "startup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a newly established business", + "example_sentence_english": "He works for a tech startup.", + "pos": "noun", + "word_frequency": 6487 + }, + { + "word": "statute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a written law", + "example_sentence_english": "The new statute will affect all citizens.", + "pos": "noun", + "word_frequency": 6488 + }, + { + "word": "straightforward", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simple and easy to understand", + "example_sentence_english": "The instructions were very straightforward.", + "pos": "adjective", + "word_frequency": 6489 + }, + { + "word": "superstar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an extremely famous and successful person", + "example_sentence_english": "She became a global superstar overnight.", + "pos": "noun", + "word_frequency": 6490 + }, + { + "word": "telecommunication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "communication over a distance by cable, telegraph, telephone, or broadcasting", + "example_sentence_english": "The company specializes in telecommunication services.", + "pos": "noun", + "word_frequency": 6491 + }, + { + "word": "thoughtful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showing consideration for others", + "example_sentence_english": "It was very thoughtful of you to send flowers.", + "pos": "adjective", + "word_frequency": 6492 + }, + { + "word": "toddler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a young child who is just beginning to walk", + "example_sentence_english": "The toddler is learning to walk.", + "pos": "noun", + "word_frequency": 6494 + }, + { + "word": "utilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make practical and effective use of", + "example_sentence_english": "We should utilize all available resources.", + "pos": "verb", + "word_frequency": 6495 + }, + { + "word": "vicious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberately cruel or violent", + "example_sentence_english": "The dog gave a vicious bark.", + "pos": "adjective", + "word_frequency": 6496 + }, + { + "word": "viking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a member of the Scandinavian seafaring pirates and traders who raided and settled in many parts of northwestern Europe in the 8th–11th centuries.", + "example_sentence_english": "The Vikings were skilled navigators.", + "pos": "noun", + "word_frequency": 6497 + }, + { + "word": "vodka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a clear alcoholic spirit", + "example_sentence_english": "He ordered a glass of vodka.", + "pos": "noun", + "word_frequency": 6498 + }, + { + "word": "wholly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirely; fully", + "example_sentence_english": "The decision was wholly unexpected.", + "pos": "adverb", + "word_frequency": 6500 + }, + { + "word": "zoom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move or travel very quickly; adjust a camera lens", + "example_sentence_english": "The car zoomed past us.", + "pos": "verb", + "word_frequency": 6501 + }, + { + "word": "accidental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happening by chance or unexpectedly", + "example_sentence_english": "It was an accidental discovery.", + "pos": "adjective", + "word_frequency": 6502 + }, + { + "word": "addict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause (someone) to become dependent on a particular substance or activity", + "example_sentence_english": "He was addicted to gambling.", + "pos": "verb", + "word_frequency": 6503 + }, + { + "word": "archbishop", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chief bishop", + "example_sentence_english": "The archbishop delivered a sermon.", + "pos": "noun", + "word_frequency": 6505 + }, + { + "word": "assassination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the murder of a prominent person", + "example_sentence_english": "The assassination of the president shocked the nation.", + "pos": "noun", + "word_frequency": 6506 + }, + { + "word": "bibliography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a list of books or articles", + "example_sentence_english": "The essay included a comprehensive bibliography.", + "pos": "noun", + "word_frequency": 6508 + }, + { + "word": "bot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a software application that runs automated tasks over the internet", + "example_sentence_english": "The website uses a bot to answer common questions.", + "pos": "noun", + "word_frequency": 6509 + }, + { + "word": "calcium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chemical element essential for bones and teeth", + "example_sentence_english": "Milk is a good source of calcium.", + "pos": "noun", + "word_frequency": 6510 + }, + { + "word": "capita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(used in the phrase 'per capita') for each person", + "example_sentence_english": "The GDP per capita increased last year.", + "pos": "noun", + "word_frequency": 6512 + }, + { + "word": "certainty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firm conviction that something is true", + "example_sentence_english": "There is no certainty about the outcome.", + "pos": "noun", + "word_frequency": 6513 + }, + { + "word": "citation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a quotation from or reference to a book, paper, or author", + "example_sentence_english": "Please include a citation for all sources.", + "pos": "noun", + "word_frequency": 6515 + }, + { + "word": "compression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of compressing or being compressed", + "example_sentence_english": "Data compression reduces file size.", + "pos": "noun", + "word_frequency": 6516 + }, + { + "word": "confess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admit or acknowledge", + "example_sentence_english": "He decided to confess his crime.", + "pos": "verb", + "word_frequency": 6517 + }, + { + "word": "confine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restrict (a person or thing) to a limited space or area", + "example_sentence_english": "The patient was confined to bed.", + "pos": "verb", + "word_frequency": 6518 + }, + { + "word": "congregation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gathering of people, especially for religious worship", + "example_sentence_english": "The minister addressed the congregation.", + "pos": "noun", + "word_frequency": 6519 + }, + { + "word": "consolidate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combine; strengthen", + "example_sentence_english": "The companies decided to consolidate their resources.", + "pos": "verb", + "word_frequency": 6520 + }, + { + "word": "coordinate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organize; work together", + "example_sentence_english": "We need to coordinate our efforts to finish the project on time.", + "pos": "verb", + "word_frequency": 6521 + }, + { + "word": "cube", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a solid three-dimensional figure", + "example_sentence_english": "She put an ice cube in her drink.", + "pos": "noun", + "word_frequency": 6522 + }, + { + "word": "decoration", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "something used to make something look more attractive", + "example_sentence_english": "The Christmas decorations are beautiful this year.", + "pos": "noun", + "word_frequency": 6524 + }, + { + "word": "decree", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official order or decision", + "example_sentence_english": "The government issued a new decree regarding public health.", + "pos": "noun", + "word_frequency": 6525 + }, + { + "word": "deliberate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentional; done on purpose", + "example_sentence_english": "His actions were deliberate, not accidental.", + "pos": "adjective", + "word_frequency": 6526 + }, + { + "word": "despair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the complete loss or absence of hope", + "example_sentence_english": "She felt a sense of despair after losing her job.", + "pos": "noun", + "word_frequency": 6527 + }, + { + "word": "dividend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sum of money paid regularly by a company to its shareholders", + "example_sentence_english": "The company announced a higher dividend for its investors.", + "pos": "noun", + "word_frequency": 6528 + }, + { + "word": "drift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a slow, continuous movement", + "example_sentence_english": "We noticed a snow drift against the fence.", + "pos": "noun", + "word_frequency": 6529 + }, + { + "word": "dye", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance used to change the color of something", + "example_sentence_english": "She used a natural dye to color the fabric.", + "pos": "noun", + "word_frequency": 6530 + }, + { + "word": "educator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who teaches or educates", + "example_sentence_english": "She is a dedicated educator who cares deeply about her students.", + "pos": "noun", + "word_frequency": 6532 + }, + { + "word": "electron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stable subatomic particle", + "example_sentence_english": "An electron carries a negative electric charge.", + "pos": "noun", + "word_frequency": 6533 + }, + { + "word": "endure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffer patiently; last over a period of time", + "example_sentence_english": "She had to endure a lot of pain during her recovery.", + "pos": "verb", + "word_frequency": 6534 + }, + { + "word": "enzyme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance produced by a living organism that acts as a catalyst", + "example_sentence_english": "Digestive enzymes help break down food in the stomach.", + "pos": "noun", + "word_frequency": 6535 + }, + { + "word": "evolutionary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the process of evolution", + "example_sentence_english": "The theory of evolutionary biology explains how species change over time.", + "pos": "adjective", + "word_frequency": 6536 + }, + { + "word": "fragment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small part broken or separated off something", + "example_sentence_english": "We found a fragment of pottery at the archaeological site.", + "pos": "noun", + "word_frequency": 6537 + }, + { + "word": "geological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to geology or the study of the Earth's physical structure", + "example_sentence_english": "The area has interesting geological formations.", + "pos": "adjective", + "word_frequency": 6539 + }, + { + "word": "gram", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a metric unit of mass", + "example_sentence_english": "This recipe calls for 200 grams of flour.", + "pos": "noun", + "word_frequency": 6540 + }, + { + "word": "guru", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an influential teacher or expert", + "example_sentence_english": "He is considered a marketing guru in the industry.", + "pos": "noun", + "word_frequency": 6541 + }, + { + "word": "hatch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an opening in a floor, wall, or roof", + "example_sentence_english": "The crew opened the escape hatch.", + "pos": "noun", + "word_frequency": 6543 + }, + { + "word": "hormone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a regulatory substance produced in an organism", + "example_sentence_english": "Hormones play a crucial role in regulating body functions.", + "pos": "noun", + "word_frequency": 6546 + }, + { + "word": "inadequate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not enough or not good enough", + "example_sentence_english": "The resources provided were inadequate for the task.", + "pos": "adjective", + "word_frequency": 6547 + }, + { + "word": "infinity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of being infinite", + "example_sentence_english": "The universe seems to stretch into infinity.", + "pos": "noun", + "word_frequency": 6549 + }, + { + "word": "intentional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done on purpose; deliberate", + "example_sentence_english": "His silence was intentional, meant to convey his disapproval.", + "pos": "adverb", + "word_frequency": 6550 + }, + { + "word": "kilometer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of length, equal to 1,000 meters", + "example_sentence_english": "We drove for ten kilometers before reaching the town.", + "pos": "noun", + "word_frequency": 6551 + }, + { + "word": "lace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a delicate fabric; a cord used for fastening", + "example_sentence_english": "She wore a dress with delicate lace trim.", + "pos": "noun", + "word_frequency": 6552 + }, + { + "word": "maiden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an unmarried girl or young woman", + "example_sentence_english": "The ship made its maiden voyage across the Atlantic.", + "pos": "noun", + "word_frequency": 6554 + }, + { + "word": "marketplace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an open public space where a market is held", + "example_sentence_english": "Farmers sell their produce at the local marketplace.", + "pos": "noun", + "word_frequency": 6555 + }, + { + "word": "membrane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thin, pliable sheet or layer", + "example_sentence_english": "The cell is surrounded by a protective membrane.", + "pos": "noun", + "word_frequency": 6556 + }, + { + "word": "metallic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or resembling metal", + "example_sentence_english": "The robot had a shiny metallic surface.", + "pos": "adjective", + "word_frequency": 6557 + }, + { + "word": "methodology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of methods used in a particular area of study or activity", + "example_sentence_english": "The research methodology was carefully designed to ensure accurate results.", + "pos": "noun", + "word_frequency": 6558 + }, + { + "word": "modification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of modifying something", + "example_sentence_english": "They made a slight modification to the original design.", + "pos": "noun", + "word_frequency": 6559 + }, + { + "word": "murderer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who commits murder", + "example_sentence_english": "The police arrested the murderer.", + "pos": "noun", + "word_frequency": 6560 + }, + { + "word": "nap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a short sleep", + "example_sentence_english": "I like to take a nap after lunch.", + "pos": "noun", + "word_frequency": 6561 + }, + { + "word": "nickel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a five-cent coin", + "example_sentence_english": "I found a nickel on the sidewalk.", + "pos": "noun", + "word_frequency": 6562 + }, + { + "word": "niece", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the daughter of one's brother or sister", + "example_sentence_english": "My niece is coming to visit next week.", + "pos": "noun", + "word_frequency": 6563 + }, + { + "word": "offering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "something offered", + "example_sentence_english": "They brought an offering to the temple.", + "pos": "noun", + "word_frequency": 6565 + }, + { + "word": "overlook", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fail to notice or ignore", + "example_sentence_english": "Please don't overlook the details.", + "pos": "verb", + "word_frequency": 6566 + }, + { + "word": "pardon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forgiveness for a fault or offense", + "example_sentence_english": "He asked for a pardon for his mistake.", + "pos": "noun", + "word_frequency": 6567 + }, + { + "word": "persuade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convince someone to do something", + "example_sentence_english": "I tried to persuade her to come with us.", + "pos": "verb", + "word_frequency": 6568 + }, + { + "word": "pier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a structure built out over water", + "example_sentence_english": "We walked along the pier at sunset.", + "pos": "noun", + "word_frequency": 6569 + }, + { + "word": "predecessor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who held a job or office before the current holder", + "example_sentence_english": "My predecessor left big shoes to fill.", + "pos": "noun", + "word_frequency": 6570 + }, + { + "word": "quiz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a short test", + "example_sentence_english": "We have a math quiz tomorrow.", + "pos": "noun", + "word_frequency": 6571 + }, + { + "word": "rainfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the amount of rain that falls", + "example_sentence_english": "The region receives high rainfall.", + "pos": "noun", + "word_frequency": 6572 + }, + { + "word": "reckless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without thinking or caring about the consequences", + "example_sentence_english": "His reckless driving caused the accident.", + "pos": "adjective", + "word_frequency": 6573 + }, + { + "word": "redemption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of saving or being saved from sin, error, or evil", + "example_sentence_english": "He sought redemption for his past mistakes.", + "pos": "noun", + "word_frequency": 6574 + }, + { + "word": "replay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of playing something again", + "example_sentence_english": "Let's watch the replay of the goal.", + "pos": "noun", + "word_frequency": 6575 + }, + { + "word": "revision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of revising", + "example_sentence_english": "I need to do some revision for my exams.", + "pos": "noun", + "word_frequency": 6576 + }, + { + "word": "scent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a distinctive smell", + "example_sentence_english": "The scent of roses filled the air.", + "pos": "noun", + "word_frequency": 6577 + }, + { + "word": "slate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fine-grained gray, green, or bluish-purple metamorphic rock", + "example_sentence_english": "The roof was covered with slate tiles.", + "pos": "noun", + "word_frequency": 6578 + }, + { + "word": "stimulus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thing that rouses activity or energy", + "example_sentence_english": "The tax cut was a stimulus for the economy.", + "pos": "noun", + "word_frequency": 6579 + }, + { + "word": "sunrise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the time in the morning when the sun appears", + "example_sentence_english": "We woke up early to watch the sunrise.", + "pos": "noun", + "word_frequency": 6580 + }, + { + "word": "surge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden powerful forward or upward movement", + "example_sentence_english": "There was a sudden surge in power.", + "pos": "noun", + "word_frequency": 6581 + }, + { + "word": "tee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small peg used to hold a golf ball", + "example_sentence_english": "He placed the ball on the tee.", + "pos": "noun", + "word_frequency": 6582 + }, + { + "word": "token", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing serving as a tangible representation of a fact, quality, feeling, etc.", + "example_sentence_english": "Please accept this small gift as a token of my appreciation.", + "pos": "noun", + "word_frequency": 6584 + }, + { + "word": "tornado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a violent rotating column of air", + "example_sentence_english": "The tornado caused widespread damage.", + "pos": "noun", + "word_frequency": 6585 + }, + { + "word": "twilight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the soft diffused light from the sky when the sun is below the horizon", + "example_sentence_english": "We enjoyed a walk in the twilight.", + "pos": "noun", + "word_frequency": 6587 + }, + { + "word": "unprecedented", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "never done or known before", + "example_sentence_english": "The situation was unprecedented.", + "pos": "adjective", + "word_frequency": 6588 + }, + { + "word": "vagina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the muscular tube leading from the external genitals to the cervix of the uterus", + "example_sentence_english": "The doctor explained the anatomy of the vagina.", + "pos": "noun", + "word_frequency": 6589 + }, + { + "word": "vocabulary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the body of words used in a particular language", + "example_sentence_english": "Learning new vocabulary is important.", + "pos": "noun", + "word_frequency": 6590 + }, + { + "word": "willingness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being prepared to do something", + "example_sentence_english": "Her willingness to help was appreciated.", + "pos": "noun", + "word_frequency": 6593 + }, + { + "word": "woody", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consisting of or resembling wood", + "example_sentence_english": "The plant has a woody stem.", + "pos": "adjective", + "word_frequency": 6594 + }, + { + "word": "worthless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no value or use", + "example_sentence_english": "The old car was worthless.", + "pos": "adjective", + "word_frequency": 6595 + }, + { + "word": "yacht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a medium-sized sailboat equipped for cruising or racing", + "example_sentence_english": "They sailed their yacht across the bay.", + "pos": "noun", + "word_frequency": 6596 + }, + { + "word": "accord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement or harmony", + "example_sentence_english": "The two sides reached an accord.", + "pos": "noun", + "word_frequency": 6599 + }, + { + "word": "advancement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progress; promotion", + "example_sentence_english": "Her rapid advancement in the company was impressive.", + "pos": "noun", + "word_frequency": 6600 + }, + { + "word": "archer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who shoots with a bow and arrow", + "example_sentence_english": "Robin Hood was a skilled archer.", + "pos": "noun", + "word_frequency": 6604 + }, + { + "word": "assurance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a positive declaration intended to give confidence; promise", + "example_sentence_english": "He gave me his assurance that the work would be completed on time.", + "pos": "noun", + "word_frequency": 6606 + }, + { + "word": "barber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person whose job is to cut men's hair and shave or trim beards", + "example_sentence_english": "I need to go to the barber for a haircut.", + "pos": "noun", + "word_frequency": 6607 + }, + { + "word": "bash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strike hard; to criticize harshly", + "example_sentence_english": "He tried to bash the door open.", + "pos": "verb", + "word_frequency": 6608 + }, + { + "word": "battalion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large body of troops ready for battle", + "example_sentence_english": "The battalion marched towards the front line.", + "pos": "noun", + "word_frequency": 6609 + }, + { + "word": "boycott", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a punitive ban that forbids relations with certain groups, cooperation with a policy, or the handling of goods", + "example_sentence_english": "Consumers organized a boycott of the company's products.", + "pos": "noun", + "word_frequency": 6610 + }, + { + "word": "carpenter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who makes or repairs wooden objects and structures", + "example_sentence_english": "The carpenter built a new wooden fence.", + "pos": "noun", + "word_frequency": 6613 + }, + { + "word": "cuisine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a style or method of cooking, especially as characteristic of a particular country, region, or establishment", + "example_sentence_english": "French cuisine is famous worldwide.", + "pos": "noun", + "word_frequency": 6615 + }, + { + "word": "detain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold or keep someone in official custody; to delay", + "example_sentence_english": "The police decided to detain the suspect for questioning.", + "pos": "verb", + "word_frequency": 6616 + }, + { + "word": "dioxide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an oxide containing two atoms of oxygen in its molecule", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "noun", + "word_frequency": 6617 + }, + { + "word": "doom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fate, typically a bad or unfortunate one; death, destruction, or any very bad end", + "example_sentence_english": "The ancient prophecy spoke of a terrible doom.", + "pos": "noun", + "word_frequency": 6618 + }, + { + "word": "dub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give an unofficial name or nickname to; to replace the dialogue or sound in a film or video with a different language or sound", + "example_sentence_english": "They decided to dub the foreign film into English.", + "pos": "verb", + "word_frequency": 6619 + }, + { + "word": "eclipse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an obscuring of the light from one celestial body by the passage of another between it and the observer or between it and its source of illumination", + "example_sentence_english": "We watched the solar eclipse with special glasses.", + "pos": "noun", + "word_frequency": 6621 + }, + { + "word": "eighteen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 18", + "example_sentence_english": "She will be eighteen years old next month.", + "pos": "numeral", + "word_frequency": 6622 + }, + { + "word": "enjoyment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or process of taking pleasure in something", + "example_sentence_english": "He found great enjoyment in reading books.", + "pos": "noun", + "word_frequency": 6624 + }, + { + "word": "expire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cease to be valid, typically after a fixed period of time; to die", + "example_sentence_english": "My passport will expire next year.", + "pos": "verb", + "word_frequency": 6625 + }, + { + "word": "fundraising", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act or process of soliciting financial contributions", + "example_sentence_english": "The charity organized a fundraising event to help the victims.", + "pos": "noun", + "word_frequency": 6627 + }, + { + "word": "glimpse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a momentary or partial view", + "example_sentence_english": "I caught a glimpse of the celebrity as she walked by.", + "pos": "noun", + "word_frequency": 6629 + }, + { + "word": "homemade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "made at home rather than in a store or factory", + "example_sentence_english": "I prefer homemade cookies to store-bought ones.", + "pos": "adjective", + "word_frequency": 6631 + }, + { + "word": "honorable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserving honor and respect; bringing honor", + "example_sentence_english": "He made an honorable decision to resign.", + "pos": "adjective", + "word_frequency": 6632 + }, + { + "word": "infectious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "likely to spread infection; (of a quality or feeling) likely to spread to others", + "example_sentence_english": "His enthusiasm was infectious, and soon everyone was excited.", + "pos": "adjective", + "word_frequency": 6633 + }, + { + "word": "inferior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lower in rank, status, or quality", + "example_sentence_english": "This product is of inferior quality compared to the other one.", + "pos": "adjective", + "word_frequency": 6634 + }, + { + "word": "injustice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of fairness or justice", + "example_sentence_english": "The civil rights movement fought against racial injustice.", + "pos": "noun", + "word_frequency": 6635 + }, + { + "word": "insulin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hormone produced in the pancreas that regulates the amount of glucose in the blood", + "example_sentence_english": "Diabetic patients often need to take insulin injections.", + "pos": "noun", + "word_frequency": 6636 + }, + { + "word": "lid", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cover", + "example_sentence_english": "Please put the lid back on the pot.", + "pos": "noun", + "word_frequency": 6640 + }, + { + "word": "manor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large country house", + "example_sentence_english": "The old manor house stood on a hill overlooking the village.", + "pos": "noun", + "word_frequency": 6642 + }, + { + "word": "masterpiece", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a work of outstanding artistry", + "example_sentence_english": "The painting is considered a true masterpiece.", + "pos": "noun", + "word_frequency": 6643 + }, + { + "word": "melody", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sequence of single notes", + "example_sentence_english": "The song has a beautiful melody.", + "pos": "noun", + "word_frequency": 6644 + }, + { + "word": "memo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a written message", + "example_sentence_english": "I sent a memo to all staff about the new policy.", + "pos": "noun", + "word_frequency": 6645 + }, + { + "word": "mic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "example_sentence_english": "Can you hand me the mic?", + "pos": "noun", + "word_frequency": 6646 + }, + { + "word": "narrator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who narrates", + "example_sentence_english": "The narrator's voice was calm and soothing.", + "pos": "noun", + "word_frequency": 6648 + }, + { + "word": "obesity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the condition of being grossly fat or overweight", + "example_sentence_english": "Childhood obesity is a growing concern.", + "pos": "noun", + "word_frequency": 6651 + }, + { + "word": "partisan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong supporter of a party, cause, or person", + "example_sentence_english": "The debate was marked by strong partisan divisions.", + "pos": "noun", + "word_frequency": 6652 + }, + { + "word": "planting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of placing seeds or plants in the ground", + "example_sentence_english": "We spent the afternoon planting new flowers in the garden.", + "pos": "noun", + "word_frequency": 6653 + }, + { + "word": "pony", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small horse", + "example_sentence_english": "My little sister loves riding her pony.", + "pos": "noun", + "word_frequency": 6654 + }, + { + "word": "privileged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having special rights, advantages, or immunities", + "example_sentence_english": "She felt privileged to be part of the exclusive club.", + "pos": "adjective", + "word_frequency": 6655 + }, + { + "word": "prolonged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuing for a long time or longer than usual", + "example_sentence_english": "The patient required prolonged medical attention.", + "pos": "adjective", + "word_frequency": 6656 + }, + { + "word": "promo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a promotional video or advertisement", + "example_sentence_english": "They released a new promo for the upcoming movie.", + "pos": "noun", + "word_frequency": 6657 + }, + { + "word": "protestant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member or follower of any of the Western Christian Churches that are separate from the Roman Catholic Church", + "example_sentence_english": "Many early settlers in America were Protestant.", + "pos": "noun", + "word_frequency": 6658 + }, + { + "word": "pumping", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forcing liquid or gas to move", + "example_sentence_english": "The heart is constantly pumping blood around the body.", + "pos": "verb", + "word_frequency": 6659 + }, + { + "word": "reliance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependence on or trust in someone or something", + "example_sentence_english": "Our reliance on fossil fuels needs to decrease.", + "pos": "noun", + "word_frequency": 6661 + }, + { + "word": "reluctant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwilling and hesitant", + "example_sentence_english": "He was reluctant to admit his mistake.", + "pos": "adjective", + "word_frequency": 6662 + }, + { + "word": "respiratory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to breathing", + "example_sentence_english": "Smoking can cause serious respiratory problems.", + "pos": "adjective", + "word_frequency": 6663 + }, + { + "word": "retention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the continued possession, use, or control of something", + "example_sentence_english": "The company has a high employee retention rate.", + "pos": "noun", + "word_frequency": 6664 + }, + { + "word": "ribbon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long, narrow strip of fabric", + "example_sentence_english": "She tied a ribbon in her hair.", + "pos": "noun", + "word_frequency": 6665 + }, + { + "word": "roommate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person with whom one shares a room or apartment", + "example_sentence_english": "My roommate is very tidy.", + "pos": "noun", + "word_frequency": 6668 + }, + { + "word": "rotten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suffering from decay", + "example_sentence_english": "The apple was rotten inside.", + "pos": "adjective", + "word_frequency": 6669 + }, + { + "word": "shah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a title of the former monarch of Iran", + "example_sentence_english": "The last Shah of Iran was overthrown in 1979.", + "pos": "noun", + "word_frequency": 6670 + }, + { + "word": "shotgun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a smoothbore firearm", + "example_sentence_english": "He carried a shotgun for hunting.", + "pos": "noun", + "word_frequency": 6672 + }, + { + "word": "sofa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a long upholstered seat with a back and arms", + "example_sentence_english": "I like to relax on the sofa after work.", + "pos": "noun", + "word_frequency": 6673 + }, + { + "word": "spoil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to damage or ruin", + "example_sentence_english": "Don't spoil the surprise for him.", + "pos": "verb", + "word_frequency": 6676 + }, + { + "word": "submarine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a warship designed to operate underwater", + "example_sentence_english": "The submarine can stay submerged for weeks.", + "pos": "noun", + "word_frequency": 6678 + }, + { + "word": "sympathetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling, showing, or expressing sympathy", + "example_sentence_english": "She was very sympathetic to my problems.", + "pos": "adjective", + "word_frequency": 6679 + }, + { + "word": "taxation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the system of taxing people or things", + "example_sentence_english": "The government is considering new policies on taxation.", + "pos": "noun", + "word_frequency": 6680 + }, + { + "word": "temper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person's state of mind regarding their emotions", + "example_sentence_english": "He has a very short temper.", + "pos": "noun", + "word_frequency": 6681 + }, + { + "word": "undergo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experience or be subjected to", + "example_sentence_english": "The building will undergo major renovations next year.", + "pos": "verb", + "word_frequency": 6682 + }, + { + "word": "align", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "place or arrange in a straight line", + "example_sentence_english": "Make sure the wheels are properly aligned.", + "pos": "verb", + "word_frequency": 6686 + }, + { + "word": "altar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a table or flat-topped block used as the focus for a religious ritual", + "example_sentence_english": "The bride and groom stood before the altar.", + "pos": "noun", + "word_frequency": 6688 + }, + { + "word": "amp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short for amplifier or ampere", + "example_sentence_english": "He plugged his guitar into the amp.", + "pos": "noun", + "word_frequency": 6689 + }, + { + "word": "atlas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book of maps or charts", + "example_sentence_english": "We used an old atlas to plan our road trip.", + "pos": "noun", + "word_frequency": 6690 + }, + { + "word": "austrian", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relating to Austria", + "example_sentence_english": "My friend is an Austrian citizen.", + "pos": "adjective", + "word_frequency": 6691 + }, + { + "word": "automation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of largely automatic equipment in a system of manufacturing or other production process", + "example_sentence_english": "Automation has greatly increased efficiency in factories.", + "pos": "noun", + "word_frequency": 6692 + }, + { + "word": "awe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of reverential respect mixed with fear or wonder", + "example_sentence_english": "The Grand Canyon filled them with awe.", + "pos": "noun", + "word_frequency": 6693 + }, + { + "word": "bronco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wild or half-tamed horse of the western US", + "example_sentence_english": "The cowboy tried to ride the bucking bronco.", + "pos": "noun", + "word_frequency": 6695 + }, + { + "word": "cavalry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soldiers who fought on horseback", + "example_sentence_english": "The cavalry charged across the open field.", + "pos": "noun", + "word_frequency": 6699 + }, + { + "word": "coffin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow box, typically of wood, in which a dead body is buried or cremated", + "example_sentence_english": "The coffin was lowered into the grave.", + "pos": "noun", + "word_frequency": 6701 + }, + { + "word": "colorful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "full of color; vivid", + "example_sentence_english": "The garden was full of colorful flowers.", + "pos": "adjective", + "word_frequency": 6702 + }, + { + "word": "combo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a combination", + "example_sentence_english": "This meal is a great combo of flavors.", + "pos": "noun", + "word_frequency": 6703 + }, + { + "word": "communism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a political theory advocating class war and leading to a society in which all property is publicly owned", + "example_sentence_english": "The fall of the Berlin Wall symbolized the decline of communism in Eastern Europe.", + "pos": "noun", + "word_frequency": 6704 + }, + { + "word": "conductor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who directs an orchestra or choir; a material that conducts electricity", + "example_sentence_english": "The conductor raised his baton to begin the symphony.", + "pos": "noun", + "word_frequency": 6705 + }, + { + "word": "constraint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a limitation or restriction", + "example_sentence_english": "We are working under severe time constraints.", + "pos": "noun", + "word_frequency": 6706 + }, + { + "word": "crow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, black bird", + "example_sentence_english": "A crow landed on the fence post.", + "pos": "noun", + "word_frequency": 6707 + }, + { + "word": "decisive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settling an issue conclusively; having the power to make decisions quickly", + "example_sentence_english": "Her decisive action saved the company from ruin.", + "pos": "adjective", + "word_frequency": 6709 + }, + { + "word": "decorative", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serving to make something look more attractive; ornamental", + "example_sentence_english": "The vase is purely decorative and not meant for holding water.", + "pos": "adjective", + "word_frequency": 6710 + }, + { + "word": "definitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a conclusion or agreement) done or reached decisively and with authority; conclusive", + "example_sentence_english": "This is the definitive guide to birdwatching.", + "pos": "adjective", + "word_frequency": 6711 + }, + { + "word": "displace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "move (something) from its proper or usual position; take the place of", + "example_sentence_english": "The new factory will displace many local workers.", + "pos": "verb", + "word_frequency": 6712 + }, + { + "word": "diy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Do It Yourself", + "example_sentence_english": "He spent the weekend on a DIY project for his house.", + "pos": "noun", + "word_frequency": 6713 + }, + { + "word": "epidemic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a widespread occurrence of an infectious disease in a community at a particular time", + "example_sentence_english": "The city is facing an epidemic of flu cases.", + "pos": "noun", + "word_frequency": 6714 + }, + { + "word": "eternity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinite or unending time", + "example_sentence_english": "They promised to love each other for eternity.", + "pos": "noun", + "word_frequency": 6715 + }, + { + "word": "explode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burst or cause to burst with a loud noise and force", + "example_sentence_english": "The fireworks exploded in the night sky.", + "pos": "verb", + "word_frequency": 6717 + }, + { + "word": "extraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of taking out something, especially using effort or force", + "example_sentence_english": "The extraction of natural resources can harm the environment.", + "pos": "noun", + "word_frequency": 6718 + }, + { + "word": "fatty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "containing a lot of fat", + "example_sentence_english": "Avoid eating too many fatty foods.", + "pos": "adjective", + "word_frequency": 6719 + }, + { + "word": "filthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very dirty", + "example_sentence_english": "The kitchen was absolutely filthy after the party.", + "pos": "adjective", + "word_frequency": 6720 + }, + { + "word": "fletcher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who makes or sells arrows", + "example_sentence_english": "The fletcher carefully crafted each arrow for the archer.", + "pos": "noun", + "word_frequency": 6721 + }, + { + "word": "flush", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clean or empty with a rush of water; to turn red in the face", + "example_sentence_english": "Don't forget to flush the toilet. Her face began to flush with embarrassment.", + "pos": "verb", + "word_frequency": 6722 + }, + { + "word": "font", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of type of a particular face and size", + "example_sentence_english": "Choose a clear font for the presentation.", + "pos": "noun", + "word_frequency": 6723 + }, + { + "word": "freestyle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of swimming, wrestling, or skiing in which there are no rules regarding the method used", + "example_sentence_english": "He won the gold medal in the freestyle swimming event.", + "pos": "noun", + "word_frequency": 6724 + }, + { + "word": "glue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an adhesive substance used for sticking objects or materials together", + "example_sentence_english": "Can you pass me the glue? I need to fix this broken cup.", + "pos": "noun", + "word_frequency": 6725 + }, + { + "word": "grandpa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandfather", + "example_sentence_english": "My grandpa always tells the best stories.", + "pos": "noun", + "word_frequency": 6726 + }, + { + "word": "hairy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with hair; difficult or dangerous", + "example_sentence_english": "The dog has very hairy legs. That was a hairy situation.", + "pos": "adjective", + "word_frequency": 6727 + }, + { + "word": "homicide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the killing of one person by another", + "example_sentence_english": "The police are investigating the homicide.", + "pos": "noun", + "word_frequency": 6728 + }, + { + "word": "inheritance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money or property received from someone after their death", + "example_sentence_english": "She received a large inheritance from her grandmother.", + "pos": "noun", + "word_frequency": 6730 + }, + { + "word": "ironic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happening in a way that is contrary to what is expected, and typically amusing as a result", + "example_sentence_english": "It's ironic that he's a teacher but hates reading.", + "pos": "adjective", + "word_frequency": 6731 + }, + { + "word": "luggage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suitcases or other bags for a traveler's belongings", + "example_sentence_english": "Please put your luggage in the overhead compartment.", + "pos": "noun", + "word_frequency": 6733 + }, + { + "word": "madame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a polite title or form of address for a woman", + "example_sentence_english": "Excuse me, Madame, could you help me?", + "pos": "noun", + "word_frequency": 6736 + }, + { + "word": "messaging", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the sending and receiving of electronic messages", + "example_sentence_english": "Instant messaging has become very popular.", + "pos": "noun", + "word_frequency": 6740 + }, + { + "word": "microwave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an oven that heats food using microwave radiation", + "example_sentence_english": "Heat the leftovers in the microwave.", + "pos": "noun", + "word_frequency": 6741 + }, + { + "word": "minimize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce to the smallest possible amount or degree", + "example_sentence_english": "We need to minimize the risks.", + "pos": "verb", + "word_frequency": 6743 + }, + { + "word": "organism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an individual animal, plant, or single-celled life form", + "example_sentence_english": "A single-celled organism can be seen under a microscope.", + "pos": "noun", + "word_frequency": 6747 + }, + { + "word": "originate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have a specified beginning; to create or initiate something", + "example_sentence_english": "The custom originated in ancient Egypt.", + "pos": "verb", + "word_frequency": 6748 + }, + { + "word": "ounce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of weight equal to one sixteenth of a pound", + "example_sentence_english": "This package weighs about ten ounces.", + "pos": "noun", + "word_frequency": 6749 + }, + { + "word": "peel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remove the outer covering or skin from (a fruit or vegetable)", + "example_sentence_english": "Can you peel the potatoes for dinner?", + "pos": "verb", + "word_frequency": 6751 + }, + { + "word": "picnic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an outing where a meal is eaten outdoors", + "example_sentence_english": "We're going for a picnic in the park this afternoon.", + "pos": "noun", + "word_frequency": 6752 + }, + { + "word": "practitioner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person actively engaged in a profession, especially medicine", + "example_sentence_english": "She is a general medical practitioner.", + "pos": "noun", + "word_frequency": 6753 + }, + { + "word": "predominantly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mainly; for the most part", + "example_sentence_english": "The population is predominantly young.", + "pos": "adverb", + "word_frequency": 6754 + }, + { + "word": "primitive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to an early stage in the evolutionary or historical development of something", + "example_sentence_english": "They lived in a primitive hut with no electricity.", + "pos": "adjective", + "word_frequency": 6755 + }, + { + "word": "providence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the protective care of God or of nature as a spiritual power; timely preparation for future eventualities", + "example_sentence_english": "They believed in divine providence. It was only by good providence that they survived.", + "pos": "noun", + "word_frequency": 6756 + }, + { + "word": "psychic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or denoting faculties or phenomena that are apparently inexplicable by natural laws, especially involving telepathy or clairvoyance", + "example_sentence_english": "She claimed to have psychic abilities.", + "pos": "adjective", + "word_frequency": 6757 + }, + { + "word": "psychologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert or specialist in psychology", + "example_sentence_english": "He decided to see a psychologist to help with his anxiety.", + "pos": "noun", + "word_frequency": 6758 + }, + { + "word": "puppet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a movable model of a person or animal, used in entertainment", + "example_sentence_english": "The children loved watching the puppet show.", + "pos": "noun", + "word_frequency": 6759 + }, + { + "word": "reproductive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to reproduction", + "example_sentence_english": "The reproductive system is complex.", + "pos": "adjective", + "word_frequency": 6760 + }, + { + "word": "retrieve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "get back", + "example_sentence_english": "Can you retrieve my keys from the car?", + "pos": "verb", + "word_frequency": 6761 + }, + { + "word": "rib", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bone in the chest", + "example_sentence_english": "He broke a rib playing rugby.", + "pos": "noun", + "word_frequency": 6762 + }, + { + "word": "righteous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morally right", + "example_sentence_english": "He was a righteous man who always stood up for justice.", + "pos": "adjective", + "word_frequency": 6763 + }, + { + "word": "rivalry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition", + "example_sentence_english": "There's a strong rivalry between the two teams.", + "pos": "noun", + "word_frequency": 6764 + }, + { + "word": "royalty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "members of a royal family", + "example_sentence_english": "The queen is a member of the British royalty.", + "pos": "noun", + "word_frequency": 6766 + }, + { + "word": "sausage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "minced meat in a casing", + "example_sentence_english": "I had sausages for breakfast.", + "pos": "noun", + "word_frequency": 6768 + }, + { + "word": "skeleton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bone framework", + "example_sentence_english": "The human skeleton has 206 bones.", + "pos": "noun", + "word_frequency": 6770 + }, + { + "word": "spicy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hot-tasting", + "example_sentence_english": "This curry is very spicy.", + "pos": "adjective", + "word_frequency": 6771 + }, + { + "word": "sticky", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adhesive", + "example_sentence_english": "The jam made my fingers sticky.", + "pos": "adjective", + "word_frequency": 6772 + }, + { + "word": "sting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cause sharp pain", + "example_sentence_english": "A bee stung me on the arm.", + "pos": "verb", + "word_frequency": 6773 + }, + { + "word": "sufficiently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enough", + "example_sentence_english": "The food was sufficiently cooked.", + "pos": "adverb", + "word_frequency": 6774 + }, + { + "word": "thankfully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortunately", + "example_sentence_english": "Thankfully, no one was hurt in the accident.", + "pos": "adverb", + "word_frequency": 6775 + }, + { + "word": "tick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make a regular sound; mark", + "example_sentence_english": "The clock began to tick loudly.", + "pos": "verb", + "word_frequency": 6776 + }, + { + "word": "tutorial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lesson", + "example_sentence_english": "I watched a tutorial on how to use the software.", + "pos": "noun", + "word_frequency": 6778 + }, + { + "word": "twentieth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "20th", + "example_sentence_english": "Today is the twentieth of May.", + "pos": "numeral", + "word_frequency": 6779 + }, + { + "word": "unpleasant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not pleasant", + "example_sentence_english": "The smell was very unpleasant.", + "pos": "adjective", + "word_frequency": 6780 + }, + { + "word": "unrelated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not connected", + "example_sentence_english": "His comments were completely unrelated to the topic.", + "pos": "adjective", + "word_frequency": 6781 + }, + { + "word": "vacant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empty", + "example_sentence_english": "The house has been vacant for months.", + "pos": "adjective", + "word_frequency": 6783 + }, + { + "word": "vent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "express strong feelings", + "example_sentence_english": "She needed to vent her frustration.", + "pos": "verb", + "word_frequency": 6784 + }, + { + "word": "vicinity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surrounding area", + "example_sentence_english": "There are no shops in the immediate vicinity.", + "pos": "noun", + "word_frequency": 6785 + }, + { + "word": "wan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pale and weak", + "example_sentence_english": "She looked wan after her long illness.", + "pos": "adjective", + "word_frequency": 6786 + }, + { + "word": "wander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walk aimlessly", + "example_sentence_english": "We decided to wander around the old town.", + "pos": "verb", + "word_frequency": 6787 + }, + { + "word": "wardrobe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large cupboard for clothes", + "example_sentence_english": "I need a new wardrobe for my bedroom.", + "pos": "noun", + "word_frequency": 6788 + }, + { + "word": "warmth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heat; friendliness", + "example_sentence_english": "I enjoyed the warmth of the sun.", + "pos": "noun", + "word_frequency": 6789 + }, + { + "word": "wired", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connected by wires; tense", + "example_sentence_english": "The whole building is wired for internet access.", + "pos": "adjective", + "word_frequency": 6790 + }, + { + "word": "axe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chopping tool", + "example_sentence_english": "He used an axe to chop the wood.", + "pos": "noun", + "word_frequency": 6791 + }, + { + "word": "bulletin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short official statement", + "example_sentence_english": "The news bulletin reported on the latest events.", + "pos": "noun", + "word_frequency": 6797 + }, + { + "word": "capitalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who supports capitalism", + "example_sentence_english": "He is a strong capitalist who believes in free markets.", + "pos": "noun", + "word_frequency": 6798 + }, + { + "word": "cautious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "careful", + "example_sentence_english": "Be cautious when crossing the road.", + "pos": "adjective", + "word_frequency": 6799 + }, + { + "word": "constable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police officer (UK)", + "example_sentence_english": "The constable directed traffic around the accident.", + "pos": "noun", + "word_frequency": 6800 + }, + { + "word": "cooperate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work together", + "example_sentence_english": "We need to cooperate to finish this project on time.", + "pos": "verb", + "word_frequency": 6801 + }, + { + "word": "counselor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advisor", + "example_sentence_english": "The school counselor helped me choose my courses.", + "pos": "noun", + "word_frequency": 6802 + }, + { + "word": "curb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "control; limit", + "example_sentence_english": "The government is trying to curb inflation.", + "pos": "verb", + "word_frequency": 6804 + }, + { + "word": "deed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "action; legal document", + "example_sentence_english": "He performed a good deed by helping the elderly woman.", + "pos": "noun", + "word_frequency": 6806 + }, + { + "word": "destined", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fated; predetermined", + "example_sentence_english": "She felt she was destined for greatness.", + "pos": "adjective", + "word_frequency": 6807 + }, + { + "word": "detach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separate; unfasten", + "example_sentence_english": "Please detach the coupon from the bottom of the page.", + "pos": "verb", + "word_frequency": 6808 + }, + { + "word": "efficiently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an efficient manner", + "example_sentence_english": "She completed the task quickly and efficiently.", + "pos": "adverb", + "word_frequency": 6811 + }, + { + "word": "encouragement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support; motivation", + "example_sentence_english": "Her words of encouragement helped him continue.", + "pos": "noun", + "word_frequency": 6813 + }, + { + "word": "faction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small, organized dissenting group within a larger one", + "example_sentence_english": "The party was split into several warring factions.", + "pos": "noun", + "word_frequency": 6815 + }, + { + "word": "fascist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a follower of fascism", + "example_sentence_english": "The rise of fascist regimes led to World War II.", + "pos": "noun", + "word_frequency": 6816 + }, + { + "word": "feather", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft, light covering of a bird", + "example_sentence_english": "The bird had a beautiful blue feather.", + "pos": "noun", + "word_frequency": 6817 + }, + { + "word": "fixture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a permanent item; a regular presence", + "example_sentence_english": "The light fixture in the bathroom needs to be replaced.", + "pos": "noun", + "word_frequency": 6818 + }, + { + "word": "fuller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "more full", + "example_sentence_english": "After dinner, my stomach felt much fuller.", + "pos": "adjective", + "word_frequency": 6819 + }, + { + "word": "gamble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "take a risk; bet money", + "example_sentence_english": "He decided to gamble all his savings on the stock market.", + "pos": "verb", + "word_frequency": 6820 + }, + { + "word": "goalkeeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a player whose job is to prevent the ball from entering the goal", + "example_sentence_english": "The goalkeeper made an amazing save.", + "pos": "noun", + "word_frequency": 6821 + }, + { + "word": "grandchild", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the child of one's son or daughter", + "example_sentence_english": "My grandmother loves spending time with her grandchild.", + "pos": "noun", + "word_frequency": 6822 + }, + { + "word": "harmless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not causing harm", + "example_sentence_english": "Don't worry, the snake is completely harmless.", + "pos": "adjective", + "word_frequency": 6824 + }, + { + "word": "hesitate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pause before acting or speaking", + "example_sentence_english": "Don't hesitate to ask if you have any questions.", + "pos": "verb", + "word_frequency": 6825 + }, + { + "word": "hopeful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling or inspiring hope", + "example_sentence_english": "She was hopeful about her chances of getting the job.", + "pos": "adjective", + "word_frequency": 6826 + }, + { + "word": "hungarian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Hungary or its people/language", + "example_sentence_english": "She is learning Hungarian to communicate with her relatives.", + "pos": "adjective", + "word_frequency": 6828 + }, + { + "word": "hygiene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practices conducive to maintaining health and preventing disease", + "example_sentence_english": "Good personal hygiene is important for preventing illness.", + "pos": "noun", + "word_frequency": 6829 + }, + { + "word": "imaginary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing only in the imagination", + "example_sentence_english": "She had an imaginary friend when she was a child.", + "pos": "adjective", + "word_frequency": 6831 + }, + { + "word": "imprison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "put or keep in prison", + "example_sentence_english": "The judge decided to imprison the criminal for ten years.", + "pos": "verb", + "word_frequency": 6832 + }, + { + "word": "inconsistent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not consistent; contradictory", + "example_sentence_english": "His statements were inconsistent with the evidence.", + "pos": "adjective", + "word_frequency": 6833 + }, + { + "word": "kindergarten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a preschool for young children", + "example_sentence_english": "My daughter started kindergarten this year.", + "pos": "noun", + "word_frequency": 6839 + }, + { + "word": "loudly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a loud manner", + "example_sentence_english": "He spoke loudly so everyone could hear him.", + "pos": "adverb", + "word_frequency": 6842 + }, + { + "word": "neglect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fail to care for properly", + "example_sentence_english": "Don't neglect your studies before the exam.", + "pos": "verb", + "word_frequency": 6845 + }, + { + "word": "offender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who commits an illegal act", + "example_sentence_english": "The police caught the offender near the scene of the crime.", + "pos": "noun", + "word_frequency": 6848 + }, + { + "word": "oppression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prolonged cruel or unjust treatment", + "example_sentence_english": "The people fought against the oppression of the regime.", + "pos": "noun", + "word_frequency": 6849 + }, + { + "word": "patriotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or expressing devotion to and vigorous support for one's country", + "example_sentence_english": "He felt a strong patriotic duty to serve his country.", + "pos": "adjective", + "word_frequency": 6850 + }, + { + "word": "pitcher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a container for liquids; a baseball player who throws the ball", + "example_sentence_english": "The pitcher threw a perfect game.", + "pos": "noun", + "word_frequency": 6852 + }, + { + "word": "playground", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an outdoor area provided for children to play on", + "example_sentence_english": "The children ran to the playground after school.", + "pos": "noun", + "word_frequency": 6853 + }, + { + "word": "populate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inhabit or live in", + "example_sentence_english": "The island was populated by a small community.", + "pos": "verb", + "word_frequency": 6854 + }, + { + "word": "prejudice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preconceived opinion not based on reason or actual experience", + "example_sentence_english": "It's important to fight against prejudice in society.", + "pos": "noun", + "word_frequency": 6855 + }, + { + "word": "probable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "likely to happen or be true", + "example_sentence_english": "It's probable that it will rain tomorrow.", + "pos": "adjective", + "word_frequency": 6857 + }, + { + "word": "probation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the release of an offender from detention, subject to a period of good behavior under supervision", + "example_sentence_english": "He was given probation instead of a prison sentence.", + "pos": "noun", + "word_frequency": 6858 + }, + { + "word": "projection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an estimate or forecast of a future situation based on present trends", + "example_sentence_english": "The company's sales projections look promising for next quarter.", + "pos": "noun", + "word_frequency": 6859 + }, + { + "word": "raven", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, heavily built crow with glossy black plumage", + "example_sentence_english": "A large black raven landed on the branch.", + "pos": "noun", + "word_frequency": 6860 + }, + { + "word": "receptor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organ or cell able to respond to light, heat, or other external stimulus", + "example_sentence_english": "The drug binds to specific receptors in the brain.", + "pos": "noun", + "word_frequency": 6861 + }, + { + "word": "rehab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rehabilitation (informal)", + "example_sentence_english": "She went to rehab to recover from her injury.", + "pos": "noun", + "word_frequency": 6862 + }, + { + "word": "remake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a new version of an old film or song", + "example_sentence_english": "The remake of the classic movie was very popular.", + "pos": "noun", + "word_frequency": 6863 + }, + { + "word": "rendering", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a representation or depiction of something", + "example_sentence_english": "The architect showed us a 3D rendering of the new building.", + "pos": "noun", + "word_frequency": 6864 + }, + { + "word": "reproduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of making a copy of something", + "example_sentence_english": "The museum displayed a perfect reproduction of the ancient vase.", + "pos": "noun", + "word_frequency": 6865 + }, + { + "word": "shrimp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small edible crustacean", + "example_sentence_english": "I ordered shrimp pasta for dinner.", + "pos": "noun", + "word_frequency": 6869 + }, + { + "word": "similarity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or quality of being similar", + "example_sentence_english": "There is a strong similarity between the two paintings.", + "pos": "noun", + "word_frequency": 6870 + }, + { + "word": "spokesman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who speaks on behalf of a group or organization", + "example_sentence_english": "The company spokesman issued a statement to the press.", + "pos": "noun", + "word_frequency": 6871 + }, + { + "word": "stain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mark or discolor with something that is not easily removed", + "example_sentence_english": "Be careful not to stain your new shirt.", + "pos": "verb", + "word_frequency": 6873 + }, + { + "word": "stall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stop or cause to stop; delay", + "example_sentence_english": "The car engine stalled at the traffic light.", + "pos": "verb", + "word_frequency": 6874 + }, + { + "word": "starve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suffer or die from hunger", + "example_sentence_english": "Many people in the region are starving due to the drought.", + "pos": "verb", + "word_frequency": 6875 + }, + { + "word": "strap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strip of material used to hold things together or in place", + "example_sentence_english": "The strap of her bag broke.", + "pos": "noun", + "word_frequency": 6876 + }, + { + "word": "subjective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based on or influenced by personal feelings, tastes, or opinions", + "example_sentence_english": "Beauty is often considered a subjective concept.", + "pos": "adjective", + "word_frequency": 6877 + }, + { + "word": "surrounding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the things and conditions around a person or thing", + "example_sentence_english": "The natural surroundings of the lake were breathtaking.", + "pos": "noun", + "word_frequency": 6878 + }, + { + "word": "traumatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emotionally disturbing or distressing", + "example_sentence_english": "The accident was a traumatic experience for everyone involved.", + "pos": "adjective", + "word_frequency": 6879 + }, + { + "word": "trillion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a million million", + "example_sentence_english": "The national debt is in the trillions.", + "pos": "numeral", + "word_frequency": 6880 + }, + { + "word": "vendor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or company offering something for sale", + "example_sentence_english": "The street vendor sold hot dogs.", + "pos": "noun", + "word_frequency": 6883 + }, + { + "word": "watt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the SI unit of power", + "example_sentence_english": "This light bulb uses 60 watts of electricity.", + "pos": "noun", + "word_frequency": 6884 + }, + { + "word": "aboriginal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhabiting a land from the earliest times", + "example_sentence_english": "The aboriginal peoples of Australia have a rich culture.", + "pos": "adjective", + "word_frequency": 6888 + }, + { + "word": "alignment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrangement in a straight line", + "example_sentence_english": "The wheels needed an alignment.", + "pos": "noun", + "word_frequency": 6889 + }, + { + "word": "allergic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having an allergy", + "example_sentence_english": "I am allergic to peanuts.", + "pos": "adjective", + "word_frequency": 6890 + }, + { + "word": "amend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make minor changes to (a text) in order to make it fairer or more accurate", + "example_sentence_english": "They voted to amend the constitution.", + "pos": "verb", + "word_frequency": 6892 + }, + { + "word": "apparatus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a complex machine or device", + "example_sentence_english": "The laboratory apparatus was very expensive.", + "pos": "noun", + "word_frequency": 6893 + }, + { + "word": "avenger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one who inflicts punishment in return for an injury or wrong", + "example_sentence_english": "He sought to be an avenger for his family's honor.", + "pos": "noun", + "word_frequency": 6894 + }, + { + "word": "backpack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bag carried on the back", + "example_sentence_english": "She packed her books in her backpack.", + "pos": "noun", + "word_frequency": 6895 + }, + { + "word": "balcony", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a platform projecting from the wall of a building", + "example_sentence_english": "We enjoyed the view from the hotel balcony.", + "pos": "noun", + "word_frequency": 6896 + }, + { + "word": "banker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who works in a bank", + "example_sentence_english": "My uncle is a successful banker.", + "pos": "noun", + "word_frequency": 6897 + }, + { + "word": "bliss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfect happiness", + "example_sentence_english": "They were in a state of pure bliss.", + "pos": "noun", + "word_frequency": 6898 + }, + { + "word": "bodily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the body", + "example_sentence_english": "He suffered severe bodily harm.", + "pos": "adjective", + "word_frequency": 6899 + }, + { + "word": "buffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a protective barrier", + "example_sentence_english": "The trees acted as a buffer against the wind.", + "pos": "noun", + "word_frequency": 6900 + }, + { + "word": "chop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cut (something) into small pieces", + "example_sentence_english": "Please chop the vegetables for the soup.", + "pos": "verb", + "word_frequency": 6903 + }, + { + "word": "collaborative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "produced by two or more parties working together", + "example_sentence_english": "It was a collaborative effort by the whole team.", + "pos": "adjective", + "word_frequency": 6904 + }, + { + "word": "commence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "begin; start", + "example_sentence_english": "The ceremony will commence at 10 AM.", + "pos": "verb", + "word_frequency": 6905 + }, + { + "word": "compensate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pay (someone) for work performed or to make up for a loss", + "example_sentence_english": "They offered to compensate him for the damages.", + "pos": "verb", + "word_frequency": 6906 + }, + { + "word": "constructive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving a useful purpose; tending to build up", + "example_sentence_english": "We need to provide constructive feedback.", + "pos": "adjective", + "word_frequency": 6907 + }, + { + "word": "cosmic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the universe or cosmos", + "example_sentence_english": "The telescope revealed a cosmic dust cloud.", + "pos": "adjective", + "word_frequency": 6908 + }, + { + "word": "daisy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small wild flower", + "example_sentence_english": "She picked a daisy from the field.", + "pos": "noun", + "word_frequency": 6909 + }, + { + "word": "definite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clearly stated or decided; not vague or doubtful", + "example_sentence_english": "We need a definite answer by tomorrow.", + "pos": "adjective", + "word_frequency": 6910 + }, + { + "word": "depart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leave, especially to start a journey", + "example_sentence_english": "The train will depart from platform 3.", + "pos": "verb", + "word_frequency": 6911 + }, + { + "word": "developmental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the process of developing", + "example_sentence_english": "The child is going through a developmental stage.", + "pos": "adjective", + "word_frequency": 6912 + }, + { + "word": "disco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a club or party at which people dance to pop music", + "example_sentence_english": "We went to a disco last night.", + "pos": "noun", + "word_frequency": 6913 + }, + { + "word": "distraction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that prevents someone from concentrating", + "example_sentence_english": "The noise was a major distraction.", + "pos": "noun", + "word_frequency": 6914 + }, + { + "word": "drawer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a box-like storage compartment", + "example_sentence_english": "I keep my socks in the top drawer.", + "pos": "noun", + "word_frequency": 6917 + }, + { + "word": "ecological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or concerned with the relation of living organisms to one another and to their physical surroundings", + "example_sentence_english": "We need to address ecological issues.", + "pos": "adjective", + "word_frequency": 6919 + }, + { + "word": "ecosystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a biological community of interacting organisms and their physical environment", + "example_sentence_english": "The rainforest is a complex ecosystem.", + "pos": "noun", + "word_frequency": 6920 + }, + { + "word": "exempt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free from an obligation or liability imposed on others", + "example_sentence_english": "Students with high grades are exempt from the final exam.", + "pos": "adjective", + "word_frequency": 6922 + }, + { + "word": "faint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barely perceptible; lacking strength or vigor", + "example_sentence_english": "We heard a faint sound in the distance.", + "pos": "adjective", + "word_frequency": 6923 + }, + { + "word": "fertility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to produce offspring or to produce abundant crops", + "example_sentence_english": "The fertility of the soil is crucial for good harvests.", + "pos": "noun", + "word_frequency": 6924 + }, + { + "word": "foam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mass of small bubbles formed on or in liquid", + "example_sentence_english": "The waves left a line of foam on the beach.", + "pos": "noun", + "word_frequency": 6928 + }, + { + "word": "foremost", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "most important; primary", + "example_sentence_english": "She is the foremost expert in her field.", + "pos": "adjective", + "word_frequency": 6929 + }, + { + "word": "forge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to create or shape (a metal object) by heating it in a fire or furnace and beating or hammering it; to produce a fraudulent copy or imitation of (a document, signature, banknote, or work of art)", + "example_sentence_english": "The blacksmith used a hammer to forge the iron.", + "pos": "verb", + "word_frequency": 6930 + }, + { + "word": "greenhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a glass building in which plants are grown that need protection from cold weather", + "example_sentence_english": "We grow tomatoes in the greenhouse.", + "pos": "noun", + "word_frequency": 6931 + }, + { + "word": "hierarchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system in which members of an organization or society are ranked according to relative status or authority", + "example_sentence_english": "There is a clear hierarchy in the military.", + "pos": "noun", + "word_frequency": 6932 + }, + { + "word": "invalid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not true because based on erroneous information or reasoning; not legally or officially acceptable", + "example_sentence_english": "The argument was based on invalid assumptions.", + "pos": "adjective", + "word_frequency": 6933 + }, + { + "word": "jade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard, typically green stone used for ornaments and implements and in jewelry", + "example_sentence_english": "She wore a necklace made of jade.", + "pos": "noun", + "word_frequency": 6934 + }, + { + "word": "jointly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with another or others; together", + "example_sentence_english": "They decided to work jointly on the project.", + "pos": "adverb", + "word_frequency": 6935 + }, + { + "word": "lightweight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of little weight; not serious or important", + "example_sentence_english": "This new laptop is very lightweight and easy to carry.", + "pos": "adjective", + "word_frequency": 6938 + }, + { + "word": "metabolism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the chemical processes that occur within a living organism in order to maintain life", + "example_sentence_english": "Exercise can boost your metabolism.", + "pos": "noun", + "word_frequency": 6940 + }, + { + "word": "newborn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently born", + "example_sentence_english": "The hospital nursery was full of newborn babies.", + "pos": "adjective", + "word_frequency": 6941 + }, + { + "word": "notch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an indentation or incision on an edge or surface", + "example_sentence_english": "He cut a notch in the stick to mark the height.", + "pos": "noun", + "word_frequency": 6943 + }, + { + "word": "omega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the last letter of the Greek alphabet; the final part of a series", + "example_sentence_english": "He considered himself the alpha and omega of the project.", + "pos": "noun", + "word_frequency": 6944 + }, + { + "word": "packer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or machine that packs things", + "example_sentence_english": "The packer carefully placed the fragile items into the box.", + "pos": "noun", + "word_frequency": 6945 + }, + { + "word": "parental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of or relating to a parent or parents", + "example_sentence_english": "Children need parental guidance as they grow up.", + "pos": "adjective", + "word_frequency": 6946 + }, + { + "word": "parody", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an imitation of the style of a particular writer, artist, or genre with deliberate exaggeration for comic effect", + "example_sentence_english": "The movie was a parody of classic horror films.", + "pos": "noun", + "word_frequency": 6947 + }, + { + "word": "parole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the release of a prisoner temporarily (for a special purpose) or permanently before the completion of a sentence, on the promise of good behavior", + "example_sentence_english": "He was granted parole after serving half of his sentence.", + "pos": "noun", + "word_frequency": 6948 + }, + { + "word": "penguin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large flightless seabird of the southern hemisphere", + "example_sentence_english": "Penguins are excellent swimmers.", + "pos": "noun", + "word_frequency": 6949 + }, + { + "word": "phantom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ghost; a figment of the imagination", + "example_sentence_english": "She felt a phantom pain in her missing limb.", + "pos": "noun", + "word_frequency": 6950 + }, + { + "word": "precedent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an earlier event or action that is regarded as an example or guide to be considered in subsequent similar circumstances", + "example_sentence_english": "The judge's ruling set a legal precedent.", + "pos": "noun", + "word_frequency": 6953 + }, + { + "word": "prevalent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widespread in a particular area or at a particular time", + "example_sentence_english": "The disease is more prevalent in tropical regions.", + "pos": "adjective", + "word_frequency": 6954 + }, + { + "word": "prom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a formal dance held for a school's senior class", + "example_sentence_english": "She bought a new dress for the prom.", + "pos": "noun", + "word_frequency": 6955 + }, + { + "word": "python", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large heavy-bodied nonvenomous snake", + "example_sentence_english": "The zookeeper fed the python a large rat.", + "pos": "noun", + "word_frequency": 6956 + }, + { + "word": "questionable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubtful as regards truth, quality, or propriety", + "example_sentence_english": "His business practices are highly questionable.", + "pos": "adjective", + "word_frequency": 6958 + }, + { + "word": "queue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a line or sequence of people or vehicles awaiting their turn to be attended to or to proceed", + "example_sentence_english": "We had to wait in a long queue for tickets.", + "pos": "noun", + "word_frequency": 6959 + }, + { + "word": "respondent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who replies to something", + "example_sentence_english": "The respondent answered all the questions truthfully.", + "pos": "noun", + "word_frequency": 6961 + }, + { + "word": "sailor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who works on a boat or ship", + "example_sentence_english": "The sailor steered the ship through the storm.", + "pos": "noun", + "word_frequency": 6963 + }, + { + "word": "sociology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of human society", + "example_sentence_english": "She decided to major in sociology at university.", + "pos": "noun", + "word_frequency": 6966 + }, + { + "word": "supermarket", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a large self-service shop selling food and household goods", + "example_sentence_english": "I need to go to the supermarket to buy groceries.", + "pos": "noun", + "word_frequency": 6969 + }, + { + "word": "sweater", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a warm piece of clothing, usually made of wool", + "example_sentence_english": "It's cold outside, so wear a warm sweater.", + "pos": "noun", + "word_frequency": 6970 + }, + { + "word": "traction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the grip of a tire on a road or a shoe on a surface", + "example_sentence_english": "The car lost traction on the icy road.", + "pos": "noun", + "word_frequency": 6972 + }, + { + "word": "tractor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a powerful motor vehicle used for pulling farm machinery", + "example_sentence_english": "The farmer used a tractor to plow the field.", + "pos": "noun", + "word_frequency": 6973 + }, + { + "word": "trout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a common freshwater fish", + "example_sentence_english": "We caught a large trout in the river.", + "pos": "noun", + "word_frequency": 6974 + }, + { + "word": "turnover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the amount of money a business takes in a period", + "example_sentence_english": "The company's annual turnover increased significantly.", + "pos": "noun", + "word_frequency": 6975 + }, + { + "word": "unwanted", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not desired or wished for", + "example_sentence_english": "She received a lot of unwanted advice.", + "pos": "adjective", + "word_frequency": 6977 + }, + { + "word": "valentine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a card or gift given on Valentine's Day", + "example_sentence_english": "He sent her a beautiful valentine.", + "pos": "noun", + "word_frequency": 6978 + }, + { + "word": "variant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a form or version of something that differs", + "example_sentence_english": "This is a new variant of the original design.", + "pos": "noun", + "word_frequency": 6979 + }, + { + "word": "vegetarian", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who does not eat meat", + "example_sentence_english": "My sister is a vegetarian and eats only vegetables.", + "pos": "noun", + "word_frequency": 6980 + }, + { + "word": "visibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being able to see or be seen", + "example_sentence_english": "The fog reduced visibility on the road.", + "pos": "noun", + "word_frequency": 6982 + }, + { + "word": "wherein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in what place or respect; in which", + "example_sentence_english": "The contract specifies the terms wherein the agreement is valid.", + "pos": "adverb", + "word_frequency": 6983 + }, + { + "word": "whiskey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an alcoholic drink distilled from fermented grain mash", + "example_sentence_english": "He ordered a glass of whiskey at the bar.", + "pos": "noun", + "word_frequency": 6984 + }, + { + "word": "worm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long, soft-bodied invertebrate animal", + "example_sentence_english": "The bird pulled a worm out of the ground.", + "pos": "noun", + "word_frequency": 6985 + }, + { + "word": "abundant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing or available in large quantities; plentiful", + "example_sentence_english": "The forest is abundant with wildlife.", + "pos": "adjective", + "word_frequency": 6988 + }, + { + "word": "algebra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a branch of mathematics dealing with symbols", + "example_sentence_english": "She found algebra challenging but interesting.", + "pos": "noun", + "word_frequency": 6990 + }, + { + "word": "antenna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device used to transmit or receive signals", + "example_sentence_english": "The television needs a new antenna to get a clear signal.", + "pos": "noun", + "word_frequency": 6992 + }, + { + "word": "audition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an interview for a role as a performer", + "example_sentence_english": "She prepared for her audition all week.", + "pos": "noun", + "word_frequency": 6993 + }, + { + "word": "comparative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or based on comparison", + "example_sentence_english": "We need to do a comparative analysis of the two systems.", + "pos": "adjective", + "word_frequency": 7001 + }, + { + "word": "complement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that completes or brings to perfection", + "example_sentence_english": "The new curtains perfectly complement the room's decor.", + "pos": "noun", + "word_frequency": 7002 + }, + { + "word": "conquer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome and take control of (a place or people) by military force", + "example_sentence_english": "The army managed to conquer the enemy territory.", + "pos": "verb", + "word_frequency": 7004 + }, + { + "word": "conquest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the subjugation and assumption of control of a place or people by use of military force", + "example_sentence_english": "The Norman Conquest of England occurred in 1066.", + "pos": "noun", + "word_frequency": 7005 + }, + { + "word": "continuity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the consistent existence or operation of something over time", + "example_sentence_english": "There was a lack of continuity in the film's plot.", + "pos": "noun", + "word_frequency": 7006 + }, + { + "word": "crawl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move forward on the hands and knees or by dragging the body close to the ground", + "example_sentence_english": "The baby learned to crawl at six months old.", + "pos": "verb", + "word_frequency": 7008 + }, + { + "word": "credible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be believed; convincing", + "example_sentence_english": "The witness provided a credible account of the accident.", + "pos": "adjective", + "word_frequency": 7009 + }, + { + "word": "db", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decibel (unit of sound intensity)", + "example_sentence_english": "The noise level reached 90 dB, which is very loud.", + "pos": "noun", + "word_frequency": 7010 + }, + { + "word": "defect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shortcoming, imperfection, or lack", + "example_sentence_english": "The car was recalled due to a manufacturing defect.", + "pos": "noun", + "word_frequency": 7011 + }, + { + "word": "delightful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing delight; charming", + "example_sentence_english": "We had a delightful evening with our friends.", + "pos": "adjective", + "word_frequency": 7012 + }, + { + "word": "depict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to represent by a drawing, painting, or other art form", + "example_sentence_english": "The painting depicts a scene from ancient mythology.", + "pos": "verb", + "word_frequency": 7013 + }, + { + "word": "digit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "any of the numerals from 0 to 9", + "example_sentence_english": "Please enter the last four digits of your phone number.", + "pos": "noun", + "word_frequency": 7014 + }, + { + "word": "dinosaur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a fossil reptile of the Mesozoic era", + "example_sentence_english": "Many children are fascinated by dinosaurs.", + "pos": "noun", + "word_frequency": 7015 + }, + { + "word": "drainage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of draining something", + "example_sentence_english": "The city improved the drainage system to prevent flooding.", + "pos": "noun", + "word_frequency": 7016 + }, + { + "word": "drown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to die through submersion in and inhalation of water", + "example_sentence_english": "He was careful not to drown while swimming in the deep end.", + "pos": "verb", + "word_frequency": 7017 + }, + { + "word": "embarrassment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of self-consciousness, shame, or awkwardness", + "example_sentence_english": "She felt a blush of embarrassment when she tripped.", + "pos": "noun", + "word_frequency": 7018 + }, + { + "word": "fairness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impartial and just treatment or behavior without favoritism or discrimination", + "example_sentence_english": "The judge was praised for his fairness in the trial.", + "pos": "noun", + "word_frequency": 7019 + }, + { + "word": "felony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a crime, typically one involving violence, regarded as more serious than a misdemeanor", + "example_sentence_english": "Armed robbery is considered a serious felony.", + "pos": "noun", + "word_frequency": 7020 + }, + { + "word": "flint", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hard gray rock consisting of nearly pure silica", + "example_sentence_english": "Early humans used flint to make tools and weapons.", + "pos": "noun", + "word_frequency": 7021 + }, + { + "word": "floral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of or relating to flowers", + "example_sentence_english": "She chose a dress with a beautiful floral pattern.", + "pos": "adjective", + "word_frequency": 7022 + }, + { + "word": "fortress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a military stronghold, especially a strongly fortified town fit for a large garrison", + "example_sentence_english": "The ancient fortress stood on a hill overlooking the city.", + "pos": "noun", + "word_frequency": 7023 + }, + { + "word": "herb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "any plant with leaves, seeds, or flowers used for flavoring, food, medicine, or perfume", + "example_sentence_english": "Parsley is a common herb used in cooking.", + "pos": "noun", + "word_frequency": 7026 + }, + { + "word": "herd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large group of animals, especially hoofed mammals, that live together or are kept together as livestock", + "example_sentence_english": "A large herd of cattle grazed in the field.", + "pos": "noun", + "word_frequency": 7027 + }, + { + "word": "ideological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on or relating to a system of ideas and ideals, especially one which forms the basis of economic or political theory and policy", + "example_sentence_english": "The two parties have significant ideological differences.", + "pos": "adjective", + "word_frequency": 7028 + }, + { + "word": "immortal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "living forever; never dying or decaying", + "example_sentence_english": "Many myths tell stories of immortal gods and goddesses.", + "pos": "adjective", + "word_frequency": 7029 + }, + { + "word": "incumbent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the holder of an office or post", + "example_sentence_english": "The incumbent president is seeking re-election.", + "pos": "noun", + "word_frequency": 7030 + }, + { + "word": "insider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person within a group or organization, especially someone with special knowledge", + "example_sentence_english": "An insider leaked confidential information to the press.", + "pos": "noun", + "word_frequency": 7031 + }, + { + "word": "insufficient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not enough; inadequate", + "example_sentence_english": "There was insufficient evidence to prove his guilt.", + "pos": "adjective", + "word_frequency": 7032 + }, + { + "word": "interval", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of time between two events or at which something happens", + "example_sentence_english": "The train departs at regular intervals of 30 minutes.", + "pos": "noun", + "word_frequency": 7033 + }, + { + "word": "jelly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sweet, clear, semisolid fruit product made by boiling fruit juice with sugar", + "example_sentence_english": "I like to spread strawberry jelly on my toast.", + "pos": "noun", + "word_frequency": 7034 + }, + { + "word": "kidnapping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of abducting someone and holding them captive", + "example_sentence_english": "The police are investigating a case of kidnapping.", + "pos": "noun", + "word_frequency": 7037 + }, + { + "word": "kilometre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of length, equal to 1,000 meters", + "example_sentence_english": "The nearest town is ten kilometres away.", + "pos": "noun", + "word_frequency": 7038 + }, + { + "word": "lick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pass the tongue over", + "example_sentence_english": "The dog started to lick its paw.", + "pos": "verb", + "word_frequency": 7040 + }, + { + "word": "literal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exact; not figurative", + "example_sentence_english": "You should take his words in a literal sense.", + "pos": "adjective", + "word_frequency": 7041 + }, + { + "word": "lunar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the moon", + "example_sentence_english": "The lunar eclipse was a spectacular sight.", + "pos": "adjective", + "word_frequency": 7042 + }, + { + "word": "maternal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a mother", + "example_sentence_english": "She has strong maternal instincts.", + "pos": "adjective", + "word_frequency": 7043 + }, + { + "word": "memoir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a historical account or biography written from personal knowledge", + "example_sentence_english": "She published a memoir about her time abroad.", + "pos": "noun", + "word_frequency": 7047 + }, + { + "word": "mold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a furry growth of minute fungi; a hollow container used to give shape", + "example_sentence_english": "There was mold growing on the old bread.", + "pos": "noun", + "word_frequency": 7050 + }, + { + "word": "objection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expression or feeling of disapproval or opposition", + "example_sentence_english": "The lawyer raised an objection to the question.", + "pos": "noun", + "word_frequency": 7053 + }, + { + "word": "oblige", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make (someone) legally or morally bound to an action or course of action", + "example_sentence_english": "We were obliged to follow the rules.", + "pos": "verb", + "word_frequency": 7054 + }, + { + "word": "occurrence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an incident or event", + "example_sentence_english": "The sudden occurrence of the storm surprised everyone.", + "pos": "noun", + "word_frequency": 7055 + }, + { + "word": "offspring", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's child or children; an animal's young", + "example_sentence_english": "The lioness protected her offspring fiercely.", + "pos": "noun", + "word_frequency": 7056 + }, + { + "word": "outrageous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shockingly bad or excessive", + "example_sentence_english": "The prices at that restaurant are simply outrageous.", + "pos": "adjective", + "word_frequency": 7058 + }, + { + "word": "packet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small paper or cardboard container", + "example_sentence_english": "He bought a packet of crisps from the shop.", + "pos": "noun", + "word_frequency": 7059 + }, + { + "word": "pathway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a path or track", + "example_sentence_english": "We followed the narrow pathway through the woods.", + "pos": "noun", + "word_frequency": 7060 + }, + { + "word": "peach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a round stone fruit with juicy yellow flesh and downy skin", + "example_sentence_english": "I love eating a fresh peach in the summer.", + "pos": "noun", + "word_frequency": 7061 + }, + { + "word": "polo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game played on horseback; a type of shirt", + "example_sentence_english": "He wore a blue polo shirt to the party.", + "pos": "noun", + "word_frequency": 7062 + }, + { + "word": "presenter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who presents a television or radio programme", + "example_sentence_english": "The presenter introduced the next guest on the show.", + "pos": "noun", + "word_frequency": 7063 + }, + { + "word": "proclaim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to announce officially or publicly", + "example_sentence_english": "The king will proclaim the new law tomorrow.", + "pos": "verb", + "word_frequency": 7064 + }, + { + "word": "prohibition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of forbidding something by law", + "example_sentence_english": "There is a strict prohibition against smoking in this building.", + "pos": "noun", + "word_frequency": 7065 + }, + { + "word": "prop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a support; an item used in a play", + "example_sentence_english": "The old fence needed a prop to keep it from falling.", + "pos": "noun", + "word_frequency": 7066 + }, + { + "word": "registry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where registers or records are kept", + "example_sentence_english": "You can find your birth certificate at the local registry office.", + "pos": "noun", + "word_frequency": 7067 + }, + { + "word": "rotate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move in a circle around a central axis", + "example_sentence_english": "The Earth rotates on its axis once every 24 hours.", + "pos": "verb", + "word_frequency": 7068 + }, + { + "word": "scar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mark left on the skin or within body tissue where a wound, burn, or sore has not healed completely", + "example_sentence_english": "He still has a scar on his knee from the accident.", + "pos": "noun", + "word_frequency": 7070 + }, + { + "word": "scripture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sacred writings of a religion", + "example_sentence_english": "Many people find comfort in reading scripture.", + "pos": "noun", + "word_frequency": 7071 + }, + { + "word": "seating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the arrangement of seats or the act of providing seats", + "example_sentence_english": "The seating arrangement for the wedding was carefully planned.", + "pos": "noun", + "word_frequency": 7072 + }, + { + "word": "seminar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a conference or other meeting for discussion or training", + "example_sentence_english": "She attended a seminar on digital marketing.", + "pos": "noun", + "word_frequency": 7073 + }, + { + "word": "simplicity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or condition of being easy to understand or do", + "example_sentence_english": "The beauty of the design lies in its simplicity.", + "pos": "noun", + "word_frequency": 7075 + }, + { + "word": "specimen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an individual animal, plant, piece of a mineral, etc., used as an example of its species or type for scientific study or display", + "example_sentence_english": "The scientist collected a rare plant specimen.", + "pos": "noun", + "word_frequency": 7076 + }, + { + "word": "stereo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sound reproduction system using two or more channels", + "example_sentence_english": "He turned on the stereo to listen to music.", + "pos": "noun", + "word_frequency": 7078 + }, + { + "word": "sustainability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to be maintained at a certain rate or level", + "example_sentence_english": "Environmental sustainability is crucial for future generations.", + "pos": "noun", + "word_frequency": 7080 + }, + { + "word": "symphony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long musical composition for full orchestra", + "example_sentence_english": "The orchestra performed a beautiful symphony by Beethoven.", + "pos": "noun", + "word_frequency": 7081 + }, + { + "word": "textbook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book used as a standard work for the study of a particular subject", + "example_sentence_english": "We need to buy a new textbook for our history class.", + "pos": "noun", + "word_frequency": 7083 + }, + { + "word": "theological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the study of religion", + "example_sentence_english": "He is pursuing a degree in theological studies.", + "pos": "adjective", + "word_frequency": 7084 + }, + { + "word": "undercover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretly gathering information", + "example_sentence_english": "The detective went undercover to investigate the crime.", + "pos": "adjective", + "word_frequency": 7085 + }, + { + "word": "vegetation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plants in general", + "example_sentence_english": "The dense vegetation made it difficult to walk through the jungle.", + "pos": "noun", + "word_frequency": 7086 + }, + { + "word": "vein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "any of the tubes forming part of the blood circulation system", + "example_sentence_english": "Blood flows through the veins back to the heart.", + "pos": "noun", + "word_frequency": 7087 + }, + { + "word": "velvet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of woven fabric with a short dense pile", + "example_sentence_english": "The curtains were made of soft red velvet.", + "pos": "noun", + "word_frequency": 7088 + }, + { + "word": "accountant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose job is to keep or inspect financial accounts", + "example_sentence_english": "My accountant helps me with my taxes every year.", + "pos": "noun", + "word_frequency": 7091 + }, + { + "word": "amusing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "causing laughter or providing entertainment", + "example_sentence_english": "The comedian told an amusing story.", + "pos": "adjective", + "word_frequency": 7093 + }, + { + "word": "behold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "see or observe (a thing or person, especially a remarkable or impressive one)", + "example_sentence_english": "Behold the beauty of the sunset!", + "pos": "verb", + "word_frequency": 7094 + }, + { + "word": "betray", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expose (one's country, a group, or a person) to danger by treacherously giving information to an enemy", + "example_sentence_english": "He felt betrayed by his closest friend.", + "pos": "verb", + "word_frequency": 7095 + }, + { + "word": "billionaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person with assets worth at least a billion pounds or dollars", + "example_sentence_english": "The billionaire donated a large sum to charity.", + "pos": "noun", + "word_frequency": 7096 + }, + { + "word": "brew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make (beer, coffee, or tea) by soaking, boiling, and fermentation", + "example_sentence_english": "I'll brew some fresh coffee for us.", + "pos": "verb", + "word_frequency": 7097 + }, + { + "word": "bypass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a road passing around a town or village", + "example_sentence_english": "They built a new bypass to ease traffic congestion.", + "pos": "noun", + "word_frequency": 7099 + }, + { + "word": "cancellation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of cancelling something", + "example_sentence_english": "The flight cancellation caused a lot of inconvenience.", + "pos": "noun", + "word_frequency": 7100 + }, + { + "word": "cane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stick used as an aid in walking or as a support", + "example_sentence_english": "My grandfather uses a cane to help him walk.", + "pos": "noun", + "word_frequency": 7101 + }, + { + "word": "catalyst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance that increases the rate of a chemical reaction without itself undergoing any permanent chemical change", + "example_sentence_english": "Her speech was a catalyst for change in the community.", + "pos": "noun", + "word_frequency": 7102 + }, + { + "word": "cedar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tall, evergreen coniferous tree", + "example_sentence_english": "The chest was made of fragrant cedar wood.", + "pos": "noun", + "word_frequency": 7103 + }, + { + "word": "corpse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dead body, especially of a human being", + "example_sentence_english": "The police found a corpse in the abandoned building.", + "pos": "noun", + "word_frequency": 7105 + }, + { + "word": "crab", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a marine crustacean with a broad carapace, stalked eyes, and five pairs of legs", + "example_sentence_english": "We saw a crab scuttling sideways on the beach.", + "pos": "noun", + "word_frequency": 7106 + }, + { + "word": "cruelty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruel behavior or attitudes", + "example_sentence_english": "Animal cruelty is a serious offense.", + "pos": "noun", + "word_frequency": 7107 + }, + { + "word": "dementia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chronic or persistent disorder of the mental processes caused by brain disease or injury", + "example_sentence_english": "Her grandmother was diagnosed with dementia.", + "pos": "noun", + "word_frequency": 7110 + }, + { + "word": "designation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of choosing someone or something for a special purpose", + "example_sentence_english": "His official designation is Senior Project Manager.", + "pos": "noun", + "word_frequency": 7111 + }, + { + "word": "dice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small cube with each side having a different number of spots", + "example_sentence_english": "Roll the dice to see how many spaces you move.", + "pos": "noun", + "word_frequency": 7113 + }, + { + "word": "diploma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a certificate awarded by an educational establishment to show that someone has successfully completed a course of study", + "example_sentence_english": "She received her diploma after graduating from college.", + "pos": "noun", + "word_frequency": 7114 + }, + { + "word": "dispatch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sending of someone or something to a destination for a purpose", + "example_sentence_english": "The police received a dispatch about a robbery.", + "pos": "noun", + "word_frequency": 7115 + }, + { + "word": "duchess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the wife or widow of a duke", + "example_sentence_english": "The Duchess attended the charity event.", + "pos": "noun", + "word_frequency": 7117 + }, + { + "word": "extinction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or process of a species, family, or other group dying out", + "example_sentence_english": "Many species are facing extinction due to climate change.", + "pos": "noun", + "word_frequency": 7119 + }, + { + "word": "foil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin sheet of metal; a character who contrasts with another", + "example_sentence_english": "Wrap the leftovers in aluminum foil.", + "pos": "noun", + "word_frequency": 7121 + }, + { + "word": "geology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of the Earth's physical structure and substance", + "example_sentence_english": "She is studying geology at university.", + "pos": "noun", + "word_frequency": 7124 + }, + { + "word": "heath", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of open uncultivated land", + "example_sentence_english": "The sheep grazed on the heath.", + "pos": "noun", + "word_frequency": 7127 + }, + { + "word": "heavenly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of heaven; delightful", + "example_sentence_english": "The cake tasted heavenly.", + "pos": "adjective", + "word_frequency": 7128 + }, + { + "word": "horrific", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing horror; dreadful", + "example_sentence_english": "The accident was a horrific sight.", + "pos": "adjective", + "word_frequency": 7129 + }, + { + "word": "iris", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of flower; the colored part of the eye", + "example_sentence_english": "Her eyes have beautiful blue irises.", + "pos": "noun", + "word_frequency": 7131 + }, + { + "word": "mentality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's way of thinking", + "example_sentence_english": "He has a very positive mentality.", + "pos": "noun", + "word_frequency": 7133 + }, + { + "word": "neural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a nerve or the nervous system", + "example_sentence_english": "Scientists are studying neural pathways in the brain.", + "pos": "adjective", + "word_frequency": 7136 + }, + { + "word": "newsletter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bulletin issued regularly to members of a society or organization", + "example_sentence_english": "I subscribe to their weekly newsletter.", + "pos": "noun", + "word_frequency": 7137 + }, + { + "word": "nineteenth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "19th in order", + "example_sentence_english": "Today is the nineteenth of July.", + "pos": "numeral", + "word_frequency": 7138 + }, + { + "word": "nitrogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a colorless, odorless, gaseous element", + "example_sentence_english": "Nitrogen is the most abundant gas in Earth's atmosphere.", + "pos": "noun", + "word_frequency": 7139 + }, + { + "word": "payroll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a list of a company's employees and the amount of money they are to be paid", + "example_sentence_english": "The company processes payroll every two weeks.", + "pos": "noun", + "word_frequency": 7143 + }, + { + "word": "phenomenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraordinary; remarkable", + "example_sentence_english": "Her performance was absolutely phenomenal.", + "pos": "adjective", + "word_frequency": 7144 + }, + { + "word": "photographic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to photography or photographs", + "example_sentence_english": "He has a photographic memory.", + "pos": "adjective", + "word_frequency": 7146 + }, + { + "word": "pinch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grip tightly between the thumb and a finger", + "example_sentence_english": "She pinched herself to make sure she wasn't dreaming.", + "pos": "verb", + "word_frequency": 7147 + }, + { + "word": "ping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a short, high-pitched ringing sound; to send a brief electronic message", + "example_sentence_english": "The microwave made a 'ping' sound when it finished.", + "pos": "verb", + "word_frequency": 7148 + }, + { + "word": "predictable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be foreseen or foretold", + "example_sentence_english": "The movie's ending was very predictable.", + "pos": "adjective", + "word_frequency": 7149 + }, + { + "word": "queer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strange or odd; relating to sexual or gender minorities", + "example_sentence_english": "He felt a queer sensation in his stomach.", + "pos": "adjective", + "word_frequency": 7151 + }, + { + "word": "rebound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bounce back; to recover", + "example_sentence_english": "The ball rebounded off the wall.", + "pos": "verb", + "word_frequency": 7152 + }, + { + "word": "reckon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expect or believe; to calculate", + "example_sentence_english": "I reckon it's going to rain soon.", + "pos": "verb", + "word_frequency": 7153 + }, + { + "word": "recycle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to convert waste into reusable material", + "example_sentence_english": "Don't forget to recycle your plastic bottles.", + "pos": "verb", + "word_frequency": 7154 + }, + { + "word": "resurrection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or fact of rising from the dead; a revival", + "example_sentence_english": "The band's reunion was a resurrection of their former glory.", + "pos": "noun", + "word_frequency": 7155 + }, + { + "word": "rover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a vehicle for exploring; a wanderer", + "example_sentence_english": "NASA sent a new rover to Mars.", + "pos": "noun", + "word_frequency": 7156 + }, + { + "word": "shipment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of shipping goods; a consignment of goods", + "example_sentence_english": "The next shipment of goods is expected tomorrow.", + "pos": "noun", + "word_frequency": 7158 + }, + { + "word": "slut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a derogatory term for a woman who has many sexual partners", + "example_sentence_english": "Using derogatory terms like 'slut' is offensive and unacceptable.", + "pos": "noun", + "word_frequency": 7159 + }, + { + "word": "spatial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to space", + "example_sentence_english": "The architect considered the spatial arrangement of the rooms.", + "pos": "adjective", + "word_frequency": 7160 + }, + { + "word": "stainless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not staining or rusting", + "example_sentence_english": "We bought a new set of stainless steel pans.", + "pos": "adjective", + "word_frequency": 7161 + }, + { + "word": "statutory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "required by statute or law", + "example_sentence_english": "The company must comply with all statutory regulations.", + "pos": "adjective", + "word_frequency": 7162 + }, + { + "word": "stellar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to stars; outstanding", + "example_sentence_english": "She gave a stellar performance in the play.", + "pos": "adjective", + "word_frequency": 7163 + }, + { + "word": "stripe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long narrow band or strip", + "example_sentence_english": "The zebra has black and white stripes.", + "pos": "noun", + "word_frequency": 7165 + }, + { + "word": "stubborn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unwilling to change one's mind", + "example_sentence_english": "He was too stubborn to admit he was wrong.", + "pos": "adjective", + "word_frequency": 7166 + }, + { + "word": "summon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to order someone to come", + "example_sentence_english": "The principal decided to summon the student's parents.", + "pos": "verb", + "word_frequency": 7167 + }, + { + "word": "syrup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thick, sweet liquid", + "example_sentence_english": "I like to pour maple syrup on my pancakes.", + "pos": "noun", + "word_frequency": 7169 + }, + { + "word": "teaching", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the profession of a teacher", + "example_sentence_english": "She finds teaching very rewarding.", + "pos": "noun", + "word_frequency": 7171 + }, + { + "word": "transplant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an operation in which an organ is moved", + "example_sentence_english": "He needed a heart transplant.", + "pos": "noun", + "word_frequency": 7173 + }, + { + "word": "turf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a layer of earth with grass", + "example_sentence_english": "The football pitch had new turf laid.", + "pos": "noun", + "word_frequency": 7175 + }, + { + "word": "twitch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a sudden, small movement", + "example_sentence_english": "His eye began to twitch nervously.", + "pos": "verb", + "word_frequency": 7176 + }, + { + "word": "unveil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remove a veil or covering; to reveal", + "example_sentence_english": "The company will unveil its new product next month.", + "pos": "verb", + "word_frequency": 7177 + }, + { + "word": "username", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a name used to identify a user", + "example_sentence_english": "Please enter your username and password.", + "pos": "noun", + "word_frequency": 7178 + }, + { + "word": "vip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very important person", + "example_sentence_english": "The VIP guests were given special access.", + "pos": "noun", + "word_frequency": 7179 + }, + { + "word": "volcano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a mountain with a crater", + "example_sentence_english": "The volcano erupted, sending ash into the sky.", + "pos": "noun", + "word_frequency": 7180 + }, + { + "word": "accelerate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase speed", + "example_sentence_english": "The car accelerated quickly on the highway.", + "pos": "verb", + "word_frequency": 7183 + }, + { + "word": "accomplishment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something successfully achieved", + "example_sentence_english": "Finishing the marathon was a great accomplishment.", + "pos": "noun", + "word_frequency": 7184 + }, + { + "word": "advertise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to promote a product or service", + "example_sentence_english": "Companies advertise their products on TV.", + "pos": "verb", + "word_frequency": 7185 + }, + { + "word": "ark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boat built by Noah", + "example_sentence_english": "Noah built an ark to save his family and animals.", + "pos": "noun", + "word_frequency": 7186 + }, + { + "word": "armour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protective covering", + "example_sentence_english": "Knights wore heavy armour in battle.", + "pos": "noun", + "word_frequency": 7187 + }, + { + "word": "atom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the smallest unit of a chemical element", + "example_sentence_english": "An atom is made up of protons, neutrons, and electrons.", + "pos": "noun", + "word_frequency": 7188 + }, + { + "word": "await", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wait for", + "example_sentence_english": "We eagerly await your response.", + "pos": "verb", + "word_frequency": 7189 + }, + { + "word": "bum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a homeless person; buttocks (informal)", + "example_sentence_english": "He saw a bum sleeping on the park bench.", + "pos": "noun", + "word_frequency": 7194 + }, + { + "word": "butcher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who sells meat", + "example_sentence_english": "I bought some fresh chicken from the butcher.", + "pos": "noun", + "word_frequency": 7195 + }, + { + "word": "café", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small restaurant serving drinks and light meals", + "example_sentence_english": "Let's meet at the café for coffee.", + "pos": "noun", + "word_frequency": 7197 + }, + { + "word": "conception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the forming or devising of a plan or idea", + "example_sentence_english": "The original conception of the project was much simpler.", + "pos": "noun", + "word_frequency": 7200 + }, + { + "word": "counterpart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing holding a similar position or performing a similar function to another", + "example_sentence_english": "The CEO met with his counterpart from the rival company.", + "pos": "noun", + "word_frequency": 7202 + }, + { + "word": "cue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a signal for action", + "example_sentence_english": "She took her cue from the director and started speaking.", + "pos": "noun", + "word_frequency": 7203 + }, + { + "word": "disciplinary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to discipline", + "example_sentence_english": "The employee faced disciplinary action for his misconduct.", + "pos": "adjective", + "word_frequency": 7204 + }, + { + "word": "dwarf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person of abnormally small stature", + "example_sentence_english": "In fairy tales, dwarfs often live in mines.", + "pos": "noun", + "word_frequency": 7205 + }, + { + "word": "eighty", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the number 80", + "example_sentence_english": "She will be eighty next year.", + "pos": "numeral", + "word_frequency": 7206 + }, + { + "word": "eligibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of having the right to do or obtain something", + "example_sentence_english": "Check your eligibility for the scholarship before applying.", + "pos": "noun", + "word_frequency": 7208 + }, + { + "word": "enact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (a bill or other proposal) law", + "example_sentence_english": "Congress will enact new legislation next month.", + "pos": "verb", + "word_frequency": 7209 + }, + { + "word": "endorsement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of giving one's public approval or support to someone or something", + "example_sentence_english": "The product received an endorsement from a famous athlete.", + "pos": "noun", + "word_frequency": 7210 + }, + { + "word": "enlist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enroll or be enrolled in the armed services", + "example_sentence_english": "He decided to enlist in the army after high school.", + "pos": "verb", + "word_frequency": 7211 + }, + { + "word": "eyebrow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the strip of hair growing above each eye", + "example_sentence_english": "She raised an eyebrow in surprise.", + "pos": "noun", + "word_frequency": 7212 + }, + { + "word": "finite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having limits or bounds", + "example_sentence_english": "Our natural resources are finite.", + "pos": "adjective", + "word_frequency": 7214 + }, + { + "word": "flagship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the best or most important one of a group of things", + "example_sentence_english": "The new smartphone is the company's flagship product.", + "pos": "noun", + "word_frequency": 7215 + }, + { + "word": "forensic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting the application of scientific methods and techniques to the investigation of crime", + "example_sentence_english": "The police sent the evidence to the forensic lab.", + "pos": "adjective", + "word_frequency": 7216 + }, + { + "word": "forthcoming", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "about to happen or appear", + "example_sentence_english": "The forthcoming election will be very close.", + "pos": "adjective", + "word_frequency": 7217 + }, + { + "word": "gallon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of liquid capacity", + "example_sentence_english": "I bought a gallon of milk from the store.", + "pos": "noun", + "word_frequency": 7218 + }, + { + "word": "glucose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a simple sugar that is an important energy source", + "example_sentence_english": "The body converts food into glucose for energy.", + "pos": "noun", + "word_frequency": 7219 + }, + { + "word": "gore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blood that has been shed, especially as a result of violence", + "example_sentence_english": "The movie was criticized for its excessive gore.", + "pos": "noun", + "word_frequency": 7220 + }, + { + "word": "gown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long formal dress", + "example_sentence_english": "She wore a beautiful gown to the ball.", + "pos": "noun", + "word_frequency": 7222 + }, + { + "word": "greedy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having an excessive desire for something, especially wealth", + "example_sentence_english": "The greedy child wanted all the candy for himself.", + "pos": "adjective", + "word_frequency": 7223 + }, + { + "word": "halo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a circle of light or glory", + "example_sentence_english": "The artist painted a halo around the angel's head.", + "pos": "noun", + "word_frequency": 7224 + }, + { + "word": "infamous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well known for some bad quality or deed", + "example_sentence_english": "He was infamous for his terrible temper.", + "pos": "adjective", + "word_frequency": 7226 + }, + { + "word": "inspirational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing or showing inspiration", + "example_sentence_english": "Her story was truly inspirational.", + "pos": "adjective", + "word_frequency": 7227 + }, + { + "word": "lateral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of, at, toward, or from the side or sides", + "example_sentence_english": "The building has a lateral extension.", + "pos": "adjective", + "word_frequency": 7230 + }, + { + "word": "lifelong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasting or continuing throughout a person's life", + "example_sentence_english": "He has been a lifelong friend.", + "pos": "adjective", + "word_frequency": 7233 + }, + { + "word": "limestone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard sedimentary rock", + "example_sentence_english": "The cliffs were made of white limestone.", + "pos": "noun", + "word_frequency": 7234 + }, + { + "word": "liner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a covering or inner layer", + "example_sentence_english": "She applied eyeliner to her upper lid.", + "pos": "noun", + "word_frequency": 7235 + }, + { + "word": "merge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combine or cause to combine to form a single entity", + "example_sentence_english": "The two companies decided to merge.", + "pos": "verb", + "word_frequency": 7236 + }, + { + "word": "mesh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material made of a network of wire or thread", + "example_sentence_english": "The window screen was made of fine mesh.", + "pos": "noun", + "word_frequency": 7237 + }, + { + "word": "moron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a foolish or stupid person", + "example_sentence_english": "He called me a moron for making a simple mistake.", + "pos": "noun", + "word_frequency": 7239 + }, + { + "word": "mortar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a building material; a weapon", + "example_sentence_english": "The bricks were held together with mortar.", + "pos": "noun", + "word_frequency": 7240 + }, + { + "word": "naive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innocent, inexperienced", + "example_sentence_english": "She was very naive to believe everything he said.", + "pos": "adjective", + "word_frequency": 7241 + }, + { + "word": "noticeable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily seen or observed", + "example_sentence_english": "There was a noticeable change in his attitude.", + "pos": "adjective", + "word_frequency": 7244 + }, + { + "word": "perfume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a fragrant liquid", + "example_sentence_english": "She sprayed some perfume on her wrist.", + "pos": "noun", + "word_frequency": 7250 + }, + { + "word": "prestige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high status or regard", + "example_sentence_english": "The university has a lot of academic prestige.", + "pos": "noun", + "word_frequency": 7251 + }, + { + "word": "pyramid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large structure with a square base and four triangular sides", + "example_sentence_english": "We visited the ancient pyramids in Egypt.", + "pos": "noun", + "word_frequency": 7252 + }, + { + "word": "relevance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being closely connected or appropriate", + "example_sentence_english": "His comments had no relevance to the discussion.", + "pos": "noun", + "word_frequency": 7253 + }, + { + "word": "rigid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stiff, inflexible", + "example_sentence_english": "The rules were too rigid to allow for any exceptions.", + "pos": "adjective", + "word_frequency": 7255 + }, + { + "word": "screenshot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an image of a computer screen", + "example_sentence_english": "Please send me a screenshot of the error message.", + "pos": "noun", + "word_frequency": 7261 + }, + { + "word": "selfie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a photograph taken of oneself", + "example_sentence_english": "She posted a selfie on social media.", + "pos": "noun", + "word_frequency": 7262 + }, + { + "word": "settler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who settles in a new country or area", + "example_sentence_english": "The early settlers faced many challenges.", + "pos": "noun", + "word_frequency": 7263 + }, + { + "word": "shatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break into many pieces", + "example_sentence_english": "The glass vase fell and shattered on the floor.", + "pos": "verb", + "word_frequency": 7264 + }, + { + "word": "spacecraft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a vehicle used for travel in space", + "example_sentence_english": "The spacecraft launched successfully into orbit.", + "pos": "noun", + "word_frequency": 7265 + }, + { + "word": "splendid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnificent, excellent", + "example_sentence_english": "We had a splendid time at the party.", + "pos": "adjective", + "word_frequency": 7266 + }, + { + "word": "telescope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an optical instrument for viewing distant objects", + "example_sentence_english": "He used a telescope to look at the stars.", + "pos": "noun", + "word_frequency": 7268 + }, + { + "word": "temp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a temporary employee; temperature", + "example_sentence_english": "She's working as a temp at the office.", + "pos": "noun", + "word_frequency": 7269 + }, + { + "word": "terminate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring to an end", + "example_sentence_english": "The company decided to terminate his contract.", + "pos": "verb", + "word_frequency": 7270 + }, + { + "word": "textile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of cloth or woven fabric", + "example_sentence_english": "The factory produces various textiles.", + "pos": "noun", + "word_frequency": 7271 + }, + { + "word": "thickness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or quality of being thick", + "example_sentence_english": "The thickness of the ice was dangerous.", + "pos": "noun", + "word_frequency": 7273 + }, + { + "word": "tray", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flat, shallow container", + "example_sentence_english": "She carried the drinks on a tray.", + "pos": "noun", + "word_frequency": 7274 + }, + { + "word": "unreasonable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not fair, sensible, or practical", + "example_sentence_english": "His demands were completely unreasonable.", + "pos": "adjective", + "word_frequency": 7277 + }, + { + "word": "unsure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not certain or confident", + "example_sentence_english": "I'm unsure about the best way to proceed.", + "pos": "adjective", + "word_frequency": 7278 + }, + { + "word": "upward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards a higher place or level", + "example_sentence_english": "He looked upward at the sky.", + "pos": "adverb", + "word_frequency": 7279 + }, + { + "word": "valuation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of assessing the value of something", + "example_sentence_english": "The company's valuation increased significantly after the merger.", + "pos": "noun", + "word_frequency": 7280 + }, + { + "word": "veterinary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the medical care of animals", + "example_sentence_english": "She decided to pursue a career in veterinary medicine.", + "pos": "adjective", + "word_frequency": 7281 + }, + { + "word": "villager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who lives in a village", + "example_sentence_english": "The villagers gathered in the square for the festival.", + "pos": "noun", + "word_frequency": 7282 + }, + { + "word": "vivid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "producing powerful feelings or strong, clear images in the mind", + "example_sentence_english": "She had a vivid dream about flying.", + "pos": "adjective", + "word_frequency": 7283 + }, + { + "word": "allocation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of distributing something", + "example_sentence_english": "The allocation of resources was carefully planned.", + "pos": "noun", + "word_frequency": 7285 + }, + { + "word": "amusement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or experience of finding something funny or entertaining", + "example_sentence_english": "He watched the children play with great amusement.", + "pos": "noun", + "word_frequency": 7286 + }, + { + "word": "antibiotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medicine that inhibits the growth of or destroys microorganisms", + "example_sentence_english": "The doctor prescribed an antibiotic for the infection.", + "pos": "noun", + "word_frequency": 7287 + }, + { + "word": "anticipation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of looking forward to something", + "example_sentence_english": "There was a sense of anticipation in the air before the concert.", + "pos": "noun", + "word_frequency": 7288 + }, + { + "word": "arrogant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or revealing an exaggerated sense of one's own importance or abilities", + "example_sentence_english": "His arrogant attitude made him unpopular with his colleagues.", + "pos": "adjective", + "word_frequency": 7289 + }, + { + "word": "authorization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official permission or approval", + "example_sentence_english": "You need authorization to access this area.", + "pos": "noun", + "word_frequency": 7290 + }, + { + "word": "auxiliary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providing supplementary or additional help and support", + "example_sentence_english": "The ship has an auxiliary engine for emergencies.", + "pos": "adjective", + "word_frequency": 7291 + }, + { + "word": "baggage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suitcases, bags, etc., used for travel", + "example_sentence_english": "Please collect your baggage from the carousel.", + "pos": "noun", + "word_frequency": 7293 + }, + { + "word": "beacon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a guiding light or signal", + "example_sentence_english": "The lighthouse served as a beacon for ships at sea.", + "pos": "noun", + "word_frequency": 7294 + }, + { + "word": "bounty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sum paid for killing or capturing a person or animal; a generous amount", + "example_sentence_english": "The government offered a bounty for the capture of the escaped prisoner.", + "pos": "noun", + "word_frequency": 7296 + }, + { + "word": "boxer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who fights with their fists for sport", + "example_sentence_english": "The boxer trained hard for the championship fight.", + "pos": "noun", + "word_frequency": 7297 + }, + { + "word": "briefing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a meeting for giving information or instructions", + "example_sentence_english": "The team received a detailed briefing before the mission.", + "pos": "noun", + "word_frequency": 7298 + }, + { + "word": "ceramic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made of clay and hardened by heat", + "example_sentence_english": "She bought a beautiful ceramic vase.", + "pos": "adjective", + "word_frequency": 7300 + }, + { + "word": "cereal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a grain used for food, such as wheat, oats, or corn; a breakfast food", + "example_sentence_english": "I usually eat cereal for breakfast.", + "pos": "noun", + "word_frequency": 7301 + }, + { + "word": "challenger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who disputes or competes with another", + "example_sentence_english": "The reigning champion faced a strong challenger in the final.", + "pos": "noun", + "word_frequency": 7302 + }, + { + "word": "clergy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the body of all people ordained for religious duties", + "example_sentence_english": "The local clergy attended the interfaith meeting.", + "pos": "noun", + "word_frequency": 7303 + }, + { + "word": "cola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sweet carbonated drink", + "example_sentence_english": "Would you like a glass of cola with your meal?", + "pos": "noun", + "word_frequency": 7304 + }, + { + "word": "coma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of deep unconsciousness", + "example_sentence_english": "After the accident, he was in a coma for several days.", + "pos": "noun", + "word_frequency": 7305 + }, + { + "word": "compass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an instrument containing a magnetized pointer that shows the direction of magnetic north", + "example_sentence_english": "We used a compass to navigate through the forest.", + "pos": "noun", + "word_frequency": 7306 + }, + { + "word": "contempt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the feeling that a person or a thing is beneath consideration, worthless, or deserving scorn", + "example_sentence_english": "She felt nothing but contempt for his actions.", + "pos": "noun", + "word_frequency": 7307 + }, + { + "word": "credential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a qualification, achievement, personal quality, or aspect of a person's background, typically when used to indicate that they are suitable for something", + "example_sentence_english": "His academic credentials made him a strong candidate for the job.", + "pos": "noun", + "word_frequency": 7308 + }, + { + "word": "descend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move or fall downwards", + "example_sentence_english": "The plane began to descend towards the airport.", + "pos": "verb", + "word_frequency": 7310 + }, + { + "word": "disappearance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act or fact of vanishing or ceasing to exist", + "example_sentence_english": "The police are investigating the mysterious disappearance of the artifact.", + "pos": "noun", + "word_frequency": 7311 + }, + { + "word": "drying", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the process of becoming dry", + "example_sentence_english": "The clothes are drying on the line.", + "pos": "verb", + "word_frequency": 7313 + }, + { + "word": "dwelling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a house, apartment, or other place of residence", + "example_sentence_english": "The ancient dwelling was carved into the side of the cliff.", + "pos": "noun", + "word_frequency": 7314 + }, + { + "word": "ecology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the branch of biology that deals with the relations of organisms to one another and to their physical surroundings", + "example_sentence_english": "She is studying ecology at university.", + "pos": "noun", + "word_frequency": 7316 + }, + { + "word": "emergence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of coming into being or becoming prominent", + "example_sentence_english": "The emergence of new technologies has changed our lives.", + "pos": "noun", + "word_frequency": 7320 + }, + { + "word": "enclose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surround or close off", + "example_sentence_english": "Please enclose the documents in the envelope.", + "pos": "verb", + "word_frequency": 7321 + }, + { + "word": "endurance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to withstand hardship or stress", + "example_sentence_english": "Running a marathon requires great endurance.", + "pos": "noun", + "word_frequency": 7322 + }, + { + "word": "erotic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to sexual desire", + "example_sentence_english": "The film had some erotic scenes.", + "pos": "adjective", + "word_frequency": 7323 + }, + { + "word": "evacuation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of evacuating a person or a place", + "example_sentence_english": "The evacuation of the building was ordered due to the fire.", + "pos": "noun", + "word_frequency": 7324 + }, + { + "word": "expenditure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of spending or using money, time, or resources", + "example_sentence_english": "The company needs to reduce its expenditures.", + "pos": "noun", + "word_frequency": 7325 + }, + { + "word": "falcon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bird of prey", + "example_sentence_english": "A falcon soared high above the mountains.", + "pos": "noun", + "word_frequency": 7326 + }, + { + "word": "folder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a folding cover or holder for loose papers", + "example_sentence_english": "Put the documents in the blue folder.", + "pos": "noun", + "word_frequency": 7328 + }, + { + "word": "frighten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make someone afraid", + "example_sentence_english": "The loud noise frightened the cat.", + "pos": "verb", + "word_frequency": 7329 + }, + { + "word": "groove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow cut or depression", + "example_sentence_english": "The record needle followed the groove.", + "pos": "noun", + "word_frequency": 7331 + }, + { + "word": "hedge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fence or boundary formed by closely growing bushes or shrubs", + "example_sentence_english": "The house was surrounded by a tall hedge.", + "pos": "noun", + "word_frequency": 7333 + }, + { + "word": "homosexuality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual attraction to people of the same sex", + "example_sentence_english": "The discussion included topics like homosexuality and gender identity.", + "pos": "noun", + "word_frequency": 7334 + }, + { + "word": "invade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enter a country or region with armed forces", + "example_sentence_english": "The army planned to invade the neighboring territory.", + "pos": "verb", + "word_frequency": 7335 + }, + { + "word": "jealousy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of envy towards someone's possessions or qualities", + "example_sentence_english": "Her jealousy made her act irrationally.", + "pos": "noun", + "word_frequency": 7337 + }, + { + "word": "jewellery", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "personal ornaments, such as necklaces, rings, or bracelets", + "example_sentence_english": "She wore beautiful jewellery to the party.", + "pos": "noun", + "word_frequency": 7338 + }, + { + "word": "joker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is fond of joking; a playing card", + "example_sentence_english": "He's always the joker of the group.", + "pos": "noun", + "word_frequency": 7339 + }, + { + "word": "lade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to load or burden", + "example_sentence_english": "The ship was heavily laden with cargo.", + "pos": "verb", + "word_frequency": 7342 + }, + { + "word": "limb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an arm or leg of a person or animal; a large branch of a tree", + "example_sentence_english": "He broke a limb playing football.", + "pos": "noun", + "word_frequency": 7343 + }, + { + "word": "meta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referring to itself or to the conventions of its genre; self-referential", + "example_sentence_english": "The film contained a meta-commentary on the nature of storytelling.", + "pos": "adjective", + "word_frequency": 7348 + }, + { + "word": "nod", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quick downward and upward movement of the head", + "example_sentence_english": "She gave a nod of approval.", + "pos": "noun", + "word_frequency": 7352 + }, + { + "word": "notebook", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a book of blank pages for writing notes", + "example_sentence_english": "Please write your answers in your notebook.", + "pos": "noun", + "word_frequency": 7353 + }, + { + "word": "offline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not connected to a computer network", + "example_sentence_english": "You can still read the articles offline.", + "pos": "adverb", + "word_frequency": 7354 + }, + { + "word": "overweight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "above a weight considered normal or healthy", + "example_sentence_english": "The doctor advised him that he was overweight.", + "pos": "adjective", + "word_frequency": 7355 + }, + { + "word": "palette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thin board or slab on which an artist lays and mixes colors", + "example_sentence_english": "The artist mixed the paints on her palette.", + "pos": "noun", + "word_frequency": 7356 + }, + { + "word": "pneumonia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lung inflammation caused by bacterial or viral infection", + "example_sentence_english": "He was diagnosed with pneumonia and needed to rest.", + "pos": "noun", + "word_frequency": 7358 + }, + { + "word": "policeman", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a male police officer", + "example_sentence_english": "The policeman directed traffic at the intersection.", + "pos": "noun", + "word_frequency": 7359 + }, + { + "word": "postpone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to delay", + "example_sentence_english": "We had to postpone the meeting until next week.", + "pos": "verb", + "word_frequency": 7360 + }, + { + "word": "potent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "powerful", + "example_sentence_english": "The drug is very potent, so use it carefully.", + "pos": "adjective", + "word_frequency": 7361 + }, + { + "word": "precede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come before", + "example_sentence_english": "A short introduction will precede the main presentation.", + "pos": "verb", + "word_frequency": 7362 + }, + { + "word": "predator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal that hunts others", + "example_sentence_english": "Lions are apex predators in their ecosystem.", + "pos": "noun", + "word_frequency": 7363 + }, + { + "word": "psycho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mentally unstable person (informal)", + "example_sentence_english": "He acted like a complete psycho during the argument.", + "pos": "noun", + "word_frequency": 7364 + }, + { + "word": "rainy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a lot of rain", + "example_sentence_english": "It's going to be a rainy day tomorrow.", + "pos": "adjective", + "word_frequency": 7365 + }, + { + "word": "renovation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of repairing and improving something", + "example_sentence_english": "The old house is undergoing a major renovation.", + "pos": "noun", + "word_frequency": 7366 + }, + { + "word": "reverend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a title for a member of the clergy", + "example_sentence_english": "The Reverend Smith delivered a powerful sermon.", + "pos": "noun", + "word_frequency": 7367 + }, + { + "word": "rust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a reddish-brown coating on iron", + "example_sentence_english": "The old car was covered in rust.", + "pos": "noun", + "word_frequency": 7368 + }, + { + "word": "salty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tasting of salt", + "example_sentence_english": "These chips are too salty for me.", + "pos": "adjective", + "word_frequency": 7369 + }, + { + "word": "scrutiny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "close examination", + "example_sentence_english": "The new policy came under close scrutiny.", + "pos": "noun", + "word_frequency": 7371 + }, + { + "word": "seizure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden attack of illness; the act of taking something", + "example_sentence_english": "The patient suffered a sudden seizure.", + "pos": "noun", + "word_frequency": 7372 + }, + { + "word": "serum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a clear liquid part of blood", + "example_sentence_english": "The doctor ordered a blood serum test.", + "pos": "noun", + "word_frequency": 7373 + }, + { + "word": "singular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unique; referring to one", + "example_sentence_english": "This is a singular opportunity that won't come again.", + "pos": "adjective", + "word_frequency": 7374 + }, + { + "word": "storyline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the plot of a story", + "example_sentence_english": "The movie has a very complex storyline.", + "pos": "noun", + "word_frequency": 7376 + }, + { + "word": "stray", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wander off", + "example_sentence_english": "Don't stray too far from the path.", + "pos": "verb", + "word_frequency": 7377 + }, + { + "word": "stud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male animal used for breeding; a small knob or projection", + "example_sentence_english": "The horse was a prize-winning stud.", + "pos": "noun", + "word_frequency": 7378 + }, + { + "word": "subsidy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "financial aid", + "example_sentence_english": "The government provides subsidies to farmers.", + "pos": "noun", + "word_frequency": 7379 + }, + { + "word": "supper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an evening meal", + "example_sentence_english": "We usually have supper around 7 PM.", + "pos": "noun", + "word_frequency": 7380 + }, + { + "word": "sweetheart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a loved one; a kind person", + "example_sentence_english": "Come here, sweetheart, I have something for you.", + "pos": "noun", + "word_frequency": 7381 + }, + { + "word": "systemic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a system as a whole", + "example_sentence_english": "There are systemic issues within the organization.", + "pos": "adjective", + "word_frequency": 7382 + }, + { + "word": "tempo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the speed of a piece of music or activity", + "example_sentence_english": "The band played the song at a fast tempo.", + "pos": "noun", + "word_frequency": 7383 + }, + { + "word": "thirsty", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "feeling a need to drink", + "example_sentence_english": "I'm so thirsty, I need a glass of water.", + "pos": "adjective", + "word_frequency": 7385 + }, + { + "word": "torch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a portable light", + "example_sentence_english": "We used a torch to find our way in the dark.", + "pos": "noun", + "word_frequency": 7386 + }, + { + "word": "turbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a turbocharger", + "example_sentence_english": "The car has a powerful turbo engine.", + "pos": "noun", + "word_frequency": 7388 + }, + { + "word": "unchanged", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not changed", + "example_sentence_english": "The situation remained unchanged despite our efforts.", + "pos": "adjective", + "word_frequency": 7389 + }, + { + "word": "understandable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be understood", + "example_sentence_english": "Her reasons for leaving were completely understandable.", + "pos": "adjective", + "word_frequency": 7390 + }, + { + "word": "upright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertical; honest", + "example_sentence_english": "Please keep the box upright.", + "pos": "adjective", + "word_frequency": 7391 + }, + { + "word": "uprising", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rebellion", + "example_sentence_english": "The government quickly suppressed the uprising.", + "pos": "noun", + "word_frequency": 7392 + }, + { + "word": "vain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceited; useless", + "example_sentence_english": "She is very vain about her appearance.", + "pos": "adjective", + "word_frequency": 7393 + }, + { + "word": "vanity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive pride in one's appearance or achievements", + "example_sentence_english": "His vanity was his biggest flaw.", + "pos": "noun", + "word_frequency": 7394 + }, + { + "word": "violin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a stringed musical instrument", + "example_sentence_english": "She plays the violin beautifully.", + "pos": "noun", + "word_frequency": 7395 + }, + { + "word": "whisper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft, low sound", + "example_sentence_english": "I heard a faint whisper from the next room.", + "pos": "noun", + "word_frequency": 7398 + }, + { + "word": "worthwhile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worth the time, money, or effort spent", + "example_sentence_english": "It was a worthwhile experience despite the challenges.", + "pos": "adjective", + "word_frequency": 7399 + }, + { + "word": "acceleration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the rate of change of velocity", + "example_sentence_english": "The car showed impressive acceleration from 0 to 60 mph.", + "pos": "noun", + "word_frequency": 7401 + }, + { + "word": "aerospace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of technology and industry concerned with both aviation and spaceflight", + "example_sentence_english": "The aerospace industry is constantly developing new technologies.", + "pos": "noun", + "word_frequency": 7402 + }, + { + "word": "aluminium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light, silvery-grey metal", + "example_sentence_english": "Many modern airplanes are made from aluminium.", + "pos": "noun", + "word_frequency": 7404 + }, + { + "word": "analog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or using signals or information represented by a continuously variable physical quantity", + "example_sentence_english": "I prefer the warm sound of analog records over digital music.", + "pos": "adjective", + "word_frequency": 7405 + }, + { + "word": "analytical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or using analysis or logical reasoning", + "example_sentence_english": "She has a very strong analytical mind, which helps her solve complex problems.", + "pos": "adjective", + "word_frequency": 7406 + }, + { + "word": "arcade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place with coin-operated games", + "example_sentence_english": "We spent the afternoon at the video game arcade.", + "pos": "noun", + "word_frequency": 7407 + }, + { + "word": "asthma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a respiratory condition marked by spasms in the bronchi of the lungs", + "example_sentence_english": "He carries an inhaler because he suffers from asthma.", + "pos": "noun", + "word_frequency": 7409 + }, + { + "word": "aurora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a natural electrical phenomenon characterized by light in the sky", + "example_sentence_english": "We hoped to see the aurora borealis during our trip to Norway.", + "pos": "noun", + "word_frequency": 7410 + }, + { + "word": "bacterial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or caused by bacteria", + "example_sentence_english": "The doctor prescribed antibiotics for the bacterial infection.", + "pos": "adjective", + "word_frequency": 7411 + }, + { + "word": "bankrupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declared in law unable to pay outstanding debts", + "example_sentence_english": "The company went bankrupt after several years of financial losses.", + "pos": "adjective", + "word_frequency": 7412 + }, + { + "word": "blink", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shut and open the eyes quickly", + "example_sentence_english": "She didn't even blink when she heard the surprising news.", + "pos": "verb", + "word_frequency": 7413 + }, + { + "word": "childish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "like a child in a bad sense; silly and immature", + "example_sentence_english": "His childish behavior annoyed everyone at the meeting.", + "pos": "adjective", + "word_frequency": 7417 + }, + { + "word": "chili", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small hot-tasting pod of a type of capsicum", + "example_sentence_english": "I like to add a little chili to my food for extra spice.", + "pos": "noun", + "word_frequency": 7418 + }, + { + "word": "coil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a length of something wound into a spiral or series of rings", + "example_sentence_english": "The electrical wire was neatly wound into a coil.", + "pos": "noun", + "word_frequency": 7420 + }, + { + "word": "constituent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of a constituency; a component part of something", + "example_sentence_english": "The senator met with her constituents to discuss local issues.", + "pos": "noun", + "word_frequency": 7421 + }, + { + "word": "contention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heated disagreement; an assertion, especially one maintained in argument", + "example_sentence_english": "The main point of contention was the budget allocation.", + "pos": "noun", + "word_frequency": 7422 + }, + { + "word": "covenant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an agreement; a contract", + "example_sentence_english": "They signed a covenant to protect the historic building.", + "pos": "noun", + "word_frequency": 7423 + }, + { + "word": "devotion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "love, loyalty, or enthusiasm for a person or activity", + "example_sentence_english": "Her devotion to her family was evident in everything she did.", + "pos": "noun", + "word_frequency": 7425 + }, + { + "word": "dilemma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a situation in which a difficult choice has to be made between two or more alternatives", + "example_sentence_english": "He faced a difficult dilemma: either miss the meeting or cancel his vacation.", + "pos": "noun", + "word_frequency": 7426 + }, + { + "word": "disgrace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loss of reputation or respect as the result of a dishonorable action", + "example_sentence_english": "His actions brought disgrace upon his family.", + "pos": "noun", + "word_frequency": 7428 + }, + { + "word": "emirate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the territory ruled by an emir", + "example_sentence_english": "Dubai is a well-known emirate in the UAE.", + "pos": "noun", + "word_frequency": 7430 + }, + { + "word": "ethnicity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the fact or state of belonging to a social group that has a common national or cultural tradition", + "example_sentence_english": "The survey asked about the participant's ethnicity.", + "pos": "noun", + "word_frequency": 7433 + }, + { + "word": "eventual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring at the end of or as a result of a process or period of time", + "example_sentence_english": "The eventual outcome of the negotiations was a peace treaty.", + "pos": "adjective", + "word_frequency": 7434 + }, + { + "word": "excel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "be exceptionally good at or proficient in an activity or subject", + "example_sentence_english": "She always strives to excel in her studies.", + "pos": "verb", + "word_frequency": 7435 + }, + { + "word": "flavour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the distinctive taste of a food or drink", + "example_sentence_english": "This ice cream has a delicious vanilla flavour.", + "pos": "noun", + "word_frequency": 7436 + }, + { + "word": "flex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bend (a limb or joint); contract (a muscle)", + "example_sentence_english": "He began to flex his muscles to show off his strength.", + "pos": "verb", + "word_frequency": 7437 + }, + { + "word": "genus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a principal taxonomic category that ranks above species and below family", + "example_sentence_english": "Lions and tigers belong to the same genus, Panthera.", + "pos": "noun", + "word_frequency": 7439 + }, + { + "word": "grape", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grape", + "example_sentence_english": "I like to eat green grapes.", + "pos": "noun", + "word_frequency": 7442 + }, + { + "word": "greed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greed", + "example_sentence_english": "His greed led him to make bad decisions.", + "pos": "noun", + "word_frequency": 7443 + }, + { + "word": "greet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to greet", + "example_sentence_english": "She always greets me with a smile.", + "pos": "verb", + "word_frequency": 7444 + }, + { + "word": "hose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hose", + "example_sentence_english": "He used the garden hose to water the plants.", + "pos": "noun", + "word_frequency": 7446 + }, + { + "word": "hq", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headquarters", + "example_sentence_english": "The company's HQ is located in New York.", + "pos": "noun", + "word_frequency": 7447 + }, + { + "word": "inflammation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflammation", + "example_sentence_english": "The doctor said the swelling was due to inflammation.", + "pos": "noun", + "word_frequency": 7448 + }, + { + "word": "ko", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knockout", + "example_sentence_english": "The boxer won by a KO in the third round.", + "pos": "noun", + "word_frequency": 7449 + }, + { + "word": "lava", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lava", + "example_sentence_english": "The volcano erupted, sending hot lava down its sides.", + "pos": "noun", + "word_frequency": 7451 + }, + { + "word": "longtime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long-standing", + "example_sentence_english": "They have been longtime friends.", + "pos": "adjective", + "word_frequency": 7453 + }, + { + "word": "magnet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnet", + "example_sentence_english": "A magnet can attract metal objects.", + "pos": "noun", + "word_frequency": 7455 + }, + { + "word": "metaphor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphor", + "example_sentence_english": "Life is a journey is a common metaphor.", + "pos": "noun", + "word_frequency": 7457 + }, + { + "word": "millionaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millionaire", + "example_sentence_english": "He became a millionaire by investing wisely.", + "pos": "noun", + "word_frequency": 7458 + }, + { + "word": "pact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pact, agreement", + "example_sentence_english": "They relentlessly pursued a peace pact.", + "pos": "noun", + "word_frequency": 7466 + }, + { + "word": "paramount", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paramount, supreme", + "example_sentence_english": "Safety is of paramount importance.", + "pos": "adjective", + "word_frequency": 7467 + }, + { + "word": "paranoid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoid", + "example_sentence_english": "He felt paranoid after watching the thriller.", + "pos": "adjective", + "word_frequency": 7468 + }, + { + "word": "patron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patron, supporter", + "example_sentence_english": "The museum thanked its generous patrons.", + "pos": "noun", + "word_frequency": 7469 + }, + { + "word": "popcorn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "popcorn", + "example_sentence_english": "We ate popcorn while watching the movie.", + "pos": "noun", + "word_frequency": 7471 + }, + { + "word": "positioning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of placing or arranging", + "example_sentence_english": "The company's strategic positioning in the market is crucial.", + "pos": "verb", + "word_frequency": 7472 + }, + { + "word": "proxy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proxy, substitute", + "example_sentence_english": "He voted by proxy because he couldn't attend the meeting.", + "pos": "noun", + "word_frequency": 7473 + }, + { + "word": "quantitative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantitative", + "example_sentence_english": "We need to conduct a quantitative analysis of the data.", + "pos": "adjective", + "word_frequency": 7474 + }, + { + "word": "regain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regain, to recover", + "example_sentence_english": "She hopes to regain her strength after the illness.", + "pos": "verb", + "word_frequency": 7475 + }, + { + "word": "resemble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resemble, to look like", + "example_sentence_english": "The child strongly resembles his father.", + "pos": "verb", + "word_frequency": 7476 + }, + { + "word": "retro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retro, vintage", + "example_sentence_english": "She loves wearing retro clothes from the 80s.", + "pos": "adjective", + "word_frequency": 7478 + }, + { + "word": "revolt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolt, rebellion", + "example_sentence_english": "The peasants staged a revolt against the king.", + "pos": "noun", + "word_frequency": 7479 + }, + { + "word": "saddle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a seat for a rider on a horse or bicycle", + "example_sentence_english": "He put the saddle on the horse.", + "pos": "noun", + "word_frequency": 7480 + }, + { + "word": "schooling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education received at school", + "example_sentence_english": "His early schooling prepared him for university.", + "pos": "noun", + "word_frequency": 7482 + }, + { + "word": "shrine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place regarded as holy", + "example_sentence_english": "They visited the ancient shrine.", + "pos": "noun", + "word_frequency": 7485 + }, + { + "word": "shrink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to become smaller", + "example_sentence_english": "My sweater will shrink if I wash it in hot water.", + "pos": "verb", + "word_frequency": 7486 + }, + { + "word": "sniper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who shoots from a hidden position", + "example_sentence_english": "The sniper aimed carefully at the target.", + "pos": "noun", + "word_frequency": 7487 + }, + { + "word": "solitary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done or existing alone", + "example_sentence_english": "He enjoys solitary walks in the woods.", + "pos": "adjective", + "word_frequency": 7488 + }, + { + "word": "sorrow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of deep distress caused by loss, disappointment, or other misfortune", + "example_sentence_english": "Her heart was filled with sorrow after the news.", + "pos": "noun", + "word_frequency": 7489 + }, + { + "word": "termination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of bringing something to an end", + "example_sentence_english": "The termination of the contract was unexpected.", + "pos": "noun", + "word_frequency": 7493 + }, + { + "word": "thigh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of the human leg between the hip and the knee", + "example_sentence_english": "He injured his thigh playing football.", + "pos": "noun", + "word_frequency": 7495 + }, + { + "word": "thrive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grow or develop well or vigorously", + "example_sentence_english": "The plants thrive in warm, sunny conditions.", + "pos": "verb", + "word_frequency": 7496 + }, + { + "word": "troll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mythical creature or someone who posts inflammatory messages online", + "example_sentence_english": "Don't feed the internet troll.", + "pos": "noun", + "word_frequency": 7498 + }, + { + "word": "uncover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove a cover from; to discover", + "example_sentence_english": "They hope to uncover the truth.", + "pos": "verb", + "word_frequency": 7500 + }, + { + "word": "unpaid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not yet paid", + "example_sentence_english": "He has a lot of unpaid bills.", + "pos": "adjective", + "word_frequency": 7501 + }, + { + "word": "unsuccessful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not achieving the desired aim or result", + "example_sentence_english": "Their attempt to climb the mountain was unsuccessful.", + "pos": "adjective", + "word_frequency": 7502 + }, + { + "word": "vest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sleeveless garment worn on the upper body", + "example_sentence_english": "He wore a warm vest under his jacket.", + "pos": "noun", + "word_frequency": 7504 + }, + { + "word": "vine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a climbing plant", + "example_sentence_english": "Grapes grow on a vine.", + "pos": "noun", + "word_frequency": 7505 + }, + { + "word": "warranty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a written guarantee, issued to the purchaser of an article by its manufacturer, promising to repair or replace it if necessary within a specified period", + "example_sentence_english": "The car comes with a three-year warranty.", + "pos": "noun", + "word_frequency": 7506 + }, + { + "word": "weaken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become weak", + "example_sentence_english": "The storm began to weaken as it moved inland.", + "pos": "verb", + "word_frequency": 7507 + }, + { + "word": "yen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the basic monetary unit of Japan", + "example_sentence_english": "The price is 5000 yen.", + "pos": "noun", + "word_frequency": 7510 + }, + { + "word": "airway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the passage by which air reaches a person's lungs; a route for aircraft", + "example_sentence_english": "The paramedic checked the patient's airway.", + "pos": "noun", + "word_frequency": 7512 + }, + { + "word": "aisle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a passage between rows of seats or shelves", + "example_sentence_english": "Please walk down the aisle to your seat.", + "pos": "noun", + "word_frequency": 7513 + }, + { + "word": "almighty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having unlimited power; all-powerful", + "example_sentence_english": "God is often referred to as the Almighty.", + "pos": "adjective", + "word_frequency": 7514 + }, + { + "word": "apparel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clothing", + "example_sentence_english": "The store sells athletic apparel.", + "pos": "noun", + "word_frequency": 7516 + }, + { + "word": "arbitration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the use of an arbitrator to settle a dispute", + "example_sentence_english": "The dispute was resolved through arbitration.", + "pos": "noun", + "word_frequency": 7517 + }, + { + "word": "artifact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an object made by a human being, typically an item of cultural or historical interest", + "example_sentence_english": "Archaeologists discovered ancient artifacts at the site.", + "pos": "noun", + "word_frequency": 7518 + }, + { + "word": "auburn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reddish-brown color", + "example_sentence_english": "Her long, auburn hair cascaded down her back.", + "pos": "noun", + "word_frequency": 7520 + }, + { + "word": "awakening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of waking up or becoming aware", + "example_sentence_english": "The trip was an awakening to new cultures.", + "pos": "noun", + "word_frequency": 7521 + }, + { + "word": "bilateral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving two sides or parties", + "example_sentence_english": "The two countries signed a bilateral agreement.", + "pos": "adjective", + "word_frequency": 7522 + }, + { + "word": "brace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device that holds something firmly or supports it", + "example_sentence_english": "He wore a knee brace after his injury.", + "pos": "noun", + "word_frequency": 7523 + }, + { + "word": "caption", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a title or explanation for a picture or illustration", + "example_sentence_english": "Read the caption under the photo for more details.", + "pos": "noun", + "word_frequency": 7524 + }, + { + "word": "choke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to have difficulty breathing because of something in your throat", + "example_sentence_english": "He started to choke on a piece of food.", + "pos": "verb", + "word_frequency": 7525 + }, + { + "word": "cholesterol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fatty substance found in the body", + "example_sentence_english": "Eating healthy can help manage your cholesterol levels.", + "pos": "noun", + "word_frequency": 7526 + }, + { + "word": "classy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stylish and sophisticated", + "example_sentence_english": "She looked very classy in her new dress.", + "pos": "adjective", + "word_frequency": 7527 + }, + { + "word": "conceal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hide something", + "example_sentence_english": "She tried to conceal her true feelings.", + "pos": "verb", + "word_frequency": 7529 + }, + { + "word": "confrontation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hostile or argumentative meeting or situation", + "example_sentence_english": "He avoided a direct confrontation with his boss.", + "pos": "noun", + "word_frequency": 7530 + }, + { + "word": "contributor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who gives or provides something", + "example_sentence_english": "She was a key contributor to the project.", + "pos": "noun", + "word_frequency": 7531 + }, + { + "word": "cpu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Central Processing Unit", + "example_sentence_english": "The CPU is the brain of the computer.", + "pos": "noun", + "word_frequency": 7532 + }, + { + "word": "deluxe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of a higher quality and more luxurious", + "example_sentence_english": "We booked a deluxe room with a view.", + "pos": "adjective", + "word_frequency": 7534 + }, + { + "word": "disguise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something worn to conceal one's identity", + "example_sentence_english": "He wore a clever disguise to the party.", + "pos": "noun", + "word_frequency": 7535 + }, + { + "word": "dismissal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of sending someone away or ending their employment", + "example_sentence_english": "Her dismissal from the company was unexpected.", + "pos": "noun", + "word_frequency": 7536 + }, + { + "word": "downstairs", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to or on a lower floor", + "example_sentence_english": "He went downstairs to get a drink.", + "pos": "adverb", + "word_frequency": 7537 + }, + { + "word": "empathy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to understand and share the feelings of another", + "example_sentence_english": "Showing empathy is crucial for good communication.", + "pos": "noun", + "word_frequency": 7538 + }, + { + "word": "ensemble", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of items or people viewed as a whole", + "example_sentence_english": "The musical ensemble performed beautifully.", + "pos": "noun", + "word_frequency": 7539 + }, + { + "word": "feasible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possible to do easily or conveniently", + "example_sentence_english": "It's a feasible plan, but it will require a lot of effort.", + "pos": "adjective", + "word_frequency": 7541 + }, + { + "word": "grease", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick, oily substance", + "example_sentence_english": "There was grease all over the engine.", + "pos": "noun", + "word_frequency": 7544 + }, + { + "word": "hallway", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a corridor or passage in a building", + "example_sentence_english": "The hallway was long and narrow.", + "pos": "noun", + "word_frequency": 7546 + }, + { + "word": "homosexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexually attracted to people of one's own sex", + "example_sentence_english": "The documentary explored homosexual relationships.", + "pos": "adjective", + "word_frequency": 7548 + }, + { + "word": "hydraulic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "operated by the pressure of a liquid", + "example_sentence_english": "The car lift uses a hydraulic system.", + "pos": "adjective", + "word_frequency": 7550 + }, + { + "word": "impulse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden strong urge or desire to act", + "example_sentence_english": "She bought the shoes on impulse.", + "pos": "noun", + "word_frequency": 7551 + }, + { + "word": "incapable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to do something", + "example_sentence_english": "He seemed incapable of understanding the instructions.", + "pos": "adjective", + "word_frequency": 7552 + }, + { + "word": "inflammatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing anger or strong emotion; or causing inflammation", + "example_sentence_english": "His inflammatory remarks caused a heated debate.", + "pos": "adjective", + "word_frequency": 7553 + }, + { + "word": "insanity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being seriously mentally ill; extreme foolishness", + "example_sentence_english": "The stress drove him to the brink of insanity.", + "pos": "noun", + "word_frequency": 7554 + }, + { + "word": "insecure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not confident or certain; not firmly fixed", + "example_sentence_english": "She felt insecure about her appearance.", + "pos": "adjective", + "word_frequency": 7555 + }, + { + "word": "knot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fastening made by tying a piece of string, rope, etc.", + "example_sentence_english": "He tied a knot in the rope.", + "pos": "noun", + "word_frequency": 7558 + }, + { + "word": "lebanese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Lebanon; or relating to Lebanon", + "example_sentence_english": "She met a Lebanese student at the university.", + "pos": "noun", + "word_frequency": 7559 + }, + { + "word": "lecturer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A university teacher.", + "example_sentence_english": "The lecturer explained the complex theory clearly.", + "pos": "noun", + "word_frequency": 7560 + }, + { + "word": "lust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Intense sexual desire or craving.", + "example_sentence_english": "His eyes showed a clear lust for power.", + "pos": "noun", + "word_frequency": 7561 + }, + { + "word": "mayo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mayonnaise.", + "example_sentence_english": "Do you want some mayo with your fries?", + "pos": "noun", + "word_frequency": 7563 + }, + { + "word": "microphone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An instrument for converting sound waves into electrical energy.", + "example_sentence_english": "The singer held the microphone close to her mouth.", + "pos": "noun", + "word_frequency": 7565 + }, + { + "word": "miniature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Much smaller than normal.", + "example_sentence_english": "She collected miniature dollhouse furniture.", + "pos": "adjective", + "word_frequency": 7566 + }, + { + "word": "motto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short sentence or phrase chosen as encapsulating the beliefs or ideals of an individual, family, or institution.", + "example_sentence_english": "\"Never give up\" is a good motto to live by.", + "pos": "noun", + "word_frequency": 7567 + }, + { + "word": "nationality", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The status of belonging to a particular nation.", + "example_sentence_english": "What is your nationality?", + "pos": "noun", + "word_frequency": 7568 + }, + { + "word": "occupational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to a job or profession.", + "example_sentence_english": "He suffered from an occupational hazard.", + "pos": "adjective", + "word_frequency": 7571 + }, + { + "word": "onset", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The beginning of something, especially something unpleasant.", + "example_sentence_english": "The onset of winter brought cold weather.", + "pos": "noun", + "word_frequency": 7573 + }, + { + "word": "persecution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hostility and ill-treatment, especially because of race or political or religious beliefs.", + "example_sentence_english": "Many refugees fled their country due to political persecution.", + "pos": "noun", + "word_frequency": 7575 + }, + { + "word": "petrol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Gasoline.", + "example_sentence_english": "I need to fill up the car with petrol.", + "pos": "noun", + "word_frequency": 7576 + }, + { + "word": "philosopher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person engaged or learned in philosophy.", + "example_sentence_english": "Aristotle was a famous Greek philosopher.", + "pos": "noun", + "word_frequency": 7577 + }, + { + "word": "pixel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A minute area of illumination on a display screen, one of many from which an image is composed.", + "example_sentence_english": "The image was blurry because it had too few pixels.", + "pos": "noun", + "word_frequency": 7578 + }, + { + "word": "plantation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An estate on which crops such as coffee, sugar, or tobacco are cultivated by resident labor.", + "example_sentence_english": "The old plantation house was surrounded by cotton fields.", + "pos": "noun", + "word_frequency": 7579 + }, + { + "word": "prose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Written or spoken language in its ordinary form, without metrical structure.", + "example_sentence_english": "Her writing style was clear and concise prose.", + "pos": "noun", + "word_frequency": 7580 + }, + { + "word": "prostitution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The practice or occupation of engaging in sexual activity with someone for payment.", + "example_sentence_english": "Prostitution is illegal in many countries.", + "pos": "noun", + "word_frequency": 7581 + }, + { + "word": "radioactive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Emitting radiation.", + "example_sentence_english": "The waste material was highly radioactive.", + "pos": "adjective", + "word_frequency": 7582 + }, + { + "word": "razor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An instrument with a sharp blade or blades, used for shaving.", + "example_sentence_english": "He used a sharp razor to shave his beard.", + "pos": "noun", + "word_frequency": 7583 + }, + { + "word": "realization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An act of becoming aware of something.", + "example_sentence_english": "The sudden realization of her mistake made her blush.", + "pos": "noun", + "word_frequency": 7584 + }, + { + "word": "reconciliation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The restoration of friendly relations.", + "example_sentence_english": "After years of conflict, they finally achieved reconciliation.", + "pos": "noun", + "word_frequency": 7585 + }, + { + "word": "reunite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Come together again after a period of separation.", + "example_sentence_english": "The family was overjoyed to reunite after the war.", + "pos": "verb", + "word_frequency": 7586 + }, + { + "word": "rug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A floor covering of thick woven material or animal skin, typically not extending over the entire floor.", + "example_sentence_english": "There was a soft rug in front of the fireplace.", + "pos": "noun", + "word_frequency": 7588 + }, + { + "word": "slogan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short and striking or memorable phrase used in advertising or politics.", + "example_sentence_english": "The company's new slogan is \"Think Different.\"", + "pos": "noun", + "word_frequency": 7590 + }, + { + "word": "sponsorship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act of providing financial support for an event, activity, or person.", + "example_sentence_english": "The event received generous sponsorship from local businesses.", + "pos": "noun", + "word_frequency": 7591 + }, + { + "word": "strawberry", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "A sweet soft red fruit with a seed-studded surface.", + "example_sentence_english": "I love eating fresh strawberries with cream.", + "pos": "noun", + "word_frequency": 7593 + }, + { + "word": "strive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Make great efforts to achieve or obtain something.", + "example_sentence_english": "We must strive for excellence in everything we do.", + "pos": "verb", + "word_frequency": 7594 + }, + { + "word": "sunglass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Glasses tinted to protect the eyes from sunlight.", + "example_sentence_english": "He put on his sunglasses before going out into the bright sun.", + "pos": "noun", + "word_frequency": 7595 + }, + { + "word": "temptation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The desire to do something, especially something wrong or unwise.", + "example_sentence_english": "She resisted the temptation to eat the whole cake.", + "pos": "noun", + "word_frequency": 7597 + }, + { + "word": "tile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A thin slab of ceramic, stone, or concrete, used for covering roofs, floors, or walls.", + "example_sentence_english": "The bathroom floor was covered with white tiles.", + "pos": "noun", + "word_frequency": 7598 + }, + { + "word": "tonne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A unit of mass equal to 1,000 kilograms (2,204.6 pounds).", + "example_sentence_english": "The truck can carry up to ten tonnes of cargo.", + "pos": "noun", + "word_frequency": 7599 + }, + { + "word": "tow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pull (something) behind", + "example_sentence_english": "The truck had to tow the broken-down car.", + "pos": "verb", + "word_frequency": 7600 + }, + { + "word": "unarmed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without weapons", + "example_sentence_english": "The police officer approached the unarmed suspect cautiously.", + "pos": "adjective", + "word_frequency": 7602 + }, + { + "word": "undertaking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a task or enterprise", + "example_sentence_english": "Building the bridge was a massive undertaking.", + "pos": "noun", + "word_frequency": 7603 + }, + { + "word": "unfinished", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not completed", + "example_sentence_english": "The painting was still unfinished when the exhibition opened.", + "pos": "adjective", + "word_frequency": 7604 + }, + { + "word": "unhealthy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not good for health", + "example_sentence_english": "Eating too much fast food is unhealthy.", + "pos": "adjective", + "word_frequency": 7605 + }, + { + "word": "unlawful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegal", + "example_sentence_english": "It is unlawful to park here without a permit.", + "pos": "adjective", + "word_frequency": 7606 + }, + { + "word": "unpopular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not liked by many people", + "example_sentence_english": "The new policy proved to be very unpopular with the public.", + "pos": "adjective", + "word_frequency": 7607 + }, + { + "word": "vanish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappear suddenly", + "example_sentence_english": "The magician made the rabbit vanish from the hat.", + "pos": "verb", + "word_frequency": 7610 + }, + { + "word": "verb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a word that describes an action, state, or occurrence", + "example_sentence_english": "In the sentence \"She sings beautifully,\" \"sings\" is the verb.", + "pos": "noun", + "word_frequency": 7611 + }, + { + "word": "volatile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unstable; likely to change rapidly and unpredictably", + "example_sentence_english": "The stock market can be very volatile.", + "pos": "adjective", + "word_frequency": 7614 + }, + { + "word": "abnormal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not normal", + "example_sentence_english": "The doctor noticed an abnormal growth.", + "pos": "adjective", + "word_frequency": 7617 + }, + { + "word": "accredit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "officially recognize or authorize", + "example_sentence_english": "The university is accredited by a national board.", + "pos": "verb", + "word_frequency": 7618 + }, + { + "word": "ample", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enough or more than enough", + "example_sentence_english": "There was ample time to finish the project.", + "pos": "adjective", + "word_frequency": 7620 + }, + { + "word": "analogy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a comparison between two things", + "example_sentence_english": "He drew an analogy between the human heart and a pump.", + "pos": "noun", + "word_frequency": 7621 + }, + { + "word": "apex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the top or highest part", + "example_sentence_english": "The climber reached the apex of the mountain.", + "pos": "noun", + "word_frequency": 7622 + }, + { + "word": "apocalypse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a catastrophic event", + "example_sentence_english": "Many movies depict a post-apocalypse world.", + "pos": "noun", + "word_frequency": 7623 + }, + { + "word": "appliance", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device or piece of equipment", + "example_sentence_english": "We bought a new kitchen appliance, a toaster.", + "pos": "noun", + "word_frequency": 7624 + }, + { + "word": "backward", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "towards the rear", + "example_sentence_english": "He took a step backward to avoid the puddle.", + "pos": "adverb", + "word_frequency": 7625 + }, + { + "word": "badass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tough, impressive, or intimidating", + "example_sentence_english": "That superhero is a total badass.", + "pos": "adjective", + "word_frequency": 7626 + }, + { + "word": "bingo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a game of chance; an exclamation of success", + "example_sentence_english": "She shouted \"Bingo!\" when she got five in a row.", + "pos": "noun", + "word_frequency": 7628 + }, + { + "word": "boiler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for heating water", + "example_sentence_english": "The old boiler needed to be replaced.", + "pos": "noun", + "word_frequency": 7629 + }, + { + "word": "boulder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large rock", + "example_sentence_english": "A large boulder blocked the road.", + "pos": "noun", + "word_frequency": 7631 + }, + { + "word": "calf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a young cow; the back part of the human leg", + "example_sentence_english": "The calf stayed close to its mother.", + "pos": "noun", + "word_frequency": 7633 + }, + { + "word": "commentator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who provides a commentary", + "example_sentence_english": "The sports commentator described the game live.", + "pos": "noun", + "word_frequency": 7638 + }, + { + "word": "consolidation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of combining a number of things into a single more effective or coherent whole", + "example_sentence_english": "The company announced the consolidation of its two smaller offices into one large headquarters.", + "pos": "noun", + "word_frequency": 7639 + }, + { + "word": "continuation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of continuing or being continued", + "example_sentence_english": "The continuation of the project depends on funding.", + "pos": "noun", + "word_frequency": 7640 + }, + { + "word": "convoy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of vehicles or ships traveling together", + "example_sentence_english": "A convoy of trucks delivered the supplies.", + "pos": "noun", + "word_frequency": 7641 + }, + { + "word": "cork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stopper for a bottle, made of cork", + "example_sentence_english": "She pulled the cork out of the wine bottle.", + "pos": "noun", + "word_frequency": 7642 + }, + { + "word": "cosmetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to beauty or appearance", + "example_sentence_english": "The changes were purely cosmetic and didn't affect performance.", + "pos": "adjective", + "word_frequency": 7643 + }, + { + "word": "cubic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the shape of a cube", + "example_sentence_english": "The box had a volume of one cubic meter.", + "pos": "adjective", + "word_frequency": 7644 + }, + { + "word": "descendant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person, plant, or animal that is descended from a particular ancestor", + "example_sentence_english": "He is a direct descendant of the founder of the city.", + "pos": "noun", + "word_frequency": 7647 + }, + { + "word": "detector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device designed to discover the presence of something", + "example_sentence_english": "The smoke detector started beeping loudly.", + "pos": "noun", + "word_frequency": 7648 + }, + { + "word": "digest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compilation or summary of information", + "example_sentence_english": "The magazine publishes a monthly digest of news.", + "pos": "noun", + "word_frequency": 7649 + }, + { + "word": "diplomacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the profession, activity, or skill of managing international relations", + "example_sentence_english": "The conflict was resolved through careful diplomacy.", + "pos": "noun", + "word_frequency": 7650 + }, + { + "word": "directive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official or authoritative instruction", + "example_sentence_english": "The new directive came from the CEO.", + "pos": "noun", + "word_frequency": 7651 + }, + { + "word": "disadvantage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an unfavorable circumstance or condition", + "example_sentence_english": "The main disadvantage of the plan is its cost.", + "pos": "noun", + "word_frequency": 7652 + }, + { + "word": "disruption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbance or problems interrupting an event, activity, or process", + "example_sentence_english": "The strike caused widespread disruption to travel.", + "pos": "noun", + "word_frequency": 7653 + }, + { + "word": "downward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards a lower place or level", + "example_sentence_english": "The stock market moved downward today.", + "pos": "adverb", + "word_frequency": 7654 + }, + { + "word": "ebook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an electronic book", + "example_sentence_english": "I prefer reading an ebook on my tablet.", + "pos": "noun", + "word_frequency": 7655 + }, + { + "word": "emphasize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give special importance or prominence to something", + "example_sentence_english": "The teacher wanted to emphasize the importance of reading.", + "pos": "verb", + "word_frequency": 7657 + }, + { + "word": "energetic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showing or involving great activity or vitality", + "example_sentence_english": "The children were very energetic after their nap.", + "pos": "adjective", + "word_frequency": 7658 + }, + { + "word": "fest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a festival or celebration", + "example_sentence_english": "We are going to the music fest this weekend.", + "pos": "noun", + "word_frequency": 7659 + }, + { + "word": "friction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the resistance that one surface or object encounters when moving over another", + "example_sentence_english": "There was a lot of friction between the two departments.", + "pos": "noun", + "word_frequency": 7660 + }, + { + "word": "funk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of depression or a style of music", + "example_sentence_english": "He's been in a bit of a funk lately.", + "pos": "noun", + "word_frequency": 7661 + }, + { + "word": "hacker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who uses computers to gain unauthorized access to data", + "example_sentence_english": "The company hired an expert to protect against hackers.", + "pos": "noun", + "word_frequency": 7662 + }, + { + "word": "hazardous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risky; dangerous", + "example_sentence_english": "Working with these chemicals is hazardous.", + "pos": "adjective", + "word_frequency": 7663 + }, + { + "word": "hopeless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling or causing despair about something", + "example_sentence_english": "The situation seemed hopeless, but they kept trying.", + "pos": "adjective", + "word_frequency": 7665 + }, + { + "word": "hourly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "every hour", + "example_sentence_english": "The bus runs hourly from the station.", + "pos": "adverb", + "word_frequency": 7666 + }, + { + "word": "indirectly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not directly", + "example_sentence_english": "He indirectly hinted at his resignation.", + "pos": "adverb", + "word_frequency": 7668 + }, + { + "word": "induction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of inducting someone to a position or organization", + "example_sentence_english": "The new employees went through an induction program.", + "pos": "noun", + "word_frequency": 7669 + }, + { + "word": "infrared", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to electromagnetic radiation with wavelengths longer than those of visible light", + "example_sentence_english": "The remote control uses infrared signals.", + "pos": "adjective", + "word_frequency": 7670 + }, + { + "word": "instability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being unstable", + "example_sentence_english": "The country is facing political instability.", + "pos": "noun", + "word_frequency": 7671 + }, + { + "word": "linguistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to language or linguistics", + "example_sentence_english": "She has a strong interest in linguistic diversity.", + "pos": "adjective", + "word_frequency": 7678 + }, + { + "word": "listener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who listens", + "example_sentence_english": "The radio host thanked his loyal listeners.", + "pos": "noun", + "word_frequency": 7679 + }, + { + "word": "litter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trash, waste", + "example_sentence_english": "Please don't drop litter on the street.", + "pos": "noun", + "word_frequency": 7680 + }, + { + "word": "lump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, irregular piece", + "example_sentence_english": "There was a small lump in the sugar.", + "pos": "noun", + "word_frequency": 7682 + }, + { + "word": "macro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "large-scale", + "example_sentence_english": "We need to consider the macro economic trends.", + "pos": "adjective", + "word_frequency": 7683 + }, + { + "word": "mag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magazine (informal)", + "example_sentence_english": "I picked up a new fashion mag at the store.", + "pos": "noun", + "word_frequency": 7684 + }, + { + "word": "magistrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a civil officer who administers the law", + "example_sentence_english": "The magistrate heard the case in court.", + "pos": "noun", + "word_frequency": 7685 + }, + { + "word": "marginal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slight, not central", + "example_sentence_english": "The difference in performance was marginal.", + "pos": "adjective", + "word_frequency": 7686 + }, + { + "word": "masculine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to men; strong", + "example_sentence_english": "He has a very masculine voice.", + "pos": "adjective", + "word_frequency": 7687 + }, + { + "word": "milestone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a significant stage or event", + "example_sentence_english": "Finishing the project was a major milestone for the team.", + "pos": "noun", + "word_frequency": 7688 + }, + { + "word": "mug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large cup", + "example_sentence_english": "I like to drink my coffee from a big mug.", + "pos": "noun", + "word_frequency": 7689 + }, + { + "word": "municipality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a city or town with its own local government", + "example_sentence_english": "The municipality is responsible for waste collection.", + "pos": "noun", + "word_frequency": 7690 + }, + { + "word": "mushroom", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of fungus", + "example_sentence_english": "We picked some wild mushrooms in the forest.", + "pos": "noun", + "word_frequency": 7691 + }, + { + "word": "neuron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a nerve cell", + "example_sentence_english": "The brain is made up of billions of neurons.", + "pos": "noun", + "word_frequency": 7694 + }, + { + "word": "ninety", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "90", + "example_sentence_english": "She will be ninety years old next month.", + "pos": "numeral", + "word_frequency": 7695 + }, + { + "word": "nutrient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that provides nourishment", + "example_sentence_english": "Plants absorb nutrients from the soil.", + "pos": "noun", + "word_frequency": 7696 + }, + { + "word": "observatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a building for observing astronomical phenomena", + "example_sentence_english": "We visited the observatory to look at the stars.", + "pos": "noun", + "word_frequency": 7697 + }, + { + "word": "outdoors", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "outside", + "example_sentence_english": "We love spending time outdoors.", + "pos": "adverb", + "word_frequency": 7699 + }, + { + "word": "pedestrian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person walking", + "example_sentence_english": "The pedestrian crossed the street carefully.", + "pos": "noun", + "word_frequency": 7700 + }, + { + "word": "penetration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of entering or passing through", + "example_sentence_english": "The company achieved significant market penetration.", + "pos": "noun", + "word_frequency": 7701 + }, + { + "word": "pod", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small group or container", + "example_sentence_english": "The whales swam in a large pod.", + "pos": "noun", + "word_frequency": 7702 + }, + { + "word": "preferably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideally, by preference", + "example_sentence_english": "Please arrive on time, preferably a few minutes early.", + "pos": "adverb", + "word_frequency": 7703 + }, + { + "word": "prophecy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prediction of the future", + "example_sentence_english": "The ancient prophecy spoke of a great hero.", + "pos": "noun", + "word_frequency": 7704 + }, + { + "word": "proudly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a proud manner", + "example_sentence_english": "She proudly displayed her award.", + "pos": "adverb", + "word_frequency": 7705 + }, + { + "word": "recorder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for recording sound or images", + "example_sentence_english": "He used a voice recorder to capture the interview.", + "pos": "noun", + "word_frequency": 7706 + }, + { + "word": "recur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to happen again", + "example_sentence_english": "The problem tends to recur every spring.", + "pos": "verb", + "word_frequency": 7707 + }, + { + "word": "relaxation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest, recreation", + "example_sentence_english": "After a long day, I need some relaxation.", + "pos": "noun", + "word_frequency": 7708 + }, + { + "word": "respectable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worthy of respect", + "example_sentence_english": "He comes from a respectable family.", + "pos": "adjective", + "word_frequency": 7709 + }, + { + "word": "respectful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showing respect", + "example_sentence_english": "Please be respectful to your elders.", + "pos": "adjective", + "word_frequency": 7710 + }, + { + "word": "routinely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regularly, as a matter of routine", + "example_sentence_english": "He routinely checks his email first thing in the morning.", + "pos": "adverb", + "word_frequency": 7715 + }, + { + "word": "salute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gesture of respect", + "example_sentence_english": "The soldiers gave a crisp salute to the officer.", + "pos": "noun", + "word_frequency": 7716 + }, + { + "word": "scum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a layer of impurities; worthless people", + "example_sentence_english": "There was a layer of green scum on the pond.", + "pos": "noun", + "word_frequency": 7717 + }, + { + "word": "severity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriousness, harshness", + "example_sentence_english": "The severity of the storm caused widespread damage.", + "pos": "noun", + "word_frequency": 7719 + }, + { + "word": "shady", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing shade; of questionable character", + "example_sentence_english": "The park has many shady trees where you can relax.", + "pos": "adjective", + "word_frequency": 7720 + }, + { + "word": "slack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not taut or held tightly; lacking in activity or energy", + "example_sentence_english": "The rope went slack.", + "pos": "adjective", + "word_frequency": 7721 + }, + { + "word": "slick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smooth and slippery; operating or performing with great efficiency and skill", + "example_sentence_english": "The road was slick with ice.", + "pos": "adjective", + "word_frequency": 7722 + }, + { + "word": "spontaneous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring as a result of a sudden inner impulse", + "example_sentence_english": "Her laughter was spontaneous and infectious.", + "pos": "adjective", + "word_frequency": 7724 + }, + { + "word": "sticker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an adhesive label or decal", + "example_sentence_english": "My daughter loves collecting stickers.", + "pos": "noun", + "word_frequency": 7725 + }, + { + "word": "stove", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an apparatus for cooking or heating", + "example_sentence_english": "She put the kettle on the stove to boil water.", + "pos": "noun", + "word_frequency": 7726 + }, + { + "word": "template", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pre-designed format or pattern", + "example_sentence_english": "Use this template to create your presentation.", + "pos": "noun", + "word_frequency": 7728 + }, + { + "word": "theorem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a proposition that can be proved", + "example_sentence_english": "Pythagoras' theorem is fundamental in geometry.", + "pos": "noun", + "word_frequency": 7730 + }, + { + "word": "tract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of land; a short treatise", + "example_sentence_english": "They own a large tract of forest.", + "pos": "noun", + "word_frequency": 7733 + }, + { + "word": "tribune", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official in ancient Rome; a popular leader; a newspaper", + "example_sentence_english": "The newspaper is called 'The Chicago Tribune'.", + "pos": "noun", + "word_frequency": 7735 + }, + { + "word": "unexpectedly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that was not expected or foreseen", + "example_sentence_english": "The rain started unexpectedly.", + "pos": "adverb", + "word_frequency": 7737 + }, + { + "word": "vista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pleasing view, especially one seen through a long, narrow opening", + "example_sentence_english": "The hotel room offered a stunning vista of the mountains.", + "pos": "noun", + "word_frequency": 7740 + }, + { + "word": "vogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the prevailing fashion or style at a particular time", + "example_sentence_english": "That style of dress is currently in vogue.", + "pos": "noun", + "word_frequency": 7741 + }, + { + "word": "volcanic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or produced by a volcano", + "example_sentence_english": "The island has a volcanic origin.", + "pos": "adjective", + "word_frequency": 7742 + }, + { + "word": "wildly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an uncontrolled or unrestrained manner", + "example_sentence_english": "The crowd cheered wildly.", + "pos": "adverb", + "word_frequency": 7744 + }, + { + "word": "acclaim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise enthusiastically and publicly", + "example_sentence_english": "The critics acclaimed the new play.", + "pos": "verb", + "word_frequency": 7745 + }, + { + "word": "accumulate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gather or acquire an increasing number or quantity of", + "example_sentence_english": "Dust tends to accumulate in corners.", + "pos": "verb", + "word_frequency": 7746 + }, + { + "word": "adore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "love and respect deeply", + "example_sentence_english": "I adore my grandchildren.", + "pos": "verb", + "word_frequency": 7747 + }, + { + "word": "akin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of similar character", + "example_sentence_english": "Her situation is akin to mine.", + "pos": "adjective", + "word_frequency": 7749 + }, + { + "word": "alphabet", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a set of letters or symbols in a fixed order", + "example_sentence_english": "The English alphabet has 26 letters.", + "pos": "noun", + "word_frequency": 7750 + }, + { + "word": "apprentice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is learning a trade from a skilled employer", + "example_sentence_english": "He started his career as an apprentice carpenter.", + "pos": "noun", + "word_frequency": 7751 + }, + { + "word": "baseline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a starting point for comparison", + "example_sentence_english": "We need to establish a baseline for our measurements.", + "pos": "noun", + "word_frequency": 7753 + }, + { + "word": "beware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "be cautious and alert to risks or dangers", + "example_sentence_english": "Beware of the dog.", + "pos": "verb", + "word_frequency": 7755 + }, + { + "word": "bikini", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a two-piece swimsuit for women", + "example_sentence_english": "She wore a bright red bikini to the beach.", + "pos": "noun", + "word_frequency": 7757 + }, + { + "word": "bisexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexually attracted to both men and women", + "example_sentence_english": "The character in the show is openly bisexual.", + "pos": "adjective", + "word_frequency": 7758 + }, + { + "word": "boulevard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a broad street in a city, usually having trees or greenery", + "example_sentence_english": "We drove down the tree-lined boulevard.", + "pos": "noun", + "word_frequency": 7759 + }, + { + "word": "bracelet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bracelet", + "example_sentence_english": "She wore a beautiful silver bracelet on her wrist.", + "pos": "noun", + "word_frequency": 7760 + }, + { + "word": "capsule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capsule", + "example_sentence_english": "Take one capsule with water before meals.", + "pos": "noun", + "word_frequency": 7761 + }, + { + "word": "captive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captive", + "example_sentence_english": "The escaped captive was quickly recaptured.", + "pos": "noun", + "word_frequency": 7762 + }, + { + "word": "chronicle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chronicle", + "example_sentence_english": "The book is a chronicle of the events of the past century.", + "pos": "noun", + "word_frequency": 7766 + }, + { + "word": "cinnamon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cinnamon", + "example_sentence_english": "She added a pinch of cinnamon to the apple pie.", + "pos": "noun", + "word_frequency": 7767 + }, + { + "word": "comprehend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comprehend", + "example_sentence_english": "It's difficult to comprehend the full extent of the damage.", + "pos": "verb", + "word_frequency": 7768 + }, + { + "word": "compulsory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsory", + "example_sentence_english": "Attendance at the meeting is compulsory for all staff.", + "pos": "adjective", + "word_frequency": 7769 + }, + { + "word": "confederate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confederate", + "example_sentence_english": "He was accused of being a confederate in the crime.", + "pos": "noun", + "word_frequency": 7770 + }, + { + "word": "contaminate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contaminate", + "example_sentence_english": "The spilled chemicals could contaminate the water supply.", + "pos": "verb", + "word_frequency": 7771 + }, + { + "word": "contamination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contamination", + "example_sentence_english": "They worked to prevent further contamination of the site.", + "pos": "noun", + "word_frequency": 7772 + }, + { + "word": "creed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creed", + "example_sentence_english": "The organization's creed emphasizes honesty and integrity.", + "pos": "noun", + "word_frequency": 7774 + }, + { + "word": "crisp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crisp", + "example_sentence_english": "The autumn air was crisp and cool.", + "pos": "adjective", + "word_frequency": 7775 + }, + { + "word": "crust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crust", + "example_sentence_english": "The pizza had a thick, golden crust.", + "pos": "noun", + "word_frequency": 7776 + }, + { + "word": "cutter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cutter", + "example_sentence_english": "He used a box cutter to open the package.", + "pos": "noun", + "word_frequency": 7777 + }, + { + "word": "daring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daring", + "example_sentence_english": "It was a daring attempt to climb the mountain without ropes.", + "pos": "adjective", + "word_frequency": 7778 + }, + { + "word": "dietary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dietary", + "example_sentence_english": "She has some strict dietary restrictions.", + "pos": "adjective", + "word_frequency": 7779 + }, + { + "word": "dissertation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissertation", + "example_sentence_english": "He spent a year writing his doctoral dissertation.", + "pos": "noun", + "word_frequency": 7780 + }, + { + "word": "domination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "domination", + "example_sentence_english": "The team's domination of the league was clear.", + "pos": "noun", + "word_frequency": 7781 + }, + { + "word": "expel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expel", + "example_sentence_english": "The school decided to expel the student for cheating.", + "pos": "verb", + "word_frequency": 7785 + }, + { + "word": "fin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fin", + "example_sentence_english": "The shark's fin cut through the water.", + "pos": "noun", + "word_frequency": 7786 + }, + { + "word": "flora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flora", + "example_sentence_english": "The island is known for its unique flora and fauna.", + "pos": "noun", + "word_frequency": 7787 + }, + { + "word": "fracture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fracture", + "example_sentence_english": "He suffered a hairline fracture in his leg.", + "pos": "noun", + "word_frequency": 7788 + }, + { + "word": "functionality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "functionality", + "example_sentence_english": "The new software offers improved functionality.", + "pos": "noun", + "word_frequency": 7790 + }, + { + "word": "gamma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gamma", + "example_sentence_english": "Gamma rays are a form of electromagnetic radiation.", + "pos": "noun", + "word_frequency": 7791 + }, + { + "word": "gaze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gaze", + "example_sentence_english": "Her gaze was fixed on the distant horizon.", + "pos": "noun", + "word_frequency": 7792 + }, + { + "word": "genome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genome", + "example_sentence_english": "Scientists are working to map the human genome.", + "pos": "noun", + "word_frequency": 7793 + }, + { + "word": "gravel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gravel", + "example_sentence_english": "The driveway was covered in loose gravel.", + "pos": "noun", + "word_frequency": 7794 + }, + { + "word": "haircut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "haircut", + "example_sentence_english": "I need to get a haircut soon.", + "pos": "noun", + "word_frequency": 7795 + }, + { + "word": "highland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highland", + "example_sentence_english": "They hiked through the rugged highland terrain.", + "pos": "noun", + "word_frequency": 7797 + }, + { + "word": "hustle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hustle", + "example_sentence_english": "The city's constant hustle and bustle can be exhausting.", + "pos": "noun", + "word_frequency": 7798 + }, + { + "word": "idle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not working; lazy", + "example_sentence_english": "He spent the whole day idle, doing nothing.", + "pos": "adjective", + "word_frequency": 7801 + }, + { + "word": "indictment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a formal accusation", + "example_sentence_english": "The grand jury issued an indictment against the suspect.", + "pos": "noun", + "word_frequency": 7802 + }, + { + "word": "irregular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not regular or even", + "example_sentence_english": "The shape of the table was irregular.", + "pos": "adjective", + "word_frequency": 7803 + }, + { + "word": "juicy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of juice; interesting", + "example_sentence_english": "The orange was very juicy and sweet.", + "pos": "adjective", + "word_frequency": 7804 + }, + { + "word": "jumper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sweater (UK); a person who jumps", + "example_sentence_english": "It's cold, so I'll wear a warm jumper.", + "pos": "noun", + "word_frequency": 7805 + }, + { + "word": "mammal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a warm-blooded vertebrate animal", + "example_sentence_english": "Humans are mammals, as are dogs and cats.", + "pos": "noun", + "word_frequency": 7808 + }, + { + "word": "manually", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by hand; not automatically", + "example_sentence_english": "He had to manually enter all the data.", + "pos": "adverb", + "word_frequency": 7809 + }, + { + "word": "meaningless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without meaning or purpose", + "example_sentence_english": "The conversation felt completely meaningless.", + "pos": "adjective", + "word_frequency": 7810 + }, + { + "word": "millennium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of one thousand years", + "example_sentence_english": "The year 2000 marked the start of a new millennium.", + "pos": "noun", + "word_frequency": 7811 + }, + { + "word": "misunderstanding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a failure to understand something correctly", + "example_sentence_english": "There was a misunderstanding about the meeting time.", + "pos": "noun", + "word_frequency": 7812 + }, + { + "word": "moody", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "often changing moods; gloomy", + "example_sentence_english": "He can be quite moody sometimes, happy one minute, sad the next.", + "pos": "adjective", + "word_frequency": 7813 + }, + { + "word": "noodle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strip of pasta or similar dough", + "example_sentence_english": "I love to eat chicken noodle soup.", + "pos": "noun", + "word_frequency": 7815 + }, + { + "word": "oracle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that gives wise advice", + "example_sentence_english": "She was considered an oracle of fashion advice.", + "pos": "noun", + "word_frequency": 7816 + }, + { + "word": "overlap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shared area or period", + "example_sentence_english": "There's a significant overlap between their interests.", + "pos": "noun", + "word_frequency": 7817 + }, + { + "word": "peek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quick look", + "example_sentence_english": "She took a quick peek at the presents.", + "pos": "noun", + "word_frequency": 7819 + }, + { + "word": "pentagon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a five-sided polygon; US Department of Defense building", + "example_sentence_english": "A stop sign is shaped like an octagon, not a pentagon.", + "pos": "noun", + "word_frequency": 7820 + }, + { + "word": "pottery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objects made from clay and fired", + "example_sentence_english": "She enjoys making pottery in her free time.", + "pos": "noun", + "word_frequency": 7826 + }, + { + "word": "prairie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large open area of grassland", + "example_sentence_english": "Buffalo once roamed freely across the vast prairies.", + "pos": "noun", + "word_frequency": 7827 + }, + { + "word": "prank", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a practical joke or mischievous act", + "example_sentence_english": "They played a harmless prank on their friend.", + "pos": "noun", + "word_frequency": 7828 + }, + { + "word": "premature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happening or done before the usual or proper time", + "example_sentence_english": "The baby was born prematurely, at 30 weeks.", + "pos": "adjective", + "word_frequency": 7829 + }, + { + "word": "psychiatrist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical doctor specializing in mental illness", + "example_sentence_english": "She decided to see a psychiatrist for her anxiety.", + "pos": "noun", + "word_frequency": 7830 + }, + { + "word": "quartz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard mineral", + "example_sentence_english": "The watch has a quartz movement, making it very accurate.", + "pos": "noun", + "word_frequency": 7832 + }, + { + "word": "residency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the period of specialized medical training; legal right to live somewhere", + "example_sentence_english": "After medical school, she began her residency in pediatrics.", + "pos": "noun", + "word_frequency": 7834 + }, + { + "word": "responsive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reacting quickly and positively", + "example_sentence_english": "The company is very responsive to customer feedback.", + "pos": "adjective", + "word_frequency": 7835 + }, + { + "word": "roar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a deep, loud sound", + "example_sentence_english": "We heard the roar of the lion from a distance.", + "pos": "noun", + "word_frequency": 7836 + }, + { + "word": "rot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of decaying; nonsense", + "example_sentence_english": "The old wood was starting to show signs of rot.", + "pos": "noun", + "word_frequency": 7839 + }, + { + "word": "songwriter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who writes songs", + "example_sentence_english": "She is a talented songwriter and musician.", + "pos": "noun", + "word_frequency": 7845 + }, + { + "word": "spear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a weapon with a long shaft and a pointed tip", + "example_sentence_english": "Ancient warriors used a spear in battle.", + "pos": "noun", + "word_frequency": 7847 + }, + { + "word": "stimulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of encouraging something to develop or become more active", + "example_sentence_english": "The brain needs constant stimulation to stay active.", + "pos": "noun", + "word_frequency": 7849 + }, + { + "word": "strand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave someone in a place from which they cannot get away", + "example_sentence_english": "The car broke down, leaving us stranded on the highway.", + "pos": "verb", + "word_frequency": 7850 + }, + { + "word": "stylish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fashionable and elegant", + "example_sentence_english": "She always wears very stylish clothes.", + "pos": "adjective", + "word_frequency": 7851 + }, + { + "word": "technician", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person skilled in the practical application of a science or art", + "example_sentence_english": "The computer technician fixed my laptop quickly.", + "pos": "noun", + "word_frequency": 7853 + }, + { + "word": "tidal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or affected by tides", + "example_sentence_english": "The beach is affected by strong tidal currents.", + "pos": "adjective", + "word_frequency": 7854 + }, + { + "word": "transcript", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a written or printed version of material originally presented in another medium", + "example_sentence_english": "I need a transcript of my academic records.", + "pos": "noun", + "word_frequency": 7855 + }, + { + "word": "trench", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow ditch", + "example_sentence_english": "Soldiers dug a trench for protection during the war.", + "pos": "noun", + "word_frequency": 7856 + }, + { + "word": "trouser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a garment covering the body from the waist to the ankles, with a separate part for each leg", + "example_sentence_english": "He bought a new pair of trousers for the event.", + "pos": "noun", + "word_frequency": 7857 + }, + { + "word": "unwilling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not ready, eager, or prepared to do something", + "example_sentence_english": "She was unwilling to accept the compromise.", + "pos": "adjective", + "word_frequency": 7858 + }, + { + "word": "validity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being legally or officially acceptable", + "example_sentence_english": "The validity of the contract was questioned.", + "pos": "noun", + "word_frequency": 7861 + }, + { + "word": "varsity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main team representing a university, college, or school", + "example_sentence_english": "He played on the varsity basketball team.", + "pos": "noun", + "word_frequency": 7862 + }, + { + "word": "verification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of establishing the truth, accuracy, or validity of something", + "example_sentence_english": "The verification of your identity is required.", + "pos": "noun", + "word_frequency": 7863 + }, + { + "word": "vow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a solemn promise", + "example_sentence_english": "They exchanged wedding vows at the ceremony.", + "pos": "noun", + "word_frequency": 7864 + }, + { + "word": "vulnerability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being exposed to the possibility of being attacked or harmed", + "example_sentence_english": "His emotional vulnerability made him relatable.", + "pos": "noun", + "word_frequency": 7865 + }, + { + "word": "wrath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extreme anger", + "example_sentence_english": "The king's wrath was feared throughout the land.", + "pos": "noun", + "word_frequency": 7869 + }, + { + "word": "yuan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the basic monetary unit of China", + "example_sentence_english": "The price of the item is 50 yuan.", + "pos": "noun", + "word_frequency": 7870 + }, + { + "word": "zen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Japanese school of Mahayana Buddhism emphasizing the value of meditation and intuition", + "example_sentence_english": "He practices Zen meditation to find inner peace.", + "pos": "noun", + "word_frequency": 7871 + }, + { + "word": "aide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an assistant to an important person, especially a political leader", + "example_sentence_english": "A presidential aide announced the new policy.", + "pos": "noun", + "word_frequency": 7873 + }, + { + "word": "allegiance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loyalty or commitment of a subordinate to a superior or of an individual to a group or cause", + "example_sentence_english": "Citizens pledge allegiance to their country.", + "pos": "noun", + "word_frequency": 7874 + }, + { + "word": "apt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate or suitable in the circumstances", + "example_sentence_english": "That was an apt description of the situation.", + "pos": "adjective", + "word_frequency": 7875 + }, + { + "word": "avatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an icon or figure representing a particular person in a video game, internet forum, etc.", + "example_sentence_english": "She created a unique avatar for her online profile.", + "pos": "noun", + "word_frequency": 7876 + }, + { + "word": "bead", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, often round, piece of material, such as glass or wood, that is pierced for stringing or threading", + "example_sentence_english": "She wore a necklace made of colorful beads.", + "pos": "noun", + "word_frequency": 7879 + }, + { + "word": "beverage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drink", + "example_sentence_english": "Please choose your preferred beverage from the menu.", + "pos": "noun", + "word_frequency": 7880 + }, + { + "word": "blaze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very large or fierce fire", + "example_sentence_english": "The firefighters quickly extinguished the blaze.", + "pos": "noun", + "word_frequency": 7881 + }, + { + "word": "broadband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high-speed internet connection", + "example_sentence_english": "We need a faster broadband connection for streaming.", + "pos": "noun", + "word_frequency": 7884 + }, + { + "word": "bumper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bar fixed across the front or back of a motor vehicle to protect it in a collision", + "example_sentence_english": "The car's bumper was damaged in the accident.", + "pos": "noun", + "word_frequency": 7885 + }, + { + "word": "chalk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft white porous limestone", + "example_sentence_english": "The teacher wrote on the blackboard with chalk.", + "pos": "noun", + "word_frequency": 7887 + }, + { + "word": "coaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mat or disk used to protect a surface from a hot or wet glass", + "example_sentence_english": "Please use a coaster to protect the table.", + "pos": "noun", + "word_frequency": 7888 + }, + { + "word": "constituency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a body of voters in a specified area who elect a representative", + "example_sentence_english": "Each constituency elects one Member of Parliament.", + "pos": "noun", + "word_frequency": 7889 + }, + { + "word": "contingent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of people united by some common feature", + "example_sentence_english": "A large contingent of fans traveled to the away game.", + "pos": "noun", + "word_frequency": 7890 + }, + { + "word": "councillor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a council", + "example_sentence_english": "The local councillor addressed the community meeting.", + "pos": "noun", + "word_frequency": 7892 + }, + { + "word": "cyclist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who rides a bicycle", + "example_sentence_english": "The cyclist wore a helmet for safety.", + "pos": "noun", + "word_frequency": 7893 + }, + { + "word": "deprive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevent (a person or place) from having or using something", + "example_sentence_english": "Lack of sleep can deprive you of energy.", + "pos": "verb", + "word_frequency": 7894 + }, + { + "word": "diplomat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official representing a country abroad", + "example_sentence_english": "The diplomat worked to improve relations between the two nations.", + "pos": "noun", + "word_frequency": 7895 + }, + { + "word": "entirety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the whole of something", + "example_sentence_english": "He read the book in its entirety.", + "pos": "noun", + "word_frequency": 7897 + }, + { + "word": "everytime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on every occasion", + "example_sentence_english": "Everytime I visit, I learn something new.", + "pos": "adverb", + "word_frequency": 7898 + }, + { + "word": "exodus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mass departure of people", + "example_sentence_english": "There was a mass exodus from the city before the storm.", + "pos": "noun", + "word_frequency": 7899 + }, + { + "word": "fallout", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the adverse side effects or results of a situation", + "example_sentence_english": "The political fallout from the scandal was significant.", + "pos": "noun", + "word_frequency": 7900 + }, + { + "word": "fishery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where fish are caught or bred", + "example_sentence_english": "The local fishery provides fresh seafood to restaurants.", + "pos": "noun", + "word_frequency": 7901 + }, + { + "word": "flock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of birds or sheep", + "example_sentence_english": "A flock of birds flew overhead.", + "pos": "noun", + "word_frequency": 7902 + }, + { + "word": "flyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small handbill advertising an event or product", + "example_sentence_english": "They handed out flyers for the concert.", + "pos": "noun", + "word_frequency": 7903 + }, + { + "word": "footballer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who plays football", + "example_sentence_english": "The young footballer dreamed of playing professionally.", + "pos": "noun", + "word_frequency": 7904 + }, + { + "word": "footstep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the sound or mark made by a foot in walking", + "example_sentence_english": "She heard footsteps approaching the door.", + "pos": "noun", + "word_frequency": 7905 + }, + { + "word": "forestry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the science or practice of planting, managing, and caring for forests", + "example_sentence_english": "Forestry is important for sustainable timber production.", + "pos": "noun", + "word_frequency": 7906 + }, + { + "word": "ghetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a part of a city, especially a slum area, occupied by a minority group", + "example_sentence_english": "The term 'ghetto' originally referred to Jewish quarters in European cities.", + "pos": "noun", + "word_frequency": 7907 + }, + { + "word": "grim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forbidding or uninviting in appearance", + "example_sentence_english": "The news was grim, indicating a difficult road ahead.", + "pos": "adjective", + "word_frequency": 7908 + }, + { + "word": "helpless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unable to defend oneself or to act without help", + "example_sentence_english": "He felt helpless watching the situation unfold.", + "pos": "adjective", + "word_frequency": 7909 + }, + { + "word": "hemisphere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a half of the earth, usually divided into northern and southern halves", + "example_sentence_english": "Australia is located in the Southern Hemisphere.", + "pos": "noun", + "word_frequency": 7910 + }, + { + "word": "hyper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely active or energetic", + "example_sentence_english": "The child was hyper after eating too much candy.", + "pos": "adjective", + "word_frequency": 7912 + }, + { + "word": "inconvenience", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trouble or difficulty caused to one's personal requirements or comfort", + "example_sentence_english": "We apologize for any inconvenience this may cause.", + "pos": "noun", + "word_frequency": 7913 + }, + { + "word": "inject", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introduce (a liquid, especially a drug or vaccine) into the body with a syringe", + "example_sentence_english": "The doctor will inject the vaccine into your arm.", + "pos": "verb", + "word_frequency": 7914 + }, + { + "word": "insure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrange for compensation in the event of damage to or loss of property", + "example_sentence_english": "You should insure your car against theft.", + "pos": "verb", + "word_frequency": 7915 + }, + { + "word": "intrigue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arouse the curiosity or interest of; fascinate", + "example_sentence_english": "The mystery novel truly intrigued me.", + "pos": "verb", + "word_frequency": 7916 + }, + { + "word": "invasive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to spread harmfully", + "example_sentence_english": "Invasive species can harm local ecosystems.", + "pos": "adjective", + "word_frequency": 7917 + }, + { + "word": "iq", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Intelligence Quotient", + "example_sentence_english": "An IQ test measures a person's cognitive abilities.", + "pos": "noun", + "word_frequency": 7919 + }, + { + "word": "irrigation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the supply of water to land or crops to help growth", + "example_sentence_english": "The new irrigation system significantly improved crop yields.", + "pos": "noun", + "word_frequency": 7920 + }, + { + "word": "killing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of causing death", + "example_sentence_english": "The police are investigating the killing.", + "pos": "noun", + "word_frequency": 7922 + }, + { + "word": "lastly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finally; in the last place", + "example_sentence_english": "Lastly, I would like to thank everyone for their hard work.", + "pos": "adverb", + "word_frequency": 7923 + }, + { + "word": "lipstick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cosmetic for coloring the lips", + "example_sentence_english": "She applied a bright red lipstick before leaving.", + "pos": "noun", + "word_frequency": 7924 + }, + { + "word": "manipulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to control or influence skillfully, especially in an unfair way", + "example_sentence_english": "He tried to manipulate the situation to his advantage.", + "pos": "verb", + "word_frequency": 7926 + }, + { + "word": "mart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a market or trading center", + "example_sentence_english": "The cattle mart was busy on auction day.", + "pos": "noun", + "word_frequency": 7927 + }, + { + "word": "midland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the middle part of a country or region", + "example_sentence_english": "The river flows through the midland region.", + "pos": "noun", + "word_frequency": 7930 + }, + { + "word": "midway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the middle of the way or distance", + "example_sentence_english": "They stopped midway through their journey for a break.", + "pos": "adverb", + "word_frequency": 7931 + }, + { + "word": "moist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slightly wet", + "example_sentence_english": "The cake was deliciously moist.", + "pos": "adjective", + "word_frequency": 7932 + }, + { + "word": "monarch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sovereign head of state, especially a king, queen, or emperor", + "example_sentence_english": "The monarch delivered a speech to the nation.", + "pos": "noun", + "word_frequency": 7933 + }, + { + "word": "mourning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the expression of sorrow for someone's death", + "example_sentence_english": "The family was in deep mourning after the loss.", + "pos": "noun", + "word_frequency": 7935 + }, + { + "word": "mustard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pungent yellow or brown paste made from mustard seeds, used as a condiment", + "example_sentence_english": "Would you like some mustard with your hot dog?", + "pos": "noun", + "word_frequency": 7937 + }, + { + "word": "negatively", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a negative way; unfavorably", + "example_sentence_english": "The news affected him negatively.", + "pos": "adverb", + "word_frequency": 7938 + }, + { + "word": "persona", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the aspect of someone's character that is presented to or perceived by others", + "example_sentence_english": "He adopted a confident persona for his public appearances.", + "pos": "noun", + "word_frequency": 7943 + }, + { + "word": "plaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ornamental tablet, typically of metal, porcelain, or wood, fixed to a wall or other surface in commemoration of a person or event", + "example_sentence_english": "A bronze plaque was installed to honor the founder.", + "pos": "noun", + "word_frequency": 7944 + }, + { + "word": "poetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of poetry or poets", + "example_sentence_english": "Her writing style is very poetic and expressive.", + "pos": "adjective", + "word_frequency": 7947 + }, + { + "word": "preach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliver a religious sermon or address", + "example_sentence_english": "The minister will preach about forgiveness on Sunday.", + "pos": "verb", + "word_frequency": 7948 + }, + { + "word": "purity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being pure", + "example_sentence_english": "The purity of the water was tested.", + "pos": "noun", + "word_frequency": 7950 + }, + { + "word": "rabbi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Jewish scholar or teacher, especially one who studies or teaches Jewish law", + "example_sentence_english": "The rabbi led the congregation in prayer.", + "pos": "noun", + "word_frequency": 7951 + }, + { + "word": "realism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the attitude or practice of accepting a situation as it is and being prepared to deal with it accordingly", + "example_sentence_english": "His paintings are known for their stark realism.", + "pos": "noun", + "word_frequency": 7953 + }, + { + "word": "scoop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short handle with a deep, bowl-shaped container, used for lifting and moving loose materials", + "example_sentence_english": "She used a scoop to serve the ice cream.", + "pos": "noun", + "word_frequency": 7956 + }, + { + "word": "scrub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of rubbing something hard to clean it", + "example_sentence_english": "The doctor gave the area a good scrub before the injection.", + "pos": "noun", + "word_frequency": 7958 + }, + { + "word": "sew", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to join, fasten, or repair by making stitches with a needle and thread or a sewing machine", + "example_sentence_english": "My grandmother taught me how to sew a button.", + "pos": "verb", + "word_frequency": 7959 + }, + { + "word": "shale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of rock", + "example_sentence_english": "The cliffs were made of dark shale.", + "pos": "noun", + "word_frequency": 7960 + }, + { + "word": "shin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front part of the leg below the knee", + "example_sentence_english": "He kicked his shin on the table leg.", + "pos": "noun", + "word_frequency": 7961 + }, + { + "word": "shooting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of firing a gun or taking photos", + "example_sentence_english": "There was a shooting incident downtown.", + "pos": "noun", + "word_frequency": 7962 + }, + { + "word": "simplify", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make something easier to understand or do", + "example_sentence_english": "Please simplify the instructions.", + "pos": "verb", + "word_frequency": 7963 + }, + { + "word": "sol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sun (especially in astronomy)", + "example_sentence_english": "The Martian rover has been active for many sols.", + "pos": "noun", + "word_frequency": 7964 + }, + { + "word": "solicitor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lawyer", + "example_sentence_english": "She consulted a solicitor about her property dispute.", + "pos": "noun", + "word_frequency": 7965 + }, + { + "word": "sophomore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a second-year student", + "example_sentence_english": "He is a sophomore at the university.", + "pos": "noun", + "word_frequency": 7966 + }, + { + "word": "squadron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit of military aircraft or ships", + "example_sentence_english": "The squadron of fighter jets flew overhead.", + "pos": "noun", + "word_frequency": 7967 + }, + { + "word": "squirrel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small bushy-tailed rodent", + "example_sentence_english": "A squirrel ran up the tree.", + "pos": "noun", + "word_frequency": 7968 + }, + { + "word": "stigma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mark of disgrace", + "example_sentence_english": "There is still a social stigma attached to mental illness.", + "pos": "noun", + "word_frequency": 7970 + }, + { + "word": "taco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a Mexican dish", + "example_sentence_english": "We had tacos for dinner last night.", + "pos": "noun", + "word_frequency": 7971 + }, + { + "word": "takeover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of gaining control of a company", + "example_sentence_english": "The company announced a hostile takeover bid.", + "pos": "noun", + "word_frequency": 7972 + }, + { + "word": "tinder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dry, flammable material", + "example_sentence_english": "He gathered some dry leaves and twigs for tinder.", + "pos": "noun", + "word_frequency": 7975 + }, + { + "word": "traitor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who betrays", + "example_sentence_english": "He was accused of being a traitor to his country.", + "pos": "noun", + "word_frequency": 7976 + }, + { + "word": "underestimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estimate too low", + "example_sentence_english": "Don't underestimate the power of a good book.", + "pos": "verb", + "word_frequency": 7977 + }, + { + "word": "wallpaper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "decorative paper for walls", + "example_sentence_english": "We decided to put up new wallpaper in the living room.", + "pos": "noun", + "word_frequency": 7979 + }, + { + "word": "willow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of tree", + "example_sentence_english": "The willow tree grew by the river.", + "pos": "noun", + "word_frequency": 7982 + }, + { + "word": "ale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of beer", + "example_sentence_english": "He ordered a pint of ale at the pub.", + "pos": "noun", + "word_frequency": 7984 + }, + { + "word": "archaeological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to archaeology", + "example_sentence_english": "They discovered an important archaeological site.", + "pos": "adjective", + "word_frequency": 7986 + }, + { + "word": "bathe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wash oneself", + "example_sentence_english": "She likes to bathe in warm water.", + "pos": "verb", + "word_frequency": 7988 + }, + { + "word": "betrayal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of betraying", + "example_sentence_english": "His betrayal of trust was unforgivable.", + "pos": "noun", + "word_frequency": 7990 + }, + { + "word": "bound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a limit or boundary", + "example_sentence_english": "The dog cleared the fence in a single bound.", + "pos": "noun", + "word_frequency": 7991 + }, + { + "word": "cardiovascular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the heart and blood vessels", + "example_sentence_english": "Regular exercise improves cardiovascular health.", + "pos": "adjective", + "word_frequency": 7993 + }, + { + "word": "chic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stylish and elegant", + "example_sentence_english": "She looked very chic in her new dress.", + "pos": "adjective", + "word_frequency": 7994 + }, + { + "word": "clone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an exact copy", + "example_sentence_english": "Scientists successfully created a clone of the animal.", + "pos": "noun", + "word_frequency": 7995 + }, + { + "word": "communal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shared by all members of a community", + "example_sentence_english": "They share a communal kitchen in the dormitory.", + "pos": "adjective", + "word_frequency": 7996 + }, + { + "word": "consortium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of companies or organizations", + "example_sentence_english": "A consortium of universities is funding the research.", + "pos": "noun", + "word_frequency": 7997 + }, + { + "word": "countdown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of counting backwards to zero", + "example_sentence_english": "The countdown to the rocket launch began.", + "pos": "noun", + "word_frequency": 7998 + }, + { + "word": "courier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who delivers messages or packages", + "example_sentence_english": "The courier delivered the package this morning.", + "pos": "noun", + "word_frequency": 7999 + }, + { + "word": "disastrous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing great damage or failure", + "example_sentence_english": "The party was a disastrous failure.", + "pos": "adjective", + "word_frequency": 8001 + }, + { + "word": "drummer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who plays the drums", + "example_sentence_english": "The band's new drummer is very talented.", + "pos": "noun", + "word_frequency": 8002 + }, + { + "word": "durable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to withstand wear, pressure, or damage", + "example_sentence_english": "This material is very durable and will last a long time.", + "pos": "adjective", + "word_frequency": 8003 + }, + { + "word": "efficacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to produce a desired or intended result", + "example_sentence_english": "The efficacy of the new drug is still being studied.", + "pos": "noun", + "word_frequency": 8004 + }, + { + "word": "exaggerate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to represent something as being larger, better, or worse than it really is", + "example_sentence_english": "Don't exaggerate; it wasn't that bad.", + "pos": "verb", + "word_frequency": 8007 + }, + { + "word": "exclusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process or state of excluding or being excluded", + "example_sentence_english": "The exclusion of certain groups from the event caused controversy.", + "pos": "noun", + "word_frequency": 8008 + }, + { + "word": "filipino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of the Philippines", + "example_sentence_english": "She met a friendly Filipino on her trip.", + "pos": "noun", + "word_frequency": 8009 + }, + { + "word": "freelance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working for different companies at different times rather than being permanently employed by one company", + "example_sentence_english": "He works as a freelance graphic designer.", + "pos": "adjective", + "word_frequency": 8010 + }, + { + "word": "gin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a clear alcoholic spirit distilled from grain or malt and flavored with juniper berries", + "example_sentence_english": "Would you like a gin and tonic?", + "pos": "noun", + "word_frequency": 8012 + }, + { + "word": "greeting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a polite word or sign of welcome or recognition", + "example_sentence_english": "She gave a warm greeting to all the guests.", + "pos": "noun", + "word_frequency": 8013 + }, + { + "word": "hawaiian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of Hawaii", + "example_sentence_english": "Many Hawaiians are proud of their culture.", + "pos": "noun", + "word_frequency": 8014 + }, + { + "word": "honeymoon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a holiday taken by a newly married couple", + "example_sentence_english": "They went to Paris for their honeymoon.", + "pos": "noun", + "word_frequency": 8015 + }, + { + "word": "ignition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of setting something on fire or starting to burn", + "example_sentence_english": "He turned the key in the ignition.", + "pos": "noun", + "word_frequency": 8016 + }, + { + "word": "impair", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to weaken or damage something (especially a human faculty or function)", + "example_sentence_english": "Smoking can seriously impair your health.", + "pos": "verb", + "word_frequency": 8017 + }, + { + "word": "investigative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designed to find out the truth about something", + "example_sentence_english": "The newspaper published an investigative report on the scandal.", + "pos": "adjective", + "word_frequency": 8018 + }, + { + "word": "jewel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a precious stone, typically a diamond, emerald, ruby, or sapphire, used in jewelry", + "example_sentence_english": "She wore a beautiful jewel around her neck.", + "pos": "noun", + "word_frequency": 8020 + }, + { + "word": "manifest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clear or obvious to the eye or mind", + "example_sentence_english": "His joy was manifest in his smile.", + "pos": "adjective", + "word_frequency": 8023 + }, + { + "word": "mutually", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a mutual or shared manner", + "example_sentence_english": "They agreed to help each other mutually.", + "pos": "adverb", + "word_frequency": 8027 + }, + { + "word": "navigate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plan and direct the route or course of a ship, aircraft, or other form of transport, especially by using instruments or maps", + "example_sentence_english": "It's difficult to navigate without a map.", + "pos": "verb", + "word_frequency": 8028 + }, + { + "word": "obese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grossly fat or overweight", + "example_sentence_english": "The doctor warned him that he was becoming obese.", + "pos": "adjective", + "word_frequency": 8030 + }, + { + "word": "outreach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the extent or length of reaching out", + "example_sentence_english": "The charity's outreach program helps many homeless people.", + "pos": "noun", + "word_frequency": 8031 + }, + { + "word": "pandemic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disease prevalent over a whole country or the world", + "example_sentence_english": "The world faced a severe pandemic last year.", + "pos": "noun", + "word_frequency": 8032 + }, + { + "word": "perimeter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the continuous line forming the boundary of a closed geometric figure", + "example_sentence_english": "The police secured the perimeter of the building.", + "pos": "noun", + "word_frequency": 8033 + }, + { + "word": "pike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large predatory freshwater fish", + "example_sentence_english": "He caught a large pike in the lake.", + "pos": "noun", + "word_frequency": 8034 + }, + { + "word": "piper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays the pipes, especially bagpipes", + "example_sentence_english": "The piper played a traditional Scottish tune.", + "pos": "noun", + "word_frequency": 8035 + }, + { + "word": "preacher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who preaches, especially a minister of religion", + "example_sentence_english": "The preacher delivered a powerful sermon.", + "pos": "noun", + "word_frequency": 8036 + }, + { + "word": "procurement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of obtaining or procuring something", + "example_sentence_english": "The company is responsible for the procurement of raw materials.", + "pos": "noun", + "word_frequency": 8037 + }, + { + "word": "protector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that protects someone or something", + "example_sentence_english": "He acted as a protector for his younger sister.", + "pos": "noun", + "word_frequency": 8038 + }, + { + "word": "pulp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soft, wet, shapeless mass of material", + "example_sentence_english": "The oranges were squeezed into a thick pulp.", + "pos": "noun", + "word_frequency": 8039 + }, + { + "word": "ransom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sum of money demanded or paid for the release of a captive", + "example_sentence_english": "The kidnappers demanded a large ransom for the safe return of the child.", + "pos": "noun", + "word_frequency": 8040 + }, + { + "word": "reel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cylinder on which film, wire, or thread is wound", + "example_sentence_english": "He carefully wound the fishing line onto the reel.", + "pos": "noun", + "word_frequency": 8041 + }, + { + "word": "rehearsal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a practice or trial performance of a play, concert, or other work", + "example_sentence_english": "The band had one final rehearsal before the big concert.", + "pos": "noun", + "word_frequency": 8043 + }, + { + "word": "restart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to start again", + "example_sentence_english": "If the computer freezes, you should restart it.", + "pos": "verb", + "word_frequency": 8044 + }, + { + "word": "revive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring back to life or consciousness", + "example_sentence_english": "The paramedics tried to revive the unconscious man.", + "pos": "verb", + "word_frequency": 8045 + }, + { + "word": "rigorous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely thorough, exhaustive, or accurate", + "example_sentence_english": "The selection process was extremely rigorous, testing candidates on many skills.", + "pos": "adjective", + "word_frequency": 8046 + }, + { + "word": "scarf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of fabric worn around the neck, head, or shoulders for warmth, fashion, or religious reasons", + "example_sentence_english": "She wore a warm scarf to protect her neck from the cold.", + "pos": "noun", + "word_frequency": 8048 + }, + { + "word": "scenery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the natural features of a landscape considered in terms of their appearance", + "example_sentence_english": "The train journey offered breathtaking scenery of mountains and lakes.", + "pos": "noun", + "word_frequency": 8049 + }, + { + "word": "sensory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to sensation or the physical senses", + "example_sentence_english": "The child had a heightened sensory perception, noticing every small detail.", + "pos": "adjective", + "word_frequency": 8050 + }, + { + "word": "sidewalk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a paved path for pedestrians at the side of a road", + "example_sentence_english": "Please walk on the sidewalk to stay safe from traffic.", + "pos": "noun", + "word_frequency": 8051 + }, + { + "word": "skeptical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not easily convinced; having doubts or reservations", + "example_sentence_english": "He remained skeptical about the politician's promises.", + "pos": "adjective", + "word_frequency": 8052 + }, + { + "word": "sleepy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "needing sleep; tired", + "example_sentence_english": "The baby was very sleepy after a long day of playing.", + "pos": "adjective", + "word_frequency": 8054 + }, + { + "word": "smoothly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that is even and regular, without sudden movements or changes", + "example_sentence_english": "The car drove smoothly along the newly paved road.", + "pos": "adverb", + "word_frequency": 8055 + }, + { + "word": "staple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a basic or essential item of food, clothing, or other commodity", + "example_sentence_english": "Rice is a staple food in many Asian countries.", + "pos": "noun", + "word_frequency": 8056 + }, + { + "word": "stereotype", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a widely held but fixed and oversimplified image or idea of a particular type of person or thing", + "example_sentence_english": "It's important to challenge harmful stereotypes about different cultures.", + "pos": "noun", + "word_frequency": 8058 + }, + { + "word": "stun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to astonish or shock (someone) so that they are temporarily unable to react", + "example_sentence_english": "The news of his resignation stunned everyone in the office.", + "pos": "verb", + "word_frequency": 8059 + }, + { + "word": "suppression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of suppressing something", + "example_sentence_english": "The government ordered the suppression of the protest.", + "pos": "noun", + "word_frequency": 8060 + }, + { + "word": "sushi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a Japanese dish consisting of small balls or rolls of vinegar-flavored cold rice", + "example_sentence_english": "We went to a Japanese restaurant and ordered some sushi.", + "pos": "noun", + "word_frequency": 8061 + }, + { + "word": "swell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become larger or rounder in size, typically as a result of an accumulation of fluid or air", + "example_sentence_english": "Her ankle began to swell after she twisted it.", + "pos": "verb", + "word_frequency": 8063 + }, + { + "word": "terminology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the body of terms used with a particular technical application in a subject of study, theory, profession, etc.", + "example_sentence_english": "Understanding the correct terminology is crucial in legal studies.", + "pos": "noun", + "word_frequency": 8064 + }, + { + "word": "theatrical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to acting, actors, or the theater", + "example_sentence_english": "The actor's performance was very theatrical and dramatic.", + "pos": "adjective", + "word_frequency": 8065 + }, + { + "word": "timer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device that measures and indicates time, especially one that can be set to ring an alarm at a particular time", + "example_sentence_english": "She set the kitchen timer for 20 minutes to bake the cookies.", + "pos": "noun", + "word_frequency": 8066 + }, + { + "word": "traveller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who travels or is traveling", + "example_sentence_english": "The experienced traveller knew how to pack light for long trips.", + "pos": "noun", + "word_frequency": 8067 + }, + { + "word": "turnout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the number of people attending or taking part in an event", + "example_sentence_english": "The turnout for the concert was much higher than expected.", + "pos": "noun", + "word_frequency": 8068 + }, + { + "word": "unanimous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of two or more people) fully in agreement", + "example_sentence_english": "The jury reached a unanimous verdict after hours of deliberation.", + "pos": "adjective", + "word_frequency": 8069 + }, + { + "word": "unpredictable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be foreseen or known in advance; uncertain", + "example_sentence_english": "The weather in this region is very unpredictable.", + "pos": "adjective", + "word_frequency": 8070 + }, + { + "word": "validation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of checking or proving the validity or accuracy of something", + "example_sentence_english": "The experiment provided validation for the new theory.", + "pos": "noun", + "word_frequency": 8071 + }, + { + "word": "vengeance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "punishment inflicted or retribution exacted for an injury or wrong", + "example_sentence_english": "He swore to take vengeance on those who had wronged him.", + "pos": "noun", + "word_frequency": 8072 + }, + { + "word": "visually", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a visual way; in terms of sight", + "example_sentence_english": "The presentation was visually appealing with colorful charts.", + "pos": "adverb", + "word_frequency": 8074 + }, + { + "word": "activism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the policy or action of using vigorous campaigning to bring about political or social change", + "example_sentence_english": "Environmental activism has led to significant policy changes.", + "pos": "noun", + "word_frequency": 8079 + }, + { + "word": "advent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrival; beginning", + "example_sentence_english": "The advent of the internet changed everything.", + "pos": "noun", + "word_frequency": 8080 + }, + { + "word": "airborne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carried by air", + "example_sentence_english": "The disease is airborne.", + "pos": "adjective", + "word_frequency": 8081 + }, + { + "word": "astonish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surprise greatly", + "example_sentence_english": "His talent continues to astonish me.", + "pos": "verb", + "word_frequency": 8083 + }, + { + "word": "bakery", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a place where bread and cakes are made or sold", + "example_sentence_english": "I bought fresh bread at the bakery.", + "pos": "noun", + "word_frequency": 8085 + }, + { + "word": "barracks", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a building or group of buildings used to house soldiers", + "example_sentence_english": "The soldiers returned to the barracks after training.", + "pos": "noun", + "word_frequency": 8086 + }, + { + "word": "believer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who believes in something", + "example_sentence_english": "She is a strong believer in education.", + "pos": "noun", + "word_frequency": 8088 + }, + { + "word": "bunker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an underground shelter", + "example_sentence_english": "They took shelter in the bunker during the storm.", + "pos": "noun", + "word_frequency": 8089 + }, + { + "word": "caffeine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stimulant found in coffee and tea", + "example_sentence_english": "I need some caffeine to wake up.", + "pos": "noun", + "word_frequency": 8090 + }, + { + "word": "chaotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a state of complete confusion and disorder", + "example_sentence_english": "The traffic was chaotic after the accident.", + "pos": "adjective", + "word_frequency": 8092 + }, + { + "word": "charger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device for charging a battery", + "example_sentence_english": "I forgot my phone charger at home.", + "pos": "noun", + "word_frequency": 8093 + }, + { + "word": "commercially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to commerce or business", + "example_sentence_english": "The product was not commercially successful.", + "pos": "adverb", + "word_frequency": 8094 + }, + { + "word": "coward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who lacks courage", + "example_sentence_english": "He was called a coward for running away.", + "pos": "noun", + "word_frequency": 8096 + }, + { + "word": "dent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a slight hollow in a surface", + "example_sentence_english": "There's a small dent in the car door.", + "pos": "noun", + "word_frequency": 8099 + }, + { + "word": "diminish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become less", + "example_sentence_english": "The pain began to diminish after an hour.", + "pos": "verb", + "word_frequency": 8100 + }, + { + "word": "dove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of bird, often a symbol of peace", + "example_sentence_english": "A white dove flew over the garden.", + "pos": "noun", + "word_frequency": 8102 + }, + { + "word": "dusty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered with dust", + "example_sentence_english": "The old books were very dusty.", + "pos": "adjective", + "word_frequency": 8104 + }, + { + "word": "enlightenment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of understanding something clearly", + "example_sentence_english": "The philosopher sought spiritual enlightenment.", + "pos": "noun", + "word_frequency": 8105 + }, + { + "word": "fibre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thread or filament from which a vegetable tissue, mineral, or textile is formed", + "example_sentence_english": "This cereal is high in dietary fibre.", + "pos": "noun", + "word_frequency": 8106 + }, + { + "word": "focal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the center or most important part", + "example_sentence_english": "The focal point of the discussion was climate change.", + "pos": "adjective", + "word_frequency": 8108 + }, + { + "word": "gala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a public festival or celebration", + "example_sentence_english": "They attended a charity gala last night.", + "pos": "noun", + "word_frequency": 8110 + }, + { + "word": "garrison", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a body of troops stationed in a particular place", + "example_sentence_english": "The garrison defended the fort.", + "pos": "noun", + "word_frequency": 8112 + }, + { + "word": "gladly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with pleasure; willingly", + "example_sentence_english": "I would gladly help you with that.", + "pos": "adverb", + "word_frequency": 8113 + }, + { + "word": "goodwill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friendly, helpful, or cooperative feelings or attitude", + "example_sentence_english": "The company built up a lot of goodwill with its customers.", + "pos": "noun", + "word_frequency": 8114 + }, + { + "word": "gradual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taking place or progressing slowly or by degrees", + "example_sentence_english": "There has been a gradual improvement in his health.", + "pos": "adjective", + "word_frequency": 8115 + }, + { + "word": "harness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a set of straps and fittings by which a horse or other draft animal is fastened to a cart, plow, etc.", + "example_sentence_english": "The horse wore a leather harness.", + "pos": "noun", + "word_frequency": 8117 + }, + { + "word": "hashtag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a word or phrase preceded by a hash sign (#), used on social media to identify messages on a specific topic", + "example_sentence_english": "Use the hashtag #ThrowbackThursday for old photos.", + "pos": "noun", + "word_frequency": 8118 + }, + { + "word": "heartbeat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The rhythmic pulsation of the heart.", + "example_sentence_english": "I could feel my own heartbeat in my ears.", + "pos": "noun", + "word_frequency": 8120 + }, + { + "word": "honourable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Deserving of honor and respect.", + "example_sentence_english": "He made an honourable decision to resign.", + "pos": "adjective", + "word_frequency": 8123 + }, + { + "word": "imminent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "About to happen.", + "example_sentence_english": "The storm was imminent, so we headed indoors.", + "pos": "adjective", + "word_frequency": 8124 + }, + { + "word": "inaugural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marking the beginning of an institution, activity, or period of office.", + "example_sentence_english": "The inaugural flight of the new airline was a success.", + "pos": "adjective", + "word_frequency": 8125 + }, + { + "word": "insulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Material used to prevent the passage of heat, sound, or electricity.", + "example_sentence_english": "Good insulation keeps the house warm in winter.", + "pos": "noun", + "word_frequency": 8126 + }, + { + "word": "intern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A student or trainee who works, sometimes without pay, in order to gain practical experience.", + "example_sentence_english": "She worked as an intern at the law firm last summer.", + "pos": "noun", + "word_frequency": 8127 + }, + { + "word": "irresponsible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Not showing a proper sense of responsibility.", + "example_sentence_english": "It was irresponsible of him to leave the door unlocked.", + "pos": "adjective", + "word_frequency": 8128 + }, + { + "word": "lag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A delay or slowing down.", + "example_sentence_english": "There was a noticeable lag in the video stream.", + "pos": "noun", + "word_frequency": 8133 + }, + { + "word": "lender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person or organization that lends money.", + "example_sentence_english": "The bank is a major lender for small businesses.", + "pos": "noun", + "word_frequency": 8134 + }, + { + "word": "locality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The precise position or location of something.", + "example_sentence_english": "We searched the entire locality for the missing dog.", + "pos": "noun", + "word_frequency": 8136 + }, + { + "word": "lure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Something used to entice or attract.", + "example_sentence_english": "The promise of a bonus was a powerful lure for the employees.", + "pos": "noun", + "word_frequency": 8137 + }, + { + "word": "malicious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Intending or intended to do harm.", + "example_sentence_english": "He spread malicious rumors about his rival.", + "pos": "adjective", + "word_frequency": 8138 + }, + { + "word": "mattress", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A fabric case filled with soft material, used for sleeping on.", + "example_sentence_english": "I need a new mattress for my bed.", + "pos": "noun", + "word_frequency": 8139 + }, + { + "word": "mist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cloud of tiny water droplets in the air.", + "example_sentence_english": "The morning mist made it hard to see the road.", + "pos": "noun", + "word_frequency": 8141 + }, + { + "word": "mole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small burrowing mammal, or a small dark spot on the skin.", + "example_sentence_english": "The gardener was annoyed by the molehills in his lawn.", + "pos": "noun", + "word_frequency": 8142 + }, + { + "word": "monarchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A form of government with a monarch at the head.", + "example_sentence_english": "The country has been a constitutional monarchy for centuries.", + "pos": "noun", + "word_frequency": 8143 + }, + { + "word": "muscular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Having well-developed muscles.", + "example_sentence_english": "The athlete had a very muscular physique.", + "pos": "adjective", + "word_frequency": 8145 + }, + { + "word": "neutrality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state of not supporting or helping either side in a conflict.", + "example_sentence_english": "Switzerland is famous for its neutrality in international conflicts.", + "pos": "noun", + "word_frequency": 8146 + }, + { + "word": "noisy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Making a lot of noise.", + "example_sentence_english": "The children were very noisy during playtime.", + "pos": "adjective", + "word_frequency": 8148 + }, + { + "word": "orgasm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The climax of sexual excitement.", + "example_sentence_english": "The book discussed the physiology of an orgasm.", + "pos": "noun", + "word_frequency": 8150 + }, + { + "word": "panty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A short undergarment worn by women and girls.", + "example_sentence_english": "She bought a new panty and bra set.", + "pos": "noun", + "word_frequency": 8152 + }, + { + "word": "parcel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "An object or collection of objects wrapped in paper in order to be carried or sent by mail.", + "example_sentence_english": "The postman delivered a large parcel this morning.", + "pos": "noun", + "word_frequency": 8153 + }, + { + "word": "partition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A division or separation.", + "example_sentence_english": "They installed a glass partition to divide the office space.", + "pos": "noun", + "word_frequency": 8154 + }, + { + "word": "peculiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Strange or odd.", + "example_sentence_english": "He had a peculiar habit of talking to himself.", + "pos": "adjective", + "word_frequency": 8155 + }, + { + "word": "proprietary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to an owner or ownership; manufactured and sold only by the owner of the patent or trademark.", + "example_sentence_english": "The company uses proprietary software for its operations.", + "pos": "adjective", + "word_frequency": 8156 + }, + { + "word": "prostate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A gland surrounding the neck of the bladder in male mammals.", + "example_sentence_english": "Regular check-ups are important for prostate health.", + "pos": "noun", + "word_frequency": 8157 + }, + { + "word": "protagonist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The leading character or one of the major characters in a drama, movie, novel, or other fictional text.", + "example_sentence_english": "The protagonist of the novel was a young detective.", + "pos": "noun", + "word_frequency": 8158 + }, + { + "word": "rant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, angry speech", + "example_sentence_english": "He went on a long rant about the poor customer service.", + "pos": "noun", + "word_frequency": 8161 + }, + { + "word": "rash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area of red spots on the skin", + "example_sentence_english": "The baby developed a rash after eating strawberries.", + "pos": "noun", + "word_frequency": 8162 + }, + { + "word": "replica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an exact copy", + "example_sentence_english": "The museum displayed a perfect replica of the ancient vase.", + "pos": "noun", + "word_frequency": 8163 + }, + { + "word": "reside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to live in a particular place", + "example_sentence_english": "Many elderly people reside in this quiet neighborhood.", + "pos": "verb", + "word_frequency": 8164 + }, + { + "word": "ripe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fully developed and ready to be eaten (for fruit/vegetables)", + "example_sentence_english": "The bananas are ripe and ready to eat.", + "pos": "adjective", + "word_frequency": 8166 + }, + { + "word": "riverside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area along the side of a river", + "example_sentence_english": "We enjoyed a picnic by the riverside.", + "pos": "noun", + "word_frequency": 8167 + }, + { + "word": "sac", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bag-like part of an animal or plant", + "example_sentence_english": "The spider laid its eggs in a silk sac.", + "pos": "noun", + "word_frequency": 8171 + }, + { + "word": "sane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentally healthy; reasonable", + "example_sentence_english": "Despite the stress, she managed to stay sane.", + "pos": "adjective", + "word_frequency": 8172 + }, + { + "word": "savior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who saves someone or something from danger", + "example_sentence_english": "He was hailed as the savior of the company.", + "pos": "noun", + "word_frequency": 8173 + }, + { + "word": "scenic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having beautiful natural scenery", + "example_sentence_english": "We drove along a scenic route through the mountains.", + "pos": "adjective", + "word_frequency": 8174 + }, + { + "word": "sip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small drink", + "example_sentence_english": "She took a small sip of her coffee.", + "pos": "noun", + "word_frequency": 8175 + }, + { + "word": "snail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a slow-moving mollusc with a shell", + "example_sentence_english": "A snail left a silvery trail across the path.", + "pos": "noun", + "word_frequency": 8176 + }, + { + "word": "statistically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in terms of statistics", + "example_sentence_english": "Statistically, you are more likely to be hit by lightning than win the lottery.", + "pos": "adverb", + "word_frequency": 8179 + }, + { + "word": "stimulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to encourage something to grow, develop, or become active", + "example_sentence_english": "The government introduced measures to stimulate the economy.", + "pos": "verb", + "word_frequency": 8180 + }, + { + "word": "strangely", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in an unusual or surprising way", + "example_sentence_english": "Strangely, the lights went out just as he entered the room.", + "pos": "adverb", + "word_frequency": 8181 + }, + { + "word": "susceptible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "easily influenced or harmed by something", + "example_sentence_english": "Young children are particularly susceptible to colds.", + "pos": "adjective", + "word_frequency": 8182 + }, + { + "word": "translator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who changes words from one language into another", + "example_sentence_english": "She works as a translator for international conferences.", + "pos": "noun", + "word_frequency": 8186 + }, + { + "word": "tutor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a private teacher", + "example_sentence_english": "My math tutor helped me improve my grades.", + "pos": "noun", + "word_frequency": 8188 + }, + { + "word": "unsafe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not safe; dangerous", + "example_sentence_english": "The old bridge was declared unsafe for vehicles.", + "pos": "adjective", + "word_frequency": 8189 + }, + { + "word": "verge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an edge or border", + "example_sentence_english": "The country was on the verge of civil war.", + "pos": "noun", + "word_frequency": 8190 + }, + { + "word": "vibrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of energy and enthusiasm; bright and striking", + "example_sentence_english": "The city has a vibrant nightlife.", + "pos": "adjective", + "word_frequency": 8191 + }, + { + "word": "yeast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of fungus used in baking and brewing", + "example_sentence_english": "Yeast makes bread rise.", + "pos": "noun", + "word_frequency": 8194 + }, + { + "word": "absorption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of taking something in", + "example_sentence_english": "The plant's roots are responsible for water absorption.", + "pos": "noun", + "word_frequency": 8198 + }, + { + "word": "acne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a skin condition causing pimples", + "example_sentence_english": "Many teenagers suffer from acne.", + "pos": "noun", + "word_frequency": 8199 + }, + { + "word": "apologise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to say sorry", + "example_sentence_english": "You should apologise for your rude behaviour.", + "pos": "verb", + "word_frequency": 8201 + }, + { + "word": "aspiration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong desire to achieve something", + "example_sentence_english": "Her greatest aspiration is to become a doctor.", + "pos": "noun", + "word_frequency": 8202 + }, + { + "word": "assassin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who murders an important person", + "example_sentence_english": "The assassin was hired to eliminate the political leader.", + "pos": "noun", + "word_frequency": 8203 + }, + { + "word": "backlash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong negative reaction", + "example_sentence_english": "The new policy caused a huge backlash from the public.", + "pos": "noun", + "word_frequency": 8206 + }, + { + "word": "bbq", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barbecue", + "example_sentence_english": "We're having a BBQ in the garden this weekend.", + "pos": "noun", + "word_frequency": 8207 + }, + { + "word": "blockchain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a digital ledger", + "example_sentence_english": "Blockchain technology is used for cryptocurrencies like Bitcoin.", + "pos": "noun", + "word_frequency": 8208 + }, + { + "word": "brewery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place where beer is made", + "example_sentence_english": "We visited a local brewery and tasted some craft beers.", + "pos": "noun", + "word_frequency": 8210 + }, + { + "word": "bulb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a round part of a plant or an electric light", + "example_sentence_english": "The light bulb in the lamp needs to be replaced.", + "pos": "noun", + "word_frequency": 8211 + }, + { + "word": "cardboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stiff paper material", + "example_sentence_english": "Please put the cardboard boxes in the recycling bin.", + "pos": "noun", + "word_frequency": 8212 + }, + { + "word": "casually", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a relaxed or informal way", + "example_sentence_english": "He casually walked into the room as if nothing had happened.", + "pos": "adverb", + "word_frequency": 8213 + }, + { + "word": "chew", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to break food with your teeth", + "example_sentence_english": "Remember to chew your food slowly.", + "pos": "verb", + "word_frequency": 8214 + }, + { + "word": "collateral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security for a loan", + "example_sentence_english": "He used his house as collateral for the bank loan.", + "pos": "noun", + "word_frequency": 8215 + }, + { + "word": "congestion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overcrowding or blockage", + "example_sentence_english": "There is heavy traffic congestion on the main road.", + "pos": "noun", + "word_frequency": 8216 + }, + { + "word": "creditor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company to whom money is owed", + "example_sentence_english": "The company is trying to repay its creditors.", + "pos": "noun", + "word_frequency": 8218 + }, + { + "word": "criticise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express disapproval of someone or something", + "example_sentence_english": "It's easy to criticise others, but harder to offer solutions.", + "pos": "verb", + "word_frequency": 8219 + }, + { + "word": "crossover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a blend of two or more styles or categories", + "example_sentence_english": "The band's new album is a crossover of rock and electronic music.", + "pos": "noun", + "word_frequency": 8220 + }, + { + "word": "crunch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a difficult or critical situation; a sound", + "example_sentence_english": "We're facing a financial crunch this month.", + "pos": "noun", + "word_frequency": 8221 + }, + { + "word": "daytime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the period of time when there is light from the sun", + "example_sentence_english": "It's much warmer during the daytime.", + "pos": "noun", + "word_frequency": 8222 + }, + { + "word": "demise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's death; the end or failure of something", + "example_sentence_english": "The company's demise was caused by poor management.", + "pos": "noun", + "word_frequency": 8224 + }, + { + "word": "dependence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of relying on someone or something", + "example_sentence_english": "Our dependence on fossil fuels is a major concern.", + "pos": "noun", + "word_frequency": 8225 + }, + { + "word": "dictator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ruler with total power", + "example_sentence_english": "The country was ruled by a ruthless dictator for decades.", + "pos": "noun", + "word_frequency": 8227 + }, + { + "word": "dime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a ten-cent coin", + "example_sentence_english": "Can I borrow a dime for the parking meter?", + "pos": "noun", + "word_frequency": 8228 + }, + { + "word": "dire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely serious or urgent", + "example_sentence_english": "The situation is dire, and we need to act quickly.", + "pos": "adjective", + "word_frequency": 8229 + }, + { + "word": "disagreement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a difference of opinion", + "example_sentence_english": "There was a strong disagreement about the best way forward.", + "pos": "noun", + "word_frequency": 8230 + }, + { + "word": "disciple", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a follower or student of a teacher, leader, or philosophy", + "example_sentence_english": "He was a devoted disciple of the philosopher.", + "pos": "noun", + "word_frequency": 8231 + }, + { + "word": "disregard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or state of paying no attention to something", + "example_sentence_english": "He showed a complete disregard for the rules.", + "pos": "noun", + "word_frequency": 8232 + }, + { + "word": "distributor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that supplies goods to stores or other businesses", + "example_sentence_english": "We are looking for a new distributor for our products in Asia.", + "pos": "noun", + "word_frequency": 8233 + }, + { + "word": "dominion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "control or sovereignty", + "example_sentence_english": "The country gained dominion over its former colonies.", + "pos": "noun", + "word_frequency": 8234 + }, + { + "word": "downhill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards the bottom of a slope", + "example_sentence_english": "The path goes downhill from here.", + "pos": "adverb", + "word_frequency": 8235 + }, + { + "word": "dreadful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely bad or unpleasant", + "example_sentence_english": "The weather was dreadful all weekend.", + "pos": "adjective", + "word_frequency": 8236 + }, + { + "word": "drunken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intoxicated with alcohol", + "example_sentence_english": "He was arrested for drunken driving.", + "pos": "adjective", + "word_frequency": 8237 + }, + { + "word": "earnest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing sincere and intense conviction", + "example_sentence_english": "She made an earnest attempt to improve her grades.", + "pos": "adjective", + "word_frequency": 8238 + }, + { + "word": "eng", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "English (abbreviation)", + "example_sentence_english": "My favorite subject is Eng.", + "pos": "noun", + "word_frequency": 8239 + }, + { + "word": "erase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove marks or information", + "example_sentence_english": "Please erase the whiteboard before you leave.", + "pos": "verb", + "word_frequency": 8240 + }, + { + "word": "evacuate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move people from a dangerous place", + "example_sentence_english": "The police ordered everyone to evacuate the building immediately.", + "pos": "verb", + "word_frequency": 8241 + }, + { + "word": "extinct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "no longer existing", + "example_sentence_english": "Dinosaurs have been extinct for millions of years.", + "pos": "adjective", + "word_frequency": 8243 + }, + { + "word": "freezer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an appliance for freezing food", + "example_sentence_english": "Put the ice cream back in the freezer.", + "pos": "noun", + "word_frequency": 8244 + }, + { + "word": "genetically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to genes or genetics", + "example_sentence_english": "Some diseases are genetically inherited.", + "pos": "adverb", + "word_frequency": 8245 + }, + { + "word": "hare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fast-running, long-eared mammal similar to a rabbit", + "example_sentence_english": "The tortoise and the hare raced each other.", + "pos": "noun", + "word_frequency": 8246 + }, + { + "word": "honorary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "given as an honor, without the usual requirements", + "example_sentence_english": "She received an honorary degree from the university.", + "pos": "adjective", + "word_frequency": 8249 + }, + { + "word": "immature", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not fully developed; childish", + "example_sentence_english": "His immature behavior annoyed everyone.", + "pos": "adjective", + "word_frequency": 8250 + }, + { + "word": "imperative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely important or urgent", + "example_sentence_english": "It is imperative that we act now to prevent further damage.", + "pos": "adjective", + "word_frequency": 8251 + }, + { + "word": "ineffective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not producing any significant or desired effect", + "example_sentence_english": "The old methods proved to be ineffective.", + "pos": "adjective", + "word_frequency": 8252 + }, + { + "word": "knit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make fabric by interlocking loops of yarn", + "example_sentence_english": "My grandmother loves to knit sweaters.", + "pos": "verb", + "word_frequency": 8256 + }, + { + "word": "manly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having qualities traditionally associated with men", + "example_sentence_english": "He had a deep, manly voice.", + "pos": "adjective", + "word_frequency": 8260 + }, + { + "word": "maternity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being a mother; motherhood", + "example_sentence_english": "She is currently on maternity leave.", + "pos": "noun", + "word_frequency": 8262 + }, + { + "word": "misconduct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unacceptable or improper behavior", + "example_sentence_english": "The employee was fired for serious misconduct.", + "pos": "noun", + "word_frequency": 8263 + }, + { + "word": "morale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the confidence, enthusiasm, and discipline of a person or group", + "example_sentence_english": "The team's morale was low after the defeat.", + "pos": "noun", + "word_frequency": 8264 + }, + { + "word": "mute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to speak; silent", + "example_sentence_english": "He remained mute throughout the interrogation.", + "pos": "adjective", + "word_frequency": 8265 + }, + { + "word": "needless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnecessary because it is obvious or already known", + "example_sentence_english": "His needless comments only made the situation worse.", + "pos": "adjective", + "word_frequency": 8266 + }, + { + "word": "nerd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is overly intellectual, obsessive, or socially awkward", + "example_sentence_english": "He was a bit of a nerd in high school, always studying.", + "pos": "noun", + "word_frequency": 8267 + }, + { + "word": "novelty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being new, original, or unusual", + "example_sentence_english": "The novelty of the new toy soon wore off.", + "pos": "noun", + "word_frequency": 8269 + }, + { + "word": "optimism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hopefulness and confidence about the future", + "example_sentence_english": "Her optimism helped us through difficult times.", + "pos": "noun", + "word_frequency": 8270 + }, + { + "word": "optimization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of making the best or most effective use of a situation or resource", + "example_sentence_english": "We are working on the optimization of our production process.", + "pos": "noun", + "word_frequency": 8271 + }, + { + "word": "outdated", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old-fashioned or obsolete", + "example_sentence_english": "This software is outdated and needs to be updated.", + "pos": "adjective", + "word_frequency": 8272 + }, + { + "word": "oxide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a binary compound of oxygen with another element or group", + "example_sentence_english": "Rust is a form of iron oxide.", + "pos": "noun", + "word_frequency": 8273 + }, + { + "word": "peasant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a poor farmer of low social status", + "example_sentence_english": "In medieval times, most people were peasants.", + "pos": "noun", + "word_frequency": 8274 + }, + { + "word": "pence", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plural of penny (British currency)", + "example_sentence_english": "This item costs fifty pence.", + "pos": "noun", + "word_frequency": 8275 + }, + { + "word": "peripheral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or situated on the edge or periphery of something", + "example_sentence_english": "We need to focus on the main issues, not the peripheral details.", + "pos": "adjective", + "word_frequency": 8278 + }, + { + "word": "pint", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of liquid or dry capacity, equal to one half of a quart", + "example_sentence_english": "I'll have a pint of milk, please.", + "pos": "noun", + "word_frequency": 8279 + }, + { + "word": "plead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make an urgent, emotional request", + "example_sentence_english": "He decided to plead guilty to the charges.", + "pos": "verb", + "word_frequency": 8280 + }, + { + "word": "poop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feces; excrement", + "example_sentence_english": "The dog left a poop on the sidewalk.", + "pos": "noun", + "word_frequency": 8281 + }, + { + "word": "pornography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexually explicit material", + "example_sentence_english": "The debate about the legality of pornography continues.", + "pos": "noun", + "word_frequency": 8282 + }, + { + "word": "prevalence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the fact of being widespread", + "example_sentence_english": "The prevalence of obesity is a growing concern.", + "pos": "noun", + "word_frequency": 8284 + }, + { + "word": "provisional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arranged or existing for the present, possibly to be changed later", + "example_sentence_english": "They issued a provisional license for the new restaurant.", + "pos": "adjective", + "word_frequency": 8285 + }, + { + "word": "repay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pay back (a loan, debt, or money)", + "example_sentence_english": "He promised to repay the loan by next month.", + "pos": "verb", + "word_frequency": 8287 + }, + { + "word": "rouge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a red cosmetic for coloring the cheeks or lips", + "example_sentence_english": "She applied a touch of rouge to her cheeks.", + "pos": "noun", + "word_frequency": 8289 + }, + { + "word": "rumour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a currently circulating story or report of uncertain or doubtful truth", + "example_sentence_english": "There's a rumour going around that they're getting married.", + "pos": "noun", + "word_frequency": 8290 + }, + { + "word": "saturate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause (something) to become thoroughly soaked with liquid or moisture", + "example_sentence_english": "The heavy rain will saturate the soil.", + "pos": "verb", + "word_frequency": 8292 + }, + { + "word": "shove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong push", + "example_sentence_english": "He gave the door a hard shove.", + "pos": "noun", + "word_frequency": 8293 + }, + { + "word": "sms", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Short Message Service; a text message", + "example_sentence_english": "I sent her an SMS to confirm the meeting.", + "pos": "noun", + "word_frequency": 8294 + }, + { + "word": "soak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make something completely wet", + "example_sentence_english": "Let the clothes soak in water before washing them.", + "pos": "verb", + "word_frequency": 8295 + }, + { + "word": "softball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game similar to baseball but played with a larger, softer ball", + "example_sentence_english": "They played a game of softball in the park.", + "pos": "noun", + "word_frequency": 8296 + }, + { + "word": "southeastern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated in or directed toward the southeast", + "example_sentence_english": "The southeastern region of the country is known for its warm climate.", + "pos": "adjective", + "word_frequency": 8297 + }, + { + "word": "spectator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who watches at a show, game, or other event", + "example_sentence_english": "The spectators cheered loudly for their team.", + "pos": "noun", + "word_frequency": 8298 + }, + { + "word": "storytelling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity of telling or writing stories", + "example_sentence_english": "The art of storytelling is ancient and universal.", + "pos": "noun", + "word_frequency": 8300 + }, + { + "word": "stumble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trip or lose one's balance; to make a mistake", + "example_sentence_english": "He stumbled over a loose rock and almost fell.", + "pos": "verb", + "word_frequency": 8301 + }, + { + "word": "stupidity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being stupid", + "example_sentence_english": "His stupidity led to a series of unfortunate events.", + "pos": "noun", + "word_frequency": 8302 + }, + { + "word": "suppress", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to forcibly put an end to; to prevent the development or action of", + "example_sentence_english": "The government tried to suppress the rebellion.", + "pos": "verb", + "word_frequency": 8303 + }, + { + "word": "tangible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perceptible by touch; clear and definite", + "example_sentence_english": "We need to see tangible results from this project.", + "pos": "adjective", + "word_frequency": 8304 + }, + { + "word": "tilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sloping position or movement", + "example_sentence_english": "The table had a slight tilt to one side.", + "pos": "noun", + "word_frequency": 8307 + }, + { + "word": "trivial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of little value or importance", + "example_sentence_english": "Don't worry about such trivial matters.", + "pos": "adjective", + "word_frequency": 8308 + }, + { + "word": "unofficial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not officially authorized or confirmed", + "example_sentence_english": "This is an unofficial translation of the document.", + "pos": "adjective", + "word_frequency": 8310 + }, + { + "word": "veil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece of fine material worn by women to protect or conceal the face", + "example_sentence_english": "The bride wore a beautiful white veil.", + "pos": "noun", + "word_frequency": 8311 + }, + { + "word": "versatile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to adapt or be adapted to many different functions or activities", + "example_sentence_english": "She is a versatile actress, capable of playing many roles.", + "pos": "adjective", + "word_frequency": 8312 + }, + { + "word": "wed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to marry (someone)", + "example_sentence_english": "They plan to wed next spring.", + "pos": "verb", + "word_frequency": 8314 + }, + { + "word": "anthropology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The study of human societies and cultures.", + "example_sentence_english": "She decided to major in anthropology at university.", + "pos": "noun", + "word_frequency": 8320 + }, + { + "word": "artery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A blood vessel that carries blood away from the heart.", + "example_sentence_english": "The surgeon repaired the damaged artery.", + "pos": "noun", + "word_frequency": 8321 + }, + { + "word": "bamboo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A tall, woody grass.", + "example_sentence_english": "Pandas love to eat bamboo.", + "pos": "noun", + "word_frequency": 8322 + }, + { + "word": "basil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An aromatic herb used in cooking.", + "example_sentence_english": "Fresh basil adds a lot of flavor to pasta sauce.", + "pos": "noun", + "word_frequency": 8323 + }, + { + "word": "blackberry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A sweet, dark fruit.", + "example_sentence_english": "We picked wild blackberries in the forest.", + "pos": "noun", + "word_frequency": 8324 + }, + { + "word": "booze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Alcoholic drink.", + "example_sentence_english": "They went out to buy some booze for the party.", + "pos": "noun", + "word_frequency": 8327 + }, + { + "word": "caliber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality of someone's character or ability; the internal diameter of a gun barrel.", + "example_sentence_english": "The new employee showed a high caliber of work.", + "pos": "noun", + "word_frequency": 8330 + }, + { + "word": "cellphone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "A mobile phone.", + "example_sentence_english": "I left my cellphone on the table.", + "pos": "noun", + "word_frequency": 8332 + }, + { + "word": "chord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A group of notes played together; a straight line segment whose endpoints both lie on the circle.", + "example_sentence_english": "He played a beautiful chord on the guitar.", + "pos": "noun", + "word_frequency": 8333 + }, + { + "word": "concession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A thing that is granted, especially in response to demands; a reduction in price.", + "example_sentence_english": "The company made a concession to the striking workers.", + "pos": "noun", + "word_frequency": 8335 + }, + { + "word": "corporal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A low-ranking non-commissioned officer in the army.", + "example_sentence_english": "Corporal Jones led the patrol.", + "pos": "noun", + "word_frequency": 8336 + }, + { + "word": "courtyard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An unroofed area that is completely or mostly enclosed by the walls of a large building.", + "example_sentence_english": "The old castle had a beautiful courtyard.", + "pos": "noun", + "word_frequency": 8337 + }, + { + "word": "crest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The top of a hill or wave; a distinctive device or design.", + "example_sentence_english": "They reached the crest of the hill.", + "pos": "noun", + "word_frequency": 8338 + }, + { + "word": "deception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of deceiving someone.", + "example_sentence_english": "The magician's trick relied on clever deception.", + "pos": "noun", + "word_frequency": 8341 + }, + { + "word": "decor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The style and arrangement of furnishings and other things in a room.", + "example_sentence_english": "The restaurant had a very modern decor.", + "pos": "noun", + "word_frequency": 8342 + }, + { + "word": "derivative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Something that is based on another source; a financial contract whose value is derived from an underlying asset.", + "example_sentence_english": "The new song was a derivative of an older folk tune.", + "pos": "noun", + "word_frequency": 8343 + }, + { + "word": "discomfort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slight pain or uneasiness.", + "example_sentence_english": "He felt a slight discomfort in his knee.", + "pos": "noun", + "word_frequency": 8344 + }, + { + "word": "dominican", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person from the Dominican Republic; a member of a Roman Catholic order of friars.", + "example_sentence_english": "Many Dominicans live in New York City.", + "pos": "noun", + "word_frequency": 8345 + }, + { + "word": "drastic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Extreme; severe.", + "example_sentence_english": "The company took drastic measures to cut costs.", + "pos": "adverb", + "word_frequency": 8346 + }, + { + "word": "driveway", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A short private road leading from a public road to a house or garage.", + "example_sentence_english": "He parked his car in the driveway.", + "pos": "noun", + "word_frequency": 8347 + }, + { + "word": "duel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A fight between two people, often with weapons, to settle a point of honor.", + "example_sentence_english": "The two knights fought a duel.", + "pos": "noun", + "word_frequency": 8348 + }, + { + "word": "elf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A mythical creature, typically depicted as a small, mischievous, childlike figure with pointed ears.", + "example_sentence_english": "The children believed in Santa's elves.", + "pos": "noun", + "word_frequency": 8350 + }, + { + "word": "exemption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process of freeing someone from an obligation or liability imposed on others.", + "example_sentence_english": "He applied for an exemption from military service.", + "pos": "noun", + "word_frequency": 8352 + }, + { + "word": "fashionable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Conforming to the current fashion.", + "example_sentence_english": "She always wears fashionable clothes.", + "pos": "adjective", + "word_frequency": 8353 + }, + { + "word": "fetch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Go for and then bring back (something).", + "example_sentence_english": "Can you fetch me a glass of water?", + "pos": "verb", + "word_frequency": 8354 + }, + { + "word": "fisherman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person who catches fish for a living or as a hobby.", + "example_sentence_english": "The old fisherman cast his net into the sea.", + "pos": "noun", + "word_frequency": 8355 + }, + { + "word": "formidable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Inspiring fear or respect through being impressively large, powerful, intense, or capable.", + "example_sentence_english": "The team faced a formidable opponent.", + "pos": "adjective", + "word_frequency": 8357 + }, + { + "word": "furnish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Provide (a house or room) with furniture; supply with something.", + "example_sentence_english": "They plan to furnish the new apartment next month.", + "pos": "verb", + "word_frequency": 8359 + }, + { + "word": "fuzzy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unclear; covered with soft, short hair", + "example_sentence_english": "The old photograph was a bit fuzzy.", + "pos": "adjective", + "word_frequency": 8360 + }, + { + "word": "gothic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a style of architecture or literature", + "example_sentence_english": "The old church had a beautiful Gothic archway.", + "pos": "adjective", + "word_frequency": 8363 + }, + { + "word": "graffiti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writings or drawings scribbled, scratched, or sprayed illicitly on a wall or other surface in a public place", + "example_sentence_english": "The wall was covered in colorful graffiti.", + "pos": "noun", + "word_frequency": 8364 + }, + { + "word": "grenade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small bomb thrown by hand or launched from a rifle", + "example_sentence_english": "The soldier threw a smoke grenade to cover their advance.", + "pos": "noun", + "word_frequency": 8365 + }, + { + "word": "hamlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small settlement, generally one smaller than a village", + "example_sentence_english": "They lived in a quiet hamlet nestled in the valley.", + "pos": "noun", + "word_frequency": 8367 + }, + { + "word": "helm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tiller or wheel and any associated equipment for steering a ship or boat; a position of control", + "example_sentence_english": "The captain took the helm as the storm approached.", + "pos": "noun", + "word_frequency": 8370 + }, + { + "word": "hypocrisy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of claiming to have moral standards or beliefs to which one's own behavior does not conform", + "example_sentence_english": "His speech was full of hypocrisy, given his past actions.", + "pos": "noun", + "word_frequency": 8375 + }, + { + "word": "inaccurate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not accurate; incorrect or untrue", + "example_sentence_english": "The report contained several inaccurate figures.", + "pos": "adjective", + "word_frequency": 8376 + }, + { + "word": "inception", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the establishment or starting point of an institution or activity", + "example_sentence_english": "The project has been successful since its inception.", + "pos": "noun", + "word_frequency": 8377 + }, + { + "word": "incompetent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having or showing the necessary skills to do something successfully", + "example_sentence_english": "The new manager proved to be completely incompetent.", + "pos": "adjective", + "word_frequency": 8378 + }, + { + "word": "intervene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come between so as to prevent or alter a result or course of events", + "example_sentence_english": "The police had to intervene to stop the fight.", + "pos": "verb", + "word_frequency": 8380 + }, + { + "word": "kin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "one's family and relations", + "example_sentence_english": "She invited all her kin to the family reunion.", + "pos": "noun", + "word_frequency": 8385 + }, + { + "word": "legislator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who makes laws; a member of a legislature", + "example_sentence_english": "The new bill was proposed by a senior legislator.", + "pos": "noun", + "word_frequency": 8390 + }, + { + "word": "lobster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large marine crustacean with a cylindrical body, stalked eyes, and the first of its five pairs of limbs modified into large pincers", + "example_sentence_english": "We ordered fresh lobster for dinner.", + "pos": "noun", + "word_frequency": 8391 + }, + { + "word": "loneliness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sadness because one has no friends or company", + "example_sentence_english": "She felt a deep sense of loneliness after moving to a new city.", + "pos": "noun", + "word_frequency": 8392 + }, + { + "word": "malaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an intermittent and remittent fever caused by a protozoan parasite that invades the red blood cells", + "example_sentence_english": "Travelers to tropical regions should take precautions against malaria.", + "pos": "noun", + "word_frequency": 8394 + }, + { + "word": "manifesto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a public declaration of policy and aims, especially one issued before an election by a political party or candidate", + "example_sentence_english": "The party published its manifesto before the election.", + "pos": "noun", + "word_frequency": 8395 + }, + { + "word": "maze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a network of paths and hedges designed as a puzzle through which one has to find a way", + "example_sentence_english": "We got lost in the corn maze.", + "pos": "noun", + "word_frequency": 8396 + }, + { + "word": "methodist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a follower of Methodism, a Protestant Christian denomination", + "example_sentence_english": "She grew up in a Methodist family.", + "pos": "noun", + "word_frequency": 8397 + }, + { + "word": "monastery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a building or buildings occupied by a community of monks living under religious vows", + "example_sentence_english": "The monks lived a quiet life in the ancient monastery.", + "pos": "noun", + "word_frequency": 8399 + }, + { + "word": "mutation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a change in the genetic structure of an organism or a significant change", + "example_sentence_english": "The mutation caused a significant change in the plant's appearance.", + "pos": "noun", + "word_frequency": 8400 + }, + { + "word": "negligence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure to take proper care in doing something", + "example_sentence_english": "The accident was caused by the driver's negligence.", + "pos": "noun", + "word_frequency": 8402 + }, + { + "word": "nexus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a connection or series of connections linking two or more things", + "example_sentence_english": "There is a strong nexus between poverty and crime.", + "pos": "noun", + "word_frequency": 8403 + }, + { + "word": "nightclub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place of entertainment open late at night", + "example_sentence_english": "They went to a nightclub to dance.", + "pos": "noun", + "word_frequency": 8404 + }, + { + "word": "numerical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to numbers", + "example_sentence_english": "The data is presented in numerical order.", + "pos": "adjective", + "word_frequency": 8405 + }, + { + "word": "obsolete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "no longer produced or used; out of date", + "example_sentence_english": "Typewriters are now largely obsolete.", + "pos": "adjective", + "word_frequency": 8406 + }, + { + "word": "optic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the eye or sight", + "example_sentence_english": "The new telescope has advanced optic lenses.", + "pos": "adjective", + "word_frequency": 8407 + }, + { + "word": "panda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large bear-like mammal native to China", + "example_sentence_english": "The panda is a symbol of wildlife conservation.", + "pos": "noun", + "word_frequency": 8408 + }, + { + "word": "pea", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small spherical green seed", + "example_sentence_english": "She likes to eat green peas with her dinner.", + "pos": "noun", + "word_frequency": 8409 + }, + { + "word": "posture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the position in which someone holds their body", + "example_sentence_english": "Good posture is important for back health.", + "pos": "noun", + "word_frequency": 8411 + }, + { + "word": "preseason", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the period before the start of a regular sports season", + "example_sentence_english": "The team is training hard during the preseason.", + "pos": "noun", + "word_frequency": 8413 + }, + { + "word": "resonance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality in a sound of being deep, full, and reverberating or the quality of evoking a response", + "example_sentence_english": "The speech had a strong emotional resonance with the audience.", + "pos": "noun", + "word_frequency": 8416 + }, + { + "word": "ruthless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing no pity or compassion for others", + "example_sentence_english": "The ruthless dictator showed no mercy.", + "pos": "adjective", + "word_frequency": 8417 + }, + { + "word": "salvage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the rescue of a wrecked or disabled ship or its cargo", + "example_sentence_english": "They attempted to salvage what was left after the fire.", + "pos": "noun", + "word_frequency": 8418 + }, + { + "word": "samurai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a member of a powerful military caste in feudal Japan", + "example_sentence_english": "The samurai were skilled warriors.", + "pos": "noun", + "word_frequency": 8419 + }, + { + "word": "satire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of humor, irony, exaggeration, or ridicule to expose and criticize people's stupidity or vices", + "example_sentence_english": "The play was a sharp satire on modern politics.", + "pos": "noun", + "word_frequency": 8421 + }, + { + "word": "seafood", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fish and shellfish from the sea used for food", + "example_sentence_english": "We had fresh seafood for dinner.", + "pos": "noun", + "word_frequency": 8423 + }, + { + "word": "slash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut with a sharp blade", + "example_sentence_english": "He used a knife to slash the rope.", + "pos": "verb", + "word_frequency": 8424 + }, + { + "word": "spaghetti", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a type of pasta in the form of long, thin strings", + "example_sentence_english": "I cooked spaghetti with tomato sauce.", + "pos": "noun", + "word_frequency": 8425 + }, + { + "word": "speedy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fast; rapid", + "example_sentence_english": "The car made a speedy getaway.", + "pos": "adjective", + "word_frequency": 8426 + }, + { + "word": "standpoint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a point of view or position from which something is considered or assessed", + "example_sentence_english": "From my standpoint, the decision was unfair.", + "pos": "noun", + "word_frequency": 8427 + }, + { + "word": "stein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large earthenware or stoneware drinking mug, typically for beer", + "example_sentence_english": "He drank beer from a traditional stein.", + "pos": "noun", + "word_frequency": 8428 + }, + { + "word": "sway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move or cause to move slowly to and fro", + "example_sentence_english": "The trees swayed gently in the breeze.", + "pos": "verb", + "word_frequency": 8429 + }, + { + "word": "torque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a twisting force that tends to cause rotation", + "example_sentence_english": "The engine produces high torque at low RPMs.", + "pos": "noun", + "word_frequency": 8430 + }, + { + "word": "unconstitutional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not in accordance with the political constitution or with procedural rules", + "example_sentence_english": "The court ruled the new law was unconstitutional.", + "pos": "adjective", + "word_frequency": 8432 + }, + { + "word": "undermine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lessen the effectiveness, power, or ability of, especially gradually or insidiously", + "example_sentence_english": "His constant criticism began to undermine her confidence.", + "pos": "verb", + "word_frequency": 8433 + }, + { + "word": "vacancy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an unoccupied position or office or an empty room or space", + "example_sentence_english": "There is a job vacancy in the marketing department.", + "pos": "noun", + "word_frequency": 8434 + }, + { + "word": "veto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a constitutional right to reject a decision or proposal made by a law-making body", + "example_sentence_english": "The President exercised his veto power.", + "pos": "noun", + "word_frequency": 8436 + }, + { + "word": "vocational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to an occupation or employment", + "example_sentence_english": "She is studying at a vocational college.", + "pos": "adjective", + "word_frequency": 8437 + }, + { + "word": "wicket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in cricket, one of the two sets of three stumps with two bails on top", + "example_sentence_english": "The bowler took a crucial wicket.", + "pos": "noun", + "word_frequency": 8439 + }, + { + "word": "withstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resist, endure", + "example_sentence_english": "The old bridge was built to withstand strong winds.", + "pos": "verb", + "word_frequency": 8440 + }, + { + "word": "woodland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forest, wooded area", + "example_sentence_english": "We enjoyed a peaceful walk through the woodland.", + "pos": "noun", + "word_frequency": 8441 + }, + { + "word": "zinc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a metallic element", + "example_sentence_english": "Zinc is often used to coat steel to prevent rust.", + "pos": "noun", + "word_frequency": 8442 + }, + { + "word": "accustom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make familiar with", + "example_sentence_english": "It took time to accustom myself to the new climate.", + "pos": "verb", + "word_frequency": 8444 + }, + { + "word": "approximate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "close to the actual, rough", + "example_sentence_english": "The approximate cost of the repairs is $500.", + "pos": "adjective", + "word_frequency": 8447 + }, + { + "word": "baton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stick used by a conductor or police officer", + "example_sentence_english": "The conductor raised his baton to begin the symphony.", + "pos": "noun", + "word_frequency": 8452 + }, + { + "word": "breakup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "end of a relationship", + "example_sentence_english": "Their breakup was very difficult for both of them.", + "pos": "noun", + "word_frequency": 8453 + }, + { + "word": "bulldog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of dog", + "example_sentence_english": "The bulldog has a very distinctive appearance.", + "pos": "noun", + "word_frequency": 8454 + }, + { + "word": "camel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a desert animal", + "example_sentence_english": "Camels can survive for a long time without water.", + "pos": "noun", + "word_frequency": 8456 + }, + { + "word": "cater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide food or services", + "example_sentence_english": "The restaurant can cater for large parties.", + "pos": "verb", + "word_frequency": 8458 + }, + { + "word": "checkout", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place to pay in a store", + "example_sentence_english": "Please proceed to the checkout to pay for your items.", + "pos": "noun", + "word_frequency": 8459 + }, + { + "word": "chunk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick, solid piece", + "example_sentence_english": "He cut a large chunk of bread.", + "pos": "noun", + "word_frequency": 8460 + }, + { + "word": "classmate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person in the same class", + "example_sentence_english": "My classmate helped me with my homework.", + "pos": "noun", + "word_frequency": 8461 + }, + { + "word": "coca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant whose leaves are used to make cocaine", + "example_sentence_english": "The coca plant is native to South America.", + "pos": "noun", + "word_frequency": 8462 + }, + { + "word": "cocoa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "powder made from cacao beans, used to make chocolate", + "example_sentence_english": "I like to drink hot cocoa on a cold day.", + "pos": "noun", + "word_frequency": 8463 + }, + { + "word": "comet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a celestial body with a tail", + "example_sentence_english": "Halley's Comet is visible from Earth every 75-76 years.", + "pos": "noun", + "word_frequency": 8464 + }, + { + "word": "compartment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a separate section", + "example_sentence_english": "The train has several compartments for passengers.", + "pos": "noun", + "word_frequency": 8465 + }, + { + "word": "contestant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who takes part in a contest", + "example_sentence_english": "Each contestant tried their best to win the prize.", + "pos": "noun", + "word_frequency": 8466 + }, + { + "word": "corpus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection of written or spoken texts", + "example_sentence_english": "Linguists often use a large corpus of text for their research.", + "pos": "noun", + "word_frequency": 8467 + }, + { + "word": "cove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small sheltered bay", + "example_sentence_english": "We anchored our boat in a quiet cove.", + "pos": "noun", + "word_frequency": 8468 + }, + { + "word": "cozy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortable and warm", + "example_sentence_english": "The small cottage felt very cozy in winter.", + "pos": "adjective", + "word_frequency": 8469 + }, + { + "word": "deficiency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lack or shortage", + "example_sentence_english": "Iron deficiency can cause fatigue.", + "pos": "noun", + "word_frequency": 8470 + }, + { + "word": "deport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expel from a country", + "example_sentence_english": "The government decided to deport the undocumented immigrants.", + "pos": "verb", + "word_frequency": 8471 + }, + { + "word": "dictatorship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a country governed by a dictator", + "example_sentence_english": "The country was ruled by a harsh dictatorship for decades.", + "pos": "noun", + "word_frequency": 8472 + }, + { + "word": "disrespectful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showing a lack of respect", + "example_sentence_english": "His comments were very disrespectful to the elderly.", + "pos": "adjective", + "word_frequency": 8473 + }, + { + "word": "dread", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great fear or apprehension", + "example_sentence_english": "She felt a sense of dread as the deadline approached.", + "pos": "noun", + "word_frequency": 8474 + }, + { + "word": "dummy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a model of a human, or a foolish person", + "example_sentence_english": "The crash test dummy was used to simulate impact.", + "pos": "noun", + "word_frequency": 8475 + }, + { + "word": "electorate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "all the people in a country or area who are entitled to vote", + "example_sentence_english": "The government is trying to win over the undecided electorate.", + "pos": "noun", + "word_frequency": 8478 + }, + { + "word": "erosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of eroding or being eroded by wind, water, or other natural agents", + "example_sentence_english": "Soil erosion is a major environmental problem.", + "pos": "noun", + "word_frequency": 8479 + }, + { + "word": "expo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibition; exposition", + "example_sentence_english": "We visited the new art expo downtown.", + "pos": "noun", + "word_frequency": 8480 + }, + { + "word": "flank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side (of an animal or building)", + "example_sentence_english": "The general ordered his troops to attack the enemy's flank.", + "pos": "noun", + "word_frequency": 8482 + }, + { + "word": "flare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden burst of light or fire", + "example_sentence_english": "The ship sent up a distress flare.", + "pos": "noun", + "word_frequency": 8483 + }, + { + "word": "flirt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to behave as if attracted to someone", + "example_sentence_english": "He likes to flirt with all the waitresses.", + "pos": "verb", + "word_frequency": 8484 + }, + { + "word": "forex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foreign exchange (market)", + "example_sentence_english": "Many people trade in the forex market.", + "pos": "noun", + "word_frequency": 8485 + }, + { + "word": "gamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays video games", + "example_sentence_english": "My brother is a serious gamer.", + "pos": "noun", + "word_frequency": 8486 + }, + { + "word": "handmade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made by hand, not by machine", + "example_sentence_english": "She sells beautiful handmade jewelry.", + "pos": "adjective", + "word_frequency": 8490 + }, + { + "word": "incidence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the occurrence, rate, or frequency of a disease, crime, or other undesirable thing", + "example_sentence_english": "The incidence of flu increases in winter.", + "pos": "noun", + "word_frequency": 8494 + }, + { + "word": "intimacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "close familiarity or friendship", + "example_sentence_english": "They shared a moment of quiet intimacy.", + "pos": "noun", + "word_frequency": 8495 + }, + { + "word": "kitten", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a young cat", + "example_sentence_english": "The kitten played with a ball of yarn.", + "pos": "noun", + "word_frequency": 8499 + }, + { + "word": "lan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Local Area Network", + "example_sentence_english": "We set up a LAN party to play games together.", + "pos": "noun", + "word_frequency": 8503 + }, + { + "word": "lever", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bar used for prying or lifting", + "example_sentence_english": "Pull the lever to open the gate.", + "pos": "noun", + "word_frequency": 8505 + }, + { + "word": "mileage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the number of miles traveled or covered", + "example_sentence_english": "This car gets good mileage on the highway.", + "pos": "noun", + "word_frequency": 8509 + }, + { + "word": "multiplayer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game or mode allowing multiple players", + "example_sentence_english": "We prefer games with a strong multiplayer component.", + "pos": "noun", + "word_frequency": 8511 + }, + { + "word": "mutant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organism that has undergone mutation", + "example_sentence_english": "The scientists studied the new mutant strain of bacteria.", + "pos": "noun", + "word_frequency": 8512 + }, + { + "word": "mythology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collection of myths, especially one belonging to a particular religious or cultural tradition", + "example_sentence_english": "Greek mythology is full of fascinating stories.", + "pos": "noun", + "word_frequency": 8513 + }, + { + "word": "neon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a colorless, odorless inert gaseous element", + "example_sentence_english": "The bar had a bright neon sign.", + "pos": "noun", + "word_frequency": 8515 + }, + { + "word": "northeastern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated in or relating to the northeast", + "example_sentence_english": "The storm is moving towards the northeastern states.", + "pos": "adjective", + "word_frequency": 8518 + }, + { + "word": "nun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a member of a female religious community", + "example_sentence_english": "The nun dedicated her life to helping others.", + "pos": "noun", + "word_frequency": 8519 + }, + { + "word": "nutritional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to nutrition", + "example_sentence_english": "This cereal is a good nutritional source.", + "pos": "adjective", + "word_frequency": 8520 + }, + { + "word": "pedal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lever operated by the foot", + "example_sentence_english": "He pressed the accelerator pedal.", + "pos": "noun", + "word_frequency": 8523 + }, + { + "word": "pest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an annoying person or thing; a destructive insect", + "example_sentence_english": "Mosquitoes are a real pest in the summer.", + "pos": "noun", + "word_frequency": 8524 + }, + { + "word": "pillar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tall vertical structure", + "example_sentence_english": "The ancient temple was supported by stone pillars.", + "pos": "noun", + "word_frequency": 8525 + }, + { + "word": "plausible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seeming reasonable or probable", + "example_sentence_english": "Her excuse sounded plausible.", + "pos": "adjective", + "word_frequency": 8526 + }, + { + "word": "polymer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large molecule made of repeating units", + "example_sentence_english": "Plastic is a common type of polymer.", + "pos": "noun", + "word_frequency": 8528 + }, + { + "word": "precipitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rain, snow, sleet, or hail", + "example_sentence_english": "We expect some precipitation later today.", + "pos": "noun", + "word_frequency": 8529 + }, + { + "word": "pup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a young dog or other animal", + "example_sentence_english": "The dog had three cute pups.", + "pos": "noun", + "word_frequency": 8530 + }, + { + "word": "quarantine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of isolation", + "example_sentence_english": "The travelers had to go into quarantine for two weeks.", + "pos": "noun", + "word_frequency": 8531 + }, + { + "word": "query", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a question or inquiry", + "example_sentence_english": "The customer had a query about their order.", + "pos": "noun", + "word_frequency": 8532 + }, + { + "word": "restraint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "control over one's emotions or actions", + "example_sentence_english": "He showed great restraint despite the provocation.", + "pos": "noun", + "word_frequency": 8534 + }, + { + "word": "rift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a crack, split, or break in friendly relations", + "example_sentence_english": "A rift developed between the two friends.", + "pos": "noun", + "word_frequency": 8535 + }, + { + "word": "salesman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose job is to sell things", + "example_sentence_english": "The salesman tried to convince me to buy the car.", + "pos": "noun", + "word_frequency": 8538 + }, + { + "word": "scarlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a brilliant red color", + "example_sentence_english": "She wore a dress of a deep scarlet color.", + "pos": "adjective", + "word_frequency": 8539 + }, + { + "word": "sewer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an underground pipe for waste water", + "example_sentence_english": "The city's sewers are being repaired.", + "pos": "noun", + "word_frequency": 8541 + }, + { + "word": "smack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hit sharply", + "example_sentence_english": "She smacked the ball over the net.", + "pos": "verb", + "word_frequency": 8542 + }, + { + "word": "southwestern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the southwest", + "example_sentence_english": "They live in the southwestern part of the country.", + "pos": "adjective", + "word_frequency": 8544 + }, + { + "word": "spokesperson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who speaks on behalf of a group", + "example_sentence_english": "The company's spokesperson issued a statement.", + "pos": "noun", + "word_frequency": 8545 + }, + { + "word": "stalk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pursue stealthily; to walk stiffly", + "example_sentence_english": "The lion stalked its prey.", + "pos": "verb", + "word_frequency": 8546 + }, + { + "word": "standardize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make consistent or uniform", + "example_sentence_english": "We need to standardize our procedures.", + "pos": "verb", + "word_frequency": 8547 + }, + { + "word": "stitch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a loop of thread or yarn", + "example_sentence_english": "The doctor put three stitches in his cut.", + "pos": "noun", + "word_frequency": 8548 + }, + { + "word": "substrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance or surface on which an organism lives or a process occurs", + "example_sentence_english": "The enzyme acts on a specific substrate.", + "pos": "noun", + "word_frequency": 8549 + }, + { + "word": "sultan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Muslim sovereign", + "example_sentence_english": "The sultan ruled over a vast empire.", + "pos": "noun", + "word_frequency": 8550 + }, + { + "word": "supremacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being superior to all others", + "example_sentence_english": "The team fought for supremacy in the league.", + "pos": "noun", + "word_frequency": 8551 + }, + { + "word": "thirst", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the feeling of needing to drink", + "example_sentence_english": "He quenched his thirst with a glass of water.", + "pos": "noun", + "word_frequency": 8552 + }, + { + "word": "transitional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of a transition", + "example_sentence_english": "This is a transitional period for the company.", + "pos": "adjective", + "word_frequency": 8553 + }, + { + "word": "tuna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large edible marine fish", + "example_sentence_english": "I made a tuna sandwich for lunch.", + "pos": "noun", + "word_frequency": 8554 + }, + { + "word": "unused", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not used", + "example_sentence_english": "The old bicycle sat unused in the garage.", + "pos": "adjective", + "word_frequency": 8555 + }, + { + "word": "viewpoint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a particular attitude or way of considering a matter", + "example_sentence_english": "From my viewpoint, the plan is flawed.", + "pos": "noun", + "word_frequency": 8556 + }, + { + "word": "vinegar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sour liquid used as a condiment", + "example_sentence_english": "She added a splash of vinegar to the salad dressing.", + "pos": "noun", + "word_frequency": 8557 + }, + { + "word": "wig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a covering for the head made of real or artificial hair", + "example_sentence_english": "The actor wore a wig for his role.", + "pos": "noun", + "word_frequency": 8558 + }, + { + "word": "affiliation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "official connection to a group", + "example_sentence_english": "Her political affiliation is with the Green Party.", + "pos": "noun", + "word_frequency": 8560 + }, + { + "word": "allergy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a medical condition causing a bad reaction to certain things", + "example_sentence_english": "I have an allergy to peanuts.", + "pos": "noun", + "word_frequency": 8561 + }, + { + "word": "amnesty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official pardon for people who have been convicted of political offenses", + "example_sentence_english": "The government granted amnesty to political prisoners.", + "pos": "noun", + "word_frequency": 8562 + }, + { + "word": "assertion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a confident and forceful statement of fact or belief", + "example_sentence_english": "His assertion that he was innocent was not believed.", + "pos": "noun", + "word_frequency": 8566 + }, + { + "word": "astronomy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the scientific study of stars, planets, and space", + "example_sentence_english": "She is studying astronomy at university.", + "pos": "noun", + "word_frequency": 8567 + }, + { + "word": "attic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a space or room directly under the roof of a house", + "example_sentence_english": "We store old furniture in the attic.", + "pos": "noun", + "word_frequency": 8569 + }, + { + "word": "autobiography", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an account of a person's life written by that person", + "example_sentence_english": "She wrote an autobiography about her childhood.", + "pos": "noun", + "word_frequency": 8570 + }, + { + "word": "broadcaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or organization that transmits radio or television programs", + "example_sentence_english": "The BBC is a well-known public broadcaster.", + "pos": "noun", + "word_frequency": 8574 + }, + { + "word": "buddhism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a religion and philosophy originating in India", + "example_sentence_english": "Buddhism emphasizes peace and mindfulness.", + "pos": "noun", + "word_frequency": 8575 + }, + { + "word": "cache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hidden store of things; a computer memory", + "example_sentence_english": "The browser stores a cache of frequently visited pages.", + "pos": "noun", + "word_frequency": 8576 + }, + { + "word": "carrot", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an orange root vegetable", + "example_sentence_english": "Rabbits love to eat carrots.", + "pos": "noun", + "word_frequency": 8578 + }, + { + "word": "coherent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logical and consistent", + "example_sentence_english": "His argument was coherent and well-reasoned.", + "pos": "adjective", + "word_frequency": 8579 + }, + { + "word": "comfy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortable", + "example_sentence_english": "This sofa is really comfy.", + "pos": "adjective", + "word_frequency": 8580 + }, + { + "word": "comrade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a companion or fellow member of an organization", + "example_sentence_english": "He addressed his fellow comrades at the meeting.", + "pos": "noun", + "word_frequency": 8581 + }, + { + "word": "concede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admit that something is true or valid after first denying or resisting it", + "example_sentence_english": "He had to concede that his opponent was right.", + "pos": "verb", + "word_frequency": 8582 + }, + { + "word": "condo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a condominium", + "example_sentence_english": "They bought a new condo in the city center.", + "pos": "noun", + "word_frequency": 8583 + }, + { + "word": "crooked", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bent or twisted out of shape or out of place", + "example_sentence_english": "The picture on the wall was crooked.", + "pos": "adjective", + "word_frequency": 8585 + }, + { + "word": "cultivation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of trying to acquire or develop a quality or skill", + "example_sentence_english": "The cultivation of new ideas is essential for progress.", + "pos": "noun", + "word_frequency": 8586 + }, + { + "word": "discontinue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stop producing or providing something", + "example_sentence_english": "The company decided to discontinue the product line.", + "pos": "verb", + "word_frequency": 8588 + }, + { + "word": "displacement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of moving something from its usual place", + "example_sentence_english": "The war caused the displacement of thousands of people.", + "pos": "noun", + "word_frequency": 8589 + }, + { + "word": "disrespect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of respect or courtesy", + "example_sentence_english": "Showing disrespect to elders is considered rude.", + "pos": "noun", + "word_frequency": 8590 + }, + { + "word": "distort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pull or twist out of shape; give a misleading account of", + "example_sentence_english": "The media can sometimes distort the truth.", + "pos": "verb", + "word_frequency": 8591 + }, + { + "word": "diver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who works underwater", + "example_sentence_english": "The diver explored the coral reef.", + "pos": "noun", + "word_frequency": 8592 + }, + { + "word": "edible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fit or suitable to be eaten", + "example_sentence_english": "Are these mushrooms edible?", + "pos": "adjective", + "word_frequency": 8594 + }, + { + "word": "enhancement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an improvement or addition to something", + "example_sentence_english": "The software update includes several performance enhancements.", + "pos": "noun", + "word_frequency": 8598 + }, + { + "word": "fax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine that sends and receives copies of documents over a telephone line", + "example_sentence_english": "Please send the document by fax.", + "pos": "noun", + "word_frequency": 8599 + }, + { + "word": "fiat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official order or decree", + "example_sentence_english": "The government issued a fiat to control prices.", + "pos": "noun", + "word_frequency": 8600 + }, + { + "word": "firefighter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who extinguishes fires", + "example_sentence_english": "The firefighter quickly put out the blaze.", + "pos": "noun", + "word_frequency": 8602 + }, + { + "word": "flick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quick, light movement", + "example_sentence_english": "With a flick of his wrist, he opened the bottle.", + "pos": "noun", + "word_frequency": 8603 + }, + { + "word": "funky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stylish and modern; having a strong, earthy smell", + "example_sentence_english": "She wore a funky hat to the party.", + "pos": "adjective", + "word_frequency": 8605 + }, + { + "word": "gag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a joke or trick; something put in or over a person's mouth to prevent them from speaking", + "example_sentence_english": "The comedian told a funny gag.", + "pos": "noun", + "word_frequency": 8606 + }, + { + "word": "gigantic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely large", + "example_sentence_english": "They built a gigantic statue in the city center.", + "pos": "adjective", + "word_frequency": 8608 + }, + { + "word": "gill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the respiratory organ of fish and some amphibians", + "example_sentence_english": "Fish use their gills to breathe underwater.", + "pos": "noun", + "word_frequency": 8609 + }, + { + "word": "groom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man who is about to be married or has just been married", + "example_sentence_english": "The groom looked nervous before the wedding.", + "pos": "noun", + "word_frequency": 8610 + }, + { + "word": "guitarist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who plays the guitar", + "example_sentence_english": "The guitarist played an amazing solo.", + "pos": "noun", + "word_frequency": 8611 + }, + { + "word": "halftime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the interval between two halves of a game or contest", + "example_sentence_english": "The team discussed their strategy at halftime.", + "pos": "noun", + "word_frequency": 8612 + }, + { + "word": "hash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dish of cooked meat and potatoes; a symbol (#)", + "example_sentence_english": "She ordered corned beef hash for breakfast.", + "pos": "noun", + "word_frequency": 8615 + }, + { + "word": "hydro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydroelectric power; water", + "example_sentence_english": "The region relies heavily on hydro for its electricity.", + "pos": "noun", + "word_frequency": 8619 + }, + { + "word": "inactive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not active; not doing anything", + "example_sentence_english": "The volcano has been inactive for centuries.", + "pos": "adjective", + "word_frequency": 8621 + }, + { + "word": "inspect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look at something closely, typically to assess its condition or discover any shortcomings", + "example_sentence_english": "The mechanic will inspect the car for any damage.", + "pos": "verb", + "word_frequency": 8622 + }, + { + "word": "laurel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an aromatic evergreen shrub; a symbol of honor or victory", + "example_sentence_english": "The athlete rested on his laurels after winning the championship.", + "pos": "noun", + "word_frequency": 8626 + }, + { + "word": "leftist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person with left-wing political views", + "example_sentence_english": "Many leftists advocate for social equality.", + "pos": "noun", + "word_frequency": 8627 + }, + { + "word": "legitimacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conformity to the law or to rules; the ability to be defended with logic or justification", + "example_sentence_english": "The government's legitimacy was questioned after the scandal.", + "pos": "noun", + "word_frequency": 8628 + }, + { + "word": "lizard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a reptile with a long body and tail, typically four legs, and a movable eyelid", + "example_sentence_english": "A small lizard scurried across the rock.", + "pos": "noun", + "word_frequency": 8630 + }, + { + "word": "maximize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make as large or great as possible", + "example_sentence_english": "We need to maximize our profits this quarter.", + "pos": "verb", + "word_frequency": 8631 + }, + { + "word": "mp3", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a digital audio encoding format", + "example_sentence_english": "He downloaded an MP3 of the song.", + "pos": "noun", + "word_frequency": 8632 + }, + { + "word": "noel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christmas; a Christmas carol", + "example_sentence_english": "They sang a beautiful Noel.", + "pos": "noun", + "word_frequency": 8635 + }, + { + "word": "organizer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who arranges or plans an event or activity", + "example_sentence_english": "The event organizer did a great job.", + "pos": "noun", + "word_frequency": 8636 + }, + { + "word": "paradox", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a seemingly absurd or self-contradictory statement or proposition that may in fact be true or well-founded", + "example_sentence_english": "It's a paradox that standing still can make you feel tired.", + "pos": "noun", + "word_frequency": 8638 + }, + { + "word": "periodic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearing or occurring at intervals", + "example_sentence_english": "The doctor recommended periodic check-ups.", + "pos": "adjective", + "word_frequency": 8639 + }, + { + "word": "podium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a raised platform for a speaker or conductor", + "example_sentence_english": "The speaker stood on the podium to address the crowd.", + "pos": "noun", + "word_frequency": 8641 + }, + { + "word": "puck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a disc used in ice hockey", + "example_sentence_english": "The hockey player shot the puck into the net.", + "pos": "noun", + "word_frequency": 8643 + }, + { + "word": "reconsider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consider again, especially for a possible change of decision", + "example_sentence_english": "Please reconsider your decision to leave.", + "pos": "verb", + "word_frequency": 8644 + }, + { + "word": "refrain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stop oneself from doing something", + "example_sentence_english": "Please refrain from talking during the movie.", + "pos": "verb", + "word_frequency": 8646 + }, + { + "word": "reproduce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "produce a copy or something similar; produce offspring", + "example_sentence_english": "These animals reproduce very quickly.", + "pos": "verb", + "word_frequency": 8647 + }, + { + "word": "rite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a religious or other solemn ceremony or act", + "example_sentence_english": "The wedding was a beautiful rite of passage.", + "pos": "noun", + "word_frequency": 8648 + }, + { + "word": "rum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an alcoholic spirit distilled from sugar cane", + "example_sentence_english": "He ordered a glass of rum and coke.", + "pos": "noun", + "word_frequency": 8649 + }, + { + "word": "safari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an expedition to observe or hunt animals in their natural habitat", + "example_sentence_english": "They went on a safari in Kenya.", + "pos": "noun", + "word_frequency": 8651 + }, + { + "word": "scorer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who records points or goals in a game", + "example_sentence_english": "He was the top scorer in the basketball game.", + "pos": "noun", + "word_frequency": 8653 + }, + { + "word": "seldom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not often; rarely", + "example_sentence_english": "She seldom visits her relatives.", + "pos": "adverb", + "word_frequency": 8654 + }, + { + "word": "sis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sister (informal)", + "example_sentence_english": "My sis and I are going to the movies.", + "pos": "noun", + "word_frequency": 8656 + }, + { + "word": "soy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of bean or products made from it", + "example_sentence_english": "I prefer soy milk to cow's milk.", + "pos": "noun", + "word_frequency": 8657 + }, + { + "word": "squash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of vegetable; a racket sport", + "example_sentence_english": "We had roasted butternut squash for dinner.", + "pos": "noun", + "word_frequency": 8658 + }, + { + "word": "statewide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extending throughout a state", + "example_sentence_english": "The new law will have a statewide impact.", + "pos": "adj", + "word_frequency": 8659 + }, + { + "word": "stationary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not moving; fixed", + "example_sentence_english": "The car remained stationary at the red light.", + "pos": "adj", + "word_frequency": 8660 + }, + { + "word": "subdivision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a smaller part of a larger whole; a housing development", + "example_sentence_english": "The new subdivision has many houses.", + "pos": "noun", + "word_frequency": 8661 + }, + { + "word": "tar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dark, thick, sticky liquid", + "example_sentence_english": "The road was covered in fresh tar.", + "pos": "noun", + "word_frequency": 8663 + }, + { + "word": "tariff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tax or duty to be paid on a particular class of imports or exports", + "example_sentence_english": "The government imposed a new tariff on imported goods.", + "pos": "noun", + "word_frequency": 8664 + }, + { + "word": "temporal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to time; worldly rather than spiritual", + "example_sentence_english": "We live in a temporal world, subject to change.", + "pos": "adj", + "word_frequency": 8665 + }, + { + "word": "tracker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or person that tracks something", + "example_sentence_english": "The fitness tracker monitors my steps.", + "pos": "noun", + "word_frequency": 8666 + }, + { + "word": "turbine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine for producing continuous power in which a wheel or rotor is made to revolve by a fast-moving flow of water, steam, gas, or air", + "example_sentence_english": "Wind turbines generate electricity.", + "pos": "noun", + "word_frequency": 8667 + }, + { + "word": "unavailable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not able to be used or obtained; not at hand", + "example_sentence_english": "The product is currently unavailable.", + "pos": "adj", + "word_frequency": 8669 + }, + { + "word": "universally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by everyone; in every case", + "example_sentence_english": "His work is universally praised.", + "pos": "adv", + "word_frequency": 8670 + }, + { + "word": "unlucky", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having or bringing bad luck", + "example_sentence_english": "He felt unlucky after losing the game.", + "pos": "adj", + "word_frequency": 8671 + }, + { + "word": "uv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultraviolet (radiation)", + "example_sentence_english": "Wear sunscreen to protect against UV rays.", + "pos": "noun", + "word_frequency": 8672 + }, + { + "word": "vomit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eject matter from the stomach through the mouth", + "example_sentence_english": "He felt sick and had to vomit.", + "pos": "verb", + "word_frequency": 8673 + }, + { + "word": "warden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person responsible for the supervision of a particular place or thing", + "example_sentence_english": "The prison warden was very strict.", + "pos": "noun", + "word_frequency": 8674 + }, + { + "word": "warp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a distortion or twist in shape", + "example_sentence_english": "The heat caused the wood to warp.", + "pos": "noun", + "word_frequency": 8675 + }, + { + "word": "whisky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an alcoholic spirit distilled from fermented grain mash", + "example_sentence_english": "He enjoys a glass of whisky after dinner.", + "pos": "noun", + "word_frequency": 8676 + }, + { + "word": "womb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the uterus", + "example_sentence_english": "The baby develops in the mother's womb.", + "pos": "noun", + "word_frequency": 8677 + }, + { + "word": "yogurt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a semi-solid food made from fermented milk", + "example_sentence_english": "I eat yogurt for breakfast every day.", + "pos": "noun", + "word_frequency": 8678 + }, + { + "word": "abolish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formally put an end to", + "example_sentence_english": "The government plans to abolish the tax next year.", + "pos": "verb", + "word_frequency": 8680 + }, + { + "word": "alpine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to high mountains", + "example_sentence_english": "We enjoyed the stunning alpine scenery during our hike.", + "pos": "adj", + "word_frequency": 8682 + }, + { + "word": "ambient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the immediate surroundings", + "example_sentence_english": "The restaurant had a pleasant ambient lighting.", + "pos": "adj", + "word_frequency": 8683 + }, + { + "word": "aquatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to water", + "example_sentence_english": "Many aquatic plants grow in this pond.", + "pos": "adj", + "word_frequency": 8684 + }, + { + "word": "assert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state a fact or belief confidently and forcefully", + "example_sentence_english": "He asserted his innocence despite the evidence.", + "pos": "verb", + "word_frequency": 8686 + }, + { + "word": "atheist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who does not believe in God or gods", + "example_sentence_english": "She identifies as an atheist and does not follow any religion.", + "pos": "noun", + "word_frequency": 8687 + }, + { + "word": "bandwidth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the capacity for data transfer", + "example_sentence_english": "We need more bandwidth to stream high-definition videos.", + "pos": "noun", + "word_frequency": 8688 + }, + { + "word": "barbecue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a meal or party at which food is cooked outdoors on a grill", + "example_sentence_english": "We're having a barbecue in the garden this Saturday.", + "pos": "noun", + "word_frequency": 8689 + }, + { + "word": "beforehand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in advance; in anticipation", + "example_sentence_english": "Please prepare all the documents beforehand.", + "pos": "adv", + "word_frequency": 8690 + }, + { + "word": "bipolar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having two poles or extremes; relating to bipolar disorder", + "example_sentence_english": "The doctor diagnosed him with bipolar disorder.", + "pos": "adj", + "word_frequency": 8691 + }, + { + "word": "bladder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a membranous sac in animals that stores urine", + "example_sentence_english": "The human bladder can hold a significant amount of liquid.", + "pos": "noun", + "word_frequency": 8692 + }, + { + "word": "blossom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flower or a mass of flowers, especially on a tree or bush", + "example_sentence_english": "The cherry trees are covered in beautiful pink blossom.", + "pos": "noun", + "word_frequency": 8693 + }, + { + "word": "caravan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a vehicle equipped for living in, typically towed by a car", + "example_sentence_english": "They spent their holiday traveling in a caravan.", + "pos": "noun", + "word_frequency": 8694 + }, + { + "word": "chant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "say or shout repeatedly in a rhythmic way", + "example_sentence_english": "The crowd began to chant the team's name.", + "pos": "verb", + "word_frequency": 8695 + }, + { + "word": "compress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flatten by pressure; squeeze or press together", + "example_sentence_english": "You can compress the file to save space on your hard drive.", + "pos": "verb", + "word_frequency": 8698 + }, + { + "word": "computational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving computation", + "example_sentence_english": "The problem requires advanced computational methods to solve.", + "pos": "adj", + "word_frequency": 8699 + }, + { + "word": "conceptual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or based on concepts", + "example_sentence_english": "The artist's work is highly conceptual and thought-provoking.", + "pos": "adj", + "word_frequency": 8700 + }, + { + "word": "damp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slightly wet", + "example_sentence_english": "The clothes are still a bit damp, so don't put them away yet.", + "pos": "adj", + "word_frequency": 8701 + }, + { + "word": "debit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an entry recording an amount owed", + "example_sentence_english": "Please check your bank statement for the debit transaction.", + "pos": "noun", + "word_frequency": 8703 + }, + { + "word": "demolition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of demolishing", + "example_sentence_english": "The old building is scheduled for demolition next month.", + "pos": "noun", + "word_frequency": 8704 + }, + { + "word": "differentiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognize or ascertain what makes (someone or something) different", + "example_sentence_english": "It's hard to differentiate between the two identical twins.", + "pos": "verb", + "word_frequency": 8706 + }, + { + "word": "dim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not brightly lit", + "example_sentence_english": "The light in the room was very dim.", + "pos": "adj", + "word_frequency": 8707 + }, + { + "word": "discourage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause (someone) to lose confidence or enthusiasm", + "example_sentence_english": "Don't let one failure discourage you from trying again.", + "pos": "verb", + "word_frequency": 8708 + }, + { + "word": "donkey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a domesticated hoofed mammal of the horse family", + "example_sentence_english": "The farmer used a donkey to carry the heavy load.", + "pos": "noun", + "word_frequency": 8709 + }, + { + "word": "downstream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the direction in which a stream or river flows", + "example_sentence_english": "The boat drifted downstream with the current.", + "pos": "adv", + "word_frequency": 8711 + }, + { + "word": "earring", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of jewelry worn on the lobe or edge of the ear", + "example_sentence_english": "She lost one of her favorite earrings.", + "pos": "noun", + "word_frequency": 8712 + }, + { + "word": "empirical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on, concerned with, or verifiable by observation or experience rather than theory or pure logic", + "example_sentence_english": "The study provided strong empirical evidence for the theory.", + "pos": "adj", + "word_frequency": 8716 + }, + { + "word": "enlarge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make or become larger", + "example_sentence_english": "Can you enlarge this photo for me?", + "pos": "verb", + "word_frequency": 8717 + }, + { + "word": "faulty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working incorrectly or imperfectly", + "example_sentence_english": "The washing machine is faulty and needs to be repaired.", + "pos": "adj", + "word_frequency": 8719 + }, + { + "word": "fertile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productive, able to produce", + "example_sentence_english": "The fertile soil produced a rich harvest.", + "pos": "adj", + "word_frequency": 8720 + }, + { + "word": "feud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prolonged quarrel", + "example_sentence_english": "The two families had a long-standing feud.", + "pos": "noun", + "word_frequency": 8721 + }, + { + "word": "filmmaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes films", + "example_sentence_english": "The filmmaker presented his new documentary.", + "pos": "noun", + "word_frequency": 8722 + }, + { + "word": "furnace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a heating apparatus", + "example_sentence_english": "The old furnace needed to be repaired.", + "pos": "noun", + "word_frequency": 8724 + }, + { + "word": "fuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a safety device", + "example_sentence_english": "The lights went out because a fuse blew.", + "pos": "noun", + "word_frequency": 8725 + }, + { + "word": "fuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnecessary excitement or activity", + "example_sentence_english": "Don't make a fuss over such a small thing.", + "pos": "noun", + "word_frequency": 8726 + }, + { + "word": "gale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a very strong wind", + "example_sentence_english": "A strong gale swept across the coast.", + "pos": "noun", + "word_frequency": 8727 + }, + { + "word": "generosity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being kind and generous", + "example_sentence_english": "Her generosity was well known in the community.", + "pos": "noun", + "word_frequency": 8728 + }, + { + "word": "gluten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a protein found in grains", + "example_sentence_english": "Many people avoid foods containing gluten.", + "pos": "noun", + "word_frequency": 8730 + }, + { + "word": "gorilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large ape", + "example_sentence_english": "We saw a large gorilla at the zoo.", + "pos": "noun", + "word_frequency": 8732 + }, + { + "word": "heavyweight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing of great weight or importance", + "example_sentence_english": "He is a heavyweight champion in boxing.", + "pos": "noun", + "word_frequency": 8735 + }, + { + "word": "humane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing compassion", + "example_sentence_english": "They advocated for more humane treatment of animals.", + "pos": "adj", + "word_frequency": 8736 + }, + { + "word": "inflict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause something unpleasant to be suffered", + "example_sentence_english": "The storm inflicted severe damage on the town.", + "pos": "verb", + "word_frequency": 8737 + }, + { + "word": "lawful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conforming to the law", + "example_sentence_english": "It is a lawful requirement to wear a seatbelt.", + "pos": "adj", + "word_frequency": 8740 + }, + { + "word": "lawmaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes laws", + "example_sentence_english": "The lawmakers debated the new bill.", + "pos": "noun", + "word_frequency": 8741 + }, + { + "word": "loosely", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not tightly or firmly", + "example_sentence_english": "The rope was tied loosely.", + "pos": "adv", + "word_frequency": 8743 + }, + { + "word": "lotus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of aquatic plant", + "example_sentence_english": "The lotus flower is a symbol of purity.", + "pos": "noun", + "word_frequency": 8744 + }, + { + "word": "mantle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a loose cloak; a covering; a role or responsibility", + "example_sentence_english": "She took on the mantle of leadership.", + "pos": "noun", + "word_frequency": 8747 + }, + { + "word": "mascot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that brings good luck", + "example_sentence_english": "The team's mascot cheered on the crowd.", + "pos": "noun", + "word_frequency": 8748 + }, + { + "word": "metabolic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to metabolism", + "example_sentence_english": "Exercise can boost your metabolic rate.", + "pos": "adj", + "word_frequency": 8749 + }, + { + "word": "midfield", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the central part of a sports field", + "example_sentence_english": "He plays in midfield for the soccer team.", + "pos": "noun", + "word_frequency": 8752 + }, + { + "word": "militant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "combative and aggressive in support of a cause", + "example_sentence_english": "The group adopted a more militant approach.", + "pos": "adj", + "word_frequency": 8753 + }, + { + "word": "nostalgia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sentimental longing for the past", + "example_sentence_english": "He felt a wave of nostalgia for his childhood.", + "pos": "noun", + "word_frequency": 8756 + }, + { + "word": "ottoman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a low upholstered seat or footstool", + "example_sentence_english": "She rested her feet on the ottoman.", + "pos": "noun", + "word_frequency": 8757 + }, + { + "word": "paddy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a field where rice is grown", + "example_sentence_english": "The farmers worked in the paddy fields.", + "pos": "noun", + "word_frequency": 8758 + }, + { + "word": "paperback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book with flexible paper covers", + "example_sentence_english": "I prefer reading paperbacks to hardcovers.", + "pos": "noun", + "word_frequency": 8759 + }, + { + "word": "pave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cover (a road, path, etc.) with a hard, level surface", + "example_sentence_english": "The workers will pave the new road next week.", + "pos": "verb", + "word_frequency": 8760 + }, + { + "word": "pavilion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a light, open building or structure used for shelter, concerts, or exhibitions", + "example_sentence_english": "We took shelter from the rain under the park pavilion.", + "pos": "noun", + "word_frequency": 8761 + }, + { + "word": "perk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an advantage or benefit that you get because of your job", + "example_sentence_english": "Free coffee is a nice perk of working here.", + "pos": "noun", + "word_frequency": 8762 + }, + { + "word": "pointer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of advice or a hint; a long, thin stick used for pointing", + "example_sentence_english": "The teacher gave us a useful pointer for the exam.", + "pos": "noun", + "word_frequency": 8763 + }, + { + "word": "presume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suppose that something is true without proof", + "example_sentence_english": "I presume you're coming to the party tonight?", + "pos": "verb", + "word_frequency": 8764 + }, + { + "word": "rectangular", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having the shape of a rectangle", + "example_sentence_english": "The table has a rectangular top.", + "pos": "adj", + "word_frequency": 8767 + }, + { + "word": "regulator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or body that supervises and controls a system or industry", + "example_sentence_english": "The government appointed a new financial regulator.", + "pos": "noun", + "word_frequency": 8768 + }, + { + "word": "restructure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to organize something in a new way", + "example_sentence_english": "The company decided to restructure its departments.", + "pos": "verb", + "word_frequency": 8769 + }, + { + "word": "sabotage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of deliberately destroying, damaging, or obstructing something", + "example_sentence_english": "The police suspected sabotage was behind the factory fire.", + "pos": "noun", + "word_frequency": 8772 + }, + { + "word": "sarcasm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of irony to mock or convey contempt", + "example_sentence_english": "Her voice was full of sarcasm when she thanked him.", + "pos": "noun", + "word_frequency": 8773 + }, + { + "word": "savannah", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a grassy plain in tropical or subtropical regions, with few trees", + "example_sentence_english": "Lions roam freely across the African savannah.", + "pos": "noun", + "word_frequency": 8774 + }, + { + "word": "seeker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is looking for something", + "example_sentence_english": "He is a seeker of truth and knowledge.", + "pos": "noun", + "word_frequency": 8775 + }, + { + "word": "sexist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who believes in or practices sexism", + "example_sentence_english": "His comments were criticized as being sexist.", + "pos": "noun", + "word_frequency": 8776 + }, + { + "word": "shutdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cessation of operation or activity", + "example_sentence_english": "The government shutdown affected many public services.", + "pos": "noun", + "word_frequency": 8777 + }, + { + "word": "surpass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exceed; to be greater than", + "example_sentence_english": "His performance surpassed all expectations.", + "pos": "verb", + "word_frequency": 8781 + }, + { + "word": "tally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a current score or total", + "example_sentence_english": "Keep a tally of the votes as they come in.", + "pos": "noun", + "word_frequency": 8784 + }, + { + "word": "tuck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to push, fold, or turn something into a small space", + "example_sentence_english": "She tucked the blanket around the baby.", + "pos": "verb", + "word_frequency": 8788 + }, + { + "word": "unanimously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without opposition; with the agreement of all people involved", + "example_sentence_english": "The committee voted unanimously to approve the proposal.", + "pos": "adv", + "word_frequency": 8791 + }, + { + "word": "undefeated", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not defeated; having won every game or contest", + "example_sentence_english": "The team remained undefeated throughout the season.", + "pos": "adj", + "word_frequency": 8792 + }, + { + "word": "unfamiliar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not known or recognized", + "example_sentence_english": "The new city felt unfamiliar to her.", + "pos": "adj", + "word_frequency": 8793 + }, + { + "word": "vale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a valley", + "example_sentence_english": "The small village was nestled in a green vale.", + "pos": "noun", + "word_frequency": 8794 + }, + { + "word": "vastly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to a very great extent; immensely", + "example_sentence_english": "The new system is vastly superior to the old one.", + "pos": "adv", + "word_frequency": 8796 + }, + { + "word": "vile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely unpleasant; morally bad", + "example_sentence_english": "He made some vile comments about her.", + "pos": "adj", + "word_frequency": 8797 + }, + { + "word": "violently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that involves or is characterized by physical force intended to hurt, damage, or kill", + "example_sentence_english": "The storm raged violently through the night.", + "pos": "adv", + "word_frequency": 8798 + }, + { + "word": "wedge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of wood, metal, or other material having one thick end and one thin, sharp end", + "example_sentence_english": "He used a wooden wedge to split the log.", + "pos": "noun", + "word_frequency": 8799 + }, + { + "word": "wisely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a wise manner", + "example_sentence_english": "She wisely chose to save her money.", + "pos": "adv", + "word_frequency": 8800 + }, + { + "word": "adaptive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to adjust to new conditions", + "example_sentence_english": "Humans are highly adaptive creatures.", + "pos": "adj", + "word_frequency": 8802 + }, + { + "word": "addictive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing addiction", + "example_sentence_english": "Coffee can be quite addictive.", + "pos": "adj", + "word_frequency": 8803 + }, + { + "word": "affinity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a natural liking or attraction", + "example_sentence_english": "She has a strong affinity for classical music.", + "pos": "noun", + "word_frequency": 8804 + }, + { + "word": "alloy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mixture of metals", + "example_sentence_english": "Bronze is an alloy of copper and tin.", + "pos": "noun", + "word_frequency": 8805 + }, + { + "word": "apartheid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of institutionalized racial segregation and discrimination", + "example_sentence_english": "Apartheid was a brutal system in South Africa.", + "pos": "noun", + "word_frequency": 8806 + }, + { + "word": "arthritis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammation of a joint", + "example_sentence_english": "My grandmother suffers from arthritis in her hands.", + "pos": "noun", + "word_frequency": 8807 + }, + { + "word": "authorise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "give official permission for or to", + "example_sentence_english": "The manager will authorise the payment.", + "pos": "verb", + "word_frequency": 8808 + }, + { + "word": "bale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large bundle of raw material", + "example_sentence_english": "The farmer stacked the bales of hay.", + "pos": "noun", + "word_frequency": 8811 + }, + { + "word": "beaver", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large rodent known for building dams", + "example_sentence_english": "The beaver built a dam across the river.", + "pos": "noun", + "word_frequency": 8813 + }, + { + "word": "boast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "talk with excessive pride and self-satisfaction", + "example_sentence_english": "He likes to boast about his achievements.", + "pos": "verb", + "word_frequency": 8814 + }, + { + "word": "caller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who makes a phone call", + "example_sentence_english": "The caller hung up before I could answer.", + "pos": "noun", + "word_frequency": 8817 + }, + { + "word": "cavity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hollow space within a solid object or body", + "example_sentence_english": "The dentist found a cavity in my tooth.", + "pos": "noun", + "word_frequency": 8819 + }, + { + "word": "chap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man or boy", + "example_sentence_english": "He's a good chap, always willing to help.", + "pos": "noun", + "word_frequency": 8820 + }, + { + "word": "colt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a young male horse", + "example_sentence_english": "The mare had a beautiful colt.", + "pos": "noun", + "word_frequency": 8821 + }, + { + "word": "courthouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a building where legal cases are heard", + "example_sentence_english": "The trial took place at the courthouse.", + "pos": "noun", + "word_frequency": 8823 + }, + { + "word": "crank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a part of a machine that turns, or an eccentric person", + "example_sentence_english": "He turned the crank to start the engine.", + "pos": "noun", + "word_frequency": 8824 + }, + { + "word": "cv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curriculum vitae (a summary of one's education and work experience)", + "example_sentence_english": "Please attach your CV to the application.", + "pos": "noun", + "word_frequency": 8825 + }, + { + "word": "disgust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of revulsion or strong disapproval", + "example_sentence_english": "He felt a wave of disgust at the sight.", + "pos": "noun", + "word_frequency": 8829 + }, + { + "word": "dissolution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of dissolving or breaking up", + "example_sentence_english": "The dissolution of the partnership was amicable.", + "pos": "noun", + "word_frequency": 8830 + }, + { + "word": "disturbance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an interruption of peace or order", + "example_sentence_english": "There was a disturbance outside the bar.", + "pos": "noun", + "word_frequency": 8831 + }, + { + "word": "enclosure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area that is fenced off or surrounded", + "example_sentence_english": "The animals were kept in a large enclosure.", + "pos": "noun", + "word_frequency": 8834 + }, + { + "word": "evangelical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting a tradition within Protestant Christianity", + "example_sentence_english": "She belongs to an evangelical church.", + "pos": "adj", + "word_frequency": 8835 + }, + { + "word": "exquisite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely beautiful and delicate", + "example_sentence_english": "The painting was of exquisite beauty.", + "pos": "adj", + "word_frequency": 8836 + }, + { + "word": "factual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based on or concerned with fact", + "example_sentence_english": "Please provide only factual information.", + "pos": "adj", + "word_frequency": 8837 + }, + { + "word": "falsely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a false or incorrect manner", + "example_sentence_english": "He was falsely accused of the crime.", + "pos": "adv", + "word_frequency": 8838 + }, + { + "word": "famine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme scarcity of food", + "example_sentence_english": "The country suffered a severe famine.", + "pos": "noun", + "word_frequency": 8839 + }, + { + "word": "fraudulent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dishonest, deceitful", + "example_sentence_english": "The company was accused of fraudulent accounting practices.", + "pos": "adj", + "word_frequency": 8841 + }, + { + "word": "freeway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "highway", + "example_sentence_english": "We took the freeway to avoid city traffic.", + "pos": "noun", + "word_frequency": 8842 + }, + { + "word": "freshly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently, newly", + "example_sentence_english": "The bread was freshly baked this morning.", + "pos": "adv", + "word_frequency": 8843 + }, + { + "word": "gazette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "newspaper, official journal", + "example_sentence_english": "The announcement was published in the official gazette.", + "pos": "noun", + "word_frequency": 8844 + }, + { + "word": "geek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert or enthusiast in a specified field or activity", + "example_sentence_english": "He's a computer geek; he knows everything about programming.", + "pos": "noun", + "word_frequency": 8845 + }, + { + "word": "granny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandmother", + "example_sentence_english": "My granny always bakes the best cookies.", + "pos": "noun", + "word_frequency": 8847 + }, + { + "word": "handicap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disadvantage or impediment", + "example_sentence_english": "His lack of experience was a significant handicap in the competition.", + "pos": "noun", + "word_frequency": 8848 + }, + { + "word": "homage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "special honor or respect shown publicly", + "example_sentence_english": "The film is a clear homage to classic horror movies.", + "pos": "noun", + "word_frequency": 8851 + }, + { + "word": "hostility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfriendliness or opposition", + "example_sentence_english": "There was open hostility between the two rival teams.", + "pos": "noun", + "word_frequency": 8853 + }, + { + "word": "hymn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a religious song or poem of praise to God or a god", + "example_sentence_english": "The choir sang a beautiful hymn during the service.", + "pos": "noun", + "word_frequency": 8854 + }, + { + "word": "hypothetical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on a hypothesis; supposed", + "example_sentence_english": "Let's consider a hypothetical situation where we have unlimited resources.", + "pos": "adj", + "word_frequency": 8855 + }, + { + "word": "informative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing useful or interesting information", + "example_sentence_english": "The documentary was very informative and well-researched.", + "pos": "adj", + "word_frequency": 8856 + }, + { + "word": "infringement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a violation or breach of a law, agreement, or right", + "example_sentence_english": "Copyright infringement is a serious offense.", + "pos": "noun", + "word_frequency": 8857 + }, + { + "word": "internship", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of training spent in a company or organization", + "example_sentence_english": "She got an internship at a marketing firm for the summer.", + "pos": "noun", + "word_frequency": 8858 + }, + { + "word": "irritate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy or make angry; to make sore or inflamed", + "example_sentence_english": "His constant complaining really started to irritate me.", + "pos": "verb", + "word_frequency": 8859 + }, + { + "word": "jasmine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fragrant flower or plant", + "example_sentence_english": "The sweet scent of jasmine filled the garden.", + "pos": "noun", + "word_frequency": 8861 + }, + { + "word": "knockout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a blow that renders an opponent unconscious; a very attractive person", + "example_sentence_english": "The boxer won the fight with a powerful knockout in the third round.", + "pos": "noun", + "word_frequency": 8863 + }, + { + "word": "lantern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lamp with a transparent case protecting the flame or bulb", + "example_sentence_english": "We carried a lantern to light our way through the dark cave.", + "pos": "noun", + "word_frequency": 8864 + }, + { + "word": "linen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabric woven from flax fibers", + "example_sentence_english": "The bedsheets were made of soft, crisp linen.", + "pos": "noun", + "word_frequency": 8865 + }, + { + "word": "lookout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or place from which to keep watch; a watch", + "example_sentence_english": "One person stayed on lookout while the others searched the area.", + "pos": "noun", + "word_frequency": 8866 + }, + { + "word": "misunderstand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fail to understand correctly", + "example_sentence_english": "I think you misunderstand what I'm trying to say.", + "pos": "verb", + "word_frequency": 8867 + }, + { + "word": "moonlight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the light of the moon", + "example_sentence_english": "The garden was bathed in soft moonlight.", + "pos": "noun", + "word_frequency": 8868 + }, + { + "word": "moose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large deer with broad antlers", + "example_sentence_english": "We saw a large moose grazing by the side of the road.", + "pos": "noun", + "word_frequency": 8869 + }, + { + "word": "mosquito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small flying insect that bites", + "example_sentence_english": "A mosquito bit me on the arm, and now it's itchy.", + "pos": "noun", + "word_frequency": 8870 + }, + { + "word": "motel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a roadside hotel designed for motorists", + "example_sentence_english": "We stayed at a small motel on our road trip.", + "pos": "noun", + "word_frequency": 8871 + }, + { + "word": "noun", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a word that refers to a person, place, thing, or idea", + "example_sentence_english": "A 'table' is an example of a noun.", + "pos": "noun", + "word_frequency": 8874 + }, + { + "word": "novelist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who writes novels", + "example_sentence_english": "She dreams of becoming a famous novelist.", + "pos": "noun", + "word_frequency": 8875 + }, + { + "word": "onwards", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a continuing forward direction", + "example_sentence_english": "From this point onwards, we will focus on the next phase.", + "pos": "adv", + "word_frequency": 8878 + }, + { + "word": "overthrow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of overthrowing something, especially a government", + "example_sentence_english": "The rebels planned the overthrow of the corrupt regime.", + "pos": "noun", + "word_frequency": 8879 + }, + { + "word": "paradigm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a typical example or pattern of something", + "example_sentence_english": "The new discovery shifted the scientific paradigm.", + "pos": "noun", + "word_frequency": 8880 + }, + { + "word": "pavement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a paved surface, especially a sidewalk", + "example_sentence_english": "We walked along the pavement to the shop.", + "pos": "noun", + "word_frequency": 8881 + }, + { + "word": "payday", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the day on which a person receives their wages", + "example_sentence_english": "Everyone looks forward to payday.", + "pos": "noun", + "word_frequency": 8882 + }, + { + "word": "perpetual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "never ending or changing", + "example_sentence_english": "The perpetual motion machine is a theoretical concept.", + "pos": "adj", + "word_frequency": 8883 + }, + { + "word": "physiology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of the normal functions of living organisms", + "example_sentence_english": "She is studying human physiology at university.", + "pos": "noun", + "word_frequency": 8885 + }, + { + "word": "pigeon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a common grey bird", + "example_sentence_english": "A pigeon landed on the window sill.", + "pos": "noun", + "word_frequency": 8886 + }, + { + "word": "plateau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of relatively level high ground", + "example_sentence_english": "The hikers reached a high plateau after a long climb.", + "pos": "noun", + "word_frequency": 8887 + }, + { + "word": "playlist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a list of songs or videos", + "example_sentence_english": "I created a new playlist for my workout.", + "pos": "noun", + "word_frequency": 8888 + }, + { + "word": "precinct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a district of a city or town", + "example_sentence_english": "The police station is located in the central precinct.", + "pos": "noun", + "word_frequency": 8890 + }, + { + "word": "premiership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the position or period of office of a prime minister or premier; a top division in sports", + "example_sentence_english": "The team won the Premiership title last season.", + "pos": "noun", + "word_frequency": 8891 + }, + { + "word": "proliferation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rapid increase in numbers", + "example_sentence_english": "The proliferation of smartphones has changed communication.", + "pos": "noun", + "word_frequency": 8892 + }, + { + "word": "prosecute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institute legal proceedings against (a person or organization)", + "example_sentence_english": "The state decided to prosecute the suspect.", + "pos": "verb", + "word_frequency": 8893 + }, + { + "word": "pseudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not genuine; fake", + "example_sentence_english": "He presented a pseudo-scientific theory.", + "pos": "adj", + "word_frequency": 8894 + }, + { + "word": "pudding", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sweet dessert", + "example_sentence_english": "For dessert, we had chocolate pudding.", + "pos": "noun", + "word_frequency": 8895 + }, + { + "word": "refrigerator", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an appliance for keeping food cold", + "example_sentence_english": "Please put the milk back in the refrigerator.", + "pos": "noun", + "word_frequency": 8896 + }, + { + "word": "regeneration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of regenerating or being regenerated", + "example_sentence_english": "The city council is focused on urban regeneration.", + "pos": "noun", + "word_frequency": 8897 + }, + { + "word": "remembrance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of remembering something", + "example_sentence_english": "We observe a moment of silence in remembrance of those who died.", + "pos": "noun", + "word_frequency": 8899 + }, + { + "word": "reminiscent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to remind one of something", + "example_sentence_english": "Her style is reminiscent of the 1960s.", + "pos": "adj", + "word_frequency": 8900 + }, + { + "word": "resentment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitter indignation at having been treated unfairly", + "example_sentence_english": "He felt a deep resentment towards his former boss.", + "pos": "noun", + "word_frequency": 8901 + }, + { + "word": "resin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sticky flammable organic substance", + "example_sentence_english": "The tree bark oozed a sticky resin.", + "pos": "noun", + "word_frequency": 8902 + }, + { + "word": "rotary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolving around a central axis", + "example_sentence_english": "The rotary engine has a unique design.", + "pos": "adj", + "word_frequency": 8904 + }, + { + "word": "rusty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with rust; out of practice", + "example_sentence_english": "My French is a bit rusty.", + "pos": "adj", + "word_frequency": 8906 + }, + { + "word": "scarce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(especially of food, money, or some other resource) insufficient for the demand", + "example_sentence_english": "Water is scarce in the desert.", + "pos": "adj", + "word_frequency": 8907 + }, + { + "word": "simulator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine that simulates the controls and conditions of a vehicle or other device", + "example_sentence_english": "Pilots train on a flight simulator.", + "pos": "noun", + "word_frequency": 8908 + }, + { + "word": "slippery", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difficult to hold or stand on because smooth, wet, or greasy", + "example_sentence_english": "Be careful, the floor is very slippery.", + "pos": "adj", + "word_frequency": 8910 + }, + { + "word": "spectacle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a visually striking performance or display", + "example_sentence_english": "The fireworks display was a magnificent spectacle.", + "pos": "noun", + "word_frequency": 8912 + }, + { + "word": "stint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's fixed or allotted period of work", + "example_sentence_english": "He had a brief stint working in a restaurant.", + "pos": "noun", + "word_frequency": 8913 + }, + { + "word": "storey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a floor or level of a building", + "example_sentence_english": "The building has three storeys.", + "pos": "noun", + "word_frequency": 8914 + }, + { + "word": "suicidal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of suicide", + "example_sentence_english": "If you are feeling suicidal, please seek help.", + "pos": "adj", + "word_frequency": 8915 + }, + { + "word": "suv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sport Utility Vehicle", + "example_sentence_english": "We bought a new SUV for the family.", + "pos": "noun", + "word_frequency": 8916 + }, + { + "word": "symposium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a conference or meeting to discuss a particular subject", + "example_sentence_english": "The university hosted a symposium on climate change.", + "pos": "noun", + "word_frequency": 8917 + }, + { + "word": "tailor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose job is to make, alter, or repair clothes", + "example_sentence_english": "I took my suit to the tailor for alterations.", + "pos": "noun", + "word_frequency": 8918 + }, + { + "word": "trajectory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the path followed by a projectile or object moving through space", + "example_sentence_english": "The missile's trajectory was precisely calculated.", + "pos": "noun", + "word_frequency": 8920 + }, + { + "word": "underrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to underestimate the value or importance of", + "example_sentence_english": "Don't underrate the importance of practice.", + "pos": "verb", + "word_frequency": 8922 + }, + { + "word": "unidentified", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not recognized or identified", + "example_sentence_english": "An unidentified flying object was spotted in the sky.", + "pos": "adj", + "word_frequency": 8923 + }, + { + "word": "unrest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of dissatisfaction, disturbance, and agitation in a group of people, typically involving public demonstrations or disorder", + "example_sentence_english": "The country was experiencing political unrest.", + "pos": "noun", + "word_frequency": 8924 + }, + { + "word": "unseen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not seen or noticed", + "example_sentence_english": "The unseen forces were at work behind the scenes.", + "pos": "adj", + "word_frequency": 8925 + }, + { + "word": "utmost", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of the greatest possible degree; most extreme", + "example_sentence_english": "We must proceed with the utmost care.", + "pos": "adj", + "word_frequency": 8926 + }, + { + "word": "waiter", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a person whose job is to serve customers at their tables in a restaurant", + "example_sentence_english": "The waiter brought us the menu.", + "pos": "noun", + "word_frequency": 8927 + }, + { + "word": "weary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing tiredness, especially as a result of excessive exertion or lack of sleep", + "example_sentence_english": "After the long journey, she felt weary.", + "pos": "adj", + "word_frequency": 8928 + }, + { + "word": "adapter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for connecting pieces of equipment that cannot be connected directly", + "example_sentence_english": "I need an adapter for my laptop charger.", + "pos": "noun", + "word_frequency": 8935 + }, + { + "word": "adjustable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be changed to suit particular needs", + "example_sentence_english": "The chair has an adjustable height.", + "pos": "adj", + "word_frequency": 8936 + }, + { + "word": "adulthood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or condition of being an adult", + "example_sentence_english": "She reached adulthood and moved out.", + "pos": "noun", + "word_frequency": 8937 + }, + { + "word": "agony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme physical or mental suffering", + "example_sentence_english": "He was in agony after the accident.", + "pos": "noun", + "word_frequency": 8938 + }, + { + "word": "astronaut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who is trained to travel in a spacecraft", + "example_sentence_english": "The astronaut orbited the Earth.", + "pos": "noun", + "word_frequency": 8940 + }, + { + "word": "attain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to achieve or reach (a goal, status, or level)", + "example_sentence_english": "He worked hard to attain his goals.", + "pos": "verb", + "word_frequency": 8941 + }, + { + "word": "attendant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who helps or serves others", + "example_sentence_english": "A flight attendant helped me find my seat.", + "pos": "noun", + "word_frequency": 8942 + }, + { + "word": "authenticity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being authentic or genuine", + "example_sentence_english": "The authenticity of the painting was questioned.", + "pos": "noun", + "word_frequency": 8943 + }, + { + "word": "backstage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in or to the area behind the stage in a theater", + "example_sentence_english": "The actors waited backstage before the show.", + "pos": "adv", + "word_frequency": 8945 + }, + { + "word": "benchmark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a standard or point of reference against which things may be compared or assessed", + "example_sentence_english": "This new product sets a new benchmark for quality.", + "pos": "noun", + "word_frequency": 8947 + }, + { + "word": "binge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of uncontrolled indulgence in an activity, especially eating or drinking", + "example_sentence_english": "She went on a shopping binge.", + "pos": "noun", + "word_frequency": 8951 + }, + { + "word": "biscuit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small, flat, baked cake, typically crisp and sweet", + "example_sentence_english": "Would you like a biscuit with your tea?", + "pos": "noun", + "word_frequency": 8952 + }, + { + "word": "bloc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of countries or political parties with common interests who have formed an alliance", + "example_sentence_english": "The trade agreement was signed by the entire economic bloc.", + "pos": "noun", + "word_frequency": 8953 + }, + { + "word": "breaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that breaks something; a large wave", + "example_sentence_english": "The surfers rode the big breakers.", + "pos": "noun", + "word_frequency": 8955 + }, + { + "word": "breathtaking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonishing or awe-inspiring in quality, so as to take one's breath away", + "example_sentence_english": "The view from the mountain was breathtaking.", + "pos": "adj", + "word_frequency": 8956 + }, + { + "word": "browse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look through a number of books or magazines without reading everything; to look at goods in a shop without necessarily buying anything; to look at information on the internet", + "example_sentence_english": "I like to browse in bookstores.", + "pos": "verb", + "word_frequency": 8957 + }, + { + "word": "brutality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savage physical violence or great cruelty", + "example_sentence_english": "The police were accused of brutality.", + "pos": "noun", + "word_frequency": 8958 + }, + { + "word": "calculus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a branch of mathematics concerned with rates of change and accumulation", + "example_sentence_english": "She is studying calculus at university.", + "pos": "noun", + "word_frequency": 8959 + }, + { + "word": "careless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not paying enough attention or not thinking about what you are doing", + "example_sentence_english": "It was careless of him to leave the door unlocked.", + "pos": "adj", + "word_frequency": 8960 + }, + { + "word": "caste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of dividing society into hereditary classes", + "example_sentence_english": "The caste system in India has historically determined social status.", + "pos": "noun", + "word_frequency": 8961 + }, + { + "word": "cellar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room below ground level in a house, typically used for storing wine or coal", + "example_sentence_english": "We keep our old wine bottles in the cellar.", + "pos": "noun", + "word_frequency": 8962 + }, + { + "word": "cerebral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the brain or intellect", + "example_sentence_english": "The film was very cerebral and made you think deeply.", + "pos": "adj", + "word_frequency": 8963 + }, + { + "word": "cheerful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noticeably happy and optimistic", + "example_sentence_english": "She always has a cheerful smile on her face.", + "pos": "adj", + "word_frequency": 8964 + }, + { + "word": "cinematic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of films or the cinema", + "example_sentence_english": "The director achieved a truly cinematic experience with his new movie.", + "pos": "adj", + "word_frequency": 8965 + }, + { + "word": "climax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the most intense, exciting, or important point of something", + "example_sentence_english": "The story reached its climax in the final chapter.", + "pos": "noun", + "word_frequency": 8966 + }, + { + "word": "clipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fast sailing ship, or a tool for cutting", + "example_sentence_english": "He used nail clippers to trim his fingernails.", + "pos": "noun", + "word_frequency": 8967 + }, + { + "word": "cockpit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the compartment for the pilot and crew in an aircraft or spacecraft", + "example_sentence_english": "The pilot sat in the cockpit, preparing for takeoff.", + "pos": "noun", + "word_frequency": 8968 + }, + { + "word": "colon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a punctuation mark (:) used to introduce a list, quotation, or explanation", + "example_sentence_english": "Remember to use a colon before a list of items.", + "pos": "noun", + "word_frequency": 8969 + }, + { + "word": "communion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sharing or exchanging of intimate thoughts and feelings, especially when the exchange is on a spiritual level", + "example_sentence_english": "They felt a deep sense of communion during the silent prayer.", + "pos": "noun", + "word_frequency": 8970 + }, + { + "word": "condom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thin rubber sheath worn on the penis during sexual intercourse as a contraceptive or to prevent sexually transmitted infections", + "example_sentence_english": "Using a condom can prevent unwanted pregnancies.", + "pos": "noun", + "word_frequency": 8971 + }, + { + "word": "consul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official appointed by a state to live in a foreign city and protect the state's citizens and commercial interests there", + "example_sentence_english": "The consul helped the stranded tourists get new passports.", + "pos": "noun", + "word_frequency": 8972 + }, + { + "word": "contender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or group competing with others to achieve something", + "example_sentence_english": "She is a strong contender for the championship title.", + "pos": "noun", + "word_frequency": 8973 + }, + { + "word": "crimson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rich deep red color inclining to purple", + "example_sentence_english": "The sunset painted the sky in shades of crimson and orange.", + "pos": "adj", + "word_frequency": 8974 + }, + { + "word": "crypto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short for cryptocurrency", + "example_sentence_english": "Many people are investing in crypto these days.", + "pos": "noun", + "word_frequency": 8975 + }, + { + "word": "cultivate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prepare and use (land) for crops or gardening; try to acquire or develop (a quality, sentiment, or skill)", + "example_sentence_english": "She tried to cultivate a more positive attitude.", + "pos": "verb", + "word_frequency": 8976 + }, + { + "word": "curly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having curls or a curved shape", + "example_sentence_english": "She has beautiful curly hair.", + "pos": "adj", + "word_frequency": 8977 + }, + { + "word": "degradation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of something being damaged or made worse", + "example_sentence_english": "Environmental degradation is a serious global issue.", + "pos": "noun", + "word_frequency": 8978 + }, + { + "word": "emerald", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bright green precious stone", + "example_sentence_english": "She wore a necklace with a large emerald pendant.", + "pos": "noun", + "word_frequency": 8983 + }, + { + "word": "equilibrium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state in which opposing forces or influences are balanced", + "example_sentence_english": "The economy is trying to find a new equilibrium.", + "pos": "noun", + "word_frequency": 8984 + }, + { + "word": "evidently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearly; obviously", + "example_sentence_english": "Evidently, he was not happy with the decision.", + "pos": "adv", + "word_frequency": 8987 + }, + { + "word": "fetus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an unborn offspring of a mammal, in particular an unborn human baby more than eight weeks after conception", + "example_sentence_english": "The doctor monitored the development of the fetus.", + "pos": "noun", + "word_frequency": 8989 + }, + { + "word": "flawless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without any imperfections or defects; perfect", + "example_sentence_english": "Her performance was absolutely flawless.", + "pos": "adj", + "word_frequency": 8990 + }, + { + "word": "grad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a graduate", + "example_sentence_english": "She's a recent grad from university.", + "pos": "noun", + "word_frequency": 8992 + }, + { + "word": "granddaughter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the daughter of one's son or daughter", + "example_sentence_english": "My grandmother loves spending time with her granddaughter.", + "pos": "noun", + "word_frequency": 8993 + }, + { + "word": "gymnastic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical exercises designed to develop strength, flexibility, and coordination", + "example_sentence_english": "She trains hard for her gymnastic competitions.", + "pos": "noun", + "word_frequency": 8994 + }, + { + "word": "hale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of an old person) strong and healthy", + "example_sentence_english": "Despite his age, he remained hale and hearty.", + "pos": "adj", + "word_frequency": 8995 + }, + { + "word": "hereby", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "by this means; as a result of this", + "example_sentence_english": "I hereby declare the meeting open.", + "pos": "adv", + "word_frequency": 8997 + }, + { + "word": "humorous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing laughter and amusement; funny", + "example_sentence_english": "He told a very humorous story.", + "pos": "adj", + "word_frequency": 8999 + }, + { + "word": "incur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to experience something unpleasant as a result of one's own actions", + "example_sentence_english": "He incurred heavy losses in the stock market.", + "pos": "verb", + "word_frequency": 9000 + }, + { + "word": "indoors", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside a building", + "example_sentence_english": "It's raining, so we should play indoors.", + "pos": "adv", + "word_frequency": 9001 + }, + { + "word": "intercourse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "communication or dealings between individuals or groups", + "example_sentence_english": "International intercourse has increased significantly.", + "pos": "noun", + "word_frequency": 9002 + }, + { + "word": "interestingly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an interesting way", + "example_sentence_english": "Interestingly, the experiment yielded unexpected results.", + "pos": "adv", + "word_frequency": 9003 + }, + { + "word": "mare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female horse", + "example_sentence_english": "The mare galloped across the field.", + "pos": "noun", + "word_frequency": 9011 + }, + { + "word": "marxist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the theories of Karl Marx", + "example_sentence_english": "He holds strong Marxist views on economics.", + "pos": "adjective", + "word_frequency": 9012 + }, + { + "word": "meadow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of grassland, especially one used for hay", + "example_sentence_english": "The cows were grazing in the green meadow.", + "pos": "noun", + "word_frequency": 9013 + }, + { + "word": "mound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a raised mass of earth or stones", + "example_sentence_english": "The ancient burial mound was covered in grass.", + "pos": "noun", + "word_frequency": 9014 + }, + { + "word": "muddy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered in or full of mud", + "example_sentence_english": "After the rain, the path became very muddy.", + "pos": "adjective", + "word_frequency": 9015 + }, + { + "word": "mystic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to mysteries or spiritual truths", + "example_sentence_english": "She was drawn to the mystic traditions of the East.", + "pos": "adjective", + "word_frequency": 9016 + }, + { + "word": "nominal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in name only; very small", + "example_sentence_english": "He was the nominal head of the organization, but others made the decisions.", + "pos": "adjective", + "word_frequency": 9018 + }, + { + "word": "ordinance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a law or regulation", + "example_sentence_english": "The city council passed a new ordinance regarding parking.", + "pos": "noun", + "word_frequency": 9022 + }, + { + "word": "parson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a parish priest", + "example_sentence_english": "The parson delivered a sermon on Sunday.", + "pos": "noun", + "word_frequency": 9025 + }, + { + "word": "pertain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to relate to; be appropriate to", + "example_sentence_english": "The rules pertain to all members of the club.", + "pos": "verb", + "word_frequency": 9026 + }, + { + "word": "poke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jab or prod", + "example_sentence_english": "He poked me with his elbow.", + "pos": "verb", + "word_frequency": 9027 + }, + { + "word": "presbyterian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a Protestant church governed by elders", + "example_sentence_english": "She attends a Presbyterian church.", + "pos": "adjective", + "word_frequency": 9030 + }, + { + "word": "prick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small hole or mark made by a sharp object", + "example_sentence_english": "She felt a prick from the rose thorn.", + "pos": "noun", + "word_frequency": 9031 + }, + { + "word": "prolific", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "producing much fruit or foliage or many offspring; producing many works", + "example_sentence_english": "He was a prolific writer, publishing over 50 novels.", + "pos": "adjective", + "word_frequency": 9032 + }, + { + "word": "proportional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corresponding in size or amount to something else", + "example_sentence_english": "The punishment should be proportional to the crime.", + "pos": "adjective", + "word_frequency": 9033 + }, + { + "word": "prosperous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successful in material terms; flourishing financially", + "example_sentence_english": "The country enjoyed a prosperous economy.", + "pos": "adjective", + "word_frequency": 9034 + }, + { + "word": "quarry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place, typically a large, deep pit, from which stone or other materials are extracted", + "example_sentence_english": "The old quarry is now filled with water.", + "pos": "noun", + "word_frequency": 9035 + }, + { + "word": "referral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of sending someone to another person or place for treatment, help, or advice", + "example_sentence_english": "The doctor gave me a referral to a specialist.", + "pos": "noun", + "word_frequency": 9036 + }, + { + "word": "repost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to post something again, especially on social media", + "example_sentence_english": "Please don't repost my photos without permission.", + "pos": "verb", + "word_frequency": 9037 + }, + { + "word": "restless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unable to rest or relax as a result of anxiety or boredom", + "example_sentence_english": "The children became restless during the long car journey.", + "pos": "adjective", + "word_frequency": 9038 + }, + { + "word": "rugged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a broken, uneven, or jagged surface; strong and able to withstand hardship", + "example_sentence_english": "The hikers explored the rugged terrain of the mountains.", + "pos": "adjective", + "word_frequency": 9039 + }, + { + "word": "sap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The fluid that circulates in a plant; a foolish person", + "example_sentence_english": "Maple sap is collected in spring.", + "pos": "noun", + "word_frequency": 9041 + }, + { + "word": "sarcastic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Using irony to mock or convey contempt", + "example_sentence_english": "Her sarcastic comments often made people uncomfortable.", + "pos": "adjective", + "word_frequency": 9042 + }, + { + "word": "scholarly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Involving or relating to serious academic study", + "example_sentence_english": "He published a scholarly article on ancient history.", + "pos": "adjective", + "word_frequency": 9043 + }, + { + "word": "segregation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action or state of setting someone or something apart from others", + "example_sentence_english": "The civil rights movement fought against racial segregation.", + "pos": "noun", + "word_frequency": 9044 + }, + { + "word": "sheikh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An Arab leader, in particular the chief or head of an Arab tribe, family, or village", + "example_sentence_english": "The sheikh welcomed the visitors to his palace.", + "pos": "noun", + "word_frequency": 9046 + }, + { + "word": "sinister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Giving the impression that something harmful or evil is happening or will happen", + "example_sentence_english": "There was a sinister atmosphere in the old abandoned house.", + "pos": "adjective", + "word_frequency": 9048 + }, + { + "word": "strait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A narrow passage of water connecting two seas or two large areas of water", + "example_sentence_english": "The ship sailed through the narrow strait.", + "pos": "noun", + "word_frequency": 9049 + }, + { + "word": "testosterone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A steroid hormone that stimulates development of male secondary sexual characteristics", + "example_sentence_english": "Testosterone plays a key role in male development.", + "pos": "noun", + "word_frequency": 9051 + }, + { + "word": "ventilation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The provision of fresh air to a room or building", + "example_sentence_english": "Good ventilation is essential in a kitchen.", + "pos": "noun", + "word_frequency": 9053 + }, + { + "word": "weaver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who weaves fabric", + "example_sentence_english": "The weaver created beautiful patterns on the loom.", + "pos": "noun", + "word_frequency": 9054 + }, + { + "word": "yarn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Spun thread used for knitting, weaving, or sewing", + "example_sentence_english": "She knitted a scarf using soft wool yarn.", + "pos": "noun", + "word_frequency": 9058 + }, + { + "word": "abide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To accept or act in accordance with (a rule, decision, or recommendation)", + "example_sentence_english": "You must abide by the rules of the game.", + "pos": "verb", + "word_frequency": 9060 + }, + { + "word": "accumulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The acquisition or gradual gathering of something", + "example_sentence_english": "The accumulation of dust made the room look neglected.", + "pos": "noun", + "word_frequency": 9061 + }, + { + "word": "admiration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Respect and warm approval", + "example_sentence_english": "She expressed her admiration for his courage.", + "pos": "noun", + "word_frequency": 9062 + }, + { + "word": "attacker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who attacks someone or something", + "example_sentence_english": "The police are searching for the attacker.", + "pos": "noun", + "word_frequency": 9066 + }, + { + "word": "authoritarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Enforcing strict obedience to authority, especially that of the government, at the expense of personal freedom", + "example_sentence_english": "The country was ruled by an authoritarian regime.", + "pos": "adjective", + "word_frequency": 9068 + }, + { + "word": "avail", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To use or take advantage of (an opportunity or available resource)", + "example_sentence_english": "His efforts were of no avail.", + "pos": "verb", + "word_frequency": 9069 + }, + { + "word": "banquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An elaborate and formal meal for many people", + "example_sentence_english": "The king hosted a grand banquet for his guests.", + "pos": "noun", + "word_frequency": 9071 + }, + { + "word": "barker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who stands at the entrance to a show, carnival, etc., and calls out to passers-by to attract customers", + "example_sentence_english": "The barker shouted loudly to attract people to the circus tent.", + "pos": "noun", + "word_frequency": 9072 + }, + { + "word": "booty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Valuables or money obtained illegally or as plunder", + "example_sentence_english": "The pirates divided their stolen booty.", + "pos": "noun", + "word_frequency": 9075 + }, + { + "word": "bravery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Courageous behavior or character", + "example_sentence_english": "Her bravery in the face of danger was inspiring.", + "pos": "noun", + "word_frequency": 9076 + }, + { + "word": "brit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An informal term for a British person", + "example_sentence_english": "My friend is a Brit who loves tea.", + "pos": "noun", + "word_frequency": 9077 + }, + { + "word": "buff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Muscular and well-built; an enthusiast or expert", + "example_sentence_english": "He works out regularly and is very buff.", + "pos": "adjective", + "word_frequency": 9078 + }, + { + "word": "chamberlain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official who manages the household of a monarch or noble", + "example_sentence_english": "The chamberlain announced the arrival of the duke.", + "pos": "noun", + "word_frequency": 9080 + }, + { + "word": "claw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sharp, curved nail on the foot of an animal or bird", + "example_sentence_english": "The cat sharpened its claws on the scratching post.", + "pos": "noun", + "word_frequency": 9082 + }, + { + "word": "compatibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability of two things to exist or be used together without problems", + "example_sentence_english": "We checked the compatibility of the new software with our old system.", + "pos": "noun", + "word_frequency": 9083 + }, + { + "word": "conditional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject to one or more conditions or requirements", + "example_sentence_english": "The offer of employment is conditional on a successful background check.", + "pos": "adjective", + "word_frequency": 9084 + }, + { + "word": "congratulate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "express one's pleasure to (someone) at their success or good fortune", + "example_sentence_english": "I want to congratulate you on your excellent exam results.", + "pos": "verb", + "word_frequency": 9085 + }, + { + "word": "cortex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the outer layer of the cerebrum, composed of folded gray matter", + "example_sentence_english": "The brain's visual cortex processes information from the eyes.", + "pos": "noun", + "word_frequency": 9086 + }, + { + "word": "courageous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not deterred by danger or pain; brave", + "example_sentence_english": "It was a courageous decision to speak out against the injustice.", + "pos": "adjective", + "word_frequency": 9087 + }, + { + "word": "crusade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a vigorous campaign for political, social, or religious change", + "example_sentence_english": "She launched a crusade against plastic pollution.", + "pos": "noun", + "word_frequency": 9088 + }, + { + "word": "cynical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "believing that people are motivated by self-interest; distrustful of human sincerity", + "example_sentence_english": "His cynical attitude made it hard for him to trust anyone.", + "pos": "adjective", + "word_frequency": 9089 + }, + { + "word": "devise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plan or invent (a complex procedure, system, or mechanism) by careful thought", + "example_sentence_english": "They had to devise a new strategy to win the game.", + "pos": "verb", + "word_frequency": 9091 + }, + { + "word": "discard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "get rid of (someone or something) as no longer useful or desirable", + "example_sentence_english": "Please discard all old newspapers in the recycling bin.", + "pos": "verb", + "word_frequency": 9092 + }, + { + "word": "disrupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrupt (an event, activity, or process) by causing a disturbance or problem", + "example_sentence_english": "The loud music began to disrupt the class.", + "pos": "verb", + "word_frequency": 9093 + }, + { + "word": "duplicate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exactly like something else, especially a copy", + "example_sentence_english": "Make sure you don't create duplicate files on your computer.", + "pos": "adjective", + "word_frequency": 9095 + }, + { + "word": "dynamite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a high explosive consisting of nitroglycerine mixed with an absorbent material", + "example_sentence_english": "The engineers used dynamite to clear the rockslide.", + "pos": "noun", + "word_frequency": 9096 + }, + { + "word": "economical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "giving good value or service in relation to the amount of money, time, or effort spent", + "example_sentence_english": "Buying in bulk can be more economical in the long run.", + "pos": "adjective", + "word_frequency": 9097 + }, + { + "word": "elastic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to return to its original shape or size after being stretched or squeezed", + "example_sentence_english": "The waistband of these trousers is very elastic.", + "pos": "adjective", + "word_frequency": 9098 + }, + { + "word": "empower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "give (someone) the authority or power to do something", + "example_sentence_english": "Education can empower individuals to achieve their dreams.", + "pos": "verb", + "word_frequency": 9099 + }, + { + "word": "exposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a comprehensive description and explanation of an idea or theory", + "example_sentence_english": "The novel's exposition clearly set the scene for the story.", + "pos": "noun", + "word_frequency": 9100 + }, + { + "word": "fart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emit gas from the anus", + "example_sentence_english": "He tried to hold it in, but he accidentally farted.", + "pos": "verb", + "word_frequency": 9101 + }, + { + "word": "fetish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an excessive and irrational devotion or commitment to a particular thing", + "example_sentence_english": "He had a fetish for collecting antique typewriters.", + "pos": "noun", + "word_frequency": 9102 + }, + { + "word": "fluffy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered with, or resembling, fluff", + "example_sentence_english": "The kitten had soft, fluffy fur.", + "pos": "adjective", + "word_frequency": 9104 + }, + { + "word": "fundraiser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose job or task is to seek financial support for a charity or cause", + "example_sentence_english": "The school organized a fundraiser to buy new playground equipment.", + "pos": "noun", + "word_frequency": 9105 + }, + { + "word": "gadget", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small mechanical or electronic device or tool, especially an ingenious or novel one", + "example_sentence_english": "He loves buying the latest tech gadgets.", + "pos": "noun", + "word_frequency": 9107 + }, + { + "word": "gaga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enthusiastic or infatuated to an extravagant or irrational degree", + "example_sentence_english": "She's gone completely gaga over her new puppy.", + "pos": "adjective", + "word_frequency": 9108 + }, + { + "word": "garment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an item of clothing", + "example_sentence_english": "The store sells a wide range of garments for all ages.", + "pos": "noun", + "word_frequency": 9109 + }, + { + "word": "geometric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or denoting geometry", + "example_sentence_english": "The artist used bold geometric patterns in her design.", + "pos": "adjective", + "word_frequency": 9110 + }, + { + "word": "gracious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courteous, kind, and pleasant", + "example_sentence_english": "She was a gracious host, making everyone feel welcome.", + "pos": "adjective", + "word_frequency": 9112 + }, + { + "word": "grin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a broad smile", + "example_sentence_english": "He had a wide grin on his face after winning the race.", + "pos": "noun", + "word_frequency": 9113 + }, + { + "word": "heap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an untidy collection of things piled up", + "example_sentence_english": "There was a heap of clothes on the floor.", + "pos": "noun", + "word_frequency": 9117 + }, + { + "word": "hum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make a low, continuous, murmuring sound", + "example_sentence_english": "The refrigerator began to hum loudly.", + "pos": "verb", + "word_frequency": 9118 + }, + { + "word": "humility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of having a modest or low view of one's own importance", + "example_sentence_english": "Despite his success, he always showed great humility.", + "pos": "noun", + "word_frequency": 9119 + }, + { + "word": "impeachment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act of charging a public official with misconduct.", + "example_sentence_english": "The impeachment process began after the allegations surfaced.", + "pos": "noun", + "word_frequency": 9120 + }, + { + "word": "inventor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person who invents something.", + "example_sentence_english": "Thomas Edison was a famous inventor.", + "pos": "noun", + "word_frequency": 9121 + }, + { + "word": "kurdish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to the Kurds or their language.", + "example_sentence_english": "She is studying the Kurdish language.", + "pos": "adjective", + "word_frequency": 9127 + }, + { + "word": "leopard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A large wild cat with a spotted coat.", + "example_sentence_english": "The leopard is known for its speed.", + "pos": "noun", + "word_frequency": 9128 + }, + { + "word": "librarian", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person who works in a library.", + "example_sentence_english": "The librarian helped me find a book.", + "pos": "noun", + "word_frequency": 9129 + }, + { + "word": "lumber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Timber sawn into planks or boards.", + "example_sentence_english": "We bought some lumber to build the shed.", + "pos": "noun", + "word_frequency": 9130 + }, + { + "word": "madam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A polite form of address for a woman.", + "example_sentence_english": "\"Can I help you, madam?\" asked the shop assistant.", + "pos": "noun", + "word_frequency": 9133 + }, + { + "word": "marital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to marriage or the relationship between a husband and wife.", + "example_sentence_english": "They discussed their marital problems with a counselor.", + "pos": "adjective", + "word_frequency": 9134 + }, + { + "word": "multitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large number of people or things.", + "example_sentence_english": "A multitude of stars filled the night sky.", + "pos": "noun", + "word_frequency": 9138 + }, + { + "word": "muse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that inspires an artist.", + "example_sentence_english": "Her garden was her muse for her paintings.", + "pos": "noun", + "word_frequency": 9139 + }, + { + "word": "nanny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person, typically a woman, employed to look after a child in its own home.", + "example_sentence_english": "The nanny took the children to the park.", + "pos": "noun", + "word_frequency": 9140 + }, + { + "word": "nineteen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "The number 19.", + "example_sentence_english": "There are nineteen students in the class.", + "pos": "numeral", + "word_frequency": 9141 + }, + { + "word": "nipple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small projection in the center of the breast.", + "example_sentence_english": "The baby sucked on the bottle's nipple.", + "pos": "noun", + "word_frequency": 9142 + }, + { + "word": "nucleus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The central and most important part of an object, movement, or group.", + "example_sentence_english": "The nucleus is at the center of an atom.", + "pos": "noun", + "word_frequency": 9143 + }, + { + "word": "orbital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to an orbit.", + "example_sentence_english": "The satellite is in an orbital path around the Earth.", + "pos": "adjective", + "word_frequency": 9145 + }, + { + "word": "outgoing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Friendly and sociable; leaving a place.", + "example_sentence_english": "She has a very outgoing personality.", + "pos": "adjective", + "word_frequency": 9146 + }, + { + "word": "overhaul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A thorough examination and repair of machinery or a system.", + "example_sentence_english": "The car needed a complete overhaul.", + "pos": "noun", + "word_frequency": 9147 + }, + { + "word": "pancake", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "A flat cake, often thin and round, prepared from a batter.", + "example_sentence_english": "I had pancakes for breakfast.", + "pos": "noun", + "word_frequency": 9148 + }, + { + "word": "patriotism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Devotion to and vigorous support for one's country.", + "example_sentence_english": "His patriotism was evident in his actions.", + "pos": "noun", + "word_frequency": 9150 + }, + { + "word": "plumbing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The system of pipes, tanks, and fittings for water supply and sanitation.", + "example_sentence_english": "We had to call a plumber to fix the plumbing.", + "pos": "noun", + "word_frequency": 9151 + }, + { + "word": "poppy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A plant with bright red, orange, or yellow flowers.", + "example_sentence_english": "Red poppies grew in the field.", + "pos": "noun", + "word_frequency": 9152 + }, + { + "word": "precaution", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A measure taken in advance to prevent something dangerous or unpleasant.", + "example_sentence_english": "We took every precaution to ensure safety.", + "pos": "noun", + "word_frequency": 9154 + }, + { + "word": "readiness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state of being ready or prepared.", + "example_sentence_english": "The team showed great readiness for the competition.", + "pos": "noun", + "word_frequency": 9156 + }, + { + "word": "redundant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not or no longer needed or useful; superfluous.", + "example_sentence_english": "The old system became redundant after the upgrade.", + "pos": "adjective", + "word_frequency": 9157 + }, + { + "word": "resemblance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A similarity or likeness.", + "example_sentence_english": "There's a strong resemblance between the two sisters.", + "pos": "noun", + "word_frequency": 9158 + }, + { + "word": "sermon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a talk on a religious or moral subject", + "example_sentence_english": "The pastor delivered a powerful sermon on forgiveness.", + "pos": "noun", + "word_frequency": 9160 + }, + { + "word": "slender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gracefully thin", + "example_sentence_english": "She had a slender figure.", + "pos": "adjective", + "word_frequency": 9162 + }, + { + "word": "sloppy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careless and untidy", + "example_sentence_english": "His work was sloppy and full of errors.", + "pos": "adjective", + "word_frequency": 9163 + }, + { + "word": "societal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to society", + "example_sentence_english": "We need to address societal issues like poverty.", + "pos": "adjective", + "word_frequency": 9165 + }, + { + "word": "spec", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a detailed description of how something should be done, made, etc.", + "example_sentence_english": "The new product meets all the required specs.", + "pos": "noun", + "word_frequency": 9166 + }, + { + "word": "sponge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft, porous material used for washing", + "example_sentence_english": "Please wipe the counter with a sponge.", + "pos": "noun", + "word_frequency": 9167 + }, + { + "word": "sucker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is easily tricked or fooled", + "example_sentence_english": "Don't be a sucker and fall for that scam.", + "pos": "noun", + "word_frequency": 9169 + }, + { + "word": "superiority", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being superior", + "example_sentence_english": "He had a sense of intellectual superiority.", + "pos": "noun", + "word_frequency": 9170 + }, + { + "word": "supervise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to observe and direct the execution of a task or activity", + "example_sentence_english": "The manager supervises a team of ten employees.", + "pos": "verb", + "word_frequency": 9171 + }, + { + "word": "surreal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the qualities of surrealism; bizarre", + "example_sentence_english": "The dream felt incredibly surreal.", + "pos": "adjective", + "word_frequency": 9172 + }, + { + "word": "tease", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make fun of or provoke someone in a playful or unkind way", + "example_sentence_english": "Don't tease your little brother.", + "pos": "verb", + "word_frequency": 9173 + }, + { + "word": "titanic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of enormous size, strength, or power", + "example_sentence_english": "The company faced a titanic struggle to survive.", + "pos": "adjective", + "word_frequency": 9175 + }, + { + "word": "transmitter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that sends out radio or television signals", + "example_sentence_english": "The radio station uses a powerful transmitter.", + "pos": "noun", + "word_frequency": 9176 + }, + { + "word": "typhoon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tropical cyclone occurring in the region of the Philippines or the China Sea", + "example_sentence_english": "A strong typhoon is expected to hit the coast.", + "pos": "noun", + "word_frequency": 9177 + }, + { + "word": "unreal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not real; imaginary or illusory", + "example_sentence_english": "The special effects in the movie looked completely unreal.", + "pos": "adjective", + "word_frequency": 9178 + }, + { + "word": "uphold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maintain or support (a custom, principle, or law)", + "example_sentence_english": "It is important to uphold the law.", + "pos": "verb", + "word_frequency": 9179 + }, + { + "word": "vaccination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of vaccinating or being vaccinated", + "example_sentence_english": "Vaccination is crucial for public health.", + "pos": "noun", + "word_frequency": 9180 + }, + { + "word": "vibration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rapid back-and-forth movement", + "example_sentence_english": "We felt a strong vibration from the earthquake.", + "pos": "noun", + "word_frequency": 9182 + }, + { + "word": "wartime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period during which a war is being fought", + "example_sentence_english": "Many changes occur in society during wartime.", + "pos": "noun", + "word_frequency": 9183 + }, + { + "word": "abdominal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the abdomen", + "example_sentence_english": "He felt a sharp abdominal pain.", + "pos": "adjective", + "word_frequency": 9187 + }, + { + "word": "adolescent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to adolescence", + "example_sentence_english": "Adolescent behavior can be challenging.", + "pos": "adjective", + "word_frequency": 9188 + }, + { + "word": "advertiser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or company that advertises", + "example_sentence_english": "The advertiser paid a lot for the prime-time slot.", + "pos": "noun", + "word_frequency": 9189 + }, + { + "word": "announcer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who announces something, especially on radio or television", + "example_sentence_english": "The announcer read the news headlines.", + "pos": "noun", + "word_frequency": 9190 + }, + { + "word": "backdrop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a painted cloth hung at the back of a stage", + "example_sentence_english": "The mountains provided a stunning backdrop for the wedding photos.", + "pos": "noun", + "word_frequency": 9192 + }, + { + "word": "beau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a boyfriend or male admirer", + "example_sentence_english": "She introduced her new beau to her parents.", + "pos": "noun", + "word_frequency": 9194 + }, + { + "word": "blackout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period when all lights are off, usually due to a power failure", + "example_sentence_english": "The entire city experienced a blackout.", + "pos": "noun", + "word_frequency": 9195 + }, + { + "word": "bluff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an attempt to deceive someone into believing that one can do something that one cannot", + "example_sentence_english": "His threat was just a bluff.", + "pos": "noun", + "word_frequency": 9196 + }, + { + "word": "cartel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an association of manufacturers or suppliers with the purpose of maintaining prices at a high level and restricting competition", + "example_sentence_english": "The drug cartel controlled the entire region.", + "pos": "noun", + "word_frequency": 9198 + }, + { + "word": "catastrophic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving or causing sudden great damage or suffering", + "example_sentence_english": "The earthquake caused catastrophic damage.", + "pos": "adjective", + "word_frequency": 9199 + }, + { + "word": "caucus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a meeting of party members to choose candidates or decide policy", + "example_sentence_english": "The party members held a caucus to select their presidential nominee.", + "pos": "noun", + "word_frequency": 9200 + }, + { + "word": "charcoal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a black carbonaceous material obtained by heating wood or other organic substances in the absence of air", + "example_sentence_english": "We used charcoal to light the barbecue.", + "pos": "noun", + "word_frequency": 9201 + }, + { + "word": "cheesy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of poor quality; cheap or in bad taste", + "example_sentence_english": "The movie had some really cheesy special effects.", + "pos": "adjective", + "word_frequency": 9202 + }, + { + "word": "citrus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of fruit including oranges, lemons, and grapefruits", + "example_sentence_english": "Oranges are a type of citrus fruit.", + "pos": "noun", + "word_frequency": 9205 + }, + { + "word": "clad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clothed or covered", + "example_sentence_english": "The knight was clad in shining armor.", + "pos": "adjective", + "word_frequency": 9206 + }, + { + "word": "columnist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a journalist who writes a regular column in a newspaper or magazine", + "example_sentence_english": "She works as a political columnist for a national newspaper.", + "pos": "noun", + "word_frequency": 9207 + }, + { + "word": "competence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to do something successfully or efficiently", + "example_sentence_english": "His competence in the field is undeniable.", + "pos": "noun", + "word_frequency": 9208 + }, + { + "word": "condolence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expression of sympathy, especially on the occasion of death", + "example_sentence_english": "We offered our sincere condolences to the family.", + "pos": "noun", + "word_frequency": 9209 + }, + { + "word": "contagious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a disease) spread from one person or organism to another by direct or indirect contact", + "example_sentence_english": "The flu is a highly contagious illness.", + "pos": "adjective", + "word_frequency": 9210 + }, + { + "word": "courtroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room in which a court of law is held", + "example_sentence_english": "The lawyer presented his case in the courtroom.", + "pos": "noun", + "word_frequency": 9211 + }, + { + "word": "cushion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bag of cloth stuffed with soft material, used for sitting or kneeling on or for resting one's head", + "example_sentence_english": "She plumped up the cushion on the sofa.", + "pos": "noun", + "word_frequency": 9212 + }, + { + "word": "dictate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lay down authoritatively; prescribe", + "example_sentence_english": "The terms of the contract were dictated by the company.", + "pos": "verb", + "word_frequency": 9214 + }, + { + "word": "dorm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dormitory, especially at a college or university", + "example_sentence_english": "My sister lives in the college dorm.", + "pos": "noun", + "word_frequency": 9217 + }, + { + "word": "drip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small drop of a liquid", + "example_sentence_english": "There's a constant drip from the leaky faucet.", + "pos": "noun", + "word_frequency": 9218 + }, + { + "word": "duct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tube or channel for conveying a substance or fluid", + "example_sentence_english": "The air conditioning system uses large metal ducts.", + "pos": "noun", + "word_frequency": 9219 + }, + { + "word": "eccentric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a person or their behavior) unconventional and slightly strange", + "example_sentence_english": "My eccentric aunt always wears mismatched socks.", + "pos": "adjective", + "word_frequency": 9220 + }, + { + "word": "electromagnetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having both electric and magnetic properties", + "example_sentence_english": "Light is a form of electromagnetic radiation.", + "pos": "adjective", + "word_frequency": 9222 + }, + { + "word": "emblem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a symbolic object or design", + "example_sentence_english": "The dove is an emblem of peace.", + "pos": "noun", + "word_frequency": 9223 + }, + { + "word": "fascism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an authoritarian and nationalistic right-wing system of government and social organization", + "example_sentence_english": "The rise of fascism in the 20th century led to global conflict.", + "pos": "noun", + "word_frequency": 9226 + }, + { + "word": "fearful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling or showing fear or anxiety", + "example_sentence_english": "The child was fearful of the dark.", + "pos": "adjective", + "word_frequency": 9227 + }, + { + "word": "festive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to a festival, especially Christmas", + "example_sentence_english": "The town was decorated with festive lights for the holidays.", + "pos": "adjective", + "word_frequency": 9228 + }, + { + "word": "foreman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person in charge of a group of workers", + "example_sentence_english": "The construction foreman supervised the team.", + "pos": "noun", + "word_frequency": 9229 + }, + { + "word": "glacier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slowly moving mass or river of ice formed by the accumulation and compaction of snow on mountains or near the poles", + "example_sentence_english": "The glacier slowly moved down the valley.", + "pos": "noun", + "word_frequency": 9235 + }, + { + "word": "improper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not in accordance with accepted standards, especially of morals or honesty", + "example_sentence_english": "It was improper for him to discuss confidential information.", + "pos": "adjective", + "word_frequency": 9239 + }, + { + "word": "influx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mass arrival or inpouring", + "example_sentence_english": "There has been a large influx of tourists this summer.", + "pos": "noun", + "word_frequency": 9240 + }, + { + "word": "installment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one of several payments", + "example_sentence_english": "She paid for the car in monthly installments.", + "pos": "noun", + "word_frequency": 9241 + }, + { + "word": "kernel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the innermost part of a nut or seed", + "example_sentence_english": "The kernel of the argument was quite simple.", + "pos": "noun", + "word_frequency": 9245 + }, + { + "word": "larva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an immature form of an insect", + "example_sentence_english": "The caterpillar is the larva of a butterfly.", + "pos": "noun", + "word_frequency": 9247 + }, + { + "word": "liaison", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "communication or cooperation", + "example_sentence_english": "She acts as a liaison between the two departments.", + "pos": "noun", + "word_frequency": 9249 + }, + { + "word": "mosaic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a picture or pattern produced by arranging together small pieces of stone, tile, or glass", + "example_sentence_english": "The ancient church had beautiful mosaics on its walls.", + "pos": "noun", + "word_frequency": 9252 + }, + { + "word": "needy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requiring a lot of attention or help", + "example_sentence_english": "The charity helps needy families in the community.", + "pos": "adjective", + "word_frequency": 9256 + }, + { + "word": "orphan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a child whose parents are dead", + "example_sentence_english": "The story is about a young orphan who finds a new home.", + "pos": "noun", + "word_frequency": 9258 + }, + { + "word": "patty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flat, round piece of ground meat or other food", + "example_sentence_english": "I ordered a hamburger with an extra patty.", + "pos": "noun", + "word_frequency": 9259 + }, + { + "word": "pineapple", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large tropical fruit", + "example_sentence_english": "I love the sweet taste of fresh pineapple.", + "pos": "noun", + "word_frequency": 9261 + }, + { + "word": "plaintiff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who brings a case against another in a court of law", + "example_sentence_english": "The plaintiff sought damages for the injury.", + "pos": "noun", + "word_frequency": 9262 + }, + { + "word": "potassium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical element", + "example_sentence_english": "Bananas are a good source of potassium.", + "pos": "noun", + "word_frequency": 9263 + }, + { + "word": "priceless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so precious that its value cannot be determined", + "example_sentence_english": "The ancient artifact was considered priceless.", + "pos": "adjective", + "word_frequency": 9264 + }, + { + "word": "prostitute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who engages in sexual activity for payment", + "example_sentence_english": "The novel depicted the difficult life of a prostitute.", + "pos": "noun", + "word_frequency": 9265 + }, + { + "word": "reflective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capable of reflecting light or sound", + "example_sentence_english": "The cyclist wore a reflective vest for safety.", + "pos": "adjective", + "word_frequency": 9266 + }, + { + "word": "resilience", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the capacity to recover quickly from difficulties", + "example_sentence_english": "Her resilience helped her overcome many challenges.", + "pos": "noun", + "word_frequency": 9267 + }, + { + "word": "scissors", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tool for cutting", + "example_sentence_english": "Please pass me the scissors to cut this paper.", + "pos": "noun", + "word_frequency": 9272 + }, + { + "word": "seaside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place by the sea", + "example_sentence_english": "We spent our summer vacation at the seaside.", + "pos": "noun", + "word_frequency": 9273 + }, + { + "word": "shampoo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a liquid preparation for washing the hair", + "example_sentence_english": "I need to buy a new bottle of shampoo.", + "pos": "noun", + "word_frequency": 9275 + }, + { + "word": "staircase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of stairs", + "example_sentence_english": "The old house had a grand wooden staircase.", + "pos": "noun", + "word_frequency": 9279 + }, + { + "word": "steroid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steroid", + "example_sentence_english": "The doctor prescribed a steroid cream for the rash.", + "pos": "noun", + "word_frequency": 9280 + }, + { + "word": "swipe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swipe", + "example_sentence_english": "Please swipe your card to enter the building.", + "pos": "verb", + "word_frequency": 9281 + }, + { + "word": "tang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong taste or smell", + "example_sentence_english": "The lemon had a sharp tang.", + "pos": "noun", + "word_frequency": 9282 + }, + { + "word": "tango", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tango (a dance)", + "example_sentence_english": "They learned to dance the tango at the club.", + "pos": "noun", + "word_frequency": 9283 + }, + { + "word": "telecom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telecommunications", + "example_sentence_english": "The telecom industry is rapidly evolving.", + "pos": "noun", + "word_frequency": 9284 + }, + { + "word": "tolerant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tolerant", + "example_sentence_english": "She is very tolerant of other people's opinions.", + "pos": "adjective", + "word_frequency": 9285 + }, + { + "word": "toxicity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being toxic", + "example_sentence_english": "The report highlighted the toxicity of the chemical.", + "pos": "noun", + "word_frequency": 9286 + }, + { + "word": "trumpet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trumpet", + "example_sentence_english": "He plays the trumpet in the school band.", + "pos": "noun", + "word_frequency": 9287 + }, + { + "word": "tuberculosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tuberculosis (TB)", + "example_sentence_english": "Tuberculosis is a serious infectious disease.", + "pos": "noun", + "word_frequency": 9288 + }, + { + "word": "youthful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youthful", + "example_sentence_english": "Despite her age, she has a very youthful appearance.", + "pos": "adjective", + "word_frequency": 9291 + }, + { + "word": "adhere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stick firmly to; to follow", + "example_sentence_english": "Please adhere to the safety regulations.", + "pos": "verb", + "word_frequency": 9293 + }, + { + "word": "affirmative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affirmative; positive", + "example_sentence_english": "The answer was an affirmative 'yes'.", + "pos": "adjective", + "word_frequency": 9295 + }, + { + "word": "ambiguous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambiguous; unclear", + "example_sentence_english": "The instructions were ambiguous and difficult to follow.", + "pos": "adjective", + "word_frequency": 9298 + }, + { + "word": "archaeology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeology", + "example_sentence_english": "She is studying archaeology at university.", + "pos": "noun", + "word_frequency": 9299 + }, + { + "word": "autopsy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autopsy", + "example_sentence_english": "The cause of death was determined after the autopsy.", + "pos": "noun", + "word_frequency": 9302 + }, + { + "word": "baltic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Baltic (relating to the Baltic Sea); very cold (informal)", + "example_sentence_english": "It's absolutely baltic outside today.", + "pos": "adjective", + "word_frequency": 9303 + }, + { + "word": "blitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, intensive attack", + "example_sentence_english": "The police launched a blitz on illegal parking.", + "pos": "noun", + "word_frequency": 9304 + }, + { + "word": "blockade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blockade", + "example_sentence_english": "The port was under a naval blockade.", + "pos": "noun", + "word_frequency": 9305 + }, + { + "word": "brightness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brightness", + "example_sentence_english": "You can adjust the brightness of the screen.", + "pos": "noun", + "word_frequency": 9307 + }, + { + "word": "cartridge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartridge", + "example_sentence_english": "I need to replace the ink cartridge in my printer.", + "pos": "noun", + "word_frequency": 9310 + }, + { + "word": "cashier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cashier", + "example_sentence_english": "The cashier scanned all the items quickly.", + "pos": "noun", + "word_frequency": 9311 + }, + { + "word": "cigar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cigar", + "example_sentence_english": "He lit a large cigar after dinner.", + "pos": "noun", + "word_frequency": 9312 + }, + { + "word": "cloak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloak; a loose outer garment", + "example_sentence_english": "The mysterious figure wore a dark cloak.", + "pos": "noun", + "word_frequency": 9315 + }, + { + "word": "cologne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cologne (perfume for men)", + "example_sentence_english": "He put on some cologne before going out.", + "pos": "noun", + "word_frequency": 9316 + }, + { + "word": "combustion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "combustion", + "example_sentence_english": "Internal combustion engines are still widely used.", + "pos": "noun", + "word_frequency": 9318 + }, + { + "word": "comprehension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comprehension; understanding", + "example_sentence_english": "Reading comprehension is a key skill for students.", + "pos": "noun", + "word_frequency": 9319 + }, + { + "word": "crescent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a curved shape, tapering to a point at each end", + "example_sentence_english": "The moon was a thin crescent in the night sky.", + "pos": "noun", + "word_frequency": 9320 + }, + { + "word": "defective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperfect or faulty", + "example_sentence_english": "The company recalled the product due to a defective part.", + "pos": "adjective", + "word_frequency": 9321 + }, + { + "word": "deportation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of expelling a foreigner from a country", + "example_sentence_english": "The government ordered the deportation of undocumented immigrants.", + "pos": "noun", + "word_frequency": 9323 + }, + { + "word": "disposable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designed to be thrown away after use", + "example_sentence_english": "We use disposable plates for picnics to make cleanup easier.", + "pos": "adjective", + "word_frequency": 9324 + }, + { + "word": "dungeon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong underground prison cell", + "example_sentence_english": "The knight was locked in the castle dungeon.", + "pos": "noun", + "word_frequency": 9327 + }, + { + "word": "dwell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to live in or at a specified place", + "example_sentence_english": "He continues to dwell on his past mistakes.", + "pos": "verb", + "word_frequency": 9328 + }, + { + "word": "entrepreneurship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the activity of setting up a business or businesses, taking on financial risks in the hope of profit", + "example_sentence_english": "She is studying entrepreneurship at university.", + "pos": "noun", + "word_frequency": 9332 + }, + { + "word": "fiery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consisting of or resembling fire; passionate", + "example_sentence_english": "The sunset painted the sky with fiery colors.", + "pos": "adjective", + "word_frequency": 9335 + }, + { + "word": "finalist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or team that takes part in the final of a competition", + "example_sentence_english": "She was a finalist in the national spelling bee.", + "pos": "noun", + "word_frequency": 9336 + }, + { + "word": "flux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of continual change or movement", + "example_sentence_english": "The political situation is in a state of flux.", + "pos": "noun", + "word_frequency": 9337 + }, + { + "word": "goofy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silly; ridiculous", + "example_sentence_english": "He has a goofy sense of humor.", + "pos": "adjective", + "word_frequency": 9341 + }, + { + "word": "handwriting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the character or style of a person's writing", + "example_sentence_english": "Her handwriting is very neat and easy to read.", + "pos": "noun", + "word_frequency": 9344 + }, + { + "word": "hassle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an annoying inconvenience", + "example_sentence_english": "Dealing with customer service was a real hassle.", + "pos": "noun", + "word_frequency": 9345 + }, + { + "word": "heartbreaking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing overwhelming sadness or grief", + "example_sentence_english": "The news of the accident was absolutely heartbreaking.", + "pos": "adjective", + "word_frequency": 9346 + }, + { + "word": "hog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pig, especially a castrated male pig raised for meat; to take or use a disproportionate share of something", + "example_sentence_english": "He tends to hog the remote control.", + "pos": "noun", + "word_frequency": 9349 + }, + { + "word": "homeowner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who owns a house", + "example_sentence_english": "The homeowner is responsible for maintaining the property.", + "pos": "noun", + "word_frequency": 9350 + }, + { + "word": "immensely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to a great extent; extremely", + "example_sentence_english": "She was immensely grateful for their help.", + "pos": "adverb", + "word_frequency": 9352 + }, + { + "word": "inauguration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the beginning or introduction of a system, policy, or period; a formal ceremony to mark the beginning of a public official's term of office", + "example_sentence_english": "The inauguration of the new president will take place next month.", + "pos": "noun", + "word_frequency": 9353 + }, + { + "word": "incorrectly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that is not correct or true", + "example_sentence_english": "He answered the question incorrectly.", + "pos": "adverb", + "word_frequency": 9354 + }, + { + "word": "indicative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving as a sign or indication of something", + "example_sentence_english": "His silence was indicative of his disapproval.", + "pos": "adjective", + "word_frequency": 9356 + }, + { + "word": "inexpensive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not costing a lot of money; cheap", + "example_sentence_english": "We found an inexpensive restaurant for dinner.", + "pos": "adjective", + "word_frequency": 9357 + }, + { + "word": "intercept", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obstruct (someone or something) so as to prevent them from continuing to a destination", + "example_sentence_english": "The police managed to intercept the package before it reached its destination.", + "pos": "verb", + "word_frequency": 9358 + }, + { + "word": "intuitive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy to understand or use; based on intuition rather than logic", + "example_sentence_english": "The new software has a very intuitive interface.", + "pos": "adjective", + "word_frequency": 9359 + }, + { + "word": "jamaican", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Jamaica", + "example_sentence_english": "She loves Jamaican music.", + "pos": "adjective", + "word_frequency": 9362 + }, + { + "word": "jockey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horse rider in races", + "example_sentence_english": "The jockey wore a colorful silk uniform.", + "pos": "noun", + "word_frequency": 9363 + }, + { + "word": "jolly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happy and cheerful", + "example_sentence_english": "He was a jolly old man who always told jokes.", + "pos": "adjective", + "word_frequency": 9364 + }, + { + "word": "kenyan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Kenya", + "example_sentence_english": "She met a Kenyan runner at the marathon.", + "pos": "adjective", + "word_frequency": 9368 + }, + { + "word": "latitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distance north or south of the equator", + "example_sentence_english": "The city is located at a high latitude.", + "pos": "noun", + "word_frequency": 9369 + }, + { + "word": "libertarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "person advocating liberty", + "example_sentence_english": "He identifies as a libertarian, believing in minimal government intervention.", + "pos": "noun", + "word_frequency": 9371 + }, + { + "word": "majestic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impressive and beautiful", + "example_sentence_english": "The majestic mountains rose high above the valley.", + "pos": "adjective", + "word_frequency": 9373 + }, + { + "word": "mariner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sailor", + "example_sentence_english": "The old mariner told tales of his voyages across the sea.", + "pos": "noun", + "word_frequency": 9374 + }, + { + "word": "mastery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comprehensive knowledge or skill", + "example_sentence_english": "Achieving mastery in a language takes years of practice.", + "pos": "noun", + "word_frequency": 9375 + }, + { + "word": "metropolis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "large, important city", + "example_sentence_english": "New York City is a bustling metropolis.", + "pos": "noun", + "word_frequency": 9377 + }, + { + "word": "mummy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserved dead body; mother (UK informal)", + "example_sentence_english": "Ancient Egyptians preserved bodies as mummies.", + "pos": "noun", + "word_frequency": 9379 + }, + { + "word": "orchard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area of fruit trees", + "example_sentence_english": "We picked apples in the old orchard.", + "pos": "noun", + "word_frequency": 9383 + }, + { + "word": "overdose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessive dose of a drug", + "example_sentence_english": "He was rushed to the hospital after an overdose.", + "pos": "noun", + "word_frequency": 9384 + }, + { + "word": "pathology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "study of diseases", + "example_sentence_english": "The doctor specialized in pathology, studying the causes and effects of diseases.", + "pos": "noun", + "word_frequency": 9386 + }, + { + "word": "piercing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharp or intense", + "example_sentence_english": "Her piercing blue eyes seemed to look right through me.", + "pos": "adjective", + "word_frequency": 9388 + }, + { + "word": "poisonous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "producing poison", + "example_sentence_english": "Some mushrooms are poisonous and should not be eaten.", + "pos": "adjective", + "word_frequency": 9389 + }, + { + "word": "procession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group moving in an orderly way", + "example_sentence_english": "The funeral procession moved slowly down the street.", + "pos": "noun", + "word_frequency": 9390 + }, + { + "word": "purge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remove or cleanse", + "example_sentence_english": "The new leader promised to purge corruption from the government.", + "pos": "verb", + "word_frequency": 9391 + }, + { + "word": "relocation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act of moving to a new place", + "example_sentence_english": "The company offered a relocation package to its employees.", + "pos": "noun", + "word_frequency": 9392 + }, + { + "word": "rhino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhinoceros", + "example_sentence_english": "We saw a rhino at the zoo.", + "pos": "noun", + "word_frequency": 9393 + }, + { + "word": "riches", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great wealth or valuable possessions", + "example_sentence_english": "He inherited vast riches from his ancestors.", + "pos": "noun", + "word_frequency": 9394 + }, + { + "word": "rosemary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aromatic herb", + "example_sentence_english": "Rosemary is often used to flavor roasted potatoes.", + "pos": "noun", + "word_frequency": 9395 + }, + { + "word": "sandstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "type of rock", + "example_sentence_english": "The ancient temple was built from red sandstone.", + "pos": "noun", + "word_frequency": 9396 + }, + { + "word": "sanitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public health conditions related to clean water and waste disposal", + "example_sentence_english": "Improved sanitation is crucial for preventing disease.", + "pos": "noun", + "word_frequency": 9397 + }, + { + "word": "satisfactory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acceptable or adequate", + "example_sentence_english": "The results of the experiment were satisfactory.", + "pos": "adjective", + "word_frequency": 9398 + }, + { + "word": "scooter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "two-wheeled vehicle", + "example_sentence_english": "He rode his scooter to the park.", + "pos": "noun", + "word_frequency": 9399 + }, + { + "word": "secrecy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being kept secret", + "example_sentence_english": "The project was shrouded in secrecy.", + "pos": "noun", + "word_frequency": 9400 + }, + { + "word": "shameful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing shame", + "example_sentence_english": "His behavior was truly shameful.", + "pos": "adjective", + "word_frequency": 9402 + }, + { + "word": "sweetie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a term of endearment", + "example_sentence_english": "Come here, sweetie, and give me a hug.", + "pos": "noun", + "word_frequency": 9406 + }, + { + "word": "swollen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enlarged by swelling", + "example_sentence_english": "Her ankle was swollen after the fall.", + "pos": "adjective", + "word_frequency": 9407 + }, + { + "word": "tor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a high, rocky hill or peak", + "example_sentence_english": "We hiked up to the tor to see the view.", + "pos": "noun", + "word_frequency": 9409 + }, + { + "word": "transformer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that changes voltage; a robot that can change form", + "example_sentence_english": "The electrical transformer hummed loudly.", + "pos": "noun", + "word_frequency": 9410 + }, + { + "word": "unauthorized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having official permission", + "example_sentence_english": "Unauthorized access is strictly forbidden.", + "pos": "adjective", + "word_frequency": 9413 + }, + { + "word": "undo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reverse the effect of an action", + "example_sentence_english": "I wish I could undo that mistake.", + "pos": "verb", + "word_frequency": 9414 + }, + { + "word": "unnamed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not identified by name", + "example_sentence_english": "An unnamed source provided the information.", + "pos": "adjective", + "word_frequency": 9415 + }, + { + "word": "venom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisonous fluid secreted by animals", + "example_sentence_english": "The snake injected its venom into the mouse.", + "pos": "noun", + "word_frequency": 9416 + }, + { + "word": "victorious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having won a victory", + "example_sentence_english": "The team was victorious in the final match.", + "pos": "adjective", + "word_frequency": 9417 + }, + { + "word": "wary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feeling or showing caution about possible dangers", + "example_sentence_english": "She was wary of strangers.", + "pos": "adjective", + "word_frequency": 9418 + }, + { + "word": "wellness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being in good health", + "example_sentence_english": "The company promotes employee wellness programs.", + "pos": "noun", + "word_frequency": 9419 + }, + { + "word": "windy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "characterized by strong winds", + "example_sentence_english": "It was a very windy day at the beach.", + "pos": "adjective", + "word_frequency": 9420 + }, + { + "word": "winger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player in a wing position in sports", + "example_sentence_english": "The winger scored a brilliant goal.", + "pos": "noun", + "word_frequency": 9421 + }, + { + "word": "youngster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a young person", + "example_sentence_english": "The youngsters enjoyed playing in the park.", + "pos": "noun", + "word_frequency": 9423 + }, + { + "word": "abdomen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of the body containing the digestive organs", + "example_sentence_english": "He felt a pain in his abdomen.", + "pos": "noun", + "word_frequency": 9426 + }, + { + "word": "abduct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to take someone away illegally by force", + "example_sentence_english": "The police are investigating a case where a child was abducted.", + "pos": "verb", + "word_frequency": 9427 + }, + { + "word": "abruptly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suddenly and unexpectedly", + "example_sentence_english": "The car stopped abruptly.", + "pos": "adverb", + "word_frequency": 9428 + }, + { + "word": "antarctic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Antarctic or South Pole", + "example_sentence_english": "The Antarctic ice sheet is melting.", + "pos": "adjective", + "word_frequency": 9433 + }, + { + "word": "antibody", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a protein produced by the body to fight disease", + "example_sentence_english": "Antibodies help the body fight infections.", + "pos": "noun", + "word_frequency": 9434 + }, + { + "word": "aquarium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a transparent tank of water for fish", + "example_sentence_english": "We visited the large aquarium at the zoo.", + "pos": "noun", + "word_frequency": 9435 + }, + { + "word": "aspire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to direct one's hopes or ambitions towards achieving something", + "example_sentence_english": "She aspires to become a doctor.", + "pos": "verb", + "word_frequency": 9437 + }, + { + "word": "asteroid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small rocky body orbiting the sun", + "example_sentence_english": "Scientists are tracking a large asteroid.", + "pos": "noun", + "word_frequency": 9438 + }, + { + "word": "batter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hit repeatedly with force", + "example_sentence_english": "The strong winds began to batter the small boat.", + "pos": "verb", + "word_frequency": 9440 + }, + { + "word": "bedtime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the time when one usually goes to bed", + "example_sentence_english": "It's almost bedtime for the children.", + "pos": "noun", + "word_frequency": 9442 + }, + { + "word": "belonging", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sense of being accepted; possessions", + "example_sentence_english": "She felt a strong sense of belonging in the new community.", + "pos": "noun", + "word_frequency": 9443 + }, + { + "word": "blush", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to become red in the face from embarrassment or shame", + "example_sentence_english": "She would always blush when he complimented her.", + "pos": "verb", + "word_frequency": 9445 + }, + { + "word": "booster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that increases strength or effectiveness", + "example_sentence_english": "He received a booster shot for the vaccine.", + "pos": "noun", + "word_frequency": 9446 + }, + { + "word": "bun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, often sweet, bread roll", + "example_sentence_english": "I had a hot dog in a bun for lunch.", + "pos": "noun", + "word_frequency": 9447 + }, + { + "word": "calculator", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device used for mathematical calculations", + "example_sentence_english": "I used a calculator to check my math homework.", + "pos": "noun", + "word_frequency": 9448 + }, + { + "word": "calmly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a quiet and peaceful manner", + "example_sentence_english": "She calmly explained the situation to the police.", + "pos": "adverb", + "word_frequency": 9449 + }, + { + "word": "captivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being imprisoned or confined", + "example_sentence_english": "The animal spent its entire life in captivity.", + "pos": "noun", + "word_frequency": 9450 + }, + { + "word": "catastrophe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an event causing great and often sudden damage or suffering; a disaster", + "example_sentence_english": "The earthquake was a complete catastrophe for the region.", + "pos": "noun", + "word_frequency": 9451 + }, + { + "word": "chemotherapy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug treatment for cancer", + "example_sentence_english": "She had to undergo chemotherapy to treat her illness.", + "pos": "noun", + "word_frequency": 9452 + }, + { + "word": "circulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move continuously or freely through a closed system or area", + "example_sentence_english": "The fan helps to circulate the air in the room.", + "pos": "verb", + "word_frequency": 9453 + }, + { + "word": "cleanse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something thoroughly clean", + "example_sentence_english": "She used a special soap to cleanse her skin.", + "pos": "verb", + "word_frequency": 9454 + }, + { + "word": "commute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to travel some distance regularly between one's home and place of work or study", + "example_sentence_english": "He commutes to work by train every day.", + "pos": "verb", + "word_frequency": 9455 + }, + { + "word": "complementary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combining in such a way as to enhance or emphasize the qualities of each other", + "example_sentence_english": "The two colors are complementary and look good together.", + "pos": "adjective", + "word_frequency": 9456 + }, + { + "word": "concussion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a temporary unconsciousness or confusion caused by a blow to the head", + "example_sentence_english": "The football player suffered a concussion after the hard tackle.", + "pos": "noun", + "word_frequency": 9457 + }, + { + "word": "connectivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being connected or interconnected", + "example_sentence_english": "The hotel offers free Wi-Fi connectivity for guests.", + "pos": "noun", + "word_frequency": 9458 + }, + { + "word": "consulate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the place or building in which a consul works", + "example_sentence_english": "I had to visit the consulate to renew my passport.", + "pos": "noun", + "word_frequency": 9459 + }, + { + "word": "contend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assert something as a position in an argument; to struggle to surmount", + "example_sentence_english": "The lawyers will contend that their client is innocent.", + "pos": "verb", + "word_frequency": 9460 + }, + { + "word": "crave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel a powerful desire for something", + "example_sentence_english": "After a long day, I always crave a hot cup of tea.", + "pos": "verb", + "word_frequency": 9461 + }, + { + "word": "culinary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to cooking", + "example_sentence_english": "He attended a prestigious culinary school.", + "pos": "adjective", + "word_frequency": 9462 + }, + { + "word": "din", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a loud, unpleasant, and prolonged noise", + "example_sentence_english": "The din of the city traffic kept me awake.", + "pos": "noun", + "word_frequency": 9463 + }, + { + "word": "discrete", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "individually separate and distinct", + "example_sentence_english": "The company has several discrete departments.", + "pos": "adjective", + "word_frequency": 9465 + }, + { + "word": "dissent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hold or express opinions that are at variance with those previously, commonly, or officially expressed", + "example_sentence_english": "Three judges dissented from the majority decision.", + "pos": "verb", + "word_frequency": 9466 + }, + { + "word": "eminent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "famous and respected within a particular sphere or profession", + "example_sentence_english": "He is an eminent scholar in the field of history.", + "pos": "adjective", + "word_frequency": 9468 + }, + { + "word": "encryption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of converting information or data into a code, especially to prevent unauthorized access", + "example_sentence_english": "The company uses strong encryption to protect customer data.", + "pos": "noun", + "word_frequency": 9469 + }, + { + "word": "endeavor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to try hard to do or achieve something", + "example_sentence_english": "We must endeavor to improve our services.", + "pos": "verb", + "word_frequency": 9470 + }, + { + "word": "enthusiast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is very interested in a particular activity or subject", + "example_sentence_english": "He is a keen car enthusiast.", + "pos": "noun", + "word_frequency": 9471 + }, + { + "word": "flop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall, drop, or hang loosely; to fail completely", + "example_sentence_english": "The movie was a complete flop at the box office.", + "pos": "verb", + "word_frequency": 9474 + }, + { + "word": "fraternity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of people sharing a common profession or interests; a male student organization", + "example_sentence_english": "He joined a fraternity when he went to college.", + "pos": "noun", + "word_frequency": 9475 + }, + { + "word": "furry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with fur", + "example_sentence_english": "The cat has soft, furry paws.", + "pos": "adjective", + "word_frequency": 9476 + }, + { + "word": "glitter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shine with a sparkling light", + "example_sentence_english": "The snow glittered in the sunlight.", + "pos": "verb", + "word_frequency": 9477 + }, + { + "word": "graveyard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a burial ground, especially one beside a church", + "example_sentence_english": "The old church had a small graveyard next to it.", + "pos": "noun", + "word_frequency": 9478 + }, + { + "word": "hardship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severe suffering or privation", + "example_sentence_english": "The family faced many hardships during the war.", + "pos": "noun", + "word_frequency": 9479 + }, + { + "word": "hen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female chicken", + "example_sentence_english": "The hen laid an egg this morning.", + "pos": "noun", + "word_frequency": 9481 + }, + { + "word": "insecurity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of confidence or safety", + "example_sentence_english": "His insecurity made him hesitant to speak in public.", + "pos": "noun", + "word_frequency": 9483 + }, + { + "word": "interrogation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of questioning someone thoroughly", + "example_sentence_english": "The suspect underwent a long interrogation at the police station.", + "pos": "noun", + "word_frequency": 9484 + }, + { + "word": "intimidate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frighten or overawe someone", + "example_sentence_english": "Don't let his size intimidate you; stand your ground.", + "pos": "verb", + "word_frequency": 9485 + }, + { + "word": "irrational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not logical or reasonable", + "example_sentence_english": "Her fear of flying was completely irrational.", + "pos": "adjective", + "word_frequency": 9486 + }, + { + "word": "lettuce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a leafy green vegetable", + "example_sentence_english": "I like to put fresh lettuce in my salad.", + "pos": "noun", + "word_frequency": 9490 + }, + { + "word": "lithium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical element, a soft, silvery-white alkali metal", + "example_sentence_english": "Lithium is used in batteries for electric cars.", + "pos": "noun", + "word_frequency": 9491 + }, + { + "word": "lucrative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "producing a great deal of profit", + "example_sentence_english": "He started a lucrative business selling handmade jewelry.", + "pos": "adjective", + "word_frequency": 9493 + }, + { + "word": "managerial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to management or managers", + "example_sentence_english": "She has excellent managerial skills and leads her team effectively.", + "pos": "adjective", + "word_frequency": 9496 + }, + { + "word": "mango", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tropical fruit", + "example_sentence_english": "I love the sweet taste of a ripe mango.", + "pos": "noun", + "word_frequency": 9497 + }, + { + "word": "mister", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a title used before a man's surname or full name", + "example_sentence_english": "Good morning, Mister Smith, how are you today?", + "pos": "noun", + "word_frequency": 9500 + }, + { + "word": "moderately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to a certain extent; not excessively", + "example_sentence_english": "The weather was moderately warm, perfect for a walk.", + "pos": "adverb", + "word_frequency": 9501 + }, + { + "word": "mri", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Magnetic Resonance Imaging", + "example_sentence_english": "The doctor ordered an MRI scan to check for internal injuries.", + "pos": "noun", + "word_frequency": 9502 + }, + { + "word": "multimedia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of various media, such as text, audio, and video", + "example_sentence_english": "The presentation included a lot of multimedia elements, like videos and sound clips.", + "pos": "noun", + "word_frequency": 9503 + }, + { + "word": "multinational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operating in several countries", + "example_sentence_english": "She works for a large multinational corporation with offices worldwide.", + "pos": "adjective", + "word_frequency": 9504 + }, + { + "word": "oasis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fertile spot in a desert where water is found", + "example_sentence_english": "The travelers were relieved to find an oasis after days in the desert.", + "pos": "noun", + "word_frequency": 9506 + }, + { + "word": "oddly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a strange or unusual way", + "example_sentence_english": "He behaved rather oddly at the party, avoiding everyone.", + "pos": "adverb", + "word_frequency": 9507 + }, + { + "word": "oppress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to keep someone in hardship and subservience by unjust authority", + "example_sentence_english": "The government was accused of trying to oppress its own people.", + "pos": "verb", + "word_frequency": 9509 + }, + { + "word": "outsider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who does not belong to a particular group or society", + "example_sentence_english": "He felt like an outsider in the new school.", + "pos": "noun", + "word_frequency": 9512 + }, + { + "word": "outskirts", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the outer parts of a town or city", + "example_sentence_english": "They live on the outskirts of the city, where it's quieter.", + "pos": "noun", + "word_frequency": 9513 + }, + { + "word": "pagan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person holding religious beliefs other than those of the main world religions", + "example_sentence_english": "Ancient Roman religion included many pagan gods and goddesses.", + "pos": "noun", + "word_frequency": 9515 + }, + { + "word": "planetary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a planet or planets", + "example_sentence_english": "Scientists are studying the planetary orbits in our solar system.", + "pos": "adjective", + "word_frequency": 9516 + }, + { + "word": "playboy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a wealthy man who spends his time enjoying himself", + "example_sentence_english": "He was known as a playboy, always seen at the most exclusive parties.", + "pos": "noun", + "word_frequency": 9517 + }, + { + "word": "porcelain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a white vitrified translucent ceramic", + "example_sentence_english": "The antique vase was made of delicate porcelain.", + "pos": "noun", + "word_frequency": 9518 + }, + { + "word": "programmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who writes computer programs", + "example_sentence_english": "My brother works as a software programmer for a tech company.", + "pos": "noun", + "word_frequency": 9519 + }, + { + "word": "promoter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that organizes or finances an event or product", + "example_sentence_english": "The concert promoter announced the new tour dates.", + "pos": "noun", + "word_frequency": 9520 + }, + { + "word": "psalm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sacred song or poem, especially one from the Book of Psalms", + "example_sentence_english": "She read a psalm from the Bible during the service.", + "pos": "noun", + "word_frequency": 9521 + }, + { + "word": "psychiatry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study and treatment of mental illness, emotional disturbance, and abnormal behavior", + "example_sentence_english": "He decided to pursue a career in psychiatry.", + "pos": "noun", + "word_frequency": 9522 + }, + { + "word": "renovate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restore (something old, especially a building) to a good state of repair", + "example_sentence_english": "They plan to renovate their old house next year.", + "pos": "verb", + "word_frequency": 9524 + }, + { + "word": "repetitive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "containing repetition, especially when tedious or uninteresting", + "example_sentence_english": "The work was very repetitive and boring.", + "pos": "adjective", + "word_frequency": 9525 + }, + { + "word": "reversal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a change to an opposite direction, position, or course of action", + "example_sentence_english": "The team suffered a sudden reversal of fortune.", + "pos": "noun", + "word_frequency": 9526 + }, + { + "word": "rhyme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to have the same sound at the end of words or lines", + "example_sentence_english": "Do these two words rhyme?", + "pos": "verb", + "word_frequency": 9527 + }, + { + "word": "rue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bitterly regret (something one has done or allowed to happen)", + "example_sentence_english": "She would live to rue the day she made that decision.", + "pos": "verb", + "word_frequency": 9528 + }, + { + "word": "savvy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shrewd and well-informed; having practical knowledge or understanding", + "example_sentence_english": "He's very tech-savvy and can fix any computer problem.", + "pos": "adjective", + "word_frequency": 9529 + }, + { + "word": "scanner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device that scans documents or objects to produce an image or data", + "example_sentence_english": "I used the scanner to digitize the old photographs.", + "pos": "noun", + "word_frequency": 9530 + }, + { + "word": "schizophrenia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a long-term mental disorder involving a breakdown in the relation between thought, emotion, and behavior", + "example_sentence_english": "The doctor explained the symptoms of schizophrenia.", + "pos": "noun", + "word_frequency": 9531 + }, + { + "word": "seriousness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being serious or solemn", + "example_sentence_english": "He understood the seriousness of the situation.", + "pos": "noun", + "word_frequency": 9532 + }, + { + "word": "sparkle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shine brightly with flashes of light", + "example_sentence_english": "The diamonds on her necklace sparkled under the lights.", + "pos": "verb", + "word_frequency": 9535 + }, + { + "word": "spree", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of unrestrained activity of a particular kind", + "example_sentence_english": "She went on a shopping spree after getting her bonus.", + "pos": "noun", + "word_frequency": 9536 + }, + { + "word": "stakeholder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person with an interest or concern in something, especially a business", + "example_sentence_english": "All stakeholders were invited to the meeting to discuss the project.", + "pos": "noun", + "word_frequency": 9538 + }, + { + "word": "sup", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to eat the evening meal", + "example_sentence_english": "They would sup together before retiring for the night.", + "pos": "verb", + "word_frequency": 9540 + }, + { + "word": "superficial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing or occurring on the surface; not thorough or deep", + "example_sentence_english": "He only has a superficial understanding of the topic.", + "pos": "adjective", + "word_frequency": 9541 + }, + { + "word": "sweaty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered in sweat or causing sweat", + "example_sentence_english": "After the run, I felt hot and sweaty.", + "pos": "adjective", + "word_frequency": 9542 + }, + { + "word": "tame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of an animal) not wild or shy, especially because of long association with humans", + "example_sentence_english": "The zoo has many tame animals that you can pet.", + "pos": "adjective", + "word_frequency": 9543 + }, + { + "word": "thug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a violent person, especially a criminal", + "example_sentence_english": "The police arrested the thug for assault.", + "pos": "noun", + "word_frequency": 9546 + }, + { + "word": "upstream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the direction opposite to the flow of a river; at an earlier stage in a process", + "example_sentence_english": "The salmon swim upstream to lay their eggs.", + "pos": "adverb", + "word_frequency": 9549 + }, + { + "word": "vapor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance diffused or suspended in the air, especially one normally liquid or solid", + "example_sentence_english": "Water vapor rises from the hot spring.", + "pos": "noun", + "word_frequency": 9550 + }, + { + "word": "waitress", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a woman whose job is to serve customers in a restaurant", + "example_sentence_english": "The waitress took our order quickly.", + "pos": "noun", + "word_frequency": 9552 + }, + { + "word": "walnut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an edible nut with a hard, wrinkled shell; the tree it grows on", + "example_sentence_english": "She added chopped walnuts to the salad.", + "pos": "noun", + "word_frequency": 9553 + }, + { + "word": "waterfront", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a part of a town or city adjoining a body of water, especially a port area", + "example_sentence_english": "We enjoyed a walk along the waterfront.", + "pos": "noun", + "word_frequency": 9554 + }, + { + "word": "witty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing quick and inventive verbal humor", + "example_sentence_english": "She gave a witty response that made everyone laugh.", + "pos": "adjective", + "word_frequency": 9558 + }, + { + "word": "weave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to form (fabric or a fabric item) by interlacing long threads passing in one direction with others at a right angle", + "example_sentence_english": "The spider began to weave its web.", + "pos": "verb", + "word_frequency": 9559 + }, + { + "word": "acquaintance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person one knows slightly", + "example_sentence_english": "She is an old acquaintance from college.", + "pos": "noun", + "word_frequency": 9564 + }, + { + "word": "ambush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a surprise attack", + "example_sentence_english": "The soldiers planned to ambush the enemy convoy.", + "pos": "verb", + "word_frequency": 9566 + }, + { + "word": "arrogance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being arrogant", + "example_sentence_english": "His arrogance made him unpopular with his colleagues.", + "pos": "noun", + "word_frequency": 9568 + }, + { + "word": "attendee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who attends a meeting or event", + "example_sentence_english": "Each attendee received a free gift bag.", + "pos": "noun", + "word_frequency": 9569 + }, + { + "word": "aussie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an Australian (informal)", + "example_sentence_english": "My friend is an Aussie who loves surfing.", + "pos": "noun", + "word_frequency": 9571 + }, + { + "word": "baptism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Christian sacrament", + "example_sentence_english": "The baby's baptism took place last Sunday.", + "pos": "noun", + "word_frequency": 9572 + }, + { + "word": "bloke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man (informal British English)", + "example_sentence_english": "He's a good bloke, always willing to help.", + "pos": "noun", + "word_frequency": 9574 + }, + { + "word": "blond", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having light-colored hair", + "example_sentence_english": "She has long, blond hair.", + "pos": "adjective", + "word_frequency": 9575 + }, + { + "word": "blur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become unclear", + "example_sentence_english": "The rain started to blur the view through the window.", + "pos": "verb", + "word_frequency": 9576 + }, + { + "word": "boogie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dance to pop or rock music", + "example_sentence_english": "Let's boogie all night long!", + "pos": "verb", + "word_frequency": 9578 + }, + { + "word": "booker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who books performers or events", + "example_sentence_english": "The concert booker arranged for the band to play next month.", + "pos": "noun", + "word_frequency": 9579 + }, + { + "word": "bowel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the intestine", + "example_sentence_english": "The doctor examined his bowel for any abnormalities.", + "pos": "noun", + "word_frequency": 9580 + }, + { + "word": "brow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forehead; the top of a hill", + "example_sentence_english": "He wiped the sweat from his brow.", + "pos": "noun", + "word_frequency": 9581 + }, + { + "word": "bureaucracy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of government in which most of the important decisions are made by state officials rather than by elected representatives", + "example_sentence_english": "The project was delayed by excessive bureaucracy.", + "pos": "noun", + "word_frequency": 9583 + }, + { + "word": "cabbage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a leafy green or purple vegetable", + "example_sentence_english": "She made a delicious soup with cabbage and carrots.", + "pos": "noun", + "word_frequency": 9584 + }, + { + "word": "canton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a subdivision of a country", + "example_sentence_english": "Switzerland is divided into 26 cantons.", + "pos": "noun", + "word_frequency": 9585 + }, + { + "word": "chimney", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a vertical pipe for smoke or gases", + "example_sentence_english": "Smoke rose from the chimney of the old house.", + "pos": "noun", + "word_frequency": 9586 + }, + { + "word": "cloudy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered with clouds; not clear", + "example_sentence_english": "The sky was cloudy all morning, but it cleared up in the afternoon.", + "pos": "adjective", + "word_frequency": 9588 + }, + { + "word": "colourful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having many colours; full of variety", + "example_sentence_english": "The market was filled with colourful fruits and vegetables.", + "pos": "adjective", + "word_frequency": 9589 + }, + { + "word": "compassionate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing sympathy and concern for others", + "example_sentence_english": "She is a compassionate nurse who always cares for her patients.", + "pos": "adjective", + "word_frequency": 9590 + }, + { + "word": "convertible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a car with a roof that can be folded back or removed", + "example_sentence_english": "He bought a red convertible for the summer.", + "pos": "noun", + "word_frequency": 9591 + }, + { + "word": "crater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large bowl-shaped cavity in the ground or on a celestial body", + "example_sentence_english": "The meteor left a huge crater when it hit the ground.", + "pos": "noun", + "word_frequency": 9593 + }, + { + "word": "cumulative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "increasing or growing by successive additions", + "example_sentence_english": "The cumulative effect of these small changes was significant.", + "pos": "adjective", + "word_frequency": 9595 + }, + { + "word": "curator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a keeper or custodian of a museum or other collection", + "example_sentence_english": "The museum curator was responsible for the new exhibition.", + "pos": "noun", + "word_frequency": 9596 + }, + { + "word": "deity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a god or goddess", + "example_sentence_english": "Ancient cultures often worshipped multiple deities.", + "pos": "noun", + "word_frequency": 9598 + }, + { + "word": "desperation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of despair, typically one which results in rash or extreme behavior", + "example_sentence_english": "In desperation, he tried one last time to open the locked door.", + "pos": "noun", + "word_frequency": 9599 + }, + { + "word": "detrimental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful; damaging", + "example_sentence_english": "Smoking is detrimental to your health.", + "pos": "adjective", + "word_frequency": 9600 + }, + { + "word": "diarrhea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a condition in which feces are discharged from the bowels frequently and in a liquid form", + "example_sentence_english": "He had severe diarrhea after eating the spoiled food.", + "pos": "noun", + "word_frequency": 9601 + }, + { + "word": "dispose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "get rid of by throwing away or giving or selling to someone else", + "example_sentence_english": "Please dispose of your trash properly.", + "pos": "verb", + "word_frequency": 9602 + }, + { + "word": "distortion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of distorting or the state of being distorted", + "example_sentence_english": "The mirror caused a strange distortion of her face.", + "pos": "noun", + "word_frequency": 9603 + }, + { + "word": "doctoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a doctorate", + "example_sentence_english": "She is currently pursuing her doctoral studies.", + "pos": "adjective", + "word_frequency": 9604 + }, + { + "word": "entitlement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fact of having a right to something", + "example_sentence_english": "He acted with a sense of entitlement, expecting special treatment.", + "pos": "noun", + "word_frequency": 9605 + }, + { + "word": "faux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artificial; imitation", + "example_sentence_english": "She wore a coat made of faux fur.", + "pos": "adjective", + "word_frequency": 9607 + }, + { + "word": "fearless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking fear", + "example_sentence_english": "The fearless knight charged into battle.", + "pos": "adjective", + "word_frequency": 9608 + }, + { + "word": "finch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small seed-eating songbird", + "example_sentence_english": "A small finch landed on the bird feeder.", + "pos": "noun", + "word_frequency": 9609 + }, + { + "word": "fulfil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "achieve or realize (something desired, promised, or predicted)", + "example_sentence_english": "He worked hard to fulfil his dreams.", + "pos": "verb", + "word_frequency": 9610 + }, + { + "word": "gangster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a gang of criminals", + "example_sentence_english": "The movie was about a notorious gangster from the 1930s.", + "pos": "noun", + "word_frequency": 9611 + }, + { + "word": "garner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gather or collect (something, especially information or approval)", + "example_sentence_english": "The politician hoped to garner support from the voters.", + "pos": "verb", + "word_frequency": 9612 + }, + { + "word": "giveaway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that is given free, often for promotional purposes", + "example_sentence_english": "The company offered a free giveaway to attract new customers.", + "pos": "noun", + "word_frequency": 9614 + }, + { + "word": "harass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject to aggressive pressure or intimidation", + "example_sentence_english": "It is illegal to harass someone at work.", + "pos": "verb", + "word_frequency": 9616 + }, + { + "word": "heater", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device for heating something", + "example_sentence_english": "We turned on the heater because it was cold.", + "pos": "noun", + "word_frequency": 9617 + }, + { + "word": "hesitation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of pausing before saying or doing something", + "example_sentence_english": "After a moment of hesitation, she agreed to help.", + "pos": "noun", + "word_frequency": 9618 + }, + { + "word": "humiliation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of humiliating someone or the state of being humiliated", + "example_sentence_english": "He felt deep humiliation after his public mistake.", + "pos": "noun", + "word_frequency": 9619 + }, + { + "word": "impairment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being diminished, weakened, or damaged", + "example_sentence_english": "His vision impairment made it difficult to read small print.", + "pos": "noun", + "word_frequency": 9621 + }, + { + "word": "impatient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing a tendency to be quickly irritated or provoked", + "example_sentence_english": "She grew impatient waiting for the bus.", + "pos": "adjective", + "word_frequency": 9622 + }, + { + "word": "intricate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very complicated or detailed", + "example_sentence_english": "The watch had an intricate design.", + "pos": "adjective", + "word_frequency": 9624 + }, + { + "word": "karate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a martial art", + "example_sentence_english": "He practices karate twice a week.", + "pos": "noun", + "word_frequency": 9629 + }, + { + "word": "kite", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a toy consisting of a light frame covered with paper or cloth, flown in the wind at the end of a long string", + "example_sentence_english": "The child flew a colorful kite in the park.", + "pos": "noun", + "word_frequency": 9631 + }, + { + "word": "lighthouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tower or other structure containing a powerful light, built on a coast or island to guide ships", + "example_sentence_english": "The lighthouse guided the ships safely to shore.", + "pos": "noun", + "word_frequency": 9632 + }, + { + "word": "longevity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "long existence or service", + "example_sentence_english": "The company's longevity is a testament to its strong leadership.", + "pos": "noun", + "word_frequency": 9633 + }, + { + "word": "lore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a body of traditions and knowledge on a subject or held by a particular group, typically passed from person to person by word of mouth", + "example_sentence_english": "Ancient folklore is full of fascinating lore about mythical creatures.", + "pos": "noun", + "word_frequency": 9634 + }, + { + "word": "lush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of vegetation) growing luxuriantly", + "example_sentence_english": "The rainforest was full of lush green plants.", + "pos": "adjective", + "word_frequency": 9635 + }, + { + "word": "luxurious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely comfortable, elegant, or enjoyable, especially in a way that involves great expense", + "example_sentence_english": "They stayed in a luxurious hotel suite.", + "pos": "adjective", + "word_frequency": 9636 + }, + { + "word": "mash", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reduce (food) to a soft pulpy mass by crushing it", + "example_sentence_english": "Please mash the potatoes for dinner.", + "pos": "verb", + "word_frequency": 9638 + }, + { + "word": "mba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Master of Business Administration", + "example_sentence_english": "She decided to pursue an MBA to advance her career.", + "pos": "noun", + "word_frequency": 9639 + }, + { + "word": "meltdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete failure; emotional collapse", + "example_sentence_english": "The stock market experienced a complete meltdown after the news.", + "pos": "noun", + "word_frequency": 9641 + }, + { + "word": "messiah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a leader or savior", + "example_sentence_english": "Many people hoped he would be the messiah to solve their problems.", + "pos": "noun", + "word_frequency": 9642 + }, + { + "word": "meteor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a streak of light in the night sky caused by a small body of matter entering the earth's atmosphere", + "example_sentence_english": "We saw a bright meteor streak across the sky last night.", + "pos": "noun", + "word_frequency": 9643 + }, + { + "word": "ministerial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a minister of state or a religious minister", + "example_sentence_english": "The ministerial meeting will discuss new policies.", + "pos": "adjective", + "word_frequency": 9644 + }, + { + "word": "mystical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to mysticism or spiritual mystery", + "example_sentence_english": "The ancient ruins had a mystical aura about them.", + "pos": "adjective", + "word_frequency": 9647 + }, + { + "word": "obstruction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an obstacle or blockage", + "example_sentence_english": "There was an obstruction on the road, causing a delay.", + "pos": "noun", + "word_frequency": 9650 + }, + { + "word": "odyssey", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a long and adventurous journey or experience", + "example_sentence_english": "His life has been an incredible odyssey of discovery and adventure.", + "pos": "noun", + "word_frequency": 9651 + }, + { + "word": "onboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on a ship, aircraft, or other vehicle", + "example_sentence_english": "All passengers are now onboard the flight.", + "pos": "adverb", + "word_frequency": 9653 + }, + { + "word": "penetrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go into or through something", + "example_sentence_english": "The roots of the tree can penetrate deep into the soil.", + "pos": "verb", + "word_frequency": 9656 + }, + { + "word": "planner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plans or a book/app for planning", + "example_sentence_english": "I use a daily planner to organize my tasks.", + "pos": "noun", + "word_frequency": 9660 + }, + { + "word": "plum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sweet, fleshy, oval fruit with a single large seed", + "example_sentence_english": "She picked a ripe plum from the tree.", + "pos": "noun", + "word_frequency": 9661 + }, + { + "word": "plural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "more than one in number", + "example_sentence_english": "The word 'cats' is the plural form of 'cat'.", + "pos": "adjective", + "word_frequency": 9662 + }, + { + "word": "portrayal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the way someone or something is represented or described", + "example_sentence_english": "The movie's portrayal of the historical event was very accurate.", + "pos": "noun", + "word_frequency": 9664 + }, + { + "word": "prevail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prove more powerful or superior; to be widespread", + "example_sentence_english": "Justice will eventually prevail.", + "pos": "verb", + "word_frequency": 9665 + }, + { + "word": "puff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breathe in or out in short, quick breaths; to swell", + "example_sentence_english": "He began to puff after running up the stairs.", + "pos": "verb", + "word_frequency": 9666 + }, + { + "word": "pun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a joke exploiting the different possible meanings of a word or the fact that there are words which sound alike but have different meanings", + "example_sentence_english": "He made a clever pun about the baker, saying he kneaded dough.", + "pos": "noun", + "word_frequency": 9667 + }, + { + "word": "rag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of old or torn cloth", + "example_sentence_english": "She used a wet rag to wipe the table clean.", + "pos": "noun", + "word_frequency": 9669 + }, + { + "word": "rampant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flourishing or spreading unchecked", + "example_sentence_english": "Crime was rampant in the city during that period.", + "pos": "adjective", + "word_frequency": 9671 + }, + { + "word": "replicate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make an exact copy; to reproduce", + "example_sentence_english": "Scientists are trying to replicate the experiment results.", + "pos": "verb", + "word_frequency": 9673 + }, + { + "word": "retaliation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of returning an attack or injury", + "example_sentence_english": "The attack was carried out in retaliation for earlier aggression.", + "pos": "noun", + "word_frequency": 9674 + }, + { + "word": "rooftop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the outer surface of a roof", + "example_sentence_english": "They installed solar panels on the rooftop.", + "pos": "noun", + "word_frequency": 9676 + }, + { + "word": "safeguard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a measure taken to protect something or someone", + "example_sentence_english": "The new laws provide a safeguard against discrimination.", + "pos": "noun", + "word_frequency": 9678 + }, + { + "word": "sedan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a car with a closed body and a separate boot", + "example_sentence_english": "He bought a new black sedan.", + "pos": "noun", + "word_frequency": 9679 + }, + { + "word": "sewage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste water", + "example_sentence_english": "The city's sewage system needs an upgrade.", + "pos": "noun", + "word_frequency": 9680 + }, + { + "word": "shopper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who buys things", + "example_sentence_english": "The mall was full of shoppers looking for deals.", + "pos": "noun", + "word_frequency": 9682 + }, + { + "word": "sitcom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situation comedy", + "example_sentence_english": "My favorite sitcom is about a group of friends living in New York.", + "pos": "noun", + "word_frequency": 9683 + }, + { + "word": "slang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informal language", + "example_sentence_english": "It's hard to understand all the local slang.", + "pos": "noun", + "word_frequency": 9684 + }, + { + "word": "spirited", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of energy and enthusiasm", + "example_sentence_english": "She gave a spirited performance on stage.", + "pos": "adjective", + "word_frequency": 9685 + }, + { + "word": "spirituality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being concerned with the human spirit or soul", + "example_sentence_english": "Many people find comfort in spirituality.", + "pos": "noun", + "word_frequency": 9686 + }, + { + "word": "spoiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "information that reveals the plot of a story", + "example_sentence_english": "Don't tell me the ending, no spoilers!", + "pos": "noun", + "word_frequency": 9687 + }, + { + "word": "suitcase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a case for carrying clothes", + "example_sentence_english": "I packed my clothes in a large suitcase.", + "pos": "noun", + "word_frequency": 9688 + }, + { + "word": "tavern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pub or inn", + "example_sentence_english": "We stopped at the old tavern for a drink.", + "pos": "noun", + "word_frequency": 9689 + }, + { + "word": "telegram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a message sent by telegraph", + "example_sentence_english": "In the past, important news was often sent by telegram.", + "pos": "noun", + "word_frequency": 9690 + }, + { + "word": "titanium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong, light metal", + "example_sentence_english": "The aircraft parts were made of titanium.", + "pos": "noun", + "word_frequency": 9691 + }, + { + "word": "turbulence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violent or unsteady movement of air or water", + "example_sentence_english": "The plane experienced some turbulence during the flight.", + "pos": "noun", + "word_frequency": 9692 + }, + { + "word": "uneven", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not level or smooth", + "example_sentence_english": "The road was uneven and bumpy.", + "pos": "adjective", + "word_frequency": 9695 + }, + { + "word": "urgency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being urgent", + "example_sentence_english": "The message was delivered with great urgency.", + "pos": "noun", + "word_frequency": 9696 + }, + { + "word": "ware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "articles of a particular type, typically those sold in a shop", + "example_sentence_english": "The store sells various kinds of kitchenware.", + "pos": "noun", + "word_frequency": 9698 + }, + { + "word": "waterproof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impervious to water", + "example_sentence_english": "I need a waterproof jacket for the rain.", + "pos": "adjective", + "word_frequency": 9699 + }, + { + "word": "whine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a long, high-pitched cry or sound", + "example_sentence_english": "The dog started to whine at the door.", + "pos": "verb", + "word_frequency": 9700 + }, + { + "word": "wonderfully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a wonderful manner", + "example_sentence_english": "The concert was wonderfully performed.", + "pos": "adverb", + "word_frequency": 9701 + }, + { + "word": "wording", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the choice and arrangement of words", + "example_sentence_english": "The wording of the contract was very precise.", + "pos": "noun", + "word_frequency": 9702 + }, + { + "word": "academia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the academic world", + "example_sentence_english": "She decided to pursue a career in academia.", + "pos": "noun", + "word_frequency": 9706 + }, + { + "word": "accreditation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official recognition or approval", + "example_sentence_english": "The university received full accreditation for its new program.", + "pos": "noun", + "word_frequency": 9707 + }, + { + "word": "admittedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "used to concede that something is true", + "example_sentence_english": "Admittedly, I was wrong about that.", + "pos": "adverb", + "word_frequency": 9708 + }, + { + "word": "aforementioned", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mentioned before", + "example_sentence_english": "The aforementioned issues need to be addressed.", + "pos": "adjective", + "word_frequency": 9709 + }, + { + "word": "alga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a simple non-flowering plant", + "example_sentence_english": "Alga can grow quickly in stagnant water.", + "pos": "noun", + "word_frequency": 9710 + }, + { + "word": "alteration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a change or modification", + "example_sentence_english": "The tailor made an alteration to the dress.", + "pos": "noun", + "word_frequency": 9711 + }, + { + "word": "articulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to express clearly", + "example_sentence_english": "He struggled to articulate his feelings.", + "pos": "verb", + "word_frequency": 9715 + }, + { + "word": "asbestos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a heat-resistant fibrous silicate mineral", + "example_sentence_english": "Old buildings often contain asbestos.", + "pos": "noun", + "word_frequency": 9716 + }, + { + "word": "atleast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "no less than", + "example_sentence_english": "At least try your best.", + "pos": "adverb", + "word_frequency": 9717 + }, + { + "word": "avoidance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of keeping away from or preventing something", + "example_sentence_english": "His avoidance of eye contact made her suspicious.", + "pos": "noun", + "word_frequency": 9718 + }, + { + "word": "barney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an argument or fight", + "example_sentence_english": "They had a bit of a barney over who should pay the bill.", + "pos": "noun", + "word_frequency": 9720 + }, + { + "word": "boutique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small shop selling fashionable clothes or accessories", + "example_sentence_english": "She bought her dress at a small boutique downtown.", + "pos": "noun", + "word_frequency": 9722 + }, + { + "word": "brewer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that makes beer", + "example_sentence_english": "The local brewer is known for their craft ales.", + "pos": "noun", + "word_frequency": 9724 + }, + { + "word": "buffet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a meal consisting of several dishes from which guests serve themselves", + "example_sentence_english": "The hotel offered a delicious breakfast buffet.", + "pos": "noun", + "word_frequency": 9725 + }, + { + "word": "burner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a part of a stove or lamp that produces a flame or heat", + "example_sentence_english": "She turned on the gas burner to boil water.", + "pos": "noun", + "word_frequency": 9726 + }, + { + "word": "catcher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that catches, especially in baseball", + "example_sentence_english": "The baseball catcher wore a protective mask.", + "pos": "noun", + "word_frequency": 9729 + }, + { + "word": "chassis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the base frame of a car, bus, or other vehicle", + "example_sentence_english": "The car's chassis was damaged in the accident.", + "pos": "noun", + "word_frequency": 9731 + }, + { + "word": "chore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a routine task, especially a household one", + "example_sentence_english": "Doing the dishes is my least favorite chore.", + "pos": "noun", + "word_frequency": 9732 + }, + { + "word": "clap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strike the palms of (one's hands) together repeatedly", + "example_sentence_english": "The audience began to clap loudly after the performance.", + "pos": "verb", + "word_frequency": 9733 + }, + { + "word": "clarification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of making something clearer or easier to understand", + "example_sentence_english": "Could you provide some clarification on that point?", + "pos": "noun", + "word_frequency": 9734 + }, + { + "word": "consolation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comfort received by a person after a loss or disappointment", + "example_sentence_english": "She found consolation in her friends' support.", + "pos": "noun", + "word_frequency": 9735 + }, + { + "word": "covert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not openly acknowledged or displayed; secret", + "example_sentence_english": "The agency conducted a covert operation.", + "pos": "adjective", + "word_frequency": 9736 + }, + { + "word": "cringe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recoil in embarrassment or disgust", + "example_sentence_english": "I always cringe when I watch old videos of myself.", + "pos": "verb", + "word_frequency": 9737 + }, + { + "word": "dagger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short knife with a pointed, double-edged blade", + "example_sentence_english": "He pulled a small dagger from his belt.", + "pos": "noun", + "word_frequency": 9741 + }, + { + "word": "dealing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conduct or transactions, especially in business", + "example_sentence_english": "His dealings with the company were always transparent.", + "pos": "noun", + "word_frequency": 9742 + }, + { + "word": "defer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "put off (an action or event) to a later time; postpone", + "example_sentence_english": "They decided to defer the decision until next month.", + "pos": "verb", + "word_frequency": 9743 + }, + { + "word": "descriptive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving to describe or characterize", + "example_sentence_english": "The author used very descriptive language in her novel.", + "pos": "adjective", + "word_frequency": 9744 + }, + { + "word": "dialect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a particular form of a language peculiar to a specific region or social group", + "example_sentence_english": "She spoke in a regional dialect that was hard to understand.", + "pos": "noun", + "word_frequency": 9745 + }, + { + "word": "dolly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a child's toy doll; a small wheeled platform", + "example_sentence_english": "The movers used a dolly to transport the heavy furniture.", + "pos": "noun", + "word_frequency": 9746 + }, + { + "word": "downfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a loss of power, prosperity, or status; ruin", + "example_sentence_english": "His arrogance led to his downfall.", + "pos": "noun", + "word_frequency": 9747 + }, + { + "word": "downside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disadvantage or negative aspect", + "example_sentence_english": "The only downside of the plan is the cost.", + "pos": "noun", + "word_frequency": 9748 + }, + { + "word": "dryer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a machine or device for drying something", + "example_sentence_english": "I put my wet clothes in the dryer.", + "pos": "noun", + "word_frequency": 9749 + }, + { + "word": "dunk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dip (food) into a drink or sauce before eating it; score by forcing the ball down through the basket", + "example_sentence_english": "He likes to dunk his cookies in milk.", + "pos": "verb", + "word_frequency": 9750 + }, + { + "word": "empowerment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of becoming stronger and more confident, especially in controlling one's life", + "example_sentence_english": "Education is key to women's empowerment.", + "pos": "noun", + "word_frequency": 9752 + }, + { + "word": "ending", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the final part of something", + "example_sentence_english": "The movie had a surprising ending.", + "pos": "noun", + "word_frequency": 9753 + }, + { + "word": "ensue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "happen or occur afterward or as a result", + "example_sentence_english": "A heated debate ensued after his controversial statement.", + "pos": "verb", + "word_frequency": 9754 + }, + { + "word": "fireplace", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a place for a fire in a house", + "example_sentence_english": "We lit a fire in the fireplace to keep warm.", + "pos": "noun", + "word_frequency": 9755 + }, + { + "word": "flair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a special or instinctive aptitude or ability for doing something well", + "example_sentence_english": "She has a flair for dramatic fashion.", + "pos": "noun", + "word_frequency": 9756 + }, + { + "word": "fugitive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has escaped from captivity or is in hiding", + "example_sentence_english": "The police are searching for the fugitive.", + "pos": "noun", + "word_frequency": 9757 + }, + { + "word": "hazel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a light brown color; a tree that produces nuts", + "example_sentence_english": "Her eyes were a beautiful hazel.", + "pos": "noun", + "word_frequency": 9764 + }, + { + "word": "headset", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device worn on the head that has headphones and a microphone", + "example_sentence_english": "He put on his headset to join the online meeting.", + "pos": "noun", + "word_frequency": 9765 + }, + { + "word": "homecoming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an annual event at a school or college for former students", + "example_sentence_english": "The university held its annual homecoming celebration.", + "pos": "noun", + "word_frequency": 9768 + }, + { + "word": "hurdle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a problem or difficulty that must be overcome", + "example_sentence_english": "Lack of funding was a major hurdle for the project.", + "pos": "noun", + "word_frequency": 9769 + }, + { + "word": "icy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with or consisting of ice; very cold", + "example_sentence_english": "The roads were icy after the overnight freeze.", + "pos": "adjective", + "word_frequency": 9771 + }, + { + "word": "indulge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allow oneself to enjoy the pleasure of something", + "example_sentence_english": "I decided to indulge in a piece of chocolate cake.", + "pos": "verb", + "word_frequency": 9772 + }, + { + "word": "inscription", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "words or symbols written or carved on something", + "example_sentence_english": "The old bell had an inscription with the date it was made.", + "pos": "noun", + "word_frequency": 9773 + }, + { + "word": "interpreter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who translates spoken language orally", + "example_sentence_english": "An interpreter helped them communicate during the meeting.", + "pos": "noun", + "word_frequency": 9774 + }, + { + "word": "intuition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to understand something immediately, without conscious reasoning", + "example_sentence_english": "She had a strong intuition that something was wrong.", + "pos": "noun", + "word_frequency": 9775 + }, + { + "word": "invaluable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely useful; indispensable", + "example_sentence_english": "His experience was invaluable to the success of the team.", + "pos": "adjective", + "word_frequency": 9776 + }, + { + "word": "kaiser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the German or Austrian emperor", + "example_sentence_english": "The Kaiser ruled Germany during World War I.", + "pos": "noun", + "word_frequency": 9780 + }, + { + "word": "kettle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a container for boiling water, typically with a lid, spout, and handle", + "example_sentence_english": "She put the kettle on to make some tea.", + "pos": "noun", + "word_frequency": 9781 + }, + { + "word": "lax", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not sufficiently strict, severe, or careful", + "example_sentence_english": "The security at the event was too lax.", + "pos": "adjective", + "word_frequency": 9784 + }, + { + "word": "marking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a line, spot, or other visible sign on a surface", + "example_sentence_english": "The animal had distinctive markings on its fur.", + "pos": "noun", + "word_frequency": 9789 + }, + { + "word": "menace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that is likely to cause harm; a threat or danger", + "example_sentence_english": "The stray dog was a menace to the local wildlife.", + "pos": "noun", + "word_frequency": 9792 + }, + { + "word": "methane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a colorless, odorless flammable gas that is the main constituent of natural gas", + "example_sentence_english": "Methane is a potent greenhouse gas.", + "pos": "noun", + "word_frequency": 9793 + }, + { + "word": "misuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the incorrect or improper use of something", + "example_sentence_english": "The misuse of company funds led to his dismissal.", + "pos": "noun", + "word_frequency": 9795 + }, + { + "word": "mitigate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make less severe, serious, or painful", + "example_sentence_english": "They tried to mitigate the impact of the flood.", + "pos": "verb", + "word_frequency": 9796 + }, + { + "word": "nana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandmother (informal)", + "example_sentence_english": "My nana always bakes the best cookies.", + "pos": "noun", + "word_frequency": 9799 + }, + { + "word": "nausea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of sickness with an urge to vomit", + "example_sentence_english": "The motion of the boat caused him to feel nausea.", + "pos": "noun", + "word_frequency": 9800 + }, + { + "word": "neurological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the nervous system", + "example_sentence_english": "She is studying neurological disorders.", + "pos": "adjective", + "word_frequency": 9801 + }, + { + "word": "optimum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "best or most favorable", + "example_sentence_english": "For optimum performance, the machine needs regular maintenance.", + "pos": "adjective", + "word_frequency": 9803 + }, + { + "word": "overwhelmingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to a very great degree", + "example_sentence_english": "The evidence was overwhelmingly in his favor.", + "pos": "adverb", + "word_frequency": 9804 + }, + { + "word": "oyster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bivalve mollusk", + "example_sentence_english": "He ordered a plate of fresh oysters.", + "pos": "noun", + "word_frequency": 9805 + }, + { + "word": "pastoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the countryside or to the duties of a pastor", + "example_sentence_english": "The painting depicted a peaceful pastoral scene.", + "pos": "adjective", + "word_frequency": 9806 + }, + { + "word": "physiological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the normal functions of living organisms", + "example_sentence_english": "Stress can have significant physiological effects on the body.", + "pos": "adjective", + "word_frequency": 9807 + }, + { + "word": "poo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feces", + "example_sentence_english": "The dog did a poo in the garden.", + "pos": "noun", + "word_frequency": 9808 + }, + { + "word": "poultry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domestic fowl, such as chickens, turkeys, ducks, and geese", + "example_sentence_english": "We had roast poultry for dinner.", + "pos": "noun", + "word_frequency": 9809 + }, + { + "word": "prominence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being important or famous", + "example_sentence_english": "The issue has gained prominence in recent debates.", + "pos": "noun", + "word_frequency": 9810 + }, + { + "word": "ptsd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Post-Traumatic Stress Disorder", + "example_sentence_english": "Many veterans suffer from PTSD.", + "pos": "noun", + "word_frequency": 9811 + }, + { + "word": "quartet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a group of four musicians or singers", + "example_sentence_english": "The string quartet played beautifully.", + "pos": "noun", + "word_frequency": 9812 + }, + { + "word": "radically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a thorough or fundamental way", + "example_sentence_english": "The new policy will radically change the system.", + "pos": "adverb", + "word_frequency": 9813 + }, + { + "word": "reactive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing a response to a stimulus", + "example_sentence_english": "The company's approach to customer complaints is often reactive rather than proactive.", + "pos": "adjective", + "word_frequency": 9814 + }, + { + "word": "reboot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restart a computer system", + "example_sentence_english": "Please reboot your computer to apply the updates.", + "pos": "verb", + "word_frequency": 9815 + }, + { + "word": "rename", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give a new name to", + "example_sentence_english": "They decided to rename the street.", + "pos": "verb", + "word_frequency": 9816 + }, + { + "word": "restrictive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limiting or controlling someone or something", + "example_sentence_english": "The new rules are too restrictive.", + "pos": "adjective", + "word_frequency": 9817 + }, + { + "word": "robotic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or resembling a robot", + "example_sentence_english": "His movements were stiff and robotic.", + "pos": "adjective", + "word_frequency": 9818 + }, + { + "word": "runaway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has run away", + "example_sentence_english": "The police are searching for the teenage runaway.", + "pos": "noun", + "word_frequency": 9819 + }, + { + "word": "screenplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the script of a film", + "example_sentence_english": "She spent months writing the screenplay for the movie.", + "pos": "noun", + "word_frequency": 9822 + }, + { + "word": "sect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of people with somewhat different religious beliefs", + "example_sentence_english": "The small sect broke away from the main church.", + "pos": "noun", + "word_frequency": 9823 + }, + { + "word": "seismic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to earthquakes or other vibrations of the earth", + "example_sentence_english": "The region is prone to seismic activity.", + "pos": "adjective", + "word_frequency": 9824 + }, + { + "word": "seminary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a college that trains priests, ministers, or rabbis", + "example_sentence_english": "He decided to attend a seminary to study theology.", + "pos": "noun", + "word_frequency": 9825 + }, + { + "word": "sideways", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to or from the side", + "example_sentence_english": "He looked at me sideways.", + "pos": "adverb", + "word_frequency": 9829 + }, + { + "word": "skipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the captain of a boat or aircraft", + "example_sentence_english": "The skipper guided the ship through the storm.", + "pos": "noun", + "word_frequency": 9830 + }, + { + "word": "slay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kill in a violent way; to impress greatly", + "example_sentence_english": "The knight went forth to slay the dragon.", + "pos": "verb", + "word_frequency": 9831 + }, + { + "word": "smuggle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move goods illegally into or out of a country", + "example_sentence_english": "They tried to smuggle drugs across the border.", + "pos": "verb", + "word_frequency": 9832 + }, + { + "word": "stash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secret store of something", + "example_sentence_english": "He kept a secret stash of candy in his drawer.", + "pos": "noun", + "word_frequency": 9834 + }, + { + "word": "stroll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to walk in a leisurely way", + "example_sentence_english": "They went for a leisurely stroll in the park.", + "pos": "verb", + "word_frequency": 9835 + }, + { + "word": "swiftly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at high speed; quickly", + "example_sentence_english": "The bird flew swiftly across the sky.", + "pos": "adverb", + "word_frequency": 9836 + }, + { + "word": "transcription", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of writing down something spoken", + "example_sentence_english": "The transcription of the interview took several hours.", + "pos": "noun", + "word_frequency": 9838 + }, + { + "word": "unicorn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mythical horse-like creature with a single horn", + "example_sentence_english": "Many children believe in the magic of a unicorn.", + "pos": "noun", + "word_frequency": 9841 + }, + { + "word": "uniquely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a unique way", + "example_sentence_english": "Each snowflake is uniquely formed.", + "pos": "adverb", + "word_frequency": 9842 + }, + { + "word": "unrealistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not realistic", + "example_sentence_english": "His expectations were completely unrealistic.", + "pos": "adjective", + "word_frequency": 9843 + }, + { + "word": "vase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an ornamental container for flowers", + "example_sentence_english": "She placed the fresh flowers in a beautiful vase.", + "pos": "noun", + "word_frequency": 9845 + }, + { + "word": "vat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large tank or tub", + "example_sentence_english": "The wine was fermented in a large wooden vat.", + "pos": "noun", + "word_frequency": 9846 + }, + { + "word": "vineyard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plantation of grapevines", + "example_sentence_english": "They spent the afternoon walking through the vineyard.", + "pos": "noun", + "word_frequency": 9847 + }, + { + "word": "viola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stringed musical instrument", + "example_sentence_english": "She plays the viola in the school orchestra.", + "pos": "noun", + "word_frequency": 9848 + }, + { + "word": "waterfall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cascade of water", + "example_sentence_english": "The sound of the waterfall was very relaxing.", + "pos": "noun", + "word_frequency": 9849 + }, + { + "word": "weld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to join metal parts by heating", + "example_sentence_english": "He learned how to weld metal in his workshop.", + "pos": "verb", + "word_frequency": 9850 + }, + { + "word": "whereabouts", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the place where someone or something is", + "example_sentence_english": "His current whereabouts are unknown.", + "pos": "noun", + "word_frequency": 9851 + }, + { + "word": "yummy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delicious", + "example_sentence_english": "The cake was so yummy!", + "pos": "adjective", + "word_frequency": 9853 + }, + { + "word": "adobe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of brick made of sun-dried earth and straw", + "example_sentence_english": "Many traditional houses in the desert are built from adobe.", + "pos": "noun", + "word_frequency": 9855 + }, + { + "word": "almond", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an edible oval nut", + "example_sentence_english": "I like to add almonds to my breakfast cereal.", + "pos": "noun", + "word_frequency": 9858 + }, + { + "word": "amenity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a desirable or useful feature", + "example_sentence_english": "The hotel offers many amenities, including a swimming pool.", + "pos": "noun", + "word_frequency": 9859 + }, + { + "word": "amuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to entertain or make someone laugh", + "example_sentence_english": "The clown tried to amuse the children with his tricks.", + "pos": "verb", + "word_frequency": 9860 + }, + { + "word": "arabian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Arabia or Arabs", + "example_sentence_english": "The Arabian desert is vast and beautiful.", + "pos": "adjective", + "word_frequency": 9862 + }, + { + "word": "asphalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mixture of dark bituminous pitch with sand or gravel", + "example_sentence_english": "The road was paved with fresh asphalt.", + "pos": "noun", + "word_frequency": 9864 + }, + { + "word": "atrocity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an extremely wicked or cruel act", + "example_sentence_english": "The war was marked by numerous atrocities.", + "pos": "noun", + "word_frequency": 9865 + }, + { + "word": "backbone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the series of vertebrae extending from the skull to the pelvis", + "example_sentence_english": "The human backbone protects the spinal cord.", + "pos": "noun", + "word_frequency": 9868 + }, + { + "word": "beetle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an insect with a hard, shell-like back", + "example_sentence_english": "A small beetle crawled across the leaf.", + "pos": "noun", + "word_frequency": 9870 + }, + { + "word": "blizzard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a severe snowstorm with high winds", + "example_sentence_english": "The town was shut down due to the blizzard.", + "pos": "noun", + "word_frequency": 9871 + }, + { + "word": "booklet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small book or pamphlet", + "example_sentence_english": "The museum provided a free booklet with information about the exhibits.", + "pos": "noun", + "word_frequency": 9873 + }, + { + "word": "brawl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fight in a rough or noisy way", + "example_sentence_english": "Two men started to brawl outside the bar.", + "pos": "verb", + "word_frequency": 9874 + }, + { + "word": "celestial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the sky or heaven", + "example_sentence_english": "The night sky was filled with celestial bodies.", + "pos": "adjective", + "word_frequency": 9881 + }, + { + "word": "characterization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the way a character is described or portrayed", + "example_sentence_english": "The author's characterization of the villain was very detailed.", + "pos": "noun", + "word_frequency": 9882 + }, + { + "word": "conform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to comply with rules, standards, or laws", + "example_sentence_english": "Students are expected to conform to the school rules.", + "pos": "verb", + "word_frequency": 9887 + }, + { + "word": "conversely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an opposite or contrasting way", + "example_sentence_english": "Some people enjoy hot weather; conversely, others prefer cold.", + "pos": "adverb", + "word_frequency": 9888 + }, + { + "word": "countess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the wife or widow of a count or earl", + "example_sentence_english": "The countess wore a beautiful gown to the ball.", + "pos": "noun", + "word_frequency": 9889 + }, + { + "word": "customary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to custom or usual practice", + "example_sentence_english": "It is customary to tip the waiter in this country.", + "pos": "adjective", + "word_frequency": 9890 + }, + { + "word": "distinctly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is clearly heard, seen, or felt", + "example_sentence_english": "I distinctly remember telling you that.", + "pos": "adverb", + "word_frequency": 9892 + }, + { + "word": "flourish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grow or develop in a healthy or vigorous way", + "example_sentence_english": "The business began to flourish after the new marketing campaign.", + "pos": "verb", + "word_frequency": 9895 + }, + { + "word": "fragrance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pleasant or sweet smell", + "example_sentence_english": "The fragrance of the roses filled the room.", + "pos": "noun", + "word_frequency": 9896 + }, + { + "word": "fungus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "any of a group of spore-producing organisms feeding on organic matter", + "example_sentence_english": "Mushrooms are a type of fungus.", + "pos": "noun", + "word_frequency": 9898 + }, + { + "word": "gunfire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the firing of guns", + "example_sentence_english": "The sound of gunfire echoed through the streets.", + "pos": "noun", + "word_frequency": 9901 + }, + { + "word": "heroine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woman admired for her courage or outstanding achievements", + "example_sentence_english": "The heroine of the story saved the day.", + "pos": "noun", + "word_frequency": 9903 + }, + { + "word": "hoax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a humorous or malicious deception", + "example_sentence_english": "The bomb threat turned out to be a hoax.", + "pos": "noun", + "word_frequency": 9905 + }, + { + "word": "impending", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "about to happen; forthcoming", + "example_sentence_english": "The dark clouds signaled an impending storm.", + "pos": "adjective", + "word_frequency": 9907 + }, + { + "word": "insignificant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too small or unimportant to be worth consideration", + "example_sentence_english": "His contribution to the project was insignificant.", + "pos": "adjective", + "word_frequency": 9908 + }, + { + "word": "insurer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that provides insurance", + "example_sentence_english": "You should contact your insurer after the accident.", + "pos": "noun", + "word_frequency": 9909 + }, + { + "word": "knowledgeable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well informed; intelligent", + "example_sentence_english": "She is very knowledgeable about ancient history.", + "pos": "adjective", + "word_frequency": 9913 + }, + { + "word": "liberate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set someone or something free from a situation", + "example_sentence_english": "The army fought to liberate the occupied city.", + "pos": "verb", + "word_frequency": 9915 + }, + { + "word": "lingerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "women's underwear and nightclothes", + "example_sentence_english": "She bought some new lingerie for her wedding.", + "pos": "noun", + "word_frequency": 9916 + }, + { + "word": "lite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light or reduced in calories, fat, etc.", + "example_sentence_english": "I prefer the diet soda, it's a lite version.", + "pos": "adjective", + "word_frequency": 9917 + }, + { + "word": "lurk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be or remain hidden so as to wait in ambush", + "example_sentence_english": "A danger might lurk around the corner.", + "pos": "verb", + "word_frequency": 9919 + }, + { + "word": "magician", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who performs magic tricks", + "example_sentence_english": "The magician pulled a rabbit out of his hat.", + "pos": "noun", + "word_frequency": 9921 + }, + { + "word": "maneuver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move skillfully or carefully", + "example_sentence_english": "The pilot had to maneuver the plane through the storm.", + "pos": "verb", + "word_frequency": 9924 + }, + { + "word": "marrow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soft, fatty tissue inside bones", + "example_sentence_english": "Bone marrow is essential for producing blood cells.", + "pos": "noun", + "word_frequency": 9925 + }, + { + "word": "marvelous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely good or wonderful", + "example_sentence_english": "She had a marvelous time at the party.", + "pos": "adjective", + "word_frequency": 9926 + }, + { + "word": "medicinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having healing properties", + "example_sentence_english": "Many herbs have medicinal uses.", + "pos": "adjective", + "word_frequency": 9928 + }, + { + "word": "mono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short for mononucleosis or monophonic sound", + "example_sentence_english": "He was diagnosed with mono after feeling tired for weeks.", + "pos": "noun", + "word_frequency": 9930 + }, + { + "word": "numb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deprived of feeling or responsiveness", + "example_sentence_english": "My fingers went numb from the cold.", + "pos": "adjective", + "word_frequency": 9932 + }, + { + "word": "omit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave out or exclude", + "example_sentence_english": "Please omit any unnecessary details from your report.", + "pos": "verb", + "word_frequency": 9933 + }, + { + "word": "pastry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a baked food made from dough", + "example_sentence_english": "She bought a delicious pastry from the bakery.", + "pos": "noun", + "word_frequency": 9934 + }, + { + "word": "pawn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chess piece of the lowest value; a person used by others", + "example_sentence_english": "He felt like a mere pawn in their political game.", + "pos": "noun", + "word_frequency": 9935 + }, + { + "word": "pediatric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the medical care of children", + "example_sentence_english": "She works as a pediatric nurse at the hospital.", + "pos": "adjective", + "word_frequency": 9936 + }, + { + "word": "persist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue firmly or obstinately", + "example_sentence_english": "If you persist, you will eventually succeed.", + "pos": "verb", + "word_frequency": 9937 + }, + { + "word": "personalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something unique to a particular person", + "example_sentence_english": "You can personalize your phone with a custom ringtone.", + "pos": "verb", + "word_frequency": 9938 + }, + { + "word": "plaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft mixture that hardens when dry, used for coating walls or making casts", + "example_sentence_english": "The doctor put her arm in a plaster cast.", + "pos": "noun", + "word_frequency": 9939 + }, + { + "word": "playful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fond of fun and games; lighthearted", + "example_sentence_english": "The puppy was very playful and loved to chase its tail.", + "pos": "adjective", + "word_frequency": 9940 + }, + { + "word": "quirky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having peculiar or unexpected traits", + "example_sentence_english": "She has a quirky sense of humor that makes everyone laugh.", + "pos": "adjective", + "word_frequency": 9941 + }, + { + "word": "quota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a limited quantity of something", + "example_sentence_english": "Each salesperson has a monthly sales quota to meet.", + "pos": "noun", + "word_frequency": 9942 + }, + { + "word": "rationale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the underlying reason or justification", + "example_sentence_english": "The committee explained the rationale behind their decision.", + "pos": "noun", + "word_frequency": 9946 + }, + { + "word": "reap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut or gather a crop; to receive a reward or consequence", + "example_sentence_english": "You reap what you sow.", + "pos": "verb", + "word_frequency": 9947 + }, + { + "word": "recess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of time when work or school is stopped for a break", + "example_sentence_english": "The children played outside during recess.", + "pos": "noun", + "word_frequency": 9948 + }, + { + "word": "redeem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate for faults or shortcomings; to save from sin", + "example_sentence_english": "He tried to redeem himself after making a mistake.", + "pos": "verb", + "word_frequency": 9949 + }, + { + "word": "reformation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the improvement or amendment of what is wrong, corrupt, or unsatisfactory", + "example_sentence_english": "The Reformation was a major movement in European history.", + "pos": "noun", + "word_frequency": 9950 + }, + { + "word": "residue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small amount of something that remains after the main part has gone or been removed", + "example_sentence_english": "There was a sticky residue left on the counter.", + "pos": "noun", + "word_frequency": 9951 + }, + { + "word": "runoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water from rain or melted snow that flows over the ground surface", + "example_sentence_english": "Agricultural runoff can pollute rivers and lakes.", + "pos": "noun", + "word_frequency": 9952 + }, + { + "word": "salsa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a spicy sauce; a type of Latin American dance music", + "example_sentence_english": "We ate chips with a delicious tomato salsa.", + "pos": "noun", + "word_frequency": 9954 + }, + { + "word": "semiconductor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance that can conduct electricity under certain conditions", + "example_sentence_english": "Silicon is a widely used semiconductor material.", + "pos": "noun", + "word_frequency": 9955 + }, + { + "word": "sentimental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of or prompted by feelings of tenderness, sadness, or nostalgia", + "example_sentence_english": "She kept the old teddy bear for sentimental reasons.", + "pos": "adjective", + "word_frequency": 9956 + }, + { + "word": "sever", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut off (a part of a whole) or cut through", + "example_sentence_english": "The rope was severed by the sharp rock.", + "pos": "verb", + "word_frequency": 9958 + }, + { + "word": "simultaneous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring or operating at the same time", + "example_sentence_english": "There were simultaneous broadcasts of the event on different channels.", + "pos": "adjective", + "word_frequency": 9959 + }, + { + "word": "snatch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grab quickly", + "example_sentence_english": "He tried to snatch the bag from her hand.", + "pos": "verb", + "word_frequency": 9960 + }, + { + "word": "sneaker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "athletic shoe", + "example_sentence_english": "She bought a new pair of sneakers for running.", + "pos": "noun", + "word_frequency": 9961 + }, + { + "word": "spooky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eerie, frightening", + "example_sentence_english": "The old abandoned house looked really spooky at night.", + "pos": "adjective", + "word_frequency": 9963 + }, + { + "word": "staffing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of providing staff", + "example_sentence_english": "The company is facing challenges with staffing for the new project.", + "pos": "noun", + "word_frequency": 9964 + }, + { + "word": "stealth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cautious and surreptitious action or movement", + "example_sentence_english": "The cat moved with great stealth towards the bird.", + "pos": "noun", + "word_frequency": 9966 + }, + { + "word": "subset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a part of a larger group", + "example_sentence_english": "This group of students is a subset of the entire class.", + "pos": "noun", + "word_frequency": 9967 + }, + { + "word": "suspense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of anxious uncertainty", + "example_sentence_english": "The movie built up a lot of suspense towards the end.", + "pos": "noun", + "word_frequency": 9968 + }, + { + "word": "syntax", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the arrangement of words and phrases", + "example_sentence_english": "Understanding the syntax of a language is crucial for writing correctly.", + "pos": "noun", + "word_frequency": 9970 + }, + { + "word": "tad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small amount", + "example_sentence_english": "Could you move it a tad to the left?", + "pos": "noun", + "word_frequency": 9971 + }, + { + "word": "tandem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bicycle for two people; in conjunction", + "example_sentence_english": "They worked in tandem to complete the project on time.", + "pos": "noun", + "word_frequency": 9972 + }, + { + "word": "televise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broadcast on television", + "example_sentence_english": "The event will be televised live around the world.", + "pos": "verb", + "word_frequency": 9974 + }, + { + "word": "tertiary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "third in order or level", + "example_sentence_english": "She is pursuing tertiary education at the university.", + "pos": "adjective", + "word_frequency": 9975 + }, + { + "word": "thyroid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gland in the neck", + "example_sentence_english": "The doctor checked her thyroid during the examination.", + "pos": "noun", + "word_frequency": 9976 + }, + { + "word": "tidy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neat and orderly", + "example_sentence_english": "Please keep your room tidy.", + "pos": "adjective", + "word_frequency": 9977 + }, + { + "word": "timeless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not affected by the passage of time", + "example_sentence_english": "Her classic style is truly timeless.", + "pos": "adjective", + "word_frequency": 9978 + }, + { + "word": "unreliable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be relied upon", + "example_sentence_english": "The old car proved to be very unreliable.", + "pos": "adjective", + "word_frequency": 9980 + }, + { + "word": "upbeat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheerful and optimistic", + "example_sentence_english": "Despite the challenges, she remained upbeat about the future.", + "pos": "adjective", + "word_frequency": 9981 + }, + { + "word": "usable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be used", + "example_sentence_english": "Is this old equipment still usable?", + "pos": "adjective", + "word_frequency": 9982 + }, + { + "word": "vanguard", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of people leading the way", + "example_sentence_english": "The company is at the vanguard of technological innovation.", + "pos": "noun", + "word_frequency": 9983 + }, + { + "word": "vulgar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking sophistication or good taste", + "example_sentence_english": "His language was often vulgar and offensive.", + "pos": "adjective", + "word_frequency": 9985 + }, + { + "word": "waiver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of waiving a right or claim", + "example_sentence_english": "You need to sign a waiver before participating in the activity.", + "pos": "noun", + "word_frequency": 9986 + }, + { + "word": "watershed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a turning point; an area of land that drains into a river", + "example_sentence_english": "The invention of the internet was a watershed moment in human history.", + "pos": "noun", + "word_frequency": 9988 + }, + { + "word": "wiring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of wires", + "example_sentence_english": "The old house needed new electrical wiring.", + "pos": "noun", + "word_frequency": 9990 + }, + { + "word": "adrenaline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hormone released in stress", + "example_sentence_english": "The sudden fright caused an adrenaline rush.", + "pos": "noun", + "word_frequency": 9992 + }, + { + "word": "alleviate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make suffering less severe", + "example_sentence_english": "The new medicine helped to alleviate her pain.", + "pos": "verb", + "word_frequency": 9994 + }, + { + "word": "anarchy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of disorder due to absence of authority", + "example_sentence_english": "The sudden collapse of the government led to anarchy in the streets.", + "pos": "noun", + "word_frequency": 9996 + }, + { + "word": "ashore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "onto or to the shore", + "example_sentence_english": "The boat drifted ashore during the storm.", + "pos": "adverb", + "word_frequency": 9999 + }, + { + "word": "aura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinctive atmosphere or quality", + "example_sentence_english": "The old house had an aura of mystery.", + "pos": "noun", + "word_frequency": 10000 + }, + { + "word": "ballroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large room used for dancing", + "example_sentence_english": "The wedding reception was held in the grand ballroom.", + "pos": "noun", + "word_frequency": 10002 + }, + { + "word": "beginner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person just starting to learn something", + "example_sentence_english": "This class is perfect for absolute beginners.", + "pos": "noun", + "word_frequency": 10003 + }, + { + "word": "bilingual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speaking two languages fluently", + "example_sentence_english": "She is bilingual in English and Spanish.", + "pos": "adjective", + "word_frequency": 10005 + }, + { + "word": "canopy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a covering, usually of cloth, supported on poles or a frame", + "example_sentence_english": "The trees formed a dense green canopy over the path.", + "pos": "noun", + "word_frequency": 10013 + }, + { + "word": "cherish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold dear; to feel or show great love for", + "example_sentence_english": "I will always cherish the memories of our time together.", + "pos": "verb", + "word_frequency": 10015 + }, + { + "word": "chuckle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to laugh quietly", + "example_sentence_english": "He couldn't help but chuckle at the silly joke.", + "pos": "verb", + "word_frequency": 10016 + }, + { + "word": "civilized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polite and well-mannered; advanced in social development", + "example_sentence_english": "We should try to have a civilized discussion about this issue.", + "pos": "adjective", + "word_frequency": 10017 + }, + { + "word": "comb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tidy hair with a comb", + "example_sentence_english": "She combs her hair every morning.", + "pos": "verb", + "word_frequency": 10018 + }, + { + "word": "condemnation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the expression of very strong disapproval", + "example_sentence_english": "The act received widespread condemnation from the international community.", + "pos": "noun", + "word_frequency": 10019 + }, + { + "word": "contemplate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to think deeply about something", + "example_sentence_english": "He sat quietly, contemplating his next move.", + "pos": "verb", + "word_frequency": 10020 + }, + { + "word": "cruiser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, fast warship; a type of motorcycle or car", + "example_sentence_english": "The police cruiser sped down the highway.", + "pos": "noun", + "word_frequency": 10021 + }, + { + "word": "curl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a spiral or coiled shape", + "example_sentence_english": "She has beautiful natural curls in her hair.", + "pos": "noun", + "word_frequency": 10022 + }, + { + "word": "dart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, pointed missile; a sudden rapid movement", + "example_sentence_english": "He threw a dart at the board.", + "pos": "noun", + "word_frequency": 10023 + }, + { + "word": "demolish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to completely destroy a building", + "example_sentence_english": "The old factory was demolished to make way for new apartments.", + "pos": "verb", + "word_frequency": 10024 + }, + { + "word": "denim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sturdy cotton twill fabric, typically blue", + "example_sentence_english": "She was wearing a pair of blue denim jeans.", + "pos": "noun", + "word_frequency": 10025 + }, + { + "word": "dependency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of relying on or being controlled by someone or something else", + "example_sentence_english": "The country's dependency on oil imports is a concern.", + "pos": "noun", + "word_frequency": 10026 + }, + { + "word": "dew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny drops of water that form on cool surfaces at night", + "example_sentence_english": "The grass was wet with morning dew.", + "pos": "noun", + "word_frequency": 10027 + }, + { + "word": "dishonest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not truthful or trustworthy", + "example_sentence_english": "It was dishonest of him to lie about what happened.", + "pos": "adjective", + "word_frequency": 10030 + }, + { + "word": "dosage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the size or frequency of a dose of medicine or radiation", + "example_sentence_english": "Always follow the recommended dosage for the medication.", + "pos": "noun", + "word_frequency": 10031 + }, + { + "word": "doubtful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling uncertain about something", + "example_sentence_english": "It's doubtful that he will arrive on time.", + "pos": "adjective", + "word_frequency": 10032 + }, + { + "word": "dysfunction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impairment or abnormality in the function of a bodily organ or system; disruption of normal social relations", + "example_sentence_english": "The family suffered from severe dysfunction.", + "pos": "noun", + "word_frequency": 10033 + }, + { + "word": "encyclopedia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a book or set of books giving information on many subjects", + "example_sentence_english": "He looked up the information in the encyclopedia.", + "pos": "noun", + "word_frequency": 10034 + }, + { + "word": "endowment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gift of money or property to an institution or individual", + "example_sentence_english": "The university received a generous endowment from an anonymous donor.", + "pos": "noun", + "word_frequency": 10035 + }, + { + "word": "engrave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut or carve a text or design on a hard surface", + "example_sentence_english": "They decided to engrave their names on the back of the watch.", + "pos": "verb", + "word_frequency": 10036 + }, + { + "word": "enrichment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of improving or enhancing the quality or value of something", + "example_sentence_english": "The program offers educational enrichment for children.", + "pos": "noun", + "word_frequency": 10037 + }, + { + "word": "erection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of erecting something; a structure that has been erected", + "example_sentence_english": "The erection of the new building took several months.", + "pos": "noun", + "word_frequency": 10038 + }, + { + "word": "eruption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act or instance of erupting", + "example_sentence_english": "The volcanic eruption caused widespread ashfall.", + "pos": "noun", + "word_frequency": 10039 + }, + { + "word": "examiner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who examines", + "example_sentence_english": "The examiner asked a difficult question.", + "pos": "noun", + "word_frequency": 10040 + }, + { + "word": "fauna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the animals of a particular region", + "example_sentence_english": "The local fauna includes deer and foxes.", + "pos": "noun", + "word_frequency": 10044 + }, + { + "word": "fed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a federal agent or the Federal Reserve", + "example_sentence_english": "The Fed raised interest rates.", + "pos": "noun", + "word_frequency": 10045 + }, + { + "word": "fidelity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loyalty or accuracy", + "example_sentence_english": "He swore fidelity to his country.", + "pos": "noun", + "word_frequency": 10046 + }, + { + "word": "fluent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to speak or write a language easily", + "example_sentence_english": "She is fluent in three languages.", + "pos": "adjective", + "word_frequency": 10048 + }, + { + "word": "flute", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a musical wind instrument", + "example_sentence_english": "He plays the flute in the orchestra.", + "pos": "noun", + "word_frequency": 10049 + }, + { + "word": "footprint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mark left by a foot", + "example_sentence_english": "We saw a large footprint in the sand.", + "pos": "noun", + "word_frequency": 10050 + }, + { + "word": "fore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "situated at the front", + "example_sentence_english": "The fore part of the ship was damaged.", + "pos": "adjective", + "word_frequency": 10051 + }, + { + "word": "forefront", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the leading position", + "example_sentence_english": "She is at the forefront of medical research.", + "pos": "noun", + "word_frequency": 10052 + }, + { + "word": "formulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to create or devise", + "example_sentence_english": "They need to formulate a new plan.", + "pos": "verb", + "word_frequency": 10053 + }, + { + "word": "freshwater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to water that is not salty", + "example_sentence_english": "This lake is home to many freshwater fish.", + "pos": "adjective", + "word_frequency": 10054 + }, + { + "word": "harden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become hard", + "example_sentence_english": "The concrete will harden overnight.", + "pos": "verb", + "word_frequency": 10059 + }, + { + "word": "hateful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of hate or deserving hate", + "example_sentence_english": "His hateful comments offended everyone.", + "pos": "adjective", + "word_frequency": 10060 + }, + { + "word": "hepatitis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflammation of the liver", + "example_sentence_english": "Hepatitis can be caused by a virus.", + "pos": "noun", + "word_frequency": 10062 + }, + { + "word": "inhabit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to live in", + "example_sentence_english": "Many species inhabit this forest.", + "pos": "verb", + "word_frequency": 10067 + }, + { + "word": "initiation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of beginning something or a ceremony", + "example_sentence_english": "The initiation ceremony was very old.", + "pos": "noun", + "word_frequency": 10068 + }, + { + "word": "jeopardy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "danger of loss, harm, or failure", + "example_sentence_english": "His life was in great jeopardy.", + "pos": "noun", + "word_frequency": 10070 + }, + { + "word": "lockdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of isolation or restricted access", + "example_sentence_english": "The city went into lockdown to control the virus.", + "pos": "noun", + "word_frequency": 10076 + }, + { + "word": "mandarin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dialect of Chinese or a type of orange", + "example_sentence_english": "She is learning to speak Mandarin.", + "pos": "noun", + "word_frequency": 10077 + }, + { + "word": "mast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tall upright post on a ship or for broadcasting", + "example_sentence_english": "The ship's mast was broken in the storm.", + "pos": "noun", + "word_frequency": 10078 + }, + { + "word": "matte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dull and flat, without a shine", + "example_sentence_english": "The paint had a matte finish.", + "pos": "adjective", + "word_frequency": 10079 + }, + { + "word": "mediocre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of average or low quality", + "example_sentence_english": "The restaurant served mediocre food, nothing special.", + "pos": "adjective", + "word_frequency": 10081 + }, + { + "word": "nicotine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a toxic alkaloid found in tobacco", + "example_sentence_english": "Nicotine is the addictive substance in cigarettes.", + "pos": "noun", + "word_frequency": 10086 + }, + { + "word": "nordic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Scandinavia, Finland, and Iceland", + "example_sentence_english": "She loves Nordic design, especially the minimalist furniture.", + "pos": "adjective", + "word_frequency": 10089 + }, + { + "word": "outward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directed toward the outside", + "example_sentence_english": "Her outward appearance was calm, but inside she was nervous.", + "pos": "adjective", + "word_frequency": 10091 + }, + { + "word": "overrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have too high an opinion of", + "example_sentence_english": "I think people tend to overrate that movie; it wasn't that great.", + "pos": "verb", + "word_frequency": 10092 + }, + { + "word": "pep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy and high spirits", + "example_sentence_english": "The coach gave a pep talk to motivate the team.", + "pos": "noun", + "word_frequency": 10096 + }, + { + "word": "piracy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the unauthorized use or reproduction of another's work", + "example_sentence_english": "Software piracy is a serious problem for many companies.", + "pos": "noun", + "word_frequency": 10097 + }, + { + "word": "platoon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a subdivision of a company of soldiers", + "example_sentence_english": "The platoon marched through the dense jungle.", + "pos": "noun", + "word_frequency": 10098 + }, + { + "word": "practise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to perform an activity or exercise regularly", + "example_sentence_english": "You need to practise every day to improve your skills.", + "pos": "verb", + "word_frequency": 10099 + }, + { + "word": "rave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an extremely enthusiastic review or party", + "example_sentence_english": "The new restaurant received rave reviews from critics.", + "pos": "noun", + "word_frequency": 10100 + }, + { + "word": "recreate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to create again or anew", + "example_sentence_english": "They tried to recreate the original recipe, but it wasn't quite the same.", + "pos": "verb", + "word_frequency": 10101 + }, + { + "word": "residual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remaining after the greater part has gone or been removed", + "example_sentence_english": "There was a residual smell of smoke in the room.", + "pos": "adjective", + "word_frequency": 10104 + }, + { + "word": "robe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, loose outer garment", + "example_sentence_english": "She put on her soft bathrobe after her shower.", + "pos": "noun", + "word_frequency": 10105 + }, + { + "word": "rye", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of grain or whiskey made from it", + "example_sentence_english": "He ordered a sandwich on rye bread.", + "pos": "noun", + "word_frequency": 10107 + }, + { + "word": "sensational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing great public interest and excitement", + "example_sentence_english": "The singer gave a sensational performance last night.", + "pos": "adjective", + "word_frequency": 10109 + }, + { + "word": "sexism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prejudice, stereotyping, or discrimination, typically against women", + "example_sentence_english": "The company was accused of sexism in its hiring practices.", + "pos": "noun", + "word_frequency": 10110 + }, + { + "word": "smoker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who smokes tobacco", + "example_sentence_english": "My grandfather was a heavy smoker for many years.", + "pos": "noun", + "word_frequency": 10111 + }, + { + "word": "sneaky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acting in a stealthy or underhand way", + "example_sentence_english": "The cat made a sneaky attempt to steal food from the table.", + "pos": "adjective", + "word_frequency": 10112 + }, + { + "word": "socket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hollow into which something fits", + "example_sentence_english": "Plug the lamp into the wall socket.", + "pos": "noun", + "word_frequency": 10113 + }, + { + "word": "starvation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffering or death caused by lack of food", + "example_sentence_english": "Millions of people around the world face starvation.", + "pos": "noun", + "word_frequency": 10114 + }, + { + "word": "stool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a backless and armless seat", + "example_sentence_english": "He sat on a bar stool and ordered a drink.", + "pos": "noun", + "word_frequency": 10115 + }, + { + "word": "tread", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of a tire that touches the ground", + "example_sentence_english": "The car's tires had very little tread left.", + "pos": "noun", + "word_frequency": 10120 + }, + { + "word": "truce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an agreement between enemies or opponents to stop fighting or arguing for a certain time", + "example_sentence_english": "The two warring factions agreed to a temporary truce.", + "pos": "noun", + "word_frequency": 10121 + }, + { + "word": "tsunami", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, high sea wave caused by an earthquake or other disturbance", + "example_sentence_english": "The coastal town was devastated by the powerful tsunami.", + "pos": "noun", + "word_frequency": 10122 + }, + { + "word": "turmoil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of great disturbance, confusion, or uncertainty", + "example_sentence_english": "The country was in political turmoil after the election.", + "pos": "noun", + "word_frequency": 10123 + }, + { + "word": "tyranny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cruel and oppressive government or rule", + "example_sentence_english": "The people rebelled against the tyranny of the dictator.", + "pos": "noun", + "word_frequency": 10124 + }, + { + "word": "tyre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a rubber covering, typically inflated or surrounding a wheel rim", + "example_sentence_english": "He had to change a flat tyre on the side of the road.", + "pos": "noun", + "word_frequency": 10125 + }, + { + "word": "unfit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not suitable or good enough; not in good physical condition", + "example_sentence_english": "He was declared medically unfit for military service.", + "pos": "adjective", + "word_frequency": 10127 + }, + { + "word": "vita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a short biographical sketch or summary of one's career", + "example_sentence_english": "Please attach your full vita to the application.", + "pos": "noun", + "word_frequency": 10128 + }, + { + "word": "weir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a low dam built across a river to raise the level of water upstream or regulate its flow", + "example_sentence_english": "The salmon were unable to jump over the new weir.", + "pos": "noun", + "word_frequency": 10132 + }, + { + "word": "wellbeing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being comfortable, healthy, or happy", + "example_sentence_english": "Exercise is crucial for your overall wellbeing.", + "pos": "noun", + "word_frequency": 10133 + }, + { + "word": "wonderland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place full of wonderful things or experiences", + "example_sentence_english": "The theme park was a true wonderland for children.", + "pos": "noun", + "word_frequency": 10135 + }, + { + "word": "wrestler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who takes part in wrestling", + "example_sentence_english": "The wrestler trained for hours every day.", + "pos": "noun", + "word_frequency": 10136 + }, + { + "word": "zoning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the division of an area into zones, especially to restrict the number and types of buildings and their uses", + "example_sentence_english": "The city council approved new zoning regulations for the downtown area.", + "pos": "noun", + "word_frequency": 10138 + }, + { + "word": "abolition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or an act of abolishing a system, practice, or institution", + "example_sentence_english": "The abolition of slavery was a major turning point in history.", + "pos": "noun", + "word_frequency": 10144 + }, + { + "word": "accessibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being able to be reached or entered; the quality of being easy to understand or use", + "example_sentence_english": "The new building was designed with full accessibility for people with disabilities.", + "pos": "noun", + "word_frequency": 10145 + }, + { + "word": "acquaint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone aware of or familiar with", + "example_sentence_english": "Please allow me to acquaint you with the new procedures.", + "pos": "verb", + "word_frequency": 10146 + }, + { + "word": "aloud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "audibly; not silently or in a whisper", + "example_sentence_english": "She read the story aloud to the children.", + "pos": "adverb", + "word_frequency": 10147 + }, + { + "word": "angular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having sharp angles or a gaunt, bony appearance", + "example_sentence_english": "The modern sculpture had a very angular design.", + "pos": "adjective", + "word_frequency": 10148 + }, + { + "word": "anterior", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nearer the front, especially in the anterior part of the body or a structure", + "example_sentence_english": "The anterior part of the brain controls movement.", + "pos": "adjective", + "word_frequency": 10149 + }, + { + "word": "appendix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a section or table of additional matter at the end of a book or document; a small, finger-shaped organ projecting from the large intestine", + "example_sentence_english": "You can find more details in the appendix at the back of the book.", + "pos": "noun", + "word_frequency": 10150 + }, + { + "word": "auditorium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a theater, concert hall, or other public building in which the audience sits", + "example_sentence_english": "The school auditorium can seat over 500 people.", + "pos": "noun", + "word_frequency": 10153 + }, + { + "word": "benign", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gentle and kind; not harmful in effect", + "example_sentence_english": "The doctor assured her that the tumor was benign.", + "pos": "adjective", + "word_frequency": 10157 + }, + { + "word": "bleach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chemical used to whiten or clean things", + "example_sentence_english": "She used bleach to remove the stain from the white shirt.", + "pos": "noun", + "word_frequency": 10159 + }, + { + "word": "brandy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A strong alcoholic spirit distilled from wine or fermented fruit juice.", + "example_sentence_english": "He enjoyed a glass of brandy after dinner.", + "pos": "noun", + "word_frequency": 10161 + }, + { + "word": "brink", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The extreme edge of land before a steep slope or a body of water; a point at which something is about to happen.", + "example_sentence_english": "The country was on the brink of war.", + "pos": "noun", + "word_frequency": 10163 + }, + { + "word": "cheeky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Impertinent or irreverent in an amusing way.", + "example_sentence_english": "The child gave a cheeky grin.", + "pos": "adjective", + "word_frequency": 10169 + }, + { + "word": "chemist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who studies or practices chemistry; a pharmacist (British English).", + "example_sentence_english": "She wants to be a chemist and work in a lab.", + "pos": "noun", + "word_frequency": 10170 + }, + { + "word": "coastline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The outline of a coast, especially with regard to its shape and appearance.", + "example_sentence_english": "The coastline of California is very beautiful.", + "pos": "noun", + "word_frequency": 10172 + }, + { + "word": "cobra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A highly venomous snake of tropical Asia and Africa, with a hood that it expands when excited.", + "example_sentence_english": "The zookeeper warned us about the dangerous cobra.", + "pos": "noun", + "word_frequency": 10173 + }, + { + "word": "collaborate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Work jointly on an activity or project.", + "example_sentence_english": "They decided to collaborate on the research project.", + "pos": "verb", + "word_frequency": 10174 + }, + { + "word": "cosmos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The universe regarded as a complex and orderly system; a genus of flowering plants.", + "example_sentence_english": "Scientists study the vastness of the cosmos.", + "pos": "noun", + "word_frequency": 10176 + }, + { + "word": "cuff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The end part of a sleeve or trouser leg, folded or sewn as a band.", + "example_sentence_english": "He rolled up the cuffs of his shirt.", + "pos": "noun", + "word_frequency": 10177 + }, + { + "word": "cyclone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A system of winds rotating inwards to an area of low atmospheric pressure, with an anticlockwise or clockwise circulation.", + "example_sentence_english": "The cyclone caused widespread damage to the coastal areas.", + "pos": "noun", + "word_frequency": 10178 + }, + { + "word": "delusional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Characterized by or holding false beliefs or judgments.", + "example_sentence_english": "He was so delusional that he believed he could fly.", + "pos": "adjective", + "word_frequency": 10179 + }, + { + "word": "deposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action of deposing someone, especially a monarch; the process of giving sworn evidence; the natural process of laying down a substance.", + "example_sentence_english": "The lawyer took the witness's deposition.", + "pos": "noun", + "word_frequency": 10180 + }, + { + "word": "diligence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Careful and persistent work or effort.", + "example_sentence_english": "Her diligence in studying led to excellent grades.", + "pos": "noun", + "word_frequency": 10181 + }, + { + "word": "discriminate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Make an unjust or prejudicial distinction in the treatment of different categories of people or things; perceive or recognize the difference between.", + "example_sentence_english": "It is illegal to discriminate against someone based on their age.", + "pos": "verb", + "word_frequency": 10182 + }, + { + "word": "diversion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An instance of turning something aside from its course; an activity that diverts the mind from tedious or serious concerns; a recreation or pastime.", + "example_sentence_english": "The road closure caused a major diversion.", + "pos": "noun", + "word_frequency": 10183 + }, + { + "word": "doorway", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "An opening in a wall or partition for a door.", + "example_sentence_english": "He stood in the doorway, blocking the light.", + "pos": "noun", + "word_frequency": 10184 + }, + { + "word": "dumpster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large refuse container.", + "example_sentence_english": "He threw the old furniture into the dumpster.", + "pos": "noun", + "word_frequency": 10186 + }, + { + "word": "excerpt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short extract from a film, broadcast, or piece of music or writing.", + "example_sentence_english": "She read an excerpt from the new novel.", + "pos": "noun", + "word_frequency": 10189 + }, + { + "word": "existent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having actual being; existing.", + "example_sentence_english": "The question of whether alien life is existent remains unanswered.", + "pos": "adjective", + "word_frequency": 10190 + }, + { + "word": "fabricate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Invent or concoct (something), typically with deceitful intent; construct or manufacture (an industrial product), especially from prepared components.", + "example_sentence_english": "He tried to fabricate an alibi.", + "pos": "verb", + "word_frequency": 10192 + }, + { + "word": "fandom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The fans of a particular person, team, series, etc., regarded collectively as a community or subculture.", + "example_sentence_english": "The show has a very dedicated fandom.", + "pos": "noun", + "word_frequency": 10193 + }, + { + "word": "foe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An enemy or opponent.", + "example_sentence_english": "He faced his old foe in the final match.", + "pos": "noun", + "word_frequency": 10194 + }, + { + "word": "getaway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An escape or quick departure; a short holiday or vacation.", + "example_sentence_english": "The thieves made a quick getaway in a stolen car.", + "pos": "noun", + "word_frequency": 10196 + }, + { + "word": "glamour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality of fascinating or alluring charm or beauty.", + "example_sentence_english": "Hollywood is often associated with glamour and fame.", + "pos": "noun", + "word_frequency": 10197 + }, + { + "word": "inbox", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A folder in an email program or other digital messaging system where new incoming messages are stored.", + "example_sentence_english": "I have fifty unread emails in my inbox.", + "pos": "noun", + "word_frequency": 10199 + }, + { + "word": "incidental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as a minor accompaniment or consequence", + "example_sentence_english": "The costs were incidental to the main project.", + "pos": "adverb", + "word_frequency": 10200 + }, + { + "word": "inflate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fill with air or gas; to increase in size or amount", + "example_sentence_english": "We need to inflate the tires before the trip.", + "pos": "verb", + "word_frequency": 10201 + }, + { + "word": "influenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a common viral infection that attacks the respiratory system", + "example_sentence_english": "Many people get influenza during the winter months.", + "pos": "noun", + "word_frequency": 10202 + }, + { + "word": "instructional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to instruction or teaching", + "example_sentence_english": "The video provides clear instructional guidance.", + "pos": "adjective", + "word_frequency": 10203 + }, + { + "word": "interviewer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who conducts an interview", + "example_sentence_english": "The interviewer asked many challenging questions.", + "pos": "noun", + "word_frequency": 10204 + }, + { + "word": "introductory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serving as an introduction; preliminary", + "example_sentence_english": "This is an introductory course to computer science.", + "pos": "adjective", + "word_frequency": 10205 + }, + { + "word": "jaguar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large spotted cat native to Central and South America", + "example_sentence_english": "The jaguar is a powerful predator.", + "pos": "noun", + "word_frequency": 10207 + }, + { + "word": "loft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room or space directly under the roof of a house or other building", + "example_sentence_english": "They converted the old attic into a spacious loft apartment.", + "pos": "noun", + "word_frequency": 10211 + }, + { + "word": "mediate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intervene between people in a dispute in order to bring about an agreement or reconciliation", + "example_sentence_english": "The lawyer tried to mediate the dispute between the two parties.", + "pos": "verb", + "word_frequency": 10214 + }, + { + "word": "mediation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervention in a dispute in order to resolve it", + "example_sentence_english": "They opted for mediation instead of going to court.", + "pos": "noun", + "word_frequency": 10215 + }, + { + "word": "millennial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person reaching young adulthood in the early 21st century", + "example_sentence_english": "Many millennials are now entering the housing market.", + "pos": "noun", + "word_frequency": 10217 + }, + { + "word": "modular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employing or involving modules as the basis of a design or construction", + "example_sentence_english": "The new furniture has a modular design, allowing for flexible arrangements.", + "pos": "adjective", + "word_frequency": 10218 + }, + { + "word": "outlaw", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has broken the law, especially one who remains at large or is a fugitive", + "example_sentence_english": "The sheriff was determined to catch the notorious outlaw.", + "pos": "noun", + "word_frequency": 10222 + }, + { + "word": "oversee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supervise a person or their work, especially in an official capacity", + "example_sentence_english": "She was hired to oversee the entire project.", + "pos": "verb", + "word_frequency": 10223 + }, + { + "word": "pageant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a public entertainment consisting of a procession of people in elaborate costumes, or a competition for beauty", + "example_sentence_english": "The annual beauty pageant attracts many contestants.", + "pos": "noun", + "word_frequency": 10224 + }, + { + "word": "parachute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cloth canopy that fills with air and allows a person or heavy object attached to it to descend slowly when dropped from an aircraft", + "example_sentence_english": "He packed his parachute carefully before the jump.", + "pos": "noun", + "word_frequency": 10225 + }, + { + "word": "parasite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organism that lives in or on an organism of another species (its host) and benefits by deriving nutrients at the other's expense", + "example_sentence_english": "Some insects are known to be parasites of plants.", + "pos": "noun", + "word_frequency": 10226 + }, + { + "word": "parenthood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being a parent", + "example_sentence_english": "Parenthood brings both joys and challenges.", + "pos": "noun", + "word_frequency": 10227 + }, + { + "word": "perennial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lasting or existing for a long or apparently infinite time; enduring or continually recurring", + "example_sentence_english": "The perennial problem of traffic congestion affects the city.", + "pos": "adjective", + "word_frequency": 10228 + }, + { + "word": "persistence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firm or obstinate continuance in a course of action in spite of difficulty or opposition", + "example_sentence_english": "Her persistence paid off, and she finally achieved her goal.", + "pos": "noun", + "word_frequency": 10229 + }, + { + "word": "postage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the amount of money charged for sending a letter or parcel by post", + "example_sentence_english": "The postage for this letter is quite high.", + "pos": "noun", + "word_frequency": 10231 + }, + { + "word": "preschool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a school for children who are too young to attend kindergarten", + "example_sentence_english": "My daughter started preschool last month.", + "pos": "noun", + "word_frequency": 10232 + }, + { + "word": "procedural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or consisting of a procedure", + "example_sentence_english": "The company is reviewing its procedural guidelines.", + "pos": "adjective", + "word_frequency": 10233 + }, + { + "word": "pronunciation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the way in which a word is pronounced", + "example_sentence_english": "Good pronunciation is key to clear communication.", + "pos": "noun", + "word_frequency": 10234 + }, + { + "word": "provoke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stimulate or incite (someone) to do or feel something, especially by arousing anger in them", + "example_sentence_english": "His rude comments were meant to provoke a reaction.", + "pos": "verb", + "word_frequency": 10235 + }, + { + "word": "quotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of words taken from a text or speech and repeated by someone other than the original author or speaker", + "example_sentence_english": "She ended her speech with a famous quotation.", + "pos": "noun", + "word_frequency": 10236 + }, + { + "word": "relentless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oppressively constant; incessant", + "example_sentence_english": "The team showed relentless determination to win the game.", + "pos": "adjective", + "word_frequency": 10237 + }, + { + "word": "remnant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small remaining quantity of something", + "example_sentence_english": "Only a small remnant of the ancient forest remains today.", + "pos": "noun", + "word_frequency": 10238 + }, + { + "word": "repression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of subduing someone or something by force; the act of suppressing a thought or desire in oneself", + "example_sentence_english": "The government used repression to control dissent.", + "pos": "noun", + "word_frequency": 10239 + }, + { + "word": "reprint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "print again", + "example_sentence_english": "The publisher decided to reprint the popular novel.", + "pos": "verb", + "word_frequency": 10240 + }, + { + "word": "shootout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gunfight", + "example_sentence_english": "The police were involved in a shootout with the bank robbers.", + "pos": "noun", + "word_frequency": 10242 + }, + { + "word": "sigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eighteenth letter of the Greek alphabet", + "example_sentence_english": "In statistics, sigma often represents standard deviation.", + "pos": "noun", + "word_frequency": 10243 + }, + { + "word": "speculative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based on conjecture rather than knowledge", + "example_sentence_english": "His theory was highly speculative and lacked concrete evidence.", + "pos": "adjective", + "word_frequency": 10246 + }, + { + "word": "submerge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put or go underwater", + "example_sentence_english": "The submarine can submerge to great depths.", + "pos": "verb", + "word_frequency": 10247 + }, + { + "word": "symmetry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being made up of exactly similar parts facing each other", + "example_sentence_english": "The human face often exhibits a degree of symmetry.", + "pos": "noun", + "word_frequency": 10248 + }, + { + "word": "syndicate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of individuals or organizations combined to promote a common interest", + "example_sentence_english": "The crime syndicate controlled the illegal gambling operations.", + "pos": "noun", + "word_frequency": 10249 + }, + { + "word": "tibetan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Tibet or its people", + "example_sentence_english": "Tibetan monks are known for their spiritual practices.", + "pos": "adjective", + "word_frequency": 10252 + }, + { + "word": "tighten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become tight", + "example_sentence_english": "Please tighten the screws on this shelf.", + "pos": "verb", + "word_frequency": 10253 + }, + { + "word": "trustworthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be relied on as honest or truthful", + "example_sentence_english": "He is a trustworthy person; you can rely on his word.", + "pos": "adjective", + "word_frequency": 10255 + }, + { + "word": "twelfth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coming after the eleventh", + "example_sentence_english": "Her birthday is on the twelfth of December.", + "pos": "numeral", + "word_frequency": 10256 + }, + { + "word": "ultrasound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical imaging technique", + "example_sentence_english": "The doctor performed an ultrasound to check the baby's development.", + "pos": "noun", + "word_frequency": 10257 + }, + { + "word": "usher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who shows people to their seats", + "example_sentence_english": "The usher led us to our seats in the theater.", + "pos": "noun", + "word_frequency": 10258 + }, + { + "word": "vascular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to vessels that convey fluids", + "example_sentence_english": "The human body has a complex vascular system.", + "pos": "adjective", + "word_frequency": 10259 + }, + { + "word": "wholesome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conducive to moral or physical well-being", + "example_sentence_english": "She prefers wholesome food like fresh fruits and vegetables.", + "pos": "adjective", + "word_frequency": 10262 + }, + { + "word": "adjoin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "be next to and joined with", + "example_sentence_english": "The two properties adjoin each other.", + "pos": "verb", + "word_frequency": 10264 + }, + { + "word": "ancestry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one's family or ethnic descent", + "example_sentence_english": "She traced her ancestry back to the 17th century.", + "pos": "noun", + "word_frequency": 10266 + }, + { + "word": "annex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a building added to a larger one", + "example_sentence_english": "The library built a new annex to house its growing collection.", + "pos": "noun", + "word_frequency": 10267 + }, + { + "word": "augment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make something greater by adding to it", + "example_sentence_english": "He decided to augment his income by working a second job.", + "pos": "verb", + "word_frequency": 10268 + }, + { + "word": "avid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing a keen interest in or enthusiasm for something", + "example_sentence_english": "She is an avid reader of historical novels.", + "pos": "adjective", + "word_frequency": 10269 + }, + { + "word": "barge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long flat-bottomed boat", + "example_sentence_english": "The barge transported coal along the river.", + "pos": "noun", + "word_frequency": 10271 + }, + { + "word": "bartender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who mixes and serves drinks at a bar", + "example_sentence_english": "The bartender served us two cocktails.", + "pos": "noun", + "word_frequency": 10272 + }, + { + "word": "birch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a slender, deciduous tree", + "example_sentence_english": "The forest was full of tall birch trees.", + "pos": "noun", + "word_frequency": 10274 + }, + { + "word": "bland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacking strong features or characteristics", + "example_sentence_english": "The food was bland and lacked seasoning.", + "pos": "adjective", + "word_frequency": 10275 + }, + { + "word": "bohemian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconventional, especially in artistic or literary circles", + "example_sentence_english": "She lived a bohemian lifestyle, traveling and creating art.", + "pos": "adjective", + "word_frequency": 10276 + }, + { + "word": "bong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a water pipe used for smoking", + "example_sentence_english": "He kept a bong hidden in his closet.", + "pos": "noun", + "word_frequency": 10277 + }, + { + "word": "breastfeeding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of feeding a baby with milk from the breast", + "example_sentence_english": "Breastfeeding provides many benefits for both mother and baby.", + "pos": "noun", + "word_frequency": 10278 + }, + { + "word": "bribe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a payment made to a person to persuade them to act dishonestly", + "example_sentence_english": "The politician was accused of taking a bribe.", + "pos": "noun", + "word_frequency": 10279 + }, + { + "word": "bridal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a bride or a wedding", + "example_sentence_english": "She wore a beautiful bridal gown.", + "pos": "adjective", + "word_frequency": 10280 + }, + { + "word": "broccoli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a green vegetable with a tree-like shape", + "example_sentence_english": "I like to eat steamed broccoli with my dinner.", + "pos": "noun", + "word_frequency": 10281 + }, + { + "word": "buckle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a clasp or fastener", + "example_sentence_english": "He fastened the buckle on his belt.", + "pos": "noun", + "word_frequency": 10282 + }, + { + "word": "canoe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light, narrow boat propelled by paddles", + "example_sentence_english": "They went for a ride in a canoe on the lake.", + "pos": "noun", + "word_frequency": 10285 + }, + { + "word": "chilly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unpleasantly cold", + "example_sentence_english": "It's a bit chilly outside, so wear a jacket.", + "pos": "adjective", + "word_frequency": 10286 + }, + { + "word": "cider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an alcoholic drink made from fermented apple juice, or non-alcoholic apple juice", + "example_sentence_english": "We enjoyed a glass of warm apple cider by the fire.", + "pos": "noun", + "word_frequency": 10288 + }, + { + "word": "clueless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without any knowledge or understanding", + "example_sentence_english": "He was completely clueless about what to do next.", + "pos": "adjective", + "word_frequency": 10289 + }, + { + "word": "correlate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "have a mutual relationship or connection", + "example_sentence_english": "Stress levels often correlate with sleep deprivation.", + "pos": "verb", + "word_frequency": 10291 + }, + { + "word": "cradle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a baby's bed, typically one that rocks", + "example_sentence_english": "The baby slept peacefully in her cradle.", + "pos": "noun", + "word_frequency": 10292 + }, + { + "word": "crappy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of very poor quality; unpleasant", + "example_sentence_english": "I had a really crappy day at work.", + "pos": "adjective", + "word_frequency": 10293 + }, + { + "word": "cripple", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cause severe and disabling damage to", + "example_sentence_english": "The economic crisis threatened to cripple the industry.", + "pos": "verb", + "word_frequency": 10294 + }, + { + "word": "decency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behavior that is polite, moral, and respectable", + "example_sentence_english": "He always treated everyone with decency and respect.", + "pos": "noun", + "word_frequency": 10297 + }, + { + "word": "despise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feel contempt or a deep repugnance for", + "example_sentence_english": "She despises people who are dishonest.", + "pos": "verb", + "word_frequency": 10298 + }, + { + "word": "destroyer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that destroys, especially a fast warship", + "example_sentence_english": "The navy deployed a destroyer to the area.", + "pos": "noun", + "word_frequency": 10299 + }, + { + "word": "diocese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a district under the pastoral care of a bishop", + "example_sentence_english": "The bishop oversees the churches in his diocese.", + "pos": "noun", + "word_frequency": 10300 + }, + { + "word": "disperse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scatter or spread over a wide area", + "example_sentence_english": "The police used tear gas to disperse the crowd.", + "pos": "verb", + "word_frequency": 10301 + }, + { + "word": "doorstep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a step leading up to the outer door of a house", + "example_sentence_english": "The package was left on the doorstep.", + "pos": "noun", + "word_frequency": 10302 + }, + { + "word": "embark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "begin a course of action, especially one that is important or demanding", + "example_sentence_english": "They decided to embark on a new business venture.", + "pos": "verb", + "word_frequency": 10304 + }, + { + "word": "enrich", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improve or enhance the quality or value of", + "example_sentence_english": "Reading can greatly enrich your vocabulary.", + "pos": "verb", + "word_frequency": 10305 + }, + { + "word": "fella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man or boy (informal)", + "example_sentence_english": "He's a good fella, always willing to help.", + "pos": "noun", + "word_frequency": 10307 + }, + { + "word": "footing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secure grip or position", + "example_sentence_english": "Be careful not to lose your footing on the icy path.", + "pos": "noun", + "word_frequency": 10309 + }, + { + "word": "glamorous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of glamour; attractive and exciting", + "example_sentence_english": "She leads a very glamorous lifestyle.", + "pos": "adjective", + "word_frequency": 10311 + }, + { + "word": "grower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or company that grows produce", + "example_sentence_english": "The local fruit grower sells fresh apples.", + "pos": "noun", + "word_frequency": 10313 + }, + { + "word": "handler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who handles or manages something or someone", + "example_sentence_english": "The dog handler trained the police dog.", + "pos": "noun", + "word_frequency": 10314 + }, + { + "word": "hangover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant physical effects following excessive drinking of alcohol", + "example_sentence_english": "He woke up with a terrible hangover after the party.", + "pos": "noun", + "word_frequency": 10315 + }, + { + "word": "hater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who expresses strong dislike or criticism", + "example_sentence_english": "Don't listen to the haters, just keep doing your best.", + "pos": "noun", + "word_frequency": 10316 + }, + { + "word": "havoc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widespread destruction or disorder", + "example_sentence_english": "The storm wreaked havoc on the coastal towns.", + "pos": "noun", + "word_frequency": 10318 + }, + { + "word": "hind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rear; back", + "example_sentence_english": "The dog's hind legs were injured.", + "pos": "adjective", + "word_frequency": 10320 + }, + { + "word": "hitter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that hits", + "example_sentence_english": "He's known as a powerful hitter in baseball.", + "pos": "noun", + "word_frequency": 10321 + }, + { + "word": "hive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a structure where bees live", + "example_sentence_english": "The bees returned to their hive at dusk.", + "pos": "noun", + "word_frequency": 10322 + }, + { + "word": "homophobic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing a dislike of or prejudice against gay people", + "example_sentence_english": "Homophobic remarks are unacceptable in any workplace.", + "pos": "adjective", + "word_frequency": 10323 + }, + { + "word": "humid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot and damp", + "example_sentence_english": "The air was very humid before the storm.", + "pos": "adjective", + "word_frequency": 10325 + }, + { + "word": "illuminate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to light up; to make clear", + "example_sentence_english": "The streetlights illuminate the path at night.", + "pos": "verb", + "word_frequency": 10327 + }, + { + "word": "imam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a leader in a mosque", + "example_sentence_english": "The imam led the prayers at the mosque.", + "pos": "noun", + "word_frequency": 10328 + }, + { + "word": "implant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or tissue placed in the body", + "example_sentence_english": "She received a dental implant to replace her missing tooth.", + "pos": "noun", + "word_frequency": 10329 + }, + { + "word": "indict", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to formally accuse of a crime", + "example_sentence_english": "The grand jury voted to indict him on fraud charges.", + "pos": "verb", + "word_frequency": 10330 + }, + { + "word": "inexperienced", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking experience", + "example_sentence_english": "The new employee was very inexperienced.", + "pos": "adjective", + "word_frequency": 10331 + }, + { + "word": "jackpot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large cash prize", + "example_sentence_english": "He won the jackpot in the lottery.", + "pos": "noun", + "word_frequency": 10332 + }, + { + "word": "jurassic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Jurassic period", + "example_sentence_english": "Dinosaurs lived during the Jurassic period.", + "pos": "adjective", + "word_frequency": 10334 + }, + { + "word": "kangaroo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large Australian marsupial", + "example_sentence_english": "Kangaroos are native to Australia.", + "pos": "noun", + "word_frequency": 10335 + }, + { + "word": "knowing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with knowledge or awareness", + "example_sentence_english": "He went into the situation knowing the risks.", + "pos": "adverb", + "word_frequency": 10338 + }, + { + "word": "legged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having legs (often used in compounds)", + "example_sentence_english": "The table was three-legged and unstable.", + "pos": "adjective", + "word_frequency": 10340 + }, + { + "word": "liberalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a political philosophy", + "example_sentence_english": "Liberalism emphasizes individual rights and freedoms.", + "pos": "noun", + "word_frequency": 10342 + }, + { + "word": "litre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of volume", + "example_sentence_english": "Please buy a litre of milk.", + "pos": "noun", + "word_frequency": 10345 + }, + { + "word": "locomotive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a railway engine", + "example_sentence_english": "The old steam locomotive pulled the carriages.", + "pos": "noun", + "word_frequency": 10346 + }, + { + "word": "longing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong desire or yearning", + "example_sentence_english": "She felt a deep longing for her homeland.", + "pos": "noun", + "word_frequency": 10347 + }, + { + "word": "mantra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a word or phrase repeated often", + "example_sentence_english": "Her daily mantra was \"I can do this.\"", + "pos": "noun", + "word_frequency": 10350 + }, + { + "word": "mating", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of animals breeding", + "example_sentence_english": "The mating season for deer is in autumn.", + "pos": "noun", + "word_frequency": 10352 + }, + { + "word": "mesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flat-topped hill or mountain", + "example_sentence_english": "The landscape was dominated by a large mesa.", + "pos": "noun", + "word_frequency": 10354 + }, + { + "word": "microscope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an optical instrument for viewing small objects", + "example_sentence_english": "We used a microscope to examine the cells.", + "pos": "noun", + "word_frequency": 10355 + }, + { + "word": "milky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resembling milk in color or consistency", + "example_sentence_english": "The tea had a milky color after adding cream.", + "pos": "adjective", + "word_frequency": 10356 + }, + { + "word": "mixer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device for mixing; a social gathering", + "example_sentence_english": "She used an electric mixer to beat the eggs.", + "pos": "noun", + "word_frequency": 10357 + }, + { + "word": "monumental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great in importance, extent, or size", + "example_sentence_english": "Building the pyramids was a monumental task.", + "pos": "adjective", + "word_frequency": 10359 + }, + { + "word": "moth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moth", + "example_sentence_english": "A moth flew into the light.", + "pos": "noun", + "word_frequency": 10360 + }, + { + "word": "multiply", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiply", + "example_sentence_english": "You need to multiply these numbers.", + "pos": "verb", + "word_frequency": 10361 + }, + { + "word": "narcotic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcotic", + "example_sentence_english": "The doctor prescribed a strong narcotic for the pain.", + "pos": "noun", + "word_frequency": 10363 + }, + { + "word": "nugget", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nugget", + "example_sentence_english": "She found a gold nugget in the stream.", + "pos": "noun", + "word_frequency": 10365 + }, + { + "word": "nuisance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuisance", + "example_sentence_english": "The loud music was a real nuisance.", + "pos": "noun", + "word_frequency": 10366 + }, + { + "word": "obedience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obedience", + "example_sentence_english": "The dog showed great obedience to its owner.", + "pos": "noun", + "word_frequency": 10367 + }, + { + "word": "obligate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obligate", + "example_sentence_english": "The contract will obligate them to pay.", + "pos": "verb", + "word_frequency": 10368 + }, + { + "word": "outing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outing", + "example_sentence_english": "We had a lovely family outing to the park.", + "pos": "noun", + "word_frequency": 10369 + }, + { + "word": "overdue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overdue", + "example_sentence_english": "The library book is overdue.", + "pos": "adjective", + "word_frequency": 10370 + }, + { + "word": "overload", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overload", + "example_sentence_english": "The system experienced an information overload.", + "pos": "noun", + "word_frequency": 10371 + }, + { + "word": "payable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "payable", + "example_sentence_english": "The invoice is payable within 30 days.", + "pos": "adjective", + "word_frequency": 10372 + }, + { + "word": "paycheck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paycheck", + "example_sentence_english": "She received her first paycheck today.", + "pos": "noun", + "word_frequency": 10373 + }, + { + "word": "picturesque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "picturesque", + "example_sentence_english": "The village was very picturesque.", + "pos": "adjective", + "word_frequency": 10374 + }, + { + "word": "pilgrimage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pilgrimage", + "example_sentence_english": "Many people make a pilgrimage to the holy site.", + "pos": "noun", + "word_frequency": 10375 + }, + { + "word": "pivot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pivot", + "example_sentence_english": "The door swung on its pivot.", + "pos": "noun", + "word_frequency": 10376 + }, + { + "word": "pivotal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pivotal", + "example_sentence_english": "This decision was pivotal for the company's future.", + "pos": "adjective", + "word_frequency": 10377 + }, + { + "word": "preventive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventive", + "example_sentence_english": "Preventive measures were taken to avoid the spread of the disease.", + "pos": "adjective", + "word_frequency": 10379 + }, + { + "word": "primer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primer", + "example_sentence_english": "Apply a coat of primer before painting.", + "pos": "noun", + "word_frequency": 10380 + }, + { + "word": "profitability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profitability", + "example_sentence_english": "The company's profitability improved this quarter.", + "pos": "noun", + "word_frequency": 10381 + }, + { + "word": "pulmonary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pulmonary", + "example_sentence_english": "She has a pulmonary condition.", + "pos": "adjective", + "word_frequency": 10383 + }, + { + "word": "rad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radical, excellent", + "example_sentence_english": "That concert was totally rad!", + "pos": "adjective", + "word_frequency": 10384 + }, + { + "word": "raspberry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raspberry", + "example_sentence_english": "I picked some fresh raspberries from the garden.", + "pos": "noun", + "word_frequency": 10385 + }, + { + "word": "reconcile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconcile", + "example_sentence_english": "They tried to reconcile their differences.", + "pos": "verb", + "word_frequency": 10386 + }, + { + "word": "regression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regression", + "example_sentence_english": "The data showed a clear regression over time.", + "pos": "noun", + "word_frequency": 10387 + }, + { + "word": "resilient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resilient", + "example_sentence_english": "She is very resilient in the face of adversity.", + "pos": "adjective", + "word_frequency": 10388 + }, + { + "word": "roam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roam", + "example_sentence_english": "The wild horses roam freely across the plains.", + "pos": "verb", + "word_frequency": 10389 + }, + { + "word": "router", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "router", + "example_sentence_english": "My internet router needs to be reset.", + "pos": "noun", + "word_frequency": 10390 + }, + { + "word": "sabbath", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sabbath", + "example_sentence_english": "They observe the Sabbath every week.", + "pos": "noun", + "word_frequency": 10393 + }, + { + "word": "scouting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scouting", + "example_sentence_english": "The team is doing some scouting for new talent.", + "pos": "noun", + "word_frequency": 10396 + }, + { + "word": "shorten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shorten", + "example_sentence_english": "Can you shorten these trousers for me?", + "pos": "verb", + "word_frequency": 10397 + }, + { + "word": "shovel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shovel", + "example_sentence_english": "He used a shovel to dig the hole.", + "pos": "noun", + "word_frequency": 10398 + }, + { + "word": "stagger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "walk unsteadily", + "example_sentence_english": "He began to stagger after drinking too much.", + "pos": "verb", + "word_frequency": 10401 + }, + { + "word": "surname", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "family name", + "example_sentence_english": "What is your surname?", + "pos": "noun", + "word_frequency": 10402 + }, + { + "word": "synonymous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the same meaning", + "example_sentence_english": "For many people, 'freedom' is synonymous with 'liberty'.", + "pos": "adjective", + "word_frequency": 10403 + }, + { + "word": "tedious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boring and too long", + "example_sentence_english": "The work was tedious and repetitive.", + "pos": "adjective", + "word_frequency": 10405 + }, + { + "word": "toxin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisonous substance", + "example_sentence_english": "The snake venom contained a powerful toxin.", + "pos": "noun", + "word_frequency": 10406 + }, + { + "word": "tug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong pull", + "example_sentence_english": "She felt a gentle tug on her sleeve.", + "pos": "noun", + "word_frequency": 10407 + }, + { + "word": "utilization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of using something", + "example_sentence_english": "The efficient utilization of resources is key to success.", + "pos": "noun", + "word_frequency": 10408 + }, + { + "word": "wink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quick closing and opening of one eye", + "example_sentence_english": "He gave her a quick wink to show he was joking.", + "pos": "noun", + "word_frequency": 10411 + }, + { + "word": "arbor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shady garden alcove", + "example_sentence_english": "They sat in the cool arbor on a hot day.", + "pos": "noun", + "word_frequency": 10420 + }, + { + "word": "astronomical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely large; relating to astronomy", + "example_sentence_english": "The cost of the project was astronomical.", + "pos": "adjective", + "word_frequency": 10421 + }, + { + "word": "attire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clothes, especially formal ones", + "example_sentence_english": "Formal attire is required for the event.", + "pos": "noun", + "word_frequency": 10422 + }, + { + "word": "autograph", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a signature, especially of a celebrity", + "example_sentence_english": "She waited for an hour to get his autograph.", + "pos": "noun", + "word_frequency": 10423 + }, + { + "word": "axle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rod connecting two wheels", + "example_sentence_english": "The car's axle broke, leaving it stranded.", + "pos": "noun", + "word_frequency": 10425 + }, + { + "word": "barley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of grain", + "example_sentence_english": "Barley is often used in brewing and animal feed.", + "pos": "noun", + "word_frequency": 10426 + }, + { + "word": "botanical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to plants or botany", + "example_sentence_english": "The botanical garden has a wide variety of plants.", + "pos": "adjective", + "word_frequency": 10429 + }, + { + "word": "brag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to boast", + "example_sentence_english": "He likes to brag about his achievements.", + "pos": "verb", + "word_frequency": 10430 + }, + { + "word": "breakout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden emergence or escape", + "example_sentence_english": "The band had a breakout hit with their new song.", + "pos": "noun", + "word_frequency": 10431 + }, + { + "word": "catchy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easy to remember and appealing", + "example_sentence_english": "That song has a really catchy tune.", + "pos": "adjective", + "word_frequency": 10432 + }, + { + "word": "ceremonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a ceremony", + "example_sentence_english": "The queen wore her ceremonial robes.", + "pos": "adjective", + "word_frequency": 10434 + }, + { + "word": "cheque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a written order to a bank to pay money", + "example_sentence_english": "I paid for it by cheque.", + "pos": "noun", + "word_frequency": 10436 + }, + { + "word": "choreography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sequence of steps and movements in a dance", + "example_sentence_english": "The choreography for the ballet was stunning.", + "pos": "noun", + "word_frequency": 10438 + }, + { + "word": "cling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hold on tightly", + "example_sentence_english": "The child would cling to his mother's hand.", + "pos": "verb", + "word_frequency": 10440 + }, + { + "word": "coincide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happen at the same time", + "example_sentence_english": "Their holidays happened to coincide.", + "pos": "verb", + "word_frequency": 10442 + }, + { + "word": "commemorate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remember and honor", + "example_sentence_english": "A monument was built to commemorate the fallen soldiers.", + "pos": "verb", + "word_frequency": 10443 + }, + { + "word": "concurrent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "happening at the same time", + "example_sentence_english": "The two events were concurrent.", + "pos": "adjective", + "word_frequency": 10444 + }, + { + "word": "crocodile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "large reptile", + "example_sentence_english": "A crocodile can be very dangerous.", + "pos": "noun", + "word_frequency": 10446 + }, + { + "word": "derrick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of crane", + "example_sentence_english": "The oil rig had a tall derrick.", + "pos": "noun", + "word_frequency": 10447 + }, + { + "word": "diaper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby's absorbent garment", + "example_sentence_english": "The baby needs a clean diaper.", + "pos": "noun", + "word_frequency": 10448 + }, + { + "word": "differentiation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "act of distinguishing", + "example_sentence_english": "There is a clear differentiation between the two species.", + "pos": "noun", + "word_frequency": 10449 + }, + { + "word": "disadvantaged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a worse position", + "example_sentence_english": "The program helps disadvantaged children.", + "pos": "adjective", + "word_frequency": 10450 + }, + { + "word": "divert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change direction", + "example_sentence_english": "The police had to divert traffic.", + "pos": "verb", + "word_frequency": 10451 + }, + { + "word": "dubious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doubtful", + "example_sentence_english": "He made a dubious claim.", + "pos": "adjective", + "word_frequency": 10452 + }, + { + "word": "eagerly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with great interest", + "example_sentence_english": "She eagerly awaited the results.", + "pos": "adverb", + "word_frequency": 10455 + }, + { + "word": "ecclesiastical", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the church", + "example_sentence_english": "He studied ecclesiastical history.", + "pos": "adjective", + "word_frequency": 10456 + }, + { + "word": "elk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large deer", + "example_sentence_english": "We saw an elk in the forest.", + "pos": "noun", + "word_frequency": 10458 + }, + { + "word": "enlighten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inform or instruct", + "example_sentence_english": "Please enlighten me on this topic.", + "pos": "verb", + "word_frequency": 10459 + }, + { + "word": "exhaustion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extreme tiredness", + "example_sentence_english": "He felt complete exhaustion after the marathon.", + "pos": "noun", + "word_frequency": 10461 + }, + { + "word": "expectancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state of expecting", + "example_sentence_english": "Life expectancy has increased over the years.", + "pos": "noun", + "word_frequency": 10462 + }, + { + "word": "famously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a well-known way", + "example_sentence_english": "He is famously known for his inventions.", + "pos": "adverb", + "word_frequency": 10463 + }, + { + "word": "fingerprint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unique mark from a finger", + "example_sentence_english": "The police found fingerprints at the scene.", + "pos": "noun", + "word_frequency": 10464 + }, + { + "word": "flap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flat, hanging part", + "example_sentence_english": "The envelope had a sticky flap.", + "pos": "noun", + "word_frequency": 10465 + }, + { + "word": "folklore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditional stories", + "example_sentence_english": "The region is rich in local folklore.", + "pos": "noun", + "word_frequency": 10466 + }, + { + "word": "galactic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a galaxy", + "example_sentence_english": "We observed a distant galactic cluster.", + "pos": "adjective", + "word_frequency": 10467 + }, + { + "word": "gardener", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "person who tends a garden", + "example_sentence_english": "The gardener planted new flowers.", + "pos": "noun", + "word_frequency": 10468 + }, + { + "word": "glee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great delight", + "example_sentence_english": "He jumped with glee when he heard the news.", + "pos": "noun", + "word_frequency": 10470 + }, + { + "word": "grassroots", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordinary people", + "example_sentence_english": "The movement started at the grassroots level.", + "pos": "noun", + "word_frequency": 10471 + }, + { + "word": "gravitational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to gravity", + "example_sentence_english": "The moon's gravitational pull affects the tides.", + "pos": "adjective", + "word_frequency": 10472 + }, + { + "word": "graze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eat grass; scrape skin", + "example_sentence_english": "The cows graze in the field.", + "pos": "verb", + "word_frequency": 10473 + }, + { + "word": "gunshot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sound of a gun firing", + "example_sentence_english": "We heard a gunshot in the distance.", + "pos": "noun", + "word_frequency": 10475 + }, + { + "word": "hereditary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "passed down genetically", + "example_sentence_english": "The disease is hereditary.", + "pos": "adjective", + "word_frequency": 10476 + }, + { + "word": "hiatus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a pause or break", + "example_sentence_english": "The band announced a hiatus.", + "pos": "noun", + "word_frequency": 10477 + }, + { + "word": "homestead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a house and land", + "example_sentence_english": "The family built their homestead near the river.", + "pos": "noun", + "word_frequency": 10478 + }, + { + "word": "horribly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a terrible way", + "example_sentence_english": "He sang horribly.", + "pos": "adverb", + "word_frequency": 10479 + }, + { + "word": "horsepower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A unit of power.", + "example_sentence_english": "The car engine produced 300 horsepower.", + "pos": "noun", + "word_frequency": 10480 + }, + { + "word": "hue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A color or shade.", + "example_sentence_english": "The painting featured a beautiful hue of blue.", + "pos": "noun", + "word_frequency": 10481 + }, + { + "word": "icing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A sweet glaze for cakes.", + "example_sentence_english": "She put pink icing on the birthday cake.", + "pos": "noun", + "word_frequency": 10482 + }, + { + "word": "intellect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The ability to think and understand.", + "example_sentence_english": "Her sharp intellect impressed everyone.", + "pos": "noun", + "word_frequency": 10484 + }, + { + "word": "interchange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A road junction where traffic can move between different roads without crossing.", + "example_sentence_english": "We took the exit at the next interchange.", + "pos": "noun", + "word_frequency": 10485 + }, + { + "word": "jihad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A struggle or striving, especially a religious one.", + "example_sentence_english": "The concept of jihad is complex and often misunderstood.", + "pos": "noun", + "word_frequency": 10487 + }, + { + "word": "knob", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A rounded handle or control.", + "example_sentence_english": "Turn the knob to open the door.", + "pos": "noun", + "word_frequency": 10489 + }, + { + "word": "lapse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A temporary failure of concentration, memory, or judgment.", + "example_sentence_english": "He had a momentary lapse of concentration during the exam.", + "pos": "noun", + "word_frequency": 10492 + }, + { + "word": "launder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To wash and iron clothes; to conceal the origin of illegally obtained money.", + "example_sentence_english": "She needs to launder her clothes this weekend.", + "pos": "verb", + "word_frequency": 10493 + }, + { + "word": "ledger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A book or computer file in which a company's accounts are recorded.", + "example_sentence_english": "All transactions are recorded in the company's ledger.", + "pos": "noun", + "word_frequency": 10494 + }, + { + "word": "loaf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A quantity of bread baked in one piece.", + "example_sentence_english": "She bought a fresh loaf of bread.", + "pos": "noun", + "word_frequency": 10496 + }, + { + "word": "login", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "The act of entering a system or website.", + "example_sentence_english": "Please enter your login details.", + "pos": "noun", + "word_frequency": 10497 + }, + { + "word": "loot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Stolen money or goods.", + "example_sentence_english": "The thieves escaped with their loot.", + "pos": "noun", + "word_frequency": 10498 + }, + { + "word": "magnesium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A chemical element, a light silvery-white metal.", + "example_sentence_english": "Magnesium is an important mineral for the human body.", + "pos": "noun", + "word_frequency": 10500 + }, + { + "word": "malware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Software designed to disrupt, damage, or gain unauthorized access to a computer system.", + "example_sentence_english": "Always use antivirus software to protect against malware.", + "pos": "noun", + "word_frequency": 10501 + }, + { + "word": "mimic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To imitate, especially in order to entertain or ridicule.", + "example_sentence_english": "The comedian could mimic various accents perfectly.", + "pos": "verb", + "word_frequency": 10503 + }, + { + "word": "mindful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Conscious or aware of something.", + "example_sentence_english": "It's important to be mindful of your surroundings.", + "pos": "adjective", + "word_frequency": 10504 + }, + { + "word": "mural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A painting or other art form executed directly on a wall.", + "example_sentence_english": "The artist painted a beautiful mural on the side of the building.", + "pos": "noun", + "word_frequency": 10505 + }, + { + "word": "myriad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A countless or extremely great number.", + "example_sentence_english": "There are a myriad of reasons to visit this city.", + "pos": "noun", + "word_frequency": 10509 + }, + { + "word": "nasal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to the nose.", + "example_sentence_english": "He spoke with a distinct nasal voice.", + "pos": "adjective", + "word_frequency": 10510 + }, + { + "word": "nautical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to sailors, ships, or navigation.", + "example_sentence_english": "The museum displayed many nautical instruments.", + "pos": "adjective", + "word_frequency": 10511 + }, + { + "word": "neatly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a tidy or orderly way.", + "example_sentence_english": "She folded her clothes neatly.", + "pos": "adverb", + "word_frequency": 10512 + }, + { + "word": "negativity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The expression of criticism or pessimism.", + "example_sentence_english": "Try to avoid negativity and focus on the positive.", + "pos": "noun", + "word_frequency": 10513 + }, + { + "word": "noteworthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Worthy of attention or notice; remarkable.", + "example_sentence_english": "Her achievements are truly noteworthy.", + "pos": "adjective", + "word_frequency": 10515 + }, + { + "word": "odor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A distinctive smell, especially an unpleasant one.", + "example_sentence_english": "There was a strange odor coming from the kitchen.", + "pos": "noun", + "word_frequency": 10516 + }, + { + "word": "overturn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To tip over; to reverse a decision.", + "example_sentence_english": "The boat might overturn in the strong waves.", + "pos": "verb", + "word_frequency": 10518 + }, + { + "word": "paddle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short oar", + "example_sentence_english": "We used a paddle to move the canoe.", + "pos": "noun", + "word_frequency": 10520 + }, + { + "word": "parrot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tropical bird", + "example_sentence_english": "The parrot can imitate human speech.", + "pos": "noun", + "word_frequency": 10521 + }, + { + "word": "peg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small pin or knob", + "example_sentence_english": "Hang your coat on the peg by the door.", + "pos": "noun", + "word_frequency": 10523 + }, + { + "word": "pesticide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical to kill pests", + "example_sentence_english": "Farmers use pesticide to protect their crops.", + "pos": "noun", + "word_frequency": 10524 + }, + { + "word": "plunge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, forceful dive or fall", + "example_sentence_english": "He took a refreshing plunge into the cold lake.", + "pos": "noun", + "word_frequency": 10525 + }, + { + "word": "powerless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without power or ability", + "example_sentence_english": "She felt powerless to change the situation.", + "pos": "adjective", + "word_frequency": 10526 + }, + { + "word": "pragmatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "practical and realistic", + "example_sentence_english": "His pragmatic approach helped solve the problem quickly.", + "pos": "adjective", + "word_frequency": 10527 + }, + { + "word": "quasi", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "seemingly; apparently but not really", + "example_sentence_english": "The organization operates as a quasi-governmental body.", + "pos": "adjective", + "word_frequency": 10528 + }, + { + "word": "radiant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shining brightly; glowing", + "example_sentence_english": "Her smile was radiant as she accepted the award.", + "pos": "adjective", + "word_frequency": 10530 + }, + { + "word": "refinery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a factory that refines raw materials", + "example_sentence_english": "The oil refinery processes crude oil into gasoline.", + "pos": "noun", + "word_frequency": 10533 + }, + { + "word": "remorse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deep regret or guilt", + "example_sentence_english": "He felt deep remorse for his actions.", + "pos": "noun", + "word_frequency": 10535 + }, + { + "word": "reopen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "open again", + "example_sentence_english": "The store will reopen next Monday after renovations.", + "pos": "verb", + "word_frequency": 10536 + }, + { + "word": "revoke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officially cancel or withdraw", + "example_sentence_english": "The company decided to revoke his license.", + "pos": "verb", + "word_frequency": 10537 + }, + { + "word": "sanity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being mentally sound", + "example_sentence_english": "He questioned his own sanity after the long ordeal.", + "pos": "noun", + "word_frequency": 10539 + }, + { + "word": "scandinavian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Scandinavia", + "example_sentence_english": "She enjoys Scandinavian design and furniture.", + "pos": "adjective", + "word_frequency": 10540 + }, + { + "word": "sharia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamic religious law", + "example_sentence_english": "Sharia law governs many aspects of life in some Muslim countries.", + "pos": "noun", + "word_frequency": 10545 + }, + { + "word": "showdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a final confrontation", + "example_sentence_english": "The two rivals prepared for a final showdown.", + "pos": "noun", + "word_frequency": 10546 + }, + { + "word": "shuffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, dragging walk; a mix", + "example_sentence_english": "He walked with a slow shuffle.", + "pos": "noun", + "word_frequency": 10547 + }, + { + "word": "siding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material covering the exterior of a house", + "example_sentence_english": "The house needed new siding after the storm.", + "pos": "noun", + "word_frequency": 10548 + }, + { + "word": "simulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imitate the appearance or character of", + "example_sentence_english": "Pilots train in a simulator to simulate real flight conditions.", + "pos": "verb", + "word_frequency": 10549 + }, + { + "word": "skyline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the outline of buildings against the sky", + "example_sentence_english": "The city skyline was beautiful at sunset.", + "pos": "noun", + "word_frequency": 10550 + }, + { + "word": "slab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, flat piece of stone or wood", + "example_sentence_english": "They laid a concrete slab for the new patio.", + "pos": "noun", + "word_frequency": 10551 + }, + { + "word": "stocking", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long, close-fitting garment covering the foot and leg", + "example_sentence_english": "She hung her Christmas stocking by the fireplace.", + "pos": "noun", + "word_frequency": 10552 + }, + { + "word": "supplemental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "additional; extra", + "example_sentence_english": "The student received supplemental instruction in math.", + "pos": "adjective", + "word_frequency": 10554 + }, + { + "word": "swimmer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who swims", + "example_sentence_english": "She is a strong swimmer and competes regularly.", + "pos": "noun", + "word_frequency": 10555 + }, + { + "word": "tao", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the absolute principle underlying the universe in Taoism", + "example_sentence_english": "The concept of Tao is central to Taoist philosophy.", + "pos": "noun", + "word_frequency": 10557 + }, + { + "word": "techno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of electronic dance music", + "example_sentence_english": "He loves listening to techno music at clubs.", + "pos": "noun", + "word_frequency": 10558 + }, + { + "word": "teller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who receives and pays out money in a bank", + "example_sentence_english": "The bank teller helped me deposit my check.", + "pos": "noun", + "word_frequency": 10559 + }, + { + "word": "trance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of altered consciousness", + "example_sentence_english": "She fell into a deep trance during the meditation.", + "pos": "noun", + "word_frequency": 10561 + }, + { + "word": "unconditional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without conditions or limitations", + "example_sentence_english": "She offered him her unconditional support.", + "pos": "adjective", + "word_frequency": 10563 + }, + { + "word": "unforgettable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impossible to forget", + "example_sentence_english": "It was an unforgettable experience.", + "pos": "adjective", + "word_frequency": 10564 + }, + { + "word": "volatility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tendency to change rapidly and unpredictably", + "example_sentence_english": "The stock market is known for its volatility.", + "pos": "noun", + "word_frequency": 10565 + }, + { + "word": "webcam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a video camera connected to a computer", + "example_sentence_english": "I use my webcam for video calls.", + "pos": "noun", + "word_frequency": 10566 + }, + { + "word": "yorker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of delivery in cricket", + "example_sentence_english": "The bowler delivered a perfect yorker.", + "pos": "noun", + "word_frequency": 10571 + }, + { + "word": "admirable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserving respect and approval", + "example_sentence_english": "Her dedication to the cause is truly admirable.", + "pos": "adjective", + "word_frequency": 10576 + }, + { + "word": "adventurous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willing to take risks or try new things", + "example_sentence_english": "He has an adventurous spirit.", + "pos": "adjective", + "word_frequency": 10577 + }, + { + "word": "ammo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammunition", + "example_sentence_english": "The soldier ran out of ammo.", + "pos": "noun", + "word_frequency": 10580 + }, + { + "word": "analyse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "examine in detail", + "example_sentence_english": "We need to analyse the data carefully.", + "pos": "verb", + "word_frequency": 10582 + }, + { + "word": "anthology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collection of literary works", + "example_sentence_english": "The anthology includes poems from various authors.", + "pos": "noun", + "word_frequency": 10585 + }, + { + "word": "anyhow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in any case; anyway", + "example_sentence_english": "It started to rain, but we went out anyhow.", + "pos": "adverb", + "word_frequency": 10586 + }, + { + "word": "ape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large primate without a tail", + "example_sentence_english": "Chimpanzees are a type of ape.", + "pos": "noun", + "word_frequency": 10587 + }, + { + "word": "auditor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who conducts an audit", + "example_sentence_english": "The company hired an independent auditor.", + "pos": "noun", + "word_frequency": 10588 + }, + { + "word": "avalanche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mass of snow, ice, and rocks falling rapidly down a mountainside", + "example_sentence_english": "The skiers were caught in an avalanche.", + "pos": "noun", + "word_frequency": 10589 + }, + { + "word": "badger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a nocturnal mammal", + "example_sentence_english": "A badger dug a sett in the field.", + "pos": "noun", + "word_frequency": 10592 + }, + { + "word": "ballistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to projectiles or their flight", + "example_sentence_english": "The military tested a new ballistic missile.", + "pos": "adjective", + "word_frequency": 10593 + }, + { + "word": "banter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playful and friendly exchange of teasing remarks", + "example_sentence_english": "There was a lot of friendly banter among the teammates.", + "pos": "noun", + "word_frequency": 10594 + }, + { + "word": "bidder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes a bid", + "example_sentence_english": "The highest bidder won the auction.", + "pos": "noun", + "word_frequency": 10596 + }, + { + "word": "blockbuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a film, book, or product that is a great commercial success", + "example_sentence_english": "The new superhero movie is a real blockbuster.", + "pos": "noun", + "word_frequency": 10598 + }, + { + "word": "blueprint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a detailed plan or design", + "example_sentence_english": "They developed a blueprint for the new building.", + "pos": "noun", + "word_frequency": 10599 + }, + { + "word": "bowler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who bowls; a type of hat", + "example_sentence_english": "The bowler aimed carefully at the pins.", + "pos": "noun", + "word_frequency": 10600 + }, + { + "word": "cameo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small role played by a famous actor; a piece of jewelry", + "example_sentence_english": "The director made a brief cameo in his own film.", + "pos": "noun", + "word_frequency": 10603 + }, + { + "word": "caramel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of candy or flavoring", + "example_sentence_english": "She loves the taste of caramel in her coffee.", + "pos": "noun", + "word_frequency": 10604 + }, + { + "word": "charismatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a charming and inspiring personality", + "example_sentence_english": "The charismatic leader inspired his followers.", + "pos": "adjective", + "word_frequency": 10606 + }, + { + "word": "chromosome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a threadlike structure of nucleic acids and protein found in the nucleus of most living cells, carrying genetic information in the form of genes", + "example_sentence_english": "Each human cell contains 23 pairs of chromosomes.", + "pos": "noun", + "word_frequency": 10607 + }, + { + "word": "commencement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a beginning or start; a graduation ceremony", + "example_sentence_english": "The university held its annual commencement ceremony.", + "pos": "noun", + "word_frequency": 10611 + }, + { + "word": "confiscate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take or seize (someone's property) with authority", + "example_sentence_english": "The police had to confiscate the illegal goods.", + "pos": "verb", + "word_frequency": 10612 + }, + { + "word": "contradictory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutually opposed or inconsistent", + "example_sentence_english": "His statements were contradictory, making it hard to believe him.", + "pos": "adjective", + "word_frequency": 10613 + }, + { + "word": "convent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a community of nuns; the building in which they live", + "example_sentence_english": "She decided to join a convent after finishing her studies.", + "pos": "noun", + "word_frequency": 10614 + }, + { + "word": "converse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to engage in conversation", + "example_sentence_english": "They spent hours conversing about their travels.", + "pos": "verb", + "word_frequency": 10615 + }, + { + "word": "corrosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of corroding metal, stone, or other materials", + "example_sentence_english": "Rust is a common form of corrosion on metal.", + "pos": "noun", + "word_frequency": 10616 + }, + { + "word": "crib", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a baby's bed with high sides; a small house or apartment; a cheat sheet", + "example_sentence_english": "The baby slept soundly in her crib.", + "pos": "noun", + "word_frequency": 10617 + }, + { + "word": "crossroads", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an intersection of two or more roads; a crucial point in a situation", + "example_sentence_english": "We found ourselves at a crossroads, unsure which path to take.", + "pos": "noun", + "word_frequency": 10618 + }, + { + "word": "dearly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with deep affection; at great cost", + "example_sentence_english": "She loved her grandmother dearly.", + "pos": "adverb", + "word_frequency": 10619 + }, + { + "word": "defiance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open resistance; bold disobedience", + "example_sentence_english": "His act of defiance against the rules was noted.", + "pos": "noun", + "word_frequency": 10620 + }, + { + "word": "deter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discourage (someone) from doing something by instilling doubt or fear", + "example_sentence_english": "The high fences were meant to deter intruders.", + "pos": "verb", + "word_frequency": 10621 + }, + { + "word": "diner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is eating a meal; a small, informal restaurant", + "example_sentence_english": "We stopped at a classic American diner for breakfast.", + "pos": "noun", + "word_frequency": 10622 + }, + { + "word": "disposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's inherent qualities of mind and character; the way in which something is placed or arranged", + "example_sentence_english": "She has a very cheerful disposition.", + "pos": "noun", + "word_frequency": 10624 + }, + { + "word": "ecstasy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an overwhelming feeling of great happiness or joyful excitement", + "example_sentence_english": "She was in a state of ecstasy after winning the lottery.", + "pos": "noun", + "word_frequency": 10625 + }, + { + "word": "eighteenth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "18th in order", + "example_sentence_english": "His birthday is on the eighteenth of July.", + "pos": "numeral", + "word_frequency": 10626 + }, + { + "word": "eleventh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "11th in order", + "example_sentence_english": "She finished the race in eleventh place.", + "pos": "numeral", + "word_frequency": 10627 + }, + { + "word": "envoy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a messenger or representative, especially one on a diplomatic mission", + "example_sentence_english": "The special envoy was sent to negotiate a peace treaty.", + "pos": "noun", + "word_frequency": 10630 + }, + { + "word": "expiration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the end of the period for which something is valid; the act of breathing out", + "example_sentence_english": "Check the expiration date on the milk carton.", + "pos": "noun", + "word_frequency": 10632 + }, + { + "word": "expressly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "for a particular purpose; explicitly", + "example_sentence_english": "The rules were expressly designed to prevent cheating.", + "pos": "adverb", + "word_frequency": 10633 + }, + { + "word": "fabrication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of manufacturing or inventing something; a lie", + "example_sentence_english": "His story turned out to be a complete fabrication.", + "pos": "noun", + "word_frequency": 10634 + }, + { + "word": "fascination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the power to fascinate; the state of being fascinated", + "example_sentence_english": "She had a lifelong fascination with ancient Egypt.", + "pos": "noun", + "word_frequency": 10636 + }, + { + "word": "fir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an evergreen coniferous tree", + "example_sentence_english": "We decorated a fir tree for Christmas.", + "pos": "noun", + "word_frequency": 10637 + }, + { + "word": "formulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of creating or preparing something; a mixture or preparation", + "example_sentence_english": "The new drug formulation showed promising results.", + "pos": "noun", + "word_frequency": 10638 + }, + { + "word": "franc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a former monetary unit of France, Belgium, Luxembourg, and other countries", + "example_sentence_english": "Before the euro, the franc was the currency of France.", + "pos": "noun", + "word_frequency": 10639 + }, + { + "word": "frontal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the front", + "example_sentence_english": "The car sustained frontal damage in the accident.", + "pos": "adjective", + "word_frequency": 10640 + }, + { + "word": "goalie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goalkeeper", + "example_sentence_english": "The goalie made an incredible save.", + "pos": "noun", + "word_frequency": 10641 + }, + { + "word": "gradient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slope or a rate of change", + "example_sentence_english": "The road had a steep gradient.", + "pos": "noun", + "word_frequency": 10643 + }, + { + "word": "gravy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sauce made from meat juices", + "example_sentence_english": "Please pass the gravy for the mashed potatoes.", + "pos": "noun", + "word_frequency": 10644 + }, + { + "word": "herring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of fish", + "example_sentence_english": "Smoked herring is a popular dish in Scandinavia.", + "pos": "noun", + "word_frequency": 10647 + }, + { + "word": "hopper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that hops; a container", + "example_sentence_english": "The grain was loaded into the hopper.", + "pos": "noun", + "word_frequency": 10648 + }, + { + "word": "hysterical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrollably emotional", + "example_sentence_english": "The audience became hysterical with laughter.", + "pos": "adjective", + "word_frequency": 10649 + }, + { + "word": "incompatible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to exist or be used together", + "example_sentence_english": "Their personalities were completely incompatible.", + "pos": "adjective", + "word_frequency": 10650 + }, + { + "word": "injunction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a judicial order", + "example_sentence_english": "The court issued an injunction against the company.", + "pos": "noun", + "word_frequency": 10651 + }, + { + "word": "innate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inborn; natural", + "example_sentence_english": "She has an innate ability to understand complex problems.", + "pos": "adjective", + "word_frequency": 10652 + }, + { + "word": "keynote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the central theme or a main speech", + "example_sentence_english": "The CEO delivered the keynote address at the conference.", + "pos": "noun", + "word_frequency": 10657 + }, + { + "word": "lama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Tibetan Buddhist spiritual teacher or a South American camelid", + "example_sentence_english": "The Dalai Lama is a spiritual leader.", + "pos": "noun", + "word_frequency": 10660 + }, + { + "word": "learner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who is learning", + "example_sentence_english": "She is a fast learner.", + "pos": "noun", + "word_frequency": 10661 + }, + { + "word": "motivational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspiring enthusiasm or desire to do something", + "example_sentence_english": "His speech was very motivational.", + "pos": "adjective", + "word_frequency": 10664 + }, + { + "word": "nightly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "every night", + "example_sentence_english": "She reads a book nightly before bed.", + "pos": "adverb", + "word_frequency": 10667 + }, + { + "word": "noir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a genre of crime film or fiction", + "example_sentence_english": "He enjoys watching classic film noir movies.", + "pos": "noun", + "word_frequency": 10668 + }, + { + "word": "notwithstanding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in spite of; nevertheless", + "example_sentence_english": "Notwithstanding the bad weather, the event was a success.", + "pos": "adverb", + "word_frequency": 10670 + }, + { + "word": "ordain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone a priest or minister; to order by decree", + "example_sentence_english": "He was ordained as a priest last year.", + "pos": "verb", + "word_frequency": 10673 + }, + { + "word": "paralysis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the loss of the ability to move", + "example_sentence_english": "The accident caused temporary paralysis in his legs.", + "pos": "noun", + "word_frequency": 10675 + }, + { + "word": "patiently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that shows tolerance and understanding", + "example_sentence_english": "She waited patiently for her turn.", + "pos": "adverb", + "word_frequency": 10676 + }, + { + "word": "paw", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an animal's foot", + "example_sentence_english": "The dog lifted its paw to shake hands.", + "pos": "noun", + "word_frequency": 10678 + }, + { + "word": "pianist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays the piano", + "example_sentence_english": "She dreams of becoming a professional pianist.", + "pos": "noun", + "word_frequency": 10679 + }, + { + "word": "pickle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small cucumber preserved in vinegar", + "example_sentence_english": "I like to eat a pickle with my sandwich.", + "pos": "noun", + "word_frequency": 10680 + }, + { + "word": "pilgrim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who journeys to a sacred place for religious reasons", + "example_sentence_english": "The pilgrims traveled a long distance to reach the holy site.", + "pos": "noun", + "word_frequency": 10681 + }, + { + "word": "placebo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance with no therapeutic effect, used as a control in testing drugs", + "example_sentence_english": "The patient was given a placebo, not the actual medication.", + "pos": "noun", + "word_frequency": 10683 + }, + { + "word": "progressively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gradually; in stages", + "example_sentence_english": "The weather became progressively colder throughout the day.", + "pos": "adverb", + "word_frequency": 10684 + }, + { + "word": "propel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drive, push, or cause to move in a particular direction", + "example_sentence_english": "The engine propels the boat through the water.", + "pos": "verb", + "word_frequency": 10685 + }, + { + "word": "punt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a kick in football where the ball is dropped and kicked before it hits the ground; a flat-bottomed boat", + "example_sentence_english": "The team decided to punt the ball on fourth down.", + "pos": "noun", + "word_frequency": 10688 + }, + { + "word": "raptor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bird of prey; a type of dinosaur", + "example_sentence_english": "The eagle is a powerful raptor.", + "pos": "noun", + "word_frequency": 10690 + }, + { + "word": "reinforcement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of reinforcing or strengthening", + "example_sentence_english": "The bridge needed reinforcement to withstand the strong winds.", + "pos": "noun", + "word_frequency": 10691 + }, + { + "word": "repetition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of repeating something that has already been said or written", + "example_sentence_english": "Repetition helps in memorizing new vocabulary.", + "pos": "noun", + "word_frequency": 10692 + }, + { + "word": "restrain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevent (someone or something) from doing something; keep under control or check", + "example_sentence_english": "He had to restrain himself from laughing.", + "pos": "verb", + "word_frequency": 10693 + }, + { + "word": "retrospective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "looking back on or dealing with past events or situations", + "example_sentence_english": "The artist held a retrospective exhibition of her work.", + "pos": "adjective", + "word_frequency": 10694 + }, + { + "word": "righteousness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being morally right or justifiable", + "example_sentence_english": "He always acted with a strong sense of righteousness.", + "pos": "noun", + "word_frequency": 10695 + }, + { + "word": "rinse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of washing something lightly", + "example_sentence_english": "Give the vegetables a good rinse before cooking.", + "pos": "noun", + "word_frequency": 10696 + }, + { + "word": "scalp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the skin covering the head, excluding the face", + "example_sentence_english": "She massaged her scalp with shampoo.", + "pos": "noun", + "word_frequency": 10701 + }, + { + "word": "shutter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a movable cover for a window or door; the part of a camera that opens and closes to expose the film or sensor", + "example_sentence_english": "She closed the shutters to block out the light.", + "pos": "noun", + "word_frequency": 10705 + }, + { + "word": "sparrow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, common bird", + "example_sentence_english": "A little sparrow landed on the window sill.", + "pos": "noun", + "word_frequency": 10707 + }, + { + "word": "speculate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "form a theory or conjecture about a subject without firm evidence", + "example_sentence_english": "We can only speculate about what happened.", + "pos": "verb", + "word_frequency": 10708 + }, + { + "word": "spinach", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a leafy green vegetable", + "example_sentence_english": "Popeye loves to eat spinach for strength.", + "pos": "noun", + "word_frequency": 10709 + }, + { + "word": "squat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crouch or sit with one's knees bent and one's heels close to or touching one's buttocks or the back of one's thighs", + "example_sentence_english": "He had to squat down to pick up the dropped coin.", + "pos": "verb", + "word_frequency": 10710 + }, + { + "word": "stew", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dish of meat and vegetables cooked slowly in liquid in a closed dish or pan", + "example_sentence_english": "My grandmother makes a delicious beef stew.", + "pos": "noun", + "word_frequency": 10711 + }, + { + "word": "sublime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of such excellence, grandeur, or beauty as to inspire great admiration or awe", + "example_sentence_english": "The view from the mountain top was truly sublime.", + "pos": "adjective", + "word_frequency": 10714 + }, + { + "word": "subtitle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a secondary title of a book, film, or other work; captions displayed at the bottom of a movie screen", + "example_sentence_english": "I always watch foreign films with subtitles.", + "pos": "noun", + "word_frequency": 10715 + }, + { + "word": "sweetness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality or state of being sweet", + "example_sentence_english": "The sweetness of the fruit was delightful.", + "pos": "noun", + "word_frequency": 10717 + }, + { + "word": "teamwork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the combined action of a group, especially when effective and efficient", + "example_sentence_english": "Teamwork is essential for the success of the project.", + "pos": "noun", + "word_frequency": 10718 + }, + { + "word": "tequila", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an alcoholic spirit made from the blue agave plant", + "example_sentence_english": "They ordered margaritas made with tequila.", + "pos": "noun", + "word_frequency": 10719 + }, + { + "word": "terrestrial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Earth or land", + "example_sentence_english": "Terrestrial animals live on land, not in water.", + "pos": "adjective", + "word_frequency": 10720 + }, + { + "word": "thinker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who thinks deeply", + "example_sentence_english": "She is a deep thinker, always questioning things.", + "pos": "noun", + "word_frequency": 10721 + }, + { + "word": "thorn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sharp point on a plant", + "example_sentence_english": "Be careful, that rose has a sharp thorn.", + "pos": "noun", + "word_frequency": 10722 + }, + { + "word": "ufo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unidentified flying object", + "example_sentence_english": "Many people claim to have seen a UFO in the night sky.", + "pos": "noun", + "word_frequency": 10724 + }, + { + "word": "unnatural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not natural or normal", + "example_sentence_english": "The silence in the forest felt unnatural.", + "pos": "adjective", + "word_frequency": 10725 + }, + { + "word": "unstoppable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to stop or prevent", + "example_sentence_english": "The team was unstoppable, winning every game.", + "pos": "adjective", + "word_frequency": 10726 + }, + { + "word": "upfront", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paid or given in advance; honest", + "example_sentence_english": "You have to pay the rent upfront.", + "pos": "adverb", + "word_frequency": 10727 + }, + { + "word": "virginity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being a virgin", + "example_sentence_english": "The concept of virginity varies across cultures.", + "pos": "noun", + "word_frequency": 10728 + }, + { + "word": "voucher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small printed piece of paper that entitles the holder to a discount or to exchange it for goods or services", + "example_sentence_english": "I used a discount voucher to buy the book.", + "pos": "noun", + "word_frequency": 10730 + }, + { + "word": "waive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refrain from insisting on or using (a right or claim)", + "example_sentence_english": "They decided to waive the late fee for us.", + "pos": "verb", + "word_frequency": 10731 + }, + { + "word": "wharf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a level quayside area to which a ship may be moored to load and unload", + "example_sentence_english": "The fishing boats were tied up at the old wharf.", + "pos": "noun", + "word_frequency": 10732 + }, + { + "word": "aggravate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (a problem, injury, or offense) worse or more serious", + "example_sentence_english": "Don't scratch that mosquito bite, you'll only aggravate it.", + "pos": "verb", + "word_frequency": 10740 + }, + { + "word": "alto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the lowest female singing voice or highest male singing voice", + "example_sentence_english": "She sings alto in the choir.", + "pos": "noun", + "word_frequency": 10743 + }, + { + "word": "anomaly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "something that deviates from what is standard, normal, or expected", + "example_sentence_english": "The discovery of a planet without a star was a scientific anomaly.", + "pos": "noun", + "word_frequency": 10745 + }, + { + "word": "aperture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an opening, hole, or gap", + "example_sentence_english": "Adjust the camera's aperture to control the light.", + "pos": "noun", + "word_frequency": 10746 + }, + { + "word": "apostle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "each of the twelve chief disciples of Jesus Christ", + "example_sentence_english": "Peter was one of the twelve apostles.", + "pos": "noun", + "word_frequency": 10747 + }, + { + "word": "apprenticeship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of training a new generation of practitioners of a trade or profession", + "example_sentence_english": "He started an apprenticeship to become an electrician.", + "pos": "noun", + "word_frequency": 10748 + }, + { + "word": "biodiversity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the variety of life in the world or in a particular habitat", + "example_sentence_english": "Protecting biodiversity is crucial for the health of our planet.", + "pos": "noun", + "word_frequency": 10749 + }, + { + "word": "biomedical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to both biology and medicine", + "example_sentence_english": "She works in biomedical research.", + "pos": "adjective", + "word_frequency": 10750 + }, + { + "word": "breadth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the distance or measurement from side to side; wide range", + "example_sentence_english": "The breadth of his knowledge is impressive.", + "pos": "noun", + "word_frequency": 10751 + }, + { + "word": "buster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that breaks or destroys something; an informal term of address", + "example_sentence_english": "Hey, buster, get off my lawn!", + "pos": "noun", + "word_frequency": 10752 + }, + { + "word": "cascade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small waterfall, typically one of several that fall in stages down a steep rocky slope", + "example_sentence_english": "We hiked to see the beautiful cascade of water.", + "pos": "noun", + "word_frequency": 10753 + }, + { + "word": "centralize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concentrate (control or power) in a central organization", + "example_sentence_english": "The company decided to centralize its operations in one office.", + "pos": "verb", + "word_frequency": 10754 + }, + { + "word": "char", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a blackish residue from burning; a type of fish", + "example_sentence_english": "The fire left a layer of char on the wood.", + "pos": "noun", + "word_frequency": 10755 + }, + { + "word": "concord", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agreement or harmony between people or groups", + "example_sentence_english": "The two nations lived in a state of concord for many years.", + "pos": "noun", + "word_frequency": 10756 + }, + { + "word": "connector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for connecting things electrically or mechanically", + "example_sentence_english": "I need a new USB connector for my phone.", + "pos": "noun", + "word_frequency": 10757 + }, + { + "word": "containment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of keeping something harmful under control or within limits", + "example_sentence_english": "The containment of the oil spill was a top priority.", + "pos": "noun", + "word_frequency": 10759 + }, + { + "word": "coupling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection; joining", + "example_sentence_english": "The coupling between the two train cars was secure.", + "pos": "noun", + "word_frequency": 10760 + }, + { + "word": "crate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large wooden box", + "example_sentence_english": "They packed the fragile items in a wooden crate.", + "pos": "noun", + "word_frequency": 10761 + }, + { + "word": "denounce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publicly declare to be wrong or evil", + "example_sentence_english": "The government was quick to denounce the terrorist attack.", + "pos": "verb", + "word_frequency": 10763 + }, + { + "word": "dilute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (a liquid) thinner or weaker by adding water or another solvent to it", + "example_sentence_english": "You should dilute the juice with water before drinking it.", + "pos": "verb", + "word_frequency": 10765 + }, + { + "word": "doping", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the use of illegal performance-enhancing drugs", + "example_sentence_english": "The athlete was banned from the competition due to doping.", + "pos": "noun", + "word_frequency": 10766 + }, + { + "word": "eddy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a circular movement of water, counter to the main current, causing a small whirlpool", + "example_sentence_english": "Leaves swirled in a small eddy in the river.", + "pos": "noun", + "word_frequency": 10767 + }, + { + "word": "elusive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "difficult to find, catch, or achieve", + "example_sentence_english": "The truth remained elusive despite their best efforts.", + "pos": "adjective", + "word_frequency": 10768 + }, + { + "word": "espionage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of spying or using spies", + "example_sentence_english": "The novel is a thrilling tale of international espionage.", + "pos": "noun", + "word_frequency": 10769 + }, + { + "word": "existential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to existence", + "example_sentence_english": "He was grappling with an existential crisis about the meaning of life.", + "pos": "adjective", + "word_frequency": 10770 + }, + { + "word": "experimentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of performing scientific experiments", + "example_sentence_english": "Scientific progress often relies on careful experimentation.", + "pos": "noun", + "word_frequency": 10771 + }, + { + "word": "extremist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who holds extreme political or religious views", + "example_sentence_english": "The group was condemned as a collection of dangerous extremists.", + "pos": "noun", + "word_frequency": 10772 + }, + { + "word": "fanny", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buttocks (American English)", + "example_sentence_english": "He fell and landed on his fanny.", + "pos": "noun", + "word_frequency": 10773 + }, + { + "word": "fiancé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man to whom one is engaged to be married", + "example_sentence_english": "She introduced her fiancé to her parents.", + "pos": "noun", + "word_frequency": 10774 + }, + { + "word": "flashback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden and disturbing vivid memory of an event in the past", + "example_sentence_english": "The movie used a flashback to explain the character's past.", + "pos": "noun", + "word_frequency": 10775 + }, + { + "word": "fluctuation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an irregular rising and falling in number or amount; a variation", + "example_sentence_english": "We observed a significant fluctuation in temperature throughout the day.", + "pos": "noun", + "word_frequency": 10776 + }, + { + "word": "funnel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cone-shaped utensil with a tube at the apex, used for pouring liquid or powder into a small opening", + "example_sentence_english": "She used a funnel to pour the oil into the bottle.", + "pos": "noun", + "word_frequency": 10779 + }, + { + "word": "gloss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shiny surface or appearance", + "example_sentence_english": "The car had a high-gloss finish.", + "pos": "noun", + "word_frequency": 10781 + }, + { + "word": "graft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "practices, especially bribery, used to secure illicit gains in politics or business", + "example_sentence_english": "The politician was accused of corruption and graft.", + "pos": "noun", + "word_frequency": 10782 + }, + { + "word": "grumpy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bad-tempered and irritable", + "example_sentence_english": "He's always grumpy before his first cup of coffee.", + "pos": "adjective", + "word_frequency": 10783 + }, + { + "word": "guise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an external form, appearance, or manner of presentation, typically concealing the true nature of something", + "example_sentence_english": "The spy entered the building in the guise of a delivery man.", + "pos": "noun", + "word_frequency": 10784 + }, + { + "word": "heighten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make or become more intense or severe", + "example_sentence_english": "The tension in the room began to heighten as the deadline approached.", + "pos": "verb", + "word_frequency": 10785 + }, + { + "word": "hush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a silence or quiet", + "example_sentence_english": "A sudden hush fell over the crowd.", + "pos": "noun", + "word_frequency": 10786 + }, + { + "word": "imitation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing intended to simulate or copy something else", + "example_sentence_english": "The cheap handbag was a poor imitation of the designer original.", + "pos": "noun", + "word_frequency": 10788 + }, + { + "word": "immersion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of immersing someone or something in a liquid; deep mental involvement", + "example_sentence_english": "Language learning through full immersion is very effective.", + "pos": "noun", + "word_frequency": 10789 + }, + { + "word": "inconvenient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing trouble, difficulties, or discomfort", + "example_sentence_english": "It was inconvenient to travel during rush hour.", + "pos": "adjective", + "word_frequency": 10790 + }, + { + "word": "intrinsic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belonging naturally; essential", + "example_sentence_english": "The intrinsic value of the artwork was immense.", + "pos": "adjective", + "word_frequency": 10791 + }, + { + "word": "irresistible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too attractive and tempting to be resisted", + "example_sentence_english": "The offer was so good it was irresistible.", + "pos": "adjective", + "word_frequency": 10792 + }, + { + "word": "landslide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mass of earth or rock sliding rapidly down a mountain or cliff; an overwhelming victory", + "example_sentence_english": "The election was a landslide victory for the incumbent party.", + "pos": "noun", + "word_frequency": 10798 + }, + { + "word": "lcd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Liquid Crystal Display", + "example_sentence_english": "My new monitor uses an LCD screen.", + "pos": "noun", + "word_frequency": 10799 + }, + { + "word": "leash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strap or cord for leading an animal", + "example_sentence_english": "He put the dog on a leash before going for a walk.", + "pos": "noun", + "word_frequency": 10801 + }, + { + "word": "makeover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a complete transformation or renovation", + "example_sentence_english": "The old house got a complete makeover.", + "pos": "noun", + "word_frequency": 10802 + }, + { + "word": "memorandum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a written message in business or diplomacy", + "example_sentence_english": "The manager sent a memorandum to all staff regarding the new policy.", + "pos": "noun", + "word_frequency": 10807 + }, + { + "word": "mermaid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mythical creature with the head and torso of a woman and the tail of a fish", + "example_sentence_english": "Children often dream of seeing a real mermaid.", + "pos": "noun", + "word_frequency": 10809 + }, + { + "word": "moderation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the avoidance of excess or extremes", + "example_sentence_english": "Everything in moderation, including moderation.", + "pos": "noun", + "word_frequency": 10811 + }, + { + "word": "moroccan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Morocco or its people", + "example_sentence_english": "She enjoyed the Moroccan tea.", + "pos": "adjective", + "word_frequency": 10812 + }, + { + "word": "ngo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Non-Governmental Organization", + "example_sentence_english": "Many NGOs are working to provide aid in disaster zones.", + "pos": "noun", + "word_frequency": 10815 + }, + { + "word": "nobility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being noble in character; the class of nobles", + "example_sentence_english": "He showed great nobility in his actions.", + "pos": "noun", + "word_frequency": 10816 + }, + { + "word": "notation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of symbols or abbreviations used to represent quantities or qualities", + "example_sentence_english": "Musical notation helps musicians read and play songs.", + "pos": "noun", + "word_frequency": 10817 + }, + { + "word": "onstage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on or onto the stage", + "example_sentence_english": "The actor walked onstage to thunderous applause.", + "pos": "adverb", + "word_frequency": 10818 + }, + { + "word": "ordeal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very unpleasant and prolonged experience", + "example_sentence_english": "The long journey was a terrible ordeal.", + "pos": "noun", + "word_frequency": 10819 + }, + { + "word": "ox", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a castrated bull, used as a draft animal", + "example_sentence_english": "The farmer used an ox to pull the plow.", + "pos": "noun", + "word_frequency": 10820 + }, + { + "word": "paranormal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denoting events or phenomena that are beyond the scope of normal scientific understanding", + "example_sentence_english": "She is interested in paranormal activities like ghosts and UFOs.", + "pos": "adjective", + "word_frequency": 10821 + }, + { + "word": "pear", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a sweet, juicy fruit, typically with a rounded base and tapering top", + "example_sentence_english": "I like to eat a fresh pear for a snack.", + "pos": "noun", + "word_frequency": 10823 + }, + { + "word": "piston", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sliding piece inside the cylinder of an engine, which is moved by pressure", + "example_sentence_english": "The engine's piston moves up and down rapidly.", + "pos": "noun", + "word_frequency": 10824 + }, + { + "word": "pollen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fine powdery substance, typically yellow, consisting of microscopic grains discharged from the male part of a flower", + "example_sentence_english": "My allergies act up when there's a lot of pollen in the air.", + "pos": "noun", + "word_frequency": 10825 + }, + { + "word": "puberty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the period during which adolescents reach sexual maturity and become capable of reproduction", + "example_sentence_english": "Puberty brings many changes to the body.", + "pos": "noun", + "word_frequency": 10827 + }, + { + "word": "reggae", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a style of music that originated in Jamaica in the late 1960s", + "example_sentence_english": "Bob Marley is a famous reggae musician.", + "pos": "noun", + "word_frequency": 10830 + }, + { + "word": "relegate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assign to a lower position; to banish", + "example_sentence_english": "The team was relegated to a lower division after losing the match.", + "pos": "verb", + "word_frequency": 10831 + }, + { + "word": "rethink", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconsider (something), especially in a fundamental way", + "example_sentence_english": "We need to rethink our strategy for the project.", + "pos": "verb", + "word_frequency": 10832 + }, + { + "word": "reviewer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who examines or assesses something, especially a critic of books, films, or plays", + "example_sentence_english": "The movie reviewer gave the film a positive rating.", + "pos": "noun", + "word_frequency": 10833 + }, + { + "word": "rewrite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to write (something) again so as to alter or improve it", + "example_sentence_english": "She had to rewrite her essay to improve the arguments.", + "pos": "verb", + "word_frequency": 10834 + }, + { + "word": "rodeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public exhibition of cowboy skills, such as bronco riding and calf roping", + "example_sentence_english": "We went to a rodeo last summer and saw bull riding.", + "pos": "noun", + "word_frequency": 10835 + }, + { + "word": "shire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a county in Great Britain; a rural area", + "example_sentence_english": "The Shire is a peaceful region in Middle-earth.", + "pos": "noun", + "word_frequency": 10839 + }, + { + "word": "slit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow cut or opening", + "example_sentence_english": "There was a small slit in the curtain.", + "pos": "noun", + "word_frequency": 10840 + }, + { + "word": "sob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cry noisily", + "example_sentence_english": "She began to sob uncontrollably.", + "pos": "verb", + "word_frequency": 10841 + }, + { + "word": "taboo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a social prohibition", + "example_sentence_english": "In some cultures, it's a taboo to discuss money.", + "pos": "noun", + "word_frequency": 10843 + }, + { + "word": "teaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short promotional clip", + "example_sentence_english": "The movie studio released a new teaser trailer.", + "pos": "noun", + "word_frequency": 10844 + }, + { + "word": "throttle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device controlling engine power", + "example_sentence_english": "He pushed the throttle forward to increase speed.", + "pos": "noun", + "word_frequency": 10846 + }, + { + "word": "trendy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fashionable", + "example_sentence_english": "That new cafe is very trendy.", + "pos": "adjective", + "word_frequency": 10847 + }, + { + "word": "trivia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unimportant facts or details", + "example_sentence_english": "He knows a lot of useless trivia.", + "pos": "noun", + "word_frequency": 10848 + }, + { + "word": "turbulent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by conflict or disorder", + "example_sentence_english": "The flight experienced some turbulent weather.", + "pos": "adjective", + "word_frequency": 10849 + }, + { + "word": "unbearable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to endure", + "example_sentence_english": "The heat was almost unbearable.", + "pos": "adjective", + "word_frequency": 10850 + }, + { + "word": "underage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not old enough", + "example_sentence_english": "It's illegal to sell alcohol to underage people.", + "pos": "adjective", + "word_frequency": 10851 + }, + { + "word": "unleash", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to release from a leash or restraint", + "example_sentence_english": "The dog was unleashed in the park.", + "pos": "verb", + "word_frequency": 10852 + }, + { + "word": "unmarried", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not married", + "example_sentence_english": "She remained unmarried her whole life.", + "pos": "adjective", + "word_frequency": 10853 + }, + { + "word": "veggie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a vegetable (informal)", + "example_sentence_english": "Make sure you eat your veggies.", + "pos": "noun", + "word_frequency": 10854 + }, + { + "word": "vortex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mass of whirling fluid or air", + "example_sentence_english": "The water swirled down the drain in a vortex.", + "pos": "noun", + "word_frequency": 10855 + }, + { + "word": "wand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin stick", + "example_sentence_english": "The magician waved his magic wand.", + "pos": "noun", + "word_frequency": 10856 + }, + { + "word": "wanderer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who travels aimlessly", + "example_sentence_english": "He was a wanderer, never staying in one place for long.", + "pos": "noun", + "word_frequency": 10857 + }, + { + "word": "advert", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an advertisement", + "example_sentence_english": "I saw an advert for a new car.", + "pos": "noun", + "word_frequency": 10860 + }, + { + "word": "alias", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an assumed name", + "example_sentence_english": "The spy used an alias to hide his true identity.", + "pos": "noun", + "word_frequency": 10862 + }, + { + "word": "appalling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing shock or dismay", + "example_sentence_english": "The living conditions were absolutely appalling.", + "pos": "adjective", + "word_frequency": 10864 + }, + { + "word": "applaud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show approval by clapping", + "example_sentence_english": "The audience began to applaud loudly.", + "pos": "verb", + "word_frequency": 10865 + }, + { + "word": "baptize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perform a baptism", + "example_sentence_english": "The priest will baptize the baby next Sunday.", + "pos": "verb", + "word_frequency": 10866 + }, + { + "word": "bondage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being bound or enslaved", + "example_sentence_english": "The country was freed from colonial bondage.", + "pos": "noun", + "word_frequency": 10870 + }, + { + "word": "boredom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being bored", + "example_sentence_english": "She suffered from extreme boredom during the long lecture.", + "pos": "noun", + "word_frequency": 10871 + }, + { + "word": "breeder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who breeds animals", + "example_sentence_english": "She is a dog breeder.", + "pos": "noun", + "word_frequency": 10873 + }, + { + "word": "brunch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a late morning meal", + "example_sentence_english": "We're going out for brunch on Sunday.", + "pos": "noun", + "word_frequency": 10874 + }, + { + "word": "burgundy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dark reddish-purple color", + "example_sentence_english": "She wore a dress in a rich burgundy color.", + "pos": "noun", + "word_frequency": 10876 + }, + { + "word": "changer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that changes something", + "example_sentence_english": "He was a game changer in the industry.", + "pos": "noun", + "word_frequency": 10879 + }, + { + "word": "chem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemistry (informal)", + "example_sentence_english": "I have a big chem test tomorrow.", + "pos": "noun", + "word_frequency": 10881 + }, + { + "word": "chestnut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a glossy brown nut; a reddish-brown color", + "example_sentence_english": "We roasted chestnuts over an open fire.", + "pos": "noun", + "word_frequency": 10882 + }, + { + "word": "cleanup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of making something clean and tidy", + "example_sentence_english": "The cleanup after the party took hours.", + "pos": "noun", + "word_frequency": 10884 + }, + { + "word": "concise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "giving a lot of information clearly and in a few words", + "example_sentence_english": "Please write a concise summary of the report.", + "pos": "adjective", + "word_frequency": 10886 + }, + { + "word": "confinement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being restricted within an area or space", + "example_sentence_english": "The prisoner was held in solitary confinement.", + "pos": "noun", + "word_frequency": 10887 + }, + { + "word": "consultancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a company that gives expert advice on a particular subject", + "example_sentence_english": "She works for a management consultancy firm.", + "pos": "noun", + "word_frequency": 10888 + }, + { + "word": "contraction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of becoming smaller; a shortened form of a word", + "example_sentence_english": "The word 'don't' is a contraction of 'do not'.", + "pos": "noun", + "word_frequency": 10889 + }, + { + "word": "convergence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process or state of converging", + "example_sentence_english": "We are seeing a convergence of technologies.", + "pos": "noun", + "word_frequency": 10890 + }, + { + "word": "deduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of reaching a conclusion by reasoning; an amount subtracted", + "example_sentence_english": "His deduction was based on careful observation.", + "pos": "noun", + "word_frequency": 10892 + }, + { + "word": "despicable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving hatred and contempt", + "example_sentence_english": "His actions were truly despicable.", + "pos": "adjective", + "word_frequency": 10893 + }, + { + "word": "detachment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being objective or aloof; a small military unit", + "example_sentence_english": "He observed the situation with a sense of detachment.", + "pos": "noun", + "word_frequency": 10894 + }, + { + "word": "dialog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a conversation between two or more people", + "example_sentence_english": "The play had very witty dialog.", + "pos": "noun", + "word_frequency": 10895 + }, + { + "word": "digestive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the process of digesting food", + "example_sentence_english": "The digestive system breaks down food.", + "pos": "adjective", + "word_frequency": 10896 + }, + { + "word": "disclaimer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statement that denies something, especially responsibility", + "example_sentence_english": "The website included a legal disclaimer.", + "pos": "noun", + "word_frequency": 10897 + }, + { + "word": "discriminatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making or showing an unfair or prejudicial distinction", + "example_sentence_english": "The company was accused of discriminatory practices.", + "pos": "adjective", + "word_frequency": 10898 + }, + { + "word": "disruptive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing or tending to cause disruption", + "example_sentence_english": "His disruptive behavior led to his expulsion.", + "pos": "adjective", + "word_frequency": 10899 + }, + { + "word": "epilepsy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a neurological disorder causing seizures", + "example_sentence_english": "Epilepsy can be managed with medication.", + "pos": "noun", + "word_frequency": 10901 + }, + { + "word": "estimation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a judgment or opinion; an approximate calculation", + "example_sentence_english": "The project's cost estimation was accurate.", + "pos": "noun", + "word_frequency": 10902 + }, + { + "word": "ethanol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a colorless volatile flammable liquid, used as a solvent and in alcoholic beverages", + "example_sentence_english": "Ethanol is a type of alcohol.", + "pos": "noun", + "word_frequency": 10903 + }, + { + "word": "excavation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of digging something out of the ground", + "example_sentence_english": "The archaeological excavation revealed ancient artifacts.", + "pos": "noun", + "word_frequency": 10904 + }, + { + "word": "feeder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that supplies food; a tributary", + "example_sentence_english": "We put out a bird feeder in the garden.", + "pos": "noun", + "word_frequency": 10905 + }, + { + "word": "flashlight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a portable battery-operated electric lamp", + "example_sentence_english": "I used a flashlight to find my way in the dark.", + "pos": "noun", + "word_frequency": 10906 + }, + { + "word": "flatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to praise excessively or insincerely", + "example_sentence_english": "He tried to flatter his boss to get a raise.", + "pos": "verb", + "word_frequency": 10907 + }, + { + "word": "forcible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "done by force", + "example_sentence_english": "The police made a forcible entry into the building.", + "pos": "adverb", + "word_frequency": 10908 + }, + { + "word": "garland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wreath of flowers or leaves", + "example_sentence_english": "She wore a garland of fresh flowers in her hair.", + "pos": "noun", + "word_frequency": 10910 + }, + { + "word": "globalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of international integration", + "example_sentence_english": "Globalization has both positive and negative impacts.", + "pos": "noun", + "word_frequency": 10911 + }, + { + "word": "grail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that is eagerly pursued or sought after", + "example_sentence_english": "Finding a cure for cancer is the holy grail of medical research.", + "pos": "noun", + "word_frequency": 10912 + }, + { + "word": "graphical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or denoting graphs or diagrams", + "example_sentence_english": "The software has a user-friendly graphical interface.", + "pos": "adjective", + "word_frequency": 10913 + }, + { + "word": "groundbreaking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "innovative; pioneering", + "example_sentence_english": "Her research was truly groundbreaking.", + "pos": "adjective", + "word_frequency": 10915 + }, + { + "word": "holiness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being holy", + "example_sentence_english": "The priest spoke about the concept of holiness.", + "pos": "noun", + "word_frequency": 10917 + }, + { + "word": "horrify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fill with horror; to shock", + "example_sentence_english": "The news of the accident horrified everyone.", + "pos": "verb", + "word_frequency": 10918 + }, + { + "word": "humiliate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone feel ashamed or foolish", + "example_sentence_english": "He tried to humiliate her in front of her friends.", + "pos": "verb", + "word_frequency": 10919 + }, + { + "word": "illustrator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who draws or creates pictures for books, magazines, etc.", + "example_sentence_english": "The book's illustrator did a wonderful job with the pictures.", + "pos": "noun", + "word_frequency": 10921 + }, + { + "word": "imbalance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lack of balance or symmetry; disproportion", + "example_sentence_english": "There is a significant imbalance between supply and demand.", + "pos": "noun", + "word_frequency": 10922 + }, + { + "word": "immoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not conforming to accepted standards of morality", + "example_sentence_english": "His actions were considered deeply immoral by the community.", + "pos": "adjective", + "word_frequency": 10923 + }, + { + "word": "implicate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to show someone to be involved in a crime or wrongdoing", + "example_sentence_english": "The evidence seemed to implicate him in the robbery.", + "pos": "verb", + "word_frequency": 10924 + }, + { + "word": "inefficient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not achieving maximum productivity; wasting time or resources", + "example_sentence_english": "The old system was very inefficient and wasted a lot of time.", + "pos": "adjective", + "word_frequency": 10925 + }, + { + "word": "instrumentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the set of instruments used in a process or for a particular purpose", + "example_sentence_english": "The new lab requires advanced instrumentation for accurate measurements.", + "pos": "noun", + "word_frequency": 10926 + }, + { + "word": "intensify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become or make more intense", + "example_sentence_english": "The storm began to intensify as it moved closer to the coast.", + "pos": "verb", + "word_frequency": 10927 + }, + { + "word": "intolerance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unwillingness to accept views, beliefs, or behavior that differ from one's own", + "example_sentence_english": "Religious intolerance can lead to conflict and discrimination.", + "pos": "noun", + "word_frequency": 10928 + }, + { + "word": "juror", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a jury", + "example_sentence_english": "Each juror had to listen carefully to the evidence presented.", + "pos": "noun", + "word_frequency": 10930 + }, + { + "word": "ketchup", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a savory sauce made from tomatoes, vinegar, sugar, and spices", + "example_sentence_english": "Would you like some ketchup with your fries?", + "pos": "noun", + "word_frequency": 10933 + }, + { + "word": "leukemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a malignant progressive disease in which the bone marrow and other blood-forming organs produce increased numbers of immature or abnormal leukocytes", + "example_sentence_english": "She was diagnosed with leukemia and began treatment immediately.", + "pos": "noun", + "word_frequency": 10934 + }, + { + "word": "lineage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "descent from an ancestor; ancestry or pedigree", + "example_sentence_english": "He traced his lineage back to the 17th century.", + "pos": "noun", + "word_frequency": 10936 + }, + { + "word": "liter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a metric unit of volume equal to 1,000 cubic centimeters", + "example_sentence_english": "The bottle contains one liter of water.", + "pos": "noun", + "word_frequency": 10937 + }, + { + "word": "manpower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the number of people available for work or service", + "example_sentence_english": "The project requires more manpower to be completed on time.", + "pos": "noun", + "word_frequency": 10940 + }, + { + "word": "martyr", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is killed because of their religious or other beliefs", + "example_sentence_english": "He was hailed as a martyr for his cause.", + "pos": "noun", + "word_frequency": 10942 + }, + { + "word": "masturbation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual self-stimulation", + "example_sentence_english": "Masturbation is a common human sexual activity.", + "pos": "noun", + "word_frequency": 10943 + }, + { + "word": "mitigation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of reducing the severity, seriousness, or painfulness of something", + "example_sentence_english": "The government is implementing measures for climate change mitigation.", + "pos": "noun", + "word_frequency": 10944 + }, + { + "word": "motorway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a major road for fast-moving traffic, especially in the UK", + "example_sentence_english": "We drove along the motorway to reach the city faster.", + "pos": "noun", + "word_frequency": 10946 + }, + { + "word": "obscene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offensive or disgusting by accepted standards of morality and decency", + "example_sentence_english": "The movie was criticized for its obscene language.", + "pos": "adjective", + "word_frequency": 10950 + }, + { + "word": "occupant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who resides or is present in a house, vehicle, seat, place, etc., at a given time", + "example_sentence_english": "The previous occupant of this apartment left some furniture behind.", + "pos": "noun", + "word_frequency": 10951 + }, + { + "word": "octopus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a marine mollusk with eight arms", + "example_sentence_english": "An octopus can change its color to blend in with its surroundings.", + "pos": "noun", + "word_frequency": 10952 + }, + { + "word": "onward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a continuing forward direction", + "example_sentence_english": "They marched onward despite the difficult terrain.", + "pos": "adverb", + "word_frequency": 10953 + }, + { + "word": "opium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a reddish-brown heavy-scented addictive drug prepared from the dried latex of the opium poppy", + "example_sentence_english": "Opium has been used for centuries as a painkiller and recreational drug.", + "pos": "noun", + "word_frequency": 10954 + }, + { + "word": "ovarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or affecting an ovary or ovaries", + "example_sentence_english": "She underwent surgery for an ovarian cyst.", + "pos": "adjective", + "word_frequency": 10955 + }, + { + "word": "peck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strike or bite with the beak or bill", + "example_sentence_english": "The bird began to peck at the seeds on the ground.", + "pos": "verb", + "word_frequency": 10956 + }, + { + "word": "penal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to, or prescribing punishment, as for crimes or offenses", + "example_sentence_english": "The country has very strict penal laws against drug trafficking.", + "pos": "adjective", + "word_frequency": 10957 + }, + { + "word": "petal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "each of the segments of the corolla of a flower, which are typically colored", + "example_sentence_english": "The rose had soft, velvety petals.", + "pos": "noun", + "word_frequency": 10958 + }, + { + "word": "plank", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, flat piece of wood", + "example_sentence_english": "We walked the plank to cross the stream.", + "pos": "noun", + "word_frequency": 10960 + }, + { + "word": "plight", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dangerous, difficult, or otherwise unfortunate situation", + "example_sentence_english": "The refugees were in a desperate plight.", + "pos": "noun", + "word_frequency": 10961 + }, + { + "word": "postseason", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the period of time after the regular season in a sport", + "example_sentence_english": "The team hopes to make it to the postseason this year.", + "pos": "noun", + "word_frequency": 10962 + }, + { + "word": "preside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be in the position of authority in a meeting or gathering", + "example_sentence_english": "The judge will preside over the trial.", + "pos": "verb", + "word_frequency": 10963 + }, + { + "word": "privy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sharing in the knowledge of (something secret or private)", + "example_sentence_english": "Only a few people were privy to the secret information.", + "pos": "adjective", + "word_frequency": 10964 + }, + { + "word": "propulsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of driving or pushing forward", + "example_sentence_english": "The boat uses jet propulsion to move quickly.", + "pos": "noun", + "word_frequency": 10965 + }, + { + "word": "raft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flat buoyant structure of timber or other materials for conveying people or things by water", + "example_sentence_english": "They built a raft to cross the river.", + "pos": "noun", + "word_frequency": 10966 + }, + { + "word": "rejoice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel or show great joy or delight", + "example_sentence_english": "We all rejoiced at the good news.", + "pos": "verb", + "word_frequency": 10967 + }, + { + "word": "relic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an object surviving from an earlier time, especially one of historical or sentimental interest", + "example_sentence_english": "The old sword was a relic from ancient times.", + "pos": "noun", + "word_frequency": 10968 + }, + { + "word": "sandal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a light shoe consisting of a sole held to the foot by straps", + "example_sentence_english": "She wore sandals to the beach.", + "pos": "noun", + "word_frequency": 10972 + }, + { + "word": "serpent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large snake", + "example_sentence_english": "The ancient story tells of a giant serpent.", + "pos": "noun", + "word_frequency": 10973 + }, + { + "word": "sesame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plant grown for its seeds, which are used in cooking", + "example_sentence_english": "The bread was topped with sesame seeds.", + "pos": "noun", + "word_frequency": 10974 + }, + { + "word": "siren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that makes a loud, wailing sound as a signal or warning; a mythical creature", + "example_sentence_english": "We heard the siren of an ambulance.", + "pos": "noun", + "word_frequency": 10978 + }, + { + "word": "sleeper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is sleeping; something that achieves unexpected success", + "example_sentence_english": "The movie was a sleeper hit.", + "pos": "noun", + "word_frequency": 10980 + }, + { + "word": "smear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dirty mark or smudge; a false accusation", + "example_sentence_english": "There was a smear of mud on his cheek.", + "pos": "noun", + "word_frequency": 10981 + }, + { + "word": "snowy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered with snow; resembling snow", + "example_sentence_english": "It was a beautiful snowy day.", + "pos": "adjective", + "word_frequency": 10982 + }, + { + "word": "spectral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or resembling a ghost; of or relating to a spectrum", + "example_sentence_english": "They saw a spectral figure in the old house.", + "pos": "adjective", + "word_frequency": 10984 + }, + { + "word": "stabilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become unlikely to give way or overturn", + "example_sentence_english": "The doctors tried to stabilize the patient's condition.", + "pos": "verb", + "word_frequency": 10985 + }, + { + "word": "standing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "status or reputation; a position in a competition", + "example_sentence_english": "He has a high standing in the community.", + "pos": "noun", + "word_frequency": 10986 + }, + { + "word": "statesman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a skilled, experienced, and respected political leader", + "example_sentence_english": "He was regarded as a great statesman.", + "pos": "noun", + "word_frequency": 10987 + }, + { + "word": "stink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong, unpleasant smell", + "example_sentence_english": "There was a terrible stink coming from the garbage.", + "pos": "noun", + "word_frequency": 10988 + }, + { + "word": "stormy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "characterized by strong winds and heavy rain or snow", + "example_sentence_english": "We stayed indoors on the stormy day.", + "pos": "adjective", + "word_frequency": 10989 + }, + { + "word": "subcommittee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a committee formed from a larger committee", + "example_sentence_english": "The bill was sent to a special subcommittee.", + "pos": "noun", + "word_frequency": 10990 + }, + { + "word": "suffice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be enough or adequate", + "example_sentence_english": "A small snack will suffice until dinner.", + "pos": "verb", + "word_frequency": 10991 + }, + { + "word": "swat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sharp blow or slap", + "example_sentence_english": "He gave the fly a quick swat.", + "pos": "noun", + "word_frequency": 10992 + }, + { + "word": "swine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a pig; a contemptible person", + "example_sentence_english": "The farmer raised swine.", + "pos": "noun", + "word_frequency": 10993 + }, + { + "word": "symbolism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of symbols to represent ideas or qualities", + "example_sentence_english": "The symbolism in the painting was very deep.", + "pos": "noun", + "word_frequency": 10994 + }, + { + "word": "tangle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to twist together into a confused mass", + "example_sentence_english": "The fishing line got tangled in the weeds.", + "pos": "verb", + "word_frequency": 10995 + }, + { + "word": "tram", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public transport vehicle running on rails, typically powered by electricity", + "example_sentence_english": "We took the tram to the city center.", + "pos": "noun", + "word_frequency": 10996 + }, + { + "word": "underworld", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the criminal world; a mythical world of the dead", + "example_sentence_english": "He was involved with the city's underworld.", + "pos": "noun", + "word_frequency": 10998 + }, + { + "word": "vigorous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strong, healthy, and full of energy", + "example_sentence_english": "He took a vigorous walk every morning.", + "pos": "adjective", + "word_frequency": 10999 + }, + { + "word": "alcoholism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcohol addiction", + "example_sentence_english": "Alcoholism is a serious disease that affects many families.", + "pos": "noun", + "word_frequency": 11005 + }, + { + "word": "amplifier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "device that increases sound", + "example_sentence_english": "He connected his guitar to the amplifier to make it louder.", + "pos": "noun", + "word_frequency": 11006 + }, + { + "word": "astound", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to surprise greatly", + "example_sentence_english": "Her incredible performance continued to astound the audience.", + "pos": "verb", + "word_frequency": 11008 + }, + { + "word": "atheism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disbelief in God", + "example_sentence_english": "Atheism is the belief that there is no God or gods.", + "pos": "noun", + "word_frequency": 11009 + }, + { + "word": "audible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be heard", + "example_sentence_english": "Her whisper was barely audible across the room.", + "pos": "adjective", + "word_frequency": 11010 + }, + { + "word": "avocado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a green fruit with a large pit", + "example_sentence_english": "I like to add avocado to my salad for a creamy texture.", + "pos": "noun", + "word_frequency": 11011 + }, + { + "word": "bathtub", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large tub for bathing", + "example_sentence_english": "The children love to play with their toys in the bathtub.", + "pos": "noun", + "word_frequency": 11013 + }, + { + "word": "beep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short, high sound", + "example_sentence_english": "The microwave made a loud beep when the food was ready.", + "pos": "noun", + "word_frequency": 11014 + }, + { + "word": "beneficiary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recipient of benefits", + "example_sentence_english": "She was named the sole beneficiary of her uncle's will.", + "pos": "noun", + "word_frequency": 11015 + }, + { + "word": "bitterness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of anger or resentment", + "example_sentence_english": "He felt a deep bitterness towards his former business partner.", + "pos": "noun", + "word_frequency": 11016 + }, + { + "word": "blatant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obvious and unashamed", + "example_sentence_english": "It was a blatant lie, and everyone knew it.", + "pos": "adjective", + "word_frequency": 11017 + }, + { + "word": "boon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a helpful or beneficial thing", + "example_sentence_english": "The new software has been a real boon for our productivity.", + "pos": "noun", + "word_frequency": 11018 + }, + { + "word": "brat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a spoiled or ill-behaved child", + "example_sentence_english": "The little brat refused to share his toys with anyone.", + "pos": "noun", + "word_frequency": 11019 + }, + { + "word": "bunk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a narrow bed, often stacked", + "example_sentence_english": "The children slept in bunk beds during their camping trip.", + "pos": "noun", + "word_frequency": 11020 + }, + { + "word": "candid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truthful and straightforward", + "example_sentence_english": "She gave a candid assessment of the situation, without holding back.", + "pos": "adjective", + "word_frequency": 11021 + }, + { + "word": "caretaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who looks after a building or person", + "example_sentence_english": "The school caretaker is responsible for locking up at night.", + "pos": "noun", + "word_frequency": 11022 + }, + { + "word": "cervical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the neck or cervix", + "example_sentence_english": "She had a cervical injury from the car accident.", + "pos": "adjective", + "word_frequency": 11023 + }, + { + "word": "checklist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a list of items to be checked", + "example_sentence_english": "Before leaving, make sure you go through the packing checklist.", + "pos": "noun", + "word_frequency": 11024 + }, + { + "word": "clamp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for holding things tightly", + "example_sentence_english": "He used a clamp to hold the two pieces of wood together while the glue dried.", + "pos": "noun", + "word_frequency": 11028 + }, + { + "word": "competitiveness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the desire to be more successful than others", + "example_sentence_english": "Her competitiveness drives her to always strive for excellence.", + "pos": "noun", + "word_frequency": 11029 + }, + { + "word": "confederation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a union of states or groups", + "example_sentence_english": "The European Union is a form of economic confederation.", + "pos": "noun", + "word_frequency": 11030 + }, + { + "word": "confidentiality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being kept secret", + "example_sentence_english": "All patient records are handled with strict confidentiality.", + "pos": "noun", + "word_frequency": 11031 + }, + { + "word": "contradiction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statement that opposes another", + "example_sentence_english": "There was a clear contradiction between his two statements.", + "pos": "noun", + "word_frequency": 11032 + }, + { + "word": "coronation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ceremony of crowning a monarch", + "example_sentence_english": "The coronation of the new king was a grand event.", + "pos": "noun", + "word_frequency": 11033 + }, + { + "word": "cracker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thin, crisp biscuit", + "example_sentence_english": "I like to eat cheese and crackers as a snack.", + "pos": "noun", + "word_frequency": 11034 + }, + { + "word": "cunning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill in deception", + "example_sentence_english": "The fox used its cunning to outsmart the hunter.", + "pos": "noun", + "word_frequency": 11037 + }, + { + "word": "depiction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a representation or description", + "example_sentence_english": "The painting offered a vivid depiction of the battle.", + "pos": "noun", + "word_frequency": 11039 + }, + { + "word": "deplete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to use up; to reduce", + "example_sentence_english": "Our natural resources are depleting rapidly.", + "pos": "verb", + "word_frequency": 11040 + }, + { + "word": "diabetic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to diabetes; a person with diabetes", + "example_sentence_english": "She follows a strict diabetic diet.", + "pos": "adjective", + "word_frequency": 11041 + }, + { + "word": "diaspora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the dispersion of any people from their original homeland", + "example_sentence_english": "The African diaspora has significantly influenced global culture.", + "pos": "noun", + "word_frequency": 11042 + }, + { + "word": "discord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagreement; lack of harmony", + "example_sentence_english": "There was much discord among the committee members.", + "pos": "noun", + "word_frequency": 11043 + }, + { + "word": "divinity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being divine; a god or goddess", + "example_sentence_english": "Ancient cultures often worshipped multiple divinities.", + "pos": "noun", + "word_frequency": 11044 + }, + { + "word": "donut", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small fried cake of sweetened dough", + "example_sentence_english": "I bought a chocolate donut for breakfast.", + "pos": "noun", + "word_frequency": 11045 + }, + { + "word": "dorsal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the back of an animal or plant", + "example_sentence_english": "The shark's dorsal fin was visible above the water.", + "pos": "adjective", + "word_frequency": 11046 + }, + { + "word": "durability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to withstand wear, pressure, or damage", + "example_sentence_english": "The durability of this material makes it ideal for outdoor furniture.", + "pos": "noun", + "word_frequency": 11047 + }, + { + "word": "empress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female emperor or the wife of an emperor", + "example_sentence_english": "The empress ruled the vast empire for many years.", + "pos": "noun", + "word_frequency": 11048 + }, + { + "word": "endeavour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to try hard to do or achieve something", + "example_sentence_english": "We must endeavour to improve our services.", + "pos": "verb", + "word_frequency": 11049 + }, + { + "word": "entertainer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person whose job is to entertain others", + "example_sentence_english": "The cruise ship hired a new entertainer for the evening shows.", + "pos": "noun", + "word_frequency": 11050 + }, + { + "word": "entrust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assign the responsibility for something to someone", + "example_sentence_english": "I wouldn't entrust him with such an important task.", + "pos": "verb", + "word_frequency": 11051 + }, + { + "word": "fatality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a death caused by an accident or disaster", + "example_sentence_english": "There were no fatalities reported in the plane crash.", + "pos": "noun", + "word_frequency": 11055 + }, + { + "word": "festivity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the celebration of something in a joyful way", + "example_sentence_english": "The town was filled with festivity during the annual carnival.", + "pos": "noun", + "word_frequency": 11056 + }, + { + "word": "gasp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take a quick, deep breath with your mouth open", + "example_sentence_english": "She let out a gasp of surprise when she saw the gift.", + "pos": "verb", + "word_frequency": 11058 + }, + { + "word": "genital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the organs of reproduction", + "example_sentence_english": "The doctor examined the patient's genital area.", + "pos": "adjective", + "word_frequency": 11059 + }, + { + "word": "glitch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden, usually temporary malfunction or irregularity", + "example_sentence_english": "There was a minor glitch in the software update.", + "pos": "noun", + "word_frequency": 11060 + }, + { + "word": "gong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a metallic disc that produces a resonant sound when struck", + "example_sentence_english": "The sound of the gong signaled the start of the ceremony.", + "pos": "noun", + "word_frequency": 11061 + }, + { + "word": "grader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who grades papers; a machine for leveling ground", + "example_sentence_english": "The teacher spent hours as a grader, marking essays.", + "pos": "noun", + "word_frequency": 11062 + }, + { + "word": "greasy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered with or resembling grease or oil", + "example_sentence_english": "The fast food was too greasy for my taste.", + "pos": "adjective", + "word_frequency": 11063 + }, + { + "word": "grieve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel intense sorrow or distress", + "example_sentence_english": "It takes time to grieve after losing a loved one.", + "pos": "verb", + "word_frequency": 11064 + }, + { + "word": "grooming", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making oneself neat and tidy; preparing someone for a role; illicitly preparing someone for sexual abuse", + "example_sentence_english": "The dog requires regular grooming to keep its coat healthy.", + "pos": "noun", + "word_frequency": 11065 + }, + { + "word": "hamburger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a patty of ground beef, usually served in a bun", + "example_sentence_english": "I ordered a hamburger with cheese and fries.", + "pos": "noun", + "word_frequency": 11066 + }, + { + "word": "heed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay attention to; take notice of", + "example_sentence_english": "You should heed the advice of your elders.", + "pos": "verb", + "word_frequency": 11067 + }, + { + "word": "hideous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ugly or disgusting to look at", + "example_sentence_english": "The monster in the movie had a hideous face.", + "pos": "adjective", + "word_frequency": 11068 + }, + { + "word": "homepage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the introductory page of a website", + "example_sentence_english": "I set my favorite news site as my browser's homepage.", + "pos": "noun", + "word_frequency": 11069 + }, + { + "word": "hoop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a circular band or ring", + "example_sentence_english": "He shot the basketball through the hoop.", + "pos": "noun", + "word_frequency": 11070 + }, + { + "word": "imaginative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing creativity or inventiveness", + "example_sentence_english": "The author is known for her imaginative storytelling.", + "pos": "adjective", + "word_frequency": 11073 + }, + { + "word": "imperfect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not perfect; flawed", + "example_sentence_english": "Every human being is imperfect in some way.", + "pos": "adjective", + "word_frequency": 11074 + }, + { + "word": "implicit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implied though not directly expressed; unquestioning", + "example_sentence_english": "There was an implicit understanding between them.", + "pos": "adjective", + "word_frequency": 11075 + }, + { + "word": "inlet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small arm of the sea, lake, or river that extends into the land", + "example_sentence_english": "The boat sailed into a narrow inlet, sheltered from the wind.", + "pos": "noun", + "word_frequency": 11077 + }, + { + "word": "insensitive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing or feeling no concern for others' feelings; not responsive to stimuli", + "example_sentence_english": "His insensitive comments hurt her feelings.", + "pos": "adjective", + "word_frequency": 11078 + }, + { + "word": "islander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an inhabitant of an island", + "example_sentence_english": "The islanders rely on fishing for their livelihood.", + "pos": "noun", + "word_frequency": 11079 + }, + { + "word": "keystone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "central stone in an arch; fundamental part", + "example_sentence_english": "Trust is the keystone of any strong relationship.", + "pos": "noun", + "word_frequency": 11081 + }, + { + "word": "knitting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the activity of making fabric by interlocking loops of yarn", + "example_sentence_english": "She enjoys knitting in the evenings.", + "pos": "noun", + "word_frequency": 11082 + }, + { + "word": "kudos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise and honor received for an achievement", + "example_sentence_english": "Kudos to the team for a job well done!", + "pos": "noun", + "word_frequency": 11084 + }, + { + "word": "lieu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "place; stead (used in 'in lieu of')", + "example_sentence_english": "He received a cash payment in lieu of a bonus.", + "pos": "noun", + "word_frequency": 11085 + }, + { + "word": "liquidity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the availability of liquid assets to a market or company", + "example_sentence_english": "The company faced a crisis due to a lack of liquidity.", + "pos": "noun", + "word_frequency": 11086 + }, + { + "word": "loch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Scottish lake or sea inlet", + "example_sentence_english": "Loch Ness is famous for its monster.", + "pos": "noun", + "word_frequency": 11087 + }, + { + "word": "lotion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thick, smooth liquid preparation for the skin", + "example_sentence_english": "She applied sunscreen lotion before going to the beach.", + "pos": "noun", + "word_frequency": 11089 + }, + { + "word": "lutheran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Protestant Church founded by Martin Luther", + "example_sentence_english": "My grandparents belong to the Lutheran church.", + "pos": "adjective", + "word_frequency": 11091 + }, + { + "word": "marquis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a nobleman ranking below a duke and above an earl", + "example_sentence_english": "The marquis inherited the vast estate.", + "pos": "noun", + "word_frequency": 11093 + }, + { + "word": "mayhem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violent or damaging disorder; chaos", + "example_sentence_english": "The sudden storm caused absolute mayhem in the city.", + "pos": "noun", + "word_frequency": 11094 + }, + { + "word": "men", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "adult human males (plural of man)", + "example_sentence_english": "Two men were waiting at the bus stop.", + "pos": "noun", + "word_frequency": 11095 + }, + { + "word": "mistaken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incorrectly; by error (as in 'mistakenly')", + "example_sentence_english": "He was mistakenly identified as the culprit.", + "pos": "adverb", + "word_frequency": 11096 + }, + { + "word": "mould", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a furry growth of minute fungi occurring on organic matter", + "example_sentence_english": "There was mould growing on the old bread.", + "pos": "noun", + "word_frequency": 11097 + }, + { + "word": "neuroscience", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the scientific study of the nervous system", + "example_sentence_english": "She is pursuing a degree in neuroscience.", + "pos": "noun", + "word_frequency": 11098 + }, + { + "word": "nostalgic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or evoking a sense of nostalgia", + "example_sentence_english": "Looking at old photos made her feel nostalgic.", + "pos": "adjective", + "word_frequency": 11100 + }, + { + "word": "oppressive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustly inflicting hardship and constraint", + "example_sentence_english": "The oppressive heat made it difficult to work.", + "pos": "adjective", + "word_frequency": 11103 + }, + { + "word": "patronage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the support, encouragement, or financial aid that an organization or individual bestows on another", + "example_sentence_english": "The artist relied on the patronage of wealthy collectors.", + "pos": "noun", + "word_frequency": 11105 + }, + { + "word": "pinnacle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the most successful point; the culmination", + "example_sentence_english": "Reaching the summit was the pinnacle of his climbing career.", + "pos": "noun", + "word_frequency": 11107 + }, + { + "word": "pong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong, unpleasant smell", + "example_sentence_english": "There was a terrible pong coming from the drains.", + "pos": "noun", + "word_frequency": 11108 + }, + { + "word": "prosper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "succeed in material terms; flourish financially", + "example_sentence_english": "The business began to prosper after the new marketing campaign.", + "pos": "verb", + "word_frequency": 11109 + }, + { + "word": "psi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pounds per square inch (unit of pressure)", + "example_sentence_english": "The tire pressure should be 32 psi.", + "pos": "noun", + "word_frequency": 11110 + }, + { + "word": "quake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an earthquake or tremor", + "example_sentence_english": "The small quake rattled the windows.", + "pos": "noun", + "word_frequency": 11111 + }, + { + "word": "qualitative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or measuring the quality of something rather than its quantity", + "example_sentence_english": "The study focused on qualitative data, such as interviews and observations.", + "pos": "adjective", + "word_frequency": 11112 + }, + { + "word": "racer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person, animal, or vehicle that races", + "example_sentence_english": "The Formula 1 racer sped around the track.", + "pos": "noun", + "word_frequency": 11113 + }, + { + "word": "radial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arranged in rays or radiating from a central point", + "example_sentence_english": "The car has radial tires for better grip.", + "pos": "adjective", + "word_frequency": 11114 + }, + { + "word": "recap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a summary or brief review", + "example_sentence_english": "Let's do a quick recap of what we discussed.", + "pos": "noun", + "word_frequency": 11115 + }, + { + "word": "recognizable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be recognized or identified", + "example_sentence_english": "His voice was instantly recognizable.", + "pos": "adjective", + "word_frequency": 11116 + }, + { + "word": "reconnaissance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "military observation of a region to locate an enemy or ascertain strategic features", + "example_sentence_english": "The drone was sent on a reconnaissance mission.", + "pos": "noun", + "word_frequency": 11117 + }, + { + "word": "regent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person appointed to administer a country because the monarch is a minor or is absent or incapacitated", + "example_sentence_english": "The young prince's mother served as regent until he came of age.", + "pos": "noun", + "word_frequency": 11118 + }, + { + "word": "rendition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a performance or interpretation, especially of a musical piece or dramatic role", + "example_sentence_english": "Her rendition of the song was truly beautiful.", + "pos": "noun", + "word_frequency": 11119 + }, + { + "word": "roadside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The edge of a road", + "example_sentence_english": "We stopped at the roadside to admire the view.", + "pos": "noun", + "word_frequency": 11120 + }, + { + "word": "scramble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To move quickly or awkwardly", + "example_sentence_english": "The children scrambled over the rocks.", + "pos": "verb", + "word_frequency": 11123 + }, + { + "word": "secretariat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An administrative office or department", + "example_sentence_english": "The UN Secretariat is located in New York.", + "pos": "noun", + "word_frequency": 11124 + }, + { + "word": "semitism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The characteristics or culture of Semitic peoples", + "example_sentence_english": "The study of Semitism includes various languages and cultures.", + "pos": "noun", + "word_frequency": 11125 + }, + { + "word": "shaky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Trembling or unstable", + "example_sentence_english": "His voice was shaky with emotion.", + "pos": "adjective", + "word_frequency": 11126 + }, + { + "word": "sham", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A pretense or a fake", + "example_sentence_english": "The whole trial was a complete sham.", + "pos": "noun", + "word_frequency": 11127 + }, + { + "word": "shortcoming", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A fault or defect", + "example_sentence_english": "We all have our shortcomings.", + "pos": "noun", + "word_frequency": 11128 + }, + { + "word": "shred", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To tear or cut into small pieces", + "example_sentence_english": "She shredded the documents before leaving.", + "pos": "verb", + "word_frequency": 11129 + }, + { + "word": "slayer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "One who kills", + "example_sentence_english": "The dragon slayer was a hero in the village.", + "pos": "noun", + "word_frequency": 11132 + }, + { + "word": "soothe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To calm or relieve", + "example_sentence_english": "She tried to soothe the crying baby.", + "pos": "verb", + "word_frequency": 11133 + }, + { + "word": "spawn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To produce or generate", + "example_sentence_english": "The new policy spawned a lot of debate.", + "pos": "verb", + "word_frequency": 11134 + }, + { + "word": "specialise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To concentrate on a particular area", + "example_sentence_english": "He decided to specialise in criminal law.", + "pos": "verb", + "word_frequency": 11135 + }, + { + "word": "stalker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who harasses or pursues someone obsessively", + "example_sentence_english": "The celebrity hired security to deal with a stalker.", + "pos": "noun", + "word_frequency": 11136 + }, + { + "word": "stature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person's height or reputation", + "example_sentence_english": "He is a man of great stature in the scientific community.", + "pos": "noun", + "word_frequency": 11137 + }, + { + "word": "steward", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who manages property or affairs for another", + "example_sentence_english": "The flight steward helped the passengers.", + "pos": "noun", + "word_frequency": 11138 + }, + { + "word": "stout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Somewhat fat or strongly built", + "example_sentence_english": "He was a stout man with a friendly face.", + "pos": "adjective", + "word_frequency": 11139 + }, + { + "word": "stripper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who removes clothes for entertainment", + "example_sentence_english": "The performer was a stripper at the adult club.", + "pos": "noun", + "word_frequency": 11140 + }, + { + "word": "stump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The part of a tree remaining in the ground after it has been cut down", + "example_sentence_english": "We sat on the tree stump by the river.", + "pos": "noun", + "word_frequency": 11141 + }, + { + "word": "subordinate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Lower in rank or position", + "example_sentence_english": "He holds a subordinate position in the company.", + "pos": "adjective", + "word_frequency": 11142 + }, + { + "word": "synagogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A Jewish house of worship", + "example_sentence_english": "They attended services at the local synagogue.", + "pos": "noun", + "word_frequency": 11143 + }, + { + "word": "tentative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not certain or fixed", + "example_sentence_english": "We made a tentative plan for the weekend.", + "pos": "adjective", + "word_frequency": 11144 + }, + { + "word": "topical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to current events or a specific subject", + "example_sentence_english": "The discussion focused on topical issues.", + "pos": "adjective", + "word_frequency": 11145 + }, + { + "word": "uneasy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Anxious or uncomfortable", + "example_sentence_english": "She felt uneasy about the silence.", + "pos": "adjective", + "word_frequency": 11147 + }, + { + "word": "unfold", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To open or spread out", + "example_sentence_english": "He watched the story unfold before his eyes.", + "pos": "verb", + "word_frequency": 11148 + }, + { + "word": "variance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The fact or quality of being different", + "example_sentence_english": "There was a significant variance in the results.", + "pos": "noun", + "word_frequency": 11151 + }, + { + "word": "wally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A foolish or inept person", + "example_sentence_english": "Don't be such a wally, you can do it!", + "pos": "noun", + "word_frequency": 11153 + }, + { + "word": "wavelength", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The distance between successive crests of a wave; a particular way of thinking", + "example_sentence_english": "We're finally on the same wavelength about the project.", + "pos": "noun", + "word_frequency": 11154 + }, + { + "word": "workload", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The amount of work to be done", + "example_sentence_english": "My workload has increased significantly this month.", + "pos": "noun", + "word_frequency": 11155 + }, + { + "word": "acquit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To free someone from a criminal charge by a verdict of not guilty", + "example_sentence_english": "The jury decided to acquit the defendant.", + "pos": "verb", + "word_frequency": 11158 + }, + { + "word": "admiralty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The department or officers in charge of naval affairs", + "example_sentence_english": "The Admiralty issued new regulations for naval vessels.", + "pos": "noun", + "word_frequency": 11159 + }, + { + "word": "aux", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auxiliary", + "example_sentence_english": "Plug the cable into the aux port.", + "pos": "adjective", + "word_frequency": 11161 + }, + { + "word": "berth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place for a ship to moor; a sleeping place on a ship or train", + "example_sentence_english": "The ship was given a berth at the busy port.", + "pos": "noun", + "word_frequency": 11162 + }, + { + "word": "blackmail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of demanding money or other benefit in return for not revealing compromising information", + "example_sentence_english": "He was accused of blackmail after threatening to expose her secrets.", + "pos": "noun", + "word_frequency": 11163 + }, + { + "word": "blindness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being unable to see", + "example_sentence_english": "She has suffered from partial blindness since birth.", + "pos": "noun", + "word_frequency": 11164 + }, + { + "word": "burglary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegal entry into a building with intent to commit a crime, especially theft", + "example_sentence_english": "The police are investigating a recent burglary at the museum.", + "pos": "noun", + "word_frequency": 11165 + }, + { + "word": "cafeteria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a restaurant in which customers serve themselves from a counter and pay before eating", + "example_sentence_english": "We usually eat lunch in the school cafeteria.", + "pos": "noun", + "word_frequency": 11166 + }, + { + "word": "canary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, yellow songbird", + "example_sentence_english": "The canary sang a beautiful tune from its cage.", + "pos": "noun", + "word_frequency": 11167 + }, + { + "word": "cardio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cardiovascular exercise", + "example_sentence_english": "I do cardio for 30 minutes every morning.", + "pos": "noun", + "word_frequency": 11168 + }, + { + "word": "caucasian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a broad group of people indigenous to Europe, North Africa, the Horn of Africa, West Asia, Central Asia, and South Asia", + "example_sentence_english": "The study included participants of various ethnic backgrounds, including Caucasian.", + "pos": "adjective", + "word_frequency": 11170 + }, + { + "word": "chilean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Chile or its people", + "example_sentence_english": "She enjoyed the Chilean wine with her dinner.", + "pos": "adjective", + "word_frequency": 11171 + }, + { + "word": "clumsy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "awkward in movement or handling things", + "example_sentence_english": "He's a bit clumsy and often trips over his own feet.", + "pos": "adjective", + "word_frequency": 11172 + }, + { + "word": "commuter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who travels some distance to work on a regular basis", + "example_sentence_english": "Many commuters rely on public transport to get to the city center.", + "pos": "noun", + "word_frequency": 11173 + }, + { + "word": "contingency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a future event or circumstance which is possible but cannot be predicted with certainty", + "example_sentence_english": "We need to have a contingency plan in case of a power outage.", + "pos": "noun", + "word_frequency": 11174 + }, + { + "word": "coworker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person with whom one works", + "example_sentence_english": "My coworker helped me finish the project on time.", + "pos": "noun", + "word_frequency": 11175 + }, + { + "word": "cupboard", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a cabinet with shelves for storing things", + "example_sentence_english": "The plates are in the kitchen cupboard.", + "pos": "noun", + "word_frequency": 11176 + }, + { + "word": "curate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to select, organize, and look after the items in a collection or exhibition", + "example_sentence_english": "She curates a collection of contemporary art for the gallery.", + "pos": "verb", + "word_frequency": 11177 + }, + { + "word": "customize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to modify (something) to suit a particular individual or task", + "example_sentence_english": "You can customize the settings to fit your preferences.", + "pos": "verb", + "word_frequency": 11178 + }, + { + "word": "daft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silly; foolish", + "example_sentence_english": "Don't be daft, that's a ridiculous idea!", + "pos": "adjective", + "word_frequency": 11179 + }, + { + "word": "deprivation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the damaging lack of material benefits considered to be basic necessities in a society", + "example_sentence_english": "Sleep deprivation can have serious health consequences.", + "pos": "noun", + "word_frequency": 11181 + }, + { + "word": "disqualify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make (someone) ineligible for something", + "example_sentence_english": "The athlete was disqualified for using banned substances.", + "pos": "verb", + "word_frequency": 11183 + }, + { + "word": "diversify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become more diverse or varied", + "example_sentence_english": "Companies should diversify their investments to reduce risk.", + "pos": "verb", + "word_frequency": 11184 + }, + { + "word": "duly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in accordance with what is required or appropriate; properly", + "example_sentence_english": "The documents were duly signed and submitted.", + "pos": "adverb", + "word_frequency": 11185 + }, + { + "word": "dusk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the darker stage of twilight", + "example_sentence_english": "The streetlights came on at dusk.", + "pos": "noun", + "word_frequency": 11186 + }, + { + "word": "enchant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fill (someone) with great delight; charm", + "example_sentence_english": "The beautiful music enchanted the audience.", + "pos": "verb", + "word_frequency": 11187 + }, + { + "word": "episcopal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or relating to a bishop or bishops", + "example_sentence_english": "The church follows an episcopal form of governance.", + "pos": "adjective", + "word_frequency": 11188 + }, + { + "word": "escalate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase rapidly; to make or become more intense or serious", + "example_sentence_english": "The dispute quickly escalated into a full-blown argument.", + "pos": "verb", + "word_frequency": 11189 + }, + { + "word": "everlasting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasting forever or for a very long time", + "example_sentence_english": "They promised each other everlasting love.", + "pos": "adjective", + "word_frequency": 11190 + }, + { + "word": "excellency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being outstanding or extremely good; a title of honor for certain high officials", + "example_sentence_english": "His Excellency, the Ambassador, arrived at the ceremony.", + "pos": "noun", + "word_frequency": 11191 + }, + { + "word": "feasibility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or degree of being easily or conveniently done", + "example_sentence_english": "They conducted a study to determine the feasibility of the project.", + "pos": "noun", + "word_frequency": 11193 + }, + { + "word": "frenzy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state or period of uncontrolled excitement or wild behavior", + "example_sentence_english": "The crowd was in a frenzy after the band's performance.", + "pos": "noun", + "word_frequency": 11195 + }, + { + "word": "fulfillment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the achievement of something desired, promised, or predicted; satisfaction or happiness as a result of developing one's abilities or character", + "example_sentence_english": "She found great fulfillment in her volunteer work.", + "pos": "noun", + "word_frequency": 11196 + }, + { + "word": "godfather", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a male godparent; a man who is influential in a particular sphere", + "example_sentence_english": "My uncle is my godfather.", + "pos": "noun", + "word_frequency": 11198 + }, + { + "word": "gran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grandmother (informal)", + "example_sentence_english": "My gran always bakes the best cookies.", + "pos": "noun", + "word_frequency": 11200 + }, + { + "word": "groundwater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water held underground in the soil or in pores and crevices in rock", + "example_sentence_english": "The well draws water from the groundwater supply.", + "pos": "noun", + "word_frequency": 11201 + }, + { + "word": "hospitalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admit to a hospital for treatment", + "example_sentence_english": "They had to hospitalize him after the accident.", + "pos": "verb", + "word_frequency": 11203 + }, + { + "word": "inadvertent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not resulting from or achieved through deliberate planning", + "example_sentence_english": "His inadvertent remark caused some offense.", + "pos": "adverb", + "word_frequency": 11205 + }, + { + "word": "indifferent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no particular interest or sympathy; unconcerned", + "example_sentence_english": "She was indifferent to their pleas.", + "pos": "adjective", + "word_frequency": 11206 + }, + { + "word": "insistence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the fact of insisting that something is the case or should be done", + "example_sentence_english": "At her insistence, we stayed for dinner.", + "pos": "noun", + "word_frequency": 11207 + }, + { + "word": "invariable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "never changing; constant", + "example_sentence_english": "His invariable good humor was a comfort to everyone.", + "pos": "adverb", + "word_frequency": 11208 + }, + { + "word": "invincible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "too powerful to be defeated or overcome", + "example_sentence_english": "The team seemed invincible after winning so many games.", + "pos": "adjective", + "word_frequency": 11209 + }, + { + "word": "jubilee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a special anniversary of an event, especially one celebrating twenty-five or fifty years", + "example_sentence_english": "The town celebrated its golden jubilee with a grand parade.", + "pos": "noun", + "word_frequency": 11211 + }, + { + "word": "kinetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or resulting from motion", + "example_sentence_english": "The sculpture was designed to create kinetic energy.", + "pos": "adjective", + "word_frequency": 11213 + }, + { + "word": "lam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hasty escape, especially from the police", + "example_sentence_english": "The suspect has been on the lam for weeks.", + "pos": "noun", + "word_frequency": 11214 + }, + { + "word": "lash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sharp blow with a whip or cord; an eyelash", + "example_sentence_english": "She has long, dark lashes.", + "pos": "noun", + "word_frequency": 11215 + }, + { + "word": "lavender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small aromatic evergreen shrub; a pale purple color", + "example_sentence_english": "The garden was filled with the scent of lavender.", + "pos": "noun", + "word_frequency": 11218 + }, + { + "word": "lemonade", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a drink made from lemons, sugar, and water", + "example_sentence_english": "I'd like a glass of lemonade, please.", + "pos": "noun", + "word_frequency": 11219 + }, + { + "word": "lodging", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary accommodation", + "example_sentence_english": "We found lodging for the night at a small inn.", + "pos": "noun", + "word_frequency": 11221 + }, + { + "word": "mania", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mental illness marked by periods of great excitement, euphoria, delusions, and overactivity", + "example_sentence_english": "He suffered from periods of intense mania.", + "pos": "noun", + "word_frequency": 11223 + }, + { + "word": "mule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the offspring of a donkey and a mare", + "example_sentence_english": "The farmer used a mule to pull the cart.", + "pos": "noun", + "word_frequency": 11224 + }, + { + "word": "mythical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing only in ancient myths; imaginary", + "example_sentence_english": "Dragons are mythical creatures.", + "pos": "adjective", + "word_frequency": 11225 + }, + { + "word": "neutron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a subatomic particle of about the same mass as a proton but without an electric charge", + "example_sentence_english": "A neutron is found in the nucleus of an atom.", + "pos": "noun", + "word_frequency": 11227 + }, + { + "word": "newcomer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who has recently arrived in a place or started an activity", + "example_sentence_english": "The village welcomed the newcomers with a party.", + "pos": "noun", + "word_frequency": 11228 + }, + { + "word": "orderly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neatly and systematically arranged", + "example_sentence_english": "Her desk was always very orderly.", + "pos": "adjective", + "word_frequency": 11233 + }, + { + "word": "outset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the start or beginning of something", + "example_sentence_english": "From the outset, it was clear that the project would be challenging.", + "pos": "noun", + "word_frequency": 11235 + }, + { + "word": "paralyze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause (a person or part of the body) to become immobile", + "example_sentence_english": "The accident left him partially paralyzed.", + "pos": "verb", + "word_frequency": 11236 + }, + { + "word": "parry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ward off (a weapon or attack) with a countermove", + "example_sentence_english": "He managed to parry the blow with his sword.", + "pos": "verb", + "word_frequency": 11237 + }, + { + "word": "patio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a paved outdoor area adjoining a house", + "example_sentence_english": "We had dinner on the patio last night.", + "pos": "noun", + "word_frequency": 11238 + }, + { + "word": "peacock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large male pheasant with a crested head and fan-like tail", + "example_sentence_english": "The peacock displayed its beautiful tail feathers.", + "pos": "noun", + "word_frequency": 11239 + }, + { + "word": "postcard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A card for sending messages by post without an envelope", + "example_sentence_english": "She sent me a beautiful postcard from Paris.", + "pos": "noun", + "word_frequency": 11242 + }, + { + "word": "powerhouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing of great energy, strength, or power", + "example_sentence_english": "The company is a powerhouse in the tech industry.", + "pos": "noun", + "word_frequency": 11244 + }, + { + "word": "precursor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person or thing that comes before another of the same kind", + "example_sentence_english": "The invention of the printing press was a precursor to the information age.", + "pos": "noun", + "word_frequency": 11245 + }, + { + "word": "preferable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "More desirable or suitable", + "example_sentence_english": "A quiet environment is preferable for studying.", + "pos": "adjective", + "word_frequency": 11246 + }, + { + "word": "preparatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Serving to prepare for something", + "example_sentence_english": "She attended a preparatory school before university.", + "pos": "adjective", + "word_frequency": 11247 + }, + { + "word": "prism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A transparent optical element with flat, polished surfaces that refract light", + "example_sentence_english": "A prism can split white light into a spectrum of colors.", + "pos": "noun", + "word_frequency": 11248 + }, + { + "word": "proclamation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A public or official announcement dealing with a matter of great importance", + "example_sentence_english": "The king issued a proclamation declaring a new holiday.", + "pos": "noun", + "word_frequency": 11249 + }, + { + "word": "proponent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who advocates a theory, proposal, or course of action", + "example_sentence_english": "She is a strong proponent of renewable energy.", + "pos": "noun", + "word_frequency": 11250 + }, + { + "word": "provocative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Causing annoyance, anger, or another strong reaction, especially deliberately", + "example_sentence_english": "His provocative comments sparked a heated debate.", + "pos": "adjective", + "word_frequency": 11251 + }, + { + "word": "purposeful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Having or showing a sense of purpose", + "example_sentence_english": "She walked with a purposeful stride towards the finish line.", + "pos": "adverb", + "word_frequency": 11253 + }, + { + "word": "questionnaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A set of printed or written questions with a choice of answers, devised for the purposes of a survey or statistical study", + "example_sentence_english": "Please fill out this questionnaire before the interview.", + "pos": "noun", + "word_frequency": 11255 + }, + { + "word": "reclaim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To retrieve or recover something previously lost, given, or paid", + "example_sentence_english": "They worked to reclaim the land from the sea.", + "pos": "verb", + "word_frequency": 11256 + }, + { + "word": "redevelopment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process of developing something again or in a new way", + "example_sentence_english": "The city council approved the redevelopment of the old factory site.", + "pos": "noun", + "word_frequency": 11257 + }, + { + "word": "reflex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An action that is performed as a response to a stimulus and without conscious thought", + "example_sentence_english": "The doctor checked her knee-jerk reflex.", + "pos": "noun", + "word_frequency": 11258 + }, + { + "word": "relocate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To move to a new place and establish one's home or business there", + "example_sentence_english": "The company decided to relocate its headquarters to a different city.", + "pos": "verb", + "word_frequency": 11259 + }, + { + "word": "rematch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A second or return match between the same opponents", + "example_sentence_english": "The two boxers agreed to a rematch next month.", + "pos": "noun", + "word_frequency": 11260 + }, + { + "word": "renal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the kidneys", + "example_sentence_english": "The patient was diagnosed with chronic renal failure.", + "pos": "adjective", + "word_frequency": 11261 + }, + { + "word": "repayment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of paying back a loan or debt", + "example_sentence_english": "The loan repayment schedule was very strict.", + "pos": "noun", + "word_frequency": 11262 + }, + { + "word": "riddle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A question or statement intentionally phrased so as to require ingenuity in ascertaining its answer or meaning", + "example_sentence_english": "Can you solve this riddle?", + "pos": "noun", + "word_frequency": 11263 + }, + { + "word": "roach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cockroach", + "example_sentence_english": "I saw a roach scuttling across the kitchen floor.", + "pos": "noun", + "word_frequency": 11265 + }, + { + "word": "roe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The mass of eggs contained in the ovaries of a female fish or shellfish", + "example_sentence_english": "Sushi often includes salmon roe.", + "pos": "noun", + "word_frequency": 11267 + }, + { + "word": "rubble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Waste or rough fragments of stone, brick, concrete, etc., especially as debris from the demolition of buildings", + "example_sentence_english": "After the earthquake, the streets were filled with rubble.", + "pos": "noun", + "word_frequency": 11268 + }, + { + "word": "sapphire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A precious gemstone, typically blue", + "example_sentence_english": "She wore a beautiful sapphire ring.", + "pos": "noun", + "word_frequency": 11271 + }, + { + "word": "seam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A line where two pieces of fabric are sewn together", + "example_sentence_english": "The seam on her dress was coming undone.", + "pos": "noun", + "word_frequency": 11272 + }, + { + "word": "sectional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to a section or division of something", + "example_sentence_english": "We bought a new sectional sofa for the living room.", + "pos": "adjective", + "word_frequency": 11273 + }, + { + "word": "sniff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To draw air audibly up the nose to detect a smell", + "example_sentence_english": "The dog began to sniff the ground for clues.", + "pos": "verb", + "word_frequency": 11276 + }, + { + "word": "soar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To fly or rise high in the air", + "example_sentence_english": "The eagle began to soar above the mountains.", + "pos": "verb", + "word_frequency": 11278 + }, + { + "word": "soluble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Able to be dissolved, especially in water", + "example_sentence_english": "Sugar is soluble in water.", + "pos": "adjective", + "word_frequency": 11279 + }, + { + "word": "solvent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to pay debts; able to dissolve other substances", + "example_sentence_english": "The company remained solvent despite the economic downturn.", + "pos": "adjective", + "word_frequency": 11280 + }, + { + "word": "squid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a marine cephalopod", + "example_sentence_english": "We ordered fried squid as an appetizer.", + "pos": "noun", + "word_frequency": 11281 + }, + { + "word": "sturdy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strong and robust", + "example_sentence_english": "The sturdy table could hold a lot of weight.", + "pos": "adjective", + "word_frequency": 11284 + }, + { + "word": "swarm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large group of insects or people", + "example_sentence_english": "A swarm of bees flew out of the hive.", + "pos": "noun", + "word_frequency": 11285 + }, + { + "word": "tanker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ship or vehicle for carrying liquids", + "example_sentence_english": "The oil tanker was enormous.", + "pos": "noun", + "word_frequency": 11286 + }, + { + "word": "timetable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a schedule of times", + "example_sentence_english": "Check the train timetable for departure times.", + "pos": "noun", + "word_frequency": 11288 + }, + { + "word": "torpedo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a self-propelled underwater missile", + "example_sentence_english": "The submarine launched a torpedo at the target.", + "pos": "noun", + "word_frequency": 11290 + }, + { + "word": "trolley", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small cart with wheels", + "example_sentence_english": "She pushed the shopping trolley down the aisle.", + "pos": "noun", + "word_frequency": 11291 + }, + { + "word": "undocumented", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not officially recorded or proved", + "example_sentence_english": "The historian found several undocumented facts about the event.", + "pos": "adjective", + "word_frequency": 11294 + }, + { + "word": "vaginal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the vagina", + "example_sentence_english": "The doctor discussed vaginal health with the patient.", + "pos": "adjective", + "word_frequency": 11295 + }, + { + "word": "viability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ability to work successfully or survive", + "example_sentence_english": "They questioned the long-term viability of the project.", + "pos": "noun", + "word_frequency": 11297 + }, + { + "word": "widen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become wider", + "example_sentence_english": "The road will widen after the bridge.", + "pos": "verb", + "word_frequency": 11299 + }, + { + "word": "wolverine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a carnivorous mammal of the weasel family", + "example_sentence_english": "The wolverine is known for its strength and ferocity.", + "pos": "noun", + "word_frequency": 11300 + }, + { + "word": "wrought", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beaten or shaped by hammering; caused or brought about", + "example_sentence_english": "The gate was made of beautiful wrought iron.", + "pos": "adjective", + "word_frequency": 11301 + }, + { + "word": "yearbook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book published annually by a school or college", + "example_sentence_english": "She signed her friends' yearbooks on the last day of school.", + "pos": "noun", + "word_frequency": 11303 + }, + { + "word": "abbot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the head of a monastery", + "example_sentence_english": "The abbot led the monks in prayer.", + "pos": "noun", + "word_frequency": 11306 + }, + { + "word": "abduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of taking someone away illegally by force", + "example_sentence_english": "The police are investigating the abduction of the child.", + "pos": "noun", + "word_frequency": 11307 + }, + { + "word": "ache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a continuous dull pain", + "example_sentence_english": "She had a dull ache in her back.", + "pos": "noun", + "word_frequency": 11308 + }, + { + "word": "afro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rounded, bushy hairstyle", + "example_sentence_english": "He proudly wore his large afro.", + "pos": "noun", + "word_frequency": 11309 + }, + { + "word": "ancestral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or inherited from an ancestor", + "example_sentence_english": "They visited their ancestral home in the village.", + "pos": "adjective", + "word_frequency": 11310 + }, + { + "word": "antiquity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ancient past, especially before the Middle Ages", + "example_sentence_english": "The museum displayed artifacts from antiquity.", + "pos": "noun", + "word_frequency": 11311 + }, + { + "word": "apocalyptic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "describing or prophesying the complete destruction of the world", + "example_sentence_english": "The movie depicted an apocalyptic future.", + "pos": "adjective", + "word_frequency": 11312 + }, + { + "word": "appraisal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of assessing something or someone", + "example_sentence_english": "She received a positive performance appraisal.", + "pos": "noun", + "word_frequency": 11313 + }, + { + "word": "aqua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light bluish-green color", + "example_sentence_english": "The swimming pool had beautiful aqua tiles.", + "pos": "noun", + "word_frequency": 11314 + }, + { + "word": "aspen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of poplar tree", + "example_sentence_english": "The aspen leaves trembled in the breeze.", + "pos": "noun", + "word_frequency": 11315 + }, + { + "word": "autistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or affected by autism", + "example_sentence_english": "The school provides support for autistic students.", + "pos": "adjective", + "word_frequency": 11318 + }, + { + "word": "bearer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that carries or holds something", + "example_sentence_english": "The bearer of the message arrived late.", + "pos": "noun", + "word_frequency": 11321 + }, + { + "word": "bleak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not hopeful or encouraging; dreary", + "example_sentence_english": "The future looked bleak after the company closed.", + "pos": "adjective", + "word_frequency": 11324 + }, + { + "word": "blender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an electric machine used for mixing soft food or liquids", + "example_sentence_english": "She used the blender to make a smoothie.", + "pos": "noun", + "word_frequency": 11325 + }, + { + "word": "bogus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not genuine or true; fake", + "example_sentence_english": "He tried to pay with a bogus twenty-dollar bill.", + "pos": "adjective", + "word_frequency": 11327 + }, + { + "word": "bruise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an injury appearing as an area of discolored skin on the body", + "example_sentence_english": "He had a large bruise on his arm after falling.", + "pos": "noun", + "word_frequency": 11329 + }, + { + "word": "centric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at or near the center; focused on", + "example_sentence_english": "The new policy is customer-centric, focusing on user needs.", + "pos": "adjective", + "word_frequency": 11335 + }, + { + "word": "chaplain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a minister, priest, or rabbi serving a special group", + "example_sentence_english": "The hospital chaplain offered comfort to the patients.", + "pos": "noun", + "word_frequency": 11336 + }, + { + "word": "chlorine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chemical element used to purify water", + "example_sentence_english": "The swimming pool smelled strongly of chlorine.", + "pos": "noun", + "word_frequency": 11337 + }, + { + "word": "chow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food (informal)", + "example_sentence_english": "Let's get some chow after the game.", + "pos": "noun", + "word_frequency": 11338 + }, + { + "word": "chubby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plump and rounded", + "example_sentence_english": "The baby had chubby cheeks.", + "pos": "adjective", + "word_frequency": 11339 + }, + { + "word": "clement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mild or merciful", + "example_sentence_english": "The judge was clement in his sentencing.", + "pos": "adjective", + "word_frequency": 11340 + }, + { + "word": "collusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secret or illegal cooperation or conspiracy", + "example_sentence_english": "The two companies were accused of collusion to fix prices.", + "pos": "noun", + "word_frequency": 11341 + }, + { + "word": "contractual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or constituting a contract", + "example_sentence_english": "They have a contractual obligation to finish the work by Friday.", + "pos": "adjective", + "word_frequency": 11342 + }, + { + "word": "coroner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official who investigates deaths", + "example_sentence_english": "The coroner determined the cause of death.", + "pos": "noun", + "word_frequency": 11343 + }, + { + "word": "correctional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the punishment and rehabilitation of criminals", + "example_sentence_english": "He was sent to a correctional facility.", + "pos": "adjective", + "word_frequency": 11344 + }, + { + "word": "creamy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resembling cream in consistency or color", + "example_sentence_english": "The soup had a rich, creamy texture.", + "pos": "adjective", + "word_frequency": 11346 + }, + { + "word": "deterioration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of becoming progressively worse", + "example_sentence_english": "There has been a significant deterioration in his health.", + "pos": "noun", + "word_frequency": 11349 + }, + { + "word": "disbelief", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability or refusal to accept that something is true or real", + "example_sentence_english": "She stared at him in utter disbelief.", + "pos": "noun", + "word_frequency": 11351 + }, + { + "word": "discreet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "careful and circumspect in one's speech or actions", + "example_sentence_english": "He made a few discreet inquiries about the job.", + "pos": "adjective", + "word_frequency": 11352 + }, + { + "word": "dizzy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a sensation of spinning and a tendency to fall", + "example_sentence_english": "I felt dizzy after spinning around too fast.", + "pos": "adjective", + "word_frequency": 11353 + }, + { + "word": "duet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a musical composition for two performers", + "example_sentence_english": "They sang a beautiful duet together.", + "pos": "noun", + "word_frequency": 11355 + }, + { + "word": "expressive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing feelings clearly", + "example_sentence_english": "Her face was very expressive, showing all her emotions.", + "pos": "adjective", + "word_frequency": 11361 + }, + { + "word": "fiddle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violin; a dishonest act", + "example_sentence_english": "He played a lively tune on his fiddle.", + "pos": "noun", + "word_frequency": 11362 + }, + { + "word": "fortify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strengthen", + "example_sentence_english": "They decided to fortify the castle walls against attack.", + "pos": "verb", + "word_frequency": 11363 + }, + { + "word": "generalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make a general statement", + "example_sentence_english": "It's unfair to generalize about an entire group of people.", + "pos": "verb", + "word_frequency": 11367 + }, + { + "word": "glossy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smooth and shiny", + "example_sentence_english": "The magazine had a glossy cover.", + "pos": "adjective", + "word_frequency": 11369 + }, + { + "word": "grit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courage and determination; small loose particles of stone or sand", + "example_sentence_english": "It takes a lot of grit to succeed in difficult circumstances.", + "pos": "noun", + "word_frequency": 11371 + }, + { + "word": "haram", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forbidden (in Islam)", + "example_sentence_english": "Eating pork is considered haram in Islam.", + "pos": "noun", + "word_frequency": 11372 + }, + { + "word": "hectare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit of area equal to 10,000 square meters", + "example_sentence_english": "The farm covers an area of fifty hectares.", + "pos": "noun", + "word_frequency": 11373 + }, + { + "word": "homelessness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of having no home", + "example_sentence_english": "The city is working to address the issue of homelessness.", + "pos": "noun", + "word_frequency": 11375 + }, + { + "word": "horrendous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely unpleasant or dreadful", + "example_sentence_english": "The weather conditions were horrendous during the storm.", + "pos": "adjective", + "word_frequency": 11376 + }, + { + "word": "hostel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cheap hotel for travelers", + "example_sentence_english": "We stayed in a youth hostel during our trip to Europe.", + "pos": "noun", + "word_frequency": 11377 + }, + { + "word": "hound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of dog; to pursue relentlessly", + "example_sentence_english": "The hunter's hound tracked the scent through the forest.", + "pos": "noun", + "word_frequency": 11378 + }, + { + "word": "illegitimate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not authorized by law or rules; born of parents not married to each other", + "example_sentence_english": "The government declared the election results illegitimate.", + "pos": "adjective", + "word_frequency": 11380 + }, + { + "word": "illicit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forbidden by law, rules, or custom", + "example_sentence_english": "They were caught engaging in illicit trade.", + "pos": "adjective", + "word_frequency": 11381 + }, + { + "word": "incompetence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability to do something successfully", + "example_sentence_english": "His incompetence led to several mistakes in the project.", + "pos": "noun", + "word_frequency": 11382 + }, + { + "word": "insomnia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability to sleep", + "example_sentence_english": "She suffered from insomnia for weeks after the accident.", + "pos": "noun", + "word_frequency": 11383 + }, + { + "word": "interception", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of stopping and catching something or someone before they reach their destination", + "example_sentence_english": "The quarterback threw an interception in the final minutes of the game.", + "pos": "noun", + "word_frequency": 11384 + }, + { + "word": "invader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or group that invades a country or territory", + "example_sentence_english": "The defenders successfully repelled the invaders.", + "pos": "noun", + "word_frequency": 11385 + }, + { + "word": "karaoke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a form of entertainment in which amateur singers sing along to recorded music", + "example_sentence_english": "We went to a karaoke bar last night and sang our favorite songs.", + "pos": "noun", + "word_frequency": 11387 + }, + { + "word": "lagoon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stretch of salt water separated from the sea by a low sandbank or coral reef", + "example_sentence_english": "The boat sailed into the calm lagoon.", + "pos": "noun", + "word_frequency": 11391 + }, + { + "word": "lesion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a region in an organ or tissue which has suffered damage through injury or disease", + "example_sentence_english": "The doctor examined the skin lesion carefully.", + "pos": "noun", + "word_frequency": 11393 + }, + { + "word": "limp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not firm or stiff; walking with difficulty", + "example_sentence_english": "After the injury, his arm felt limp and useless.", + "pos": "adjective", + "word_frequency": 11394 + }, + { + "word": "linger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stay in a place longer than necessary", + "example_sentence_english": "She liked to linger in bed on Sunday mornings.", + "pos": "verb", + "word_frequency": 11395 + }, + { + "word": "linguistics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the scientific study of language", + "example_sentence_english": "She is studying linguistics at university.", + "pos": "noun", + "word_frequency": 11396 + }, + { + "word": "lunatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is mentally ill (dated, often offensive); a foolish or reckless person", + "example_sentence_english": "He drove like a lunatic, swerving through traffic.", + "pos": "noun", + "word_frequency": 11399 + }, + { + "word": "lyrical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressing deep emotion or a beautiful, imaginative quality", + "example_sentence_english": "Her lyrical poetry moved everyone in the audience.", + "pos": "adjective", + "word_frequency": 11400 + }, + { + "word": "manifestation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an event, action, or object that clearly shows or embodies something", + "example_sentence_english": "The protest was a manifestation of public anger.", + "pos": "noun", + "word_frequency": 11402 + }, + { + "word": "mead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an alcoholic drink of fermented honey and water", + "example_sentence_english": "In ancient times, mead was a popular drink.", + "pos": "noun", + "word_frequency": 11404 + }, + { + "word": "migrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a person or animal) move from one area or country to another", + "example_sentence_english": "Many birds migrate south for the winter.", + "pos": "verb", + "word_frequency": 11406 + }, + { + "word": "miraculous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring through divine or supernatural intervention, or a highly improbable and welcome event", + "example_sentence_english": "It was a miraculous recovery after the accident.", + "pos": "adjective", + "word_frequency": 11407 + }, + { + "word": "moan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make a long, low sound of pain, suffering, or pleasure", + "example_sentence_english": "He let out a low moan of discomfort.", + "pos": "verb", + "word_frequency": 11408 + }, + { + "word": "mourn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feel or show sorrow for the death of (someone)", + "example_sentence_english": "The family gathered to mourn their loss.", + "pos": "verb", + "word_frequency": 11410 + }, + { + "word": "mundane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking interest or excitement; dull", + "example_sentence_english": "He found his daily routine to be quite mundane.", + "pos": "adjective", + "word_frequency": 11411 + }, + { + "word": "nutshell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the hard outer shell of a nut; a very small space", + "example_sentence_english": "To put it in a nutshell, we're out of money.", + "pos": "noun", + "word_frequency": 11415 + }, + { + "word": "obsessive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characterized by obsession", + "example_sentence_english": "He has an obsessive need for cleanliness.", + "pos": "adjective", + "word_frequency": 11417 + }, + { + "word": "offseason", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the period of the year when a particular sport or activity is not in full swing", + "example_sentence_english": "During the offseason, many athletes focus on training.", + "pos": "noun", + "word_frequency": 11418 + }, + { + "word": "overboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from a ship or boat into the water", + "example_sentence_english": "Don't go overboard with the decorations.", + "pos": "adverb", + "word_frequency": 11420 + }, + { + "word": "pendant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of jewelry that hangs from a chain worn around the neck", + "example_sentence_english": "She wore a beautiful silver pendant.", + "pos": "noun", + "word_frequency": 11421 + }, + { + "word": "petite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a woman) attractively small and dainty", + "example_sentence_english": "The petite dancer moved gracefully across the stage.", + "pos": "adjective", + "word_frequency": 11422 + }, + { + "word": "pharma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the pharmaceutical industry", + "example_sentence_english": "The pharma industry invests heavily in research.", + "pos": "noun", + "word_frequency": 11423 + }, + { + "word": "pimp", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a man who controls prostitutes and arranges clients for them", + "example_sentence_english": "The police arrested the pimp for human trafficking.", + "pos": "noun", + "word_frequency": 11424 + }, + { + "word": "poise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "be or cause to be balanced or suspended", + "example_sentence_english": "She poised herself on the edge of the diving board.", + "pos": "verb", + "word_frequency": 11425 + }, + { + "word": "posterior", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "further back in position; of or nearer the rear or hind end", + "example_sentence_english": "The posterior part of the brain controls vision.", + "pos": "adjective", + "word_frequency": 11427 + }, + { + "word": "pouch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small bag or sack, typically made of leather or cloth, for carrying small articles", + "example_sentence_english": "Kangaroos carry their young in a pouch.", + "pos": "noun", + "word_frequency": 11428 + }, + { + "word": "proficiency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a high degree of skill; expertise", + "example_sentence_english": "He demonstrated great proficiency in several languages.", + "pos": "noun", + "word_frequency": 11429 + }, + { + "word": "protestor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who publicly demonstrates strong objection to something", + "example_sentence_english": "The protestors marched peacefully through the streets.", + "pos": "noun", + "word_frequency": 11430 + }, + { + "word": "psychotic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or suffering from a psychosis", + "example_sentence_english": "The character displayed psychotic tendencies.", + "pos": "adjective", + "word_frequency": 11431 + }, + { + "word": "relegation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of assigning to a lower position or rank", + "example_sentence_english": "The team faced relegation after a poor season.", + "pos": "noun", + "word_frequency": 11432 + }, + { + "word": "repertoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stock of plays, dances, or pieces that a company or performer is prepared to perform", + "example_sentence_english": "The singer has a wide repertoire of songs.", + "pos": "noun", + "word_frequency": 11433 + }, + { + "word": "repository", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place where things are stored; a person or thing regarded as a store of information or wisdom", + "example_sentence_english": "The library serves as a repository of knowledge.", + "pos": "noun", + "word_frequency": 11434 + }, + { + "word": "rumble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a continuous deep, resonant sound", + "example_sentence_english": "We heard a distant rumble of thunder.", + "pos": "noun", + "word_frequency": 11436 + }, + { + "word": "saloon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public room or building for a specified purpose, especially drinking", + "example_sentence_english": "The cowboys gathered in the old western saloon.", + "pos": "noun", + "word_frequency": 11438 + }, + { + "word": "shack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a roughly built hut or cabin", + "example_sentence_english": "They lived in a small wooden shack by the river.", + "pos": "noun", + "word_frequency": 11439 + }, + { + "word": "sinner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who sins", + "example_sentence_english": "The preacher spoke about the forgiveness of a sinner.", + "pos": "noun", + "word_frequency": 11440 + }, + { + "word": "sire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "male parent (of an animal); a respectful term for a king or lord", + "example_sentence_english": "The stallion was a magnificent sire of many champions.", + "pos": "noun", + "word_frequency": 11441 + }, + { + "word": "stale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "no longer fresh; unoriginal", + "example_sentence_english": "The bread was stale after sitting out all night.", + "pos": "adjective", + "word_frequency": 11442 + }, + { + "word": "sterile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free from bacteria; unable to produce offspring; lacking interest", + "example_sentence_english": "The surgical instruments must be kept sterile.", + "pos": "adjective", + "word_frequency": 11443 + }, + { + "word": "stride", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long step; a significant advance", + "example_sentence_english": "She walked with a confident stride.", + "pos": "noun", + "word_frequency": 11444 + }, + { + "word": "stringent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strict, precise, and exacting", + "example_sentence_english": "The company has stringent quality control standards.", + "pos": "adjective", + "word_frequency": 11445 + }, + { + "word": "sulfur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical element (S)", + "example_sentence_english": "Sulfur is known for its distinctive smell.", + "pos": "noun", + "word_frequency": 11446 + }, + { + "word": "torrent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong and fast-moving stream of water or other liquid; a sudden, violent outpouring", + "example_sentence_english": "A torrent of rain poured down during the storm.", + "pos": "noun", + "word_frequency": 11448 + }, + { + "word": "trainee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person undergoing training for a particular job or profession", + "example_sentence_english": "The new trainee is learning quickly.", + "pos": "noun", + "word_frequency": 11450 + }, + { + "word": "trough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow open receptacle for water or food for animals; a long, narrow depression", + "example_sentence_english": "The pigs ate from the wooden trough.", + "pos": "noun", + "word_frequency": 11452 + }, + { + "word": "tummy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stomach (informal)", + "example_sentence_english": "My tummy hurts after eating too much.", + "pos": "noun", + "word_frequency": 11453 + }, + { + "word": "unjust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not based on or behaving according to what is morally right and fair", + "example_sentence_english": "The decision felt completely unjust.", + "pos": "adjective", + "word_frequency": 11454 + }, + { + "word": "upbringing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the treatment and education received by a child during childhood", + "example_sentence_english": "Her strict upbringing made her very disciplined.", + "pos": "noun", + "word_frequency": 11455 + }, + { + "word": "wager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bet", + "example_sentence_english": "He placed a small wager on the horse race.", + "pos": "noun", + "word_frequency": 11461 + }, + { + "word": "whack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sharp blow or slap", + "example_sentence_english": "He gave the ball a good whack.", + "pos": "noun", + "word_frequency": 11462 + }, + { + "word": "accelerator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for increasing speed; a substance that speeds up a chemical reaction", + "example_sentence_english": "Press the accelerator to go faster.", + "pos": "noun", + "word_frequency": 11472 + }, + { + "word": "acrylic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a synthetic fiber or plastic material", + "example_sentence_english": "She painted the canvas with acrylic paints.", + "pos": "noun", + "word_frequency": 11473 + }, + { + "word": "anchorage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place where a ship can anchor; a secure base or support", + "example_sentence_english": "The boat found a safe anchorage in the bay.", + "pos": "noun", + "word_frequency": 11475 + }, + { + "word": "annexation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of annexing something, especially territory", + "example_sentence_english": "The annexation of the territory led to conflict.", + "pos": "noun", + "word_frequency": 11476 + }, + { + "word": "ascent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of rising or climbing", + "example_sentence_english": "The ascent of the mountain was challenging.", + "pos": "noun", + "word_frequency": 11477 + }, + { + "word": "ballad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a song or poem that tells a story", + "example_sentence_english": "The singer performed a beautiful folk ballad.", + "pos": "noun", + "word_frequency": 11479 + }, + { + "word": "bigotry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intolerance towards those different from oneself", + "example_sentence_english": "The community worked to overcome bigotry and promote understanding.", + "pos": "noun", + "word_frequency": 11484 + }, + { + "word": "biotechnology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of living systems and organisms to develop or make products", + "example_sentence_english": "Advances in biotechnology are transforming medicine and agriculture.", + "pos": "noun", + "word_frequency": 11485 + }, + { + "word": "bookstore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shop where books are sold", + "example_sentence_english": "I love spending hours browsing in a quiet bookstore.", + "pos": "noun", + "word_frequency": 11487 + }, + { + "word": "boomer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person born during a baby boom, especially one born in the years following World War II", + "example_sentence_english": "My grandparents are baby boomers, born in the 1950s.", + "pos": "noun", + "word_frequency": 11488 + }, + { + "word": "broom", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long-handled brush used for sweeping", + "example_sentence_english": "She used a broom to sweep the dust off the floor.", + "pos": "noun", + "word_frequency": 11490 + }, + { + "word": "brute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a savagely violent person or animal", + "example_sentence_english": "He was described as a brute for his cruel actions.", + "pos": "noun", + "word_frequency": 11492 + }, + { + "word": "camouflage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disguise or concealment, especially by means of paint, nets, or foliage", + "example_sentence_english": "The chameleon's skin provides excellent camouflage against the leaves.", + "pos": "noun", + "word_frequency": 11494 + }, + { + "word": "childbirth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of giving birth", + "example_sentence_english": "Modern medicine has made childbirth safer for mothers and babies.", + "pos": "noun", + "word_frequency": 11497 + }, + { + "word": "compliant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obedient; in accordance with rules", + "example_sentence_english": "The company aims to be fully compliant with environmental regulations.", + "pos": "adjective", + "word_frequency": 11499 + }, + { + "word": "conservatism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commitment to traditional values and ideas with opposition to change or innovation", + "example_sentence_english": "His political views are rooted in strong conservatism.", + "pos": "noun", + "word_frequency": 11500 + }, + { + "word": "continuum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a continuous sequence in which adjacent elements are not perceptibly different from each other, but the extremes are quite distinct", + "example_sentence_english": "The spectrum of light is a continuum of colors.", + "pos": "noun", + "word_frequency": 11501 + }, + { + "word": "corona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the outermost part of the sun's atmosphere; a crown-like structure", + "example_sentence_english": "During a total solar eclipse, the sun's corona becomes visible.", + "pos": "noun", + "word_frequency": 11502 + }, + { + "word": "cosplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the practice of dressing up as a character from a work of fiction", + "example_sentence_english": "Many fans enjoy creating elaborate cosplay costumes for comic conventions.", + "pos": "noun", + "word_frequency": 11503 + }, + { + "word": "cowardly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacking courage", + "example_sentence_english": "He was too cowardly to admit his mistake.", + "pos": "adjective", + "word_frequency": 11504 + }, + { + "word": "cpr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiopulmonary resuscitation", + "example_sentence_english": "Learning CPR can save a life in an emergency.", + "pos": "noun", + "word_frequency": 11505 + }, + { + "word": "dealership", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an authorized seller of goods, especially cars", + "example_sentence_english": "We visited the car dealership to look at new models.", + "pos": "noun", + "word_frequency": 11508 + }, + { + "word": "defy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "openly resist or refuse to obey", + "example_sentence_english": "The small country continued to defy the larger nation's demands.", + "pos": "verb", + "word_frequency": 11510 + }, + { + "word": "denote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be a sign of; indicate", + "example_sentence_english": "The red light denotes danger.", + "pos": "verb", + "word_frequency": 11512 + }, + { + "word": "devoid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirely lacking or free from", + "example_sentence_english": "The desert landscape was devoid of any vegetation.", + "pos": "adjective", + "word_frequency": 11513 + }, + { + "word": "disparity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a great difference", + "example_sentence_english": "There is a significant disparity between the rich and the poor in many countries.", + "pos": "noun", + "word_frequency": 11516 + }, + { + "word": "diva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a famous female singer; a temperamental person", + "example_sentence_english": "She was a talented singer, but her diva behavior made her difficult to work with.", + "pos": "noun", + "word_frequency": 11517 + }, + { + "word": "eater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who eats a particular type or amount of food", + "example_sentence_english": "He's a picky eater and doesn't like vegetables.", + "pos": "noun", + "word_frequency": 11519 + }, + { + "word": "elegance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grace and style", + "example_sentence_english": "Her dress had an air of timeless elegance.", + "pos": "noun", + "word_frequency": 11521 + }, + { + "word": "encrypt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convert into a code", + "example_sentence_english": "You should encrypt your data to protect it.", + "pos": "verb", + "word_frequency": 11523 + }, + { + "word": "englishman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man from England", + "example_sentence_english": "He is a proud Englishman, born and raised in London.", + "pos": "noun", + "word_frequency": 11524 + }, + { + "word": "facade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the front of a building; a deceptive outward appearance", + "example_sentence_english": "The old building had an impressive stone facade.", + "pos": "noun", + "word_frequency": 11525 + }, + { + "word": "farmhouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a house on a farm", + "example_sentence_english": "They decided to buy an old farmhouse in the countryside.", + "pos": "noun", + "word_frequency": 11526 + }, + { + "word": "fertilizer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "substance added to soil to improve plant growth", + "example_sentence_english": "The farmer spread fertilizer on the fields to help the crops grow.", + "pos": "noun", + "word_frequency": 11527 + }, + { + "word": "filler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance or thing used to fill a space or gap", + "example_sentence_english": "The dentist used a white filler to repair the tooth.", + "pos": "noun", + "word_frequency": 11528 + }, + { + "word": "flea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, wingless, jumping insect", + "example_sentence_english": "My dog had fleas, so we had to give him a special bath.", + "pos": "noun", + "word_frequency": 11529 + }, + { + "word": "footwear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "items of clothing worn on the feet", + "example_sentence_english": "Please remove your outdoor footwear before entering the house.", + "pos": "noun", + "word_frequency": 11530 + }, + { + "word": "goodie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a desirable or attractive item", + "example_sentence_english": "The children were excited to receive goodie bags at the party.", + "pos": "noun", + "word_frequency": 11534 + }, + { + "word": "handbag", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small bag carried by women", + "example_sentence_english": "She put her keys and phone into her handbag.", + "pos": "noun", + "word_frequency": 11536 + }, + { + "word": "handicapped", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a physical or mental disability", + "example_sentence_english": "The building has ramps for handicapped access.", + "pos": "adjective", + "word_frequency": 11537 + }, + { + "word": "haze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slight obscuration of the lower atmosphere; a state of mental confusion", + "example_sentence_english": "A thick haze hung over the city, reducing visibility.", + "pos": "noun", + "word_frequency": 11538 + }, + { + "word": "headquarter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have its main office or center in a particular place", + "example_sentence_english": "The company decided to headquarter its operations in New York.", + "pos": "verb", + "word_frequency": 11539 + }, + { + "word": "helium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light, colorless, odorless, inert gaseous element", + "example_sentence_english": "Balloons filled with helium float in the air.", + "pos": "noun", + "word_frequency": 11540 + }, + { + "word": "hemp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant of the cannabis family, used to make rope, cloth, and paper", + "example_sentence_english": "Hemp fibers are used to produce strong and durable textiles.", + "pos": "noun", + "word_frequency": 11541 + }, + { + "word": "hitch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a temporary difficulty or problem; a knot or loop", + "example_sentence_english": "We encountered a slight hitch in our plans, but it was quickly resolved.", + "pos": "noun", + "word_frequency": 11542 + }, + { + "word": "incarnation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who embodies in the flesh a deity or spirit; a particular form of something", + "example_sentence_english": "The new model is the latest incarnation of the classic car.", + "pos": "noun", + "word_frequency": 11546 + }, + { + "word": "inhibitor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance that slows down or prevents a process", + "example_sentence_english": "The drug acts as an inhibitor, blocking the enzyme's activity.", + "pos": "noun", + "word_frequency": 11547 + }, + { + "word": "intrusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of intruding; an unwelcome entry", + "example_sentence_english": "She felt the constant media attention was an unwelcome intrusion into her private life.", + "pos": "noun", + "word_frequency": 11548 + }, + { + "word": "inverse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposite or contrary in position, direction, order, or effect", + "example_sentence_english": "There is an inverse relationship between price and demand.", + "pos": "adjective", + "word_frequency": 11549 + }, + { + "word": "invert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn upside down or inside out", + "example_sentence_english": "He inverted the glass to let it dry.", + "pos": "verb", + "word_frequency": 11550 + }, + { + "word": "irritation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being annoyed, impatient, or angry; a feeling of soreness or discomfort", + "example_sentence_english": "The constant noise caused her a great deal of irritation.", + "pos": "noun", + "word_frequency": 11551 + }, + { + "word": "keyword", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a word or phrase that is significant or important", + "example_sentence_english": "When searching online, use relevant keywords to get better results.", + "pos": "noun", + "word_frequency": 11554 + }, + { + "word": "lavish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sumptuously rich, elaborate, or luxurious; very generous", + "example_sentence_english": "They threw a lavish party with hundreds of guests and expensive decorations.", + "pos": "adjective", + "word_frequency": 11555 + }, + { + "word": "libyan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Libya", + "example_sentence_english": "The Libyan delegation arrived for the peace talks.", + "pos": "noun", + "word_frequency": 11556 + }, + { + "word": "livelihood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a means of securing the necessities of life", + "example_sentence_english": "Farming is the main livelihood for many people in this region.", + "pos": "noun", + "word_frequency": 11557 + }, + { + "word": "medic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medical professional; paramedic", + "example_sentence_english": "The medic quickly attended to the injured runner.", + "pos": "noun", + "word_frequency": 11561 + }, + { + "word": "miscellaneous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consisting of various kinds; mixed", + "example_sentence_english": "The box contained a miscellaneous collection of old toys.", + "pos": "adjective", + "word_frequency": 11563 + }, + { + "word": "misguide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lead wrongly", + "example_sentence_english": "Don't let fear misguide your decisions.", + "pos": "verb", + "word_frequency": 11564 + }, + { + "word": "muster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gathering, especially of troops", + "example_sentence_english": "The general called for a muster of all available soldiers.", + "pos": "noun", + "word_frequency": 11568 + }, + { + "word": "nylon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong, synthetic material", + "example_sentence_english": "These stockings are made of durable nylon.", + "pos": "noun", + "word_frequency": 11570 + }, + { + "word": "override", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of canceling or nullifying", + "example_sentence_english": "The committee voted for an override of the mayor's veto.", + "pos": "noun", + "word_frequency": 11571 + }, + { + "word": "ozone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a form of oxygen in the atmosphere", + "example_sentence_english": "The ozone layer protects us from harmful UV radiation.", + "pos": "noun", + "word_frequency": 11572 + }, + { + "word": "paranoia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mental condition characterized by delusions of persecution", + "example_sentence_english": "His paranoia made him believe everyone was watching him.", + "pos": "noun", + "word_frequency": 11574 + }, + { + "word": "persecute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to harass or oppress, especially for beliefs", + "example_sentence_english": "Historically, many groups have been persecuted for their religious beliefs.", + "pos": "verb", + "word_frequency": 11575 + }, + { + "word": "phosphate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a salt or ester of phosphoric acid", + "example_sentence_english": "Phosphate is an essential nutrient for plant growth.", + "pos": "noun", + "word_frequency": 11577 + }, + { + "word": "physicist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a scientist who studies physics", + "example_sentence_english": "Albert Einstein was a renowned theoretical physicist.", + "pos": "noun", + "word_frequency": 11579 + }, + { + "word": "plurality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being plural; a larger number", + "example_sentence_english": "In the election, the candidate won a plurality of the votes, but not a majority.", + "pos": "noun", + "word_frequency": 11580 + }, + { + "word": "prehistoric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the period before written records", + "example_sentence_english": "Dinosaurs lived in prehistoric times.", + "pos": "adjective", + "word_frequency": 11581 + }, + { + "word": "pronoun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a word that can replace a noun", + "example_sentence_english": "In the sentence 'She ran fast,' 'she' is a pronoun.", + "pos": "noun", + "word_frequency": 11583 + }, + { + "word": "proton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stable subatomic particle with a positive charge", + "example_sentence_english": "A proton is found in the nucleus of an atom.", + "pos": "noun", + "word_frequency": 11584 + }, + { + "word": "psyche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the human soul, mind, or spirit", + "example_sentence_english": "The experience had a profound effect on her psyche.", + "pos": "noun", + "word_frequency": 11585 + }, + { + "word": "redesign", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a revised design or plan", + "example_sentence_english": "The company announced a complete redesign of its logo.", + "pos": "noun", + "word_frequency": 11586 + }, + { + "word": "reluctance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwillingness or hesitation", + "example_sentence_english": "There was a noticeable reluctance among the team to accept the new rules.", + "pos": "noun", + "word_frequency": 11587 + }, + { + "word": "replication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of copying or reproducing something", + "example_sentence_english": "The experiment's results require careful replication to confirm their validity.", + "pos": "noun", + "word_frequency": 11588 + }, + { + "word": "rotor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rotating part of a machine", + "example_sentence_english": "The helicopter's main rotor began to spin rapidly.", + "pos": "noun", + "word_frequency": 11589 + }, + { + "word": "sediment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matter that settles to the bottom of a liquid", + "example_sentence_english": "The river carried a lot of sediment after the heavy rain.", + "pos": "noun", + "word_frequency": 11590 + }, + { + "word": "solitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being alone", + "example_sentence_english": "She enjoyed the peace and solitude of the quiet cabin.", + "pos": "noun", + "word_frequency": 11591 + }, + { + "word": "standby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of readiness or waiting", + "example_sentence_english": "The emergency services are on standby for the storm.", + "pos": "noun", + "word_frequency": 11592 + }, + { + "word": "stronghold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fortified place; a center of support", + "example_sentence_english": "The ancient castle served as a powerful stronghold against invaders.", + "pos": "noun", + "word_frequency": 11594 + }, + { + "word": "theorist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who develops theories", + "example_sentence_english": "She is a leading theorist in the field of quantum physics.", + "pos": "noun", + "word_frequency": 11596 + }, + { + "word": "therein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in that place, document, or respect", + "example_sentence_english": "The contract outlines the terms, and therein lies the problem.", + "pos": "adverb", + "word_frequency": 11598 + }, + { + "word": "triangular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having the shape of a triangle", + "example_sentence_english": "The road sign had a triangular shape.", + "pos": "adjective", + "word_frequency": 11599 + }, + { + "word": "trooper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soldier in a cavalry or armored unit; a state police officer", + "example_sentence_english": "The state trooper pulled over the speeding car.", + "pos": "noun", + "word_frequency": 11600 + }, + { + "word": "truthful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telling or expressing the truth; honest", + "example_sentence_english": "She gave a truthful account of what happened.", + "pos": "adjective", + "word_frequency": 11601 + }, + { + "word": "turret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small tower on top of a larger tower or at the corner of a building or wall", + "example_sentence_english": "The castle had several turrets overlooking the valley.", + "pos": "noun", + "word_frequency": 11602 + }, + { + "word": "ubiquitous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "present, appearing, or found everywhere", + "example_sentence_english": "Mobile phones are now ubiquitous.", + "pos": "adjective", + "word_frequency": 11603 + }, + { + "word": "unconventional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not based on or conforming to what is generally done or believed", + "example_sentence_english": "His unconventional approach to problem-solving often yielded surprising results.", + "pos": "adjective", + "word_frequency": 11604 + }, + { + "word": "unnoticed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not observed or detected", + "example_sentence_english": "He slipped out of the room unnoticed.", + "pos": "adjective", + "word_frequency": 11605 + }, + { + "word": "untouched", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not handled, used, or eaten", + "example_sentence_english": "The food on her plate remained untouched.", + "pos": "adjective", + "word_frequency": 11606 + }, + { + "word": "visionary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thinking about or planning the future with imagination or wisdom", + "example_sentence_english": "Steve Jobs was a visionary leader in the tech industry.", + "pos": "adjective", + "word_frequency": 11612 + }, + { + "word": "voodoo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Black religious cult practiced in the Caribbean and the southern US, combining elements of Roman Catholic ritual with traditional African magical and religious rites", + "example_sentence_english": "Some people believe in voodoo magic.", + "pos": "noun", + "word_frequency": 11614 + }, + { + "word": "witchcraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the practice of magic, especially black magic; the use of spells and the invocation of spirits", + "example_sentence_english": "In ancient times, some people were accused of witchcraft.", + "pos": "noun", + "word_frequency": 11617 + }, + { + "word": "adultery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voluntary sexual intercourse between a married person and a person who is not their spouse", + "example_sentence_english": "The divorce was granted on the grounds of adultery.", + "pos": "noun", + "word_frequency": 11621 + }, + { + "word": "agile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to move quickly and easily", + "example_sentence_english": "The agile gymnast performed a perfect routine.", + "pos": "adjective", + "word_frequency": 11622 + }, + { + "word": "austerity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sternness or severity of manner or attitude; difficult economic conditions created by government measures to reduce public expenditure", + "example_sentence_english": "The government introduced austerity measures to reduce the national debt.", + "pos": "noun", + "word_frequency": 11624 + }, + { + "word": "bouquet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an attractively arranged bunch of flowers", + "example_sentence_english": "He gave her a beautiful bouquet of roses.", + "pos": "noun", + "word_frequency": 11628 + }, + { + "word": "bullock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a young bull", + "example_sentence_english": "The farmer used a bullock to pull the plow.", + "pos": "noun", + "word_frequency": 11630 + }, + { + "word": "cad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a man who behaves dishonorably, especially toward a woman", + "example_sentence_english": "He was a cad for leaving her stranded.", + "pos": "noun", + "word_frequency": 11631 + }, + { + "word": "candidacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being a candidate for an office or position", + "example_sentence_english": "Her candidacy for mayor was announced last week.", + "pos": "noun", + "word_frequency": 11632 + }, + { + "word": "clubhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a building or room used by a club or society", + "example_sentence_english": "The golf players gathered at the clubhouse after their game.", + "pos": "noun", + "word_frequency": 11633 + }, + { + "word": "coarse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rough or loose in texture or grain; (of a person or their speech) rude, crude, or vulgar", + "example_sentence_english": "The fabric felt coarse against her skin.", + "pos": "adjective", + "word_frequency": 11634 + }, + { + "word": "collegiate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or relating to a college or its students", + "example_sentence_english": "He enjoyed the collegiate atmosphere of the university.", + "pos": "adjective", + "word_frequency": 11635 + }, + { + "word": "commonplace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a usual or ordinary thing", + "example_sentence_english": "Smartphones have become a commonplace item in daily life.", + "pos": "noun", + "word_frequency": 11636 + }, + { + "word": "constrain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compel or force (someone) to follow a particular course of action; restrict or limit", + "example_sentence_english": "Budget limitations constrain our ability to expand.", + "pos": "verb", + "word_frequency": 11638 + }, + { + "word": "converter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or program that changes something from one form to another", + "example_sentence_english": "You might need a currency converter when traveling abroad.", + "pos": "noun", + "word_frequency": 11639 + }, + { + "word": "coop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cage or pen for poultry", + "example_sentence_english": "The farmer built a new chicken coop for his hens.", + "pos": "noun", + "word_frequency": 11640 + }, + { + "word": "coronary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the heart, especially the coronary arteries", + "example_sentence_english": "He suffered a coronary thrombosis.", + "pos": "adjective", + "word_frequency": 11641 + }, + { + "word": "crook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a criminal or a bend/hook", + "example_sentence_english": "The police caught the crook who stole the car.", + "pos": "noun", + "word_frequency": 11643 + }, + { + "word": "cucumber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long, green-skinned fruit, eaten as a vegetable", + "example_sentence_english": "She added slices of cucumber to her salad.", + "pos": "noun", + "word_frequency": 11644 + }, + { + "word": "cupcake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small cake baked in a cup-shaped foil or paper container", + "example_sentence_english": "The children decorated their cupcakes with sprinkles.", + "pos": "noun", + "word_frequency": 11645 + }, + { + "word": "directorate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a body of directors", + "example_sentence_english": "The directorate approved the new policy.", + "pos": "noun", + "word_frequency": 11648 + }, + { + "word": "dormant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inactive or asleep", + "example_sentence_english": "The volcano has been dormant for centuries.", + "pos": "adjective", + "word_frequency": 11650 + }, + { + "word": "emulate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to match or surpass (a person or achievement), typically by imitation", + "example_sentence_english": "She tried to emulate her older sister's success.", + "pos": "verb", + "word_frequency": 11653 + }, + { + "word": "encompass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to surround and have or hold within", + "example_sentence_english": "The study will encompass all aspects of the problem.", + "pos": "verb", + "word_frequency": 11654 + }, + { + "word": "endow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to provide with a quality, ability, or asset", + "example_sentence_english": "Nature endowed her with great musical talent.", + "pos": "verb", + "word_frequency": 11655 + }, + { + "word": "enquiry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of asking for information", + "example_sentence_english": "We received an enquiry about our new product.", + "pos": "noun", + "word_frequency": 11656 + }, + { + "word": "evasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of evading something", + "example_sentence_english": "His tax evasion led to serious legal trouble.", + "pos": "noun", + "word_frequency": 11657 + }, + { + "word": "evergreen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plant that retains its leaves throughout the year", + "example_sentence_english": "Pine trees are evergreens, keeping their needles all winter.", + "pos": "noun", + "word_frequency": 11658 + }, + { + "word": "eviction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of expelling someone from a property", + "example_sentence_english": "The family faced eviction after failing to pay rent.", + "pos": "noun", + "word_frequency": 11659 + }, + { + "word": "expulsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of forcing someone to leave an organization or place", + "example_sentence_english": "His bad behavior led to his expulsion from school.", + "pos": "noun", + "word_frequency": 11660 + }, + { + "word": "filth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foul or dirty matter", + "example_sentence_english": "The room was covered in filth and dust.", + "pos": "noun", + "word_frequency": 11662 + }, + { + "word": "foliage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plant leaves, collectively", + "example_sentence_english": "The autumn foliage in the mountains was beautiful.", + "pos": "noun", + "word_frequency": 11664 + }, + { + "word": "foreclosure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of taking possession of a mortgaged property when the mortgagor fails to keep up their mortgage payments", + "example_sentence_english": "Many homes went into foreclosure during the economic crisis.", + "pos": "noun", + "word_frequency": 11665 + }, + { + "word": "fortnight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of two weeks", + "example_sentence_english": "I'll be away on holiday for a fortnight.", + "pos": "noun", + "word_frequency": 11666 + }, + { + "word": "genie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a spirit of Arabian folklore, typically trapped in a lamp or bottle", + "example_sentence_english": "Aladdin rubbed the lamp and a genie appeared.", + "pos": "noun", + "word_frequency": 11669 + }, + { + "word": "goo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sticky, viscous, or messy substance", + "example_sentence_english": "The spilled syrup turned into a sticky goo on the counter.", + "pos": "noun", + "word_frequency": 11671 + }, + { + "word": "heartbroken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelmed by sorrow or grief", + "example_sentence_english": "She was heartbroken when her pet dog died.", + "pos": "adjective", + "word_frequency": 11674 + }, + { + "word": "helper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who helps someone else", + "example_sentence_english": "My little brother was a great helper in the kitchen.", + "pos": "noun", + "word_frequency": 11675 + }, + { + "word": "hesitant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tentative, unsure, or slow in acting or speaking", + "example_sentence_english": "He was hesitant to accept the new job offer.", + "pos": "adjective", + "word_frequency": 11676 + }, + { + "word": "hubby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informal term for husband", + "example_sentence_english": "My hubby and I are going out for dinner tonight.", + "pos": "noun", + "word_frequency": 11678 + }, + { + "word": "hypertension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abnormally high blood pressure", + "example_sentence_english": "The doctor diagnosed him with hypertension.", + "pos": "noun", + "word_frequency": 11679 + }, + { + "word": "immerse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to involve deeply; to submerge", + "example_sentence_english": "She decided to immerse herself in her studies.", + "pos": "verb", + "word_frequency": 11680 + }, + { + "word": "immortality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of living forever", + "example_sentence_english": "Many ancient myths speak of the quest for immortality.", + "pos": "noun", + "word_frequency": 11681 + }, + { + "word": "insightful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing a clear understanding of a complex situation", + "example_sentence_english": "Her insightful comments helped us understand the problem better.", + "pos": "adjective", + "word_frequency": 11682 + }, + { + "word": "irrespective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without considering; regardless of", + "example_sentence_english": "The rules apply to everyone, irrespective of their position.", + "pos": "adjective", + "word_frequency": 11685 + }, + { + "word": "kicker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who kicks (especially in sports); a surprising or significant element", + "example_sentence_english": "The kicker scored the winning field goal.", + "pos": "noun", + "word_frequency": 11687 + }, + { + "word": "ledge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a narrow flat projection from a wall or cliff", + "example_sentence_english": "The bird built its nest on a narrow ledge.", + "pos": "noun", + "word_frequency": 11689 + }, + { + "word": "malt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grain (usually barley) that has been steeped, germinated, and dried", + "example_sentence_english": "Malt is a key ingredient in beer production.", + "pos": "noun", + "word_frequency": 11696 + }, + { + "word": "mindfulness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being conscious or aware of something", + "example_sentence_english": "Practicing mindfulness can reduce stress.", + "pos": "noun", + "word_frequency": 11700 + }, + { + "word": "moderator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who presides over a discussion or meeting", + "example_sentence_english": "The moderator kept the debate fair and orderly.", + "pos": "noun", + "word_frequency": 11702 + }, + { + "word": "momma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mother (informal)", + "example_sentence_english": "My momma always told me to be kind.", + "pos": "noun", + "word_frequency": 11703 + }, + { + "word": "monstrous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horrifyingly wicked; enormous", + "example_sentence_english": "The company was accused of monstrous greed.", + "pos": "adjective", + "word_frequency": 11704 + }, + { + "word": "morphology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of the forms of things", + "example_sentence_english": "In linguistics, morphology is the study of word structure.", + "pos": "noun", + "word_frequency": 11706 + }, + { + "word": "mustache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strip of hair growing above the upper lip", + "example_sentence_english": "He decided to grow a mustache for Movember.", + "pos": "noun", + "word_frequency": 11707 + }, + { + "word": "natal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the place or time of one's birth", + "example_sentence_english": "Her natal country was Brazil.", + "pos": "adjective", + "word_frequency": 11709 + }, + { + "word": "novice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person new to a field or activity", + "example_sentence_english": "He is still a novice at playing the guitar.", + "pos": "noun", + "word_frequency": 11710 + }, + { + "word": "obituary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a notice of a death, especially in a newspaper", + "example_sentence_english": "I read his obituary in the local newspaper.", + "pos": "noun", + "word_frequency": 11711 + }, + { + "word": "ordination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of ordaining or conferring holy orders", + "example_sentence_english": "His ordination as a priest took place last Sunday.", + "pos": "noun", + "word_frequency": 11713 + }, + { + "word": "parity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or condition of being equal", + "example_sentence_english": "The company aims for wage parity between male and female employees.", + "pos": "noun", + "word_frequency": 11715 + }, + { + "word": "persuasive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "good at persuading someone to do or believe something", + "example_sentence_english": "She made a very persuasive argument for her proposal.", + "pos": "adjective", + "word_frequency": 11717 + }, + { + "word": "pew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long bench with a back, used for seating in a church", + "example_sentence_english": "We sat in the front pew during the wedding ceremony.", + "pos": "noun", + "word_frequency": 11718 + }, + { + "word": "populous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a large population", + "example_sentence_english": "China is the most populous country in the world.", + "pos": "adjective", + "word_frequency": 11720 + }, + { + "word": "postwar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "after a war", + "example_sentence_english": "The country experienced rapid economic growth in the postwar period.", + "pos": "adjective", + "word_frequency": 11721 + }, + { + "word": "proactive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creating or controlling a situation rather than just responding to it", + "example_sentence_english": "She took a proactive approach to her career, seeking out new opportunities.", + "pos": "adjective", + "word_frequency": 11722 + }, + { + "word": "projector", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device that projects an image onto a screen", + "example_sentence_english": "The teacher used a projector to display the presentation slides.", + "pos": "noun", + "word_frequency": 11724 + }, + { + "word": "prudent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acting with or showing care and thought for the future", + "example_sentence_english": "It was a prudent decision to save money for retirement.", + "pos": "adjective", + "word_frequency": 11725 + }, + { + "word": "qualifier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or team that qualifies for a competition; a word or phrase that qualifies another", + "example_sentence_english": "The team won their last match and became a qualifier for the championship.", + "pos": "noun", + "word_frequency": 11726 + }, + { + "word": "ratify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sign or give formal consent to (a treaty, contract, or agreement), making it officially valid", + "example_sentence_english": "The member states need to ratify the new treaty.", + "pos": "verb", + "word_frequency": 11728 + }, + { + "word": "reliant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependent on someone or something", + "example_sentence_english": "Many small businesses are reliant on government support.", + "pos": "adjective", + "word_frequency": 11729 + }, + { + "word": "reputable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a good reputation", + "example_sentence_english": "Always choose a reputable company for home repairs.", + "pos": "adjective", + "word_frequency": 11730 + }, + { + "word": "revolver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of handgun", + "example_sentence_english": "The police officer drew his revolver from its holster.", + "pos": "noun", + "word_frequency": 11731 + }, + { + "word": "revolve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move in a circle on a central axis; consider something from all angles", + "example_sentence_english": "The Earth revolves around the Sun.", + "pos": "verb", + "word_frequency": 11732 + }, + { + "word": "rink", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an area of ice or a floor for skating", + "example_sentence_english": "We went ice skating at the local rink.", + "pos": "noun", + "word_frequency": 11734 + }, + { + "word": "ripple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small wave or series of waves on the surface of water", + "example_sentence_english": "A stone thrown into the pond created ripples.", + "pos": "noun", + "word_frequency": 11735 + }, + { + "word": "robber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who robs", + "example_sentence_english": "The police caught the robber after a chase.", + "pos": "noun", + "word_frequency": 11736 + }, + { + "word": "sentinel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soldier or guard whose job is to stand and keep watch", + "example_sentence_english": "The sentinel stood motionless at the gate.", + "pos": "noun", + "word_frequency": 11738 + }, + { + "word": "solemn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formal and dignified; serious", + "example_sentence_english": "The atmosphere in the church was very solemn.", + "pos": "adjective", + "word_frequency": 11740 + }, + { + "word": "spacious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having ample space", + "example_sentence_english": "The new apartment has a very spacious living room.", + "pos": "adjective", + "word_frequency": 11742 + }, + { + "word": "substantive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a firm basis in reality and therefore important, meaningful, or considerable", + "example_sentence_english": "We need to have a substantive discussion about the budget.", + "pos": "adjective", + "word_frequency": 11745 + }, + { + "word": "substitution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of replacing someone or something with another", + "example_sentence_english": "The coach made a substitution in the second half of the game.", + "pos": "noun", + "word_frequency": 11746 + }, + { + "word": "torso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the trunk of the human body", + "example_sentence_english": "The artist sculpted the figure's torso in clay.", + "pos": "noun", + "word_frequency": 11749 + }, + { + "word": "tumble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fall suddenly, clumsily, or headlong", + "example_sentence_english": "The child began to tumble down the stairs.", + "pos": "verb", + "word_frequency": 11751 + }, + { + "word": "unpublished", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not yet published", + "example_sentence_english": "She has several unpublished novels in her drawer.", + "pos": "adjective", + "word_frequency": 11752 + }, + { + "word": "untrue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not true or false", + "example_sentence_english": "The rumors circulating about him were completely untrue.", + "pos": "adjective", + "word_frequency": 11753 + }, + { + "word": "vitality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being strong and active; energy", + "example_sentence_english": "The old man still possessed remarkable vitality.", + "pos": "noun", + "word_frequency": 11754 + }, + { + "word": "wc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "water closet; toilet", + "example_sentence_english": "Could you tell me where the WC is?", + "pos": "noun", + "word_frequency": 11755 + }, + { + "word": "weep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shed tears; cry", + "example_sentence_english": "She began to weep silently after hearing the sad news.", + "pos": "verb", + "word_frequency": 11756 + }, + { + "word": "windshield", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the front window of a car", + "example_sentence_english": "The rain was so heavy I could barely see through the windshield.", + "pos": "noun", + "word_frequency": 11757 + }, + { + "word": "zodiac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a belt of the heavens within which are the apparent paths of the sun, moon, and major planets", + "example_sentence_english": "What's your zodiac sign?", + "pos": "noun", + "word_frequency": 11759 + }, + { + "word": "abandonment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of leaving a place, person, or thing permanently", + "example_sentence_english": "The abandonment of the old factory led to its decay.", + "pos": "noun", + "word_frequency": 11763 + }, + { + "word": "abyss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a deep or seemingly bottomless chasm", + "example_sentence_english": "He stared into the dark abyss, feeling a sense of dread.", + "pos": "noun", + "word_frequency": 11764 + }, + { + "word": "accession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the attainment or acquisition of a position of power or high office", + "example_sentence_english": "The queen's accession to the throne was celebrated across the country.", + "pos": "noun", + "word_frequency": 11765 + }, + { + "word": "arithmetic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the branch of mathematics dealing with the properties and manipulation of numbers", + "example_sentence_english": "Basic arithmetic skills are essential for everyday life.", + "pos": "noun", + "word_frequency": 11770 + }, + { + "word": "arson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the criminal act of deliberately setting fire to property", + "example_sentence_english": "The police are investigating the fire as a case of arson.", + "pos": "noun", + "word_frequency": 11771 + }, + { + "word": "astronomer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a scientist who studies astronomy", + "example_sentence_english": "The astronomer discovered a new galaxy.", + "pos": "noun", + "word_frequency": 11772 + }, + { + "word": "authoritative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be trusted as being accurate or true; commanding and self-confident", + "example_sentence_english": "She spoke in an authoritative tone, leaving no room for doubt.", + "pos": "adjective", + "word_frequency": 11773 + }, + { + "word": "barren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too poor to produce much or any vegetation; bleak and lifeless", + "example_sentence_english": "The barren landscape stretched for miles under the scorching sun.", + "pos": "adjective", + "word_frequency": 11774 + }, + { + "word": "basal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forming or belonging to a base or foundation; fundamental", + "example_sentence_english": "The basal metabolic rate indicates the energy needed for basic bodily functions.", + "pos": "adjective", + "word_frequency": 11775 + }, + { + "word": "batsman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who bats in baseball or cricket", + "example_sentence_english": "The opening batsman scored a century in the first innings.", + "pos": "noun", + "word_frequency": 11776 + }, + { + "word": "bedding", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sheets, blankets, and other coverings for a bed", + "example_sentence_english": "She changed the bedding on the bed every week.", + "pos": "noun", + "word_frequency": 11777 + }, + { + "word": "bender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prolonged period of drinking alcohol", + "example_sentence_english": "He went on a weekend bender after finishing his exams.", + "pos": "noun", + "word_frequency": 11778 + }, + { + "word": "bourgeois", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or characteristic of the middle class, typically with reference to its perceived materialistic values or conventional attitudes", + "example_sentence_english": "He criticized the bourgeois values of his parents.", + "pos": "adjective", + "word_frequency": 11781 + }, + { + "word": "bribery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the giving or offering of a bribe", + "example_sentence_english": "The politician was accused of bribery and corruption.", + "pos": "noun", + "word_frequency": 11782 + }, + { + "word": "brunette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woman or girl with dark brown hair", + "example_sentence_english": "The actress is a natural brunette.", + "pos": "noun", + "word_frequency": 11783 + }, + { + "word": "bureaucratic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a bureaucracy or bureaucrat; excessively complicated administrative procedure", + "example_sentence_english": "The process was slow and bureaucratic, requiring many forms.", + "pos": "adjective", + "word_frequency": 11784 + }, + { + "word": "buzzer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an electrical device that makes a buzzing sound", + "example_sentence_english": "Press the buzzer to open the door.", + "pos": "noun", + "word_frequency": 11785 + }, + { + "word": "cactus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a succulent plant with a thick, fleshy stem and typically no leaves, usually bearing spines", + "example_sentence_english": "The desert is home to many types of cactus.", + "pos": "noun", + "word_frequency": 11786 + }, + { + "word": "cassette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a compact case containing a length of magnetic tape, used for recording and playing back sound or video", + "example_sentence_english": "He found an old music cassette in the attic.", + "pos": "noun", + "word_frequency": 11788 + }, + { + "word": "characterise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "describe the distinctive nature or features of", + "example_sentence_english": "His honesty characterises his approach to business.", + "pos": "verb", + "word_frequency": 11789 + }, + { + "word": "childcare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the care of children, especially while parents are working", + "example_sentence_english": "Finding affordable childcare is a challenge for many families.", + "pos": "noun", + "word_frequency": 11790 + }, + { + "word": "chronological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starting with the earliest and following the order in which they occurred", + "example_sentence_english": "Please list the events in chronological order.", + "pos": "adjective", + "word_frequency": 11791 + }, + { + "word": "cleavage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a division or schism; the hollow between a woman's breasts", + "example_sentence_english": "There is a clear cleavage between the two political parties on this issue.", + "pos": "noun", + "word_frequency": 11792 + }, + { + "word": "cohort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of people banded together or treated as a group", + "example_sentence_english": "The study followed a cohort of students from elementary school through college.", + "pos": "noun", + "word_frequency": 11793 + }, + { + "word": "commandment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a divine rule, especially one of the Ten Commandments", + "example_sentence_english": "Thou shalt not steal is a well-known commandment.", + "pos": "noun", + "word_frequency": 11794 + }, + { + "word": "condense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (something) denser or more concentrated; express (a speech or text) in fewer words", + "example_sentence_english": "The fog began to condense into droplets on the leaves.", + "pos": "verb", + "word_frequency": 11795 + }, + { + "word": "convene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "call people together for a meeting; assemble", + "example_sentence_english": "The committee will convene next week to discuss the proposals.", + "pos": "verb", + "word_frequency": 11796 + }, + { + "word": "cuddle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hold (someone or something) close in one's arms as a way of showing affection or for comfort", + "example_sentence_english": "The child wanted to cuddle with her teddy bear.", + "pos": "verb", + "word_frequency": 11797 + }, + { + "word": "culprit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is responsible for a crime or other misdeed", + "example_sentence_english": "The police are still searching for the culprit behind the robbery.", + "pos": "noun", + "word_frequency": 11798 + }, + { + "word": "daunting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidating, challenging", + "example_sentence_english": "The task seemed daunting at first, but we managed to complete it.", + "pos": "adjective", + "word_frequency": 11800 + }, + { + "word": "deviation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a departure from the usual or accepted standard", + "example_sentence_english": "Any deviation from the plan must be reported immediately.", + "pos": "noun", + "word_frequency": 11801 + }, + { + "word": "diffusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the spreading of something more widely", + "example_sentence_english": "The diffusion of new technologies can take many years.", + "pos": "noun", + "word_frequency": 11802 + }, + { + "word": "dildo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sex toy", + "example_sentence_english": "The adult store sold various types of dildos.", + "pos": "noun", + "word_frequency": 11803 + }, + { + "word": "distrust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lack of trust", + "example_sentence_english": "There was a growing distrust between the two political parties.", + "pos": "noun", + "word_frequency": 11804 + }, + { + "word": "entrepreneurial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an entrepreneur or entrepreneurship", + "example_sentence_english": "She has a strong entrepreneurial spirit and is always starting new projects.", + "pos": "adjective", + "word_frequency": 11806 + }, + { + "word": "ether", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a colorless, volatile, flammable liquid; the upper regions of air", + "example_sentence_english": "The patient was given ether as an anesthetic.", + "pos": "noun", + "word_frequency": 11807 + }, + { + "word": "etiquette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the customary code of polite behavior in society or among members of a particular profession or group", + "example_sentence_english": "Dining etiquette varies greatly between cultures.", + "pos": "noun", + "word_frequency": 11808 + }, + { + "word": "extravagant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking restraint in spending money or using resources", + "example_sentence_english": "They lived an extravagant lifestyle, spending money without much thought.", + "pos": "adjective", + "word_frequency": 11809 + }, + { + "word": "familiarity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "close acquaintance with or knowledge of something", + "example_sentence_english": "His familiarity with the local customs helped him adapt quickly.", + "pos": "noun", + "word_frequency": 11810 + }, + { + "word": "fender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a guard over the wheel of a vehicle; a type of guitar", + "example_sentence_english": "The car's fender was dented in the accident.", + "pos": "noun", + "word_frequency": 11812 + }, + { + "word": "fetal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a fetus", + "example_sentence_english": "The doctor monitored the fetal heartbeat during the pregnancy.", + "pos": "adjective", + "word_frequency": 11815 + }, + { + "word": "fiance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man to whom one is engaged to be married", + "example_sentence_english": "My fiance and I are planning our wedding for next year.", + "pos": "noun", + "word_frequency": 11816 + }, + { + "word": "gorge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a narrow valley between hills or mountains, typically with steep rocky walls and a stream running through it", + "example_sentence_english": "The river carved a deep gorge through the mountains.", + "pos": "noun", + "word_frequency": 11819 + }, + { + "word": "harp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a musical instrument", + "example_sentence_english": "She learned to play the harp when she was young.", + "pos": "noun", + "word_frequency": 11822 + }, + { + "word": "heartfelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deeply felt; sincere", + "example_sentence_english": "He offered a heartfelt apology for his mistake.", + "pos": "adjective", + "word_frequency": 11824 + }, + { + "word": "hoodie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a hooded sweatshirt", + "example_sentence_english": "She put on her favorite hoodie because it was cold.", + "pos": "noun", + "word_frequency": 11825 + }, + { + "word": "housewife", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woman whose main occupation is managing a household", + "example_sentence_english": "My grandmother was a housewife for most of her life.", + "pos": "noun", + "word_frequency": 11826 + }, + { + "word": "hypocrite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who pretends to have virtues, moral or religious beliefs, principles, etc., that he or she does not actually possess", + "example_sentence_english": "He called his opponent a hypocrite for saying one thing and doing another.", + "pos": "noun", + "word_frequency": 11827 + }, + { + "word": "incorporation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the inclusion of something as part of a whole; the formation of a company", + "example_sentence_english": "The incorporation of new features improved the software significantly.", + "pos": "noun", + "word_frequency": 11828 + }, + { + "word": "joyful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling, expressing, or causing great pleasure and happiness", + "example_sentence_english": "The children's faces were joyful as they opened their presents.", + "pos": "adjective", + "word_frequency": 11829 + }, + { + "word": "kickoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the start of a football game; the beginning of an event", + "example_sentence_english": "The kickoff for the game is at 7 PM.", + "pos": "noun", + "word_frequency": 11833 + }, + { + "word": "lacrosse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a team sport", + "example_sentence_english": "Lacrosse is a fast-paced sport played with a stick and a ball.", + "pos": "noun", + "word_frequency": 11835 + }, + { + "word": "latex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a milky fluid from rubber trees; a type of synthetic rubber", + "example_sentence_english": "Many gloves are made from latex.", + "pos": "noun", + "word_frequency": 11837 + }, + { + "word": "leftover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food remaining after a meal", + "example_sentence_english": "We had chicken and rice for dinner, and there were plenty of leftovers.", + "pos": "noun", + "word_frequency": 11838 + }, + { + "word": "legalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of making something lawful", + "example_sentence_english": "The debate over the legalization of certain substances continues.", + "pos": "noun", + "word_frequency": 11839 + }, + { + "word": "localize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adapt a product or service to a particular country or region", + "example_sentence_english": "We need to localize the software for the Japanese market.", + "pos": "verb", + "word_frequency": 11841 + }, + { + "word": "lori", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of small, brightly colored parrot", + "example_sentence_english": "The lori perched on the branch, displaying its vibrant feathers.", + "pos": "noun", + "word_frequency": 11842 + }, + { + "word": "mammoth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, extinct elephant-like animal", + "example_sentence_english": "Woolly mammoths roamed the Earth during the Ice Age.", + "pos": "noun", + "word_frequency": 11844 + }, + { + "word": "matchup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pairing of opponents or competitors", + "example_sentence_english": "The boxing matchup between the two champions was highly anticipated.", + "pos": "noun", + "word_frequency": 11845 + }, + { + "word": "modem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device that modulates and demodulates signals for data transmission", + "example_sentence_english": "You need a modem to connect to the internet.", + "pos": "noun", + "word_frequency": 11848 + }, + { + "word": "motif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a recurring dominant idea or feature", + "example_sentence_english": "The recurring motif of light and darkness is central to the novel.", + "pos": "noun", + "word_frequency": 11849 + }, + { + "word": "oat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cereal plant cultivated for its edible grain", + "example_sentence_english": "Oats are a healthy breakfast choice.", + "pos": "noun", + "word_frequency": 11851 + }, + { + "word": "ominous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggesting that something bad is going to happen", + "example_sentence_english": "The dark clouds looked ominous, signaling a coming storm.", + "pos": "adjective", + "word_frequency": 11852 + }, + { + "word": "openness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being open, honest, and direct", + "example_sentence_english": "Her openness about her struggles helped others feel comfortable sharing theirs.", + "pos": "noun", + "word_frequency": 11853 + }, + { + "word": "optimize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make the best or most effective use of a situation or resource", + "example_sentence_english": "We need to optimize our website for mobile users.", + "pos": "verb", + "word_frequency": 11854 + }, + { + "word": "overhear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hear (someone or something) without meaning to or without the knowledge of the speaker", + "example_sentence_english": "I couldn't help but overhear their conversation at the next table.", + "pos": "verb", + "word_frequency": 11855 + }, + { + "word": "oversized", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "larger than normal size", + "example_sentence_english": "She wore an oversized sweater that looked very comfortable.", + "pos": "adjective", + "word_frequency": 11856 + }, + { + "word": "papal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Pope or the papacy", + "example_sentence_english": "The papal visit attracted millions of pilgrims.", + "pos": "adjective", + "word_frequency": 11860 + }, + { + "word": "peril", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serious and immediate danger", + "example_sentence_english": "The explorers faced great peril in the uncharted jungle.", + "pos": "noun", + "word_frequency": 11863 + }, + { + "word": "playable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable or enjoyable for playing", + "example_sentence_english": "The new video game demo is finally playable.", + "pos": "adjective", + "word_frequency": 11865 + }, + { + "word": "pore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a minute opening in a surface, especially the skin", + "example_sentence_english": "Sweat is released through the pores of the skin.", + "pos": "noun", + "word_frequency": 11867 + }, + { + "word": "posh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elegant or stylishly luxurious", + "example_sentence_english": "They stayed in a very posh hotel in the city center.", + "pos": "adjective", + "word_frequency": 11868 + }, + { + "word": "professionalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the competence or skill expected of a professional", + "example_sentence_english": "Her professionalism was evident in every aspect of her work.", + "pos": "noun", + "word_frequency": 11869 + }, + { + "word": "rampage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of violent and uncontrollable behavior", + "example_sentence_english": "The elephant went on a rampage through the village.", + "pos": "noun", + "word_frequency": 11871 + }, + { + "word": "reassure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "say or do something to remove the doubts or fears of someone", + "example_sentence_english": "She tried to reassure him that everything would be fine.", + "pos": "verb", + "word_frequency": 11872 + }, + { + "word": "rebirth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of being born again or undergoing a spiritual or moral revival", + "example_sentence_english": "The city experienced a rebirth after years of decline.", + "pos": "noun", + "word_frequency": 11873 + }, + { + "word": "recharge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charge (a battery or device) again; restore energy or vigor", + "example_sentence_english": "I need to recharge my phone before we leave.", + "pos": "verb", + "word_frequency": 11874 + }, + { + "word": "retina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a layer at the back of the eyeball containing cells sensitive to light", + "example_sentence_english": "Light-sensitive cells in the retina convert images into electrical signals.", + "pos": "noun", + "word_frequency": 11875 + }, + { + "word": "riff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, repeated musical phrase; a variation on a theme", + "example_sentence_english": "The guitarist played a catchy riff that got everyone dancing.", + "pos": "noun", + "word_frequency": 11876 + }, + { + "word": "scrape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rub against a rough surface, often causing damage or a harsh sound", + "example_sentence_english": "He managed to scrape through the exam.", + "pos": "verb", + "word_frequency": 11882 + }, + { + "word": "semantic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to meaning in language or logic", + "example_sentence_english": "The discussion focused on the semantic differences between the two words.", + "pos": "adjective", + "word_frequency": 11883 + }, + { + "word": "shear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut the wool off a sheep or to cut something off cleanly", + "example_sentence_english": "The farmer will shear the sheep next week.", + "pos": "verb", + "word_frequency": 11884 + }, + { + "word": "sherry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fortified wine originally from southern Spain", + "example_sentence_english": "She offered him a glass of sherry before dinner.", + "pos": "noun", + "word_frequency": 11885 + }, + { + "word": "silicone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a synthetic polymer used in various products, often for its heat resistance and flexibility", + "example_sentence_english": "Many baking molds are made from silicone.", + "pos": "noun", + "word_frequency": 11886 + }, + { + "word": "skepticism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a doubting or questioning attitude", + "example_sentence_english": "There was widespread skepticism about the new policy.", + "pos": "noun", + "word_frequency": 11887 + }, + { + "word": "sly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clever in a dishonest or deceptive way", + "example_sentence_english": "He gave a sly wink to his accomplice.", + "pos": "adjective", + "word_frequency": 11889 + }, + { + "word": "smiley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a symbol representing a smiling face, often used in digital communication", + "example_sentence_english": "She ended her text message with a smiley face.", + "pos": "noun", + "word_frequency": 11890 + }, + { + "word": "snoop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to investigate or look around in a sneaky or prying way", + "example_sentence_english": "Don't snoop through my personal belongings.", + "pos": "verb", + "word_frequency": 11892 + }, + { + "word": "startle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause to feel sudden shock or alarm", + "example_sentence_english": "The loud noise startled the cat.", + "pos": "verb", + "word_frequency": 11893 + }, + { + "word": "strife", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "angry or bitter disagreement over fundamental issues; conflict", + "example_sentence_english": "The country was torn by political strife.", + "pos": "noun", + "word_frequency": 11894 + }, + { + "word": "stylist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who designs or advises on styles, especially in fashion or hair", + "example_sentence_english": "She hired a personal stylist for the awards ceremony.", + "pos": "noun", + "word_frequency": 11895 + }, + { + "word": "tenor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the highest male adult singing voice or the general meaning or character of something", + "example_sentence_english": "He sang the tenor part in the choir.", + "pos": "noun", + "word_frequency": 11896 + }, + { + "word": "thrift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of using money and other resources carefully and not wastefully", + "example_sentence_english": "Her grandmother taught her the importance of thrift.", + "pos": "noun", + "word_frequency": 11897 + }, + { + "word": "traverse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to travel across or through", + "example_sentence_english": "They had to traverse the entire mountain range.", + "pos": "verb", + "word_frequency": 11898 + }, + { + "word": "turnaround", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an abrupt or unexpected change, especially one that results in a more favorable situation", + "example_sentence_english": "The company achieved a remarkable turnaround in its financial performance.", + "pos": "noun", + "word_frequency": 11899 + }, + { + "word": "uterus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the organ in the lower body of a woman or female mammal where offspring are conceived and in which they gestate before birth", + "example_sentence_english": "The baby develops inside the mother's uterus.", + "pos": "noun", + "word_frequency": 11900 + }, + { + "word": "validate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to check or prove the validity or accuracy of something", + "example_sentence_english": "It's important to validate your parking ticket before leaving.", + "pos": "verb", + "word_frequency": 11901 + }, + { + "word": "vid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short form of 'video'", + "example_sentence_english": "Did you see that funny vid online?", + "pos": "noun", + "word_frequency": 11902 + }, + { + "word": "vocalist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a singer, especially in a band or group", + "example_sentence_english": "The band's new vocalist has an amazing voice.", + "pos": "noun", + "word_frequency": 11903 + }, + { + "word": "wildcat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, fierce, solitary cat or a strike not sanctioned by a trade union", + "example_sentence_english": "The wildcat is a shy and elusive animal.", + "pos": "noun", + "word_frequency": 11906 + }, + { + "word": "zebra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an African wild horse with black-and-white stripes", + "example_sentence_english": "Zebras are known for their distinctive stripes.", + "pos": "noun", + "word_frequency": 11908 + }, + { + "word": "zionist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who supports Zionism, the movement for the re-establishment and development and protection of a Jewish nation in what is now Israel", + "example_sentence_english": "He identified himself as a Zionist.", + "pos": "noun", + "word_frequency": 11909 + }, + { + "word": "a.d", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Anno Domini (in the year of the Lord), used to indicate years since the birth of Jesus Christ", + "example_sentence_english": "The Roman Empire fell in 476 A.D.", + "pos": "noun", + "word_frequency": 11911 + }, + { + "word": "aft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at, near, or toward the stern of a ship or tail of an aircraft", + "example_sentence_english": "The passengers were asked to move aft.", + "pos": "adverb", + "word_frequency": 11913 + }, + { + "word": "anesthesia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of controlled, temporary loss of sensation or awareness that is induced for medical purposes", + "example_sentence_english": "The patient was given local anesthesia before the procedure.", + "pos": "noun", + "word_frequency": 11915 + }, + { + "word": "anonymity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the condition of being unknown", + "example_sentence_english": "The witness was granted anonymity for their safety.", + "pos": "noun", + "word_frequency": 11916 + }, + { + "word": "appropriation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of taking something for one's own use, typically without the owner's permission or for public use", + "example_sentence_english": "The appropriation of funds for the new project was approved.", + "pos": "noun", + "word_frequency": 11918 + }, + { + "word": "aria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, accompanied song for a solo voice, typically one in an opera or oratorio", + "example_sentence_english": "The soprano sang a beautiful aria from the opera.", + "pos": "noun", + "word_frequency": 11919 + }, + { + "word": "assassinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to murder (a prominent person)", + "example_sentence_english": "The plot to assassinate the king was discovered.", + "pos": "verb", + "word_frequency": 11920 + }, + { + "word": "bandit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a robber or outlaw", + "example_sentence_english": "The bandits ambushed the stagecoach on the mountain road.", + "pos": "noun", + "word_frequency": 11921 + }, + { + "word": "banish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to send someone away from a country or place as an official punishment", + "example_sentence_english": "The king decided to banish the traitor from the kingdom.", + "pos": "verb", + "word_frequency": 11922 + }, + { + "word": "barefoot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without shoes or socks", + "example_sentence_english": "She walked barefoot on the sand, enjoying the warm beach.", + "pos": "adjective", + "word_frequency": 11923 + }, + { + "word": "barrage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a concentrated artillery bombardment over a wide area; an overwhelming quantity of questions or criticisms", + "example_sentence_english": "The politician faced a barrage of questions from the reporters.", + "pos": "noun", + "word_frequency": 11924 + }, + { + "word": "bestow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to confer or present (an honor, right, or gift)", + "example_sentence_english": "The queen will bestow a knighthood upon him for his service.", + "pos": "verb", + "word_frequency": 11926 + }, + { + "word": "brilliance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intense brightness of light; exceptional talent or intelligence", + "example_sentence_english": "The brilliance of the diamond caught everyone's eye.", + "pos": "noun", + "word_frequency": 11930 + }, + { + "word": "broth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soup consisting of meat or vegetable stock", + "example_sentence_english": "She made a warm chicken broth to help with his cold.", + "pos": "noun", + "word_frequency": 11932 + }, + { + "word": "centenary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the hundredth anniversary of a significant event", + "example_sentence_english": "The town celebrated its centenary with a grand parade.", + "pos": "noun", + "word_frequency": 11934 + }, + { + "word": "checkpoint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a barrier or manned entrance, typically one where security checks are carried out", + "example_sentence_english": "Soldiers stopped the car at the military checkpoint.", + "pos": "noun", + "word_frequency": 11935 + }, + { + "word": "chloride", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a compound of chlorine with another element or group", + "example_sentence_english": "Sodium chloride is commonly known as table salt.", + "pos": "noun", + "word_frequency": 11936 + }, + { + "word": "cocky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceited or arrogant, especially in a bold or impudent way", + "example_sentence_english": "His cocky attitude often gets him into trouble.", + "pos": "adjective", + "word_frequency": 11937 + }, + { + "word": "coefficient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a numerical or constant quantity placed before and multiplying the variable in an algebraic expression", + "example_sentence_english": "In the equation, 'x' is the variable and '2' is the coefficient.", + "pos": "noun", + "word_frequency": 11938 + }, + { + "word": "conditioner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a substance, typically a liquid, applied to hair after shampooing to improve its condition", + "example_sentence_english": "She applied conditioner to her hair after washing it.", + "pos": "noun", + "word_frequency": 11939 + }, + { + "word": "conglomerate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large corporation formed by the merger of separate companies", + "example_sentence_english": "The media conglomerate owns several television networks and newspapers.", + "pos": "noun", + "word_frequency": 11940 + }, + { + "word": "cornerstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an important underlying principle or foundation", + "example_sentence_english": "Honesty is the cornerstone of a good relationship.", + "pos": "noun", + "word_frequency": 11941 + }, + { + "word": "correctness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being free from error; accuracy", + "example_sentence_english": "The teacher emphasized the importance of correctness in grammar.", + "pos": "noun", + "word_frequency": 11942 + }, + { + "word": "counterfeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made in exact imitation of something valuable or important with the intention to deceive or defraud", + "example_sentence_english": "The police seized a large number of counterfeit banknotes.", + "pos": "adjective", + "word_frequency": 11943 + }, + { + "word": "dazzle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a bright light) blind (a person or their eyes) temporarily", + "example_sentence_english": "The bright stage lights dazzled the audience.", + "pos": "verb", + "word_frequency": 11945 + }, + { + "word": "deacon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ordained minister of an order ranking below that of priest", + "example_sentence_english": "The deacon assisted the priest during the church service.", + "pos": "noun", + "word_frequency": 11947 + }, + { + "word": "deceive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person) cause (someone) to believe something that is not true, typically in order to gain some personal advantage", + "example_sentence_english": "He tried to deceive his parents about his grades.", + "pos": "verb", + "word_frequency": 11948 + }, + { + "word": "dentistry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the profession or science of preventing and treating diseases and conditions of the teeth and gums", + "example_sentence_english": "She decided to study dentistry at university.", + "pos": "noun", + "word_frequency": 11949 + }, + { + "word": "detainee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person held in custody, especially for political reasons", + "example_sentence_english": "The human rights organization advocated for the release of the political detainee.", + "pos": "noun", + "word_frequency": 11950 + }, + { + "word": "edgy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tense, nervous, or irritable; avant-garde or trend-setting", + "example_sentence_english": "The new band has an edgy sound that appeals to a younger audience.", + "pos": "adjective", + "word_frequency": 11953 + }, + { + "word": "encore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an additional performance, especially by a musician, at the end of a concert, requested by the audience", + "example_sentence_english": "The audience clapped loudly, demanding an encore from the band.", + "pos": "noun", + "word_frequency": 11956 + }, + { + "word": "err", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be mistaken or incorrect; make a mistake", + "example_sentence_english": "To err is human, to forgive divine.", + "pos": "verb", + "word_frequency": 11958 + }, + { + "word": "erupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a volcano) become active and eject lava, ash, and gases; (of a conflict or dispute) break out suddenly and dramatically", + "example_sentence_english": "The volcano is expected to erupt soon.", + "pos": "verb", + "word_frequency": 11959 + }, + { + "word": "espresso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of strong black coffee.", + "example_sentence_english": "I'll have a double espresso, please.", + "pos": "noun", + "word_frequency": 11960 + }, + { + "word": "evade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To escape or avoid.", + "example_sentence_english": "He tried to evade capture by hiding in the crowd.", + "pos": "verb", + "word_frequency": 11961 + }, + { + "word": "fab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Fabulous; excellent.", + "example_sentence_english": "That dress looks absolutely fab on you!", + "pos": "adjective", + "word_frequency": 11962 + }, + { + "word": "freaky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Strange or unusual in a disturbing way.", + "example_sentence_english": "The movie had some really freaky special effects.", + "pos": "adjective", + "word_frequency": 11963 + }, + { + "word": "futile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Pointless; useless.", + "example_sentence_english": "It was futile to try and stop him; he had already made up his mind.", + "pos": "adjective", + "word_frequency": 11964 + }, + { + "word": "germ", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A microorganism, especially one that causes disease.", + "example_sentence_english": "Wash your hands to get rid of germs.", + "pos": "noun", + "word_frequency": 11965 + }, + { + "word": "glacial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to ice or extremely slow.", + "example_sentence_english": "The project moved at a glacial pace.", + "pos": "adjective", + "word_frequency": 11966 + }, + { + "word": "gland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An organ that produces and secretes substances.", + "example_sentence_english": "The thyroid gland is located in the neck.", + "pos": "noun", + "word_frequency": 11967 + }, + { + "word": "gloomy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dark or depressing; sad.", + "example_sentence_english": "The weather was gloomy all weekend.", + "pos": "adjective", + "word_frequency": 11968 + }, + { + "word": "graceful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Elegant and smooth in movement or form.", + "example_sentence_english": "The ballerina performed a graceful pirouette.", + "pos": "adjective", + "word_frequency": 11969 + }, + { + "word": "grievance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A real or imagined wrong or cause for complaint.", + "example_sentence_english": "He filed a formal grievance against his employer.", + "pos": "noun", + "word_frequency": 11970 + }, + { + "word": "gritty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Containing or covered with grit; showing courage and resolve.", + "example_sentence_english": "The film offered a gritty portrayal of urban life.", + "pos": "adjective", + "word_frequency": 11971 + }, + { + "word": "heartbreak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Overwhelming distress or grief.", + "example_sentence_english": "The news of his departure caused her immense heartbreak.", + "pos": "noun", + "word_frequency": 11974 + }, + { + "word": "heist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A robbery or a hold-up.", + "example_sentence_english": "The movie was about a daring bank heist.", + "pos": "noun", + "word_frequency": 11975 + }, + { + "word": "heterosexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sexually attracted to people of the opposite sex.", + "example_sentence_english": "The survey included participants of various sexual orientations, including heterosexual individuals.", + "pos": "adjective", + "word_frequency": 11976 + }, + { + "word": "hinder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To create difficulties for someone or something, resulting in delay or obstruction.", + "example_sentence_english": "Bad weather can hinder travel plans.", + "pos": "verb", + "word_frequency": 11978 + }, + { + "word": "horseback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The back of a horse.", + "example_sentence_english": "They explored the trails on horseback.", + "pos": "noun", + "word_frequency": 11980 + }, + { + "word": "hospice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A home providing care for the sick or terminally ill.", + "example_sentence_english": "She spent her final days comfortably in the hospice.", + "pos": "noun", + "word_frequency": 11981 + }, + { + "word": "hotline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A direct telephone line for urgent calls.", + "example_sentence_english": "You can call the customer service hotline for assistance.", + "pos": "noun", + "word_frequency": 11982 + }, + { + "word": "inhibition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A feeling that makes one self-conscious and unable to act in a relaxed and natural way.", + "example_sentence_english": "Alcohol can lower your inhibitions.", + "pos": "noun", + "word_frequency": 11984 + }, + { + "word": "integer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A whole number (not a fraction).", + "example_sentence_english": "The number 5 is an integer, but 5.5 is not.", + "pos": "noun", + "word_frequency": 11985 + }, + { + "word": "interdisciplinary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to more than one branch of knowledge.", + "example_sentence_english": "The research project was highly interdisciplinary, combining biology and engineering.", + "pos": "adjective", + "word_frequency": 11986 + }, + { + "word": "intermittent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Occurring at irregular intervals; not continuous or steady.", + "example_sentence_english": "We experienced intermittent rain throughout the day.", + "pos": "adjective", + "word_frequency": 11987 + }, + { + "word": "intimidation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act of frightening or overawing someone.", + "example_sentence_english": "He used intimidation tactics to get what he wanted.", + "pos": "noun", + "word_frequency": 11988 + }, + { + "word": "islamist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An advocate or supporter of Islamic militancy or fundamentalism.", + "example_sentence_english": "The government is concerned about the rise of Islamist groups.", + "pos": "noun", + "word_frequency": 11989 + }, + { + "word": "iteration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The repetition of a process or utterance.", + "example_sentence_english": "This is the third iteration of the software.", + "pos": "noun", + "word_frequency": 11991 + }, + { + "word": "magnum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large bottle for wine or spirits; a powerful handgun.", + "example_sentence_english": "We celebrated with a magnum of champagne.", + "pos": "noun", + "word_frequency": 11999 + }, + { + "word": "maxim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a short, pithy statement expressing a general truth or rule of conduct", + "example_sentence_english": "\"Honesty is the best policy\" is a well-known maxim.", + "pos": "noun", + "word_frequency": 12002 + }, + { + "word": "melancholy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of pensive sadness, typically with no obvious cause", + "example_sentence_english": "A sense of melancholy filled the room after the news.", + "pos": "noun", + "word_frequency": 12005 + }, + { + "word": "meteorological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the study of weather and climate", + "example_sentence_english": "The meteorological office issued a severe weather warning.", + "pos": "adjective", + "word_frequency": 12006 + }, + { + "word": "misplace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put something in the wrong place and lose it temporarily", + "example_sentence_english": "I always misplace my keys.", + "pos": "verb", + "word_frequency": 12008 + }, + { + "word": "misty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of or characterized by mist", + "example_sentence_english": "The morning was cold and misty.", + "pos": "adjective", + "word_frequency": 12009 + }, + { + "word": "mop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an implement for cleaning floors", + "example_sentence_english": "Please use the mop to clean up the spill.", + "pos": "noun", + "word_frequency": 12012 + }, + { + "word": "multicultural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or constituting several cultural or ethnic groups within a society", + "example_sentence_english": "London is a very multicultural city.", + "pos": "adjective", + "word_frequency": 12013 + }, + { + "word": "negligible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "so small or unimportant as to be not worth considering", + "example_sentence_english": "The damage to the car was negligible.", + "pos": "adjective", + "word_frequency": 12014 + }, + { + "word": "nudity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being naked", + "example_sentence_english": "The film contained some brief nudity.", + "pos": "noun", + "word_frequency": 12015 + }, + { + "word": "obligatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "required by a rule or law; compulsory", + "example_sentence_english": "Wearing a helmet is obligatory for cyclists.", + "pos": "adjective", + "word_frequency": 12016 + }, + { + "word": "oceanic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the ocean", + "example_sentence_english": "The oceanic currents influence global weather patterns.", + "pos": "adjective", + "word_frequency": 12017 + }, + { + "word": "ornament", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing used to make something look more attractive", + "example_sentence_english": "She placed a small ceramic ornament on the shelf.", + "pos": "noun", + "word_frequency": 12020 + }, + { + "word": "outpost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a remote settlement or military position", + "example_sentence_english": "The explorers established an outpost deep in the jungle.", + "pos": "noun", + "word_frequency": 12021 + }, + { + "word": "overflow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the excess that spills or is forced out", + "example_sentence_english": "The bucket couldn't hold the water, and there was an overflow.", + "pos": "noun", + "word_frequency": 12022 + }, + { + "word": "oxidation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of combining with oxygen", + "example_sentence_english": "Rust is a common example of iron oxidation.", + "pos": "noun", + "word_frequency": 12023 + }, + { + "word": "panorama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unbroken view of the whole region surrounding an observer", + "example_sentence_english": "From the hilltop, we enjoyed a stunning panorama of the valley.", + "pos": "noun", + "word_frequency": 12024 + }, + { + "word": "peep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look quickly and furtively", + "example_sentence_english": "She tried to peep through the keyhole.", + "pos": "verb", + "word_frequency": 12026 + }, + { + "word": "pervasive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spreading widely throughout an area or a group of people", + "example_sentence_english": "The smell of smoke was pervasive in the building.", + "pos": "adjective", + "word_frequency": 12027 + }, + { + "word": "pinky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the smallest finger on the hand", + "example_sentence_english": "He held up his pinky finger.", + "pos": "noun", + "word_frequency": 12028 + }, + { + "word": "playwright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who writes plays", + "example_sentence_english": "William Shakespeare is a famous playwright.", + "pos": "noun", + "word_frequency": 12029 + }, + { + "word": "predatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preying naturally on others", + "example_sentence_english": "Lions are predatory animals.", + "pos": "adjective", + "word_frequency": 12030 + }, + { + "word": "preface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an introduction to a book", + "example_sentence_english": "The author wrote a short preface to the novel.", + "pos": "noun", + "word_frequency": 12031 + }, + { + "word": "punitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflicting or intended as punishment", + "example_sentence_english": "The company faced punitive damages for its actions.", + "pos": "adjective", + "word_frequency": 12032 + }, + { + "word": "rainforest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dense forest in tropical areas with heavy rainfall", + "example_sentence_english": "The Amazon is the world's largest rainforest.", + "pos": "noun", + "word_frequency": 12033 + }, + { + "word": "reborn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revived or regenerated", + "example_sentence_english": "After the crisis, the city felt reborn.", + "pos": "adjective", + "word_frequency": 12035 + }, + { + "word": "reddish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a tinge of red", + "example_sentence_english": "The sky had a reddish glow at sunset.", + "pos": "adjective", + "word_frequency": 12036 + }, + { + "word": "refurbish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to renovate and redecorate", + "example_sentence_english": "They plan to refurbish the old hotel.", + "pos": "verb", + "word_frequency": 12037 + }, + { + "word": "repercussion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an unintended consequence of an event or action", + "example_sentence_english": "His actions had serious repercussions for the entire team.", + "pos": "noun", + "word_frequency": 12038 + }, + { + "word": "restroom", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a public toilet", + "example_sentence_english": "Excuse me, where is the nearest restroom?", + "pos": "noun", + "word_frequency": 12039 + }, + { + "word": "rhythmic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a regular, repeated pattern of sound or movement", + "example_sentence_english": "The dancer moved with rhythmic grace.", + "pos": "adjective", + "word_frequency": 12040 + }, + { + "word": "roi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return on investment", + "example_sentence_english": "We need to calculate the ROI for this project.", + "pos": "noun", + "word_frequency": 12041 + }, + { + "word": "roulette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a gambling game in which a ball is dropped onto a revolving wheel with numbered compartments", + "example_sentence_english": "He lost all his money playing roulette.", + "pos": "noun", + "word_frequency": 12042 + }, + { + "word": "rupee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the basic monetary unit of India, Pakistan, Sri Lanka, Nepal, Mauritius, and Seychelles", + "example_sentence_english": "The exchange rate for the Indian rupee has changed.", + "pos": "noun", + "word_frequency": 12043 + }, + { + "word": "satin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a smooth, glossy fabric, typically of silk or rayon, woven with a satin weave", + "example_sentence_english": "The dress was made of soft satin.", + "pos": "noun", + "word_frequency": 12046 + }, + { + "word": "segregate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set apart from the rest or from each other; isolate or divide", + "example_sentence_english": "It's important to segregate waste for recycling.", + "pos": "verb", + "word_frequency": 12047 + }, + { + "word": "shameless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling no shame; impudent", + "example_sentence_english": "His shameless behavior shocked everyone.", + "pos": "adjective", + "word_frequency": 12048 + }, + { + "word": "showtime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the time at which a show or performance is scheduled to begin", + "example_sentence_english": "It's almost showtime, so we should find our seats.", + "pos": "noun", + "word_frequency": 12050 + }, + { + "word": "skeletal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or resembling a skeleton; very thin", + "example_sentence_english": "The old building was reduced to a skeletal frame after the fire.", + "pos": "adjective", + "word_frequency": 12051 + }, + { + "word": "snapshot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an informal photograph taken quickly; a brief impression or summary", + "example_sentence_english": "The article provides a snapshot of the current economic situation.", + "pos": "noun", + "word_frequency": 12052 + }, + { + "word": "spherical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaped like a sphere or ball", + "example_sentence_english": "The Earth is approximately spherical.", + "pos": "adjective", + "word_frequency": 12053 + }, + { + "word": "sprinkle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scatter or pour small drops or particles over an object or surface", + "example_sentence_english": "Please sprinkle some cheese on top of the pasta.", + "pos": "verb", + "word_frequency": 12054 + }, + { + "word": "spruce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a coniferous tree with short, needle-like leaves", + "example_sentence_english": "We decorated a spruce tree for Christmas.", + "pos": "noun", + "word_frequency": 12055 + }, + { + "word": "stamina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to sustain prolonged physical or mental effort", + "example_sentence_english": "Running a marathon requires a lot of stamina.", + "pos": "noun", + "word_frequency": 12057 + }, + { + "word": "standalone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to operate independently", + "example_sentence_english": "This software can be used as a standalone application.", + "pos": "adjective", + "word_frequency": 12058 + }, + { + "word": "subconscious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the part of the mind of which one is not fully aware but which influences one's actions and feelings", + "example_sentence_english": "Dreams often reveal thoughts from the subconscious.", + "pos": "noun", + "word_frequency": 12059 + }, + { + "word": "tonic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medicinal substance taken to give a feeling of vigor or well-being; a carbonated drink", + "example_sentence_english": "He drank a gin and tonic.", + "pos": "noun", + "word_frequency": 12060 + }, + { + "word": "troublesome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing difficulty or annoyance", + "example_sentence_english": "The troublesome child refused to go to bed.", + "pos": "adjective", + "word_frequency": 12061 + }, + { + "word": "tumour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mass of new tissue that grows in a body, often associated with cancer", + "example_sentence_english": "The doctors found a small tumour in his lung.", + "pos": "noun", + "word_frequency": 12062 + }, + { + "word": "utopia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an imagined place or state of things in which everything is perfect", + "example_sentence_english": "Many people dream of living in a perfect utopia.", + "pos": "noun", + "word_frequency": 12064 + }, + { + "word": "vpn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Virtual Private Network", + "example_sentence_english": "I use a VPN to protect my online privacy.", + "pos": "noun", + "word_frequency": 12065 + }, + { + "word": "waterway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a river, canal, or other route for travel by water", + "example_sentence_english": "The city is connected by a network of waterways.", + "pos": "noun", + "word_frequency": 12066 + }, + { + "word": "wetland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "land consisting of marshes or swamps; saturated land", + "example_sentence_english": "The protected wetland is home to many bird species.", + "pos": "noun", + "word_frequency": 12067 + }, + { + "word": "abrupt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden and unexpected", + "example_sentence_english": "The car came to an abrupt stop.", + "pos": "adjective", + "word_frequency": 12074 + }, + { + "word": "acronym", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an abbreviation formed from the initial letters of other words and pronounced as a word", + "example_sentence_english": "NASA is an acronym for National Aeronautics and Space Administration.", + "pos": "noun", + "word_frequency": 12075 + }, + { + "word": "adversity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "difficulties; misfortune", + "example_sentence_english": "She showed great resilience in the face of adversity.", + "pos": "noun", + "word_frequency": 12076 + }, + { + "word": "affidavit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a written statement confirmed by oath or affirmation, for use as evidence in court", + "example_sentence_english": "The witness signed an affidavit confirming her statement.", + "pos": "noun", + "word_frequency": 12077 + }, + { + "word": "antic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a foolish, outrageous, or amusing act", + "example_sentence_english": "The clown's antics made the children laugh.", + "pos": "noun", + "word_frequency": 12079 + }, + { + "word": "astrology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of the movements and relative positions of celestial bodies interpreted as having an influence on human affairs and the natural world", + "example_sentence_english": "She believes in astrology and checks her horoscope daily.", + "pos": "noun", + "word_frequency": 12082 + }, + { + "word": "baroness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a female baron or a baron's wife", + "example_sentence_english": "The baroness hosted a lavish ball at her estate.", + "pos": "noun", + "word_frequency": 12083 + }, + { + "word": "barrow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a two-wheeled handcart used to carry a load or an ancient burial mound", + "example_sentence_english": "They found ancient artifacts inside the burial barrow.", + "pos": "noun", + "word_frequency": 12084 + }, + { + "word": "biographical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the story of someone's life", + "example_sentence_english": "The film was a biographical drama about a famous artist.", + "pos": "adjective", + "word_frequency": 12085 + }, + { + "word": "biomass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "organic matter used as a fuel, especially in a power station for the generation of electricity", + "example_sentence_english": "Burning biomass can be a source of renewable energy.", + "pos": "noun", + "word_frequency": 12086 + }, + { + "word": "blouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a woman's loose upper garment resembling a shirt", + "example_sentence_english": "She wore a white silk blouse with a black skirt.", + "pos": "noun", + "word_frequency": 12089 + }, + { + "word": "bodyguard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person employed to protect someone from harm", + "example_sentence_english": "The celebrity arrived with a team of bodyguards.", + "pos": "noun", + "word_frequency": 12090 + }, + { + "word": "borrower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who borrows something, especially money from a bank", + "example_sentence_english": "The bank assesses the creditworthiness of each borrower.", + "pos": "noun", + "word_frequency": 12091 + }, + { + "word": "botany", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the scientific study of plants", + "example_sentence_english": "She decided to major in botany because of her love for plants.", + "pos": "noun", + "word_frequency": 12092 + }, + { + "word": "caterpillar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the larva of a butterfly or moth, having a segmented body with many legs", + "example_sentence_english": "A tiny caterpillar was slowly crawling on the leaf.", + "pos": "noun", + "word_frequency": 12093 + }, + { + "word": "censor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to examine (a book, movie, etc.) officially and suppress unacceptable parts of it", + "example_sentence_english": "The government decided to censor parts of the documentary.", + "pos": "verb", + "word_frequency": 12094 + }, + { + "word": "chatter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noisy talk or conversation", + "example_sentence_english": "The constant chatter in the classroom made it hard to concentrate.", + "pos": "noun", + "word_frequency": 12095 + }, + { + "word": "cleric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a priest or religious leader", + "example_sentence_english": "The cleric delivered a powerful sermon on Sunday.", + "pos": "noun", + "word_frequency": 12096 + }, + { + "word": "comedic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of or relating to comedy; humorous", + "example_sentence_english": "His comedic timing was perfect, making everyone laugh.", + "pos": "adjective", + "word_frequency": 12099 + }, + { + "word": "compressor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine used to compress air or other gases", + "example_sentence_english": "The air conditioner's compressor stopped working.", + "pos": "noun", + "word_frequency": 12100 + }, + { + "word": "confer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant or bestow (a title, degree, benefit, or right) or to have discussions; exchange opinions", + "example_sentence_english": "The university will confer degrees upon the graduating students next month.", + "pos": "verb", + "word_frequency": 12102 + }, + { + "word": "cougar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large American wild cat with a tawny coat, found from Canada to Patagonia", + "example_sentence_english": "A cougar was spotted near the hiking trail.", + "pos": "noun", + "word_frequency": 12106 + }, + { + "word": "defamation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of damaging the good reputation of someone; slander or libel", + "example_sentence_english": "He sued the newspaper for defamation of character.", + "pos": "noun", + "word_frequency": 12109 + }, + { + "word": "directional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or indicating direction", + "example_sentence_english": "The new antenna provides better directional signal reception.", + "pos": "adjective", + "word_frequency": 12112 + }, + { + "word": "ditto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the same thing again; aforesaid", + "example_sentence_english": "She said she was tired, and I said ditto.", + "pos": "noun", + "word_frequency": 12113 + }, + { + "word": "divergent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending to be different or develop in different directions", + "example_sentence_english": "They had divergent opinions on the best course of action.", + "pos": "adjective", + "word_frequency": 12114 + }, + { + "word": "doctorate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the highest degree awarded by a university", + "example_sentence_english": "She is currently pursuing her doctorate in astrophysics.", + "pos": "noun", + "word_frequency": 12115 + }, + { + "word": "downright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely; thoroughly (used for emphasis, typically to describe something bad)", + "example_sentence_english": "His behavior was downright rude and unacceptable.", + "pos": "adverb", + "word_frequency": 12118 + }, + { + "word": "electrode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a conductor through which electricity enters or leaves an object, substance, or region", + "example_sentence_english": "The battery has a positive and a negative electrode.", + "pos": "noun", + "word_frequency": 12119 + }, + { + "word": "elemental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic; fundamental", + "example_sentence_english": "Water is an elemental force of nature.", + "pos": "adjective", + "word_frequency": 12120 + }, + { + "word": "encode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convert into a coded form", + "example_sentence_english": "The computer will encode the data for security.", + "pos": "verb", + "word_frequency": 12121 + }, + { + "word": "exemplary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving as a desirable model; excellent", + "example_sentence_english": "Her dedication to the project was exemplary.", + "pos": "adjective", + "word_frequency": 12122 + }, + { + "word": "expansive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "covering a wide area; extensive", + "example_sentence_english": "The desert stretched out in an expansive landscape.", + "pos": "adjective", + "word_frequency": 12123 + }, + { + "word": "fife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, high-pitched flute", + "example_sentence_english": "The soldier played a tune on his fife.", + "pos": "noun", + "word_frequency": 12124 + }, + { + "word": "flake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, thin piece of something", + "example_sentence_english": "A snowflake is a tiny flake of ice.", + "pos": "noun", + "word_frequency": 12125 + }, + { + "word": "guerrilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a small independent group taking part in irregular fighting", + "example_sentence_english": "The guerrilla fighters launched a surprise attack.", + "pos": "noun", + "word_frequency": 12130 + }, + { + "word": "gutter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a shallow trough fixed beneath the edge of a roof", + "example_sentence_english": "Leaves often clog the rain gutter.", + "pos": "noun", + "word_frequency": 12131 + }, + { + "word": "hearty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wholesome and substantial; enthusiastic", + "example_sentence_english": "We enjoyed a hearty breakfast before our hike.", + "pos": "adjective", + "word_frequency": 12132 + }, + { + "word": "highschool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a secondary school for students typically between the ages of 14 and 18", + "example_sentence_english": "She graduated from high school last year.", + "pos": "noun", + "word_frequency": 12133 + }, + { + "word": "hillside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the sloping side of a hill", + "example_sentence_english": "The sheep grazed peacefully on the hillside.", + "pos": "noun", + "word_frequency": 12134 + }, + { + "word": "hover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remain in one place in the air", + "example_sentence_english": "The hummingbird continued to hover near the flower.", + "pos": "verb", + "word_frequency": 12138 + }, + { + "word": "hysteria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uncontrollable emotion or excitement", + "example_sentence_english": "The crowd erupted in mass hysteria after the goal.", + "pos": "noun", + "word_frequency": 12141 + }, + { + "word": "impartial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treating all rivals or disputants equally; fair and unbiased", + "example_sentence_english": "A judge must remain impartial during a trial.", + "pos": "adjective", + "word_frequency": 12142 + }, + { + "word": "imperialism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a policy of extending a country's power and influence through colonization", + "example_sentence_english": "Many historical conflicts were driven by imperialism.", + "pos": "noun", + "word_frequency": 12143 + }, + { + "word": "imprint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mark or impression made by pressing something", + "example_sentence_english": "The fossil left a clear imprint of the ancient leaf.", + "pos": "noun", + "word_frequency": 12144 + }, + { + "word": "incremental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting an increase or addition, especially one of a series on a fixed scale", + "example_sentence_english": "The project made incremental progress each week.", + "pos": "adjective", + "word_frequency": 12145 + }, + { + "word": "infancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or period of being an infant; an early stage of development", + "example_sentence_english": "The new technology is still in its infancy.", + "pos": "noun", + "word_frequency": 12146 + }, + { + "word": "infuse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fill; pervade; soak", + "example_sentence_english": "The tea leaves infuse the water with flavor.", + "pos": "verb", + "word_frequency": 12147 + }, + { + "word": "inquire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ask for information from someone", + "example_sentence_english": "She decided to inquire about the job opening.", + "pos": "verb", + "word_frequency": 12148 + }, + { + "word": "inscribe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "write or carve words or symbols on something", + "example_sentence_english": "They decided to inscribe a message on the monument.", + "pos": "verb", + "word_frequency": 12149 + }, + { + "word": "insulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protect from heat, cold, or noise by surrounding with material", + "example_sentence_english": "We need to insulate the attic to save energy.", + "pos": "verb", + "word_frequency": 12150 + }, + { + "word": "jog", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "run at a steady, gentle pace", + "example_sentence_english": "I like to jog in the park every morning.", + "pos": "verb", + "word_frequency": 12152 + }, + { + "word": "jumbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very large", + "example_sentence_english": "We ordered a jumbo pizza for the party.", + "pos": "adjective", + "word_frequency": 12153 + }, + { + "word": "kale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of cabbage with green or purple leaves", + "example_sentence_english": "She added some fresh kale to her smoothie.", + "pos": "noun", + "word_frequency": 12154 + }, + { + "word": "landowner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who owns land", + "example_sentence_english": "The landowner decided to sell part of his estate.", + "pos": "noun", + "word_frequency": 12157 + }, + { + "word": "latina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman or girl of Latin American origin or descent", + "example_sentence_english": "She is a proud Latina artist.", + "pos": "noun", + "word_frequency": 12158 + }, + { + "word": "manageable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be managed or controlled", + "example_sentence_english": "The task was difficult but manageable.", + "pos": "adjective", + "word_frequency": 12164 + }, + { + "word": "manslaughter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the unlawful killing of another person without malice aforethought", + "example_sentence_english": "He was charged with involuntary manslaughter.", + "pos": "noun", + "word_frequency": 12165 + }, + { + "word": "meridian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a circle of constant longitude passing through a given place on the earth's surface and the terrestrial poles", + "example_sentence_english": "The prime meridian passes through Greenwich.", + "pos": "noun", + "word_frequency": 12168 + }, + { + "word": "misdemeanor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a minor wrongdoing", + "example_sentence_english": "Shoplifting is often classified as a misdemeanor.", + "pos": "noun", + "word_frequency": 12172 + }, + { + "word": "misfortune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bad luck", + "example_sentence_english": "It was a great misfortune that they lost everything.", + "pos": "noun", + "word_frequency": 12173 + }, + { + "word": "mountainous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having many mountains", + "example_sentence_english": "The region is very mountainous and difficult to travel through.", + "pos": "adjective", + "word_frequency": 12174 + }, + { + "word": "obnoxious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely unpleasant or offensive", + "example_sentence_english": "His obnoxious behavior made everyone uncomfortable.", + "pos": "adjective", + "word_frequency": 12177 + }, + { + "word": "orphanage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a residential institution for the care and education of orphans", + "example_sentence_english": "The children were raised in an orphanage after their parents died.", + "pos": "noun", + "word_frequency": 12179 + }, + { + "word": "perpetrator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who carries out a harmful, illegal, or immoral act", + "example_sentence_english": "The police are still searching for the perpetrator of the crime.", + "pos": "noun", + "word_frequency": 12180 + }, + { + "word": "rake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tool with a long handle and a row of teeth at the head, used for gathering leaves or smoothing soil", + "example_sentence_english": "He used a rake to clear the leaves from the lawn.", + "pos": "noun", + "word_frequency": 12183 + }, + { + "word": "resent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feel bitterness or indignation at (a circumstance, action, or person)", + "example_sentence_english": "She resented his constant criticism.", + "pos": "verb", + "word_frequency": 12184 + }, + { + "word": "retribution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "punishment inflicted in return for an injury or wrong", + "example_sentence_english": "The victims sought retribution for the injustice.", + "pos": "noun", + "word_frequency": 12185 + }, + { + "word": "rhetorical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or concerned with the art of rhetoric, or asked in order to produce an effect or to make a statement rather than to elicit information", + "example_sentence_english": "He asked a rhetorical question, expecting no answer.", + "pos": "adjective", + "word_frequency": 12186 + }, + { + "word": "rightful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legally or morally entitled to something", + "example_sentence_english": "She claimed her rightful place as the heir.", + "pos": "adjective", + "word_frequency": 12187 + }, + { + "word": "semen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the male reproductive fluid", + "example_sentence_english": "Semen contains sperm and other fluids.", + "pos": "noun", + "word_frequency": 12190 + }, + { + "word": "sixteenth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the ordinal number corresponding to the number sixteen", + "example_sentence_english": "Today is the sixteenth of December.", + "pos": "numeral", + "word_frequency": 12194 + }, + { + "word": "slime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick, slippery, viscous substance", + "example_sentence_english": "The snail left a trail of slime behind it.", + "pos": "noun", + "word_frequency": 12195 + }, + { + "word": "sow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plant (seed) by scattering it on or in the earth", + "example_sentence_english": "Farmers sow seeds in the spring.", + "pos": "verb", + "word_frequency": 12196 + }, + { + "word": "suffrage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the right to vote in political elections", + "example_sentence_english": "Women's suffrage was a major movement in the early 20th century.", + "pos": "noun", + "word_frequency": 12198 + }, + { + "word": "surrogate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substitute, especially a person deputizing for another in a specific role or office", + "example_sentence_english": "She acted as a surrogate mother for her sister.", + "pos": "noun", + "word_frequency": 12199 + }, + { + "word": "synopsis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summary", + "example_sentence_english": "The film's synopsis was very brief.", + "pos": "noun", + "word_frequency": 12200 + }, + { + "word": "taint", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contaminate; spoil", + "example_sentence_english": "The scandal will taint his reputation.", + "pos": "verb", + "word_frequency": 12201 + }, + { + "word": "toothbrush", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a brush for cleaning teeth", + "example_sentence_english": "I need a new toothbrush.", + "pos": "noun", + "word_frequency": 12204 + }, + { + "word": "treatise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a formal written work", + "example_sentence_english": "He wrote a lengthy treatise on political philosophy.", + "pos": "noun", + "word_frequency": 12205 + }, + { + "word": "uphill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards a higher place", + "example_sentence_english": "The road goes uphill for two miles.", + "pos": "adverb", + "word_frequency": 12207 + }, + { + "word": "variability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being variable", + "example_sentence_english": "There is significant variability in the weather patterns.", + "pos": "noun", + "word_frequency": 12209 + }, + { + "word": "waltz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a ballroom dance", + "example_sentence_english": "They danced a beautiful waltz.", + "pos": "noun", + "word_frequency": 12210 + }, + { + "word": "wooded", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with trees", + "example_sentence_english": "The house is surrounded by a wooded area.", + "pos": "adjective", + "word_frequency": 12211 + }, + { + "word": "working", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the operation or functioning", + "example_sentence_english": "The working of the engine is very smooth.", + "pos": "noun", + "word_frequency": 12212 + }, + { + "word": "adhesive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sticky; able to stick", + "example_sentence_english": "This tape is very adhesive.", + "pos": "adjective", + "word_frequency": 12216 + }, + { + "word": "adorn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decorate", + "example_sentence_english": "She adorned her hair with flowers.", + "pos": "verb", + "word_frequency": 12218 + }, + { + "word": "affluent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wealthy", + "example_sentence_english": "He lives in an affluent neighborhood.", + "pos": "adjective", + "word_frequency": 12219 + }, + { + "word": "ambiguity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being open to more than one interpretation", + "example_sentence_english": "There was some ambiguity in his statement.", + "pos": "noun", + "word_frequency": 12221 + }, + { + "word": "anguish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "severe mental or physical pain or suffering", + "example_sentence_english": "He felt great anguish over the loss of his pet.", + "pos": "noun", + "word_frequency": 12222 + }, + { + "word": "annal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a record of events year by year", + "example_sentence_english": "The annal recorded the major events of the kingdom.", + "pos": "noun", + "word_frequency": 12223 + }, + { + "word": "antitrust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laws against monopolies", + "example_sentence_english": "The company faced an antitrust investigation.", + "pos": "noun", + "word_frequency": 12224 + }, + { + "word": "archaeologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies human history", + "example_sentence_english": "The archaeologist discovered ancient pottery.", + "pos": "noun", + "word_frequency": 12225 + }, + { + "word": "arid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very dry", + "example_sentence_english": "The desert is an arid region.", + "pos": "adjective", + "word_frequency": 12226 + }, + { + "word": "barrister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of lawyer in the UK", + "example_sentence_english": "The barrister presented his case to the judge.", + "pos": "noun", + "word_frequency": 12228 + }, + { + "word": "bazaar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a market in Middle Eastern countries", + "example_sentence_english": "We bought souvenirs at the local bazaar.", + "pos": "noun", + "word_frequency": 12229 + }, + { + "word": "biker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who rides a bicycle or motorcycle", + "example_sentence_english": "A group of bikers rode past.", + "pos": "noun", + "word_frequency": 12232 + }, + { + "word": "bipartisan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving two political parties", + "example_sentence_english": "The bill received bipartisan support.", + "pos": "adjective", + "word_frequency": 12233 + }, + { + "word": "birthplace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the place where someone was born", + "example_sentence_english": "This town is my birthplace.", + "pos": "noun", + "word_frequency": 12234 + }, + { + "word": "brochure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small book or magazine containing pictures and information", + "example_sentence_english": "I picked up a brochure about the museum.", + "pos": "noun", + "word_frequency": 12237 + }, + { + "word": "brokerage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the business of a broker", + "example_sentence_english": "He works for a large brokerage firm.", + "pos": "noun", + "word_frequency": 12238 + }, + { + "word": "buildup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an accumulation or increase", + "example_sentence_english": "There was a buildup of traffic on the highway.", + "pos": "noun", + "word_frequency": 12239 + }, + { + "word": "butch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masculine (referring to a lesbian woman)", + "example_sentence_english": "She had a very butch style, preferring trousers and short hair.", + "pos": "noun", + "word_frequency": 12240 + }, + { + "word": "catholicism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the faith, practice, and church order of the Roman Catholic Church.", + "example_sentence_english": "Catholicism is one of the largest Christian denominations worldwide.", + "pos": "noun", + "word_frequency": 12243 + }, + { + "word": "civilisation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the stage of human social and cultural development and organization that is considered most advanced.", + "example_sentence_english": "Ancient Egypt was a highly advanced civilisation.", + "pos": "noun", + "word_frequency": 12247 + }, + { + "word": "cobalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard silvery-white metallic element; a deep blue color.", + "example_sentence_english": "The artist used a vibrant cobalt blue in her painting.", + "pos": "noun", + "word_frequency": 12248 + }, + { + "word": "collier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a coal miner; a ship carrying coal.", + "example_sentence_english": "The collier emerged from the mine, covered in dust.", + "pos": "noun", + "word_frequency": 12249 + }, + { + "word": "colossal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely large or great.", + "example_sentence_english": "The project was a colossal undertaking, requiring years of work.", + "pos": "adjective", + "word_frequency": 12250 + }, + { + "word": "commodore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a naval rank; a title for the president of a yacht club.", + "example_sentence_english": "The commodore gave the order to set sail.", + "pos": "noun", + "word_frequency": 12252 + }, + { + "word": "compiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a program that converts instructions into a machine-code or lower-level form.", + "example_sentence_english": "The programmer used a new compiler to optimize the code.", + "pos": "noun", + "word_frequency": 12253 + }, + { + "word": "conserve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protect (something, especially an environmentally or culturally important place or thing) from harm or destruction.", + "example_sentence_english": "We must conserve water during the drought.", + "pos": "verb", + "word_frequency": 12254 + }, + { + "word": "constellation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of stars forming a recognizable pattern.", + "example_sentence_english": "The Big Dipper is a well-known constellation.", + "pos": "noun", + "word_frequency": 12255 + }, + { + "word": "contour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an outline, especially of a curving or irregular figure or mass.", + "example_sentence_english": "The artist carefully drew the contours of the human face.", + "pos": "noun", + "word_frequency": 12256 + }, + { + "word": "crispy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "(of food) pleasantly thin, dry, and easily broken.", + "example_sentence_english": "I love crispy bacon for breakfast.", + "pos": "adjective", + "word_frequency": 12257 + }, + { + "word": "curfew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a regulation requiring people to remain indoors between specified hours.", + "example_sentence_english": "The city imposed a curfew after the protests.", + "pos": "noun", + "word_frequency": 12260 + }, + { + "word": "delusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a false belief or impression that is resistant to reason.", + "example_sentence_english": "He suffered from the delusion that he was a king.", + "pos": "noun", + "word_frequency": 12264 + }, + { + "word": "depreciation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a reduction in the value of an asset over time.", + "example_sentence_english": "The car's depreciation was significant in its first year.", + "pos": "noun", + "word_frequency": 12266 + }, + { + "word": "discontent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissatisfaction with one's circumstances; a state of unhappiness.", + "example_sentence_english": "There was widespread discontent among the workers.", + "pos": "noun", + "word_frequency": 12268 + }, + { + "word": "dopamine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a neurotransmitter that plays a role in pleasure and reward.", + "example_sentence_english": "Exercise can release dopamine, improving mood.", + "pos": "noun", + "word_frequency": 12271 + }, + { + "word": "dune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mound or ridge of sand or other loose sediment formed by the wind.", + "example_sentence_english": "We walked over the sand dunes to reach the beach.", + "pos": "noun", + "word_frequency": 12273 + }, + { + "word": "eclectic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deriving ideas, style, or taste from a broad and diverse range of sources.", + "example_sentence_english": "Her musical taste is very eclectic, ranging from classical to rock.", + "pos": "adjective", + "word_frequency": 12275 + }, + { + "word": "ecstatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or expressing overwhelming happiness or joyful excitement.", + "example_sentence_english": "She was ecstatic when she heard the good news.", + "pos": "adjective", + "word_frequency": 12276 + }, + { + "word": "eject", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "force or throw (something) out, typically in a violent or rapid way.", + "example_sentence_english": "The pilot had to eject from the damaged aircraft.", + "pos": "verb", + "word_frequency": 12277 + }, + { + "word": "endemic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a disease or condition) regularly found among particular people or in a certain area; (of a plant or animal) native or restricted to a certain country or area.", + "example_sentence_english": "Malaria is endemic in tropical regions.", + "pos": "adjective", + "word_frequency": 12278 + }, + { + "word": "entail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involve (something) as a necessary or inevitable consequence.", + "example_sentence_english": "The job will entail a lot of travel.", + "pos": "verb", + "word_frequency": 12279 + }, + { + "word": "envision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imagine as a future possibility", + "example_sentence_english": "She began to envision a world without war.", + "pos": "verb", + "word_frequency": 12280 + }, + { + "word": "eta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "estimated time of arrival", + "example_sentence_english": "What's your ETA?", + "pos": "noun", + "word_frequency": 12281 + }, + { + "word": "fluorescent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emitting light as a result of fluorescence", + "example_sentence_english": "The room was lit by a harsh fluorescent light.", + "pos": "adjective", + "word_frequency": 12282 + }, + { + "word": "freakin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "used as an intensifier", + "example_sentence_english": "That was a freakin' amazing goal!", + "pos": "adjective", + "word_frequency": 12284 + }, + { + "word": "futuristic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or involving very modern technology or design", + "example_sentence_english": "The car had a sleek, futuristic design.", + "pos": "adjective", + "word_frequency": 12286 + }, + { + "word": "hallmark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a distinguishing characteristic or feature", + "example_sentence_english": "Creativity is the hallmark of a good artist.", + "pos": "noun", + "word_frequency": 12287 + }, + { + "word": "haste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessive speed or urgency of movement or action", + "example_sentence_english": "In her haste, she forgot her keys.", + "pos": "noun", + "word_frequency": 12290 + }, + { + "word": "identifiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be recognized or distinguished", + "example_sentence_english": "The suspect had no identifiable features.", + "pos": "adjective", + "word_frequency": 12293 + }, + { + "word": "illiterate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to read or write", + "example_sentence_english": "Many adults in the region are still illiterate.", + "pos": "adjective", + "word_frequency": 12295 + }, + { + "word": "immaculate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perfectly clean, neat, or tidy", + "example_sentence_english": "Her house was always immaculate.", + "pos": "adjective", + "word_frequency": 12296 + }, + { + "word": "improvise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "create and perform spontaneously or without preparation", + "example_sentence_english": "He had to improvise a speech on the spot.", + "pos": "verb", + "word_frequency": 12297 + }, + { + "word": "inclination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's natural tendency or urge to act or feel in a particular way", + "example_sentence_english": "She showed an inclination for music at an early age.", + "pos": "noun", + "word_frequency": 12298 + }, + { + "word": "infest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of insects or animals) be present in large numbers, typically so as to cause damage or disease", + "example_sentence_english": "The old house was infested with mice.", + "pos": "verb", + "word_frequency": 12299 + }, + { + "word": "insurgent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rebel or revolutionary", + "example_sentence_english": "The government forces fought against the insurgents.", + "pos": "noun", + "word_frequency": 12300 + }, + { + "word": "interpersonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to relationships or communication between people", + "example_sentence_english": "Good interpersonal skills are essential for this job.", + "pos": "adjective", + "word_frequency": 12301 + }, + { + "word": "interracial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involving or existing between members of different races", + "example_sentence_english": "They discussed the challenges of interracial marriage.", + "pos": "adjective", + "word_frequency": 12302 + }, + { + "word": "intruder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who intrudes, especially into a building with criminal intent", + "example_sentence_english": "The alarm system detected an intruder.", + "pos": "noun", + "word_frequency": 12303 + }, + { + "word": "inward", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "towards the inside", + "example_sentence_english": "She turned her gaze inward, reflecting on her feelings.", + "pos": "adverb", + "word_frequency": 12304 + }, + { + "word": "ipo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initial public offering", + "example_sentence_english": "The company announced its plans for an IPO next year.", + "pos": "noun", + "word_frequency": 12305 + }, + { + "word": "itch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "have or cause an uncomfortable sensation on the skin that provokes a desire to scratch", + "example_sentence_english": "My arm started to itch after the mosquito bite.", + "pos": "verb", + "word_frequency": 12306 + }, + { + "word": "kinky", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving or characterized by sexual perversions or unusual sexual tastes", + "example_sentence_english": "She had a kinky sense of humor.", + "pos": "adjective", + "word_frequency": 12316 + }, + { + "word": "launcher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for launching a rocket, missile, or other object", + "example_sentence_english": "The rocket launcher was prepared for takeoff.", + "pos": "noun", + "word_frequency": 12317 + }, + { + "word": "legality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being in accordance with the law", + "example_sentence_english": "The legality of the new policy was questioned.", + "pos": "noun", + "word_frequency": 12319 + }, + { + "word": "lessen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make less; to decrease", + "example_sentence_english": "The new policy aims to lessen the impact of pollution.", + "pos": "verb", + "word_frequency": 12321 + }, + { + "word": "lifespan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the length of time for which a person, animal, or thing exists", + "example_sentence_english": "The average lifespan of a dog is about 10 to 13 years.", + "pos": "noun", + "word_frequency": 12322 + }, + { + "word": "longitudinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "running lengthwise; involving long-term study", + "example_sentence_english": "The researchers conducted a longitudinal study over 20 years.", + "pos": "adjective", + "word_frequency": 12323 + }, + { + "word": "loosen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become less tight or firm", + "example_sentence_english": "He had to loosen his tie after the long meeting.", + "pos": "verb", + "word_frequency": 12324 + }, + { + "word": "masculinity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualities or attributes regarded as characteristic of men", + "example_sentence_english": "The film explores themes of identity and masculinity.", + "pos": "noun", + "word_frequency": 12328 + }, + { + "word": "microscopic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely small; visible only with a microscope", + "example_sentence_english": "Bacteria are microscopic organisms.", + "pos": "adjective", + "word_frequency": 12331 + }, + { + "word": "midday", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the middle of the day; noon", + "example_sentence_english": "We usually have lunch around midday.", + "pos": "noun", + "word_frequency": 12332 + }, + { + "word": "morphine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a powerful pain-relieving drug", + "example_sentence_english": "Morphine is used in medicine to relieve severe pain.", + "pos": "noun", + "word_frequency": 12333 + }, + { + "word": "motherhood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being a mother", + "example_sentence_english": "She embraced motherhood with joy and dedication.", + "pos": "noun", + "word_frequency": 12334 + }, + { + "word": "murderous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capable of or intending to murder; extremely dangerous", + "example_sentence_english": "He gave her a murderous look.", + "pos": "adjective", + "word_frequency": 12336 + }, + { + "word": "nirvana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of perfect happiness and peace in Buddhism", + "example_sentence_english": "In Buddhism, the ultimate goal is to achieve nirvana.", + "pos": "noun", + "word_frequency": 12339 + }, + { + "word": "nonstop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without stopping; continuous", + "example_sentence_english": "The train made a nonstop journey to the capital.", + "pos": "adjective", + "word_frequency": 12340 + }, + { + "word": "oatmeal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of porridge made from oats", + "example_sentence_english": "I like to eat oatmeal for breakfast.", + "pos": "noun", + "word_frequency": 12342 + }, + { + "word": "opaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be seen through; not transparent", + "example_sentence_english": "The window was made of opaque glass.", + "pos": "adjective", + "word_frequency": 12343 + }, + { + "word": "ordnance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "military weapons, ammunition, and equipment", + "example_sentence_english": "The army's ordnance depot stores all its weapons.", + "pos": "noun", + "word_frequency": 12344 + }, + { + "word": "otter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a carnivorous mammal that lives in or near water", + "example_sentence_english": "We saw an otter swimming in the river.", + "pos": "noun", + "word_frequency": 12345 + }, + { + "word": "pelvic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the pelvis", + "example_sentence_english": "The doctor examined the patient's pelvic area.", + "pos": "adjective", + "word_frequency": 12346 + }, + { + "word": "percussion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the striking of one body against another; musical instruments played by striking", + "example_sentence_english": "He plays the percussion instruments in the orchestra.", + "pos": "noun", + "word_frequency": 12347 + }, + { + "word": "pigment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the natural coloring matter of animal or plant tissue", + "example_sentence_english": "Chlorophyll is the green pigment in plants.", + "pos": "noun", + "word_frequency": 12348 + }, + { + "word": "populist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of a political approach that appeals to ordinary people", + "example_sentence_english": "The candidate adopted a populist stance to gain votes.", + "pos": "adjective", + "word_frequency": 12350 + }, + { + "word": "porous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having minute holes through which liquid or air may pass", + "example_sentence_english": "The rock was porous and absorbed water quickly.", + "pos": "adjective", + "word_frequency": 12351 + }, + { + "word": "predictive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or having the power to predict", + "example_sentence_english": "The model has strong predictive power for future trends.", + "pos": "adjective", + "word_frequency": 12352 + }, + { + "word": "registrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official who keeps records, especially of births, marriages, and deaths", + "example_sentence_english": "You need to speak to the university registrar about your enrollment.", + "pos": "noun", + "word_frequency": 12353 + }, + { + "word": "rein", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow strap attached to a bridle; a means of control", + "example_sentence_english": "The rider pulled on the reins to stop the horse.", + "pos": "noun", + "word_frequency": 12354 + }, + { + "word": "reuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to use again or more than once", + "example_sentence_english": "We should try to reuse plastic bags to protect the environment.", + "pos": "verb", + "word_frequency": 12355 + }, + { + "word": "roadway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a road used by vehicles", + "example_sentence_english": "The roadway was wet and slippery after the rain.", + "pos": "noun", + "word_frequency": 12359 + }, + { + "word": "rustic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rural; simple and unsophisticated", + "example_sentence_english": "They stayed in a rustic cabin in the mountains.", + "pos": "adjective", + "word_frequency": 12361 + }, + { + "word": "sanitary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygienic; clean", + "example_sentence_english": "It's important to maintain sanitary conditions in the kitchen.", + "pos": "adjective", + "word_frequency": 12364 + }, + { + "word": "saturation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being completely full or soaked", + "example_sentence_english": "The market has reached saturation point for smartphones.", + "pos": "noun", + "word_frequency": 12366 + }, + { + "word": "scarcity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortage; insufficiency", + "example_sentence_english": "There is a scarcity of clean water in some regions.", + "pos": "noun", + "word_frequency": 12367 + }, + { + "word": "scorpion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a predatory arachnid with a segmented tail ending in a venomous sting", + "example_sentence_english": "Be careful, there might be a scorpion under that rock.", + "pos": "noun", + "word_frequency": 12368 + }, + { + "word": "setback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a reversal or delay in progress", + "example_sentence_english": "The project suffered a major setback due to funding cuts.", + "pos": "noun", + "word_frequency": 12369 + }, + { + "word": "shrub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woody plant smaller than a tree, typically with multiple stems", + "example_sentence_english": "The garden was full of flowering shrubs.", + "pos": "noun", + "word_frequency": 12370 + }, + { + "word": "sizable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairly large", + "example_sentence_english": "They made a sizable donation to the charity.", + "pos": "adjective", + "word_frequency": 12371 + }, + { + "word": "slipper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft, comfortable shoe for wearing indoors", + "example_sentence_english": "She put on her warm slippers after a long day.", + "pos": "noun", + "word_frequency": 12372 + }, + { + "word": "spartan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "austere; simple and lacking in comfort", + "example_sentence_english": "His room was spartan, with only a bed and a desk.", + "pos": "adjective", + "word_frequency": 12374 + }, + { + "word": "subdue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome, quieten, or bring under control", + "example_sentence_english": "The police managed to subdue the suspect.", + "pos": "verb", + "word_frequency": 12375 + }, + { + "word": "tack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, sharp-pointed nail; a course of action", + "example_sentence_english": "He changed tack and decided to approach the problem differently.", + "pos": "noun", + "word_frequency": 12376 + }, + { + "word": "tart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a sharp or sour taste", + "example_sentence_english": "The lemon juice was very tart.", + "pos": "adjective", + "word_frequency": 12377 + }, + { + "word": "toothpaste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a paste used for cleaning teeth", + "example_sentence_english": "Don't forget to put the cap back on the toothpaste.", + "pos": "noun", + "word_frequency": 12379 + }, + { + "word": "transient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lasting only for a short time; impermanent", + "example_sentence_english": "The city has a large transient population.", + "pos": "adjective", + "word_frequency": 12380 + }, + { + "word": "triumphant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having achieved victory or success; exultant", + "example_sentence_english": "The team returned home triumphant after winning the championship.", + "pos": "adjective", + "word_frequency": 12381 + }, + { + "word": "umpire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an official who watches a game or match closely to ensure that the rules are adhered to", + "example_sentence_english": "The umpire made a controversial call.", + "pos": "noun", + "word_frequency": 12382 + }, + { + "word": "unborn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not yet born", + "example_sentence_english": "She felt a strong connection to her unborn child.", + "pos": "adjective", + "word_frequency": 12383 + }, + { + "word": "undisclosed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not revealed or made known", + "example_sentence_english": "The terms of the agreement remain undisclosed.", + "pos": "adjective", + "word_frequency": 12384 + }, + { + "word": "undone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not done or finished; unfastened", + "example_sentence_english": "Her shoelaces came undone.", + "pos": "adjective", + "word_frequency": 12385 + }, + { + "word": "unheard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not heard or listened to; unprecedented", + "example_sentence_english": "Such a request was unheard of.", + "pos": "adjective", + "word_frequency": 12386 + }, + { + "word": "vend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sell (goods), especially from a machine or stall", + "example_sentence_english": "The machine vends snacks and drinks.", + "pos": "verb", + "word_frequency": 12387 + }, + { + "word": "vicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a priest in the Church of England who is in charge of a parish", + "example_sentence_english": "The vicar delivered a sermon on kindness.", + "pos": "noun", + "word_frequency": 12388 + }, + { + "word": "woe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great sorrow or distress", + "example_sentence_english": "The country was plunged into economic woe.", + "pos": "noun", + "word_frequency": 12390 + }, + { + "word": "wrench", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool for gripping and turning nuts or bolts; a sudden, violent twist or pull", + "example_sentence_english": "He used a wrench to tighten the bolt.", + "pos": "noun", + "word_frequency": 12391 + }, + { + "word": "wretched", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a very unhappy or unfortunate state; of poor quality", + "example_sentence_english": "The wretched conditions in the slum shocked them.", + "pos": "adjective", + "word_frequency": 12392 + }, + { + "word": "adolescence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the period of development from the onset of puberty to maturity", + "example_sentence_english": "Adolescence is a time of significant change.", + "pos": "noun", + "word_frequency": 12398 + }, + { + "word": "affirm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state publicly or officially that something is true", + "example_sentence_english": "She affirmed her commitment to the project.", + "pos": "verb", + "word_frequency": 12399 + }, + { + "word": "afterlife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life after death", + "example_sentence_english": "Many religions have beliefs about the afterlife.", + "pos": "noun", + "word_frequency": 12400 + }, + { + "word": "ammonia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pungent gas", + "example_sentence_english": "Ammonia is often used in cleaning products.", + "pos": "noun", + "word_frequency": 12401 + }, + { + "word": "analogous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comparable", + "example_sentence_english": "The human heart is analogous to a pump.", + "pos": "adj", + "word_frequency": 12402 + }, + { + "word": "anarchist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who believes in anarchy", + "example_sentence_english": "The anarchist protested against all forms of government.", + "pos": "noun", + "word_frequency": 12403 + }, + { + "word": "anecdote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short amusing story", + "example_sentence_english": "He shared a funny anecdote about his childhood.", + "pos": "noun", + "word_frequency": 12404 + }, + { + "word": "apron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a protective garment", + "example_sentence_english": "She put on her apron before baking the cake.", + "pos": "noun", + "word_frequency": 12407 + }, + { + "word": "archaic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very old or old-fashioned", + "example_sentence_english": "The word 'thee' is archaic in modern English.", + "pos": "adj", + "word_frequency": 12408 + }, + { + "word": "attribution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of crediting", + "example_sentence_english": "Proper attribution is essential when citing sources.", + "pos": "noun", + "word_frequency": 12410 + }, + { + "word": "baffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse completely", + "example_sentence_english": "The complex instructions baffled the students.", + "pos": "verb", + "word_frequency": 12412 + }, + { + "word": "biochemistry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of chemical processes in living organisms", + "example_sentence_english": "She is studying biochemistry at university.", + "pos": "noun", + "word_frequency": 12416 + }, + { + "word": "bop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light hit or a style of jazz", + "example_sentence_english": "He gave the ball a gentle bop.", + "pos": "noun", + "word_frequency": 12419 + }, + { + "word": "burr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rough edge or a whirring sound", + "example_sentence_english": "The metal had a sharp burr.", + "pos": "noun", + "word_frequency": 12421 + }, + { + "word": "carb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carbohydrate (informal)", + "example_sentence_english": "I'm trying to cut down on carbs.", + "pos": "noun", + "word_frequency": 12422 + }, + { + "word": "cavalier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a supporter of King Charles I in the English Civil War", + "example_sentence_english": "The Cavaliers fought against the Roundheads.", + "pos": "noun", + "word_frequency": 12423 + }, + { + "word": "centennial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a hundredth anniversary", + "example_sentence_english": "The city is celebrating its centennial anniversary this year.", + "pos": "adj", + "word_frequency": 12424 + }, + { + "word": "clover", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small plant with three-lobed leaves", + "example_sentence_english": "The field was full of green clover.", + "pos": "noun", + "word_frequency": 12427 + }, + { + "word": "coating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a layer of a substance covering a surface", + "example_sentence_english": "The candy had a sugar coating.", + "pos": "noun", + "word_frequency": 12429 + }, + { + "word": "colonization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of settling among and establishing control over the indigenous people of an area", + "example_sentence_english": "The colonization of new lands had a profound impact on history.", + "pos": "noun", + "word_frequency": 12430 + }, + { + "word": "cookbook", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a book of recipes", + "example_sentence_english": "She found a new recipe in her favorite cookbook.", + "pos": "noun", + "word_frequency": 12432 + }, + { + "word": "cosmopolitan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "familiar with and at ease in many different countries and cultures", + "example_sentence_english": "New York is a truly cosmopolitan city.", + "pos": "adj", + "word_frequency": 12434 + }, + { + "word": "coyote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wild dog native to North America", + "example_sentence_english": "We heard a coyote howling in the distance.", + "pos": "noun", + "word_frequency": 12435 + }, + { + "word": "deductible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be deducted from taxable income or an insurance claim", + "example_sentence_english": "The medical expenses were tax deductible.", + "pos": "adj", + "word_frequency": 12439 + }, + { + "word": "diagonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Slanting; connecting opposite corners.", + "example_sentence_english": "Draw a diagonal line from one corner to the other.", + "pos": "adj", + "word_frequency": 12440 + }, + { + "word": "discredit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To harm the good reputation of.", + "example_sentence_english": "The scandal served to discredit the politician.", + "pos": "verb", + "word_frequency": 12441 + }, + { + "word": "dresser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A piece of furniture with drawers for clothes.", + "example_sentence_english": "She put her folded clothes in the dresser.", + "pos": "noun", + "word_frequency": 12443 + }, + { + "word": "dysfunctional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not operating normally or properly.", + "example_sentence_english": "They grew up in a dysfunctional family environment.", + "pos": "adj", + "word_frequency": 12445 + }, + { + "word": "elm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of deciduous tree.", + "example_sentence_english": "The old elm tree stood tall in the park.", + "pos": "noun", + "word_frequency": 12446 + }, + { + "word": "equitable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Fair and impartial.", + "example_sentence_english": "They sought an equitable solution for all parties involved.", + "pos": "adj", + "word_frequency": 12448 + }, + { + "word": "estrogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A group of steroid hormones that promote the development and maintenance of female characteristics of the body.", + "example_sentence_english": "Estrogen plays a key role in the female reproductive system.", + "pos": "noun", + "word_frequency": 12449 + }, + { + "word": "exert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To apply or bring to bear (a force, influence, or quality).", + "example_sentence_english": "He had to exert a lot of effort to lift the heavy box.", + "pos": "verb", + "word_frequency": 12451 + }, + { + "word": "felicity", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Intense happiness; the ability to find appropriate expression for one's thoughts.", + "example_sentence_english": "She expressed her thoughts with great felicity.", + "pos": "noun", + "word_frequency": 12452 + }, + { + "word": "feudal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the system of feudalism.", + "example_sentence_english": "The feudal system dominated medieval Europe.", + "pos": "adj", + "word_frequency": 12454 + }, + { + "word": "flatten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To make or become flat.", + "example_sentence_english": "The steamroller will flatten the road.", + "pos": "verb", + "word_frequency": 12455 + }, + { + "word": "fleece", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The woolly covering of a sheep or similar animal; a soft warm fabric.", + "example_sentence_english": "She wore a warm fleece jacket.", + "pos": "noun", + "word_frequency": 12456 + }, + { + "word": "fodder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Food, especially dried hay or straw, for livestock; material used for a particular purpose.", + "example_sentence_english": "The old documents provided excellent fodder for the historian's research.", + "pos": "noun", + "word_frequency": 12457 + }, + { + "word": "fumble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To handle clumsily or ineffectively.", + "example_sentence_english": "He fumbled with the keys before opening the door.", + "pos": "verb", + "word_frequency": 12458 + }, + { + "word": "giggle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A light, silly, or nervous laugh.", + "example_sentence_english": "We heard a little giggle from the next room.", + "pos": "noun", + "word_frequency": 12460 + }, + { + "word": "glare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A fierce or angry stare; a strong, harsh light.", + "example_sentence_english": "She gave him a fierce glare.", + "pos": "noun", + "word_frequency": 12462 + }, + { + "word": "gourmet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or involving high-quality food or drink.", + "example_sentence_english": "They enjoyed a gourmet meal at the new restaurant.", + "pos": "adj", + "word_frequency": 12464 + }, + { + "word": "handheld", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Designed to be held in the hand.", + "example_sentence_english": "He bought a new handheld gaming device.", + "pos": "adj", + "word_frequency": 12465 + }, + { + "word": "handshake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "An act of clasping a person's hand, used as a greeting or to show agreement.", + "example_sentence_english": "They sealed the deal with a firm handshake.", + "pos": "noun", + "word_frequency": 12466 + }, + { + "word": "hefty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Large, heavy, and powerful.", + "example_sentence_english": "He carried a hefty bag of groceries.", + "pos": "adj", + "word_frequency": 12468 + }, + { + "word": "herbal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to or made from herbs.", + "example_sentence_english": "She prefers herbal tea to coffee.", + "pos": "adj", + "word_frequency": 12470 + }, + { + "word": "hippie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person of a counterculture movement of the 1960s.", + "example_sentence_english": "My grandparents were hippies in the 60s.", + "pos": "noun", + "word_frequency": 12472 + }, + { + "word": "hump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A rounded protuberance on the back of a camel or other animal, or on a person's back.", + "example_sentence_english": "The camel has two humps on its back.", + "pos": "noun", + "word_frequency": 12474 + }, + { + "word": "idiotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Very stupid.", + "example_sentence_english": "That was an idiotic thing to say.", + "pos": "adj", + "word_frequency": 12475 + }, + { + "word": "incarceration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state of being confined in prison; imprisonment.", + "example_sentence_english": "The judge ordered his incarceration for five years.", + "pos": "noun", + "word_frequency": 12476 + }, + { + "word": "incest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sexual relations between people who are too closely related to marry.", + "example_sentence_english": "The novel dealt with the difficult topic of incest.", + "pos": "noun", + "word_frequency": 12477 + }, + { + "word": "insertion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of inserting something.", + "example_sentence_english": "The insertion of the key into the lock was difficult.", + "pos": "noun", + "word_frequency": 12478 + }, + { + "word": "interruption", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An act of interrupting or being interrupted.", + "example_sentence_english": "We had a brief interruption during the meeting.", + "pos": "noun", + "word_frequency": 12479 + }, + { + "word": "lattice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A framework or structure of crossed wood or metal strips", + "example_sentence_english": "The rose climbed up the wooden lattice.", + "pos": "noun", + "word_frequency": 12484 + }, + { + "word": "legitimately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lawfully; genuinely", + "example_sentence_english": "He legitimately earned his promotion.", + "pos": "adv", + "word_frequency": 12485 + }, + { + "word": "linebacker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A defensive player in American football", + "example_sentence_english": "The linebacker tackled the opposing player.", + "pos": "noun", + "word_frequency": 12487 + }, + { + "word": "magically", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a way that seems to involve magic", + "example_sentence_english": "The rabbit magically disappeared from the hat.", + "pos": "adv", + "word_frequency": 12491 + }, + { + "word": "marketer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or company that advertises or promotes a product", + "example_sentence_english": "The marketer developed a new campaign.", + "pos": "noun", + "word_frequency": 12492 + }, + { + "word": "mastermind", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who plans and directs an intricate and complex project or activity", + "example_sentence_english": "He was the mastermind behind the entire operation.", + "pos": "noun", + "word_frequency": 12493 + }, + { + "word": "materially", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Significantly; substantially", + "example_sentence_english": "The new policy will materially affect our profits.", + "pos": "adv", + "word_frequency": 12494 + }, + { + "word": "metadata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Data that provides information about other data", + "example_sentence_english": "The metadata helps organize the digital files.", + "pos": "noun", + "word_frequency": 12495 + }, + { + "word": "mischief", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Playful misbehavior or trouble", + "example_sentence_english": "The children were always getting into mischief.", + "pos": "noun", + "word_frequency": 12497 + }, + { + "word": "modernization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process of adapting something to modern needs or habits", + "example_sentence_english": "The modernization of the factory improved efficiency.", + "pos": "noun", + "word_frequency": 12498 + }, + { + "word": "noticeably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a way that is easy to observe", + "example_sentence_english": "Her health has noticeably improved.", + "pos": "adv", + "word_frequency": 12501 + }, + { + "word": "occupancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act of occupying or taking possession of a building or land", + "example_sentence_english": "The hotel has a high occupancy rate.", + "pos": "noun", + "word_frequency": 12502 + }, + { + "word": "oncology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "The study and treatment of tumors", + "example_sentence_english": "She decided to specialize in oncology.", + "pos": "noun", + "word_frequency": 12504 + }, + { + "word": "outsource", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To obtain goods or a service from an outside or foreign supplier", + "example_sentence_english": "Many companies outsource their customer service.", + "pos": "verb", + "word_frequency": 12505 + }, + { + "word": "overrun", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To spread over or occupy (a place) in large numbers; to exceed (a limit or cost)", + "example_sentence_english": "The weeds have overrun the garden.", + "pos": "verb", + "word_frequency": 12506 + }, + { + "word": "pasture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Land covered with grass and other low plants suitable for grazing animals", + "example_sentence_english": "The cows grazed peacefully in the green pasture.", + "pos": "noun", + "word_frequency": 12507 + }, + { + "word": "pathological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or caused by disease; compulsive or obsessive", + "example_sentence_english": "He was a pathological liar.", + "pos": "adj", + "word_frequency": 12508 + }, + { + "word": "payload", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The part of a vehicle's load that consists of goods or passengers; the explosive warhead of a missile", + "example_sentence_english": "The rocket carried a scientific payload into space.", + "pos": "noun", + "word_frequency": 12509 + }, + { + "word": "payout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large payment of money", + "example_sentence_english": "The insurance company made a large payout after the accident.", + "pos": "noun", + "word_frequency": 12510 + }, + { + "word": "pertinent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relevant or applicable to a particular matter", + "example_sentence_english": "Please provide all pertinent information.", + "pos": "adj", + "word_frequency": 12513 + }, + { + "word": "plentiful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Existing in large quantities or numbers", + "example_sentence_english": "Food was plentiful during the harvest season.", + "pos": "adj", + "word_frequency": 12514 + }, + { + "word": "plumber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person who installs and repairs pipes and fittings for water, gas, or sanitation", + "example_sentence_english": "We called a plumber to fix the leaky faucet.", + "pos": "noun", + "word_frequency": 12515 + }, + { + "word": "purchaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who buys something", + "example_sentence_english": "The purchaser signed the contract.", + "pos": "noun", + "word_frequency": 12518 + }, + { + "word": "rarity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being rare", + "example_sentence_english": "The rarity of the stamp made it very valuable.", + "pos": "noun", + "word_frequency": 12520 + }, + { + "word": "realty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate; property", + "example_sentence_english": "He works in commercial realty.", + "pos": "noun", + "word_frequency": 12521 + }, + { + "word": "rebellious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing a desire to resist authority, control, or convention", + "example_sentence_english": "The rebellious teenager often argued with his parents.", + "pos": "adj", + "word_frequency": 12522 + }, + { + "word": "reptile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cold-blooded vertebrate of a class that includes snakes, lizards, crocodiles, turtles, and tortoises", + "example_sentence_english": "Snakes are a type of reptile.", + "pos": "noun", + "word_frequency": 12523 + }, + { + "word": "revisit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to visit again or reconsider", + "example_sentence_english": "We should revisit this topic in our next meeting.", + "pos": "verb", + "word_frequency": 12524 + }, + { + "word": "satirical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "containing or using satire", + "example_sentence_english": "The play was a satirical commentary on modern politics.", + "pos": "adj", + "word_frequency": 12526 + }, + { + "word": "screening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the showing of a film or television program; a test or examination", + "example_sentence_english": "There will be a special screening of the new movie tonight.", + "pos": "noun", + "word_frequency": 12527 + }, + { + "word": "sensual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving gratification of the senses and physical, especially sexual, pleasure", + "example_sentence_english": "The artist used sensual colors in her painting.", + "pos": "adj", + "word_frequency": 12528 + }, + { + "word": "slump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden severe or prolonged fall in the price, value, or amount of something", + "example_sentence_english": "The company is experiencing a sales slump.", + "pos": "noun", + "word_frequency": 12529 + }, + { + "word": "soften", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become soft or softer", + "example_sentence_english": "You can soften the butter by leaving it out of the fridge.", + "pos": "verb", + "word_frequency": 12530 + }, + { + "word": "souvenir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thing that is kept as a reminder of a person, place, or event", + "example_sentence_english": "I bought a souvenir T-shirt from Paris.", + "pos": "noun", + "word_frequency": 12532 + }, + { + "word": "spaceship", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a vehicle used for travel in outer space", + "example_sentence_english": "Astronauts travel in a spaceship.", + "pos": "noun", + "word_frequency": 12533 + }, + { + "word": "spaniard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of Spain", + "example_sentence_english": "My friend is a Spaniard.", + "pos": "noun", + "word_frequency": 12534 + }, + { + "word": "sparse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thinly dispersed or scattered", + "example_sentence_english": "The population in the desert is very sparse.", + "pos": "adj", + "word_frequency": 12535 + }, + { + "word": "spinner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that spins", + "example_sentence_english": "The fishing lure had a small spinner.", + "pos": "noun", + "word_frequency": 12536 + }, + { + "word": "steamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boat or ship powered by steam; a cooking pot with a perforated bottom", + "example_sentence_english": "We cooked the vegetables in a steamer.", + "pos": "noun", + "word_frequency": 12537 + }, + { + "word": "subsidize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to support (an organization or activity) financially", + "example_sentence_english": "The government decided to subsidize public transport.", + "pos": "verb", + "word_frequency": 12538 + }, + { + "word": "suction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act or process of sucking", + "example_sentence_english": "The vacuum cleaner uses suction to pick up dirt.", + "pos": "noun", + "word_frequency": 12539 + }, + { + "word": "sunflower", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tall North American plant of the daisy family, with very large golden-rayed flowers", + "example_sentence_english": "The sunflower turned its head towards the sun.", + "pos": "noun", + "word_frequency": 12540 + }, + { + "word": "supplementary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completing or enhancing something", + "example_sentence_english": "The teacher provided supplementary materials for the students.", + "pos": "adj", + "word_frequency": 12541 + }, + { + "word": "surveyor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose job is to survey land or buildings", + "example_sentence_english": "The surveyor measured the boundaries of the property.", + "pos": "noun", + "word_frequency": 12542 + }, + { + "word": "temperament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's or animal's nature, especially as it permanently affects their behavior", + "example_sentence_english": "She has a calm temperament.", + "pos": "noun", + "word_frequency": 12543 + }, + { + "word": "thirteenth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "constituting number thirteen in a sequence", + "example_sentence_english": "Today is the thirteenth of the month.", + "pos": "num", + "word_frequency": 12544 + }, + { + "word": "topless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not wearing clothes on the upper part of the body", + "example_sentence_english": "She was sunbathing topless on the beach.", + "pos": "adj", + "word_frequency": 12545 + }, + { + "word": "torment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "severe physical or mental suffering", + "example_sentence_english": "He endured years of torment.", + "pos": "noun", + "word_frequency": 12546 + }, + { + "word": "tyrant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cruel and oppressive ruler", + "example_sentence_english": "The people rebelled against the tyrant.", + "pos": "noun", + "word_frequency": 12547 + }, + { + "word": "unattractive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not pleasing or appealing to the eye or mind", + "example_sentence_english": "The old building was quite unattractive.", + "pos": "adj", + "word_frequency": 12548 + }, + { + "word": "unbeaten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not defeated", + "example_sentence_english": "The team remained unbeaten throughout the season.", + "pos": "adj", + "word_frequency": 12549 + }, + { + "word": "understatement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the presentation of something as being smaller, worse, or less important than it actually is", + "example_sentence_english": "To say it was difficult would be an understatement.", + "pos": "noun", + "word_frequency": 12550 + }, + { + "word": "undesirable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not wanted or desirable because harmful, objectionable, or unpleasant", + "example_sentence_english": "The new policy had some undesirable consequences.", + "pos": "adj", + "word_frequency": 12551 + }, + { + "word": "unfairly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that is not fair or just", + "example_sentence_english": "He felt he was treated unfairly.", + "pos": "adv", + "word_frequency": 12552 + }, + { + "word": "unification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of being united or made into a whole", + "example_sentence_english": "The unification of the two countries was a historic event.", + "pos": "noun", + "word_frequency": 12553 + }, + { + "word": "wastewater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water that has been used in the home, in a business, or in industry, and that contains substances that are harmful to the environment", + "example_sentence_english": "The factory treats its wastewater before releasing it.", + "pos": "noun", + "word_frequency": 12554 + }, + { + "word": "weaponry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weapons collectively", + "example_sentence_english": "The country is investing heavily in modern weaponry.", + "pos": "noun", + "word_frequency": 12556 + }, + { + "word": "webpage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a document connected to the World Wide Web and viewable with a web browser", + "example_sentence_english": "You can find more information on our webpage.", + "pos": "noun", + "word_frequency": 12557 + }, + { + "word": "wildfire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, destructive fire that spreads quickly over woodland or brush", + "example_sentence_english": "The dry conditions led to a massive wildfire.", + "pos": "noun", + "word_frequency": 12558 + }, + { + "word": "withhold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to refuse to give (something that is due to or is desired by another)", + "example_sentence_english": "The company decided to withhold payment until the work was completed.", + "pos": "verb", + "word_frequency": 12559 + }, + { + "word": "wreath", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a circular arrangement of flowers, leaves, or stems", + "example_sentence_english": "She hung a festive wreath on the front door for the holidays.", + "pos": "noun", + "word_frequency": 12560 + }, + { + "word": "afar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from a distance", + "example_sentence_english": "We could see the city lights from afar.", + "pos": "adv", + "word_frequency": 12564 + }, + { + "word": "affectionate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showing love or warmth", + "example_sentence_english": "He was an affectionate child, always hugging his parents.", + "pos": "adj", + "word_frequency": 12565 + }, + { + "word": "agitate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone troubled or nervous; to stir up", + "example_sentence_english": "The protestors continued to agitate for change.", + "pos": "verb", + "word_frequency": 12567 + }, + { + "word": "annuity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fixed sum of money paid to someone each year, typically for the rest of their life", + "example_sentence_english": "He invested in an annuity to ensure a steady income in retirement.", + "pos": "noun", + "word_frequency": 12571 + }, + { + "word": "arouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to awaken or stimulate (a feeling or reaction)", + "example_sentence_english": "The strange noise aroused his suspicion.", + "pos": "verb", + "word_frequency": 12572 + }, + { + "word": "authentication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of verifying the identity of a user or process", + "example_sentence_english": "Two-factor authentication adds an extra layer of security.", + "pos": "noun", + "word_frequency": 12574 + }, + { + "word": "awaken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wake up; to stir into action", + "example_sentence_english": "The loud thunder awakened the sleeping child.", + "pos": "verb", + "word_frequency": 12575 + }, + { + "word": "azure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bright blue in color, like a cloudless sky", + "example_sentence_english": "The calm sea reflected the azure sky.", + "pos": "adj", + "word_frequency": 12576 + }, + { + "word": "bedside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area next to a bed", + "example_sentence_english": "She kept a glass of water on her bedside table.", + "pos": "noun", + "word_frequency": 12577 + }, + { + "word": "besiege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to surround (a place) with armed forces in order to capture it or force its surrender", + "example_sentence_english": "The army decided to besiege the castle for several weeks.", + "pos": "verb", + "word_frequency": 12579 + }, + { + "word": "biologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a scientist who studies living organisms", + "example_sentence_english": "The biologist conducted research on marine life.", + "pos": "noun", + "word_frequency": 12580 + }, + { + "word": "bonnet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hat, typically one tied under the chin and worn by babies or women in the past; the hood of a car (British English)", + "example_sentence_english": "She wore a straw bonnet to protect herself from the sun.", + "pos": "noun", + "word_frequency": 12584 + }, + { + "word": "byzantine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Byzantium or the Byzantine Empire; (of a system or process) excessively complicated, and typically involving a great deal of administrative detail", + "example_sentence_english": "The company's internal procedures were so byzantine that no one understood them.", + "pos": "adj", + "word_frequency": 12587 + }, + { + "word": "cadet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a trainee in the armed services or police force", + "example_sentence_english": "The young cadet was eager to begin his training.", + "pos": "noun", + "word_frequency": 12588 + }, + { + "word": "casing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a protective covering or housing", + "example_sentence_english": "The bullet casing was found at the crime scene.", + "pos": "noun", + "word_frequency": 12589 + }, + { + "word": "catfish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of fish with prominent barbels around the mouth", + "example_sentence_english": "He caught a large catfish in the river.", + "pos": "noun", + "word_frequency": 12591 + }, + { + "word": "clerical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to office work; relating to the clergy", + "example_sentence_english": "She applied for a clerical position at the law firm.", + "pos": "adj", + "word_frequency": 12593 + }, + { + "word": "collage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece of art made by sticking various different materials onto a backing", + "example_sentence_english": "The artist created a beautiful collage from old photographs.", + "pos": "noun", + "word_frequency": 12594 + }, + { + "word": "colonist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a settler in a new colony", + "example_sentence_english": "The first colonists faced many hardships in the new land.", + "pos": "noun", + "word_frequency": 12595 + }, + { + "word": "complimentary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressing a compliment; given or supplied free of charge", + "example_sentence_english": "The hotel offered complimentary breakfast to all guests.", + "pos": "adj", + "word_frequency": 12596 + }, + { + "word": "computation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of mathematical calculation", + "example_sentence_english": "The computation of the complex formula took several hours.", + "pos": "noun", + "word_frequency": 12597 + }, + { + "word": "conjecture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an opinion or conclusion formed on the basis of incomplete information", + "example_sentence_english": "His theory was based on pure conjecture rather than solid evidence.", + "pos": "noun", + "word_frequency": 12598 + }, + { + "word": "conspicuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standing out so as to be clearly visible; attracting notice or attention", + "example_sentence_english": "He felt conspicuous in his bright red suit at the formal event.", + "pos": "adj", + "word_frequency": 12599 + }, + { + "word": "contradict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state the opposite of", + "example_sentence_english": "His actions contradict his words.", + "pos": "verb", + "word_frequency": 12601 + }, + { + "word": "crackdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a severe measure to restrict undesirable activities", + "example_sentence_english": "The government announced a crackdown on illegal street racing.", + "pos": "noun", + "word_frequency": 12602 + }, + { + "word": "craze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a temporary enthusiasm for something", + "example_sentence_english": "The new video game caused a worldwide craze.", + "pos": "noun", + "word_frequency": 12603 + }, + { + "word": "crusader", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who campaigns vigorously for political, social, or religious change", + "example_sentence_english": "She became a crusader for environmental protection.", + "pos": "noun", + "word_frequency": 12604 + }, + { + "word": "cybersecurity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being protected against the criminal or unauthorized use of electronic data", + "example_sentence_english": "Cybersecurity is a growing concern for businesses.", + "pos": "noun", + "word_frequency": 12606 + }, + { + "word": "degrade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to treat or regard someone with contempt or disrespect; to break down or deteriorate", + "example_sentence_english": "Pollution can degrade the quality of the environment.", + "pos": "verb", + "word_frequency": 12608 + }, + { + "word": "deli", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a shop selling ready-to-eat food products", + "example_sentence_english": "Let's grab a sandwich at the deli.", + "pos": "noun", + "word_frequency": 12609 + }, + { + "word": "deteriorate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become progressively worse", + "example_sentence_english": "The patient's condition began to deteriorate rapidly.", + "pos": "verb", + "word_frequency": 12610 + }, + { + "word": "dui", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Driving Under the Influence (a legal offense)", + "example_sentence_english": "He was arrested for a DUI last night.", + "pos": "noun", + "word_frequency": 12611 + }, + { + "word": "dyer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose trade is dyeing cloth", + "example_sentence_english": "The dyer carefully mixed the colors for the fabric.", + "pos": "noun", + "word_frequency": 12613 + }, + { + "word": "elongate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make something longer", + "example_sentence_english": "The artist tried to elongate the figures in the painting.", + "pos": "verb", + "word_frequency": 12614 + }, + { + "word": "enamel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a glassy substance applied to metal, pottery, or other surfaces as an ornamental or protective coating", + "example_sentence_english": "The old bathtub had chipped enamel.", + "pos": "noun", + "word_frequency": 12615 + }, + { + "word": "evict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expel someone from a property, especially with the support of the law", + "example_sentence_english": "The landlord threatened to evict the tenants for not paying rent.", + "pos": "verb", + "word_frequency": 12616 + }, + { + "word": "exceedingly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to an unusually great degree; extremely", + "example_sentence_english": "The task was exceedingly difficult.", + "pos": "adv", + "word_frequency": 12617 + }, + { + "word": "excessively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to an extent that is too much", + "example_sentence_english": "He worries excessively about his grades.", + "pos": "adv", + "word_frequency": 12618 + }, + { + "word": "farmland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "land used for farming", + "example_sentence_english": "The region is known for its rich farmland.", + "pos": "noun", + "word_frequency": 12619 + }, + { + "word": "fiercely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a ferocious or intense manner", + "example_sentence_english": "The wind blew fiercely during the storm.", + "pos": "adv", + "word_frequency": 12620 + }, + { + "word": "fourteenth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coming after the thirteenth in order", + "example_sentence_english": "Today is the fourteenth of July.", + "pos": "num", + "word_frequency": 12621 + }, + { + "word": "fps", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frames per second (a measure of video or game performance)", + "example_sentence_english": "The game runs smoothly at 60 FPS.", + "pos": "noun", + "word_frequency": 12622 + }, + { + "word": "frontline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the most important or active position in a debate or conflict", + "example_sentence_english": "Nurses are on the frontline of healthcare.", + "pos": "noun", + "word_frequency": 12623 + }, + { + "word": "genealogy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of families and the tracing of their lineages and history", + "example_sentence_english": "She spent years researching her family's genealogy.", + "pos": "noun", + "word_frequency": 12624 + }, + { + "word": "geographically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a geographical sense; with regard to geography", + "example_sentence_english": "The two cities are geographically close.", + "pos": "adv", + "word_frequency": 12625 + }, + { + "word": "goggle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spectacles worn to protect the eyes from glare, dust, water, etc.", + "example_sentence_english": "He put on his swimming goggles before diving into the pool.", + "pos": "noun", + "word_frequency": 12627 + }, + { + "word": "golfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays golf", + "example_sentence_english": "The golfer hit the ball straight down the fairway.", + "pos": "noun", + "word_frequency": 12628 + }, + { + "word": "grammatical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conforming to the rules of grammar", + "example_sentence_english": "You need to check if your sentences are grammatical.", + "pos": "adj", + "word_frequency": 12629 + }, + { + "word": "graphite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gray, crystalline allotropic form of carbon that occurs as a mineral in some rocks and can be made from coke", + "example_sentence_english": "Pencil lead is made of graphite.", + "pos": "noun", + "word_frequency": 12630 + }, + { + "word": "haitian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of Haiti, or a person of Haitian descent", + "example_sentence_english": "Many Haitians live in the diaspora.", + "pos": "noun", + "word_frequency": 12633 + }, + { + "word": "handgun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small firearm designed to be held and fired with one hand", + "example_sentence_english": "The police officer carried a handgun in his holster.", + "pos": "noun", + "word_frequency": 12634 + }, + { + "word": "heresy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belief or opinion contrary to orthodox religious (especially Christian) doctrine", + "example_sentence_english": "Galileo was accused of heresy for his scientific views.", + "pos": "noun", + "word_frequency": 12637 + }, + { + "word": "herpes", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a viral disease causing eruptions of the skin or mucous membranes", + "example_sentence_english": "Herpes is a common viral infection.", + "pos": "noun", + "word_frequency": 12638 + }, + { + "word": "hipster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who follows the latest trends and fashions, especially those regarded as being outside the cultural mainstream", + "example_sentence_english": "The cafe was full of hipsters with their laptops.", + "pos": "noun", + "word_frequency": 12639 + }, + { + "word": "hostess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woman who receives or entertains guests", + "example_sentence_english": "The hostess greeted us warmly at the restaurant entrance.", + "pos": "noun", + "word_frequency": 12640 + }, + { + "word": "iceberg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large mass of ice floating in the sea", + "example_sentence_english": "Only the tip of the iceberg was visible above the water.", + "pos": "noun", + "word_frequency": 12642 + }, + { + "word": "ignite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set on fire", + "example_sentence_english": "A single spark can ignite dry tinder.", + "pos": "verb", + "word_frequency": 12643 + }, + { + "word": "illumination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light or lighting", + "example_sentence_english": "The city lights provided beautiful illumination at night.", + "pos": "noun", + "word_frequency": 12644 + }, + { + "word": "impoverish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make poor", + "example_sentence_english": "Years of war can impoverish a nation.", + "pos": "verb", + "word_frequency": 12645 + }, + { + "word": "improperly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is not proper or correct", + "example_sentence_english": "He was accused of improperly handling the funds.", + "pos": "adv", + "word_frequency": 12646 + }, + { + "word": "ingenious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clever and original", + "example_sentence_english": "She came up with an ingenious solution to the problem.", + "pos": "adj", + "word_frequency": 12647 + }, + { + "word": "inquisition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a period of prolonged and intensive questioning or investigation", + "example_sentence_english": "The police subjected him to a lengthy inquisition about his whereabouts.", + "pos": "noun", + "word_frequency": 12648 + }, + { + "word": "jab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a quick, sharp blow or poke", + "example_sentence_english": "He gave the punching bag a quick jab.", + "pos": "noun", + "word_frequency": 12650 + }, + { + "word": "landfill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where waste is buried", + "example_sentence_english": "Most of our household waste ends up in a landfill.", + "pos": "noun", + "word_frequency": 12652 + }, + { + "word": "lighten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become less heavy or dark", + "example_sentence_english": "The sky began to lighten as dawn approached.", + "pos": "verb", + "word_frequency": 12654 + }, + { + "word": "maroon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dark brownish-red color", + "example_sentence_english": "She wore a beautiful maroon dress to the party.", + "pos": "adj", + "word_frequency": 12658 + }, + { + "word": "masonry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stonework or brickwork", + "example_sentence_english": "The old church was built with impressive stone masonry.", + "pos": "noun", + "word_frequency": 12661 + }, + { + "word": "mechanically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a mechanical way; without thought or feeling", + "example_sentence_english": "He performed the task mechanically, without much enthusiasm.", + "pos": "adv", + "word_frequency": 12664 + }, + { + "word": "moor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tract of open uncultivated upland", + "example_sentence_english": "The wild moor stretched for miles under the grey sky.", + "pos": "noun", + "word_frequency": 12667 + }, + { + "word": "muffin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, sweet, quick bread", + "example_sentence_english": "I had a blueberry muffin for breakfast.", + "pos": "noun", + "word_frequency": 12669 + }, + { + "word": "obi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a broad sash worn with a Japanese kimono", + "example_sentence_english": "She tied the colorful obi around her kimono.", + "pos": "noun", + "word_frequency": 12675 + }, + { + "word": "oily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered in or containing oil", + "example_sentence_english": "The fried food left an oily residue on the plate.", + "pos": "adj", + "word_frequency": 12676 + }, + { + "word": "ostensibly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "as appears or is stated to be true, though not necessarily so", + "example_sentence_english": "He resigned ostensibly due to health reasons, but many suspected otherwise.", + "pos": "adv", + "word_frequency": 12677 + }, + { + "word": "outnumber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be more numerous than", + "example_sentence_english": "The protesters greatly outnumber the police.", + "pos": "verb", + "word_frequency": 12678 + }, + { + "word": "outspoken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frank in stating one's opinions", + "example_sentence_english": "She is known for being an outspoken critic of the government.", + "pos": "adj", + "word_frequency": 12679 + }, + { + "word": "palate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roof of the mouth; sense of taste", + "example_sentence_english": "The chef has a refined palate for wine.", + "pos": "noun", + "word_frequency": 12680 + }, + { + "word": "parkway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wide road, often with trees or landscaping", + "example_sentence_english": "We drove along the scenic parkway.", + "pos": "noun", + "word_frequency": 12681 + }, + { + "word": "pedestal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the base or support on which a statue, obelisk, or column is mounted", + "example_sentence_english": "The statue stood on a marble pedestal.", + "pos": "noun", + "word_frequency": 12682 + }, + { + "word": "pedigree", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the record of the descent of an animal, showing it to be purebred", + "example_sentence_english": "The dog had an impressive pedigree.", + "pos": "noun", + "word_frequency": 12683 + }, + { + "word": "phony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not genuine; fake", + "example_sentence_english": "He made a phony excuse to leave early.", + "pos": "adj", + "word_frequency": 12684 + }, + { + "word": "pinpoint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an exact location or precise detail", + "example_sentence_english": "He could not identify the pinpoint of light in the darkness.", + "pos": "noun", + "word_frequency": 12685 + }, + { + "word": "pip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small hard seed in a fruit; a spot on a playing card or dice", + "example_sentence_english": "Don't swallow the apple pips.", + "pos": "noun", + "word_frequency": 12686 + }, + { + "word": "pleasantly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a pleasant manner", + "example_sentence_english": "The weather was pleasantly warm.", + "pos": "adv", + "word_frequency": 12687 + }, + { + "word": "ponder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "think about something carefully", + "example_sentence_english": "She paused to ponder her next move.", + "pos": "verb", + "word_frequency": 12689 + }, + { + "word": "prowess", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skill or expertise in a particular activity or field", + "example_sentence_english": "His athletic prowess was evident on the field.", + "pos": "noun", + "word_frequency": 12690 + }, + { + "word": "psychologically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a psychological manner; relating to the mind", + "example_sentence_english": "The experience affected him psychologically.", + "pos": "adv", + "word_frequency": 12692 + }, + { + "word": "rattle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a series of short, sharp, knocking sounds; a baby's toy", + "example_sentence_english": "The baby played with its rattle.", + "pos": "noun", + "word_frequency": 12697 + }, + { + "word": "reimbursement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of repaying a person who has spent money", + "example_sentence_english": "Please submit your expenses for reimbursement.", + "pos": "noun", + "word_frequency": 12698 + }, + { + "word": "reinstate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restore (someone or something) to their former position or state", + "example_sentence_english": "The company decided to reinstate the old policy.", + "pos": "verb", + "word_frequency": 12699 + }, + { + "word": "repent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feel or express sincere regret or remorse about one's wrongdoing", + "example_sentence_english": "He truly repented for his mistakes.", + "pos": "verb", + "word_frequency": 12702 + }, + { + "word": "revert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return to (a previous state, practice, topic, etc.)", + "example_sentence_english": "The system will revert to its previous settings.", + "pos": "verb", + "word_frequency": 12703 + }, + { + "word": "saliva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watery liquid secreted into the mouth", + "example_sentence_english": "Saliva helps in digestion.", + "pos": "noun", + "word_frequency": 12708 + }, + { + "word": "senseless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking meaning, purpose, or common sense", + "example_sentence_english": "It was a senseless act of violence.", + "pos": "adj", + "word_frequency": 12709 + }, + { + "word": "seventeenth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "constituting number 17 in a sequence", + "example_sentence_english": "Today is the seventeenth of May.", + "pos": "num", + "word_frequency": 12710 + }, + { + "word": "shortcut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a shorter or quicker way to get somewhere or do something", + "example_sentence_english": "We took a shortcut through the park.", + "pos": "noun", + "word_frequency": 12712 + }, + { + "word": "summarize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "give a brief statement of the main points of (something)", + "example_sentence_english": "Please summarize the article for me.", + "pos": "verb", + "word_frequency": 12716 + }, + { + "word": "synth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a synthesizer, an electronic musical instrument", + "example_sentence_english": "He played a cool melody on his synth.", + "pos": "noun", + "word_frequency": 12718 + }, + { + "word": "takeoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action of an aircraft leaving the ground", + "example_sentence_english": "The plane's takeoff was delayed due to fog.", + "pos": "noun", + "word_frequency": 12719 + }, + { + "word": "tat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tattoo (informal)", + "example_sentence_english": "He got a new tat on his arm.", + "pos": "noun", + "word_frequency": 12721 + }, + { + "word": "taxable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject to tax", + "example_sentence_english": "Your income is taxable.", + "pos": "adj", + "word_frequency": 12722 + }, + { + "word": "treadmill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exercise machine for walking or running", + "example_sentence_english": "I run on the treadmill every morning.", + "pos": "noun", + "word_frequency": 12724 + }, + { + "word": "trucking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the business of transporting goods by truck", + "example_sentence_english": "The trucking industry is vital for logistics.", + "pos": "noun", + "word_frequency": 12725 + }, + { + "word": "unavoidable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to avoid", + "example_sentence_english": "The accident was unavoidable.", + "pos": "adj", + "word_frequency": 12726 + }, + { + "word": "unilateral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "performed by or affecting only one person, group, or country involved in a situation, without the agreement of another or the others", + "example_sentence_english": "The country made a unilateral decision to withdraw.", + "pos": "adj", + "word_frequency": 12727 + }, + { + "word": "vie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compete eagerly with someone in order to achieve something", + "example_sentence_english": "The two teams will vie for the championship.", + "pos": "verb", + "word_frequency": 12729 + }, + { + "word": "wasp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stinging insect", + "example_sentence_english": "A wasp stung me on the arm.", + "pos": "noun", + "word_frequency": 12731 + }, + { + "word": "watermelon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, round fruit with sweet, juicy red pulp and a green rind", + "example_sentence_english": "We had watermelon for dessert.", + "pos": "noun", + "word_frequency": 12732 + }, + { + "word": "westward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards the west", + "example_sentence_english": "They traveled westward across the plains.", + "pos": "adv", + "word_frequency": 12734 + }, + { + "word": "yin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the feminine, dark, and negative principle in nature", + "example_sentence_english": "Yin and yang represent opposing but complementary forces.", + "pos": "noun", + "word_frequency": 12735 + }, + { + "word": "acidic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the properties of an acid; pH less than 7", + "example_sentence_english": "Lemon juice is very acidic.", + "pos": "adj", + "word_frequency": 12742 + }, + { + "word": "adherence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attachment or commitment to a person, cause, or belief", + "example_sentence_english": "Strict adherence to the rules is required.", + "pos": "noun", + "word_frequency": 12743 + }, + { + "word": "adjective", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a word naming an attribute of a noun", + "example_sentence_english": "An adjective describes a noun.", + "pos": "noun", + "word_frequency": 12744 + }, + { + "word": "adjourn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break off (a meeting, legal case, or game) with the intention of resuming it later", + "example_sentence_english": "The meeting was adjourned until next week.", + "pos": "verb", + "word_frequency": 12745 + }, + { + "word": "amnesia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a partial or total loss of memory", + "example_sentence_english": "After the accident, he suffered from amnesia.", + "pos": "noun", + "word_frequency": 12747 + }, + { + "word": "amplify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "increase the volume of (sound), especially using an amplifier; enlarge upon or add details to (a story or statement)", + "example_sentence_english": "The microphone will amplify your voice.", + "pos": "verb", + "word_frequency": 12748 + }, + { + "word": "angrily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an angry manner", + "example_sentence_english": "He shouted angrily at the driver.", + "pos": "adv", + "word_frequency": 12750 + }, + { + "word": "appellate", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "concerned with or dealing with applications for decisions to be reversed", + "example_sentence_english": "The case went to the appellate court.", + "pos": "adj", + "word_frequency": 12751 + }, + { + "word": "ascension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of rising to an important position or a higher level", + "example_sentence_english": "His ascension to the throne was celebrated.", + "pos": "noun", + "word_frequency": 12752 + }, + { + "word": "aspirin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a common pain-relieving drug", + "example_sentence_english": "I took an aspirin for my headache.", + "pos": "noun", + "word_frequency": 12753 + }, + { + "word": "ax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool used for chopping wood, typically with a steel blade and a long wooden handle", + "example_sentence_english": "He used an ax to chop the firewood.", + "pos": "noun", + "word_frequency": 12754 + }, + { + "word": "bard", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a poet, traditionally one who composes and recites epic or heroic verse", + "example_sentence_english": "Shakespeare is often referred to as 'the Bard'.", + "pos": "noun", + "word_frequency": 12755 + }, + { + "word": "benevolent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "well meaning and kindly", + "example_sentence_english": "The benevolent king was loved by his people.", + "pos": "adj", + "word_frequency": 12757 + }, + { + "word": "bestseller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a book or other product that sells in very large numbers", + "example_sentence_english": "Her latest novel became an instant bestseller.", + "pos": "noun", + "word_frequency": 12758 + }, + { + "word": "blazer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of jacket, often worn as part of a uniform or for smart casual wear.", + "example_sentence_english": "He wore a smart navy blazer to the interview.", + "pos": "noun", + "word_frequency": 12761 + }, + { + "word": "bog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An area of wet, spongy ground, often consisting of decaying vegetation.", + "example_sentence_english": "The hikers got stuck in the deep bog.", + "pos": "noun", + "word_frequency": 12762 + }, + { + "word": "bombardment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A continuous attack with bombs, shells, or other missiles; or a continuous flow of questions, criticisms, or information.", + "example_sentence_english": "The city endured a heavy bombardment for several days.", + "pos": "noun", + "word_frequency": 12764 + }, + { + "word": "borderline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A state or condition that is not clearly one thing or another; a boundary.", + "example_sentence_english": "His behavior was borderline rude.", + "pos": "noun", + "word_frequency": 12765 + }, + { + "word": "bungalow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A house built all on one level, without stairs.", + "example_sentence_english": "They decided to buy a bungalow for their retirement.", + "pos": "noun", + "word_frequency": 12766 + }, + { + "word": "burglar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who breaks into a building illegally, typically with the intent to steal.", + "example_sentence_english": "The police caught the burglar trying to escape through the window.", + "pos": "noun", + "word_frequency": 12767 + }, + { + "word": "calibration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act or process of checking and adjusting the accuracy of a measuring instrument.", + "example_sentence_english": "The machine requires regular calibration to ensure accurate readings.", + "pos": "noun", + "word_frequency": 12768 + }, + { + "word": "capitalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To write or print a word with an initial capital letter; to take the chance to gain advantage from.", + "example_sentence_english": "Remember to capitalize the first word of every sentence.", + "pos": "verb", + "word_frequency": 12769 + }, + { + "word": "charisma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Compelling attractiveness or charm that can inspire devotion in others.", + "example_sentence_english": "The leader's charisma inspired his followers.", + "pos": "noun", + "word_frequency": 12770 + }, + { + "word": "cognition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The mental action or process of acquiring knowledge and understanding through thought, experience, and the senses.", + "example_sentence_english": "The study of cognition explores how the brain processes information.", + "pos": "noun", + "word_frequency": 12776 + }, + { + "word": "cooker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "An appliance or device for cooking food.", + "example_sentence_english": "She bought a new slow cooker for her kitchen.", + "pos": "noun", + "word_frequency": 12777 + }, + { + "word": "cornish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to Cornwall, a county in southwest England.", + "example_sentence_english": "We enjoyed a delicious Cornish pasty for lunch.", + "pos": "adjective", + "word_frequency": 12778 + }, + { + "word": "coupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A two-door car with a fixed roof and a sloping rear.", + "example_sentence_english": "He drove a sleek sports coupe.", + "pos": "noun", + "word_frequency": 12779 + }, + { + "word": "covet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To yearn to possess or have (something).", + "example_sentence_english": "She coveted her neighbor's beautiful garden.", + "pos": "verb", + "word_frequency": 12780 + }, + { + "word": "crumb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small fragment of bread, cake, or biscuit.", + "example_sentence_english": "The bird pecked at the bread crumbs on the ground.", + "pos": "noun", + "word_frequency": 12783 + }, + { + "word": "cylindrical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Having the form of a cylinder.", + "example_sentence_english": "The ancient column was perfectly cylindrical.", + "pos": "adjective", + "word_frequency": 12785 + }, + { + "word": "deceptive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Giving a misleading impression.", + "example_sentence_english": "The calm surface of the water was deceptive; there were strong currents underneath.", + "pos": "adjective", + "word_frequency": 12788 + }, + { + "word": "devastation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Great destruction or damage.", + "example_sentence_english": "The earthquake caused widespread devastation in the region.", + "pos": "noun", + "word_frequency": 12789 + }, + { + "word": "devout", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having or showing deep religious feeling or commitment.", + "example_sentence_english": "She was a devout follower of her faith.", + "pos": "adjective", + "word_frequency": 12790 + }, + { + "word": "disproportionate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Too large or too small in comparison with something else.", + "example_sentence_english": "The punishment was disproportionate to the crime.", + "pos": "adjective", + "word_frequency": 12793 + }, + { + "word": "divisive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Tending to cause disagreement or hostility between people.", + "example_sentence_english": "The new policy proved to be highly divisive.", + "pos": "adjective", + "word_frequency": 12794 + }, + { + "word": "ebony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A heavy, blackish wood from tropical trees; a very dark black color.", + "example_sentence_english": "The piano was made of polished ebony.", + "pos": "noun", + "word_frequency": 12798 + }, + { + "word": "embody", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "represent; give tangible form to", + "example_sentence_english": "The new building will embody the spirit of modern architecture.", + "pos": "verb", + "word_frequency": 12802 + }, + { + "word": "embroider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decorate with needlework", + "example_sentence_english": "She decided to embroider a floral pattern onto the cushion.", + "pos": "verb", + "word_frequency": 12803 + }, + { + "word": "embryo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unborn or unhatched offspring", + "example_sentence_english": "The embryo develops rapidly in the early stages of pregnancy.", + "pos": "noun", + "word_frequency": 12804 + }, + { + "word": "erratic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpredictable; inconsistent", + "example_sentence_english": "His attendance at work has been erratic lately.", + "pos": "adjective", + "word_frequency": 12806 + }, + { + "word": "fang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long, sharp tooth", + "example_sentence_english": "The vampire bared its sharp fangs.", + "pos": "noun", + "word_frequency": 12807 + }, + { + "word": "fiesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festival; party", + "example_sentence_english": "The town held a lively fiesta to celebrate its patron saint.", + "pos": "noun", + "word_frequency": 12808 + }, + { + "word": "folly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lack of good sense; foolishness", + "example_sentence_english": "It was sheer folly to attempt the climb without proper equipment.", + "pos": "noun", + "word_frequency": 12809 + }, + { + "word": "foreseeable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be foreseen or predicted", + "example_sentence_english": "There are no major changes expected in the foreseeable future.", + "pos": "adjective", + "word_frequency": 12811 + }, + { + "word": "frenchman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man from France", + "example_sentence_english": "He met a friendly Frenchman on his trip to Paris.", + "pos": "noun", + "word_frequency": 12812 + }, + { + "word": "fume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gas or vapor, especially unpleasant or harmful", + "example_sentence_english": "The car exhaust produced thick, black fumes.", + "pos": "noun", + "word_frequency": 12814 + }, + { + "word": "glaze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apply a smooth, glossy coating", + "example_sentence_english": "She decided to glaze the pottery before firing it.", + "pos": "verb", + "word_frequency": 12818 + }, + { + "word": "hardwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wood from a deciduous tree", + "example_sentence_english": "They installed beautiful hardwood floors in the living room.", + "pos": "noun", + "word_frequency": 12821 + }, + { + "word": "highness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being high; a title for royalty", + "example_sentence_english": "The prince was addressed as 'Your Royal Highness'.", + "pos": "noun", + "word_frequency": 12823 + }, + { + "word": "hindsight", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "understanding an event after it has happened", + "example_sentence_english": "In hindsight, I should have taken a different route.", + "pos": "noun", + "word_frequency": 12824 + }, + { + "word": "hinge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a movable joint on which a door, gate, or lid swings", + "example_sentence_english": "The door creaked loudly on its rusty hinge.", + "pos": "noun", + "word_frequency": 12825 + }, + { + "word": "homophobia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dislike of or prejudice against homosexual people", + "example_sentence_english": "Education is key to combating homophobia in society.", + "pos": "noun", + "word_frequency": 12826 + }, + { + "word": "indifference", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of interest, concern, or sympathy", + "example_sentence_english": "Her indifference to the suffering of others was shocking.", + "pos": "noun", + "word_frequency": 12831 + }, + { + "word": "indispensable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absolutely necessary", + "example_sentence_english": "A good dictionary is an indispensable tool for language learners.", + "pos": "adjective", + "word_frequency": 12832 + }, + { + "word": "infirmary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place in a large institution for the care of those who are ill", + "example_sentence_english": "The injured player was taken to the school infirmary.", + "pos": "noun", + "word_frequency": 12833 + }, + { + "word": "inhibit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hinder; restrain; prevent", + "example_sentence_english": "Fear can inhibit people from expressing their true feelings.", + "pos": "verb", + "word_frequency": 12835 + }, + { + "word": "interstellar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "between stars", + "example_sentence_english": "The movie depicted an epic interstellar journey.", + "pos": "adjective", + "word_frequency": 12836 + }, + { + "word": "intoxicate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make drunk or exhilarated", + "example_sentence_english": "Alcohol can quickly intoxicate a person if consumed in large amounts.", + "pos": "verb", + "word_frequency": 12837 + }, + { + "word": "involuntary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done without conscious control", + "example_sentence_english": "Breathing is an involuntary action of the body.", + "pos": "adjective", + "word_frequency": 12838 + }, + { + "word": "issuance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of issuing or giving out", + "example_sentence_english": "The issuance of new passports will begin next month.", + "pos": "noun", + "word_frequency": 12840 + }, + { + "word": "itchy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "causing an irritating sensation on the skin", + "example_sentence_english": "My skin feels really itchy after the mosquito bite.", + "pos": "adjective", + "word_frequency": 12841 + }, + { + "word": "junta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a military or political group that rules a country after taking power by force", + "example_sentence_english": "The military junta seized control of the government.", + "pos": "noun", + "word_frequency": 12843 + }, + { + "word": "latch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for holding a door or gate closed", + "example_sentence_english": "Make sure the garden gate has a secure latch.", + "pos": "noun", + "word_frequency": 12846 + }, + { + "word": "libel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a published false statement that is damaging to a person's reputation", + "example_sentence_english": "He sued the newspaper for libel.", + "pos": "noun", + "word_frequency": 12847 + }, + { + "word": "ligament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short band of tough, flexible fibrous connective tissue which connects two bones or cartilages or holds together a joint", + "example_sentence_english": "She tore a ligament in her knee while playing soccer.", + "pos": "noun", + "word_frequency": 12848 + }, + { + "word": "likeness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being similar or alike", + "example_sentence_english": "The portrait bore a striking likeness to her.", + "pos": "noun", + "word_frequency": 12849 + }, + { + "word": "lofty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of imposing height; noble or exalted", + "example_sentence_english": "The mountain peaks were lofty and majestic.", + "pos": "adjective", + "word_frequency": 12851 + }, + { + "word": "loom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an apparatus for making fabric by weaving yarn or thread", + "example_sentence_english": "The weaver worked tirelessly at her loom.", + "pos": "noun", + "word_frequency": 12852 + }, + { + "word": "ludicrous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so foolish, unreasonable, or out of place as to be amusing; ridiculous", + "example_sentence_english": "The idea of flying to the moon in a cardboard box is ludicrous.", + "pos": "adjective", + "word_frequency": 12854 + }, + { + "word": "maize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corn", + "example_sentence_english": "Farmers grow maize in large fields.", + "pos": "noun", + "word_frequency": 12856 + }, + { + "word": "malice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the intention or desire to do evil; ill will", + "example_sentence_english": "There was no malice in his actions, only a misunderstanding.", + "pos": "noun", + "word_frequency": 12857 + }, + { + "word": "marginalize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to treat (a person, group, or concept) as insignificant or peripheral", + "example_sentence_english": "Society tends to marginalize those who are different.", + "pos": "verb", + "word_frequency": 12859 + }, + { + "word": "mixtape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a compilation of songs recorded in a specific order", + "example_sentence_english": "He made a mixtape of his favorite songs for her.", + "pos": "noun", + "word_frequency": 12867 + }, + { + "word": "munition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "military weapons, ammunition, equipment, and stores", + "example_sentence_english": "The factory produces various types of munition.", + "pos": "noun", + "word_frequency": 12869 + }, + { + "word": "myrtle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an evergreen shrub or small tree with aromatic leaves and white flowers", + "example_sentence_english": "The garden was filled with the sweet scent of myrtle.", + "pos": "noun", + "word_frequency": 12871 + }, + { + "word": "nemesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the inescapable agent of someone's or something's downfall; a long-standing rival", + "example_sentence_english": "The villain was finally defeated by his nemesis.", + "pos": "noun", + "word_frequency": 12872 + }, + { + "word": "originality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being new and different in a way that is interesting or imaginative", + "example_sentence_english": "Her artwork is praised for its originality.", + "pos": "noun", + "word_frequency": 12874 + }, + { + "word": "oriole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a colorful bird, typically with black and yellow or orange plumage", + "example_sentence_english": "We saw a beautiful oriole in the tree.", + "pos": "noun", + "word_frequency": 12875 + }, + { + "word": "ornamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving or intended as an ornament; decorative", + "example_sentence_english": "The garden features many ornamental plants.", + "pos": "adjective", + "word_frequency": 12876 + }, + { + "word": "pancreatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the pancreas", + "example_sentence_english": "Pancreatic cancer is a serious disease.", + "pos": "adjective", + "word_frequency": 12877 + }, + { + "word": "parlor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sitting room in a private house", + "example_sentence_english": "We gathered in the parlor for tea.", + "pos": "noun", + "word_frequency": 12879 + }, + { + "word": "pebble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small smooth rounded stone", + "example_sentence_english": "I picked up a smooth pebble from the beach.", + "pos": "noun", + "word_frequency": 12880 + }, + { + "word": "perseverance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistence in doing something despite difficulty", + "example_sentence_english": "Her perseverance paid off when she finally achieved her goal.", + "pos": "noun", + "word_frequency": 12881 + }, + { + "word": "pharmacist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is qualified to prepare and dispense medicinal drugs", + "example_sentence_english": "The pharmacist advised me on how to take the new medication.", + "pos": "noun", + "word_frequency": 12882 + }, + { + "word": "picky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fussy; hard to please", + "example_sentence_english": "My brother is very picky about what he eats.", + "pos": "adjective", + "word_frequency": 12884 + }, + { + "word": "populace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the people living in a particular country or area", + "example_sentence_english": "The government needs to listen to the concerns of the populace.", + "pos": "noun", + "word_frequency": 12886 + }, + { + "word": "pricey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expensive", + "example_sentence_english": "That restaurant is a bit pricey, but the food is excellent.", + "pos": "adjective", + "word_frequency": 12888 + }, + { + "word": "propagation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of widely spreading and promoting an idea, theory, etc.; the breeding of specimens by natural processes from the parent stock", + "example_sentence_english": "The propagation of plants can be done through seeds or cuttings.", + "pos": "noun", + "word_frequency": 12890 + }, + { + "word": "psychedelic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting drugs that produce hallucinations and apparent expansion of consciousness; characterized by intense distortion of sensory perception", + "example_sentence_english": "The band's music had a strong psychedelic influence.", + "pos": "adjective", + "word_frequency": 12891 + }, + { + "word": "radiator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for heating a room or vehicle", + "example_sentence_english": "The radiator in the living room keeps the house warm.", + "pos": "noun", + "word_frequency": 12893 + }, + { + "word": "randomize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make random in order or arrangement", + "example_sentence_english": "We need to randomize the order of the questions for the survey.", + "pos": "verb", + "word_frequency": 12894 + }, + { + "word": "rector", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a head of a university or school; a clergyman in charge of a parish", + "example_sentence_english": "The new rector was welcomed by the entire university staff.", + "pos": "noun", + "word_frequency": 12895 + }, + { + "word": "regal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resembling, or fit for, a monarch, especially in being magnificent or dignified", + "example_sentence_english": "She walked with a regal bearing, as if she were a queen.", + "pos": "adjective", + "word_frequency": 12896 + }, + { + "word": "relativity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the absence of standards of absolute and universal application; the dependence of a physical phenomenon on the observer's relative motion", + "example_sentence_english": "Einstein's theory of relativity changed our understanding of the universe.", + "pos": "noun", + "word_frequency": 12897 + }, + { + "word": "revere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to feel deep respect or admiration for (something)", + "example_sentence_english": "Many people revere him as a national hero.", + "pos": "verb", + "word_frequency": 12899 + }, + { + "word": "ridicule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the subjection of someone or something to contemptuous and dismissive language or behavior", + "example_sentence_english": "He faced ridicule for his unusual ideas.", + "pos": "noun", + "word_frequency": 12900 + }, + { + "word": "rocker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who performs or enjoys rock music; a curved piece of wood on which something rocks", + "example_sentence_english": "He's a classic rock rocker.", + "pos": "noun", + "word_frequency": 12902 + }, + { + "word": "sculptor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an artist who makes sculptures", + "example_sentence_english": "The sculptor spent years perfecting her marble statue.", + "pos": "noun", + "word_frequency": 12906 + }, + { + "word": "semifinal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game or round immediately preceding the final", + "example_sentence_english": "Our team won the semifinal and advanced to the championship.", + "pos": "noun", + "word_frequency": 12907 + }, + { + "word": "sheen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soft luster on a surface", + "example_sentence_english": "The silk fabric had a beautiful sheen.", + "pos": "noun", + "word_frequency": 12909 + }, + { + "word": "sincerity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being honest or genuine", + "example_sentence_english": "Her sincerity was evident in her heartfelt apology.", + "pos": "noun", + "word_frequency": 12911 + }, + { + "word": "sinful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wicked and immoral; involving or constituting sin", + "example_sentence_english": "Many religions teach that certain actions are sinful.", + "pos": "adjective", + "word_frequency": 12912 + }, + { + "word": "slander", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or crime of making a false spoken statement damaging to a person's reputation", + "example_sentence_english": "He sued the newspaper for slander.", + "pos": "noun", + "word_frequency": 12913 + }, + { + "word": "sleek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smooth and glossy; (of a person) stylish and attractive", + "example_sentence_english": "The new car has a sleek design.", + "pos": "adjective", + "word_frequency": 12914 + }, + { + "word": "slew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large number or amount of something", + "example_sentence_english": "We have a whole slew of problems to deal with.", + "pos": "noun", + "word_frequency": 12915 + }, + { + "word": "sling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strap or band used for carrying or supporting something; a type of bandage", + "example_sentence_english": "He had his arm in a sling after the accident.", + "pos": "noun", + "word_frequency": 12916 + }, + { + "word": "socioeconomic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or concerned with the interaction of social and economic factors", + "example_sentence_english": "The study examined the socioeconomic impact of the new policy.", + "pos": "adjective", + "word_frequency": 12917 + }, + { + "word": "sturgeon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large fish, some species of which are a source of caviar", + "example_sentence_english": "The sturgeon is a prehistoric-looking fish.", + "pos": "noun", + "word_frequency": 12920 + }, + { + "word": "subpoena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a writ ordering a person to attend a court", + "example_sentence_english": "He received a subpoena to testify in court.", + "pos": "noun", + "word_frequency": 12921 + }, + { + "word": "syllabus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an outline of subjects in a course of study", + "example_sentence_english": "The professor handed out the course syllabus on the first day.", + "pos": "noun", + "word_frequency": 12922 + }, + { + "word": "taiwanese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Taiwan or its people", + "example_sentence_english": "She enjoys Taiwanese food.", + "pos": "adjective", + "word_frequency": 12924 + }, + { + "word": "textual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or based on a text", + "example_sentence_english": "The textual analysis revealed several key themes.", + "pos": "adjective", + "word_frequency": 12925 + }, + { + "word": "toad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tailless amphibian, similar to a frog", + "example_sentence_english": "A toad hopped across the garden path.", + "pos": "noun", + "word_frequency": 12927 + }, + { + "word": "unaffected", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not affected or influenced", + "example_sentence_english": "He remained unaffected by the criticism.", + "pos": "adjective", + "word_frequency": 12931 + }, + { + "word": "undeniable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to be denied or disputed", + "example_sentence_english": "Her talent was undeniable.", + "pos": "adjective", + "word_frequency": 12932 + }, + { + "word": "upstate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the northern part of a state", + "example_sentence_english": "They live upstate, away from the city.", + "pos": "noun", + "word_frequency": 12934 + }, + { + "word": "vigilant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "keeping careful watch for possible danger or difficulties", + "example_sentence_english": "The security guard remained vigilant throughout the night.", + "pos": "adjective", + "word_frequency": 12936 + }, + { + "word": "visitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official visit or inspection", + "example_sentence_english": "The court granted the father visitation rights.", + "pos": "noun", + "word_frequency": 12937 + }, + { + "word": "viva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an exclamation of 'long live' or 'hooray'", + "example_sentence_english": "The crowd shouted 'Viva!' for the queen.", + "pos": "noun", + "word_frequency": 12938 + }, + { + "word": "washer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a machine for washing clothes or dishes", + "example_sentence_english": "The washer broke down.", + "pos": "noun", + "word_frequency": 12939 + }, + { + "word": "wick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strip of porous material in a candle or lamp", + "example_sentence_english": "The candle's wick was too short.", + "pos": "noun", + "word_frequency": 12941 + }, + { + "word": "worldly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experienced and sophisticated", + "example_sentence_english": "She has a very worldly perspective.", + "pos": "adjective", + "word_frequency": 12942 + }, + { + "word": "additive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or denoting a substance added to something", + "example_sentence_english": "Food additives can prolong shelf life.", + "pos": "adjective", + "word_frequency": 12949 + }, + { + "word": "adept", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very skilled or proficient at something", + "example_sentence_english": "She is adept at solving complex problems.", + "pos": "adjective", + "word_frequency": 12950 + }, + { + "word": "advantageous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing an advantage; favorable", + "example_sentence_english": "It would be advantageous to start early.", + "pos": "adjective", + "word_frequency": 12951 + }, + { + "word": "aero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to aircraft or aeronautics", + "example_sentence_english": "The aero industry is rapidly expanding.", + "pos": "adjective", + "word_frequency": 12952 + }, + { + "word": "afloat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floating in water; out of debt or difficulty", + "example_sentence_english": "The boat remained afloat despite the storm.", + "pos": "adjective", + "word_frequency": 12953 + }, + { + "word": "agility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to move quickly and easily", + "example_sentence_english": "The gymnast showed great agility.", + "pos": "noun", + "word_frequency": 12954 + }, + { + "word": "annoyance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the feeling of being annoyed; something that annoys", + "example_sentence_english": "The constant noise was a great annoyance.", + "pos": "noun", + "word_frequency": 12957 + }, + { + "word": "anon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an anonymous person", + "example_sentence_english": "The message was sent by an anon.", + "pos": "noun", + "word_frequency": 12958 + }, + { + "word": "ante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stake put up by a player in poker before receiving cards", + "example_sentence_english": "Everyone put in their ante before the game started.", + "pos": "noun", + "word_frequency": 12959 + }, + { + "word": "archipelago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A group of islands.", + "example_sentence_english": "The Caribbean is an archipelago known for its beautiful islands.", + "pos": "noun", + "word_frequency": 12960 + }, + { + "word": "behaviour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "The way someone acts.", + "example_sentence_english": "His behaviour at the party was unacceptable.", + "pos": "noun", + "word_frequency": 12963 + }, + { + "word": "bloat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To swell or expand.", + "example_sentence_english": "Eating too much can make you feel bloated.", + "pos": "verb", + "word_frequency": 12965 + }, + { + "word": "bonfire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large outdoor fire.", + "example_sentence_english": "We gathered around the bonfire and told stories.", + "pos": "noun", + "word_frequency": 12966 + }, + { + "word": "bullpen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A place where relief pitchers warm up in baseball; a shared office space.", + "example_sentence_english": "The manager called a pitcher from the bullpen.", + "pos": "noun", + "word_frequency": 12968 + }, + { + "word": "canine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to dogs.", + "example_sentence_english": "The veterinarian specializes in canine diseases.", + "pos": "adjective", + "word_frequency": 12970 + }, + { + "word": "causal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to cause and effect.", + "example_sentence_english": "There is a causal link between smoking and lung cancer.", + "pos": "adjective", + "word_frequency": 12972 + }, + { + "word": "cheerleader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who leads cheers at sporting events.", + "example_sentence_english": "She joined the cheerleading squad in high school.", + "pos": "noun", + "word_frequency": 12973 + }, + { + "word": "citadel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A fortress protecting a city.", + "example_sentence_english": "The ancient citadel stood proudly on the hill.", + "pos": "noun", + "word_frequency": 12975 + }, + { + "word": "colonialism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The policy of acquiring full or partial political control over another country.", + "example_sentence_english": "Many countries suffered under the weight of colonialism for centuries.", + "pos": "noun", + "word_frequency": 12977 + }, + { + "word": "corvette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A type of fast warship or a sports car.", + "example_sentence_english": "He dreamed of owning a classic Corvette.", + "pos": "noun", + "word_frequency": 12978 + }, + { + "word": "dashboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The panel in a car containing controls and instruments.", + "example_sentence_english": "The warning light on the dashboard came on.", + "pos": "noun", + "word_frequency": 12980 + }, + { + "word": "deficient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not having enough of a specified quality or ingredient.", + "example_sentence_english": "The soil was deficient in essential nutrients.", + "pos": "adjective", + "word_frequency": 12981 + }, + { + "word": "degenerate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having lost the physical, mental, or moral qualities considered normal or desirable.", + "example_sentence_english": "The once-grand building had become a degenerate ruin.", + "pos": "adjective", + "word_frequency": 12982 + }, + { + "word": "demonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or characteristic of demons or evil spirits.", + "example_sentence_english": "He had a demonic gleam in his eyes.", + "pos": "adjective", + "word_frequency": 12983 + }, + { + "word": "deterrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A thing that discourages or is intended to discourage someone from doing something.", + "example_sentence_english": "The high cost of tuition can be a deterrent for some students.", + "pos": "noun", + "word_frequency": 12984 + }, + { + "word": "disdain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The feeling that someone or something is unworthy of one's consideration or respect.", + "example_sentence_english": "She looked at him with utter disdain.", + "pos": "noun", + "word_frequency": 12985 + }, + { + "word": "disgraceful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Shockingly bad; unacceptable.", + "example_sentence_english": "His behaviour was absolutely disgraceful.", + "pos": "adjective", + "word_frequency": 12986 + }, + { + "word": "doggy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Resembling a dog; characteristic of a dog.", + "example_sentence_english": "The puppy gave a cute doggy yawn.", + "pos": "adjective", + "word_frequency": 12987 + }, + { + "word": "dole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Money received from the state by unemployed people.", + "example_sentence_english": "He's been on the dole for six months.", + "pos": "noun", + "word_frequency": 12988 + }, + { + "word": "dun", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Of a dull grayish-brown color.", + "example_sentence_english": "The horse was a dun color.", + "pos": "adjective", + "word_frequency": 12989 + }, + { + "word": "eerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Strange and frightening.", + "example_sentence_english": "The old house had an eerie silence.", + "pos": "adjective", + "word_frequency": 12990 + }, + { + "word": "enrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make someone very angry.", + "example_sentence_english": "His rude comments enraged her.", + "pos": "verb", + "word_frequency": 12991 + }, + { + "word": "erode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To gradually wear away or destroy.", + "example_sentence_english": "The constant wind and rain eroded the rock.", + "pos": "verb", + "word_frequency": 12992 + }, + { + "word": "excursion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A short journey or trip.", + "example_sentence_english": "We went on an excursion to the mountains.", + "pos": "noun", + "word_frequency": 12994 + }, + { + "word": "exponential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Becoming more and more rapid.", + "example_sentence_english": "The company has seen exponential growth in sales.", + "pos": "adjective", + "word_frequency": 12995 + }, + { + "word": "farce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A ridiculous sham; a mockery.", + "example_sentence_english": "The trial was a complete farce.", + "pos": "noun", + "word_frequency": 12996 + }, + { + "word": "fling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short period of enjoyment or a brief, casual romantic relationship.", + "example_sentence_english": "They had a summer fling that ended when she went back to college.", + "pos": "noun", + "word_frequency": 12999 + }, + { + "word": "frantic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desperate or wild with fear, anxiety, or other emotion", + "example_sentence_english": "She was frantic with worry when her child didn't come home.", + "pos": "adjective", + "word_frequency": 13001 + }, + { + "word": "fudge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft candy made from sugar, butter, and milk or cream", + "example_sentence_english": "My grandmother makes the best chocolate fudge.", + "pos": "noun", + "word_frequency": 13002 + }, + { + "word": "glide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a smooth, continuous movement", + "example_sentence_english": "The eagle made a graceful glide through the air.", + "pos": "noun", + "word_frequency": 13006 + }, + { + "word": "grudge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a persistent feeling of ill will or resentment", + "example_sentence_english": "He held a grudge against his former business partner.", + "pos": "noun", + "word_frequency": 13010 + }, + { + "word": "hairstyle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the way in which someone's hair is cut or arranged", + "example_sentence_english": "She changed her hairstyle for the party.", + "pos": "noun", + "word_frequency": 13012 + }, + { + "word": "handwritten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "written by hand rather than typed or printed", + "example_sentence_english": "The letter was handwritten and difficult to read.", + "pos": "adjective", + "word_frequency": 13013 + }, + { + "word": "harmonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to harmony; melodious", + "example_sentence_english": "The choir produced a beautiful harmonic sound.", + "pos": "adjective", + "word_frequency": 13014 + }, + { + "word": "headlight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a powerful light at the front of a motor vehicle", + "example_sentence_english": "The car's headlight was broken after the accident.", + "pos": "noun", + "word_frequency": 13016 + }, + { + "word": "heartless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking kindness or sympathy; cruel", + "example_sentence_english": "It was a heartless act to leave the dog alone in the cold.", + "pos": "adjective", + "word_frequency": 13017 + }, + { + "word": "hectic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of intense and frantic activity", + "example_sentence_english": "It was a hectic day at work with many meetings.", + "pos": "adjective", + "word_frequency": 13018 + }, + { + "word": "holistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by comprehension of the parts of something as interconnected to the whole", + "example_sentence_english": "The doctor takes a holistic approach to patient care.", + "pos": "adjective", + "word_frequency": 13019 + }, + { + "word": "hormonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or denoting hormones", + "example_sentence_english": "She felt very emotional due to hormonal changes.", + "pos": "adjective", + "word_frequency": 13021 + }, + { + "word": "informant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who gives information to another", + "example_sentence_english": "The police received a tip from an anonymous informant.", + "pos": "noun", + "word_frequency": 13024 + }, + { + "word": "intrusive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing disruption or annoyance through being unwelcome or uninvited", + "example_sentence_english": "The paparazzi were very intrusive, following her everywhere.", + "pos": "adjective", + "word_frequency": 13025 + }, + { + "word": "invoke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "call on (a deity or spirit) or cite (an authority) in support of an argument", + "example_sentence_english": "He decided to invoke his right to remain silent.", + "pos": "verb", + "word_frequency": 13026 + }, + { + "word": "jackass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a foolish or stupid person (informal)", + "example_sentence_english": "Don't be such a jackass and listen to what I'm saying.", + "pos": "noun", + "word_frequency": 13027 + }, + { + "word": "joyous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of joy or happiness", + "example_sentence_english": "It was a joyous occasion when they finally reunited.", + "pos": "adjective", + "word_frequency": 13031 + }, + { + "word": "kiwi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, oval fruit with a brown, hairy skin and green flesh; a flightless bird native to New Zealand", + "example_sentence_english": "I like to eat kiwi fruit for breakfast.", + "pos": "noun", + "word_frequency": 13032 + }, + { + "word": "leaflet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a printed sheet of paper, often folded, containing information or advertising", + "example_sentence_english": "The tourist office provides free leaflets about local attractions.", + "pos": "noun", + "word_frequency": 13033 + }, + { + "word": "licence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a permit from an authority to own or use something (UK spelling)", + "example_sentence_english": "You need a driving licence to operate a car.", + "pos": "noun", + "word_frequency": 13034 + }, + { + "word": "limo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a limousine (informal)", + "example_sentence_english": "They arrived at the event in a stretch limo.", + "pos": "noun", + "word_frequency": 13036 + }, + { + "word": "lunchtime", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the time at which lunch is eaten", + "example_sentence_english": "I usually eat lunch at lunchtime, around 1 PM.", + "pos": "noun", + "word_frequency": 13038 + }, + { + "word": "mace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A heavy club, often with a spiked head, used as a weapon; or a spice made from the outer covering of nutmeg.", + "example_sentence_english": "The knight carried a heavy mace into battle.", + "pos": "noun", + "word_frequency": 13040 + }, + { + "word": "malignant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Very harmful or evil; cancerous.", + "example_sentence_english": "The doctor confirmed the tumor was malignant.", + "pos": "adjective", + "word_frequency": 13043 + }, + { + "word": "mane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The long hair on the neck of a horse or lion.", + "example_sentence_english": "The lion shook its magnificent mane.", + "pos": "noun", + "word_frequency": 13044 + }, + { + "word": "mascara", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cosmetic for darkening and thickening eyelashes.", + "example_sentence_english": "She applied mascara to her eyelashes before going out.", + "pos": "noun", + "word_frequency": 13045 + }, + { + "word": "matchmaking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process of arranging marriages or romantic relationships between people.", + "example_sentence_english": "Her grandmother was known for her excellent matchmaking skills.", + "pos": "noun", + "word_frequency": 13046 + }, + { + "word": "maverick", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An unorthodox or independent-minded person.", + "example_sentence_english": "He was a maverick in the industry, always challenging the status quo.", + "pos": "noun", + "word_frequency": 13047 + }, + { + "word": "measles", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An infectious viral disease causing fever and a red rash.", + "example_sentence_english": "Many children are vaccinated against measles.", + "pos": "noun", + "word_frequency": 13048 + }, + { + "word": "mend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To repair something that is broken or damaged.", + "example_sentence_english": "Can you help me mend this torn shirt?", + "pos": "verb", + "word_frequency": 13049 + }, + { + "word": "microbial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or caused by microbes.", + "example_sentence_english": "Scientists are studying the microbial life in the deep sea.", + "pos": "adjective", + "word_frequency": 13051 + }, + { + "word": "migraine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A severe headache, often accompanied by nausea and sensitivity to light.", + "example_sentence_english": "She often suffers from debilitating migraines.", + "pos": "noun", + "word_frequency": 13052 + }, + { + "word": "mitt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of glove, especially one used in baseball.", + "example_sentence_english": "The baseball player caught the ball in his mitt.", + "pos": "noun", + "word_frequency": 13053 + }, + { + "word": "molten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Melted, especially by heat.", + "example_sentence_english": "The molten lava flowed slowly down the volcano.", + "pos": "adjective", + "word_frequency": 13054 + }, + { + "word": "monsoon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A seasonal prevailing wind in the region of South and Southeast Asia, blowing from the southwest in summer and from the northeast in winter.", + "example_sentence_english": "The monsoon season brings heavy rains to the region.", + "pos": "noun", + "word_frequency": 13055 + }, + { + "word": "montage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process or technique of selecting, editing, and piecing together separate sections of film or images to form a continuous whole.", + "example_sentence_english": "The film ended with a montage of the main character's life.", + "pos": "noun", + "word_frequency": 13056 + }, + { + "word": "negligent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Failing to take proper care in doing something.", + "example_sentence_english": "The company was found negligent in its safety procedures.", + "pos": "adjective", + "word_frequency": 13060 + }, + { + "word": "nil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nothing; zero.", + "example_sentence_english": "The final score was two-nil to our team.", + "pos": "noun", + "word_frequency": 13063 + }, + { + "word": "opioid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A compound resembling opium in addictive properties or physiological effects.", + "example_sentence_english": "The doctor prescribed an opioid for severe pain.", + "pos": "noun", + "word_frequency": 13066 + }, + { + "word": "pathogen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A bacterium, virus, or other microorganism that can cause disease.", + "example_sentence_english": "Handwashing helps prevent the spread of pathogens.", + "pos": "noun", + "word_frequency": 13067 + }, + { + "word": "persuasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action or process of persuading someone or of being persuaded to do or believe something.", + "example_sentence_english": "He used his powers of persuasion to convince them.", + "pos": "noun", + "word_frequency": 13068 + }, + { + "word": "plaid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A pattern of crisscrossed horizontal and vertical bands in multiple colors.", + "example_sentence_english": "He wore a shirt with a red and black plaid pattern.", + "pos": "noun", + "word_frequency": 13070 + }, + { + "word": "playback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The reproduction of recorded sound or moving images.", + "example_sentence_english": "The playback quality of the old tape recorder was poor.", + "pos": "noun", + "word_frequency": 13071 + }, + { + "word": "plush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Richly luxurious and soft.", + "example_sentence_english": "The hotel room had a plush carpet and comfortable furniture.", + "pos": "adjective", + "word_frequency": 13072 + }, + { + "word": "positivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The practice of being positive or optimistic.", + "example_sentence_english": "Her positivity was infectious and brightened everyone's day.", + "pos": "noun", + "word_frequency": 13073 + }, + { + "word": "precedence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The condition of being considered more important than someone or something else; priority in importance, order, or rank.", + "example_sentence_english": "Safety takes precedence over speed in this project.", + "pos": "noun", + "word_frequency": 13074 + }, + { + "word": "pristine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "In its original condition; unspoiled.", + "example_sentence_english": "The car was in pristine condition, as if it had just left the factory.", + "pos": "adjective", + "word_frequency": 13075 + }, + { + "word": "prognosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A forecast of the likely course of a disease or ailment; a forecast of the likely outcome of a situation.", + "example_sentence_english": "The doctor gave a good prognosis for her recovery.", + "pos": "noun", + "word_frequency": 13076 + }, + { + "word": "propeller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A mechanical device for propelling a boat or aircraft, consisting of a revolving shaft with blades.", + "example_sentence_english": "The airplane's propeller spun rapidly before takeoff.", + "pos": "noun", + "word_frequency": 13077 + }, + { + "word": "racket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A loud unpleasant noise; a bat with a long handle and a round or oval frame with an open network of strings, used in tennis, badminton, and squash.", + "example_sentence_english": "The children were making a terrible racket upstairs.", + "pos": "noun", + "word_frequency": 13078 + }, + { + "word": "relatable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy to understand and feel sympathy for", + "example_sentence_english": "Her struggles made her character very relatable to the audience.", + "pos": "adjective", + "word_frequency": 13081 + }, + { + "word": "reorganization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of organizing something in a new way", + "example_sentence_english": "The company announced a major reorganization of its departments.", + "pos": "noun", + "word_frequency": 13082 + }, + { + "word": "retrieval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of getting something back", + "example_sentence_english": "Data retrieval from the old server was a slow process.", + "pos": "noun", + "word_frequency": 13083 + }, + { + "word": "roundabout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a circular intersection", + "example_sentence_english": "Take the third exit at the roundabout.", + "pos": "noun", + "word_frequency": 13084 + }, + { + "word": "saline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "containing salt", + "example_sentence_english": "The doctor prescribed a saline solution for the patient's eyes.", + "pos": "adjective", + "word_frequency": 13085 + }, + { + "word": "saviour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who saves someone or something", + "example_sentence_english": "He was seen as the saviour of the struggling company.", + "pos": "noun", + "word_frequency": 13086 + }, + { + "word": "shipbuilding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the business of building ships", + "example_sentence_english": "The city has a long history of shipbuilding.", + "pos": "noun", + "word_frequency": 13088 + }, + { + "word": "shrug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise and lower your shoulders to show you don't know or care", + "example_sentence_english": "He could only shrug his shoulders in response.", + "pos": "verb", + "word_frequency": 13090 + }, + { + "word": "signing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of putting your signature on something; a new player or employee", + "example_sentence_english": "The signing of the peace treaty took place yesterday.", + "pos": "noun", + "word_frequency": 13092 + }, + { + "word": "smoky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of smoke; tasting or smelling of smoke", + "example_sentence_english": "The bar was very smoky, so we left.", + "pos": "adjective", + "word_frequency": 13093 + }, + { + "word": "spade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool for digging; a suit of playing cards", + "example_sentence_english": "He used a spade to dig a hole for the new plant.", + "pos": "noun", + "word_frequency": 13094 + }, + { + "word": "temperate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a mild climate; showing moderation or self-restraint", + "example_sentence_english": "The temperate climate of the region is ideal for agriculture.", + "pos": "adjective", + "word_frequency": 13098 + }, + { + "word": "thematic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a particular theme or subject", + "example_sentence_english": "The exhibition had a strong thematic focus on environmental issues.", + "pos": "adjective", + "word_frequency": 13099 + }, + { + "word": "threesome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of three people", + "example_sentence_english": "A threesome of friends went hiking in the mountains.", + "pos": "noun", + "word_frequency": 13100 + }, + { + "word": "thunderstorm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a storm with thunder and lightning", + "example_sentence_english": "We took shelter when the thunderstorm began.", + "pos": "noun", + "word_frequency": 13101 + }, + { + "word": "toaster", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an electrical appliance for toasting bread", + "example_sentence_english": "I put two slices of bread in the toaster.", + "pos": "noun", + "word_frequency": 13102 + }, + { + "word": "treble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a high-pitched voice or sound; a set of three achievements", + "example_sentence_english": "The singer hit a high treble note.", + "pos": "noun", + "word_frequency": 13103 + }, + { + "word": "turquoise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a greenish-blue color; a precious stone of this color", + "example_sentence_english": "She wore a beautiful turquoise necklace.", + "pos": "noun", + "word_frequency": 13104 + }, + { + "word": "ultraviolet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to electromagnetic radiation beyond the violet end of the visible spectrum", + "example_sentence_english": "Ultraviolet rays can be harmful to the skin.", + "pos": "adjective", + "word_frequency": 13105 + }, + { + "word": "unbiased", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing no prejudice for or against something; impartial", + "example_sentence_english": "We need an unbiased opinion on this matter.", + "pos": "adjective", + "word_frequency": 13106 + }, + { + "word": "uncanny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strange or mysterious, especially in an unsettling way", + "example_sentence_english": "She had an uncanny ability to predict the future.", + "pos": "adjective", + "word_frequency": 13108 + }, + { + "word": "underdog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a competitor thought to have little chance of winning", + "example_sentence_english": "The team was the underdog, but they still won the championship.", + "pos": "noun", + "word_frequency": 13109 + }, + { + "word": "ungrateful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not feeling or showing gratitude", + "example_sentence_english": "It's ungrateful to complain after receiving such a generous gift.", + "pos": "adjective", + "word_frequency": 13110 + }, + { + "word": "untreated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having undergone a process or treatment", + "example_sentence_english": "The untreated water was not safe to drink.", + "pos": "adjective", + "word_frequency": 13111 + }, + { + "word": "usefulness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being useful", + "example_sentence_english": "The usefulness of the new tool was immediately apparent.", + "pos": "noun", + "word_frequency": 13112 + }, + { + "word": "vandalism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "action involving deliberate destruction of or damage to public or private property", + "example_sentence_english": "The police are investigating the recent acts of vandalism in the park.", + "pos": "noun", + "word_frequency": 13113 + }, + { + "word": "vibrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move continuously and rapidly to and fro", + "example_sentence_english": "My phone started to vibrate in my pocket.", + "pos": "verb", + "word_frequency": 13115 + }, + { + "word": "vowel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a speech sound produced with an open vocal tract", + "example_sentence_english": "The English alphabet has five main vowels: a, e, i, o, u.", + "pos": "noun", + "word_frequency": 13116 + }, + { + "word": "voyager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who goes on a long journey, especially by sea or in space", + "example_sentence_english": "The ancient voyagers explored new lands across the ocean.", + "pos": "noun", + "word_frequency": 13117 + }, + { + "word": "weirdo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strange or eccentric person", + "example_sentence_english": "Some people thought he was a weirdo because of his unusual hobbies.", + "pos": "noun", + "word_frequency": 13118 + }, + { + "word": "werewolf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mythical person who changes into a wolf", + "example_sentence_english": "In the story, the man transformed into a werewolf under the full moon.", + "pos": "noun", + "word_frequency": 13119 + }, + { + "word": "wrongful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjust or illegal", + "example_sentence_english": "He was accused of wrongful dismissal.", + "pos": "adjective", + "word_frequency": 13120 + }, + { + "word": "acknowledgement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognition or acceptance of the truth or existence of something", + "example_sentence_english": "We received an acknowledgement of our application.", + "pos": "noun", + "word_frequency": 13127 + }, + { + "word": "alligator", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large reptile similar to a crocodile", + "example_sentence_english": "We saw an alligator in the swamp.", + "pos": "noun", + "word_frequency": 13129 + }, + { + "word": "antagonist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an adversary or opponent", + "example_sentence_english": "The villain is the main antagonist in the story.", + "pos": "noun", + "word_frequency": 13130 + }, + { + "word": "approximation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an estimate or rough calculation", + "example_sentence_english": "This is just an approximation, not an exact figure.", + "pos": "noun", + "word_frequency": 13132 + }, + { + "word": "aromatic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a pleasant and distinctive smell", + "example_sentence_english": "The kitchen was filled with an aromatic smell of spices.", + "pos": "adjective", + "word_frequency": 13133 + }, + { + "word": "baroque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a style of European art, architecture, and music of the 17th and early 18th centuries", + "example_sentence_english": "The church was decorated in a baroque style.", + "pos": "adjective", + "word_frequency": 13136 + }, + { + "word": "behavioural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the way a person or animal behaves", + "example_sentence_english": "She studies human behavioural patterns.", + "pos": "adjective", + "word_frequency": 13137 + }, + { + "word": "berg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large mass of ice or mountain", + "example_sentence_english": "We saw a large berg floating in the ocean.", + "pos": "noun", + "word_frequency": 13139 + }, + { + "word": "binder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cover for holding loose papers", + "example_sentence_english": "Please put all the documents in the binder.", + "pos": "noun", + "word_frequency": 13143 + }, + { + "word": "blindly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without seeing or without thought/reason", + "example_sentence_english": "He walked blindly into the dark room.", + "pos": "adverb", + "word_frequency": 13144 + }, + { + "word": "brig", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a military prison, especially on a ship", + "example_sentence_english": "The sailor was sent to the brig for insubordination.", + "pos": "noun", + "word_frequency": 13145 + }, + { + "word": "buggy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of bugs; having errors (informal)", + "example_sentence_english": "The new software update is quite buggy.", + "pos": "adjective", + "word_frequency": 13146 + }, + { + "word": "canonical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conforming to a general rule or acceptable procedure", + "example_sentence_english": "This text is considered canonical within the genre.", + "pos": "adjective", + "word_frequency": 13150 + }, + { + "word": "cautiously", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a careful and hesitant way", + "example_sentence_english": "He opened the door cautiously.", + "pos": "adverb", + "word_frequency": 13151 + }, + { + "word": "ceasefire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a temporary suspension of fighting", + "example_sentence_english": "Both sides agreed to a ceasefire.", + "pos": "noun", + "word_frequency": 13152 + }, + { + "word": "celery", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a vegetable with long, crisp stalks", + "example_sentence_english": "She added chopped celery to the soup.", + "pos": "noun", + "word_frequency": 13153 + }, + { + "word": "collaborator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who works jointly on an activity or project", + "example_sentence_english": "She is a valuable collaborator on this research project.", + "pos": "noun", + "word_frequency": 13155 + }, + { + "word": "counsellor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person trained to give guidance on personal or psychological problems", + "example_sentence_english": "She spoke to a school counsellor about her problems.", + "pos": "noun", + "word_frequency": 13157 + }, + { + "word": "couture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the design and manufacture of fashionable clothes to a client's specific requirements", + "example_sentence_english": "The fashion show featured the latest haute couture designs.", + "pos": "noun", + "word_frequency": 13158 + }, + { + "word": "cramp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a painful, involuntary contraction of a muscle or muscles", + "example_sentence_english": "He got a cramp in his leg during the run.", + "pos": "noun", + "word_frequency": 13159 + }, + { + "word": "crowdfunding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funding a project or venture by raising money from a large number of people", + "example_sentence_english": "They raised enough money through crowdfunding to start their business.", + "pos": "noun", + "word_frequency": 13161 + }, + { + "word": "cutie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an attractive or endearing person or animal", + "example_sentence_english": "Her little brother is such a cutie.", + "pos": "noun", + "word_frequency": 13162 + }, + { + "word": "dab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to touch lightly and quickly", + "example_sentence_english": "She used a tissue to dab the paint off her finger.", + "pos": "verb", + "word_frequency": 13163 + }, + { + "word": "dissatisfaction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of satisfaction", + "example_sentence_english": "There was widespread dissatisfaction with the new policy.", + "pos": "noun", + "word_frequency": 13169 + }, + { + "word": "dodgy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonest or unreliable", + "example_sentence_english": "That car looks a bit dodgy; I wouldn't buy it.", + "pos": "adjective", + "word_frequency": 13170 + }, + { + "word": "earthly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the earth or human life", + "example_sentence_english": "He had no earthly idea what she was talking about.", + "pos": "adjective", + "word_frequency": 13172 + }, + { + "word": "elective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optional; chosen by election", + "example_sentence_english": "Students can choose two elective courses this semester.", + "pos": "adjective", + "word_frequency": 13173 + }, + { + "word": "emit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to produce and discharge", + "example_sentence_english": "The sun emits light and heat.", + "pos": "verb", + "word_frequency": 13174 + }, + { + "word": "enslave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone a slave", + "example_sentence_english": "Historically, powerful nations would often enslave conquered peoples.", + "pos": "verb", + "word_frequency": 13175 + }, + { + "word": "escalation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an increase in intensity or magnitude", + "example_sentence_english": "The conflict showed signs of rapid escalation.", + "pos": "noun", + "word_frequency": 13178 + }, + { + "word": "ethos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the characteristic spirit of a culture, era, or community", + "example_sentence_english": "The company's ethos emphasizes innovation and customer satisfaction.", + "pos": "noun", + "word_frequency": 13179 + }, + { + "word": "exec", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an executive", + "example_sentence_english": "The company execs met to discuss the new strategy.", + "pos": "noun", + "word_frequency": 13181 + }, + { + "word": "eyewitness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has seen something happen", + "example_sentence_english": "An eyewitness described the accident to the police.", + "pos": "noun", + "word_frequency": 13182 + }, + { + "word": "fleeting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lasting for a very short time", + "example_sentence_english": "She caught a fleeting glimpse of the deer in the forest.", + "pos": "adjective", + "word_frequency": 13186 + }, + { + "word": "forfeit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lose or be deprived of something as a penalty", + "example_sentence_english": "If you don't pay the fine, you will forfeit your right to appeal.", + "pos": "verb", + "word_frequency": 13187 + }, + { + "word": "foundry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a factory where metal castings are produced", + "example_sentence_english": "The old building used to be a metal foundry.", + "pos": "noun", + "word_frequency": 13188 + }, + { + "word": "furnishing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an item of furniture or equipment in a house or room", + "example_sentence_english": "The apartment came with basic furnishings.", + "pos": "noun", + "word_frequency": 13190 + }, + { + "word": "giraffe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large African mammal with a very long neck and legs", + "example_sentence_english": "We saw a tall giraffe at the zoo.", + "pos": "noun", + "word_frequency": 13191 + }, + { + "word": "grinder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine or tool for grinding something", + "example_sentence_english": "He used a coffee grinder to prepare his beans.", + "pos": "noun", + "word_frequency": 13194 + }, + { + "word": "gunman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man armed with a gun", + "example_sentence_english": "The police are searching for the gunman involved in the robbery.", + "pos": "noun", + "word_frequency": 13195 + }, + { + "word": "hamper", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hinder or impede the movement or progress of", + "example_sentence_english": "Heavy snow will hamper rescue efforts.", + "pos": "verb", + "word_frequency": 13196 + }, + { + "word": "hardcover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book bound in stiff covers", + "example_sentence_english": "I prefer to buy the hardcover edition of books.", + "pos": "noun", + "word_frequency": 13197 + }, + { + "word": "healer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who treats illnesses or disabilities", + "example_sentence_english": "The village healer used herbs to cure ailments.", + "pos": "noun", + "word_frequency": 13198 + }, + { + "word": "inaugurate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formally begin or introduce", + "example_sentence_english": "The new president will inaugurate the peace talks next month.", + "pos": "verb", + "word_frequency": 13202 + }, + { + "word": "intestinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the intestines", + "example_sentence_english": "The doctor diagnosed an intestinal infection.", + "pos": "adjective", + "word_frequency": 13203 + }, + { + "word": "jock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an athlete, especially in college or high school", + "example_sentence_english": "He was a popular jock in high school, always playing sports.", + "pos": "noun", + "word_frequency": 13207 + }, + { + "word": "kneel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go down on one's knee or knees", + "example_sentence_english": "He had to kneel to tie his shoelace.", + "pos": "verb", + "word_frequency": 13209 + }, + { + "word": "knuckle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a joint of a finger", + "example_sentence_english": "He cracked his knuckles before starting to type.", + "pos": "noun", + "word_frequency": 13210 + }, + { + "word": "mamma", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother (informal)", + "example_sentence_english": "The baby called out for his mamma.", + "pos": "noun", + "word_frequency": 13217 + }, + { + "word": "manic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing wild excitement and energy", + "example_sentence_english": "He was in a manic state after drinking too much coffee.", + "pos": "adjective", + "word_frequency": 13218 + }, + { + "word": "manifold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "many and various", + "example_sentence_english": "The problem has manifold causes, making it difficult to solve.", + "pos": "adjective", + "word_frequency": 13219 + }, + { + "word": "measurable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be measured", + "example_sentence_english": "We need to set measurable goals for the project.", + "pos": "adjective", + "word_frequency": 13221 + }, + { + "word": "meek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quiet, gentle, and easily imposed on", + "example_sentence_english": "Despite his meek appearance, he was a very strong leader.", + "pos": "adjective", + "word_frequency": 13223 + }, + { + "word": "mellow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasantly smooth or soft; relaxed and good-humored", + "example_sentence_english": "The wine had a mellow flavor, perfect for dinner.", + "pos": "adjective", + "word_frequency": 13224 + }, + { + "word": "melon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, round fruit with sweet, juicy flesh", + "example_sentence_english": "I bought a sweet cantaloupe melon at the market.", + "pos": "noun", + "word_frequency": 13225 + }, + { + "word": "miscarriage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the spontaneous expulsion of a fetus; a failure to achieve the intended result", + "example_sentence_english": "The court ruled it a miscarriage of justice.", + "pos": "noun", + "word_frequency": 13226 + }, + { + "word": "mojo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a magic charm or personal influence", + "example_sentence_english": "He lost his mojo after a series of failures.", + "pos": "noun", + "word_frequency": 13228 + }, + { + "word": "narration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act or process of narrating a story", + "example_sentence_english": "The documentary featured a clear and engaging narration.", + "pos": "noun", + "word_frequency": 13231 + }, + { + "word": "nip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bite or pinch lightly; to stop something in its early stages", + "example_sentence_english": "The dog gave a playful nip at my ankle.", + "pos": "verb", + "word_frequency": 13235 + }, + { + "word": "oblivion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being unaware or forgotten", + "example_sentence_english": "His early works have faded into oblivion.", + "pos": "noun", + "word_frequency": 13238 + }, + { + "word": "outpatient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a patient who receives medical treatment without being admitted to a hospital", + "example_sentence_english": "The clinic treats many outpatients who don't need to stay overnight.", + "pos": "noun", + "word_frequency": 13241 + }, + { + "word": "pamphlet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small booklet or leaflet containing information", + "example_sentence_english": "She picked up a pamphlet about local attractions at the tourist office.", + "pos": "noun", + "word_frequency": 13242 + }, + { + "word": "perish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to die, especially in a violent or sudden way", + "example_sentence_english": "Many plants perish in the harsh winter conditions.", + "pos": "verb", + "word_frequency": 13244 + }, + { + "word": "pervert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person whose sexual behavior is considered abnormal and unacceptable", + "example_sentence_english": "The police arrested the man for acting like a pervert in public.", + "pos": "noun", + "word_frequency": 13245 + }, + { + "word": "pharaoh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ruler in ancient Egypt", + "example_sentence_english": "The pharaohs of Egypt built magnificent pyramids.", + "pos": "noun", + "word_frequency": 13246 + }, + { + "word": "philanthropy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the desire to promote the welfare of others, especially by donating money", + "example_sentence_english": "His philanthropy has helped fund many educational programs.", + "pos": "noun", + "word_frequency": 13247 + }, + { + "word": "photon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a particle representing a quantum of light or other electromagnetic radiation", + "example_sentence_english": "Light is composed of tiny particles called photons.", + "pos": "noun", + "word_frequency": 13248 + }, + { + "word": "pollute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contaminate (water, air, or a place) with harmful substances", + "example_sentence_english": "Factories often pollute the air with their emissions.", + "pos": "verb", + "word_frequency": 13249 + }, + { + "word": "potion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a liquid with healing, poisonous, or magical properties", + "example_sentence_english": "The wizard brewed a powerful potion for healing.", + "pos": "noun", + "word_frequency": 13250 + }, + { + "word": "preparedness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of readiness, especially for emergencies", + "example_sentence_english": "Disaster preparedness is crucial for coastal communities.", + "pos": "noun", + "word_frequency": 13251 + }, + { + "word": "primal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an early stage in evolutionary development; fundamental", + "example_sentence_english": "He felt a primal urge to protect his family.", + "pos": "adjective", + "word_frequency": 13252 + }, + { + "word": "psychopath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person suffering from a chronic mental disorder with abnormal or violent social behavior", + "example_sentence_english": "The character in the movie was portrayed as a dangerous psychopath.", + "pos": "noun", + "word_frequency": 13254 + }, + { + "word": "quid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pound sterling (British slang)", + "example_sentence_english": "Can you lend me a few quid until payday?", + "pos": "noun", + "word_frequency": 13256 + }, + { + "word": "receptive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "willing to consider or accept new suggestions and ideas", + "example_sentence_english": "She was very receptive to new ideas for the project.", + "pos": "adjective", + "word_frequency": 13257 + }, + { + "word": "redundancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being no longer needed or useful; dismissal from employment", + "example_sentence_english": "The company announced several redundancies due to restructuring.", + "pos": "noun", + "word_frequency": 13258 + }, + { + "word": "reelection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of electing someone again", + "example_sentence_english": "The president is campaigning hard for reelection.", + "pos": "noun", + "word_frequency": 13259 + }, + { + "word": "reindeer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large deer with long antlers, found in arctic regions", + "example_sentence_english": "Santa's sleigh is pulled by magical reindeer.", + "pos": "noun", + "word_frequency": 13260 + }, + { + "word": "relapse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deterioration in someone's state of health after a temporary improvement", + "example_sentence_english": "After months of sobriety, he suffered a relapse.", + "pos": "noun", + "word_frequency": 13261 + }, + { + "word": "relish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great enjoyment; a condiment eaten with food", + "example_sentence_english": "She ate her meal with great relish.", + "pos": "noun", + "word_frequency": 13262 + }, + { + "word": "rendezvous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a meeting at an agreed time and place", + "example_sentence_english": "They planned a secret rendezvous at the cafe.", + "pos": "noun", + "word_frequency": 13263 + }, + { + "word": "reversible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be turned the other way around or inside out", + "example_sentence_english": "The jacket is reversible, with a different color on each side.", + "pos": "adjective", + "word_frequency": 13264 + }, + { + "word": "rodent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a gnawing mammal of an order that includes rats, mice, squirrels, and beavers", + "example_sentence_english": "Mice and rats are common types of rodents.", + "pos": "noun", + "word_frequency": 13266 + }, + { + "word": "scumbag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a contemptible or despicable person", + "example_sentence_english": "He called the thief a scumbag for stealing from the elderly.", + "pos": "noun", + "word_frequency": 13271 + }, + { + "word": "selectively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that involves careful choice", + "example_sentence_english": "She selectively chose the best fruits from the basket.", + "pos": "adverb", + "word_frequency": 13272 + }, + { + "word": "sideline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an activity pursued in addition to one's main occupation; the area out of bounds along the side of a sports field", + "example_sentence_english": "He earns extra money from his sideline as a freelance writer.", + "pos": "noun", + "word_frequency": 13273 + }, + { + "word": "simplistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treating complex issues and problems as if they are much simpler than they really are", + "example_sentence_english": "His explanation of the problem was too simplistic.", + "pos": "adjective", + "word_frequency": 13274 + }, + { + "word": "skater", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who skates, especially on ice or roller skates", + "example_sentence_english": "The ice skater performed a beautiful routine.", + "pos": "noun", + "word_frequency": 13275 + }, + { + "word": "skincare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the practice of maintaining the health and appearance of the skin", + "example_sentence_english": "She has a strict daily skincare routine.", + "pos": "noun", + "word_frequency": 13276 + }, + { + "word": "supervisory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to supervision", + "example_sentence_english": "She has a supervisory role in the department.", + "pos": "adjective", + "word_frequency": 13282 + }, + { + "word": "syllable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unit of pronunciation", + "example_sentence_english": "The word 'water' has two syllables.", + "pos": "noun", + "word_frequency": 13283 + }, + { + "word": "synod", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "church council", + "example_sentence_english": "The synod met to discuss new church policies.", + "pos": "noun", + "word_frequency": 13284 + }, + { + "word": "takeaway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food to be eaten elsewhere; main point", + "example_sentence_english": "Let's get a Chinese takeaway tonight.", + "pos": "noun", + "word_frequency": 13286 + }, + { + "word": "treacherous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dangerous; disloyal", + "example_sentence_english": "The mountain path was treacherous after the storm.", + "pos": "adjective", + "word_frequency": 13291 + }, + { + "word": "untold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immeasurable; not revealed", + "example_sentence_english": "The flood caused untold damage to the region.", + "pos": "adjective", + "word_frequency": 13293 + }, + { + "word": "uplift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise; to improve morally or socially", + "example_sentence_english": "Her inspiring speech helped to uplift everyone's spirits.", + "pos": "verb", + "word_frequency": 13294 + }, + { + "word": "vaccinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to administer a vaccine", + "example_sentence_english": "Doctors recommend that children vaccinate against common diseases.", + "pos": "verb", + "word_frequency": 13295 + }, + { + "word": "versatility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ability to adapt or be adapted to many different functions or activities", + "example_sentence_english": "The versatility of the new software makes it very useful.", + "pos": "noun", + "word_frequency": 13297 + }, + { + "word": "visualization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the formation of mental images", + "example_sentence_english": "Data visualization helps us understand complex information.", + "pos": "noun", + "word_frequency": 13298 + }, + { + "word": "voicemail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an electronic system for recording messages", + "example_sentence_english": "I left a message on his voicemail.", + "pos": "noun", + "word_frequency": 13299 + }, + { + "word": "volt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unit of electric potential", + "example_sentence_english": "The battery provides 12 volts of power.", + "pos": "noun", + "word_frequency": 13300 + }, + { + "word": "wield", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hold and use (a weapon or tool); to exercise (power or influence)", + "example_sentence_english": "He wielded the sword with great skill.", + "pos": "verb", + "word_frequency": 13304 + }, + { + "word": "abnormality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a deviation from what is normal or usual", + "example_sentence_english": "The doctor found an abnormality in the test results.", + "pos": "noun", + "word_frequency": 13309 + }, + { + "word": "apprehend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arrest; to understand", + "example_sentence_english": "The police were able to apprehend the suspect.", + "pos": "verb", + "word_frequency": 13311 + }, + { + "word": "ascend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go up or climb", + "example_sentence_english": "The hot air balloon began to ascend slowly.", + "pos": "verb", + "word_frequency": 13312 + }, + { + "word": "attributable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to be attributed to", + "example_sentence_english": "The success of the project is largely attributable to her hard work.", + "pos": "adjective", + "word_frequency": 13313 + }, + { + "word": "barb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sharp projection; a hurtful remark", + "example_sentence_english": "The fishhook had a sharp barb.", + "pos": "noun", + "word_frequency": 13315 + }, + { + "word": "bastion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a projecting part of a fortification; a stronghold", + "example_sentence_english": "The old castle was a bastion of defense.", + "pos": "noun", + "word_frequency": 13316 + }, + { + "word": "bey", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a Turkish title of respect or honor", + "example_sentence_english": "The bey ruled over the province for many years.", + "pos": "noun", + "word_frequency": 13318 + }, + { + "word": "biopsy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an examination of tissue removed from a living body", + "example_sentence_english": "The doctor recommended a biopsy to check the lump.", + "pos": "noun", + "word_frequency": 13319 + }, + { + "word": "bolster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to support or strengthen", + "example_sentence_english": "The new evidence will bolster the prosecution's case.", + "pos": "verb", + "word_frequency": 13321 + }, + { + "word": "bray", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make a loud, harsh cry (like a donkey)", + "example_sentence_english": "We heard the donkey bray loudly from the field.", + "pos": "verb", + "word_frequency": 13322 + }, + { + "word": "categorize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to place in a category", + "example_sentence_english": "Please categorize these books by genre.", + "pos": "verb", + "word_frequency": 13325 + }, + { + "word": "chopper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helicopter (informal); a type of axe", + "example_sentence_english": "A police chopper was circling overhead.", + "pos": "noun", + "word_frequency": 13329 + }, + { + "word": "chunky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thick, solid, or lumpy", + "example_sentence_english": "She wore a chunky knit sweater.", + "pos": "adjective", + "word_frequency": 13330 + }, + { + "word": "cohesive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forming a united whole", + "example_sentence_english": "The team presented a cohesive argument.", + "pos": "adjective", + "word_frequency": 13331 + }, + { + "word": "commando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a military unit trained for raids", + "example_sentence_english": "The commandos launched a surprise attack.", + "pos": "noun", + "word_frequency": 13333 + }, + { + "word": "contentious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing or likely to cause an argument", + "example_sentence_english": "The issue of climate change remains highly contentious.", + "pos": "adjective", + "word_frequency": 13334 + }, + { + "word": "cosy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giving a feeling of comfort, warmth, and relaxation", + "example_sentence_english": "The small cottage felt very cosy.", + "pos": "adjective", + "word_frequency": 13337 + }, + { + "word": "crease", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a line or ridge produced on paper or cloth by folding or pressing", + "example_sentence_english": "He ironed the crease out of his shirt.", + "pos": "noun", + "word_frequency": 13338 + }, + { + "word": "dehydration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the loss or removal of water", + "example_sentence_english": "Symptoms of dehydration include thirst and dizziness.", + "pos": "noun", + "word_frequency": 13339 + }, + { + "word": "denomination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a recognized autonomous branch of the Christian Church; a unit of money", + "example_sentence_english": "The machine only accepts coins of certain denominations.", + "pos": "noun", + "word_frequency": 13340 + }, + { + "word": "digestion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of breaking down food", + "example_sentence_english": "Eating slowly aids digestion.", + "pos": "noun", + "word_frequency": 13342 + }, + { + "word": "dismantle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take apart; to break down", + "example_sentence_english": "The team had to dismantle the old machinery.", + "pos": "verb", + "word_frequency": 13343 + }, + { + "word": "dissatisfied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not content or happy with something", + "example_sentence_english": "Many customers were dissatisfied with the service.", + "pos": "adjective", + "word_frequency": 13344 + }, + { + "word": "embargo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official ban on trade or other commercial activity with a particular country", + "example_sentence_english": "The government imposed an embargo on arms sales.", + "pos": "noun", + "word_frequency": 13345 + }, + { + "word": "embodiment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tangible or visible form of an idea, quality, or feeling", + "example_sentence_english": "She was the embodiment of grace and elegance.", + "pos": "noun", + "word_frequency": 13346 + }, + { + "word": "entrench", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to establish (an attitude, habit, or belief) so firmly that change is very difficult or unlikely", + "example_sentence_english": "The habit of daily exercise became deeply entrenched in his routine.", + "pos": "verb", + "word_frequency": 13347 + }, + { + "word": "explanatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving to explain something", + "example_sentence_english": "The document included an explanatory note.", + "pos": "adjective", + "word_frequency": 13348 + }, + { + "word": "extremism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the holding of extreme political or religious views", + "example_sentence_english": "The rise of extremism is a global concern.", + "pos": "noun", + "word_frequency": 13349 + }, + { + "word": "filtration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of filtering something", + "example_sentence_english": "Water purification involves several stages of filtration.", + "pos": "noun", + "word_frequency": 13353 + }, + { + "word": "finalize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complete or settle (a plan, arrangement, or deal)", + "example_sentence_english": "We need to finalize the details of the contract.", + "pos": "verb", + "word_frequency": 13354 + }, + { + "word": "fracking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of injecting liquid at high pressure into subterranean rocks to force open existing fissures and extract oil or gas", + "example_sentence_english": "Environmental groups are concerned about the impact of fracking.", + "pos": "noun", + "word_frequency": 13355 + }, + { + "word": "fungal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or caused by a fungus", + "example_sentence_english": "He was treated for a fungal infection.", + "pos": "adjective", + "word_frequency": 13358 + }, + { + "word": "gloom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partial or total darkness; a feeling of melancholy", + "example_sentence_english": "A sense of gloom filled the room after the bad news.", + "pos": "noun", + "word_frequency": 13364 + }, + { + "word": "goblin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mischievous, ugly, dwarf-like creature of folklore", + "example_sentence_english": "The children dressed up as goblins for Halloween.", + "pos": "noun", + "word_frequency": 13365 + }, + { + "word": "gunner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who operates a gun, especially a large one", + "example_sentence_english": "The gunner aimed the cannon at the target.", + "pos": "noun", + "word_frequency": 13366 + }, + { + "word": "hamster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, short-tailed rodent often kept as a pet", + "example_sentence_english": "My sister got a new hamster for her birthday.", + "pos": "noun", + "word_frequency": 13367 + }, + { + "word": "hex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a magic spell; a curse", + "example_sentence_english": "She believed someone had put a hex on her.", + "pos": "noun", + "word_frequency": 13368 + }, + { + "word": "hydra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mythical multi-headed serpent; a freshwater polyp", + "example_sentence_english": "The hero had to fight the Lernaean Hydra.", + "pos": "noun", + "word_frequency": 13369 + }, + { + "word": "hypocritical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behaving in a way that suggests one has higher standards or more noble beliefs than is the case", + "example_sentence_english": "It's hypocritical to criticize others for something you do yourself.", + "pos": "adjective", + "word_frequency": 13370 + }, + { + "word": "illustrious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "well known, respected, and admired for past achievements", + "example_sentence_english": "The university has an illustrious list of alumni.", + "pos": "adjective", + "word_frequency": 13371 + }, + { + "word": "indigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a deep purplish-blue color", + "example_sentence_english": "The sky turned a deep indigo just before sunset.", + "pos": "noun", + "word_frequency": 13372 + }, + { + "word": "insurgency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an active revolt or uprising", + "example_sentence_english": "The government is trying to suppress the insurgency.", + "pos": "noun", + "word_frequency": 13375 + }, + { + "word": "irregularity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being irregular", + "example_sentence_english": "There was an irregularity in the financial records.", + "pos": "noun", + "word_frequency": 13377 + }, + { + "word": "labyrinth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a complicated irregular network of passages or paths in which it is difficult to find one's way; a maze", + "example_sentence_english": "The ancient palace was a labyrinth of corridors.", + "pos": "noun", + "word_frequency": 13380 + }, + { + "word": "latency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being in existence but not yet developed or manifest; delay", + "example_sentence_english": "High latency can cause problems in online gaming.", + "pos": "noun", + "word_frequency": 13382 + }, + { + "word": "limbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an uncertain period of awaiting a decision or resolution; an intermediate state or condition", + "example_sentence_english": "The project is currently in limbo, awaiting approval.", + "pos": "noun", + "word_frequency": 13383 + }, + { + "word": "lousy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very poor or bad", + "example_sentence_english": "I had a lousy day at work.", + "pos": "adjective", + "word_frequency": 13384 + }, + { + "word": "luncheon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal lunch or a light meal", + "example_sentence_english": "They attended a business luncheon at the hotel.", + "pos": "noun", + "word_frequency": 13385 + }, + { + "word": "mailbox", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a private box for mail, or a public box for posting letters", + "example_sentence_english": "I checked the mailbox for letters.", + "pos": "noun", + "word_frequency": 13386 + }, + { + "word": "memorabilia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "objects kept or collected because of their historical interest, especially those associated with famous people or events", + "example_sentence_english": "The museum displayed sports memorabilia from the 1950s.", + "pos": "noun", + "word_frequency": 13388 + }, + { + "word": "midterm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the middle part of a period of time, especially a school term or political term of office", + "example_sentence_english": "Students are preparing for their midterm exams.", + "pos": "noun", + "word_frequency": 13389 + }, + { + "word": "midtown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the central part of a town or city", + "example_sentence_english": "The new restaurant is located in midtown.", + "pos": "noun", + "word_frequency": 13390 + }, + { + "word": "muzzle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the projecting part of the face, including the nose and mouth, of an animal such as a dog or horse; a device fitted over an animal's snout to prevent it from biting", + "example_sentence_english": "The dog wore a muzzle at the vet's office.", + "pos": "noun", + "word_frequency": 13394 + }, + { + "word": "nurture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "care for and encourage the growth or development of", + "example_sentence_english": "Parents nurture their children with love and support.", + "pos": "verb", + "word_frequency": 13397 + }, + { + "word": "oblivious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not aware of or not concerned about what is happening around one", + "example_sentence_english": "He seemed oblivious to the danger.", + "pos": "adjective", + "word_frequency": 13398 + }, + { + "word": "ode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a lyric poem in the form of an address to a particular subject, often elevated in style or manner and written in varied or irregular meter", + "example_sentence_english": "The poet wrote an ode to joy.", + "pos": "noun", + "word_frequency": 13399 + }, + { + "word": "oem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Original Equipment Manufacturer", + "example_sentence_english": "The company supplies parts to several major OEM clients.", + "pos": "noun", + "word_frequency": 13400 + }, + { + "word": "overt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obvious; not secret", + "example_sentence_english": "He showed overt hostility towards the new policy.", + "pos": "adjective", + "word_frequency": 13404 + }, + { + "word": "pacer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or animal that sets the pace", + "example_sentence_english": "The marathon runner acted as a pacer for his friend.", + "pos": "noun", + "word_frequency": 13405 + }, + { + "word": "paisley", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a distinctive intricate pattern of curved, teardrop-shaped figures", + "example_sentence_english": "She wore a scarf with a beautiful paisley design.", + "pos": "noun", + "word_frequency": 13406 + }, + { + "word": "pajama", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "loose-fitting garments worn for sleeping", + "example_sentence_english": "He changed into his pajamas before going to bed.", + "pos": "noun", + "word_frequency": 13407 + }, + { + "word": "patriarch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the male head of a family or tribe", + "example_sentence_english": "The patriarch of the family made all the important decisions.", + "pos": "noun", + "word_frequency": 13409 + }, + { + "word": "penthouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an apartment on the top floor of a tall building", + "example_sentence_english": "They bought a luxurious penthouse with a view of the city.", + "pos": "noun", + "word_frequency": 13410 + }, + { + "word": "perjury", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the offense of willfully telling an untruth in a court of law", + "example_sentence_english": "He was charged with perjury for lying under oath.", + "pos": "noun", + "word_frequency": 13411 + }, + { + "word": "pious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devoutly religious", + "example_sentence_english": "She was known for her pious devotion to her faith.", + "pos": "adjective", + "word_frequency": 13412 + }, + { + "word": "prematurely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "before the due or usual time", + "example_sentence_english": "The project was prematurely announced before all details were finalized.", + "pos": "adverb", + "word_frequency": 13414 + }, + { + "word": "prioritize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to determine the order for dealing with (items or tasks) according to their relative importance", + "example_sentence_english": "You need to prioritize your tasks to meet the deadline.", + "pos": "verb", + "word_frequency": 13415 + }, + { + "word": "proprietor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the owner of a business or a holder of property", + "example_sentence_english": "The proprietor of the small shop greeted every customer personally.", + "pos": "noun", + "word_frequency": 13416 + }, + { + "word": "quarrel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an angry argument or disagreement", + "example_sentence_english": "They had a minor quarrel about who should do the dishes.", + "pos": "noun", + "word_frequency": 13418 + }, + { + "word": "raja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an Indian prince or chief", + "example_sentence_english": "The raja ruled over a vast kingdom.", + "pos": "noun", + "word_frequency": 13420 + }, + { + "word": "rebate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a partial refund to someone who has paid too much money for something", + "example_sentence_english": "Customers can claim a rebate on their energy-efficient appliances.", + "pos": "noun", + "word_frequency": 13422 + }, + { + "word": "resurgence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an increase or revival after a period of little activity, popularity, or occurrence", + "example_sentence_english": "There has been a resurgence of interest in traditional crafts.", + "pos": "noun", + "word_frequency": 13423 + }, + { + "word": "rh", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Rhesus factor", + "example_sentence_english": "Her blood type is O negative, meaning she has Rh-negative blood.", + "pos": "noun", + "word_frequency": 13424 + }, + { + "word": "roc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mythical enormous bird of prey", + "example_sentence_english": "In Arabian mythology, the roc was a giant bird capable of carrying off elephants.", + "pos": "noun", + "word_frequency": 13425 + }, + { + "word": "rooster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a male chicken", + "example_sentence_english": "The rooster crowed loudly at dawn.", + "pos": "noun", + "word_frequency": 13426 + }, + { + "word": "rx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescription", + "example_sentence_english": "The doctor wrote an Rx for the patient's medication.", + "pos": "noun", + "word_frequency": 13428 + }, + { + "word": "sakura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Japanese cherry blossom", + "example_sentence_english": "The sakura trees bloom beautifully in spring.", + "pos": "noun", + "word_frequency": 13430 + }, + { + "word": "sanskrit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ancient Indo-Aryan language", + "example_sentence_english": "Many ancient Indian texts are written in Sanskrit.", + "pos": "noun", + "word_frequency": 13431 + }, + { + "word": "scuba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Self-Contained Underwater Breathing Apparatus", + "example_sentence_english": "He learned to use scuba gear for his underwater photography.", + "pos": "noun", + "word_frequency": 13434 + }, + { + "word": "seamless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smooth and continuous, without apparent breaks or transitions", + "example_sentence_english": "The transition between the two scenes was seamless.", + "pos": "adjective", + "word_frequency": 13435 + }, + { + "word": "shoreline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the line where a large body of water meets the land", + "example_sentence_english": "We walked along the shoreline, collecting seashells.", + "pos": "noun", + "word_frequency": 13439 + }, + { + "word": "sickening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing nausea or disgust", + "example_sentence_english": "The smell from the garbage was sickening.", + "pos": "adjective", + "word_frequency": 13441 + }, + { + "word": "silhouette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark outline against a lighter background", + "example_sentence_english": "We could see the silhouette of the mountains against the sunset.", + "pos": "noun", + "word_frequency": 13442 + }, + { + "word": "slug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a slow-moving mollusc; a bullet", + "example_sentence_english": "A slug left a slimy trail on the leaf.", + "pos": "noun", + "word_frequency": 13443 + }, + { + "word": "smackdown", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a decisive defeat or confrontation", + "example_sentence_english": "The debate turned into a political smackdown.", + "pos": "noun", + "word_frequency": 13444 + }, + { + "word": "smug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessively self-satisfied or complacent", + "example_sentence_english": "He had a smug look on his face after winning.", + "pos": "adjective", + "word_frequency": 13445 + }, + { + "word": "soprano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the highest female singing voice", + "example_sentence_english": "The opera singer was a talented soprano.", + "pos": "noun", + "word_frequency": 13446 + }, + { + "word": "spreadsheet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an electronic document in which data is arranged in rows and columns", + "example_sentence_english": "I organized the data in a spreadsheet.", + "pos": "noun", + "word_frequency": 13448 + }, + { + "word": "stagnant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not flowing or moving; showing no activity", + "example_sentence_english": "The stagnant water in the pond attracted mosquitoes.", + "pos": "adjective", + "word_frequency": 13449 + }, + { + "word": "tendon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flexible cord of strong fibrous collagen tissue attaching a muscle to a bone", + "example_sentence_english": "He pulled a tendon in his leg while running.", + "pos": "noun", + "word_frequency": 13453 + }, + { + "word": "toughness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being strong and resilient", + "example_sentence_english": "His mental toughness helped him overcome the challenge.", + "pos": "noun", + "word_frequency": 13458 + }, + { + "word": "unanswered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not replied to or solved", + "example_sentence_english": "Many questions remained unanswered after the press conference.", + "pos": "adjective", + "word_frequency": 13462 + }, + { + "word": "unethical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not morally correct", + "example_sentence_english": "His business practices were considered unethical.", + "pos": "adjective", + "word_frequency": 13463 + }, + { + "word": "uptown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the residential part of a town or city, away from the main business area", + "example_sentence_english": "They decided to go uptown for dinner.", + "pos": "noun", + "word_frequency": 13465 + }, + { + "word": "urinary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to urine or the organs that produce and excrete it", + "example_sentence_english": "The doctor examined the patient's urinary system.", + "pos": "adjective", + "word_frequency": 13466 + }, + { + "word": "valiant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "possessing or showing courage or determination", + "example_sentence_english": "The valiant knight fought the dragon.", + "pos": "adjective", + "word_frequency": 13467 + }, + { + "word": "vigilante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a self-appointed group of citizens who undertake law enforcement in their community without legal authority", + "example_sentence_english": "The town was plagued by a vigilante who sought justice outside the law.", + "pos": "noun", + "word_frequency": 13468 + }, + { + "word": "viper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a venomous snake", + "example_sentence_english": "Be careful, there might be a viper in the tall grass.", + "pos": "noun", + "word_frequency": 13469 + }, + { + "word": "weekday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "any day of the week except Sunday and Saturday", + "example_sentence_english": "I usually work during the weekday.", + "pos": "noun", + "word_frequency": 13470 + }, + { + "word": "wrinkle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a slight line or fold in something, especially fabric or skin", + "example_sentence_english": "She smoothed out the wrinkle in her dress.", + "pos": "noun", + "word_frequency": 13475 + }, + { + "word": "abstraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of dealing with ideas rather than events", + "example_sentence_english": "The concept of time is an abstraction.", + "pos": "noun", + "word_frequency": 13480 + }, + { + "word": "adjunct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thing added to something else as a supplementary rather than an essential part", + "example_sentence_english": "The new department was an adjunct to the existing faculty.", + "pos": "noun", + "word_frequency": 13481 + }, + { + "word": "attentive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paying close attention", + "example_sentence_english": "The students were very attentive during the lecture.", + "pos": "adjective", + "word_frequency": 13485 + }, + { + "word": "auntie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aunt (informal)", + "example_sentence_english": "My auntie always bakes the best cookies.", + "pos": "noun", + "word_frequency": 13486 + }, + { + "word": "ballpark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an approximate range or estimate", + "example_sentence_english": "Can you give me a ballpark figure for the cost?", + "pos": "noun", + "word_frequency": 13488 + }, + { + "word": "barbarian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person belonging to a tribe or group that is considered uncivilized", + "example_sentence_english": "The Roman Empire often fought against barbarian tribes.", + "pos": "noun", + "word_frequency": 13489 + }, + { + "word": "beak", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bird's mouth", + "example_sentence_english": "The parrot used its strong beak to crack the nut.", + "pos": "noun", + "word_frequency": 13490 + }, + { + "word": "beige", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pale sandy fawn color", + "example_sentence_english": "She painted her living room a light beige.", + "pos": "adjective", + "word_frequency": 13491 + }, + { + "word": "blasphemy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act or offense of speaking sacrilegiously about God or sacred things", + "example_sentence_english": "His comments were considered an act of blasphemy by many.", + "pos": "noun", + "word_frequency": 13493 + }, + { + "word": "blueberry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, sweet, dark blue berry", + "example_sentence_english": "I love to eat blueberries with my yogurt.", + "pos": "noun", + "word_frequency": 13494 + }, + { + "word": "boar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wild pig", + "example_sentence_english": "A wild boar was spotted in the forest.", + "pos": "noun", + "word_frequency": 13495 + }, + { + "word": "bran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the edible, outer layer of a grain", + "example_sentence_english": "Many breakfast cereals contain bran for fiber.", + "pos": "noun", + "word_frequency": 13497 + }, + { + "word": "brigadier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rank in the British army, above colonel and below major general", + "example_sentence_english": "The brigadier gave orders to his troops.", + "pos": "noun", + "word_frequency": 13498 + }, + { + "word": "broaden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make or become broader", + "example_sentence_english": "Traveling can broaden your horizons.", + "pos": "verb", + "word_frequency": 13499 + }, + { + "word": "bulky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large and unwieldy", + "example_sentence_english": "The package was too bulky to carry alone.", + "pos": "adjective", + "word_frequency": 13501 + }, + { + "word": "cameraman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who operates a film or television camera", + "example_sentence_english": "The cameraman filmed the entire event.", + "pos": "noun", + "word_frequency": 13503 + }, + { + "word": "carbohydrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organic compound such as sugar or starch", + "example_sentence_english": "Pasta is a good source of carbohydrates.", + "pos": "noun", + "word_frequency": 13504 + }, + { + "word": "carnage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the killing of a large number of people", + "example_sentence_english": "The battle resulted in terrible carnage.", + "pos": "noun", + "word_frequency": 13505 + }, + { + "word": "chateau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large French country house or castle", + "example_sentence_english": "They stayed in a beautiful chateau in the Loire Valley.", + "pos": "noun", + "word_frequency": 13506 + }, + { + "word": "commend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise formally or officially", + "example_sentence_english": "I commend you for your hard work.", + "pos": "verb", + "word_frequency": 13509 + }, + { + "word": "commune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of people living together and sharing possessions and responsibilities", + "example_sentence_english": "They decided to live in a rural commune.", + "pos": "noun", + "word_frequency": 13510 + }, + { + "word": "conclusive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving to prove a case; decisive or convincing", + "example_sentence_english": "The evidence was conclusive; he was guilty.", + "pos": "adjective", + "word_frequency": 13511 + }, + { + "word": "conservatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a room with a glass roof and walls, attached to a house; a school for music or art", + "example_sentence_english": "She studied piano at the music conservatory.", + "pos": "noun", + "word_frequency": 13512 + }, + { + "word": "considerate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "careful not to inconvenience or harm others", + "example_sentence_english": "It was very considerate of you to offer help.", + "pos": "adjective", + "word_frequency": 13513 + }, + { + "word": "coo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a dove or pigeon) make a soft, murmuring sound", + "example_sentence_english": "The baby began to coo happily.", + "pos": "verb", + "word_frequency": 13515 + }, + { + "word": "cryptocurrency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a digital currency in which transactions are verified and records maintained by a decentralized system", + "example_sentence_english": "Bitcoin is a well-known cryptocurrency.", + "pos": "noun", + "word_frequency": 13516 + }, + { + "word": "cultured", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characterized by refined taste and good education", + "example_sentence_english": "He is a very cultured man, well-traveled and knowledgeable.", + "pos": "adjective", + "word_frequency": 13517 + }, + { + "word": "daycare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "care provided during the day for children or elderly people", + "example_sentence_english": "We send our daughter to daycare while we work.", + "pos": "noun", + "word_frequency": 13518 + }, + { + "word": "depressive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or causing depression; gloomy", + "example_sentence_english": "She was experiencing a depressive episode.", + "pos": "adjective", + "word_frequency": 13520 + }, + { + "word": "disproportionately", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to an extent that is too large or too small in comparison with something else", + "example_sentence_english": "The rich disproportionately benefit from these tax cuts.", + "pos": "adverb", + "word_frequency": 13521 + }, + { + "word": "ecommerce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial transactions conducted electronically on the internet", + "example_sentence_english": "The growth of ecommerce has transformed retail.", + "pos": "noun", + "word_frequency": 13522 + }, + { + "word": "emery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hard, dark, granular mineral used for grinding and polishing", + "example_sentence_english": "He used an emery board to file his nails.", + "pos": "noun", + "word_frequency": 13523 + }, + { + "word": "entrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or organization that enters a competition or is admitted to a group or market", + "example_sentence_english": "There were over 100 entrants in the marathon.", + "pos": "noun", + "word_frequency": 13524 + }, + { + "word": "epidemiology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of medicine that deals with the incidence, distribution, and possible control of diseases", + "example_sentence_english": "Epidemiology plays a crucial role in public health.", + "pos": "noun", + "word_frequency": 13525 + }, + { + "word": "errand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short journey undertaken in order to deliver or collect something, especially on someone else's behalf", + "example_sentence_english": "I need to run a few errands this afternoon.", + "pos": "noun", + "word_frequency": 13526 + }, + { + "word": "esque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in the style of; resembling", + "example_sentence_english": "The painting had a dreamlike, surrealist-esque quality.", + "pos": "adjective", + "word_frequency": 13527 + }, + { + "word": "exaggeration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a statement that represents something as better or worse than it really is", + "example_sentence_english": "His story was full of exaggeration.", + "pos": "noun", + "word_frequency": 13528 + }, + { + "word": "exhaustive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "examining, including, or considering all elements or aspects; fully comprehensive", + "example_sentence_english": "They conducted an exhaustive search for the missing documents.", + "pos": "adjective", + "word_frequency": 13529 + }, + { + "word": "exponentially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by a very large amount; increasingly rapidly", + "example_sentence_english": "The company's profits grew exponentially last year.", + "pos": "adverb", + "word_frequency": 13530 + }, + { + "word": "exporter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person, country, or company that sends goods or services to another country for sale", + "example_sentence_english": "The country is a major exporter of oil.", + "pos": "noun", + "word_frequency": 13531 + }, + { + "word": "externally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on the outside; outwardly", + "example_sentence_english": "The building looks fine externally, but it needs work inside.", + "pos": "adverb", + "word_frequency": 13532 + }, + { + "word": "fanbase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the body of admirers or supporters of a person, group, or organization", + "example_sentence_english": "The band has a huge international fanbase.", + "pos": "noun", + "word_frequency": 13533 + }, + { + "word": "fermentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the chemical breakdown of a substance by bacteria, yeasts, or other microorganisms", + "example_sentence_english": "Yeast is essential for the fermentation of grapes into wine.", + "pos": "noun", + "word_frequency": 13534 + }, + { + "word": "fiasco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a complete failure, especially a humiliating or ludicrous one", + "example_sentence_english": "The party turned into a complete fiasco.", + "pos": "noun", + "word_frequency": 13535 + }, + { + "word": "fifteenth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "constituting number fifteen in a sequence; 15th", + "example_sentence_english": "Today is the fifteenth of May.", + "pos": "numeral", + "word_frequency": 13536 + }, + { + "word": "fright", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden intense feeling of fear", + "example_sentence_english": "The loud noise gave me a fright.", + "pos": "noun", + "word_frequency": 13539 + }, + { + "word": "fruitful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "producing good or helpful results; productive", + "example_sentence_english": "We had a very fruitful discussion about the project.", + "pos": "adjective", + "word_frequency": 13540 + }, + { + "word": "gall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bold, impudent behavior; bitterness of spirit", + "example_sentence_english": "He had the gall to accuse me of lying.", + "pos": "noun", + "word_frequency": 13541 + }, + { + "word": "gastric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the stomach", + "example_sentence_english": "He suffered from a gastric ulcer.", + "pos": "adjective", + "word_frequency": 13542 + }, + { + "word": "gild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cover thinly with gold; to give a specious or attractive appearance to", + "example_sentence_english": "They decided to gild the frame of the old mirror.", + "pos": "verb", + "word_frequency": 13543 + }, + { + "word": "hastily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with excessive speed or urgency; hurriedly", + "example_sentence_english": "He hastily packed his bags and left.", + "pos": "adverb", + "word_frequency": 13546 + }, + { + "word": "horizontally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a horizontal direction or position", + "example_sentence_english": "The line was drawn horizontally across the page.", + "pos": "adverb", + "word_frequency": 13550 + }, + { + "word": "hurtful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing emotional pain or distress", + "example_sentence_english": "Her words were very hurtful.", + "pos": "adjective", + "word_frequency": 13552 + }, + { + "word": "inaccessible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to be reached or entered", + "example_sentence_english": "The remote village was almost inaccessible in winter.", + "pos": "adjective", + "word_frequency": 13553 + }, + { + "word": "inferno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large fire that is dangerously out of control", + "example_sentence_english": "The old factory was engulfed in an inferno.", + "pos": "noun", + "word_frequency": 13554 + }, + { + "word": "jug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a container with a handle and a lip, for holding and pouring liquids", + "example_sentence_english": "Please fill the jug with water.", + "pos": "noun", + "word_frequency": 13558 + }, + { + "word": "kinder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "more kind", + "example_sentence_english": "She is kinder than her sister.", + "pos": "adjective", + "word_frequency": 13560 + }, + { + "word": "labrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of dog; a region in Canada.", + "example_sentence_english": "My friend has a friendly Labrador.", + "pos": "noun", + "word_frequency": 13562 + }, + { + "word": "latte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A coffee drink made with espresso and steamed milk.", + "example_sentence_english": "I ordered a hot latte this morning.", + "pos": "noun", + "word_frequency": 13563 + }, + { + "word": "leafy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having many leaves; covered with leaves.", + "example_sentence_english": "The leafy trees provided much-needed shade.", + "pos": "adjective", + "word_frequency": 13564 + }, + { + "word": "lobe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rounded projection or division, especially of the brain or lung.", + "example_sentence_english": "The earlobe is the soft, fleshy part at the bottom of the ear.", + "pos": "noun", + "word_frequency": 13565 + }, + { + "word": "loo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toilet (informal, British English).", + "example_sentence_english": "Excuse me, where's the loo?", + "pos": "noun", + "word_frequency": 13566 + }, + { + "word": "margarita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cocktail made with tequila, triple sec, and lime juice.", + "example_sentence_english": "She ordered a frozen margarita with salt.", + "pos": "noun", + "word_frequency": 13571 + }, + { + "word": "masturbate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To stimulate one's own genitals for sexual pleasure.", + "example_sentence_english": "The topic of masturbation is often discussed in sex education.", + "pos": "verb", + "word_frequency": 13572 + }, + { + "word": "meddle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To interfere in something that is not one's concern.", + "example_sentence_english": "Don't meddle in other people's affairs.", + "pos": "verb", + "word_frequency": 13574 + }, + { + "word": "omission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act of leaving something out or not including something.", + "example_sentence_english": "There was a significant omission in the report.", + "pos": "noun", + "word_frequency": 13578 + }, + { + "word": "orchid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A plant with complex, often showy flowers.", + "example_sentence_english": "She received a beautiful orchid as a gift.", + "pos": "noun", + "word_frequency": 13579 + }, + { + "word": "overtake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To catch up with and pass while traveling in the same direction.", + "example_sentence_english": "The car quickly overtook the truck on the highway.", + "pos": "verb", + "word_frequency": 13580 + }, + { + "word": "paramedic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person trained to give emergency medical care to people who are injured or ill.", + "example_sentence_english": "The paramedics arrived quickly at the scene of the accident.", + "pos": "noun", + "word_frequency": 13581 + }, + { + "word": "peat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A brown, soil-like material characteristic of boggy, acid ground, consisting of partially decomposed vegetable matter.", + "example_sentence_english": "Peat is often used as a fuel or in gardening.", + "pos": "noun", + "word_frequency": 13584 + }, + { + "word": "pedophile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who is sexually attracted to children.", + "example_sentence_english": "The police arrested the pedophile.", + "pos": "noun", + "word_frequency": 13585 + }, + { + "word": "peptide", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A compound consisting of two or more amino acids linked in a chain.", + "example_sentence_english": "Peptides play a crucial role in biological processes.", + "pos": "noun", + "word_frequency": 13586 + }, + { + "word": "periphery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The outer limits or edge of an area or object.", + "example_sentence_english": "The city's poorer districts are on its periphery.", + "pos": "noun", + "word_frequency": 13587 + }, + { + "word": "piggy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A small pig (often used by children).", + "example_sentence_english": "The little piggy went to market.", + "pos": "noun", + "word_frequency": 13588 + }, + { + "word": "polarize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To cause (people, opinions, etc.) to separate into opposing groups.", + "example_sentence_english": "The issue has polarized public opinion.", + "pos": "verb", + "word_frequency": 13589 + }, + { + "word": "predetermine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To establish or decide in advance.", + "example_sentence_english": "The outcome of the game was predetermined.", + "pos": "verb", + "word_frequency": 13591 + }, + { + "word": "prelude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An action or event serving as an introduction to something more important.", + "example_sentence_english": "The small skirmish was a prelude to a full-scale war.", + "pos": "noun", + "word_frequency": 13592 + }, + { + "word": "prepaid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Paid for in advance.", + "example_sentence_english": "I bought a prepaid phone card.", + "pos": "adjective", + "word_frequency": 13593 + }, + { + "word": "priesthood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The office or position of a priest.", + "example_sentence_english": "He entered the priesthood after years of study.", + "pos": "noun", + "word_frequency": 13594 + }, + { + "word": "punishable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Liable to be punished.", + "example_sentence_english": "Fraud is a serious offense, punishable by law.", + "pos": "adjective", + "word_frequency": 13595 + }, + { + "word": "reaper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or machine that harvests crops; a personification of death.", + "example_sentence_english": "The farmer used a mechanical reaper to cut the wheat.", + "pos": "noun", + "word_frequency": 13599 + }, + { + "word": "rockstar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a famous and successful rock musician", + "example_sentence_english": "He always dreamed of becoming a rockstar.", + "pos": "noun", + "word_frequency": 13601 + }, + { + "word": "satanic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of Satan", + "example_sentence_english": "The old house had a satanic symbol painted on the wall.", + "pos": "adjective", + "word_frequency": 13605 + }, + { + "word": "scented", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a pleasant smell", + "example_sentence_english": "She lit a scented candle to relax.", + "pos": "adjective", + "word_frequency": 13606 + }, + { + "word": "sclerosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a chronic disease involving hardening of body tissue", + "example_sentence_english": "Multiple sclerosis affects the brain and spinal cord.", + "pos": "noun", + "word_frequency": 13607 + }, + { + "word": "selfless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerned more with the needs and wishes of others than with one's own", + "example_sentence_english": "Her selfless dedication to the charity was admirable.", + "pos": "adjective", + "word_frequency": 13608 + }, + { + "word": "serenity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being calm, peaceful, and untroubled", + "example_sentence_english": "The garden offered a place of peace and serenity.", + "pos": "noun", + "word_frequency": 13609 + }, + { + "word": "sighting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an instance of seeing something, especially something unusual or rare", + "example_sentence_english": "There was a rare bird sighting near the lake this morning.", + "pos": "noun", + "word_frequency": 13610 + }, + { + "word": "sonar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system for detecting objects underwater by emitting sound pulses", + "example_sentence_english": "Submarines use sonar to navigate and detect other vessels.", + "pos": "noun", + "word_frequency": 13612 + }, + { + "word": "spat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small argument or disagreement", + "example_sentence_english": "They had a minor spat over who should do the dishes.", + "pos": "noun", + "word_frequency": 13613 + }, + { + "word": "stabilization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of making something stable or steady", + "example_sentence_english": "Economic stabilization is crucial for growth.", + "pos": "noun", + "word_frequency": 13614 + }, + { + "word": "starch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a carbohydrate found in plants, used as food or for stiffening clothes", + "example_sentence_english": "Potatoes are a good source of starch.", + "pos": "noun", + "word_frequency": 13615 + }, + { + "word": "stony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of or covered with stones; unfeeling or cold", + "example_sentence_english": "He gave me a stony glare when I interrupted him.", + "pos": "adjective", + "word_frequency": 13616 + }, + { + "word": "subtly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a subtle manner; not obviously", + "example_sentence_english": "She subtly hinted that she wanted a raise.", + "pos": "adverb", + "word_frequency": 13617 + }, + { + "word": "surfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who surfs, especially on a surfboard", + "example_sentence_english": "The surfer rode the big wave all the way to the shore.", + "pos": "noun", + "word_frequency": 13618 + }, + { + "word": "taper", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diminish or reduce in thickness toward one end", + "example_sentence_english": "The road began to taper off into a narrow path.", + "pos": "verb", + "word_frequency": 13620 + }, + { + "word": "teaspoon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small spoon used for stirring tea or coffee", + "example_sentence_english": "Add one teaspoon of sugar to your coffee.", + "pos": "noun", + "word_frequency": 13621 + }, + { + "word": "typo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small mistake in typing or printing", + "example_sentence_english": "I found a typo on the first page of the book.", + "pos": "noun", + "word_frequency": 13626 + }, + { + "word": "unequal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not equal in quantity, size, or value", + "example_sentence_english": "The two sides of the equation were unequal.", + "pos": "adjective", + "word_frequency": 13627 + }, + { + "word": "unresolved", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not solved or ended", + "example_sentence_english": "The conflict remained unresolved for many years.", + "pos": "adjective", + "word_frequency": 13628 + }, + { + "word": "unspecified", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not stated or determined precisely", + "example_sentence_english": "The package arrived at an unspecified time.", + "pos": "adjective", + "word_frequency": 13629 + }, + { + "word": "vacate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave a place that one previously occupied", + "example_sentence_english": "Guests must vacate their rooms by 11 AM.", + "pos": "verb", + "word_frequency": 13630 + }, + { + "word": "veg", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetable (informal)", + "example_sentence_english": "Make sure you eat your greens and other veg.", + "pos": "noun", + "word_frequency": 13631 + }, + { + "word": "venetian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Venice or its people", + "example_sentence_english": "She admired the beautiful Venetian glass.", + "pos": "adjective", + "word_frequency": 13632 + }, + { + "word": "waffle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flat, crisp cake made from batter cooked in a waffle iron", + "example_sentence_english": "I had a delicious waffle with syrup for breakfast.", + "pos": "noun", + "word_frequency": 13634 + }, + { + "word": "warship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ship equipped for naval warfare", + "example_sentence_english": "The warship sailed into the harbor for repairs.", + "pos": "noun", + "word_frequency": 13636 + }, + { + "word": "winery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place where wine is made", + "example_sentence_english": "We visited a beautiful winery in Napa Valley.", + "pos": "noun", + "word_frequency": 13639 + }, + { + "word": "writ", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a form of written command in the name of a court or other legal authority", + "example_sentence_english": "The court issued a writ of habeas corpus.", + "pos": "noun", + "word_frequency": 13641 + }, + { + "word": "zipper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device consisting of two flexible strips of metal or plastic with interlocking projections, used for fastening or closing openings", + "example_sentence_english": "My jacket zipper is broken.", + "pos": "noun", + "word_frequency": 13645 + }, + { + "word": "adversary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one's opponent in a contest, conflict, or dispute", + "example_sentence_english": "He faced his old adversary in the final round.", + "pos": "noun", + "word_frequency": 13647 + }, + { + "word": "afflict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause pain or suffering to; affect or trouble", + "example_sentence_english": "The disease afflicts millions of people worldwide.", + "pos": "verb", + "word_frequency": 13648 + }, + { + "word": "airfield", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of land where aircraft can take off and land", + "example_sentence_english": "The small plane landed safely on the airfield.", + "pos": "noun", + "word_frequency": 13649 + }, + { + "word": "alienate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause (someone) to feel isolated or estranged", + "example_sentence_english": "His rude behavior alienated his friends.", + "pos": "verb", + "word_frequency": 13651 + }, + { + "word": "ascertain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "find something out for certain; make sure of", + "example_sentence_english": "We need to ascertain the facts before making a decision.", + "pos": "verb", + "word_frequency": 13652 + }, + { + "word": "believable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be believed; credible", + "example_sentence_english": "His excuse was not very believable.", + "pos": "adjective", + "word_frequency": 13654 + }, + { + "word": "bitterly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an angry, hurt, or resentful way", + "example_sentence_english": "She cried bitterly after hearing the news.", + "pos": "adverb", + "word_frequency": 13655 + }, + { + "word": "bloodshed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the killing or wounding of people, typically during conflict", + "example_sentence_english": "The conflict resulted in much bloodshed.", + "pos": "noun", + "word_frequency": 13656 + }, + { + "word": "burrow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hole or tunnel dug by a small animal, especially a rabbit, as a dwelling", + "example_sentence_english": "The rabbit disappeared into its burrow.", + "pos": "noun", + "word_frequency": 13658 + }, + { + "word": "cairn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mound of rough stones built as a memorial or landmark", + "example_sentence_english": "They built a cairn to mark the summit of the mountain.", + "pos": "noun", + "word_frequency": 13659 + }, + { + "word": "cello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stringed musical instrument of the violin family, larger than a viola and tuned an octave below it", + "example_sentence_english": "She plays the cello beautifully.", + "pos": "noun", + "word_frequency": 13662 + }, + { + "word": "celsius", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a scale of temperature on which water freezes at 0° and boils at 100° under standard conditions", + "example_sentence_english": "The temperature today is 25 degrees Celsius.", + "pos": "noun", + "word_frequency": 13663 + }, + { + "word": "chai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of tea made with milk and spices", + "example_sentence_english": "I'd like a hot chai latte, please.", + "pos": "noun", + "word_frequency": 13665 + }, + { + "word": "chariot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a two-wheeled vehicle drawn by horses, used in ancient warfare and racing", + "example_sentence_english": "The ancient warriors rode into battle in their chariots.", + "pos": "noun", + "word_frequency": 13666 + }, + { + "word": "cheddar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a firm, sharp-tasting cheese, originally made in Cheddar, Somerset, England", + "example_sentence_english": "Would you like some cheddar cheese with your crackers.", + "pos": "noun", + "word_frequency": 13667 + }, + { + "word": "chilli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, hot-tasting pod of a variety of capsicum, used in cooking", + "example_sentence_english": "This dish is very spicy because it has a lot of chilli.", + "pos": "noun", + "word_frequency": 13668 + }, + { + "word": "cholera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an infectious and often fatal bacterial disease of the small intestine, typically contracted from infected water supplies and causing severe vomiting and diarrhea", + "example_sentence_english": "Cholera is a serious disease that can spread through contaminated water.", + "pos": "noun", + "word_frequency": 13669 + }, + { + "word": "clinch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confirm or settle (a bargain or an argument)", + "example_sentence_english": "He managed to clinch the deal at the last minute.", + "pos": "verb", + "word_frequency": 13671 + }, + { + "word": "collide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strike with a forceful impact", + "example_sentence_english": "Two cars collided at the intersection.", + "pos": "verb", + "word_frequency": 13672 + }, + { + "word": "commemoration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or practice of commemorating; a ceremony or celebration", + "example_sentence_english": "The monument was built in commemoration of the fallen soldiers.", + "pos": "noun", + "word_frequency": 13673 + }, + { + "word": "complexion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the natural color, texture, and appearance of the skin, especially of the face", + "example_sentence_english": "She has a fair complexion.", + "pos": "noun", + "word_frequency": 13674 + }, + { + "word": "compulsive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resulting from or relating to an irresistible urge, especially one that is against one's conscious wishes", + "example_sentence_english": "He has a compulsive need to check his phone every few minutes.", + "pos": "adjective", + "word_frequency": 13675 + }, + { + "word": "congenital", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a disease or physical abnormality) present from birth", + "example_sentence_english": "The baby was born with a congenital heart defect.", + "pos": "adjective", + "word_frequency": 13676 + }, + { + "word": "construe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interpret (a word or action) in a particular way", + "example_sentence_english": "His silence was construed as an admission of guilt.", + "pos": "verb", + "word_frequency": 13677 + }, + { + "word": "consular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a consul or consulate", + "example_sentence_english": "You can get help from the consular office if you lose your passport abroad.", + "pos": "adjective", + "word_frequency": 13678 + }, + { + "word": "corrective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intended to correct or improve something", + "example_sentence_english": "The company took corrective action to fix the problem.", + "pos": "adjective", + "word_frequency": 13679 + }, + { + "word": "crumble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break into small pieces", + "example_sentence_english": "The old wall began to crumble.", + "pos": "verb", + "word_frequency": 13681 + }, + { + "word": "dangle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hang loosely", + "example_sentence_english": "The keys dangled from his hand.", + "pos": "verb", + "word_frequency": 13682 + }, + { + "word": "daredevil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a reckless person", + "example_sentence_english": "He was known as a daredevil for his stunts.", + "pos": "noun", + "word_frequency": 13683 + }, + { + "word": "decentralize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to move power away from a central point", + "example_sentence_english": "The company decided to decentralize its operations.", + "pos": "verb", + "word_frequency": 13684 + }, + { + "word": "detox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detoxification", + "example_sentence_english": "She went on a juice detox for a week.", + "pos": "noun", + "word_frequency": 13686 + }, + { + "word": "discrepancy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a difference or inconsistency", + "example_sentence_english": "There was a discrepancy between the two reports.", + "pos": "noun", + "word_frequency": 13688 + }, + { + "word": "dishwasher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a machine for washing dishes", + "example_sentence_english": "Please load the dishwasher after dinner.", + "pos": "noun", + "word_frequency": 13689 + }, + { + "word": "doodle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rough drawing or scribble", + "example_sentence_english": "He drew a doodle on the napkin during the meeting.", + "pos": "noun", + "word_frequency": 13692 + }, + { + "word": "dossier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection of documents about a person or subject", + "example_sentence_english": "The detective compiled a dossier on the suspect.", + "pos": "noun", + "word_frequency": 13693 + }, + { + "word": "eradicate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to destroy completely", + "example_sentence_english": "The goal is to eradicate poverty.", + "pos": "verb", + "word_frequency": 13699 + }, + { + "word": "extortion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of obtaining something by force or threats", + "example_sentence_english": "He was charged with extortion.", + "pos": "noun", + "word_frequency": 13700 + }, + { + "word": "feral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wild, untamed", + "example_sentence_english": "They found a feral cat living in the woods.", + "pos": "adjective", + "word_frequency": 13703 + }, + { + "word": "generously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a generous way", + "example_sentence_english": "He generously donated to the charity.", + "pos": "adverb", + "word_frequency": 13706 + }, + { + "word": "grange", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a country house with farm buildings", + "example_sentence_english": "They lived in an old grange on the outskirts of the village.", + "pos": "noun", + "word_frequency": 13708 + }, + { + "word": "hangar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large building for housing aircraft", + "example_sentence_english": "The plane was stored in the hangar.", + "pos": "noun", + "word_frequency": 13710 + }, + { + "word": "hardworking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diligent and industrious", + "example_sentence_english": "She is a very hardworking student.", + "pos": "adjective", + "word_frequency": 13711 + }, + { + "word": "hasty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done quickly and without careful thought", + "example_sentence_english": "He made a hasty decision he later regretted.", + "pos": "adjective", + "word_frequency": 13712 + }, + { + "word": "hijack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to illegally seize or take control of", + "example_sentence_english": "The terrorists attempted to hijack the plane.", + "pos": "verb", + "word_frequency": 13716 + }, + { + "word": "housekeeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person employed to manage a household", + "example_sentence_english": "The hotel employs several housekeepers.", + "pos": "noun", + "word_frequency": 13717 + }, + { + "word": "husky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strong and sturdy; or a deep, rough voice", + "example_sentence_english": "He had a husky voice after shouting all day.", + "pos": "adjective", + "word_frequency": 13718 + }, + { + "word": "imitate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copy", + "example_sentence_english": "Children often imitate their parents' behavior.", + "pos": "verb", + "word_frequency": 13721 + }, + { + "word": "imperfection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flaw", + "example_sentence_english": "Every piece of handmade pottery has a slight imperfection.", + "pos": "noun", + "word_frequency": 13722 + }, + { + "word": "improbable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unlikely", + "example_sentence_english": "It's highly improbable that he will finish the marathon in under two hours.", + "pos": "adjective", + "word_frequency": 13723 + }, + { + "word": "incarcerate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprison", + "example_sentence_english": "The court decided to incarcerate the criminal for ten years.", + "pos": "verb", + "word_frequency": 13724 + }, + { + "word": "ineligible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not qualified", + "example_sentence_english": "Due to his age, he was ineligible to participate in the competition.", + "pos": "adjective", + "word_frequency": 13725 + }, + { + "word": "infusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "introduction of a new element", + "example_sentence_english": "The new manager brought a fresh infusion of ideas to the team.", + "pos": "noun", + "word_frequency": 13726 + }, + { + "word": "journalistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to journalism", + "example_sentence_english": "His writing style is very journalistic, focusing on facts and clarity.", + "pos": "adjective", + "word_frequency": 13729 + }, + { + "word": "kart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small vehicle", + "example_sentence_english": "They rented a go-kart at the amusement park.", + "pos": "noun", + "word_frequency": 13732 + }, + { + "word": "laborer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worker", + "example_sentence_english": "Many laborers were hired to build the new bridge.", + "pos": "noun", + "word_frequency": 13735 + }, + { + "word": "lipid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fat or oil", + "example_sentence_english": "Lipids are essential for cell membrane structure.", + "pos": "noun", + "word_frequency": 13738 + }, + { + "word": "lordship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "title of a lord", + "example_sentence_english": "His Lordship arrived in a grand carriage.", + "pos": "noun", + "word_frequency": 13739 + }, + { + "word": "mahogany", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "type of wood", + "example_sentence_english": "The antique desk was made of solid mahogany.", + "pos": "noun", + "word_frequency": 13741 + }, + { + "word": "malfunction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure to function", + "example_sentence_english": "The computer had a serious software malfunction.", + "pos": "noun", + "word_frequency": 13742 + }, + { + "word": "mana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supernatural power", + "example_sentence_english": "In some cultures, certain objects are believed to possess mana.", + "pos": "noun", + "word_frequency": 13743 + }, + { + "word": "markedly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "noticeably", + "example_sentence_english": "Her performance has improved markedly since last year.", + "pos": "adverb", + "word_frequency": 13746 + }, + { + "word": "mediator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one who helps resolve disputes", + "example_sentence_english": "A neutral mediator was called in to help settle the labor dispute.", + "pos": "noun", + "word_frequency": 13751 + }, + { + "word": "minion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subordinate follower", + "example_sentence_english": "The villain ordered his minions to capture the hero.", + "pos": "noun", + "word_frequency": 13755 + }, + { + "word": "mirage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optical illusion", + "example_sentence_english": "In the desert, a mirage can make distant water appear close.", + "pos": "noun", + "word_frequency": 13756 + }, + { + "word": "mockery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ridicule", + "example_sentence_english": "His attempt at singing was met with widespread mockery.", + "pos": "noun", + "word_frequency": 13757 + }, + { + "word": "modulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variation in strength, tone, or pitch", + "example_sentence_english": "The singer's voice showed excellent modulation throughout the song.", + "pos": "noun", + "word_frequency": 13758 + }, + { + "word": "motorist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver of a car", + "example_sentence_english": "The police warned motorists about the icy road conditions.", + "pos": "noun", + "word_frequency": 13759 + }, + { + "word": "narrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tell a story or describe events", + "example_sentence_english": "She was asked to narrate the documentary.", + "pos": "verb", + "word_frequency": 13762 + }, + { + "word": "navigator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who plans and directs the route of a ship, aircraft, or other form of transport", + "example_sentence_english": "The ship's navigator used the stars to guide them.", + "pos": "noun", + "word_frequency": 13763 + }, + { + "word": "nightingale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small brown European bird known for its beautiful song, especially at night", + "example_sentence_english": "The sweet song of the nightingale filled the evening air.", + "pos": "noun", + "word_frequency": 13765 + }, + { + "word": "nuke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a nuclear weapon", + "example_sentence_english": "The treaty aimed to reduce the number of nukes.", + "pos": "noun", + "word_frequency": 13766 + }, + { + "word": "occult", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supernatural beliefs, practices, or phenomena", + "example_sentence_english": "She had a strong interest in the occult.", + "pos": "noun", + "word_frequency": 13768 + }, + { + "word": "olympian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an athlete who competes in the Olympic Games", + "example_sentence_english": "Every Olympian dreams of winning a gold medal.", + "pos": "noun", + "word_frequency": 13770 + }, + { + "word": "ovation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sustained and enthusiastic show of appreciation from an audience, especially by clapping", + "example_sentence_english": "The singer received a standing ovation.", + "pos": "noun", + "word_frequency": 13772 + }, + { + "word": "payback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenge or retribution", + "example_sentence_english": "He was looking for payback after being cheated.", + "pos": "noun", + "word_frequency": 13774 + }, + { + "word": "pediatrics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of medicine dealing with children and their diseases", + "example_sentence_english": "She decided to specialize in pediatrics.", + "pos": "noun", + "word_frequency": 13775 + }, + { + "word": "perch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a resting place for a bird; a type of fish", + "example_sentence_english": "The bird landed on its perch.", + "pos": "noun", + "word_frequency": 13776 + }, + { + "word": "perpendicular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at an angle of 90° to a given line, plane, or surface", + "example_sentence_english": "The two lines are perpendicular to each other.", + "pos": "adjective", + "word_frequency": 13777 + }, + { + "word": "physique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the form, size, and development of a person's body", + "example_sentence_english": "He had an athletic physique.", + "pos": "noun", + "word_frequency": 13778 + }, + { + "word": "playbook", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a book containing a team's strategies and plays; a set of rules or strategies to be followed", + "example_sentence_english": "The coach reviewed the playbook with the team.", + "pos": "noun", + "word_frequency": 13779 + }, + { + "word": "plywood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of strong thin wooden board consisting of two or more layers glued and pressed together with the direction of the grain alternating", + "example_sentence_english": "They used plywood to build the shelves.", + "pos": "noun", + "word_frequency": 13780 + }, + { + "word": "pollutant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that pollutes something, especially water or the atmosphere", + "example_sentence_english": "Carbon monoxide is a dangerous pollutant.", + "pos": "noun", + "word_frequency": 13781 + }, + { + "word": "proficient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competent or skilled in doing or using something", + "example_sentence_english": "She is proficient in several languages.", + "pos": "adjective", + "word_frequency": 13784 + }, + { + "word": "punctuation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the marks, such as commas and periods, used in writing to separate sentences and clauses and make meaning clearer", + "example_sentence_english": "Correct punctuation is essential for clear writing.", + "pos": "noun", + "word_frequency": 13786 + }, + { + "word": "purification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of making something clean or pure", + "example_sentence_english": "Water purification is a vital process.", + "pos": "noun", + "word_frequency": 13787 + }, + { + "word": "purport", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to appear or claim to be or do something, especially falsely", + "example_sentence_english": "The document purports to be a will.", + "pos": "verb", + "word_frequency": 13788 + }, + { + "word": "qi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the circulating life force whose existence and properties are the basis of much Chinese philosophy and medicine", + "example_sentence_english": "In traditional Chinese medicine, good health depends on the balance of qi.", + "pos": "noun", + "word_frequency": 13789 + }, + { + "word": "ramification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a complex or unwelcome consequence of an action or event", + "example_sentence_english": "The new policy had many unforeseen ramifications.", + "pos": "noun", + "word_frequency": 13790 + }, + { + "word": "readable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy or interesting to read", + "example_sentence_english": "The book was very readable and engaging.", + "pos": "adjective", + "word_frequency": 13791 + }, + { + "word": "recourse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a source of help in a difficult situation", + "example_sentence_english": "He had no recourse but to accept the offer.", + "pos": "noun", + "word_frequency": 13792 + }, + { + "word": "regimen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prescribed course of medical treatment, diet, or exercise for the promotion or restoration of health", + "example_sentence_english": "She followed a strict exercise regimen.", + "pos": "noun", + "word_frequency": 13793 + }, + { + "word": "removable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be taken away or off", + "example_sentence_english": "The cover is easily removable for cleaning.", + "pos": "adjective", + "word_frequency": 13794 + }, + { + "word": "responder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that responds, especially one who is among the first to arrive at the scene of an emergency", + "example_sentence_english": "First responders arrived quickly at the accident site.", + "pos": "noun", + "word_frequency": 13795 + }, + { + "word": "retrospect", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a survey or review of a past course of events or period of time", + "example_sentence_english": "In retrospect, it was a bad decision.", + "pos": "noun", + "word_frequency": 13796 + }, + { + "word": "roundup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a summary or collection of facts or items", + "example_sentence_english": "Here's a quick roundup of the day's news.", + "pos": "noun", + "word_frequency": 13797 + }, + { + "word": "sequential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "following a logical order or sequence", + "example_sentence_english": "The steps must be followed in a sequential order.", + "pos": "adjective", + "word_frequency": 13800 + }, + { + "word": "signify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mean or indicate", + "example_sentence_english": "What does this symbol signify?", + "pos": "verb", + "word_frequency": 13801 + }, + { + "word": "smelly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "having a strong or unpleasant smell", + "example_sentence_english": "The garbage can was very smelly.", + "pos": "adjective", + "word_frequency": 13802 + }, + { + "word": "specialization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of becoming an expert in a particular area", + "example_sentence_english": "Her specialization is in ancient history.", + "pos": "noun", + "word_frequency": 13804 + }, + { + "word": "spiritually", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to the human spirit or soul", + "example_sentence_english": "He felt spiritually refreshed after the retreat.", + "pos": "adverb", + "word_frequency": 13805 + }, + { + "word": "sporadic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring at irregular intervals or only in a few places; scattered or isolated", + "example_sentence_english": "The power outages were sporadic throughout the day.", + "pos": "adjective", + "word_frequency": 13806 + }, + { + "word": "stationery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing materials, such as paper and envelopes", + "example_sentence_english": "I bought some new stationery for writing letters.", + "pos": "noun", + "word_frequency": 13807 + }, + { + "word": "sunscreen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cream or lotion rubbed on the skin to protect it from the sun", + "example_sentence_english": "Don't forget to apply sunscreen before going to the beach.", + "pos": "noun", + "word_frequency": 13809 + }, + { + "word": "tempest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a violent windy storm", + "example_sentence_english": "The ship was caught in a fierce tempest.", + "pos": "noun", + "word_frequency": 13812 + }, + { + "word": "tofu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft, white food made from soybeans", + "example_sentence_english": "I like to add tofu to my stir-fry.", + "pos": "noun", + "word_frequency": 13817 + }, + { + "word": "truss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a framework supporting a roof, bridge, or other structure", + "example_sentence_english": "The bridge was supported by a strong steel truss.", + "pos": "noun", + "word_frequency": 13820 + }, + { + "word": "tubing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity of floating down a river on a large inner tube; material in the form of a tube", + "example_sentence_english": "We went tubing down the river last summer.", + "pos": "noun", + "word_frequency": 13821 + }, + { + "word": "undue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unwarranted or inappropriate because excessive or disproportionate", + "example_sentence_english": "Don't put undue pressure on yourself.", + "pos": "adjective", + "word_frequency": 13823 + }, + { + "word": "unionist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who supports or is a member of a trade union", + "example_sentence_english": "The unionist argued for better worker rights.", + "pos": "noun", + "word_frequency": 13824 + }, + { + "word": "unprotected", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not protected from harm or danger", + "example_sentence_english": "The building was left unprotected after the storm.", + "pos": "adjective", + "word_frequency": 13825 + }, + { + "word": "unsettle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone feel anxious or uneasy", + "example_sentence_english": "The news seemed to unsettle her.", + "pos": "verb", + "word_frequency": 13826 + }, + { + "word": "upscale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relatively expensive and designed for people who are wealthy or of a high social class", + "example_sentence_english": "They live in an upscale neighborhood.", + "pos": "adjective", + "word_frequency": 13827 + }, + { + "word": "wacky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funny or amusing in a slightly odd or peculiar way", + "example_sentence_english": "He has a wacky sense of humor.", + "pos": "adjective", + "word_frequency": 13832 + }, + { + "word": "wearable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitable or practical for wearing", + "example_sentence_english": "This dress is very comfortable and wearable.", + "pos": "adjective", + "word_frequency": 13833 + }, + { + "word": "wreckage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the remains of something that has been badly damaged or destroyed", + "example_sentence_english": "The wreckage of the plane was scattered across the field.", + "pos": "noun", + "word_frequency": 13836 + }, + { + "word": "zeppelin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large German airship of the early 20th century", + "example_sentence_english": "The Hindenburg was a famous zeppelin.", + "pos": "noun", + "word_frequency": 13839 + }, + { + "word": "adamant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unyielding", + "example_sentence_english": "She was adamant that she would not change her mind.", + "pos": "adjective", + "word_frequency": 13842 + }, + { + "word": "airspace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the air above a country", + "example_sentence_english": "The country closed its airspace to all foreign flights.", + "pos": "noun", + "word_frequency": 13843 + }, + { + "word": "allot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give a share", + "example_sentence_english": "They decided to allot a specific budget for the project.", + "pos": "verb", + "word_frequency": 13845 + }, + { + "word": "amplitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maximum extent of a vibration", + "example_sentence_english": "The amplitude of the sound wave determined its loudness.", + "pos": "noun", + "word_frequency": 13846 + }, + { + "word": "analogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something similar", + "example_sentence_english": "The new digital system has no analogue in the old technology.", + "pos": "noun", + "word_frequency": 13847 + }, + { + "word": "annotate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to add notes", + "example_sentence_english": "Students were asked to annotate the text with their comments.", + "pos": "verb", + "word_frequency": 13848 + }, + { + "word": "archival", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to archives", + "example_sentence_english": "The researchers spent hours sifting through archival documents.", + "pos": "adjective", + "word_frequency": 13849 + }, + { + "word": "ardent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "passionate", + "example_sentence_english": "He was an ardent supporter of environmental protection.", + "pos": "adjective", + "word_frequency": 13850 + }, + { + "word": "assay", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "analysis of a substance", + "example_sentence_english": "The laboratory performed an assay to determine the purity of the gold.", + "pos": "noun", + "word_frequency": 13851 + }, + { + "word": "assort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arrange into groups", + "example_sentence_english": "The shopkeeper began to assort the different types of candies.", + "pos": "verb", + "word_frequency": 13852 + }, + { + "word": "badminton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a racket sport", + "example_sentence_english": "They played a game of badminton in the park.", + "pos": "noun", + "word_frequency": 13854 + }, + { + "word": "bedrock", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamental principles", + "example_sentence_english": "Honesty is the bedrock of any strong relationship.", + "pos": "noun", + "word_frequency": 13855 + }, + { + "word": "boardwalk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wooden walkway", + "example_sentence_english": "We walked along the boardwalk by the beach.", + "pos": "noun", + "word_frequency": 13859 + }, + { + "word": "brittle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hard but easily broken", + "example_sentence_english": "The old plastic had become brittle with age.", + "pos": "adjective", + "word_frequency": 13860 + }, + { + "word": "climber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who climbs", + "example_sentence_english": "The mountain climber reached the summit.", + "pos": "noun", + "word_frequency": 13866 + }, + { + "word": "clog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to block", + "example_sentence_english": "Hair can easily clog the drain.", + "pos": "verb", + "word_frequency": 13867 + }, + { + "word": "cohesion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of sticking together", + "example_sentence_english": "The team showed great cohesion during the difficult project.", + "pos": "noun", + "word_frequency": 13868 + }, + { + "word": "conduit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a channel for fluid or wires", + "example_sentence_english": "The pipe served as a conduit for the electrical cables.", + "pos": "noun", + "word_frequency": 13870 + }, + { + "word": "conveyor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that conveys", + "example_sentence_english": "The conveyor belt moved the packages along the assembly line.", + "pos": "noun", + "word_frequency": 13871 + }, + { + "word": "culminate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reach a climax", + "example_sentence_english": "The long negotiations culminated in a peace treaty.", + "pos": "verb", + "word_frequency": 13873 + }, + { + "word": "decimal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fraction with a denominator of a power of 10", + "example_sentence_english": "The number 0.5 is a decimal.", + "pos": "noun", + "word_frequency": 13878 + }, + { + "word": "defunct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "no longer existing or functioning", + "example_sentence_english": "The company is now defunct after going bankrupt.", + "pos": "adjective", + "word_frequency": 13879 + }, + { + "word": "demonstrator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who takes part in a public protest or demonstration", + "example_sentence_english": "The police tried to disperse the crowd of demonstrators.", + "pos": "noun", + "word_frequency": 13880 + }, + { + "word": "diffuse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to spread or cause to spread over a wide area or among a large number of people", + "example_sentence_english": "The scent of flowers diffused through the room.", + "pos": "verb", + "word_frequency": 13883 + }, + { + "word": "dignify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make something seem important or impressive", + "example_sentence_english": "He refused to dignify the accusations with a response.", + "pos": "verb", + "word_frequency": 13884 + }, + { + "word": "disapproval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of disapproving; condemnation", + "example_sentence_english": "Her parents expressed their strong disapproval of her new boyfriend.", + "pos": "noun", + "word_frequency": 13885 + }, + { + "word": "disobedience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure or refusal to obey rules or someone in authority", + "example_sentence_english": "The child was punished for his disobedience.", + "pos": "noun", + "word_frequency": 13886 + }, + { + "word": "dreamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is impractical or idealistic", + "example_sentence_english": "He was always a dreamer, imagining a better world.", + "pos": "noun", + "word_frequency": 13887 + }, + { + "word": "dweller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or animal that lives in a particular place", + "example_sentence_english": "The cave dwellers lived a simple life.", + "pos": "noun", + "word_frequency": 13888 + }, + { + "word": "emancipation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fact or process of being set free from legal, social, or political restrictions; liberation", + "example_sentence_english": "The Emancipation Proclamation declared slaves free.", + "pos": "noun", + "word_frequency": 13891 + }, + { + "word": "entropy", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a measure of the disorder or randomness of a system", + "example_sentence_english": "The universe tends towards increasing entropy.", + "pos": "noun", + "word_frequency": 13892 + }, + { + "word": "epitome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that is a perfect example of a particular quality or type", + "example_sentence_english": "She was the epitome of elegance.", + "pos": "noun", + "word_frequency": 13893 + }, + { + "word": "ethernet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system for connecting computer systems to form a local area network", + "example_sentence_english": "You need an Ethernet cable to connect to the wired network.", + "pos": "noun", + "word_frequency": 13895 + }, + { + "word": "extradition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of handing over a person accused or convicted of a crime to the jurisdiction of the foreign state in which the crime was committed", + "example_sentence_english": "The country requested his extradition for fraud charges.", + "pos": "noun", + "word_frequency": 13896 + }, + { + "word": "eyesight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the faculty of seeing; vision", + "example_sentence_english": "Her eyesight is getting worse with age.", + "pos": "noun", + "word_frequency": 13897 + }, + { + "word": "finder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that finds something", + "example_sentence_english": "The finder of the lost wallet returned it to its owner.", + "pos": "noun", + "word_frequency": 13899 + }, + { + "word": "fishy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seeming suspicious or dishonest", + "example_sentence_english": "His story sounded a bit fishy to me.", + "pos": "adjective", + "word_frequency": 13900 + }, + { + "word": "flooring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the material of a floor", + "example_sentence_english": "They decided to replace the old flooring with new tiles.", + "pos": "noun", + "word_frequency": 13901 + }, + { + "word": "forearm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a person's arm from the elbow to the wrist", + "example_sentence_english": "He broke his forearm playing football.", + "pos": "noun", + "word_frequency": 13902 + }, + { + "word": "frail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person) weak and delicate", + "example_sentence_english": "The old woman was frail and needed help walking.", + "pos": "adjective", + "word_frequency": 13903 + }, + { + "word": "fray", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a situation of intense activity, typically a battle or argument", + "example_sentence_english": "He jumped into the fray to defend his friend.", + "pos": "noun", + "word_frequency": 13904 + }, + { + "word": "generational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of a particular generation or generations", + "example_sentence_english": "There are often generational differences in opinions.", + "pos": "adjective", + "word_frequency": 13906 + }, + { + "word": "goldfish", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, typically orange or gold, freshwater fish, often kept as a pet", + "example_sentence_english": "My sister has a goldfish in a bowl.", + "pos": "noun", + "word_frequency": 13907 + }, + { + "word": "grizzly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, powerful brown bear of North America", + "example_sentence_english": "They saw a grizzly bear in the national park.", + "pos": "noun", + "word_frequency": 13909 + }, + { + "word": "grotesque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comically or repulsively ugly or distorted", + "example_sentence_english": "The gargoyles on the old building were grotesque.", + "pos": "adjective", + "word_frequency": 13910 + }, + { + "word": "hallucination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an experience involving the apparent perception of something not present", + "example_sentence_english": "He suffered from vivid hallucinations during his illness.", + "pos": "noun", + "word_frequency": 13911 + }, + { + "word": "horrid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing horror; dreadful", + "example_sentence_english": "The weather was horrid all weekend.", + "pos": "adjective", + "word_frequency": 13912 + }, + { + "word": "impractical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not sensible or realistic", + "example_sentence_english": "His ideas were often impractical but interesting.", + "pos": "adjective", + "word_frequency": 13916 + }, + { + "word": "interchangeable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to be exchanged with each other without loss of effectiveness or function", + "example_sentence_english": "The parts are interchangeable, so you can use either one.", + "pos": "adjective", + "word_frequency": 13918 + }, + { + "word": "irreversible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to reverse", + "example_sentence_english": "The damage to the environment is irreversible.", + "pos": "adjective", + "word_frequency": 13919 + }, + { + "word": "lawless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without laws or not obeying laws", + "example_sentence_english": "The town became a lawless place after the sheriff left.", + "pos": "adjective", + "word_frequency": 13922 + }, + { + "word": "legalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something legal", + "example_sentence_english": "Many countries are considering whether to legalize certain drugs.", + "pos": "verb", + "word_frequency": 13923 + }, + { + "word": "legging", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of tight-fitting trousers", + "example_sentence_english": "She wore black leggings with a long sweater.", + "pos": "noun", + "word_frequency": 13924 + }, + { + "word": "mayoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a mayor or the office of mayor", + "example_sentence_english": "The mayoral election will be held next month.", + "pos": "adjective", + "word_frequency": 13928 + }, + { + "word": "medley", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a varied mixture of people or things; a piece of music combining several tunes", + "example_sentence_english": "The band played a medley of their greatest hits.", + "pos": "noun", + "word_frequency": 13929 + }, + { + "word": "mercenary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a professional soldier hired to serve in a foreign army", + "example_sentence_english": "The king hired mercenaries to protect his borders.", + "pos": "noun", + "word_frequency": 13930 + }, + { + "word": "minimalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who advocates or practices minimalism", + "example_sentence_english": "She adopted a minimalist lifestyle, owning very few possessions.", + "pos": "noun", + "word_frequency": 13934 + }, + { + "word": "orchestrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arrange or control the elements of a complex situation to produce a desired effect", + "example_sentence_english": "The director managed to orchestrate a flawless performance.", + "pos": "verb", + "word_frequency": 13937 + }, + { + "word": "pap", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soft or semi-liquid food, especially for babies or invalids; worthless or trivial reading matter or entertainment", + "example_sentence_english": "The doctor recommended a diet of pap for the patient.", + "pos": "noun", + "word_frequency": 13939 + }, + { + "word": "parisian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of Paris", + "example_sentence_english": "The Parisian greeted us with a friendly smile.", + "pos": "noun", + "word_frequency": 13940 + }, + { + "word": "plugin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a software component that adds a specific feature to an existing computer program", + "example_sentence_english": "You need to install a new plugin to view this content.", + "pos": "noun", + "word_frequency": 13941 + }, + { + "word": "postgraduate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is studying for a higher degree after their first degree", + "example_sentence_english": "She decided to pursue a postgraduate degree in literature.", + "pos": "noun", + "word_frequency": 13942 + }, + { + "word": "predicament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a difficult, unpleasant, or embarrassing situation", + "example_sentence_english": "He found himself in a difficult predicament after losing his wallet.", + "pos": "noun", + "word_frequency": 13943 + }, + { + "word": "predominant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "present as the strongest or main element", + "example_sentence_english": "The predominant color in the painting was blue.", + "pos": "adjective", + "word_frequency": 13944 + }, + { + "word": "proverb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, well-known saying stating a general truth or piece of advice", + "example_sentence_english": "An old proverb says, 'Actions speak louder than words.'", + "pos": "noun", + "word_frequency": 13946 + }, + { + "word": "puke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vomit", + "example_sentence_english": "He felt a sudden urge to puke.", + "pos": "noun", + "word_frequency": 13947 + }, + { + "word": "quadrant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "each of four parts of a circle, sphere, or other shape divided by two lines or planes at right angles", + "example_sentence_english": "The city was divided into four quadrants for administrative purposes.", + "pos": "noun", + "word_frequency": 13949 + }, + { + "word": "recital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a performance of music or poetry, typically given by one performer or a small group", + "example_sentence_english": "She gave a piano recital at the community center.", + "pos": "noun", + "word_frequency": 13951 + }, + { + "word": "recite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repeat aloud from memory", + "example_sentence_english": "The student was asked to recite a poem.", + "pos": "verb", + "word_frequency": 13952 + }, + { + "word": "reckoning", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of calculating or estimating something; a time when past mistakes or misdeeds must be paid for", + "example_sentence_english": "The day of reckoning will come for those who broke the law.", + "pos": "noun", + "word_frequency": 13953 + }, + { + "word": "recollection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or faculty of remembering something; a memory", + "example_sentence_english": "He had no recollection of the accident.", + "pos": "noun", + "word_frequency": 13954 + }, + { + "word": "reconstruct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build or form something again after it has been damaged or destroyed", + "example_sentence_english": "The police tried to reconstruct the events of the crime.", + "pos": "verb", + "word_frequency": 13955 + }, + { + "word": "reiterate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to say something again or a number of times, typically for emphasis or clarity", + "example_sentence_english": "Let me reiterate my main point: safety is our top priority.", + "pos": "verb", + "word_frequency": 13956 + }, + { + "word": "resale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of selling something again", + "example_sentence_english": "The car's high resale value makes it a good investment.", + "pos": "noun", + "word_frequency": 13958 + }, + { + "word": "retake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take again", + "example_sentence_english": "She had to retake the exam because she failed the first time.", + "pos": "verb", + "word_frequency": 13959 + }, + { + "word": "rosy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pinkish; optimistic", + "example_sentence_english": "She had a rosy complexion after her walk.", + "pos": "adjective", + "word_frequency": 13964 + }, + { + "word": "rupture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a break or burst", + "example_sentence_english": "The pipe suffered a rupture, causing a leak.", + "pos": "noun", + "word_frequency": 13965 + }, + { + "word": "scandalous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing public outrage; disgraceful", + "example_sentence_english": "The politician's actions were deemed scandalous by the public.", + "pos": "adjective", + "word_frequency": 13966 + }, + { + "word": "seasoning", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salt, pepper, herbs, or spices added to food", + "example_sentence_english": "Add some seasoning to the soup for more flavor.", + "pos": "noun", + "word_frequency": 13967 + }, + { + "word": "shabby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in poor condition through long use or lack of care", + "example_sentence_english": "He wore a shabby old coat.", + "pos": "adjective", + "word_frequency": 13968 + }, + { + "word": "sinus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cavity within a bone or other tissue", + "example_sentence_english": "I have a terrible headache due to a sinus infection.", + "pos": "noun", + "word_frequency": 13969 + }, + { + "word": "skid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden sideways slide", + "example_sentence_english": "The car went into a skid on the icy road.", + "pos": "noun", + "word_frequency": 13971 + }, + { + "word": "solace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comfort or consolation in a time of distress", + "example_sentence_english": "She found solace in music after the breakup.", + "pos": "noun", + "word_frequency": 13972 + }, + { + "word": "spank", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit on the buttocks with an open hand", + "example_sentence_english": "The parent gently spanked the child's bottom.", + "pos": "verb", + "word_frequency": 13973 + }, + { + "word": "splinter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, thin, sharp piece of wood, glass, or similar material broken off from a larger piece", + "example_sentence_english": "I got a splinter in my finger from the old fence.", + "pos": "noun", + "word_frequency": 13974 + }, + { + "word": "squire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a country gentleman; a young nobleman attending a knight", + "example_sentence_english": "The squire accompanied the knight on his quest.", + "pos": "noun", + "word_frequency": 13975 + }, + { + "word": "standout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that is notably good or prominent", + "example_sentence_english": "Her performance was a real standout at the concert.", + "pos": "noun", + "word_frequency": 13976 + }, + { + "word": "stoner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who habitually uses drugs, especially marijuana", + "example_sentence_english": "The movie portrayed a group of lazy stoners.", + "pos": "noun", + "word_frequency": 13977 + }, + { + "word": "swimsuit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a garment worn for swimming", + "example_sentence_english": "Don't forget your swimsuit if you want to go to the beach.", + "pos": "noun", + "word_frequency": 13978 + }, + { + "word": "symmetrical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made up of exactly similar parts facing each other or around an axis", + "example_sentence_english": "The design of the building was perfectly symmetrical.", + "pos": "adjective", + "word_frequency": 13979 + }, + { + "word": "tam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of cap, often with a flat crown", + "example_sentence_english": "She wore a wool tam on her head.", + "pos": "noun", + "word_frequency": 13982 + }, + { + "word": "terminator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that terminates or ends something", + "example_sentence_english": "The terminator of the contract was clearly defined.", + "pos": "noun", + "word_frequency": 13983 + }, + { + "word": "tinker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attempt to repair or improve something in a casual or desultory way", + "example_sentence_english": "He likes to tinker with old radios in his garage.", + "pos": "verb", + "word_frequency": 13984 + }, + { + "word": "topography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the arrangement of the natural and artificial physical features of an area", + "example_sentence_english": "The topography of the region was very mountainous.", + "pos": "noun", + "word_frequency": 13985 + }, + { + "word": "unexplained", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not accounted for or understood", + "example_sentence_english": "There was an unexplained noise coming from the attic.", + "pos": "adjective", + "word_frequency": 13987 + }, + { + "word": "unintended", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not planned or meant", + "example_sentence_english": "The new policy had several unintended consequences.", + "pos": "adjective", + "word_frequency": 13988 + }, + { + "word": "unmanned", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without the physical presence of people to operate it", + "example_sentence_english": "The drone was an unmanned aerial vehicle.", + "pos": "adjective", + "word_frequency": 13989 + }, + { + "word": "unsolved", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not solved or explained", + "example_sentence_english": "The mystery remained unsolved for decades.", + "pos": "adjective", + "word_frequency": 13991 + }, + { + "word": "uptake", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of taking up or absorbing something", + "example_sentence_english": "The new students showed a quick uptake of the material.", + "pos": "noun", + "word_frequency": 13992 + }, + { + "word": "vantage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place or position affording a good view of something", + "example_sentence_english": "From our vantage point on the hill, we could see the entire city.", + "pos": "noun", + "word_frequency": 13993 + }, + { + "word": "watcher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who watches something", + "example_sentence_english": "The bird watcher patiently waited for the rare species to appear.", + "pos": "noun", + "word_frequency": 13997 + }, + { + "word": "whim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden desire or change of mind, especially one that is unusual or unexplained", + "example_sentence_english": "On a whim, she decided to book a flight to Paris.", + "pos": "noun", + "word_frequency": 13998 + }, + { + "word": "zeal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great energy or enthusiasm", + "example_sentence_english": "She approached her new project with great zeal.", + "pos": "noun", + "word_frequency": 14004 + }, + { + "word": "abort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to end or abandon something before its completion", + "example_sentence_english": "The mission was aborted due to bad weather conditions.", + "pos": "verb", + "word_frequency": 14005 + }, + { + "word": "abound", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exist in large numbers or amounts", + "example_sentence_english": "The rivers here abound with fish and other wildlife.", + "pos": "verb", + "word_frequency": 14006 + }, + { + "word": "audacity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the willingness to take bold risks", + "example_sentence_english": "He had the audacity to question the manager's decision.", + "pos": "noun", + "word_frequency": 14011 + }, + { + "word": "banjo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stringed musical instrument", + "example_sentence_english": "She learned to play the banjo at a young age.", + "pos": "noun", + "word_frequency": 14012 + }, + { + "word": "barbaric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savagely cruel or uncivilized", + "example_sentence_english": "The ancient tribe was known for its barbaric customs.", + "pos": "adjective", + "word_frequency": 14013 + }, + { + "word": "beech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large tree with smooth gray bark", + "example_sentence_english": "The forest was full of tall beech trees.", + "pos": "noun", + "word_frequency": 14014 + }, + { + "word": "biz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business (informal)", + "example_sentence_english": "Let's talk biz over coffee sometime next week.", + "pos": "noun", + "word_frequency": 14015 + }, + { + "word": "blower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device that produces a current of air", + "example_sentence_english": "He used a leaf blower to clear the driveway quickly.", + "pos": "noun", + "word_frequency": 14016 + }, + { + "word": "blurry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unclear or indistinct", + "example_sentence_english": "The photo was blurry because my hand shook.", + "pos": "adjective", + "word_frequency": 14017 + }, + { + "word": "chevron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a V-shaped mark or pattern", + "example_sentence_english": "The military uniform had a chevron on the sleeve.", + "pos": "noun", + "word_frequency": 14021 + }, + { + "word": "clinician", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a doctor or other health professional who treats patients", + "example_sentence_english": "The clinician carefully examined the patient's symptoms.", + "pos": "noun", + "word_frequency": 14023 + }, + { + "word": "coercion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of persuading someone to do something by using force or threats", + "example_sentence_english": "He claimed he signed the contract under coercion.", + "pos": "noun", + "word_frequency": 14024 + }, + { + "word": "comma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a punctuation mark", + "example_sentence_english": "Remember to use a comma before a coordinating conjunction.", + "pos": "noun", + "word_frequency": 14026 + }, + { + "word": "competency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to do something successfully or efficiently", + "example_sentence_english": "The job requires a high level of technical competency.", + "pos": "noun", + "word_frequency": 14027 + }, + { + "word": "concerted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jointly arranged or carried out; coordinated", + "example_sentence_english": "They made a concerted effort to finish the project on time.", + "pos": "adjective", + "word_frequency": 14028 + }, + { + "word": "craving", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a powerful desire for something", + "example_sentence_english": "She had a strong craving for chocolate after a long day.", + "pos": "noun", + "word_frequency": 14032 + }, + { + "word": "crotch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the part of the human body between the legs", + "example_sentence_english": "The pants were torn at the crotch after he fell.", + "pos": "noun", + "word_frequency": 14033 + }, + { + "word": "crucify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to put (someone) to death by nailing or binding them to a cross", + "example_sentence_english": "Historically, some criminals were crucified as a form of execution.", + "pos": "verb", + "word_frequency": 14034 + }, + { + "word": "departmental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a department", + "example_sentence_english": "We need to follow the departmental guidelines for this project.", + "pos": "adjective", + "word_frequency": 14037 + }, + { + "word": "depose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remove from office suddenly and forcefully", + "example_sentence_english": "The king was deposed by a military coup last year.", + "pos": "verb", + "word_frequency": 14038 + }, + { + "word": "dharma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the cosmic law and order, or righteous conduct", + "example_sentence_english": "In Buddhism, following the Eightfold Path is essential to understanding dharma.", + "pos": "noun", + "word_frequency": 14040 + }, + { + "word": "dialysis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical procedure to remove waste products from the blood", + "example_sentence_english": "Patients with kidney failure often require regular dialysis treatments.", + "pos": "noun", + "word_frequency": 14041 + }, + { + "word": "distal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "situated away from the center of the body or from the point of attachment", + "example_sentence_english": "The hand is distal to the elbow.", + "pos": "adjective", + "word_frequency": 14042 + }, + { + "word": "divisional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a division", + "example_sentence_english": "The company announced a new divisional manager for the marketing department.", + "pos": "adjective", + "word_frequency": 14043 + }, + { + "word": "dogma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a principle or set of principles laid down by an authority as incontrovertibly true", + "example_sentence_english": "He challenged the traditional dogma of the scientific community.", + "pos": "noun", + "word_frequency": 14044 + }, + { + "word": "emptiness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of containing nothing", + "example_sentence_english": "He felt a profound sense of emptiness after his friend moved away.", + "pos": "noun", + "word_frequency": 14048 + }, + { + "word": "ensign", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a flag or standard, especially a military or naval one; a junior officer rank", + "example_sentence_english": "The ensign was flying proudly from the mast of the ship.", + "pos": "noun", + "word_frequency": 14049 + }, + { + "word": "evoke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bring or recall to the conscious mind", + "example_sentence_english": "The old photographs evoked strong memories of her childhood.", + "pos": "verb", + "word_frequency": 14050 + }, + { + "word": "fern", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flowerless plant that has feathery or leafy fronds", + "example_sentence_english": "The forest floor was covered with lush green ferns.", + "pos": "noun", + "word_frequency": 14052 + }, + { + "word": "fingertip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the end of a finger", + "example_sentence_english": "She touched the delicate flower with her fingertip.", + "pos": "noun", + "word_frequency": 14053 + }, + { + "word": "firepower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the destructive capacity of weapons", + "example_sentence_english": "The army increased its firepower with new artillery.", + "pos": "noun", + "word_frequency": 14054 + }, + { + "word": "fixation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an obsessive preoccupation or attachment", + "example_sentence_english": "His fixation on perfection made him a very demanding boss.", + "pos": "noun", + "word_frequency": 14055 + }, + { + "word": "formative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving to form something, especially having a profound influence on a person's development", + "example_sentence_english": "Her early experiences were a formative influence on her character.", + "pos": "adjective", + "word_frequency": 14056 + }, + { + "word": "fret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "be constantly or visibly anxious", + "example_sentence_english": "Don't fret about the exam; you've studied hard.", + "pos": "verb", + "word_frequency": 14057 + }, + { + "word": "gastrointestinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the stomach and intestines", + "example_sentence_english": "He suffered from a gastrointestinal disorder.", + "pos": "adjective", + "word_frequency": 14058 + }, + { + "word": "gratification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasure, especially when gained from the satisfaction of a desire", + "example_sentence_english": "He found great gratification in helping others.", + "pos": "noun", + "word_frequency": 14060 + }, + { + "word": "gruesome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing repulsion or horror; grisly", + "example_sentence_english": "The detective described the gruesome details of the crime scene.", + "pos": "adjective", + "word_frequency": 14061 + }, + { + "word": "hydrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause to absorb water", + "example_sentence_english": "It's important to hydrate well, especially during exercise.", + "pos": "verb", + "word_frequency": 14072 + }, + { + "word": "imaginable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possible to imagine", + "example_sentence_english": "They faced every imaginable obstacle on their journey.", + "pos": "adjective", + "word_frequency": 14073 + }, + { + "word": "impetus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the force or energy with which a body moves; the force that makes something happen or happen more quickly", + "example_sentence_english": "The discovery of new evidence provided fresh impetus to the investigation.", + "pos": "noun", + "word_frequency": 14074 + }, + { + "word": "impulsive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acting or done without forethought", + "example_sentence_english": "His impulsive decision to buy the car without checking its history led to problems.", + "pos": "adjective", + "word_frequency": 14075 + }, + { + "word": "incense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an aromatic gum or other substance producing a sweet odor when burned", + "example_sentence_english": "The temple was filled with the sweet smell of burning incense.", + "pos": "noun", + "word_frequency": 14076 + }, + { + "word": "inhuman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking human qualities of compassion and kindness; cruel and barbaric", + "example_sentence_english": "The prisoners were subjected to inhuman conditions.", + "pos": "adjective", + "word_frequency": 14077 + }, + { + "word": "invoice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a list of goods sent or services provided, with a statement of the sum due for these", + "example_sentence_english": "Please send me an invoice for the services rendered.", + "pos": "noun", + "word_frequency": 14078 + }, + { + "word": "junkie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addict", + "example_sentence_english": "He became a coffee junkie after working night shifts.", + "pos": "noun", + "word_frequency": 14081 + }, + { + "word": "latent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hidden; potential", + "example_sentence_english": "The disease remained latent for several years before symptoms appeared.", + "pos": "adjective", + "word_frequency": 14089 + }, + { + "word": "limitless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without limits; infinite", + "example_sentence_english": "The universe seems to be limitless.", + "pos": "adjective", + "word_frequency": 14095 + }, + { + "word": "literate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to read and write", + "example_sentence_english": "It's important for everyone to be literate.", + "pos": "adjective", + "word_frequency": 14096 + }, + { + "word": "localization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adaptation to a specific place or culture", + "example_sentence_english": "Software localization is crucial for global markets.", + "pos": "noun", + "word_frequency": 14098 + }, + { + "word": "lowly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humble; low in status", + "example_sentence_english": "He started his career in a lowly position but rose to the top.", + "pos": "adjective", + "word_frequency": 14101 + }, + { + "word": "lucid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clear; easy to understand", + "example_sentence_english": "Her explanation was so lucid that everyone understood the complex topic.", + "pos": "adjective", + "word_frequency": 14102 + }, + { + "word": "lymphoma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "cancer of the lymphatic system", + "example_sentence_english": "He was diagnosed with lymphoma last year.", + "pos": "noun", + "word_frequency": 14103 + }, + { + "word": "martini", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of cocktail", + "example_sentence_english": "He ordered a dry martini with an olive.", + "pos": "noun", + "word_frequency": 14105 + }, + { + "word": "merciful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing mercy or compassion", + "example_sentence_english": "The judge was merciful and gave him a lighter sentence.", + "pos": "adjective", + "word_frequency": 14106 + }, + { + "word": "midwife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person, usually a woman, trained to assist women in childbirth", + "example_sentence_english": "The midwife helped her through the delivery.", + "pos": "noun", + "word_frequency": 14109 + }, + { + "word": "misinformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "false or inaccurate information", + "example_sentence_english": "The spread of misinformation online is a serious problem.", + "pos": "noun", + "word_frequency": 14111 + }, + { + "word": "mitochondrial", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to mitochondria", + "example_sentence_english": "Mitochondrial DNA is inherited from the mother.", + "pos": "adjective", + "word_frequency": 14112 + }, + { + "word": "mobilization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of assembling and preparing for active service or use", + "example_sentence_english": "The mobilization of troops was swift after the declaration of war.", + "pos": "noun", + "word_frequency": 14113 + }, + { + "word": "monologue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long speech by one person", + "example_sentence_english": "The actor delivered a powerful monologue in the play.", + "pos": "noun", + "word_frequency": 14114 + }, + { + "word": "monoxide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an oxide containing one oxygen atom", + "example_sentence_english": "Carbon monoxide is a colorless, odorless, and poisonous gas.", + "pos": "noun", + "word_frequency": 14115 + }, + { + "word": "mutiny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an open rebellion against authority", + "example_sentence_english": "The crew staged a mutiny against the captain.", + "pos": "noun", + "word_frequency": 14117 + }, + { + "word": "nag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annoy by persistent fault-finding or requests", + "example_sentence_english": "My mother always nags me to clean my room.", + "pos": "verb", + "word_frequency": 14118 + }, + { + "word": "nighttime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the time between evening and morning", + "example_sentence_english": "It's much colder during the nighttime.", + "pos": "noun", + "word_frequency": 14119 + }, + { + "word": "nonlinear", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not linear; not in a straight line or sequence.", + "example_sentence_english": "The relationship between effort and results can often be nonlinear.", + "pos": "adjective", + "word_frequency": 14120 + }, + { + "word": "normalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make something normal or standard.", + "example_sentence_english": "We need to normalize the data before analysis.", + "pos": "verb", + "word_frequency": 14121 + }, + { + "word": "outweigh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To be more important or significant than.", + "example_sentence_english": "The benefits of the new policy far outweigh the risks.", + "pos": "verb", + "word_frequency": 14126 + }, + { + "word": "parasitic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Living on or in another organism and getting food from it.", + "example_sentence_english": "The parasitic worm can cause serious health problems.", + "pos": "adjective", + "word_frequency": 14127 + }, + { + "word": "parsley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A herb with crinkly or flat leaves, used for flavoring or garnishing food.", + "example_sentence_english": "She chopped some fresh parsley to sprinkle over the soup.", + "pos": "noun", + "word_frequency": 14128 + }, + { + "word": "pendulum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A weight hung from a fixed point so that it can swing freely.", + "example_sentence_english": "The grandfather clock had a long, swinging pendulum.", + "pos": "noun", + "word_frequency": 14129 + }, + { + "word": "petit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Small and dainty.", + "example_sentence_english": "She had a petit frame and delicate features.", + "pos": "adjective", + "word_frequency": 14130 + }, + { + "word": "picket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or group of people standing outside a workplace or other venue as a protest or to deter others from entering.", + "example_sentence_english": "The workers formed a picket line outside the factory.", + "pos": "noun", + "word_frequency": 14132 + }, + { + "word": "poignant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Evoking a keen sense of sadness or regret.", + "example_sentence_english": "The photograph was a poignant reminder of their lost youth.", + "pos": "adjective", + "word_frequency": 14133 + }, + { + "word": "polio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A serious infectious disease that can cause paralysis.", + "example_sentence_english": "The vaccine helped to eradicate polio in many parts of the world.", + "pos": "noun", + "word_frequency": 14134 + }, + { + "word": "potency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The power of something to affect the mind or body; strength.", + "example_sentence_english": "The drug's potency was carefully measured.", + "pos": "noun", + "word_frequency": 14135 + }, + { + "word": "precarious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not securely held or in position; dangerously likely to fall or collapse.", + "example_sentence_english": "The climber found himself in a precarious position on the cliff edge.", + "pos": "adjective", + "word_frequency": 14136 + }, + { + "word": "pretext", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A reason given in justification of a course of action that is not the real reason.", + "example_sentence_english": "He used the excuse of a headache as a pretext to leave early.", + "pos": "noun", + "word_frequency": 14138 + }, + { + "word": "privatization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The transfer of a business, industry, or service from public to private ownership and control.", + "example_sentence_english": "The privatization of the railway system led to mixed results.", + "pos": "noun", + "word_frequency": 14139 + }, + { + "word": "quaint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Attractively unusual or old-fashioned.", + "example_sentence_english": "The village had many quaint little cottages.", + "pos": "adjective", + "word_frequency": 14140 + }, + { + "word": "raccoon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A nocturnal mammal with a black mask-like marking across its eyes and a bushy, ringed tail.", + "example_sentence_english": "A raccoon was rummaging through the trash cans.", + "pos": "noun", + "word_frequency": 14141 + }, + { + "word": "reassurance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of giving fresh confidence or courage to someone.", + "example_sentence_english": "She needed constant reassurance that everything would be alright.", + "pos": "noun", + "word_frequency": 14142 + }, + { + "word": "redistribution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action or process of distributing something differently or again, typically to achieve greater social equality.", + "example_sentence_english": "The government proposed a redistribution of wealth.", + "pos": "noun", + "word_frequency": 14143 + }, + { + "word": "saver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who saves money or something else.", + "example_sentence_english": "She's a careful saver and always puts money aside for a rainy day.", + "pos": "noun", + "word_frequency": 14147 + }, + { + "word": "secession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action of withdrawing formally from membership of a federation or body, especially a political state.", + "example_sentence_english": "The threat of secession loomed over the country.", + "pos": "noun", + "word_frequency": 14149 + }, + { + "word": "sectarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Denoting or concerning a sect or sects; relating to divisions within a group.", + "example_sentence_english": "The conflict was fueled by sectarian violence.", + "pos": "adjective", + "word_frequency": 14150 + }, + { + "word": "seminal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Strongly influencing later developments; highly original and influential.", + "example_sentence_english": "His seminal work on quantum physics changed the field forever.", + "pos": "adjective", + "word_frequency": 14151 + }, + { + "word": "serene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Calm, peaceful, and untroubled.", + "example_sentence_english": "The lake was perfectly serene at sunrise.", + "pos": "adjective", + "word_frequency": 14152 + }, + { + "word": "shipyard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A place where ships are built or repaired.", + "example_sentence_english": "The new warship was built in the local shipyard.", + "pos": "noun", + "word_frequency": 14155 + }, + { + "word": "silica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A hard, unreactive, colorless compound that occurs as the principal constituent of sand and other rocks.", + "example_sentence_english": "Quartz is a form of silica.", + "pos": "noun", + "word_frequency": 14158 + }, + { + "word": "simmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To stay just below the boiling point while being heated.", + "example_sentence_english": "Let the sauce simmer gently for 20 minutes.", + "pos": "verb", + "word_frequency": 14159 + }, + { + "word": "snag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a problem or difficulty", + "example_sentence_english": "We hit a snag in the project when the power went out.", + "pos": "noun", + "word_frequency": 14161 + }, + { + "word": "sophistication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being sophisticated", + "example_sentence_english": "Her sophistication was evident in her elegant manners and insightful comments.", + "pos": "noun", + "word_frequency": 14163 + }, + { + "word": "straighten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make straight", + "example_sentence_english": "Please straighten your tie before the interview.", + "pos": "verb", + "word_frequency": 14165 + }, + { + "word": "streamline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make more efficient", + "example_sentence_english": "We need to streamline our processes to reduce costs and save time.", + "pos": "verb", + "word_frequency": 14166 + }, + { + "word": "syringe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical instrument for injecting fluids", + "example_sentence_english": "The nurse prepared the syringe for the vaccination.", + "pos": "noun", + "word_frequency": 14167 + }, + { + "word": "tint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to add a slight color to", + "example_sentence_english": "She decided to tint her hair a lighter shade of brown.", + "pos": "verb", + "word_frequency": 14170 + }, + { + "word": "tote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry or haul", + "example_sentence_english": "He had to tote the heavy bags of groceries all the way home.", + "pos": "verb", + "word_frequency": 14171 + }, + { + "word": "transverse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extending across something", + "example_sentence_english": "The bridge had a strong transverse beam for structural support.", + "pos": "adjective", + "word_frequency": 14172 + }, + { + "word": "tremble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake involuntarily", + "example_sentence_english": "His hands began to tremble from the cold and fear.", + "pos": "verb", + "word_frequency": 14173 + }, + { + "word": "trident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a three-pronged spear", + "example_sentence_english": "Poseidon, the Greek god of the sea, is often depicted holding a trident.", + "pos": "noun", + "word_frequency": 14174 + }, + { + "word": "tweak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a small adjustment", + "example_sentence_english": "He needed to tweak the settings on his computer to improve performance.", + "pos": "verb", + "word_frequency": 14175 + }, + { + "word": "undead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alive but not living in the normal sense", + "example_sentence_english": "The movie featured a horde of undead creatures rising from their graves.", + "pos": "adjective", + "word_frequency": 14177 + }, + { + "word": "unison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneous performance or utterance of action or speech", + "example_sentence_english": "The choir sang in perfect unison, creating a beautiful sound.", + "pos": "noun", + "word_frequency": 14178 + }, + { + "word": "unprepared", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not ready or equipped", + "example_sentence_english": "She felt completely unprepared for the difficult exam.", + "pos": "adjective", + "word_frequency": 14179 + }, + { + "word": "unrestricted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not limited or controlled", + "example_sentence_english": "Access to the park is unrestricted during daylight hours.", + "pos": "adjective", + "word_frequency": 14180 + }, + { + "word": "unsuitable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not appropriate or fitting", + "example_sentence_english": "The content was deemed unsuitable for young children.", + "pos": "adjective", + "word_frequency": 14181 + }, + { + "word": "unthinkable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too unlikely or undesirable to be considered possible", + "example_sentence_english": "For many, the idea of living without a smartphone is unthinkable.", + "pos": "adjective", + "word_frequency": 14182 + }, + { + "word": "venerable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accorded a great deal of respect, especially because of age, wisdom, or character", + "example_sentence_english": "The venerable old professor shared his wisdom with generations of students.", + "pos": "adjective", + "word_frequency": 14184 + }, + { + "word": "visualize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to form a mental image of", + "example_sentence_english": "Try to visualize your success before you begin the task.", + "pos": "verb", + "word_frequency": 14185 + }, + { + "word": "wasteful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "using or expending something carelessly", + "example_sentence_english": "It's wasteful to leave the lights on when no one is in the room.", + "pos": "adjective", + "word_frequency": 14187 + }, + { + "word": "advisable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recommended; sensible", + "example_sentence_english": "It is advisable to book your tickets in advance, especially during peak season.", + "pos": "adjective", + "word_frequency": 14191 + }, + { + "word": "angst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of deep anxiety or dread", + "example_sentence_english": "Teenagers often experience a lot of angst about their future.", + "pos": "noun", + "word_frequency": 14193 + }, + { + "word": "apathy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lack of interest, enthusiasm, or concern", + "example_sentence_english": "There was a widespread apathy among the voters, leading to low turnout.", + "pos": "noun", + "word_frequency": 14194 + }, + { + "word": "artisan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a skilled craftsperson", + "example_sentence_english": "The market featured unique products made by local artisans.", + "pos": "noun", + "word_frequency": 14195 + }, + { + "word": "assortment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collection of various kinds of things", + "example_sentence_english": "The store offered a wide assortment of candies and chocolates.", + "pos": "noun", + "word_frequency": 14196 + }, + { + "word": "bandwagon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a popular trend or activity", + "example_sentence_english": "Everyone is jumping on the healthy eating bandwagon these days.", + "pos": "noun", + "word_frequency": 14197 + }, + { + "word": "bane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cause of great distress or annoyance", + "example_sentence_english": "The noisy neighbors were the bane of his existence.", + "pos": "noun", + "word_frequency": 14198 + }, + { + "word": "billing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of sending out invoices or charging for services", + "example_sentence_english": "The company handles all the billing for its clients.", + "pos": "noun", + "word_frequency": 14201 + }, + { + "word": "birdie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a score of one stroke under par on a hole in golf", + "example_sentence_english": "She made a birdie on the final hole to win the tournament.", + "pos": "noun", + "word_frequency": 14202 + }, + { + "word": "bison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large wild ox with a shaggy mane and a humped back", + "example_sentence_english": "Herds of bison once roamed the North American plains.", + "pos": "noun", + "word_frequency": 14203 + }, + { + "word": "blacksmith", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes and repairs things in iron by hand", + "example_sentence_english": "The blacksmith hammered the hot metal into shape.", + "pos": "noun", + "word_frequency": 14204 + }, + { + "word": "brainwash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone believe something by repeatedly telling them that it is true", + "example_sentence_english": "Some cults try to brainwash their members.", + "pos": "verb", + "word_frequency": 14206 + }, + { + "word": "brothel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a house where men can pay to have sex with prostitutes", + "example_sentence_english": "The police raided the illegal brothel last night.", + "pos": "noun", + "word_frequency": 14207 + }, + { + "word": "burrito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a Mexican dish consisting of a tortilla wrapped around a filling", + "example_sentence_english": "I had a delicious chicken burrito for lunch.", + "pos": "noun", + "word_frequency": 14208 + }, + { + "word": "byte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of digital information, typically consisting of eight bits", + "example_sentence_english": "A kilobyte is equal to 1024 bytes.", + "pos": "noun", + "word_frequency": 14209 + }, + { + "word": "camper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who camps, or a vehicle designed for camping", + "example_sentence_english": "We saw a group of campers setting up their tents by the lake.", + "pos": "noun", + "word_frequency": 14210 + }, + { + "word": "cartilage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a firm, elastic, flexible type of connective tissue", + "example_sentence_english": "The knee joint contains a lot of cartilage.", + "pos": "noun", + "word_frequency": 14212 + }, + { + "word": "casket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a coffin", + "example_sentence_english": "The casket was lowered into the grave.", + "pos": "noun", + "word_frequency": 14213 + }, + { + "word": "claimant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person making a claim, especially in a lawsuit or for a benefit", + "example_sentence_english": "The claimant sought compensation for damages.", + "pos": "noun", + "word_frequency": 14217 + }, + { + "word": "cleanliness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being clean or free from dirt", + "example_sentence_english": "Cleanliness is important for good health.", + "pos": "noun", + "word_frequency": 14218 + }, + { + "word": "clothe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to provide with clothes; to dress", + "example_sentence_english": "They worked hard to feed and clothe their children.", + "pos": "verb", + "word_frequency": 14219 + }, + { + "word": "concerto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a musical composition for a solo instrument or instruments accompanied by an orchestra", + "example_sentence_english": "The pianist performed a beautiful piano concerto.", + "pos": "noun", + "word_frequency": 14221 + }, + { + "word": "contraception", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the deliberate use of artificial methods or other techniques to prevent pregnancy", + "example_sentence_english": "Access to contraception is a key public health issue.", + "pos": "noun", + "word_frequency": 14222 + }, + { + "word": "convex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curved outward like the exterior of a sphere or circle", + "example_sentence_english": "A magnifying glass has a convex lens.", + "pos": "adjective", + "word_frequency": 14223 + }, + { + "word": "crouch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stoop or bend low with the limbs drawn close to the body", + "example_sentence_english": "The cat crouched low, ready to pounce.", + "pos": "verb", + "word_frequency": 14224 + }, + { + "word": "culmination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the highest or climactic point of something, especially as attained after a long time", + "example_sentence_english": "The award ceremony was the culmination of years of hard work.", + "pos": "noun", + "word_frequency": 14225 + }, + { + "word": "dank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagreeably damp, musty, and typically cold", + "example_sentence_english": "The old cellar was dark and dank.", + "pos": "adjective", + "word_frequency": 14227 + }, + { + "word": "decomposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or process of rotting or decaying", + "example_sentence_english": "The decomposition of organic matter enriches the soil.", + "pos": "noun", + "word_frequency": 14229 + }, + { + "word": "dehydrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause (a person or thing) to lose a large amount of water", + "example_sentence_english": "It's important to drink water so you don't dehydrate.", + "pos": "verb", + "word_frequency": 14230 + }, + { + "word": "detriment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being harmed or damaged", + "example_sentence_english": "Smoking is to the detriment of your health.", + "pos": "noun", + "word_frequency": 14231 + }, + { + "word": "discretionary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "available for use at the discretion of the user", + "example_sentence_english": "Employees receive a discretionary bonus based on performance.", + "pos": "adjective", + "word_frequency": 14234 + }, + { + "word": "dismal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depressing; dreary", + "example_sentence_english": "The weather was dismal, cold and rainy.", + "pos": "adjective", + "word_frequency": 14235 + }, + { + "word": "dismay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause (someone) to feel consternation and distress", + "example_sentence_english": "The news of the cancellation dismayed the fans.", + "pos": "verb", + "word_frequency": 14236 + }, + { + "word": "disparate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "essentially different in kind; not able to be compared", + "example_sentence_english": "The team members came from disparate backgrounds.", + "pos": "adjective", + "word_frequency": 14237 + }, + { + "word": "dissemination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of spreading something, especially information, widely", + "example_sentence_english": "The rapid dissemination of news is common in the digital age.", + "pos": "noun", + "word_frequency": 14238 + }, + { + "word": "distill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to purify (a liquid) by vaporizing it and then condensing it", + "example_sentence_english": "They distill fresh water from the ocean.", + "pos": "verb", + "word_frequency": 14239 + }, + { + "word": "elector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voter", + "example_sentence_english": "Each elector has the right to cast one vote.", + "pos": "noun", + "word_frequency": 14242 + }, + { + "word": "electrician", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "person who installs/repairs electrical wiring", + "example_sentence_english": "We called an electrician to fix the faulty wiring.", + "pos": "noun", + "word_frequency": 14243 + }, + { + "word": "equator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginary line around the Earth", + "example_sentence_english": "The equator divides the Earth into Northern and Southern Hemispheres.", + "pos": "noun", + "word_frequency": 14245 + }, + { + "word": "estuary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "river mouth where tide meets stream", + "example_sentence_english": "Many fish species breed in the calm waters of the estuary.", + "pos": "noun", + "word_frequency": 14246 + }, + { + "word": "etch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engrave, carve", + "example_sentence_english": "The artist will etch the design onto the glass.", + "pos": "verb", + "word_frequency": 14247 + }, + { + "word": "excise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remove by cutting out", + "example_sentence_english": "The editor decided to excise the irrelevant paragraph from the article.", + "pos": "verb", + "word_frequency": 14249 + }, + { + "word": "facet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspect, side", + "example_sentence_english": "The problem has many facets that need to be considered.", + "pos": "noun", + "word_frequency": 14250 + }, + { + "word": "fad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short-lived trend", + "example_sentence_english": "Online challenges often become a temporary fad among teenagers.", + "pos": "noun", + "word_frequency": 14251 + }, + { + "word": "fiancée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "woman engaged to be married", + "example_sentence_english": "He introduced his fiancée to his family at dinner.", + "pos": "noun", + "word_frequency": 14252 + }, + { + "word": "fledge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "develop feathers for flight", + "example_sentence_english": "The young birds will fledge and leave the nest soon.", + "pos": "verb", + "word_frequency": 14254 + }, + { + "word": "forceful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerful, strong", + "example_sentence_english": "Her argument was so forceful that everyone agreed.", + "pos": "adverb", + "word_frequency": 14256 + }, + { + "word": "foreground", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "part of a scene nearest the viewer", + "example_sentence_english": "In the painting, a small boat is visible in the foreground.", + "pos": "noun", + "word_frequency": 14257 + }, + { + "word": "frown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wrinkle forehead in displeasure", + "example_sentence_english": "He began to frown when he heard the bad news.", + "pos": "verb", + "word_frequency": 14258 + }, + { + "word": "fruity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasting or smelling of fruit", + "example_sentence_english": "This wine has a lovely fruity aroma.", + "pos": "adjective", + "word_frequency": 14259 + }, + { + "word": "godly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devout, pious", + "example_sentence_english": "He lived a simple and godly life.", + "pos": "adjective", + "word_frequency": 14264 + }, + { + "word": "groin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "area between abdomen and thigh", + "example_sentence_english": "The athlete pulled a muscle in his groin during the race.", + "pos": "noun", + "word_frequency": 14266 + }, + { + "word": "gunpowder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosive mixture", + "example_sentence_english": "Gunpowder was invented in China centuries ago.", + "pos": "noun", + "word_frequency": 14269 + }, + { + "word": "helix", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spiral shape", + "example_sentence_english": "The DNA molecule has a double helix structure.", + "pos": "noun", + "word_frequency": 14273 + }, + { + "word": "heroism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great bravery", + "example_sentence_english": "His act of heroism saved many lives during the fire.", + "pos": "noun", + "word_frequency": 14274 + }, + { + "word": "hierarchical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arranged in order of rank", + "example_sentence_english": "The company has a strict hierarchical management structure.", + "pos": "adjective", + "word_frequency": 14275 + }, + { + "word": "hornet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large stinging wasp", + "example_sentence_english": "A hornet flew into the room and everyone ducked.", + "pos": "noun", + "word_frequency": 14277 + }, + { + "word": "howl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long, loud cry", + "example_sentence_english": "The wolf began to howl at the full moon.", + "pos": "verb", + "word_frequency": 14278 + }, + { + "word": "icelandic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Iceland", + "example_sentence_english": "She is studying Icelandic history and culture.", + "pos": "adjective", + "word_frequency": 14279 + }, + { + "word": "induct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admit (someone) to a position or organization", + "example_sentence_english": "He was inducted into the Hall of Fame last year.", + "pos": "verb", + "word_frequency": 14280 + }, + { + "word": "infidelity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfaithfulness to a spouse or partner", + "example_sentence_english": "The infidelity caused a lot of pain in their relationship.", + "pos": "noun", + "word_frequency": 14281 + }, + { + "word": "inventive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creative; imaginative", + "example_sentence_english": "She has an inventive mind and always comes up with new ideas.", + "pos": "adjective", + "word_frequency": 14282 + }, + { + "word": "inversion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a reversal of position, order, form, or relationship", + "example_sentence_english": "The inversion of the normal word order can create emphasis.", + "pos": "noun", + "word_frequency": 14283 + }, + { + "word": "knack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a special skill or aptitude", + "example_sentence_english": "She has a knack for making people feel comfortable.", + "pos": "noun", + "word_frequency": 14290 + }, + { + "word": "kosher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of food) satisfying the requirements of Jewish law", + "example_sentence_english": "This restaurant serves only kosher food.", + "pos": "adjective", + "word_frequency": 14293 + }, + { + "word": "liquidation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of bringing a business to an end and distributing its assets", + "example_sentence_english": "The company went into liquidation after failing to pay its debts.", + "pos": "noun", + "word_frequency": 14299 + }, + { + "word": "longitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the angular distance of a place east or west of the Greenwich meridian", + "example_sentence_english": "Navigators use both latitude and longitude to pinpoint locations.", + "pos": "noun", + "word_frequency": 14300 + }, + { + "word": "macho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing aggressive pride in one's masculinity", + "example_sentence_english": "His macho attitude often alienated people.", + "pos": "adjective", + "word_frequency": 14301 + }, + { + "word": "maestro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a distinguished musician, especially a conductor", + "example_sentence_english": "The orchestra performed beautifully under the baton of the maestro.", + "pos": "noun", + "word_frequency": 14302 + }, + { + "word": "maxi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long, reaching to the ankle or floor", + "example_sentence_english": "She wore a beautiful maxi skirt to the party.", + "pos": "adjective", + "word_frequency": 14305 + }, + { + "word": "meditate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to think deeply or focus one's mind for a period", + "example_sentence_english": "She tries to meditate for at least 15 minutes every morning.", + "pos": "verb", + "word_frequency": 14308 + }, + { + "word": "microscopy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the investigation of minute objects and structures through a microscope", + "example_sentence_english": "Advanced microscopy techniques allow us to see individual cells.", + "pos": "noun", + "word_frequency": 14309 + }, + { + "word": "morbid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by an unhealthy interest in disturbing subjects", + "example_sentence_english": "He has a morbid fascination with true crime stories.", + "pos": "adjective", + "word_frequency": 14312 + }, + { + "word": "multiplication", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of multiplying", + "example_sentence_english": "Learning multiplication tables is essential for basic arithmetic.", + "pos": "noun", + "word_frequency": 14313 + }, + { + "word": "nonfiction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prose writing based on facts, real events, and real people", + "example_sentence_english": "I prefer reading nonfiction books about history.", + "pos": "noun", + "word_frequency": 14317 + }, + { + "word": "nuance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to give nuances to; to make subtle distinctions", + "example_sentence_english": "The artist carefully nuanced the colors in the painting.", + "pos": "verb", + "word_frequency": 14318 + }, + { + "word": "orb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sphere; globe", + "example_sentence_english": "The magician held a glowing orb in his hand.", + "pos": "noun", + "word_frequency": 14320 + }, + { + "word": "orchestral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to an orchestra", + "example_sentence_english": "The orchestral performance was breathtaking.", + "pos": "adjective", + "word_frequency": 14321 + }, + { + "word": "orthodoxy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adherence to traditional or accepted creeds", + "example_sentence_english": "He challenged the orthodoxy of the scientific community.", + "pos": "noun", + "word_frequency": 14322 + }, + { + "word": "outage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period when a power supply or service is not available", + "example_sentence_english": "The power outage lasted for several hours.", + "pos": "noun", + "word_frequency": 14323 + }, + { + "word": "paternal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a father", + "example_sentence_english": "He felt a strong paternal instinct towards the child.", + "pos": "adjective", + "word_frequency": 14325 + }, + { + "word": "pellet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, rounded, compressed mass of a substance", + "example_sentence_english": "The bird ate the small food pellets.", + "pos": "noun", + "word_frequency": 14326 + }, + { + "word": "pelvis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the large bony frame forming the lower part of the trunk", + "example_sentence_english": "The doctor examined the patient's pelvis.", + "pos": "noun", + "word_frequency": 14327 + }, + { + "word": "polarization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "division into two sharply contrasting groups", + "example_sentence_english": "The issue caused significant polarization within the community.", + "pos": "noun", + "word_frequency": 14330 + }, + { + "word": "potty", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slightly crazy; trivial", + "example_sentence_english": "He's gone a bit potty with all this stress.", + "pos": "adjective", + "word_frequency": 14331 + }, + { + "word": "preoccupied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorbed in thought; engrossed", + "example_sentence_english": "She was too preoccupied to notice him.", + "pos": "adjective", + "word_frequency": 14332 + }, + { + "word": "projectile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a missile that is projected", + "example_sentence_english": "The cannon fired a heavy projectile.", + "pos": "noun", + "word_frequency": 14333 + }, + { + "word": "protracted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lasting for a long time or longer than expected", + "example_sentence_english": "The negotiations were protracted and difficult.", + "pos": "adjective", + "word_frequency": 14334 + }, + { + "word": "puddle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small pool of liquid, especially rain", + "example_sentence_english": "The children jumped in the puddles after the rain.", + "pos": "noun", + "word_frequency": 14336 + }, + { + "word": "quay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a platform for loading and unloading ships", + "example_sentence_english": "The ship docked at the quay.", + "pos": "noun", + "word_frequency": 14337 + }, + { + "word": "railing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fence or barrier made of rails", + "example_sentence_english": "He leaned against the railing, looking out at the sea.", + "pos": "noun", + "word_frequency": 14338 + }, + { + "word": "realist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who accepts and deals with a situation as it is", + "example_sentence_english": "She's a realist and always sees things as they truly are.", + "pos": "noun", + "word_frequency": 14339 + }, + { + "word": "receptionist", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who greets and assists visitors", + "example_sentence_english": "The receptionist greeted us with a smile.", + "pos": "noun", + "word_frequency": 14340 + }, + { + "word": "recruiter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose job is to enlist or enroll people", + "example_sentence_english": "The company's recruiter found many qualified candidates.", + "pos": "noun", + "word_frequency": 14341 + }, + { + "word": "reload", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "load again", + "example_sentence_english": "He had to reload the gun.", + "pos": "verb", + "word_frequency": 14342 + }, + { + "word": "remuneration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "money paid for work or a service", + "example_sentence_english": "The remuneration for the job was excellent.", + "pos": "noun", + "word_frequency": 14343 + }, + { + "word": "repress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subdue (someone or something) by force; restrain", + "example_sentence_english": "He tried to repress his anger.", + "pos": "verb", + "word_frequency": 14344 + }, + { + "word": "reputed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "generally considered or believed to be", + "example_sentence_english": "He is reputed to be the best lawyer in the city.", + "pos": "adjective", + "word_frequency": 14345 + }, + { + "word": "richness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being rich or abundant", + "example_sentence_english": "The richness of the soil allowed the plants to thrive.", + "pos": "noun", + "word_frequency": 14346 + }, + { + "word": "secretive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclined to conceal feelings and intentions", + "example_sentence_english": "He was very secretive about his plans.", + "pos": "adjective", + "word_frequency": 14351 + }, + { + "word": "serotonin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound acting as a neurotransmitter", + "example_sentence_english": "Serotonin plays a key role in mood regulation.", + "pos": "noun", + "word_frequency": 14352 + }, + { + "word": "silky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smooth, soft, and lustrous, like silk", + "example_sentence_english": "Her hair felt wonderfully silky.", + "pos": "adjective", + "word_frequency": 14354 + }, + { + "word": "smallpox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an acute contagious viral disease", + "example_sentence_english": "Smallpox was a devastating disease before its eradication.", + "pos": "noun", + "word_frequency": 14357 + }, + { + "word": "snore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "make a snorting or grunting sound while asleep", + "example_sentence_english": "He tends to snore loudly when he sleeps on his back.", + "pos": "verb", + "word_frequency": 14358 + }, + { + "word": "sociological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to sociology or to the organization of society", + "example_sentence_english": "The study examined the sociological impact of technology.", + "pos": "adjective", + "word_frequency": 14359 + }, + { + "word": "sorority", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a social organization for female students", + "example_sentence_english": "She joined a sorority in her first year of college.", + "pos": "noun", + "word_frequency": 14360 + }, + { + "word": "speechless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unable to speak", + "example_sentence_english": "She was speechless with shock.", + "pos": "adjective", + "word_frequency": 14362 + }, + { + "word": "spore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a reproductive cell", + "example_sentence_english": "Fungi reproduce by releasing spores.", + "pos": "noun", + "word_frequency": 14363 + }, + { + "word": "starship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a spacecraft designed for interstellar travel", + "example_sentence_english": "The crew boarded the starship for their long journey.", + "pos": "noun", + "word_frequency": 14364 + }, + { + "word": "strategist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person skilled in planning strategy", + "example_sentence_english": "He is a brilliant military strategist.", + "pos": "noun", + "word_frequency": 14365 + }, + { + "word": "sunken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having sunk or been submerged", + "example_sentence_english": "We explored the sunken ship at the bottom of the sea.", + "pos": "adjective", + "word_frequency": 14368 + }, + { + "word": "supremacist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who believes in the superiority of a particular group", + "example_sentence_english": "The group was led by a white supremacist.", + "pos": "noun", + "word_frequency": 14369 + }, + { + "word": "tortoise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a slow-moving reptile", + "example_sentence_english": "The tortoise slowly made its way across the garden.", + "pos": "noun", + "word_frequency": 14372 + }, + { + "word": "typewriter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine for writing", + "example_sentence_english": "My grandmother still uses an old typewriter.", + "pos": "noun", + "word_frequency": 14374 + }, + { + "word": "undisputed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not disputed or called into question", + "example_sentence_english": "He is the undisputed champion of the world.", + "pos": "adjective", + "word_frequency": 14375 + }, + { + "word": "unprofessional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not conforming to the standards of a profession", + "example_sentence_english": "His behavior at the meeting was completely unprofessional.", + "pos": "adjective", + "word_frequency": 14376 + }, + { + "word": "visceral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to deep inward feelings rather than intellect", + "example_sentence_english": "He had a visceral reaction to the injustice.", + "pos": "adjective", + "word_frequency": 14379 + }, + { + "word": "wannabe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who tries to be like someone else", + "example_sentence_english": "He's just a rock star wannabe.", + "pos": "noun", + "word_frequency": 14380 + }, + { + "word": "wiggle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move with small, quick movements", + "example_sentence_english": "The puppy started to wiggle its tail.", + "pos": "verb", + "word_frequency": 14381 + }, + { + "word": "worldview", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a particular philosophy of life or conception of the world", + "example_sentence_english": "His worldview was shaped by his travels.", + "pos": "noun", + "word_frequency": 14383 + }, + { + "word": "wrongdoing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegal or dishonest behavior", + "example_sentence_english": "The company admitted no wrongdoing.", + "pos": "noun", + "word_frequency": 14384 + }, + { + "word": "abuser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who treats another person or animal with cruelty or violence", + "example_sentence_english": "The abuser was arrested for domestic violence.", + "pos": "noun", + "word_frequency": 14389 + }, + { + "word": "aggregation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the formation of a number of things into one cluster", + "example_sentence_english": "Data aggregation is important for analysis.", + "pos": "noun", + "word_frequency": 14390 + }, + { + "word": "alkaline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having properties of an alkali", + "example_sentence_english": "Alkaline batteries are widely used.", + "pos": "adjective", + "word_frequency": 14394 + }, + { + "word": "alum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a former student of a school, college, or university", + "example_sentence_english": "She is an alum of Harvard University.", + "pos": "noun", + "word_frequency": 14395 + }, + { + "word": "antidote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medicine taken or given to counteract a particular poison", + "example_sentence_english": "There is no known antidote for that poison.", + "pos": "noun", + "word_frequency": 14397 + }, + { + "word": "anus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the opening at the end of the alimentary canal", + "example_sentence_english": "The anus is part of the digestive system.", + "pos": "noun", + "word_frequency": 14398 + }, + { + "word": "archery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sport of shooting with a bow and arrow", + "example_sentence_english": "She practices archery every weekend.", + "pos": "noun", + "word_frequency": 14400 + }, + { + "word": "arterial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an artery or arteries", + "example_sentence_english": "The city's arterial roads are often congested during rush hour.", + "pos": "adjective", + "word_frequency": 14401 + }, + { + "word": "asparagus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, green vegetable with a tender tip", + "example_sentence_english": "We had roasted asparagus with our dinner.", + "pos": "noun", + "word_frequency": 14402 + }, + { + "word": "attest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provide or serve as clear evidence of", + "example_sentence_english": "The ancient ruins attest to the city's former glory.", + "pos": "verb", + "word_frequency": 14404 + }, + { + "word": "attractiveness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being pleasing or appealing", + "example_sentence_english": "Her natural attractiveness was undeniable.", + "pos": "noun", + "word_frequency": 14405 + }, + { + "word": "auditory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the sense of hearing", + "example_sentence_english": "The auditory nerve transmits sound signals to the brain.", + "pos": "adjective", + "word_frequency": 14406 + }, + { + "word": "avenge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflict harm in return for an injury or wrong suffered", + "example_sentence_english": "He vowed to avenge his brother's death.", + "pos": "verb", + "word_frequency": 14407 + }, + { + "word": "aversion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong dislike or disinclination", + "example_sentence_english": "She has a strong aversion to spiders.", + "pos": "noun", + "word_frequency": 14408 + }, + { + "word": "balm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fragrant ointment or preparation used to heal or soothe", + "example_sentence_english": "The soothing balm helped relieve her dry skin.", + "pos": "noun", + "word_frequency": 14411 + }, + { + "word": "biennial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "happening every two years", + "example_sentence_english": "The art exhibition is a biennial event.", + "pos": "adjective", + "word_frequency": 14412 + }, + { + "word": "bony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very thin, so that the bones can be seen", + "example_sentence_english": "The stray dog was very bony and needed food.", + "pos": "adjective", + "word_frequency": 14415 + }, + { + "word": "brighten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make or become brighter", + "example_sentence_english": "The flowers helped to brighten up the room.", + "pos": "verb", + "word_frequency": 14416 + }, + { + "word": "brood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "think deeply about something that makes one unhappy", + "example_sentence_english": "He continued to brood over his past mistakes.", + "pos": "verb", + "word_frequency": 14417 + }, + { + "word": "bulletproof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to resist the penetration of bullets", + "example_sentence_english": "The car had bulletproof windows for added security.", + "pos": "adjective", + "word_frequency": 14418 + }, + { + "word": "cessation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fact or process of ending or being brought to an end", + "example_sentence_english": "The cessation of hostilities was a welcome relief.", + "pos": "noun", + "word_frequency": 14424 + }, + { + "word": "chemo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemotherapy (informal)", + "example_sentence_english": "She's undergoing chemo for her cancer treatment.", + "pos": "noun", + "word_frequency": 14427 + }, + { + "word": "collagen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a protein found in skin and connective tissues", + "example_sentence_english": "Collagen is essential for healthy skin and joints.", + "pos": "noun", + "word_frequency": 14430 + }, + { + "word": "cricketer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who plays cricket", + "example_sentence_english": "The young cricketer scored a century in his debut match.", + "pos": "noun", + "word_frequency": 14431 + }, + { + "word": "crochet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (a garment or piece of fabric) with yarn or thread and a hooked needle", + "example_sentence_english": "My grandmother loves to crochet blankets for her grandchildren.", + "pos": "verb", + "word_frequency": 14433 + }, + { + "word": "customization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of modifying something to suit a particular individual or task", + "example_sentence_english": "The software allows for extensive customization of the user interface.", + "pos": "noun", + "word_frequency": 14435 + }, + { + "word": "cypress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an evergreen coniferous tree", + "example_sentence_english": "A tall cypress tree stood by the entrance to the garden.", + "pos": "noun", + "word_frequency": 14436 + }, + { + "word": "dal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dried pulses (lentils, peas, or beans) which have been split", + "example_sentence_english": "We had a delicious bowl of dal with rice for dinner.", + "pos": "noun", + "word_frequency": 14437 + }, + { + "word": "dandy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excellent; first-rate (informal)", + "example_sentence_english": "Everything's just dandy, thanks for asking.", + "pos": "adjective", + "word_frequency": 14438 + }, + { + "word": "dependable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trustworthy and reliable", + "example_sentence_english": "She is a very dependable employee, always completing her tasks on time.", + "pos": "adjective", + "word_frequency": 14439 + }, + { + "word": "eid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamic festival", + "example_sentence_english": "Muslims celebrate Eid al-Fitr at the end of Ramadan.", + "pos": "noun", + "word_frequency": 14445 + }, + { + "word": "emeritus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retired but retaining title", + "example_sentence_english": "She is now a professor emeritus of history.", + "pos": "adjective", + "word_frequency": 14446 + }, + { + "word": "emigration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act of leaving one's country", + "example_sentence_english": "The country has seen a high rate of emigration in recent years.", + "pos": "noun", + "word_frequency": 14447 + }, + { + "word": "excavate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dig up", + "example_sentence_english": "Archaeologists plan to excavate the ancient site next spring.", + "pos": "verb", + "word_frequency": 14448 + }, + { + "word": "extant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "still in existence", + "example_sentence_english": "There are very few extant copies of the original manuscript.", + "pos": "adjective", + "word_frequency": 14449 + }, + { + "word": "fathom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "understand deeply", + "example_sentence_english": "I can't fathom why he would do such a thing.", + "pos": "verb", + "word_frequency": 14451 + }, + { + "word": "fiancee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "woman engaged to be married", + "example_sentence_english": "He introduced his fiancée to his parents last night.", + "pos": "noun", + "word_frequency": 14452 + }, + { + "word": "fictitious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imaginary or not real", + "example_sentence_english": "The characters in the novel are entirely fictitious.", + "pos": "adjective", + "word_frequency": 14453 + }, + { + "word": "firsthand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from the original source", + "example_sentence_english": "She has firsthand experience of working in a refugee camp.", + "pos": "adjective", + "word_frequency": 14454 + }, + { + "word": "flashy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showy or ostentatious", + "example_sentence_english": "He drives a flashy sports car.", + "pos": "adjective", + "word_frequency": 14456 + }, + { + "word": "floppy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limp or not stiff", + "example_sentence_english": "The dog's ears were long and floppy.", + "pos": "adjective", + "word_frequency": 14457 + }, + { + "word": "fluoride", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemical compound used in toothpaste", + "example_sentence_english": "Many toothpastes contain fluoride to prevent cavities.", + "pos": "noun", + "word_frequency": 14458 + }, + { + "word": "frat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraternity", + "example_sentence_english": "He joined a frat in his first year of college.", + "pos": "noun", + "word_frequency": 14459 + }, + { + "word": "geologic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to geology", + "example_sentence_english": "The area is known for its unique geologic formations.", + "pos": "adjective", + "word_frequency": 14460 + }, + { + "word": "gmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetically modified organism", + "example_sentence_english": "There is a debate about the safety of GMO foods.", + "pos": "noun", + "word_frequency": 14462 + }, + { + "word": "headmaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "principal of a school", + "example_sentence_english": "The headmaster announced the new school rules.", + "pos": "noun", + "word_frequency": 14469 + }, + { + "word": "heartland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "central region of a country", + "example_sentence_english": "The Midwest is often considered the heartland of America.", + "pos": "noun", + "word_frequency": 14470 + }, + { + "word": "hedgehog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small spiny mammal", + "example_sentence_english": "We saw a hedgehog scurrying across the garden.", + "pos": "noun", + "word_frequency": 14471 + }, + { + "word": "heinous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "utterly odious or wicked", + "example_sentence_english": "The crime was described as a heinous act.", + "pos": "adjective", + "word_frequency": 14473 + }, + { + "word": "hoe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gardening tool", + "example_sentence_english": "He used a hoe to weed the garden.", + "pos": "noun", + "word_frequency": 14474 + }, + { + "word": "hypnosis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state of altered consciousness", + "example_sentence_english": "She underwent hypnosis to help her quit smoking.", + "pos": "noun", + "word_frequency": 14476 + }, + { + "word": "icu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensive care unit", + "example_sentence_english": "The patient was transferred to the ICU after surgery.", + "pos": "noun", + "word_frequency": 14478 + }, + { + "word": "immersive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "engaging deeply", + "example_sentence_english": "The virtual reality game offered a truly immersive experience.", + "pos": "adjective", + "word_frequency": 14479 + }, + { + "word": "impeccable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flawless, perfect", + "example_sentence_english": "Her performance was impeccable.", + "pos": "adjective", + "word_frequency": 14480 + }, + { + "word": "inbound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arriving, coming in", + "example_sentence_english": "We are expecting an inbound flight from London.", + "pos": "adjective", + "word_frequency": 14481 + }, + { + "word": "inconsistency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of consistency", + "example_sentence_english": "There were several inconsistencies in his story.", + "pos": "noun", + "word_frequency": 14482 + }, + { + "word": "inference", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conclusion reached on the basis of evidence", + "example_sentence_english": "We can draw an inference from the data.", + "pos": "noun", + "word_frequency": 14483 + }, + { + "word": "infiltrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to secretly enter and become part of", + "example_sentence_english": "The spy managed to infiltrate the enemy organization.", + "pos": "verb", + "word_frequency": 14484 + }, + { + "word": "inflatable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be filled with air or gas", + "example_sentence_english": "They bought an inflatable swimming pool for the garden.", + "pos": "adjective", + "word_frequency": 14485 + }, + { + "word": "inhale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breathe in", + "example_sentence_english": "He took a deep breath and began to inhale the fresh air.", + "pos": "verb", + "word_frequency": 14487 + }, + { + "word": "instinctive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on instinct, automatic", + "example_sentence_english": "His reaction was purely instinctive.", + "pos": "adverb", + "word_frequency": 14488 + }, + { + "word": "interconnected", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutually connected", + "example_sentence_english": "All living things are interconnected in the ecosystem.", + "pos": "adjective", + "word_frequency": 14489 + }, + { + "word": "intolerant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwilling to accept views, beliefs, or behavior that differ from one's own", + "example_sentence_english": "He was intolerant of any criticism.", + "pos": "adjective", + "word_frequency": 14490 + }, + { + "word": "isp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Internet Service Provider", + "example_sentence_english": "My ISP is having network issues today.", + "pos": "noun", + "word_frequency": 14491 + }, + { + "word": "jellyfish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a marine animal with a bell-shaped body and stinging tentacles", + "example_sentence_english": "We saw a large jellyfish floating near the shore.", + "pos": "noun", + "word_frequency": 14492 + }, + { + "word": "judo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Japanese martial art", + "example_sentence_english": "She practices judo twice a week.", + "pos": "noun", + "word_frequency": 14494 + }, + { + "word": "kilo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kilogram (unit of mass)", + "example_sentence_english": "I need two kilos of apples.", + "pos": "noun", + "word_frequency": 14499 + }, + { + "word": "lament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to express sorrow or regret", + "example_sentence_english": "She lamented the loss of her youth.", + "pos": "verb", + "word_frequency": 14501 + }, + { + "word": "leach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to drain away from a solid by percolation", + "example_sentence_english": "Rain can leach nutrients from the soil.", + "pos": "verb", + "word_frequency": 14502 + }, + { + "word": "lefty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a left-handed person; a person with left-wing political views", + "example_sentence_english": "My brother is a lefty, so he writes with his left hand.", + "pos": "noun", + "word_frequency": 14503 + }, + { + "word": "lsd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lysergic acid diethylamide (a hallucinogenic drug)", + "example_sentence_english": "LSD is a powerful hallucinogenic drug.", + "pos": "noun", + "word_frequency": 14504 + }, + { + "word": "mach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unit of speed equal to the speed of sound", + "example_sentence_english": "The jet flew at Mach 2.", + "pos": "noun", + "word_frequency": 14508 + }, + { + "word": "malpractice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improper, illegal, or negligent professional activity or treatment", + "example_sentence_english": "The doctor was sued for medical malpractice.", + "pos": "noun", + "word_frequency": 14510 + }, + { + "word": "manipulative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influencing or controlling others in a clever, unfair, or selfish way", + "example_sentence_english": "He has a very manipulative personality.", + "pos": "adjective", + "word_frequency": 14511 + }, + { + "word": "microbiology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of microscopic organisms", + "example_sentence_english": "She is studying microbiology at university.", + "pos": "noun", + "word_frequency": 14517 + }, + { + "word": "modernity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or condition of being modern", + "example_sentence_english": "The city blends ancient traditions with modernity.", + "pos": "noun", + "word_frequency": 14518 + }, + { + "word": "nectar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A sugary fluid produced by flowers.", + "example_sentence_english": "Bees collect nectar from flowers to make honey.", + "pos": "noun", + "word_frequency": 14521 + }, + { + "word": "nitrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A salt or ester of nitric acid.", + "example_sentence_english": "Nitrates are often used as fertilizers in agriculture.", + "pos": "noun", + "word_frequency": 14522 + }, + { + "word": "pastel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A soft, delicate shade of a color.", + "example_sentence_english": "She decorated the nursery in soft pastel colors.", + "pos": "noun", + "word_frequency": 14527 + }, + { + "word": "payoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The financial result of an investment or activity.", + "example_sentence_english": "All the hard work finally led to a big payoff.", + "pos": "noun", + "word_frequency": 14528 + }, + { + "word": "perpetrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To carry out or commit (a harmful, illegal, or immoral action).", + "example_sentence_english": "The criminals managed to perpetrate the robbery without being caught.", + "pos": "verb", + "word_frequency": 14529 + }, + { + "word": "pessimistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tending to see the worst aspect of things or believe that the worst will happen.", + "example_sentence_english": "He has a very pessimistic outlook on the future.", + "pos": "adjective", + "word_frequency": 14530 + }, + { + "word": "phosphorus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A chemical element with the symbol P.", + "example_sentence_english": "Phosphorus is an essential element for all living organisms.", + "pos": "noun", + "word_frequency": 14531 + }, + { + "word": "platter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large flat dish or plate.", + "example_sentence_english": "She served the roasted chicken on a large silver platter.", + "pos": "noun", + "word_frequency": 14532 + }, + { + "word": "prod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To poke with a finger, foot, or pointed object.", + "example_sentence_english": "He had to prod his friend to get him to wake up.", + "pos": "verb", + "word_frequency": 14533 + }, + { + "word": "prodigy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person, especially a young one, endowed with exceptional qualities or abilities.", + "example_sentence_english": "The young musician was considered a prodigy by the age of ten.", + "pos": "noun", + "word_frequency": 14534 + }, + { + "word": "psychotherapy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The treatment of mental disorder by psychological rather than medical means.", + "example_sentence_english": "She decided to try psychotherapy to help manage her anxiety.", + "pos": "noun", + "word_frequency": 14535 + }, + { + "word": "pundit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An expert in a particular subject or field who is frequently called upon to give opinions about it to the public.", + "example_sentence_english": "Political pundits are often invited to discuss current events on TV.", + "pos": "noun", + "word_frequency": 14536 + }, + { + "word": "quilt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A warm bed covering made of padding enclosed between layers of fabric.", + "example_sentence_english": "My grandmother made me a beautiful patchwork quilt.", + "pos": "noun", + "word_frequency": 14537 + }, + { + "word": "realtor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who acts as an agent for the sale and purchase of buildings and land.", + "example_sentence_english": "We hired a realtor to help us find a new house.", + "pos": "noun", + "word_frequency": 14542 + }, + { + "word": "regency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A period of government by a regent.", + "example_sentence_english": "The Regency era in Britain was known for its distinctive architecture and fashion.", + "pos": "noun", + "word_frequency": 14544 + }, + { + "word": "sag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To sink, droop, or hang especially in the middle.", + "example_sentence_english": "The old shelf began to sag under the weight of the books.", + "pos": "verb", + "word_frequency": 14547 + }, + { + "word": "sauna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small room used for steam or dry heat baths.", + "example_sentence_english": "After the workout, we relaxed in the sauna.", + "pos": "noun", + "word_frequency": 14549 + }, + { + "word": "scrum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A disordered or confused situation.", + "example_sentence_english": "The players formed a scrum to restart the game.", + "pos": "noun", + "word_frequency": 14550 + }, + { + "word": "seasonally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a way that varies with the seasons.", + "example_sentence_english": "The restaurant changes its menu seasonally to use fresh ingredients.", + "pos": "adverb", + "word_frequency": 14551 + }, + { + "word": "sluggish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Slow-moving or inactive.", + "example_sentence_english": "The economy has been sluggish for the past few months.", + "pos": "adjective", + "word_frequency": 14557 + }, + { + "word": "slum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A squalid and overcrowded urban street or district inhabited by very poor people.", + "example_sentence_english": "Many people live in the slums on the outskirts of the city.", + "pos": "noun", + "word_frequency": 14558 + }, + { + "word": "smoothie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A thick, smooth drink made of fresh fruit pureed with milk, yogurt, or ice cream.", + "example_sentence_english": "I like to drink a fruit smoothie for breakfast.", + "pos": "noun", + "word_frequency": 14559 + }, + { + "word": "snare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a trap for catching animals", + "example_sentence_english": "The hunter set a snare to catch rabbits.", + "pos": "noun", + "word_frequency": 14560 + }, + { + "word": "snowflake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a single crystal of snow", + "example_sentence_english": "Each snowflake has a unique pattern.", + "pos": "noun", + "word_frequency": 14561 + }, + { + "word": "sod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece of turf", + "example_sentence_english": "We laid new sod in the garden.", + "pos": "noun", + "word_frequency": 14562 + }, + { + "word": "stag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an adult male deer", + "example_sentence_english": "A magnificent stag stood at the edge of the forest.", + "pos": "noun", + "word_frequency": 14564 + }, + { + "word": "stomp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tread heavily", + "example_sentence_english": "He began to stomp his feet in frustration.", + "pos": "verb", + "word_frequency": 14565 + }, + { + "word": "stratum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a layer or series of layers of rock or earth", + "example_sentence_english": "Geologists studied the different strata of rock.", + "pos": "noun", + "word_frequency": 14566 + }, + { + "word": "submissive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ready to conform to the authority or will of others", + "example_sentence_english": "The dog was very submissive to its owner.", + "pos": "adjective", + "word_frequency": 14567 + }, + { + "word": "subsection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a division of a section", + "example_sentence_english": "Please refer to subsection 3.2 for more details.", + "pos": "noun", + "word_frequency": 14568 + }, + { + "word": "suede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of leather with a napped finish", + "example_sentence_english": "She bought a new pair of suede boots.", + "pos": "noun", + "word_frequency": 14569 + }, + { + "word": "summertime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the period of summer", + "example_sentence_english": "We love going to the beach in the summertime.", + "pos": "noun", + "word_frequency": 14570 + }, + { + "word": "swede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Sweden", + "example_sentence_english": "My friend is a Swede and loves meatballs.", + "pos": "noun", + "word_frequency": 14572 + }, + { + "word": "tabloid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a newspaper with a compact format", + "example_sentence_english": "The tabloid often publishes sensational stories.", + "pos": "noun", + "word_frequency": 14574 + }, + { + "word": "teal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dark greenish-blue color", + "example_sentence_english": "She painted her room a beautiful shade of teal.", + "pos": "noun", + "word_frequency": 14577 + }, + { + "word": "throwback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that is similar to an earlier type", + "example_sentence_english": "His style is a throwback to the 1980s.", + "pos": "noun", + "word_frequency": 14578 + }, + { + "word": "timid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showing a lack of courage or confidence", + "example_sentence_english": "The timid child hid behind her mother.", + "pos": "adjective", + "word_frequency": 14579 + }, + { + "word": "triathlon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an athletic contest consisting of three different events", + "example_sentence_english": "He trained for months to compete in the triathlon.", + "pos": "noun", + "word_frequency": 14580 + }, + { + "word": "trickle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flow in a small stream", + "example_sentence_english": "Water began to trickle from the leaky faucet.", + "pos": "verb", + "word_frequency": 14581 + }, + { + "word": "troupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of dancers, actors, or other performers", + "example_sentence_english": "The circus troupe performed amazing acrobatics.", + "pos": "noun", + "word_frequency": 14582 + }, + { + "word": "tweed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rough, woolen fabric", + "example_sentence_english": "He wore a classic tweed jacket.", + "pos": "noun", + "word_frequency": 14584 + }, + { + "word": "ultimatum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a final demand or statement of terms", + "example_sentence_english": "The company issued an ultimatum to the striking workers.", + "pos": "noun", + "word_frequency": 14585 + }, + { + "word": "uncut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not cut or trimmed", + "example_sentence_english": "The director's uncut version of the film was much longer.", + "pos": "adjective", + "word_frequency": 14586 + }, + { + "word": "uninterrupted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous; without interruption", + "example_sentence_english": "She enjoyed an hour of uninterrupted sleep.", + "pos": "adjective", + "word_frequency": 14587 + }, + { + "word": "webinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an online seminar", + "example_sentence_english": "I attended a very informative webinar on digital marketing.", + "pos": "noun", + "word_frequency": 14589 + }, + { + "word": "yelp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to utter a short, sharp cry", + "example_sentence_english": "The puppy let out a small yelp when it stepped on its paw.", + "pos": "verb", + "word_frequency": 14593 + }, + { + "word": "affirmation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a positive statement or declaration", + "example_sentence_english": "She sought affirmation from her peers.", + "pos": "noun", + "word_frequency": 14601 + }, + { + "word": "amass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gather or accumulate a large amount", + "example_sentence_english": "He began to amass a fortune.", + "pos": "verb", + "word_frequency": 14602 + }, + { + "word": "apiece", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for each one; to or for each person or thing", + "example_sentence_english": "The apples cost fifty cents apiece.", + "pos": "adverb", + "word_frequency": 14607 + }, + { + "word": "appall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to greatly dismay or horrify", + "example_sentence_english": "The news of the disaster appalled everyone.", + "pos": "verb", + "word_frequency": 14608 + }, + { + "word": "appreciative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing gratitude or pleasure", + "example_sentence_english": "She was very appreciative of his help.", + "pos": "adjective", + "word_frequency": 14609 + }, + { + "word": "bandage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strip of material used to bind up a wound or to protect an injured part of the body", + "example_sentence_english": "He wrapped a bandage around his sprained ankle.", + "pos": "noun", + "word_frequency": 14611 + }, + { + "word": "bittersweet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arousing pleasure and sadness simultaneously", + "example_sentence_english": "Saying goodbye was a bittersweet moment.", + "pos": "adjective", + "word_frequency": 14614 + }, + { + "word": "blight", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a disease that withers plants; something that spoils or damages things", + "example_sentence_english": "The potato blight destroyed the crops.", + "pos": "noun", + "word_frequency": 14615 + }, + { + "word": "braid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a length of hair or other material made up of three or more interlaced strands", + "example_sentence_english": "She wore her hair in a long braid.", + "pos": "noun", + "word_frequency": 14617 + }, + { + "word": "bulge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rounded swelling or protuberance", + "example_sentence_english": "There was a suspicious bulge in his pocket.", + "pos": "noun", + "word_frequency": 14619 + }, + { + "word": "cabaret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entertainment held in a nightclub or restaurant while the audience eats or drinks", + "example_sentence_english": "They enjoyed a lively cabaret show in Paris.", + "pos": "noun", + "word_frequency": 14621 + }, + { + "word": "caregiver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who provides care for someone who is sick, disabled, or old", + "example_sentence_english": "The caregiver helped the elderly woman with her daily tasks.", + "pos": "noun", + "word_frequency": 14623 + }, + { + "word": "catheter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a flexible tube inserted into the body to withdraw or introduce fluid", + "example_sentence_english": "The nurse inserted a catheter to drain the fluid.", + "pos": "noun", + "word_frequency": 14625 + }, + { + "word": "centimeter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of length, equal to one hundredth of a meter", + "example_sentence_english": "The ruler was marked in centimeters.", + "pos": "noun", + "word_frequency": 14626 + }, + { + "word": "chemically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by chemical means; in a chemical way", + "example_sentence_english": "The substance was chemically altered.", + "pos": "adverb", + "word_frequency": 14627 + }, + { + "word": "cinematography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the art of making motion pictures", + "example_sentence_english": "The film was praised for its stunning cinematography.", + "pos": "noun", + "word_frequency": 14628 + }, + { + "word": "coincidentally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that results from a coincidence", + "example_sentence_english": "Coincidentally, we both arrived at the same time.", + "pos": "adverb", + "word_frequency": 14629 + }, + { + "word": "commandant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an officer in charge of a particular force or institution", + "example_sentence_english": "The commandant addressed the new recruits.", + "pos": "noun", + "word_frequency": 14631 + }, + { + "word": "conducive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making a certain situation or outcome likely or possible", + "example_sentence_english": "A quiet environment is conducive to studying.", + "pos": "adjective", + "word_frequency": 14632 + }, + { + "word": "conscientious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wishing to do one's work or duty well and thoroughly", + "example_sentence_english": "She is a very conscientious student.", + "pos": "adjective", + "word_frequency": 14634 + }, + { + "word": "consensual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or involving consent", + "example_sentence_english": "The agreement was entirely consensual.", + "pos": "adjective", + "word_frequency": 14635 + }, + { + "word": "crystalline", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the structure and properties of a crystal; clear and transparent", + "example_sentence_english": "The water in the lake was crystalline.", + "pos": "adjective", + "word_frequency": 14637 + }, + { + "word": "cyanide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a highly poisonous chemical compound", + "example_sentence_english": "Cyanide is a deadly poison.", + "pos": "noun", + "word_frequency": 14638 + }, + { + "word": "deceit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deception, trickery", + "example_sentence_english": "His actions were full of deceit.", + "pos": "noun", + "word_frequency": 14640 + }, + { + "word": "derogatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insulting, disparaging", + "example_sentence_english": "She made a derogatory remark about his appearance.", + "pos": "adjective", + "word_frequency": 14641 + }, + { + "word": "eastward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards the east", + "example_sentence_english": "The ship sailed eastward.", + "pos": "adverb", + "word_frequency": 14647 + }, + { + "word": "embroidery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decorative needlework", + "example_sentence_english": "She showed off her beautiful embroidery.", + "pos": "noun", + "word_frequency": 14650 + }, + { + "word": "emo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a subgenre of rock music or a subculture", + "example_sentence_english": "He used to listen to a lot of emo music in high school.", + "pos": "noun", + "word_frequency": 14651 + }, + { + "word": "enigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mystery, a puzzle", + "example_sentence_english": "The disappearance of the plane remains an enigma.", + "pos": "noun", + "word_frequency": 14652 + }, + { + "word": "estrange", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to alienate, to separate", + "example_sentence_english": "The argument caused him to estrange himself from his family.", + "pos": "verb", + "word_frequency": 14654 + }, + { + "word": "euphoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of intense excitement and happiness", + "example_sentence_english": "She felt a sense of euphoria after winning the competition.", + "pos": "noun", + "word_frequency": 14655 + }, + { + "word": "fahrenheit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a scale of temperature", + "example_sentence_english": "The temperature reached 90 degrees Fahrenheit.", + "pos": "noun", + "word_frequency": 14657 + }, + { + "word": "firewall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system designed to prevent unauthorized access to a network", + "example_sentence_english": "Make sure your computer's firewall is active.", + "pos": "noun", + "word_frequency": 14658 + }, + { + "word": "fluorescence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the emission of light by a substance that has absorbed light or other electromagnetic radiation", + "example_sentence_english": "The mineral exhibited a strong fluorescence under UV light.", + "pos": "noun", + "word_frequency": 14659 + }, + { + "word": "forte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong point, something one excels at", + "example_sentence_english": "Public speaking is not my forte.", + "pos": "noun", + "word_frequency": 14660 + }, + { + "word": "gaelic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to the Goidelic languages or their speakers", + "example_sentence_english": "She is learning Scottish Gaelic.", + "pos": "adjective", + "word_frequency": 14661 + }, + { + "word": "gibbon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, slender, long-armed ape", + "example_sentence_english": "The gibbon swung gracefully through the trees.", + "pos": "noun", + "word_frequency": 14664 + }, + { + "word": "grassy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with grass", + "example_sentence_english": "We sat down on the grassy hill.", + "pos": "adjective", + "word_frequency": 14671 + }, + { + "word": "hanger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shaped piece of wood, plastic, or wire with a hook at the top, used for hanging clothes", + "example_sentence_english": "Please put your coat on a hanger.", + "pos": "noun", + "word_frequency": 14674 + }, + { + "word": "hawking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selling goods, typically by shouting them in the street", + "example_sentence_english": "Street vendors were hawking their wares.", + "pos": "verb", + "word_frequency": 14675 + }, + { + "word": "hem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the edge of a piece of cloth or clothing that has been turned under and sewn", + "example_sentence_english": "The dress needed a new hem.", + "pos": "noun", + "word_frequency": 14676 + }, + { + "word": "hitman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is paid to kill someone", + "example_sentence_english": "The police arrested the suspected hitman.", + "pos": "noun", + "word_frequency": 14677 + }, + { + "word": "housekeeping", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the management of a household or hotel", + "example_sentence_english": "She is responsible for all the housekeeping duties.", + "pos": "noun", + "word_frequency": 14679 + }, + { + "word": "infiltration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of secretly entering a place or organization", + "example_sentence_english": "The police suspected infiltration by criminal elements into the organization.", + "pos": "noun", + "word_frequency": 14681 + }, + { + "word": "insidious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proceeding in a gradual, subtle way, but with harmful effects", + "example_sentence_english": "The insidious disease spread slowly, showing few symptoms at first.", + "pos": "adjective", + "word_frequency": 14682 + }, + { + "word": "intimately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a private and personal way; closely", + "example_sentence_english": "They knew each other intimately from their childhood.", + "pos": "adverb", + "word_frequency": 14683 + }, + { + "word": "jargon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "special words or expressions used by a particular profession or group and difficult for others to understand", + "example_sentence_english": "The legal document was full of technical jargon that was hard to understand.", + "pos": "noun", + "word_frequency": 14686 + }, + { + "word": "kayak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, narrow boat, pointed at both ends, propelled by a double-bladed paddle", + "example_sentence_english": "They rented a kayak to explore the lake.", + "pos": "noun", + "word_frequency": 14688 + }, + { + "word": "kilogram", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a unit of mass equal to 1,000 grams", + "example_sentence_english": "The package weighed five kilograms.", + "pos": "noun", + "word_frequency": 14690 + }, + { + "word": "lakh", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a unit in the Indian numbering system equal to one hundred thousand (100,000)", + "example_sentence_english": "The project cost several lakh rupees.", + "pos": "noun", + "word_frequency": 14692 + }, + { + "word": "leakage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the accidental escape of liquid, gas, or information", + "example_sentence_english": "There was a significant leakage of data from the company's servers.", + "pos": "noun", + "word_frequency": 14693 + }, + { + "word": "logistical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the organization and management of a complex operation", + "example_sentence_english": "The team faced many logistical challenges in organizing the event.", + "pos": "adjective", + "word_frequency": 14695 + }, + { + "word": "loophole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ambiguity or inadequacy in a system, law, or contract which can be used to evade or circumvent it", + "example_sentence_english": "He found a legal loophole to avoid paying the tax.", + "pos": "noun", + "word_frequency": 14696 + }, + { + "word": "luminous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emitting or reflecting light; shining", + "example_sentence_english": "The moon was a luminous orb in the night sky.", + "pos": "adjective", + "word_frequency": 14697 + }, + { + "word": "malnutrition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of proper nutrition, caused by not having enough to eat, not eating enough of the right things, or being unable to use the food that one does eat", + "example_sentence_english": "Many children in developing countries suffer from malnutrition.", + "pos": "noun", + "word_frequency": 14699 + }, + { + "word": "marlin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large predatory marine fish with a long, pointed snout", + "example_sentence_english": "The fisherman caught a huge marlin after a long struggle.", + "pos": "noun", + "word_frequency": 14701 + }, + { + "word": "mathematician", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an expert in or student of mathematics", + "example_sentence_english": "She decided to become a mathematician because she loved solving complex problems.", + "pos": "noun", + "word_frequency": 14703 + }, + { + "word": "mayonnaise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thick, creamy dressing consisting of egg yolks, oil, vinegar, and seasonings", + "example_sentence_english": "Would you like some mayonnaise with your fries?", + "pos": "noun", + "word_frequency": 14704 + }, + { + "word": "media", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the main means of mass communication (broadcasting, publishing, and the Internet) regarded collectively", + "example_sentence_english": "The news media reported extensively on the election results.", + "pos": "noun", + "word_frequency": 14708 + }, + { + "word": "melodic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of, relating to, or having a melody; tuneful", + "example_sentence_english": "The singer had a beautiful, melodic voice.", + "pos": "adjective", + "word_frequency": 14710 + }, + { + "word": "meticulous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing great attention to detail; very careful and precise", + "example_sentence_english": "The artist was meticulous in her brushstrokes, ensuring every detail was perfect.", + "pos": "adjective", + "word_frequency": 14712 + }, + { + "word": "modesty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being unassuming or moderate in the estimation of one's abilities or achievements", + "example_sentence_english": "Despite her success, she always maintained a sense of modesty.", + "pos": "noun", + "word_frequency": 14714 + }, + { + "word": "moustache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a strip of hair left to grow above the upper lip", + "example_sentence_english": "He decided to grow a moustache for Movember.", + "pos": "noun", + "word_frequency": 14716 + }, + { + "word": "netting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material made of net", + "example_sentence_english": "The fishing boat had large rolls of netting on its deck.", + "pos": "noun", + "word_frequency": 14719 + }, + { + "word": "nocturnal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Active at night", + "example_sentence_english": "Bats are nocturnal animals.", + "pos": "adjective", + "word_frequency": 14723 + }, + { + "word": "nozzle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Spout", + "example_sentence_english": "The garden hose has an adjustable nozzle.", + "pos": "noun", + "word_frequency": 14724 + }, + { + "word": "offside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Illegal position in sports", + "example_sentence_english": "The player was called offside.", + "pos": "noun", + "word_frequency": 14725 + }, + { + "word": "orgy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Wild party", + "example_sentence_english": "The ancient festival was said to involve an orgy.", + "pos": "noun", + "word_frequency": 14726 + }, + { + "word": "overlay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A covering layer", + "example_sentence_english": "The designer added a transparent overlay to the image.", + "pos": "noun", + "word_frequency": 14728 + }, + { + "word": "paleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ancient", + "example_sentence_english": "She's interested in the paleo diet.", + "pos": "adjective", + "word_frequency": 14729 + }, + { + "word": "paralympic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to the Paralympics", + "example_sentence_english": "He dreams of competing in the Paralympic Games.", + "pos": "adjective", + "word_frequency": 14730 + }, + { + "word": "paternity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Fatherhood", + "example_sentence_english": "He took paternity leave to care for his newborn.", + "pos": "noun", + "word_frequency": 14731 + }, + { + "word": "patriarchal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Male-dominated", + "example_sentence_english": "Many ancient societies were patriarchal.", + "pos": "adjective", + "word_frequency": 14732 + }, + { + "word": "pitiful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Deserving pity", + "example_sentence_english": "The abandoned puppy looked pitiful.", + "pos": "adjective", + "word_frequency": 14733 + }, + { + "word": "plethora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Abundance", + "example_sentence_english": "The internet offers a plethora of information.", + "pos": "noun", + "word_frequency": 14734 + }, + { + "word": "plutonium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A radioactive element", + "example_sentence_english": "Plutonium is a highly radioactive element.", + "pos": "noun", + "word_frequency": 14735 + }, + { + "word": "prerequisite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Requirement", + "example_sentence_english": "Good grades are a prerequisite for university admission.", + "pos": "noun", + "word_frequency": 14737 + }, + { + "word": "psychosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Severe mental disorder", + "example_sentence_english": "Symptoms of psychosis include hallucinations and delusions.", + "pos": "noun", + "word_frequency": 14738 + }, + { + "word": "quantify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Measure", + "example_sentence_english": "It's difficult to quantify happiness.", + "pos": "verb", + "word_frequency": 14739 + }, + { + "word": "rabies", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A viral disease", + "example_sentence_english": "Vaccination can prevent rabies in animals.", + "pos": "noun", + "word_frequency": 14740 + }, + { + "word": "ration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Fixed amount", + "example_sentence_english": "During the drought, water was distributed in rations.", + "pos": "noun", + "word_frequency": 14741 + }, + { + "word": "recon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Reconnaissance", + "example_sentence_english": "The soldiers went on a recon mission.", + "pos": "noun", + "word_frequency": 14743 + }, + { + "word": "recount", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Narrate", + "example_sentence_english": "He began to recount the events of the day.", + "pos": "verb", + "word_frequency": 14744 + }, + { + "word": "rectangle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A four-sided shape", + "example_sentence_english": "A book usually has the shape of a rectangle.", + "pos": "noun", + "word_frequency": 14745 + }, + { + "word": "recurrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Happening repeatedly", + "example_sentence_english": "She suffers from recurrent nightmares.", + "pos": "adjective", + "word_frequency": 14746 + }, + { + "word": "refill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Fill again", + "example_sentence_english": "Could you please refill my coffee cup?", + "pos": "verb", + "word_frequency": 14747 + }, + { + "word": "religiously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Regularly and conscientiously", + "example_sentence_english": "He religiously follows his morning routine.", + "pos": "adverb", + "word_frequency": 14748 + }, + { + "word": "relive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Experience again", + "example_sentence_english": "She tried to relive her glory days.", + "pos": "verb", + "word_frequency": 14749 + }, + { + "word": "requisite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Necessary", + "example_sentence_english": "He has the requisite experience for the job.", + "pos": "adjective", + "word_frequency": 14750 + }, + { + "word": "responsibly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a responsible manner", + "example_sentence_english": "Please drive responsibly.", + "pos": "adverb", + "word_frequency": 14751 + }, + { + "word": "resurrect", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Bring back to life", + "example_sentence_english": "They hope to resurrect the ancient language.", + "pos": "verb", + "word_frequency": 14752 + }, + { + "word": "rewind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Go back in time/tape", + "example_sentence_english": "Please rewind the video to the beginning.", + "pos": "verb", + "word_frequency": 14754 + }, + { + "word": "rightfully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "By right", + "example_sentence_english": "The victory rightfully belongs to our team.", + "pos": "adverb", + "word_frequency": 14755 + }, + { + "word": "sadden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make sad", + "example_sentence_english": "It would sadden me to see you leave.", + "pos": "verb", + "word_frequency": 14761 + }, + { + "word": "seclude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to isolate", + "example_sentence_english": "He decided to seclude himself from society.", + "pos": "verb", + "word_frequency": 14762 + }, + { + "word": "seduce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to tempt", + "example_sentence_english": "He tried to seduce her with promises of wealth.", + "pos": "verb", + "word_frequency": 14763 + }, + { + "word": "shadowy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark, mysterious", + "example_sentence_english": "A shadowy figure emerged from the alley.", + "pos": "adjective", + "word_frequency": 14765 + }, + { + "word": "shun", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to avoid", + "example_sentence_english": "After the scandal, he was shunned by his former friends.", + "pos": "verb", + "word_frequency": 14766 + }, + { + "word": "sidekick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assistant, companion", + "example_sentence_english": "Batman always had his trusty sidekick, Robin.", + "pos": "noun", + "word_frequency": 14767 + }, + { + "word": "skew", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distort, to bias", + "example_sentence_english": "The results were skewed by the small sample size.", + "pos": "verb", + "word_frequency": 14768 + }, + { + "word": "spectre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ghost, haunting presence", + "example_sentence_english": "The spectre of unemployment loomed over the country.", + "pos": "noun", + "word_frequency": 14771 + }, + { + "word": "stallion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "male horse", + "example_sentence_english": "The powerful stallion galloped across the field.", + "pos": "noun", + "word_frequency": 14772 + }, + { + "word": "stepfather", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mother's husband (not biological father)", + "example_sentence_english": "Her stepfather was very kind to her.", + "pos": "noun", + "word_frequency": 14773 + }, + { + "word": "strangle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to choke, to suffocate", + "example_sentence_english": "He tried to strangle the attacker.", + "pos": "verb", + "word_frequency": 14774 + }, + { + "word": "synthesize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to combine, to create", + "example_sentence_english": "Scientists can synthesize new materials in the lab.", + "pos": "verb", + "word_frequency": 14777 + }, + { + "word": "tapestry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "woven wall hanging", + "example_sentence_english": "A beautiful tapestry hung on the castle wall.", + "pos": "noun", + "word_frequency": 14779 + }, + { + "word": "tenderness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gentleness, sensitivity", + "example_sentence_english": "He showed great tenderness towards the injured animal.", + "pos": "noun", + "word_frequency": 14780 + }, + { + "word": "terrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type of dog", + "example_sentence_english": "My neighbor has a small terrier.", + "pos": "noun", + "word_frequency": 14781 + }, + { + "word": "tester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one who tests", + "example_sentence_english": "The software tester found a bug.", + "pos": "noun", + "word_frequency": 14782 + }, + { + "word": "thistle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prickly plant", + "example_sentence_english": "The field was full of thistles.", + "pos": "noun", + "word_frequency": 14783 + }, + { + "word": "thumbnail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small image, thumb's nail", + "example_sentence_english": "Click on the thumbnail to see the full image.", + "pos": "noun", + "word_frequency": 14784 + }, + { + "word": "tickle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lightly touch to cause sensation", + "example_sentence_english": "The feather tickled her nose.", + "pos": "verb", + "word_frequency": 14785 + }, + { + "word": "tubular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tube-shaped", + "example_sentence_english": "The plant had long, tubular leaves.", + "pos": "adjective", + "word_frequency": 14789 + }, + { + "word": "underside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bottom surface", + "example_sentence_english": "Check the underside of the car for rust.", + "pos": "noun", + "word_frequency": 14791 + }, + { + "word": "uneducated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking education", + "example_sentence_english": "He was uneducated but very wise.", + "pos": "adjective", + "word_frequency": 14792 + }, + { + "word": "unload", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove cargo", + "example_sentence_english": "They helped to unload the groceries from the car.", + "pos": "verb", + "word_frequency": 14793 + }, + { + "word": "unmarked", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not marked, unidentified", + "example_sentence_english": "An unmarked police car pulled up.", + "pos": "adjective", + "word_frequency": 14794 + }, + { + "word": "unreleased", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not yet released", + "example_sentence_english": "The band played an unreleased song.", + "pos": "adjective", + "word_frequency": 14795 + }, + { + "word": "upkeep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance", + "example_sentence_english": "The upkeep of the old house was expensive.", + "pos": "noun", + "word_frequency": 14796 + }, + { + "word": "urn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vase for ashes", + "example_sentence_english": "His ashes were kept in a beautiful urn.", + "pos": "noun", + "word_frequency": 14797 + }, + { + "word": "vigil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of keeping awake during the time usually spent asleep, especially to keep watch or pray.", + "example_sentence_english": "The family kept a vigil by his bedside all night.", + "pos": "noun", + "word_frequency": 14800 + }, + { + "word": "volley", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hit or kick (the ball) before it touches the ground.", + "example_sentence_english": "The player managed to volley the ball into the net.", + "pos": "verb", + "word_frequency": 14801 + }, + { + "word": "warmly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a way that shows enthusiasm or affection.", + "example_sentence_english": "She greeted him warmly.", + "pos": "adverb", + "word_frequency": 14803 + }, + { + "word": "wavy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a series of curves.", + "example_sentence_english": "She has beautiful wavy hair.", + "pos": "adjective", + "word_frequency": 14805 + }, + { + "word": "whirlwind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very rapid course of events.", + "example_sentence_english": "The trip was a whirlwind of activities.", + "pos": "noun", + "word_frequency": 14809 + }, + { + "word": "winning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of being victorious.", + "example_sentence_english": "The team celebrated their winning.", + "pos": "noun", + "word_frequency": 14812 + }, + { + "word": "yearn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have an intense feeling of longing for something.", + "example_sentence_english": "She yearned for her homeland.", + "pos": "verb", + "word_frequency": 14815 + }, + { + "word": "annum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a year.", + "example_sentence_english": "The salary is 50,000 dollars per annum.", + "pos": "noun", + "word_frequency": 14822 + }, + { + "word": "aristocratic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belonging to or typical of the aristocracy.", + "example_sentence_english": "He had an aristocratic bearing.", + "pos": "adjective", + "word_frequency": 14823 + }, + { + "word": "aroma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a distinctive, typically pleasant smell.", + "example_sentence_english": "The aroma of freshly baked bread filled the kitchen.", + "pos": "noun", + "word_frequency": 14824 + }, + { + "word": "arsenic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical element that is a poisonous metalloid.", + "example_sentence_english": "Arsenic is a highly toxic substance.", + "pos": "noun", + "word_frequency": 14825 + }, + { + "word": "backer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who gives financial or other support to a person, organization, or cause.", + "example_sentence_english": "The project found a generous backer.", + "pos": "noun", + "word_frequency": 14828 + }, + { + "word": "beggar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person, typically a homeless one, who lives by asking for money or food.", + "example_sentence_english": "A beggar asked for spare change outside the station.", + "pos": "noun", + "word_frequency": 14831 + }, + { + "word": "bestselling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a product) that has sold in very large numbers.", + "example_sentence_english": "Her latest novel is a bestselling book.", + "pos": "adjective", + "word_frequency": 14832 + }, + { + "word": "biologically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a biological way; from a biological point of view.", + "example_sentence_english": "Biologically, humans are very similar to other primates.", + "pos": "adverb", + "word_frequency": 14833 + }, + { + "word": "budge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or cause to make the slightest movement.", + "example_sentence_english": "The heavy box wouldn't budge.", + "pos": "verb", + "word_frequency": 14834 + }, + { + "word": "cheater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who acts dishonestly in order to gain an advantage.", + "example_sentence_english": "He was called a cheater after being caught copying during the exam.", + "pos": "noun", + "word_frequency": 14839 + }, + { + "word": "clout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influence or power", + "example_sentence_english": "The company gained significant clout in the industry.", + "pos": "noun", + "word_frequency": 14841 + }, + { + "word": "comical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funny or amusing", + "example_sentence_english": "The clown's antics were truly comical.", + "pos": "adjective", + "word_frequency": 14843 + }, + { + "word": "commemorative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving to commemorate", + "example_sentence_english": "They issued a commemorative stamp for the anniversary.", + "pos": "adjective", + "word_frequency": 14844 + }, + { + "word": "confederacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a league or alliance", + "example_sentence_english": "The small states formed a confederacy for mutual defense.", + "pos": "noun", + "word_frequency": 14845 + }, + { + "word": "converge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come together from different directions", + "example_sentence_english": "All roads converge at the city center.", + "pos": "verb", + "word_frequency": 14846 + }, + { + "word": "corny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trite, sentimental, or old-fashioned", + "example_sentence_english": "His jokes were a bit corny, but they made us laugh.", + "pos": "adjective", + "word_frequency": 14848 + }, + { + "word": "countryman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from one's own country", + "example_sentence_english": "He was proud to be a countryman of such a great artist.", + "pos": "noun", + "word_frequency": 14849 + }, + { + "word": "crucible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a severe test or trial", + "example_sentence_english": "The new policy was put to the crucible of public opinion.", + "pos": "noun", + "word_frequency": 14850 + }, + { + "word": "cryptic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysterious or obscure in meaning", + "example_sentence_english": "He left a cryptic message on the answering machine.", + "pos": "adjective", + "word_frequency": 14851 + }, + { + "word": "deletion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of deleting", + "example_sentence_english": "The accidental deletion of the file caused problems.", + "pos": "noun", + "word_frequency": 14854 + }, + { + "word": "diligent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing care and conscientiousness in one's work or duties", + "example_sentence_english": "She is a diligent student who always completes her assignments.", + "pos": "adjective", + "word_frequency": 14855 + }, + { + "word": "discern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perceive or recognize something", + "example_sentence_english": "It was difficult to discern the truth from the rumors.", + "pos": "verb", + "word_frequency": 14856 + }, + { + "word": "domino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small rectangular block used in a game", + "example_sentence_english": "We played a game of dominoes after dinner.", + "pos": "noun", + "word_frequency": 14857 + }, + { + "word": "downgrade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reduce to a lower rank or level", + "example_sentence_english": "The company decided to downgrade the software to an older version.", + "pos": "verb", + "word_frequency": 14859 + }, + { + "word": "dreamy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "like a dream; vague or ethereal", + "example_sentence_english": "She had a dreamy look in her eyes as she gazed at the stars.", + "pos": "adjective", + "word_frequency": 14860 + }, + { + "word": "drench", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wet thoroughly; soak", + "example_sentence_english": "The sudden rainstorm drenched us completely.", + "pos": "verb", + "word_frequency": 14861 + }, + { + "word": "dung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal excrement; manure", + "example_sentence_english": "Farmers use animal dung to fertilize their fields.", + "pos": "noun", + "word_frequency": 14864 + }, + { + "word": "earner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who earns money", + "example_sentence_english": "He is the sole earner in his family.", + "pos": "noun", + "word_frequency": 14866 + }, + { + "word": "eel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a snake-like fish", + "example_sentence_english": "The fisherman caught a slippery eel in his net.", + "pos": "noun", + "word_frequency": 14867 + }, + { + "word": "embryonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in an early stage of development", + "example_sentence_english": "The project is still in its embryonic stage.", + "pos": "adj", + "word_frequency": 14869 + }, + { + "word": "emoji", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small digital image or icon used to express an idea or emotion", + "example_sentence_english": "She sent a smiling emoji to show her happiness.", + "pos": "noun", + "word_frequency": 14870 + }, + { + "word": "fanatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filled with excessive and single-minded zeal", + "example_sentence_english": "He was a fanatic supporter of the local football team.", + "pos": "adj", + "word_frequency": 14872 + }, + { + "word": "fav", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short for favorite", + "example_sentence_english": "What's your fav song right now?", + "pos": "noun", + "word_frequency": 14873 + }, + { + "word": "filmmaking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making films", + "example_sentence_english": "She is studying filmmaking at university.", + "pos": "noun", + "word_frequency": 14874 + }, + { + "word": "firmware", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "permanent software programmed into a read-only memory", + "example_sentence_english": "You might need to update the firmware on your router.", + "pos": "noun", + "word_frequency": 14875 + }, + { + "word": "fragmentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process or state of breaking into small or separate parts", + "example_sentence_english": "Disk fragmentation can slow down your computer.", + "pos": "noun", + "word_frequency": 14876 + }, + { + "word": "girly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic of or appropriate to a girl", + "example_sentence_english": "She loves wearing girly dresses with ruffles and bows.", + "pos": "adj", + "word_frequency": 14879 + }, + { + "word": "glam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glamorous, attractive", + "example_sentence_english": "She looked very glam in her new dress.", + "pos": "adj", + "word_frequency": 14880 + }, + { + "word": "glorify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise, worship", + "example_sentence_english": "The song tends to glorify violence.", + "pos": "verb", + "word_frequency": 14881 + }, + { + "word": "goth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a subculture", + "example_sentence_english": "She dressed like a goth, all in black.", + "pos": "noun", + "word_frequency": 14882 + }, + { + "word": "gubernatorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a governor", + "example_sentence_english": "The gubernatorial election will be held next month.", + "pos": "adj", + "word_frequency": 14883 + }, + { + "word": "hawthorn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thorny shrub or tree", + "example_sentence_english": "The hawthorn hedge was full of red berries.", + "pos": "noun", + "word_frequency": 14885 + }, + { + "word": "herr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mr. (German)", + "example_sentence_english": "Herr Schmidt will be joining us for dinner.", + "pos": "noun", + "word_frequency": 14888 + }, + { + "word": "hoard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hidden store or supply", + "example_sentence_english": "They discovered a hoard of gold coins in the attic.", + "pos": "noun", + "word_frequency": 14891 + }, + { + "word": "horde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large group of people", + "example_sentence_english": "A horde of tourists descended on the small town.", + "pos": "noun", + "word_frequency": 14892 + }, + { + "word": "imp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, mischievous devil or sprite", + "example_sentence_english": "The little boy was a mischievous imp, always playing tricks.", + "pos": "noun", + "word_frequency": 14894 + }, + { + "word": "ingenuity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being clever, original, and inventive", + "example_sentence_english": "Her ingenuity allowed her to solve the complex problem.", + "pos": "noun", + "word_frequency": 14895 + }, + { + "word": "inorganic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not consisting of or derived from living matter", + "example_sentence_english": "Water is an inorganic compound.", + "pos": "adj", + "word_frequency": 14896 + }, + { + "word": "intestine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the lower part of the digestive tract", + "example_sentence_english": "Food passes from the stomach into the small intestine.", + "pos": "noun", + "word_frequency": 14897 + }, + { + "word": "itinerary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a planned route or journey", + "example_sentence_english": "We received our travel itinerary for the trip to Italy.", + "pos": "noun", + "word_frequency": 14898 + }, + { + "word": "juggle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keep several objects in the air; manage multiple tasks", + "example_sentence_english": "She has to juggle work, family, and her studies.", + "pos": "verb", + "word_frequency": 14899 + }, + { + "word": "lacy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made of or resembling lace", + "example_sentence_english": "She wore a beautiful lacy dress.", + "pos": "adj", + "word_frequency": 14902 + }, + { + "word": "lair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wild animal's resting place; a secret hideout", + "example_sentence_english": "The bear retreated to its lair for the winter.", + "pos": "noun", + "word_frequency": 14903 + }, + { + "word": "lifeless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without life; dull or uninteresting", + "example_sentence_english": "The room felt cold and lifeless without any decorations.", + "pos": "adj", + "word_frequency": 14905 + }, + { + "word": "lifeline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a means of survival or support", + "example_sentence_english": "The emergency aid was a lifeline for the struggling community.", + "pos": "noun", + "word_frequency": 14906 + }, + { + "word": "lobbyist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who tries to influence legislation", + "example_sentence_english": "A powerful lobbyist was trying to influence the new law.", + "pos": "noun", + "word_frequency": 14907 + }, + { + "word": "lotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game of chance in which players select numbers", + "example_sentence_english": "She won a small prize in the lotto.", + "pos": "noun", + "word_frequency": 14908 + }, + { + "word": "lovable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspiring love or affection", + "example_sentence_english": "The puppy was so lovable, everyone wanted to pet it.", + "pos": "adj", + "word_frequency": 14909 + }, + { + "word": "mam", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mother (informal); madam (Irish/Scottish)", + "example_sentence_english": "\"Can I help you, mam?\" the shop assistant asked.", + "pos": "noun", + "word_frequency": 14915 + }, + { + "word": "moot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debatable; irrelevant", + "example_sentence_english": "The point became moot after the new evidence was presented.", + "pos": "adj", + "word_frequency": 14921 + }, + { + "word": "nebula", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cloud of gas and dust in space", + "example_sentence_english": "The Orion Nebula is a well-known star-forming region.", + "pos": "noun", + "word_frequency": 14925 + }, + { + "word": "neurology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "study of the nervous system", + "example_sentence_english": "She decided to specialize in neurology after medical school.", + "pos": "noun", + "word_frequency": 14926 + }, + { + "word": "newt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small amphibian", + "example_sentence_english": "A newt can regenerate lost limbs.", + "pos": "noun", + "word_frequency": 14927 + }, + { + "word": "nitro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nitroglycerin or nitrous oxide (informal)", + "example_sentence_english": "The car had a nitro boost for extra speed.", + "pos": "noun", + "word_frequency": 14930 + }, + { + "word": "norse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to ancient Scandinavia", + "example_sentence_english": "Many English words have Old Norse origins.", + "pos": "adj", + "word_frequency": 14932 + }, + { + "word": "oj", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orange juice (informal)", + "example_sentence_english": "Would you like some OJ with your breakfast?", + "pos": "noun", + "word_frequency": 14935 + }, + { + "word": "ost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "original soundtrack", + "example_sentence_english": "The movie's OST was nominated for an award.", + "pos": "noun", + "word_frequency": 14936 + }, + { + "word": "overland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "across land", + "example_sentence_english": "They traveled overland from Europe to Asia.", + "pos": "adj", + "word_frequency": 14937 + }, + { + "word": "overshadow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make seem less important", + "example_sentence_english": "His earlier achievements were overshadowed by his later failures.", + "pos": "verb", + "word_frequency": 14938 + }, + { + "word": "pantry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small room for food storage", + "example_sentence_english": "She keeps all her dry goods in the pantry.", + "pos": "noun", + "word_frequency": 14940 + }, + { + "word": "parchment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material made from animal skin, used for writing", + "example_sentence_english": "Ancient manuscripts were often written on parchment.", + "pos": "noun", + "word_frequency": 14942 + }, + { + "word": "partake", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to take part in; to eat or drink", + "example_sentence_english": "Guests were invited to partake in the feast.", + "pos": "verb", + "word_frequency": 14943 + }, + { + "word": "peso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currency unit in several Latin American countries", + "example_sentence_english": "The price of the souvenir was 500 pesos.", + "pos": "noun", + "word_frequency": 14944 + }, + { + "word": "pj", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pajamas (informal)", + "example_sentence_english": "He changed into his PJs before bed.", + "pos": "noun", + "word_frequency": 14946 + }, + { + "word": "plagiarism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act of copying someone else's work without credit", + "example_sentence_english": "The student was accused of plagiarism.", + "pos": "noun", + "word_frequency": 14947 + }, + { + "word": "pollard", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tree with its top branches cut back", + "example_sentence_english": "The old oak tree had been pollarded many times.", + "pos": "noun", + "word_frequency": 14949 + }, + { + "word": "pollock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "type of edible marine fish", + "example_sentence_english": "Fish and chips are often made with cod or pollock.", + "pos": "noun", + "word_frequency": 14950 + }, + { + "word": "prefix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "letters added to the beginning of a word", + "example_sentence_english": "The word 'unhappy' has the prefix 'un-'.", + "pos": "noun", + "word_frequency": 14951 + }, + { + "word": "proctor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "person who supervises an exam", + "example_sentence_english": "The proctor walked around the room during the test.", + "pos": "noun", + "word_frequency": 14952 + }, + { + "word": "prologue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introductory part of a book or play", + "example_sentence_english": "The novel began with a short prologue explaining the backstory.", + "pos": "noun", + "word_frequency": 14953 + }, + { + "word": "proto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "original or first form", + "example_sentence_english": "Scientists are studying the proto-star to understand its formation.", + "pos": "noun", + "word_frequency": 14954 + }, + { + "word": "pueblo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Native American village or people", + "example_sentence_english": "The ancient pueblo ruins are a popular tourist attraction.", + "pos": "noun", + "word_frequency": 14956 + }, + { + "word": "pulpit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raised platform in a church for preaching", + "example_sentence_english": "The minister delivered his sermon from the pulpit.", + "pos": "noun", + "word_frequency": 14957 + }, + { + "word": "puncture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small hole made by a sharp object", + "example_sentence_english": "He got a puncture in his bicycle tire.", + "pos": "noun", + "word_frequency": 14958 + }, + { + "word": "qa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quality assurance", + "example_sentence_english": "The QA team is responsible for testing the software.", + "pos": "noun", + "word_frequency": 14959 + }, + { + "word": "redhead", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person with red hair", + "example_sentence_english": "My aunt is a natural redhead.", + "pos": "noun", + "word_frequency": 14960 + }, + { + "word": "relational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerning the relationship between things", + "example_sentence_english": "The database uses a relational model.", + "pos": "adj", + "word_frequency": 14961 + }, + { + "word": "remaster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a new master recording of (audio or video)", + "example_sentence_english": "They decided to remaster the classic album.", + "pos": "verb", + "word_frequency": 14962 + }, + { + "word": "renegade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who deserts a cause or group", + "example_sentence_english": "He was considered a renegade by his former colleagues.", + "pos": "noun", + "word_frequency": 14963 + }, + { + "word": "ripper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that rips; something excellent (informal)", + "example_sentence_english": "That movie was an absolute ripper!", + "pos": "noun", + "word_frequency": 14964 + }, + { + "word": "roofing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material used for roofs", + "example_sentence_english": "We need to repair the roofing before winter.", + "pos": "noun", + "word_frequency": 14966 + }, + { + "word": "rotational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to rotation", + "example_sentence_english": "The machine has a high rotational speed.", + "pos": "adj", + "word_frequency": 14967 + }, + { + "word": "sash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long strip of cloth worn over the shoulder or around the waist", + "example_sentence_english": "She wore a silk sash around her dress.", + "pos": "noun", + "word_frequency": 14971 + }, + { + "word": "seductive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tempting and attractive", + "example_sentence_english": "The perfume had a seductive scent.", + "pos": "adj", + "word_frequency": 14973 + }, + { + "word": "segmentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the division of something into smaller parts", + "example_sentence_english": "Market segmentation helps companies target specific customer groups.", + "pos": "noun", + "word_frequency": 14975 + }, + { + "word": "shaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a container used for shaking", + "example_sentence_english": "He used a cocktail shaker to mix the drinks.", + "pos": "noun", + "word_frequency": 14977 + }, + { + "word": "sissy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a timid or cowardly person (informal, sometimes derogatory)", + "example_sentence_english": "Don't be such a sissy, just try it!", + "pos": "noun", + "word_frequency": 14978 + }, + { + "word": "sizeable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairly large", + "example_sentence_english": "They made a sizeable donation to the charity.", + "pos": "adj", + "word_frequency": 14979 + }, + { + "word": "sled", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a vehicle for traveling over snow or ice", + "example_sentence_english": "The children rode their sled down the snowy hill.", + "pos": "noun", + "word_frequency": 14980 + }, + { + "word": "sludge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thick, soft, wet mud or a similar viscous mixture", + "example_sentence_english": "The riverbed was covered in thick sludge.", + "pos": "noun", + "word_frequency": 14982 + }, + { + "word": "speedway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a track for motor racing", + "example_sentence_english": "The race took place at the local speedway.", + "pos": "noun", + "word_frequency": 14983 + }, + { + "word": "sprout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a new growth from a plant", + "example_sentence_english": "The seeds began to sprout after a few days.", + "pos": "noun", + "word_frequency": 14985 + }, + { + "word": "staffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a staff", + "example_sentence_english": "A White House staffer briefed the press.", + "pos": "noun", + "word_frequency": 14986 + }, + { + "word": "stretcher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for carrying an injured person", + "example_sentence_english": "The paramedics carried the injured man on a stretcher.", + "pos": "noun", + "word_frequency": 14988 + }, + { + "word": "taker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who takes something", + "example_sentence_english": "Are there any takers for the last slice of pizza?", + "pos": "noun", + "word_frequency": 14989 + }, + { + "word": "transplantation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of transplanting (e.g., an organ or plant)", + "example_sentence_english": "Organ transplantation has saved many lives.", + "pos": "noun", + "word_frequency": 14992 + }, + { + "word": "triad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of three", + "example_sentence_english": "The company is run by a triad of executives.", + "pos": "noun", + "word_frequency": 14993 + }, + { + "word": "unfounded", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no basis in fact", + "example_sentence_english": "Her accusations were completely unfounded.", + "pos": "adj", + "word_frequency": 14994 + }, + { + "word": "unimportant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not important", + "example_sentence_english": "The details are unimportant for now.", + "pos": "adj", + "word_frequency": 14996 + }, + { + "word": "uninsured", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not covered by insurance", + "example_sentence_english": "Many people are uninsured and cannot afford healthcare.", + "pos": "adj", + "word_frequency": 14997 + }, + { + "word": "untitled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no title", + "example_sentence_english": "The artist displayed an untitled work.", + "pos": "adj", + "word_frequency": 14998 + }, + { + "word": "valor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great courage, especially in battle", + "example_sentence_english": "The soldier was awarded a medal for his valor in combat.", + "pos": "noun", + "word_frequency": 15001 + }, + { + "word": "vape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an electronic cigarette", + "example_sentence_english": "He bought a new vape at the store.", + "pos": "noun", + "word_frequency": 15002 + }, + { + "word": "vernacular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the language or dialect spoken by the ordinary people in a particular country or region", + "example_sentence_english": "The poem was written in the local vernacular.", + "pos": "noun", + "word_frequency": 15003 + }, + { + "word": "virtuous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having high moral standards", + "example_sentence_english": "She was known for her virtuous character.", + "pos": "adj", + "word_frequency": 15004 + }, + { + "word": "watercolor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a paint that uses water as the solvent", + "example_sentence_english": "She painted a beautiful landscape using watercolors.", + "pos": "noun", + "word_frequency": 15007 + }, + { + "word": "abrasive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing irritation; harsh", + "example_sentence_english": "His abrasive personality made it difficult to work with him.", + "pos": "adj", + "word_frequency": 15014 + }, + { + "word": "accompaniment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that goes with something else", + "example_sentence_english": "The piano provided a beautiful accompaniment to the singer's voice.", + "pos": "noun", + "word_frequency": 15015 + }, + { + "word": "accomplice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who helps another commit a crime", + "example_sentence_english": "The thief's accomplice waited in the getaway car.", + "pos": "noun", + "word_frequency": 15016 + }, + { + "word": "adoptive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to adoption", + "example_sentence_english": "She met her adoptive parents when she was a baby.", + "pos": "adj", + "word_frequency": 15017 + }, + { + "word": "ailment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a minor illness", + "example_sentence_english": "He suffered from a minor ailment that kept him home from work.", + "pos": "noun", + "word_frequency": 15018 + }, + { + "word": "alphabetical", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arranged in the order of the letters of the alphabet", + "example_sentence_english": "Please list the names in alphabetical order.", + "pos": "adj", + "word_frequency": 15019 + }, + { + "word": "annihilation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complete destruction or obliteration", + "example_sentence_english": "The asteroid caused the annihilation of the dinosaurs.", + "pos": "noun", + "word_frequency": 15020 + }, + { + "word": "armistice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an agreement made by opposing sides in a war to stop fighting for a certain time; a truce", + "example_sentence_english": "The two countries signed an armistice to end the conflict.", + "pos": "noun", + "word_frequency": 15021 + }, + { + "word": "armory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where weapons are kept", + "example_sentence_english": "The old armory was converted into a museum.", + "pos": "noun", + "word_frequency": 15022 + }, + { + "word": "auspices", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protection or support; patronage", + "example_sentence_english": "The project was conducted under the auspices of the university.", + "pos": "noun", + "word_frequency": 15025 + }, + { + "word": "behead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut off the head of", + "example_sentence_english": "In ancient times, traitors were often sentenced to behead.", + "pos": "verb", + "word_frequency": 15026 + }, + { + "word": "calamity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an event causing great and often sudden damage or distress; a disaster", + "example_sentence_english": "The flood was a great calamity for the small town.", + "pos": "noun", + "word_frequency": 15030 + }, + { + "word": "carbonate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a salt of carbonic acid", + "example_sentence_english": "Calcium carbonate is a common mineral found in rocks.", + "pos": "noun", + "word_frequency": 15031 + }, + { + "word": "catalytic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving catalysis", + "example_sentence_english": "The enzyme played a catalytic role in the chemical reaction.", + "pos": "adj", + "word_frequency": 15034 + }, + { + "word": "cheesecake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dessert made with cheese", + "example_sentence_english": "For dessert, I ordered a slice of strawberry cheesecake.", + "pos": "noun", + "word_frequency": 15036 + }, + { + "word": "choral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or sung by a choir or chorus", + "example_sentence_english": "The church choir performed a beautiful choral piece.", + "pos": "adj", + "word_frequency": 15037 + }, + { + "word": "chronology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the arrangement of events or dates in the order of their occurrence", + "example_sentence_english": "The historian established a clear chronology of events.", + "pos": "noun", + "word_frequency": 15038 + }, + { + "word": "clam", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bivalve mollusk", + "example_sentence_english": "We dug for clams on the beach at low tide.", + "pos": "noun", + "word_frequency": 15039 + }, + { + "word": "clientele", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customers, clients", + "example_sentence_english": "The restaurant has a loyal clientele.", + "pos": "noun", + "word_frequency": 15040 + }, + { + "word": "colour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to add color to", + "example_sentence_english": "She likes to colour her hair.", + "pos": "verb", + "word_frequency": 15041 + }, + { + "word": "combatant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fighter, participant in combat", + "example_sentence_english": "Both combatants were exhausted after the long fight.", + "pos": "noun", + "word_frequency": 15042 + }, + { + "word": "configure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange or set up", + "example_sentence_english": "You need to configure the settings before using the software.", + "pos": "verb", + "word_frequency": 15043 + }, + { + "word": "convection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heat transfer by fluid movement", + "example_sentence_english": "Heat is transferred through convection in the oven.", + "pos": "noun", + "word_frequency": 15044 + }, + { + "word": "coronavirus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of virus", + "example_sentence_english": "The coronavirus pandemic affected the whole world.", + "pos": "noun", + "word_frequency": 15045 + }, + { + "word": "craftsman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skilled worker", + "example_sentence_english": "The table was made by a master craftsman.", + "pos": "noun", + "word_frequency": 15047 + }, + { + "word": "cretaceous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the geologic period", + "example_sentence_english": "Dinosaurs lived during the Cretaceous period.", + "pos": "adj", + "word_frequency": 15048 + }, + { + "word": "crunchy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "making a crisp sound when bitten", + "example_sentence_english": "I love crunchy apples.", + "pos": "adj", + "word_frequency": 15049 + }, + { + "word": "curvature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being curved", + "example_sentence_english": "The curvature of the Earth is visible from space.", + "pos": "noun", + "word_frequency": 15051 + }, + { + "word": "cyborg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cybernetic organism", + "example_sentence_english": "The movie featured a powerful cyborg.", + "pos": "noun", + "word_frequency": 15052 + }, + { + "word": "deflection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of turning aside", + "example_sentence_english": "The deflection of the light beam was noticeable.", + "pos": "noun", + "word_frequency": 15053 + }, + { + "word": "distillery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "place where spirits are made", + "example_sentence_english": "We visited a whisky distillery in Scotland.", + "pos": "noun", + "word_frequency": 15054 + }, + { + "word": "diversification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of making more diverse", + "example_sentence_english": "The company pursued diversification into new markets.", + "pos": "noun", + "word_frequency": 15055 + }, + { + "word": "effortless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without effort", + "example_sentence_english": "She danced with effortless grace.", + "pos": "adv", + "word_frequency": 15060 + }, + { + "word": "enactment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of passing a law", + "example_sentence_english": "The enactment of the new law will have a significant impact.", + "pos": "noun", + "word_frequency": 15062 + }, + { + "word": "envious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing envy", + "example_sentence_english": "She was envious of her friend's new car.", + "pos": "adj", + "word_frequency": 15063 + }, + { + "word": "erroneous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wrong, incorrect", + "example_sentence_english": "His calculations were erroneous.", + "pos": "adj", + "word_frequency": 15065 + }, + { + "word": "exacerbate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make worse", + "example_sentence_english": "The lack of rain will only exacerbate the drought.", + "pos": "verb", + "word_frequency": 15066 + }, + { + "word": "familial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to family", + "example_sentence_english": "There's a strong familial resemblance between them.", + "pos": "adj", + "word_frequency": 15067 + }, + { + "word": "feces", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waste matter from the bowels", + "example_sentence_english": "The laboratory analyzed the animal's feces.", + "pos": "noun", + "word_frequency": 15069 + }, + { + "word": "filing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of arranging documents", + "example_sentence_english": "She spent the afternoon doing paperwork and filing.", + "pos": "noun", + "word_frequency": 15071 + }, + { + "word": "frivolous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not having any serious purpose or value", + "example_sentence_english": "She made a frivolous purchase of a new hat.", + "pos": "adj", + "word_frequency": 15073 + }, + { + "word": "fruition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the realization or fulfillment of a plan or project", + "example_sentence_english": "His plans finally came to fruition.", + "pos": "noun", + "word_frequency": 15074 + }, + { + "word": "fullback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a defensive player in sports", + "example_sentence_english": "The fullback made a great tackle.", + "pos": "noun", + "word_frequency": 15076 + }, + { + "word": "gage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for measuring", + "example_sentence_english": "The pressure gage showed a high reading.", + "pos": "noun", + "word_frequency": 15077 + }, + { + "word": "galley", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a kitchen on a ship or aircraft", + "example_sentence_english": "The chef prepared meals in the ship's galley.", + "pos": "noun", + "word_frequency": 15078 + }, + { + "word": "giddy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling excited and silly", + "example_sentence_english": "She felt giddy with excitement.", + "pos": "adj", + "word_frequency": 15081 + }, + { + "word": "grandeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impressiveness, especially of appearance or style", + "example_sentence_english": "The palace retained its former grandeur.", + "pos": "noun", + "word_frequency": 15084 + }, + { + "word": "grapple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to struggle to deal with or overcome (a difficulty or problem)", + "example_sentence_english": "He had to grapple with the difficult decision.", + "pos": "verb", + "word_frequency": 15085 + }, + { + "word": "homogeneous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uniform in structure or composition", + "example_sentence_english": "The population was remarkably homogeneous.", + "pos": "adj", + "word_frequency": 15091 + }, + { + "word": "intangible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be touched or grasped; not having physical presence", + "example_sentence_english": "Goodwill is an intangible asset.", + "pos": "adj", + "word_frequency": 15096 + }, + { + "word": "ire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anger", + "example_sentence_english": "The politician's comments drew the ire of the public.", + "pos": "noun", + "word_frequency": 15097 + }, + { + "word": "landscaping", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of making a garden or other piece of land more attractive", + "example_sentence_english": "We hired a company to do the landscaping for our new house.", + "pos": "noun", + "word_frequency": 15103 + }, + { + "word": "laureate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is honored for achieving distinction in a particular field or with a particular award", + "example_sentence_english": "She is a Nobel laureate in literature.", + "pos": "noun", + "word_frequency": 15104 + }, + { + "word": "lineman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who installs or repairs electrical power or telephone lines", + "example_sentence_english": "The lineman repaired the broken power cable.", + "pos": "noun", + "word_frequency": 15108 + }, + { + "word": "madman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man who is insane or behaves in a wild, reckless way", + "example_sentence_english": "The villain in the movie was portrayed as a madman.", + "pos": "noun", + "word_frequency": 15109 + }, + { + "word": "maniac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person exhibiting extreme symptoms of wild behavior, especially when violent and dangerous", + "example_sentence_english": "He drove like a maniac on the highway.", + "pos": "noun", + "word_frequency": 15110 + }, + { + "word": "medalist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who has won a medal in a competition", + "example_sentence_english": "The gold medalist stood proudly on the podium.", + "pos": "noun", + "word_frequency": 15112 + }, + { + "word": "melee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a confused fight or scuffle", + "example_sentence_english": "The protest turned into a violent melee.", + "pos": "noun", + "word_frequency": 15113 + }, + { + "word": "memorize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commit to memory; learn by heart", + "example_sentence_english": "I need to memorize these vocabulary words.", + "pos": "verb", + "word_frequency": 15116 + }, + { + "word": "menstrual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to menstruation", + "example_sentence_english": "She tracks her menstrual cycle.", + "pos": "adj", + "word_frequency": 15118 + }, + { + "word": "merch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchandise (informal)", + "example_sentence_english": "They were selling band merch at the concert.", + "pos": "noun", + "word_frequency": 15119 + }, + { + "word": "metaphysical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to metaphysics; abstract", + "example_sentence_english": "The philosopher discussed the metaphysical aspects of existence.", + "pos": "adj", + "word_frequency": 15121 + }, + { + "word": "meteorology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of weather and climate", + "example_sentence_english": "Meteorology helps us understand weather patterns.", + "pos": "noun", + "word_frequency": 15122 + }, + { + "word": "methyl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical group derived from methane", + "example_sentence_english": "Methyl alcohol is also known as methanol.", + "pos": "noun", + "word_frequency": 15123 + }, + { + "word": "mindless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without intelligence or purpose", + "example_sentence_english": "He spent hours on mindless tasks to pass the time.", + "pos": "adj", + "word_frequency": 15124 + }, + { + "word": "misconception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mistaken idea or belief", + "example_sentence_english": "Many people have a misconception about how the system works.", + "pos": "noun", + "word_frequency": 15125 + }, + { + "word": "momentary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasting for only a moment; brief", + "example_sentence_english": "There was a momentary pause before she continued speaking.", + "pos": "adv", + "word_frequency": 15126 + }, + { + "word": "narcissistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having an excessive interest in oneself and one's physical appearance", + "example_sentence_english": "His narcissistic tendencies made it difficult for him to empathize with others.", + "pos": "adj", + "word_frequency": 15128 + }, + { + "word": "negotiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open to discussion or modification", + "example_sentence_english": "The price is negotiable, so feel free to make an offer.", + "pos": "adj", + "word_frequency": 15129 + }, + { + "word": "northward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards the north", + "example_sentence_english": "The birds flew northward for the winter.", + "pos": "adv", + "word_frequency": 15131 + }, + { + "word": "nudge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light push or poke", + "example_sentence_english": "He gave me a gentle nudge to get my attention.", + "pos": "noun", + "word_frequency": 15133 + }, + { + "word": "padre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a priest or military chaplain", + "example_sentence_english": "The soldiers often sought advice from the padre.", + "pos": "noun", + "word_frequency": 15136 + }, + { + "word": "pantheon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of highly regarded people or a temple dedicated to all gods", + "example_sentence_english": "He joined the pantheon of great American writers.", + "pos": "noun", + "word_frequency": 15137 + }, + { + "word": "payer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or organization that pays money", + "example_sentence_english": "The insurance company is the primary payer for medical expenses.", + "pos": "noun", + "word_frequency": 15138 + }, + { + "word": "pictorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or consisting of pictures", + "example_sentence_english": "The book provided a pictorial history of the city.", + "pos": "adj", + "word_frequency": 15139 + }, + { + "word": "ploy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cunning plan or scheme", + "example_sentence_english": "It was a clever ploy to distract the guards.", + "pos": "noun", + "word_frequency": 15140 + }, + { + "word": "presumption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an idea taken to be true, or arrogant behavior", + "example_sentence_english": "His presumption of innocence was challenged by the evidence.", + "pos": "noun", + "word_frequency": 15141 + }, + { + "word": "prospectus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a document describing a school, business, or investment", + "example_sentence_english": "The university sent out a detailed prospectus to all applicants.", + "pos": "noun", + "word_frequency": 15142 + }, + { + "word": "prosthetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an artificial body part", + "example_sentence_english": "He was fitted with a prosthetic leg after the accident.", + "pos": "adj", + "word_frequency": 15143 + }, + { + "word": "puma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large American wild cat", + "example_sentence_english": "A puma is also known as a cougar or mountain lion.", + "pos": "noun", + "word_frequency": 15145 + }, + { + "word": "reactionary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opposing political or social progress or reform", + "example_sentence_english": "His views were considered reactionary by many progressives.", + "pos": "adj", + "word_frequency": 15146 + }, + { + "word": "reciprocal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "given, felt, or done in return", + "example_sentence_english": "They had a reciprocal agreement to help each other.", + "pos": "adj", + "word_frequency": 15147 + }, + { + "word": "redwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very tall coniferous tree", + "example_sentence_english": "California is famous for its giant redwood trees.", + "pos": "noun", + "word_frequency": 15148 + }, + { + "word": "reverence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deep respect for someone or something", + "example_sentence_english": "The students showed great reverence for their wise teacher.", + "pos": "noun", + "word_frequency": 15150 + }, + { + "word": "seaweed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "algae growing in the sea", + "example_sentence_english": "We saw a lot of seaweed washed up on the beach.", + "pos": "noun", + "word_frequency": 15155 + }, + { + "word": "seduction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of enticing someone into sexual activity or a course of action", + "example_sentence_english": "The advertisement used subtle techniques of seduction to attract customers.", + "pos": "noun", + "word_frequency": 15156 + }, + { + "word": "selfishness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being selfish", + "example_sentence_english": "His selfishness prevented him from sharing his toys.", + "pos": "noun", + "word_frequency": 15157 + }, + { + "word": "serge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a durable twilled fabric", + "example_sentence_english": "The uniform was made of a sturdy serge fabric.", + "pos": "noun", + "word_frequency": 15158 + }, + { + "word": "serviceman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of the armed forces", + "example_sentence_english": "The serviceman returned home after a long deployment.", + "pos": "noun", + "word_frequency": 15159 + }, + { + "word": "shaman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person regarded as having access to, and influence in, the world of good and evil spirits", + "example_sentence_english": "The shaman performed a ritual to heal the sick.", + "pos": "noun", + "word_frequency": 15160 + }, + { + "word": "sketchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not thorough or detailed; suspicious", + "example_sentence_english": "The information he gave us was a bit sketchy.", + "pos": "adj", + "word_frequency": 15163 + }, + { + "word": "snowfall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the amount of snow that falls", + "example_sentence_english": "We had a heavy snowfall last night.", + "pos": "noun", + "word_frequency": 15164 + }, + { + "word": "southbound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traveling or leading towards the south", + "example_sentence_english": "The train is southbound to Miami.", + "pos": "adv", + "word_frequency": 15165 + }, + { + "word": "specificity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being specific", + "example_sentence_english": "The report lacked specificity in its recommendations.", + "pos": "noun", + "word_frequency": 15166 + }, + { + "word": "squirt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small amount of liquid ejected", + "example_sentence_english": "He gave the plant a squirt of water.", + "pos": "noun", + "word_frequency": 15167 + }, + { + "word": "stewardship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the careful and responsible management of something entrusted to one's care", + "example_sentence_english": "Environmental stewardship is crucial for our planet.", + "pos": "noun", + "word_frequency": 15169 + }, + { + "word": "stoppage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of stopping or being stopped", + "example_sentence_english": "There was a temporary stoppage of work due to a power cut.", + "pos": "noun", + "word_frequency": 15170 + }, + { + "word": "superpower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a nation with a very powerful military and economy; an exceptional ability", + "example_sentence_english": "The United States is considered a global superpower.", + "pos": "noun", + "word_frequency": 15172 + }, + { + "word": "synergy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the interaction or cooperation of two or more organizations, substances, or other agents to produce a combined effect greater than the sum of their separate effects", + "example_sentence_english": "The merger created a synergy that boosted both companies' profits.", + "pos": "noun", + "word_frequency": 15173 + }, + { + "word": "tasmanian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Tasmania", + "example_sentence_english": "The Tasmanian devil is an endangered species.", + "pos": "adj", + "word_frequency": 15174 + }, + { + "word": "thermometer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an instrument for measuring temperature", + "example_sentence_english": "She used a thermometer to check her temperature.", + "pos": "noun", + "word_frequency": 15176 + }, + { + "word": "thingy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing whose name one cannot recall or does not know", + "example_sentence_english": "Can you pass me that thingy over there?", + "pos": "noun", + "word_frequency": 15177 + }, + { + "word": "unbroken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not broken; continuous", + "example_sentence_english": "The unbroken silence was unnerving.", + "pos": "adj", + "word_frequency": 15181 + }, + { + "word": "whiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slight smell; a brief, faint indication", + "example_sentence_english": "I caught a whiff of freshly baked bread.", + "pos": "noun", + "word_frequency": 15188 + }, + { + "word": "whopping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very large or impressive", + "example_sentence_english": "He won a whopping sum of money in the lottery.", + "pos": "adj", + "word_frequency": 15189 + }, + { + "word": "wilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant disease causing wilting; a loss of vigor", + "example_sentence_english": "The flowers showed signs of wilt after a week without water.", + "pos": "noun", + "word_frequency": 15190 + }, + { + "word": "youtuber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who produces videos for YouTube", + "example_sentence_english": "She dreams of becoming a famous YouTuber.", + "pos": "noun", + "word_frequency": 15192 + }, + { + "word": "absurdity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or state of being ridiculous or wildly unreasonable", + "example_sentence_english": "The absurdity of the situation made everyone laugh.", + "pos": "noun", + "word_frequency": 15195 + }, + { + "word": "achievable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be brought about or reached successfully", + "example_sentence_english": "Setting realistic goals makes them more achievable.", + "pos": "adj", + "word_frequency": 15196 + }, + { + "word": "alchemy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medieval chemical science and speculative philosophy aiming to transmute base metals into gold", + "example_sentence_english": "Ancient alchemists sought to turn lead into gold.", + "pos": "noun", + "word_frequency": 15197 + }, + { + "word": "americana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "things associated with the culture of the United States", + "example_sentence_english": "The museum displayed a collection of Americana.", + "pos": "noun", + "word_frequency": 15198 + }, + { + "word": "anatomical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the structure of the body", + "example_sentence_english": "The doctor pointed out the anatomical features on the diagram.", + "pos": "adj", + "word_frequency": 15200 + }, + { + "word": "antigen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance that causes the immune system to produce antibodies", + "example_sentence_english": "The vaccine introduces a weakened antigen to stimulate immunity.", + "pos": "noun", + "word_frequency": 15201 + }, + { + "word": "apostolic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the apostles or their teachings", + "example_sentence_english": "The Pope's authority is considered apostolic by many Catholics.", + "pos": "adj", + "word_frequency": 15202 + }, + { + "word": "aristocracy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the highest class in certain societies, typically holding hereditary titles or offices", + "example_sentence_english": "The aristocracy once held significant power in many European countries.", + "pos": "noun", + "word_frequency": 15204 + }, + { + "word": "armchair", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a comfortable padded chair with arms", + "example_sentence_english": "He relaxed in his favorite armchair by the fireplace.", + "pos": "noun", + "word_frequency": 15205 + }, + { + "word": "babysitter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who looks after children while their parents are out", + "example_sentence_english": "We hired a babysitter for Saturday night.", + "pos": "noun", + "word_frequency": 15209 + }, + { + "word": "babysit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to look after children while their parents are out", + "example_sentence_english": "My older sister often babysits for our neighbors.", + "pos": "verb", + "word_frequency": 15210 + }, + { + "word": "backlog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an accumulation of tasks unperformed or materials not processed", + "example_sentence_english": "We have a huge backlog of orders to process after the holiday sale.", + "pos": "noun", + "word_frequency": 15211 + }, + { + "word": "bile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bitter greenish-brown fluid that aids digestion", + "example_sentence_english": "The liver produces bile, which helps break down fats.", + "pos": "noun", + "word_frequency": 15213 + }, + { + "word": "biochemical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the chemical processes and substances that occur within living organisms", + "example_sentence_english": "Researchers are studying the biochemical pathways involved in the disease.", + "pos": "adj", + "word_frequency": 15214 + }, + { + "word": "bling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expensive, ostentatious jewelry or accessories", + "example_sentence_english": "He likes to show off his new car and all its bling.", + "pos": "noun", + "word_frequency": 15215 + }, + { + "word": "botch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry out (a task) badly or carelessly", + "example_sentence_english": "The mechanic really botched the repair job on my car.", + "pos": "verb", + "word_frequency": 15219 + }, + { + "word": "brownie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small square of rich chocolate cake, typically containing nuts", + "example_sentence_english": "She baked a batch of delicious chocolate brownies.", + "pos": "noun", + "word_frequency": 15222 + }, + { + "word": "calibre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of someone's character or ability; the internal diameter of a gun barrel", + "example_sentence_english": "The new recruits are of a very high calibre.", + "pos": "noun", + "word_frequency": 15225 + }, + { + "word": "caliphate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the rule or reign of a caliph or chief Muslim ruler", + "example_sentence_english": "The Ottoman Empire was the last major caliphate.", + "pos": "noun", + "word_frequency": 15226 + }, + { + "word": "carcass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the dead body of an animal", + "example_sentence_english": "The vultures circled above the animal carcass.", + "pos": "noun", + "word_frequency": 15227 + }, + { + "word": "cardigan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a knitted jacket, typically buttoning down the front", + "example_sentence_english": "She put on a warm cardigan because it was chilly.", + "pos": "noun", + "word_frequency": 15228 + }, + { + "word": "carousel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rotating machine or device, especially one for conveying luggage at an airport or a merry-go-round", + "example_sentence_english": "We waited by the baggage carousel for our suitcases.", + "pos": "noun", + "word_frequency": 15229 + }, + { + "word": "chihuahua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a very small breed of dog with large ears", + "example_sentence_english": "My aunt has a tiny chihuahua that barks a lot.", + "pos": "noun", + "word_frequency": 15232 + }, + { + "word": "circumcision", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or practice of circumcising", + "example_sentence_english": "Circumcision is a religious or medical practice in some cultures.", + "pos": "noun", + "word_frequency": 15234 + }, + { + "word": "clandestine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kept secret or done secretively, especially because illicit", + "example_sentence_english": "They held a clandestine meeting under the cover of darkness.", + "pos": "adj", + "word_frequency": 15235 + }, + { + "word": "clutter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a collection of things lying about in an untidy mass", + "example_sentence_english": "Her desk was covered in clutter, making it hard to find anything.", + "pos": "noun", + "word_frequency": 15236 + }, + { + "word": "compost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decayed organic material used as a fertilizer", + "example_sentence_english": "We add our kitchen scraps to the compost bin.", + "pos": "noun", + "word_frequency": 15237 + }, + { + "word": "conqueror", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who conquers a place or people", + "example_sentence_english": "William the Conqueror invaded England in 1066.", + "pos": "noun", + "word_frequency": 15238 + }, + { + "word": "cot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small bed with high barred sides for a baby or young child; a light portable bed", + "example_sentence_english": "The baby slept soundly in its cot.", + "pos": "noun", + "word_frequency": 15239 + }, + { + "word": "crafty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cunning, clever (in a tricky way)", + "example_sentence_english": "The crafty fox managed to steal the chickens without being seen.", + "pos": "adj", + "word_frequency": 15241 + }, + { + "word": "cutoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a point or limit at which something is stopped or reduced", + "example_sentence_english": "The cutoff date for applications is next Friday.", + "pos": "noun", + "word_frequency": 15243 + }, + { + "word": "debacle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sudden and ignominious failure; a fiasco", + "example_sentence_english": "The entire project was a complete debacle from start to finish.", + "pos": "noun", + "word_frequency": 15244 + }, + { + "word": "defiant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing open resistance; disobedient", + "example_sentence_english": "The defiant child refused to go to bed when told.", + "pos": "adj", + "word_frequency": 15245 + }, + { + "word": "deform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distort the shape or form of; to disfigure", + "example_sentence_english": "High temperatures can deform plastic objects.", + "pos": "verb", + "word_frequency": 15246 + }, + { + "word": "disarm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take weapons away from; to remove hostility", + "example_sentence_english": "The police officer managed to disarm the suspect without incident.", + "pos": "verb", + "word_frequency": 15247 + }, + { + "word": "drawback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a disadvantage or problem", + "example_sentence_english": "The main drawback of this plan is its high cost.", + "pos": "noun", + "word_frequency": 15251 + }, + { + "word": "elliptical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oval-shaped; (of language) obscure or indirect", + "example_sentence_english": "The planet follows an elliptical orbit around the sun.", + "pos": "adj", + "word_frequency": 15254 + }, + { + "word": "eloquent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluent or persuasive in speaking or writing", + "example_sentence_english": "She delivered an eloquent speech that moved everyone in the audience.", + "pos": "adj", + "word_frequency": 15255 + }, + { + "word": "eminence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fame or superiority, especially in a profession or sphere", + "example_sentence_english": "His eminence in the field of physics is widely recognized.", + "pos": "noun", + "word_frequency": 15256 + }, + { + "word": "equatorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of, at, or near the equator", + "example_sentence_english": "The Amazon rainforest is located in an equatorial region.", + "pos": "adj", + "word_frequency": 15257 + }, + { + "word": "eyeball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the globe of the eye", + "example_sentence_english": "The doctor examined the patient's eyeball for any signs of injury.", + "pos": "noun", + "word_frequency": 15261 + }, + { + "word": "fairytale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a children's story about magical and imaginary beings and lands", + "example_sentence_english": "My grandmother used to read me a fairytale every night before bed.", + "pos": "noun", + "word_frequency": 15262 + }, + { + "word": "fallacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mistaken belief, especially one based on unsound argument", + "example_sentence_english": "It's a common fallacy that money brings happiness.", + "pos": "noun", + "word_frequency": 15263 + }, + { + "word": "feeble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking physical strength, especially as a result of age or illness", + "example_sentence_english": "The old man was too feeble to walk without assistance.", + "pos": "adj", + "word_frequency": 15264 + }, + { + "word": "fend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defend oneself from a blow, attack, or attacker", + "example_sentence_english": "She had to fend off several aggressive dogs during her walk.", + "pos": "verb", + "word_frequency": 15265 + }, + { + "word": "ferocious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savagely fierce, cruel, or violent", + "example_sentence_english": "The tiger let out a ferocious roar that echoed through the jungle.", + "pos": "adj", + "word_frequency": 15266 + }, + { + "word": "fragrant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a pleasant or sweet smell", + "example_sentence_english": "The garden was filled with fragrant roses.", + "pos": "adj", + "word_frequency": 15267 + }, + { + "word": "gallant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brave; heroic; (of a man) charmingly attentive to women", + "example_sentence_english": "The knight was known for his gallant deeds and chivalry.", + "pos": "adj", + "word_frequency": 15268 + }, + { + "word": "generalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a general statement or concept obtained by inference from specific cases", + "example_sentence_english": "It's dangerous to make a generalization about an entire group of people.", + "pos": "noun", + "word_frequency": 15270 + }, + { + "word": "geologist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an expert in geology; a person who studies the Earth's physical structure and substance", + "example_sentence_english": "The geologist examined the rock samples to determine their age.", + "pos": "noun", + "word_frequency": 15271 + }, + { + "word": "goon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a foolish, stupid, or clumsy person; a thug or ruffian", + "example_sentence_english": "The security guard looked like a big goon, but he was actually very kind.", + "pos": "noun", + "word_frequency": 15273 + }, + { + "word": "handcuff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pair of linked metal rings for securing a prisoner's wrists", + "example_sentence_english": "The police officer put the suspect in handcuffs.", + "pos": "noun", + "word_frequency": 15277 + }, + { + "word": "hermit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person living in solitude", + "example_sentence_english": "The old man lived like a hermit in the mountains.", + "pos": "noun", + "word_frequency": 15280 + }, + { + "word": "horseman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who rides a horse", + "example_sentence_english": "The horseman rode swiftly across the plains.", + "pos": "noun", + "word_frequency": 15282 + }, + { + "word": "indebted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owing gratitude or money", + "example_sentence_english": "I am deeply indebted to you for your help.", + "pos": "adj", + "word_frequency": 15286 + }, + { + "word": "indecent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not conforming to accepted standards of morality or modesty", + "example_sentence_english": "The show was criticized for its indecent content.", + "pos": "adj", + "word_frequency": 15287 + }, + { + "word": "inquest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a judicial inquiry to ascertain the facts relating to an incident", + "example_sentence_english": "The coroner held an inquest into the cause of death.", + "pos": "noun", + "word_frequency": 15288 + }, + { + "word": "ionic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to ions or a classical order of architecture", + "example_sentence_english": "Ionic bonds are strong chemical bonds.", + "pos": "adj", + "word_frequency": 15289 + }, + { + "word": "jingle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light ringing sound; a short, catchy tune", + "example_sentence_english": "I heard the jingle of keys in his pocket.", + "pos": "noun", + "word_frequency": 15292 + }, + { + "word": "kink", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sharp twist or bend; a peculiarity of character or behavior", + "example_sentence_english": "There was a kink in the hose, stopping the water flow.", + "pos": "noun", + "word_frequency": 15295 + }, + { + "word": "louse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small, wingless parasitic insect; a contemptible person", + "example_sentence_english": "The gardener found a louse on the rose bush.", + "pos": "noun", + "word_frequency": 15301 + }, + { + "word": "loco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy; mad (from Spanish)", + "example_sentence_english": "That idea sounds completely loco to me.", + "pos": "adj", + "word_frequency": 15302 + }, + { + "word": "lorry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large vehicle for transporting goods by road (British English)", + "example_sentence_english": "The lorry delivered the goods to the warehouse.", + "pos": "noun", + "word_frequency": 15303 + }, + { + "word": "magnolia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tree or shrub with large, showy flowers", + "example_sentence_english": "The magnolia tree in the garden is blooming beautifully.", + "pos": "noun", + "word_frequency": 15306 + }, + { + "word": "medial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "situated in the middle; relating to the median", + "example_sentence_english": "The medial nerve runs down the arm.", + "pos": "adj", + "word_frequency": 15310 + }, + { + "word": "mercantile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to trade or commerce; commercial", + "example_sentence_english": "The city has a rich mercantile history.", + "pos": "adj", + "word_frequency": 15312 + }, + { + "word": "migratory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or denoting migration", + "example_sentence_english": "Many birds are migratory, flying south for the winter.", + "pos": "adj", + "word_frequency": 15313 + }, + { + "word": "mingle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mix or combine; move around and talk to people at a social event", + "example_sentence_english": "She likes to mingle with guests at parties.", + "pos": "verb", + "word_frequency": 15314 + }, + { + "word": "modernist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who advocates or practices modernism, especially in art, literature, or architecture", + "example_sentence_english": "He was a leading modernist architect of his time.", + "pos": "noun", + "word_frequency": 15315 + }, + { + "word": "mover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or company that moves furniture or belongings; a person who initiates or promotes something", + "example_sentence_english": "We hired a professional mover to help us relocate.", + "pos": "noun", + "word_frequency": 15316 + }, + { + "word": "nomenclature", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the devising or choosing of names for things, especially in a science or other discipline", + "example_sentence_english": "The scientific nomenclature for plants can be complex.", + "pos": "noun", + "word_frequency": 15318 + }, + { + "word": "organiser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who arranges or plans an event; a device for keeping things tidy", + "example_sentence_english": "She was the main organiser of the conference.", + "pos": "noun", + "word_frequency": 15319 + }, + { + "word": "outback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remote, sparsely inhabited inland regions of Australia", + "example_sentence_english": "They traveled deep into the Australian outback.", + "pos": "noun", + "word_frequency": 15320 + }, + { + "word": "outcry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong public expression of protest or disapproval", + "example_sentence_english": "There was a public outcry against the new policy.", + "pos": "noun", + "word_frequency": 15321 + }, + { + "word": "panoramic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with a wide and unobstructed view", + "example_sentence_english": "The hotel room offered a panoramic view of the city.", + "pos": "adj", + "word_frequency": 15323 + }, + { + "word": "paparazzi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freelance photographers who pursue celebrities", + "example_sentence_english": "The paparazzi followed the movie star everywhere.", + "pos": "noun", + "word_frequency": 15324 + }, + { + "word": "philanthropic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characterized by philanthropy; benevolent", + "example_sentence_english": "The billionaire was known for his philanthropic endeavors.", + "pos": "adj", + "word_frequency": 15326 + }, + { + "word": "playhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small house for children to play in, or a theater", + "example_sentence_english": "The children spent hours playing in their new playhouse.", + "pos": "noun", + "word_frequency": 15327 + }, + { + "word": "plow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large farming implement with one or more blades fixed in a frame, used to turn over soil", + "example_sentence_english": "The farmer used a plow to prepare the field for planting.", + "pos": "noun", + "word_frequency": 15328 + }, + { + "word": "preferential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "giving an advantage or preference to one person or thing over others", + "example_sentence_english": "They offered preferential treatment to their loyal customers.", + "pos": "adj", + "word_frequency": 15330 + }, + { + "word": "primetime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the time at which a radio or television audience is expected to be at its largest", + "example_sentence_english": "The show airs during primetime on Tuesdays.", + "pos": "noun", + "word_frequency": 15331 + }, + { + "word": "prolong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extend the duration of", + "example_sentence_english": "They tried to prolong their vacation for another week.", + "pos": "verb", + "word_frequency": 15333 + }, + { + "word": "propane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flammable hydrocarbon gas, used as fuel", + "example_sentence_english": "We use propane to fuel our outdoor grill.", + "pos": "noun", + "word_frequency": 15334 + }, + { + "word": "publicize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (something) widely known", + "example_sentence_english": "The company hired a firm to publicize their new product.", + "pos": "verb", + "word_frequency": 15335 + }, + { + "word": "ramble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "walk for pleasure, typically without a definite route; talk or write at length in a confused or inconsequential way", + "example_sentence_english": "He tends to ramble when he's nervous.", + "pos": "verb", + "word_frequency": 15340 + }, + { + "word": "redirect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "direct (something) to a different place or purpose", + "example_sentence_english": "The website will automatically redirect you to the new page.", + "pos": "verb", + "word_frequency": 15342 + }, + { + "word": "remand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "send (a prisoner or accused person) back into custody, especially to await trial or further examination", + "example_sentence_english": "The judge decided to remand the suspect in custody.", + "pos": "verb", + "word_frequency": 15344 + }, + { + "word": "reusable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be used again", + "example_sentence_english": "Please bring your reusable bags to the grocery store.", + "pos": "adj", + "word_frequency": 15345 + }, + { + "word": "rowdy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noisy and disorderly", + "example_sentence_english": "The bar was full of rowdy football fans.", + "pos": "adj", + "word_frequency": 15347 + }, + { + "word": "saffron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an orange-yellow spice derived from the crocus flower", + "example_sentence_english": "Saffron is the most expensive spice in the world.", + "pos": "noun", + "word_frequency": 15348 + }, + { + "word": "sassy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lively, bold, and full of spirit; cheeky", + "example_sentence_english": "She gave a sassy reply to his question.", + "pos": "adj", + "word_frequency": 15350 + }, + { + "word": "schoolboy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a boy attending school", + "example_sentence_english": "The schoolboy carried a heavy backpack.", + "pos": "noun", + "word_frequency": 15351 + }, + { + "word": "scoreboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large board for displaying the score of a game or match", + "example_sentence_english": "The fans cheered as the score changed on the scoreboard.", + "pos": "noun", + "word_frequency": 15353 + }, + { + "word": "sender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who sends something", + "example_sentence_english": "The package did not have a return address for the sender.", + "pos": "noun", + "word_frequency": 15355 + }, + { + "word": "septic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infected with bacteria; relating to or caused by sepsis", + "example_sentence_english": "The wound became septic and required immediate treatment.", + "pos": "adj", + "word_frequency": 15357 + }, + { + "word": "shenanigan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secret or dishonest activity or maneuvering; mischief", + "example_sentence_english": "The children were always up to some kind of shenanigan.", + "pos": "noun", + "word_frequency": 15358 + }, + { + "word": "skateboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a board with wheels for riding", + "example_sentence_english": "He rode his skateboard down the street.", + "pos": "noun", + "word_frequency": 15360 + }, + { + "word": "skier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who skis", + "example_sentence_english": "The skier glided gracefully down the slope.", + "pos": "noun", + "word_frequency": 15361 + }, + { + "word": "slider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that slides or is slid", + "example_sentence_english": "The baseball player was a good slider into home plate.", + "pos": "noun", + "word_frequency": 15362 + }, + { + "word": "stipulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demand or specify a requirement", + "example_sentence_english": "The contract stipulates that payments must be made monthly.", + "pos": "verb", + "word_frequency": 15365 + }, + { + "word": "subversive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who tries to undermine a political system", + "example_sentence_english": "The government cracked down on suspected subversives.", + "pos": "noun", + "word_frequency": 15366 + }, + { + "word": "sufferer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who suffers from something", + "example_sentence_english": "She is a long-time sufferer of chronic pain.", + "pos": "noun", + "word_frequency": 15367 + }, + { + "word": "suggestive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending to suggest an idea or feeling", + "example_sentence_english": "His comments were highly suggestive of a hidden agenda.", + "pos": "adj", + "word_frequency": 15368 + }, + { + "word": "suitability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being appropriate", + "example_sentence_english": "We need to assess the suitability of the candidate for the role.", + "pos": "noun", + "word_frequency": 15369 + }, + { + "word": "superstition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a belief not based on reason", + "example_sentence_english": "Breaking a mirror is considered a bad luck superstition.", + "pos": "noun", + "word_frequency": 15370 + }, + { + "word": "symmetric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having symmetry", + "example_sentence_english": "The design was perfectly symmetric, with both sides mirroring each other.", + "pos": "adj", + "word_frequency": 15372 + }, + { + "word": "synonym", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a word or phrase that means exactly or nearly the same as another", + "example_sentence_english": "\"Big\" is a synonym for \"large.\"", + "pos": "noun", + "word_frequency": 15373 + }, + { + "word": "tic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a habitual spasmodic contraction of the muscles", + "example_sentence_english": "He developed a nervous tic in his eye.", + "pos": "noun", + "word_frequency": 15375 + }, + { + "word": "timeout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a brief break in play or activity", + "example_sentence_english": "The coach called a timeout to discuss strategy.", + "pos": "noun", + "word_frequency": 15376 + }, + { + "word": "tome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large, heavy book", + "example_sentence_english": "He spent hours poring over ancient tomes in the library.", + "pos": "noun", + "word_frequency": 15377 + }, + { + "word": "totalitarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person advocating a totalitarian system of government", + "example_sentence_english": "The country was ruled by a totalitarian regime.", + "pos": "noun", + "word_frequency": 15378 + }, + { + "word": "tramp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who travels on foot; the sound of heavy steps", + "example_sentence_english": "We heard the tramp of heavy boots approaching.", + "pos": "noun", + "word_frequency": 15379 + }, + { + "word": "transistor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a semiconductor device", + "example_sentence_english": "Transistors are fundamental components in modern electronics.", + "pos": "noun", + "word_frequency": 15380 + }, + { + "word": "translucent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allowing light to pass through but not clearly", + "example_sentence_english": "The frosted glass was translucent, letting light in but obscuring the view.", + "pos": "adj", + "word_frequency": 15381 + }, + { + "word": "trot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pace of a horse faster than a walk", + "example_sentence_english": "The horse broke into a steady trot.", + "pos": "noun", + "word_frequency": 15382 + }, + { + "word": "unbalanced", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not in equilibrium; mentally unstable", + "example_sentence_english": "The table was unbalanced and wobbled when touched.", + "pos": "adj", + "word_frequency": 15383 + }, + { + "word": "unfavorable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not good; adverse", + "example_sentence_english": "The weather forecast was unfavorable for our picnic.", + "pos": "adj", + "word_frequency": 15384 + }, + { + "word": "unintentional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not done on purpose", + "example_sentence_english": "He unintentionally deleted the file.", + "pos": "adv", + "word_frequency": 15385 + }, + { + "word": "uniqueness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being unique", + "example_sentence_english": "The uniqueness of her artwork made it stand out.", + "pos": "noun", + "word_frequency": 15386 + }, + { + "word": "vertebra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bone forming part of the spinal column", + "example_sentence_english": "He fractured a vertebra in his lower back.", + "pos": "noun", + "word_frequency": 15388 + }, + { + "word": "vertex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the highest point; a corner or point where lines meet", + "example_sentence_english": "The vertex of the triangle was at the top.", + "pos": "noun", + "word_frequency": 15389 + }, + { + "word": "woodwork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wooden parts of a building or room", + "example_sentence_english": "The old house had beautiful original woodwork.", + "pos": "noun", + "word_frequency": 15391 + }, + { + "word": "yellowish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhat yellow", + "example_sentence_english": "The old paper had a yellowish tint.", + "pos": "adj", + "word_frequency": 15393 + }, + { + "word": "acidity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being acid", + "example_sentence_english": "The acidity of the soil affects plant growth.", + "pos": "noun", + "word_frequency": 15396 + }, + { + "word": "ado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fuss; trouble", + "example_sentence_english": "They finished the project with much ado.", + "pos": "noun", + "word_frequency": 15397 + }, + { + "word": "agrarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to cultivated land or the cultivation of land", + "example_sentence_english": "The country has a predominantly agrarian economy.", + "pos": "adj", + "word_frequency": 15398 + }, + { + "word": "airy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spacious and well-ventilated", + "example_sentence_english": "The room was light and airy, with large windows.", + "pos": "adj", + "word_frequency": 15399 + }, + { + "word": "alaskan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Alaska", + "example_sentence_english": "We saw an Alaskan brown bear.", + "pos": "adj", + "word_frequency": 15401 + }, + { + "word": "anew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "again in a new or different way", + "example_sentence_english": "They decided to start their project anew.", + "pos": "adv", + "word_frequency": 15404 + }, + { + "word": "appease", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pacify or placate", + "example_sentence_english": "He tried to appease his angry parents.", + "pos": "verb", + "word_frequency": 15408 + }, + { + "word": "aptitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a natural ability to do something", + "example_sentence_english": "She showed a natural aptitude for learning languages.", + "pos": "noun", + "word_frequency": 15409 + }, + { + "word": "backside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the rear part of something or someone", + "example_sentence_english": "The house has a lovely garden on the backside.", + "pos": "noun", + "word_frequency": 15411 + }, + { + "word": "bassist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays the bass guitar or double bass", + "example_sentence_english": "The band's new bassist is very talented.", + "pos": "noun", + "word_frequency": 15412 + }, + { + "word": "bespoke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "made to order for a particular customer", + "example_sentence_english": "He ordered a bespoke suit for the wedding.", + "pos": "adj", + "word_frequency": 15414 + }, + { + "word": "blocker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something or someone that obstructs or prevents movement", + "example_sentence_english": "The defender was an excellent blocker on the field.", + "pos": "noun", + "word_frequency": 15415 + }, + { + "word": "blowout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden burst or failure; an overwhelming victory", + "example_sentence_english": "The team won by a complete blowout.", + "pos": "noun", + "word_frequency": 15416 + }, + { + "word": "brisk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quick and active; cool and refreshing", + "example_sentence_english": "We took a brisk walk in the morning air.", + "pos": "adj", + "word_frequency": 15417 + }, + { + "word": "bubbly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of bubbles; cheerful and lively", + "example_sentence_english": "She has a very bubbly personality.", + "pos": "adj", + "word_frequency": 15418 + }, + { + "word": "bummer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disappointing or unpleasant situation", + "example_sentence_english": "It's a real bummer that the concert was canceled.", + "pos": "noun", + "word_frequency": 15419 + }, + { + "word": "cauliflower", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a vegetable with a large white flower head", + "example_sentence_english": "I like to roast cauliflower with olive oil.", + "pos": "noun", + "word_frequency": 15425 + }, + { + "word": "chainsaw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a power-driven saw with a toothed chain", + "example_sentence_english": "He used a chainsaw to cut down the old tree.", + "pos": "noun", + "word_frequency": 15429 + }, + { + "word": "cheetah", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large spotted cat known for its speed", + "example_sentence_english": "The cheetah is the fastest land animal.", + "pos": "noun", + "word_frequency": 15432 + }, + { + "word": "climatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to climate", + "example_sentence_english": "We are observing significant climatic changes.", + "pos": "adj", + "word_frequency": 15434 + }, + { + "word": "clockwise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the direction of the movement of the hands of a clock", + "example_sentence_english": "Turn the knob clockwise to open it.", + "pos": "adv", + "word_frequency": 15435 + }, + { + "word": "clockwork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the mechanism of a clock; regular and precise operation", + "example_sentence_english": "The train arrived like clockwork every day.", + "pos": "noun", + "word_frequency": 15436 + }, + { + "word": "conformity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compliance with standards, rules, or laws", + "example_sentence_english": "There was a strong pressure for conformity in the group.", + "pos": "noun", + "word_frequency": 15438 + }, + { + "word": "consort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a spouse, especially of a monarch", + "example_sentence_english": "The queen and her consort attended the ceremony.", + "pos": "noun", + "word_frequency": 15439 + }, + { + "word": "courteous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polite; respectful", + "example_sentence_english": "The courteous waiter made sure everyone was comfortable.", + "pos": "adj", + "word_frequency": 15440 + }, + { + "word": "deforestation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the clearing of forests", + "example_sentence_english": "Deforestation is a major cause of climate change.", + "pos": "noun", + "word_frequency": 15444 + }, + { + "word": "demeanor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outward behavior or bearing", + "example_sentence_english": "His calm demeanor reassured everyone during the crisis.", + "pos": "noun", + "word_frequency": 15446 + }, + { + "word": "deplorable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shockingly bad; disgraceful", + "example_sentence_english": "The living conditions in the old building were deplorable.", + "pos": "adj", + "word_frequency": 15448 + }, + { + "word": "derange", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make insane; to disturb the order of", + "example_sentence_english": "The stress of the situation seemed to derange his thoughts.", + "pos": "verb", + "word_frequency": 15449 + }, + { + "word": "detergent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cleaning substance", + "example_sentence_english": "We ran out of laundry detergent.", + "pos": "noun", + "word_frequency": 15450 + }, + { + "word": "detour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a longer or roundabout way", + "example_sentence_english": "We had to take a detour because of road construction.", + "pos": "noun", + "word_frequency": 15451 + }, + { + "word": "downtime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time during which a machine or activity is not working or active", + "example_sentence_english": "The server experienced unexpected downtime last night.", + "pos": "noun", + "word_frequency": 15455 + }, + { + "word": "downwards", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toward a lower place or level", + "example_sentence_english": "The ball rolled downwards the hill.", + "pos": "adv", + "word_frequency": 15456 + }, + { + "word": "enlargement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the action or state of making or becoming larger", + "example_sentence_english": "The enlargement of the photograph revealed more details.", + "pos": "noun", + "word_frequency": 15458 + }, + { + "word": "equate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider one thing to be the same as or equivalent to another", + "example_sentence_english": "You shouldn't equate wealth with happiness.", + "pos": "verb", + "word_frequency": 15459 + }, + { + "word": "equestrian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rider or performer on horseback", + "example_sentence_english": "The equestrian skillfully guided her horse over the jumps.", + "pos": "noun", + "word_frequency": 15460 + }, + { + "word": "ethereal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely delicate and light in a way that seems too perfect for this world", + "example_sentence_english": "Her ethereal beauty captivated everyone in the room.", + "pos": "adj", + "word_frequency": 15461 + }, + { + "word": "expanse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wide, open area or extent", + "example_sentence_english": "They gazed out at the vast expanse of the desert.", + "pos": "noun", + "word_frequency": 15463 + }, + { + "word": "fanfare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a short, ceremonial tune or flourish played on brass instruments", + "example_sentence_english": "The arrival of the queen was met with a loud fanfare.", + "pos": "noun", + "word_frequency": 15466 + }, + { + "word": "fingernail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the hard, flat, translucent covering on the end of a finger", + "example_sentence_english": "She painted her fingernails bright red.", + "pos": "noun", + "word_frequency": 15468 + }, + { + "word": "fireman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person whose job is to extinguish fires", + "example_sentence_english": "The brave fireman rescued the cat from the tree.", + "pos": "noun", + "word_frequency": 15469 + }, + { + "word": "flask", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a container, typically made of metal or glass, used for holding liquids", + "example_sentence_english": "He carried a hot drink in his thermos flask.", + "pos": "noun", + "word_frequency": 15470 + }, + { + "word": "fluff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft, light material, such as down or cotton", + "example_sentence_english": "There was a lot of dust and fluff under the bed.", + "pos": "noun", + "word_frequency": 15471 + }, + { + "word": "footnote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an additional piece of information printed at the bottom of a page", + "example_sentence_english": "Please check the footnote for more details.", + "pos": "noun", + "word_frequency": 15472 + }, + { + "word": "frosty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very cold, with a thin layer of ice", + "example_sentence_english": "It was a frosty morning, and the grass was white.", + "pos": "adj", + "word_frequency": 15474 + }, + { + "word": "gearbox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a set of gears with their casing, especially in a motor vehicle", + "example_sentence_english": "The car needed a new gearbox.", + "pos": "noun", + "word_frequency": 15477 + }, + { + "word": "giver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who gives something", + "example_sentence_english": "She is a generous giver to charity.", + "pos": "noun", + "word_frequency": 15479 + }, + { + "word": "gnome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A small, bearded creature in folklore, typically wearing a pointed hat and living in a garden.", + "example_sentence_english": "The garden gnome stood proudly among the flowers.", + "pos": "noun", + "word_frequency": 15480 + }, + { + "word": "gunpoint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The threat of being shot.", + "example_sentence_english": "He was forced to hand over his wallet at gunpoint.", + "pos": "noun", + "word_frequency": 15481 + }, + { + "word": "haute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "High-class; fashionable.", + "example_sentence_english": "She admired the haute couture designs on the runway.", + "pos": "adj", + "word_frequency": 15487 + }, + { + "word": "heartache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Emotional pain or grief.", + "example_sentence_english": "Losing her pet caused her immense heartache.", + "pos": "noun", + "word_frequency": 15488 + }, + { + "word": "individuality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality or character of a particular person or thing that distinguishes them from others.", + "example_sentence_english": "The artist encouraged each student to express their individuality.", + "pos": "noun", + "word_frequency": 15491 + }, + { + "word": "intertwine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To twist or entangle together.", + "example_sentence_english": "The branches of the two trees intertwined over the years.", + "pos": "verb", + "word_frequency": 15492 + }, + { + "word": "janitor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person employed to look after a building.", + "example_sentence_english": "The janitor cleaned the school hallways every evening.", + "pos": "noun", + "word_frequency": 15493 + }, + { + "word": "judgmental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Having or displaying an excessively critical point of view.", + "example_sentence_english": "Try not to be too judgmental of others' choices.", + "pos": "adj", + "word_frequency": 15494 + }, + { + "word": "lien", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A right to keep possession of property belonging to another person until a debt owed by that person is discharged.", + "example_sentence_english": "The bank placed a lien on the property until the loan was repaid.", + "pos": "noun", + "word_frequency": 15496 + }, + { + "word": "limousine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large, luxurious car, especially one driven by a chauffeur.", + "example_sentence_english": "They arrived at the event in a long black limousine.", + "pos": "noun", + "word_frequency": 15497 + }, + { + "word": "linden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A deciduous tree with heart-shaped leaves and fragrant yellow flowers.", + "example_sentence_english": "A beautiful linden tree stood in the center of the park.", + "pos": "noun", + "word_frequency": 15498 + }, + { + "word": "lupus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A chronic autoimmune disease.", + "example_sentence_english": "She was diagnosed with lupus after experiencing persistent fatigue.", + "pos": "noun", + "word_frequency": 15501 + }, + { + "word": "lymph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A colorless fluid containing white blood cells, which bathes the tissues and drains through the lymphatic system into the blood.", + "example_sentence_english": "The lymphatic system carries lymph throughout the body.", + "pos": "noun", + "word_frequency": 15503 + }, + { + "word": "manure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Animal dung used for fertilizing land.", + "example_sentence_english": "Farmers spread manure on the fields to enrich the soil.", + "pos": "noun", + "word_frequency": 15507 + }, + { + "word": "meatball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A ball of ground meat, often mixed with breadcrumbs and seasonings.", + "example_sentence_english": "She served spaghetti with large meatballs for dinner.", + "pos": "noun", + "word_frequency": 15510 + }, + { + "word": "meningitis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Inflammation of the membranes surrounding the brain and spinal cord.", + "example_sentence_english": "Meningitis can be a very serious infection.", + "pos": "noun", + "word_frequency": 15511 + }, + { + "word": "meteorite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A piece of rock or metal that has fallen to Earth from space as a meteor.", + "example_sentence_english": "Scientists found a large meteorite in the desert.", + "pos": "noun", + "word_frequency": 15512 + }, + { + "word": "misogyny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Dislike of, contempt for, or ingrained prejudice against women.", + "example_sentence_english": "The play explored themes of misogyny and gender inequality.", + "pos": "noun", + "word_frequency": 15516 + }, + { + "word": "mrna", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Messenger ribonucleic acid, a type of RNA that carries genetic information from DNA to the ribosome.", + "example_sentence_english": "mRNA vaccines use messenger RNA to teach our cells how to make a protein.", + "pos": "noun", + "word_frequency": 15517 + }, + { + "word": "multiplier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A quantity by which a given number is to be multiplied; a factor that amplifies an effect.", + "example_sentence_english": "In economics, the multiplier effect describes how an initial change in spending can lead to a larger change in national income.", + "pos": "noun", + "word_frequency": 15518 + }, + { + "word": "newbie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beginner", + "example_sentence_english": "As a newbie, I'm still learning how to use this software.", + "pos": "noun", + "word_frequency": 15520 + }, + { + "word": "northbound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heading north", + "example_sentence_english": "The northbound train was delayed due to heavy snow.", + "pos": "adj", + "word_frequency": 15522 + }, + { + "word": "oblique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indirect; slanting", + "example_sentence_english": "He made an oblique reference to the problem without directly addressing it.", + "pos": "adj", + "word_frequency": 15523 + }, + { + "word": "obscurity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being unknown or unclear", + "example_sentence_english": "After years of obscurity, the artist finally gained recognition.", + "pos": "noun", + "word_frequency": 15524 + }, + { + "word": "onslaught", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fierce or destructive attack", + "example_sentence_english": "The city prepared for the onslaught of the approaching storm.", + "pos": "noun", + "word_frequency": 15527 + }, + { + "word": "opal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a precious gemstone", + "example_sentence_english": "She wore a beautiful necklace with a shimmering opal pendant.", + "pos": "noun", + "word_frequency": 15528 + }, + { + "word": "organisational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to an organization", + "example_sentence_english": "Good organisational skills are essential for this role.", + "pos": "adj", + "word_frequency": 15529 + }, + { + "word": "palsy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paralysis, especially that which is accompanied by involuntary tremors", + "example_sentence_english": "Cerebral palsy affects muscle control and coordination.", + "pos": "noun", + "word_frequency": 15531 + }, + { + "word": "paramilitary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a force that is not part of a country's armed forces but is organized like an army", + "example_sentence_english": "The government deployed paramilitary forces to maintain order.", + "pos": "noun", + "word_frequency": 15532 + }, + { + "word": "partridge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medium-sized game bird", + "example_sentence_english": "A partridge flew out from the bushes as we walked by.", + "pos": "noun", + "word_frequency": 15533 + }, + { + "word": "permissible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allowed; permitted", + "example_sentence_english": "Smoking is not permissible inside the building.", + "pos": "adj", + "word_frequency": 15535 + }, + { + "word": "platonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of love or friendship) intimate and affectionate but not sexual", + "example_sentence_english": "They had a purely platonic relationship, based on mutual respect.", + "pos": "adj", + "word_frequency": 15536 + }, + { + "word": "polka", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lively dance of Bohemian origin", + "example_sentence_english": "The band played a lively polka, and everyone started dancing.", + "pos": "noun", + "word_frequency": 15537 + }, + { + "word": "primate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mammal of the order Primates (e.g., monkeys, apes, humans)", + "example_sentence_english": "Humans, monkeys, and apes are all types of primates.", + "pos": "noun", + "word_frequency": 15538 + }, + { + "word": "rancho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ranch or large estate, especially in the southwestern US or Mexico", + "example_sentence_english": "The old rancho had been converted into a beautiful hotel.", + "pos": "noun", + "word_frequency": 15540 + }, + { + "word": "realisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of becoming aware of something; achievement", + "example_sentence_english": "The sudden realisation of her mistake made her blush.", + "pos": "noun", + "word_frequency": 15542 + }, + { + "word": "recapture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capture again; experience again", + "example_sentence_english": "The police managed to recapture the escaped prisoner.", + "pos": "verb", + "word_frequency": 15543 + }, + { + "word": "recurrence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fact of happening again", + "example_sentence_english": "Doctors are trying to prevent the recurrence of the illness.", + "pos": "noun", + "word_frequency": 15544 + }, + { + "word": "refinement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of improving something; elegance", + "example_sentence_english": "The design underwent several refinements before it was finalized.", + "pos": "noun", + "word_frequency": 15545 + }, + { + "word": "reparation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the making of amends for a wrong one has done, by paying money to or otherwise helping those who have been wronged", + "example_sentence_english": "The country demanded reparations for the damage caused during the war.", + "pos": "noun", + "word_frequency": 15547 + }, + { + "word": "repel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drive or force back or away", + "example_sentence_english": "The strong odor of garlic can repel mosquitoes.", + "pos": "verb", + "word_frequency": 15548 + }, + { + "word": "revamp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of improving the form, structure, or appearance of something", + "example_sentence_english": "The old restaurant underwent a complete revamp.", + "pos": "noun", + "word_frequency": 15549 + }, + { + "word": "rudder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flat piece hinged vertically near the stern of a boat or aircraft for steering", + "example_sentence_english": "The pilot adjusted the rudder to change the direction of the plane.", + "pos": "noun", + "word_frequency": 15552 + }, + { + "word": "rung", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a horizontal support on a ladder", + "example_sentence_english": "He climbed to the top rung of the ladder.", + "pos": "noun", + "word_frequency": 15554 + }, + { + "word": "seaman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who works on a ship; a sailor", + "example_sentence_english": "The old seaman had many stories about his voyages.", + "pos": "noun", + "word_frequency": 15556 + }, + { + "word": "sensibility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to appreciate and respond to complex emotional or aesthetic influences", + "example_sentence_english": "Her artistic sensibility was evident in her paintings.", + "pos": "noun", + "word_frequency": 15557 + }, + { + "word": "skyscraper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a very tall building", + "example_sentence_english": "New York City is famous for its impressive skyscrapers.", + "pos": "noun", + "word_frequency": 15559 + }, + { + "word": "slumber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleep", + "example_sentence_english": "He fell into a deep slumber.", + "pos": "noun", + "word_frequency": 15560 + }, + { + "word": "staunch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loyal, firm", + "example_sentence_english": "She is a staunch supporter of human rights.", + "pos": "adjective", + "word_frequency": 15562 + }, + { + "word": "stiffness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigidity, lack of flexibility", + "example_sentence_english": "He felt a stiffness in his neck after sleeping awkwardly.", + "pos": "noun", + "word_frequency": 15563 + }, + { + "word": "swoop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden downward movement", + "example_sentence_english": "The hawk made a sudden swoop to catch its prey.", + "pos": "noun", + "word_frequency": 15565 + }, + { + "word": "synchronize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make things happen at the same time", + "example_sentence_english": "We need to synchronize our watches.", + "pos": "verb", + "word_frequency": 15566 + }, + { + "word": "telly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "television (informal)", + "example_sentence_english": "Let's watch some telly tonight.", + "pos": "noun", + "word_frequency": 15569 + }, + { + "word": "tentacle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, flexible arm-like limb", + "example_sentence_english": "The octopus used its tentacles to grab the crab.", + "pos": "noun", + "word_frequency": 15570 + }, + { + "word": "topology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a branch of mathematics", + "example_sentence_english": "Topology is a complex field of mathematics.", + "pos": "noun", + "word_frequency": 15574 + }, + { + "word": "transatlantic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crossing the Atlantic Ocean", + "example_sentence_english": "She booked a transatlantic flight to London.", + "pos": "adjective", + "word_frequency": 15575 + }, + { + "word": "tunisian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Tunisia", + "example_sentence_english": "He enjoyed the Tunisian cuisine.", + "pos": "adjective", + "word_frequency": 15576 + }, + { + "word": "ugandan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Uganda", + "example_sentence_english": "The Ugandan coffee is very strong.", + "pos": "adjective", + "word_frequency": 15577 + }, + { + "word": "uncontrolled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not controlled or restrained", + "example_sentence_english": "The fire spread with uncontrolled speed.", + "pos": "adjective", + "word_frequency": 15578 + }, + { + "word": "undecided", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not having made a decision", + "example_sentence_english": "She was undecided about which university to choose.", + "pos": "adjective", + "word_frequency": 15579 + }, + { + "word": "unparalleled", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having no equal or parallel", + "example_sentence_english": "His talent is truly unparalleled.", + "pos": "adjective", + "word_frequency": 15580 + }, + { + "word": "unsolicited", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not requested or invited", + "example_sentence_english": "He received a lot of unsolicited advice.", + "pos": "adjective", + "word_frequency": 15581 + }, + { + "word": "unworthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not deserving of respect or attention", + "example_sentence_english": "He felt unworthy of her kindness.", + "pos": "adjective", + "word_frequency": 15582 + }, + { + "word": "utensil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool or implement, especially for cooking or eating", + "example_sentence_english": "Please put the cooking utensils in the drawer.", + "pos": "noun", + "word_frequency": 15583 + }, + { + "word": "vocation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong feeling of suitability for a particular career or occupation", + "example_sentence_english": "She felt that teaching was her true vocation.", + "pos": "noun", + "word_frequency": 15584 + }, + { + "word": "whoop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a loud cry of joy or excitement", + "example_sentence_english": "They let out a whoop of delight.", + "pos": "noun", + "word_frequency": 15588 + }, + { + "word": "abbreviate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shorten", + "example_sentence_english": "We often abbreviate long words.", + "pos": "verb", + "word_frequency": 15598 + }, + { + "word": "admirer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who admires someone or something", + "example_sentence_english": "She has many secret admirers.", + "pos": "noun", + "word_frequency": 15599 + }, + { + "word": "aerobic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or denoting exercise that improves or is intended to improve the efficiency of the body's cardiovascular system in absorbing and transporting oxygen.", + "example_sentence_english": "Aerobic exercise is good for your heart.", + "pos": "adjective", + "word_frequency": 15600 + }, + { + "word": "aerodynamic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a shape that reduces drag from air moving past it.", + "example_sentence_english": "The car's aerodynamic design helps it go faster.", + "pos": "adjective", + "word_frequency": 15601 + }, + { + "word": "aesthetically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to the appreciation of beauty.", + "example_sentence_english": "The garden was designed to be aesthetically pleasing.", + "pos": "adverb", + "word_frequency": 15602 + }, + { + "word": "agitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of anxiety or nervous excitement.", + "example_sentence_english": "He was in a state of agitation before the exam.", + "pos": "noun", + "word_frequency": 15603 + }, + { + "word": "agreeable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasant or pleasing.", + "example_sentence_english": "We spent an agreeable afternoon by the lake.", + "pos": "adjective", + "word_frequency": 15604 + }, + { + "word": "algebraic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving algebra.", + "example_sentence_english": "We need to solve this algebraic equation.", + "pos": "adjective", + "word_frequency": 15607 + }, + { + "word": "artefact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an object made by a human being, typically an item of cultural or historical interest.", + "example_sentence_english": "The museum displayed ancient artefacts from Egypt.", + "pos": "noun", + "word_frequency": 15608 + }, + { + "word": "assertive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing a confident and forceful personality.", + "example_sentence_english": "It's important to be assertive in negotiations.", + "pos": "adjective", + "word_frequency": 15609 + }, + { + "word": "assimilation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of taking in and fully understanding information or ideas.", + "example_sentence_english": "The assimilation of new immigrants into society can be challenging.", + "pos": "noun", + "word_frequency": 15610 + }, + { + "word": "backseat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a seat in the back of a car.", + "example_sentence_english": "The children sat in the backseat of the car.", + "pos": "noun", + "word_frequency": 15613 + }, + { + "word": "baseman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player positioned at one of the bases in baseball.", + "example_sentence_english": "The first baseman caught the ball.", + "pos": "noun", + "word_frequency": 15614 + }, + { + "word": "brainer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that requires little or no thought.", + "example_sentence_english": "Deciding to take the easy path was a no-brainer.", + "pos": "noun", + "word_frequency": 15621 + }, + { + "word": "breakaway", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an act of breaking away from a group or organization.", + "example_sentence_english": "The breakaway group formed a new political party.", + "pos": "noun", + "word_frequency": 15622 + }, + { + "word": "breathless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panting; out of breath.", + "example_sentence_english": "She was breathless after running up the stairs.", + "pos": "adjective", + "word_frequency": 15623 + }, + { + "word": "carefree", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free from anxiety or responsibility.", + "example_sentence_english": "They enjoyed a carefree summer vacation.", + "pos": "adjective", + "word_frequency": 15626 + }, + { + "word": "caricature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a picture, description, or imitation of a person or thing in which striking characteristics are exaggerated to create a comic or grotesque effect.", + "example_sentence_english": "The artist drew a caricature of the politician.", + "pos": "noun", + "word_frequency": 15627 + }, + { + "word": "carton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a light box or container, typically made of cardboard or plastic.", + "example_sentence_english": "Please buy a carton of milk from the store.", + "pos": "noun", + "word_frequency": 15628 + }, + { + "word": "chandelier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, decorative hanging light with branches for several bulbs or candles.", + "example_sentence_english": "A beautiful crystal chandelier hung in the dining room.", + "pos": "noun", + "word_frequency": 15633 + }, + { + "word": "chute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sloping channel or slide for conveying things to a lower level.", + "example_sentence_english": "The laundry went down the chute to the basement.", + "pos": "noun", + "word_frequency": 15635 + }, + { + "word": "cliché", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a phrase or opinion that is overused and betrays a lack of original thought.", + "example_sentence_english": "\"Time heals all wounds\" is a common cliché.", + "pos": "noun", + "word_frequency": 15637 + }, + { + "word": "clot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thick mass of coagulated liquid, especially blood.", + "example_sentence_english": "The doctor was concerned about the blood clot.", + "pos": "noun", + "word_frequency": 15638 + }, + { + "word": "companionship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the friendly company or society of others.", + "example_sentence_english": "She valued the companionship of her friends.", + "pos": "noun", + "word_frequency": 15639 + }, + { + "word": "complacent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-satisfied, unconcerned", + "example_sentence_english": "After winning easily, the team became complacent and lost the next game.", + "pos": "adjective", + "word_frequency": 15640 + }, + { + "word": "complicit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involved in an illegal or questionable act", + "example_sentence_english": "He was found complicit in the fraud scheme.", + "pos": "adjective", + "word_frequency": 15641 + }, + { + "word": "coolant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fluid used to reduce heat", + "example_sentence_english": "The car's engine overheated because it was low on coolant.", + "pos": "noun", + "word_frequency": 15642 + }, + { + "word": "counteract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to act against something to reduce its effect", + "example_sentence_english": "Exercise can help to counteract the effects of stress.", + "pos": "verb", + "word_frequency": 15644 + }, + { + "word": "courtship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the period when a man and woman are developing a romantic relationship", + "example_sentence_english": "Their courtship lasted for two years before they got married.", + "pos": "noun", + "word_frequency": 15645 + }, + { + "word": "cram", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to study intensively over a short period; to force into a small space", + "example_sentence_english": "She had to cram for her exams all night.", + "pos": "verb", + "word_frequency": 15646 + }, + { + "word": "craven", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cowardly", + "example_sentence_english": "The craven knight refused to face the dragon.", + "pos": "adjective", + "word_frequency": 15647 + }, + { + "word": "debilitate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone very weak and infirm", + "example_sentence_english": "The illness can severely debilitate patients.", + "pos": "verb", + "word_frequency": 15651 + }, + { + "word": "deepen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become deeper", + "example_sentence_english": "Their friendship began to deepen over time.", + "pos": "verb", + "word_frequency": 15652 + }, + { + "word": "devotee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is very interested in and enthusiastic about someone or something", + "example_sentence_english": "She is a devotee of classical music.", + "pos": "noun", + "word_frequency": 15654 + }, + { + "word": "downturn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a decline in economic activity", + "example_sentence_english": "The company struggled during the recent economic downturn.", + "pos": "noun", + "word_frequency": 15655 + }, + { + "word": "dystopian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an imagined state or society where there is great suffering or injustice", + "example_sentence_english": "The novel depicts a bleak dystopian future.", + "pos": "adjective", + "word_frequency": 15657 + }, + { + "word": "electrically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by means of electricity", + "example_sentence_english": "The car is powered electrically.", + "pos": "adverb", + "word_frequency": 15658 + }, + { + "word": "enclave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a territory or cultural group surrounded by a larger one", + "example_sentence_english": "The small village was an artistic enclave within the bustling city.", + "pos": "noun", + "word_frequency": 15661 + }, + { + "word": "entourage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of people attending or surrounding an important person", + "example_sentence_english": "The celebrity arrived with her entire entourage.", + "pos": "noun", + "word_frequency": 15662 + }, + { + "word": "epoch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a period of time in history or a person's life, typically one marked by notable events", + "example_sentence_english": "The invention of the internet marked a new epoch in communication.", + "pos": "noun", + "word_frequency": 15663 + }, + { + "word": "extinguish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put out (a fire or light)", + "example_sentence_english": "The firefighters worked quickly to extinguish the blaze.", + "pos": "verb", + "word_frequency": 15665 + }, + { + "word": "femme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a woman (French loanword, often used in specific phrases like 'femme fatale')", + "example_sentence_english": "She played the role of a classic femme fatale.", + "pos": "noun", + "word_frequency": 15667 + }, + { + "word": "fibrosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the thickening and scarring of connective tissue", + "example_sentence_english": "Pulmonary fibrosis affects the lungs.", + "pos": "noun", + "word_frequency": 15668 + }, + { + "word": "fielder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player in cricket or baseball who fields the ball", + "example_sentence_english": "The outfielder made an amazing catch.", + "pos": "noun", + "word_frequency": 15669 + }, + { + "word": "foggy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of fog; unclear", + "example_sentence_english": "It was a foggy morning, making driving difficult.", + "pos": "adjective", + "word_frequency": 15670 + }, + { + "word": "forgery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of forging or producing a copy of a document, signature, banknote, or work of art", + "example_sentence_english": "The painting was later discovered to be a forgery.", + "pos": "noun", + "word_frequency": 15671 + }, + { + "word": "functionally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to the way something works or operates", + "example_sentence_english": "The old machine is still functionally sound.", + "pos": "adverb", + "word_frequency": 15673 + }, + { + "word": "furiously", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that shows great anger; with great energy or speed", + "example_sentence_english": "He worked furiously to meet the deadline.", + "pos": "adverb", + "word_frequency": 15674 + }, + { + "word": "gape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stare with an open mouth; to open wide", + "example_sentence_english": "The crowd stood gaping at the spectacular fireworks display.", + "pos": "verb", + "word_frequency": 15675 + }, + { + "word": "gentry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "people of good social position, especially those of the class next below nobility", + "example_sentence_english": "The local gentry owned most of the land.", + "pos": "noun", + "word_frequency": 15676 + }, + { + "word": "germanic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Germanic peoples or languages", + "example_sentence_english": "English is a Germanic language.", + "pos": "adjective", + "word_frequency": 15677 + }, + { + "word": "gimmick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a trick or device intended to attract attention, publicity, or trade", + "example_sentence_english": "The new product's main selling point was just a marketing gimmick.", + "pos": "noun", + "word_frequency": 15679 + }, + { + "word": "gladiator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person, often a slave or captive, who fought to the death in an arena for public entertainment in ancient Rome.", + "example_sentence_english": "The gladiator raised his sword, ready for the final blow.", + "pos": "noun", + "word_frequency": 15680 + }, + { + "word": "glossary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An alphabetical list of terms with definitions, typically found at the end of a book.", + "example_sentence_english": "Check the glossary at the back of the book for the meaning of unfamiliar words.", + "pos": "noun", + "word_frequency": 15682 + }, + { + "word": "groundwork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Preliminary work; the basic preparation for something.", + "example_sentence_english": "They laid the groundwork for the new project by conducting extensive research.", + "pos": "noun", + "word_frequency": 15684 + }, + { + "word": "gymnasium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large room or building for indoor sports and physical exercise.", + "example_sentence_english": "The school gymnasium is used for basketball and volleyball.", + "pos": "noun", + "word_frequency": 15685 + }, + { + "word": "imposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act of imposing something, especially a burden or unwelcome demand.", + "example_sentence_english": "I hope my request isn't too much of an imposition.", + "pos": "noun", + "word_frequency": 15689 + }, + { + "word": "impromptu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Done without being planned, organized, or rehearsed.", + "example_sentence_english": "He gave an impromptu speech at the party.", + "pos": "adjective", + "word_frequency": 15690 + }, + { + "word": "indulgence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act of allowing oneself to enjoy a particular pleasure, or a thing that is indulged in.", + "example_sentence_english": "Chocolate is my favorite indulgence.", + "pos": "noun", + "word_frequency": 15691 + }, + { + "word": "intersect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To cross or meet each other.", + "example_sentence_english": "The two roads intersect just beyond the bridge.", + "pos": "verb", + "word_frequency": 15692 + }, + { + "word": "iodine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A chemical element, often used as an antiseptic.", + "example_sentence_english": "Iodine is essential for thyroid function.", + "pos": "noun", + "word_frequency": 15693 + }, + { + "word": "keel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The main structural beam running lengthwise along the bottom of a boat or ship.", + "example_sentence_english": "The ship's keel was damaged after hitting the reef.", + "pos": "noun", + "word_frequency": 15699 + }, + { + "word": "labourer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person doing unskilled manual work for wages.", + "example_sentence_english": "The labourer spent all day digging trenches.", + "pos": "noun", + "word_frequency": 15703 + }, + { + "word": "lewd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Crude and offensive in a sexual way.", + "example_sentence_english": "He was fired for making lewd comments to his colleagues.", + "pos": "adjective", + "word_frequency": 15706 + }, + { + "word": "lifeboat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small boat carried by a ship for use in an emergency, or a boat used for rescuing people at sea.", + "example_sentence_english": "The crew lowered the lifeboat as the ship began to sink.", + "pos": "noun", + "word_frequency": 15707 + }, + { + "word": "liturgy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A form or collection of forms of public worship.", + "example_sentence_english": "The church's liturgy includes hymns, prayers, and readings.", + "pos": "noun", + "word_frequency": 15708 + }, + { + "word": "longstanding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Having existed or continued for a long time.", + "example_sentence_english": "They have a longstanding friendship.", + "pos": "adjective", + "word_frequency": 15712 + }, + { + "word": "magma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Molten rock found beneath the Earth's surface.", + "example_sentence_english": "The volcano erupted, spewing hot magma and ash.", + "pos": "noun", + "word_frequency": 15714 + }, + { + "word": "mammalian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or characteristic of mammals.", + "example_sentence_english": "Humans are mammalian creatures.", + "pos": "adjective", + "word_frequency": 15715 + }, + { + "word": "miraculously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a way that is very surprising or fortunate, as if by a miracle.", + "example_sentence_english": "Miraculously, no one was seriously injured in the accident.", + "pos": "adverb", + "word_frequency": 15718 + }, + { + "word": "motorbike", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A two-wheeled motor vehicle.", + "example_sentence_english": "He rode his motorbike through the winding country roads.", + "pos": "noun", + "word_frequency": 15719 + }, + { + "word": "nonexistent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not existing", + "example_sentence_english": "The evidence for his claims was completely nonexistent.", + "pos": "adjective", + "word_frequency": 15721 + }, + { + "word": "notoriety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being famous or well known for some bad quality or deed", + "example_sentence_english": "He gained notoriety for his controversial opinions.", + "pos": "noun", + "word_frequency": 15722 + }, + { + "word": "nutty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "like nuts; crazy or eccentric", + "example_sentence_english": "The cake had a delicious nutty flavor.", + "pos": "adjective", + "word_frequency": 15723 + }, + { + "word": "obedient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complying or willing to comply with an order or request", + "example_sentence_english": "The dog was very obedient and followed all commands.", + "pos": "adjective", + "word_frequency": 15725 + }, + { + "word": "oculus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a circular opening, especially at the apex of a dome", + "example_sentence_english": "The Pantheon in Rome is famous for its large oculus.", + "pos": "noun", + "word_frequency": 15726 + }, + { + "word": "ornate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elaborately or highly decorated", + "example_sentence_english": "The ornate carvings on the old building were impressive.", + "pos": "adjective", + "word_frequency": 15728 + }, + { + "word": "oust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drive out or expel (someone) from a position or place", + "example_sentence_english": "The rebels tried to oust the dictator from power.", + "pos": "verb", + "word_frequency": 15729 + }, + { + "word": "palpable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to be touched or felt; clear to the mind or senses", + "example_sentence_english": "There was a palpable sense of tension in the room.", + "pos": "adjective", + "word_frequency": 15730 + }, + { + "word": "perpetuate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make (something) continue indefinitely", + "example_sentence_english": "The cycle of poverty is perpetuated by lack of education.", + "pos": "verb", + "word_frequency": 15731 + }, + { + "word": "perverse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing a deliberate and obstinate desire to behave in a way that is unreasonable or unacceptable", + "example_sentence_english": "He took a perverse delight in annoying his colleagues.", + "pos": "adjective", + "word_frequency": 15732 + }, + { + "word": "philharmonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a symphony orchestra", + "example_sentence_english": "The New York Philharmonic performed a classical concert.", + "pos": "adjective", + "word_frequency": 15734 + }, + { + "word": "plume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, soft feather or arrangement of feathers", + "example_sentence_english": "The knight's helmet was adorned with a colorful plume.", + "pos": "noun", + "word_frequency": 15735 + }, + { + "word": "plump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a full, rounded shape", + "example_sentence_english": "The baby had plump cheeks and rosy skin.", + "pos": "adjective", + "word_frequency": 15736 + }, + { + "word": "prequel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a story or movie that precedes an earlier one", + "example_sentence_english": "The new movie is a prequel to the popular fantasy series.", + "pos": "noun", + "word_frequency": 15737 + }, + { + "word": "prophetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accurately describing or predicting what will happen in the future", + "example_sentence_english": "His words proved to be prophetic, as the event unfolded exactly as he predicted.", + "pos": "adjective", + "word_frequency": 15738 + }, + { + "word": "provocation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "action or speech that makes someone annoyed or angry, especially deliberately", + "example_sentence_english": "He reacted violently to the slightest provocation.", + "pos": "noun", + "word_frequency": 15739 + }, + { + "word": "purify", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remove contaminants from", + "example_sentence_english": "The water filter helps to purify drinking water.", + "pos": "verb", + "word_frequency": 15740 + }, + { + "word": "radiology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the science dealing with X-rays and other high-energy radiation", + "example_sentence_english": "She decided to pursue a career in radiology.", + "pos": "noun", + "word_frequency": 15741 + }, + { + "word": "raffle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lottery in which prizes are won by drawing tickets", + "example_sentence_english": "They organized a raffle to raise money for the charity.", + "pos": "noun", + "word_frequency": 15742 + }, + { + "word": "ragged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old and torn; having a rough, uneven, or jagged edge or surface", + "example_sentence_english": "He wore a ragged coat that was too big for him.", + "pos": "adjective", + "word_frequency": 15743 + }, + { + "word": "recoil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suddenly spring or flinch back in fear, horror, or disgust", + "example_sentence_english": "She recoiled in horror at the sight of the snake.", + "pos": "verb", + "word_frequency": 15744 + }, + { + "word": "redo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "do again or differently", + "example_sentence_english": "I had to redo the entire assignment because of a mistake.", + "pos": "verb", + "word_frequency": 15745 + }, + { + "word": "rejoin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "join again; reply to (someone) in a quick or witty way", + "example_sentence_english": "After a short break, he will rejoin the team.", + "pos": "verb", + "word_frequency": 15746 + }, + { + "word": "remission", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a temporary diminution of the seriousness or intensity of disease or pain", + "example_sentence_english": "The patient's cancer went into remission after treatment.", + "pos": "noun", + "word_frequency": 15747 + }, + { + "word": "renounce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formally declare one's abandonment of (a claim, right, or possession)", + "example_sentence_english": "He decided to renounce his claim to the throne.", + "pos": "verb", + "word_frequency": 15748 + }, + { + "word": "repentance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of repenting; sincere regret or remorse", + "example_sentence_english": "He showed deep repentance for his past mistakes.", + "pos": "noun", + "word_frequency": 15749 + }, + { + "word": "resonate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "produce or be filled with a deep, full, reverberating sound; evoke or suggest images, memories, or emotions", + "example_sentence_english": "His speech resonated with the audience, who shared his views.", + "pos": "verb", + "word_frequency": 15750 + }, + { + "word": "restitution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the restoration of something lost or stolen to its proper owner; recompense for injury or loss", + "example_sentence_english": "The court ordered him to make restitution to the victims.", + "pos": "noun", + "word_frequency": 15751 + }, + { + "word": "sacrament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a religious ceremony or ritual regarded as imparting divine grace", + "example_sentence_english": "Baptism is an important sacrament in many Christian churches.", + "pos": "noun", + "word_frequency": 15755 + }, + { + "word": "scholastic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or concerning schools and education", + "example_sentence_english": "He excelled in all his scholastic endeavors.", + "pos": "adjective", + "word_frequency": 15756 + }, + { + "word": "scourge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that causes great trouble or suffering", + "example_sentence_english": "The disease was a scourge on the population for centuries.", + "pos": "noun", + "word_frequency": 15757 + }, + { + "word": "signage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signs collectively", + "example_sentence_english": "The new signage made it easier to find the correct department.", + "pos": "noun", + "word_frequency": 15760 + }, + { + "word": "slag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waste material from smelting", + "example_sentence_english": "The furnace produced a significant amount of slag.", + "pos": "noun", + "word_frequency": 15761 + }, + { + "word": "sneeze", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to expel air from the nose and mouth suddenly", + "example_sentence_english": "He tried to suppress a sneeze during the quiet lecture.", + "pos": "verb", + "word_frequency": 15762 + }, + { + "word": "sobriety", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being sober", + "example_sentence_english": "After years of struggle, he finally achieved sobriety.", + "pos": "noun", + "word_frequency": 15763 + }, + { + "word": "songwriting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act or process of writing songs", + "example_sentence_english": "Her passion for songwriting began at a young age.", + "pos": "noun", + "word_frequency": 15765 + }, + { + "word": "sorely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to a severe or painful degree", + "example_sentence_english": "The team sorely missed their injured captain.", + "pos": "adverb", + "word_frequency": 15766 + }, + { + "word": "sprawl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spread out in an untidy way", + "example_sentence_english": "The city continued to sprawl outwards, consuming more farmland.", + "pos": "verb", + "word_frequency": 15767 + }, + { + "word": "sprinter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who runs in a sprint", + "example_sentence_english": "The sprinter trained hard for the upcoming race.", + "pos": "noun", + "word_frequency": 15768 + }, + { + "word": "sprite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, elusive supernatural being; a computer graphic", + "example_sentence_english": "In folklore, a sprite is often depicted as a mischievous fairy.", + "pos": "noun", + "word_frequency": 15769 + }, + { + "word": "stagnation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of not flowing or developing", + "example_sentence_english": "Economic stagnation led to widespread unemployment.", + "pos": "noun", + "word_frequency": 15770 + }, + { + "word": "stead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "place or role that someone or something should have", + "example_sentence_english": "My colleague will attend the meeting in my stead.", + "pos": "noun", + "word_frequency": 15771 + }, + { + "word": "structurally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a structural way", + "example_sentence_english": "The old bridge was structurally unsound and needed repairs.", + "pos": "adverb", + "word_frequency": 15772 + }, + { + "word": "sulfate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a salt or ester of sulfuric acid", + "example_sentence_english": "Copper sulfate is often used as a fungicide.", + "pos": "noun", + "word_frequency": 15774 + }, + { + "word": "swag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promotional items; confident style", + "example_sentence_english": "They gave out free swag at the conference, including pens and t-shirts.", + "pos": "noun", + "word_frequency": 15777 + }, + { + "word": "sweatshirt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a loose, long-sleeved, collarless pullover", + "example_sentence_english": "She wore a comfortable sweatshirt to the gym.", + "pos": "noun", + "word_frequency": 15778 + }, + { + "word": "tangent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a completely different line of thought or action", + "example_sentence_english": "The speaker went off on a tangent about his personal life.", + "pos": "noun", + "word_frequency": 15779 + }, + { + "word": "tout", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to attempt to persuade people of the merits of", + "example_sentence_english": "The company continued to tout its new product as revolutionary.", + "pos": "verb", + "word_frequency": 15783 + }, + { + "word": "tracer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used to track a process", + "example_sentence_english": "Scientists used a radioactive tracer to follow the flow of water.", + "pos": "noun", + "word_frequency": 15784 + }, + { + "word": "transporter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that transports", + "example_sentence_english": "The transporter truck carried heavy machinery to the construction site.", + "pos": "noun", + "word_frequency": 15785 + }, + { + "word": "unearth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dig up from the earth; to discover", + "example_sentence_english": "Archaeologists hope to unearth ancient artifacts at the site.", + "pos": "verb", + "word_frequency": 15787 + }, + { + "word": "uniformly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a uniform manner", + "example_sentence_english": "The students were uniformly dressed in their school uniforms.", + "pos": "adverb", + "word_frequency": 15788 + }, + { + "word": "unqualified", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not having the necessary qualifications; complete", + "example_sentence_english": "He gave his unqualified support to the proposal.", + "pos": "adjective", + "word_frequency": 15789 + }, + { + "word": "unquestionably", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beyond doubt", + "example_sentence_english": "She was unquestionably the best candidate for the job.", + "pos": "adverb", + "word_frequency": 15790 + }, + { + "word": "unravel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undo twisted threads; to solve a mystery", + "example_sentence_english": "The detective worked to unravel the complex plot.", + "pos": "verb", + "word_frequency": 15791 + }, + { + "word": "variously", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in different ways or at different times", + "example_sentence_english": "The problem has been variously described as a crisis or a challenge.", + "pos": "adverb", + "word_frequency": 15792 + }, + { + "word": "veterinarian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an animal doctor", + "example_sentence_english": "We took our dog to the veterinarian for its annual check-up.", + "pos": "noun", + "word_frequency": 15793 + }, + { + "word": "wasteland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unused or desolate area of land", + "example_sentence_english": "The abandoned factory site became a barren wasteland.", + "pos": "noun", + "word_frequency": 15797 + }, + { + "word": "watchdog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or group that monitors", + "example_sentence_english": "The consumer watchdog group exposed the company's unfair practices.", + "pos": "noun", + "word_frequency": 15798 + }, + { + "word": "watery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "containing too much water; weak", + "example_sentence_english": "The soup was thin and watery, lacking flavor.", + "pos": "adjective", + "word_frequency": 15799 + }, + { + "word": "weasel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, slender carnivorous mammal", + "example_sentence_english": "The weasel quickly darted across the field.", + "pos": "noun", + "word_frequency": 15800 + }, + { + "word": "zest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great enthusiasm and energy; the outer colored part of the peel of a citrus fruit", + "example_sentence_english": "She approached the challenge with great zest.", + "pos": "noun", + "word_frequency": 15805 + }, + { + "word": "zoology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the scientific study of animals", + "example_sentence_english": "He decided to major in zoology at university.", + "pos": "noun", + "word_frequency": 15806 + }, + { + "word": "abstinence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of refraining from indulging in something", + "example_sentence_english": "He practiced abstinence from alcohol for a year.", + "pos": "noun", + "word_frequency": 15810 + }, + { + "word": "academically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to academic study", + "example_sentence_english": "Academically, she was very strong in mathematics.", + "pos": "adverb", + "word_frequency": 15811 + }, + { + "word": "adventurer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who enjoys or seeks adventure", + "example_sentence_english": "He was a true adventurer, always seeking new challenges.", + "pos": "noun", + "word_frequency": 15813 + }, + { + "word": "aeroplane", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a powered flying vehicle with fixed wings", + "example_sentence_english": "The aeroplane took off smoothly from the runway.", + "pos": "noun", + "word_frequency": 15814 + }, + { + "word": "arduous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving or requiring strenuous effort; difficult and tiring", + "example_sentence_english": "The climb to the summit was long and arduous.", + "pos": "adjective", + "word_frequency": 15817 + }, + { + "word": "bachelorette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unmarried woman", + "example_sentence_english": "She celebrated her bachelorette party with her closest friends.", + "pos": "noun", + "word_frequency": 15820 + }, + { + "word": "bagel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dense, chewy bread roll, typically shaped like a doughnut", + "example_sentence_english": "I had a cream cheese bagel for breakfast.", + "pos": "noun", + "word_frequency": 15821 + }, + { + "word": "barometer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an instrument measuring atmospheric pressure", + "example_sentence_english": "The barometer showed a drop in pressure, indicating a storm.", + "pos": "noun", + "word_frequency": 15824 + }, + { + "word": "bigot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is intolerant toward those holding different opinions", + "example_sentence_english": "His comments revealed him to be a bigot.", + "pos": "noun", + "word_frequency": 15829 + }, + { + "word": "boa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, non-venomous snake; a long, thin scarf of feathers or fur", + "example_sentence_english": "The boa constrictor can grow to be very long.", + "pos": "noun", + "word_frequency": 15831 + }, + { + "word": "bullion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gold or silver in bulk, typically in the form of bars or ingots", + "example_sentence_english": "The bank vault contained stacks of gold bullion.", + "pos": "noun", + "word_frequency": 15836 + }, + { + "word": "bumpy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a rough surface with many bumps; characterized by many difficulties", + "example_sentence_english": "The car ride was very bumpy on the unpaved road.", + "pos": "adjective", + "word_frequency": 15837 + }, + { + "word": "bureaucrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official in a bureaucracy, especially one perceived as concerned with procedural correctness at the expense of people's needs", + "example_sentence_english": "He complained about the slow process, blaming the bureaucrats.", + "pos": "noun", + "word_frequency": 15838 + }, + { + "word": "carp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A freshwater fish", + "example_sentence_english": "The carp swam slowly in the pond.", + "pos": "noun", + "word_frequency": 15842 + }, + { + "word": "castor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A type of oil or bean; a star in Gemini", + "example_sentence_english": "Castor oil is known for its various uses.", + "pos": "noun", + "word_frequency": 15843 + }, + { + "word": "circumference", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The distance around a circle", + "example_sentence_english": "We measured the circumference of the tree trunk.", + "pos": "noun", + "word_frequency": 15845 + }, + { + "word": "cleverly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a clever way", + "example_sentence_english": "She cleverly solved the puzzle.", + "pos": "adverb", + "word_frequency": 15847 + }, + { + "word": "codex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An ancient manuscript book", + "example_sentence_english": "The ancient codex contained rare illustrations.", + "pos": "noun", + "word_frequency": 15848 + }, + { + "word": "composure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state of being calm and in control", + "example_sentence_english": "Despite the chaos, she maintained her composure.", + "pos": "noun", + "word_frequency": 15849 + }, + { + "word": "computerize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To equip with computers or automate with computers", + "example_sentence_english": "The company decided to computerize all its records.", + "pos": "verb", + "word_frequency": 15850 + }, + { + "word": "concur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To agree or happen at the same time", + "example_sentence_english": "I concur with your assessment of the situation.", + "pos": "verb", + "word_frequency": 15851 + }, + { + "word": "conte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A type of drawing crayon", + "example_sentence_english": "The artist used a conte crayon for the sketch.", + "pos": "noun", + "word_frequency": 15852 + }, + { + "word": "delicacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rare or expensive food item; sensitivity", + "example_sentence_english": "Caviar is considered a delicacy in many cultures.", + "pos": "noun", + "word_frequency": 15856 + }, + { + "word": "disillusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To free from illusion; to disappoint", + "example_sentence_english": "The harsh reality began to disillusion him.", + "pos": "verb", + "word_frequency": 15858 + }, + { + "word": "dispersion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act of spreading widely", + "example_sentence_english": "The dispersion of seeds was aided by the wind.", + "pos": "noun", + "word_frequency": 15859 + }, + { + "word": "doomsday", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The last day of the world; a day of judgment", + "example_sentence_english": "Some people believe doomsday is near.", + "pos": "noun", + "word_frequency": 15861 + }, + { + "word": "drape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To arrange cloth or clothing loosely or gracefully", + "example_sentence_english": "She draped the blanket over the sofa.", + "pos": "verb", + "word_frequency": 15862 + }, + { + "word": "drinker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person who drinks (especially alcohol)", + "example_sentence_english": "He's a heavy drinker.", + "pos": "noun", + "word_frequency": 15863 + }, + { + "word": "emphasise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To give special importance or prominence to", + "example_sentence_english": "The teacher will emphasise the key points.", + "pos": "verb", + "word_frequency": 15865 + }, + { + "word": "entangle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To twist together or involve in difficulties", + "example_sentence_english": "The fishing net began to entangle the boat's propeller.", + "pos": "verb", + "word_frequency": 15866 + }, + { + "word": "exploratory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or involving exploration or investigation", + "example_sentence_english": "They conducted an exploratory study to gather initial data.", + "pos": "adjective", + "word_frequency": 15868 + }, + { + "word": "ferment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To undergo fermentation; to stir up trouble", + "example_sentence_english": "Yeast is used to ferment grapes into wine.", + "pos": "verb", + "word_frequency": 15870 + }, + { + "word": "finesse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Intricate and delicate skill", + "example_sentence_english": "He handled the delicate negotiation with great finesse.", + "pos": "noun", + "word_frequency": 15871 + }, + { + "word": "fireball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large, bright meteor; a ball of fire", + "example_sentence_english": "A bright fireball streaked across the night sky.", + "pos": "noun", + "word_frequency": 15872 + }, + { + "word": "firth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A long, narrow inlet of the sea, especially in Scotland", + "example_sentence_english": "The boat sailed into the firth.", + "pos": "noun", + "word_frequency": 15873 + }, + { + "word": "flannel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A soft, woven fabric", + "example_sentence_english": "He wore a warm flannel shirt.", + "pos": "noun", + "word_frequency": 15874 + }, + { + "word": "floss", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dental floss; a type of thread", + "example_sentence_english": "Don't forget to floss your teeth every day.", + "pos": "noun", + "word_frequency": 15875 + }, + { + "word": "foresee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To know or expect beforehand", + "example_sentence_english": "We couldn't foresee the problems that would arise.", + "pos": "verb", + "word_frequency": 15876 + }, + { + "word": "frantically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a desperate or wild manner", + "example_sentence_english": "She frantically searched for her lost keys.", + "pos": "adverb", + "word_frequency": 15877 + }, + { + "word": "geothermal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the heat of the Earth's interior", + "example_sentence_english": "Geothermal energy is a sustainable power source.", + "pos": "adjective", + "word_frequency": 15880 + }, + { + "word": "gist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main point or essence", + "example_sentence_english": "Can you give me the gist of the meeting?", + "pos": "noun", + "word_frequency": 15882 + }, + { + "word": "grievous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very severe or serious", + "example_sentence_english": "He suffered a grievous injury in the accident.", + "pos": "adjective", + "word_frequency": 15884 + }, + { + "word": "handkerchief", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a square of cloth used for wiping the nose or face", + "example_sentence_english": "He pulled a clean handkerchief from his pocket.", + "pos": "noun", + "word_frequency": 15886 + }, + { + "word": "hookup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a connection or arrangement, often informal or temporary", + "example_sentence_english": "He got a good hookup for concert tickets.", + "pos": "noun", + "word_frequency": 15890 + }, + { + "word": "hopelessly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without hope; in a desperate way", + "example_sentence_english": "He was hopelessly lost in the forest.", + "pos": "adverb", + "word_frequency": 15891 + }, + { + "word": "horticulture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the art or practice of garden cultivation and management", + "example_sentence_english": "She studied horticulture at university.", + "pos": "noun", + "word_frequency": 15892 + }, + { + "word": "hydration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of absorbing water", + "example_sentence_english": "Proper hydration is essential for good health.", + "pos": "noun", + "word_frequency": 15894 + }, + { + "word": "improv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvisation, especially in comedy or music", + "example_sentence_english": "They performed an amazing improv show.", + "pos": "noun", + "word_frequency": 15896 + }, + { + "word": "impunity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemption from punishment or freedom from the injurious consequences of an action", + "example_sentence_english": "The criminals acted with impunity.", + "pos": "noun", + "word_frequency": 15897 + }, + { + "word": "indexing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of creating an index or list", + "example_sentence_english": "Search engines rely on efficient indexing.", + "pos": "noun", + "word_frequency": 15898 + }, + { + "word": "infertility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the inability to conceive children or young", + "example_sentence_english": "They sought treatment for infertility.", + "pos": "noun", + "word_frequency": 15899 + }, + { + "word": "informational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing information", + "example_sentence_english": "The documentary was highly informational.", + "pos": "adjective", + "word_frequency": 15900 + }, + { + "word": "inline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a line; in the same line or sequence", + "example_sentence_english": "The code uses inline comments.", + "pos": "adjective", + "word_frequency": 15901 + }, + { + "word": "insolvency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being unable to pay debts", + "example_sentence_english": "The company declared insolvency after heavy losses.", + "pos": "noun", + "word_frequency": 15902 + }, + { + "word": "intermediary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who acts as a link between people in order to try to bring about an agreement", + "example_sentence_english": "The diplomat acted as an intermediary in the peace talks.", + "pos": "noun", + "word_frequency": 15903 + }, + { + "word": "interrogate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ask questions of (someone) closely, aggressively, or formally", + "example_sentence_english": "The police interrogated the suspect for hours.", + "pos": "verb", + "word_frequency": 15904 + }, + { + "word": "laughable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so foolish or unreasonable as to be amusing", + "example_sentence_english": "His excuse was utterly laughable.", + "pos": "adjective", + "word_frequency": 15913 + }, + { + "word": "locus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a particular position, point, or place", + "example_sentence_english": "The brain is the locus of consciousness.", + "pos": "noun", + "word_frequency": 15916 + }, + { + "word": "makeshift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary; improvised", + "example_sentence_english": "They built a makeshift shelter from branches and leaves.", + "pos": "adjective", + "word_frequency": 15920 + }, + { + "word": "marquee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a canopy projecting over an entrance; a large tent", + "example_sentence_english": "The theater's marquee lit up the street with its bright lights.", + "pos": "noun", + "word_frequency": 15921 + }, + { + "word": "melanoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of skin cancer", + "example_sentence_english": "Early detection of melanoma is crucial for successful treatment.", + "pos": "noun", + "word_frequency": 15925 + }, + { + "word": "menacing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatening; ominous", + "example_sentence_english": "The dark clouds looked menacing, promising a storm.", + "pos": "adjective", + "word_frequency": 15926 + }, + { + "word": "microbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a microorganism, especially a bacterium causing disease", + "example_sentence_english": "Scientists study microbes to understand how they affect human health.", + "pos": "noun", + "word_frequency": 15927 + }, + { + "word": "mobilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prepare and organize for active service or use", + "example_sentence_english": "The community mobilized quickly to help the flood victims.", + "pos": "verb", + "word_frequency": 15928 + }, + { + "word": "nativity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the birth of a person, especially Jesus Christ", + "example_sentence_english": "The children performed a nativity play for their parents.", + "pos": "noun", + "word_frequency": 15932 + }, + { + "word": "nook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, secluded corner or recess", + "example_sentence_english": "She found a cozy reading nook by the window.", + "pos": "noun", + "word_frequency": 15933 + }, + { + "word": "nutritious", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "providing nourishment; healthy", + "example_sentence_english": "Eating nutritious food is essential for good health.", + "pos": "adjective", + "word_frequency": 15935 + }, + { + "word": "overdrive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of great activity, effort, or speed", + "example_sentence_english": "The team went into overdrive to finish the project on time.", + "pos": "noun", + "word_frequency": 15936 + }, + { + "word": "padding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material used to pad or stuff something", + "example_sentence_english": "The package was filled with soft padding to protect the fragile items.", + "pos": "noun", + "word_frequency": 15937 + }, + { + "word": "penitentiary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a prison for people convicted of serious crimes", + "example_sentence_english": "He was sentenced to serve time in the state penitentiary.", + "pos": "noun", + "word_frequency": 15941 + }, + { + "word": "perilous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full of danger or risk", + "example_sentence_english": "The climbers faced a perilous journey up the icy mountain.", + "pos": "adjective", + "word_frequency": 15942 + }, + { + "word": "periodical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a magazine or journal published at regular intervals", + "example_sentence_english": "The library subscribes to many academic periodicals.", + "pos": "noun", + "word_frequency": 15943 + }, + { + "word": "playa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flat, dry lake bed; (Spanish) beach", + "example_sentence_english": "The annual festival is held on the vast desert playa.", + "pos": "noun", + "word_frequency": 15946 + }, + { + "word": "pluck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull something quickly or forcibly; to remove feathers", + "example_sentence_english": "She carefully plucked a single rose from the bush.", + "pos": "verb", + "word_frequency": 15947 + }, + { + "word": "polytechnic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or offering instruction in a variety of industrial arts, applied sciences, or technical subjects", + "example_sentence_english": "He enrolled in a polytechnic institute to study engineering.", + "pos": "adjective", + "word_frequency": 15948 + }, + { + "word": "pornographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or depicting sexual subjects in a way that is intended to cause sexual excitement", + "example_sentence_english": "The website was shut down for distributing pornographic material.", + "pos": "adjective", + "word_frequency": 15949 + }, + { + "word": "posse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a body of armed men, typically a sheriff's force; a group of friends", + "example_sentence_english": "The sheriff formed a posse to track down the outlaws.", + "pos": "noun", + "word_frequency": 15950 + }, + { + "word": "refrigeration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of cooling a space or substance to a low temperature", + "example_sentence_english": "Modern refrigeration allows us to store food safely for longer periods.", + "pos": "noun", + "word_frequency": 15952 + }, + { + "word": "repulsive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arousing intense distaste or disgust", + "example_sentence_english": "The smell from the garbage dump was utterly repulsive.", + "pos": "adjective", + "word_frequency": 15953 + }, + { + "word": "respite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a short period of rest or relief from something difficult or unpleasant", + "example_sentence_english": "The rain offered a brief respite from the oppressive heat.", + "pos": "noun", + "word_frequency": 15954 + }, + { + "word": "saber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy cavalry sword with a curved blade", + "example_sentence_english": "The cavalry officer drew his saber and charged.", + "pos": "noun", + "word_frequency": 15957 + }, + { + "word": "sadistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deriving pleasure from inflicting pain, suffering, or humiliation on others", + "example_sentence_english": "The villain displayed a sadistic grin as he tortured his captives.", + "pos": "adjective", + "word_frequency": 15958 + }, + { + "word": "samba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Brazilian dance of African origin", + "example_sentence_english": "The carnival parade was filled with vibrant samba dancers.", + "pos": "noun", + "word_frequency": 15959 + }, + { + "word": "shaggy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "covered with long, untidy hair", + "example_sentence_english": "The old dog had shaggy fur.", + "pos": "adjective", + "word_frequency": 15960 + }, + { + "word": "shelling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of bombarding with shells; the removal of a shell", + "example_sentence_english": "The constant shelling forced residents to evacuate.", + "pos": "noun", + "word_frequency": 15961 + }, + { + "word": "sitter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who sits for a specific purpose, e.g., babysitter", + "example_sentence_english": "We hired a new sitter for the kids.", + "pos": "noun", + "word_frequency": 15963 + }, + { + "word": "sixer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hit in cricket that scores six runs; a pack of six items", + "example_sentence_english": "He hit a sixer over the boundary.", + "pos": "noun", + "word_frequency": 15964 + }, + { + "word": "slant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to slope or lean in a particular direction; to present information in a biased way", + "example_sentence_english": "The roof began to slant after the storm.", + "pos": "verb", + "word_frequency": 15965 + }, + { + "word": "sleepless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without sleep; unable to sleep", + "example_sentence_english": "She spent a sleepless night worrying about the exam.", + "pos": "adjective", + "word_frequency": 15966 + }, + { + "word": "slur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a derogatory remark or insinuation; an act of speaking indistinctly", + "example_sentence_english": "He was accused of using a racial slur.", + "pos": "noun", + "word_frequency": 15967 + }, + { + "word": "snowball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a ball of snow pressed together", + "example_sentence_english": "The children had a snowball fight in the park.", + "pos": "noun", + "word_frequency": 15968 + }, + { + "word": "sulphur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical element, a yellow non-metallic solid", + "example_sentence_english": "Sulphur has a distinctive smell.", + "pos": "noun", + "word_frequency": 15971 + }, + { + "word": "tablespoon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large spoon, used for serving or measuring", + "example_sentence_english": "Add two tablespoons of sugar to the mixture.", + "pos": "noun", + "word_frequency": 15972 + }, + { + "word": "tacky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sticky to the touch; showing poor taste or quality", + "example_sentence_english": "The paint was still tacky after an hour.", + "pos": "adjective", + "word_frequency": 15973 + }, + { + "word": "tamper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interfere with something in order to cause damage or make unauthorized alterations", + "example_sentence_english": "Someone tried to tamper with the lock.", + "pos": "verb", + "word_frequency": 15975 + }, + { + "word": "terminus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the final stop or destination in a transport system", + "example_sentence_english": "The bus reached its terminus at the city center.", + "pos": "noun", + "word_frequency": 15976 + }, + { + "word": "testicle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "one of the two oval organs that produce sperm in male animals", + "example_sentence_english": "The doctor examined the patient's testicles.", + "pos": "noun", + "word_frequency": 15978 + }, + { + "word": "thaw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to melt or become liquid; to become friendlier or more relaxed", + "example_sentence_english": "The ice began to thaw in the spring sun.", + "pos": "verb", + "word_frequency": 15979 + }, + { + "word": "throughput", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the amount of material or items passing through a system or process", + "example_sentence_english": "The new machine increased the factory's throughput.", + "pos": "noun", + "word_frequency": 15980 + }, + { + "word": "transnational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extending or operating across national boundaries", + "example_sentence_english": "Many transnational corporations operate globally.", + "pos": "adjective", + "word_frequency": 15982 + }, + { + "word": "tripod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a three-legged stand, often used for cameras or telescopes", + "example_sentence_english": "He set up his camera on a tripod.", + "pos": "noun", + "word_frequency": 15983 + }, + { + "word": "tulip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a spring-flowering plant of the lily family, with large, cup-shaped flowers", + "example_sentence_english": "The garden was full of colorful tulips.", + "pos": "noun", + "word_frequency": 15984 + }, + { + "word": "turnpike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a main road on which a toll is charged", + "example_sentence_english": "We took the turnpike to avoid traffic.", + "pos": "noun", + "word_frequency": 15985 + }, + { + "word": "unattended", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not supervised or looked after", + "example_sentence_english": "Never leave your luggage unattended.", + "pos": "adjective", + "word_frequency": 15988 + }, + { + "word": "unbeatable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to defeat or improve", + "example_sentence_english": "The team proved to be unbeatable this season.", + "pos": "adjective", + "word_frequency": 15989 + }, + { + "word": "undertaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose business is preparing dead bodies for burial or cremation", + "example_sentence_english": "The undertaker arranged the funeral service.", + "pos": "noun", + "word_frequency": 15990 + }, + { + "word": "uniformed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wearing a uniform", + "example_sentence_english": "The uniformed officers stood guard.", + "pos": "adjective", + "word_frequency": 15991 + }, + { + "word": "vulture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large bird of prey that feeds on carrion", + "example_sentence_english": "A vulture circled high above the desert.", + "pos": "noun", + "word_frequency": 15994 + }, + { + "word": "whistleblower", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who informs on a person or organization engaged in an illicit activity", + "example_sentence_english": "The whistleblower exposed the company's illegal practices.", + "pos": "noun", + "word_frequency": 15995 + }, + { + "word": "absentee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is absent from work or school", + "example_sentence_english": "The teacher marked the absentee in her register.", + "pos": "noun", + "word_frequency": 16001 + }, + { + "word": "accolade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an award or privilege granted as a special honor or as an acknowledgment of merit", + "example_sentence_english": "She received many accolades for her groundbreaking research.", + "pos": "noun", + "word_frequency": 16002 + }, + { + "word": "anecdotal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based on personal accounts rather than facts or research", + "example_sentence_english": "His evidence was purely anecdotal, not scientific.", + "pos": "adjective", + "word_frequency": 16007 + }, + { + "word": "anemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a condition in which the blood lacks healthy red blood cells", + "example_sentence_english": "The doctor diagnosed her with iron-deficiency anemia.", + "pos": "noun", + "word_frequency": 16008 + }, + { + "word": "animosity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strong hostility", + "example_sentence_english": "There was a deep animosity between the rival teams.", + "pos": "noun", + "word_frequency": 16009 + }, + { + "word": "autoimmune", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a disease caused by antibodies or lymphocytes produced against substances naturally present in the body", + "example_sentence_english": "She suffers from an autoimmune disease that affects her joints.", + "pos": "adjective", + "word_frequency": 16010 + }, + { + "word": "bombard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attack continuously with bombs, shells, or other missiles; to assail (someone) with questions, criticisms, or information", + "example_sentence_english": "The reporters continued to bombard the politician with questions.", + "pos": "verb", + "word_frequency": 16016 + }, + { + "word": "bouncy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to bounce well; lively and cheerful", + "example_sentence_english": "The children loved playing with the bouncy ball.", + "pos": "adjective", + "word_frequency": 16017 + }, + { + "word": "calibrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adjust (something) precisely for a particular function", + "example_sentence_english": "You need to calibrate the scales before weighing the ingredients.", + "pos": "verb", + "word_frequency": 16020 + }, + { + "word": "canteen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small water bottle; a place where food is served in a factory, school, or camp", + "example_sentence_english": "He filled his canteen with water before the hike.", + "pos": "noun", + "word_frequency": 16022 + }, + { + "word": "capacitor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device used to store an electric charge", + "example_sentence_english": "The circuit board needs a new capacitor.", + "pos": "noun", + "word_frequency": 16023 + }, + { + "word": "captivating", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holding one's attention completely; fascinating", + "example_sentence_english": "Her performance was absolutely captivating.", + "pos": "adjective", + "word_frequency": 16024 + }, + { + "word": "centrist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who holds moderate political views", + "example_sentence_english": "The new party leader is known for his centrist policies.", + "pos": "noun", + "word_frequency": 16025 + }, + { + "word": "chakra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "each of the seven centers of spiritual power in the human body, according to Hinduism and Buddhism", + "example_sentence_english": "She meditated to balance her chakras.", + "pos": "noun", + "word_frequency": 16027 + }, + { + "word": "chauffeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person employed to drive a private or hired car", + "example_sentence_english": "The CEO arrived with his personal chauffeur.", + "pos": "noun", + "word_frequency": 16028 + }, + { + "word": "clergyman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male priest, minister, or religious leader", + "example_sentence_english": "The clergyman delivered a powerful sermon.", + "pos": "noun", + "word_frequency": 16029 + }, + { + "word": "coliseum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large amphitheater or stadium", + "example_sentence_english": "The ancient coliseum once hosted gladiatorial contests.", + "pos": "noun", + "word_frequency": 16030 + }, + { + "word": "conceivable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capable of being imagined or grasped mentally", + "example_sentence_english": "It's conceivable that the project will be finished by next month.", + "pos": "adjective", + "word_frequency": 16031 + }, + { + "word": "condone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to accept and allow (behavior that is considered morally wrong or offensive) to continue", + "example_sentence_english": "The school does not condone bullying of any kind.", + "pos": "verb", + "word_frequency": 16033 + }, + { + "word": "congested", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blocked or overcrowded", + "example_sentence_english": "The city roads are heavily congested during rush hour.", + "pos": "adjective", + "word_frequency": 16034 + }, + { + "word": "consecrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make or declare (something, typically a church) sacred; dedicate formally to a religious or divine purpose", + "example_sentence_english": "The bishop will consecrate the new church next Sunday.", + "pos": "verb", + "word_frequency": 16036 + }, + { + "word": "contaminant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a polluting or toxic substance", + "example_sentence_english": "The water supply was found to have a dangerous contaminant.", + "pos": "noun", + "word_frequency": 16037 + }, + { + "word": "contiguous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sharing a common border; touching", + "example_sentence_english": "The 48 contiguous states of the USA are connected.", + "pos": "adjective", + "word_frequency": 16038 + }, + { + "word": "councilman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a council", + "example_sentence_english": "The councilman voted against the new zoning proposal.", + "pos": "noun", + "word_frequency": 16040 + }, + { + "word": "cranberry", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, red, tart berry", + "example_sentence_english": "We had cranberry sauce with our Thanksgiving turkey.", + "pos": "noun", + "word_frequency": 16041 + }, + { + "word": "croft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small rented farm, especially in Scotland", + "example_sentence_english": "The old man lived in a small croft by the sea.", + "pos": "noun", + "word_frequency": 16042 + }, + { + "word": "custard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dessert made with milk, eggs, and sugar", + "example_sentence_english": "She poured warm custard over the apple pie.", + "pos": "noun", + "word_frequency": 16043 + }, + { + "word": "deflect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause something to change direction", + "example_sentence_english": "The shield was designed to deflect incoming arrows.", + "pos": "verb", + "word_frequency": 16045 + }, + { + "word": "deliberation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long and careful consideration or discussion", + "example_sentence_english": "After much deliberation, they decided to accept the offer.", + "pos": "noun", + "word_frequency": 16046 + }, + { + "word": "deregulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the removal of regulations or controls", + "example_sentence_english": "The government announced plans for further deregulation of the industry.", + "pos": "noun", + "word_frequency": 16047 + }, + { + "word": "desolate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empty, bleak, and dismal", + "example_sentence_english": "The old house stood desolate on the hill.", + "pos": "adjective", + "word_frequency": 16048 + }, + { + "word": "devour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eat quickly and hungrily", + "example_sentence_english": "The hungry children devoured their dinner.", + "pos": "verb", + "word_frequency": 16049 + }, + { + "word": "digger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or machine that digs", + "example_sentence_english": "The construction site was full of diggers and other heavy machinery.", + "pos": "noun", + "word_frequency": 16050 + }, + { + "word": "disarmament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the reduction or withdrawal of military forces and weapons", + "example_sentence_english": "The treaty called for complete nuclear disarmament.", + "pos": "noun", + "word_frequency": 16051 + }, + { + "word": "dishonesty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceitfulness; lack of honesty", + "example_sentence_english": "His dishonesty led to his dismissal from the company.", + "pos": "noun", + "word_frequency": 16052 + }, + { + "word": "divergence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process or state of diverging", + "example_sentence_english": "There was a clear divergence of opinion between the two parties.", + "pos": "noun", + "word_frequency": 16053 + }, + { + "word": "domesticate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tame an animal and keep it as a pet or on a farm", + "example_sentence_english": "Humans began to domesticate animals thousands of years ago.", + "pos": "verb", + "word_frequency": 16055 + }, + { + "word": "doughnut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small fried cake of sweetened dough", + "example_sentence_english": "He bought a box of doughnuts for breakfast.", + "pos": "noun", + "word_frequency": 16057 + }, + { + "word": "equivalence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being equal in value, amount, function, meaning, etc.", + "example_sentence_english": "The two systems achieved equivalence in terms of performance.", + "pos": "noun", + "word_frequency": 16064 + }, + { + "word": "esoteric", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "intended for or likely to be understood by only a small number of people with a specialized knowledge or interest", + "example_sentence_english": "The book was full of esoteric references that only a few scholars could understand.", + "pos": "adjective", + "word_frequency": 16067 + }, + { + "word": "eurozone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the group of European Union countries that use the euro as their common currency", + "example_sentence_english": "Greece is a member of the Eurozone.", + "pos": "noun", + "word_frequency": 16068 + }, + { + "word": "euthanasia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the painless killing of a patient suffering from an incurable and painful disease or in an irreversible coma", + "example_sentence_english": "The debate around euthanasia raises complex ethical questions.", + "pos": "noun", + "word_frequency": 16069 + }, + { + "word": "felon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has committed a felony", + "example_sentence_english": "The former felon struggled to find employment.", + "pos": "noun", + "word_frequency": 16073 + }, + { + "word": "flammable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily set on fire", + "example_sentence_english": "Gasoline is a highly flammable liquid.", + "pos": "adjective", + "word_frequency": 16074 + }, + { + "word": "frontman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the lead singer of a band or a person who represents an organization", + "example_sentence_english": "Mick Jagger is the frontman of The Rolling Stones.", + "pos": "noun", + "word_frequency": 16078 + }, + { + "word": "garnet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dark red gemstone", + "example_sentence_english": "She wore a necklace with a beautiful garnet pendant.", + "pos": "noun", + "word_frequency": 16079 + }, + { + "word": "grapefruit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grapefruit", + "example_sentence_english": "I like to eat half a grapefruit for breakfast.", + "pos": "noun", + "word_frequency": 16082 + }, + { + "word": "grate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shred or rub food into small pieces", + "example_sentence_english": "Please grate the cheese for the pasta.", + "pos": "verb", + "word_frequency": 16083 + }, + { + "word": "greyhound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of dog known for its speed", + "example_sentence_english": "The greyhound is one of the fastest dog breeds.", + "pos": "noun", + "word_frequency": 16084 + }, + { + "word": "hairdresser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who cuts and styles hair", + "example_sentence_english": "I have an appointment with my hairdresser tomorrow.", + "pos": "noun", + "word_frequency": 16088 + }, + { + "word": "hardness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being hard", + "example_sentence_english": "The hardness of the diamond makes it very durable.", + "pos": "noun", + "word_frequency": 16089 + }, + { + "word": "hilly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having many hills", + "example_sentence_english": "The countryside around here is very hilly.", + "pos": "adjective", + "word_frequency": 16094 + }, + { + "word": "hone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sharpen or refine", + "example_sentence_english": "She needs to hone her public speaking skills.", + "pos": "verb", + "word_frequency": 16095 + }, + { + "word": "hotspot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place of significant activity or danger; a place offering wireless internet access", + "example_sentence_english": "The cafe offers a free Wi-Fi hotspot.", + "pos": "noun", + "word_frequency": 16097 + }, + { + "word": "incite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to encourage or stir up (violent or unlawful behavior)", + "example_sentence_english": "His speech was accused of trying to incite violence.", + "pos": "verb", + "word_frequency": 16102 + }, + { + "word": "incomprehensible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to understand", + "example_sentence_english": "The instructions were completely incomprehensible.", + "pos": "adjective", + "word_frequency": 16103 + }, + { + "word": "inertia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tendency to do nothing or to remain unchanged; a property of matter", + "example_sentence_english": "The company's inertia prevented it from adapting to new market trends.", + "pos": "noun", + "word_frequency": 16104 + }, + { + "word": "infestation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the presence of an unusually large number of insects or animals", + "example_sentence_english": "They had a serious cockroach infestation in their old apartment.", + "pos": "noun", + "word_frequency": 16105 + }, + { + "word": "insurrection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a violent uprising against an authority or government", + "example_sentence_english": "The government quickly suppressed the insurrection.", + "pos": "noun", + "word_frequency": 16106 + }, + { + "word": "intolerable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be endured", + "example_sentence_english": "The noise from the construction site was intolerable.", + "pos": "adjective", + "word_frequency": 16107 + }, + { + "word": "jordanian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Jordan or its people", + "example_sentence_english": "She met a Jordanian student at the university.", + "pos": "adjective", + "word_frequency": 16110 + }, + { + "word": "laud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to praise (a person or their achievements) highly", + "example_sentence_english": "The critics lauded the new play as a masterpiece.", + "pos": "verb", + "word_frequency": 16116 + }, + { + "word": "laziness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being unwilling to work or use energy", + "example_sentence_english": "His laziness prevented him from finishing the project on time.", + "pos": "noun", + "word_frequency": 16117 + }, + { + "word": "leech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a parasitic worm; a person who exploits others", + "example_sentence_english": "The doctor used a leech to reduce the swelling.", + "pos": "noun", + "word_frequency": 16118 + }, + { + "word": "lei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Hawaiian garland of flowers", + "example_sentence_english": "Visitors to Hawaii are often greeted with a beautiful lei.", + "pos": "noun", + "word_frequency": 16119 + }, + { + "word": "meetup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a planned informal meeting", + "example_sentence_english": "Let's arrange a meetup next week to discuss the project.", + "pos": "noun", + "word_frequency": 16121 + }, + { + "word": "minimise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reduce to the smallest possible amount", + "example_sentence_english": "We need to minimise the risks before starting the new venture.", + "pos": "verb", + "word_frequency": 16123 + }, + { + "word": "motorsport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sport of motor racing", + "example_sentence_english": "He has been a fan of motorsport since he was a child.", + "pos": "noun", + "word_frequency": 16126 + }, + { + "word": "mutilation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of severely damaging or disfiguring something", + "example_sentence_english": "The ancient artifact showed signs of deliberate mutilation.", + "pos": "noun", + "word_frequency": 16127 + }, + { + "word": "nerdy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectually obsessive, socially awkward", + "example_sentence_english": "He used to be quite nerdy, but now he's very outgoing.", + "pos": "adjective", + "word_frequency": 16129 + }, + { + "word": "nifty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particularly effective, clever, or handy", + "example_sentence_english": "That's a nifty little tool for opening bottles.", + "pos": "adjective", + "word_frequency": 16130 + }, + { + "word": "palladium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rare metallic element; a safeguard", + "example_sentence_english": "Palladium is a valuable metal used in catalytic converters.", + "pos": "noun", + "word_frequency": 16134 + }, + { + "word": "parmesan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hard, granular cheese", + "example_sentence_english": "She grated some Parmesan cheese over her pasta.", + "pos": "noun", + "word_frequency": 16135 + }, + { + "word": "passer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who passes by or through a place", + "example_sentence_english": "The passer stopped to admire the street art.", + "pos": "noun", + "word_frequency": 16136 + }, + { + "word": "pelican", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large water bird with a pouch under its beak", + "example_sentence_english": "A pelican was gracefully fishing in the shallow waters.", + "pos": "noun", + "word_frequency": 16138 + }, + { + "word": "pensioner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who receives a pension, especially an old-age pension", + "example_sentence_english": "Many pensioners rely on public transport discounts.", + "pos": "noun", + "word_frequency": 16139 + }, + { + "word": "personalise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something personal or individual", + "example_sentence_english": "You can personalise your phone with a custom wallpaper.", + "pos": "verb", + "word_frequency": 16140 + }, + { + "word": "piazza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a public square or marketplace, especially in an Italian town", + "example_sentence_english": "We enjoyed a coffee in the bustling piazza.", + "pos": "noun", + "word_frequency": 16141 + }, + { + "word": "policymaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person responsible for making policies, especially in government", + "example_sentence_english": "Policymakers are debating new environmental regulations.", + "pos": "noun", + "word_frequency": 16142 + }, + { + "word": "possessive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanding someone's total attention and love; showing ownership", + "example_sentence_english": "He became very possessive of his new toy.", + "pos": "adjective", + "word_frequency": 16144 + }, + { + "word": "prefecture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a district under the government of a prefect", + "example_sentence_english": "Kyoto Prefecture is a popular tourist destination in Japan.", + "pos": "noun", + "word_frequency": 16145 + }, + { + "word": "pretentious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attempting to impress by affecting greater importance, talent, culture, etc., than is actually possessed", + "example_sentence_english": "His speech was full of pretentious jargon that no one understood.", + "pos": "adjective", + "word_frequency": 16146 + }, + { + "word": "promenade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a paved public walk, typically one along a waterfront at a resort", + "example_sentence_english": "We took a leisurely stroll along the seaside promenade.", + "pos": "noun", + "word_frequency": 16148 + }, + { + "word": "proximal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "situated nearer to the center of the body or the point of attachment", + "example_sentence_english": "The elbow is proximal to the hand.", + "pos": "adjective", + "word_frequency": 16149 + }, + { + "word": "rapport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a close and harmonious relationship in which the people or groups concerned understand each other's feelings or ideas and communicate well", + "example_sentence_english": "Building a good rapport with clients is essential for success.", + "pos": "noun", + "word_frequency": 16150 + }, + { + "word": "rapture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of intense pleasure or joy", + "example_sentence_english": "She listened to the music with an expression of pure rapture.", + "pos": "noun", + "word_frequency": 16151 + }, + { + "word": "ravage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause severe and extensive damage to", + "example_sentence_english": "The forest fire ravaged thousands of acres of woodland.", + "pos": "verb", + "word_frequency": 16152 + }, + { + "word": "reconnect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to connect again after a period of separation or disconnection", + "example_sentence_english": "It was great to reconnect with old friends at the reunion.", + "pos": "verb", + "word_frequency": 16153 + }, + { + "word": "rectify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to put right; correct", + "example_sentence_english": "We need to rectify the error before it causes further problems.", + "pos": "verb", + "word_frequency": 16154 + }, + { + "word": "rudimentary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving or limited to basic principles; undeveloped", + "example_sentence_english": "He has only a rudimentary understanding of the subject.", + "pos": "adjective", + "word_frequency": 16156 + }, + { + "word": "sabre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy cavalry sword with a curved blade and a single cutting edge", + "example_sentence_english": "The officer drew his sabre and charged.", + "pos": "noun", + "word_frequency": 16157 + }, + { + "word": "saying", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short, popular, and memorable saying that expresses some general truth or useful thought", + "example_sentence_english": "My grandmother always had a wise saying for every situation.", + "pos": "noun", + "word_frequency": 16159 + }, + { + "word": "screenwriter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who writes screenplays", + "example_sentence_english": "The screenwriter worked tirelessly on the script for the new film.", + "pos": "noun", + "word_frequency": 16161 + }, + { + "word": "selector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or device that selects", + "example_sentence_english": "The team selector had a difficult job choosing the final squad.", + "pos": "noun", + "word_frequency": 16163 + }, + { + "word": "shawl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of fabric worn over the shoulders or head", + "example_sentence_english": "She draped a colorful shawl over her shoulders to keep warm.", + "pos": "noun", + "word_frequency": 16164 + }, + { + "word": "shroud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cloth used to wrap a dead body; something that conceals", + "example_sentence_english": "A thick mist acted as a shroud, obscuring the mountain peaks.", + "pos": "noun", + "word_frequency": 16167 + }, + { + "word": "skim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to read quickly; to remove from the surface", + "example_sentence_english": "She decided to skim the article to get the main idea.", + "pos": "verb", + "word_frequency": 16169 + }, + { + "word": "slovak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Slovakia; the Slovak language", + "example_sentence_english": "He is a Slovak who speaks both Slovak and English fluently.", + "pos": "noun", + "word_frequency": 16170 + }, + { + "word": "solicitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of asking for or trying to obtain something", + "example_sentence_english": "The charity's fundraising campaign involved a direct mail solicitation.", + "pos": "noun", + "word_frequency": 16172 + }, + { + "word": "starboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the right side of a ship or aircraft, facing forward", + "example_sentence_english": "The captain ordered the helmsman to turn the ship to starboard.", + "pos": "noun", + "word_frequency": 16174 + }, + { + "word": "stardust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a magical or ethereal quality; cosmic dust", + "example_sentence_english": "The old theater seemed to be sprinkled with stardust and memories.", + "pos": "noun", + "word_frequency": 16175 + }, + { + "word": "stereotypical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conforming to a fixed or general idea", + "example_sentence_english": "The movie avoided stereotypical portrayals of its characters.", + "pos": "adjective", + "word_frequency": 16176 + }, + { + "word": "supersede", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to take the place of (someone or something previously in authority or use)", + "example_sentence_english": "The new regulations will supersede the old ones, effective next month.", + "pos": "verb", + "word_frequency": 16177 + }, + { + "word": "swirl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move in a twisting or spiraling motion", + "example_sentence_english": "The cream began to swirl into the coffee as she stirred it.", + "pos": "verb", + "word_frequency": 16178 + }, + { + "word": "telugu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Dravidian language spoken in India", + "example_sentence_english": "Many people in Andhra Pradesh and Telangana speak Telugu.", + "pos": "noun", + "word_frequency": 16181 + }, + { + "word": "traumatize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause someone to suffer a lasting shock", + "example_sentence_english": "The sudden loss of his pet seemed to traumatize the child.", + "pos": "verb", + "word_frequency": 16182 + }, + { + "word": "twinkle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shine with a series of short, quick flashes of light", + "example_sentence_english": "The distant lights of the city began to twinkle as night fell.", + "pos": "verb", + "word_frequency": 16183 + }, + { + "word": "uncharted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not mapped or surveyed; unknown", + "example_sentence_english": "The explorers ventured into uncharted waters, hoping to discover new lands.", + "pos": "adjective", + "word_frequency": 16185 + }, + { + "word": "unforeseen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not anticipated or predicted", + "example_sentence_english": "The project faced unforeseen challenges that delayed its completion.", + "pos": "adjective", + "word_frequency": 16186 + }, + { + "word": "unsigned", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having a signature", + "example_sentence_english": "The letter was returned because it was unsigned.", + "pos": "adjective", + "word_frequency": 16187 + }, + { + "word": "unspoken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not expressed in speech; tacit", + "example_sentence_english": "There was an unspoken understanding between the two friends.", + "pos": "adjective", + "word_frequency": 16188 + }, + { + "word": "valet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who parks cars; a personal attendant", + "example_sentence_english": "The hotel offers a valet service for its guests.", + "pos": "noun", + "word_frequency": 16190 + }, + { + "word": "vendetta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a prolonged bitter quarrel or campaign against someone", + "example_sentence_english": "The family feud escalated into a full-blown vendetta.", + "pos": "noun", + "word_frequency": 16192 + }, + { + "word": "wiener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a frankfurter or hot dog", + "example_sentence_english": "We roasted wieners over the campfire for dinner.", + "pos": "noun", + "word_frequency": 16196 + }, + { + "word": "wildcard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing whose unpredictable nature makes them a risk or an exciting prospect", + "example_sentence_english": "The new player is a wildcard, capable of surprising everyone.", + "pos": "noun", + "word_frequency": 16197 + }, + { + "word": "affordability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the degree to which something is affordable", + "example_sentence_english": "The affordability of housing is a major concern in the city.", + "pos": "noun", + "word_frequency": 16204 + }, + { + "word": "alderman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a municipal officer", + "example_sentence_english": "The alderman presented the new city budget.", + "pos": "noun", + "word_frequency": 16207 + }, + { + "word": "alienation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being isolated from a group or activity", + "example_sentence_english": "Social alienation can lead to feelings of loneliness.", + "pos": "noun", + "word_frequency": 16208 + }, + { + "word": "anorexia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an eating disorder", + "example_sentence_english": "Anorexia is a serious condition that requires medical attention.", + "pos": "noun", + "word_frequency": 16210 + }, + { + "word": "anthropologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies anthropology", + "example_sentence_english": "The anthropologist studied ancient human cultures.", + "pos": "noun", + "word_frequency": 16211 + }, + { + "word": "antidepressant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a drug used to treat depression", + "example_sentence_english": "The doctor prescribed an antidepressant to help with her mood.", + "pos": "noun", + "word_frequency": 16212 + }, + { + "word": "attrition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of reducing something's strength or effectiveness through sustained attack or pressure", + "example_sentence_english": "The company is trying to reduce employee attrition.", + "pos": "noun", + "word_frequency": 16214 + }, + { + "word": "aunty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aunt (informal)", + "example_sentence_english": "My aunty always bakes delicious cookies.", + "pos": "noun", + "word_frequency": 16216 + }, + { + "word": "autopilot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that automatically controls the steering of a vehicle", + "example_sentence_english": "The plane was flying on autopilot.", + "pos": "noun", + "word_frequency": 16217 + }, + { + "word": "baggy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loose-fitting", + "example_sentence_english": "He was wearing a baggy t-shirt.", + "pos": "adjective", + "word_frequency": 16218 + }, + { + "word": "bailout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of giving financial assistance to a failing business or economy", + "example_sentence_english": "The government approved a bailout for the struggling airline.", + "pos": "noun", + "word_frequency": 16219 + }, + { + "word": "ballast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heavy material used to improve stability", + "example_sentence_english": "The ship needed more ballast to remain stable in the storm.", + "pos": "noun", + "word_frequency": 16221 + }, + { + "word": "biotech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biotechnology", + "example_sentence_english": "The biotech industry is developing new medicines.", + "pos": "noun", + "word_frequency": 16224 + }, + { + "word": "blackjack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a card game", + "example_sentence_english": "We played a few hands of blackjack at the casino.", + "pos": "noun", + "word_frequency": 16225 + }, + { + "word": "bloodstream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the blood circulating through the body", + "example_sentence_english": "The medicine was injected directly into the bloodstream.", + "pos": "noun", + "word_frequency": 16226 + }, + { + "word": "bluegrass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of American folk music", + "example_sentence_english": "She loves listening to traditional bluegrass music.", + "pos": "noun", + "word_frequency": 16227 + }, + { + "word": "bottling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of putting liquid into bottles", + "example_sentence_english": "The bottling plant processes thousands of liters of soda every day.", + "pos": "noun", + "word_frequency": 16228 + }, + { + "word": "budgetary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a budget", + "example_sentence_english": "The company faced significant budgetary constraints.", + "pos": "adjective", + "word_frequency": 16231 + }, + { + "word": "bustle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move in an energetic or busy manner", + "example_sentence_english": "The market was bustling with activity.", + "pos": "verb", + "word_frequency": 16232 + }, + { + "word": "camo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camouflage (informal)", + "example_sentence_english": "He wore a jacket with a camo pattern.", + "pos": "noun", + "word_frequency": 16233 + }, + { + "word": "carer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who looks after a sick, elderly, or disabled person", + "example_sentence_english": "She works as a professional carer for the elderly.", + "pos": "noun", + "word_frequency": 16234 + }, + { + "word": "cheerleading", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an activity involving organized routines of jumps, dance, and shouts", + "example_sentence_english": "My sister joined the cheerleading squad.", + "pos": "noun", + "word_frequency": 16238 + }, + { + "word": "cliche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a phrase or opinion that is overused and betrays a lack of original thought", + "example_sentence_english": "\"Time heals all wounds\" is a common cliche.", + "pos": "noun", + "word_frequency": 16239 + }, + { + "word": "cockroach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a common household insect", + "example_sentence_english": "I saw a cockroach scuttling across the kitchen floor.", + "pos": "noun", + "word_frequency": 16240 + }, + { + "word": "cumbersome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "difficult to carry or handle because of size or weight", + "example_sentence_english": "The old machinery was cumbersome and inefficient.", + "pos": "adjective", + "word_frequency": 16246 + }, + { + "word": "curt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudely brief", + "example_sentence_english": "His reply was curt and unhelpful.", + "pos": "adjective", + "word_frequency": 16247 + }, + { + "word": "cyclic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring in cycles; recurring", + "example_sentence_english": "The economy often experiences cyclic patterns of growth and recession.", + "pos": "adjective", + "word_frequency": 16248 + }, + { + "word": "deduct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subtract or take away", + "example_sentence_english": "You can deduct business expenses from your taxes.", + "pos": "verb", + "word_frequency": 16250 + }, + { + "word": "deformation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of changing in shape or distorting", + "example_sentence_english": "The earthquake caused significant deformation of the land.", + "pos": "noun", + "word_frequency": 16251 + }, + { + "word": "devotional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to religious worship or prayer", + "example_sentence_english": "She spends an hour each morning in devotional prayer.", + "pos": "adjective", + "word_frequency": 16252 + }, + { + "word": "downloadable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be downloaded", + "example_sentence_english": "The software update is now downloadable from our website.", + "pos": "adjective", + "word_frequency": 16254 + }, + { + "word": "duplication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of making an exact copy", + "example_sentence_english": "We need to avoid duplication of effort in this project.", + "pos": "noun", + "word_frequency": 16256 + }, + { + "word": "dynamo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a machine that generates electricity; an energetic person", + "example_sentence_english": "She's a real dynamo, always full of energy and new ideas.", + "pos": "noun", + "word_frequency": 16257 + }, + { + "word": "elixir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a magical or medicinal potion", + "example_sentence_english": "The old alchemist sought the elixir of life.", + "pos": "noun", + "word_frequency": 16260 + }, + { + "word": "endgame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the final stage of a game or process", + "example_sentence_english": "The negotiators are now in the endgame of the peace talks.", + "pos": "noun", + "word_frequency": 16263 + }, + { + "word": "epiphany", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a moment of sudden and great revelation or realization", + "example_sentence_english": "He had an epiphany about his career path during his vacation.", + "pos": "noun", + "word_frequency": 16264 + }, + { + "word": "eyelid", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a fold of skin that covers and protects the eye", + "example_sentence_english": "She gently closed her eyelids and fell asleep.", + "pos": "noun", + "word_frequency": 16266 + }, + { + "word": "eyeliner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cosmetic applied to the eyelids to emphasize the eyes", + "example_sentence_english": "She applied black eyeliner to her upper lash line.", + "pos": "noun", + "word_frequency": 16267 + }, + { + "word": "fable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short story, typically with animals as characters, conveying a moral", + "example_sentence_english": "The tortoise and the hare is a famous fable.", + "pos": "noun", + "word_frequency": 16268 + }, + { + "word": "firewood", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wood cut for burning", + "example_sentence_english": "We gathered firewood for the campfire.", + "pos": "noun", + "word_frequency": 16271 + }, + { + "word": "foothill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a low hill at the base of a mountain or mountain range", + "example_sentence_english": "Their house is nestled in the foothills of the Rocky Mountains.", + "pos": "noun", + "word_frequency": 16272 + }, + { + "word": "foresight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to predict what will happen or be needed in the future", + "example_sentence_english": "Her foresight in investing early paid off handsomely.", + "pos": "noun", + "word_frequency": 16273 + }, + { + "word": "forsake", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to abandon or give up", + "example_sentence_english": "He promised never to forsake his family.", + "pos": "verb", + "word_frequency": 16274 + }, + { + "word": "fundamentalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who adheres strictly to a set of beliefs, especially religious ones", + "example_sentence_english": "The fundamentalist group held a strict interpretation of their sacred texts.", + "pos": "noun", + "word_frequency": 16276 + }, + { + "word": "greenfield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeveloped land", + "example_sentence_english": "The company plans to build a new factory on a greenfield site.", + "pos": "noun", + "word_frequency": 16283 + }, + { + "word": "hamstring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tendon at the back of the thigh", + "example_sentence_english": "He pulled his hamstring during the race.", + "pos": "noun", + "word_frequency": 16287 + }, + { + "word": "horseshoe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "U-shaped metal plate for a horse's hoof", + "example_sentence_english": "The blacksmith fitted a new horseshoe onto the horse's hoof.", + "pos": "noun", + "word_frequency": 16290 + }, + { + "word": "incision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a surgical cut", + "example_sentence_english": "The surgeon made a small incision to begin the operation.", + "pos": "noun", + "word_frequency": 16293 + }, + { + "word": "indistinguishable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to tell apart", + "example_sentence_english": "The twins were almost indistinguishable from each other.", + "pos": "adjective", + "word_frequency": 16294 + }, + { + "word": "infer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduce or conclude from evidence", + "example_sentence_english": "From his silence, I could infer that he was unhappy.", + "pos": "verb", + "word_frequency": 16295 + }, + { + "word": "inpatient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a patient who stays in a hospital", + "example_sentence_english": "The hospital has separate wards for inpatients and outpatients.", + "pos": "noun", + "word_frequency": 16296 + }, + { + "word": "invitational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by invitation only", + "example_sentence_english": "It was an invitational tournament, so only selected players could participate.", + "pos": "adjective", + "word_frequency": 16297 + }, + { + "word": "kennel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small shelter for a dog", + "example_sentence_english": "The dog slept soundly in its kennel.", + "pos": "noun", + "word_frequency": 16304 + }, + { + "word": "lager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of beer", + "example_sentence_english": "He ordered a pint of cold lager.", + "pos": "noun", + "word_frequency": 16308 + }, + { + "word": "loathing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intense dislike or disgust", + "example_sentence_english": "She felt a deep loathing for injustice.", + "pos": "noun", + "word_frequency": 16311 + }, + { + "word": "loyalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who remains loyal to the established ruler or government", + "example_sentence_english": "The loyalists supported the king during the rebellion.", + "pos": "noun", + "word_frequency": 16313 + }, + { + "word": "manhood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or period of being a man", + "example_sentence_english": "He reached manhood and took on new responsibilities.", + "pos": "noun", + "word_frequency": 16315 + }, + { + "word": "martyrdom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the death or suffering of a martyr", + "example_sentence_english": "The story of his martyrdom inspired many.", + "pos": "noun", + "word_frequency": 16316 + }, + { + "word": "menopause", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the cessation of menstruation", + "example_sentence_english": "Many women experience hot flashes during menopause.", + "pos": "noun", + "word_frequency": 16319 + }, + { + "word": "mol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mole (unit of substance)", + "example_sentence_english": "A mol is a unit of measurement used in chemistry.", + "pos": "noun", + "word_frequency": 16322 + }, + { + "word": "mortem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "death (often in 'post-mortem')", + "example_sentence_english": "The post-mortem examination revealed the cause of death.", + "pos": "noun", + "word_frequency": 16323 + }, + { + "word": "motherboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main circuit board of a computer", + "example_sentence_english": "The technician replaced the faulty motherboard in my computer.", + "pos": "noun", + "word_frequency": 16324 + }, + { + "word": "msg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monosodium glutamate", + "example_sentence_english": "Some people avoid foods that contain MSG.", + "pos": "noun", + "word_frequency": 16326 + }, + { + "word": "mutilate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to injure severely, disfigure", + "example_sentence_english": "The old book was so badly damaged it looked mutilated.", + "pos": "verb", + "word_frequency": 16328 + }, + { + "word": "napkin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of cloth or paper used at meals", + "example_sentence_english": "Please put a napkin on your lap before you eat.", + "pos": "noun", + "word_frequency": 16329 + }, + { + "word": "opus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a creative work, especially a musical composition", + "example_sentence_english": "Beethoven's Ninth Symphony is considered a masterpiece, his greatest opus.", + "pos": "noun", + "word_frequency": 16334 + }, + { + "word": "otc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "over-the-counter (medication)", + "example_sentence_english": "You can buy this pain reliever as an OTC drug without a prescription.", + "pos": "noun", + "word_frequency": 16335 + }, + { + "word": "ovary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female reproductive organ", + "example_sentence_english": "The ovary produces eggs and hormones.", + "pos": "noun", + "word_frequency": 16336 + }, + { + "word": "overtly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "openly, not secretly", + "example_sentence_english": "He overtly expressed his disapproval of the plan.", + "pos": "adverb", + "word_frequency": 16337 + }, + { + "word": "painless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without pain", + "example_sentence_english": "The dentist assured me the procedure would be painless.", + "pos": "adjective", + "word_frequency": 16338 + }, + { + "word": "perpetually", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuously, endlessly", + "example_sentence_english": "The old clock in the hall perpetually chimed every hour.", + "pos": "adverb", + "word_frequency": 16340 + }, + { + "word": "politico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a politician (informal)", + "example_sentence_english": "The seasoned politico gave a passionate speech.", + "pos": "noun", + "word_frequency": 16342 + }, + { + "word": "prenatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "before birth", + "example_sentence_english": "Prenatal care is important for the health of both mother and baby.", + "pos": "adjective", + "word_frequency": 16343 + }, + { + "word": "probate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the official proving of a will", + "example_sentence_english": "The family had to go through probate to settle the estate.", + "pos": "noun", + "word_frequency": 16344 + }, + { + "word": "procure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to obtain, especially with effort", + "example_sentence_english": "He managed to procure the necessary documents for the visa.", + "pos": "verb", + "word_frequency": 16345 + }, + { + "word": "propensity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a natural tendency or inclination", + "example_sentence_english": "He has a propensity for getting into trouble.", + "pos": "noun", + "word_frequency": 16346 + }, + { + "word": "pvt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private (abbreviation)", + "example_sentence_english": "Pvt. Smith was assigned to the infantry division.", + "pos": "noun", + "word_frequency": 16349 + }, + { + "word": "q3", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "third quarter (abbreviation)", + "example_sentence_english": "The company's earnings for Q3 exceeded expectations.", + "pos": "noun", + "word_frequency": 16350 + }, + { + "word": "remodeling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of renovating or changing the structure of something", + "example_sentence_english": "The kitchen remodeling project took longer than expected.", + "pos": "noun", + "word_frequency": 16353 + }, + { + "word": "renter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who pays for the use of something", + "example_sentence_english": "The renter signed a new lease agreement for the apartment.", + "pos": "noun", + "word_frequency": 16354 + }, + { + "word": "roadmap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plan or guide for a journey or project", + "example_sentence_english": "The company presented a roadmap for its future product development.", + "pos": "noun", + "word_frequency": 16357 + }, + { + "word": "rosary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rosary", + "example_sentence_english": "She prayed the rosary every evening.", + "pos": "noun", + "word_frequency": 16360 + }, + { + "word": "rundown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summary; overview", + "example_sentence_english": "Can you give me a quick rundown of what happened?", + "pos": "noun", + "word_frequency": 16361 + }, + { + "word": "ruse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trick; stratagem", + "example_sentence_english": "It was all a ruse to get him out of the house.", + "pos": "noun", + "word_frequency": 16362 + }, + { + "word": "seniority", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being older or higher in rank", + "example_sentence_english": "Her seniority in the company gave her certain privileges.", + "pos": "noun", + "word_frequency": 16366 + }, + { + "word": "severance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of ending a connection or relationship; severance pay", + "example_sentence_english": "He received a large severance package when he left the company.", + "pos": "noun", + "word_frequency": 16367 + }, + { + "word": "sheath", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cover for the blade of a knife or sword", + "example_sentence_english": "He drew the sword from its leather sheath.", + "pos": "noun", + "word_frequency": 16368 + }, + { + "word": "shorthand", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a method of rapid writing", + "example_sentence_english": "She took notes in shorthand during the meeting.", + "pos": "noun", + "word_frequency": 16369 + }, + { + "word": "shortlist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to select a small number of candidates from a larger group", + "example_sentence_english": "We will shortlist the best applicants by Friday.", + "pos": "verb", + "word_frequency": 16370 + }, + { + "word": "singularity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being unique or individual; a point at which spacetime becomes infinite", + "example_sentence_english": "The black hole's singularity is a point of infinite density.", + "pos": "noun", + "word_frequency": 16371 + }, + { + "word": "snowman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a figure made of snow", + "example_sentence_english": "The children built a snowman in the garden.", + "pos": "noun", + "word_frequency": 16372 + }, + { + "word": "socialize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix socially with others", + "example_sentence_english": "It's important to socialize with your colleagues outside of work.", + "pos": "verb", + "word_frequency": 16373 + }, + { + "word": "spinoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a product, idea, or organization that is developed from a larger one", + "example_sentence_english": "The TV show was a successful spinoff of the original movie.", + "pos": "noun", + "word_frequency": 16376 + }, + { + "word": "sportsman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man who takes part in sports", + "example_sentence_english": "He is a true sportsman, always playing fair.", + "pos": "noun", + "word_frequency": 16377 + }, + { + "word": "squarely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directly; firmly; fairly", + "example_sentence_english": "He looked me squarely in the eye.", + "pos": "adverb", + "word_frequency": 16379 + }, + { + "word": "stepmother", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a woman who is married to one's father but is not one's biological mother", + "example_sentence_english": "Her stepmother was very kind to her.", + "pos": "noun", + "word_frequency": 16380 + }, + { + "word": "strut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk with a proud, confident gait", + "example_sentence_english": "The peacock strutted proudly with its tail feathers fanned out.", + "pos": "verb", + "word_frequency": 16381 + }, + { + "word": "succumb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fail to resist pressure, temptation, or another negative force", + "example_sentence_english": "He eventually succumbed to the pressure and resigned.", + "pos": "verb", + "word_frequency": 16382 + }, + { + "word": "swagger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk or behave in a very confident and arrogant way", + "example_sentence_english": "He swaggered into the room as if he owned the place.", + "pos": "verb", + "word_frequency": 16383 + }, + { + "word": "theta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the eighth letter of the Greek alphabet", + "example_sentence_english": "In mathematics, theta is often used to represent an angle.", + "pos": "noun", + "word_frequency": 16384 + }, + { + "word": "thong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a narrow strip of material, especially leather or fabric", + "example_sentence_english": "She wore flip-flops with a leather thong.", + "pos": "noun", + "word_frequency": 16386 + }, + { + "word": "thump", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit or strike heavily, especially with the fist or a blunt implement", + "example_sentence_english": "His heart began to thump loudly in his chest.", + "pos": "verb", + "word_frequency": 16387 + }, + { + "word": "timeframe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of time during which something is projected to take place", + "example_sentence_english": "We need to complete the project within a strict timeframe.", + "pos": "noun", + "word_frequency": 16388 + }, + { + "word": "tot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small child; a small amount of an alcoholic drink", + "example_sentence_english": "The little tot was playing with her toys.", + "pos": "noun", + "word_frequency": 16391 + }, + { + "word": "transcribe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to put thoughts, speech, or data into written or printed form", + "example_sentence_english": "She was asked to transcribe the interview recording.", + "pos": "verb", + "word_frequency": 16392 + }, + { + "word": "tropic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the region of the Earth surrounding the Equator", + "example_sentence_english": "The climate in the tropics is generally hot and humid.", + "pos": "noun", + "word_frequency": 16393 + }, + { + "word": "tsar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an emperor of Russia before 1917", + "example_sentence_english": "The last Russian tsar was Nicholas II.", + "pos": "noun", + "word_frequency": 16394 + }, + { + "word": "tycoon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wealthy, powerful person in business or industry", + "example_sentence_english": "He became a shipping tycoon by the age of forty.", + "pos": "noun", + "word_frequency": 16395 + }, + { + "word": "unconditionally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without conditions or limitations", + "example_sentence_english": "She loved him unconditionally.", + "pos": "adverb", + "word_frequency": 16396 + }, + { + "word": "uncontrollable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to control or restrain", + "example_sentence_english": "The child had an uncontrollable urge to laugh.", + "pos": "adjective", + "word_frequency": 16397 + }, + { + "word": "undeniably", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that cannot be denied", + "example_sentence_english": "He is undeniably one of the best players in the league.", + "pos": "adverb", + "word_frequency": 16398 + }, + { + "word": "unorthodox", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contrary to what is usual, traditional, or accepted", + "example_sentence_english": "His teaching methods were considered unorthodox.", + "pos": "adjective", + "word_frequency": 16399 + }, + { + "word": "uproar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a loud and confused noise or disturbance", + "example_sentence_english": "The crowd was in an uproar after the controversial decision.", + "pos": "noun", + "word_frequency": 16400 + }, + { + "word": "vertigo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sensation of whirling and loss of balance", + "example_sentence_english": "She suffered from vertigo whenever she looked down from a high place.", + "pos": "noun", + "word_frequency": 16401 + }, + { + "word": "vigilance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or state of keeping careful watch for possible danger or difficulties", + "example_sentence_english": "Constant vigilance is required to prevent security breaches.", + "pos": "noun", + "word_frequency": 16402 + }, + { + "word": "viscount", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a British nobleman ranking above a baron and below an earl", + "example_sentence_english": "The viscount inherited the family estate after his father's passing.", + "pos": "noun", + "word_frequency": 16403 + }, + { + "word": "walkway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a path or passage for walking", + "example_sentence_english": "The new walkway connects the two buildings.", + "pos": "noun", + "word_frequency": 16404 + }, + { + "word": "westerner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person from a Western country", + "example_sentence_english": "Many Westerners find traditional Eastern customs fascinating.", + "pos": "noun", + "word_frequency": 16406 + }, + { + "word": "whistler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who whistles", + "example_sentence_english": "The whistler walked down the street, humming a tune.", + "pos": "noun", + "word_frequency": 16407 + }, + { + "word": "windmill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a building with sails that turn in the wind and generate power", + "example_sentence_english": "The old windmill stood proudly on the hill.", + "pos": "noun", + "word_frequency": 16408 + }, + { + "word": "workflow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sequence of industrial, administrative, or other processes through which a piece of work passes from initiation to completion", + "example_sentence_english": "We need to optimize our workflow to improve efficiency.", + "pos": "noun", + "word_frequency": 16409 + }, + { + "word": "wrapper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a covering or outer layer", + "example_sentence_english": "Please throw the candy wrapper in the bin.", + "pos": "noun", + "word_frequency": 16411 + }, + { + "word": "yogi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who practices yoga", + "example_sentence_english": "The yogi demonstrated a difficult pose.", + "pos": "noun", + "word_frequency": 16413 + }, + { + "word": "acetate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a salt or ester of acetic acid", + "example_sentence_english": "The film was made of cellulose acetate.", + "pos": "noun", + "word_frequency": 16418 + }, + { + "word": "airstrike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an attack made by aircraft", + "example_sentence_english": "The military launched an airstrike on the enemy's position.", + "pos": "noun", + "word_frequency": 16419 + }, + { + "word": "allure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being powerfully and mysteriously attractive or fascinating", + "example_sentence_english": "The city's allure was undeniable, drawing in tourists from all over the world.", + "pos": "noun", + "word_frequency": 16420 + }, + { + "word": "anthrax", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a serious bacterial disease of sheep and cattle, transmissible to humans", + "example_sentence_english": "Scientists are studying a vaccine for anthrax.", + "pos": "noun", + "word_frequency": 16421 + }, + { + "word": "antisemitism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hostility to or prejudice against Jewish people", + "example_sentence_english": "The organization works to combat antisemitism and promote tolerance.", + "pos": "noun", + "word_frequency": 16422 + }, + { + "word": "aqueous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of or containing water; dissolved in water", + "example_sentence_english": "The experiment involved an aqueous solution.", + "pos": "adjective", + "word_frequency": 16424 + }, + { + "word": "attainment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or fact of achieving a goal or reaching a specified standard", + "example_sentence_english": "Her academic attainment was exceptional.", + "pos": "noun", + "word_frequency": 16426 + }, + { + "word": "auctioneer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who conducts auctions", + "example_sentence_english": "The auctioneer called out the bids quickly.", + "pos": "noun", + "word_frequency": 16427 + }, + { + "word": "authorship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or fact of being the writer of a book, article, or document, or the creator of a work of art", + "example_sentence_english": "The authorship of the ancient manuscript is still debated.", + "pos": "noun", + "word_frequency": 16428 + }, + { + "word": "axial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or situated on an axis", + "example_sentence_english": "The design included an axial fan for cooling.", + "pos": "adjective", + "word_frequency": 16429 + }, + { + "word": "battleship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavily armored warship with a large main battery", + "example_sentence_english": "The old battleship is now a museum.", + "pos": "noun", + "word_frequency": 16432 + }, + { + "word": "bayonet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a knife-like weapon that attaches to the muzzle of a rifle", + "example_sentence_english": "Soldiers fixed their bayonets before the charge.", + "pos": "noun", + "word_frequency": 16433 + }, + { + "word": "bombshell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden and unwelcome surprise; a very attractive woman", + "example_sentence_english": "The news of his resignation was a complete bombshell.", + "pos": "noun", + "word_frequency": 16437 + }, + { + "word": "briton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person from Great Britain", + "example_sentence_english": "Many Britons enjoy a cup of tea in the afternoon.", + "pos": "noun", + "word_frequency": 16439 + }, + { + "word": "burnout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme tiredness, often from work", + "example_sentence_english": "She experienced severe burnout after working 80-hour weeks for months.", + "pos": "noun", + "word_frequency": 16441 + }, + { + "word": "buttock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "either of the two fleshy parts of the human body that form the lower back part of the trunk", + "example_sentence_english": "He landed hard on his buttock after slipping on the ice.", + "pos": "noun", + "word_frequency": 16442 + }, + { + "word": "buyout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of buying a controlling share in a company", + "example_sentence_english": "The company offered a generous buyout package to its long-term employees.", + "pos": "noun", + "word_frequency": 16443 + }, + { + "word": "cancerous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affected by or relating to cancer", + "example_sentence_english": "The doctor confirmed that the growth was cancerous.", + "pos": "adjective", + "word_frequency": 16444 + }, + { + "word": "carat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of weight for precious stones, especially diamonds", + "example_sentence_english": "She wore a ring with a two-carat diamond.", + "pos": "noun", + "word_frequency": 16445 + }, + { + "word": "carcinoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of cancer that starts in cells that make up the skin or the tissue lining organs", + "example_sentence_english": "The biopsy revealed a basal cell carcinoma.", + "pos": "noun", + "word_frequency": 16446 + }, + { + "word": "caveat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a warning or proviso of specific stipulations, conditions, or limitations", + "example_sentence_english": "He gave his approval, but with a few caveats.", + "pos": "noun", + "word_frequency": 16448 + }, + { + "word": "caviar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the salted roe of sturgeon or other large fish, eaten as a delicacy", + "example_sentence_english": "They served champagne and caviar at the reception.", + "pos": "noun", + "word_frequency": 16449 + }, + { + "word": "chairperson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person chosen to preside over a meeting or committee", + "example_sentence_english": "The chairperson opened the meeting by reviewing the agenda.", + "pos": "noun", + "word_frequency": 16451 + }, + { + "word": "circumvent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "find a way around an obstacle", + "example_sentence_english": "They tried to circumvent the rules, but were caught.", + "pos": "verb", + "word_frequency": 16454 + }, + { + "word": "clique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small group of people, with shared interests or other features in common, who spend time together and do not readily allow others to join them", + "example_sentence_english": "The popular girls formed an exclusive clique.", + "pos": "noun", + "word_frequency": 16455 + }, + { + "word": "contemplation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of looking thoughtfully at something for a long time; deep reflective thought", + "example_sentence_english": "He spent hours in quiet contemplation of the painting.", + "pos": "noun", + "word_frequency": 16457 + }, + { + "word": "contrive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "create or bring about (an object or a situation) by deliberate use of skill and artifice", + "example_sentence_english": "The prisoners contrived a way to escape.", + "pos": "verb", + "word_frequency": 16458 + }, + { + "word": "corolla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the petals of a flower, typically forming a whorl within the sepals and enclosing the reproductive organs", + "example_sentence_english": "The bright yellow corolla of the daffodil stood out in the garden.", + "pos": "noun", + "word_frequency": 16459 + }, + { + "word": "corrugated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a material, surface, or structure) shaped into alternate ridges and grooves", + "example_sentence_english": "The roof was made of corrugated iron sheets.", + "pos": "adjective", + "word_frequency": 16460 + }, + { + "word": "cranky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily annoyed or irritated; bad-tempered", + "example_sentence_english": "The baby was cranky because he hadn't had his nap.", + "pos": "adjective", + "word_frequency": 16462 + }, + { + "word": "curvy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having curves; shapely", + "example_sentence_english": "The road was very curvy as it wound through the mountains.", + "pos": "adjective", + "word_frequency": 16464 + }, + { + "word": "delude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impose a misleading belief upon (someone); deceive", + "example_sentence_english": "Don't delude yourself into thinking it will be easy.", + "pos": "verb", + "word_frequency": 16466 + }, + { + "word": "disband", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of an organization or group) break up or cause to break up and stop functioning", + "example_sentence_english": "The band decided to disband after their final tour.", + "pos": "verb", + "word_frequency": 16469 + }, + { + "word": "disorderly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking organization; untidy; disruptive", + "example_sentence_english": "The police were called to break up a disorderly crowd.", + "pos": "adjective", + "word_frequency": 16470 + }, + { + "word": "distraught", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deeply upset and agitated", + "example_sentence_english": "She was distraught after hearing the bad news.", + "pos": "adjective", + "word_frequency": 16471 + }, + { + "word": "drizzle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light rain falling in very fine drops", + "example_sentence_english": "A light drizzle began to fall as we left the house.", + "pos": "noun", + "word_frequency": 16473 + }, + { + "word": "eau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water (French, used in English phrases)", + "example_sentence_english": "She sprayed on some eau de parfum before leaving.", + "pos": "noun", + "word_frequency": 16474 + }, + { + "word": "embankment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wall or bank of earth or stone built to prevent a river flooding an area or to carry a road or railway", + "example_sentence_english": "The train tracks ran along the top of the embankment.", + "pos": "noun", + "word_frequency": 16475 + }, + { + "word": "emergent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in the process of coming into being or becoming prominent", + "example_sentence_english": "We are seeing emergent patterns in the data.", + "pos": "adjective", + "word_frequency": 16476 + }, + { + "word": "entice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attract or tempt by offering pleasure or advantage", + "example_sentence_english": "The store used discounts to entice new customers.", + "pos": "verb", + "word_frequency": 16479 + }, + { + "word": "exalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "praise highly; raise in rank", + "example_sentence_english": "The choir will exalt the Lord with their voices.", + "pos": "verb", + "word_frequency": 16482 + }, + { + "word": "exchequer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "national treasury (especially in the UK)", + "example_sentence_english": "The Chancellor of the Exchequer announced new tax policies.", + "pos": "noun", + "word_frequency": 16483 + }, + { + "word": "filly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "young female horse", + "example_sentence_english": "The jockey rode the spirited filly to victory.", + "pos": "noun", + "word_frequency": 16485 + }, + { + "word": "footy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "football (informal)", + "example_sentence_english": "Let's go play some footy in the park.", + "pos": "noun", + "word_frequency": 16486 + }, + { + "word": "formality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adherence to rules or customs", + "example_sentence_english": "Shaking hands is a common formality when meeting someone new.", + "pos": "noun", + "word_frequency": 16487 + }, + { + "word": "fortitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courage in pain or adversity", + "example_sentence_english": "She showed great fortitude during her illness.", + "pos": "noun", + "word_frequency": 16488 + }, + { + "word": "gambler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who gambles", + "example_sentence_english": "The professional gambler always played with a strategy.", + "pos": "noun", + "word_frequency": 16489 + }, + { + "word": "gent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gentleman (informal)", + "example_sentence_english": "He's a real gent, always opening doors for people.", + "pos": "noun", + "word_frequency": 16491 + }, + { + "word": "geopolitical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to politics and geography", + "example_sentence_english": "The geopolitical landscape is constantly shifting.", + "pos": "adjective", + "word_frequency": 16492 + }, + { + "word": "grunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make a low, guttural sound", + "example_sentence_english": "The pig began to grunt loudly.", + "pos": "verb", + "word_frequency": 16495 + }, + { + "word": "gust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden strong rush of wind", + "example_sentence_english": "A sudden gust of wind blew my hat off.", + "pos": "noun", + "word_frequency": 16497 + }, + { + "word": "halal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permissible according to Islamic law", + "example_sentence_english": "The restaurant serves only halal meat.", + "pos": "noun", + "word_frequency": 16499 + }, + { + "word": "harmonious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuneful; forming a pleasing whole", + "example_sentence_english": "They lived in a harmonious relationship.", + "pos": "adjective", + "word_frequency": 16500 + }, + { + "word": "hijab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a head covering worn by Muslim women", + "example_sentence_english": "Many Muslim women choose to wear a hijab.", + "pos": "noun", + "word_frequency": 16503 + }, + { + "word": "hitherto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "until now or until the point in time under discussion", + "example_sentence_english": "Hitherto, the project had been running smoothly.", + "pos": "adverb", + "word_frequency": 16504 + }, + { + "word": "hyperbolic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exaggerated for effect", + "example_sentence_english": "His description of the event was highly hyperbolic.", + "pos": "adjective", + "word_frequency": 16507 + }, + { + "word": "impeach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charge with misconduct in office", + "example_sentence_english": "The legislature voted to impeach the president.", + "pos": "verb", + "word_frequency": 16508 + }, + { + "word": "impedance", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "resistance to an alternating current", + "example_sentence_english": "The engineer measured the electrical impedance of the circuit.", + "pos": "noun", + "word_frequency": 16509 + }, + { + "word": "incubation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of incubating eggs or bacteria", + "example_sentence_english": "The eggs are currently in the incubation period.", + "pos": "noun", + "word_frequency": 16510 + }, + { + "word": "insignia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a badge or distinguishing mark", + "example_sentence_english": "The general wore his military insignia proudly.", + "pos": "noun", + "word_frequency": 16511 + }, + { + "word": "intercontinental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or traveling between continents", + "example_sentence_english": "They booked an intercontinental flight from Asia to Europe.", + "pos": "adjective", + "word_frequency": 16512 + }, + { + "word": "interplay", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the way in which two or more things affect each other", + "example_sentence_english": "The interplay between light and shadow created a dramatic effect.", + "pos": "noun", + "word_frequency": 16513 + }, + { + "word": "isotope", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "each of two or more forms of the same element", + "example_sentence_english": "Carbon-14 is a radioactive isotope used in dating ancient artifacts.", + "pos": "noun", + "word_frequency": 16515 + }, + { + "word": "jigsaw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a puzzle consisting of a picture cut into irregular pieces", + "example_sentence_english": "We spent the afternoon putting together a 1000-piece jigsaw.", + "pos": "noun", + "word_frequency": 16519 + }, + { + "word": "juniper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of evergreen shrub or tree", + "example_sentence_english": "The gin was flavored with juniper berries.", + "pos": "noun", + "word_frequency": 16520 + }, + { + "word": "jus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "natural juice or gravy", + "example_sentence_english": "The chef served the roast beef with a rich jus.", + "pos": "noun", + "word_frequency": 16521 + }, + { + "word": "kindred", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "one's family and relations; people with similar beliefs", + "example_sentence_english": "She felt a strong connection with her kindred spirits.", + "pos": "noun", + "word_frequency": 16524 + }, + { + "word": "lander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a spacecraft designed to land on a celestial body", + "example_sentence_english": "The Mars lander successfully touched down on the red planet.", + "pos": "noun", + "word_frequency": 16525 + }, + { + "word": "lollipop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flat, rounded candy on a stick", + "example_sentence_english": "The child happily licked his strawberry lollipop.", + "pos": "noun", + "word_frequency": 16529 + }, + { + "word": "machete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a broad, heavy knife used as an implement or weapon", + "example_sentence_english": "He used a machete to clear the thick jungle undergrowth.", + "pos": "noun", + "word_frequency": 16531 + }, + { + "word": "marshmallow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a soft, spongy confection", + "example_sentence_english": "We roasted marshmallows over the campfire.", + "pos": "noun", + "word_frequency": 16533 + }, + { + "word": "masse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large group or mass (often used in \"en masse\")", + "example_sentence_english": "The employees resigned en masse after the announcement.", + "pos": "noun", + "word_frequency": 16534 + }, + { + "word": "merchandising", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity of promoting the sale of goods", + "example_sentence_english": "Effective merchandising is crucial for retail success.", + "pos": "noun", + "word_frequency": 16537 + }, + { + "word": "mink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a carnivorous mammal or its valuable fur", + "example_sentence_english": "The mink coat was very expensive.", + "pos": "noun", + "word_frequency": 16539 + }, + { + "word": "mischievous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing or showing a fondness for causing trouble in a playful way", + "example_sentence_english": "The mischievous puppy chewed on the shoes.", + "pos": "adjective", + "word_frequency": 16540 + }, + { + "word": "molest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to annoy, bother, or assault", + "example_sentence_english": "The police warned people not to molest the wild animals.", + "pos": "verb", + "word_frequency": 16541 + }, + { + "word": "monograph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a detailed written study of a single specialized subject or an aspect of it", + "example_sentence_english": "She published a monograph on ancient Roman pottery.", + "pos": "noun", + "word_frequency": 16542 + }, + { + "word": "moo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the characteristic low sound made by a cow", + "example_sentence_english": "We heard the cow's loud moo from the field.", + "pos": "noun", + "word_frequency": 16544 + }, + { + "word": "morphological", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the form or structure of things", + "example_sentence_english": "Linguists study the morphological changes in languages over time.", + "pos": "adjective", + "word_frequency": 16545 + }, + { + "word": "movable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be moved", + "example_sentence_english": "The furniture was easily movable.", + "pos": "adjective", + "word_frequency": 16546 + }, + { + "word": "mucus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slimy substance secreted by mucous membranes", + "example_sentence_english": "The doctor explained that mucus helps protect the respiratory system.", + "pos": "noun", + "word_frequency": 16547 + }, + { + "word": "mulberry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tree or its sweet, edible fruit", + "example_sentence_english": "We picked fresh mulberries from the tree in the garden.", + "pos": "noun", + "word_frequency": 16548 + }, + { + "word": "nameless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no name; anonymous", + "example_sentence_english": "The nameless hero saved the day.", + "pos": "adjective", + "word_frequency": 16550 + }, + { + "word": "naturalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies natural history", + "example_sentence_english": "The naturalist spent years observing wildlife in the Amazon.", + "pos": "noun", + "word_frequency": 16552 + }, + { + "word": "newsroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area in a newspaper or broadcasting office where news is prepared", + "example_sentence_english": "The journalists worked late in the newsroom to meet the deadline.", + "pos": "noun", + "word_frequency": 16553 + }, + { + "word": "nightlife", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social activities or entertainment available at night", + "example_sentence_english": "London is famous for its vibrant nightlife.", + "pos": "noun", + "word_frequency": 16554 + }, + { + "word": "officiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to act as an official in charge of something", + "example_sentence_english": "The referee will officiate the football match.", + "pos": "verb", + "word_frequency": 16556 + }, + { + "word": "omnibus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a volume containing several novels or other items previously published separately", + "example_sentence_english": "The publisher released an omnibus edition of the author's early works.", + "pos": "noun", + "word_frequency": 16557 + }, + { + "word": "outburst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden release of strong emotion", + "example_sentence_english": "His sudden outburst of anger surprised everyone.", + "pos": "noun", + "word_frequency": 16561 + }, + { + "word": "overarching", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comprehensive; encompassing everything", + "example_sentence_english": "The overarching theme of the conference was sustainability.", + "pos": "adjective", + "word_frequency": 16562 + }, + { + "word": "pathologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a doctor who studies diseases", + "example_sentence_english": "The pathologist examined the tissue sample under the microscope.", + "pos": "noun", + "word_frequency": 16563 + }, + { + "word": "peacekeeping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the preservation of peace", + "example_sentence_english": "The UN deployed a peacekeeping force to the region.", + "pos": "noun", + "word_frequency": 16567 + }, + { + "word": "pharmacology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of drugs and their effects", + "example_sentence_english": "She is studying pharmacology at university.", + "pos": "noun", + "word_frequency": 16570 + }, + { + "word": "pitfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hidden or unsuspected danger or difficulty", + "example_sentence_english": "One common pitfall for new businesses is underestimating costs.", + "pos": "noun", + "word_frequency": 16571 + }, + { + "word": "pixie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, mythical creature, often mischievous", + "example_sentence_english": "The children believed a pixie lived at the bottom of their garden.", + "pos": "noun", + "word_frequency": 16572 + }, + { + "word": "ply", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to work diligently at; to travel regularly over a route", + "example_sentence_english": "The taxi driver continued to ply his trade late into the night.", + "pos": "verb", + "word_frequency": 16573 + }, + { + "word": "poaching", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegal hunting or fishing", + "example_sentence_english": "Wildlife conservationists are fighting against elephant poaching.", + "pos": "noun", + "word_frequency": 16574 + }, + { + "word": "preventable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be prevented or avoided", + "example_sentence_english": "Many accidents are preventable with proper safety measures.", + "pos": "adjective", + "word_frequency": 16576 + }, + { + "word": "provenance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the place of origin or earliest known history of something", + "example_sentence_english": "The painting's provenance was carefully documented.", + "pos": "noun", + "word_frequency": 16578 + }, + { + "word": "provost", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a senior administrative officer in a university or college", + "example_sentence_english": "The university provost announced new academic policies.", + "pos": "noun", + "word_frequency": 16579 + }, + { + "word": "putt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strike a golf ball gently across the putting green", + "example_sentence_english": "He managed to putt the ball directly into the hole.", + "pos": "verb", + "word_frequency": 16580 + }, + { + "word": "quadruple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consisting of four parts or elements; four times as much or as many", + "example_sentence_english": "The company saw a quadruple increase in profits this quarter.", + "pos": "adjective", + "word_frequency": 16581 + }, + { + "word": "ratchet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device consisting of a bar or wheel with a set of angled teeth", + "example_sentence_english": "He used a ratchet to tighten the bolt.", + "pos": "noun", + "word_frequency": 16585 + }, + { + "word": "ravine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deep, narrow gorge with steep sides", + "example_sentence_english": "The hikers carefully descended into the deep ravine.", + "pos": "noun", + "word_frequency": 16586 + }, + { + "word": "redress", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remedy or compensation for a wrong or grievance", + "example_sentence_english": "The company offered financial redress to the affected customers.", + "pos": "noun", + "word_frequency": 16587 + }, + { + "word": "regenerate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grow again; to reform or revitalize", + "example_sentence_english": "Some animals can regenerate lost limbs.", + "pos": "verb", + "word_frequency": 16588 + }, + { + "word": "reincarnation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the rebirth of a soul in a new body", + "example_sentence_english": "Many religions believe in the concept of reincarnation.", + "pos": "noun", + "word_frequency": 16589 + }, + { + "word": "retiree", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who has retired from work", + "example_sentence_english": "The community center offers special programs for retirees.", + "pos": "noun", + "word_frequency": 16590 + }, + { + "word": "rife", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "widespread, especially of something undesirable or harmful", + "example_sentence_english": "The city was rife with rumors after the scandal.", + "pos": "adjective", + "word_frequency": 16591 + }, + { + "word": "rollercoaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an amusement park ride with steep inclines and descents", + "example_sentence_english": "The children screamed with delight on the rollercoaster.", + "pos": "noun", + "word_frequency": 16592 + }, + { + "word": "sax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a saxophone", + "example_sentence_english": "He plays the sax in a jazz band.", + "pos": "noun", + "word_frequency": 16597 + }, + { + "word": "saxophone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a member of a family of brass wind instruments", + "example_sentence_english": "She learned to play the saxophone in high school.", + "pos": "noun", + "word_frequency": 16598 + }, + { + "word": "sharpen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To make or become sharp", + "example_sentence_english": "He used a stone to sharpen his knife.", + "pos": "verb", + "word_frequency": 16602 + }, + { + "word": "shellfish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Aquatic invertebrates with shells", + "example_sentence_english": "Many people are allergic to shellfish.", + "pos": "noun", + "word_frequency": 16603 + }, + { + "word": "shortening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A fat used in baking", + "example_sentence_english": "The recipe calls for vegetable shortening.", + "pos": "noun", + "word_frequency": 16604 + }, + { + "word": "shrapnel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Fragments of a bomb, shell, or other object thrown out by an explosion", + "example_sentence_english": "The explosion sent shrapnel flying in all directions.", + "pos": "noun", + "word_frequency": 16605 + }, + { + "word": "shutout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A game in which one side prevents the other from scoring", + "example_sentence_english": "The team achieved a shutout, winning 3-0.", + "pos": "noun", + "word_frequency": 16606 + }, + { + "word": "sickle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A tool with a curved blade and short handle, used for cutting grain", + "example_sentence_english": "The farmer used a sickle to cut the tall grass.", + "pos": "noun", + "word_frequency": 16607 + }, + { + "word": "singleton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A single person or thing", + "example_sentence_english": "In bridge, a singleton is a suit with only one card.", + "pos": "noun", + "word_frequency": 16608 + }, + { + "word": "skateboarding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The sport or activity of riding a skateboard", + "example_sentence_english": "Skateboarding is a popular street sport.", + "pos": "noun", + "word_frequency": 16609 + }, + { + "word": "skit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short comedy sketch or piece of acting", + "example_sentence_english": "The students performed a funny skit for the assembly.", + "pos": "noun", + "word_frequency": 16610 + }, + { + "word": "slavic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to the Slavs or their languages", + "example_sentence_english": "Russian is a Slavic language.", + "pos": "adjective", + "word_frequency": 16611 + }, + { + "word": "snowboarding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The sport of descending a snow-covered slope on a snowboard", + "example_sentence_english": "Snowboarding is an exciting winter sport.", + "pos": "noun", + "word_frequency": 16612 + }, + { + "word": "snuff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Powdered tobacco for sniffing", + "example_sentence_english": "He took a pinch of snuff from the box.", + "pos": "noun", + "word_frequency": 16613 + }, + { + "word": "stairway", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A set of stairs", + "example_sentence_english": "The old house had a grand stairway.", + "pos": "noun", + "word_frequency": 16615 + }, + { + "word": "starry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Full of or lit by stars", + "example_sentence_english": "We gazed up at the starry night sky.", + "pos": "adjective", + "word_frequency": 16616 + }, + { + "word": "stoic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Enduring pain and hardship without showing feelings or complaining", + "example_sentence_english": "He remained stoic despite the bad news.", + "pos": "adjective", + "word_frequency": 16617 + }, + { + "word": "supersonic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Involving or denoting a speed greater than that of sound", + "example_sentence_english": "The jet flew at supersonic speeds.", + "pos": "adjective", + "word_frequency": 16618 + }, + { + "word": "temperance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Abstinence from alcoholic drink; moderation or self-restraint", + "example_sentence_english": "The temperance movement advocated for the prohibition of alcohol.", + "pos": "noun", + "word_frequency": 16622 + }, + { + "word": "thrash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To beat or move about violently", + "example_sentence_english": "The fish began to thrash wildly on the deck.", + "pos": "verb", + "word_frequency": 16625 + }, + { + "word": "thwart", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To prevent someone from accomplishing something", + "example_sentence_english": "The police managed to thwart the robbery attempt.", + "pos": "verb", + "word_frequency": 16626 + }, + { + "word": "tombstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A stone slab or pillar, often inscribed, set at the head of a grave", + "example_sentence_english": "The old tombstone was covered in moss.", + "pos": "noun", + "word_frequency": 16628 + }, + { + "word": "tributary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A river or stream flowing into a larger river or lake", + "example_sentence_english": "The small stream is a tributary of the main river.", + "pos": "noun", + "word_frequency": 16630 + }, + { + "word": "unchecked", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not restrained or controlled", + "example_sentence_english": "The unchecked spread of the disease caused concern.", + "pos": "adjective", + "word_frequency": 16633 + }, + { + "word": "unhappiness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The state of being unhappy", + "example_sentence_english": "Her unhappiness was evident in her expression.", + "pos": "noun", + "word_frequency": 16634 + }, + { + "word": "unimaginable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Difficult or impossible to imagine", + "example_sentence_english": "The scale of the disaster was unimaginable.", + "pos": "adjective", + "word_frequency": 16635 + }, + { + "word": "unsecured", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not secured or protected", + "example_sentence_english": "The loan was unsecured, meaning no collateral was required.", + "pos": "adjective", + "word_frequency": 16636 + }, + { + "word": "unsustainable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not able to be maintained at the current rate or level", + "example_sentence_english": "Current levels of consumption are unsustainable.", + "pos": "adjective", + "word_frequency": 16637 + }, + { + "word": "utilise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make practical and effective use of", + "example_sentence_english": "We need to utilise our resources more efficiently.", + "pos": "verb", + "word_frequency": 16638 + }, + { + "word": "utopian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Modeled on or aiming for a state in which everything is perfect; idealistic", + "example_sentence_english": "He had a utopian vision for society.", + "pos": "adjective", + "word_frequency": 16639 + }, + { + "word": "worsen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make or become worse", + "example_sentence_english": "His condition began to worsen after the surgery.", + "pos": "verb", + "word_frequency": 16644 + }, + { + "word": "zenith", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the time at which something is most powerful or successful", + "example_sentence_english": "At the zenith of his career, he was the most celebrated artist.", + "pos": "noun", + "word_frequency": 16650 + }, + { + "word": "abbreviation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shortened form of a word or phrase", + "example_sentence_english": "Dr. is an abbreviation for Doctor.", + "pos": "noun", + "word_frequency": 16653 + }, + { + "word": "accrue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be received by someone in regular or increasing amounts over time", + "example_sentence_english": "Interest will accrue on the account daily.", + "pos": "verb", + "word_frequency": 16655 + }, + { + "word": "adhesion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of adhering to a surface or object", + "example_sentence_english": "The strong adhesion of the glue made it difficult to remove.", + "pos": "noun", + "word_frequency": 16658 + }, + { + "word": "asymmetric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having parts that fail to correspond to one another in shape, size, or arrangement; lacking symmetry", + "example_sentence_english": "The building had an asymmetric design, with one side much taller than the other.", + "pos": "adjective", + "word_frequency": 16664 + }, + { + "word": "atrocious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of a very poor quality; extremely bad or unpleasant", + "example_sentence_english": "The weather was atrocious, with heavy rain and strong winds.", + "pos": "adjective", + "word_frequency": 16665 + }, + { + "word": "autobiographical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of an autobiography", + "example_sentence_english": "Many of her novels contain autobiographical elements.", + "pos": "adjective", + "word_frequency": 16666 + }, + { + "word": "avert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn away (one's eyes or thoughts); prevent or ward off (an undesirable occurrence)", + "example_sentence_english": "She averted her gaze from the disturbing scene.", + "pos": "verb", + "word_frequency": 16667 + }, + { + "word": "avian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to birds", + "example_sentence_english": "The avian flu outbreak caused concern among health officials.", + "pos": "adjective", + "word_frequency": 16668 + }, + { + "word": "backstory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a history or background, especially one created for a fictional character", + "example_sentence_english": "The author provided a detailed backstory for the main character.", + "pos": "noun", + "word_frequency": 16669 + }, + { + "word": "bayou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a marshy outlet of a lake or river", + "example_sentence_english": "They took a boat trip through the Louisiana bayou.", + "pos": "noun", + "word_frequency": 16670 + }, + { + "word": "bodybuilding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the practice of strengthening and enlarging the muscles of the body through exercise", + "example_sentence_english": "He spends hours in the gym, dedicated to bodybuilding.", + "pos": "noun", + "word_frequency": 16672 + }, + { + "word": "bullish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by or causing a rise in stock prices; optimistic or confident", + "example_sentence_english": "Investors were bullish about the company's future prospects.", + "pos": "adjective", + "word_frequency": 16674 + }, + { + "word": "chastity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or practice of refraining from extramarital, or all, sexual intercourse", + "example_sentence_english": "She vowed to maintain her chastity until marriage.", + "pos": "noun", + "word_frequency": 16680 + }, + { + "word": "chime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sound made by a bell or set of bells", + "example_sentence_english": "The clock struck noon with a gentle chime.", + "pos": "noun", + "word_frequency": 16681 + }, + { + "word": "chromium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard, brittle, metallic element", + "example_sentence_english": "Chromium is often used to make stainless steel.", + "pos": "noun", + "word_frequency": 16682 + }, + { + "word": "circumstantial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of evidence or a legal case) pointing indirectly to a person's guilt but not conclusively proving it", + "example_sentence_english": "The police had only circumstantial evidence against the suspect.", + "pos": "adjective", + "word_frequency": 16683 + }, + { + "word": "closeness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being near or intimate", + "example_sentence_english": "Their closeness as siblings was evident to everyone.", + "pos": "noun", + "word_frequency": 16684 + }, + { + "word": "collectible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an item valued and sought by collectors", + "example_sentence_english": "Old comic books can be valuable collectibles.", + "pos": "noun", + "word_frequency": 16687 + }, + { + "word": "conductivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the property or power of conducting heat, electricity, or sound", + "example_sentence_english": "Copper has high electrical conductivity.", + "pos": "noun", + "word_frequency": 16688 + }, + { + "word": "contextual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or depending on the context", + "example_sentence_english": "Understanding the historical context is crucial for a contextual analysis.", + "pos": "adjective", + "word_frequency": 16689 + }, + { + "word": "cordon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a line or circle of police, soldiers, or guards preventing access to or from an area or building", + "example_sentence_english": "The police set up a cordon around the crime scene.", + "pos": "noun", + "word_frequency": 16691 + }, + { + "word": "crossword", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a puzzle consisting of a grid of squares and blanks into which words are entered", + "example_sentence_english": "She enjoys doing the crossword puzzle every morning.", + "pos": "noun", + "word_frequency": 16694 + }, + { + "word": "cuckoo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a migratory bird with a characteristic two-note call", + "example_sentence_english": "We heard the cuckoo's distinctive call from the woods.", + "pos": "noun", + "word_frequency": 16695 + }, + { + "word": "cuddly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inviting hugs or snuggling", + "example_sentence_english": "The puppy was very soft and cuddly.", + "pos": "adjective", + "word_frequency": 16696 + }, + { + "word": "decipher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convert (a text written in code, or a message in a difficult or illegible handwriting) into ordinary language", + "example_sentence_english": "I tried to decipher the old letter, but the handwriting was terrible.", + "pos": "verb", + "word_frequency": 16700 + }, + { + "word": "delve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to search deeply and laboriously", + "example_sentence_english": "She wanted to delve deeper into the historical records.", + "pos": "verb", + "word_frequency": 16701 + }, + { + "word": "depletion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction in the number or quantity of something", + "example_sentence_english": "The depletion of natural resources is a serious concern.", + "pos": "noun", + "word_frequency": 16702 + }, + { + "word": "dispersal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of distributing or spreading things or people over a wide area", + "example_sentence_english": "The dispersal of seeds is important for plant reproduction.", + "pos": "noun", + "word_frequency": 16703 + }, + { + "word": "displeasure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of annoyance or dissatisfaction", + "example_sentence_english": "The manager expressed his displeasure with the team's performance.", + "pos": "noun", + "word_frequency": 16704 + }, + { + "word": "diss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disrespect (someone)", + "example_sentence_english": "Don't diss your elders.", + "pos": "verb", + "word_frequency": 16705 + }, + { + "word": "eyeshadow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cosmetic applied to the eyelids", + "example_sentence_english": "She applied blue eyeshadow to her eyelids.", + "pos": "noun", + "word_frequency": 16711 + }, + { + "word": "fave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a favorite person or thing", + "example_sentence_english": "That song is my new fave.", + "pos": "noun", + "word_frequency": 16713 + }, + { + "word": "finisher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that finishes something", + "example_sentence_english": "He's a strong finisher in long-distance races.", + "pos": "noun", + "word_frequency": 16714 + }, + { + "word": "fluke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unlikely chance occurrence, especially a surprising piece of luck", + "example_sentence_english": "His win was a complete fluke.", + "pos": "noun", + "word_frequency": 16715 + }, + { + "word": "fondness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affection or liking for someone or something", + "example_sentence_english": "She had a great fondness for old books.", + "pos": "noun", + "word_frequency": 16716 + }, + { + "word": "gauntlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a protective glove, typically of leather and steel, worn by a knight in armor", + "example_sentence_english": "The knight threw down his gauntlet as a challenge.", + "pos": "noun", + "word_frequency": 16718 + }, + { + "word": "ghanaian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person from Ghana", + "example_sentence_english": "The Ghanaian ambassador spoke at the conference.", + "pos": "noun", + "word_frequency": 16721 + }, + { + "word": "ghostly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Resembling a ghost; spectral", + "example_sentence_english": "A ghostly figure appeared in the old house.", + "pos": "adjective", + "word_frequency": 16722 + }, + { + "word": "grouse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A type of game bird; a complaint", + "example_sentence_english": "The hunter aimed at the grouse in the bushes.", + "pos": "noun", + "word_frequency": 16726 + }, + { + "word": "growl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To make a low, guttural sound, typically in anger or warning", + "example_sentence_english": "The dog began to growl at the stranger.", + "pos": "verb", + "word_frequency": 16727 + }, + { + "word": "habitual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Done or doing constantly or as a habit", + "example_sentence_english": "His habitual tardiness was starting to annoy his colleagues.", + "pos": "adjective", + "word_frequency": 16729 + }, + { + "word": "hammock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A bed made of canvas or rope netting, suspended by cords at the ends", + "example_sentence_english": "She spent the afternoon reading in the hammock under the trees.", + "pos": "noun", + "word_frequency": 16730 + }, + { + "word": "hazy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Obscured by haze; vague or unclear", + "example_sentence_english": "The morning was hazy, making it difficult to see the mountains.", + "pos": "adjective", + "word_frequency": 16731 + }, + { + "word": "himalayan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to the Himalayas", + "example_sentence_english": "The Himalayan mountains are the highest in the world.", + "pos": "adjective", + "word_frequency": 16735 + }, + { + "word": "horticultural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the art or practice of garden cultivation and management", + "example_sentence_english": "She studied horticultural science at university.", + "pos": "adjective", + "word_frequency": 16737 + }, + { + "word": "hurl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To throw (an object) with great force", + "example_sentence_english": "He watched the waves hurl themselves against the rocks.", + "pos": "verb", + "word_frequency": 16739 + }, + { + "word": "ide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A freshwater fish of the carp family", + "example_sentence_english": "The angler caught a large ide in the river.", + "pos": "noun", + "word_frequency": 16740 + }, + { + "word": "idealistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Characterized by idealism; unrealistically aiming for perfection", + "example_sentence_english": "She was young and idealistic, believing she could change the world.", + "pos": "adjective", + "word_frequency": 16741 + }, + { + "word": "impede", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To delay or prevent (someone or something) by obstructing them; hinder", + "example_sentence_english": "The dense fog impeded their progress on the road.", + "pos": "verb", + "word_frequency": 16742 + }, + { + "word": "imperialist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who supports or practices imperialism", + "example_sentence_english": "Critics denounced him as an imperialist for his expansionist policies.", + "pos": "noun", + "word_frequency": 16743 + }, + { + "word": "inflame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To provoke or intensify (strong feelings, especially anger or excitement) in someone; to cause inflammation", + "example_sentence_english": "His harsh words only served to inflame the already tense situation.", + "pos": "verb", + "word_frequency": 16744 + }, + { + "word": "inhumane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lacking pity or compassion; cruel", + "example_sentence_english": "The conditions in the prison were described as inhumane.", + "pos": "adjective", + "word_frequency": 16745 + }, + { + "word": "instantaneous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Occurring or done in an instant or instantly", + "example_sentence_english": "The effect of the medicine was instantaneous.", + "pos": "adjective", + "word_frequency": 16746 + }, + { + "word": "italic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A typeface in which the letters slope to the right", + "example_sentence_english": "The word was printed in italic to emphasize its importance.", + "pos": "noun", + "word_frequency": 16747 + }, + { + "word": "jinx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that brings bad luck; a spell of bad luck", + "example_sentence_english": "Don't say that, you'll jinx it!", + "pos": "noun", + "word_frequency": 16750 + }, + { + "word": "jobless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Without a job; unemployed", + "example_sentence_english": "The government is trying to reduce the number of jobless people.", + "pos": "adjective", + "word_frequency": 16751 + }, + { + "word": "jurisprudence", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "The theory or philosophy of law", + "example_sentence_english": "She specialized in comparative jurisprudence during her law studies.", + "pos": "noun", + "word_frequency": 16754 + }, + { + "word": "justifiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Able to be shown to be right or reasonable; defensible against criticism", + "example_sentence_english": "His anger was completely justifiable given the circumstances.", + "pos": "adjective", + "word_frequency": 16755 + }, + { + "word": "lark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small songbird; a playful adventure", + "example_sentence_english": "The lark sang sweetly in the morning sky.", + "pos": "noun", + "word_frequency": 16761 + }, + { + "word": "linkage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a connection or relationship", + "example_sentence_english": "There is a clear linkage between diet and health.", + "pos": "noun", + "word_frequency": 16762 + }, + { + "word": "masonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Freemasons or Freemasonry", + "example_sentence_english": "The building had distinct masonic symbols on its facade.", + "pos": "adjective", + "word_frequency": 16768 + }, + { + "word": "mohawk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hairstyle; a member of a Native American tribe", + "example_sentence_english": "He sported a bold mohawk haircut.", + "pos": "noun", + "word_frequency": 16774 + }, + { + "word": "nada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nothing", + "example_sentence_english": "I asked him what he found, and he said 'nada'.", + "pos": "noun", + "word_frequency": 16775 + }, + { + "word": "newfound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newly discovered or acquired", + "example_sentence_english": "She enjoyed her newfound freedom after graduation.", + "pos": "adjective", + "word_frequency": 16778 + }, + { + "word": "observational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or based on observation", + "example_sentence_english": "The study used an observational approach to gather data.", + "pos": "adjective", + "word_frequency": 16781 + }, + { + "word": "ombudsman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official appointed to investigate complaints against public authorities or organizations", + "example_sentence_english": "If you have a complaint, you can contact the ombudsman's office.", + "pos": "noun", + "word_frequency": 16785 + }, + { + "word": "pancreas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large gland behind the stomach that secretes digestive enzymes and hormones", + "example_sentence_english": "The pancreas plays a vital role in digestion and blood sugar regulation.", + "pos": "noun", + "word_frequency": 16786 + }, + { + "word": "parlour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sitting room in a private house; a shop providing a specified service", + "example_sentence_english": "We sat in the parlour and enjoyed a cup of tea.", + "pos": "noun", + "word_frequency": 16787 + }, + { + "word": "pasha", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a former title of a Turkish officer of high rank", + "example_sentence_english": "The pasha commanded a large army in the Ottoman Empire.", + "pos": "noun", + "word_frequency": 16788 + }, + { + "word": "posting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an item of content published online; a job vacancy", + "example_sentence_english": "She saw an interesting job posting on the company's website.", + "pos": "noun", + "word_frequency": 16793 + }, + { + "word": "postmaster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the person in charge of a post office", + "example_sentence_english": "The postmaster ensured all mail was delivered on time.", + "pos": "noun", + "word_frequency": 16794 + }, + { + "word": "quarterfinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a match or round preceding the semifinal", + "example_sentence_english": "The team advanced to the quarterfinal after winning their last match.", + "pos": "noun", + "word_frequency": 16797 + }, + { + "word": "raisin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dried grape", + "example_sentence_english": "I like to add raisins to my oatmeal.", + "pos": "noun", + "word_frequency": 16798 + }, + { + "word": "ratification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of signing or giving formal consent to a treaty, contract, or agreement, making it officially valid", + "example_sentence_english": "The treaty requires ratification by all member states.", + "pos": "noun", + "word_frequency": 16799 + }, + { + "word": "reclamation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of claiming something back or of reasserting a right", + "example_sentence_english": "The reclamation of the land after the flood took many years.", + "pos": "noun", + "word_frequency": 16800 + }, + { + "word": "refute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prove (a statement or theory) to be wrong or false", + "example_sentence_english": "She tried to refute the accusations made against her.", + "pos": "verb", + "word_frequency": 16802 + }, + { + "word": "resettlement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of settling or being settled in another place", + "example_sentence_english": "The government initiated a program for the resettlement of refugees.", + "pos": "noun", + "word_frequency": 16803 + }, + { + "word": "sculpt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "create or represent (something) by carving, casting, or shaping clay or other materials", + "example_sentence_english": "The artist will sculpt a statue out of marble.", + "pos": "verb", + "word_frequency": 16806 + }, + { + "word": "sedentary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person) tending to spend much time seated; inactive", + "example_sentence_english": "A sedentary lifestyle can lead to health problems.", + "pos": "adjective", + "word_frequency": 16807 + }, + { + "word": "shiver", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "(of a person or animal) tremble slightly and uncontrollably as a result of being cold, frightened, or excited", + "example_sentence_english": "She began to shiver from the cold.", + "pos": "verb", + "word_frequency": 16809 + }, + { + "word": "shocker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden and disturbing or surprising event or news", + "example_sentence_english": "The news of his resignation was a real shocker.", + "pos": "noun", + "word_frequency": 16810 + }, + { + "word": "showroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room used for displaying goods for sale", + "example_sentence_english": "We visited the car showroom to see the new models.", + "pos": "noun", + "word_frequency": 16812 + }, + { + "word": "sightseeing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the activity of visiting places of interest in a particular location", + "example_sentence_english": "We spent the day sightseeing in the city.", + "pos": "noun", + "word_frequency": 16813 + }, + { + "word": "situational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or dependent on a particular situation", + "example_sentence_english": "His reaction was purely situational, not typical of his character.", + "pos": "adjective", + "word_frequency": 16814 + }, + { + "word": "soggy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wet and soft, typically unpleasantly so", + "example_sentence_english": "The rain made the ground soggy and muddy.", + "pos": "adjective", + "word_frequency": 16815 + }, + { + "word": "someplace", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in or to some unspecified place", + "example_sentence_english": "I need to go someplace quiet to study.", + "pos": "adverb", + "word_frequency": 16816 + }, + { + "word": "sorcerer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who claims or uses magical powers; a wizard", + "example_sentence_english": "The sorcerer cast a powerful spell.", + "pos": "noun", + "word_frequency": 16817 + }, + { + "word": "sorcery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the use of magic, especially black magic", + "example_sentence_english": "The villagers believed the old woman practiced sorcery.", + "pos": "noun", + "word_frequency": 16818 + }, + { + "word": "speciality", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area of expertise or a particular skill", + "example_sentence_english": "Italian cuisine is his speciality.", + "pos": "noun", + "word_frequency": 16819 + }, + { + "word": "spleen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an abdominal organ involved in the production and removal of blood cells", + "example_sentence_english": "The spleen plays an important role in the immune system.", + "pos": "noun", + "word_frequency": 16820 + }, + { + "word": "starlight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the light emitted by stars", + "example_sentence_english": "We sat under the starlight, enjoying the quiet night.", + "pos": "noun", + "word_frequency": 16821 + }, + { + "word": "steadfast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resolutely or dutifully firm and unwavering", + "example_sentence_english": "He remained steadfast in his commitment to the project.", + "pos": "adjective", + "word_frequency": 16822 + }, + { + "word": "stoop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bend one's head or body forwards and downwards", + "example_sentence_english": "He had to stoop to enter the low doorway.", + "pos": "verb", + "word_frequency": 16823 + }, + { + "word": "stylistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of a particular style or artistic movement", + "example_sentence_english": "The painting has unique stylistic elements.", + "pos": "adjective", + "word_frequency": 16824 + }, + { + "word": "superstitious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing a belief in superstitions", + "example_sentence_english": "Many people are superstitious about black cats.", + "pos": "adjective", + "word_frequency": 16826 + }, + { + "word": "thrice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "three times", + "example_sentence_english": "He knocked thrice before entering the room.", + "pos": "adverb", + "word_frequency": 16829 + }, + { + "word": "touchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person) easily offended or upset", + "example_sentence_english": "He's very touchy about his age.", + "pos": "adjective", + "word_frequency": 16831 + }, + { + "word": "trampoline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong fabric sheet connected by springs to a frame, used for acrobatic jumping", + "example_sentence_english": "The children loved jumping on the trampoline.", + "pos": "noun", + "word_frequency": 16832 + }, + { + "word": "tranquil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free from disturbance; calm", + "example_sentence_english": "The lake was tranquil in the early morning.", + "pos": "adjective", + "word_frequency": 16833 + }, + { + "word": "transformative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing a marked change in someone or something", + "example_sentence_english": "Education can be a truly transformative experience.", + "pos": "adjective", + "word_frequency": 16834 + }, + { + "word": "trespass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enter the owner's land or property without permission", + "example_sentence_english": "Do not trespass on private property.", + "pos": "verb", + "word_frequency": 16835 + }, + { + "word": "underwrite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sign and accept liability under (an insurance policy), thus guaranteeing payment in case of loss or damage", + "example_sentence_english": "The bank agreed to underwrite the new venture.", + "pos": "verb", + "word_frequency": 16836 + }, + { + "word": "unplanned", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not planned or arranged in advance", + "example_sentence_english": "We had an unplanned stop due to a flat tire.", + "pos": "adjective", + "word_frequency": 16837 + }, + { + "word": "unsuspecting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not aware of the presence of danger or trouble", + "example_sentence_english": "The thief approached the unsuspecting tourist.", + "pos": "adjective", + "word_frequency": 16838 + }, + { + "word": "unwelcome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not wanted or welcome", + "example_sentence_english": "His presence at the party was unwelcome.", + "pos": "adjective", + "word_frequency": 16839 + }, + { + "word": "unwell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not well; ill", + "example_sentence_english": "She felt unwell after eating too much.", + "pos": "adjective", + "word_frequency": 16840 + }, + { + "word": "whit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a very small amount", + "example_sentence_english": "He didn't care a whit about her opinion.", + "pos": "noun", + "word_frequency": 16843 + }, + { + "word": "abode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place of residence; a house or home", + "example_sentence_english": "Welcome to my humble abode.", + "pos": "noun", + "word_frequency": 16851 + }, + { + "word": "abomination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thing that causes disgust or hatred", + "example_sentence_english": "Slavery is an abomination.", + "pos": "noun", + "word_frequency": 16852 + }, + { + "word": "adherent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "someone who supports a particular party, person, or set of ideas", + "example_sentence_english": "He was a strong adherent of the new policy.", + "pos": "noun", + "word_frequency": 16855 + }, + { + "word": "allotment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a share or portion of something assigned or distributed", + "example_sentence_english": "Each family received an allotment of land.", + "pos": "noun", + "word_frequency": 16857 + }, + { + "word": "angelic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling an angel, especially in beauty, innocence, or goodness", + "example_sentence_english": "The child had an angelic smile.", + "pos": "adjective", + "word_frequency": 16858 + }, + { + "word": "antisocial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrary to the laws and customs of society; hostile or harmful to organized society", + "example_sentence_english": "His antisocial behavior made him unpopular.", + "pos": "adjective", + "word_frequency": 16859 + }, + { + "word": "astral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the stars", + "example_sentence_english": "He claimed to have an astral projection experience.", + "pos": "adjective", + "word_frequency": 16861 + }, + { + "word": "astray", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "away from the correct path or direction", + "example_sentence_english": "The sheep went astray from the flock.", + "pos": "adverb", + "word_frequency": 16862 + }, + { + "word": "blacklist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a list of people or things viewed with suspicion or disapproval", + "example_sentence_english": "His name was put on the blacklist.", + "pos": "noun", + "word_frequency": 16867 + }, + { + "word": "blunder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stupid or careless mistake", + "example_sentence_english": "He made a serious blunder in the negotiation.", + "pos": "noun", + "word_frequency": 16868 + }, + { + "word": "brownish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhat brown in color", + "example_sentence_english": "The old photograph had a yellowish-brownish tint.", + "pos": "adjective", + "word_frequency": 16869 + }, + { + "word": "chaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a drink taken after a stronger one; someone or something that chases", + "example_sentence_english": "He ordered a whiskey with a beer chaser.", + "pos": "noun", + "word_frequency": 16871 + }, + { + "word": "choreographer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who composes the sequence of steps and moves for a dance or other performance", + "example_sentence_english": "The choreographer designed the ballet's intricate movements.", + "pos": "noun", + "word_frequency": 16874 + }, + { + "word": "commotion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of confused and noisy disturbance", + "example_sentence_english": "There was a great commotion in the street.", + "pos": "noun", + "word_frequency": 16878 + }, + { + "word": "completeness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being complete", + "example_sentence_english": "The completeness of the report was impressive.", + "pos": "noun", + "word_frequency": 16879 + }, + { + "word": "concierge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hotel employee who helps guests", + "example_sentence_english": "The concierge helped us book a taxi to the airport.", + "pos": "noun", + "word_frequency": 16880 + }, + { + "word": "cynicism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an attitude of distrust toward human sincerity or integrity", + "example_sentence_english": "His cynicism made it hard for him to trust anyone.", + "pos": "noun", + "word_frequency": 16882 + }, + { + "word": "darken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become dark", + "example_sentence_english": "The clouds began to darken, signaling a storm.", + "pos": "verb", + "word_frequency": 16883 + }, + { + "word": "daze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stun or confuse", + "example_sentence_english": "The bright flash of light seemed to daze him for a moment.", + "pos": "verb", + "word_frequency": 16884 + }, + { + "word": "debatable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open to discussion or argument", + "example_sentence_english": "Whether it was the right decision is still debatable.", + "pos": "adjective", + "word_frequency": 16885 + }, + { + "word": "denominator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the number below the line in a common fraction", + "example_sentence_english": "In the fraction 3/4, 4 is the denominator.", + "pos": "noun", + "word_frequency": 16886 + }, + { + "word": "devolve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to transfer or delegate (power) to a lower level", + "example_sentence_english": "The central government decided to devolve more power to local authorities.", + "pos": "verb", + "word_frequency": 16887 + }, + { + "word": "dowry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property or money brought by a bride to her husband on their marriage", + "example_sentence_english": "In some cultures, a dowry is still an important part of marriage traditions.", + "pos": "noun", + "word_frequency": 16890 + }, + { + "word": "duality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of having two parts", + "example_sentence_english": "The film explores the duality of good and evil.", + "pos": "noun", + "word_frequency": 16891 + }, + { + "word": "duplex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a house divided into two apartments", + "example_sentence_english": "They bought a duplex and rented out the other half.", + "pos": "noun", + "word_frequency": 16892 + }, + { + "word": "endear", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause to be loved or liked", + "example_sentence_english": "Her kindness and humor quickly endeared her to everyone.", + "pos": "verb", + "word_frequency": 16895 + }, + { + "word": "epilogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a section or speech at the end of a book or play", + "example_sentence_english": "The epilogue revealed what happened to the characters years later.", + "pos": "noun", + "word_frequency": 16896 + }, + { + "word": "exemplify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be a typical example of", + "example_sentence_english": "His dedication to his work exemplifies true professionalism.", + "pos": "verb", + "word_frequency": 16897 + }, + { + "word": "extermination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of destroying completely", + "example_sentence_english": "The extermination of pests is crucial for public health.", + "pos": "noun", + "word_frequency": 16899 + }, + { + "word": "firefly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a nocturnal beetle with a light-producing organ", + "example_sentence_english": "We watched the fireflies glow in the evening.", + "pos": "noun", + "word_frequency": 16904 + }, + { + "word": "flotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of floating", + "example_sentence_english": "The life jacket provides excellent flotation.", + "pos": "noun", + "word_frequency": 16906 + }, + { + "word": "forage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to search widely for food or provisions", + "example_sentence_english": "Bears often forage for berries in the forest.", + "pos": "verb", + "word_frequency": 16907 + }, + { + "word": "foreword", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short introduction to a book", + "example_sentence_english": "The author wrote a heartfelt foreword to the new edition.", + "pos": "noun", + "word_frequency": 16908 + }, + { + "word": "habitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable or good enough to live in", + "example_sentence_english": "Scientists are searching for habitable planets beyond our solar system.", + "pos": "adjective", + "word_frequency": 16912 + }, + { + "word": "harem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the separate part of a Muslim household reserved for women", + "example_sentence_english": "The historical drama depicted life within a royal harem.", + "pos": "noun", + "word_frequency": 16913 + }, + { + "word": "hegemony", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "leadership or dominance, especially by one state or social group over others", + "example_sentence_english": "The country sought to establish its hegemony over the region.", + "pos": "noun", + "word_frequency": 16915 + }, + { + "word": "hippo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, thick-skinned African mammal", + "example_sentence_english": "We saw a hippo swimming in the river at the zoo.", + "pos": "noun", + "word_frequency": 16918 + }, + { + "word": "hypnotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing a trance-like state; mesmerizing", + "example_sentence_english": "The rhythmic swaying of the pendulum had a hypnotic effect.", + "pos": "adjective", + "word_frequency": 16920 + }, + { + "word": "inaction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of action where some action is expected or necessary", + "example_sentence_english": "The government's inaction on climate change is a major concern.", + "pos": "noun", + "word_frequency": 16921 + }, + { + "word": "inconclusive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not leading to a firm conclusion or result; not ending doubt or dispute", + "example_sentence_english": "The evidence was inconclusive, so no charges were filed.", + "pos": "adjective", + "word_frequency": 16922 + }, + { + "word": "incubator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an enclosed apparatus for premature babies; a place for new businesses", + "example_sentence_english": "The startup moved into a new business incubator.", + "pos": "noun", + "word_frequency": 16923 + }, + { + "word": "inept", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing no skill; clumsy", + "example_sentence_english": "He was completely inept at sports.", + "pos": "adjective", + "word_frequency": 16924 + }, + { + "word": "inexplicable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be explained or accounted for", + "example_sentence_english": "There was an inexplicable delay in the flight.", + "pos": "adjective", + "word_frequency": 16925 + }, + { + "word": "innovate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make changes in something established by introducing new methods, ideas, or products", + "example_sentence_english": "Companies must innovate to stay competitive.", + "pos": "verb", + "word_frequency": 16926 + }, + { + "word": "inseparable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unable to be separated or treated separately", + "example_sentence_english": "The two friends were inseparable.", + "pos": "adjective", + "word_frequency": 16927 + }, + { + "word": "institutionalize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establish (a practice or activity) as a convention or norm", + "example_sentence_english": "The new policy aims to institutionalize fair hiring practices.", + "pos": "verb", + "word_frequency": 16928 + }, + { + "word": "intravenous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existing or taking place within, or administered into, a vein or veins", + "example_sentence_english": "The patient received intravenous fluids.", + "pos": "adjective", + "word_frequency": 16929 + }, + { + "word": "kinship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being related by blood or marriage; a sharing of characteristics or origins", + "example_sentence_english": "There was a strong sense of kinship among the team members.", + "pos": "noun", + "word_frequency": 16930 + }, + { + "word": "lactose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sugar present in milk", + "example_sentence_english": "Many people are intolerant to lactose.", + "pos": "noun", + "word_frequency": 16933 + }, + { + "word": "lenient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a punishment or person in authority) more merciful or tolerant than expected", + "example_sentence_english": "The judge was lenient with the first-time offender.", + "pos": "adjective", + "word_frequency": 16935 + }, + { + "word": "liken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "point out the resemblance of (someone or something) to someone or something else", + "example_sentence_english": "She liked to liken her job to being a detective.", + "pos": "verb", + "word_frequency": 16937 + }, + { + "word": "lockout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the exclusion of employees by an employer from their place of work", + "example_sentence_english": "The dispute led to a factory lockout.", + "pos": "noun", + "word_frequency": 16938 + }, + { + "word": "lube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lubricant", + "example_sentence_english": "Don't forget to add some lube to the chain.", + "pos": "noun", + "word_frequency": 16939 + }, + { + "word": "microorganism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a microscopic organism, especially a bacterium, virus, or fungus", + "example_sentence_english": "Bacteria are a type of microorganism.", + "pos": "noun", + "word_frequency": 16949 + }, + { + "word": "millimeter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one thousandth of a meter", + "example_sentence_english": "The screw was only a few millimeters long.", + "pos": "noun", + "word_frequency": 16950 + }, + { + "word": "modal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or expressing modality (in logic or grammar); relating to a mode or form", + "example_sentence_english": "\"Can\" and \"should\" are examples of modal verbs.", + "pos": "adjective", + "word_frequency": 16953 + }, + { + "word": "modernism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a movement toward modifying traditional beliefs or forms in the arts", + "example_sentence_english": "Modernism influenced art, literature, and architecture.", + "pos": "noun", + "word_frequency": 16954 + }, + { + "word": "negotiator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who conducts negotiations", + "example_sentence_english": "She is a skilled negotiator in business deals.", + "pos": "noun", + "word_frequency": 16959 + }, + { + "word": "nomadic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wandering; moving from place to place", + "example_sentence_english": "The nomadic tribes moved with their herds across the plains.", + "pos": "adjective", + "word_frequency": 16960 + }, + { + "word": "observance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of obeying a rule or custom", + "example_sentence_english": "The observance of safety regulations is crucial in the workplace.", + "pos": "noun", + "word_frequency": 16962 + }, + { + "word": "parenthesis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a word, clause, or sentence inserted as an explanation or afterthought into a passage", + "example_sentence_english": "He added a brief explanation in parenthesis.", + "pos": "noun", + "word_frequency": 16965 + }, + { + "word": "penance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voluntary self-punishment inflicted as an outward expression of repentance for wrongdoing", + "example_sentence_english": "He performed acts of penance to atone for his sins.", + "pos": "noun", + "word_frequency": 16966 + }, + { + "word": "peroxide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a compound containing an oxygen-oxygen single bond", + "example_sentence_english": "She used hydrogen peroxide to clean the wound.", + "pos": "noun", + "word_frequency": 16967 + }, + { + "word": "postdoctoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to study or research carried out after completion of a doctorate", + "example_sentence_english": "She is currently working as a postdoctoral researcher.", + "pos": "adjective", + "word_frequency": 16971 + }, + { + "word": "preposterous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ridiculous, absurd", + "example_sentence_english": "The idea of flying cars seemed preposterous just a few decades ago.", + "pos": "adjective", + "word_frequency": 16973 + }, + { + "word": "preventative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designed to prevent something", + "example_sentence_english": "Regular exercise is a good preventative measure against heart disease.", + "pos": "adjective", + "word_frequency": 16974 + }, + { + "word": "proverbial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referred to in a proverb or idiom", + "example_sentence_english": "He was caught between a rock and a hard place, the proverbial dilemma.", + "pos": "adjective", + "word_frequency": 16976 + }, + { + "word": "puffy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swollen, soft, and rounded", + "example_sentence_english": "Her eyes were puffy from crying all night.", + "pos": "adjective", + "word_frequency": 16977 + }, + { + "word": "quail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, short-tailed game bird", + "example_sentence_english": "We saw a covey of quail in the field.", + "pos": "noun", + "word_frequency": 16979 + }, + { + "word": "quirk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a peculiar behavioral habit", + "example_sentence_english": "His most endearing quirk was his habit of humming when he was deep in thought.", + "pos": "noun", + "word_frequency": 16980 + }, + { + "word": "rabid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or proceeding from an extreme or fanatical belief or attitude", + "example_sentence_english": "The politician had a rabid following among his supporters.", + "pos": "adjective", + "word_frequency": 16981 + }, + { + "word": "reformer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes changes to something in order to improve it", + "example_sentence_english": "She was a passionate reformer, advocating for social justice.", + "pos": "noun", + "word_frequency": 16985 + }, + { + "word": "rehearse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practice a play, piece of music, or other work for public performance", + "example_sentence_english": "The band will rehearse their new songs tonight.", + "pos": "verb", + "word_frequency": 16986 + }, + { + "word": "resonant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a sound) deep, clear, and continuing to sound or reverberate", + "example_sentence_english": "His voice was deep and resonant, filling the hall.", + "pos": "adjective", + "word_frequency": 16987 + }, + { + "word": "resultant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring or produced as a result of something", + "example_sentence_english": "The resultant damage from the storm was extensive.", + "pos": "adjective", + "word_frequency": 16988 + }, + { + "word": "retinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the retina of the eye", + "example_sentence_english": "The doctor performed a retinal examination.", + "pos": "adjective", + "word_frequency": 16989 + }, + { + "word": "scammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes money by using dishonest methods", + "example_sentence_english": "Be careful of online scammers trying to steal your information.", + "pos": "noun", + "word_frequency": 16995 + }, + { + "word": "schema", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a representation of a plan or theory in the form of an outline or model", + "example_sentence_english": "The database schema defines the structure of the data.", + "pos": "noun", + "word_frequency": 16996 + }, + { + "word": "schizophrenic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or suffering from schizophrenia; characterized by contradictory or antagonistic elements", + "example_sentence_english": "The patient was diagnosed with a schizophrenic disorder.", + "pos": "adjective", + "word_frequency": 16997 + }, + { + "word": "scorn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the feeling or belief that someone or something is worthless or despicable", + "example_sentence_english": "He looked at her with scorn after her betrayal.", + "pos": "noun", + "word_frequency": 16999 + }, + { + "word": "screwdriver", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a tool for turning screws", + "example_sentence_english": "He used a screwdriver to tighten the loose screw.", + "pos": "noun", + "word_frequency": 17000 + }, + { + "word": "shipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that transports goods", + "example_sentence_english": "The shipper ensured the package arrived on time.", + "pos": "noun", + "word_frequency": 17003 + }, + { + "word": "sizzle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make a hissing sound when frying", + "example_sentence_english": "The bacon began to sizzle in the hot pan.", + "pos": "verb", + "word_frequency": 17005 + }, + { + "word": "skillful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing skill", + "example_sentence_english": "She is a very skillful painter.", + "pos": "adjective", + "word_frequency": 17006 + }, + { + "word": "sonata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a musical composition", + "example_sentence_english": "Beethoven's 'Moonlight Sonata' is very famous.", + "pos": "noun", + "word_frequency": 17008 + }, + { + "word": "soulful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressing deep feeling", + "example_sentence_english": "Her soulful voice moved the audience.", + "pos": "adjective", + "word_frequency": 17009 + }, + { + "word": "stampede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, panicked rush of a large group of animals or people", + "example_sentence_english": "The loud noise caused a stampede of cattle.", + "pos": "noun", + "word_frequency": 17011 + }, + { + "word": "standoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deadlock or stalemate", + "example_sentence_english": "The negotiations ended in a standoff.", + "pos": "noun", + "word_frequency": 17012 + }, + { + "word": "stately", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dignified, majestic", + "example_sentence_english": "The old mansion had a stately appearance.", + "pos": "adjective", + "word_frequency": 17013 + }, + { + "word": "sugary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "containing or tasting like sugar", + "example_sentence_english": "The drink was too sugary for my taste.", + "pos": "adjective", + "word_frequency": 17014 + }, + { + "word": "suitably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an appropriate or fitting manner", + "example_sentence_english": "She was suitably dressed for the formal event.", + "pos": "adverb", + "word_frequency": 17015 + }, + { + "word": "supernova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a star that suddenly increases greatly in brightness", + "example_sentence_english": "Astronomers observed a distant supernova.", + "pos": "noun", + "word_frequency": 17016 + }, + { + "word": "tantrum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an uncontrolled outburst of anger and frustration", + "example_sentence_english": "The child threw a tantrum when he didn't get his toy.", + "pos": "noun", + "word_frequency": 17017 + }, + { + "word": "tectonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the structure of the earth's crust", + "example_sentence_english": "The earthquake was caused by tectonic plate movement.", + "pos": "adjective", + "word_frequency": 17018 + }, + { + "word": "templar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of a religious military order", + "example_sentence_english": "The Knights Templar were powerful during the Crusades.", + "pos": "noun", + "word_frequency": 17020 + }, + { + "word": "toxicology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of poisons", + "example_sentence_english": "He specialized in toxicology at university.", + "pos": "noun", + "word_frequency": 17023 + }, + { + "word": "transfusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the transfer of blood or blood components", + "example_sentence_english": "The patient needed a blood transfusion.", + "pos": "noun", + "word_frequency": 17024 + }, + { + "word": "treachery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "betrayal of trust", + "example_sentence_english": "His actions were seen as an act of treachery.", + "pos": "noun", + "word_frequency": 17025 + }, + { + "word": "unbreakable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to break", + "example_sentence_english": "This glass is made of unbreakable material.", + "pos": "adjective", + "word_frequency": 17027 + }, + { + "word": "unmatched", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequaled or unrivaled", + "example_sentence_english": "Her talent is unmatched in the field.", + "pos": "adjective", + "word_frequency": 17028 + }, + { + "word": "upheaval", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a violent or sudden change or disruption", + "example_sentence_english": "The political upheaval led to widespread protests.", + "pos": "noun", + "word_frequency": 17029 + }, + { + "word": "veneer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thin decorative covering of fine wood", + "example_sentence_english": "The table had a walnut veneer.", + "pos": "noun", + "word_frequency": 17032 + }, + { + "word": "viewership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the audience for a television program or channel", + "example_sentence_english": "The show's viewership increased significantly.", + "pos": "noun", + "word_frequency": 17034 + }, + { + "word": "viscosity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being thick, sticky, and semifluid in consistency", + "example_sentence_english": "Honey has a high viscosity.", + "pos": "noun", + "word_frequency": 17035 + }, + { + "word": "vouch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confirm or assert that someone or something is true or accurate", + "example_sentence_english": "I can vouch for her honesty.", + "pos": "verb", + "word_frequency": 17037 + }, + { + "word": "wafer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin, crisp biscuit or cake", + "example_sentence_english": "She enjoyed a chocolate wafer with her coffee.", + "pos": "noun", + "word_frequency": 17038 + }, + { + "word": "wiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is very good at something", + "example_sentence_english": "She's a real computer wiz.", + "pos": "noun", + "word_frequency": 17041 + }, + { + "word": "adaptable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to adjust to new conditions", + "example_sentence_english": "He is an adaptable person who can work in any environment.", + "pos": "adjective", + "word_frequency": 17043 + }, + { + "word": "adjutant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a military officer who acts as an administrative assistant to a senior officer", + "example_sentence_english": "The general's adjutant handled all the correspondence.", + "pos": "noun", + "word_frequency": 17044 + }, + { + "word": "altercation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a noisy argument or disagreement", + "example_sentence_english": "There was a minor altercation between the two drivers.", + "pos": "noun", + "word_frequency": 17047 + }, + { + "word": "amplification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of increasing the volume or intensity of sound", + "example_sentence_english": "The amplification of the sound made the music much clearer.", + "pos": "noun", + "word_frequency": 17048 + }, + { + "word": "aptly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a manner that is appropriate or suitable in the circumstances", + "example_sentence_english": "The new machine was aptly named 'The Quick Fix'.", + "pos": "adverb", + "word_frequency": 17051 + }, + { + "word": "armada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fleet of warships", + "example_sentence_english": "The Spanish Armada was defeated in 1588.", + "pos": "noun", + "word_frequency": 17052 + }, + { + "word": "arousal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of awakening or exciting someone", + "example_sentence_english": "The sudden noise caused an arousal of suspicion.", + "pos": "noun", + "word_frequency": 17053 + }, + { + "word": "artistry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creative skill or ability", + "example_sentence_english": "Her piano playing showed great artistry.", + "pos": "noun", + "word_frequency": 17055 + }, + { + "word": "atrium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large open space, often with a glass roof, in the center of a modern building", + "example_sentence_english": "The hotel had a beautiful atrium with a fountain.", + "pos": "noun", + "word_frequency": 17057 + }, + { + "word": "atypical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not typical or usual", + "example_sentence_english": "His behavior was atypical for someone his age.", + "pos": "adjective", + "word_frequency": 17059 + }, + { + "word": "bangladeshi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Bangladesh", + "example_sentence_english": "Many Bangladeshis live in London.", + "pos": "noun", + "word_frequency": 17062 + }, + { + "word": "bavarian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Bavaria, a state in Germany", + "example_sentence_english": "He enjoyed the traditional Bavarian cuisine.", + "pos": "adjective", + "word_frequency": 17066 + }, + { + "word": "bouncer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person employed to prevent trouble or to refuse admission at the door of a nightclub or bar", + "example_sentence_english": "The bouncer checked IDs at the entrance.", + "pos": "noun", + "word_frequency": 17070 + }, + { + "word": "breezy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasantly windy; lighthearted and lively", + "example_sentence_english": "It was a breezy day, perfect for a walk.", + "pos": "adjective", + "word_frequency": 17071 + }, + { + "word": "brunt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the worst part or chief impact of a specified thing", + "example_sentence_english": "The small businesses bore the brunt of the economic downturn.", + "pos": "noun", + "word_frequency": 17072 + }, + { + "word": "burgeon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "begin to grow or increase rapidly; flourish", + "example_sentence_english": "The company's profits began to burgeon.", + "pos": "verb", + "word_frequency": 17074 + }, + { + "word": "cadence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a modulation or inflection of the voice; a rhythmic flow of a sequence of sounds or words", + "example_sentence_english": "The speaker's voice had a soothing cadence.", + "pos": "noun", + "word_frequency": 17076 + }, + { + "word": "californian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from California", + "example_sentence_english": "Many Californians enjoy surfing.", + "pos": "noun", + "word_frequency": 17077 + }, + { + "word": "capitalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of writing or printing in capital letters; the total value of a company's shares", + "example_sentence_english": "Proper capitalization is important in writing.", + "pos": "noun", + "word_frequency": 17079 + }, + { + "word": "cashmere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fine, soft wool", + "example_sentence_english": "She wore a soft cashmere sweater.", + "pos": "noun", + "word_frequency": 17080 + }, + { + "word": "cheeseburger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a hamburger with cheese", + "example_sentence_english": "He ordered a cheeseburger and fries.", + "pos": "noun", + "word_frequency": 17081 + }, + { + "word": "churn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stir or mix with force", + "example_sentence_english": "The machine began to churn the butter.", + "pos": "verb", + "word_frequency": 17082 + }, + { + "word": "cipher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a secret way of writing", + "example_sentence_english": "The message was written in a complex cipher.", + "pos": "noun", + "word_frequency": 17083 + }, + { + "word": "clarinet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woodwind instrument", + "example_sentence_english": "She learned to play the clarinet in school.", + "pos": "noun", + "word_frequency": 17084 + }, + { + "word": "condensation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of a gas changing to a liquid", + "example_sentence_english": "There was a lot of condensation on the windows.", + "pos": "noun", + "word_frequency": 17085 + }, + { + "word": "confluence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a flowing together of two or more things", + "example_sentence_english": "The town is located at the confluence of two rivers.", + "pos": "noun", + "word_frequency": 17086 + }, + { + "word": "constipation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difficulty emptying the bowels", + "example_sentence_english": "He suffered from occasional constipation.", + "pos": "noun", + "word_frequency": 17087 + }, + { + "word": "consultative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "giving advice or consultation", + "example_sentence_english": "The committee has a consultative role.", + "pos": "adjective", + "word_frequency": 17088 + }, + { + "word": "contraband", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "goods that are imported or exported illegally", + "example_sentence_english": "Customs officers seized a large amount of contraband.", + "pos": "noun", + "word_frequency": 17089 + }, + { + "word": "cookery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the art or practice of cooking", + "example_sentence_english": "She enrolled in a cookery class.", + "pos": "noun", + "word_frequency": 17090 + }, + { + "word": "creme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick, soft substance", + "example_sentence_english": "She applied a rich face creme before bed.", + "pos": "noun", + "word_frequency": 17091 + }, + { + "word": "criminally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is against the law", + "example_sentence_english": "He was found criminally responsible for the damage.", + "pos": "adverb", + "word_frequency": 17092 + }, + { + "word": "crutch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a support for walking", + "example_sentence_english": "After the accident, she had to use crutches.", + "pos": "noun", + "word_frequency": 17093 + }, + { + "word": "custodian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has custody of something", + "example_sentence_english": "The school custodian cleaned the hallways every night.", + "pos": "noun", + "word_frequency": 17094 + }, + { + "word": "cyst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sac-like growth", + "example_sentence_english": "The doctor said the cyst was benign.", + "pos": "noun", + "word_frequency": 17095 + }, + { + "word": "decisively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that shows ability to make decisions quickly", + "example_sentence_english": "She acted decisively to resolve the conflict.", + "pos": "adverb", + "word_frequency": 17097 + }, + { + "word": "degeneration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of decline or deterioration", + "example_sentence_english": "The doctor observed signs of tissue degeneration.", + "pos": "noun", + "word_frequency": 17098 + }, + { + "word": "delinquent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failing in duty or law", + "example_sentence_english": "The company was delinquent in its payments.", + "pos": "adjective", + "word_frequency": 17099 + }, + { + "word": "democratically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to democracy", + "example_sentence_english": "The decision was made democratically by the group.", + "pos": "adverb", + "word_frequency": 17100 + }, + { + "word": "deodorant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a substance applied to the body to prevent odor", + "example_sentence_english": "He applied deodorant before leaving for work.", + "pos": "noun", + "word_frequency": 17101 + }, + { + "word": "detonate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to explode or cause to explode", + "example_sentence_english": "The bomb was set to detonate at midnight.", + "pos": "verb", + "word_frequency": 17102 + }, + { + "word": "disapprove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to have an unfavorable opinion", + "example_sentence_english": "Her parents disapprove of her new boyfriend.", + "pos": "verb", + "word_frequency": 17103 + }, + { + "word": "dormitory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large room containing many beds", + "example_sentence_english": "Students live in the university dormitory.", + "pos": "noun", + "word_frequency": 17105 + }, + { + "word": "dredge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to clean out the bed of a harbor or river", + "example_sentence_english": "They used a special boat to dredge the river.", + "pos": "verb", + "word_frequency": 17106 + }, + { + "word": "emigrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leave one's own country to settle permanently in another", + "example_sentence_english": "Many people emigrate for better job opportunities.", + "pos": "verb", + "word_frequency": 17108 + }, + { + "word": "eradication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the complete destruction of something", + "example_sentence_english": "The eradication of the disease is a global goal.", + "pos": "noun", + "word_frequency": 17109 + }, + { + "word": "ethnically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to a particular ethnic group", + "example_sentence_english": "The neighborhood is ethnically diverse.", + "pos": "adverb", + "word_frequency": 17112 + }, + { + "word": "exhilarate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone feel very happy, animated, or thrilled", + "example_sentence_english": "The roller coaster ride was exhilarating.", + "pos": "verb", + "word_frequency": 17113 + }, + { + "word": "eyelash", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a short, curved hair growing from the edge of the eyelid", + "example_sentence_english": "She had long, dark eyelashes.", + "pos": "noun", + "word_frequency": 17114 + }, + { + "word": "feline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to cats or the cat family", + "example_sentence_english": "The lion is a powerful feline creature.", + "pos": "adjective", + "word_frequency": 17115 + }, + { + "word": "femininity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being female", + "example_sentence_english": "She embraced her femininity.", + "pos": "noun", + "word_frequency": 17116 + }, + { + "word": "fickle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "changing frequently, especially as regards loyalties or affections", + "example_sentence_english": "The weather here is notoriously fickle.", + "pos": "adjective", + "word_frequency": 17117 + }, + { + "word": "figurative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "departing from a literal use of words", + "example_sentence_english": "He used figurative language to describe his feelings.", + "pos": "adjective", + "word_frequency": 17118 + }, + { + "word": "footwork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the way a person moves their feet", + "example_sentence_english": "His excellent footwork helped him win the boxing match.", + "pos": "noun", + "word_frequency": 17119 + }, + { + "word": "fraught", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full of (something bad); causing or affected by great anxiety or stress", + "example_sentence_english": "The negotiations were fraught with difficulties.", + "pos": "adjective", + "word_frequency": 17120 + }, + { + "word": "freshness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being fresh", + "example_sentence_english": "The freshness of the bread was delightful.", + "pos": "noun", + "word_frequency": 17121 + }, + { + "word": "groan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make a deep, inarticulate sound in response to pain or despair", + "example_sentence_english": "He let out a groan of pain.", + "pos": "verb", + "word_frequency": 17127 + }, + { + "word": "grub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food (informal); the larva of an insect", + "example_sentence_english": "Let's get some grub after the game.", + "pos": "noun", + "word_frequency": 17128 + }, + { + "word": "handout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of printed information given free to students or other people", + "example_sentence_english": "The teacher distributed a handout with the key points.", + "pos": "noun", + "word_frequency": 17130 + }, + { + "word": "hangout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where someone spends a lot of time", + "example_sentence_english": "The coffee shop is our favorite hangout.", + "pos": "noun", + "word_frequency": 17131 + }, + { + "word": "hickory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of tree or its strong, hard wood", + "example_sentence_english": "The furniture was made of solid hickory.", + "pos": "noun", + "word_frequency": 17135 + }, + { + "word": "hoist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raise (something) by means of ropes and pulleys", + "example_sentence_english": "They used a crane to hoist the beams into place.", + "pos": "verb", + "word_frequency": 17137 + }, + { + "word": "huff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breathe out heavily; express annoyance", + "example_sentence_english": "She let out a huff of exasperation.", + "pos": "verb", + "word_frequency": 17139 + }, + { + "word": "hunk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large piece; an attractive man (informal)", + "example_sentence_english": "He cut a large hunk of bread.", + "pos": "noun", + "word_frequency": 17140 + }, + { + "word": "identifier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a name or number that identifies someone or something", + "example_sentence_english": "Each product has a unique identifier.", + "pos": "noun", + "word_frequency": 17142 + }, + { + "word": "increment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an increase or addition, especially one of a series on a fixed scale", + "example_sentence_english": "The salary will increase by annual increments.", + "pos": "noun", + "word_frequency": 17143 + }, + { + "word": "industrialize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "develop industries in a country or region", + "example_sentence_english": "Many developing nations seek to industrialize rapidly.", + "pos": "verb", + "word_frequency": 17144 + }, + { + "word": "informally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a relaxed or unofficial way", + "example_sentence_english": "We decided to meet informally for coffee.", + "pos": "adverb", + "word_frequency": 17145 + }, + { + "word": "inhalation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of breathing in", + "example_sentence_english": "Deep inhalation can help calm your nerves.", + "pos": "noun", + "word_frequency": 17146 + }, + { + "word": "intoxication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being drunk or poisoned", + "example_sentence_english": "Alcohol intoxication impairs judgment.", + "pos": "noun", + "word_frequency": 17147 + }, + { + "word": "jagged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having rough, sharp points protruding", + "example_sentence_english": "The broken glass had jagged edges.", + "pos": "adjective", + "word_frequency": 17148 + }, + { + "word": "lasagna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dish made with layers of pasta, sauce, and cheese", + "example_sentence_english": "We had lasagna for dinner last night.", + "pos": "noun", + "word_frequency": 17157 + }, + { + "word": "mediocrity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being average or not very good", + "example_sentence_english": "He was tired of the mediocrity of his daily routine.", + "pos": "noun", + "word_frequency": 17166 + }, + { + "word": "midwestern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Midwest of the United States", + "example_sentence_english": "She grew up in a small Midwestern town.", + "pos": "adjective", + "word_frequency": 17167 + }, + { + "word": "moat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deep, wide ditch, typically filled with water, surrounding a castle, town, or fortress for defense", + "example_sentence_english": "The castle was protected by a wide moat.", + "pos": "noun", + "word_frequency": 17168 + }, + { + "word": "motorize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equip with a motor", + "example_sentence_english": "They decided to motorize their old bicycle.", + "pos": "verb", + "word_frequency": 17171 + }, + { + "word": "mouthpiece", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of a telephone, musical instrument, or other device that is placed in or against the mouth", + "example_sentence_english": "The trumpet's mouthpiece was made of brass.", + "pos": "noun", + "word_frequency": 17172 + }, + { + "word": "muck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dirt, filth, or waste matter", + "example_sentence_english": "His boots were covered in muck from the muddy field.", + "pos": "noun", + "word_frequency": 17173 + }, + { + "word": "murky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark and gloomy, especially due to thick mist", + "example_sentence_english": "The water in the pond was murky and dark.", + "pos": "adjective", + "word_frequency": 17174 + }, + { + "word": "nab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catch (someone) doing something wrong; arrest", + "example_sentence_english": "The police managed to nab the suspect near the station.", + "pos": "verb", + "word_frequency": 17175 + }, + { + "word": "neonatal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to newborn children (or animals)", + "example_sentence_english": "The hospital has a specialized neonatal intensive care unit.", + "pos": "adjective", + "word_frequency": 17176 + }, + { + "word": "neuronal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a neuron or neurons", + "example_sentence_english": "Scientists are studying neuronal activity in the brain.", + "pos": "adjective", + "word_frequency": 17177 + }, + { + "word": "neutralize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (something) ineffective by applying an opposite force or effect", + "example_sentence_english": "The antidote was used to neutralize the poison.", + "pos": "verb", + "word_frequency": 17178 + }, + { + "word": "omen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an event regarded as a portent of good or evil", + "example_sentence_english": "The black cat crossing their path was considered a bad omen.", + "pos": "noun", + "word_frequency": 17181 + }, + { + "word": "orally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by word of mouth; verbally", + "example_sentence_english": "The instructions were given orally, not in writing.", + "pos": "adverb", + "word_frequency": 17183 + }, + { + "word": "overgrow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grow or spread over (something) so as to cover it completely", + "example_sentence_english": "The garden was completely overgrown with weeds.", + "pos": "verb", + "word_frequency": 17184 + }, + { + "word": "overprice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charge too high a price for", + "example_sentence_english": "Many tourists feel that the souvenirs are overpriced.", + "pos": "verb", + "word_frequency": 17185 + }, + { + "word": "overrule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reject or disallow by exercising one's superior authority", + "example_sentence_english": "The judge decided to overrule the objection.", + "pos": "verb", + "word_frequency": 17186 + }, + { + "word": "painkiller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a drug or medicine for relieving pain", + "example_sentence_english": "She took a painkiller to ease her headache.", + "pos": "noun", + "word_frequency": 17187 + }, + { + "word": "pallet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a portable platform on which goods can be moved, stacked, and stored", + "example_sentence_english": "The boxes were stacked on a wooden pallet.", + "pos": "noun", + "word_frequency": 17188 + }, + { + "word": "patriarchy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of society or government in which men hold the power and women are largely excluded from it", + "example_sentence_english": "Feminist scholars often analyze the structures of patriarchy.", + "pos": "noun", + "word_frequency": 17190 + }, + { + "word": "patsy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is easily taken advantage of or blamed for something", + "example_sentence_english": "He felt like a patsy after being tricked into doing all the work.", + "pos": "noun", + "word_frequency": 17191 + }, + { + "word": "pedagogy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the method and practice of teaching, especially as an academic subject or theoretical concept", + "example_sentence_english": "The new teaching methods reflect modern pedagogy.", + "pos": "noun", + "word_frequency": 17194 + }, + { + "word": "perm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical treatment that makes hair curly or wavy", + "example_sentence_english": "She decided to get a perm to add volume to her hair.", + "pos": "noun", + "word_frequency": 17195 + }, + { + "word": "philanthropist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who seeks to promote the welfare of others, especially by the generous donation of money to good causes", + "example_sentence_english": "The wealthy philanthropist donated millions to charity.", + "pos": "noun", + "word_frequency": 17196 + }, + { + "word": "piedmont", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gentle slope leading from the base of mountains to a region of flat land", + "example_sentence_english": "The city is located in the piedmont region, at the foot of the mountains.", + "pos": "noun", + "word_frequency": 17197 + }, + { + "word": "pinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of bean with mottled skin", + "example_sentence_english": "She cooked a delicious chili with pinto beans.", + "pos": "noun", + "word_frequency": 17198 + }, + { + "word": "poc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "People of Color", + "example_sentence_english": "The conference aimed to amplify the voices of POC in tech.", + "pos": "noun", + "word_frequency": 17199 + }, + { + "word": "predictor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Something that indicates what will happen in the future.", + "example_sentence_english": "High school grades are often a good predictor of college success.", + "pos": "noun", + "word_frequency": 17202 + }, + { + "word": "profess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To state openly; to claim.", + "example_sentence_english": "He professed his innocence despite the evidence.", + "pos": "verb", + "word_frequency": 17204 + }, + { + "word": "readership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The people who read a particular newspaper, magazine, or book.", + "example_sentence_english": "The magazine has a large and loyal readership.", + "pos": "noun", + "word_frequency": 17207 + }, + { + "word": "reaffirm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To state again strongly; to confirm.", + "example_sentence_english": "The company reaffirmed its commitment to environmental protection.", + "pos": "verb", + "word_frequency": 17208 + }, + { + "word": "relinquish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To voluntarily give up a possession, right, or power.", + "example_sentence_english": "He was forced to relinquish control of the company.", + "pos": "verb", + "word_frequency": 17210 + }, + { + "word": "resolute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Firm in purpose or belief; determined.", + "example_sentence_english": "She was resolute in her decision to pursue her dreams.", + "pos": "adjective", + "word_frequency": 17211 + }, + { + "word": "retainer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A fee paid in advance to secure services; a loyal servant or follower.", + "example_sentence_english": "The lawyer asked for a substantial retainer before starting the case.", + "pos": "noun", + "word_frequency": 17212 + }, + { + "word": "salient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Most noticeable or important.", + "example_sentence_english": "The salient features of the report were highlighted in the summary.", + "pos": "adjective", + "word_frequency": 17213 + }, + { + "word": "schematic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Representing in a simplified or diagrammatic form.", + "example_sentence_english": "The engineer drew a schematic diagram of the circuit.", + "pos": "adjective", + "word_frequency": 17214 + }, + { + "word": "scoreless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Without a score; having no points.", + "example_sentence_english": "The first half of the game remained scoreless.", + "pos": "adjective", + "word_frequency": 17215 + }, + { + "word": "seawater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Water from the sea or ocean.", + "example_sentence_english": "Seawater is too salty to drink.", + "pos": "noun", + "word_frequency": 17216 + }, + { + "word": "seedling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A young plant, especially one raised from seed.", + "example_sentence_english": "We planted the tomato seedlings in the garden.", + "pos": "noun", + "word_frequency": 17217 + }, + { + "word": "sentient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Able to perceive or feel things.", + "example_sentence_english": "Many philosophers debate whether AI can ever become truly sentient.", + "pos": "adjective", + "word_frequency": 17218 + }, + { + "word": "separatist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who supports the separation of a particular group of people from a larger body on the basis of ethnicity, religion, or gender.", + "example_sentence_english": "The region has a history of separatist movements.", + "pos": "noun", + "word_frequency": 17219 + }, + { + "word": "sera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Plural of serum; the clear, yellowish fluid portion of blood.", + "example_sentence_english": "The lab collected multiple sera samples for analysis.", + "pos": "noun", + "word_frequency": 17220 + }, + { + "word": "snippet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A small piece or brief extract.", + "example_sentence_english": "I only heard a snippet of their conversation.", + "pos": "noun", + "word_frequency": 17225 + }, + { + "word": "spokeswoman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A woman who is chosen to speak officially for a group or organization.", + "example_sentence_english": "The spokeswoman announced the company's new policy.", + "pos": "noun", + "word_frequency": 17227 + }, + { + "word": "spotless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Absolutely clean or pure.", + "example_sentence_english": "The kitchen was absolutely spotless after she cleaned it.", + "pos": "adjective", + "word_frequency": 17228 + }, + { + "word": "stinky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Having a strong, unpleasant smell.", + "example_sentence_english": "The garbage can was very stinky.", + "pos": "adjective", + "word_frequency": 17230 + }, + { + "word": "stockpile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large accumulation of something for future use.", + "example_sentence_english": "The country built up a stockpile of emergency supplies.", + "pos": "noun", + "word_frequency": 17231 + }, + { + "word": "strenuous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Requiring or using great exertion.", + "example_sentence_english": "Climbing the mountain was a strenuous activity.", + "pos": "adjective", + "word_frequency": 17232 + }, + { + "word": "strikingly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "In a way that is very noticeable or impressive.", + "example_sentence_english": "Her new painting was strikingly beautiful.", + "pos": "adverb", + "word_frequency": 17233 + }, + { + "word": "surcharge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An additional charge or payment.", + "example_sentence_english": "There is a small surcharge for using a credit card.", + "pos": "noun", + "word_frequency": 17234 + }, + { + "word": "tarot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A pack of cards, used for fortune-telling.", + "example_sentence_english": "She used tarot cards to predict the future.", + "pos": "noun", + "word_frequency": 17235 + }, + { + "word": "theologian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who studies theology.", + "example_sentence_english": "The theologian gave a lecture on ancient religious texts.", + "pos": "noun", + "word_frequency": 17237 + }, + { + "word": "throb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To beat or pulsate with a strong, regular rhythm.", + "example_sentence_english": "His head began to throb with pain.", + "pos": "verb", + "word_frequency": 17238 + }, + { + "word": "tungsten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rare metallic element, used in light bulb filaments.", + "example_sentence_english": "Tungsten is known for its high melting point.", + "pos": "noun", + "word_frequency": 17239 + }, + { + "word": "twig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small branch or division of a branch", + "example_sentence_english": "The bird landed on a thin twig.", + "pos": "noun", + "word_frequency": 17241 + }, + { + "word": "unharmed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not hurt or damaged", + "example_sentence_english": "Despite the accident, he emerged unharmed.", + "pos": "adjective", + "word_frequency": 17245 + }, + { + "word": "unilaterally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "done by one person or group without the agreement of others", + "example_sentence_english": "The company decided to unilaterally change the terms of the contract.", + "pos": "adverb", + "word_frequency": 17246 + }, + { + "word": "unspeakable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too bad or horrific to be expressed in words", + "example_sentence_english": "The unspeakable horrors of war were depicted in the film.", + "pos": "adjective", + "word_frequency": 17247 + }, + { + "word": "untimely", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "happening or done at an unsuitable or unfortunate time", + "example_sentence_english": "His untimely death shocked everyone.", + "pos": "adjective", + "word_frequency": 17248 + }, + { + "word": "wondrous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspiring a feeling of wonder or delight", + "example_sentence_english": "The Grand Canyon is a truly wondrous sight.", + "pos": "adjective", + "word_frequency": 17257 + }, + { + "word": "workable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capable of being put into practice; feasible", + "example_sentence_english": "We need to find a workable solution to this problem.", + "pos": "adjective", + "word_frequency": 17260 + }, + { + "word": "yak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, shaggy-haired wild ox", + "example_sentence_english": "Yaks are native to the Himalayas.", + "pos": "noun", + "word_frequency": 17261 + }, + { + "word": "abundantly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in large quantities; plentifully", + "example_sentence_english": "The evidence was abundantly clear.", + "pos": "adverb", + "word_frequency": 17269 + }, + { + "word": "acknowledgment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceptance of the truth or existence of something", + "example_sentence_english": "He received an acknowledgment of his application.", + "pos": "noun", + "word_frequency": 17270 + }, + { + "word": "adoration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deep love and respect", + "example_sentence_english": "The fans showed their adoration for the band.", + "pos": "noun", + "word_frequency": 17271 + }, + { + "word": "affectionately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that shows love or fondness", + "example_sentence_english": "She smiled affectionately at her grandchild.", + "pos": "adverb", + "word_frequency": 17272 + }, + { + "word": "affliction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "something that causes pain or suffering", + "example_sentence_english": "The disease was a terrible affliction.", + "pos": "noun", + "word_frequency": 17273 + }, + { + "word": "allude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hint at or refer to indirectly", + "example_sentence_english": "She didn't mention it directly, but she did allude to the problem.", + "pos": "verb", + "word_frequency": 17275 + }, + { + "word": "armageddon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a final and decisive battle; a catastrophic conflict", + "example_sentence_english": "Some people fear a nuclear armageddon.", + "pos": "noun", + "word_frequency": 17279 + }, + { + "word": "backfire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To have an unintended and unwelcome result", + "example_sentence_english": "His plan to surprise her might backfire if she finds out too soon.", + "pos": "verb", + "word_frequency": 17283 + }, + { + "word": "bookshop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A shop where books are sold", + "example_sentence_english": "I spent hours browsing in the old bookshop.", + "pos": "noun", + "word_frequency": 17288 + }, + { + "word": "bower", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A leafy shelter or recess in a garden or wood", + "example_sentence_english": "They sat in the rose bower, enjoying the shade.", + "pos": "noun", + "word_frequency": 17291 + }, + { + "word": "bridesmaid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A woman or girl who attends a bride at her wedding", + "example_sentence_english": "My sister asked me to be her bridesmaid.", + "pos": "noun", + "word_frequency": 17293 + }, + { + "word": "celeb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A celebrity", + "example_sentence_english": "The restaurant was full of celebs last night.", + "pos": "noun", + "word_frequency": 17295 + }, + { + "word": "chesterfield", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A style of sofa with deep buttoned leather upholstery", + "example_sentence_english": "He relaxed on the comfortable leather chesterfield.", + "pos": "noun", + "word_frequency": 17297 + }, + { + "word": "coerce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To persuade an unwilling person to do something by using force or threats", + "example_sentence_english": "He was coerced into signing the document.", + "pos": "verb", + "word_frequency": 17299 + }, + { + "word": "conspirator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who takes part in a conspiracy", + "example_sentence_english": "The police arrested the main conspirator in the plot.", + "pos": "noun", + "word_frequency": 17300 + }, + { + "word": "conspire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make secret plans jointly to commit an unlawful or harmful act", + "example_sentence_english": "They conspired to overthrow the government.", + "pos": "verb", + "word_frequency": 17301 + }, + { + "word": "contraceptive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A device or drug serving to prevent pregnancy", + "example_sentence_english": "Modern medicine offers various forms of contraceptive.", + "pos": "noun", + "word_frequency": 17302 + }, + { + "word": "conversational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or characteristic of conversation", + "example_sentence_english": "She has a very natural and conversational style of speaking.", + "pos": "adjective", + "word_frequency": 17303 + }, + { + "word": "corrosive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Tending to cause corrosion; destructive to materials by chemical action", + "example_sentence_english": "The acid was highly corrosive and ate through the metal.", + "pos": "adjective", + "word_frequency": 17304 + }, + { + "word": "counterpoint", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An argument, idea, or theme used to create a contrast with the main element", + "example_sentence_english": "His optimistic view served as a counterpoint to her pessimism.", + "pos": "noun", + "word_frequency": 17305 + }, + { + "word": "cowardice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lack of bravery", + "example_sentence_english": "His actions were motivated by fear and cowardice.", + "pos": "noun", + "word_frequency": 17306 + }, + { + "word": "crusher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A machine that crushes rock or other materials", + "example_sentence_english": "The stone crusher processed tons of gravel every day.", + "pos": "noun", + "word_frequency": 17307 + }, + { + "word": "dahl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A dish made of lentils or other pulses", + "example_sentence_english": "We had a delicious bowl of lentil dahl for dinner.", + "pos": "noun", + "word_frequency": 17309 + }, + { + "word": "derail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To cause (a train or tram) to leave its tracks; to obstruct (a process) by diverting it from its intended course", + "example_sentence_english": "The sudden obstacle threatened to derail the entire project.", + "pos": "verb", + "word_frequency": 17311 + }, + { + "word": "dill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An aromatic herb with feathery leaves", + "example_sentence_english": "She garnished the salmon with fresh dill.", + "pos": "noun", + "word_frequency": 17312 + }, + { + "word": "diseased", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Affected by disease; unhealthy", + "example_sentence_english": "The diseased tree had to be cut down to prevent the spread of infection.", + "pos": "adjective", + "word_frequency": 17315 + }, + { + "word": "disgruntled", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Angry or dissatisfied", + "example_sentence_english": "The disgruntled employees threatened to go on strike.", + "pos": "adjective", + "word_frequency": 17316 + }, + { + "word": "dispense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To distribute or provide (a service or information) to a number of people; to prepare and give out (medicine)", + "example_sentence_english": "The machine dispenses hot and cold drinks.", + "pos": "verb", + "word_frequency": 17317 + }, + { + "word": "disqualification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of disqualifying or the state of being disqualified", + "example_sentence_english": "His disqualification from the race was due to a false start.", + "pos": "noun", + "word_frequency": 17318 + }, + { + "word": "dizziness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A sensation of spinning and a tendency to lose one's balance", + "example_sentence_english": "She complained of dizziness and nausea after the ride.", + "pos": "noun", + "word_frequency": 17319 + }, + { + "word": "enigmatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysterious, puzzling", + "example_sentence_english": "Her enigmatic smile left him wondering.", + "pos": "adjective", + "word_frequency": 17323 + }, + { + "word": "envisage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to imagine or contemplate", + "example_sentence_english": "It's hard to envisage a future without technology.", + "pos": "verb", + "word_frequency": 17325 + }, + { + "word": "ethically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an ethical manner", + "example_sentence_english": "Companies should behave ethically towards their employees.", + "pos": "adverb", + "word_frequency": 17328 + }, + { + "word": "exhale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breathe out", + "example_sentence_english": "Take a deep breath in, then slowly exhale.", + "pos": "verb", + "word_frequency": 17329 + }, + { + "word": "fission", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the splitting of an atomic nucleus", + "example_sentence_english": "Nuclear fission releases a tremendous amount of energy.", + "pos": "noun", + "word_frequency": 17332 + }, + { + "word": "flurry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, brief fall of snow; a sudden burst of activity", + "example_sentence_english": "There was a sudden flurry of snow this morning.", + "pos": "noun", + "word_frequency": 17333 + }, + { + "word": "frugal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economical, thrifty", + "example_sentence_english": "She lives a very frugal life, saving money wherever she can.", + "pos": "adjective", + "word_frequency": 17335 + }, + { + "word": "galore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in abundance", + "example_sentence_english": "There were toys galore at the children's party.", + "pos": "adverb", + "word_frequency": 17337 + }, + { + "word": "glimmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a faint, wavering light; a faint sign of something", + "example_sentence_english": "There was a glimmer of hope in her eyes.", + "pos": "noun", + "word_frequency": 17341 + }, + { + "word": "grandkid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grandchild (informal)", + "example_sentence_english": "My grandkids are coming to visit next weekend.", + "pos": "noun", + "word_frequency": 17343 + }, + { + "word": "groovy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fashionable, excellent (informal)", + "example_sentence_english": "That's a really groovy tune.", + "pos": "adjective", + "word_frequency": 17344 + }, + { + "word": "gully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small valley or ravine, especially one eroded by water", + "example_sentence_english": "The rainwater carved a deep gully in the hillside.", + "pos": "noun", + "word_frequency": 17345 + }, + { + "word": "handball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a team sport played with a ball", + "example_sentence_english": "She plays handball every Tuesday evening.", + "pos": "noun", + "word_frequency": 17350 + }, + { + "word": "hiker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who goes on long walks in the countryside", + "example_sentence_english": "The hiker enjoyed the scenic views from the mountain trail.", + "pos": "noun", + "word_frequency": 17353 + }, + { + "word": "hologram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a three-dimensional image formed by interference of light beams", + "example_sentence_english": "The concert featured a hologram of the deceased singer.", + "pos": "noun", + "word_frequency": 17354 + }, + { + "word": "humankind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "human beings collectively", + "example_sentence_english": "The future of humankind depends on our actions today.", + "pos": "noun", + "word_frequency": 17356 + }, + { + "word": "hydroelectric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to electricity generated by hydropower", + "example_sentence_english": "The dam generates hydroelectric power for the entire region.", + "pos": "adjective", + "word_frequency": 17357 + }, + { + "word": "ingest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take food, drink, or another substance into the body", + "example_sentence_english": "It's important to be careful about what you ingest.", + "pos": "verb", + "word_frequency": 17359 + }, + { + "word": "kiln", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An oven for baking pottery or bricks", + "example_sentence_english": "The potter fired the clay pots in the kiln.", + "pos": "noun", + "word_frequency": 17366 + }, + { + "word": "latvian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to Latvia, its people, or its language", + "example_sentence_english": "She is learning the Latvian language.", + "pos": "adjective", + "word_frequency": 17368 + }, + { + "word": "lilac", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A flowering shrub or a pale purple color", + "example_sentence_english": "The garden was filled with the sweet scent of lilac.", + "pos": "noun", + "word_frequency": 17369 + }, + { + "word": "limelight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The focus of public attention", + "example_sentence_english": "The young actress enjoyed being in the limelight.", + "pos": "noun", + "word_frequency": 17370 + }, + { + "word": "loathe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Feel intense dislike or disgust for", + "example_sentence_english": "I absolutely loathe doing laundry.", + "pos": "verb", + "word_frequency": 17372 + }, + { + "word": "logistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to the organization and management of a complex operation", + "example_sentence_english": "The logistic challenges of the expedition were immense.", + "pos": "adjective", + "word_frequency": 17373 + }, + { + "word": "macaroni", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A type of pasta in the shape of small tubes", + "example_sentence_english": "My favorite dish is macaroni and cheese.", + "pos": "noun", + "word_frequency": 17375 + }, + { + "word": "manganese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A hard, brittle, silvery-gray metallic element", + "example_sentence_english": "Manganese is an important component in steel production.", + "pos": "noun", + "word_frequency": 17377 + }, + { + "word": "mantis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A predatory insect, typically green or brown, with a triangular head and large forelegs", + "example_sentence_english": "A praying mantis can turn its head almost 180 degrees.", + "pos": "noun", + "word_frequency": 17378 + }, + { + "word": "mayan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to the Maya people or their civilization", + "example_sentence_english": "The Mayan civilization developed an advanced writing system.", + "pos": "adjective", + "word_frequency": 17380 + }, + { + "word": "midsummer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The period around the summer solstice", + "example_sentence_english": "Midsummer is often celebrated with festivals and bonfires.", + "pos": "noun", + "word_frequency": 17382 + }, + { + "word": "milligram", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A unit of mass equal to one thousandth of a gram", + "example_sentence_english": "The tablet contains 500 milligrams of active ingredient.", + "pos": "noun", + "word_frequency": 17384 + }, + { + "word": "momentous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Of great importance or significance, especially in its bearing on future events", + "example_sentence_english": "It was a momentous decision that would change their lives forever.", + "pos": "adjective", + "word_frequency": 17386 + }, + { + "word": "mora", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A unit of phonological weight or a genus of trees", + "example_sentence_english": "In phonology, a long vowel can be considered to have two moras.", + "pos": "noun", + "word_frequency": 17387 + }, + { + "word": "nanoparticle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A microscopic particle with at least one dimension less than 100 nanometers", + "example_sentence_english": "Scientists are developing new drugs using nanoparticles.", + "pos": "noun", + "word_frequency": 17389 + }, + { + "word": "nightfall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The onset of night; dusk", + "example_sentence_english": "We waited until nightfall before starting our journey.", + "pos": "noun", + "word_frequency": 17391 + }, + { + "word": "notary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person authorized to perform certain legal formalities, especially to draw up or certify contracts, deeds, and other documents", + "example_sentence_english": "You need to get this document signed by a notary public.", + "pos": "noun", + "word_frequency": 17393 + }, + { + "word": "observable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Able to be seen or noticed", + "example_sentence_english": "The effects of the new policy were immediately observable.", + "pos": "adjective", + "word_frequency": 17394 + }, + { + "word": "outfield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The part of a baseball field beyond the infield", + "example_sentence_english": "The ball flew high into the outfield.", + "pos": "noun", + "word_frequency": 17396 + }, + { + "word": "paddock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A small field or enclosure where horses are kept or exercised", + "example_sentence_english": "The horses were grazing peacefully in the paddock.", + "pos": "noun", + "word_frequency": 17399 + }, + { + "word": "pang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden strong feeling of pain or distress", + "example_sentence_english": "She felt a sudden pang of guilt after lying.", + "pos": "noun", + "word_frequency": 17400 + }, + { + "word": "participatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving the participation of many people", + "example_sentence_english": "The project adopted a highly participatory approach.", + "pos": "adjective", + "word_frequency": 17401 + }, + { + "word": "pneumatic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "operated by air or gas under pressure", + "example_sentence_english": "The factory uses pneumatic tools for assembly.", + "pos": "adjective", + "word_frequency": 17405 + }, + { + "word": "pointy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a sharp or tapered end", + "example_sentence_english": "The witch wore a tall, pointy hat.", + "pos": "adjective", + "word_frequency": 17406 + }, + { + "word": "polyester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a synthetic fabric", + "example_sentence_english": "This shirt is made of 100% polyester.", + "pos": "noun", + "word_frequency": 17407 + }, + { + "word": "polynomial", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "an expression of more than two algebraic terms", + "example_sentence_english": "We learned how to factor a quadratic polynomial in math class.", + "pos": "noun", + "word_frequency": 17408 + }, + { + "word": "porridge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dish made from oats boiled in water or milk", + "example_sentence_english": "I like to eat hot porridge for breakfast on cold mornings.", + "pos": "noun", + "word_frequency": 17409 + }, + { + "word": "pug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small dog breed with a short snout and wrinkled face", + "example_sentence_english": "My neighbor has a cute little pug named Daisy.", + "pos": "noun", + "word_frequency": 17410 + }, + { + "word": "quill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feather used as a pen", + "example_sentence_english": "In ancient times, people wrote with a quill and ink.", + "pos": "noun", + "word_frequency": 17412 + }, + { + "word": "refurbishment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of cleaning and decorating a room or building", + "example_sentence_english": "The old hotel is undergoing a major refurbishment.", + "pos": "noun", + "word_frequency": 17413 + }, + { + "word": "renown", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being famous", + "example_sentence_english": "The artist achieved international renown for her sculptures.", + "pos": "noun", + "word_frequency": 17414 + }, + { + "word": "reschedule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to change the time or date of something", + "example_sentence_english": "We had to reschedule the meeting due to a conflict.", + "pos": "verb", + "word_frequency": 17415 + }, + { + "word": "revel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enjoy oneself in a lively and noisy way", + "example_sentence_english": "They reveled in their victory all night long.", + "pos": "verb", + "word_frequency": 17416 + }, + { + "word": "rework", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revise or redo something", + "example_sentence_english": "The editor asked me to rework the introduction of my essay.", + "pos": "verb", + "word_frequency": 17417 + }, + { + "word": "rollin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to move by turning over and over", + "example_sentence_english": "The ball started to roll down the hill.", + "pos": "verb", + "word_frequency": 17420 + }, + { + "word": "roundtable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a discussion or conference involving several participants", + "example_sentence_english": "Experts held a roundtable discussion on climate change.", + "pos": "noun", + "word_frequency": 17421 + }, + { + "word": "rower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who rows a boat", + "example_sentence_english": "The rower trained hard for the competition.", + "pos": "noun", + "word_frequency": 17422 + }, + { + "word": "rut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long deep track made by a wheel or a habit that has become boring", + "example_sentence_english": "He felt stuck in a rut and needed a change.", + "pos": "noun", + "word_frequency": 17423 + }, + { + "word": "salaam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a traditional Muslim greeting", + "example_sentence_english": "He greeted them with a salaam and a warm smile.", + "pos": "noun", + "word_frequency": 17424 + }, + { + "word": "scapegoat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is blamed for the wrongdoings of others", + "example_sentence_english": "The manager made the new employee a scapegoat for the team's failure.", + "pos": "noun", + "word_frequency": 17426 + }, + { + "word": "screech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a loud, harsh, piercing cry", + "example_sentence_english": "The car tires screeched as it turned the corner.", + "pos": "verb", + "word_frequency": 17427 + }, + { + "word": "secretion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance produced and discharged by a gland or organ", + "example_sentence_english": "The gland is responsible for the secretion of hormones.", + "pos": "noun", + "word_frequency": 17428 + }, + { + "word": "shambles", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of total disorder", + "example_sentence_english": "After the party, the house was in a complete shambles.", + "pos": "noun", + "word_frequency": 17429 + }, + { + "word": "shipwreck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the destruction of a ship at sea", + "example_sentence_english": "Divers explored the ancient shipwreck at the bottom of the ocean.", + "pos": "noun", + "word_frequency": 17430 + }, + { + "word": "shirtless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not wearing a shirt", + "example_sentence_english": "He walked around the beach shirtless.", + "pos": "adjective", + "word_frequency": 17431 + }, + { + "word": "shrewd", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing sharp powers of judgment", + "example_sentence_english": "She made a shrewd investment that paid off handsomely.", + "pos": "adjective", + "word_frequency": 17432 + }, + { + "word": "shudder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tremble convulsively, typically as a result of fear or revulsion", + "example_sentence_english": "He shuddered at the thought of the cold water.", + "pos": "verb", + "word_frequency": 17433 + }, + { + "word": "sicilian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Sicily or its people", + "example_sentence_english": "They enjoyed traditional Sicilian cuisine during their trip.", + "pos": "adjective", + "word_frequency": 17435 + }, + { + "word": "slalom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ski race down a winding course marked by poles", + "example_sentence_english": "The skier expertly navigated the slalom course.", + "pos": "noun", + "word_frequency": 17436 + }, + { + "word": "solder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a low-melting alloy used for joining metal parts", + "example_sentence_english": "He used solder to connect the wires on the circuit board.", + "pos": "noun", + "word_frequency": 17437 + }, + { + "word": "spar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make the motions of boxing without landing heavy blows; to argue", + "example_sentence_english": "The boxers sparred for a few rounds before the main fight.", + "pos": "verb", + "word_frequency": 17439 + }, + { + "word": "spire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tapering structure on the roof of a church or temple", + "example_sentence_english": "The church's tall spire reached towards the sky.", + "pos": "noun", + "word_frequency": 17440 + }, + { + "word": "spout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tube or lip through which liquid can be poured or discharged", + "example_sentence_english": "Water flowed from the teapot's spout.", + "pos": "noun", + "word_frequency": 17441 + }, + { + "word": "stench", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong and very unpleasant smell", + "example_sentence_english": "The garbage left a terrible stench in the alley.", + "pos": "noun", + "word_frequency": 17442 + }, + { + "word": "stochastic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "randomly determined; involving a random variable", + "example_sentence_english": "The model uses stochastic processes to predict market fluctuations.", + "pos": "adjective", + "word_frequency": 17443 + }, + { + "word": "subsistence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or fact of maintaining or supporting oneself at a minimum level", + "example_sentence_english": "Many families in the region live at a subsistence level.", + "pos": "noun", + "word_frequency": 17445 + }, + { + "word": "subterranean", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existing, occurring, or done under the earth's surface", + "example_sentence_english": "They explored the subterranean caves.", + "pos": "adjective", + "word_frequency": 17446 + }, + { + "word": "sully", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to damage the purity or integrity of; defile", + "example_sentence_english": "He was careful not to sully his reputation.", + "pos": "verb", + "word_frequency": 17447 + }, + { + "word": "superhuman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing abilities or qualities that are more than human", + "example_sentence_english": "The athlete showed superhuman strength during the competition.", + "pos": "adjective", + "word_frequency": 17448 + }, + { + "word": "synchronization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the operation or coordination of things to work together at the same time or rate", + "example_sentence_english": "We need to ensure the synchronization of all the devices.", + "pos": "noun", + "word_frequency": 17449 + }, + { + "word": "tenacity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or fact of being able to grip something firmly; grip", + "example_sentence_english": "Her tenacity helped her overcome many obstacles.", + "pos": "noun", + "word_frequency": 17452 + }, + { + "word": "tolerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be endured or tolerated", + "example_sentence_english": "The pain was tolerable after taking the medication.", + "pos": "adjective", + "word_frequency": 17454 + }, + { + "word": "topper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that is placed on top of something else", + "example_sentence_english": "She wore a stylish topper to the event.", + "pos": "noun", + "word_frequency": 17455 + }, + { + "word": "tuxedo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man's dinner jacket", + "example_sentence_english": "He looked very smart in his new tuxedo.", + "pos": "noun", + "word_frequency": 17457 + }, + { + "word": "understated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presented or expressed in a subtle and effective way", + "example_sentence_english": "Her elegance was understated but undeniable.", + "pos": "adjective", + "word_frequency": 17458 + }, + { + "word": "undeveloped", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not yet developed", + "example_sentence_english": "The land remains undeveloped, preserving its natural beauty.", + "pos": "adjective", + "word_frequency": 17459 + }, + { + "word": "unknowingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without being aware of something", + "example_sentence_english": "She unknowingly walked into the wrong room.", + "pos": "adverb", + "word_frequency": 17461 + }, + { + "word": "unplug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disconnect (an electrical device) by pulling out its plug", + "example_sentence_english": "Please unplug the toaster when you're done.", + "pos": "verb", + "word_frequency": 17462 + }, + { + "word": "untouchable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be touched or affected", + "example_sentence_english": "The champion seemed untouchable in the final match.", + "pos": "adjective", + "word_frequency": 17463 + }, + { + "word": "unwarranted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not justified or authorized", + "example_sentence_english": "His criticism was completely unwarranted.", + "pos": "adjective", + "word_frequency": 17464 + }, + { + "word": "unwillingness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being unwilling", + "example_sentence_english": "Her unwillingness to compromise caused the delay.", + "pos": "noun", + "word_frequency": 17465 + }, + { + "word": "vibrator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that vibrates", + "example_sentence_english": "The phone's vibrator alerted him to the incoming call.", + "pos": "noun", + "word_frequency": 17467 + }, + { + "word": "wail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to utter a prolonged, mournful cry", + "example_sentence_english": "The baby began to wail loudly.", + "pos": "verb", + "word_frequency": 17468 + }, + { + "word": "whisk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take or move (someone or something) in a particular direction suddenly and quickly", + "example_sentence_english": "She whisked the eggs for the omelet.", + "pos": "verb", + "word_frequency": 17471 + }, + { + "word": "wishful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or expressing a wish for something to happen, especially something that is unlikely", + "example_sentence_english": "His plans were based on wishful thinking rather than reality.", + "pos": "adjective", + "word_frequency": 17472 + }, + { + "word": "accountancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the profession or duties of an accountant", + "example_sentence_english": "She decided to pursue a career in accountancy.", + "pos": "noun", + "word_frequency": 17478 + }, + { + "word": "actuality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of existing in reality", + "example_sentence_english": "In actuality, the situation was far more complex.", + "pos": "noun", + "word_frequency": 17479 + }, + { + "word": "aeronautics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the science or art of flight", + "example_sentence_english": "She is studying aeronautics to design new aircraft.", + "pos": "noun", + "word_frequency": 17481 + }, + { + "word": "alibi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a claim or piece of evidence that one was elsewhere when an act, typically a criminal one, is alleged to have taken place", + "example_sentence_english": "The suspect had a strong alibi for the night of the robbery.", + "pos": "noun", + "word_frequency": 17484 + }, + { + "word": "anoint", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to smear or rub with oil, typically as part of a religious ceremony", + "example_sentence_english": "The priest will anoint the new king with holy oil.", + "pos": "verb", + "word_frequency": 17487 + }, + { + "word": "argentinian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Argentina or its people", + "example_sentence_english": "She loves Argentinian tango music.", + "pos": "adjective", + "word_frequency": 17489 + }, + { + "word": "astute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing an ability to accurately assess situations or people and turn this to one's advantage", + "example_sentence_english": "An astute businessman, he quickly identified the market opportunity.", + "pos": "adjective", + "word_frequency": 17493 + }, + { + "word": "attainable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be achieved", + "example_sentence_english": "Setting realistic and attainable goals is important for success.", + "pos": "adjective", + "word_frequency": 17494 + }, + { + "word": "audiobook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a recording of a book being read aloud", + "example_sentence_english": "She listens to an audiobook during her daily commute.", + "pos": "noun", + "word_frequency": 17495 + }, + { + "word": "ballerina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female ballet dancer", + "example_sentence_english": "The young ballerina dreamed of performing on a big stage.", + "pos": "noun", + "word_frequency": 17500 + }, + { + "word": "bewilder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause (someone) to become perplexed and confused", + "example_sentence_english": "The complex instructions completely bewildered him.", + "pos": "verb", + "word_frequency": 17504 + }, + { + "word": "binoculars", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an optical instrument with a lens for each eye, used for viewing distant objects", + "example_sentence_english": "We used binoculars to watch the birds in the distance.", + "pos": "noun", + "word_frequency": 17506 + }, + { + "word": "bonkers", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mad; crazy", + "example_sentence_english": "He went absolutely bonkers when he heard the news.", + "pos": "adjective", + "word_frequency": 17508 + }, + { + "word": "brazen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bold and without shame", + "example_sentence_english": "He made a brazen attempt to steal the painting in broad daylight.", + "pos": "adjective", + "word_frequency": 17510 + }, + { + "word": "burlesque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an absurd or comically exaggerated imitation of something, especially in a literary or dramatic work; a parody", + "example_sentence_english": "The show was a burlesque of classic Hollywood musicals.", + "pos": "noun", + "word_frequency": 17511 + }, + { + "word": "campfire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an outdoor fire in a camp, used for cooking or warmth", + "example_sentence_english": "We sat around the campfire, telling stories and roasting marshmallows.", + "pos": "noun", + "word_frequency": 17514 + }, + { + "word": "caster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small wheel on a swivel, set into the leg or base of a piece of furniture or other object to enable it to be moved easily", + "example_sentence_english": "The office chair needs a new caster because one is broken.", + "pos": "noun", + "word_frequency": 17515 + }, + { + "word": "causation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of causing something; the relationship between cause and effect", + "example_sentence_english": "The study aimed to determine the causation between diet and heart disease.", + "pos": "noun", + "word_frequency": 17516 + }, + { + "word": "centerpiece", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an item or collection of items in the center of a table, typically for decoration; the most important or attractive item", + "example_sentence_english": "The large floral arrangement was the centerpiece of the dining table.", + "pos": "noun", + "word_frequency": 17517 + }, + { + "word": "chameleon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, slow-moving lizard with a prehensile tail, long extensible tongue, and eyes that can be moved independently", + "example_sentence_english": "The chameleon changed its color to blend in with the leaves.", + "pos": "noun", + "word_frequency": 17518 + }, + { + "word": "checker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that checks; a piece used in the game of checkers", + "example_sentence_english": "The quality checker inspected every item before it left the factory.", + "pos": "noun", + "word_frequency": 17519 + }, + { + "word": "clasp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fastener or a tight hold", + "example_sentence_english": "She fastened the necklace with a delicate clasp.", + "pos": "noun", + "word_frequency": 17521 + }, + { + "word": "compulsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong, irresistible urge", + "example_sentence_english": "He felt a strong compulsion to check the door again.", + "pos": "noun", + "word_frequency": 17524 + }, + { + "word": "condescend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to behave in a way that shows one considers oneself superior", + "example_sentence_english": "Please don't condescend to me; I understand the topic perfectly.", + "pos": "verb", + "word_frequency": 17525 + }, + { + "word": "condominium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an apartment building where each apartment is individually owned", + "example_sentence_english": "They bought a new condominium overlooking the city.", + "pos": "noun", + "word_frequency": 17526 + }, + { + "word": "conical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaped like a cone", + "example_sentence_english": "The mountain had a distinct conical peak.", + "pos": "adjective", + "word_frequency": 17528 + }, + { + "word": "conjure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make something appear as if by magic", + "example_sentence_english": "The magician promised to conjure a rabbit from his hat.", + "pos": "verb", + "word_frequency": 17529 + }, + { + "word": "constitutionally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that is allowed or restricted by a constitution", + "example_sentence_english": "The new law was deemed constitutionally sound.", + "pos": "adverb", + "word_frequency": 17530 + }, + { + "word": "convincingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that causes someone to believe that something is true or valid", + "example_sentence_english": "He argued his point very convincingly.", + "pos": "adverb", + "word_frequency": 17531 + }, + { + "word": "copious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abundant in supply or quantity", + "example_sentence_english": "She took copious notes during the lecture.", + "pos": "adjective", + "word_frequency": 17532 + }, + { + "word": "cordial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warm and friendly", + "example_sentence_english": "They exchanged cordial greetings before the meeting.", + "pos": "adjective", + "word_frequency": 17533 + }, + { + "word": "coy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reluctant to give details, especially about something sensitive", + "example_sentence_english": "She was coy about her plans for the weekend.", + "pos": "adjective", + "word_frequency": 17534 + }, + { + "word": "craftsmanship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill in a particular craft", + "example_sentence_english": "The antique clock showed remarkable craftsmanship.", + "pos": "noun", + "word_frequency": 17535 + }, + { + "word": "craziness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being crazy or insane", + "example_sentence_english": "The sheer craziness of the situation made everyone laugh.", + "pos": "noun", + "word_frequency": 17536 + }, + { + "word": "creatively", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that involves the use of imagination or original ideas", + "example_sentence_english": "She approached the problem creatively.", + "pos": "adverb", + "word_frequency": 17537 + }, + { + "word": "crypt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an underground room or vault, especially beneath a church, used as a burial place", + "example_sentence_english": "The ancient crypt held the remains of several historical figures.", + "pos": "noun", + "word_frequency": 17538 + }, + { + "word": "custodial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to custody or guardianship", + "example_sentence_english": "The court granted the mother full custodial rights.", + "pos": "adjective", + "word_frequency": 17539 + }, + { + "word": "deactivate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something inactive or inoperative", + "example_sentence_english": "You need to deactivate your old account before creating a new one.", + "pos": "verb", + "word_frequency": 17540 + }, + { + "word": "derelict", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a very poor condition as a result of disuse and neglect", + "example_sentence_english": "The old factory stood derelict for years before it was demolished.", + "pos": "adjective", + "word_frequency": 17542 + }, + { + "word": "dignitary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person considered to be important because of high rank or office", + "example_sentence_english": "Several foreign dignitaries attended the state dinner.", + "pos": "noun", + "word_frequency": 17543 + }, + { + "word": "dispel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make a doubt, feeling, or belief disappear", + "example_sentence_english": "He tried to dispel her fears about the upcoming exam.", + "pos": "verb", + "word_frequency": 17544 + }, + { + "word": "dissident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who opposes official policy, especially that of an authoritarian state", + "example_sentence_english": "The government arrested several political dissidents.", + "pos": "noun", + "word_frequency": 17545 + }, + { + "word": "dory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of fish or a small, shallow-draft boat", + "example_sentence_english": "They caught a large dory during their fishing trip.", + "pos": "noun", + "word_frequency": 17549 + }, + { + "word": "droplet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tiny drop of a liquid", + "example_sentence_english": "A tiny droplet of water ran down the windowpane.", + "pos": "noun", + "word_frequency": 17551 + }, + { + "word": "edict", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official order or proclamation issued by a person in authority", + "example_sentence_english": "The king issued an edict banning public gatherings.", + "pos": "noun", + "word_frequency": 17552 + }, + { + "word": "egregious", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "outstandingly bad; shocking", + "example_sentence_english": "The egregious error in the report led to serious consequences.", + "pos": "adjective", + "word_frequency": 17554 + }, + { + "word": "elasticity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability of an object or material to resume its normal shape after being stretched or compressed", + "example_sentence_english": "The elasticity of the rubber band allowed it to stretch far.", + "pos": "noun", + "word_frequency": 17555 + }, + { + "word": "elicit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to evoke or draw out (a response, answer, or fact) from someone", + "example_sentence_english": "Her questions failed to elicit any response from him.", + "pos": "verb", + "word_frequency": 17556 + }, + { + "word": "epoxy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of strong adhesive or resin", + "example_sentence_english": "He used epoxy to repair the broken ceramic vase.", + "pos": "noun", + "word_frequency": 17558 + }, + { + "word": "estonian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Estonia, its people, or its language", + "example_sentence_english": "She is learning Estonian to communicate with her relatives.", + "pos": "adjective", + "word_frequency": 17559 + }, + { + "word": "evangelist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who seeks to convert others to the Christian faith, especially by public preaching", + "example_sentence_english": "The evangelist traveled to many cities to spread his message.", + "pos": "noun", + "word_frequency": 17562 + }, + { + "word": "extraterrestrial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "from outside the Earth or its atmosphere", + "example_sentence_english": "Scientists are searching for signs of extraterrestrial life.", + "pos": "adjective", + "word_frequency": 17563 + }, + { + "word": "fiend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an evil spirit or demon; a person excessively addicted to or enthusiastic about something", + "example_sentence_english": "He was a fiend for chocolate, always craving more.", + "pos": "noun", + "word_frequency": 17566 + }, + { + "word": "fledgling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a young bird that has just fledged; a person or organization that is new and inexperienced", + "example_sentence_english": "The fledgling company struggled to find its footing in the market.", + "pos": "noun", + "word_frequency": 17567 + }, + { + "word": "flicker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a brief, wavering light or movement", + "example_sentence_english": "A flicker of hope appeared in her eyes.", + "pos": "noun", + "word_frequency": 17568 + }, + { + "word": "flimsy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light, thin, and easily damaged; weak and unconvincing", + "example_sentence_english": "The argument was too flimsy to convince the jury.", + "pos": "adjective", + "word_frequency": 17569 + }, + { + "word": "fob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small ornament or piece of material attached to a watch chain or key ring; to deceive or put off with a trick", + "example_sentence_english": "He attached his keys to a new key fob.", + "pos": "noun", + "word_frequency": 17570 + }, + { + "word": "footer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a line or block of text appearing at the bottom of each page of a book or document", + "example_sentence_english": "The page number was placed in the footer of the document.", + "pos": "noun", + "word_frequency": 17571 + }, + { + "word": "gambit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device, action, or opening remark, typically one entailing a degree of risk, that is calculated to gain an advantage", + "example_sentence_english": "His opening gambit in the negotiation was a bold move.", + "pos": "noun", + "word_frequency": 17573 + }, + { + "word": "gleam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shine brightly, especially with a soft, warm light", + "example_sentence_english": "The polished silver began to gleam under the light.", + "pos": "verb", + "word_frequency": 17576 + }, + { + "word": "grille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a framework of bars or wires, typically one that is set into a door or window or that acts as a screen or barrier", + "example_sentence_english": "The car's front grille was damaged in the accident.", + "pos": "noun", + "word_frequency": 17578 + }, + { + "word": "gullible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easily persuaded to believe something; credulous", + "example_sentence_english": "He was so gullible that he fell for every prank.", + "pos": "adjective", + "word_frequency": 17579 + }, + { + "word": "happening", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an event or occurrence", + "example_sentence_english": "The concert was a big happening in the city.", + "pos": "noun", + "word_frequency": 17581 + }, + { + "word": "haw", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fruit of the hawthorn tree; a hesitation sound (as in 'hem and haw')", + "example_sentence_english": "He began to hem and haw, unsure how to answer the question.", + "pos": "noun", + "word_frequency": 17582 + }, + { + "word": "hearth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the floor of a fireplace; the area in front of a fireplace", + "example_sentence_english": "We gathered around the hearth to warm ourselves by the fire.", + "pos": "noun", + "word_frequency": 17584 + }, + { + "word": "heathen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who does not belong to a widely held religion (especially one who is not a Christian, Jew, or Muslim) as regarded by those who do", + "example_sentence_english": "In ancient times, many considered outsiders to be heathens.", + "pos": "noun", + "word_frequency": 17585 + }, + { + "word": "hemorrhage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an escape of blood from a ruptured blood vessel, especially when profuse", + "example_sentence_english": "The patient suffered a severe hemorrhage after the accident.", + "pos": "noun", + "word_frequency": 17586 + }, + { + "word": "hereafter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "from this time on or in the future; in the afterlife", + "example_sentence_english": "Hereafter, all meetings will begin promptly at 9 AM.", + "pos": "adverb", + "word_frequency": 17587 + }, + { + "word": "horoscope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a forecast of a person's future, typically including a delineation of character and circumstances, based on the relative positions of the stars and planets at the time of that person's birth", + "example_sentence_english": "She reads her horoscope every morning to see what the day holds.", + "pos": "noun", + "word_frequency": 17588 + }, + { + "word": "humanoid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having an appearance or character resembling that of a human", + "example_sentence_english": "The robot had a surprisingly humanoid form.", + "pos": "noun", + "word_frequency": 17590 + }, + { + "word": "idealism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the practice of forming or pursuing ideals, especially unrealistically", + "example_sentence_english": "His youthful idealism often clashed with the harsh realities of politics.", + "pos": "noun", + "word_frequency": 17593 + }, + { + "word": "improvisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of improvising; something that is improvised", + "example_sentence_english": "The jazz band's performance was full of brilliant improvisation.", + "pos": "noun", + "word_frequency": 17594 + }, + { + "word": "influencer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person with the ability to influence potential buyers of a product or service by promoting or recommending the items on social media", + "example_sentence_english": "The social media influencer promoted the new skincare line.", + "pos": "noun", + "word_frequency": 17595 + }, + { + "word": "intergovernmental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or conducted between two or more governments", + "example_sentence_english": "The United Nations is an intergovernmental organization.", + "pos": "adjective", + "word_frequency": 17596 + }, + { + "word": "intersperse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to scatter among or between other things; to place at intervals", + "example_sentence_english": "She interspersed her lecture with humorous anecdotes.", + "pos": "verb", + "word_frequency": 17597 + }, + { + "word": "jeopardize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put at risk", + "example_sentence_english": "His reckless actions could jeopardize the entire project.", + "pos": "verb", + "word_frequency": 17607 + }, + { + "word": "jerky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sudden and uneven", + "example_sentence_english": "The old car made a jerky stop.", + "pos": "adjective", + "word_frequency": 17608 + }, + { + "word": "jig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lively dance", + "example_sentence_english": "They danced a lively Irish jig.", + "pos": "noun", + "word_frequency": 17609 + }, + { + "word": "lakeside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area next to a lake", + "example_sentence_english": "We enjoyed a picnic by the lakeside.", + "pos": "noun", + "word_frequency": 17617 + }, + { + "word": "lawfully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is permitted by law", + "example_sentence_english": "The goods were lawfully imported.", + "pos": "adverb", + "word_frequency": 17620 + }, + { + "word": "lexicon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the vocabulary of a person, language, or branch of knowledge", + "example_sentence_english": "The medical lexicon can be difficult for laypeople to understand.", + "pos": "noun", + "word_frequency": 17621 + }, + { + "word": "livery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a special uniform or distinctive design", + "example_sentence_english": "The airline's new livery featured bold colors.", + "pos": "noun", + "word_frequency": 17622 + }, + { + "word": "loader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or machine that loads", + "example_sentence_english": "The front-end loader moved the dirt.", + "pos": "noun", + "word_frequency": 17624 + }, + { + "word": "maximise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make as great as possible", + "example_sentence_english": "We need to maximise our profits.", + "pos": "verb", + "word_frequency": 17629 + }, + { + "word": "mech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanical; mechanic", + "example_sentence_english": "The mech department handles all repairs.", + "pos": "noun", + "word_frequency": 17632 + }, + { + "word": "medallion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of jewelry or a medal", + "example_sentence_english": "She wore a beautiful gold medallion around her neck.", + "pos": "noun", + "word_frequency": 17633 + }, + { + "word": "metaphorical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or using metaphor; figurative", + "example_sentence_english": "His description of the economy was purely metaphorical.", + "pos": "adjective", + "word_frequency": 17636 + }, + { + "word": "mismatch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bad or unsuitable match", + "example_sentence_english": "There was a clear mismatch between their skills and the job requirements.", + "pos": "noun", + "word_frequency": 17638 + }, + { + "word": "mlm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Multi-Level Marketing", + "example_sentence_english": "MLM companies often rely on direct sales.", + "pos": "noun", + "word_frequency": 17639 + }, + { + "word": "monastic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to monks or monasteries", + "example_sentence_english": "He lived a simple, monastic life.", + "pos": "adjective", + "word_frequency": 17640 + }, + { + "word": "mow", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cut grass", + "example_sentence_english": "I need to mow the lawn this weekend.", + "pos": "verb", + "word_frequency": 17643 + }, + { + "word": "mower", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a machine for cutting grass", + "example_sentence_english": "The lawn mower broke down.", + "pos": "noun", + "word_frequency": 17644 + }, + { + "word": "mozzarella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of Italian cheese", + "example_sentence_english": "I love pizza with extra mozzarella.", + "pos": "noun", + "word_frequency": 17645 + }, + { + "word": "multilateral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving three or more parties", + "example_sentence_english": "They signed a multilateral agreement.", + "pos": "adjective", + "word_frequency": 17646 + }, + { + "word": "mutate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change form or nature", + "example_sentence_english": "The virus can mutate rapidly.", + "pos": "verb", + "word_frequency": 17648 + }, + { + "word": "namesake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing having the same name as another", + "example_sentence_english": "He was named after his grandfather, his namesake.", + "pos": "noun", + "word_frequency": 17650 + }, + { + "word": "nazism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the political principles of the Nazis", + "example_sentence_english": "Nazism led to World War II.", + "pos": "noun", + "word_frequency": 17652 + }, + { + "word": "nominally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in name only; theoretically", + "example_sentence_english": "He is nominally in charge, but others make the decisions.", + "pos": "adverb", + "word_frequency": 17655 + }, + { + "word": "normative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishing a standard or norm", + "example_sentence_english": "This is a normative statement about how things should be.", + "pos": "adjective", + "word_frequency": 17657 + }, + { + "word": "nostril", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "either of two external openings of the nose", + "example_sentence_english": "Smoke came out of his nostrils.", + "pos": "noun", + "word_frequency": 17658 + }, + { + "word": "objectivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being objective", + "example_sentence_english": "It's hard to maintain objectivity in such a situation.", + "pos": "noun", + "word_frequency": 17660 + }, + { + "word": "ogre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a monstrous giant", + "example_sentence_english": "The ogre lived in a swamp.", + "pos": "noun", + "word_frequency": 17661 + }, + { + "word": "overheat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "become too hot", + "example_sentence_english": "The car engine started to overheat.", + "pos": "verb", + "word_frequency": 17663 + }, + { + "word": "overreact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "react more strongly than necessary", + "example_sentence_english": "Don't overreact to the news.", + "pos": "verb", + "word_frequency": 17664 + }, + { + "word": "palliative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relieving pain without curing", + "example_sentence_english": "The treatment was palliative, not curative.", + "pos": "adjective", + "word_frequency": 17666 + }, + { + "word": "parable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a simple story used to illustrate a moral or spiritual lesson", + "example_sentence_english": "The teacher told a parable about kindness.", + "pos": "noun", + "word_frequency": 17668 + }, + { + "word": "pastime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an activity done for enjoyment; a hobby", + "example_sentence_english": "Reading is my favorite pastime.", + "pos": "noun", + "word_frequency": 17669 + }, + { + "word": "patchwork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material made by sewing together small pieces of different fabrics", + "example_sentence_english": "She made a beautiful patchwork quilt.", + "pos": "noun", + "word_frequency": 17670 + }, + { + "word": "pedophilia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "sexual attraction to children", + "example_sentence_english": "Pedophilia is a serious crime.", + "pos": "noun", + "word_frequency": 17674 + }, + { + "word": "pesky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoying; troublesome", + "example_sentence_english": "Those pesky flies won't leave me alone.", + "pos": "adjective", + "word_frequency": 17678 + }, + { + "word": "phobia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an extreme or irrational fear of or aversion to something", + "example_sentence_english": "She has a phobia of spiders.", + "pos": "noun", + "word_frequency": 17679 + }, + { + "word": "pinball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A game played on a machine with flippers.", + "example_sentence_english": "We spent hours playing pinball at the arcade.", + "pos": "noun", + "word_frequency": 17680 + }, + { + "word": "planter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A container for plants.", + "example_sentence_english": "She bought a new ceramic planter for her basil plant.", + "pos": "noun", + "word_frequency": 17681 + }, + { + "word": "plenary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Full; complete; absolute.", + "example_sentence_english": "The committee held a plenary session to discuss all proposals.", + "pos": "adjective", + "word_frequency": 17683 + }, + { + "word": "plunder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Stolen goods; loot.", + "example_sentence_english": "The pirates divided their plunder among themselves.", + "pos": "noun", + "word_frequency": 17684 + }, + { + "word": "postman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A person who delivers mail.", + "example_sentence_english": "The postman delivered a letter to our door this morning.", + "pos": "noun", + "word_frequency": 17686 + }, + { + "word": "privatisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The transfer of a business, industry, or service from public to private ownership and control.", + "example_sentence_english": "The government announced the privatisation of the national railway.", + "pos": "noun", + "word_frequency": 17688 + }, + { + "word": "pseudonym", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A fictitious name, especially one used by an author.", + "example_sentence_english": "Mark Twain was the pseudonym of Samuel Clemens.", + "pos": "noun", + "word_frequency": 17689 + }, + { + "word": "purgatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A place or state of suffering inhabited by the souls of sinners who are expiating their sins before going to heaven.", + "example_sentence_english": "According to some beliefs, souls go to purgatory before entering heaven.", + "pos": "noun", + "word_frequency": 17691 + }, + { + "word": "rationality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality of being based on or in accordance with reason or logic.", + "example_sentence_english": "Her decision was based on pure rationality, not emotion.", + "pos": "noun", + "word_frequency": 17692 + }, + { + "word": "rebuke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An expression of sharp disapproval or criticism.", + "example_sentence_english": "He received a sharp rebuke from his boss for being late.", + "pos": "noun", + "word_frequency": 17693 + }, + { + "word": "rebuttal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A refutation or contradiction.", + "example_sentence_english": "The lawyer presented a strong rebuttal to the prosecution's claims.", + "pos": "noun", + "word_frequency": 17694 + }, + { + "word": "refrigerate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To make or keep cold or cool.", + "example_sentence_english": "Please refrigerate the leftovers to keep them fresh.", + "pos": "verb", + "word_frequency": 17695 + }, + { + "word": "reliever", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that brings relief.", + "example_sentence_english": "The new medication proved to be a great pain reliever.", + "pos": "noun", + "word_frequency": 17696 + }, + { + "word": "retaliate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make an attack or assault in return for a similar attack.", + "example_sentence_english": "They threatened to retaliate if their demands were not met.", + "pos": "verb", + "word_frequency": 17698 + }, + { + "word": "rook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A chess piece, or a type of crow.", + "example_sentence_english": "In chess, the rook moves horizontally or vertically.", + "pos": "noun", + "word_frequency": 17701 + }, + { + "word": "rouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To awaken or stir up.", + "example_sentence_english": "He tried to rouse his sleepy brother from bed.", + "pos": "verb", + "word_frequency": 17702 + }, + { + "word": "sampler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A collection of samples.", + "example_sentence_english": "The bakery offered a sampler of their best cookies.", + "pos": "noun", + "word_frequency": 17704 + }, + { + "word": "scaffolding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A temporary structure used to support workers and materials during construction.", + "example_sentence_english": "The workers erected scaffolding around the building for repairs.", + "pos": "noun", + "word_frequency": 17706 + }, + { + "word": "scant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Barely sufficient or adequate.", + "example_sentence_english": "They paid scant attention to the warnings.", + "pos": "adjective", + "word_frequency": 17707 + }, + { + "word": "schoolgirl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A girl attending school.", + "example_sentence_english": "The schoolgirl carried a heavy backpack full of books.", + "pos": "noun", + "word_frequency": 17708 + }, + { + "word": "seater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A vehicle or piece of furniture with a specified number of seats.", + "example_sentence_english": "We rented a seven-seater car for our family trip.", + "pos": "noun", + "word_frequency": 17709 + }, + { + "word": "sedimentary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or formed from sediment.", + "example_sentence_english": "Limestone is a common type of sedimentary rock.", + "pos": "adjective", + "word_frequency": 17710 + }, + { + "word": "semblance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The outward appearance or apparent form of something, especially when the reality is different.", + "example_sentence_english": "She tried to maintain a semblance of normality despite the chaos.", + "pos": "noun", + "word_frequency": 17711 + }, + { + "word": "sheik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An Arab leader, in particular the chief or head of an Arab tribe, family, or village.", + "example_sentence_english": "The sheik welcomed the visitors to his desert tent.", + "pos": "noun", + "word_frequency": 17713 + }, + { + "word": "skunk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small North American mammal that can spray a foul-smelling liquid.", + "example_sentence_english": "A skunk sprayed its strong odor near our campsite.", + "pos": "noun", + "word_frequency": 17716 + }, + { + "word": "sloth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A slow-moving tree-dwelling mammal, or laziness.", + "example_sentence_english": "The sloth moved incredibly slowly through the trees.", + "pos": "noun", + "word_frequency": 17717 + }, + { + "word": "slowdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A reduction in speed or activity.", + "example_sentence_english": "There has been a noticeable slowdown in the economy.", + "pos": "noun", + "word_frequency": 17718 + }, + { + "word": "smuggler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who smuggles goods illegally.", + "example_sentence_english": "Customs officers caught the smuggler trying to bring in illegal goods.", + "pos": "noun", + "word_frequency": 17719 + }, + { + "word": "snitch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informer, telltale", + "example_sentence_english": "The student was called a snitch for telling the teacher about the cheating.", + "pos": "noun", + "word_frequency": 17720 + }, + { + "word": "snug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cozy, comfortable", + "example_sentence_english": "The cat found a snug spot by the fireplace.", + "pos": "adjective", + "word_frequency": 17721 + }, + { + "word": "solstice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the longest/shortest day of the year", + "example_sentence_english": "The summer solstice marks the longest day of the year.", + "pos": "noun", + "word_frequency": 17722 + }, + { + "word": "spindle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rod or pin", + "example_sentence_english": "The thread wound around the spindle of the spinning wheel.", + "pos": "noun", + "word_frequency": 17723 + }, + { + "word": "spoof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a parody, a hoax", + "example_sentence_english": "The movie was a clever spoof of classic horror films.", + "pos": "noun", + "word_frequency": 17724 + }, + { + "word": "sporty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletic, stylishly casual", + "example_sentence_english": "She likes to wear sporty clothes when she goes hiking.", + "pos": "adjective", + "word_frequency": 17725 + }, + { + "word": "sterilization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making something free from bacteria or germs", + "example_sentence_english": "Sterilization of medical instruments is crucial for patient safety.", + "pos": "noun", + "word_frequency": 17727 + }, + { + "word": "stockholder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shareholder", + "example_sentence_english": "The company's stockholders will vote on the new proposal.", + "pos": "noun", + "word_frequency": 17728 + }, + { + "word": "stutter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speak with involuntary repetitions", + "example_sentence_english": "He tends to stutter when he's nervous.", + "pos": "verb", + "word_frequency": 17729 + }, + { + "word": "subdivide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to divide into smaller parts", + "example_sentence_english": "The large plot of land was subdivided into several smaller lots.", + "pos": "verb", + "word_frequency": 17730 + }, + { + "word": "subtract", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take away", + "example_sentence_english": "If you subtract 5 from 10, you get 5.", + "pos": "verb", + "word_frequency": 17731 + }, + { + "word": "supermodel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a very successful fashion model", + "example_sentence_english": "She dreamed of becoming a famous supermodel.", + "pos": "noun", + "word_frequency": 17732 + }, + { + "word": "susceptibility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being easily affected", + "example_sentence_english": "His susceptibility to colds meant he often got sick in winter.", + "pos": "noun", + "word_frequency": 17733 + }, + { + "word": "syphilis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sexually transmitted infection", + "example_sentence_english": "Syphilis is a serious bacterial infection.", + "pos": "noun", + "word_frequency": 17735 + }, + { + "word": "tabletop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the flat top surface of a table", + "example_sentence_english": "She placed the vase on the tabletop.", + "pos": "noun", + "word_frequency": 17737 + }, + { + "word": "tactile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the sense of touch", + "example_sentence_english": "The toy had a variety of tactile textures for babies to explore.", + "pos": "adjective", + "word_frequency": 17738 + }, + { + "word": "thermostat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device that regulates temperature", + "example_sentence_english": "Please adjust the thermostat to 20 degrees Celsius.", + "pos": "noun", + "word_frequency": 17741 + }, + { + "word": "tiki", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Polynesian carving or style", + "example_sentence_english": "The restaurant had a strong tiki theme with carved statues.", + "pos": "noun", + "word_frequency": 17742 + }, + { + "word": "tingle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel a slight prickling or stinging sensation", + "example_sentence_english": "My fingers began to tingle from the cold.", + "pos": "verb", + "word_frequency": 17743 + }, + { + "word": "touchscreen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a display screen that responds to touch", + "example_sentence_english": "My new phone has a very responsive touchscreen.", + "pos": "noun", + "word_frequency": 17748 + }, + { + "word": "transcend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to go beyond the limits of", + "example_sentence_english": "Her beauty seemed to transcend all earthly standards.", + "pos": "verb", + "word_frequency": 17750 + }, + { + "word": "trope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a common or overused theme or device", + "example_sentence_english": "The 'chosen one' is a common trope in fantasy novels.", + "pos": "noun", + "word_frequency": 17751 + }, + { + "word": "tuft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small cluster of soft, fluffy strands", + "example_sentence_english": "A small tuft of grass grew between the cracks in the pavement.", + "pos": "noun", + "word_frequency": 17752 + }, + { + "word": "undercut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to offer goods or services at a lower price; to weaken", + "example_sentence_english": "The new store tried to undercut its competitors' prices.", + "pos": "verb", + "word_frequency": 17753 + }, + { + "word": "underline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw a line under; to emphasize", + "example_sentence_english": "Please underline the main points in the text.", + "pos": "verb", + "word_frequency": 17754 + }, + { + "word": "unfriendly", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not friendly", + "example_sentence_english": "The new neighbor seemed very unfriendly.", + "pos": "adjective", + "word_frequency": 17755 + }, + { + "word": "unlicensed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having a license", + "example_sentence_english": "Driving an unlicensed vehicle is illegal.", + "pos": "adjective", + "word_frequency": 17756 + }, + { + "word": "unproductive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not producing much or any useful result", + "example_sentence_english": "The meeting was unproductive, and nothing was decided.", + "pos": "adjective", + "word_frequency": 17757 + }, + { + "word": "vial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small glass bottle", + "example_sentence_english": "The vaccine was stored in a small glass vial.", + "pos": "noun", + "word_frequency": 17758 + }, + { + "word": "violinist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays the violin", + "example_sentence_english": "The talented violinist played a beautiful solo.", + "pos": "noun", + "word_frequency": 17761 + }, + { + "word": "warlord", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a military commander, especially one operating outside the control of the government", + "example_sentence_english": "The region was controlled by a powerful warlord.", + "pos": "noun", + "word_frequency": 17762 + }, + { + "word": "whimsical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playfully quaint or fanciful, especially in an appealing and amusing way", + "example_sentence_english": "She has a whimsical sense of humor.", + "pos": "adjective", + "word_frequency": 17764 + }, + { + "word": "zionism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a movement for the re-establishment and the development and protection of a Jewish nation in what is now Israel", + "example_sentence_english": "Zionism played a key role in the creation of Israel.", + "pos": "noun", + "word_frequency": 17766 + }, + { + "word": "accordion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a musical instrument with a keyboard and bellows", + "example_sentence_english": "He learned to play the accordion at a young age.", + "pos": "noun", + "word_frequency": 17770 + }, + { + "word": "aeronautical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the science or practice of building or flying aircraft", + "example_sentence_english": "She is studying aeronautical engineering.", + "pos": "adjective", + "word_frequency": 17772 + }, + { + "word": "alimony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial support paid to a former spouse after divorce", + "example_sentence_english": "He was ordered to pay alimony to his ex-wife.", + "pos": "noun", + "word_frequency": 17774 + }, + { + "word": "aloha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hello, goodbye, love (Hawaiian greeting)", + "example_sentence_english": "The Hawaiian people greeted us with a warm 'Aloha'.", + "pos": "noun", + "word_frequency": 17776 + }, + { + "word": "anthropological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the study of humanity", + "example_sentence_english": "She conducted an anthropological study of the tribe.", + "pos": "adjective", + "word_frequency": 17780 + }, + { + "word": "apprehension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiety or fear that something bad or unpleasant will happen; understanding", + "example_sentence_english": "He felt a sense of apprehension before the exam.", + "pos": "noun", + "word_frequency": 17781 + }, + { + "word": "articulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of expressing an idea or feeling fluently and coherently; the formation of a clear and distinct sound in speech", + "example_sentence_english": "His articulation of the complex theory was impressive.", + "pos": "noun", + "word_frequency": 17784 + }, + { + "word": "asiatic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Asia or its peoples", + "example_sentence_english": "The Asiatic lion is an endangered species.", + "pos": "adjective", + "word_frequency": 17785 + }, + { + "word": "assailant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who attacks another", + "example_sentence_english": "The victim was unable to identify her assailant.", + "pos": "noun", + "word_frequency": 17786 + }, + { + "word": "atonement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reparation for a wrong or injury", + "example_sentence_english": "He sought atonement for his past mistakes.", + "pos": "noun", + "word_frequency": 17789 + }, + { + "word": "auspicious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conducive to success; favorable", + "example_sentence_english": "It was an auspicious start to the new year.", + "pos": "adjective", + "word_frequency": 17791 + }, + { + "word": "barricade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an improvised barrier erected across a street or other thoroughfare to prevent the passage of persons or vehicles", + "example_sentence_english": "The police set up a barricade to block the road.", + "pos": "noun", + "word_frequency": 17793 + }, + { + "word": "baseless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without foundation in fact", + "example_sentence_english": "The accusations were completely baseless.", + "pos": "adjective", + "word_frequency": 17794 + }, + { + "word": "beater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that beats, especially a kitchen utensil for beating food", + "example_sentence_english": "She used an electric beater to mix the cake batter.", + "pos": "noun", + "word_frequency": 17795 + }, + { + "word": "benefactor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who gives money or other help to a person or cause", + "example_sentence_english": "The museum thanked its anonymous benefactor.", + "pos": "noun", + "word_frequency": 17796 + }, + { + "word": "biographer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who writes a biography", + "example_sentence_english": "The biographer spent years researching the subject's life.", + "pos": "noun", + "word_frequency": 17799 + }, + { + "word": "blackness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being black", + "example_sentence_english": "The blackness of the night made it hard to see anything.", + "pos": "noun", + "word_frequency": 17800 + }, + { + "word": "boyhood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or period of being a boy", + "example_sentence_english": "He spent his boyhood playing in the fields.", + "pos": "noun", + "word_frequency": 17803 + }, + { + "word": "briefcase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a flat, rectangular case, typically made of leather, used for carrying documents", + "example_sentence_english": "He carried his documents in a leather briefcase.", + "pos": "noun", + "word_frequency": 17805 + }, + { + "word": "butte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an isolated hill or mountain with steep sides and a flat top", + "example_sentence_english": "The lone butte stood prominently on the desert horizon.", + "pos": "noun", + "word_frequency": 17808 + }, + { + "word": "campsite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a place used for camping", + "example_sentence_english": "We found a perfect campsite by the river.", + "pos": "noun", + "word_frequency": 17811 + }, + { + "word": "canister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a metal box or cylinder, typically for food or chemicals", + "example_sentence_english": "She stored her coffee beans in an airtight canister.", + "pos": "noun", + "word_frequency": 17812 + }, + { + "word": "coherence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being logical and consistent", + "example_sentence_english": "The essay lacked coherence and was difficult to follow.", + "pos": "noun", + "word_frequency": 17815 + }, + { + "word": "complainant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who makes a formal complaint, especially in court", + "example_sentence_english": "The complainant presented their case to the judge.", + "pos": "noun", + "word_frequency": 17816 + }, + { + "word": "connotation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an idea or feeling that a word invokes in addition to its literal or primary meaning", + "example_sentence_english": "The word \"home\" has a connotation of warmth and security.", + "pos": "noun", + "word_frequency": 17817 + }, + { + "word": "consonant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a speech sound that is not a vowel", + "example_sentence_english": "The English alphabet has 21 consonants.", + "pos": "noun", + "word_frequency": 17818 + }, + { + "word": "crucifixion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the execution of a person by nailing or binding them to a cross", + "example_sentence_english": "The crucifixion of Jesus is a central event in Christianity.", + "pos": "noun", + "word_frequency": 17821 + }, + { + "word": "cursor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a movable indicator on a computer screen", + "example_sentence_english": "Move the cursor to the top left corner of the screen.", + "pos": "noun", + "word_frequency": 17823 + }, + { + "word": "diaphragm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dome-shaped muscular partition separating the thorax from the abdomen", + "example_sentence_english": "The diaphragm plays a crucial role in breathing.", + "pos": "noun", + "word_frequency": 17825 + }, + { + "word": "dichotomy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a division or contrast between two things that are or are represented as being opposed or entirely different", + "example_sentence_english": "There is a clear dichotomy between theory and practice.", + "pos": "noun", + "word_frequency": 17826 + }, + { + "word": "diminutive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely or unusually small", + "example_sentence_english": "She was a diminutive figure, barely reaching his shoulder.", + "pos": "adjective", + "word_frequency": 17827 + }, + { + "word": "dispensary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where medicines are prepared and dispensed", + "example_sentence_english": "He went to the dispensary to pick up his prescription.", + "pos": "noun", + "word_frequency": 17829 + }, + { + "word": "doubtless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without doubt; certainly", + "example_sentence_english": "He will doubtless succeed with his determination.", + "pos": "adjective", + "word_frequency": 17830 + }, + { + "word": "dwindle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diminish gradually in size, amount, or strength", + "example_sentence_english": "His hopes of winning began to dwindle.", + "pos": "verb", + "word_frequency": 17832 + }, + { + "word": "embellish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make (something) more attractive by the addition of decorative details or features", + "example_sentence_english": "He tended to embellish the truth when telling stories.", + "pos": "verb", + "word_frequency": 17835 + }, + { + "word": "emphatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing or giving emphasis; expressing something forcibly and clearly", + "example_sentence_english": "She gave an emphatic nod of agreement.", + "pos": "adjective", + "word_frequency": 17837 + }, + { + "word": "enrolment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of officially joining a course, school, or organization", + "example_sentence_english": "University enrolment numbers have increased this year.", + "pos": "noun", + "word_frequency": 17840 + }, + { + "word": "exclamation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden cry or remark, especially expressing surprise, anger, or pain", + "example_sentence_english": "Her exclamation of joy filled the room.", + "pos": "noun", + "word_frequency": 17842 + }, + { + "word": "executioner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who carries out a death sentence", + "example_sentence_english": "The executioner wore a black hood.", + "pos": "noun", + "word_frequency": 17843 + }, + { + "word": "expressway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a major road for fast-moving traffic", + "example_sentence_english": "We took the expressway to avoid city traffic.", + "pos": "noun", + "word_frequency": 17844 + }, + { + "word": "filament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slender threadlike object or fiber", + "example_sentence_english": "The light bulb's filament glowed brightly.", + "pos": "noun", + "word_frequency": 17845 + }, + { + "word": "flemish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Flanders, its people, or their language", + "example_sentence_english": "He speaks Flemish fluently.", + "pos": "adjective", + "word_frequency": 17847 + }, + { + "word": "foyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large entrance or reception room or area", + "example_sentence_english": "We waited for them in the hotel foyer.", + "pos": "noun", + "word_frequency": 17848 + }, + { + "word": "fresco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a painting done rapidly in watercolor on wet plaster on a wall or ceiling", + "example_sentence_english": "The chapel ceiling was adorned with a beautiful fresco.", + "pos": "noun", + "word_frequency": 17850 + }, + { + "word": "frigate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a warship with a mixed armament, generally smaller than a destroyer", + "example_sentence_english": "The frigate sailed across the ocean.", + "pos": "noun", + "word_frequency": 17851 + }, + { + "word": "fuselage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main body of an aircraft", + "example_sentence_english": "The fuselage of the plane was made of lightweight materials.", + "pos": "noun", + "word_frequency": 17852 + }, + { + "word": "gait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person's or animal's manner of walking", + "example_sentence_english": "The horse had a peculiar gait.", + "pos": "noun", + "word_frequency": 17853 + }, + { + "word": "genitalia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the external sex organs", + "example_sentence_english": "The doctor examined the patient's external genitalia.", + "pos": "noun", + "word_frequency": 17854 + }, + { + "word": "gilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gold leaf or paint applied to a surface", + "example_sentence_english": "The old frame was covered in faded gilt.", + "pos": "noun", + "word_frequency": 17857 + }, + { + "word": "glider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an aircraft designed to fly without an engine", + "example_sentence_english": "He enjoyed flying his glider silently through the air.", + "pos": "noun", + "word_frequency": 17858 + }, + { + "word": "goer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who goes to a specified place or event", + "example_sentence_english": "She's a regular concert-goer.", + "pos": "noun", + "word_frequency": 17859 + }, + { + "word": "grime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dirt, especially soot, coal dust, or a greasy film", + "example_sentence_english": "The old windows were covered in years of grime.", + "pos": "noun", + "word_frequency": 17861 + }, + { + "word": "heron", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large wading bird with long legs and a long S-shaped neck", + "example_sentence_english": "A heron stood motionless by the riverbank.", + "pos": "noun", + "word_frequency": 17864 + }, + { + "word": "heyday", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the period of a person's or thing's greatest success, popularity, or vigor", + "example_sentence_english": "In its heyday, the band sold millions of albums.", + "pos": "noun", + "word_frequency": 17865 + }, + { + "word": "highlander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an inhabitant of a highland region, especially the Scottish Highlands", + "example_sentence_english": "The Highlander wore a traditional kilt.", + "pos": "noun", + "word_frequency": 17866 + }, + { + "word": "hospitalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of admitting someone to a hospital", + "example_sentence_english": "His hospitalization was due to a severe infection.", + "pos": "noun", + "word_frequency": 17867 + }, + { + "word": "illogical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not logical or reasonable", + "example_sentence_english": "His argument was completely illogical.", + "pos": "adjective", + "word_frequency": 17868 + }, + { + "word": "impart", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to communicate (information or knowledge); to bestow (a quality)", + "example_sentence_english": "The teacher tried to impart wisdom to her students.", + "pos": "verb", + "word_frequency": 17872 + }, + { + "word": "incapacitate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prevent from functioning in a normal way", + "example_sentence_english": "The injury incapacitated him for several weeks.", + "pos": "verb", + "word_frequency": 17873 + }, + { + "word": "incoherent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressed in an incomprehensible or confusing way", + "example_sentence_english": "After the accident, he was incoherent.", + "pos": "adjective", + "word_frequency": 17874 + }, + { + "word": "indulgent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or indicating a readiness to be overly generous or lenient", + "example_sentence_english": "Her indulgent parents always bought her whatever she wanted.", + "pos": "adjective", + "word_frequency": 17875 + }, + { + "word": "inert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking the ability or strength to move; chemically inactive", + "example_sentence_english": "The inert gas does not react with other elements.", + "pos": "adjective", + "word_frequency": 17876 + }, + { + "word": "interlude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an intervening period of time", + "example_sentence_english": "There was a brief interlude of sunshine between the storms.", + "pos": "noun", + "word_frequency": 17877 + }, + { + "word": "irradiation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of exposing something to radiation", + "example_sentence_english": "Food irradiation is used to preserve certain products.", + "pos": "noun", + "word_frequency": 17878 + }, + { + "word": "irritable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easily annoyed or angered", + "example_sentence_english": "He was feeling irritable after a sleepless night.", + "pos": "adjective", + "word_frequency": 17879 + }, + { + "word": "laminate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To cover with a thin protective layer.", + "example_sentence_english": "We need to laminate these important documents.", + "pos": "verb", + "word_frequency": 17891 + }, + { + "word": "leaderboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A display showing the names and scores of the leading competitors.", + "example_sentence_english": "Her name was at the top of the leaderboard.", + "pos": "noun", + "word_frequency": 17892 + }, + { + "word": "leviathan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A very large aquatic creature or something enormous and powerful.", + "example_sentence_english": "The company was a corporate leviathan, dominating the market.", + "pos": "noun", + "word_frequency": 17894 + }, + { + "word": "lonesome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Solitary or lonely.", + "example_sentence_english": "He felt lonesome after his friends left.", + "pos": "adjective", + "word_frequency": 17897 + }, + { + "word": "lug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A heavy or awkward thing to carry; a projection.", + "example_sentence_english": "The old suitcase was a real lug to carry up the stairs.", + "pos": "noun", + "word_frequency": 17899 + }, + { + "word": "lukewarm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Moderately warm; unenthusiastic.", + "example_sentence_english": "The tea was lukewarm, not hot enough.", + "pos": "adjective", + "word_frequency": 17900 + }, + { + "word": "lumbar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the lower part of the back.", + "example_sentence_english": "He experienced pain in his lumbar region.", + "pos": "adjective", + "word_frequency": 17901 + }, + { + "word": "lumen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The SI unit of luminous flux.", + "example_sentence_english": "The brightness of a projector is measured in lumens.", + "pos": "noun", + "word_frequency": 17902 + }, + { + "word": "maison", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "House (French loanword, often used for fashion houses).", + "example_sentence_english": "The fashion show was held at the famous Parisian maison.", + "pos": "noun", + "word_frequency": 17906 + }, + { + "word": "markup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The amount added to the cost price to determine the selling price; a set of instructions for formatting text.", + "example_sentence_english": "The store applies a 30% markup on all its products.", + "pos": "noun", + "word_frequency": 17908 + }, + { + "word": "miniseries", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A television drama or documentary series with a limited number of episodes.", + "example_sentence_english": "The historical miniseries was very popular.", + "pos": "noun", + "word_frequency": 17910 + }, + { + "word": "mismanagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process of managing something badly or inefficiently.", + "example_sentence_english": "The company's financial problems were due to mismanagement.", + "pos": "noun", + "word_frequency": 17911 + }, + { + "word": "mitochondrion", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "An organelle found in large numbers in most cells, in which the biochemical processes of respiration and energy production occur.", + "example_sentence_english": "The mitochondrion is often called the powerhouse of the cell.", + "pos": "noun", + "word_frequency": 17912 + }, + { + "word": "mongolian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to Mongolia, its people, or its language.", + "example_sentence_english": "She is studying Mongolian history.", + "pos": "adjective", + "word_frequency": 17914 + }, + { + "word": "motley", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Incongruously varied in appearance or character; disparate.", + "example_sentence_english": "The circus featured a motley crew of performers.", + "pos": "adjective", + "word_frequency": 17916 + }, + { + "word": "multiculturalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The presence of, or support for the presence of, several distinct cultural or ethnic groups within a society.", + "example_sentence_english": "Canada is often cited as an example of successful multiculturalism.", + "pos": "noun", + "word_frequency": 17918 + }, + { + "word": "mussel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of edible bivalve mollusc.", + "example_sentence_english": "We ordered a plate of steamed mussels for dinner.", + "pos": "noun", + "word_frequency": 17919 + }, + { + "word": "netball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "netball", + "example_sentence_english": "She plays netball every Saturday.", + "pos": "noun", + "word_frequency": 17921 + }, + { + "word": "nit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egg of a louse", + "example_sentence_english": "The comb helped remove nits from her hair.", + "pos": "noun", + "word_frequency": 17922 + }, + { + "word": "obstruct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "block or hinder", + "example_sentence_english": "A fallen tree was obstructing the road.", + "pos": "verb", + "word_frequency": 17924 + }, + { + "word": "orthopedic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to bones or muscles", + "example_sentence_english": "He visited an orthopedic surgeon for his knee injury.", + "pos": "adjective", + "word_frequency": 17925 + }, + { + "word": "outcast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person rejected by society", + "example_sentence_english": "He felt like an outcast after moving to a new school.", + "pos": "noun", + "word_frequency": 17928 + }, + { + "word": "overcrowd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fill beyond capacity", + "example_sentence_english": "The small room was overcrowded with guests.", + "pos": "verb", + "word_frequency": 17929 + }, + { + "word": "pane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a single sheet of glass in a window", + "example_sentence_english": "A stone broke a pane of glass in the window.", + "pos": "noun", + "word_frequency": 17932 + }, + { + "word": "penultimate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "second to last", + "example_sentence_english": "The penultimate chapter of the book was very exciting.", + "pos": "adjective", + "word_frequency": 17933 + }, + { + "word": "peppermint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of mint plant or flavor", + "example_sentence_english": "She enjoys peppermint tea after dinner.", + "pos": "noun", + "word_frequency": 17934 + }, + { + "word": "percentile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a point on a ranking scale", + "example_sentence_english": "His test score was in the 90th percentile.", + "pos": "noun", + "word_frequency": 17935 + }, + { + "word": "piety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being religious or reverent", + "example_sentence_english": "Her piety was evident in her daily prayers.", + "pos": "noun", + "word_frequency": 17937 + }, + { + "word": "placenta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organ in the uterus during pregnancy", + "example_sentence_english": "The placenta provides nutrients to the fetus.", + "pos": "noun", + "word_frequency": 17939 + }, + { + "word": "pleasurable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "giving pleasure", + "example_sentence_english": "It was a truly pleasurable experience.", + "pos": "adjective", + "word_frequency": 17940 + }, + { + "word": "plough", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a farm implement for turning over soil", + "example_sentence_english": "The farmer used a plough to prepare the field for planting.", + "pos": "noun", + "word_frequency": 17941 + }, + { + "word": "prefect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chief magistrate or a senior student", + "example_sentence_english": "She was appointed school prefect in her final year.", + "pos": "noun", + "word_frequency": 17944 + }, + { + "word": "propagate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproduce or spread", + "example_sentence_english": "Plants can propagate from cuttings.", + "pos": "verb", + "word_frequency": 17946 + }, + { + "word": "redefine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "define again or differently", + "example_sentence_english": "The new policy will redefine the company's goals.", + "pos": "verb", + "word_frequency": 17949 + }, + { + "word": "remit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "send money or cancel a punishment", + "example_sentence_english": "Please remit payment within 30 days.", + "pos": "verb", + "word_frequency": 17951 + }, + { + "word": "resumption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of beginning again", + "example_sentence_english": "The resumption of talks is scheduled for next week.", + "pos": "noun", + "word_frequency": 17952 + }, + { + "word": "retrograde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moving backward or reverting to an earlier state", + "example_sentence_english": "The new policy was seen as a retrograde step.", + "pos": "adjective", + "word_frequency": 17953 + }, + { + "word": "reunification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of becoming unified again", + "example_sentence_english": "The reunification of Germany occurred in 1990.", + "pos": "noun", + "word_frequency": 17954 + }, + { + "word": "rout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a decisive defeat", + "example_sentence_english": "The team suffered a humiliating rout in the final game.", + "pos": "noun", + "word_frequency": 17958 + }, + { + "word": "salmonella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of bacteria that causes food poisoning", + "example_sentence_english": "The restaurant was shut down due to a salmonella outbreak.", + "pos": "noun", + "word_frequency": 17960 + }, + { + "word": "scarecrow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a figure made to look like a human, set up to frighten birds away from crops", + "example_sentence_english": "The farmer put a scarecrow in the field to protect his corn.", + "pos": "noun", + "word_frequency": 17963 + }, + { + "word": "sceptical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having doubts or reservations", + "example_sentence_english": "She remained sceptical about his claims.", + "pos": "adjective", + "word_frequency": 17964 + }, + { + "word": "serving", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a portion of food or drink", + "example_sentence_english": "This recipe makes four servings.", + "pos": "noun", + "word_frequency": 17966 + }, + { + "word": "shiv", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sharp object used as a knife, especially one improvised in prison", + "example_sentence_english": "He fashioned a shiv out of a toothbrush.", + "pos": "noun", + "word_frequency": 17967 + }, + { + "word": "soybean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of bean grown for its edible seeds and for oil", + "example_sentence_english": "Soybeans are a good source of protein.", + "pos": "noun", + "word_frequency": 17969 + }, + { + "word": "standardization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of making something conform to a standard", + "example_sentence_english": "The company aimed for standardization across all its products.", + "pos": "noun", + "word_frequency": 17970 + }, + { + "word": "stardom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being a famous performer", + "example_sentence_english": "Her talent quickly led her to stardom.", + "pos": "noun", + "word_frequency": 17971 + }, + { + "word": "steamy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of or producing steam; hot and humid", + "example_sentence_english": "The bathroom was steamy after her hot shower.", + "pos": "adjective", + "word_frequency": 17972 + }, + { + "word": "stopper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plug or cork used to close a bottle or hole", + "example_sentence_english": "She pulled the stopper out of the bathtub.", + "pos": "noun", + "word_frequency": 17973 + }, + { + "word": "subtlety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being delicate or precise; the quality of being difficult to perceive or understand", + "example_sentence_english": "The artist's work was admired for its subtlety and detail.", + "pos": "noun", + "word_frequency": 17974 + }, + { + "word": "symptomatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing symptoms of a disease; indicative of something undesirable", + "example_sentence_english": "His cough was symptomatic of a cold.", + "pos": "adjective", + "word_frequency": 17976 + }, + { + "word": "tenet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a principle or belief, especially one of the main principles of a religion or philosophy", + "example_sentence_english": "One of the main tenets of the religion is compassion.", + "pos": "noun", + "word_frequency": 17977 + }, + { + "word": "thunderbolt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flash of lightning accompanied by thunder; a sudden, shocking event", + "example_sentence_english": "A thunderbolt struck the old oak tree.", + "pos": "noun", + "word_frequency": 17980 + }, + { + "word": "toggle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a switch or button that can be set to two positions", + "example_sentence_english": "Press the toggle to turn the feature on or off.", + "pos": "noun", + "word_frequency": 17981 + }, + { + "word": "tonal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the tone of something, especially music or language", + "example_sentence_english": "The painting had a warm tonal quality.", + "pos": "adjective", + "word_frequency": 17982 + }, + { + "word": "totem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a natural object or animal believed by a particular society to have spiritual significance and adopted by it as an emblem", + "example_sentence_english": "The tribe carved a tall totem pole.", + "pos": "noun", + "word_frequency": 17984 + }, + { + "word": "tourney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(informal) a tournament", + "example_sentence_english": "They are preparing for the big chess tourney next month.", + "pos": "noun", + "word_frequency": 17985 + }, + { + "word": "ulcer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an open sore on an external or internal surface of the body", + "example_sentence_english": "The doctor diagnosed him with a stomach ulcer.", + "pos": "noun", + "word_frequency": 17989 + }, + { + "word": "ultrasonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving sound waves with frequencies above the upper limit of the human ear's audibility", + "example_sentence_english": "Bats use ultrasonic waves to navigate in the dark.", + "pos": "adjective", + "word_frequency": 17990 + }, + { + "word": "unwind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relax after a period of work or tension", + "example_sentence_english": "After a long day, I like to unwind with a good book.", + "pos": "verb", + "word_frequency": 17991 + }, + { + "word": "unwise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foolish or imprudent", + "example_sentence_english": "It would be unwise to invest all your money in one stock.", + "pos": "adjective", + "word_frequency": 17992 + }, + { + "word": "watchful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watching carefully; alert and vigilant", + "example_sentence_english": "The cat was watchful as the mouse scurried across the floor.", + "pos": "adjective", + "word_frequency": 17995 + }, + { + "word": "wayward", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "difficult to control or predict because of unusual or perverse behavior", + "example_sentence_english": "The teacher struggled with the wayward student.", + "pos": "adjective", + "word_frequency": 17997 + }, + { + "word": "workmanship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the degree of skill with which a product is made or a job done", + "example_sentence_english": "The antique clock showed excellent workmanship.", + "pos": "noun", + "word_frequency": 17999 + }, + { + "word": "wren", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small brown bird", + "example_sentence_english": "A tiny wren built its nest in the rose bush.", + "pos": "noun", + "word_frequency": 18000 + }, + { + "word": "yoke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a wooden bar joining oxen; a burden or oppression", + "example_sentence_english": "The oxen pulled the plow under the heavy yoke.", + "pos": "noun", + "word_frequency": 18002 + }, + { + "word": "acorn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the nut of the oak tree", + "example_sentence_english": "A squirrel buried an acorn for winter.", + "pos": "noun", + "word_frequency": 18009 + }, + { + "word": "ail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trouble or afflict (someone) in mind or body", + "example_sentence_english": "What ails you, my friend?", + "pos": "verb", + "word_frequency": 18013 + }, + { + "word": "airflow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the flow of air", + "example_sentence_english": "The airflow in the room was poor.", + "pos": "noun", + "word_frequency": 18014 + }, + { + "word": "aloft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "up in the air; overhead", + "example_sentence_english": "The flag waved proudly aloft.", + "pos": "adverb", + "word_frequency": 18016 + }, + { + "word": "amalgamation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action, process, or result of combining or uniting", + "example_sentence_english": "The company was formed by the amalgamation of several smaller firms.", + "pos": "noun", + "word_frequency": 18017 + }, + { + "word": "aneurysm", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a localized, blood-filled balloon-like bulge in the wall of a blood vessel", + "example_sentence_english": "He suffered a brain aneurysm.", + "pos": "noun", + "word_frequency": 18019 + }, + { + "word": "antelope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a swift-running deer-like ruminant", + "example_sentence_english": "The antelope grazed peacefully on the savanna.", + "pos": "noun", + "word_frequency": 18020 + }, + { + "word": "archdiocese", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the district or see of an archbishop", + "example_sentence_english": "The archdiocese covers several counties.", + "pos": "noun", + "word_frequency": 18023 + }, + { + "word": "barre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a horizontal bar used by ballet dancers for support", + "example_sentence_english": "The dancers held onto the barre during their warm-up exercises.", + "pos": "noun", + "word_frequency": 18025 + }, + { + "word": "basilica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large oblong hall or building with an apse at one end", + "example_sentence_english": "St. Peter's Basilica is a famous church in Vatican City.", + "pos": "noun", + "word_frequency": 18026 + }, + { + "word": "beset", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to trouble or threaten persistently", + "example_sentence_english": "The project was beset by delays.", + "pos": "verb", + "word_frequency": 18029 + }, + { + "word": "bitchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malicious or unpleasant", + "example_sentence_english": "Her bitchy comments upset everyone.", + "pos": "adjective", + "word_frequency": 18030 + }, + { + "word": "blaster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that produces a powerful blast; a fictional energy weapon", + "example_sentence_english": "The hero fired his blaster at the alien.", + "pos": "noun", + "word_frequency": 18031 + }, + { + "word": "bleep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short, high-pitched sound", + "example_sentence_english": "The microwave made a bleep when the food was ready.", + "pos": "noun", + "word_frequency": 18032 + }, + { + "word": "brie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft, creamy cheese", + "example_sentence_english": "We served crackers and brie at the party.", + "pos": "noun", + "word_frequency": 18034 + }, + { + "word": "cavern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large cave or a chamber in a cave", + "example_sentence_english": "The explorers ventured deep into the dark cavern.", + "pos": "noun", + "word_frequency": 18037 + }, + { + "word": "chivalry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the qualities of a knight, such as courage, honor, and courtesy", + "example_sentence_english": "His act of opening the door for her was a small gesture of chivalry.", + "pos": "noun", + "word_frequency": 18040 + }, + { + "word": "civilised", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polite and well-mannered; developed and advanced", + "example_sentence_english": "They live in a civilised society with laws and order.", + "pos": "adjective", + "word_frequency": 18042 + }, + { + "word": "cocoon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a silky case spun by the larvae of many insects", + "example_sentence_english": "The caterpillar spun a cocoon before transforming into a butterfly.", + "pos": "noun", + "word_frequency": 18044 + }, + { + "word": "cornerback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a defensive player in American football", + "example_sentence_english": "The cornerback intercepted the pass and ran it back for a touchdown.", + "pos": "noun", + "word_frequency": 18045 + }, + { + "word": "credence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belief in or acceptance of something as true", + "example_sentence_english": "The jury gave little credence to his testimony.", + "pos": "noun", + "word_frequency": 18046 + }, + { + "word": "crossfire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a situation where people are caught between opposing forces", + "example_sentence_english": "Civilians were caught in the crossfire during the battle.", + "pos": "noun", + "word_frequency": 18047 + }, + { + "word": "debtor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or entity that owes money", + "example_sentence_english": "The debtor struggled to repay the loan.", + "pos": "noun", + "word_frequency": 18051 + }, + { + "word": "disallow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refuse to allow; reject", + "example_sentence_english": "The referee decided to disallow the goal due to a foul.", + "pos": "verb", + "word_frequency": 18053 + }, + { + "word": "dispatcher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who sends out vehicles or messages", + "example_sentence_english": "The police dispatcher sent officers to the scene of the accident.", + "pos": "noun", + "word_frequency": 18054 + }, + { + "word": "draught", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a current of air; a serving of beer from a barrel", + "example_sentence_english": "There's a cold draught coming from under the door.", + "pos": "noun", + "word_frequency": 18056 + }, + { + "word": "dreary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dull, bleak, and depressing", + "example_sentence_english": "The weather was dreary and rainy all day.", + "pos": "adjective", + "word_frequency": 18057 + }, + { + "word": "dropout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who abandons a course of study or a competition", + "example_sentence_english": "He became a successful entrepreneur despite being a college dropout.", + "pos": "noun", + "word_frequency": 18058 + }, + { + "word": "dupe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deceive or trick", + "example_sentence_english": "He tried to dupe me into giving him money.", + "pos": "verb", + "word_frequency": 18059 + }, + { + "word": "environmentalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is concerned with protecting the natural environment", + "example_sentence_english": "She became an environmentalist after seeing the effects of pollution.", + "pos": "noun", + "word_frequency": 18062 + }, + { + "word": "erroneously", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a mistaken or incorrect way", + "example_sentence_english": "He erroneously believed the train would arrive on time.", + "pos": "adverb", + "word_frequency": 18063 + }, + { + "word": "evaporation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of turning from liquid into vapor", + "example_sentence_english": "The evaporation of water from the lake increased during the summer.", + "pos": "noun", + "word_frequency": 18065 + }, + { + "word": "forego", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to go without; to give up", + "example_sentence_english": "I decided to forego dessert to save calories.", + "pos": "verb", + "word_frequency": 18068 + }, + { + "word": "gable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the triangular upper part of a wall at the end of a ridged roof", + "example_sentence_english": "The house had a distinctive gable roof.", + "pos": "noun", + "word_frequency": 18069 + }, + { + "word": "gallows", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a structure, typically of two uprights and a crosspiece, for the hanging of criminals", + "example_sentence_english": "The condemned man was led to the gallows.", + "pos": "noun", + "word_frequency": 18070 + }, + { + "word": "guernsey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of thick woollen sweater; a breed of dairy cattle", + "example_sentence_english": "He wore a warm guernsey on the cold day.", + "pos": "noun", + "word_frequency": 18074 + }, + { + "word": "haiku", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Japanese poem of seventeen syllables, in three lines of five, seven, and five", + "example_sentence_english": "She wrote a beautiful haiku about nature.", + "pos": "noun", + "word_frequency": 18076 + }, + { + "word": "harrow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a farming implement with a spiked frame, used for breaking up and smoothing soil", + "example_sentence_english": "The farmer used a harrow to prepare the field for planting.", + "pos": "noun", + "word_frequency": 18077 + }, + { + "word": "hatchet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small axe with a short handle", + "example_sentence_english": "He used a hatchet to chop the small branches.", + "pos": "noun", + "word_frequency": 18078 + }, + { + "word": "henceforth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "from this time forward", + "example_sentence_english": "Henceforth, all employees must wear their ID badges.", + "pos": "adverb", + "word_frequency": 18079 + }, + { + "word": "heterogeneous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diverse in character or content", + "example_sentence_english": "The class was composed of a heterogeneous group of students from various backgrounds.", + "pos": "adjective", + "word_frequency": 18080 + }, + { + "word": "hilltop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the top of a hill", + "example_sentence_english": "They built their house on the hilltop, enjoying the panoramic views.", + "pos": "noun", + "word_frequency": 18081 + }, + { + "word": "hobo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a homeless person, typically one who travels in search of work", + "example_sentence_english": "The old hobo warmed himself by the fire.", + "pos": "noun", + "word_frequency": 18083 + }, + { + "word": "housework", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "regular work done in cleaning and maintaining a house", + "example_sentence_english": "She spends her mornings doing housework.", + "pos": "noun", + "word_frequency": 18084 + }, + { + "word": "huddle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small group of people or things crowded close together", + "example_sentence_english": "The players formed a huddle to discuss their strategy.", + "pos": "noun", + "word_frequency": 18088 + }, + { + "word": "importer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or company that brings goods or services into a country from abroad for sale", + "example_sentence_english": "The company is a major importer of electronic goods.", + "pos": "noun", + "word_frequency": 18091 + }, + { + "word": "indignation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anger or annoyance provoked by what is perceived as unfair treatment", + "example_sentence_english": "She felt a surge of indignation at the unfair accusation.", + "pos": "noun", + "word_frequency": 18092 + }, + { + "word": "ingrain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "firmly fix or establish (a habit, belief, or attitude) in a person's mind", + "example_sentence_english": "The values of hard work were ingrained in him from an early age.", + "pos": "verb", + "word_frequency": 18094 + }, + { + "word": "jive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of lively dance or music; deceptive or glib talk", + "example_sentence_english": "They were dancing to some cool jive music.", + "pos": "noun", + "word_frequency": 18097 + }, + { + "word": "keenly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an eager or enthusiastic manner; intensely", + "example_sentence_english": "She keenly observed every detail of the painting.", + "pos": "adverb", + "word_frequency": 18099 + }, + { + "word": "lass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a girl or young woman", + "example_sentence_english": "The bonnie lass sang a beautiful song.", + "pos": "noun", + "word_frequency": 18106 + }, + { + "word": "lull", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calm or send to sleep, typically with soothing sounds or movements", + "example_sentence_english": "The gentle rocking of the boat lulled the baby to sleep.", + "pos": "verb", + "word_frequency": 18109 + }, + { + "word": "lullaby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a quiet, gentle song sung to send a child to sleep", + "example_sentence_english": "She sang a soft lullaby to her child.", + "pos": "noun", + "word_frequency": 18110 + }, + { + "word": "macedonian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of North Macedonia; the South Slavic language spoken in North Macedonia", + "example_sentence_english": "He is Macedonian and speaks the language fluently.", + "pos": "noun", + "word_frequency": 18111 + }, + { + "word": "mackerel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a migratory oceanic fish, widely used for food", + "example_sentence_english": "We grilled fresh mackerel for dinner.", + "pos": "noun", + "word_frequency": 18112 + }, + { + "word": "medallist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has won a medal in a competition or event", + "example_sentence_english": "The gold medallist stood proudly on the podium.", + "pos": "noun", + "word_frequency": 18118 + }, + { + "word": "metabolite", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a substance formed in or necessary for metabolism", + "example_sentence_english": "Researchers are studying the various metabolites produced by the bacteria.", + "pos": "noun", + "word_frequency": 18119 + }, + { + "word": "metaphysics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The branch of philosophy that deals with the first principles of things, including abstract concepts such as being, knowing, substance, cause, identity, time, and space.", + "example_sentence_english": "He studied metaphysics to understand the fundamental nature of reality.", + "pos": "noun", + "word_frequency": 18120 + }, + { + "word": "meticulously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a way that shows great attention to detail; very carefully and precisely.", + "example_sentence_english": "She meticulously checked every detail of the report before submitting it.", + "pos": "adverb", + "word_frequency": 18121 + }, + { + "word": "mite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A very small arachnid; a very small amount or degree.", + "example_sentence_english": "The old book was infested with dust mites.", + "pos": "noun", + "word_frequency": 18122 + }, + { + "word": "moratorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A temporary prohibition of an activity.", + "example_sentence_english": "The government declared a moratorium on new construction in the area.", + "pos": "noun", + "word_frequency": 18124 + }, + { + "word": "morgue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A place where bodies are kept, especially to be identified or examined.", + "example_sentence_english": "The police took the body to the morgue for an autopsy.", + "pos": "noun", + "word_frequency": 18125 + }, + { + "word": "mulligan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(In golf) an extra stroke allowed after a poor shot, without penalty; a second chance to do something.", + "example_sentence_english": "I hit a terrible shot, so I'll take a mulligan.", + "pos": "noun", + "word_frequency": 18129 + }, + { + "word": "munch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To eat (something) steadily and often audibly.", + "example_sentence_english": "The rabbit munched on a carrot.", + "pos": "verb", + "word_frequency": 18130 + }, + { + "word": "muppet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A puppet of the type created by Jim Henson; (informal) a foolish or incompetent person.", + "example_sentence_english": "He felt like a muppet after making such a silly mistake.", + "pos": "noun", + "word_frequency": 18131 + }, + { + "word": "nascent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(Especially of a process or organization) just coming into existence and beginning to display signs of future potential.", + "example_sentence_english": "The nascent technology showed great promise for the future.", + "pos": "adjective", + "word_frequency": 18132 + }, + { + "word": "neurotic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Suffering from, caused by, or relating to neurosis; excessively anxious or obsessive.", + "example_sentence_english": "His neurotic tendencies made him worry about everything.", + "pos": "adjective", + "word_frequency": 18133 + }, + { + "word": "novella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short novel or a long short story.", + "example_sentence_english": "Ernest Hemingway's 'The Old Man and the Sea' is a famous novella.", + "pos": "noun", + "word_frequency": 18135 + }, + { + "word": "octane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A hydrocarbon of the alkane series, found in petroleum. Used to describe the anti-knock properties of fuel.", + "example_sentence_english": "This car requires high-octane fuel.", + "pos": "noun", + "word_frequency": 18136 + }, + { + "word": "octave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A series of eight notes occupying the interval between two notes, one having twice or half the frequency of the other.", + "example_sentence_english": "She sang the high note an octave above the melody.", + "pos": "noun", + "word_frequency": 18137 + }, + { + "word": "oldie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An old person or thing, especially an old song or film.", + "example_sentence_english": "The radio station plays all the classic oldies from the 80s.", + "pos": "noun", + "word_frequency": 18139 + }, + { + "word": "penalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To subject to a penalty or punishment.", + "example_sentence_english": "The referee decided to penalize the player for the foul.", + "pos": "verb", + "word_frequency": 18142 + }, + { + "word": "pitbull", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of dog, typically a crossbreed, noted for its strength and aggressive tendencies.", + "example_sentence_english": "The pitbull was playing fetch in the park.", + "pos": "noun", + "word_frequency": 18143 + }, + { + "word": "postmodern", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to postmodernism, a late-20th-century style and concept in the arts, architecture, and criticism.", + "example_sentence_english": "The architect designed a building with a postmodern aesthetic.", + "pos": "adjective", + "word_frequency": 18145 + }, + { + "word": "prerogative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A right or privilege exclusive to a particular individual or class.", + "example_sentence_english": "It's the manager's prerogative to hire or fire staff.", + "pos": "noun", + "word_frequency": 18146 + }, + { + "word": "prudence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality of being prudent; cautiousness.", + "example_sentence_english": "He acted with prudence when making the difficult decision.", + "pos": "noun", + "word_frequency": 18147 + }, + { + "word": "prudential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Involving or showing care and forethought, especially in financial matters; relating to prudence.", + "example_sentence_english": "The company adopted a prudential approach to its investments.", + "pos": "adjective", + "word_frequency": 18148 + }, + { + "word": "pry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To inquire too inquisitively into a person's private affairs; to use leverage to open or separate something.", + "example_sentence_english": "Don't pry into my personal life.", + "pos": "verb", + "word_frequency": 18149 + }, + { + "word": "psychoanalysis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A system of psychological theory and therapy which aims to treat mental disorders by investigating the interaction of conscious and unconscious elements in the mind.", + "example_sentence_english": "She underwent psychoanalysis to understand her recurring dreams.", + "pos": "noun", + "word_frequency": 18150 + }, + { + "word": "purposefully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "With a deliberate purpose; intentionally.", + "example_sentence_english": "He walked purposefully towards the exit.", + "pos": "adverb", + "word_frequency": 18151 + }, + { + "word": "radiotherapy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The treatment of disease, especially cancer, using X-rays or other forms of radiation.", + "example_sentence_english": "She received radiotherapy as part of her cancer treatment.", + "pos": "noun", + "word_frequency": 18153 + }, + { + "word": "rationally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a way that is based on or in accordance with reason or logic.", + "example_sentence_english": "He tried to think rationally about the problem.", + "pos": "adverb", + "word_frequency": 18154 + }, + { + "word": "remarry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To marry again.", + "example_sentence_english": "After her divorce, she decided to remarry.", + "pos": "verb", + "word_frequency": 18156 + }, + { + "word": "remedial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Providing a remedy, especially for a deficiency or difficulty.", + "example_sentence_english": "He needed remedial classes to improve his math skills.", + "pos": "adjective", + "word_frequency": 18158 + }, + { + "word": "repressive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Inhibiting or restraining the natural expression or development of something; characterized by repression.", + "example_sentence_english": "The country was ruled by a repressive regime.", + "pos": "adjective", + "word_frequency": 18159 + }, + { + "word": "resourceful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to find quick and clever ways to overcome difficulties", + "example_sentence_english": "She is a very resourceful person, always finding solutions to problems.", + "pos": "adjective", + "word_frequency": 18160 + }, + { + "word": "runtime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the time during which a program is running or a process is active", + "example_sentence_english": "The software crashed during runtime.", + "pos": "noun", + "word_frequency": 18163 + }, + { + "word": "sacrificial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or involving sacrifice", + "example_sentence_english": "The team made a sacrificial effort to win the game.", + "pos": "adjective", + "word_frequency": 18165 + }, + { + "word": "scorch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burn the surface of something with flame or heat", + "example_sentence_english": "The hot iron will scorch the fabric if you leave it too long.", + "pos": "verb", + "word_frequency": 18167 + }, + { + "word": "scribe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who copies out documents, especially one employed to do this before printing was invented", + "example_sentence_english": "In ancient times, a scribe was a highly respected profession.", + "pos": "noun", + "word_frequency": 18169 + }, + { + "word": "sentry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soldier stationed to keep guard or to control access to a place", + "example_sentence_english": "The sentry stood guard at the gate all night.", + "pos": "noun", + "word_frequency": 18170 + }, + { + "word": "sexton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who looks after a church and churchyard, sometimes acting as a bell-ringer and grave-digger", + "example_sentence_english": "The sexton was responsible for maintaining the church grounds.", + "pos": "noun", + "word_frequency": 18172 + }, + { + "word": "shingle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rectangular tile, often made of wood or asphalt, used on roofs or walls", + "example_sentence_english": "The roof needs new shingles after the storm.", + "pos": "noun", + "word_frequency": 18175 + }, + { + "word": "silverware", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eating utensils, especially those made of or coated with silver", + "example_sentence_english": "Please set the table with the silverware.", + "pos": "noun", + "word_frequency": 18177 + }, + { + "word": "skillet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a frying pan, typically made of cast iron", + "example_sentence_english": "He cooked the eggs in a cast-iron skillet.", + "pos": "noun", + "word_frequency": 18178 + }, + { + "word": "slimy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered in or resembling slime; unpleasantly thick and slippery", + "example_sentence_english": "The slug left a slimy trail on the pavement.", + "pos": "adjective", + "word_frequency": 18179 + }, + { + "word": "snout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the projecting nose and mouth of an animal, especially a mammal", + "example_sentence_english": "The pig rooted around with its snout in the mud.", + "pos": "noun", + "word_frequency": 18180 + }, + { + "word": "solicit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ask for or try to obtain something from someone", + "example_sentence_english": "The charity began to solicit donations from the public.", + "pos": "verb", + "word_frequency": 18181 + }, + { + "word": "specter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a ghost or phantom; something widely feared as a possible unpleasant or dangerous occurrence", + "example_sentence_english": "The specter of unemployment loomed over the town.", + "pos": "noun", + "word_frequency": 18183 + }, + { + "word": "statehood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the status of being a state", + "example_sentence_english": "Alaska achieved statehood in 1959.", + "pos": "noun", + "word_frequency": 18184 + }, + { + "word": "storyteller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who tells stories", + "example_sentence_english": "The old man was a wonderful storyteller, captivating everyone with his tales.", + "pos": "noun", + "word_frequency": 18186 + }, + { + "word": "strew", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to scatter or spread (things) untidily over a surface or area", + "example_sentence_english": "Leaves were strewn across the path after the strong winds.", + "pos": "verb", + "word_frequency": 18187 + }, + { + "word": "stroller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pushchair or pram for a baby or young child", + "example_sentence_english": "She pushed the baby in a stroller through the park.", + "pos": "noun", + "word_frequency": 18188 + }, + { + "word": "stub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the small piece of something that is left after the main part has been used or broken off", + "example_sentence_english": "He kept the ticket stub as a souvenir.", + "pos": "noun", + "word_frequency": 18189 + }, + { + "word": "subgroup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secondary or subordinate group within a larger group", + "example_sentence_english": "The research focused on a specific subgroup of the population.", + "pos": "noun", + "word_frequency": 18190 + }, + { + "word": "suspiciously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that arouses suspicion; in a distrustful or wary manner", + "example_sentence_english": "He looked suspiciously at the stranger.", + "pos": "adverb", + "word_frequency": 18192 + }, + { + "word": "tact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill and sensitivity in dealing with others or with difficult issues", + "example_sentence_english": "He handled the delicate situation with great tact.", + "pos": "noun", + "word_frequency": 18195 + }, + { + "word": "taxonomy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of science concerned with classification, especially of organisms; a classification of things or concepts", + "example_sentence_english": "The taxonomy of plants is a complex field of study.", + "pos": "noun", + "word_frequency": 18196 + }, + { + "word": "tinge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to color slightly; to imbue with a slight quality or characteristic", + "example_sentence_english": "The sunset tinged the clouds with pink and orange.", + "pos": "verb", + "word_frequency": 18198 + }, + { + "word": "tirelessly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without tiring; with great energy or effort", + "example_sentence_english": "She worked tirelessly to complete the project on time.", + "pos": "adverb", + "word_frequency": 18199 + }, + { + "word": "tiresome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing one to feel tired or bored", + "example_sentence_english": "The long meeting was quite tiresome.", + "pos": "adjective", + "word_frequency": 18200 + }, + { + "word": "toolkit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a set of tools", + "example_sentence_english": "He keeps a small toolkit in his car for emergencies.", + "pos": "noun", + "word_frequency": 18201 + }, + { + "word": "tundra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a vast, flat, treeless Arctic region", + "example_sentence_english": "The polar bear roams across the vast tundra.", + "pos": "noun", + "word_frequency": 18202 + }, + { + "word": "tunic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a loose-fitting garment", + "example_sentence_english": "Ancient Romans often wore a simple tunic.", + "pos": "noun", + "word_frequency": 18203 + }, + { + "word": "uncompromising", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unwilling to make concessions", + "example_sentence_english": "Her uncompromising stance on human rights earned her respect.", + "pos": "adjective", + "word_frequency": 18204 + }, + { + "word": "unmistakable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be mistaken or misunderstood", + "example_sentence_english": "The smell of freshly baked bread was unmistakable.", + "pos": "adjective", + "word_frequency": 18205 + }, + { + "word": "unruly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disorderly and difficult to control", + "example_sentence_english": "The teacher struggled to manage the unruly class.", + "pos": "adjective", + "word_frequency": 18206 + }, + { + "word": "veal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meat from a calf", + "example_sentence_english": "For dinner, we had roasted veal with vegetables.", + "pos": "noun", + "word_frequency": 18208 + }, + { + "word": "venomous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secreting venom; poisonous", + "example_sentence_english": "Be careful, some snakes are venomous.", + "pos": "adjective", + "word_frequency": 18209 + }, + { + "word": "viceroy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a ruler exercising authority in a colony on behalf of a sovereign", + "example_sentence_english": "The viceroy governed the vast colonial territory.", + "pos": "noun", + "word_frequency": 18210 + }, + { + "word": "videotape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnetic tape for recording video and sound", + "example_sentence_english": "We used to record our favorite shows on videotape.", + "pos": "noun", + "word_frequency": 18211 + }, + { + "word": "wearer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who wears something", + "example_sentence_english": "The mask protects the wearer from dust.", + "pos": "noun", + "word_frequency": 18213 + }, + { + "word": "whiting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small marine fish", + "example_sentence_english": "We had fried whiting for dinner.", + "pos": "noun", + "word_frequency": 18214 + }, + { + "word": "willful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing a stubborn determination to do as one pleases", + "example_sentence_english": "Her willful disobedience led to consequences.", + "pos": "adjective", + "word_frequency": 18215 + }, + { + "word": "zeta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sixth letter of the Greek alphabet", + "example_sentence_english": "The symbol for the Riemann zeta function is ζ.", + "pos": "noun", + "word_frequency": 18218 + }, + { + "word": "abnormally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is not normal", + "example_sentence_english": "The weather was abnormally warm for this time of year.", + "pos": "adverb", + "word_frequency": 18224 + }, + { + "word": "abstain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to choose not to do or have something", + "example_sentence_english": "She decided to abstain from alcohol for a month.", + "pos": "verb", + "word_frequency": 18225 + }, + { + "word": "airliner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large passenger aircraft", + "example_sentence_english": "The airliner took off smoothly from the runway.", + "pos": "noun", + "word_frequency": 18228 + }, + { + "word": "alchemist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who practiced alchemy", + "example_sentence_english": "The alchemist sought to turn lead into gold.", + "pos": "noun", + "word_frequency": 18229 + }, + { + "word": "alfa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the first letter of the NATO phonetic alphabet", + "example_sentence_english": "The pilot spelled out the word 'Alfa' over the radio.", + "pos": "noun", + "word_frequency": 18231 + }, + { + "word": "allegory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a story, poem, or picture that can be interpreted to reveal a hidden meaning", + "example_sentence_english": "George Orwell's 'Animal Farm' is a political allegory.", + "pos": "noun", + "word_frequency": 18232 + }, + { + "word": "alp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a high mountain", + "example_sentence_english": "They hiked through the rugged alp terrain.", + "pos": "noun", + "word_frequency": 18233 + }, + { + "word": "aortic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the aorta", + "example_sentence_english": "The doctor listened to the patient's aortic valve.", + "pos": "adjective", + "word_frequency": 18234 + }, + { + "word": "assimilate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to absorb and integrate (people, ideas, or culture) into a wider society or culture", + "example_sentence_english": "Immigrants often try to assimilate into their new culture.", + "pos": "verb", + "word_frequency": 18237 + }, + { + "word": "battleground", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where a battle is fought; a disputed area", + "example_sentence_english": "The city became a battleground during the war.", + "pos": "noun", + "word_frequency": 18239 + }, + { + "word": "beet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a root vegetable", + "example_sentence_english": "She added a sliced beet to her salad.", + "pos": "noun", + "word_frequency": 18240 + }, + { + "word": "bellow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deep, loud roar", + "example_sentence_english": "The lion's bellow echoed through the valley.", + "pos": "noun", + "word_frequency": 18241 + }, + { + "word": "blister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small bubble on the skin", + "example_sentence_english": "New shoes often cause a blister on the heel.", + "pos": "noun", + "word_frequency": 18242 + }, + { + "word": "blob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shapeless mass or drop", + "example_sentence_english": "A blob of paint fell onto the floor.", + "pos": "noun", + "word_frequency": 18243 + }, + { + "word": "bluntly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a direct, unreserved way", + "example_sentence_english": "She told him bluntly that his idea was terrible.", + "pos": "adverb", + "word_frequency": 18244 + }, + { + "word": "bootleg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illegal or unauthorized goods", + "example_sentence_english": "He was caught selling bootleg copies of the movie.", + "pos": "noun", + "word_frequency": 18247 + }, + { + "word": "brine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water saturated with salt", + "example_sentence_english": "The pickles were preserved in a strong brine.", + "pos": "noun", + "word_frequency": 18250 + }, + { + "word": "busty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having large breasts", + "example_sentence_english": "The dress accentuated her busty figure.", + "pos": "adjective", + "word_frequency": 18251 + }, + { + "word": "callous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing cruel disregard for others", + "example_sentence_english": "His callous remarks showed a lack of empathy.", + "pos": "adjective", + "word_frequency": 18252 + }, + { + "word": "cardiology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study and treatment of heart diseases", + "example_sentence_english": "He decided to specialize in cardiology after medical school.", + "pos": "noun", + "word_frequency": 18256 + }, + { + "word": "cartoonist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who draws cartoons", + "example_sentence_english": "The cartoonist drew a funny caricature of the politician.", + "pos": "noun", + "word_frequency": 18258 + }, + { + "word": "casserole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dish baked and served in a deep dish", + "example_sentence_english": "She made a delicious chicken and vegetable casserole for dinner.", + "pos": "noun", + "word_frequency": 18260 + }, + { + "word": "cellulose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a complex carbohydrate found in plant cell walls", + "example_sentence_english": "Wood is primarily composed of cellulose.", + "pos": "noun", + "word_frequency": 18262 + }, + { + "word": "choreograph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange or design the movements of a dance", + "example_sentence_english": "She was hired to choreograph the ballet performance.", + "pos": "verb", + "word_frequency": 18264 + }, + { + "word": "circuitry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the components of an electric circuit", + "example_sentence_english": "The complex circuitry of the computer allows it to perform many tasks.", + "pos": "noun", + "word_frequency": 18265 + }, + { + "word": "clove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dried flower bud used as a spice; a segment of garlic", + "example_sentence_english": "She added a pinch of ground clove to the apple pie.", + "pos": "noun", + "word_frequency": 18266 + }, + { + "word": "commendable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving praise", + "example_sentence_english": "His efforts to help the community were truly commendable.", + "pos": "adjective", + "word_frequency": 18267 + }, + { + "word": "competitively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that involves competition", + "example_sentence_english": "He trains competitively for the marathon.", + "pos": "adverb", + "word_frequency": 18268 + }, + { + "word": "comptroller", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a financial officer, especially in government or a large company", + "example_sentence_english": "The comptroller is responsible for managing the organization's finances.", + "pos": "noun", + "word_frequency": 18269 + }, + { + "word": "conventionally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "according to accepted custom or practice", + "example_sentence_english": "Conventionally, the bride wears white at a wedding.", + "pos": "adverb", + "word_frequency": 18270 + }, + { + "word": "creole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person of mixed European and black descent; a language formed from a pidgin", + "example_sentence_english": "Haitian Creole is spoken by most people in Haiti.", + "pos": "noun", + "word_frequency": 18272 + }, + { + "word": "cubicle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small partitioned off area of a room", + "example_sentence_english": "He spent his workday in a small office cubicle.", + "pos": "noun", + "word_frequency": 18273 + }, + { + "word": "curtail", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reduce in extent or quantity; impose a restriction on", + "example_sentence_english": "The new policy will curtail government spending.", + "pos": "verb", + "word_frequency": 18274 + }, + { + "word": "cystic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characterized by cysts", + "example_sentence_english": "Cystic fibrosis is a genetic disorder affecting the lungs.", + "pos": "adjective", + "word_frequency": 18275 + }, + { + "word": "d.j", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disc jockey", + "example_sentence_english": "The DJ played a great mix of songs at the party.", + "pos": "noun", + "word_frequency": 18276 + }, + { + "word": "dainty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicately small and pretty", + "example_sentence_english": "She wore a dainty silver necklace.", + "pos": "adjective", + "word_frequency": 18277 + }, + { + "word": "decimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to severely reduce or destroy", + "example_sentence_english": "The disease could decimate the population if not controlled.", + "pos": "verb", + "word_frequency": 18281 + }, + { + "word": "deliverance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of being rescued or set free", + "example_sentence_english": "They prayed for deliverance from their suffering.", + "pos": "noun", + "word_frequency": 18282 + }, + { + "word": "destitute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without money, food, a home, or possessions", + "example_sentence_english": "The war left many families destitute.", + "pos": "adjective", + "word_frequency": 18283 + }, + { + "word": "dexterity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skill in performing tasks, especially with the hands", + "example_sentence_english": "The surgeon showed great dexterity during the delicate operation.", + "pos": "noun", + "word_frequency": 18285 + }, + { + "word": "dilution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of making something weaker or less concentrated", + "example_sentence_english": "The dilution of the chemical reduced its toxicity.", + "pos": "noun", + "word_frequency": 18287 + }, + { + "word": "dissipate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disappear or cause to disappear", + "example_sentence_english": "The fog began to dissipate as the sun rose.", + "pos": "verb", + "word_frequency": 18288 + }, + { + "word": "drugstore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shop where medicines are sold", + "example_sentence_english": "I need to go to the drugstore to pick up my prescription.", + "pos": "noun", + "word_frequency": 18290 + }, + { + "word": "eczema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a skin condition causing dry, itchy patches", + "example_sentence_english": "She has suffered from eczema since childhood.", + "pos": "noun", + "word_frequency": 18292 + }, + { + "word": "ejection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of forcing or throwing something out", + "example_sentence_english": "The ejection of the player from the game caused a stir.", + "pos": "noun", + "word_frequency": 18293 + }, + { + "word": "electrolyte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that produces an electrically conducting solution when dissolved in a polar solvent", + "example_sentence_english": "Sports drinks contain electrolytes to help rehydrate the body.", + "pos": "noun", + "word_frequency": 18294 + }, + { + "word": "elitist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or supporting the idea of an elite group", + "example_sentence_english": "His elitist attitude made him unpopular with his colleagues.", + "pos": "adjective", + "word_frequency": 18295 + }, + { + "word": "emphatically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a forceful way", + "example_sentence_english": "She emphatically denied the accusations.", + "pos": "adverb", + "word_frequency": 18296 + }, + { + "word": "engulf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sweep over something so as to surround or cover it completely", + "example_sentence_english": "The flames quickly engulfed the old building.", + "pos": "verb", + "word_frequency": 18297 + }, + { + "word": "equine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to horses", + "example_sentence_english": "The veterinarian specializes in equine diseases.", + "pos": "adjective", + "word_frequency": 18298 + }, + { + "word": "exclusivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being exclusive", + "example_sentence_english": "The contract granted the company exclusivity for distribution in the region.", + "pos": "noun", + "word_frequency": 18299 + }, + { + "word": "failing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fault or weakness", + "example_sentence_english": "Patience was his greatest failing.", + "pos": "noun", + "word_frequency": 18300 + }, + { + "word": "faucet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device for controlling the flow of water from a pipe", + "example_sentence_english": "The kitchen faucet is dripping.", + "pos": "noun", + "word_frequency": 18302 + }, + { + "word": "feisty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lively, determined, and courageous", + "example_sentence_english": "She's a feisty old woman who isn't afraid to speak her mind.", + "pos": "adjective", + "word_frequency": 18305 + }, + { + "word": "fink", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an unpleasant or contemptible person, especially one who acts as an informer", + "example_sentence_english": "Don't be a fink and tell on your friends.", + "pos": "noun", + "word_frequency": 18306 + }, + { + "word": "foothold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secure position from which to advance", + "example_sentence_english": "The company is trying to gain a foothold in the new market.", + "pos": "noun", + "word_frequency": 18307 + }, + { + "word": "fortification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a defensive wall or other reinforcement built to strengthen a place against attack", + "example_sentence_english": "The ancient city was protected by strong fortifications.", + "pos": "noun", + "word_frequency": 18308 + }, + { + "word": "fraternal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or like brothers", + "example_sentence_english": "They shared a strong fraternal bond.", + "pos": "adjective", + "word_frequency": 18310 + }, + { + "word": "ghastly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpleasant, horrible, or dreadful", + "example_sentence_english": "The accident left a ghastly scene.", + "pos": "adjective", + "word_frequency": 18315 + }, + { + "word": "gratify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to give pleasure or satisfaction to", + "example_sentence_english": "It was gratifying to see the project finally completed.", + "pos": "verb", + "word_frequency": 18319 + }, + { + "word": "grey", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grey (color)", + "example_sentence_english": "The sky was a dull grey before the storm.", + "pos": "noun", + "word_frequency": 18321 + }, + { + "word": "gymnast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnast", + "example_sentence_english": "The young gymnast performed a perfect routine.", + "pos": "noun", + "word_frequency": 18322 + }, + { + "word": "hairline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hairline", + "example_sentence_english": "He noticed a slight receding of his hairline.", + "pos": "noun", + "word_frequency": 18323 + }, + { + "word": "handset", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handset", + "example_sentence_english": "She picked up the phone handset to answer the call.", + "pos": "noun", + "word_frequency": 18324 + }, + { + "word": "harrowing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harrowing", + "example_sentence_english": "The survivors recounted their harrowing experience at sea.", + "pos": "adjective", + "word_frequency": 18325 + }, + { + "word": "heiress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heiress", + "example_sentence_english": "She was the sole heiress to a vast fortune.", + "pos": "noun", + "word_frequency": 18326 + }, + { + "word": "holster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holster", + "example_sentence_english": "The police officer kept his pistol in a leather holster.", + "pos": "noun", + "word_frequency": 18331 + }, + { + "word": "humanist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanist", + "example_sentence_english": "He was a strong advocate for humanist values and education.", + "pos": "noun", + "word_frequency": 18332 + }, + { + "word": "hunch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hunch (a feeling or guess)", + "example_sentence_english": "I have a hunch that he's hiding something.", + "pos": "noun", + "word_frequency": 18333 + }, + { + "word": "impenetrable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impenetrable", + "example_sentence_english": "The fortress walls were thought to be impenetrable.", + "pos": "adjective", + "word_frequency": 18335 + }, + { + "word": "inconceivable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inconceivable", + "example_sentence_english": "It's inconceivable that he would betray his friends.", + "pos": "adjective", + "word_frequency": 18336 + }, + { + "word": "industrialization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "industrialization", + "example_sentence_english": "The industrialization of the country led to rapid economic growth.", + "pos": "noun", + "word_frequency": 18337 + }, + { + "word": "infographic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infographic", + "example_sentence_english": "The company used an infographic to explain their new product.", + "pos": "noun", + "word_frequency": 18339 + }, + { + "word": "infringe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infringe", + "example_sentence_english": "Copying copyrighted material can infringe on intellectual property rights.", + "pos": "verb", + "word_frequency": 18340 + }, + { + "word": "innovator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovator", + "example_sentence_english": "Steve Jobs was a renowned innovator in the tech industry.", + "pos": "noun", + "word_frequency": 18341 + }, + { + "word": "issuer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "issuer", + "example_sentence_english": "The bank is the issuer of the credit card.", + "pos": "noun", + "word_frequency": 18343 + }, + { + "word": "keg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keg", + "example_sentence_english": "They ordered a keg of beer for the party.", + "pos": "noun", + "word_frequency": 18345 + }, + { + "word": "koi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "koi (fish)", + "example_sentence_english": "Beautiful koi fish swam gracefully in the pond.", + "pos": "noun", + "word_frequency": 18348 + }, + { + "word": "lancet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lancet", + "example_sentence_english": "The doctor used a lancet to prick the patient's finger.", + "pos": "noun", + "word_frequency": 18350 + }, + { + "word": "landfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landfall", + "example_sentence_english": "The hurricane is expected to make landfall early tomorrow morning.", + "pos": "noun", + "word_frequency": 18351 + }, + { + "word": "layoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layoff", + "example_sentence_english": "The company announced a mass layoff due to financial difficulties.", + "pos": "noun", + "word_frequency": 18352 + }, + { + "word": "lifeguard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lifeguard", + "example_sentence_english": "The lifeguard blew his whistle to warn the swimmers.", + "pos": "noun", + "word_frequency": 18355 + }, + { + "word": "limerick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limerick (a type of poem)", + "example_sentence_english": "He wrote a funny limerick about a cat.", + "pos": "noun", + "word_frequency": 18356 + }, + { + "word": "loner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loner", + "example_sentence_english": "He was always a bit of a loner, preferring his own company.", + "pos": "noun", + "word_frequency": 18358 + }, + { + "word": "mogul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an important, powerful person", + "example_sentence_english": "He became a media mogul after years of hard work.", + "pos": "noun", + "word_frequency": 18365 + }, + { + "word": "morph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to change gradually in shape or form", + "example_sentence_english": "The caterpillar will morph into a butterfly.", + "pos": "verb", + "word_frequency": 18368 + }, + { + "word": "mysticism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belief in spiritual truth through direct experience", + "example_sentence_english": "Her studies focused on ancient forms of mysticism.", + "pos": "noun", + "word_frequency": 18372 + }, + { + "word": "nauseous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling as if you are about to vomit", + "example_sentence_english": "The smell of the food made me feel nauseous.", + "pos": "adjective", + "word_frequency": 18374 + }, + { + "word": "nimble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quick and light in movement or action", + "example_sentence_english": "He was nimble enough to dodge the falling debris.", + "pos": "adjective", + "word_frequency": 18375 + }, + { + "word": "nomad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has no fixed home and moves from place to place", + "example_sentence_english": "The tribe lived as nomads, following the herds.", + "pos": "noun", + "word_frequency": 18376 + }, + { + "word": "nouveau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "new or recently developed", + "example_sentence_english": "The art gallery featured a collection of nouveau art.", + "pos": "adjective", + "word_frequency": 18377 + }, + { + "word": "objectionable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing disapproval or offense", + "example_sentence_english": "His comments were highly objectionable.", + "pos": "adjective", + "word_frequency": 18382 + }, + { + "word": "obliterate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to destroy completely", + "example_sentence_english": "The bombing raid obliterated the entire city.", + "pos": "verb", + "word_frequency": 18383 + }, + { + "word": "obtainable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be obtained", + "example_sentence_english": "Information about the project is easily obtainable online.", + "pos": "adjective", + "word_frequency": 18384 + }, + { + "word": "oncoming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approaching; coming nearer", + "example_sentence_english": "She had to swerve to avoid the oncoming car.", + "pos": "adjective", + "word_frequency": 18385 + }, + { + "word": "opportunistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exploiting chances offered by immediate circumstances", + "example_sentence_english": "The company was criticized for its opportunistic pricing during the crisis.", + "pos": "adjective", + "word_frequency": 18386 + }, + { + "word": "outlandish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "looking or sounding bizarre or unfamiliar", + "example_sentence_english": "Her outfit was so outlandish that everyone stared.", + "pos": "adjective", + "word_frequency": 18388 + }, + { + "word": "outlying", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "situated far from a center", + "example_sentence_english": "They visited the outlying villages during their trip.", + "pos": "adjective", + "word_frequency": 18389 + }, + { + "word": "oxidative", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or involving oxidation", + "example_sentence_english": "Oxidative stress can damage cells.", + "pos": "adjective", + "word_frequency": 18390 + }, + { + "word": "pacifist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who believes that war and violence are unjustifiable", + "example_sentence_english": "He was a committed pacifist and refused to join the army.", + "pos": "noun", + "word_frequency": 18391 + }, + { + "word": "paraphrase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to express the meaning of something written or spoken using different words", + "example_sentence_english": "Please paraphrase the main points of the article.", + "pos": "verb", + "word_frequency": 18393 + }, + { + "word": "pathfinder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who goes ahead and discovers or opens up a new path or way", + "example_sentence_english": "The explorers were pathfinders in the uncharted territory.", + "pos": "noun", + "word_frequency": 18394 + }, + { + "word": "pedagogical", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to teaching", + "example_sentence_english": "The new curriculum has a strong pedagogical foundation.", + "pos": "adjective", + "word_frequency": 18395 + }, + { + "word": "pediatrician", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a medical doctor specializing in children's health", + "example_sentence_english": "We took our son to see the pediatrician for his check-up.", + "pos": "noun", + "word_frequency": 18396 + }, + { + "word": "penchant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong or habitual liking for something or tendency to do something", + "example_sentence_english": "She has a penchant for spicy food.", + "pos": "noun", + "word_frequency": 18398 + }, + { + "word": "planar", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to a plane; flat", + "example_sentence_english": "The design involved complex planar surfaces.", + "pos": "adjective", + "word_frequency": 18399 + }, + { + "word": "polygamy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The practice or custom of having more than one wife or husband at the same time.", + "example_sentence_english": "Polygamy is illegal in many countries.", + "pos": "noun", + "word_frequency": 18400 + }, + { + "word": "ponytail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A hairstyle in which the hair is drawn back and tied at the back of the head, so that it hangs like a horse's tail.", + "example_sentence_english": "She tied her hair back in a ponytail.", + "pos": "noun", + "word_frequency": 18401 + }, + { + "word": "poplar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A tall, fast-growing tree of the willow family.", + "example_sentence_english": "The poplar trees lined the riverbank.", + "pos": "noun", + "word_frequency": 18402 + }, + { + "word": "primordial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Existing at or from the beginning of time; primeval.", + "example_sentence_english": "Life emerged from the primordial soup.", + "pos": "adjective", + "word_frequency": 18403 + }, + { + "word": "pubic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the pubis or the pubic region.", + "example_sentence_english": "The pubic bone is located at the front of the pelvis.", + "pos": "adjective", + "word_frequency": 18404 + }, + { + "word": "publicist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person whose job is to generate and manage publicity for a public figure, a product, or a work of art.", + "example_sentence_english": "The celebrity hired a publicist to manage her image.", + "pos": "noun", + "word_frequency": 18405 + }, + { + "word": "quorum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The minimum number of members of an assembly or society that must be present at any of its meetings to make the proceedings of that meeting valid.", + "example_sentence_english": "The meeting could not start until a quorum was present.", + "pos": "noun", + "word_frequency": 18406 + }, + { + "word": "rancher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who owns or manages a ranch.", + "example_sentence_english": "The rancher rode out to check on his cattle.", + "pos": "noun", + "word_frequency": 18408 + }, + { + "word": "rascal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A mischievous or cheeky person, especially a child or man.", + "example_sentence_english": "The little rascal was always getting into trouble.", + "pos": "noun", + "word_frequency": 18409 + }, + { + "word": "revue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A light theatrical entertainment consisting of a series of short sketches, songs, and dances, typically satirizing contemporary events and prominent people.", + "example_sentence_english": "They went to see a musical revue in the city.", + "pos": "noun", + "word_frequency": 18410 + }, + { + "word": "rigor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The quality of being extremely thorough, exhaustive, or accurate.", + "example_sentence_english": "The scientific study was conducted with great rigor.", + "pos": "noun", + "word_frequency": 18412 + }, + { + "word": "rioter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who takes part in a riot.", + "example_sentence_english": "The police arrested several rioters after the protest.", + "pos": "noun", + "word_frequency": 18413 + }, + { + "word": "scotsman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A man who is a native or inhabitant of Scotland.", + "example_sentence_english": "The Scotsman wore a kilt to the event.", + "pos": "noun", + "word_frequency": 18420 + }, + { + "word": "seatbelt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A strap or harness designed to hold a person securely in a seat, especially in a car or aircraft.", + "example_sentence_english": "Always wear your seatbelt when driving.", + "pos": "noun", + "word_frequency": 18422 + }, + { + "word": "shank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The part of the leg between the knee and the ankle; a long, thin, flat piece of metal or other material.", + "example_sentence_english": "He felt a pain in his shank after the long run.", + "pos": "noun", + "word_frequency": 18423 + }, + { + "word": "sidebar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short, often boxed, article in a newspaper or magazine, presented alongside a main article and containing additional or explanatory material.", + "example_sentence_english": "The newspaper article included a sidebar with statistics.", + "pos": "noun", + "word_frequency": 18424 + }, + { + "word": "skeptic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person inclined to question or doubt all accepted opinions.", + "example_sentence_english": "He was a skeptic about the new health claims.", + "pos": "noun", + "word_frequency": 18426 + }, + { + "word": "sledge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A vehicle on runners, used for traveling over snow or ice.", + "example_sentence_english": "The children rode their sledge down the snowy hill.", + "pos": "noun", + "word_frequency": 18427 + }, + { + "word": "sociopath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person with a personality disorder manifesting itself in extreme antisocial attitudes and behavior and a lack of conscience.", + "example_sentence_english": "The character in the movie was portrayed as a dangerous sociopath.", + "pos": "noun", + "word_frequency": 18429 + }, + { + "word": "southward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Towards the south.", + "example_sentence_english": "The birds flew southward for the winter.", + "pos": "adverb", + "word_frequency": 18431 + }, + { + "word": "sparkly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Shining with many small flashes of light.", + "example_sentence_english": "She wore a sparkly dress to the party.", + "pos": "adjective", + "word_frequency": 18432 + }, + { + "word": "squeaky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Making a short, high-pitched sound or series of sounds.", + "example_sentence_english": "The old door had a squeaky hinge.", + "pos": "adjective", + "word_frequency": 18434 + }, + { + "word": "steamship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A ship propelled by a steam engine.", + "example_sentence_english": "The old steamship sailed across the ocean.", + "pos": "noun", + "word_frequency": 18436 + }, + { + "word": "tbsp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Tablespoon (a unit of measurement, or a large spoon).", + "example_sentence_english": "Add 2 tbsp of sugar to the mixture.", + "pos": "noun", + "word_frequency": 18439 + }, + { + "word": "telecast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to broadcast by television", + "example_sentence_english": "The event will be telecast live from the stadium.", + "pos": "verb", + "word_frequency": 18440 + }, + { + "word": "tenancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the occupation of land or property as a tenant", + "example_sentence_english": "The tenancy agreement specifies the duration of the lease.", + "pos": "noun", + "word_frequency": 18441 + }, + { + "word": "testimonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a formal statement testifying to someone's character or qualifications", + "example_sentence_english": "The company uses customer testimonials to promote its products.", + "pos": "noun", + "word_frequency": 18443 + }, + { + "word": "thyme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an aromatic herb", + "example_sentence_english": "Add a sprig of fresh thyme to the soup.", + "pos": "noun", + "word_frequency": 18445 + }, + { + "word": "toner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a liquid applied to the skin or a powder used in printers", + "example_sentence_english": "She applied facial toner after washing her face.", + "pos": "noun", + "word_frequency": 18446 + }, + { + "word": "trample", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tread on and crush", + "example_sentence_english": "The crowd began to trample the flowers in the park.", + "pos": "verb", + "word_frequency": 18447 + }, + { + "word": "trashy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of poor quality; worthless", + "example_sentence_english": "I don't like watching trashy reality TV shows.", + "pos": "adjective", + "word_frequency": 18449 + }, + { + "word": "trimester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of three months", + "example_sentence_english": "The first trimester of pregnancy is often the most challenging.", + "pos": "noun", + "word_frequency": 18451 + }, + { + "word": "unfaithful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not loyal or trustworthy", + "example_sentence_english": "She felt betrayed after discovering her partner had been unfaithful.", + "pos": "adjective", + "word_frequency": 18456 + }, + { + "word": "unholy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immoral or wicked", + "example_sentence_english": "The noise from the construction site was an unholy racket.", + "pos": "adjective", + "word_frequency": 18457 + }, + { + "word": "unregulated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not subject to regulation or control", + "example_sentence_english": "The unregulated market led to many financial problems.", + "pos": "adjective", + "word_frequency": 18458 + }, + { + "word": "unscrupulous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing no moral principles; not honest or fair", + "example_sentence_english": "He was an unscrupulous businessman who would do anything to make a profit.", + "pos": "adjective", + "word_frequency": 18459 + }, + { + "word": "unwittingly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without being aware; unintentionally", + "example_sentence_english": "She unwittingly revealed the secret during the conversation.", + "pos": "adverb", + "word_frequency": 18460 + }, + { + "word": "upland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of high or hilly land", + "example_sentence_english": "The sheep graze on the green uplands during the summer.", + "pos": "noun", + "word_frequency": 18461 + }, + { + "word": "verbatim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in exactly the same words as were used originally", + "example_sentence_english": "She repeated his instructions verbatim to ensure accuracy.", + "pos": "adverb", + "word_frequency": 18464 + }, + { + "word": "voiceover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece of narration in a movie or broadcast, not accompanied by an image of the speaker", + "example_sentence_english": "The documentary featured a famous actor doing the voiceover.", + "pos": "noun", + "word_frequency": 18468 + }, + { + "word": "yawn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to open one's mouth wide and inhale deeply due to tiredness or boredom", + "example_sentence_english": "He couldn't stop yawning during the boring lecture.", + "pos": "verb", + "word_frequency": 18469 + }, + { + "word": "adrift", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a boat or ship) unmoored and drifting", + "example_sentence_english": "The small boat was found adrift in the middle of the ocean.", + "pos": "adjective", + "word_frequency": 18473 + }, + { + "word": "aegis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the protection, backing, or support of a particular person or organization", + "example_sentence_english": "The project was launched under the aegis of the United Nations.", + "pos": "noun", + "word_frequency": 18474 + }, + { + "word": "almanac", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an annual calendar containing important dates and statistical information", + "example_sentence_english": "The farmer consulted his almanac for the best planting dates.", + "pos": "noun", + "word_frequency": 18478 + }, + { + "word": "aloe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a succulent plant, often used in skin products", + "example_sentence_english": "She applied aloe vera gel to soothe her sunburn.", + "pos": "noun", + "word_frequency": 18479 + }, + { + "word": "amphibious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to live both on land and in water", + "example_sentence_english": "Frogs are amphibious creatures.", + "pos": "adjective", + "word_frequency": 18480 + }, + { + "word": "analyzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or person that analyzes", + "example_sentence_english": "The gas analyzer detected a leak.", + "pos": "noun", + "word_frequency": 18481 + }, + { + "word": "ancillary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providing necessary support to the primary activities", + "example_sentence_english": "The hospital provides ancillary services like catering and cleaning.", + "pos": "adjective", + "word_frequency": 18482 + }, + { + "word": "anesthetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that induces insensitivity to pain", + "example_sentence_english": "The dentist gave me a local anesthetic.", + "pos": "noun", + "word_frequency": 18483 + }, + { + "word": "antiquated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "old-fashioned or outdated", + "example_sentence_english": "The factory uses antiquated machinery.", + "pos": "adjective", + "word_frequency": 18486 + }, + { + "word": "averse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a strong dislike or opposition to something", + "example_sentence_english": "He is not averse to hard work.", + "pos": "adjective", + "word_frequency": 18490 + }, + { + "word": "beagle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, short-legged hound", + "example_sentence_english": "My neighbor has a friendly beagle.", + "pos": "noun", + "word_frequency": 18492 + }, + { + "word": "biceps", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large muscle in the upper arm", + "example_sentence_english": "He flexed his biceps to show off his strength.", + "pos": "noun", + "word_frequency": 18495 + }, + { + "word": "blindfold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cover someone's eyes with a piece of cloth", + "example_sentence_english": "They blindfolded him before the surprise party.", + "pos": "verb", + "word_frequency": 18497 + }, + { + "word": "boomerang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a curved flat piece of wood that can be thrown so as to return to the thrower", + "example_sentence_english": "The plan might boomerang and cause more problems.", + "pos": "noun", + "word_frequency": 18498 + }, + { + "word": "brim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the projecting edge of a hat or the very top edge of a container", + "example_sentence_english": "The cup was filled to the brim with coffee.", + "pos": "noun", + "word_frequency": 18502 + }, + { + "word": "calligraphy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decorative handwriting or handwritten lettering", + "example_sentence_english": "She practices calligraphy as a hobby.", + "pos": "noun", + "word_frequency": 18504 + }, + { + "word": "cauldron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large metal pot for cooking over an open fire", + "example_sentence_english": "The witches stirred their potion in a large cauldron.", + "pos": "noun", + "word_frequency": 18507 + }, + { + "word": "celebratory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressing praise or celebration", + "example_sentence_english": "They had a celebratory dinner after the graduation.", + "pos": "adjective", + "word_frequency": 18508 + }, + { + "word": "chalet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wooden house or cottage with overhanging eaves, typically found in the Alps", + "example_sentence_english": "We rented a cozy chalet for our ski trip.", + "pos": "noun", + "word_frequency": 18510 + }, + { + "word": "childless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without children", + "example_sentence_english": "The couple remained childless throughout their lives.", + "pos": "adjective", + "word_frequency": 18512 + }, + { + "word": "cleanser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance used for cleaning", + "example_sentence_english": "She uses a gentle facial cleanser every morning.", + "pos": "noun", + "word_frequency": 18513 + }, + { + "word": "colossus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a statue of gigantic size and proportions", + "example_sentence_english": "The new skyscraper is a colossus dominating the city skyline.", + "pos": "noun", + "word_frequency": 18516 + }, + { + "word": "conductive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the property of conducting heat or electricity", + "example_sentence_english": "Copper is a highly conductive metal.", + "pos": "adjective", + "word_frequency": 18517 + }, + { + "word": "congregational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a congregation or assembly", + "example_sentence_english": "The church has a congregational style of governance.", + "pos": "adjective", + "word_frequency": 18519 + }, + { + "word": "corral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an enclosure for livestock", + "example_sentence_english": "The cowboys herded the cattle into the corral.", + "pos": "noun", + "word_frequency": 18521 + }, + { + "word": "cortical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the outer layer of an organ, especially the brain", + "example_sentence_english": "The study examined the cortical activity during sleep.", + "pos": "adjective", + "word_frequency": 18522 + }, + { + "word": "cremation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the disposal of a dead person's body by burning it to ashes", + "example_sentence_english": "The family chose cremation over burial.", + "pos": "noun", + "word_frequency": 18524 + }, + { + "word": "curricular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a curriculum", + "example_sentence_english": "The school is reviewing its extracurricular and curricular activities.", + "pos": "adjective", + "word_frequency": 18526 + }, + { + "word": "dermatologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a doctor who specializes in skin conditions", + "example_sentence_english": "She made an appointment with a dermatologist for her rash.", + "pos": "noun", + "word_frequency": 18527 + }, + { + "word": "detonation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of causing a bomb or explosive device to explode", + "example_sentence_english": "The controlled detonation of the old building was scheduled for noon.", + "pos": "noun", + "word_frequency": 18528 + }, + { + "word": "deviate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depart from an established course or standard", + "example_sentence_english": "We should not deviate from the original plan.", + "pos": "verb", + "word_frequency": 18530 + }, + { + "word": "devolution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the transfer or delegation of power to a lower level", + "example_sentence_english": "The government proposed further devolution of powers to the regions.", + "pos": "noun", + "word_frequency": 18531 + }, + { + "word": "diode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a semiconductor device allowing current flow in one direction", + "example_sentence_english": "A diode is used to convert AC current to DC current.", + "pos": "noun", + "word_frequency": 18533 + }, + { + "word": "downer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that makes you feel unhappy or depressed", + "example_sentence_english": "The news about the job cuts was a real downer.", + "pos": "noun", + "word_frequency": 18537 + }, + { + "word": "dribble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let liquid fall in small drops; to move a ball by short kicks or bounces", + "example_sentence_english": "The baby started to dribble milk down his chin.", + "pos": "verb", + "word_frequency": 18539 + }, + { + "word": "dutchman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man from the Netherlands", + "example_sentence_english": "The Dutchman explained the local customs to the tourists.", + "pos": "noun", + "word_frequency": 18540 + }, + { + "word": "earbud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small earphone that fits inside the ear", + "example_sentence_english": "She put in her earbuds to listen to music on the train.", + "pos": "noun", + "word_frequency": 18543 + }, + { + "word": "egalitarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "believing in or based on the principle that all people are equal", + "example_sentence_english": "The new policy aims to create a more egalitarian society.", + "pos": "adjective", + "word_frequency": 18544 + }, + { + "word": "endocrine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to glands that secrete hormones directly into the blood", + "example_sentence_english": "The endocrine system plays a crucial role in regulating metabolism.", + "pos": "adjective", + "word_frequency": 18545 + }, + { + "word": "energize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give energy or enthusiasm to", + "example_sentence_english": "The coffee helped to energize her for the long day ahead.", + "pos": "verb", + "word_frequency": 18546 + }, + { + "word": "epithelial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the thin tissue forming the outer layer of a body's surface", + "example_sentence_english": "The skin is covered by epithelial tissue.", + "pos": "adjective", + "word_frequency": 18548 + }, + { + "word": "ester", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organic compound formed from an acid and an alcohol", + "example_sentence_english": "Many fruits get their distinctive smells from esters.", + "pos": "noun", + "word_frequency": 18551 + }, + { + "word": "excruciating", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intensely painful; mentally agonizing", + "example_sentence_english": "The pain in his leg was excruciating.", + "pos": "adjective", + "word_frequency": 18553 + }, + { + "word": "fateful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having far-reaching and often disastrous consequences", + "example_sentence_english": "It was a fateful decision that changed the course of history.", + "pos": "adjective", + "word_frequency": 18554 + }, + { + "word": "fedora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft felt hat with a creased crown and a soft brim", + "example_sentence_english": "He wore a stylish fedora to complete his outfit.", + "pos": "noun", + "word_frequency": 18555 + }, + { + "word": "flak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strong criticism; anti-aircraft fire", + "example_sentence_english": "The politician received a lot of flak for his controversial remarks.", + "pos": "noun", + "word_frequency": 18559 + }, + { + "word": "flamboyant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showy, ostentatious", + "example_sentence_english": "His flamboyant style always made him stand out in a crowd.", + "pos": "adjective", + "word_frequency": 18560 + }, + { + "word": "flamingo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of wading bird", + "example_sentence_english": "The pink flamingo stood gracefully on one leg in the shallow water.", + "pos": "noun", + "word_frequency": 18561 + }, + { + "word": "flutter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move with quick, light, irregular motions", + "example_sentence_english": "The butterflies began to flutter their wings as the sun came out.", + "pos": "verb", + "word_frequency": 18562 + }, + { + "word": "foodie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is very interested in food", + "example_sentence_english": "As a true foodie, she always knows the best restaurants in town.", + "pos": "noun", + "word_frequency": 18563 + }, + { + "word": "foolishness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of good sense or judgment", + "example_sentence_english": "His foolishness led him to make a very bad decision.", + "pos": "noun", + "word_frequency": 18564 + }, + { + "word": "foundational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving as a base or foundation", + "example_sentence_english": "These foundational principles are essential for understanding the subject.", + "pos": "adjective", + "word_frequency": 18566 + }, + { + "word": "fuzz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mass of fine, light hairs or fibers", + "example_sentence_english": "There was a layer of dust and fuzz under the bed.", + "pos": "noun", + "word_frequency": 18568 + }, + { + "word": "gout", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a form of arthritis", + "example_sentence_english": "He suffered from a painful attack of gout in his big toe.", + "pos": "noun", + "word_frequency": 18571 + }, + { + "word": "hepatic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the liver", + "example_sentence_english": "The doctor ordered tests to check his hepatic function.", + "pos": "adjective", + "word_frequency": 18576 + }, + { + "word": "homegrown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grown or produced in one's own garden or country", + "example_sentence_english": "We enjoyed the delicious homegrown tomatoes from our garden.", + "pos": "adjective", + "word_frequency": 18580 + }, + { + "word": "hoof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the horny part of the foot of an ungulate mammal", + "example_sentence_english": "The horse's hoof made a clip-clop sound on the pavement.", + "pos": "noun", + "word_frequency": 18581 + }, + { + "word": "housemate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person with whom one shares a house", + "example_sentence_english": "My housemate and I often cook dinner together.", + "pos": "noun", + "word_frequency": 18583 + }, + { + "word": "hydrocarbon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organic compound consisting entirely of hydrogen and carbon", + "example_sentence_english": "Petroleum is a complex mixture of various hydrocarbons.", + "pos": "noun", + "word_frequency": 18586 + }, + { + "word": "impala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of antelope", + "example_sentence_english": "A herd of impala grazed peacefully on the savanna.", + "pos": "noun", + "word_frequency": 18588 + }, + { + "word": "impurity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being impure; a substance that makes something impure", + "example_sentence_english": "The water filter removes impurities from the tap water.", + "pos": "noun", + "word_frequency": 18589 + }, + { + "word": "incognito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having one's true identity concealed", + "example_sentence_english": "The celebrity traveled incognito to avoid the paparazzi.", + "pos": "adjective", + "word_frequency": 18590 + }, + { + "word": "indestructible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not able to be destroyed", + "example_sentence_english": "The superhero seemed to have an indestructible shield.", + "pos": "adjective", + "word_frequency": 18591 + }, + { + "word": "innocuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not harmful or offensive", + "example_sentence_english": "The snake was innocuous, posing no threat to humans.", + "pos": "adjective", + "word_frequency": 18592 + }, + { + "word": "insofar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to the extent that", + "example_sentence_english": "Insofar as I understand the situation, we are making good progress.", + "pos": "adverb", + "word_frequency": 18593 + }, + { + "word": "institut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "institute (often used in names of organizations)", + "example_sentence_english": "She is a researcher at the Pasteur Institut in Paris.", + "pos": "noun", + "word_frequency": 18594 + }, + { + "word": "irishman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man from Ireland", + "example_sentence_english": "My grandfather was a proud Irishman.", + "pos": "noun", + "word_frequency": 18595 + }, + { + "word": "ism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a distinctive doctrine, theory, system, or practice", + "example_sentence_english": "The debate often revolved around various political 'isms'.", + "pos": "noun", + "word_frequency": 18596 + }, + { + "word": "jest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a joke or witty remark", + "example_sentence_english": "His jest brought laughter to the room.", + "pos": "noun", + "word_frequency": 18600 + }, + { + "word": "leaky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a leak", + "example_sentence_english": "The leaky faucet dripped all night.", + "pos": "adjective", + "word_frequency": 18607 + }, + { + "word": "libido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual desire", + "example_sentence_english": "Freud's theories often discuss the concept of libido.", + "pos": "noun", + "word_frequency": 18611 + }, + { + "word": "lynx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wild cat with short tail and tufted ears", + "example_sentence_english": "The lynx is known for its keen eyesight.", + "pos": "noun", + "word_frequency": 18617 + }, + { + "word": "mage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a magician or sorcerer", + "example_sentence_english": "The powerful mage cast a spell.", + "pos": "noun", + "word_frequency": 18619 + }, + { + "word": "mainline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a principal route or system", + "example_sentence_english": "The train runs on the mainline.", + "pos": "noun", + "word_frequency": 18621 + }, + { + "word": "mainstay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chief support or prop", + "example_sentence_english": "She has been the mainstay of the team for years.", + "pos": "noun", + "word_frequency": 18622 + }, + { + "word": "mannequin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dummy used to display clothes", + "example_sentence_english": "The store displayed new outfits on the mannequins.", + "pos": "noun", + "word_frequency": 18623 + }, + { + "word": "marketable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be sold or marketed", + "example_sentence_english": "Her skills are highly marketable in today's job market.", + "pos": "adjective", + "word_frequency": 18624 + }, + { + "word": "masterful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing great skill or power", + "example_sentence_english": "He gave a masterful performance on the piano.", + "pos": "adjective", + "word_frequency": 18626 + }, + { + "word": "maximal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the greatest possible", + "example_sentence_english": "We aim for maximal efficiency in our operations.", + "pos": "adjective", + "word_frequency": 18628 + }, + { + "word": "mime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to act out without words", + "example_sentence_english": "He mimed drinking a glass of water.", + "pos": "verb", + "word_frequency": 18630 + }, + { + "word": "minivan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small van, typically for passengers", + "example_sentence_english": "They bought a minivan for their growing family.", + "pos": "noun", + "word_frequency": 18631 + }, + { + "word": "mistrust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lack of trust", + "example_sentence_english": "There was a deep mistrust between the two parties.", + "pos": "noun", + "word_frequency": 18632 + }, + { + "word": "moniker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a name or nickname", + "example_sentence_english": "He earned the moniker \"Speedy\" for his quick reflexes.", + "pos": "noun", + "word_frequency": 18633 + }, + { + "word": "multidisciplinary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "combining or involving several academic disciplines or professional specializations", + "example_sentence_english": "The project required a multidisciplinary approach.", + "pos": "adjective", + "word_frequency": 18636 + }, + { + "word": "mythological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of mythology or myths", + "example_sentence_english": "Dragons are mythological creatures.", + "pos": "adjective", + "word_frequency": 18637 + }, + { + "word": "nave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the central part of a church", + "example_sentence_english": "The congregation gathered in the nave of the cathedral.", + "pos": "noun", + "word_frequency": 18638 + }, + { + "word": "nib", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the point of a pen", + "example_sentence_english": "The pen's nib was bent, making it difficult to write.", + "pos": "noun", + "word_frequency": 18642 + }, + { + "word": "nonviolent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not involving violence", + "example_sentence_english": "They advocated for a nonviolent approach to protest.", + "pos": "adjective", + "word_frequency": 18643 + }, + { + "word": "palatable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pleasant to taste; acceptable or satisfactory", + "example_sentence_english": "The food was not very palatable, but we ate it anyway.", + "pos": "adjective", + "word_frequency": 18647 + }, + { + "word": "parishioner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a particular church parish", + "example_sentence_english": "The priest greeted each parishioner after the service.", + "pos": "noun", + "word_frequency": 18648 + }, + { + "word": "parkland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of land consisting of parks or open spaces", + "example_sentence_english": "The city council voted to preserve the parkland for public use.", + "pos": "noun", + "word_frequency": 18649 + }, + { + "word": "polarity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of having two opposite tendencies, opinions, or aspects", + "example_sentence_english": "There was a clear polarity between their political views.", + "pos": "noun", + "word_frequency": 18654 + }, + { + "word": "pompous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affectedly and irritatingly grand, solemn, or self-important", + "example_sentence_english": "His pompous attitude made him unpopular with his colleagues.", + "pos": "adjective", + "word_frequency": 18655 + }, + { + "word": "profanity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blasphemous or obscene language", + "example_sentence_english": "The movie was criticized for its excessive use of profanity.", + "pos": "noun", + "word_frequency": 18657 + }, + { + "word": "protrude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extend beyond or above a surface", + "example_sentence_english": "A sharp rock protruded from the ground.", + "pos": "verb", + "word_frequency": 18658 + }, + { + "word": "quack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make the characteristic harsh sound of a duck", + "example_sentence_english": "The duck began to quack loudly as we approached.", + "pos": "verb", + "word_frequency": 18661 + }, + { + "word": "regenerative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving regeneration, especially of tissue or a lost part", + "example_sentence_english": "Scientists are studying the regenerative properties of certain cells.", + "pos": "adjective", + "word_frequency": 18663 + }, + { + "word": "regroup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reorganize or reassemble, especially after a setback", + "example_sentence_english": "After the defeat, the team needed to regroup and plan their next strategy.", + "pos": "verb", + "word_frequency": 18664 + }, + { + "word": "reimburse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repay (a person who has spent or lost money)", + "example_sentence_english": "The company will reimburse you for your travel expenses.", + "pos": "verb", + "word_frequency": 18665 + }, + { + "word": "reinvent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change (something) so much that it appears to be entirely new", + "example_sentence_english": "She decided to reinvent herself after moving to a new city.", + "pos": "verb", + "word_frequency": 18666 + }, + { + "word": "repatriation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the return of someone to their own country", + "example_sentence_english": "The government organized the repatriation of its citizens from the war zone.", + "pos": "noun", + "word_frequency": 18668 + }, + { + "word": "requiem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mass for the repose of the souls of the dead", + "example_sentence_english": "Mozart's Requiem is a powerful and moving piece of music.", + "pos": "noun", + "word_frequency": 18669 + }, + { + "word": "ringer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that closely resembles another", + "example_sentence_english": "He's a dead ringer for his father.", + "pos": "noun", + "word_frequency": 18670 + }, + { + "word": "rollout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the introduction of a new product or service", + "example_sentence_english": "The company announced the rollout of its new smartphone next month.", + "pos": "noun", + "word_frequency": 18672 + }, + { + "word": "sari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a garment worn by Hindu women, consisting of a long strip of cloth draped around the body", + "example_sentence_english": "She wore a beautiful silk sari to the wedding.", + "pos": "noun", + "word_frequency": 18678 + }, + { + "word": "saucer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shallow dish, typically with a slight indentation in the center, on which a cup stands.", + "example_sentence_english": "He placed the teacup carefully on its saucer.", + "pos": "noun", + "word_frequency": 18680 + }, + { + "word": "scrappy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determined, feisty, or aggressive; consisting of or characterized by scraps.", + "example_sentence_english": "The scrappy team fought hard for every point.", + "pos": "adjective", + "word_frequency": 18681 + }, + { + "word": "serpentine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or like a snake or serpent; winding and twisting like a snake.", + "example_sentence_english": "The road followed a serpentine path up the mountain.", + "pos": "adjective", + "word_frequency": 18682 + }, + { + "word": "signup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of signing up for something; a registration.", + "example_sentence_english": "The signup for the new course is now open.", + "pos": "noun", + "word_frequency": 18685 + }, + { + "word": "skirmish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engage in a skirmish; to fight briefly or in a minor way.", + "example_sentence_english": "The two armies skirmished before the main battle.", + "pos": "verb", + "word_frequency": 18686 + }, + { + "word": "slough", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a swamp or marshy area; a piece of dead skin or tissue that has been shed.", + "example_sentence_english": "The explorers had to navigate through a muddy slough.", + "pos": "noun", + "word_frequency": 18687 + }, + { + "word": "solidify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make or become solid, firm, or strong.", + "example_sentence_english": "The concrete began to solidify quickly after it was poured.", + "pos": "verb", + "word_frequency": 18688 + }, + { + "word": "spearhead", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lead (an attack or movement); be the leader of.", + "example_sentence_english": "She was chosen to spearhead the new marketing campaign.", + "pos": "verb", + "word_frequency": 18689 + }, + { + "word": "spook", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frighten; unnerve.", + "example_sentence_english": "The sudden noise spooked the horses.", + "pos": "verb", + "word_frequency": 18690 + }, + { + "word": "stimulant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that raises levels of physiological or nervous activity in the body.", + "example_sentence_english": "Coffee is a common stimulant that helps people stay awake.", + "pos": "noun", + "word_frequency": 18691 + }, + { + "word": "stow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pack or store (an object) carefully and neatly in a particular place.", + "example_sentence_english": "Please stow your luggage in the overhead compartment.", + "pos": "verb", + "word_frequency": 18692 + }, + { + "word": "stylize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depict or treat in a mannered and nonrealistic style.", + "example_sentence_english": "The artist chose to stylize the figures in her painting.", + "pos": "verb", + "word_frequency": 18694 + }, + { + "word": "suffocate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "die or cause to die from lack of air or inability to breathe.", + "example_sentence_english": "The smoke caused him to suffocate.", + "pos": "verb", + "word_frequency": 18695 + }, + { + "word": "sumo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a form of Japanese wrestling in which a wrestler wins by forcing his opponent out of a ring or by making him touch the ground with any part of his body other than the soles of his feet.", + "example_sentence_english": "Sumo wrestling is a traditional Japanese sport.", + "pos": "noun", + "word_frequency": 18697 + }, + { + "word": "sympathize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feel or express sympathy.", + "example_sentence_english": "I sympathize with your difficult situation.", + "pos": "verb", + "word_frequency": 18701 + }, + { + "word": "tabernacle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fixed or movable habitation, typically of light construction; a place of worship.", + "example_sentence_english": "The ancient Israelites built a tabernacle as a portable sanctuary.", + "pos": "noun", + "word_frequency": 18702 + }, + { + "word": "tagline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a memorable phrase or slogan, especially one used in advertising or associated with a famous person or thing.", + "example_sentence_english": "The company's new tagline is very catchy.", + "pos": "noun", + "word_frequency": 18703 + }, + { + "word": "talisman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an object, typically an inscribed ring or stone, that is thought to have magic powers and to bring good luck.", + "example_sentence_english": "He carried a small stone as a good luck talisman.", + "pos": "noun", + "word_frequency": 18704 + }, + { + "word": "thirdly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the third place; as the third point.", + "example_sentence_english": "Firstly, we need a plan; secondly, we need resources; and thirdly, we need dedication.", + "pos": "adverb", + "word_frequency": 18706 + }, + { + "word": "tortilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thin, flat, round cake made from corn or wheat flour, eaten hot with savory fillings.", + "example_sentence_english": "I made tacos using corn tortillas.", + "pos": "noun", + "word_frequency": 18707 + }, + { + "word": "townhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tall, narrow, traditional row house, typically having three or more stories.", + "example_sentence_english": "They bought a beautiful townhouse in the city center.", + "pos": "noun", + "word_frequency": 18708 + }, + { + "word": "transferable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be transferred or moved from one place, person, or thing to another.", + "example_sentence_english": "This ticket is not transferable to another person.", + "pos": "adjective", + "word_frequency": 18709 + }, + { + "word": "transpire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occur; happen; (of a secret, etc.) be revealed.", + "example_sentence_english": "It later transpired that the information was false.", + "pos": "verb", + "word_frequency": 18710 + }, + { + "word": "truffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong-smelling underground fungus, considered a culinary delicacy; a soft candy made of chocolate, cocoa, and cream.", + "example_sentence_english": "The chef garnished the dish with fresh black truffle.", + "pos": "noun", + "word_frequency": 18714 + }, + { + "word": "tumultuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making a loud, confused noise; disorderly or noisy; excited, confused, or disorderly.", + "example_sentence_english": "The crowd gave the band a tumultuous welcome.", + "pos": "adjective", + "word_frequency": 18715 + }, + { + "word": "unclean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not clean; dirty; morally or ritually impure.", + "example_sentence_english": "The water was unclean and unsafe to drink.", + "pos": "adjective", + "word_frequency": 18717 + }, + { + "word": "unequivocally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that leaves no doubt; unambiguously.", + "example_sentence_english": "She stated unequivocally that she would not support the proposal.", + "pos": "adverb", + "word_frequency": 18718 + }, + { + "word": "unitary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forming a single or uniform entity.", + "example_sentence_english": "The country operates under a unitary system of government.", + "pos": "adjective", + "word_frequency": 18719 + }, + { + "word": "valkyrie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a female figure who chooses those who may die in battle and carries them to Valhalla", + "example_sentence_english": "In Norse mythology, a Valkyrie guides fallen warriors to Valhalla.", + "pos": "noun", + "word_frequency": 18722 + }, + { + "word": "vedic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Vedas or the period in which they were composed", + "example_sentence_english": "Ancient Vedic texts describe early Indian philosophy.", + "pos": "adjective", + "word_frequency": 18723 + }, + { + "word": "ventral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the belly or front side of an animal", + "example_sentence_english": "The fish has a distinctive ventral fin.", + "pos": "adjective", + "word_frequency": 18724 + }, + { + "word": "wad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small mass of soft material", + "example_sentence_english": "He pulled a wad of cash from his pocket.", + "pos": "noun", + "word_frequency": 18726 + }, + { + "word": "weirdly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a strange or unusual way", + "example_sentence_english": "The cat stared at me weirdly from under the bed.", + "pos": "adverb", + "word_frequency": 18728 + }, + { + "word": "whiplash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injury to the neck caused by a sudden, forceful jolt", + "example_sentence_english": "She suffered whiplash in the car accident.", + "pos": "noun", + "word_frequency": 18730 + }, + { + "word": "woodworking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the activity or skill of making items from wood", + "example_sentence_english": "My grandfather enjoys woodworking in his spare time.", + "pos": "noun", + "word_frequency": 18731 + }, + { + "word": "worshipper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who worships a god or religious figure", + "example_sentence_english": "Many worshippers gathered at the temple for the ceremony.", + "pos": "noun", + "word_frequency": 18732 + }, + { + "word": "xenophobia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intense or irrational dislike or fear of people from other countries", + "example_sentence_english": "The rise of xenophobia is a concern in many societies.", + "pos": "noun", + "word_frequency": 18733 + }, + { + "word": "xenophobic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing a dislike or fear of people from other countries", + "example_sentence_english": "His xenophobic comments caused a public outcry.", + "pos": "adjective", + "word_frequency": 18734 + }, + { + "word": "yakuza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a Japanese organized crime syndicate", + "example_sentence_english": "The film depicted the brutal world of the Yakuza.", + "pos": "noun", + "word_frequency": 18735 + }, + { + "word": "acreage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of land, typically measured in acres", + "example_sentence_english": "The farm covers a vast acreage of land.", + "pos": "noun", + "word_frequency": 18741 + }, + { + "word": "albino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or animal with a congenital absence of pigment in the skin and hair (which are white) and the eyes (which are typically pink)", + "example_sentence_english": "The albino rabbit had striking red eyes.", + "pos": "noun", + "word_frequency": 18743 + }, + { + "word": "antichrist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a great enemy of Christ expected to appear before the end of the world", + "example_sentence_english": "Some interpretations of prophecy speak of the coming of the Antichrist.", + "pos": "noun", + "word_frequency": 18744 + }, + { + "word": "aquaculture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the rearing of aquatic animals or the cultivation of aquatic plants for food", + "example_sentence_english": "Aquaculture is becoming an important source of seafood.", + "pos": "noun", + "word_frequency": 18746 + }, + { + "word": "arrears", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money that is owed and should have been paid earlier", + "example_sentence_english": "He was several months in arrears with his rent.", + "pos": "noun", + "word_frequency": 18748 + }, + { + "word": "asp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, venomous snake of North Africa and Europe", + "example_sentence_english": "Cleopatra is said to have died from the bite of an asp.", + "pos": "noun", + "word_frequency": 18751 + }, + { + "word": "asterisk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a symbol (*) used to mark text or indicate a footnote", + "example_sentence_english": "An asterisk often indicates a note at the bottom of the page.", + "pos": "noun", + "word_frequency": 18752 + }, + { + "word": "asymmetrical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having parts that fail to correspond to one another in shape, size, or arrangement; lacking symmetry", + "example_sentence_english": "The building had an interesting asymmetrical design.", + "pos": "adjective", + "word_frequency": 18753 + }, + { + "word": "augmentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of making or becoming greater in size or amount", + "example_sentence_english": "The company announced an augmentation of its workforce.", + "pos": "noun", + "word_frequency": 18755 + }, + { + "word": "azalea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flowering shrub of the rhododendron family", + "example_sentence_english": "The garden was vibrant with blooming azaleas.", + "pos": "noun", + "word_frequency": 18757 + }, + { + "word": "barter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange (goods or services) for other goods or services without using money", + "example_sentence_english": "In ancient times, people would barter goods instead of using currency.", + "pos": "verb", + "word_frequency": 18759 + }, + { + "word": "bigoted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudiced, intolerant", + "example_sentence_english": "His bigoted remarks offended everyone in the room.", + "pos": "adjective", + "word_frequency": 18763 + }, + { + "word": "bistro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, inexpensive restaurant", + "example_sentence_english": "We had a lovely dinner at the new bistro downtown.", + "pos": "noun", + "word_frequency": 18764 + }, + { + "word": "bod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "body (informal)", + "example_sentence_english": "He's got a really fit bod from all his training.", + "pos": "noun", + "word_frequency": 18765 + }, + { + "word": "bonanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden large amount of something good", + "example_sentence_english": "The discovery of gold led to a mining bonanza in the region.", + "pos": "noun", + "word_frequency": 18766 + }, + { + "word": "bosom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman's chest; the emotional center", + "example_sentence_english": "She held the secret close to her bosom.", + "pos": "noun", + "word_frequency": 18767 + }, + { + "word": "cannibal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who eats human flesh", + "example_sentence_english": "The explorers were warned about the possibility of encountering cannibals.", + "pos": "noun", + "word_frequency": 18771 + }, + { + "word": "centurion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Roman army officer", + "example_sentence_english": "The centurion led his legion into battle.", + "pos": "noun", + "word_frequency": 18773 + }, + { + "word": "compendium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection of concise information", + "example_sentence_english": "The book is a compendium of ancient myths.", + "pos": "noun", + "word_frequency": 18777 + }, + { + "word": "complacency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of uncritical satisfaction with oneself or one's achievements", + "example_sentence_english": "His complacency led to him underestimating the challenge.", + "pos": "noun", + "word_frequency": 18778 + }, + { + "word": "confessional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to confession, especially of sins or personal beliefs", + "example_sentence_english": "She wrote a confessional poem about her struggles.", + "pos": "adjective", + "word_frequency": 18779 + }, + { + "word": "conservancy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organization or effort for the preservation of something", + "example_sentence_english": "The land conservancy worked to protect the local wetlands.", + "pos": "noun", + "word_frequency": 18780 + }, + { + "word": "contentment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of happiness and satisfaction", + "example_sentence_english": "He found contentment in his simple life.", + "pos": "noun", + "word_frequency": 18781 + }, + { + "word": "convoluted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely complex and difficult to follow", + "example_sentence_english": "The plot of the movie was so convoluted that I got lost.", + "pos": "adjective", + "word_frequency": 18782 + }, + { + "word": "counterproductive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the opposite of the desired effect", + "example_sentence_english": "Arguing with him would be counterproductive.", + "pos": "adjective", + "word_frequency": 18783 + }, + { + "word": "crayon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a stick of colored wax used for drawing", + "example_sentence_english": "The child drew a picture with a red crayon.", + "pos": "noun", + "word_frequency": 18785 + }, + { + "word": "cremate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispose of a dead person's body by burning it to ashes", + "example_sentence_english": "Many people choose to cremate their loved ones.", + "pos": "verb", + "word_frequency": 18786 + }, + { + "word": "crossbow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medieval weapon consisting of a bow fixed across a wooden stock", + "example_sentence_english": "The hunter used a crossbow to shoot the target.", + "pos": "noun", + "word_frequency": 18788 + }, + { + "word": "crux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the most important or difficult part of a problem or issue", + "example_sentence_english": "The crux of the argument was whether the evidence was admissible.", + "pos": "noun", + "word_frequency": 18789 + }, + { + "word": "cusp", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a point of transition or change", + "example_sentence_english": "She was on the cusp of a major career breakthrough.", + "pos": "noun", + "word_frequency": 18791 + }, + { + "word": "decode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convert (a coded message) into intelligible language", + "example_sentence_english": "The spy tried to decode the secret message.", + "pos": "verb", + "word_frequency": 18793 + }, + { + "word": "defenseless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without defense; vulnerable", + "example_sentence_english": "The small animal was defenseless against the predator.", + "pos": "adjective", + "word_frequency": 18794 + }, + { + "word": "defiantly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a manner that shows open resistance or bold disobedience", + "example_sentence_english": "She defiantly refused to apologize for her actions.", + "pos": "adverb", + "word_frequency": 18795 + }, + { + "word": "delicately", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a careful or gentle way", + "example_sentence_english": "He delicately placed the fragile vase on the shelf.", + "pos": "adverb", + "word_frequency": 18797 + }, + { + "word": "deluge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a severe flood; an overwhelming quantity of something", + "example_sentence_english": "The town was hit by a deluge of rain.", + "pos": "noun", + "word_frequency": 18798 + }, + { + "word": "desist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stop doing something", + "example_sentence_english": "The police ordered the protesters to desist from blocking the road.", + "pos": "verb", + "word_frequency": 18799 + }, + { + "word": "diffraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process by which a beam of light or other system of waves is spread out as a result of passing through a narrow aperture or across an edge, typically accompanied by interference between the wave components", + "example_sentence_english": "Light diffraction causes the rainbow patterns seen on a CD.", + "pos": "noun", + "word_frequency": 18801 + }, + { + "word": "dilapidated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a state of disrepair or ruin as a result of age or neglect", + "example_sentence_english": "The old barn was dilapidated and unsafe.", + "pos": "adjective", + "word_frequency": 18802 + }, + { + "word": "dismissive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing that something is unworthy of consideration", + "example_sentence_english": "She gave a dismissive wave of her hand.", + "pos": "adjective", + "word_frequency": 18803 + }, + { + "word": "doable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possible to do; feasible", + "example_sentence_english": "The task seems difficult, but it's definitely doable.", + "pos": "adjective", + "word_frequency": 18804 + }, + { + "word": "doorbell", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bell on the outside of a door that a visitor presses to alert the occupants", + "example_sentence_english": "I heard the doorbell ring, so I went to open the door.", + "pos": "noun", + "word_frequency": 18805 + }, + { + "word": "drool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "let saliva flow from the mouth", + "example_sentence_english": "The baby started to drool when he saw the bottle.", + "pos": "verb", + "word_frequency": 18806 + }, + { + "word": "eastbound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traveling or leading towards the east", + "example_sentence_english": "The eastbound train was delayed by an hour.", + "pos": "adjective", + "word_frequency": 18808 + }, + { + "word": "emir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a title of various Muslim rulers, especially in the Middle East", + "example_sentence_english": "The emir ruled his territory with absolute authority.", + "pos": "noun", + "word_frequency": 18809 + }, + { + "word": "emu", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, flightless, fast-running Australian bird resembling an ostrich", + "example_sentence_english": "An emu is the second-largest living bird by height.", + "pos": "noun", + "word_frequency": 18810 + }, + { + "word": "eucharist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the Christian ceremony commemorating the Last Supper, in which bread and wine are consecrated and consumed", + "example_sentence_english": "Catholics receive the Eucharist during Mass.", + "pos": "noun", + "word_frequency": 18812 + }, + { + "word": "exclaim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cry out suddenly in surprise, anger, or excitement", + "example_sentence_english": "She would often exclaim with delight when she saw her grandchildren.", + "pos": "verb", + "word_frequency": 18813 + }, + { + "word": "expedite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make (an action or process) happen sooner or be accomplished more quickly", + "example_sentence_english": "We need to expedite the delivery of these urgent documents.", + "pos": "verb", + "word_frequency": 18814 + }, + { + "word": "extracellular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "situated or occurring outside the cell", + "example_sentence_english": "The extracellular matrix provides structural support to tissues.", + "pos": "adjective", + "word_frequency": 18815 + }, + { + "word": "fastball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pitch thrown at high speed in baseball", + "example_sentence_english": "The pitcher threw a ninety-mile-per-hour fastball.", + "pos": "noun", + "word_frequency": 18817 + }, + { + "word": "fearsome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspiring fear or awe", + "example_sentence_english": "The dragon was a fearsome creature in the legend.", + "pos": "adjective", + "word_frequency": 18818 + }, + { + "word": "feathered", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having feathers", + "example_sentence_english": "The bird had beautiful feathered wings.", + "pos": "adjective", + "word_frequency": 18819 + }, + { + "word": "fertilization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of fertilizing an egg, female animal, or plant, involving the fusion of male and female gametes to form a zygote", + "example_sentence_english": "Pollination is necessary for the fertilization of many plants.", + "pos": "noun", + "word_frequency": 18820 + }, + { + "word": "fervor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intense and passionate feeling", + "example_sentence_english": "The crowd cheered with great fervor for their team.", + "pos": "noun", + "word_frequency": 18821 + }, + { + "word": "fiduciary", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "involving trust, especially with regard to the relationship between a trustee and a beneficiary", + "example_sentence_english": "A lawyer has a fiduciary duty to their clients.", + "pos": "adjective", + "word_frequency": 18822 + }, + { + "word": "flax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant of the linen family, cultivated for its oil-rich seeds and for its fibers, which are used to make linen", + "example_sentence_english": "Linen fabric is made from the fibers of the flax plant.", + "pos": "noun", + "word_frequency": 18823 + }, + { + "word": "fractional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of or relating to a fraction or fractions; very small or tiny", + "example_sentence_english": "The recipe calls for a fractional amount of yeast.", + "pos": "adjective", + "word_frequency": 18824 + }, + { + "word": "freighter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a ship or aircraft used for carrying cargo", + "example_sentence_english": "The freighter was loaded with containers for its long voyage.", + "pos": "noun", + "word_frequency": 18825 + }, + { + "word": "frosting", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sweet, creamy glaze made of sugar, butter, and milk or water, used to cover or decorate cakes or cookies", + "example_sentence_english": "She put pink frosting on the birthday cake.", + "pos": "noun", + "word_frequency": 18826 + }, + { + "word": "heartwarming", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "producing a feeling of pleasure and contentment", + "example_sentence_english": "It was a heartwarming story about kindness and generosity.", + "pos": "adjective", + "word_frequency": 18835 + }, + { + "word": "heretic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person believing in or practicing religious heresy", + "example_sentence_english": "He was accused of being a heretic for questioning church doctrines.", + "pos": "noun", + "word_frequency": 18837 + }, + { + "word": "hiccup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sudden, involuntary contraction of the diaphragm and respiratory organs, causing a characteristic sound", + "example_sentence_english": "I had a hiccup during my presentation.", + "pos": "noun", + "word_frequency": 18838 + }, + { + "word": "hiss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make a sharp, sibilant sound as of the letter s", + "example_sentence_english": "The snake began to hiss loudly.", + "pos": "verb", + "word_frequency": 18839 + }, + { + "word": "holographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to holography", + "example_sentence_english": "The security feature on the banknote was holographic.", + "pos": "adjective", + "word_frequency": 18840 + }, + { + "word": "impediment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hindrance or obstruction", + "example_sentence_english": "His stutter was an impediment to his public speaking career.", + "pos": "noun", + "word_frequency": 18843 + }, + { + "word": "importation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of bringing goods into a country", + "example_sentence_english": "The importation of foreign cars has increased significantly.", + "pos": "noun", + "word_frequency": 18844 + }, + { + "word": "inactivity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lack of activity or movement", + "example_sentence_english": "Prolonged inactivity can lead to health problems.", + "pos": "noun", + "word_frequency": 18845 + }, + { + "word": "incendiary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to stir up conflict; designed to cause fires", + "example_sentence_english": "The politician's incendiary remarks sparked a heated debate.", + "pos": "adjective", + "word_frequency": 18846 + }, + { + "word": "individualize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make individual or distinct", + "example_sentence_english": "Teachers try to individualize the learning experience for each student.", + "pos": "verb", + "word_frequency": 18847 + }, + { + "word": "insistent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanding something forcefully; persistent", + "example_sentence_english": "Her insistent knocking eventually woke him up.", + "pos": "adjective", + "word_frequency": 18848 + }, + { + "word": "instigate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bring about or initiate (an action or event)", + "example_sentence_english": "He was accused of trying to instigate a rebellion.", + "pos": "verb", + "word_frequency": 18849 + }, + { + "word": "intelligently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an intelligent manner", + "example_sentence_english": "She responded to the complex question intelligently.", + "pos": "adverb", + "word_frequency": 18850 + }, + { + "word": "intermittently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at irregular intervals; not continuously or steadily", + "example_sentence_english": "The rain fell intermittently throughout the day.", + "pos": "adverb", + "word_frequency": 18851 + }, + { + "word": "jag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sharp projection; a sudden burst of activity", + "example_sentence_english": "He went on a jag of spending after winning the lottery.", + "pos": "noun", + "word_frequency": 18853 + }, + { + "word": "kidnapper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who kidnaps someone", + "example_sentence_english": "The police arrested the kidnapper after a long chase.", + "pos": "noun", + "word_frequency": 18857 + }, + { + "word": "leisurely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a relaxed and unhurried way", + "example_sentence_english": "They walked leisurely through the park.", + "pos": "adverb", + "word_frequency": 18861 + }, + { + "word": "liturgical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to liturgy or public worship", + "example_sentence_english": "The choir performed a beautiful liturgical chant.", + "pos": "adjective", + "word_frequency": 18864 + }, + { + "word": "lubricant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used to reduce friction", + "example_sentence_english": "Oil is used as a lubricant in engines.", + "pos": "noun", + "word_frequency": 18866 + }, + { + "word": "macroeconomic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the branch of economics concerned with large-scale factors", + "example_sentence_english": "The government is focused on macroeconomic stability.", + "pos": "adjective", + "word_frequency": 18869 + }, + { + "word": "masquerade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a false show or pretense; a costume ball", + "example_sentence_english": "His kindness was just a masquerade for his true intentions.", + "pos": "noun", + "word_frequency": 18872 + }, + { + "word": "materialism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tendency to consider material possessions and physical comfort as more important than spiritual values", + "example_sentence_english": "He criticized modern society for its excessive materialism.", + "pos": "noun", + "word_frequency": 18873 + }, + { + "word": "meager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of something provided or available) lacking in quantity or quality", + "example_sentence_english": "They survived on a meager diet of bread and water.", + "pos": "adjective", + "word_frequency": 18876 + }, + { + "word": "melodrama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sensational dramatic piece with exaggerated characters and exciting events", + "example_sentence_english": "The play was a classic melodrama, full of over-the-top emotions.", + "pos": "noun", + "word_frequency": 18877 + }, + { + "word": "mistreat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat (a person or animal) badly", + "example_sentence_english": "It's wrong to mistreat animals.", + "pos": "verb", + "word_frequency": 18879 + }, + { + "word": "motherland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one's native country", + "example_sentence_english": "He felt a deep longing for his motherland.", + "pos": "noun", + "word_frequency": 18883 + }, + { + "word": "narcissism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive self-admiration", + "example_sentence_english": "His extreme narcissism made it difficult for him to empathize with others.", + "pos": "noun", + "word_frequency": 18888 + }, + { + "word": "observant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quick to notice things", + "example_sentence_english": "She is very observant and rarely misses a detail.", + "pos": "adjective", + "word_frequency": 18891 + }, + { + "word": "ostrich", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large flightless bird", + "example_sentence_english": "The ostrich is the largest living bird.", + "pos": "noun", + "word_frequency": 18892 + }, + { + "word": "overcast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with clouds", + "example_sentence_english": "The sky was overcast, threatening rain.", + "pos": "adjective", + "word_frequency": 18893 + }, + { + "word": "overcrowding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being too crowded", + "example_sentence_english": "Overcrowding in cities leads to various social problems.", + "pos": "noun", + "word_frequency": 18894 + }, + { + "word": "paragon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a model of excellence", + "example_sentence_english": "He was considered a paragon of virtue by his peers.", + "pos": "noun", + "word_frequency": 18895 + }, + { + "word": "parochial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a limited or narrow outlook", + "example_sentence_english": "Her views were criticized for being too parochial.", + "pos": "adjective", + "word_frequency": 18896 + }, + { + "word": "perplex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse or puzzle", + "example_sentence_english": "The complex instructions perplexed the new employee.", + "pos": "verb", + "word_frequency": 18897 + }, + { + "word": "persistently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a persistent manner", + "example_sentence_english": "She persistently pursued her goals despite the setbacks.", + "pos": "adverb", + "word_frequency": 18898 + }, + { + "word": "plankton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "microscopic organisms floating in water", + "example_sentence_english": "Whales feed on tiny plankton in the ocean.", + "pos": "noun", + "word_frequency": 18902 + }, + { + "word": "prune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trim or cut back", + "example_sentence_english": "You should prune the rose bushes in the spring.", + "pos": "verb", + "word_frequency": 18905 + }, + { + "word": "punter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a customer or a gambler", + "example_sentence_english": "The pub was full of punters enjoying their drinks.", + "pos": "noun", + "word_frequency": 18906 + }, + { + "word": "redact", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to censor or obscure parts of a text", + "example_sentence_english": "The document was heavily redacted before its release.", + "pos": "verb", + "word_frequency": 18912 + }, + { + "word": "respiration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of breathing", + "example_sentence_english": "The doctor checked the patient's respiration rate.", + "pos": "noun", + "word_frequency": 18913 + }, + { + "word": "retract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull back or withdraw", + "example_sentence_english": "He had to retract his statement after new evidence emerged.", + "pos": "verb", + "word_frequency": 18914 + }, + { + "word": "ruff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a frilled collar or a bird species", + "example_sentence_english": "The Elizabethan costume featured a large ruff around the neck.", + "pos": "noun", + "word_frequency": 18915 + }, + { + "word": "rump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the hind part of an animal or person", + "example_sentence_english": "The butcher prepared a delicious rump roast.", + "pos": "noun", + "word_frequency": 18916 + }, + { + "word": "secondhand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "used; not new", + "example_sentence_english": "She bought a secondhand car that was still in good condition.", + "pos": "adjective", + "word_frequency": 18922 + }, + { + "word": "shackle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a metal link or ring, used to fasten a prisoner", + "example_sentence_english": "The prisoner was held in shackles.", + "pos": "noun", + "word_frequency": 18923 + }, + { + "word": "shard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece of broken glass, pottery, or similar material", + "example_sentence_english": "He found a shard of pottery in the ancient ruins.", + "pos": "noun", + "word_frequency": 18924 + }, + { + "word": "ska", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of Jamaican music", + "example_sentence_english": "Ska music originated in Jamaica in the late 1950s.", + "pos": "noun", + "word_frequency": 18927 + }, + { + "word": "smog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fog or haze intensified by smoke or other atmospheric pollutants", + "example_sentence_english": "The city was covered in a thick layer of smog.", + "pos": "noun", + "word_frequency": 18928 + }, + { + "word": "somber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark or dull in color or tone; gloomy", + "example_sentence_english": "The mood in the room was somber after the bad news.", + "pos": "adjective", + "word_frequency": 18929 + }, + { + "word": "splendor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnificent and splendid appearance; grandeur", + "example_sentence_english": "The palace was decorated with great splendor.", + "pos": "noun", + "word_frequency": 18930 + }, + { + "word": "springtime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the season of spring", + "example_sentence_english": "In springtime, the flowers begin to bloom.", + "pos": "noun", + "word_frequency": 18931 + }, + { + "word": "sprinkler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for sprinkling water", + "example_sentence_english": "The garden sprinkler turned on automatically.", + "pos": "noun", + "word_frequency": 18932 + }, + { + "word": "standstill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a situation or condition in which there is no movement or activity at all", + "example_sentence_english": "Traffic came to a complete standstill after the accident.", + "pos": "noun", + "word_frequency": 18933 + }, + { + "word": "subunit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a distinct component of a larger structure", + "example_sentence_english": "The protein is composed of several smaller subunits.", + "pos": "noun", + "word_frequency": 18936 + }, + { + "word": "suffix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a morpheme added at the end of a word to form a derivative", + "example_sentence_english": "The suffix '-ing' is often used to form present participles.", + "pos": "noun", + "word_frequency": 18937 + }, + { + "word": "sweepstake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a form of gambling, especially on horse races, in which all stakes are divided among the winners", + "example_sentence_english": "He entered a sweepstake hoping to win a new car.", + "pos": "noun", + "word_frequency": 18938 + }, + { + "word": "teeny", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny; very small", + "example_sentence_english": "She found a teeny tiny spider on the wall.", + "pos": "adjective", + "word_frequency": 18940 + }, + { + "word": "thoracic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the thorax (chest)", + "example_sentence_english": "The patient suffered a thoracic injury.", + "pos": "adjective", + "word_frequency": 18941 + }, + { + "word": "tremor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an involuntary quivering movement; a slight earthquake", + "example_sentence_english": "The slight tremor of the ground indicated a minor earthquake.", + "pos": "noun", + "word_frequency": 18942 + }, + { + "word": "triplet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "each of three children or animals born at the same birth", + "example_sentence_english": "The triplets were all dressed in matching outfits.", + "pos": "noun", + "word_frequency": 18943 + }, + { + "word": "twister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tornado", + "example_sentence_english": "The news reported a powerful twister heading towards the town.", + "pos": "noun", + "word_frequency": 18944 + }, + { + "word": "unannounced", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without being announced or expected", + "example_sentence_english": "He arrived unannounced at her doorstep.", + "pos": "adjective", + "word_frequency": 18946 + }, + { + "word": "undivided", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not divided or broken into parts; complete and continuous", + "example_sentence_english": "She gave her undivided attention to the speaker.", + "pos": "adjective", + "word_frequency": 18947 + }, + { + "word": "unsatisfactory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not good enough; failing to satisfy", + "example_sentence_english": "His performance at work was deemed unsatisfactory.", + "pos": "adjective", + "word_frequency": 18948 + }, + { + "word": "unskilled", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not having or requiring special skill or training", + "example_sentence_english": "The factory hired many unskilled laborers.", + "pos": "adjective", + "word_frequency": 18949 + }, + { + "word": "unwritten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not written down or recorded; understood or established by custom", + "example_sentence_english": "There's an unwritten rule that you don't talk during the movie.", + "pos": "adjective", + "word_frequency": 18950 + }, + { + "word": "utilitarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "designed to be useful or practical rather than attractive", + "example_sentence_english": "The building had a very utilitarian design, focusing on function over aesthetics.", + "pos": "adjective", + "word_frequency": 18951 + }, + { + "word": "vehicular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or used in a vehicle", + "example_sentence_english": "The accident caused significant vehicular damage.", + "pos": "adjective", + "word_frequency": 18953 + }, + { + "word": "wane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decrease in size, extent, or power", + "example_sentence_english": "The moon began to wane after the full moon.", + "pos": "verb", + "word_frequency": 18955 + }, + { + "word": "weightlifting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the sport or exercise of lifting barbells or dumbbells", + "example_sentence_english": "He trains for weightlifting competitions every day.", + "pos": "noun", + "word_frequency": 18956 + }, + { + "word": "whey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the watery part of milk that separates from the curds", + "example_sentence_english": "Whey protein is a popular supplement for athletes.", + "pos": "noun", + "word_frequency": 18958 + }, + { + "word": "willpower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-control, determination", + "example_sentence_english": "It takes a lot of willpower to stick to a diet.", + "pos": "noun", + "word_frequency": 18960 + }, + { + "word": "woolly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made of wool; unclear or confused", + "example_sentence_english": "She wore a warm, woolly hat.", + "pos": "adjective", + "word_frequency": 18962 + }, + { + "word": "zig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sharp turn or change of direction", + "example_sentence_english": "The car made a sudden zig to avoid the obstacle.", + "pos": "noun", + "word_frequency": 18966 + }, + { + "word": "acquittal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a judgment that a person is not guilty of the crime with which they have been charged", + "example_sentence_english": "The jury's acquittal brought relief to the defendant.", + "pos": "noun", + "word_frequency": 18971 + }, + { + "word": "acupuncture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a traditional Chinese medicine technique", + "example_sentence_english": "She tried acupuncture to relieve her back pain.", + "pos": "noun", + "word_frequency": 18972 + }, + { + "word": "anvil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy steel block on which metal is hammered", + "example_sentence_english": "The blacksmith hammered the hot metal on the anvil.", + "pos": "noun", + "word_frequency": 18976 + }, + { + "word": "armament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "military weapons and equipment", + "example_sentence_english": "The country was increasing its armament in response to regional tensions.", + "pos": "noun", + "word_frequency": 18979 + }, + { + "word": "ascribe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attribute something to (a cause, source, or author)", + "example_sentence_english": "He ascribed his success to hard work and a bit of luck.", + "pos": "verb", + "word_frequency": 18981 + }, + { + "word": "belligerent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hostile and aggressive", + "example_sentence_english": "His belligerent attitude made it difficult to negotiate.", + "pos": "adjective", + "word_frequency": 18988 + }, + { + "word": "bookmark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a marker used to keep one's place in a book; a saved link to a website", + "example_sentence_english": "I used a bookmark to remember my page in the novel.", + "pos": "noun", + "word_frequency": 18991 + }, + { + "word": "botanic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to plants or botany", + "example_sentence_english": "The botanic garden has a wide variety of plant species.", + "pos": "adjective", + "word_frequency": 18992 + }, + { + "word": "boundless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unlimited or immense", + "example_sentence_english": "Her boundless energy allowed her to work tirelessly.", + "pos": "adjective", + "word_frequency": 18993 + }, + { + "word": "brooch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ornament fastened to clothing with a pin", + "example_sentence_english": "She wore a beautiful silver brooch on her lapel.", + "pos": "noun", + "word_frequency": 18995 + }, + { + "word": "bunting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decorative flags or streamers; a type of bird", + "example_sentence_english": "The street was decorated with colorful bunting for the festival.", + "pos": "noun", + "word_frequency": 18996 + }, + { + "word": "cabal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a secret political clique or faction", + "example_sentence_english": "A small cabal of conspirators planned the overthrow of the government.", + "pos": "noun", + "word_frequency": 18997 + }, + { + "word": "cadre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small group of people specially trained for a particular purpose or profession", + "example_sentence_english": "The party relied on a dedicated cadre of activists.", + "pos": "noun", + "word_frequency": 18999 + }, + { + "word": "campground", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area suitable for camping", + "example_sentence_english": "We found a nice campground near the lake.", + "pos": "noun", + "word_frequency": 19000 + }, + { + "word": "causeway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a raised road or path across water or wet ground", + "example_sentence_english": "The causeway connected the island to the mainland.", + "pos": "noun", + "word_frequency": 19002 + }, + { + "word": "cleaver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy, broad-bladed knife", + "example_sentence_english": "The butcher used a large cleaver to cut the meat.", + "pos": "noun", + "word_frequency": 19003 + }, + { + "word": "cob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the central woody part of an ear of corn", + "example_sentence_english": "We ate corn on the cob for dinner.", + "pos": "noun", + "word_frequency": 19005 + }, + { + "word": "coexist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exist together or at the same time", + "example_sentence_english": "Different cultures can coexist peacefully in one society.", + "pos": "verb", + "word_frequency": 19006 + }, + { + "word": "coinage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the invention of a new word or phrase; coins collectively", + "example_sentence_english": "The term \"cyberspace\" was a new coinage in the 1980s.", + "pos": "noun", + "word_frequency": 19007 + }, + { + "word": "consummate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to complete or make perfect", + "example_sentence_english": "They hoped to consummate the deal by the end of the week.", + "pos": "verb", + "word_frequency": 19009 + }, + { + "word": "decadent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by moral or cultural decline", + "example_sentence_english": "The rich dessert was a truly decadent treat.", + "pos": "adjective", + "word_frequency": 19014 + }, + { + "word": "decoy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing used to lure into a trap", + "example_sentence_english": "The police used a decoy to catch the thief.", + "pos": "noun", + "word_frequency": 19015 + }, + { + "word": "demote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move to a lower rank or position", + "example_sentence_english": "He was demoted after failing to meet his targets.", + "pos": "verb", + "word_frequency": 19016 + }, + { + "word": "depraved", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morally corrupt; wicked", + "example_sentence_english": "The villain in the story was a truly depraved character.", + "pos": "adjective", + "word_frequency": 19017 + }, + { + "word": "derivation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of deriving something; origin", + "example_sentence_english": "The derivation of the word \"robot\" is from Czech.", + "pos": "noun", + "word_frequency": 19018 + }, + { + "word": "detectable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be detected or discovered", + "example_sentence_english": "There was no detectable trace of the chemical.", + "pos": "adjective", + "word_frequency": 19019 + }, + { + "word": "discreetly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a careful and prudent manner", + "example_sentence_english": "She discreetly slipped the note into his hand.", + "pos": "adverb", + "word_frequency": 19021 + }, + { + "word": "ebb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the movement of the tide out to sea", + "example_sentence_english": "We watched the tide ebb from the shore.", + "pos": "noun", + "word_frequency": 19024 + }, + { + "word": "emulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the effort to match or surpass a person or achievement", + "example_sentence_english": "His work was worthy of emulation by his peers.", + "pos": "noun", + "word_frequency": 19027 + }, + { + "word": "enshrine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to place in a shrine or sacred place; to preserve", + "example_sentence_english": "The constitution enshrines the rights of citizens.", + "pos": "verb", + "word_frequency": 19028 + }, + { + "word": "escrow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bond, deed, or other document kept in the custody of a third party", + "example_sentence_english": "The funds were held in escrow until the deal was finalized.", + "pos": "noun", + "word_frequency": 19029 + }, + { + "word": "evaporate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn from liquid into vapor", + "example_sentence_english": "The water will evaporate quickly in the sun.", + "pos": "verb", + "word_frequency": 19031 + }, + { + "word": "evasive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending to avoid commitment or direct answers", + "example_sentence_english": "He gave an evasive answer to the question.", + "pos": "adjective", + "word_frequency": 19032 + }, + { + "word": "federalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an advocate of a federal system of government", + "example_sentence_english": "The Federalists supported a strong central government.", + "pos": "noun", + "word_frequency": 19036 + }, + { + "word": "fervent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or displaying a passionate intensity", + "example_sentence_english": "He was a fervent supporter of human rights.", + "pos": "adjective", + "word_frequency": 19038 + }, + { + "word": "fiberglass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a material consisting of extremely fine glass fibers", + "example_sentence_english": "The boat was made of fiberglass.", + "pos": "noun", + "word_frequency": 19039 + }, + { + "word": "fixer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who solves problems", + "example_sentence_english": "He's known as the team's fixer, always able to resolve disputes.", + "pos": "noun", + "word_frequency": 19041 + }, + { + "word": "foray", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sudden attack or a brief venture", + "example_sentence_english": "Her first foray into entrepreneurship was a small online store.", + "pos": "noun", + "word_frequency": 19042 + }, + { + "word": "forfeiture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the loss or giving up of something", + "example_sentence_english": "The contract stipulated forfeiture of the deposit if the terms were not met.", + "pos": "noun", + "word_frequency": 19043 + }, + { + "word": "friar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of certain religious orders of men", + "example_sentence_english": "The friar dedicated his life to prayer and service.", + "pos": "noun", + "word_frequency": 19044 + }, + { + "word": "fruitless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsuccessful or useless", + "example_sentence_english": "Their efforts to find a solution proved fruitless.", + "pos": "adjective", + "word_frequency": 19045 + }, + { + "word": "fussy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hard to please; overly concerned with minor details", + "example_sentence_english": "He's very fussy about his food and won't eat anything green.", + "pos": "adjective", + "word_frequency": 19046 + }, + { + "word": "garnish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decorate food; to seize wages", + "example_sentence_english": "She decided to garnish the soup with fresh parsley.", + "pos": "verb", + "word_frequency": 19048 + }, + { + "word": "genealogical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the study of family history", + "example_sentence_english": "He spent years researching his genealogical tree.", + "pos": "adjective", + "word_frequency": 19049 + }, + { + "word": "gnu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large African antelope", + "example_sentence_english": "We saw a herd of gnus migrating across the plains.", + "pos": "noun", + "word_frequency": 19051 + }, + { + "word": "goody", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a desirable or attractive item; a self-righteous person", + "example_sentence_english": "The children eagerly awaited the goody bags at the party.", + "pos": "noun", + "word_frequency": 19052 + }, + { + "word": "graciously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a courteous and kind manner", + "example_sentence_english": "She graciously accepted the award and thanked everyone.", + "pos": "adverb", + "word_frequency": 19054 + }, + { + "word": "grassland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large open area of country covered with grass", + "example_sentence_english": "Many wild animals roam freely across the vast grassland.", + "pos": "noun", + "word_frequency": 19055 + }, + { + "word": "hajj", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the Muslim pilgrimage to Mecca", + "example_sentence_english": "Every able-bodied Muslim is expected to perform the Hajj at least once.", + "pos": "noun", + "word_frequency": 19057 + }, + { + "word": "headway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progress or movement forward", + "example_sentence_english": "They are finally making some headway on the project.", + "pos": "noun", + "word_frequency": 19063 + }, + { + "word": "hearsay", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unverified information heard from others", + "example_sentence_english": "The lawyer argued that the evidence was merely hearsay and inadmissible.", + "pos": "noun", + "word_frequency": 19064 + }, + { + "word": "hideout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hiding place, especially for criminals", + "example_sentence_english": "The police raided the gang's secret hideout.", + "pos": "noun", + "word_frequency": 19066 + }, + { + "word": "hutch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cage for small animals; a storage cabinet", + "example_sentence_english": "The rabbit lived happily in its hutch in the garden.", + "pos": "noun", + "word_frequency": 19071 + }, + { + "word": "idyllic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely happy, peaceful, or picturesque", + "example_sentence_english": "They spent an idyllic summer vacation in the countryside.", + "pos": "adjective", + "word_frequency": 19074 + }, + { + "word": "impossibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or fact of being impossible", + "example_sentence_english": "Climbing Mount Everest without oxygen was an impossibility for most.", + "pos": "noun", + "word_frequency": 19075 + }, + { + "word": "impotent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking power or ability; helpless", + "example_sentence_english": "He felt completely impotent in the face of such overwhelming problems.", + "pos": "adjective", + "word_frequency": 19076 + }, + { + "word": "inconsiderate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoughtless; not showing concern for others' feelings", + "example_sentence_english": "It was inconsiderate of him to play loud music late at night.", + "pos": "adjective", + "word_frequency": 19077 + }, + { + "word": "insatiable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to satisfy", + "example_sentence_english": "He had an insatiable appetite for knowledge.", + "pos": "adjective", + "word_frequency": 19078 + }, + { + "word": "instalment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one of several parts of a payment or series", + "example_sentence_english": "She paid for the car in monthly instalments.", + "pos": "noun", + "word_frequency": 19079 + }, + { + "word": "interpretive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to interpretation; explanatory", + "example_sentence_english": "The interpretive dance conveyed a powerful message.", + "pos": "adjective", + "word_frequency": 19080 + }, + { + "word": "intrepid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fearless; adventurous", + "example_sentence_english": "The intrepid explorer ventured into the unknown jungle.", + "pos": "adjective", + "word_frequency": 19081 + }, + { + "word": "intuitively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by intuition; without conscious reasoning", + "example_sentence_english": "She intuitively knew something was wrong.", + "pos": "adverb", + "word_frequency": 19082 + }, + { + "word": "jetty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pier or landing place for boats", + "example_sentence_english": "We walked along the wooden jetty to watch the sunset.", + "pos": "noun", + "word_frequency": 19085 + }, + { + "word": "khaki", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dull brownish-yellow color; a fabric of this color", + "example_sentence_english": "He wore a pair of khaki trousers.", + "pos": "noun", + "word_frequency": 19091 + }, + { + "word": "kip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short sleep; a nap (informal)", + "example_sentence_english": "I'm going to have a quick kip before dinner.", + "pos": "noun", + "word_frequency": 19092 + }, + { + "word": "koala", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an Australian marsupial", + "example_sentence_english": "The koala was sleeping in the eucalyptus tree.", + "pos": "noun", + "word_frequency": 19094 + }, + { + "word": "magnate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a wealthy and influential person, especially in business", + "example_sentence_english": "The shipping magnate owned a fleet of cargo ships.", + "pos": "noun", + "word_frequency": 19105 + }, + { + "word": "mannered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a specified manner; often used in compounds like 'well-mannered'", + "example_sentence_english": "He was a very well-mannered young man.", + "pos": "adjective", + "word_frequency": 19108 + }, + { + "word": "merciless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing no mercy or pity", + "example_sentence_english": "The merciless sun beat down on the desert.", + "pos": "adjective", + "word_frequency": 19113 + }, + { + "word": "misfit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose behavior or attitude sets them apart from others", + "example_sentence_english": "He always felt like a misfit in his family.", + "pos": "noun", + "word_frequency": 19116 + }, + { + "word": "mongol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a native or inhabitant of Mongolia; a member of the nomadic people of Mongolia", + "example_sentence_english": "The Mongol Empire was one of the largest in history.", + "pos": "noun", + "word_frequency": 19119 + }, + { + "word": "monochrome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "black and white", + "example_sentence_english": "The old photograph was in monochrome.", + "pos": "noun", + "word_frequency": 19120 + }, + { + "word": "mortuary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a funeral home or morgue", + "example_sentence_english": "The body was taken to the mortuary.", + "pos": "noun", + "word_frequency": 19121 + }, + { + "word": "muffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a sound quieter", + "example_sentence_english": "She tried to muffle her laughter with her hand.", + "pos": "verb", + "word_frequency": 19123 + }, + { + "word": "nationalistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having strong patriotic feelings", + "example_sentence_english": "His nationalistic views were very strong.", + "pos": "adjective", + "word_frequency": 19129 + }, + { + "word": "nervousness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being nervous", + "example_sentence_english": "A feeling of nervousness filled the room before the exam.", + "pos": "noun", + "word_frequency": 19130 + }, + { + "word": "neurologist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a doctor specializing in the nervous system", + "example_sentence_english": "She consulted a neurologist about her headaches.", + "pos": "noun", + "word_frequency": 19132 + }, + { + "word": "nutmeg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a spice from a tropical tree", + "example_sentence_english": "She added a pinch of nutmeg to the sauce.", + "pos": "noun", + "word_frequency": 19134 + }, + { + "word": "obtuse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annoyingly insensitive or slow to understand; (of an angle) greater than 90 degrees", + "example_sentence_english": "He was too obtuse to understand the subtle hint.", + "pos": "adjective", + "word_frequency": 19136 + }, + { + "word": "particulate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or in the form of minute separate particles", + "example_sentence_english": "Air pollution often includes fine particulate matter.", + "pos": "adjective", + "word_frequency": 19140 + }, + { + "word": "penicillin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a powerful antibiotic drug", + "example_sentence_english": "Penicillin revolutionized medicine.", + "pos": "noun", + "word_frequency": 19141 + }, + { + "word": "polygon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plane figure with at least three straight sides and angles", + "example_sentence_english": "A square is a type of polygon.", + "pos": "noun", + "word_frequency": 19143 + }, + { + "word": "proportionate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corresponding in size or amount to something else", + "example_sentence_english": "The punishment should be proportionate to the crime.", + "pos": "adjective", + "word_frequency": 19145 + }, + { + "word": "quartermaster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a military officer responsible for supplies", + "example_sentence_english": "The quartermaster ensured the troops had enough provisions.", + "pos": "noun", + "word_frequency": 19150 + }, + { + "word": "radiance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light or heat emitted or reflected by something", + "example_sentence_english": "The bride's face glowed with radiance.", + "pos": "noun", + "word_frequency": 19151 + }, + { + "word": "reciprocity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of exchanging things with others for mutual benefit", + "example_sentence_english": "The agreement was based on the principle of reciprocity.", + "pos": "noun", + "word_frequency": 19154 + }, + { + "word": "remodel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to change the structure or form of something", + "example_sentence_english": "They decided to remodel their kitchen.", + "pos": "verb", + "word_frequency": 19155 + }, + { + "word": "replenish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fill something up again", + "example_sentence_english": "We need to replenish our supplies.", + "pos": "verb", + "word_frequency": 19156 + }, + { + "word": "responsiveness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of reacting quickly and positively", + "example_sentence_english": "The company is known for its excellent customer responsiveness.", + "pos": "noun", + "word_frequency": 19157 + }, + { + "word": "rheumatoid", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to rheumatism or arthritis", + "example_sentence_english": "She suffers from rheumatoid arthritis.", + "pos": "adjective", + "word_frequency": 19158 + }, + { + "word": "ruble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruble (Russian currency)", + "example_sentence_english": "The value of the Russian ruble has fluctuated recently.", + "pos": "noun", + "word_frequency": 19161 + }, + { + "word": "saltwater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saltwater (water containing salt)", + "example_sentence_english": "Most of the Earth's water is saltwater, found in oceans and seas.", + "pos": "noun", + "word_frequency": 19163 + }, + { + "word": "sanctity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sanctity (the state or quality of being holy, sacred, or saintly)", + "example_sentence_english": "The sanctity of human life is a fundamental principle in many cultures.", + "pos": "noun", + "word_frequency": 19164 + }, + { + "word": "schooler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "schooler (a person who attends school, especially a young one)", + "example_sentence_english": "The young schooler proudly showed off her new backpack.", + "pos": "noun", + "word_frequency": 19165 + }, + { + "word": "scrimmage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrimmage (a practice game or fight, especially in American football)", + "example_sentence_english": "The team held a scrimmage to practice their new offensive plays.", + "pos": "noun", + "word_frequency": 19168 + }, + { + "word": "seaboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seaboard (a region bordering the sea; a coastline)", + "example_sentence_english": "Many major cities are located along the eastern seaboard.", + "pos": "noun", + "word_frequency": 19169 + }, + { + "word": "sedition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sedition (conduct or speech inciting people to rebel against the authority of a state or monarch)", + "example_sentence_english": "The journalist was accused of sedition for publishing articles critical of the government.", + "pos": "noun", + "word_frequency": 19170 + }, + { + "word": "shoddy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shoddy (badly made or done)", + "example_sentence_english": "The shoddy workmanship of the furniture meant it broke quickly.", + "pos": "adjective", + "word_frequency": 19171 + }, + { + "word": "shortstop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortstop (a fielding position in baseball)", + "example_sentence_english": "The shortstop made an incredible diving catch to save the game.", + "pos": "noun", + "word_frequency": 19172 + }, + { + "word": "sleazy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleazy (sordid, corrupt, or immoral; disreputable)", + "example_sentence_english": "He was known for his sleazy business practices and questionable ethics.", + "pos": "adjective", + "word_frequency": 19173 + }, + { + "word": "smirk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smirk (a smug, conceited, or silly smile)", + "example_sentence_english": "He couldn't help but give a smug smirk after winning the argument.", + "pos": "noun", + "word_frequency": 19174 + }, + { + "word": "snipe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snipe (to shoot at someone from a hidden position; to make a sly or petty verbal attack)", + "example_sentence_english": "The critics continued to snipe at the director's latest film.", + "pos": "verb", + "word_frequency": 19176 + }, + { + "word": "snuggle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snuggle (to settle or move into a warm, comfortable position)", + "example_sentence_english": "The children loved to snuggle with their dog on the sofa.", + "pos": "verb", + "word_frequency": 19177 + }, + { + "word": "sociologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociologist (an expert in the study of the development, structure, and functioning of human society)", + "example_sentence_english": "A sociologist studies how people interact within groups and societies.", + "pos": "noun", + "word_frequency": 19179 + }, + { + "word": "spew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spew (to expel large quantities of something rapidly and forcibly)", + "example_sentence_english": "The volcano began to spew ash and lava into the air.", + "pos": "verb", + "word_frequency": 19180 + }, + { + "word": "squishy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squishy (soft, wet, and easily compressible)", + "example_sentence_english": "The mud was very squishy after the heavy rain.", + "pos": "adjective", + "word_frequency": 19181 + }, + { + "word": "stalemate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stalemate (a situation in which no progress can be made or no advancement is possible)", + "example_sentence_english": "The negotiations reached a stalemate, with neither side willing to compromise.", + "pos": "noun", + "word_frequency": 19182 + }, + { + "word": "stave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stave (a vertical wooden plank forming part of the side of a barrel or similar container; a set of five parallel lines on which musical notes are written)", + "example_sentence_english": "The old barrel was missing a few staves, making it unusable.", + "pos": "noun", + "word_frequency": 19183 + }, + { + "word": "streamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "streamer (a long, narrow strip of material used for decoration or as a signal; a person who broadcasts live video content online)", + "example_sentence_english": "Colorful streamers hung from the ceiling for the party.", + "pos": "noun", + "word_frequency": 19185 + }, + { + "word": "streetcar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "streetcar (a public transport vehicle running on rails in the street)", + "example_sentence_english": "We took the streetcar to get downtown and avoid traffic.", + "pos": "noun", + "word_frequency": 19186 + }, + { + "word": "stringer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stringer (a freelance journalist or photographer who contributes to a newspaper or magazine; a line on which fish are strung)", + "example_sentence_english": "The news agency hired a local stringer to cover events in the remote region.", + "pos": "noun", + "word_frequency": 19187 + }, + { + "word": "supremely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supremely (to the highest degree; extremely)", + "example_sentence_english": "She was supremely confident in her abilities before the competition.", + "pos": "adverb", + "word_frequency": 19188 + }, + { + "word": "swami", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "swami (a Hindu male religious teacher)", + "example_sentence_english": "The swami shared ancient wisdom with his disciples.", + "pos": "noun", + "word_frequency": 19190 + }, + { + "word": "symbolize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolize (to be a symbol of; represent)", + "example_sentence_english": "The dove is often used to symbolize peace.", + "pos": "verb", + "word_frequency": 19191 + }, + { + "word": "tarmac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tarmac (a paved area, especially at an airport, for parking, loading, and unloading aircraft)", + "example_sentence_english": "The plane taxied slowly across the tarmac towards the runway.", + "pos": "noun", + "word_frequency": 19195 + }, + { + "word": "tenacious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenacious (tending to keep a firm hold of something; not readily relinquishing a position, principle, or course of action; determined)", + "example_sentence_english": "She was a tenacious negotiator, never giving up until she got the best deal.", + "pos": "adjective", + "word_frequency": 19197 + }, + { + "word": "tireless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tireless (having or showing a lot of energy or effort; indefatigable)", + "example_sentence_english": "The volunteers showed tireless dedication to the cause.", + "pos": "adjective", + "word_frequency": 19198 + }, + { + "word": "toothed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toothed (having teeth or tooth-like projections)", + "example_sentence_english": "The saw had a finely toothed blade for precision cutting.", + "pos": "adjective", + "word_frequency": 19199 + }, + { + "word": "trove", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection of valuable items", + "example_sentence_english": "The archaeologists discovered a trove of ancient artifacts.", + "pos": "noun", + "word_frequency": 19201 + }, + { + "word": "unconsciously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without being aware", + "example_sentence_english": "He unconsciously tapped his foot during the meeting.", + "pos": "adverb", + "word_frequency": 19203 + }, + { + "word": "undated", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without a date", + "example_sentence_english": "The old letter was undated, making it hard to place in time.", + "pos": "adjective", + "word_frequency": 19204 + }, + { + "word": "undefined", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not clearly defined or explained", + "example_sentence_english": "The terms of the agreement remained undefined.", + "pos": "adjective", + "word_frequency": 19205 + }, + { + "word": "unpack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remove contents from a container", + "example_sentence_english": "We need to unpack our suitcases after the trip.", + "pos": "verb", + "word_frequency": 19206 + }, + { + "word": "urbanization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of becoming more urban", + "example_sentence_english": "Rapid urbanization can lead to various social challenges.", + "pos": "noun", + "word_frequency": 19207 + }, + { + "word": "victimize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to treat someone cruelly or unfairly", + "example_sentence_english": "The scammer tried to victimize elderly people.", + "pos": "verb", + "word_frequency": 19208 + }, + { + "word": "westbound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traveling or leading towards the west", + "example_sentence_english": "The westbound train was delayed by an hour.", + "pos": "adjective", + "word_frequency": 19211 + }, + { + "word": "westerly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards or from the west", + "example_sentence_english": "A strong westerly wind blew across the plains.", + "pos": "adjective", + "word_frequency": 19212 + }, + { + "word": "winch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a winding device used for pulling or lifting", + "example_sentence_english": "They used a winch to pull the boat onto the trailer.", + "pos": "noun", + "word_frequency": 19216 + }, + { + "word": "workstation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a desk or area where someone works", + "example_sentence_english": "Each employee has their own workstation in the open-plan office.", + "pos": "noun", + "word_frequency": 19218 + }, + { + "word": "yam", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a starchy root vegetable", + "example_sentence_english": "Sweet potatoes are often confused with yams.", + "pos": "noun", + "word_frequency": 19219 + }, + { + "word": "yolk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the yellow part of an egg", + "example_sentence_english": "The egg yolk is rich in vitamins.", + "pos": "noun", + "word_frequency": 19220 + }, + { + "word": "aerosol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance enclosed under pressure and released as a fine spray", + "example_sentence_english": "She used an aerosol can of hairspray.", + "pos": "noun", + "word_frequency": 19224 + }, + { + "word": "aftermarket", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the market for spare parts, accessories, and services for products", + "example_sentence_english": "The company specializes in aftermarket car parts.", + "pos": "noun", + "word_frequency": 19225 + }, + { + "word": "alphabetically", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in alphabetical order", + "example_sentence_english": "Please arrange the names alphabetically.", + "pos": "adverb", + "word_frequency": 19226 + }, + { + "word": "ammonium", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a positively charged ion (NH4+)", + "example_sentence_english": "Ammonium compounds are often used in fertilizers.", + "pos": "noun", + "word_frequency": 19228 + }, + { + "word": "amour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a secret love affair", + "example_sentence_english": "The novel described a passionate amour between the two characters.", + "pos": "noun", + "word_frequency": 19229 + }, + { + "word": "apprehensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxious or fearful that something bad will happen", + "example_sentence_english": "She felt apprehensive about the upcoming exam.", + "pos": "adjective", + "word_frequency": 19231 + }, + { + "word": "assent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official agreement or approval", + "example_sentence_english": "The committee gave its assent to the new proposal.", + "pos": "noun", + "word_frequency": 19234 + }, + { + "word": "athenian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Athens, Greece", + "example_sentence_english": "The Athenian philosophers made significant contributions to Western thought.", + "pos": "adjective", + "word_frequency": 19236 + }, + { + "word": "authorisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "official permission or approval (British spelling)", + "example_sentence_english": "You need special authorisation to access this area.", + "pos": "noun", + "word_frequency": 19237 + }, + { + "word": "backdoor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a door at the back of a building", + "example_sentence_english": "Please use the backdoor when leaving the building.", + "pos": "noun", + "word_frequency": 19239 + }, + { + "word": "banco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bench or bank", + "example_sentence_english": "The old men sat on the banco in the park.", + "pos": "noun", + "word_frequency": 19240 + }, + { + "word": "biopic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a biographical film", + "example_sentence_english": "The new biopic about Queen Elizabeth II is highly anticipated.", + "pos": "noun", + "word_frequency": 19245 + }, + { + "word": "blondie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person with blonde hair", + "example_sentence_english": "She was a natural blondie, with bright golden hair.", + "pos": "noun", + "word_frequency": 19246 + }, + { + "word": "blot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a spot or stain", + "example_sentence_english": "He tried to remove the ink blot from his shirt.", + "pos": "noun", + "word_frequency": 19247 + }, + { + "word": "bode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be an omen of", + "example_sentence_english": "The dark clouds bode ill for our picnic.", + "pos": "verb", + "word_frequency": 19248 + }, + { + "word": "boggle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to astonish or overwhelm", + "example_sentence_english": "The complexity of the problem made his mind boggle.", + "pos": "verb", + "word_frequency": 19250 + }, + { + "word": "bolivian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Bolivia", + "example_sentence_english": "She enjoyed the traditional Bolivian music.", + "pos": "adjective", + "word_frequency": 19251 + }, + { + "word": "bourgeoisie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the middle class", + "example_sentence_english": "The novel satirized the values of the bourgeoisie.", + "pos": "noun", + "word_frequency": 19252 + }, + { + "word": "bowser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mobile tanker for fuel or water", + "example_sentence_english": "The farmer used a water bowser to irrigate his crops.", + "pos": "noun", + "word_frequency": 19253 + }, + { + "word": "byproduct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secondary product", + "example_sentence_english": "Heat is a common byproduct of energy production.", + "pos": "noun", + "word_frequency": 19259 + }, + { + "word": "bystander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person present but not involved", + "example_sentence_english": "A bystander called the police after witnessing the accident.", + "pos": "noun", + "word_frequency": 19260 + }, + { + "word": "categorically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absolutely; without qualification", + "example_sentence_english": "He categorically denied the accusations.", + "pos": "adverb", + "word_frequency": 19262 + }, + { + "word": "cathode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a negative electrode", + "example_sentence_english": "Electrons flow from the anode to the cathode.", + "pos": "noun", + "word_frequency": 19263 + }, + { + "word": "cede", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to give up power or territory", + "example_sentence_english": "The country was forced to cede territory after the war.", + "pos": "verb", + "word_frequency": 19264 + }, + { + "word": "civility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "politeness; courtesy", + "example_sentence_english": "Despite their disagreements, they maintained a level of civility.", + "pos": "noun", + "word_frequency": 19266 + }, + { + "word": "complicity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involvement in a crime or wrongdoing", + "example_sentence_english": "He denied any complicity in the fraud.", + "pos": "noun", + "word_frequency": 19270 + }, + { + "word": "confetti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small pieces of paper thrown at celebrations", + "example_sentence_english": "The bride and groom were showered with confetti.", + "pos": "noun", + "word_frequency": 19272 + }, + { + "word": "confrontational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending to confront or challenge", + "example_sentence_english": "His confrontational style often led to arguments.", + "pos": "adjective", + "word_frequency": 19273 + }, + { + "word": "congolese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Congo", + "example_sentence_english": "She enjoyed the vibrant Congolese music.", + "pos": "adjective", + "word_frequency": 19274 + }, + { + "word": "consequential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "important; significant", + "example_sentence_english": "The decision had consequential effects on the company's future.", + "pos": "adjective", + "word_frequency": 19276 + }, + { + "word": "contagion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the spread of disease or influence", + "example_sentence_english": "The financial crisis led to economic contagion across the globe.", + "pos": "noun", + "word_frequency": 19277 + }, + { + "word": "corset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a close-fitting undergarment", + "example_sentence_english": "In the 19th century, women often wore a tight corset.", + "pos": "noun", + "word_frequency": 19278 + }, + { + "word": "cortisol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stress hormone", + "example_sentence_english": "Stress can lead to elevated levels of cortisol in the body.", + "pos": "noun", + "word_frequency": 19279 + }, + { + "word": "crock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthenware pot; nonsense", + "example_sentence_english": "Don't believe that story; it's a load of old crock.", + "pos": "noun", + "word_frequency": 19281 + }, + { + "word": "cutting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece cut from something; a news clipping", + "example_sentence_english": "She took a rose cutting to plant in her garden.", + "pos": "noun", + "word_frequency": 19283 + }, + { + "word": "dataset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collection of related sets of information", + "example_sentence_english": "The researchers analyzed a large dataset of climate information.", + "pos": "noun", + "word_frequency": 19284 + }, + { + "word": "daybreak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the time in the morning when daylight first appears", + "example_sentence_english": "We started our hike at daybreak to avoid the heat.", + "pos": "noun", + "word_frequency": 19286 + }, + { + "word": "defenseman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a defensive player in ice hockey or lacrosse", + "example_sentence_english": "The defenseman blocked the shot with his stick.", + "pos": "noun", + "word_frequency": 19287 + }, + { + "word": "desolation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of complete emptiness or destruction; great unhappiness", + "example_sentence_english": "The abandoned town was a scene of utter desolation.", + "pos": "noun", + "word_frequency": 19288 + }, + { + "word": "deviant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "departing from usual or accepted standards", + "example_sentence_english": "His behavior was considered deviant by societal norms.", + "pos": "adjective", + "word_frequency": 19289 + }, + { + "word": "devious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skillful in using underhanded tactics to achieve goals", + "example_sentence_english": "He used devious methods to get what he wanted.", + "pos": "adjective", + "word_frequency": 19291 + }, + { + "word": "discography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a comprehensive listing of musical recordings", + "example_sentence_english": "The band's discography includes ten studio albums.", + "pos": "noun", + "word_frequency": 19294 + }, + { + "word": "dislocate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to displace a bone from its joint; to disrupt", + "example_sentence_english": "He fell and managed to dislocate his shoulder.", + "pos": "verb", + "word_frequency": 19295 + }, + { + "word": "dispenser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine or container that releases a measured amount of something", + "example_sentence_english": "The soap dispenser in the bathroom is empty.", + "pos": "noun", + "word_frequency": 19296 + }, + { + "word": "disseminate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to spread or disperse widely", + "example_sentence_english": "The organization aims to disseminate information about healthy living.", + "pos": "verb", + "word_frequency": 19297 + }, + { + "word": "dorado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of fish, also known as mahi-mahi", + "example_sentence_english": "We ordered grilled dorado at the seafood restaurant.", + "pos": "noun", + "word_frequency": 19298 + }, + { + "word": "dragonfly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fast-flying insect with a long body and two pairs of large wings", + "example_sentence_english": "A colorful dragonfly landed on the lily pad.", + "pos": "noun", + "word_frequency": 19299 + }, + { + "word": "dubstep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a genre of electronic dance music", + "example_sentence_english": "He enjoys listening to dubstep music while working out.", + "pos": "noun", + "word_frequency": 19301 + }, + { + "word": "dugout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shelter or trench dug in the ground; a sunken shelter for players in baseball", + "example_sentence_english": "The baseball players waited in the dugout during the rain delay.", + "pos": "noun", + "word_frequency": 19302 + }, + { + "word": "dynamically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that involves constant change or activity", + "example_sentence_english": "The software dynamically adjusts to user preferences.", + "pos": "adverb", + "word_frequency": 19304 + }, + { + "word": "elizabethan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the reign of Queen Elizabeth I of England", + "example_sentence_english": "Shakespeare wrote many plays during the Elizabethan era.", + "pos": "adjective", + "word_frequency": 19307 + }, + { + "word": "emanate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to issue or spread out from (a source)", + "example_sentence_english": "A strange light seemed to emanate from the old house.", + "pos": "verb", + "word_frequency": 19308 + }, + { + "word": "evocative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bringing strong images, memories, or feelings to mind", + "example_sentence_english": "The old photographs were evocative of a bygone era.", + "pos": "adjective", + "word_frequency": 19309 + }, + { + "word": "faintly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is barely perceptible or discernible", + "example_sentence_english": "She could faintly hear music playing in the distance.", + "pos": "adverb", + "word_frequency": 19310 + }, + { + "word": "flirty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behaving in a way that shows a playful sexual attraction", + "example_sentence_english": "She gave him a flirty smile across the room.", + "pos": "adjective", + "word_frequency": 19312 + }, + { + "word": "fullness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being full; completeness", + "example_sentence_english": "He felt a sense of fullness after the large meal.", + "pos": "noun", + "word_frequency": 19313 + }, + { + "word": "gallop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the fastest pace of a horse or other quadruped", + "example_sentence_english": "The horse broke into a full gallop across the field.", + "pos": "noun", + "word_frequency": 19316 + }, + { + "word": "gentile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is not Jewish", + "example_sentence_english": "In some religious contexts, a gentile refers to a non-Jew.", + "pos": "noun", + "word_frequency": 19317 + }, + { + "word": "gentrification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of renovating and improving a house or district so that it conforms to middle-class taste", + "example_sentence_english": "Gentrification often leads to rising property values and displacement of original residents.", + "pos": "noun", + "word_frequency": 19318 + }, + { + "word": "gingerbread", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cake or cookie flavored with ginger and molasses", + "example_sentence_english": "We decorated gingerbread cookies for Christmas.", + "pos": "noun", + "word_frequency": 19319 + }, + { + "word": "gosling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A young goose.", + "example_sentence_english": "The mother goose led her goslings to the pond.", + "pos": "noun", + "word_frequency": 19322 + }, + { + "word": "grasshopper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An insect that jumps and makes a chirping sound.", + "example_sentence_english": "A grasshopper jumped high into the air.", + "pos": "noun", + "word_frequency": 19323 + }, + { + "word": "grouping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A collection of items or people grouped together.", + "example_sentence_english": "The teacher asked for a grouping of students by their favorite colors.", + "pos": "noun", + "word_frequency": 19324 + }, + { + "word": "hallow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To honor as holy or sacred.", + "example_sentence_english": "We hallow the memory of those who died for freedom.", + "pos": "verb", + "word_frequency": 19328 + }, + { + "word": "incessant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Continuing without interruption; constant.", + "example_sentence_english": "The incessant rain made the roads slippery.", + "pos": "adjective", + "word_frequency": 19336 + }, + { + "word": "incriminate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make someone appear guilty of a crime or wrongdoing.", + "example_sentence_english": "His testimony could incriminate the suspect.", + "pos": "verb", + "word_frequency": 19337 + }, + { + "word": "incurable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not able to be cured or remedied.", + "example_sentence_english": "The disease was incurable, but treatments could manage the symptoms.", + "pos": "adjective", + "word_frequency": 19338 + }, + { + "word": "innumerable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Too many to be counted; countless.", + "example_sentence_english": "There are innumerable stars in the night sky.", + "pos": "adjective", + "word_frequency": 19340 + }, + { + "word": "insular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ignorant of or uninterested in cultures, ideas, or peoples outside one's own experience; narrow-minded.", + "example_sentence_english": "The small community was quite insular, rarely interacting with outsiders.", + "pos": "adjective", + "word_frequency": 19341 + }, + { + "word": "insurmountable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Too great to be overcome.", + "example_sentence_english": "The challenges seemed insurmountable at first.", + "pos": "adjective", + "word_frequency": 19342 + }, + { + "word": "inundate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To overwhelm (someone) with things or people to be dealt with; to flood.", + "example_sentence_english": "We were inundated with applications for the new position.", + "pos": "verb", + "word_frequency": 19343 + }, + { + "word": "jailbreak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An escape from prison.", + "example_sentence_english": "The police are investigating a recent jailbreak from the maximum-security prison.", + "pos": "noun", + "word_frequency": 19346 + }, + { + "word": "juncture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A particular point in events or time.", + "example_sentence_english": "At this critical juncture, we must make a decision.", + "pos": "noun", + "word_frequency": 19348 + }, + { + "word": "kebab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A dish of pieces of meat, fish, or vegetables roasted or grilled on a skewer.", + "example_sentence_english": "We ordered chicken kebabs for dinner.", + "pos": "noun", + "word_frequency": 19350 + }, + { + "word": "licensee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or company that has been granted a license.", + "example_sentence_english": "The licensee must adhere to the terms of the agreement.", + "pos": "noun", + "word_frequency": 19357 + }, + { + "word": "locator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A device or person that finds the position of something.", + "example_sentence_english": "The GPS device acts as a precise locator.", + "pos": "noun", + "word_frequency": 19358 + }, + { + "word": "magnetism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the phenomenon of physical forces exerted by magnets", + "example_sentence_english": "The compass works because of the Earth's magnetism.", + "pos": "noun", + "word_frequency": 19363 + }, + { + "word": "manhunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an organized search for a person", + "example_sentence_english": "Police launched a massive manhunt for the escaped prisoner.", + "pos": "noun", + "word_frequency": 19366 + }, + { + "word": "manoeuvre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a movement or series of moves requiring skill and care", + "example_sentence_english": "The pilot performed a complex manoeuvre to avoid the storm.", + "pos": "noun", + "word_frequency": 19367 + }, + { + "word": "metamorphosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a change of the form or nature of a thing or person into a completely different one", + "example_sentence_english": "The caterpillar undergoes a complete metamorphosis into a butterfly.", + "pos": "noun", + "word_frequency": 19376 + }, + { + "word": "methodological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the system of methods used in a particular area of study or activity", + "example_sentence_english": "The research paper had a strong methodological approach.", + "pos": "adjective", + "word_frequency": 19377 + }, + { + "word": "middleweight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a weight division in boxing or wrestling", + "example_sentence_english": "He competed in the middleweight division.", + "pos": "noun", + "word_frequency": 19378 + }, + { + "word": "milkshake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cold drink made of milk, ice cream, and flavoring", + "example_sentence_english": "I ordered a chocolate milkshake with my burger.", + "pos": "noun", + "word_frequency": 19380 + }, + { + "word": "misinterpret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to understand wrongly", + "example_sentence_english": "It's easy to misinterpret someone's intentions if you don't know them well.", + "pos": "verb", + "word_frequency": 19382 + }, + { + "word": "modernize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adapt to modern needs or habits", + "example_sentence_english": "The company plans to modernize its old equipment.", + "pos": "verb", + "word_frequency": 19383 + }, + { + "word": "multilingual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaking or using several languages", + "example_sentence_english": "She grew up in a multilingual household.", + "pos": "adjective", + "word_frequency": 19385 + }, + { + "word": "natured", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a specified nature or character", + "example_sentence_english": "He is a very good-natured person.", + "pos": "adjective", + "word_frequency": 19386 + }, + { + "word": "nourishment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the food, etc., necessary for health, growth, and good condition", + "example_sentence_english": "Proper nourishment is vital for a child's development.", + "pos": "noun", + "word_frequency": 19389 + }, + { + "word": "numeral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a symbol or word representing a number", + "example_sentence_english": "The Roman numeral for ten is X.", + "pos": "noun", + "word_frequency": 19390 + }, + { + "word": "olfactory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the sense of smell", + "example_sentence_english": "Dogs have a highly developed olfactory sense.", + "pos": "adjective", + "word_frequency": 19392 + }, + { + "word": "organically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is natural or not forced", + "example_sentence_english": "The community grew organically over many years.", + "pos": "adverb", + "word_frequency": 19393 + }, + { + "word": "paintball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game in which players shoot capsules of paint at each other", + "example_sentence_english": "They went paintballing last weekend.", + "pos": "noun", + "word_frequency": 19396 + }, + { + "word": "petrify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone so frightened that they are unable to move or think", + "example_sentence_english": "The sudden noise petrified the small child.", + "pos": "verb", + "word_frequency": 19399 + }, + { + "word": "pheasant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large, long-tailed game bird.", + "example_sentence_english": "We saw a beautiful pheasant in the field.", + "pos": "noun", + "word_frequency": 19400 + }, + { + "word": "photosynthesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process by which green plants and some other organisms use sunlight to synthesize foods.", + "example_sentence_english": "Plants use photosynthesis to convert light into energy.", + "pos": "noun", + "word_frequency": 19401 + }, + { + "word": "piccolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A small flute.", + "example_sentence_english": "The piccolo has a very high-pitched sound.", + "pos": "noun", + "word_frequency": 19402 + }, + { + "word": "pointe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The tip of a dancer's toe, especially in ballet.", + "example_sentence_english": "Ballerinas often dance en pointe.", + "pos": "noun", + "word_frequency": 19404 + }, + { + "word": "postponement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act of delaying something.", + "example_sentence_english": "The postponement of the meeting was due to bad weather.", + "pos": "noun", + "word_frequency": 19406 + }, + { + "word": "preclude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To prevent from happening; make impossible.", + "example_sentence_english": "His injury will preclude him from playing in the final.", + "pos": "verb", + "word_frequency": 19408 + }, + { + "word": "preorder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To order (something) before it is available.", + "example_sentence_english": "You can preorder the new game now.", + "pos": "verb", + "word_frequency": 19409 + }, + { + "word": "pressurize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To subject to pressure.", + "example_sentence_english": "The cabin of the airplane is pressurized for comfort.", + "pos": "verb", + "word_frequency": 19410 + }, + { + "word": "prickly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Covered with prickles or thorns; irritable.", + "example_sentence_english": "The rose bush has prickly stems.", + "pos": "adjective", + "word_frequency": 19411 + }, + { + "word": "priory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A monastery governed by a prior or prioress.", + "example_sentence_english": "The old priory stood on a hill overlooking the village.", + "pos": "noun", + "word_frequency": 19412 + }, + { + "word": "programmable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Capable of being programmed.", + "example_sentence_english": "This new device is fully programmable.", + "pos": "adjective", + "word_frequency": 19413 + }, + { + "word": "puss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A cat (informal); a thick yellowish or greenish opaque liquid produced in infected tissue.", + "example_sentence_english": "The little puss curled up on the sofa.", + "pos": "noun", + "word_frequency": 19415 + }, + { + "word": "quintessential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Representing the most perfect or typical example of a quality or class.", + "example_sentence_english": "He was the quintessential New Yorker.", + "pos": "adjective", + "word_frequency": 19416 + }, + { + "word": "radiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To emit (energy, especially light or heat) in the form of rays or waves.", + "example_sentence_english": "The sun radiates heat and light.", + "pos": "verb", + "word_frequency": 19417 + }, + { + "word": "regularity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state or quality of being regular.", + "example_sentence_english": "He exercised with great regularity.", + "pos": "noun", + "word_frequency": 19419 + }, + { + "word": "remediation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action of remedying something, especially the reversal or stopping of damage.", + "example_sentence_english": "The school offered remediation classes for struggling students.", + "pos": "noun", + "word_frequency": 19420 + }, + { + "word": "resound", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To fill a place with sound; to be heard loudly.", + "example_sentence_english": "The hall resounded with laughter.", + "pos": "verb", + "word_frequency": 19421 + }, + { + "word": "rondo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A musical form in which a main theme returns several times in alternation with other themes.", + "example_sentence_english": "The final movement of the symphony was a lively rondo.", + "pos": "noun", + "word_frequency": 19423 + }, + { + "word": "scaffold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A temporary structure used to support workers and materials during the construction or repair of a building.", + "example_sentence_english": "The workers erected a scaffold around the building.", + "pos": "noun", + "word_frequency": 19430 + }, + { + "word": "scavenger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An animal that feeds on carrion, dead plant material, or refuse.", + "example_sentence_english": "Vultures are known as scavengers.", + "pos": "noun", + "word_frequency": 19431 + }, + { + "word": "schooner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A sailing ship with two or more masts, typically with fore-and-aft sails.", + "example_sentence_english": "The old schooner sailed gracefully across the bay.", + "pos": "noun", + "word_frequency": 19432 + }, + { + "word": "scion", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A descendant of a notable family.", + "example_sentence_english": "He was a scion of a wealthy banking family.", + "pos": "noun", + "word_frequency": 19433 + }, + { + "word": "secularism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The principle of separation of the state from religious institutions.", + "example_sentence_english": "Secularism advocates for a society free from religious rule.", + "pos": "noun", + "word_frequency": 19435 + }, + { + "word": "servitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state of being a slave or completely subject to someone more powerful.", + "example_sentence_english": "The country abolished all forms of servitude.", + "pos": "noun", + "word_frequency": 19437 + }, + { + "word": "showbiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The entertainment industry.", + "example_sentence_english": "She always dreamed of a career in showbiz.", + "pos": "noun", + "word_frequency": 19439 + }, + { + "word": "sickly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "often ill; weak", + "example_sentence_english": "The sickly child often missed school due to various ailments.", + "pos": "adjective", + "word_frequency": 19440 + }, + { + "word": "snooker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cue sport", + "example_sentence_english": "He enjoys playing snooker with his friends on weekends.", + "pos": "noun", + "word_frequency": 19444 + }, + { + "word": "sprain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to injure a joint by twisting it", + "example_sentence_english": "She managed to sprain her ankle while hiking.", + "pos": "verb", + "word_frequency": 19445 + }, + { + "word": "starling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of bird", + "example_sentence_english": "A large flock of starlings flew overhead at dusk.", + "pos": "noun", + "word_frequency": 19446 + }, + { + "word": "steamboat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boat propelled by a steam engine", + "example_sentence_english": "The old steamboat offered scenic tours along the river.", + "pos": "noun", + "word_frequency": 19447 + }, + { + "word": "stingy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwilling to spend money; ungenerous", + "example_sentence_english": "He's so stingy that he never buys anyone a round of drinks.", + "pos": "adjective", + "word_frequency": 19449 + }, + { + "word": "stuffy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking fresh air; formal and old-fashioned", + "example_sentence_english": "The room felt stuffy after hours with all the windows closed.", + "pos": "adjective", + "word_frequency": 19450 + }, + { + "word": "subversion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the undermining of power or authority", + "example_sentence_english": "The government accused the group of subversion.", + "pos": "noun", + "word_frequency": 19451 + }, + { + "word": "sufficiency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being enough", + "example_sentence_english": "They aimed for self-sufficiency in food production.", + "pos": "noun", + "word_frequency": 19452 + }, + { + "word": "takedown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of bringing down or defeating", + "example_sentence_english": "The wrestler executed a perfect takedown.", + "pos": "noun", + "word_frequency": 19456 + }, + { + "word": "tasteless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacking flavor; offensive", + "example_sentence_english": "The soup was bland and tasteless.", + "pos": "adjective", + "word_frequency": 19458 + }, + { + "word": "tensor", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a mathematical object", + "example_sentence_english": "In physics, a tensor is a geometric object that describes linear relations between geometric vectors, scalars, and other tensors.", + "pos": "noun", + "word_frequency": 19459 + }, + { + "word": "ticker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that displays information; a heart", + "example_sentence_english": "The stock market ticker showed the latest prices.", + "pos": "noun", + "word_frequency": 19461 + }, + { + "word": "tiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slight argument", + "example_sentence_english": "They had a little tiff over who should do the dishes.", + "pos": "noun", + "word_frequency": 19462 + }, + { + "word": "toil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hard and continuous work", + "example_sentence_english": "After years of toil, he finally achieved his dream.", + "pos": "noun", + "word_frequency": 19464 + }, + { + "word": "tomography", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "imaging by sections", + "example_sentence_english": "CT scans use X-ray tomography to create detailed images of the body.", + "pos": "noun", + "word_frequency": 19465 + }, + { + "word": "toon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cartoon character or animation", + "example_sentence_english": "My favorite toon is Bugs Bunny.", + "pos": "noun", + "word_frequency": 19466 + }, + { + "word": "toot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short, sharp sound made by a horn or whistle", + "example_sentence_english": "The train gave a loud toot as it approached the crossing.", + "pos": "noun", + "word_frequency": 19467 + }, + { + "word": "truncate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shorten by cutting off the top or end", + "example_sentence_english": "The data was truncated to fit the display.", + "pos": "verb", + "word_frequency": 19471 + }, + { + "word": "trusty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliable; dependable", + "example_sentence_english": "He always relied on his trusty old car.", + "pos": "adjective", + "word_frequency": 19472 + }, + { + "word": "unconfirmed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not yet verified or established", + "example_sentence_english": "The reports of the incident remain unconfirmed.", + "pos": "adjective", + "word_frequency": 19475 + }, + { + "word": "undetected", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not discovered or noticed", + "example_sentence_english": "The thief managed to escape undetected.", + "pos": "adjective", + "word_frequency": 19476 + }, + { + "word": "uniformity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or state of being uniform", + "example_sentence_english": "The company strives for uniformity in its product quality.", + "pos": "noun", + "word_frequency": 19477 + }, + { + "word": "unjustified", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not deserved or reasonable", + "example_sentence_english": "His anger was completely unjustified.", + "pos": "adjective", + "word_frequency": 19478 + }, + { + "word": "unregistered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not officially recorded or registered", + "example_sentence_english": "The car was unregistered, making it illegal to drive.", + "pos": "adjective", + "word_frequency": 19479 + }, + { + "word": "unsubscribe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cancel a subscription", + "example_sentence_english": "You can unsubscribe from our newsletter at any time.", + "pos": "verb", + "word_frequency": 19480 + }, + { + "word": "untrained", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having been trained", + "example_sentence_english": "The untrained staff struggled with the new software.", + "pos": "adjective", + "word_frequency": 19481 + }, + { + "word": "varnish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a clear protective coating", + "example_sentence_english": "She applied a coat of varnish to the wooden table.", + "pos": "noun", + "word_frequency": 19483 + }, + { + "word": "videogame", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an electronic game played on a screen", + "example_sentence_english": "My brother spends hours playing videogames.", + "pos": "noun", + "word_frequency": 19485 + }, + { + "word": "vigor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strength, energy, or enthusiasm", + "example_sentence_english": "He tackled the project with renewed vigor.", + "pos": "noun", + "word_frequency": 19486 + }, + { + "word": "wag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a playful or humorous person", + "example_sentence_english": "He's quite a wag, always making jokes.", + "pos": "noun", + "word_frequency": 19488 + }, + { + "word": "warhead", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the explosive part of a missile or bomb", + "example_sentence_english": "The missile carried a powerful warhead.", + "pos": "noun", + "word_frequency": 19489 + }, + { + "word": "widower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man whose wife has died and who has not remarried", + "example_sentence_english": "After his wife passed away, he became a widower.", + "pos": "noun", + "word_frequency": 19491 + }, + { + "word": "wobbly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tending to wobble; unsteady", + "example_sentence_english": "The table was a bit wobbly, so we put a book under one leg.", + "pos": "adjective", + "word_frequency": 19493 + }, + { + "word": "wraith", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a ghost or ghostlike image of someone", + "example_sentence_english": "He saw a pale wraith disappear into the mist.", + "pos": "noun", + "word_frequency": 19495 + }, + { + "word": "yank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, forceful pull", + "example_sentence_english": "With a quick yank, he opened the stubborn drawer.", + "pos": "noun", + "word_frequency": 19497 + }, + { + "word": "yew", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an evergreen tree or shrub", + "example_sentence_english": "The ancient yew tree stood tall in the churchyard.", + "pos": "noun", + "word_frequency": 19498 + }, + { + "word": "yugoslav", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person from former Yugoslavia", + "example_sentence_english": "Many Yugoslav immigrants settled in Germany.", + "pos": "noun", + "word_frequency": 19499 + }, + { + "word": "zoological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to zoology or animals", + "example_sentence_english": "The zoological garden houses many rare species.", + "pos": "adjective", + "word_frequency": 19501 + }, + { + "word": "agar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gelatinous substance used in cooking and science", + "example_sentence_english": "Agar is often used as a vegetarian gelling agent.", + "pos": "noun", + "word_frequency": 19505 + }, + { + "word": "agnostic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who believes that nothing is known or can be known of the existence or nature of God", + "example_sentence_english": "He identifies as an agnostic, neither believing nor disbelieving in God.", + "pos": "noun", + "word_frequency": 19506 + }, + { + "word": "airman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who flies or is trained to fly an aircraft", + "example_sentence_english": "The airman completed his training last month.", + "pos": "noun", + "word_frequency": 19507 + }, + { + "word": "amputation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the surgical removal of a limb or body part", + "example_sentence_english": "The doctor performed an amputation to save the patient's life.", + "pos": "noun", + "word_frequency": 19511 + }, + { + "word": "anarchism", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "belief in the abolition of all government", + "example_sentence_english": "Anarchism advocates for a society without rulers.", + "pos": "noun", + "word_frequency": 19512 + }, + { + "word": "antagonistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing or feeling active opposition or hostility", + "example_sentence_english": "Their relationship became increasingly antagonistic.", + "pos": "adjective", + "word_frequency": 19513 + }, + { + "word": "axiom", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a statement or proposition which is regarded as being established, accepted, or self-evidently true", + "example_sentence_english": "It is an axiom that a straight line is the shortest distance between two points.", + "pos": "noun", + "word_frequency": 19516 + }, + { + "word": "banger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sausage; an old car; a great song", + "example_sentence_english": "We had sausages and mash, or 'bangers and mash' as they call it here.", + "pos": "noun", + "word_frequency": 19518 + }, + { + "word": "barista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes and serves coffee drinks", + "example_sentence_english": "The barista made me a perfect latte.", + "pos": "noun", + "word_frequency": 19519 + }, + { + "word": "basalt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A type of dark, fine-grained volcanic rock.", + "example_sentence_english": "The Giant's Causeway is famous for its hexagonal basalt columns.", + "pos": "noun", + "word_frequency": 19520 + }, + { + "word": "beating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An act of hitting someone or something repeatedly; a defeat.", + "example_sentence_english": "The team took a severe beating in the final game.", + "pos": "noun", + "word_frequency": 19522 + }, + { + "word": "belated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Coming or happening later than should have been the case.", + "example_sentence_english": "Please accept my belated birthday wishes.", + "pos": "adjective", + "word_frequency": 19523 + }, + { + "word": "bequeath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To leave (property) to a person or other beneficiary by a will.", + "example_sentence_english": "He bequeathed his entire estate to his niece.", + "pos": "verb", + "word_frequency": 19525 + }, + { + "word": "betterment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act or process of improving something.", + "example_sentence_english": "The organization works for the betterment of society.", + "pos": "noun", + "word_frequency": 19526 + }, + { + "word": "birthright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A particular right of possession or privilege that someone has from birth.", + "example_sentence_english": "Freedom of speech is considered a fundamental birthright.", + "pos": "noun", + "word_frequency": 19527 + }, + { + "word": "blackboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A large board with a smooth, dark surface, used for writing on with chalk.", + "example_sentence_english": "The teacher wrote the new vocabulary words on the blackboard.", + "pos": "noun", + "word_frequency": 19528 + }, + { + "word": "blackwater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Water that has been contaminated by human waste.", + "example_sentence_english": "Proper treatment of blackwater is essential for public health.", + "pos": "noun", + "word_frequency": 19529 + }, + { + "word": "breather", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A short break from work or activity.", + "example_sentence_english": "Let's take a five-minute breather before we continue.", + "pos": "noun", + "word_frequency": 19531 + }, + { + "word": "buckeye", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A North American tree or shrub of the horse chestnut family.", + "example_sentence_english": "The buckeye is the state tree of Ohio.", + "pos": "noun", + "word_frequency": 19533 + }, + { + "word": "bylaw", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rule made by a local authority or corporation.", + "example_sentence_english": "The new bylaw prohibits parking on this street.", + "pos": "noun", + "word_frequency": 19535 + }, + { + "word": "catchment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The area from which rainfall flows into a river, lake, or reservoir.", + "example_sentence_english": "The city's water supply comes from a large catchment area.", + "pos": "noun", + "word_frequency": 19538 + }, + { + "word": "chia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An edible seed from a plant in the mint family, rich in omega-3 fatty acids.", + "example_sentence_english": "Chia seeds are often added to smoothies and yogurts.", + "pos": "noun", + "word_frequency": 19540 + }, + { + "word": "chino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A twilled cotton fabric, typically khaki-colored, used for trousers.", + "example_sentence_english": "He wore a pair of comfortable chino trousers.", + "pos": "noun", + "word_frequency": 19541 + }, + { + "word": "colorless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Without color; lacking distinctive character or interest.", + "example_sentence_english": "Water is a colorless and odorless liquid.", + "pos": "adjective", + "word_frequency": 19542 + }, + { + "word": "concave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Having an outline or surface that curves inward like the interior of a circle or sphere.", + "example_sentence_english": "A concave lens spreads out light rays.", + "pos": "adjective", + "word_frequency": 19543 + }, + { + "word": "consequent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Following as a result or effect.", + "example_sentence_english": "The drought led to a consequent rise in food prices.", + "pos": "adjective", + "word_frequency": 19544 + }, + { + "word": "crucifix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A representation of Christ on the cross.", + "example_sentence_english": "A small crucifix hung on the wall above her bed.", + "pos": "noun", + "word_frequency": 19546 + }, + { + "word": "diarrhoea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A condition in which feces are discharged from the bowels frequently and in a liquid form.", + "example_sentence_english": "He suffered from severe diarrhoea after eating contaminated food.", + "pos": "noun", + "word_frequency": 19548 + }, + { + "word": "disintegration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of breaking into small parts or fragments.", + "example_sentence_english": "The old building was in a state of complete disintegration.", + "pos": "noun", + "word_frequency": 19550 + }, + { + "word": "dissonance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Lack of harmony or agreement.", + "example_sentence_english": "There was a noticeable dissonance between his words and his actions.", + "pos": "noun", + "word_frequency": 19551 + }, + { + "word": "duress", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Threats, violence, constraints, or other action used to coerce someone into doing something against their will or better judgment.", + "example_sentence_english": "He claimed he signed the contract under duress.", + "pos": "noun", + "word_frequency": 19553 + }, + { + "word": "dyslexia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A general term for disorders that involve difficulty in learning to read or interpret words, letters, and other symbols.", + "example_sentence_english": "Children with dyslexia may need special educational support.", + "pos": "noun", + "word_frequency": 19554 + }, + { + "word": "earthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Resembling or characteristic of earth or soil; practical and realistic.", + "example_sentence_english": "The wine had a rich, earthy flavor.", + "pos": "adjective", + "word_frequency": 19555 + }, + { + "word": "embezzlement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Theft or misappropriation of funds placed in one's trust or belonging to one's employer.", + "example_sentence_english": "She was charged with embezzlement of company funds.", + "pos": "noun", + "word_frequency": 19557 + }, + { + "word": "emigrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who leaves their own country in order to settle permanently in another.", + "example_sentence_english": "Many emigrants sent money back to their families.", + "pos": "noun", + "word_frequency": 19558 + }, + { + "word": "enforceable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(Of a law, rule, or obligation) able to be imposed or observed.", + "example_sentence_english": "The contract contains clauses that are legally enforceable.", + "pos": "adjective", + "word_frequency": 19559 + }, + { + "word": "equinox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the time or date (twice each year) at which the sun crosses the celestial equator, when day and night are of equal length", + "example_sentence_english": "The vernal equinox marks the beginning of spring.", + "pos": "noun", + "word_frequency": 19561 + }, + { + "word": "erotica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "literature or art dealing with sexual love in an explicit or stimulating way", + "example_sentence_english": "The bookstore had a section dedicated to erotica.", + "pos": "noun", + "word_frequency": 19563 + }, + { + "word": "escalator", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a moving staircase", + "example_sentence_english": "We took the escalator to the second floor of the department store.", + "pos": "noun", + "word_frequency": 19565 + }, + { + "word": "eulogy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a speech or piece of writing that praises someone or something highly, typically someone who has just died", + "example_sentence_english": "His son delivered a heartfelt eulogy at the funeral.", + "pos": "noun", + "word_frequency": 19566 + }, + { + "word": "eventful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of events or incidents", + "example_sentence_english": "It was an eventful day, full of surprises.", + "pos": "adjective", + "word_frequency": 19567 + }, + { + "word": "excitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of exciting someone or something, or the state of being excited", + "example_sentence_english": "The excitation of the atoms caused them to emit light.", + "pos": "noun", + "word_frequency": 19568 + }, + { + "word": "fanatical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filled with excessive and single-minded zeal", + "example_sentence_english": "He was a fanatical supporter of the local football team.", + "pos": "adjective", + "word_frequency": 19570 + }, + { + "word": "fasten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to attach or close securely", + "example_sentence_english": "Please fasten your seatbelt before the plane takes off.", + "pos": "verb", + "word_frequency": 19571 + }, + { + "word": "fawn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a young deer; a light yellowish-brown color", + "example_sentence_english": "We saw a small fawn grazing in the meadow.", + "pos": "noun", + "word_frequency": 19572 + }, + { + "word": "fluency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to speak or write a particular foreign language easily and accurately", + "example_sentence_english": "Achieving fluency in a second language takes time and practice.", + "pos": "noun", + "word_frequency": 19574 + }, + { + "word": "fructose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sugar found especially in fruit and honey", + "example_sentence_english": "Many fruits are high in natural fructose.", + "pos": "noun", + "word_frequency": 19576 + }, + { + "word": "galvanize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shock or excite (someone) into taking action; to coat (iron or steel) with a protective layer of zinc", + "example_sentence_english": "The urgency of the situation galvanized the team into action.", + "pos": "verb", + "word_frequency": 19578 + }, + { + "word": "geophysical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the physics of the earth", + "example_sentence_english": "The team conducted a geophysical survey of the area.", + "pos": "adjective", + "word_frequency": 19583 + }, + { + "word": "graphene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a form of carbon consisting of a single layer of atoms arranged in a two-dimensional honeycomb lattice", + "example_sentence_english": "Graphene is known for its exceptional strength and conductivity.", + "pos": "noun", + "word_frequency": 19586 + }, + { + "word": "grunge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of rock music characterized by a raucous guitar sound and apathetic or angst-filled lyrics; a style of fashion characterized by a deliberately unkempt look", + "example_sentence_english": "Nirvana was a pioneering band in the grunge music scene.", + "pos": "noun", + "word_frequency": 19589 + }, + { + "word": "hypothesize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put forward (an idea or theory) as a hypothesis", + "example_sentence_english": "Scientists hypothesize that life may exist on other planets.", + "pos": "verb", + "word_frequency": 19598 + }, + { + "word": "illustrative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving as an example or explanation", + "example_sentence_english": "The teacher provided an illustrative example to clarify the concept.", + "pos": "adjective", + "word_frequency": 19601 + }, + { + "word": "incandescent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emitting light as a result of being heated", + "example_sentence_english": "The old house still used incandescent light bulbs.", + "pos": "adjective", + "word_frequency": 19602 + }, + { + "word": "indistinct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not clear or sharply defined", + "example_sentence_english": "The photograph was old and the figures in it were indistinct.", + "pos": "adjective", + "word_frequency": 19603 + }, + { + "word": "infallible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incapable of making mistakes or being wrong", + "example_sentence_english": "Even experts are not infallible; they can make errors.", + "pos": "adjective", + "word_frequency": 19604 + }, + { + "word": "infuriate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone extremely angry", + "example_sentence_english": "His constant interruptions began to infuriate her.", + "pos": "verb", + "word_frequency": 19605 + }, + { + "word": "jolt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, strong, and unpleasant shock or movement", + "example_sentence_english": "The car hit a pothole and gave us a sudden jolt.", + "pos": "noun", + "word_frequency": 19614 + }, + { + "word": "jukebox", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine that plays selected musical recordings when money is inserted", + "example_sentence_english": "We put some coins in the jukebox and played our favorite songs.", + "pos": "noun", + "word_frequency": 19615 + }, + { + "word": "jumpsuit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a one-piece garment combining trousers and a top", + "example_sentence_english": "She wore a stylish blue jumpsuit to the party.", + "pos": "noun", + "word_frequency": 19616 + }, + { + "word": "kerosene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flammable hydrocarbon liquid used as fuel", + "example_sentence_english": "The lamp burned brightly with kerosene.", + "pos": "noun", + "word_frequency": 19620 + }, + { + "word": "likeable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasant, friendly, and easy to like", + "example_sentence_english": "He was a very likeable person, always smiling.", + "pos": "adjective", + "word_frequency": 19623 + }, + { + "word": "magenta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light purplish-red color", + "example_sentence_english": "The sunset painted the sky in shades of orange and magenta.", + "pos": "noun", + "word_frequency": 19625 + }, + { + "word": "methodical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "done according to a systematic or established procedure", + "example_sentence_english": "She approached the task in a very methodical way.", + "pos": "adjective", + "word_frequency": 19631 + }, + { + "word": "mince", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut up or grind (food, especially meat) into very small pieces", + "example_sentence_english": "Please mince the garlic finely for the sauce.", + "pos": "verb", + "word_frequency": 19633 + }, + { + "word": "monogram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a motif of two or more letters, typically a person's initials, interwoven or combined into one design", + "example_sentence_english": "The towels were embroidered with a beautiful monogram.", + "pos": "noun", + "word_frequency": 19635 + }, + { + "word": "moray", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of large, predatory eel", + "example_sentence_english": "Divers spotted a large moray eel hiding in the coral.", + "pos": "noun", + "word_frequency": 19636 + }, + { + "word": "mythic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or resembling a myth; legendary", + "example_sentence_english": "The hero embarked on a mythic quest to save the kingdom.", + "pos": "adjective", + "word_frequency": 19639 + }, + { + "word": "nacho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dish of tortilla chips with melted cheese and other toppings", + "example_sentence_english": "We ordered a large plate of nachos to share.", + "pos": "noun", + "word_frequency": 19640 + }, + { + "word": "nanotechnology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of technology that deals with dimensions and tolerances of less than 100 nanometers", + "example_sentence_english": "Nanotechnology has the potential to revolutionize many industries.", + "pos": "noun", + "word_frequency": 19641 + }, + { + "word": "nobleman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man of noble birth or rank", + "example_sentence_english": "The nobleman owned vast estates in the countryside.", + "pos": "noun", + "word_frequency": 19643 + }, + { + "word": "optimist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who tends to be hopeful and confident about the future", + "example_sentence_english": "She's such an optimist; she always sees the good in every situation.", + "pos": "noun", + "word_frequency": 19646 + }, + { + "word": "overlord", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a ruler, especially one who is supreme over other rulers", + "example_sentence_english": "The feudal overlord demanded tribute from his vassals.", + "pos": "noun", + "word_frequency": 19648 + }, + { + "word": "overuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the excessive or harmful use of something", + "example_sentence_english": "The overuse of antibiotics can lead to drug resistance.", + "pos": "noun", + "word_frequency": 19649 + }, + { + "word": "papacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the office or authority of the Pope", + "example_sentence_english": "The papacy has played a significant role in European history.", + "pos": "noun", + "word_frequency": 19651 + }, + { + "word": "phonetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to speech sounds", + "example_sentence_english": "The phonetic transcription helps learners pronounce words correctly.", + "pos": "adjective", + "word_frequency": 19654 + }, + { + "word": "photovoltaic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the direct conversion of light into electricity", + "example_sentence_english": "Photovoltaic cells are used to generate solar power.", + "pos": "adjective", + "word_frequency": 19655 + }, + { + "word": "pied", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having two or more different colors", + "example_sentence_english": "The pied piper led the children away.", + "pos": "adjective", + "word_frequency": 19657 + }, + { + "word": "poodle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a breed of dog with a curly coat", + "example_sentence_english": "My aunt has a small white poodle.", + "pos": "noun", + "word_frequency": 19661 + }, + { + "word": "populism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a political approach that strives to appeal to ordinary people", + "example_sentence_english": "The rise of populism has reshaped political landscapes in many countries.", + "pos": "noun", + "word_frequency": 19662 + }, + { + "word": "pus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thick yellowish or greenish opaque liquid produced in infected tissue", + "example_sentence_english": "The doctor drained the pus from the infected wound.", + "pos": "noun", + "word_frequency": 19663 + }, + { + "word": "racetrack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a track for racing, especially horses or cars", + "example_sentence_english": "They spent the afternoon at the racetrack watching the horses.", + "pos": "noun", + "word_frequency": 19664 + }, + { + "word": "rescind", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revoke, cancel, or repeal (a law, order, or agreement)", + "example_sentence_english": "The company decided to rescind its offer of employment.", + "pos": "verb", + "word_frequency": 19665 + }, + { + "word": "roadblock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a barrier placed across a road to stop or slow traffic; an obstacle", + "example_sentence_english": "Negotiations hit a roadblock over funding issues.", + "pos": "noun", + "word_frequency": 19667 + }, + { + "word": "roadshow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a promotional tour or series of events", + "example_sentence_english": "The band went on a roadshow to promote their new album.", + "pos": "noun", + "word_frequency": 19668 + }, + { + "word": "rsvp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "please respond (used to request a reply to an invitation)", + "example_sentence_english": "Please RSVP by the end of the week so we can get a headcount.", + "pos": "noun", + "word_frequency": 19669 + }, + { + "word": "sandbox", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a shallow box or hollow in the ground containing sand for children to play in; a safe environment for experimentation", + "example_sentence_english": "The children were playing happily in the sandbox.", + "pos": "noun", + "word_frequency": 19671 + }, + { + "word": "seagull", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, common seabird with long wings and typically white and grey plumage", + "example_sentence_english": "Seagulls often gather near the coast, looking for food.", + "pos": "noun", + "word_frequency": 19674 + }, + { + "word": "shag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tangled mass of hair or fiber", + "example_sentence_english": "The old carpet had a thick shag.", + "pos": "noun", + "word_frequency": 19675 + }, + { + "word": "shifter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for changing gear in a vehicle; a person or thing that shifts", + "example_sentence_english": "He pushed the gear shifter into reverse.", + "pos": "noun", + "word_frequency": 19678 + }, + { + "word": "shoemaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose trade is making or repairing shoes", + "example_sentence_english": "The old shoemaker carefully repaired the worn-out boots.", + "pos": "noun", + "word_frequency": 19679 + }, + { + "word": "shortfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficit; shortage", + "example_sentence_english": "There was a significant shortfall in the expected revenue.", + "pos": "noun", + "word_frequency": 19680 + }, + { + "word": "sift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to separate; to examine thoroughly", + "example_sentence_english": "She had to sift through a lot of information to find the truth.", + "pos": "verb", + "word_frequency": 19682 + }, + { + "word": "silo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tower for storing grain; a system that operates in isolation", + "example_sentence_english": "The farm had several large silos for corn.", + "pos": "noun", + "word_frequency": 19683 + }, + { + "word": "smother", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffocate; to cover completely", + "example_sentence_english": "She tried to smother the flames with a blanket.", + "pos": "verb", + "word_frequency": 19685 + }, + { + "word": "socialization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of learning to behave in a way that is acceptable to society", + "example_sentence_english": "Early childhood socialization is crucial for development.", + "pos": "noun", + "word_frequency": 19686 + }, + { + "word": "soot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "black powdery substance from burning", + "example_sentence_english": "The chimney was covered in black soot.", + "pos": "noun", + "word_frequency": 19687 + }, + { + "word": "speck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tiny spot or piece", + "example_sentence_english": "There was a tiny speck of dust on the lens.", + "pos": "noun", + "word_frequency": 19691 + }, + { + "word": "stylus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pen-like instrument for touchscreens or records", + "example_sentence_english": "He used a stylus to draw on his tablet.", + "pos": "noun", + "word_frequency": 19695 + }, + { + "word": "subclass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a division of a class", + "example_sentence_english": "In biology, a family can be divided into subclasses.", + "pos": "noun", + "word_frequency": 19696 + }, + { + "word": "sumptuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "splendid and expensive-looking", + "example_sentence_english": "They enjoyed a sumptuous feast at the palace.", + "pos": "adjective", + "word_frequency": 19698 + }, + { + "word": "suture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stitch or seam used to close a wound", + "example_sentence_english": "The doctor used fine sutures to close the incision.", + "pos": "noun", + "word_frequency": 19699 + }, + { + "word": "synaptic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a synapse", + "example_sentence_english": "Synaptic connections are crucial for brain function.", + "pos": "adjective", + "word_frequency": 19700 + }, + { + "word": "tailgate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the hinged board at the back of a vehicle", + "example_sentence_english": "He lowered the tailgate of the truck to load the boxes.", + "pos": "noun", + "word_frequency": 19701 + }, + { + "word": "tenuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very weak or slight", + "example_sentence_english": "The connection between the two events was tenuous.", + "pos": "adjective", + "word_frequency": 19702 + }, + { + "word": "topographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the arrangement of the natural and artificial physical features of an area", + "example_sentence_english": "They studied the topographic map to plan their hike.", + "pos": "adjective", + "word_frequency": 19705 + }, + { + "word": "tranquility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being calm and peaceful", + "example_sentence_english": "She sought the tranquility of the countryside.", + "pos": "noun", + "word_frequency": 19707 + }, + { + "word": "tuscan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Tuscany, Italy", + "example_sentence_english": "They admired the beautiful Tuscan landscape.", + "pos": "adjective", + "word_frequency": 19708 + }, + { + "word": "tutu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ballet dancer's costume", + "example_sentence_english": "The ballerina wore a pink tutu.", + "pos": "noun", + "word_frequency": 19709 + }, + { + "word": "umbilical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the navel or umbilical cord", + "example_sentence_english": "The baby's umbilical cord was clamped.", + "pos": "adjective", + "word_frequency": 19711 + }, + { + "word": "unhinged", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mentally unbalanced; deranged", + "example_sentence_english": "His behavior became increasingly unhinged.", + "pos": "adjective", + "word_frequency": 19712 + }, + { + "word": "uninterested", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not interested", + "example_sentence_english": "He seemed completely uninterested in the conversation.", + "pos": "adjective", + "word_frequency": 19713 + }, + { + "word": "uterine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the uterus", + "example_sentence_english": "Uterine contractions are a sign of labor.", + "pos": "adjective", + "word_frequency": 19715 + }, + { + "word": "vapour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance diffused or suspended in the air", + "example_sentence_english": "Steam is a form of water vapour.", + "pos": "noun", + "word_frequency": 19717 + }, + { + "word": "veer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change direction suddenly", + "example_sentence_english": "The car suddenly veered off the road.", + "pos": "verb", + "word_frequency": 19719 + }, + { + "word": "whereupon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "after which; at which point", + "example_sentence_english": "He finished his speech, whereupon the audience applauded.", + "pos": "adverb", + "word_frequency": 19723 + }, + { + "word": "wither", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dry up and decay", + "example_sentence_english": "Without water, the plants will wither.", + "pos": "verb", + "word_frequency": 19726 + }, + { + "word": "wobble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move unsteadily from side to side", + "example_sentence_english": "The table began to wobble when he leaned on it.", + "pos": "verb", + "word_frequency": 19728 + }, + { + "word": "zed", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the letter Z", + "example_sentence_english": "In British English, the last letter of the alphabet is called zed.", + "pos": "noun", + "word_frequency": 19733 + }, + { + "word": "abridge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shorten (a book, movie, etc.) without losing the sense", + "example_sentence_english": "The editor decided to abridge the novel for younger readers.", + "pos": "verb", + "word_frequency": 19736 + }, + { + "word": "acacia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tree or shrub of warm climates", + "example_sentence_english": "The acacia tree has beautiful yellow flowers.", + "pos": "noun", + "word_frequency": 19737 + }, + { + "word": "aggressor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or country that attacks first", + "example_sentence_english": "The aggressor nation launched an unprovoked attack.", + "pos": "noun", + "word_frequency": 19738 + }, + { + "word": "ambivalent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having mixed feelings or contradictory ideas about something or someone", + "example_sentence_english": "She felt ambivalent about moving to a new city.", + "pos": "adjective", + "word_frequency": 19740 + }, + { + "word": "amethyst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a precious stone of a clear purple or bluish violet color", + "example_sentence_english": "Her necklace had a beautiful amethyst pendant.", + "pos": "noun", + "word_frequency": 19741 + }, + { + "word": "antimicrobial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "active against microbes", + "example_sentence_english": "Many cleaning products have antimicrobial properties.", + "pos": "adjective", + "word_frequency": 19744 + }, + { + "word": "babylonian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to ancient Babylon or its empire", + "example_sentence_english": "The museum displayed ancient Babylonian artifacts.", + "pos": "adjective", + "word_frequency": 19747 + }, + { + "word": "berserk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "out of control with anger or excitement; wild or frenzied", + "example_sentence_english": "The crowd went berserk when their team scored.", + "pos": "adjective", + "word_frequency": 19750 + }, + { + "word": "bicker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to argue about petty things", + "example_sentence_english": "The children would often bicker over toys.", + "pos": "verb", + "word_frequency": 19752 + }, + { + "word": "bovine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to cattle", + "example_sentence_english": "The farm specializes in bovine livestock.", + "pos": "adjective", + "word_frequency": 19755 + }, + { + "word": "braille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of reading and writing for the blind", + "example_sentence_english": "Books in braille allow visually impaired people to read.", + "pos": "noun", + "word_frequency": 19756 + }, + { + "word": "candlelight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the light from a candle or candles", + "example_sentence_english": "They enjoyed a romantic dinner by candlelight.", + "pos": "noun", + "word_frequency": 19758 + }, + { + "word": "cannibalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of eating the flesh of one's own species", + "example_sentence_english": "Cases of cannibalism are rare in modern society.", + "pos": "noun", + "word_frequency": 19759 + }, + { + "word": "captivate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attract and hold the attention of", + "example_sentence_english": "Her performance managed to captivate the entire audience.", + "pos": "verb", + "word_frequency": 19761 + }, + { + "word": "catapult", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for launching objects", + "example_sentence_english": "The ancient army used a catapult to hurl stones at the castle walls.", + "pos": "noun", + "word_frequency": 19762 + }, + { + "word": "cervix", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the narrow necklike passage forming the lower end of the uterus", + "example_sentence_english": "The doctor examined the patient's cervix during the check-up.", + "pos": "noun", + "word_frequency": 19767 + }, + { + "word": "cheery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happy and optimistic", + "example_sentence_english": "She always has a cheery disposition, even on Mondays.", + "pos": "adjective", + "word_frequency": 19768 + }, + { + "word": "chit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a short note or memorandum", + "example_sentence_english": "The waiter handed him a chit for the drinks.", + "pos": "noun", + "word_frequency": 19769 + }, + { + "word": "cog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tooth on the rim of a wheel or gear", + "example_sentence_english": "Each cog in the machine plays a vital role.", + "pos": "noun", + "word_frequency": 19773 + }, + { + "word": "coloration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the natural coloring of an animal or plant", + "example_sentence_english": "The bird's vibrant coloration helps it attract a mate.", + "pos": "noun", + "word_frequency": 19774 + }, + { + "word": "connective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serving to connect", + "example_sentence_english": "Connective tissue provides support and binds other tissues together.", + "pos": "adjective", + "word_frequency": 19775 + }, + { + "word": "crony", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a close friend or companion", + "example_sentence_english": "He was accused of appointing his cronies to high-ranking positions.", + "pos": "noun", + "word_frequency": 19777 + }, + { + "word": "crusty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a crisp outer layer", + "example_sentence_english": "We enjoyed the warm, crusty bread with our soup.", + "pos": "adjective", + "word_frequency": 19778 + }, + { + "word": "cumin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an aromatic spice", + "example_sentence_english": "Add a teaspoon of cumin to the chili for extra flavor.", + "pos": "noun", + "word_frequency": 19779 + }, + { + "word": "cutlery", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "knives, forks, and spoons used for eating", + "example_sentence_english": "Please set the table with the clean cutlery.", + "pos": "noun", + "word_frequency": 19780 + }, + { + "word": "decal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a design prepared on special paper for transfer onto another surface", + "example_sentence_english": "She put a decorative decal on her laptop cover.", + "pos": "noun", + "word_frequency": 19782 + }, + { + "word": "deciduous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a tree or shrub) shedding its leaves annually", + "example_sentence_english": "Oak trees are deciduous, losing their leaves in autumn.", + "pos": "adjective", + "word_frequency": 19783 + }, + { + "word": "degenerative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a disease or condition) characterized by progressive deterioration", + "example_sentence_english": "Alzheimer's is a degenerative disease affecting the brain.", + "pos": "adjective", + "word_frequency": 19784 + }, + { + "word": "detract", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reduce or take away the worth or value of", + "example_sentence_english": "His rude comments did not detract from the overall success of the event.", + "pos": "verb", + "word_frequency": 19787 + }, + { + "word": "dissection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of cutting apart a body or plant for study", + "example_sentence_english": "The biology class performed a dissection of a frog.", + "pos": "noun", + "word_frequency": 19788 + }, + { + "word": "dissimilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not alike; different", + "example_sentence_english": "Despite their dissimilar backgrounds, they became good friends.", + "pos": "adjective", + "word_frequency": 19789 + }, + { + "word": "dissuade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to persuade someone not to take a particular course of action", + "example_sentence_english": "We tried to dissuade him from quitting his job, but he was determined.", + "pos": "verb", + "word_frequency": 19790 + }, + { + "word": "distillation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of purifying a liquid by heating and cooling", + "example_sentence_english": "The distillation process separates alcohol from water.", + "pos": "noun", + "word_frequency": 19791 + }, + { + "word": "drab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dull and uninteresting", + "example_sentence_english": "The old building had a drab, gray exterior.", + "pos": "adjective", + "word_frequency": 19792 + }, + { + "word": "eggplant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a purple vegetable, also known as aubergine", + "example_sentence_english": "She made a delicious dish with roasted eggplant and tomatoes.", + "pos": "noun", + "word_frequency": 19796 + }, + { + "word": "engraving", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a print made from an engraved plate", + "example_sentence_english": "The museum displayed an old engraving of the city skyline.", + "pos": "noun", + "word_frequency": 19798 + }, + { + "word": "enmity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or feeling of being actively opposed or hostile to someone or something", + "example_sentence_english": "There was a long-standing enmity between the two rival families.", + "pos": "noun", + "word_frequency": 19799 + }, + { + "word": "eucalyptus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eucalyptus", + "example_sentence_english": "The koala was eating eucalyptus leaves.", + "pos": "noun", + "word_frequency": 19800 + }, + { + "word": "exhibitor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibitor", + "example_sentence_english": "The exhibitor showcased their new product at the trade show.", + "pos": "noun", + "word_frequency": 19802 + }, + { + "word": "exorbitant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive, unreasonably high", + "example_sentence_english": "The hotel charged an exorbitant price for a small room.", + "pos": "adjective", + "word_frequency": 19804 + }, + { + "word": "expat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expatriate", + "example_sentence_english": "Many expats live in Dubai for work.", + "pos": "noun", + "word_frequency": 19805 + }, + { + "word": "experimentally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an experimental way", + "example_sentence_english": "The new drug is being tested experimentally.", + "pos": "adverb", + "word_frequency": 19806 + }, + { + "word": "fecal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to feces", + "example_sentence_english": "The lab test detected fecal matter in the sample.", + "pos": "adjective", + "word_frequency": 19807 + }, + { + "word": "ferret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ferret", + "example_sentence_english": "A ferret is a small, domesticated mammal.", + "pos": "noun", + "word_frequency": 19808 + }, + { + "word": "financier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person involved in finance", + "example_sentence_english": "The wealthy financier invested heavily in new startups.", + "pos": "noun", + "word_frequency": 19809 + }, + { + "word": "flagrant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obviously offensive", + "example_sentence_english": "It was a flagrant violation of the rules.", + "pos": "adjective", + "word_frequency": 19810 + }, + { + "word": "florist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flower seller", + "example_sentence_english": "I bought a bouquet of roses from the florist.", + "pos": "noun", + "word_frequency": 19811 + }, + { + "word": "foreplay", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual activity preceding intercourse", + "example_sentence_english": "Foreplay is an important part of intimacy.", + "pos": "noun", + "word_frequency": 19812 + }, + { + "word": "garb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clothing, attire", + "example_sentence_english": "The monks wore traditional garb.", + "pos": "noun", + "word_frequency": 19815 + }, + { + "word": "glaucoma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a group of eye conditions", + "example_sentence_english": "Glaucoma can lead to blindness if not treated.", + "pos": "noun", + "word_frequency": 19819 + }, + { + "word": "goosebump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goosebump", + "example_sentence_english": "The cold air gave me goosebumps.", + "pos": "noun", + "word_frequency": 19820 + }, + { + "word": "granular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consisting of grains; detailed", + "example_sentence_english": "The report provided granular data on sales.", + "pos": "adjective", + "word_frequency": 19822 + }, + { + "word": "greenish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhat green", + "example_sentence_english": "The water had a greenish tint.", + "pos": "adjective", + "word_frequency": 19823 + }, + { + "word": "grocer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who sells food", + "example_sentence_english": "I bought fresh vegetables from the grocer.", + "pos": "noun", + "word_frequency": 19824 + }, + { + "word": "grope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to feel about blindly or uncertainly", + "example_sentence_english": "He had to grope in the dark for the light switch.", + "pos": "verb", + "word_frequency": 19825 + }, + { + "word": "headless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without a head", + "example_sentence_english": "The headless statue stood in the garden.", + "pos": "adjective", + "word_frequency": 19827 + }, + { + "word": "hibernation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of inactivity and metabolic depression in endotherms", + "example_sentence_english": "Bears go into hibernation during the winter.", + "pos": "noun", + "word_frequency": 19830 + }, + { + "word": "hindrance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an obstacle or impediment", + "example_sentence_english": "Lack of funding was a major hindrance to the project.", + "pos": "noun", + "word_frequency": 19831 + }, + { + "word": "hula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Hawaiian dance", + "example_sentence_english": "She learned to dance the hula on her trip to Hawaii.", + "pos": "noun", + "word_frequency": 19832 + }, + { + "word": "immunization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making a person or animal immune to infection", + "example_sentence_english": "Childhood immunization is crucial for public health.", + "pos": "noun", + "word_frequency": 19835 + }, + { + "word": "implantation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of implanting", + "example_sentence_english": "The implantation of the device was successful.", + "pos": "noun", + "word_frequency": 19836 + }, + { + "word": "inaccuracy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being inaccurate", + "example_sentence_english": "There were several inaccuracies in the report.", + "pos": "noun", + "word_frequency": 19837 + }, + { + "word": "inanimate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not alive", + "example_sentence_english": "Rocks are inanimate objects.", + "pos": "adjective", + "word_frequency": 19838 + }, + { + "word": "inexplicably", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that cannot be explained", + "example_sentence_english": "The lights went out inexplicably.", + "pos": "adverb", + "word_frequency": 19840 + }, + { + "word": "infield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the area of a baseball field enclosed by the bases", + "example_sentence_english": "The shortstop made a great play in the infield.", + "pos": "noun", + "word_frequency": 19841 + }, + { + "word": "intermission", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pause or break", + "example_sentence_english": "We bought popcorn during the intermission.", + "pos": "noun", + "word_frequency": 19842 + }, + { + "word": "irreplaceable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to replace", + "example_sentence_english": "Her contribution to the team was irreplaceable.", + "pos": "adjective", + "word_frequency": 19844 + }, + { + "word": "kanji", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Japanese characters derived from Chinese characters", + "example_sentence_english": "Learning kanji is a big challenge for Japanese learners.", + "pos": "noun", + "word_frequency": 19845 + }, + { + "word": "kush", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strain of cannabis", + "example_sentence_english": "Some people prefer the effects of Kush.", + "pos": "noun", + "word_frequency": 19850 + }, + { + "word": "landline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a traditional telephone connection", + "example_sentence_english": "Many homes no longer have a landline phone.", + "pos": "noun", + "word_frequency": 19851 + }, + { + "word": "legislate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or enact laws", + "example_sentence_english": "Parliament will legislate on the new policy next month.", + "pos": "verb", + "word_frequency": 19852 + }, + { + "word": "lingo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a particular language or jargon", + "example_sentence_english": "I don't understand all the technical lingo.", + "pos": "noun", + "word_frequency": 19854 + }, + { + "word": "matron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a married woman, especially a dignified or elderly one", + "example_sentence_english": "The head nurse was a stern but fair matron.", + "pos": "noun", + "word_frequency": 19859 + }, + { + "word": "meaty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of meat; substantial", + "example_sentence_english": "The stew was full of meaty chunks of beef.", + "pos": "adjective", + "word_frequency": 19863 + }, + { + "word": "momo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of dumpling native to Tibet and Nepal", + "example_sentence_english": "We ordered a plate of delicious momos for lunch.", + "pos": "noun", + "word_frequency": 19865 + }, + { + "word": "mouthful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a quantity of food or drink that fills the mouth", + "example_sentence_english": "He took a big mouthful of pie.", + "pos": "noun", + "word_frequency": 19866 + }, + { + "word": "mutton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the flesh of sheep, especially mature sheep, used as food", + "example_sentence_english": "The recipe called for tender mutton.", + "pos": "noun", + "word_frequency": 19869 + }, + { + "word": "neoliberal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a modified form of liberalism tending to favor free-market capitalism", + "example_sentence_english": "The government adopted a neoliberal economic policy.", + "pos": "adjective", + "word_frequency": 19872 + }, + { + "word": "nestle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to settle or lie comfortably within or against something", + "example_sentence_english": "The cat loved to nestle in her owner's lap.", + "pos": "verb", + "word_frequency": 19873 + }, + { + "word": "numeric", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to or expressed as a number or numbers", + "example_sentence_english": "Please enter the numeric code.", + "pos": "adjective", + "word_frequency": 19876 + }, + { + "word": "oar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pole with a flat blade, used to propel a boat", + "example_sentence_english": "He dipped the oar into the water and pulled.", + "pos": "noun", + "word_frequency": 19879 + }, + { + "word": "ohm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unit of electrical resistance", + "example_sentence_english": "The resistance of the circuit was measured in ohms.", + "pos": "noun", + "word_frequency": 19881 + }, + { + "word": "oop", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "object-oriented programming", + "example_sentence_english": "Many modern software applications are built using OOP principles.", + "pos": "noun", + "word_frequency": 19883 + }, + { + "word": "orc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mythical monstrous humanoid creature", + "example_sentence_english": "In fantasy stories, orcs are often depicted as green-skinned and brutish.", + "pos": "noun", + "word_frequency": 19884 + }, + { + "word": "outfielder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player in baseball who plays in the outfield", + "example_sentence_english": "The center fielder made an amazing catch.", + "pos": "noun", + "word_frequency": 19885 + }, + { + "word": "outflow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flow outwards", + "example_sentence_english": "There was a significant outflow of capital from the country.", + "pos": "noun", + "word_frequency": 19886 + }, + { + "word": "outperform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perform better than", + "example_sentence_english": "The company managed to outperform its competitors this quarter.", + "pos": "verb", + "word_frequency": 19887 + }, + { + "word": "overture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an introduction to something more substantial", + "example_sentence_english": "The orchestra began with an overture before the main opera.", + "pos": "noun", + "word_frequency": 19888 + }, + { + "word": "passively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a passive manner", + "example_sentence_english": "He listened passively to the lecture, not taking any notes.", + "pos": "adverb", + "word_frequency": 19891 + }, + { + "word": "peddle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sell goods, especially small articles, by going from place to place", + "example_sentence_english": "He used to peddle newspapers on the street corner.", + "pos": "verb", + "word_frequency": 19893 + }, + { + "word": "pepperoni", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a spicy Italian sausage, often used on pizza", + "example_sentence_english": "I'd like a pizza with extra pepperoni, please.", + "pos": "noun", + "word_frequency": 19894 + }, + { + "word": "perforate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pierce and make a hole or holes in", + "example_sentence_english": "The machine is designed to perforate the paper for easy tearing.", + "pos": "verb", + "word_frequency": 19895 + }, + { + "word": "pitchfork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long-handled tool with two or three long, thick, pointed prongs, used for lifting and tossing hay", + "example_sentence_english": "The farmer used a pitchfork to move the hay.", + "pos": "noun", + "word_frequency": 19898 + }, + { + "word": "placid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not easily upset or excited; calm and peaceful", + "example_sentence_english": "The placid lake reflected the clear blue sky.", + "pos": "adjective", + "word_frequency": 19899 + }, + { + "word": "pleistocene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the geological epoch that extended from 2.58 million to 11,700 years ago", + "example_sentence_english": "Many large mammals lived during the Pleistocene epoch.", + "pos": "adjective", + "word_frequency": 19900 + }, + { + "word": "pox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disease characterized by skin eruptions", + "example_sentence_english": "Chickenpox is a common childhood illness.", + "pos": "noun", + "word_frequency": 19901 + }, + { + "word": "pretense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an attempt to make something that is not the case appear true", + "example_sentence_english": "He made a pretense of being busy, but he was actually doing nothing.", + "pos": "noun", + "word_frequency": 19902 + }, + { + "word": "principled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acting in accordance with morality and good behavior", + "example_sentence_english": "She is a very principled person who always stands up for what is right.", + "pos": "adjective", + "word_frequency": 19903 + }, + { + "word": "progesterone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a steroid hormone released by the corpus luteum that stimulates the uterus to prepare for pregnancy", + "example_sentence_english": "Progesterone plays a crucial role in the menstrual cycle and pregnancy.", + "pos": "noun", + "word_frequency": 19904 + }, + { + "word": "puritan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a group of English Protestants of the late 16th and 17th centuries who regarded the Reformation of the Church of England under Elizabeth I as incomplete and sought to simplify and regulate forms of worship", + "example_sentence_english": "The Puritans sailed to America seeking religious freedom.", + "pos": "noun", + "word_frequency": 19905 + }, + { + "word": "quart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of liquid capacity equal to a quarter of a gallon or two pints", + "example_sentence_english": "I bought a quart of milk from the store.", + "pos": "noun", + "word_frequency": 19906 + }, + { + "word": "quinoa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a grain-like crop grown primarily for its edible seeds", + "example_sentence_english": "Quinoa is a healthy alternative to rice or pasta.", + "pos": "noun", + "word_frequency": 19907 + }, + { + "word": "rabble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disorderly crowd; a mob", + "example_sentence_english": "The speaker tried to calm the angry rabble.", + "pos": "noun", + "word_frequency": 19908 + }, + { + "word": "rafter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one of several internal beams extending from the eaves to the ridge of a roof, supporting the roof covering", + "example_sentence_english": "The old barn had exposed wooden rafters.", + "pos": "noun", + "word_frequency": 19909 + }, + { + "word": "rationing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the controlled distribution of scarce resources, goods, or services", + "example_sentence_english": "During the war, there was strict rationing of food and fuel.", + "pos": "noun", + "word_frequency": 19910 + }, + { + "word": "reappear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appear again", + "example_sentence_english": "After a long absence, the sun finally reappeared from behind the clouds.", + "pos": "verb", + "word_frequency": 19911 + }, + { + "word": "rearrange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change the position or arrangement of something", + "example_sentence_english": "She decided to rearrange the furniture in her living room.", + "pos": "verb", + "word_frequency": 19912 + }, + { + "word": "redeemer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who redeems someone or something", + "example_sentence_english": "Many Christians believe in Jesus Christ as their Redeemer.", + "pos": "noun", + "word_frequency": 19913 + }, + { + "word": "refreshment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light snack or drink", + "example_sentence_english": "Light refreshments will be served after the meeting.", + "pos": "noun", + "word_frequency": 19914 + }, + { + "word": "reissue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a new issue or version of a previously released item", + "example_sentence_english": "The band announced a special reissue of their classic album.", + "pos": "noun", + "word_frequency": 19915 + }, + { + "word": "repulse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drive back (an attack or attacker) by force", + "example_sentence_english": "The defenders managed to repulse the enemy attack.", + "pos": "verb", + "word_frequency": 19916 + }, + { + "word": "resistor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an electrical component that resists the flow of current", + "example_sentence_english": "A resistor is used to limit the current in an electronic circuit.", + "pos": "noun", + "word_frequency": 19917 + }, + { + "word": "rhapsody", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an effusively enthusiastic or ecstatic expression of feeling", + "example_sentence_english": "The pianist played a beautiful rhapsody by Liszt.", + "pos": "noun", + "word_frequency": 19918 + }, + { + "word": "roux", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A mixture of fat and flour used as a base for sauces", + "example_sentence_english": "First, make a roux with butter and flour for the cheese sauce.", + "pos": "noun", + "word_frequency": 19922 + }, + { + "word": "ruddy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having a healthy red color", + "example_sentence_english": "His face was ruddy from the cold wind.", + "pos": "adjective", + "word_frequency": 19923 + }, + { + "word": "rune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A letter of an ancient Germanic alphabet", + "example_sentence_english": "The ancient stone was carved with mysterious runes.", + "pos": "noun", + "word_frequency": 19924 + }, + { + "word": "sahib", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A respectful term for a European man in colonial India", + "example_sentence_english": "The local villagers addressed him as 'sahib'.", + "pos": "noun", + "word_frequency": 19925 + }, + { + "word": "salam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A greeting, especially in Arabic-speaking countries", + "example_sentence_english": "He greeted his friend with a warm 'salam'.", + "pos": "noun", + "word_frequency": 19926 + }, + { + "word": "saucepan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A deep cooking pan with a handle", + "example_sentence_english": "She heated the soup in a small saucepan.", + "pos": "noun", + "word_frequency": 19928 + }, + { + "word": "schism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A split or division between strongly opposed parties", + "example_sentence_english": "The church experienced a major schism over doctrinal differences.", + "pos": "noun", + "word_frequency": 19930 + }, + { + "word": "seer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who can see the future", + "example_sentence_english": "The ancient seer predicted a time of great change.", + "pos": "noun", + "word_frequency": 19931 + }, + { + "word": "sepsis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A life-threatening condition caused by the body's response to infection", + "example_sentence_english": "Early diagnosis is crucial for treating sepsis effectively.", + "pos": "noun", + "word_frequency": 19932 + }, + { + "word": "sharpness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The quality of being sharp", + "example_sentence_english": "The chef tested the sharpness of the knife.", + "pos": "noun", + "word_frequency": 19934 + }, + { + "word": "shelve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To place on a shelf; to postpone or put aside", + "example_sentence_english": "They decided to shelve the project until next year.", + "pos": "verb", + "word_frequency": 19935 + }, + { + "word": "skydive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To jump from an aircraft and fall freely before opening a parachute", + "example_sentence_english": "She decided to skydive for her 30th birthday.", + "pos": "verb", + "word_frequency": 19938 + }, + { + "word": "smite", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "To strike with a firm blow; to affect suddenly and powerfully", + "example_sentence_english": "The hero vowed to smite his enemies.", + "pos": "verb", + "word_frequency": 19939 + }, + { + "word": "snappy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Quick and energetic; stylish", + "example_sentence_english": "He gave a snappy answer to the question.", + "pos": "adjective", + "word_frequency": 19940 + }, + { + "word": "snort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To make a sudden sound through the nose", + "example_sentence_english": "The horse gave a loud snort.", + "pos": "verb", + "word_frequency": 19941 + }, + { + "word": "snowboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A board used for gliding over snow", + "example_sentence_english": "He bought a new snowboard for the winter season.", + "pos": "noun", + "word_frequency": 19942 + }, + { + "word": "solitaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A card game played by one person; a single gem set alone", + "example_sentence_english": "She spent the afternoon playing solitaire on her computer.", + "pos": "noun", + "word_frequency": 19943 + }, + { + "word": "sportsmanship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Fair and generous behavior or treatment of others, especially in a sports contest", + "example_sentence_english": "Good sportsmanship is essential in any competition.", + "pos": "noun", + "word_frequency": 19946 + }, + { + "word": "stanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A group of lines forming the basic recurring metrical unit in a poem or verse", + "example_sentence_english": "The poem consisted of three stanzas.", + "pos": "noun", + "word_frequency": 19947 + }, + { + "word": "stipend", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A fixed regular sum paid as a salary or allowance", + "example_sentence_english": "The intern received a small stipend to cover living expenses.", + "pos": "noun", + "word_frequency": 19948 + }, + { + "word": "subside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To become less intense, violent, or severe", + "example_sentence_english": "The floodwaters began to subside after the heavy rain.", + "pos": "verb", + "word_frequency": 19949 + }, + { + "word": "superannuation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Regular payment made into a fund by an employee toward a future pension", + "example_sentence_english": "Employees contribute to their superannuation fund each month.", + "pos": "noun", + "word_frequency": 19950 + }, + { + "word": "sweeten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To make or become sweet or sweeter", + "example_sentence_english": "You can sweeten your tea with honey.", + "pos": "verb", + "word_frequency": 19951 + }, + { + "word": "sweetly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a sweet manner; pleasantly", + "example_sentence_english": "The bird sang sweetly from the branch.", + "pos": "adverb", + "word_frequency": 19952 + }, + { + "word": "swimwear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Garments worn for swimming", + "example_sentence_english": "Don't forget to pack your swimwear for the beach.", + "pos": "noun", + "word_frequency": 19953 + }, + { + "word": "tampon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A plug of soft material inserted into a bodily cavity or wound to absorb fluid", + "example_sentence_english": "She needed to buy tampons from the pharmacy.", + "pos": "noun", + "word_frequency": 19954 + }, + { + "word": "taunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To provoke or challenge someone with insulting remarks", + "example_sentence_english": "The bullies would often taunt him about his new glasses.", + "pos": "verb", + "word_frequency": 19955 + }, + { + "word": "tec", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A detective (informal)", + "example_sentence_english": "The tec was on the trail of the suspect.", + "pos": "noun", + "word_frequency": 19956 + }, + { + "word": "topping", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A layer of food placed on top of other food", + "example_sentence_english": "She added extra cheese as a topping for her pizza.", + "pos": "noun", + "word_frequency": 19958 + }, + { + "word": "trafficker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who deals or trades in something illegal", + "example_sentence_english": "The police arrested a suspected drug trafficker.", + "pos": "noun", + "word_frequency": 19959 + }, + { + "word": "typography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the style and appearance of printed matter", + "example_sentence_english": "Good typography makes text easy to read.", + "pos": "noun", + "word_frequency": 19962 + }, + { + "word": "ukulele", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small four-stringed guitar-like instrument", + "example_sentence_english": "She learned to play the ukulele during the lockdown.", + "pos": "noun", + "word_frequency": 19965 + }, + { + "word": "ump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "umpire (informal)", + "example_sentence_english": "The batter argued with the ump about the call.", + "pos": "noun", + "word_frequency": 19966 + }, + { + "word": "unauthorised", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without official permission", + "example_sentence_english": "Access to this area is strictly unauthorised.", + "pos": "adjective", + "word_frequency": 19967 + }, + { + "word": "uncensored", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having had any parts removed or hidden", + "example_sentence_english": "The director's cut included uncensored scenes.", + "pos": "adjective", + "word_frequency": 19968 + }, + { + "word": "unforgivable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too bad to be forgiven", + "example_sentence_english": "His betrayal was unforgivable.", + "pos": "adjective", + "word_frequency": 19969 + }, + { + "word": "uninhabited", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without inhabitants; empty of people", + "example_sentence_english": "They discovered an uninhabited island.", + "pos": "adjective", + "word_frequency": 19970 + }, + { + "word": "unsurprisingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as might have been expected; not surprisingly", + "example_sentence_english": "Unsurprisingly, he won the race easily.", + "pos": "adverb", + "word_frequency": 19971 + }, + { + "word": "untenable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not able to be maintained or defended", + "example_sentence_english": "His argument was logically untenable.", + "pos": "adjective", + "word_frequency": 19972 + }, + { + "word": "unwavering", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steady or resolute; not wavering", + "example_sentence_english": "She showed unwavering support for her team.", + "pos": "adjective", + "word_frequency": 19973 + }, + { + "word": "usability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ease of use and learnability of a human-made object", + "example_sentence_english": "The new software has improved usability.", + "pos": "noun", + "word_frequency": 19975 + }, + { + "word": "veritable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "being truly or very much so", + "example_sentence_english": "The garden was a veritable jungle.", + "pos": "adjective", + "word_frequency": 19976 + }, + { + "word": "wart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, hard, benign growth on the skin", + "example_sentence_english": "He had a small wart on his finger.", + "pos": "noun", + "word_frequency": 19978 + }, + { + "word": "watchman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person employed to guard a building or property", + "example_sentence_english": "The watchman patrols the building at night.", + "pos": "noun", + "word_frequency": 19979 + }, + { + "word": "yeti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large hairy creature said to live in the Himalayas", + "example_sentence_english": "Some people believe in the existence of the yeti.", + "pos": "noun", + "word_frequency": 19987 + }, + { + "word": "yoghurt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a semi-liquid food made from fermented milk", + "example_sentence_english": "I like to eat yoghurt with fruit for breakfast.", + "pos": "noun", + "word_frequency": 19988 + }, + { + "word": "abject", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely bad or severe; without pride or dignity", + "example_sentence_english": "They lived in abject poverty.", + "pos": "adjective", + "word_frequency": 19991 + }, + { + "word": "actionable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to be used as a basis for legal action; providing a basis for action", + "example_sentence_english": "The report provided actionable insights for the marketing team.", + "pos": "adjective", + "word_frequency": 19992 + }, + { + "word": "affective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to moods, feelings, and attitudes", + "example_sentence_english": "The study examined the affective responses of the participants.", + "pos": "adjective", + "word_frequency": 19994 + }, + { + "word": "afield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to or at a distance; away from home", + "example_sentence_english": "His imagination often wanders far afield.", + "pos": "adverb", + "word_frequency": 19995 + }, + { + "word": "alight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to descend from a vehicle; to land on something", + "example_sentence_english": "A bird alighted on the branch.", + "pos": "verb", + "word_frequency": 19998 + }, + { + "word": "amazement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a feeling of great surprise or wonder", + "example_sentence_english": "To her amazement, she won the lottery.", + "pos": "noun", + "word_frequency": 19999 + }, + { + "word": "apnea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "temporary cessation of breathing", + "example_sentence_english": "Sleep apnea can disrupt a person's rest.", + "pos": "noun", + "word_frequency": 20002 + }, + { + "word": "appointee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person appointed to a position", + "example_sentence_english": "The new appointee will start next month.", + "pos": "noun", + "word_frequency": 20003 + }, + { + "word": "armpit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the hollow under the arm", + "example_sentence_english": "He felt a tickle in his armpit.", + "pos": "noun", + "word_frequency": 20004 + }, + { + "word": "austere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "severe or strict in manner or attitude", + "example_sentence_english": "The monk lived an austere life of simplicity.", + "pos": "adjective", + "word_frequency": 20007 + }, + { + "word": "authoritarianism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the enforcement or advocacy of strict obedience to authority at the expense of personal freedom", + "example_sentence_english": "The country was slowly sliding into authoritarianism.", + "pos": "noun", + "word_frequency": 20008 + }, + { + "word": "awkwardness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being difficult to use or deal with", + "example_sentence_english": "There was an awkwardness in the silence between them.", + "pos": "noun", + "word_frequency": 20009 + }, + { + "word": "bailiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an officer of the court", + "example_sentence_english": "The bailiff called the next case.", + "pos": "noun", + "word_frequency": 20011 + }, + { + "word": "blissful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely happy; full of joy", + "example_sentence_english": "They spent a blissful afternoon by the lake.", + "pos": "adjective", + "word_frequency": 20015 + }, + { + "word": "blockage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an obstruction in a pipe or channel", + "example_sentence_english": "There was a blockage in the drain.", + "pos": "noun", + "word_frequency": 20016 + }, + { + "word": "bloodbath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a massacre or slaughter", + "example_sentence_english": "The stock market experienced a bloodbath today.", + "pos": "noun", + "word_frequency": 20017 + }, + { + "word": "buoy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an anchored float serving as a navigation mark", + "example_sentence_english": "The boat was tied to a buoy in the harbor.", + "pos": "noun", + "word_frequency": 20024 + }, + { + "word": "campaigner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who campaigns for a cause", + "example_sentence_english": "She is a passionate campaigner for environmental protection.", + "pos": "noun", + "word_frequency": 20026 + }, + { + "word": "carving", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an object or design carved from wood or stone", + "example_sentence_english": "The museum displayed an ancient wooden carving.", + "pos": "noun", + "word_frequency": 20027 + }, + { + "word": "chalice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large cup or goblet, typically used for drinking wine at Mass", + "example_sentence_english": "The priest raised the chalice during the ceremony.", + "pos": "noun", + "word_frequency": 20030 + }, + { + "word": "clipping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a piece cut or trimmed from something", + "example_sentence_english": "She saved the newspaper clipping about the event.", + "pos": "noun", + "word_frequency": 20034 + }, + { + "word": "colorectal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the colon and rectum", + "example_sentence_english": "Colorectal cancer screening is important for early detection.", + "pos": "adjective", + "word_frequency": 20036 + }, + { + "word": "commendation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an award or official praise", + "example_sentence_english": "He received a commendation for his bravery.", + "pos": "noun", + "word_frequency": 20037 + }, + { + "word": "consignment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a batch of goods destined for or delivered to someone", + "example_sentence_english": "The store received a new consignment of clothes.", + "pos": "noun", + "word_frequency": 20038 + }, + { + "word": "conundrum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a confusing and difficult problem or question", + "example_sentence_english": "Solving the economic conundrum required careful thought.", + "pos": "noun", + "word_frequency": 20039 + }, + { + "word": "coursework", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "academic work", + "example_sentence_english": "Students must complete all coursework to pass the class.", + "pos": "noun", + "word_frequency": 20041 + }, + { + "word": "coven", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of witches", + "example_sentence_english": "The coven met under the full moon.", + "pos": "noun", + "word_frequency": 20042 + }, + { + "word": "criminology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the scientific study of crime", + "example_sentence_english": "She decided to major in criminology at university.", + "pos": "noun", + "word_frequency": 20043 + }, + { + "word": "czar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Russian emperor", + "example_sentence_english": "The last czar of Russia was Nicholas II.", + "pos": "noun", + "word_frequency": 20045 + }, + { + "word": "diamondback", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of rattlesnake", + "example_sentence_english": "Be careful of the diamondback in the desert.", + "pos": "noun", + "word_frequency": 20047 + }, + { + "word": "disorganized", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not well-organized", + "example_sentence_english": "His desk is always so disorganized.", + "pos": "adjective", + "word_frequency": 20049 + }, + { + "word": "doggie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a small dog", + "example_sentence_english": "Look at the cute little doggie!", + "pos": "noun", + "word_frequency": 20051 + }, + { + "word": "duchy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the territory ruled by a duke or duchess", + "example_sentence_english": "The Duchy of Cornwall is a royal estate.", + "pos": "noun", + "word_frequency": 20052 + }, + { + "word": "dumpling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small ball of dough", + "example_sentence_english": "I love eating chicken and dumplings.", + "pos": "noun", + "word_frequency": 20053 + }, + { + "word": "earmark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set aside for a specific purpose", + "example_sentence_english": "The government earmarked funds for the new project.", + "pos": "verb", + "word_frequency": 20054 + }, + { + "word": "ecumenical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representing a number of different Christian churches", + "example_sentence_english": "They held an ecumenical service for all faiths.", + "pos": "adjective", + "word_frequency": 20055 + }, + { + "word": "electrification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of providing electricity", + "example_sentence_english": "The electrification of rural areas improved living standards.", + "pos": "noun", + "word_frequency": 20056 + }, + { + "word": "encase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enclose or cover", + "example_sentence_english": "The ancient artifact was encased in glass.", + "pos": "verb", + "word_frequency": 20057 + }, + { + "word": "endothelial", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the endothelium", + "example_sentence_english": "Endothelial cells line the inside of blood vessels.", + "pos": "adjective", + "word_frequency": 20058 + }, + { + "word": "episodic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring in episodes", + "example_sentence_english": "He suffers from episodic memory loss.", + "pos": "adjective", + "word_frequency": 20060 + }, + { + "word": "expiry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the end of a period of time", + "example_sentence_english": "Check the expiry date on the milk carton.", + "pos": "noun", + "word_frequency": 20065 + }, + { + "word": "extremity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the furthest point or limit", + "example_sentence_english": "His fingers and toes are extremities of the body.", + "pos": "noun", + "word_frequency": 20066 + }, + { + "word": "faithfulness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being loyal or true", + "example_sentence_english": "Her faithfulness to her friends was unwavering.", + "pos": "noun", + "word_frequency": 20068 + }, + { + "word": "femur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the thigh bone", + "example_sentence_english": "The femur is the longest bone in the human body.", + "pos": "noun", + "word_frequency": 20069 + }, + { + "word": "fluctuate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rise and fall irregularly", + "example_sentence_english": "The temperature can fluctuate wildly in the desert.", + "pos": "verb", + "word_frequency": 20071 + }, + { + "word": "fowl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bird, especially a domestic one", + "example_sentence_english": "Chickens and ducks are types of domestic fowl.", + "pos": "noun", + "word_frequency": 20073 + }, + { + "word": "foxy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cunning or attractive", + "example_sentence_english": "She gave him a foxy smile.", + "pos": "adjective", + "word_frequency": 20074 + }, + { + "word": "freckle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small brown spot on the skin", + "example_sentence_english": "She has many freckles on her nose.", + "pos": "noun", + "word_frequency": 20076 + }, + { + "word": "freelancer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who works for themselves", + "example_sentence_english": "He works as a freelance writer.", + "pos": "noun", + "word_frequency": 20077 + }, + { + "word": "gelatin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a clear, tasteless protein obtained from animal products, used in food preparation", + "example_sentence_english": "The dessert was made with fruit and gelatin.", + "pos": "noun", + "word_frequency": 20080 + }, + { + "word": "gestation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of carrying or being carried in the womb between conception and birth", + "example_sentence_english": "The gestation period for humans is about nine months.", + "pos": "noun", + "word_frequency": 20081 + }, + { + "word": "guillotine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine with a heavy blade sliding vertically in grooves, used for beheading people", + "example_sentence_english": "The guillotine was a symbol of the French Revolution.", + "pos": "noun", + "word_frequency": 20084 + }, + { + "word": "gull", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long-winged, web-footed seabird with a raucous call", + "example_sentence_english": "A white gull flew over the ocean waves.", + "pos": "noun", + "word_frequency": 20085 + }, + { + "word": "gusto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enjoyment or vigor in doing something", + "example_sentence_english": "He tackled the project with great gusto.", + "pos": "noun", + "word_frequency": 20086 + }, + { + "word": "halfback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an attacking player in certain team sports, such as football or rugby", + "example_sentence_english": "The halfback ran the ball down the field.", + "pos": "noun", + "word_frequency": 20087 + }, + { + "word": "headband", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a band of material worn around the head", + "example_sentence_english": "She wore a colorful headband to keep her hair out of her eyes.", + "pos": "noun", + "word_frequency": 20088 + }, + { + "word": "hernia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a condition in which part of an organ is displaced and protrudes through the wall of the cavity containing it", + "example_sentence_english": "He had surgery to repair a hernia.", + "pos": "noun", + "word_frequency": 20090 + }, + { + "word": "hippy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person of the counterculture of the 1960s", + "example_sentence_english": "My aunt was a hippy in her youth.", + "pos": "noun", + "word_frequency": 20091 + }, + { + "word": "hummus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a thick paste made from ground chickpeas and sesame seeds, olive oil, lemon, and garlic", + "example_sentence_english": "I love to eat hummus with pita bread.", + "pos": "noun", + "word_frequency": 20093 + }, + { + "word": "ideologically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that relates to or is based on ideology", + "example_sentence_english": "The two parties were ideologically opposed on many issues.", + "pos": "adverb", + "word_frequency": 20094 + }, + { + "word": "indiscriminate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "done at random or without careful judgment", + "example_sentence_english": "The indiscriminate bombing caused many civilian casualties.", + "pos": "adjective", + "word_frequency": 20095 + }, + { + "word": "individualism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the habit or principle of being independent and self-reliant", + "example_sentence_english": "The culture emphasized individualism and personal freedom.", + "pos": "noun", + "word_frequency": 20096 + }, + { + "word": "infernal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of hell or the underworld", + "example_sentence_english": "The infernal noise from the construction site was unbearable.", + "pos": "adjective", + "word_frequency": 20097 + }, + { + "word": "infrequently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not often; rarely", + "example_sentence_english": "He infrequently visits his hometown now.", + "pos": "adverb", + "word_frequency": 20098 + }, + { + "word": "instill", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to gradually but firmly establish (an idea or attitude) in a person's mind", + "example_sentence_english": "Parents try to instill good values in their children.", + "pos": "verb", + "word_frequency": 20099 + }, + { + "word": "invalidate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make (an argument, statement, or theory) unsound or invalid", + "example_sentence_english": "New evidence could invalidate the previous findings.", + "pos": "verb", + "word_frequency": 20100 + }, + { + "word": "jazzy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling or characteristic of jazz music; lively and stylish", + "example_sentence_english": "She wore a jazzy dress to the party.", + "pos": "adjective", + "word_frequency": 20101 + }, + { + "word": "kingpin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that is central and essential to the success of an organization or operation", + "example_sentence_english": "He was considered the kingpin of the criminal organization.", + "pos": "noun", + "word_frequency": 20106 + }, + { + "word": "kiosk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small open-fronted hut or cubicle from which newspapers, refreshments, tickets, etc., are sold", + "example_sentence_english": "We bought a map at the tourist kiosk.", + "pos": "noun", + "word_frequency": 20107 + }, + { + "word": "lentil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a leguminous plant of the pea family, grown for its edible seeds", + "example_sentence_english": "Lentil soup is a healthy and hearty meal.", + "pos": "noun", + "word_frequency": 20110 + }, + { + "word": "leprosy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chronic, contagious disease affecting the skin and nerves", + "example_sentence_english": "In ancient times, leprosy was a feared disease.", + "pos": "noun", + "word_frequency": 20111 + }, + { + "word": "lisp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a speech impediment in which s and z are pronounced like th", + "example_sentence_english": "The child had a slight lisp when he spoke.", + "pos": "noun", + "word_frequency": 20113 + }, + { + "word": "locust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, destructive grasshopper that forms swarms", + "example_sentence_english": "A swarm of locusts destroyed the crops.", + "pos": "noun", + "word_frequency": 20114 + }, + { + "word": "looney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy or silly", + "example_sentence_english": "He had some looney ideas about how to solve the problem.", + "pos": "adjective", + "word_frequency": 20116 + }, + { + "word": "magnify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something appear larger", + "example_sentence_english": "The microscope can magnify tiny objects.", + "pos": "verb", + "word_frequency": 20120 + }, + { + "word": "mallet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hammer with a large wooden head", + "example_sentence_english": "He used a rubber mallet to tap the pieces into place.", + "pos": "noun", + "word_frequency": 20122 + }, + { + "word": "metastatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to metastasis; spreading to other parts of the body", + "example_sentence_english": "The patient was diagnosed with metastatic cancer.", + "pos": "adjective", + "word_frequency": 20127 + }, + { + "word": "mew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the sound a cat makes", + "example_sentence_english": "We heard a soft mew from the kitten.", + "pos": "noun", + "word_frequency": 20128 + }, + { + "word": "militarily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a military manner or context", + "example_sentence_english": "The country is militarily strong.", + "pos": "adverb", + "word_frequency": 20129 + }, + { + "word": "mishap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unlucky accident", + "example_sentence_english": "A minor mishap delayed the flight.", + "pos": "noun", + "word_frequency": 20130 + }, + { + "word": "molasses", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thick, dark syrup", + "example_sentence_english": "She used molasses to sweeten the gingerbread.", + "pos": "noun", + "word_frequency": 20133 + }, + { + "word": "monolithic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formed of a single large block of stone; massive and uniform", + "example_sentence_english": "The company had a monolithic structure, making change difficult.", + "pos": "adjective", + "word_frequency": 20134 + }, + { + "word": "mystique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an aura of mystery or power", + "example_sentence_english": "The artist cultivated an air of mystique around his work.", + "pos": "noun", + "word_frequency": 20136 + }, + { + "word": "nefarious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wicked or criminal", + "example_sentence_english": "The villain's nefarious plot was foiled.", + "pos": "adjective", + "word_frequency": 20139 + }, + { + "word": "nepali", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Nepal or its people/language", + "example_sentence_english": "She is learning Nepali.", + "pos": "adjective", + "word_frequency": 20140 + }, + { + "word": "nix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put an end to; cancel", + "example_sentence_english": "The boss decided to nix the proposal.", + "pos": "verb", + "word_frequency": 20142 + }, + { + "word": "nucleotide", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a compound consisting of a nucleoside linked to a phosphate group", + "example_sentence_english": "DNA is made up of long chains of nucleotides.", + "pos": "noun", + "word_frequency": 20144 + }, + { + "word": "outbound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traveling away from a particular place", + "example_sentence_english": "The outbound flight was delayed.", + "pos": "adjective", + "word_frequency": 20147 + }, + { + "word": "overpower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defeat or overcome with superior strength", + "example_sentence_english": "The guards managed to overpower the intruder.", + "pos": "verb", + "word_frequency": 20148 + }, + { + "word": "overwork", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make someone work too hard", + "example_sentence_english": "He tends to overwork himself before deadlines.", + "pos": "verb", + "word_frequency": 20149 + }, + { + "word": "pantomime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dramatic entertainment, originating in ancient Rome, in which performers express meaning through gestures accompanied by music", + "example_sentence_english": "The children enjoyed the clown's pantomime.", + "pos": "noun", + "word_frequency": 20151 + }, + { + "word": "peacetime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period when a country is not at war", + "example_sentence_english": "During peacetime, the economy often thrives.", + "pos": "noun", + "word_frequency": 20152 + }, + { + "word": "permian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the last period of the Paleozoic Era", + "example_sentence_english": "The Permian extinction event was the largest in Earth's history.", + "pos": "adjective", + "word_frequency": 20154 + }, + { + "word": "pilates", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a system of physical exercises", + "example_sentence_english": "She does Pilates twice a week for core strength.", + "pos": "noun", + "word_frequency": 20156 + }, + { + "word": "pita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of flatbread", + "example_sentence_english": "We ate hummus with warm pita bread.", + "pos": "noun", + "word_frequency": 20157 + }, + { + "word": "playtime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a period of time for playing", + "example_sentence_english": "The children always look forward to playtime.", + "pos": "noun", + "word_frequency": 20158 + }, + { + "word": "portage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the carrying of boats or goods overland between two waterways", + "example_sentence_english": "The explorers had to make a long portage around the rapids.", + "pos": "noun", + "word_frequency": 20161 + }, + { + "word": "positional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or determined by position", + "example_sentence_english": "The chess player made a strong positional move.", + "pos": "adjective", + "word_frequency": 20162 + }, + { + "word": "postcode", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a code of letters and digits added to a postal address to aid the sorting of mail", + "example_sentence_english": "Please write your full address, including the postcode.", + "pos": "noun", + "word_frequency": 20163 + }, + { + "word": "predicate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to state, affirm, or assert something about the subject of a sentence or argument", + "example_sentence_english": "The theory is predicated on extensive research.", + "pos": "verb", + "word_frequency": 20164 + }, + { + "word": "progeny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "descendants or offspring", + "example_sentence_english": "The old man was proud of his numerous progeny.", + "pos": "noun", + "word_frequency": 20165 + }, + { + "word": "pushy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressively ambitious or self-assertive", + "example_sentence_english": "She found the salesperson a bit too pushy.", + "pos": "adjective", + "word_frequency": 20166 + }, + { + "word": "quell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to put an end to (a rebellion or other disorder), typically by the use of force", + "example_sentence_english": "The police were called to quell the disturbance.", + "pos": "verb", + "word_frequency": 20168 + }, + { + "word": "racecourse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a track or course for racing, especially horse racing", + "example_sentence_english": "They spent the afternoon at the racecourse watching the horses.", + "pos": "noun", + "word_frequency": 20170 + }, + { + "word": "rainwater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water that has fallen as rain", + "example_sentence_english": "We collected rainwater in a barrel for the garden.", + "pos": "noun", + "word_frequency": 20171 + }, + { + "word": "reflector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an object or surface that reflects light, sound, or heat", + "example_sentence_english": "The cyclist had a reflector on the back of his bike for safety.", + "pos": "noun", + "word_frequency": 20172 + }, + { + "word": "regimental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of a regiment", + "example_sentence_english": "He wore his regimental uniform with pride.", + "pos": "adjective", + "word_frequency": 20173 + }, + { + "word": "rehabilitate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restore (someone) to health or normal life through training and therapy after imprisonment, addiction, or illness", + "example_sentence_english": "The program aims to rehabilitate offenders.", + "pos": "verb", + "word_frequency": 20174 + }, + { + "word": "reorganize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to organize (something) again in a different way", + "example_sentence_english": "The company decided to reorganize its departments.", + "pos": "verb", + "word_frequency": 20175 + }, + { + "word": "reread", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to read (something) again", + "example_sentence_english": "I often reread my favorite books.", + "pos": "verb", + "word_frequency": 20176 + }, + { + "word": "roost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where birds regularly settle or congregate to rest at night", + "example_sentence_english": "The chickens returned to their roost at dusk.", + "pos": "noun", + "word_frequency": 20178 + }, + { + "word": "savory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a pleasant, salty or spicy taste rather than sweet", + "example_sentence_english": "I prefer savory snacks over sweet ones.", + "pos": "adjective", + "word_frequency": 20182 + }, + { + "word": "sieve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a utensil consisting of a wire or plastic mesh held in a frame, used for straining solids from liquids or for separating finer from coarser particles", + "example_sentence_english": "She used a sieve to drain the pasta.", + "pos": "noun", + "word_frequency": 20187 + }, + { + "word": "signatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a party that signs an agreement, especially a treaty", + "example_sentence_english": "All signatory nations must abide by the terms of the treaty.", + "pos": "noun", + "word_frequency": 20188 + }, + { + "word": "sill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shelf or slab of stone, wood, or metal at the foot of a window or doorway", + "example_sentence_english": "She placed the potted plant on the window sill.", + "pos": "noun", + "word_frequency": 20189 + }, + { + "word": "silvery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resembling silver in color or luster", + "example_sentence_english": "The moon cast a silvery glow over the lake.", + "pos": "adjective", + "word_frequency": 20190 + }, + { + "word": "smartwatch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mobile device with a touchscreen display, designed to be worn on the wrist", + "example_sentence_english": "He received a new smartwatch for his birthday.", + "pos": "noun", + "word_frequency": 20192 + }, + { + "word": "snapper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a marine fish of warm seas, valued as food", + "example_sentence_english": "We caught a large red snapper on our fishing trip.", + "pos": "noun", + "word_frequency": 20193 + }, + { + "word": "snicker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a suppressed, typically scornful laugh", + "example_sentence_english": "I heard a snicker from the back of the room.", + "pos": "noun", + "word_frequency": 20194 + }, + { + "word": "soloist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who performs a solo", + "example_sentence_english": "The violinist was the soloist for the concert.", + "pos": "noun", + "word_frequency": 20196 + }, + { + "word": "soreness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or quality of being sore; pain or tenderness", + "example_sentence_english": "He felt a slight soreness in his muscles after the workout.", + "pos": "noun", + "word_frequency": 20198 + }, + { + "word": "southerner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person from the south of a country or region", + "example_sentence_english": "She is a proud Southerner, born and raised in Georgia.", + "pos": "noun", + "word_frequency": 20199 + }, + { + "word": "starfish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A marine invertebrate with a star-shaped body.", + "example_sentence_english": "We saw a beautiful starfish clinging to the rock.", + "pos": "noun", + "word_frequency": 20201 + }, + { + "word": "stifle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To suppress or prevent something from happening.", + "example_sentence_english": "She tried to stifle a yawn during the long meeting.", + "pos": "verb", + "word_frequency": 20202 + }, + { + "word": "succulent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tender, juicy, and tasty (of food); having thick fleshy leaves (of plants).", + "example_sentence_english": "The roast chicken was incredibly succulent and flavorful.", + "pos": "adjective", + "word_frequency": 20204 + }, + { + "word": "supercar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A high-performance sports car.", + "example_sentence_english": "He dreams of owning a bright red supercar one day.", + "pos": "noun", + "word_frequency": 20205 + }, + { + "word": "superfluous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Unnecessary, especially through being more than enough.", + "example_sentence_english": "The extra details in the report were superfluous.", + "pos": "adjective", + "word_frequency": 20206 + }, + { + "word": "synchronous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Occurring at the same time.", + "example_sentence_english": "The dancers performed in perfect synchronous movement.", + "pos": "adjective", + "word_frequency": 20209 + }, + { + "word": "tasteful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Showing good taste; aesthetically pleasing.", + "example_sentence_english": "The interior design of the house was very tasteful.", + "pos": "adjective", + "word_frequency": 20212 + }, + { + "word": "telemetry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of recording and transmitting the readings of an instrument.", + "example_sentence_english": "NASA uses telemetry to monitor spacecraft from Earth.", + "pos": "noun", + "word_frequency": 20213 + }, + { + "word": "transcendental", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Beyond normal or physical human experience.", + "example_sentence_english": "He sought a transcendental experience through meditation.", + "pos": "adjective", + "word_frequency": 20217 + }, + { + "word": "transformational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Causing a marked change in someone or something.", + "example_sentence_english": "The new technology had a transformational impact on the industry.", + "pos": "adjective", + "word_frequency": 20218 + }, + { + "word": "translational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or involving translation (e.g., of text, or in physics).", + "example_sentence_english": "Translational research aims to bridge the gap between basic science and clinical application.", + "pos": "adjective", + "word_frequency": 20219 + }, + { + "word": "travesty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A false, absurd, or distorted representation of something.", + "example_sentence_english": "The trial was a travesty of justice.", + "pos": "noun", + "word_frequency": 20220 + }, + { + "word": "undiscovered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not yet found or known.", + "example_sentence_english": "There are still many undiscovered species in the deep ocean.", + "pos": "adjective", + "word_frequency": 20222 + }, + { + "word": "unisex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Designed for both sexes.", + "example_sentence_english": "The salon offers unisex haircuts.", + "pos": "adjective", + "word_frequency": 20223 + }, + { + "word": "vane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A blade or plate that rotates or moves in response to a fluid flow.", + "example_sentence_english": "The weather vane on the roof showed the direction of the wind.", + "pos": "noun", + "word_frequency": 20225 + }, + { + "word": "vengeful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Seeking to harm someone in return for an injury or wrong.", + "example_sentence_english": "The vengeful spirit haunted the old mansion.", + "pos": "adjective", + "word_frequency": 20226 + }, + { + "word": "whatnot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "And other similar things; a small piece of furniture with shelves.", + "example_sentence_english": "We bought some snacks, drinks, and whatnot for the party.", + "pos": "noun", + "word_frequency": 20228 + }, + { + "word": "whiteness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state or quality of being white; a racial identity.", + "example_sentence_english": "The whiteness of the snow was dazzling in the sunlight.", + "pos": "noun", + "word_frequency": 20229 + }, + { + "word": "wicker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pliable twigs, typically willow, plaited or woven to make furniture or baskets.", + "example_sentence_english": "We have a set of wicker chairs on our patio.", + "pos": "noun", + "word_frequency": 20230 + }, + { + "word": "aback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "By surprise; startled.", + "example_sentence_english": "I was completely taken aback by his sudden resignation.", + "pos": "adverb", + "word_frequency": 20234 + }, + { + "word": "accuser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who accuses someone.", + "example_sentence_english": "The accuser presented strong evidence against the defendant.", + "pos": "noun", + "word_frequency": 20235 + }, + { + "word": "adrenal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the adrenal glands.", + "example_sentence_english": "The adrenal glands produce hormones like adrenaline.", + "pos": "adjective", + "word_frequency": 20236 + }, + { + "word": "agonize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To undergo great mental anguish; to struggle with.", + "example_sentence_english": "She agonized over the decision for days.", + "pos": "verb", + "word_frequency": 20237 + }, + { + "word": "aloof", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not friendly or forthcoming; cool and distant.", + "example_sentence_english": "He remained aloof from the party, observing everyone from a distance.", + "pos": "adjective", + "word_frequency": 20239 + }, + { + "word": "amulet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a charm or ornament worn to protect against evil", + "example_sentence_english": "She wore an amulet around her neck for good luck.", + "pos": "noun", + "word_frequency": 20240 + }, + { + "word": "annotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a note added by way of comment or explanation", + "example_sentence_english": "The student added several annotations to the text.", + "pos": "noun", + "word_frequency": 20241 + }, + { + "word": "apologetic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expressing regret", + "example_sentence_english": "He was very apologetic about being late.", + "pos": "adjective", + "word_frequency": 20242 + }, + { + "word": "arcane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "understood by few; mysterious or secret", + "example_sentence_english": "The old wizard possessed arcane knowledge.", + "pos": "adjective", + "word_frequency": 20245 + }, + { + "word": "aristocrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of the aristocracy", + "example_sentence_english": "The aristocrat lived in a grand mansion.", + "pos": "noun", + "word_frequency": 20247 + }, + { + "word": "arty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing an affected interest in art", + "example_sentence_english": "She has a very arty style of dressing.", + "pos": "adjective", + "word_frequency": 20248 + }, + { + "word": "barbershop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shop where men or boys can get their hair cut", + "example_sentence_english": "He went to the barbershop for a trim.", + "pos": "noun", + "word_frequency": 20256 + }, + { + "word": "beanie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a close-fitting cap, often made of wool", + "example_sentence_english": "He wore a warm beanie in the cold weather.", + "pos": "noun", + "word_frequency": 20259 + }, + { + "word": "behest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's order or command", + "example_sentence_english": "The project was completed at the behest of the director.", + "pos": "noun", + "word_frequency": 20260 + }, + { + "word": "biometric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or involving the application of statistical analysis to biological data", + "example_sentence_english": "The phone uses biometric security, like fingerprint recognition.", + "pos": "adjective", + "word_frequency": 20264 + }, + { + "word": "blacken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make or become black", + "example_sentence_english": "The smoke began to blacken the walls.", + "pos": "verb", + "word_frequency": 20265 + }, + { + "word": "booby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of tropical seabird", + "example_sentence_english": "The blue-footed booby is known for its distinctive feet.", + "pos": "noun", + "word_frequency": 20267 + }, + { + "word": "bookkeeping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity or occupation of keeping records of the financial affairs of a business", + "example_sentence_english": "Good bookkeeping is essential for any small business.", + "pos": "noun", + "word_frequency": 20268 + }, + { + "word": "cajun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a French-speaking population in Louisiana", + "example_sentence_english": "Cajun cuisine is famous for its spicy flavors.", + "pos": "noun", + "word_frequency": 20274 + }, + { + "word": "calvary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the place where Jesus was crucified", + "example_sentence_english": "The sermon spoke of the suffering at Calvary.", + "pos": "noun", + "word_frequency": 20275 + }, + { + "word": "camaraderie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutual trust and friendship among people who spend a lot of time together", + "example_sentence_english": "There was a strong sense of camaraderie among the team members.", + "pos": "noun", + "word_frequency": 20276 + }, + { + "word": "cask", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large barrel-like container made of wood, used for liquids", + "example_sentence_english": "The wine was aged in an oak cask.", + "pos": "noun", + "word_frequency": 20277 + }, + { + "word": "catwalk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a narrow walkway, especially one high up in a building or used by models", + "example_sentence_english": "The models walked down the catwalk showcasing the new collection.", + "pos": "noun", + "word_frequency": 20278 + }, + { + "word": "centimetre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a unit of length, equal to one hundredth of a metre", + "example_sentence_english": "The ruler was 30 centimetres long.", + "pos": "noun", + "word_frequency": 20279 + }, + { + "word": "colonize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to establish a colony in", + "example_sentence_english": "European powers sought to colonize new lands.", + "pos": "verb", + "word_frequency": 20281 + }, + { + "word": "confiscation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of seizing property", + "example_sentence_english": "The confiscation of illegal goods is a common police action.", + "pos": "noun", + "word_frequency": 20283 + }, + { + "word": "conscription", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsory enlistment for state service, typically into the armed forces", + "example_sentence_english": "Many countries have abolished military conscription.", + "pos": "noun", + "word_frequency": 20284 + }, + { + "word": "cranial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the skull or cranium", + "example_sentence_english": "The doctor examined the patient's cranial nerves.", + "pos": "adjective", + "word_frequency": 20286 + }, + { + "word": "criminality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being criminal; criminal acts", + "example_sentence_english": "The government is trying to reduce criminality in the city.", + "pos": "noun", + "word_frequency": 20287 + }, + { + "word": "cyberspace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the notional environment in which communication over computer networks occurs", + "example_sentence_english": "Hackers operate in cyberspace, often across national borders.", + "pos": "noun", + "word_frequency": 20291 + }, + { + "word": "decapitate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cut off the head of", + "example_sentence_english": "In ancient times, it was common to decapitate traitors.", + "pos": "verb", + "word_frequency": 20295 + }, + { + "word": "deterrence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of discouraging an action or event through instilling doubt or fear of the consequences", + "example_sentence_english": "Nuclear weapons are often seen as a form of deterrence.", + "pos": "noun", + "word_frequency": 20296 + }, + { + "word": "dielectric", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "having the property of being an electrical insulator", + "example_sentence_english": "Rubber is a good dielectric material.", + "pos": "adjective", + "word_frequency": 20298 + }, + { + "word": "distasteful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpleasant or offensive", + "example_sentence_english": "His comments were rather distasteful.", + "pos": "adjective", + "word_frequency": 20299 + }, + { + "word": "dojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a training hall for martial arts", + "example_sentence_english": "They practice karate every evening at the dojo.", + "pos": "noun", + "word_frequency": 20300 + }, + { + "word": "druid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a priest, magician, or soothsayer in the ancient Celtic religion", + "example_sentence_english": "Ancient Celtic societies were led by powerful druids.", + "pos": "noun", + "word_frequency": 20302 + }, + { + "word": "dud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that fails to work or is unsatisfactory", + "example_sentence_english": "The fireworks were a dud; none of them lit up.", + "pos": "noun", + "word_frequency": 20303 + }, + { + "word": "duvet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft quilt filled with down, feathers, or a synthetic fiber, used as a bed covering", + "example_sentence_english": "I bought a new duvet for my bed.", + "pos": "noun", + "word_frequency": 20304 + }, + { + "word": "endogenous", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "having an internal cause or origin", + "example_sentence_english": "The plant produces endogenous hormones.", + "pos": "adjective", + "word_frequency": 20306 + }, + { + "word": "enforcer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who ensures that rules or laws are obeyed", + "example_sentence_english": "The police act as enforcers of the law.", + "pos": "noun", + "word_frequency": 20307 + }, + { + "word": "ephemeral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lasting for a very short time", + "example_sentence_english": "Fame can be an ephemeral thing.", + "pos": "adjective", + "word_frequency": 20308 + }, + { + "word": "eponymous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of a person, place, or thing, giving their name to something", + "example_sentence_english": "The eponymous hero of the novel is a young orphan.", + "pos": "adjective", + "word_frequency": 20309 + }, + { + "word": "ethnographic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the scientific description of peoples and cultures", + "example_sentence_english": "The anthropologist conducted extensive ethnographic research.", + "pos": "adjective", + "word_frequency": 20311 + }, + { + "word": "eurasian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Eurasia or people of European and Asian descent", + "example_sentence_english": "The Eurasian landmass is the largest continental area on Earth.", + "pos": "adjective", + "word_frequency": 20312 + }, + { + "word": "extracurricular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outside the regular curriculum of a school or university", + "example_sentence_english": "She participates in many extracurricular activities, like sports and clubs.", + "pos": "adjective", + "word_frequency": 20313 + }, + { + "word": "faraway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant in space or time", + "example_sentence_english": "She dreamed of traveling to faraway lands.", + "pos": "adjective", + "word_frequency": 20314 + }, + { + "word": "figurine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small statue or statuette", + "example_sentence_english": "She collects small porcelain figurines.", + "pos": "noun", + "word_frequency": 20317 + }, + { + "word": "fleshy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a lot of flesh; plump or corpulent", + "example_sentence_english": "The plant has thick, fleshy leaves.", + "pos": "adjective", + "word_frequency": 20318 + }, + { + "word": "flier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small handbill or leaflet; a person or thing that flies", + "example_sentence_english": "They handed out fliers for the concert.", + "pos": "noun", + "word_frequency": 20319 + }, + { + "word": "footpath", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a path for walking", + "example_sentence_english": "We followed the narrow footpath through the woods.", + "pos": "noun", + "word_frequency": 20321 + }, + { + "word": "forerunner", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that precedes and indicates the approach of another", + "example_sentence_english": "The early experiments were a forerunner of modern space travel.", + "pos": "noun", + "word_frequency": 20323 + }, + { + "word": "forgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to do without; to give up", + "example_sentence_english": "I decided to forgo dessert to stick to my diet.", + "pos": "verb", + "word_frequency": 20324 + }, + { + "word": "frontage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the front of a building or land, especially as it faces a street or open space", + "example_sentence_english": "The property has a wide frontage along the main road.", + "pos": "noun", + "word_frequency": 20326 + }, + { + "word": "fryer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a deep pan or appliance for frying food", + "example_sentence_english": "She bought a new air fryer for healthier cooking.", + "pos": "noun", + "word_frequency": 20327 + }, + { + "word": "gar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a long-bodied, predatory freshwater fish", + "example_sentence_english": "The angler caught a large gar in the lake.", + "pos": "noun", + "word_frequency": 20329 + }, + { + "word": "genomics", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the branch of molecular biology concerned with the structure, function, evolution, and mapping of genomes", + "example_sentence_english": "Advances in genomics are revolutionizing personalized medicine.", + "pos": "noun", + "word_frequency": 20332 + }, + { + "word": "goof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a silly or foolish person; a mistake", + "example_sentence_english": "I made a goof on the exam and lost points.", + "pos": "noun", + "word_frequency": 20334 + }, + { + "word": "grandad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandfather (informal)", + "example_sentence_english": "My grandad always tells the best stories.", + "pos": "noun", + "word_frequency": 20336 + }, + { + "word": "greco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Greece or the Greeks", + "example_sentence_english": "The museum displayed many Greco-Roman artifacts.", + "pos": "adjective", + "word_frequency": 20337 + }, + { + "word": "hadith", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection of traditions containing sayings of the prophet Muhammad", + "example_sentence_english": "Scholars often refer to the Hadith for guidance on Islamic law.", + "pos": "noun", + "word_frequency": 20340 + }, + { + "word": "hippocampus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the part of the brain involved in memory formation", + "example_sentence_english": "Damage to the hippocampus can severely impair long-term memory.", + "pos": "noun", + "word_frequency": 20343 + }, + { + "word": "hoon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a lout or hooligan, especially one who drives recklessly (Australian/NZ slang)", + "example_sentence_english": "The police issued a warning to the hoons doing burnouts in the car park.", + "pos": "noun", + "word_frequency": 20344 + }, + { + "word": "hoot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the cry of an owl; something very amusing", + "example_sentence_english": "The comedian's jokes were a real hoot.", + "pos": "noun", + "word_frequency": 20345 + }, + { + "word": "humanism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of thought attaching prime importance to human rather than divine or supernatural matters", + "example_sentence_english": "Renaissance humanism emphasized the potential for human achievement.", + "pos": "noun", + "word_frequency": 20346 + }, + { + "word": "incarnate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to embody in flesh; to represent in a concrete form", + "example_sentence_english": "He was seen as evil incarnate.", + "pos": "verb", + "word_frequency": 20348 + }, + { + "word": "incomparable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beyond comparison; matchless", + "example_sentence_english": "Her talent was incomparable to anyone else in the competition.", + "pos": "adjective", + "word_frequency": 20349 + }, + { + "word": "informer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who gives information to the police or other authority, especially against criminals", + "example_sentence_english": "The police received a tip-off from an anonymous informer.", + "pos": "noun", + "word_frequency": 20350 + }, + { + "word": "infrequent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not occurring often; rare", + "example_sentence_english": "Snowfall is infrequent in this tropical climate.", + "pos": "adjective", + "word_frequency": 20351 + }, + { + "word": "ingestion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of taking food, drink, or another substance into the body by swallowing or absorbing it", + "example_sentence_english": "Proper ingestion of nutrients is vital for health.", + "pos": "noun", + "word_frequency": 20352 + }, + { + "word": "internment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being confined as a prisoner, especially for political or military reasons", + "example_sentence_english": "During the war, many foreign nationals faced internment.", + "pos": "noun", + "word_frequency": 20353 + }, + { + "word": "juggernaut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a huge, powerful, and overwhelming force or institution", + "example_sentence_english": "The company became a marketing juggernaut, dominating the industry.", + "pos": "noun", + "word_frequency": 20359 + }, + { + "word": "lackluster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lacking in vitality, force, or conviction; dull.", + "example_sentence_english": "The team gave a lackluster performance.", + "pos": "adjective", + "word_frequency": 20365 + }, + { + "word": "lint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Fluffy bits of fiber and fabric.", + "example_sentence_english": "I need to clean the lint trap in the dryer.", + "pos": "noun", + "word_frequency": 20370 + }, + { + "word": "lira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A former monetary unit of Italy, Turkey, and other countries.", + "example_sentence_english": "Before the euro, Italy used the lira.", + "pos": "noun", + "word_frequency": 20371 + }, + { + "word": "livid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Furiously angry.", + "example_sentence_english": "He was absolutely livid when he heard the news.", + "pos": "adjective", + "word_frequency": 20372 + }, + { + "word": "loon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large diving waterbird, or a foolish/crazy person.", + "example_sentence_english": "The loon's call echoed across the lake.", + "pos": "noun", + "word_frequency": 20374 + }, + { + "word": "lowland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An area of land that is low in elevation.", + "example_sentence_english": "The lowlands are often fertile for farming.", + "pos": "noun", + "word_frequency": 20376 + }, + { + "word": "luscious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Having a rich, sweet taste or smell; sexually attractive.", + "example_sentence_english": "The cake was moist and luscious.", + "pos": "adjective", + "word_frequency": 20378 + }, + { + "word": "luxe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Luxurious or opulent.", + "example_sentence_english": "The hotel offered a truly luxe experience.", + "pos": "adjective", + "word_frequency": 20379 + }, + { + "word": "mainframe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large, high-speed computer, especially one used by an organization for complex operations.", + "example_sentence_english": "Many large corporations still rely on mainframes for their core operations.", + "pos": "noun", + "word_frequency": 20380 + }, + { + "word": "manger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A trough or open box in a stable or cowshed, from which horses or cattle feed.", + "example_sentence_english": "The baby Jesus was laid in a manger.", + "pos": "noun", + "word_frequency": 20381 + }, + { + "word": "manicure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cosmetic treatment of the hands and fingernails.", + "example_sentence_english": "She went to the salon for a manicure.", + "pos": "noun", + "word_frequency": 20382 + }, + { + "word": "materialistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Excessively concerned with material possessions and wealth.", + "example_sentence_english": "He became very materialistic after winning the lottery.", + "pos": "adjective", + "word_frequency": 20383 + }, + { + "word": "materialize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To appear or become visible; to happen or come into being.", + "example_sentence_english": "The ghost seemed to materialize out of thin air.", + "pos": "verb", + "word_frequency": 20384 + }, + { + "word": "maturation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of maturing.", + "example_sentence_english": "The maturation of the fruit takes several weeks.", + "pos": "noun", + "word_frequency": 20385 + }, + { + "word": "mica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A shiny silicate mineral with a layered structure.", + "example_sentence_english": "Mica is often used in cosmetics for its shimmering effect.", + "pos": "noun", + "word_frequency": 20391 + }, + { + "word": "minuscule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Extremely small; tiny.", + "example_sentence_english": "The chances of success were minuscule.", + "pos": "adjective", + "word_frequency": 20394 + }, + { + "word": "misspell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To spell (a word) incorrectly.", + "example_sentence_english": "It's easy to misspell 'receive' or 'believe'.", + "pos": "verb", + "word_frequency": 20395 + }, + { + "word": "moisturizer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cosmetic preparation used to moisturize the skin.", + "example_sentence_english": "She applies moisturizer to her face every morning.", + "pos": "noun", + "word_frequency": 20397 + }, + { + "word": "molar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A grinding tooth at the back of a mammal's mouth.", + "example_sentence_english": "The dentist said I had a cavity in my back molar.", + "pos": "noun", + "word_frequency": 20398 + }, + { + "word": "molestation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action of bothering or annoying someone; sexual abuse.", + "example_sentence_english": "The law protects individuals from molestation.", + "pos": "noun", + "word_frequency": 20399 + }, + { + "word": "mush", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft, pulpy mass", + "example_sentence_english": "The overcooked vegetables turned into mush.", + "pos": "noun", + "word_frequency": 20403 + }, + { + "word": "narcissist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who has an excessive interest in or admiration of themselves", + "example_sentence_english": "He was such a narcissist that he couldn't stop looking at his own reflection.", + "pos": "noun", + "word_frequency": 20404 + }, + { + "word": "navigational", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or used for navigation", + "example_sentence_english": "The ship's navigational equipment was state-of-the-art.", + "pos": "adjective", + "word_frequency": 20405 + }, + { + "word": "neolithic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the later part of the Stone Age", + "example_sentence_english": "Archaeologists discovered tools from the Neolithic period.", + "pos": "adjective", + "word_frequency": 20406 + }, + { + "word": "normalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of bringing something back to a normal state", + "example_sentence_english": "The normalization of relations between the two countries took years.", + "pos": "noun", + "word_frequency": 20407 + }, + { + "word": "nous", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "common sense; practical intelligence", + "example_sentence_english": "He showed considerable nous in handling the difficult situation.", + "pos": "noun", + "word_frequency": 20408 + }, + { + "word": "onus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a burden or responsibility", + "example_sentence_english": "The onus is on the prosecution to prove guilt.", + "pos": "noun", + "word_frequency": 20412 + }, + { + "word": "onyx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of chalcedony with parallel bands of different colors", + "example_sentence_english": "She wore a beautiful necklace with a black onyx pendant.", + "pos": "noun", + "word_frequency": 20413 + }, + { + "word": "osteoporosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medical condition in which the bones become brittle and fragile", + "example_sentence_english": "Regular exercise can help prevent osteoporosis in older adults.", + "pos": "noun", + "word_frequency": 20415 + }, + { + "word": "palazzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large, imposing building, especially in Italy", + "example_sentence_english": "The family lived in a grand palazzo overlooking the canal.", + "pos": "noun", + "word_frequency": 20418 + }, + { + "word": "perceptive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing sensitive insight", + "example_sentence_english": "She is a very perceptive observer of human nature.", + "pos": "adjective", + "word_frequency": 20419 + }, + { + "word": "picker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or machine that picks something", + "example_sentence_english": "The fruit picker carefully selected the ripe apples.", + "pos": "noun", + "word_frequency": 20423 + }, + { + "word": "poach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cook by simmering in a small amount of liquid; to hunt or catch illegally", + "example_sentence_english": "She likes to poach salmon for a light dinner.", + "pos": "verb", + "word_frequency": 20424 + }, + { + "word": "precautionary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carried out as a precaution", + "example_sentence_english": "They took precautionary steps to avoid any accidents.", + "pos": "adjective", + "word_frequency": 20425 + }, + { + "word": "precipitate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause (an event or situation, typically an undesirable one) to happen suddenly, unexpectedly, or prematurely", + "example_sentence_english": "The economic crisis precipitated a change in government policy.", + "pos": "verb", + "word_frequency": 20426 + }, + { + "word": "primo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of the first or highest quality; prime", + "example_sentence_english": "The restaurant serves primo Italian food.", + "pos": "adjective", + "word_frequency": 20427 + }, + { + "word": "purported", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appearing or stated to be true, though not necessarily so; allegedly", + "example_sentence_english": "The purported leader of the group denied the accusations.", + "pos": "adverb", + "word_frequency": 20429 + }, + { + "word": "rani", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a queen or princess in India", + "example_sentence_english": "The rani wore a magnificent sari adorned with jewels.", + "pos": "noun", + "word_frequency": 20432 + }, + { + "word": "rayon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a synthetic fiber made from regenerated cellulose", + "example_sentence_english": "This dress is made of soft rayon fabric.", + "pos": "noun", + "word_frequency": 20433 + }, + { + "word": "reflux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a flowing back or return flow", + "example_sentence_english": "He suffers from acid reflux after eating spicy food.", + "pos": "noun", + "word_frequency": 20434 + }, + { + "word": "reinstatement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of restoring someone or something to their former position or state", + "example_sentence_english": "The union demanded the reinstatement of the fired workers.", + "pos": "noun", + "word_frequency": 20436 + }, + { + "word": "retriever", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of dog bred to retrieve game", + "example_sentence_english": "Our golden retriever loves to play fetch in the park.", + "pos": "noun", + "word_frequency": 20437 + }, + { + "word": "rigidity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being rigid or stiff", + "example_sentence_english": "The rigidity of the metal made it difficult to bend.", + "pos": "noun", + "word_frequency": 20438 + }, + { + "word": "ringtone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the sound made by a mobile phone when an incoming call is received", + "example_sentence_english": "I changed my ringtone to my favorite song.", + "pos": "noun", + "word_frequency": 20439 + }, + { + "word": "rivet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fasten with a rivet; to engross", + "example_sentence_english": "The workers will rivet the metal plates together to secure them.", + "pos": "verb", + "word_frequency": 20441 + }, + { + "word": "rosewood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of dark, reddish-brown wood", + "example_sentence_english": "The antique cabinet was crafted from beautiful rosewood.", + "pos": "noun", + "word_frequency": 20443 + }, + { + "word": "sable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small mammal; black or dark brown color", + "example_sentence_english": "She wore a luxurious coat of sable fur.", + "pos": "noun", + "word_frequency": 20445 + }, + { + "word": "scour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clean thoroughly; to search thoroughly", + "example_sentence_english": "We had to scour the entire house for the lost keys.", + "pos": "verb", + "word_frequency": 20447 + }, + { + "word": "sedative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending to calm or soothe", + "example_sentence_english": "The doctor prescribed a sedative to help the patient relax before surgery.", + "pos": "adjective", + "word_frequency": 20448 + }, + { + "word": "senile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing the weaknesses or diseases of old age, especially a decline in mental faculties", + "example_sentence_english": "His grandfather was becoming increasingly senile and forgetful.", + "pos": "adjective", + "word_frequency": 20449 + }, + { + "word": "setter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of dog; a person who sets something", + "example_sentence_english": "The English Setter is a popular breed for hunting.", + "pos": "noun", + "word_frequency": 20450 + }, + { + "word": "sleigh", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a vehicle on runners, used for traveling over snow or ice", + "example_sentence_english": "Santa Claus rides in a sleigh pulled by reindeer.", + "pos": "noun", + "word_frequency": 20454 + }, + { + "word": "sliver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, thin, pointed piece that has been broken, cut, or torn off something", + "example_sentence_english": "He got a tiny sliver of wood stuck under his fingernail.", + "pos": "noun", + "word_frequency": 20455 + }, + { + "word": "slush", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partially melted snow or ice", + "example_sentence_english": "The streets were covered in dirty slush after the snowstorm.", + "pos": "noun", + "word_frequency": 20456 + }, + { + "word": "smelt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to extract metal from its ore by heating", + "example_sentence_english": "Ancient civilizations learned to smelt copper from its ore.", + "pos": "verb", + "word_frequency": 20457 + }, + { + "word": "softness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being soft", + "example_sentence_english": "She enjoyed the softness of the freshly laundered towels.", + "pos": "noun", + "word_frequency": 20458 + }, + { + "word": "sordid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving ignoble actions and motives; dirty or squalid", + "example_sentence_english": "The newspaper exposed the sordid details of the politician's corruption.", + "pos": "adjective", + "word_frequency": 20460 + }, + { + "word": "springboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flexible board used for jumping; a source of ideas or actions", + "example_sentence_english": "His first successful startup served as a springboard for his future ventures.", + "pos": "noun", + "word_frequency": 20461 + }, + { + "word": "stasis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of inactivity or equilibrium", + "example_sentence_english": "The project remained in a state of stasis due to lack of funding.", + "pos": "noun", + "word_frequency": 20462 + }, + { + "word": "stonewall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a wall made of stones; an act of obstruction or uncooperativeness", + "example_sentence_english": "The committee faced a stonewall from the uncooperative witness.", + "pos": "noun", + "word_frequency": 20463 + }, + { + "word": "storied", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "celebrated in story or history; having many stories or levels", + "example_sentence_english": "The university has a long and storied history of academic excellence.", + "pos": "adjective", + "word_frequency": 20464 + }, + { + "word": "sultry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hot and humid; attractive in a sensual way", + "example_sentence_english": "The sultry summer evening was perfect for a walk.", + "pos": "adjective", + "word_frequency": 20465 + }, + { + "word": "sustenance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food and drink regarded as a source of strength; the maintaining of someone or something in existence", + "example_sentence_english": "The hikers carried enough sustenance to last them for several days.", + "pos": "noun", + "word_frequency": 20466 + }, + { + "word": "swivel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device allowing a part to turn freely on a pivot", + "example_sentence_english": "The office chair has a swivel base, allowing it to rotate easily.", + "pos": "noun", + "word_frequency": 20468 + }, + { + "word": "tearful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of or accompanied by tears", + "example_sentence_english": "She gave a tearful goodbye to her family at the airport.", + "pos": "adjective", + "word_frequency": 20470 + }, + { + "word": "toolbox", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a box for holding tools", + "example_sentence_english": "He keeps all his essential tools neatly organized in his toolbox.", + "pos": "noun", + "word_frequency": 20473 + }, + { + "word": "transsexual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting a person who identifies with a gender different from their birth sex", + "example_sentence_english": "The book provides insights into the experiences of transsexual individuals.", + "pos": "adjective", + "word_frequency": 20474 + }, + { + "word": "tuff", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a light, porous rock formed by the consolidation of volcanic ash", + "example_sentence_english": "The ancient city was carved directly into the volcanic tuff.", + "pos": "adjective", + "word_frequency": 20475 + }, + { + "word": "developed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advanced or mature in terms of economy, technology, or culture; having grown or progressed", + "example_sentence_english": "Japan is considered a highly developed country.", + "pos": "adjective", + "word_frequency": 20476 + }, + { + "word": "disturbed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffering from a mental or emotional disorder; disrupted", + "example_sentence_english": "The loud noise from the construction site disturbed his sleep.", + "pos": "adjective", + "word_frequency": 20477 + }, + { + "word": "informed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having or showing knowledge of a subject or situation", + "example_sentence_english": "It's important to make an informed decision based on all available facts.", + "pos": "adjective", + "word_frequency": 20478 + }, + { + "word": "scathed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmed or injured", + "example_sentence_english": "He was scathed by the harsh criticism, though he tried not to show it.", + "pos": "adjective", + "word_frequency": 20479 + }, + { + "word": "supported", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the necessary financial or practical help", + "example_sentence_english": "The project was fully supported by the local community.", + "pos": "adjective", + "word_frequency": 20480 + }, + { + "word": "vindicate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clear (someone) of blame or suspicion", + "example_sentence_english": "The new evidence helped to vindicate her reputation.", + "pos": "verb", + "word_frequency": 20486 + }, + { + "word": "warlock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man who practices witchcraft; a sorcerer", + "example_sentence_english": "The warlock cast a powerful spell.", + "pos": "noun", + "word_frequency": 20487 + }, + { + "word": "wayside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the edge of a road or path", + "example_sentence_english": "Many good ideas fall by the wayside if they are not properly developed.", + "pos": "noun", + "word_frequency": 20489 + }, + { + "word": "whirlpool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rapidly rotating mass of water", + "example_sentence_english": "The boat was caught in a strong whirlpool.", + "pos": "noun", + "word_frequency": 20491 + }, + { + "word": "whisker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long stiff hair growing from the snout or other part of the face of an animal", + "example_sentence_english": "The cat twitched its whiskers.", + "pos": "noun", + "word_frequency": 20492 + }, + { + "word": "wholesaler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that sells goods in large quantities at low prices to retailers", + "example_sentence_english": "We buy our products directly from the wholesaler.", + "pos": "noun", + "word_frequency": 20493 + }, + { + "word": "wishlist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a list of desired items", + "example_sentence_english": "I've added a new laptop to my Christmas wishlist.", + "pos": "noun", + "word_frequency": 20495 + }, + { + "word": "zealous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing great energy or enthusiasm", + "example_sentence_english": "She was a zealous supporter of the charity.", + "pos": "adjective", + "word_frequency": 20499 + }, + { + "word": "aberration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a departure from what is normal, usual, or expected", + "example_sentence_english": "His outburst was an aberration from his usual calm behavior.", + "pos": "noun", + "word_frequency": 20500 + }, + { + "word": "airwave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medium for transmitting radio or television signals", + "example_sentence_english": "The news was broadcast over the airwaves.", + "pos": "noun", + "word_frequency": 20503 + }, + { + "word": "apricot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a juicy, soft fruit, resembling a small peach", + "example_sentence_english": "I love the sweet taste of fresh apricots.", + "pos": "noun", + "word_frequency": 20506 + }, + { + "word": "arbiter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who settles a dispute or has ultimate authority in a matter", + "example_sentence_english": "The judge acted as an arbiter in the dispute.", + "pos": "noun", + "word_frequency": 20507 + }, + { + "word": "arbitrator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an independent person or body officially appointed to settle a dispute", + "example_sentence_english": "They agreed to appoint an independent arbitrator to resolve the conflict.", + "pos": "noun", + "word_frequency": 20508 + }, + { + "word": "archangel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an angel of the highest rank", + "example_sentence_english": "The archangel Gabriel delivered the message.", + "pos": "noun", + "word_frequency": 20509 + }, + { + "word": "athleticism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the physical qualities that are characteristic of athletes", + "example_sentence_english": "His athleticism was evident in every movement on the field.", + "pos": "noun", + "word_frequency": 20514 + }, + { + "word": "baritone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male singing voice between tenor and bass", + "example_sentence_english": "He has a rich baritone voice.", + "pos": "noun", + "word_frequency": 20517 + }, + { + "word": "bloodline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lineage; ancestry", + "example_sentence_english": "The royal bloodline was carefully preserved.", + "pos": "noun", + "word_frequency": 20522 + }, + { + "word": "borderland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontier region; border area", + "example_sentence_english": "Life in the borderland can be challenging.", + "pos": "noun", + "word_frequency": 20524 + }, + { + "word": "buoyant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to float; cheerful", + "example_sentence_english": "The boat remained buoyant even in rough seas.", + "pos": "adjective", + "word_frequency": 20533 + }, + { + "word": "bushy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thick and shaggy", + "example_sentence_english": "He had a bushy beard and thick eyebrows.", + "pos": "adjective", + "word_frequency": 20534 + }, + { + "word": "caloric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to calories or heat", + "example_sentence_english": "This meal is high in caloric content.", + "pos": "adjective", + "word_frequency": 20535 + }, + { + "word": "captaincy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the position or rank of a captain", + "example_sentence_english": "His captaincy of the team was a great success.", + "pos": "noun", + "word_frequency": 20536 + }, + { + "word": "carbide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound of carbon with a more electropositive element", + "example_sentence_english": "Tungsten carbide is used in cutting tools.", + "pos": "noun", + "word_frequency": 20537 + }, + { + "word": "carmine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a vivid crimson color", + "example_sentence_english": "The painting featured a rich carmine hue.", + "pos": "noun", + "word_frequency": 20539 + }, + { + "word": "chairmanship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the position or period of being a chairman", + "example_sentence_english": "Her chairmanship of the committee lasted five years.", + "pos": "noun", + "word_frequency": 20543 + }, + { + "word": "chardonnay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a variety of white wine grape; a dry white wine", + "example_sentence_english": "We ordered a bottle of crisp Chardonnay with dinner.", + "pos": "noun", + "word_frequency": 20544 + }, + { + "word": "checkmate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a position in chess in which a player's king is directly attacked and cannot escape", + "example_sentence_english": "With one final move, he declared checkmate.", + "pos": "noun", + "word_frequency": 20545 + }, + { + "word": "coercive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "using force or threats", + "example_sentence_english": "The government used coercive measures to enforce the new law.", + "pos": "adjective", + "word_frequency": 20550 + }, + { + "word": "collie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a breed of sheepdog", + "example_sentence_english": "The loyal collie herded the sheep back to the pen.", + "pos": "noun", + "word_frequency": 20551 + }, + { + "word": "commenter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes a comment", + "example_sentence_english": "One commenter left a very insightful remark on the article.", + "pos": "noun", + "word_frequency": 20552 + }, + { + "word": "commercialization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of managing or running something for commercial gain", + "example_sentence_english": "The commercialization of the internet changed everything.", + "pos": "noun", + "word_frequency": 20553 + }, + { + "word": "conduction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process by which heat or electricity is directly transmitted through a substance", + "example_sentence_english": "Heat conduction is efficient in metals.", + "pos": "noun", + "word_frequency": 20554 + }, + { + "word": "confide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tell someone about a secret or private matter while trusting them not to repeat it to others", + "example_sentence_english": "She decided to confide her worries in her best friend.", + "pos": "verb", + "word_frequency": 20555 + }, + { + "word": "consumerism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the protection or promotion of the interests of consumers; the preoccupation with the acquisition of consumer goods", + "example_sentence_english": "The rise of consumerism has led to increased waste.", + "pos": "noun", + "word_frequency": 20557 + }, + { + "word": "cosmology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the science of the origin and development of the universe", + "example_sentence_english": "She is studying cosmology to understand the universe.", + "pos": "noun", + "word_frequency": 20558 + }, + { + "word": "daydream", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a series of pleasant thoughts that distract one's attention from the present", + "example_sentence_english": "She often loses herself in a daydream during boring meetings.", + "pos": "noun", + "word_frequency": 20563 + }, + { + "word": "deafen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone unable to hear, either temporarily or permanently", + "example_sentence_english": "The loud explosion deafened him for a few minutes.", + "pos": "verb", + "word_frequency": 20564 + }, + { + "word": "disordered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not arranged in a neat or orderly way; suffering from a mental or physical condition", + "example_sentence_english": "His room was completely disordered after the party.", + "pos": "adjective", + "word_frequency": 20565 + }, + { + "word": "docker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person employed in a port to load and unload ships; a software platform", + "example_sentence_english": "The docker carefully guided the crane to unload the cargo.", + "pos": "noun", + "word_frequency": 20566 + }, + { + "word": "docket", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a list of cases for trial or things to be done; a document summarizing a case", + "example_sentence_english": "The judge reviewed the court docket for the day.", + "pos": "noun", + "word_frequency": 20567 + }, + { + "word": "earphone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a device that fits into or over the ear, used for listening to audio", + "example_sentence_english": "He put on his earphones to listen to music on the bus.", + "pos": "noun", + "word_frequency": 20569 + }, + { + "word": "electrify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to charge with electricity; to thrill or excite", + "example_sentence_english": "The news of the victory electrified the crowd.", + "pos": "verb", + "word_frequency": 20571 + }, + { + "word": "enchantment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling of great pleasure and delight; a magical spell", + "example_sentence_english": "The children watched the magician's tricks with enchantment.", + "pos": "noun", + "word_frequency": 20572 + }, + { + "word": "experiential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or based on experience", + "example_sentence_english": "The course offers an experiential learning approach, focusing on practical application.", + "pos": "adjective", + "word_frequency": 20574 + }, + { + "word": "faceless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no distinct character or identity; anonymous", + "example_sentence_english": "He felt like just another faceless number in the large corporation.", + "pos": "adjective", + "word_frequency": 20575 + }, + { + "word": "fascia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a band or bundle of fibrous connective tissue; a dashboard or front panel of a vehicle", + "example_sentence_english": "The car's fascia was damaged in the accident, requiring replacement.", + "pos": "noun", + "word_frequency": 20576 + }, + { + "word": "fatherland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one's native country", + "example_sentence_english": "Soldiers are often willing to fight for their fatherland.", + "pos": "noun", + "word_frequency": 20577 + }, + { + "word": "federalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of government in which power is divided between a central authority and constituent political units", + "example_sentence_english": "Federalism allows for both national unity and regional diversity in governance.", + "pos": "noun", + "word_frequency": 20578 + }, + { + "word": "fizz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bubbling or hissing sound; effervescence", + "example_sentence_english": "The soda lost its fizz after sitting out for too long.", + "pos": "noun", + "word_frequency": 20580 + }, + { + "word": "forester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person trained in forestry; a car model", + "example_sentence_english": "The forester managed the health of the trees in the national park.", + "pos": "noun", + "word_frequency": 20582 + }, + { + "word": "fragility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being easily broken or damaged", + "example_sentence_english": "The fragility of the antique vase made her handle it with extreme care.", + "pos": "noun", + "word_frequency": 20583 + }, + { + "word": "frigid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very cold in temperature; showing no warmth of feeling", + "example_sentence_english": "The arctic winds made the morning frigid.", + "pos": "adjective", + "word_frequency": 20585 + }, + { + "word": "gasket", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a shaped piece of material used to seal the junction between two surfaces", + "example_sentence_english": "The mechanic replaced the faulty gasket in the engine to stop the leak.", + "pos": "noun", + "word_frequency": 20587 + }, + { + "word": "gemstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a precious or semiprecious stone, especially one cut and polished for jewelry", + "example_sentence_english": "Sapphires and rubies are popular gemstones used in rings and necklaces.", + "pos": "noun", + "word_frequency": 20588 + }, + { + "word": "goaltender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player whose job is to prevent the ball or puck from entering the goal", + "example_sentence_english": "The goaltender made an incredible save in the final seconds of the game.", + "pos": "noun", + "word_frequency": 20590 + }, + { + "word": "gory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involving or showing violence and bloodshed", + "example_sentence_english": "The movie was too gory for young children to watch.", + "pos": "adjective", + "word_frequency": 20592 + }, + { + "word": "granola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a breakfast and snack food consisting of rolled oats, nuts, honey, etc.", + "example_sentence_english": "She eats granola with yogurt every morning for a healthy breakfast.", + "pos": "noun", + "word_frequency": 20593 + }, + { + "word": "gush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flow out in a rapid and plentiful stream; to express admiration effusively", + "example_sentence_english": "Water began to gush from the broken pipe.", + "pos": "verb", + "word_frequency": 20596 + }, + { + "word": "habitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of living in a place; a place of residence", + "example_sentence_english": "The old cabin showed signs of recent habitation, despite its remote location.", + "pos": "noun", + "word_frequency": 20597 + }, + { + "word": "hatchback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a car with a door at the back that opens upwards, often including the rear window", + "example_sentence_english": "She prefers driving a hatchback because it's easy to park and has good cargo space.", + "pos": "noun", + "word_frequency": 20599 + }, + { + "word": "heirloom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a valuable object that has belonged to a family for several generations", + "example_sentence_english": "This antique watch is a family heirloom.", + "pos": "noun", + "word_frequency": 20601 + }, + { + "word": "huntsman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who hunts, especially with hounds", + "example_sentence_english": "The huntsman led the dogs through the forest.", + "pos": "noun", + "word_frequency": 20603 + }, + { + "word": "hustler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an enterprising person, or someone who obtains money dishonestly", + "example_sentence_english": "He was known as a street hustler, always looking for a deal.", + "pos": "noun", + "word_frequency": 20604 + }, + { + "word": "hypothermia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dangerous condition in which the body loses heat faster than it can produce it", + "example_sentence_english": "The hiker suffered from severe hypothermia after being lost in the snow.", + "pos": "noun", + "word_frequency": 20605 + }, + { + "word": "impatience", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being impatient", + "example_sentence_english": "Her impatience grew as she waited for the bus.", + "pos": "noun", + "word_frequency": 20607 + }, + { + "word": "inquisitive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curious or inquiring", + "example_sentence_english": "The inquisitive child asked many questions.", + "pos": "adjective", + "word_frequency": 20608 + }, + { + "word": "instructive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing knowledge or information; educational", + "example_sentence_english": "The documentary was very instructive about ancient civilizations.", + "pos": "adjective", + "word_frequency": 20609 + }, + { + "word": "interlock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to connect or engage with each other by overlapping or fitting together", + "example_sentence_english": "The gears interlock to make the machine work.", + "pos": "verb", + "word_frequency": 20610 + }, + { + "word": "introspection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the examination or observation of one's own mental and emotional processes", + "example_sentence_english": "He spent time in quiet introspection, reflecting on his life choices.", + "pos": "noun", + "word_frequency": 20611 + }, + { + "word": "lard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fat from the abdomen of a pig, rendered and clarified for use in cooking", + "example_sentence_english": "She used lard to make the pie crust flaky.", + "pos": "noun", + "word_frequency": 20625 + }, + { + "word": "leeway", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the amount of freedom to move or act", + "example_sentence_english": "The manager gave us some leeway to finish the project.", + "pos": "noun", + "word_frequency": 20627 + }, + { + "word": "lexical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the words or vocabulary of a language", + "example_sentence_english": "The study focused on lexical analysis of the text.", + "pos": "adjective", + "word_frequency": 20629 + }, + { + "word": "ley", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a tract of grassland; a ley line", + "example_sentence_english": "Ancient monuments are often said to be built along ley lines.", + "pos": "noun", + "word_frequency": 20630 + }, + { + "word": "lob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shot or hit that sends the ball high in the air", + "example_sentence_english": "He hit a perfect lob over the opponent's head.", + "pos": "noun", + "word_frequency": 20632 + }, + { + "word": "locale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where something happens or is set, or that has particular events associated with it", + "example_sentence_english": "The restaurant has a charming locale by the river.", + "pos": "noun", + "word_frequency": 20633 + }, + { + "word": "mademoiselle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a French title or form of address for an unmarried woman", + "example_sentence_english": "The waiter addressed her as Mademoiselle.", + "pos": "noun", + "word_frequency": 20636 + }, + { + "word": "menswear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clothes for men", + "example_sentence_english": "The department store has a large section dedicated to menswear.", + "pos": "noun", + "word_frequency": 20642 + }, + { + "word": "meritorious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving reward or praise", + "example_sentence_english": "Her meritorious service to the community was recognized with an award.", + "pos": "adjective", + "word_frequency": 20643 + }, + { + "word": "methadone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a synthetic opioid used as a pain reliever and in the treatment of opioid addiction", + "example_sentence_english": "Methadone is often used in medication-assisted treatment for opioid use disorder.", + "pos": "noun", + "word_frequency": 20644 + }, + { + "word": "methanol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a poisonous liquid alcohol", + "example_sentence_english": "Methanol is used as a solvent and as a fuel.", + "pos": "noun", + "word_frequency": 20645 + }, + { + "word": "millet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of grain grown in warm countries", + "example_sentence_english": "Millet is a staple food in many parts of Africa and Asia.", + "pos": "noun", + "word_frequency": 20647 + }, + { + "word": "misogynistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing hatred, dislike, or mistrust of women", + "example_sentence_english": "His misogynistic comments were widely condemned.", + "pos": "adjective", + "word_frequency": 20648 + }, + { + "word": "misrepresentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a false or misleading account of the truth", + "example_sentence_english": "The company was accused of misrepresentation in its advertising.", + "pos": "noun", + "word_frequency": 20649 + }, + { + "word": "mistreatment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of treating someone or something badly", + "example_sentence_english": "The animals suffered from severe mistreatment at the shelter.", + "pos": "noun", + "word_frequency": 20650 + }, + { + "word": "moa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an extinct flightless bird native to New Zealand", + "example_sentence_english": "The moa was a large, flightless bird that once roamed New Zealand.", + "pos": "noun", + "word_frequency": 20651 + }, + { + "word": "mocha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of coffee made with chocolate syrup or powder", + "example_sentence_english": "I'd like a hot mocha with whipped cream, please.", + "pos": "noun", + "word_frequency": 20652 + }, + { + "word": "mockingbird", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a North American songbird noted for its mimicry", + "example_sentence_english": "The mockingbird can imitate the songs of many other birds.", + "pos": "noun", + "word_frequency": 20653 + }, + { + "word": "negate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make ineffective; nullify", + "example_sentence_english": "The new evidence seemed to negate the previous findings.", + "pos": "verb", + "word_frequency": 20659 + }, + { + "word": "nonsensical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no meaning; absurd", + "example_sentence_english": "His explanation was completely nonsensical and didn't make any sense.", + "pos": "adjective", + "word_frequency": 20661 + }, + { + "word": "noose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a loop with a running knot, tightening as the rope is pulled", + "example_sentence_english": "The cowboy tied a noose in the rope for his lasso.", + "pos": "noun", + "word_frequency": 20663 + }, + { + "word": "offshoot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a new branch or development from something larger", + "example_sentence_english": "The new company is an offshoot of a larger technology firm.", + "pos": "noun", + "word_frequency": 20667 + }, + { + "word": "ointment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a smooth, oily preparation rubbed on the skin for medicinal purposes", + "example_sentence_english": "Apply the ointment to the affected area twice a day.", + "pos": "noun", + "word_frequency": 20668 + }, + { + "word": "onscreen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearing or happening on a screen (e.g., television, computer)", + "example_sentence_english": "The actor's onscreen chemistry with his co-star was undeniable.", + "pos": "adjective", + "word_frequency": 20669 + }, + { + "word": "onshore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on or towards the land from the sea", + "example_sentence_english": "The company is investing in new onshore wind farms.", + "pos": "adjective", + "word_frequency": 20670 + }, + { + "word": "orthogonal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statistically independent; at right angles", + "example_sentence_english": "The two concepts are orthogonal, meaning they are independent of each other.", + "pos": "adjective", + "word_frequency": 20672 + }, + { + "word": "overkill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an excessive amount of something", + "example_sentence_english": "Bringing three desserts for a small dinner party might be considered overkill.", + "pos": "noun", + "word_frequency": 20674 + }, + { + "word": "ovulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the release of an egg from the ovary", + "example_sentence_english": "Ovulation typically occurs once a month in fertile women.", + "pos": "noun", + "word_frequency": 20675 + }, + { + "word": "pairing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of joining two things together", + "example_sentence_english": "The wine pairing with the cheese was excellent.", + "pos": "noun", + "word_frequency": 20676 + }, + { + "word": "paladin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a knight renowned for heroism and chivalry", + "example_sentence_english": "In the story, the paladin bravely defended the innocent villagers.", + "pos": "noun", + "word_frequency": 20677 + }, + { + "word": "parse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to analyze (a sentence) into its component parts and describe their syntactic roles; to analyze (something, such as a series of observations) to discover its implications or meaning", + "example_sentence_english": "It's difficult to parse the meaning of such a complex sentence.", + "pos": "verb", + "word_frequency": 20678 + }, + { + "word": "pollination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the transfer of pollen", + "example_sentence_english": "Bees are essential for the pollination of many plants.", + "pos": "noun", + "word_frequency": 20681 + }, + { + "word": "postpartum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "after childbirth", + "example_sentence_english": "She experienced postpartum depression after the baby was born.", + "pos": "adjective", + "word_frequency": 20682 + }, + { + "word": "pretzel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of baked snack", + "example_sentence_english": "I bought a warm pretzel from the street vendor.", + "pos": "noun", + "word_frequency": 20683 + }, + { + "word": "profuse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abundant; flowing freely", + "example_sentence_english": "He offered his profuse apologies for the mistake.", + "pos": "adverb", + "word_frequency": 20684 + }, + { + "word": "proletariat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the working class", + "example_sentence_english": "Marx wrote extensively about the struggles of the proletariat.", + "pos": "noun", + "word_frequency": 20685 + }, + { + "word": "promulgate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make known by open declaration; to proclaim", + "example_sentence_english": "The government sought to promulgate new laws to protect the environment.", + "pos": "verb", + "word_frequency": 20686 + }, + { + "word": "punctuate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to insert punctuation marks; to interrupt at intervals", + "example_sentence_english": "Remember to punctuate your sentences correctly.", + "pos": "verb", + "word_frequency": 20689 + }, + { + "word": "quadratic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involving the second power of an unknown quantity or variable", + "example_sentence_english": "We are studying quadratic equations in algebra class.", + "pos": "adjective", + "word_frequency": 20690 + }, + { + "word": "recoup", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to regain (something lost or spent)", + "example_sentence_english": "The company hopes to recoup its losses by increasing sales.", + "pos": "verb", + "word_frequency": 20692 + }, + { + "word": "rediscover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discover again", + "example_sentence_english": "She hopes to rediscover her passion for painting.", + "pos": "verb", + "word_frequency": 20693 + }, + { + "word": "remover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance or tool that removes something", + "example_sentence_english": "I need some stain remover for this shirt.", + "pos": "noun", + "word_frequency": 20694 + }, + { + "word": "repertory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stock of plays, dances, or pieces that a company or performer knows or is prepared to perform", + "example_sentence_english": "The theater company has a wide repertory of classical plays.", + "pos": "noun", + "word_frequency": 20695 + }, + { + "word": "rove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wander or travel without a fixed destination", + "example_sentence_english": "The sheep were allowed to rove freely across the hills.", + "pos": "verb", + "word_frequency": 20700 + }, + { + "word": "sandman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mythical figure who brings sleep and pleasant dreams", + "example_sentence_english": "The children were tired and ready for the Sandman to visit.", + "pos": "noun", + "word_frequency": 20703 + }, + { + "word": "sass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impertinent talk; impudence", + "example_sentence_english": "Don't give me any sass, young man!", + "pos": "noun", + "word_frequency": 20704 + }, + { + "word": "savor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enjoy (food or drink) with relish; to appreciate fully", + "example_sentence_english": "She savored every bite of the delicious meal.", + "pos": "verb", + "word_frequency": 20705 + }, + { + "word": "schoolteacher", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who teaches in a school", + "example_sentence_english": "My mother was a schoolteacher for thirty years.", + "pos": "noun", + "word_frequency": 20707 + }, + { + "word": "senatorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a senator or the Senate", + "example_sentence_english": "He launched his senatorial campaign last month.", + "pos": "adjective", + "word_frequency": 20709 + }, + { + "word": "sext", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to send sexually explicit messages or images by cell phone", + "example_sentence_english": "It is illegal to sext someone under the age of consent.", + "pos": "verb", + "word_frequency": 20710 + }, + { + "word": "shimmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soft, slightly wavering light", + "example_sentence_english": "We saw the shimmer of heat rising from the desert road.", + "pos": "noun", + "word_frequency": 20712 + }, + { + "word": "shoplift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to steal goods from a shop while pretending to be a customer", + "example_sentence_english": "She was caught trying to shoplift a dress.", + "pos": "verb", + "word_frequency": 20713 + }, + { + "word": "simplification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of making something simpler or easier to understand", + "example_sentence_english": "The new policy is a simplification of the old rules.", + "pos": "noun", + "word_frequency": 20714 + }, + { + "word": "snooze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short, light sleep or nap", + "example_sentence_english": "I hit the snooze button on my alarm clock.", + "pos": "noun", + "word_frequency": 20717 + }, + { + "word": "spasm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden involuntary muscular contraction", + "example_sentence_english": "He felt a sudden spasm in his leg.", + "pos": "noun", + "word_frequency": 20718 + }, + { + "word": "stillness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the absence of movement or sound", + "example_sentence_english": "The stillness of the night was broken only by the crickets.", + "pos": "noun", + "word_frequency": 20720 + }, + { + "word": "strikeout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an instance in baseball when a batter is out after three strikes", + "example_sentence_english": "The pitcher got a strikeout to end the inning.", + "pos": "noun", + "word_frequency": 20721 + }, + { + "word": "subculture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cultural group within a larger culture", + "example_sentence_english": "The punk movement was a significant subculture in the 1970s.", + "pos": "noun", + "word_frequency": 20722 + }, + { + "word": "suitor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a man who pursues a relationship with a woman, often with the aim of marriage", + "example_sentence_english": "She had many suitors vying for her attention.", + "pos": "noun", + "word_frequency": 20723 + }, + { + "word": "tarp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sheet of waterproof material", + "example_sentence_english": "We covered the firewood with a tarp to keep it dry.", + "pos": "noun", + "word_frequency": 20725 + }, + { + "word": "thoroughbred", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a horse of a breed developed in England for racing", + "example_sentence_english": "The thoroughbred galloped gracefully around the track.", + "pos": "noun", + "word_frequency": 20729 + }, + { + "word": "tiara", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a jeweled ornamental band worn on the front of a woman's hair", + "example_sentence_english": "The princess wore a sparkling tiara.", + "pos": "noun", + "word_frequency": 20730 + }, + { + "word": "totality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the whole of something", + "example_sentence_english": "During the eclipse, the moon reached totality, completely blocking the sun.", + "pos": "noun", + "word_frequency": 20731 + }, + { + "word": "ugliness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being unpleasant or unattractive", + "example_sentence_english": "The ugliness of the graffiti marred the beautiful wall.", + "pos": "noun", + "word_frequency": 20734 + }, + { + "word": "unaccompanied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not accompanied by anyone or anything", + "example_sentence_english": "Children under 12 must not travel unaccompanied.", + "pos": "adjective", + "word_frequency": 20735 + }, + { + "word": "unduly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to an unwarranted or excessive degree", + "example_sentence_english": "Don't be unduly concerned about the minor delay.", + "pos": "adverb", + "word_frequency": 20736 + }, + { + "word": "incorporated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formed into a legal corporation; included as part of something larger", + "example_sentence_english": "The company was incorporated last year.", + "pos": "adjective", + "word_frequency": 20737 + }, + { + "word": "satisfied", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pleased because you have got what you wanted", + "example_sentence_english": "She felt satisfied with her performance.", + "pos": "adjective", + "word_frequency": 20738 + }, + { + "word": "vindictive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing a strong or unreasoning desire for revenge", + "example_sentence_english": "He had a vindictive streak and never forgave an insult.", + "pos": "adjective", + "word_frequency": 20741 + }, + { + "word": "visor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stiff brim at the front of a cap or helmet", + "example_sentence_english": "He pulled down his sun visor to block the glare.", + "pos": "noun", + "word_frequency": 20743 + }, + { + "word": "volta", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a turn or change, especially in poetry or music", + "example_sentence_english": "The volta in the sonnet marked a shift in tone.", + "pos": "noun", + "word_frequency": 20744 + }, + { + "word": "walrus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large marine mammal with long tusks", + "example_sentence_english": "A walrus can weigh over a ton.", + "pos": "noun", + "word_frequency": 20745 + }, + { + "word": "abhorrent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inspiring disgust and loathing; repugnant", + "example_sentence_english": "Racism is abhorrent to me.", + "pos": "adjective", + "word_frequency": 20749 + }, + { + "word": "alder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tree of the birch family", + "example_sentence_english": "The alder trees grew along the riverbank.", + "pos": "noun", + "word_frequency": 20751 + }, + { + "word": "allowable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permissible", + "example_sentence_english": "Only allowable expenses can be claimed on your tax return.", + "pos": "adjective", + "word_frequency": 20752 + }, + { + "word": "amicable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by friendliness and absence of discord", + "example_sentence_english": "They reached an amicable agreement after the dispute.", + "pos": "adjective", + "word_frequency": 20755 + }, + { + "word": "amortization", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the process of gradually writing off the initial cost of an asset", + "example_sentence_english": "The loan's amortization schedule showed the principal and interest payments over time.", + "pos": "noun", + "word_frequency": 20756 + }, + { + "word": "anaconda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large non-venomous snake found in tropical South America", + "example_sentence_english": "The anaconda is one of the largest snakes in the world.", + "pos": "noun", + "word_frequency": 20757 + }, + { + "word": "anaerobic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to, involving, or requiring an absence of free oxygen", + "example_sentence_english": "Anaerobic exercise builds muscle strength.", + "pos": "adjective", + "word_frequency": 20758 + }, + { + "word": "angler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who fishes with a rod and line.", + "example_sentence_english": "The angler patiently waited for a bite.", + "pos": "noun", + "word_frequency": 20760 + }, + { + "word": "annihilate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To destroy completely.", + "example_sentence_english": "The army sought to annihilate the enemy forces.", + "pos": "verb", + "word_frequency": 20762 + }, + { + "word": "antisemitic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having or showing prejudice against Jewish people.", + "example_sentence_english": "The politician was accused of making antisemitic remarks.", + "pos": "adjective", + "word_frequency": 20763 + }, + { + "word": "atrophy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The wasting away of a body organ or tissue.", + "example_sentence_english": "Prolonged disuse can lead to muscle atrophy.", + "pos": "noun", + "word_frequency": 20769 + }, + { + "word": "aviator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who flies an aircraft.", + "example_sentence_english": "The aviator skillfully landed the plane in difficult conditions.", + "pos": "noun", + "word_frequency": 20771 + }, + { + "word": "avoidable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Able to be avoided or prevented.", + "example_sentence_english": "Many accidents are entirely avoidable if people are careful.", + "pos": "adjective", + "word_frequency": 20772 + }, + { + "word": "behemoth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A huge or monstrous creature; something enormous.", + "example_sentence_english": "The new skyscraper was a concrete behemoth dominating the skyline.", + "pos": "noun", + "word_frequency": 20776 + }, + { + "word": "bib", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A piece of cloth or plastic fastened under a baby's chin to keep its clothes clean.", + "example_sentence_english": "The baby wore a bib to protect its clothes from spills.", + "pos": "noun", + "word_frequency": 20779 + }, + { + "word": "blip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An unexpected, minor, and temporary deviation from a general trend.", + "example_sentence_english": "The recent drop in sales is just a blip, and we expect recovery soon.", + "pos": "noun", + "word_frequency": 20781 + }, + { + "word": "bolshevik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A member of the majority faction of the Russian Social Democratic Party, which seized power in the October Revolution of 1917.", + "example_sentence_english": "The Bolsheviks played a crucial role in the Russian Revolution.", + "pos": "noun", + "word_frequency": 20783 + }, + { + "word": "bossy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Fond of telling people what to do; domineering.", + "example_sentence_english": "My older sister was always very bossy when we were children.", + "pos": "adjective", + "word_frequency": 20784 + }, + { + "word": "bottleneck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A point of congestion or obstruction.", + "example_sentence_english": "The narrow bridge creates a bottleneck during rush hour.", + "pos": "noun", + "word_frequency": 20785 + }, + { + "word": "buccaneer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A pirate, especially one who preyed on Spanish ships in the Caribbean in the 17th century.", + "example_sentence_english": "The buccaneer buried his treasure on a deserted island.", + "pos": "noun", + "word_frequency": 20789 + }, + { + "word": "bumble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To move or act in an awkward or clumsy way.", + "example_sentence_english": "He tends to bumble around the kitchen, making a mess.", + "pos": "verb", + "word_frequency": 20790 + }, + { + "word": "cambrian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The first geological period of the Paleozoic Era, lasting from 541 to 485.4 million years ago.", + "example_sentence_english": "Many new forms of life appeared during the Cambrian explosion.", + "pos": "noun", + "word_frequency": 20793 + }, + { + "word": "caribou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large North American reindeer.", + "example_sentence_english": "Herds of caribou migrate across the tundra.", + "pos": "noun", + "word_frequency": 20796 + }, + { + "word": "carnal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to physical, especially sexual, needs and activities.", + "example_sentence_english": "The novel explored themes of both spiritual and carnal love.", + "pos": "adjective", + "word_frequency": 20797 + }, + { + "word": "carpentry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The activity or skill of making or repairing wooden objects and structures.", + "example_sentence_english": "He learned carpentry from his grandfather.", + "pos": "noun", + "word_frequency": 20799 + }, + { + "word": "cataract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical condition in which the lens of the eye becomes progressively opaque, resulting in blurred vision.", + "example_sentence_english": "The doctor diagnosed her with a cataract in her left eye.", + "pos": "noun", + "word_frequency": 20800 + }, + { + "word": "caustic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to burn or corrode organic tissue by chemical action; sarcastic in a scathing and bitter way.", + "example_sentence_english": "The chemical was so caustic that it dissolved the metal.", + "pos": "adjective", + "word_frequency": 20801 + }, + { + "word": "centrifugal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moving or tending to move away from a center.", + "example_sentence_english": "The centrifugal force pushed the riders against the wall of the spinning ride.", + "pos": "adjective", + "word_frequency": 20802 + }, + { + "word": "chimpanzee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a great ape native to the forests of tropical Africa.", + "example_sentence_english": "A chimpanzee is known for its intelligence and social behavior.", + "pos": "noun", + "word_frequency": 20806 + }, + { + "word": "chum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a close friend.", + "example_sentence_english": "He's been my old chum since we were kids.", + "pos": "noun", + "word_frequency": 20807 + }, + { + "word": "circadian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting a 24-hour cycle in the physiological processes of living beings.", + "example_sentence_english": "Our bodies have a natural circadian rhythm that regulates sleep and wakefulness.", + "pos": "adjective", + "word_frequency": 20808 + }, + { + "word": "clemency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercy; lenience.", + "example_sentence_english": "The prisoner appealed to the governor for clemency.", + "pos": "noun", + "word_frequency": 20810 + }, + { + "word": "codify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arrange (laws or rules) into a systematic code.", + "example_sentence_english": "They decided to codify the new regulations to make them clearer.", + "pos": "verb", + "word_frequency": 20811 + }, + { + "word": "collab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a collaboration (informal).", + "example_sentence_english": "The two artists announced a new collab on their social media.", + "pos": "noun", + "word_frequency": 20812 + }, + { + "word": "constabulary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a police force covering a particular area.", + "example_sentence_english": "The local constabulary responded quickly to the incident.", + "pos": "noun", + "word_frequency": 20813 + }, + { + "word": "cote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shelter for pigeons or other small animals.", + "example_sentence_english": "The chickens returned to their cote at dusk.", + "pos": "noun", + "word_frequency": 20815 + }, + { + "word": "deadlock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a situation, typically one involving opposing parties, in which no agreement or decision can be reached.", + "example_sentence_english": "The negotiations reached a deadlock, with neither side willing to compromise.", + "pos": "noun", + "word_frequency": 20820 + }, + { + "word": "deathbed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the bed on which a person dies or is dying.", + "example_sentence_english": "He made a confession on his deathbed.", + "pos": "noun", + "word_frequency": 20821 + }, + { + "word": "deceitful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misleading; dishonest.", + "example_sentence_english": "His deceitful actions led to a loss of trust.", + "pos": "adjective", + "word_frequency": 20822 + }, + { + "word": "deduce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrive at (a fact or a conclusion) by reasoning; draw as a logical conclusion.", + "example_sentence_english": "From the evidence, we can deduce that he was the culprit.", + "pos": "verb", + "word_frequency": 20824 + }, + { + "word": "demented", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "driven to behave irrationally due to anger, distress, or excitement; suffering from dementia.", + "example_sentence_english": "The old man's demented ramblings worried his family.", + "pos": "adjective", + "word_frequency": 20826 + }, + { + "word": "discernible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to be perceived or recognized.", + "example_sentence_english": "There was no discernible difference between the two samples.", + "pos": "[keep as-is]", + "word_frequency": 20830 + }, + { + "word": "displease", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause annoyance or dissatisfaction to.", + "example_sentence_english": "His rude comments greatly displeased the audience.", + "pos": "v1", + "word_frequency": 20831 + }, + { + "word": "doge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the chief magistrate of Venice or Genoa.", + "example_sentence_english": "The Doge of Venice held significant power.", + "pos": "[as-is]", + "word_frequency": 20832 + }, + { + "word": "dogged", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing tenacity and grim persistence.", + "example_sentence_english": "Her dogged determination helped her achieve her goals.", + "pos": "[keep as-is]", + "word_frequency": 20833 + }, + { + "word": "duma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a legislative assembly in the late Russian Empire and Russian Federation.", + "example_sentence_english": "The Russian Duma approved the new legislation.", + "pos": "[as-is]", + "word_frequency": 20836 + }, + { + "word": "elate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make (someone) ecstatically happy.", + "example_sentence_english": "The news of her promotion elated her.", + "pos": "v1", + "word_frequency": 20838 + }, + { + "word": "ember", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small piece of burning or glowing coal or wood in a dying fire.", + "example_sentence_english": "Only a few embers remained in the fireplace.", + "pos": "noun", + "word_frequency": 20839 + }, + { + "word": "embroil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involve (someone) in an argument or difficult situation", + "example_sentence_english": "The scandal threatened to embroil the entire government.", + "pos": "v1", + "word_frequency": 20840 + }, + { + "word": "encampment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where a group of people are camping", + "example_sentence_english": "The hikers set up a temporary encampment by the river.", + "pos": "noun", + "word_frequency": 20841 + }, + { + "word": "equalizer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that makes two or more things equal", + "example_sentence_english": "Education is often seen as a great equalizer in society.", + "pos": "noun", + "word_frequency": 20842 + }, + { + "word": "eugenics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of how to arrange reproduction within a human population to increase the occurrence of heritable characteristics regarded as desirable", + "example_sentence_english": "The history of eugenics is controversial and often associated with unethical practices.", + "pos": "noun", + "word_frequency": 20845 + }, + { + "word": "executor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person appointed by a testator to carry out the terms of their will", + "example_sentence_english": "My uncle was named the executor of my grandmother's will.", + "pos": "noun", + "word_frequency": 20846 + }, + { + "word": "expend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spend or use up (a resource such as money or time)", + "example_sentence_english": "We must expend our energy wisely on this long journey.", + "pos": "v1", + "word_frequency": 20847 + }, + { + "word": "exuberant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of energy, excitement, and cheerfulness", + "example_sentence_english": "Her exuberant personality made her popular with everyone.", + "pos": "adjective", + "word_frequency": 20848 + }, + { + "word": "facsimile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an exact copy, especially of written or printed material", + "example_sentence_english": "The museum displayed a facsimile of the original manuscript.", + "pos": "noun", + "word_frequency": 20850 + }, + { + "word": "fanciful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person or their thoughts and ideas) overimaginative and unrealistic", + "example_sentence_english": "She had some fanciful ideas about how to solve the problem.", + "pos": "adjective", + "word_frequency": 20851 + }, + { + "word": "fez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flat-topped conical red hat with a black tassel, worn by Muslim men", + "example_sentence_english": "He wore a traditional red fez on his head.", + "pos": "noun", + "word_frequency": 20855 + }, + { + "word": "fillet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boneless cut of meat or fish", + "example_sentence_english": "I ordered the salmon fillet with vegetables.", + "pos": "noun", + "word_frequency": 20857 + }, + { + "word": "formaldehyde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a colorless pungent gas, used in solution as a disinfectant and preservative", + "example_sentence_english": "Formaldehyde is used in many industrial processes.", + "pos": "noun", + "word_frequency": 20858 + }, + { + "word": "fractal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a complex geometric pattern that is self-similar across different scales", + "example_sentence_english": "The coastline often exhibits fractal properties.", + "pos": "noun", + "word_frequency": 20859 + }, + { + "word": "fulfilment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the achievement of something desired, promised, or predicted", + "example_sentence_english": "She found great fulfilment in her volunteer work.", + "pos": "noun", + "word_frequency": 20862 + }, + { + "word": "garter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a band worn around the leg to keep up a stocking or sock", + "example_sentence_english": "The bride wore a blue garter for good luck.", + "pos": "noun", + "word_frequency": 20864 + }, + { + "word": "gibberish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meaningless or unintelligible speech or writing", + "example_sentence_english": "He was so tired he started speaking gibberish.", + "pos": "noun", + "word_frequency": 20867 + }, + { + "word": "grandiose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impressive and imposing in appearance or style, especially pretentiously so", + "example_sentence_english": "He had grandiose plans for a world tour.", + "pos": "adjective", + "word_frequency": 20874 + }, + { + "word": "gummy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sticky and soft; resembling gum", + "example_sentence_english": "The candy was very sweet and gummy.", + "pos": "adjective", + "word_frequency": 20876 + }, + { + "word": "hag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ugly, repulsive old woman", + "example_sentence_english": "The old hag lived alone in the forest.", + "pos": "noun", + "word_frequency": 20877 + }, + { + "word": "harmonica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small rectangular wind instrument with a row of metal reeds", + "example_sentence_english": "He played a blues tune on his harmonica.", + "pos": "noun", + "word_frequency": 20879 + }, + { + "word": "idiom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expression whose meaning is not predictable from the usual meanings of its constituent elements", + "example_sentence_english": "\"Break a leg\" is a common English idiom.", + "pos": "noun", + "word_frequency": 20887 + }, + { + "word": "impersonate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pretend to be another person", + "example_sentence_english": "He tried to impersonate his boss to get information.", + "pos": "v1", + "word_frequency": 20889 + }, + { + "word": "inexperience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of experience", + "example_sentence_english": "Her inexperience in the role was evident.", + "pos": "noun", + "word_frequency": 20890 + }, + { + "word": "inferiority", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being lower in status or quality than another", + "example_sentence_english": "He suffered from feelings of inferiority.", + "pos": "noun", + "word_frequency": 20891 + }, + { + "word": "inquirer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who asks questions or seeks information", + "example_sentence_english": "The inquirer waited patiently for an answer.", + "pos": "noun", + "word_frequency": 20892 + }, + { + "word": "iota", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a very small amount", + "example_sentence_english": "There wasn't an iota of doubt in her mind.", + "pos": "noun", + "word_frequency": 20893 + }, + { + "word": "jihadist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an adherent of jihad", + "example_sentence_english": "The government is working to counter the threat posed by jihadist groups.", + "pos": "noun", + "word_frequency": 20895 + }, + { + "word": "juju", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a magical charm or fetish; the power associated with it", + "example_sentence_english": "Some people believe in the power of juju to bring good luck.", + "pos": "[as-is]", + "word_frequency": 20898 + }, + { + "word": "lightness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being light in weight or color", + "example_sentence_english": "The lightness of the fabric made it perfect for summer.", + "pos": "noun", + "word_frequency": 20905 + }, + { + "word": "liquidate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to close a business by selling its assets; to pay off a debt", + "example_sentence_english": "The company decided to liquidate its assets to pay off its debts.", + "pos": "v1", + "word_frequency": 20906 + }, + { + "word": "lubrication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of applying a lubricant", + "example_sentence_english": "Proper lubrication is essential for engine maintenance.", + "pos": "noun", + "word_frequency": 20908 + }, + { + "word": "lustre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gentle sheen or soft glow, especially that of a partly reflective surface", + "example_sentence_english": "The antique furniture had lost its original lustre.", + "pos": "noun", + "word_frequency": 20909 + }, + { + "word": "mako", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fast-swimming shark", + "example_sentence_english": "The mako shark is known for its incredible speed.", + "pos": "[as-is]", + "word_frequency": 20911 + }, + { + "word": "maxima", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the plural of maximum; points at which a function's value is greatest", + "example_sentence_english": "The graph shows several local maxima and minima.", + "pos": "noun", + "word_frequency": 20914 + }, + { + "word": "methamphetamine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a powerful, highly addictive stimulant drug", + "example_sentence_english": "The police seized a large quantity of methamphetamine.", + "pos": "noun", + "word_frequency": 20918 + }, + { + "word": "modernisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making something modern", + "example_sentence_english": "The city underwent a rapid modernisation process in the last decade.", + "pos": "noun", + "word_frequency": 20921 + }, + { + "word": "mortify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause someone to feel embarrassed, ashamed, or humiliated", + "example_sentence_english": "I was mortified when I realized I had called her by the wrong name.", + "pos": "v1", + "word_frequency": 20922 + }, + { + "word": "motionless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not moving; still", + "example_sentence_english": "The cat sat motionless, watching the bird.", + "pos": "adjective", + "word_frequency": 20924 + }, + { + "word": "mullet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of fish; a hairstyle short at the front and sides and long at the back", + "example_sentence_english": "He decided to grow a mullet, much to his friends' amusement.", + "pos": "noun", + "word_frequency": 20927 + }, + { + "word": "navigable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a body of water) deep and wide enough for ships to pass through", + "example_sentence_english": "The river is navigable for small boats for about 50 miles.", + "pos": "adjective", + "word_frequency": 20929 + }, + { + "word": "nothingness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the absence of anything; nonexistence", + "example_sentence_english": "He stared into the vast nothingness of the night sky.", + "pos": "noun", + "word_frequency": 20931 + }, + { + "word": "overjoy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone feel extremely happy", + "example_sentence_english": "The news of her promotion completely overjoyed her.", + "pos": "v1", + "word_frequency": 20936 + }, + { + "word": "pacemaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical device that regulates the heartbeat", + "example_sentence_english": "His grandfather had a pacemaker fitted to help his heart.", + "pos": "noun", + "word_frequency": 20937 + }, + { + "word": "pander", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to gratify or indulge (an immoral or distasteful desire, need, or habit or a person with such a desire, etc.)", + "example_sentence_english": "Politicians often pander to public opinion to gain votes.", + "pos": "v1", + "word_frequency": 20938 + }, + { + "word": "paraphernalia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "miscellaneous articles, especially the equipment needed for a particular activity", + "example_sentence_english": "The magician laid out all his paraphernalia on the table.", + "pos": "noun", + "word_frequency": 20939 + }, + { + "word": "pessimism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tendency to see the worst aspect of things or believe that the worst will happen", + "example_sentence_english": "His constant pessimism made it difficult to work with him.", + "pos": "noun", + "word_frequency": 20941 + }, + { + "word": "petrochemical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical obtained from petroleum and natural gas", + "example_sentence_english": "The company specializes in the production of petrochemicals.", + "pos": "noun", + "word_frequency": 20943 + }, + { + "word": "polyethylene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tough, light, flexible synthetic resin made by polymerizing ethylene, chiefly used for plastic bags, containers, and other packaging", + "example_sentence_english": "Most plastic bags are made from polyethylene.", + "pos": "noun", + "word_frequency": 20944 + }, + { + "word": "pooch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dog", + "example_sentence_english": "She took her pooch for a walk in the park.", + "pos": "noun", + "word_frequency": 20945 + }, + { + "word": "popularize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something popular", + "example_sentence_english": "The internet helped to popularize many new trends.", + "pos": "v1", + "word_frequency": 20947 + }, + { + "word": "posterity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "all future generations of people", + "example_sentence_english": "We must preserve these documents for posterity.", + "pos": "noun", + "word_frequency": 20948 + }, + { + "word": "posthumous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring, awarded, or appearing after the death of the originator", + "example_sentence_english": "He received a posthumous award for his bravery.", + "pos": "adjective", + "word_frequency": 20949 + }, + { + "word": "pounce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of an animal or bird of prey) to spring or swoop suddenly so as to catch prey", + "example_sentence_english": "The cat waited patiently before pouncing on the mouse.", + "pos": "v1", + "word_frequency": 20950 + }, + { + "word": "pragmatism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an approach that evaluates theories or beliefs in terms of the success of their practical application", + "example_sentence_english": "His pragmatism helped him make difficult decisions.", + "pos": "noun", + "word_frequency": 20951 + }, + { + "word": "protestantism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the faith, practice, and church order of the Protestant churches", + "example_sentence_english": "Protestantism is one of the major branches of Christianity.", + "pos": "noun", + "word_frequency": 20952 + }, + { + "word": "recede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go or move back or further away from a previous position", + "example_sentence_english": "The floodwaters slowly began to recede.", + "pos": "v1", + "word_frequency": 20955 + }, + { + "word": "recognisable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be recognized or identified", + "example_sentence_english": "Her voice was instantly recognisable.", + "pos": "adjective", + "word_frequency": 20956 + }, + { + "word": "recombination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of recombining things", + "example_sentence_english": "Genetic recombination is a key process in evolution.", + "pos": "noun", + "word_frequency": 20957 + }, + { + "word": "reprehensible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving censure or condemnation", + "example_sentence_english": "His actions were utterly reprehensible.", + "pos": "adjective", + "word_frequency": 20958 + }, + { + "word": "republish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to publish again", + "example_sentence_english": "The author decided to republish his first novel with a new introduction.", + "pos": "v1", + "word_frequency": 20959 + }, + { + "word": "resentful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or expressing bitterness or indignation at having been treated unfairly", + "example_sentence_english": "She felt resentful after being overlooked for the promotion.", + "pos": "adjective", + "word_frequency": 20960 + }, + { + "word": "rewatch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to watch again", + "example_sentence_english": "I love that movie so much, I could rewatch it every week.", + "pos": "v1", + "word_frequency": 20961 + }, + { + "word": "rhubarb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant with large leaves and edible red or green stalks, often used in desserts", + "example_sentence_english": "My grandmother makes a delicious rhubarb crumble.", + "pos": "noun", + "word_frequency": 20963 + }, + { + "word": "romanticism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a movement in the arts and literature emphasizing inspiration, subjectivity, and the individual", + "example_sentence_english": "Romanticism greatly influenced European art and music.", + "pos": "noun", + "word_frequency": 20965 + }, + { + "word": "scathing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "severely critical; devastating", + "example_sentence_english": "The critic delivered a scathing review of the new play.", + "pos": "adjective", + "word_frequency": 20970 + }, + { + "word": "serviceable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fulfilling its function adequately; usable", + "example_sentence_english": "The old car was still serviceable, though not very stylish.", + "pos": "adjective", + "word_frequency": 20971 + }, + { + "word": "shoal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large number of fish swimming together; a sandbank or sandbar", + "example_sentence_english": "We saw a large shoal of fish near the coral reef.", + "pos": "noun", + "word_frequency": 20973 + }, + { + "word": "shredder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine or device for shredding something, especially documents or garden waste", + "example_sentence_english": "I need to buy a paper shredder for my old documents.", + "pos": "noun", + "word_frequency": 20974 + }, + { + "word": "sociable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willing to talk and engage in activities with other people; friendly", + "example_sentence_english": "She's a very sociable person and loves meeting new people.", + "pos": "adjective", + "word_frequency": 20983 + }, + { + "word": "standup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of comedy performance in which a comedian performs directly to the audience", + "example_sentence_english": "We went to a standup show last night and it was hilarious.", + "pos": "noun", + "word_frequency": 20985 + }, + { + "word": "swastika", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ancient symbol in the form of an equilateral cross with arms bent at right angles, used as a symbol of the Nazi party", + "example_sentence_english": "The swastika is a symbol with a long and complex history, unfortunately associated with Nazism.", + "pos": "noun", + "word_frequency": 20988 + }, + { + "word": "talkative", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fond of talking; loquacious", + "example_sentence_english": "My little sister is very talkative, she never stops chatting.", + "pos": "adjective", + "word_frequency": 20990 + }, + { + "word": "talon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a claw, especially of a bird of prey", + "example_sentence_english": "The eagle gripped its prey firmly in its sharp talons.", + "pos": "noun", + "word_frequency": 20991 + }, + { + "word": "teleport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transport or be transported across space and distance instantly", + "example_sentence_english": "If I could teleport, I would visit a new country every day.", + "pos": "v1", + "word_frequency": 20992 + }, + { + "word": "trombone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large brass wind instrument with a sliding tube", + "example_sentence_english": "He plays the trombone in the school band.", + "pos": "noun", + "word_frequency": 20995 + }, + { + "word": "tyrannical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exercising power in a cruel or arbitrary way", + "example_sentence_english": "The people rebelled against their tyrannical ruler.", + "pos": "adjective", + "word_frequency": 20998 + }, + { + "word": "underscore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emphasize", + "example_sentence_english": "The report serves to underscore the need for immediate action.", + "pos": "v1", + "word_frequency": 21000 + }, + { + "word": "unusable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not able to be used", + "example_sentence_english": "The old computer was completely unusable.", + "pos": "adjective", + "word_frequency": 21002 + }, + { + "word": "vandal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who deliberately destroys or damages property", + "example_sentence_english": "The police are looking for the vandals who spray-painted the wall.", + "pos": "noun", + "word_frequency": 21004 + }, + { + "word": "ventilator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine that helps a person breathe", + "example_sentence_english": "The patient was placed on a ventilator to assist with breathing.", + "pos": "noun", + "word_frequency": 21006 + }, + { + "word": "vertebrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an animal with a backbone", + "example_sentence_english": "Humans are vertebrates, as are fish, birds, and reptiles.", + "pos": "noun", + "word_frequency": 21007 + }, + { + "word": "watermark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a faint design made in paper during manufacture", + "example_sentence_english": "The document had a subtle watermark to prevent unauthorized copying.", + "pos": "noun", + "word_frequency": 21009 + }, + { + "word": "webcast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a broadcast made on the internet", + "example_sentence_english": "The company held a live webcast for its quarterly earnings report.", + "pos": "noun", + "word_frequency": 21011 + }, + { + "word": "yonder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at some distance in the direction indicated", + "example_sentence_english": "Look at the beautiful mountains over yonder.", + "pos": "[as-is]", + "word_frequency": 21017 + }, + { + "word": "airtime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the time during which a broadcast is on air", + "example_sentence_english": "The politician was given significant airtime to present his views.", + "pos": "noun", + "word_frequency": 21022 + }, + { + "word": "antithesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a direct opposite", + "example_sentence_english": "Love is the antithesis of hate.", + "pos": "noun", + "word_frequency": 21027 + }, + { + "word": "arable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suitable for growing crops", + "example_sentence_english": "The region has a large amount of arable land.", + "pos": "adjective", + "word_frequency": 21028 + }, + { + "word": "archetype", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a very typical example of a certain person or thing", + "example_sentence_english": "He is the archetype of a successful entrepreneur.", + "pos": "noun", + "word_frequency": 21029 + }, + { + "word": "atrial", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to an atrium, especially of the heart", + "example_sentence_english": "The patient was diagnosed with atrial fibrillation.", + "pos": "adjective", + "word_frequency": 21037 + }, + { + "word": "awesomeness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being awesome", + "example_sentence_english": "The sheer awesomeness of the Grand Canyon left them speechless.", + "pos": "noun", + "word_frequency": 21038 + }, + { + "word": "bereavement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of losing a loved one through death", + "example_sentence_english": "She received many messages of sympathy during her time of bereavement.", + "pos": "noun", + "word_frequency": 21043 + }, + { + "word": "bionic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "using artificial body parts or electronic devices to assist or replace natural ones", + "example_sentence_english": "The athlete was fitted with a bionic leg after the accident.", + "pos": "adjective", + "word_frequency": 21045 + }, + { + "word": "boardroom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a room where the board of directors of a company meets", + "example_sentence_english": "Important decisions are made in the boardroom during weekly meetings.", + "pos": "noun", + "word_frequency": 21046 + }, + { + "word": "bobcat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a North American wild cat with a short tail", + "example_sentence_english": "We spotted a bobcat near the edge of the forest.", + "pos": "noun", + "word_frequency": 21047 + }, + { + "word": "bottomless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without a bottom; extremely deep; seemingly endless", + "example_sentence_english": "The children were fascinated by the idea of a bottomless pit.", + "pos": "adjective", + "word_frequency": 21051 + }, + { + "word": "caddy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who carries a golfer's clubs", + "example_sentence_english": "The golfer thanked his caddy for helping him choose the right club.", + "pos": "noun", + "word_frequency": 21058 + }, + { + "word": "chasm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a deep fissure in the earth, rock, or another surface; a profound difference between people, viewpoints, feelings, etc.", + "example_sentence_english": "A deep chasm opened up in the ground after the earthquake.", + "pos": "noun", + "word_frequency": 21064 + }, + { + "word": "chisel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long-bladed hand tool with a bevelled cutting edge and a handle, used to cut or shape wood, stone, or metal", + "example_sentence_english": "The sculptor used a chisel to carve the intricate details into the stone.", + "pos": "noun", + "word_frequency": 21066 + }, + { + "word": "cinder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small piece of partly burned coal or wood that has stopped glowing but is not yet ash", + "example_sentence_english": "A hot cinder flew out of the fireplace and landed on the rug.", + "pos": "noun", + "word_frequency": 21067 + }, + { + "word": "coax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gently and persistently persuade someone to do something", + "example_sentence_english": "She tried to coax the shy child into joining the game.", + "pos": "v1", + "word_frequency": 21069 + }, + { + "word": "communicator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who is able to convey or exchange information, news, or ideas, especially one who is skilled at it", + "example_sentence_english": "He is an excellent communicator, always clear and concise in his emails.", + "pos": "noun", + "word_frequency": 21070 + }, + { + "word": "condor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large New World vulture, especially the California condor or Andean condor", + "example_sentence_english": "The condor soared gracefully high above the mountain peaks.", + "pos": "noun", + "word_frequency": 21071 + }, + { + "word": "confectionery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sweets, candies, or pastries; the art or business of making them", + "example_sentence_english": "The confectionery shop displayed an array of colorful chocolates and cakes.", + "pos": "noun", + "word_frequency": 21072 + }, + { + "word": "covering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a layer of material that covers something", + "example_sentence_english": "The ground was covered with a thick covering of snow.", + "pos": "noun", + "word_frequency": 21073 + }, + { + "word": "crass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking sensitivity, refinement, or intelligence", + "example_sentence_english": "His crass remarks offended many people in the audience.", + "pos": "adjective", + "word_frequency": 21075 + }, + { + "word": "cull", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reduce the population of a wild animal by selective slaughter; to select from a large quantity", + "example_sentence_english": "The park rangers decided to cull the deer population to prevent overgrazing.", + "pos": "v1", + "word_frequency": 21077 + }, + { + "word": "deference", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "respect; humble submission", + "example_sentence_english": "He showed great deference to his elders.", + "pos": "noun", + "word_frequency": 21083 + }, + { + "word": "delirium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a disturbed state of mind", + "example_sentence_english": "The patient was in a state of delirium due to the fever.", + "pos": "noun", + "word_frequency": 21084 + }, + { + "word": "diabolical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devilish; evil", + "example_sentence_english": "He came up with a diabolical plan to get revenge.", + "pos": "adjective", + "word_frequency": 21086 + }, + { + "word": "dilate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become wider, larger, or more open", + "example_sentence_english": "The doctor used drops to dilate her pupils.", + "pos": "v1", + "word_frequency": 21087 + }, + { + "word": "disarray", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of disorder or confusion", + "example_sentence_english": "The room was in complete disarray after the party.", + "pos": "noun", + "word_frequency": 21088 + }, + { + "word": "disinformation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "false information spread deliberately to deceive", + "example_sentence_english": "The campaign was accused of spreading disinformation.", + "pos": "noun", + "word_frequency": 21089 + }, + { + "word": "disintegrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break into small parts or pieces", + "example_sentence_english": "The old book began to disintegrate as I turned the pages.", + "pos": "v1", + "word_frequency": 21090 + }, + { + "word": "expendable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of little significance, able to be sacrificed", + "example_sentence_english": "In war, some soldiers are considered expendable.", + "pos": "adjective", + "word_frequency": 21095 + }, + { + "word": "fantastical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imaginary and unrealistic; bizarre", + "example_sentence_english": "The story featured fantastical creatures and magical lands.", + "pos": "adjective", + "word_frequency": 21098 + }, + { + "word": "façade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the front of a building; a deceptive outward appearance", + "example_sentence_english": "The building's façade was beautifully decorated.", + "pos": "noun", + "word_frequency": 21100 + }, + { + "word": "fennel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fragrant herb with a distinctive anise-like flavor", + "example_sentence_english": "She added sliced fennel to the salad.", + "pos": "noun", + "word_frequency": 21101 + }, + { + "word": "fieldwork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practical work conducted in the natural environment", + "example_sentence_english": "Anthropologists often spend years doing fieldwork.", + "pos": "noun", + "word_frequency": 21102 + }, + { + "word": "flattery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessive and insincere praise", + "example_sentence_english": "He used flattery to try and get what he wanted.", + "pos": "noun", + "word_frequency": 21104 + }, + { + "word": "frisbee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a plastic disc thrown as a game or sport", + "example_sentence_english": "They spent the afternoon throwing a frisbee in the park.", + "pos": "noun", + "word_frequency": 21107 + }, + { + "word": "futility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pointlessness or uselessness", + "example_sentence_english": "He realized the futility of arguing with her.", + "pos": "noun", + "word_frequency": 21108 + }, + { + "word": "handover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of giving control or responsibility to another", + "example_sentence_english": "The handover of power went smoothly.", + "pos": "noun", + "word_frequency": 21116 + }, + { + "word": "hexagonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having six sides or angles", + "example_sentence_english": "The beehive cells have a hexagonal shape.", + "pos": "adjective", + "word_frequency": 21119 + }, + { + "word": "hospitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friendly and welcoming to guests", + "example_sentence_english": "The locals were very hospitable to the tourists.", + "pos": "adjective", + "word_frequency": 21121 + }, + { + "word": "hummingbird", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small bird with a long, slender bill", + "example_sentence_english": "A hummingbird hovered near the feeder.", + "pos": "noun", + "word_frequency": 21122 + }, + { + "word": "impactful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a strong effect on someone or something", + "example_sentence_english": "Her speech was incredibly impactful.", + "pos": "adjective", + "word_frequency": 21124 + }, + { + "word": "impasse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a situation in which no progress is possible", + "example_sentence_english": "Negotiations reached an impasse.", + "pos": "noun", + "word_frequency": 21125 + }, + { + "word": "impotence", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "lack of power or ability to act", + "example_sentence_english": "The government's impotence in the face of the crisis was evident.", + "pos": "noun", + "word_frequency": 21126 + }, + { + "word": "incursion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sudden invasion or attack", + "example_sentence_english": "There was a brief incursion into enemy territory.", + "pos": "noun", + "word_frequency": 21127 + }, + { + "word": "inescapable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be avoided or denied", + "example_sentence_english": "The truth was inescapable.", + "pos": "adjective", + "word_frequency": 21128 + }, + { + "word": "invertebrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal without a backbone", + "example_sentence_english": "Worms and insects are examples of invertebrates.", + "pos": "noun", + "word_frequency": 21129 + }, + { + "word": "jester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a professional joker at a medieval court", + "example_sentence_english": "The king's jester always made him laugh.", + "pos": "noun", + "word_frequency": 21132 + }, + { + "word": "juxtaposition", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the fact of two things being seen or placed close together with contrasting effect", + "example_sentence_english": "The artist used juxtaposition to highlight the differences.", + "pos": "noun", + "word_frequency": 21133 + }, + { + "word": "likable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasant, friendly, and easy to like", + "example_sentence_english": "He has a very likable personality.", + "pos": "adjective", + "word_frequency": 21144 + }, + { + "word": "luster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gentle sheen or soft glow", + "example_sentence_english": "The pearls had a beautiful luster.", + "pos": "noun", + "word_frequency": 21147 + }, + { + "word": "maw", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the jaws or throat of a voracious animal", + "example_sentence_english": "The lion opened its fearsome maw.", + "pos": "noun", + "word_frequency": 21156 + }, + { + "word": "melatonin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A hormone that regulates sleep.", + "example_sentence_english": "Many people take melatonin to help them sleep.", + "pos": "noun", + "word_frequency": 21160 + }, + { + "word": "mesmerizing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hypnotizing; captivating.", + "example_sentence_english": "The dancer's performance was absolutely mesmerizing.", + "pos": "adjective", + "word_frequency": 21161 + }, + { + "word": "misread", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To read incorrectly.", + "example_sentence_english": "I think I misread the instructions, so the cake didn't turn out right.", + "pos": "verb", + "word_frequency": 21164 + }, + { + "word": "misrepresent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To give a false or misleading account of.", + "example_sentence_english": "The politician was accused of trying to misrepresent the facts.", + "pos": "verb", + "word_frequency": 21165 + }, + { + "word": "modulate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To adjust or regulate.", + "example_sentence_english": "The speaker learned to modulate her voice to keep the audience engaged.", + "pos": "verb", + "word_frequency": 21167 + }, + { + "word": "mousse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A light, airy dessert or hair product.", + "example_sentence_english": "For dessert, we had a delicious chocolate mousse.", + "pos": "noun", + "word_frequency": 21168 + }, + { + "word": "naught", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Nothing; zero.", + "example_sentence_english": "All their efforts came to naught.", + "pos": "noun", + "word_frequency": 21170 + }, + { + "word": "necessitate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make necessary.", + "example_sentence_english": "The new regulations will necessitate changes in our production process.", + "pos": "verb", + "word_frequency": 21172 + }, + { + "word": "nitrous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Containing nitrogen, especially in a low oxidation state.", + "example_sentence_english": "Nitrous oxide is commonly known as laughing gas.", + "pos": "adjective", + "word_frequency": 21173 + }, + { + "word": "obstructive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Causing an obstruction; uncooperative.", + "example_sentence_english": "The company was criticized for its obstructive behavior during the investigation.", + "pos": "adjective", + "word_frequency": 21175 + }, + { + "word": "occupier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who lives in or uses a building or land.", + "example_sentence_english": "The occupier of the apartment is responsible for paying the rent.", + "pos": "noun", + "word_frequency": 21176 + }, + { + "word": "odour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A distinctive smell.", + "example_sentence_english": "There was a strange odour coming from the kitchen.", + "pos": "noun", + "word_frequency": 21178 + }, + { + "word": "orientate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To align or position oneself.", + "example_sentence_english": "It took him a while to orientate himself in the new city.", + "pos": "verb", + "word_frequency": 21181 + }, + { + "word": "oscillation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A regular periodic variation in magnitude or position.", + "example_sentence_english": "The pendulum's oscillation was perfectly regular.", + "pos": "noun", + "word_frequency": 21182 + }, + { + "word": "oscillator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A device that produces oscillations.", + "example_sentence_english": "An electronic oscillator is used to generate a repetitive waveform.", + "pos": "noun", + "word_frequency": 21183 + }, + { + "word": "outrun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To run faster than.", + "example_sentence_english": "The gazelle managed to outrun the cheetah.", + "pos": "verb", + "word_frequency": 21184 + }, + { + "word": "overpass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A bridge, road, railway, or similar structure that crosses over another.", + "example_sentence_english": "We drove under the overpass to get to the other side of the highway.", + "pos": "noun", + "word_frequency": 21186 + }, + { + "word": "pamper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To treat with excessive care and attention.", + "example_sentence_english": "She loves to pamper herself with a long bath and a good book.", + "pos": "verb", + "word_frequency": 21187 + }, + { + "word": "paprika", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A red spice made from dried peppers.", + "example_sentence_english": "I added a pinch of paprika to the goulash for color and flavor.", + "pos": "noun", + "word_frequency": 21188 + }, + { + "word": "pathogenic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Capable of causing disease.", + "example_sentence_english": "Scientists are studying the pathogenic bacteria to develop new treatments.", + "pos": "adjective", + "word_frequency": 21190 + }, + { + "word": "persevere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To continue in a course of action despite difficulty.", + "example_sentence_english": "Despite the setbacks, she continued to persevere with her studies.", + "pos": "verb", + "word_frequency": 21191 + }, + { + "word": "pisces", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A constellation and zodiac sign.", + "example_sentence_english": "My sister's zodiac sign is Pisces.", + "pos": "noun", + "word_frequency": 21194 + }, + { + "word": "plasticity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The quality of being easily shaped or molded.", + "example_sentence_english": "The brain's plasticity allows it to adapt and learn throughout life.", + "pos": "noun", + "word_frequency": 21195 + }, + { + "word": "polymerase", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "An enzyme that synthesizes long chains of polymers.", + "example_sentence_english": "DNA polymerase plays a crucial role in DNA replication.", + "pos": "noun", + "word_frequency": 21196 + }, + { + "word": "practicality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality of being practical or useful.", + "example_sentence_english": "We need to consider the practicality of implementing such a large-scale project.", + "pos": "noun", + "word_frequency": 21197 + }, + { + "word": "prawn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A marine crustacean, similar to a large shrimp.", + "example_sentence_english": "I ordered a delicious prawn curry for dinner.", + "pos": "noun", + "word_frequency": 21198 + }, + { + "word": "procrastination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of delaying or postponing something.", + "example_sentence_english": "Procrastination can lead to missed deadlines and increased stress.", + "pos": "noun", + "word_frequency": 21199 + }, + { + "word": "profane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacrilegious; vulgar", + "example_sentence_english": "His language was often profane, offending many.", + "pos": "adjective", + "word_frequency": 21200 + }, + { + "word": "putative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "generally considered or reputed to be", + "example_sentence_english": "The putative father denied paternity.", + "pos": "adjective", + "word_frequency": 21202 + }, + { + "word": "pyjama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pajamas", + "example_sentence_english": "He changed into his pyjamas before bed.", + "pos": "noun", + "word_frequency": 21203 + }, + { + "word": "rectum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the final section of the large intestine", + "example_sentence_english": "The doctor examined the patient's rectum.", + "pos": "noun", + "word_frequency": 21206 + }, + { + "word": "regressive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "returning to a former or less developed state", + "example_sentence_english": "The new tax policy was criticized as regressive.", + "pos": "adjective", + "word_frequency": 21207 + }, + { + "word": "regrettable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserving regret; unfortunate", + "example_sentence_english": "It was a regrettable mistake that cost them the game.", + "pos": "adjective", + "word_frequency": 21208 + }, + { + "word": "reprise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a repeated passage in music; a recurrence", + "example_sentence_english": "The band played a short reprise of their hit song.", + "pos": "noun", + "word_frequency": 21210 + }, + { + "word": "restorative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the ability to restore health, strength, or a feeling of well-being", + "example_sentence_english": "A good night's sleep can be very restorative.", + "pos": "adjective", + "word_frequency": 21211 + }, + { + "word": "salinity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the saltiness of water or soil", + "example_sentence_english": "The salinity of the ocean varies in different regions.", + "pos": "noun", + "word_frequency": 21215 + }, + { + "word": "scold", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rebuke angrily", + "example_sentence_english": "She would often scold her children for misbehaving.", + "pos": "verb", + "word_frequency": 21217 + }, + { + "word": "silt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fine sand, clay, or other material carried by running water and deposited as a sediment", + "example_sentence_english": "The river deposited a layer of rich silt on the floodplains.", + "pos": "noun", + "word_frequency": 21223 + }, + { + "word": "sisterhood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being a sister; a bond between women", + "example_sentence_english": "There was a strong sense of sisterhood among the women in the group.", + "pos": "noun", + "word_frequency": 21224 + }, + { + "word": "snob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who believes that their tastes in a particular area are superior to those of other people", + "example_sentence_english": "He's such a coffee snob, he only drinks artisanal blends.", + "pos": "noun", + "word_frequency": 21228 + }, + { + "word": "sodomy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anal or oral sex", + "example_sentence_english": "Laws against sodomy have been repealed in many countries.", + "pos": "noun", + "word_frequency": 21229 + }, + { + "word": "solubility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability of a substance to dissolve in a solvent", + "example_sentence_english": "The solubility of sugar in water increases with temperature.", + "pos": "noun", + "word_frequency": 21231 + }, + { + "word": "sonnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a poem of fourteen lines using any of a number of formal rhyme schemes", + "example_sentence_english": "Shakespeare wrote many famous sonnets.", + "pos": "noun", + "word_frequency": 21233 + }, + { + "word": "spacey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dreamy, vague, or eccentric", + "example_sentence_english": "She seemed a bit spacey after waking up from her nap.", + "pos": "adjective", + "word_frequency": 21234 + }, + { + "word": "spectrometry", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the measurement of spectra", + "example_sentence_english": "Mass spectrometry is used to identify unknown compounds.", + "pos": "noun", + "word_frequency": 21236 + }, + { + "word": "spurious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not being what it purports to be; false or fake", + "example_sentence_english": "He made a spurious claim about his qualifications.", + "pos": "adjective", + "word_frequency": 21237 + }, + { + "word": "substandard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "below the usual or required standard", + "example_sentence_english": "The quality of the work was substandard.", + "pos": "adjective", + "word_frequency": 21239 + }, + { + "word": "sugarcane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tall tropical grass with thick, woody stems from which sugar is extracted", + "example_sentence_english": "Sugarcane is a major crop in many tropical countries.", + "pos": "noun", + "word_frequency": 21240 + }, + { + "word": "sundown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sunset", + "example_sentence_english": "We'll meet at sundown by the old oak tree.", + "pos": "noun", + "word_frequency": 21241 + }, + { + "word": "swinger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that swings; a person who is lively and fashionable", + "example_sentence_english": "The child was a natural swinger on the playground.", + "pos": "noun", + "word_frequency": 21242 + }, + { + "word": "talker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who talks, especially one who talks a lot or in a particular way", + "example_sentence_english": "He's a great talker, always full of interesting stories.", + "pos": "noun", + "word_frequency": 21243 + }, + { + "word": "tensile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to tension; capable of being stretched", + "example_sentence_english": "The material has high tensile strength, making it very durable.", + "pos": "adjective", + "word_frequency": 21245 + }, + { + "word": "tether", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tie (an animal) with a rope or chain so as to restrict its movement", + "example_sentence_english": "He tethered his horse to a post outside the saloon.", + "pos": "verb", + "word_frequency": 21246 + }, + { + "word": "tightness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being tight", + "example_sentence_english": "She felt a tightness in her chest due to anxiety.", + "pos": "noun", + "word_frequency": 21248 + }, + { + "word": "todo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a task that needs to be done", + "example_sentence_english": "I have a long list of todos for today.", + "pos": "noun", + "word_frequency": 21249 + }, + { + "word": "toothless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having no teeth", + "example_sentence_english": "The old dog was completely toothless.", + "pos": "adjective", + "word_frequency": 21250 + }, + { + "word": "troubleshoot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to identify and fix problems", + "example_sentence_english": "The IT department is trying to troubleshoot the network issue.", + "pos": "verb", + "word_frequency": 21252 + }, + { + "word": "turntable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rotating platform, especially one on which records are played", + "example_sentence_english": "He carefully placed the vinyl record on the turntable.", + "pos": "noun", + "word_frequency": 21254 + }, + { + "word": "undress", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take off one's clothes", + "example_sentence_english": "She quickly undressed and got into bed.", + "pos": "verb", + "word_frequency": 21256 + }, + { + "word": "vermin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wild animals that are believed to be harmful to crops, farm animals, or game, or that carry disease", + "example_sentence_english": "The old house was infested with vermin.", + "pos": "noun", + "word_frequency": 21261 + }, + { + "word": "wack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of poor quality; crazy or eccentric", + "example_sentence_english": "That movie was totally wack, I didn't enjoy it at all.", + "pos": "adjective", + "word_frequency": 21262 + }, + { + "word": "whirl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move or cause to move rapidly around and around", + "example_sentence_english": "The leaves began to whirl in the strong wind.", + "pos": "verb", + "word_frequency": 21266 + }, + { + "word": "widget", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small gadget or mechanical device", + "example_sentence_english": "This new app has a useful widget for tracking your steps.", + "pos": "noun", + "word_frequency": 21267 + }, + { + "word": "workman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man employed in manual labor", + "example_sentence_english": "The workman carefully repaired the roof.", + "pos": "noun", + "word_frequency": 21270 + }, + { + "word": "zap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destroy, kill, or hit with a sudden burst of energy or force", + "example_sentence_english": "He used the remote to zap through the channels.", + "pos": "verb", + "word_frequency": 21272 + }, + { + "word": "zucchini", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long, green-skinned squash, typically eaten as a vegetable", + "example_sentence_english": "She added sliced zucchini to the stir-fry.", + "pos": "noun", + "word_frequency": 21273 + }, + { + "word": "aborigine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of the aboriginal people of Australia", + "example_sentence_english": "The history of the Aborigine people is rich and complex.", + "pos": "noun", + "word_frequency": 21279 + }, + { + "word": "abreast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side by side; up to date", + "example_sentence_english": "The two runners ran abreast for the final hundred meters.", + "pos": "adverb", + "word_frequency": 21280 + }, + { + "word": "adage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, traditional saying", + "example_sentence_english": "The old adage 'haste makes waste' is still true today.", + "pos": "noun", + "word_frequency": 21284 + }, + { + "word": "airtight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sealed so that air cannot get in or out", + "example_sentence_english": "Store the cookies in an airtight container to keep them fresh.", + "pos": "adjective", + "word_frequency": 21286 + }, + { + "word": "altruistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing a selfless concern for the well-being of others", + "example_sentence_english": "Her altruistic actions helped many people in need.", + "pos": "adjective", + "word_frequency": 21288 + }, + { + "word": "amalgamate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to combine or unite to form one organization or structure", + "example_sentence_english": "The two companies decided to amalgamate to create a stronger entity.", + "pos": "verb", + "word_frequency": 21289 + }, + { + "word": "amorphous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without a clearly defined shape or form", + "example_sentence_english": "The cloud of gas was amorphous, constantly changing its shape.", + "pos": "adjective", + "word_frequency": 21290 + }, + { + "word": "annul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to declare invalid (an official agreement, decision, or result)", + "example_sentence_english": "The court decided to annul the marriage.", + "pos": "verb", + "word_frequency": 21291 + }, + { + "word": "antioxidant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that inhibits oxidation", + "example_sentence_english": "Blueberries are rich in antioxidants, which are good for your health.", + "pos": "noun", + "word_frequency": 21292 + }, + { + "word": "antler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bony growth on the head of a deer", + "example_sentence_english": "The deer had large antlers on its head.", + "pos": "noun", + "word_frequency": 21293 + }, + { + "word": "arroyo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dry creek bed that fills with water after rain", + "example_sentence_english": "After the heavy rain, the arroyo was flowing with water.", + "pos": "noun", + "word_frequency": 21297 + }, + { + "word": "audacious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing a willingness to take surprisingly bold risks", + "example_sentence_english": "It was an audacious plan, but it succeeded.", + "pos": "adjective", + "word_frequency": 21298 + }, + { + "word": "befriend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make friends with someone", + "example_sentence_english": "She tried to befriend the new student in class.", + "pos": "verb", + "word_frequency": 21304 + }, + { + "word": "blare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or cause to make a loud, harsh sound", + "example_sentence_english": "The car horn began to blare loudly.", + "pos": "verb", + "word_frequency": 21306 + }, + { + "word": "bookie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose business is to take bets", + "example_sentence_english": "He placed a bet with the bookie on the horse race.", + "pos": "noun", + "word_frequency": 21307 + }, + { + "word": "brash", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-assertive in a rude, noisy, or overbearing way", + "example_sentence_english": "His brash attitude often offended people.", + "pos": "adjective", + "word_frequency": 21311 + }, + { + "word": "buoyancy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability or tendency to float in water or air", + "example_sentence_english": "The boat's buoyancy kept it afloat even in rough seas.", + "pos": "noun", + "word_frequency": 21313 + }, + { + "word": "businesswoman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a woman who works in business", + "example_sentence_english": "She is a successful businesswoman who owns several companies.", + "pos": "noun", + "word_frequency": 21314 + }, + { + "word": "buttermilk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the slightly sour liquid left after butter has been churned", + "example_sentence_english": "I used buttermilk to make the pancakes extra fluffy.", + "pos": "noun", + "word_frequency": 21315 + }, + { + "word": "captor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has captured a person or animal", + "example_sentence_english": "The police negotiated with the captor for the release of the hostages.", + "pos": "noun", + "word_frequency": 21319 + }, + { + "word": "cautionary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "giving a warning", + "example_sentence_english": "The teacher gave a cautionary tale about cheating.", + "pos": "adjective", + "word_frequency": 21321 + }, + { + "word": "cayenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of hot chili pepper", + "example_sentence_english": "Add a pinch of cayenne pepper for extra heat.", + "pos": "noun", + "word_frequency": 21322 + }, + { + "word": "chimp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chimpanzee", + "example_sentence_english": "The chimp swung through the trees with ease.", + "pos": "noun", + "word_frequency": 21324 + }, + { + "word": "chromatography", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a laboratory technique for the separation of a mixture", + "example_sentence_english": "Chromatography is used to separate pigments in plants.", + "pos": "noun", + "word_frequency": 21325 + }, + { + "word": "clitoris", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small sensitive part of the female genitals", + "example_sentence_english": "The clitoris is a highly sensitive organ.", + "pos": "noun", + "word_frequency": 21327 + }, + { + "word": "coincidental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happening by chance; accidental", + "example_sentence_english": "It was purely coincidental that we met at the airport.", + "pos": "adjective", + "word_frequency": 21328 + }, + { + "word": "colliery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a coal mine and its associated buildings", + "example_sentence_english": "Many men in the village worked at the local colliery.", + "pos": "noun", + "word_frequency": 21329 + }, + { + "word": "coriander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an aromatic plant whose seeds and leaves are used as a herb or spice", + "example_sentence_english": "I love the fresh taste of coriander in my salsa.", + "pos": "noun", + "word_frequency": 21331 + }, + { + "word": "critter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a living creature; an animal (informal)", + "example_sentence_english": "There's a little critter scurrying under the porch.", + "pos": "noun", + "word_frequency": 21332 + }, + { + "word": "croc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a crocodile (informal)", + "example_sentence_english": "Be careful near the river; there might be a croc.", + "pos": "noun", + "word_frequency": 21333 + }, + { + "word": "damnation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "condemnation to eternal punishment in hell", + "example_sentence_english": "He feared eternal damnation for his sins.", + "pos": "noun", + "word_frequency": 21335 + }, + { + "word": "debunk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expose the falseness or hollowness of (a myth, idea, or belief)", + "example_sentence_english": "The scientist tried to debunk the popular myth.", + "pos": "verb", + "word_frequency": 21337 + }, + { + "word": "decorator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose job is to paint and wallpaper rooms", + "example_sentence_english": "We hired a decorator to paint our living room.", + "pos": "noun", + "word_frequency": 21338 + }, + { + "word": "delirious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in an acutely disturbed state of mind resulting from illness or intoxication", + "example_sentence_english": "The patient was delirious with fever.", + "pos": "adjective", + "word_frequency": 21340 + }, + { + "word": "detractor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who disparages someone or something", + "example_sentence_english": "Despite his detractors, he continued with his plan.", + "pos": "noun", + "word_frequency": 21342 + }, + { + "word": "disconcert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disturb the composure of; unsettle", + "example_sentence_english": "His sudden appearance disconcerted everyone.", + "pos": "verb", + "word_frequency": 21345 + }, + { + "word": "disingenuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not candid or sincere", + "example_sentence_english": "It was disingenuous of him to claim he knew nothing about the incident.", + "pos": "adjective", + "word_frequency": 21346 + }, + { + "word": "dressing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sauce for salads; material applied to a wound", + "example_sentence_english": "I prefer ranch dressing on my salad.", + "pos": "noun", + "word_frequency": 21351 + }, + { + "word": "easterly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in or towards the east; (of a wind) blowing from the east", + "example_sentence_english": "An easterly wind brought colder air.", + "pos": "adjective", + "word_frequency": 21353 + }, + { + "word": "edema", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a condition characterized by an excess of watery fluid accumulating in the body", + "example_sentence_english": "The doctor diagnosed the patient with edema in their legs.", + "pos": "noun", + "word_frequency": 21354 + }, + { + "word": "elapse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of time) pass or go by", + "example_sentence_english": "Many years will elapse before we meet again.", + "pos": "verb", + "word_frequency": 21356 + }, + { + "word": "enterprising", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing initiative and resourcefulness", + "example_sentence_english": "She is an enterprising young woman with many business ideas.", + "pos": "adjective", + "word_frequency": 21359 + }, + { + "word": "exacting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demanding, strict", + "example_sentence_english": "The conductor was exacting in his demands for precision from the orchestra.", + "pos": "adjective", + "word_frequency": 21362 + }, + { + "word": "expectant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waiting eagerly; pregnant", + "example_sentence_english": "The audience was expectant as the curtain began to rise.", + "pos": "adjective", + "word_frequency": 21363 + }, + { + "word": "exponent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who believes in and promotes an idea or theory; a number or quantity representing the power to which a given number or expression is to be raised", + "example_sentence_english": "She is a leading exponent of modern art.", + "pos": "noun", + "word_frequency": 21364 + }, + { + "word": "extravaganza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an elaborate and spectacular entertainment or production", + "example_sentence_english": "The New Year's Eve show was a dazzling musical extravaganza.", + "pos": "noun", + "word_frequency": 21365 + }, + { + "word": "flack", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strong criticism; publicity agent", + "example_sentence_english": "The company received a lot of flack for its controversial advertising campaign.", + "pos": "noun", + "word_frequency": 21372 + }, + { + "word": "freebie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something given free of charge", + "example_sentence_english": "They offered a freebie with every purchase to attract more customers.", + "pos": "noun", + "word_frequency": 21375 + }, + { + "word": "geriatric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to old people, especially with regard to their healthcare", + "example_sentence_english": "The hospital has a specialized geriatric ward for elderly patients.", + "pos": "adjective", + "word_frequency": 21381 + }, + { + "word": "glean", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extract (information) from various sources; gather (leftover grain)", + "example_sentence_english": "From various sources, I was able to glean a few facts about the incident.", + "pos": "verb", + "word_frequency": 21382 + }, + { + "word": "globalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process by which businesses or other organizations develop international influence or start operating on an international scale", + "example_sentence_english": "Globalisation has led to increased interconnectedness between economies worldwide.", + "pos": "noun", + "word_frequency": 21383 + }, + { + "word": "guidebook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book of information about a place, designed for visitors", + "example_sentence_english": "We bought a guidebook to help us explore the city.", + "pos": "noun", + "word_frequency": 21387 + }, + { + "word": "halve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divide into two parts of equal or nearly equal size", + "example_sentence_english": "The company decided to halve its production costs.", + "pos": "verb", + "word_frequency": 21388 + }, + { + "word": "hardline", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uncompromising or extreme in one's views or policies", + "example_sentence_english": "The government adopted a hardline stance against the protestors.", + "pos": "adjective", + "word_frequency": 21389 + }, + { + "word": "honk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make a loud, harsh sound (like a goose or car horn)", + "example_sentence_english": "The driver had to honk his horn to warn the pedestrian.", + "pos": "verb", + "word_frequency": 21396 + }, + { + "word": "hungover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffering from a hangover", + "example_sentence_english": "He woke up feeling completely hungover after the party.", + "pos": "adjective", + "word_frequency": 21397 + }, + { + "word": "impure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not pure; mixed with unwanted substances", + "example_sentence_english": "The water was impure and not safe to drink.", + "pos": "adjective", + "word_frequency": 21401 + }, + { + "word": "inexcusable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "too bad to be excused or justified", + "example_sentence_english": "His rude behavior was inexcusable.", + "pos": "adjective", + "word_frequency": 21403 + }, + { + "word": "inhibitory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to inhibit or restrain", + "example_sentence_english": "The drug had an inhibitory effect on the growth of bacteria.", + "pos": "adjective", + "word_frequency": 21404 + }, + { + "word": "integrative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "combining or coordinating separate elements so as to provide a harmonious or interrelated whole", + "example_sentence_english": "The new policy aims to be more integrative, bringing different departments together.", + "pos": "adjective", + "word_frequency": 21405 + }, + { + "word": "invisibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being unable to be seen", + "example_sentence_english": "The magician created an illusion of invisibility.", + "pos": "noun", + "word_frequency": 21408 + }, + { + "word": "kimono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, loose traditional Japanese robe with wide sleeves", + "example_sentence_english": "She wore a beautiful silk kimono to the festival.", + "pos": "noun", + "word_frequency": 21413 + }, + { + "word": "knicker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of short trousers gathered at the knee (often plural 'knickers' for underwear)", + "example_sentence_english": "He wore knickerbockers for his cycling trip.", + "pos": "noun", + "word_frequency": 21415 + }, + { + "word": "liege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feudal lord or sovereign", + "example_sentence_english": "The knight swore an oath of loyalty to his liege.", + "pos": "noun", + "word_frequency": 21419 + }, + { + "word": "lightsaber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fictional weapon from Star Wars, a sword-like weapon made of light", + "example_sentence_english": "Luke Skywalker wielded a blue lightsaber.", + "pos": "noun", + "word_frequency": 21420 + }, + { + "word": "llama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a South American camelid mammal", + "example_sentence_english": "The llama carried the heavy load up the mountain.", + "pos": "noun", + "word_frequency": 21422 + }, + { + "word": "loudspeaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an apparatus that converts electrical impulses into sound", + "example_sentence_english": "The announcement was made over the loudspeaker.", + "pos": "noun", + "word_frequency": 21423 + }, + { + "word": "macron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mark placed over a vowel to indicate that it is long or stressed", + "example_sentence_english": "The dictionary uses a macron to show long vowel sounds.", + "pos": "noun", + "word_frequency": 21426 + }, + { + "word": "minster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large or important church, especially one that was formerly a monastery church", + "example_sentence_english": "York Minster is a magnificent cathedral in England.", + "pos": "noun", + "word_frequency": 21433 + }, + { + "word": "monger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to promote or spread (something undesirable)", + "example_sentence_english": "Some politicians tend to monger fear among the public.", + "pos": "verb", + "word_frequency": 21434 + }, + { + "word": "monotonous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dull, tedious, and repetitious; lacking in variety and interest", + "example_sentence_english": "The work was monotonous, consisting of repetitive tasks.", + "pos": "adjective", + "word_frequency": 21435 + }, + { + "word": "morbidity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the condition of being diseased; the rate of disease in a population", + "example_sentence_english": "The study examined the morbidity rates associated with the new virus.", + "pos": "noun", + "word_frequency": 21436 + }, + { + "word": "multipurpose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having several purposes or functions", + "example_sentence_english": "We bought a multipurpose tool that can be used for many tasks.", + "pos": "adjective", + "word_frequency": 21438 + }, + { + "word": "muscat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of grape or wine", + "example_sentence_english": "The muscat grapes are very sweet and aromatic.", + "pos": "noun", + "word_frequency": 21439 + }, + { + "word": "mutter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speak in a low, unclear voice", + "example_sentence_english": "He began to mutter to himself as he walked away.", + "pos": "verb", + "word_frequency": 21440 + }, + { + "word": "naturalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant citizenship to; to adapt to a new environment", + "example_sentence_english": "After living in the country for many years, she decided to naturalize.", + "pos": "verb", + "word_frequency": 21442 + }, + { + "word": "navel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly button", + "example_sentence_english": "The baby's navel was still healing.", + "pos": "noun", + "word_frequency": 21443 + }, + { + "word": "neanderthal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an extinct species of human", + "example_sentence_english": "Scientists have found many artifacts from Neanderthal communities.", + "pos": "noun", + "word_frequency": 21444 + }, + { + "word": "nitric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to nitrogen or nitrates", + "example_sentence_english": "Nitric acid is a highly corrosive substance.", + "pos": "adjective", + "word_frequency": 21446 + }, + { + "word": "northerly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in or toward the north; from the north", + "example_sentence_english": "A strong northerly wind blew across the plains.", + "pos": "adjective", + "word_frequency": 21447 + }, + { + "word": "obsidian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dark, glass-like volcanic rock", + "example_sentence_english": "Ancient tools were often made from obsidian.", + "pos": "noun", + "word_frequency": 21449 + }, + { + "word": "parliamentarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of a parliament; an expert in parliamentary procedure", + "example_sentence_english": "The experienced parliamentarian guided the debate through complex rules.", + "pos": "noun", + "word_frequency": 21451 + }, + { + "word": "pent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confined or shut in", + "example_sentence_english": "He released his pent-up frustration with a shout.", + "pos": "adjective", + "word_frequency": 21456 + }, + { + "word": "perky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheerful and lively", + "example_sentence_english": "Despite the early hour, she was surprisingly perky.", + "pos": "adjective", + "word_frequency": 21457 + }, + { + "word": "phish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trick someone into giving away personal information online", + "example_sentence_english": "Be careful not to click on links that might phish for your passwords.", + "pos": "verb", + "word_frequency": 21458 + }, + { + "word": "pomp", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ceremonial splendor and display", + "example_sentence_english": "The royal wedding was conducted with great pomp and ceremony.", + "pos": "noun", + "word_frequency": 21460 + }, + { + "word": "popper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that makes a popping sound; a type of fastener", + "example_sentence_english": "The party popper burst with confetti.", + "pos": "noun", + "word_frequency": 21461 + }, + { + "word": "priestess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a female priest", + "example_sentence_english": "The ancient temple was served by a high priestess.", + "pos": "noun", + "word_frequency": 21462 + }, + { + "word": "prohibitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "too expensive to buy or do; preventing something", + "example_sentence_english": "The cost of the new software was prohibitive for small businesses.", + "pos": "adjective", + "word_frequency": 21463 + }, + { + "word": "quotient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the result of a division; a degree or amount of a quality", + "example_sentence_english": "In the division 10 ÷ 2 = 5, 5 is the quotient.", + "pos": "noun", + "word_frequency": 21465 + }, + { + "word": "redness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality or state of being red", + "example_sentence_english": "The redness around the cut indicated an infection.", + "pos": "noun", + "word_frequency": 21469 + }, + { + "word": "reelect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to elect again", + "example_sentence_english": "The mayor hopes to be reelected for another term.", + "pos": "verb", + "word_frequency": 21470 + }, + { + "word": "retell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tell again", + "example_sentence_english": "She asked him to retell the story from the beginning.", + "pos": "verb", + "word_frequency": 21471 + }, + { + "word": "sabbatical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a period of paid leave for study or travel", + "example_sentence_english": "She took a sabbatical from work to write a book.", + "pos": "noun", + "word_frequency": 21474 + }, + { + "word": "sailboat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a boat propelled by sails", + "example_sentence_english": "They spent the afternoon sailing on their new sailboat.", + "pos": "noun", + "word_frequency": 21476 + }, + { + "word": "salaried", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receiving a salary", + "example_sentence_english": "She preferred a salaried position over hourly work.", + "pos": "adjective", + "word_frequency": 21477 + }, + { + "word": "saw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut with a saw", + "example_sentence_english": "He used a hacksaw to saw through the metal pipe.", + "pos": "verb", + "word_frequency": 21481 + }, + { + "word": "scallop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of edible shellfish", + "example_sentence_english": "We ordered pan-seared scallops for dinner.", + "pos": "noun", + "word_frequency": 21483 + }, + { + "word": "sear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burn or scorch the surface of something with sudden, intense heat", + "example_sentence_english": "Sear the steak on high heat to lock in the juices.", + "pos": "verb", + "word_frequency": 21486 + }, + { + "word": "secrete", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to produce and release a substance", + "example_sentence_english": "Glands in the skin secrete sweat to cool the body.", + "pos": "verb", + "word_frequency": 21487 + }, + { + "word": "sedation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of calming or making someone sleepy by administering a sedative drug", + "example_sentence_english": "The patient was given light sedation before the procedure.", + "pos": "noun", + "word_frequency": 21488 + }, + { + "word": "sleepover", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a party or occasion when a group of children or young people spend the night at a friend's house", + "example_sentence_english": "My daughter is having a sleepover with her friends this weekend.", + "pos": "noun", + "word_frequency": 21492 + }, + { + "word": "slingshot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Y-shaped stick with an elastic band used for shooting small stones", + "example_sentence_english": "He used a slingshot to knock down the apple from the tree.", + "pos": "noun", + "word_frequency": 21493 + }, + { + "word": "slurry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a semi-liquid mixture, typically of fine particles suspended in a liquid", + "example_sentence_english": "The cement mixer produced a thick slurry.", + "pos": "noun", + "word_frequency": 21494 + }, + { + "word": "spitfire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person with a fiery temper; a type of British fighter aircraft", + "example_sentence_english": "She's a real spitfire, always ready for an argument.", + "pos": "noun", + "word_frequency": 21498 + }, + { + "word": "steampunk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a genre of science fiction that has a historical setting and typically features steam-powered machinery", + "example_sentence_english": "The novel is set in a steampunk version of Victorian London.", + "pos": "noun", + "word_frequency": 21500 + }, + { + "word": "subspecies", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a taxonomic group that is a subdivision of a species", + "example_sentence_english": "The Siberian tiger is a subspecies of tiger.", + "pos": "noun", + "word_frequency": 21503 + }, + { + "word": "subvert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to undermine the power and authority of an established system or institution", + "example_sentence_english": "The rebels tried to subvert the government.", + "pos": "verb", + "word_frequency": 21504 + }, + { + "word": "sunburn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inflammation of the skin caused by overexposure to ultraviolet radiation from the sun", + "example_sentence_english": "I got a terrible sunburn after spending all day at the beach.", + "pos": "noun", + "word_frequency": 21505 + }, + { + "word": "supplementation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of adding something to complete or enhance something else", + "example_sentence_english": "Vitamin D supplementation is often recommended in winter.", + "pos": "noun", + "word_frequency": 21507 + }, + { + "word": "swerve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change direction suddenly, especially to avoid hitting something", + "example_sentence_english": "The car swerved to avoid the deer.", + "pos": "verb", + "word_frequency": 21508 + }, + { + "word": "tarnish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lose or cause to lose luster, especially as a result of exposure to air or moisture", + "example_sentence_english": "The silver began to tarnish after a few months.", + "pos": "verb", + "word_frequency": 21509 + }, + { + "word": "termite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, pale soft-bodied insect that lives in large colonies", + "example_sentence_english": "Termites can cause significant damage to wooden structures.", + "pos": "noun", + "word_frequency": 21511 + }, + { + "word": "testicular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the testes", + "example_sentence_english": "Testicular cancer is a serious but often treatable condition.", + "pos": "adjective", + "word_frequency": 21512 + }, + { + "word": "tiller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lever used to turn the rudder of a boat; a machine for breaking up soil", + "example_sentence_english": "He gripped the tiller firmly as the boat turned.", + "pos": "noun", + "word_frequency": 21513 + }, + { + "word": "tooling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of designing and manufacturing tools", + "example_sentence_english": "The company invested heavily in new tooling for the production line.", + "pos": "noun", + "word_frequency": 21514 + }, + { + "word": "topological", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to topology, the branch of mathematics concerned with the properties of geometric objects that are preserved under continuous deformations", + "example_sentence_english": "A donut and a coffee cup are topologically equivalent.", + "pos": "adjective", + "word_frequency": 21515 + }, + { + "word": "topple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overbalance or cause to overbalance and fall", + "example_sentence_english": "The strong winds threatened to topple the old tree.", + "pos": "verb", + "word_frequency": 21516 + }, + { + "word": "transcendent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beyond or above the range of normal or merely physical human experience", + "example_sentence_english": "He spoke of a transcendent spiritual experience.", + "pos": "adjective", + "word_frequency": 21517 + }, + { + "word": "trapper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who traps wild animals, especially for their fur", + "example_sentence_english": "The trapper set his snares deep in the forest.", + "pos": "noun", + "word_frequency": 21518 + }, + { + "word": "trickery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the practice of using tricks or deception", + "example_sentence_english": "He won the game through clever trickery.", + "pos": "noun", + "word_frequency": 21519 + }, + { + "word": "trucker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who drives a truck for a living.", + "example_sentence_english": "The trucker delivered the goods across the country.", + "pos": "noun", + "word_frequency": 21521 + }, + { + "word": "turban", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A type of headwear consisting of a long piece of cloth wound around the head.", + "example_sentence_english": "He wore a colorful turban as part of his traditional attire.", + "pos": "noun", + "word_frequency": 21522 + }, + { + "word": "tusk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A long, pointed tooth, especially one that protrudes from the mouth of an animal.", + "example_sentence_english": "The elephant's tusks were impressive.", + "pos": "noun", + "word_frequency": 21523 + }, + { + "word": "unending", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Seemingly without end; continuous.", + "example_sentence_english": "The journey felt unending, stretching for miles.", + "pos": "adjective", + "word_frequency": 21525 + }, + { + "word": "unforgiving", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not willing to forgive or excuse; harsh or severe.", + "example_sentence_english": "The desert can be an unforgiving environment for travelers.", + "pos": "adjective", + "word_frequency": 21526 + }, + { + "word": "uninstall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To remove a program or software from a computer.", + "example_sentence_english": "I need to uninstall this old software to free up space.", + "pos": "verb", + "word_frequency": 21527 + }, + { + "word": "unproven", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not demonstrated or shown to be true or valid.", + "example_sentence_english": "His theories remain unproven without further evidence.", + "pos": "adjective", + "word_frequency": 21528 + }, + { + "word": "affix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To attach or stick something to something else.", + "example_sentence_english": "Please affix a stamp to the envelope.", + "pos": "verb", + "word_frequency": 21551 + }, + { + "word": "airbag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A safety device in a car that inflates rapidly on impact.", + "example_sentence_english": "The car's airbag deployed during the collision.", + "pos": "noun", + "word_frequency": 21553 + }, + { + "word": "alkali", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A soluble salt or base, typically one of the hydroxides of the alkali metals.", + "example_sentence_english": "Sodium hydroxide is a strong alkali.", + "pos": "noun", + "word_frequency": 21555 + }, + { + "word": "allusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An indirect or passing reference.", + "example_sentence_english": "The poem contained an allusion to Greek mythology.", + "pos": "noun", + "word_frequency": 21556 + }, + { + "word": "altruism", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Disinterested and selfless concern for the well-being of others.", + "example_sentence_english": "His act of altruism saved many lives.", + "pos": "noun", + "word_frequency": 21558 + }, + { + "word": "ambience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The character and atmosphere of a place.", + "example_sentence_english": "The restaurant had a lovely ambience with soft lighting and music.", + "pos": "noun", + "word_frequency": 21559 + }, + { + "word": "amphibian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal that can live both on land and in water", + "example_sentence_english": "Frogs are amphibians.", + "pos": "noun", + "word_frequency": 21560 + }, + { + "word": "anomalous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deviating from what is standard, normal, or expected", + "example_sentence_english": "The results were anomalous and required further investigation.", + "pos": "adjective", + "word_frequency": 21563 + }, + { + "word": "assemblage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection or gathering of things or people", + "example_sentence_english": "The museum displayed an impressive assemblage of ancient artifacts.", + "pos": "noun", + "word_frequency": 21568 + }, + { + "word": "autocorrect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a software feature that automatically corrects common spelling errors", + "example_sentence_english": "My phone's autocorrect changed \"duck\" to \"luck\".", + "pos": "noun", + "word_frequency": 21572 + }, + { + "word": "baht", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the basic monetary unit of Thailand", + "example_sentence_english": "The exchange rate for the Thai baht is favorable.", + "pos": "noun", + "word_frequency": 21573 + }, + { + "word": "birdman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies or is very fond of birds", + "example_sentence_english": "The birdman spent hours observing the eagles.", + "pos": "noun", + "word_frequency": 21579 + }, + { + "word": "birthing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of giving birth", + "example_sentence_english": "She attended birthing classes to prepare for the baby's arrival.", + "pos": "noun", + "word_frequency": 21580 + }, + { + "word": "bosh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolish or absurd talk or ideas; nonsense", + "example_sentence_english": "Don't talk such bosh, it's clearly not true.", + "pos": "noun", + "word_frequency": 21583 + }, + { + "word": "caress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to touch or stroke gently or lovingly", + "example_sentence_english": "He gently caressed her cheek.", + "pos": "verb", + "word_frequency": 21588 + }, + { + "word": "catchphrase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a well-known sentence or phrase, typically one that is associated with a particular famous person", + "example_sentence_english": "\"May the Force be with you\" is a famous catchphrase.", + "pos": "noun", + "word_frequency": 21589 + }, + { + "word": "censure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to express severe disapproval of (someone or something), especially in a formal statement", + "example_sentence_english": "The committee voted to censure the senator for his misconduct.", + "pos": "verb", + "word_frequency": 21590 + }, + { + "word": "chewy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of food) requiring much chewing", + "example_sentence_english": "These cookies are deliciously soft and chewy.", + "pos": "adjective", + "word_frequency": 21592 + }, + { + "word": "childlike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the good qualities associated with a child, such as innocence or frankness", + "example_sentence_english": "She has a childlike wonder about the world.", + "pos": "adjective", + "word_frequency": 21593 + }, + { + "word": "cleft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "split, divided, or partially divided into two", + "example_sentence_english": "He had a distinctive cleft chin.", + "pos": "adjective", + "word_frequency": 21595 + }, + { + "word": "clump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small group of things, especially trees or plants, growing closely together", + "example_sentence_english": "There was a small clump of trees at the edge of the field.", + "pos": "noun", + "word_frequency": 21596 + }, + { + "word": "communicative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able or eager to communicate", + "example_sentence_english": "She is a very communicative person and loves to talk.", + "pos": "adjective", + "word_frequency": 21599 + }, + { + "word": "conceivably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possibly; imaginably", + "example_sentence_english": "Conceivably, we could finish the project by Friday if everyone works overtime.", + "pos": "adverb", + "word_frequency": 21600 + }, + { + "word": "constitutionality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being in accordance with a constitution", + "example_sentence_english": "The court will rule on the constitutionality of the new law next month.", + "pos": "noun", + "word_frequency": 21601 + }, + { + "word": "creeper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant that grows along the ground or up walls; a person who behaves in a strange or frightening way", + "example_sentence_english": "The old house was covered in ivy and other creepers.", + "pos": "noun", + "word_frequency": 21603 + }, + { + "word": "cultivar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a plant variety that has been produced in cultivation by selective breeding", + "example_sentence_english": "This new rose cultivar is resistant to common diseases.", + "pos": "noun", + "word_frequency": 21604 + }, + { + "word": "customizable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be modified to suit a particular user or task", + "example_sentence_english": "The software offers many customizable features.", + "pos": "adjective", + "word_frequency": 21605 + }, + { + "word": "damper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that reduces the force or effect of something; a disc or valve that regulates the flow of air or smoke", + "example_sentence_english": "The news put a damper on our spirits.", + "pos": "noun", + "word_frequency": 21607 + }, + { + "word": "deepwater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or found in deep water", + "example_sentence_english": "Deepwater drilling operations are complex and risky.", + "pos": "adjective", + "word_frequency": 21608 + }, + { + "word": "dependant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who relies on another for financial support", + "example_sentence_english": "He claimed his wife and children as dependants on his tax form.", + "pos": "noun", + "word_frequency": 21611 + }, + { + "word": "depository", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place where something is deposited or stored", + "example_sentence_english": "The national archives serve as a depository for historical documents.", + "pos": "noun", + "word_frequency": 21612 + }, + { + "word": "deuce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a score of 40-40 in tennis; the two on a playing card or die", + "example_sentence_english": "The tennis match went to deuce several times.", + "pos": "noun", + "word_frequency": 21613 + }, + { + "word": "diagonally", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at an angle; in a diagonal direction", + "example_sentence_english": "She walked diagonally across the park.", + "pos": "adverb", + "word_frequency": 21614 + }, + { + "word": "dram", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small drink of whiskey or other spirits; a unit of weight", + "example_sentence_english": "He poured himself a dram of whisky.", + "pos": "noun", + "word_frequency": 21621 + }, + { + "word": "electrostatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to static electricity", + "example_sentence_english": "Dust often clings to surfaces due to electrostatic forces.", + "pos": "adjective", + "word_frequency": 21625 + }, + { + "word": "empathetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing an ability to understand and share the feelings of another", + "example_sentence_english": "An empathetic listener can truly connect with others.", + "pos": "adjective", + "word_frequency": 21626 + }, + { + "word": "emulator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or program that enables a computer to imitate the functions of another computer system", + "example_sentence_english": "He used an emulator to play old console games on his PC.", + "pos": "noun", + "word_frequency": 21627 + }, + { + "word": "enlistment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of enrolling or being enrolled in the armed services", + "example_sentence_english": "His enlistment in the army changed his life.", + "pos": "noun", + "word_frequency": 21628 + }, + { + "word": "eraser", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a piece of rubber or plastic used to remove pencil marks", + "example_sentence_english": "Can I borrow your eraser?", + "pos": "noun", + "word_frequency": 21630 + }, + { + "word": "etymology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of the origin and history of words", + "example_sentence_english": "The etymology of the word \"hello\" is quite interesting.", + "pos": "noun", + "word_frequency": 21631 + }, + { + "word": "exasperate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to irritate intensely; to infuriate", + "example_sentence_english": "His constant complaining began to exasperate me.", + "pos": "verb", + "word_frequency": 21632 + }, + { + "word": "exorcist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who expels evil spirits", + "example_sentence_english": "The priest acted as an exorcist to help the troubled family.", + "pos": "noun", + "word_frequency": 21634 + }, + { + "word": "federate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unite in a federation", + "example_sentence_english": "The states decided to federate to form a stronger nation.", + "pos": "verb", + "word_frequency": 21636 + }, + { + "word": "fibrous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consisting of or characterized by fibers", + "example_sentence_english": "Celery is a fibrous vegetable.", + "pos": "adjective", + "word_frequency": 21638 + }, + { + "word": "fixate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to focus intently or obsessively", + "example_sentence_english": "He tends to fixate on small details.", + "pos": "verb", + "word_frequency": 21640 + }, + { + "word": "gaussian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a normal distribution", + "example_sentence_english": "The data showed a Gaussian distribution.", + "pos": "adjective", + "word_frequency": 21646 + }, + { + "word": "geeky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfashionable and socially awkward, often with specialized interests", + "example_sentence_english": "He has a very geeky interest in comic books.", + "pos": "adjective", + "word_frequency": 21650 + }, + { + "word": "going", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conditions for movement or progress", + "example_sentence_english": "The going was tough, but they persevered.", + "pos": "noun", + "word_frequency": 21651 + }, + { + "word": "gratis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without charge; free", + "example_sentence_english": "The software was provided gratis to all students.", + "pos": "adverb", + "word_frequency": 21653 + }, + { + "word": "gratuitous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uncalled for; lacking good reason; unwarranted", + "example_sentence_english": "The film contained gratuitous violence.", + "pos": "adjective", + "word_frequency": 21654 + }, + { + "word": "haggard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looking exhausted and unwell, especially from fatigue, worry, or suffering", + "example_sentence_english": "After the long journey, he looked haggard and tired.", + "pos": "adjective", + "word_frequency": 21657 + }, + { + "word": "heading", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a title at the head of a page or section", + "example_sentence_english": "Please read the heading before you start the chapter.", + "pos": "noun", + "word_frequency": 21658 + }, + { + "word": "headliner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main performer or attraction", + "example_sentence_english": "The band was the headliner at the music festival.", + "pos": "noun", + "word_frequency": 21659 + }, + { + "word": "honeycomb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mass of hexagonal wax cells built by honeybees", + "example_sentence_english": "Bees store honey in the honeycomb.", + "pos": "noun", + "word_frequency": 21661 + }, + { + "word": "hooligan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a violent young troublemaker, typically one of a gang", + "example_sentence_english": "The police arrested the football hooligans.", + "pos": "noun", + "word_frequency": 21662 + }, + { + "word": "hopelessness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a feeling or state of despair; lack of hope", + "example_sentence_english": "She felt a deep sense of hopelessness after losing her job.", + "pos": "noun", + "word_frequency": 21663 + }, + { + "word": "householder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who owns or rents a house", + "example_sentence_english": "Every householder is responsible for their own waste disposal.", + "pos": "noun", + "word_frequency": 21665 + }, + { + "word": "hubris", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive pride or self-confidence", + "example_sentence_english": "His hubris led to his downfall.", + "pos": "noun", + "word_frequency": 21668 + }, + { + "word": "hysterically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with uncontrolled emotion, especially laughter or crying", + "example_sentence_english": "She laughed hysterically at the joke.", + "pos": "adverb", + "word_frequency": 21671 + }, + { + "word": "idealize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regard or represent as perfect or better than in reality", + "example_sentence_english": "She tended to idealize her childhood.", + "pos": "verb", + "word_frequency": 21673 + }, + { + "word": "idiosyncratic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peculiar or individual", + "example_sentence_english": "His writing style is highly idiosyncratic.", + "pos": "adjective", + "word_frequency": 21674 + }, + { + "word": "impassion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fill with passion or strong emotion", + "example_sentence_english": "His speech was designed to impassion the crowd.", + "pos": "verb", + "word_frequency": 21676 + }, + { + "word": "indemnity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "security or protection against a loss or other financial burden", + "example_sentence_english": "The company offered an indemnity against any losses.", + "pos": "noun", + "word_frequency": 21677 + }, + { + "word": "installer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a program that installs software", + "example_sentence_english": "You need to run the installer to set up the new application.", + "pos": "noun", + "word_frequency": 21679 + }, + { + "word": "interoperability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The ability of computer systems or software to exchange and make use of information.", + "example_sentence_english": "The new software greatly improved the interoperability between different departments.", + "pos": "noun", + "word_frequency": 21680 + }, + { + "word": "jitsu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A Japanese martial art.", + "example_sentence_english": "He practices jitsu to improve his self-defense skills.", + "pos": "noun", + "word_frequency": 21682 + }, + { + "word": "juve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A juvenile; a young person, especially a delinquent.", + "example_sentence_english": "The juve was arrested for shoplifting.", + "pos": "noun", + "word_frequency": 21684 + }, + { + "word": "kiddie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A child.", + "example_sentence_english": "The kiddie rides at the fair were very popular.", + "pos": "noun", + "word_frequency": 21689 + }, + { + "word": "mailer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person or thing that sends mail; a piece of promotional material sent by mail.", + "example_sentence_english": "We received a promotional mailer from the new store.", + "pos": "noun", + "word_frequency": 21699 + }, + { + "word": "mangle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To severely damage by tearing or crushing.", + "example_sentence_english": "The machine mangled the fabric beyond repair.", + "pos": "verb", + "word_frequency": 21701 + }, + { + "word": "mausoleum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A building housing a tomb or tombs.", + "example_sentence_english": "The ancient mausoleum was an impressive structure.", + "pos": "noun", + "word_frequency": 21702 + }, + { + "word": "melodramatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Exaggerated, sensationalized, or overemotional.", + "example_sentence_english": "Her reaction to the small problem was quite melodramatic.", + "pos": "adjective", + "word_frequency": 21704 + }, + { + "word": "metallurgy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The branch of science and technology concerned with the properties of metals and their production and purification.", + "example_sentence_english": "He studied metallurgy to understand how metals behave.", + "pos": "noun", + "word_frequency": 21706 + }, + { + "word": "mull", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To think about (a fact, proposal, or request) deeply and at length.", + "example_sentence_english": "She needed time to mull over the job offer.", + "pos": "verb", + "word_frequency": 21710 + }, + { + "word": "mushy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Soft and pulpy; excessively sentimental.", + "example_sentence_english": "The overripe bananas were quite mushy.", + "pos": "adjective", + "word_frequency": 21711 + }, + { + "word": "nepalese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person from Nepal.", + "example_sentence_english": "Many Nepalese live and work abroad.", + "pos": "noun", + "word_frequency": 21713 + }, + { + "word": "ocular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Of or connected with the eyes or sight.", + "example_sentence_english": "The doctor performed an ocular examination.", + "pos": "adjective", + "word_frequency": 21715 + }, + { + "word": "ontology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The branch of metaphysics dealing with the nature of being.", + "example_sentence_english": "Philosophy students often study ontology.", + "pos": "noun", + "word_frequency": 21716 + }, + { + "word": "oratory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The art of public speaking.", + "example_sentence_english": "His powerful oratory captivated the audience.", + "pos": "noun", + "word_frequency": 21718 + }, + { + "word": "orbiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A spacecraft designed to orbit a celestial body without landing on it.", + "example_sentence_english": "The Mars orbiter sent back stunning images of the planet's surface.", + "pos": "noun", + "word_frequency": 21719 + }, + { + "word": "origami", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the art of paper folding", + "example_sentence_english": "She made a beautiful crane using origami.", + "pos": "noun", + "word_frequency": 21720 + }, + { + "word": "orthopaedic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the branch of medicine dealing with bones and muscles", + "example_sentence_english": "He had to see an orthopaedic surgeon for his knee injury.", + "pos": "adjective", + "word_frequency": 21721 + }, + { + "word": "paradoxically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a seemingly absurd or self-contradictory way", + "example_sentence_english": "Paradoxically, the more you try to control it, the less control you have.", + "pos": "adverb", + "word_frequency": 21723 + }, + { + "word": "pituitary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small gland at the base of the brain", + "example_sentence_english": "The pituitary gland plays a crucial role in hormone regulation.", + "pos": "noun", + "word_frequency": 21729 + }, + { + "word": "plumage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bird's feathers", + "example_sentence_english": "The peacock displayed its magnificent plumage.", + "pos": "noun", + "word_frequency": 21730 + }, + { + "word": "poacher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who hunts or catches game or fish illegally", + "example_sentence_english": "Wildlife rangers are working to stop elephant poachers.", + "pos": "noun", + "word_frequency": 21731 + }, + { + "word": "possum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a nocturnal marsupial", + "example_sentence_english": "The possum played dead when the dog approached.", + "pos": "noun", + "word_frequency": 21733 + }, + { + "word": "premeditate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to think out or plan (an action, especially a crime) beforehand", + "example_sentence_english": "The crime was clearly premeditated.", + "pos": "verb", + "word_frequency": 21734 + }, + { + "word": "preset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set or adjust in advance", + "example_sentence_english": "Make sure to preset the alarm for 6 AM.", + "pos": "verb", + "word_frequency": 21735 + }, + { + "word": "proportionally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that corresponds in size or amount to something else", + "example_sentence_english": "The reward will be distributed proportionally to each person's contribution.", + "pos": "adverb", + "word_frequency": 21736 + }, + { + "word": "raiser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that raises something", + "example_sentence_english": "She is a successful fundraiser for the charity.", + "pos": "noun", + "word_frequency": 21737 + }, + { + "word": "reassign", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assign again or to a different person or task", + "example_sentence_english": "They decided to reassign the project to a new team.", + "pos": "verb", + "word_frequency": 21740 + }, + { + "word": "recast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to present (something) in a different way; to give a new form to", + "example_sentence_english": "The director decided to recast the role with a different actor.", + "pos": "verb", + "word_frequency": 21741 + }, + { + "word": "recombinant", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or denoting an organism, cell, or genetic material that has been recombined", + "example_sentence_english": "Scientists are working with recombinant DNA technology.", + "pos": "adjective", + "word_frequency": 21742 + }, + { + "word": "repellent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that deters insects or other pests", + "example_sentence_english": "Don't forget to pack insect repellent for the camping trip.", + "pos": "noun", + "word_frequency": 21743 + }, + { + "word": "reproach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to express disapproval or disappointment to (someone)", + "example_sentence_english": "He reproached her for her carelessness.", + "pos": "verb", + "word_frequency": 21744 + }, + { + "word": "repurchase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to buy something back", + "example_sentence_english": "The company decided to repurchase its own shares.", + "pos": "verb", + "word_frequency": 21745 + }, + { + "word": "rescuer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who saves someone or something from a dangerous or difficult situation", + "example_sentence_english": "The mountain rescuers found the lost hikers.", + "pos": "noun", + "word_frequency": 21746 + }, + { + "word": "retractable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be drawn back or in", + "example_sentence_english": "The car has a retractable roof.", + "pos": "adjective", + "word_frequency": 21747 + }, + { + "word": "retroactively", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "with effect from a date in the past", + "example_sentence_english": "The new policy will apply retroactively to the beginning of the year.", + "pos": "adverb", + "word_frequency": 21748 + }, + { + "word": "retweet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repost or forward a message on Twitter", + "example_sentence_english": "She asked her followers to retweet her announcement.", + "pos": "verb", + "word_frequency": 21749 + }, + { + "word": "runny", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "more liquid than usual; flowing", + "example_sentence_english": "I have a runny nose today.", + "pos": "adjective", + "word_frequency": 21752 + }, + { + "word": "rwandan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a native or inhabitant of Rwanda", + "example_sentence_english": "Many Rwandans are working to rebuild their country.", + "pos": "noun", + "word_frequency": 21754 + }, + { + "word": "sander", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a power tool used for smoothing surfaces", + "example_sentence_english": "He used an electric sander to smooth the wood.", + "pos": "noun", + "word_frequency": 21756 + }, + { + "word": "sarcastically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a sarcastic manner; in a way that uses irony to mock or convey contempt", + "example_sentence_english": "She replied sarcastically, 'Oh, how wonderful!'.", + "pos": "adverb", + "word_frequency": 21757 + }, + { + "word": "scepticism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a doubting or questioning attitude", + "example_sentence_english": "There was widespread scepticism about the new proposal.", + "pos": "noun", + "word_frequency": 21758 + }, + { + "word": "scorecard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a card or sheet on which scores are recorded", + "example_sentence_english": "The golf player checked his scorecard after the round.", + "pos": "noun", + "word_frequency": 21759 + }, + { + "word": "scrutinize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "examine closely", + "example_sentence_english": "The police will scrutinize the evidence carefully.", + "pos": "verb", + "word_frequency": 21760 + }, + { + "word": "seabed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ocean floor", + "example_sentence_english": "Divers explored the seabed for ancient artifacts.", + "pos": "noun", + "word_frequency": 21761 + }, + { + "word": "serenade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sing or play music for someone", + "example_sentence_english": "He decided to serenade her under her window.", + "pos": "verb", + "word_frequency": 21765 + }, + { + "word": "sideshow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor or distracting event", + "example_sentence_english": "The argument became a sideshow, distracting from the main issue.", + "pos": "noun", + "word_frequency": 21767 + }, + { + "word": "slaughterhouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abattoir", + "example_sentence_english": "Animals are processed in a slaughterhouse.", + "pos": "noun", + "word_frequency": 21769 + }, + { + "word": "slideshow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presentation of images", + "example_sentence_english": "We watched a slideshow of our vacation photos.", + "pos": "noun", + "word_frequency": 21770 + }, + { + "word": "speculator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who speculates financially", + "example_sentence_english": "The real estate speculator bought several properties.", + "pos": "noun", + "word_frequency": 21772 + }, + { + "word": "splurge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spend a lot of money", + "example_sentence_english": "I decided to splurge on a new pair of shoes.", + "pos": "verb", + "word_frequency": 21773 + }, + { + "word": "spotty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uneven or inconsistent", + "example_sentence_english": "The internet connection has been spotty all day.", + "pos": "adjective", + "word_frequency": 21774 + }, + { + "word": "stabilizer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "device or substance that maintains stability", + "example_sentence_english": "The ship's stabilizers reduced the rolling motion.", + "pos": "noun", + "word_frequency": 21775 + }, + { + "word": "subconsciously", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without conscious awareness", + "example_sentence_english": "He subconsciously tapped his foot during the meeting.", + "pos": "adverb", + "word_frequency": 21776 + }, + { + "word": "suppressor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "something that suppresses or inhibits", + "example_sentence_english": "The new drug acts as a suppressor of the immune response.", + "pos": "noun", + "word_frequency": 21777 + }, + { + "word": "sycamore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of tree", + "example_sentence_english": "The old sycamore tree provided shade in the park.", + "pos": "noun", + "word_frequency": 21778 + }, + { + "word": "tacit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "understood or implied without being stated", + "example_sentence_english": "There was a tacit agreement between them.", + "pos": "adjective", + "word_frequency": 21779 + }, + { + "word": "takeout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food bought to be eaten elsewhere", + "example_sentence_english": "Let's order some Chinese takeout tonight.", + "pos": "noun", + "word_frequency": 21781 + }, + { + "word": "tangerine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small citrus fruit", + "example_sentence_english": "She peeled a tangerine for a snack.", + "pos": "noun", + "word_frequency": 21782 + }, + { + "word": "taro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tropical root vegetable", + "example_sentence_english": "Taro is a staple food in many tropical regions.", + "pos": "noun", + "word_frequency": 21783 + }, + { + "word": "teem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "be full of things; swarm", + "example_sentence_english": "The pond was teeming with fish.", + "pos": "verb", + "word_frequency": 21784 + }, + { + "word": "tonnage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weight in tons", + "example_sentence_english": "The ship's tonnage was impressive.", + "pos": "noun", + "word_frequency": 21786 + }, + { + "word": "typhoid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a serious infectious disease", + "example_sentence_english": "He was diagnosed with typhoid fever.", + "pos": "noun", + "word_frequency": 21788 + }, + { + "word": "unclaimed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not claimed or taken", + "example_sentence_english": "The lost property office was full of unclaimed items.", + "pos": "adjective", + "word_frequency": 21792 + }, + { + "word": "underwhelming", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not impressive or exciting", + "example_sentence_english": "The movie's ending was rather underwhelming.", + "pos": "adjective", + "word_frequency": 21793 + }, + { + "word": "unofficially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not officially or formally", + "example_sentence_english": "Unofficially, the project has been approved.", + "pos": "adverb", + "word_frequency": 21794 + }, + { + "word": "unopened", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not yet opened", + "example_sentence_english": "There was an unopened letter on the table.", + "pos": "adjective", + "word_frequency": 21795 + }, + { + "word": "untapped", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not yet used or exploited", + "example_sentence_english": "The region has vast untapped natural resources.", + "pos": "adjective", + "word_frequency": 21796 + }, + { + "word": "upholstery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the soft padded covering of furniture", + "example_sentence_english": "The old sofa needed new upholstery.", + "pos": "noun", + "word_frequency": 21797 + }, + { + "word": "veracity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truthfulness or accuracy", + "example_sentence_english": "The police questioned the veracity of his statement.", + "pos": "noun", + "word_frequency": 21799 + }, + { + "word": "verifiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be checked or proved true", + "example_sentence_english": "The data must be verifiable for the study to be credible.", + "pos": "adjective", + "word_frequency": 21800 + }, + { + "word": "viscous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a thick, sticky consistency between solid and liquid", + "example_sentence_english": "Honey is a viscous substance.", + "pos": "adjective", + "word_frequency": 21802 + }, + { + "word": "vitally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is absolutely necessary or important", + "example_sentence_english": "It is vitally important that you follow these instructions.", + "pos": "adverb", + "word_frequency": 21803 + }, + { + "word": "vixen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a female fox; a quarrelsome or malicious woman", + "example_sentence_english": "The vixen led her cubs to the den.", + "pos": "noun", + "word_frequency": 21804 + }, + { + "word": "windfall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unexpected amount of money", + "example_sentence_english": "The lottery win was a huge windfall for them.", + "pos": "noun", + "word_frequency": 21813 + }, + { + "word": "workday", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a day on which work is done", + "example_sentence_english": "My workday usually starts at 9 AM.", + "pos": "noun", + "word_frequency": 21815 + }, + { + "word": "wreak", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause (a great deal of damage or harm)", + "example_sentence_english": "The storm threatened to wreak havoc on the coastal towns.", + "pos": "verb", + "word_frequency": 21816 + }, + { + "word": "yap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bark with a high-pitched sound", + "example_sentence_english": "The small dog would yap excitedly whenever someone came to the door.", + "pos": "verb", + "word_frequency": 21819 + }, + { + "word": "ablaze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burning fiercely; on fire", + "example_sentence_english": "The old building was completely ablaze.", + "pos": "adjective", + "word_frequency": 21824 + }, + { + "word": "amiss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not quite right; inappropriate or out of place", + "example_sentence_english": "He sensed that something was amiss when he saw the open door.", + "pos": "adjective", + "word_frequency": 21829 + }, + { + "word": "amphetamine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a synthetic, addictive, mood-altering drug", + "example_sentence_english": "Amphetamine is a powerful stimulant.", + "pos": "noun", + "word_frequency": 21830 + }, + { + "word": "amputate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut off (a limb or other appendage of the body)", + "example_sentence_english": "The doctors had to amputate his leg after the accident.", + "pos": "verb", + "word_frequency": 21831 + }, + { + "word": "anaesthetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that induces insensitivity to pain", + "example_sentence_english": "The dentist gave me an anaesthetic before extracting the tooth.", + "pos": "noun", + "word_frequency": 21833 + }, + { + "word": "animator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes animated films or cartoons", + "example_sentence_english": "The animator brought the characters to life.", + "pos": "noun", + "word_frequency": 21834 + }, + { + "word": "aqueduct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an artificial channel for conveying water, typically in the form of a bridge supported by tall columns across a valley or other gap", + "example_sentence_english": "The ancient Romans built impressive aqueducts.", + "pos": "noun", + "word_frequency": 21836 + }, + { + "word": "archeological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to archaeology", + "example_sentence_english": "They discovered an important archeological site.", + "pos": "adjective", + "word_frequency": 21837 + }, + { + "word": "audiovisual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to both sound and vision", + "example_sentence_english": "The classroom is equipped with modern audiovisual aids.", + "pos": "adjective", + "word_frequency": 21839 + }, + { + "word": "authenticate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to verify the identity or genuineness of", + "example_sentence_english": "You need to authenticate your account before proceeding.", + "pos": "verb", + "word_frequency": 21840 + }, + { + "word": "awry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "away from the appropriate, planned, or expected course; amiss", + "example_sentence_english": "The plans went awry when the weather changed unexpectedly.", + "pos": "adjective", + "word_frequency": 21841 + }, + { + "word": "bask", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lie exposed to warmth or light, typically from the sun, for relaxation and pleasure", + "example_sentence_english": "The cat loved to bask in the sun on the windowsill.", + "pos": "verb", + "word_frequency": 21844 + }, + { + "word": "bristle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, stiff hair or filament", + "example_sentence_english": "The brush had stiff bristles.", + "pos": "noun", + "word_frequency": 21851 + }, + { + "word": "centralise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concentrate (control or power) in a central organization", + "example_sentence_english": "The company decided to centralise all its operations in one office.", + "pos": "verb", + "word_frequency": 21855 + }, + { + "word": "chiropractic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of complementary medicine focused on diagnosis and treatment of musculoskeletal disorders", + "example_sentence_english": "She sought chiropractic treatment for her back pain.", + "pos": "noun", + "word_frequency": 21857 + }, + { + "word": "chopstick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one of a pair of small, thin sticks used as eating utensils", + "example_sentence_english": "He learned to eat with chopsticks.", + "pos": "noun", + "word_frequency": 21858 + }, + { + "word": "citizenry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the citizens of a place regarded collectively", + "example_sentence_english": "The government is responsible for the well-being of its citizenry.", + "pos": "noun", + "word_frequency": 21860 + }, + { + "word": "colloquial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of language) used in ordinary or familiar conversation; not formal or literary", + "example_sentence_english": "His speech was full of colloquial expressions.", + "pos": "adjective", + "word_frequency": 21862 + }, + { + "word": "confidant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person with whom one shares a secret or private matter, trusting them not to repeat it to others", + "example_sentence_english": "She told her best friend, who was her closest confidant, everything.", + "pos": "noun", + "word_frequency": 21863 + }, + { + "word": "consecutively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a consecutive manner; one after another without interruption", + "example_sentence_english": "The team won five games consecutively.", + "pos": "adverb", + "word_frequency": 21865 + }, + { + "word": "controllable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be controlled or regulated", + "example_sentence_english": "The situation is still controllable if we act quickly.", + "pos": "adjective", + "word_frequency": 21866 + }, + { + "word": "cornea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the transparent outer layer of the eye", + "example_sentence_english": "Light enters the eye through the cornea.", + "pos": "noun", + "word_frequency": 21869 + }, + { + "word": "crumple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crush (something, typically paper or cloth) so that it becomes creased and wrinkled", + "example_sentence_english": "He watched the paper crumple in his hand.", + "pos": "verb", + "word_frequency": 21872 + }, + { + "word": "decompression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of reducing pressure", + "example_sentence_english": "Divers must undergo decompression to avoid the bends.", + "pos": "noun", + "word_frequency": 21874 + }, + { + "word": "deflation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a reduction in the general level of prices in an economy", + "example_sentence_english": "The country is currently experiencing economic deflation.", + "pos": "noun", + "word_frequency": 21875 + }, + { + "word": "demean", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause a loss of dignity or respect for (someone or something)", + "example_sentence_english": "His rude comments demeaned the entire team.", + "pos": "verb", + "word_frequency": 21876 + }, + { + "word": "dengue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tropical disease transmitted by mosquitoes, causing fever and severe pain", + "example_sentence_english": "She contracted dengue fever while traveling abroad.", + "pos": "noun", + "word_frequency": 21877 + }, + { + "word": "denominational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of a particular religious denomination", + "example_sentence_english": "The school is not denominational and welcomes students of all faiths.", + "pos": "adjective", + "word_frequency": 21878 + }, + { + "word": "dermatology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of medicine concerned with the diagnosis and treatment of skin disorders", + "example_sentence_english": "She decided to specialize in dermatology after medical school.", + "pos": "noun", + "word_frequency": 21879 + }, + { + "word": "detachable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be removed", + "example_sentence_english": "The car seat has a detachable cover for easy cleaning.", + "pos": "adjective", + "word_frequency": 21880 + }, + { + "word": "deterministic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "always producing the same result", + "example_sentence_english": "The algorithm is deterministic, meaning it will always produce the same output for the same input.", + "pos": "adjective", + "word_frequency": 21881 + }, + { + "word": "disfigure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spoil the appearance of", + "example_sentence_english": "The accident left him with a scar that would disfigure his face.", + "pos": "verb", + "word_frequency": 21884 + }, + { + "word": "disprove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prove to be false", + "example_sentence_english": "Scientists are trying to disprove the theory with new evidence.", + "pos": "verb", + "word_frequency": 21885 + }, + { + "word": "divulge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make known (private information)", + "example_sentence_english": "He refused to divulge the source of his information.", + "pos": "verb", + "word_frequency": 21886 + }, + { + "word": "docile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy to control or train", + "example_sentence_english": "The once wild horse became docile after months of training.", + "pos": "adjective", + "word_frequency": 21887 + }, + { + "word": "doctrinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a doctrine or belief", + "example_sentence_english": "The church's doctrinal teachings are very strict.", + "pos": "adjective", + "word_frequency": 21888 + }, + { + "word": "dogmatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asserting opinions as facts", + "example_sentence_english": "His dogmatic approach to problem-solving left no room for discussion.", + "pos": "adjective", + "word_frequency": 21889 + }, + { + "word": "drove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large number of people or animals moving together", + "example_sentence_english": "A drove of tourists descended upon the small village.", + "pos": "noun", + "word_frequency": 21893 + }, + { + "word": "dryness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being dry", + "example_sentence_english": "The dryness of the air caused her skin to crack.", + "pos": "noun", + "word_frequency": 21894 + }, + { + "word": "echelon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a level or rank in an organization", + "example_sentence_english": "He quickly rose through the echelons of the company.", + "pos": "noun", + "word_frequency": 21896 + }, + { + "word": "edifice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large, imposing building", + "example_sentence_english": "The ancient edifice stood majestically on the hill.", + "pos": "noun", + "word_frequency": 21897 + }, + { + "word": "emboss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to raise a design on a surface", + "example_sentence_english": "The leather cover was embossed with the company's logo.", + "pos": "verb", + "word_frequency": 21901 + }, + { + "word": "emt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Emergency Medical Technician", + "example_sentence_english": "The EMT arrived quickly to provide first aid.", + "pos": "noun", + "word_frequency": 21902 + }, + { + "word": "encircle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surround", + "example_sentence_english": "The city walls used to encircle the entire town.", + "pos": "verb", + "word_frequency": 21903 + }, + { + "word": "endpoint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the final point of a process or journey", + "example_sentence_english": "We finally reached the endpoint of our long hike.", + "pos": "noun", + "word_frequency": 21904 + }, + { + "word": "expatriate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person living outside their native country", + "example_sentence_english": "Many expatriates choose to retire in warmer climates.", + "pos": "noun", + "word_frequency": 21910 + }, + { + "word": "expertly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a skillful or knowledgeable manner", + "example_sentence_english": "She expertly repaired the broken watch.", + "pos": "adverb", + "word_frequency": 21911 + }, + { + "word": "facelift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cosmetic surgical procedure or a renovation", + "example_sentence_english": "The old building received a much-needed facelift.", + "pos": "noun", + "word_frequency": 21912 + }, + { + "word": "fairway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the mown part of a golf course between the tee and green", + "example_sentence_english": "His golf ball landed perfectly in the middle of the fairway.", + "pos": "noun", + "word_frequency": 21913 + }, + { + "word": "fanboy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an overly enthusiastic male fan", + "example_sentence_english": "He's a total fanboy of that superhero movie franchise.", + "pos": "noun", + "word_frequency": 21914 + }, + { + "word": "farrow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a litter of pigs", + "example_sentence_english": "The sow gave birth to a large farrow of piglets.", + "pos": "noun", + "word_frequency": 21916 + }, + { + "word": "flamenco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Spanish dance style", + "example_sentence_english": "She loves to watch flamenco dancers perform.", + "pos": "noun", + "word_frequency": 21920 + }, + { + "word": "fluster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone nervous or confused", + "example_sentence_english": "Don't fluster him with too many questions.", + "pos": "verb", + "word_frequency": 21921 + }, + { + "word": "follicle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small sac or cavity in the body, especially one from which hair grows", + "example_sentence_english": "Hair grows from a tiny follicle in the skin.", + "pos": "noun", + "word_frequency": 21922 + }, + { + "word": "franciscan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Franciscan order of friars or nuns", + "example_sentence_english": "He joined the Franciscan order after college.", + "pos": "adjective", + "word_frequency": 21924 + }, + { + "word": "friendliness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being friendly", + "example_sentence_english": "Her friendliness made everyone feel welcome.", + "pos": "noun", + "word_frequency": 21925 + }, + { + "word": "gaseous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the form of a gas", + "example_sentence_english": "Water can exist in solid, liquid, or gaseous states.", + "pos": "adjective", + "word_frequency": 21927 + }, + { + "word": "grueling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely tiring and demanding", + "example_sentence_english": "The marathon was a grueling test of endurance.", + "pos": "adjective", + "word_frequency": 21933 + }, + { + "word": "guardianship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the position of being a guardian", + "example_sentence_english": "She was granted guardianship of her younger sister.", + "pos": "noun", + "word_frequency": 21934 + }, + { + "word": "gulp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swallow quickly or in large mouthfuls", + "example_sentence_english": "He gulped down his water after the run.", + "pos": "verb", + "word_frequency": 21935 + }, + { + "word": "gypsum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soft white mineral, often used in plaster", + "example_sentence_english": "Plaster of Paris is made from gypsum.", + "pos": "noun", + "word_frequency": 21937 + }, + { + "word": "harbour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a place on the coast where ships may find shelter", + "example_sentence_english": "The ships docked safely in the harbour.", + "pos": "noun", + "word_frequency": 21940 + }, + { + "word": "hasten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move or act quickly", + "example_sentence_english": "They hastened to finish the work before dark.", + "pos": "verb", + "word_frequency": 21941 + }, + { + "word": "heady", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a strong, exciting, or intoxicating effect", + "example_sentence_english": "The heady scent of jasmine filled the air.", + "pos": "adjective", + "word_frequency": 21943 + }, + { + "word": "homesick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling a longing for one's home", + "example_sentence_english": "She felt homesick after a month away from her family.", + "pos": "adjective", + "word_frequency": 21947 + }, + { + "word": "hotly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with great intensity or passion", + "example_sentence_english": "The issue was hotly debated in parliament.", + "pos": "adverb", + "word_frequency": 21949 + }, + { + "word": "humanly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by human means or effort", + "example_sentence_english": "They did everything humanly possible to save the patient.", + "pos": "adverb", + "word_frequency": 21951 + }, + { + "word": "husbandry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the care, cultivation, and breeding of crops and animals", + "example_sentence_english": "Good animal husbandry is essential for a healthy farm.", + "pos": "noun", + "word_frequency": 21953 + }, + { + "word": "hyperbole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exaggerated statements or claims not meant to be taken literally", + "example_sentence_english": "His description of the meal was pure hyperbole.", + "pos": "noun", + "word_frequency": 21954 + }, + { + "word": "hypothetically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by way of hypothesis; supposedly", + "example_sentence_english": "Hypothetically, what would happen if we failed?", + "pos": "adverb", + "word_frequency": 21955 + }, + { + "word": "ibuprofen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a common pain reliever and anti-inflammatory drug", + "example_sentence_english": "I took some ibuprofen for my headache.", + "pos": "noun", + "word_frequency": 21956 + }, + { + "word": "idly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with no particular purpose, reason, or effort", + "example_sentence_english": "He sat idly by the window, watching the rain.", + "pos": "adverb", + "word_frequency": 21957 + }, + { + "word": "immigrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to come to live permanently in a foreign country", + "example_sentence_english": "Many people immigrate to new countries for better opportunities.", + "pos": "verb", + "word_frequency": 21959 + }, + { + "word": "immobile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to move", + "example_sentence_english": "The accident left him immobile for several weeks.", + "pos": "adjective", + "word_frequency": 21960 + }, + { + "word": "irradiate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to expose to radiation; to illuminate", + "example_sentence_english": "Scientists can irradiate food to kill bacteria.", + "pos": "verb", + "word_frequency": 21963 + }, + { + "word": "layman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person without professional or specialized knowledge in a particular subject", + "example_sentence_english": "To a layman, the legal terms can be very confusing.", + "pos": "noun", + "word_frequency": 21971 + }, + { + "word": "layup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an easy shot in basketball; an easy task", + "example_sentence_english": "He made an easy layup to win the game.", + "pos": "noun", + "word_frequency": 21973 + }, + { + "word": "macabre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disturbing and horrifying because of involvement with or depiction of death and injury", + "example_sentence_english": "The artist created a series of macabre paintings.", + "pos": "adjective", + "word_frequency": 21977 + }, + { + "word": "magnification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of magnifying something or being magnified", + "example_sentence_english": "The microscope provides 100x magnification.", + "pos": "noun", + "word_frequency": 21982 + }, + { + "word": "medicate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to treat with medicine", + "example_sentence_english": "The doctor decided to medicate the patient for pain.", + "pos": "verb", + "word_frequency": 21987 + }, + { + "word": "memento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an object kept as a reminder or souvenir of a person or event", + "example_sentence_english": "She kept the seashell as a memento of her trip to the beach.", + "pos": "noun", + "word_frequency": 21988 + }, + { + "word": "midwifery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the profession or practice of assisting women in childbirth", + "example_sentence_english": "She decided to pursue a career in midwifery.", + "pos": "noun", + "word_frequency": 21989 + }, + { + "word": "milieu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's social environment", + "example_sentence_english": "He grew up in a creative and artistic milieu.", + "pos": "noun", + "word_frequency": 21990 + }, + { + "word": "modus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a particular way or method of doing something", + "example_sentence_english": "The criminal's modus operandi was always the same.", + "pos": "noun", + "word_frequency": 21993 + }, + { + "word": "monsignor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a title of honor bestowed upon certain Roman Catholic priests", + "example_sentence_english": "Monsignor Smith delivered the sermon.", + "pos": "noun", + "word_frequency": 21994 + }, + { + "word": "moonshine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegally distilled or smuggled liquor", + "example_sentence_english": "The old man used to make moonshine in the woods.", + "pos": "noun", + "word_frequency": 21995 + }, + { + "word": "multitasking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the performance of multiple tasks at one time", + "example_sentence_english": "Multitasking can sometimes reduce overall productivity.", + "pos": "noun", + "word_frequency": 21998 + }, + { + "word": "mutt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dog of mixed breed; a foolish or incompetent person", + "example_sentence_english": "Our dog is a lovable mutt with a mix of breeds.", + "pos": "noun", + "word_frequency": 21999 + }, + { + "word": "myocardial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the heart muscle", + "example_sentence_english": "The patient suffered a myocardial infarction.", + "pos": "adjective", + "word_frequency": 22000 + }, + { + "word": "naturalistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representing things as they are in nature; realistic", + "example_sentence_english": "The artist's naturalistic style captured every detail.", + "pos": "adjective", + "word_frequency": 22006 + }, + { + "word": "nepotism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favoritism shown to family or friends in business or politics", + "example_sentence_english": "Accusations of nepotism plagued the new administration.", + "pos": "noun", + "word_frequency": 22007 + }, + { + "word": "normality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being normal", + "example_sentence_english": "After the storm, life slowly returned to normality.", + "pos": "noun", + "word_frequency": 22009 + }, + { + "word": "oblong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having an elongated shape, typically rectangular or oval", + "example_sentence_english": "The table had an oblong top.", + "pos": "adjective", + "word_frequency": 22010 + }, + { + "word": "operatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of opera", + "example_sentence_english": "Her voice had an operatic quality.", + "pos": "adjective", + "word_frequency": 22013 + }, + { + "word": "ophthalmology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study and treatment of eye diseases", + "example_sentence_english": "He decided to specialize in ophthalmology.", + "pos": "noun", + "word_frequency": 22014 + }, + { + "word": "orca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large toothed whale, also known as a killer whale", + "example_sentence_english": "An orca breached near the boat.", + "pos": "noun", + "word_frequency": 22016 + }, + { + "word": "overseer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who supervises others, especially workers", + "example_sentence_english": "The overseer checked the progress of the construction.", + "pos": "noun", + "word_frequency": 22019 + }, + { + "word": "overstate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state something too strongly; exaggerate", + "example_sentence_english": "He tends to overstate the difficulties.", + "pos": "verb", + "word_frequency": 22020 + }, + { + "word": "painstaking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "done with great care and thoroughness", + "example_sentence_english": "The restoration of the old painting was a painstaking process.", + "pos": "adjective", + "word_frequency": 22021 + }, + { + "word": "pall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cloth spread over a coffin, hearse, or tomb; a dark, gloomy atmosphere", + "example_sentence_english": "A pall of smoke hung over the city.", + "pos": "noun", + "word_frequency": 22022 + }, + { + "word": "panelist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a panel, especially in a discussion or game show", + "example_sentence_english": "The panelist offered an insightful opinion.", + "pos": "noun", + "word_frequency": 22023 + }, + { + "word": "panzer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a German armored vehicle, especially a tank", + "example_sentence_english": "The panzer division advanced rapidly.", + "pos": "noun", + "word_frequency": 22024 + }, + { + "word": "patchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing or happening in small, isolated areas; uneven or inconsistent", + "example_sentence_english": "The internet signal was patchy in the mountains.", + "pos": "adjective", + "word_frequency": 22025 + }, + { + "word": "pecan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a smooth, thin-shelled edible nut", + "example_sentence_english": "She baked a delicious pecan pie.", + "pos": "noun", + "word_frequency": 22026 + }, + { + "word": "perceptual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the ability to interpret or become aware of something through the senses", + "example_sentence_english": "The study examined perceptual differences between groups.", + "pos": "adjective", + "word_frequency": 22028 + }, + { + "word": "photoshoot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an occasion when a photographer takes photographs, typically of a person or people for a commercial purpose", + "example_sentence_english": "The model prepared for her fashion photoshoot.", + "pos": "noun", + "word_frequency": 22030 + }, + { + "word": "pimple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, red, inflamed spot on the skin", + "example_sentence_english": "She had a small pimple on her chin.", + "pos": "noun", + "word_frequency": 22031 + }, + { + "word": "pique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of irritation or resentment resulting from a slight, especially to one's pride", + "example_sentence_english": "He left in a fit of pique.", + "pos": "noun", + "word_frequency": 22033 + }, + { + "word": "politeness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being polite; courtesy", + "example_sentence_english": "She always treats everyone with politeness.", + "pos": "noun", + "word_frequency": 22035 + }, + { + "word": "pomegranate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a round fruit with a tough, reddish skin and many seeds surrounded by juicy red pulp", + "example_sentence_english": "I enjoy the sweet and tart taste of pomegranate seeds.", + "pos": "noun", + "word_frequency": 22036 + }, + { + "word": "pothole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hole in a road surface, typically caused by erosion or traffic", + "example_sentence_english": "The car hit a large pothole and got a flat tire.", + "pos": "noun", + "word_frequency": 22038 + }, + { + "word": "pregame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activities before a game", + "example_sentence_english": "We had a pregame meal before heading to the stadium.", + "pos": "noun", + "word_frequency": 22040 + }, + { + "word": "promiscuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having many sexual partners; indiscriminate", + "example_sentence_english": "The term \"promiscuous\" can be used to describe someone who has many casual sexual partners.", + "pos": "adjective", + "word_frequency": 22041 + }, + { + "word": "pusher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "someone who pushes; a drug dealer", + "example_sentence_english": "The police arrested a drug pusher in the alley.", + "pos": "noun", + "word_frequency": 22044 + }, + { + "word": "rebrand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change the corporate image or identity of a company or product", + "example_sentence_english": "The company decided to rebrand its entire product line.", + "pos": "verb", + "word_frequency": 22048 + }, + { + "word": "refuel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to supply with more fuel", + "example_sentence_english": "The plane needed to refuel before continuing its long journey.", + "pos": "verb", + "word_frequency": 22049 + }, + { + "word": "reprimand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rebuke someone, especially officially", + "example_sentence_english": "The teacher had to reprimand the student for misbehaving in class.", + "pos": "verb", + "word_frequency": 22050 + }, + { + "word": "resell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sell something again", + "example_sentence_english": "Many people buy concert tickets just to resell them at a higher price.", + "pos": "verb", + "word_frequency": 22051 + }, + { + "word": "resuscitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of reviving someone from unconsciousness or apparent death", + "example_sentence_english": "Cardiopulmonary resuscitation (CPR) is a life-saving technique.", + "pos": "noun", + "word_frequency": 22052 + }, + { + "word": "revocation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the official cancellation of a decree, decision, or promise", + "example_sentence_english": "The revocation of his license meant he could no longer drive.", + "pos": "noun", + "word_frequency": 22053 + }, + { + "word": "sardine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small edible fish", + "example_sentence_english": "We packed like sardines in the crowded bus.", + "pos": "noun", + "word_frequency": 22058 + }, + { + "word": "scalable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be scaled or modified to a larger or smaller size", + "example_sentence_english": "The new software solution is highly scalable to meet future demands.", + "pos": "adjective", + "word_frequency": 22060 + }, + { + "word": "scalar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having only magnitude, not direction", + "example_sentence_english": "Temperature is a scalar quantity, while velocity is a vector.", + "pos": "adjective", + "word_frequency": 22061 + }, + { + "word": "schoolchild", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a child attending school", + "example_sentence_english": "Every schoolchild should have access to quality education.", + "pos": "noun", + "word_frequency": 22064 + }, + { + "word": "scrapbook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a blank book for sticking cuttings, drawings, or pictures in", + "example_sentence_english": "She keeps all her old photos in a scrapbook.", + "pos": "noun", + "word_frequency": 22066 + }, + { + "word": "sensibly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a sensible or practical manner", + "example_sentence_english": "She decided to dress sensibly for the cold weather.", + "pos": "adverb", + "word_frequency": 22068 + }, + { + "word": "separator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or substance for separating things", + "example_sentence_english": "A comma often acts as a separator in a list.", + "pos": "noun", + "word_frequency": 22069 + }, + { + "word": "sequestration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of taking legal possession of assets until a debt has been paid or other claims have been met; the action of isolating or hiding away", + "example_sentence_english": "The jury was under sequestration during the high-profile trial.", + "pos": "noun", + "word_frequency": 22070 + }, + { + "word": "sledgehammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, heavy hammer", + "example_sentence_english": "He used a sledgehammer to break down the old wall.", + "pos": "noun", + "word_frequency": 22073 + }, + { + "word": "smartly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a smart or intelligent way; in a stylish way", + "example_sentence_english": "He dressed smartly for the job interview.", + "pos": "adverb", + "word_frequency": 22074 + }, + { + "word": "somatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the body, especially as distinct from the mind", + "example_sentence_english": "Somatic cells are any cells in the body other than reproductive cells.", + "pos": "adjective", + "word_frequency": 22077 + }, + { + "word": "splendour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnificent and splendid appearance; grandeur", + "example_sentence_english": "The palace was decorated with great splendour.", + "pos": "noun", + "word_frequency": 22079 + }, + { + "word": "steeply", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at a sharp angle; rapidly", + "example_sentence_english": "The path climbed steeply up the mountain.", + "pos": "adverb", + "word_frequency": 22082 + }, + { + "word": "stingray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of ray with a barbed tail", + "example_sentence_english": "We saw a stingray swimming near the coral reef.", + "pos": "noun", + "word_frequency": 22083 + }, + { + "word": "subcontinent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large landmass smaller than a continent", + "example_sentence_english": "India is often referred to as a subcontinent.", + "pos": "noun", + "word_frequency": 22085 + }, + { + "word": "substation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an electrical station", + "example_sentence_english": "The power outage was caused by a fault at the local substation.", + "pos": "noun", + "word_frequency": 22086 + }, + { + "word": "suffering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pain or distress", + "example_sentence_english": "The war caused immense suffering to the population.", + "pos": "noun", + "word_frequency": 22087 + }, + { + "word": "symbiotic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutually beneficial", + "example_sentence_english": "The relationship between the two companies was symbiotic.", + "pos": "adjective", + "word_frequency": 22088 + }, + { + "word": "tantamount", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equivalent in seriousness; virtually the same as", + "example_sentence_english": "His silence was tantamount to an admission of guilt.", + "pos": "adjective", + "word_frequency": 22089 + }, + { + "word": "thermodynamic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to thermodynamics", + "example_sentence_english": "The engine's efficiency is governed by thermodynamic principles.", + "pos": "adjective", + "word_frequency": 22094 + }, + { + "word": "thorny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of thorns; difficult", + "example_sentence_english": "The issue of climate change remains a thorny problem for politicians.", + "pos": "adjective", + "word_frequency": 22096 + }, + { + "word": "trifle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing of little value or importance", + "example_sentence_english": "Don't worry about it; it's just a mere trifle.", + "pos": "noun", + "word_frequency": 22098 + }, + { + "word": "twine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strong thread or string", + "example_sentence_english": "He tied the package with a piece of twine.", + "pos": "noun", + "word_frequency": 22100 + }, + { + "word": "unfulfilled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not achieved or realized", + "example_sentence_english": "He felt a sense of unfulfilled potential.", + "pos": "adjective", + "word_frequency": 22104 + }, + { + "word": "unjustly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an unfair or undeserved manner", + "example_sentence_english": "He was unjustly accused of the crime.", + "pos": "adverb", + "word_frequency": 22105 + }, + { + "word": "unoccupied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not occupied; empty", + "example_sentence_english": "The house has been unoccupied for several months.", + "pos": "adjective", + "word_frequency": 22106 + }, + { + "word": "venous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to veins", + "example_sentence_english": "The blood sample was taken from a venous source.", + "pos": "adjective", + "word_frequency": 22107 + }, + { + "word": "ventricular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a ventricle (of the heart or brain)", + "example_sentence_english": "The patient suffered from ventricular fibrillation.", + "pos": "adjective", + "word_frequency": 22108 + }, + { + "word": "viciously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a cruel or violent manner", + "example_sentence_english": "The dog barked viciously at the stranger.", + "pos": "adverb", + "word_frequency": 22109 + }, + { + "word": "vindication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of clearing someone of blame or suspicion", + "example_sentence_english": "The verdict was a complete vindication of his innocence.", + "pos": "noun", + "word_frequency": 22111 + }, + { + "word": "watercolour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paintings made with water-soluble pigments", + "example_sentence_english": "She painted a beautiful landscape in watercolour.", + "pos": "noun", + "word_frequency": 22118 + }, + { + "word": "wickedness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evil; moral badness", + "example_sentence_english": "The story explored the depths of human wickedness.", + "pos": "noun", + "word_frequency": 22121 + }, + { + "word": "worksheet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sheet of paper with questions or exercises for a student", + "example_sentence_english": "The teacher handed out a math worksheet to the class.", + "pos": "noun", + "word_frequency": 22124 + }, + { + "word": "abysmal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely bad; appalling", + "example_sentence_english": "The team's performance was abysmal, losing by a huge margin.", + "pos": "adjective", + "word_frequency": 22127 + }, + { + "word": "aorta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main artery of the body", + "example_sentence_english": "Blood is pumped from the heart into the aorta.", + "pos": "noun", + "word_frequency": 22132 + }, + { + "word": "apostasy", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the abandonment or renunciation of a religious or political belief", + "example_sentence_english": "His public declaration of atheism was seen by some as an act of apostasy.", + "pos": "noun", + "word_frequency": 22133 + }, + { + "word": "artistically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an artistic manner", + "example_sentence_english": "She arranged the flowers artistically in the vase.", + "pos": "adverb", + "word_frequency": 22136 + }, + { + "word": "ascii", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "American Standard Code for Information Interchange", + "example_sentence_english": "The text file was saved in ASCII format.", + "pos": "noun", + "word_frequency": 22137 + }, + { + "word": "ashram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a spiritual hermitage or monastery in Indian religions", + "example_sentence_english": "She spent a month at an ashram in India, practicing yoga and meditation.", + "pos": "noun", + "word_frequency": 22139 + }, + { + "word": "ayatollah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a high-ranking cleric in the Twelver Shi'a Islam", + "example_sentence_english": "The Grand Ayatollah issued a new religious decree.", + "pos": "noun", + "word_frequency": 22142 + }, + { + "word": "beret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft, round, flat-crowned hat", + "example_sentence_english": "She wore a stylish red beret.", + "pos": "noun", + "word_frequency": 22147 + }, + { + "word": "bogey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a score of one stroke over par on a hole in golf; an imaginary evil creature", + "example_sentence_english": "He scored a bogey on the third hole.", + "pos": "noun", + "word_frequency": 22151 + }, + { + "word": "bookshelf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a shelf for holding books", + "example_sentence_english": "She arranged her favorite novels neatly on the bookshelf.", + "pos": "noun", + "word_frequency": 22153 + }, + { + "word": "boron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical element with the symbol B and atomic number 5", + "example_sentence_english": "Boron is used in the manufacture of glass and ceramics.", + "pos": "noun", + "word_frequency": 22154 + }, + { + "word": "bpa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bisphenol A (a chemical used in plastics)", + "example_sentence_english": "Many plastic bottles are now advertised as BPA-free.", + "pos": "noun", + "word_frequency": 22155 + }, + { + "word": "brainstorm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce an idea or way of solving a problem by holding a spontaneous group discussion", + "example_sentence_english": "Let's brainstorm some ideas for the new marketing campaign.", + "pos": "verb", + "word_frequency": 22156 + }, + { + "word": "bronchitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammation of the lining of the bronchial tubes", + "example_sentence_english": "He developed acute bronchitis after a severe cold.", + "pos": "noun", + "word_frequency": 22158 + }, + { + "word": "brotherly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "like a brother; characteristic of a brother", + "example_sentence_english": "They shared a strong brotherly bond.", + "pos": "adjective", + "word_frequency": 22159 + }, + { + "word": "bugle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A brass instrument similar to a trumpet.", + "example_sentence_english": "The soldier played a bugle call at dawn.", + "pos": "noun", + "word_frequency": 22160 + }, + { + "word": "bumblebee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A large, hairy bee.", + "example_sentence_english": "A bumblebee buzzed around the flowers.", + "pos": "noun", + "word_frequency": 22161 + }, + { + "word": "carboniferous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or denoting the fifth period of the Paleozoic era, during which coal deposits were formed.", + "example_sentence_english": "The Carboniferous period is known for its vast coal swamps.", + "pos": "adjective", + "word_frequency": 22169 + }, + { + "word": "catechism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A summary of the principles of Christian religion in the form of questions and answers, used for the instruction of Christians.", + "example_sentence_english": "Children often learn the basic tenets of their faith through a catechism.", + "pos": "noun", + "word_frequency": 22170 + }, + { + "word": "causality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The relationship between cause and effect.", + "example_sentence_english": "Scientists are studying the causality between diet and disease.", + "pos": "noun", + "word_frequency": 22171 + }, + { + "word": "chatty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Fond of chatting; talkative.", + "example_sentence_english": "She was in a very chatty mood after her coffee.", + "pos": "adjective", + "word_frequency": 22175 + }, + { + "word": "christen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To give a name to (a baby) at baptism as a sign of admission to a Christian Church; to use for the first time.", + "example_sentence_english": "They decided to christen their new boat \"The Wanderer\".", + "pos": "verb", + "word_frequency": 22176 + }, + { + "word": "chug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To move making a regular muffled explosive sound, as of a steam engine or motorboat.", + "example_sentence_english": "The old train began to chug slowly up the hill.", + "pos": "verb", + "word_frequency": 22177 + }, + { + "word": "churchyard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A piece of ground adjoining a church, often used for burials.", + "example_sentence_english": "The old gravestones in the churchyard were covered in moss.", + "pos": "noun", + "word_frequency": 22178 + }, + { + "word": "clapper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The part of a bell that strikes the side to make a sound.", + "example_sentence_english": "The bell's clapper swung back and forth, ringing loudly.", + "pos": "noun", + "word_frequency": 22179 + }, + { + "word": "clarion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A shrill, narrow-tubed war trumpet; a clear and inspiring message or sound.", + "example_sentence_english": "The clarion call for freedom echoed through the streets.", + "pos": "noun", + "word_frequency": 22180 + }, + { + "word": "coffer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A strongbox or small chest for holding valuables; a country's financial reserves.", + "example_sentence_english": "The king's coffers were filled with gold and jewels.", + "pos": "noun", + "word_frequency": 22181 + }, + { + "word": "cognac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A high-quality brandy, originally produced in Cognac, France.", + "example_sentence_english": "He enjoyed a glass of fine cognac after dinner.", + "pos": "noun", + "word_frequency": 22182 + }, + { + "word": "commie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An informal and often derogatory term for a communist.", + "example_sentence_english": "During the Cold War, the term \"commie\" was often used pejoratively.", + "pos": "noun", + "word_frequency": 22184 + }, + { + "word": "concealer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cosmetic product used to mask dark circles, blemishes, and other small imperfections on the skin.", + "example_sentence_english": "She applied concealer to hide the dark circles under her eyes.", + "pos": "noun", + "word_frequency": 22185 + }, + { + "word": "concealment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of hiding something or preventing it from being known.", + "example_sentence_english": "The police investigated the concealment of evidence.", + "pos": "noun", + "word_frequency": 22186 + }, + { + "word": "concentric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Of or denoting circles or spheres sharing the same center.", + "example_sentence_english": "The target had several concentric rings.", + "pos": "adjective", + "word_frequency": 22187 + }, + { + "word": "conceptually", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "In terms of concepts or ideas.", + "example_sentence_english": "Conceptually, the plan was sound, but practical implementation was difficult.", + "pos": "adverb", + "word_frequency": 22188 + }, + { + "word": "congregate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To gather into a crowd or mass.", + "example_sentence_english": "The students began to congregate in the main hall before the assembly.", + "pos": "verb", + "word_frequency": 22189 + }, + { + "word": "congresswoman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A woman who is a member of a congress, especially the US Congress.", + "example_sentence_english": "The congresswoman introduced a new bill on environmental protection.", + "pos": "noun", + "word_frequency": 22190 + }, + { + "word": "constructor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or company that builds something; in programming, a special method for creating an object.", + "example_sentence_english": "The software constructor helps to initialize new objects.", + "pos": "noun", + "word_frequency": 22191 + }, + { + "word": "cooler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A container for keeping food and drink cool.", + "example_sentence_english": "We packed drinks in the cooler for the picnic.", + "pos": "noun", + "word_frequency": 22192 + }, + { + "word": "copycat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who imitates or copies another's behavior, dress, or ideas.", + "example_sentence_english": "Don't be a copycat; try to come up with your own ideas.", + "pos": "noun", + "word_frequency": 22193 + }, + { + "word": "corroborate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To confirm or give support to (a statement, theory, or finding).", + "example_sentence_english": "The witness's testimony helped to corroborate the suspect's alibi.", + "pos": "verb", + "word_frequency": 22194 + }, + { + "word": "cred", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Credibility or street credibility.", + "example_sentence_english": "His long history in the music industry gave him a lot of cred.", + "pos": "noun", + "word_frequency": 22196 + }, + { + "word": "cur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A dog of mixed breed; a contemptible man.", + "example_sentence_english": "The old farmer's cur barked at every stranger.", + "pos": "noun", + "word_frequency": 22197 + }, + { + "word": "curd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A soft, white substance formed when milk sours, used as food or to make cheese.", + "example_sentence_english": "She made lemon curd for the tarts.", + "pos": "noun", + "word_frequency": 22198 + }, + { + "word": "cursory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hasty and therefore not thorough or detailed.", + "example_sentence_english": "He gave the report only a cursory glance before signing it.", + "pos": "adjective", + "word_frequency": 22199 + }, + { + "word": "ddos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Distributed Denial of Service", + "example_sentence_english": "The website was brought down by a DDoS attack.", + "pos": "noun", + "word_frequency": 22202 + }, + { + "word": "dearth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scarcity", + "example_sentence_english": "There is a dearth of qualified teachers in the rural areas.", + "pos": "noun", + "word_frequency": 22203 + }, + { + "word": "delinquency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor crime", + "example_sentence_english": "The program aims to reduce juvenile delinquency.", + "pos": "noun", + "word_frequency": 22205 + }, + { + "word": "denominate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to name", + "example_sentence_english": "The currency is denominated in euros.", + "pos": "verb", + "word_frequency": 22206 + }, + { + "word": "disservice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful act", + "example_sentence_english": "It would be a great disservice to ignore their contributions.", + "pos": "noun", + "word_frequency": 22209 + }, + { + "word": "distaste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dislike", + "example_sentence_english": "She expressed her distaste for the new policy.", + "pos": "noun", + "word_frequency": 22210 + }, + { + "word": "envelop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surround", + "example_sentence_english": "Fog began to envelop the city.", + "pos": "verb", + "word_frequency": 22217 + }, + { + "word": "epileptic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to epilepsy", + "example_sentence_english": "He suffered an epileptic seizure.", + "pos": "adjective", + "word_frequency": 22218 + }, + { + "word": "erasure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act of erasing", + "example_sentence_english": "The erasure of data from the hard drive was complete.", + "pos": "noun", + "word_frequency": 22219 + }, + { + "word": "euphemism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mild expression", + "example_sentence_english": "'Passed away' is a euphemism for 'died'.", + "pos": "noun", + "word_frequency": 22222 + }, + { + "word": "exonerate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to clear from blame", + "example_sentence_english": "The DNA evidence helped to exonerate the suspect.", + "pos": "verb", + "word_frequency": 22223 + }, + { + "word": "exquisitely", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beautifully", + "example_sentence_english": "The painting was exquisitely detailed.", + "pos": "adverb", + "word_frequency": 22224 + }, + { + "word": "extinguisher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire-fighting device", + "example_sentence_english": "Every building should have a fire extinguisher.", + "pos": "noun", + "word_frequency": 22225 + }, + { + "word": "facilitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "making easier", + "example_sentence_english": "The facilitation of communication is key to teamwork.", + "pos": "noun", + "word_frequency": 22226 + }, + { + "word": "falsehood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lie", + "example_sentence_english": "The politician was accused of spreading falsehoods.", + "pos": "noun", + "word_frequency": 22227 + }, + { + "word": "falsify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make false", + "example_sentence_english": "He tried to falsify the financial records.", + "pos": "verb", + "word_frequency": 22228 + }, + { + "word": "fantasia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "musical composition", + "example_sentence_english": "The pianist performed a beautiful fantasia.", + "pos": "noun", + "word_frequency": 22229 + }, + { + "word": "favourably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "positively", + "example_sentence_english": "The critics reviewed the film favourably.", + "pos": "adverb", + "word_frequency": 22230 + }, + { + "word": "fertilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make fertile", + "example_sentence_english": "Farmers fertilize the soil to improve crop yield.", + "pos": "verb", + "word_frequency": 22232 + }, + { + "word": "firefight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exchange gunfire", + "example_sentence_english": "The soldiers had to firefight their way out of the ambush.", + "pos": "verb", + "word_frequency": 22233 + }, + { + "word": "firestorm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intense controversy", + "example_sentence_english": "The politician's comments caused a media firestorm.", + "pos": "noun", + "word_frequency": 22234 + }, + { + "word": "flange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projecting rim", + "example_sentence_english": "The pipe had a flange for connecting to another section.", + "pos": "noun", + "word_frequency": 22235 + }, + { + "word": "flaunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show off", + "example_sentence_english": "She liked to flaunt her new expensive car.", + "pos": "verb", + "word_frequency": 22236 + }, + { + "word": "flawlessly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfectly", + "example_sentence_english": "The dancer performed the routine flawlessly.", + "pos": "adverb", + "word_frequency": 22237 + }, + { + "word": "flinch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wince", + "example_sentence_english": "He didn't flinch when the loud noise occurred.", + "pos": "verb", + "word_frequency": 22238 + }, + { + "word": "florentine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "type of biscuit", + "example_sentence_english": "She enjoyed a cup of tea with a Florentine biscuit.", + "pos": "noun", + "word_frequency": 22239 + }, + { + "word": "forefather", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ancestor", + "example_sentence_english": "Our forefathers fought for freedom.", + "pos": "noun", + "word_frequency": 22241 + }, + { + "word": "freehold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ownership of land for an unlimited period", + "example_sentence_english": "They purchased the freehold of the property.", + "pos": "noun", + "word_frequency": 22243 + }, + { + "word": "freeport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a port where goods can be imported duty-free", + "example_sentence_english": "The city established a freeport to boost trade.", + "pos": "noun", + "word_frequency": 22244 + }, + { + "word": "frisk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to search someone for hidden items", + "example_sentence_english": "The police officer had to frisk the suspect.", + "pos": "verb", + "word_frequency": 22245 + }, + { + "word": "fta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Free Trade Agreement", + "example_sentence_english": "The two countries signed a new FTA.", + "pos": "noun", + "word_frequency": 22246 + }, + { + "word": "fundamentalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strict adherence to a set of beliefs", + "example_sentence_english": "Religious fundamentalism can lead to intolerance.", + "pos": "noun", + "word_frequency": 22247 + }, + { + "word": "girth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the measurement around something", + "example_sentence_english": "The tree had an impressive girth.", + "pos": "noun", + "word_frequency": 22254 + }, + { + "word": "goalscorer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a player who scores goals", + "example_sentence_english": "He was the team's top goalscorer last season.", + "pos": "noun", + "word_frequency": 22255 + }, + { + "word": "godmother", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female godparent", + "example_sentence_english": "My godmother gave me a beautiful gift.", + "pos": "noun", + "word_frequency": 22256 + }, + { + "word": "governorship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the office or period of being a governor", + "example_sentence_english": "She announced her candidacy for the governorship.", + "pos": "noun", + "word_frequency": 22259 + }, + { + "word": "guatemalan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Guatemala", + "example_sentence_english": "She enjoyed the traditional Guatemalan coffee.", + "pos": "adjective", + "word_frequency": 22262 + }, + { + "word": "hellish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely unpleasant or difficult", + "example_sentence_english": "The journey through the desert was hellish.", + "pos": "adjective", + "word_frequency": 22268 + }, + { + "word": "hemoglobin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a protein in red blood cells that carries oxygen", + "example_sentence_english": "Hemoglobin is essential for transporting oxygen in the blood.", + "pos": "noun", + "word_frequency": 22269 + }, + { + "word": "hermitage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a secluded residence or retreat", + "example_sentence_english": "He lived in a small hermitage deep in the woods.", + "pos": "noun", + "word_frequency": 22270 + }, + { + "word": "hourglass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for measuring time using sand", + "example_sentence_english": "The sand slowly trickled through the hourglass.", + "pos": "noun", + "word_frequency": 22274 + }, + { + "word": "hygienic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clean and sanitary", + "example_sentence_english": "It's important to maintain hygienic conditions in the kitchen.", + "pos": "adjective", + "word_frequency": 22275 + }, + { + "word": "idiocy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme foolishness or stupidity", + "example_sentence_english": "His decision was an act of pure idiocy.", + "pos": "noun", + "word_frequency": 22276 + }, + { + "word": "impersonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking human warmth or emotion", + "example_sentence_english": "The large corporation felt very impersonal.", + "pos": "adjective", + "word_frequency": 22277 + }, + { + "word": "impregnate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make pregnant; to saturate", + "example_sentence_english": "The fabric was impregnated with a waterproof coating.", + "pos": "verb", + "word_frequency": 22278 + }, + { + "word": "incontinence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lack of voluntary control over urination or defecation", + "example_sentence_english": "Urinary incontinence is a common condition among older adults.", + "pos": "noun", + "word_frequency": 22279 + }, + { + "word": "inhaler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device used to administer medication in the form of a mist or powder, inhaled into the lungs", + "example_sentence_english": "She always carries her inhaler for her asthma.", + "pos": "noun", + "word_frequency": 22281 + }, + { + "word": "intersex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having both male and female characteristics or organs", + "example_sentence_english": "The term 'intersex' refers to individuals born with reproductive or sexual anatomy that doesn't fit typical definitions of male or female.", + "pos": "adjective", + "word_frequency": 22282 + }, + { + "word": "intricacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being intricate or complex", + "example_sentence_english": "The intricacy of the clockwork mechanism was astonishing.", + "pos": "noun", + "word_frequency": 22283 + }, + { + "word": "lacquer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a liquid made of shellac dissolved in alcohol, or of synthetic substances, that dries to form a hard, protective coating for wood, metal, etc.", + "example_sentence_english": "The antique table was restored with a fresh coat of lacquer.", + "pos": "noun", + "word_frequency": 22287 + }, + { + "word": "lakeland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a region characterized by many lakes", + "example_sentence_english": "The Lakeland region is famous for its beautiful scenery and hiking trails.", + "pos": "noun", + "word_frequency": 22288 + }, + { + "word": "liquefy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make or become liquid", + "example_sentence_english": "The intense heat caused the ice to liquefy rapidly.", + "pos": "verb", + "word_frequency": 22292 + }, + { + "word": "livestream", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a live broadcast of an event over the internet", + "example_sentence_english": "Thousands of people tuned in to watch the concert livestream.", + "pos": "noun", + "word_frequency": 22293 + }, + { + "word": "malevolent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing a wish to do evil to others", + "example_sentence_english": "The villain's malevolent gaze sent shivers down her spine.", + "pos": "adjective", + "word_frequency": 22296 + }, + { + "word": "masterclass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a class given to students of a particular discipline by an expert", + "example_sentence_english": "The renowned chef gave a masterclass on French pastry techniques.", + "pos": "noun", + "word_frequency": 22299 + }, + { + "word": "matrimony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or ceremony of being married; marriage", + "example_sentence_english": "They entered into holy matrimony after a long courtship.", + "pos": "noun", + "word_frequency": 22300 + }, + { + "word": "mechanize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introduce machines or automatic devices into (a process or place)", + "example_sentence_english": "The factory decided to mechanize its production line to increase efficiency.", + "pos": "verb", + "word_frequency": 22301 + }, + { + "word": "meteorologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert in meteorology; a weather forecaster", + "example_sentence_english": "The meteorologist predicted heavy rainfall for the weekend.", + "pos": "noun", + "word_frequency": 22302 + }, + { + "word": "microprocessor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an integrated circuit that contains all the functions of a central processing unit of a computer", + "example_sentence_english": "The new computer features a powerful microprocessor for faster performance.", + "pos": "noun", + "word_frequency": 22303 + }, + { + "word": "midweek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the middle part of the week", + "example_sentence_english": "The meeting is scheduled for midweek, probably on Wednesday.", + "pos": "noun", + "word_frequency": 22304 + }, + { + "word": "minefield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area planted with explosive mines; a situation or subject presenting hidden dangers or difficulties", + "example_sentence_english": "Navigating the legal system can be a minefield for those without experience.", + "pos": "noun", + "word_frequency": 22305 + }, + { + "word": "murmur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soft, low, and indistinct sound", + "example_sentence_english": "She heard a soft murmur of voices from the next room.", + "pos": "noun", + "word_frequency": 22313 + }, + { + "word": "musing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a period of reflection or thought", + "example_sentence_english": "His latest book is a collection of philosophical musings on life and death.", + "pos": "noun", + "word_frequency": 22314 + }, + { + "word": "necrosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the death of most or all of the cells in an organ or tissue due to disease, injury, or failure of the blood supply", + "example_sentence_english": "The doctor explained that the tissue damage was due to necrosis.", + "pos": "noun", + "word_frequency": 22317 + }, + { + "word": "nth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representing an unspecified or indefinitely large number in a series", + "example_sentence_english": "He took the argument to the nth degree, analyzing every tiny detail.", + "pos": "numeral", + "word_frequency": 22321 + }, + { + "word": "onerous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burdensome; involving a great deal of effort, trouble, or difficulty", + "example_sentence_english": "The task of cleaning the entire house was onerous.", + "pos": "adjective", + "word_frequency": 22323 + }, + { + "word": "onsite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at the site; on the premises", + "example_sentence_english": "The technicians performed the repairs onsite.", + "pos": "adverb", + "word_frequency": 22324 + }, + { + "word": "overtone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an implicit or unspoken quality or feeling associated with something", + "example_sentence_english": "His comments had an overtone of sarcasm.", + "pos": "noun", + "word_frequency": 22325 + }, + { + "word": "permeability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of a material or membrane that causes it to allow liquids or gases to pass through it", + "example_sentence_english": "The permeability of the soil affects water drainage.", + "pos": "noun", + "word_frequency": 22331 + }, + { + "word": "pharmacological", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to pharmacology or drugs", + "example_sentence_english": "The study investigated the pharmacological effects of the new compound.", + "pos": "adjective", + "word_frequency": 22333 + }, + { + "word": "playmaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player who controls the flow of the team's offensive play", + "example_sentence_english": "The team's new midfielder is a brilliant playmaker.", + "pos": "noun", + "word_frequency": 22335 + }, + { + "word": "plumb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to measure the depth of (water); to explore or examine deeply", + "example_sentence_english": "The detective tried to plumb the depths of the suspect's mind.", + "pos": "verb", + "word_frequency": 22336 + }, + { + "word": "plunger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device consisting of a suction cup on a stick, used to clear blocked pipes", + "example_sentence_english": "He used a plunger to clear the clogged sink.", + "pos": "noun", + "word_frequency": 22337 + }, + { + "word": "presto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediately; quickly (especially as a musical direction)", + "example_sentence_english": "He waved his hand, and presto, the rabbit disappeared.", + "pos": "adverb", + "word_frequency": 22340 + }, + { + "word": "priestly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of a priest or the priesthood", + "example_sentence_english": "He adopted a solemn, almost priestly, tone.", + "pos": "adjective", + "word_frequency": 22341 + }, + { + "word": "printable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitable for printing", + "example_sentence_english": "The document is available in a printable format.", + "pos": "adjective", + "word_frequency": 22342 + }, + { + "word": "prodigal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spending money or resources freely and recklessly; wastefully extravagant", + "example_sentence_english": "The prodigal son returned home after wasting his inheritance.", + "pos": "adjective", + "word_frequency": 22344 + }, + { + "word": "prodigious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remarkably or impressively great in extent, size, or degree", + "example_sentence_english": "She showed prodigious talent at a very young age.", + "pos": "adjective", + "word_frequency": 22345 + }, + { + "word": "propellant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that propels something, especially a rocket or missile", + "example_sentence_english": "The rocket uses solid propellant for its initial thrust.", + "pos": "noun", + "word_frequency": 22346 + }, + { + "word": "pulley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wheel with a grooved rim around which a rope or chain passes, used to change the direction or point of application of a force", + "example_sentence_english": "They used a pulley system to lift the heavy box.", + "pos": "noun", + "word_frequency": 22347 + }, + { + "word": "qualm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an uneasy feeling of doubt, worry, or fear, especially about one's own conduct; a misgiving", + "example_sentence_english": "He had no qualms about lying to protect his friend.", + "pos": "noun", + "word_frequency": 22348 + }, + { + "word": "rechargeable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be recharged", + "example_sentence_english": "These batteries are rechargeable, which saves money.", + "pos": "adjective", + "word_frequency": 22351 + }, + { + "word": "recluse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who lives a solitary life and tends to avoid other people", + "example_sentence_english": "The old man lived as a recluse in the mountains.", + "pos": "noun", + "word_frequency": 22352 + }, + { + "word": "refinance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to finance something again, typically with a new loan at a lower rate of interest", + "example_sentence_english": "They decided to refinance their mortgage to get a better interest rate.", + "pos": "verb", + "word_frequency": 22353 + }, + { + "word": "reformist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advocating or implementing gradual reform rather than abolition or revolution", + "example_sentence_english": "The party adopted a more reformist approach to economic policy.", + "pos": "adjective", + "word_frequency": 22354 + }, + { + "word": "refresher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a course or lesson that serves to refresh one's memory or skills", + "example_sentence_english": "I need to take a refresher course in first aid.", + "pos": "noun", + "word_frequency": 22355 + }, + { + "word": "replaceable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be replaced", + "example_sentence_english": "All parts of the machine are easily replaceable.", + "pos": "adjective", + "word_frequency": 22356 + }, + { + "word": "retroactive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taking effect from a date in the past", + "example_sentence_english": "The pay raise was made retroactive to January 1st.", + "pos": "adjective", + "word_frequency": 22357 + }, + { + "word": "reverb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an effect that simulates the sound of a reverberating space", + "example_sentence_english": "The singer added some reverb to her vocals for a fuller sound.", + "pos": "noun", + "word_frequency": 22358 + }, + { + "word": "revisionist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advocating or practicing revision of a previous theory, belief, or historical account", + "example_sentence_english": "His revisionist interpretation of history sparked much debate.", + "pos": "adjective", + "word_frequency": 22359 + }, + { + "word": "schoolhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A building used as a school, especially a small, old one", + "example_sentence_english": "The old schoolhouse stood empty for years.", + "pos": "noun", + "word_frequency": 22366 + }, + { + "word": "seashore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The land along the sea", + "example_sentence_english": "We spent the day walking along the seashore.", + "pos": "noun", + "word_frequency": 22367 + }, + { + "word": "seclusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state of being private and away from other people", + "example_sentence_english": "She enjoyed the peace and seclusion of her cabin in the woods.", + "pos": "noun", + "word_frequency": 22368 + }, + { + "word": "selenium", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A chemical element", + "example_sentence_english": "Selenium is an essential trace element for humans.", + "pos": "noun", + "word_frequency": 22369 + }, + { + "word": "siphon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A tube used to transfer liquid from one container to another", + "example_sentence_english": "He used a siphon to drain the fuel from the tank.", + "pos": "noun", + "word_frequency": 22373 + }, + { + "word": "slasher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that slashes; a type of horror film", + "example_sentence_english": "The film was a classic slasher movie.", + "pos": "noun", + "word_frequency": 22375 + }, + { + "word": "slovenian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to Slovenia, its people, or its language", + "example_sentence_english": "She is learning the Slovenian language.", + "pos": "adjective", + "word_frequency": 22376 + }, + { + "word": "soulmate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person ideally suited to another as a close friend or romantic partner", + "example_sentence_english": "Many people hope to find their soulmate.", + "pos": "noun", + "word_frequency": 22377 + }, + { + "word": "spangle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To decorate with small, sparkling objects", + "example_sentence_english": "The night sky was spangled with stars.", + "pos": "verb", + "word_frequency": 22378 + }, + { + "word": "spiteful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Showing or caused by malice; malicious", + "example_sentence_english": "Her spiteful comments hurt his feelings.", + "pos": "adjective", + "word_frequency": 22379 + }, + { + "word": "stinger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A sharp, pointed organ of an insect or animal that can inject venom; a sharp remark", + "example_sentence_english": "The bee left its stinger in his arm.", + "pos": "noun", + "word_frequency": 22381 + }, + { + "word": "stipulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A condition or requirement that is specified or demanded as part of an agreement", + "example_sentence_english": "One of the stipulations of the contract was a non-disclosure agreement.", + "pos": "noun", + "word_frequency": 22382 + }, + { + "word": "subtropical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or characteristic of the regions bordering on the tropics", + "example_sentence_english": "Florida has a subtropical climate.", + "pos": "adjective", + "word_frequency": 22384 + }, + { + "word": "sulfide", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A compound of sulfur with another element or group", + "example_sentence_english": "Hydrogen sulfide is a toxic gas.", + "pos": "noun", + "word_frequency": 22385 + }, + { + "word": "summation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of summing or adding things up; a summary", + "example_sentence_english": "The lawyer gave a summation of the evidence.", + "pos": "noun", + "word_frequency": 22386 + }, + { + "word": "superimpose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To place or lay (one thing) over another so that both are still discernible", + "example_sentence_english": "The artist decided to superimpose a new image onto the existing background.", + "pos": "verb", + "word_frequency": 22387 + }, + { + "word": "tableau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A group of models or motionless figures representing a scene from a story or from history", + "example_sentence_english": "The final scene of the play ended in a dramatic tableau.", + "pos": "noun", + "word_frequency": 22388 + }, + { + "word": "taxon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A taxonomic group of any rank, such as a species, family, or class", + "example_sentence_english": "Humans belong to the taxon Homo sapiens.", + "pos": "noun", + "word_frequency": 22389 + }, + { + "word": "tiredness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "The state of being tired; fatigue", + "example_sentence_english": "He felt a deep tiredness after the long journey.", + "pos": "noun", + "word_frequency": 22392 + }, + { + "word": "transgression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An act that goes against a law, rule, or code of conduct; an offense", + "example_sentence_english": "His transgression against the rules resulted in a penalty.", + "pos": "noun", + "word_frequency": 22394 + }, + { + "word": "trotter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A horse bred or trained for trotting races; a person who trots", + "example_sentence_english": "The trotter moved gracefully around the track.", + "pos": "noun", + "word_frequency": 22396 + }, + { + "word": "underpant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An item of underwear worn on the lower part of the body", + "example_sentence_english": "He put on a clean underpant before getting dressed.", + "pos": "noun", + "word_frequency": 22398 + }, + { + "word": "underprivileged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not enjoying the same standard of living or rights as the majority of people in a society", + "example_sentence_english": "The charity works to support underprivileged children.", + "pos": "adjective", + "word_frequency": 22399 + }, + { + "word": "unimpressed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not impressed", + "example_sentence_english": "She remained unimpressed by his elaborate magic trick.", + "pos": "adjective", + "word_frequency": 22401 + }, + { + "word": "unrelenting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "never giving up; persistent", + "example_sentence_english": "The heat was unrelenting, even at night.", + "pos": "adjective", + "word_frequency": 22402 + }, + { + "word": "unsupervised", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without supervision", + "example_sentence_english": "Children should not be left unsupervised near the pool.", + "pos": "adjective", + "word_frequency": 22403 + }, + { + "word": "vassal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person holding a fief in feudal times", + "example_sentence_english": "The king demanded loyalty from his vassals.", + "pos": "noun", + "word_frequency": 22404 + }, + { + "word": "vegetative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to plants or growth", + "example_sentence_english": "The patient was in a persistent vegetative state.", + "pos": "adjective", + "word_frequency": 22405 + }, + { + "word": "velcro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fastener consisting of two strips of fabric", + "example_sentence_english": "My shoes have velcro straps instead of laces.", + "pos": "noun", + "word_frequency": 22406 + }, + { + "word": "weirdness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being strange or unusual", + "example_sentence_english": "The weirdness of the situation made everyone uncomfortable.", + "pos": "noun", + "word_frequency": 22413 + }, + { + "word": "werent", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "were not", + "example_sentence_english": "They weren't at the party last night.", + "pos": "verb", + "word_frequency": 22414 + }, + { + "word": "woeful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full of woe; sorrowful", + "example_sentence_english": "His woeful expression showed how disappointed he was.", + "pos": "adverb", + "word_frequency": 22419 + }, + { + "word": "wrangler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person in charge of horses or cattle; a type of Jeep", + "example_sentence_english": "The cowboy was an expert horse wrangler.", + "pos": "noun", + "word_frequency": 22420 + }, + { + "word": "abrasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a scrape or rub mark", + "example_sentence_english": "He had a minor abrasion on his knee after the fall.", + "pos": "noun", + "word_frequency": 22430 + }, + { + "word": "acumen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to make good judgments and quick decisions", + "example_sentence_english": "Her business acumen was evident in her successful ventures.", + "pos": "noun", + "word_frequency": 22432 + }, + { + "word": "allele", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "one of two or more alternative forms of a gene", + "example_sentence_english": "Each parent contributes one allele for every gene.", + "pos": "noun", + "word_frequency": 22434 + }, + { + "word": "andean", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Andes mountains", + "example_sentence_english": "The Andean condor is a large South American bird.", + "pos": "adjective", + "word_frequency": 22437 + }, + { + "word": "applicability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being relevant or appropriate", + "example_sentence_english": "The applicability of this theory to real-world problems is limited.", + "pos": "noun", + "word_frequency": 22439 + }, + { + "word": "approachable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy to talk to or deal with", + "example_sentence_english": "She has a very approachable manner, which makes people feel comfortable.", + "pos": "adjective", + "word_frequency": 22440 + }, + { + "word": "asexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having sexual feelings or desires; reproducing without sexual reproduction", + "example_sentence_english": "Some plants reproduce asexually, meaning they don't need another plant to create offspring.", + "pos": "adjective", + "word_frequency": 22443 + }, + { + "word": "automaton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a robot; a person who acts in a mechanical way", + "example_sentence_english": "The old clockwork automaton moved with surprising grace.", + "pos": "noun", + "word_frequency": 22445 + }, + { + "word": "bannister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the handrail of a staircase", + "example_sentence_english": "He slid down the bannister, much to his mother's dismay.", + "pos": "noun", + "word_frequency": 22448 + }, + { + "word": "beryl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mineral consisting of a silicate of beryllium and aluminum", + "example_sentence_english": "Emeralds and aquamarines are varieties of beryl.", + "pos": "noun", + "word_frequency": 22450 + }, + { + "word": "blackbird", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a common European thrush, the male of which has black plumage and a yellow bill", + "example_sentence_english": "A blackbird was singing loudly in the garden this morning.", + "pos": "noun", + "word_frequency": 22451 + }, + { + "word": "bleacher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tiered stand for spectators, typically without individual seats", + "example_sentence_english": "We sat in the bleachers to watch the baseball game.", + "pos": "noun", + "word_frequency": 22452 + }, + { + "word": "bluebird", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small North American thrush, the male of which has blue plumage", + "example_sentence_english": "A bluebird landed on the fence post, its feathers a vibrant color.", + "pos": "noun", + "word_frequency": 22453 + }, + { + "word": "breech", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the rear part of the barrel of a firearm; the lower part of the trunk of the body", + "example_sentence_english": "The rifle's breech mechanism was designed for quick reloading.", + "pos": "noun", + "word_frequency": 22456 + }, + { + "word": "buttery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasting or smelling like butter; soft and smooth like butter", + "example_sentence_english": "The croissant was light, flaky, and wonderfully buttery.", + "pos": "adjective", + "word_frequency": 22457 + }, + { + "word": "caliph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the chief Muslim civil and religious ruler, regarded as the successor of Muhammad", + "example_sentence_english": "The caliph ruled over a vast Islamic empire.", + "pos": "noun", + "word_frequency": 22459 + }, + { + "word": "celiac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person suffering from celiac disease; celiac disease", + "example_sentence_english": "As a celiac, she has to be very careful about what she eats to avoid gluten.", + "pos": "noun", + "word_frequency": 22462 + }, + { + "word": "celibacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of abstaining from marriage and sexual relations", + "example_sentence_english": "The priest took a vow of celibacy.", + "pos": "noun", + "word_frequency": 22463 + }, + { + "word": "chancery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a high court of equity; the office of a chancellor", + "example_sentence_english": "The case was heard in the Court of Chancery.", + "pos": "noun", + "word_frequency": 22465 + }, + { + "word": "choppy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a sea or river) having many small waves; (of a voice or sound) broken and irregular", + "example_sentence_english": "The boat struggled in the choppy waters of the bay.", + "pos": "adjective", + "word_frequency": 22468 + }, + { + "word": "chromatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or produced by color; (in music) relating to or using notes not belonging to the diatonic scale", + "example_sentence_english": "The artist used a wide chromatic range in her painting.", + "pos": "adjective", + "word_frequency": 22469 + }, + { + "word": "chump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a foolish or easily deceived person", + "example_sentence_english": "Don't be a chump and fall for that old trick again.", + "pos": "noun", + "word_frequency": 22470 + }, + { + "word": "clench", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to close (one's hand or teeth) tightly, typically in anger or determination", + "example_sentence_english": "He had to clench his fists to stop himself from shouting.", + "pos": "verb", + "word_frequency": 22471 + }, + { + "word": "columbine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a plant of the buttercup family, with distinctive spurred flowers; a stock character in commedia dell'arte", + "example_sentence_english": "The garden was full of beautiful columbine flowers.", + "pos": "noun", + "word_frequency": 22472 + }, + { + "word": "countenance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's face or facial expression; support or approval", + "example_sentence_english": "His calm countenance gave no hint of the turmoil within.", + "pos": "noun", + "word_frequency": 22475 + }, + { + "word": "crackle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a series of short, sharp noises", + "example_sentence_english": "The fire began to crackle merrily in the fireplace.", + "pos": "verb", + "word_frequency": 22476 + }, + { + "word": "cryptography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the art of writing or solving codes", + "example_sentence_english": "Cryptography is essential for securing online communications.", + "pos": "noun", + "word_frequency": 22479 + }, + { + "word": "dapper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neat and stylish in dress", + "example_sentence_english": "He looked very dapper in his new suit.", + "pos": "adjective", + "word_frequency": 22481 + }, + { + "word": "deathly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling death; fatal", + "example_sentence_english": "The room was filled with a deathly silence.", + "pos": "adjective", + "word_frequency": 22482 + }, + { + "word": "defection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the abandonment of one's country or cause in favor of an opposing one", + "example_sentence_english": "The defection of the spy caused a major international incident.", + "pos": "noun", + "word_frequency": 22484 + }, + { + "word": "dermatitis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflammation of the skin", + "example_sentence_english": "She developed contact dermatitis after touching the poisonous plant.", + "pos": "noun", + "word_frequency": 22485 + }, + { + "word": "determinant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a factor that decisively affects the nature or outcome of something", + "example_sentence_english": "Hard work is a key determinant of success.", + "pos": "noun", + "word_frequency": 22486 + }, + { + "word": "devaluation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction in the value of a currency", + "example_sentence_english": "The government announced a devaluation of the national currency.", + "pos": "noun", + "word_frequency": 22487 + }, + { + "word": "dictatorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of or typical of a dictator; autocratic", + "example_sentence_english": "His dictatorial style of management made him unpopular.", + "pos": "adjective", + "word_frequency": 22488 + }, + { + "word": "digitize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convert (information or an image) into digital form", + "example_sentence_english": "We need to digitize all our old paper records.", + "pos": "verb", + "word_frequency": 22489 + }, + { + "word": "disinterested", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impartial; unbiased", + "example_sentence_english": "A judge must remain disinterested in the outcome of the case.", + "pos": "adjective", + "word_frequency": 22490 + }, + { + "word": "dissect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cut up (a body or plant) to study its internal parts; analyze in detail", + "example_sentence_english": "The students had to dissect a frog in biology class.", + "pos": "verb", + "word_frequency": 22491 + }, + { + "word": "downplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make something seem less important than it really is", + "example_sentence_english": "The politician tried to downplay the severity of the economic crisis.", + "pos": "verb", + "word_frequency": 22496 + }, + { + "word": "dynamical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the forces or properties that stimulate growth, development, or change", + "example_sentence_english": "The system exhibits complex dynamical behavior.", + "pos": "adjective", + "word_frequency": 22499 + }, + { + "word": "elude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evade or escape from (a danger, enemy, or pursuer), typically in a skillful or cunning way", + "example_sentence_english": "The suspect managed to elude the police for several days.", + "pos": "verb", + "word_frequency": 22502 + }, + { + "word": "encapsulate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enclose (something) in or as if in a capsule; express the essential features of (something) succinctly", + "example_sentence_english": "The report aims to encapsulate the main findings of the research.", + "pos": "verb", + "word_frequency": 22504 + }, + { + "word": "enquire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ask for information from someone", + "example_sentence_english": "I need to enquire about the train schedule.", + "pos": "verb", + "word_frequency": 22506 + }, + { + "word": "environ", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surroundings; environment", + "example_sentence_english": "The old castle was surrounded by a beautiful natural environ.", + "pos": "noun", + "word_frequency": 22507 + }, + { + "word": "errant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "straying from the proper course or standards; behaving wrongly", + "example_sentence_english": "The errant knight was on a quest to find adventure.", + "pos": "adjective", + "word_frequency": 22508 + }, + { + "word": "esophagus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of the alimentary canal that connects the throat to the stomach", + "example_sentence_english": "Food passes down the esophagus to the stomach.", + "pos": "noun", + "word_frequency": 22509 + }, + { + "word": "ethylene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a colorless flammable gaseous hydrocarbon", + "example_sentence_english": "Ethylene is used in the production of plastics.", + "pos": "noun", + "word_frequency": 22511 + }, + { + "word": "exterminate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroy completely", + "example_sentence_english": "The company was hired to exterminate the pests in the building.", + "pos": "verb", + "word_frequency": 22514 + }, + { + "word": "faze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturb or disconcert (someone)", + "example_sentence_english": "Nothing seemed to faze the experienced pilot during the turbulence.", + "pos": "verb", + "word_frequency": 22518 + }, + { + "word": "gecko", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small lizard", + "example_sentence_english": "A gecko can climb walls with its special feet.", + "pos": "noun", + "word_frequency": 22529 + }, + { + "word": "gondola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow boat used in Venice", + "example_sentence_english": "We took a romantic ride in a gondola through the canals of Venice.", + "pos": "noun", + "word_frequency": 22533 + }, + { + "word": "grandmaster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chess player of the highest rank", + "example_sentence_english": "He achieved the title of grandmaster at a very young age.", + "pos": "noun", + "word_frequency": 22534 + }, + { + "word": "guacamole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an avocado-based dip", + "example_sentence_english": "I love to eat tortilla chips with fresh guacamole.", + "pos": "noun", + "word_frequency": 22536 + }, + { + "word": "handcrafted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made by hand", + "example_sentence_english": "The artisan sold beautiful handcrafted jewelry.", + "pos": "adjective", + "word_frequency": 22539 + }, + { + "word": "harbinger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that announces or signals the approach of another", + "example_sentence_english": "The robin is a harbinger of spring.", + "pos": "noun", + "word_frequency": 22540 + }, + { + "word": "headshot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a photograph of a person's head or face", + "example_sentence_english": "The actor needed a new headshot for his portfolio.", + "pos": "noun", + "word_frequency": 22541 + }, + { + "word": "helplessness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being unable to help oneself", + "example_sentence_english": "She felt a profound sense of helplessness when she couldn't find her way home.", + "pos": "noun", + "word_frequency": 22543 + }, + { + "word": "helpline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a telephone service providing help or information", + "example_sentence_english": "If you need support, please call the national helpline.", + "pos": "noun", + "word_frequency": 22544 + }, + { + "word": "henchman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a trusted follower, especially one involved in illegal activities", + "example_sentence_english": "The villain sent his henchman to retrieve the stolen jewels.", + "pos": "noun", + "word_frequency": 22545 + }, + { + "word": "hydroxide", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a compound containing the hydroxide ion", + "example_sentence_english": "Sodium hydroxide is a strong base used in many industrial processes.", + "pos": "noun", + "word_frequency": 22547 + }, + { + "word": "ilk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of people or things similar to those already referred to", + "example_sentence_english": "We don't want people of that ilk around here.", + "pos": "noun", + "word_frequency": 22551 + }, + { + "word": "imbue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to inspire or permeate with a feeling or quality", + "example_sentence_english": "His art is imbued with a sense of peace and tranquility.", + "pos": "verb", + "word_frequency": 22552 + }, + { + "word": "impartiality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fairness; lack of bias", + "example_sentence_english": "The judge's impartiality was crucial for a fair trial.", + "pos": "noun", + "word_frequency": 22553 + }, + { + "word": "inertial", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to inertia", + "example_sentence_english": "The spacecraft used an inertial guidance system to navigate.", + "pos": "adjective", + "word_frequency": 22554 + }, + { + "word": "introvert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shy, reticent person", + "example_sentence_english": "As an introvert, she prefers quiet evenings at home to large parties.", + "pos": "noun", + "word_frequency": 22555 + }, + { + "word": "invocation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of invoking something or someone for assistance or as an authority", + "example_sentence_english": "The ceremony began with an invocation for peace.", + "pos": "noun", + "word_frequency": 22556 + }, + { + "word": "irreparable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to repair", + "example_sentence_english": "The damage to the ancient manuscript was irreparable.", + "pos": "adjective", + "word_frequency": 22558 + }, + { + "word": "journeyman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a skilled worker who has completed an apprenticeship but is not yet a master", + "example_sentence_english": "After his apprenticeship, he worked as a journeyman carpenter for several years.", + "pos": "noun", + "word_frequency": 22563 + }, + { + "word": "kuwaiti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Kuwait, or relating to Kuwait", + "example_sentence_english": "The Kuwaiti ambassador arrived yesterday.", + "pos": "noun", + "word_frequency": 22570 + }, + { + "word": "lactic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to milk or lactic acid", + "example_sentence_english": "Lactic acid builds up in muscles during intense exercise.", + "pos": "adjective", + "word_frequency": 22573 + }, + { + "word": "larval", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a larva", + "example_sentence_english": "The larval stage of the insect is very different from the adult.", + "pos": "adjective", + "word_frequency": 22576 + }, + { + "word": "lathe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine for shaping wood or metal", + "example_sentence_english": "He used a lathe to turn the wooden bowl.", + "pos": "noun", + "word_frequency": 22577 + }, + { + "word": "lawlessness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of disorder due to a disregard of the law", + "example_sentence_english": "The city descended into lawlessness after the earthquake.", + "pos": "noun", + "word_frequency": 22578 + }, + { + "word": "lopsided", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uneven or unbalanced", + "example_sentence_english": "The old house had a lopsided roof.", + "pos": "adjective", + "word_frequency": 22583 + }, + { + "word": "lunacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being mad; extreme folly", + "example_sentence_english": "It would be sheer lunacy to attempt that climb without proper equipment.", + "pos": "noun", + "word_frequency": 22584 + }, + { + "word": "magus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a magician or sorcerer", + "example_sentence_english": "The ancient text described a powerful magus who could control the elements.", + "pos": "noun", + "word_frequency": 22585 + }, + { + "word": "mantel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a shelf above a fireplace", + "example_sentence_english": "She placed the clock on the mantel above the fireplace.", + "pos": "noun", + "word_frequency": 22589 + }, + { + "word": "matchday", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a day on which a sports match is played", + "example_sentence_english": "Fans gathered early for matchday excitement.", + "pos": "noun", + "word_frequency": 22591 + }, + { + "word": "mayday", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an international radio distress signal", + "example_sentence_english": "The pilot sent a Mayday call after engine failure.", + "pos": "noun", + "word_frequency": 22592 + }, + { + "word": "melton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a heavy, thick, woollen cloth", + "example_sentence_english": "The coat was made of a warm melton fabric.", + "pos": "noun", + "word_frequency": 22596 + }, + { + "word": "methylation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the addition of a methyl group to a substrate", + "example_sentence_english": "DNA methylation plays a crucial role in gene expression.", + "pos": "noun", + "word_frequency": 22598 + }, + { + "word": "misinform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give incorrect information to", + "example_sentence_english": "The news report might misinform the public.", + "pos": "verb", + "word_frequency": 22601 + }, + { + "word": "mumble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an unclear or indistinct utterance", + "example_sentence_english": "I couldn't understand his mumble.", + "pos": "noun", + "word_frequency": 22602 + }, + { + "word": "musketeer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soldier armed with a musket", + "example_sentence_english": "The story is about a brave musketeer.", + "pos": "noun", + "word_frequency": 22603 + }, + { + "word": "nonpartisan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not biased or partisan", + "example_sentence_english": "The committee aims to be completely nonpartisan.", + "pos": "adjective", + "word_frequency": 22607 + }, + { + "word": "noxious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmful, poisonous, or very unpleasant", + "example_sentence_english": "The factory emitted noxious fumes into the air.", + "pos": "adjective", + "word_frequency": 22609 + }, + { + "word": "octagon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a polygon with eight sides and eight angles", + "example_sentence_english": "The stop sign is shaped like an octagon.", + "pos": "noun", + "word_frequency": 22612 + }, + { + "word": "oligarch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a ruler in an oligarchy; a very rich and powerful business leader", + "example_sentence_english": "The country was controlled by a small group of oligarchs.", + "pos": "noun", + "word_frequency": 22613 + }, + { + "word": "opulent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rich and luxurious or lavish", + "example_sentence_english": "They lived in an opulent mansion with many servants.", + "pos": "adjective", + "word_frequency": 22614 + }, + { + "word": "organist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who plays the organ", + "example_sentence_english": "The organist played a beautiful hymn during the service.", + "pos": "noun", + "word_frequency": 22616 + }, + { + "word": "outstretched", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extended or stretched out", + "example_sentence_english": "He greeted her with outstretched arms.", + "pos": "adjective", + "word_frequency": 22618 + }, + { + "word": "overbearing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "domineering; unpleasantly arrogant", + "example_sentence_english": "Her overbearing attitude made it difficult to work with her.", + "pos": "adjective", + "word_frequency": 22619 + }, + { + "word": "pectoral", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the breast or chest", + "example_sentence_english": "He worked on his pectoral muscles at the gym.", + "pos": "adjective", + "word_frequency": 22620 + }, + { + "word": "personify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to represent (an abstract quality or idea) as a person or thing", + "example_sentence_english": "She seemed to personify grace and elegance.", + "pos": "verb", + "word_frequency": 22622 + }, + { + "word": "plummet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall or drop straight down at high speed", + "example_sentence_english": "The stock market began to plummet after the announcement.", + "pos": "verb", + "word_frequency": 22624 + }, + { + "word": "preexist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exist before something else", + "example_sentence_english": "Some believe that souls preexist their physical bodies.", + "pos": "verb", + "word_frequency": 22627 + }, + { + "word": "primrose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small wild plant with pale yellow flowers", + "example_sentence_english": "The garden was full of colorful primroses.", + "pos": "noun", + "word_frequency": 22628 + }, + { + "word": "pulsate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expand and contract with strong regular movements", + "example_sentence_english": "He could feel his heart pulsate rapidly after the run.", + "pos": "verb", + "word_frequency": 22629 + }, + { + "word": "pungent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a sharply strong taste or smell", + "example_sentence_english": "The pungent odor of garlic filled the kitchen.", + "pos": "adjective", + "word_frequency": 22630 + }, + { + "word": "putter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a golf club used for putting", + "example_sentence_english": "He used his putter to tap the ball into the hole.", + "pos": "noun", + "word_frequency": 22631 + }, + { + "word": "qatari", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a native or inhabitant of Qatar", + "example_sentence_english": "A Qatari delegation arrived for the summit.", + "pos": "noun", + "word_frequency": 22632 + }, + { + "word": "radioactivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the emission of ionizing radiation or particles", + "example_sentence_english": "The accident caused a dangerous level of radioactivity.", + "pos": "noun", + "word_frequency": 22633 + }, + { + "word": "recline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lean or lie back in a relaxed position", + "example_sentence_english": "She liked to recline on the sofa and read a book.", + "pos": "verb", + "word_frequency": 22636 + }, + { + "word": "reeve", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a chief magistrate of a town or district", + "example_sentence_english": "The reeve was responsible for maintaining order in the village.", + "pos": "noun", + "word_frequency": 22638 + }, + { + "word": "relaunch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launch again", + "example_sentence_english": "The company decided to relaunch the product with new features.", + "pos": "verb", + "word_frequency": 22640 + }, + { + "word": "replete", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full; well-supplied", + "example_sentence_english": "The book is replete with fascinating details.", + "pos": "adjective", + "word_frequency": 22641 + }, + { + "word": "repugnant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely distasteful; unacceptable", + "example_sentence_english": "The idea of cruelty to animals is repugnant to me.", + "pos": "adjective", + "word_frequency": 22642 + }, + { + "word": "rote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanical or habitual repetition", + "example_sentence_english": "Learning by rote can be effective for memorization, but not for understanding.", + "pos": "noun", + "word_frequency": 22645 + }, + { + "word": "rudeness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impoliteness", + "example_sentence_english": "His rudeness was unacceptable.", + "pos": "noun", + "word_frequency": 22646 + }, + { + "word": "ruffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disarrange (especially hair or feathers); annoy", + "example_sentence_english": "The wind began to ruffle her hair.", + "pos": "verb", + "word_frequency": 22647 + }, + { + "word": "scat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jazz singing with improvised nonsense syllables; animal droppings", + "example_sentence_english": "The detective found bear scat near the campsite.", + "pos": "noun", + "word_frequency": 22654 + }, + { + "word": "scissor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cutting tool", + "example_sentence_english": "The tailor used a large scissor to cut the fabric.", + "pos": "noun", + "word_frequency": 22655 + }, + { + "word": "seaport", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a port, city, or town with a harbor for seagoing ships", + "example_sentence_english": "London was once a major seaport.", + "pos": "noun", + "word_frequency": 22656 + }, + { + "word": "sellout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of selling all of something; a betrayal", + "example_sentence_english": "The concert was a complete sellout.", + "pos": "noun", + "word_frequency": 22657 + }, + { + "word": "setlist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a list of songs performed at a concert", + "example_sentence_english": "The band played an amazing setlist at the festival.", + "pos": "noun", + "word_frequency": 22660 + }, + { + "word": "skilful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing skill", + "example_sentence_english": "She is a very skilful painter.", + "pos": "adjective", + "word_frequency": 22663 + }, + { + "word": "snot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mucus from the nose", + "example_sentence_english": "He wiped the snot from his nose.", + "pos": "noun", + "word_frequency": 22664 + }, + { + "word": "spineless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking courage or determination; weak", + "example_sentence_english": "He was too spineless to stand up for himself.", + "pos": "adjective", + "word_frequency": 22665 + }, + { + "word": "stairwell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a shaft or opening in a building in which a staircase is built", + "example_sentence_english": "The fire alarm sounded, and everyone headed for the stairwell.", + "pos": "noun", + "word_frequency": 22666 + }, + { + "word": "stalwart", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loyal, reliable, and hardworking", + "example_sentence_english": "He was a stalwart supporter of the team.", + "pos": "adjective", + "word_frequency": 22667 + }, + { + "word": "stooge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a subordinate who does menial or unprincipled work for another", + "example_sentence_english": "He was just a stooge for the real criminals.", + "pos": "noun", + "word_frequency": 22670 + }, + { + "word": "subtraction", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the process of taking one number or quantity away from another", + "example_sentence_english": "Learning subtraction is a basic math skill.", + "pos": "noun", + "word_frequency": 22672 + }, + { + "word": "tartan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pattern of criss-crossed horizontal and vertical bands in multiple colours", + "example_sentence_english": "He wore a kilt made of traditional Scottish tartan.", + "pos": "noun", + "word_frequency": 22676 + }, + { + "word": "taut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stretched or pulled tight; not slack", + "example_sentence_english": "The rope was pulled taut.", + "pos": "adjective", + "word_frequency": 22677 + }, + { + "word": "teapot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pot with a handle, spout, and lid, in which tea is brewed and served", + "example_sentence_english": "She poured hot water into the teapot.", + "pos": "noun", + "word_frequency": 22678 + }, + { + "word": "therefor", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "for that; for it", + "example_sentence_english": "The contract specifies the terms and conditions, and the payment therefor.", + "pos": "adverb", + "word_frequency": 22679 + }, + { + "word": "thoroughfare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main road or public path", + "example_sentence_english": "The busy thoroughfare was lined with shops and restaurants.", + "pos": "noun", + "word_frequency": 22680 + }, + { + "word": "treehouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small house built in a tree", + "example_sentence_english": "The children loved playing in their treehouse.", + "pos": "noun", + "word_frequency": 22681 + }, + { + "word": "tuner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for adjusting pitch or frequency", + "example_sentence_english": "The guitarist used a digital tuner to make sure his instrument was in tune.", + "pos": "noun", + "word_frequency": 22684 + }, + { + "word": "underrepresent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to represent inadequately", + "example_sentence_english": "The survey results might underrepresent the opinions of younger voters.", + "pos": "verb", + "word_frequency": 22685 + }, + { + "word": "undervalue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to estimate below the true worth", + "example_sentence_english": "Don't undervalue your skills; they are very important.", + "pos": "verb", + "word_frequency": 22686 + }, + { + "word": "undying", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lasting forever; immortal", + "example_sentence_english": "He pledged his undying love to her.", + "pos": "adjective", + "word_frequency": 22687 + }, + { + "word": "unequivocal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leaving no doubt; unambiguous", + "example_sentence_english": "The answer was an unequivocal 'no'.", + "pos": "adjective", + "word_frequency": 22688 + }, + { + "word": "uneventful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without any interesting or significant happenings", + "example_sentence_english": "The journey was uneventful, and we arrived on time.", + "pos": "adjective", + "word_frequency": 22689 + }, + { + "word": "unfathomable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to understand or measure", + "example_sentence_english": "The depths of the ocean are unfathomable.", + "pos": "adjective", + "word_frequency": 22690 + }, + { + "word": "ungodly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unreasonably early or late; immoral", + "example_sentence_english": "We had to wake up at an ungodly hour to catch the flight.", + "pos": "adjective", + "word_frequency": 22691 + }, + { + "word": "unprofitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not yielding profit or financial gain", + "example_sentence_english": "The venture proved to be unprofitable, and they had to close it down.", + "pos": "adjective", + "word_frequency": 22692 + }, + { + "word": "unreported", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not reported or made known", + "example_sentence_english": "Many minor crimes go unreported.", + "pos": "adjective", + "word_frequency": 22693 + }, + { + "word": "unsung", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not celebrated or praised", + "example_sentence_english": "She was an unsung hero, working tirelessly behind the scenes.", + "pos": "adjective", + "word_frequency": 22694 + }, + { + "word": "valour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great courage, especially in battle", + "example_sentence_english": "His valour on the battlefield earned him a medal.", + "pos": "noun", + "word_frequency": 22695 + }, + { + "word": "vanquish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to defeat thoroughly", + "example_sentence_english": "The knight set out to vanquish the dragon.", + "pos": "verb", + "word_frequency": 22696 + }, + { + "word": "windscreen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the front window of a vehicle", + "example_sentence_english": "The rain splattered against the car's windscreen.", + "pos": "noun", + "word_frequency": 22703 + }, + { + "word": "wormhole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hypothetical shortcut through spacetime", + "example_sentence_english": "Scientists theorize about the existence of wormholes.", + "pos": "noun", + "word_frequency": 22706 + }, + { + "word": "aggrieve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distress or treat unfairly", + "example_sentence_english": "The company's decision to cut benefits aggrieved many employees.", + "pos": "verb", + "word_frequency": 22714 + }, + { + "word": "albatross", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large seabird; a burden or curse", + "example_sentence_english": "The old factory became an albatross around the company's neck.", + "pos": "noun", + "word_frequency": 22715 + }, + { + "word": "antivirus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "software designed to protect against computer viruses", + "example_sentence_english": "You should install antivirus software on your computer.", + "pos": "noun", + "word_frequency": 22720 + }, + { + "word": "aquifer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an underground layer of water-bearing permeable rock", + "example_sentence_english": "The region's water supply comes from a large underground aquifer.", + "pos": "noun", + "word_frequency": 22721 + }, + { + "word": "assemblyman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a legislative assembly", + "example_sentence_english": "The assemblyman proposed a new bill on environmental protection.", + "pos": "noun", + "word_frequency": 22724 + }, + { + "word": "autocratic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a ruler who has absolute power", + "example_sentence_english": "The company was run by an autocratic leader who made all decisions.", + "pos": "adjective", + "word_frequency": 22725 + }, + { + "word": "baller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a highly skilled basketball player; a successful and wealthy person", + "example_sentence_english": "He's a real baller on the court, always scoring points.", + "pos": "noun", + "word_frequency": 22732 + }, + { + "word": "bereave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deprive of a loved one through a profound absence, especially due to death", + "example_sentence_english": "The war had bereaved many families of their sons.", + "pos": "verb", + "word_frequency": 22735 + }, + { + "word": "binding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong covering holding the pages of a book together; a legal agreement", + "example_sentence_english": "The old book had a beautiful leather binding.", + "pos": "noun", + "word_frequency": 22739 + }, + { + "word": "boldness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being bold, daring, or courageous", + "example_sentence_english": "Her boldness in challenging the decision was admirable.", + "pos": "noun", + "word_frequency": 22742 + }, + { + "word": "bookseller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who sells books", + "example_sentence_english": "The bookseller recommended a new novel to me.", + "pos": "noun", + "word_frequency": 22743 + }, + { + "word": "breakage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or result of breaking something", + "example_sentence_english": "The company is not responsible for any breakage during shipping.", + "pos": "noun", + "word_frequency": 22747 + }, + { + "word": "capitulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of surrendering or ceasing to resist an opponent or demand", + "example_sentence_english": "The enemy's capitulation marked the end of the war.", + "pos": "noun", + "word_frequency": 22752 + }, + { + "word": "cardiologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a doctor who specializes in the study or treatment of heart diseases", + "example_sentence_english": "My grandfather sees a cardiologist for his heart condition.", + "pos": "noun", + "word_frequency": 22753 + }, + { + "word": "carelessly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that shows a lack of care or attention", + "example_sentence_english": "He carelessly left his keys on the table.", + "pos": "adverb", + "word_frequency": 22754 + }, + { + "word": "carotid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "either of the two main arteries that carry blood to the head and neck", + "example_sentence_english": "The doctor checked the pulse in her carotid artery.", + "pos": "noun", + "word_frequency": 22755 + }, + { + "word": "charade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an absurd pretense intended to create a pleasant or respectable appearance", + "example_sentence_english": "Their happy marriage was just a charade to outsiders.", + "pos": "noun", + "word_frequency": 22759 + }, + { + "word": "chinook", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A warm, dry wind descending the eastern slopes of the Rocky Mountains, or a type of salmon.", + "example_sentence_english": "The chinook wind brought unseasonably warm temperatures to the valley.", + "pos": "noun", + "word_frequency": 22760 + }, + { + "word": "coed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A female student at a coeducational college or university.", + "example_sentence_english": "She was a coed at the local university.", + "pos": "noun", + "word_frequency": 22763 + }, + { + "word": "coexistence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state or fact of existing at the same time or in the same place.", + "example_sentence_english": "Peaceful coexistence between different cultures is essential for global harmony.", + "pos": "noun", + "word_frequency": 22764 + }, + { + "word": "compatriot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person from one's own country.", + "example_sentence_english": "He met a compatriot while traveling abroad.", + "pos": "noun", + "word_frequency": 22766 + }, + { + "word": "concourse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large open space inside or in front of a public building, such as a railway station or airport, where crowds gather.", + "example_sentence_english": "We waited for our flight in the main concourse of the airport.", + "pos": "noun", + "word_frequency": 22767 + }, + { + "word": "cursive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Written with the characters joined.", + "example_sentence_english": "Many schools no longer teach cursive writing.", + "pos": "adjective", + "word_frequency": 22771 + }, + { + "word": "cutout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A shape or figure cut out from something, or a device that automatically disconnects an electrical circuit.", + "example_sentence_english": "The store had a life-sized cardboard cutout of the movie star.", + "pos": "noun", + "word_frequency": 22772 + }, + { + "word": "dandelion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A widely distributed weed of the daisy family, with a rosette of leaves, bright yellow flowers followed by fluffy white seed heads.", + "example_sentence_english": "My lawn is full of dandelions in the spring.", + "pos": "noun", + "word_frequency": 22773 + }, + { + "word": "deafness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The condition of being unable to hear, or unable to hear well.", + "example_sentence_english": "Advances in technology have greatly improved the lives of people with deafness.", + "pos": "noun", + "word_frequency": 22775 + }, + { + "word": "declassify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To officially declare (information or documents) to be no longer secret.", + "example_sentence_english": "The government decided to declassify the old intelligence reports.", + "pos": "verb", + "word_frequency": 22776 + }, + { + "word": "deflate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To let air or gas out of (a tire, balloon, or similar inflatable object).", + "example_sentence_english": "The mechanic had to deflate the tire to repair it.", + "pos": "verb", + "word_frequency": 22777 + }, + { + "word": "destruct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To destroy (oneself or something) deliberately.", + "example_sentence_english": "The missile was programmed to destruct if it went off course.", + "pos": "verb", + "word_frequency": 22780 + }, + { + "word": "devonian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the fourth period of the Paleozoic era, between the Silurian and Carboniferous periods.", + "example_sentence_english": "The Devonian period is known as the \"Age of Fishes.\"", + "pos": "adjective", + "word_frequency": 22781 + }, + { + "word": "disenfranchise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To deprive (someone) of the right to vote.", + "example_sentence_english": "Laws were passed to prevent attempts to disenfranchise minority voters.", + "pos": "verb", + "word_frequency": 22783 + }, + { + "word": "disengage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To separate or release (someone or something) from something to which they are attached or involved.", + "example_sentence_english": "He tried to disengage himself from the argument.", + "pos": "verb", + "word_frequency": 22784 + }, + { + "word": "disorient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make (someone) lose their sense of direction or feel confused.", + "example_sentence_english": "The sudden loud noise seemed to disorient the birds.", + "pos": "verb", + "word_frequency": 22785 + }, + { + "word": "drywall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of board made from plaster pressed between two thick sheets of paper, used for making interior walls and ceilings.", + "example_sentence_english": "We need to hang the drywall before painting the room.", + "pos": "noun", + "word_frequency": 22789 + }, + { + "word": "eagerness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Enthusiasm to do or to have something; keenness.", + "example_sentence_english": "Her eagerness to learn new things was admirable.", + "pos": "noun", + "word_frequency": 22792 + }, + { + "word": "elliptic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Of or relating to an ellipse; oval.", + "example_sentence_english": "The planet orbits the sun in an elliptic path.", + "pos": "adjective", + "word_frequency": 22794 + }, + { + "word": "emitter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person or thing that emits something.", + "example_sentence_english": "The device acts as an infrared emitter.", + "pos": "noun", + "word_frequency": 22795 + }, + { + "word": "emporium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A large retail store, especially one selling a wide variety of goods.", + "example_sentence_english": "The new department store was a true shopping emporium.", + "pos": "noun", + "word_frequency": 22796 + }, + { + "word": "epicenter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The point on the earth's surface vertically above the focus of an earthquake.", + "example_sentence_english": "The earthquake's epicenter was located offshore.", + "pos": "noun", + "word_frequency": 22798 + }, + { + "word": "epidural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An anesthetic injected into the epidural space around the spinal cord, especially to numb the lower body during childbirth.", + "example_sentence_english": "She received an epidural during labor to manage the pain.", + "pos": "noun", + "word_frequency": 22799 + }, + { + "word": "epistle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "letter; written communication", + "example_sentence_english": "He received a long epistle from his aunt.", + "pos": "noun", + "word_frequency": 22800 + }, + { + "word": "erstwhile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "former; previous", + "example_sentence_english": "His erstwhile friend now ignored him.", + "pos": "adjective", + "word_frequency": 22801 + }, + { + "word": "espouse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adopt or support (a cause, belief, or way of life)", + "example_sentence_english": "She decided to espouse the cause of environmental protection.", + "pos": "verb", + "word_frequency": 22802 + }, + { + "word": "exertion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physical or mental effort", + "example_sentence_english": "The climb required great exertion.", + "pos": "noun", + "word_frequency": 22803 + }, + { + "word": "facilitator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who helps a group of people work together better", + "example_sentence_english": "The facilitator guided the discussion smoothly.", + "pos": "noun", + "word_frequency": 22804 + }, + { + "word": "fanfic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fan fiction", + "example_sentence_english": "She spends hours reading fanfic online.", + "pos": "noun", + "word_frequency": 22806 + }, + { + "word": "ferocity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of being ferocious; savagery", + "example_sentence_english": "The ferocity of the storm surprised everyone.", + "pos": "noun", + "word_frequency": 22807 + }, + { + "word": "flagstaff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pole on which a flag is flown", + "example_sentence_english": "The flagstaff stood tall in the town square.", + "pos": "noun", + "word_frequency": 22808 + }, + { + "word": "fluidity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being fluid or flowing; gracefulness", + "example_sentence_english": "The dancer moved with remarkable fluidity.", + "pos": "noun", + "word_frequency": 22809 + }, + { + "word": "frill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strip of gathered or pleated material used as an ornamental edging or trimming", + "example_sentence_english": "The dress had a delicate frill around the collar.", + "pos": "noun", + "word_frequency": 22811 + }, + { + "word": "garret", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a top-floor room, especially a small one, just below a sloping roof", + "example_sentence_english": "The artist lived in a small garret.", + "pos": "noun", + "word_frequency": 22817 + }, + { + "word": "gaunt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a person) lean and haggard, especially because of suffering, hunger, or age", + "example_sentence_english": "After the illness, he looked thin and gaunt.", + "pos": "adjective", + "word_frequency": 22819 + }, + { + "word": "grapevine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an informal means of circulating information or gossip", + "example_sentence_english": "I heard it through the grapevine that she's leaving.", + "pos": "noun", + "word_frequency": 22823 + }, + { + "word": "grotto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small picturesque cave, especially an artificial one in a park or garden", + "example_sentence_english": "The garden featured a beautiful stone grotto.", + "pos": "noun", + "word_frequency": 22824 + }, + { + "word": "groundhog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a North American marmot, known for its supposed ability to predict the arrival of spring", + "example_sentence_english": "On Groundhog Day, people watch to see if the groundhog sees its shadow.", + "pos": "noun", + "word_frequency": 22825 + }, + { + "word": "guerilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a small independent group taking part in irregular fighting, typically against larger regular forces", + "example_sentence_english": "The guerilla fighters launched a surprise attack.", + "pos": "noun", + "word_frequency": 22827 + }, + { + "word": "hairless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without hair", + "example_sentence_english": "The cat was completely hairless.", + "pos": "adjective", + "word_frequency": 22832 + }, + { + "word": "heave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lift or haul (a heavy thing) with great effort", + "example_sentence_english": "They had to heave the heavy box onto the truck.", + "pos": "verb", + "word_frequency": 22835 + }, + { + "word": "hellfire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fire of hell; damnation", + "example_sentence_english": "The preacher warned of eternal hellfire.", + "pos": "noun", + "word_frequency": 22836 + }, + { + "word": "hilt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the handle of a weapon or tool, especially a sword, dagger, or knife", + "example_sentence_english": "He gripped the sword by its hilt.", + "pos": "noun", + "word_frequency": 22837 + }, + { + "word": "hinterland", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the remote areas of a country away from the coast or the banks of major rivers", + "example_sentence_english": "The city served as a trading hub for the vast agricultural hinterland.", + "pos": "noun", + "word_frequency": 22838 + }, + { + "word": "homely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plain; unattractive (US); cozy; simple (UK)", + "example_sentence_english": "She had a homely but kind face.", + "pos": "adjective", + "word_frequency": 22841 + }, + { + "word": "i.d", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "identification", + "example_sentence_english": "Can I see your i.d. please.", + "pos": "noun", + "word_frequency": 22843 + }, + { + "word": "inbred", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "produced by inbreeding; inherent", + "example_sentence_english": "The small community suffered from inbred genetic issues.", + "pos": "adjective", + "word_frequency": 22847 + }, + { + "word": "indescribable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to describe", + "example_sentence_english": "The beauty of the sunset was indescribable.", + "pos": "adjective", + "word_frequency": 22849 + }, + { + "word": "indoctrination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of teaching a person or group to accept a set of beliefs uncritically", + "example_sentence_english": "The cult used various methods of indoctrination on its new members.", + "pos": "noun", + "word_frequency": 22850 + }, + { + "word": "inductive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characterized by the process of deriving general principles from particular facts or instances", + "example_sentence_english": "Inductive reasoning moves from specific observations to general conclusions.", + "pos": "adjective", + "word_frequency": 22851 + }, + { + "word": "inevitability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being certain to happen", + "example_sentence_english": "The inevitability of change is a constant in life.", + "pos": "noun", + "word_frequency": 22852 + }, + { + "word": "infatuate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be inspired with an intense but short-lived passion or admiration for", + "example_sentence_english": "He was infatuated with her beauty.", + "pos": "verb", + "word_frequency": 22853 + }, + { + "word": "infatuation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an intense but short-lived passion or admiration for someone or something", + "example_sentence_english": "His infatuation with the new car quickly faded.", + "pos": "noun", + "word_frequency": 22854 + }, + { + "word": "infighting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conflict or rivalry among members of a group or organization", + "example_sentence_english": "The political party was weakened by constant infighting.", + "pos": "noun", + "word_frequency": 22855 + }, + { + "word": "infraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a violation or infringement of a law or agreement", + "example_sentence_english": "He received a penalty for a minor traffic infraction.", + "pos": "noun", + "word_frequency": 22857 + }, + { + "word": "inkling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slight knowledge or suspicion; a hint", + "example_sentence_english": "I had an inkling that something was wrong.", + "pos": "noun", + "word_frequency": 22858 + }, + { + "word": "innuendo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an allusive or oblique remark or hint, typically a derogatory one", + "example_sentence_english": "His speech was full of subtle innuendoes about his opponent.", + "pos": "noun", + "word_frequency": 22859 + }, + { + "word": "insecticide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used for killing insects", + "example_sentence_english": "Farmers often use insecticide to protect their crops.", + "pos": "noun", + "word_frequency": 22860 + }, + { + "word": "instantaneously", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at once; instantly", + "example_sentence_english": "The light came on instantaneously when she flipped the switch.", + "pos": "adverb", + "word_frequency": 22861 + }, + { + "word": "interchangeably", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that can be exchanged without making a difference", + "example_sentence_english": "The terms 'happy' and 'joyful' are often used interchangeably.", + "pos": "adverb", + "word_frequency": 22862 + }, + { + "word": "interfaith", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involving or concerning different religions or religious beliefs", + "example_sentence_english": "The community organized an interfaith dialogue to promote understanding.", + "pos": "adjective", + "word_frequency": 22863 + }, + { + "word": "introspective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by or given to introspection; examining one's own thoughts or feelings", + "example_sentence_english": "He spent a lot of time in introspective thought, reflecting on his life.", + "pos": "adjective", + "word_frequency": 22864 + }, + { + "word": "javelin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a light spear thrown in a track-and-field event or used as a weapon", + "example_sentence_english": "The athlete threw the javelin a record distance.", + "pos": "noun", + "word_frequency": 22866 + }, + { + "word": "knoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small hill or mound", + "example_sentence_english": "They picnicked on a grassy knoll overlooking the valley.", + "pos": "noun", + "word_frequency": 22877 + }, + { + "word": "landlady", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A woman who rents out rooms, a house, or land.", + "example_sentence_english": "The landlady collected the rent on the first of the month.", + "pos": "noun", + "word_frequency": 22880 + }, + { + "word": "larceny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Theft of personal property.", + "example_sentence_english": "He was charged with grand larceny after stealing the car.", + "pos": "noun", + "word_frequency": 22881 + }, + { + "word": "lavatory", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A room with a toilet and washbasin; a toilet.", + "example_sentence_english": "The airplane lavatory was occupied.", + "pos": "noun", + "word_frequency": 22882 + }, + { + "word": "leaning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A tendency or partiality.", + "example_sentence_english": "She has a strong leaning towards classical music.", + "pos": "noun", + "word_frequency": 22883 + }, + { + "word": "luminosity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The intrinsic brightness of a celestial object; brightness.", + "example_sentence_english": "The luminosity of the star was immense.", + "pos": "noun", + "word_frequency": 22889 + }, + { + "word": "magpie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A long-tailed crow-like bird.", + "example_sentence_english": "A magpie flew past the window, carrying a shiny object.", + "pos": "noun", + "word_frequency": 22892 + }, + { + "word": "maoist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A follower of the political theories of Mao Zedong.", + "example_sentence_english": "The group identified themselves as Maoists.", + "pos": "noun", + "word_frequency": 22893 + }, + { + "word": "masjid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A mosque.", + "example_sentence_english": "They went to the masjid for evening prayers.", + "pos": "noun", + "word_frequency": 22894 + }, + { + "word": "matrimonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to marriage or married people.", + "example_sentence_english": "They sought matrimonial advice from a counselor.", + "pos": "adjective", + "word_frequency": 22896 + }, + { + "word": "maul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A heavy hammer.", + "example_sentence_english": "He used a maul to split the logs.", + "pos": "noun", + "word_frequency": 22897 + }, + { + "word": "meander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To wander aimlessly; to follow a winding course.", + "example_sentence_english": "The river meanders through the valley.", + "pos": "verb", + "word_frequency": 22900 + }, + { + "word": "menstruation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process in a woman of discharging blood and other material from the lining of the uterus at intervals of about one lunar month from puberty until the menopause, except during pregnancy.", + "example_sentence_english": "Menstruation is a natural biological process.", + "pos": "noun", + "word_frequency": 22902 + }, + { + "word": "messianic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the Messiah; characterized by fervent hope or belief in a messiah.", + "example_sentence_english": "The leader had a messianic complex, believing he was destined to save the world.", + "pos": "adjective", + "word_frequency": 22903 + }, + { + "word": "minimalism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A style or technique (as in music, literature, or design) that is characterized by extreme spareness and simplicity.", + "example_sentence_english": "Her apartment was decorated in a style of minimalism.", + "pos": "noun", + "word_frequency": 22905 + }, + { + "word": "misgiving", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A feeling of doubt or apprehension about the outcome or consequences of something.", + "example_sentence_english": "He had serious misgivings about the plan.", + "pos": "noun", + "word_frequency": 22906 + }, + { + "word": "misogynist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who dislikes, despises, or is strongly prejudiced against women.", + "example_sentence_english": "His comments revealed him to be a misogynist.", + "pos": "noun", + "word_frequency": 22907 + }, + { + "word": "modality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A particular mode in which something exists or is experienced or expressed.", + "example_sentence_english": "The doctor discussed different treatment modalities.", + "pos": "noun", + "word_frequency": 22908 + }, + { + "word": "motivator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that provides a reason for doing something.", + "example_sentence_english": "He was a great motivator for the team.", + "pos": "noun", + "word_frequency": 22909 + }, + { + "word": "mulch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A material (such as decaying leaves, bark, or compost) spread around or over a plant to enrich or insulate the soil.", + "example_sentence_english": "She spread mulch around the rose bushes.", + "pos": "noun", + "word_frequency": 22911 + }, + { + "word": "musket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A light gun with a long barrel, typically smooth-bored, muzzle-loading, and formerly used by infantry.", + "example_sentence_english": "Soldiers in the 18th century often carried a musket.", + "pos": "noun", + "word_frequency": 22912 + }, + { + "word": "nether", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Lower in position.", + "example_sentence_english": "He descended into the nether regions of the cave.", + "pos": "adjective", + "word_frequency": 22918 + }, + { + "word": "nourish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide with food or other substances necessary for growth, health, and good condition", + "example_sentence_english": "Good food will nourish your body and mind.", + "pos": "verb", + "word_frequency": 22921 + }, + { + "word": "nutritionist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an expert on nutrition", + "example_sentence_english": "She consulted a nutritionist to improve her diet.", + "pos": "noun", + "word_frequency": 22923 + }, + { + "word": "obscenity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of being obscene; an obscene act, utterance, or item", + "example_sentence_english": "The film was criticized for its gratuitous obscenity.", + "pos": "noun", + "word_frequency": 22924 + }, + { + "word": "onlooker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a nonparticipant observer; a spectator", + "example_sentence_english": "The onlookers gathered around the accident scene.", + "pos": "noun", + "word_frequency": 22926 + }, + { + "word": "orator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a public speaker, especially one who is eloquent or skilled", + "example_sentence_english": "He was a gifted orator, captivating his audience with every speech.", + "pos": "noun", + "word_frequency": 22927 + }, + { + "word": "overpay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pay too much for something", + "example_sentence_english": "Be careful not to overpay for that used car.", + "pos": "verb", + "word_frequency": 22929 + }, + { + "word": "palais", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large, imposing building, especially a public one or a palace", + "example_sentence_english": "The Palais Garnier is a famous opera house in Paris.", + "pos": "noun", + "word_frequency": 22930 + }, + { + "word": "papyrus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a material prepared in ancient Egypt from the pithy stem of a water plant, used as a writing surface", + "example_sentence_english": "Ancient Egyptians wrote on sheets of papyrus.", + "pos": "noun", + "word_frequency": 22932 + }, + { + "word": "perpetuity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of lasting forever", + "example_sentence_english": "The land was granted to the family in perpetuity.", + "pos": "noun", + "word_frequency": 22935 + }, + { + "word": "pho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Vietnamese noodle soup", + "example_sentence_english": "I love to eat a hot bowl of pho on a cold day.", + "pos": "noun", + "word_frequency": 22939 + }, + { + "word": "platelet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small colorless disk-shaped cell fragment without a nucleus, found in large numbers in blood and involved in clotting", + "example_sentence_english": "Platelets are essential for blood clotting.", + "pos": "noun", + "word_frequency": 22940 + }, + { + "word": "plier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool with two hinged arms and jaws for gripping and bending small objects", + "example_sentence_english": "He used a pair of pliers to grip the wire.", + "pos": "noun", + "word_frequency": 22941 + }, + { + "word": "pluralism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a condition or system in which two or more states, groups, principles, sources of authority, etc., coexist", + "example_sentence_english": "Cultural pluralism is a hallmark of modern democratic societies.", + "pos": "noun", + "word_frequency": 22942 + }, + { + "word": "polynesian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a people inhabiting Polynesia; the group of Austronesian languages spoken in Polynesia", + "example_sentence_english": "Many Polynesians are skilled navigators.", + "pos": "noun", + "word_frequency": 22943 + }, + { + "word": "pooja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Hindu worship ritual", + "example_sentence_english": "The family performed a daily pooja at their home altar.", + "pos": "noun", + "word_frequency": 22944 + }, + { + "word": "portability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being able to be carried or moved easily", + "example_sentence_english": "The laptop's portability makes it ideal for travel.", + "pos": "noun", + "word_frequency": 22945 + }, + { + "word": "predation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the preying of one animal on others", + "example_sentence_english": "The study examined the effects of predation on the deer population.", + "pos": "noun", + "word_frequency": 22947 + }, + { + "word": "preheat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to heat (an oven or other cooking appliance) to a specified temperature before putting food in it", + "example_sentence_english": "Remember to preheat the oven to 200 degrees Celsius.", + "pos": "verb", + "word_frequency": 22948 + }, + { + "word": "protectorate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state that is controlled and protected by another", + "example_sentence_english": "The island became a British protectorate in the 19th century.", + "pos": "noun", + "word_frequency": 22952 + }, + { + "word": "psychopathic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or suffering from psychopathy", + "example_sentence_english": "The character displayed psychopathic tendencies.", + "pos": "adjective", + "word_frequency": 22953 + }, + { + "word": "randomness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being random", + "example_sentence_english": "The randomness of the lottery results makes it exciting.", + "pos": "noun", + "word_frequency": 22955 + }, + { + "word": "recitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of reciting something from memory", + "example_sentence_english": "Her recitation of the poem was flawless.", + "pos": "noun", + "word_frequency": 22956 + }, + { + "word": "rectal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or affecting the rectum", + "example_sentence_english": "The doctor performed a rectal examination.", + "pos": "adjective", + "word_frequency": 22957 + }, + { + "word": "recursive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving a procedure whereby a mathematical or computational process is repeated indefinitely, or a linguistic unit can be embedded within another unit of the same type", + "example_sentence_english": "The algorithm uses a recursive function to solve the problem.", + "pos": "adjective", + "word_frequency": 22958 + }, + { + "word": "reevaluate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evaluate again or differently", + "example_sentence_english": "We need to reevaluate our strategy after these new developments.", + "pos": "verb", + "word_frequency": 22959 + }, + { + "word": "rerun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "show again, play again", + "example_sentence_english": "They decided to rerun the old TV series.", + "pos": "verb", + "word_frequency": 22960 + }, + { + "word": "riddance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of getting rid of something unwanted", + "example_sentence_english": "Good riddance to bad rubbish.", + "pos": "noun", + "word_frequency": 22961 + }, + { + "word": "ruthlessly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without pity or compassion", + "example_sentence_english": "He ruthlessly pursued his goals.", + "pos": "adverb", + "word_frequency": 22963 + }, + { + "word": "satchel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small bag, often with a shoulder strap", + "example_sentence_english": "He carried his books in a leather satchel.", + "pos": "noun", + "word_frequency": 22964 + }, + { + "word": "saucy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impudent; disrespectful; lively", + "example_sentence_english": "She gave him a saucy wink.", + "pos": "adjective", + "word_frequency": 22965 + }, + { + "word": "sculptural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to sculpture; having a form like a sculpture", + "example_sentence_english": "The building had a very sculptural quality.", + "pos": "adjective", + "word_frequency": 22969 + }, + { + "word": "septum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dividing wall or membrane between two cavities or masses of soft tissue", + "example_sentence_english": "He had a deviated nasal septum.", + "pos": "noun", + "word_frequency": 22970 + }, + { + "word": "servo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a servomechanism; a power-assisted steering system", + "example_sentence_english": "The car's power steering servo failed.", + "pos": "noun", + "word_frequency": 22971 + }, + { + "word": "shyness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being shy", + "example_sentence_english": "Her shyness made it difficult to make new friends.", + "pos": "noun", + "word_frequency": 22974 + }, + { + "word": "snub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of ignoring or treating with disdain", + "example_sentence_english": "She felt hurt by his public snub.", + "pos": "noun", + "word_frequency": 22975 + }, + { + "word": "spandex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of stretchy fabric", + "example_sentence_english": "The swimsuit was made of spandex.", + "pos": "noun", + "word_frequency": 22977 + }, + { + "word": "sportswear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clothes designed for sports or casual wear", + "example_sentence_english": "She bought some new sportswear for her gym sessions.", + "pos": "noun", + "word_frequency": 22979 + }, + { + "word": "squeak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short, high-pitched sound", + "example_sentence_english": "We heard a mouse's squeak from behind the wall.", + "pos": "noun", + "word_frequency": 22980 + }, + { + "word": "steakhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a restaurant specializing in steaks", + "example_sentence_english": "We went to a famous steakhouse for dinner.", + "pos": "noun", + "word_frequency": 22982 + }, + { + "word": "stratigraphic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to stratigraphy (the study of rock layers)", + "example_sentence_english": "Geologists use stratigraphic analysis to understand Earth's history.", + "pos": "adjective", + "word_frequency": 22983 + }, + { + "word": "stratosphere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the layer of the earth's atmosphere above the troposphere", + "example_sentence_english": "The ozone layer is located in the stratosphere.", + "pos": "noun", + "word_frequency": 22984 + }, + { + "word": "stucco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fine plaster used for coating walls", + "example_sentence_english": "The exterior of the house was covered in stucco.", + "pos": "noun", + "word_frequency": 22985 + }, + { + "word": "suave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charming, confident, and elegant", + "example_sentence_english": "He was a suave and sophisticated gentleman.", + "pos": "adjective", + "word_frequency": 22986 + }, + { + "word": "subcontractor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that undertakes a part of a larger contract", + "example_sentence_english": "The main contractor hired a subcontractor for the electrical work.", + "pos": "noun", + "word_frequency": 22987 + }, + { + "word": "succinct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brief and clearly expressed", + "example_sentence_english": "Her answer was succinct and to the point.", + "pos": "adjective", + "word_frequency": 22988 + }, + { + "word": "sweetener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance used to sweeten food or drink", + "example_sentence_english": "Many people use artificial sweeteners in their coffee.", + "pos": "noun", + "word_frequency": 22989 + }, + { + "word": "taxonomic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to taxonomy (the classification of organisms)", + "example_sentence_english": "The taxonomic classification of this species is still debated.", + "pos": "adjective", + "word_frequency": 22991 + }, + { + "word": "telltale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revealing; indicating something", + "example_sentence_english": "The telltale signs of a cold were starting to appear.", + "pos": "adjective", + "word_frequency": 22992 + }, + { + "word": "thoughtless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconsiderate; careless", + "example_sentence_english": "It was thoughtless of him to forget her birthday.", + "pos": "adjective", + "word_frequency": 22997 + }, + { + "word": "thrower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that throws", + "example_sentence_english": "He is a skilled discus thrower.", + "pos": "noun", + "word_frequency": 22998 + }, + { + "word": "thud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dull, heavy sound", + "example_sentence_english": "We heard a heavy thud from upstairs.", + "pos": "noun", + "word_frequency": 22999 + }, + { + "word": "tibia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shin bone", + "example_sentence_english": "He fractured his tibia during the soccer match.", + "pos": "noun", + "word_frequency": 23000 + }, + { + "word": "titular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in name only; relating to a title", + "example_sentence_english": "She was the titular head of the organization, but held no real power.", + "pos": "adjective", + "word_frequency": 23001 + }, + { + "word": "torrential", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "falling rapidly and in copious quantities", + "example_sentence_english": "The torrential rain caused widespread flooding.", + "pos": "adjective", + "word_frequency": 23003 + }, + { + "word": "unitarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who believes in the unity of God", + "example_sentence_english": "He was raised as a Unitarian.", + "pos": "noun", + "word_frequency": 23007 + }, + { + "word": "valence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the combining power of an element; emotional value", + "example_sentence_english": "The valence of carbon is four.", + "pos": "noun", + "word_frequency": 23009 + }, + { + "word": "ventilate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allow air to enter and circulate freely", + "example_sentence_english": "It's important to ventilate the room regularly.", + "pos": "verb", + "word_frequency": 23010 + }, + { + "word": "virtuoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person highly skilled in music or another artistic pursuit", + "example_sentence_english": "He was a piano virtuoso by the age of ten.", + "pos": "noun", + "word_frequency": 23011 + }, + { + "word": "welder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who welds", + "example_sentence_english": "The welder repaired the broken metal fence.", + "pos": "noun", + "word_frequency": 23014 + }, + { + "word": "whiten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become white", + "example_sentence_english": "She used a special product to whiten her teeth.", + "pos": "verb", + "word_frequency": 23017 + }, + { + "word": "whitewater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foaming water in a river or rapids", + "example_sentence_english": "They went whitewater rafting on their vacation.", + "pos": "noun", + "word_frequency": 23018 + }, + { + "word": "whiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is extremely good at something", + "example_sentence_english": "He's a whiz at math.", + "pos": "noun", + "word_frequency": 23019 + }, + { + "word": "wingman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pilot who flies behind and to the side of the lead aircraft; a friend who helps another person with romantic pursuits", + "example_sentence_english": "He asked his best friend to be his wingman at the party.", + "pos": "noun", + "word_frequency": 23020 + }, + { + "word": "woodruff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fragrant plant", + "example_sentence_english": "Sweet woodruff is often used in traditional German drinks.", + "pos": "noun", + "word_frequency": 23024 + }, + { + "word": "xenon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical element (Xe)", + "example_sentence_english": "Xenon is a noble gas used in some specialized lighting.", + "pos": "noun", + "word_frequency": 23025 + }, + { + "word": "acme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the point at which something is best or most highly developed", + "example_sentence_english": "He reached the acme of his career at age 40.", + "pos": "noun", + "word_frequency": 23032 + }, + { + "word": "addendum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an item of additional material added at the end of a book or other publication", + "example_sentence_english": "Please refer to the addendum for the updated figures.", + "pos": "noun", + "word_frequency": 23034 + }, + { + "word": "adsorption", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the process by which molecules adhere to a surface", + "example_sentence_english": "The experiment studied the adsorption of gases on metal surfaces.", + "pos": "noun", + "word_frequency": 23035 + }, + { + "word": "affront", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an action or remark that causes outrage or offense", + "example_sentence_english": "His rude comments were a direct affront to her dignity.", + "pos": "noun", + "word_frequency": 23036 + }, + { + "word": "afoot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in preparation or progress; happening or being planned", + "example_sentence_english": "There are rumors that a major change is afoot in the company.", + "pos": "adjective", + "word_frequency": 23037 + }, + { + "word": "amenable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "willing to agree or be influenced", + "example_sentence_english": "She was amenable to the new plan.", + "pos": "adjective", + "word_frequency": 23041 + }, + { + "word": "amity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "friendly relations", + "example_sentence_english": "The two nations lived in amity for decades.", + "pos": "noun", + "word_frequency": 23042 + }, + { + "word": "antibacterial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroying or inhibiting bacteria", + "example_sentence_english": "This soap has antibacterial properties.", + "pos": "adjective", + "word_frequency": 23044 + }, + { + "word": "argumentative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prone to arguing", + "example_sentence_english": "He has a very argumentative personality.", + "pos": "adjective", + "word_frequency": 23046 + }, + { + "word": "artsy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretentiously artistic", + "example_sentence_english": "She lives in an artsy neighborhood.", + "pos": "adjective", + "word_frequency": 23048 + }, + { + "word": "asymptomatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing no symptoms of disease", + "example_sentence_english": "Many people with the virus are asymptomatic.", + "pos": "adjective", + "word_frequency": 23049 + }, + { + "word": "baccalaureate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bachelor's degree", + "example_sentence_english": "She earned her baccalaureate in history.", + "pos": "noun", + "word_frequency": 23053 + }, + { + "word": "barcode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine-readable code", + "example_sentence_english": "The cashier scanned the barcode on the product.", + "pos": "noun", + "word_frequency": 23056 + }, + { + "word": "bearable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be endured", + "example_sentence_english": "The pain was barely bearable.", + "pos": "adjective", + "word_frequency": 23058 + }, + { + "word": "beehive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a structure where bees live", + "example_sentence_english": "The bees were busy in their beehive.", + "pos": "noun", + "word_frequency": 23059 + }, + { + "word": "beltway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a highway encircling a city", + "example_sentence_english": "Traffic on the beltway was heavy during rush hour.", + "pos": "noun", + "word_frequency": 23060 + }, + { + "word": "biosphere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the part of Earth where life exists", + "example_sentence_english": "Protecting the biosphere is crucial for future generations.", + "pos": "noun", + "word_frequency": 23063 + }, + { + "word": "bodybuilder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who develops their muscles", + "example_sentence_english": "The bodybuilder lifted heavy weights.", + "pos": "noun", + "word_frequency": 23066 + }, + { + "word": "botanist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a scientist who studies plants", + "example_sentence_english": "The botanist identified the rare flower.", + "pos": "noun", + "word_frequency": 23068 + }, + { + "word": "calmness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being calm", + "example_sentence_english": "She faced the challenge with calmness.", + "pos": "noun", + "word_frequency": 23071 + }, + { + "word": "canny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shrewd and careful", + "example_sentence_english": "He's a canny businessman who knows how to make a deal.", + "pos": "adjective", + "word_frequency": 23072 + }, + { + "word": "caveman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prehistoric human living in caves", + "example_sentence_english": "The exhibit showed how a caveman might have lived.", + "pos": "noun", + "word_frequency": 23074 + }, + { + "word": "chairwoman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who presides over a meeting or committee", + "example_sentence_english": "The chairwoman opened the discussion.", + "pos": "noun", + "word_frequency": 23076 + }, + { + "word": "characterisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the portrayal or description of a character", + "example_sentence_english": "The characterisation of the villain was very complex.", + "pos": "noun", + "word_frequency": 23077 + }, + { + "word": "checkered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marked with a pattern of squares", + "example_sentence_english": "He wore a checkered shirt.", + "pos": "adjective", + "word_frequency": 23078 + }, + { + "word": "cheekbone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the bone below the eye", + "example_sentence_english": "She had high cheekbones.", + "pos": "noun", + "word_frequency": 23079 + }, + { + "word": "cilantro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coriander (leaves)", + "example_sentence_english": "Some people love the taste of cilantro, while others find it soapy.", + "pos": "noun", + "word_frequency": 23081 + }, + { + "word": "circumcise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remove the foreskin", + "example_sentence_english": "In some cultures, it is traditional to circumcise male infants.", + "pos": "verb", + "word_frequency": 23082 + }, + { + "word": "clementine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, easy-to-peel citrus fruit", + "example_sentence_english": "I packed a clementine in my lunch for a healthy snack.", + "pos": "noun", + "word_frequency": 23084 + }, + { + "word": "clipboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a board with a clip for holding papers", + "example_sentence_english": "The nurse carried a clipboard with patient records.", + "pos": "noun", + "word_frequency": 23085 + }, + { + "word": "compensatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving to compensate", + "example_sentence_english": "The company offered compensatory damages for the inconvenience.", + "pos": "adjective", + "word_frequency": 23086 + }, + { + "word": "confessor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who hears confessions", + "example_sentence_english": "She sought guidance from her confessor.", + "pos": "noun", + "word_frequency": 23087 + }, + { + "word": "connoisseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an expert judge in matters of taste", + "example_sentence_english": "He is a true connoisseur of fine wines.", + "pos": "noun", + "word_frequency": 23088 + }, + { + "word": "contemplative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involving or characterized by deep thought", + "example_sentence_english": "She spent a contemplative hour by the lake, reflecting on her day.", + "pos": "adjective", + "word_frequency": 23089 + }, + { + "word": "convocation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large formal assembly", + "example_sentence_english": "The university held its annual convocation for new students.", + "pos": "noun", + "word_frequency": 23090 + }, + { + "word": "countermeasure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an action taken to counteract a danger or threat", + "example_sentence_english": "The government implemented new countermeasures against cyber attacks.", + "pos": "noun", + "word_frequency": 23091 + }, + { + "word": "culpable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving blame", + "example_sentence_english": "The jury found him culpable for the accident.", + "pos": "adjective", + "word_frequency": 23093 + }, + { + "word": "debug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to identify and remove errors from computer hardware or software", + "example_sentence_english": "It took hours to debug the code and find the source of the error.", + "pos": "verb", + "word_frequency": 23096 + }, + { + "word": "disuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cease to use", + "example_sentence_english": "The old factory fell into disuse after the company moved.", + "pos": "verb", + "word_frequency": 23101 + }, + { + "word": "divination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of seeking knowledge of the future or the unknown by supernatural means", + "example_sentence_english": "Ancient cultures often relied on divination to make important decisions.", + "pos": "noun", + "word_frequency": 23102 + }, + { + "word": "downsize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something smaller; to reduce the number of employees", + "example_sentence_english": "The company decided to downsize its workforce to cut costs.", + "pos": "verb", + "word_frequency": 23107 + }, + { + "word": "drunkenness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being drunk", + "example_sentence_english": "Public drunkenness is illegal in many places.", + "pos": "noun", + "word_frequency": 23109 + }, + { + "word": "emulsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fine dispersion of minute droplets of one liquid in another in which it is not soluble", + "example_sentence_english": "Mayonnaise is an emulsion of oil and egg yolk.", + "pos": "noun", + "word_frequency": 23114 + }, + { + "word": "epistemology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the theory of knowledge, especially with regard to its methods, validity, and scope", + "example_sentence_english": "His research focuses on the epistemology of science.", + "pos": "noun", + "word_frequency": 23115 + }, + { + "word": "exorcism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the expulsion or attempted expulsion of an evil spirit from a person or place", + "example_sentence_english": "The film depicted a dramatic exorcism scene.", + "pos": "noun", + "word_frequency": 23118 + }, + { + "word": "fabled", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "famous, especially by reputation; legendary", + "example_sentence_english": "They searched for the fabled city of El Dorado.", + "pos": "adjective", + "word_frequency": 23119 + }, + { + "word": "fatherhood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being a father", + "example_sentence_english": "He embraced the joys and challenges of fatherhood.", + "pos": "noun", + "word_frequency": 23120 + }, + { + "word": "femoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the femur or thigh", + "example_sentence_english": "The doctor examined the patient's femoral artery.", + "pos": "adjective", + "word_frequency": 23124 + }, + { + "word": "fijian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Fiji", + "example_sentence_english": "The Fijian greeted us with a warm smile.", + "pos": "noun", + "word_frequency": 23126 + }, + { + "word": "filibuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an action, such as a prolonged speech, that obstructs progress in a legislative assembly", + "example_sentence_english": "The senator threatened to use a filibuster to block the bill.", + "pos": "noun", + "word_frequency": 23127 + }, + { + "word": "filling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance used to fill a space or cavity", + "example_sentence_english": "The dentist put a new filling in my tooth.", + "pos": "noun", + "word_frequency": 23128 + }, + { + "word": "gander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male goose; a quick look", + "example_sentence_english": "He took a quick gander at the newspaper headlines.", + "pos": "noun", + "word_frequency": 23131 + }, + { + "word": "gauze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin, transparent fabric used for dressings", + "example_sentence_english": "The nurse wrapped the wound with sterile gauze.", + "pos": "noun", + "word_frequency": 23132 + }, + { + "word": "geometrical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to geometry or geometric shapes", + "example_sentence_english": "The artist used bold geometrical patterns in her design.", + "pos": "adjective", + "word_frequency": 23133 + }, + { + "word": "ghoul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an evil spirit or phantom, especially one that robs graves", + "example_sentence_english": "The story featured a terrifying ghoul that haunted the graveyard.", + "pos": "noun", + "word_frequency": 23134 + }, + { + "word": "grandstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main stand for spectators at a racecourse or sports ground", + "example_sentence_english": "We had excellent seats in the grandstand for the final race.", + "pos": "noun", + "word_frequency": 23137 + }, + { + "word": "grumble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complain in a bad-tempered way", + "example_sentence_english": "He continued to grumble about the cold weather.", + "pos": "verb", + "word_frequency": 23138 + }, + { + "word": "hamza", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a glottal stop in Arabic", + "example_sentence_english": "The hamza is an important phoneme in Arabic pronunciation.", + "pos": "noun", + "word_frequency": 23142 + }, + { + "word": "hibernian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person from Ireland; relating to Ireland", + "example_sentence_english": "The Hibernian cultural society celebrated St. Patrick's Day.", + "pos": "noun", + "word_frequency": 23145 + }, + { + "word": "hydrophobic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to repel or fail to mix with water", + "example_sentence_english": "Oil is a hydrophobic substance, which is why it doesn't mix with water.", + "pos": "adjective", + "word_frequency": 23148 + }, + { + "word": "immaterial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unimportant under the circumstances; not consisting of matter", + "example_sentence_english": "Whether he agrees or not is immaterial to the outcome.", + "pos": "adjective", + "word_frequency": 23149 + }, + { + "word": "industrialist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person involved in the ownership and management of industrial enterprises", + "example_sentence_english": "The wealthy industrialist donated a large sum to charity.", + "pos": "noun", + "word_frequency": 23150 + }, + { + "word": "inefficiency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of not achieving maximum productivity", + "example_sentence_english": "The company suffered from widespread inefficiency in its operations.", + "pos": "noun", + "word_frequency": 23151 + }, + { + "word": "inflationary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or tending to cause inflation", + "example_sentence_english": "The government's policies led to an inflationary spiral.", + "pos": "adjective", + "word_frequency": 23152 + }, + { + "word": "inflexible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be bent; unwilling to change or compromise", + "example_sentence_english": "His inflexible attitude made negotiations difficult.", + "pos": "adjective", + "word_frequency": 23153 + }, + { + "word": "inflow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a movement of people, money, or things into a place", + "example_sentence_english": "The country experienced a significant inflow of foreign investment.", + "pos": "noun", + "word_frequency": 23154 + }, + { + "word": "intercom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an electrical device allowing two-way communication", + "example_sentence_english": "Please use the intercom to speak to the receptionist.", + "pos": "noun", + "word_frequency": 23156 + }, + { + "word": "internationale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a socialist anthem", + "example_sentence_english": "The crowd sang 'The Internationale' with passion.", + "pos": "noun", + "word_frequency": 23157 + }, + { + "word": "jihadi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person involved in jihad.", + "example_sentence_english": "The government is working to counter the influence of jihadi groups.", + "pos": "noun", + "word_frequency": 23161 + }, + { + "word": "knighthood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The rank, status, or dignity of a knight.", + "example_sentence_english": "He was granted a knighthood for his services to charity.", + "pos": "noun", + "word_frequency": 23164 + }, + { + "word": "lengthen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To make or become longer.", + "example_sentence_english": "The tailor had to lengthen the trousers.", + "pos": "verb", + "word_frequency": 23166 + }, + { + "word": "lifesaving", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The skill or practice of saving lives, especially from drowning.", + "example_sentence_english": "He took a course in lifesaving techniques.", + "pos": "noun", + "word_frequency": 23167 + }, + { + "word": "lire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A former monetary unit of Italy and other countries.", + "example_sentence_english": "Before the euro, Italy's currency was the lira, plural lire.", + "pos": "noun", + "word_frequency": 23168 + }, + { + "word": "machination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A scheming or crafty action or artful design intended to accomplish some usually evil end.", + "example_sentence_english": "The political machinations behind the coup were complex.", + "pos": "noun", + "word_frequency": 23174 + }, + { + "word": "mangrove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A tropical tree or shrub with roots that grow in salty water.", + "example_sentence_english": "Mangrove forests are vital ecosystems for coastal protection.", + "pos": "noun", + "word_frequency": 23176 + }, + { + "word": "marmalade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A preserve made from citrus fruit, especially oranges.", + "example_sentence_english": "I like to spread marmalade on my toast in the morning.", + "pos": "noun", + "word_frequency": 23177 + }, + { + "word": "masala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A blend of spices used in Indian cooking.", + "example_sentence_english": "Chicken tikka masala is a popular dish.", + "pos": "noun", + "word_frequency": 23179 + }, + { + "word": "mecha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large, armored robot, typically controlled by a pilot.", + "example_sentence_english": "The anime series featured giant mecha battling alien invaders.", + "pos": "noun", + "word_frequency": 23181 + }, + { + "word": "miocene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A geological epoch from about 23 to 5.3 million years ago.", + "example_sentence_english": "Many modern mammal groups first appeared during the Miocene epoch.", + "pos": "noun", + "word_frequency": 23184 + }, + { + "word": "modifier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A word or phrase that describes or limits the meaning of another word or phrase.", + "example_sentence_english": "In the phrase 'very happy', 'very' is a modifier of 'happy'.", + "pos": "noun", + "word_frequency": 23188 + }, + { + "word": "naturalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process by which a foreign citizen becomes a citizen of a new country.", + "example_sentence_english": "She completed the naturalization process to become a citizen.", + "pos": "noun", + "word_frequency": 23189 + }, + { + "word": "nene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A Hawaiian goose, the state bird of Hawaii.", + "example_sentence_english": "The nene is an endangered species native to Hawaii.", + "pos": "noun", + "word_frequency": 23190 + }, + { + "word": "numbness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lack of sensation in a part of the body.", + "example_sentence_english": "He experienced numbness in his fingers after the cold exposure.", + "pos": "noun", + "word_frequency": 23192 + }, + { + "word": "occidental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the countries of the West.", + "example_sentence_english": "The exhibition explored the differences between Oriental and Occidental art.", + "pos": "adjective", + "word_frequency": 23195 + }, + { + "word": "ooze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To slowly trickle or seep out of something.", + "example_sentence_english": "Mud began to ooze from the cracks in the wall.", + "pos": "verb", + "word_frequency": 23196 + }, + { + "word": "opiate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A drug derived from opium, used medically to relieve pain.", + "example_sentence_english": "Morphine is a powerful opiate used in pain management.", + "pos": "noun", + "word_frequency": 23197 + }, + { + "word": "osprey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large fish-eating bird of prey.", + "example_sentence_english": "We watched an osprey dive into the lake to catch a fish.", + "pos": "noun", + "word_frequency": 23198 + }, + { + "word": "outscore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To score more points than an opponent.", + "example_sentence_english": "Our team managed to outscore the opposition in the final quarter.", + "pos": "verb", + "word_frequency": 23199 + }, + { + "word": "pelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An animal's skin with fur or wool.", + "example_sentence_english": "The hunter carefully removed the deer's pelt.", + "pos": "noun", + "word_frequency": 23202 + }, + { + "word": "pennant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A long, tapering flag.", + "example_sentence_english": "The championship pennant flew proudly from the flagpole.", + "pos": "noun", + "word_frequency": 23203 + }, + { + "word": "perfectionist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who strives for perfection.", + "example_sentence_english": "As a perfectionist, she spent hours refining every detail of her project.", + "pos": "noun", + "word_frequency": 23204 + }, + { + "word": "praxis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Practice, as distinguished from theory.", + "example_sentence_english": "The theory must be put into praxis to be truly understood.", + "pos": "noun", + "word_frequency": 23211 + }, + { + "word": "princely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Of or relating to a prince; magnificent.", + "example_sentence_english": "He received a princely sum for his services.", + "pos": "adjective", + "word_frequency": 23212 + }, + { + "word": "psoriasis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A chronic skin disease.", + "example_sentence_english": "Psoriasis causes red, scaly patches on the skin.", + "pos": "noun", + "word_frequency": 23213 + }, + { + "word": "putty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A soft, malleable material used for sealing.", + "example_sentence_english": "He used putty to fill the cracks in the window frame.", + "pos": "noun", + "word_frequency": 23214 + }, + { + "word": "quench", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To satisfy (thirst) or extinguish (fire).", + "example_sentence_english": "He drank a large glass of water to quench his thirst.", + "pos": "verb", + "word_frequency": 23215 + }, + { + "word": "radicalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The beliefs of those advocating drastic social or political reform.", + "example_sentence_english": "The rise of radicalism often occurs during times of social unrest.", + "pos": "noun", + "word_frequency": 23217 + }, + { + "word": "radon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A radioactive noble gas.", + "example_sentence_english": "Radon gas can accumulate in homes and pose a health risk.", + "pos": "noun", + "word_frequency": 23218 + }, + { + "word": "rationalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To justify with logical reasons, often false ones.", + "example_sentence_english": "He tried to rationalize his decision, but it was clearly a mistake.", + "pos": "verb", + "word_frequency": 23219 + }, + { + "word": "reactivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state or power of reacting.", + "example_sentence_english": "The high reactivity of sodium makes it dangerous to handle.", + "pos": "noun", + "word_frequency": 23220 + }, + { + "word": "reassignment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act of assigning to a different place or task.", + "example_sentence_english": "Her reassignment to a new department was unexpected.", + "pos": "noun", + "word_frequency": 23221 + }, + { + "word": "repeater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that repeats.", + "example_sentence_english": "The device acts as a signal repeater, extending the Wi-Fi range.", + "pos": "noun", + "word_frequency": 23223 + }, + { + "word": "reprisal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An act of retaliation.", + "example_sentence_english": "The government warned against any acts of reprisal.", + "pos": "noun", + "word_frequency": 23224 + }, + { + "word": "retardation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action or process of delaying or slowing down.", + "example_sentence_english": "The drug caused a significant retardation of tumor growth.", + "pos": "noun", + "word_frequency": 23225 + }, + { + "word": "retort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A sharp, witty, or angry reply.", + "example_sentence_english": "Her quick retort left him speechless.", + "pos": "noun", + "word_frequency": 23226 + }, + { + "word": "revitalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action of imbuing something with new life and vitality.", + "example_sentence_english": "The city planned a major revitalization project for the downtown area.", + "pos": "noun", + "word_frequency": 23227 + }, + { + "word": "saracen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A historical term for an Arab or Muslim.", + "example_sentence_english": "The Crusaders fought against the Saracens in the Holy Land.", + "pos": "noun", + "word_frequency": 23230 + }, + { + "word": "sawmill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A factory where logs are sawn into timber.", + "example_sentence_english": "The old sawmill stood by the river, silent and abandoned.", + "pos": "noun", + "word_frequency": 23231 + }, + { + "word": "shogun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A hereditary commander-in-chief in feudal Japan.", + "example_sentence_english": "The shogun held real power in feudal Japan, not the emperor.", + "pos": "noun", + "word_frequency": 23234 + }, + { + "word": "shoutout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A public expression of thanks or praise.", + "example_sentence_english": "I want to give a shoutout to my team for all their hard work.", + "pos": "noun", + "word_frequency": 23235 + }, + { + "word": "showing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A display, exhibition, or performance.", + "example_sentence_english": "The art gallery is having a showing of new local artists.", + "pos": "noun", + "word_frequency": 23236 + }, + { + "word": "shrinkage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process or amount of shrinking.", + "example_sentence_english": "The company reported significant shrinkage due to theft.", + "pos": "noun", + "word_frequency": 23237 + }, + { + "word": "sleeveless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Without sleeves.", + "example_sentence_english": "She wore a sleeveless dress to the summer party.", + "pos": "adjective", + "word_frequency": 23238 + }, + { + "word": "snowstorm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a severe snowstorm", + "example_sentence_english": "The snowstorm caused widespread power outages.", + "pos": "noun", + "word_frequency": 23240 + }, + { + "word": "socialite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person prominent in fashionable society", + "example_sentence_english": "The socialite was known for her extravagant parties.", + "pos": "noun", + "word_frequency": 23241 + }, + { + "word": "southerly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from the south", + "example_sentence_english": "A strong southerly wind blew across the plains.", + "pos": "adjective", + "word_frequency": 23243 + }, + { + "word": "spectrometer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an instrument used to measure properties of light", + "example_sentence_english": "Scientists used a spectrometer to analyze the chemical composition of the sample.", + "pos": "noun", + "word_frequency": 23244 + }, + { + "word": "squander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to waste something in a reckless and foolish manner", + "example_sentence_english": "Don't squander your opportunities; make the most of them.", + "pos": "verb", + "word_frequency": 23246 + }, + { + "word": "sterilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something free from bacteria or other living microorganisms", + "example_sentence_english": "It's important to sterilize medical instruments before use.", + "pos": "verb", + "word_frequency": 23247 + }, + { + "word": "subspace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a space that is part of a larger space", + "example_sentence_english": "In mathematics, a subspace is a subset of a vector space that is itself a vector space.", + "pos": "noun", + "word_frequency": 23248 + }, + { + "word": "subsurface", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the region immediately beneath the surface of the earth or a body of water", + "example_sentence_english": "Geologists study the subsurface layers of the Earth to understand its structure.", + "pos": "noun", + "word_frequency": 23249 + }, + { + "word": "superstructure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a structure built on top of something else", + "example_sentence_english": "The ship's superstructure housed the bridge and crew quarters.", + "pos": "noun", + "word_frequency": 23250 + }, + { + "word": "sweeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or device that sweeps", + "example_sentence_english": "The street sweeper cleans the roads every morning.", + "pos": "noun", + "word_frequency": 23251 + }, + { + "word": "swish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soft, rustling sound", + "example_sentence_english": "We heard the swish of her long dress as she walked past.", + "pos": "noun", + "word_frequency": 23252 + }, + { + "word": "sympathizer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who supports or approves of someone or something", + "example_sentence_english": "He was accused of being a sympathizer of the rebel cause.", + "pos": "noun", + "word_frequency": 23253 + }, + { + "word": "telephony", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the use or operation of telephones", + "example_sentence_english": "The company specializes in advanced internet telephony solutions.", + "pos": "noun", + "word_frequency": 23255 + }, + { + "word": "thicken", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become thick or thicker", + "example_sentence_english": "You can thicken the sauce by adding a little cornstarch.", + "pos": "verb", + "word_frequency": 23259 + }, + { + "word": "timberwolf", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large North American wolf", + "example_sentence_english": "The timberwolf is a subspecies of the gray wolf found in North America.", + "pos": "noun", + "word_frequency": 23260 + }, + { + "word": "toffee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a hard, chewy candy made by boiling sugar and butter", + "example_sentence_english": "She enjoyed a piece of sticky toffee after dinner.", + "pos": "noun", + "word_frequency": 23262 + }, + { + "word": "tomahawk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of axe used by Native Americans", + "example_sentence_english": "The warrior carried a tomahawk as his primary weapon.", + "pos": "noun", + "word_frequency": 23263 + }, + { + "word": "transactional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving transactions", + "example_sentence_english": "The company focuses on transactional banking services.", + "pos": "adjective", + "word_frequency": 23267 + }, + { + "word": "transcendence", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the state of being or going beyond the limits of ordinary experience", + "example_sentence_english": "Many spiritual traditions seek to achieve a state of transcendence.", + "pos": "noun", + "word_frequency": 23268 + }, + { + "word": "trapping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipment or accessories; the act of catching animals", + "example_sentence_english": "The trappings of wealth include luxury cars and designer clothes.", + "pos": "noun", + "word_frequency": 23269 + }, + { + "word": "triage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of sorting patients to determine priority of medical treatment", + "example_sentence_english": "In the emergency room, nurses perform triage to assess patients' conditions.", + "pos": "noun", + "word_frequency": 23270 + }, + { + "word": "ulterior", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existing beyond what is obvious or admitted; secret", + "example_sentence_english": "He suspected she had an ulterior motive for offering to help.", + "pos": "adjective", + "word_frequency": 23271 + }, + { + "word": "unambiguous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not open to more than one interpretation; clear", + "example_sentence_english": "The instructions were unambiguous, leaving no room for confusion.", + "pos": "adjective", + "word_frequency": 23272 + }, + { + "word": "undulate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to move with a smooth, wavelike motion", + "example_sentence_english": "The fields of wheat undulated in the gentle breeze.", + "pos": "verb", + "word_frequency": 23274 + }, + { + "word": "unfetter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to release from restraints or limitations; to free", + "example_sentence_english": "The new policies aim to unfetter economic growth.", + "pos": "verb", + "word_frequency": 23275 + }, + { + "word": "venison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meat from a deer", + "example_sentence_english": "For dinner, they served roasted venison with berry sauce.", + "pos": "noun", + "word_frequency": 23276 + }, + { + "word": "veranda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a roofed open-air gallery or porch attached to the exterior of a building", + "example_sentence_english": "They sat on the veranda, enjoying the evening breeze.", + "pos": "noun", + "word_frequency": 23277 + }, + { + "word": "whiny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complaining in a high-pitched, irritating voice", + "example_sentence_english": "The child became whiny when he was tired.", + "pos": "adjective", + "word_frequency": 23283 + }, + { + "word": "zine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small, independent magazine or booklet", + "example_sentence_english": "She published her poetry in a small independent zine.", + "pos": "noun", + "word_frequency": 23294 + }, + { + "word": "afterthought", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an idea or thing that is thought of or added later", + "example_sentence_english": "The garden was an afterthought, added only after the house was built.", + "pos": "noun", + "word_frequency": 23297 + }, + { + "word": "airship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a powered aircraft that is lighter than air", + "example_sentence_english": "The old airship slowly floated across the sky.", + "pos": "noun", + "word_frequency": 23299 + }, + { + "word": "amigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friend (Spanish loanword)", + "example_sentence_english": "He greeted his friend with a warm 'Hola, amigo!'", + "pos": "noun", + "word_frequency": 23302 + }, + { + "word": "archetypal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very typical of a certain kind of person or thing", + "example_sentence_english": "He played the archetypal hero, brave and strong.", + "pos": "adjective", + "word_frequency": 23304 + }, + { + "word": "artful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clever or skillful, especially in a cunning or crafty way", + "example_sentence_english": "Her artful design combined traditional and modern elements.", + "pos": "adjective", + "word_frequency": 23305 + }, + { + "word": "ascendancy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a position of dominant power or influence", + "example_sentence_english": "The new party gained ascendancy in the polls.", + "pos": "noun", + "word_frequency": 23306 + }, + { + "word": "assessor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who evaluates or estimates the nature, quality, or ability of someone or something", + "example_sentence_english": "The tax assessor evaluated the property's value.", + "pos": "noun", + "word_frequency": 23308 + }, + { + "word": "asymmetry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lack of equality or equivalence between parts or aspects of something; lack of symmetry", + "example_sentence_english": "The asymmetry of the design made it unique.", + "pos": "noun", + "word_frequency": 23309 + }, + { + "word": "asynchronous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not existing or happening at the same time", + "example_sentence_english": "Online courses often use asynchronous learning methods.", + "pos": "adjective", + "word_frequency": 23310 + }, + { + "word": "attune", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make receptive or aware; to bring into harmony", + "example_sentence_english": "It takes time to attune yourself to a new culture.", + "pos": "verb", + "word_frequency": 23312 + }, + { + "word": "banal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking in originality, freshness, or novelty; commonplace", + "example_sentence_english": "The movie's plot was so banal and predictable.", + "pos": "adjective", + "word_frequency": 23318 + }, + { + "word": "baz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informal short for bazooka", + "example_sentence_english": "He carried a baz, ready for action.", + "pos": "noun", + "word_frequency": 23319 + }, + { + "word": "befit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be suitable for; to suit", + "example_sentence_english": "Such behavior does not befit a leader.", + "pos": "verb", + "word_frequency": 23321 + }, + { + "word": "blackface", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a form of theatrical makeup used by non-black performers to represent a black person", + "example_sentence_english": "The use of blackface in performances is widely considered offensive.", + "pos": "noun", + "word_frequency": 23322 + }, + { + "word": "bluish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhat blue", + "example_sentence_english": "The sky had a bluish tint before the storm.", + "pos": "adjective", + "word_frequency": 23323 + }, + { + "word": "boba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chewy tapioca pearls, often found in bubble tea", + "example_sentence_english": "I love bubble tea with extra boba.", + "pos": "noun", + "word_frequency": 23324 + }, + { + "word": "bombardier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who operates a bomb-aiming device or drops bombs from an aircraft", + "example_sentence_english": "The bombardier released the payload over the target.", + "pos": "noun", + "word_frequency": 23325 + }, + { + "word": "bookkeeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person whose job is to keep records of the financial affairs of a business", + "example_sentence_english": "Our bookkeeper manages all the company's accounts.", + "pos": "noun", + "word_frequency": 23326 + }, + { + "word": "bountiful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large in quantity; abundant", + "example_sentence_english": "The harvest was bountiful this year.", + "pos": "adjective", + "word_frequency": 23327 + }, + { + "word": "brimm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be full to the point of overflowing", + "example_sentence_english": "The cup was brimming with hot coffee.", + "pos": "verb", + "word_frequency": 23328 + }, + { + "word": "bulldozer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a powerful tractor with a broad blade at the front for pushing earth and debris", + "example_sentence_english": "A bulldozer was used to clear the construction site.", + "pos": "noun", + "word_frequency": 23330 + }, + { + "word": "cabernet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a variety of black grape used for making red wine, or the wine itself", + "example_sentence_english": "We ordered a bottle of Cabernet Sauvignon with dinner.", + "pos": "noun", + "word_frequency": 23332 + }, + { + "word": "calico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of plain-woven cotton fabric, or a cat with a mottled coat of black, orange, and white", + "example_sentence_english": "She sewed the quilt from calico fabric.", + "pos": "noun", + "word_frequency": 23333 + }, + { + "word": "capillary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to capillaries (tiny blood vessels or tubes)", + "example_sentence_english": "Capillary action allows water to move up narrow tubes.", + "pos": "adjective", + "word_frequency": 23335 + }, + { + "word": "casanova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a man who is a promiscuous and unscrupulous lover", + "example_sentence_english": "He was known as a real Casanova in his youth.", + "pos": "noun", + "word_frequency": 23336 + }, + { + "word": "categorical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unambiguous; explicit; absolute", + "example_sentence_english": "He issued a categorical denial of the accusations.", + "pos": "adjective", + "word_frequency": 23337 + }, + { + "word": "checkup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a general medical examination", + "example_sentence_english": "I have an annual checkup scheduled for next month.", + "pos": "noun", + "word_frequency": 23340 + }, + { + "word": "chieftain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the leader of a people or clan", + "example_sentence_english": "The chieftain led his tribe into battle.", + "pos": "noun", + "word_frequency": 23341 + }, + { + "word": "cinematographer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who oversees the photography and camera work in filmmaking", + "example_sentence_english": "The cinematographer was praised for the stunning visuals.", + "pos": "noun", + "word_frequency": 23344 + }, + { + "word": "cirrhosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chronic disease of the liver marked by degeneration of cells, inflammation, and fibrous thickening of tissue", + "example_sentence_english": "Alcohol abuse can lead to liver cirrhosis.", + "pos": "noun", + "word_frequency": 23345 + }, + { + "word": "cleat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a projection on the sole of a shoe or boot to provide grip", + "example_sentence_english": "The soccer player's cleats dug into the grass.", + "pos": "noun", + "word_frequency": 23349 + }, + { + "word": "clingy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a tendency to cling to someone or something; excessively dependent", + "example_sentence_english": "The child became very clingy when his mother left.", + "pos": "adjective", + "word_frequency": 23351 + }, + { + "word": "codeine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an opiate used to treat pain, coughing, and diarrhea", + "example_sentence_english": "The doctor prescribed codeine for her cough.", + "pos": "noun", + "word_frequency": 23354 + }, + { + "word": "colitis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflammation of the colon", + "example_sentence_english": "He was diagnosed with ulcerative colitis.", + "pos": "noun", + "word_frequency": 23356 + }, + { + "word": "combative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ready or eager to fight; aggressive", + "example_sentence_english": "The politician became combative during the debate.", + "pos": "adjective", + "word_frequency": 23357 + }, + { + "word": "conceited", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessively proud of oneself; vain", + "example_sentence_english": "His conceited attitude made him unpopular.", + "pos": "adjective", + "word_frequency": 23358 + }, + { + "word": "consecration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of making something sacred", + "example_sentence_english": "The consecration of the new church was a solemn ceremony.", + "pos": "noun", + "word_frequency": 23361 + }, + { + "word": "conspicuously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a clearly visible way", + "example_sentence_english": "He conspicuously avoided eye contact with his boss.", + "pos": "adverb", + "word_frequency": 23362 + }, + { + "word": "counterattack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an attack made in response to an enemy's attack", + "example_sentence_english": "The army launched a swift counterattack against the invaders.", + "pos": "noun", + "word_frequency": 23365 + }, + { + "word": "cuteness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being cute", + "example_sentence_english": "The puppy's cuteness was irresistible.", + "pos": "noun", + "word_frequency": 23370 + }, + { + "word": "darlin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a term of endearment, darling", + "example_sentence_english": "Come here, darlin', and tell me what's wrong.", + "pos": "noun", + "word_frequency": 23371 + }, + { + "word": "defuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a situation less tense or dangerous", + "example_sentence_english": "The diplomat tried to defuse the tense situation.", + "pos": "verb", + "word_frequency": 23376 + }, + { + "word": "dilation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or condition of becoming or being made wider, larger, or more open", + "example_sentence_english": "The doctor checked the dilation of her pupils.", + "pos": "noun", + "word_frequency": 23379 + }, + { + "word": "directorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a director or the work of a director", + "example_sentence_english": "His directorial debut received critical acclaim.", + "pos": "adjective", + "word_frequency": 23381 + }, + { + "word": "dishonor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of shame or disgrace", + "example_sentence_english": "He brought dishonor upon his family by his actions.", + "pos": "noun", + "word_frequency": 23382 + }, + { + "word": "disjointed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking a coherent sequence or connection", + "example_sentence_english": "The speaker's argument was disjointed and hard to follow.", + "pos": "adjective", + "word_frequency": 23383 + }, + { + "word": "disparage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to regard or represent as being of little worth", + "example_sentence_english": "It's wrong to disparage someone's efforts, even if they fail.", + "pos": "verb", + "word_frequency": 23384 + }, + { + "word": "dissenter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who dissents, especially from an established church or political party", + "example_sentence_english": "The government suppressed the voices of political dissenters.", + "pos": "noun", + "word_frequency": 23385 + }, + { + "word": "divest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to strip or deprive (someone or something) of power, rights, or possessions", + "example_sentence_english": "The company decided to divest its holdings in fossil fuels.", + "pos": "verb", + "word_frequency": 23386 + }, + { + "word": "dodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an extinct flightless bird; an old-fashioned or stupid person", + "example_sentence_english": "The dodo bird became extinct centuries ago.", + "pos": "noun", + "word_frequency": 23387 + }, + { + "word": "draconian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessively harsh and severe", + "example_sentence_english": "The new laws were criticized as draconian and unfair.", + "pos": "adjective", + "word_frequency": 23388 + }, + { + "word": "duper", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who deceives or tricks others", + "example_sentence_english": "He was known as a duper, always trying to trick people.", + "pos": "noun", + "word_frequency": 23391 + }, + { + "word": "eerily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a strange and frightening manner", + "example_sentence_english": "The old house was eerily quiet.", + "pos": "adverb", + "word_frequency": 23392 + }, + { + "word": "electrochemical", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to electrochemistry", + "example_sentence_english": "The battery relies on an electrochemical reaction to produce power.", + "pos": "adjective", + "word_frequency": 23394 + }, + { + "word": "emotive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arousing or able to arouse intense feeling", + "example_sentence_english": "The speaker used emotive language to sway the audience.", + "pos": "adjective", + "word_frequency": 23395 + }, + { + "word": "empirically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "by means of observation or experience rather than theory or pure logic", + "example_sentence_english": "The theory was empirically tested through experiments.", + "pos": "adverb", + "word_frequency": 23396 + }, + { + "word": "entanglement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being involved in a complicated or compromising relationship or situation", + "example_sentence_english": "The political entanglement made it difficult to reach a decision.", + "pos": "noun", + "word_frequency": 23397 + }, + { + "word": "expeditionary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an expedition", + "example_sentence_english": "The expeditionary force prepared for their long journey.", + "pos": "adjective", + "word_frequency": 23400 + }, + { + "word": "firstborn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the eldest child", + "example_sentence_english": "Their firstborn son is now in college.", + "pos": "noun", + "word_frequency": 23405 + }, + { + "word": "flowery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of elaborate or ornate expressions", + "example_sentence_english": "His speech was too flowery and difficult to understand.", + "pos": "adjective", + "word_frequency": 23406 + }, + { + "word": "frock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dress or gown", + "example_sentence_english": "She wore a beautiful silk frock to the party.", + "pos": "noun", + "word_frequency": 23408 + }, + { + "word": "glutamate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a salt or ester of glutamic acid", + "example_sentence_english": "Monosodium glutamate is often used as a flavor enhancer.", + "pos": "noun", + "word_frequency": 23412 + }, + { + "word": "goblet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a drinking glass with a foot and a stem", + "example_sentence_english": "He raised his goblet in a toast.", + "pos": "noun", + "word_frequency": 23413 + }, + { + "word": "gyro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Greek dish of meat cooked on a vertical spit", + "example_sentence_english": "I ordered a delicious lamb gyro for lunch.", + "pos": "noun", + "word_frequency": 23418 + }, + { + "word": "handsomely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a generous or ample manner", + "example_sentence_english": "He was handsomely rewarded for his efforts.", + "pos": "adverb", + "word_frequency": 23420 + }, + { + "word": "hapless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unfortunate", + "example_sentence_english": "The hapless victim was caught in the crossfire.", + "pos": "adjective", + "word_frequency": 23421 + }, + { + "word": "hidalgo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a Spanish nobleman of the lower class", + "example_sentence_english": "Don Quixote was a hidalgo who read too many chivalric romances.", + "pos": "noun", + "word_frequency": 23422 + }, + { + "word": "humanistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to humanism or the humanities", + "example_sentence_english": "She has a very humanistic approach to education.", + "pos": "adjective", + "word_frequency": 23423 + }, + { + "word": "iconography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the traditional or conventional images or symbols associated with a subject", + "example_sentence_english": "The iconography of ancient Egypt is rich with symbolism.", + "pos": "noun", + "word_frequency": 23425 + }, + { + "word": "impervious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not allowing fluid to pass through; unable to be affected by", + "example_sentence_english": "He seemed impervious to criticism.", + "pos": "adjective", + "word_frequency": 23427 + }, + { + "word": "implausible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not seeming reasonable or probable", + "example_sentence_english": "Her excuse for being late was completely implausible.", + "pos": "adjective", + "word_frequency": 23428 + }, + { + "word": "imposter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who pretends to be someone else", + "example_sentence_english": "The police arrested the imposter who had been posing as a doctor.", + "pos": "noun", + "word_frequency": 23429 + }, + { + "word": "indeterminate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not exactly known, established, or defined", + "example_sentence_english": "The outcome of the negotiations remains indeterminate.", + "pos": "adjective", + "word_frequency": 23430 + }, + { + "word": "infidel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who does not believe in religion or who adheres to a religion other than one's own", + "example_sentence_english": "In historical texts, the term \"infidel\" was often used to describe non-believers.", + "pos": "noun", + "word_frequency": 23431 + }, + { + "word": "inflection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a change in the form of a word (typically the ending) to express a grammatical function or attribute", + "example_sentence_english": "English verbs have inflections for tense, such as '-ed' for the past tense.", + "pos": "noun", + "word_frequency": 23432 + }, + { + "word": "innocently", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an innocent manner", + "example_sentence_english": "She smiled innocently, pretending she knew nothing about the broken vase.", + "pos": "adverb", + "word_frequency": 23433 + }, + { + "word": "inroad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an advance or intrusion", + "example_sentence_english": "The company is trying to make inroads into the Asian market.", + "pos": "noun", + "word_frequency": 23434 + }, + { + "word": "intractable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hard to control or deal with", + "example_sentence_english": "The problem of poverty remains intractable for many governments.", + "pos": "adjective", + "word_frequency": 23435 + }, + { + "word": "kickboxing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kickboxing", + "example_sentence_english": "She trains in kickboxing three times a week.", + "pos": "noun", + "word_frequency": 23442 + }, + { + "word": "kilt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kilt", + "example_sentence_english": "Many Scottish men wear a kilt for special occasions.", + "pos": "noun", + "word_frequency": 23443 + }, + { + "word": "lifesaver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifesaver (something or someone that helps one in a difficult situation)", + "example_sentence_english": "That extra coffee was a real lifesaver this morning.", + "pos": "noun", + "word_frequency": 23449 + }, + { + "word": "litany", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "litany (a long, tedious list or series)", + "example_sentence_english": "He recited a litany of complaints about the service.", + "pos": "noun", + "word_frequency": 23451 + }, + { + "word": "localised", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "localized (restricted to a particular area)", + "example_sentence_english": "The pain was localised to her lower back.", + "pos": "adjective", + "word_frequency": 23452 + }, + { + "word": "locket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locket (a small ornamental case worn around the neck, holding a picture or lock of hair)", + "example_sentence_english": "She wore a silver locket with a picture of her grandmother inside.", + "pos": "noun", + "word_frequency": 23453 + }, + { + "word": "locomotion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "locomotion (movement or the ability to move from one place to another)", + "example_sentence_english": "The invention of the wheel greatly improved human locomotion.", + "pos": "noun", + "word_frequency": 23454 + }, + { + "word": "mailman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mailman (a person who delivers mail)", + "example_sentence_english": "The mailman delivers letters every weekday.", + "pos": "noun", + "word_frequency": 23462 + }, + { + "word": "marksman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marksman (a person who is skilled in shooting)", + "example_sentence_english": "He was a marksman in the army, rarely missing his target.", + "pos": "noun", + "word_frequency": 23464 + }, + { + "word": "maven", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maven (an expert or connoisseur)", + "example_sentence_english": "She's a real fashion maven, always knowing the latest trends.", + "pos": "noun", + "word_frequency": 23468 + }, + { + "word": "millisecond", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millisecond (one thousandth of a second)", + "example_sentence_english": "The computer processed the data in just a few milliseconds.", + "pos": "noun", + "word_frequency": 23475 + }, + { + "word": "mitten", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mitten (a type of glove that covers the four fingers together and the thumb separately)", + "example_sentence_english": "She wore warm mittens to keep her hands from freezing.", + "pos": "noun", + "word_frequency": 23476 + }, + { + "word": "mourner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who attends a funeral or expresses sorrow for someone's death.", + "example_sentence_english": "The mourners gathered at the graveside, dressed in black.", + "pos": "noun", + "word_frequency": 23480 + }, + { + "word": "nappy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(British English) A baby's diaper; (of hair) tightly curled and frizzy.", + "example_sentence_english": "The baby needs a nappy change.", + "pos": "adjective", + "word_frequency": 23485 + }, + { + "word": "neuter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To castrate or spay (an animal).", + "example_sentence_english": "We decided to neuter our cat to prevent unwanted litters.", + "pos": "verb", + "word_frequency": 23487 + }, + { + "word": "newlywed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who has recently married.", + "example_sentence_english": "The newlyweds left for their honeymoon immediately after the reception.", + "pos": "noun", + "word_frequency": 23488 + }, + { + "word": "opinionated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Characterized by conceited assertiveness and dogmatism.", + "example_sentence_english": "He's very opinionated and always has strong views on everything.", + "pos": "adjective", + "word_frequency": 23498 + }, + { + "word": "originator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who initiates or creates something.", + "example_sentence_english": "She was the originator of the idea for the new project.", + "pos": "noun", + "word_frequency": 23499 + }, + { + "word": "outfitter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or company that sells clothes and equipment for a particular activity.", + "example_sentence_english": "We bought all our camping gear from the local outfitter.", + "pos": "noun", + "word_frequency": 23500 + }, + { + "word": "oxidize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To combine or cause to combine with oxygen.", + "example_sentence_english": "Iron will oxidize and rust if exposed to air and moisture.", + "pos": "verb", + "word_frequency": 23502 + }, + { + "word": "panhandle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A narrow strip of territory projecting from a larger territory.", + "example_sentence_english": "The Florida panhandle extends along the Gulf Coast.", + "pos": "noun", + "word_frequency": 23503 + }, + { + "word": "paradoxical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Seemingly absurd or self-contradictory.", + "example_sentence_english": "It's paradoxical that standing is more tiring than walking.", + "pos": "adjective", + "word_frequency": 23504 + }, + { + "word": "paralyse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To cause (a person or part of the body) to become immobile.", + "example_sentence_english": "The accident left him paralysed from the waist down.", + "pos": "verb", + "word_frequency": 23505 + }, + { + "word": "parch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make or become dry through intense heat.", + "example_sentence_english": "The sun began to parch the land, turning the grass brown.", + "pos": "verb", + "word_frequency": 23506 + }, + { + "word": "passageway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A long, narrow way or passage, especially in a building.", + "example_sentence_english": "We walked down the long passageway to reach the main hall.", + "pos": "noun", + "word_frequency": 23507 + }, + { + "word": "pasty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Resembling paste in consistency or color; (of a person's face) unhealthy pale.", + "example_sentence_english": "After being sick, her face looked pale and pasty.", + "pos": "adjective", + "word_frequency": 23508 + }, + { + "word": "pate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rich, savory paste made from meat, fish, or vegetables.", + "example_sentence_english": "We spread the duck pate on crackers as an appetizer.", + "pos": "noun", + "word_frequency": 23509 + }, + { + "word": "patently", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Clearly; obviously.", + "example_sentence_english": "His excuse was patently false; no one believed him.", + "pos": "adverb", + "word_frequency": 23510 + }, + { + "word": "pesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A sauce of crushed basil leaves, pine nuts, garlic, Parmesan cheese, and olive oil.", + "example_sentence_english": "I made pasta with homemade pesto for dinner.", + "pos": "noun", + "word_frequency": 23512 + }, + { + "word": "polity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A form or process of civil government or constitution.", + "example_sentence_english": "The nation's polity was based on democratic principles.", + "pos": "noun", + "word_frequency": 23516 + }, + { + "word": "porcupine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large rodent with a coat of stiff, sharp quills.", + "example_sentence_english": "Be careful not to get too close to the porcupine; its quills are sharp.", + "pos": "noun", + "word_frequency": 23517 + }, + { + "word": "primacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being first or most important", + "example_sentence_english": "The company aims to maintain its primacy in the market.", + "pos": "noun", + "word_frequency": 23520 + }, + { + "word": "psychosocial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the interrelation of social factors and individual thought and behavior", + "example_sentence_english": "The study examined the psychosocial effects of long-term unemployment.", + "pos": "adjective", + "word_frequency": 23521 + }, + { + "word": "radiological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to radiology or radiation", + "example_sentence_english": "The patient underwent a radiological examination.", + "pos": "adjective", + "word_frequency": 23525 + }, + { + "word": "reagent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance or mixture for use in chemical reactions", + "example_sentence_english": "The chemist added the reagent to the solution.", + "pos": "noun", + "word_frequency": 23526 + }, + { + "word": "rectory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the house of a rector or parish priest", + "example_sentence_english": "The new priest moved into the rectory last week.", + "pos": "noun", + "word_frequency": 23527 + }, + { + "word": "refractive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving refraction", + "example_sentence_english": "The lens has a high refractive index.", + "pos": "adjective", + "word_frequency": 23528 + }, + { + "word": "refractory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stubborn or unmanageable; resistant to a process or stimulus", + "example_sentence_english": "The refractory patient refused to take his medication.", + "pos": "adjective", + "word_frequency": 23529 + }, + { + "word": "regrettably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that expresses regret or disappointment", + "example_sentence_english": "Regrettably, we have to cancel the event.", + "pos": "adverb", + "word_frequency": 23530 + }, + { + "word": "reintroduce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introduce again", + "example_sentence_english": "They plan to reintroduce wolves into the national park.", + "pos": "verb", + "word_frequency": 23532 + }, + { + "word": "reorganisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of changing the way in which something is organized", + "example_sentence_english": "The company underwent a major reorganisation.", + "pos": "noun", + "word_frequency": 23533 + }, + { + "word": "reprieve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cancellation or postponement of a punishment", + "example_sentence_english": "The prisoner received a last-minute reprieve.", + "pos": "noun", + "word_frequency": 23534 + }, + { + "word": "resupply", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply again", + "example_sentence_english": "The troops needed to resupply their ammunition.", + "pos": "verb", + "word_frequency": 23535 + }, + { + "word": "resurface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "come or bring to the surface again", + "example_sentence_english": "The submarine will resurface in an hour.", + "pos": "verb", + "word_frequency": 23536 + }, + { + "word": "retraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a withdrawal of a statement, accusation, or undertaking", + "example_sentence_english": "The newspaper issued a retraction for the false story.", + "pos": "noun", + "word_frequency": 23537 + }, + { + "word": "riser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that rises; a vertical part of a stair", + "example_sentence_english": "He's an early riser, always up before dawn.", + "pos": "noun", + "word_frequency": 23539 + }, + { + "word": "ruckus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a noisy disturbance or quarrel", + "example_sentence_english": "The children caused quite a ruckus in the classroom.", + "pos": "noun", + "word_frequency": 23540 + }, + { + "word": "salami", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of cured sausage", + "example_sentence_english": "She made a sandwich with salami and cheese.", + "pos": "noun", + "word_frequency": 23544 + }, + { + "word": "shakespearean", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to William Shakespeare or his works", + "example_sentence_english": "The actor delivered a powerful Shakespearean monologue.", + "pos": "adjective", + "word_frequency": 23548 + }, + { + "word": "shopkeeper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who owns or manages a shop", + "example_sentence_english": "The friendly shopkeeper always greeted customers with a smile.", + "pos": "noun", + "word_frequency": 23550 + }, + { + "word": "shortness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality or state of being short", + "example_sentence_english": "He complained of shortness of breath.", + "pos": "noun", + "word_frequency": 23551 + }, + { + "word": "shrill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a voice or sound) high-pitched and piercing", + "example_sentence_english": "A shrill cry echoed through the night.", + "pos": "adjective", + "word_frequency": 23552 + }, + { + "word": "skyrocket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase very rapidly and suddenly", + "example_sentence_english": "The company's profits skyrocketed last quarter.", + "pos": "verb", + "word_frequency": 23553 + }, + { + "word": "soulless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking human qualities or warmth; without a soul", + "example_sentence_english": "He found the modern architecture to be cold and soulless.", + "pos": "adjective", + "word_frequency": 23554 + }, + { + "word": "splitter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that divides a signal or stream into multiple parts", + "example_sentence_english": "We need a cable splitter to connect two TVs.", + "pos": "noun", + "word_frequency": 23555 + }, + { + "word": "stagecoach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large enclosed horse-drawn vehicle formerly used to carry passengers and mail", + "example_sentence_english": "The old stagecoach rattled down the dusty road.", + "pos": "noun", + "word_frequency": 23556 + }, + { + "word": "stork", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large wading bird with long legs and a long bill", + "example_sentence_english": "A stork built its nest on top of the chimney.", + "pos": "noun", + "word_frequency": 23557 + }, + { + "word": "strongman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a man of exceptional physical strength; a political leader who rules with absolute power", + "example_sentence_english": "The strongman lifted the heavy weights with ease.", + "pos": "noun", + "word_frequency": 23558 + }, + { + "word": "swoon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faint from extreme emotion; be overcome with admiration", + "example_sentence_english": "She would swoon every time she saw her favorite pop star.", + "pos": "verb", + "word_frequency": 23561 + }, + { + "word": "tactically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to tactics or strategy", + "example_sentence_english": "The team played tactically, focusing on defense.", + "pos": "adverb", + "word_frequency": 23562 + }, + { + "word": "tartar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard calcified deposit that forms on the teeth; a fierce or intractable person", + "example_sentence_english": "The dentist removed the tartar from his teeth.", + "pos": "noun", + "word_frequency": 23563 + }, + { + "word": "telepathy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the supposed communication of thoughts or ideas by means other than the known senses", + "example_sentence_english": "Some people believe in telepathy, the ability to read minds.", + "pos": "noun", + "word_frequency": 23565 + }, + { + "word": "thane", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a man who held land by military service, ranking between an ordinary freeman and a hereditary noble", + "example_sentence_english": "Macbeth was the Thane of Cawdor.", + "pos": "noun", + "word_frequency": 23567 + }, + { + "word": "thesaurus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a book in which words are grouped according to similarity of meaning", + "example_sentence_english": "I used a thesaurus to find a synonym for 'happy'.", + "pos": "noun", + "word_frequency": 23568 + }, + { + "word": "thorax", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the part of the body of a mammal between the neck and the abdomen", + "example_sentence_english": "The insect's wings are attached to its thorax.", + "pos": "noun", + "word_frequency": 23569 + }, + { + "word": "thruster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small rocket engine used to propel or steer a spacecraft or missile", + "example_sentence_english": "The spacecraft used its thrusters to adjust its orbit.", + "pos": "noun", + "word_frequency": 23570 + }, + { + "word": "tithe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "one tenth of annual produce or earnings, formerly taken as a tax for the support of the church and clergy", + "example_sentence_english": "In ancient times, people paid a tithe to the church.", + "pos": "noun", + "word_frequency": 23572 + }, + { + "word": "unattainable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not able to be achieved or reached", + "example_sentence_english": "His dream of becoming a rock star seemed unattainable.", + "pos": "adjective", + "word_frequency": 23580 + }, + { + "word": "underpinning", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a set of ideas, figures, or devices that provide a basis or foundation for something", + "example_sentence_english": "The theory's underpinning is based on extensive research.", + "pos": "noun", + "word_frequency": 23581 + }, + { + "word": "unexplored", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not investigated or explored", + "example_sentence_english": "There are still many unexplored regions in the Amazon rainforest.", + "pos": "adjective", + "word_frequency": 23582 + }, + { + "word": "unsold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not sold", + "example_sentence_english": "The store had a large quantity of unsold merchandise after the holidays.", + "pos": "adjective", + "word_frequency": 23584 + }, + { + "word": "unsubstantiated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not supported or proven by evidence", + "example_sentence_english": "The claims were unsubstantiated and lacked any factual basis.", + "pos": "adjective", + "word_frequency": 23585 + }, + { + "word": "uptight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiously nervous or tense; stiffly conventional", + "example_sentence_english": "Don't be so uptight; just relax and enjoy the party.", + "pos": "adjective", + "word_frequency": 23586 + }, + { + "word": "virulent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely severe or harmful in its effects; bitterly hostile", + "example_sentence_english": "The disease was caused by a highly virulent strain of bacteria.", + "pos": "adjective", + "word_frequency": 23589 + }, + { + "word": "waterfowl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "birds that live on or near water", + "example_sentence_english": "Many species of waterfowl can be found in this wetland.", + "pos": "noun", + "word_frequency": 23590 + }, + { + "word": "widescreen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a screen or image format wider than it is tall", + "example_sentence_english": "The movie was presented in widescreen format.", + "pos": "noun", + "word_frequency": 23592 + }, + { + "word": "womanhood", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or condition of being a woman", + "example_sentence_english": "She celebrated her journey into womanhood.", + "pos": "noun", + "word_frequency": 23593 + }, + { + "word": "worrisome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing anxiety or concern", + "example_sentence_english": "The rising unemployment rate is a worrisome trend.", + "pos": "adjective", + "word_frequency": 23594 + }, + { + "word": "wort", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a plant, especially a herbaceous one; the liquid extracted from the malt in the brewing process", + "example_sentence_english": "The brewer added hops to the wort before fermentation.", + "pos": "noun", + "word_frequency": 23595 + }, + { + "word": "admissible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Acceptable or valid, especially as evidence in a court of law.", + "example_sentence_english": "The judge ruled that the new evidence was admissible.", + "pos": "adjective", + "word_frequency": 23608 + }, + { + "word": "airlift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An act of transporting supplies or people by aircraft.", + "example_sentence_english": "An emergency airlift brought supplies to the isolated village.", + "pos": "noun", + "word_frequency": 23609 + }, + { + "word": "alluvial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or consisting of alluvium (deposits of clay, silt, sand, and gravel left by flowing water).", + "example_sentence_english": "The river formed rich alluvial plains over centuries.", + "pos": "adjective", + "word_frequency": 23611 + }, + { + "word": "amyloid", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A waxy, translucent, starch-like protein that is deposited in tissues in certain diseases.", + "example_sentence_english": "Abnormal amyloid deposits are a hallmark of Alzheimer's disease.", + "pos": "noun", + "word_frequency": 23613 + }, + { + "word": "apical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or denoting an apex or tip.", + "example_sentence_english": "The plant's apical bud is responsible for its vertical growth.", + "pos": "adjective", + "word_frequency": 23615 + }, + { + "word": "ascendant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person from whom one is descended; an ancestor.", + "example_sentence_english": "He traced his family tree back to his ascendants from the 17th century.", + "pos": "noun", + "word_frequency": 23617 + }, + { + "word": "bimbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An attractive but unintelligent young woman (often derogatory).", + "example_sentence_english": "The character was portrayed as a stereotypical bimbo.", + "pos": "noun", + "word_frequency": 23624 + }, + { + "word": "boarder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who pays for and receives regular meals and lodging at another's house or in a school.", + "example_sentence_english": "The school has many international boarders.", + "pos": "noun", + "word_frequency": 23626 + }, + { + "word": "bongo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A pair of small drums joined together, played with the hands.", + "example_sentence_english": "He played the bongo drums with great rhythm.", + "pos": "noun", + "word_frequency": 23627 + }, + { + "word": "bootstrap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A self-sustaining process that proceeds without external help.", + "example_sentence_english": "The startup managed to bootstrap its operations with minimal funding.", + "pos": "noun", + "word_frequency": 23628 + }, + { + "word": "brisket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Meat cut from the breast of an animal, typically a cow.", + "example_sentence_english": "Smoked brisket is a popular dish in Texas.", + "pos": "noun", + "word_frequency": 23633 + }, + { + "word": "cannonball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A solid metal ball fired from a cannon; or a dive into water where one hugs one's knees to one's chest.", + "example_sentence_english": "The children loved doing a cannonball into the swimming pool.", + "pos": "noun", + "word_frequency": 23639 + }, + { + "word": "cappuccino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a coffee drink", + "example_sentence_english": "I ordered a hot cappuccino with extra foam.", + "pos": "noun", + "word_frequency": 23640 + }, + { + "word": "chirp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make a short, sharp, high-pitched sound", + "example_sentence_english": "The birds began to chirp as the sun rose.", + "pos": "verb", + "word_frequency": 23641 + }, + { + "word": "château", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large French country house or castle", + "example_sentence_english": "They spent their vacation touring an old French château.", + "pos": "noun", + "word_frequency": 23642 + }, + { + "word": "circulatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the circulation of blood", + "example_sentence_english": "The doctor explained the importance of a healthy circulatory system.", + "pos": "adjective", + "word_frequency": 23643 + }, + { + "word": "climactic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forming a climax", + "example_sentence_english": "The climactic scene of the movie was very intense.", + "pos": "adjective", + "word_frequency": 23645 + }, + { + "word": "consign", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to send or deliver", + "example_sentence_english": "He decided to consign his old furniture to an auction house.", + "pos": "verb", + "word_frequency": 23648 + }, + { + "word": "cowgirl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female cowboy", + "example_sentence_english": "The little girl dressed up as a cowgirl for Halloween.", + "pos": "noun", + "word_frequency": 23650 + }, + { + "word": "cowl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a loose hood or draped neckline", + "example_sentence_english": "She pulled the cowl of her cloak over her head to keep warm.", + "pos": "noun", + "word_frequency": 23651 + }, + { + "word": "crepe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin pancake", + "example_sentence_english": "We had sweet crepes with fruit and whipped cream for dessert.", + "pos": "noun", + "word_frequency": 23652 + }, + { + "word": "cypriot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person from Cyprus", + "example_sentence_english": "The Cypriot delegation arrived for the international conference.", + "pos": "noun", + "word_frequency": 23653 + }, + { + "word": "decently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is good or acceptable", + "example_sentence_english": "He behaved decently throughout the difficult situation.", + "pos": "adverb", + "word_frequency": 23656 + }, + { + "word": "decentralization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the transfer of authority from central to local government", + "example_sentence_english": "The company is considering decentralization to improve efficiency.", + "pos": "noun", + "word_frequency": 23657 + }, + { + "word": "decompose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decay or break down", + "example_sentence_english": "Organic matter will decompose over time.", + "pos": "verb", + "word_frequency": 23658 + }, + { + "word": "decorum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "behavior in keeping with good taste and propriety", + "example_sentence_english": "He conducted himself with decorum during the formal dinner.", + "pos": "noun", + "word_frequency": 23659 + }, + { + "word": "deft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skillful and quick in movement", + "example_sentence_english": "The magician performed the trick with a deft hand.", + "pos": "adjective", + "word_frequency": 23661 + }, + { + "word": "detest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dislike intensely", + "example_sentence_english": "I absolutely detest cold weather.", + "pos": "verb", + "word_frequency": 23664 + }, + { + "word": "dislocation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disturbance from a proper place", + "example_sentence_english": "He suffered a shoulder dislocation during the game.", + "pos": "noun", + "word_frequency": 23667 + }, + { + "word": "distinguishable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clear enough to be recognized or identified", + "example_sentence_english": "The two sounds were barely distinguishable from each other.", + "pos": "adjective", + "word_frequency": 23668 + }, + { + "word": "emblematic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving as a symbol of something", + "example_sentence_english": "The eagle is emblematic of freedom.", + "pos": "adjective", + "word_frequency": 23673 + }, + { + "word": "enslavement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being a slave", + "example_sentence_english": "The history of enslavement is a dark chapter for humanity.", + "pos": "noun", + "word_frequency": 23675 + }, + { + "word": "enviable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arousing envy", + "example_sentence_english": "She has an enviable collection of rare books.", + "pos": "adjective", + "word_frequency": 23676 + }, + { + "word": "epithet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an adjective or descriptive phrase expressing a quality", + "example_sentence_english": "He was often called by the epithet 'the Great'.", + "pos": "noun", + "word_frequency": 23678 + }, + { + "word": "firehouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fire station", + "example_sentence_english": "The firefighters returned to the firehouse after the call.", + "pos": "noun", + "word_frequency": 23683 + }, + { + "word": "flail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wave or swing wildly", + "example_sentence_english": "He began to flail his arms to get attention.", + "pos": "verb", + "word_frequency": 23684 + }, + { + "word": "flaky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tending to break into small, thin pieces; unreliable", + "example_sentence_english": "The pastry was deliciously flaky.", + "pos": "adjective", + "word_frequency": 23685 + }, + { + "word": "flotilla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small fleet of ships or boats", + "example_sentence_english": "A flotilla of fishing boats sailed out at dawn.", + "pos": "noun", + "word_frequency": 23687 + }, + { + "word": "followup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an action or thing that continues or completes a previous one", + "example_sentence_english": "We need to do a followup on that meeting.", + "pos": "noun", + "word_frequency": 23688 + }, + { + "word": "foolproof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incapable of failure or misuse", + "example_sentence_english": "The instructions were foolproof, even for a beginner.", + "pos": "adjective", + "word_frequency": 23689 + }, + { + "word": "forgetful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apt to forget", + "example_sentence_english": "He's become very forgetful in his old age.", + "pos": "adjective", + "word_frequency": 23690 + }, + { + "word": "forgettable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily forgotten; not memorable", + "example_sentence_english": "The movie was so forgettable, I can't even remember the plot.", + "pos": "adjective", + "word_frequency": 23691 + }, + { + "word": "forklift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small vehicle with a forked platform at the front that can be raised and lowered for loading, unloading, and moving things", + "example_sentence_english": "The worker used a forklift to move the heavy crates.", + "pos": "noun", + "word_frequency": 23692 + }, + { + "word": "g.i", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "government issue; a US soldier", + "example_sentence_english": "Many G.I.s returned home after the war.", + "pos": "noun", + "word_frequency": 23693 + }, + { + "word": "gallantry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courageous behavior, especially in battle; polite attention or respect given by men to women", + "example_sentence_english": "His gallantry on the battlefield earned him a medal.", + "pos": "noun", + "word_frequency": 23695 + }, + { + "word": "gamut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the complete range or scope of something", + "example_sentence_english": "The play covered the whole gamut of human emotions.", + "pos": "noun", + "word_frequency": 23696 + }, + { + "word": "gash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, deep cut or wound", + "example_sentence_english": "He had a deep gash on his arm from the fall.", + "pos": "noun", + "word_frequency": 23697 + }, + { + "word": "gawker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who stares openly in a stupid or rude manner", + "example_sentence_english": "The gawkers stood around the accident scene.", + "pos": "noun", + "word_frequency": 23698 + }, + { + "word": "gazelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, swift antelope with large eyes", + "example_sentence_english": "A gazelle can run very fast to escape predators.", + "pos": "noun", + "word_frequency": 23699 + }, + { + "word": "genotype", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the genetic constitution of an individual organism", + "example_sentence_english": "The genotype determines the observable characteristics of an organism.", + "pos": "noun", + "word_frequency": 23700 + }, + { + "word": "glisten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shine with a sparkling light", + "example_sentence_english": "The dew drops glistened on the grass in the morning sun.", + "pos": "verb", + "word_frequency": 23704 + }, + { + "word": "glycol", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a type of alcohol, often used as antifreeze", + "example_sentence_english": "Ethylene glycol is a common ingredient in antifreeze.", + "pos": "noun", + "word_frequency": 23705 + }, + { + "word": "gopher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a burrowing rodent native to North and Central America", + "example_sentence_english": "A gopher dug a tunnel under our garden.", + "pos": "noun", + "word_frequency": 23706 + }, + { + "word": "governess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman employed to teach and train the children in a private household", + "example_sentence_english": "The children's governess taught them French and piano.", + "pos": "noun", + "word_frequency": 23707 + }, + { + "word": "gravitate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move toward or be attracted to a place, person, or thing", + "example_sentence_english": "People tend to gravitate towards those with similar interests.", + "pos": "verb", + "word_frequency": 23708 + }, + { + "word": "grinch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose sour, grumpy attitude spoils the pleasure of others", + "example_sentence_english": "Don't be such a Grinch and try to enjoy the party.", + "pos": "noun", + "word_frequency": 23710 + }, + { + "word": "guesthouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a private house offering accommodation to paying guests", + "example_sentence_english": "We stayed in a charming guesthouse near the beach.", + "pos": "noun", + "word_frequency": 23711 + }, + { + "word": "gunfight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fight with guns", + "example_sentence_english": "The old Western movie featured a dramatic gunfight.", + "pos": "noun", + "word_frequency": 23712 + }, + { + "word": "harvester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a machine or person that harvests crops", + "example_sentence_english": "The combine harvester worked tirelessly in the fields.", + "pos": "noun", + "word_frequency": 23715 + }, + { + "word": "heartburn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a form of indigestion felt as a burning sensation in the chest", + "example_sentence_english": "Eating spicy food often gives me heartburn.", + "pos": "noun", + "word_frequency": 23717 + }, + { + "word": "hillbilly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a derogatory term for a person from a rural, mountainous area, especially in the southern US", + "example_sentence_english": "The old man was often stereotyped as a hillbilly because of his accent and rural upbringing.", + "pos": "noun", + "word_frequency": 23721 + }, + { + "word": "homeopathy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of complementary medicine in which ailments are treated by minute doses of natural substances that in larger doses would produce symptoms of the ailment", + "example_sentence_english": "Many people are skeptical about the effectiveness of homeopathy.", + "pos": "noun", + "word_frequency": 23725 + }, + { + "word": "imbecile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stupid person", + "example_sentence_english": "He called me an imbecile for forgetting my keys.", + "pos": "noun", + "word_frequency": 23730 + }, + { + "word": "impersonation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of pretending to be another person for entertainment or fraud", + "example_sentence_english": "His impersonation of the celebrity was spot on.", + "pos": "noun", + "word_frequency": 23731 + }, + { + "word": "intercultural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or involving different cultures", + "example_sentence_english": "The company promotes intercultural understanding among its employees.", + "pos": "adjective", + "word_frequency": 23733 + }, + { + "word": "ischemic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or denoting ischemia (an inadequate blood supply to an organ or part of the body)", + "example_sentence_english": "The patient suffered an ischemic stroke due to a blocked artery.", + "pos": "adjective", + "word_frequency": 23735 + }, + { + "word": "jackal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wild dog-like animal found in Africa and Asia", + "example_sentence_english": "A jackal howled in the distance under the desert moon.", + "pos": "noun", + "word_frequency": 23736 + }, + { + "word": "joystick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a control stick for a video game or aircraft", + "example_sentence_english": "He used the joystick to control the airplane in the flight simulator.", + "pos": "noun", + "word_frequency": 23741 + }, + { + "word": "kamikaze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Japanese aircraft loaded with explosives and making a deliberate suicidal crash on an enemy target", + "example_sentence_english": "During World War II, kamikaze pilots were used by Japan.", + "pos": "noun", + "word_frequency": 23742 + }, + { + "word": "kelp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large brown seaweed that typically has a long, tough stalk and a broad frond, forming large beds in the sea", + "example_sentence_english": "Sea otters often wrap themselves in kelp to avoid drifting away while they sleep.", + "pos": "noun", + "word_frequency": 23745 + }, + { + "word": "kingfisher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, brightly colored bird with a long, sharp beak, typically found near water", + "example_sentence_english": "We spotted a beautiful kingfisher diving for fish in the river.", + "pos": "noun", + "word_frequency": 23747 + }, + { + "word": "lackey", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a servant or follower, especially one who is obsequious or subservient", + "example_sentence_english": "He was tired of being treated like a mere lackey by his boss.", + "pos": "noun", + "word_frequency": 23750 + }, + { + "word": "leek", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a long, white and green vegetable with a mild onion flavor", + "example_sentence_english": "She added chopped leek to the soup for extra flavor.", + "pos": "noun", + "word_frequency": 23752 + }, + { + "word": "lifecycle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the series of changes in the life of an organism or object", + "example_sentence_english": "Understanding the product lifecycle is crucial for business planning.", + "pos": "noun", + "word_frequency": 23755 + }, + { + "word": "linguist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies linguistics or is skilled in foreign languages", + "example_sentence_english": "The linguist analyzed the ancient text to understand its grammar.", + "pos": "noun", + "word_frequency": 23756 + }, + { + "word": "lute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stringed musical instrument", + "example_sentence_english": "The musician played a beautiful melody on the ancient lute.", + "pos": "noun", + "word_frequency": 23761 + }, + { + "word": "macrophage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of white blood cell", + "example_sentence_english": "Macrophages play a crucial role in the immune system by engulfing pathogens.", + "pos": "noun", + "word_frequency": 23764 + }, + { + "word": "merino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of sheep or the fine wool from it", + "example_sentence_english": "She bought a soft sweater made of merino wool.", + "pos": "noun", + "word_frequency": 23776 + }, + { + "word": "metastasis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the spread of cancer cells from the place where they first formed to another part of the body", + "example_sentence_english": "The doctors were concerned about the possibility of metastasis.", + "pos": "noun", + "word_frequency": 23777 + }, + { + "word": "microchip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tiny wafer of semiconductor material used to make an integrated circuit", + "example_sentence_english": "Every modern computer contains numerous microchips.", + "pos": "noun", + "word_frequency": 23778 + }, + { + "word": "mitzvah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a commandment or good deed in Judaism", + "example_sentence_english": "Performing acts of charity is considered a great mitzvah.", + "pos": "noun", + "word_frequency": 23780 + }, + { + "word": "muddle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse or mix up", + "example_sentence_english": "Don't muddle the papers on my desk.", + "pos": "verb", + "word_frequency": 23782 + }, + { + "word": "nautilus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a marine mollusk or a type of submarine", + "example_sentence_english": "The submarine in 'Twenty Thousand Leagues Under the Seas' was called the Nautilus.", + "pos": "noun", + "word_frequency": 23783 + }, + { + "word": "nymph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mythological spirit of nature imagined as a beautiful maiden", + "example_sentence_english": "The ancient Greeks believed that nymphs lived in forests and rivers.", + "pos": "noun", + "word_frequency": 23787 + }, + { + "word": "oceanography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of science dealing with the oceans", + "example_sentence_english": "She decided to pursue a career in oceanography after studying marine life.", + "pos": "noun", + "word_frequency": 23788 + }, + { + "word": "papaya", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tropical fruit with sweet, orange flesh", + "example_sentence_english": "She enjoyed a slice of fresh papaya for breakfast.", + "pos": "noun", + "word_frequency": 23793 + }, + { + "word": "partisanship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prejudice in favor of a particular cause; bias", + "example_sentence_english": "The debate was marred by extreme partisanship from both sides.", + "pos": "noun", + "word_frequency": 23794 + }, + { + "word": "peachy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellent or very good", + "example_sentence_english": "Everything is just peachy, thanks for asking.", + "pos": "adjective", + "word_frequency": 23795 + }, + { + "word": "pearly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling a pearl in color or luster", + "example_sentence_english": "She had a string of pearly white teeth.", + "pos": "adjective", + "word_frequency": 23796 + }, + { + "word": "periscope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an optical instrument used to view objects that are not in the direct line of sight", + "example_sentence_english": "The submarine raised its periscope to scan the surface.", + "pos": "noun", + "word_frequency": 23797 + }, + { + "word": "pernicious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a harmful effect, especially in a gradual or subtle way", + "example_sentence_english": "The pernicious influence of social media can be hard to escape.", + "pos": "adjective", + "word_frequency": 23798 + }, + { + "word": "perversion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the distortion or corruption of something from its original course, meaning, or state", + "example_sentence_english": "He saw the new policy as a perversion of justice.", + "pos": "noun", + "word_frequency": 23799 + }, + { + "word": "phylogenetic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the evolutionary development and diversification of a species or group of organisms", + "example_sentence_english": "Scientists use phylogenetic analysis to understand the relationships between different species.", + "pos": "adjective", + "word_frequency": 23800 + }, + { + "word": "physiotherapy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physical therapy", + "example_sentence_english": "After the accident, she needed physiotherapy to regain strength in her leg.", + "pos": "noun", + "word_frequency": 23801 + }, + { + "word": "pigmentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "natural coloring of animal or plant tissue", + "example_sentence_english": "Skin pigmentation can be affected by sun exposure.", + "pos": "noun", + "word_frequency": 23802 + }, + { + "word": "pizzeria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pizza restaurant", + "example_sentence_english": "We decided to go to the new pizzeria for dinner.", + "pos": "noun", + "word_frequency": 23803 + }, + { + "word": "preamble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an introductory statement", + "example_sentence_english": "The Constitution begins with a preamble outlining its purpose.", + "pos": "noun", + "word_frequency": 23805 + }, + { + "word": "predate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exist or occur at an earlier date than", + "example_sentence_english": "Dinosaurs predated humans by millions of years.", + "pos": "verb", + "word_frequency": 23806 + }, + { + "word": "preoccupation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or condition of being engrossed in something", + "example_sentence_english": "His main preoccupation was his upcoming exams.", + "pos": "noun", + "word_frequency": 23807 + }, + { + "word": "prim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stiffly formal and respectable", + "example_sentence_english": "She was always very prim and proper in her behavior.", + "pos": "adjective", + "word_frequency": 23808 + }, + { + "word": "programmatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or following a program or plan", + "example_sentence_english": "The company adopted a programmatic approach to its marketing strategy.", + "pos": "adjective", + "word_frequency": 23809 + }, + { + "word": "punisher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who inflicts punishment", + "example_sentence_english": "In some stories, the hero acts as a punisher of evil.", + "pos": "noun", + "word_frequency": 23812 + }, + { + "word": "puree", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a smooth, creamy paste made from cooked food", + "example_sentence_english": "She made a delicious apple puree for the baby.", + "pos": "noun", + "word_frequency": 23814 + }, + { + "word": "racketeer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "engage in dishonest and fraudulent business dealings", + "example_sentence_english": "The gang tried to racketeer money from local businesses.", + "pos": "verb", + "word_frequency": 23817 + }, + { + "word": "rattlesnake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a venomous American snake", + "example_sentence_english": "We saw a rattlesnake coiled on the hiking trail.", + "pos": "noun", + "word_frequency": 23820 + }, + { + "word": "realignment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of reorganizing or restructuring", + "example_sentence_english": "The company announced a major realignment of its departments.", + "pos": "noun", + "word_frequency": 23821 + }, + { + "word": "receptacle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a container or device that holds something", + "example_sentence_english": "Please place your trash in the appropriate receptacle.", + "pos": "noun", + "word_frequency": 23822 + }, + { + "word": "regatta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a series of boat races", + "example_sentence_english": "The annual rowing regatta attracts teams from all over the country.", + "pos": "noun", + "word_frequency": 23823 + }, + { + "word": "reshape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shape again or differently", + "example_sentence_english": "The new policy will reshape the future of the industry.", + "pos": "verb", + "word_frequency": 23825 + }, + { + "word": "revitalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imbue with new life and vitality", + "example_sentence_english": "The city plans to revitalize the downtown area with new businesses.", + "pos": "verb", + "word_frequency": 23826 + }, + { + "word": "risotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an Italian dish of rice cooked in broth", + "example_sentence_english": "For dinner, we had a creamy mushroom risotto.", + "pos": "noun", + "word_frequency": 23827 + }, + { + "word": "savagery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being fierce or cruel", + "example_sentence_english": "The film depicted the savagery of war.", + "pos": "noun", + "word_frequency": 23833 + }, + { + "word": "searchable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be searched", + "example_sentence_english": "The new database makes all documents easily searchable.", + "pos": "adjective", + "word_frequency": 23835 + }, + { + "word": "seethe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be filled with intense but unexpressed anger", + "example_sentence_english": "He was seething with rage after the unfair decision.", + "pos": "verb", + "word_frequency": 23836 + }, + { + "word": "shamrock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a three-leaf clover, especially associated with Ireland", + "example_sentence_english": "Many people wear a shamrock on St. Patrick's Day.", + "pos": "noun", + "word_frequency": 23837 + }, + { + "word": "slog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a difficult, tiring effort", + "example_sentence_english": "The last mile of the marathon was a real slog.", + "pos": "noun", + "word_frequency": 23841 + }, + { + "word": "smut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obscene material; dirt", + "example_sentence_english": "The book was criticized for containing too much smut.", + "pos": "noun", + "word_frequency": 23843 + }, + { + "word": "sop", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a concession; a piece of food dipped in liquid", + "example_sentence_english": "The small raise was just a sop to keep the employees from complaining.", + "pos": "noun", + "word_frequency": 23844 + }, + { + "word": "splice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to join or connect", + "example_sentence_english": "They had to splice the two pieces of film together.", + "pos": "verb", + "word_frequency": 23845 + }, + { + "word": "spoonful", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the amount a spoon can hold", + "example_sentence_english": "Add a spoonful of sugar to your tea.", + "pos": "noun", + "word_frequency": 23846 + }, + { + "word": "spousal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a spouse or marriage", + "example_sentence_english": "The couple received spousal support after their divorce.", + "pos": "adjective", + "word_frequency": 23847 + }, + { + "word": "statistician", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert in statistics", + "example_sentence_english": "The statistician analyzed the survey results.", + "pos": "noun", + "word_frequency": 23849 + }, + { + "word": "storefront", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the front part of a store", + "example_sentence_english": "The old storefront was renovated with new windows.", + "pos": "noun", + "word_frequency": 23850 + }, + { + "word": "stubble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short, stiff hairs or stalks", + "example_sentence_english": "He had a five o'clock shadow of stubble on his chin.", + "pos": "noun", + "word_frequency": 23852 + }, + { + "word": "subsystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secondary or subordinate system", + "example_sentence_english": "The computer's cooling system is a crucial subsystem.", + "pos": "noun", + "word_frequency": 23853 + }, + { + "word": "supple", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flexible; bending easily", + "example_sentence_english": "The dancer's body was incredibly supple.", + "pos": "adjective", + "word_frequency": 23854 + }, + { + "word": "tipsy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slightly drunk", + "example_sentence_english": "After two glasses of wine, she started to feel a bit tipsy.", + "pos": "adjective", + "word_frequency": 23860 + }, + { + "word": "tirade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a long, angry speech", + "example_sentence_english": "The manager launched into a tirade about the team's poor performance.", + "pos": "noun", + "word_frequency": 23861 + }, + { + "word": "topaz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a yellow-brown gemstone", + "example_sentence_english": "She wore a necklace with a beautiful blue topaz.", + "pos": "noun", + "word_frequency": 23863 + }, + { + "word": "trickster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who cheats or deceives", + "example_sentence_english": "The fox is often portrayed as a clever trickster in fables.", + "pos": "noun", + "word_frequency": 23865 + }, + { + "word": "trinket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, inexpensive ornament", + "example_sentence_english": "She collected little trinkets from all the places she visited.", + "pos": "noun", + "word_frequency": 23866 + }, + { + "word": "turbocharged", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enhanced by a turbocharger; intensified", + "example_sentence_english": "The new model features a turbocharged engine.", + "pos": "adjective", + "word_frequency": 23869 + }, + { + "word": "turmeric", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a yellow spice", + "example_sentence_english": "Turmeric is often used in Indian cuisine.", + "pos": "noun", + "word_frequency": 23870 + }, + { + "word": "unchallenged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not disputed or questioned", + "example_sentence_english": "His authority remained unchallenged throughout his career.", + "pos": "adjective", + "word_frequency": 23871 + }, + { + "word": "uninteresting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not interesting; dull", + "example_sentence_english": "The lecture was quite uninteresting, and I almost fell asleep.", + "pos": "adjective", + "word_frequency": 23872 + }, + { + "word": "vandalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliberately destroy or damage property", + "example_sentence_english": "Someone tried to vandalize the public park last night.", + "pos": "verb", + "word_frequency": 23873 + }, + { + "word": "veneration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great respect; reverence", + "example_sentence_english": "The ancient texts were held in deep veneration by the scholars.", + "pos": "noun", + "word_frequency": 23874 + }, + { + "word": "vigour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strength, energy, enthusiasm", + "example_sentence_english": "He tackled the project with renewed vigour.", + "pos": "noun", + "word_frequency": 23875 + }, + { + "word": "vitriol", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "cruel and bitter criticism", + "example_sentence_english": "The politician's speech was full of vitriol against his opponents.", + "pos": "noun", + "word_frequency": 23876 + }, + { + "word": "welt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a red, swollen mark on skin; a strip of material", + "example_sentence_english": "The sting left a raised red welt on her arm.", + "pos": "noun", + "word_frequency": 23878 + }, + { + "word": "wheeze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to breathe with a whistling sound", + "example_sentence_english": "He started to wheeze after running up the stairs.", + "pos": "verb", + "word_frequency": 23881 + }, + { + "word": "yaw", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sideways movement of an aircraft or vessel", + "example_sentence_english": "The pilot corrected the aircraft's yaw.", + "pos": "noun", + "word_frequency": 23884 + }, + { + "word": "adaptability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being able to adjust to new conditions", + "example_sentence_english": "Her adaptability made her a valuable team member.", + "pos": "noun", + "word_frequency": 23891 + }, + { + "word": "aggressiveness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being aggressive or hostile", + "example_sentence_english": "His aggressiveness in negotiations helped secure the deal.", + "pos": "noun", + "word_frequency": 23893 + }, + { + "word": "ahold", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a grip or hold (used in \"get ahold of\")", + "example_sentence_english": "I need to get ahold of him urgently.", + "pos": "noun", + "word_frequency": 23894 + }, + { + "word": "allegorical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symbolic; representing something else", + "example_sentence_english": "The story has an allegorical meaning about good versus evil.", + "pos": "adjective", + "word_frequency": 23896 + }, + { + "word": "anode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the positive electrode in an electrolytic cell", + "example_sentence_english": "Electrons flow from the anode to the cathode.", + "pos": "noun", + "word_frequency": 23897 + }, + { + "word": "apparition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ghost or ghostlike image of a person", + "example_sentence_english": "She claimed to have seen an apparition in the old house.", + "pos": "noun", + "word_frequency": 23898 + }, + { + "word": "appetizer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small dish eaten before the main course", + "example_sentence_english": "We ordered spring rolls as an appetizer.", + "pos": "noun", + "word_frequency": 23899 + }, + { + "word": "argon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical element, a noble gas", + "example_sentence_english": "Argon is often used in fluorescent lighting.", + "pos": "noun", + "word_frequency": 23901 + }, + { + "word": "arrowhead", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the pointed tip of an arrow", + "example_sentence_english": "He found an ancient arrowhead near the river.", + "pos": "noun", + "word_frequency": 23902 + }, + { + "word": "astonishing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely surprising or impressive", + "example_sentence_english": "The magician performed an astonishing trick.", + "pos": "adverb", + "word_frequency": 23905 + }, + { + "word": "astonishment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great surprise or amazement", + "example_sentence_english": "He looked at her in astonishment.", + "pos": "noun", + "word_frequency": 23906 + }, + { + "word": "atone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make amends or reparation", + "example_sentence_english": "He tried to atone for his mistakes by helping others.", + "pos": "verb", + "word_frequency": 23907 + }, + { + "word": "backend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of a computer system or application that is not directly accessed by the user", + "example_sentence_english": "The backend processes all the data requests.", + "pos": "noun", + "word_frequency": 23908 + }, + { + "word": "backhand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stroke played with the back of the hand facing the direction of the stroke", + "example_sentence_english": "Her tennis backhand is very powerful.", + "pos": "noun", + "word_frequency": 23909 + }, + { + "word": "bankroll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a supply of money", + "example_sentence_english": "He used his entire bankroll to start the business.", + "pos": "noun", + "word_frequency": 23911 + }, + { + "word": "belittle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone or something seem unimportant", + "example_sentence_english": "Don't belittle her efforts; she worked very hard.", + "pos": "verb", + "word_frequency": 23914 + }, + { + "word": "beryllium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical element, a light metal", + "example_sentence_english": "Beryllium is used in aerospace components.", + "pos": "noun", + "word_frequency": 23915 + }, + { + "word": "betroth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to formally engage to be married", + "example_sentence_english": "They were betrothed at a young age.", + "pos": "verb", + "word_frequency": 23916 + }, + { + "word": "billiard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game played on a table with balls and cues (often plural \"billiards\")", + "example_sentence_english": "He enjoys playing billiards in his free time.", + "pos": "noun", + "word_frequency": 23917 + }, + { + "word": "bloodthirsty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eager to shed blood; cruel", + "example_sentence_english": "The villain in the story was a bloodthirsty tyrant.", + "pos": "adjective", + "word_frequency": 23918 + }, + { + "word": "boisterous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noisy and energetic", + "example_sentence_english": "The boisterous crowd cheered loudly for their team.", + "pos": "adjective", + "word_frequency": 23920 + }, + { + "word": "bootcamp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short, intensive training course", + "example_sentence_english": "She joined a coding bootcamp to learn programming quickly.", + "pos": "noun", + "word_frequency": 23922 + }, + { + "word": "briar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thorny bush or shrub", + "example_sentence_english": "He got tangled in the briar patch while walking through the woods.", + "pos": "noun", + "word_frequency": 23924 + }, + { + "word": "burgh", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a Scottish town or borough", + "example_sentence_english": "Edinburgh is a historic burgh with a rich past.", + "pos": "noun", + "word_frequency": 23927 + }, + { + "word": "cacao", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the beans from which chocolate is made", + "example_sentence_english": "Cacao beans are the main ingredient in chocolate.", + "pos": "noun", + "word_frequency": 23928 + }, + { + "word": "calypso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of West Indian music", + "example_sentence_english": "The band played lively calypso music at the festival.", + "pos": "noun", + "word_frequency": 23930 + }, + { + "word": "capacitance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability of a system to store an electric charge", + "example_sentence_english": "The capacitance of the circuit determines how much charge it can hold.", + "pos": "noun", + "word_frequency": 23931 + }, + { + "word": "caper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a playful leap or a mischievous act", + "example_sentence_english": "The children's caper involved sneaking extra cookies from the jar.", + "pos": "noun", + "word_frequency": 23932 + }, + { + "word": "caprice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sudden and unaccountable change of mood or behavior", + "example_sentence_english": "Her sudden caprice led her to quit her job and travel the world.", + "pos": "noun", + "word_frequency": 23933 + }, + { + "word": "carriageway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of a road intended for vehicles", + "example_sentence_english": "The accident blocked both lanes of the carriageway.", + "pos": "noun", + "word_frequency": 23935 + }, + { + "word": "chagrin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distress or embarrassment at having failed or been humiliated", + "example_sentence_english": "To her chagrin, she realized she had forgotten her lines on stage.", + "pos": "noun", + "word_frequency": 23939 + }, + { + "word": "chock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wedge or block used to prevent movement", + "example_sentence_english": "He placed a chock under the wheel to stop the car from rolling.", + "pos": "noun", + "word_frequency": 23941 + }, + { + "word": "combustible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to catch fire and burn easily", + "example_sentence_english": "Gasoline is a highly combustible liquid.", + "pos": "adjective", + "word_frequency": 23944 + }, + { + "word": "comer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who comes, especially a newcomer", + "example_sentence_english": "The young comer quickly made a name for himself in the industry.", + "pos": "noun", + "word_frequency": 23945 + }, + { + "word": "compositional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the way in which something is put together or arranged", + "example_sentence_english": "The artist paid close attention to the compositional balance of the painting.", + "pos": "adjective", + "word_frequency": 23946 + }, + { + "word": "condenser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for converting gas or vapor into liquid", + "example_sentence_english": "The air conditioner uses a condenser to cool the air.", + "pos": "noun", + "word_frequency": 23947 + }, + { + "word": "conjugate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give the different forms of a verb", + "example_sentence_english": "In Spanish class, we learned how to conjugate regular verbs.", + "pos": "verb", + "word_frequency": 23948 + }, + { + "word": "coptic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the Copts, a Christian group in Egypt", + "example_sentence_english": "The museum displayed ancient Coptic manuscripts.", + "pos": "adjective", + "word_frequency": 23949 + }, + { + "word": "cossack", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of a people of southern Russia and Ukraine, noted for their horsemanship", + "example_sentence_english": "The Cossack cavalry was known for its fierce fighting skills.", + "pos": "noun", + "word_frequency": 23950 + }, + { + "word": "cutaneous", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or affecting the skin", + "example_sentence_english": "The rash caused a severe cutaneous reaction.", + "pos": "adjective", + "word_frequency": 23952 + }, + { + "word": "dahlia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of flowering plant", + "example_sentence_english": "She planted colorful dahlias in her garden.", + "pos": "noun", + "word_frequency": 23955 + }, + { + "word": "dalit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of the lowest caste in India", + "example_sentence_english": "The documentary shed light on the struggles faced by the Dalit community.", + "pos": "noun", + "word_frequency": 23956 + }, + { + "word": "decadence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moral or cultural decline as characterized by excessive indulgence", + "example_sentence_english": "The empire's fall was attributed to its period of decadence.", + "pos": "noun", + "word_frequency": 23958 + }, + { + "word": "decider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a game or match that decides the winner of a series", + "example_sentence_english": "The final game will be the decider for the championship.", + "pos": "noun", + "word_frequency": 23959 + }, + { + "word": "deconstruction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "analysis of a text or concept, often by breaking it down into its components", + "example_sentence_english": "The literary critic applied deconstruction to the classic novel.", + "pos": "noun", + "word_frequency": 23960 + }, + { + "word": "defamatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damaging the good reputation of someone", + "example_sentence_english": "The newspaper article contained several defamatory statements.", + "pos": "adjective", + "word_frequency": 23961 + }, + { + "word": "depravity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moral corruption; wickedness", + "example_sentence_english": "The novel explored the depths of human depravity.", + "pos": "noun", + "word_frequency": 23962 + }, + { + "word": "dishearten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cause someone to lose determination or confidence", + "example_sentence_english": "Don't let one failure dishearten you from pursuing your goals.", + "pos": "verb", + "word_frequency": 23963 + }, + { + "word": "eavesdrop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretly listen to a private conversation", + "example_sentence_english": "It's rude to eavesdrop on other people's conversations.", + "pos": "verb", + "word_frequency": 23966 + }, + { + "word": "ecuadorian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Ecuador or its people", + "example_sentence_english": "She enjoyed the Ecuadorian cuisine.", + "pos": "adjective", + "word_frequency": 23967 + }, + { + "word": "encroachment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrusion on a person's territory, rights, or property", + "example_sentence_english": "The new building represents an encroachment on public land.", + "pos": "noun", + "word_frequency": 23970 + }, + { + "word": "equaliser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a goal or point that makes the scores equal", + "example_sentence_english": "The team scored an equaliser in the final minutes of the game.", + "pos": "noun", + "word_frequency": 23971 + }, + { + "word": "fell", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "past tense of fall; to cut down (a tree)", + "example_sentence_english": "He fell off his bike and scraped his knee.", + "pos": "verb", + "word_frequency": 23979 + }, + { + "word": "fentanyl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a powerful synthetic opioid", + "example_sentence_english": "Fentanyl is a highly potent pain medication.", + "pos": "noun", + "word_frequency": 23980 + }, + { + "word": "fertiliser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chemical or natural substance added to soil to increase its fertility", + "example_sentence_english": "Farmers use fertiliser to improve crop yields.", + "pos": "noun", + "word_frequency": 23982 + }, + { + "word": "finalise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complete (a process or arrangement); bring to an end", + "example_sentence_english": "We need to finalise the details of the contract by tomorrow.", + "pos": "verb", + "word_frequency": 23983 + }, + { + "word": "fintech", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "technology that seeks to improve and automate the delivery and use of financial services", + "example_sentence_english": "The fintech industry is rapidly transforming banking.", + "pos": "noun", + "word_frequency": 23985 + }, + { + "word": "garda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the national police force of the Republic of Ireland", + "example_sentence_english": "The Garda are investigating the incident.", + "pos": "noun", + "word_frequency": 23987 + }, + { + "word": "geezer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an old man (often used informally or disparagingly)", + "example_sentence_english": "The old geezer was telling stories about his youth.", + "pos": "noun", + "word_frequency": 23990 + }, + { + "word": "glassware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "articles made of glass", + "example_sentence_english": "Be careful when washing the delicate glassware.", + "pos": "noun", + "word_frequency": 23995 + }, + { + "word": "gooey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soft and sticky", + "example_sentence_english": "The melted cheese was deliciously gooey.", + "pos": "adjective", + "word_frequency": 23998 + }, + { + "word": "harlequin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a comic character in traditional pantomime, typically masked and dressed in a diamond-patterned costume", + "example_sentence_english": "The harlequin entertained the audience with his acrobatic tricks.", + "pos": "noun", + "word_frequency": 24000 + }, + { + "word": "hdtv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "High-Definition Television", + "example_sentence_english": "We bought a new HDTV for the living room.", + "pos": "noun", + "word_frequency": 24004 + }, + { + "word": "headgear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something worn on the head", + "example_sentence_english": "The construction worker wore protective headgear.", + "pos": "noun", + "word_frequency": 24005 + }, + { + "word": "hemlock", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a highly poisonous plant or a type of evergreen tree", + "example_sentence_english": "Socrates was condemned to drink hemlock.", + "pos": "noun", + "word_frequency": 24007 + }, + { + "word": "honduran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Honduras or its people", + "example_sentence_english": "She enjoyed the Honduran coffee.", + "pos": "adjective", + "word_frequency": 24012 + }, + { + "word": "hydrolysis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the chemical breakdown of a compound due to reaction with water", + "example_sentence_english": "The enzyme catalyzes the hydrolysis of starch.", + "pos": "noun", + "word_frequency": 24013 + }, + { + "word": "hydropower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electricity generated by the force of moving water", + "example_sentence_english": "Many countries rely on hydropower for their energy needs.", + "pos": "noun", + "word_frequency": 24014 + }, + { + "word": "hyperactivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of being abnormally or unusually active", + "example_sentence_english": "The child's hyperactivity made it difficult for him to sit still.", + "pos": "noun", + "word_frequency": 24016 + }, + { + "word": "illiteracy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the inability to read or write", + "example_sentence_english": "The government launched a campaign to combat illiteracy.", + "pos": "noun", + "word_frequency": 24019 + }, + { + "word": "incitement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of provoking unlawful behavior or exciting a strong emotion", + "example_sentence_english": "The speech was criticized for its incitement to violence.", + "pos": "noun", + "word_frequency": 24021 + }, + { + "word": "inconsequential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not important or significant", + "example_sentence_english": "His remarks were inconsequential to the main discussion.", + "pos": "adjective", + "word_frequency": 24022 + }, + { + "word": "indignant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing anger or annoyance at what is perceived as unfair treatment", + "example_sentence_english": "She was indignant at the unfair accusation.", + "pos": "adjective", + "word_frequency": 24023 + }, + { + "word": "infamy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being well known for some bad quality or deed", + "example_sentence_english": "The attack was a day that would live in infamy.", + "pos": "noun", + "word_frequency": 24024 + }, + { + "word": "infertile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to produce offspring or unable to support abundant plant growth", + "example_sentence_english": "The infertile soil yielded no crops.", + "pos": "adjective", + "word_frequency": 24025 + }, + { + "word": "injector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for injecting a fluid", + "example_sentence_english": "The mechanic replaced the faulty fuel injector.", + "pos": "noun", + "word_frequency": 24026 + }, + { + "word": "insolvent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to pay debts owed", + "example_sentence_english": "The company was declared insolvent and had to close down.", + "pos": "adjective", + "word_frequency": 24028 + }, + { + "word": "intergalactic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "between galaxies", + "example_sentence_english": "Scientists are studying intergalactic dust clouds.", + "pos": "adjective", + "word_frequency": 24029 + }, + { + "word": "internalize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make (attitudes or behavior) part of one's nature by learning or unconscious assimilation", + "example_sentence_english": "It takes time to internalize new concepts.", + "pos": "verb", + "word_frequency": 24030 + }, + { + "word": "iterative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving iteration, especially of a procedure or process", + "example_sentence_english": "The design process was iterative, with many cycles of feedback and refinement.", + "pos": "adjective", + "word_frequency": 24032 + }, + { + "word": "jot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to write something quickly", + "example_sentence_english": "I'll just jot down a few notes.", + "pos": "verb", + "word_frequency": 24035 + }, + { + "word": "legume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant in the pea family; a pod or seed of such a plant", + "example_sentence_english": "Beans and lentils are types of legumes.", + "pos": "noun", + "word_frequency": 24043 + }, + { + "word": "libre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "free (as in freedom, not cost)", + "example_sentence_english": "The project promotes libre software, emphasizing user freedom.", + "pos": "adjective", + "word_frequency": 24047 + }, + { + "word": "lighthearted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefree; cheerful; not serious", + "example_sentence_english": "She had a lighthearted approach to life, always finding joy.", + "pos": "adjective", + "word_frequency": 24048 + }, + { + "word": "lookup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of looking up information; a reference", + "example_sentence_english": "The database provides a quick lookup for customer details.", + "pos": "noun", + "word_frequency": 24052 + }, + { + "word": "lupin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant of the pea family, or a character name", + "example_sentence_english": "The garden was full of colorful lupin flowers.", + "pos": "noun", + "word_frequency": 24054 + }, + { + "word": "meagre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking in quantity or quality; meager", + "example_sentence_english": "They survived on a meagre diet during the famine.", + "pos": "adjective", + "word_frequency": 24059 + }, + { + "word": "meditative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of, involving, or absorbed in meditation or deep thought", + "example_sentence_english": "He spent hours in a quiet, meditative state.", + "pos": "adjective", + "word_frequency": 24060 + }, + { + "word": "middleman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who acts as an intermediary between two parties", + "example_sentence_english": "We cut out the middleman to reduce costs.", + "pos": "noun", + "word_frequency": 24064 + }, + { + "word": "mildew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of fungus that grows on surfaces in damp conditions", + "example_sentence_english": "There was mildew growing on the shower curtain.", + "pos": "noun", + "word_frequency": 24065 + }, + { + "word": "mindedness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or state of having a particular kind of mind or mental attitude", + "example_sentence_english": "His open-mindedness allowed him to consider new ideas.", + "pos": "noun", + "word_frequency": 24066 + }, + { + "word": "mufti", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a Muslim legal expert empowered to give rulings on religious law; civilian clothes", + "example_sentence_english": "The soldiers were allowed to wear mufti on their day off.", + "pos": "noun", + "word_frequency": 24070 + }, + { + "word": "multivariate", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "involving or depending on multiple variables", + "example_sentence_english": "The study used multivariate analysis to examine the complex data.", + "pos": "adjective", + "word_frequency": 24073 + }, + { + "word": "nadir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the lowest point; the point opposite the zenith", + "example_sentence_english": "His career reached its nadir after the scandal.", + "pos": "noun", + "word_frequency": 24075 + }, + { + "word": "notepad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pad of paper for writing notes; a simple text editor", + "example_sentence_english": "I always carry a small notepad and pen with me.", + "pos": "noun", + "word_frequency": 24079 + }, + { + "word": "nutcracker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A tool for cracking nuts.", + "example_sentence_english": "My grandmother uses an old wooden nutcracker to open walnuts.", + "pos": "noun", + "word_frequency": 24080 + }, + { + "word": "outboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Situated on the outside of a boat or vehicle.", + "example_sentence_english": "The small fishing boat was powered by an outboard motor.", + "pos": "adjective", + "word_frequency": 24086 + }, + { + "word": "outlier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person or thing differing from all other members of a particular group or set.", + "example_sentence_english": "In the data set, that particular value was a clear outlier.", + "pos": "noun", + "word_frequency": 24087 + }, + { + "word": "paltry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Small or meager.", + "example_sentence_english": "He received a paltry sum for his hard work.", + "pos": "adjective", + "word_frequency": 24089 + }, + { + "word": "pentecostal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or denoting any of a number of Christian movements that emphasize direct personal experience of God.", + "example_sentence_english": "She attends a Pentecostal church every Sunday.", + "pos": "adjective", + "word_frequency": 24090 + }, + { + "word": "petitioner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who makes a formal application to a court or other body.", + "example_sentence_english": "The petitioner presented their case to the judge.", + "pos": "noun", + "word_frequency": 24091 + }, + { + "word": "pharisee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A member of an ancient Jewish sect, distinguished by strict observance of the traditional and written law.", + "example_sentence_english": "In the Bible, Jesus often criticized the hypocrisy of the Pharisees.", + "pos": "noun", + "word_frequency": 24092 + }, + { + "word": "pinkie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The little finger.", + "example_sentence_english": "He held up his pinkie to make a pinkie promise.", + "pos": "noun", + "word_frequency": 24093 + }, + { + "word": "placer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A deposit of sand or gravel in the bed of a river or lake, containing particles of valuable minerals.", + "example_sentence_english": "Gold was discovered in the placer deposits along the river.", + "pos": "noun", + "word_frequency": 24094 + }, + { + "word": "precocious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having developed certain abilities or proclivities at an earlier age than usual.", + "example_sentence_english": "The precocious child started reading at the age of three.", + "pos": "adjective", + "word_frequency": 24096 + }, + { + "word": "preconceive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Form (an idea or opinion) in advance.", + "example_sentence_english": "It's important not to preconceive notions about people before you meet them.", + "pos": "verb", + "word_frequency": 24097 + }, + { + "word": "presumptuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(Of a person or their behavior) failing to observe the limits of what is permitted or appropriate.", + "example_sentence_english": "It would be presumptuous of me to assume I know what you're thinking.", + "pos": "adjective", + "word_frequency": 24098 + }, + { + "word": "probabilistic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Relating to or involving probability.", + "example_sentence_english": "The weather forecast uses a probabilistic model to predict rain.", + "pos": "adjective", + "word_frequency": 24099 + }, + { + "word": "purview", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The scope of the influence or concerns of something.", + "example_sentence_english": "This matter falls outside the purview of my department.", + "pos": "noun", + "word_frequency": 24103 + }, + { + "word": "quicken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Make or become quicker.", + "example_sentence_english": "The pace of the music began to quicken.", + "pos": "verb", + "word_frequency": 24105 + }, + { + "word": "quicksilver", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The metallic element mercury; something that moves or changes very quickly.", + "example_sentence_english": "His mood was as changeable as quicksilver.", + "pos": "noun", + "word_frequency": 24106 + }, + { + "word": "quince", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A hard, aromatic fruit resembling a large yellow apple.", + "example_sentence_english": "She made a delicious jam from the quinces in her garden.", + "pos": "noun", + "word_frequency": 24107 + }, + { + "word": "racehorse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A horse bred and trained for racing.", + "example_sentence_english": "The racehorse galloped towards the finish line.", + "pos": "noun", + "word_frequency": 24108 + }, + { + "word": "ravioli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Small pasta envelopes containing minced meat, cheese, or vegetables.", + "example_sentence_english": "For dinner, we had ravioli with tomato sauce.", + "pos": "noun", + "word_frequency": 24110 + }, + { + "word": "revolutionize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Change (something) fundamentally and dramatically.", + "example_sentence_english": "The internet has revolutionized the way we communicate.", + "pos": "verb", + "word_frequency": 24114 + }, + { + "word": "salvo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a simultaneous discharge of artillery or other guns", + "example_sentence_english": "The ship fired a salvo of missiles at the target.", + "pos": "noun", + "word_frequency": 24120 + }, + { + "word": "shriek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to utter a high-pitched scream", + "example_sentence_english": "She let out a shriek of terror when she saw the spider.", + "pos": "verb", + "word_frequency": 24125 + }, + { + "word": "spatula", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a utensil with a broad, flat, flexible blade", + "example_sentence_english": "Use a spatula to flip the pancakes.", + "pos": "noun", + "word_frequency": 24130 + }, + { + "word": "squatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who unlawfully occupies an uninhabited building or unused land", + "example_sentence_english": "The police evicted the squatters from the abandoned building.", + "pos": "noun", + "word_frequency": 24131 + }, + { + "word": "stepdad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a stepfather", + "example_sentence_english": "My stepdad taught me how to ride a bike.", + "pos": "noun", + "word_frequency": 24132 + }, + { + "word": "tapa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small Spanish savory dish, typically eaten as a snack with drinks", + "example_sentence_english": "We ordered several different tapas to share.", + "pos": "noun", + "word_frequency": 24137 + }, + { + "word": "tenement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large building divided into separate apartments or flats", + "example_sentence_english": "Many immigrants lived in crowded tenements in the city.", + "pos": "noun", + "word_frequency": 24138 + }, + { + "word": "tetanus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a serious bacterial disease causing muscle spasms", + "example_sentence_english": "He received a tetanus shot after stepping on a rusty nail.", + "pos": "noun", + "word_frequency": 24139 + }, + { + "word": "thatch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cover (a roof or a building) with straw or similar material", + "example_sentence_english": "They decided to thatch the roof of their new cottage.", + "pos": "verb", + "word_frequency": 24140 + }, + { + "word": "thrifty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "using money and other resources carefully and not wastefully", + "example_sentence_english": "She is very thrifty and always looks for bargains.", + "pos": "adjective", + "word_frequency": 24142 + }, + { + "word": "thrombosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "local coagulation or clotting of the blood in a part of the circulatory system", + "example_sentence_english": "Deep vein thrombosis is a serious condition.", + "pos": "noun", + "word_frequency": 24143 + }, + { + "word": "thunderbird", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mythical bird of Native American culture", + "example_sentence_english": "The thunderbird is a powerful symbol in some indigenous cultures.", + "pos": "noun", + "word_frequency": 24144 + }, + { + "word": "townsperson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an inhabitant of a town", + "example_sentence_english": "The townspeople gathered in the square for the festival.", + "pos": "noun", + "word_frequency": 24146 + }, + { + "word": "trippy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resembling or characteristic of a hallucinatory experience", + "example_sentence_english": "The movie had some really trippy visual effects.", + "pos": "adjective", + "word_frequency": 24149 + }, + { + "word": "tryout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a test of the ability of a person or thing", + "example_sentence_english": "She went to the tryouts for the school play.", + "pos": "noun", + "word_frequency": 24150 + }, + { + "word": "tyrosine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a nonessential amino acid", + "example_sentence_english": "Tyrosine is an important amino acid in the human body.", + "pos": "noun", + "word_frequency": 24153 + }, + { + "word": "unbridled", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uncontrolled; unconstrained", + "example_sentence_english": "His unbridled enthusiasm was infectious.", + "pos": "adjective", + "word_frequency": 24154 + }, + { + "word": "undersea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing, occurring, or used under the surface of the sea", + "example_sentence_english": "They explored the undersea world with scuba gear.", + "pos": "adjective", + "word_frequency": 24155 + }, + { + "word": "unfiltered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having been filtered", + "example_sentence_english": "She gave her unfiltered opinion on the matter.", + "pos": "adjective", + "word_frequency": 24156 + }, + { + "word": "unicode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an international encoding standard for use with different languages and scripts", + "example_sentence_english": "Unicode allows computers to represent text from almost all writing systems.", + "pos": "noun", + "word_frequency": 24157 + }, + { + "word": "unopposed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not opposed or resisted", + "example_sentence_english": "The candidate ran unopposed in the election.", + "pos": "adjective", + "word_frequency": 24158 + }, + { + "word": "vamp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The upper front part of a boot or shoe.", + "example_sentence_english": "The cobbler replaced the worn vamp of the old shoe.", + "pos": "noun", + "word_frequency": 24160 + }, + { + "word": "wanton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Deliberate and unprovoked; sexually immodest.", + "example_sentence_english": "The wanton destruction of property was condemned by the community.", + "pos": "adjective", + "word_frequency": 24161 + }, + { + "word": "wedlock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state of being married; matrimony.", + "example_sentence_english": "They lived together for years before finally entering into wedlock.", + "pos": "noun", + "word_frequency": 24162 + }, + { + "word": "welterweight", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A weight class in boxing and other combat sports.", + "example_sentence_english": "The boxer moved up to the welterweight division for his next fight.", + "pos": "noun", + "word_frequency": 24163 + }, + { + "word": "whiteboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A glossy white surface for writing on with marker pens.", + "example_sentence_english": "Please write your ideas on the whiteboard.", + "pos": "noun", + "word_frequency": 24164 + }, + { + "word": "wry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Using or expressing dry, especially mocking, humor; slightly distorted.", + "example_sentence_english": "He gave a wry smile, acknowledging the irony of the situation.", + "pos": "adjective", + "word_frequency": 24166 + }, + { + "word": "zambian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to Zambia or its people.", + "example_sentence_english": "She met a Zambian student at the conference.", + "pos": "adjective", + "word_frequency": 24173 + }, + { + "word": "zimbabwean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Relating to Zimbabwe or its people.", + "example_sentence_english": "The Zimbabwean team played well in the tournament.", + "pos": "adjective", + "word_frequency": 24175 + }, + { + "word": "abominable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Causing moral revulsion; very bad.", + "example_sentence_english": "The weather was abominable, with heavy rain and strong winds.", + "pos": "adjective", + "word_frequency": 24178 + }, + { + "word": "absolution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Formal release from guilt, obligation, or punishment.", + "example_sentence_english": "The priest granted him absolution for his sins.", + "pos": "noun", + "word_frequency": 24179 + }, + { + "word": "adequacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state or quality of being adequate; sufficiency.", + "example_sentence_english": "They questioned the adequacy of the safety measures.", + "pos": "noun", + "word_frequency": 24180 + }, + { + "word": "adopter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or organization that adopts something or someone.", + "example_sentence_english": "The new technology found many early adopters.", + "pos": "noun", + "word_frequency": 24181 + }, + { + "word": "airplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The broadcasting of a recording on radio or television.", + "example_sentence_english": "The new song received a lot of airplay on pop radio stations.", + "pos": "noun", + "word_frequency": 24184 + }, + { + "word": "amalgam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A mixture or blend.", + "example_sentence_english": "The band's music was an amalgam of jazz, rock, and blues.", + "pos": "noun", + "word_frequency": 24186 + }, + { + "word": "ambulatory", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Relating to or adapted for walking; able to walk.", + "example_sentence_english": "The patient was ambulatory after the surgery.", + "pos": "adjective", + "word_frequency": 24187 + }, + { + "word": "annulment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act of annulling something; invalidation.", + "example_sentence_english": "The couple sought an annulment of their marriage.", + "pos": "noun", + "word_frequency": 24188 + }, + { + "word": "aramaic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to Aramaic, a Semitic language.", + "example_sentence_english": "Some parts of the Bible were originally written in Aramaic.", + "pos": "adjective", + "word_frequency": 24190 + }, + { + "word": "atoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A ring-shaped coral reef or island.", + "example_sentence_english": "The small boat sailed into the lagoon of the atoll.", + "pos": "noun", + "word_frequency": 24196 + }, + { + "word": "babble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To talk rapidly and unintelligibly; to make a continuous murmuring sound.", + "example_sentence_english": "The baby began to babble happily in its crib.", + "pos": "verb", + "word_frequency": 24198 + }, + { + "word": "barrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neighborhood (often referring to a Spanish-speaking one)", + "example_sentence_english": "We walked through the lively barrio, enjoying the music and food.", + "pos": "noun", + "word_frequency": 24200 + }, + { + "word": "benzene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a colorless, volatile, flammable liquid hydrocarbon", + "example_sentence_english": "Benzene is a known carcinogen.", + "pos": "noun", + "word_frequency": 24202 + }, + { + "word": "biennale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large art exhibition or festival held every two years", + "example_sentence_english": "The Venice Biennale is a renowned international art exhibition.", + "pos": "noun", + "word_frequency": 24205 + }, + { + "word": "blackish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "somewhat black; tending to black", + "example_sentence_english": "The sky had a blackish hue before the storm.", + "pos": "adjective", + "word_frequency": 24207 + }, + { + "word": "blemish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small mark or flaw that spoils the appearance of something", + "example_sentence_english": "The antique table had a few minor blemishes.", + "pos": "noun", + "word_frequency": 24209 + }, + { + "word": "brevity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concise and exact use of words in writing or speech", + "example_sentence_english": "The brevity of his speech was appreciated by the audience.", + "pos": "noun", + "word_frequency": 24210 + }, + { + "word": "broadside", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong verbal attack; or, the simultaneous firing of all guns from one side of a warship", + "example_sentence_english": "The politician delivered a broadside against his opponent.", + "pos": "noun", + "word_frequency": 24211 + }, + { + "word": "burdensome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difficult to carry out or fulfill; oppressive", + "example_sentence_english": "The new regulations proved to be quite burdensome for small businesses.", + "pos": "adjective", + "word_frequency": 24213 + }, + { + "word": "burley", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a light-colored, air-cured tobacco", + "example_sentence_english": "Burley tobacco is commonly used in cigarette blends.", + "pos": "noun", + "word_frequency": 24214 + }, + { + "word": "cadmium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soft, silvery-white metallic chemical element", + "example_sentence_english": "Cadmium is used in batteries and pigments.", + "pos": "noun", + "word_frequency": 24215 + }, + { + "word": "candida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a genus of yeasts, some species of which can cause infections in humans", + "example_sentence_english": "Candida albicans is a common cause of yeast infections.", + "pos": "noun", + "word_frequency": 24217 + }, + { + "word": "carnivorous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of an animal) feeding on other animals", + "example_sentence_english": "Lions are carnivorous animals.", + "pos": "adjective", + "word_frequency": 24218 + }, + { + "word": "chimera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thing that is hoped or wished for but in fact is illusory or impossible to achieve", + "example_sentence_english": "The idea of a perfect society is often considered a chimera.", + "pos": "noun", + "word_frequency": 24222 + }, + { + "word": "chiropractor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a practitioner of chiropractic", + "example_sentence_english": "I visited a chiropractor for my back pain.", + "pos": "noun", + "word_frequency": 24223 + }, + { + "word": "chromosomal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or consisting of chromosomes", + "example_sentence_english": "Genetic disorders can be caused by chromosomal abnormalities.", + "pos": "adjective", + "word_frequency": 24225 + }, + { + "word": "cig", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cigarette", + "example_sentence_english": "He lit a cig after dinner.", + "pos": "noun", + "word_frequency": 24227 + }, + { + "word": "claustrophobic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person) suffering from claustrophobia; (of a place) inducing claustrophobia", + "example_sentence_english": "The small, windowless room felt very claustrophobic.", + "pos": "adjective", + "word_frequency": 24228 + }, + { + "word": "cleave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "split or sever (something), especially along a natural line or grain", + "example_sentence_english": "The axe was used to cleave the log in two.", + "pos": "verb", + "word_frequency": 24229 + }, + { + "word": "conformation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the shape or structure of something, especially an animal", + "example_sentence_english": "The horse's conformation was excellent for racing.", + "pos": "noun", + "word_frequency": 24233 + }, + { + "word": "cotta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baked clay, especially as used for pottery or building materials (often in 'terracotta')", + "example_sentence_english": "The garden pot was made of terracotta.", + "pos": "noun", + "word_frequency": 24234 + }, + { + "word": "councilor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a council", + "example_sentence_english": "The city councilor addressed the concerns of the residents.", + "pos": "noun", + "word_frequency": 24235 + }, + { + "word": "counterterrorism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "political or military activities designed to prevent or thwart terrorism", + "example_sentence_english": "The government has implemented new counterterrorism measures.", + "pos": "noun", + "word_frequency": 24236 + }, + { + "word": "crayfish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a freshwater crustacean resembling a small lobster", + "example_sentence_english": "We caught some crayfish in the river.", + "pos": "noun", + "word_frequency": 24239 + }, + { + "word": "defraud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to illegally obtain money from someone by deception", + "example_sentence_english": "He was accused of trying to defraud the insurance company.", + "pos": "verb", + "word_frequency": 24244 + }, + { + "word": "desertion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of abandoning a person or cause", + "example_sentence_english": "The soldier was charged with desertion.", + "pos": "noun", + "word_frequency": 24245 + }, + { + "word": "dike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long wall or embankment built to prevent flooding from the sea or a river", + "example_sentence_english": "The engineers worked to strengthen the dike before the storm hit.", + "pos": "noun", + "word_frequency": 24247 + }, + { + "word": "dispensation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemption from a rule or usual requirement", + "example_sentence_english": "The church granted a special dispensation for the marriage.", + "pos": "noun", + "word_frequency": 24248 + }, + { + "word": "dunning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making persistent demands for payment of a debt", + "example_sentence_english": "The company initiated a dunning process for overdue accounts.", + "pos": "noun", + "word_frequency": 24252 + }, + { + "word": "eave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a roof that meets or overhangs the walls of a building", + "example_sentence_english": "Birds often build nests under the eaves of the house.", + "pos": "noun", + "word_frequency": 24253 + }, + { + "word": "embolden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give someone the courage or confidence to do something", + "example_sentence_english": "His success emboldened him to take on new challenges.", + "pos": "verb", + "word_frequency": 24256 + }, + { + "word": "euphoric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling intense excitement and happiness", + "example_sentence_english": "She felt euphoric after winning the championship.", + "pos": "adjective", + "word_frequency": 24260 + }, + { + "word": "evangelism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the zealous advocacy of a cause, especially Christianity", + "example_sentence_english": "His passion for the product bordered on evangelism.", + "pos": "noun", + "word_frequency": 24261 + }, + { + "word": "exploitative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making use of a situation or treating others unfairly in order to benefit from their work", + "example_sentence_english": "The company was criticized for its exploitative labor practices.", + "pos": "adjective", + "word_frequency": 24263 + }, + { + "word": "flog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beat (someone) with a whip or stick as punishment", + "example_sentence_english": "Historically, sailors could be flogged for insubordination.", + "pos": "verb", + "word_frequency": 24267 + }, + { + "word": "freshen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become fresh", + "example_sentence_english": "She opened the window to freshen the air in the room.", + "pos": "verb", + "word_frequency": 24269 + }, + { + "word": "frostbite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injury to body tissues caused by exposure to extreme cold", + "example_sentence_english": "Hikers need to be careful to avoid frostbite in cold weather.", + "pos": "noun", + "word_frequency": 24270 + }, + { + "word": "fulltime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "occupying or using the whole of someone's available working time", + "example_sentence_english": "He works fulltime as a software engineer.", + "pos": "adjective", + "word_frequency": 24273 + }, + { + "word": "gulag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of forced labor camps in the Soviet Union", + "example_sentence_english": "Many political prisoners were sent to the Gulag during the Soviet era.", + "pos": "noun", + "word_frequency": 24279 + }, + { + "word": "handyman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who does small repairs or odd jobs", + "example_sentence_english": "We hired a handyman to fix the leaky faucet.", + "pos": "noun", + "word_frequency": 24283 + }, + { + "word": "heatwave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prolonged period of abnormally hot weather", + "example_sentence_english": "The country is experiencing a severe heatwave this summer.", + "pos": "noun", + "word_frequency": 24286 + }, + { + "word": "hellenic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to ancient Greek history, culture, or art", + "example_sentence_english": "The museum displayed many Hellenic artifacts.", + "pos": "adjective", + "word_frequency": 24287 + }, + { + "word": "hellenistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Greek history, language, and culture from the death of Alexander the Great to the defeat of Cleopatra and Mark Antony", + "example_sentence_english": "The Hellenistic period saw the spread of Greek culture across the Mediterranean.", + "pos": "adjective", + "word_frequency": 24288 + }, + { + "word": "heretical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "believing in or practicing religious heresy", + "example_sentence_english": "His views were considered heretical by the church authorities.", + "pos": "adjective", + "word_frequency": 24289 + }, + { + "word": "homeschool", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to educate a child at home instead of at school", + "example_sentence_english": "Many parents choose to homeschool their children for various reasons.", + "pos": "noun", + "word_frequency": 24292 + }, + { + "word": "immeasurable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "too large, extensive, or extreme to measure", + "example_sentence_english": "The impact of her work was immeasurable.", + "pos": "adjective", + "word_frequency": 24299 + }, + { + "word": "immorality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of being immoral; wickedness", + "example_sentence_english": "The book explored themes of morality and immorality.", + "pos": "noun", + "word_frequency": 24300 + }, + { + "word": "immutable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unchanging over time or unable to be changed", + "example_sentence_english": "The laws of physics are considered immutable.", + "pos": "adjective", + "word_frequency": 24301 + }, + { + "word": "impressionable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easily influenced because of a lack of experience or maturity", + "example_sentence_english": "Young children are often very impressionable.", + "pos": "adjective", + "word_frequency": 24303 + }, + { + "word": "impressionist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an artist who paints in the style of Impressionism", + "example_sentence_english": "Monet is considered a master impressionist painter.", + "pos": "noun", + "word_frequency": 24304 + }, + { + "word": "indica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a species of plant, especially Cannabis indica", + "example_sentence_english": "Cannabis indica is known for its relaxing effects.", + "pos": "noun", + "word_frequency": 24306 + }, + { + "word": "indisputable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be challenged or denied", + "example_sentence_english": "The evidence was indisputable, proving his guilt.", + "pos": "adjective", + "word_frequency": 24307 + }, + { + "word": "inquisitor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person making an inquiry or investigation, especially one who is harsh or severe", + "example_sentence_english": "The lawyer acted like an inquisitor during the cross-examination.", + "pos": "noun", + "word_frequency": 24308 + }, + { + "word": "inset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small picture or map inserted within the border of a larger one", + "example_sentence_english": "The map included an inset showing a detailed view of the city center.", + "pos": "noun", + "word_frequency": 24309 + }, + { + "word": "interceptor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that intercepts, especially an aircraft designed to intercept enemy aircraft", + "example_sentence_english": "The fighter jet acted as an interceptor against the incoming missile.", + "pos": "noun", + "word_frequency": 24310 + }, + { + "word": "interpolation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the action of inserting something of a different nature into something else", + "example_sentence_english": "The data analysis involved interpolation to estimate missing values.", + "pos": "noun", + "word_frequency": 24311 + }, + { + "word": "kohl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ancient eye cosmetic, traditionally made from powdered antimony or galena", + "example_sentence_english": "Ancient Egyptians used kohl to line their eyes.", + "pos": "noun", + "word_frequency": 24318 + }, + { + "word": "lancer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A soldier armed with a lance", + "example_sentence_english": "The lancer charged across the field, his weapon poised.", + "pos": "noun", + "word_frequency": 24321 + }, + { + "word": "leaver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who leaves a place or organization", + "example_sentence_english": "The school leaver was excited about starting university.", + "pos": "noun", + "word_frequency": 24324 + }, + { + "word": "licorice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A sweet, chewy black confectionery", + "example_sentence_english": "She doesn't like the taste of black licorice.", + "pos": "noun", + "word_frequency": 24326 + }, + { + "word": "lighter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A device used for lighting cigarettes or fires", + "example_sentence_english": "He used a lighter to ignite the campfire.", + "pos": "noun", + "word_frequency": 24327 + }, + { + "word": "lunge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make a sudden forward thrust with the body", + "example_sentence_english": "The fencer had to lunge forward to score a point.", + "pos": "verb", + "word_frequency": 24330 + }, + { + "word": "maggot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The larva of a fly", + "example_sentence_english": "The rotten fruit was full of maggots.", + "pos": "noun", + "word_frequency": 24333 + }, + { + "word": "manipulator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who controls or influences others deviously", + "example_sentence_english": "He was known as a skilled manipulator, always getting his way.", + "pos": "noun", + "word_frequency": 24336 + }, + { + "word": "menagerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A collection of wild animals kept in captivity for exhibition", + "example_sentence_english": "The eccentric millionaire kept a strange menagerie of exotic birds.", + "pos": "noun", + "word_frequency": 24340 + }, + { + "word": "metallurgical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the science of metallurgy", + "example_sentence_english": "The company specializes in metallurgical engineering.", + "pos": "adjective", + "word_frequency": 24342 + }, + { + "word": "micron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A unit of length equal to one millionth of a meter", + "example_sentence_english": "A human hair is about 50 microns thick.", + "pos": "noun", + "word_frequency": 24344 + }, + { + "word": "midpoint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The exact middle point", + "example_sentence_english": "We met at the midpoint of the journey.", + "pos": "noun", + "word_frequency": 24345 + }, + { + "word": "monoclonal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Derived from a single cell clone", + "example_sentence_english": "Scientists are developing new monoclonal antibodies for cancer treatment.", + "pos": "adjective", + "word_frequency": 24346 + }, + { + "word": "multiverse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A hypothetical set of multiple possible universes", + "example_sentence_english": "The theory suggests that our universe is just one of many in a vast multiverse.", + "pos": "noun", + "word_frequency": 24348 + }, + { + "word": "nibble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To take small bites", + "example_sentence_english": "The rabbit began to nibble on the carrot.", + "pos": "verb", + "word_frequency": 24349 + }, + { + "word": "nosy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Excessively interested in other people's affairs", + "example_sentence_english": "My neighbor is very nosy and always asks about my business.", + "pos": "adjective", + "word_frequency": 24351 + }, + { + "word": "nullify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make legally null and void; invalidate", + "example_sentence_english": "The judge decided to nullify the contract due to fraud.", + "pos": "verb", + "word_frequency": 24352 + }, + { + "word": "oligarchy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A small group of people having control of a country or organization", + "example_sentence_english": "The country was ruled by an oligarchy of wealthy families.", + "pos": "noun", + "word_frequency": 24356 + }, + { + "word": "omelette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A dish of beaten eggs cooked in a pan", + "example_sentence_english": "She made a delicious cheese omelette for breakfast.", + "pos": "noun", + "word_frequency": 24357 + }, + { + "word": "omnipotent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having unlimited power", + "example_sentence_english": "Many religions believe in an omnipotent God.", + "pos": "adjective", + "word_frequency": 24358 + }, + { + "word": "oppressor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who oppresses another", + "example_sentence_english": "The people rose up against their oppressor.", + "pos": "noun", + "word_frequency": 24359 + }, + { + "word": "overthink", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to think too much about something", + "example_sentence_english": "Don't overthink it; just make a decision.", + "pos": "verb", + "word_frequency": 24361 + }, + { + "word": "paedophile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is sexually attracted to children", + "example_sentence_english": "The documentary discussed the psychological profile of a paedophile.", + "pos": "noun", + "word_frequency": 24362 + }, + { + "word": "pagoda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tiered tower with multiple eaves, built in East and Southeast Asia", + "example_sentence_english": "We visited an ancient pagoda during our trip to Japan.", + "pos": "noun", + "word_frequency": 24363 + }, + { + "word": "parallax", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the apparent displacement of an observed object due to a change in the observer's position", + "example_sentence_english": "Astronomers use parallax to measure the distance to nearby stars.", + "pos": "noun", + "word_frequency": 24364 + }, + { + "word": "penniless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no money; very poor", + "example_sentence_english": "After losing his job, he found himself penniless.", + "pos": "adjective", + "word_frequency": 24365 + }, + { + "word": "phalanx", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a body of troops or police officers standing or moving in close formation", + "example_sentence_english": "The ancient Greek phalanx was a formidable military formation.", + "pos": "noun", + "word_frequency": 24366 + }, + { + "word": "photogenic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looking attractive in photographs", + "example_sentence_english": "She's very photogenic; every picture of her looks great.", + "pos": "adjective", + "word_frequency": 24367 + }, + { + "word": "pollack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of edible marine fish", + "example_sentence_english": "We had baked pollack for dinner last night.", + "pos": "noun", + "word_frequency": 24370 + }, + { + "word": "polymerization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of reacting monomer molecules together in a chemical reaction to form polymer chains", + "example_sentence_english": "The polymerization process is crucial in plastic manufacturing.", + "pos": "noun", + "word_frequency": 24371 + }, + { + "word": "pounder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that pounds; a unit of weight or force", + "example_sentence_english": "He ordered a quarter-pounder burger for lunch.", + "pos": "noun", + "word_frequency": 24372 + }, + { + "word": "predictability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being predictable", + "example_sentence_english": "The predictability of the weather allowed us to plan our trip.", + "pos": "noun", + "word_frequency": 24375 + }, + { + "word": "quaternary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fourth in order or rank; relating to the Quaternary period", + "example_sentence_english": "The Quaternary period is the current and most recent of the three periods of the Cenozoic Era.", + "pos": "numeral", + "word_frequency": 24379 + }, + { + "word": "quintet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of five people or things, especially musicians", + "example_sentence_english": "The jazz quintet played a fantastic set at the club.", + "pos": "noun", + "word_frequency": 24380 + }, + { + "word": "realtime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a system in which input data is processed within milliseconds", + "example_sentence_english": "The software provides realtime updates on stock prices.", + "pos": "adjective", + "word_frequency": 24381 + }, + { + "word": "reconstructive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving reconstruction, especially of damaged tissue", + "example_sentence_english": "She underwent reconstructive surgery after the accident.", + "pos": "adjective", + "word_frequency": 24382 + }, + { + "word": "retaliatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by retaliation; striking back", + "example_sentence_english": "The country threatened retaliatory measures if the sanctions were imposed.", + "pos": "adjective", + "word_frequency": 24384 + }, + { + "word": "rhinoceros", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, heavily built plant-eating mammal with one or two horns on the nose", + "example_sentence_english": "We saw a rhinoceros at the zoo.", + "pos": "noun", + "word_frequency": 24385 + }, + { + "word": "rickshaw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light two-wheeled passenger vehicle drawn by one or more people", + "example_sentence_english": "We took a rickshaw ride through the old city.", + "pos": "noun", + "word_frequency": 24386 + }, + { + "word": "rollover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act of rolling over; the transfer of funds or a debt", + "example_sentence_english": "The lottery jackpot had a rollover this week.", + "pos": "noun", + "word_frequency": 24389 + }, + { + "word": "romp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to play roughly and energetically; to win easily", + "example_sentence_english": "The children loved to romp in the garden.", + "pos": "verb", + "word_frequency": 24391 + }, + { + "word": "rustle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a soft, muffled crackling sound, as of dry leaves or paper", + "example_sentence_english": "The dry leaves rustled underfoot as we walked through the forest.", + "pos": "verb", + "word_frequency": 24393 + }, + { + "word": "sawdust", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine particles of wood produced during sawing", + "example_sentence_english": "The floor of the workshop was covered in sawdust.", + "pos": "noun", + "word_frequency": 24398 + }, + { + "word": "scavenge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to search for and collect (anything usable) from discarded waste", + "example_sentence_english": "Birds often scavenge for food in urban areas.", + "pos": "verb", + "word_frequency": 24400 + }, + { + "word": "scrotum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the pouch of skin containing the testicles", + "example_sentence_english": "The doctor examined the patient's scrotum.", + "pos": "noun", + "word_frequency": 24401 + }, + { + "word": "scruffy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untidy and dishevelled", + "example_sentence_english": "He looked a bit scruffy after sleeping on the train.", + "pos": "adjective", + "word_frequency": 24402 + }, + { + "word": "sewerage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the system of sewers", + "example_sentence_english": "The city is investing in new sewerage infrastructure.", + "pos": "noun", + "word_frequency": 24405 + }, + { + "word": "smelter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place where ore is smelted", + "example_sentence_english": "The new smelter will increase metal production.", + "pos": "noun", + "word_frequency": 24413 + }, + { + "word": "smoothness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being smooth", + "example_sentence_english": "The artist admired the smoothness of the marble.", + "pos": "noun", + "word_frequency": 24414 + }, + { + "word": "sparky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lively, energetic, or quick-witted", + "example_sentence_english": "She has a very sparky personality.", + "pos": "adjective", + "word_frequency": 24416 + }, + { + "word": "spontaneity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being spontaneous", + "example_sentence_english": "They loved the spontaneity of their road trips.", + "pos": "noun", + "word_frequency": 24417 + }, + { + "word": "stateless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not belonging to or recognized by any country as a citizen", + "example_sentence_english": "Many refugees become stateless individuals.", + "pos": "adjective", + "word_frequency": 24419 + }, + { + "word": "stateside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in or to the United States", + "example_sentence_english": "He's looking forward to going stateside for his vacation.", + "pos": "adverb", + "word_frequency": 24420 + }, + { + "word": "stepson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the son of one's husband or wife by a previous marriage", + "example_sentence_english": "Her stepson is visiting for the holidays.", + "pos": "noun", + "word_frequency": 24421 + }, + { + "word": "stunningly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in an extremely impressive or attractive manner", + "example_sentence_english": "The view from the mountain was stunningly beautiful.", + "pos": "adverb", + "word_frequency": 24423 + }, + { + "word": "surly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bad-tempered and unfriendly", + "example_sentence_english": "The surly waiter ignored our requests.", + "pos": "adjective", + "word_frequency": 24425 + }, + { + "word": "torsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of twisting or the state of being twisted", + "example_sentence_english": "Engineers calculated the torsion on the bridge's support beams.", + "pos": "noun", + "word_frequency": 24433 + }, + { + "word": "tosh", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonsense (British informal)", + "example_sentence_english": "Don't listen to his advice, it's all tosh.", + "pos": "noun", + "word_frequency": 24434 + }, + { + "word": "touchstone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a standard or criterion by which something is judged", + "example_sentence_english": "The novel became a touchstone for modern literature.", + "pos": "noun", + "word_frequency": 24435 + }, + { + "word": "tramway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a track for trams or a system of trams", + "example_sentence_english": "The city is planning to extend its tramway network.", + "pos": "noun", + "word_frequency": 24436 + }, + { + "word": "treatable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be treated or cured", + "example_sentence_english": "Fortunately, the condition is treatable with medication.", + "pos": "adjective", + "word_frequency": 24437 + }, + { + "word": "trier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who tries hard or makes an effort", + "example_sentence_english": "She's a real trier, always giving her best.", + "pos": "noun", + "word_frequency": 24438 + }, + { + "word": "tumbler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a drinking glass without a stem or handle; a part of a lock", + "example_sentence_english": "He poured water into a tall tumbler.", + "pos": "noun", + "word_frequency": 24439 + }, + { + "word": "typeface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The design of a set of characters.", + "example_sentence_english": "Choose a clear typeface for your presentation.", + "pos": "noun", + "word_frequency": 24440 + }, + { + "word": "unaccounted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not explained or missing.", + "example_sentence_english": "Several items remain unaccounted for after the inventory.", + "pos": "adjective", + "word_frequency": 24442 + }, + { + "word": "unbound", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not tied or restricted.", + "example_sentence_english": "The wild horse ran unbound across the plains.", + "pos": "adjective", + "word_frequency": 24443 + }, + { + "word": "uncalled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not requested or necessary.", + "example_sentence_english": "His rude comment was completely uncalled for.", + "pos": "adjective", + "word_frequency": 24444 + }, + { + "word": "undemocratic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not democratic; not based on democratic principles.", + "example_sentence_english": "The decision was seen as undemocratic by many citizens.", + "pos": "adjective", + "word_frequency": 24445 + }, + { + "word": "undergrad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An undergraduate student.", + "example_sentence_english": "My sister is an undergrad studying history.", + "pos": "noun", + "word_frequency": 24446 + }, + { + "word": "underpay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To pay someone too little.", + "example_sentence_english": "Many companies underpay their interns.", + "pos": "verb", + "word_frequency": 24447 + }, + { + "word": "uninvited", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Not invited.", + "example_sentence_english": "An uninvited guest showed up at the party.", + "pos": "adjective", + "word_frequency": 24448 + }, + { + "word": "unnerving", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Causing one to lose courage or confidence.", + "example_sentence_english": "The silence in the old house was unnerving.", + "pos": "adjective", + "word_frequency": 24449 + }, + { + "word": "unpunished", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not punished.", + "example_sentence_english": "It's unfair that the crime went unpunished.", + "pos": "adjective", + "word_frequency": 24450 + }, + { + "word": "unrecognized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not acknowledged or identified.", + "example_sentence_english": "His efforts went unrecognized for a long time.", + "pos": "adjective", + "word_frequency": 24451 + }, + { + "word": "untested", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not yet tested or proven.", + "example_sentence_english": "The new software is still untested.", + "pos": "adjective", + "word_frequency": 24452 + }, + { + "word": "urethra", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "The tube that carries urine from the bladder.", + "example_sentence_english": "The doctor explained the function of the urethra.", + "pos": "noun", + "word_frequency": 24453 + }, + { + "word": "vaudeville", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A type of entertainment popular in the early 20th century.", + "example_sentence_english": "Vaudeville shows often featured a variety of acts.", + "pos": "noun", + "word_frequency": 24455 + }, + { + "word": "verve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Enthusiasm or vigor.", + "example_sentence_english": "She performed the dance with great verve.", + "pos": "noun", + "word_frequency": 24456 + }, + { + "word": "vex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To annoy or irritate.", + "example_sentence_english": "The constant noise began to vex him.", + "pos": "verb", + "word_frequency": 24457 + }, + { + "word": "watchtower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A tower from which to keep watch.", + "example_sentence_english": "The guard stood in the watchtower, scanning the horizon.", + "pos": "noun", + "word_frequency": 24463 + }, + { + "word": "waveform", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The shape of a wave.", + "example_sentence_english": "The oscilloscope displayed the audio waveform.", + "pos": "noun", + "word_frequency": 24464 + }, + { + "word": "weighty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Of great importance or influence.", + "example_sentence_english": "The committee had to make a weighty decision.", + "pos": "adjective", + "word_frequency": 24465 + }, + { + "word": "workbook", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A book with exercises for students.", + "example_sentence_english": "Please complete the exercises in your workbook.", + "pos": "noun", + "word_frequency": 24468 + }, + { + "word": "workspace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An area where work is done.", + "example_sentence_english": "My workspace is usually very tidy.", + "pos": "noun", + "word_frequency": 24469 + }, + { + "word": "zephyr", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A soft, gentle breeze.", + "example_sentence_english": "A gentle zephyr rustled the leaves.", + "pos": "noun", + "word_frequency": 24473 + }, + { + "word": "adversarial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Involving conflict or opposition.", + "example_sentence_english": "The two teams had an adversarial relationship.", + "pos": "adjective", + "word_frequency": 24478 + }, + { + "word": "amiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friendly and pleasant", + "example_sentence_english": "She was an amiable person, always ready with a smile.", + "pos": "adjective", + "word_frequency": 24483 + }, + { + "word": "amphitheatre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an open-air venue used for entertainment", + "example_sentence_english": "The concert was held in the ancient amphitheatre.", + "pos": "noun", + "word_frequency": 24484 + }, + { + "word": "amygdala", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a part of the brain involved in emotion", + "example_sentence_english": "The amygdala plays a key role in processing fear.", + "pos": "noun", + "word_frequency": 24485 + }, + { + "word": "antagonism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "active hostility or opposition", + "example_sentence_english": "There was clear antagonism between the two rival teams.", + "pos": "noun", + "word_frequency": 24486 + }, + { + "word": "antebellum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring or existing before a particular war, especially the American Civil War", + "example_sentence_english": "The antebellum architecture of the South is quite distinctive.", + "pos": "adjective", + "word_frequency": 24487 + }, + { + "word": "apathetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing or feeling no interest, enthusiasm, or concern", + "example_sentence_english": "Many voters have become apathetic about politics.", + "pos": "adjective", + "word_frequency": 24488 + }, + { + "word": "apologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who offers an argument in defense of something controversial", + "example_sentence_english": "He became an apologist for the government's controversial policies.", + "pos": "noun", + "word_frequency": 24489 + }, + { + "word": "append", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "add something to the end of a written document", + "example_sentence_english": "Please append your signature to the bottom of the form.", + "pos": "verb", + "word_frequency": 24490 + }, + { + "word": "artiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a professional entertainer, especially a singer or dancer", + "example_sentence_english": "The circus featured a talented artiste who performed amazing acrobatics.", + "pos": "noun", + "word_frequency": 24491 + }, + { + "word": "backwater", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place or state of affairs considered to be backward and isolated", + "example_sentence_english": "The small village was considered a cultural backwater.", + "pos": "noun", + "word_frequency": 24493 + }, + { + "word": "bequest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a legacy; something left to someone in a will", + "example_sentence_english": "She received a generous bequest from her grandmother's will.", + "pos": "noun", + "word_frequency": 24495 + }, + { + "word": "biodegradable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capable of being decomposed by bacteria or other living organisms", + "example_sentence_english": "We should use more biodegradable packaging to protect the environment.", + "pos": "adjective", + "word_frequency": 24496 + }, + { + "word": "biofuel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuel derived directly from living matter", + "example_sentence_english": "Many cars can now run on biofuel, reducing carbon emissions.", + "pos": "noun", + "word_frequency": 24497 + }, + { + "word": "biomarker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a measurable indicator of the severity or presence of some disease state", + "example_sentence_english": "Scientists are searching for new biomarkers to detect cancer early.", + "pos": "noun", + "word_frequency": 24498 + }, + { + "word": "biosynthesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the production of complex molecules within living organisms or cells", + "example_sentence_english": "Photosynthesis is a crucial process of biosynthesis in plants.", + "pos": "noun", + "word_frequency": 24499 + }, + { + "word": "blasphemous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacrilegious against God or sacred things; profane", + "example_sentence_english": "His comments were considered blasphemous by many religious leaders.", + "pos": "adjective", + "word_frequency": 24500 + }, + { + "word": "bonny", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attractive or beautiful (chiefly Scottish and northern English)", + "example_sentence_english": "The bonny lass had a lovely smile.", + "pos": "adjective", + "word_frequency": 24501 + }, + { + "word": "bungee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, thick elastic cord, typically with a hook at each end", + "example_sentence_english": "He secured the luggage with a bungee cord.", + "pos": "noun", + "word_frequency": 24503 + }, + { + "word": "carina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a ridge or keel-like structure, especially the point where the trachea divides into the two main bronchi", + "example_sentence_english": "The carina is a sensitive area in the respiratory tract.", + "pos": "noun", + "word_frequency": 24504 + }, + { + "word": "carnivore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an animal that feeds on flesh", + "example_sentence_english": "Lions are powerful carnivores that hunt in prides.", + "pos": "noun", + "word_frequency": 24505 + }, + { + "word": "chipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheerful and lively", + "example_sentence_english": "Despite the bad news, she remained remarkably chipper.", + "pos": "adjective", + "word_frequency": 24508 + }, + { + "word": "cliffhanger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dramatic and exciting ending to an episode of a series, leaving the audience in suspense", + "example_sentence_english": "The season finale ended on a shocking cliffhanger.", + "pos": "noun", + "word_frequency": 24510 + }, + { + "word": "cline", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gradation in one or more characteristics within a species or other group, especially between populations in different areas", + "example_sentence_english": "There is a genetic cline in the bird population across the continent.", + "pos": "noun", + "word_frequency": 24511 + }, + { + "word": "clunky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awkwardly large, heavy, or unwieldy", + "example_sentence_english": "The old computer was slow and clunky.", + "pos": "adjective", + "word_frequency": 24512 + }, + { + "word": "collider", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a particle accelerator in which two beams of particles are made to collide", + "example_sentence_english": "The Large Hadron Collider is used to study subatomic particles.", + "pos": "noun", + "word_frequency": 24514 + }, + { + "word": "commoner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ordinary person, without noble rank or title", + "example_sentence_english": "In medieval times, commoners had few rights compared to the nobility.", + "pos": "noun", + "word_frequency": 24517 + }, + { + "word": "contemporaneous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existing or occurring in the same period of time", + "example_sentence_english": "The two events were contemporaneous, happening at roughly the same time.", + "pos": "adjective", + "word_frequency": 24519 + }, + { + "word": "cutback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction", + "example_sentence_english": "The company announced significant cutbacks in spending.", + "pos": "noun", + "word_frequency": 24524 + }, + { + "word": "cutthroat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ruthless competitor", + "example_sentence_english": "The business world can be a cutthroat.", + "pos": "noun", + "word_frequency": 24525 + }, + { + "word": "deceptively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misleadingly", + "example_sentence_english": "The path looked deceptively easy, but it was very steep.", + "pos": "adverb", + "word_frequency": 24527 + }, + { + "word": "decoder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device that decodes", + "example_sentence_english": "You need a special decoder to watch encrypted channels.", + "pos": "noun", + "word_frequency": 24528 + }, + { + "word": "decommission", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "take out of service", + "example_sentence_english": "The old power plant will be decommissioned next year.", + "pos": "verb", + "word_frequency": 24529 + }, + { + "word": "demography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "study of population statistics", + "example_sentence_english": "Demography is crucial for understanding population trends.", + "pos": "noun", + "word_frequency": 24533 + }, + { + "word": "devilish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischievous, wicked", + "example_sentence_english": "He gave a devilish grin before playing a prank.", + "pos": "adjective", + "word_frequency": 24535 + }, + { + "word": "disloyal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfaithful", + "example_sentence_english": "His actions were seen as disloyal to the team.", + "pos": "adjective", + "word_frequency": 24536 + }, + { + "word": "disown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reject ownership of", + "example_sentence_english": "The family decided to disown him after his criminal acts.", + "pos": "verb", + "word_frequency": 24537 + }, + { + "word": "dissociation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separation, detachment", + "example_sentence_english": "She experienced a feeling of dissociation from her body during the trauma.", + "pos": "noun", + "word_frequency": 24538 + }, + { + "word": "eared", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having ears", + "example_sentence_english": "The long-eared owl is a nocturnal bird.", + "pos": "adjective", + "word_frequency": 24544 + }, + { + "word": "earthen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made of earth or clay", + "example_sentence_english": "They used earthen pots for cooking.", + "pos": "adjective", + "word_frequency": 24545 + }, + { + "word": "eccentricity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unusual behavior", + "example_sentence_english": "His eccentricity made him stand out in the crowd.", + "pos": "noun", + "word_frequency": 24546 + }, + { + "word": "electrocute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kill by electric shock", + "example_sentence_english": "Be careful not to electrocute yourself with faulty wiring.", + "pos": "verb", + "word_frequency": 24548 + }, + { + "word": "emissary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "messenger, representative", + "example_sentence_english": "The king sent an emissary to negotiate peace.", + "pos": "noun", + "word_frequency": 24549 + }, + { + "word": "entrapment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "act of trapping or tricking", + "example_sentence_english": "The defense lawyer argued that his client was a victim of entrapment.", + "pos": "noun", + "word_frequency": 24551 + }, + { + "word": "erectile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capable of erection", + "example_sentence_english": "Erectile dysfunction is a common medical condition.", + "pos": "adjective", + "word_frequency": 24552 + }, + { + "word": "exchanger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "device for exchanging", + "example_sentence_english": "The heat exchanger transfers thermal energy between fluids.", + "pos": "noun", + "word_frequency": 24555 + }, + { + "word": "flappy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loose and flapping", + "example_sentence_english": "The bird had small, flappy wings.", + "pos": "adjective", + "word_frequency": 24558 + }, + { + "word": "flashpoint", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "point of ignition; critical point", + "example_sentence_english": "The disputed territory became a flashpoint for conflict.", + "pos": "noun", + "word_frequency": 24559 + }, + { + "word": "foodstuff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "any substance that is used as food", + "example_sentence_english": "The store sells a variety of foodstuffs, including fresh produce and canned goods.", + "pos": "noun", + "word_frequency": 24560 + }, + { + "word": "foretell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predict or prophesy (the future)", + "example_sentence_english": "Ancient prophets claimed to foretell future events.", + "pos": "verb", + "word_frequency": 24561 + }, + { + "word": "formalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "give legal or formal status to", + "example_sentence_english": "They decided to formalize their agreement with a written contract.", + "pos": "verb", + "word_frequency": 24562 + }, + { + "word": "grainy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a rough or granular texture", + "example_sentence_english": "The old photograph looked grainy and faded.", + "pos": "adjective", + "word_frequency": 24571 + }, + { + "word": "greenery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "green foliage, plants, or vegetation", + "example_sentence_english": "The garden was full of lush greenery.", + "pos": "noun", + "word_frequency": 24572 + }, + { + "word": "gynecology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of medicine dealing with women's health, especially the reproductive system", + "example_sentence_english": "She decided to specialize in gynecology after medical school.", + "pos": "noun", + "word_frequency": 24575 + }, + { + "word": "handily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is easy or convenient; with ease", + "example_sentence_english": "The team won the game handily, scoring many points.", + "pos": "adverb", + "word_frequency": 24578 + }, + { + "word": "henna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dye prepared from the plant Lawsonia inermis, used to color hair and skin", + "example_sentence_english": "She got a beautiful henna tattoo on her hand.", + "pos": "noun", + "word_frequency": 24582 + }, + { + "word": "hexagon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a six-sided polygon", + "example_sentence_english": "A beehive is made of many hexagonal cells.", + "pos": "noun", + "word_frequency": 24583 + }, + { + "word": "hock", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the joint in the hind leg of a horse or other quadruped, corresponding to the human ankle", + "example_sentence_english": "The horse injured its hock during the race.", + "pos": "noun", + "word_frequency": 24586 + }, + { + "word": "holler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shout or yell", + "example_sentence_english": "He had to holler to be heard over the music.", + "pos": "verb", + "word_frequency": 24587 + }, + { + "word": "hooter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a siren or horn, especially on a vehicle", + "example_sentence_english": "The train blew its hooter as it approached the crossing.", + "pos": "noun", + "word_frequency": 24589 + }, + { + "word": "husk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the dry outer covering of some fruits or seeds", + "example_sentence_english": "You need to remove the husk from the corn before cooking it.", + "pos": "noun", + "word_frequency": 24590 + }, + { + "word": "iberian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Iberian Peninsula (Spain and Portugal)", + "example_sentence_english": "The Iberian Peninsula is located in southwestern Europe.", + "pos": "adjective", + "word_frequency": 24592 + }, + { + "word": "implore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beg someone earnestly or desperately to do something", + "example_sentence_english": "She implored him to reconsider his decision.", + "pos": "verb", + "word_frequency": 24594 + }, + { + "word": "impound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "take legal possession of (something)", + "example_sentence_english": "The police decided to impound the illegally parked car.", + "pos": "verb", + "word_frequency": 24595 + }, + { + "word": "indigestion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difficulty in digesting food", + "example_sentence_english": "Eating too much spicy food can cause indigestion.", + "pos": "noun", + "word_frequency": 24596 + }, + { + "word": "infarction", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the obstruction of the blood supply to an organ or region of tissue, causing local tissue death", + "example_sentence_english": "A myocardial infarction is commonly known as a heart attack.", + "pos": "noun", + "word_frequency": 24598 + }, + { + "word": "intonation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The rise and fall of the voice in speaking.", + "example_sentence_english": "Her intonation clearly showed her surprise.", + "pos": "noun", + "word_frequency": 24600 + }, + { + "word": "inversely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In an opposite or contrary manner.", + "example_sentence_english": "The two quantities are inversely proportional.", + "pos": "adverb", + "word_frequency": 24601 + }, + { + "word": "irrigate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To supply water to land or crops to aid growth.", + "example_sentence_english": "Farmers irrigate their fields during dry seasons.", + "pos": "verb", + "word_frequency": 24602 + }, + { + "word": "islamophobia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Dislike of or prejudice against Islam or Muslims.", + "example_sentence_english": "The rise of Islamophobia is a serious concern.", + "pos": "noun", + "word_frequency": 24604 + }, + { + "word": "justly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a just or fair manner.", + "example_sentence_english": "He was justly rewarded for his hard work.", + "pos": "adverb", + "word_frequency": 24608 + }, + { + "word": "kaleidoscope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A toy consisting of a tube containing mirrors and pieces of colored glass or paper, whose reflections produce changing patterns.", + "example_sentence_english": "The child looked through the kaleidoscope and gasped at the patterns.", + "pos": "noun", + "word_frequency": 24609 + }, + { + "word": "keypad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A small panel of keys or buttons for operating a computer or other electronic device.", + "example_sentence_english": "She entered the code on the keypad to unlock the door.", + "pos": "noun", + "word_frequency": 24611 + }, + { + "word": "kimchi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A traditional Korean side dish of fermented vegetables.", + "example_sentence_english": "Kimchi is a staple of Korean cuisine.", + "pos": "noun", + "word_frequency": 24612 + }, + { + "word": "lactation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The secretion of milk by the mammary glands.", + "example_sentence_english": "Lactation is a natural process for mammals.", + "pos": "noun", + "word_frequency": 24617 + }, + { + "word": "liberalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The removal or loosening of restrictions, typically on economic or political matters.", + "example_sentence_english": "The liberalization of trade policies led to increased imports.", + "pos": "noun", + "word_frequency": 24619 + }, + { + "word": "looter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who steals goods, typically during a war or riot.", + "example_sentence_english": "The police arrested several looters after the protest.", + "pos": "noun", + "word_frequency": 24621 + }, + { + "word": "lough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A lake or sea inlet, especially in Ireland.", + "example_sentence_english": "We went fishing in the lough.", + "pos": "noun", + "word_frequency": 24623 + }, + { + "word": "lumpy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Full of or covered with lumps.", + "example_sentence_english": "The mashed potatoes were a bit lumpy.", + "pos": "adjective", + "word_frequency": 24625 + }, + { + "word": "lyricist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who writes the lyrics for songs.", + "example_sentence_english": "The lyricist collaborated with the composer on the new musical.", + "pos": "noun", + "word_frequency": 24626 + }, + { + "word": "malaise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A general feeling of discomfort, illness, or uneasiness whose exact cause is difficult to identify.", + "example_sentence_english": "She experienced a general malaise before the flu symptoms appeared.", + "pos": "noun", + "word_frequency": 24629 + }, + { + "word": "meatloaf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A dish of ground meat mixed with other ingredients and formed into a loaf.", + "example_sentence_english": "My grandmother makes the best meatloaf.", + "pos": "noun", + "word_frequency": 24634 + }, + { + "word": "menial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not requiring much skill and lacking prestige.", + "example_sentence_english": "He was tired of doing menial tasks all day.", + "pos": "adjective", + "word_frequency": 24635 + }, + { + "word": "mentorship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The guidance provided by a mentor.", + "example_sentence_english": "She benefited greatly from her mentorship with an experienced colleague.", + "pos": "noun", + "word_frequency": 24636 + }, + { + "word": "merrily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a cheerful or lively way.", + "example_sentence_english": "The children skipped merrily down the path.", + "pos": "adverb", + "word_frequency": 24638 + }, + { + "word": "monogamous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having only one spouse or partner at one time", + "example_sentence_english": "Many bird species are monogamous, forming lifelong pair bonds.", + "pos": "adjective", + "word_frequency": 24641 + }, + { + "word": "mooring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where a boat or ship is moored", + "example_sentence_english": "The boat broke free from its mooring during the storm.", + "pos": "noun", + "word_frequency": 24644 + }, + { + "word": "mountaineering", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sport or activity of climbing mountains", + "example_sentence_english": "Mountaineering requires specialized equipment and extensive training.", + "pos": "noun", + "word_frequency": 24646 + }, + { + "word": "napalm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a highly flammable sticky jelly used in incendiary bombs and flamethrowers", + "example_sentence_english": "The use of napalm in warfare caused widespread international condemnation.", + "pos": "noun", + "word_frequency": 24650 + }, + { + "word": "negation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the contradiction or denial of something", + "example_sentence_english": "The word \"not\" is used to form a negation in English sentences.", + "pos": "noun", + "word_frequency": 24653 + }, + { + "word": "neurosurgery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surgery performed on the nervous system, especially the brain and spinal cord", + "example_sentence_english": "He underwent complex neurosurgery to remove the tumor.", + "pos": "noun", + "word_frequency": 24654 + }, + { + "word": "neutrino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a subatomic particle with a very small mass and no electric charge", + "example_sentence_english": "Neutrinos are notoriously difficult to detect due to their weak interaction with matter.", + "pos": "noun", + "word_frequency": 24655 + }, + { + "word": "oneness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being unified or whole", + "example_sentence_english": "The spiritual leader spoke about the oneness of all living things.", + "pos": "noun", + "word_frequency": 24665 + }, + { + "word": "opacity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being opaque; the degree to which something is opaque", + "example_sentence_english": "The opacity of the glass made it impossible to see through.", + "pos": "noun", + "word_frequency": 24666 + }, + { + "word": "otherworldly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to an imaginary or spiritual world; ethereal", + "example_sentence_english": "The ancient ruins had an otherworldly beauty that captivated visitors.", + "pos": "adjective", + "word_frequency": 24668 + }, + { + "word": "overdo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "do, use, or express to an excessive degree", + "example_sentence_english": "Don't overdo it at the gym on your first day back.", + "pos": "verb", + "word_frequency": 24669 + }, + { + "word": "overdraft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deficit in a bank account caused by drawing more money than the account holds", + "example_sentence_english": "He incurred an overdraft fee because he spent more than he had in his account.", + "pos": "noun", + "word_frequency": 24670 + }, + { + "word": "paediatric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the branch of medicine concerned with children and their diseases", + "example_sentence_english": "She decided to specialize in paediatric medicine after medical school.", + "pos": "adjective", + "word_frequency": 24672 + }, + { + "word": "painstakingly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "with great care and thoroughness", + "example_sentence_english": "He painstakingly restored the antique clock to its original condition.", + "pos": "adverb", + "word_frequency": 24673 + }, + { + "word": "pantyhose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woman's one-piece garment combining stockings and tights", + "example_sentence_english": "She wore pantyhose under her dress for the formal event.", + "pos": "noun", + "word_frequency": 24674 + }, + { + "word": "parametric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or expressed in terms of a parameter or parameters", + "example_sentence_english": "The study used a parametric statistical test to analyze the data.", + "pos": "adjective", + "word_frequency": 24675 + }, + { + "word": "parentage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the origin or descent of a person", + "example_sentence_english": "His parentage was a mystery, as he was adopted at a young age.", + "pos": "noun", + "word_frequency": 24676 + }, + { + "word": "pentecost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the Christian festival celebrating the descent of the Holy Spirit on the apostles", + "example_sentence_english": "Many churches celebrate Pentecost with special services and events.", + "pos": "noun", + "word_frequency": 24679 + }, + { + "word": "physio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physiotherapist", + "example_sentence_english": "I have an appointment with the physio next week for my knee.", + "pos": "noun", + "word_frequency": 24680 + }, + { + "word": "pornstar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adult film actor", + "example_sentence_english": "The documentary explored the life of a former pornstar.", + "pos": "noun", + "word_frequency": 24683 + }, + { + "word": "practicable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible, able to be done", + "example_sentence_english": "The proposed solution is not economically practicable.", + "pos": "adjective", + "word_frequency": 24685 + }, + { + "word": "progenitor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ancestor, originator", + "example_sentence_english": "The company's founder is considered the progenitor of modern software development.", + "pos": "noun", + "word_frequency": 24686 + }, + { + "word": "protectionist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advocate of protectionism", + "example_sentence_english": "The new trade policy was criticized by free-market advocates as being protectionist.", + "pos": "noun", + "word_frequency": 24687 + }, + { + "word": "quantification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of measuring or counting something", + "example_sentence_english": "The quantification of data is crucial for scientific research.", + "pos": "noun", + "word_frequency": 24690 + }, + { + "word": "quiver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tremble or shake with a slight rapid motion", + "example_sentence_english": "Her lip began to quiver as she tried to hold back tears.", + "pos": "verb", + "word_frequency": 24691 + }, + { + "word": "reflexive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a reflex; referring back to the subject", + "example_sentence_english": "Sneezing is a reflexive action.", + "pos": "adjective", + "word_frequency": 24693 + }, + { + "word": "reminisce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recall past experiences or events", + "example_sentence_english": "They spent the evening reminiscing about their college days.", + "pos": "verb", + "word_frequency": 24695 + }, + { + "word": "repurpose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adapt for use in a different purpose", + "example_sentence_english": "We can repurpose old plastic bottles into new art projects.", + "pos": "verb", + "word_frequency": 24696 + }, + { + "word": "rile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annoy or irritate", + "example_sentence_english": "His constant complaining really began to rile me.", + "pos": "verb", + "word_frequency": 24697 + }, + { + "word": "roadster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an open-top two-seater car", + "example_sentence_english": "He drove his vintage roadster along the coastal highway.", + "pos": "noun", + "word_frequency": 24698 + }, + { + "word": "salesperson", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person whose job is to sell things", + "example_sentence_english": "The salesperson helped me find the right size shoes.", + "pos": "noun", + "word_frequency": 24702 + }, + { + "word": "scone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, plain cake, typically eaten with butter, jam, and cream", + "example_sentence_english": "We had tea and scones with clotted cream.", + "pos": "noun", + "word_frequency": 24704 + }, + { + "word": "shad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of edible fish", + "example_sentence_english": "Fishermen often catch shad in the spring.", + "pos": "noun", + "word_frequency": 24709 + }, + { + "word": "skylight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a window set in a roof or ceiling", + "example_sentence_english": "The attic room had a large skylight, letting in plenty of natural light.", + "pos": "noun", + "word_frequency": 24714 + }, + { + "word": "snip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a quick cut with scissors; a small piece cut off", + "example_sentence_english": "She gave the loose thread a quick snip with her scissors.", + "pos": "noun", + "word_frequency": 24716 + }, + { + "word": "sombre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark or dull in color or tone; gloomy", + "example_sentence_english": "The mood in the room was sombre after the bad news.", + "pos": "adjective", + "word_frequency": 24717 + }, + { + "word": "sou", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a former French coin of small value; a small amount of money", + "example_sentence_english": "He didn't have a sou to his name after losing everything.", + "pos": "noun", + "word_frequency": 24719 + }, + { + "word": "spoke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one of the rods connecting the center of a wheel to its rim", + "example_sentence_english": "One of the spokes on my bicycle wheel is bent.", + "pos": "noun", + "word_frequency": 24722 + }, + { + "word": "spool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cylindrical device on which film, thread, etc., is wound", + "example_sentence_english": "She wound the thread onto a small wooden spool.", + "pos": "noun", + "word_frequency": 24723 + }, + { + "word": "spurt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden gush or burst", + "example_sentence_english": "There was a sudden spurt of water from the broken pipe.", + "pos": "noun", + "word_frequency": 24724 + }, + { + "word": "sputter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a series of soft explosive sounds", + "example_sentence_english": "The old engine began to sputter and then died.", + "pos": "verb", + "word_frequency": 24725 + }, + { + "word": "stencil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thin sheet of material with a design cut out of it", + "example_sentence_english": "She used a stencil to paint the letters on the sign.", + "pos": "noun", + "word_frequency": 24728 + }, + { + "word": "stoker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who tends the furnace of a steam engine or boiler", + "example_sentence_english": "The stoker shoveled coal into the train's engine.", + "pos": "noun", + "word_frequency": 24729 + }, + { + "word": "stressor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical or biological agent, environmental condition, or external stimulus that causes stress to an organism", + "example_sentence_english": "Lack of sleep can be a major stressor in daily life.", + "pos": "noun", + "word_frequency": 24730 + }, + { + "word": "subjectivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being based on or influenced by personal feelings, tastes, or opinions", + "example_sentence_english": "The subjectivity of art makes it difficult to judge objectively.", + "pos": "noun", + "word_frequency": 24731 + }, + { + "word": "subliminal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "below the threshold of conscious perception", + "example_sentence_english": "Some advertisements use subliminal messages to influence consumers.", + "pos": "adjective", + "word_frequency": 24732 + }, + { + "word": "substantiate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to provide evidence to support or prove the truth of", + "example_sentence_english": "You need to substantiate your claims with facts.", + "pos": "verb", + "word_frequency": 24733 + }, + { + "word": "symphonic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or having the form of a symphony", + "example_sentence_english": "The orchestra performed a beautiful symphonic piece.", + "pos": "adjective", + "word_frequency": 24736 + }, + { + "word": "taekwondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Korean martial art, characterized by punching and kicking techniques", + "example_sentence_english": "She practices taekwondo twice a week.", + "pos": "noun", + "word_frequency": 24737 + }, + { + "word": "teak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hard, durable timber from a tropical tree, used for furniture and shipbuilding", + "example_sentence_english": "The outdoor furniture was made of solid teak.", + "pos": "noun", + "word_frequency": 24740 + }, + { + "word": "teary", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of or accompanied by tears", + "example_sentence_english": "She had a teary look in her eyes after watching the sad movie.", + "pos": "adjective", + "word_frequency": 24741 + }, + { + "word": "teeth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to grow teeth; to provide with teeth", + "example_sentence_english": "The baby is starting to teeth, which makes him a bit fussy.", + "pos": "verb", + "word_frequency": 24742 + }, + { + "word": "transducer", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a device that converts energy from one form to another", + "example_sentence_english": "The microphone acts as a transducer, converting sound waves into electrical signals.", + "pos": "noun", + "word_frequency": 24745 + }, + { + "word": "tuba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, low-pitched brass wind instrument", + "example_sentence_english": "The tuba provides the deep bass notes in the orchestra.", + "pos": "noun", + "word_frequency": 24746 + }, + { + "word": "turnip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a round, white or yellow root vegetable", + "example_sentence_english": "She added chopped turnip to the vegetable stew.", + "pos": "noun", + "word_frequency": 24747 + }, + { + "word": "tween", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a child between the ages of 8 and 12, considered too old for toys but too young for teenage interests", + "example_sentence_english": "The store has a section specifically for tween fashion.", + "pos": "noun", + "word_frequency": 24748 + }, + { + "word": "twofold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having two parts or elements; double", + "example_sentence_english": "The benefits of this approach are twofold.", + "pos": "numeral", + "word_frequency": 24749 + }, + { + "word": "uncontested", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not disputed or challenged", + "example_sentence_english": "The election result was uncontested.", + "pos": "adjective", + "word_frequency": 24750 + }, + { + "word": "underwriter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or company that assesses and accepts risk for insurance policies", + "example_sentence_english": "The underwriter reviewed the application for the new insurance policy.", + "pos": "noun", + "word_frequency": 24751 + }, + { + "word": "uproot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull (a tree or plant) up from the ground; to move (someone) from their home or usual environment", + "example_sentence_english": "The strong winds uprooted several trees during the storm.", + "pos": "verb", + "word_frequency": 24752 + }, + { + "word": "upstart", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who has risen suddenly in rank or importance, especially one who behaves arrogantly", + "example_sentence_english": "He was dismissed as an upstart by the established members of the club.", + "pos": "noun", + "word_frequency": 24753 + }, + { + "word": "urea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a colorless crystalline compound that is the main nitrogenous end product of protein metabolism in mammals and is excreted in urine", + "example_sentence_english": "Urea is a key component of fertilizer.", + "pos": "noun", + "word_frequency": 24755 + }, + { + "word": "villainous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evil, wicked", + "example_sentence_english": "The villainous character plotted against the hero.", + "pos": "adjective", + "word_frequency": 24760 + }, + { + "word": "voluminous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large in volume, bulky", + "example_sentence_english": "She wore a voluminous skirt to the party.", + "pos": "adjective", + "word_frequency": 24761 + }, + { + "word": "wonky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaky, unstable, not straight", + "example_sentence_english": "The table was a bit wonky, so we put a coaster under one leg.", + "pos": "adjective", + "word_frequency": 24766 + }, + { + "word": "abed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in bed", + "example_sentence_english": "He lay abed, unable to sleep.", + "pos": "adjective", + "word_frequency": 24776 + }, + { + "word": "absolve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to free from guilt or blame", + "example_sentence_english": "The court decided to absolve him of all charges.", + "pos": "verb", + "word_frequency": 24777 + }, + { + "word": "adieu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goodbye", + "example_sentence_english": "She waved her hand and whispered, \"Adieu.\"", + "pos": "interjection", + "word_frequency": 24780 + }, + { + "word": "agonist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a character who struggles against the main character; a substance that initiates a physiological response", + "example_sentence_english": "In the story, the protagonist and antagonist are clear, but the agonist is less defined.", + "pos": "noun", + "word_frequency": 24781 + }, + { + "word": "aground", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "onto the ground or shore, stranded", + "example_sentence_english": "The ship ran aground during the storm.", + "pos": "adverb", + "word_frequency": 24782 + }, + { + "word": "airfare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the cost of a plane ticket", + "example_sentence_english": "The airfare to London was surprisingly cheap.", + "pos": "noun", + "word_frequency": 24783 + }, + { + "word": "alternator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a generator that produces alternating current", + "example_sentence_english": "The mechanic said the car's alternator needed to be replaced.", + "pos": "noun", + "word_frequency": 24785 + }, + { + "word": "antiviral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effective against viruses", + "example_sentence_english": "Doctors prescribed an antiviral medication to help fight the infection.", + "pos": "adjective", + "word_frequency": 24786 + }, + { + "word": "badland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of barren land with eroded ridges and peaks", + "example_sentence_english": "The explorers ventured into the desolate badlands.", + "pos": "noun", + "word_frequency": 24793 + }, + { + "word": "baronet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of a British hereditary order of honour", + "example_sentence_english": "He inherited the title of baronet from his father.", + "pos": "noun", + "word_frequency": 24795 + }, + { + "word": "bearish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pessimistic about the market; resembling a bear", + "example_sentence_english": "Investors are feeling bearish about the economy's prospects.", + "pos": "adjective", + "word_frequency": 24798 + }, + { + "word": "bebop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of jazz developed in the 1940s", + "example_sentence_english": "Bebop is known for its fast tempos and complex harmonies.", + "pos": "noun", + "word_frequency": 24799 + }, + { + "word": "bitumen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a black, sticky substance obtained from petroleum, used for making roads", + "example_sentence_english": "The road was paved with asphalt, a mixture containing bitumen.", + "pos": "noun", + "word_frequency": 24804 + }, + { + "word": "buss", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a kiss", + "example_sentence_english": "He gave his child a loving buss on the forehead.", + "pos": "noun", + "word_frequency": 24810 + }, + { + "word": "buzzard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large bird of prey, typically a vulture or a hawk", + "example_sentence_english": "A buzzard circled high above the fields, looking for prey.", + "pos": "noun", + "word_frequency": 24812 + }, + { + "word": "bygone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belonging to an earlier time", + "example_sentence_english": "They reminisced about bygone days and old friends.", + "pos": "adjective", + "word_frequency": 24813 + }, + { + "word": "carbine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a light automatic rifle", + "example_sentence_english": "The soldier carried a short-barreled carbine.", + "pos": "noun", + "word_frequency": 24814 + }, + { + "word": "carelessness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lack of attention or thought about what you are doing", + "example_sentence_english": "His carelessness led to several mistakes in the report.", + "pos": "noun", + "word_frequency": 24815 + }, + { + "word": "commensurate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proportionate; corresponding in size or degree", + "example_sentence_english": "His salary is commensurate with his experience and responsibilities.", + "pos": "adjective", + "word_frequency": 24822 + }, + { + "word": "confound", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to surprise or confuse someone; to prove (a theory, expectation, or prediction) wrong", + "example_sentence_english": "The sudden turn of events confounded everyone.", + "pos": "verb", + "word_frequency": 24823 + }, + { + "word": "corgi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small breed of dog with short legs and a fox-like head", + "example_sentence_english": "The Queen of England was famous for her love of corgis.", + "pos": "noun", + "word_frequency": 24825 + }, + { + "word": "corsair", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a pirate, especially one from the Barbary Coast; a pirate ship", + "example_sentence_english": "The corsair sailed the Mediterranean, raiding merchant ships.", + "pos": "noun", + "word_frequency": 24826 + }, + { + "word": "crescendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a gradual increase in loudness or intensity", + "example_sentence_english": "The music built to a dramatic crescendo.", + "pos": "noun", + "word_frequency": 24829 + }, + { + "word": "cuss", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a curse word; an annoying or unpleasant person or thing", + "example_sentence_english": "He let out a loud cuss when he hit his thumb with the hammer.", + "pos": "noun", + "word_frequency": 24830 + }, + { + "word": "dauphin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the eldest son of the King of France, and heir to the throne", + "example_sentence_english": "The Dauphin of France was often a figure of political intrigue.", + "pos": "noun", + "word_frequency": 24831 + }, + { + "word": "deformity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a physical blemish or distortion", + "example_sentence_english": "The accident left him with a slight deformity in his leg.", + "pos": "noun", + "word_frequency": 24833 + }, + { + "word": "dibs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a claim to something; a right to something", + "example_sentence_english": "I call dibs on the front seat!", + "pos": "noun", + "word_frequency": 24835 + }, + { + "word": "dinghy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small boat, especially an inflatable rubber boat", + "example_sentence_english": "They rowed the small dinghy out to the yacht.", + "pos": "noun", + "word_frequency": 24837 + }, + { + "word": "dipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ladle; a bird that dives for food; part of a constellation", + "example_sentence_english": "He used a dipper to scoop water from the well.", + "pos": "noun", + "word_frequency": 24838 + }, + { + "word": "dipshit", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a foolish or incompetent person (offensive slang)", + "example_sentence_english": "Don't be such a dipshit and pay attention!", + "pos": "noun", + "word_frequency": 24839 + }, + { + "word": "disobey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refuse to obey", + "example_sentence_english": "Children should not disobey their parents.", + "pos": "verb", + "word_frequency": 24840 + }, + { + "word": "diverge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to separate and go in different directions", + "example_sentence_english": "The two paths diverge at the old oak tree.", + "pos": "verb", + "word_frequency": 24841 + }, + { + "word": "downpour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a heavy fall of rain", + "example_sentence_english": "We got caught in a sudden downpour.", + "pos": "noun", + "word_frequency": 24843 + }, + { + "word": "drifter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who travels from place to place without a home or job", + "example_sentence_english": "He lived like a drifter, never staying in one town for long.", + "pos": "noun", + "word_frequency": 24844 + }, + { + "word": "dusky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark in color; dim", + "example_sentence_english": "The dusky light of evening filled the room.", + "pos": "adjective", + "word_frequency": 24847 + }, + { + "word": "dystrophy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a disorder in which an organ or tissue of the body wastes away", + "example_sentence_english": "Muscular dystrophy is a group of diseases that cause progressive weakness and loss of muscle mass.", + "pos": "noun", + "word_frequency": 24848 + }, + { + "word": "eastside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the eastern part of a town or area", + "example_sentence_english": "They live on the eastside of the city.", + "pos": "noun", + "word_frequency": 24849 + }, + { + "word": "eloquence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluent or persuasive speaking or writing", + "example_sentence_english": "His eloquence captivated the audience.", + "pos": "noun", + "word_frequency": 24850 + }, + { + "word": "enhancer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that improves or increases the quality of something", + "example_sentence_english": "This new software is a great enhancer for productivity.", + "pos": "noun", + "word_frequency": 24852 + }, + { + "word": "enquirer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who asks for information", + "example_sentence_english": "The enquirer waited patiently for a response.", + "pos": "noun", + "word_frequency": 24853 + }, + { + "word": "epitaph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a phrase or statement written in memory of a person who has died, especially as an inscription on a tombstone", + "example_sentence_english": "The epitaph on the tombstone read, 'Rest in Peace'.", + "pos": "noun", + "word_frequency": 24854 + }, + { + "word": "excrement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waste matter discharged from the bowels or kidneys", + "example_sentence_english": "The scientists analyzed the animal's excrement to study its diet.", + "pos": "noun", + "word_frequency": 24856 + }, + { + "word": "expedient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convenient and practical, although possibly improper or immoral", + "example_sentence_english": "It was more expedient to take the shortcut, even though it was muddy.", + "pos": "adjective", + "word_frequency": 24857 + }, + { + "word": "fallow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "land left uncultivated for a period to restore its fertility", + "example_sentence_english": "The farmer left the field fallow for a season.", + "pos": "adjective", + "word_frequency": 24859 + }, + { + "word": "fanart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artworks created by fans of a work of fiction", + "example_sentence_english": "She spends hours creating fanart of her favorite anime characters.", + "pos": "noun", + "word_frequency": 24860 + }, + { + "word": "fen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a low and marshy or frequently flooded area of land", + "example_sentence_english": "The rare birds nested in the remote fen.", + "pos": "noun", + "word_frequency": 24861 + }, + { + "word": "fiddler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who plays the fiddle (violin)", + "example_sentence_english": "The old fiddler played a lively tune.", + "pos": "noun", + "word_frequency": 24863 + }, + { + "word": "foal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a young horse or other equine animal", + "example_sentence_english": "The mare gave birth to a healthy foal.", + "pos": "noun", + "word_frequency": 24864 + }, + { + "word": "foreclose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to take possession of a mortgaged property when the mortgagor fails to keep up their mortgage payments", + "example_sentence_english": "The bank threatened to foreclose on their house.", + "pos": "verb", + "word_frequency": 24865 + }, + { + "word": "forlorn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pitifully sad and abandoned or lonely", + "example_sentence_english": "The stray dog looked forlorn in the rain.", + "pos": "adjective", + "word_frequency": 24866 + }, + { + "word": "fragmentary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consisting of small parts that are disconnected or incomplete", + "example_sentence_english": "The police only had fragmentary evidence to go on.", + "pos": "adjective", + "word_frequency": 24868 + }, + { + "word": "furlong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit of distance, equal to 220 yards (about 201 meters)", + "example_sentence_english": "The horse won the race by three furlongs.", + "pos": "noun", + "word_frequency": 24870 + }, + { + "word": "gab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "talk, chatter (informal)", + "example_sentence_english": "She loves to have a good gab with her friends.", + "pos": "noun", + "word_frequency": 24871 + }, + { + "word": "gaudy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extravagantly bright or showy, typically tasteless", + "example_sentence_english": "She wore a gaudy necklace with too many jewels.", + "pos": "adjective", + "word_frequency": 24873 + }, + { + "word": "gobble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to eat something very quickly and noisily", + "example_sentence_english": "The hungry dog gobbled down its food.", + "pos": "verb", + "word_frequency": 24878 + }, + { + "word": "godspeed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an expression of good wishes to a person starting a journey or venture", + "example_sentence_english": "We wished them godspeed on their long voyage.", + "pos": "noun", + "word_frequency": 24879 + }, + { + "word": "grout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a material used to fill gaps between tiles", + "example_sentence_english": "We need to clean the grout between the bathroom tiles.", + "pos": "noun", + "word_frequency": 24881 + }, + { + "word": "haddock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of edible marine fish", + "example_sentence_english": "Fish and chips often uses cod or haddock.", + "pos": "noun", + "word_frequency": 24883 + }, + { + "word": "halogen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of chemical elements or a type of lamp", + "example_sentence_english": "The car's headlights use halogen bulbs.", + "pos": "noun", + "word_frequency": 24884 + }, + { + "word": "harpoon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a barbed spear used for hunting large fish or whales", + "example_sentence_english": "The whaler threw the harpoon with great force.", + "pos": "noun", + "word_frequency": 24886 + }, + { + "word": "hazmat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hazardous materials (abbreviation)", + "example_sentence_english": "The hazmat team was called to deal with the chemical spill.", + "pos": "noun", + "word_frequency": 24889 + }, + { + "word": "highlighter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a marker pen used to emphasize text", + "example_sentence_english": "I used a yellow highlighter to mark the important points in the textbook.", + "pos": "noun", + "word_frequency": 24890 + }, + { + "word": "homeopathic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to homeopathy, a system of alternative medicine", + "example_sentence_english": "She prefers homeopathic remedies for her allergies.", + "pos": "adjective", + "word_frequency": 24893 + }, + { + "word": "homogenous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of the same kind; uniform in structure or composition", + "example_sentence_english": "The mixture was perfectly homogenous after stirring.", + "pos": "adjective", + "word_frequency": 24894 + }, + { + "word": "hydrology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of water on Earth", + "example_sentence_english": "The course covers various aspects of hydrology, including river systems and groundwater.", + "pos": "noun", + "word_frequency": 24897 + }, + { + "word": "hypoxia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a condition in which the body or a region of the body is deprived of adequate oxygen supply", + "example_sentence_english": "Symptoms of severe hypoxia include confusion and cyanosis.", + "pos": "noun", + "word_frequency": 24898 + }, + { + "word": "ibis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long-legged wading bird", + "example_sentence_english": "We saw a flock of ibises near the riverbank.", + "pos": "noun", + "word_frequency": 24900 + }, + { + "word": "idealist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is guided by ideals rather than practical considerations", + "example_sentence_english": "He's an idealist who believes in the power of positive change.", + "pos": "noun", + "word_frequency": 24902 + }, + { + "word": "incubate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sit on eggs to hatch them; to develop slowly", + "example_sentence_english": "The hen will incubate her eggs for about three weeks.", + "pos": "verb", + "word_frequency": 24905 + }, + { + "word": "indecisive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not able to make decisions quickly and effectively", + "example_sentence_english": "He's very indecisive and struggles to choose what to eat.", + "pos": "adjective", + "word_frequency": 24906 + }, + { + "word": "indefensible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be defended or justified", + "example_sentence_english": "His actions were completely indefensible.", + "pos": "adjective", + "word_frequency": 24907 + }, + { + "word": "indivisible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be divided or separated", + "example_sentence_english": "The nation declared itself to be one and indivisible.", + "pos": "adjective", + "word_frequency": 24908 + }, + { + "word": "ineffectual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not producing any or the desired effect", + "example_sentence_english": "His efforts to organize the event were ineffectual.", + "pos": "adjective", + "word_frequency": 24909 + }, + { + "word": "inextricably", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that is impossible to disentangle or separate", + "example_sentence_english": "Their fates were inextricably linked.", + "pos": "adverb", + "word_frequency": 24910 + }, + { + "word": "innermost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most private, secret, or intimate", + "example_sentence_english": "She shared her innermost thoughts with her best friend.", + "pos": "adjective", + "word_frequency": 24911 + }, + { + "word": "insoluble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incapable of being dissolved; impossible to solve", + "example_sentence_english": "The sugar was insoluble in cold water.", + "pos": "adjective", + "word_frequency": 24912 + }, + { + "word": "interconnection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mutual connection between two or more things", + "example_sentence_english": "There is a strong interconnection between climate change and human activity.", + "pos": "noun", + "word_frequency": 24913 + }, + { + "word": "introverted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shy, reserved, or tending to focus on one's own thoughts and feelings", + "example_sentence_english": "He's quite introverted and prefers quiet evenings at home.", + "pos": "adjective", + "word_frequency": 24914 + }, + { + "word": "jitter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slight irregular movement, especially in an electrical signal or a person's body", + "example_sentence_english": "The video signal had a slight jitter.", + "pos": "noun", + "word_frequency": 24920 + }, + { + "word": "katana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, single-edged sword used by Japanese samurai", + "example_sentence_english": "He displayed an antique katana on the wall.", + "pos": "noun", + "word_frequency": 24922 + }, + { + "word": "keyhole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hole in a lock into which a key is inserted", + "example_sentence_english": "She peered through the keyhole to see if anyone was inside.", + "pos": "noun", + "word_frequency": 24925 + }, + { + "word": "kyu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rank below black belt in martial arts", + "example_sentence_english": "He achieved his first kyu rank in judo.", + "pos": "noun", + "word_frequency": 24928 + }, + { + "word": "loafer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who avoids work; a type of slip-on shoe", + "example_sentence_english": "He was often called a loafer because he never seemed to do any work.", + "pos": "noun", + "word_frequency": 24933 + }, + { + "word": "lymphocyte", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a type of white blood cell that is part of the immune system", + "example_sentence_english": "Lymphocytes play a crucial role in the body's defense against disease.", + "pos": "noun", + "word_frequency": 24935 + }, + { + "word": "margarine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a butter substitute made from vegetable oils", + "example_sentence_english": "She spread margarine on her toast instead of butter.", + "pos": "noun", + "word_frequency": 24939 + }, + { + "word": "mashup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a combination of elements from various sources", + "example_sentence_english": "The DJ created a mashup of two popular songs.", + "pos": "noun", + "word_frequency": 24940 + }, + { + "word": "melanin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dark brown or black pigment occurring in the hair, skin, and iris of the eye", + "example_sentence_english": "Melanin protects the skin from UV radiation.", + "pos": "noun", + "word_frequency": 24944 + }, + { + "word": "mobster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a criminal gang", + "example_sentence_english": "The movie was about a notorious mobster from the 1930s.", + "pos": "noun", + "word_frequency": 24947 + }, + { + "word": "musty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a stale, damp, or moldy smell", + "example_sentence_english": "The old books in the attic had a musty smell.", + "pos": "adjective", + "word_frequency": 24949 + }, + { + "word": "neuropathy", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a disease or dysfunction of one or more peripheral nerves", + "example_sentence_english": "Diabetic neuropathy can cause numbness and pain in the feet.", + "pos": "noun", + "word_frequency": 24954 + }, + { + "word": "neurotransmitter", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a chemical substance that transmits nerve impulses across a synapse", + "example_sentence_english": "Serotonin is an important neurotransmitter that affects mood.", + "pos": "noun", + "word_frequency": 24955 + }, + { + "word": "niner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the number nine, especially in radio communication", + "example_sentence_english": "The pilot confirmed the altitude as 'flight level niner zero'.", + "pos": "noun", + "word_frequency": 24958 + }, + { + "word": "normalcy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being normal", + "example_sentence_english": "After the storm, everyone longed for a return to normalcy.", + "pos": "noun", + "word_frequency": 24960 + }, + { + "word": "oceanographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to oceanography", + "example_sentence_english": "The research vessel conducted extensive oceanographic surveys.", + "pos": "adjective", + "word_frequency": 24962 + }, + { + "word": "outlay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an amount of money spent", + "example_sentence_english": "The initial outlay for the project was significant.", + "pos": "noun", + "word_frequency": 24966 + }, + { + "word": "overblown", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exaggerated or excessive", + "example_sentence_english": "The media's reaction to the incident was completely overblown.", + "pos": "adjective", + "word_frequency": 24967 + }, + { + "word": "overestimate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estimate to be larger or greater than it really is", + "example_sentence_english": "Don't overestimate how much time you have to complete the task.", + "pos": "verb", + "word_frequency": 24968 + }, + { + "word": "oxytocin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hormone involved in social bonding", + "example_sentence_english": "Oxytocin is often called the \"love hormone.\"", + "pos": "noun", + "word_frequency": 24970 + }, + { + "word": "pandit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Hindu scholar or priest", + "example_sentence_english": "The pandit led the ceremony with great reverence.", + "pos": "noun", + "word_frequency": 24971 + }, + { + "word": "pathos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a quality that evokes pity or sadness", + "example_sentence_english": "The film's ending was full of pathos, bringing tears to many eyes.", + "pos": "noun", + "word_frequency": 24972 + }, + { + "word": "peacekeeper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or group that maintains peace", + "example_sentence_english": "UN peacekeepers were deployed to the conflict zone.", + "pos": "noun", + "word_frequency": 24973 + }, + { + "word": "peninsular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a peninsula", + "example_sentence_english": "The peninsular region is surrounded by water on three sides.", + "pos": "adjective", + "word_frequency": 24976 + }, + { + "word": "physicality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being physical", + "example_sentence_english": "The dancer's performance was marked by incredible physicality.", + "pos": "noun", + "word_frequency": 24978 + }, + { + "word": "poi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Hawaiian staple food made from taro; a type of juggling prop", + "example_sentence_english": "We tried poi for the first time during our trip to Hawaii.", + "pos": "noun", + "word_frequency": 24980 + }, + { + "word": "portraiture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the art of making portraits", + "example_sentence_english": "Her exhibition showcased a wide range of portraiture styles.", + "pos": "noun", + "word_frequency": 24983 + }, + { + "word": "potable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safe to drink", + "example_sentence_english": "The water from the spring is potable.", + "pos": "adjective", + "word_frequency": 24984 + }, + { + "word": "pout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a facial expression indicating displeasure", + "example_sentence_english": "She gave a little pout when she didn't get her way.", + "pos": "noun", + "word_frequency": 24986 + }, + { + "word": "precept", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a general rule intended to regulate behavior or thought", + "example_sentence_english": "The school's guiding precepts emphasized respect and integrity.", + "pos": "noun", + "word_frequency": 24987 + }, + { + "word": "predominately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mainly; for the most part", + "example_sentence_english": "The audience was predominately made up of young people.", + "pos": "adverb", + "word_frequency": 24988 + }, + { + "word": "privatize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer (a business, industry, or service) from public to private ownership and control", + "example_sentence_english": "The government decided to privatize the national railway system.", + "pos": "verb", + "word_frequency": 24989 + }, + { + "word": "psychoactive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affecting the mind or behavior", + "example_sentence_english": "Cannabis is a psychoactive substance.", + "pos": "adjective", + "word_frequency": 24991 + }, + { + "word": "punctual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arriving or doing something at the agreed or proper time", + "example_sentence_english": "It's important to be punctual for meetings.", + "pos": "adjective", + "word_frequency": 24992 + }, + { + "word": "quadrangle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a four-sided court or yard", + "example_sentence_english": "Students often gather in the college quadrangle between classes.", + "pos": "noun", + "word_frequency": 24993 + }, + { + "word": "quickness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being quick", + "example_sentence_english": "Her quickness of thought allowed her to solve the problem rapidly.", + "pos": "noun", + "word_frequency": 24995 + }, + { + "word": "raceway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a track for racing", + "example_sentence_english": "The cars sped around the raceway at incredible speeds.", + "pos": "noun", + "word_frequency": 24997 + }, + { + "word": "reentry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of entering again", + "example_sentence_english": "The spacecraft's reentry into the atmosphere was carefully monitored.", + "pos": "noun", + "word_frequency": 25000 + }, + { + "word": "rephrase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to say or write something in a different way", + "example_sentence_english": "Could you please rephrase that question?", + "pos": "verb", + "word_frequency": 25001 + }, + { + "word": "retrofit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an addition of new parts or equipment to something that was built or made in the past", + "example_sentence_english": "The building underwent a major energy-efficient retrofit.", + "pos": "noun", + "word_frequency": 25002 + }, + { + "word": "robustness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being strong and healthy; the ability to withstand adverse conditions", + "example_sentence_english": "The robustness of the system was tested under extreme conditions.", + "pos": "noun", + "word_frequency": 25005 + }, + { + "word": "roleplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to act out a particular role or character", + "example_sentence_english": "They often roleplay different scenarios in their training sessions.", + "pos": "verb", + "word_frequency": 25007 + }, + { + "word": "résumé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a summary of a person's education, qualifications, and employment history", + "example_sentence_english": "She submitted her résumé to apply for the job.", + "pos": "noun", + "word_frequency": 25011 + }, + { + "word": "savanna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a grassland ecosystem characterized by scattered trees", + "example_sentence_english": "Lions roam freely across the African savanna.", + "pos": "noun", + "word_frequency": 25013 + }, + { + "word": "scifi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "science fiction", + "example_sentence_english": "He loves reading classic scifi novels.", + "pos": "noun", + "word_frequency": 25014 + }, + { + "word": "scriptural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or found in sacred writings or scriptures", + "example_sentence_english": "The sermon included many scriptural references.", + "pos": "adjective", + "word_frequency": 25015 + }, + { + "word": "seedy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disreputable, squalid, or morally questionable", + "example_sentence_english": "They met in a seedy bar on the outskirts of town.", + "pos": "adjective", + "word_frequency": 25016 + }, + { + "word": "sleet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a form of precipitation consisting of ice pellets", + "example_sentence_english": "The forecast predicts sleet and freezing rain tonight.", + "pos": "noun", + "word_frequency": 25022 + }, + { + "word": "slugger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a powerful hitter in baseball", + "example_sentence_english": "The team's new slugger hit a home run in his first game.", + "pos": "noun", + "word_frequency": 25023 + }, + { + "word": "snarky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharply critical or sarcastic in a rude or disrespectful way", + "example_sentence_english": "Her snarky comments often annoyed her colleagues.", + "pos": "adjective", + "word_frequency": 25024 + }, + { + "word": "sorghum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of grain or grass grown for food or fodder", + "example_sentence_english": "Sorghum is a drought-resistant crop.", + "pos": "noun", + "word_frequency": 25028 + }, + { + "word": "spacer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device used to create a space or distance between two things", + "example_sentence_english": "He used a small plastic spacer to ensure even gaps between the tiles.", + "pos": "noun", + "word_frequency": 25030 + }, + { + "word": "spacetime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the four-dimensional continuum of space and time", + "example_sentence_english": "Einstein's theory of relativity describes the fabric of spacetime.", + "pos": "noun", + "word_frequency": 25031 + }, + { + "word": "squeal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long, high-pitched cry or sound", + "example_sentence_english": "We heard a loud squeal of tires as the car braked suddenly.", + "pos": "noun", + "word_frequency": 25034 + }, + { + "word": "squish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soft, wet, yielding sound or sensation", + "example_sentence_english": "The mud made a satisfying squish as he walked through it.", + "pos": "noun", + "word_frequency": 25035 + }, + { + "word": "steppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large area of flat grassland with no trees", + "example_sentence_english": "Wild horses galloped across the vast steppe.", + "pos": "noun", + "word_frequency": 25036 + }, + { + "word": "stubbornness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being determined not to change your mind or do what other people want", + "example_sentence_english": "His stubbornness made it difficult to reach a compromise.", + "pos": "noun", + "word_frequency": 25037 + }, + { + "word": "stunner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strikingly beautiful or impressive person or thing", + "example_sentence_english": "The new building is an absolute stunner.", + "pos": "noun", + "word_frequency": 25038 + }, + { + "word": "subcutaneous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "situated or applied under the skin", + "example_sentence_english": "The medication is administered by subcutaneous injection.", + "pos": "adjective", + "word_frequency": 25039 + }, + { + "word": "subservient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessively willing to obey others", + "example_sentence_english": "She was subservient to her parents' wishes.", + "pos": "adjective", + "word_frequency": 25040 + }, + { + "word": "succinctly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a brief and clearly expressed manner", + "example_sentence_english": "He explained the complex theory succinctly.", + "pos": "adverb", + "word_frequency": 25041 + }, + { + "word": "summarily", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a summary manner; without delay or formality", + "example_sentence_english": "The employee was summarily dismissed for misconduct.", + "pos": "adverb", + "word_frequency": 25042 + }, + { + "word": "summarise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "give a brief statement of the main points of something", + "example_sentence_english": "Can you summarise the main points of the report?", + "pos": "verb", + "word_frequency": 25043 + }, + { + "word": "swab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an absorbent pad or piece of material used for cleaning wounds or taking samples", + "example_sentence_english": "The nurse used a swab to clean the wound.", + "pos": "noun", + "word_frequency": 25045 + }, + { + "word": "swath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a broad strip or area of something", + "example_sentence_english": "The combine harvester cut a wide swath through the wheat field.", + "pos": "noun", + "word_frequency": 25046 + }, + { + "word": "swordsman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who fights with a sword", + "example_sentence_english": "He was known as the finest swordsman in the kingdom.", + "pos": "noun", + "word_frequency": 25047 + }, + { + "word": "synapse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a junction between two nerve cells", + "example_sentence_english": "Information is transmitted across the synapse.", + "pos": "noun", + "word_frequency": 25048 + }, + { + "word": "tattered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old and torn; in poor condition", + "example_sentence_english": "He wore a tattered coat to protect himself from the cold.", + "pos": "adjective", + "word_frequency": 25049 + }, + { + "word": "technicality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a minor detail or point of law", + "example_sentence_english": "The case was dismissed on a legal technicality.", + "pos": "noun", + "word_frequency": 25050 + }, + { + "word": "terracotta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of unglazed, brownish-red earthenware", + "example_sentence_english": "The garden pot was made of terracotta.", + "pos": "noun", + "word_frequency": 25052 + }, + { + "word": "thrush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small or medium-sized songbird", + "example_sentence_english": "A thrush sang sweetly from the tree branch.", + "pos": "noun", + "word_frequency": 25053 + }, + { + "word": "tinnitus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ringing or buzzing in the ears", + "example_sentence_english": "He suffers from chronic tinnitus.", + "pos": "noun", + "word_frequency": 25055 + }, + { + "word": "tribesman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a tribe", + "example_sentence_english": "The tribesman wore traditional clothing.", + "pos": "noun", + "word_frequency": 25057 + }, + { + "word": "tribulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cause of great trouble or suffering", + "example_sentence_english": "They faced many tribulations during their journey.", + "pos": "noun", + "word_frequency": 25058 + }, + { + "word": "tux", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tuxedo", + "example_sentence_english": "He looked sharp in his new tux.", + "pos": "noun", + "word_frequency": 25059 + }, + { + "word": "uncomplicated", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easy to understand or do", + "example_sentence_english": "The instructions were clear and uncomplicated.", + "pos": "adjective", + "word_frequency": 25060 + }, + { + "word": "unconnected", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not joined or linked", + "example_sentence_english": "The two events seemed completely unconnected.", + "pos": "adjective", + "word_frequency": 25061 + }, + { + "word": "underweight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "below a healthy or normal weight", + "example_sentence_english": "The doctor said the baby was slightly underweight.", + "pos": "adjective", + "word_frequency": 25062 + }, + { + "word": "undetectable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be found or noticed", + "example_sentence_english": "The subtle changes were almost undetectable.", + "pos": "adjective", + "word_frequency": 25063 + }, + { + "word": "unprovoked", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without being caused or provoked", + "example_sentence_english": "The attack was completely unprovoked.", + "pos": "adjective", + "word_frequency": 25064 + }, + { + "word": "unremarkable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not interesting or special", + "example_sentence_english": "His performance was rather unremarkable.", + "pos": "adjective", + "word_frequency": 25065 + }, + { + "word": "untrustworthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be relied on as honest or truthful", + "example_sentence_english": "He was considered untrustworthy after lying repeatedly.", + "pos": "adjective", + "word_frequency": 25066 + }, + { + "word": "volition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the power of using one's will", + "example_sentence_english": "He acted entirely of his own volition.", + "pos": "noun", + "word_frequency": 25070 + }, + { + "word": "whittle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carve (wood) into an object by repeatedly cutting small slices from it", + "example_sentence_english": "He used a knife to whittle a piece of wood into a bird.", + "pos": "verb", + "word_frequency": 25071 + }, + { + "word": "wretch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an unfortunate or unhappy person", + "example_sentence_english": "The poor wretch had lost everything.", + "pos": "noun", + "word_frequency": 25074 + }, + { + "word": "abet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To encourage or assist (someone) to do something wrong, in particular, to commit a crime.", + "example_sentence_english": "He was accused of aiding and abetting the thief.", + "pos": "verb", + "word_frequency": 25081 + }, + { + "word": "aimless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Without purpose or direction.", + "example_sentence_english": "He wandered aimlessly through the streets.", + "pos": "adverb", + "word_frequency": 25084 + }, + { + "word": "alfalfa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A leguminous plant widely grown for fodder.", + "example_sentence_english": "Alfalfa is often used as feed for livestock.", + "pos": "noun", + "word_frequency": 25085 + }, + { + "word": "appellant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who applies to a higher court for a reversal of the decision of a lower court.", + "example_sentence_english": "The appellant filed a notice of appeal within the deadline.", + "pos": "noun", + "word_frequency": 25087 + }, + { + "word": "atelier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A workshop or studio, especially one used by an artist or designer.", + "example_sentence_english": "The fashion designer worked late into the night in her atelier.", + "pos": "noun", + "word_frequency": 25090 + }, + { + "word": "baguette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A long, narrow loaf of French bread.", + "example_sentence_english": "She bought a fresh baguette from the bakery.", + "pos": "noun", + "word_frequency": 25093 + }, + { + "word": "bioinformatics", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "The science of collecting and analyzing complex biological data.", + "example_sentence_english": "Bioinformatics plays a crucial role in modern genetic research.", + "pos": "noun", + "word_frequency": 25096 + }, + { + "word": "breastfeed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To feed a baby with milk from the breast.", + "example_sentence_english": "Many mothers choose to breastfeed their infants for the first year.", + "pos": "verb", + "word_frequency": 25097 + }, + { + "word": "brimstone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sulfur, especially in its traditional association with hell.", + "example_sentence_english": "The preacher spoke of fire and brimstone.", + "pos": "noun", + "word_frequency": 25098 + }, + { + "word": "bunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(In baseball) an intentionally soft hit.", + "example_sentence_english": "The batter laid down a perfect bunt to advance the runner.", + "pos": "noun", + "word_frequency": 25101 + }, + { + "word": "burly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(Of a person) large and strong; heavily built.", + "example_sentence_english": "A burly man with a thick beard opened the door.", + "pos": "adjective", + "word_frequency": 25102 + }, + { + "word": "carburetor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A device in an internal combustion engine for mixing air with a fine spray of liquid fuel.", + "example_sentence_english": "He had to clean the carburetor to get the old engine running.", + "pos": "noun", + "word_frequency": 25103 + }, + { + "word": "catacomb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An underground cemetery, especially one consisting of tunnels and rooms with recesses for coffins or tombs.", + "example_sentence_english": "They explored the ancient catacombs beneath the city.", + "pos": "noun", + "word_frequency": 25106 + }, + { + "word": "categorization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action or process of placing into categories.", + "example_sentence_english": "The categorization of data is essential for effective analysis.", + "pos": "noun", + "word_frequency": 25107 + }, + { + "word": "celt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A member of a group of peoples inhabiting much of Europe and Asia Minor in pre-Roman times.", + "example_sentence_english": "The ancient Celts had a rich oral tradition.", + "pos": "noun", + "word_frequency": 25108 + }, + { + "word": "chlamydia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A common sexually transmitted infection.", + "example_sentence_english": "Chlamydia is a bacterial infection that can affect both men and women.", + "pos": "noun", + "word_frequency": 25111 + }, + { + "word": "cobbler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person whose trade is making or repairing shoes; also, a fruit dessert with a thick crust.", + "example_sentence_english": "The old cobbler repaired my worn-out boots.", + "pos": "noun", + "word_frequency": 25113 + }, + { + "word": "cognizant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having knowledge or being aware of.", + "example_sentence_english": "He was cognizant of the risks involved in the venture.", + "pos": "adjective", + "word_frequency": 25114 + }, + { + "word": "conceit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Excessive pride in oneself; a fanciful notion or expression.", + "example_sentence_english": "His conceit made him difficult to work with.", + "pos": "noun", + "word_frequency": 25115 + }, + { + "word": "concubine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(In polygamous societies) a woman who lives with a man but has lower status than his wife or wives.", + "example_sentence_english": "In ancient times, kings often had concubines in addition to their wives.", + "pos": "noun", + "word_frequency": 25116 + }, + { + "word": "contraption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A machine or device that appears strange or unnecessarily complicated, and often badly made or unsafe.", + "example_sentence_english": "He built a strange contraption in his garage.", + "pos": "noun", + "word_frequency": 25117 + }, + { + "word": "coolness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The quality or state of being cool (temperature or demeanor).", + "example_sentence_english": "The coolness of the evening air was refreshing.", + "pos": "noun", + "word_frequency": 25118 + }, + { + "word": "defenceless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without protection; vulnerable", + "example_sentence_english": "The small bird was defenceless against the hawk.", + "pos": "adjective", + "word_frequency": 25122 + }, + { + "word": "dingy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy and drab; dull and dirty", + "example_sentence_english": "The old hotel room was rather dingy and uninviting.", + "pos": "adjective", + "word_frequency": 25125 + }, + { + "word": "disillusionment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of disappointment resulting from the discovery that something is not as good as one believed it to be", + "example_sentence_english": "He felt a deep sense of disillusionment after the election results.", + "pos": "noun", + "word_frequency": 25126 + }, + { + "word": "driverless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a vehicle) operating without a human driver", + "example_sentence_english": "Driverless cars are becoming more common in some cities.", + "pos": "adjective", + "word_frequency": 25130 + }, + { + "word": "dropping", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing that drops or has dropped; animal excrement", + "example_sentence_english": "We found bird droppings on the car windshield.", + "pos": "noun", + "word_frequency": 25131 + }, + { + "word": "drowsy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleepy and lethargic; half asleep", + "example_sentence_english": "The medication made her feel very drowsy.", + "pos": "adjective", + "word_frequency": 25132 + }, + { + "word": "elaboration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of developing or presenting a theory, policy, or system in further detail", + "example_sentence_english": "Could you provide further elaboration on your proposal?", + "pos": "noun", + "word_frequency": 25134 + }, + { + "word": "eocene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a geological epoch that lasted from about 56 to 33.9 million years ago", + "example_sentence_english": "Many early mammal fossils are found from the Eocene epoch.", + "pos": "noun", + "word_frequency": 25138 + }, + { + "word": "epigenetic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or arising from nongenetic influences on gene expression", + "example_sentence_english": "Epigenetic changes can affect how genes are expressed without altering the DNA sequence.", + "pos": "adjective", + "word_frequency": 25139 + }, + { + "word": "esprit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liveliness of mind or spirit; wit", + "example_sentence_english": "The team showed great esprit and determination.", + "pos": "noun", + "word_frequency": 25141 + }, + { + "word": "ethnography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the scientific description of peoples and cultures with their customs, habits, and mutual differences", + "example_sentence_english": "Her research involved extensive ethnography of the local community.", + "pos": "noun", + "word_frequency": 25143 + }, + { + "word": "eunuch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a man who has been castrated, especially (in the past) one employed to guard the women's living areas at an oriental court", + "example_sentence_english": "In ancient times, eunuchs often served in royal courts.", + "pos": "noun", + "word_frequency": 25144 + }, + { + "word": "extort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtain (something) by force, threats, or other unfair means", + "example_sentence_english": "The criminals tried to extort money from the shop owner.", + "pos": "verb", + "word_frequency": 25145 + }, + { + "word": "falter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lose strength or momentum; hesitate or waver", + "example_sentence_english": "Her voice began to falter as she told the sad story.", + "pos": "verb", + "word_frequency": 25146 + }, + { + "word": "fanfiction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiction written by a fan of, and featuring characters from, a particular TV series, movie, etc.", + "example_sentence_english": "She spends hours reading fanfiction based on her favorite book series.", + "pos": "noun", + "word_frequency": 25147 + }, + { + "word": "fantasize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indulge in daydreaming about something desired", + "example_sentence_english": "He often fantasizes about winning the lottery.", + "pos": "verb", + "word_frequency": 25148 + }, + { + "word": "feverish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having or showing the symptoms of a fever; characterized by intense emotion or activity", + "example_sentence_english": "The child felt feverish and had to stay home from school.", + "pos": "adjective", + "word_frequency": 25149 + }, + { + "word": "fibrillation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rapid, irregular, and unsynchronized contraction of muscle fibers", + "example_sentence_english": "Atrial fibrillation is a common type of irregular heartbeat.", + "pos": "noun", + "word_frequency": 25151 + }, + { + "word": "fissure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow opening or line of breakage made by cracking or splitting, especially in rock or earth", + "example_sentence_english": "A deep fissure appeared in the rock after the earthquake.", + "pos": "noun", + "word_frequency": 25152 + }, + { + "word": "fizzy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a drink) effervescent; bubbling", + "example_sentence_english": "I prefer fizzy drinks over still water.", + "pos": "adjective", + "word_frequency": 25153 + }, + { + "word": "frenzied", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wildly excited or agitated", + "example_sentence_english": "The crowd was in a frenzied state after the concert.", + "pos": "adjective", + "word_frequency": 25154 + }, + { + "word": "freudian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or influenced by Sigmund Freud and his methods of psychoanalysis", + "example_sentence_english": "He made a Freudian slip and revealed his true feelings.", + "pos": "adjective", + "word_frequency": 25155 + }, + { + "word": "frightful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very unpleasant, bad, or shocking", + "example_sentence_english": "The weather was frightful, with heavy rain and strong winds.", + "pos": "adjective", + "word_frequency": 25156 + }, + { + "word": "geopolitics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The study of the influence of geography on politics and international relations.", + "example_sentence_english": "The analyst discussed the geopolitics of the Middle East.", + "pos": "noun", + "word_frequency": 25161 + }, + { + "word": "getter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that gets something.", + "example_sentence_english": "He's a good getter of information.", + "pos": "noun", + "word_frequency": 25162 + }, + { + "word": "gourd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A fleshy, typically large fruit with a hard skin, some varieties of which are edible.", + "example_sentence_english": "The farmer grew several types of gourds in his garden.", + "pos": "noun", + "word_frequency": 25164 + }, + { + "word": "halter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rope or strap for leading or tying an animal; a type of top held by a strap around the neck.", + "example_sentence_english": "She put the halter on the horse before leading it to the stable.", + "pos": "noun", + "word_frequency": 25169 + }, + { + "word": "hawker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who travels about selling goods, typically shouting to advertise them.", + "example_sentence_english": "The hawker was selling fresh fruit from his cart.", + "pos": "noun", + "word_frequency": 25170 + }, + { + "word": "hijacker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who illegally seizes an aircraft, vehicle, or cargo in transit.", + "example_sentence_english": "The police arrested the hijacker after a long standoff.", + "pos": "noun", + "word_frequency": 25173 + }, + { + "word": "historiography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The study of historical writing.", + "example_sentence_english": "The course covered the historiography of the American Civil War.", + "pos": "noun", + "word_frequency": 25174 + }, + { + "word": "hybridization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of interbreeding individuals from genetically distinct populations to produce a hybrid.", + "example_sentence_english": "Plant breeders use hybridization to create new varieties of crops.", + "pos": "noun", + "word_frequency": 25177 + }, + { + "word": "hyena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A carnivorous mammal of Africa and Asia, with a doglike appearance and a distinctive 'laughing' cry.", + "example_sentence_english": "The hyena's distinctive laugh echoed across the savanna.", + "pos": "noun", + "word_frequency": 25178 + }, + { + "word": "icebreaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A ship designed to break through ice; an activity or game designed to relax people and facilitate conversation.", + "example_sentence_english": "The facilitator started with an icebreaker game to help everyone get to know each other.", + "pos": "noun", + "word_frequency": 25181 + }, + { + "word": "idolatry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The worship of idols; extreme admiration, love, or reverence for something or someone.", + "example_sentence_english": "The ancient civilization practiced idolatry, worshipping many gods.", + "pos": "noun", + "word_frequency": 25182 + }, + { + "word": "indelible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not able to be forgotten or removed.", + "example_sentence_english": "The experience left an indelible mark on her memory.", + "pos": "adjective", + "word_frequency": 25185 + }, + { + "word": "infantile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Of or relating to infants or infancy; childish.", + "example_sentence_english": "His infantile behavior annoyed everyone in the meeting.", + "pos": "adjective", + "word_frequency": 25187 + }, + { + "word": "interplanetary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Between planets.", + "example_sentence_english": "Scientists are planning future interplanetary missions to Mars.", + "pos": "adjective", + "word_frequency": 25190 + }, + { + "word": "irreverent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Showing a lack of respect for people or things that are generally taken seriously.", + "example_sentence_english": "His irreverent comments often shocked the more traditional members of the audience.", + "pos": "adjective", + "word_frequency": 25192 + }, + { + "word": "isthmus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A narrow strip of land with sea on either side, connecting two larger areas of land.", + "example_sentence_english": "The Isthmus of Panama connects North and South America.", + "pos": "noun", + "word_frequency": 25194 + }, + { + "word": "itinerant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Traveling from place to place.", + "example_sentence_english": "The itinerant preacher traveled from town to town, spreading his message.", + "pos": "adjective", + "word_frequency": 25195 + }, + { + "word": "juke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A deceptive move in sports; a juke joint", + "example_sentence_english": "The running back made a quick juke to avoid the tackle.", + "pos": "noun", + "word_frequency": 25201 + }, + { + "word": "kino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cinema; film", + "example_sentence_english": "The director's latest work is a masterpiece of independent kino.", + "pos": "noun", + "word_frequency": 25208 + }, + { + "word": "leniency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mercy; clemency", + "example_sentence_english": "The judge showed leniency to the first-time offender.", + "pos": "noun", + "word_frequency": 25214 + }, + { + "word": "lymphatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to lymph or the lymphatic system", + "example_sentence_english": "The lymphatic system is crucial for immune function.", + "pos": "adjective", + "word_frequency": 25222 + }, + { + "word": "malleable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Easily shaped; adaptable", + "example_sentence_english": "Gold is a highly malleable metal.", + "pos": "adjective", + "word_frequency": 25226 + }, + { + "word": "mannerism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A habitual gesture or way of speaking; an exaggerated artistic style", + "example_sentence_english": "He had a peculiar mannerism of clearing his throat before speaking.", + "pos": "noun", + "word_frequency": 25227 + }, + { + "word": "manta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A large ray with wing-like pectoral fins", + "example_sentence_english": "We saw a huge manta ray swimming gracefully near the reef.", + "pos": "noun", + "word_frequency": 25228 + }, + { + "word": "marquess", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A British nobleman ranking below a duke and above an earl", + "example_sentence_english": "The marquess inherited the vast estate from his father.", + "pos": "noun", + "word_frequency": 25231 + }, + { + "word": "matinee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A performance in a theater or cinema during the daytime", + "example_sentence_english": "We decided to go to the matinee showing of the new movie.", + "pos": "noun", + "word_frequency": 25232 + }, + { + "word": "mercurial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Subject to sudden or unpredictable changes of mood or mind", + "example_sentence_english": "Her mercurial temperament made her difficult to work with.", + "pos": "adjective", + "word_frequency": 25235 + }, + { + "word": "middling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Moderate or average in size, amount, or rank", + "example_sentence_english": "The restaurant received only middling reviews.", + "pos": "adjective", + "word_frequency": 25237 + }, + { + "word": "millionth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The last in a series of a million; one part of a million", + "example_sentence_english": "He was the millionth customer to enter the store.", + "pos": "adjective", + "word_frequency": 25238 + }, + { + "word": "more", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an additional amount or quantity", + "example_sentence_english": "Can I have some more?", + "pos": "noun", + "word_frequency": 25241 + }, + { + "word": "multimillion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involving several million", + "example_sentence_english": "He signed a multimillion-dollar deal.", + "pos": "adjective", + "word_frequency": 25243 + }, + { + "word": "nicaraguan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person from Nicaragua", + "example_sentence_english": "The Nicaraguan ambassador spoke at the conference.", + "pos": "noun", + "word_frequency": 25247 + }, + { + "word": "outgrow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grow too big for something; develop beyond a habit", + "example_sentence_english": "My son has outgrown all his clothes.", + "pos": "verb", + "word_frequency": 25253 + }, + { + "word": "outpouring", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong and sudden flow or emission", + "example_sentence_english": "There was an outpouring of grief after the tragedy.", + "pos": "noun", + "word_frequency": 25254 + }, + { + "word": "peregrine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of falcon known for its speed", + "example_sentence_english": "The peregrine falcon is the fastest bird in the world.", + "pos": "noun", + "word_frequency": 25257 + }, + { + "word": "personification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the attribution of a personal nature or human characteristics to something non-human", + "example_sentence_english": "Justice is often depicted as a blindfolded woman, a classic personification.", + "pos": "noun", + "word_frequency": 25260 + }, + { + "word": "pheromone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical substance produced and released into the environment by an animal, affecting the behavior of others of its species", + "example_sentence_english": "Insects use pheromones to communicate with each other.", + "pos": "noun", + "word_frequency": 25261 + }, + { + "word": "piecemeal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by parts being done or made at different times or in different ways", + "example_sentence_english": "The project was completed in a piecemeal fashion.", + "pos": "adjective", + "word_frequency": 25262 + }, + { + "word": "piglet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a young pig", + "example_sentence_english": "The sow had a litter of ten tiny piglets.", + "pos": "noun", + "word_frequency": 25263 + }, + { + "word": "placeholder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a symbol or piece of text that is put in a document or other file to show where something else will be put later", + "example_sentence_english": "This text is just a placeholder until we get the final content.", + "pos": "noun", + "word_frequency": 25265 + }, + { + "word": "playmate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a friend with whom a child plays", + "example_sentence_english": "My daughter invited her playmate over for the afternoon.", + "pos": "noun", + "word_frequency": 25266 + }, + { + "word": "politicize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make something a political issue", + "example_sentence_english": "The debate quickly became politicized, losing its original focus.", + "pos": "verb", + "word_frequency": 25270 + }, + { + "word": "popsicle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flavored ice confection on a stick", + "example_sentence_english": "On a hot day, nothing beats a cold popsicle.", + "pos": "noun", + "word_frequency": 25271 + }, + { + "word": "predisposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tendency to suffer from a particular condition or to behave in a particular way", + "example_sentence_english": "He has a genetic predisposition to heart disease.", + "pos": "noun", + "word_frequency": 25272 + }, + { + "word": "prefrontal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the anterior part of the frontal lobe of the brain", + "example_sentence_english": "The prefrontal cortex is involved in decision-making.", + "pos": "adjective", + "word_frequency": 25273 + }, + { + "word": "preservative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used to preserve foodstuffs, wood, or other materials", + "example_sentence_english": "Many processed foods contain artificial preservatives.", + "pos": "noun", + "word_frequency": 25274 + }, + { + "word": "presumptive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on presumption; assumed to be true or valid unless rebutted", + "example_sentence_english": "He is the presumptive nominee for the presidential election.", + "pos": "adjective", + "word_frequency": 25275 + }, + { + "word": "psychoanalytic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving psychoanalysis", + "example_sentence_english": "She is studying psychoanalytic theory.", + "pos": "adjective", + "word_frequency": 25276 + }, + { + "word": "puri", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of unleavened bread, deep-fried and typically served with savory dishes in Indian cuisine", + "example_sentence_english": "We had aloo gobi with hot puri for dinner.", + "pos": "noun", + "word_frequency": 25279 + }, + { + "word": "racy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slightly improper or risqué; lively", + "example_sentence_english": "The comedian told a racy joke that made some people blush.", + "pos": "adjective", + "word_frequency": 25281 + }, + { + "word": "raucous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making a loud and unpleasant noise", + "example_sentence_english": "The raucous crowd cheered loudly for their team.", + "pos": "adjective", + "word_frequency": 25283 + }, + { + "word": "receivable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be received; due to be paid", + "example_sentence_english": "The company has a large amount of accounts receivable.", + "pos": "adjective", + "word_frequency": 25284 + }, + { + "word": "reconstitute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "build up again from parts; restore to liquid form", + "example_sentence_english": "You need to add water to reconstitute the dried soup.", + "pos": "verb", + "word_frequency": 25285 + }, + { + "word": "reincarnate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be born again in another body", + "example_sentence_english": "Some religions believe that souls can reincarnate after death.", + "pos": "verb", + "word_frequency": 25286 + }, + { + "word": "reinsurance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurance that an insurance company buys from another insurance company", + "example_sentence_english": "The company uses reinsurance to spread its risk.", + "pos": "noun", + "word_frequency": 25287 + }, + { + "word": "respectability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being proper, correct, and socially acceptable", + "example_sentence_english": "She always tried to maintain an air of respectability.", + "pos": "noun", + "word_frequency": 25288 + }, + { + "word": "rusher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that rushes; a player who carries the ball in American football", + "example_sentence_english": "The running back is a powerful rusher for the team.", + "pos": "noun", + "word_frequency": 25292 + }, + { + "word": "sanctum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sacred place; a private place where one is not to be disturbed", + "example_sentence_english": "His study was his private sanctum, where he could work undisturbed.", + "pos": "noun", + "word_frequency": 25293 + }, + { + "word": "sensuality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the enjoyment, expression, or pursuit of physical, especially sexual, pleasure", + "example_sentence_english": "The painting captured the sensuality of the human form.", + "pos": "noun", + "word_frequency": 25297 + }, + { + "word": "sequoia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a giant redwood tree", + "example_sentence_english": "The sequoia trees in California are incredibly tall.", + "pos": "noun", + "word_frequency": 25299 + }, + { + "word": "serrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or forming a jagged edge like a saw", + "example_sentence_english": "The knife was designed to serrate the bread easily.", + "pos": "verb", + "word_frequency": 25301 + }, + { + "word": "shunt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a diversion or a bypass; a medical device to drain fluid", + "example_sentence_english": "The surgeon inserted a shunt to relieve the pressure.", + "pos": "noun", + "word_frequency": 25302 + }, + { + "word": "solver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that solves a problem or mystery", + "example_sentence_english": "She is known as an excellent problem solver.", + "pos": "noun", + "word_frequency": 25306 + }, + { + "word": "southland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a southern region or country", + "example_sentence_english": "They traveled to the Southland for the winter.", + "pos": "noun", + "word_frequency": 25307 + }, + { + "word": "spaniel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of dog with long drooping ears and a silky coat", + "example_sentence_english": "My neighbor has a cute cocker spaniel.", + "pos": "noun", + "word_frequency": 25308 + }, + { + "word": "steely", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resembling steel in strength, hardness, or coldness", + "example_sentence_english": "He gave her a steely gaze that showed his determination.", + "pos": "adjective", + "word_frequency": 25311 + }, + { + "word": "stent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tubular support placed temporarily inside a blood vessel or other duct", + "example_sentence_english": "The doctor inserted a stent to keep the artery open.", + "pos": "noun", + "word_frequency": 25312 + }, + { + "word": "subtext", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an underlying and often unspoken meaning or message", + "example_sentence_english": "The subtext of their conversation was that they were unhappy.", + "pos": "noun", + "word_frequency": 25313 + }, + { + "word": "summa", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a comprehensive treatise or summary", + "example_sentence_english": "He wrote a summa of his philosophical ideas.", + "pos": "noun", + "word_frequency": 25314 + }, + { + "word": "supercharge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charge with an additional amount of power or energy", + "example_sentence_english": "The new technology will supercharge the company's growth.", + "pos": "verb", + "word_frequency": 25315 + }, + { + "word": "surety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being sure or certain; a person who takes responsibility for another's performance", + "example_sentence_english": "He acted as surety for his brother's loan.", + "pos": "noun", + "word_frequency": 25316 + }, + { + "word": "sweatpant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casual trousers made of soft, absorbent fabric", + "example_sentence_english": "I like to wear sweatpants when I'm relaxing at home.", + "pos": "noun", + "word_frequency": 25319 + }, + { + "word": "syntactic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to syntax", + "example_sentence_english": "The sentence had a complex syntactic structure.", + "pos": "adjective", + "word_frequency": 25321 + }, + { + "word": "talkie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a motion picture with synchronized sound", + "example_sentence_english": "The Jazz Singer was one of the first talkies.", + "pos": "noun", + "word_frequency": 25323 + }, + { + "word": "thang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thing (informal)", + "example_sentence_english": "Let me tell you somethin' about that thang.", + "pos": "noun", + "word_frequency": 25325 + }, + { + "word": "theorize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "form a theory or theories about something", + "example_sentence_english": "Scientists continue to theorize about the origins of the universe.", + "pos": "verb", + "word_frequency": 25326 + }, + { + "word": "tiebreaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a means of deciding a winner when there is a tie", + "example_sentence_english": "The game went into a tiebreaker after both teams scored equally.", + "pos": "noun", + "word_frequency": 25327 + }, + { + "word": "totalitarianism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of government that is centralized and dictatorial", + "example_sentence_english": "The rise of totalitarianism in the 20th century led to widespread conflict.", + "pos": "noun", + "word_frequency": 25330 + }, + { + "word": "unassuming", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not pretentious or arrogant; modest", + "example_sentence_english": "Despite his success, he remained an unassuming person.", + "pos": "adjective", + "word_frequency": 25334 + }, + { + "word": "undersecretary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a subordinate official, especially in a government department", + "example_sentence_english": "The undersecretary presented the new policy to the committee.", + "pos": "noun", + "word_frequency": 25335 + }, + { + "word": "unintelligible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to understand", + "example_sentence_english": "His speech became unintelligible after the accident.", + "pos": "adjective", + "word_frequency": 25336 + }, + { + "word": "unorganized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not arranged or structured", + "example_sentence_english": "Her desk was completely unorganized, with papers everywhere.", + "pos": "adjective", + "word_frequency": 25337 + }, + { + "word": "verity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a true principle or belief, especially one of fundamental importance", + "example_sentence_english": "The verity of his statement was undeniable.", + "pos": "noun", + "word_frequency": 25341 + }, + { + "word": "victimization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of singling someone out for cruel or unjust treatment", + "example_sentence_english": "The report highlighted the ongoing victimization of minority groups.", + "pos": "noun", + "word_frequency": 25342 + }, + { + "word": "woodpecker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bird that pecks holes in trees", + "example_sentence_english": "A woodpecker was tapping loudly on the tree trunk.", + "pos": "noun", + "word_frequency": 25347 + }, + { + "word": "yip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, sharp cry or bark", + "example_sentence_english": "The small dog gave a sudden yip of excitement.", + "pos": "noun", + "word_frequency": 25353 + }, + { + "word": "zigzag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a line or course having abrupt alternate right and left turns", + "example_sentence_english": "The path followed a zigzag pattern up the hill.", + "pos": "noun", + "word_frequency": 25355 + }, + { + "word": "abscess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a swollen area within body tissue, containing pus", + "example_sentence_english": "The dentist drained the abscess in his gum.", + "pos": "noun", + "word_frequency": 25360 + }, + { + "word": "absorbent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to soak up liquid easily", + "example_sentence_english": "Paper towels are very absorbent.", + "pos": "adjective", + "word_frequency": 25361 + }, + { + "word": "acrobatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or involving acrobatics", + "example_sentence_english": "The gymnast performed an acrobatic routine.", + "pos": "adjective", + "word_frequency": 25362 + }, + { + "word": "acuity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sharpness or keenness of thought, vision, or hearing", + "example_sentence_english": "His visual acuity was excellent.", + "pos": "noun", + "word_frequency": 25363 + }, + { + "word": "agate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of chalcedony, typically banded", + "example_sentence_english": "The necklace was made with polished agate stones.", + "pos": "noun", + "word_frequency": 25368 + }, + { + "word": "airstrip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strip of ground for the takeoff and landing of aircraft", + "example_sentence_english": "The small plane landed on the remote airstrip.", + "pos": "noun", + "word_frequency": 25369 + }, + { + "word": "antiquarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who studies or collects antiques or antiquities", + "example_sentence_english": "The antiquarian spent hours examining the ancient manuscript.", + "pos": "noun", + "word_frequency": 25374 + }, + { + "word": "antiseptic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventing the growth of disease-causing microorganisms", + "example_sentence_english": "She cleaned the wound with an antiseptic wipe.", + "pos": "adjective", + "word_frequency": 25375 + }, + { + "word": "arbitrage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the simultaneous buying and selling of securities, currency, or commodities in different markets or in derivative forms in order to take advantage of differing prices for the same asset", + "example_sentence_english": "He made a profit through currency arbitrage.", + "pos": "noun", + "word_frequency": 25376 + }, + { + "word": "archduke", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a son of the Emperor of Austria", + "example_sentence_english": "Archduke Franz Ferdinand's assassination sparked World War I.", + "pos": "noun", + "word_frequency": 25377 + }, + { + "word": "ascetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who practices severe self-discipline and abstention", + "example_sentence_english": "The monk lived an ascetic life in the monastery.", + "pos": "noun", + "word_frequency": 25379 + }, + { + "word": "aster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant of the daisy family, typically having purple or white flowers", + "example_sentence_english": "She planted purple asters in her garden.", + "pos": "noun", + "word_frequency": 25380 + }, + { + "word": "attenuation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the reduction of the force, effect, or value of something", + "example_sentence_english": "The attenuation of the signal was due to the long cable.", + "pos": "noun", + "word_frequency": 25381 + }, + { + "word": "avionics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the electronic equipment used in aviation", + "example_sentence_english": "He studied avionics to become an aircraft engineer.", + "pos": "noun", + "word_frequency": 25384 + }, + { + "word": "banshee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a female spirit in Irish folklore whose wailing warns of a death in a house", + "example_sentence_english": "According to legend, the banshee's cry foretells doom.", + "pos": "noun", + "word_frequency": 25386 + }, + { + "word": "beastie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small animal or creature (often used affectionately or humorously)", + "example_sentence_english": "Look at that little beastie crawling on the leaf.", + "pos": "noun", + "word_frequency": 25388 + }, + { + "word": "bedouin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a nomadic Arab of the desert", + "example_sentence_english": "The Bedouin people have a rich nomadic culture.", + "pos": "noun", + "word_frequency": 25389 + }, + { + "word": "beholden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "owing thanks or obligated to someone", + "example_sentence_english": "She felt beholden to him for his kindness.", + "pos": "adjective", + "word_frequency": 25390 + }, + { + "word": "beholder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who sees or observes someone or something", + "example_sentence_english": "Beauty is in the eye of the beholder.", + "pos": "noun", + "word_frequency": 25391 + }, + { + "word": "brahman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ultimate reality in Hinduism; a member of the highest Hindu caste", + "example_sentence_english": "In Hinduism, Brahman is the supreme spirit.", + "pos": "noun", + "word_frequency": 25395 + }, + { + "word": "brahmin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of the highest Hindu caste, that of the priesthood", + "example_sentence_english": "He was born into a Brahmin family.", + "pos": "noun", + "word_frequency": 25396 + }, + { + "word": "bubblegum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of chewing gum that can be blown into bubbles", + "example_sentence_english": "She blew a big bubble with her bubblegum.", + "pos": "noun", + "word_frequency": 25401 + }, + { + "word": "burg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a town or city (informal)", + "example_sentence_english": "It's a quiet little burg in the countryside.", + "pos": "noun", + "word_frequency": 25403 + }, + { + "word": "burp", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a release of gas from the stomach through the mouth", + "example_sentence_english": "He let out a loud burp after drinking the soda.", + "pos": "noun", + "word_frequency": 25404 + }, + { + "word": "canto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a division of a long poem", + "example_sentence_english": "Dante's Inferno is divided into thirty-four cantos.", + "pos": "noun", + "word_frequency": 25406 + }, + { + "word": "canvass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a survey of opinions or votes", + "example_sentence_english": "The political party conducted a door-to-door canvass.", + "pos": "noun", + "word_frequency": 25407 + }, + { + "word": "cashback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a refund or percentage of money returned on a purchase", + "example_sentence_english": "I got cashback when I paid with my debit card.", + "pos": "noun", + "word_frequency": 25408 + }, + { + "word": "casting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of selecting actors for a play or film; an object made by pouring molten metal into a mold", + "example_sentence_english": "The casting for the new movie took several months.", + "pos": "noun", + "word_frequency": 25409 + }, + { + "word": "cathartic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providing psychological relief through the open expression of strong emotions", + "example_sentence_english": "Writing in her journal was a cathartic experience for her.", + "pos": "adjective", + "word_frequency": 25410 + }, + { + "word": "centrifuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a machine with a rapidly rotating container that applies centrifugal force to its contents, typically to separate fluids of different densities", + "example_sentence_english": "The lab technician used a centrifuge to separate the blood components.", + "pos": "noun", + "word_frequency": 25412 + }, + { + "word": "citywide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extending throughout a city", + "example_sentence_english": "There was a citywide celebration after the team won the championship.", + "pos": "adjective", + "word_frequency": 25418 + }, + { + "word": "cocker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of small dog, especially a cocker spaniel", + "example_sentence_english": "My neighbor has a friendly cocker spaniel.", + "pos": "noun", + "word_frequency": 25419 + }, + { + "word": "comatose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a state of coma; extremely sleepy or lethargic", + "example_sentence_english": "After the accident, the patient remained comatose for several days.", + "pos": "adjective", + "word_frequency": 25421 + }, + { + "word": "comforter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick, quilted blanket used as a bed covering; a person or thing that provides comfort", + "example_sentence_english": "She pulled the warm comforter up to her chin.", + "pos": "noun", + "word_frequency": 25422 + }, + { + "word": "commissary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a store, especially in a military base or prison, where food and supplies are sold", + "example_sentence_english": "Soldiers can buy groceries at the base commissary.", + "pos": "noun", + "word_frequency": 25423 + }, + { + "word": "conclave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a private meeting", + "example_sentence_english": "The cardinals held a conclave to elect the new Pope.", + "pos": "noun", + "word_frequency": 25424 + }, + { + "word": "concoction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mixture of various ingredients or elements", + "example_sentence_english": "She made a strange concoction of herbs and spices.", + "pos": "noun", + "word_frequency": 25425 + }, + { + "word": "consternation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feelings of anxiety or dismay, typically at something unexpected", + "example_sentence_english": "To her consternation, the train was delayed by several hours.", + "pos": "noun", + "word_frequency": 25426 + }, + { + "word": "corneal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the cornea of the eye", + "example_sentence_english": "He suffered a corneal abrasion after getting dust in his eye.", + "pos": "adjective", + "word_frequency": 25427 + }, + { + "word": "cornet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a brass musical instrument resembling a trumpet; a type of ice cream cone", + "example_sentence_english": "The musician played a solo on the cornet.", + "pos": "noun", + "word_frequency": 25428 + }, + { + "word": "crawler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that crawls, especially a baby or a web spider", + "example_sentence_english": "The baby is a fast crawler now.", + "pos": "noun", + "word_frequency": 25429 + }, + { + "word": "cuffed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put handcuffs on; to strike with an open hand", + "example_sentence_english": "The police cuffed the suspect and led him away.", + "pos": "verb", + "word_frequency": 25431 + }, + { + "word": "cynic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who believes that people are motivated purely by self-interest", + "example_sentence_english": "He's such a cynic; he never believes anything good will happen.", + "pos": "noun", + "word_frequency": 25432 + }, + { + "word": "daemon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a benevolent or malevolent spiritual being; a computer program that runs in the background", + "example_sentence_english": "In Greek mythology, a daemon was a divine power or spirit.", + "pos": "noun", + "word_frequency": 25433 + }, + { + "word": "dampen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something slightly wet; to make a feeling or reaction less strong", + "example_sentence_english": "The rain began to dampen the ground.", + "pos": "verb", + "word_frequency": 25434 + }, + { + "word": "dancehall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public hall for dancing", + "example_sentence_english": "They spent the evening dancing at the local dancehall.", + "pos": "noun", + "word_frequency": 25435 + }, + { + "word": "defensible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be defended or justified", + "example_sentence_english": "His actions were not morally defensible.", + "pos": "adjective", + "word_frequency": 25436 + }, + { + "word": "denture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a removable plate or frame holding one or more artificial teeth", + "example_sentence_english": "Grandpa had to get new dentures.", + "pos": "noun", + "word_frequency": 25437 + }, + { + "word": "descriptor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a word or expression used to describe or identify something", + "example_sentence_english": "The term 'sustainable' is a key descriptor in environmental policy.", + "pos": "noun", + "word_frequency": 25438 + }, + { + "word": "diehard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubbornly resisting change or discontinuation", + "example_sentence_english": "He's a diehard fan of the local football team.", + "pos": "adjective", + "word_frequency": 25439 + }, + { + "word": "dipole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a pair of equal and opposite electric charges or magnetic poles separated by a small distance.", + "example_sentence_english": "The antenna functions as an electric dipole.", + "pos": "noun", + "word_frequency": 25440 + }, + { + "word": "discoloration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a change in color, especially an unwanted one.", + "example_sentence_english": "The old photograph showed signs of discoloration.", + "pos": "noun", + "word_frequency": 25441 + }, + { + "word": "disinfectant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical liquid that destroys bacteria.", + "example_sentence_english": "She used a strong disinfectant to clean the bathroom.", + "pos": "noun", + "word_frequency": 25442 + }, + { + "word": "dissipation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of dissipating or dispersing; wasteful expenditure or consumption.", + "example_sentence_english": "The dissipation of energy is a key concept in thermodynamics.", + "pos": "noun", + "word_frequency": 25443 + }, + { + "word": "divider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thing that divides something else, especially a partition or screen.", + "example_sentence_english": "We used a room divider to create two separate spaces.", + "pos": "noun", + "word_frequency": 25444 + }, + { + "word": "dynamism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being characterized by vigorous activity and progress.", + "example_sentence_english": "The city's dynamism is evident in its rapid growth.", + "pos": "noun", + "word_frequency": 25448 + }, + { + "word": "effigy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sculpture or model of a person.", + "example_sentence_english": "Protesters burned an effigy of the dictator.", + "pos": "noun", + "word_frequency": 25452 + }, + { + "word": "encroach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrude on (a person's territory or a thing considered to be a right).", + "example_sentence_english": "The sea has started to encroach on the coastline.", + "pos": "verb", + "word_frequency": 25455 + }, + { + "word": "encyclopaedia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a book or set of books giving information on many subjects or on many aspects of one subject.", + "example_sentence_english": "She looked up the definition in the encyclopaedia.", + "pos": "noun", + "word_frequency": 25456 + }, + { + "word": "entomology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the scientific study of insects.", + "example_sentence_english": "His passion for insects led him to study entomology.", + "pos": "noun", + "word_frequency": 25457 + }, + { + "word": "everyman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ordinary or typical person.", + "example_sentence_english": "He portrays the struggles of the everyman in his novels.", + "pos": "noun", + "word_frequency": 25460 + }, + { + "word": "excommunicate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "officially exclude (someone) from participation in the sacraments and services of the Christian Church.", + "example_sentence_english": "The bishop threatened to excommunicate the rebellious priest.", + "pos": "verb", + "word_frequency": 25462 + }, + { + "word": "extravagance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of restraint in spending money or using resources.", + "example_sentence_english": "The party was an extravagance, but everyone enjoyed it.", + "pos": "noun", + "word_frequency": 25463 + }, + { + "word": "faker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who fakes something; an impostor.", + "example_sentence_english": "He was exposed as a faker after his lies were revealed.", + "pos": "noun", + "word_frequency": 25465 + }, + { + "word": "falconer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who hunts with trained falcons.", + "example_sentence_english": "The falconer demonstrated how to handle the bird.", + "pos": "noun", + "word_frequency": 25466 + }, + { + "word": "figurehead", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a nominal leader or head without real power.", + "example_sentence_english": "The king was merely a figurehead, with real power held by the parliament.", + "pos": "noun", + "word_frequency": 25467 + }, + { + "word": "fjord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, narrow, deep inlet of the sea between high, steep cliffs.", + "example_sentence_english": "The cruise ship sailed through the stunning Norwegian fjord.", + "pos": "noun", + "word_frequency": 25469 + }, + { + "word": "flume", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an artificial channel for water, typically used for conveying logs or for the power it provides.", + "example_sentence_english": "The logs were transported down the mountain using a water flume.", + "pos": "noun", + "word_frequency": 25470 + }, + { + "word": "flyover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bridge, road, railway line, or similar structure that crosses over another.", + "example_sentence_english": "Traffic was heavy on the flyover during rush hour.", + "pos": "noun", + "word_frequency": 25471 + }, + { + "word": "gallbladder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the small sac-shaped organ beneath the liver, in which bile is stored after secretion by the liver and before release into the intestine.", + "example_sentence_english": "The doctor explained that the pain was due to a problem with her gallbladder.", + "pos": "noun", + "word_frequency": 25475 + }, + { + "word": "gatherer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or animal that gathers things.", + "example_sentence_english": "Early humans were hunter-gatherers.", + "pos": "noun", + "word_frequency": 25476 + }, + { + "word": "gestational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to gestation", + "example_sentence_english": "The doctor monitored the patient's gestational diabetes.", + "pos": "adjective", + "word_frequency": 25481 + }, + { + "word": "gigabit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit of information equal to one billion bits", + "example_sentence_english": "The new internet connection offers speeds of one gigabit per second.", + "pos": "noun", + "word_frequency": 25482 + }, + { + "word": "girdle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a belt or a light corset", + "example_sentence_english": "She wore a tight girdle under her dress.", + "pos": "noun", + "word_frequency": 25484 + }, + { + "word": "glut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an excessive supply or amount of something", + "example_sentence_english": "There is a glut of oil on the market right now.", + "pos": "noun", + "word_frequency": 25486 + }, + { + "word": "godless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not believing in God or a god", + "example_sentence_english": "Some people consider a society without religion to be godless.", + "pos": "adjective", + "word_frequency": 25487 + }, + { + "word": "gripe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a minor complaint", + "example_sentence_english": "His main gripe was the lack of communication.", + "pos": "noun", + "word_frequency": 25489 + }, + { + "word": "gruff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abrupt or surly in manner or speech", + "example_sentence_english": "Despite his gruff exterior, he was a kind man.", + "pos": "adjective", + "word_frequency": 25490 + }, + { + "word": "haji", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a Muslim who has completed the Hajj pilgrimage to Mecca", + "example_sentence_english": "The old haji shared stories of his journey to Mecca.", + "pos": "noun", + "word_frequency": 25493 + }, + { + "word": "hatchery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place for hatching eggs", + "example_sentence_english": "The salmon hatchery released thousands of young fish into the river.", + "pos": "noun", + "word_frequency": 25495 + }, + { + "word": "haystack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stack of hay", + "example_sentence_english": "Finding a needle in a haystack is an impossible task.", + "pos": "noun", + "word_frequency": 25496 + }, + { + "word": "hearthstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the stone forming the hearth", + "example_sentence_english": "The cat was curled up asleep on the warm hearthstone.", + "pos": "noun", + "word_frequency": 25497 + }, + { + "word": "helical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the form of a helix; spiral", + "example_sentence_english": "The DNA molecule has a double helical structure.", + "pos": "adjective", + "word_frequency": 25501 + }, + { + "word": "hemorrhagic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or causing hemorrhage", + "example_sentence_english": "The patient was diagnosed with hemorrhagic fever.", + "pos": "adjective", + "word_frequency": 25502 + }, + { + "word": "hookah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a water pipe with a long flexible tube", + "example_sentence_english": "They sat around smoking fruit-flavored tobacco from a hookah.", + "pos": "noun", + "word_frequency": 25505 + }, + { + "word": "humpback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of whale with a distinctive hump", + "example_sentence_english": "We saw a magnificent humpback whale breach near the boat.", + "pos": "noun", + "word_frequency": 25508 + }, + { + "word": "hundredth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one of 100 equal parts; the ordinal number after ninety-ninth", + "example_sentence_english": "This is the hundredth time I've told you!", + "pos": "numeral", + "word_frequency": 25509 + }, + { + "word": "igneous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formed from molten rock", + "example_sentence_english": "Granite is a common type of igneous rock.", + "pos": "adjective", + "word_frequency": 25512 + }, + { + "word": "implosion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of collapsing inward violently", + "example_sentence_english": "The old building was brought down by controlled implosion.", + "pos": "noun", + "word_frequency": 25513 + }, + { + "word": "incredulous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unwilling or unable to believe something", + "example_sentence_english": "She gave him an incredulous look when he told her the story.", + "pos": "adjective", + "word_frequency": 25514 + }, + { + "word": "intensification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of making or becoming more intense", + "example_sentence_english": "There has been an intensification of efforts to combat climate change.", + "pos": "noun", + "word_frequency": 25515 + }, + { + "word": "interweave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weave together or entwine", + "example_sentence_english": "The author skillfully interwove several plotlines into a single narrative.", + "pos": "verb", + "word_frequency": 25516 + }, + { + "word": "intrude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "put oneself into a place or situation where one is unwelcome or uninvited", + "example_sentence_english": "I didn't mean to intrude on your private conversation.", + "pos": "verb", + "word_frequency": 25517 + }, + { + "word": "jeweler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes, sells, or repairs jewelry", + "example_sentence_english": "She took her watch to the jeweler for repair.", + "pos": "noun", + "word_frequency": 25518 + }, + { + "word": "jumble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a confused mixture or mass", + "example_sentence_english": "The old box contained a jumble of forgotten items.", + "pos": "noun", + "word_frequency": 25520 + }, + { + "word": "liqueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong, sweet alcoholic drink", + "example_sentence_english": "She offered him a glass of cherry liqueur after dinner.", + "pos": "noun", + "word_frequency": 25535 + }, + { + "word": "locksmith", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes and repairs locks", + "example_sentence_english": "We called a locksmith to open the locked door.", + "pos": "noun", + "word_frequency": 25536 + }, + { + "word": "lolly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lollipop (British English)", + "example_sentence_english": "The child was happily sucking on a colourful lolly.", + "pos": "noun", + "word_frequency": 25537 + }, + { + "word": "londoner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of London", + "example_sentence_english": "As a true Londoner, she knows all the best hidden spots in the city.", + "pos": "noun", + "word_frequency": 25538 + }, + { + "word": "maim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to wound or injure (someone) so that part of the body is permanently damaged", + "example_sentence_english": "The accident left him maimed for life.", + "pos": "verb", + "word_frequency": 25541 + }, + { + "word": "mallard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a common wild duck", + "example_sentence_english": "A male mallard has a distinctive green head.", + "pos": "noun", + "word_frequency": 25543 + }, + { + "word": "mariachi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of traditional Mexican folk music, typically performed by a small group of musicians", + "example_sentence_english": "A mariachi band played lively music at the festival.", + "pos": "noun", + "word_frequency": 25546 + }, + { + "word": "mezzanine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a low storey between two main storeys of a building", + "example_sentence_english": "The theatre has a small mezzanine level with extra seating.", + "pos": "noun", + "word_frequency": 25553 + }, + { + "word": "midlife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the period of life between youth and old age, typically from about 45 to 65", + "example_sentence_english": "Many people re-evaluate their lives during midlife.", + "pos": "noun", + "word_frequency": 25555 + }, + { + "word": "mire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to involve (someone or something) in a difficult or unpleasant situation", + "example_sentence_english": "The company was mired in debt after the failed investment.", + "pos": "verb", + "word_frequency": 25556 + }, + { + "word": "mistletoe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a parasitic plant with white berries, traditionally used as a Christmas decoration", + "example_sentence_english": "They kissed under the mistletoe at the Christmas party.", + "pos": "noun", + "word_frequency": 25558 + }, + { + "word": "mmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massively multiplayer online (game)", + "example_sentence_english": "He spends hours playing his favorite MMO with friends online.", + "pos": "noun", + "word_frequency": 25559 + }, + { + "word": "monetize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To convert into money; to earn revenue from", + "example_sentence_english": "Many content creators try to monetize their videos through advertising.", + "pos": "verb", + "word_frequency": 25562 + }, + { + "word": "monolith", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A large single upright block of stone; a large, impersonal, and immovable organization", + "example_sentence_english": "The ancient monument was a towering monolith, carved from a single piece of rock.", + "pos": "noun", + "word_frequency": 25563 + }, + { + "word": "mump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An infectious disease causing swelling of the salivary glands", + "example_sentence_english": "The child developed a fever and swollen glands, indicating he might have the mumps.", + "pos": "noun", + "word_frequency": 25567 + }, + { + "word": "nudist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who practices nudism", + "example_sentence_english": "The nudist beach was clearly marked with signs.", + "pos": "noun", + "word_frequency": 25573 + }, + { + "word": "outlast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To last longer than; to survive", + "example_sentence_english": "The old car managed to outlast several newer models.", + "pos": "verb", + "word_frequency": 25577 + }, + { + "word": "paratrooper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A soldier trained to parachute from an aircraft", + "example_sentence_english": "The paratrooper landed safely behind enemy lines.", + "pos": "noun", + "word_frequency": 25579 + }, + { + "word": "pathogenesis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "The manner of development of a disease", + "example_sentence_english": "Understanding the pathogenesis of the virus is crucial for developing effective treatments.", + "pos": "noun", + "word_frequency": 25580 + }, + { + "word": "potash", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Potassium carbonate, especially as used in agriculture", + "example_sentence_english": "Farmers often use potash as a fertilizer to improve crop yields.", + "pos": "noun", + "word_frequency": 25587 + }, + { + "word": "predispose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make someone liable or inclined to a specified attitude, action, or condition", + "example_sentence_english": "Genetic factors can predispose individuals to certain diseases.", + "pos": "verb", + "word_frequency": 25588 + }, + { + "word": "presentable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Fit to be seen or introduced; well-dressed or groomed", + "example_sentence_english": "After a quick shower, he felt much more presentable for the meeting.", + "pos": "adjective", + "word_frequency": 25589 + }, + { + "word": "pronouncement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A formal or authoritative announcement or declaration", + "example_sentence_english": "The judge's pronouncement brought the long trial to an end.", + "pos": "noun", + "word_frequency": 25590 + }, + { + "word": "protectionism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The theory or practice of shielding a country's domestic industries from foreign competition by taxing imports", + "example_sentence_english": "The government's new trade policy was criticized as a move towards protectionism.", + "pos": "noun", + "word_frequency": 25591 + }, + { + "word": "radiocarbon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A radioactive isotope of carbon, especially carbon-14", + "example_sentence_english": "Scientists use radiocarbon dating to determine the age of ancient artifacts.", + "pos": "noun", + "word_frequency": 25594 + }, + { + "word": "raunchy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Crude, vulgar, or sexually explicit", + "example_sentence_english": "The comedian's raunchy jokes made some audience members uncomfortable.", + "pos": "adjective", + "word_frequency": 25595 + }, + { + "word": "redesignate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To designate again or differently", + "example_sentence_english": "The committee decided to redesignate the old building as a historical landmark.", + "pos": "verb", + "word_frequency": 25597 + }, + { + "word": "reek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To smell strongly and unpleasantly; to be strongly suggestive of something unpleasant", + "example_sentence_english": "The garbage can began to reek after a few days in the sun.", + "pos": "verb", + "word_frequency": 25598 + }, + { + "word": "reshuffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An act of reorganizing or rearranging, especially a cabinet or team", + "example_sentence_english": "The prime minister announced a major cabinet reshuffle.", + "pos": "noun", + "word_frequency": 25599 + }, + { + "word": "roughness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality or state of being rough", + "example_sentence_english": "The roughness of the stone made it difficult to hold.", + "pos": "noun", + "word_frequency": 25602 + }, + { + "word": "salve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An ointment used to promote healing of the skin", + "example_sentence_english": "She applied a soothing salve to the burn.", + "pos": "noun", + "word_frequency": 25608 + }, + { + "word": "sanatorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A medical establishment for long-term illness", + "example_sentence_english": "He spent several months in the sanatorium recovering from his illness.", + "pos": "noun", + "word_frequency": 25609 + }, + { + "word": "savoury", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(Of food) salty or spicy rather than sweet", + "example_sentence_english": "I prefer savoury snacks over sweet ones.", + "pos": "adjective", + "word_frequency": 25610 + }, + { + "word": "scaly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Covered with or resembling scales", + "example_sentence_english": "The fish had rough, scaly skin.", + "pos": "adjective", + "word_frequency": 25611 + }, + { + "word": "sentimentality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Excessive tenderness, sadness, or nostalgia", + "example_sentence_english": "Her sentimentality often led her to cry during sad movies.", + "pos": "noun", + "word_frequency": 25613 + }, + { + "word": "smudge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A dirty mark or smear", + "example_sentence_english": "There was a smudge of ink on her cheek.", + "pos": "noun", + "word_frequency": 25618 + }, + { + "word": "speckled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Covered or marked with small spots or patches of color", + "example_sentence_english": "The bird had speckled feathers.", + "pos": "adjective", + "word_frequency": 25620 + }, + { + "word": "subsidise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To support (an organization or activity) financially", + "example_sentence_english": "The government decided to subsidise public transport.", + "pos": "verb", + "word_frequency": 25622 + }, + { + "word": "subtype", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A secondary or subordinate type", + "example_sentence_english": "This virus has several different subtypes.", + "pos": "noun", + "word_frequency": 25623 + }, + { + "word": "supplant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To supersede and replace", + "example_sentence_english": "New technology will soon supplant older methods.", + "pos": "verb", + "word_frequency": 25624 + }, + { + "word": "surfboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A long, narrow board used for surfing", + "example_sentence_english": "He carried his surfboard down to the beach.", + "pos": "noun", + "word_frequency": 25625 + }, + { + "word": "swatch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A sample piece of cloth or other material", + "example_sentence_english": "She picked up a swatch of fabric to check the color.", + "pos": "noun", + "word_frequency": 25626 + }, + { + "word": "switchboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A board with switches for making connections in an electric circuit", + "example_sentence_english": "The operator connected the call through the switchboard.", + "pos": "noun", + "word_frequency": 25627 + }, + { + "word": "synthesizer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An electronic musical instrument that generates sounds", + "example_sentence_english": "He played a melody on his new synthesizer.", + "pos": "noun", + "word_frequency": 25628 + }, + { + "word": "terrorize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To create and maintain a state of extreme fear in (someone)", + "example_sentence_english": "The gang continued to terrorize the neighborhood.", + "pos": "verb", + "word_frequency": 25633 + }, + { + "word": "toenail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A nail of a toe", + "example_sentence_english": "She painted her toenails red.", + "pos": "noun", + "word_frequency": 25638 + }, + { + "word": "toothpick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toothpick", + "example_sentence_english": "He used a toothpick after dinner.", + "pos": "noun", + "word_frequency": 25640 + }, + { + "word": "tradesman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tradesman", + "example_sentence_english": "The tradesman fixed the leaky pipe.", + "pos": "noun", + "word_frequency": 25642 + }, + { + "word": "trifecta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trifecta", + "example_sentence_english": "Winning the lottery, getting a promotion, and buying a new house was a personal trifecta for him.", + "pos": "noun", + "word_frequency": 25644 + }, + { + "word": "underserved", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underserved", + "example_sentence_english": "The new clinic aims to help the underserved community.", + "pos": "adjective", + "word_frequency": 25647 + }, + { + "word": "undertone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undertone", + "example_sentence_english": "There was an undertone of sadness in her voice.", + "pos": "noun", + "word_frequency": 25648 + }, + { + "word": "unfairness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfairness", + "example_sentence_english": "The students protested the unfairness of the new rules.", + "pos": "noun", + "word_frequency": 25649 + }, + { + "word": "unwieldy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unwieldy", + "example_sentence_english": "The large box was unwieldy and difficult to carry.", + "pos": "adjective", + "word_frequency": 25650 + }, + { + "word": "urinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urinate", + "example_sentence_english": "It is important to urinate regularly for bladder health.", + "pos": "verb", + "word_frequency": 25651 + }, + { + "word": "urology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urology", + "example_sentence_english": "He made an appointment with a specialist in urology.", + "pos": "noun", + "word_frequency": 25652 + }, + { + "word": "vertebral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vertebral", + "example_sentence_english": "The doctor examined the patient's vertebral column.", + "pos": "adjective", + "word_frequency": 25654 + }, + { + "word": "viennese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Viennese", + "example_sentence_english": "She enjoyed a traditional Viennese coffee.", + "pos": "adjective", + "word_frequency": 25655 + }, + { + "word": "vignette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vignette", + "example_sentence_english": "The play was composed of several short vignettes.", + "pos": "noun", + "word_frequency": 25656 + }, + { + "word": "whisperer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whisperer", + "example_sentence_english": "He was known as the horse whisperer because of his gentle way with animals.", + "pos": "noun", + "word_frequency": 25663 + }, + { + "word": "whitewash", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whitewash", + "example_sentence_english": "The report was accused of being a whitewash, hiding the truth.", + "pos": "noun", + "word_frequency": 25664 + }, + { + "word": "wingspan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wingspan", + "example_sentence_english": "The eagle had an impressive wingspan.", + "pos": "noun", + "word_frequency": 25665 + }, + { + "word": "wiper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wiper", + "example_sentence_english": "The car's wipers struggled to clear the heavy rain.", + "pos": "noun", + "word_frequency": 25667 + }, + { + "word": "wristband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wristband", + "example_sentence_english": "He wore a colorful wristband to the concert.", + "pos": "noun", + "word_frequency": 25668 + }, + { + "word": "xxl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "XXL (extra extra large)", + "example_sentence_english": "He needed an XXL shirt because of his broad shoulders.", + "pos": "noun", + "word_frequency": 25669 + }, + { + "word": "abdication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abdication", + "example_sentence_english": "The king's abdication shocked the nation.", + "pos": "noun", + "word_frequency": 25679 + }, + { + "word": "admittance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of allowing to enter", + "example_sentence_english": "No admittance without a valid pass.", + "pos": "noun", + "word_frequency": 25681 + }, + { + "word": "airbase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a military airfield", + "example_sentence_english": "The military airbase was heavily guarded.", + "pos": "noun", + "word_frequency": 25684 + }, + { + "word": "alpaca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a South American mammal related to the llama", + "example_sentence_english": "Alpacas are known for their soft wool.", + "pos": "noun", + "word_frequency": 25685 + }, + { + "word": "alveolar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the tooth sockets or lung air sacs", + "example_sentence_english": "The 't' sound in English is an alveolar stop.", + "pos": "adjective", + "word_frequency": 25686 + }, + { + "word": "ambivalence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of having mixed feelings or contradictory ideas", + "example_sentence_english": "She felt a strong sense of ambivalence about the job offer.", + "pos": "noun", + "word_frequency": 25688 + }, + { + "word": "amphitheater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an open-air venue used for entertainment", + "example_sentence_english": "The ancient amphitheater could hold thousands of spectators.", + "pos": "noun", + "word_frequency": 25689 + }, + { + "word": "anthropogenic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "originating in human activity", + "example_sentence_english": "Climate change is largely driven by anthropogenic factors.", + "pos": "adjective", + "word_frequency": 25692 + }, + { + "word": "appendage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a part that is joined to something larger", + "example_sentence_english": "A tail is an appendage found on many animals.", + "pos": "noun", + "word_frequency": 25693 + }, + { + "word": "appraiser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who estimates the value of something", + "example_sentence_english": "The art appraiser estimated the painting's value.", + "pos": "noun", + "word_frequency": 25694 + }, + { + "word": "arboretum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a botanical garden devoted to trees", + "example_sentence_english": "We spent the afternoon walking through the arboretum.", + "pos": "noun", + "word_frequency": 25695 + }, + { + "word": "archivist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who maintains and preserves historical records", + "example_sentence_english": "The archivist carefully preserved the old documents.", + "pos": "noun", + "word_frequency": 25696 + }, + { + "word": "arraignment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a formal reading of a criminal charge in court", + "example_sentence_english": "The suspect's arraignment is scheduled for next week.", + "pos": "noun", + "word_frequency": 25699 + }, + { + "word": "arsehole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a contemptible or foolish person (vulgar slang)", + "example_sentence_english": "He called me an arsehole after I cut him off in traffic.", + "pos": "noun", + "word_frequency": 25700 + }, + { + "word": "astrologer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who uses astrology to tell the future", + "example_sentence_english": "An astrologer claims to predict the future based on star positions.", + "pos": "noun", + "word_frequency": 25704 + }, + { + "word": "banknote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of paper money", + "example_sentence_english": "He pulled a crumpled banknote from his pocket.", + "pos": "noun", + "word_frequency": 25706 + }, + { + "word": "beaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flat-bottomed cylindrical container used in laboratories", + "example_sentence_english": "The chemist poured the liquid into a glass beaker.", + "pos": "noun", + "word_frequency": 25707 + }, + { + "word": "bereft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deprived of or lacking something", + "example_sentence_english": "After losing his dog, he felt utterly bereft.", + "pos": "adjective", + "word_frequency": 25709 + }, + { + "word": "bezel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a grooved ring holding a watch crystal or gemstone", + "example_sentence_english": "The watch had a thin gold bezel around its face.", + "pos": "noun", + "word_frequency": 25710 + }, + { + "word": "bicentennial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the two-hundredth anniversary of a significant event", + "example_sentence_english": "The town celebrated its bicentennial with a parade.", + "pos": "noun", + "word_frequency": 25712 + }, + { + "word": "biff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sharp blow or punch", + "example_sentence_english": "He gave the ball a good biff with his bat.", + "pos": "noun", + "word_frequency": 25713 + }, + { + "word": "blameless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innocent of wrongdoing", + "example_sentence_english": "She was entirely blameless in the accident.", + "pos": "adjective", + "word_frequency": 25714 + }, + { + "word": "bootie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft, knitted shoe for a baby", + "example_sentence_english": "The baby wore soft knitted booties.", + "pos": "noun", + "word_frequency": 25717 + }, + { + "word": "bravado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bold manner or a show of boldness intended to impress or intimidate", + "example_sentence_english": "His bravado masked his inner fear.", + "pos": "noun", + "word_frequency": 25719 + }, + { + "word": "buffoon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ridiculous but amusing person; a clown", + "example_sentence_english": "He acted like a complete buffoon at the party, making everyone laugh.", + "pos": "noun", + "word_frequency": 25721 + }, + { + "word": "bullseye", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the center of a target", + "example_sentence_english": "She hit the bullseye with her first dart, winning the game.", + "pos": "noun", + "word_frequency": 25722 + }, + { + "word": "candor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being open and honest", + "example_sentence_english": "Her candor was refreshing, even if her opinions were sometimes blunt.", + "pos": "noun", + "word_frequency": 25727 + }, + { + "word": "cassava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a starchy root vegetable", + "example_sentence_english": "Cassava is a staple food in many tropical countries.", + "pos": "noun", + "word_frequency": 25728 + }, + { + "word": "cellulite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fat deposits causing dimpled skin", + "example_sentence_english": "Many cosmetic products claim to reduce the appearance of cellulite.", + "pos": "noun", + "word_frequency": 25729 + }, + { + "word": "chaste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstaining from sexual relations; pure", + "example_sentence_english": "The novel described a chaste and innocent love story.", + "pos": "adjective", + "word_frequency": 25731 + }, + { + "word": "clamor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a vehement protest or demand", + "example_sentence_english": "The crowd began to clamor for the speaker to address their concerns.", + "pos": "verb", + "word_frequency": 25733 + }, + { + "word": "cobble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mend or make shoes; to assemble roughly", + "example_sentence_english": "They had to cobble together a plan quickly before the deadline.", + "pos": "verb", + "word_frequency": 25734 + }, + { + "word": "communicable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be transmitted from one person to another", + "example_sentence_english": "Influenza is a highly communicable disease.", + "pos": "adjective", + "word_frequency": 25735 + }, + { + "word": "convergent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to meet at a point; coming together", + "example_sentence_english": "The two research teams reached convergent conclusions despite working independently.", + "pos": "adjective", + "word_frequency": 25738 + }, + { + "word": "cosmological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the origin and development of the universe", + "example_sentence_english": "Scientists are studying the cosmological implications of the new discovery.", + "pos": "adjective", + "word_frequency": 25741 + }, + { + "word": "creak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make a harsh, scraping sound", + "example_sentence_english": "The old wooden floorboards would creak with every step.", + "pos": "verb", + "word_frequency": 25744 + }, + { + "word": "creatine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound involved in energy production in muscles", + "example_sentence_english": "Many athletes take creatine supplements to improve performance.", + "pos": "noun", + "word_frequency": 25745 + }, + { + "word": "crick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a painful muscular spasm, especially in the neck or back", + "example_sentence_english": "I woke up with a crick in my neck after sleeping in an awkward position.", + "pos": "noun", + "word_frequency": 25746 + }, + { + "word": "cypher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secret or disguised way of writing; a code", + "example_sentence_english": "The ancient manuscript contained a complex cypher that took years to decode.", + "pos": "noun", + "word_frequency": 25749 + }, + { + "word": "derision", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contemptuous ridicule or mockery", + "example_sentence_english": "His proposal was met with derision from the committee members.", + "pos": "noun", + "word_frequency": 25753 + }, + { + "word": "dermal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the skin or dermis", + "example_sentence_english": "The cream is designed for dermal application to soothe irritated skin.", + "pos": "adjective", + "word_frequency": 25754 + }, + { + "word": "destabilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to upset the stability of; to make unstable", + "example_sentence_english": "The sudden economic downturn threatened to destabilize the entire region.", + "pos": "verb", + "word_frequency": 25755 + }, + { + "word": "dollhouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a miniature house for dolls", + "example_sentence_english": "The little girl spent hours playing with her new dollhouse.", + "pos": "noun", + "word_frequency": 25758 + }, + { + "word": "dramatist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who writes plays", + "example_sentence_english": "William Shakespeare is considered one of the greatest dramatists of all time.", + "pos": "noun", + "word_frequency": 25759 + }, + { + "word": "dressage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a competitive equestrian sport", + "example_sentence_english": "She trains her horse for dressage competitions.", + "pos": "noun", + "word_frequency": 25760 + }, + { + "word": "dysentery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an infection of the intestines", + "example_sentence_english": "The soldiers suffered from dysentery during the campaign.", + "pos": "noun", + "word_frequency": 25763 + }, + { + "word": "enumerate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to list items", + "example_sentence_english": "Please enumerate the reasons for your decision.", + "pos": "verb", + "word_frequency": 25765 + }, + { + "word": "executable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to be run or carried out", + "example_sentence_english": "The file is an executable program.", + "pos": "adjective", + "word_frequency": 25766 + }, + { + "word": "extradite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hand over a person to another jurisdiction", + "example_sentence_english": "The government decided to extradite the suspect.", + "pos": "verb", + "word_frequency": 25767 + }, + { + "word": "filet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boneless piece of meat or fish", + "example_sentence_english": "She ordered a salmon filet for dinner.", + "pos": "noun", + "word_frequency": 25772 + }, + { + "word": "firmness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being firm", + "example_sentence_english": "The firmness of the mattress provided good support.", + "pos": "noun", + "word_frequency": 25773 + }, + { + "word": "flipper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a broad, flat limb used for swimming", + "example_sentence_english": "The seal used its flippers to swim quickly.", + "pos": "noun", + "word_frequency": 25775 + }, + { + "word": "genocidal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to genocide", + "example_sentence_english": "The regime was accused of genocidal acts.", + "pos": "adjective", + "word_frequency": 25779 + }, + { + "word": "germination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of sprouting from a seed", + "example_sentence_english": "The germination of the seeds was successful.", + "pos": "noun", + "word_frequency": 25780 + }, + { + "word": "geyser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hot spring that spouts water and steam", + "example_sentence_english": "Old Faithful is a famous geyser in Yellowstone.", + "pos": "noun", + "word_frequency": 25781 + }, + { + "word": "greave", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a piece of armor for the shin", + "example_sentence_english": "The knight wore greaves to protect his legs.", + "pos": "noun", + "word_frequency": 25787 + }, + { + "word": "greenway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strip of undeveloped land", + "example_sentence_english": "We walked along the greenway by the river.", + "pos": "noun", + "word_frequency": 25790 + }, + { + "word": "hairspray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a liquid sprayed on hair to hold it in place", + "example_sentence_english": "She used hairspray to keep her hairstyle perfect.", + "pos": "noun", + "word_frequency": 25795 + }, + { + "word": "hardback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book with a stiff cover", + "example_sentence_english": "I prefer reading hardback books to paperbacks.", + "pos": "noun", + "word_frequency": 25797 + }, + { + "word": "healthful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conducive to health", + "example_sentence_english": "Eating fresh fruits and vegetables is healthful.", + "pos": "adjective", + "word_frequency": 25798 + }, + { + "word": "hearse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a vehicle for carrying a coffin", + "example_sentence_english": "The hearse slowly drove away from the funeral home.", + "pos": "noun", + "word_frequency": 25799 + }, + { + "word": "herbicide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used to destroy unwanted plants", + "example_sentence_english": "Farmers often use herbicide to control weeds in their fields.", + "pos": "noun", + "word_frequency": 25800 + }, + { + "word": "homemaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who manages a home", + "example_sentence_english": "My grandmother was a dedicated homemaker, always keeping the house tidy.", + "pos": "noun", + "word_frequency": 25801 + }, + { + "word": "hotdog", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sausage served in a long bun", + "example_sentence_english": "We bought a hotdog and a soda at the baseball game.", + "pos": "noun", + "word_frequency": 25802 + }, + { + "word": "hypnotize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put someone into a trance-like state", + "example_sentence_english": "The magician claimed he could hypnotize volunteers from the audience.", + "pos": "verb", + "word_frequency": 25807 + }, + { + "word": "immaturity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of not being fully developed or grown", + "example_sentence_english": "His immaturity was evident in his childish behavior.", + "pos": "noun", + "word_frequency": 25808 + }, + { + "word": "impostor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who pretends to be someone else", + "example_sentence_english": "The police arrested the impostor who had been posing as a doctor.", + "pos": "noun", + "word_frequency": 25809 + }, + { + "word": "inclement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of weather) unpleasant, cold, or wet", + "example_sentence_english": "The game was postponed due to inclement weather.", + "pos": "adjective", + "word_frequency": 25810 + }, + { + "word": "iridescent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing luminous colors that seem to change when seen from different angles", + "example_sentence_english": "The soap bubble had a beautiful iridescent sheen.", + "pos": "adjective", + "word_frequency": 25811 + }, + { + "word": "kata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a detailed choreographed pattern of movements practiced in martial arts", + "example_sentence_english": "He practiced his karate kata every morning.", + "pos": "noun", + "word_frequency": 25818 + }, + { + "word": "kilowatt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of power equal to one thousand watts", + "example_sentence_english": "The solar panels can generate five kilowatts of electricity.", + "pos": "noun", + "word_frequency": 25819 + }, + { + "word": "laborious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requiring much effort and time", + "example_sentence_english": "The task of cleaning the entire house was laborious.", + "pos": "adjective", + "word_frequency": 25822 + }, + { + "word": "legible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clear enough to read", + "example_sentence_english": "Please write clearly so your notes are legible.", + "pos": "adjective", + "word_frequency": 25825 + }, + { + "word": "lingual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to language or the tongue", + "example_sentence_english": "The lingual nerve affects taste and speech.", + "pos": "adjective", + "word_frequency": 25826 + }, + { + "word": "livable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable or good enough to live in or with", + "example_sentence_english": "They were looking for a small but livable apartment.", + "pos": "adjective", + "word_frequency": 25827 + }, + { + "word": "lowercase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(of a letter) not a capital letter", + "example_sentence_english": "Please write your name in lowercase letters.", + "pos": "adjective", + "word_frequency": 25831 + }, + { + "word": "lusty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full of vigor; robust; healthy and strong", + "example_sentence_english": "The choir sang with a lusty enthusiasm.", + "pos": "adjective", + "word_frequency": 25833 + }, + { + "word": "malnourish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide with insufficient or unbalanced nutrition", + "example_sentence_english": "Lack of food can malnourish a child.", + "pos": "verb", + "word_frequency": 25835 + }, + { + "word": "manna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unexpected or gratuitous benefit; spiritual nourishment", + "example_sentence_english": "The unexpected donation was like manna from heaven for the struggling charity.", + "pos": "noun", + "word_frequency": 25838 + }, + { + "word": "materiel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "military equipment and supplies", + "example_sentence_english": "The army's materiel was insufficient for the long campaign.", + "pos": "noun", + "word_frequency": 25841 + }, + { + "word": "microcosm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small world or universe", + "example_sentence_english": "The village was a microcosm of the entire country.", + "pos": "noun", + "word_frequency": 25847 + }, + { + "word": "misdeed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bad or illegal act", + "example_sentence_english": "He was punished for his misdeeds.", + "pos": "noun", + "word_frequency": 25851 + }, + { + "word": "multifaceted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having many aspects or sides", + "example_sentence_english": "Her job is multifaceted, involving many different skills.", + "pos": "adjective", + "word_frequency": 25856 + }, + { + "word": "multiplicity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large number or variety", + "example_sentence_english": "The multiplicity of factors made the problem difficult to solve.", + "pos": "noun", + "word_frequency": 25857 + }, + { + "word": "neurosurgeon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a surgeon specializing in the nervous system", + "example_sentence_english": "The neurosurgeon performed a delicate brain operation.", + "pos": "noun", + "word_frequency": 25863 + }, + { + "word": "nutter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a crazy or foolish person", + "example_sentence_english": "He's a complete nutter, always doing strange things.", + "pos": "noun", + "word_frequency": 25869 + }, + { + "word": "orangutan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large ape from Borneo and Sumatra", + "example_sentence_english": "The orangutan swung gracefully through the trees.", + "pos": "noun", + "word_frequency": 25870 + }, + { + "word": "oregano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a fragrant herb used in cooking", + "example_sentence_english": "I added some fresh oregano to the pasta sauce.", + "pos": "noun", + "word_frequency": 25871 + }, + { + "word": "outdo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to do better than someone else", + "example_sentence_english": "She always tries to outdo her brother in school.", + "pos": "verb", + "word_frequency": 25874 + }, + { + "word": "outplay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to play better than an opponent", + "example_sentence_english": "Our team managed to outplay the champions in the final match.", + "pos": "verb", + "word_frequency": 25875 + }, + { + "word": "outro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the concluding section of a piece of music, broadcast, or show", + "example_sentence_english": "The podcast had a catchy intro and a memorable outro.", + "pos": "noun", + "word_frequency": 25876 + }, + { + "word": "palisade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fence of pointed wooden stakes", + "example_sentence_english": "The fort was protected by a strong wooden palisade.", + "pos": "noun", + "word_frequency": 25879 + }, + { + "word": "passable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceptable; adequate", + "example_sentence_english": "The food was passable, but nothing special.", + "pos": "adjective", + "word_frequency": 25882 + }, + { + "word": "peeve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoy; irritate", + "example_sentence_english": "It really peeves me when people are late.", + "pos": "verb", + "word_frequency": 25884 + }, + { + "word": "perishable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "likely to decay quickly", + "example_sentence_english": "Fresh produce is highly perishable and needs to be refrigerated.", + "pos": "adjective", + "word_frequency": 25885 + }, + { + "word": "photojournalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a journalist who takes photographs", + "example_sentence_english": "The photojournalist captured the dramatic scene.", + "pos": "noun", + "word_frequency": 25889 + }, + { + "word": "polystyrene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a synthetic polymer", + "example_sentence_english": "Many disposable cups are made of polystyrene.", + "pos": "noun", + "word_frequency": 25891 + }, + { + "word": "postulate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suggest or assume the existence of", + "example_sentence_english": "Scientists postulate the existence of dark matter.", + "pos": "verb", + "word_frequency": 25893 + }, + { + "word": "preemptive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taken to prevent something", + "example_sentence_english": "The government launched a preemptive strike.", + "pos": "adjective", + "word_frequency": 25894 + }, + { + "word": "pretender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who claims a right or title", + "example_sentence_english": "He was seen as a pretender to the throne.", + "pos": "noun", + "word_frequency": 25895 + }, + { + "word": "prong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pointed part of a fork or similar implement", + "example_sentence_english": "The fork had three prongs.", + "pos": "noun", + "word_frequency": 25897 + }, + { + "word": "puny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small and weak", + "example_sentence_english": "The puny kitten struggled to climb the stairs.", + "pos": "adjective", + "word_frequency": 25900 + }, + { + "word": "rancid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smelling or tasting unpleasant from being old and stale", + "example_sentence_english": "The butter had turned rancid.", + "pos": "adjective", + "word_frequency": 25906 + }, + { + "word": "reassess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consider or assess again", + "example_sentence_english": "We need to reassess our strategy.", + "pos": "verb", + "word_frequency": 25907 + }, + { + "word": "recoverable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be recovered", + "example_sentence_english": "The data was recoverable after the system crash.", + "pos": "adjective", + "word_frequency": 25909 + }, + { + "word": "reservist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a military reserve force", + "example_sentence_english": "He served as a reservist for ten years.", + "pos": "noun", + "word_frequency": 25913 + }, + { + "word": "restlessness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability to rest or relax", + "example_sentence_english": "His restlessness kept him awake all night.", + "pos": "noun", + "word_frequency": 25915 + }, + { + "word": "royalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a supporter of a monarch or monarchy", + "example_sentence_english": "The royalists fought to restore the king to power.", + "pos": "noun", + "word_frequency": 25917 + }, + { + "word": "screenwriting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the art or process of writing screenplays", + "example_sentence_english": "She is studying screenwriting at film school.", + "pos": "noun", + "word_frequency": 25923 + }, + { + "word": "selectivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being selective", + "example_sentence_english": "The selectivity of the admissions process makes it very competitive.", + "pos": "noun", + "word_frequency": 25924 + }, + { + "word": "sloop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of sailboat with a single mast", + "example_sentence_english": "They sailed their small sloop around the bay.", + "pos": "noun", + "word_frequency": 25927 + }, + { + "word": "spotter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who observes or looks out for something", + "example_sentence_english": "The bird spotter identified a rare species.", + "pos": "noun", + "word_frequency": 25931 + }, + { + "word": "squint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to look at someone or something with one's eyes partly closed", + "example_sentence_english": "He had to squint to read the small print.", + "pos": "verb", + "word_frequency": 25932 + }, + { + "word": "stenosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the abnormal narrowing of a passage in the body", + "example_sentence_english": "Spinal stenosis can cause pain and numbness.", + "pos": "noun", + "word_frequency": 25933 + }, + { + "word": "suffocation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or process of dying from lack of air", + "example_sentence_english": "The cause of death was suffocation.", + "pos": "noun", + "word_frequency": 25936 + }, + { + "word": "syndication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the transfer of something for publication or broadcast by different media organizations", + "example_sentence_english": "The TV show entered syndication after its original run.", + "pos": "noun", + "word_frequency": 25937 + }, + { + "word": "teamster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who drives a team of animals or a truck", + "example_sentence_english": "The teamster delivered the goods across the country.", + "pos": "noun", + "word_frequency": 25939 + }, + { + "word": "technologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who specializes in technology", + "example_sentence_english": "She works as a medical technologist in the hospital.", + "pos": "noun", + "word_frequency": 25940 + }, + { + "word": "tenfold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by ten times; consisting of ten parts", + "example_sentence_english": "The company's profits increased tenfold last year.", + "pos": "numeral", + "word_frequency": 25941 + }, + { + "word": "thrall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of being in someone's power or having great power over someone", + "example_sentence_english": "She was held in thrall by his captivating performance.", + "pos": "noun", + "word_frequency": 25943 + }, + { + "word": "throng", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, densely packed crowd of people or animals", + "example_sentence_english": "A large throng gathered in the square for the concert.", + "pos": "noun", + "word_frequency": 25944 + }, + { + "word": "togetherness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being close to another person or other people", + "example_sentence_english": "Family gatherings promote a sense of togetherness.", + "pos": "noun", + "word_frequency": 25946 + }, + { + "word": "topographical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the arrangement of the natural and artificial physical features of an area", + "example_sentence_english": "The topographical map showed all the hills and valleys.", + "pos": "adjective", + "word_frequency": 25947 + }, + { + "word": "traceable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be found or followed", + "example_sentence_english": "The origin of the infection was traceable to a single source.", + "pos": "adjective", + "word_frequency": 25948 + }, + { + "word": "trite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking originality or freshness; overused", + "example_sentence_english": "His speech was full of trite remarks and clichés.", + "pos": "adjective", + "word_frequency": 25950 + }, + { + "word": "undamaged", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not damaged or harmed", + "example_sentence_english": "Despite the accident, the car remained largely undamaged.", + "pos": "adjective", + "word_frequency": 25953 + }, + { + "word": "unrivalled", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "better than everyone or everything else", + "example_sentence_english": "Her talent for painting is unrivalled.", + "pos": "adjective", + "word_frequency": 25954 + }, + { + "word": "verily", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "truly; certainly", + "example_sentence_english": "Verily, I say unto you, this is the truth.", + "pos": "adverb", + "word_frequency": 25957 + }, + { + "word": "vitae", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of life (as in curriculum vitae)", + "example_sentence_english": "Please attach your curriculum vitae to the application.", + "pos": "noun", + "word_frequency": 25960 + }, + { + "word": "wadi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valley or dry riverbed", + "example_sentence_english": "The explorers navigated through the dry wadi.", + "pos": "noun", + "word_frequency": 25961 + }, + { + "word": "walkthrough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a step-by-step guide or demonstration", + "example_sentence_english": "I watched a video walkthrough to solve the puzzle in the game.", + "pos": "noun", + "word_frequency": 25962 + }, + { + "word": "wallow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roll about in mud or water; to indulge in an unrestrained way", + "example_sentence_english": "Pigs love to wallow in the mud.", + "pos": "verb", + "word_frequency": 25963 + }, + { + "word": "washroom", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a room with facilities for washing, typically a public toilet", + "example_sentence_english": "Excuse me, where is the nearest washroom?", + "pos": "noun", + "word_frequency": 25964 + }, + { + "word": "wily", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clever; full of wiles; cunning", + "example_sentence_english": "The wily fox managed to escape the trap.", + "pos": "adjective", + "word_frequency": 25967 + }, + { + "word": "workhouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a public institution in which the poor were housed and made to work", + "example_sentence_english": "Many poor people were sent to the workhouse in the 19th century.", + "pos": "noun", + "word_frequency": 25970 + }, + { + "word": "acetone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a colorless, volatile, flammable liquid solvent", + "example_sentence_english": "Acetone is often used as nail polish remover.", + "pos": "noun", + "word_frequency": 25983 + }, + { + "word": "actuarial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to actuaries or their work of calculating insurance risks and premiums", + "example_sentence_english": "She works in the actuarial department of an insurance company.", + "pos": "adjective", + "word_frequency": 25984 + }, + { + "word": "adventist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a Christian religious group that believes in the imminent second coming of Christ", + "example_sentence_english": "The Seventh-day Adventist Church is a Protestant Christian denomination.", + "pos": "noun", + "word_frequency": 25986 + }, + { + "word": "amine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organic compound derived from ammonia", + "example_sentence_english": "Many important biological compounds contain amine groups.", + "pos": "noun", + "word_frequency": 25989 + }, + { + "word": "anathema", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "something or someone that one vehemently dislikes; a formal curse", + "example_sentence_english": "The idea of war was anathema to him.", + "pos": "noun", + "word_frequency": 25991 + }, + { + "word": "appeasement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of appeasing; pacification", + "example_sentence_english": "The policy of appeasement failed to prevent the war.", + "pos": "noun", + "word_frequency": 25995 + }, + { + "word": "artisanal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "made in a traditional or non-mechanized way using high-quality ingredients", + "example_sentence_english": "They sell artisanal cheeses at the local market.", + "pos": "adjective", + "word_frequency": 25996 + }, + { + "word": "bantam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small chicken breed", + "example_sentence_english": "She raised bantam chickens in her backyard.", + "pos": "noun", + "word_frequency": 26003 + }, + { + "word": "barrack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building for soldiers", + "example_sentence_english": "The soldiers returned to their barrack after the exercise.", + "pos": "noun", + "word_frequency": 26004 + }, + { + "word": "batty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy; eccentric", + "example_sentence_english": "Her ideas sometimes seem a bit batty, but they're often brilliant.", + "pos": "adjective", + "word_frequency": 26005 + }, + { + "word": "belvedere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "structure with a view", + "example_sentence_english": "From the belvedere, we could see the entire city.", + "pos": "noun", + "word_frequency": 26006 + }, + { + "word": "betta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Siamese fighting fish", + "example_sentence_english": "He bought a colorful betta fish for his aquarium.", + "pos": "noun", + "word_frequency": 26007 + }, + { + "word": "bitty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tiny; very small", + "example_sentence_english": "She found a bitty piece of chocolate under the couch.", + "pos": "adjective", + "word_frequency": 26010 + }, + { + "word": "blurb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short description", + "example_sentence_english": "The blurb on the back of the book sounded very interesting.", + "pos": "noun", + "word_frequency": 26011 + }, + { + "word": "bonsai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miniature tree", + "example_sentence_english": "He carefully pruned his bonsai tree.", + "pos": "noun", + "word_frequency": 26013 + }, + { + "word": "boro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "administrative district", + "example_sentence_english": "The boro council met last night to discuss local issues.", + "pos": "noun", + "word_frequency": 26014 + }, + { + "word": "boyish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "like a boy", + "example_sentence_english": "He still had a boyish charm despite his age.", + "pos": "adjective", + "word_frequency": 26016 + }, + { + "word": "buckwheat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain used for flour", + "example_sentence_english": "Buckwheat flour is often used to make pancakes.", + "pos": "noun", + "word_frequency": 26021 + }, + { + "word": "bushel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unit of dry measure", + "example_sentence_english": "They harvested a bushel of apples from the orchard.", + "pos": "noun", + "word_frequency": 26022 + }, + { + "word": "buttercup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yellow wild flower", + "example_sentence_english": "Children often hold a buttercup under their chin to see if they like butter.", + "pos": "noun", + "word_frequency": 26024 + }, + { + "word": "callback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return call; function", + "example_sentence_english": "I'll give you a callback as soon as I have more information.", + "pos": "noun", + "word_frequency": 26026 + }, + { + "word": "candlestick", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "holder for a candle", + "example_sentence_english": "She placed the candle in the silver candlestick.", + "pos": "noun", + "word_frequency": 26027 + }, + { + "word": "capricious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fickle; unpredictable", + "example_sentence_english": "The weather in spring can be very capricious.", + "pos": "adjective", + "word_frequency": 26028 + }, + { + "word": "carcinogenic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cancer-causing", + "example_sentence_english": "Smoking is known to be carcinogenic.", + "pos": "adjective", + "word_frequency": 26029 + }, + { + "word": "cation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "positively charged ion", + "example_sentence_english": "A cation is an ion with a net positive charge.", + "pos": "noun", + "word_frequency": 26031 + }, + { + "word": "cel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Celsius (abbreviation)", + "example_sentence_english": "The temperature was 25 degrees Cel.", + "pos": "noun", + "word_frequency": 26033 + }, + { + "word": "centaur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythological creature, half-human, half-horse", + "example_sentence_english": "In Greek mythology, a centaur is a creature with the upper body of a human and the lower body of a horse.", + "pos": "noun", + "word_frequency": 26034 + }, + { + "word": "centipede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multi-legged arthropod", + "example_sentence_english": "I saw a centipede crawling on the wall.", + "pos": "noun", + "word_frequency": 26035 + }, + { + "word": "chiffon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light, sheer fabric", + "example_sentence_english": "Her dress was made of delicate chiffon.", + "pos": "noun", + "word_frequency": 26036 + }, + { + "word": "chloroform", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemical compound used as anesthetic", + "example_sentence_english": "Chloroform was once used as an anesthetic during surgery.", + "pos": "noun", + "word_frequency": 26037 + }, + { + "word": "chromatin", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "complex of DNA and proteins in cells", + "example_sentence_english": "Chromatin condenses to form chromosomes during cell division.", + "pos": "noun", + "word_frequency": 26038 + }, + { + "word": "coaxial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a common axis or center", + "example_sentence_english": "The television uses a coaxial cable for its antenna connection.", + "pos": "adjective", + "word_frequency": 26040 + }, + { + "word": "collude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspire; cooperate in a secret or unlawful way", + "example_sentence_english": "The two companies were accused of colluding to fix prices.", + "pos": "verb", + "word_frequency": 26041 + }, + { + "word": "conch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a spiral shell", + "example_sentence_english": "He found a beautiful conch shell on the beach.", + "pos": "noun", + "word_frequency": 26043 + }, + { + "word": "concoct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "create or devise (a story, plan, etc.)", + "example_sentence_english": "She tried to concoct an excuse for being late.", + "pos": "verb", + "word_frequency": 26044 + }, + { + "word": "confucian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a follower of Confucius; relating to Confucius", + "example_sentence_english": "Confucian philosophy emphasizes morality and ethics.", + "pos": "noun", + "word_frequency": 26046 + }, + { + "word": "conveyance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of transporting someone or something", + "example_sentence_english": "The old carriage served as their primary means of conveyance.", + "pos": "noun", + "word_frequency": 26047 + }, + { + "word": "cottonwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of tree", + "example_sentence_english": "The cottonwood trees lined the riverbank.", + "pos": "noun", + "word_frequency": 26053 + }, + { + "word": "crankshaft", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a shaft that converts reciprocating motion into rotary motion", + "example_sentence_english": "The engine's crankshaft was damaged and needed replacement.", + "pos": "noun", + "word_frequency": 26054 + }, + { + "word": "crossbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a horizontal bar", + "example_sentence_english": "The football hit the crossbar and bounced out.", + "pos": "noun", + "word_frequency": 26056 + }, + { + "word": "crème", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cream (often used in French loanwords)", + "example_sentence_english": "She ordered a crème brûlée for dessert.", + "pos": "noun", + "word_frequency": 26057 + }, + { + "word": "cytokine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a protein that acts as a messenger between cells", + "example_sentence_english": "Cytokines play a crucial role in the immune response.", + "pos": "noun", + "word_frequency": 26058 + }, + { + "word": "demarcation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of fixing the boundary or limits of something", + "example_sentence_english": "There was a clear demarcation line between the two territories.", + "pos": "noun", + "word_frequency": 26059 + }, + { + "word": "desalination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of removing salt from seawater", + "example_sentence_english": "Desalination plants are becoming more common in arid regions.", + "pos": "noun", + "word_frequency": 26061 + }, + { + "word": "discernment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to judge well", + "example_sentence_english": "She showed great discernment in her choice of friends.", + "pos": "noun", + "word_frequency": 26063 + }, + { + "word": "dislodge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knock or force out of position", + "example_sentence_english": "The strong winds threatened to dislodge the roof tiles.", + "pos": "verb", + "word_frequency": 26064 + }, + { + "word": "dismember", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tear or cut off the limbs of a person or animal", + "example_sentence_english": "The predator began to dismember its prey.", + "pos": "verb", + "word_frequency": 26065 + }, + { + "word": "disrepair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being broken or in poor condition", + "example_sentence_english": "The old house had fallen into a state of disrepair.", + "pos": "noun", + "word_frequency": 26066 + }, + { + "word": "doing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actions or activities", + "example_sentence_english": "We discussed the day's doings over dinner.", + "pos": "noun", + "word_frequency": 26067 + }, + { + "word": "doorman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person employed to stand at the entrance of a building", + "example_sentence_english": "The doorman greeted us as we entered the hotel.", + "pos": "noun", + "word_frequency": 26068 + }, + { + "word": "easement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a right to cross or otherwise use someone else's land for a specified purpose", + "example_sentence_english": "The property had an easement allowing the neighbor access to the lake.", + "pos": "noun", + "word_frequency": 26073 + }, + { + "word": "endorphin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hormone that interacts with receptors in the brain to reduce pain", + "example_sentence_english": "Exercise can release endorphins, leading to a feeling of well-being.", + "pos": "noun", + "word_frequency": 26078 + }, + { + "word": "engross", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorb all the attention or interest of", + "example_sentence_english": "The book was so engrossing that I lost track of time.", + "pos": "verb", + "word_frequency": 26079 + }, + { + "word": "entwine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twist together", + "example_sentence_english": "The branches of the two trees began to entwine as they grew closer.", + "pos": "verb", + "word_frequency": 26080 + }, + { + "word": "euclidean", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Euclid's geometry", + "example_sentence_english": "Euclidean geometry is the study of plane and solid figures based on axioms and theorems.", + "pos": "adjective", + "word_frequency": 26083 + }, + { + "word": "ewe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female sheep", + "example_sentence_english": "The shepherd led the ewe and her lambs to fresh pasture.", + "pos": "noun", + "word_frequency": 26085 + }, + { + "word": "extraneous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrelevant or unrelated", + "example_sentence_english": "Please remove any extraneous details from your report.", + "pos": "adjective", + "word_frequency": 26086 + }, + { + "word": "exuberance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quality of being full of energy and excitement", + "example_sentence_english": "Her youthful exuberance was infectious.", + "pos": "noun", + "word_frequency": 26087 + }, + { + "word": "eyeglass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lens worn to correct vision", + "example_sentence_english": "He used an eyeglass to examine the tiny inscription.", + "pos": "noun", + "word_frequency": 26088 + }, + { + "word": "familiarize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make acquainted or conversant", + "example_sentence_english": "You should familiarize yourself with the new software before the training session.", + "pos": "verb", + "word_frequency": 26089 + }, + { + "word": "ferrous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "containing iron", + "example_sentence_english": "Steel is a ferrous alloy, meaning it contains iron.", + "pos": "adjective", + "word_frequency": 26092 + }, + { + "word": "feta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of Greek cheese", + "example_sentence_english": "I love adding crumbled feta cheese to my salad.", + "pos": "noun", + "word_frequency": 26093 + }, + { + "word": "forebode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "act as a warning of (something bad)", + "example_sentence_english": "The dark clouds forebode a coming storm.", + "pos": "verb", + "word_frequency": 26095 + }, + { + "word": "frieze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a broad horizontal band of sculpted or painted decoration", + "example_sentence_english": "The ancient temple had an elaborate frieze depicting mythological scenes.", + "pos": "noun", + "word_frequency": 26096 + }, + { + "word": "gatekeeper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who controls access to something", + "example_sentence_english": "The editor acts as a gatekeeper, deciding which articles get published.", + "pos": "noun", + "word_frequency": 26098 + }, + { + "word": "golem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an animated anthropomorphic being in Jewish folklore", + "example_sentence_english": "In the legend, the rabbi created a golem to protect the Jewish community.", + "pos": "noun", + "word_frequency": 26101 + }, + { + "word": "granule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small particle", + "example_sentence_english": "The sugar was in fine granules.", + "pos": "noun", + "word_frequency": 26103 + }, + { + "word": "gridlock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a situation of severe traffic congestion", + "example_sentence_english": "The accident caused complete gridlock on the highway.", + "pos": "noun", + "word_frequency": 26104 + }, + { + "word": "guarantor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who gives a guarantee", + "example_sentence_english": "Her father acted as a guarantor for her apartment lease.", + "pos": "noun", + "word_frequency": 26105 + }, + { + "word": "herbaceous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to herbs, especially non-woody plants", + "example_sentence_english": "Many garden plants are herbaceous, meaning their stems are soft rather than woody.", + "pos": "adjective", + "word_frequency": 26110 + }, + { + "word": "hither", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to or toward this place", + "example_sentence_english": "The old man beckoned them to come hither.", + "pos": "adverb", + "word_frequency": 26115 + }, + { + "word": "illusory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deceptive; based on illusion", + "example_sentence_english": "His sense of security proved to be illusory.", + "pos": "adjective", + "word_frequency": 26126 + }, + { + "word": "inadequacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being insufficient or not good enough", + "example_sentence_english": "She felt a sense of inadequacy when comparing herself to others.", + "pos": "noun", + "word_frequency": 26129 + }, + { + "word": "inaudible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to be heard", + "example_sentence_english": "His whisper was almost inaudible.", + "pos": "adjective", + "word_frequency": 26130 + }, + { + "word": "incapacity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inability to do something or to function normally", + "example_sentence_english": "The illness led to his temporary incapacity to work.", + "pos": "noun", + "word_frequency": 26131 + }, + { + "word": "industrious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligent and hardworking", + "example_sentence_english": "She is an industrious student who always completes her assignments on time.", + "pos": "adjective", + "word_frequency": 26132 + }, + { + "word": "ingress", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of entering; a place or means of entry", + "example_sentence_english": "The building's main ingress was blocked by construction.", + "pos": "noun", + "word_frequency": 26133 + }, + { + "word": "insufferable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "too extreme to bear; intolerable", + "example_sentence_english": "His arrogance made him insufferable to be around.", + "pos": "adjective", + "word_frequency": 26134 + }, + { + "word": "isometric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having equal dimensions; relating to muscular contraction without shortening", + "example_sentence_english": "Isometric exercises involve holding a position without movement.", + "pos": "adjective", + "word_frequency": 26136 + }, + { + "word": "jib", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a triangular staysail set forward of the mast", + "example_sentence_english": "The sailor adjusted the jib to catch the wind.", + "pos": "noun", + "word_frequency": 26139 + }, + { + "word": "jute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, soft, shiny bast fiber that can be spun into coarse, strong threads", + "example_sentence_english": "Many ropes and sacks are made from jute.", + "pos": "noun", + "word_frequency": 26141 + }, + { + "word": "leper", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person suffering from leprosy; an outcast", + "example_sentence_english": "Historically, lepers were often isolated from society.", + "pos": "noun", + "word_frequency": 26150 + }, + { + "word": "levee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an embankment built to prevent the overflow of a river", + "example_sentence_english": "The town built a levee to protect against floods.", + "pos": "noun", + "word_frequency": 26151 + }, + { + "word": "lido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a public outdoor swimming pool or beach resort", + "example_sentence_english": "We spent the afternoon relaxing at the lido.", + "pos": "noun", + "word_frequency": 26153 + }, + { + "word": "lucerne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alfalfa (a plant grown for fodder)", + "example_sentence_english": "Lucerne is a valuable forage crop for livestock.", + "pos": "noun", + "word_frequency": 26156 + }, + { + "word": "lurch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, unsteady, uncontrolled movement or series of movements", + "example_sentence_english": "The bus gave a sudden lurch as it turned the corner.", + "pos": "noun", + "word_frequency": 26157 + }, + { + "word": "magnificence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being magnificent or splendid", + "example_sentence_english": "The magnificence of the cathedral left them speechless.", + "pos": "noun", + "word_frequency": 26159 + }, + { + "word": "marten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marten (a type of mammal)", + "example_sentence_english": "The marten is a slender, agile mammal related to weasels.", + "pos": "noun", + "word_frequency": 26162 + }, + { + "word": "matchmaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matchmaker (person who arranges marriages)", + "example_sentence_english": "She decided to visit a professional matchmaker to help her find a partner.", + "pos": "noun", + "word_frequency": 26163 + }, + { + "word": "measly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "measly (contemptibly small or few)", + "example_sentence_english": "He complained about the measly portion of food he received.", + "pos": "adjective", + "word_frequency": 26168 + }, + { + "word": "megapixel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "megapixel (unit of image resolution)", + "example_sentence_english": "This camera has a 24-megapixel sensor, producing very detailed images.", + "pos": "noun", + "word_frequency": 26169 + }, + { + "word": "meringue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meringue (a dessert made from whipped egg whites and sugar)", + "example_sentence_english": "The lemon pie was topped with a light and fluffy meringue.", + "pos": "noun", + "word_frequency": 26171 + }, + { + "word": "minstrel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "minstrel (a medieval singer or musician)", + "example_sentence_english": "In medieval times, a minstrel would travel from court to court, entertaining nobles.", + "pos": "noun", + "word_frequency": 26172 + }, + { + "word": "moronic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moronic (very foolish or stupid)", + "example_sentence_english": "His moronic comments angered everyone in the room.", + "pos": "adjective", + "word_frequency": 26176 + }, + { + "word": "multidimensional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multidimensional (having many different sides or characteristics)", + "example_sentence_english": "The problem was multidimensional, requiring solutions from various fields.", + "pos": "adjective", + "word_frequency": 26177 + }, + { + "word": "naturalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "naturalism (a style of art or literature that shows things as they are in real life)", + "example_sentence_english": "The artist's work was praised for its stark naturalism.", + "pos": "noun", + "word_frequency": 26180 + }, + { + "word": "neoclassical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neoclassical (relating to a revival of a classical style or treatment in art, literature, architecture, or music)", + "example_sentence_english": "The building's neoclassical facade featured tall columns and symmetrical design.", + "pos": "adjective", + "word_frequency": 26181 + }, + { + "word": "neoliberalism", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "neoliberalism (a political approach that favors free-market capitalism)", + "example_sentence_english": "Critics argue that neoliberalism has led to increased economic inequality.", + "pos": "noun", + "word_frequency": 26182 + }, + { + "word": "newsworthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newsworthy (sufficiently interesting to be reported in a newspaper or news broadcast)", + "example_sentence_english": "The discovery of the ancient artifact was considered highly newsworthy.", + "pos": "adjective", + "word_frequency": 26185 + }, + { + "word": "northerner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "northerner (a person from the north of a country or region)", + "example_sentence_english": "As a northerner, he was used to colder winters.", + "pos": "noun", + "word_frequency": 26187 + }, + { + "word": "oeuvre", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "oeuvre (the complete work of an artist, composer, or writer)", + "example_sentence_english": "The exhibition showcased the entire oeuvre of the renowned painter.", + "pos": "noun", + "word_frequency": 26191 + }, + { + "word": "omnipresent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipresent (present everywhere at the same time)", + "example_sentence_english": "In the digital age, smartphones have become an omnipresent part of our lives.", + "pos": "adjective", + "word_frequency": 26192 + }, + { + "word": "ordinator", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "ordinator (one who ordains or coordinates; often in a religious or technical context)", + "example_sentence_english": "The ordinator was responsible for overseeing the complex project schedule.", + "pos": "noun", + "word_frequency": 26194 + }, + { + "word": "organisation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organization (a structured group of people with a particular purpose)", + "example_sentence_english": "The charity is a non-profit organisation dedicated to helping the homeless.", + "pos": "noun", + "word_frequency": 26195 + }, + { + "word": "osmosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "osmosis (process of gradual absorption, especially of knowledge or ideas)", + "example_sentence_english": "He learned a lot about the business through osmosis, just by being around experienced colleagues.", + "pos": "noun", + "word_frequency": 26196 + }, + { + "word": "outcrop", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outcrop (a rock formation that is visible on the surface)", + "example_sentence_english": "Geologists studied the rock outcrop to understand the area's geological history.", + "pos": "noun", + "word_frequency": 26197 + }, + { + "word": "overhang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overhang (a part of something that extends or hangs over something else)", + "example_sentence_english": "The roof had a wide overhang to protect the porch from rain.", + "pos": "noun", + "word_frequency": 26198 + }, + { + "word": "paganism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a religion other than one of the main world religions, especially a polytheistic religion of ancient times", + "example_sentence_english": "The study of ancient Roman religion often includes aspects of paganism.", + "pos": "noun", + "word_frequency": 26201 + }, + { + "word": "pail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bucket", + "example_sentence_english": "The child carried a small pail to the sandbox.", + "pos": "noun", + "word_frequency": 26202 + }, + { + "word": "palatine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a palace or to a powerful feudal lord; relating to the palate", + "example_sentence_english": "The Palatine Hill is one of the seven hills of Rome.", + "pos": "adjective", + "word_frequency": 26203 + }, + { + "word": "paleontology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of fossils", + "example_sentence_english": "She decided to major in paleontology because of her interest in dinosaurs.", + "pos": "noun", + "word_frequency": 26204 + }, + { + "word": "parabolic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the form of a parabola", + "example_sentence_english": "The satellite dish has a parabolic shape to focus signals.", + "pos": "adjective", + "word_frequency": 26205 + }, + { + "word": "pare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trim something by cutting away its outer edges; reduce something in size, extent, quantity, or number", + "example_sentence_english": "He used a small knife to pare the apple.", + "pos": "verb", + "word_frequency": 26206 + }, + { + "word": "parkour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity or sport of moving rapidly through an area, typically in an urban environment, negotiating obstacles by running, jumping, and climbing", + "example_sentence_english": "Many young people enjoy practicing parkour in urban spaces.", + "pos": "noun", + "word_frequency": 26207 + }, + { + "word": "parlance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a particular way of speaking or using words, especially a way common to those with a particular job or interest", + "example_sentence_english": "In legal parlance, \"habeas corpus\" refers to a specific writ.", + "pos": "noun", + "word_frequency": 26208 + }, + { + "word": "permafrost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thick subsurface layer of soil that remains frozen throughout the year, occurring mainly in polar regions", + "example_sentence_english": "The melting of permafrost is a significant concern for climate change.", + "pos": "noun", + "word_frequency": 26209 + }, + { + "word": "permutation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a way, especially one of several possible variations, in which a set or number of things can be ordered or arranged", + "example_sentence_english": "There are six possible permutations of the letters A, B, and C.", + "pos": "noun", + "word_frequency": 26210 + }, + { + "word": "plexus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a network of nerves or vessels in the body", + "example_sentence_english": "The solar plexus is a complex network of nerves in the abdomen.", + "pos": "noun", + "word_frequency": 26212 + }, + { + "word": "politic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of an action) seeming sensible and judicious under the circumstances", + "example_sentence_english": "It was not politic to mention the controversial topic at the meeting.", + "pos": "adjective", + "word_frequency": 26213 + }, + { + "word": "poncho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a garment of a type originally worn in South America, made of a piece of cloth with a hole in the middle for the head", + "example_sentence_english": "She wore a colorful poncho to keep warm.", + "pos": "noun", + "word_frequency": 26214 + }, + { + "word": "poolside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area immediately surrounding a swimming pool", + "example_sentence_english": "We spent the afternoon relaxing poolside.", + "pos": "noun", + "word_frequency": 26215 + }, + { + "word": "preeminent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surpassing all others; very distinguished in some way", + "example_sentence_english": "He is the preeminent expert in his field.", + "pos": "adjective", + "word_frequency": 26216 + }, + { + "word": "prefabricate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacture sections of (a building or structure) off-site, for assembly on-site", + "example_sentence_english": "Many modern homes are prefabricated in factories to save time.", + "pos": "verb", + "word_frequency": 26217 + }, + { + "word": "presbytery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the house of a Catholic priest; a body of presbyters", + "example_sentence_english": "The priest lives in the presbytery next to the church.", + "pos": "noun", + "word_frequency": 26218 + }, + { + "word": "presser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a press conference (informal); a person or thing that presses", + "example_sentence_english": "The president held a presser to address the recent events.", + "pos": "noun", + "word_frequency": 26220 + }, + { + "word": "prioritise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determine the order for dealing with (a series of tasks or projects) according to their relative importance", + "example_sentence_english": "You need to prioritise your tasks to meet the deadline.", + "pos": "verb", + "word_frequency": 26221 + }, + { + "word": "propriety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of conforming to conventionally accepted standards of behavior or morals", + "example_sentence_english": "He was known for his strict adherence to social propriety.", + "pos": "noun", + "word_frequency": 26223 + }, + { + "word": "raze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "completely destroy (a building, town, or other site)", + "example_sentence_english": "The old factory was razed to make way for new apartments.", + "pos": "verb", + "word_frequency": 26227 + }, + { + "word": "rejuvenation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of making someone or something look or feel younger, fresher, or more lively", + "example_sentence_english": "The city park underwent a complete rejuvenation project.", + "pos": "noun", + "word_frequency": 26228 + }, + { + "word": "repatriate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "send (someone) back to their own country", + "example_sentence_english": "The government decided to repatriate the refugees.", + "pos": "verb", + "word_frequency": 26229 + }, + { + "word": "resection", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the surgical removal of part of an organ or structure", + "example_sentence_english": "The patient underwent a bowel resection.", + "pos": "noun", + "word_frequency": 26230 + }, + { + "word": "reseller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that sells something they have bought to someone else", + "example_sentence_english": "The company works with a network of authorized resellers.", + "pos": "noun", + "word_frequency": 26231 + }, + { + "word": "sarcophagus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stone coffin, typically adorned with a sculpture or inscription and associated with the ancient Egyptians, Greeks, and Romans", + "example_sentence_english": "The ancient sarcophagus was discovered in the tomb.", + "pos": "noun", + "word_frequency": 26238 + }, + { + "word": "scab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a crust that forms over a cut or wound; a strikebreaker", + "example_sentence_english": "The scab on my knee fell off.", + "pos": "noun", + "word_frequency": 26243 + }, + { + "word": "scoot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move quickly", + "example_sentence_english": "Can you scoot over a bit so I can sit down?", + "pos": "verb", + "word_frequency": 26246 + }, + { + "word": "scratchy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough, causing an itching sensation", + "example_sentence_english": "This wool sweater feels very scratchy.", + "pos": "adjective", + "word_frequency": 26248 + }, + { + "word": "scuffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, confused fight or struggle", + "example_sentence_english": "There was a small scuffle outside the bar.", + "pos": "noun", + "word_frequency": 26249 + }, + { + "word": "secede", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to withdraw formally from an alliance or federation", + "example_sentence_english": "Several states threatened to secede from the union.", + "pos": "verb", + "word_frequency": 26250 + }, + { + "word": "seep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flow or leak slowly through porous material or small holes", + "example_sentence_english": "Water began to seep through the cracks in the ceiling.", + "pos": "verb", + "word_frequency": 26251 + }, + { + "word": "sensuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or affecting the senses rather than the intellect", + "example_sentence_english": "The artist created a sensuous painting with rich colors.", + "pos": "adjective", + "word_frequency": 26252 + }, + { + "word": "shabbat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the Jewish Sabbath", + "example_sentence_english": "Observant Jews celebrate Shabbat from Friday evening to Saturday evening.", + "pos": "noun", + "word_frequency": 26253 + }, + { + "word": "shakti", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divine feminine creative power in Hinduism", + "example_sentence_english": "In Hinduism, Shakti represents the dynamic energy of the universe.", + "pos": "noun", + "word_frequency": 26254 + }, + { + "word": "shanti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peace (Sanskrit)", + "example_sentence_english": "The meditation ended with a chant of \"Om Shanti, Shanti, Shanti.\"", + "pos": "noun", + "word_frequency": 26255 + }, + { + "word": "shaver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an electric razor", + "example_sentence_english": "He used his electric shaver to trim his beard.", + "pos": "noun", + "word_frequency": 26256 + }, + { + "word": "sherpa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a Himalayan people; a guide for mountaineers", + "example_sentence_english": "A Sherpa helped the climbers carry their gear up the mountain.", + "pos": "noun", + "word_frequency": 26257 + }, + { + "word": "showy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ostentatious, attracting attention", + "example_sentence_english": "The peacock displayed its showy feathers.", + "pos": "adjective", + "word_frequency": 26258 + }, + { + "word": "sideboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of furniture for holding dishes and serving food", + "example_sentence_english": "We keep our best china in the dining room sideboard.", + "pos": "noun", + "word_frequency": 26259 + }, + { + "word": "silliness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being silly", + "example_sentence_english": "The children's silliness made everyone laugh.", + "pos": "noun", + "word_frequency": 26260 + }, + { + "word": "skittle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pin used in the game of skittles", + "example_sentence_english": "He knocked down all the skittles with one throw.", + "pos": "noun", + "word_frequency": 26262 + }, + { + "word": "spate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large number of similar things or events appearing or occurring in quick succession", + "example_sentence_english": "There has been a recent spate of burglaries in the neighborhood.", + "pos": "noun", + "word_frequency": 26268 + }, + { + "word": "stealthy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behaving, done, or made in a cautious and surreptitious manner, so as not to be seen or heard", + "example_sentence_english": "The cat made a stealthy approach towards the bird.", + "pos": "adjective", + "word_frequency": 26270 + }, + { + "word": "storybook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book containing stories, especially for children", + "example_sentence_english": "My grandmother used to read me a storybook every night.", + "pos": "noun", + "word_frequency": 26271 + }, + { + "word": "strobe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device producing flashes of light", + "example_sentence_english": "The photographer used a strobe light to illuminate the subject.", + "pos": "noun", + "word_frequency": 26272 + }, + { + "word": "subduction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sideways and downward movement of the edge of a plate of the earth's crust into the mantle beneath another plate", + "example_sentence_english": "The process of subduction creates deep ocean trenches.", + "pos": "noun", + "word_frequency": 26274 + }, + { + "word": "submersible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small vessel designed to operate underwater", + "example_sentence_english": "The research team used a submersible to explore the ocean floor.", + "pos": "noun", + "word_frequency": 26275 + }, + { + "word": "suburbia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the suburbs or their inhabitants, especially considered as a cultural entity", + "example_sentence_english": "Life in suburbia often involves commuting to the city for work.", + "pos": "noun", + "word_frequency": 26276 + }, + { + "word": "superlative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of the highest quality or degree", + "example_sentence_english": "Her performance was truly superlative.", + "pos": "adjective", + "word_frequency": 26279 + }, + { + "word": "surmount", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overcome", + "example_sentence_english": "She managed to surmount the many obstacles in her path.", + "pos": "verb", + "word_frequency": 26280 + }, + { + "word": "sylvan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to woods or forests", + "example_sentence_english": "The cabin was nestled in a sylvan setting, surrounded by trees.", + "pos": "adjective", + "word_frequency": 26282 + }, + { + "word": "tabby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cat with a striped or mottled coat", + "example_sentence_english": "Our new kitten is a cute tabby with distinctive stripes.", + "pos": "noun", + "word_frequency": 26284 + }, + { + "word": "thorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a radioactive metallic element", + "example_sentence_english": "Thorium is being explored as an alternative nuclear fuel.", + "pos": "noun", + "word_frequency": 26286 + }, + { + "word": "throe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong spasm or pang of pain", + "example_sentence_english": "The country was in the throes of a major economic crisis.", + "pos": "noun", + "word_frequency": 26287 + }, + { + "word": "tomboy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a girl who enjoys rough, noisy activities traditionally associated with boys", + "example_sentence_english": "She was a real tomboy, always climbing trees and playing sports.", + "pos": "noun", + "word_frequency": 26290 + }, + { + "word": "tonsil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "either of two small masses of lymphoid tissue in the throat", + "example_sentence_english": "He had his tonsils removed when he was a child.", + "pos": "noun", + "word_frequency": 26291 + }, + { + "word": "triassic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the first period of the Mesozoic era", + "example_sentence_english": "Dinosaurs first appeared during the Triassic period.", + "pos": "adjective", + "word_frequency": 26292 + }, + { + "word": "tricycle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a three-wheeled vehicle", + "example_sentence_english": "The toddler learned to ride his new tricycle in the park.", + "pos": "noun", + "word_frequency": 26293 + }, + { + "word": "unaltered", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not changed or modified", + "example_sentence_english": "The ancient ruins remained largely unaltered over the centuries.", + "pos": "adjective", + "word_frequency": 26297 + }, + { + "word": "unapologetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not expressing regret", + "example_sentence_english": "He was unapologetic about his decision, believing it was the right thing to do.", + "pos": "adjective", + "word_frequency": 26298 + }, + { + "word": "unclassified", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not officially designated as secret", + "example_sentence_english": "This document is unclassified and can be shared publicly.", + "pos": "adjective", + "word_frequency": 26299 + }, + { + "word": "uncool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not fashionable or impressive", + "example_sentence_english": "Wearing socks with sandals used to be considered uncool.", + "pos": "adjective", + "word_frequency": 26300 + }, + { + "word": "unfavourable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not good or helpful", + "example_sentence_english": "The weather conditions were unfavourable for the outdoor event.", + "pos": "adjective", + "word_frequency": 26301 + }, + { + "word": "unloved", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not loved or cared for", + "example_sentence_english": "The old toy looked unloved, sitting forgotten in the corner.", + "pos": "adjective", + "word_frequency": 26302 + }, + { + "word": "unmasked", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having had one's true character or identity revealed", + "example_sentence_english": "The villain's true identity was finally unmasked at the end of the story.", + "pos": "adjective", + "word_frequency": 26303 + }, + { + "word": "unsightly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpleasant to look at", + "example_sentence_english": "The abandoned building was an unsightly blot on the landscape.", + "pos": "adjective", + "word_frequency": 26304 + }, + { + "word": "uptick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small increase or improvement", + "example_sentence_english": "We've seen a slight uptick in sales this quarter.", + "pos": "noun", + "word_frequency": 26305 + }, + { + "word": "urchin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mischievous young child, or a sea creature", + "example_sentence_english": "The little urchin ran off with the stolen apple.", + "pos": "noun", + "word_frequency": 26306 + }, + { + "word": "violator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who violates a rule or law", + "example_sentence_english": "The police issued a ticket to the traffic violator.", + "pos": "noun", + "word_frequency": 26309 + }, + { + "word": "vise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mechanical device used to secure an object", + "example_sentence_english": "He held the piece of wood firmly in the vise while he drilled.", + "pos": "noun", + "word_frequency": 26310 + }, + { + "word": "watertight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to be penetrated by water", + "example_sentence_english": "The boat had a watertight compartment for valuables.", + "pos": "adjective", + "word_frequency": 26314 + }, + { + "word": "waver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become unsteady or indecisive", + "example_sentence_english": "His voice began to waver as he delivered the emotional speech.", + "pos": "verb", + "word_frequency": 26315 + }, + { + "word": "wildflower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flower of an uncultivated variety", + "example_sentence_english": "The meadow was full of colorful wildflowers in spring.", + "pos": "noun", + "word_frequency": 26318 + }, + { + "word": "windward", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on the side facing the wind", + "example_sentence_english": "The ship sailed on the windward side of the island.", + "pos": "adjective", + "word_frequency": 26319 + }, + { + "word": "wip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work in progress", + "example_sentence_english": "The new feature is still a WIP, but we expect it to be ready next week.", + "pos": "noun", + "word_frequency": 26320 + }, + { + "word": "wok", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, bowl-shaped frying pan", + "example_sentence_english": "She stir-fried the vegetables in a hot wok.", + "pos": "noun", + "word_frequency": 26322 + }, + { + "word": "woodcock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of wading bird with a long bill", + "example_sentence_english": "The hunter spotted a woodcock hiding in the undergrowth.", + "pos": "noun", + "word_frequency": 26323 + }, + { + "word": "yoy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "year-over-year", + "example_sentence_english": "The company reported a 10% YoY growth in sales.", + "pos": "noun", + "word_frequency": 26327 + }, + { + "word": "zag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sharp turn or change of direction", + "example_sentence_english": "The path had many zigs and zags.", + "pos": "noun", + "word_frequency": 26329 + }, + { + "word": "über", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "super; ultimate; supreme", + "example_sentence_english": "He considers himself an über-fan of the band.", + "pos": "adjective", + "word_frequency": 26330 + }, + { + "word": "accretion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "growth or increase by gradual accumulation", + "example_sentence_english": "The island grew through the accretion of sand and sediment.", + "pos": "noun", + "word_frequency": 26335 + }, + { + "word": "activator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that makes a chemical reaction or process happen or happen more quickly", + "example_sentence_english": "The enzyme acts as an activator for the reaction.", + "pos": "noun", + "word_frequency": 26336 + }, + { + "word": "afresh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a new or different way; again from the beginning", + "example_sentence_english": "After the failure, they decided to start afresh.", + "pos": "adverb", + "word_frequency": 26338 + }, + { + "word": "annular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ring-shaped", + "example_sentence_english": "The eclipse was annular, leaving a ring of sunlight visible.", + "pos": "adjective", + "word_frequency": 26341 + }, + { + "word": "appraise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assess the value or quality of", + "example_sentence_english": "The jeweler was asked to appraise the diamond.", + "pos": "verb", + "word_frequency": 26343 + }, + { + "word": "appreciable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large or important enough to be noticed or measured", + "example_sentence_english": "There was an appreciable difference in temperature.", + "pos": "adjective", + "word_frequency": 26344 + }, + { + "word": "associative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving association", + "example_sentence_english": "The associative property in mathematics states that the grouping of numbers does not affect the result.", + "pos": "adjective", + "word_frequency": 26347 + }, + { + "word": "assuredly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "certainly; without a doubt", + "example_sentence_english": "He assuredly knew the answer to the question.", + "pos": "adverb", + "word_frequency": 26349 + }, + { + "word": "atherosclerosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a disease of the arteries characterized by the deposition of fatty material on their inner walls", + "example_sentence_english": "Atherosclerosis can lead to heart attacks and strokes.", + "pos": "noun", + "word_frequency": 26350 + }, + { + "word": "aural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the ear or the sense of hearing", + "example_sentence_english": "She has excellent aural comprehension skills.", + "pos": "adjective", + "word_frequency": 26352 + }, + { + "word": "automaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a company that manufactures automobiles", + "example_sentence_english": "The automaker announced record sales this quarter.", + "pos": "noun", + "word_frequency": 26353 + }, + { + "word": "backroom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a room at the back of a building, often used for private or unofficial activities", + "example_sentence_english": "The politicians held a secret meeting in the backroom.", + "pos": "noun", + "word_frequency": 26355 + }, + { + "word": "bap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft, round, flat bread roll", + "example_sentence_english": "He had a bacon bap for breakfast.", + "pos": "noun", + "word_frequency": 26357 + }, + { + "word": "barracuda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, predatory, tropical marine fish", + "example_sentence_english": "Divers spotted a barracuda swimming near the coral reef.", + "pos": "noun", + "word_frequency": 26358 + }, + { + "word": "bcc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blind carbon copy (in email)", + "example_sentence_english": "Remember to use BCC if you don't want recipients to see each other's email addresses.", + "pos": "noun", + "word_frequency": 26359 + }, + { + "word": "belarusian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person from Belarus; the Belarusian language", + "example_sentence_english": "She is learning Belarusian to communicate with her family.", + "pos": "noun", + "word_frequency": 26361 + }, + { + "word": "benevolence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kindness; generosity", + "example_sentence_english": "His benevolence towards the poor was well-known.", + "pos": "noun", + "word_frequency": 26362 + }, + { + "word": "better", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to improve; to surpass", + "example_sentence_english": "He tried to better his previous performance.", + "pos": "verb", + "word_frequency": 26363 + }, + { + "word": "bewitch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enchant; to charm", + "example_sentence_english": "The magician seemed to bewitch the audience with his tricks.", + "pos": "verb", + "word_frequency": 26364 + }, + { + "word": "blimp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small non-rigid airship", + "example_sentence_english": "A blimp floated slowly over the stadium.", + "pos": "noun", + "word_frequency": 26366 + }, + { + "word": "bodywork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the outer shell of a vehicle", + "example_sentence_english": "The car needed extensive bodywork after the accident.", + "pos": "noun", + "word_frequency": 26369 + }, + { + "word": "bondholder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or institution that owns bonds", + "example_sentence_english": "The company reassured its bondholders about the financial stability.", + "pos": "noun", + "word_frequency": 26370 + }, + { + "word": "bookcase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a piece of furniture with shelves for books", + "example_sentence_english": "She arranged her books neatly on the new bookcase.", + "pos": "noun", + "word_frequency": 26371 + }, + { + "word": "bracken", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large, coarse fern", + "example_sentence_english": "The hillside was covered in dense bracken.", + "pos": "noun", + "word_frequency": 26373 + }, + { + "word": "bridle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headgear used to control a horse", + "example_sentence_english": "He put the bridle on the horse before riding.", + "pos": "noun", + "word_frequency": 26374 + }, + { + "word": "castration", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the removal of the testicles", + "example_sentence_english": "Veterinarians often perform castration on male animals.", + "pos": "noun", + "word_frequency": 26381 + }, + { + "word": "caudal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or like a tail; at or near the tail or posterior part of the body", + "example_sentence_english": "The caudal fin of the fish helps it to propel through water.", + "pos": "adjective", + "word_frequency": 26383 + }, + { + "word": "chowder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rich soup, typically containing seafood or corn", + "example_sentence_english": "She ordered a bowl of clam chowder for lunch.", + "pos": "noun", + "word_frequency": 26385 + }, + { + "word": "collarbone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the bone connecting the shoulder blade and the breastbone", + "example_sentence_english": "He broke his collarbone playing rugby.", + "pos": "noun", + "word_frequency": 26388 + }, + { + "word": "crematorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place where dead bodies are cremated", + "example_sentence_english": "The funeral service was held at the local crematorium.", + "pos": "noun", + "word_frequency": 26391 + }, + { + "word": "croissant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a crescent-shaped pastry", + "example_sentence_english": "She enjoyed a warm croissant with her coffee.", + "pos": "noun", + "word_frequency": 26392 + }, + { + "word": "crustacean", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an arthropod of the large class Crustacea, such as a crab, lobster, or shrimp", + "example_sentence_english": "Lobsters and crabs are types of crustacean.", + "pos": "noun", + "word_frequency": 26393 + }, + { + "word": "cryogenic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or involving the production of very low temperatures", + "example_sentence_english": "The samples were stored in a cryogenic freezer.", + "pos": "adjective", + "word_frequency": 26394 + }, + { + "word": "dally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to waste time; to linger", + "example_sentence_english": "Don't dally on your way home; it's getting late.", + "pos": "verb", + "word_frequency": 26395 + }, + { + "word": "decontamination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of removing dangerous substances", + "example_sentence_english": "The area required full decontamination after the chemical spill.", + "pos": "noun", + "word_frequency": 26396 + }, + { + "word": "defenceman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a defensive player in ice hockey or other sports", + "example_sentence_english": "The defenceman blocked the shot with his stick.", + "pos": "noun", + "word_frequency": 26397 + }, + { + "word": "demonstrably", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that can be clearly shown or proved", + "example_sentence_english": "The new policy was demonstrably effective in reducing crime.", + "pos": "adverb", + "word_frequency": 26399 + }, + { + "word": "denier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A unit of fineness for yarn; a person who denies.", + "example_sentence_english": "The fabric was made of 200 denier nylon.", + "pos": "noun", + "word_frequency": 26400 + }, + { + "word": "depositor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who puts money in a bank.", + "example_sentence_english": "The bank guarantees the safety of its depositors' funds.", + "pos": "noun", + "word_frequency": 26401 + }, + { + "word": "diffuser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A device that spreads light, sound, or scent.", + "example_sentence_english": "She put a few drops of essential oil into the diffuser.", + "pos": "noun", + "word_frequency": 26403 + }, + { + "word": "duster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A cloth or brush for removing dust.", + "example_sentence_english": "She used a feather duster to clean the shelves.", + "pos": "noun", + "word_frequency": 26408 + }, + { + "word": "eatery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A restaurant or place where food is served.", + "example_sentence_english": "We found a cozy little eatery for lunch.", + "pos": "noun", + "word_frequency": 26409 + }, + { + "word": "electronica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A genre of electronic music.", + "example_sentence_english": "She prefers listening to electronica over rock music.", + "pos": "noun", + "word_frequency": 26410 + }, + { + "word": "embattle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To prepare for battle; to place in a state of conflict.", + "example_sentence_english": "The embattled government faced widespread protests.", + "pos": "verb", + "word_frequency": 26411 + }, + { + "word": "enamor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To be filled with a feeling of love for.", + "example_sentence_english": "He was completely enamored with her beauty.", + "pos": "verb", + "word_frequency": 26412 + }, + { + "word": "enthrall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To capture the fascinated attention of.", + "example_sentence_english": "The magician's performance enthralled the audience.", + "pos": "verb", + "word_frequency": 26415 + }, + { + "word": "esplanade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A long, open, level area, typically by the sea or a river, for walking.", + "example_sentence_english": "We took a stroll along the esplanade at sunset.", + "pos": "noun", + "word_frequency": 26417 + }, + { + "word": "eyewear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Articles worn on the eyes, such as glasses or sunglasses.", + "example_sentence_english": "The store specializes in designer eyewear.", + "pos": "noun", + "word_frequency": 26419 + }, + { + "word": "fairground", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An open space where a fair or carnival is held.", + "example_sentence_english": "The children loved visiting the fairground every summer.", + "pos": "noun", + "word_frequency": 26420 + }, + { + "word": "favoritism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The practice of giving unfair preferential treatment to one person or group.", + "example_sentence_english": "The employees complained about the manager's favoritism.", + "pos": "noun", + "word_frequency": 26421 + }, + { + "word": "feudalism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The dominant social system in medieval Europe, in which the nobility held lands from the Crown in exchange for military service.", + "example_sentence_english": "Feudalism was a complex system of land tenure and social hierarchy.", + "pos": "noun", + "word_frequency": 26422 + }, + { + "word": "fireproof", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Resistant to fire.", + "example_sentence_english": "The building materials were designed to be fireproof.", + "pos": "adjective", + "word_frequency": 26423 + }, + { + "word": "flounder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To struggle clumsily or helplessly.", + "example_sentence_english": "The company began to flounder after losing its main client.", + "pos": "verb", + "word_frequency": 26424 + }, + { + "word": "foetus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An unborn offspring, especially an unborn human baby more than eight weeks after conception.", + "example_sentence_english": "The doctor monitored the development of the foetus.", + "pos": "noun", + "word_frequency": 26425 + }, + { + "word": "forthright", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Direct and outspoken; straightforward and honest.", + "example_sentence_english": "She gave a forthright answer to the difficult question.", + "pos": "adjective", + "word_frequency": 26426 + }, + { + "word": "geisha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A Japanese entertainer who performs various Japanese arts.", + "example_sentence_english": "The geisha performed a traditional dance.", + "pos": "noun", + "word_frequency": 26430 + }, + { + "word": "gelato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A frozen dessert of Italian origin, similar to ice cream but with less fat.", + "example_sentence_english": "We enjoyed a scoop of pistachio gelato.", + "pos": "noun", + "word_frequency": 26431 + }, + { + "word": "glade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An open space in a forest.", + "example_sentence_english": "Sunlight filtered through the trees into the peaceful glade.", + "pos": "noun", + "word_frequency": 26433 + }, + { + "word": "glassy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Resembling glass in smoothness, transparency, or luster.", + "example_sentence_english": "The lake was perfectly still, with a glassy surface.", + "pos": "adjective", + "word_frequency": 26434 + }, + { + "word": "godsend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A very helpful or valuable thing, person, or event.", + "example_sentence_english": "The unexpected financial aid was a real godsend.", + "pos": "noun", + "word_frequency": 26437 + }, + { + "word": "grubby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dirty; unkempt", + "example_sentence_english": "His hands were grubby after working in the garden.", + "pos": "adjective", + "word_frequency": 26440 + }, + { + "word": "gynecologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a doctor specializing in women's health", + "example_sentence_english": "She made an appointment with her gynecologist for a check-up.", + "pos": "noun", + "word_frequency": 26443 + }, + { + "word": "hairpin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a U-shaped pin for holding hair in place", + "example_sentence_english": "She used a hairpin to secure her bun.", + "pos": "noun", + "word_frequency": 26445 + }, + { + "word": "hatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes or sells hats", + "example_sentence_english": "The Mad Hatter is a famous character from Alice in Wonderland.", + "pos": "noun", + "word_frequency": 26449 + }, + { + "word": "hazelnut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the edible nut of the hazel tree", + "example_sentence_english": "She added hazelnuts to the chocolate cake recipe.", + "pos": "noun", + "word_frequency": 26452 + }, + { + "word": "homologous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having the same relation, relative position, or structure", + "example_sentence_english": "The wings of a bat and the arms of a human are homologous structures.", + "pos": "adjective", + "word_frequency": 26456 + }, + { + "word": "iffy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertain; doubtful; risky", + "example_sentence_english": "The weather forecast looks a bit iffy for tomorrow's picnic.", + "pos": "adjective", + "word_frequency": 26463 + }, + { + "word": "immovable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to be moved", + "example_sentence_english": "The ancient stone statue seemed completely immovable.", + "pos": "adjective", + "word_frequency": 26464 + }, + { + "word": "impale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pierce or transfix with a sharp instrument", + "example_sentence_english": "The knight's spear was used to impale the dragon.", + "pos": "verb", + "word_frequency": 26465 + }, + { + "word": "inspectorate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a body of inspectors", + "example_sentence_english": "The government inspectorate conducted a thorough review of the factory's safety standards.", + "pos": "noun", + "word_frequency": 26466 + }, + { + "word": "interstitial", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or situated in the interstices (small spaces)", + "example_sentence_english": "Interstitial fluid fills the spaces between cells in the body.", + "pos": "adjective", + "word_frequency": 26467 + }, + { + "word": "inverter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an electrical device that converts DC to AC", + "example_sentence_english": "The solar panels are connected to an inverter to power the house.", + "pos": "noun", + "word_frequency": 26468 + }, + { + "word": "irate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or characterized by great anger", + "example_sentence_english": "The irate customer demanded to speak to the manager immediately.", + "pos": "adjective", + "word_frequency": 26470 + }, + { + "word": "jugular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "any of several veins in the neck that drain blood from the head", + "example_sentence_english": "The doctor checked the pulse in his jugular vein.", + "pos": "noun", + "word_frequency": 26479 + }, + { + "word": "kickstart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to start or restart something quickly or with renewed energy", + "example_sentence_english": "We need to kickstart the project to meet the deadline.", + "pos": "verb", + "word_frequency": 26483 + }, + { + "word": "knockdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a blow that knocks someone down; a type of house that can be assembled quickly", + "example_sentence_english": "The boxer delivered a powerful knockdown in the third round.", + "pos": "noun", + "word_frequency": 26487 + }, + { + "word": "lapis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deep blue metamorphic rock used as a gemstone", + "example_sentence_english": "The necklace was adorned with beautiful lapis lazuli stones.", + "pos": "noun", + "word_frequency": 26492 + }, + { + "word": "lethargic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sluggish and apathetic", + "example_sentence_english": "After the long flight, I felt lethargic and just wanted to sleep.", + "pos": "adjective", + "word_frequency": 26494 + }, + { + "word": "liberator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who sets a person or place free from imprisonment or oppression", + "example_sentence_english": "He was hailed as the liberator of his people.", + "pos": "noun", + "word_frequency": 26496 + }, + { + "word": "ligature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thing used for tying or binding something tightly; a character consisting of two or more letters joined together", + "example_sentence_english": "The surgeon applied a ligature to the bleeding vessel.", + "pos": "noun", + "word_frequency": 26497 + }, + { + "word": "longhorn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of cattle with long horns", + "example_sentence_english": "Texas is famous for its longhorn cattle.", + "pos": "noun", + "word_frequency": 26499 + }, + { + "word": "loony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mad or silly", + "example_sentence_english": "He came up with a loony idea for a new invention.", + "pos": "adjective", + "word_frequency": 26500 + }, + { + "word": "mambo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Latin American dance similar to the rumba, or music for this dance", + "example_sentence_english": "They learned to dance the mambo at the club.", + "pos": "noun", + "word_frequency": 26506 + }, + { + "word": "mandala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a geometric design or pattern representing the cosmos or deities in various religions", + "example_sentence_english": "She spent hours coloring the intricate mandala design.", + "pos": "noun", + "word_frequency": 26507 + }, + { + "word": "mandolin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stringed musical instrument in the lute family", + "example_sentence_english": "He played a beautiful tune on his mandolin.", + "pos": "noun", + "word_frequency": 26508 + }, + { + "word": "marinate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to soak food in a marinade", + "example_sentence_english": "You should marinate the chicken for at least an hour before grilling.", + "pos": "verb", + "word_frequency": 26510 + }, + { + "word": "mediaeval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the Middle Ages (alternative spelling of medieval)", + "example_sentence_english": "They visited a mediaeval castle in France.", + "pos": "adjective", + "word_frequency": 26516 + }, + { + "word": "megaphone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cone-shaped device used to amplify the voice", + "example_sentence_english": "The protestor shouted through a megaphone.", + "pos": "noun", + "word_frequency": 26517 + }, + { + "word": "megawatt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit of power equal to one million watts", + "example_sentence_english": "The new solar farm generates 50 megawatts of electricity.", + "pos": "noun", + "word_frequency": 26518 + }, + { + "word": "merci", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thank you (French loanword)", + "example_sentence_english": "She said 'merci' after I helped her with her bags.", + "pos": "interjection", + "word_frequency": 26519 + }, + { + "word": "militarism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the belief or desire of a government or people that a country should maintain a strong military capability and be prepared to use it aggressively to defend or promote national interests.", + "example_sentence_english": "The rise of militarism in the region led to increased tensions.", + "pos": "noun", + "word_frequency": 26520 + }, + { + "word": "millimetre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a metric unit of length equal to one thousandth of a meter.", + "example_sentence_english": "The gap was only a few millimetres wide.", + "pos": "noun", + "word_frequency": 26521 + }, + { + "word": "missus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(informal) a person's wife.", + "example_sentence_english": "He asked his missus if she wanted tea.", + "pos": "noun", + "word_frequency": 26523 + }, + { + "word": "moped", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a motor-assisted pedal cycle.", + "example_sentence_english": "He rode his moped to work every day.", + "pos": "noun", + "word_frequency": 26526 + }, + { + "word": "mountaineer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who climbs mountains as a sport or profession.", + "example_sentence_english": "The experienced mountaineer prepared for the ascent.", + "pos": "noun", + "word_frequency": 26528 + }, + { + "word": "multiplex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cinema with several separate screens.", + "example_sentence_english": "We decided to watch the movie at the new multiplex.", + "pos": "noun", + "word_frequency": 26530 + }, + { + "word": "oncologist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medical practitioner qualified to diagnose and treat tumors.", + "example_sentence_english": "The patient was referred to an oncologist for further evaluation.", + "pos": "noun", + "word_frequency": 26540 + }, + { + "word": "onside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(in sports) in an allowed position; (general) in agreement or supportive.", + "example_sentence_english": "The referee ruled that the player was onside.", + "pos": "adjective", + "word_frequency": 26541 + }, + { + "word": "oscillate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "move or swing back and forth at a regular speed.", + "example_sentence_english": "The pendulum continued to oscillate for a long time.", + "pos": "verb", + "word_frequency": 26543 + }, + { + "word": "panacea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a solution or remedy for all difficulties or diseases.", + "example_sentence_english": "There is no single panacea for all of society's problems.", + "pos": "noun", + "word_frequency": 26544 + }, + { + "word": "parietal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "of, relating to, or forming the wall of a body part or cavity.", + "example_sentence_english": "The parietal lobe is involved in processing sensory information.", + "pos": "adjective", + "word_frequency": 26546 + }, + { + "word": "patronize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treat with an apparent kindness that betrays a feeling of superiority; or, support (a store, restaurant, etc.) regularly.", + "example_sentence_english": "Please don't patronize me; I understand perfectly well.", + "pos": "verb", + "word_frequency": 26548 + }, + { + "word": "pauper", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a very poor person.", + "example_sentence_english": "He died a pauper, with no possessions to his name.", + "pos": "noun", + "word_frequency": 26549 + }, + { + "word": "pestilence", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a fatal epidemic disease.", + "example_sentence_english": "The city was ravaged by a terrible pestilence.", + "pos": "noun", + "word_frequency": 26551 + }, + { + "word": "pewter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a grey alloy of tin with lead, copper, and other metals.", + "example_sentence_english": "The old tankard was made of pewter.", + "pos": "noun", + "word_frequency": 26552 + }, + { + "word": "pippin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a crisp, tart apple, typically with a yellowish skin.", + "example_sentence_english": "She baked an apple pie using pippin apples.", + "pos": "noun", + "word_frequency": 26554 + }, + { + "word": "plenum", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a space or chamber in which air or other gas is at a pressure greater than that of the outside atmosphere; also, a meeting attended by all members of a committee or conference.", + "example_sentence_english": "The air conditioning system uses a plenum to distribute air.", + "pos": "noun", + "word_frequency": 26557 + }, + { + "word": "polygraph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a machine designed to detect and record changes in physiological characteristics, such as a person's pulse and breathing rates, used especially as a lie detector.", + "example_sentence_english": "The suspect was asked to take a polygraph test.", + "pos": "noun", + "word_frequency": 26558 + }, + { + "word": "popup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(computing) a window or advertisement that appears suddenly on a computer screen; (general) something that appears suddenly.", + "example_sentence_english": "I closed the annoying popup advertisement.", + "pos": "noun", + "word_frequency": 26559 + }, + { + "word": "principality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state ruled by a prince", + "example_sentence_english": "Monaco is a small principality on the French Riviera.", + "pos": "noun", + "word_frequency": 26560 + }, + { + "word": "punchline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the final part of a joke", + "example_sentence_english": "Everyone laughed when he finally delivered the punchline.", + "pos": "noun", + "word_frequency": 26564 + }, + { + "word": "radish", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, spicy root vegetable", + "example_sentence_english": "She added sliced radishes to her salad.", + "pos": "noun", + "word_frequency": 26569 + }, + { + "word": "reciprocate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to respond to a gesture or action by making a corresponding one", + "example_sentence_english": "She was quick to reciprocate his kindness.", + "pos": "verb", + "word_frequency": 26572 + }, + { + "word": "recklessness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of regard for the danger or consequences of one's actions", + "example_sentence_english": "His recklessness on the road led to an accident.", + "pos": "noun", + "word_frequency": 26573 + }, + { + "word": "restock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to replenish a supply of something", + "example_sentence_english": "We need to restock the shelves before the store opens.", + "pos": "verb", + "word_frequency": 26574 + }, + { + "word": "rotunda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a round building or room, especially one with a dome", + "example_sentence_english": "The museum's grand rotunda was filled with natural light.", + "pos": "noun", + "word_frequency": 26578 + }, + { + "word": "roundhouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a circular building for locomotives or a powerful circular kick", + "example_sentence_english": "He delivered a powerful roundhouse kick to his opponent.", + "pos": "noun", + "word_frequency": 26579 + }, + { + "word": "savour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enjoy or appreciate something fully", + "example_sentence_english": "She savoured every bite of the delicious meal.", + "pos": "verb", + "word_frequency": 26583 + }, + { + "word": "scarab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of beetle or an ancient Egyptian gem carved in its shape", + "example_sentence_english": "The archaeologist discovered an ancient scarab beetle amulet.", + "pos": "noun", + "word_frequency": 26584 + }, + { + "word": "scoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speak to someone or about something in a scornfully derisive or mocking way", + "example_sentence_english": "He scoffed at the idea of working for free.", + "pos": "verb", + "word_frequency": 26586 + }, + { + "word": "scythe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tool used for mowing grass or reaping crops", + "example_sentence_english": "The farmer used a scythe to cut the tall grass.", + "pos": "noun", + "word_frequency": 26587 + }, + { + "word": "sedate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to calm or make someone sleep by administering a sedative drug", + "example_sentence_english": "The vet had to sedate the anxious dog before the examination.", + "pos": "verb", + "word_frequency": 26589 + }, + { + "word": "sepia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a reddish-brown color associated with old photographs", + "example_sentence_english": "The old photograph had a warm sepia tone.", + "pos": "noun", + "word_frequency": 26591 + }, + { + "word": "sketchbook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book of blank pages for sketching", + "example_sentence_english": "She always carries a sketchbook to draw new ideas.", + "pos": "noun", + "word_frequency": 26597 + }, + { + "word": "slapstick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comedy based on deliberately clumsy actions and embarrassing events", + "example_sentence_english": "Charlie Chaplin was a master of slapstick comedy.", + "pos": "noun", + "word_frequency": 26598 + }, + { + "word": "sourdough", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sourdough (type of bread)", + "example_sentence_english": "I love the tangy taste of fresh sourdough bread.", + "pos": "noun", + "word_frequency": 26601 + }, + { + "word": "squirm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wriggle, to fidget", + "example_sentence_english": "The child began to squirm in his seat during the long lecture.", + "pos": "verb", + "word_frequency": 26602 + }, + { + "word": "stepdaughter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepdaughter", + "example_sentence_english": "My stepdaughter is coming to visit next weekend.", + "pos": "noun", + "word_frequency": 26604 + }, + { + "word": "stoney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of stones, rocky", + "example_sentence_english": "The stoney path was difficult to walk on.", + "pos": "adjective", + "word_frequency": 26606 + }, + { + "word": "stupendous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amazing, enormous", + "example_sentence_english": "The view from the mountain top was stupendous.", + "pos": "adjective", + "word_frequency": 26607 + }, + { + "word": "sunbathe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lie in the sun", + "example_sentence_english": "She loves to sunbathe on the beach during her holidays.", + "pos": "verb", + "word_frequency": 26608 + }, + { + "word": "surrealism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surrealism (art movement)", + "example_sentence_english": "Salvador Dalí is a famous artist associated with surrealism.", + "pos": "noun", + "word_frequency": 26609 + }, + { + "word": "telepathic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to telepathy", + "example_sentence_english": "Some people claim to have telepathic abilities.", + "pos": "adjective", + "word_frequency": 26617 + }, + { + "word": "telescopic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a telescope; able to extend and retract", + "example_sentence_english": "The camera has a powerful telescopic lens.", + "pos": "adjective", + "word_frequency": 26618 + }, + { + "word": "transcriptional", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to transcription", + "example_sentence_english": "The scientists studied the transcriptional regulation of the gene.", + "pos": "adjective", + "word_frequency": 26624 + }, + { + "word": "transgenic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "containing genes from another species", + "example_sentence_english": "Researchers are developing transgenic crops to resist pests.", + "pos": "adjective", + "word_frequency": 26625 + }, + { + "word": "trimmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for cutting or shaping", + "example_sentence_english": "He used the hedge trimmer to neaten the bushes.", + "pos": "noun", + "word_frequency": 26626 + }, + { + "word": "undiagnosed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not yet diagnosed", + "example_sentence_english": "Many people live with undiagnosed medical conditions.", + "pos": "adjective", + "word_frequency": 26630 + }, + { + "word": "unease", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiety, discomfort", + "example_sentence_english": "There was a general sense of unease in the room after the announcement.", + "pos": "noun", + "word_frequency": 26631 + }, + { + "word": "unrequited", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not returned or reciprocated", + "example_sentence_english": "He suffered from unrequited love for years.", + "pos": "adjective", + "word_frequency": 26633 + }, + { + "word": "uptime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "period of time when a system is operational", + "example_sentence_english": "The server had an impressive uptime of 99.9% last month.", + "pos": "noun", + "word_frequency": 26634 + }, + { + "word": "urinal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plumbing fixture for urination", + "example_sentence_english": "The men's restroom had two stalls and a urinal.", + "pos": "noun", + "word_frequency": 26635 + }, + { + "word": "usurp", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to take illegally or by force", + "example_sentence_english": "The general tried to usurp power from the king.", + "pos": "verb", + "word_frequency": 26637 + }, + { + "word": "vagabond", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who wanders from place to place", + "example_sentence_english": "He lived the life of a vagabond, traveling wherever the road took him.", + "pos": "noun", + "word_frequency": 26638 + }, + { + "word": "vamos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Let's go; Come on", + "example_sentence_english": "He shouted 'Vamos!' to encourage his team.", + "pos": "interjection", + "word_frequency": 26639 + }, + { + "word": "vestige", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A trace or remnant", + "example_sentence_english": "The old building was the last vestige of the ancient civilization.", + "pos": "noun", + "word_frequency": 26643 + }, + { + "word": "virtualization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act of creating a virtual version of something", + "example_sentence_english": "Cloud computing relies heavily on virtualization technology.", + "pos": "noun", + "word_frequency": 26644 + }, + { + "word": "visage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person's face or facial expression", + "example_sentence_english": "His stern visage showed no emotion.", + "pos": "noun", + "word_frequency": 26645 + }, + { + "word": "wether", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A castrated ram", + "example_sentence_english": "The farmer had several wethers in the flock.", + "pos": "noun", + "word_frequency": 26650 + }, + { + "word": "writhe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To twist or squirm, especially in pain", + "example_sentence_english": "He began to writhe in agony after falling.", + "pos": "verb", + "word_frequency": 26656 + }, + { + "word": "yardage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Length or amount measured in yards", + "example_sentence_english": "The tailor needed to calculate the exact yardage of fabric.", + "pos": "noun", + "word_frequency": 26658 + }, + { + "word": "zing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Energy, enthusiasm, or a sharp, high-pitched sound", + "example_sentence_english": "The comedian's jokes had a real zing to them.", + "pos": "noun", + "word_frequency": 26662 + }, + { + "word": "ablation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The removal of a body part or tissue, or the erosion of material", + "example_sentence_english": "The doctor performed a cardiac ablation to correct the arrhythmia.", + "pos": "noun", + "word_frequency": 26667 + }, + { + "word": "actuator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A component of a machine that is responsible for moving or controlling a mechanism or system", + "example_sentence_english": "The robot's arm uses a powerful actuator for precise movements.", + "pos": "noun", + "word_frequency": 26669 + }, + { + "word": "adrenalin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A hormone secreted by the adrenal glands, especially in conditions of stress", + "example_sentence_english": "The sudden fright caused a rush of adrenalin.", + "pos": "noun", + "word_frequency": 26671 + }, + { + "word": "agribusiness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Agriculture conducted on commercial principles, especially using advanced technology", + "example_sentence_english": "Large corporations dominate the agribusiness sector.", + "pos": "noun", + "word_frequency": 26672 + }, + { + "word": "algorithmic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or involving algorithms", + "example_sentence_english": "The search engine uses complex algorithmic processes to rank results.", + "pos": "adjective", + "word_frequency": 26677 + }, + { + "word": "amok", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "In a frenzied or uncontrolled state", + "example_sentence_english": "The crowd ran amok after the concert.", + "pos": "noun", + "word_frequency": 26679 + }, + { + "word": "androgen", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a male sex hormone", + "example_sentence_english": "Androgen levels can affect various bodily functions in men.", + "pos": "noun", + "word_frequency": 26681 + }, + { + "word": "angina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chest pain due to reduced blood flow to the heart", + "example_sentence_english": "The patient experienced severe angina, indicating a heart problem.", + "pos": "noun", + "word_frequency": 26682 + }, + { + "word": "apolitical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not interested or involved in politics", + "example_sentence_english": "He prefers to remain apolitical and focus on his work.", + "pos": "adjective", + "word_frequency": 26683 + }, + { + "word": "archeology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of human history and prehistory through the excavation of sites and the analysis of artifacts", + "example_sentence_english": "Archeology helps us understand ancient civilizations.", + "pos": "noun", + "word_frequency": 26685 + }, + { + "word": "astrological", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to astrology", + "example_sentence_english": "She reads her astrological forecast every morning.", + "pos": "adjective", + "word_frequency": 26688 + }, + { + "word": "attaché", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person attached to an embassy or consulate", + "example_sentence_english": "The cultural attaché organized an exhibition of local art.", + "pos": "noun", + "word_frequency": 26689 + }, + { + "word": "auger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tool for boring holes", + "example_sentence_english": "He used an auger to drill holes for the fence posts.", + "pos": "noun", + "word_frequency": 26690 + }, + { + "word": "balinese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Bali or its people", + "example_sentence_english": "We enjoyed the traditional Balinese dance performance.", + "pos": "adjective", + "word_frequency": 26694 + }, + { + "word": "barman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man who serves drinks at a bar", + "example_sentence_english": "The barman quickly mixed our cocktails.", + "pos": "noun", + "word_frequency": 26695 + }, + { + "word": "beachfront", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the area of land directly facing a beach", + "example_sentence_english": "They bought a beautiful beachfront property.", + "pos": "noun", + "word_frequency": 26697 + }, + { + "word": "bloodborne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transmitted by blood", + "example_sentence_english": "Healthcare workers must take precautions against bloodborne pathogens.", + "pos": "adjective", + "word_frequency": 26702 + }, + { + "word": "borrowing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of taking and using something that belongs to someone else with the intention of returning it", + "example_sentence_english": "Her constant borrowing of money became a problem.", + "pos": "noun", + "word_frequency": 26703 + }, + { + "word": "cartesian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the philosophy of René Descartes", + "example_sentence_english": "Cartesian dualism is a key concept in philosophy.", + "pos": "adjective", + "word_frequency": 26711 + }, + { + "word": "chalkboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a board with a smooth, dark surface for writing on with chalk", + "example_sentence_english": "The teacher wrote the lesson on the chalkboard.", + "pos": "noun", + "word_frequency": 26713 + }, + { + "word": "cheerio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goodbye (informal British English) or a type of breakfast cereal", + "example_sentence_english": "\"Cheerio, see you tomorrow!\" she called out.", + "pos": "noun", + "word_frequency": 26717 + }, + { + "word": "chica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "girl (Spanish, used informally in English)", + "example_sentence_english": "Hey, chica, how are you doing today?", + "pos": "noun", + "word_frequency": 26718 + }, + { + "word": "chorizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of spicy Spanish sausage", + "example_sentence_english": "We had paella with chicken and chorizo for dinner.", + "pos": "noun", + "word_frequency": 26720 + }, + { + "word": "cockney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person from the East End of London, or their accent/dialect", + "example_sentence_english": "His strong Cockney accent was difficult for some to understand.", + "pos": "noun", + "word_frequency": 26722 + }, + { + "word": "collate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to collect and combine (texts, information, etc.)", + "example_sentence_english": "Please collate the reports before the meeting.", + "pos": "verb", + "word_frequency": 26723 + }, + { + "word": "conjoin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to join together; combine", + "example_sentence_english": "The two rivers conjoin just before reaching the sea.", + "pos": "verb", + "word_frequency": 26725 + }, + { + "word": "conservationist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who advocates for the protection of the environment and wildlife", + "example_sentence_english": "The conservationist worked tirelessly to protect endangered species.", + "pos": "noun", + "word_frequency": 26726 + }, + { + "word": "credo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a statement of the beliefs or aims that guide someone's actions", + "example_sentence_english": "His personal credo was to always act with integrity.", + "pos": "noun", + "word_frequency": 26727 + }, + { + "word": "crevice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a narrow opening or fissure, especially in a rock or wall", + "example_sentence_english": "A tiny plant was growing in the crevice of the old stone wall.", + "pos": "noun", + "word_frequency": 26728 + }, + { + "word": "cytoplasm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the material or protoplasm within a living cell, excluding the nucleus", + "example_sentence_english": "The cytoplasm contains various organelles essential for cell function.", + "pos": "noun", + "word_frequency": 26731 + }, + { + "word": "dap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a friendly slap or handshake, especially as a greeting", + "example_sentence_english": "He gave his friend a quick dap as they passed in the hallway.", + "pos": "noun", + "word_frequency": 26732 + }, + { + "word": "deadbeat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who tries to avoid paying debts or responsibilities", + "example_sentence_english": "He was tired of his roommate being a deadbeat and never paying rent.", + "pos": "noun", + "word_frequency": 26735 + }, + { + "word": "debauchery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive indulgence in sensual pleasures", + "example_sentence_english": "The novel depicted a life of wild debauchery and excess.", + "pos": "noun", + "word_frequency": 26736 + }, + { + "word": "decrepit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a person or thing) worn out or ruined because of age or neglect", + "example_sentence_english": "The old house was decrepit and falling apart.", + "pos": "adjective", + "word_frequency": 26737 + }, + { + "word": "deject", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make sad or dispirited; depress", + "example_sentence_english": "The bad news seemed to deject him completely.", + "pos": "verb", + "word_frequency": 26738 + }, + { + "word": "democratization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the introduction of a democratic system or democratic principles", + "example_sentence_english": "The country underwent a rapid democratization process after the revolution.", + "pos": "noun", + "word_frequency": 26739 + }, + { + "word": "deprecate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to express disapproval of", + "example_sentence_english": "He tended to deprecate his own achievements, despite their significance.", + "pos": "verb", + "word_frequency": 26741 + }, + { + "word": "deride", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to express contempt for; ridicule", + "example_sentence_english": "The critics derided the play as amateurish and poorly written.", + "pos": "verb", + "word_frequency": 26742 + }, + { + "word": "despatch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to send off to a destination or for a purpose", + "example_sentence_english": "The goods were despatched yesterday and should arrive tomorrow.", + "pos": "verb", + "word_frequency": 26743 + }, + { + "word": "dimple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small natural indentation in the flesh on a part of the human body, especially the cheek or chin", + "example_sentence_english": "She had a charming dimple on her left cheek when she smiled.", + "pos": "noun", + "word_frequency": 26744 + }, + { + "word": "dynastic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a dynasty", + "example_sentence_english": "The dynastic struggles often led to civil wars.", + "pos": "adjective", + "word_frequency": 26749 + }, + { + "word": "elan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy, style, and enthusiasm", + "example_sentence_english": "She performed the dance with great elan and grace.", + "pos": "noun", + "word_frequency": 26752 + }, + { + "word": "embarrassing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing embarrassment; awkward", + "example_sentence_english": "It was an embarrassing mistake.", + "pos": "adverb", + "word_frequency": 26756 + }, + { + "word": "embolism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sudden blocking of an artery", + "example_sentence_english": "The patient suffered a pulmonary embolism.", + "pos": "noun", + "word_frequency": 26757 + }, + { + "word": "entree", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the main dish of a meal (US English); a dish served before the main course (UK English)", + "example_sentence_english": "For my entree, I chose the grilled salmon.", + "pos": "noun", + "word_frequency": 26758 + }, + { + "word": "enzymatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to, caused by, or containing an enzyme or enzymes", + "example_sentence_english": "The process involves a complex enzymatic reaction.", + "pos": "adjective", + "word_frequency": 26759 + }, + { + "word": "esophageal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the esophagus", + "example_sentence_english": "The patient underwent surgery for an esophageal tumor.", + "pos": "adjective", + "word_frequency": 26761 + }, + { + "word": "flirtatious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behaving in a way that shows a playful sexual attraction", + "example_sentence_english": "Her flirtatious smile made him blush.", + "pos": "adjective", + "word_frequency": 26766 + }, + { + "word": "flue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a duct for smoke and waste gases", + "example_sentence_english": "The chimney flue needed to be cleaned before winter.", + "pos": "noun", + "word_frequency": 26767 + }, + { + "word": "generative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "able to produce or create", + "example_sentence_english": "Artificial intelligence is making great strides in generative art.", + "pos": "adjective", + "word_frequency": 26774 + }, + { + "word": "gentleness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being kind, tender, or mild", + "example_sentence_english": "She handled the newborn baby with great gentleness.", + "pos": "noun", + "word_frequency": 26775 + }, + { + "word": "globalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who supports globalism", + "example_sentence_english": "The debate often pits nationalists against globalists.", + "pos": "noun", + "word_frequency": 26776 + }, + { + "word": "gnarly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difficult, dangerous, or challenging (slang)", + "example_sentence_english": "That was a gnarly wave to surf!", + "pos": "adjective", + "word_frequency": 26777 + }, + { + "word": "gnostic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to knowledge, especially mystical or spiritual knowledge", + "example_sentence_english": "Ancient Gnostic texts offer a different perspective on early Christianity.", + "pos": "adjective", + "word_frequency": 26778 + }, + { + "word": "greenbelt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of open land around a city, on which building is restricted", + "example_sentence_english": "The city council voted to protect the greenbelt from development.", + "pos": "noun", + "word_frequency": 26780 + }, + { + "word": "handicraft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a particular skill of making decorative objects by hand", + "example_sentence_english": "The market was full of beautiful local handicraft.", + "pos": "noun", + "word_frequency": 26784 + }, + { + "word": "haphazard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking any obvious principle of organization", + "example_sentence_english": "His notes were haphazard and difficult to follow.", + "pos": "adjective", + "word_frequency": 26785 + }, + { + "word": "hypersensitivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive sensitivity", + "example_sentence_english": "She suffers from hypersensitivity to certain food additives.", + "pos": "noun", + "word_frequency": 26791 + }, + { + "word": "inadmissible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not to be allowed or tolerated", + "example_sentence_english": "The evidence was ruled inadmissible in court.", + "pos": "adjective", + "word_frequency": 26792 + }, + { + "word": "indecision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the inability to make a decision quickly", + "example_sentence_english": "His indecision cost them the opportunity.", + "pos": "noun", + "word_frequency": 26793 + }, + { + "word": "indomitable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to defeat or subdue", + "example_sentence_english": "Her indomitable spirit helped her overcome many challenges.", + "pos": "adjective", + "word_frequency": 26794 + }, + { + "word": "insemination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the introduction of semen into the female reproductive tract", + "example_sentence_english": "Artificial insemination is a common practice in livestock breeding.", + "pos": "noun", + "word_frequency": 26797 + }, + { + "word": "insinuate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suggest or hint in an indirect and unpleasant way", + "example_sentence_english": "Are you trying to insinuate that I'm lying?", + "pos": "verb", + "word_frequency": 26798 + }, + { + "word": "intelligible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be understood", + "example_sentence_english": "Her speech was barely intelligible after the accident.", + "pos": "adjective", + "word_frequency": 26800 + }, + { + "word": "ionize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convert into an ion", + "example_sentence_english": "High energy can ionize atoms.", + "pos": "verb", + "word_frequency": 26801 + }, + { + "word": "irrevocable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not able to be changed, reversed, or recovered", + "example_sentence_english": "The decision was irrevocable.", + "pos": "adverb", + "word_frequency": 26802 + }, + { + "word": "islet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very small island", + "example_sentence_english": "We saw a tiny islet in the distance.", + "pos": "noun", + "word_frequency": 26803 + }, + { + "word": "judgemental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "critical; quick to judge", + "example_sentence_english": "Try not to be too judgemental of others.", + "pos": "adjective", + "word_frequency": 26809 + }, + { + "word": "jurisdictional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to jurisdiction", + "example_sentence_english": "There was a jurisdictional dispute between the two courts.", + "pos": "adjective", + "word_frequency": 26810 + }, + { + "word": "krypton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical element", + "example_sentence_english": "Krypton is a noble gas.", + "pos": "noun", + "word_frequency": 26817 + }, + { + "word": "lapel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a coat or jacket folded back on either side of the front opening", + "example_sentence_english": "He wore a flower on his lapel.", + "pos": "noun", + "word_frequency": 26821 + }, + { + "word": "lichen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slow-growing plant that typically forms a low crustlike, leaflike, or branching growth on rocks, walls, and trees", + "example_sentence_english": "Lichen often grows on old trees.", + "pos": "noun", + "word_frequency": 26824 + }, + { + "word": "lino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short for linoleum", + "example_sentence_english": "The kitchen floor was covered in old lino.", + "pos": "noun", + "word_frequency": 26827 + }, + { + "word": "litmus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dye used as a chemical indicator", + "example_sentence_english": "Litmus paper is used to test pH levels.", + "pos": "noun", + "word_frequency": 26828 + }, + { + "word": "marque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a make of car, as distinct from a specific model", + "example_sentence_english": "Rolls-Royce is a luxury car marque.", + "pos": "noun", + "word_frequency": 26834 + }, + { + "word": "matador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bullfighter whose task is to kill the bull", + "example_sentence_english": "The matador faced the bull bravely.", + "pos": "noun", + "word_frequency": 26836 + }, + { + "word": "meniscus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A curved surface of a liquid; a piece of cartilage in the knee.", + "example_sentence_english": "The doctor examined the tear in his knee's meniscus.", + "pos": "noun", + "word_frequency": 26844 + }, + { + "word": "menthol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A crystalline compound with a minty smell.", + "example_sentence_english": "The cough drops had a strong menthol flavor.", + "pos": "noun", + "word_frequency": 26845 + }, + { + "word": "misjudge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To form a wrong opinion or conclusion about.", + "example_sentence_english": "I'm afraid I misjudged the situation completely.", + "pos": "verb", + "word_frequency": 26846 + }, + { + "word": "miso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A traditional Japanese seasoning.", + "example_sentence_english": "She ordered a bowl of miso soup.", + "pos": "noun", + "word_frequency": 26847 + }, + { + "word": "monotone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A single unvaried tone of voice or sound.", + "example_sentence_english": "The speaker's monotone voice made it hard to stay awake.", + "pos": "noun", + "word_frequency": 26848 + }, + { + "word": "monstrosity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Something that is monstrous, especially in size or appearance.", + "example_sentence_english": "The new building was an architectural monstrosity.", + "pos": "noun", + "word_frequency": 26849 + }, + { + "word": "oddity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A strange or peculiar person, thing, or quality.", + "example_sentence_english": "The old house was full of interesting oddities.", + "pos": "noun", + "word_frequency": 26858 + }, + { + "word": "odious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Extremely unpleasant; repulsive.", + "example_sentence_english": "He had to perform the odious task of cleaning the toilets.", + "pos": "adjective", + "word_frequency": 26859 + }, + { + "word": "offbeat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Unconventional; unusual.", + "example_sentence_english": "She has a very offbeat sense of humor.", + "pos": "adjective", + "word_frequency": 26861 + }, + { + "word": "opportunist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who exploits circumstances to gain immediate advantage.", + "example_sentence_english": "He was criticized for being an opportunist, always looking out for himself.", + "pos": "noun", + "word_frequency": 26866 + }, + { + "word": "orifice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An opening, especially one in the body.", + "example_sentence_english": "The small orifice allowed water to drain slowly.", + "pos": "noun", + "word_frequency": 26867 + }, + { + "word": "ornamentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The act or process of decorating; decorative elements.", + "example_sentence_english": "The building's facade featured elaborate ornamentation.", + "pos": "noun", + "word_frequency": 26868 + }, + { + "word": "overcoat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A long, warm coat worn over other clothes.", + "example_sentence_english": "He put on his overcoat before going out into the cold.", + "pos": "noun", + "word_frequency": 26869 + }, + { + "word": "overreaction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An excessive or disproportionate reaction.", + "example_sentence_english": "Her anger was an overreaction to a minor mistake.", + "pos": "noun", + "word_frequency": 26870 + }, + { + "word": "pansy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A popular garden flower.", + "example_sentence_english": "She planted colorful pansies in the window box.", + "pos": "noun", + "word_frequency": 26874 + }, + { + "word": "patter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rapid succession of light sounds; glib or rapid talk.", + "example_sentence_english": "We listened to the gentle patter of rain on the roof.", + "pos": "noun", + "word_frequency": 26877 + }, + { + "word": "peerage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The body of peers; the rank or dignity of a peer.", + "example_sentence_english": "He inherited the peerage after his father's death.", + "pos": "noun", + "word_frequency": 26878 + }, + { + "word": "peloton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "main group of riders in a cycling race", + "example_sentence_english": "The peloton sped through the narrow streets of the town.", + "pos": "[as-is]", + "word_frequency": 26880 + }, + { + "word": "permissive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allowing great freedom of behavior", + "example_sentence_english": "The school has a very permissive attitude towards dress code.", + "pos": "adjective", + "word_frequency": 26881 + }, + { + "word": "placate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone less angry or hostile", + "example_sentence_english": "He tried to placate the angry customer with a refund.", + "pos": "verb", + "word_frequency": 26883 + }, + { + "word": "posit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assume as fact; to put forward as a basis for argument", + "example_sentence_english": "She would posit that the theory is flawed.", + "pos": "verb", + "word_frequency": 26884 + }, + { + "word": "postsecondary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to education after high school", + "example_sentence_english": "Many students pursue postsecondary education after graduation.", + "pos": "adjective", + "word_frequency": 26885 + }, + { + "word": "powdery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consisting of or resembling powder", + "example_sentence_english": "The snow was light and powdery, perfect for skiing.", + "pos": "adjective", + "word_frequency": 26886 + }, + { + "word": "pram", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby carriage", + "example_sentence_english": "She pushed the baby in the pram through the park.", + "pos": "noun", + "word_frequency": 26888 + }, + { + "word": "prescriptive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laying down rules or instructions", + "example_sentence_english": "The grammar book takes a prescriptive approach to language rules.", + "pos": "adjective", + "word_frequency": 26889 + }, + { + "word": "pushback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance or negative reaction to a change or new idea", + "example_sentence_english": "The new policy faced significant pushback from employees.", + "pos": "noun", + "word_frequency": 26891 + }, + { + "word": "radicalize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause someone to adopt radical positions on political or social issues", + "example_sentence_english": "The group tried to radicalize young people through online propaganda.", + "pos": "verb", + "word_frequency": 26892 + }, + { + "word": "rampart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a defensive wall of a castle or fortified city", + "example_sentence_english": "The ancient city was protected by high ramparts.", + "pos": "noun", + "word_frequency": 26895 + }, + { + "word": "rapporteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person appointed by an organization to report on the proceedings of a meeting or conference", + "example_sentence_english": "The special rapporteur presented her findings to the committee.", + "pos": "[as-is]", + "word_frequency": 26896 + }, + { + "word": "redeemable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be saved or exchanged for something else", + "example_sentence_english": "This coupon is redeemable for a free coffee.", + "pos": "adjective", + "word_frequency": 26899 + }, + { + "word": "redistribute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distribute something differently or again", + "example_sentence_english": "The government plans to redistribute wealth more evenly.", + "pos": "verb", + "word_frequency": 26900 + }, + { + "word": "refraction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the bending of light as it passes from one medium to another", + "example_sentence_english": "The refraction of light through water makes objects appear distorted.", + "pos": "noun", + "word_frequency": 26901 + }, + { + "word": "rejuvenate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone or something feel or look younger, fresher, or more lively", + "example_sentence_english": "A good night's sleep can rejuvenate your mind and body.", + "pos": "verb", + "word_frequency": 26902 + }, + { + "word": "reminiscence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a story told about a past event remembered by the narrator", + "example_sentence_english": "The old friends shared many reminiscences about their college days.", + "pos": "noun", + "word_frequency": 26903 + }, + { + "word": "remittance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sum of money sent, especially as a payment", + "example_sentence_english": "He sent a monthly remittance to his family abroad.", + "pos": "noun", + "word_frequency": 26904 + }, + { + "word": "ringside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area immediately surrounding a boxing or wrestling ring", + "example_sentence_english": "We had ringside seats for the boxing match.", + "pos": "noun", + "word_frequency": 26906 + }, + { + "word": "riverbank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the bank of a river", + "example_sentence_english": "We enjoyed a picnic on the riverbank.", + "pos": "noun", + "word_frequency": 26907 + }, + { + "word": "ronin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wandering samurai who had no lord or master", + "example_sentence_english": "The ronin traveled the land, seeking a new purpose.", + "pos": "[as-is]", + "word_frequency": 26910 + }, + { + "word": "scoundrel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dishonest or unscrupulous person; a rogue", + "example_sentence_english": "The scoundrel tried to cheat the old woman out of her money.", + "pos": "noun", + "word_frequency": 26918 + }, + { + "word": "seamstress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who sews for a living", + "example_sentence_english": "The seamstress carefully mended the torn dress.", + "pos": "noun", + "word_frequency": 26920 + }, + { + "word": "shifty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evasive or deceitful", + "example_sentence_english": "His shifty eyes made me distrust him immediately.", + "pos": "adjective", + "word_frequency": 26922 + }, + { + "word": "showman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person skilled at presenting shows", + "example_sentence_english": "The circus showman captivated the audience with his charisma.", + "pos": "noun", + "word_frequency": 26923 + }, + { + "word": "slob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a lazy, untidy person", + "example_sentence_english": "He's such a slob; his room is always a mess.", + "pos": "noun", + "word_frequency": 26926 + }, + { + "word": "sojourn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a temporary stay", + "example_sentence_english": "Our sojourn in the mountains was peaceful and refreshing.", + "pos": "noun", + "word_frequency": 26927 + }, + { + "word": "sounder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of wild boars; a device that makes sound", + "example_sentence_english": "A sounder of wild pigs emerged from the forest.", + "pos": "noun", + "word_frequency": 26928 + }, + { + "word": "splatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mark made by a liquid splashing", + "example_sentence_english": "There was a splatter of mud on the car door.", + "pos": "noun", + "word_frequency": 26931 + }, + { + "word": "straddle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sit or stand with one leg on either side of something", + "example_sentence_english": "He had to straddle the fence to get over it.", + "pos": "verb", + "word_frequency": 26934 + }, + { + "word": "tawny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of an orange-brown or yellowish-brown color", + "example_sentence_english": "The lion had a beautiful tawny mane.", + "pos": "adjective", + "word_frequency": 26938 + }, + { + "word": "throwaway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something intended to be discarded after use", + "example_sentence_english": "We should reduce our use of throwaway plastic items.", + "pos": "noun", + "word_frequency": 26941 + }, + { + "word": "thunderous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very loud, like thunder", + "example_sentence_english": "The crowd gave a thunderous applause after the performance.", + "pos": "adjective", + "word_frequency": 26942 + }, + { + "word": "transcontinental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crossing a continent", + "example_sentence_english": "The transcontinental railroad connected the east and west coasts.", + "pos": "adjective", + "word_frequency": 26944 + }, + { + "word": "tweezer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small tool used for picking up small objects", + "example_sentence_english": "She used a tweezer to remove the splinter.", + "pos": "noun", + "word_frequency": 26947 + }, + { + "word": "twerk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dance in a sexually provocative manner", + "example_sentence_english": "The dancer began to twerk to the beat of the music.", + "pos": "verb", + "word_frequency": 26948 + }, + { + "word": "typographical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to typography or printing", + "example_sentence_english": "The book contained several typographical errors.", + "pos": "adjective", + "word_frequency": 26949 + }, + { + "word": "unbeknownst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without the knowledge of (someone)", + "example_sentence_english": "Unbeknownst to him, his friends were planning a surprise party.", + "pos": "[as-is]", + "word_frequency": 26952 + }, + { + "word": "unchain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to release from chains", + "example_sentence_english": "The zookeeper had to unchain the gate to enter the enclosure.", + "pos": "verb", + "word_frequency": 26953 + }, + { + "word": "unedited", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not edited or revised", + "example_sentence_english": "The director released an unedited version of the film.", + "pos": "adjective", + "word_frequency": 26954 + }, + { + "word": "unelected", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not chosen by election", + "example_sentence_english": "The committee consists of both elected and unelected members.", + "pos": "adjective", + "word_frequency": 26955 + }, + { + "word": "upstanding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "honorable and respectable", + "example_sentence_english": "He was known as an upstanding member of the community.", + "pos": "adjective", + "word_frequency": 26957 + }, + { + "word": "viaduct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long bridge-like structure, typically a series of arches, carrying a road or railway across a valley or other low ground.", + "example_sentence_english": "The train crossed the old stone viaduct high above the river.", + "pos": "noun", + "word_frequency": 26960 + }, + { + "word": "voracious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a very eager approach to an activity; wanting or devouring great quantities of food.", + "example_sentence_english": "He has a voracious appetite for books.", + "pos": "adjective", + "word_frequency": 26962 + }, + { + "word": "warbler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small songbird.", + "example_sentence_english": "The tiny warbler sang sweetly from the tree branch.", + "pos": "noun", + "word_frequency": 26963 + }, + { + "word": "waterwork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system of reservoirs, conduits, and pumping machinery for supplying water to a town or district.", + "example_sentence_english": "The city's waterworks ensure a clean supply of drinking water.", + "pos": "noun", + "word_frequency": 26965 + }, + { + "word": "wilful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a bad act) done on purpose; (of a person) determined to do what they want.", + "example_sentence_english": "Her wilful disobedience led to consequences.", + "pos": "adjective", + "word_frequency": 26970 + }, + { + "word": "zeitgeist", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the defining spirit or mood of a particular period of history as shown by the ideas and beliefs of the time.", + "example_sentence_english": "The film perfectly captured the zeitgeist of the 1960s.", + "pos": "noun", + "word_frequency": 26978 + }, + { + "word": "accentuate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make more noticeable or prominent.", + "example_sentence_english": "Her new hairstyle accentuates her eyes.", + "pos": "verb", + "word_frequency": 26982 + }, + { + "word": "adipose", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "(of body tissue) used for the storage of fat.", + "example_sentence_english": "Adipose tissue stores energy in the body.", + "pos": "adjective", + "word_frequency": 26984 + }, + { + "word": "adjudication", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the act or process of adjudicating a dispute.", + "example_sentence_english": "The dispute is currently awaiting adjudication.", + "pos": "noun", + "word_frequency": 26985 + }, + { + "word": "aggravation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being annoyed or made worse.", + "example_sentence_english": "The traffic caused a lot of aggravation.", + "pos": "noun", + "word_frequency": 26987 + }, + { + "word": "aggregator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that collects things or part of things together.", + "example_sentence_english": "News aggregators collect articles from various sources.", + "pos": "noun", + "word_frequency": 26988 + }, + { + "word": "airforce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the branch of a nation's armed services that conducts military operations in the air.", + "example_sentence_english": "My cousin joined the air force last year.", + "pos": "noun", + "word_frequency": 26991 + }, + { + "word": "amorous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing, feeling, or relating to sexual desire.", + "example_sentence_english": "He made amorous advances towards her.", + "pos": "adjective", + "word_frequency": 26996 + }, + { + "word": "anabolic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or promoting anabolism (the synthesis of complex molecules in living organisms).", + "example_sentence_english": "Anabolic steroids are used to build muscle mass.", + "pos": "adjective", + "word_frequency": 26997 + }, + { + "word": "anemic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suffering from anemia; lacking in color, spirit, or vitality.", + "example_sentence_english": "She felt weak and anemic after her illness.", + "pos": "adjective", + "word_frequency": 26999 + }, + { + "word": "anima", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inner self or soul", + "example_sentence_english": "Jung believed that the anima represents the feminine aspect in the male psyche.", + "pos": "[as-is]", + "word_frequency": 27000 + }, + { + "word": "apostrophe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuation mark or figure of speech", + "example_sentence_english": "The apostrophe in 'it's' indicates a contraction of 'it is'.", + "pos": "noun", + "word_frequency": 27001 + }, + { + "word": "appellation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "name or title", + "example_sentence_english": "The appellation 'Iron Lady' was given to Margaret Thatcher.", + "pos": "noun", + "word_frequency": 27002 + }, + { + "word": "appendicitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammation of the appendix", + "example_sentence_english": "He was rushed to the hospital with acute appendicitis.", + "pos": "noun", + "word_frequency": 27003 + }, + { + "word": "appropriateness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitability or correctness", + "example_sentence_english": "The appropriateness of his remarks was questioned by the audience.", + "pos": "noun", + "word_frequency": 27004 + }, + { + "word": "autumnal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to autumn", + "example_sentence_english": "The trees displayed beautiful autumnal colors.", + "pos": "adjective", + "word_frequency": 27007 + }, + { + "word": "awash", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "covered or flooded", + "example_sentence_english": "The deck was awash with seawater.", + "pos": "adjective", + "word_frequency": 27008 + }, + { + "word": "backstreet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a minor street", + "example_sentence_english": "They found a small cafe hidden down a backstreet.", + "pos": "noun", + "word_frequency": 27009 + }, + { + "word": "banishment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exile or expulsion", + "example_sentence_english": "The king ordered the banishment of the traitor.", + "pos": "noun", + "word_frequency": 27013 + }, + { + "word": "baptise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perform baptism", + "example_sentence_english": "The priest will baptise the baby next Sunday.", + "pos": "verb", + "word_frequency": 27014 + }, + { + "word": "bawl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cry or shout loudly", + "example_sentence_english": "The baby started to bawl when it woke up.", + "pos": "verb", + "word_frequency": 27017 + }, + { + "word": "beastly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpleasant or cruel", + "example_sentence_english": "The weather was absolutely beastly today.", + "pos": "adjective", + "word_frequency": 27019 + }, + { + "word": "beetroot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dark red root vegetable", + "example_sentence_english": "She added some roasted beetroot to her salad.", + "pos": "noun", + "word_frequency": 27021 + }, + { + "word": "bonita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of fish", + "example_sentence_english": "We caught a small bonita while fishing.", + "pos": "[as-is]", + "word_frequency": 27025 + }, + { + "word": "boson", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a type of subatomic particle", + "example_sentence_english": "The Higgs boson is sometimes called the 'God particle'.", + "pos": "noun", + "word_frequency": 27027 + }, + { + "word": "brainchild", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an original idea or invention", + "example_sentence_english": "The new software was the brainchild of a young programmer.", + "pos": "noun", + "word_frequency": 27028 + }, + { + "word": "brawn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physical strength", + "example_sentence_english": "He relied on his brawn rather than his intellect.", + "pos": "noun", + "word_frequency": 27029 + }, + { + "word": "bridegroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a man who is getting married", + "example_sentence_english": "The bridegroom looked nervous before the ceremony.", + "pos": "noun", + "word_frequency": 27030 + }, + { + "word": "bulwark", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a defensive wall or protection", + "example_sentence_english": "The old castle walls served as a bulwark against invaders.", + "pos": "noun", + "word_frequency": 27032 + }, + { + "word": "candidly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honestly or frankly", + "example_sentence_english": "Candidly, I don't think that's a good idea.", + "pos": "adverb", + "word_frequency": 27034 + }, + { + "word": "capsize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overturn (a boat)", + "example_sentence_english": "The strong winds caused the small boat to capsize.", + "pos": "verb", + "word_frequency": 27036 + }, + { + "word": "conciliatory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intended to placate or reconcile", + "example_sentence_english": "He adopted a conciliatory tone to resolve the dispute.", + "pos": "adjective", + "word_frequency": 27048 + }, + { + "word": "condensate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a liquid formed by condensation", + "example_sentence_english": "The cold pipe produced a lot of condensate.", + "pos": "noun", + "word_frequency": 27049 + }, + { + "word": "condiment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a substance used to add flavor to food", + "example_sentence_english": "Ketchup is a popular condiment for fries.", + "pos": "noun", + "word_frequency": 27050 + }, + { + "word": "correspondingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a corresponding manner; accordingly", + "example_sentence_english": "The demand increased, and prices rose correspondingly.", + "pos": "adverb", + "word_frequency": 27051 + }, + { + "word": "crybaby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who cries easily or complains a lot", + "example_sentence_english": "Don't be such a crybaby; it's just a scratch.", + "pos": "noun", + "word_frequency": 27055 + }, + { + "word": "culpability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "responsibility for a fault or wrong", + "example_sentence_english": "The investigation determined his culpability in the accident.", + "pos": "noun", + "word_frequency": 27056 + }, + { + "word": "cyberpunk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a genre of science fiction", + "example_sentence_english": "Blade Runner is a classic example of cyberpunk.", + "pos": "noun", + "word_frequency": 27057 + }, + { + "word": "desegregation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ending of racial segregation", + "example_sentence_english": "The desegregation of schools was a major civil rights achievement.", + "pos": "noun", + "word_frequency": 27058 + }, + { + "word": "deserter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who abandons their duty, especially in the military", + "example_sentence_english": "The soldier was declared a deserter after leaving his post.", + "pos": "noun", + "word_frequency": 27059 + }, + { + "word": "deservedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is earned or merited", + "example_sentence_english": "She deservedly won the award for her hard work.", + "pos": "adverb", + "word_frequency": 27060 + }, + { + "word": "devalue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduce or underestimate the worth of", + "example_sentence_english": "The company's shares began to devalue rapidly.", + "pos": "verb", + "word_frequency": 27061 + }, + { + "word": "digress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leave the main subject temporarily in speech or writing", + "example_sentence_english": "Let's try not to digress too much from the main topic.", + "pos": "verb", + "word_frequency": 27062 + }, + { + "word": "discus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a heavy disk thrown in an athletic contest", + "example_sentence_english": "He trained hard for the discus throw event.", + "pos": "noun", + "word_frequency": 27065 + }, + { + "word": "distinctively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is characteristic of one person or thing, and so serves to distinguish it from others", + "example_sentence_english": "The artist's style is distinctively modern.", + "pos": "adverb", + "word_frequency": 27066 + }, + { + "word": "elaborately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a detailed and complicated manner", + "example_sentence_english": "The plan was elaborately designed.", + "pos": "adverb", + "word_frequency": 27074 + }, + { + "word": "empathize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understand and share the feelings of another", + "example_sentence_english": "It's important to empathize with others' struggles.", + "pos": "verb", + "word_frequency": 27075 + }, + { + "word": "endocrinology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the branch of physiology and medicine concerned with endocrine glands and hormones", + "example_sentence_english": "She decided to specialize in endocrinology.", + "pos": "noun", + "word_frequency": 27076 + }, + { + "word": "energetically", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an energetic manner; with energy", + "example_sentence_english": "He energetically tackled the new project.", + "pos": "adverb", + "word_frequency": 27077 + }, + { + "word": "estimator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose job is to calculate the cost of something", + "example_sentence_english": "The estimator provided a quote for the construction work.", + "pos": "noun", + "word_frequency": 27079 + }, + { + "word": "excellently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very well; superbly", + "example_sentence_english": "She performed excellently in the play.", + "pos": "adverb", + "word_frequency": 27080 + }, + { + "word": "extrusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of forcing something out", + "example_sentence_english": "The manufacturing process involves the extrusion of plastic.", + "pos": "noun", + "word_frequency": 27081 + }, + { + "word": "fester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become infected; to worsen over time", + "example_sentence_english": "The wound began to fester after a few days.", + "pos": "verb", + "word_frequency": 27084 + }, + { + "word": "flywheel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a heavy revolving wheel in a machine", + "example_sentence_english": "The engine's flywheel helps to smooth out power delivery.", + "pos": "noun", + "word_frequency": 27085 + }, + { + "word": "foregone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "already determined or inevitable", + "example_sentence_english": "The outcome of the election was a foregone conclusion.", + "pos": "adjective", + "word_frequency": 27086 + }, + { + "word": "foreshadow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be a warning or indication of a future event", + "example_sentence_english": "The dark clouds foreshadowed the coming storm.", + "pos": "verb", + "word_frequency": 27087 + }, + { + "word": "fortnightly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "once every two weeks", + "example_sentence_english": "The magazine is published fortnightly.", + "pos": "adverb", + "word_frequency": 27089 + }, + { + "word": "fulcrum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the point on which a lever rests or is supported", + "example_sentence_english": "The seesaw balanced perfectly on its fulcrum.", + "pos": "noun", + "word_frequency": 27091 + }, + { + "word": "ginseng", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant root used in traditional medicine", + "example_sentence_english": "Many people drink ginseng tea for its health benefits.", + "pos": "noun", + "word_frequency": 27100 + }, + { + "word": "grimy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "covered with dirt or soot; dirty", + "example_sentence_english": "His hands were grimy after working on the car engine.", + "pos": "adjective", + "word_frequency": 27103 + }, + { + "word": "hardball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a firm and uncompromising approach", + "example_sentence_english": "The company decided to play hardball in the negotiations.", + "pos": "noun", + "word_frequency": 27110 + }, + { + "word": "headstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stone slab at the head of a grave", + "example_sentence_english": "The old headstone was covered in moss.", + "pos": "noun", + "word_frequency": 27114 + }, + { + "word": "heterogeneity", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the quality or state of being diverse in character or content", + "example_sentence_english": "The study examined the heterogeneity of the patient population.", + "pos": "noun", + "word_frequency": 27116 + }, + { + "word": "hibiscus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plant with large, colorful flowers", + "example_sentence_english": "The garden was full of beautiful hibiscus flowers.", + "pos": "noun", + "word_frequency": 27117 + }, + { + "word": "hob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A cooking surface on a stove", + "example_sentence_english": "She placed the pan on the hob to boil water.", + "pos": "[as-is]", + "word_frequency": 27121 + }, + { + "word": "hyperactive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Extremely active", + "example_sentence_english": "The child was hyperactive after eating too much sugar.", + "pos": "adjective", + "word_frequency": 27124 + }, + { + "word": "hysterectomy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Surgical removal of the uterus", + "example_sentence_english": "She underwent a hysterectomy for medical reasons.", + "pos": "noun", + "word_frequency": 27125 + }, + { + "word": "icky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Unpleasant or sticky", + "example_sentence_english": "The slime felt icky to the touch.", + "pos": "adjective", + "word_frequency": 27127 + }, + { + "word": "identically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In an identical manner", + "example_sentence_english": "The twins were dressed identically.", + "pos": "adverb", + "word_frequency": 27128 + }, + { + "word": "immediacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The quality of being immediate", + "example_sentence_english": "The immediacy of the danger was clear to everyone.", + "pos": "noun", + "word_frequency": 27129 + }, + { + "word": "immunotherapy", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Treatment that uses the body's immune system", + "example_sentence_english": "Immunotherapy is a promising new cancer treatment.", + "pos": "noun", + "word_frequency": 27130 + }, + { + "word": "inbreeding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Breeding of closely related individuals", + "example_sentence_english": "Inbreeding can lead to a reduction in genetic diversity.", + "pos": "noun", + "word_frequency": 27131 + }, + { + "word": "incisive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Intelligently analytical and clear-thinking", + "example_sentence_english": "Her incisive comments cut to the heart of the matter.", + "pos": "adjective", + "word_frequency": 27132 + }, + { + "word": "inconspicuous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not clearly visible or attracting attention", + "example_sentence_english": "He tried to remain inconspicuous in the crowd.", + "pos": "adjective", + "word_frequency": 27133 + }, + { + "word": "indebtedness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state of being in debt", + "example_sentence_english": "The country's indebtedness grew significantly last year.", + "pos": "noun", + "word_frequency": 27134 + }, + { + "word": "indenture", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "To bind someone by an agreement as an apprentice or laborer", + "example_sentence_english": "Many immigrants were indentured servants in the colonies.", + "pos": "verb", + "word_frequency": 27135 + }, + { + "word": "inhospitable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not welcoming or providing shelter", + "example_sentence_english": "The desert is an inhospitable environment for most plants.", + "pos": "adjective", + "word_frequency": 27137 + }, + { + "word": "inoperable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not able to be operated on or used", + "example_sentence_english": "The tumor was deemed inoperable by the surgeons.", + "pos": "adjective", + "word_frequency": 27138 + }, + { + "word": "insufficiently", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To an inadequate degree", + "example_sentence_english": "The food was insufficiently cooked.", + "pos": "adverb", + "word_frequency": 27139 + }, + { + "word": "intercession", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "The action of intervening on behalf of another", + "example_sentence_english": "He sought divine intercession for his ailing mother.", + "pos": "noun", + "word_frequency": 27140 + }, + { + "word": "interferon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A protein that inhibits virus replication", + "example_sentence_english": "Interferon is used in the treatment of some viral infections.", + "pos": "noun", + "word_frequency": 27141 + }, + { + "word": "irritability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The quality of being easily annoyed", + "example_sentence_english": "Lack of sleep can lead to increased irritability.", + "pos": "noun", + "word_frequency": 27142 + }, + { + "word": "keychain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A chain for holding keys", + "example_sentence_english": "He keeps his house keys on a small keychain.", + "pos": "noun", + "word_frequency": 27154 + }, + { + "word": "laity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordinary people, not clergy", + "example_sentence_english": "The sermon was aimed at educating the laity about church doctrine.", + "pos": "noun", + "word_frequency": 27160 + }, + { + "word": "landlocked", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrounded by land", + "example_sentence_english": "Switzerland is a landlocked country in Europe.", + "pos": "adjective", + "word_frequency": 27161 + }, + { + "word": "latterly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recently; in latter times", + "example_sentence_english": "Latterly, he has shown great improvement in his studies.", + "pos": "adverb", + "word_frequency": 27162 + }, + { + "word": "leukaemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of cancer of the blood", + "example_sentence_english": "She was diagnosed with leukaemia at a young age.", + "pos": "noun", + "word_frequency": 27163 + }, + { + "word": "licensure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the granting of a license", + "example_sentence_english": "Obtaining licensure is a crucial step for medical professionals.", + "pos": "noun", + "word_frequency": 27165 + }, + { + "word": "lingua", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a language or tongue", + "example_sentence_english": "English often serves as a lingua franca in international business.", + "pos": "[as-is]", + "word_frequency": 27166 + }, + { + "word": "luminary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who inspires or influences others, especially one prominent in a particular sphere", + "example_sentence_english": "He was considered a luminary in the field of astrophysics.", + "pos": "noun", + "word_frequency": 27169 + }, + { + "word": "making", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of creating or becoming", + "example_sentence_english": "The new policy is still in the making.", + "pos": "noun", + "word_frequency": 27172 + }, + { + "word": "maleficent", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "harmful or evil in intent or effect", + "example_sentence_english": "The sorceress cast a maleficent spell on the kingdom.", + "pos": "adjective", + "word_frequency": 27174 + }, + { + "word": "mesmerize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hypnotize or enthrall", + "example_sentence_english": "The magician's performance completely mesmerized the audience.", + "pos": "verb", + "word_frequency": 27183 + }, + { + "word": "midge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, two-winged insect", + "example_sentence_english": "We were constantly swatting away midges during our hike.", + "pos": "noun", + "word_frequency": 27184 + }, + { + "word": "minotaur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mythical creature with the head of a bull and the body of a man", + "example_sentence_english": "The hero Theseus famously defeated the Minotaur in the labyrinth.", + "pos": "noun", + "word_frequency": 27185 + }, + { + "word": "mottled", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marked with spots or smears of color", + "example_sentence_english": "The old wall had a mottled appearance due to years of weathering.", + "pos": "adjective", + "word_frequency": 27190 + }, + { + "word": "mountainside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the side or slope of a mountain", + "example_sentence_english": "The hikers carefully ascended the steep mountainside.", + "pos": "noun", + "word_frequency": 27192 + }, + { + "word": "mucous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a slimy substance secreted by mucous membranes", + "example_sentence_english": "The body produces mucous to protect the lining of the respiratory tract.", + "pos": "noun", + "word_frequency": 27194 + }, + { + "word": "mythos", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a set of beliefs or assumptions about something", + "example_sentence_english": "The film explores the mythos surrounding the ancient hero.", + "pos": "noun", + "word_frequency": 27198 + }, + { + "word": "nationalized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring under state control", + "example_sentence_english": "The government decided to nationalize the failing bank.", + "pos": "verb", + "word_frequency": 27201 + }, + { + "word": "neutrinos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subatomic particles with no electric charge", + "example_sentence_english": "Neutrinos are notoriously difficult to detect due to their weak interaction with matter.", + "pos": "noun", + "word_frequency": 27203 + }, + { + "word": "nips", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small bite or sip", + "example_sentence_english": "He took a quick nip of the strong coffee.", + "pos": "noun", + "word_frequency": 27204 + }, + { + "word": "northside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the northern part of a town or area", + "example_sentence_english": "They live on the northside of the city, near the park.", + "pos": "noun", + "word_frequency": 27205 + }, + { + "word": "obelisk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tall, four-sided, narrow tapering monument", + "example_sentence_english": "The ancient Egyptians erected many impressive obelisks.", + "pos": "noun", + "word_frequency": 27210 + }, + { + "word": "oddball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strange or eccentric person", + "example_sentence_english": "He's a bit of an oddball, but he's harmless.", + "pos": "noun", + "word_frequency": 27211 + }, + { + "word": "offload", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get rid of something or someone", + "example_sentence_english": "They needed to offload the excess inventory before the new stock arrived.", + "pos": "verb", + "word_frequency": 27212 + }, + { + "word": "osteoarthritis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a common form of arthritis", + "example_sentence_english": "Osteoarthritis often affects the knees and hips.", + "pos": "noun", + "word_frequency": 27215 + }, + { + "word": "outlander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a foreigner or stranger", + "example_sentence_english": "The villagers were wary of the outlander who arrived in their quiet town.", + "pos": "noun", + "word_frequency": 27217 + }, + { + "word": "overestimated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to estimate something to be larger or better than it really is", + "example_sentence_english": "He overestimated his ability to finish the project on time.", + "pos": "verb", + "word_frequency": 27218 + }, + { + "word": "overloading", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put too great a load on", + "example_sentence_english": "Be careful not to overload the washing machine.", + "pos": "verb", + "word_frequency": 27219 + }, + { + "word": "pariah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an outcast", + "example_sentence_english": "After the scandal, he became a pariah in the community.", + "pos": "noun", + "word_frequency": 27224 + }, + { + "word": "parka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a warm jacket with a hood", + "example_sentence_english": "She zipped up her parka to protect herself from the cold wind.", + "pos": "noun", + "word_frequency": 27225 + }, + { + "word": "peerless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequaled; unrivaled", + "example_sentence_english": "Her peerless talent for music was evident from a young age.", + "pos": "adjective", + "word_frequency": 27228 + }, + { + "word": "permanence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of lasting or remaining unchanged indefinitely", + "example_sentence_english": "They sought permanence in their relationship.", + "pos": "noun", + "word_frequency": 27230 + }, + { + "word": "permeable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allowing liquids or gases to pass through it", + "example_sentence_english": "The soil was highly permeable, allowing water to drain quickly.", + "pos": "adjective", + "word_frequency": 27231 + }, + { + "word": "personhood", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or condition of being an individual person", + "example_sentence_english": "The debate centered on the legal definition of personhood.", + "pos": "noun", + "word_frequency": 27232 + }, + { + "word": "pillage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rob a place using violence, especially in wartime", + "example_sentence_english": "The invading army began to pillage the conquered city.", + "pos": "verb", + "word_frequency": 27234 + }, + { + "word": "pistachio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small green nut", + "example_sentence_english": "She enjoyed eating pistachio ice cream.", + "pos": "noun", + "word_frequency": 27235 + }, + { + "word": "plebiscite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a direct vote of all the members of an electorate on an important public question", + "example_sentence_english": "The government decided to hold a plebiscite on the proposed constitutional changes.", + "pos": "noun", + "word_frequency": 27236 + }, + { + "word": "polyurethane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a synthetic resin used in foams, coatings, and adhesives", + "example_sentence_english": "The furniture was upholstered in durable polyurethane fabric.", + "pos": "noun", + "word_frequency": 27239 + }, + { + "word": "precipice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a very steep cliff", + "example_sentence_english": "The hikers stood at the edge of the precipice, gazing at the valley below.", + "pos": "noun", + "word_frequency": 27241 + }, + { + "word": "protégé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is guided and supported by an older and more experienced person", + "example_sentence_english": "The young artist was a protégé of the famous sculptor.", + "pos": "noun", + "word_frequency": 27242 + }, + { + "word": "quickie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "something done or made quickly", + "example_sentence_english": "Let's just do a quickie review before the meeting.", + "pos": "noun", + "word_frequency": 27243 + }, + { + "word": "ravenous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely hungry", + "example_sentence_english": "After the long hike, they were all ravenous.", + "pos": "adjective", + "word_frequency": 27248 + }, + { + "word": "realy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "in fact; actually", + "example_sentence_english": "I'm realy sorry for the mistake.", + "pos": "adverb", + "word_frequency": 27249 + }, + { + "word": "reclusive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "avoiding the company of other people; solitary", + "example_sentence_english": "The reclusive author rarely left his isolated cabin.", + "pos": "adjective", + "word_frequency": 27250 + }, + { + "word": "reinstall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "install again", + "example_sentence_english": "I had to reinstall the software after the update failed.", + "pos": "verb", + "word_frequency": 27252 + }, + { + "word": "rind", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the tough outer layer of certain fruits, cheeses, or meats", + "example_sentence_english": "You can grate the lemon rind for extra flavor.", + "pos": "noun", + "word_frequency": 27255 + }, + { + "word": "riparian", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or situated on the banks of a river", + "example_sentence_english": "The conservation efforts focused on protecting the riparian habitats.", + "pos": "adjective", + "word_frequency": 27256 + }, + { + "word": "riverfront", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a city or town alongside a river", + "example_sentence_english": "They enjoyed a walk along the riverfront.", + "pos": "noun", + "word_frequency": 27257 + }, + { + "word": "rosebud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bud of a rose", + "example_sentence_english": "The rosebud slowly began to open in the morning sun.", + "pos": "noun", + "word_frequency": 27258 + }, + { + "word": "rosé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of wine, pink in color", + "example_sentence_english": "We ordered a bottle of chilled rosé for dinner.", + "pos": "noun", + "word_frequency": 27259 + }, + { + "word": "ruck", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large number of ordinary people or things; a confused mass", + "example_sentence_english": "He fought his way through the ruck of reporters.", + "pos": "noun", + "word_frequency": 27261 + }, + { + "word": "salamander", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small amphibian with a lizard-like appearance", + "example_sentence_english": "The salamander hid under a damp log.", + "pos": "noun", + "word_frequency": 27263 + }, + { + "word": "scalpel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, light, straight knife used by surgeons", + "example_sentence_english": "The surgeon carefully picked up the scalpel.", + "pos": "noun", + "word_frequency": 27267 + }, + { + "word": "scraper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool or device used for scraping", + "example_sentence_english": "She used a paint scraper to remove the old wallpaper.", + "pos": "noun", + "word_frequency": 27268 + }, + { + "word": "scribble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to write or draw carelessly or hurriedly", + "example_sentence_english": "He quickly scribbled a note before leaving.", + "pos": "verb", + "word_frequency": 27269 + }, + { + "word": "singularly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a singular or unique way; exceptionally", + "example_sentence_english": "She was singularly talented among her peers.", + "pos": "adverb", + "word_frequency": 27272 + }, + { + "word": "sinkhole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cavity in the ground, especially in limestone bedrock, caused by water erosion", + "example_sentence_english": "A large sinkhole suddenly appeared in the middle of the road.", + "pos": "noun", + "word_frequency": 27273 + }, + { + "word": "skimpy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing or consisting of bare minimum; revealing", + "example_sentence_english": "She wore a very skimpy bikini to the beach.", + "pos": "adjective", + "word_frequency": 27274 + }, + { + "word": "sorceress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who practices magic; a witch", + "example_sentence_english": "The brave knight faced the evil sorceress in her dark castle.", + "pos": "noun", + "word_frequency": 27278 + }, + { + "word": "spaceflight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a journey into outer space", + "example_sentence_english": "Human spaceflight continues to push the boundaries of exploration.", + "pos": "noun", + "word_frequency": 27279 + }, + { + "word": "spender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who spends money", + "example_sentence_english": "She's a big spender when it comes to clothes.", + "pos": "noun", + "word_frequency": 27281 + }, + { + "word": "sphincter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a ring of muscle surrounding and serving to guard or close an opening or tube", + "example_sentence_english": "The esophageal sphincter prevents stomach acid from flowing back up.", + "pos": "noun", + "word_frequency": 27282 + }, + { + "word": "sternum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the breastbone", + "example_sentence_english": "The ribs are connected to the sternum.", + "pos": "noun", + "word_frequency": 27284 + }, + { + "word": "stockbroker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who buys and sells stocks and shares for clients", + "example_sentence_english": "My uncle works as a stockbroker in the city.", + "pos": "noun", + "word_frequency": 27285 + }, + { + "word": "strangulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of strangling or being strangled", + "example_sentence_english": "The cause of death was determined to be strangulation.", + "pos": "noun", + "word_frequency": 27287 + }, + { + "word": "stratification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the arrangement or classification of something into different groups", + "example_sentence_english": "Social stratification is a key concept in sociology.", + "pos": "noun", + "word_frequency": 27288 + }, + { + "word": "stratify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arrange or classify into strata or groups", + "example_sentence_english": "The data was stratified by age group.", + "pos": "verb", + "word_frequency": 27289 + }, + { + "word": "stretchy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to stretch or be stretched easily", + "example_sentence_english": "These new jeans are really stretchy and comfortable.", + "pos": "adjective", + "word_frequency": 27290 + }, + { + "word": "suckle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feed a baby or young animal from the breast or teat", + "example_sentence_english": "The mother cat began to suckle her kittens.", + "pos": "verb", + "word_frequency": 27291 + }, + { + "word": "sucrose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound which is the chief component of cane or beet sugar", + "example_sentence_english": "Sucrose is a disaccharide made of glucose and fructose.", + "pos": "noun", + "word_frequency": 27292 + }, + { + "word": "sundae", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dish of ice cream with fruit, nuts, syrup, etc.", + "example_sentence_english": "I ordered a chocolate fudge sundae for dessert.", + "pos": "noun", + "word_frequency": 27294 + }, + { + "word": "sundry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of various kinds; several", + "example_sentence_english": "The shop sells sundry items for the home.", + "pos": "adjective", + "word_frequency": 27295 + }, + { + "word": "supercomputer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a particularly powerful mainframe computer", + "example_sentence_english": "Scientists use a supercomputer to model climate change.", + "pos": "noun", + "word_frequency": 27296 + }, + { + "word": "swampy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consisting of or resembling a swamp; boggy", + "example_sentence_english": "The ground was very swampy after the heavy rain.", + "pos": "adjective", + "word_frequency": 27298 + }, + { + "word": "tiding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "news or information", + "example_sentence_english": "She brought a tiding of joy.", + "pos": "noun", + "word_frequency": 27300 + }, + { + "word": "toothache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pain in a tooth or teeth", + "example_sentence_english": "I have a terrible toothache and need to see a dentist.", + "pos": "noun", + "word_frequency": 27301 + }, + { + "word": "tranquillity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being tranquil; calmness", + "example_sentence_english": "She found peace and tranquillity by the lake.", + "pos": "noun", + "word_frequency": 27302 + }, + { + "word": "transitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of a verb or a sense of a verb) able to take a direct object", + "example_sentence_english": "The verb 'eat' can be transitive, as in 'I eat apples'.", + "pos": "adjective", + "word_frequency": 27303 + }, + { + "word": "trigonometry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the branch of mathematics dealing with the relations of the sides and angles of triangles", + "example_sentence_english": "Trigonometry is an essential part of advanced mathematics.", + "pos": "noun", + "word_frequency": 27304 + }, + { + "word": "trimming", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ornamental addition or a piece cut off", + "example_sentence_english": "The dress had a beautiful lace trimming.", + "pos": "noun", + "word_frequency": 27305 + }, + { + "word": "tutelage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protection of or authority over someone or something; guardianship", + "example_sentence_english": "Under the tutelage of her mentor, she quickly improved.", + "pos": "noun", + "word_frequency": 27308 + }, + { + "word": "typhus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an infectious disease caused by rickettsiae", + "example_sentence_english": "Historically, typhus outbreaks were common during wartime.", + "pos": "noun", + "word_frequency": 27309 + }, + { + "word": "unaffiliated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not officially attached or connected to an organization or group", + "example_sentence_english": "He chose to remain unaffiliated with any political party.", + "pos": "adjective", + "word_frequency": 27311 + }, + { + "word": "unconscionable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not right or reasonable; shockingly unfair or unjust", + "example_sentence_english": "The company's actions were deemed unconscionable by the court.", + "pos": "adjective", + "word_frequency": 27312 + }, + { + "word": "unflattering", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not flattering; making someone or something look less attractive or appealing", + "example_sentence_english": "The photograph was quite unflattering.", + "pos": "adjective", + "word_frequency": 27313 + }, + { + "word": "unrecognizable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be recognized", + "example_sentence_english": "After years, he was almost unrecognizable.", + "pos": "adjective", + "word_frequency": 27314 + }, + { + "word": "unscheduled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not planned or arranged to happen at a particular time", + "example_sentence_english": "The flight had an unscheduled stop due to bad weather.", + "pos": "adjective", + "word_frequency": 27316 + }, + { + "word": "unstructured", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not formally organized or structured", + "example_sentence_english": "The meeting was very unstructured, with no clear agenda.", + "pos": "adjective", + "word_frequency": 27317 + }, + { + "word": "vagrant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person without a settled home or regular work who wanders from place to place", + "example_sentence_english": "The police picked up a vagrant sleeping on a park bench.", + "pos": "noun", + "word_frequency": 27318 + }, + { + "word": "vlog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "video blog", + "example_sentence_english": "She posts a new vlog every week about her travels.", + "pos": "noun", + "word_frequency": 27322 + }, + { + "word": "voiceless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without a voice; unvoiced (phonetics)", + "example_sentence_english": "The voiceless consonants in English include 'p' and 't'.", + "pos": "adjective", + "word_frequency": 27323 + }, + { + "word": "walkout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strike; a sudden departure", + "example_sentence_english": "The workers staged a walkout to protest the low wages.", + "pos": "noun", + "word_frequency": 27327 + }, + { + "word": "wimpy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weak; cowardly", + "example_sentence_english": "Don't be so wimpy; stand up for yourself!", + "pos": "adjective", + "word_frequency": 27330 + }, + { + "word": "woodman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who works in a forest, a lumberjack", + "example_sentence_english": "The woodman chopped down trees all day.", + "pos": "noun", + "word_frequency": 27331 + }, + { + "word": "wordplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the witty use of words", + "example_sentence_english": "His speech was full of clever wordplay and puns.", + "pos": "noun", + "word_frequency": 27332 + }, + { + "word": "acceptor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "one who accepts; a recipient", + "example_sentence_english": "In chemistry, an electron acceptor gains electrons.", + "pos": "noun", + "word_frequency": 27341 + }, + { + "word": "alertness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being watchful and ready", + "example_sentence_english": "The pilot's alertness prevented a serious accident.", + "pos": "noun", + "word_frequency": 27343 + }, + { + "word": "alleyway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a narrow passage or street", + "example_sentence_english": "We walked down the dark alleyway to reach the back entrance.", + "pos": "noun", + "word_frequency": 27344 + }, + { + "word": "attenuate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reduce the force, effect, or value of", + "example_sentence_english": "The vaccine helps to attenuate the effects of the virus.", + "pos": "verb", + "word_frequency": 27351 + }, + { + "word": "backcountry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a remote, undeveloped area", + "example_sentence_english": "They went hiking deep into the backcountry.", + "pos": "noun", + "word_frequency": 27356 + }, + { + "word": "bandana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of cloth, typically square, worn on the head or around the neck", + "example_sentence_english": "He tied a red bandana around his head.", + "pos": "noun", + "word_frequency": 27357 + }, + { + "word": "bangle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rigid bracelet or anklet", + "example_sentence_english": "She wore several silver bangles on her wrist.", + "pos": "noun", + "word_frequency": 27358 + }, + { + "word": "barbarism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an uncivilized or primitive state; a cruel or brutal act", + "example_sentence_english": "The act of torture is a true barbarism.", + "pos": "noun", + "word_frequency": 27359 + }, + { + "word": "bareback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without a saddle", + "example_sentence_english": "She rode the horse bareback across the field.", + "pos": "adjective", + "word_frequency": 27360 + }, + { + "word": "battlefront", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the front line of a battle", + "example_sentence_english": "The soldiers advanced towards the battlefront.", + "pos": "noun", + "word_frequency": 27361 + }, + { + "word": "billet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place where soldiers are lodged", + "example_sentence_english": "The soldiers were assigned a billet in the village.", + "pos": "noun", + "word_frequency": 27366 + }, + { + "word": "blissfully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a state of extreme happiness", + "example_sentence_english": "They were blissfully unaware of the danger.", + "pos": "adverb", + "word_frequency": 27367 + }, + { + "word": "boneless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without bones", + "example_sentence_english": "I prefer boneless chicken breasts for dinner.", + "pos": "adjective", + "word_frequency": 27368 + }, + { + "word": "brainless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stupid or foolish", + "example_sentence_english": "That was a brainless decision.", + "pos": "adjective", + "word_frequency": 27370 + }, + { + "word": "breadcrumb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small pieces of dried bread", + "example_sentence_english": "Roll the chicken in breadcrumbs before frying.", + "pos": "noun", + "word_frequency": 27371 + }, + { + "word": "breathable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allowing air to pass through easily", + "example_sentence_english": "This jacket is made of breathable fabric.", + "pos": "adjective", + "word_frequency": 27372 + }, + { + "word": "bulkhead", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dividing wall or barrier, especially in a ship or aircraft", + "example_sentence_english": "The crew checked the integrity of the bulkhead.", + "pos": "noun", + "word_frequency": 27373 + }, + { + "word": "bur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prickly seed case or flower head", + "example_sentence_english": "My dog came back covered in burs.", + "pos": "noun", + "word_frequency": 27375 + }, + { + "word": "carpool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an arrangement to share private transportation", + "example_sentence_english": "We organized a carpool to save on gas.", + "pos": "noun", + "word_frequency": 27376 + }, + { + "word": "cashew", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a kidney-shaped edible nut", + "example_sentence_english": "I like to snack on cashews.", + "pos": "noun", + "word_frequency": 27377 + }, + { + "word": "cavernous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "like a cavern in size, shape, or atmosphere", + "example_sentence_english": "The old warehouse was cavernous and empty.", + "pos": "adjective", + "word_frequency": 27378 + }, + { + "word": "chaff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the husks of corn or other seed-bearing plants", + "example_sentence_english": "They separated the wheat from the chaff.", + "pos": "noun", + "word_frequency": 27381 + }, + { + "word": "changeable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liable to change", + "example_sentence_english": "The weather in spring is very changeable.", + "pos": "adjective", + "word_frequency": 27382 + }, + { + "word": "chaperone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who accompanies and looks after another", + "example_sentence_english": "A teacher will act as a chaperone for the school trip.", + "pos": "noun", + "word_frequency": 27383 + }, + { + "word": "chlorophyll", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the green pigment in plants", + "example_sentence_english": "Chlorophyll is essential for photosynthesis in plants.", + "pos": "noun", + "word_frequency": 27384 + }, + { + "word": "chroma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the purity or intensity of color", + "example_sentence_english": "The artist adjusted the chroma to make the colors more vibrant.", + "pos": "noun", + "word_frequency": 27385 + }, + { + "word": "claret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dry red wine from Bordeaux, or a deep purplish-red color", + "example_sentence_english": "He ordered a glass of claret with his meal.", + "pos": "noun", + "word_frequency": 27386 + }, + { + "word": "cloister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a covered walk, especially in a monastery or cathedral", + "example_sentence_english": "The monks walked silently through the cloister.", + "pos": "noun", + "word_frequency": 27387 + }, + { + "word": "cochlear", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the cochlea of the inner ear", + "example_sentence_english": "A cochlear implant can help people with severe hearing loss.", + "pos": "adjective", + "word_frequency": 27388 + }, + { + "word": "concomitant", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "naturally accompanying or associated", + "example_sentence_english": "Loss of memory is a concomitant symptom of the disease.", + "pos": "adjective", + "word_frequency": 27390 + }, + { + "word": "constipate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause constipation", + "example_sentence_english": "Certain medications can constipate you.", + "pos": "verb", + "word_frequency": 27391 + }, + { + "word": "creationism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the belief that the universe and living organisms originate from divine creation", + "example_sentence_english": "Creationism is a belief system that contrasts with the theory of evolution.", + "pos": "noun", + "word_frequency": 27394 + }, + { + "word": "crump", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a dull, heavy sound, especially of an explosion", + "example_sentence_english": "They heard the distant crump of artillery.", + "pos": "noun", + "word_frequency": 27395 + }, + { + "word": "cymbal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a musical percussion instrument", + "example_sentence_english": "The drummer hit the cymbal with a loud crash.", + "pos": "noun", + "word_frequency": 27400 + }, + { + "word": "determinism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the doctrine that all events, including human action, are ultimately determined by causes external to the will", + "example_sentence_english": "The debate between free will and determinism is ancient.", + "pos": "noun", + "word_frequency": 27405 + }, + { + "word": "dingo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wild dog native to Australia", + "example_sentence_english": "A dingo is a wild dog found in Australia.", + "pos": "noun", + "word_frequency": 27407 + }, + { + "word": "disaffect", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone feel alienated or hostile", + "example_sentence_english": "The government's policies began to disaffect the public.", + "pos": "verb", + "word_frequency": 27408 + }, + { + "word": "dispossess", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deprive someone of land, property, or other possessions", + "example_sentence_english": "The landlord threatened to dispossess the tenants for unpaid rent.", + "pos": "verb", + "word_frequency": 27409 + }, + { + "word": "domicile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's fixed, permanent, and principal home for legal purposes", + "example_sentence_english": "His legal domicile is in New York, even though he travels frequently.", + "pos": "noun", + "word_frequency": 27411 + }, + { + "word": "dreamland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an imaginary, idealized, or idyllic place or state", + "example_sentence_english": "After a long day, he was ready to drift off to dreamland.", + "pos": "noun", + "word_frequency": 27414 + }, + { + "word": "dumbfound", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to greatly astonish or amaze; to make speechless with amazement", + "example_sentence_english": "The magician's trick dumbfounded the audience.", + "pos": "verb", + "word_frequency": 27415 + }, + { + "word": "egotistical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessively conceited or absorbed in oneself; self-centered", + "example_sentence_english": "His egotistical behavior made him unpopular with his colleagues.", + "pos": "adjective", + "word_frequency": 27420 + }, + { + "word": "encrust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cover (a surface) with a hard crust or coating", + "example_sentence_english": "Over time, the pipes became encrusted with mineral deposits.", + "pos": "verb", + "word_frequency": 27423 + }, + { + "word": "erudite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing great knowledge or learning", + "example_sentence_english": "The professor was known for his erudite lectures.", + "pos": "adjective", + "word_frequency": 27425 + }, + { + "word": "fastener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device, such as a button or zipper, that fastens things together", + "example_sentence_english": "The zipper is a common type of fastener on clothing.", + "pos": "noun", + "word_frequency": 27426 + }, + { + "word": "fervour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intense and passionate feeling", + "example_sentence_english": "The crowd cheered with great fervour for their team.", + "pos": "noun", + "word_frequency": 27427 + }, + { + "word": "foursome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of four people", + "example_sentence_english": "A foursome played golf together on Saturday.", + "pos": "noun", + "word_frequency": 27428 + }, + { + "word": "francophone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who speaks French, especially as a native language", + "example_sentence_english": "Canada has a large francophone population.", + "pos": "noun", + "word_frequency": 27429 + }, + { + "word": "froth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mass of small bubbles in liquid", + "example_sentence_english": "The waves left a line of white froth on the beach.", + "pos": "noun", + "word_frequency": 27430 + }, + { + "word": "furlough", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a leave of absence, especially from military duty or for a government employee", + "example_sentence_english": "Many employees were sent home on furlough during the economic downturn.", + "pos": "noun", + "word_frequency": 27431 + }, + { + "word": "galleria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a covered shopping arcade or art gallery", + "example_sentence_english": "They spent the afternoon browsing shops in the galleria.", + "pos": "noun", + "word_frequency": 27434 + }, + { + "word": "gnaw", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bite at or nibble something persistently", + "example_sentence_english": "The dog loved to gnaw on its bone.", + "pos": "verb", + "word_frequency": 27435 + }, + { + "word": "guile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sly or cunning intelligence", + "example_sentence_english": "He used his guile to outsmart his opponents.", + "pos": "noun", + "word_frequency": 27437 + }, + { + "word": "hallo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "an exclamation used as a greeting or to attract attention", + "example_sentence_english": "Hallo, how are you today?", + "pos": "interjection", + "word_frequency": 27439 + }, + { + "word": "heartedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "With sincere feeling or enthusiasm.", + "example_sentence_english": "She thanked him whole-heartedly for his help.", + "pos": "adverb", + "word_frequency": 27442 + }, + { + "word": "heft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Weight or bulk.", + "example_sentence_english": "He tested the heft of the package in his hands.", + "pos": "noun", + "word_frequency": 27443 + }, + { + "word": "hideaway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A secluded place.", + "example_sentence_english": "They found a perfect hideaway in the mountains for their vacation.", + "pos": "noun", + "word_frequency": 27446 + }, + { + "word": "hilarity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Extreme amusement, especially as expressed by laughter.", + "example_sentence_english": "The comedian's jokes caused much hilarity among the audience.", + "pos": "noun", + "word_frequency": 27447 + }, + { + "word": "homeworld", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A planet or world from which a species or individual originates.", + "example_sentence_english": "The aliens were trying to return to their homeworld.", + "pos": "noun", + "word_frequency": 27450 + }, + { + "word": "homey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Comfortable and cozy, like home.", + "example_sentence_english": "The small cottage had a very homey atmosphere.", + "pos": "adjective", + "word_frequency": 27451 + }, + { + "word": "impropriety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A failure to observe standards or show due honesty or modesty; improper behavior.", + "example_sentence_english": "The politician was accused of financial impropriety.", + "pos": "noun", + "word_frequency": 27453 + }, + { + "word": "inactivation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of making something inactive or ineffective.", + "example_sentence_english": "The inactivation of the enzyme was crucial for the experiment.", + "pos": "noun", + "word_frequency": 27454 + }, + { + "word": "incompatibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A state in which two things are unable to exist or be used together.", + "example_sentence_english": "Their personalities showed a clear incompatibility.", + "pos": "noun", + "word_frequency": 27455 + }, + { + "word": "interment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The burial of a corpse in a grave or tomb, typically with funeral rites.", + "example_sentence_english": "The family gathered for the interment of their loved one.", + "pos": "noun", + "word_frequency": 27457 + }, + { + "word": "irk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To annoy or irritate.", + "example_sentence_english": "His constant complaining began to irk her.", + "pos": "verb", + "word_frequency": 27458 + }, + { + "word": "junkyard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A place where junk is collected and stored.", + "example_sentence_english": "He found some old car parts at the junkyard.", + "pos": "noun", + "word_frequency": 27465 + }, + { + "word": "jurist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An expert in law; a legal scholar.", + "example_sentence_english": "The esteemed jurist delivered a lecture on constitutional law.", + "pos": "noun", + "word_frequency": 27466 + }, + { + "word": "juxtapose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To place or deal with close together for contrasting effect.", + "example_sentence_english": "The artist chose to juxtapose bright colors with dark shadows.", + "pos": "verb", + "word_frequency": 27467 + }, + { + "word": "kingship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state, office, or dignity of a king.", + "example_sentence_english": "The young prince was being prepared for kingship.", + "pos": "noun", + "word_frequency": 27470 + }, + { + "word": "legitimize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make legitimate; to justify or make lawful.", + "example_sentence_english": "The government sought to legitimize its actions through a public vote.", + "pos": "verb", + "word_frequency": 27478 + }, + { + "word": "lifelike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearing to be alive or real", + "example_sentence_english": "The museum displayed a lifelike dinosaur model.", + "pos": "adjective", + "word_frequency": 27480 + }, + { + "word": "lioness", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a female lion", + "example_sentence_english": "The lioness protected her cubs fiercely.", + "pos": "noun", + "word_frequency": 27482 + }, + { + "word": "loin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of the body on either side of the spine between the false ribs and hip bone; a cut of meat from this part", + "example_sentence_english": "He ordered a delicious cut of pork loin.", + "pos": "noun", + "word_frequency": 27483 + }, + { + "word": "longterm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lasting over a long period of time", + "example_sentence_english": "We need a long-term solution to this problem.", + "pos": "adjective", + "word_frequency": 27485 + }, + { + "word": "loveable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspiring or deserving love or affection", + "example_sentence_english": "The puppy was so lovable that everyone wanted to pet it.", + "pos": "adjective", + "word_frequency": 27486 + }, + { + "word": "lovey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an informal term of endearment; a comfort object for a child", + "example_sentence_english": "The child always carried her lovey, a worn-out blanket.", + "pos": "noun", + "word_frequency": 27487 + }, + { + "word": "lyin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telling untruths; resting in a horizontal position", + "example_sentence_english": "He was caught lying about his age.", + "pos": "verb", + "word_frequency": 27489 + }, + { + "word": "machinist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who operates a machine, especially a machine tool", + "example_sentence_english": "The machinist carefully operated the lathe.", + "pos": "noun", + "word_frequency": 27491 + }, + { + "word": "mandible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the jaw or a jawbone, especially the lower jawbone in mammals and fish", + "example_sentence_english": "The paleontologist examined the dinosaur's powerful mandible.", + "pos": "noun", + "word_frequency": 27493 + }, + { + "word": "manhole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a covered opening in a road or pavement, leading to a sewer or other underground pipe", + "example_sentence_english": "Workers lifted the manhole cover to access the pipes below.", + "pos": "noun", + "word_frequency": 27494 + }, + { + "word": "marginalise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to treat (a person, group, or concept) as insignificant or peripheral", + "example_sentence_english": "Society should not marginalize vulnerable groups.", + "pos": "verb", + "word_frequency": 27496 + }, + { + "word": "marigold", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plant of the daisy family, typically with yellow, orange, or copper-brown flowers", + "example_sentence_english": "She planted bright orange marigolds in her garden.", + "pos": "noun", + "word_frequency": 27497 + }, + { + "word": "marinade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sauce, typically made of oil, vinegar, spices, and herbs, in which meat, fish, or other food is soaked before cooking", + "example_sentence_english": "The chicken soaked in the delicious marinade for hours.", + "pos": "noun", + "word_frequency": 27498 + }, + { + "word": "melancholic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feeling or expressing pensive sadness", + "example_sentence_english": "The melancholic music perfectly suited his mood.", + "pos": "adjective", + "word_frequency": 27504 + }, + { + "word": "merlot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a red wine grape, or a dry red wine made from it", + "example_sentence_english": "She preferred a glass of merlot with her dinner.", + "pos": "noun", + "word_frequency": 27505 + }, + { + "word": "mineralogy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the scientific study of minerals", + "example_sentence_english": "She specialized in mineralogy during her geology studies.", + "pos": "noun", + "word_frequency": 27508 + }, + { + "word": "minibus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small bus, typically seating 10 to 16 passengers", + "example_sentence_english": "The team traveled to the game in a minibus.", + "pos": "noun", + "word_frequency": 27509 + }, + { + "word": "modulus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a coefficient or constant that expresses a particular property of a substance or system", + "example_sentence_english": "In physics, the Young's modulus measures the stiffness of a material.", + "pos": "noun", + "word_frequency": 27510 + }, + { + "word": "monogamy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice or state of being married to one person at a time", + "example_sentence_english": "Many cultures traditionally practice monogamy.", + "pos": "noun", + "word_frequency": 27511 + }, + { + "word": "monotony", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of variety and interest; tedious repetition and routine", + "example_sentence_english": "He found the monotony of his job unbearable.", + "pos": "noun", + "word_frequency": 27512 + }, + { + "word": "mortally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that causes death; to an extreme degree", + "example_sentence_english": "He was mortally wounded in the battle.", + "pos": "adverb", + "word_frequency": 27514 + }, + { + "word": "moveable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be moved", + "example_sentence_english": "The furniture was easily movable.", + "pos": "adjective", + "word_frequency": 27515 + }, + { + "word": "musculoskeletal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or denoting the muscles and skeleton", + "example_sentence_english": "The doctor specialized in musculoskeletal disorders.", + "pos": "adjective", + "word_frequency": 27516 + }, + { + "word": "myeloma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a malignant tumor of the bone marrow", + "example_sentence_english": "Multiple myeloma is a type of cancer.", + "pos": "noun", + "word_frequency": 27518 + }, + { + "word": "natty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smart and fashionable", + "example_sentence_english": "He always looks natty in his tailored suits.", + "pos": "adjective", + "word_frequency": 27520 + }, + { + "word": "nebulous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vague; unclear", + "example_sentence_english": "The plan remained nebulous, with no clear details.", + "pos": "adjective", + "word_frequency": 27522 + }, + { + "word": "occlusion", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "blockage; the meeting of teeth", + "example_sentence_english": "The dental occlusion was perfect after the braces.", + "pos": "noun", + "word_frequency": 27530 + }, + { + "word": "outlive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "live longer than", + "example_sentence_english": "She hopes to outlive her grandmother, who is 95.", + "pos": "verb", + "word_frequency": 27534 + }, + { + "word": "paralegal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person trained in legal matters but not qualified as a lawyer", + "example_sentence_english": "The paralegal helped prepare the legal documents.", + "pos": "noun", + "word_frequency": 27535 + }, + { + "word": "piranha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a carnivorous freshwater fish", + "example_sentence_english": "Be careful swimming in that river; there might be piranhas.", + "pos": "noun", + "word_frequency": 27541 + }, + { + "word": "postmortem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an examination of a dead body; an analysis after an event", + "example_sentence_english": "The team held a postmortem meeting to discuss the project's failure.", + "pos": "noun", + "word_frequency": 27544 + }, + { + "word": "postscript", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an additional remark at the end of a letter (P.S.)", + "example_sentence_english": "She added a postscript to her letter, reminding him about the party.", + "pos": "noun", + "word_frequency": 27545 + }, + { + "word": "prehistory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the period before written records", + "example_sentence_english": "Dinosaurs lived during the Earth's prehistory.", + "pos": "noun", + "word_frequency": 27546 + }, + { + "word": "preterm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring or born before the full term of gestation", + "example_sentence_english": "The baby was born preterm, at 30 weeks.", + "pos": "adjective", + "word_frequency": 27547 + }, + { + "word": "prismatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or resembling a prism; showing colors like a prism", + "example_sentence_english": "The crystal refracted the light into a beautiful prismatic display.", + "pos": "adjective", + "word_frequency": 27548 + }, + { + "word": "prophesy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to predict what will happen", + "example_sentence_english": "The old woman claimed she could prophesy the future.", + "pos": "verb", + "word_frequency": 27549 + }, + { + "word": "prowl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move around stealthily", + "example_sentence_english": "A tiger was seen prowling in the tall grass.", + "pos": "verb", + "word_frequency": 27550 + }, + { + "word": "punchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having an immediate impact; forceful", + "example_sentence_english": "The advertisement had a short, punchy slogan.", + "pos": "adjective", + "word_frequency": 27554 + }, + { + "word": "purr", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "(of a cat) make a low, continuous vibratory sound", + "example_sentence_english": "The cat purred contentedly on her lap.", + "pos": "verb", + "word_frequency": 27555 + }, + { + "word": "pussycat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cat (often used affectionately); a gentle or timid person", + "example_sentence_english": "My grandmother's pussycat loves to nap all day.", + "pos": "noun", + "word_frequency": 27556 + }, + { + "word": "quagmire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soft boggy area; a difficult or complex situation", + "example_sentence_english": "The project quickly turned into a financial quagmire.", + "pos": "noun", + "word_frequency": 27557 + }, + { + "word": "quash", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reject or void (a legal decision); to suppress", + "example_sentence_english": "The court decided to quash the conviction.", + "pos": "verb", + "word_frequency": 27559 + }, + { + "word": "raindrop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a single drop of rain", + "example_sentence_english": "A single raindrop fell on my nose.", + "pos": "noun", + "word_frequency": 27563 + }, + { + "word": "ransack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to search a place thoroughly, often causing disorder or damage", + "example_sentence_english": "The burglars ransacked the house looking for valuables.", + "pos": "verb", + "word_frequency": 27565 + }, + { + "word": "readability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ease with which a text can be read and understood", + "example_sentence_english": "The readability of the document was improved by using a larger font.", + "pos": "noun", + "word_frequency": 27566 + }, + { + "word": "reductive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to present a subject or problem in a simplified or oversimplified way", + "example_sentence_english": "His argument was overly reductive, ignoring many complexities.", + "pos": "adjective", + "word_frequency": 27570 + }, + { + "word": "refundable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be returned for a refund", + "example_sentence_english": "The ticket is refundable if you cancel within 24 hours.", + "pos": "adjective", + "word_frequency": 27571 + }, + { + "word": "reinvestment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of investing money gained from a previous investment", + "example_sentence_english": "The company decided on a reinvestment of its profits into new technology.", + "pos": "noun", + "word_frequency": 27572 + }, + { + "word": "repose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of rest, sleep, or tranquility", + "example_sentence_english": "She found a moment of repose in the quiet garden.", + "pos": "noun", + "word_frequency": 27573 + }, + { + "word": "reptilian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of reptiles", + "example_sentence_english": "The dinosaur had a reptilian appearance.", + "pos": "adjective", + "word_frequency": 27574 + }, + { + "word": "restful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "providing rest and relaxation", + "example_sentence_english": "The quiet countryside was very restful.", + "pos": "adjective", + "word_frequency": 27575 + }, + { + "word": "retraining", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of teaching someone new skills", + "example_sentence_english": "Many workers are undergoing retraining for new careers.", + "pos": "noun", + "word_frequency": 27576 + }, + { + "word": "ricochet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rebound, especially of a bullet or other projectile", + "example_sentence_english": "The bullet made a ricochet off the wall.", + "pos": "noun", + "word_frequency": 27578 + }, + { + "word": "rubric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a set of instructions or a heading indicating the purpose of a document or section", + "example_sentence_english": "The teacher provided a rubric for grading the essay.", + "pos": "noun", + "word_frequency": 27582 + }, + { + "word": "schoolmaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a male teacher in a school", + "example_sentence_english": "The old schoolmaster was strict but fair.", + "pos": "noun", + "word_frequency": 27583 + }, + { + "word": "schoolwork", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "academic tasks or studies done by a student", + "example_sentence_english": "I need to finish my schoolwork before I can play.", + "pos": "noun", + "word_frequency": 27584 + }, + { + "word": "scoreline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the score of a game or match", + "example_sentence_english": "The final scoreline was 3-1 to the home team.", + "pos": "noun", + "word_frequency": 27585 + }, + { + "word": "searcher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who searches for something", + "example_sentence_english": "The searcher found the lost keys under the couch.", + "pos": "noun", + "word_frequency": 27586 + }, + { + "word": "shanty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, crudely built shack", + "example_sentence_english": "Many people live in shanties on the outskirts of the city.", + "pos": "noun", + "word_frequency": 27588 + }, + { + "word": "shrew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, mouse-like mammal; or a bad-tempered, nagging woman", + "example_sentence_english": "The tiny shrew scurried across the path.", + "pos": "noun", + "word_frequency": 27593 + }, + { + "word": "silencer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for reducing the noise of a gun or engine", + "example_sentence_english": "The car's exhaust needed a new silencer.", + "pos": "noun", + "word_frequency": 27596 + }, + { + "word": "slacker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who avoids work or effort", + "example_sentence_english": "Don't be a slacker; finish your chores.", + "pos": "noun", + "word_frequency": 27598 + }, + { + "word": "sleight", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the use of dexterity or cunning, especially to deceive", + "example_sentence_english": "The magician performed a trick with great sleight of hand.", + "pos": "noun", + "word_frequency": 27599 + }, + { + "word": "smolder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burn slowly without flame", + "example_sentence_english": "The campfire continued to smolder long after the flames died down.", + "pos": "verb", + "word_frequency": 27600 + }, + { + "word": "snowmobile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorized vehicle for snow", + "example_sentence_english": "We rented a snowmobile to explore the snowy trails.", + "pos": "noun", + "word_frequency": 27601 + }, + { + "word": "soapy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resembling or containing soap", + "example_sentence_english": "The water felt soapy after I added the bath bomb.", + "pos": "adjective", + "word_frequency": 27602 + }, + { + "word": "spiky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having sharp points", + "example_sentence_english": "The hedgehog had spiky quills.", + "pos": "adjective", + "word_frequency": 27606 + }, + { + "word": "stilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long pole for walking above ground", + "example_sentence_english": "The performer walked across the stage on stilts.", + "pos": "noun", + "word_frequency": 27607 + }, + { + "word": "subprime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denoting a loan offered to a borrower with a poor credit rating", + "example_sentence_english": "The subprime mortgage crisis had a significant impact on the economy.", + "pos": "adjective", + "word_frequency": 27611 + }, + { + "word": "sulfuric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to sulfur", + "example_sentence_english": "Sulfuric acid is a highly corrosive substance.", + "pos": "adjective", + "word_frequency": 27612 + }, + { + "word": "sunroof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a panel in a car roof that can be opened", + "example_sentence_english": "She opened the sunroof to let in some fresh air.", + "pos": "noun", + "word_frequency": 27613 + }, + { + "word": "surrealist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an artist or writer who practices surrealism", + "example_sentence_english": "Salvador Dalí is a famous surrealist painter.", + "pos": "noun", + "word_frequency": 27615 + }, + { + "word": "suspenseful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing a feeling of excited or anxious uncertainty", + "example_sentence_english": "The movie had a very suspenseful ending.", + "pos": "adjective", + "word_frequency": 27616 + }, + { + "word": "teleportation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypothetical instantaneous travel", + "example_sentence_english": "In science fiction, teleportation allows characters to move instantly from one place to another.", + "pos": "noun", + "word_frequency": 27623 + }, + { + "word": "temperamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liable to unreasonable changes of mood", + "example_sentence_english": "The old car was very temperamental and often wouldn't start.", + "pos": "adjective", + "word_frequency": 27624 + }, + { + "word": "teutonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Teutons or Germans", + "example_sentence_english": "The architecture had a distinct Teutonic influence.", + "pos": "adjective", + "word_frequency": 27625 + }, + { + "word": "tock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the sound of a clock's pendulum", + "example_sentence_english": "The old grandfather clock made a steady tick-tock sound.", + "pos": "noun", + "word_frequency": 27628 + }, + { + "word": "traditionalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who adheres to traditional beliefs", + "example_sentence_english": "As a traditionalist, he preferred classic literature over modern novels.", + "pos": "noun", + "word_frequency": 27629 + }, + { + "word": "tripartite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consisting of three parts", + "example_sentence_english": "The agreement was tripartite, involving three different nations.", + "pos": "adjective", + "word_frequency": 27630 + }, + { + "word": "twirl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spin quickly and lightly", + "example_sentence_english": "She loved to twirl in her new dress.", + "pos": "verb", + "word_frequency": 27633 + }, + { + "word": "understudy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who learns another's role to be able to act as a replacement", + "example_sentence_english": "The understudy had to go on stage when the lead actor fell ill.", + "pos": "noun", + "word_frequency": 27636 + }, + { + "word": "unguarded", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not protected or watched", + "example_sentence_english": "He made an unguarded comment that revealed his true feelings.", + "pos": "adjective", + "word_frequency": 27637 + }, + { + "word": "unionize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "form or join a labor union", + "example_sentence_english": "The workers decided to unionize to demand better wages.", + "pos": "verb", + "word_frequency": 27638 + }, + { + "word": "unscientific", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not based on or in accordance with scientific principles", + "example_sentence_english": "His conclusions were criticized as unscientific because they lacked evidence.", + "pos": "adjective", + "word_frequency": 27639 + }, + { + "word": "untamed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wild; not domesticated", + "example_sentence_english": "The wild horses remained untamed, roaming freely across the plains.", + "pos": "adjective", + "word_frequency": 27640 + }, + { + "word": "utilisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of making practical and effective use of something", + "example_sentence_english": "The efficient utilisation of resources is crucial for project success.", + "pos": "noun", + "word_frequency": 27644 + }, + { + "word": "vermilion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a brilliant red pigment", + "example_sentence_english": "The artist used a vibrant vermilion to paint the sunset.", + "pos": "noun", + "word_frequency": 27646 + }, + { + "word": "vesicle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small fluid-filled sac in the body", + "example_sentence_english": "The microscope revealed tiny vesicles transporting proteins within the cell.", + "pos": "noun", + "word_frequency": 27647 + }, + { + "word": "wean", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gradually withdraw from something", + "example_sentence_english": "It's time to wean the baby off milk and onto solid foods.", + "pos": "verb", + "word_frequency": 27652 + }, + { + "word": "webbing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strong, narrow fabric woven in strips", + "example_sentence_english": "The backpack straps were made of durable nylon webbing.", + "pos": "noun", + "word_frequency": 27653 + }, + { + "word": "wrack", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause severe damage or destruction to", + "example_sentence_english": "He wracked his brain trying to remember the answer.", + "pos": "verb", + "word_frequency": 27659 + }, + { + "word": "wring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to squeeze and twist to extract liquid", + "example_sentence_english": "She had to wring out the wet towel before hanging it to dry.", + "pos": "verb", + "word_frequency": 27660 + }, + { + "word": "abolitionist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who advocates or supported the abolition of slavery", + "example_sentence_english": "Harriet Tubman was a famous abolitionist who helped slaves escape to freedom.", + "pos": "noun", + "word_frequency": 27669 + }, + { + "word": "aether", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the hypothetical medium formerly believed to fill all space", + "example_sentence_english": "Ancient philosophers believed in a celestial aether that filled the heavens.", + "pos": "noun", + "word_frequency": 27673 + }, + { + "word": "affluence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of having a great deal of money; wealth", + "example_sentence_english": "The city's affluence was evident in its luxurious homes and high-end shops.", + "pos": "noun", + "word_frequency": 27674 + }, + { + "word": "agave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant of the succulent family, native to arid regions", + "example_sentence_english": "Tequila is made from the blue agave plant.", + "pos": "noun", + "word_frequency": 27675 + }, + { + "word": "amicus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a friend (often used in legal contexts, e.g., amicus curiae)", + "example_sentence_english": "The court allowed an amicus brief to be filed by the non-profit organization.", + "pos": "noun", + "word_frequency": 27678 + }, + { + "word": "apothecary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who prepared and sold medicines and drugs", + "example_sentence_english": "The apothecary carefully measured the herbs for the remedy.", + "pos": "noun", + "word_frequency": 27681 + }, + { + "word": "backwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a remote, undeveloped area", + "example_sentence_english": "They lived deep in the backwoods, far from any town.", + "pos": "noun", + "word_frequency": 27685 + }, + { + "word": "baddie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bad person, especially in a story or film", + "example_sentence_english": "In the movie, the baddie always wore a black hat.", + "pos": "noun", + "word_frequency": 27686 + }, + { + "word": "bagpipe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a musical instrument with a bag and pipes", + "example_sentence_english": "The sound of the bagpipes echoed across the valley.", + "pos": "noun", + "word_frequency": 27687 + }, + { + "word": "balsamic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragrant and soothing, often referring to a type of vinegar", + "example_sentence_english": "She drizzled balsamic vinegar over the fresh salad.", + "pos": "adjective", + "word_frequency": 27689 + }, + { + "word": "barf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vomit", + "example_sentence_english": "The motion sickness made him want to barf.", + "pos": "verb", + "word_frequency": 27691 + }, + { + "word": "batten", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fasten or secure with battens", + "example_sentence_english": "They had to batten down the hatches before the storm hit.", + "pos": "verb", + "word_frequency": 27692 + }, + { + "word": "beefy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muscular or strong; substantial", + "example_sentence_english": "The security guard was a big, beefy man.", + "pos": "adjective", + "word_frequency": 27693 + }, + { + "word": "benchmarking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of evaluating something by comparison with a standard", + "example_sentence_english": "Benchmarking helps companies improve their performance.", + "pos": "noun", + "word_frequency": 27694 + }, + { + "word": "berk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a foolish or stupid person", + "example_sentence_english": "Don't be such a berk; think before you speak.", + "pos": "noun", + "word_frequency": 27698 + }, + { + "word": "beseech", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ask someone urgently and fervently to do something", + "example_sentence_english": "I beseech you to reconsider your decision.", + "pos": "verb", + "word_frequency": 27700 + }, + { + "word": "bodega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small grocery store, especially in a Spanish-speaking neighborhood", + "example_sentence_english": "I stopped by the bodega to pick up some milk.", + "pos": "noun", + "word_frequency": 27703 + }, + { + "word": "bru", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a term of address for a man, especially in South Africa; brother or friend", + "example_sentence_english": "Hey, bru, how's it going?", + "pos": "noun", + "word_frequency": 27708 + }, + { + "word": "camcorder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a portable video camera and recorder", + "example_sentence_english": "He used his old camcorder to film the family vacation.", + "pos": "noun", + "word_frequency": 27710 + }, + { + "word": "canola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of oil made from rapeseed", + "example_sentence_english": "Canola oil is often used for cooking and baking.", + "pos": "noun", + "word_frequency": 27711 + }, + { + "word": "castrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remove the testicles of a male animal or human", + "example_sentence_english": "Farmers often castrate male livestock to improve meat quality.", + "pos": "verb", + "word_frequency": 27713 + }, + { + "word": "cava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Spanish sparkling wine", + "example_sentence_english": "We celebrated with a bottle of chilled cava.", + "pos": "noun", + "word_frequency": 27714 + }, + { + "word": "chipmunk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, striped rodent", + "example_sentence_english": "A chipmunk scurried across the lawn and up a tree.", + "pos": "noun", + "word_frequency": 27718 + }, + { + "word": "chutney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a savory condiment made from fruit, vinegar, sugar, and spices", + "example_sentence_english": "She served the curry with a side of mango chutney.", + "pos": "noun", + "word_frequency": 27719 + }, + { + "word": "coda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a concluding passage of a piece or movement, typically forming an addition to the basic structure", + "example_sentence_english": "The final movement ended with a powerful coda.", + "pos": "noun", + "word_frequency": 27723 + }, + { + "word": "coder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who writes computer code", + "example_sentence_english": "The new coder quickly learned the team's workflow.", + "pos": "noun", + "word_frequency": 27724 + }, + { + "word": "colonoscopy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medical procedure to examine the colon", + "example_sentence_english": "He had a colonoscopy as part of his routine check-up.", + "pos": "noun", + "word_frequency": 27726 + }, + { + "word": "conciliation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of mediating between two disputing people or groups", + "example_sentence_english": "The conciliation process helped resolve the labor dispute.", + "pos": "noun", + "word_frequency": 27728 + }, + { + "word": "conjugation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the variation of the form of a verb in an inflected language", + "example_sentence_english": "Learning verb conjugation is essential for mastering a new language.", + "pos": "noun", + "word_frequency": 27729 + }, + { + "word": "corollary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a direct or natural consequence or result", + "example_sentence_english": "Increased pollution is a natural corollary of industrial growth.", + "pos": "noun", + "word_frequency": 27733 + }, + { + "word": "counterbalance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a factor, force, or influence that offsets or acts against another", + "example_sentence_english": "The new policy serves as a counterbalance to the previous one.", + "pos": "noun", + "word_frequency": 27735 + }, + { + "word": "courtier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who attends a royal court as a companion or adviser to the monarch or other important person", + "example_sentence_english": "The courtier whispered advice to the king.", + "pos": "noun", + "word_frequency": 27736 + }, + { + "word": "cybercrime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal activities carried out by means of computers or the internet", + "example_sentence_english": "Authorities are working to combat the rise of cybercrime.", + "pos": "noun", + "word_frequency": 27739 + }, + { + "word": "cytochrome", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "any of a group of compounds consisting of a hemoprotein and functioning as electron transfer agents in metabolic pathways", + "example_sentence_english": "Cytochrome P450 enzymes play a crucial role in drug metabolism.", + "pos": "noun", + "word_frequency": 27740 + }, + { + "word": "czechoslovak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the former country of Czechoslovakia", + "example_sentence_english": "The Czechoslovakian government was formed after World War I.", + "pos": "adjective", + "word_frequency": 27741 + }, + { + "word": "deface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spoil the surface or appearance of (something) with writing or drawings", + "example_sentence_english": "Vandals defaced the statue with graffiti.", + "pos": "verb", + "word_frequency": 27744 + }, + { + "word": "dendritic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or resembling a dendrite or tree-like structure", + "example_sentence_english": "The neuron has a complex dendritic structure.", + "pos": "adjective", + "word_frequency": 27746 + }, + { + "word": "desecration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of treating something sacred with violent disrespect", + "example_sentence_english": "The desecration of the ancient temple caused outrage.", + "pos": "noun", + "word_frequency": 27747 + }, + { + "word": "didactic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intended to teach, particularly in having moral instruction as an ulterior motive", + "example_sentence_english": "The novel had a strong didactic purpose, aiming to educate readers about social issues.", + "pos": "adjective", + "word_frequency": 27750 + }, + { + "word": "domestication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of taming an animal or cultivating a plant for food or other human purposes", + "example_sentence_english": "The domestication of wolves led to the development of dogs.", + "pos": "noun", + "word_frequency": 27751 + }, + { + "word": "drunkard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is habitually drunk", + "example_sentence_english": "The old man was known in the village as a drunkard.", + "pos": "noun", + "word_frequency": 27755 + }, + { + "word": "enabler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that makes something possible", + "example_sentence_english": "Technology has been a great enabler for remote work.", + "pos": "noun", + "word_frequency": 27759 + }, + { + "word": "ergonomics", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The study of people's efficiency in their working environment.", + "example_sentence_english": "Good ergonomics in the office can prevent back pain.", + "pos": "noun", + "word_frequency": 27761 + }, + { + "word": "excitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Easily excited.", + "example_sentence_english": "The puppy was very excitable when new visitors arrived.", + "pos": "adjective", + "word_frequency": 27765 + }, + { + "word": "flirtation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Behavior that suggests a playful romantic interest.", + "example_sentence_english": "Their conversation was full of light flirtation.", + "pos": "noun", + "word_frequency": 27768 + }, + { + "word": "fora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Public meeting places for open discussion.", + "example_sentence_english": "The internet provides many fora for people to share ideas.", + "pos": "noun", + "word_frequency": 27770 + }, + { + "word": "formulaic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Constituting or expressed as a conventional formula or set form.", + "example_sentence_english": "His speeches often sound very formulaic and uninspired.", + "pos": "adjective", + "word_frequency": 27771 + }, + { + "word": "frisky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Playful and full of energy.", + "example_sentence_english": "The frisky kitten chased its tail around the room.", + "pos": "adjective", + "word_frequency": 27772 + }, + { + "word": "gerrymander", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Manipulate the boundaries of (an electoral constituency) so as to favor one party or class.", + "example_sentence_english": "Critics accused the party of trying to gerrymander the voting districts.", + "pos": "verb", + "word_frequency": 27774 + }, + { + "word": "gregorian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to Pope Gregory I or Pope Gregory XIII, or to the calendar introduced by the latter.", + "example_sentence_english": "The Gregorian calendar is the most widely used civil calendar in the world.", + "pos": "adjective", + "word_frequency": 27780 + }, + { + "word": "grisly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Causing horror or disgust.", + "example_sentence_english": "The detective described the grisly scene of the crime.", + "pos": "adjective", + "word_frequency": 27781 + }, + { + "word": "guesswork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process of forming an opinion or judgment based on incomplete information.", + "example_sentence_english": "Without more data, our predictions are just guesswork.", + "pos": "noun", + "word_frequency": 27782 + }, + { + "word": "haemorrhage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An escape of blood from a ruptured blood vessel, or a rapid and uncontrollable loss or outflow.", + "example_sentence_english": "The company suffered a haemorrhage of talent after the merger.", + "pos": "noun", + "word_frequency": 27783 + }, + { + "word": "handpick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Choose carefully or personally.", + "example_sentence_english": "She was handpicked for the leadership role.", + "pos": "verb", + "word_frequency": 27784 + }, + { + "word": "hetero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A heterosexual person (informal).", + "example_sentence_english": "The term \"hetero\" is an informal abbreviation for heterosexual.", + "pos": "noun", + "word_frequency": 27789 + }, + { + "word": "homeschooling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The education of children at home by their parents.", + "example_sentence_english": "Homeschooling has become more popular in recent years.", + "pos": "noun", + "word_frequency": 27791 + }, + { + "word": "huckleberry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A small, dark edible berry.", + "example_sentence_english": "We picked huckleberries in the forest.", + "pos": "noun", + "word_frequency": 27792 + }, + { + "word": "iguana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A large, arboreal lizard native to tropical America.", + "example_sentence_english": "An iguana was basking in the sun on the rock.", + "pos": "noun", + "word_frequency": 27794 + }, + { + "word": "impassable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Impossible to travel along or over.", + "example_sentence_english": "The road became impassable after the heavy snowfall.", + "pos": "adjective", + "word_frequency": 27795 + }, + { + "word": "incinerator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An apparatus for burning waste material.", + "example_sentence_english": "The city plans to build a new incinerator for waste disposal.", + "pos": "noun", + "word_frequency": 27796 + }, + { + "word": "individualistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Characterized by individualism; independent and self-reliant.", + "example_sentence_english": "She has a very individualistic approach to fashion.", + "pos": "adjective", + "word_frequency": 27797 + }, + { + "word": "innit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Isn't it? (informal tag question).", + "example_sentence_english": "It's really hot today, innit?", + "pos": "interjection", + "word_frequency": 27799 + }, + { + "word": "insolent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rude and disrespectful", + "example_sentence_english": "His insolent remarks angered the teacher.", + "pos": "adjective", + "word_frequency": 27800 + }, + { + "word": "insulator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a material that does not easily allow heat, electricity, light, or sound to pass through it", + "example_sentence_english": "Glass is a good electrical insulator.", + "pos": "noun", + "word_frequency": 27801 + }, + { + "word": "irrefutable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to deny or disprove", + "example_sentence_english": "The evidence presented was irrefutable.", + "pos": "adjective", + "word_frequency": 27804 + }, + { + "word": "jammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that interferes with signals; a person who jams", + "example_sentence_english": "The military used a signal jammer to disrupt enemy communications.", + "pos": "noun", + "word_frequency": 27808 + }, + { + "word": "jewry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Jewish people collectively", + "example_sentence_english": "The history of Jewry is rich and complex.", + "pos": "noun", + "word_frequency": 27809 + }, + { + "word": "jovial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheerful and friendly", + "example_sentence_english": "His jovial nature made him popular with everyone.", + "pos": "adjective", + "word_frequency": 27811 + }, + { + "word": "keynesian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the economic theories of John Maynard Keynes", + "example_sentence_english": "Keynesian economics influenced government policy for decades.", + "pos": "adjective", + "word_frequency": 27815 + }, + { + "word": "lasso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rope with a noose, used for catching animals", + "example_sentence_english": "The cowboy threw the lasso to catch the runaway horse.", + "pos": "noun", + "word_frequency": 27823 + }, + { + "word": "lemma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a subsidiary proposition assumed to be true in order to prove another proposition", + "example_sentence_english": "The proof of the theorem relies on a crucial lemma.", + "pos": "noun", + "word_frequency": 27824 + }, + { + "word": "lowkey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not elaborate, showy, or intense; understated", + "example_sentence_english": "They decided to have a lowkey birthday celebration at home.", + "pos": "adjective", + "word_frequency": 27829 + }, + { + "word": "manatee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, plant-eating marine mammal", + "example_sentence_english": "Manatees are sometimes called sea cows.", + "pos": "noun", + "word_frequency": 27831 + }, + { + "word": "moisturize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make something less dry", + "example_sentence_english": "Remember to moisturize your skin daily.", + "pos": "verb", + "word_frequency": 27839 + }, + { + "word": "molybdenum", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a chemical element (Mo)", + "example_sentence_english": "Molybdenum is a silvery-white metal used in alloys.", + "pos": "noun", + "word_frequency": 27840 + }, + { + "word": "motocross", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a form of off-road motorcycle racing", + "example_sentence_english": "He loves watching motocross races on the weekend.", + "pos": "noun", + "word_frequency": 27843 + }, + { + "word": "motorcade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a procession of motor vehicles", + "example_sentence_english": "The president's motorcade drove slowly through the city streets.", + "pos": "noun", + "word_frequency": 27844 + }, + { + "word": "motorcyclist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who rides a motorcycle", + "example_sentence_english": "The motorcyclist wore a helmet for safety.", + "pos": "noun", + "word_frequency": 27845 + }, + { + "word": "nanotube", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a microscopic tube made of carbon atoms", + "example_sentence_english": "Carbon nanotubes have unique electrical and mechanical properties.", + "pos": "noun", + "word_frequency": 27849 + }, + { + "word": "nihilism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the rejection of all religious and moral principles", + "example_sentence_english": "His philosophy was rooted in a deep sense of nihilism.", + "pos": "noun", + "word_frequency": 27852 + }, + { + "word": "nonchalant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or appearing casually calm and relaxed", + "example_sentence_english": "She gave a nonchalant shrug, as if nothing bothered her.", + "pos": "adjective", + "word_frequency": 27853 + }, + { + "word": "noob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is inexperienced in a particular activity", + "example_sentence_english": "Don't worry if you're a noob; everyone starts somewhere.", + "pos": "noun", + "word_frequency": 27854 + }, + { + "word": "oilfield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of land or sea where crude oil is found", + "example_sentence_english": "The company discovered a new oilfield in the North Sea.", + "pos": "noun", + "word_frequency": 27858 + }, + { + "word": "opportune", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "well-chosen or happening at a favorable time", + "example_sentence_english": "He seized the opportune moment to ask for a raise.", + "pos": "adjective", + "word_frequency": 27859 + }, + { + "word": "orchestration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the arrangement of a musical composition for an orchestra; the careful organization of something", + "example_sentence_english": "The orchestration of the new symphony was complex and beautiful.", + "pos": "noun", + "word_frequency": 27860 + }, + { + "word": "parapet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a low protective wall along the edge of a roof, bridge, or balcony", + "example_sentence_english": "The soldiers took cover behind the castle's stone parapet.", + "pos": "noun", + "word_frequency": 27866 + }, + { + "word": "pejorative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expressing contempt or disapproval", + "example_sentence_english": "The term \"spinster\" is often considered pejorative.", + "pos": "adjective", + "word_frequency": 27867 + }, + { + "word": "phonograph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an early form of gramophone", + "example_sentence_english": "Thomas Edison invented the phonograph in 1877.", + "pos": "noun", + "word_frequency": 27871 + }, + { + "word": "piggyback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ride on someone's back and shoulders", + "example_sentence_english": "The child asked for a piggyback ride to the park.", + "pos": "noun", + "word_frequency": 27872 + }, + { + "word": "planetarium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a theatre in which images of stars, planets, and other celestial objects are projected", + "example_sentence_english": "We visited the planetarium to learn about the constellations.", + "pos": "noun", + "word_frequency": 27874 + }, + { + "word": "polis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a city-state in ancient Greece", + "example_sentence_english": "Athens was a powerful polis in ancient Greece.", + "pos": "noun", + "word_frequency": 27876 + }, + { + "word": "portico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a structure consisting of a roof supported by columns, forming a porch or entrance", + "example_sentence_english": "The grand building had a large portico supported by Doric columns.", + "pos": "noun", + "word_frequency": 27877 + }, + { + "word": "powerlifting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strength sport consisting of three attempts at maximal weight on three lifts: squat, bench press, and deadlift", + "example_sentence_english": "She trains for powerlifting competitions every day.", + "pos": "noun", + "word_frequency": 27878 + }, + { + "word": "premarital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "before marriage", + "example_sentence_english": "They attended premarital counseling sessions before their wedding.", + "pos": "adjective", + "word_frequency": 27881 + }, + { + "word": "procreation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the production of offspring; reproduction", + "example_sentence_english": "The primary biological purpose of mating is procreation.", + "pos": "noun", + "word_frequency": 27882 + }, + { + "word": "projective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to projection or a project", + "example_sentence_english": "Projective geometry is a branch of mathematics that studies properties of geometric figures that are invariant under projective transformations.", + "pos": "adjective", + "word_frequency": 27883 + }, + { + "word": "pyramidal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaped like a pyramid", + "example_sentence_english": "The company adopted a pyramidal management structure with many layers.", + "pos": "adjective", + "word_frequency": 27885 + }, + { + "word": "rambling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long walk for pleasure; or, discourse that is lengthy and confused", + "example_sentence_english": "We went for a pleasant rambling walk through the woods.", + "pos": "noun", + "word_frequency": 27890 + }, + { + "word": "receivership", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being under the control of a receiver, typically due to financial difficulties", + "example_sentence_english": "The company went into receivership after failing to meet its financial obligations.", + "pos": "noun", + "word_frequency": 27892 + }, + { + "word": "redux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brought back; revived (often used in titles)", + "example_sentence_english": "The director released a new version of the film, titled 'Apocalypse Now Redux'.", + "pos": "noun", + "word_frequency": 27895 + }, + { + "word": "replenishment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of restoring a stock or supply to a former level", + "example_sentence_english": "The store ordered a large replenishment of its most popular items.", + "pos": "noun", + "word_frequency": 27896 + }, + { + "word": "rosette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rose-shaped ornament, marking, or badge", + "example_sentence_english": "She wore a small silk rosette pinned to her lapel.", + "pos": "noun", + "word_frequency": 27899 + }, + { + "word": "sanguine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "optimistic or positive, especially in an apparently difficult situation", + "example_sentence_english": "He remained sanguine about the company's future despite the recent economic downturn.", + "pos": "adjective", + "word_frequency": 27904 + }, + { + "word": "saxophonist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays the saxophone", + "example_sentence_english": "The jazz band featured a talented saxophonist who played an incredible solo.", + "pos": "noun", + "word_frequency": 27906 + }, + { + "word": "serendipity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the occurrence and development of events by chance in a happy or beneficial way", + "example_sentence_english": "It was pure serendipity that they met at the airport after so many years.", + "pos": "noun", + "word_frequency": 27909 + }, + { + "word": "shareholding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the shares held by an individual or group in a company", + "example_sentence_english": "His significant shareholding in the company gave him a strong voice in major decisions.", + "pos": "noun", + "word_frequency": 27910 + }, + { + "word": "shim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thin strip of material used for packing, leveling, or adjusting", + "example_sentence_english": "He used a small wooden shim to level the wobbly table leg.", + "pos": "noun", + "word_frequency": 27913 + }, + { + "word": "soya", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soybean or products made from it", + "example_sentence_english": "Many vegetarians use soya milk as an alternative to dairy milk.", + "pos": "noun", + "word_frequency": 27918 + }, + { + "word": "steeple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tall, pointed structure on top of a church tower", + "example_sentence_english": "The church steeple was visible from miles away.", + "pos": "noun", + "word_frequency": 27922 + }, + { + "word": "stillborn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "born dead; failed to develop or come into existence", + "example_sentence_english": "The project was stillborn due to lack of funding.", + "pos": "adjective", + "word_frequency": 27925 + }, + { + "word": "suspender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strap worn over the shoulder to hold up trousers or a skirt", + "example_sentence_english": "He wore suspenders to keep his trousers up.", + "pos": "noun", + "word_frequency": 27927 + }, + { + "word": "tajik", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a people inhabiting Tajikistan and neighboring areas of Central Asia; the language of this people", + "example_sentence_english": "He is a Tajik from Dushanbe.", + "pos": "noun", + "word_frequency": 27929 + }, + { + "word": "teenaged", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "between 13 and 19 years old", + "example_sentence_english": "She has two teenaged children.", + "pos": "adjective", + "word_frequency": 27931 + }, + { + "word": "timescale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the time allowed for or taken by a process or sequence of events", + "example_sentence_english": "The project has a very tight timescale.", + "pos": "noun", + "word_frequency": 27933 + }, + { + "word": "toke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a puff of a cigarette or marijuana", + "example_sentence_english": "He took a long toke from his cigarette.", + "pos": "noun", + "word_frequency": 27935 + }, + { + "word": "twit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a silly or foolish person", + "example_sentence_english": "Don't be such a twit, that's a silly idea.", + "pos": "noun", + "word_frequency": 27936 + }, + { + "word": "unconcerned", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not feeling or showing worry or anxiety about something", + "example_sentence_english": "She seemed completely unconcerned by the news.", + "pos": "adjective", + "word_frequency": 27938 + }, + { + "word": "underbelly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the soft underside of an animal; the vulnerable or unpleasant part of something", + "example_sentence_english": "The documentary exposed the underbelly of the city's crime world.", + "pos": "noun", + "word_frequency": 27939 + }, + { + "word": "underfunded", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provided with insufficient funds", + "example_sentence_english": "Many public services are severely underfunded.", + "pos": "adjective", + "word_frequency": 27940 + }, + { + "word": "underperform", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perform less well than expected", + "example_sentence_english": "The company's stock continued to underperform the market.", + "pos": "verb", + "word_frequency": 27941 + }, + { + "word": "unlisted", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not included in a list or directory", + "example_sentence_english": "She has an unlisted phone number.", + "pos": "adjective", + "word_frequency": 27943 + }, + { + "word": "unpredictability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being impossible to foresee or predict", + "example_sentence_english": "The unpredictability of the weather made planning difficult.", + "pos": "noun", + "word_frequency": 27944 + }, + { + "word": "ventricle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hollow part or cavity in an organ, in particular a brain or heart", + "example_sentence_english": "The heart has two main ventricles.", + "pos": "noun", + "word_frequency": 27946 + }, + { + "word": "vulva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the external female genitalia", + "example_sentence_english": "The vulva is part of the female reproductive system.", + "pos": "noun", + "word_frequency": 27950 + }, + { + "word": "waistband", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strip of material forming the waist of a garment", + "example_sentence_english": "The elastic waistband made the trousers comfortable.", + "pos": "noun", + "word_frequency": 27952 + }, + { + "word": "warhammer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medieval weapon consisting of a hammer with a pick or spike on the other side", + "example_sentence_english": "The knight wielded a heavy warhammer.", + "pos": "noun", + "word_frequency": 27954 + }, + { + "word": "winless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having achieved no wins", + "example_sentence_english": "The team had a winless season.", + "pos": "adjective", + "word_frequency": 27958 + }, + { + "word": "wipeout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden and complete defeat or destruction; a fall from a surfboard", + "example_sentence_english": "The company suffered a complete wipeout in the last quarter.", + "pos": "noun", + "word_frequency": 27959 + }, + { + "word": "wizardry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magic; sorcery", + "example_sentence_english": "The magician's performance was full of incredible wizardry.", + "pos": "noun", + "word_frequency": 27960 + }, + { + "word": "woollen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made of wool", + "example_sentence_english": "She wore a warm woollen scarf.", + "pos": "adjective", + "word_frequency": 27961 + }, + { + "word": "zonal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a zone or zones", + "example_sentence_english": "The climate exhibits distinct zonal variations.", + "pos": "adjective", + "word_frequency": 27968 + }, + { + "word": "abatement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the reduction or elimination of something", + "example_sentence_english": "The city ordered the abatement of the noise pollution.", + "pos": "noun", + "word_frequency": 27971 + }, + { + "word": "acidification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of becoming acidic", + "example_sentence_english": "Ocean acidification is a major environmental concern.", + "pos": "noun", + "word_frequency": 27972 + }, + { + "word": "acropolis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a citadel or fortified part of an ancient Greek city, typically built on a hill", + "example_sentence_english": "The Parthenon stands proudly on the Athenian Acropolis.", + "pos": "noun", + "word_frequency": 27973 + }, + { + "word": "adaption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of adapting or being adapted", + "example_sentence_english": "The company's quick adaption to new technologies ensured its survival.", + "pos": "noun", + "word_frequency": 27974 + }, + { + "word": "anorexic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suffering from anorexia", + "example_sentence_english": "The doctor was concerned about the patient's anorexic tendencies.", + "pos": "adjective", + "word_frequency": 27986 + }, + { + "word": "anthropomorphic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "having human characteristics", + "example_sentence_english": "Many ancient gods were depicted as anthropomorphic figures.", + "pos": "adjective", + "word_frequency": 27987 + }, + { + "word": "armoury", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a place where weapons are kept", + "example_sentence_english": "The museum displayed ancient weapons in its armoury.", + "pos": "noun", + "word_frequency": 27989 + }, + { + "word": "arraign", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to call or bring (someone) before a court to answer a criminal charge", + "example_sentence_english": "The suspect was arraigned on charges of theft.", + "pos": "verb", + "word_frequency": 27991 + }, + { + "word": "artichoke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a plant of the daisy family, with an edible flower head", + "example_sentence_english": "I love eating steamed artichoke with butter.", + "pos": "noun", + "word_frequency": 27992 + }, + { + "word": "autonomic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the autonomic nervous system; involuntary", + "example_sentence_english": "Breathing is an autonomic function of the body.", + "pos": "adjective", + "word_frequency": 27993 + }, + { + "word": "baboon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large African or Arabian monkey", + "example_sentence_english": "We saw a baboon grooming itself at the zoo.", + "pos": "noun", + "word_frequency": 27996 + }, + { + "word": "backfield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the players in a team who play behind the forward line", + "example_sentence_english": "The quarterback handed the ball off to the running back in the backfield.", + "pos": "noun", + "word_frequency": 27998 + }, + { + "word": "bba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bachelor of Business Administration", + "example_sentence_english": "She is studying for her BBA at the local university.", + "pos": "noun", + "word_frequency": 28003 + }, + { + "word": "beleaguer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to besiege; to trouble persistently", + "example_sentence_english": "The company was beleaguered by financial difficulties.", + "pos": "verb", + "word_frequency": 28006 + }, + { + "word": "bicarbonate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a salt of carbonic acid", + "example_sentence_english": "Bicarbonate of soda is often used in baking.", + "pos": "noun", + "word_frequency": 28008 + }, + { + "word": "biome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large naturally occurring community of flora and fauna occupying a major habitat", + "example_sentence_english": "The rainforest is a rich and diverse biome.", + "pos": "noun", + "word_frequency": 28010 + }, + { + "word": "boudoir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a woman's private sitting room or dressing room", + "example_sentence_english": "She retired to her boudoir to prepare for the evening.", + "pos": "noun", + "word_frequency": 28013 + }, + { + "word": "bough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a main branch of a tree", + "example_sentence_english": "A bird was perched on a thick bough of the oak tree.", + "pos": "noun", + "word_frequency": 28014 + }, + { + "word": "bse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bovine Spongiform Encephalopathy (Mad Cow Disease)", + "example_sentence_english": "Concerns about BSE led to a ban on certain beef imports.", + "pos": "noun", + "word_frequency": 28017 + }, + { + "word": "capo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for a guitar; a mafia boss", + "example_sentence_english": "He put a capo on the guitar to change the key.", + "pos": "noun", + "word_frequency": 28018 + }, + { + "word": "catalyze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause or accelerate (a reaction) by acting as a catalyst", + "example_sentence_english": "Enzymes catalyze biochemical reactions in the body.", + "pos": "verb", + "word_frequency": 28020 + }, + { + "word": "categorise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to place in a particular category", + "example_sentence_english": "Please categorise these documents by date.", + "pos": "verb", + "word_frequency": 28021 + }, + { + "word": "caterer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or company that provides food and drink for social events", + "example_sentence_english": "We hired a caterer for the wedding reception.", + "pos": "noun", + "word_frequency": 28022 + }, + { + "word": "cay", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small, low island or reef composed largely of sand or coral", + "example_sentence_english": "The boat anchored near a small sandy cay.", + "pos": "noun", + "word_frequency": 28023 + }, + { + "word": "celibate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstaining from marriage and sexual relations", + "example_sentence_english": "Some religious orders require their members to be celibate.", + "pos": "adjective", + "word_frequency": 28024 + }, + { + "word": "chancel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the part of a church containing the altar and choir", + "example_sentence_english": "The priest stood in the chancel during the service.", + "pos": "noun", + "word_frequency": 28025 + }, + { + "word": "christendom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the Christian world; the worldwide body of Christians", + "example_sentence_english": "Throughout Christendom, Christmas is a widely celebrated holiday.", + "pos": "noun", + "word_frequency": 28028 + }, + { + "word": "commonality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shared feature or characteristic", + "example_sentence_english": "Despite their differences, they found a commonality in their love for music.", + "pos": "noun", + "word_frequency": 28032 + }, + { + "word": "congratulatory", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressing congratulations", + "example_sentence_english": "She received many congratulatory messages after her promotion.", + "pos": "adjective", + "word_frequency": 28033 + }, + { + "word": "contactless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not requiring physical contact", + "example_sentence_english": "I prefer to use contactless payment methods.", + "pos": "adjective", + "word_frequency": 28035 + }, + { + "word": "continuance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of remaining in existence or operation", + "example_sentence_english": "The continuance of the project depends on securing more funding.", + "pos": "noun", + "word_frequency": 28036 + }, + { + "word": "cordless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having no cord; operating without a cord", + "example_sentence_english": "She bought a new cordless vacuum cleaner.", + "pos": "adjective", + "word_frequency": 28038 + }, + { + "word": "countrywide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extending throughout a whole country", + "example_sentence_english": "There was a countrywide protest against the new policy.", + "pos": "adjective", + "word_frequency": 28039 + }, + { + "word": "cru", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a specific vineyard or wine classification, especially in France", + "example_sentence_english": "This wine comes from a grand cru vineyard, known for its exceptional quality.", + "pos": "noun", + "word_frequency": 28041 + }, + { + "word": "cryptographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the art of writing or solving codes", + "example_sentence_english": "The system uses strong cryptographic algorithms to protect sensitive data.", + "pos": "adjective", + "word_frequency": 28042 + }, + { + "word": "dabble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take part in an activity in a casual or superficial way", + "example_sentence_english": "She likes to dabble in painting, but she's not a serious artist.", + "pos": "verb", + "word_frequency": 28044 + }, + { + "word": "daffodil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a yellow flower with a trumpet-shaped center", + "example_sentence_english": "Daffodils are one of the first flowers to bloom in spring, bringing a splash of yellow.", + "pos": "noun", + "word_frequency": 28045 + }, + { + "word": "darwinism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the theory of the evolution of species by natural selection", + "example_sentence_english": "Darwinism profoundly influenced scientific thought in the 19th century.", + "pos": "noun", + "word_frequency": 28049 + }, + { + "word": "deadwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unproductive or useless people or things", + "example_sentence_english": "The company decided to cut the deadwood from its workforce to improve efficiency.", + "pos": "noun", + "word_frequency": 28050 + }, + { + "word": "deceleration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the rate at which something slows down", + "example_sentence_english": "The car's rapid deceleration caused the passengers to lurch forward.", + "pos": "noun", + "word_frequency": 28051 + }, + { + "word": "dicky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not in good condition; shaky or unreliable (informal, British English)", + "example_sentence_english": "My car engine's been a bit dicky lately, so I need to get it checked.", + "pos": "adjective", + "word_frequency": 28054 + }, + { + "word": "dint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slight hollow in a surface made by a blow or pressure", + "example_sentence_english": "There was a small dint in the car door after it was hit by a shopping cart.", + "pos": "noun", + "word_frequency": 28055 + }, + { + "word": "disagreeable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant or offensive", + "example_sentence_english": "He has a very disagreeable personality, which makes him difficult to work with.", + "pos": "adjective", + "word_frequency": 28056 + }, + { + "word": "disembodied", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking a body or physical form", + "example_sentence_english": "We heard a disembodied voice coming from the empty room, which was quite eerie.", + "pos": "adjective", + "word_frequency": 28057 + }, + { + "word": "dockyard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area where ships are built or repaired", + "example_sentence_english": "The old dockyard is being redeveloped into a modern residential and commercial area.", + "pos": "noun", + "word_frequency": 28058 + }, + { + "word": "duffel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a coarse woolen cloth or a bag made from it", + "example_sentence_english": "He packed his clothes into a large duffel bag for the weekend trip.", + "pos": "noun", + "word_frequency": 28059 + }, + { + "word": "emaciated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abnormally thin or weak, especially because of illness or lack of food", + "example_sentence_english": "The stray dog was emaciated and weak from hunger and neglect.", + "pos": "adjective", + "word_frequency": 28066 + }, + { + "word": "emcee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a master of ceremonies", + "example_sentence_english": "The comedian was the emcee for the awards show, keeping the audience entertained.", + "pos": "noun", + "word_frequency": 28067 + }, + { + "word": "endoscopy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medical procedure involving a flexible tube with a camera to examine internal organs", + "example_sentence_english": "The doctor recommended an endoscopy to examine her stomach and esophagus.", + "pos": "noun", + "word_frequency": 28068 + }, + { + "word": "ergonomic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designed for efficiency and comfort in the working environment", + "example_sentence_english": "She bought an ergonomic chair to improve her posture and reduce back pain at work.", + "pos": "adjective", + "word_frequency": 28070 + }, + { + "word": "especial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "special; particular", + "example_sentence_english": "He took especial care to ensure everything was perfect for the presentation.", + "pos": "adjective", + "word_frequency": 28071 + }, + { + "word": "estradiol", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a major estrogen hormone", + "example_sentence_english": "Estradiol plays a key role in the female reproductive system and bone health.", + "pos": "noun", + "word_frequency": 28072 + }, + { + "word": "fanaticism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being fanatical; excessive enthusiasm or zeal", + "example_sentence_english": "Religious fanaticism can sometimes lead to intolerance and conflict.", + "pos": "noun", + "word_frequency": 28073 + }, + { + "word": "fatten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make or become fat", + "example_sentence_english": "Farmers often fatten their livestock before selling them for meat.", + "pos": "verb", + "word_frequency": 28074 + }, + { + "word": "feller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person (informal) or one who fells trees", + "example_sentence_english": "He's a good feller, always willing to lend a hand when you need it.", + "pos": "noun", + "word_frequency": 28075 + }, + { + "word": "fireside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the area around a fireplace", + "example_sentence_english": "We gathered around the fireside, enjoying the warmth and telling stories.", + "pos": "noun", + "word_frequency": 28077 + }, + { + "word": "floodplain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flat land next to a river, prone to flooding", + "example_sentence_english": "The town was built on a floodplain, making it vulnerable to seasonal floods.", + "pos": "noun", + "word_frequency": 28080 + }, + { + "word": "franchisee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or company that is granted a franchise", + "example_sentence_english": "The franchisee opened a new coffee shop downtown.", + "pos": "noun", + "word_frequency": 28081 + }, + { + "word": "freemasonry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the principles, practices, and organization of the Freemasons", + "example_sentence_english": "He was interested in the history and rituals of freemasonry.", + "pos": "noun", + "word_frequency": 28082 + }, + { + "word": "fugue", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a contrapuntal musical composition or a state of amnesia", + "example_sentence_english": "The composer's latest work included a complex fugue.", + "pos": "noun", + "word_frequency": 28083 + }, + { + "word": "funder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or organization that provides financial support", + "example_sentence_english": "The project is seeking a new funder to continue its research.", + "pos": "noun", + "word_frequency": 28084 + }, + { + "word": "gelding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a castrated male horse", + "example_sentence_english": "The stable had several geldings ready for riding.", + "pos": "noun", + "word_frequency": 28087 + }, + { + "word": "glandular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or affecting a gland or glands", + "example_sentence_english": "The doctor suspected a glandular problem.", + "pos": "adjective", + "word_frequency": 28090 + }, + { + "word": "gutsy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing courage, determination, or spirit", + "example_sentence_english": "It was a gutsy decision to quit her job and start her own business.", + "pos": "adjective", + "word_frequency": 28097 + }, + { + "word": "hafiz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a Muslim who has memorized the entire Qur'an", + "example_sentence_english": "He became a Hafiz after years of dedicated study.", + "pos": "noun", + "word_frequency": 28098 + }, + { + "word": "handiwork", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "work done skillfully with the hands; a product of one's own efforts", + "example_sentence_english": "The intricate carving was clearly the handiwork of a master craftsman.", + "pos": "noun", + "word_frequency": 28100 + }, + { + "word": "handlebar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the steering bar of a bicycle or motorcycle", + "example_sentence_english": "He gripped the handlebars tightly as he rode down the hill.", + "pos": "noun", + "word_frequency": 28102 + }, + { + "word": "homicidal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capable of or tending to commit homicide", + "example_sentence_english": "The patient was deemed a homicidal risk.", + "pos": "adjective", + "word_frequency": 28106 + }, + { + "word": "hyacinth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fragrant flowering plant", + "example_sentence_english": "The garden was filled with the sweet scent of hyacinths.", + "pos": "noun", + "word_frequency": 28107 + }, + { + "word": "impersonator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who imitates the voice or mannerisms of others", + "example_sentence_english": "The Elvis impersonator entertained the crowd.", + "pos": "noun", + "word_frequency": 28111 + }, + { + "word": "intergenerational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or affecting several generations", + "example_sentence_english": "The program aims to foster intergenerational understanding.", + "pos": "adjective", + "word_frequency": 28115 + }, + { + "word": "invigorate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to give strength or energy to", + "example_sentence_english": "A brisk walk in the fresh air can invigorate you.", + "pos": "verb", + "word_frequency": 28116 + }, + { + "word": "lanky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tall and thin, often awkwardly so", + "example_sentence_english": "The lanky boy struggled to fit into the small desk.", + "pos": "adjective", + "word_frequency": 28136 + }, + { + "word": "loiter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stand or wait around idly or without apparent purpose", + "example_sentence_english": "Teenagers often loiter outside the convenience store.", + "pos": "verb", + "word_frequency": 28139 + }, + { + "word": "lookalike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that closely resembles another", + "example_sentence_english": "She was often mistaken for a celebrity lookalike.", + "pos": "noun", + "word_frequency": 28140 + }, + { + "word": "loveless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without love or affection", + "example_sentence_english": "He described his childhood as a loveless existence.", + "pos": "adjective", + "word_frequency": 28141 + }, + { + "word": "lurid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very vivid in color, especially so as to create an unpleasantly harsh or unnatural effect; presenting in vividly shocking or sensational terms", + "example_sentence_english": "The newspaper published a lurid account of the crime.", + "pos": "adjective", + "word_frequency": 28142 + }, + { + "word": "mesquite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of thorny shrub or small tree native to arid regions of the Americas", + "example_sentence_english": "Mesquite wood is often used for barbecuing.", + "pos": "noun", + "word_frequency": 28149 + }, + { + "word": "misnomer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a wrong or inaccurate name or designation", + "example_sentence_english": "Calling a whale a 'fish' is a common misnomer.", + "pos": "noun", + "word_frequency": 28151 + }, + { + "word": "mobilisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of assembling and making ready for use or action", + "example_sentence_english": "The country began a general mobilisation of its forces.", + "pos": "noun", + "word_frequency": 28153 + }, + { + "word": "modulator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device or substance that modulates something", + "example_sentence_english": "The sound system uses a frequency modulator to adjust the signal.", + "pos": "noun", + "word_frequency": 28154 + }, + { + "word": "monetization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of converting something into money", + "example_sentence_english": "Many online platforms focus on content monetization.", + "pos": "noun", + "word_frequency": 28155 + }, + { + "word": "mountaintop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the summit or peak of a mountain", + "example_sentence_english": "They hiked for hours to reach the mountaintop.", + "pos": "noun", + "word_frequency": 28157 + }, + { + "word": "mournful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or expressing sorrow or grief; sad", + "example_sentence_english": "The mournful sound of the bagpipes filled the air.", + "pos": "adjective", + "word_frequency": 28158 + }, + { + "word": "mrt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mass Rapid Transit (a subway or metro system)", + "example_sentence_english": "Take the MRT to get to the city center quickly.", + "pos": "noun", + "word_frequency": 28159 + }, + { + "word": "mullah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamic religious leader", + "example_sentence_english": "The mullah delivered a sermon at the mosque.", + "pos": "noun", + "word_frequency": 28161 + }, + { + "word": "nettle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stinging plant", + "example_sentence_english": "Be careful not to touch the nettles; they sting.", + "pos": "noun", + "word_frequency": 28164 + }, + { + "word": "nodule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "small lump or growth", + "example_sentence_english": "The doctor found a small nodule on her thyroid.", + "pos": "noun", + "word_frequency": 28165 + }, + { + "word": "oba", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Yoruba traditional ruler", + "example_sentence_english": "The Oba of Benin is a revered figure.", + "pos": "noun", + "word_frequency": 28168 + }, + { + "word": "obstinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubbornly refusing to change opinion", + "example_sentence_english": "He was obstinate and refused to admit he was wrong.", + "pos": "adjective", + "word_frequency": 28169 + }, + { + "word": "ontological", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the nature of being", + "example_sentence_english": "The philosopher discussed the ontological implications of existence.", + "pos": "adjective", + "word_frequency": 28170 + }, + { + "word": "opine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to state one's opinion", + "example_sentence_english": "He opined that the new policy would fail.", + "pos": "verb", + "word_frequency": 28171 + }, + { + "word": "optimisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of making something as effective as possible", + "example_sentence_english": "The team focused on the optimisation of their workflow.", + "pos": "noun", + "word_frequency": 28172 + }, + { + "word": "outbuilding", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a building separate from a main house", + "example_sentence_english": "They stored their tools in the small outbuilding behind the house.", + "pos": "noun", + "word_frequency": 28173 + }, + { + "word": "pacify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to calm or soothe", + "example_sentence_english": "The mother tried to pacify the crying baby.", + "pos": "verb", + "word_frequency": 28175 + }, + { + "word": "paraffin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waxy substance; kerosene (UK)", + "example_sentence_english": "The candle was made of paraffin wax.", + "pos": "noun", + "word_frequency": 28176 + }, + { + "word": "peculiarity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an odd or unusual feature", + "example_sentence_english": "One of his peculiarities was his habit of talking to himself.", + "pos": "noun", + "word_frequency": 28178 + }, + { + "word": "pere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "father (French, often used for priests)", + "example_sentence_english": "Père Lachaise is a famous cemetery in Paris.", + "pos": "noun", + "word_frequency": 28179 + }, + { + "word": "periodontal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the gums and tissues around teeth", + "example_sentence_english": "She needed treatment for periodontal disease.", + "pos": "adjective", + "word_frequency": 28180 + }, + { + "word": "peruse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to read carefully", + "example_sentence_english": "He spent hours perusing the documents.", + "pos": "verb", + "word_frequency": 28181 + }, + { + "word": "petulant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "childishly sulky or bad-tempered", + "example_sentence_english": "The child became petulant when he didn't get his way.", + "pos": "adjective", + "word_frequency": 28182 + }, + { + "word": "phenomenology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "philosophical study of experience and consciousness", + "example_sentence_english": "His research focused on the phenomenology of perception.", + "pos": "noun", + "word_frequency": 28183 + }, + { + "word": "philology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the study of language in historical context", + "example_sentence_english": "She pursued a degree in classical philology.", + "pos": "noun", + "word_frequency": 28184 + }, + { + "word": "platitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a trite or unoriginal remark", + "example_sentence_english": "His speech was full of empty platitudes about hard work.", + "pos": "noun", + "word_frequency": 28187 + }, + { + "word": "pleat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fold into pleats", + "example_sentence_english": "She carefully pleated the fabric for the skirt.", + "pos": "verb", + "word_frequency": 28188 + }, + { + "word": "pollinator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal that carries pollen", + "example_sentence_english": "Bees are important pollinators for many plants.", + "pos": "noun", + "word_frequency": 28191 + }, + { + "word": "pretence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an attempt to make something appear true", + "example_sentence_english": "He made a pretence of being busy.", + "pos": "noun", + "word_frequency": 28193 + }, + { + "word": "psychotherapist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a therapist who treats mental disorders", + "example_sentence_english": "She decided to see a psychotherapist to help with her anxiety.", + "pos": "noun", + "word_frequency": 28196 + }, + { + "word": "punctuality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being on time", + "example_sentence_english": "Punctuality is important for professional meetings.", + "pos": "noun", + "word_frequency": 28198 + }, + { + "word": "rebuff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reject or refuse abruptly", + "example_sentence_english": "Her offer of help was met with a sharp rebuff.", + "pos": "verb", + "word_frequency": 28202 + }, + { + "word": "recuperate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recover from illness or exertion", + "example_sentence_english": "He needed time to recuperate after the surgery.", + "pos": "verb", + "word_frequency": 28203 + }, + { + "word": "ripen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to become ripe; to mature", + "example_sentence_english": "The apples need a few more days to ripen on the tree.", + "pos": "verb", + "word_frequency": 28206 + }, + { + "word": "sandpaper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paper with sand or other abrasive material on one side, used for smoothing or polishing", + "example_sentence_english": "He used sandpaper to smooth the rough edges of the wood.", + "pos": "noun", + "word_frequency": 28212 + }, + { + "word": "sandstorm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a strong wind carrying clouds of sand, especially in a desert", + "example_sentence_english": "The desert travelers were caught in a sudden sandstorm.", + "pos": "noun", + "word_frequency": 28213 + }, + { + "word": "scepter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ornamented staff carried by rulers on ceremonial occasions as a symbol of sovereignty", + "example_sentence_english": "The queen held the scepter as a symbol of her authority.", + "pos": "noun", + "word_frequency": 28214 + }, + { + "word": "scurvy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disease caused by a deficiency of vitamin C", + "example_sentence_english": "Sailors on long voyages were often afflicted with scurvy.", + "pos": "noun", + "word_frequency": 28215 + }, + { + "word": "searchlight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a powerful beam of light projected from a lamp with a reflector, used to illuminate distant objects", + "example_sentence_english": "The prison guards shone a searchlight across the yard.", + "pos": "noun", + "word_frequency": 28216 + }, + { + "word": "señor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a Spanish title or form of address for a man, corresponding to Mr. or sir", + "example_sentence_english": "\"Excuse me, Señor,\" she said, trying to get his attention.", + "pos": "noun", + "word_frequency": 28217 + }, + { + "word": "sheeting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material in the form of sheets, especially for beds", + "example_sentence_english": "We bought new sheeting to make curtains.", + "pos": "noun", + "word_frequency": 28221 + }, + { + "word": "sicken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become sick or disgusted", + "example_sentence_english": "The sight of the cruelty made her sicken.", + "pos": "verb", + "word_frequency": 28222 + }, + { + "word": "sot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is habitually drunk", + "example_sentence_english": "He was known as a sot, always found at the local tavern.", + "pos": "noun", + "word_frequency": 28226 + }, + { + "word": "stiletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short dagger with a tapering blade; a high, slender heel on a woman's shoe", + "example_sentence_english": "She wore elegant black stilettos to the party.", + "pos": "noun", + "word_frequency": 28230 + }, + { + "word": "stipe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stalk or stem, especially the stem of a fungus or seaweed", + "example_sentence_english": "The mushroom's cap was supported by a thick stipe.", + "pos": "noun", + "word_frequency": 28231 + }, + { + "word": "strep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short for streptococcus, a type of bacteria that can cause infections", + "example_sentence_english": "The doctor said I have strep throat.", + "pos": "noun", + "word_frequency": 28232 + }, + { + "word": "subjugation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of bringing someone or something under domination or control", + "example_sentence_english": "The empire's goal was the complete subjugation of its neighbors.", + "pos": "noun", + "word_frequency": 28233 + }, + { + "word": "surrogacy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice by which a woman bears a child for another person or couple", + "example_sentence_english": "They decided to pursue surrogacy to start their family.", + "pos": "noun", + "word_frequency": 28234 + }, + { + "word": "tangential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or along a tangent; only slightly connected", + "example_sentence_english": "His comments were tangential to the main topic of discussion.", + "pos": "adjective", + "word_frequency": 28236 + }, + { + "word": "teardrop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a single drop of tears; something shaped like a tear", + "example_sentence_english": "A single teardrop rolled down her cheek.", + "pos": "noun", + "word_frequency": 28237 + }, + { + "word": "tera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a prefix meaning 10^12 (one trillion)", + "example_sentence_english": "A terabyte (TB) is a unit of digital information equal to one trillion bytes.", + "pos": "noun", + "word_frequency": 28238 + }, + { + "word": "thieve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to steal", + "example_sentence_english": "He was caught trying to thieve from the shop.", + "pos": "verb", + "word_frequency": 28240 + }, + { + "word": "toga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a loose flowing outer garment worn by citizens of ancient Rome", + "example_sentence_english": "Roman senators wore a toga as a symbol of their status.", + "pos": "noun", + "word_frequency": 28242 + }, + { + "word": "toiletry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an article or preparation used in washing, grooming, or enhancing one's appearance", + "example_sentence_english": "She packed all her toiletries in a small bag for the trip.", + "pos": "noun", + "word_frequency": 28243 + }, + { + "word": "toolbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a row of icons or buttons on a computer screen that activate certain functions", + "example_sentence_english": "Click the save icon on the toolbar to save your document.", + "pos": "noun", + "word_frequency": 28244 + }, + { + "word": "transference", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of transferring something or the process of being transferred", + "example_sentence_english": "The transference of skills from one job to another is often beneficial.", + "pos": "noun", + "word_frequency": 28246 + }, + { + "word": "transphobic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing a dislike of or prejudice against transgender people", + "example_sentence_english": "The organization aims to combat transphobic attitudes in society.", + "pos": "adjective", + "word_frequency": 28247 + }, + { + "word": "trill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a quavering or vibratory sound, especially a rapid alternation between two musical notes", + "example_sentence_english": "The bird's song ended with a beautiful trill.", + "pos": "noun", + "word_frequency": 28248 + }, + { + "word": "twisty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full of twists; winding or convoluted", + "example_sentence_english": "The mountain road was very twisty and challenging to drive.", + "pos": "adjective", + "word_frequency": 28249 + }, + { + "word": "unchanging", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remaining the same; not changing", + "example_sentence_english": "Her love for him remained unchanging throughout the years.", + "pos": "adjective", + "word_frequency": 28251 + }, + { + "word": "unfunded", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not provided with money or financial support", + "example_sentence_english": "The project was left unfunded and could not proceed.", + "pos": "adjective", + "word_frequency": 28252 + }, + { + "word": "universality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being universal; existing or true everywhere or in all cases", + "example_sentence_english": "The universality of human rights is a fundamental principle.", + "pos": "noun", + "word_frequency": 28253 + }, + { + "word": "unmet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not satisfied or fulfilled", + "example_sentence_english": "There are many unmet needs in the community.", + "pos": "adjective", + "word_frequency": 28255 + }, + { + "word": "unsteady", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not firm or stable; liable to fall or shake", + "example_sentence_english": "He felt unsteady on his feet after the long illness.", + "pos": "adjective", + "word_frequency": 28256 + }, + { + "word": "untie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to undo or unfasten (something tied or knotted)", + "example_sentence_english": "Please untie the knot in this rope.", + "pos": "verb", + "word_frequency": 28257 + }, + { + "word": "unturned", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not turned over or disturbed", + "example_sentence_english": "We will leave no stone unturned in our search for the truth.", + "pos": "adjective", + "word_frequency": 28258 + }, + { + "word": "uplink", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a telecommunication link from an earth station to a satellite or aircraft", + "example_sentence_english": "The satellite established an uplink with the ground station.", + "pos": "noun", + "word_frequency": 28259 + }, + { + "word": "vax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vaccine or vaccination (informal)", + "example_sentence_english": "Have you had your flu vax yet?", + "pos": "noun", + "word_frequency": 28260 + }, + { + "word": "vestibule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small antechamber or hall leading to a main room", + "example_sentence_english": "We waited in the vestibule before entering the main hall.", + "pos": "noun", + "word_frequency": 28261 + }, + { + "word": "vestry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a room or building attached to a church, used as an office, for changing into vestments, etc.", + "example_sentence_english": "The choir gathered in the vestry before the service.", + "pos": "noun", + "word_frequency": 28262 + }, + { + "word": "voluptuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a woman) curvaceous and sensuously attractive", + "example_sentence_english": "The artist painted a voluptuous figure.", + "pos": "adjective", + "word_frequency": 28265 + }, + { + "word": "weevil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small beetle with a long snout, many kinds of which are pests of crops or stored food", + "example_sentence_english": "The weevil infestation damaged the grain crops.", + "pos": "noun", + "word_frequency": 28270 + }, + { + "word": "wintry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic of winter, especially in being cold, bleak, or stormy", + "example_sentence_english": "The wintry weather made driving conditions difficult.", + "pos": "adjective", + "word_frequency": 28275 + }, + { + "word": "worshiper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who worships God or a god", + "example_sentence_english": "The worshipers gathered in the temple for the ceremony.", + "pos": "noun", + "word_frequency": 28276 + }, + { + "word": "zealot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is fanatical and uncompromising in pursuit of their religious, political, or other ideals", + "example_sentence_english": "The political zealot refused to listen to any opposing viewpoints.", + "pos": "noun", + "word_frequency": 28282 + }, + { + "word": "achiever", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who achieves success", + "example_sentence_english": "She is a high achiever in her academic studies.", + "pos": "noun", + "word_frequency": 28293 + }, + { + "word": "acrobat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an entertainer who performs spectacular gymnastic feats", + "example_sentence_english": "The acrobat performed amazing flips and twists.", + "pos": "noun", + "word_frequency": 28294 + }, + { + "word": "amputee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has had a limb amputated", + "example_sentence_english": "The athlete, an amputee, competed in the Paralympics.", + "pos": "noun", + "word_frequency": 28303 + }, + { + "word": "anchovy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, common salt-water forage fish", + "example_sentence_english": "I like anchovies on my pizza.", + "pos": "noun", + "word_frequency": 28304 + }, + { + "word": "ashtray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a receptacle for tobacco ash and cigarette butts", + "example_sentence_english": "He flicked the ash into the ashtray.", + "pos": "noun", + "word_frequency": 28307 + }, + { + "word": "askew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not straight or level; at an angle", + "example_sentence_english": "The picture on the wall was hanging slightly askew.", + "pos": "adjective", + "word_frequency": 28309 + }, + { + "word": "backline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the defensive players in a team sport; the rhythm section of a band", + "example_sentence_english": "The coach strengthened the team's backline.", + "pos": "noun", + "word_frequency": 28315 + }, + { + "word": "backtrack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reverse one's previous statement or position; return by the same route", + "example_sentence_english": "He had to backtrack on his promise after realizing his mistake.", + "pos": "verb", + "word_frequency": 28316 + }, + { + "word": "balk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hesitate or be unwilling to accept an idea or undertaking; (in baseball) an illegal motion by a pitcher", + "example_sentence_english": "Many investors balk at the idea of putting money into risky ventures.", + "pos": "verb", + "word_frequency": 28319 + }, + { + "word": "beckon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make a gesture with the hand, arm, or head to encourage someone to come nearer or follow", + "example_sentence_english": "She beckoned to him from across the room.", + "pos": "verb", + "word_frequency": 28321 + }, + { + "word": "best", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defeat or outdo", + "example_sentence_english": "He managed to best his opponent in the final round.", + "pos": "verb", + "word_frequency": 28322 + }, + { + "word": "bicep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large muscle in the upper arm", + "example_sentence_english": "He flexed his bicep to show off his strength.", + "pos": "noun", + "word_frequency": 28323 + }, + { + "word": "braise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fry food lightly and then stew it slowly in a closed container", + "example_sentence_english": "The chef decided to braise the short ribs for several hours.", + "pos": "verb", + "word_frequency": 28328 + }, + { + "word": "bulimia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an eating disorder characterized by binge eating followed by purging", + "example_sentence_english": "Bulimia is a serious eating disorder that requires professional help.", + "pos": "[pos_edited]", + "word_frequency": 28332 + }, + { + "word": "buyback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the repurchase of something previously sold, especially shares by a company", + "example_sentence_english": "The company announced a share buyback program to boost investor confidence.", + "pos": "noun", + "word_frequency": 28333 + }, + { + "word": "canter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a three-beat gait of a horse, slower than a gallop", + "example_sentence_english": "The horse broke into a gentle canter across the field.", + "pos": "verb", + "word_frequency": 28337 + }, + { + "word": "cantilever", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to project or support by a cantilever", + "example_sentence_english": "The architect designed the balcony to cantilever out over the garden.", + "pos": "verb", + "word_frequency": 28338 + }, + { + "word": "carpal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the carpus (wrist bones)", + "example_sentence_english": "Carpal tunnel syndrome affects the median nerve in the wrist.", + "pos": "adjective", + "word_frequency": 28339 + }, + { + "word": "coastguard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a national organization responsible for protecting the coast and rescuing people at sea", + "example_sentence_english": "The coastguard rescued the stranded sailors.", + "pos": "noun", + "word_frequency": 28346 + }, + { + "word": "colonisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of settling among and establishing control over the indigenous people of an area", + "example_sentence_english": "The colonisation of new territories had a profound impact on global history.", + "pos": "noun", + "word_frequency": 28348 + }, + { + "word": "convulsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, violent, irregular movement of a limb or of the body, caused by involuntary contraction of muscles", + "example_sentence_english": "The patient suffered a convulsion during the seizure.", + "pos": "noun", + "word_frequency": 28349 + }, + { + "word": "cornbread", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of bread made with cornmeal", + "example_sentence_english": "She served the chili with a side of warm cornbread.", + "pos": "noun", + "word_frequency": 28351 + }, + { + "word": "crowbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy iron bar with a flattened end, used as a lever", + "example_sentence_english": "He used a crowbar to pry open the wooden crate.", + "pos": "noun", + "word_frequency": 28356 + }, + { + "word": "cytoplasmic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the cytoplasm of a cell", + "example_sentence_english": "The cytoplasmic membrane plays a crucial role in cell function.", + "pos": "adjective", + "word_frequency": 28358 + }, + { + "word": "deleterious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmful or damaging", + "example_sentence_english": "The chemical had a deleterious effect on the environment.", + "pos": "adjective", + "word_frequency": 28362 + }, + { + "word": "delineate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to describe or portray precisely", + "example_sentence_english": "The architect tried to delineate the boundaries of the property.", + "pos": "verb", + "word_frequency": 28364 + }, + { + "word": "demeanour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outward behavior or bearing", + "example_sentence_english": "His calm demeanour reassured everyone during the crisis.", + "pos": "noun", + "word_frequency": 28365 + }, + { + "word": "depressant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that reduces physiological or nervous activity", + "example_sentence_english": "Alcohol acts as a depressant on the central nervous system.", + "pos": "noun", + "word_frequency": 28366 + }, + { + "word": "detritus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waste or debris of any kind", + "example_sentence_english": "The beach was covered in detritus after the storm.", + "pos": "noun", + "word_frequency": 28368 + }, + { + "word": "disengagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of withdrawing or detaching", + "example_sentence_english": "The disengagement of troops from the conflict zone was a positive step.", + "pos": "noun", + "word_frequency": 28370 + }, + { + "word": "dorky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfashionable and socially awkward", + "example_sentence_english": "He wore a dorky hat to the party.", + "pos": "adjective", + "word_frequency": 28371 + }, + { + "word": "dormer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a window that projects vertically from a sloping roof", + "example_sentence_english": "The house had a charming dormer window on the second floor.", + "pos": "noun", + "word_frequency": 28372 + }, + { + "word": "driftwood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wood that has been washed ashore by the sea or a river", + "example_sentence_english": "We collected pieces of driftwood on the beach to decorate our home.", + "pos": "noun", + "word_frequency": 28373 + }, + { + "word": "drivel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silly nonsense", + "example_sentence_english": "He was talking absolute drivel after a few drinks.", + "pos": "noun", + "word_frequency": 28374 + }, + { + "word": "dyslexic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having difficulty with reading due to dyslexia", + "example_sentence_english": "The dyslexic student received extra support in class.", + "pos": "adjective", + "word_frequency": 28376 + }, + { + "word": "dystopia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an imagined state or society where there is great suffering or injustice", + "example_sentence_english": "Many science fiction novels explore themes of dystopia.", + "pos": "noun", + "word_frequency": 28377 + }, + { + "word": "effeminate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having characteristics regarded as typical of a woman; unmanly", + "example_sentence_english": "His effeminate gestures were sometimes misunderstood.", + "pos": "adjective", + "word_frequency": 28379 + }, + { + "word": "electrolysis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemical decomposition by electric current", + "example_sentence_english": "Electrolysis is used to remove unwanted hair.", + "pos": "noun", + "word_frequency": 28381 + }, + { + "word": "emotionless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing no emotion", + "example_sentence_english": "His face remained emotionless throughout the difficult conversation.", + "pos": "adjective", + "word_frequency": 28382 + }, + { + "word": "emphysema", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a lung condition causing shortness of breath", + "example_sentence_english": "Smoking can lead to serious conditions like emphysema.", + "pos": "noun", + "word_frequency": 28383 + }, + { + "word": "endometriosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a condition in which tissue similar to the lining of the uterus grows outside the uterus", + "example_sentence_english": "Endometriosis can cause severe pelvic pain.", + "pos": "noun", + "word_frequency": 28384 + }, + { + "word": "eritrean", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Eritrea or its people", + "example_sentence_english": "The Eritrean community celebrated their national day.", + "pos": "adjective", + "word_frequency": 28385 + }, + { + "word": "euthanize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to kill (a person or animal) painlessly to relieve suffering", + "example_sentence_english": "The vet decided it was best to euthanize the suffering animal.", + "pos": "verb", + "word_frequency": 28387 + }, + { + "word": "excision", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of cutting out or removing", + "example_sentence_english": "The surgeon performed an excision of the tumor.", + "pos": "noun", + "word_frequency": 28388 + }, + { + "word": "exogenous", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "originating from outside the organism", + "example_sentence_english": "The plant's growth was influenced by exogenous factors like sunlight.", + "pos": "adjective", + "word_frequency": 28389 + }, + { + "word": "expandable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be expanded", + "example_sentence_english": "The new table is expandable, perfect for dinner parties.", + "pos": "adjective", + "word_frequency": 28390 + }, + { + "word": "extractor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that removes something", + "example_sentence_english": "The kitchen has a powerful extractor fan to remove cooking smells.", + "pos": "noun", + "word_frequency": 28391 + }, + { + "word": "faerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fairy or magical creature", + "example_sentence_english": "The old tales spoke of mischievous faerie folk living in the woods.", + "pos": "[pos_edited]", + "word_frequency": 28392 + }, + { + "word": "foreskin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the retractable fold of skin covering the end of the penis", + "example_sentence_english": "Circumcision involves the removal of the foreskin.", + "pos": "noun", + "word_frequency": 28396 + }, + { + "word": "futurist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who studies the future and makes predictions about it", + "example_sentence_english": "The conference featured a renowned futurist discussing AI's impact.", + "pos": "noun", + "word_frequency": 28397 + }, + { + "word": "ganja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marijuana", + "example_sentence_english": "The police found a small amount of ganja.", + "pos": "[pos_edited]", + "word_frequency": 28401 + }, + { + "word": "genial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friendly and cheerful", + "example_sentence_english": "He was a genial host, always making everyone feel welcome.", + "pos": "adjective", + "word_frequency": 28402 + }, + { + "word": "geophysics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of the Earth's physical processes", + "example_sentence_english": "Geophysics helps us understand earthquakes and volcanoes.", + "pos": "noun", + "word_frequency": 28403 + }, + { + "word": "goalless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without a goal being scored", + "example_sentence_english": "The football match ended in a goalless draw.", + "pos": "adjective", + "word_frequency": 28407 + }, + { + "word": "gogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lively, energetic (often referring to a style of music or dance)", + "example_sentence_english": "She loved the go-go music from the 1960s.", + "pos": "[pos_edited]", + "word_frequency": 28408 + }, + { + "word": "gunnery", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the science or art of designing, manufacturing, and operating guns", + "example_sentence_english": "The naval academy offers courses in gunnery.", + "pos": "noun", + "word_frequency": 28413 + }, + { + "word": "hairdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person's hairstyle", + "example_sentence_english": "She got a new hairdo for the party.", + "pos": "noun", + "word_frequency": 28415 + }, + { + "word": "hallucinate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to experience something that is not real", + "example_sentence_english": "Lack of sleep can cause people to hallucinate.", + "pos": "verb", + "word_frequency": 28417 + }, + { + "word": "headlong", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "with the head foremost; in a rush", + "example_sentence_english": "He rushed headlong into the crowd.", + "pos": "adverb", + "word_frequency": 28420 + }, + { + "word": "heuristic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "enabling a person to discover or learn something for themselves", + "example_sentence_english": "The teacher used a heuristic approach to problem-solving.", + "pos": "adjective", + "word_frequency": 28422 + }, + { + "word": "hombre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "man (Spanish loanword)", + "example_sentence_english": "He was a tough hombre, not to be messed with.", + "pos": "[pos_edited]", + "word_frequency": 28423 + }, + { + "word": "homology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "similarity in structure or function due to common ancestry", + "example_sentence_english": "The homology between human and ape skeletons is striking.", + "pos": "noun", + "word_frequency": 28424 + }, + { + "word": "humerus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the bone of the upper arm", + "example_sentence_english": "He fractured his humerus in the accident.", + "pos": "noun", + "word_frequency": 28427 + }, + { + "word": "hunky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexually attractive and muscular", + "example_sentence_english": "The actor was described as tall and hunky.", + "pos": "adjective", + "word_frequency": 28428 + }, + { + "word": "hypertrophy", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the enlargement of an organ or tissue from the increase in size of its cells", + "example_sentence_english": "Weightlifting can lead to muscle hypertrophy.", + "pos": "noun", + "word_frequency": 28429 + }, + { + "word": "iceman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who delivers ice; a person who is emotionally cold", + "example_sentence_english": "The iceman delivered a block of ice for the cooler.", + "pos": "noun", + "word_frequency": 28430 + }, + { + "word": "incestuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving sexual relations between people too closely related to marry", + "example_sentence_english": "The novel explored the theme of an incestuous relationship.", + "pos": "adjective", + "word_frequency": 28431 + }, + { + "word": "iniquity", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "immoral or grossly unfair behavior", + "example_sentence_english": "The judge spoke out against the iniquity of the system.", + "pos": "noun", + "word_frequency": 28432 + }, + { + "word": "initiator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who initiates something", + "example_sentence_english": "She was the initiator of the new project.", + "pos": "noun", + "word_frequency": 28433 + }, + { + "word": "interviewee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is being interviewed", + "example_sentence_english": "The interviewee answered all the questions clearly.", + "pos": "noun", + "word_frequency": 28435 + }, + { + "word": "ironclad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to contradict or evade; covered with iron plates", + "example_sentence_english": "They had an ironclad agreement that could not be broken.", + "pos": "adjective", + "word_frequency": 28436 + }, + { + "word": "joiner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who joins things, especially a skilled carpenter who makes fittings for buildings", + "example_sentence_english": "The joiner carefully fitted the new door frame.", + "pos": "noun", + "word_frequency": 28441 + }, + { + "word": "kiddy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a child (informal)", + "example_sentence_english": "The kiddy was playing happily in the park.", + "pos": "noun", + "word_frequency": 28448 + }, + { + "word": "lactate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to secrete milk", + "example_sentence_english": "Mammals lactate to feed their young.", + "pos": "verb", + "word_frequency": 28454 + }, + { + "word": "lather", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to form a foam or froth", + "example_sentence_english": "He lathered the soap in his hands before washing.", + "pos": "verb", + "word_frequency": 28456 + }, + { + "word": "luge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small sled for one or two people, ridden in a prone or supine position", + "example_sentence_english": "The athlete sped down the ice track on a luge.", + "pos": "noun", + "word_frequency": 28460 + }, + { + "word": "lumberjack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who fells trees", + "example_sentence_english": "The lumberjack skillfully cut down the tall pine tree.", + "pos": "noun", + "word_frequency": 28461 + }, + { + "word": "lunchbox", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a container for carrying a packed lunch", + "example_sentence_english": "She packed her sandwich in her lunchbox.", + "pos": "noun", + "word_frequency": 28462 + }, + { + "word": "lye", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong alkaline solution, especially of potassium hydroxide or sodium hydroxide", + "example_sentence_english": "Lye is used in soap making and drain cleaners.", + "pos": "noun", + "word_frequency": 28463 + }, + { + "word": "manmade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made or caused by human beings, not by nature", + "example_sentence_english": "The lake is a manmade reservoir.", + "pos": "adjective", + "word_frequency": 28467 + }, + { + "word": "marauder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who marauds; a raider", + "example_sentence_english": "The village was constantly under threat from marauders.", + "pos": "noun", + "word_frequency": 28468 + }, + { + "word": "meld", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blend or combine", + "example_sentence_english": "The flavors of the ingredients meld perfectly in this dish.", + "pos": "verb", + "word_frequency": 28471 + }, + { + "word": "mettle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person's ability to cope well with difficulties or to face a demanding situation in a spirited and resilient way", + "example_sentence_english": "The challenging project truly tested her mettle.", + "pos": "noun", + "word_frequency": 28473 + }, + { + "word": "militancy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the use of confrontational or violent methods in support of a political or social cause", + "example_sentence_english": "The union's militancy led to a prolonged strike.", + "pos": "noun", + "word_frequency": 28474 + }, + { + "word": "monochromatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "containing or using only one color", + "example_sentence_english": "The artist preferred a monochromatic palette for his landscape paintings.", + "pos": "adjective", + "word_frequency": 28475 + }, + { + "word": "motherly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic of a mother, especially in being caring, protective, or nurturing", + "example_sentence_english": "She had a very kind and motherly demeanor.", + "pos": "adjective", + "word_frequency": 28476 + }, + { + "word": "munchy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a snack food", + "example_sentence_english": "I need some munchies to go with my movie.", + "pos": "noun", + "word_frequency": 28478 + }, + { + "word": "nightstand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small table or cabinet next to a bed", + "example_sentence_english": "She placed her book and glasses on the nightstand before going to sleep.", + "pos": "noun", + "word_frequency": 28486 + }, + { + "word": "ouster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of forcing someone out of a position or office", + "example_sentence_english": "The CEO's ouster came after a series of financial scandals.", + "pos": "noun", + "word_frequency": 28492 + }, + { + "word": "oxymoron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a figure of speech in which apparently contradictory terms appear in conjunction", + "example_sentence_english": "'Jumbo shrimp' is a classic example of an oxymoron.", + "pos": "noun", + "word_frequency": 28493 + }, + { + "word": "palmetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of palm tree, especially one with fan-shaped leaves", + "example_sentence_english": "The garden was filled with various tropical plants, including several palmetto trees.", + "pos": "noun", + "word_frequency": 28494 + }, + { + "word": "phonological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the system of sounds in a language", + "example_sentence_english": "Children often struggle with phonological awareness before learning to read.", + "pos": "adjective", + "word_frequency": 28498 + }, + { + "word": "pinkish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhat pink in color", + "example_sentence_english": "The sky turned a beautiful pinkish hue at sunset.", + "pos": "adjective", + "word_frequency": 28500 + }, + { + "word": "pissy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoyed or bad-tempered (informal)", + "example_sentence_english": "He was in a really pissy mood after losing the game.", + "pos": "adjective", + "word_frequency": 28501 + }, + { + "word": "polymorphism", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the condition of occurring in several different forms", + "example_sentence_english": "In biology, polymorphism refers to the existence of multiple forms within a species.", + "pos": "noun", + "word_frequency": 28503 + }, + { + "word": "pontoon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a flat-bottomed boat or a floating support for a bridge", + "example_sentence_english": "They built a temporary pontoon bridge to cross the river.", + "pos": "noun", + "word_frequency": 28504 + }, + { + "word": "postoperative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the period following a surgical operation", + "example_sentence_english": "The patient required close monitoring during the postoperative recovery period.", + "pos": "adjective", + "word_frequency": 28505 + }, + { + "word": "pretrial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the period before a legal trial", + "example_sentence_english": "The judge scheduled a pretrial hearing to discuss the evidence.", + "pos": "adjective", + "word_frequency": 28507 + }, + { + "word": "probationary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a period of testing or observation", + "example_sentence_english": "New employees often have a probationary period of three months.", + "pos": "adjective", + "word_frequency": 28509 + }, + { + "word": "professorship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the position or office of a university professor", + "example_sentence_english": "She was awarded a prestigious professorship at the university.", + "pos": "noun", + "word_frequency": 28510 + }, + { + "word": "promontory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a point of high land that juts out into a large body of water", + "example_sentence_english": "The lighthouse stood on a rocky promontory overlooking the sea.", + "pos": "noun", + "word_frequency": 28511 + }, + { + "word": "pygmy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of certain peoples of very short stature; or, an unusually small example of its kind", + "example_sentence_english": "The pygmy marmoset is one of the smallest monkeys in the world.", + "pos": "noun", + "word_frequency": 28514 + }, + { + "word": "rearrangement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of changing the order or position of things", + "example_sentence_english": "The rearrangement of furniture made the room feel larger.", + "pos": "noun", + "word_frequency": 28522 + }, + { + "word": "rearview", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to a view of what is behind", + "example_sentence_english": "He checked his rearview mirror before changing lanes.", + "pos": "adjective", + "word_frequency": 28523 + }, + { + "word": "refocus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change the focus or direction of attention", + "example_sentence_english": "After the break, we need to refocus on our main goals.", + "pos": "verb", + "word_frequency": 28524 + }, + { + "word": "relevancy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or state of being relevant", + "example_sentence_english": "The relevancy of the data to our study is crucial.", + "pos": "noun", + "word_frequency": 28525 + }, + { + "word": "renegotiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to negotiate again, especially to change the terms of an agreement", + "example_sentence_english": "They decided to renegotiate the contract terms.", + "pos": "verb", + "word_frequency": 28526 + }, + { + "word": "rive", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to tear apart or split", + "example_sentence_english": "The strong winds threatened to rive the old flag.", + "pos": "verb", + "word_frequency": 28529 + }, + { + "word": "roan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a reddish-brown color, especially of an animal's coat, with white or gray hairs interspersed", + "example_sentence_english": "The cowboy rode a beautiful roan horse.", + "pos": "[pos_edited]", + "word_frequency": 28530 + }, + { + "word": "sarcoma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a malignant tumor of connective or other nonepithelial tissue", + "example_sentence_english": "The doctor diagnosed the patient with a rare form of sarcoma.", + "pos": "noun", + "word_frequency": 28535 + }, + { + "word": "secretarial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the work of a secretary or to an office", + "example_sentence_english": "She applied for a secretarial position at the law firm.", + "pos": "adjective", + "word_frequency": 28537 + }, + { + "word": "senegalese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Senegal or its people", + "example_sentence_english": "The Senegalese team played well in the football match.", + "pos": "adjective", + "word_frequency": 28538 + }, + { + "word": "snarl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make an aggressive growl with bared teeth", + "example_sentence_english": "The dog began to snarl at the stranger.", + "pos": "verb", + "word_frequency": 28542 + }, + { + "word": "spillway", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a channel for surplus water from a dam or reservoir", + "example_sentence_english": "The dam's spillway was opened to release excess water.", + "pos": "noun", + "word_frequency": 28543 + }, + { + "word": "stigmatize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to describe or regard as worthy of disgrace or great disapproval", + "example_sentence_english": "Mental illness should not be stigmatized in society.", + "pos": "verb", + "word_frequency": 28547 + }, + { + "word": "stormwater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surface water in abnormal quantity resulting from heavy falls of rain or snow", + "example_sentence_english": "The city is implementing new systems to manage stormwater runoff.", + "pos": "noun", + "word_frequency": 28548 + }, + { + "word": "strapless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having no straps, especially to support a garment", + "example_sentence_english": "She wore a beautiful strapless dress to the party.", + "pos": "adjective", + "word_frequency": 28549 + }, + { + "word": "stupor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of near-unconsciousness or insensibility", + "example_sentence_english": "He awoke from his drunken stupor with a pounding headache.", + "pos": "noun", + "word_frequency": 28550 + }, + { + "word": "systolic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the phase of the heartbeat when the heart muscle contracts and pumps blood from the chambers into the arteries", + "example_sentence_english": "The doctor measured his systolic blood pressure.", + "pos": "adjective", + "word_frequency": 28556 + }, + { + "word": "tanzanian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Tanzania or its people", + "example_sentence_english": "She enjoyed listening to traditional Tanzanian music.", + "pos": "adjective", + "word_frequency": 28558 + }, + { + "word": "tarantula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, hairy spider, typically tropical, that can bite but is not usually dangerous to humans", + "example_sentence_english": "He kept a pet tarantula in a glass enclosure.", + "pos": "noun", + "word_frequency": 28559 + }, + { + "word": "tern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a seabird", + "example_sentence_english": "A tern swooped down to catch a fish.", + "pos": "noun", + "word_frequency": 28560 + }, + { + "word": "tightrope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tightly stretched rope or wire on which acrobats perform", + "example_sentence_english": "The acrobat walked across the tightrope with incredible balance.", + "pos": "noun", + "word_frequency": 28563 + }, + { + "word": "tink", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a light, clear ringing sound", + "example_sentence_english": "The small bell began to tink softly.", + "pos": "verb", + "word_frequency": 28564 + }, + { + "word": "toasty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortably warm", + "example_sentence_english": "The fire made the room feel wonderfully toasty.", + "pos": "adjective", + "word_frequency": 28565 + }, + { + "word": "trailblazer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is the first to do something or go somewhere", + "example_sentence_english": "Marie Curie was a trailblazer in the field of science.", + "pos": "noun", + "word_frequency": 28567 + }, + { + "word": "training", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the action of teaching a person or animal a particular skill or type of behavior", + "example_sentence_english": "She is undergoing intensive training for the marathon.", + "pos": "noun", + "word_frequency": 28568 + }, + { + "word": "translocation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the act or process of moving something from one place to another", + "example_sentence_english": "The translocation of the endangered species was carefully planned.", + "pos": "noun", + "word_frequency": 28569 + }, + { + "word": "trepidation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of fear or agitation about something that may happen", + "example_sentence_english": "He felt a sense of trepidation before his job interview.", + "pos": "noun", + "word_frequency": 28570 + }, + { + "word": "typify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be characteristic or a representative example of", + "example_sentence_english": "His actions typify the spirit of generosity.", + "pos": "verb", + "word_frequency": 28573 + }, + { + "word": "unanticipated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not expected or predicted", + "example_sentence_english": "The storm caused unanticipated delays.", + "pos": "adjective", + "word_frequency": 28574 + }, + { + "word": "unblock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove an obstruction from", + "example_sentence_english": "We need to unblock the drain.", + "pos": "verb", + "word_frequency": 28575 + }, + { + "word": "unionism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the principles or policy of forming or joining a trade union", + "example_sentence_english": "Unionism has played a significant role in workers' rights.", + "pos": "noun", + "word_frequency": 28576 + }, + { + "word": "unsavory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disagreeable to taste, smell, or look at; morally objectionable", + "example_sentence_english": "He was involved in some unsavory business dealings.", + "pos": "adjective", + "word_frequency": 28577 + }, + { + "word": "unselfish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "putting others' needs before one's own", + "example_sentence_english": "Her unselfish act of kindness touched everyone.", + "pos": "adjective", + "word_frequency": 28578 + }, + { + "word": "unsound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not safe or robust; not based on sound reasoning", + "example_sentence_english": "The bridge was deemed unsound and closed to traffic.", + "pos": "adjective", + "word_frequency": 28579 + }, + { + "word": "unverified", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not confirmed or proved to be true", + "example_sentence_english": "The report contained unverified claims.", + "pos": "adjective", + "word_frequency": 28580 + }, + { + "word": "unwashed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not having been washed", + "example_sentence_english": "Please put the unwashed clothes in the laundry basket.", + "pos": "adjective", + "word_frequency": 28581 + }, + { + "word": "urination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of urinating", + "example_sentence_english": "Frequent urination can be a symptom of certain conditions.", + "pos": "noun", + "word_frequency": 28582 + }, + { + "word": "utterance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a spoken word, statement, or vocal sound", + "example_sentence_english": "Every utterance from the speaker was carefully considered.", + "pos": "noun", + "word_frequency": 28583 + }, + { + "word": "valedictorian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the student who has the highest academic rank in a graduating class", + "example_sentence_english": "The valedictorian delivered an inspiring speech at graduation.", + "pos": "noun", + "word_frequency": 28584 + }, + { + "word": "verso", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the left-hand page of an open book, or the back of a single sheet", + "example_sentence_english": "The copyright information is usually found on the verso of the title page.", + "pos": "[pos_edited]", + "word_frequency": 28585 + }, + { + "word": "vibrational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characterized by vibration", + "example_sentence_english": "The machine produced a strong vibrational hum.", + "pos": "adjective", + "word_frequency": 28586 + }, + { + "word": "vicarious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "experienced in the imagination through the feelings or actions of another person", + "example_sentence_english": "She felt a vicarious thrill watching the extreme sports.", + "pos": "adverb", + "word_frequency": 28587 + }, + { + "word": "volumetric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the measurement of volume", + "example_sentence_english": "The experiment required precise volumetric measurements.", + "pos": "adjective", + "word_frequency": 28591 + }, + { + "word": "vroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the sound of an engine accelerating rapidly", + "example_sentence_english": "The car went vroom as it sped away.", + "pos": "[pos_edited]", + "word_frequency": 28593 + }, + { + "word": "wimp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a weak or cowardly person", + "example_sentence_english": "Don't be such a wimp; just try it!", + "pos": "noun", + "word_frequency": 28601 + }, + { + "word": "workhorse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or machine that performs consistently well, especially over a long period", + "example_sentence_english": "That old printer is a real workhorse; it never breaks down.", + "pos": "noun", + "word_frequency": 28603 + }, + { + "word": "absorber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or substance that absorbs something", + "example_sentence_english": "The shock absorber on the car needs replacing.", + "pos": "noun", + "word_frequency": 28611 + }, + { + "word": "alabaster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a white, translucent form of gypsum, often carved", + "example_sentence_english": "The statue was carved from pure alabaster.", + "pos": "noun", + "word_frequency": 28615 + }, + { + "word": "allegro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a brisk or rapid tempo in music", + "example_sentence_english": "The piece begins with an allegro movement.", + "pos": "noun", + "word_frequency": 28616 + }, + { + "word": "anaesthesia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of controlled, temporary loss of sensation or awareness", + "example_sentence_english": "The patient was given general anaesthesia before the surgery.", + "pos": "noun", + "word_frequency": 28619 + }, + { + "word": "arrhythmia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an irregular heartbeat", + "example_sentence_english": "He was diagnosed with a mild heart arrhythmia.", + "pos": "noun", + "word_frequency": 28625 + }, + { + "word": "bandaged", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with a bandage", + "example_sentence_english": "His arm was heavily bandaged after the accident.", + "pos": "adjective", + "word_frequency": 28630 + }, + { + "word": "barium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soft, silvery-white metallic element", + "example_sentence_english": "Barium is used in some medical imaging procedures.", + "pos": "noun", + "word_frequency": 28632 + }, + { + "word": "bauxite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an aluminum ore", + "example_sentence_english": "Bauxite is the main source of aluminum.", + "pos": "noun", + "word_frequency": 28633 + }, + { + "word": "befall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of something bad) happen to (someone)", + "example_sentence_english": "A great misfortune befell the family.", + "pos": "v", + "word_frequency": 28634 + }, + { + "word": "blindside", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hit or attack (someone) from the blind side; to surprise (someone) negatively", + "example_sentence_english": "The news completely blindsided him.", + "pos": "v", + "word_frequency": 28638 + }, + { + "word": "blowback", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the unintended and unwelcome consequences of a policy or action", + "example_sentence_english": "The government's new policy caused significant public blowback.", + "pos": "n", + "word_frequency": 28639 + }, + { + "word": "boathouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A shed for boats.", + "example_sentence_english": "They kept their small rowboat in the boathouse by the lake.", + "pos": "n", + "word_frequency": 28640 + }, + { + "word": "brickwork", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bricks as a material or structure.", + "example_sentence_english": "The old church had beautiful, intricate brickwork.", + "pos": "n", + "word_frequency": 28642 + }, + { + "word": "calumet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A ceremonial pipe.", + "example_sentence_english": "The chief offered the calumet as a sign of peace.", + "pos": "n", + "word_frequency": 28646 + }, + { + "word": "cardamom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Aromatic spice.", + "example_sentence_english": "She added a pinch of ground cardamom to the coffee.", + "pos": "n", + "word_frequency": 28648 + }, + { + "word": "carrion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Decaying flesh.", + "example_sentence_english": "Vultures feed on carrion left by predators.", + "pos": "n", + "word_frequency": 28650 + }, + { + "word": "cellist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who plays the cello.", + "example_sentence_english": "The cellist played a beautiful solo during the concert.", + "pos": "n", + "word_frequency": 28651 + }, + { + "word": "chard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A leafy green vegetable.", + "example_sentence_english": "We harvested fresh chard from the garden for dinner.", + "pos": "n", + "word_frequency": 28653 + }, + { + "word": "charmer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who charms others.", + "example_sentence_english": "He was known as a real charmer, always making people laugh.", + "pos": "n", + "word_frequency": 28654 + }, + { + "word": "clickbait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sensationalized online content.", + "example_sentence_english": "Don't fall for that clickbait headline; it's probably misleading.", + "pos": "n", + "word_frequency": 28659 + }, + { + "word": "closing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The end or final part.", + "example_sentence_english": "The closing of the store left many people without jobs.", + "pos": "n", + "word_frequency": 28660 + }, + { + "word": "cobweb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A spider's web, especially an old, dusty one.", + "example_sentence_english": "There were cobwebs in the corners of the old attic.", + "pos": "n", + "word_frequency": 28662 + }, + { + "word": "cogent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Clear, logical, and convincing.", + "example_sentence_english": "She presented a cogent argument that convinced everyone.", + "pos": "adj", + "word_frequency": 28663 + }, + { + "word": "comprehensible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Able to be understood.", + "example_sentence_english": "The instructions were clear and comprehensible.", + "pos": "adj", + "word_frequency": 28664 + }, + { + "word": "condescension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An attitude of superiority.", + "example_sentence_english": "His tone was full of condescension, making her feel small.", + "pos": "n", + "word_frequency": 28665 + }, + { + "word": "corkscrew", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A tool for pulling corks from bottles.", + "example_sentence_english": "I need a corkscrew to open this bottle of wine.", + "pos": "n", + "word_frequency": 28666 + }, + { + "word": "creamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small pitcher for cream, or a dairy product for coffee.", + "example_sentence_english": "Would you like some creamer with your coffee?", + "pos": "n", + "word_frequency": 28668 + }, + { + "word": "curveball", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An unexpected problem or difficulty.", + "example_sentence_english": "The sudden change in plans threw us a real curveball.", + "pos": "n", + "word_frequency": 28670 + }, + { + "word": "cyan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A greenish-blue color.", + "example_sentence_english": "The printer was running low on cyan ink.", + "pos": "n", + "word_frequency": 28671 + }, + { + "word": "dictation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of speaking words to be written down.", + "example_sentence_english": "The secretary took dictation from her boss.", + "pos": "n", + "word_frequency": 28678 + }, + { + "word": "diction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The choice and use of words and phrases.", + "example_sentence_english": "The poet's diction was precise and evocative.", + "pos": "n", + "word_frequency": 28679 + }, + { + "word": "disbursement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Payment or expenditure.", + "example_sentence_english": "The company authorized the disbursement of funds.", + "pos": "n", + "word_frequency": 28681 + }, + { + "word": "dishonour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Disgrace or shame.", + "example_sentence_english": "He brought dishonour upon his family.", + "pos": "n", + "word_frequency": 28682 + }, + { + "word": "dissociative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to dissociation.", + "example_sentence_english": "She was diagnosed with a dissociative disorder.", + "pos": "adj", + "word_frequency": 28683 + }, + { + "word": "dua", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A prayer of supplication in Islam.", + "example_sentence_english": "Muslims often make dua after their daily prayers.", + "pos": "n", + "word_frequency": 28687 + }, + { + "word": "earpiece", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A part of a device that fits into the ear.", + "example_sentence_english": "The secret agent spoke into his earpiece.", + "pos": "n", + "word_frequency": 28689 + }, + { + "word": "elegy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A mournful poem, especially for the dead.", + "example_sentence_english": "The poet wrote a beautiful elegy for his lost friend.", + "pos": "n", + "word_frequency": 28693 + }, + { + "word": "entomologist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who studies insects.", + "example_sentence_english": "The entomologist identified the rare butterfly species.", + "pos": "n", + "word_frequency": 28697 + }, + { + "word": "epidermis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The outer layer of skin.", + "example_sentence_english": "The epidermis protects the body from external damage.", + "pos": "n", + "word_frequency": 28699 + }, + { + "word": "epinephrine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A hormone and neurotransmitter (adrenaline).", + "example_sentence_english": "Epinephrine is used to treat severe allergic reactions.", + "pos": "n", + "word_frequency": 28700 + }, + { + "word": "evacuee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person evacuated from danger.", + "example_sentence_english": "The shelter provided food and comfort for the evacuees.", + "pos": "n", + "word_frequency": 28702 + }, + { + "word": "faeces", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Waste matter discharged from the bowels.", + "example_sentence_english": "The laboratory analyzed the faeces sample.", + "pos": "n", + "word_frequency": 28704 + }, + { + "word": "fiver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A five-pound note or five-dollar bill.", + "example_sentence_english": "Can you lend me a fiver until tomorrow?", + "pos": "n", + "word_frequency": 28705 + }, + { + "word": "flabby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Soft, loose, and lacking firmness.", + "example_sentence_english": "After weeks of no exercise, his muscles felt flabby.", + "pos": "adj", + "word_frequency": 28706 + }, + { + "word": "floodgate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A gate controlling water flow.", + "example_sentence_english": "Opening the floodgates released a torrent of water.", + "pos": "n", + "word_frequency": 28707 + }, + { + "word": "floorboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A plank of wood forming part of a floor.", + "example_sentence_english": "The old floorboards creaked under his weight.", + "pos": "n", + "word_frequency": 28708 + }, + { + "word": "fornication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sexual intercourse between unmarried people.", + "example_sentence_english": "Some religions consider fornication a sin.", + "pos": "n", + "word_frequency": 28710 + }, + { + "word": "frailty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The condition of being weak or delicate.", + "example_sentence_english": "Despite her physical frailty, she had a strong spirit.", + "pos": "n", + "word_frequency": 28712 + }, + { + "word": "futsal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A form of indoor football.", + "example_sentence_english": "They played a game of futsal at the community center.", + "pos": "n", + "word_frequency": 28716 + }, + { + "word": "gaggle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A flock of geese; a disorderly group of people.", + "example_sentence_english": "A gaggle of tourists followed the guide.", + "pos": "n", + "word_frequency": 28717 + }, + { + "word": "gazebo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small, open building in a garden.", + "example_sentence_english": "They enjoyed their picnic in the garden gazebo.", + "pos": "n", + "word_frequency": 28718 + }, + { + "word": "girder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large iron or steel beam or compound structure used for building bridges and the framework of large buildings", + "example_sentence_english": "The bridge was supported by massive steel girders.", + "pos": "n", + "word_frequency": 28721 + }, + { + "word": "gonorrhea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sexually transmitted bacterial infection", + "example_sentence_english": "Gonorrhea is a treatable sexually transmitted infection.", + "pos": "n", + "word_frequency": 28725 + }, + { + "word": "got", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "received; obtained; became", + "example_sentence_english": "I got a new phone yesterday.", + "pos": "v", + "word_frequency": 28727 + }, + { + "word": "gouge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a groove, hole, or indentation with a sharp object", + "example_sentence_english": "He accidentally gouged the wooden table with his knife.", + "pos": "v", + "word_frequency": 28728 + }, + { + "word": "gregarious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fond of company; sociable", + "example_sentence_english": "She is a very gregarious person who loves parties.", + "pos": "adj", + "word_frequency": 28731 + }, + { + "word": "halibut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large flatfish, used for food", + "example_sentence_english": "We had grilled halibut for dinner last night.", + "pos": "n", + "word_frequency": 28736 + }, + { + "word": "herder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who tends a herd of animals", + "example_sentence_english": "The sheep herder used his dog to gather the flock.", + "pos": "n", + "word_frequency": 28742 + }, + { + "word": "histone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "any of a group of basic proteins found in chromatin", + "example_sentence_english": "Histones play a crucial role in DNA packaging.", + "pos": "n", + "word_frequency": 28746 + }, + { + "word": "holotype", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a single type specimen upon which the description and name of a new species is based", + "example_sentence_english": "The holotype of the new insect species is preserved in the museum.", + "pos": "n", + "word_frequency": 28750 + }, + { + "word": "hospitalise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to admit (someone) to a hospital for treatment", + "example_sentence_english": "He had to be hospitalised after the accident.", + "pos": "v", + "word_frequency": 28751 + }, + { + "word": "hydrant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pipe with a nozzle and valve, usually in the street, for drawing water from a main, especially for fighting fires", + "example_sentence_english": "The firefighters connected their hose to the nearest fire hydrant.", + "pos": "n", + "word_frequency": 28752 + }, + { + "word": "immortalize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make immortal; to preserve in memory or fame forever", + "example_sentence_english": "The artist hoped to immortalize the beauty of the landscape in his painting.", + "pos": "v", + "word_frequency": 28754 + }, + { + "word": "immunodeficiency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "failure of the immune system to protect the body from infection", + "example_sentence_english": "Patients with immunodeficiency are more susceptible to infections.", + "pos": "n", + "word_frequency": 28755 + }, + { + "word": "inlay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embed (something) in a surface or object", + "example_sentence_english": "The craftsman will inlay mother-of-pearl into the wooden box.", + "pos": "v", + "word_frequency": 28757 + }, + { + "word": "jaundice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medical condition with yellowing of the skin or whites of the eyes", + "example_sentence_english": "Newborn babies sometimes develop mild jaundice.", + "pos": "n", + "word_frequency": 28758 + }, + { + "word": "jeon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Korean pancake", + "example_sentence_english": "We ordered a variety of jeon, including kimchi jeon and seafood jeon.", + "pos": "n", + "word_frequency": 28760 + }, + { + "word": "kibbutz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a communal settlement in Israel", + "example_sentence_english": "Life on a kibbutz involves shared responsibilities and resources.", + "pos": "n", + "word_frequency": 28764 + }, + { + "word": "larynx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voice box", + "example_sentence_english": "The vocal cords are located in the larynx.", + "pos": "n", + "word_frequency": 28770 + }, + { + "word": "lifter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or device that lifts", + "example_sentence_english": "The weightlifter was a strong lifter, easily handling heavy weights.", + "pos": "n", + "word_frequency": 28775 + }, + { + "word": "lightbulb", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an electric light", + "example_sentence_english": "The lightbulb in the lamp needs to be replaced.", + "pos": "n", + "word_frequency": 28776 + }, + { + "word": "lithography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a printing process", + "example_sentence_english": "The artist used lithography to create the intricate print.", + "pos": "n", + "word_frequency": 28777 + }, + { + "word": "loathsome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causing hatred or disgust", + "example_sentence_english": "His loathsome behavior made everyone uncomfortable.", + "pos": "adj", + "word_frequency": 28778 + }, + { + "word": "lode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rich vein of ore; a rich supply", + "example_sentence_english": "The miners discovered a rich lode of gold in the mountain.", + "pos": "n", + "word_frequency": 28779 + }, + { + "word": "logger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who cuts down trees for timber", + "example_sentence_english": "The logger carefully felled the tall pine tree.", + "pos": "n", + "word_frequency": 28780 + }, + { + "word": "maharaja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an Indian prince or king", + "example_sentence_english": "The maharaja lived in a magnificent palace.", + "pos": "n", + "word_frequency": 28781 + }, + { + "word": "matriarch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a female head of a family or tribe", + "example_sentence_english": "The matriarch of the family made all the important decisions.", + "pos": "n", + "word_frequency": 28785 + }, + { + "word": "mauve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pale purple color", + "example_sentence_english": "She painted her room a soft mauve shade.", + "pos": "adj", + "word_frequency": 28786 + }, + { + "word": "microfilm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a film bearing a miniature photographic copy of a document", + "example_sentence_english": "Old newspapers are often stored on microfilm in libraries.", + "pos": "n", + "word_frequency": 28794 + }, + { + "word": "modicum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small quantity of a particular thing", + "example_sentence_english": "He only showed a modicum of interest in the proposal.", + "pos": "n", + "word_frequency": 28795 + }, + { + "word": "mouthwash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a liquid used to rinse the mouth", + "example_sentence_english": "She used mouthwash after brushing her teeth.", + "pos": "n", + "word_frequency": 28800 + }, + { + "word": "mujahideen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guerrilla fighters in Islamic countries", + "example_sentence_english": "The mujahideen fought against the invading forces.", + "pos": "n", + "word_frequency": 28805 + }, + { + "word": "nationalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of bringing a private industry or company under state control", + "example_sentence_english": "The government announced the nationalization of the railway system.", + "pos": "n", + "word_frequency": 28807 + }, + { + "word": "nauseate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone feel sick or disgusted", + "example_sentence_english": "The smell of the rotten food began to nauseate him.", + "pos": "v", + "word_frequency": 28808 + }, + { + "word": "omniscient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "knowing everything", + "example_sentence_english": "The narrator of the story seemed omniscient, knowing every character's thoughts.", + "pos": "adj", + "word_frequency": 28817 + }, + { + "word": "origination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act or process of coming into being or of beginning something", + "example_sentence_english": "The origination of the idea can be traced back to ancient philosophy.", + "pos": "n", + "word_frequency": 28822 + }, + { + "word": "overpopulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the condition of being populated with excessively large numbers", + "example_sentence_english": "Many experts are concerned about the issue of global overpopulation.", + "pos": "n", + "word_frequency": 28824 + }, + { + "word": "pedicure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cosmetic treatment of the feet and toenails", + "example_sentence_english": "She treated herself to a relaxing pedicure at the spa.", + "pos": "n", + "word_frequency": 28829 + }, + { + "word": "philistine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is hostile or indifferent to culture and the arts, or who has no understanding of them", + "example_sentence_english": "He was dismissed as a philistine for his lack of appreciation for classical music.", + "pos": "n", + "word_frequency": 28830 + }, + { + "word": "placard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a poster or sign for public display, or a notice or warning", + "example_sentence_english": "The protesters carried placards with their demands written on them.", + "pos": "n", + "word_frequency": 28831 + }, + { + "word": "polyp", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small growth, typically benign and with a stalk, protruding from a mucous membrane", + "example_sentence_english": "The doctor found a small polyp during the colonoscopy.", + "pos": "n", + "word_frequency": 28833 + }, + { + "word": "postgame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the period or activities immediately following a sports game", + "example_sentence_english": "The coach held a brief postgame press conference.", + "pos": "n", + "word_frequency": 28834 + }, + { + "word": "postmodernism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a late-20th-century style and concept in the arts, architecture, and criticism", + "example_sentence_english": "The lecture explored the key tenets of postmodernism in literature.", + "pos": "n", + "word_frequency": 28835 + }, + { + "word": "preconception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a preconceived idea or prejudice", + "example_sentence_english": "It's important to approach new ideas without any preconceptions.", + "pos": "n", + "word_frequency": 28836 + }, + { + "word": "primeval", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or resembling the earliest ages in the history of the world", + "example_sentence_english": "The explorers discovered a primeval forest untouched by human activity.", + "pos": "adj", + "word_frequency": 28837 + }, + { + "word": "procrastinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delay or postpone action; put off doing something", + "example_sentence_english": "He tends to procrastinate when faced with difficult tasks.", + "pos": "v", + "word_frequency": 28838 + }, + { + "word": "promiscuity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice of having casual sex frequently with different partners", + "example_sentence_english": "The novel explored themes of freedom and promiscuity in the 1920s.", + "pos": "n", + "word_frequency": 28839 + }, + { + "word": "purplish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "somewhat purple", + "example_sentence_english": "The sky had a purplish hue at sunset.", + "pos": "adj", + "word_frequency": 28840 + }, + { + "word": "rabbinic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to rabbis or rabbinism", + "example_sentence_english": "He studied ancient rabbinic texts.", + "pos": "adj", + "word_frequency": 28841 + }, + { + "word": "rationalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of making something seem rational or justifiable", + "example_sentence_english": "His excuse was just a rationalization for his poor behavior.", + "pos": "n", + "word_frequency": 28844 + }, + { + "word": "ravel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to untangle or fray", + "example_sentence_english": "The old sweater began to ravel at the seams.", + "pos": "v", + "word_frequency": 28845 + }, + { + "word": "reachable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be reached", + "example_sentence_english": "Make sure the emergency exit is easily reachable.", + "pos": "adj", + "word_frequency": 28846 + }, + { + "word": "reestablish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to establish again", + "example_sentence_english": "They hope to reestablish diplomatic relations.", + "pos": "v", + "word_frequency": 28849 + }, + { + "word": "reintroduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of introducing again", + "example_sentence_english": "The reintroduction of wolves to the park was controversial.", + "pos": "n", + "word_frequency": 28850 + }, + { + "word": "rekindle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to light or ignite again; to revive", + "example_sentence_english": "They tried to rekindle their old friendship.", + "pos": "v", + "word_frequency": 28851 + }, + { + "word": "relent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to give in; to abandon a harsh intention", + "example_sentence_english": "After much persuasion, he finally began to relent.", + "pos": "v", + "word_frequency": 28852 + }, + { + "word": "reposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to place in a different position", + "example_sentence_english": "We need to reposition the furniture in the living room.", + "pos": "v", + "word_frequency": 28853 + }, + { + "word": "revulsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sense of disgust and loathing", + "example_sentence_english": "She felt a deep sense of revulsion at the sight.", + "pos": "n", + "word_frequency": 28854 + }, + { + "word": "rock'n'roll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a genre of popular music", + "example_sentence_english": "Elvis Presley was known as the King of Rock'n'Roll.", + "pos": "n", + "word_frequency": 28858 + }, + { + "word": "rubicon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a point of no return", + "example_sentence_english": "By signing the contract, he crossed the Rubicon.", + "pos": "n", + "word_frequency": 28862 + }, + { + "word": "sanctify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make holy or sacred", + "example_sentence_english": "The priest will sanctify the new altar.", + "pos": "v", + "word_frequency": 28863 + }, + { + "word": "sandalwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fragrant wood", + "example_sentence_english": "The incense had a strong sandalwood scent.", + "pos": "n", + "word_frequency": 28864 + }, + { + "word": "savant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person of profound learning", + "example_sentence_english": "He was a musical savant, able to play complex pieces by ear.", + "pos": "n", + "word_frequency": 28866 + }, + { + "word": "scape", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a view or scene", + "example_sentence_english": "The artist captured the urban scape beautifully.", + "pos": "n", + "word_frequency": 28867 + }, + { + "word": "scrawny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thin and bony", + "example_sentence_english": "The stray cat was scrawny and hungry.", + "pos": "adj", + "word_frequency": 28869 + }, + { + "word": "seabird", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bird that lives near the sea", + "example_sentence_english": "We watched the seabirds soaring over the cliffs.", + "pos": "n", + "word_frequency": 28870 + }, + { + "word": "sequin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, shiny disc sewn onto clothing", + "example_sentence_english": "Her dress was covered in sparkling sequins.", + "pos": "n", + "word_frequency": 28871 + }, + { + "word": "slop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquid waste or messy food", + "example_sentence_english": "The pigs were fed kitchen slop.", + "pos": "n", + "word_frequency": 28875 + }, + { + "word": "solvency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to pay one's debts", + "example_sentence_english": "The company's solvency was in question after the losses.", + "pos": "n", + "word_frequency": 28877 + }, + { + "word": "spyware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "software that enables a user to obtain information about another's computer activities by transmitting data covertly from their hard drive.", + "example_sentence_english": "Always install antivirus software to protect against spyware.", + "pos": "n", + "word_frequency": 28879 + }, + { + "word": "stamen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the male reproductive organ of a flower", + "example_sentence_english": "The stamen produces pollen in a flower.", + "pos": "n", + "word_frequency": 28881 + }, + { + "word": "stepmom", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a stepmother", + "example_sentence_english": "My stepmom is very kind to me.", + "pos": "n", + "word_frequency": 28882 + }, + { + "word": "stocky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broad and sturdily built", + "example_sentence_english": "He was a stocky man with strong shoulders.", + "pos": "adj", + "word_frequency": 28886 + }, + { + "word": "subsidence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the gradual caving in or sinking of an area of land", + "example_sentence_english": "The house was damaged by ground subsidence.", + "pos": "n", + "word_frequency": 28889 + }, + { + "word": "sullen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad-tempered and sulky; gloomy", + "example_sentence_english": "He was sullen and quiet after the argument.", + "pos": "adj", + "word_frequency": 28890 + }, + { + "word": "sump", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pit or hollow in which liquid collects", + "example_sentence_english": "The oil collects in the engine's sump.", + "pos": "n", + "word_frequency": 28891 + }, + { + "word": "superconduct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to conduct electricity with zero resistance", + "example_sentence_english": "Certain materials can superconduct at very low temperatures.", + "pos": "v", + "word_frequency": 28892 + }, + { + "word": "symbiosis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a close, long-term interaction between two different biological organisms", + "example_sentence_english": "The relationship between the clownfish and the sea anemone is a classic example of symbiosis.", + "pos": "n", + "word_frequency": 28893 + }, + { + "word": "sympathise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel or express sympathy", + "example_sentence_english": "I sympathise with your situation.", + "pos": "v", + "word_frequency": 28894 + }, + { + "word": "taffy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a chewy candy", + "example_sentence_english": "We bought some saltwater taffy at the beach.", + "pos": "n", + "word_frequency": 28895 + }, + { + "word": "tantalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torment or tease (someone) with the sight or promise of something unobtainable", + "example_sentence_english": "The smell of fresh bread tantalized him.", + "pos": "v", + "word_frequency": 28896 + }, + { + "word": "taster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who tastes food or drink; a small sample", + "example_sentence_english": "The wine taster evaluated the new vintage.", + "pos": "n", + "word_frequency": 28900 + }, + { + "word": "teacup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cup from which tea is drunk", + "example_sentence_english": "She poured the tea into a delicate teacup.", + "pos": "n", + "word_frequency": 28901 + }, + { + "word": "tepid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lukewarm; showing little enthusiasm", + "example_sentence_english": "He took a tepid bath to relax.", + "pos": "adj", + "word_frequency": 28903 + }, + { + "word": "testis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a male reproductive gland", + "example_sentence_english": "The testis produces sperm and hormones.", + "pos": "n", + "word_frequency": 28904 + }, + { + "word": "tripe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the first or second stomach of a ruminant, used as food; nonsense", + "example_sentence_english": "Some people enjoy eating tripe, but I find it unappetizing.", + "pos": "n", + "word_frequency": 28913 + }, + { + "word": "tweeter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small loudspeaker designed to reproduce high frequencies", + "example_sentence_english": "The sound system has a powerful woofer and a clear tweeter.", + "pos": "n", + "word_frequency": 28915 + }, + { + "word": "unabated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without any reduction in intensity or force", + "example_sentence_english": "The storm continued unabated for hours.", + "pos": "adj", + "word_frequency": 28916 + }, + { + "word": "unafraid", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling no fear", + "example_sentence_english": "She was unafraid to speak her mind.", + "pos": "adj", + "word_frequency": 28917 + }, + { + "word": "unearned", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not deserved or gained by effort", + "example_sentence_english": "He felt guilty about his unearned success.", + "pos": "adj", + "word_frequency": 28918 + }, + { + "word": "unenforceable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not able to be enforced or imposed", + "example_sentence_english": "The contract clause was deemed unenforceable by the court.", + "pos": "adj", + "word_frequency": 28919 + }, + { + "word": "uninhabitable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not suitable for living in.", + "example_sentence_english": "The planet was found to be uninhabitable due to extreme temperatures.", + "pos": "adj", + "word_frequency": 28920 + }, + { + "word": "unread", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not yet read.", + "example_sentence_english": "I have a pile of unread books on my nightstand.", + "pos": "adj", + "word_frequency": 28921 + }, + { + "word": "unsaturated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not saturated; (chemistry) having double or triple bonds.", + "example_sentence_english": "Unsaturated fats are generally considered healthier.", + "pos": "adj", + "word_frequency": 28922 + }, + { + "word": "unsurpassed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Better than all others; unrivaled.", + "example_sentence_english": "Her skill in painting is unsurpassed.", + "pos": "adj", + "word_frequency": 28923 + }, + { + "word": "venerate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Regard with great respect; revere.", + "example_sentence_english": "Many cultures venerate their ancestors.", + "pos": "v", + "word_frequency": 28927 + }, + { + "word": "waxy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Resembling wax in texture or appearance.", + "example_sentence_english": "The plant has waxy leaves that help it retain moisture.", + "pos": "adj", + "word_frequency": 28932 + }, + { + "word": "whimper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Make a series of low, feeble sounds expressive of fear, pain, or unhappiness.", + "example_sentence_english": "The dog began to whimper during the thunderstorm.", + "pos": "v", + "word_frequency": 28933 + }, + { + "word": "wile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cunning tricks used to deceive or manipulate.", + "example_sentence_english": "He used his wiles to persuade her.", + "pos": "n", + "word_frequency": 28935 + }, + { + "word": "winkle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A small edible sea snail.", + "example_sentence_english": "We collected winkles from the rocks at low tide.", + "pos": "n", + "word_frequency": 28937 + }, + { + "word": "wistful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having or showing a feeling of vague or regretful longing.", + "example_sentence_english": "She gave a wistful smile as she remembered her childhood.", + "pos": "adj", + "word_frequency": 28938 + }, + { + "word": "workaround", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A method for achieving something or solving a problem without using the usual or intended method.", + "example_sentence_english": "We found a temporary workaround for the software bug.", + "pos": "n", + "word_frequency": 28940 + }, + { + "word": "yeoman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A man holding and cultivating a small landed estate; a freeholder.", + "example_sentence_english": "The yeoman farmer worked his land diligently.", + "pos": "n", + "word_frequency": 28944 + }, + { + "word": "yule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Christmas or the Christmas season.", + "example_sentence_english": "We gathered around the fire during the Yule season.", + "pos": "n", + "word_frequency": 28946 + }, + { + "word": "accumulator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A device that stores energy; a battery.", + "example_sentence_english": "The car's accumulator needed to be recharged.", + "pos": "n", + "word_frequency": 28953 + }, + { + "word": "androgynous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having both male and female characteristics", + "example_sentence_english": "The artist created an androgynous figure that challenged traditional gender norms.", + "pos": "adj", + "word_frequency": 28960 + }, + { + "word": "animus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hostility or ill feeling", + "example_sentence_english": "He felt a strong animus towards his former business partner.", + "pos": "n", + "word_frequency": 28961 + }, + { + "word": "anion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a negatively charged ion", + "example_sentence_english": "An anion is attracted to a positively charged electrode.", + "pos": "n", + "word_frequency": 28962 + }, + { + "word": "antipathy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a deep-seated feeling of dislike; aversion", + "example_sentence_english": "Her antipathy towards modern art was well-known.", + "pos": "n", + "word_frequency": 28963 + }, + { + "word": "archdeacon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a senior Christian cleric", + "example_sentence_english": "The archdeacon presided over the church council meeting.", + "pos": "noun", + "word_frequency": 28966 + }, + { + "word": "arginine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an amino acid", + "example_sentence_english": "Arginine is an essential amino acid found in many foods.", + "pos": "noun", + "word_frequency": 28967 + }, + { + "word": "armadillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a burrowing mammal with a bony shell", + "example_sentence_english": "We saw an armadillo digging in the garden last night.", + "pos": "noun", + "word_frequency": 28968 + }, + { + "word": "armband", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a band worn around the arm", + "example_sentence_english": "The captain wore a special armband to identify his role.", + "pos": "noun", + "word_frequency": 28969 + }, + { + "word": "awning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sheet of canvas or other material stretched on a frame and used to keep the sun or rain off a storefront or house", + "example_sentence_english": "We sat under the awning to escape the midday sun.", + "pos": "noun", + "word_frequency": 28973 + }, + { + "word": "awol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absent without leave", + "example_sentence_english": "The soldier went AWOL after his leave was denied.", + "pos": "noun", + "word_frequency": 28974 + }, + { + "word": "bacillus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rod-shaped bacterium", + "example_sentence_english": "The scientist identified a new strain of bacillus in the sample.", + "pos": "noun", + "word_frequency": 28975 + }, + { + "word": "balmy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasantly warm", + "example_sentence_english": "We enjoyed a balmy evening on the beach.", + "pos": "adjective", + "word_frequency": 28976 + }, + { + "word": "bandmate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a member of a musical band", + "example_sentence_english": "He's been playing with his bandmates for over ten years.", + "pos": "noun", + "word_frequency": 28977 + }, + { + "word": "barbeque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a meal or party at which food is cooked outdoors on a grill", + "example_sentence_english": "We're having a barbeque in the backyard this Saturday.", + "pos": "noun", + "word_frequency": 28978 + }, + { + "word": "bento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a single-portion takeout or home-packed meal common in Japanese cuisine", + "example_sentence_english": "She packed a delicious bento box for her lunch.", + "pos": "noun", + "word_frequency": 28980 + }, + { + "word": "binomial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an algebraic expression of two terms", + "example_sentence_english": "In mathematics, (a + b) is a simple binomial.", + "pos": "noun", + "word_frequency": 28982 + }, + { + "word": "blinder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an outstanding performance or achievement (British English)", + "example_sentence_english": "The team played an absolute blinder in the final match.", + "pos": "noun", + "word_frequency": 28984 + }, + { + "word": "bloodhound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, powerful hound of a breed noted for its acute sense of smell", + "example_sentence_english": "A bloodhound was used to track the missing person.", + "pos": "noun", + "word_frequency": 28985 + }, + { + "word": "booger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of dried nasal mucus", + "example_sentence_english": "The child picked a booger from his nose.", + "pos": "noun", + "word_frequency": 28986 + }, + { + "word": "brandish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wave or flourish (something, especially a weapon) as a threat or in anger or excitement", + "example_sentence_english": "He brandished his sword at the enemy.", + "pos": "verb", + "word_frequency": 28988 + }, + { + "word": "bromide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound of bromine with another element or radical; a trite and unoriginal statement", + "example_sentence_english": "His speech was full of old bromides about hard work and success.", + "pos": "noun", + "word_frequency": 28991 + }, + { + "word": "cabana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small hut or shelter, especially one at a beach or swimming pool", + "example_sentence_english": "We rented a cabana by the pool for the day.", + "pos": "noun", + "word_frequency": 28993 + }, + { + "word": "cadaver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a corpse", + "example_sentence_english": "Medical students study human anatomy using a cadaver.", + "pos": "noun", + "word_frequency": 28994 + }, + { + "word": "carnation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of flower, typically with a ruffled appearance", + "example_sentence_english": "She wore a red carnation pinned to her lapel.", + "pos": "noun", + "word_frequency": 28995 + }, + { + "word": "chickpea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a round, yellowish-brown pea, widely grown for food", + "example_sentence_english": "Hummus is made from mashed chickpeas.", + "pos": "noun", + "word_frequency": 28999 + }, + { + "word": "chipset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A set of integrated circuits designed to work together.", + "example_sentence_english": "The new motherboard features an advanced chipset for faster data processing.", + "pos": "noun", + "word_frequency": 29000 + }, + { + "word": "chronicler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who writes accounts of important or historical events.", + "example_sentence_english": "The chronicler meticulously recorded the events of the war.", + "pos": "noun", + "word_frequency": 29003 + }, + { + "word": "chub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A freshwater fish; a plump person.", + "example_sentence_english": "He caught a large chub in the river this morning.", + "pos": "noun", + "word_frequency": 29004 + }, + { + "word": "chuff", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "To make a regular puffing sound, like a steam engine.", + "example_sentence_english": "The old train began to chuff slowly out of the station.", + "pos": "verb", + "word_frequency": 29005 + }, + { + "word": "citric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or derived from citrus fruit.", + "example_sentence_english": "Lemon juice has a strong citric acid taste.", + "pos": "adjective", + "word_frequency": 29006 + }, + { + "word": "cobblestone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small, round stone used to pave streets.", + "example_sentence_english": "The old town square was paved with cobblestones.", + "pos": "noun", + "word_frequency": 29008 + }, + { + "word": "communique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An official announcement or statement, especially to the media.", + "example_sentence_english": "The government issued a communique regarding the peace talks.", + "pos": "noun", + "word_frequency": 29009 + }, + { + "word": "corroboration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Evidence that confirms or supports a statement, theory, or finding.", + "example_sentence_english": "The witness's testimony provided strong corroboration for the prosecution's case.", + "pos": "noun", + "word_frequency": 29010 + }, + { + "word": "croquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A game played on a lawn with mallets, balls, and hoops.", + "example_sentence_english": "They spent the afternoon playing croquet in the garden.", + "pos": "noun", + "word_frequency": 29015 + }, + { + "word": "crosshair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A pair of fine lines crossing at right angles in the focus of an optical instrument.", + "example_sentence_english": "The sniper adjusted the crosshair on his scope.", + "pos": "noun", + "word_frequency": 29016 + }, + { + "word": "crystallize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To form into crystals; to become clear or definite.", + "example_sentence_english": "The sugar began to crystallize at the bottom of the pan.", + "pos": "verb", + "word_frequency": 29017 + }, + { + "word": "cuppa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A cup of tea.", + "example_sentence_english": "Would you like a cuppa before you leave?", + "pos": "noun", + "word_frequency": 29019 + }, + { + "word": "dancefloor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "An area for dancing.", + "example_sentence_english": "The dancefloor was packed with people.", + "pos": "noun", + "word_frequency": 29023 + }, + { + "word": "delectable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Delicious; highly pleasing.", + "example_sentence_english": "The dessert was absolutely delectable.", + "pos": "adjective", + "word_frequency": 29024 + }, + { + "word": "demotion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A reduction in rank or status.", + "example_sentence_english": "He faced a demotion after his poor performance review.", + "pos": "noun", + "word_frequency": 29025 + }, + { + "word": "denizen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An inhabitant or occupant of a particular place.", + "example_sentence_english": "The denizens of the forest included deer and bears.", + "pos": "noun", + "word_frequency": 29026 + }, + { + "word": "derailment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of a train or tram leaving its tracks.", + "example_sentence_english": "The train derailment caused significant delays.", + "pos": "noun", + "word_frequency": 29027 + }, + { + "word": "discoverer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who discovers something.", + "example_sentence_english": "Christopher Columbus is known as the discoverer of America.", + "pos": "noun", + "word_frequency": 29029 + }, + { + "word": "doubter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who has doubts.", + "example_sentence_english": "Even the biggest doubter was convinced by the evidence.", + "pos": "noun", + "word_frequency": 29031 + }, + { + "word": "dragoon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A member of a class of cavalry regiments in several European armies.", + "example_sentence_english": "The king's dragoons were known for their bravery.", + "pos": "noun", + "word_frequency": 29032 + }, + { + "word": "dreadfully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Extremely; very badly or unpleasantly.", + "example_sentence_english": "She was dreadfully sorry for her mistake.", + "pos": "adverb", + "word_frequency": 29033 + }, + { + "word": "elation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Great happiness and exhilaration.", + "example_sentence_english": "She felt a surge of elation when she won the competition.", + "pos": "noun", + "word_frequency": 29038 + }, + { + "word": "elucidate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make clear; explain", + "example_sentence_english": "Please elucidate the main points of your argument.", + "pos": "verb", + "word_frequency": 29040 + }, + { + "word": "engraver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who engraves", + "example_sentence_english": "The engraver carefully carved the intricate design into the metal.", + "pos": "noun", + "word_frequency": 29041 + }, + { + "word": "eon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an indefinitely long period of time", + "example_sentence_english": "It feels like an eon since we last saw each other.", + "pos": "noun", + "word_frequency": 29042 + }, + { + "word": "excavator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large machine used for digging", + "example_sentence_english": "The excavator dug a deep trench for the new pipeline.", + "pos": "noun", + "word_frequency": 29044 + }, + { + "word": "exclusionary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tending to exclude", + "example_sentence_english": "The club was criticized for its exclusionary policies.", + "pos": "adjective", + "word_frequency": 29045 + }, + { + "word": "excommunication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of excluding someone from a religious community", + "example_sentence_english": "The bishop threatened him with excommunication for his heresy.", + "pos": "noun", + "word_frequency": 29046 + }, + { + "word": "fairing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a structure designed to reduce drag", + "example_sentence_english": "The motorcycle's fairing helps improve its aerodynamics.", + "pos": "noun", + "word_frequency": 29048 + }, + { + "word": "fatwa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ruling on a point of Islamic law", + "example_sentence_english": "The cleric issued a fatwa against the controversial book.", + "pos": "noun", + "word_frequency": 29050 + }, + { + "word": "fluorine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a chemical element (F)", + "example_sentence_english": "Fluorine is the most reactive of all chemical elements.", + "pos": "noun", + "word_frequency": 29052 + }, + { + "word": "forehand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a stroke played with the palm of the hand facing forward", + "example_sentence_english": "She hit a powerful forehand winner down the line.", + "pos": "noun", + "word_frequency": 29053 + }, + { + "word": "foursquare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a game played with a ball in a square court", + "example_sentence_english": "The kids were playing foursquare during recess.", + "pos": "noun", + "word_frequency": 29055 + }, + { + "word": "given", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a known or established fact or premise", + "example_sentence_english": "It's a given that hard work leads to success.", + "pos": "noun", + "word_frequency": 29059 + }, + { + "word": "glyph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hieroglyphic character or symbol", + "example_sentence_english": "Ancient Mayan glyphs tell stories of their civilization.", + "pos": "noun", + "word_frequency": 29062 + }, + { + "word": "gob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lump or mass of something", + "example_sentence_english": "He spat a gob of chewing gum onto the pavement.", + "pos": "noun", + "word_frequency": 29063 + }, + { + "word": "grammatically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a grammatically correct way", + "example_sentence_english": "The sentence was grammatically correct, but awkward.", + "pos": "adverb", + "word_frequency": 29068 + }, + { + "word": "gramophone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an early phonograph", + "example_sentence_english": "My grandparents still have an old gramophone in their attic.", + "pos": "noun", + "word_frequency": 29069 + }, + { + "word": "gratefully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with gratitude", + "example_sentence_english": "She gratefully accepted the help offered by her friends.", + "pos": "adverb", + "word_frequency": 29070 + }, + { + "word": "gumbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a traditional Louisiana stew", + "example_sentence_english": "We had a delicious bowl of seafood gumbo for dinner.", + "pos": "noun", + "word_frequency": 29073 + }, + { + "word": "hardman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tough, uncompromising man", + "example_sentence_english": "He was known as a hardman on the football pitch, never backing down from a tackle.", + "pos": "noun", + "word_frequency": 29078 + }, + { + "word": "harrier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of dog or a type of aircraft", + "example_sentence_english": "The Harrier jet is famous for its vertical take-off and landing capabilities.", + "pos": "noun", + "word_frequency": 29079 + }, + { + "word": "hibernate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spend the winter in a dormant state", + "example_sentence_english": "Bears hibernate during the cold winter months.", + "pos": "verb", + "word_frequency": 29085 + }, + { + "word": "homeownership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of owning one's home", + "example_sentence_english": "Homeownership is a significant financial goal for many people.", + "pos": "noun", + "word_frequency": 29090 + }, + { + "word": "homeward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards home", + "example_sentence_english": "After a long journey, they finally turned homeward.", + "pos": "adverb", + "word_frequency": 29091 + }, + { + "word": "implode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse inward violently", + "example_sentence_english": "The old building was scheduled to implode safely.", + "pos": "verb", + "word_frequency": 29097 + }, + { + "word": "inane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silly; senseless", + "example_sentence_english": "He made an inane comment that left everyone confused.", + "pos": "adjective", + "word_frequency": 29098 + }, + { + "word": "industrialisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the development of industries in a country or region", + "example_sentence_english": "The industrialisation of the country led to significant economic growth.", + "pos": "noun", + "word_frequency": 29099 + }, + { + "word": "ineptitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lack of skill or ability", + "example_sentence_english": "His ineptitude at managing the project was evident to everyone.", + "pos": "noun", + "word_frequency": 29100 + }, + { + "word": "inshore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "towards or near the shore", + "example_sentence_english": "The fishing boats stayed inshore due to the rough seas.", + "pos": "adverb", + "word_frequency": 29101 + }, + { + "word": "intelligentsia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "intellectuals or highly educated people", + "example_sentence_english": "The city's intelligentsia gathered for the literary discussion.", + "pos": "noun", + "word_frequency": 29103 + }, + { + "word": "interagency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "between different agencies", + "example_sentence_english": "They formed an interagency task force to address the issue.", + "pos": "adjective", + "word_frequency": 29104 + }, + { + "word": "interconnect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to connect with one another", + "example_sentence_english": "The various systems need to interconnect seamlessly.", + "pos": "verb", + "word_frequency": 29105 + }, + { + "word": "interrelate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to relate or connect with one another", + "example_sentence_english": "The different aspects of the problem interrelate in complex ways.", + "pos": "verb", + "word_frequency": 29106 + }, + { + "word": "irritant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that causes irritation; something that annoys", + "example_sentence_english": "The constant noise was a major irritant.", + "pos": "noun", + "word_frequency": 29107 + }, + { + "word": "jetpack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device worn on the back that propels the wearer through the air", + "example_sentence_english": "The inventor demonstrated a new personal jetpack.", + "pos": "noun", + "word_frequency": 29116 + }, + { + "word": "kickback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An illegal payment made in return for a favor or service.", + "example_sentence_english": "The politician was accused of taking kickbacks from construction companies.", + "pos": "noun", + "word_frequency": 29122 + }, + { + "word": "kisser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who kisses; (informal) the mouth.", + "example_sentence_english": "He gave his grandma a big kisser on the cheek.", + "pos": "noun", + "word_frequency": 29124 + }, + { + "word": "lakeshore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The land along the edge of a lake.", + "example_sentence_english": "We built a small cabin on the lakeshore.", + "pos": "noun", + "word_frequency": 29128 + }, + { + "word": "lawnmower", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A machine used for cutting grass.", + "example_sentence_english": "My dad spent all morning fixing the lawnmower.", + "pos": "noun", + "word_frequency": 29130 + }, + { + "word": "lop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To cut off (a branch, head, or limb) from the main body.", + "example_sentence_english": "The gardener decided to lop off the dead branches from the tree.", + "pos": "verb", + "word_frequency": 29140 + }, + { + "word": "m.c", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Master of Ceremonies; a rapper.", + "example_sentence_english": "The M.C. kept the crowd entertained throughout the concert.", + "pos": "noun", + "word_frequency": 29143 + }, + { + "word": "majorly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To a very great extent; very much (informal).", + "example_sentence_english": "I was majorly disappointed when the concert was cancelled.", + "pos": "adverb", + "word_frequency": 29147 + }, + { + "word": "malian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A native or inhabitant of Mali.", + "example_sentence_english": "The Malian delegation arrived for the international conference.", + "pos": "noun", + "word_frequency": 29148 + }, + { + "word": "marquise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A noblewoman ranking above a countess and below a duchess; a type of gem cut.", + "example_sentence_english": "The marquise wore a stunning diamond necklace.", + "pos": "noun", + "word_frequency": 29153 + }, + { + "word": "meteoric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very rapid; sudden and spectacular", + "example_sentence_english": "Her rise to fame was meteoric.", + "pos": "adjective", + "word_frequency": 29160 + }, + { + "word": "midair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the middle of the air", + "example_sentence_english": "The ball was caught in midair.", + "pos": "noun", + "word_frequency": 29161 + }, + { + "word": "militiaman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a militia", + "example_sentence_english": "The militiaman stood guard at the camp entrance.", + "pos": "noun", + "word_frequency": 29162 + }, + { + "word": "miscommunication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a failure to communicate clearly", + "example_sentence_english": "There was a miscommunication about the meeting time.", + "pos": "noun", + "word_frequency": 29164 + }, + { + "word": "muff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a warm tubular covering for the hands", + "example_sentence_english": "She wore a fur muff to keep her hands warm.", + "pos": "noun", + "word_frequency": 29170 + }, + { + "word": "muffler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a scarf worn around the neck; a device for deadening sound", + "example_sentence_english": "He wrapped a warm muffler around his neck.", + "pos": "noun", + "word_frequency": 29171 + }, + { + "word": "neckline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the edge of a garment around the neck", + "example_sentence_english": "The dress had a low neckline.", + "pos": "noun", + "word_frequency": 29172 + }, + { + "word": "neuroscientist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a scientist who studies the nervous system", + "example_sentence_english": "The neuroscientist explained how the brain processes information.", + "pos": "noun", + "word_frequency": 29173 + }, + { + "word": "nightmarish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling a nightmare; terrifying", + "example_sentence_english": "The traffic jam was a nightmarish experience.", + "pos": "adjective", + "word_frequency": 29176 + }, + { + "word": "northwards", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toward the north", + "example_sentence_english": "The birds flew northwards for the winter.", + "pos": "adverb", + "word_frequency": 29181 + }, + { + "word": "obliquely", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not in a direct way; indirectly", + "example_sentence_english": "He obliquely hinted at the problem without directly addressing it.", + "pos": "adverb", + "word_frequency": 29182 + }, + { + "word": "operationally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in terms of practical operation", + "example_sentence_english": "The new system is operationally sound.", + "pos": "adverb", + "word_frequency": 29183 + }, + { + "word": "ophthalmologist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a doctor who specializes in eye care", + "example_sentence_english": "I need to see an ophthalmologist for my eye condition.", + "pos": "noun", + "word_frequency": 29184 + }, + { + "word": "overzealous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "too enthusiastic or eager", + "example_sentence_english": "His overzealous attempts to help sometimes made things worse.", + "pos": "adjective", + "word_frequency": 29185 + }, + { + "word": "passcode", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a sequence of numbers or characters used to gain access", + "example_sentence_english": "Please enter your passcode to unlock the phone.", + "pos": "noun", + "word_frequency": 29190 + }, + { + "word": "peasantry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peasants collectively", + "example_sentence_english": "The peasantry suffered greatly during the famine.", + "pos": "noun", + "word_frequency": 29192 + }, + { + "word": "photocopy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a photographic copy of a document", + "example_sentence_english": "I need to make a photocopy of this document.", + "pos": "noun", + "word_frequency": 29193 + }, + { + "word": "porosity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being porous", + "example_sentence_english": "The porosity of the soil affects its water retention.", + "pos": "noun", + "word_frequency": 29196 + }, + { + "word": "prejudicial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmful to someone or something; detrimental", + "example_sentence_english": "The judge ruled that the evidence was prejudicial and inadmissible.", + "pos": "adjective", + "word_frequency": 29197 + }, + { + "word": "preponderance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being greater in number, quantity, or importance", + "example_sentence_english": "There is a preponderance of evidence against the defendant.", + "pos": "noun", + "word_frequency": 29198 + }, + { + "word": "probiotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a microorganism that, when consumed, is believed to provide health benefits", + "example_sentence_english": "Yogurt often contains beneficial probiotic bacteria.", + "pos": "noun", + "word_frequency": 29199 + }, + { + "word": "protege", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is guided and supported by an older and more experienced or influential person", + "example_sentence_english": "She was his protégé for many years before starting her own business.", + "pos": "noun", + "word_frequency": 29201 + }, + { + "word": "putrid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decaying or rotting and emitting a fetid smell", + "example_sentence_english": "The putrid smell from the garbage bin filled the air.", + "pos": "adjective", + "word_frequency": 29203 + }, + { + "word": "pylon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tall structure used for carrying electricity cables or marking a course", + "example_sentence_english": "The high-voltage power lines were supported by massive pylons.", + "pos": "noun", + "word_frequency": 29204 + }, + { + "word": "racquet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bat with a long handle and a round or oval frame with an open network of strings or catgut, used especially in tennis or badminton", + "example_sentence_english": "He picked up his tennis racquet and headed to the court.", + "pos": "noun", + "word_frequency": 29205 + }, + { + "word": "reactivate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something active again", + "example_sentence_english": "You need to reactivate your account after a period of inactivity.", + "pos": "verb", + "word_frequency": 29210 + }, + { + "word": "regalia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the emblems or insignia of royalty, an order, or an office", + "example_sentence_english": "The king wore his full regalia for the coronation ceremony.", + "pos": "noun", + "word_frequency": 29212 + }, + { + "word": "repaint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to paint something again", + "example_sentence_english": "We decided to repaint the living room a lighter color.", + "pos": "verb", + "word_frequency": 29213 + }, + { + "word": "reproducible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be reproduced or copied", + "example_sentence_english": "For a scientific experiment to be valid, its results must be reproducible.", + "pos": "adjective", + "word_frequency": 29214 + }, + { + "word": "retrial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a new trial of a lawsuit or criminal prosecution", + "example_sentence_english": "The judge ordered a retrial due to new evidence.", + "pos": "noun", + "word_frequency": 29215 + }, + { + "word": "ritualistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of a ritual", + "example_sentence_english": "The ancient tribe performed a series of ritualistic dances.", + "pos": "adjective", + "word_frequency": 29218 + }, + { + "word": "rollback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a return to a previous state or condition", + "example_sentence_english": "The software update caused issues, so they initiated a rollback to the previous version.", + "pos": "noun", + "word_frequency": 29223 + }, + { + "word": "rota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a round or a regular succession of duties", + "example_sentence_english": "Check the staff rota to see when you are working next.", + "pos": "noun", + "word_frequency": 29226 + }, + { + "word": "royally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a royal manner; very much or extremely", + "example_sentence_english": "The team royally messed up the last play of the game.", + "pos": "adverb", + "word_frequency": 29227 + }, + { + "word": "rusk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dry biscuit or piece of bread, especially one for babies", + "example_sentence_english": "The baby enjoyed chewing on a soft rusk.", + "pos": "noun", + "word_frequency": 29231 + }, + { + "word": "saggy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hanging down loosely or unevenly", + "example_sentence_english": "The old sofa cushions had become saggy over time.", + "pos": "adjective", + "word_frequency": 29232 + }, + { + "word": "salvadoran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of El Salvador", + "example_sentence_english": "Many Salvadorans have immigrated to the United States.", + "pos": "noun", + "word_frequency": 29233 + }, + { + "word": "sanitizer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a substance or preparation for killing germs", + "example_sentence_english": "Always carry hand sanitizer when you're out.", + "pos": "noun", + "word_frequency": 29234 + }, + { + "word": "separatism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the advocacy or practice of separation of a certain group of people from a larger body on the basis of ethnicity, religion, or gender", + "example_sentence_english": "The region has a long history of political separatism.", + "pos": "noun", + "word_frequency": 29239 + }, + { + "word": "serf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medieval peasant bound to the land", + "example_sentence_english": "The serf was tied to the land and could not leave without the lord's permission.", + "pos": "noun", + "word_frequency": 29240 + }, + { + "word": "shockwave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a propagating disturbance", + "example_sentence_english": "The explosion sent a powerful shockwave through the air.", + "pos": "noun", + "word_frequency": 29243 + }, + { + "word": "skeet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sport involving shooting clay targets", + "example_sentence_english": "He spent his weekends practicing skeet shooting.", + "pos": "noun", + "word_frequency": 29245 + }, + { + "word": "slouch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stand, sit, or walk with a drooping posture", + "example_sentence_english": "Don't slouch; stand up straight!", + "pos": "verb", + "word_frequency": 29247 + }, + { + "word": "snapdragon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of flowering plant", + "example_sentence_english": "The garden was full of colorful snapdragons.", + "pos": "noun", + "word_frequency": 29248 + }, + { + "word": "sneer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smile or speak in a contemptuous or mocking manner", + "example_sentence_english": "He couldn't help but sneer at their foolishness.", + "pos": "verb", + "word_frequency": 29249 + }, + { + "word": "sorrowful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing sorrow or sadness", + "example_sentence_english": "Her face was sorrowful as she listened to the bad news.", + "pos": "adjective", + "word_frequency": 29253 + }, + { + "word": "splat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sound of something soft and wet hitting a surface", + "example_sentence_english": "The tomato hit the wall with a loud splat.", + "pos": "noun", + "word_frequency": 29254 + }, + { + "word": "stabilise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become stable", + "example_sentence_english": "The doctors worked to stabilise the patient's condition.", + "pos": "verb", + "word_frequency": 29255 + }, + { + "word": "stopover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a break in a journey", + "example_sentence_english": "We had a two-hour stopover in Dubai before our connecting flight.", + "pos": "noun", + "word_frequency": 29256 + }, + { + "word": "tidbit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small piece of interesting information or food", + "example_sentence_english": "She shared a fascinating tidbit about the history of the building.", + "pos": "noun", + "word_frequency": 29259 + }, + { + "word": "tracksuit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a loose two-piece suit worn for exercise or casual wear", + "example_sentence_english": "He put on his tracksuit before going for a run.", + "pos": "noun", + "word_frequency": 29262 + }, + { + "word": "troublemaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who habitually causes trouble", + "example_sentence_english": "The teacher sent the troublemaker to the principal's office.", + "pos": "noun", + "word_frequency": 29264 + }, + { + "word": "trumpeter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who plays the trumpet", + "example_sentence_english": "The trumpeter played a beautiful solo.", + "pos": "noun", + "word_frequency": 29266 + }, + { + "word": "tshirt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a type of shirt", + "example_sentence_english": "He wore a plain white tshirt.", + "pos": "noun", + "word_frequency": 29267 + }, + { + "word": "tumult", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a loud, confused noise, especially one caused by a large mass of people", + "example_sentence_english": "The city was in a state of tumult after the protests.", + "pos": "noun", + "word_frequency": 29268 + }, + { + "word": "uninitiated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "without special knowledge or experience", + "example_sentence_english": "For the uninitiated, the rules of cricket can be quite confusing.", + "pos": "adjective", + "word_frequency": 29270 + }, + { + "word": "uninspired", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking in inspiration or originality", + "example_sentence_english": "His latest work was rather uninspired and dull.", + "pos": "adjective", + "word_frequency": 29271 + }, + { + "word": "unrestrained", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not restrained or restricted", + "example_sentence_english": "The children's joy was unrestrained as they opened their presents.", + "pos": "adjective", + "word_frequency": 29272 + }, + { + "word": "unsanitary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not hygienic or healthy", + "example_sentence_english": "The conditions in the old kitchen were completely unsanitary.", + "pos": "adjective", + "word_frequency": 29273 + }, + { + "word": "untoward", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unexpected and inappropriate or inconvenient", + "example_sentence_english": "Nothing untoward happened during their trip.", + "pos": "adjective", + "word_frequency": 29274 + }, + { + "word": "vasectomy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vasectomy", + "example_sentence_english": "He decided to have a vasectomy for permanent birth control.", + "pos": "noun", + "word_frequency": 29281 + }, + { + "word": "verdant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "green with vegetation", + "example_sentence_english": "The valley was a verdant landscape after the spring rains.", + "pos": "adjective", + "word_frequency": 29283 + }, + { + "word": "vicarage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vicar's house", + "example_sentence_english": "The old vicarage was sold and converted into a private home.", + "pos": "noun", + "word_frequency": 29284 + }, + { + "word": "vilify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to speak or write about in an abusively disparaging manner", + "example_sentence_english": "The media tried to vilify the politician during the scandal.", + "pos": "verb", + "word_frequency": 29285 + }, + { + "word": "waistline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the circumference of the waist", + "example_sentence_english": "She was concerned about her expanding waistline.", + "pos": "noun", + "word_frequency": 29288 + }, + { + "word": "weatherman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who forecasts the weather", + "example_sentence_english": "The weatherman predicted heavy snow for tomorrow.", + "pos": "noun", + "word_frequency": 29289 + }, + { + "word": "whopper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a big lie or a very large item", + "example_sentence_english": "He told a whopper about catching a fish that big.", + "pos": "noun", + "word_frequency": 29291 + }, + { + "word": "wiretap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to secretly listen to telephone conversations", + "example_sentence_english": "The police obtained a warrant to wiretap the suspect's phone.", + "pos": "verb", + "word_frequency": 29292 + }, + { + "word": "woolen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made of wool", + "example_sentence_english": "She wore a warm woolen scarf in the cold weather.", + "pos": "adjective", + "word_frequency": 29293 + }, + { + "word": "worldnews", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "news from around the world", + "example_sentence_english": "I always check the worldnews section of the newspaper.", + "pos": "noun", + "word_frequency": 29294 + }, + { + "word": "wristwatch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a watch worn on the wrist", + "example_sentence_english": "He checked the time on his new wristwatch.", + "pos": "noun", + "word_frequency": 29295 + }, + { + "word": "aberrant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deviating from the normal or proper course", + "example_sentence_english": "His aberrant behavior caused concern among his colleagues.", + "pos": "adjective", + "word_frequency": 29307 + }, + { + "word": "absinthe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong alcoholic drink", + "example_sentence_english": "Artists in 19th-century Paris were known to drink absinthe.", + "pos": "noun", + "word_frequency": 29308 + }, + { + "word": "acetaminophen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a common pain reliever and fever reducer", + "example_sentence_english": "She took acetaminophen for her headache.", + "pos": "noun", + "word_frequency": 29309 + }, + { + "word": "adamantly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that suggests one will not be persuaded", + "example_sentence_english": "He adamantly refused to change his mind.", + "pos": "adverb", + "word_frequency": 29310 + }, + { + "word": "adder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of snake; one that adds", + "example_sentence_english": "Be careful when hiking, as adders can be found in this area.", + "pos": "noun", + "word_frequency": 29311 + }, + { + "word": "administratively", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in an administrative manner", + "example_sentence_english": "The new policy was implemented administratively without a vote.", + "pos": "adverb", + "word_frequency": 29312 + }, + { + "word": "ageless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "never growing old or appearing to grow old", + "example_sentence_english": "Her beauty seemed ageless, defying the passage of time.", + "pos": "adjective", + "word_frequency": 29315 + }, + { + "word": "agitator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who stirs up public opinion; a device that stirs", + "example_sentence_english": "He was known as a political agitator, always protesting against the government.", + "pos": "noun", + "word_frequency": 29316 + }, + { + "word": "airframe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the main body of an aircraft", + "example_sentence_english": "The airframe of the new jet was designed for maximum aerodynamic efficiency.", + "pos": "noun", + "word_frequency": 29318 + }, + { + "word": "algal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to algae", + "example_sentence_english": "The pond had a thick algal bloom on its surface.", + "pos": "adjective", + "word_frequency": 29322 + }, + { + "word": "allay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diminish or put at rest (fear, suspicion, or worry)", + "example_sentence_english": "The doctor tried to allay her fears about the surgery.", + "pos": "verb", + "word_frequency": 29324 + }, + { + "word": "anachronistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belonging to a period other than that being portrayed", + "example_sentence_english": "The presence of a smartphone in a historical drama would be anachronistic.", + "pos": "adjective", + "word_frequency": 29325 + }, + { + "word": "anarcho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to anarchism", + "example_sentence_english": "The group discussed anarcho-syndicalist theories.", + "pos": "adjective", + "word_frequency": 29326 + }, + { + "word": "anatomically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an anatomical manner; with respect to anatomy", + "example_sentence_english": "The heart is anatomically designed to pump blood efficiently.", + "pos": "adverb", + "word_frequency": 29327 + }, + { + "word": "annoyingly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that causes annoyance", + "example_sentence_english": "The alarm clock kept ringing annoyingly every five minutes.", + "pos": "adverb", + "word_frequency": 29330 + }, + { + "word": "answerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsible for something; accountable", + "example_sentence_english": "The manager is answerable to the board of directors.", + "pos": "adjective", + "word_frequency": 29331 + }, + { + "word": "apropos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "with reference to; concerning (often used to introduce a relevant topic)", + "example_sentence_english": "Apropos of your earlier comment, I've found some new information.", + "pos": "adverb", + "word_frequency": 29332 + }, + { + "word": "assembler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who assembles something; a program that converts assembly language into machine code", + "example_sentence_english": "The car factory employs many skilled assemblers.", + "pos": "noun", + "word_frequency": 29336 + }, + { + "word": "asymptotic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or approaching an asymptote (a line that a curve approaches as it heads towards infinity)", + "example_sentence_english": "The graph shows an asymptotic curve approaching the x-axis.", + "pos": "adjective", + "word_frequency": 29337 + }, + { + "word": "ballgame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game of baseball or other ball sport; a situation or matter", + "example_sentence_english": "Let's go to the ballgame tonight.", + "pos": "noun", + "word_frequency": 29342 + }, + { + "word": "bedlam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a scene of uproar and confusion", + "example_sentence_english": "The classroom was in complete bedlam after the teacher left.", + "pos": "noun", + "word_frequency": 29346 + }, + { + "word": "beluga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small white whale; a type of sturgeon or its caviar", + "example_sentence_english": "Beluga whales are known for their distinctive white color.", + "pos": "noun", + "word_frequency": 29347 + }, + { + "word": "bibliographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to bibliography or the history of books", + "example_sentence_english": "The researcher compiled a comprehensive bibliographic list for her thesis.", + "pos": "adjective", + "word_frequency": 29350 + }, + { + "word": "bloodless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without bloodshed or violence; lacking vitality or spirit", + "example_sentence_english": "The revolution was surprisingly bloodless, with no lives lost.", + "pos": "adjective", + "word_frequency": 29353 + }, + { + "word": "boreal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or relating to the northern regions of the globe, especially the forest biome", + "example_sentence_english": "The boreal forest is characterized by coniferous trees.", + "pos": "adjective", + "word_frequency": 29355 + }, + { + "word": "brackish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slightly salty (of water)", + "example_sentence_english": "The estuary contained brackish water, a mix of fresh and salt.", + "pos": "adjective", + "word_frequency": 29356 + }, + { + "word": "bream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a freshwater fish of the carp family", + "example_sentence_english": "He caught a large bream in the lake this morning.", + "pos": "noun", + "word_frequency": 29357 + }, + { + "word": "burlap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a coarse, woven fabric, typically made from jute, hemp, or flax", + "example_sentence_english": "The old sacks were made of rough burlap.", + "pos": "noun", + "word_frequency": 29359 + }, + { + "word": "cackle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to laugh in a loud, harsh way", + "example_sentence_english": "The witches began to cackle as they stirred their cauldron.", + "pos": "verb", + "word_frequency": 29360 + }, + { + "word": "capitalise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take advantage of; to write or print in capital letters", + "example_sentence_english": "They hope to capitalise on the growing market for organic food.", + "pos": "verb", + "word_frequency": 29364 + }, + { + "word": "capstone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the final and crowning achievement; a finishing stone", + "example_sentence_english": "The senior project is the capstone of their undergraduate studies.", + "pos": "noun", + "word_frequency": 29365 + }, + { + "word": "catalysis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the acceleration of a chemical reaction by a catalyst", + "example_sentence_english": "Enzyme catalysis is crucial for many biological processes.", + "pos": "noun", + "word_frequency": 29368 + }, + { + "word": "centralization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the concentration of control in one place", + "example_sentence_english": "The company decided on a greater centralization of power within its headquarters.", + "pos": "noun", + "word_frequency": 29371 + }, + { + "word": "changeover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a change from one system or situation to another", + "example_sentence_english": "The changeover to the new computer system was completed last week.", + "pos": "noun", + "word_frequency": 29372 + }, + { + "word": "cistern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tank for storing water", + "example_sentence_english": "The old house had a large cistern for collecting rainwater.", + "pos": "noun", + "word_frequency": 29375 + }, + { + "word": "classified", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secret information; a section of a newspaper for advertisements", + "example_sentence_english": "He looked for a job in the classifieds section of the newspaper.", + "pos": "noun", + "word_frequency": 29377 + }, + { + "word": "cleverness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality of being clever; intelligence", + "example_sentence_english": "Her cleverness allowed her to solve the puzzle quickly.", + "pos": "noun", + "word_frequency": 29378 + }, + { + "word": "coagulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of a liquid changing to a solid or semi-solid state", + "example_sentence_english": "Blood coagulation is a vital process to stop bleeding.", + "pos": "noun", + "word_frequency": 29379 + }, + { + "word": "congruent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in agreement or harmony; (geometry) identical in form", + "example_sentence_english": "The two triangles are congruent, meaning they have the same size and shape.", + "pos": "adjective", + "word_frequency": 29380 + }, + { + "word": "contributory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "playing a part in bringing something about", + "example_sentence_english": "His negligence was a contributory factor to the accident.", + "pos": "adjective", + "word_frequency": 29381 + }, + { + "word": "convective", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or involving convection", + "example_sentence_english": "Convective currents in the atmosphere can lead to thunderstorms.", + "pos": "adjective", + "word_frequency": 29382 + }, + { + "word": "counterintuitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contrary to intuition or to common-sense expectation", + "example_sentence_english": "The solution to the problem was counterintuitive, but it worked.", + "pos": "adjective", + "word_frequency": 29383 + }, + { + "word": "crowdsourcing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtaining information or input from a large number of people", + "example_sentence_english": "They used crowdsourcing to fund their new product development.", + "pos": "noun", + "word_frequency": 29384 + }, + { + "word": "cuticle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the protective layer of skin at the base of a fingernail or toenail", + "example_sentence_english": "She pushed back her cuticles during her manicure.", + "pos": "noun", + "word_frequency": 29386 + }, + { + "word": "cyberbullying", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of electronic communication to bully a person", + "example_sentence_english": "Schools are implementing programs to prevent cyberbullying among students.", + "pos": "noun", + "word_frequency": 29387 + }, + { + "word": "darwinian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the theories of Charles Darwin", + "example_sentence_english": "The concept of natural selection is a core Darwinian principle.", + "pos": "adjective", + "word_frequency": 29389 + }, + { + "word": "dateline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a line in a newspaper article stating where and when it was written; the International Date Line", + "example_sentence_english": "The article had a Washington D.C. dateline.", + "pos": "noun", + "word_frequency": 29390 + }, + { + "word": "dauntless", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing fearlessness and determination", + "example_sentence_english": "The dauntless explorer faced the challenges of the jungle without hesitation.", + "pos": "adjective", + "word_frequency": 29391 + }, + { + "word": "denning", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of an animal living or sheltering in a den", + "example_sentence_english": "Bear denning behavior changes with the seasons.", + "pos": "noun", + "word_frequency": 29393 + }, + { + "word": "dialectic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the art of investigating or discussing the truth of opinions", + "example_sentence_english": "Plato's dialogues are a classic example of the dialectic method.", + "pos": "noun", + "word_frequency": 29394 + }, + { + "word": "dietitian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert on diet and nutrition", + "example_sentence_english": "She consulted a dietitian to help her plan a healthy eating regimen.", + "pos": "noun", + "word_frequency": 29395 + }, + { + "word": "disorientation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of confusion about one's bearings or situation", + "example_sentence_english": "He experienced a feeling of disorientation after waking up in an unfamiliar room.", + "pos": "noun", + "word_frequency": 29398 + }, + { + "word": "diurnal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or during the day; daily", + "example_sentence_english": "Most birds are diurnal, meaning they are active during the day.", + "pos": "adjective", + "word_frequency": 29399 + }, + { + "word": "divisible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be divided", + "example_sentence_english": "Twelve is divisible by three.", + "pos": "adjective", + "word_frequency": 29400 + }, + { + "word": "domineering", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overbearing; bossy", + "example_sentence_english": "His domineering attitude made it difficult to work with him.", + "pos": "adjective", + "word_frequency": 29401 + }, + { + "word": "emancipate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to set free", + "example_sentence_english": "The new law will emancipate many people from debt.", + "pos": "verb", + "word_frequency": 29407 + }, + { + "word": "embellishment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a decorative detail or feature added to something", + "example_sentence_english": "The story was full of embellishments to make it more exciting.", + "pos": "noun", + "word_frequency": 29408 + }, + { + "word": "emblazon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to inscribe or display a design on something", + "example_sentence_english": "The team's logo was emblazoned on their new jerseys.", + "pos": "verb", + "word_frequency": 29409 + }, + { + "word": "environmentalism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concern for the protection of the natural environment", + "example_sentence_english": "Environmentalism has become a major political issue.", + "pos": "noun", + "word_frequency": 29410 + }, + { + "word": "equalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of making things equal", + "example_sentence_english": "The equalization of opportunities is a key goal for the government.", + "pos": "noun", + "word_frequency": 29411 + }, + { + "word": "etching", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an artistic print produced by etching", + "example_sentence_english": "The museum displayed several beautiful etchings from the 18th century.", + "pos": "noun", + "word_frequency": 29412 + }, + { + "word": "exposé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a report that reveals something discreditable", + "example_sentence_english": "The newspaper published a shocking exposé on political corruption.", + "pos": "noun", + "word_frequency": 29416 + }, + { + "word": "faithless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disloyal or unfaithful", + "example_sentence_english": "She felt betrayed by her faithless friend.", + "pos": "adjective", + "word_frequency": 29417 + }, + { + "word": "falsetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a method of voice production used by male singers to sing notes higher than their normal range", + "example_sentence_english": "He sang the high notes in a clear falsetto.", + "pos": "noun", + "word_frequency": 29418 + }, + { + "word": "firecracker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small explosive device", + "example_sentence_english": "We lit a firecracker to celebrate the New Year.", + "pos": "noun", + "word_frequency": 29421 + }, + { + "word": "flabbergast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to surprise someone greatly", + "example_sentence_english": "His sudden resignation flabbergasted everyone in the office.", + "pos": "verb", + "word_frequency": 29422 + }, + { + "word": "flanker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player positioned on the wing in certain sports, or a military unit on the side", + "example_sentence_english": "The rugby team's flanker made a crucial tackle.", + "pos": "noun", + "word_frequency": 29423 + }, + { + "word": "flathead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of screw with a flat top, or a type of fish", + "example_sentence_english": "He used a flathead screwdriver to remove the plate.", + "pos": "noun", + "word_frequency": 29424 + }, + { + "word": "frontrunner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the person or thing that is leading in a race or competition", + "example_sentence_english": "She is considered the frontrunner in the upcoming election.", + "pos": "noun", + "word_frequency": 29426 + }, + { + "word": "fuchsia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a vivid purplish-red color, or a type of flowering plant", + "example_sentence_english": "Her dress was a striking shade of fuchsia.", + "pos": "noun", + "word_frequency": 29428 + }, + { + "word": "glittery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparkling with small, bright flashes of light", + "example_sentence_english": "The children loved the glittery decorations.", + "pos": "adjective", + "word_frequency": 29437 + }, + { + "word": "globular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spherical or globe-shaped", + "example_sentence_english": "The telescope revealed a globular cluster of stars.", + "pos": "adjective", + "word_frequency": 29438 + }, + { + "word": "glutathione", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a powerful antioxidant found in plants, animals, fungi, and some bacteria and archaea", + "example_sentence_english": "Glutathione plays a crucial role in protecting cells from damage.", + "pos": "noun", + "word_frequency": 29439 + }, + { + "word": "glyphosate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a widely used herbicide", + "example_sentence_english": "Concerns have been raised about the environmental impact of glyphosate.", + "pos": "noun", + "word_frequency": 29440 + }, + { + "word": "guildhall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a town hall or a building used by a guild", + "example_sentence_english": "The ancient guildhall stood proudly in the city center.", + "pos": "noun", + "word_frequency": 29444 + }, + { + "word": "haulage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the commercial transport of goods", + "example_sentence_english": "The company specializes in heavy haulage across the country.", + "pos": "noun", + "word_frequency": 29447 + }, + { + "word": "headland", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a narrow piece of land that projects from a coastline into the sea", + "example_sentence_english": "We walked along the cliffs to the headland, enjoying the view.", + "pos": "noun", + "word_frequency": 29448 + }, + { + "word": "headstrong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-willed and obstinate", + "example_sentence_english": "Her headstrong nature often led her into arguments.", + "pos": "adjective", + "word_frequency": 29449 + }, + { + "word": "herbivore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal that feeds on plants", + "example_sentence_english": "Deer are herbivores, primarily eating leaves and grass.", + "pos": "noun", + "word_frequency": 29452 + }, + { + "word": "humongous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely large; huge", + "example_sentence_english": "They built a humongous sandcastle on the beach.", + "pos": "adjective", + "word_frequency": 29461 + }, + { + "word": "hunchback", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person with a humpback", + "example_sentence_english": "The story of the hunchback of Notre Dame is famous.", + "pos": "noun", + "word_frequency": 29462 + }, + { + "word": "hydrothermal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the action of hot water in the earth's crust", + "example_sentence_english": "Hydrothermal vents support unique ecosystems deep in the ocean.", + "pos": "adjective", + "word_frequency": 29463 + }, + { + "word": "hydroxyl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chemical functional group consisting of an oxygen atom bonded to a hydrogen atom", + "example_sentence_english": "The hydroxyl group is a key component of alcohols.", + "pos": "noun", + "word_frequency": 29464 + }, + { + "word": "hyperspace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fictional space-time continuum allowing faster-than-light travel", + "example_sentence_english": "The spaceship jumped into hyperspace, disappearing from view.", + "pos": "noun", + "word_frequency": 29465 + }, + { + "word": "inactivate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make inactive or ineffective", + "example_sentence_english": "The enzyme was used to inactivate the virus.", + "pos": "verb", + "word_frequency": 29470 + }, + { + "word": "inalienable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be taken away from or given away by the possessor", + "example_sentence_english": "All people are born with certain inalienable rights.", + "pos": "adjective", + "word_frequency": 29471 + }, + { + "word": "incongruous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not in harmony or keeping with the surroundings or other aspects of something", + "example_sentence_english": "The modern sculpture looked incongruous in the ancient garden.", + "pos": "adjective", + "word_frequency": 29472 + }, + { + "word": "innkeeper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who owns or manages an inn", + "example_sentence_english": "The innkeeper welcomed the weary travelers with a warm meal.", + "pos": "noun", + "word_frequency": 29475 + }, + { + "word": "insufficiency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being inadequate or insufficient", + "example_sentence_english": "The patient suffered from heart insufficiency.", + "pos": "noun", + "word_frequency": 29476 + }, + { + "word": "interdependence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the reliance of two or more things on each other", + "example_sentence_english": "Global economies demonstrate a high degree of interdependence.", + "pos": "noun", + "word_frequency": 29477 + }, + { + "word": "interleukin", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a type of cytokine produced by white blood cells", + "example_sentence_english": "Interleukin-6 plays a role in the body's immune response.", + "pos": "noun", + "word_frequency": 29478 + }, + { + "word": "intifada", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an armed uprising of Palestinians against Israeli occupation", + "example_sentence_english": "The First Intifada began in 1987.", + "pos": "noun", + "word_frequency": 29479 + }, + { + "word": "intracranial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "within the skull", + "example_sentence_english": "The patient suffered an intracranial hemorrhage.", + "pos": "adjective", + "word_frequency": 29480 + }, + { + "word": "irreducible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be reduced or simplified", + "example_sentence_english": "The problem was irreducible to a simple solution.", + "pos": "adjective", + "word_frequency": 29481 + }, + { + "word": "jiggle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move lightly and quickly up and down or from side to side", + "example_sentence_english": "The jelly began to jiggle when she touched it.", + "pos": "verb", + "word_frequency": 29484 + }, + { + "word": "ketone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organic compound containing a carbonyl group", + "example_sentence_english": "Ketone bodies are produced when the body burns fat for energy.", + "pos": "noun", + "word_frequency": 29489 + }, + { + "word": "kitsch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "art, objects, or design considered to be in poor taste", + "example_sentence_english": "Her apartment was filled with kitsch from various souvenir shops.", + "pos": "noun", + "word_frequency": 29490 + }, + { + "word": "leadoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the first action or person in a sequence", + "example_sentence_english": "He hit a leadoff single in the first inning.", + "pos": "noun", + "word_frequency": 29496 + }, + { + "word": "leprechaun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mythical mischievous dwarf in Irish folklore", + "example_sentence_english": "According to legend, a leprechaun hides a pot of gold at the end of the rainbow.", + "pos": "noun", + "word_frequency": 29499 + }, + { + "word": "lethargy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of being drowsy and sluggish", + "example_sentence_english": "The heat caused a feeling of lethargy throughout the afternoon.", + "pos": "noun", + "word_frequency": 29500 + }, + { + "word": "lifeblood", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the indispensable factor or influence that gives something its strength and vitality", + "example_sentence_english": "Communication is the lifeblood of any successful relationship.", + "pos": "noun", + "word_frequency": 29503 + }, + { + "word": "littoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or situated on the shore of the sea or a lake", + "example_sentence_english": "The littoral zone is rich in marine biodiversity.", + "pos": "adjective", + "word_frequency": 29507 + }, + { + "word": "macular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the macula of the eye", + "example_sentence_english": "Macular degeneration is a common cause of vision loss.", + "pos": "adjective", + "word_frequency": 29510 + }, + { + "word": "madhouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a scene of uproar and confusion", + "example_sentence_english": "The office was a madhouse before the deadline.", + "pos": "noun", + "word_frequency": 29511 + }, + { + "word": "maelstrom", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a powerful whirlpool; a state of confused movement or violent turmoil", + "example_sentence_english": "The country was caught in a maelstrom of political unrest.", + "pos": "noun", + "word_frequency": 29513 + }, + { + "word": "malign", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to speak about (someone) in a spitefully critical manner", + "example_sentence_english": "He tried to malign his opponent's reputation.", + "pos": "verb", + "word_frequency": 29516 + }, + { + "word": "marcher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who marches, especially as part of a protest or demonstration", + "example_sentence_english": "The marchers carried signs advocating for peace.", + "pos": "noun", + "word_frequency": 29517 + }, + { + "word": "mideast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Middle East", + "example_sentence_english": "Current events in the Mideast are often complex.", + "pos": "noun", + "word_frequency": 29525 + }, + { + "word": "midseason", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle of the season", + "example_sentence_english": "The team made some roster changes during the midseason.", + "pos": "noun", + "word_frequency": 29526 + }, + { + "word": "mimosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of plant or a cocktail", + "example_sentence_english": "She enjoyed a mimosa with her Sunday brunch.", + "pos": "noun", + "word_frequency": 29528 + }, + { + "word": "minty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a fresh, cool taste or smell like mint", + "example_sentence_english": "The chewing gum had a strong, minty flavor.", + "pos": "adjective", + "word_frequency": 29529 + }, + { + "word": "misbehave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to behave badly", + "example_sentence_english": "The children were warned not to misbehave during the school trip.", + "pos": "verb", + "word_frequency": 29530 + }, + { + "word": "moldy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with mold", + "example_sentence_english": "We had to throw out the moldy bread.", + "pos": "adjective", + "word_frequency": 29531 + }, + { + "word": "moll", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gangster's female companion (informal, dated)", + "example_sentence_english": "In old crime films, the gangster's moll often wore flashy clothes.", + "pos": "noun", + "word_frequency": 29532 + }, + { + "word": "monorail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a railway system with a single rail", + "example_sentence_english": "The theme park has a monorail that transports visitors.", + "pos": "noun", + "word_frequency": 29535 + }, + { + "word": "moraine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mass of rocks and sediment carried and deposited by a glacier", + "example_sentence_english": "The retreating glacier left behind a large terminal moraine.", + "pos": "noun", + "word_frequency": 29536 + }, + { + "word": "mothership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large vehicle or craft from which smaller ones are launched", + "example_sentence_english": "The smaller drones returned to the mothership after completing their reconnaissance.", + "pos": "noun", + "word_frequency": 29539 + }, + { + "word": "munchkin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small person or child; a character from 'The Wizard of Oz'", + "example_sentence_english": "The little munchkin giggled as he chased the ball.", + "pos": "noun", + "word_frequency": 29540 + }, + { + "word": "nationalise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to transfer from private to state ownership or control (British English)", + "example_sentence_english": "The government decided to nationalise the struggling industry.", + "pos": "verb", + "word_frequency": 29545 + }, + { + "word": "nonviolence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of peaceful means, not force, to bring about change", + "example_sentence_english": "Martin Luther King Jr. was a strong advocate for nonviolence.", + "pos": "noun", + "word_frequency": 29549 + }, + { + "word": "oboe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a woodwind musical instrument", + "example_sentence_english": "She plays the oboe in the school orchestra.", + "pos": "noun", + "word_frequency": 29554 + }, + { + "word": "ochre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a natural earthy pigment, typically reddish-yellow", + "example_sentence_english": "The ancient cave paintings were done in shades of red and ochre.", + "pos": "noun", + "word_frequency": 29555 + }, + { + "word": "ogle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stare at in a lecherous or unpleasant way", + "example_sentence_english": "It's rude to ogle people as they pass by.", + "pos": "verb", + "word_frequency": 29556 + }, + { + "word": "onesie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a loose-fitting, one-piece garment", + "example_sentence_english": "The baby looked cozy in its soft, patterned onesie.", + "pos": "noun", + "word_frequency": 29557 + }, + { + "word": "oppo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opposition or opponent (informal)", + "example_sentence_english": "He always tries to outsmart his oppo in negotiations.", + "pos": "noun", + "word_frequency": 29559 + }, + { + "word": "opulence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great wealth or luxury", + "example_sentence_english": "The palace was decorated with incredible opulence.", + "pos": "noun", + "word_frequency": 29560 + }, + { + "word": "orang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large ape with reddish-brown hair", + "example_sentence_english": "The orang swung gracefully through the trees.", + "pos": "noun", + "word_frequency": 29561 + }, + { + "word": "overeat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eat too much", + "example_sentence_english": "It's easy to overeat during the holidays.", + "pos": "verb", + "word_frequency": 29563 + }, + { + "word": "palpitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a noticeably rapid, strong, or irregular heartbeat", + "example_sentence_english": "She felt a sudden palpitation in her chest.", + "pos": "noun", + "word_frequency": 29568 + }, + { + "word": "pandemonium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wild and noisy disorder or confusion", + "example_sentence_english": "There was complete pandemonium in the hall after the announcement.", + "pos": "noun", + "word_frequency": 29571 + }, + { + "word": "patronise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treat with an apparent kindness that betrays a feeling of superiority", + "example_sentence_english": "Please don't patronise me; I understand perfectly well.", + "pos": "verb", + "word_frequency": 29572 + }, + { + "word": "peacemaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who brings about peace", + "example_sentence_english": "She always tried to be the peacemaker in family arguments.", + "pos": "noun", + "word_frequency": 29574 + }, + { + "word": "permeate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spread throughout (something); pervade", + "example_sentence_english": "The smell of baking bread permeated the entire house.", + "pos": "verb", + "word_frequency": 29576 + }, + { + "word": "personable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a pleasant appearance and manner", + "example_sentence_english": "He was a very personable young man, easy to talk to.", + "pos": "adjective", + "word_frequency": 29577 + }, + { + "word": "perturb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make (someone) anxious or unsettled", + "example_sentence_english": "The news of the accident did not seem to perturb him.", + "pos": "verb", + "word_frequency": 29578 + }, + { + "word": "phoney", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not genuine; fake", + "example_sentence_english": "He tried to pass off a phoney banknote.", + "pos": "adjective", + "word_frequency": 29580 + }, + { + "word": "platypus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a semiaquatic egg-laying mammal native to eastern Australia", + "example_sentence_english": "The platypus is one of the few venomous mammals.", + "pos": "noun", + "word_frequency": 29582 + }, + { + "word": "prankster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who plays pranks", + "example_sentence_english": "The prankster hid the keys as a joke.", + "pos": "noun", + "word_frequency": 29586 + }, + { + "word": "proliferate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "increase rapidly in numbers; multiply", + "example_sentence_english": "Rumors about the incident began to proliferate.", + "pos": "verb", + "word_frequency": 29589 + }, + { + "word": "propagandist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who spreads propaganda", + "example_sentence_english": "The government employed a skilled propagandist to influence public opinion.", + "pos": "noun", + "word_frequency": 29590 + }, + { + "word": "pyre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a heap of combustible material, especially one for burning a corpse", + "example_sentence_english": "The ancient king's body was placed on a funeral pyre.", + "pos": "noun", + "word_frequency": 29592 + }, + { + "word": "quibble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "argue or raise objections about a trivial matter", + "example_sentence_english": "Let's not quibble over minor details.", + "pos": "verb", + "word_frequency": 29593 + }, + { + "word": "ravish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seize and carry off (someone); fill (someone) with intense delight", + "example_sentence_english": "The beauty of the landscape ravished his senses.", + "pos": "verb", + "word_frequency": 29599 + }, + { + "word": "readout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a display of data from a computer or other device", + "example_sentence_english": "The digital readout showed the temperature was 25 degrees Celsius.", + "pos": "noun", + "word_frequency": 29600 + }, + { + "word": "reapply", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apply again", + "example_sentence_english": "You need to reapply for the visa next year.", + "pos": "verb", + "word_frequency": 29601 + }, + { + "word": "recidivism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the tendency of a convicted criminal to reoffend", + "example_sentence_english": "The program aims to reduce recidivism among former inmates.", + "pos": "noun", + "word_frequency": 29602 + }, + { + "word": "recollect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remember (something)", + "example_sentence_english": "I can't quite recollect where I put my keys.", + "pos": "verb", + "word_frequency": 29603 + }, + { + "word": "repeatable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be repeated", + "example_sentence_english": "For the experiment to be valid, the results must be repeatable.", + "pos": "adjective", + "word_frequency": 29606 + }, + { + "word": "requisition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official order laying claim to the use of property or materials", + "example_sentence_english": "We need to submit a requisition for new office supplies.", + "pos": "noun", + "word_frequency": 29607 + }, + { + "word": "resettle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "settle again or in a different place", + "example_sentence_english": "Many refugees had to resettle in new countries.", + "pos": "verb", + "word_frequency": 29608 + }, + { + "word": "retrace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "go back over (a path or course)", + "example_sentence_english": "We had to retrace our steps to find the lost wallet.", + "pos": "verb", + "word_frequency": 29610 + }, + { + "word": "roadhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a roadside inn or restaurant", + "example_sentence_english": "We stopped at a roadhouse for a quick meal on our trip.", + "pos": "noun", + "word_frequency": 29614 + }, + { + "word": "ruinous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disastrous or destructive", + "example_sentence_english": "The economic policies proved ruinous for the country.", + "pos": "adjective", + "word_frequency": 29617 + }, + { + "word": "saintly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely virtuous or pious", + "example_sentence_english": "She was known for her saintly patience and kindness.", + "pos": "adjective", + "word_frequency": 29619 + }, + { + "word": "scalability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability of a system to handle a growing amount of work", + "example_sentence_english": "The new software offers improved scalability for large enterprises.", + "pos": "noun", + "word_frequency": 29621 + }, + { + "word": "scuttle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "run with short, quick steps; sink (one's own ship)", + "example_sentence_english": "The crab began to scuttle sideways into its hole.", + "pos": "verb", + "word_frequency": 29623 + }, + { + "word": "seltzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carbonated water", + "example_sentence_english": "He prefers to drink plain seltzer with a slice of lemon.", + "pos": "noun", + "word_frequency": 29627 + }, + { + "word": "skyward", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "towards the sky", + "example_sentence_english": "The rocket launched skyward with a roar.", + "pos": "adverb", + "word_frequency": 29632 + }, + { + "word": "spinster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an unmarried woman, typically an older woman beyond the usual age for marriage", + "example_sentence_english": "In many old novels, the spinster aunt plays a significant role.", + "pos": "noun", + "word_frequency": 29636 + }, + { + "word": "spud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a potato (informal)", + "example_sentence_english": "We had baked spuds with our dinner.", + "pos": "noun", + "word_frequency": 29637 + }, + { + "word": "squalor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of being extremely dirty and unpleasant, especially as a result of poverty or neglect", + "example_sentence_english": "The family was living in conditions of extreme squalor.", + "pos": "noun", + "word_frequency": 29638 + }, + { + "word": "stabilisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making something stable", + "example_sentence_english": "The government is working on the stabilisation of the economy.", + "pos": "noun", + "word_frequency": 29639 + }, + { + "word": "stubby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short and thick", + "example_sentence_english": "The dog had stubby legs.", + "pos": "adjective", + "word_frequency": 29640 + }, + { + "word": "subjugate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bring under domination or control", + "example_sentence_english": "The empire sought to subjugate the neighboring tribes.", + "pos": "verb", + "word_frequency": 29641 + }, + { + "word": "subplot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secondary plot in a story", + "example_sentence_english": "The novel had an interesting subplot involving the detective's personal life.", + "pos": "noun", + "word_frequency": 29642 + }, + { + "word": "subterfuge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deceit used in order to achieve one's goal", + "example_sentence_english": "He used subterfuge to gain access to the confidential files.", + "pos": "noun", + "word_frequency": 29643 + }, + { + "word": "supercharger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that increases the power of an engine", + "example_sentence_english": "The car's engine was fitted with a powerful supercharger.", + "pos": "noun", + "word_frequency": 29645 + }, + { + "word": "superfast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely fast", + "example_sentence_english": "We need a superfast internet connection for streaming.", + "pos": "adjective", + "word_frequency": 29646 + }, + { + "word": "supersport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a high-performance sports vehicle or category of sport", + "example_sentence_english": "He bought a new supersport motorcycle.", + "pos": "noun", + "word_frequency": 29647 + }, + { + "word": "surfactant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance that reduces the surface tension of a liquid", + "example_sentence_english": "Surfactants are commonly used in detergents and soaps.", + "pos": "noun", + "word_frequency": 29648 + }, + { + "word": "surreptitious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kept secret, especially because it would not be approved of", + "example_sentence_english": "They had a surreptitious meeting in the park.", + "pos": "adverb", + "word_frequency": 29649 + }, + { + "word": "tablecloth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a cloth spread over a table", + "example_sentence_english": "She put a clean tablecloth on the dining table.", + "pos": "noun", + "word_frequency": 29651 + }, + { + "word": "tailing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of following someone; waste material from mining", + "example_sentence_english": "The detective was engaged in tailing the suspect.", + "pos": "noun", + "word_frequency": 29652 + }, + { + "word": "tapper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or device that taps", + "example_sentence_english": "The maple syrup tapper collected sap from the trees.", + "pos": "noun", + "word_frequency": 29654 + }, + { + "word": "tardy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "late", + "example_sentence_english": "He was tardy for the meeting again.", + "pos": "adjective", + "word_frequency": 29655 + }, + { + "word": "tassel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dangling ornament of threads", + "example_sentence_english": "The curtain was decorated with a golden tassel.", + "pos": "noun", + "word_frequency": 29656 + }, + { + "word": "thicket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dense group of bushes or trees", + "example_sentence_english": "We pushed our way through the thicket to reach the clearing.", + "pos": "noun", + "word_frequency": 29657 + }, + { + "word": "threefold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "three times as much or as many", + "example_sentence_english": "The company's profits increased threefold last year.", + "pos": "numeral", + "word_frequency": 29658 + }, + { + "word": "trapeze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a horizontal bar suspended by two ropes", + "example_sentence_english": "The acrobat performed daring tricks on the trapeze.", + "pos": "noun", + "word_frequency": 29662 + }, + { + "word": "triangulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of determining the location of a point by forming triangles", + "example_sentence_english": "GPS uses triangulation to pinpoint your exact location.", + "pos": "noun", + "word_frequency": 29663 + }, + { + "word": "unconsciousness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being unconscious", + "example_sentence_english": "He fell into unconsciousness after hitting his head.", + "pos": "noun", + "word_frequency": 29665 + }, + { + "word": "unconvincing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not seeming true or real", + "example_sentence_english": "His excuse for being late was unconvincing.", + "pos": "adjective", + "word_frequency": 29666 + }, + { + "word": "uncooked", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "not cooked", + "example_sentence_english": "The chicken was still uncooked in the middle.", + "pos": "adjective", + "word_frequency": 29667 + }, + { + "word": "undaunt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not to deter or discourage", + "example_sentence_english": "Nothing could undaunt his resolve.", + "pos": "verb", + "word_frequency": 29668 + }, + { + "word": "underpin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "support from below; form the basis of", + "example_sentence_english": "The research underpins the new theory.", + "pos": "verb", + "word_frequency": 29669 + }, + { + "word": "undeserved", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not earned or merited", + "example_sentence_english": "His punishment was completely undeserved.", + "pos": "adjective", + "word_frequency": 29670 + }, + { + "word": "unsaid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not expressed or spoken", + "example_sentence_english": "There were many unsaid feelings between them.", + "pos": "adjective", + "word_frequency": 29671 + }, + { + "word": "unsurprising", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not causing surprise", + "example_sentence_english": "It was unsurprising that he won the competition.", + "pos": "adjective", + "word_frequency": 29672 + }, + { + "word": "velvety", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smooth and soft like velvet", + "example_sentence_english": "The rose petals had a velvety texture.", + "pos": "adjective", + "word_frequency": 29676 + }, + { + "word": "vim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "energy and enthusiasm", + "example_sentence_english": "He approached the task with great vim and vigor.", + "pos": "noun", + "word_frequency": 29677 + }, + { + "word": "wallaby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small or medium-sized macropod native to Australia and New Guinea", + "example_sentence_english": "We saw a wallaby hopping through the bush.", + "pos": "noun", + "word_frequency": 29680 + }, + { + "word": "webcomic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a comic strip published on the internet", + "example_sentence_english": "I spend hours reading my favorite webcomic every week.", + "pos": "noun", + "word_frequency": 29682 + }, + { + "word": "wheelie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a maneuver in which a bicycle or motorcycle is ridden for a short distance with the front wheel raised off the ground", + "example_sentence_english": "The cyclist performed an impressive wheelie down the street.", + "pos": "noun", + "word_frequency": 29683 + }, + { + "word": "winemaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes wine", + "example_sentence_english": "The winemaker explained the process of fermentation.", + "pos": "noun", + "word_frequency": 29684 + }, + { + "word": "yada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "used to represent words that are too boring or predictable to be worth repeating", + "example_sentence_english": "He went on and on about his trip, yada yada yada.", + "pos": "noun", + "word_frequency": 29692 + }, + { + "word": "yardstick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a measuring rod a yard long; a standard used for comparison", + "example_sentence_english": "His performance set the yardstick for future candidates.", + "pos": "noun", + "word_frequency": 29693 + }, + { + "word": "abate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to become less intense or widespread", + "example_sentence_english": "The storm finally began to abate.", + "pos": "verb", + "word_frequency": 29699 + }, + { + "word": "adios", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goodbye (Spanish)", + "example_sentence_english": "He waved and said, 'Adios!'", + "pos": "interjection", + "word_frequency": 29702 + }, + { + "word": "adjuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who assesses losses or claims, especially for an insurance company", + "example_sentence_english": "The insurance adjuster came to inspect the damage.", + "pos": "noun", + "word_frequency": 29703 + }, + { + "word": "affaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an affair; a scandalous or controversial incident", + "example_sentence_english": "The whole affaire became a public scandal.", + "pos": "noun", + "word_frequency": 29705 + }, + { + "word": "aftertaste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a taste, especially an unpleasant one, that remains in the mouth after food or drink has been swallowed", + "example_sentence_english": "The medicine left a bitter aftertaste.", + "pos": "noun", + "word_frequency": 29706 + }, + { + "word": "ambiance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the character and atmosphere of a place", + "example_sentence_english": "The restaurant had a lovely, cozy ambiance.", + "pos": "noun", + "word_frequency": 29710 + }, + { + "word": "analgesic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a drug acting to relieve pain", + "example_sentence_english": "The doctor prescribed an analgesic for the pain.", + "pos": "noun", + "word_frequency": 29711 + }, + { + "word": "aspirant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who has ambitions to achieve something, typically to follow a particular career", + "example_sentence_english": "She is an aspirant to a career in medicine.", + "pos": "noun", + "word_frequency": 29717 + }, + { + "word": "backflip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a gymnastic move where one jumps backward and rotates in the air", + "example_sentence_english": "The gymnast performed a perfect backflip.", + "pos": "noun", + "word_frequency": 29721 + }, + { + "word": "bathrobe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a loose robe, typically made of terrycloth, worn before and after bathing", + "example_sentence_english": "He put on his soft bathrobe after his shower.", + "pos": "noun", + "word_frequency": 29724 + }, + { + "word": "berliner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of German doughnut, typically filled with jam", + "example_sentence_english": "I enjoyed a sweet Berliner with my coffee.", + "pos": "noun", + "word_frequency": 29727 + }, + { + "word": "biathlon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a winter sport combining cross-country skiing and rifle shooting", + "example_sentence_english": "The biathlon requires both endurance and precision.", + "pos": "noun", + "word_frequency": 29728 + }, + { + "word": "bodyweight", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the weight of a person's body", + "example_sentence_english": "He uses his own bodyweight for strength training exercises.", + "pos": "noun", + "word_frequency": 29731 + }, + { + "word": "bolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large, heavy, single-edged knife, especially one used in the Philippines", + "example_sentence_english": "The farmer used a bolo to clear the brush.", + "pos": "noun", + "word_frequency": 29732 + }, + { + "word": "bookmaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person whose business is to take bets and pay out winnings", + "example_sentence_english": "The bookmaker offered odds on the horse race.", + "pos": "noun", + "word_frequency": 29733 + }, + { + "word": "bothersome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "causing annoyance, trouble, or worry", + "example_sentence_english": "The constant noise from the construction site was bothersome.", + "pos": "adjective", + "word_frequency": 29734 + }, + { + "word": "busby", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tall fur hat, typically worn by soldiers", + "example_sentence_english": "The guard wore a distinctive busby on his head.", + "pos": "noun", + "word_frequency": 29739 + }, + { + "word": "cantina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of bar or restaurant, especially in Spanish-speaking countries", + "example_sentence_english": "We stopped at the cantina for some tacos and drinks.", + "pos": "noun", + "word_frequency": 29741 + }, + { + "word": "casement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a window or part of a window set on a hinge", + "example_sentence_english": "She opened the casement window to let in the fresh air.", + "pos": "noun", + "word_frequency": 29742 + }, + { + "word": "catnip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant of the mint family, known for its stimulating effect on cats", + "example_sentence_english": "My cat loves to play with toys filled with catnip.", + "pos": "noun", + "word_frequency": 29743 + }, + { + "word": "causative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acting as a cause", + "example_sentence_english": "The causative factor for the disease was identified.", + "pos": "adjective", + "word_frequency": 29744 + }, + { + "word": "cesspool", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an underground pit or tank for receiving and temporarily storing sewage and wastewater", + "example_sentence_english": "The old house had a cesspool instead of a modern septic system.", + "pos": "noun", + "word_frequency": 29747 + }, + { + "word": "chalky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling chalk in texture or color", + "example_sentence_english": "The old paint had a chalky finish.", + "pos": "adjective", + "word_frequency": 29748 + }, + { + "word": "commissar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an official of the Communist Party responsible for political education and organization", + "example_sentence_english": "The political commissar ensured party loyalty within the ranks.", + "pos": "noun", + "word_frequency": 29750 + }, + { + "word": "congestive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or affected by congestion", + "example_sentence_english": "He was diagnosed with congestive heart failure.", + "pos": "adjective", + "word_frequency": 29751 + }, + { + "word": "cupola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small dome, especially one covering a circular or polygonal opening in a roof or ceiling", + "example_sentence_english": "The old building was topped with a decorative cupola.", + "pos": "noun", + "word_frequency": 29753 + }, + { + "word": "decrypt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convert (a coded message) into intelligible language", + "example_sentence_english": "The intelligence agency managed to decrypt the enemy's messages.", + "pos": "verb", + "word_frequency": 29756 + }, + { + "word": "defector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has abandoned their country or cause in favor of an opposing one", + "example_sentence_english": "The defector provided valuable information to the opposing side.", + "pos": "noun", + "word_frequency": 29758 + }, + { + "word": "despondent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in low spirits from loss of hope or courage", + "example_sentence_english": "After losing the game, the team was completely despondent.", + "pos": "adjective", + "word_frequency": 29759 + }, + { + "word": "despot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a ruler with absolute power, typically one who exercises it in a cruel or oppressive way", + "example_sentence_english": "The country was ruled by a cruel despot for decades.", + "pos": "noun", + "word_frequency": 29760 + }, + { + "word": "dialectical", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the philosophical concept of dialectic; concerned with or acting through opposing forces", + "example_sentence_english": "Her argument was based on a complex dialectical process.", + "pos": "adjective", + "word_frequency": 29761 + }, + { + "word": "digestible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy to digest; easy to understand", + "example_sentence_english": "This food is easily digestible for sensitive stomachs.", + "pos": "adjective", + "word_frequency": 29762 + }, + { + "word": "disassemble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take apart", + "example_sentence_english": "He had to disassemble the furniture to move it.", + "pos": "verb", + "word_frequency": 29763 + }, + { + "word": "disembark", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leave a ship, aircraft, or other vehicle", + "example_sentence_english": "Passengers were asked to disembark the plane quickly.", + "pos": "verb", + "word_frequency": 29764 + }, + { + "word": "dishonorable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bringing shame or disgrace", + "example_sentence_english": "His actions were considered dishonorable by the entire community.", + "pos": "adjective", + "word_frequency": 29765 + }, + { + "word": "dopey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silly or foolish; sluggish or drowsy", + "example_sentence_english": "He felt a bit dopey after taking the cold medicine.", + "pos": "adjective", + "word_frequency": 29767 + }, + { + "word": "ducky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine; excellent; pleasant (informal, somewhat dated)", + "example_sentence_english": "Everything's just ducky, thanks for asking.", + "pos": "adjective", + "word_frequency": 29769 + }, + { + "word": "easel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a wooden frame for holding an artist's work", + "example_sentence_english": "The artist set up her canvas on the easel.", + "pos": "noun", + "word_frequency": 29771 + }, + { + "word": "eastwards", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towards the east", + "example_sentence_english": "They traveled eastwards along the coast.", + "pos": "adverb", + "word_frequency": 29772 + }, + { + "word": "ellipse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a regular oval shape", + "example_sentence_english": "The planet orbits the sun in an elliptical path.", + "pos": "noun", + "word_frequency": 29777 + }, + { + "word": "encoder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device, circuit, transducer, or program that converts information from one format or code to another", + "example_sentence_english": "The video encoder compresses the raw footage.", + "pos": "noun", + "word_frequency": 29779 + }, + { + "word": "enormity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the great or extreme scale, seriousness, or extent of something perceived as bad or morally wrong", + "example_sentence_english": "The enormity of the crime shocked the nation.", + "pos": "noun", + "word_frequency": 29780 + }, + { + "word": "exemplar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing serving as a typical example or excellent model", + "example_sentence_english": "She was an exemplar of dedication and hard work.", + "pos": "noun", + "word_frequency": 29781 + }, + { + "word": "extender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device or substance that extends or prolongs something", + "example_sentence_english": "We bought a Wi-Fi extender to improve the signal in the house.", + "pos": "noun", + "word_frequency": 29782 + }, + { + "word": "extramarital", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring outside marriage", + "example_sentence_english": "The scandal involved an extramarital affair.", + "pos": "adjective", + "word_frequency": 29783 + }, + { + "word": "fandango", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a lively Spanish dance; a foolish or useless act or thing", + "example_sentence_english": "The party turned into a real fandango with everyone dancing.", + "pos": "noun", + "word_frequency": 29784 + }, + { + "word": "farina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a flour or meal made from cereal grains, especially wheat, used in puddings or as a breakfast cereal", + "example_sentence_english": "She made a hot breakfast cereal from farina.", + "pos": "noun", + "word_frequency": 29787 + }, + { + "word": "fete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a public festival or celebration", + "example_sentence_english": "The village held a summer fete to raise money for the church.", + "pos": "noun", + "word_frequency": 29788 + }, + { + "word": "formalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strict adherence to prescribed forms or rules", + "example_sentence_english": "The artist rejected strict formalism in favor of free expression.", + "pos": "noun", + "word_frequency": 29795 + }, + { + "word": "fortuitous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "happening by accident or chance rather than design; happening by a lucky chance", + "example_sentence_english": "It was a fortuitous coincidence that they met at the airport.", + "pos": "adjective", + "word_frequency": 29796 + }, + { + "word": "freestanding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standing alone; not supported by another structure", + "example_sentence_english": "The kitchen has a freestanding island in the center.", + "pos": "adjective", + "word_frequency": 29800 + }, + { + "word": "frenetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fast and energetic in a rather wild and uncontrolled way", + "example_sentence_english": "The frenetic pace of the city can be overwhelming.", + "pos": "adjective", + "word_frequency": 29801 + }, + { + "word": "frolic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "play and move about cheerfully, excitedly, or energetically", + "example_sentence_english": "The puppies loved to frolic in the grass.", + "pos": "verb", + "word_frequency": 29802 + }, + { + "word": "gangrene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "localized death and decomposition of body tissue", + "example_sentence_english": "The doctor warned that without treatment, gangrene could set in.", + "pos": "noun", + "word_frequency": 29805 + }, + { + "word": "gluttony", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "habitual greed or excess in eating", + "example_sentence_english": "Gluttony is considered one of the seven deadly sins.", + "pos": "noun", + "word_frequency": 29809 + }, + { + "word": "goalkeep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act as a goalkeeper", + "example_sentence_english": "He was chosen to goalkeep for the school team.", + "pos": "verb", + "word_frequency": 29810 + }, + { + "word": "goaltend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act as a goaltender", + "example_sentence_english": "She learned to goaltend in her first year of ice hockey.", + "pos": "verb", + "word_frequency": 29811 + }, + { + "word": "goatee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, pointed beard grown only on the chin", + "example_sentence_english": "He decided to grow a goatee for a change of look.", + "pos": "noun", + "word_frequency": 29812 + }, + { + "word": "granddad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandfather (informal)", + "example_sentence_english": "My granddad always tells the best stories.", + "pos": "noun", + "word_frequency": 29816 + }, + { + "word": "grist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grain that is to be ground", + "example_sentence_english": "All his experiences were grist for his writing.", + "pos": "noun", + "word_frequency": 29817 + }, + { + "word": "guardsman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soldier who is a member of a guard", + "example_sentence_english": "A guardsman stood at attention outside the palace.", + "pos": "noun", + "word_frequency": 29819 + }, + { + "word": "hammerhead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of shark with a flattened, T-shaped head; the head of a hammer", + "example_sentence_english": "We saw a hammerhead shark while diving.", + "pos": "noun", + "word_frequency": 29823 + }, + { + "word": "hangman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who hangs criminals; a word-guessing game", + "example_sentence_english": "Let's play a game of hangman.", + "pos": "noun", + "word_frequency": 29824 + }, + { + "word": "haughty", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arrogantly superior and disdainful", + "example_sentence_english": "Her haughty attitude made her unpopular.", + "pos": "adjective", + "word_frequency": 29826 + }, + { + "word": "headmistress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who is the head of a school", + "example_sentence_english": "The headmistress addressed the students in the assembly.", + "pos": "noun", + "word_frequency": 29827 + }, + { + "word": "headteacher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the person in charge of a school", + "example_sentence_english": "The headteacher announced the new school policy.", + "pos": "noun", + "word_frequency": 29828 + }, + { + "word": "horseradish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant of the cabbage family, with a hot, pungent root", + "example_sentence_english": "Horseradish sauce is often served with roast beef.", + "pos": "noun", + "word_frequency": 29831 + }, + { + "word": "hotshot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an impressively skillful or successful person", + "example_sentence_english": "He's a real hotshot in the tech industry.", + "pos": "noun", + "word_frequency": 29832 + }, + { + "word": "hypoglycemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "low blood sugar", + "example_sentence_english": "Symptoms of hypoglycemia include dizziness and confusion.", + "pos": "noun", + "word_frequency": 29835 + }, + { + "word": "hypothyroidism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "underactive thyroid gland", + "example_sentence_english": "Hypothyroidism can cause fatigue and weight gain.", + "pos": "noun", + "word_frequency": 29836 + }, + { + "word": "imprecise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not precise; vague or inaccurate", + "example_sentence_english": "The instructions were imprecise and difficult to follow.", + "pos": "adjective", + "word_frequency": 29838 + }, + { + "word": "indigent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poor; needy", + "example_sentence_english": "The city provides services for its indigent population.", + "pos": "adjective", + "word_frequency": 29839 + }, + { + "word": "intramural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "within an institution or organization", + "example_sentence_english": "They participate in intramural sports at the university.", + "pos": "adjective", + "word_frequency": 29841 + }, + { + "word": "invulnerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to harm or damage", + "example_sentence_english": "Superman is often portrayed as invulnerable.", + "pos": "adjective", + "word_frequency": 29842 + }, + { + "word": "irreconcilable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to reconcile; incompatible", + "example_sentence_english": "They had irreconcilable differences that led to their divorce.", + "pos": "adjective", + "word_frequency": 29843 + }, + { + "word": "jawbone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the bone of the jaw", + "example_sentence_english": "The dentist examined the patient's jawbone.", + "pos": "noun", + "word_frequency": 29846 + }, + { + "word": "jittery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nervous or uneasy", + "example_sentence_english": "She felt jittery before her big presentation.", + "pos": "adjective", + "word_frequency": 29847 + }, + { + "word": "judicious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having, showing, or done with good judgment or sense", + "example_sentence_english": "It was a judicious decision to invest in renewable energy.", + "pos": "adjective", + "word_frequency": 29849 + }, + { + "word": "kinsman", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a male relative", + "example_sentence_english": "He traveled far to visit his kinsman.", + "pos": "noun", + "word_frequency": 29855 + }, + { + "word": "laudable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving praise and commendation", + "example_sentence_english": "Her efforts to help the community were truly laudable.", + "pos": "adjective", + "word_frequency": 29862 + }, + { + "word": "liberalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the removal or loosening of restrictions", + "example_sentence_english": "The government announced the liberalisation of trade policies.", + "pos": "noun", + "word_frequency": 29867 + }, + { + "word": "liftoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of a spacecraft or rocket leaving the ground", + "example_sentence_english": "The crowd cheered as the rocket began its liftoff.", + "pos": "noun", + "word_frequency": 29868 + }, + { + "word": "logarithmic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to logarithms", + "example_sentence_english": "The data was plotted on a logarithmic scale.", + "pos": "adjective", + "word_frequency": 29872 + }, + { + "word": "loudness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being loud", + "example_sentence_english": "The loudness of the music was unbearable.", + "pos": "noun", + "word_frequency": 29873 + }, + { + "word": "macroeconomics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the branch of economics concerned with large-scale or general economic factors", + "example_sentence_english": "Students in economics often study both microeconomics and macroeconomics.", + "pos": "noun", + "word_frequency": 29878 + }, + { + "word": "majlis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a legislative assembly or council in some Islamic countries", + "example_sentence_english": "The Majlis approved the new budget.", + "pos": "noun", + "word_frequency": 29879 + }, + { + "word": "mesozoic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the geological era from about 252 to 66 million years ago, characterized by the dominance of dinosaurs", + "example_sentence_english": "Dinosaurs roamed the Earth during the Mesozoic Era.", + "pos": "noun", + "word_frequency": 29891 + }, + { + "word": "militarize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To equip with military resources; to give a military character to", + "example_sentence_english": "The government decided to militarize the border region.", + "pos": "verb", + "word_frequency": 29894 + }, + { + "word": "misinterpretation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An incorrect understanding or explanation of something", + "example_sentence_english": "His silence led to a complete misinterpretation of his feelings.", + "pos": "noun", + "word_frequency": 29895 + }, + { + "word": "mobilise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To prepare and organize for active service or use (British English spelling)", + "example_sentence_english": "The community managed to mobilise quickly after the disaster.", + "pos": "verb", + "word_frequency": 29896 + }, + { + "word": "moorland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An area of open uncultivated upland, typically covered with heather", + "example_sentence_english": "We hiked across the vast moorland, enjoying the wild scenery.", + "pos": "noun", + "word_frequency": 29897 + }, + { + "word": "narcissus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A type of flower, typically with white or yellow petals and a trumpet-shaped corona; a person who has excessive admiration of themselves", + "example_sentence_english": "The garden was filled with fragrant narcissus in early spring.", + "pos": "noun", + "word_frequency": 29899 + }, + { + "word": "neurodegenerative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or causing progressive damage to the nervous system", + "example_sentence_english": "Alzheimer's disease is a common neurodegenerative disorder.", + "pos": "adjective", + "word_frequency": 29901 + }, + { + "word": "occipital", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the back of the head or skull", + "example_sentence_english": "The injury affected the occipital lobe of the brain.", + "pos": "adjective", + "word_frequency": 29909 + }, + { + "word": "ophthalmic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the eye and its diseases", + "example_sentence_english": "She visited an ophthalmic surgeon for her eye condition.", + "pos": "adjective", + "word_frequency": 29910 + }, + { + "word": "ostentatious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Characterized by vulgar or pretentious display; designed to impress or attract notice", + "example_sentence_english": "He made an ostentatious display of his new wealth.", + "pos": "adjective", + "word_frequency": 29911 + }, + { + "word": "osteopathic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to a system of medicine emphasizing the interrelationship of the body's systems and the importance of structural integrity", + "example_sentence_english": "She sought treatment from an osteopathic physician for her back pain.", + "pos": "adjective", + "word_frequency": 29912 + }, + { + "word": "oversize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Larger than the usual or standard size", + "example_sentence_english": "He bought an oversize sweater for comfort.", + "pos": "adjective", + "word_frequency": 29914 + }, + { + "word": "padlock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A detachable lock with a U-shaped shackle that can be passed through an opening and then snapped shut", + "example_sentence_english": "She secured the gate with a heavy padlock.", + "pos": "noun", + "word_frequency": 29915 + }, + { + "word": "panini", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A grilled sandwich made from a small loaf of bread", + "example_sentence_english": "I ordered a chicken and pesto panini for lunch.", + "pos": "noun", + "word_frequency": 29918 + }, + { + "word": "patina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a green or brown film on the surface of bronze or similar metals, produced by oxidation over a long period.", + "example_sentence_english": "The old bronze statue had a beautiful green patina.", + "pos": "noun", + "word_frequency": 29920 + }, + { + "word": "perspiration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sweat.", + "example_sentence_english": "Beads of perspiration formed on his forehead.", + "pos": "noun", + "word_frequency": 29924 + }, + { + "word": "plagiarize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take the work or an idea of someone else and pass it off as one's own.", + "example_sentence_english": "It is wrong to plagiarize someone else's essay.", + "pos": "verb", + "word_frequency": 29929 + }, + { + "word": "playthrough", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of playing through a video game from start to finish.", + "example_sentence_english": "I watched a full playthrough of the new game online.", + "pos": "noun", + "word_frequency": 29931 + }, + { + "word": "pleaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who tries to please others.", + "example_sentence_english": "She's such a people-pleaser, always trying to make everyone happy.", + "pos": "noun", + "word_frequency": 29932 + }, + { + "word": "policyholder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or group in whose name an insurance policy is held.", + "example_sentence_english": "The insurance company sent a notice to all policyholders.", + "pos": "noun", + "word_frequency": 29934 + }, + { + "word": "pontifical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Pope; characterized by an air of superior knowledge or authority.", + "example_sentence_english": "He delivered his speech with a pontifical air, as if he knew everything.", + "pos": "adjective", + "word_frequency": 29935 + }, + { + "word": "postcolonial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the period after the end of colonial rule.", + "example_sentence_english": "Many postcolonial nations faced challenges in establishing their new identities.", + "pos": "adjective", + "word_frequency": 29936 + }, + { + "word": "prostrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lying stretched out on the ground with one's face downward; completely overcome and helpless.", + "example_sentence_english": "He fell prostrate before the king.", + "pos": "adjective", + "word_frequency": 29939 + }, + { + "word": "publicise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make something known to the public.", + "example_sentence_english": "They hired a firm to publicise their new product.", + "pos": "verb", + "word_frequency": 29941 + }, + { + "word": "pushover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is easily persuaded or influenced.", + "example_sentence_english": "Don't be a pushover; stand up for yourself.", + "pos": "noun", + "word_frequency": 29942 + }, + { + "word": "quicksand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mass of loose sand mixed with water, yielding easily to pressure and tending to suck down anything resting on or falling into it.", + "example_sentence_english": "Be careful not to step into the quicksand.", + "pos": "noun", + "word_frequency": 29944 + }, + { + "word": "raincoat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a waterproof coat.", + "example_sentence_english": "Don't forget your raincoat; it's going to rain.", + "pos": "noun", + "word_frequency": 29946 + }, + { + "word": "redevelop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to develop again or in a new way.", + "example_sentence_english": "The city plans to redevelop the old industrial area.", + "pos": "verb", + "word_frequency": 29951 + }, + { + "word": "relativism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the doctrine that knowledge, truth, and morality exist in relation to culture, society, or historical context, and are not absolute.", + "example_sentence_english": "Cultural relativism suggests that moral standards vary between societies.", + "pos": "noun", + "word_frequency": 29955 + }, + { + "word": "representational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characterized by representation, especially of the external world in art or philosophy.", + "example_sentence_english": "The artist moved from abstract to a more representational style.", + "pos": "adjective", + "word_frequency": 29958 + }, + { + "word": "republicanism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the principles or policy of the Republican party; the principles of a republican government.", + "example_sentence_english": "American republicanism emphasizes civic virtue and popular sovereignty.", + "pos": "noun", + "word_frequency": 29959 + }, + { + "word": "restaurateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restaurant owner", + "example_sentence_english": "The restaurateur greeted every guest personally.", + "pos": "noun", + "word_frequency": 29960 + }, + { + "word": "rickety", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaky, unstable", + "example_sentence_english": "The old bridge looked rickety and unsafe.", + "pos": "adjective", + "word_frequency": 29962 + }, + { + "word": "ricotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a soft Italian cheese", + "example_sentence_english": "She used ricotta cheese to make lasagna.", + "pos": "noun", + "word_frequency": 29963 + }, + { + "word": "ridership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the number of passengers", + "example_sentence_english": "Public transport ridership increased during the fuel crisis.", + "pos": "noun", + "word_frequency": 29965 + }, + { + "word": "sacra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacred things; sacred rites", + "example_sentence_english": "The ancient texts describe the sacra of the temple.", + "pos": "noun", + "word_frequency": 29971 + }, + { + "word": "sappy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overly sentimental; foolishly emotional", + "example_sentence_english": "The romantic comedy was a bit too sappy for my taste.", + "pos": "adjective", + "word_frequency": 29973 + }, + { + "word": "sasquatch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bigfoot; a large, hairy, ape-like creature", + "example_sentence_english": "Many people claim to have seen a Sasquatch in the wilderness.", + "pos": "noun", + "word_frequency": 29975 + }, + { + "word": "semite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of any of the peoples who speak or spoke a Semitic language", + "example_sentence_english": "Hebrew is a Semitic language, spoken by Semites.", + "pos": "noun", + "word_frequency": 29977 + }, + { + "word": "sepulchre", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a small room or monument, cut in rock or built of stone, in which a dead person is laid or buried", + "example_sentence_english": "The ancient king was laid to rest in a grand sepulchre.", + "pos": "noun", + "word_frequency": 29978 + }, + { + "word": "shallot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small onion-like vegetable", + "example_sentence_english": "She chopped some shallots for the sauce.", + "pos": "noun", + "word_frequency": 29980 + }, + { + "word": "shill", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who publicizes or praises something or someone for reasons of self-interest, personal profit, or ulterior motive", + "example_sentence_english": "The influencer was accused of being a shill for the product.", + "pos": "noun", + "word_frequency": 29981 + }, + { + "word": "sich", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a fortified camp of Ukrainian Cossacks", + "example_sentence_english": "The Zaporozhian Sich was a semi-independent Cossack polity.", + "pos": "noun", + "word_frequency": 29982 + }, + { + "word": "sixpence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a former British coin worth six pennies", + "example_sentence_english": "He found an old sixpence coin in the garden.", + "pos": "noun", + "word_frequency": 29983 + }, + { + "word": "skinhead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a subculture characterized by a shaven head and anti-establishment views", + "example_sentence_english": "The documentary explored the history of the skinhead movement.", + "pos": "noun", + "word_frequency": 29986 + }, + { + "word": "slat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thin, flat strip of wood or metal", + "example_sentence_english": "One of the slats on the fence was broken.", + "pos": "noun", + "word_frequency": 29987 + }, + { + "word": "snorkel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swim using a snorkel", + "example_sentence_english": "We went snorkeling in the clear blue waters.", + "pos": "verb", + "word_frequency": 29989 + }, + { + "word": "solenoid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cylindrical coil of wire acting as a magnet when carrying electric current", + "example_sentence_english": "The car's starter motor uses a solenoid.", + "pos": "noun", + "word_frequency": 29990 + }, + { + "word": "songbird", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bird with a musical call", + "example_sentence_english": "A beautiful songbird was singing outside my window.", + "pos": "noun", + "word_frequency": 29991 + }, + { + "word": "sortie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an operational flight by a single aircraft", + "example_sentence_english": "The fighter jet completed its reconnaissance sortie.", + "pos": "noun", + "word_frequency": 29992 + }, + { + "word": "storehouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a building for storing goods", + "example_sentence_english": "The old factory was converted into a large storehouse.", + "pos": "noun", + "word_frequency": 30001 + }, + { + "word": "striptease", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an act of undressing to music", + "example_sentence_english": "The club featured a nightly striptease show.", + "pos": "noun", + "word_frequency": 30003 + }, + { + "word": "sumerian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of the ancient non-Semitic people of Sumer", + "example_sentence_english": "The Sumerian civilization developed cuneiform writing.", + "pos": "noun", + "word_frequency": 30005 + }, + { + "word": "synergistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "working together to produce an effect greater than the sum of their individual effects", + "example_sentence_english": "The team's efforts were synergistic, leading to a breakthrough.", + "pos": "adjective", + "word_frequency": 30007 + }, + { + "word": "tantric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characteristic of Tantra", + "example_sentence_english": "She was studying tantric yoga practices.", + "pos": "adjective", + "word_frequency": 30009 + }, + { + "word": "taoist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a follower of Taoism", + "example_sentence_english": "A Taoist seeks harmony with nature.", + "pos": "noun", + "word_frequency": 30010 + }, + { + "word": "theatric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a theatrical performance or element", + "example_sentence_english": "The play was full of dramatic theatric.", + "pos": "noun", + "word_frequency": 30015 + }, + { + "word": "trachea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the windpipe", + "example_sentence_english": "Air passes through the trachea to reach the lungs.", + "pos": "noun", + "word_frequency": 30023 + }, + { + "word": "transitory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not permanent or lasting", + "example_sentence_english": "Life is full of transitory moments.", + "pos": "adjective", + "word_frequency": 30024 + }, + { + "word": "treasonous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving or guilty of treason", + "example_sentence_english": "His actions were deemed treasonous by the court.", + "pos": "adjective", + "word_frequency": 30025 + }, + { + "word": "tribalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of living in tribes or strong loyalty to one's own tribe or social group", + "example_sentence_english": "The rise of tribalism can lead to conflict.", + "pos": "noun", + "word_frequency": 30026 + }, + { + "word": "trig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short for trigonometry", + "example_sentence_english": "I have a trig test tomorrow.", + "pos": "noun", + "word_frequency": 30027 + }, + { + "word": "truckload", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the amount that a truck can carry", + "example_sentence_english": "We ordered a whole truckload of sand for the construction.", + "pos": "noun", + "word_frequency": 30028 + }, + { + "word": "unattached", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not formally connected or associated; not in a romantic relationship", + "example_sentence_english": "She preferred to remain unattached and independent.", + "pos": "adjective", + "word_frequency": 30033 + }, + { + "word": "unmanageable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difficult or impossible to manage or control", + "example_sentence_english": "The project became unmanageable due to its complexity.", + "pos": "adjective", + "word_frequency": 30035 + }, + { + "word": "unmoved", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not affected by emotion or persuasion; not having changed position", + "example_sentence_english": "He remained unmoved by her pleas.", + "pos": "adjective", + "word_frequency": 30036 + }, + { + "word": "upshot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the final or eventual outcome or conclusion of a discussion, action, or series of events", + "example_sentence_english": "The upshot of the meeting was a decision to proceed with the plan.", + "pos": "noun", + "word_frequency": 30038 + }, + { + "word": "upsurge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an increase or surge", + "example_sentence_english": "There has been an upsurge in demand for renewable energy.", + "pos": "noun", + "word_frequency": 30039 + }, + { + "word": "vivacious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lively and animated", + "example_sentence_english": "She has a vivacious personality that lights up any room.", + "pos": "adjective", + "word_frequency": 30045 + }, + { + "word": "voyeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who gains sexual pleasure from watching others", + "example_sentence_english": "The police arrested the voyeur who was peeking into windows.", + "pos": "noun", + "word_frequency": 30046 + }, + { + "word": "warlike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostile; aggressive; ready for war", + "example_sentence_english": "The country's warlike rhetoric worried its neighbors.", + "pos": "adjective", + "word_frequency": 30047 + }, + { + "word": "warmup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation for physical activity", + "example_sentence_english": "Always do a proper warmup before exercising to prevent injuries.", + "pos": "noun", + "word_frequency": 30048 + }, + { + "word": "wisp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thin, wispy piece or amount", + "example_sentence_english": "A wisp of smoke curled up from the campfire.", + "pos": "noun", + "word_frequency": 30052 + }, + { + "word": "wold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an area of open country, typically undulating or hilly", + "example_sentence_english": "The sheep grazed peacefully on the green wold.", + "pos": "noun", + "word_frequency": 30053 + }, + { + "word": "yearling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal between one and two years old", + "example_sentence_english": "The young horse, a yearling, galloped across the field.", + "pos": "noun", + "word_frequency": 30058 + }, + { + "word": "abortive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "failing to produce the intended result", + "example_sentence_english": "The coup attempt was abortive and quickly suppressed.", + "pos": "adj", + "word_frequency": 30067 + }, + { + "word": "aikido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a Japanese martial art", + "example_sentence_english": "She practices Aikido twice a week to improve her discipline.", + "pos": "noun", + "word_frequency": 30069 + }, + { + "word": "alkaloid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a class of naturally occurring organic compounds", + "example_sentence_english": "Morphine is a well-known alkaloid derived from opium.", + "pos": "noun", + "word_frequency": 30073 + }, + { + "word": "anagram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a word, phrase, or name formed by rearranging the letters of another", + "example_sentence_english": "'Listen' is an anagram of 'silent'.", + "pos": "noun", + "word_frequency": 30076 + }, + { + "word": "apostate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who abandons a religious or political belief", + "example_sentence_english": "He was declared an apostate after publicly renouncing his faith.", + "pos": "noun", + "word_frequency": 30077 + }, + { + "word": "archway", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a curved structure forming an entrance or passage", + "example_sentence_english": "They walked through the ancient stone archway into the courtyard.", + "pos": "noun", + "word_frequency": 30078 + }, + { + "word": "axon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "axon", + "example_sentence_english": "An axon is a long, slender projection of a nerve cell.", + "pos": "noun", + "word_frequency": 30083 + }, + { + "word": "backpacker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backpacker", + "example_sentence_english": "Many young backpackers travel through Southeast Asia.", + "pos": "noun", + "word_frequency": 30086 + }, + { + "word": "bahn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "railway; path", + "example_sentence_english": "The Autobahn is famous for its lack of speed limits in some sections.", + "pos": "noun", + "word_frequency": 30087 + }, + { + "word": "baptismal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to baptism", + "example_sentence_english": "The church has a beautiful baptismal font.", + "pos": "adj", + "word_frequency": 30088 + }, + { + "word": "beeswax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beeswax", + "example_sentence_english": "Beeswax is often used to make candles and polish.", + "pos": "noun", + "word_frequency": 30093 + }, + { + "word": "benthic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the bottom of a sea or lake", + "example_sentence_english": "Benthic organisms live on or in the seabed.", + "pos": "adj", + "word_frequency": 30095 + }, + { + "word": "berate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scold or criticize angrily", + "example_sentence_english": "The coach would often berate his players for their mistakes.", + "pos": "verb", + "word_frequency": 30096 + }, + { + "word": "bight", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a curve or recess in a coastline, river, or other geographical feature", + "example_sentence_english": "The ship sailed into the bight to find shelter from the storm.", + "pos": "noun", + "word_frequency": 30099 + }, + { + "word": "bilge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the lowest part of a ship's hull; nonsense", + "example_sentence_english": "The pump was used to clear water from the bilge.", + "pos": "noun", + "word_frequency": 30100 + }, + { + "word": "biohazard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a risk of exposure to biological material that could cause harm", + "example_sentence_english": "The laboratory had clear signs indicating a biohazard area.", + "pos": "noun", + "word_frequency": 30101 + }, + { + "word": "breaststroke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a style of swimming", + "example_sentence_english": "The breaststroke is often considered the slowest competitive swimming stroke.", + "pos": "noun", + "word_frequency": 30106 + }, + { + "word": "breeches", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short trousers fastened just below the knee", + "example_sentence_english": "The horse rider wore traditional riding breeches.", + "pos": "noun", + "word_frequency": 30107 + }, + { + "word": "buttress", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a projecting support built against a wall; a source of defense or support", + "example_sentence_english": "The ancient cathedral was supported by massive stone buttresses.", + "pos": "noun", + "word_frequency": 30108 + }, + { + "word": "camber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a slight arch or curve in a surface", + "example_sentence_english": "The road had a slight camber to allow for water drainage.", + "pos": "noun", + "word_frequency": 30110 + }, + { + "word": "cartography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the art or science of drawing maps", + "example_sentence_english": "Modern cartography uses satellite imagery and GIS technology.", + "pos": "noun", + "word_frequency": 30112 + }, + { + "word": "cataclysmic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting a violent natural event", + "example_sentence_english": "The eruption of the volcano was a truly cataclysmic event.", + "pos": "adj", + "word_frequency": 30113 + }, + { + "word": "catharsis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of releasing, and thereby providing relief from, strong or repressed emotions", + "example_sentence_english": "Writing in her journal provided a sense of catharsis after the difficult experience.", + "pos": "noun", + "word_frequency": 30114 + }, + { + "word": "cerebellum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a part of the brain at the back of the skull", + "example_sentence_english": "The cerebellum plays a vital role in motor control and coordination.", + "pos": "noun", + "word_frequency": 30115 + }, + { + "word": "chiral", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "having a non-superimposable mirror image", + "example_sentence_english": "Many biological molecules are chiral, existing as left- or right-handed forms.", + "pos": "adj", + "word_frequency": 30118 + }, + { + "word": "codec", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A device or program that encodes or decodes a digital data stream or signal.", + "example_sentence_english": "The video file requires a specific codec to play correctly.", + "pos": "noun", + "word_frequency": 30120 + }, + { + "word": "cohabitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state of living together and having a sexual relationship without being married.", + "example_sentence_english": "Cohabitation is becoming more common before marriage.", + "pos": "noun", + "word_frequency": 30121 + }, + { + "word": "collapsible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Able to be folded flat or into a smaller shape.", + "example_sentence_english": "We bought a collapsible table for camping.", + "pos": "adj", + "word_frequency": 30122 + }, + { + "word": "conga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A Cuban dance of African origin, performed by a line of dancers in single file.", + "example_sentence_english": "Everyone joined in the conga line at the party.", + "pos": "noun", + "word_frequency": 30123 + }, + { + "word": "consumable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An item that is used up or consumed.", + "example_sentence_english": "Office supplies are considered consumables.", + "pos": "noun", + "word_frequency": 30124 + }, + { + "word": "contravention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An action that violates a law, treaty, or code of conduct.", + "example_sentence_english": "His actions were a clear contravention of the company policy.", + "pos": "noun", + "word_frequency": 30125 + }, + { + "word": "copier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A machine that makes copies of documents.", + "example_sentence_english": "The office copier is out of toner again.", + "pos": "noun", + "word_frequency": 30126 + }, + { + "word": "corticosteroid", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Any of a group of steroid hormones produced in the adrenal cortex or made synthetically.", + "example_sentence_english": "The doctor prescribed a corticosteroid to reduce the inflammation.", + "pos": "noun", + "word_frequency": 30128 + }, + { + "word": "creamery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A place where butter and cheese are made, or where milk and cream are processed.", + "example_sentence_english": "We visited the local creamery to buy fresh cheese.", + "pos": "noun", + "word_frequency": 30130 + }, + { + "word": "dicey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Risky; uncertain.", + "example_sentence_english": "The weather conditions made the climb a bit dicey.", + "pos": "adj", + "word_frequency": 30138 + }, + { + "word": "disinfection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The process of cleaning something to destroy bacteria.", + "example_sentence_english": "Proper disinfection is crucial in hospitals.", + "pos": "noun", + "word_frequency": 30139 + }, + { + "word": "disobedient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Refusing to obey rules or someone in authority.", + "example_sentence_english": "The disobedient child refused to go to bed.", + "pos": "adj", + "word_frequency": 30140 + }, + { + "word": "divestment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action or process of selling off subsidiary business interests or investments.", + "example_sentence_english": "The company announced its divestment from fossil fuels.", + "pos": "noun", + "word_frequency": 30141 + }, + { + "word": "downtrodden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Oppressed or treated badly by people in power.", + "example_sentence_english": "He fought for the rights of the downtrodden.", + "pos": "adj", + "word_frequency": 30144 + }, + { + "word": "drowsiness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A state of feeling sleepy and lethargic.", + "example_sentence_english": "The medication can cause drowsiness.", + "pos": "noun", + "word_frequency": 30145 + }, + { + "word": "dysplasia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "The abnormal growth or development of cells, tissue, or organs.", + "example_sentence_english": "The biopsy revealed signs of dysplasia.", + "pos": "noun", + "word_frequency": 30149 + }, + { + "word": "ecologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who studies the relationships between living organisms and their environment.", + "example_sentence_english": "An ecologist presented findings on climate change.", + "pos": "noun", + "word_frequency": 30151 + }, + { + "word": "effluent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Liquid waste or sewage discharged into a river or the sea.", + "example_sentence_english": "The factory was fined for discharging untreated effluent into the river.", + "pos": "noun", + "word_frequency": 30153 + }, + { + "word": "egress", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action of going out of or leaving a place.", + "example_sentence_english": "The building has multiple points of egress in case of emergency.", + "pos": "noun", + "word_frequency": 30154 + }, + { + "word": "encephalopathy", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Any disease of the brain that alters brain function or structure.", + "example_sentence_english": "The patient was diagnosed with hepatic encephalopathy.", + "pos": "noun", + "word_frequency": 30155 + }, + { + "word": "endangerment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The state of being in danger or at risk.", + "example_sentence_english": "The new law aims to prevent the endangerment of rare species.", + "pos": "noun", + "word_frequency": 30156 + }, + { + "word": "enrol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "To officially register as a member of an institution or a student on a course.", + "example_sentence_english": "You need to enrol for the course by Friday.", + "pos": "verb", + "word_frequency": 30157 + }, + { + "word": "eventuality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A possible event or outcome.", + "example_sentence_english": "We must prepare for every eventuality.", + "pos": "noun", + "word_frequency": 30159 + }, + { + "word": "evermore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forever; always", + "example_sentence_english": "She vowed to love him evermore.", + "pos": "adv", + "word_frequency": 30160 + }, + { + "word": "excretion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of eliminating waste products from the body", + "example_sentence_english": "The kidneys are vital organs for the excretion of waste.", + "pos": "noun", + "word_frequency": 30161 + }, + { + "word": "exegesis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "critical explanation or interpretation of a text, especially of scripture", + "example_sentence_english": "His exegesis of the ancient text provided new insights.", + "pos": "noun", + "word_frequency": 30162 + }, + { + "word": "exhume", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dig out (something buried, especially a corpse) from the ground", + "example_sentence_english": "The police decided to exhume the body for further examination.", + "pos": "verb", + "word_frequency": 30163 + }, + { + "word": "expunge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erase or remove completely (something unwanted or unpleasant)", + "example_sentence_english": "He tried to expunge the painful memories from his mind.", + "pos": "verb", + "word_frequency": 30164 + }, + { + "word": "extrajudicial", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "(of an action or procedure) occurring or executed without legal authority", + "example_sentence_english": "The report detailed several cases of extrajudicial killings.", + "pos": "adj", + "word_frequency": 30165 + }, + { + "word": "extrapolate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extend the application of (a method or conclusion) to an unknown situation by assuming that existing trends will continue or similar methods will be applicable", + "example_sentence_english": "We can extrapolate the results to the larger population.", + "pos": "verb", + "word_frequency": 30166 + }, + { + "word": "flavorful", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full of flavor; tasty", + "example_sentence_english": "This soup is very flavorful.", + "pos": "adj", + "word_frequency": 30170 + }, + { + "word": "freemason", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a member of an international fraternal organization with secret rituals", + "example_sentence_english": "He was a proud Freemason for many years.", + "pos": "noun", + "word_frequency": 30171 + }, + { + "word": "galena", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a common mineral, lead sulfide, that is the principal ore of lead", + "example_sentence_english": "Galena has a distinctive metallic luster.", + "pos": "noun", + "word_frequency": 30175 + }, + { + "word": "gamecock", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rooster bred and trained for cockfighting", + "example_sentence_english": "The gamecock was known for its aggressive nature.", + "pos": "noun", + "word_frequency": 30176 + }, + { + "word": "ghee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarified butter, especially that used in Indian cooking", + "example_sentence_english": "She cooked the curry with ghee.", + "pos": "noun", + "word_frequency": 30178 + }, + { + "word": "gravitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the force of attraction between all masses in the universe", + "example_sentence_english": "Newton's law of universal gravitation explains why apples fall.", + "pos": "noun", + "word_frequency": 30183 + }, + { + "word": "harmonize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "add notes to (a melody) to produce harmony; make consistent or compatible", + "example_sentence_english": "The singers tried to harmonize their voices.", + "pos": "verb", + "word_frequency": 30189 + }, + { + "word": "headwater", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the source of a river or stream", + "example_sentence_english": "The headwaters of the Amazon River are in the Andes.", + "pos": "noun", + "word_frequency": 30194 + }, + { + "word": "herbarium", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a collection of preserved plant specimens, typically dried and mounted on sheets, with associated data, used for scientific study", + "example_sentence_english": "The botanist spent hours in the herbarium.", + "pos": "noun", + "word_frequency": 30196 + }, + { + "word": "hew", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chop or cut (something, especially wood or coal) with an axe, pick, or other tool", + "example_sentence_english": "The sculptor began to hew the stone into shape.", + "pos": "verb", + "word_frequency": 30197 + }, + { + "word": "honeysuckle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a climbing shrub with fragrant, tubular flowers", + "example_sentence_english": "The sweet scent of honeysuckle filled the air.", + "pos": "noun", + "word_frequency": 30199 + }, + { + "word": "houseboat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boat that is designed to be lived in", + "example_sentence_english": "They spent their vacation living on a houseboat on the lake.", + "pos": "noun", + "word_frequency": 30201 + }, + { + "word": "hypothalamus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a region of the forebrain below the thalamus that coordinates the autonomic nervous system and the activity of the pituitary, controlling body temperature, thirst, hunger, and other homeostatic systems, and involved in sleep and emotional activity", + "example_sentence_english": "The hypothalamus plays a crucial role in regulating body temperature.", + "pos": "noun", + "word_frequency": 30203 + }, + { + "word": "immobilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prevent something or someone from moving", + "example_sentence_english": "The doctor had to immobilize her arm after the injury.", + "pos": "verb", + "word_frequency": 30206 + }, + { + "word": "imperium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supreme power; absolute dominion", + "example_sentence_english": "The Roman imperium extended across vast territories.", + "pos": "noun", + "word_frequency": 30207 + }, + { + "word": "inimitable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "so good or unusual as to be impossible to copy; unique", + "example_sentence_english": "Her inimitable style made her stand out from the crowd.", + "pos": "adj", + "word_frequency": 30208 + }, + { + "word": "jogger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person who jogs, especially regularly", + "example_sentence_english": "The park was full of joggers enjoying the morning air.", + "pos": "noun", + "word_frequency": 30214 + }, + { + "word": "jumpy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nervous and easily startled", + "example_sentence_english": "She felt jumpy after watching the horror movie.", + "pos": "adj", + "word_frequency": 30215 + }, + { + "word": "krone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the monetary unit of Denmark, Norway, and other countries", + "example_sentence_english": "The price of the souvenir was 50 Danish krone.", + "pos": "noun", + "word_frequency": 30225 + }, + { + "word": "laceration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a deep cut or tear in skin or flesh", + "example_sentence_english": "He received a deep laceration on his arm from the broken glass.", + "pos": "noun", + "word_frequency": 30226 + }, + { + "word": "ladybug", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, round beetle with a red or orange back with black spots", + "example_sentence_english": "A ladybug landed on my hand in the garden.", + "pos": "noun", + "word_frequency": 30227 + }, + { + "word": "layover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a period of rest or waiting before a further stage in a journey", + "example_sentence_english": "We had a three-hour layover in Chicago before our connecting flight.", + "pos": "noun", + "word_frequency": 30230 + }, + { + "word": "loath", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reluctant; unwilling", + "example_sentence_english": "She was loath to admit her mistake.", + "pos": "adj", + "word_frequency": 30233 + }, + { + "word": "loopy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy or eccentric; silly", + "example_sentence_english": "He came up with a rather loopy idea for the project.", + "pos": "adj", + "word_frequency": 30234 + }, + { + "word": "masa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Corn dough", + "example_sentence_english": "The tortillas are made from masa.", + "pos": "noun", + "word_frequency": 30243 + }, + { + "word": "matcha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Powdered green tea", + "example_sentence_english": "She enjoys a warm cup of matcha every morning.", + "pos": "noun", + "word_frequency": 30244 + }, + { + "word": "matchbox", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Small box for matches", + "example_sentence_english": "He lit the candle with a match from the matchbox.", + "pos": "noun", + "word_frequency": 30245 + }, + { + "word": "metamorphic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or denoting the transformation of a rock or mineral by heat, pressure, or other natural agencies.", + "example_sentence_english": "Metamorphic rocks are formed from existing rocks by heat and pressure.", + "pos": "adj", + "word_frequency": 30250 + }, + { + "word": "mongoose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Small carnivorous mammal", + "example_sentence_english": "The mongoose is known for its ability to fight snakes.", + "pos": "noun", + "word_frequency": 30252 + }, + { + "word": "motility", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The ability of an organism or cell to move independently.", + "example_sentence_english": "The doctor tested the sperm's motility.", + "pos": "noun", + "word_frequency": 30254 + }, + { + "word": "mucosa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A mucous membrane.", + "example_sentence_english": "The lining of the stomach is called the gastric mucosa.", + "pos": "noun", + "word_frequency": 30256 + }, + { + "word": "naysayer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who habitually expresses negative or pessimistic views.", + "example_sentence_english": "Don't listen to the naysayers; believe in your own abilities.", + "pos": "noun", + "word_frequency": 30260 + }, + { + "word": "netizen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An active participant in the online community.", + "example_sentence_english": "The netizen expressed their opinion in the online forum.", + "pos": "noun", + "word_frequency": 30261 + }, + { + "word": "neuromuscular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to both nerves and muscles.", + "example_sentence_english": "Neuromuscular disorders affect the communication between the brain and muscles.", + "pos": "adj", + "word_frequency": 30262 + }, + { + "word": "obsolescence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of becoming obsolete or outdated.", + "example_sentence_english": "Technological obsolescence is a major challenge for manufacturers.", + "pos": "noun", + "word_frequency": 30269 + }, + { + "word": "obstetrician", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A doctor specializing in childbirth and the care of women during pregnancy.", + "example_sentence_english": "The pregnant woman had an appointment with her obstetrician.", + "pos": "noun", + "word_frequency": 30270 + }, + { + "word": "ordinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to a number indicating position in a series.", + "example_sentence_english": "\"First,\" \"second,\" and \"third\" are ordinal numbers.", + "pos": "adj", + "word_frequency": 30274 + }, + { + "word": "outsmart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Defeat or get the better of (someone) by being more clever or cunning.", + "example_sentence_english": "The mouse managed to outsmart the cat and escape.", + "pos": "verb", + "word_frequency": 30275 + }, + { + "word": "overcook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cook (food) for too long.", + "example_sentence_english": "Be careful not to overcook the pasta, or it will be mushy.", + "pos": "verb", + "word_frequency": 30276 + }, + { + "word": "pashtun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A member of a Pashto-speaking people inhabiting southern Afghanistan and northwestern Pakistan.", + "example_sentence_english": "The Pashtun people have a rich cultural heritage.", + "pos": "noun", + "word_frequency": 30278 + }, + { + "word": "penile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the penis.", + "example_sentence_english": "The doctor examined the penile area.", + "pos": "adj", + "word_frequency": 30279 + }, + { + "word": "perfusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act of pouring a liquid over or through an organ or tissue.", + "example_sentence_english": "The doctor monitored the blood perfusion to the brain.", + "pos": "noun", + "word_frequency": 30280 + }, + { + "word": "pessimist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who tends to see the worst aspect of things or believe that the worst will happen.", + "example_sentence_english": "Don't be such a pessimist; things will get better.", + "pos": "noun", + "word_frequency": 30281 + }, + { + "word": "physiotherapist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who treats disease, injury, or deformity by physical methods.", + "example_sentence_english": "My physiotherapist helped me recover from my knee injury.", + "pos": "noun", + "word_frequency": 30282 + }, + { + "word": "plantain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A tropical fruit resembling a banana, eaten cooked.", + "example_sentence_english": "We had fried plantain with our dinner.", + "pos": "noun", + "word_frequency": 30283 + }, + { + "word": "poser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who pretends to be something they are not.", + "example_sentence_english": "He's just a poser trying to impress everyone.", + "pos": "noun", + "word_frequency": 30285 + }, + { + "word": "preschooler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A child who is not yet old enough to attend school.", + "example_sentence_english": "My youngest child is a preschooler.", + "pos": "noun", + "word_frequency": 30287 + }, + { + "word": "quip", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A witty remark.", + "example_sentence_english": "He delivered a witty quip that made everyone laugh.", + "pos": "noun", + "word_frequency": 30290 + }, + { + "word": "recyclable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Able to be recycled.", + "example_sentence_english": "This packaging is fully recyclable.", + "pos": "adj", + "word_frequency": 30293 + }, + { + "word": "reenactment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The acting out of a past event.", + "example_sentence_english": "They performed a historical reenactment of the battle.", + "pos": "noun", + "word_frequency": 30294 + }, + { + "word": "refit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An act of fitting new or different equipment or parts to something.", + "example_sentence_english": "The ship underwent a major refit.", + "pos": "noun", + "word_frequency": 30295 + }, + { + "word": "respirator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A device worn over the mouth and nose to prevent the inhalation of harmful substances, or for artificial respiration.", + "example_sentence_english": "Workers in dusty environments should wear a respirator.", + "pos": "noun", + "word_frequency": 30298 + }, + { + "word": "resplendent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Shining brilliantly; splendid or dazzling in appearance.", + "example_sentence_english": "The queen looked resplendent in her coronation robes.", + "pos": "adj", + "word_frequency": 30299 + }, + { + "word": "restate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To state again or in a different way.", + "example_sentence_english": "Could you please restate your question?", + "pos": "verb", + "word_frequency": 30300 + }, + { + "word": "rhythmical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Having or characterized by rhythm.", + "example_sentence_english": "The dancer's movements were rhythmical and graceful.", + "pos": "adv", + "word_frequency": 30301 + }, + { + "word": "rigour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Thoroughness and exactness.", + "example_sentence_english": "The research was conducted with scientific rigour.", + "pos": "noun", + "word_frequency": 30302 + }, + { + "word": "roomy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Having plenty of room; spacious.", + "example_sentence_english": "The new car is very roomy inside.", + "pos": "adj", + "word_frequency": 30304 + }, + { + "word": "rulebook", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A book containing the rules of a game or activity.", + "example_sentence_english": "You should always follow the rulebook.", + "pos": "noun", + "word_frequency": 30309 + }, + { + "word": "salvia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A genus of plants in the mint family, including sage.", + "example_sentence_english": "The garden was filled with colorful salvia plants.", + "pos": "noun", + "word_frequency": 30310 + }, + { + "word": "signer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who signs, especially one who uses sign language.", + "example_sentence_english": "The deaf community relies on a skilled signer for communication.", + "pos": "noun", + "word_frequency": 30316 + }, + { + "word": "signet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A small seal, especially one set in a ring, used to stamp documents.", + "example_sentence_english": "The king's letter bore his royal signet.", + "pos": "noun", + "word_frequency": 30317 + }, + { + "word": "silicate", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A salt in which the anion contains silicon and oxygen.", + "example_sentence_english": "Quartz is a common silicate mineral.", + "pos": "noun", + "word_frequency": 30318 + }, + { + "word": "singlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A sleeveless athletic shirt or an undershirt.", + "example_sentence_english": "He wore a white singlet under his shirt.", + "pos": "noun", + "word_frequency": 30319 + }, + { + "word": "skewer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long piece of wood or metal used for holding pieces of food together, especially while cooking them.", + "example_sentence_english": "He put the meat and vegetables on a skewer before grilling them.", + "pos": "noun", + "word_frequency": 30320 + }, + { + "word": "spammer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who sends unwanted email, especially advertisements.", + "example_sentence_english": "My inbox is full of messages from spammers.", + "pos": "noun", + "word_frequency": 30322 + }, + { + "word": "squall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sudden violent gust of wind or a localized storm, especially one bringing rain, snow, or sleet.", + "example_sentence_english": "A sudden squall hit the boat, making the waves choppy.", + "pos": "noun", + "word_frequency": 30325 + }, + { + "word": "starlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a young actress who is promoted as a future star.", + "example_sentence_english": "The young starlet hoped to win an Oscar someday.", + "pos": "noun", + "word_frequency": 30327 + }, + { + "word": "strangeness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being strange or unusual.", + "example_sentence_english": "The strangeness of the situation made everyone uncomfortable.", + "pos": "noun", + "word_frequency": 30331 + }, + { + "word": "surmise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a conjecture; an idea or conclusion that lacks definite proof.", + "example_sentence_english": "His surmise about the cause of the accident proved to be correct.", + "pos": "noun", + "word_frequency": 30332 + }, + { + "word": "swindle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fraudulent scheme or action.", + "example_sentence_english": "The whole deal turned out to be a swindle.", + "pos": "noun", + "word_frequency": 30334 + }, + { + "word": "swordfish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large marine fish with a long, sword-like upper jaw.", + "example_sentence_english": "We ordered grilled swordfish for dinner.", + "pos": "noun", + "word_frequency": 30335 + }, + { + "word": "swot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who studies very hard.", + "example_sentence_english": "He was always considered a bit of a swot in school.", + "pos": "noun", + "word_frequency": 30336 + }, + { + "word": "taking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of acquiring or receiving something; often used in phrases like \"for the taking\" meaning available to be taken.", + "example_sentence_english": "The opportunity was there for the taking.", + "pos": "noun", + "word_frequency": 30337 + }, + { + "word": "terse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sparing in the use of words; abrupt.", + "example_sentence_english": "He gave a terse reply, indicating his annoyance.", + "pos": "adj", + "word_frequency": 30341 + }, + { + "word": "thermonuclear", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or using nuclear reactions that occur at extremely high temperatures.", + "example_sentence_english": "Scientists are researching controlled thermonuclear fusion as a future energy source.", + "pos": "adj", + "word_frequency": 30344 + }, + { + "word": "timeliness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fact of being done or occurring at a favorable or useful time.", + "example_sentence_english": "The timeliness of his intervention prevented a disaster.", + "pos": "noun", + "word_frequency": 30346 + }, + { + "word": "tincture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medicine made by dissolving a drug in alcohol; a slight trace of something.", + "example_sentence_english": "She applied a tincture of iodine to the cut.", + "pos": "noun", + "word_frequency": 30347 + }, + { + "word": "traitorous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disloyal; betraying one's country or cause.", + "example_sentence_english": "His actions were considered traitorous by many.", + "pos": "adj", + "word_frequency": 30354 + }, + { + "word": "transact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conduct or carry out (business or financial dealings).", + "example_sentence_english": "They transact business primarily online.", + "pos": "verb", + "word_frequency": 30355 + }, + { + "word": "trawler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fishing boat that uses a trawl net or nets.", + "example_sentence_english": "The trawler returned to port with a large catch of fish.", + "pos": "noun", + "word_frequency": 30356 + }, + { + "word": "trustworthiness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being able to be relied on as honest or truthful.", + "example_sentence_english": "His trustworthiness was never in doubt.", + "pos": "noun", + "word_frequency": 30357 + }, + { + "word": "turkic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the Turkic peoples or languages.", + "example_sentence_english": "Many Central Asian languages are Turkic.", + "pos": "adj", + "word_frequency": 30362 + }, + { + "word": "unadulterated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not mixed or diluted with any different or extra elements; pure.", + "example_sentence_english": "The film was an unadulterated disaster.", + "pos": "adj", + "word_frequency": 30364 + }, + { + "word": "unbeliever", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who does not believe in a particular religion or in religious belief in general.", + "example_sentence_english": "He was an unbeliever in the supernatural.", + "pos": "noun", + "word_frequency": 30365 + }, + { + "word": "undeclared", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not officially announced or acknowledged.", + "example_sentence_english": "They had an undeclared war going on.", + "pos": "adj", + "word_frequency": 30366 + }, + { + "word": "undercurrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An underlying feeling or influence, especially one contrary to the prevailing atmosphere.", + "example_sentence_english": "There was an undercurrent of tension in the room.", + "pos": "noun", + "word_frequency": 30367 + }, + { + "word": "undergrowth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A dense growth of shrubs and other plants, especially under trees in woodland.", + "example_sentence_english": "We pushed our way through the thick undergrowth.", + "pos": "noun", + "word_frequency": 30368 + }, + { + "word": "unseemly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not proper or appropriate.", + "example_sentence_english": "His behavior at the funeral was unseemly.", + "pos": "adj", + "word_frequency": 30369 + }, + { + "word": "unsympathetic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not feeling or showing sympathy.", + "example_sentence_english": "The doctor was unsympathetic to her complaints.", + "pos": "adj", + "word_frequency": 30370 + }, + { + "word": "unyielding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Not giving way to pressure; firm and resolute.", + "example_sentence_english": "He faced the challenge with unyielding determination.", + "pos": "adj", + "word_frequency": 30371 + }, + { + "word": "urbanize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make more urban in character.", + "example_sentence_english": "The region has been rapidly urbanized over the last decade.", + "pos": "verb", + "word_frequency": 30372 + }, + { + "word": "videography", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The art or process of making video films.", + "example_sentence_english": "Her passion is wedding videography.", + "pos": "noun", + "word_frequency": 30376 + }, + { + "word": "yeshiva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An Orthodox Jewish college or seminary.", + "example_sentence_english": "He studied at a yeshiva for several years.", + "pos": "noun", + "word_frequency": 30386 + }, + { + "word": "zany", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Amusingly unconventional and eccentric.", + "example_sentence_english": "The comedian's zany antics made everyone laugh.", + "pos": "adj", + "word_frequency": 30387 + }, + { + "word": "abalone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An edible mollusc with a shallow, ear-shaped shell lined with mother-of-pearl.", + "example_sentence_english": "Abalone is considered a delicacy in some cultures.", + "pos": "noun", + "word_frequency": 30398 + }, + { + "word": "abdicate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(Of a monarch) renounce one's throne.", + "example_sentence_english": "The king decided to abdicate his throne.", + "pos": "verb", + "word_frequency": 30399 + }, + { + "word": "accost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approach and speak to (someone) often in an aggressive or unwanted way", + "example_sentence_english": "The beggar would often accost passersby for money.", + "pos": "verb", + "word_frequency": 30400 + }, + { + "word": "adjournment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a postponement or suspension of a meeting or session to another time or place", + "example_sentence_english": "The judge announced the adjournment of the trial until Monday.", + "pos": "noun", + "word_frequency": 30401 + }, + { + "word": "admonish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to warn or reprimand someone firmly", + "example_sentence_english": "The teacher had to admonish the students for talking during the lesson.", + "pos": "verb", + "word_frequency": 30402 + }, + { + "word": "affable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friendly, good-natured, or easy to talk to", + "example_sentence_english": "He was an affable host, making everyone feel welcome.", + "pos": "adj", + "word_frequency": 30403 + }, + { + "word": "aficionado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who is very knowledgeable and enthusiastic about an activity, subject, or pastime", + "example_sentence_english": "As a jazz aficionado, he owned a vast collection of records.", + "pos": "noun", + "word_frequency": 30404 + }, + { + "word": "airbrush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for spraying paint or other liquid by means of compressed air", + "example_sentence_english": "The artist used an airbrush to create smooth gradients in the painting.", + "pos": "noun", + "word_frequency": 30405 + }, + { + "word": "airsoft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sport in which participants eliminate opponents by hitting them with spherical plastic projectiles launched from replica firearms", + "example_sentence_english": "They spent the weekend playing airsoft in the woods.", + "pos": "noun", + "word_frequency": 30406 + }, + { + "word": "alarming", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that causes sudden fear or anxiety", + "example_sentence_english": "The number of cases has risen alarmingly in recent weeks.", + "pos": "adv", + "word_frequency": 30407 + }, + { + "word": "alopecia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the partial or complete absence of hair from areas of the body where it normally grows", + "example_sentence_english": "She was diagnosed with alopecia, which caused significant hair loss.", + "pos": "noun", + "word_frequency": 30410 + }, + { + "word": "apocryphal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of doubtful authenticity, although widely circulated as being true", + "example_sentence_english": "The story about the hidden treasure is probably apocryphal.", + "pos": "adj", + "word_frequency": 30414 + }, + { + "word": "avow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assert or confess openly", + "example_sentence_english": "He avowed his innocence despite the evidence.", + "pos": "verb", + "word_frequency": 30419 + }, + { + "word": "baldness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or condition of having no hair on the head", + "example_sentence_english": "Male pattern baldness is a common condition.", + "pos": "noun", + "word_frequency": 30421 + }, + { + "word": "bathhouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a building containing baths for public use", + "example_sentence_english": "They relaxed in the traditional Japanese bathhouse.", + "pos": "noun", + "word_frequency": 30423 + }, + { + "word": "beekeeping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the activity of owning and raising bees", + "example_sentence_english": "Beekeeping has become a popular hobby in recent years.", + "pos": "noun", + "word_frequency": 30425 + }, + { + "word": "bide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remain or stay somewhere", + "example_sentence_english": "He decided to bide his time until the right opportunity arose.", + "pos": "verb", + "word_frequency": 30428 + }, + { + "word": "biotic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or resulting from living organisms", + "example_sentence_english": "The ecosystem is influenced by both biotic and abiotic factors.", + "pos": "adjective", + "word_frequency": 30429 + }, + { + "word": "bisexuality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "romantic or sexual attraction to both men and women", + "example_sentence_english": "The discussion focused on understanding bisexuality and its representation.", + "pos": "noun", + "word_frequency": 30430 + }, + { + "word": "bismuth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a brittle, crystalline, pinkish-white metallic element", + "example_sentence_english": "Bismuth is often used in alloys and cosmetics.", + "pos": "noun", + "word_frequency": 30431 + }, + { + "word": "biweekly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring or appearing every two weeks or twice a week", + "example_sentence_english": "The team meets biweekly to discuss project progress.", + "pos": "adverb", + "word_frequency": 30432 + }, + { + "word": "bloomer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that blooms or flourishes", + "example_sentence_english": "She was a late bloomer in her career, finding success in her forties.", + "pos": "noun", + "word_frequency": 30433 + }, + { + "word": "breadwinner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who earns money to support their family", + "example_sentence_english": "In many families, both parents are now breadwinners.", + "pos": "noun", + "word_frequency": 30437 + }, + { + "word": "bulbous", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "round and fat; bulging", + "example_sentence_english": "The onion had a bulbous shape.", + "pos": "adjective", + "word_frequency": 30440 + }, + { + "word": "butternut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of squash or tree", + "example_sentence_english": "We roasted the butternut squash for dinner.", + "pos": "noun", + "word_frequency": 30442 + }, + { + "word": "carcinogen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a substance capable of causing cancer", + "example_sentence_english": "Asbestos is a known carcinogen.", + "pos": "noun", + "word_frequency": 30447 + }, + { + "word": "cardiomyopathy", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a disease of the heart muscle", + "example_sentence_english": "His diagnosis was dilated cardiomyopathy.", + "pos": "noun", + "word_frequency": 30448 + }, + { + "word": "caregiving", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of providing care for someone", + "example_sentence_english": "Caregiving can be a demanding but rewarding role.", + "pos": "noun", + "word_frequency": 30449 + }, + { + "word": "chastise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rebuke or reprimand severely", + "example_sentence_english": "The coach had to chastise the player for his poor behavior.", + "pos": "verb", + "word_frequency": 30454 + }, + { + "word": "clank", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sharp, ringing sound", + "example_sentence_english": "We heard the clank of chains in the distance.", + "pos": "noun", + "word_frequency": 30457 + }, + { + "word": "classifier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or thing that classifies", + "example_sentence_english": "The machine learning model used a powerful classifier.", + "pos": "noun", + "word_frequency": 30458 + }, + { + "word": "combinatorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to combinations", + "example_sentence_english": "The problem required a combinatorial approach.", + "pos": "adjective", + "word_frequency": 30460 + }, + { + "word": "constitutive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forming a part of something's essential nature", + "example_sentence_english": "These principles are constitutive of our legal system.", + "pos": "adjective", + "word_frequency": 30462 + }, + { + "word": "coronal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the crown of the head or a specific anatomical plane", + "example_sentence_english": "The coronal suture connects the frontal and parietal bones.", + "pos": "adjective", + "word_frequency": 30464 + }, + { + "word": "counterweight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a weight that balances another weight", + "example_sentence_english": "The crane used a large counterweight to maintain stability.", + "pos": "noun", + "word_frequency": 30465 + }, + { + "word": "coupler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that connects two things", + "example_sentence_english": "The train cars were joined by a strong coupler.", + "pos": "noun", + "word_frequency": 30466 + }, + { + "word": "courtesan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a prostitute, especially one with high-ranking or wealthy clients", + "example_sentence_english": "She was known as a famous courtesan in 18th-century Paris.", + "pos": "noun", + "word_frequency": 30467 + }, + { + "word": "curable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be cured", + "example_sentence_english": "Many diseases are now curable with modern medicine.", + "pos": "adjective", + "word_frequency": 30470 + }, + { + "word": "curative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having the power to cure", + "example_sentence_english": "The plant is believed to have strong curative properties.", + "pos": "adjective", + "word_frequency": 30471 + }, + { + "word": "cushy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy and comfortable", + "example_sentence_english": "He got a cushy job right after graduation.", + "pos": "adjective", + "word_frequency": 30472 + }, + { + "word": "cysteine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a sulfur-containing amino acid", + "example_sentence_english": "Cysteine is one of the 20 standard amino acids.", + "pos": "noun", + "word_frequency": 30473 + }, + { + "word": "dalmatian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a breed of dog with a white coat and black spots", + "example_sentence_english": "The dalmatian ran quickly across the park.", + "pos": "noun", + "word_frequency": 30474 + }, + { + "word": "darkroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room where photographic film is processed", + "example_sentence_english": "He spent hours developing photos in his darkroom.", + "pos": "noun", + "word_frequency": 30477 + }, + { + "word": "decentralise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transfer power or authority from central to local government or administration", + "example_sentence_english": "The company decided to decentralise its operations.", + "pos": "verb", + "word_frequency": 30478 + }, + { + "word": "defibrillator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device that gives an electric shock to the heart to restore normal rhythm", + "example_sentence_english": "The paramedics used a defibrillator to restart his heart.", + "pos": "noun", + "word_frequency": 30479 + }, + { + "word": "desirability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being desirable or attractive", + "example_sentence_english": "The desirability of the new product was high among consumers.", + "pos": "noun", + "word_frequency": 30480 + }, + { + "word": "disconnection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a break or interruption in connection", + "example_sentence_english": "There was a brief disconnection in the internet service.", + "pos": "noun", + "word_frequency": 30484 + }, + { + "word": "disenchant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to free from illusion or false belief; disillusion", + "example_sentence_english": "The harsh reality of the job began to disenchant him.", + "pos": "verb", + "word_frequency": 30485 + }, + { + "word": "distiller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that distills alcoholic beverages", + "example_sentence_english": "The local distiller produces excellent whiskey.", + "pos": "noun", + "word_frequency": 30486 + }, + { + "word": "dodgeball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a game in which players try to hit opponents with a ball while avoiding being hit themselves", + "example_sentence_english": "We played a lively game of dodgeball during recess.", + "pos": "noun", + "word_frequency": 30487 + }, + { + "word": "downwind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the direction toward which the wind is blowing", + "example_sentence_english": "The smoke drifted downwind from the campfire.", + "pos": "adverb", + "word_frequency": 30488 + }, + { + "word": "duckling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a young duck", + "example_sentence_english": "A mother duck led her ducklings to the pond.", + "pos": "noun", + "word_frequency": 30491 + }, + { + "word": "enrollee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has enrolled in something", + "example_sentence_english": "Each enrollee received a welcome packet.", + "pos": "noun", + "word_frequency": 30497 + }, + { + "word": "equivalency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being equivalent or equal in value, amount, function, or meaning", + "example_sentence_english": "The equivalency of the two degrees was debated.", + "pos": "noun", + "word_frequency": 30499 + }, + { + "word": "essayist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who writes essays", + "example_sentence_english": "The renowned essayist published a new collection of works.", + "pos": "noun", + "word_frequency": 30501 + }, + { + "word": "exceptionalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the condition of being different from the norm; belief in the uniqueness of a nation or group", + "example_sentence_english": "American exceptionalism is a belief that the United States is unique.", + "pos": "noun", + "word_frequency": 30502 + }, + { + "word": "excrete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discharge (waste matter) from the body or a tissue", + "example_sentence_english": "The kidneys excrete waste products from the blood.", + "pos": "verb", + "word_frequency": 30503 + }, + { + "word": "fallback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secondary or alternative plan or resource", + "example_sentence_english": "Having a fallback plan is always a good idea.", + "pos": "noun", + "word_frequency": 30504 + }, + { + "word": "farsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the modern Persian language", + "example_sentence_english": "Farsi is the official language of Iran.", + "pos": "noun", + "word_frequency": 30507 + }, + { + "word": "fib", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a trivial or minor lie", + "example_sentence_english": "He told a little fib about why he was late.", + "pos": "noun", + "word_frequency": 30510 + }, + { + "word": "filename", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a name given to a computer file", + "example_sentence_english": "Please choose a descriptive filename for your document.", + "pos": "noun", + "word_frequency": 30512 + }, + { + "word": "fossilize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convert into a fossil; to become rigid or old-fashioned", + "example_sentence_english": "Over millions of years, the bones began to fossilize.", + "pos": "verb", + "word_frequency": 30516 + }, + { + "word": "fraudster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who commits fraud", + "example_sentence_english": "The fraudster was arrested for scamming elderly people.", + "pos": "noun", + "word_frequency": 30519 + }, + { + "word": "gaffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blunder, social mistake", + "example_sentence_english": "The politician made a huge gaffe during the live interview.", + "pos": "noun", + "word_frequency": 30523 + }, + { + "word": "gargantuan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enormous, gigantic", + "example_sentence_english": "They faced a gargantuan task to clean up the entire park.", + "pos": "adjective", + "word_frequency": 30526 + }, + { + "word": "gavel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judge's hammer", + "example_sentence_english": "The judge struck the gavel to call the court to order.", + "pos": "noun", + "word_frequency": 30527 + }, + { + "word": "glitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superficial glamour, showiness", + "example_sentence_english": "Hollywood is known for its glitz and glamour.", + "pos": "noun", + "word_frequency": 30528 + }, + { + "word": "godhead", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divine nature, deity", + "example_sentence_english": "The concept of the Holy Trinity represents the three persons of the Godhead.", + "pos": "noun", + "word_frequency": 30529 + }, + { + "word": "godlike", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divine, resembling a god", + "example_sentence_english": "The artist's skill was almost godlike in its perfection.", + "pos": "adjective", + "word_frequency": 30530 + }, + { + "word": "goverment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the governing body of a state", + "example_sentence_english": "The government announced new policies to boost the economy.", + "pos": "noun", + "word_frequency": 30531 + }, + { + "word": "gravestone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tombstone, headstone", + "example_sentence_english": "The old gravestone in the cemetery was covered in moss.", + "pos": "noun", + "word_frequency": 30533 + }, + { + "word": "gridiron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "football field; cooking grate", + "example_sentence_english": "The team practiced on the gridiron every day before the big game.", + "pos": "noun", + "word_frequency": 30534 + }, + { + "word": "haggis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Scottish dish", + "example_sentence_english": "Haggis is a traditional Scottish dish often served with neeps and tatties.", + "pos": "noun", + "word_frequency": 30538 + }, + { + "word": "hanging", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspension; execution by rope", + "example_sentence_english": "The hanging of the new curtains transformed the room.", + "pos": "noun", + "word_frequency": 30541 + }, + { + "word": "headdress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ornamental covering for the head", + "example_sentence_english": "The bride wore an elaborate headdress adorned with pearls.", + "pos": "noun", + "word_frequency": 30542 + }, + { + "word": "hoarder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who accumulates things excessively", + "example_sentence_english": "The old woman was a hoarder, and her house was full of junk.", + "pos": "noun", + "word_frequency": 30546 + }, + { + "word": "hoarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough or husky in voice", + "example_sentence_english": "After shouting at the concert, her voice was hoarse.", + "pos": "adjective", + "word_frequency": 30547 + }, + { + "word": "homebrew", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something made at home, especially beer", + "example_sentence_english": "He proudly offered us a glass of his latest homebrew.", + "pos": "noun", + "word_frequency": 30549 + }, + { + "word": "homebuyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person buying a house", + "example_sentence_english": "The market is currently favorable for first-time homebuyers.", + "pos": "noun", + "word_frequency": 30550 + }, + { + "word": "hoppy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tasting or smelling of hops", + "example_sentence_english": "This IPA has a very distinct hoppy flavor.", + "pos": "adjective", + "word_frequency": 30551 + }, + { + "word": "hydrographic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the description of bodies of water", + "example_sentence_english": "The hydrographic survey mapped the ocean floor.", + "pos": "adjective", + "word_frequency": 30553 + }, + { + "word": "illegality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being illegal", + "example_sentence_english": "The illegality of the action was clear to everyone.", + "pos": "noun", + "word_frequency": 30555 + }, + { + "word": "imperious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arrogant, domineering", + "example_sentence_english": "His imperious tone left no room for argument.", + "pos": "adjective", + "word_frequency": 30556 + }, + { + "word": "industrialise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "develop industries", + "example_sentence_english": "Many countries sought to industrialise rapidly in the 19th century.", + "pos": "verb", + "word_frequency": 30558 + }, + { + "word": "infanticide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the killing of an infant", + "example_sentence_english": "The historical practice of infanticide was often linked to poverty.", + "pos": "noun", + "word_frequency": 30559 + }, + { + "word": "inoculation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vaccination", + "example_sentence_english": "The inoculation provides protection against the disease.", + "pos": "noun", + "word_frequency": 30562 + }, + { + "word": "inordinate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive; unusually large", + "example_sentence_english": "He spends an inordinate amount of time on his hobbies.", + "pos": "adjective", + "word_frequency": 30563 + }, + { + "word": "insensitivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of concern for others' feelings", + "example_sentence_english": "His insensitivity to her feelings caused a lot of pain.", + "pos": "noun", + "word_frequency": 30564 + }, + { + "word": "insincere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not expressing genuine feelings", + "example_sentence_english": "Her apology felt insincere and forced.", + "pos": "adjective", + "word_frequency": 30565 + }, + { + "word": "instigator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who initiates something", + "example_sentence_english": "He was identified as the instigator of the riot.", + "pos": "noun", + "word_frequency": 30566 + }, + { + "word": "insubordination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disobedience to authority", + "example_sentence_english": "The employee was fired for gross insubordination.", + "pos": "noun", + "word_frequency": 30567 + }, + { + "word": "intercity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "between cities", + "example_sentence_english": "They took an intercity bus to travel across the country.", + "pos": "adjective", + "word_frequency": 30568 + }, + { + "word": "isotopic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to isotopes", + "example_sentence_english": "Scientists use isotopic analysis to determine the age of ancient artifacts.", + "pos": "adjective", + "word_frequency": 30570 + }, + { + "word": "kook", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an eccentric or crazy person", + "example_sentence_english": "Some people thought he was a kook because of his strange ideas.", + "pos": "noun", + "word_frequency": 30582 + }, + { + "word": "ladle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large long-handled spoon", + "example_sentence_english": "She used a ladle to serve the soup.", + "pos": "noun", + "word_frequency": 30585 + }, + { + "word": "launchpad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a platform from which rockets are launched", + "example_sentence_english": "The rocket stood ready on the launchpad.", + "pos": "noun", + "word_frequency": 30586 + }, + { + "word": "laundromat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a place with coin-operated washing machines", + "example_sentence_english": "I need to go to the laundromat to wash my clothes.", + "pos": "noun", + "word_frequency": 30587 + }, + { + "word": "laxative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medicine that helps bowel movements", + "example_sentence_english": "The doctor recommended a mild laxative for his constipation.", + "pos": "noun", + "word_frequency": 30590 + }, + { + "word": "leeward", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "on or toward the side sheltered from the wind", + "example_sentence_english": "We sailed to the leeward side of the island to escape the strong winds.", + "pos": "adjective", + "word_frequency": 30591 + }, + { + "word": "lustful", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full of lust; showing strong sexual desire", + "example_sentence_english": "His lustful gaze made her uncomfortable.", + "pos": "adjective", + "word_frequency": 30600 + }, + { + "word": "lustrous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having a gentle sheen or soft glow", + "example_sentence_english": "Her long, lustrous hair cascaded down her back.", + "pos": "adjective", + "word_frequency": 30601 + }, + { + "word": "macroscopic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visible to the naked eye; not microscopic", + "example_sentence_english": "The macroscopic features of the rock were clearly visible.", + "pos": "adjective", + "word_frequency": 30603 + }, + { + "word": "materia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matter; substance", + "example_sentence_english": "The alchemists sought to transform base materia into gold.", + "pos": "noun", + "word_frequency": 30608 + }, + { + "word": "milt", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the seminal fluid of male fish", + "example_sentence_english": "The male salmon releases milt during spawning.", + "pos": "noun", + "word_frequency": 30618 + }, + { + "word": "mosh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of dance in which participants push or shove one another, typically performed to aggressive rock music", + "example_sentence_english": "The crowd formed a mosh pit near the stage.", + "pos": "noun", + "word_frequency": 30625 + }, + { + "word": "nationalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the transfer of a major branch of industry or commerce from private to state ownership or control", + "example_sentence_english": "The government announced the nationalisation of the railway system.", + "pos": "noun", + "word_frequency": 30627 + }, + { + "word": "newscast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a broadcast of news on radio or television", + "example_sentence_english": "The evening newscast reported on the local elections.", + "pos": "noun", + "word_frequency": 30630 + }, + { + "word": "nicu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Neonatal Intensive Care Unit", + "example_sentence_english": "The premature baby spent several weeks in the NICU.", + "pos": "noun", + "word_frequency": 30633 + }, + { + "word": "nighter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an event or period lasting all night; a person who stays up all night", + "example_sentence_english": "They pulled an all-nighter to finish the project.", + "pos": "noun", + "word_frequency": 30634 + }, + { + "word": "nonverbal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not involving or using words or speech", + "example_sentence_english": "Her nonverbal cues indicated her discomfort.", + "pos": "adjective", + "word_frequency": 30636 + }, + { + "word": "otaku", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person with an obsessive interest in anime and manga", + "example_sentence_english": "He's a huge otaku, with a room full of manga and anime figures.", + "pos": "noun", + "word_frequency": 30641 + }, + { + "word": "overprotective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Excessively protective", + "example_sentence_english": "Her parents were very overprotective, rarely letting her go out alone.", + "pos": "adjective", + "word_frequency": 30643 + }, + { + "word": "panache", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Flamboyant confidence of style or manner", + "example_sentence_english": "He played the role with great panache, captivating the audience.", + "pos": "noun", + "word_frequency": 30645 + }, + { + "word": "paracetamol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A common painkiller", + "example_sentence_english": "I took some paracetamol for my headache.", + "pos": "noun", + "word_frequency": 30646 + }, + { + "word": "participle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A word formed from a verb and used as an adjective or noun", + "example_sentence_english": "In the sentence \"The running water,\" \"running\" is a present participle.", + "pos": "noun", + "word_frequency": 30649 + }, + { + "word": "pedantic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Excessively concerned with minor details or rules", + "example_sentence_english": "His pedantic approach to grammar made the lesson tedious.", + "pos": "adjective", + "word_frequency": 30652 + }, + { + "word": "perturbation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A deviation of a system from its normal state", + "example_sentence_english": "The unexpected perturbation in the satellite's orbit caused concern.", + "pos": "noun", + "word_frequency": 30655 + }, + { + "word": "phallic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Resembling or relating to a penis", + "example_sentence_english": "The ancient sculpture had distinct phallic symbols.", + "pos": "adjective", + "word_frequency": 30658 + }, + { + "word": "phonology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The study of the sound system of a language", + "example_sentence_english": "Her research focuses on the phonology of regional dialects.", + "pos": "noun", + "word_frequency": 30659 + }, + { + "word": "picking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The act of choosing or gathering", + "example_sentence_english": "Fruit picking is a popular activity in the summer.", + "pos": "noun", + "word_frequency": 30660 + }, + { + "word": "pocketbook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small book or a handbag", + "example_sentence_english": "She carried her keys and phone in her pocketbook.", + "pos": "noun", + "word_frequency": 30664 + }, + { + "word": "prescient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Having or showing knowledge of events before they take place", + "example_sentence_english": "Her prescient warning about the market crash proved accurate.", + "pos": "adjective", + "word_frequency": 30667 + }, + { + "word": "procurator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An agent representing another in legal or financial matters", + "example_sentence_english": "The procurator was appointed to manage the estate.", + "pos": "noun", + "word_frequency": 30669 + }, + { + "word": "puffin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of seabird with a large, brightly colored beak", + "example_sentence_english": "We saw a puffin nesting on the cliffs.", + "pos": "noun", + "word_frequency": 30671 + }, + { + "word": "purebred", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An animal bred from parents of the same breed or variety", + "example_sentence_english": "The dog was a purebred Labrador.", + "pos": "noun", + "word_frequency": 30672 + }, + { + "word": "purist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person who insists on absolute adherence to traditional rules", + "example_sentence_english": "As a language purist, he disliked the use of slang.", + "pos": "noun", + "word_frequency": 30673 + }, + { + "word": "ratepayer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who pays local taxes", + "example_sentence_english": "The council is accountable to the ratepayers for how their money is spent.", + "pos": "noun", + "word_frequency": 30678 + }, + { + "word": "redline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a limit beyond which something becomes unsafe or undesirable", + "example_sentence_english": "The engine's tachometer showed it was approaching the redline.", + "pos": "noun", + "word_frequency": 30680 + }, + { + "word": "refrigerant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used for refrigeration", + "example_sentence_english": "The air conditioner needs more refrigerant to cool effectively.", + "pos": "noun", + "word_frequency": 30682 + }, + { + "word": "resiliency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the capacity to recover quickly from difficulties; toughness", + "example_sentence_english": "Her resiliency allowed her to bounce back after the setback.", + "pos": "noun", + "word_frequency": 30683 + }, + { + "word": "rockabilly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of music that combines rock and roll with country music", + "example_sentence_english": "Elvis Presley was a pioneer of rockabilly music.", + "pos": "noun", + "word_frequency": 30691 + }, + { + "word": "salivary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to saliva", + "example_sentence_english": "The salivary glands produce saliva.", + "pos": "adjective", + "word_frequency": 30694 + }, + { + "word": "sanitarium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an institution for the care of people with a specific illness or condition", + "example_sentence_english": "He was sent to a sanitarium to recover from his illness.", + "pos": "noun", + "word_frequency": 30697 + }, + { + "word": "sauerkraut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finely cut cabbage that has been fermented", + "example_sentence_english": "Sauerkraut is a traditional German side dish.", + "pos": "noun", + "word_frequency": 30698 + }, + { + "word": "seafloor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the bottom of the sea", + "example_sentence_english": "Scientists discovered new species on the seafloor.", + "pos": "noun", + "word_frequency": 30701 + }, + { + "word": "sedimentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of settling or being deposited as a sediment", + "example_sentence_english": "The sedimentation process helps clarify water.", + "pos": "noun", + "word_frequency": 30702 + }, + { + "word": "sequester", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to isolate or hide away; to take legal possession of", + "example_sentence_english": "The jury was sequestered during the trial.", + "pos": "verb", + "word_frequency": 30703 + }, + { + "word": "shaving", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the act of removing hair with a razor; a thin slice or strip", + "example_sentence_english": "He finished his morning shaving quickly.", + "pos": "noun", + "word_frequency": 30705 + }, + { + "word": "shirk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avoid or neglect (a duty or responsibility)", + "example_sentence_english": "He was accused of shirking his responsibilities.", + "pos": "verb", + "word_frequency": 30708 + }, + { + "word": "sleepwalking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of walking around while asleep", + "example_sentence_english": "Sleepwalking can be a symptom of certain sleep disorders.", + "pos": "noun", + "word_frequency": 30711 + }, + { + "word": "slinky", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(of a garment) close-fitting and flowing; (of a person or animal) moving with a smooth, quiet, and graceful walk", + "example_sentence_english": "She wore a slinky black dress to the party.", + "pos": "adjective", + "word_frequency": 30712 + }, + { + "word": "slipknot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a knot that can be undone by pulling one end", + "example_sentence_english": "He tied a slipknot in the rope.", + "pos": "noun", + "word_frequency": 30713 + }, + { + "word": "solon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a wise and skillful lawgiver; a member of a legislative body", + "example_sentence_english": "The ancient Greek solon introduced many reforms.", + "pos": "noun", + "word_frequency": 30716 + }, + { + "word": "speedster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or vehicle that moves at high speed", + "example_sentence_english": "The police chased the speedster down the highway.", + "pos": "noun", + "word_frequency": 30717 + }, + { + "word": "spellbind", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hold (someone's attention) completely as though by magic", + "example_sentence_english": "The magician's performance spellbound the audience.", + "pos": "verb", + "word_frequency": 30718 + }, + { + "word": "spiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long or elaborate speech or story, typically one used to persuade someone", + "example_sentence_english": "The salesman gave his usual spiel about the product's benefits.", + "pos": "noun", + "word_frequency": 30719 + }, + { + "word": "splint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rigid support used to keep a broken bone or injured part of the body in the correct position", + "example_sentence_english": "The doctor put a splint on his broken arm.", + "pos": "noun", + "word_frequency": 30720 + }, + { + "word": "spunk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courage and determination", + "example_sentence_english": "She showed a lot of spunk in standing up to the bully.", + "pos": "noun", + "word_frequency": 30721 + }, + { + "word": "stethoscope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a medical instrument for listening to the action of the heart or breathing", + "example_sentence_english": "The doctor used a stethoscope to listen to her heart.", + "pos": "noun", + "word_frequency": 30725 + }, + { + "word": "strident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loud and harsh; grating", + "example_sentence_english": "Her strident voice cut through the noise of the crowd.", + "pos": "adjective", + "word_frequency": 30726 + }, + { + "word": "superstore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a very large store, typically selling a wide range of goods", + "example_sentence_english": "We bought all our groceries at the new superstore.", + "pos": "noun", + "word_frequency": 30727 + }, + { + "word": "swank", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ostentatious display of wealth or status", + "example_sentence_english": "He likes to show off his new car with a lot of swank.", + "pos": "noun", + "word_frequency": 30730 + }, + { + "word": "syriac", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an Aramaic dialect that was the language of the Christian Syrians", + "example_sentence_english": "Ancient texts were often written in Syriac.", + "pos": "noun", + "word_frequency": 30732 + }, + { + "word": "tradeoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a balance achieved between two desirable but incompatible features; a compromise", + "example_sentence_english": "There's always a tradeoff between quality and price.", + "pos": "noun", + "word_frequency": 30743 + }, + { + "word": "tritium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a radioactive isotope of hydrogen", + "example_sentence_english": "Tritium is used in some self-powered lighting.", + "pos": "noun", + "word_frequency": 30746 + }, + { + "word": "tubby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short and fat", + "example_sentence_english": "The tubby cat struggled to jump onto the sofa.", + "pos": "adjective", + "word_frequency": 30749 + }, + { + "word": "tuber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fleshy, usually rounded, underground storage organ of a plant", + "example_sentence_english": "Potatoes are a type of tuber.", + "pos": "noun", + "word_frequency": 30750 + }, + { + "word": "tutti", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(music) with all voices or instruments together", + "example_sentence_english": "The orchestra played the tutti section with great power.", + "pos": "noun", + "word_frequency": 30751 + }, + { + "word": "twill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fabric woven with a diagonal parallel rib pattern", + "example_sentence_english": "Denim is a type of twill fabric.", + "pos": "noun", + "word_frequency": 30752 + }, + { + "word": "ubiquity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being everywhere or in many places at once; omnipresence", + "example_sentence_english": "The ubiquity of smartphones has changed how we communicate.", + "pos": "noun", + "word_frequency": 30753 + }, + { + "word": "unaccountable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not required or expected to justify actions or decisions; inexplicable", + "example_sentence_english": "The politician was criticized for being unaccountable to the public.", + "pos": "adjective", + "word_frequency": 30755 + }, + { + "word": "unaffordable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "too expensive to be afforded", + "example_sentence_english": "Housing in the city has become unaffordable for many residents.", + "pos": "adjective", + "word_frequency": 30756 + }, + { + "word": "underfoot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on the ground, typically beneath one's feet", + "example_sentence_english": "Be careful, the path is slippery underfoot.", + "pos": "adverb", + "word_frequency": 30757 + }, + { + "word": "undrafted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(in sports) not selected in a draft", + "example_sentence_english": "He was an undrafted player who went on to have a successful career.", + "pos": "adjective", + "word_frequency": 30758 + }, + { + "word": "unknowable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to know or understand", + "example_sentence_english": "The future is unknowable.", + "pos": "adjective", + "word_frequency": 30760 + }, + { + "word": "unreachable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to reach", + "example_sentence_english": "The top shelf was unreachable for the child.", + "pos": "adjective", + "word_frequency": 30761 + }, + { + "word": "unsealed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not sealed or closed", + "example_sentence_english": "The envelope arrived unsealed.", + "pos": "adjective", + "word_frequency": 30762 + }, + { + "word": "upswing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an increase or improvement", + "example_sentence_english": "The economy is showing an upswing.", + "pos": "noun", + "word_frequency": 30764 + }, + { + "word": "urbanisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of becoming more urban", + "example_sentence_english": "Urbanisation is a global trend.", + "pos": "noun", + "word_frequency": 30765 + }, + { + "word": "vastness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being very great in extent or size", + "example_sentence_english": "The vastness of the ocean was awe-inspiring.", + "pos": "noun", + "word_frequency": 30769 + }, + { + "word": "veganism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the practice of not eating or using animal products", + "example_sentence_english": "Veganism is growing in popularity.", + "pos": "noun", + "word_frequency": 30770 + }, + { + "word": "waistcoat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sleeveless upper-body garment worn over a shirt", + "example_sentence_english": "He wore a smart three-piece suit with a waistcoat.", + "pos": "noun", + "word_frequency": 30779 + }, + { + "word": "wheelbarrow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small cart with one wheel at the front and two handles at the back", + "example_sentence_english": "He pushed the soil in a wheelbarrow.", + "pos": "noun", + "word_frequency": 30783 + }, + { + "word": "wrangle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to argue or dispute; to herd animals", + "example_sentence_english": "They spent hours trying to wrangle the cattle.", + "pos": "verb", + "word_frequency": 30786 + }, + { + "word": "abacus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a calculating tool", + "example_sentence_english": "Children in some schools still learn to use an abacus.", + "pos": "noun", + "word_frequency": 30798 + }, + { + "word": "acetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or like vinegar; sour", + "example_sentence_english": "The strong acetic smell indicated the presence of vinegar.", + "pos": "adjective", + "word_frequency": 30802 + }, + { + "word": "agape", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "(of the mouth) wide open, especially with surprise or wonder", + "example_sentence_english": "His mouth was agape in astonishment at the magic trick.", + "pos": "adjective", + "word_frequency": 30805 + }, + { + "word": "ambrosia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the food of the gods; something delicious", + "example_sentence_english": "The dessert was so rich and creamy, it tasted like ambrosia.", + "pos": "noun", + "word_frequency": 30816 + }, + { + "word": "americano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of coffee drink", + "example_sentence_english": "I'd like a large americano with a splash of milk, please.", + "pos": "noun", + "word_frequency": 30817 + }, + { + "word": "amoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking a moral sense; unconcerned with right or wrong", + "example_sentence_english": "Some philosophers argue that nature itself is amoral, simply existing without judgment.", + "pos": "adjective", + "word_frequency": 30819 + }, + { + "word": "anise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant whose seeds are used for flavoring", + "example_sentence_english": "The candy had a distinct flavor of anise.", + "pos": "noun", + "word_frequency": 30820 + }, + { + "word": "argumentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of developing or presenting an argument", + "example_sentence_english": "Her argumentation was so strong that she convinced everyone.", + "pos": "noun", + "word_frequency": 30824 + }, + { + "word": "asphyxiation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the state or process of being deprived of oxygen, which can result in unconsciousness or death", + "example_sentence_english": "The cause of death was determined to be asphyxiation.", + "pos": "noun", + "word_frequency": 30825 + }, + { + "word": "babyface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a youthful or innocent-looking face; a person with such a face", + "example_sentence_english": "Despite his age, he still had a babyface.", + "pos": "noun", + "word_frequency": 30830 + }, + { + "word": "backstroke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a swimming stroke performed on the back", + "example_sentence_english": "She prefers swimming the backstroke to the freestyle.", + "pos": "noun", + "word_frequency": 30831 + }, + { + "word": "balsam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an aromatic resin or a soothing ointment", + "example_sentence_english": "The scent of pine balsam filled the air.", + "pos": "noun", + "word_frequency": 30832 + }, + { + "word": "barbell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a long bar with weights at each end, used for weightlifting", + "example_sentence_english": "He lifted the barbell with ease during his workout.", + "pos": "noun", + "word_frequency": 30834 + }, + { + "word": "benzodiazepine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a class of psychoactive drugs", + "example_sentence_english": "The doctor prescribed a benzodiazepine to help with anxiety.", + "pos": "noun", + "word_frequency": 30838 + }, + { + "word": "bilingualism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to speak two languages fluently", + "example_sentence_english": "Bilingualism offers many cognitive benefits.", + "pos": "noun", + "word_frequency": 30839 + }, + { + "word": "biodiesel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A type of fuel made from plants or animal fats.", + "example_sentence_english": "Many vehicles can run on biodiesel, which is a more environmentally friendly fuel.", + "pos": "noun", + "word_frequency": 30840 + }, + { + "word": "blogosphere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The world of blogs and bloggers.", + "example_sentence_english": "The news quickly spread throughout the blogosphere, generating much discussion.", + "pos": "noun", + "word_frequency": 30841 + }, + { + "word": "bobble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A slight mistake or a small, quick movement.", + "example_sentence_english": "The outfielder made a bobble, allowing the runner to advance to third base.", + "pos": "noun", + "word_frequency": 30843 + }, + { + "word": "bobsleigh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A type of sled used for racing down an ice track.", + "example_sentence_english": "The bobsleigh team trained hard for the Winter Olympics.", + "pos": "noun", + "word_frequency": 30844 + }, + { + "word": "bola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A throwing weapon made of weights on cords, used to entangle animals.", + "example_sentence_english": "The gaucho used a bola to catch the runaway cattle.", + "pos": "noun", + "word_frequency": 30846 + }, + { + "word": "boxy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Having a shape like a box; square and plain.", + "example_sentence_english": "The old car had a very boxy design compared to modern vehicles.", + "pos": "adjective", + "word_frequency": 30848 + }, + { + "word": "breakwater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A barrier built out into the sea to protect a harbor or coast from waves.", + "example_sentence_english": "The breakwater protected the small fishing boats from the strong ocean currents.", + "pos": "noun", + "word_frequency": 30850 + }, + { + "word": "broiler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A part of a cooker that cooks food by direct heat from above; a young chicken suitable for broiling.", + "example_sentence_english": "Put the chicken under the broiler for five minutes to crisp the skin.", + "pos": "noun", + "word_frequency": 30852 + }, + { + "word": "caliper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An instrument used for measuring internal or external dimensions.", + "example_sentence_english": "The engineer used a caliper to measure the precise diameter of the pipe.", + "pos": "noun", + "word_frequency": 30856 + }, + { + "word": "celluloid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A type of plastic, especially used for photographic film.", + "example_sentence_english": "Before digital, movies were shot on celluloid film.", + "pos": "noun", + "word_frequency": 30860 + }, + { + "word": "cilium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A short, hair-like vibrating structure found on the surface of certain cells.", + "example_sentence_english": "Cilia help to move mucus and trapped particles out of the respiratory tract.", + "pos": "noun", + "word_frequency": 30863 + }, + { + "word": "cinch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An extremely easy task; a strap for a saddle.", + "example_sentence_english": "Winning the game was a cinch for our team.", + "pos": "noun", + "word_frequency": 30864 + }, + { + "word": "cirrus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A type of high-altitude cloud, typically thin and wispy.", + "example_sentence_english": "The sky was filled with delicate cirrus clouds, indicating fair weather.", + "pos": "noun", + "word_frequency": 30865 + }, + { + "word": "clatter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A continuous rattling sound.", + "example_sentence_english": "The dishes fell to the floor with a loud clatter.", + "pos": "noun", + "word_frequency": 30867 + }, + { + "word": "closeted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Secretly keeping one's identity or beliefs hidden, especially regarding sexual orientation.", + "example_sentence_english": "He remained closeted about his true feelings for many years.", + "pos": "adjective", + "word_frequency": 30869 + }, + { + "word": "colic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Severe pain in the abdomen caused by gas or obstruction in the intestines.", + "example_sentence_english": "The baby cried for hours due to severe colic.", + "pos": "noun", + "word_frequency": 30871 + }, + { + "word": "collectable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Worth collecting; able to be collected.", + "example_sentence_english": "Vintage comic books are often highly collectable.", + "pos": "adjective", + "word_frequency": 30872 + }, + { + "word": "commonsense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Good sense and sound judgment in practical matters.", + "example_sentence_english": "It's just commonsense to look both ways before crossing the street.", + "pos": "noun", + "word_frequency": 30873 + }, + { + "word": "conjugal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to marriage or the relationship between a married couple.", + "example_sentence_english": "They were granted conjugal visits while he was in prison.", + "pos": "adjective", + "word_frequency": 30875 + }, + { + "word": "courageously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a brave or courageous manner.", + "example_sentence_english": "She courageously faced her fears and spoke in front of the large audience.", + "pos": "adverb", + "word_frequency": 30879 + }, + { + "word": "covalent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting a chemical bond formed by the sharing of electrons", + "example_sentence_english": "Water molecules are held together by strong covalent bonds.", + "pos": "adjective", + "word_frequency": 30880 + }, + { + "word": "crawfish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a freshwater crustacean resembling a small lobster", + "example_sentence_english": "We caught some crawfish in the stream.", + "pos": "noun", + "word_frequency": 30882 + }, + { + "word": "cruciate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shaped like a cross", + "example_sentence_english": "He tore his anterior cruciate ligament during the game.", + "pos": "adjective", + "word_frequency": 30884 + }, + { + "word": "cufflink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for fastening the cuffs of a shirt", + "example_sentence_english": "He wore elegant cufflinks with his suit.", + "pos": "noun", + "word_frequency": 30886 + }, + { + "word": "dandruff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small pieces of dead skin in a person's hair", + "example_sentence_english": "He used a special shampoo to control his dandruff.", + "pos": "noun", + "word_frequency": 30887 + }, + { + "word": "deductive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by or based on the inference of particular instances by reference to a general law or principle", + "example_sentence_english": "Sherlock Holmes was famous for his deductive reasoning.", + "pos": "adjective", + "word_frequency": 30889 + }, + { + "word": "defile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to spoil or make impure", + "example_sentence_english": "They were accused of trying to defile the sacred monument.", + "pos": "verb", + "word_frequency": 30890 + }, + { + "word": "dingle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small wooded valley or dell", + "example_sentence_english": "We walked through the peaceful dingle on our hike.", + "pos": "noun", + "word_frequency": 30895 + }, + { + "word": "diphtheria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a serious bacterial infection", + "example_sentence_english": "Vaccination helps prevent diseases like diphtheria.", + "pos": "noun", + "word_frequency": 30896 + }, + { + "word": "disturbingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that causes anxiety or uneasiness", + "example_sentence_english": "The news was disturbingly quiet.", + "pos": "adverb", + "word_frequency": 30897 + }, + { + "word": "doer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who does something", + "example_sentence_english": "He's more of a doer than a talker.", + "pos": "noun", + "word_frequency": 30899 + }, + { + "word": "doorknob", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a handle for opening a door", + "example_sentence_english": "She turned the doorknob and entered the room.", + "pos": "noun", + "word_frequency": 30900 + }, + { + "word": "doormat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a mat placed at the entrance of a door for wiping shoes", + "example_sentence_english": "Please wipe your feet on the doormat.", + "pos": "noun", + "word_frequency": 30901 + }, + { + "word": "easygoing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxed and tolerant in attitude or manner", + "example_sentence_english": "He has a very easygoing personality.", + "pos": "adjective", + "word_frequency": 30904 + }, + { + "word": "epidermal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the epidermis (outer layer of skin)", + "example_sentence_english": "The cream is designed to treat epidermal issues.", + "pos": "adjective", + "word_frequency": 30908 + }, + { + "word": "erratically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in an unpredictable or irregular way", + "example_sentence_english": "The car was swerving erratically down the road.", + "pos": "adverb", + "word_frequency": 30909 + }, + { + "word": "etruscan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to ancient Etruria or its people, language, or culture", + "example_sentence_english": "We studied ancient Etruscan art in history class.", + "pos": "adjective", + "word_frequency": 30912 + }, + { + "word": "extraordinaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exceptionally good; outstanding", + "example_sentence_english": "He is a chef extraordinaire.", + "pos": "adjective", + "word_frequency": 30913 + }, + { + "word": "farcical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resembling a farce; absurd", + "example_sentence_english": "The whole situation became utterly farcical.", + "pos": "adjective", + "word_frequency": 30915 + }, + { + "word": "featherweight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a weight class in boxing or wrestling; something very light", + "example_sentence_english": "He competed in the featherweight division.", + "pos": "noun", + "word_frequency": 30916 + }, + { + "word": "feign", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pretend to be affected by (a feeling, state, or injury)", + "example_sentence_english": "She tried to feign illness to avoid going to school.", + "pos": "verb", + "word_frequency": 30917 + }, + { + "word": "filip", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stimulus or boost", + "example_sentence_english": "The new policy gave a filip to the economy.", + "pos": "noun", + "word_frequency": 30919 + }, + { + "word": "folate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a form of vitamin B", + "example_sentence_english": "Folate is important for cell growth.", + "pos": "noun", + "word_frequency": 30922 + }, + { + "word": "forthwith", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immediately; without delay", + "example_sentence_english": "The order must be carried out forthwith.", + "pos": "adverb", + "word_frequency": 30924 + }, + { + "word": "frankfurter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of sausage; a person from Frankfurt", + "example_sentence_english": "He ordered a frankfurter with mustard.", + "pos": "noun", + "word_frequency": 30926 + }, + { + "word": "gestalt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organized whole that is perceived as more than the sum of its parts", + "example_sentence_english": "The painting creates a powerful gestalt.", + "pos": "noun", + "word_frequency": 30933 + }, + { + "word": "gigabyte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of information equal to one billion bytes", + "example_sentence_english": "My phone has 128 gigabytes of storage.", + "pos": "noun", + "word_frequency": 30935 + }, + { + "word": "gipsy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a nomadic people; a person who lives a nomadic life", + "example_sentence_english": "The old gipsy woman told fortunes.", + "pos": "noun", + "word_frequency": 30937 + }, + { + "word": "glint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tiny, quick flash of light", + "example_sentence_english": "There was a glint of mischief in his eyes.", + "pos": "noun", + "word_frequency": 30939 + }, + { + "word": "gloat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to express excessive satisfaction or triumph", + "example_sentence_english": "He couldn't help but gloat over his victory.", + "pos": "verb", + "word_frequency": 30940 + }, + { + "word": "goad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a stick with a pointed end for driving cattle; a stimulus to action", + "example_sentence_english": "His insults acted as a goad to her ambition.", + "pos": "noun", + "word_frequency": 30942 + }, + { + "word": "greenlight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permission to proceed with a project", + "example_sentence_english": "The project received the greenlight from the board.", + "pos": "noun", + "word_frequency": 30944 + }, + { + "word": "greyish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhat grey", + "example_sentence_english": "The sky had a dull, greyish color.", + "pos": "adjective", + "word_frequency": 30946 + }, + { + "word": "grog", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a drink made of rum and water", + "example_sentence_english": "Sailors used to drink grog on long voyages.", + "pos": "noun", + "word_frequency": 30947 + }, + { + "word": "groupie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fan, especially of a musical group, who follows them on tour", + "example_sentence_english": "She was a dedicated groupie, following the band everywhere.", + "pos": "noun", + "word_frequency": 30948 + }, + { + "word": "haggle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispute or bargain persistently, especially over the cost of something", + "example_sentence_english": "She loves to haggle over prices at the market.", + "pos": "verb", + "word_frequency": 30952 + }, + { + "word": "halcyon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denoting a period of time in the past that was idyllically happy and peaceful", + "example_sentence_english": "He often reminisced about the halcyon days of his youth.", + "pos": "adjective", + "word_frequency": 30953 + }, + { + "word": "harshness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severity or cruelty; roughness", + "example_sentence_english": "The harshness of the winter weather was unexpected.", + "pos": "noun", + "word_frequency": 30954 + }, + { + "word": "headscarf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a piece of cloth worn on the head", + "example_sentence_english": "She wore a colorful headscarf to protect her hair.", + "pos": "noun", + "word_frequency": 30957 + }, + { + "word": "hotbed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a place where a lot of a particular activity, especially an undesirable one, flourishes", + "example_sentence_english": "The city became a hotbed of political unrest.", + "pos": "noun", + "word_frequency": 30963 + }, + { + "word": "hotness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being hot", + "example_sentence_english": "The hotness of the chili pepper made my eyes water.", + "pos": "noun", + "word_frequency": 30964 + }, + { + "word": "incinerate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "destroy (something, especially waste material) by burning", + "example_sentence_english": "The old documents were incinerated to protect privacy.", + "pos": "verb", + "word_frequency": 30968 + }, + { + "word": "indent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to begin a line of text further from the margin than the main part of the text", + "example_sentence_english": "Please indent the first line of each paragraph.", + "pos": "verb", + "word_frequency": 30969 + }, + { + "word": "insolence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rude and disrespectful behavior", + "example_sentence_english": "The student was punished for his insolence towards the teacher.", + "pos": "noun", + "word_frequency": 30970 + }, + { + "word": "instigation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of urging on or inciting someone to do something", + "example_sentence_english": "The riot occurred at the instigation of a few radical leaders.", + "pos": "noun", + "word_frequency": 30971 + }, + { + "word": "irresponsibility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of not being responsible or accountable", + "example_sentence_english": "His irresponsibility led to the project's failure.", + "pos": "noun", + "word_frequency": 30972 + }, + { + "word": "islamism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a political ideology based on Islamic law", + "example_sentence_english": "The rise of Islamism has been a significant factor in regional politics.", + "pos": "noun", + "word_frequency": 30973 + }, + { + "word": "jamboree", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large celebration or party, typically one held outdoors", + "example_sentence_english": "Thousands of Scouts attended the international jamboree.", + "pos": "noun", + "word_frequency": 30977 + }, + { + "word": "jeweller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who makes, sells, or repairs jewelry", + "example_sentence_english": "She took her watch to the jeweller for repair.", + "pos": "noun", + "word_frequency": 30980 + }, + { + "word": "lanyard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cord or strap worn around the neck or wrist to hold an item", + "example_sentence_english": "He wore his ID card on a lanyard around his neck.", + "pos": "noun", + "word_frequency": 30994 + }, + { + "word": "letdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a disappointment", + "example_sentence_english": "The movie was a real letdown after all the hype.", + "pos": "noun", + "word_frequency": 30997 + }, + { + "word": "libretto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the text of an opera or other long vocal work", + "example_sentence_english": "The composer worked closely with the librettist to create the opera.", + "pos": "noun", + "word_frequency": 30999 + }, + { + "word": "lidar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a method for measuring distances by illuminating the target with laser light and measuring the reflection with a sensor", + "example_sentence_english": "Lidar technology is crucial for autonomous vehicles.", + "pos": "noun", + "word_frequency": 31000 + }, + { + "word": "lipoprotein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a biochemical assembly that contains both lipid and protein, found in the blood plasma", + "example_sentence_english": "High levels of low-density lipoprotein can be a risk factor for heart disease.", + "pos": "noun", + "word_frequency": 31001 + }, + { + "word": "lopes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long, easy strides", + "example_sentence_english": "The deer moved through the forest with graceful lopes.", + "pos": "noun", + "word_frequency": 31003 + }, + { + "word": "lox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smoked salmon, typically thinly sliced", + "example_sentence_english": "I ordered a bagel with cream cheese and lox for breakfast.", + "pos": "noun", + "word_frequency": 31004 + }, + { + "word": "machina", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "machine (Latin, often in 'deus ex machina')", + "example_sentence_english": "The sudden appearance of the hero felt like a deus ex machina.", + "pos": "noun", + "word_frequency": 31008 + }, + { + "word": "malignancy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or presence of a malignant tumor; cancer", + "example_sentence_english": "The biopsy confirmed the presence of a malignancy.", + "pos": "noun", + "word_frequency": 31011 + }, + { + "word": "marginalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the treatment of a person, group, or concept as insignificant or peripheral", + "example_sentence_english": "The marginalization of minority groups is a serious social issue.", + "pos": "noun", + "word_frequency": 31014 + }, + { + "word": "marshy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling or consisting of a marsh; boggy", + "example_sentence_english": "We had to cross a marshy area to reach the lake.", + "pos": "adjective", + "word_frequency": 31015 + }, + { + "word": "matriculation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of enrolling at a college or university", + "example_sentence_english": "The university's matriculation ceremony is held in September.", + "pos": "noun", + "word_frequency": 31017 + }, + { + "word": "meister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a master or expert, especially in a particular art or craft", + "example_sentence_english": "He's a true coffee meister, knowing everything about brewing.", + "pos": "noun", + "word_frequency": 31021 + }, + { + "word": "mercifully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that shows mercy; fortunately", + "example_sentence_english": "Mercifully, no one was seriously injured in the accident.", + "pos": "adverb", + "word_frequency": 31022 + }, + { + "word": "microbiome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the microorganisms in a particular environment (including the body or a part of the body)", + "example_sentence_english": "Research into the human gut microbiome is rapidly expanding.", + "pos": "noun", + "word_frequency": 31025 + }, + { + "word": "minutia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small, precise, or trivial detail", + "example_sentence_english": "He was obsessed with every minutia of the project.", + "pos": "noun", + "word_frequency": 31026 + }, + { + "word": "mongrel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dog of no definable type or breed", + "example_sentence_english": "Our family dog is a lovable mongrel with a mix of breeds.", + "pos": "noun", + "word_frequency": 31030 + }, + { + "word": "nanoscale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a scale of nanometers", + "example_sentence_english": "Scientists are developing new materials at the nanoscale.", + "pos": "noun", + "word_frequency": 31040 + }, + { + "word": "nob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person of high social standing or wealth (informal, often derogatory)", + "example_sentence_english": "He acts like a real nob, always looking down on others.", + "pos": "noun", + "word_frequency": 31049 + }, + { + "word": "objector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who objects to something", + "example_sentence_english": "There was only one objector to the new proposal.", + "pos": "noun", + "word_frequency": 31055 + }, + { + "word": "octagonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having eight sides", + "example_sentence_english": "The table had an octagonal shape.", + "pos": "adjective", + "word_frequency": 31056 + }, + { + "word": "operable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be used or operated", + "example_sentence_english": "The machine is now fully operable after the repairs.", + "pos": "adjective", + "word_frequency": 31058 + }, + { + "word": "orgasmic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or causing orgasm; intensely pleasurable", + "example_sentence_english": "The dessert was described as an orgasmic experience by the food critic.", + "pos": "adjective", + "word_frequency": 31059 + }, + { + "word": "outclass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be far superior to", + "example_sentence_english": "The champion boxer easily outclassed his opponent.", + "pos": "verb", + "word_frequency": 31061 + }, + { + "word": "pacifism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the belief that war and violence are unjustifiable", + "example_sentence_english": "His commitment to pacifism led him to refuse military service.", + "pos": "noun", + "word_frequency": 31063 + }, + { + "word": "perp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpetrator (informal)", + "example_sentence_english": "The police are still searching for the perp.", + "pos": "noun", + "word_frequency": 31068 + }, + { + "word": "pinewood", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wood from a pine tree", + "example_sentence_english": "The furniture was made from light pinewood.", + "pos": "noun", + "word_frequency": 31074 + }, + { + "word": "policymaking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of making policies", + "example_sentence_english": "Effective policymaking requires careful consideration of all stakeholders.", + "pos": "noun", + "word_frequency": 31076 + }, + { + "word": "postnatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the period after childbirth", + "example_sentence_english": "She received excellent postnatal care after the baby was born.", + "pos": "adjective", + "word_frequency": 31077 + }, + { + "word": "powertrain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the system in a vehicle that transmits power from the engine to the driving wheels", + "example_sentence_english": "Engineers are working to improve the efficiency of the car's powertrain.", + "pos": "noun", + "word_frequency": 31078 + }, + { + "word": "predefined", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determined in advance", + "example_sentence_english": "The software uses a set of predefined rules.", + "pos": "adjective", + "word_frequency": 31079 + }, + { + "word": "preferentially", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that shows preference", + "example_sentence_english": "We will preferentially select candidates with relevant experience.", + "pos": "adverb", + "word_frequency": 31080 + }, + { + "word": "prelate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a high-ranking cleric", + "example_sentence_english": "The prelate addressed the congregation.", + "pos": "noun", + "word_frequency": 31081 + }, + { + "word": "premonition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong feeling that something is about to happen, especially something unpleasant", + "example_sentence_english": "She had a premonition that something bad was going to happen.", + "pos": "noun", + "word_frequency": 31082 + }, + { + "word": "proportionality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of corresponding in size, degree, or intensity", + "example_sentence_english": "The judge emphasized the importance of proportionality in sentencing.", + "pos": "noun", + "word_frequency": 31083 + }, + { + "word": "proportionately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that corresponds in size or amount to something else", + "example_sentence_english": "The costs will be shared proportionately among the members.", + "pos": "adverb", + "word_frequency": 31084 + }, + { + "word": "provident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making or indicating timely preparation for the future; prudent", + "example_sentence_english": "A provident person saves money for retirement.", + "pos": "adjective", + "word_frequency": 31085 + }, + { + "word": "pubescent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reaching or having reached puberty", + "example_sentence_english": "The study focused on changes in pubescent adolescents.", + "pos": "adjective", + "word_frequency": 31086 + }, + { + "word": "pyro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is obsessed with fire; a pyromaniac", + "example_sentence_english": "The police suspected a pyro was responsible for the recent fires.", + "pos": "noun", + "word_frequency": 31087 + }, + { + "word": "quantifiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be expressed or measured as a quantity", + "example_sentence_english": "We need to set quantifiable goals for the project.", + "pos": "adjective", + "word_frequency": 31089 + }, + { + "word": "rajah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an Indian king or prince", + "example_sentence_english": "The rajah ruled over a vast kingdom.", + "pos": "noun", + "word_frequency": 31092 + }, + { + "word": "rata", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a New Zealand tree or shrub of the myrtle family", + "example_sentence_english": "The rata tree was covered in vibrant red flowers.", + "pos": "noun", + "word_frequency": 31095 + }, + { + "word": "reconsideration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of considering something again, especially for a possible change of decision", + "example_sentence_english": "The committee agreed to a reconsideration of the proposal.", + "pos": "noun", + "word_frequency": 31098 + }, + { + "word": "recursion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of a function or procedure calling itself", + "example_sentence_english": "Understanding recursion is key to advanced programming.", + "pos": "noun", + "word_frequency": 31099 + }, + { + "word": "religiosity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being religious; religiousness", + "example_sentence_english": "The study examined the impact of religiosity on social behavior.", + "pos": "noun", + "word_frequency": 31101 + }, + { + "word": "reportage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the reporting of news, especially by a journalist", + "example_sentence_english": "The documentary was praised for its honest reportage of the conflict.", + "pos": "noun", + "word_frequency": 31102 + }, + { + "word": "revile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criticize in an abusive or angrily insulting manner", + "example_sentence_english": "He was reviled by the public for his controversial statements.", + "pos": "verb", + "word_frequency": 31103 + }, + { + "word": "roebuck", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a male roe deer", + "example_sentence_english": "A roebuck was spotted grazing in the field.", + "pos": "noun", + "word_frequency": 31106 + }, + { + "word": "rotator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a muscle or part that rotates", + "example_sentence_english": "The shoulder's rotator cuff is crucial for arm movement.", + "pos": "noun", + "word_frequency": 31108 + }, + { + "word": "sadist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who derives pleasure from inflicting pain, suffering, or humiliation on others", + "example_sentence_english": "The villain in the story was portrayed as a cruel sadist.", + "pos": "noun", + "word_frequency": 31110 + }, + { + "word": "sais", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a type of traditional Okinawan weapon, or (archaic) a groom or attendant", + "example_sentence_english": "The martial artist wielded two sais with precision.", + "pos": "noun", + "word_frequency": 31111 + }, + { + "word": "samara", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a dry, winged fruit containing a single seed", + "example_sentence_english": "Maple trees produce samara seeds that spin as they fall.", + "pos": "noun", + "word_frequency": 31114 + }, + { + "word": "scheduler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or system that schedules", + "example_sentence_english": "The operating system's scheduler manages CPU time for different processes.", + "pos": "noun", + "word_frequency": 31118 + }, + { + "word": "screamer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person or thing that screams; something outstanding or remarkable.", + "example_sentence_english": "The goal was an absolute screamer from outside the box.", + "pos": "noun", + "word_frequency": 31120 + }, + { + "word": "scrumptious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Extremely delicious or appealing.", + "example_sentence_english": "The cake was absolutely scrumptious.", + "pos": "adjective", + "word_frequency": 31121 + }, + { + "word": "shakedown", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A thorough search or investigation; an initial test or trial.", + "example_sentence_english": "The new car went through a rigorous shakedown test.", + "pos": "noun", + "word_frequency": 31124 + }, + { + "word": "shamefully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a way that causes shame or disgrace.", + "example_sentence_english": "He shamefully admitted his mistake.", + "pos": "adverb", + "word_frequency": 31125 + }, + { + "word": "shariah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamic law.", + "example_sentence_english": "Shariah law governs many aspects of life in some Islamic countries.", + "pos": "noun", + "word_frequency": 31126 + }, + { + "word": "shimmy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A dance involving rapid shaking of the body; a wobble or vibration.", + "example_sentence_english": "The car developed a shimmy at high speeds.", + "pos": "noun", + "word_frequency": 31127 + }, + { + "word": "shoestring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A very small amount of money; a shoelace.", + "example_sentence_english": "They started the business on a shoestring budget.", + "pos": "noun", + "word_frequency": 31128 + }, + { + "word": "sleaze", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Immoral or corrupt behavior; a person engaging in such behavior.", + "example_sentence_english": "The politician was accused of financial sleaze.", + "pos": "noun", + "word_frequency": 31131 + }, + { + "word": "snark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sarcastic or critical remarks; an imaginary creature.", + "example_sentence_english": "Her blog posts are full of witty snark.", + "pos": "noun", + "word_frequency": 31134 + }, + { + "word": "spurn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Reject with disdain or contempt.", + "example_sentence_english": "She spurned his advances and walked away.", + "pos": "verb", + "word_frequency": 31137 + }, + { + "word": "squamous", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Covered with or consisting of scales.", + "example_sentence_english": "The doctor identified squamous cell carcinoma.", + "pos": "adjective", + "word_frequency": 31138 + }, + { + "word": "stagnate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cease to develop; become inactive or dull.", + "example_sentence_english": "The economy began to stagnate after years of growth.", + "pos": "verb", + "word_frequency": 31139 + }, + { + "word": "steelhead", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A migratory rainbow trout.", + "example_sentence_english": "Anglers often travel long distances to fish for steelhead.", + "pos": "noun", + "word_frequency": 31142 + }, + { + "word": "stockman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who looks after livestock.", + "example_sentence_english": "The stockman spent his days tending to the cattle.", + "pos": "noun", + "word_frequency": 31143 + }, + { + "word": "stuntman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who performs dangerous stunts, especially in films.", + "example_sentence_english": "The stuntman performed a dangerous jump from the moving car.", + "pos": "noun", + "word_frequency": 31145 + }, + { + "word": "subpar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Below an average or acceptable level.", + "example_sentence_english": "His performance was subpar compared to his usual standards.", + "pos": "adjective", + "word_frequency": 31146 + }, + { + "word": "subsume", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Include or absorb (something) in something else.", + "example_sentence_english": "The new theory attempts to subsume all previous findings.", + "pos": "verb", + "word_frequency": 31147 + }, + { + "word": "sunbeam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A ray of sunlight.", + "example_sentence_english": "A single sunbeam pierced through the clouds.", + "pos": "noun", + "word_frequency": 31148 + }, + { + "word": "swanky", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Stylishly luxurious and expensive.", + "example_sentence_english": "They stayed in a swanky hotel downtown.", + "pos": "adjective", + "word_frequency": 31149 + }, + { + "word": "thereabouts", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Near that place, time, or amount.", + "example_sentence_english": "He lives in London or thereabouts.", + "pos": "adverb", + "word_frequency": 31155 + }, + { + "word": "thermos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A vacuum flask for keeping liquids hot or cold.", + "example_sentence_english": "I poured hot coffee into my thermos for the trip.", + "pos": "noun", + "word_frequency": 31156 + }, + { + "word": "thrasher", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person or thing that thrashes; a type of bird.", + "example_sentence_english": "The brown thrasher is known for its varied song.", + "pos": "noun", + "word_frequency": 31157 + }, + { + "word": "tine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A prong or point, such as on a fork or antler.", + "example_sentence_english": "Be careful not to bend the tines of the fork.", + "pos": "noun", + "word_frequency": 31159 + }, + { + "word": "tinsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shiny decorative strips", + "example_sentence_english": "The Christmas tree was decorated with bright tinsel.", + "pos": "noun", + "word_frequency": 31160 + }, + { + "word": "tortuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "full of twists and turns; excessively long and complex", + "example_sentence_english": "The tortuous path led us deep into the mountains.", + "pos": "adjective", + "word_frequency": 31161 + }, + { + "word": "toughen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become strong or resilient", + "example_sentence_english": "The training will toughen the new recruits.", + "pos": "verb", + "word_frequency": 31162 + }, + { + "word": "trawl", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fish with a large net; to search thoroughly", + "example_sentence_english": "They had to trawl through many documents to find the information.", + "pos": "verb", + "word_frequency": 31163 + }, + { + "word": "triglyceride", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of fat found in the blood", + "example_sentence_english": "High levels of triglyceride can increase the risk of heart disease.", + "pos": "noun", + "word_frequency": 31164 + }, + { + "word": "triumphal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "celebrating a triumph or victory", + "example_sentence_english": "The team made a triumphal return after winning the championship.", + "pos": "adjective", + "word_frequency": 31165 + }, + { + "word": "typology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study or analysis of types or categories", + "example_sentence_english": "The research involved a typology of different architectural styles.", + "pos": "noun", + "word_frequency": 31168 + }, + { + "word": "ultralight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely light in weight", + "example_sentence_english": "He bought an ultralight tent for his backpacking trip.", + "pos": "adjective", + "word_frequency": 31170 + }, + { + "word": "uncooperative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not willing to work with others or be helpful", + "example_sentence_english": "The witness was uncooperative with the police investigation.", + "pos": "adjective", + "word_frequency": 31171 + }, + { + "word": "underappreciated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not valued or recognized enough", + "example_sentence_english": "Many artists feel their work is underappreciated during their lifetime.", + "pos": "adjective", + "word_frequency": 31172 + }, + { + "word": "undisciplined", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking in discipline or control", + "example_sentence_english": "The undisciplined student often disrupted the class.", + "pos": "adjective", + "word_frequency": 31173 + }, + { + "word": "uninjured", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not hurt or harmed", + "example_sentence_english": "Despite the accident, she was miraculously uninjured.", + "pos": "adjective", + "word_frequency": 31174 + }, + { + "word": "unobstructed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not blocked or hindered", + "example_sentence_english": "The room offered an unobstructed view of the ocean.", + "pos": "adjective", + "word_frequency": 31176 + }, + { + "word": "unobtrusive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not attracting attention", + "example_sentence_english": "The camera was designed to be unobtrusive, blending into the background.", + "pos": "adjective", + "word_frequency": 31177 + }, + { + "word": "unwitting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not knowing or aware", + "example_sentence_english": "He was an unwitting accomplice in the crime.", + "pos": "adjective", + "word_frequency": 31178 + }, + { + "word": "upholster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide furniture with padding, springs, webbing, and covering", + "example_sentence_english": "She decided to upholster the old armchair herself.", + "pos": "verb", + "word_frequency": 31179 + }, + { + "word": "upturned", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turned upward", + "example_sentence_english": "He looked at the sky with an upturned face.", + "pos": "adjective", + "word_frequency": 31180 + }, + { + "word": "vaporize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn into vapor", + "example_sentence_english": "The intense heat caused the water to vaporize instantly.", + "pos": "verb", + "word_frequency": 31183 + }, + { + "word": "vulgarity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being crude or offensive", + "example_sentence_english": "He was shocked by the vulgarity of the language used in the film.", + "pos": "noun", + "word_frequency": 31186 + }, + { + "word": "wanderlust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a strong desire to travel", + "example_sentence_english": "Her wanderlust led her to explore many different countries.", + "pos": "noun", + "word_frequency": 31188 + }, + { + "word": "waterside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the land along the edge of a body of water", + "example_sentence_english": "They enjoyed a picnic by the waterside.", + "pos": "noun", + "word_frequency": 31189 + }, + { + "word": "wattage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an amount of power expressed in watts", + "example_sentence_english": "Check the wattage of the light bulb before installing it.", + "pos": "noun", + "word_frequency": 31190 + }, + { + "word": "weightless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having no apparent weight", + "example_sentence_english": "Astronauts experience a weightless sensation in space.", + "pos": "adjective", + "word_frequency": 31192 + }, + { + "word": "wheelhouse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a pilot house on a boat; an area of expertise", + "example_sentence_english": "Project management is right in his wheelhouse.", + "pos": "noun", + "word_frequency": 31193 + }, + { + "word": "yucca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a plant with stiff, sword-shaped leaves", + "example_sentence_english": "A large yucca plant grew in the desert garden.", + "pos": "noun", + "word_frequency": 31197 + }, + { + "word": "abhor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detest; strongly dislike", + "example_sentence_english": "She truly abhors violence in any form.", + "pos": "verb", + "word_frequency": 31210 + }, + { + "word": "absentia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absence", + "example_sentence_english": "He was tried in absentia, as he had fled the country.", + "pos": "noun", + "word_frequency": 31212 + }, + { + "word": "accursed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "under a curse; doomed", + "example_sentence_english": "The old house was said to be accursed.", + "pos": "adjective", + "word_frequency": 31213 + }, + { + "word": "adaptor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for connecting parts of different sizes or types", + "example_sentence_english": "I need an adaptor to plug my laptop into the European outlet.", + "pos": "noun", + "word_frequency": 31214 + }, + { + "word": "aeon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an indefinitely long period of time; an age", + "example_sentence_english": "It felt like an aeon since they last met.", + "pos": "noun", + "word_frequency": 31217 + }, + { + "word": "afterglow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light or radiance remaining after the source has disappeared; a pleasant feeling remaining after a positive experience", + "example_sentence_english": "The afterglow of the sunset painted the sky in vibrant colors.", + "pos": "noun", + "word_frequency": 31219 + }, + { + "word": "aghast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "filled with horror or shock", + "example_sentence_english": "She was aghast at the terrible news.", + "pos": "adjective", + "word_frequency": 31220 + }, + { + "word": "amoeba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a single-celled organism that can change its shape", + "example_sentence_english": "Under the microscope, we observed the amoeba moving slowly.", + "pos": "noun", + "word_frequency": 31225 + }, + { + "word": "antimatter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matter composed of antiparticles", + "example_sentence_english": "Scientists are studying the properties of antimatter.", + "pos": "noun", + "word_frequency": 31228 + }, + { + "word": "aspirational", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing a desire to achieve success or a higher status", + "example_sentence_english": "The company's new product is aimed at aspirational consumers.", + "pos": "adjective", + "word_frequency": 31231 + }, + { + "word": "azur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bright blue color", + "example_sentence_english": "The painting featured a deep azur sky.", + "pos": "noun", + "word_frequency": 31237 + }, + { + "word": "baka", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot; fool (Japanese loanword)", + "example_sentence_english": "Don't be such a baka, you can do it!", + "pos": "noun", + "word_frequency": 31239 + }, + { + "word": "bariatric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the treatment of obesity", + "example_sentence_english": "The hospital specializes in bariatric surgery.", + "pos": "adjective", + "word_frequency": 31243 + }, + { + "word": "bedbug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, flat, reddish-brown insect that feeds on the blood of humans and other animals", + "example_sentence_english": "They discovered bedbugs in their hotel room.", + "pos": "noun", + "word_frequency": 31247 + }, + { + "word": "bedridden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confined to bed by illness or infirmity", + "example_sentence_english": "After the accident, he was bedridden for several weeks.", + "pos": "adjective", + "word_frequency": 31248 + }, + { + "word": "bronzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a cosmetic product used to give the skin a tanned look", + "example_sentence_english": "She applied bronzer to her cheeks for a sun-kissed glow.", + "pos": "noun", + "word_frequency": 31258 + }, + { + "word": "burnet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of herbaceous plant, often used in salads or for medicinal purposes", + "example_sentence_english": "The garden included various herbs, including burnet.", + "pos": "noun", + "word_frequency": 31260 + }, + { + "word": "caldera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large volcanic crater, typically formed by the collapse of the mouth of a volcano", + "example_sentence_english": "The lake formed within the ancient caldera of the volcano.", + "pos": "noun", + "word_frequency": 31263 + }, + { + "word": "cataclysm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a violent natural event or disaster; a sudden, violent upheaval", + "example_sentence_english": "The earthquake was a cataclysm that devastated the region.", + "pos": "noun", + "word_frequency": 31268 + }, + { + "word": "centrepiece", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the most important or attractive item in a collection or display", + "example_sentence_english": "The large sculpture was the centrepiece of the exhibition.", + "pos": "noun", + "word_frequency": 31271 + }, + { + "word": "chaise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of long reclining chair, often part of a 'chaise longue'", + "example_sentence_english": "She relaxed on the chaise longue by the pool.", + "pos": "noun", + "word_frequency": 31272 + }, + { + "word": "choc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "short for chocolate", + "example_sentence_english": "Do you want a choc biscuit?", + "pos": "noun", + "word_frequency": 31276 + }, + { + "word": "choco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "short for chocolate", + "example_sentence_english": "The kids love choco milk.", + "pos": "noun", + "word_frequency": 31277 + }, + { + "word": "chronograph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an instrument for recording time with great accuracy, typically a stop-watch", + "example_sentence_english": "His new watch has a built-in chronograph function.", + "pos": "noun", + "word_frequency": 31278 + }, + { + "word": "clairvoyant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who claims to have a supernatural ability to perceive events in the future or beyond normal sensory contact", + "example_sentence_english": "The clairvoyant predicted a significant change in her life.", + "pos": "noun", + "word_frequency": 31280 + }, + { + "word": "coldness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the quality or state of being cold", + "example_sentence_english": "The coldness of the winter air made her shiver.", + "pos": "noun", + "word_frequency": 31283 + }, + { + "word": "coleslaw", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a salad of shredded raw cabbage, usually with a mayonnaise or vinaigrette dressing", + "example_sentence_english": "We had coleslaw with our barbecue.", + "pos": "noun", + "word_frequency": 31284 + }, + { + "word": "collard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of cabbage with loose leaves, typically eaten as a vegetable", + "example_sentence_english": "She cooked a delicious dish with collard greens.", + "pos": "noun", + "word_frequency": 31285 + }, + { + "word": "commercialize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manage or exploit for profit; make commercial", + "example_sentence_english": "They decided to commercialize their new invention.", + "pos": "verb", + "word_frequency": 31286 + }, + { + "word": "committal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of committing a person or thing to a place or to the care of someone", + "example_sentence_english": "The committal of the body took place at the cemetery.", + "pos": "noun", + "word_frequency": 31287 + }, + { + "word": "conceptualize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "form a concept or idea of (something); imagine", + "example_sentence_english": "It's hard to conceptualize the vastness of space.", + "pos": "verb", + "word_frequency": 31288 + }, + { + "word": "connive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secretly allow (something immoral, illegal, or harmful) to occur", + "example_sentence_english": "The guards were accused of conniving with the prisoners.", + "pos": "verb", + "word_frequency": 31290 + }, + { + "word": "contemptuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing contempt; scornful", + "example_sentence_english": "He gave a contemptuous laugh at her suggestion.", + "pos": "adjective", + "word_frequency": 31291 + }, + { + "word": "corrode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroy or damage (metal, stone, or other materials) slowly by chemical action", + "example_sentence_english": "Rust began to corrode the old metal pipes.", + "pos": "verb", + "word_frequency": 31292 + }, + { + "word": "cosmetology", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study and practice of cosmetics and the treatment of the skin, hair, and nails", + "example_sentence_english": "She decided to pursue a career in cosmetology.", + "pos": "noun", + "word_frequency": 31294 + }, + { + "word": "counterintelligence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "activities designed to prevent an enemy from gaining secret information", + "example_sentence_english": "The agency's counterintelligence efforts thwarted the spy's plans.", + "pos": "noun", + "word_frequency": 31296 + }, + { + "word": "countertop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flat surface for working on, especially in a kitchen", + "example_sentence_english": "She wiped down the kitchen countertop after cooking.", + "pos": "noun", + "word_frequency": 31297 + }, + { + "word": "crag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a steep, rugged rock or cliff", + "example_sentence_english": "The climber scaled the jagged crag with difficulty.", + "pos": "noun", + "word_frequency": 31298 + }, + { + "word": "cranium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the skull, especially the part enclosing the brain", + "example_sentence_english": "The human cranium protects the brain.", + "pos": "noun", + "word_frequency": 31299 + }, + { + "word": "crystallization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process by which a substance forms into crystals", + "example_sentence_english": "The crystallization of sugar occurs when the solution cools.", + "pos": "noun", + "word_frequency": 31300 + }, + { + "word": "dachshund", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short-legged, long-bodied breed of dog", + "example_sentence_english": "Her pet dachshund loved to chase squirrels.", + "pos": "noun", + "word_frequency": 31303 + }, + { + "word": "dastardly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wicked and cruel", + "example_sentence_english": "The villain committed a dastardly act.", + "pos": "adjective", + "word_frequency": 31306 + }, + { + "word": "deadpan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberately impassive or expressionless", + "example_sentence_english": "He delivered the joke with a deadpan expression.", + "pos": "adjective", + "word_frequency": 31307 + }, + { + "word": "decibel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit used to measure the intensity of a sound or the power level of an electrical signal", + "example_sentence_english": "The noise level exceeded 90 decibels.", + "pos": "noun", + "word_frequency": 31308 + }, + { + "word": "decry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "publicly denounce", + "example_sentence_english": "The critics decried the new policy as unfair.", + "pos": "verb", + "word_frequency": 31309 + }, + { + "word": "desecrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treat (a sacred place or thing) with violent disrespect; violate", + "example_sentence_english": "Vandals desecrated the ancient monument.", + "pos": "verb", + "word_frequency": 31311 + }, + { + "word": "dewy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wet with dew", + "example_sentence_english": "The grass was dewy in the early morning.", + "pos": "adjective", + "word_frequency": 31312 + }, + { + "word": "dilly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an excellent or remarkable thing", + "example_sentence_english": "That goal was a real dilly!", + "pos": "noun", + "word_frequency": 31313 + }, + { + "word": "discontinuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having breaks or gaps; not continuous", + "example_sentence_english": "The data showed a discontinuous pattern.", + "pos": "adjective", + "word_frequency": 31316 + }, + { + "word": "dockland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an area of docks and associated warehouses and other buildings", + "example_sentence_english": "The old dockland area has been redeveloped into apartments.", + "pos": "noun", + "word_frequency": 31317 + }, + { + "word": "dolomite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a common rock-forming mineral, a carbonate of calcium and magnesium", + "example_sentence_english": "The Dolomites are a mountain range composed largely of dolomite rock.", + "pos": "noun", + "word_frequency": 31318 + }, + { + "word": "dominatrix", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a woman who takes a dominant role in sadomasochistic sexual activity", + "example_sentence_english": "The film explored the complex character of a dominatrix.", + "pos": "noun", + "word_frequency": 31319 + }, + { + "word": "doze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleep lightly", + "example_sentence_english": "He began to doze off during the long lecture.", + "pos": "verb", + "word_frequency": 31322 + }, + { + "word": "elongation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of lengthening", + "example_sentence_english": "The elongation of the metal rod was measured under stress.", + "pos": "noun", + "word_frequency": 31329 + }, + { + "word": "enthuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "express great enthusiasm", + "example_sentence_english": "She didn't enthuse about the idea, but she didn't reject it either.", + "pos": "verb", + "word_frequency": 31332 + }, + { + "word": "escapism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the tendency to seek distraction and relief from unpleasant realities", + "example_sentence_english": "Reading fantasy novels is a form of escapism for many people.", + "pos": "noun", + "word_frequency": 31333 + }, + { + "word": "exasperation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of intense irritation or annoyance", + "example_sentence_english": "He sighed in exasperation at the repeated delays.", + "pos": "noun", + "word_frequency": 31335 + }, + { + "word": "exoskeleton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rigid external covering for the body in some invertebrate animals", + "example_sentence_english": "Insects have a hard exoskeleton that protects their soft bodies.", + "pos": "noun", + "word_frequency": 31336 + }, + { + "word": "expropriation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the action by the state or an authority of taking property from its owner for public use or benefit", + "example_sentence_english": "The government announced the expropriation of land for the new highway.", + "pos": "noun", + "word_frequency": 31337 + }, + { + "word": "extrude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to force out (a material) through a die or nozzle", + "example_sentence_english": "Plastic is often extruded into various shapes.", + "pos": "verb", + "word_frequency": 31338 + }, + { + "word": "falafel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Middle Eastern dish of spiced mashed chickpeas or fava beans formed into balls or fritters and deep-fried", + "example_sentence_english": "I ordered a falafel wrap for lunch.", + "pos": "noun", + "word_frequency": 31339 + }, + { + "word": "fallacious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on a mistaken belief", + "example_sentence_english": "His argument was based on fallacious reasoning.", + "pos": "adjective", + "word_frequency": 31340 + }, + { + "word": "fastidious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very attentive to and concerned about accuracy and detail", + "example_sentence_english": "He was fastidious about his appearance.", + "pos": "adjective", + "word_frequency": 31342 + }, + { + "word": "fealty", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a feudal tenant's or vassal's fidelity to a lord", + "example_sentence_english": "The knights swore fealty to their king.", + "pos": "noun", + "word_frequency": 31343 + }, + { + "word": "fibroblast", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a cell in connective tissue that produces collagen and other fibers", + "example_sentence_english": "Fibroblasts play a crucial role in wound healing.", + "pos": "noun", + "word_frequency": 31344 + }, + { + "word": "filial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or due from a son or daughter", + "example_sentence_english": "She showed great filial devotion to her elderly parents.", + "pos": "adjective", + "word_frequency": 31346 + }, + { + "word": "flaccid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soft and hanging loosely or limply", + "example_sentence_english": "The plant leaves became flaccid from lack of water.", + "pos": "adjective", + "word_frequency": 31347 + }, + { + "word": "flagpole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pole on which a flag is flown", + "example_sentence_english": "The flag was raised to the top of the flagpole.", + "pos": "noun", + "word_frequency": 31348 + }, + { + "word": "flamethrower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a weapon that projects a stream of burning fuel", + "example_sentence_english": "The soldiers used a flamethrower to clear the dense undergrowth.", + "pos": "noun", + "word_frequency": 31349 + }, + { + "word": "gameday", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the day on which a sports game is played", + "example_sentence_english": "Fans gathered early for gameday festivities.", + "pos": "noun", + "word_frequency": 31355 + }, + { + "word": "gastronomy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the practice or art of choosing, cooking, and eating good food", + "example_sentence_english": "Paris is renowned for its exquisite gastronomy.", + "pos": "noun", + "word_frequency": 31356 + }, + { + "word": "genteel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polite, refined, or respectable, often in an affected or ostentatious way", + "example_sentence_english": "She came from a genteel family with old money.", + "pos": "adjective", + "word_frequency": 31358 + }, + { + "word": "geographer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert in the study of the physical features of the earth and its atmosphere, and of human activity as it affects and is affected by these", + "example_sentence_english": "A geographer studies maps and landforms.", + "pos": "noun", + "word_frequency": 31359 + }, + { + "word": "geotechnical", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to geology and engineering", + "example_sentence_english": "The company specializes in geotechnical engineering for large construction projects.", + "pos": "adjective", + "word_frequency": 31360 + }, + { + "word": "glib", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluent but insincere and shallow", + "example_sentence_english": "He gave a glib answer that didn't address the real issue.", + "pos": "adjective", + "word_frequency": 31363 + }, + { + "word": "glorification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of praising or honoring", + "example_sentence_english": "The movie was criticized for its glorification of violence.", + "pos": "noun", + "word_frequency": 31364 + }, + { + "word": "gratuity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tip given to a service worker", + "example_sentence_english": "It is customary to leave a gratuity for good service in restaurants.", + "pos": "noun", + "word_frequency": 31367 + }, + { + "word": "grayling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of freshwater fish or butterfly", + "example_sentence_english": "The angler hoped to catch a grayling in the clear mountain stream.", + "pos": "noun", + "word_frequency": 31368 + }, + { + "word": "gumball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small ball of chewing gum", + "example_sentence_english": "He put a quarter into the machine and got a red gumball.", + "pos": "noun", + "word_frequency": 31371 + }, + { + "word": "hairdressing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the business or skill of cutting and styling hair", + "example_sentence_english": "She decided to pursue a career in hairdressing.", + "pos": "noun", + "word_frequency": 31372 + }, + { + "word": "heartbreaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who causes emotional pain, or a disappointing event", + "example_sentence_english": "Losing the game in the last minute was a real heartbreaker.", + "pos": "noun", + "word_frequency": 31378 + }, + { + "word": "hemorrhoid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a swollen vein or mass of dilated veins in the region of the anus", + "example_sentence_english": "The doctor prescribed cream to relieve the discomfort from the hemorrhoid.", + "pos": "noun", + "word_frequency": 31379 + }, + { + "word": "hiphop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of popular music of US black and Hispanic origin, featuring rap and electronic backing", + "example_sentence_english": "She enjoys listening to classic hiphop from the 90s.", + "pos": "noun", + "word_frequency": 31383 + }, + { + "word": "histamine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound released in allergic reactions, causing dilation of capillaries and contraction of smooth muscle", + "example_sentence_english": "Antihistamines block the effects of histamine, reducing allergy symptoms.", + "pos": "noun", + "word_frequency": 31384 + }, + { + "word": "hitchhike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to travel by getting free rides from passing vehicles", + "example_sentence_english": "They decided to hitchhike across the country during their gap year.", + "pos": "verb", + "word_frequency": 31385 + }, + { + "word": "hobbyist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who pursues a hobby", + "example_sentence_english": "He started as a casual hobbyist but now builds complex model airplanes.", + "pos": "noun", + "word_frequency": 31386 + }, + { + "word": "holocene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the current geological epoch, which began approximately 11,700 years ago", + "example_sentence_english": "Human civilization developed during the Holocene epoch.", + "pos": "noun", + "word_frequency": 31387 + }, + { + "word": "hyphen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short dash used to join words or parts of words", + "example_sentence_english": "Remember to use a hyphen when writing \"well-known.\"", + "pos": "noun", + "word_frequency": 31394 + }, + { + "word": "igloo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a dome-shaped Eskimo house, typically built from blocks of solid snow", + "example_sentence_english": "The children built a small igloo in the backyard after the heavy snowfall.", + "pos": "noun", + "word_frequency": 31395 + }, + { + "word": "impregnable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be captured or broken into", + "example_sentence_english": "The fortress was considered impregnable due to its thick walls and strategic location.", + "pos": "adjective", + "word_frequency": 31397 + }, + { + "word": "impressionism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of art or music that seeks to capture a fleeting impression of a subject", + "example_sentence_english": "Monet is one of the most famous painters of Impressionism.", + "pos": "noun", + "word_frequency": 31398 + }, + { + "word": "indecency", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behavior or language that is considered morally offensive", + "example_sentence_english": "The broadcast was fined for indecency by the regulatory body.", + "pos": "noun", + "word_frequency": 31399 + }, + { + "word": "indentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the space left at the beginning of a line of text", + "example_sentence_english": "Please ensure consistent indentation throughout your code.", + "pos": "noun", + "word_frequency": 31400 + }, + { + "word": "inebriated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drunk; intoxicated", + "example_sentence_english": "He was clearly inebriated after several drinks.", + "pos": "adjective", + "word_frequency": 31401 + }, + { + "word": "inexorable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to stop or prevent", + "example_sentence_english": "The inexorable march of time affects us all.", + "pos": "adverb", + "word_frequency": 31402 + }, + { + "word": "insipid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking flavor or interest", + "example_sentence_english": "The soup was insipid and bland.", + "pos": "adjective", + "word_frequency": 31403 + }, + { + "word": "intercollegiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing or conducted between colleges", + "example_sentence_english": "The university hosts many intercollegiate sports events.", + "pos": "adjective", + "word_frequency": 31404 + }, + { + "word": "interdependent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependent on each other", + "example_sentence_english": "All parts of the ecosystem are interdependent.", + "pos": "adjective", + "word_frequency": 31405 + }, + { + "word": "jiffy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a very short time", + "example_sentence_english": "I'll be with you in a jiffy.", + "pos": "noun", + "word_frequency": 31407 + }, + { + "word": "knacker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exhaust or wear out; to kill (an old or injured animal)", + "example_sentence_english": "The long hike really knackered me out.", + "pos": "verb", + "word_frequency": 31421 + }, + { + "word": "komodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large monitor lizard native to Indonesia", + "example_sentence_english": "The Komodo dragon is the largest living species of lizard.", + "pos": "noun", + "word_frequency": 31422 + }, + { + "word": "lossless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of data compression) without any loss of information", + "example_sentence_english": "FLAC is a lossless audio format.", + "pos": "adjective", + "word_frequency": 31436 + }, + { + "word": "lyceum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a literary or scientific institution; a public hall for lectures or concerts", + "example_sentence_english": "The old building was once a grand lyceum.", + "pos": "noun", + "word_frequency": 31438 + }, + { + "word": "mamba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a venomous African snake", + "example_sentence_english": "The black mamba is one of the most feared snakes in Africa.", + "pos": "noun", + "word_frequency": 31442 + }, + { + "word": "mammography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "X-ray examination of the breasts", + "example_sentence_english": "Regular mammography screenings are crucial for early detection of breast cancer.", + "pos": "noun", + "word_frequency": 31443 + }, + { + "word": "maneuverability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to be maneuvered", + "example_sentence_english": "The small car's excellent maneuverability made it easy to park in tight spaces.", + "pos": "noun", + "word_frequency": 31445 + }, + { + "word": "mesmerise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hypnotize or enthrall", + "example_sentence_english": "The magician's performance seemed to mesmerise the entire audience.", + "pos": "verb", + "word_frequency": 31450 + }, + { + "word": "mistrial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a trial rendered invalid through an error in the proceedings", + "example_sentence_english": "The judge declared a mistrial due to a hung jury.", + "pos": "noun", + "word_frequency": 31453 + }, + { + "word": "mossy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered with moss", + "example_sentence_english": "The old stone wall was covered in a thick, mossy growth.", + "pos": "adjective", + "word_frequency": 31459 + }, + { + "word": "muslin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lightweight cotton fabric", + "example_sentence_english": "She used a piece of muslin to strain the homemade cheese.", + "pos": "noun", + "word_frequency": 31461 + }, + { + "word": "myopic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "short-sighted; lacking foresight", + "example_sentence_english": "His myopic view of the economy prevented him from seeing the long-term consequences.", + "pos": "adjective", + "word_frequency": 31462 + }, + { + "word": "nape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the back of the neck", + "example_sentence_english": "She tied her hair up, revealing the nape of her neck.", + "pos": "noun", + "word_frequency": 31466 + }, + { + "word": "nematode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a roundworm", + "example_sentence_english": "Some nematodes are parasitic and can cause diseases in plants and animals.", + "pos": "noun", + "word_frequency": 31470 + }, + { + "word": "noncommercial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not involving or intended for commerce", + "example_sentence_english": "The station broadcasts noncommercial educational programming.", + "pos": "adjective", + "word_frequency": 31474 + }, + { + "word": "nondescript", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking distinctive or interesting features", + "example_sentence_english": "He lived in a nondescript house on a quiet street.", + "pos": "adjective", + "word_frequency": 31475 + }, + { + "word": "objectification", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the action of degrading someone to the status of a mere object", + "example_sentence_english": "The essay discussed the objectification of women in media.", + "pos": "noun", + "word_frequency": 31477 + }, + { + "word": "optimise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make the best or most effective use of a situation, resource, or opportunity", + "example_sentence_english": "We need to optimise our workflow to increase efficiency.", + "pos": "verb", + "word_frequency": 31479 + }, + { + "word": "outbid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bid higher than", + "example_sentence_english": "They managed to outbid all other competitors for the antique.", + "pos": "verb", + "word_frequency": 31483 + }, + { + "word": "outgrowth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "natural development or consequence", + "example_sentence_english": "The new policy was an outgrowth of the recent economic changes.", + "pos": "noun", + "word_frequency": 31484 + }, + { + "word": "outhouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outdoor toilet", + "example_sentence_english": "In the countryside, some old farms still have an outhouse.", + "pos": "noun", + "word_frequency": 31485 + }, + { + "word": "overreach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extend beyond limits", + "example_sentence_english": "The government was accused of overreaching its authority.", + "pos": "verb", + "word_frequency": 31486 + }, + { + "word": "pacifier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baby's dummy", + "example_sentence_english": "The baby stopped crying when given a pacifier.", + "pos": "noun", + "word_frequency": 31488 + }, + { + "word": "patrician", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aristocrat", + "example_sentence_english": "He came from a patrician family with a long history.", + "pos": "noun", + "word_frequency": 31489 + }, + { + "word": "phenol", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "carbolic acid", + "example_sentence_english": "Phenol is used in the production of plastics and disinfectants.", + "pos": "noun", + "word_frequency": 31492 + }, + { + "word": "phytoplankton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microscopic marine algae", + "example_sentence_english": "Phytoplankton form the base of the marine food web.", + "pos": "noun", + "word_frequency": 31493 + }, + { + "word": "plantar", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the sole of the foot", + "example_sentence_english": "He suffered from plantar fasciitis, an inflammation of the foot.", + "pos": "adjective", + "word_frequency": 31495 + }, + { + "word": "pliable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "easily bent or influenced", + "example_sentence_english": "The artist used a pliable material that could be easily molded.", + "pos": "adjective", + "word_frequency": 31496 + }, + { + "word": "polemic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "strong verbal or written attack", + "example_sentence_english": "His essay was a fierce polemic against modern art.", + "pos": "noun", + "word_frequency": 31497 + }, + { + "word": "ponderosa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "type of pine tree", + "example_sentence_english": "The forest was filled with tall ponderosa pines.", + "pos": "noun", + "word_frequency": 31498 + }, + { + "word": "positron", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "antiparticle of the electron", + "example_sentence_english": "A positron has the same mass as an electron but a positive charge.", + "pos": "noun", + "word_frequency": 31500 + }, + { + "word": "prewar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing before a war", + "example_sentence_english": "The house retained many of its original prewar features.", + "pos": "adjective", + "word_frequency": 31502 + }, + { + "word": "prognostic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "an omen or sign", + "example_sentence_english": "The sudden drop in temperature was a prognostic of a harsh winter.", + "pos": "noun", + "word_frequency": 31503 + }, + { + "word": "proviso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "condition or stipulation", + "example_sentence_english": "The agreement was accepted with the proviso that certain terms could be renegotiated.", + "pos": "noun", + "word_frequency": 31504 + }, + { + "word": "puffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that puffs up", + "example_sentence_english": "She wore a warm puffer jacket in the cold weather.", + "pos": "noun", + "word_frequency": 31506 + }, + { + "word": "quint", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a group of five", + "example_sentence_english": "The quint of musicians performed a classical piece.", + "pos": "noun", + "word_frequency": 31508 + }, + { + "word": "radicalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "process of becoming radical", + "example_sentence_english": "The government is concerned about the radicalization of young people.", + "pos": "noun", + "word_frequency": 31509 + }, + { + "word": "radiologist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctor specializing in medical imaging", + "example_sentence_english": "The radiologist examined the X-ray to check for fractures.", + "pos": "noun", + "word_frequency": 31510 + }, + { + "word": "raspy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harsh and grating", + "example_sentence_english": "After shouting all night, his voice was raspy.", + "pos": "adjective", + "word_frequency": 31513 + }, + { + "word": "recuperation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recovery from illness or exertion", + "example_sentence_english": "She needed a long period of recuperation after the surgery.", + "pos": "noun", + "word_frequency": 31514 + }, + { + "word": "redshirt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "athlete delaying participation", + "example_sentence_english": "The coach decided to redshirt the promising freshman for a year.", + "pos": "noun", + "word_frequency": 31515 + }, + { + "word": "referential", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to reference", + "example_sentence_english": "The artist's work is highly referential, drawing on many historical styles.", + "pos": "adjective", + "word_frequency": 31516 + }, + { + "word": "regrowth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new growth", + "example_sentence_english": "After the fire, there was significant regrowth of vegetation.", + "pos": "noun", + "word_frequency": 31517 + }, + { + "word": "reimagine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imagine again or anew", + "example_sentence_english": "The director decided to reimagine the classic play for a modern audience.", + "pos": "verb", + "word_frequency": 31518 + }, + { + "word": "reinvention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "act of reinventing", + "example_sentence_english": "Her career has been marked by constant reinvention and adaptation.", + "pos": "noun", + "word_frequency": 31519 + }, + { + "word": "reit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "real estate investment trust", + "example_sentence_english": "Investing in a REIT can provide exposure to the real estate market without direct property ownership.", + "pos": "noun", + "word_frequency": 31520 + }, + { + "word": "renunciation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the formal rejection of something", + "example_sentence_english": "His renunciation of the throne surprised everyone.", + "pos": "noun", + "word_frequency": 31521 + }, + { + "word": "repute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be generally considered or believed to be", + "example_sentence_english": "He is reputed to be the best doctor in the city.", + "pos": "verb", + "word_frequency": 31522 + }, + { + "word": "retardant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that slows down a chemical reaction or process", + "example_sentence_english": "The curtains were treated with a fire retardant.", + "pos": "noun", + "word_frequency": 31523 + }, + { + "word": "romaine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a type of lettuce", + "example_sentence_english": "I prefer romaine lettuce in my Caesar salad.", + "pos": "noun", + "word_frequency": 31527 + }, + { + "word": "rounder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes rounds; a type of punch", + "example_sentence_english": "The boxer delivered a powerful rounder to his opponent.", + "pos": "noun", + "word_frequency": 31529 + }, + { + "word": "rucksack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of backpack", + "example_sentence_english": "He packed his rucksack for the hiking trip.", + "pos": "noun", + "word_frequency": 31530 + }, + { + "word": "sacrilege", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "violation or misuse of what is regarded as sacred", + "example_sentence_english": "Desecrating the ancient temple was considered an act of sacrilege.", + "pos": "noun", + "word_frequency": 31533 + }, + { + "word": "safekeeping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being protected and cared for", + "example_sentence_english": "He left his valuables with the bank for safekeeping.", + "pos": "noun", + "word_frequency": 31535 + }, + { + "word": "schoolyard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an outdoor area next to a school", + "example_sentence_english": "The children played soccer in the schoolyard.", + "pos": "noun", + "word_frequency": 31539 + }, + { + "word": "scruple", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of doubt or hesitation with regard to the morality or propriety of a course of action", + "example_sentence_english": "He had no scruples about cheating on the test.", + "pos": "noun", + "word_frequency": 31540 + }, + { + "word": "seafront", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of a town or resort that faces the sea", + "example_sentence_english": "We enjoyed a walk along the seafront.", + "pos": "noun", + "word_frequency": 31541 + }, + { + "word": "serif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small line or stroke regularly attached to the end of a larger stroke in a letter or symbol", + "example_sentence_english": "Times New Roman is a font with serifs.", + "pos": "noun", + "word_frequency": 31543 + }, + { + "word": "serine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an amino acid", + "example_sentence_english": "Serine is one of the non-essential amino acids.", + "pos": "noun", + "word_frequency": 31544 + }, + { + "word": "sexualize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make something sexual in nature or character", + "example_sentence_english": "The media often tends to sexualize female athletes.", + "pos": "verb", + "word_frequency": 31545 + }, + { + "word": "showrunner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the person responsible for the day-to-day operation of a television series", + "example_sentence_english": "The showrunner announced the renewal of the series for another season.", + "pos": "noun", + "word_frequency": 31548 + }, + { + "word": "snazzy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stylish and attractive", + "example_sentence_english": "She bought a snazzy new car.", + "pos": "adjective", + "word_frequency": 31551 + }, + { + "word": "sorbet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a frozen dessert made from sweetened water flavored with fruit or other ingredients", + "example_sentence_english": "For dessert, we had a refreshing lemon sorbet.", + "pos": "noun", + "word_frequency": 31553 + }, + { + "word": "spiny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "covered with or having spines or thorns", + "example_sentence_english": "Be careful, that plant has spiny leaves.", + "pos": "adjective", + "word_frequency": 31555 + }, + { + "word": "spreader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool or device for spreading something", + "example_sentence_english": "He used a butter spreader for his toast.", + "pos": "noun", + "word_frequency": 31557 + }, + { + "word": "straightaway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediately", + "example_sentence_english": "Please come straightaway.", + "pos": "adverb", + "word_frequency": 31560 + }, + { + "word": "strainer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device used for separating liquid from solid", + "example_sentence_english": "She used a strainer to drain the pasta.", + "pos": "noun", + "word_frequency": 31561 + }, + { + "word": "surefire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certain to succeed", + "example_sentence_english": "His plan was a surefire way to win the competition.", + "pos": "adjective", + "word_frequency": 31565 + }, + { + "word": "sweetwater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fresh water, not salty", + "example_sentence_english": "The explorers were searching for a source of sweetwater.", + "pos": "noun", + "word_frequency": 31566 + }, + { + "word": "tambourine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a musical instrument", + "example_sentence_english": "The child shook the tambourine to the rhythm of the music.", + "pos": "noun", + "word_frequency": 31569 + }, + { + "word": "tangy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having a strong, sharp taste or smell", + "example_sentence_english": "The lemon pie had a delicious tangy flavor.", + "pos": "adjective", + "word_frequency": 31570 + }, + { + "word": "tilapia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of freshwater fish", + "example_sentence_english": "We had grilled tilapia for dinner last night.", + "pos": "noun", + "word_frequency": 31574 + }, + { + "word": "timbre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the characteristic quality of a sound", + "example_sentence_english": "The unique timbre of her voice made her stand out.", + "pos": "noun", + "word_frequency": 31575 + }, + { + "word": "tiptoe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to walk quietly on the balls of one's feet", + "example_sentence_english": "He had to tiptoe past the sleeping baby.", + "pos": "verb", + "word_frequency": 31576 + }, + { + "word": "torrid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very hot and dry; full of intense emotion", + "example_sentence_english": "They endured the torrid heat of the desert.", + "pos": "adjective", + "word_frequency": 31578 + }, + { + "word": "traumatise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause severe emotional shock and pain", + "example_sentence_english": "The accident could traumatise him for years.", + "pos": "verb", + "word_frequency": 31579 + }, + { + "word": "trestle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a framework consisting of a horizontal bar supported by two pairs of sloping legs", + "example_sentence_english": "They set up a temporary table using a wooden trestle.", + "pos": "noun", + "word_frequency": 31580 + }, + { + "word": "ulcerative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by or causing ulcers", + "example_sentence_english": "Ulcerative colitis is a chronic inflammatory bowel disease.", + "pos": "adjective", + "word_frequency": 31581 + }, + { + "word": "unabridged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(of a text) not cut or shortened; complete", + "example_sentence_english": "She bought the unabridged version of the classic novel.", + "pos": "adjective", + "word_frequency": 31582 + }, + { + "word": "unbearably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to an intolerable degree", + "example_sentence_english": "The heat was unbearably hot today.", + "pos": "adverb", + "word_frequency": 31583 + }, + { + "word": "undeserving", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not meriting reward or special treatment", + "example_sentence_english": "He felt undeserving of all the praise he received.", + "pos": "adjective", + "word_frequency": 31584 + }, + { + "word": "unfunny", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not amusing; dull", + "example_sentence_english": "His jokes were completely unfunny.", + "pos": "adjective", + "word_frequency": 31585 + }, + { + "word": "unkempt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(especially of a person) untidy or dishevelled", + "example_sentence_english": "His unkempt hair suggested he had just woken up.", + "pos": "adjective", + "word_frequency": 31586 + }, + { + "word": "unmitigated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absolute; unqualified", + "example_sentence_english": "The project was an unmitigated disaster.", + "pos": "adjective", + "word_frequency": 31587 + }, + { + "word": "unneeded", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not required or necessary", + "example_sentence_english": "All the extra paperwork was unneeded.", + "pos": "adjective", + "word_frequency": 31588 + }, + { + "word": "upmarket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relatively expensive and of high quality", + "example_sentence_english": "They decided to open an upmarket restaurant in the city center.", + "pos": "adjective", + "word_frequency": 31590 + }, + { + "word": "upriver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "further upstream", + "example_sentence_english": "The salmon swim upriver to spawn.", + "pos": "adverb", + "word_frequency": 31591 + }, + { + "word": "uric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or derived from urine", + "example_sentence_english": "High levels of uric acid can lead to gout.", + "pos": "adjective", + "word_frequency": 31592 + }, + { + "word": "vole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small, mouse-like rodent", + "example_sentence_english": "A tiny vole scurried across the garden path.", + "pos": "noun", + "word_frequency": 31597 + }, + { + "word": "warplane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Military aircraft", + "example_sentence_english": "The warplane flew low over the enemy territory.", + "pos": "noun", + "word_frequency": 31601 + }, + { + "word": "warzone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Area of conflict", + "example_sentence_english": "Journalists often risk their lives reporting from a warzone.", + "pos": "noun", + "word_frequency": 31602 + }, + { + "word": "whorl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A circular pattern", + "example_sentence_english": "She noticed the distinct whorl of his fingerprint.", + "pos": "noun", + "word_frequency": 31604 + }, + { + "word": "wildwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Untamed forest", + "example_sentence_english": "They ventured deep into the wildwood, far from any path.", + "pos": "noun", + "word_frequency": 31605 + }, + { + "word": "winder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A device or person that winds", + "example_sentence_english": "The clock winder needed to be replaced.", + "pos": "noun", + "word_frequency": 31607 + }, + { + "word": "workaholic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Person addicted to work", + "example_sentence_english": "My boss is a workaholic; he never takes a day off.", + "pos": "noun", + "word_frequency": 31608 + }, + { + "word": "worthiness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Quality of deserving", + "example_sentence_english": "He questioned his own worthiness to receive such an honor.", + "pos": "noun", + "word_frequency": 31609 + }, + { + "word": "yore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Long ago", + "example_sentence_english": "In days of yore, knights roamed the land.", + "pos": "noun", + "word_frequency": 31612 + }, + { + "word": "addon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An additional feature or component", + "example_sentence_english": "I installed a new addon for my web browser.", + "pos": "noun", + "word_frequency": 31620 + }, + { + "word": "afoul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "In conflict or difficulty with", + "example_sentence_english": "He ran afoul of the law.", + "pos": "adverb", + "word_frequency": 31622 + }, + { + "word": "airlock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A chamber for passing between areas of different pressure", + "example_sentence_english": "Astronauts enter and exit the spacecraft through an airlock.", + "pos": "noun", + "word_frequency": 31624 + }, + { + "word": "allergen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Substance causing an allergic reaction", + "example_sentence_english": "Pollen is a common allergen for many people.", + "pos": "noun", + "word_frequency": 31627 + }, + { + "word": "alleviation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The act of making suffering less severe", + "example_sentence_english": "The medicine provided some alleviation of her pain.", + "pos": "noun", + "word_frequency": 31628 + }, + { + "word": "anchorman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A male news presenter", + "example_sentence_english": "The anchorman delivered the evening news with a serious tone.", + "pos": "noun", + "word_frequency": 31631 + }, + { + "word": "angolan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person from Angola", + "example_sentence_english": "The Angolan community celebrated their national holiday.", + "pos": "noun", + "word_frequency": 31632 + }, + { + "word": "aphid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A small insect that feeds on plants", + "example_sentence_english": "Aphids can cause significant damage to garden plants.", + "pos": "noun", + "word_frequency": 31633 + }, + { + "word": "applesauce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A sauce made from cooked apples", + "example_sentence_english": "She served pork chops with a side of applesauce.", + "pos": "noun", + "word_frequency": 31634 + }, + { + "word": "assuage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make less severe", + "example_sentence_english": "He tried to assuage her fears about the upcoming exam.", + "pos": "verb", + "word_frequency": 31636 + }, + { + "word": "asthmatic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to asthma", + "example_sentence_english": "The asthmatic patient used an inhaler to help with breathing.", + "pos": "adjective", + "word_frequency": 31637 + }, + { + "word": "bazooka", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a portable rocket launcher", + "example_sentence_english": "The soldier fired the bazooka at the tank.", + "pos": "noun", + "word_frequency": 31641 + }, + { + "word": "bewilderment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of being perplexed and confused", + "example_sentence_english": "She stared at the complex instructions in utter bewilderment.", + "pos": "noun", + "word_frequency": 31645 + }, + { + "word": "bighorn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of wild sheep with large, curved horns", + "example_sentence_english": "We saw a bighorn sheep climbing the rocky mountain.", + "pos": "noun", + "word_frequency": 31647 + }, + { + "word": "bitrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the number of bits per second that can be transmitted along a digital network", + "example_sentence_english": "A higher bitrate usually means better audio quality.", + "pos": "noun", + "word_frequency": 31650 + }, + { + "word": "boho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of dress or decor inspired by bohemian culture", + "example_sentence_english": "She loves to decorate her apartment in a boho style.", + "pos": "noun", + "word_frequency": 31655 + }, + { + "word": "bombastic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high-sounding but with little meaning; pompous", + "example_sentence_english": "His bombastic speech failed to impress the audience.", + "pos": "adjective", + "word_frequency": 31656 + }, + { + "word": "brocade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rich fabric, typically silk, woven with a raised pattern", + "example_sentence_english": "The queen wore a gown made of exquisite gold brocade.", + "pos": "noun", + "word_frequency": 31658 + }, + { + "word": "cameroonian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of Cameroon", + "example_sentence_english": "The Cameroonian ambassador addressed the assembly.", + "pos": "noun", + "word_frequency": 31661 + }, + { + "word": "capacitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or having the property of capacitance", + "example_sentence_english": "Modern smartphones use capacitive touchscreens.", + "pos": "adjective", + "word_frequency": 31662 + }, + { + "word": "carapace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the hard upper shell of a turtle, crustacean, or arachnid", + "example_sentence_english": "The turtle retracted its head into its sturdy carapace.", + "pos": "noun", + "word_frequency": 31664 + }, + { + "word": "charlatan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person falsely claiming to have a special knowledge or skill; a fraud", + "example_sentence_english": "The self-proclaimed doctor was exposed as a charlatan.", + "pos": "noun", + "word_frequency": 31670 + }, + { + "word": "checkbook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a book of blank checks", + "example_sentence_english": "She wrote a check from her checkbook to pay the bill.", + "pos": "noun", + "word_frequency": 31672 + }, + { + "word": "chomp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bite or chew noisily", + "example_sentence_english": "The horse began to chomp on the fresh hay.", + "pos": "verb", + "word_frequency": 31675 + }, + { + "word": "cityscape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a view of a city", + "example_sentence_english": "From the rooftop, we admired the stunning cityscape.", + "pos": "noun", + "word_frequency": 31677 + }, + { + "word": "clang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a loud, resonant metallic sound", + "example_sentence_english": "We heard the clang of the bell from the distant tower.", + "pos": "noun", + "word_frequency": 31678 + }, + { + "word": "closeup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a photograph or film shot taken at close range", + "example_sentence_english": "The photographer took a closeup of the flower's petals.", + "pos": "noun", + "word_frequency": 31679 + }, + { + "word": "coalesce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to come together to form one mass or whole", + "example_sentence_english": "The small groups will coalesce into one large organization.", + "pos": "verb", + "word_frequency": 31681 + }, + { + "word": "conman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who cheats or tricks someone by means of a confidence trick", + "example_sentence_english": "The conman tricked many people out of their savings.", + "pos": "noun", + "word_frequency": 31684 + }, + { + "word": "constrict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make narrower, especially by encircling pressure", + "example_sentence_english": "The snake began to constrict its prey.", + "pos": "verb", + "word_frequency": 31685 + }, + { + "word": "contrarian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who takes an opposing view, especially one who rejects the majority opinion", + "example_sentence_english": "He's a contrarian by nature, always questioning popular beliefs.", + "pos": "noun", + "word_frequency": 31686 + }, + { + "word": "cornice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ornamental molding around the wall of a room just below the ceiling", + "example_sentence_english": "The old building had an elaborate stone cornice.", + "pos": "noun", + "word_frequency": 31688 + }, + { + "word": "corporeal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a person's body, especially as opposed to their spirit", + "example_sentence_english": "He believed in a spiritual existence beyond the corporeal world.", + "pos": "adjective", + "word_frequency": 31690 + }, + { + "word": "cower", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crouch down in fear", + "example_sentence_english": "The dog would cower under the table during thunderstorms.", + "pos": "verb", + "word_frequency": 31691 + }, + { + "word": "croat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a native or inhabitant of Croatia, or a person of Croatian descent", + "example_sentence_english": "Many Croats live in other European countries.", + "pos": "noun", + "word_frequency": 31693 + }, + { + "word": "crosswalk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a pedestrian crossing", + "example_sentence_english": "Always look both ways before stepping into the crosswalk.", + "pos": "noun", + "word_frequency": 31694 + }, + { + "word": "crud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance that is considered unpleasant or worthless", + "example_sentence_english": "There was some sticky crud on the bottom of the shoe.", + "pos": "noun", + "word_frequency": 31695 + }, + { + "word": "curation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or process of selecting, organizing, and looking after the items in a collection or exhibition", + "example_sentence_english": "The museum is known for its excellent art curation.", + "pos": "noun", + "word_frequency": 31696 + }, + { + "word": "cybernetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting the science of communications and automatic control systems in both machines and living things", + "example_sentence_english": "The robot was designed with advanced cybernetic systems.", + "pos": "adjective", + "word_frequency": 31699 + }, + { + "word": "cyrillic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denoting the alphabet used for writing Russian and other Slavic languages", + "example_sentence_english": "Many Eastern European languages use the Cyrillic alphabet.", + "pos": "adjective", + "word_frequency": 31702 + }, + { + "word": "decaf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decaffeinated coffee", + "example_sentence_english": "I'll have a decaf latte, please.", + "pos": "noun", + "word_frequency": 31704 + }, + { + "word": "decapitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of cutting off the head of a person or animal", + "example_sentence_english": "The story described the brutal decapitation of the statue.", + "pos": "noun", + "word_frequency": 31705 + }, + { + "word": "declarative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "making a statement or declaration", + "example_sentence_english": "A declarative sentence states a fact or opinion.", + "pos": "adjective", + "word_frequency": 31706 + }, + { + "word": "demonstrable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clearly apparent or capable of being logically proved", + "example_sentence_english": "His talent was clearly demonstrable from a young age.", + "pos": "adjective", + "word_frequency": 31708 + }, + { + "word": "demonstrative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending to show feelings, especially openly", + "example_sentence_english": "She was very demonstrative with her affection.", + "pos": "adjective", + "word_frequency": 31709 + }, + { + "word": "dinky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small and insignificant", + "example_sentence_english": "They lived in a dinky little apartment.", + "pos": "adjective", + "word_frequency": 31712 + }, + { + "word": "discontinuation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of stopping something", + "example_sentence_english": "The company announced the discontinuation of the product line.", + "pos": "noun", + "word_frequency": 31713 + }, + { + "word": "dismemberment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of cutting off the limbs of a person or animal", + "example_sentence_english": "The old empire faced dismemberment after the war.", + "pos": "noun", + "word_frequency": 31714 + }, + { + "word": "drawstring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A string used to pull and tighten fabric.", + "example_sentence_english": "The hood of the jacket had a drawstring.", + "pos": "noun", + "word_frequency": 31720 + }, + { + "word": "dumbbell", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A short bar with weights at each end, used for exercise.", + "example_sentence_english": "He lifted the dumbbell to strengthen his arms.", + "pos": "noun", + "word_frequency": 31721 + }, + { + "word": "earplug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small piece of material inserted into the ear to keep out noise or water.", + "example_sentence_english": "She wore earplugs to block out the noise from the construction.", + "pos": "noun", + "word_frequency": 31723 + }, + { + "word": "earshot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The range within which a voice can be heard.", + "example_sentence_english": "Make sure you're within earshot if I call your name.", + "pos": "noun", + "word_frequency": 31724 + }, + { + "word": "eke", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make a living with difficulty; to obtain or extract with great effort.", + "example_sentence_english": "They had to eke out a living from their small farm.", + "pos": "verb", + "word_frequency": 31728 + }, + { + "word": "elitism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The belief that a system or society should be led by an elite.", + "example_sentence_english": "The university was criticized for its perceived elitism.", + "pos": "noun", + "word_frequency": 31729 + }, + { + "word": "elven", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or characteristic of elves.", + "example_sentence_english": "She had an ethereal, almost elven beauty.", + "pos": "adjective", + "word_frequency": 31730 + }, + { + "word": "engender", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To cause or give rise to (a feeling, situation, or condition).", + "example_sentence_english": "The new policy is likely to engender controversy.", + "pos": "verb", + "word_frequency": 31731 + }, + { + "word": "entente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A friendly understanding or informal alliance between states or factions.", + "example_sentence_english": "The two nations formed a diplomatic entente.", + "pos": "noun", + "word_frequency": 31732 + }, + { + "word": "etude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A short musical composition, typically for one instrument, designed as an exercise to improve technique.", + "example_sentence_english": "She practiced the difficult piano etude for hours.", + "pos": "noun", + "word_frequency": 31734 + }, + { + "word": "factional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or characterized by conflict within an organization or group.", + "example_sentence_english": "The party was plagued by factional disputes.", + "pos": "adjective", + "word_frequency": 31736 + }, + { + "word": "fibromyalgia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A chronic disorder characterized by widespread musculoskeletal pain, fatigue, and tenderness in localized areas.", + "example_sentence_english": "She was diagnosed with fibromyalgia after years of unexplained pain.", + "pos": "noun", + "word_frequency": 31739 + }, + { + "word": "fiftieth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "The ordinal number corresponding to fifty.", + "example_sentence_english": "Today is my fiftieth birthday.", + "pos": "numeral", + "word_frequency": 31740 + }, + { + "word": "flatbed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A truck or trailer with a flat, open body.", + "example_sentence_english": "The construction materials were delivered on a flatbed truck.", + "pos": "noun", + "word_frequency": 31742 + }, + { + "word": "footbridge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A bridge designed for pedestrians.", + "example_sentence_english": "We crossed the river on a narrow footbridge.", + "pos": "noun", + "word_frequency": 31744 + }, + { + "word": "forceps", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A pincer-like instrument used in surgery or in the laboratory for grasping and holding.", + "example_sentence_english": "The surgeon used forceps to remove the small object.", + "pos": "noun", + "word_frequency": 31745 + }, + { + "word": "forecaster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who predicts future events or trends, especially weather.", + "example_sentence_english": "The weather forecaster predicted heavy rain for tomorrow.", + "pos": "noun", + "word_frequency": 31746 + }, + { + "word": "frothy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Full of or covered with a mass of small bubbles.", + "example_sentence_english": "She poured the frothy milk into her coffee.", + "pos": "adjective", + "word_frequency": 31748 + }, + { + "word": "gallium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A soft, silvery-white metallic element.", + "example_sentence_english": "Gallium is used in semiconductors.", + "pos": "noun", + "word_frequency": 31751 + }, + { + "word": "gantry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A bridgelike framework, supported on side supports or legs, from which a crane or other equipment is suspended.", + "example_sentence_english": "The gantry crane lifted the heavy container.", + "pos": "noun", + "word_frequency": 31752 + }, + { + "word": "gargoyle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A grotesque carved human or animal face or figure projecting from the gutter of a building, typically acting as a spout to drain water.", + "example_sentence_english": "The ancient cathedral was adorned with many stone gargoyles.", + "pos": "noun", + "word_frequency": 31753 + }, + { + "word": "gaslight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A lamp that burns gas for illumination.", + "example_sentence_english": "The old house still had original gaslight fixtures.", + "pos": "noun", + "word_frequency": 31754 + }, + { + "word": "gastroenterology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The branch of medicine concerned with the structure, functions, and diseases of the digestive system.", + "example_sentence_english": "She decided to specialize in gastroenterology.", + "pos": "noun", + "word_frequency": 31756 + }, + { + "word": "generalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person whose knowledge, aptitudes, or skills are applied to a number of different fields.", + "example_sentence_english": "She's a generalist, able to work on many different types of projects.", + "pos": "noun", + "word_frequency": 31758 + }, + { + "word": "germinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to begin to grow; sprout", + "example_sentence_english": "The seeds will germinate in a few days if kept warm and moist.", + "pos": "verb", + "word_frequency": 31760 + }, + { + "word": "gramp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grandfather (informal)", + "example_sentence_english": "My gramp always tells the best stories.", + "pos": "noun", + "word_frequency": 31768 + }, + { + "word": "gremlin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mischievous invisible being, blamed for malfunctions", + "example_sentence_english": "There must be a gremlin in the machine; it keeps breaking down.", + "pos": "noun", + "word_frequency": 31769 + }, + { + "word": "grudging", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "given or done unwillingly (adjective)", + "example_sentence_english": "He gave a grudging apology, clearly not meaning it.", + "pos": "adverb", + "word_frequency": 31771 + }, + { + "word": "headroom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "space above one's head; space for maneuver", + "example_sentence_english": "The car has plenty of headroom, even for tall passengers.", + "pos": "noun", + "word_frequency": 31778 + }, + { + "word": "homily", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a sermon or a tedious moralizing lecture", + "example_sentence_english": "The priest delivered a short homily on the importance of kindness.", + "pos": "noun", + "word_frequency": 31789 + }, + { + "word": "ideation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the formation of ideas or concepts", + "example_sentence_english": "The team engaged in a brainstorming session for new product ideation.", + "pos": "noun", + "word_frequency": 31797 + }, + { + "word": "inedible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not suitable for eating", + "example_sentence_english": "The berries were inedible, so we couldn't eat them.", + "pos": "adjective", + "word_frequency": 31800 + }, + { + "word": "inequity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unfairness or injustice", + "example_sentence_english": "The report highlighted the growing inequity in wealth distribution.", + "pos": "noun", + "word_frequency": 31801 + }, + { + "word": "infinitesimal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely small", + "example_sentence_english": "The chances of winning the lottery were infinitesimal.", + "pos": "adjective", + "word_frequency": 31802 + }, + { + "word": "isolationist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who advocates for a policy of remaining apart from the affairs or interests of other groups", + "example_sentence_english": "The country adopted an isolationist foreign policy.", + "pos": "noun", + "word_frequency": 31803 + }, + { + "word": "jailhouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a jail or prison", + "example_sentence_english": "He spent a night in the local jailhouse after the incident.", + "pos": "noun", + "word_frequency": 31806 + }, + { + "word": "jubilant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feeling or expressing great joy and triumph", + "example_sentence_english": "The team was jubilant after winning the championship.", + "pos": "adjective", + "word_frequency": 31810 + }, + { + "word": "karat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit of purity for gold alloys, or a unit of weight for gemstones", + "example_sentence_english": "Her engagement ring was made of 18-karat gold.", + "pos": "noun", + "word_frequency": 31813 + }, + { + "word": "karmic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to karma", + "example_sentence_english": "He believed his good fortune was a result of karmic balance.", + "pos": "adjective", + "word_frequency": 31814 + }, + { + "word": "keepsake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an item kept in memory of the person who gave it or originally owned it", + "example_sentence_english": "She kept the old locket as a keepsake from her grandmother.", + "pos": "noun", + "word_frequency": 31816 + }, + { + "word": "krill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small, shrimplike crustaceans that are a primary food source for whales", + "example_sentence_english": "Whales consume vast amounts of krill every day.", + "pos": "noun", + "word_frequency": 31821 + }, + { + "word": "liposuction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a cosmetic surgical procedure to remove fat", + "example_sentence_english": "She considered liposuction to remove stubborn fat deposits.", + "pos": "noun", + "word_frequency": 31827 + }, + { + "word": "liven", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become more lively or interesting", + "example_sentence_english": "The music helped to liven up the party.", + "pos": "verb", + "word_frequency": 31828 + }, + { + "word": "lowdown", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the essential facts or information about something", + "example_sentence_english": "Can you give me the lowdown on what happened at the meeting?", + "pos": "noun", + "word_frequency": 31832 + }, + { + "word": "lubricate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to apply a substance to minimize friction", + "example_sentence_english": "You need to lubricate the bicycle chain regularly.", + "pos": "verb", + "word_frequency": 31835 + }, + { + "word": "lyricism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being lyrical; an intense, expressive, and musical quality", + "example_sentence_english": "The poet's work was praised for its profound lyricism.", + "pos": "noun", + "word_frequency": 31839 + }, + { + "word": "mahjong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mahjong (a game)", + "example_sentence_english": "They spent the afternoon playing mahjong.", + "pos": "noun", + "word_frequency": 31842 + }, + { + "word": "mammary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the breasts or mammary glands", + "example_sentence_english": "The veterinarian examined the dog's mammary glands.", + "pos": "adjective", + "word_frequency": 31846 + }, + { + "word": "menopausal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or experiencing menopause", + "example_sentence_english": "Many women experience hot flashes during the menopausal transition.", + "pos": "adjective", + "word_frequency": 31849 + }, + { + "word": "midline", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an imaginary line dividing an object into two equal halves", + "example_sentence_english": "The surgeon made an incision along the patient's midline.", + "pos": "noun", + "word_frequency": 31853 + }, + { + "word": "millstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a heavy stone used for grinding grain; a heavy burden", + "example_sentence_english": "The old debt became a millstone around his neck.", + "pos": "noun", + "word_frequency": 31854 + }, + { + "word": "mimicry", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action or art of imitating someone or something", + "example_sentence_english": "The chameleon's mimicry allows it to blend perfectly with its surroundings.", + "pos": "noun", + "word_frequency": 31855 + }, + { + "word": "mitre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bishop's hat; a type of joint in carpentry", + "example_sentence_english": "The carpenter cut the wood at a perfect mitre angle.", + "pos": "noun", + "word_frequency": 31856 + }, + { + "word": "moonlit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lit by the moon", + "example_sentence_english": "They walked along the moonlit path.", + "pos": "adjective", + "word_frequency": 31857 + }, + { + "word": "mote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a tiny piece of a substance", + "example_sentence_english": "He noticed a tiny mote of dust dancing in the sunlight.", + "pos": "noun", + "word_frequency": 31860 + }, + { + "word": "multiracial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composed of or involving members of various races", + "example_sentence_english": "The city is known for its diverse and multiracial population.", + "pos": "adjective", + "word_frequency": 31862 + }, + { + "word": "myeloid", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or resembling bone marrow", + "example_sentence_english": "Acute myeloid leukemia is a type of cancer of the blood and bone marrow.", + "pos": "adjective", + "word_frequency": 31866 + }, + { + "word": "naira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the basic monetary unit of Nigeria", + "example_sentence_english": "The Nigerian naira has depreciated against the dollar.", + "pos": "noun", + "word_frequency": 31868 + }, + { + "word": "nimrod", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an inept or foolish person", + "example_sentence_english": "Don't be such a nimrod; you just locked your keys in the car again.", + "pos": "noun", + "word_frequency": 31875 + }, + { + "word": "nubian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Nubia or its people", + "example_sentence_english": "The Nubian pyramids are smaller and steeper than Egyptian ones.", + "pos": "adjective", + "word_frequency": 31879 + }, + { + "word": "oblast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An administrative division in some Slavic countries.", + "example_sentence_english": "The region is divided into several oblasts.", + "pos": "noun", + "word_frequency": 31882 + }, + { + "word": "offhand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Casual; without prior thought or preparation.", + "example_sentence_english": "His offhand remark surprised everyone.", + "pos": "adjective", + "word_frequency": 31883 + }, + { + "word": "okra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A green, pod-shaped vegetable.", + "example_sentence_english": "She added okra to the stew.", + "pos": "noun", + "word_frequency": 31884 + }, + { + "word": "omelet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A dish made from beaten eggs cooked in a pan.", + "example_sentence_english": "He cooked a cheese omelet for breakfast.", + "pos": "noun", + "word_frequency": 31886 + }, + { + "word": "optometry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The profession of examining eyes for defects and prescribing corrective lenses.", + "example_sentence_english": "She decided to study optometry at university.", + "pos": "noun", + "word_frequency": 31888 + }, + { + "word": "orwellian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Characteristic of the dystopian future depicted in George Orwell's novel Nineteen Eighty-Four.", + "example_sentence_english": "The new surveillance laws have an Orwellian feel to them.", + "pos": "adjective", + "word_frequency": 31889 + }, + { + "word": "outtake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A segment of a film or recording that is removed from the final version.", + "example_sentence_english": "The DVD included a reel of hilarious outtakes.", + "pos": "noun", + "word_frequency": 31891 + }, + { + "word": "paella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A Spanish rice dish with seafood, meat, and vegetables.", + "example_sentence_english": "We had delicious paella for dinner.", + "pos": "noun", + "word_frequency": 31893 + }, + { + "word": "pager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small electronic device that receives signals or messages.", + "example_sentence_english": "Doctors used pagers to receive urgent calls.", + "pos": "noun", + "word_frequency": 31894 + }, + { + "word": "panicky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Feeling or showing panic.", + "example_sentence_english": "She felt panicky when she realized she had lost her keys.", + "pos": "adjective", + "word_frequency": 31895 + }, + { + "word": "parasol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A light umbrella used to give shade from the sun.", + "example_sentence_english": "She sat under a colorful parasol on the beach.", + "pos": "noun", + "word_frequency": 31897 + }, + { + "word": "parser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A program that analyzes text or code to determine its grammatical structure.", + "example_sentence_english": "The compiler uses a parser to check the syntax of the code.", + "pos": "noun", + "word_frequency": 31898 + }, + { + "word": "pensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Engaged in deep or serious thought.", + "example_sentence_english": "She looked pensive, staring out the window.", + "pos": "adjective", + "word_frequency": 31903 + }, + { + "word": "performative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or denoting an utterance that constitutes the performance of an act.", + "example_sentence_english": "Saying 'I do' in a wedding ceremony is a performative utterance.", + "pos": "adjective", + "word_frequency": 31904 + }, + { + "word": "petticoat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A light, loose undergarment hanging from the waist or shoulders.", + "example_sentence_english": "She wore a long petticoat under her skirt.", + "pos": "noun", + "word_frequency": 31905 + }, + { + "word": "phenom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person or thing that is very impressive or talented.", + "example_sentence_english": "The young athlete was a true phenom on the basketball court.", + "pos": "noun", + "word_frequency": 31906 + }, + { + "word": "photosynthetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or involved in the process of photosynthesis.", + "example_sentence_english": "Plants use photosynthetic pigments to capture sunlight.", + "pos": "adjective", + "word_frequency": 31907 + }, + { + "word": "pinion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The outer part of a bird's wing; a small gear.", + "example_sentence_english": "The bird's pinion was injured, preventing it from flying.", + "pos": "noun", + "word_frequency": 31908 + }, + { + "word": "plenipotentiary", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "A person, especially an ambassador, invested with full power to transact business.", + "example_sentence_english": "The plenipotentiary was authorized to sign the treaty.", + "pos": "noun", + "word_frequency": 31910 + }, + { + "word": "plotter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who devises a plot; a device for drawing graphs or plans.", + "example_sentence_english": "The police arrested the plotter of the conspiracy.", + "pos": "noun", + "word_frequency": 31911 + }, + { + "word": "pons", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A part of the brainstem that links the medulla oblongata and the thalamus.", + "example_sentence_english": "The pons plays a crucial role in sleep and respiration.", + "pos": "noun", + "word_frequency": 31913 + }, + { + "word": "precondition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A condition that must be fulfilled before other things can happen.", + "example_sentence_english": "Good health is a precondition for a long life.", + "pos": "noun", + "word_frequency": 31914 + }, + { + "word": "preppy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to or characteristic of a student or graduate of an expensive preparatory school.", + "example_sentence_english": "He wore a preppy outfit with a polo shirt and khakis.", + "pos": "adjective", + "word_frequency": 31915 + }, + { + "word": "pretension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The use of an exaggerated outward show; a claim or assertion of a right.", + "example_sentence_english": "His speech was full of intellectual pretension.", + "pos": "noun", + "word_frequency": 31916 + }, + { + "word": "prospector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who searches for mineral deposits, especially gold.", + "example_sentence_english": "The old prospector spent years searching for gold.", + "pos": "noun", + "word_frequency": 31918 + }, + { + "word": "quantitatively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that relates to quantity", + "example_sentence_english": "The data was analyzed quantitatively to identify trends.", + "pos": "adverb", + "word_frequency": 31922 + }, + { + "word": "radiative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving the emission of radiation", + "example_sentence_english": "The sun's radiative energy warms the Earth.", + "pos": "adjective", + "word_frequency": 31923 + }, + { + "word": "rambler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who walks for pleasure, especially in the countryside", + "example_sentence_english": "He was a keen rambler, always exploring new trails.", + "pos": "noun", + "word_frequency": 31924 + }, + { + "word": "rattan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of palm with long, tough stems, used for making furniture", + "example_sentence_english": "The patio furniture was made of durable rattan.", + "pos": "noun", + "word_frequency": 31926 + }, + { + "word": "reassemble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "put something back together again", + "example_sentence_english": "After cleaning, he had to reassemble the entire machine.", + "pos": "verb", + "word_frequency": 31927 + }, + { + "word": "rebalance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjust or restore balance", + "example_sentence_english": "Investors often rebalance their portfolios annually.", + "pos": "verb", + "word_frequency": 31928 + }, + { + "word": "regress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return to a former or less developed state", + "example_sentence_english": "Without proper support, some patients may regress in their recovery.", + "pos": "verb", + "word_frequency": 31929 + }, + { + "word": "reintegration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of returning to a former state or group", + "example_sentence_english": "The program aims to support the reintegration of ex-offenders into society.", + "pos": "noun", + "word_frequency": 31930 + }, + { + "word": "renegotiation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of negotiating again", + "example_sentence_english": "The contract required a renegotiation of terms after five years.", + "pos": "noun", + "word_frequency": 31931 + }, + { + "word": "retinue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a group of assistants, supporters, or retainers accompanying an important person", + "example_sentence_english": "The queen arrived with her full retinue of advisors and guards.", + "pos": "noun", + "word_frequency": 31932 + }, + { + "word": "romanesque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Romanesque style of architecture", + "example_sentence_english": "The church featured impressive Romanesque arches.", + "pos": "adjective", + "word_frequency": 31937 + }, + { + "word": "rouble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the basic monetary unit of Russia and some other former Soviet republics", + "example_sentence_english": "The exchange rate for the rouble fluctuated significantly.", + "pos": "noun", + "word_frequency": 31938 + }, + { + "word": "rumba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a rhythmic dance of Cuban origin", + "example_sentence_english": "They learned to dance the rumba at the studio.", + "pos": "noun", + "word_frequency": 31939 + }, + { + "word": "saree", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a garment worn by Hindu women, consisting of a long piece of cotton or silk wrapped around the body", + "example_sentence_english": "She looked elegant in her traditional silk saree.", + "pos": "noun", + "word_frequency": 31943 + }, + { + "word": "satirist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who uses satire", + "example_sentence_english": "Jonathan Swift was a renowned satirist of his time.", + "pos": "noun", + "word_frequency": 31944 + }, + { + "word": "sharpshooter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an expert marksman", + "example_sentence_english": "The sharpshooter hit the target from a great distance.", + "pos": "noun", + "word_frequency": 31949 + }, + { + "word": "shiner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a black eye; a small, silvery fish", + "example_sentence_english": "He got a shiner after bumping into the door.", + "pos": "noun", + "word_frequency": 31950 + }, + { + "word": "sidetrack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divert from the main issue or course", + "example_sentence_english": "Don't let yourself get sidetracked by minor details.", + "pos": "verb", + "word_frequency": 31951 + }, + { + "word": "singlehandedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without assistance", + "example_sentence_english": "She managed to build the entire house singlehandedly.", + "pos": "adverb", + "word_frequency": 31953 + }, + { + "word": "skiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shallow, flat-bottomed open boat", + "example_sentence_english": "They rowed the small skiff across the lake.", + "pos": "noun", + "word_frequency": 31954 + }, + { + "word": "skittish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "easily scared; nervous", + "example_sentence_english": "The wild horse was very skittish and hard to approach.", + "pos": "adjective", + "word_frequency": 31955 + }, + { + "word": "sleuth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a detective", + "example_sentence_english": "The amateur sleuth uncovered a crucial clue.", + "pos": "noun", + "word_frequency": 31959 + }, + { + "word": "sluice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sliding gate or other device for controlling the flow of water", + "example_sentence_english": "The engineers opened the sluice to release the excess water from the dam.", + "pos": "noun", + "word_frequency": 31961 + }, + { + "word": "smokeless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "producing little or no smoke", + "example_sentence_english": "They installed a new smokeless fireplace in the living room.", + "pos": "adjective", + "word_frequency": 31962 + }, + { + "word": "solidity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being solid", + "example_sentence_english": "The bridge's solidity was tested by the heavy traffic.", + "pos": "noun", + "word_frequency": 31963 + }, + { + "word": "speciation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the formation of new and distinct species in the course of evolution", + "example_sentence_english": "Geographic isolation can lead to allopatric speciation.", + "pos": "noun", + "word_frequency": 31965 + }, + { + "word": "squeamish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easily nauseated or disgusted", + "example_sentence_english": "She's a bit squeamish about blood, so she avoids horror movies.", + "pos": "adjective", + "word_frequency": 31968 + }, + { + "word": "stockade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a barrier or enclosure formed from timber posts fixed in the ground", + "example_sentence_english": "The prisoners were held in a temporary stockade before being transferred.", + "pos": "noun", + "word_frequency": 31969 + }, + { + "word": "stoicism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the endurance of pain or hardship without the display of feelings and without complaint", + "example_sentence_english": "His stoicism in the face of adversity was truly admirable.", + "pos": "noun", + "word_frequency": 31970 + }, + { + "word": "strontium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soft, silvery-white metallic element", + "example_sentence_english": "Strontium is used in fireworks to produce a bright red color.", + "pos": "noun", + "word_frequency": 31973 + }, + { + "word": "superfund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a US federal government program designed to fund the cleanup of sites contaminated with hazardous substances", + "example_sentence_english": "The EPA designated the abandoned factory as a Superfund site.", + "pos": "noun", + "word_frequency": 31976 + }, + { + "word": "supposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an uncertain belief", + "example_sentence_english": "His theory was based on pure supposition, not on evidence.", + "pos": "noun", + "word_frequency": 31977 + }, + { + "word": "synchronise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause to occur or operate at the same time or rate", + "example_sentence_english": "We need to synchronise our watches before the mission.", + "pos": "verb", + "word_frequency": 31979 + }, + { + "word": "tantra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mystical or esoteric text, especially one of a number of sacred Sanskrit treatises", + "example_sentence_english": "She is studying ancient tantra texts to understand their philosophy.", + "pos": "noun", + "word_frequency": 31982 + }, + { + "word": "tarsus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the group of bones forming the ankle and upper part of the foot", + "example_sentence_english": "He injured his tarsus while playing football.", + "pos": "noun", + "word_frequency": 31983 + }, + { + "word": "thermoplastic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denoting a plastic that becomes pliable or moldable above a specific temperature and solidifies upon cooling", + "example_sentence_english": "Many common plastics are thermoplastic, meaning they can be melted and reshaped.", + "pos": "adjective", + "word_frequency": 31986 + }, + { + "word": "thickly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "with a large distance between opposite sides or surfaces; densely", + "example_sentence_english": "The fog lay thickly over the valley, making driving difficult.", + "pos": "adverb", + "word_frequency": 31988 + }, + { + "word": "timeshare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a form of ownership or right to use a property for a specified period each year", + "example_sentence_english": "They bought a timeshare in Florida for their annual family vacation.", + "pos": "noun", + "word_frequency": 31991 + }, + { + "word": "tipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who gives a tip; a truck or trailer that can be tilted to empty its contents", + "example_sentence_english": "The construction site had several large tipper trucks delivering gravel.", + "pos": "noun", + "word_frequency": 31994 + }, + { + "word": "trailhead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the beginning of a trail", + "example_sentence_english": "We met at the trailhead at 8 AM to start our hike.", + "pos": "noun", + "word_frequency": 31997 + }, + { + "word": "transvestite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person, typically a man, who derives pleasure from dressing in clothes appropriate to the opposite sex", + "example_sentence_english": "The play featured a character who was a transvestite.", + "pos": "noun", + "word_frequency": 31998 + }, + { + "word": "tussle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a vigorous struggle or scuffle", + "example_sentence_english": "The children had a playful tussle over the last cookie.", + "pos": "noun", + "word_frequency": 32002 + }, + { + "word": "typist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who types", + "example_sentence_english": "The typist quickly transcribed the entire interview.", + "pos": "noun", + "word_frequency": 32004 + }, + { + "word": "unaided", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without help or assistance", + "example_sentence_english": "She managed to complete the complex puzzle unaided.", + "pos": "adjective", + "word_frequency": 32008 + }, + { + "word": "unbecoming", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not appropriate or suitable", + "example_sentence_english": "His rude behavior was unbecoming of a professional.", + "pos": "adjective", + "word_frequency": 32009 + }, + { + "word": "universalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who believes in universal principles or salvation", + "example_sentence_english": "As a universalist, she advocated for human rights for all.", + "pos": "noun", + "word_frequency": 32010 + }, + { + "word": "unmistakably", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that cannot be mistaken; clearly", + "example_sentence_english": "The voice on the phone was unmistakably his.", + "pos": "adverb", + "word_frequency": 32011 + }, + { + "word": "unrealized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not achieved or brought into being", + "example_sentence_english": "He had many unrealized ambitions from his youth.", + "pos": "adjective", + "word_frequency": 32012 + }, + { + "word": "unworkable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not practical or able to be implemented", + "example_sentence_english": "The proposed plan was deemed unworkable due to budget constraints.", + "pos": "adjective", + "word_frequency": 32013 + }, + { + "word": "uppercut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a punch delivered with an upward motion", + "example_sentence_english": "The boxer landed a powerful uppercut to his opponent's jaw.", + "pos": "noun", + "word_frequency": 32014 + }, + { + "word": "valiantly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "with courage or determination", + "example_sentence_english": "The small army fought valiantly against overwhelming odds.", + "pos": "adverb", + "word_frequency": 32016 + }, + { + "word": "verandah", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a roofed open-air gallery or portico attached to the exterior of a building", + "example_sentence_english": "We enjoyed our morning coffee on the spacious verandah.", + "pos": "noun", + "word_frequency": 32017 + }, + { + "word": "virology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of viruses and viral diseases", + "example_sentence_english": "She decided to specialize in virology during her postgraduate studies.", + "pos": "noun", + "word_frequency": 32020 + }, + { + "word": "wastage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of wasting", + "example_sentence_english": "The company implemented new policies to reduce material wastage.", + "pos": "noun", + "word_frequency": 32025 + }, + { + "word": "waterline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the level reached by the surface of water on the side of a ship or boat", + "example_sentence_english": "The ship's waterline was marked with a distinct red paint.", + "pos": "noun", + "word_frequency": 32026 + }, + { + "word": "weariness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme tiredness; fatigue", + "example_sentence_english": "A deep weariness settled over him after the long journey.", + "pos": "noun", + "word_frequency": 32028 + }, + { + "word": "weblog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a blog; a regularly updated website or web page", + "example_sentence_english": "She started a weblog to document her culinary adventures.", + "pos": "noun", + "word_frequency": 32029 + }, + { + "word": "whaler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or ship engaged in whaling", + "example_sentence_english": "The old whaler recounted tales of his voyages to the Arctic.", + "pos": "noun", + "word_frequency": 32030 + }, + { + "word": "wheelbase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the distance between the centers of the front and rear wheels of a vehicle", + "example_sentence_english": "A longer wheelbase often contributes to a smoother ride in a car.", + "pos": "noun", + "word_frequency": 32031 + }, + { + "word": "wholeness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being complete and undivided", + "example_sentence_english": "She sought a sense of wholeness and balance in her life.", + "pos": "noun", + "word_frequency": 32032 + }, + { + "word": "wrest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forcibly pull (something) from a person's grasp", + "example_sentence_english": "He managed to wrest the document from her hand.", + "pos": "verb", + "word_frequency": 32039 + }, + { + "word": "zillion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an indefinitely large number", + "example_sentence_english": "I have a zillion things to do today.", + "pos": "numeral", + "word_frequency": 32041 + }, + { + "word": "acceptability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being acceptable", + "example_sentence_english": "The acceptability of the new policy is still being debated.", + "pos": "noun", + "word_frequency": 32053 + }, + { + "word": "adjudge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to consider or declare to be true or the case", + "example_sentence_english": "The court will adjudge the winner of the competition.", + "pos": "verb", + "word_frequency": 32055 + }, + { + "word": "alcove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small recessed section of a room", + "example_sentence_english": "There was a cozy reading alcove by the window.", + "pos": "noun", + "word_frequency": 32060 + }, + { + "word": "anesthesiologist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a medical doctor specializing in anesthesia", + "example_sentence_english": "The anesthesiologist explained the procedure before the surgery.", + "pos": "noun", + "word_frequency": 32065 + }, + { + "word": "annualize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to adjust a rate or amount to an annual basis", + "example_sentence_english": "We need to annualize these quarterly earnings to get a full-year projection.", + "pos": "verb", + "word_frequency": 32066 + }, + { + "word": "arcana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secrets or mysteries", + "example_sentence_english": "He delved into the arcana of ancient magic.", + "pos": "noun", + "word_frequency": 32067 + }, + { + "word": "architecturally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an architectural manner", + "example_sentence_english": "The building is architecturally significant.", + "pos": "adverb", + "word_frequency": 32068 + }, + { + "word": "assertiveness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being self-assured and confident", + "example_sentence_english": "Her assertiveness helped her succeed in the negotiation.", + "pos": "noun", + "word_frequency": 32072 + }, + { + "word": "astrophysicist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a scientist who studies the physical properties of celestial objects", + "example_sentence_english": "The astrophysicist gave a lecture on black holes.", + "pos": "noun", + "word_frequency": 32074 + }, + { + "word": "autocracy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of government by one person with absolute power", + "example_sentence_english": "The country transitioned from a democracy to an autocracy.", + "pos": "noun", + "word_frequency": 32079 + }, + { + "word": "autosomal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to a chromosome that is not a sex chromosome", + "example_sentence_english": "Autosomal dominant inheritance means only one copy of an altered gene is needed to cause the disorder.", + "pos": "adjective", + "word_frequency": 32080 + }, + { + "word": "balloting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of voting by ballot", + "example_sentence_english": "The balloting process was conducted smoothly and fairly.", + "pos": "noun", + "word_frequency": 32082 + }, + { + "word": "basset", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short-legged dog of a breed of hound", + "example_sentence_english": "My neighbor has a friendly basset hound.", + "pos": "noun", + "word_frequency": 32085 + }, + { + "word": "bestiality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual relations between a person and an animal", + "example_sentence_english": "The law prohibits acts of bestiality.", + "pos": "noun", + "word_frequency": 32088 + }, + { + "word": "biracial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of or involving two races", + "example_sentence_english": "She identifies as biracial, with both African and European heritage.", + "pos": "adjective", + "word_frequency": 32089 + }, + { + "word": "blurt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "say something suddenly and without careful consideration", + "example_sentence_english": "She didn't mean to blurt out the secret.", + "pos": "verb", + "word_frequency": 32094 + }, + { + "word": "bodice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the part of a woman's dress that is above the waist", + "example_sentence_english": "The dress had a fitted bodice and a flowing skirt.", + "pos": "noun", + "word_frequency": 32095 + }, + { + "word": "bozo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a foolish or incompetent person", + "example_sentence_english": "Don't be such a bozo and pay attention!", + "pos": "noun", + "word_frequency": 32097 + }, + { + "word": "brainy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intelligent or intellectual", + "example_sentence_english": "She's a very brainy student and always gets top grades.", + "pos": "adjective", + "word_frequency": 32099 + }, + { + "word": "broach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an ornamental pin; a tool for enlarging holes", + "example_sentence_english": "She wore a beautiful silver broach on her lapel.", + "pos": "noun", + "word_frequency": 32102 + }, + { + "word": "bromance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a close, non-sexual friendship between two men", + "example_sentence_english": "Their bromance was evident in how they always supported each other.", + "pos": "noun", + "word_frequency": 32104 + }, + { + "word": "butane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a flammable hydrocarbon gas", + "example_sentence_english": "Lighters are often filled with butane gas.", + "pos": "noun", + "word_frequency": 32105 + }, + { + "word": "cabbie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a taxi driver", + "example_sentence_english": "The cabbie knew all the shortcuts in the city.", + "pos": "noun", + "word_frequency": 32107 + }, + { + "word": "calcite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a common rock-forming mineral", + "example_sentence_english": "Calcite is the main component of limestone and marble.", + "pos": "noun", + "word_frequency": 32108 + }, + { + "word": "candied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserved in or coated with sugar", + "example_sentence_english": "She made candied pecans for the holiday dessert.", + "pos": "adjective", + "word_frequency": 32110 + }, + { + "word": "centrality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being central or important", + "example_sentence_english": "The centrality of the issue made it a priority for discussion.", + "pos": "noun", + "word_frequency": 32114 + }, + { + "word": "chamomile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an aromatic European plant used for herbal tea", + "example_sentence_english": "I like to drink chamomile tea before bed to relax.", + "pos": "noun", + "word_frequency": 32115 + }, + { + "word": "childbearing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of giving birth to children", + "example_sentence_english": "The age of childbearing has increased in many countries.", + "pos": "noun", + "word_frequency": 32116 + }, + { + "word": "chippy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irritability or quarrelsome; prone to making small, sharp remarks", + "example_sentence_english": "He was feeling a bit chippy after losing the game.", + "pos": "adjective", + "word_frequency": 32117 + }, + { + "word": "chive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small, onion-like plant used as a culinary herb", + "example_sentence_english": "I chopped some fresh chives to sprinkle over the soup.", + "pos": "noun", + "word_frequency": 32118 + }, + { + "word": "classless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking social class distinctions; vulgar or unsophisticated", + "example_sentence_english": "His rude remarks were considered classless by many.", + "pos": "adjective", + "word_frequency": 32121 + }, + { + "word": "clink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sharp, ringing sound", + "example_sentence_english": "We heard the clink of glasses as they toasted.", + "pos": "noun", + "word_frequency": 32122 + }, + { + "word": "cognate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a word having the same linguistic derivation as another", + "example_sentence_english": "The English word 'night' and the German word 'Nacht' are cognates.", + "pos": "noun", + "word_frequency": 32124 + }, + { + "word": "conifer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tree that bears cones and evergreen needles", + "example_sentence_english": "Pine trees are a common type of conifer.", + "pos": "noun", + "word_frequency": 32125 + }, + { + "word": "contrition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of feeling remorseful and penitent", + "example_sentence_english": "He expressed deep contrition for his actions.", + "pos": "noun", + "word_frequency": 32126 + }, + { + "word": "counterclockwise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the opposite direction to the movement of the hands of a clock", + "example_sentence_english": "Turn the knob counterclockwise to open it.", + "pos": "adverb", + "word_frequency": 32128 + }, + { + "word": "crewman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a ship's or aircraft's crew", + "example_sentence_english": "One of the crewmen was injured during the storm.", + "pos": "noun", + "word_frequency": 32129 + }, + { + "word": "crockery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plates, dishes, cups, and other similar items, especially ones made of earthenware or porcelain", + "example_sentence_english": "She carefully washed the delicate crockery.", + "pos": "noun", + "word_frequency": 32130 + }, + { + "word": "dais", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a raised platform for a speaker or performers", + "example_sentence_english": "The speaker stood on the dais to address the audience.", + "pos": "noun", + "word_frequency": 32134 + }, + { + "word": "degeneracy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of being degenerate; decline or deterioration", + "example_sentence_english": "The theory of degeneracy was popular in the late 19th century.", + "pos": "noun", + "word_frequency": 32136 + }, + { + "word": "demoralize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause (someone) to lose confidence or hope", + "example_sentence_english": "The defeat seemed to demoralize the entire team.", + "pos": "verb", + "word_frequency": 32138 + }, + { + "word": "disloyalty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of loyalty", + "example_sentence_english": "His disloyalty to the company was evident.", + "pos": "noun", + "word_frequency": 32140 + }, + { + "word": "dollop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shapeless mass or blob of something", + "example_sentence_english": "She added a dollop of cream to her coffee.", + "pos": "noun", + "word_frequency": 32143 + }, + { + "word": "dongle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small device that connects to a computer to provide it with additional functions", + "example_sentence_english": "I need a USB dongle to connect my wireless mouse.", + "pos": "noun", + "word_frequency": 32145 + }, + { + "word": "douse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pour a liquid over; drench; to extinguish (a fire or light)", + "example_sentence_english": "They doused the flames with buckets of water.", + "pos": "verb", + "word_frequency": 32147 + }, + { + "word": "drapery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloth hung in folds as a covering or decoration", + "example_sentence_english": "The elegant drapery framed the large window.", + "pos": "noun", + "word_frequency": 32148 + }, + { + "word": "drawdown", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a reduction in the level of something, typically a financial asset or military force", + "example_sentence_english": "The company experienced a significant drawdown in its stock value.", + "pos": "noun", + "word_frequency": 32149 + }, + { + "word": "dreadlock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a matted or ropelike strand of hair formed by braiding or locking", + "example_sentence_english": "She had long dreadlocks that reached her waist.", + "pos": "noun", + "word_frequency": 32150 + }, + { + "word": "dreadnought", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of battleship with an 'all big gun' armament", + "example_sentence_english": "The dreadnought revolutionized naval warfare in the early 20th century.", + "pos": "noun", + "word_frequency": 32151 + }, + { + "word": "dreg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the last remaining part of something; the sediment at the bottom of a liquid", + "example_sentence_english": "He drank the last dregs of coffee from his cup.", + "pos": "noun", + "word_frequency": 32152 + }, + { + "word": "emptive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving to preempt or forestall", + "example_sentence_english": "The government took emptive action to prevent the crisis.", + "pos": "adjective", + "word_frequency": 32155 + }, + { + "word": "escapade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an act or incident involving excitement, daring, or adventure", + "example_sentence_english": "Their weekend escapade involved hiking and camping.", + "pos": "noun", + "word_frequency": 32156 + }, + { + "word": "escarpment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a long, steep slope, especially one at the edge of a plateau or separating areas of land at different heights", + "example_sentence_english": "The hikers carefully descended the steep escarpment.", + "pos": "noun", + "word_frequency": 32157 + }, + { + "word": "eval", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evaluation; a function that evaluates an expression or string", + "example_sentence_english": "The programmer used the eval function to execute the code dynamically.", + "pos": "noun", + "word_frequency": 32159 + }, + { + "word": "extrinsic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "external; not inherent", + "example_sentence_english": "The extrinsic factors influenced the outcome.", + "pos": "adjective", + "word_frequency": 32161 + }, + { + "word": "finality", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being final or complete", + "example_sentence_english": "There was a sense of finality in his voice.", + "pos": "noun", + "word_frequency": 32170 + }, + { + "word": "foldable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be folded", + "example_sentence_english": "I bought a new foldable chair for camping.", + "pos": "adjective", + "word_frequency": 32172 + }, + { + "word": "forebear", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ancestor", + "example_sentence_english": "Our forebears came to this country many generations ago.", + "pos": "noun", + "word_frequency": 32173 + }, + { + "word": "forestall", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevent or obstruct by taking action ahead of time", + "example_sentence_english": "He tried to forestall the crisis by acting quickly.", + "pos": "verb", + "word_frequency": 32174 + }, + { + "word": "gatehouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a house standing over or beside a gateway", + "example_sentence_english": "The guard was stationed at the gatehouse.", + "pos": "noun", + "word_frequency": 32175 + }, + { + "word": "gentlemanly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "befitting a gentleman; polite and honorable", + "example_sentence_english": "He always behaved in a gentlemanly manner.", + "pos": "adjective", + "word_frequency": 32176 + }, + { + "word": "glycerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sweet, syrupy liquid used in medicines and cosmetics", + "example_sentence_english": "This soap contains glycerin to moisturize the skin.", + "pos": "noun", + "word_frequency": 32180 + }, + { + "word": "goldeneye", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of diving duck", + "example_sentence_english": "We saw a goldeneye duck on the lake.", + "pos": "noun", + "word_frequency": 32182 + }, + { + "word": "goldmine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a rich source of something valuable", + "example_sentence_english": "That old antique shop is a goldmine for collectors.", + "pos": "noun", + "word_frequency": 32184 + }, + { + "word": "gorgon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a terrifying or repulsive woman; a mythical monster", + "example_sentence_english": "Medusa was one of the three Gorgons.", + "pos": "noun", + "word_frequency": 32186 + }, + { + "word": "grayish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somewhat gray", + "example_sentence_english": "The sky had a grayish tint before the storm.", + "pos": "adjective", + "word_frequency": 32188 + }, + { + "word": "hardwired", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "innate; built-in", + "example_sentence_english": "Humans are hardwired to seek connection.", + "pos": "adjective", + "word_frequency": 32197 + }, + { + "word": "harpsichord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a keyboard instrument with plucked strings", + "example_sentence_english": "The musician played a beautiful piece on the harpsichord.", + "pos": "noun", + "word_frequency": 32199 + }, + { + "word": "hashish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a drug made from cannabis", + "example_sentence_english": "The police found a large quantity of hashish during the raid.", + "pos": "noun", + "word_frequency": 32200 + }, + { + "word": "hematology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of blood", + "example_sentence_english": "She decided to specialize in hematology after medical school.", + "pos": "noun", + "word_frequency": 32201 + }, + { + "word": "heroically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a heroic manner", + "example_sentence_english": "He heroically saved the child from the burning building.", + "pos": "adverb", + "word_frequency": 32203 + }, + { + "word": "histogram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a graphical representation of the distribution of numerical data", + "example_sentence_english": "The data was presented as a histogram to show the frequency distribution.", + "pos": "noun", + "word_frequency": 32207 + }, + { + "word": "hmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Health Maintenance Organization", + "example_sentence_english": "My health insurance plan is an HMO.", + "pos": "noun", + "word_frequency": 32208 + }, + { + "word": "hokey", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overly sentimental or contrived", + "example_sentence_english": "The movie had a hokey ending that ruined the whole experience.", + "pos": "adjective", + "word_frequency": 32209 + }, + { + "word": "hydrochloric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to hydrogen chloride", + "example_sentence_english": "Hydrochloric acid is a strong corrosive acid.", + "pos": "adjective", + "word_frequency": 32212 + }, + { + "word": "hydrochloride", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a salt of hydrochloric acid", + "example_sentence_english": "Many medications are available as a hydrochloride salt.", + "pos": "noun", + "word_frequency": 32213 + }, + { + "word": "iep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Individualized Education Program", + "example_sentence_english": "Every student with special needs has an IEP.", + "pos": "noun", + "word_frequency": 32216 + }, + { + "word": "impolite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not polite; rude", + "example_sentence_english": "It's impolite to interrupt someone while they are speaking.", + "pos": "adjective", + "word_frequency": 32218 + }, + { + "word": "insomniac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who suffers from insomnia", + "example_sentence_english": "As an insomniac, she often struggles to fall asleep at night.", + "pos": "noun", + "word_frequency": 32220 + }, + { + "word": "interventionist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who favors intervention, especially in politics", + "example_sentence_english": "The country's foreign policy was criticized by both isolationists and interventionists.", + "pos": "noun", + "word_frequency": 32221 + }, + { + "word": "irrelevance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being irrelevant", + "example_sentence_english": "His arguments were dismissed due to their complete irrelevance to the topic.", + "pos": "noun", + "word_frequency": 32223 + }, + { + "word": "itemize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to list items separately", + "example_sentence_english": "Please itemize all your expenses on the form.", + "pos": "verb", + "word_frequency": 32225 + }, + { + "word": "jawline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the outline of the lower jaw", + "example_sentence_english": "He had a strong, defined jawline.", + "pos": "noun", + "word_frequency": 32229 + }, + { + "word": "jell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take shape or become cohesive", + "example_sentence_english": "The team's ideas finally started to jell after weeks of discussion.", + "pos": "verb", + "word_frequency": 32231 + }, + { + "word": "languish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffer from being forced to remain in an unpleasant place or situation", + "example_sentence_english": "The prisoners languished in jail for years.", + "pos": "verb", + "word_frequency": 32243 + }, + { + "word": "leathery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling leather in being tough and flexible", + "example_sentence_english": "His skin was leathery from years of sun exposure.", + "pos": "adjective", + "word_frequency": 32247 + }, + { + "word": "libertarianism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a political philosophy that advocates for minimal state intervention in the free market and the private lives of citizens", + "example_sentence_english": "Libertarianism emphasizes individual liberty and limited government.", + "pos": "noun", + "word_frequency": 32249 + }, + { + "word": "lisle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fine, strong cotton thread, typically mercerized", + "example_sentence_english": "The socks were made of high-quality lisle.", + "pos": "noun", + "word_frequency": 32250 + }, + { + "word": "loam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fertile soil of clay and sand containing humus", + "example_sentence_english": "The garden thrived in the rich loam.", + "pos": "noun", + "word_frequency": 32252 + }, + { + "word": "luger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of German semi-automatic pistol", + "example_sentence_english": "The old soldier kept a Luger pistol as a souvenir.", + "pos": "noun", + "word_frequency": 32254 + }, + { + "word": "malagasy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a native or inhabitant of Madagascar, or the Malagasy language", + "example_sentence_english": "The Malagasy people speak a language related to Malay.", + "pos": "noun", + "word_frequency": 32259 + }, + { + "word": "masque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a form of amateur dramatic entertainment, popular among the nobility in 16th- and 17th-century England, involving dancing and acting performed by masked players", + "example_sentence_english": "The court enjoyed a grand masque performance.", + "pos": "noun", + "word_frequency": 32265 + }, + { + "word": "masseuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who gives massages", + "example_sentence_english": "She booked an appointment with the masseuse.", + "pos": "noun", + "word_frequency": 32266 + }, + { + "word": "maulana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a title of respect for a Muslim religious leader or scholar", + "example_sentence_english": "Maulana Rumi was a 13th-century Persian poet.", + "pos": "noun", + "word_frequency": 32269 + }, + { + "word": "messer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes a mess or does things badly", + "example_sentence_english": "He's a real messer when it comes to cooking.", + "pos": "noun", + "word_frequency": 32275 + }, + { + "word": "metronome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device used by musicians that marks time at a selected rate by giving a regular tick", + "example_sentence_english": "The pianist practiced with a metronome to keep time.", + "pos": "noun", + "word_frequency": 32276 + }, + { + "word": "midrange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the middle part of a range or scale", + "example_sentence_english": "The company offers a wide range of products, from entry-level to high-end, with a strong focus on the midrange.", + "pos": "noun", + "word_frequency": 32280 + }, + { + "word": "militaristic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "favoring military solutions or values", + "example_sentence_english": "The country's militaristic policies led to increased tensions with its neighbors.", + "pos": "adjective", + "word_frequency": 32281 + }, + { + "word": "minnow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small freshwater fish; an unimportant person or thing", + "example_sentence_english": "The team was considered a minnow in the league, but they surprised everyone with their performance.", + "pos": "noun", + "word_frequency": 32282 + }, + { + "word": "mirth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amusement, especially as expressed in laughter", + "example_sentence_english": "His jokes were met with much mirth from the audience.", + "pos": "noun", + "word_frequency": 32283 + }, + { + "word": "mitosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "cell division", + "example_sentence_english": "Mitosis is a fundamental process for life, where a single cell divides into two identical daughter cells.", + "pos": "noun", + "word_frequency": 32284 + }, + { + "word": "mnemonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aiding memory", + "example_sentence_english": "Using a mnemonic device can help you remember complex information more easily.", + "pos": "adjective", + "word_frequency": 32285 + }, + { + "word": "moonstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pearly white or bluish gemstone", + "example_sentence_english": "She wore a beautiful necklace with a polished moonstone pendant.", + "pos": "noun", + "word_frequency": 32287 + }, + { + "word": "morel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an edible mushroom with a conical cap", + "example_sentence_english": "We went foraging in the woods and found several delicious morel mushrooms.", + "pos": "noun", + "word_frequency": 32288 + }, + { + "word": "neet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Not in Education, Employment, or Training", + "example_sentence_english": "The government is trying to reduce the number of NEETs by offering more vocational training programs.", + "pos": "noun", + "word_frequency": 32295 + }, + { + "word": "nimbus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a luminous cloud or a halo", + "example_sentence_english": "A dark nimbus cloud gathered overhead, signaling an approaching storm.", + "pos": "noun", + "word_frequency": 32296 + }, + { + "word": "nog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a drink, especially eggnog", + "example_sentence_english": "We enjoyed a warm glass of eggnog by the fireplace during the holidays.", + "pos": "noun", + "word_frequency": 32297 + }, + { + "word": "oomph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energy, enthusiasm, or sex appeal", + "example_sentence_english": "The new marketing campaign needs more oomph to attract customers.", + "pos": "noun", + "word_frequency": 32301 + }, + { + "word": "ostracize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exclude from a society or group", + "example_sentence_english": "The community decided to ostracize him after his controversial remarks.", + "pos": "verb", + "word_frequency": 32302 + }, + { + "word": "overvalue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to value too highly", + "example_sentence_english": "It's easy to overvalue material possessions and neglect personal relationships.", + "pos": "verb", + "word_frequency": 32303 + }, + { + "word": "paintbrush", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a brush used for applying paint", + "example_sentence_english": "She dipped her paintbrush into the blue paint and began to color the canvas.", + "pos": "noun", + "word_frequency": 32305 + }, + { + "word": "pester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annoy persistently", + "example_sentence_english": "The children kept pestering their parents for ice cream.", + "pos": "verb", + "word_frequency": 32309 + }, + { + "word": "plausibly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that seems reasonable or probable", + "example_sentence_english": "He argued his case quite plausibly, despite the lack of concrete evidence.", + "pos": "adverb", + "word_frequency": 32312 + }, + { + "word": "pleb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a common person; a member of the lower classes", + "example_sentence_english": "He dismissed their concerns, treating them like mere plebs.", + "pos": "noun", + "word_frequency": 32313 + }, + { + "word": "plucky", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing spirited courage in the face of difficulties", + "example_sentence_english": "The plucky young hero faced the dragon without fear.", + "pos": "adjective", + "word_frequency": 32314 + }, + { + "word": "privatise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to transfer (a business, industry, or service) from public to private ownership and control", + "example_sentence_english": "The government plans to privatise several state-owned industries.", + "pos": "verb", + "word_frequency": 32317 + }, + { + "word": "prohibitively", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to an extent that prevents something from being done or achieved", + "example_sentence_english": "The cost of the new software was prohibitively expensive for small businesses.", + "pos": "adverb", + "word_frequency": 32318 + }, + { + "word": "proximate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "close; immediate", + "example_sentence_english": "The proximate cause of the accident was a faulty brake.", + "pos": "adjective", + "word_frequency": 32320 + }, + { + "word": "puller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or thing that pulls", + "example_sentence_english": "He used a gear puller to remove the stubborn part.", + "pos": "noun", + "word_frequency": 32321 + }, + { + "word": "queasy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nauseous; uneasy", + "example_sentence_english": "The boat ride made her feel a bit queasy.", + "pos": "adjective", + "word_frequency": 32323 + }, + { + "word": "quiche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a savory tart with a pastry crust and a filling of eggs, cheese, and other ingredients", + "example_sentence_english": "For lunch, we had a delicious slice of quiche.", + "pos": "noun", + "word_frequency": 32324 + }, + { + "word": "rainstorm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a storm with heavy rain", + "example_sentence_english": "A sudden rainstorm caught us by surprise.", + "pos": "noun", + "word_frequency": 32327 + }, + { + "word": "rapprochement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the re-establishment of cordial relations", + "example_sentence_english": "The two countries sought a rapprochement after years of tension.", + "pos": "noun", + "word_frequency": 32329 + }, + { + "word": "reappearance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of appearing again", + "example_sentence_english": "His sudden reappearance surprised everyone.", + "pos": "noun", + "word_frequency": 32331 + }, + { + "word": "recompense", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make amends to (someone) for loss or harm suffered; compensate", + "example_sentence_english": "The company offered to recompense customers for the inconvenience.", + "pos": "verb", + "word_frequency": 32332 + }, + { + "word": "redraw", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draw again; to change the boundaries of", + "example_sentence_english": "They had to redraw the map after the new borders were established.", + "pos": "verb", + "word_frequency": 32334 + }, + { + "word": "refutation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of proving a statement or theory to be wrong or false", + "example_sentence_english": "His detailed refutation of the argument was convincing.", + "pos": "noun", + "word_frequency": 32335 + }, + { + "word": "remiss", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking care or attention to duty; negligent", + "example_sentence_english": "It would be remiss of me not to mention her contribution.", + "pos": "adjective", + "word_frequency": 32336 + }, + { + "word": "repudiate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refuse to accept or be associated with; deny the truth or validity of", + "example_sentence_english": "He was quick to repudiate the accusations made against him.", + "pos": "verb", + "word_frequency": 32338 + }, + { + "word": "resuscitate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revive (someone) from unconsciousness or apparent death", + "example_sentence_english": "Paramedics tried to resuscitate the victim at the scene.", + "pos": "verb", + "word_frequency": 32339 + }, + { + "word": "reticent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not revealing one's thoughts or feelings readily", + "example_sentence_english": "He was very reticent about his past.", + "pos": "adjective", + "word_frequency": 32340 + }, + { + "word": "reverie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of being pleasantly lost in one's thoughts; a daydream", + "example_sentence_english": "She was lost in a reverie, staring out the window.", + "pos": "noun", + "word_frequency": 32341 + }, + { + "word": "revisionism", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the practice of re-examining and reinterpreting historical events", + "example_sentence_english": "The historian was accused of revisionism for his controversial new theory.", + "pos": "noun", + "word_frequency": 32342 + }, + { + "word": "rheumatism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "any disease marked by inflammation and pain in the joints, muscles, or fibrous tissue", + "example_sentence_english": "My grandmother suffers from rheumatism in her knees.", + "pos": "noun", + "word_frequency": 32343 + }, + { + "word": "rightwing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservative or reactionary in political outlook", + "example_sentence_english": "The rightwing party won the election by a narrow margin.", + "pos": "adjective", + "word_frequency": 32345 + }, + { + "word": "scintillate", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to sparkle; to emit flashes of light; to be brilliant and exciting", + "example_sentence_english": "Her wit and charm scintillated throughout the evening.", + "pos": "verb", + "word_frequency": 32353 + }, + { + "word": "sectoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a sector or sectors of an economy or society", + "example_sentence_english": "The government introduced new sectoral policies to boost specific industries.", + "pos": "adjective", + "word_frequency": 32354 + }, + { + "word": "selflessness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being unselfish; concern for others", + "example_sentence_english": "Her selflessness was evident in her dedication to charity work.", + "pos": "noun", + "word_frequency": 32355 + }, + { + "word": "shroom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mushroom (informal)", + "example_sentence_english": "He found a big shroom growing in the forest.", + "pos": "noun", + "word_frequency": 32361 + }, + { + "word": "silken", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made of or resembling silk", + "example_sentence_english": "She wore a dress of silken fabric.", + "pos": "adjective", + "word_frequency": 32362 + }, + { + "word": "slippage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act or process of slipping or falling", + "example_sentence_english": "There was some slippage in the schedule due to unforeseen delays.", + "pos": "noun", + "word_frequency": 32363 + }, + { + "word": "slowness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state or quality of being slow", + "example_sentence_english": "The slowness of the internet connection was frustrating.", + "pos": "noun", + "word_frequency": 32364 + }, + { + "word": "smattering", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small amount of something", + "example_sentence_english": "He only has a smattering of French.", + "pos": "noun", + "word_frequency": 32365 + }, + { + "word": "spongy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "like a sponge; soft and absorbent", + "example_sentence_english": "The cake had a light and spongy texture.", + "pos": "adjective", + "word_frequency": 32368 + }, + { + "word": "stewardess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a female flight attendant", + "example_sentence_english": "The stewardess served drinks to the passengers.", + "pos": "noun", + "word_frequency": 32370 + }, + { + "word": "storyboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sequence of drawings representing the shots planned for a film or television production", + "example_sentence_english": "The director reviewed the storyboard before filming began.", + "pos": "noun", + "word_frequency": 32371 + }, + { + "word": "straggler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person or animal that becomes separated from the group and falls behind", + "example_sentence_english": "The last straggler finally crossed the finish line.", + "pos": "noun", + "word_frequency": 32372 + }, + { + "word": "sweety", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a term of endearment; a sweet food item (UK)", + "example_sentence_english": "Come here, sweety, and give me a hug.", + "pos": "noun", + "word_frequency": 32377 + }, + { + "word": "taiga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the coniferous forests of subarctic lands, especially Siberia and North America", + "example_sentence_english": "The taiga biome is characterized by long, cold winters.", + "pos": "noun", + "word_frequency": 32378 + }, + { + "word": "tapioca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a starchy substance in the form of hard white grains, obtained from the cassava plant and used for puddings and other dishes", + "example_sentence_english": "She made a delicious tapioca pudding for dessert.", + "pos": "noun", + "word_frequency": 32380 + }, + { + "word": "taskforce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a unit or formation temporarily organized to carry out a specific mission", + "example_sentence_english": "The government formed a taskforce to address the housing crisis.", + "pos": "noun", + "word_frequency": 32381 + }, + { + "word": "telemedicine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the remote diagnosis and treatment of patients by means of telecommunications technology", + "example_sentence_english": "Telemedicine has become increasingly popular since the pandemic.", + "pos": "noun", + "word_frequency": 32382 + }, + { + "word": "tendril", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a slender threadlike appendage of a climbing plant, often growing in a spiral form, that stretches out and twines around any suitable support", + "example_sentence_english": "The plant's tendrils wrapped around the fence.", + "pos": "noun", + "word_frequency": 32383 + }, + { + "word": "ticklish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitive to tickling; requiring careful handling", + "example_sentence_english": "My feet are very ticklish.", + "pos": "adjective", + "word_frequency": 32388 + }, + { + "word": "timestamp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a digital record of the time of occurrence of a particular event or action", + "example_sentence_english": "The video has a timestamp showing when it was recorded.", + "pos": "noun", + "word_frequency": 32389 + }, + { + "word": "tulle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a soft, fine, netlike fabric, used for making veils and dresses", + "example_sentence_english": "The ballerina's skirt was made of delicate tulle.", + "pos": "noun", + "word_frequency": 32392 + }, + { + "word": "turtleneck", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a high, close-fitting, turned-over collar, or a garment with such a collar", + "example_sentence_english": "He wore a black turtleneck sweater.", + "pos": "noun", + "word_frequency": 32393 + }, + { + "word": "unconvinced", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not persuaded or certain", + "example_sentence_english": "Despite his arguments, I remained unconvinced.", + "pos": "adjective", + "word_frequency": 32400 + }, + { + "word": "underclass", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the lowest social stratum in a country or community", + "example_sentence_english": "The report highlighted the struggles of the underclass.", + "pos": "noun", + "word_frequency": 32401 + }, + { + "word": "unpopularity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being disliked or not admired", + "example_sentence_english": "The politician's unpopularity grew after the scandal.", + "pos": "noun", + "word_frequency": 32403 + }, + { + "word": "unquestionable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to dispute or question", + "example_sentence_english": "Her dedication to the project was unquestionable.", + "pos": "adjective", + "word_frequency": 32404 + }, + { + "word": "unreadable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difficult or impossible to read", + "example_sentence_english": "The old manuscript was almost unreadable.", + "pos": "adjective", + "word_frequency": 32405 + }, + { + "word": "variegated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhibiting different colors, especially as irregular patches or streaks", + "example_sentence_english": "The garden was filled with variegated plants.", + "pos": "adjective", + "word_frequency": 32407 + }, + { + "word": "vinaigrette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dressing made from oil, vinegar, and seasonings", + "example_sentence_english": "I prefer a simple vinaigrette on my salad.", + "pos": "noun", + "word_frequency": 32412 + }, + { + "word": "wallop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hit (someone or something) very hard", + "example_sentence_english": "He threatened to wallop anyone who touched his car.", + "pos": "verb", + "word_frequency": 32414 + }, + { + "word": "weeknight", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a night of a weekday", + "example_sentence_english": "We usually have a quiet dinner on a weeknight.", + "pos": "noun", + "word_frequency": 32417 + }, + { + "word": "weenie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a frankfurter or hot dog; also, a timid or ineffectual person", + "example_sentence_english": "He felt like a total weenie for being scared.", + "pos": "noun", + "word_frequency": 32418 + }, + { + "word": "whet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sharpen the blade of (a tool or weapon); excite or stimulate (someone's desire, interest, or appetite)", + "example_sentence_english": "The appetizer only served to whet my appetite.", + "pos": "verb", + "word_frequency": 32419 + }, + { + "word": "yesteryear", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the past, especially a time remembered with nostalgia", + "example_sentence_english": "The photographs brought back memories of yesteryear.", + "pos": "noun", + "word_frequency": 32427 + }, + { + "word": "airspeed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the speed of an aircraft relative to the air through which it is moving", + "example_sentence_english": "The pilot checked the airspeed before takeoff.", + "pos": "noun", + "word_frequency": 32437 + }, + { + "word": "amply", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sufficiently; more than enough", + "example_sentence_english": "The evidence amply supports his claim.", + "pos": "adverb", + "word_frequency": 32441 + }, + { + "word": "anglophone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who speaks English", + "example_sentence_english": "Canada has a large Anglophone population.", + "pos": "noun", + "word_frequency": 32442 + }, + { + "word": "anneal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to heat and then slowly cool (metal or glass) to toughen it", + "example_sentence_english": "The blacksmith will anneal the steel to reduce its brittleness.", + "pos": "verb", + "word_frequency": 32443 + }, + { + "word": "antecedent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thing or event that existed before or logically precedes another", + "example_sentence_english": "The pronoun 'it' has 'the book' as its antecedent.", + "pos": "noun", + "word_frequency": 32444 + }, + { + "word": "antiretroviral", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a drug used to treat retroviral infections, such as HIV", + "example_sentence_english": "Antiretroviral drugs have significantly improved the lives of HIV patients.", + "pos": "noun", + "word_frequency": 32445 + }, + { + "word": "antithetical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "directly opposed or contrasted; mutually incompatible", + "example_sentence_english": "Their views on education are completely antithetical.", + "pos": "adjective", + "word_frequency": 32446 + }, + { + "word": "aromatherapy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the use of aromatic plant extracts and essential oils for healing and cosmetic purposes", + "example_sentence_english": "She uses aromatherapy to relax after a long day.", + "pos": "noun", + "word_frequency": 32454 + }, + { + "word": "arranger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who arranges things, especially music", + "example_sentence_english": "The band's arranger created a new version of the song.", + "pos": "noun", + "word_frequency": 32455 + }, + { + "word": "aspirate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to draw (fluid) by suction from a body cavity; to pronounce with an audible breath", + "example_sentence_english": "The doctor had to aspirate fluid from the patient's lung.", + "pos": "verb", + "word_frequency": 32457 + }, + { + "word": "attestation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of bearing witness or giving testimony", + "example_sentence_english": "The document requires an attestation from a notary public.", + "pos": "noun", + "word_frequency": 32460 + }, + { + "word": "ayurveda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a traditional system of medicine with historical roots in the Indian subcontinent", + "example_sentence_english": "Ayurveda emphasizes a holistic approach to health.", + "pos": "noun", + "word_frequency": 32463 + }, + { + "word": "bevel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sloping surface or edge", + "example_sentence_english": "The carpenter cut a perfect bevel on the edge of the wood.", + "pos": "noun", + "word_frequency": 32471 + }, + { + "word": "birdsong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the musical calls and sounds made by birds", + "example_sentence_english": "We woke up to the sweet sound of birdsong.", + "pos": "noun", + "word_frequency": 32472 + }, + { + "word": "bizarro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strange or unconventional", + "example_sentence_english": "The plot of the movie was truly bizarro.", + "pos": "adjective", + "word_frequency": 32473 + }, + { + "word": "bodhi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the understanding possessed by a Buddha regarding the nature of things", + "example_sentence_english": "The Bodhi tree is sacred in Buddhism.", + "pos": "noun", + "word_frequency": 32476 + }, + { + "word": "brava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an exclamation of approval, especially for a female performer", + "example_sentence_english": "The audience shouted 'Brava!' after her solo.", + "pos": "noun", + "word_frequency": 32478 + }, + { + "word": "brogan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A heavy, stout shoe", + "example_sentence_english": "He wore sturdy brogans for the long hike.", + "pos": "noun", + "word_frequency": 32481 + }, + { + "word": "businessperson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person involved in business", + "example_sentence_english": "She is a successful businessperson with several ventures.", + "pos": "noun", + "word_frequency": 32483 + }, + { + "word": "buzzword", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A word or phrase, often jargon, that is fashionable at a particular time", + "example_sentence_english": "Synergy became a popular buzzword in the 1990s.", + "pos": "noun", + "word_frequency": 32484 + }, + { + "word": "cacophony", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A harsh, discordant mixture of sounds", + "example_sentence_english": "The orchestra's warm-up created a cacophony of noise.", + "pos": "noun", + "word_frequency": 32485 + }, + { + "word": "capitalistic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Relating to capitalism", + "example_sentence_english": "The country has a largely capitalistic economy.", + "pos": "adjective", + "word_frequency": 32487 + }, + { + "word": "castaway", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who has been shipwrecked and stranded in an isolated place", + "example_sentence_english": "The novel tells the story of a lone castaway on a deserted island.", + "pos": "noun", + "word_frequency": 32491 + }, + { + "word": "cenotaph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A monument to someone buried elsewhere, especially one commemorating people who died in a war", + "example_sentence_english": "The annual Remembrance Day ceremony is held at the cenotaph.", + "pos": "noun", + "word_frequency": 32495 + }, + { + "word": "chafe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To make (a part of the body) sore by rubbing; to feel irritation or impatience", + "example_sentence_english": "The rough fabric began to chafe her skin.", + "pos": "verb", + "word_frequency": 32496 + }, + { + "word": "circumscribe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To restrict (something) within limits; to draw a figure around another, touching it at points", + "example_sentence_english": "The new rules will circumscribe the power of the committee.", + "pos": "verb", + "word_frequency": 32502 + }, + { + "word": "clack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A sharp, abrupt sound, especially one made by two hard objects striking together", + "example_sentence_english": "The old typewriter made a satisfying clack with every key press.", + "pos": "noun", + "word_frequency": 32504 + }, + { + "word": "clicker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A device that makes a clicking sound, often used for training animals or as a remote control", + "example_sentence_english": "He used a clicker to train his dog to sit.", + "pos": "noun", + "word_frequency": 32505 + }, + { + "word": "collation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The action of collecting and combining (texts, information, or data)", + "example_sentence_english": "The collation of data from various sources took several weeks.", + "pos": "noun", + "word_frequency": 32506 + }, + { + "word": "coming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An arrival or approach", + "example_sentence_english": "The coming of the new year brings hope.", + "pos": "noun", + "word_frequency": 32507 + }, + { + "word": "commandeer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To officially take possession or control of (something), especially for military purposes", + "example_sentence_english": "The police had to commandeer a civilian's car to pursue the suspect.", + "pos": "verb", + "word_frequency": 32508 + }, + { + "word": "commentate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To provide a commentary on an event or broadcast", + "example_sentence_english": "He was asked to commentate on the football match.", + "pos": "verb", + "word_frequency": 32509 + }, + { + "word": "confidentially", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a way that is private or secret", + "example_sentence_english": "He spoke to me confidentially about his concerns.", + "pos": "adverb", + "word_frequency": 32510 + }, + { + "word": "confucianism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A system of ethical, philosophical, and religious thought developed by Confucius", + "example_sentence_english": "Confucianism has deeply influenced Chinese culture and society.", + "pos": "noun", + "word_frequency": 32511 + }, + { + "word": "connectedness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The state of being connected or related", + "example_sentence_english": "Many people seek a sense of connectedness with nature.", + "pos": "noun", + "word_frequency": 32512 + }, + { + "word": "conscript", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who is compelled to serve in the armed forces", + "example_sentence_english": "The army relied heavily on conscripts during the war.", + "pos": "noun", + "word_frequency": 32513 + }, + { + "word": "conservator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person responsible for the repair and preservation of works of art, buildings, or other things", + "example_sentence_english": "The museum hired a conservator to restore the ancient tapestry.", + "pos": "noun", + "word_frequency": 32514 + }, + { + "word": "cooperatively", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a way that involves cooperation", + "example_sentence_english": "The team worked cooperatively to finish the project on time.", + "pos": "adverb", + "word_frequency": 32515 + }, + { + "word": "covey", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A small party of birds, especially partridges", + "example_sentence_english": "A covey of quail suddenly flew out from the bushes.", + "pos": "noun", + "word_frequency": 32518 + }, + { + "word": "crimp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A crease or series of creases in something, especially hair or fabric", + "example_sentence_english": "She put a crimp in her hair for the party.", + "pos": "noun", + "word_frequency": 32519 + }, + { + "word": "cruces", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crucial points", + "example_sentence_english": "The cruces of the argument were difficult to grasp.", + "pos": "noun", + "word_frequency": 32520 + }, + { + "word": "customarily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "usually; traditionally", + "example_sentence_english": "They customarily meet for coffee on Tuesdays.", + "pos": "adverb", + "word_frequency": 32522 + }, + { + "word": "deactivation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making something inactive", + "example_sentence_english": "The deactivation of the alarm system was successful.", + "pos": "noun", + "word_frequency": 32526 + }, + { + "word": "demonize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to portray as evil or threatening", + "example_sentence_english": "It's easy to demonize those we don't understand.", + "pos": "verb", + "word_frequency": 32528 + }, + { + "word": "denunciation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public condemnation", + "example_sentence_english": "His denunciation of the policy was widely reported.", + "pos": "noun", + "word_frequency": 32530 + }, + { + "word": "dismount", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get off (a horse, bicycle, etc.)", + "example_sentence_english": "The rider prepared to dismount from the horse.", + "pos": "verb", + "word_frequency": 32533 + }, + { + "word": "doppelganger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an apparition or double of a living person", + "example_sentence_english": "She met her doppelganger at the conference.", + "pos": "noun", + "word_frequency": 32537 + }, + { + "word": "drawbridge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a bridge that can be raised or lowered", + "example_sentence_english": "The castle's drawbridge was lowered for visitors.", + "pos": "noun", + "word_frequency": 32539 + }, + { + "word": "drudge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to do dull, laborious, or menial work", + "example_sentence_english": "He had to drudge through piles of paperwork.", + "pos": "verb", + "word_frequency": 32540 + }, + { + "word": "décor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the style and arrangement of decoration", + "example_sentence_english": "The restaurant had a modern décor.", + "pos": "noun", + "word_frequency": 32542 + }, + { + "word": "effector", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organ or cell that acts in response to a stimulus; something that produces an effect", + "example_sentence_english": "The muscle acts as an effector in this reflex arc.", + "pos": "noun", + "word_frequency": 32545 + }, + { + "word": "encapsulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of enclosing something in a capsule; the bundling of data with the methods that operate on that data", + "example_sentence_english": "Data encapsulation is a key principle of object-oriented programming.", + "pos": "noun", + "word_frequency": 32547 + }, + { + "word": "enchantress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who uses magic or charms", + "example_sentence_english": "The story featured a powerful enchantress.", + "pos": "noun", + "word_frequency": 32548 + }, + { + "word": "etiology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the cause, set of causes, or manner of causation of a disease or condition", + "example_sentence_english": "The etiology of the disease is still unknown.", + "pos": "noun", + "word_frequency": 32553 + }, + { + "word": "expediency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being convenient and practical despite being improper or immoral; suitability", + "example_sentence_english": "He acted out of political expediency rather than principle.", + "pos": "noun", + "word_frequency": 32555 + }, + { + "word": "exude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to discharge slowly and steadily; to display (an emotion or quality) strongly and openly", + "example_sentence_english": "The plant began to exude a sticky sap.", + "pos": "verb", + "word_frequency": 32556 + }, + { + "word": "eyesore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a thing that is unpleasant or ugly to look at", + "example_sentence_english": "That abandoned building is a real eyesore.", + "pos": "noun", + "word_frequency": 32557 + }, + { + "word": "faceoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a confrontation or dispute; (in sports) a method of starting play", + "example_sentence_english": "The two teams prepared for the faceoff.", + "pos": "noun", + "word_frequency": 32558 + }, + { + "word": "facile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appearing neat and comprehensive only by ignoring the true complexities of an issue; easily achieved", + "example_sentence_english": "He offered a facile solution to a complex problem.", + "pos": "adjective", + "word_frequency": 32559 + }, + { + "word": "fatherless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without a father", + "example_sentence_english": "The child grew up fatherless after the war.", + "pos": "adjective", + "word_frequency": 32560 + }, + { + "word": "feely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emotional; sensitive to touch", + "example_sentence_english": "She's a very feely person, always hugging everyone.", + "pos": "adjective", + "word_frequency": 32562 + }, + { + "word": "fittingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriately; suitably", + "example_sentence_english": "Fittingly, the celebration was held in the old town square.", + "pos": "adverb", + "word_frequency": 32564 + }, + { + "word": "foreshore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the part of a shore between high and low water marks", + "example_sentence_english": "We walked along the foreshore, looking for shells.", + "pos": "noun", + "word_frequency": 32566 + }, + { + "word": "geneticist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a scientist who studies genetics", + "example_sentence_english": "The geneticist presented her findings on DNA sequencing.", + "pos": "noun", + "word_frequency": 32574 + }, + { + "word": "gizmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small mechanical or electronic device or gadget", + "example_sentence_english": "He loves playing with all the latest electronic gizmos.", + "pos": "noun", + "word_frequency": 32576 + }, + { + "word": "glycine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a simple amino acid", + "example_sentence_english": "Glycine is one of the simplest amino acids.", + "pos": "noun", + "word_frequency": 32577 + }, + { + "word": "goop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sticky, slimy, or messy substance", + "example_sentence_english": "The baby got goop all over his face.", + "pos": "noun", + "word_frequency": 32579 + }, + { + "word": "grimace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make a twisted expression on one's face", + "example_sentence_english": "He couldn't help but grimace at the bitter taste.", + "pos": "verb", + "word_frequency": 32582 + }, + { + "word": "groggy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dazed, weak, or unsteady, especially from illness, sleep, or a blow", + "example_sentence_english": "I felt groggy after only three hours of sleep.", + "pos": "adjective", + "word_frequency": 32583 + }, + { + "word": "guano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the excrement of seabirds and bats, used as fertilizer", + "example_sentence_english": "The island was rich in guano, a valuable fertilizer.", + "pos": "noun", + "word_frequency": 32585 + }, + { + "word": "guava", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tropical fruit", + "example_sentence_english": "She made a delicious jam from fresh guava.", + "pos": "noun", + "word_frequency": 32586 + }, + { + "word": "guinean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relating to Guinea or its people", + "example_sentence_english": "The Guinean delegation arrived for the summit.", + "pos": "adjective", + "word_frequency": 32587 + }, + { + "word": "hematoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a solid swelling of clotted blood within the tissues", + "example_sentence_english": "The doctor examined the large hematoma on his leg.", + "pos": "noun", + "word_frequency": 32598 + }, + { + "word": "histology", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of the microscopic structure of tissues", + "example_sentence_english": "She specialized in histology, examining tissue samples under a microscope.", + "pos": "noun", + "word_frequency": 32601 + }, + { + "word": "homogeneity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or state of being all the same or all of the same kind", + "example_sentence_english": "The homogeneity of the mixture was crucial for the experiment's success.", + "pos": "noun", + "word_frequency": 32603 + }, + { + "word": "huntress", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a woman who hunts", + "example_sentence_english": "Artemis was the Greek goddess of the hunt and a skilled huntress.", + "pos": "noun", + "word_frequency": 32611 + }, + { + "word": "idiopathic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to or denoting any disease or condition which arises spontaneously or for which the cause is unknown", + "example_sentence_english": "The doctor diagnosed her with idiopathic pulmonary fibrosis, meaning the cause was unknown.", + "pos": "adjective", + "word_frequency": 32614 + }, + { + "word": "implacable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be placated; relentless", + "example_sentence_english": "The implacable enemy continued their pursuit without mercy.", + "pos": "adjective", + "word_frequency": 32618 + }, + { + "word": "inclusiveness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the policy or practice of providing equal access to opportunities and resources for people who might otherwise be excluded or marginalized", + "example_sentence_english": "The company strives for greater inclusiveness in its hiring practices.", + "pos": "noun", + "word_frequency": 32619 + }, + { + "word": "indemnify", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensate (someone) for harm or loss; secure (someone) against legal responsibility for their actions", + "example_sentence_english": "The insurance policy will indemnify you against any losses.", + "pos": "verb", + "word_frequency": 32620 + }, + { + "word": "indiscretion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an action or remark that is indiscreet or lacks good judgment", + "example_sentence_english": "His indiscretion cost him his job.", + "pos": "noun", + "word_frequency": 32621 + }, + { + "word": "infirm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not physically or mentally strong, especially through age or illness", + "example_sentence_english": "The old man was too infirm to walk without assistance.", + "pos": "adjective", + "word_frequency": 32622 + }, + { + "word": "intermodal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving two or more different modes of transport", + "example_sentence_english": "The company specializes in intermodal freight transport, using both rail and truck.", + "pos": "adjective", + "word_frequency": 32624 + }, + { + "word": "intraday", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurring within the same day", + "example_sentence_english": "Intraday trading involves buying and selling securities within the same trading day.", + "pos": "adjective", + "word_frequency": 32625 + }, + { + "word": "jailer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who has charge of a jail or of the prisoners in it", + "example_sentence_english": "The jailer locked the cell door securely.", + "pos": "noun", + "word_frequency": 32630 + }, + { + "word": "joist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a length of timber or steel supporting part of the structure of a building, typically arranged in parallel series to support a floor or ceiling", + "example_sentence_english": "The floor joists were rotten and needed to be replaced.", + "pos": "noun", + "word_frequency": 32633 + }, + { + "word": "kerb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curb (edge of a pavement)", + "example_sentence_english": "The car scraped against the kerb as it parked.", + "pos": "noun", + "word_frequency": 32640 + }, + { + "word": "lengthwise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "along the length", + "example_sentence_english": "Cut the fabric lengthwise down the middle.", + "pos": "adverb", + "word_frequency": 32650 + }, + { + "word": "linoleum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of floor covering", + "example_sentence_english": "The kitchen floor was covered with old linoleum.", + "pos": "noun", + "word_frequency": 32653 + }, + { + "word": "listeria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of bacteria that can cause food poisoning", + "example_sentence_english": "Pregnant women are advised to avoid certain foods due to the risk of listeria.", + "pos": "noun", + "word_frequency": 32654 + }, + { + "word": "lyre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a stringed musical instrument", + "example_sentence_english": "Ancient Greek poets often played the lyre while reciting their verses.", + "pos": "noun", + "word_frequency": 32658 + }, + { + "word": "magnanimous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "generous and forgiving", + "example_sentence_english": "The magnanimous king pardoned his enemies.", + "pos": "adjective", + "word_frequency": 32662 + }, + { + "word": "maniacal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized by madness; wild or frantic", + "example_sentence_english": "He let out a maniacal laugh that sent shivers down my spine.", + "pos": "adjective", + "word_frequency": 32664 + }, + { + "word": "materialist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who believes that only material things exist; a person who is excessively concerned with material possessions", + "example_sentence_english": "He was criticized for being a materialist, always focused on money and possessions.", + "pos": "noun", + "word_frequency": 32668 + }, + { + "word": "metabolize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to process substances in the body", + "example_sentence_english": "The body metabolizes food to produce energy.", + "pos": "verb", + "word_frequency": 32674 + }, + { + "word": "microgram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one millionth of a gram", + "example_sentence_english": "The dosage was only a few micrograms.", + "pos": "noun", + "word_frequency": 32678 + }, + { + "word": "mie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of noodle", + "example_sentence_english": "I love eating mie with my stir-fry.", + "pos": "noun", + "word_frequency": 32680 + }, + { + "word": "miniscule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely small", + "example_sentence_english": "The chances of success were miniscule.", + "pos": "adjective", + "word_frequency": 32681 + }, + { + "word": "miscalculation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wrong calculation or judgment", + "example_sentence_english": "The project failed due to a serious miscalculation in the budget.", + "pos": "noun", + "word_frequency": 32685 + }, + { + "word": "misdirection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of misleading someone", + "example_sentence_english": "The magician used misdirection to distract the audience.", + "pos": "noun", + "word_frequency": 32686 + }, + { + "word": "modernise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make modern", + "example_sentence_english": "They plan to modernise the old factory.", + "pos": "verb", + "word_frequency": 32689 + }, + { + "word": "multicolored", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having many colors", + "example_sentence_english": "The parrot had beautiful multicolored feathers.", + "pos": "adjective", + "word_frequency": 32694 + }, + { + "word": "multifamily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designed for multiple families", + "example_sentence_english": "They are building a new multifamily housing complex.", + "pos": "adjective", + "word_frequency": 32695 + }, + { + "word": "mystify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse or bewilder", + "example_sentence_english": "The sudden disappearance of the artifact continued to mystify experts.", + "pos": "verb", + "word_frequency": 32696 + }, + { + "word": "narc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a narcotics officer or informer", + "example_sentence_english": "Be careful what you say, he might be a narc.", + "pos": "noun", + "word_frequency": 32697 + }, + { + "word": "necromancer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who practices necromancy; a sorcerer", + "example_sentence_english": "The hero had to defeat the evil necromancer.", + "pos": "noun", + "word_frequency": 32702 + }, + { + "word": "neurobiology", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the study of the nervous system", + "example_sentence_english": "She is pursuing a degree in neurobiology.", + "pos": "noun", + "word_frequency": 32704 + }, + { + "word": "nitride", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a compound of nitrogen with a more electropositive element", + "example_sentence_english": "Silicon nitride is a ceramic material used in high-temperature applications.", + "pos": "noun", + "word_frequency": 32705 + }, + { + "word": "norepinephrine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a hormone and neurotransmitter", + "example_sentence_english": "Norepinephrine plays a role in the body's 'fight or flight' response.", + "pos": "noun", + "word_frequency": 32707 + }, + { + "word": "notional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existing only as a theory or idea", + "example_sentence_english": "The company made a notional profit, but it wasn't real money yet.", + "pos": "adjective", + "word_frequency": 32708 + }, + { + "word": "nsaid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Nonsteroidal Anti-Inflammatory Drug", + "example_sentence_english": "Many people take an NSAID for pain relief.", + "pos": "noun", + "word_frequency": 32709 + }, + { + "word": "obverse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the front or principal surface of a coin or medal; the opposite or counterpart of a fact or truth", + "example_sentence_english": "The obverse of the coin showed the queen's profile.", + "pos": "noun", + "word_frequency": 32712 + }, + { + "word": "offing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the more distant part of the sea visible from the shore; in the near future", + "example_sentence_english": "A new opportunity is in the offing.", + "pos": "noun", + "word_frequency": 32714 + }, + { + "word": "offstage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not on the stage; out of public view", + "example_sentence_english": "The actor waited offstage for his cue.", + "pos": "adverb", + "word_frequency": 32715 + }, + { + "word": "palatial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resembling a palace in size or splendor", + "example_sentence_english": "They lived in a palatial mansion with many rooms.", + "pos": "adjective", + "word_frequency": 32719 + }, + { + "word": "parley", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discussion, negotiation", + "example_sentence_english": "The two sides agreed to hold a parley to discuss the terms of peace.", + "pos": "noun", + "word_frequency": 32721 + }, + { + "word": "paucity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scarcity, lack", + "example_sentence_english": "There was a paucity of evidence to support the claim.", + "pos": "noun", + "word_frequency": 32723 + }, + { + "word": "peculiarly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strangely, unusually", + "example_sentence_english": "He behaved peculiarly after the incident, making everyone suspicious.", + "pos": "adverb", + "word_frequency": 32725 + }, + { + "word": "peddler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hawker, street vendor", + "example_sentence_english": "A peddler was selling trinkets by the roadside.", + "pos": "noun", + "word_frequency": 32726 + }, + { + "word": "pelagic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the open sea", + "example_sentence_english": "Many large fish are found in the pelagic zone of the ocean.", + "pos": "adjective", + "word_frequency": 32727 + }, + { + "word": "phenomenally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exceptionally, remarkably", + "example_sentence_english": "The new product sold phenomenally well in its first month.", + "pos": "adverb", + "word_frequency": 32731 + }, + { + "word": "phonic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sound unit, a method of teaching reading", + "example_sentence_english": "Children learn to read using phonics to understand letter sounds.", + "pos": "noun", + "word_frequency": 32732 + }, + { + "word": "physiologically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a physiological manner", + "example_sentence_english": "The body reacts physiologically to stress by releasing hormones.", + "pos": "adverb", + "word_frequency": 32734 + }, + { + "word": "pithy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concise and forceful", + "example_sentence_english": "His speech was pithy and to the point, leaving a strong impression.", + "pos": "adjective", + "word_frequency": 32735 + }, + { + "word": "pittance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a very small amount of money", + "example_sentence_english": "He worked long hours for a mere pittance, barely enough to live on.", + "pos": "noun", + "word_frequency": 32736 + }, + { + "word": "placental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the placenta", + "example_sentence_english": "Humans are placental mammals, meaning the fetus develops inside the mother.", + "pos": "adjective", + "word_frequency": 32737 + }, + { + "word": "plop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a soft, wet sound", + "example_sentence_english": "We heard the plop of a pebble as it fell into the water.", + "pos": "noun", + "word_frequency": 32739 + }, + { + "word": "portobello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, edible mushroom", + "example_sentence_english": "I grilled a portobello mushroom for dinner last night.", + "pos": "noun", + "word_frequency": 32740 + }, + { + "word": "prance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk with exaggerated movements", + "example_sentence_english": "The horse began to prance excitedly before the race.", + "pos": "verb", + "word_frequency": 32741 + }, + { + "word": "preclinical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "before clinical trials", + "example_sentence_english": "The drug is currently in preclinical development, undergoing lab tests.", + "pos": "adjective", + "word_frequency": 32742 + }, + { + "word": "pullover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sweater that is pulled over the head", + "example_sentence_english": "He wore a warm wool pullover to protect himself from the cold.", + "pos": "noun", + "word_frequency": 32746 + }, + { + "word": "raster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a rectangular pattern of lines", + "example_sentence_english": "The image was displayed as a raster graphic, composed of pixels.", + "pos": "noun", + "word_frequency": 32751 + }, + { + "word": "reassessment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a new evaluation", + "example_sentence_english": "The project requires a complete reassessment of its goals and budget.", + "pos": "noun", + "word_frequency": 32754 + }, + { + "word": "reconfigure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to configure again or differently", + "example_sentence_english": "We need to reconfigure the network settings for better performance.", + "pos": "verb", + "word_frequency": 32755 + }, + { + "word": "registrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who registers", + "example_sentence_english": "Each registrant received a welcome packet at the conference.", + "pos": "noun", + "word_frequency": 32756 + }, + { + "word": "reprocess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to process again", + "example_sentence_english": "The factory will reprocess the waste materials to extract valuable resources.", + "pos": "verb", + "word_frequency": 32758 + }, + { + "word": "repulsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strong dislike; force pushing apart", + "example_sentence_english": "He felt a strong repulsion towards the idea of eating insects.", + "pos": "noun", + "word_frequency": 32759 + }, + { + "word": "resistive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having resistance; opposing", + "example_sentence_english": "The material is highly resistive to heat.", + "pos": "adjective", + "word_frequency": 32760 + }, + { + "word": "resurgent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rising again; reviving", + "example_sentence_english": "The resurgent economy brought new jobs.", + "pos": "adjective", + "word_frequency": 32761 + }, + { + "word": "rubbery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling rubber in texture or elasticity", + "example_sentence_english": "The old elastic band felt rubbery and stretched easily.", + "pos": "adjective", + "word_frequency": 32769 + }, + { + "word": "sashimi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thinly sliced raw fish", + "example_sentence_english": "We ordered a plate of fresh sashimi.", + "pos": "noun", + "word_frequency": 32772 + }, + { + "word": "scald", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burn with hot liquid or steam", + "example_sentence_english": "Be careful not to scald yourself with the boiling water.", + "pos": "verb", + "word_frequency": 32775 + }, + { + "word": "sceptre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ornamented staff carried by rulers", + "example_sentence_english": "The queen held the sceptre as a symbol of her authority.", + "pos": "noun", + "word_frequency": 32776 + }, + { + "word": "seditious", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "inciting or causing people to rebel against authority", + "example_sentence_english": "The government arrested him for making seditious remarks.", + "pos": "adjective", + "word_frequency": 32779 + }, + { + "word": "senor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a Spanish title of respect for a man, equivalent to Mr.", + "example_sentence_english": "\"Excuse me, Senor,\" she said, trying to get his attention.", + "pos": "noun", + "word_frequency": 32782 + }, + { + "word": "shortsighted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking imagination or foresight; nearsighted", + "example_sentence_english": "His shortsighted decision led to long-term problems.", + "pos": "adjective", + "word_frequency": 32787 + }, + { + "word": "sinker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a weight used to sink a fishing line or net; a type of baseball pitch", + "example_sentence_english": "He attached a lead sinker to his fishing line.", + "pos": "noun", + "word_frequency": 32790 + }, + { + "word": "smartass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is irritating because they think they know everything", + "example_sentence_english": "Don't be such a smartass and just answer the question.", + "pos": "noun", + "word_frequency": 32792 + }, + { + "word": "starburst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden, intense burst of light or energy; a type of candy", + "example_sentence_english": "The fireworks created a beautiful starburst in the night sky.", + "pos": "noun", + "word_frequency": 32799 + }, + { + "word": "statist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an advocate of statism", + "example_sentence_english": "The political debate often pitted the statist against the libertarian.", + "pos": "noun", + "word_frequency": 32800 + }, + { + "word": "statuette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small statue", + "example_sentence_english": "She placed the delicate statuette on the mantelpiece.", + "pos": "noun", + "word_frequency": 32801 + }, + { + "word": "storeroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a room for storing things", + "example_sentence_english": "We keep all our old furniture in the storeroom.", + "pos": "noun", + "word_frequency": 32802 + }, + { + "word": "strum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to play a stringed instrument by sweeping the fingers or a plectrum across the strings", + "example_sentence_english": "He likes to strum his guitar by the campfire.", + "pos": "verb", + "word_frequency": 32803 + }, + { + "word": "sucky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very bad or unpleasant", + "example_sentence_english": "That was a really sucky movie.", + "pos": "adjective", + "word_frequency": 32806 + }, + { + "word": "swig", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large gulp of a drink", + "example_sentence_english": "He took a big swig of water from the bottle.", + "pos": "noun", + "word_frequency": 32808 + }, + { + "word": "tash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mustache (informal, British English)", + "example_sentence_english": "He grew a big bushy tash for Movember.", + "pos": "noun", + "word_frequency": 32809 + }, + { + "word": "taxidermy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the art of preparing, stuffing, and mounting the skins of animals", + "example_sentence_english": "The museum had an impressive collection of taxidermy specimens.", + "pos": "noun", + "word_frequency": 32811 + }, + { + "word": "tenner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a ten-pound or ten-dollar note", + "example_sentence_english": "Can you lend me a tenner until payday?", + "pos": "noun", + "word_frequency": 32812 + }, + { + "word": "thankless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not likely to be appreciated or rewarded", + "example_sentence_english": "Being a teacher can sometimes be a thankless job.", + "pos": "adjective", + "word_frequency": 32814 + }, + { + "word": "tricep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large muscle on the back of the upper arm", + "example_sentence_english": "He felt a strain in his tricep after lifting weights.", + "pos": "noun", + "word_frequency": 32821 + }, + { + "word": "unapologetically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that shows no regret or apology", + "example_sentence_english": "She stated her opinion unapologetically.", + "pos": "adverb", + "word_frequency": 32826 + }, + { + "word": "unappealing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not attractive or interesting", + "example_sentence_english": "The food looked unappealing.", + "pos": "adjective", + "word_frequency": 32827 + }, + { + "word": "uncivilized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having a high level of social or cultural development", + "example_sentence_english": "Some ancient cultures were considered uncivilized by their contemporaries.", + "pos": "adjective", + "word_frequency": 32828 + }, + { + "word": "undoubted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not doubted or questioned; certain", + "example_sentence_english": "His talent was undoubted.", + "pos": "adjective", + "word_frequency": 32829 + }, + { + "word": "unpatriotic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not showing or feeling patriotism", + "example_sentence_english": "Some people considered his actions unpatriotic.", + "pos": "adjective", + "word_frequency": 32830 + }, + { + "word": "unrepentant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing no regret for one's wrongdoings", + "example_sentence_english": "He remained unrepentant about his decision.", + "pos": "adjective", + "word_frequency": 32831 + }, + { + "word": "unsee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to forget or erase from one's memory something seen, especially something unpleasant", + "example_sentence_english": "I wish I could unsee that terrible image.", + "pos": "verb", + "word_frequency": 32832 + }, + { + "word": "untidy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not neat or orderly", + "example_sentence_english": "Her room was always untidy.", + "pos": "adjective", + "word_frequency": 32833 + }, + { + "word": "useable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be used", + "example_sentence_english": "The old computer is still useable.", + "pos": "adjective", + "word_frequency": 32835 + }, + { + "word": "veep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a vice president (informal)", + "example_sentence_english": "The veep gave a speech at the conference.", + "pos": "noun", + "word_frequency": 32837 + }, + { + "word": "velodrome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a track for cycling races", + "example_sentence_english": "The cyclists trained at the velodrome every morning.", + "pos": "noun", + "word_frequency": 32838 + }, + { + "word": "viewable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be seen", + "example_sentence_english": "The document is now viewable online.", + "pos": "adjective", + "word_frequency": 32840 + }, + { + "word": "washable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able to be washed", + "example_sentence_english": "This fabric is washable, so it's easy to care for.", + "pos": "adjective", + "word_frequency": 32842 + }, + { + "word": "washy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pale or weak in color; lacking strength", + "example_sentence_english": "The painting had a rather washy, indistinct quality.", + "pos": "adjective", + "word_frequency": 32843 + }, + { + "word": "waveguide", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a structure that guides waves", + "example_sentence_english": "Fiber optics use a type of waveguide to transmit light signals.", + "pos": "noun", + "word_frequency": 32845 + }, + { + "word": "weaponize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to adapt for use as a weapon", + "example_sentence_english": "The country was accused of trying to weaponize the virus.", + "pos": "verb", + "word_frequency": 32846 + }, + { + "word": "wetness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being wet", + "example_sentence_english": "The wetness of the grass soaked his shoes.", + "pos": "noun", + "word_frequency": 32849 + }, + { + "word": "wince", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a slight involuntary grimace or shrinking movement", + "example_sentence_english": "He gave a slight wince as the needle went in.", + "pos": "noun", + "word_frequency": 32852 + }, + { + "word": "winemaking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of making wine", + "example_sentence_english": "Winemaking is a complex art and science.", + "pos": "noun", + "word_frequency": 32853 + }, + { + "word": "womanizer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a man who habitually flirts with or pursues many women", + "example_sentence_english": "He had a reputation as a notorious womanizer.", + "pos": "noun", + "word_frequency": 32856 + }, + { + "word": "woodbine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "honeysuckle", + "example_sentence_english": "The sweet scent of woodbine filled the evening air.", + "pos": "noun", + "word_frequency": 32857 + }, + { + "word": "wrecker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that destroys or causes ruin", + "example_sentence_english": "The storm was a wrecker of homes along the coast.", + "pos": "noun", + "word_frequency": 32858 + }, + { + "word": "acetylcholine", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a neurotransmitter", + "example_sentence_english": "Acetylcholine plays a key role in muscle contraction.", + "pos": "noun", + "word_frequency": 32869 + }, + { + "word": "adulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive admiration or praise", + "example_sentence_english": "The pop star received adulation from her fans.", + "pos": "noun", + "word_frequency": 32871 + }, + { + "word": "adverb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a word that modifies a verb, adjective, or other adverb", + "example_sentence_english": "The word 'quickly' is an adverb.", + "pos": "noun", + "word_frequency": 32872 + }, + { + "word": "aforesaid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mentioned before", + "example_sentence_english": "The aforesaid terms and conditions apply.", + "pos": "adjective", + "word_frequency": 32873 + }, + { + "word": "amniotic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the amnion or amniotic fluid", + "example_sentence_english": "The baby was surrounded by amniotic fluid.", + "pos": "adjective", + "word_frequency": 32878 + }, + { + "word": "antiwar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposed to war", + "example_sentence_english": "She participated in an antiwar protest.", + "pos": "adjective", + "word_frequency": 32879 + }, + { + "word": "aphasia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "loss of ability to understand or express speech", + "example_sentence_english": "After the stroke, he suffered from aphasia, making communication difficult.", + "pos": "noun", + "word_frequency": 32880 + }, + { + "word": "aphrodisiac", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a food, drink, or drug that stimulates sexual desire", + "example_sentence_english": "Oysters are sometimes considered an aphrodisiac.", + "pos": "noun", + "word_frequency": 32881 + }, + { + "word": "aristotelian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Aristotle or his philosophy", + "example_sentence_english": "His logic was based on Aristotelian principles.", + "pos": "adjective", + "word_frequency": 32883 + }, + { + "word": "astrophysical", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to astrophysics", + "example_sentence_english": "They conducted an astrophysical study of distant galaxies.", + "pos": "adjective", + "word_frequency": 32886 + }, + { + "word": "asunder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "into pieces", + "example_sentence_english": "The old book fell asunder in his hands.", + "pos": "adverb", + "word_frequency": 32887 + }, + { + "word": "backstab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to betray someone", + "example_sentence_english": "I can't believe he would backstab his own friend.", + "pos": "verb", + "word_frequency": 32891 + }, + { + "word": "backstop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a safeguard or fallback arrangement", + "example_sentence_english": "The agreement included a backstop to prevent a hard border.", + "pos": "noun", + "word_frequency": 32892 + }, + { + "word": "bimonthly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurring every two months or twice a month", + "example_sentence_english": "The magazine is published bimonthly.", + "pos": "adjective", + "word_frequency": 32897 + }, + { + "word": "binocular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving both eyes", + "example_sentence_english": "Humans have binocular vision, which helps with depth perception.", + "pos": "adjective", + "word_frequency": 32898 + }, + { + "word": "bioethics", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ethics of medical and biological research", + "example_sentence_english": "The committee discussed the bioethics of genetic engineering.", + "pos": "noun", + "word_frequency": 32899 + }, + { + "word": "birdy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small bird (often used endearingly or by children)", + "example_sentence_english": "Look at the little birdy singing in the tree.", + "pos": "noun", + "word_frequency": 32900 + }, + { + "word": "biter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person or animal that bites", + "example_sentence_english": "Be careful, that dog is a known biter.", + "pos": "noun", + "word_frequency": 32903 + }, + { + "word": "bolus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a small rounded mass of a substance, especially of chewed food", + "example_sentence_english": "The patient received a bolus of medication intravenously.", + "pos": "noun", + "word_frequency": 32907 + }, + { + "word": "briskly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an active, quick, or energetic way", + "example_sentence_english": "She walked briskly to catch the bus.", + "pos": "adverb", + "word_frequency": 32911 + }, + { + "word": "bruiser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, strong person, especially one who is aggressive", + "example_sentence_english": "He was a big bruiser, but surprisingly gentle.", + "pos": "noun", + "word_frequency": 32912 + }, + { + "word": "bubonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or characterized by buboes (swollen lymph nodes)", + "example_sentence_english": "The Black Death was caused by the bubonic plague.", + "pos": "adjective", + "word_frequency": 32914 + }, + { + "word": "bursa", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a fluid-filled sac that functions as a cushion between bones, tendons, and muscles", + "example_sentence_english": "Inflammation of the bursa can cause pain in the shoulder.", + "pos": "noun", + "word_frequency": 32918 + }, + { + "word": "caddie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who carries a golfer's clubs", + "example_sentence_english": "The golfer thanked his caddie after the game.", + "pos": "noun", + "word_frequency": 32922 + }, + { + "word": "cellophane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a transparent paper-like material", + "example_sentence_english": "She wrapped the gift in clear cellophane.", + "pos": "noun", + "word_frequency": 32925 + }, + { + "word": "choker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tight-fitting necklace", + "example_sentence_english": "She wore a velvet choker around her neck.", + "pos": "noun", + "word_frequency": 32930 + }, + { + "word": "chrysalis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a pupa of a butterfly or moth", + "example_sentence_english": "The caterpillar transformed into a chrysalis.", + "pos": "noun", + "word_frequency": 32931 + }, + { + "word": "clamour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a loud and confused noise, especially that of people shouting", + "example_sentence_english": "The clamour of the crowd grew louder.", + "pos": "noun", + "word_frequency": 32933 + }, + { + "word": "clumsily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in an awkward or careless way", + "example_sentence_english": "He clumsily dropped the stack of plates.", + "pos": "adverb", + "word_frequency": 32936 + }, + { + "word": "codename", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a secret name for a person, place, or thing", + "example_sentence_english": "The new project was given the codename 'Phoenix'.", + "pos": "noun", + "word_frequency": 32938 + }, + { + "word": "cofounder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who founds something with another or others", + "example_sentence_english": "She is the cofounder of a successful tech startup.", + "pos": "noun", + "word_frequency": 32939 + }, + { + "word": "compressive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving compression", + "example_sentence_english": "The bridge was designed to withstand high compressive forces.", + "pos": "adjective", + "word_frequency": 32940 + }, + { + "word": "convalescent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recovering from an illness or operation", + "example_sentence_english": "The patient was moved to the convalescent ward.", + "pos": "adjective", + "word_frequency": 32941 + }, + { + "word": "costal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the ribs", + "example_sentence_english": "He felt pain in the costal region of his chest.", + "pos": "adjective", + "word_frequency": 32942 + }, + { + "word": "couscous", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a North African dish of steamed semolina", + "example_sentence_english": "We had chicken and couscous for dinner.", + "pos": "noun", + "word_frequency": 32943 + }, + { + "word": "crone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an old woman who is thin and ugly", + "example_sentence_english": "The old crone sat by the fire, muttering to herself.", + "pos": "noun", + "word_frequency": 32948 + }, + { + "word": "crystallography", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the scientific study of the structure and properties of crystals", + "example_sentence_english": "X-ray crystallography is crucial for determining molecular structures.", + "pos": "noun", + "word_frequency": 32949 + }, + { + "word": "deferral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the act of putting something off to a later time", + "example_sentence_english": "The student requested a deferral of his admission.", + "pos": "n", + "word_frequency": 32951 + }, + { + "word": "delist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remove from a list, especially a stock exchange list", + "example_sentence_english": "The company was delisted from the stock exchange.", + "pos": "v", + "word_frequency": 32952 + }, + { + "word": "dirtbag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a contemptible or unpleasant person", + "example_sentence_english": "He called the thief a real dirtbag.", + "pos": "n", + "word_frequency": 32956 + }, + { + "word": "disavow", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deny any responsibility or support for", + "example_sentence_english": "The politician was quick to disavow the controversial statements.", + "pos": "v", + "word_frequency": 32957 + }, + { + "word": "discordant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disagreeing or incongruous", + "example_sentence_english": "The committee's discordant views made it difficult to reach a decision.", + "pos": "adj", + "word_frequency": 32958 + }, + { + "word": "distrustful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling or showing distrust of someone or something", + "example_sentence_english": "She became distrustful of strangers after the incident.", + "pos": "adj", + "word_frequency": 32959 + }, + { + "word": "downy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soft and fluffy", + "example_sentence_english": "The baby bird had soft, downy feathers.", + "pos": "adj", + "word_frequency": 32961 + }, + { + "word": "dualism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being divided into two parts", + "example_sentence_english": "The philosophy explored the dualism of mind and body.", + "pos": "n", + "word_frequency": 32965 + }, + { + "word": "embitter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make someone feel bitter or resentful", + "example_sentence_english": "His constant failures began to embitter him.", + "pos": "v", + "word_frequency": 32973 + }, + { + "word": "evidentiary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or providing evidence", + "example_sentence_english": "The court reviewed all the evidentiary material presented by the prosecution.", + "pos": "adj", + "word_frequency": 32976 + }, + { + "word": "exoplanet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a planet orbiting a star other than the Sun", + "example_sentence_english": "Scientists have discovered thousands of exoplanets.", + "pos": "n", + "word_frequency": 32978 + }, + { + "word": "fatherly", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "like a father; characteristic of a father", + "example_sentence_english": "He offered some fatherly advice to the young man.", + "pos": "adj", + "word_frequency": 32979 + }, + { + "word": "faultless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without fault or defect; perfect", + "example_sentence_english": "Her performance was absolutely faultless.", + "pos": "adj", + "word_frequency": 32980 + }, + { + "word": "feedstock", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "raw material supplied to a machine or process", + "example_sentence_english": "Crude oil is a primary feedstock for the petrochemical industry.", + "pos": "n", + "word_frequency": 32981 + }, + { + "word": "fistula", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "an abnormal connection between two body parts", + "example_sentence_english": "The patient developed a fistula after the surgery.", + "pos": "n", + "word_frequency": 32982 + }, + { + "word": "foxtrot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ballroom dance", + "example_sentence_english": "They learned to dance the foxtrot at the studio.", + "pos": "n", + "word_frequency": 32984 + }, + { + "word": "frizzy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in small, tight curls", + "example_sentence_english": "After the rain, her hair became very frizzy.", + "pos": "adj", + "word_frequency": 32986 + }, + { + "word": "garble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reproduce a message or sound in a confused, distorted way", + "example_sentence_english": "The poor phone connection caused the message to garble.", + "pos": "v", + "word_frequency": 32987 + }, + { + "word": "hallucinogenic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing hallucinations", + "example_sentence_english": "The plant has hallucinogenic properties.", + "pos": "adj", + "word_frequency": 33003 + }, + { + "word": "headbutt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a blow with the head", + "example_sentence_english": "He gave his opponent a headbutt during the fight.", + "pos": "n", + "word_frequency": 33006 + }, + { + "word": "heckler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who interrupts a speaker with taunts or questions", + "example_sentence_english": "The comedian was interrupted by a heckler in the audience.", + "pos": "n", + "word_frequency": 33010 + }, + { + "word": "heifer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a young female cow that has not borne a calf", + "example_sentence_english": "The farmer bought a new heifer for his herd.", + "pos": "n", + "word_frequency": 33011 + }, + { + "word": "humbug", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceptive or false talk or behavior", + "example_sentence_english": "He dismissed the whole idea as a complete humbug.", + "pos": "n", + "word_frequency": 33017 + }, + { + "word": "hydrological", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to hydrology, the study of water", + "example_sentence_english": "The region is facing significant hydrological challenges.", + "pos": "adj", + "word_frequency": 33018 + }, + { + "word": "impetuous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acting or done quickly and without thought or care", + "example_sentence_english": "His impetuous decision led to several problems.", + "pos": "adj", + "word_frequency": 33024 + }, + { + "word": "inadequately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not sufficiently or suitably", + "example_sentence_english": "The task was inadequately completed.", + "pos": "adv", + "word_frequency": 33025 + }, + { + "word": "indignity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treatment or circumstances that cause one to feel shame or to lose one's dignity", + "example_sentence_english": "She suffered the indignity of being publicly humiliated.", + "pos": "n", + "word_frequency": 33026 + }, + { + "word": "indisputably", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a way that cannot be challenged or denied", + "example_sentence_english": "He is indisputably the best player on the team.", + "pos": "adv", + "word_frequency": 33027 + }, + { + "word": "indoctrinate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "teach (a person or group) to accept a set of beliefs uncritically", + "example_sentence_english": "The cult tried to indoctrinate new members with its ideology.", + "pos": "v", + "word_frequency": 33028 + }, + { + "word": "inflorescence", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the complete flower head of a plant including stems, stalks, bracts, and flowers", + "example_sentence_english": "The sunflower has a large inflorescence.", + "pos": "n", + "word_frequency": 33029 + }, + { + "word": "injectable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable for injection", + "example_sentence_english": "The doctor prescribed an injectable medication.", + "pos": "adj", + "word_frequency": 33031 + }, + { + "word": "inky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark or black like ink", + "example_sentence_english": "The night sky was an inky black.", + "pos": "adj", + "word_frequency": 33032 + }, + { + "word": "interactivity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability of a computer or other device to respond to a user's actions", + "example_sentence_english": "The new software offers enhanced interactivity.", + "pos": "n", + "word_frequency": 33034 + }, + { + "word": "interdiction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of prohibiting or forbidding something", + "example_sentence_english": "The military carried out an interdiction mission to stop the drug flow.", + "pos": "n", + "word_frequency": 33035 + }, + { + "word": "jaunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short excursion or journey for pleasure", + "example_sentence_english": "They took a short jaunt to the countryside.", + "pos": "n", + "word_frequency": 33038 + }, + { + "word": "jut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stick out", + "example_sentence_english": "The rock seemed to jut out from the cliff face.", + "pos": "v", + "word_frequency": 33041 + }, + { + "word": "kph", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kilometers per hour", + "example_sentence_english": "The car was traveling at 100 kph.", + "pos": "n", + "word_frequency": 33045 + }, + { + "word": "legation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diplomatic mission", + "example_sentence_english": "The ambassador was assigned to the legation in the foreign capital.", + "pos": "n", + "word_frequency": 33049 + }, + { + "word": "letterhead", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "printed stationery", + "example_sentence_english": "The official letter was printed on company letterhead.", + "pos": "n", + "word_frequency": 33051 + }, + { + "word": "levity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humor, lightheartedness", + "example_sentence_english": "The teacher tried to add some levity to the serious discussion.", + "pos": "n", + "word_frequency": 33052 + }, + { + "word": "malayan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to Malaya/Malaysia", + "example_sentence_english": "The Malayan tiger is an endangered species.", + "pos": "adj", + "word_frequency": 33067 + }, + { + "word": "malfeasance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wrongdoing, especially by a public official", + "example_sentence_english": "The official was accused of malfeasance in office.", + "pos": "n", + "word_frequency": 33068 + }, + { + "word": "massif", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compact group of mountains", + "example_sentence_english": "The climbers attempted to cross the central massif.", + "pos": "n", + "word_frequency": 33072 + }, + { + "word": "mechanistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the theory that all phenomena can be explained in terms of physical or biological causes", + "example_sentence_english": "His approach to problem-solving was purely mechanistic.", + "pos": "adj", + "word_frequency": 33075 + }, + { + "word": "mezzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a female singing voice between soprano and contralto", + "example_sentence_english": "The opera featured a powerful mezzo.", + "pos": "n", + "word_frequency": 33078 + }, + { + "word": "millenium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a period of one thousand years", + "example_sentence_english": "The new millennium brought significant technological advancements.", + "pos": "n", + "word_frequency": 33080 + }, + { + "word": "misappropriation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of dishonestly or unfairly taking something, especially money, for one's own use", + "example_sentence_english": "The company faced charges of misappropriation of funds.", + "pos": "n", + "word_frequency": 33082 + }, + { + "word": "mishandle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deal with something badly or inefficiently", + "example_sentence_english": "The manager was criticized for mishandling the crisis.", + "pos": "v", + "word_frequency": 33083 + }, + { + "word": "misstep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a wrong step or a mistake", + "example_sentence_english": "One misstep could cost them the entire competition.", + "pos": "n", + "word_frequency": 33084 + }, + { + "word": "multichannel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involving or using several channels or methods", + "example_sentence_english": "The company adopted a multichannel approach to customer service.", + "pos": "adj", + "word_frequency": 33092 + }, + { + "word": "mummify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preserve a body by embalming and drying it", + "example_sentence_english": "Ancient Egyptians would mummify their dead.", + "pos": "v", + "word_frequency": 33093 + }, + { + "word": "newness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being new", + "example_sentence_english": "The newness of the car quickly wore off.", + "pos": "n", + "word_frequency": 33103 + }, + { + "word": "newsreader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who reads the news on television or radio", + "example_sentence_english": "The newsreader announced the latest headlines.", + "pos": "n", + "word_frequency": 33104 + }, + { + "word": "nontraditional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not following or conforming to tradition", + "example_sentence_english": "She pursued a nontraditional career path.", + "pos": "adj", + "word_frequency": 33106 + }, + { + "word": "nori", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an edible seaweed, especially a species of red algae, typically used in Japanese cuisine", + "example_sentence_english": "Sushi rolls are often wrapped in sheets of nori.", + "pos": "n", + "word_frequency": 33107 + }, + { + "word": "olympiad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a period of four years between Olympic Games, or a major international competition", + "example_sentence_english": "The next Olympiad will be held in Paris.", + "pos": "n", + "word_frequency": 33110 + }, + { + "word": "oration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a formal speech, especially one given on a ceremonial occasion", + "example_sentence_english": "The president delivered a powerful oration at the memorial.", + "pos": "n", + "word_frequency": 33111 + }, + { + "word": "paneling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panels, especially wooden ones, used to decorate a wall", + "example_sentence_english": "The old library had dark wooden paneling on the walls.", + "pos": "n", + "word_frequency": 33113 + }, + { + "word": "paschal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of or relating to Easter or Passover", + "example_sentence_english": "The church celebrated the Paschal mystery.", + "pos": "adj", + "word_frequency": 33116 + }, + { + "word": "passivity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being passive; inaction", + "example_sentence_english": "His passivity in the face of injustice was frustrating.", + "pos": "n", + "word_frequency": 33117 + }, + { + "word": "pec", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pectoral muscle", + "example_sentence_english": "He worked out his chest, focusing on his pec muscles.", + "pos": "n", + "word_frequency": 33120 + }, + { + "word": "percussive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to percussion or striking", + "example_sentence_english": "The drum solo featured a powerful percussive rhythm.", + "pos": "adj", + "word_frequency": 33121 + }, + { + "word": "phosphatase", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "an enzyme that removes phosphate groups", + "example_sentence_english": "Alkaline phosphatase levels are often measured in blood tests.", + "pos": "n", + "word_frequency": 33123 + }, + { + "word": "piezoelectric", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the generation of electricity by pressure", + "example_sentence_english": "Piezoelectric materials are used in many sensors and transducers.", + "pos": "adj", + "word_frequency": 33124 + }, + { + "word": "plinth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a heavy base supporting a statue or column", + "example_sentence_english": "The ancient statue stood proudly on its stone plinth.", + "pos": "n", + "word_frequency": 33128 + }, + { + "word": "polypeptide", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a chain of amino acids linked by peptide bonds", + "example_sentence_english": "Proteins are large polypeptides folded into specific three-dimensional structures.", + "pos": "n", + "word_frequency": 33131 + }, + { + "word": "productively", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that produces a lot or a good result", + "example_sentence_english": "She spent the afternoon working productively on her report.", + "pos": "adv", + "word_frequency": 33133 + }, + { + "word": "propylene", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a colorless gaseous hydrocarbon", + "example_sentence_english": "Polypropylene is a plastic made from propylene monomers.", + "pos": "n", + "word_frequency": 33134 + }, + { + "word": "prosaic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordinary, dull, or unimaginative", + "example_sentence_english": "His writing style was rather prosaic, lacking any flair or originality.", + "pos": "adj", + "word_frequency": 33135 + }, + { + "word": "proscribe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to forbid or prohibit", + "example_sentence_english": "The law proscribes the use of certain chemicals in food production.", + "pos": "v", + "word_frequency": 33136 + }, + { + "word": "prosecutorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a prosecutor or prosecution", + "example_sentence_english": "The defense attorney challenged the prosecutorial misconduct.", + "pos": "adj", + "word_frequency": 33137 + }, + { + "word": "pyrotechnic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fireworks display or the art of making fireworks", + "example_sentence_english": "The concert ended with an impressive pyrotechnic display.", + "pos": "n", + "word_frequency": 33138 + }, + { + "word": "quandary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a state of perplexity or uncertainty over what to do in a difficult situation", + "example_sentence_english": "She found herself in a quandary, unsure of which path to take.", + "pos": "n", + "word_frequency": 33140 + }, + { + "word": "rationalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a belief or theory that opinions and actions should be based on reason and knowledge rather than on religious belief or emotional response", + "example_sentence_english": "The Enlightenment was characterized by a strong emphasis on rationalism.", + "pos": "n", + "word_frequency": 33144 + }, + { + "word": "rebut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prove (a statement or charge) to be false", + "example_sentence_english": "The lawyer tried to rebut the witness's testimony.", + "pos": "v", + "word_frequency": 33145 + }, + { + "word": "reclassify", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to classify again or differently", + "example_sentence_english": "The library decided to reclassify some of its older books.", + "pos": "v", + "word_frequency": 33146 + }, + { + "word": "refiner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that refines a substance", + "example_sentence_english": "The oil refiner processes crude oil into various petroleum products.", + "pos": "n", + "word_frequency": 33148 + }, + { + "word": "reheat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to heat again", + "example_sentence_english": "Please reheat the leftovers in the microwave.", + "pos": "v", + "word_frequency": 33149 + }, + { + "word": "reinvest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invest (money) again, especially in the same enterprise", + "example_sentence_english": "They decided to reinvest their profits back into the company.", + "pos": "v", + "word_frequency": 33152 + }, + { + "word": "remorseful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filled with remorse; regretful", + "example_sentence_english": "He felt deeply remorseful for the pain he had caused.", + "pos": "adj", + "word_frequency": 33153 + }, + { + "word": "repackage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to package again or differently", + "example_sentence_english": "The company decided to repackage their old product with a new design.", + "pos": "v", + "word_frequency": 33155 + }, + { + "word": "reprogram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to program again or differently", + "example_sentence_english": "The technician had to reprogram the robot's movements.", + "pos": "v", + "word_frequency": 33156 + }, + { + "word": "reticence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being reticent; reserve", + "example_sentence_english": "His reticence made it difficult to get to know him well.", + "pos": "n", + "word_frequency": 33157 + }, + { + "word": "reversion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act or process of returning to a previous state or condition", + "example_sentence_english": "The contract included a clause for the reversion of rights to the original owner.", + "pos": "n", + "word_frequency": 33158 + }, + { + "word": "rhinestone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an imitation diamond made from rock crystal or glass", + "example_sentence_english": "Her dress was adorned with sparkling rhinestones.", + "pos": "n", + "word_frequency": 33159 + }, + { + "word": "scrip", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provisional certificate; small piece of paper", + "example_sentence_english": "The miners were often paid in scrip, redeemable only at the company store.", + "pos": "n", + "word_frequency": 33171 + }, + { + "word": "scruff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "back of the neck", + "example_sentence_english": "The mother cat carried her kitten by the scruff of its neck.", + "pos": "n", + "word_frequency": 33172 + }, + { + "word": "scurry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "move hurriedly", + "example_sentence_english": "Mice scurried across the floor when the light came on.", + "pos": "v", + "word_frequency": 33173 + }, + { + "word": "seafaring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traveling by sea", + "example_sentence_english": "His grandfather had a long and distinguished seafaring career.", + "pos": "adj", + "word_frequency": 33174 + }, + { + "word": "sexiness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being sexy", + "example_sentence_english": "Her confidence added to her overall sexiness.", + "pos": "n", + "word_frequency": 33176 + }, + { + "word": "señora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mrs.; madam", + "example_sentence_english": "The polite young man addressed the woman as Señora Rodriguez.", + "pos": "n", + "word_frequency": 33177 + }, + { + "word": "sheaf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bundle (of grain or papers)", + "example_sentence_english": "The farmer gathered the wheat into sheaves.", + "pos": "n", + "word_frequency": 33180 + }, + { + "word": "siesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "afternoon nap", + "example_sentence_english": "In many hot countries, people take a siesta in the afternoon.", + "pos": "n", + "word_frequency": 33181 + }, + { + "word": "sniffer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one who sniffs", + "example_sentence_english": "The police used a sniffer dog to find the hidden drugs.", + "pos": "n", + "word_frequency": 33186 + }, + { + "word": "socialise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix socially", + "example_sentence_english": "It's important for children to socialise with their peers.", + "pos": "v", + "word_frequency": 33187 + }, + { + "word": "sociopathic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to antisocial personality disorder", + "example_sentence_english": "His actions showed a complete lack of empathy, almost sociopathic.", + "pos": "adj", + "word_frequency": 33188 + }, + { + "word": "speedometer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instrument showing speed", + "example_sentence_english": "The speedometer showed that he was driving too fast.", + "pos": "n", + "word_frequency": 33190 + }, + { + "word": "squalid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely dirty and unpleasant", + "example_sentence_english": "They lived in squalid conditions with no running water.", + "pos": "adj", + "word_frequency": 33191 + }, + { + "word": "subordination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being lower in rank", + "example_sentence_english": "The new manager struggled with the concept of subordination, preferring to work independently.", + "pos": "n", + "word_frequency": 33195 + }, + { + "word": "sunnah", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamic tradition based on Muhammad's teachings", + "example_sentence_english": "Muslims follow the Quran and the Sunnah for guidance.", + "pos": "n", + "word_frequency": 33196 + }, + { + "word": "survivability", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ability to survive", + "example_sentence_english": "The engineers focused on improving the survivability of the spacecraft in extreme conditions.", + "pos": "n", + "word_frequency": 33198 + }, + { + "word": "swelter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffer from oppressive heat", + "example_sentence_english": "We were sweltering in the humid summer heat.", + "pos": "v", + "word_frequency": 33199 + }, + { + "word": "tannin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bitter compound found in plants", + "example_sentence_english": "Red wine is known for its high tannin content.", + "pos": "n", + "word_frequency": 33202 + }, + { + "word": "tanto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a short Japanese sword or dagger", + "example_sentence_english": "He displayed a finely crafted tanto in his collection.", + "pos": "n", + "word_frequency": 33203 + }, + { + "word": "tarn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small mountain lake", + "example_sentence_english": "The hikers rested by the clear waters of the tarn.", + "pos": "n", + "word_frequency": 33204 + }, + { + "word": "tater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potato (informal)", + "example_sentence_english": "We had some crispy fried taters with our dinner.", + "pos": "n", + "word_frequency": 33205 + }, + { + "word": "taxicab", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a car for hire with a driver", + "example_sentence_english": "We took a taxicab to the airport.", + "pos": "n", + "word_frequency": 33206 + }, + { + "word": "thunk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dull, heavy sound", + "example_sentence_english": "The apple fell to the ground with a soft thunk.", + "pos": "n", + "word_frequency": 33213 + }, + { + "word": "tonk", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a dull, resonant sound", + "example_sentence_english": "The old piano made a tonk sound when he hit the low notes.", + "pos": "n", + "word_frequency": 33217 + }, + { + "word": "tupelo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of tree with small, dark fruit", + "example_sentence_english": "The tupelo trees were blooming beautifully in the swamp.", + "pos": "n", + "word_frequency": 33220 + }, + { + "word": "unabashed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not embarrassed or ashamed", + "example_sentence_english": "She was unabashed in her enthusiasm for the project.", + "pos": "adj", + "word_frequency": 33222 + }, + { + "word": "unencumber", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to free from a burden or impediment", + "example_sentence_english": "He sought to unencumber himself from all his worldly possessions.", + "pos": "v", + "word_frequency": 33223 + }, + { + "word": "unionization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of forming or joining a labor union", + "example_sentence_english": "The debate over unionization in the tech industry is growing.", + "pos": "n", + "word_frequency": 33225 + }, + { + "word": "unjustifiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not able to be excused or defended", + "example_sentence_english": "His actions were completely unjustifiable.", + "pos": "adj", + "word_frequency": 33226 + }, + { + "word": "unnaturally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is not natural or normal", + "example_sentence_english": "The dog barked unnaturally loud.", + "pos": "adv", + "word_frequency": 33227 + }, + { + "word": "vegetarianism", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the practice of not eating meat", + "example_sentence_english": "She adopted vegetarianism for health reasons.", + "pos": "n", + "word_frequency": 33232 + }, + { + "word": "villainy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wicked or criminal behavior", + "example_sentence_english": "The hero fought against the villainy of the dark lord.", + "pos": "n", + "word_frequency": 33235 + }, + { + "word": "virtuosity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great skill in music or another artistic pursuit", + "example_sentence_english": "His piano performance displayed incredible virtuosity.", + "pos": "n", + "word_frequency": 33236 + }, + { + "word": "virulence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the severity or harmfulness of a disease or poison", + "example_sentence_english": "The new strain of the virus showed increased virulence.", + "pos": "n", + "word_frequency": 33237 + }, + { + "word": "vizier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a high-ranking political advisor or minister in Muslim countries", + "example_sentence_english": "The vizier advised the sultan on matters of state.", + "pos": "n", + "word_frequency": 33240 + }, + { + "word": "wali", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "an administrative governor or guardian in some Muslim countries", + "example_sentence_english": "The wali was responsible for the province's administration.", + "pos": "n", + "word_frequency": 33243 + }, + { + "word": "walkable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable for walking", + "example_sentence_english": "The city center is very walkable, with many pedestrian streets.", + "pos": "adj", + "word_frequency": 33244 + }, + { + "word": "warmer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device or object that warms something", + "example_sentence_english": "She bought a new food warmer for the party.", + "pos": "n", + "word_frequency": 33245 + }, + { + "word": "whimsy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "playfully quaint or fanciful behavior or humor", + "example_sentence_english": "Her artwork is full of charm and whimsy.", + "pos": "n", + "word_frequency": 33247 + }, + { + "word": "wicca", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a modern pagan religion with roots in pre-Christian traditions", + "example_sentence_english": "She is studying the history and practices of Wicca.", + "pos": "n", + "word_frequency": 33249 + }, + { + "word": "wolfpack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a group of wolves hunting together; a group of submarines operating together", + "example_sentence_english": "The wolfpack surrounded their prey in the forest.", + "pos": "n", + "word_frequency": 33251 + }, + { + "word": "workpiece", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an object being worked on or processed", + "example_sentence_english": "The machine holds the workpiece firmly during the cutting process.", + "pos": "n", + "word_frequency": 33253 + }, + { + "word": "wormwood", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a bitter-tasting plant; a state or source of bitterness or grief", + "example_sentence_english": "The experience left a taste of wormwood in his mouth.", + "pos": "n", + "word_frequency": 33254 + }, + { + "word": "youngblood", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "young people, especially those with new ideas or energy", + "example_sentence_english": "The company needs some youngblood to bring fresh perspectives.", + "pos": "n", + "word_frequency": 33257 + }, + { + "word": "zander", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large freshwater fish of the perch family", + "example_sentence_english": "He caught a large zander in the river.", + "pos": "n", + "word_frequency": 33259 + }, + { + "word": "zircon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a common mineral, often used as a gemstone", + "example_sentence_english": "The ring was set with a beautiful blue zircon.", + "pos": "n", + "word_frequency": 33262 + }, + { + "word": "acoustical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to sound or the sense of hearing", + "example_sentence_english": "The concert hall has excellent acoustical properties.", + "pos": "adj", + "word_frequency": 33272 + }, + { + "word": "afterall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in spite of everything; despite what has been said or expected", + "example_sentence_english": "He decided to go to the party after all.", + "pos": "adv", + "word_frequency": 33274 + }, + { + "word": "albedo", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the proportion of the incident light or radiation that is reflected by a surface", + "example_sentence_english": "The albedo of snow is very high, reflecting most sunlight.", + "pos": "n", + "word_frequency": 33275 + }, + { + "word": "amateurish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprofessional; not skillful", + "example_sentence_english": "The performance was quite amateurish, lacking polish.", + "pos": "adj", + "word_frequency": 33281 + }, + { + "word": "anaphylaxis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a severe, potentially life-threatening allergic reaction", + "example_sentence_english": "She carries an EpiPen in case of anaphylaxis from bee stings.", + "pos": "n", + "word_frequency": 33282 + }, + { + "word": "angora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long-haired breed of cat or rabbit; yarn made from its hair", + "example_sentence_english": "She knitted a soft scarf from angora wool.", + "pos": "n", + "word_frequency": 33285 + }, + { + "word": "anyplace", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "anywhere", + "example_sentence_english": "You can sit anyplace you like.", + "pos": "n", + "word_frequency": 33286 + }, + { + "word": "appetizing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stimulating the appetite; appealing", + "example_sentence_english": "The aroma of the freshly baked bread was very appetizing.", + "pos": "adj", + "word_frequency": 33288 + }, + { + "word": "applicator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for applying a substance", + "example_sentence_english": "She used a cotton swab as an applicator for the medicine.", + "pos": "n", + "word_frequency": 33289 + }, + { + "word": "arsonist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who deliberately sets fire to property", + "example_sentence_english": "The police are searching for the arsonist responsible for the warehouse fire.", + "pos": "n", + "word_frequency": 33291 + }, + { + "word": "barnacle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a marine crustacean that attaches to surfaces", + "example_sentence_english": "The ship's hull was covered in barnacles.", + "pos": "n", + "word_frequency": 33299 + }, + { + "word": "bast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strong, woody fibers from the inner bark of plants", + "example_sentence_english": "Linen is made from bast fibers of the flax plant.", + "pos": "n", + "word_frequency": 33300 + }, + { + "word": "beekeeper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who keeps bees", + "example_sentence_english": "The beekeeper harvested honey from the hives.", + "pos": "n", + "word_frequency": 33301 + }, + { + "word": "biologic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to biology or living organisms; a drug derived from living organisms", + "example_sentence_english": "The new drug is a biologic therapy for autoimmune diseases.", + "pos": "adj", + "word_frequency": 33306 + }, + { + "word": "blackfish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "various dark-colored fish or small whales", + "example_sentence_english": "The documentary 'Blackfish' raised concerns about orcas in captivity.", + "pos": "n", + "word_frequency": 33308 + }, + { + "word": "bloodshot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflamed and red, especially of the eyes", + "example_sentence_english": "After a sleepless night, his eyes were bloodshot.", + "pos": "adj", + "word_frequency": 33309 + }, + { + "word": "bolognese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a meat-based sauce for pasta, originating from Bologna, Italy", + "example_sentence_english": "She made a delicious spaghetti bolognese for dinner.", + "pos": "n", + "word_frequency": 33312 + }, + { + "word": "bronchial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the bronchi or bronchioles of the lungs", + "example_sentence_english": "He suffered from a bronchial infection.", + "pos": "adj", + "word_frequency": 33313 + }, + { + "word": "brownstone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a reddish-brown sandstone; a building faced with this stone", + "example_sentence_english": "Many historic homes in New York City are brownstones.", + "pos": "n", + "word_frequency": 33314 + }, + { + "word": "burka", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long, loose garment covering the whole body from head to feet, worn in public by some Muslim women", + "example_sentence_english": "In some regions, women wear a burka in public.", + "pos": "n", + "word_frequency": 33316 + }, + { + "word": "butterscotch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a candy or sauce made with brown sugar and butter", + "example_sentence_english": "She loves the rich flavor of butterscotch pudding.", + "pos": "noun", + "word_frequency": 33317 + }, + { + "word": "caballero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a Spanish gentleman or knight; a horseman", + "example_sentence_english": "The old caballero rode his horse with dignity.", + "pos": "noun", + "word_frequency": 33319 + }, + { + "word": "caboose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the last car of a freight train", + "example_sentence_english": "The conductor rode in the caboose at the end of the train.", + "pos": "noun", + "word_frequency": 33320 + }, + { + "word": "caesarean", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a Caesarean section", + "example_sentence_english": "She had a caesarean birth for her second child.", + "pos": "adjective", + "word_frequency": 33321 + }, + { + "word": "calcareous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "containing calcium carbonate; chalky", + "example_sentence_english": "The soil in this region is highly calcareous.", + "pos": "adjective", + "word_frequency": 33323 + }, + { + "word": "callus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hardened part of the skin or soft tissue", + "example_sentence_english": "Years of playing guitar gave him calluses on his fingertips.", + "pos": "noun", + "word_frequency": 33324 + }, + { + "word": "carotene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an orange or red pigment found in plants", + "example_sentence_english": "Carrots are rich in beta-carotene.", + "pos": "noun", + "word_frequency": 33329 + }, + { + "word": "carpark", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an area or building where cars may be parked", + "example_sentence_english": "We left our car in the carpark near the station.", + "pos": "noun", + "word_frequency": 33330 + }, + { + "word": "cartoonish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling a cartoon; exaggerated or simplistic", + "example_sentence_english": "The character had a cartoonish grin.", + "pos": "adjective", + "word_frequency": 33331 + }, + { + "word": "cesarean", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to a Cesarean section", + "example_sentence_english": "She recovered quickly from her cesarean delivery.", + "pos": "adjective", + "word_frequency": 33333 + }, + { + "word": "cherub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a winged angelic being; a beautiful child", + "example_sentence_english": "The painting depicted a cherub with rosy cheeks.", + "pos": "noun", + "word_frequency": 33335 + }, + { + "word": "clearinghouse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organization that collects and distributes information or items", + "example_sentence_english": "The central bank acts as a clearinghouse for interbank payments.", + "pos": "noun", + "word_frequency": 33338 + }, + { + "word": "colloidal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a colloid; a substance microscopically dispersed throughout another substance", + "example_sentence_english": "Colloidal silver is sometimes used as a health supplement.", + "pos": "adjective", + "word_frequency": 33340 + }, + { + "word": "concurrency", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the fact of two or more events or circumstances happening or existing at the same time", + "example_sentence_english": "The system was designed to handle high levels of concurrency.", + "pos": "noun", + "word_frequency": 33342 + }, + { + "word": "confidante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person with whom one shares a secret or private matter, trusting them not to repeat it to others", + "example_sentence_english": "She was her closest friend and confidante.", + "pos": "noun", + "word_frequency": 33343 + }, + { + "word": "convener", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who convenes a meeting or assembly", + "example_sentence_english": "The convener called the meeting to order.", + "pos": "noun", + "word_frequency": 33344 + }, + { + "word": "corker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an excellent or astonishing person or thing", + "example_sentence_english": "That joke was a real corker!", + "pos": "noun", + "word_frequency": 33346 + }, + { + "word": "courtly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polite, elegant, and refined, often in an old-fashioned way", + "example_sentence_english": "He had a courtly manner and always opened doors for ladies.", + "pos": "adjective", + "word_frequency": 33350 + }, + { + "word": "cutlass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, broad saber with a curved blade, formerly used by sailors", + "example_sentence_english": "The pirate brandished his cutlass.", + "pos": "noun", + "word_frequency": 33352 + }, + { + "word": "cvt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Continuously Variable Transmission", + "example_sentence_english": "Many modern cars use a CVT for smoother acceleration.", + "pos": "noun", + "word_frequency": 33353 + }, + { + "word": "cybernetics", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the science of communications and automatic control systems in both machines and living things", + "example_sentence_english": "Cybernetics explores the principles of control and communication in complex systems.", + "pos": "noun", + "word_frequency": 33354 + }, + { + "word": "decriminalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of ceasing to treat something as illegal or criminal", + "example_sentence_english": "There is a debate about the decriminalization of certain drugs.", + "pos": "noun", + "word_frequency": 33358 + }, + { + "word": "denigrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criticize unfairly; disparage", + "example_sentence_english": "It's wrong to denigrate someone's efforts without understanding their challenges.", + "pos": "verb", + "word_frequency": 33363 + }, + { + "word": "detonator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device used to set off an explosive", + "example_sentence_english": "The bomb squad carefully disarmed the detonator.", + "pos": "noun", + "word_frequency": 33366 + }, + { + "word": "diametrically", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "completely; directly opposite", + "example_sentence_english": "Their opinions were diametrically opposed on the issue.", + "pos": "adverb", + "word_frequency": 33368 + }, + { + "word": "dramatize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "present as a play or film; exaggerate", + "example_sentence_english": "The director chose to dramatize the historical events for the film.", + "pos": "verb", + "word_frequency": 33374 + }, + { + "word": "drinkable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safe or suitable for drinking", + "example_sentence_english": "The water from the tap is drinkable in most cities.", + "pos": "adjective", + "word_frequency": 33375 + }, + { + "word": "droop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bend or hang downwards", + "example_sentence_english": "The flowers began to droop after a few days without water.", + "pos": "verb", + "word_frequency": 33376 + }, + { + "word": "empathic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "showing empathy or ability to understand others' feelings", + "example_sentence_english": "An empathic listener can truly connect with people's emotions.", + "pos": "adjective", + "word_frequency": 33382 + }, + { + "word": "enumeration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of listing or counting items", + "example_sentence_english": "The enumeration of all the species in the rainforest would take years.", + "pos": "noun", + "word_frequency": 33384 + }, + { + "word": "evocation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of bringing a feeling, memory, or image into the mind", + "example_sentence_english": "The old photograph was an evocation of childhood memories.", + "pos": "noun", + "word_frequency": 33388 + }, + { + "word": "existentialism", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a philosophical theory emphasizing individual existence, freedom, and responsibility", + "example_sentence_english": "Jean-Paul Sartre was a key figure in existentialism.", + "pos": "noun", + "word_frequency": 33389 + }, + { + "word": "exterminator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or company that exterminates pests", + "example_sentence_english": "We had to call an exterminator to deal with the ant problem.", + "pos": "noun", + "word_frequency": 33390 + }, + { + "word": "extricate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "free (someone or something) from a difficulty or constraint", + "example_sentence_english": "It took a long time to extricate the car from the mud.", + "pos": "verb", + "word_frequency": 33391 + }, + { + "word": "fatale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leading to disaster; deadly (often used in \"femme fatale\")", + "example_sentence_english": "She played the role of a femme fatale in the movie.", + "pos": "adjective", + "word_frequency": 33395 + }, + { + "word": "fibula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the outer and smaller of the two bones between the knee and ankle", + "example_sentence_english": "He fractured his fibula during the soccer match.", + "pos": "noun", + "word_frequency": 33397 + }, + { + "word": "fidget", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make small movements, especially of the hands and feet, through nervousness or impatience", + "example_sentence_english": "The child began to fidget in his seat during the long lecture.", + "pos": "verb", + "word_frequency": 33398 + }, + { + "word": "filesystem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a system used to control how information is stored and retrieved on a computer", + "example_sentence_english": "The operating system manages the computer's filesystem.", + "pos": "noun", + "word_frequency": 33399 + }, + { + "word": "flexion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of bending or the state of being bent", + "example_sentence_english": "The flexion of the knee joint is essential for walking.", + "pos": "noun", + "word_frequency": 33400 + }, + { + "word": "flippant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not showing a serious or respectful attitude", + "example_sentence_english": "His flippant remark about the serious situation angered many.", + "pos": "adjective", + "word_frequency": 33401 + }, + { + "word": "floater", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that floats", + "example_sentence_english": "She saw a small floater in her eye.", + "pos": "noun", + "word_frequency": 33402 + }, + { + "word": "fondue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dish in which small pieces of food are dipped into a hot sauce or melted cheese", + "example_sentence_english": "We had cheese fondue for dinner last night.", + "pos": "noun", + "word_frequency": 33403 + }, + { + "word": "ganglion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mass of nerve tissue", + "example_sentence_english": "The doctor explained that the lump was a benign ganglion cyst.", + "pos": "noun", + "word_frequency": 33408 + }, + { + "word": "geospatial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the geographic location of features on Earth", + "example_sentence_english": "Geospatial data is crucial for mapping and navigation systems.", + "pos": "adjective", + "word_frequency": 33411 + }, + { + "word": "geranium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of flowering plant", + "example_sentence_english": "She planted bright red geraniums in the window box.", + "pos": "noun", + "word_frequency": 33412 + }, + { + "word": "gingerly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a careful or cautious manner", + "example_sentence_english": "He gingerly picked up the broken pieces of glass.", + "pos": "adverb", + "word_frequency": 33415 + }, + { + "word": "goalpost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "one of the two upright posts with a crossbar that form a goal in sports", + "example_sentence_english": "The striker hit the ball directly into the goalpost.", + "pos": "noun", + "word_frequency": 33417 + }, + { + "word": "grouchy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritable and bad-tempered", + "example_sentence_english": "He's always a bit grouchy before his first cup of coffee.", + "pos": "adjective", + "word_frequency": 33422 + }, + { + "word": "grownup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an adult", + "example_sentence_english": "The children were told to act like grown-ups.", + "pos": "noun", + "word_frequency": 33423 + }, + { + "word": "guaranty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a promise or assurance", + "example_sentence_english": "The bank required a personal guaranty for the loan.", + "pos": "noun", + "word_frequency": 33424 + }, + { + "word": "gusty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characterized by gusts of wind", + "example_sentence_english": "It was a cold and gusty day, perfect for flying a kite.", + "pos": "adjective", + "word_frequency": 33425 + }, + { + "word": "heaviness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality or state of being heavy", + "example_sentence_english": "The heaviness of the box made it difficult to lift.", + "pos": "noun", + "word_frequency": 33430 + }, + { + "word": "hedonism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the pursuit of pleasure; the ethical theory that pleasure is the highest good", + "example_sentence_english": "His lifestyle was characterized by extreme hedonism.", + "pos": "noun", + "word_frequency": 33431 + }, + { + "word": "immemorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extending back beyond memory or record", + "example_sentence_english": "The custom has existed since time immemorial.", + "pos": "adjective", + "word_frequency": 33441 + }, + { + "word": "inflect", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to change the form of a word to express a grammatical function", + "example_sentence_english": "Verbs in English do not inflect as much as in other languages.", + "pos": "verb", + "word_frequency": 33443 + }, + { + "word": "infotainment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broadcast material that is intended to entertain and inform", + "example_sentence_english": "Many news channels now offer infotainment rather than pure news.", + "pos": "noun", + "word_frequency": 33444 + }, + { + "word": "iodide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound of iodine with another element or group", + "example_sentence_english": "Potassium iodide is used to protect the thyroid gland.", + "pos": "noun", + "word_frequency": 33448 + }, + { + "word": "jodhpur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of riding breeches; a city in India", + "example_sentence_english": "She wore her jodhpurs and riding boots to the stable.", + "pos": "noun", + "word_frequency": 33455 + }, + { + "word": "jumpstart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to start a vehicle by connecting its battery to another vehicle's battery; to revive or accelerate something", + "example_sentence_english": "We had to jumpstart the car this morning.", + "pos": "verb", + "word_frequency": 33459 + }, + { + "word": "kabuki", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a traditional Japanese theatrical art form", + "example_sentence_english": "We watched a fascinating kabuki performance in Tokyo.", + "pos": "noun", + "word_frequency": 33460 + }, + { + "word": "kindling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily combustible material used to start a fire", + "example_sentence_english": "We gathered some dry leaves and small twigs for kindling.", + "pos": "noun", + "word_frequency": 33462 + }, + { + "word": "knell", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the sound of a bell, especially when rung solemnly for a death or funeral; an omen of death or failure", + "example_sentence_english": "The church bells tolled a mournful knell.", + "pos": "noun", + "word_frequency": 33463 + }, + { + "word": "laparoscopic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or performed by laparoscopy (a surgical procedure)", + "example_sentence_english": "She underwent a laparoscopic surgery for her appendix.", + "pos": "adjective", + "word_frequency": 33467 + }, + { + "word": "leer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to look or gaze in an unpleasant, malicious, or lascivious way", + "example_sentence_english": "He gave her a suggestive leer across the room.", + "pos": "verb", + "word_frequency": 33469 + }, + { + "word": "lemur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a primate native to Madagascar", + "example_sentence_english": "The ring-tailed lemur is easily recognizable by its striped tail.", + "pos": "noun", + "word_frequency": 33470 + }, + { + "word": "linesman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official who assists the referee in sports; a person who installs or repairs overhead power or telephone lines", + "example_sentence_english": "The linesman raised his flag to signal offside.", + "pos": "noun", + "word_frequency": 33471 + }, + { + "word": "locum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who stands in for someone else, especially a doctor or cleric", + "example_sentence_english": "The hospital hired a locum doctor to cover for the vacationing staff.", + "pos": "noun", + "word_frequency": 33474 + }, + { + "word": "madder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "more angry or insane", + "example_sentence_english": "He got even madder when he heard the news.", + "pos": "adjective", + "word_frequency": 33478 + }, + { + "word": "maltreatment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruel or improper treatment", + "example_sentence_english": "The animal suffered from severe maltreatment.", + "pos": "noun", + "word_frequency": 33480 + }, + { + "word": "mandrake", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a plant with a thick, forked root", + "example_sentence_english": "In folklore, the mandrake root was believed to have magical properties.", + "pos": "noun", + "word_frequency": 33481 + }, + { + "word": "memorization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of learning something by heart", + "example_sentence_english": "Effective memorization techniques can improve study habits.", + "pos": "noun", + "word_frequency": 33490 + }, + { + "word": "misdirect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to direct wrongly", + "example_sentence_english": "The magician tried to misdirect the audience's attention.", + "pos": "verb", + "word_frequency": 33495 + }, + { + "word": "moiety", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a portion or part of something", + "example_sentence_english": "Each partner received an equal moiety of the profits.", + "pos": "noun", + "word_frequency": 33497 + }, + { + "word": "morsel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small piece of food", + "example_sentence_english": "She ate every last morsel on her plate.", + "pos": "noun", + "word_frequency": 33502 + }, + { + "word": "mugshot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a photograph of a person's face, especially one taken for official purposes", + "example_sentence_english": "The police released the suspect's mugshot to the media.", + "pos": "noun", + "word_frequency": 33505 + }, + { + "word": "mythbuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who debunks myths or popular misconceptions", + "example_sentence_english": "The show \"MythBusters\" aimed to be a mythbuster for common beliefs.", + "pos": "noun", + "word_frequency": 33511 + }, + { + "word": "nary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not a single; no", + "example_sentence_english": "There was nary a sound in the empty house.", + "pos": "adverb", + "word_frequency": 33516 + }, + { + "word": "newsflash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a brief news report of an important event", + "example_sentence_english": "We interrupted the program for a newsflash about the earthquake.", + "pos": "noun", + "word_frequency": 33521 + }, + { + "word": "nocturne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a short musical composition of a dreamy character", + "example_sentence_english": "Chopin's nocturnes are known for their beautiful melodies.", + "pos": "noun", + "word_frequency": 33524 + }, + { + "word": "nongovernmental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not belonging to or supported by a government", + "example_sentence_english": "Many nongovernmental organizations provide aid to developing countries.", + "pos": "adjective", + "word_frequency": 33525 + }, + { + "word": "ombre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gradual blending of one color hue to another", + "example_sentence_english": "She got an ombre hair color at the salon last week.", + "pos": "noun", + "word_frequency": 33528 + }, + { + "word": "oxycodone", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a strong opioid pain medication", + "example_sentence_english": "Oxycodone is a powerful painkiller often prescribed for severe pain.", + "pos": "noun", + "word_frequency": 33531 + }, + { + "word": "paleolithic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the early Stone Age", + "example_sentence_english": "Paleolithic humans used simple stone tools for hunting and gathering.", + "pos": "adjective", + "word_frequency": 33533 + }, + { + "word": "passerby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who happens to be going past something", + "example_sentence_english": "A passerby stopped to help the injured man on the street.", + "pos": "noun", + "word_frequency": 33534 + }, + { + "word": "patrolman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a police officer who patrols an area", + "example_sentence_english": "The patrolman walked his beat, checking on local businesses.", + "pos": "noun", + "word_frequency": 33535 + }, + { + "word": "pert", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lively and bold; saucy", + "example_sentence_english": "She gave a pert answer to the interviewer's question.", + "pos": "adjective", + "word_frequency": 33540 + }, + { + "word": "pollster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who conducts opinion polls", + "example_sentence_english": "The pollster interviewed voters about their preferences for the upcoming election.", + "pos": "noun", + "word_frequency": 33545 + }, + { + "word": "prat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a foolish or incompetent person (informal)", + "example_sentence_english": "Don't be such a prat; just admit you made a mistake.", + "pos": "noun", + "word_frequency": 33546 + }, + { + "word": "predominate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "be the strongest or main element; be greater in number or amount", + "example_sentence_english": "In the forest, oak trees tend to predominate over other species.", + "pos": "verb", + "word_frequency": 33548 + }, + { + "word": "printout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a page or set of pages of information produced by a computer printer", + "example_sentence_english": "Please give me a printout of that report by the end of the day.", + "pos": "noun", + "word_frequency": 33550 + }, + { + "word": "profiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who creates a psychological profile of someone", + "example_sentence_english": "The FBI profiler helped to identify the suspect's likely characteristics.", + "pos": "noun", + "word_frequency": 33551 + }, + { + "word": "proofread", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "read and mark any errors in a text", + "example_sentence_english": "Always proofread your essays carefully before submitting them.", + "pos": "verb", + "word_frequency": 33552 + }, + { + "word": "prophylactic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "intended to prevent disease", + "example_sentence_english": "The doctor prescribed a prophylactic antibiotic to prevent infection.", + "pos": "adjective", + "word_frequency": 33553 + }, + { + "word": "prophylaxis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "action taken to prevent disease", + "example_sentence_english": "Dental prophylaxis is important for maintaining good oral health.", + "pos": "noun", + "word_frequency": 33554 + }, + { + "word": "pullout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a withdrawal of troops or forces", + "example_sentence_english": "The government announced a complete pullout of troops from the region.", + "pos": "noun", + "word_frequency": 33558 + }, + { + "word": "puppeteer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who manipulates puppets", + "example_sentence_english": "The puppeteer skillfully brought the characters to life on stage.", + "pos": "noun", + "word_frequency": 33559 + }, + { + "word": "radiography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the use of X-rays or other radiation to view the internal structure of an object", + "example_sentence_english": "The doctor ordered a radiography to check for bone fractures.", + "pos": "noun", + "word_frequency": 33560 + }, + { + "word": "recherche", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "rare, exotic, or obscure", + "example_sentence_english": "She had a penchant for recherche wines.", + "pos": "adjective", + "word_frequency": 33563 + }, + { + "word": "repairman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a person whose job is to repair things", + "example_sentence_english": "The repairman fixed our washing machine.", + "pos": "noun", + "word_frequency": 33565 + }, + { + "word": "ringleader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who leads others, especially in unlawful or undesirable activities", + "example_sentence_english": "The police arrested the ringleader of the gang.", + "pos": "noun", + "word_frequency": 33568 + }, + { + "word": "rococo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an ornate and elaborate style of art and architecture", + "example_sentence_english": "The palace was decorated in the Rococo style.", + "pos": "noun", + "word_frequency": 33570 + }, + { + "word": "rottweiler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, powerful breed of dog", + "example_sentence_english": "The Rottweiler guarded the property fiercely.", + "pos": "noun", + "word_frequency": 33573 + }, + { + "word": "rumbling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a deep, continuous, resonant sound", + "example_sentence_english": "We heard the distant rumbling of thunder.", + "pos": "noun", + "word_frequency": 33577 + }, + { + "word": "sandbag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a bag filled with sand, used for protection or ballast", + "example_sentence_english": "They used sandbags to build a temporary flood barrier.", + "pos": "noun", + "word_frequency": 33580 + }, + { + "word": "scantily", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a scanty or meager way; barely", + "example_sentence_english": "She was scantily dressed for the cold weather.", + "pos": "adverb", + "word_frequency": 33584 + }, + { + "word": "secessionist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who advocates secession", + "example_sentence_english": "The secessionist movement gained momentum in the region.", + "pos": "noun", + "word_frequency": 33588 + }, + { + "word": "sepal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "each of the parts of the calyx of a flower, enclosing the petals and typically green and leaflike", + "example_sentence_english": "The green sepal protects the developing flower bud.", + "pos": "noun", + "word_frequency": 33590 + }, + { + "word": "serialize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arrange in a series or sequence", + "example_sentence_english": "The software needs to serialize the data before saving it.", + "pos": "verb", + "word_frequency": 33592 + }, + { + "word": "shader", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a program used in computer graphics to calculate rendering effects", + "example_sentence_english": "Modern video games rely heavily on complex shaders for realistic lighting.", + "pos": "noun", + "word_frequency": 33593 + }, + { + "word": "shaper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or thing that shapes something", + "example_sentence_english": "The shaper used a special tool to mold the clay.", + "pos": "noun", + "word_frequency": 33595 + }, + { + "word": "shaykh", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a leader in a Muslim community or organization", + "example_sentence_english": "The Shaykh delivered a powerful sermon.", + "pos": "noun", + "word_frequency": 33597 + }, + { + "word": "sidestep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avoid", + "example_sentence_english": "He tried to sidestep the question.", + "pos": "verb", + "word_frequency": 33600 + }, + { + "word": "slaw", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shredded cabbage salad", + "example_sentence_english": "I'd like a side of coleslaw with my meal.", + "pos": "noun", + "word_frequency": 33602 + }, + { + "word": "smokescreen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "something that hides the truth", + "example_sentence_english": "His elaborate story was just a smokescreen to hide his true intentions.", + "pos": "noun", + "word_frequency": 33603 + }, + { + "word": "snide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derogatory or mocking in an indirect way", + "example_sentence_english": "She made a snide remark about his new haircut.", + "pos": "adjective", + "word_frequency": 33604 + }, + { + "word": "sprocket", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toothed wheel", + "example_sentence_english": "The bicycle chain runs over the sprockets.", + "pos": "noun", + "word_frequency": 33609 + }, + { + "word": "squabble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarrel noisily over a trivial matter", + "example_sentence_english": "The children often squabble over toys.", + "pos": "verb", + "word_frequency": 33610 + }, + { + "word": "statin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cholesterol-lowering drug", + "example_sentence_english": "Many people take statins to manage their cholesterol levels.", + "pos": "noun", + "word_frequency": 33615 + }, + { + "word": "steeplechase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horse race with obstacles", + "example_sentence_english": "The steeplechase is a challenging event in horse racing.", + "pos": "noun", + "word_frequency": 33616 + }, + { + "word": "sternly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a strict or severe manner", + "example_sentence_english": "The teacher looked sternly at the misbehaving student.", + "pos": "adverb", + "word_frequency": 33618 + }, + { + "word": "stopwatch", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "device for measuring time", + "example_sentence_english": "He used a stopwatch to time the runners.", + "pos": "noun", + "word_frequency": 33619 + }, + { + "word": "stranglehold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complete control or dominance", + "example_sentence_english": "The company had a stranglehold on the market.", + "pos": "noun", + "word_frequency": 33620 + }, + { + "word": "stratospheric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely high", + "example_sentence_english": "The prices for houses in that area are stratospheric.", + "pos": "adjective", + "word_frequency": 33621 + }, + { + "word": "streetwear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casual clothing worn by urban youth", + "example_sentence_english": "Streetwear has become a major trend in fashion.", + "pos": "noun", + "word_frequency": 33622 + }, + { + "word": "subfamily", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taxonomic group below family", + "example_sentence_english": "The cat family is divided into several subfamilies.", + "pos": "noun", + "word_frequency": 33623 + }, + { + "word": "sulphate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemical compound containing sulfate", + "example_sentence_english": "Copper sulphate is used as a fungicide.", + "pos": "noun", + "word_frequency": 33624 + }, + { + "word": "superposition", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "combination of multiple states", + "example_sentence_english": "Quantum superposition is a fundamental principle of quantum mechanics.", + "pos": "noun", + "word_frequency": 33625 + }, + { + "word": "tachycardia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "abnormally rapid heart rate", + "example_sentence_english": "The patient was diagnosed with supraventricular tachycardia.", + "pos": "noun", + "word_frequency": 33629 + }, + { + "word": "tactful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showing sensitivity in dealing with others", + "example_sentence_english": "He gave a tactful response to avoid offending anyone.", + "pos": "adjective", + "word_frequency": 33630 + }, + { + "word": "tamarind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tropical fruit with a sour pulp", + "example_sentence_english": "Tamarind is often used in Asian and Mexican cuisine.", + "pos": "noun", + "word_frequency": 33633 + }, + { + "word": "tarte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of open pastry with a sweet or savory filling", + "example_sentence_english": "She baked a delicious apple tarte for dessert.", + "pos": "noun", + "word_frequency": 33634 + }, + { + "word": "telco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "telecommunications company", + "example_sentence_english": "The new regulations will affect all major telcos.", + "pos": "noun", + "word_frequency": 33635 + }, + { + "word": "theism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belief in the existence of a god or gods", + "example_sentence_english": "Theism is a broad category that includes many religions.", + "pos": "noun", + "word_frequency": 33637 + }, + { + "word": "theocracy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "system of government by priests in the name of God", + "example_sentence_english": "Ancient Egypt was, in many ways, a theocracy.", + "pos": "noun", + "word_frequency": 33638 + }, + { + "word": "theoretic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concerned with theory rather than practice", + "example_sentence_english": "His approach was purely theoretic, lacking practical application.", + "pos": "adjective", + "word_frequency": 33639 + }, + { + "word": "transfiguration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a complete change of form or appearance into a more beautiful or spiritual state", + "example_sentence_english": "The artist depicted the transfiguration of light into color.", + "pos": "noun", + "word_frequency": 33646 + }, + { + "word": "transphobia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dislike of or prejudice against transsexual or transgender people", + "example_sentence_english": "Education is key to combating transphobia in society.", + "pos": "noun", + "word_frequency": 33647 + }, + { + "word": "trellis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a framework of light bars or strips of wood or metal, used as a support for climbing plants", + "example_sentence_english": "She trained the rose bush to grow up the garden trellis.", + "pos": "noun", + "word_frequency": 33648 + }, + { + "word": "truthfulness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being true or honest", + "example_sentence_english": "The judge questioned the truthfulness of the witness's statement.", + "pos": "noun", + "word_frequency": 33650 + }, + { + "word": "tryptophan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an amino acid that is a constituent of most proteins", + "example_sentence_english": "Turkey is known to contain tryptophan, which can make you feel sleepy.", + "pos": "noun", + "word_frequency": 33651 + }, + { + "word": "typescript", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a typewritten copy of a text; a programming language", + "example_sentence_english": "The author submitted the typescript of her novel to the publisher.", + "pos": "noun", + "word_frequency": 33653 + }, + { + "word": "tyrannosaurus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large carnivorous dinosaur", + "example_sentence_english": "The Tyrannosaurus Rex was one of the largest land predators.", + "pos": "noun", + "word_frequency": 33654 + }, + { + "word": "undersized", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smaller than the usual or desired size", + "example_sentence_english": "The undersized puppy struggled to keep up with its siblings.", + "pos": "adjective", + "word_frequency": 33657 + }, + { + "word": "understaffed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having too few employees", + "example_sentence_english": "The hospital ward was severely understaffed during the night shift.", + "pos": "adjective", + "word_frequency": 33658 + }, + { + "word": "unexplainable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable to be explained or accounted for", + "example_sentence_english": "There was an unexplainable chill in the air.", + "pos": "adjective", + "word_frequency": 33659 + }, + { + "word": "unflinching", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not showing fear or hesitation in the face of danger or difficulty", + "example_sentence_english": "He faced the challenge with unflinching determination.", + "pos": "adjective", + "word_frequency": 33660 + }, + { + "word": "uninhibited", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expressing one's feelings or thoughts unselfconsciously and without restraint", + "example_sentence_english": "She danced with uninhibited joy at the party.", + "pos": "adjective", + "word_frequency": 33661 + }, + { + "word": "unmodified", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not changed or altered in form or character", + "example_sentence_english": "The original text remained unmodified after the review.", + "pos": "adjective", + "word_frequency": 33662 + }, + { + "word": "unpretentious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not attempting to impress others with an appearance of greater importance, talent, or culture than is actually possessed", + "example_sentence_english": "Despite his success, he remained an unpretentious and humble person.", + "pos": "adjective", + "word_frequency": 33663 + }, + { + "word": "unprocessed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having undergone a process to alter or preserve it", + "example_sentence_english": "Eating unprocessed foods is generally healthier.", + "pos": "adjective", + "word_frequency": 33664 + }, + { + "word": "unseat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remove (someone) from a position of power or authority", + "example_sentence_english": "The challenger hoped to unseat the incumbent mayor in the next election.", + "pos": "verb", + "word_frequency": 33665 + }, + { + "word": "urbanism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the study of the physical needs of urban societies", + "example_sentence_english": "Modern urbanism focuses on sustainable city planning.", + "pos": "noun", + "word_frequency": 33666 + }, + { + "word": "usurper", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who takes a position of power or importance illegally or by force", + "example_sentence_english": "The king's brother was seen as a usurper to the throne.", + "pos": "noun", + "word_frequency": 33668 + }, + { + "word": "vagary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an unexpected and inexplicable change in a situation or in someone's behavior", + "example_sentence_english": "The vagaries of the weather made planning difficult.", + "pos": "noun", + "word_frequency": 33669 + }, + { + "word": "vermouth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an aromatized, fortified wine", + "example_sentence_english": "He ordered a martini with a splash of dry vermouth.", + "pos": "noun", + "word_frequency": 33670 + }, + { + "word": "videographer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes video films", + "example_sentence_english": "The wedding videographer captured every special moment.", + "pos": "noun", + "word_frequency": 33675 + }, + { + "word": "viewfinder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device on a camera that shows the user the area of the subject that will be included in the picture", + "example_sentence_english": "He looked through the viewfinder to compose the shot.", + "pos": "noun", + "word_frequency": 33676 + }, + { + "word": "watchmaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who makes or repairs watches", + "example_sentence_english": "The old watchmaker carefully repaired the intricate gears.", + "pos": "noun", + "word_frequency": 33681 + }, + { + "word": "whitefish", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a type of freshwater fish", + "example_sentence_english": "We had smoked whitefish for dinner.", + "pos": "noun", + "word_frequency": 33684 + }, + { + "word": "workbench", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a sturdy table at which manual work is done", + "example_sentence_english": "He spent hours at his workbench, crafting wooden toys.", + "pos": "noun", + "word_frequency": 33689 + }, + { + "word": "wriggle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to twist and turn with quick, small movements", + "example_sentence_english": "The worm tried to wriggle free from the hook.", + "pos": "verb", + "word_frequency": 33690 + }, + { + "word": "yoyo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a toy consisting of a pair of discs joined by an axle", + "example_sentence_english": "He learned to do tricks with his new yoyo.", + "pos": "noun", + "word_frequency": 33695 + }, + { + "word": "accede", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to agree to a demand, request, or treaty", + "example_sentence_english": "The government was forced to accede to the protesters' demands.", + "pos": "verb", + "word_frequency": 33705 + }, + { + "word": "adjuvant", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "helping or assisting, especially in a medical context", + "example_sentence_english": "Adjuvant therapy is often used after surgery to prevent recurrence.", + "pos": "adjective", + "word_frequency": 33706 + }, + { + "word": "admixture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mixture", + "example_sentence_english": "The new alloy was an admixture of several metals.", + "pos": "noun", + "word_frequency": 33707 + }, + { + "word": "aftershock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a smaller earthquake following the main shock", + "example_sentence_english": "Residents were warned to expect aftershocks after the major earthquake.", + "pos": "noun", + "word_frequency": 33709 + }, + { + "word": "airshow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a public display of aerobatics and aircraft", + "example_sentence_english": "We went to the airshow and saw many impressive planes.", + "pos": "noun", + "word_frequency": 33711 + }, + { + "word": "albumin", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a protein found in blood plasma and egg white", + "example_sentence_english": "Albumin is a key protein for maintaining osmotic pressure in blood.", + "pos": "noun", + "word_frequency": 33712 + }, + { + "word": "antagonize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause someone to become hostile", + "example_sentence_english": "Don't antagonize the dog, or it might bite.", + "pos": "verb", + "word_frequency": 33717 + }, + { + "word": "anthracite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hard, compact variety of coal", + "example_sentence_english": "Anthracite is known for its high carbon content and clean burning.", + "pos": "noun", + "word_frequency": 33719 + }, + { + "word": "artifice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clever trick or stratagem", + "example_sentence_english": "The magician's trick was pure artifice.", + "pos": "noun", + "word_frequency": 33725 + }, + { + "word": "assistive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "providing help or support", + "example_sentence_english": "Assistive technology helps people with disabilities.", + "pos": "adjective", + "word_frequency": 33728 + }, + { + "word": "audibly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that can be heard", + "example_sentence_english": "He sighed audibly, showing his frustration.", + "pos": "adverb", + "word_frequency": 33729 + }, + { + "word": "bidet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basin for washing genitals", + "example_sentence_english": "Many European bathrooms include a bidet.", + "pos": "noun", + "word_frequency": 33738 + }, + { + "word": "bluster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "talk in a loud, aggressive, or arrogant way", + "example_sentence_english": "He tried to bluster his way out of trouble.", + "pos": "verb", + "word_frequency": 33742 + }, + { + "word": "bookworm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person who loves to read", + "example_sentence_english": "My sister is a real bookworm; she reads constantly.", + "pos": "noun", + "word_frequency": 33745 + }, + { + "word": "brut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very dry (wine, especially champagne)", + "example_sentence_english": "We celebrated with a bottle of brut champagne.", + "pos": "adjective", + "word_frequency": 33749 + }, + { + "word": "bung", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stopper for a hole", + "example_sentence_english": "He pulled the bung out of the barrel.", + "pos": "noun", + "word_frequency": 33753 + }, + { + "word": "burqa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outer garment worn by some Muslim women", + "example_sentence_english": "In some countries, women wear a burqa in public.", + "pos": "noun", + "word_frequency": 33755 + }, + { + "word": "bursary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grant, especially one to a student", + "example_sentence_english": "She received a bursary to help with her university fees.", + "pos": "noun", + "word_frequency": 33756 + }, + { + "word": "caffeinate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "add caffeine to; stimulate with caffeine", + "example_sentence_english": "I need to caffeinate before my morning meeting.", + "pos": "verb", + "word_frequency": 33759 + }, + { + "word": "cannery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A factory where food is canned.", + "example_sentence_english": "The old cannery by the river has been converted into apartments.", + "pos": "noun", + "word_frequency": 33761 + }, + { + "word": "catamaran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A boat with two parallel hulls.", + "example_sentence_english": "We rented a catamaran for a day of sailing on the lake.", + "pos": "noun", + "word_frequency": 33763 + }, + { + "word": "changeling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A child believed to have been secretly substituted by fairies for another.", + "example_sentence_english": "In folklore, a changeling is a fairy child left in place of a human child.", + "pos": "noun", + "word_frequency": 33766 + }, + { + "word": "chargeable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Liable to be charged or debited.", + "example_sentence_english": "Any extra services will be chargeable to your room.", + "pos": "adjective", + "word_frequency": 33767 + }, + { + "word": "chatroom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "An online forum for real-time text communication.", + "example_sentence_english": "She spent hours talking to friends in the online chatroom.", + "pos": "noun", + "word_frequency": 33769 + }, + { + "word": "checkin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "The act of registering arrival at a hotel or airport.", + "example_sentence_english": "The checkin desk is located on the ground floor.", + "pos": "noun", + "word_frequency": 33771 + }, + { + "word": "coauthor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A joint author.", + "example_sentence_english": "She is the coauthor of several academic papers.", + "pos": "noun", + "word_frequency": 33777 + }, + { + "word": "cookware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Utensils for cooking.", + "example_sentence_english": "The kitchen store has a wide selection of cookware.", + "pos": "noun", + "word_frequency": 33780 + }, + { + "word": "corduroy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A durable fabric with a distinctive ridged surface.", + "example_sentence_english": "He wore a jacket made of thick corduroy.", + "pos": "noun", + "word_frequency": 33784 + }, + { + "word": "corky", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Resembling cork; light and buoyant; lively or eccentric.", + "example_sentence_english": "The old wine had a slightly corky taste.", + "pos": "adjective", + "word_frequency": 33785 + }, + { + "word": "counterculture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A way of life and set of attitudes opposed to the prevailing social norm.", + "example_sentence_english": "The 1960s were a period of significant counterculture movements.", + "pos": "noun", + "word_frequency": 33788 + }, + { + "word": "criminalize", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make something illegal.", + "example_sentence_english": "Many countries have chosen to criminalize certain drugs.", + "pos": "verb", + "word_frequency": 33790 + }, + { + "word": "crummy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Of poor quality; dirty or unpleasant.", + "example_sentence_english": "The hotel room was really crummy and needed a renovation.", + "pos": "adjective", + "word_frequency": 33791 + }, + { + "word": "datacenter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A large group of networked computer servers used for remote data storage and processing.", + "example_sentence_english": "The company decided to build a new datacenter to handle its growing data needs.", + "pos": "noun", + "word_frequency": 33796 + }, + { + "word": "decryption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The process of converting encrypted data back into its original form.", + "example_sentence_english": "The software handles the encryption and decryption of sensitive files.", + "pos": "noun", + "word_frequency": 33797 + }, + { + "word": "detoxification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of removing toxic substances", + "example_sentence_english": "The clinic specializes in detoxification programs.", + "pos": "noun", + "word_frequency": 33803 + }, + { + "word": "diatribe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a forceful and bitter verbal attack", + "example_sentence_english": "The politician launched into a lengthy diatribe against his opponents.", + "pos": "noun", + "word_frequency": 33805 + }, + { + "word": "dinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a unit of currency in several Middle Eastern and North African countries", + "example_sentence_english": "He exchanged his dollars for Jordanian dinars.", + "pos": "noun", + "word_frequency": 33806 + }, + { + "word": "diplomatically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is tactful and sensitive", + "example_sentence_english": "She handled the difficult situation very diplomatically.", + "pos": "adverb", + "word_frequency": 33808 + }, + { + "word": "ditty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short, simple song", + "example_sentence_english": "He hummed a cheerful ditty as he worked.", + "pos": "noun", + "word_frequency": 33809 + }, + { + "word": "dogfight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a close combat between two or more fighter aircraft", + "example_sentence_english": "The pilots engaged in a fierce dogfight over enemy territory.", + "pos": "noun", + "word_frequency": 33810 + }, + { + "word": "downfield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further down the playing field", + "example_sentence_english": "The quarterback threw a long pass downfield.", + "pos": "adjective", + "word_frequency": 33812 + }, + { + "word": "droll", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "curious or unusual in a way that provokes dry amusement", + "example_sentence_english": "He had a droll sense of humor that always made people smile.", + "pos": "adjective", + "word_frequency": 33813 + }, + { + "word": "drudgery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hard, menial, or dull work", + "example_sentence_english": "She was tired of the daily drudgery of her job.", + "pos": "noun", + "word_frequency": 33814 + }, + { + "word": "ducat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a gold coin formerly current in most European countries", + "example_sentence_english": "The merchant paid for the goods with several ducats.", + "pos": "noun", + "word_frequency": 33816 + }, + { + "word": "durian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, oval, spiny tropical fruit with a strong, distinctive odor", + "example_sentence_english": "The durian is known for its strong smell and unique taste.", + "pos": "noun", + "word_frequency": 33818 + }, + { + "word": "electrocution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death or injury by electric shock", + "example_sentence_english": "He warned about the risk of electrocution from faulty wiring.", + "pos": "noun", + "word_frequency": 33824 + }, + { + "word": "emolument", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a salary, fee, or profit from employment or office", + "example_sentence_english": "The CEO's emoluments included a large bonus and stock options.", + "pos": "noun", + "word_frequency": 33826 + }, + { + "word": "endometrial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the endometrium (lining of the uterus)", + "example_sentence_english": "Endometrial cancer is a type of cancer that begins in the lining of the uterus.", + "pos": "adjective", + "word_frequency": 33827 + }, + { + "word": "erg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a unit of energy equal to 10⁻⁷ joules", + "example_sentence_english": "The erg is a unit of energy in the CGS system.", + "pos": "noun", + "word_frequency": 33829 + }, + { + "word": "eucharistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Eucharist (Christian sacrament)", + "example_sentence_english": "The priest led the eucharistic celebration.", + "pos": "adjective", + "word_frequency": 33830 + }, + { + "word": "exhortation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an address or communication emphatically urging someone to do something", + "example_sentence_english": "His speech was a powerful exhortation to action.", + "pos": "noun", + "word_frequency": 33832 + }, + { + "word": "fader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device for gradually increasing or decreasing the strength of a signal", + "example_sentence_english": "Adjust the fader to control the volume of the track.", + "pos": "noun", + "word_frequency": 33834 + }, + { + "word": "fallopian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the Fallopian tubes", + "example_sentence_english": "The egg travels from the ovary through the fallopian tube to the uterus.", + "pos": "adjective", + "word_frequency": 33835 + }, + { + "word": "fistful", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as much as can be held in a closed hand", + "example_sentence_english": "He grabbed a fistful of coins from his pocket.", + "pos": "noun", + "word_frequency": 33837 + }, + { + "word": "flatulence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the accumulation of gas in the alimentary canal", + "example_sentence_english": "Certain foods can cause flatulence.", + "pos": "noun", + "word_frequency": 33839 + }, + { + "word": "flowchart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a diagram showing the steps of a process", + "example_sentence_english": "The team used a flowchart to visualize the workflow.", + "pos": "noun", + "word_frequency": 33841 + }, + { + "word": "foetal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a fetus", + "example_sentence_english": "Ultrasound scans monitor foetal development.", + "pos": "adjective", + "word_frequency": 33842 + }, + { + "word": "forgetfulness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being forgetful", + "example_sentence_english": "His increasing forgetfulness was a cause for concern.", + "pos": "noun", + "word_frequency": 33843 + }, + { + "word": "fresher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a first-year university student (UK)", + "example_sentence_english": "The university welcomed its new batch of freshers.", + "pos": "noun", + "word_frequency": 33845 + }, + { + "word": "garish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obtrusively bright and showy", + "example_sentence_english": "She disliked the garish colors of the painting.", + "pos": "adjective", + "word_frequency": 33848 + }, + { + "word": "geodetic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to geodesy, the science of measuring the Earth's shape", + "example_sentence_english": "Geodetic surveys are crucial for accurate mapping.", + "pos": "adjective", + "word_frequency": 33851 + }, + { + "word": "globalism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the attitude or policy of placing the interests of the entire world above those of individual nations", + "example_sentence_english": "The debate often centers on the pros and cons of globalism.", + "pos": "noun", + "word_frequency": 33854 + }, + { + "word": "googly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of delivery in cricket that spins in the opposite direction to a leg break", + "example_sentence_english": "The bowler surprised the batsman with a deceptive googly.", + "pos": "adjective", + "word_frequency": 33855 + }, + { + "word": "gunslinger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who carries and uses a gun, especially in the American Wild West", + "example_sentence_english": "The movie featured a lone gunslinger seeking revenge.", + "pos": "noun", + "word_frequency": 33859 + }, + { + "word": "headspace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the space above the contents of a container; mental clarity", + "example_sentence_english": "I need some headspace to think clearly about this problem.", + "pos": "noun", + "word_frequency": 33864 + }, + { + "word": "healthily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that promotes good health", + "example_sentence_english": "She eats healthily and exercises regularly.", + "pos": "adverb", + "word_frequency": 33865 + }, + { + "word": "hedonistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "engaged in the pursuit of pleasure; pleasure-seeking", + "example_sentence_english": "His lifestyle was described as purely hedonistic.", + "pos": "adjective", + "word_frequency": 33866 + }, + { + "word": "hegemonic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "ruling or dominant in a political or social context", + "example_sentence_english": "The country sought to establish its hegemonic influence in the region.", + "pos": "adjective", + "word_frequency": 33867 + }, + { + "word": "histological", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the study of the microscopic structure of tissues", + "example_sentence_english": "The biopsy required a detailed histological examination.", + "pos": "adjective", + "word_frequency": 33871 + }, + { + "word": "hobble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk with difficulty, typically because of an injury", + "example_sentence_english": "He had to hobble home after twisting his ankle.", + "pos": "verb", + "word_frequency": 33872 + }, + { + "word": "hysteric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person suffering from or prone to hysteria", + "example_sentence_english": "She became an absolute hysteric when she heard the news.", + "pos": "noun", + "word_frequency": 33876 + }, + { + "word": "infill", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the development of vacant or underused land within an existing urban area", + "example_sentence_english": "The city council approved the infill project to increase housing density.", + "pos": "noun", + "word_frequency": 33878 + }, + { + "word": "injurious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing or likely to cause damage or harm", + "example_sentence_english": "Smoking is injurious to health.", + "pos": "adjective", + "word_frequency": 33879 + }, + { + "word": "integrator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device or person that integrates", + "example_sentence_english": "The new software acts as an integrator for all our different systems.", + "pos": "noun", + "word_frequency": 33880 + }, + { + "word": "interminable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endless or apparently endless", + "example_sentence_english": "The speaker's interminable monologue put half the audience to sleep.", + "pos": "adjective", + "word_frequency": 33881 + }, + { + "word": "interrogator", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who asks questions, especially in an official context", + "example_sentence_english": "The suspect refused to answer any questions from the interrogator.", + "pos": "noun", + "word_frequency": 33882 + }, + { + "word": "itty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny; very small", + "example_sentence_english": "She found an itty-bitty spider crawling on her hand.", + "pos": "adjective", + "word_frequency": 33884 + }, + { + "word": "jinn", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an intelligent spirit of lower rank than the angels, able to appear in human and animal forms and to possess humans", + "example_sentence_english": "In Arabian mythology, a jinn can grant wishes or cause mischief.", + "pos": "noun", + "word_frequency": 33886 + }, + { + "word": "keratin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fibrous protein forming the main structural constituent of hair, feathers, hoofs, claws, horns, etc.", + "example_sentence_english": "Hair and nails are primarily composed of keratin.", + "pos": "noun", + "word_frequency": 33889 + }, + { + "word": "kidder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who jokes or teases", + "example_sentence_english": "He's a real kidder; you can never tell if he's serious.", + "pos": "noun", + "word_frequency": 33891 + }, + { + "word": "kooky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strange or eccentric", + "example_sentence_english": "Her kooky sense of humor always makes everyone laugh.", + "pos": "adjective", + "word_frequency": 33894 + }, + { + "word": "leaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who reveals secret information", + "example_sentence_english": "The government is trying to identify the leaker of the classified documents.", + "pos": "noun", + "word_frequency": 33898 + }, + { + "word": "leery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cautious or wary due to suspicion", + "example_sentence_english": "She was leery of trusting him after he had lied before.", + "pos": "adjective", + "word_frequency": 33899 + }, + { + "word": "lessee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who holds the lease of a property; a tenant", + "example_sentence_english": "The lessee is responsible for maintaining the property during the lease term.", + "pos": "noun", + "word_frequency": 33900 + }, + { + "word": "lodger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who pays rent for a room in someone's house", + "example_sentence_english": "The old woman took in a lodger to help pay for her expenses.", + "pos": "noun", + "word_frequency": 33904 + }, + { + "word": "magnetize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make magnetic", + "example_sentence_english": "You can magnetize a needle by rubbing it with a strong magnet.", + "pos": "verb", + "word_frequency": 33910 + }, + { + "word": "mastiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a dog of a large, powerful breed of molosser, often used as a guard dog", + "example_sentence_english": "The large mastiff guarded the entrance to the estate.", + "pos": "noun", + "word_frequency": 33915 + }, + { + "word": "melodious", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasant-sounding; tuneful", + "example_sentence_english": "The bird's song was melodious and calming.", + "pos": "adjective", + "word_frequency": 33920 + }, + { + "word": "microfinance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "small loans to poor people", + "example_sentence_english": "Microfinance initiatives help empower entrepreneurs in developing countries.", + "pos": "noun", + "word_frequency": 33921 + }, + { + "word": "middleware", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "software connecting applications", + "example_sentence_english": "The new system requires robust middleware to integrate all its components.", + "pos": "noun", + "word_frequency": 33922 + }, + { + "word": "midshipman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naval officer cadet", + "example_sentence_english": "A midshipman is training to become a naval officer.", + "pos": "noun", + "word_frequency": 33924 + }, + { + "word": "miff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoy slightly", + "example_sentence_english": "Her casual remark seemed to miff him.", + "pos": "verb", + "word_frequency": 33925 + }, + { + "word": "mismanage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manage badly or inefficiently", + "example_sentence_english": "The company's finances were severely mismanaged.", + "pos": "verb", + "word_frequency": 33929 + }, + { + "word": "mistral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strong, cold wind in southern France", + "example_sentence_english": "The mistral wind can be very strong in the Rhône Valley.", + "pos": "noun", + "word_frequency": 33930 + }, + { + "word": "mockingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a mocking manner", + "example_sentence_english": "He smiled mockingly at her suggestion.", + "pos": "adverb", + "word_frequency": 33931 + }, + { + "word": "mook", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foolish or contemptible person", + "example_sentence_english": "Don't be such a mook; think before you act.", + "pos": "noun", + "word_frequency": 33932 + }, + { + "word": "morbidly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a morbid manner", + "example_sentence_english": "He was morbidly fascinated by true crime stories.", + "pos": "adverb", + "word_frequency": 33933 + }, + { + "word": "naan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leavened flatbread", + "example_sentence_english": "We ordered chicken curry with a side of naan bread.", + "pos": "noun", + "word_frequency": 33938 + }, + { + "word": "naivety", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of experience, wisdom, or judgment", + "example_sentence_english": "Her naivety made her vulnerable to scams.", + "pos": "noun", + "word_frequency": 33939 + }, + { + "word": "nastiness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasantness; unkindness", + "example_sentence_english": "The nastiness of his comments shocked everyone.", + "pos": "noun", + "word_frequency": 33942 + }, + { + "word": "nazarene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhabitant of Nazareth; follower of Jesus", + "example_sentence_english": "Jesus was often referred to as the Nazarene.", + "pos": "noun", + "word_frequency": 33943 + }, + { + "word": "newsstand", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stall selling newspapers and magazines", + "example_sentence_english": "I bought a magazine from the newsstand at the station.", + "pos": "noun", + "word_frequency": 33946 + }, + { + "word": "nonchalantly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a casually calm and relaxed manner", + "example_sentence_english": "He nonchalantly shrugged off the criticism.", + "pos": "adverb", + "word_frequency": 33947 + }, + { + "word": "onetime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former; previous", + "example_sentence_english": "He was a onetime champion in the boxing world.", + "pos": "adjective", + "word_frequency": 33955 + }, + { + "word": "orthography", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conventional spelling system", + "example_sentence_english": "English orthography can be challenging due to its irregular spellings.", + "pos": "noun", + "word_frequency": 33957 + }, + { + "word": "ovate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "egg-shaped", + "example_sentence_english": "The leaf had an ovate shape, wider at the base.", + "pos": "adjective", + "word_frequency": 33959 + }, + { + "word": "pageantry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elaborate display or ceremony", + "example_sentence_english": "The royal wedding was full of pomp and pageantry.", + "pos": "noun", + "word_frequency": 33961 + }, + { + "word": "parallelism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of being parallel or corresponding in some way", + "example_sentence_english": "The speech used parallelism to emphasize key points.", + "pos": "noun", + "word_frequency": 33962 + }, + { + "word": "penitent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feeling or showing sorrow and regret for having done wrong", + "example_sentence_english": "The penitent sinner sought forgiveness.", + "pos": "adjective", + "word_frequency": 33965 + }, + { + "word": "pentagram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a five-pointed star", + "example_sentence_english": "The magician drew a pentagram on the floor.", + "pos": "noun", + "word_frequency": 33966 + }, + { + "word": "phlegm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thick viscous substance secreted by the mucous membranes", + "example_sentence_english": "He coughed up some phlegm.", + "pos": "noun", + "word_frequency": 33969 + }, + { + "word": "photonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to photons or light", + "example_sentence_english": "Researchers are developing new photonic devices.", + "pos": "adjective", + "word_frequency": 33970 + }, + { + "word": "pomeranian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small dog breed", + "example_sentence_english": "My neighbor has a fluffy Pomeranian.", + "pos": "noun", + "word_frequency": 33973 + }, + { + "word": "possessor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who owns or has something", + "example_sentence_english": "The true possessor of the treasure was unknown.", + "pos": "noun", + "word_frequency": 33975 + }, + { + "word": "precipitous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dangerously high or steep", + "example_sentence_english": "The hikers faced a precipitous climb.", + "pos": "adjective", + "word_frequency": 33976 + }, + { + "word": "prioritization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action or process of deciding the relative importance or urgency of a thing or things", + "example_sentence_english": "Effective prioritization is key to managing tasks.", + "pos": "noun", + "word_frequency": 33977 + }, + { + "word": "profiteer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "make or seek to make an excessive or unfair profit", + "example_sentence_english": "Some companies were accused of trying to profiteer during the crisis.", + "pos": "verb", + "word_frequency": 33978 + }, + { + "word": "prude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is excessively concerned about sexual propriety", + "example_sentence_english": "Some people consider him a prude because of his strict views.", + "pos": "noun", + "word_frequency": 33980 + }, + { + "word": "purifier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device or substance that removes impurities", + "example_sentence_english": "We bought an air purifier for the bedroom.", + "pos": "noun", + "word_frequency": 33981 + }, + { + "word": "racecar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a car designed for racing", + "example_sentence_english": "The racecar sped around the track.", + "pos": "noun", + "word_frequency": 33984 + }, + { + "word": "raglan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of sleeve extending in one piece to the collar", + "example_sentence_english": "She wore a sweater with raglan sleeves.", + "pos": "noun", + "word_frequency": 33985 + }, + { + "word": "randomise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "make random in order or arrangement", + "example_sentence_english": "The software can randomise the order of questions.", + "pos": "verb", + "word_frequency": 33986 + }, + { + "word": "rapier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a thin, light sword", + "example_sentence_english": "He fenced with a sharp rapier.", + "pos": "noun", + "word_frequency": 33987 + }, + { + "word": "readjust", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjust again or in a different way", + "example_sentence_english": "She had to readjust her schedule after the change.", + "pos": "verb", + "word_frequency": 33988 + }, + { + "word": "ream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large quantity of paper (usually 500 sheets) or a large amount of something", + "example_sentence_english": "He bought a ream of paper for the printer.", + "pos": "noun", + "word_frequency": 33989 + }, + { + "word": "redirection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of directing something to a new or different place or purpose", + "example_sentence_english": "The website implemented a redirection to the new page.", + "pos": "noun", + "word_frequency": 33990 + }, + { + "word": "reputedly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "according to what is generally said or believed", + "example_sentence_english": "He is reputedly the best chef in the city.", + "pos": "adverb", + "word_frequency": 33991 + }, + { + "word": "riverbed", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the ground at the bottom of a river", + "example_sentence_english": "The ancient artifacts were found in the riverbed.", + "pos": "noun", + "word_frequency": 33992 + }, + { + "word": "roundly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a thorough or emphatic manner", + "example_sentence_english": "He was roundly criticized for his actions.", + "pos": "adverb", + "word_frequency": 33995 + }, + { + "word": "rummage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "search unsystematically and untidily through a mass or collection of things", + "example_sentence_english": "She began to rummage through her bag for her keys.", + "pos": "verb", + "word_frequency": 33997 + }, + { + "word": "sacramental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or constituting a sacrament or sacred rite", + "example_sentence_english": "The priest performed the sacramental rites.", + "pos": "adjective", + "word_frequency": 33999 + }, + { + "word": "sanctimonious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "making a show of being morally superior to other people", + "example_sentence_english": "His sanctimonious attitude made him unpopular with his colleagues.", + "pos": "adjective", + "word_frequency": 34000 + }, + { + "word": "sardonic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grimly mocking or cynical", + "example_sentence_english": "He delivered a sardonic comment about the politician's speech.", + "pos": "adjective", + "word_frequency": 34001 + }, + { + "word": "sate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satisfy (a desire or an appetite) to the full", + "example_sentence_english": "A good meal will sate your hunger.", + "pos": "verb", + "word_frequency": 34002 + }, + { + "word": "sequencer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a device that puts things in a specific order", + "example_sentence_english": "The musician used a sequencer to program the drum beats.", + "pos": "noun", + "word_frequency": 34008 + }, + { + "word": "singe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burn (something) superficially or lightly", + "example_sentence_english": "The flame singed the edges of the paper.", + "pos": "verb", + "word_frequency": 34014 + }, + { + "word": "snowboarder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who snowboards", + "example_sentence_english": "The snowboarder performed an impressive trick.", + "pos": "noun", + "word_frequency": 34016 + }, + { + "word": "solvable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be solved or explained", + "example_sentence_english": "The puzzle seemed difficult, but it was ultimately solvable.", + "pos": "adjective", + "word_frequency": 34018 + }, + { + "word": "sorrel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a plant with edible leaves; a reddish-brown color", + "example_sentence_english": "She added fresh sorrel to the salad.", + "pos": "noun", + "word_frequency": 34020 + }, + { + "word": "southwards", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toward the south", + "example_sentence_english": "The birds flew southwards for the winter.", + "pos": "adverb", + "word_frequency": 34021 + }, + { + "word": "spanner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a tool for tightening or loosening nuts and bolts", + "example_sentence_english": "He used a spanner to fix the bicycle.", + "pos": "noun", + "word_frequency": 34022 + }, + { + "word": "speakeasy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an illicit liquor store or nightclub during Prohibition", + "example_sentence_english": "They found a hidden speakeasy behind the bookstore.", + "pos": "noun", + "word_frequency": 34023 + }, + { + "word": "specialisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the process of becoming an expert in a particular area", + "example_sentence_english": "His specialisation is in artificial intelligence.", + "pos": "noun", + "word_frequency": 34024 + }, + { + "word": "spiritualism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a system of belief or religious practice based on supposed communication with the spirits of the dead", + "example_sentence_english": "She was interested in spiritualism and attended seances.", + "pos": "noun", + "word_frequency": 34026 + }, + { + "word": "staccato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "performed with each note sharply detached or separated from the others; abrupt", + "example_sentence_english": "He spoke in short, staccato sentences.", + "pos": "adjective", + "word_frequency": 34029 + }, + { + "word": "staid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serious, respectable, and unadventurous", + "example_sentence_english": "The staid old professor rarely smiled.", + "pos": "adjective", + "word_frequency": 34030 + }, + { + "word": "stormtrooper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a member of a specialized shock troop; a fictional soldier from Star Wars", + "example_sentence_english": "The child dressed up as a stormtrooper for Halloween.", + "pos": "noun", + "word_frequency": 34033 + }, + { + "word": "subatomic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smaller than or occurring within an atom", + "example_sentence_english": "Scientists study subatomic particles.", + "pos": "adjective", + "word_frequency": 34036 + }, + { + "word": "sulk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "be silent, morose, and bad-tempered out of annoyance or disappointment", + "example_sentence_english": "He went to his room to sulk after losing the game.", + "pos": "verb", + "word_frequency": 34038 + }, + { + "word": "tasting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an event where food or drink is sampled", + "example_sentence_english": "We went to a wine tasting last weekend.", + "pos": "noun", + "word_frequency": 34042 + }, + { + "word": "tatter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a torn piece of cloth", + "example_sentence_english": "His old coat was reduced to tatters.", + "pos": "noun", + "word_frequency": 34043 + }, + { + "word": "tenderloin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cut of meat from the loin", + "example_sentence_english": "We had a delicious beef tenderloin for dinner.", + "pos": "noun", + "word_frequency": 34045 + }, + { + "word": "thymus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a lymphoid organ in the neck", + "example_sentence_english": "The thymus plays a vital role in the immune system.", + "pos": "noun", + "word_frequency": 34046 + }, + { + "word": "tidewater", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "water affected by tides", + "example_sentence_english": "The tidewater region is known for its fertile soil.", + "pos": "noun", + "word_frequency": 34047 + }, + { + "word": "timberland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "land covered with timber-producing trees", + "example_sentence_english": "The company owns vast tracts of timberland.", + "pos": "noun", + "word_frequency": 34048 + }, + { + "word": "tomcat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a male cat", + "example_sentence_english": "Our neighbor's tomcat often visits our garden.", + "pos": "noun", + "word_frequency": 34049 + }, + { + "word": "unappreciated", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not valued or recognized", + "example_sentence_english": "His efforts often went unappreciated.", + "pos": "adjective", + "word_frequency": 34053 + }, + { + "word": "uncaring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not showing sympathy or concern", + "example_sentence_english": "His uncaring attitude upset everyone.", + "pos": "adjective", + "word_frequency": 34054 + }, + { + "word": "uncharacteristic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not typical of a particular person or thing", + "example_sentence_english": "His outburst was completely uncharacteristic.", + "pos": "adjective", + "word_frequency": 34055 + }, + { + "word": "uncommonly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rarely or unusually", + "example_sentence_english": "She is uncommonly talented at painting.", + "pos": "adverb", + "word_frequency": 34056 + }, + { + "word": "undercooked", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not cooked enough", + "example_sentence_english": "The chicken was a bit undercooked.", + "pos": "adjective", + "word_frequency": 34057 + }, + { + "word": "unplayable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible or too difficult to play", + "example_sentence_english": "The tennis court was unplayable due to the rain.", + "pos": "adjective", + "word_frequency": 34058 + }, + { + "word": "usefully", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a way that is helpful or beneficial", + "example_sentence_english": "He spent his time usefully studying for the exam.", + "pos": "adverb", + "word_frequency": 34059 + }, + { + "word": "vagueness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lack of clarity or precision", + "example_sentence_english": "The vagueness of the instructions led to confusion.", + "pos": "noun", + "word_frequency": 34061 + }, + { + "word": "valerian", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a plant used as a herbal remedy", + "example_sentence_english": "Valerian root is often used to aid sleep.", + "pos": "noun", + "word_frequency": 34062 + }, + { + "word": "vocab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vocabulary (informal)", + "example_sentence_english": "I need to learn more vocab for the test.", + "pos": "noun", + "word_frequency": 34065 + }, + { + "word": "waddle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk with short steps, swaying from side to side", + "example_sentence_english": "The duck began to waddle towards the pond.", + "pos": "verb", + "word_frequency": 34067 + }, + { + "word": "watchable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worth watching; entertaining", + "example_sentence_english": "Despite the low budget, the movie was surprisingly watchable.", + "pos": "adjective", + "word_frequency": 34068 + }, + { + "word": "wherewithal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the money or means needed for a purpose", + "example_sentence_english": "He lacked the wherewithal to start his own business.", + "pos": "noun", + "word_frequency": 34070 + }, + { + "word": "wombat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a burrowing marsupial native to Australia", + "example_sentence_english": "The wombat is known for its powerful claws.", + "pos": "noun", + "word_frequency": 34072 + }, + { + "word": "workweek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the part of the week during which one works", + "example_sentence_english": "The standard workweek is five days long.", + "pos": "noun", + "word_frequency": 34074 + }, + { + "word": "absenteeism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the practice of regularly staying away from work or school without good reason", + "example_sentence_english": "The company is trying to reduce absenteeism among its employees.", + "pos": "noun", + "word_frequency": 34083 + }, + { + "word": "ajar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slightly open", + "example_sentence_english": "The door was left ajar.", + "pos": "adjective", + "word_frequency": 34085 + }, + { + "word": "apogee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the highest point in the development of something", + "example_sentence_english": "The band reached the apogee of their career with that album.", + "pos": "noun", + "word_frequency": 34095 + }, + { + "word": "ashy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resembling ashes in color or texture", + "example_sentence_english": "His skin looked ashy after being out in the cold.", + "pos": "adjective", + "word_frequency": 34097 + }, + { + "word": "backboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a board placed behind the basket in basketball", + "example_sentence_english": "He shot the ball off the backboard and into the hoop.", + "pos": "noun", + "word_frequency": 34099 + }, + { + "word": "bandstand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a covered outdoor platform for a band to play on", + "example_sentence_english": "The concert was held at the bandstand in the park.", + "pos": "noun", + "word_frequency": 34101 + }, + { + "word": "banyan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an Indian fig tree whose branches send out aerial roots", + "example_sentence_english": "The ancient banyan tree provided shade for the villagers.", + "pos": "noun", + "word_frequency": 34102 + }, + { + "word": "barnyard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an area next to a barn", + "example_sentence_english": "The chickens were pecking for grain in the barnyard.", + "pos": "noun", + "word_frequency": 34104 + }, + { + "word": "bazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a market in a Middle Eastern country", + "example_sentence_english": "We bought souvenirs at the local bazar.", + "pos": "noun", + "word_frequency": 34108 + }, + { + "word": "begrudge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to envy someone the possession or enjoyment of something", + "example_sentence_english": "I don't begrudge him his success.", + "pos": "verb", + "word_frequency": 34112 + }, + { + "word": "belatedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "later than should have been the case", + "example_sentence_english": "He belatedly realized his mistake.", + "pos": "adverb", + "word_frequency": 34113 + }, + { + "word": "biogas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a mixture of gases produced by the breakdown of organic matter, used as fuel", + "example_sentence_english": "The farm uses biogas to generate electricity.", + "pos": "noun", + "word_frequency": 34118 + }, + { + "word": "bioscience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the study of living organisms", + "example_sentence_english": "She is pursuing a career in bioscience research.", + "pos": "noun", + "word_frequency": 34119 + }, + { + "word": "bishopric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The office or diocese of a bishop.", + "example_sentence_english": "The bishopric covers several rural parishes.", + "pos": "noun", + "word_frequency": 34120 + }, + { + "word": "blitzer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person or team that attacks very quickly and aggressively.", + "example_sentence_english": "The team's star blitzer put constant pressure on the quarterback.", + "pos": "noun", + "word_frequency": 34122 + }, + { + "word": "bookish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Fond of reading and studying; scholarly.", + "example_sentence_english": "She had a quiet, bookish nature and preferred libraries to parties.", + "pos": "adjective", + "word_frequency": 34123 + }, + { + "word": "brainiac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A highly intelligent person.", + "example_sentence_english": "The new intern is a real brainiac; she solved the problem in minutes.", + "pos": "noun", + "word_frequency": 34125 + }, + { + "word": "brioche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A rich, sweet bread.", + "example_sentence_english": "She ordered a coffee and a warm brioche for breakfast.", + "pos": "noun", + "word_frequency": 34128 + }, + { + "word": "brutish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Resembling a brute; savage, cruel, or uncivilized.", + "example_sentence_english": "His brutish behavior made everyone uncomfortable.", + "pos": "adjective", + "word_frequency": 34129 + }, + { + "word": "bushing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A lining for a hole, especially one to prevent wear or to insulate.", + "example_sentence_english": "The mechanic replaced the worn bushing in the car's suspension.", + "pos": "noun", + "word_frequency": 34133 + }, + { + "word": "busily", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "In a busy manner; actively.", + "example_sentence_english": "The bees were busily collecting nectar from the flowers.", + "pos": "adverb", + "word_frequency": 34134 + }, + { + "word": "byline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A line in a newspaper or magazine article giving the name of the writer.", + "example_sentence_english": "Her name appeared in the byline of the front-page story.", + "pos": "noun", + "word_frequency": 34135 + }, + { + "word": "calamari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Squid, especially when cooked and eaten.", + "example_sentence_english": "We ordered fried calamari as an appetizer.", + "pos": "noun", + "word_frequency": 34136 + }, + { + "word": "cami", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A camisole; a woman's loose-fitting undergarment for the upper body.", + "example_sentence_english": "She wore a silk cami under her blazer.", + "pos": "noun", + "word_frequency": 34137 + }, + { + "word": "cannabinoid", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Any of a class of chemical compounds that act on cannabinoid receptors in cells.", + "example_sentence_english": "Researchers are studying the potential therapeutic effects of various cannabinoids.", + "pos": "noun", + "word_frequency": 34138 + }, + { + "word": "ceaseless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Constant and unending.", + "example_sentence_english": "The ceaseless rain made the river overflow its banks.", + "pos": "adjective", + "word_frequency": 34145 + }, + { + "word": "charmingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a charming or delightful manner.", + "example_sentence_english": "She smiled charmingly at the audience before beginning her speech.", + "pos": "adverb", + "word_frequency": 34147 + }, + { + "word": "chinchilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small rodent native to the Andes, known for its soft fur.", + "example_sentence_english": "The chinchilla is a popular pet due to its gentle nature and soft fur.", + "pos": "noun", + "word_frequency": 34148 + }, + { + "word": "chrysanthemum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A popular garden plant of the daisy family, with brightly colored ornamental flowers.", + "example_sentence_english": "She arranged a beautiful bouquet of chrysanthemums for the table.", + "pos": "noun", + "word_frequency": 34149 + }, + { + "word": "cognitively", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "In a way that relates to cognition; mentally.", + "example_sentence_english": "The patient's ability to process information cognitively was impaired.", + "pos": "adverb", + "word_frequency": 34151 + }, + { + "word": "conflagration", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "An extensive fire that destroys a great deal of land or property.", + "example_sentence_english": "The city was devastated by a massive conflagration that lasted for days.", + "pos": "noun", + "word_frequency": 34153 + }, + { + "word": "congenial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Pleasant or agreeable because suited to one's taste or inclination.", + "example_sentence_english": "She found the atmosphere of the new office very congenial.", + "pos": "adjective", + "word_frequency": 34154 + }, + { + "word": "constriction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The action of making something narrower, or the state of being made narrower.", + "example_sentence_english": "The snake's constriction tightened around its prey.", + "pos": "noun", + "word_frequency": 34155 + }, + { + "word": "coverup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An attempt to prevent the public from discovering information about a serious crime or mistake.", + "example_sentence_english": "The government was accused of a coverup regarding the scandal.", + "pos": "noun", + "word_frequency": 34157 + }, + { + "word": "credibly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "In a believable or plausible way.", + "example_sentence_english": "The witness testified credibly about what she had seen.", + "pos": "adverb", + "word_frequency": 34159 + }, + { + "word": "crozier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hooked staff carried by a bishop as a symbol of pastoral office", + "example_sentence_english": "The bishop carried his crozier during the procession.", + "pos": "noun", + "word_frequency": 34160 + }, + { + "word": "cumulus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a cloud forming a rounded mass with a flat base, characteristic of fair weather", + "example_sentence_english": "We saw fluffy cumulus clouds in the sky.", + "pos": "noun", + "word_frequency": 34164 + }, + { + "word": "cytotoxic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "toxic to cells", + "example_sentence_english": "The drug has a cytotoxic effect on cancer cells.", + "pos": "adjective", + "word_frequency": 34165 + }, + { + "word": "decathlon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an athletic contest comprising ten different events", + "example_sentence_english": "The athlete trained hard for the decathlon.", + "pos": "noun", + "word_frequency": 34169 + }, + { + "word": "derangement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of mental or physical disorder", + "example_sentence_english": "The old man suffered from a mental derangement.", + "pos": "noun", + "word_frequency": 34170 + }, + { + "word": "despotic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyrannical; dictatorial", + "example_sentence_english": "The country was ruled by a despotic leader.", + "pos": "adjective", + "word_frequency": 34172 + }, + { + "word": "disgustingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that causes disgust", + "example_sentence_english": "The food was disgustingly sweet.", + "pos": "adverb", + "word_frequency": 34174 + }, + { + "word": "disulfide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a compound containing two sulfur atoms bonded together", + "example_sentence_english": "Hair proteins contain disulfide bonds.", + "pos": "noun", + "word_frequency": 34175 + }, + { + "word": "doghouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a small shelter for a dog", + "example_sentence_english": "The dog slept in its doghouse.", + "pos": "noun", + "word_frequency": 34177 + }, + { + "word": "doubleheader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "two games played on the same day between the same two teams", + "example_sentence_english": "The baseball team played a doubleheader on Saturday.", + "pos": "noun", + "word_frequency": 34179 + }, + { + "word": "drivetrain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the system in a vehicle that connects the transmission to the drive axles", + "example_sentence_english": "The mechanic repaired the car's drivetrain.", + "pos": "noun", + "word_frequency": 34181 + }, + { + "word": "dropper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short glass tube with a rubber bulb at one end, used to measure out drops of liquid", + "example_sentence_english": "She used a dropper to add the medicine to the water.", + "pos": "noun", + "word_frequency": 34182 + }, + { + "word": "dysphoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a state of unease or generalized dissatisfaction with life", + "example_sentence_english": "The patient experienced severe dysphoria.", + "pos": "noun", + "word_frequency": 34185 + }, + { + "word": "employability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being suitable for paid work", + "example_sentence_english": "Good communication skills improve your employability.", + "pos": "noun", + "word_frequency": 34188 + }, + { + "word": "equalize", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "make equal or uniform", + "example_sentence_english": "The team managed to equalize the score in the last minute.", + "pos": "verb", + "word_frequency": 34190 + }, + { + "word": "eschew", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deliberately avoid using; abstain from", + "example_sentence_english": "He tried to eschew all forms of luxury.", + "pos": "verb", + "word_frequency": 34192 + }, + { + "word": "expansionist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who advocates or practices a policy of territorial or economic expansion", + "example_sentence_english": "The neighboring country was accused of being expansionist.", + "pos": "noun", + "word_frequency": 34193 + }, + { + "word": "expressionism", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of painting, music, or drama in which the artist or writer seeks to express emotional experience rather than external reality", + "example_sentence_english": "German Expressionism was a significant art movement.", + "pos": "noun", + "word_frequency": 34194 + }, + { + "word": "externality", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a side effect or consequence of an industrial or commercial activity that affects other parties without this being reflected in the cost of the goods or services involved", + "example_sentence_english": "Pollution is a negative externality of industrial production.", + "pos": "noun", + "word_frequency": 34195 + }, + { + "word": "extractive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or involving the extraction of raw materials from the earth", + "example_sentence_english": "The country's economy relies heavily on extractive industries.", + "pos": "adjective", + "word_frequency": 34196 + }, + { + "word": "extrovert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an outgoing, socially confident person", + "example_sentence_english": "She is a natural extrovert and loves meeting new people.", + "pos": "noun", + "word_frequency": 34197 + }, + { + "word": "figment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something imagined or invented", + "example_sentence_english": "The monster was a figment of his imagination.", + "pos": "noun", + "word_frequency": 34202 + }, + { + "word": "firmament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the heavens or the sky", + "example_sentence_english": "Stars twinkled in the vast firmament.", + "pos": "noun", + "word_frequency": 34203 + }, + { + "word": "fleck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a small mark or spot", + "example_sentence_english": "There was a tiny fleck of paint on the window.", + "pos": "noun", + "word_frequency": 34204 + }, + { + "word": "flipside", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the opposite or less obvious aspect of something", + "example_sentence_english": "On the flipside, the new policy could also bring benefits.", + "pos": "noun", + "word_frequency": 34205 + }, + { + "word": "floodwater", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water that has overflowed from a river or other body of water", + "example_sentence_english": "The floodwater receded slowly after the storm.", + "pos": "noun", + "word_frequency": 34206 + }, + { + "word": "fondant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a thick, sugary paste used for decorating cakes", + "example_sentence_english": "The cake was covered in smooth white fondant.", + "pos": "noun", + "word_frequency": 34207 + }, + { + "word": "foolhardy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recklessly bold or rash", + "example_sentence_english": "It was a foolhardy decision to climb the mountain without proper gear.", + "pos": "adjective", + "word_frequency": 34208 + }, + { + "word": "fossa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a long, narrow, shallow depression, especially in a bone or organ", + "example_sentence_english": "The fossa is a unique predator native to Madagascar.", + "pos": "noun", + "word_frequency": 34210 + }, + { + "word": "freeware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "software that is available free of charge", + "example_sentence_english": "Many useful applications are available as freeware.", + "pos": "noun", + "word_frequency": 34212 + }, + { + "word": "furrow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a long narrow trench made in the ground by a plow", + "example_sentence_english": "The farmer plowed deep furrows in the field.", + "pos": "noun", + "word_frequency": 34213 + }, + { + "word": "gaffer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the chief electrician in a film or television production unit", + "example_sentence_english": "The gaffer adjusted the lighting for the next scene.", + "pos": "noun", + "word_frequency": 34214 + }, + { + "word": "gaiety", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state or quality of being lighthearted or cheerful", + "example_sentence_english": "The party was filled with music and gaiety.", + "pos": "noun", + "word_frequency": 34215 + }, + { + "word": "galleon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large sailing ship with three or four masts, used especially by Spain in the 16th and 17th centuries", + "example_sentence_english": "Pirates often attacked Spanish galleons carrying treasure.", + "pos": "noun", + "word_frequency": 34216 + }, + { + "word": "geist", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "spirit or ghost; the intellectual, moral, and cultural climate of an era", + "example_sentence_english": "The novel perfectly captured the zeitgeist of the 1960s.", + "pos": "noun", + "word_frequency": 34221 + }, + { + "word": "generically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a general or non-specific way", + "example_sentence_english": "The term is used generically to refer to any type of plant.", + "pos": "adverb", + "word_frequency": 34222 + }, + { + "word": "genitive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the grammatical case that marks a noun as modifying another noun, indicating possession, origin, or relation", + "example_sentence_english": "In English, the genitive case is often shown with an apostrophe 's'.", + "pos": "noun", + "word_frequency": 34223 + }, + { + "word": "geoscience", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "any of the sciences dealing with the earth", + "example_sentence_english": "Geoscience encompasses geology, oceanography, and meteorology.", + "pos": "noun", + "word_frequency": 34224 + }, + { + "word": "globalize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make worldwide in scope or application", + "example_sentence_english": "Technology continues to globalize communication.", + "pos": "verb", + "word_frequency": 34227 + }, + { + "word": "glycerol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a colorless, odorless, viscous liquid, used as a solvent, sweetener, and in making explosives and antifreeze", + "example_sentence_english": "Glycerol is a common ingredient in many cosmetic products.", + "pos": "noun", + "word_frequency": 34228 + }, + { + "word": "glycoprotein", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "any of a class of proteins that have carbohydrate groups attached to the polypeptide chain", + "example_sentence_english": "Glycoproteins play a crucial role in cell recognition.", + "pos": "noun", + "word_frequency": 34229 + }, + { + "word": "granary", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a storehouse for threshed grain", + "example_sentence_english": "The village relied on its granary to store the harvest.", + "pos": "noun", + "word_frequency": 34232 + }, + { + "word": "gravitas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dignity, seriousness, or solemnity of manner", + "example_sentence_english": "The speaker delivered his address with great gravitas.", + "pos": "noun", + "word_frequency": 34233 + }, + { + "word": "greenback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a US dollar bill", + "example_sentence_english": "He pulled a few greenbacks from his wallet.", + "pos": "noun", + "word_frequency": 34234 + }, + { + "word": "grimly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a very serious, gloomy, or depressing manner", + "example_sentence_english": "He grimly accepted the bad news.", + "pos": "adverb", + "word_frequency": 34236 + }, + { + "word": "gutless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking courage or determination", + "example_sentence_english": "He was criticized for his gutless response to the challenge.", + "pos": "adjective", + "word_frequency": 34237 + }, + { + "word": "haywire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "out of control; crazy", + "example_sentence_english": "The computer went haywire after the power surge.", + "pos": "adjective", + "word_frequency": 34242 + }, + { + "word": "heredity", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the passing on of physical or mental characteristics genetically from one generation to another", + "example_sentence_english": "Eye color is determined by heredity.", + "pos": "noun", + "word_frequency": 34245 + }, + { + "word": "hymen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a membrane that partially closes the opening of the vagina", + "example_sentence_english": "The hymen is a thin membrane.", + "pos": "noun", + "word_frequency": 34254 + }, + { + "word": "inaccurately", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not accurately; incorrectly", + "example_sentence_english": "The report inaccurately described the events.", + "pos": "adverb", + "word_frequency": 34256 + }, + { + "word": "inexhaustible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unable to be used up; limitless", + "example_sentence_english": "Her energy seemed inexhaustible.", + "pos": "adjective", + "word_frequency": 34257 + }, + { + "word": "infinitive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the basic form of a verb, typically preceded by 'to'", + "example_sentence_english": "The infinitive form of 'run' is 'to run'.", + "pos": "noun", + "word_frequency": 34258 + }, + { + "word": "ingot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a block of steel, gold, silver, or other metal, typically oblong in shape", + "example_sentence_english": "They found a large gold ingot in the shipwreck.", + "pos": "noun", + "word_frequency": 34259 + }, + { + "word": "inoculate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to treat (a person or animal) with a vaccine to produce immunity against a disease", + "example_sentence_english": "Doctors inoculate children against various diseases.", + "pos": "verb", + "word_frequency": 34260 + }, + { + "word": "instinctual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or prompted by instinct; instinctive", + "example_sentence_english": "Animals often have instinctual reactions to danger.", + "pos": "adjective", + "word_frequency": 34262 + }, + { + "word": "knead", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to work (dough or clay) with the hands", + "example_sentence_english": "She began to knead the dough for bread.", + "pos": "verb", + "word_frequency": 34281 + }, + { + "word": "landmine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an explosive mine laid on or just under the surface of the ground", + "example_sentence_english": "The soldiers had to clear the area of landmines.", + "pos": "noun", + "word_frequency": 34284 + }, + { + "word": "leapfrog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a game in which players vault over each other's bent backs", + "example_sentence_english": "The children played a game of leapfrog in the park.", + "pos": "noun", + "word_frequency": 34289 + }, + { + "word": "linker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a program that combines object files into an executable program", + "example_sentence_english": "The software development process involves a compiler and a linker.", + "pos": "noun", + "word_frequency": 34292 + }, + { + "word": "lovemaking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual intercourse", + "example_sentence_english": "Their lovemaking was passionate and tender.", + "pos": "noun", + "word_frequency": 34295 + }, + { + "word": "magnetically", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a magnetic manner", + "example_sentence_english": "The particles were drawn magnetically towards the pole.", + "pos": "adverb", + "word_frequency": 34298 + }, + { + "word": "magnetite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a common black iron oxide mineral that is strongly magnetic", + "example_sentence_english": "Magnetite is an important iron ore.", + "pos": "noun", + "word_frequency": 34299 + }, + { + "word": "marksmanship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skill in shooting", + "example_sentence_english": "His excellent marksmanship earned him a medal.", + "pos": "noun", + "word_frequency": 34304 + }, + { + "word": "masterfully", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a very skillful or expert way", + "example_sentence_english": "The artist masterfully blended the colors in the painting.", + "pos": "adverb", + "word_frequency": 34306 + }, + { + "word": "metalcore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fusion genre of heavy metal and hardcore punk", + "example_sentence_english": "Many bands combine elements of metalcore with other genres.", + "pos": "noun", + "word_frequency": 34313 + }, + { + "word": "militarization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process by which a society or country prepares for war or adopts military characteristics", + "example_sentence_english": "The militarization of the border raised concerns among human rights groups.", + "pos": "noun", + "word_frequency": 34315 + }, + { + "word": "minimization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act or process of reducing something to the smallest possible amount or degree", + "example_sentence_english": "The minimization of waste is a key goal for the company's sustainability efforts.", + "pos": "noun", + "word_frequency": 34316 + }, + { + "word": "mitral", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to the mitral valve of the heart", + "example_sentence_english": "The patient was diagnosed with mitral valve prolapse.", + "pos": "adjective", + "word_frequency": 34319 + }, + { + "word": "moribund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at the point of death; in terminal decline", + "example_sentence_english": "The moribund patient was moved to hospice care.", + "pos": "adjective", + "word_frequency": 34322 + }, + { + "word": "musicianship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill in music", + "example_sentence_english": "Her musicianship was evident in every note she played.", + "pos": "noun", + "word_frequency": 34329 + }, + { + "word": "needlework", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sewing, embroidery, or other work done with a needle", + "example_sentence_english": "She spent her evenings doing intricate needlework.", + "pos": "noun", + "word_frequency": 34333 + }, + { + "word": "neurosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a mild mental illness not caused by organic disease", + "example_sentence_english": "He suffered from a mild neurosis that caused him anxiety.", + "pos": "noun", + "word_frequency": 34334 + }, + { + "word": "nominative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the grammatical case of a noun or pronoun typically indicating the subject of a verb", + "example_sentence_english": "In English, the nominative case is used for the subject of a sentence.", + "pos": "adjective", + "word_frequency": 34339 + }, + { + "word": "nougat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a candy made from sugar or honey, nuts, and egg white", + "example_sentence_english": "The chocolate bar had a delicious nougat center.", + "pos": "noun", + "word_frequency": 34342 + }, + { + "word": "nullification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of making something legally null and void", + "example_sentence_english": "The nullification of the law caused widespread debate.", + "pos": "noun", + "word_frequency": 34345 + }, + { + "word": "numeracy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the ability to understand and work with numbers", + "example_sentence_english": "Basic numeracy skills are essential for everyday life.", + "pos": "noun", + "word_frequency": 34346 + }, + { + "word": "nuptial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to marriage or weddings", + "example_sentence_english": "The couple exchanged their nuptial vows.", + "pos": "adjective", + "word_frequency": 34347 + }, + { + "word": "odeon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a theater or concert hall", + "example_sentence_english": "The ancient Odeon was used for musical performances.", + "pos": "noun", + "word_frequency": 34349 + }, + { + "word": "outerwear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clothes worn over other clothes, especially outdoors", + "example_sentence_english": "She packed warm outerwear for the winter trip.", + "pos": "noun", + "word_frequency": 34353 + }, + { + "word": "pacification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of suppressing or calming a hostile population", + "example_sentence_english": "The government's pacification efforts were met with resistance.", + "pos": "noun", + "word_frequency": 34356 + }, + { + "word": "parlay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of bet where winnings from one bet are staked on the next", + "example_sentence_english": "The gambler placed a parlay on three different races.", + "pos": "noun", + "word_frequency": 34360 + }, + { + "word": "penalise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to punish or disadvantage someone for breaking a rule", + "example_sentence_english": "The referee decided to penalise the player for a foul.", + "pos": "verb", + "word_frequency": 34361 + }, + { + "word": "peony", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a large, showy flower", + "example_sentence_english": "The garden was full of beautiful pink peonies.", + "pos": "noun", + "word_frequency": 34362 + }, + { + "word": "perceptible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "able to be seen or noticed", + "example_sentence_english": "There was a perceptible change in her mood.", + "pos": "adjective", + "word_frequency": 34363 + }, + { + "word": "perinatal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the period immediately before and after birth", + "example_sentence_english": "Perinatal care is crucial for the health of both mother and baby.", + "pos": "adjective", + "word_frequency": 34364 + }, + { + "word": "personalization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of designing or producing something to meet someone's individual requirements", + "example_sentence_english": "The website offers a high degree of personalization for its users.", + "pos": "noun", + "word_frequency": 34366 + }, + { + "word": "pika", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a small, short-eared, rabbit-like mammal", + "example_sentence_english": "The pika is known for collecting haystacks for winter.", + "pos": "noun", + "word_frequency": 34370 + }, + { + "word": "plod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk heavily and slowly", + "example_sentence_english": "He continued to plod along the muddy path.", + "pos": "verb", + "word_frequency": 34371 + }, + { + "word": "pluralistic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a system in which two or more states, groups, principles, sources of authority, etc., coexist", + "example_sentence_english": "A pluralistic society embraces diversity of cultures and beliefs.", + "pos": "adjective", + "word_frequency": 34372 + }, + { + "word": "pocus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a meaningless word used in magic tricks (often in 'hocus pocus')", + "example_sentence_english": "The magician said 'hocus pocus' before making the rabbit disappear.", + "pos": "noun", + "word_frequency": 34373 + }, + { + "word": "poetical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to or characteristic of poetry", + "example_sentence_english": "His writing style was very poetical and evocative.", + "pos": "adjective", + "word_frequency": 34374 + }, + { + "word": "poltergeist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a ghost or other supernatural being that makes its presence known by causing noise and disturbance", + "example_sentence_english": "They suspected a poltergeist was responsible for the strange noises in the house.", + "pos": "noun", + "word_frequency": 34375 + }, + { + "word": "powerplant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a building where electricity is generated", + "example_sentence_english": "The city's electricity comes from a large powerplant.", + "pos": "noun", + "word_frequency": 34377 + }, + { + "word": "printmaking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the art or technique of making prints, especially as a fine art", + "example_sentence_english": "She studied printmaking at art school.", + "pos": "noun", + "word_frequency": 34378 + }, + { + "word": "promissory", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "containing or implying a promise", + "example_sentence_english": "He signed a promissory note to repay the loan.", + "pos": "adjective", + "word_frequency": 34379 + }, + { + "word": "pythagorean", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Pythagoras or his theorems", + "example_sentence_english": "The Pythagorean theorem is fundamental in geometry.", + "pos": "adjective", + "word_frequency": 34382 + }, + { + "word": "qualitatively", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in terms of quality or kind rather than quantity", + "example_sentence_english": "The new system is qualitatively better than the old one.", + "pos": "adverb", + "word_frequency": 34383 + }, + { + "word": "quant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who uses mathematical and statistical methods to manage financial risks and investments", + "example_sentence_english": "Many quants work on Wall Street developing trading algorithms.", + "pos": "noun", + "word_frequency": 34384 + }, + { + "word": "ragtime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of music characterized by a syncopated melodic line and regularly accented accompaniment", + "example_sentence_english": "Scott Joplin was a famous composer of ragtime music.", + "pos": "noun", + "word_frequency": 34386 + }, + { + "word": "rebar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steel reinforcing bar used in concrete", + "example_sentence_english": "The concrete foundation was strengthened with rebar.", + "pos": "noun", + "word_frequency": 34389 + }, + { + "word": "recliner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an armchair that can be tilted back", + "example_sentence_english": "He relaxed in his favorite recliner after a long day.", + "pos": "noun", + "word_frequency": 34390 + }, + { + "word": "redemptive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acting to save someone from error or evil; serving to redeem", + "example_sentence_english": "The story had a powerful redemptive message.", + "pos": "adjective", + "word_frequency": 34391 + }, + { + "word": "remoteness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being distant or remote", + "example_sentence_english": "The remoteness of the island made it a peaceful retreat.", + "pos": "noun", + "word_frequency": 34392 + }, + { + "word": "retry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try again", + "example_sentence_english": "If the first attempt fails, you can always retry.", + "pos": "verb", + "word_frequency": 34393 + }, + { + "word": "rhesus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of macaque monkey, or a blood group system", + "example_sentence_english": "The rhesus monkey is often used in scientific research.", + "pos": "noun", + "word_frequency": 34394 + }, + { + "word": "riesling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a variety of white wine grape, or the dry white wine made from it", + "example_sentence_english": "She ordered a glass of crisp Riesling with her meal.", + "pos": "noun", + "word_frequency": 34398 + }, + { + "word": "s'more", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a dessert made of toasted marshmallow, chocolate, and graham crackers", + "example_sentence_english": "We made s'mores over the campfire.", + "pos": "noun", + "word_frequency": 34402 + }, + { + "word": "sadism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the tendency to derive pleasure from inflicting pain, suffering, or humiliation on others", + "example_sentence_english": "His actions showed clear signs of sadism.", + "pos": "noun", + "word_frequency": 34404 + }, + { + "word": "saki", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Japanese rice wine", + "example_sentence_english": "Would you like some warm saki with your sushi?", + "pos": "noun", + "word_frequency": 34406 + }, + { + "word": "salicylic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or derived from salicylic acid, often used in skincare", + "example_sentence_english": "This face wash contains salicylic acid to help with acne.", + "pos": "adjective", + "word_frequency": 34407 + }, + { + "word": "sanitize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make clean and hygienic; disinfect", + "example_sentence_english": "Please sanitize your hands before entering the room.", + "pos": "verb", + "word_frequency": 34409 + }, + { + "word": "scrupulous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diligent, thorough, and extremely careful", + "example_sentence_english": "She was scrupulous in her attention to detail.", + "pos": "adjective", + "word_frequency": 34413 + }, + { + "word": "sealer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance or device used to seal something", + "example_sentence_english": "We applied a concrete sealer to the garage floor.", + "pos": "noun", + "word_frequency": 34415 + }, + { + "word": "sectarianism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive attachment to a particular sect or party, especially in religion or politics", + "example_sentence_english": "The conflict was fueled by deep-seated sectarianism.", + "pos": "noun", + "word_frequency": 34416 + }, + { + "word": "semicircular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "having the form of a half circle", + "example_sentence_english": "The table had a semicircular shape.", + "pos": "adjective", + "word_frequency": 34417 + }, + { + "word": "showmanship", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the ability to present something in an attractive or impressive way", + "example_sentence_english": "His performance was full of excellent showmanship.", + "pos": "noun", + "word_frequency": 34422 + }, + { + "word": "smock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a loose, lightweight overgarment worn to protect the wearer's clothes", + "example_sentence_english": "The artist wore a paint-splattered smock.", + "pos": "noun", + "word_frequency": 34423 + }, + { + "word": "soca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a style of Caribbean music originating in Trinidad and Tobago", + "example_sentence_english": "We danced to lively soca music at the carnival.", + "pos": "noun", + "word_frequency": 34425 + }, + { + "word": "socratic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to Socrates or his method of teaching by asking questions", + "example_sentence_english": "The professor used a Socratic method to encourage critical thinking.", + "pos": "adjective", + "word_frequency": 34426 + }, + { + "word": "solute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the minor component in a solution, dissolved in the solvent", + "example_sentence_english": "Sugar is the solute when dissolved in water.", + "pos": "noun", + "word_frequency": 34427 + }, + { + "word": "sombrero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a broad-brimmed hat, especially one of straw, worn in Mexico and the southwestern US", + "example_sentence_english": "He wore a large sombrero to protect himself from the sun.", + "pos": "noun", + "word_frequency": 34428 + }, + { + "word": "southpaw", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is left-handed, especially in sports", + "example_sentence_english": "The boxer was a powerful southpaw.", + "pos": "noun", + "word_frequency": 34429 + }, + { + "word": "sprayer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a device for spraying liquid", + "example_sentence_english": "She used a garden sprayer to water the plants.", + "pos": "noun", + "word_frequency": 34430 + }, + { + "word": "staph", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of bacteria that can cause infections", + "example_sentence_english": "He developed a staph infection after the surgery.", + "pos": "noun", + "word_frequency": 34432 + }, + { + "word": "starchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "containing starch; stiff or formal in manner", + "example_sentence_english": "Potatoes are a starchy vegetable.", + "pos": "adjective", + "word_frequency": 34433 + }, + { + "word": "statuary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection of statues", + "example_sentence_english": "The museum displayed an impressive collection of ancient statuary.", + "pos": "noun", + "word_frequency": 34434 + }, + { + "word": "stereoscopic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting a three-dimensional image or a pair of images that give the impression of three-dimensionality", + "example_sentence_english": "The film used stereoscopic technology to create a 3D effect.", + "pos": "adjective", + "word_frequency": 34435 + }, + { + "word": "stoneware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a type of pottery that is impermeable and opaque", + "example_sentence_english": "She made a beautiful vase out of stoneware.", + "pos": "noun", + "word_frequency": 34437 + }, + { + "word": "subreddit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a specific community or forum on the Reddit website", + "example_sentence_english": "I found a useful discussion in that subreddit.", + "pos": "noun", + "word_frequency": 34439 + }, + { + "word": "suffuse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spread through or over", + "example_sentence_english": "A warm glow began to suffuse the room as the sun set.", + "pos": "verb", + "word_frequency": 34440 + }, + { + "word": "symbiote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an organism living in symbiosis", + "example_sentence_english": "The clownfish and sea anemone form a classic example of a symbiote relationship.", + "pos": "noun", + "word_frequency": 34442 + }, + { + "word": "tactician", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person skilled in tactics", + "example_sentence_english": "He was known as a brilliant tactician on the battlefield.", + "pos": "noun", + "word_frequency": 34445 + }, + { + "word": "torturous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing extreme suffering", + "example_sentence_english": "The climb up the mountain was a torturous experience.", + "pos": "adjective", + "word_frequency": 34455 + }, + { + "word": "torus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a donut-shaped surface", + "example_sentence_english": "In geometry, a torus is a surface of revolution generated by revolving a circle in three-dimensional space about an axis coplanar with the circle.", + "pos": "noun", + "word_frequency": 34456 + }, + { + "word": "touristy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designed for or frequented by tourists", + "example_sentence_english": "We avoided the main square because it was too touristy.", + "pos": "adjective", + "word_frequency": 34458 + }, + { + "word": "transceiver", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device that can transmit and receive", + "example_sentence_english": "The radio operator used a powerful transceiver to communicate with the ship.", + "pos": "noun", + "word_frequency": 34459 + }, + { + "word": "transmutation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the act of changing into another form", + "example_sentence_english": "Alchemists sought the transmutation of base metals into gold.", + "pos": "noun", + "word_frequency": 34460 + }, + { + "word": "twitchy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nervous or jumpy", + "example_sentence_english": "He became very twitchy whenever he heard a loud noise.", + "pos": "adjective", + "word_frequency": 34462 + }, + { + "word": "unassisted", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "without help", + "example_sentence_english": "She managed to climb the wall unassisted.", + "pos": "adjective", + "word_frequency": 34467 + }, + { + "word": "undergarment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an item of clothing worn under outer clothes", + "example_sentence_english": "She chose comfortable undergarments for the long journey.", + "pos": "noun", + "word_frequency": 34468 + }, + { + "word": "unranked", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not having a rank or official position", + "example_sentence_english": "The new player was unranked in the tournament.", + "pos": "adjective", + "word_frequency": 34470 + }, + { + "word": "unsatisfying", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not giving satisfaction", + "example_sentence_english": "The ending of the movie was very unsatisfying.", + "pos": "adjective", + "word_frequency": 34471 + }, + { + "word": "unsophisticated", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking worldly experience or refinement", + "example_sentence_english": "His unsophisticated charm won over the audience.", + "pos": "adjective", + "word_frequency": 34472 + }, + { + "word": "unspoiled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not damaged or corrupted", + "example_sentence_english": "The remote island remains largely unspoiled by tourism.", + "pos": "adjective", + "word_frequency": 34473 + }, + { + "word": "vermillion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a brilliant red pigment", + "example_sentence_english": "The artist used vermillion to paint the sunset.", + "pos": "noun", + "word_frequency": 34479 + }, + { + "word": "vitriolic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bitterly scathing; caustic", + "example_sentence_english": "The politician delivered a vitriolic attack on his opponent.", + "pos": "adjective", + "word_frequency": 34482 + }, + { + "word": "wahoo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a large, fast-swimming predatory fish", + "example_sentence_english": "The angler caught a large wahoo during his fishing trip.", + "pos": "noun", + "word_frequency": 34484 + }, + { + "word": "watercraft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a boat or ship", + "example_sentence_english": "Various types of watercraft were moored in the harbor.", + "pos": "noun", + "word_frequency": 34485 + }, + { + "word": "waterlogged", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturated with water", + "example_sentence_english": "After the heavy rain, the garden was completely waterlogged.", + "pos": "adjective", + "word_frequency": 34486 + }, + { + "word": "wisteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a climbing shrub with hanging clusters of flowers", + "example_sentence_english": "The wisteria vine covered the entire side of the old house.", + "pos": "noun", + "word_frequency": 34489 + }, + { + "word": "wordless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "without words; silent", + "example_sentence_english": "She gave a wordless nod of agreement.", + "pos": "adjective", + "word_frequency": 34490 + }, + { + "word": "actuate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cause (a machine or device) to operate", + "example_sentence_english": "The sensor actuates the alarm when motion is detected.", + "pos": "verb", + "word_frequency": 34507 + }, + { + "word": "addle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to confuse or muddle (someone's mind)", + "example_sentence_english": "The complex instructions began to addle his brain.", + "pos": "verb", + "word_frequency": 34508 + }, + { + "word": "aftershave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a scented lotion applied to the face after shaving", + "example_sentence_english": "He splashed some aftershave on his face.", + "pos": "noun", + "word_frequency": 34512 + }, + { + "word": "airdrop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a delivery of supplies or personnel by parachute from an aircraft", + "example_sentence_english": "The humanitarian organization organized an airdrop of food to the remote village.", + "pos": "noun", + "word_frequency": 34514 + }, + { + "word": "alarmist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who exaggerates dangers or problems", + "example_sentence_english": "Don't be an alarmist; the situation is not that bad.", + "pos": "noun", + "word_frequency": 34516 + }, + { + "word": "ameliorate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make (something bad or unsatisfactory) better", + "example_sentence_english": "Steps were taken to ameliorate the living conditions of the refugees.", + "pos": "verb", + "word_frequency": 34519 + }, + { + "word": "americanism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A word, idiom, or other feature characteristic of American English.", + "example_sentence_english": "The word 'fall' for autumn is an example of an Americanism.", + "pos": "noun", + "word_frequency": 34520 + }, + { + "word": "anemone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A delicate flower or a marine invertebrate.", + "example_sentence_english": "The sea anemone swayed gently with the ocean current.", + "pos": "noun", + "word_frequency": 34523 + }, + { + "word": "antifreeze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A liquid added to water to lower its freezing point.", + "example_sentence_english": "You should check your car's antifreeze before winter.", + "pos": "noun", + "word_frequency": 34525 + }, + { + "word": "asinine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Extremely stupid or foolish.", + "example_sentence_english": "His asinine comments made everyone uncomfortable.", + "pos": "adjective", + "word_frequency": 34529 + }, + { + "word": "bawdy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Dealing with sexual matters in a comical or rude way.", + "example_sentence_english": "The play was known for its bawdy humor.", + "pos": "adjective", + "word_frequency": 34534 + }, + { + "word": "beaut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A beautiful person or thing (informal).", + "example_sentence_english": "That new car is a real beaut!", + "pos": "noun", + "word_frequency": 34535 + }, + { + "word": "belfry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The part of a bell tower or steeple in which bells are housed.", + "example_sentence_english": "The old church belfry was home to a family of owls.", + "pos": "noun", + "word_frequency": 34538 + }, + { + "word": "bemuse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Puzzle, confuse, or bewilder.", + "example_sentence_english": "The complex instructions left him completely bemused.", + "pos": "verb", + "word_frequency": 34540 + }, + { + "word": "bicyclist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who rides a bicycle.", + "example_sentence_english": "The bicyclist wore a helmet for safety.", + "pos": "noun", + "word_frequency": 34545 + }, + { + "word": "blitzkrieg", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An intense military campaign intended to bring about a swift victory.", + "example_sentence_english": "The German army employed blitzkrieg tactics during the early stages of the war.", + "pos": "noun", + "word_frequency": 34547 + }, + { + "word": "boozer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who drinks alcohol excessively; a pub.", + "example_sentence_english": "He's known as a bit of a boozer on weekends.", + "pos": "noun", + "word_frequency": 34548 + }, + { + "word": "bramble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A prickly shrub, especially a blackberry.", + "example_sentence_english": "The path was overgrown with brambles.", + "pos": "noun", + "word_frequency": 34550 + }, + { + "word": "burnish", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Polish (something, especially metal) by rubbing.", + "example_sentence_english": "He used a soft cloth to burnish the silver.", + "pos": "verb", + "word_frequency": 34555 + }, + { + "word": "butchery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The trade of a butcher; brutal slaughter.", + "example_sentence_english": "The old shop was known for its excellent butchery.", + "pos": "noun", + "word_frequency": 34556 + }, + { + "word": "catty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Spiteful or malicious, often in a sly or indirect way.", + "example_sentence_english": "Her catty remarks made everyone uncomfortable.", + "pos": "adjective", + "word_frequency": 34563 + }, + { + "word": "claustrophobia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Extreme or irrational fear of confined places.", + "example_sentence_english": "He suffers from severe claustrophobia and avoids elevators.", + "pos": "noun", + "word_frequency": 34571 + }, + { + "word": "computationally", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "In a way that relates to or involves computation.", + "example_sentence_english": "The problem is computationally intensive, requiring powerful computers.", + "pos": "adverb", + "word_frequency": 34573 + }, + { + "word": "concurrence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Agreement or consistency.", + "example_sentence_english": "There was general concurrence among the committee members on the proposal.", + "pos": "noun", + "word_frequency": 34574 + }, + { + "word": "conspiratorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to or characteristic of a conspiracy; suggesting a secret plot.", + "example_sentence_english": "He gave me a conspiratorial wink, indicating a shared secret.", + "pos": "adjective", + "word_frequency": 34575 + }, + { + "word": "cornucopia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "An abundance or plentiful supply of something.", + "example_sentence_english": "The market offered a cornucopia of fresh fruits and vegetables.", + "pos": "noun", + "word_frequency": 34576 + }, + { + "word": "debriefing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A session in which information or instructions are imparted or exchanged.", + "example_sentence_english": "After the mission, the team underwent a thorough debriefing.", + "pos": "noun", + "word_frequency": 34585 + }, + { + "word": "debutant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person making a first public appearance, especially in society.", + "example_sentence_english": "The young debutant was nervous before her first ballet performance.", + "pos": "noun", + "word_frequency": 34586 + }, + { + "word": "demure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Reserved, modest, and shy.", + "example_sentence_english": "She gave him a demure smile and looked away.", + "pos": "adjective", + "word_frequency": 34587 + }, + { + "word": "descendent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person, animal, or plant that is descended from a particular ancestor.", + "example_sentence_english": "He is a direct descendent of the original settlers.", + "pos": "noun", + "word_frequency": 34588 + }, + { + "word": "dethrone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Remove from a position of power or authority.", + "example_sentence_english": "The challenger hoped to dethrone the reigning champion.", + "pos": "verb", + "word_frequency": 34589 + }, + { + "word": "disinterest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lack of bias or partiality; impartiality.", + "example_sentence_english": "The judge showed complete disinterest in the case, ensuring fairness.", + "pos": "noun", + "word_frequency": 34591 + }, + { + "word": "dogwood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A small tree or shrub with showy white or pink bracts.", + "example_sentence_english": "The dogwood trees are beautiful when they bloom in spring.", + "pos": "noun", + "word_frequency": 34592 + }, + { + "word": "dustbin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "A container for household rubbish; a trash can.", + "example_sentence_english": "Please put the empty packaging in the dustbin.", + "pos": "noun", + "word_frequency": 34594 + }, + { + "word": "dutchess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The wife or widow of a duke; a female holder of a ducal title.", + "example_sentence_english": "The Dutchess attended the charity ball.", + "pos": "noun", + "word_frequency": 34595 + }, + { + "word": "embalm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To preserve a body from decay", + "example_sentence_english": "Ancient Egyptians would embalm their pharaohs.", + "pos": "verb", + "word_frequency": 34602 + }, + { + "word": "embezzle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To steal money placed in one's trust", + "example_sentence_english": "The accountant was arrested for trying to embezzle funds from the company.", + "pos": "verb", + "word_frequency": 34603 + }, + { + "word": "encyclopedic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Possessing a wide range of knowledge", + "example_sentence_english": "She has an encyclopedic knowledge of classical music.", + "pos": "adjective", + "word_frequency": 34604 + }, + { + "word": "estrangement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The fact of no longer being on friendly terms", + "example_sentence_english": "There was a long period of estrangement between the siblings.", + "pos": "noun", + "word_frequency": 34609 + }, + { + "word": "extenuate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To make (guilt or an offense) seem less serious or more forgivable", + "example_sentence_english": "There were no circumstances to extenuate his actions.", + "pos": "verb", + "word_frequency": 34612 + }, + { + "word": "fallible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Capable of making mistakes or being wrong", + "example_sentence_english": "Even experts are fallible.", + "pos": "adjective", + "word_frequency": 34613 + }, + { + "word": "filigree", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ornamental work of fine wire formed into delicate tracery", + "example_sentence_english": "The antique locket was decorated with delicate filigree.", + "pos": "noun", + "word_frequency": 34617 + }, + { + "word": "firing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "The action of dismissing an employee from a job", + "example_sentence_english": "The company announced the firing of several senior executives.", + "pos": "noun", + "word_frequency": 34619 + }, + { + "word": "freefall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A rapid and uncontrolled descent", + "example_sentence_english": "The stock market went into freefall after the announcement.", + "pos": "noun", + "word_frequency": 34624 + }, + { + "word": "furtherance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The advancement of a scheme or interest", + "example_sentence_english": "The funds were used in furtherance of the charity's goals.", + "pos": "noun", + "word_frequency": 34627 + }, + { + "word": "futon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A mattress, typically cotton-filled, that can be rolled up or folded", + "example_sentence_english": "We bought a new futon for the guest room.", + "pos": "noun", + "word_frequency": 34628 + }, + { + "word": "gangland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "The world of organized crime", + "example_sentence_english": "The police are investigating a series of gangland killings.", + "pos": "noun", + "word_frequency": 34631 + }, + { + "word": "georgette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A sheer, lightweight, dull-finished crêpe fabric", + "example_sentence_english": "The dress was made of a beautiful silk georgette.", + "pos": "noun", + "word_frequency": 34635 + }, + { + "word": "glabrous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "smooth; hairless", + "example_sentence_english": "The plant's leaves were completely glabrous, without any fuzz.", + "pos": "adjective", + "word_frequency": 34640 + }, + { + "word": "godson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a male godchild", + "example_sentence_english": "My godson is celebrating his fifth birthday next week.", + "pos": "noun", + "word_frequency": 34642 + }, + { + "word": "gravelly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sounding rough and deep; full of gravel", + "example_sentence_english": "He spoke in a gravelly voice after shouting all night.", + "pos": "adjective", + "word_frequency": 34645 + }, + { + "word": "grenadine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sweet, red syrup", + "example_sentence_english": "Add a splash of grenadine to give the drink a pink color.", + "pos": "noun", + "word_frequency": 34647 + }, + { + "word": "grizzle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to complain or cry fretfully", + "example_sentence_english": "The baby started to grizzle when he couldn't reach his toy.", + "pos": "verb", + "word_frequency": 34648 + }, + { + "word": "halfpenny", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a former British coin worth half a penny", + "example_sentence_english": "He found an old halfpenny coin in the attic.", + "pos": "noun", + "word_frequency": 34653 + }, + { + "word": "hammam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a public bathhouse in Islamic countries", + "example_sentence_english": "We relaxed in the hammam after a long day of sightseeing.", + "pos": "noun", + "word_frequency": 34654 + }, + { + "word": "harmoniously", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is pleasant and agreeable", + "example_sentence_english": "The different sections of the orchestra played harmoniously together.", + "pos": "adverb", + "word_frequency": 34655 + }, + { + "word": "hazrat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a title of respect used before the name of a revered person, especially in Islam", + "example_sentence_english": "Hazrat Muhammad is revered by Muslims worldwide.", + "pos": "noun", + "word_frequency": 34658 + }, + { + "word": "headlamp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a light on the front of a vehicle or worn on the head", + "example_sentence_english": "He put on his headlamp before entering the dark cave.", + "pos": "noun", + "word_frequency": 34659 + }, + { + "word": "hearten", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make someone feel more cheerful or hopeful", + "example_sentence_english": "The good news helped to hearten the struggling team.", + "pos": "verb", + "word_frequency": 34660 + }, + { + "word": "hemming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the process of folding and sewing the edge of cloth", + "example_sentence_english": "She spent the afternoon doing the hemming on her new curtains.", + "pos": "noun", + "word_frequency": 34663 + }, + { + "word": "hermetic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "airtight; insulated or protected from outside influence", + "example_sentence_english": "The ancient tomb was hermetic, preserving its contents perfectly.", + "pos": "adjective", + "word_frequency": 34665 + }, + { + "word": "hessian", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong, coarse fabric; a German mercenary soldier", + "example_sentence_english": "The old sacks were made of hessian.", + "pos": "noun", + "word_frequency": 34666 + }, + { + "word": "hippopotamus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a large, thick-skinned African mammal", + "example_sentence_english": "The hippopotamus spent most of its day submerged in the river.", + "pos": "noun", + "word_frequency": 34668 + }, + { + "word": "hod", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a V-shaped trough on a long pole, used for carrying bricks or mortar", + "example_sentence_english": "The bricklayer carried the mortar in a hod.", + "pos": "noun", + "word_frequency": 34669 + }, + { + "word": "homophobe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who has an irrational fear of or aversion to homosexuality", + "example_sentence_english": "The speaker was accused of being a homophobe due to his discriminatory remarks.", + "pos": "noun", + "word_frequency": 34671 + }, + { + "word": "honeybee", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a bee that produces honey", + "example_sentence_english": "A honeybee buzzed around the flowers in the garden.", + "pos": "noun", + "word_frequency": 34672 + }, + { + "word": "honoree", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who is honored", + "example_sentence_english": "The honoree received a standing ovation for her lifetime achievements.", + "pos": "noun", + "word_frequency": 34673 + }, + { + "word": "hoopla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excited commotion or fuss", + "example_sentence_english": "There was a lot of hoopla surrounding the celebrity's arrival.", + "pos": "noun", + "word_frequency": 34674 + }, + { + "word": "hora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a traditional circle dance, especially in Jewish or Romanian culture", + "example_sentence_english": "Everyone joined hands to dance the hora at the wedding.", + "pos": "noun", + "word_frequency": 34675 + }, + { + "word": "hurtle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "move or cause to move at a great speed, typically in a noisy or violent way", + "example_sentence_english": "The car hurtled down the highway.", + "pos": "verb", + "word_frequency": 34680 + }, + { + "word": "hyperinflation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monetary inflation occurring at a very high rate", + "example_sentence_english": "The country experienced severe hyperinflation, making its currency almost worthless.", + "pos": "noun", + "word_frequency": 34681 + }, + { + "word": "ideologue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an adherent of an ideology, especially one who is uncompromising and dogmatic", + "example_sentence_english": "He was seen as a rigid ideologue, unwilling to compromise his beliefs.", + "pos": "noun", + "word_frequency": 34683 + }, + { + "word": "idiosyncrasy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a peculiarity of constitution or temperament; an individualizing characteristic or quality", + "example_sentence_english": "One of his many idiosyncrasies was his habit of always wearing two different colored socks.", + "pos": "noun", + "word_frequency": 34684 + }, + { + "word": "incantation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a series of words used as a magic spell or charm", + "example_sentence_english": "The wizard muttered an ancient incantation to summon the spirit.", + "pos": "noun", + "word_frequency": 34686 + }, + { + "word": "infielder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a player in baseball who plays in the infield", + "example_sentence_english": "The infielder made a spectacular diving catch.", + "pos": "noun", + "word_frequency": 34687 + }, + { + "word": "infrastructural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the basic physical and organizational structures and facilities (e.g. buildings, roads, power supplies) needed for the operation of a society or enterprise", + "example_sentence_english": "The country needs significant infrastructural improvements to support its growing economy.", + "pos": "adjective", + "word_frequency": 34688 + }, + { + "word": "inhumanity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cruel and brutal behavior", + "example_sentence_english": "The war crimes trial exposed the full extent of the inhumanity committed.", + "pos": "noun", + "word_frequency": 34689 + }, + { + "word": "initialization", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the action of initializing something", + "example_sentence_english": "The system requires a full initialization before it can be used.", + "pos": "noun", + "word_frequency": 34691 + }, + { + "word": "inoffensive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not objectionable or harmful", + "example_sentence_english": "He made an inoffensive remark that no one could possibly take issue with.", + "pos": "adjective", + "word_frequency": 34692 + }, + { + "word": "inscrutable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impossible to understand or interpret", + "example_sentence_english": "His expression remained inscrutable, giving away no hint of his true feelings.", + "pos": "adjective", + "word_frequency": 34693 + }, + { + "word": "intercede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervene on behalf of another", + "example_sentence_english": "She tried to intercede on behalf of her friend, but the judge was firm.", + "pos": "verb", + "word_frequency": 34694 + }, + { + "word": "internationalization", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of designing a software application so that it can be adapted to various languages and regions without engineering changes", + "example_sentence_english": "The company's internationalization strategy involved adapting its products for different markets.", + "pos": "noun", + "word_frequency": 34695 + }, + { + "word": "irrationally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that is not based on or in accordance with reason or logic", + "example_sentence_english": "He reacted irrationally to the news, shouting and pacing.", + "pos": "adverb", + "word_frequency": 34696 + }, + { + "word": "irrepressible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not able to be controlled or restrained", + "example_sentence_english": "Her irrepressible enthusiasm was contagious.", + "pos": "adjective", + "word_frequency": 34697 + }, + { + "word": "jalapeno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hot green pepper", + "example_sentence_english": "I added some sliced jalapenos to my nachos for extra spice.", + "pos": "noun", + "word_frequency": 34703 + }, + { + "word": "joinery", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the craft or work of a joiner", + "example_sentence_english": "The intricate joinery of the wooden cabinet was a testament to the craftsman's skill.", + "pos": "noun", + "word_frequency": 34704 + }, + { + "word": "knitwear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knitted garments", + "example_sentence_english": "The shop specializes in high-quality knitwear, including sweaters and scarves.", + "pos": "noun", + "word_frequency": 34710 + }, + { + "word": "knowledgable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possessing or exhibiting knowledge, intelligence, or perception", + "example_sentence_english": "She is very knowledgable about ancient history.", + "pos": "adjective", + "word_frequency": 34711 + }, + { + "word": "laver", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of edible seaweed", + "example_sentence_english": "In Wales, laver is often used to make laverbread.", + "pos": "noun", + "word_frequency": 34717 + }, + { + "word": "leninism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the political theory for the organization of a revolutionary vanguard party and the achievement of a dictatorship of the proletariat, as conceived by the Russian revolutionary Vladimir Lenin", + "example_sentence_english": "Leninism is a political ideology derived from Marxism.", + "pos": "noun", + "word_frequency": 34719 + }, + { + "word": "lithograph", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A print produced by lithography.", + "example_sentence_english": "The artist created a beautiful lithograph of the city skyline.", + "pos": "noun", + "word_frequency": 34720 + }, + { + "word": "lockup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A temporary jail or a period of restricted trading.", + "example_sentence_english": "He spent the night in the lockup after the protest.", + "pos": "noun", + "word_frequency": 34721 + }, + { + "word": "lope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To run with a long, easy stride.", + "example_sentence_english": "The deer began to lope across the field.", + "pos": "verb", + "word_frequency": 34722 + }, + { + "word": "lovebird", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A small parrot, often kept as a pet.", + "example_sentence_english": "The lovebirds chirped happily in their cage.", + "pos": "noun", + "word_frequency": 34727 + }, + { + "word": "lucent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Glowing or luminous; clear.", + "example_sentence_english": "The moon cast a lucent glow over the lake.", + "pos": "adjective", + "word_frequency": 34729 + }, + { + "word": "margherita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A type of pizza with tomato, mozzarella, and basil.", + "example_sentence_english": "We ordered a classic Margherita pizza.", + "pos": "noun", + "word_frequency": 34734 + }, + { + "word": "marl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A type of soil or rock consisting of clay and lime.", + "example_sentence_english": "The farmers used marl to enrich the soil.", + "pos": "noun", + "word_frequency": 34735 + }, + { + "word": "maxillary", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Relating to the upper jawbone.", + "example_sentence_english": "The dentist examined the patient's maxillary teeth.", + "pos": "adjective", + "word_frequency": 34738 + }, + { + "word": "meiosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A type of cell division that reduces the number of chromosomes.", + "example_sentence_english": "Meiosis is essential for sexual reproduction.", + "pos": "noun", + "word_frequency": 34741 + }, + { + "word": "mensch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A person of integrity and honor.", + "example_sentence_english": "He's a true mensch, always helping others.", + "pos": "noun", + "word_frequency": 34743 + }, + { + "word": "mete", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To dispense or allot justice, punishment, or harsh treatment.", + "example_sentence_english": "The judge will mete out justice to the criminals.", + "pos": "verb", + "word_frequency": 34747 + }, + { + "word": "misadventure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An unfortunate incident; a mishap.", + "example_sentence_english": "Their camping trip turned into a series of misadventures.", + "pos": "noun", + "word_frequency": 34750 + }, + { + "word": "misconstrue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "To interpret (something, especially a person's words or actions) wrongly.", + "example_sentence_english": "Don't misconstrue my silence as disapproval.", + "pos": "verb", + "word_frequency": 34751 + }, + { + "word": "miser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A person who hoards wealth and spends as little as possible.", + "example_sentence_english": "The old miser lived in a dilapidated house despite his vast fortune.", + "pos": "noun", + "word_frequency": 34752 + }, + { + "word": "mockup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A model or replica of a design or device.", + "example_sentence_english": "The designer presented a detailed mockup of the new website.", + "pos": "noun", + "word_frequency": 34757 + }, + { + "word": "myopia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nearsightedness", + "example_sentence_english": "Her severe myopia requires her to wear thick glasses.", + "pos": "noun", + "word_frequency": 34766 + }, + { + "word": "myrrh", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fragrant gum resin", + "example_sentence_english": "Myrrh was one of the gifts brought by the Magi.", + "pos": "noun", + "word_frequency": 34767 + }, + { + "word": "nakedness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state of being naked", + "example_sentence_english": "The artist captured the raw beauty of human nakedness.", + "pos": "noun", + "word_frequency": 34769 + }, + { + "word": "neurologic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the nervous system", + "example_sentence_english": "The patient presented with several neurologic symptoms.", + "pos": "adjective", + "word_frequency": 34771 + }, + { + "word": "newsreel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a short film about current events", + "example_sentence_english": "Before the main feature, audiences would watch a newsreel.", + "pos": "noun", + "word_frequency": 34773 + }, + { + "word": "nitrite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a salt or ester of nitrous acid", + "example_sentence_english": "Sodium nitrite is used as a food preservative.", + "pos": "noun", + "word_frequency": 34775 + }, + { + "word": "obfuscation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the action of making something obscure, unclear, or unintelligible", + "example_sentence_english": "The politician's speech was full of obfuscation, avoiding direct answers.", + "pos": "noun", + "word_frequency": 34778 + }, + { + "word": "pappy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "father or grandfather (informal)", + "example_sentence_english": "My pappy always told me to work hard.", + "pos": "noun", + "word_frequency": 34784 + }, + { + "word": "parsonage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a house provided by a church for its parson", + "example_sentence_english": "The old parsonage stood next to the church, surrounded by a large garden.", + "pos": "noun", + "word_frequency": 34785 + }, + { + "word": "perfectionism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refusal to accept any standard short of perfection", + "example_sentence_english": "Her perfectionism often led to delays in completing projects.", + "pos": "noun", + "word_frequency": 34790 + }, + { + "word": "perforation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a hole or holes made by boring or piercing", + "example_sentence_english": "The doctor found a small perforation in the patient's eardrum.", + "pos": "noun", + "word_frequency": 34791 + }, + { + "word": "periodicity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality or state of being periodic", + "example_sentence_english": "The periodicity of the tides is influenced by the moon's gravity.", + "pos": "noun", + "word_frequency": 34792 + }, + { + "word": "phenolic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or denoting phenol or its derivatives", + "example_sentence_english": "Phenolic resins are used in the production of various plastics.", + "pos": "adjective", + "word_frequency": 34794 + }, + { + "word": "phosphor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a synthetic fluorescent or phosphorescent substance", + "example_sentence_english": "The screen of the old television used a phosphor coating to display images.", + "pos": "noun", + "word_frequency": 34795 + }, + { + "word": "pigtail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a braid of hair", + "example_sentence_english": "The little girl wore her hair in two neat pigtails.", + "pos": "noun", + "word_frequency": 34797 + }, + { + "word": "piñata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a container, often decorated, filled with candy and toys, broken as part of a celebration", + "example_sentence_english": "The children eagerly waited to hit the piñata at the birthday party.", + "pos": "noun", + "word_frequency": 34798 + }, + { + "word": "platformer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a video game genre where the player controls a character to jump between suspended platforms", + "example_sentence_english": "Super Mario Bros. is a classic example of a platformer game.", + "pos": "noun", + "word_frequency": 34799 + }, + { + "word": "pooper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person or animal that defecates; a spoilsport", + "example_sentence_english": "Don't be a party pooper, let's go out and have some fun!", + "pos": "noun", + "word_frequency": 34802 + }, + { + "word": "poppa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "father (informal)", + "example_sentence_english": "My poppa always tells the best stories before bedtime.", + "pos": "noun", + "word_frequency": 34803 + }, + { + "word": "porpoise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small toothed whale, similar to a dolphin", + "example_sentence_english": "We saw a pod of porpoises swimming gracefully near the boat.", + "pos": "noun", + "word_frequency": 34804 + }, + { + "word": "portmanteau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a word blending the sounds and meanings of two others; a large suitcase", + "example_sentence_english": "The word 'smog' is a portmanteau of 'smoke' and 'fog'.", + "pos": "noun", + "word_frequency": 34805 + }, + { + "word": "postural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the position or alignment of the body", + "example_sentence_english": "Good postural alignment is important for preventing back pain.", + "pos": "adjective", + "word_frequency": 34806 + }, + { + "word": "preordain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decide or determine beforehand; to destine", + "example_sentence_english": "Some believe that our destiny is preordained by a higher power.", + "pos": "verb", + "word_frequency": 34809 + }, + { + "word": "prototypical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serving as a typical example of something", + "example_sentence_english": "He is the prototypical example of a successful entrepreneur.", + "pos": "adjective", + "word_frequency": 34810 + }, + { + "word": "pseudoscience", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a collection of beliefs or practices mistakenly regarded as being based on scientific method", + "example_sentence_english": "Astrology is often considered a pseudoscience rather than a true science.", + "pos": "noun", + "word_frequency": 34811 + }, + { + "word": "puritanical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or displaying a strict moral or religious code", + "example_sentence_english": "His puritanical views made him unpopular at the liberal arts college.", + "pos": "adjective", + "word_frequency": 34812 + }, + { + "word": "pushup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "an exercise performed by lying face down and pushing up with the arms", + "example_sentence_english": "She does twenty pushups every morning as part of her fitness routine.", + "pos": "noun", + "word_frequency": 34813 + }, + { + "word": "pyrite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a common mineral, iron sulfide, also known as fool's gold", + "example_sentence_english": "The prospector mistook the shiny pyrite for real gold.", + "pos": "noun", + "word_frequency": 34814 + }, + { + "word": "quitter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a person who gives up easily or abandons a task", + "example_sentence_english": "He's not a quitter; he'll keep trying until he succeeds.", + "pos": "noun", + "word_frequency": 34816 + }, + { + "word": "rationalist", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who bases their opinions and actions on reason and knowledge", + "example_sentence_english": "As a rationalist, she always sought logical explanations for phenomena.", + "pos": "noun", + "word_frequency": 34818 + }, + { + "word": "reedy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thin and weak in sound; full of reeds", + "example_sentence_english": "His voice was reedy and high-pitched, making it difficult to hear him clearly.", + "pos": "adjective", + "word_frequency": 34821 + }, + { + "word": "repudiation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the rejection of a proposal or idea; denial of truth or validity", + "example_sentence_english": "The government's repudiation of the treaty caused an international uproar.", + "pos": "noun", + "word_frequency": 34822 + }, + { + "word": "rheumatic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to or suffering from rheumatism or joint pain", + "example_sentence_english": "He suffered from rheumatic fever as a child, which affected his heart.", + "pos": "adjective", + "word_frequency": 34825 + }, + { + "word": "ridiculousness", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the state or quality of being ridiculous or absurd", + "example_sentence_english": "The sheer ridiculousness of the situation made everyone burst into laughter.", + "pos": "noun", + "word_frequency": 34826 + }, + { + "word": "roadkill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an animal killed by a vehicle on a road", + "example_sentence_english": "We saw some roadkill on the side of the highway during our trip.", + "pos": "noun", + "word_frequency": 34827 + }, + { + "word": "rostrum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a raised platform on which a speaker stands to address an audience", + "example_sentence_english": "The speaker approached the rostrum to deliver his powerful speech.", + "pos": "noun", + "word_frequency": 34830 + }, + { + "word": "sagebrush", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a shrub of the daisy family, common in arid regions of North America", + "example_sentence_english": "The desert landscape was covered in vast expanses of sagebrush.", + "pos": "noun", + "word_frequency": 34833 + }, + { + "word": "sanctification", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "the action of making or declaring something holy; the process of becoming holy", + "example_sentence_english": "The process of sanctification is central to many religious beliefs and practices.", + "pos": "noun", + "word_frequency": 34837 + }, + { + "word": "savin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of juniper tree", + "example_sentence_english": "The savin is a species of juniper native to central and southern Europe.", + "pos": "noun", + "word_frequency": 34841 + }, + { + "word": "sealant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a substance used to seal a surface", + "example_sentence_english": "Apply a waterproof sealant to the cracks before painting.", + "pos": "noun", + "word_frequency": 34846 + }, + { + "word": "segue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a smooth transition", + "example_sentence_english": "The speaker made a smooth segue from one topic to the next.", + "pos": "noun", + "word_frequency": 34847 + }, + { + "word": "sevenfold", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seven times as much or as many", + "example_sentence_english": "The company's profits increased sevenfold last year.", + "pos": "numeral", + "word_frequency": 34848 + }, + { + "word": "shapely", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having a pleasing shape", + "example_sentence_english": "She admired the shapely curves of the vase.", + "pos": "adjective", + "word_frequency": 34850 + }, + { + "word": "shellac", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of varnish", + "example_sentence_english": "He applied a coat of shellac to the wooden table.", + "pos": "noun", + "word_frequency": 34851 + }, + { + "word": "shoelace", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a string or cord used to tie shoes", + "example_sentence_english": "My shoelace came undone, and I almost tripped.", + "pos": "noun", + "word_frequency": 34852 + }, + { + "word": "sleepiness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the state of being sleepy", + "example_sentence_english": "A feeling of sleepiness overcame him after the long journey.", + "pos": "noun", + "word_frequency": 34855 + }, + { + "word": "slurp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a noisy eating or drinking sound", + "example_sentence_english": "He took a loud slurp of his soup.", + "pos": "noun", + "word_frequency": 34856 + }, + { + "word": "soundness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the quality of being sound or reliable", + "example_sentence_english": "The engineer checked the structural soundness of the bridge.", + "pos": "noun", + "word_frequency": 34857 + }, + { + "word": "springbok", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a type of antelope native to southern Africa", + "example_sentence_english": "The springbok is known for its distinctive pronking behavior.", + "pos": "noun", + "word_frequency": 34859 + }, + { + "word": "starkly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in a severe or bare manner", + "example_sentence_english": "The truth was starkly revealed in the report.", + "pos": "adverb", + "word_frequency": 34861 + }, + { + "word": "stealthily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a cautious and surreptitious manner", + "example_sentence_english": "The cat stealthily approached the bird.", + "pos": "adverb", + "word_frequency": 34862 + }, + { + "word": "stilted", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stiffly formal or unnatural", + "example_sentence_english": "His speech was rather stilted, lacking natural flow.", + "pos": "adjective", + "word_frequency": 34863 + }, + { + "word": "sunburst", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a sudden burst of sunlight", + "example_sentence_english": "A beautiful sunburst appeared through the clouds.", + "pos": "noun", + "word_frequency": 34866 + }, + { + "word": "sura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a chapter of the Quran", + "example_sentence_english": "Each sura of the Quran contains verses of varying lengths.", + "pos": "noun", + "word_frequency": 34867 + }, + { + "word": "sweatshop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a factory or workshop where manual workers are employed at very low wages for long hours and under poor conditions", + "example_sentence_english": "Activists are campaigning against the use of sweatshops in the garment industry.", + "pos": "noun", + "word_frequency": 34868 + }, + { + "word": "tamale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a Mexican dish of seasoned meat wrapped in corn dough and steamed or baked", + "example_sentence_english": "We had delicious tamales for dinner last night.", + "pos": "noun", + "word_frequency": 34872 + }, + { + "word": "tastefully", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a way that shows good taste", + "example_sentence_english": "The room was decorated very tastefully.", + "pos": "adverb", + "word_frequency": 34873 + }, + { + "word": "teeter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move or sway unsteadily", + "example_sentence_english": "The child began to teeter on the edge of the curb.", + "pos": "verb", + "word_frequency": 34876 + }, + { + "word": "timezone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a region where a uniform standard time is observed", + "example_sentence_english": "New York is in a different timezone than London.", + "pos": "noun", + "word_frequency": 34877 + }, + { + "word": "townsfolk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the inhabitants of a town", + "example_sentence_english": "The townsfolk gathered in the square for the festival.", + "pos": "noun", + "word_frequency": 34879 + }, + { + "word": "tryst", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a private romantic rendezvous", + "example_sentence_english": "They arranged a secret tryst by the old oak tree.", + "pos": "noun", + "word_frequency": 34883 + }, + { + "word": "tubal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to a tube, especially a fallopian tube", + "example_sentence_english": "The doctor performed a tubal ligation.", + "pos": "adjective", + "word_frequency": 34884 + }, + { + "word": "turpentine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a volatile oil used as a paint thinner or solvent", + "example_sentence_english": "He cleaned the paintbrushes with turpentine.", + "pos": "noun", + "word_frequency": 34885 + }, + { + "word": "twang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a strong, ringing sound; a nasal accent", + "example_sentence_english": "The guitar string gave a sharp twang when he plucked it.", + "pos": "noun", + "word_frequency": 34886 + }, + { + "word": "typesetting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the process of arranging type for printing", + "example_sentence_english": "Modern typesetting is mostly done digitally.", + "pos": "noun", + "word_frequency": 34887 + }, + { + "word": "underpass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a road or path passing under another road or railway", + "example_sentence_english": "We drove through the underpass to avoid the traffic lights.", + "pos": "noun", + "word_frequency": 34892 + }, + { + "word": "undeterred", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "persisting despite discouragement", + "example_sentence_english": "Despite the setbacks, she remained undeterred in her pursuit of the goal.", + "pos": "adjective", + "word_frequency": 34893 + }, + { + "word": "unhappily", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in an unhappy manner", + "example_sentence_english": "He unhappily accepted the news of his demotion.", + "pos": "adverb", + "word_frequency": 34894 + }, + { + "word": "unoriginal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not new or interesting; derivative", + "example_sentence_english": "His ideas for the project were rather unoriginal.", + "pos": "adjective", + "word_frequency": 34895 + }, + { + "word": "unpalatable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "not pleasant to taste; difficult to accept", + "example_sentence_english": "The truth, though unpalatable, had to be faced.", + "pos": "adjective", + "word_frequency": 34896 + }, + { + "word": "unwillingly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reluctantly; against one's will", + "example_sentence_english": "She unwillingly agreed to help with the chores.", + "pos": "adverb", + "word_frequency": 34897 + }, + { + "word": "unwrap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove the wrapping from", + "example_sentence_english": "He carefully began to unwrap the present.", + "pos": "verb", + "word_frequency": 34898 + }, + { + "word": "unzip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to open a zipper", + "example_sentence_english": "Please unzip your jacket, it's warm in here.", + "pos": "verb", + "word_frequency": 34899 + }, + { + "word": "upwardly", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in an upward direction or position", + "example_sentence_english": "The company is moving upwardly in the market.", + "pos": "adverb", + "word_frequency": 34900 + }, + { + "word": "vanadium", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a hard, silvery-grey metallic element", + "example_sentence_english": "Vanadium is used to make strong steel alloys.", + "pos": "noun", + "word_frequency": 34905 + }, + { + "word": "vernal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "of, relating to, or appearing in the spring", + "example_sentence_english": "The vernal equinox marks the beginning of spring.", + "pos": "adjective", + "word_frequency": 34908 + }, + { + "word": "vibrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a pulsating effect produced in singing or playing an instrument", + "example_sentence_english": "The singer added a beautiful vibrato to the final note.", + "pos": "noun", + "word_frequency": 34909 + }, + { + "word": "viewing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the act of watching or looking at something", + "example_sentence_english": "The art gallery offers a private viewing of the new exhibition.", + "pos": "noun", + "word_frequency": 34910 + }, + { + "word": "wakeup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "an act of waking up; a call to wake up", + "example_sentence_english": "I set my alarm for a 6 AM wakeup.", + "pos": "noun", + "word_frequency": 34913 + }, + { + "word": "walleye", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a North American freshwater fish", + "example_sentence_english": "He caught a large walleye during his fishing trip.", + "pos": "noun", + "word_frequency": 34914 + }, + { + "word": "watchlist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a list of items or people under special observation", + "example_sentence_english": "The movie was added to my watchlist for later viewing.", + "pos": "noun", + "word_frequency": 34917 + }, + { + "word": "wickedly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in a wicked or mischievous manner", + "example_sentence_english": "She smiled wickedly as she planned her prank.", + "pos": "adverb", + "word_frequency": 34919 + }, + { + "word": "wordy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "using too many words", + "example_sentence_english": "His explanation was too wordy and confusing.", + "pos": "adjective", + "word_frequency": 34922 + }, + { + "word": "wraparound", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "something that wraps around", + "example_sentence_english": "She wore a stylish wraparound skirt.", + "pos": "noun", + "word_frequency": 34924 + }, + { + "word": "accelerometer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a device that measures acceleration", + "example_sentence_english": "Smartphones use an accelerometer to detect orientation.", + "pos": "noun", + "word_frequency": 34940 + }, + { + "word": "acrimonious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bitter and angry in speech or manner", + "example_sentence_english": "Their divorce was an acrimonious affair.", + "pos": "adjective", + "word_frequency": 34941 + }, + { + "word": "anarchic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lacking government or control; chaotic", + "example_sentence_english": "The protest turned into an anarchic scene.", + "pos": "adjective", + "word_frequency": 34950 + }, + { + "word": "attache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person attached to an embassy or legation", + "example_sentence_english": "The cultural attache organized the art exhibition.", + "pos": "noun", + "word_frequency": 34956 + }, + { + "word": "bandy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a winter sport similar to ice hockey", + "example_sentence_english": "The bandy team practiced on the frozen lake.", + "pos": "noun", + "word_frequency": 34962 + }, + { + "word": "barometric", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to atmospheric pressure", + "example_sentence_english": "The barometric pressure dropped significantly before the storm.", + "pos": "adjective", + "word_frequency": 34964 + }, + { + "word": "beguile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to charm or enchant someone, sometimes in a deceptive way", + "example_sentence_english": "She was beguiled by his charming smile.", + "pos": "verb", + "word_frequency": 34968 + }, + { + "word": "bendy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easily bent; flexible", + "example_sentence_english": "The bendy straw made it easier to drink.", + "pos": "adjective", + "word_frequency": 34969 + }, + { + "word": "bevy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a large group of people or things of a particular kind", + "example_sentence_english": "A bevy of reporters gathered outside the courthouse.", + "pos": "noun", + "word_frequency": 34972 + }, + { + "word": "bidirectional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "operating in two directions", + "example_sentence_english": "The new road has bidirectional traffic lanes.", + "pos": "adjective", + "word_frequency": 34975 + }, + { + "word": "bioengineering", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the application of engineering principles to biological systems", + "example_sentence_english": "She is studying bioengineering at university.", + "pos": "noun", + "word_frequency": 34977 + }, + { + "word": "carboxylic", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "relating to a carboxylic acid", + "example_sentence_english": "Acetic acid is a simple carboxylic acid.", + "pos": "adjective", + "word_frequency": 34988 + }, + { + "word": "chaparral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dense, thorny scrubland found in California and the Mediterranean", + "example_sentence_english": "Wildfires are common in chaparral ecosystems.", + "pos": "noun", + "word_frequency": 34994 + }, + { + "word": "chivalrous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courteous and honorable, especially towards women", + "example_sentence_english": "He was praised for his chivalrous behavior.", + "pos": "adjective", + "word_frequency": 34995 + }, + { + "word": "communiqué", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an official announcement or communication", + "example_sentence_english": "The government issued a communiqué regarding the peace talks.", + "pos": "noun", + "word_frequency": 35000 + }, + { + "word": "computerise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equip with computers; to automate", + "example_sentence_english": "Many businesses are looking to computerise their operations to improve efficiency.", + "pos": "verb", + "word_frequency": 35001 + }, + { + "word": "conformist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a person who conforms to accepted behavior or standards", + "example_sentence_english": "He was criticized for being a conformist and never questioning authority.", + "pos": "noun", + "word_frequency": 35003 + }, + { + "word": "contemptible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving contempt; despicable", + "example_sentence_english": "His actions were utterly contemptible and showed a lack of respect for others.", + "pos": "adjective", + "word_frequency": 35004 + }, + { + "word": "contort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to twist or bend out of its normal shape", + "example_sentence_english": "The dancer managed to contort her body into incredible positions.", + "pos": "verb", + "word_frequency": 35005 + }, + { + "word": "crackpot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "an eccentric or insane person", + "example_sentence_english": "His idea sounded like something a crackpot would come up with.", + "pos": "noun", + "word_frequency": 35008 + }, + { + "word": "cubby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a small, enclosed space", + "example_sentence_english": "The children loved playing in the little cubby under the stairs.", + "pos": "noun", + "word_frequency": 35011 + }, + { + "word": "culvert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a tunnel carrying a stream or open drain under a road or railroad", + "example_sentence_english": "The water flowed freely through the culvert beneath the road.", + "pos": "noun", + "word_frequency": 35012 + }, + { + "word": "cutscene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a non-interactive sequence in a video game", + "example_sentence_english": "The game features impressive cutscenes that advance the story.", + "pos": "noun", + "word_frequency": 35014 + }, + { + "word": "deconstruct", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to analyze or break down (a text or concept) into its component parts", + "example_sentence_english": "The literary critic sought to deconstruct the novel's themes.", + "pos": "verb", + "word_frequency": 35020 + }, + { + "word": "dependability", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the quality of being trustworthy and reliable", + "example_sentence_english": "His dependability makes him an excellent team member.", + "pos": "noun", + "word_frequency": 35021 + }, + { + "word": "deregulate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remove regulations or controls from", + "example_sentence_english": "The government decided to deregulate the telecommunications industry.", + "pos": "verb", + "word_frequency": 35022 + }, + { + "word": "dereliction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the state of having been abandoned and become dilapidated; neglect of duty", + "example_sentence_english": "The old building was in a state of complete dereliction.", + "pos": "noun", + "word_frequency": 35023 + }, + { + "word": "disinfect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clean (something) with a disinfectant in order to destroy bacteria", + "example_sentence_english": "You should disinfect the wound to prevent infection.", + "pos": "verb", + "word_frequency": 35026 + }, + { + "word": "dissension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disagreement that leads to discord", + "example_sentence_english": "There was much dissension among the committee members regarding the new policy.", + "pos": "noun", + "word_frequency": 35027 + }, + { + "word": "distributive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relating to the distribution of something; (grammar) referring to each individual of a group", + "example_sentence_english": "The distributive property is fundamental in algebra.", + "pos": "adjective", + "word_frequency": 35028 + }, + { + "word": "dotcom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a company that conducts most of its business on the internet", + "example_sentence_english": "Many dotcom companies emerged during the internet boom of the late 1990s.", + "pos": "noun", + "word_frequency": 35031 + }, + { + "word": "dour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relentlessly severe, stern, or gloomy in manner or appearance", + "example_sentence_english": "The dour expression on his face suggested he was not pleased.", + "pos": "adjective", + "word_frequency": 35032 + }, + { + "word": "dox", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "private or identifying information about an individual, published on the internet without their consent", + "example_sentence_english": "He threatened to publish her dox if she didn't comply.", + "pos": "noun", + "word_frequency": 35034 + }, + { + "word": "earthworm", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a burrowing annelid worm that lives in the soil", + "example_sentence_english": "After the rain, many earthworms appeared on the sidewalk.", + "pos": "noun", + "word_frequency": 35037 + }, + { + "word": "efficacious", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "successful in producing a desired or intended result; effective", + "example_sentence_english": "The new medicine proved to be highly efficacious in treating the disease.", + "pos": "adjective", + "word_frequency": 35039 + }, + { + "word": "eft", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "young newt", + "example_sentence_english": "The eft, a juvenile newt, can live on land before returning to water.", + "pos": "noun", + "word_frequency": 35040 + }, + { + "word": "ejaculate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to utter suddenly; to expel semen", + "example_sentence_english": "He would often ejaculate a witty remark during the meeting.", + "pos": "verb", + "word_frequency": 35042 + }, + { + "word": "electromechanical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relating to the conversion of electrical and mechanical energy", + "example_sentence_english": "The device uses an electromechanical system to operate.", + "pos": "adjective", + "word_frequency": 35044 + }, + { + "word": "entrail", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an internal organ, especially an intestine", + "example_sentence_english": "The hunter carefully removed the entrails from the deer.", + "pos": "noun", + "word_frequency": 35045 + }, + { + "word": "equalise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make or become equal", + "example_sentence_english": "The team managed to equalise in the last minute of the game.", + "pos": "verb", + "word_frequency": 35046 + }, + { + "word": "eroticism", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexual desire or excitement; the use of sexual images or language", + "example_sentence_english": "The film explored themes of love and eroticism.", + "pos": "noun", + "word_frequency": 35048 + }, + { + "word": "exhilaration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a feeling of great happiness and excitement", + "example_sentence_english": "She felt a sense of exhilaration after completing the marathon.", + "pos": "noun", + "word_frequency": 35051 + }, + { + "word": "exon", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "a segment of a DNA or RNA molecule containing information coding for a protein or peptide sequence", + "example_sentence_english": "Genes are composed of introns and exons.", + "pos": "noun", + "word_frequency": 35052 + }, + { + "word": "extensible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capable of being extended", + "example_sentence_english": "The software was designed to be extensible, allowing for future additions.", + "pos": "adjective", + "word_frequency": 35053 + }, + { + "word": "extrapolation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the action of estimating or concluding something by assuming that existing trends will continue or a current method will remain applicable", + "example_sentence_english": "The report's conclusions were based on an extrapolation of current data.", + "pos": "noun", + "word_frequency": 35054 + }, + { + "word": "febrile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "having or showing the symptoms of a fever; characterized by a great deal of nervous excitement or energy", + "example_sentence_english": "The patient presented with a febrile illness.", + "pos": "adjective", + "word_frequency": 35058 + }, + { + "word": "fondle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to caress or stroke lovingly or erotically", + "example_sentence_english": "She watched her cat fondle the toy mouse with its paws.", + "pos": "verb", + "word_frequency": 35063 + }, + { + "word": "freakish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very unusual or strange", + "example_sentence_english": "The weather took a freakish turn, with snow in July.", + "pos": "adjective", + "word_frequency": 35065 + }, + { + "word": "freeform", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a style or form that is not restricted by rules or conventions", + "example_sentence_english": "The artist preferred a freeform approach to sculpture.", + "pos": "noun", + "word_frequency": 35067 + }, + { + "word": "frond", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the leaf or leaflike part of a palm, fern, or similar plant", + "example_sentence_english": "The fern unfurled a new frond in the spring.", + "pos": "noun", + "word_frequency": 35068 + }, + { + "word": "galvanise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shock or excite (someone) into taking action; to coat (iron or steel) with a protective layer of zinc", + "example_sentence_english": "The urgency of the situation helped to galvanise the team into action.", + "pos": "verb", + "word_frequency": 35072 + }, + { + "word": "glazer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a person who fits glass into windows or doors; a person who applies a glaze", + "example_sentence_english": "The glazer carefully installed the new pane of glass.", + "pos": "noun", + "word_frequency": 35079 + }, + { + "word": "gunship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A heavily armed aircraft or vessel", + "example_sentence_english": "The gunship provided air support for the ground troops.", + "pos": "noun", + "word_frequency": 35088 + }, + { + "word": "guttural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Produced in the throat; harsh-sounding", + "example_sentence_english": "He spoke in a deep, guttural voice.", + "pos": "adjective", + "word_frequency": 35089 + }, + { + "word": "gyroscope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "A device used for measuring or maintaining orientation and angular velocity", + "example_sentence_english": "A smartphone uses a gyroscope to detect its orientation.", + "pos": "noun", + "word_frequency": 35090 + }, + { + "word": "hackathon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "An event where computer programmers and others collaborate intensively on software projects", + "example_sentence_english": "Our team won first prize at the annual hackathon.", + "pos": "noun", + "word_frequency": 35092 + }, + { + "word": "hammy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Overly theatrical or exaggerated", + "example_sentence_english": "His acting was a bit hammy, but entertaining.", + "pos": "adjective", + "word_frequency": 35093 + }, + { + "word": "handedness", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "The tendency to use one hand more skillfully than the other", + "example_sentence_english": "Research shows that handedness is often determined before birth.", + "pos": "noun", + "word_frequency": 35094 + }, + { + "word": "heartstring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "One's deepest feelings of love or compassion (usually plural)", + "example_sentence_english": "The sad movie really tugged at my heartstrings.", + "pos": "noun", + "word_frequency": 35097 + }, + { + "word": "hellcat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A fierce, bad-tempered woman; also a type of fighter plane", + "example_sentence_english": "She was known as a hellcat in her youth.", + "pos": "noun", + "word_frequency": 35098 + }, + { + "word": "hellhole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A very unpleasant place", + "example_sentence_english": "The prison was described as a hellhole by former inmates.", + "pos": "noun", + "word_frequency": 35099 + }, + { + "word": "hoodoo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "A form of folk magic; a tall, thin rock formation", + "example_sentence_english": "The desert landscape was dotted with strange hoodoo formations.", + "pos": "noun", + "word_frequency": 35113 + }, + { + "word": "hygienist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "A person who specializes in hygiene, especially dental hygiene", + "example_sentence_english": "The dental hygienist cleaned my teeth thoroughly.", + "pos": "noun", + "word_frequency": 35117 + }, + { + "word": "hypertext", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Text with hyperlinks to other text or media", + "example_sentence_english": "The internet is built on the concept of hypertext.", + "pos": "noun", + "word_frequency": 35118 + }, + { + "word": "idolize", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "To admire or revere intensely", + "example_sentence_english": "Many young fans idolize their favorite pop stars.", + "pos": "verb", + "word_frequency": 35119 + }, + { + "word": "illegible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossible to read", + "example_sentence_english": "The old manuscript was almost illegible due to fading ink.", + "pos": "adjective", + "word_frequency": 35121 + }, + { + "word": "impertinent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rude and disrespectful", + "example_sentence_english": "His impertinent remarks offended the elderly woman.", + "pos": "adjective", + "word_frequency": 35123 + } +] diff --git a/data-pipeline/stage-2-annotate/sources/cefr/es.json b/data-pipeline/stage-2-annotate/sources/cefr/es.json new file mode 100644 index 0000000..39519d4 --- /dev/null +++ b/data-pipeline/stage-2-annotate/sources/cefr/es.json @@ -0,0 +1,163922 @@ +[ + { + "word": "no", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "no;not", + "example_sentence_native": "No quiero ir.", + "example_sentence_english": "I don't want to go.", + "pos": "adverb", + "word_frequency": 8 + }, + { + "word": "un", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a;an (masculine singular)", + "example_sentence_native": "Tengo un perro.", + "example_sentence_english": "I have a dog.", + "pos": "adjective", + "word_frequency": 9 + }, + { + "word": "ser", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be", + "example_sentence_native": "Yo soy estudiante.", + "example_sentence_english": "I am a student.", + "pos": "verb", + "word_frequency": 12 + }, + { + "word": "más", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "more", + "example_sentence_native": "Quiero más agua.", + "example_sentence_english": "I want more water.", + "pos": "adverb", + "word_frequency": 22 + }, + { + "word": "este", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "this (masculine singular)", + "example_sentence_native": "Este coche es rápido.", + "example_sentence_english": "This car is fast.", + "pos": "adjective", + "word_frequency": 29 + }, + { + "word": "todo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "all;every;whole", + "example_sentence_native": "Todo el mundo lo sabe.", + "example_sentence_english": "Everyone knows it.", + "pos": "adjective", + "word_frequency": 30 + }, + { + "word": "ya", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "already;now;yet", + "example_sentence_native": "Ya he terminado.", + "example_sentence_english": "I have already finished.", + "pos": "adverb", + "word_frequency": 31 + }, + { + "word": "haber", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have (auxiliary);there to be", + "example_sentence_native": "Hay mucha gente aquí.", + "example_sentence_english": "There are many people here.", + "pos": "verb", + "word_frequency": 32 + }, + { + "word": "estar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be (location;state)", + "example_sentence_native": "Estoy cansado.", + "example_sentence_english": "I am tired.", + "pos": "verb", + "word_frequency": 35 + }, + { + "word": "muy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "very", + "example_sentence_native": "Es muy interesante.", + "example_sentence_english": "It is very interesting.", + "pos": "adverb", + "word_frequency": 37 + }, + { + "word": "también", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "also;too", + "example_sentence_native": "Yo también quiero ir.", + "example_sentence_english": "I also want to go.", + "pos": "adverb", + "word_frequency": 39 + }, + { + "word": "tener", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have", + "example_sentence_native": "Yo tengo un libro.", + "example_sentence_english": "I have a book.", + "pos": "verb", + "word_frequency": 41 + }, + { + "word": "así", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "like this;so", + "example_sentence_native": "Hazlo así.", + "example_sentence_english": "Do it like this.", + "pos": "adverb", + "word_frequency": 45 + }, + { + "word": "año", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "year", + "example_sentence_native": "El año nuevo empieza pronto.", + "example_sentence_english": "The new year starts soon.", + "pos": "noun", + "word_frequency": 46 + }, + { + "word": "dos", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two", + "example_sentence_native": "Tengo dos hermanos.", + "example_sentence_english": "I have two brothers.", + "pos": "adjective", + "word_frequency": 47 + }, + { + "word": "bien", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "well;good", + "example_sentence_native": "Estoy muy bien, gracias.", + "example_sentence_english": "I am very well, thank you.", + "pos": "adverb", + "word_frequency": 48 + }, + { + "word": "poder", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be able to;can", + "example_sentence_native": "¿Puedes ayudarme?", + "example_sentence_english": "Can you help me?", + "pos": "verb", + "word_frequency": 50 + }, + { + "word": "hacer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to do;to make", + "example_sentence_native": "¿Qué vas a hacer hoy?", + "example_sentence_english": "What are you going to do today?", + "pos": "verb", + "word_frequency": 53 + }, + { + "word": "ahora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "now", + "example_sentence_native": "Necesito irme ahora.", + "example_sentence_english": "I need to leave now.", + "pos": "adverb", + "word_frequency": 54 + }, + { + "word": "vez", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time (instance)", + "example_sentence_native": "Una vez al día.", + "example_sentence_english": "Once a day.", + "pos": "noun", + "word_frequency": 56 + }, + { + "word": "donde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where", + "example_sentence_native": "¿Dónde está el baño?", + "example_sentence_english": "Where is the bathroom?", + "pos": "adverb", + "word_frequency": 59 + }, + { + "word": "parte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "part", + "example_sentence_native": "Es una parte importante del proyecto.", + "example_sentence_english": "It's an important part of the project.", + "pos": "noun", + "word_frequency": 60 + }, + { + "word": "solo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "only;just", + "example_sentence_native": "Solo quiero un café.", + "example_sentence_english": "I only want a coffee.", + "pos": "adverb", + "word_frequency": 61 + }, + { + "word": "tiempo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time;weather", + "example_sentence_native": "No tengo mucho tiempo.", + "example_sentence_english": "I don't have much time.", + "pos": "noun", + "word_frequency": 63 + }, + { + "word": "día", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day", + "example_sentence_native": "Que tengas un buen día.", + "example_sentence_english": "Have a good day.", + "pos": "noun", + "word_frequency": 64 + }, + { + "word": "uno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one", + "example_sentence_native": "Solo tengo un euro.", + "example_sentence_english": "I only have one euro.", + "pos": "adjective", + "word_frequency": 65 + }, + { + "word": "mejor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "better;best", + "example_sentence_native": "Esta es la mejor opción.", + "example_sentence_english": "This is the best option.", + "pos": "adjective", + "word_frequency": 66 + }, + { + "word": "mucho", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "much;many", + "example_sentence_native": "Tengo mucho trabajo.", + "example_sentence_english": "I have a lot of work.", + "pos": "adjective", + "word_frequency": 67 + }, + { + "word": "tan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "so;such", + "example_sentence_native": "Es tan bonito.", + "example_sentence_english": "It's so beautiful.", + "pos": "adverb", + "word_frequency": 68 + }, + { + "word": "ver", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to see", + "example_sentence_native": "Quiero ver la película.", + "example_sentence_english": "I want to see the movie.", + "pos": "verb", + "word_frequency": 69 + }, + { + "word": "vida", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "life", + "example_sentence_native": "La vida es bella.", + "example_sentence_english": "Life is beautiful.", + "pos": "noun", + "word_frequency": 70 + }, + { + "word": "ese", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "that (adjective)", + "example_sentence_native": "Ese coche es rojo.", + "example_sentence_english": "That car is red.", + "pos": "adjective", + "word_frequency": 72 + }, + { + "word": "mismo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "same", + "example_sentence_native": "Es el mismo problema.", + "example_sentence_english": "It's the same problem.", + "pos": "adjective", + "word_frequency": 73 + }, + { + "word": "siempre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "always", + "example_sentence_native": "Siempre llego temprano.", + "example_sentence_english": "I always arrive early.", + "pos": "adverb", + "word_frequency": 74 + }, + { + "word": "cada", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "each;every", + "example_sentence_native": "Cada día aprendo algo nuevo.", + "example_sentence_english": "Every day I learn something new.", + "pos": "adjective", + "word_frequency": 75 + }, + { + "word": "después", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "after;afterwards", + "example_sentence_native": "Nos vemos después.", + "example_sentence_english": "See you later.", + "pos": "adverb", + "word_frequency": 76 + }, + { + "word": "gente", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "people", + "example_sentence_native": "Hay mucha gente en la calle.", + "example_sentence_english": "There are many people on the street.", + "pos": "noun", + "word_frequency": 77 + }, + { + "word": "estado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "state;condition", + "example_sentence_native": "El estado del coche es bueno.", + "example_sentence_english": "The condition of the car is good.", + "pos": "noun", + "word_frequency": 78 + }, + { + "word": "mundo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "world", + "example_sentence_native": "El mundo es grande.", + "example_sentence_english": "The world is big.", + "pos": "noun", + "word_frequency": 79 + }, + { + "word": "ir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go", + "example_sentence_native": "Voy al supermercado.", + "example_sentence_english": "I am going to the supermarket.", + "pos": "verb", + "word_frequency": 80 + }, + { + "word": "otro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "other;another", + "example_sentence_native": "Quiero otro café.", + "example_sentence_english": "I want another coffee.", + "pos": "adjective", + "word_frequency": 83 + }, + { + "word": "gracias", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thank you", + "example_sentence_native": "Gracias por tu ayuda.", + "example_sentence_english": "Thank you for your help.", + "pos": "interjection", + "word_frequency": 84 + }, + { + "word": "cosa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thing", + "example_sentence_native": "Dame esa cosa.", + "example_sentence_english": "Give me that thing.", + "pos": "noun", + "word_frequency": 85 + }, + { + "word": "gran", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "great;big", + "example_sentence_native": "Es un gran día.", + "example_sentence_english": "It's a great day.", + "pos": "adjective", + "word_frequency": 86 + }, + { + "word": "menos", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "less;minus", + "example_sentence_native": "Quiero menos azúcar.", + "example_sentence_english": "I want less sugar.", + "pos": "adverb", + "word_frequency": 87 + }, + { + "word": "nunca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "never", + "example_sentence_native": "Nunca he estado allí.", + "example_sentence_english": "I have never been there.", + "pos": "adverb", + "word_frequency": 88 + }, + { + "word": "persona", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "person", + "example_sentence_native": "Es una buena persona.", + "example_sentence_english": "He/She is a good person.", + "pos": "noun", + "word_frequency": 89 + }, + { + "word": "tanto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "so much;as much", + "example_sentence_native": "No tengo tanto dinero.", + "example_sentence_english": "I don't have so much money.", + "pos": "adjective", + "word_frequency": 90 + }, + { + "word": "antes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "before", + "example_sentence_native": "Llegué antes que tú.", + "example_sentence_english": "I arrived before you.", + "pos": "adverb", + "word_frequency": 91 + }, + { + "word": "poco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little;few", + "example_sentence_native": "Tengo poco tiempo.", + "example_sentence_english": "I have little time.", + "pos": "adjective", + "word_frequency": 92 + }, + { + "word": "trabajo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "work;job", + "example_sentence_native": "Mi trabajo es interesante.", + "example_sentence_english": "My job is interesting.", + "pos": "noun", + "word_frequency": 93 + }, + { + "word": "lugar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "place", + "example_sentence_native": "Este es un buen lugar.", + "example_sentence_english": "This is a good place.", + "pos": "noun", + "word_frequency": 96 + }, + { + "word": "creer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to believe", + "example_sentence_native": "No lo creo.", + "example_sentence_english": "I don't believe it.", + "pos": "verb", + "word_frequency": 97 + }, + { + "word": "cómo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "how", + "example_sentence_native": "¿Cómo estás?", + "example_sentence_english": "How are you?", + "pos": "adverb", + "word_frequency": 98 + }, + { + "word": "hecho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fact;deed", + "example_sentence_native": "Es un hecho importante.", + "example_sentence_english": "It's an important fact.", + "pos": "noun", + "word_frequency": 99 + }, + { + "word": "querer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to want;to love", + "example_sentence_native": "Quiero un café.", + "example_sentence_english": "I want a coffee.", + "pos": "verb", + "word_frequency": 100 + }, + { + "word": "cuenta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "account;bill;count", + "example_sentence_native": "La cuenta, por favor.", + "example_sentence_english": "The bill, please.", + "pos": "noun", + "word_frequency": 103 + }, + { + "word": "decir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to say;to tell", + "example_sentence_native": "¿Qué quieres decir?", + "example_sentence_english": "What do you want to say?", + "pos": "verb", + "word_frequency": 104 + }, + { + "word": "gobierno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "government", + "example_sentence_native": "El gobierno anunció nuevas medidas.", + "example_sentence_english": "The government announced new measures.", + "pos": "noun", + "word_frequency": 105 + }, + { + "word": "país", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "country", + "example_sentence_native": "España es un país hermoso.", + "example_sentence_english": "Spain is a beautiful country.", + "pos": "noun", + "word_frequency": 106 + }, + { + "word": "casa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "house;home", + "example_sentence_native": "Voy a casa.", + "example_sentence_english": "I'm going home.", + "pos": "noun", + "word_frequency": 107 + }, + { + "word": "forma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "form;shape;way", + "example_sentence_native": "Es una nueva forma de pensar.", + "example_sentence_english": "It's a new way of thinking.", + "pos": "noun", + "word_frequency": 108 + }, + { + "word": "nuevo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "new", + "example_sentence_native": "Tengo un coche nuevo.", + "example_sentence_english": "I have a new car.", + "pos": "adjective", + "word_frequency": 109 + }, + { + "word": "aquí", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here", + "example_sentence_native": "Estoy aquí.", + "example_sentence_english": "I am here.", + "pos": "adverb", + "word_frequency": 110 + }, + { + "word": "sí", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yes", + "example_sentence_native": "Sí, quiero.", + "example_sentence_english": "Yes, I want.", + "pos": "adverb", + "word_frequency": 112 + }, + { + "word": "hoy", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "today", + "example_sentence_native": "Hoy es lunes.", + "example_sentence_english": "Today is Monday.", + "pos": "adverb", + "word_frequency": 113 + }, + { + "word": "tres", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "three", + "example_sentence_native": "Tengo tres libros.", + "example_sentence_english": "I have three books.", + "pos": "adjective", + "word_frequency": 116 + }, + { + "word": "caso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "case;instance", + "example_sentence_native": "En cualquier caso, estaré allí.", + "example_sentence_english": "In any case, I will be there.", + "pos": "noun", + "word_frequency": 117 + }, + { + "word": "momento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moment", + "example_sentence_native": "Espera un momento.", + "example_sentence_english": "Wait a moment.", + "pos": "noun", + "word_frequency": 118 + }, + { + "word": "bueno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "good", + "example_sentence_native": "Es un buen libro.", + "example_sentence_english": "It's a good book.", + "pos": "adjective", + "word_frequency": 119 + }, + { + "word": "ciudad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "city", + "example_sentence_native": "Vivo en una gran ciudad.", + "example_sentence_english": "I live in a big city.", + "pos": "noun", + "word_frequency": 120 + }, + { + "word": "luego", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "then;later", + "example_sentence_native": "Primero comemos, luego vamos al cine.", + "example_sentence_english": "First we eat, then we go to the cinema.", + "pos": "adverb", + "word_frequency": 122 + }, + { + "word": "nacional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national", + "example_sentence_native": "Es un día festivo nacional.", + "example_sentence_english": "It's a national holiday.", + "pos": "adjective", + "word_frequency": 123 + }, + { + "word": "parecer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to seem;to appear", + "example_sentence_native": "Parece que va a llover.", + "example_sentence_english": "It seems like it's going to rain.", + "pos": "verb", + "word_frequency": 124 + }, + { + "word": "verdad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "truth", + "example_sentence_native": "Dime la verdad.", + "example_sentence_english": "Tell me the truth.", + "pos": "noun", + "word_frequency": 126 + }, + { + "word": "historia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "history;story", + "example_sentence_native": "Me gusta leer libros de historia.", + "example_sentence_english": "I like to read history books.", + "pos": "noun", + "word_frequency": 127 + }, + { + "word": "primero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "first", + "example_sentence_native": "Es mi primera vez aquí.", + "example_sentence_english": "It's my first time here.", + "pos": "adjective", + "word_frequency": 130 + }, + { + "word": "deber", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to owe;must;should", + "example_sentence_native": "Debes estudiar más.", + "example_sentence_english": "You should study more.", + "pos": "verb", + "word_frequency": 132 + }, + { + "word": "entonces", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "then;so", + "example_sentence_native": "Si no quieres ir, entonces no vayas.", + "example_sentence_english": "If you don't want to go, then don't go.", + "pos": "adverb", + "word_frequency": 133 + }, + { + "word": "tipo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "type;kind", + "example_sentence_native": "¿Qué tipo de música te gusta?", + "example_sentence_english": "What type of music do you like?", + "pos": "noun", + "word_frequency": 134 + }, + { + "word": "alguno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "some;any", + "example_sentence_native": "¿Tienes alguna pregunta?", + "example_sentence_english": "Do you have any questions?", + "pos": "adjective", + "word_frequency": 135 + }, + { + "word": "general", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "general", + "example_sentence_native": "En general, me gusta la comida española.", + "example_sentence_english": "In general, I like Spanish food.", + "pos": "adjective", + "word_frequency": 136 + }, + { + "word": "mayor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "older;bigger;major", + "example_sentence_native": "Mi hermano es mayor que yo.", + "example_sentence_english": "My brother is older than me.", + "pos": "adjective", + "word_frequency": 137 + }, + { + "word": "tal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "such;such a", + "example_sentence_native": "Nunca había visto tal cosa.", + "example_sentence_english": "I had never seen such a thing.", + "pos": "adjective", + "word_frequency": 138 + }, + { + "word": "además", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furthermore;besides", + "example_sentence_native": "Además, no tengo tiempo.", + "example_sentence_english": "Furthermore, I don't have time.", + "pos": "adverb", + "word_frequency": 139 + }, + { + "word": "mal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "badly;poorly", + "example_sentence_native": "Me siento mal hoy.", + "example_sentence_english": "I feel bad today.", + "pos": "adverb", + "word_frequency": 140 + }, + { + "word": "acuerdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agreement", + "example_sentence_native": "Llegamos a un acuerdo.", + "example_sentence_english": "We reached an agreement.", + "pos": "noun", + "word_frequency": 142 + }, + { + "word": "cualquier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "any (whatever)", + "example_sentence_native": "Puedes elegir cualquier libro.", + "example_sentence_english": "You can choose any book.", + "pos": "adjective", + "word_frequency": 143 + }, + { + "word": "dios", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "God", + "example_sentence_native": "Gracias a Dios.", + "example_sentence_english": "Thank God.", + "pos": "noun", + "word_frequency": 144 + }, + { + "word": "manera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "way;manner", + "example_sentence_native": "No hay otra manera de hacerlo.", + "example_sentence_english": "There's no other way to do it.", + "pos": "noun", + "word_frequency": 145 + }, + { + "word": "nombre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "name", + "example_sentence_native": "¿Cuál es tu nombre?", + "example_sentence_english": "What is your name?", + "pos": "noun", + "word_frequency": 146 + }, + { + "word": "ley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "law", + "example_sentence_native": "Es contra la ley.", + "example_sentence_english": "It's against the law.", + "pos": "noun", + "word_frequency": 147 + }, + { + "word": "medio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "middle;means;half", + "example_sentence_native": "Está en medio de la calle.", + "example_sentence_english": "It's in the middle of the street.", + "pos": "noun", + "word_frequency": 148 + }, + { + "word": "partido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "party (political;game)", + "example_sentence_native": "El partido de fútbol fue emocionante.", + "example_sentence_english": "The soccer game was exciting.", + "pos": "noun", + "word_frequency": 149 + }, + { + "word": "bajo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "low;short (height)", + "example_sentence_native": "La mesa es muy baja.", + "example_sentence_english": "The table is very low.", + "pos": "adjective", + "word_frequency": 150 + }, + { + "word": "dar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to give", + "example_sentence_native": "¿Me puedes dar un vaso de agua?", + "example_sentence_english": "Can you give me a glass of water?", + "pos": "verb", + "word_frequency": 153 + }, + { + "word": "grupo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "group", + "example_sentence_native": "Somos un grupo de amigos.", + "example_sentence_english": "We are a group of friends.", + "pos": "noun", + "word_frequency": 154 + }, + { + "word": "hombre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "man", + "example_sentence_native": "El hombre está leyendo un libro.", + "example_sentence_english": "The man is reading a book.", + "pos": "noun", + "word_frequency": 155 + }, + { + "word": "mujer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "woman", + "example_sentence_native": "La mujer canta muy bien.", + "example_sentence_english": "The woman sings very well.", + "pos": "noun", + "word_frequency": 156 + }, + { + "word": "sistema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "system", + "example_sentence_native": "El sistema funciona correctamente.", + "example_sentence_english": "The system works correctly.", + "pos": "noun", + "word_frequency": 157 + }, + { + "word": "casi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "almost", + "example_sentence_native": "Casi termino mi trabajo.", + "example_sentence_english": "I almost finished my work.", + "pos": "adverb", + "word_frequency": 158 + }, + { + "word": "fin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "end", + "example_sentence_native": "Este es el fin de la historia.", + "example_sentence_english": "This is the end of the story.", + "pos": "noun", + "word_frequency": 159 + }, + { + "word": "noche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "night", + "example_sentence_native": "Buenas noches.", + "example_sentence_english": "Good night.", + "pos": "noun", + "word_frequency": 160 + }, + { + "word": "pasado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "past", + "example_sentence_native": "El pasado es historia.", + "example_sentence_english": "The past is history.", + "pos": "noun", + "word_frequency": 161 + }, + { + "word": "presidente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "president", + "example_sentence_native": "El presidente dio un discurso.", + "example_sentence_english": "The president gave a speech.", + "pos": "noun", + "word_frequency": 162 + }, + { + "word": "ahí", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there", + "example_sentence_native": "Ponlo ahí, por favor.", + "example_sentence_english": "Put it there, please.", + "pos": "adverb", + "word_frequency": 164 + }, + { + "word": "dentro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside", + "example_sentence_native": "El gato está dentro de la caja.", + "example_sentence_english": "The cat is inside the box.", + "pos": "adverb", + "word_frequency": 165 + }, + { + "word": "familia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "family", + "example_sentence_native": "Mi familia es muy importante para mí.", + "example_sentence_english": "My family is very important to me.", + "pos": "noun", + "word_frequency": 167 + }, + { + "word": "lado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "side", + "example_sentence_native": "Está al otro lado de la calle.", + "example_sentence_english": "It's on the other side of the street.", + "pos": "noun", + "word_frequency": 168 + }, + { + "word": "aún", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "still;yet", + "example_sentence_native": "Aún no ha llegado.", + "example_sentence_english": "He hasn't arrived yet.", + "pos": "adverb", + "word_frequency": 169 + }, + { + "word": "pueblo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "town;village;people", + "example_sentence_native": "Vivo en un pueblo pequeño.", + "example_sentence_english": "I live in a small town.", + "pos": "noun", + "word_frequency": 170 + }, + { + "word": "final", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "end;final", + "example_sentence_native": "Llegamos al final del camino.", + "example_sentence_english": "We reached the end of the road.", + "pos": "noun", + "word_frequency": 171 + }, + { + "word": "política", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politics;policy", + "example_sentence_native": "La política es un tema complejo.", + "example_sentence_english": "Politics is a complex topic.", + "pos": "noun", + "word_frequency": 172 + }, + { + "word": "problema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "problem", + "example_sentence_native": "No hay problema.", + "example_sentence_english": "No problem.", + "pos": "noun", + "word_frequency": 173 + }, + { + "word": "punto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "point;dot;period", + "example_sentence_native": "Este es un punto importante.", + "example_sentence_english": "This is an important point.", + "pos": "noun", + "word_frequency": 174 + }, + { + "word": "agua", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "water", + "example_sentence_native": "Quiero un vaso de agua.", + "example_sentence_english": "I want a glass of water.", + "pos": "noun", + "word_frequency": 175 + }, + { + "word": "equipo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "team;equipment", + "example_sentence_native": "Somos un buen equipo.", + "example_sentence_english": "We are a good team.", + "pos": "noun", + "word_frequency": 176 + }, + { + "word": "guerra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "war", + "example_sentence_native": "La guerra es terrible.", + "example_sentence_english": "War is terrible.", + "pos": "noun", + "word_frequency": 177 + }, + { + "word": "saber", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know (facts;how to do something)", + "example_sentence_native": "Yo sé la respuesta.", + "example_sentence_english": "I know the answer.", + "pos": "verb", + "word_frequency": 178 + }, + { + "word": "embargo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embargo;seizure", + "example_sentence_native": "Sin embargo, no estoy de acuerdo.", + "example_sentence_english": "However, I don't agree.", + "pos": "noun", + "word_frequency": 181 + }, + { + "word": "favor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "favor", + "example_sentence_native": "¿Me haces un favor?", + "example_sentence_english": "Can you do me a favor?", + "pos": "noun", + "word_frequency": 182 + }, + { + "word": "gustar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to like;to please", + "example_sentence_native": "Me gusta el chocolate.", + "example_sentence_english": "I like chocolate.", + "pos": "verb", + "word_frequency": 183 + }, + { + "word": "importante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "important", + "example_sentence_native": "Es una decisión importante.", + "example_sentence_english": "It's an important decision.", + "pos": "adjective", + "word_frequency": 184 + }, + { + "word": "información", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "information", + "example_sentence_native": "Necesito más información.", + "example_sentence_english": "I need more information.", + "pos": "noun", + "word_frequency": 185 + }, + { + "word": "mañana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "morning;tomorrow", + "example_sentence_native": "Nos vemos mañana por la mañana.", + "example_sentence_english": "See you tomorrow morning.", + "pos": "noun", + "word_frequency": 186 + }, + { + "word": "pasar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pass;to happen;to spend (time)", + "example_sentence_native": "¿Qué pasó?", + "example_sentence_english": "What happened?", + "pos": "verb", + "word_frequency": 187 + }, + { + "word": "semana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "week", + "example_sentence_native": "La próxima semana viajo.", + "example_sentence_english": "Next week I travel.", + "pos": "noun", + "word_frequency": 188 + }, + { + "word": "claro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clear;light (color);of course", + "example_sentence_native": "El cielo está claro hoy.", + "example_sentence_english": "The sky is clear today.", + "pos": "adjective", + "word_frequency": 189 + }, + { + "word": "dinero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "money", + "example_sentence_native": "No tengo mucho dinero.", + "example_sentence_english": "I don't have much money.", + "pos": "noun", + "word_frequency": 190 + }, + { + "word": "social", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social", + "example_sentence_native": "Tenemos una vida social activa.", + "example_sentence_english": "We have an active social life.", + "pos": "adjective", + "word_frequency": 192 + }, + { + "word": "ejemplo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "example", + "example_sentence_native": "Por ejemplo, esto.", + "example_sentence_english": "For example, this.", + "pos": "noun", + "word_frequency": 193 + }, + { + "word": "hora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hour;time", + "example_sentence_native": "¿Qué hora es?", + "example_sentence_english": "What time is it?", + "pos": "noun", + "word_frequency": 194 + }, + { + "word": "igual", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "equal;same", + "example_sentence_native": "Todos somos iguales.", + "example_sentence_english": "We are all equal.", + "pos": "adjective", + "word_frequency": 195 + }, + { + "word": "millón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "million", + "example_sentence_native": "Cuesta un millón de dólares.", + "example_sentence_english": "It costs a million dollars.", + "pos": "noun", + "word_frequency": 196 + }, + { + "word": "número", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "number", + "example_sentence_native": "¿Cuál es tu número de teléfono?", + "example_sentence_english": "What is your phone number?", + "pos": "noun", + "word_frequency": 197 + }, + { + "word": "hablar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to speak;to talk", + "example_sentence_native": "Me gusta hablar español.", + "example_sentence_english": "I like to speak Spanish.", + "pos": "verb", + "word_frequency": 198 + }, + { + "word": "madre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother", + "example_sentence_native": "Mi madre es muy amable.", + "example_sentence_english": "My mother is very kind.", + "pos": "noun", + "word_frequency": 199 + }, + { + "word": "señor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mr.;sir", + "example_sentence_native": "Buenos días, señor.", + "example_sentence_english": "Good morning, sir.", + "pos": "noun", + "word_frequency": 200 + }, + { + "word": "centro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "center", + "example_sentence_native": "El centro de la ciudad es muy bonito.", + "example_sentence_english": "The city center is very beautiful.", + "pos": "noun", + "word_frequency": 201 + }, + { + "word": "derecho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "right (legal;direction)", + "example_sentence_native": "Todos tienen derecho a la educación.", + "example_sentence_english": "Everyone has the right to education.", + "pos": "noun", + "word_frequency": 202 + }, + { + "word": "falta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lack;absence", + "example_sentence_native": "Hay una falta de agua en la región.", + "example_sentence_english": "There is a lack of water in the region.", + "pos": "noun", + "word_frequency": 203 + }, + { + "word": "grande", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "big;large", + "example_sentence_native": "La casa es muy grande.", + "example_sentence_english": "The house is very big.", + "pos": "adjective", + "word_frequency": 204 + }, + { + "word": "amigo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "friend", + "example_sentence_native": "Mi mejor amigo vive en Madrid.", + "example_sentence_english": "My best friend lives in Madrid.", + "pos": "noun", + "word_frequency": 205 + }, + { + "word": "cambio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "change", + "example_sentence_native": "Necesitamos un cambio en la política.", + "example_sentence_english": "We need a change in policy.", + "pos": "noun", + "word_frequency": 206 + }, + { + "word": "idea", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "idea", + "example_sentence_native": "Tengo una buena idea para el proyecto.", + "example_sentence_english": "I have a good idea for the project.", + "pos": "noun", + "word_frequency": 207 + }, + { + "word": "muerte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "death", + "example_sentence_native": "La muerte es parte de la vida.", + "example_sentence_english": "Death is part of life.", + "pos": "noun", + "word_frequency": 209 + }, + { + "word": "tarde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "afternoon;evening", + "example_sentence_native": "Nos vemos por la tarde.", + "example_sentence_english": "See you in the afternoon.", + "pos": "noun", + "word_frequency": 210 + }, + { + "word": "través", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "across;through (in 'a través de')", + "example_sentence_native": "Caminamos a través del bosque.", + "example_sentence_english": "We walked through the forest.", + "pos": "noun", + "word_frequency": 212 + }, + { + "word": "mes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "month", + "example_sentence_native": "El próximo mes me voy de vacaciones.", + "example_sentence_english": "Next month I'm going on vacation.", + "pos": "noun", + "word_frequency": 213 + }, + { + "word": "realidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reality", + "example_sentence_native": "La realidad es más compleja de lo que parece.", + "example_sentence_english": "Reality is more complex than it seems.", + "pos": "noun", + "word_frequency": 214 + }, + { + "word": "amor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "love", + "example_sentence_native": "El amor es un sentimiento universal.", + "example_sentence_english": "Love is a universal feeling.", + "pos": "noun", + "word_frequency": 216 + }, + { + "word": "dicho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saying;proverb", + "example_sentence_native": "Hay un dicho popular que dice...", + "example_sentence_english": "There is a popular saying that goes...", + "pos": "noun", + "word_frequency": 217 + }, + { + "word": "frente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front;forehead", + "example_sentence_native": "Se golpeó la frente al caer.", + "example_sentence_english": "He hit his forehead when he fell.", + "pos": "noun", + "word_frequency": 218 + }, + { + "word": "incluso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "even;including", + "example_sentence_native": "Incluso los niños entendieron la explicación.", + "example_sentence_english": "Even the children understood the explanation.", + "pos": "adverb", + "word_frequency": 219 + }, + { + "word": "real", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "real;royal", + "example_sentence_native": "Es una historia real.", + "example_sentence_english": "It's a real story.", + "pos": "adjective", + "word_frequency": 220 + }, + { + "word": "cuatro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "four", + "example_sentence_native": "Tengo cuatro libros.", + "example_sentence_english": "I have four books.", + "pos": "adjective", + "word_frequency": 222 + }, + { + "word": "desarrollo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "development", + "example_sentence_native": "El desarrollo económico es importante.", + "example_sentence_english": "Economic development is important.", + "pos": "noun", + "word_frequency": 223 + }, + { + "word": "hijo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "son;child", + "example_sentence_native": "Mi hijo tiene cinco años.", + "example_sentence_english": "My son is five years old.", + "pos": "noun", + "word_frequency": 224 + }, + { + "word": "sociedad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "society", + "example_sentence_native": "Vivimos en una sociedad compleja.", + "example_sentence_english": "We live in a complex society.", + "pos": "noun", + "word_frequency": 225 + }, + { + "word": "tema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "topic;theme", + "example_sentence_native": "El tema de la reunión es el cambio climático.", + "example_sentence_english": "The topic of the meeting is climate change.", + "pos": "noun", + "word_frequency": 226 + }, + { + "word": "varios", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "several;various", + "example_sentence_native": "Compré varios libros nuevos.", + "example_sentence_english": "I bought several new books.", + "pos": "adjective", + "word_frequency": 227 + }, + { + "word": "nivel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "level", + "example_sentence_native": "Su nivel de español es muy bueno.", + "example_sentence_english": "His Spanish level is very good.", + "pos": "noun", + "word_frequency": 228 + }, + { + "word": "niño", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "child;boy", + "example_sentence_native": "El niño está jugando en el parque.", + "example_sentence_english": "The child is playing in the park.", + "pos": "noun", + "word_frequency": 229 + }, + { + "word": "seguro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "safe;sure", + "example_sentence_native": "Estoy seguro de que lo lograrás.", + "example_sentence_english": "I am sure you will achieve it.", + "pos": "adjective", + "word_frequency": 230 + }, + { + "word": "juego", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "game;play", + "example_sentence_native": "Me gusta jugar a los juegos de mesa.", + "example_sentence_english": "I like to play board games.", + "pos": "noun", + "word_frequency": 232 + }, + { + "word": "llegar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to arrive", + "example_sentence_native": "¿A qué hora vas a llegar?", + "example_sentence_english": "What time are you going to arrive?", + "pos": "verb", + "word_frequency": 233 + }, + { + "word": "mano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hand", + "example_sentence_native": "Dame la mano.", + "example_sentence_english": "Give me your hand.", + "pos": "noun", + "word_frequency": 234 + }, + { + "word": "paso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "step;pass", + "example_sentence_native": "Da un paso adelante.", + "example_sentence_english": "Take a step forward.", + "pos": "noun", + "word_frequency": 235 + }, + { + "word": "posible", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "possible", + "example_sentence_native": "Es posible que llueva mañana.", + "example_sentence_english": "It's possible that it will rain tomorrow.", + "pos": "adjective", + "word_frequency": 236 + }, + { + "word": "proyecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project", + "example_sentence_native": "Estamos trabajando en un nuevo proyecto.", + "example_sentence_english": "We are working on a new project.", + "pos": "noun", + "word_frequency": 237 + }, + { + "word": "seguir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to follow;to continue", + "example_sentence_native": "Sigue las instrucciones.", + "example_sentence_english": "Follow the instructions.", + "pos": "verb", + "word_frequency": 238 + }, + { + "word": "unido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "united;joined", + "example_sentence_native": "Permanecemos unidos en la adversidad.", + "example_sentence_english": "We remain united in adversity.", + "pos": "adjective", + "word_frequency": 239 + }, + { + "word": "uso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "use", + "example_sentence_native": "El uso del teléfono está prohibido aquí.", + "example_sentence_english": "The use of the phone is prohibited here.", + "pos": "noun", + "word_frequency": 240 + }, + { + "word": "artículo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "article", + "example_sentence_native": "Leí un artículo interesante en el periódico.", + "example_sentence_english": "I read an interesting article in the newspaper.", + "pos": "noun", + "word_frequency": 241 + }, + { + "word": "cerca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "near;close", + "example_sentence_native": "La tienda está cerca de mi casa.", + "example_sentence_english": "The store is close to my house.", + "pos": "adverb", + "word_frequency": 242 + }, + { + "word": "cierto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "certain;true", + "example_sentence_native": "Es cierto que lloverá mañana.", + "example_sentence_english": "It's true that it will rain tomorrow.", + "pos": "adjective", + "word_frequency": 243 + }, + { + "word": "razón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reason", + "example_sentence_native": "Tienes razón, es una buena idea.", + "example_sentence_english": "You are right, it's a good idea.", + "pos": "noun", + "word_frequency": 245 + }, + { + "word": "todavía", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "still;yet", + "example_sentence_native": "Todavía no he terminado mi tarea.", + "example_sentence_english": "I haven't finished my homework yet.", + "pos": "adverb", + "word_frequency": 246 + }, + { + "word": "mayoría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "majority", + "example_sentence_native": "La mayoría de la gente prefiere el café.", + "example_sentence_english": "The majority of people prefer coffee.", + "pos": "noun", + "word_frequency": 249 + }, + { + "word": "padre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father", + "example_sentence_native": "Mi padre trabaja en un hospital.", + "example_sentence_english": "My father works in a hospital.", + "pos": "noun", + "word_frequency": 250 + }, + { + "word": "salir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to leave;to go out", + "example_sentence_native": "Necesito salir de casa temprano.", + "example_sentence_english": "I need to leave home early.", + "pos": "verb", + "word_frequency": 251 + }, + { + "word": "seguridad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "security;safety", + "example_sentence_native": "La seguridad es importante en este lugar.", + "example_sentence_english": "Security is important in this place.", + "pos": "noun", + "word_frequency": 252 + }, + { + "word": "tierra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "earth;land", + "example_sentence_native": "La Tierra es el tercer planeta del sol.", + "example_sentence_english": "Earth is the third planet from the sun.", + "pos": "noun", + "word_frequency": 253 + }, + { + "word": "único", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unique;only", + "example_sentence_native": "Es el único libro que tengo.", + "example_sentence_english": "It's the only book I have.", + "pos": "adjective", + "word_frequency": 254 + }, + { + "word": "cuerpo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "body", + "example_sentence_native": "El cuerpo humano es complejo.", + "example_sentence_english": "The human body is complex.", + "pos": "noun", + "word_frequency": 255 + }, + { + "word": "programa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "program", + "example_sentence_native": "El programa de televisión empieza a las ocho.", + "example_sentence_english": "The TV program starts at eight.", + "pos": "noun", + "word_frequency": 256 + }, + { + "word": "segundo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "second", + "example_sentence_native": "Este es mi segundo intento.", + "example_sentence_english": "This is my second attempt.", + "pos": "adjective", + "word_frequency": 257 + }, + { + "word": "universidad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "university", + "example_sentence_native": "Estudiaré en la universidad el próximo año.", + "example_sentence_english": "I will study at the university next year.", + "pos": "noun", + "word_frequency": 258 + }, + { + "word": "último", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "last;ultimate", + "example_sentence_native": "Este es el último capítulo del libro.", + "example_sentence_english": "This is the last chapter of the book.", + "pos": "adjective", + "word_frequency": 259 + }, + { + "word": "cabeza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "head", + "example_sentence_native": "Me duele la cabeza.", + "example_sentence_english": "My head hurts.", + "pos": "noun", + "word_frequency": 260 + }, + { + "word": "foto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "photo", + "example_sentence_native": "Me gusta tomar fotos.", + "example_sentence_english": "I like to take photos.", + "pos": "noun", + "word_frequency": 261 + }, + { + "word": "internacional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "international", + "example_sentence_native": "Es una organización internacional.", + "example_sentence_english": "It is an international organization.", + "pos": "adjective", + "word_frequency": 262 + }, + { + "word": "mil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thousand", + "example_sentence_native": "Hay mil personas en el evento.", + "example_sentence_english": "There are a thousand people at the event.", + "pos": "adjective", + "word_frequency": 263 + }, + { + "word": "palabra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "word", + "example_sentence_native": "No entiendo esa palabra.", + "example_sentence_english": "I don't understand that word.", + "pos": "noun", + "word_frequency": 264 + }, + { + "word": "público", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "public", + "example_sentence_native": "Es un parque público.", + "example_sentence_english": "It is a public park.", + "pos": "adjective", + "word_frequency": 265 + }, + { + "word": "servicio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "service", + "example_sentence_native": "El servicio al cliente es excelente.", + "example_sentence_english": "The customer service is excellent.", + "pos": "noun", + "word_frequency": 266 + }, + { + "word": "situación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situation", + "example_sentence_native": "La situación es complicada.", + "example_sentence_english": "The situation is complicated.", + "pos": "noun", + "word_frequency": 267 + }, + { + "word": "ayuda", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "help", + "example_sentence_native": "Necesito tu ayuda.", + "example_sentence_english": "I need your help.", + "pos": "noun", + "word_frequency": 268 + }, + { + "word": "libro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "book", + "example_sentence_native": "Me gusta leer libros.", + "example_sentence_english": "I like to read books.", + "pos": "noun", + "word_frequency": 270 + }, + { + "word": "siguiente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "next;following", + "example_sentence_native": "La siguiente parada es la estación.", + "example_sentence_english": "The next stop is the station.", + "pos": "adjective", + "word_frequency": 271 + }, + { + "word": "dato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "data;fact", + "example_sentence_native": "Necesitamos más datos para el informe.", + "example_sentence_english": "We need more data for the report.", + "pos": "noun", + "word_frequency": 272 + }, + { + "word": "dejar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to leave;to let", + "example_sentence_native": "Puedes dejar tu mochila aquí.", + "example_sentence_english": "You can leave your backpack here.", + "pos": "verb", + "word_frequency": 273 + }, + { + "word": "educación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education", + "example_sentence_native": "La educación es fundamental para el futuro.", + "example_sentence_english": "Education is fundamental for the future.", + "pos": "noun", + "word_frequency": 274 + }, + { + "word": "proceso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "process", + "example_sentence_native": "El proceso de aprendizaje es largo.", + "example_sentence_english": "The learning process is long.", + "pos": "noun", + "word_frequency": 275 + }, + { + "word": "sentido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sense;meaning", + "example_sentence_native": "No tiene sentido lo que dices.", + "example_sentence_english": "What you're saying makes no sense.", + "pos": "noun", + "word_frequency": 276 + }, + { + "word": "cinco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "five", + "example_sentence_native": "Tengo cinco manzanas.", + "example_sentence_english": "I have five apples.", + "pos": "adjective", + "word_frequency": 277 + }, + { + "word": "clase", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "class", + "example_sentence_native": "La clase de español empieza a las nueve.", + "example_sentence_english": "The Spanish class starts at nine.", + "pos": "noun", + "word_frequency": 278 + }, + { + "word": "cuanto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "as much as;how much", + "example_sentence_native": "Cuanto más estudias, más aprendes.", + "example_sentence_english": "The more you study, the more you learn.", + "pos": "adverb", + "word_frequency": 279 + }, + { + "word": "largo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "long", + "example_sentence_native": "El río es muy largo.", + "example_sentence_english": "The river is very long.", + "pos": "adjective", + "word_frequency": 283 + }, + { + "word": "ninguno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "no;none;any (with negation)", + "example_sentence_native": "No tengo ningún problema.", + "example_sentence_english": "I don't have any problem.", + "pos": "adjective", + "word_frequency": 284 + }, + { + "word": "orden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "order", + "example_sentence_native": "Por favor, pon los libros en orden.", + "example_sentence_english": "Please put the books in order.", + "pos": "noun", + "word_frequency": 285 + }, + { + "word": "puesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position;job;stall", + "example_sentence_native": "Consiguió un buen puesto en la empresa.", + "example_sentence_english": "He got a good position in the company.", + "pos": "noun", + "word_frequency": 286 + }, + { + "word": "realmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "really;actually", + "example_sentence_native": "Realmente me gusta tu idea.", + "example_sentence_english": "I really like your idea.", + "pos": "adverb", + "word_frequency": 287 + }, + { + "word": "alto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tall;high", + "example_sentence_native": "Es un edificio muy alto.", + "example_sentence_english": "It's a very tall building.", + "pos": "adjective", + "word_frequency": 288 + }, + { + "word": "diferente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "different", + "example_sentence_native": "Tenemos opiniones diferentes.", + "example_sentence_english": "We have different opinions.", + "pos": "adjective", + "word_frequency": 290 + }, + { + "word": "español", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Spanish", + "example_sentence_native": "Hablo español.", + "example_sentence_english": "I speak Spanish.", + "pos": "adjective", + "word_frequency": 291 + }, + { + "word": "junto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "together;next to", + "example_sentence_native": "Vivimos juntos.", + "example_sentence_english": "We live together.", + "pos": "adjective", + "word_frequency": 292 + }, + { + "word": "lista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "list", + "example_sentence_native": "Haz una lista de la compra.", + "example_sentence_english": "Make a shopping list.", + "pos": "noun", + "word_frequency": 293 + }, + { + "word": "personal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personal", + "example_sentence_native": "Es una opinión personal.", + "example_sentence_english": "It's a personal opinion.", + "pos": "adjective", + "word_frequency": 294 + }, + { + "word": "total", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total;complete", + "example_sentence_native": "El coste total es de cien euros.", + "example_sentence_english": "The total cost is one hundred euros.", + "pos": "adjective", + "word_frequency": 295 + }, + { + "word": "tratar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat;to try;to deal with", + "example_sentence_native": "Debemos tratar este problema.", + "example_sentence_english": "We must deal with this problem.", + "pos": "verb", + "word_frequency": 296 + }, + { + "word": "video", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video", + "example_sentence_native": "Me gusta ver videos en línea.", + "example_sentence_english": "I like to watch videos online.", + "pos": "noun", + "word_frequency": 297 + }, + { + "word": "venir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to come", + "example_sentence_native": "¿Puedes venir a mi casa?", + "example_sentence_english": "Can you come to my house?", + "pos": "verb", + "word_frequency": 298 + }, + { + "word": "web", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "web", + "example_sentence_native": "Visita nuestra página web para más información.", + "example_sentence_english": "Visit our website for more information.", + "pos": "noun", + "word_frequency": 299 + }, + { + "word": "base", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "base", + "example_sentence_native": "La base del problema es la comunicación.", + "example_sentence_english": "The base of the problem is communication.", + "pos": "noun", + "word_frequency": 300 + }, + { + "word": "camino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "path;road;way", + "example_sentence_native": "Estamos en el camino correcto.", + "example_sentence_english": "We are on the right path.", + "pos": "noun", + "word_frequency": 301 + }, + { + "word": "empresa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "company;enterprise", + "example_sentence_native": "Trabaja en una empresa grande.", + "example_sentence_english": "He works in a big company.", + "pos": "noun", + "word_frequency": 302 + }, + { + "word": "especial", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "special", + "example_sentence_native": "Hoy es un día especial.", + "example_sentence_english": "Today is a special day.", + "pos": "adjective", + "word_frequency": 303 + }, + { + "word": "paz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peace", + "example_sentence_native": "Deseo paz para el mundo.", + "example_sentence_english": "I wish peace for the world.", + "pos": "noun", + "word_frequency": 306 + }, + { + "word": "policía", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police;police officer", + "example_sentence_native": "La policía llegó rápidamente.", + "example_sentence_english": "The police arrived quickly.", + "pos": "noun", + "word_frequency": 307 + }, + { + "word": "quedar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stay;to remain;to be left", + "example_sentence_native": "¿Quieres quedar para cenar?", + "example_sentence_english": "Do you want to meet for dinner?", + "pos": "verb", + "word_frequency": 308 + }, + { + "word": "salud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "health;cheers", + "example_sentence_native": "Brindemos por tu salud.", + "example_sentence_english": "Let's toast to your health.", + "pos": "noun", + "word_frequency": 309 + }, + { + "word": "sitio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place;site", + "example_sentence_native": "Este es un buen sitio para comer.", + "example_sentence_english": "This is a good place to eat.", + "pos": "noun", + "word_frequency": 310 + }, + { + "word": "tomar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to take;to drink", + "example_sentence_native": "Voy a tomar un café.", + "example_sentence_english": "I'm going to have a coffee.", + "pos": "verb", + "word_frequency": 311 + }, + { + "word": "zona", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zone;area", + "example_sentence_native": "Es una zona residencial tranquila.", + "example_sentence_english": "It's a quiet residential area.", + "pos": "noun", + "word_frequency": 312 + }, + { + "word": "calle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "street", + "example_sentence_native": "Vivo en esta calle.", + "example_sentence_english": "I live on this street.", + "pos": "noun", + "word_frequency": 313 + }, + { + "word": "cara", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "face", + "example_sentence_native": "Se lavó la cara.", + "example_sentence_english": "She washed her face.", + "pos": "noun", + "word_frequency": 314 + }, + { + "word": "línea", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "example_sentence_native": "Dibuja una línea recta.", + "example_sentence_english": "Draw a straight line.", + "pos": "noun", + "word_frequency": 315 + }, + { + "word": "mundial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "global;worldwide", + "example_sentence_native": "Es un problema mundial.", + "example_sentence_english": "It's a global problem.", + "pos": "adjective", + "word_frequency": 316 + }, + { + "word": "obra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "work;construction;play", + "example_sentence_native": "La obra de teatro fue excelente.", + "example_sentence_english": "The play was excellent.", + "pos": "noun", + "word_frequency": 317 + }, + { + "word": "ojo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eye", + "example_sentence_native": "Tiene los ojos azules.", + "example_sentence_english": "He has blue eyes.", + "pos": "noun", + "word_frequency": 318 + }, + { + "word": "pensar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to think", + "example_sentence_native": "Necesito pensar en una solución.", + "example_sentence_english": "I need to think about a solution.", + "pos": "verb", + "word_frequency": 320 + }, + { + "word": "allí", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there", + "example_sentence_native": "El libro está allí, en la mesa.", + "example_sentence_english": "The book is there, on the table.", + "pos": "adverb", + "word_frequency": 321 + }, + { + "word": "atención", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "attention", + "example_sentence_native": "Por favor, presten atención.", + "example_sentence_english": "Please, pay attention.", + "pos": "noun", + "word_frequency": 322 + }, + { + "word": "escuela", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "school", + "example_sentence_native": "Mi hijo va a la escuela.", + "example_sentence_english": "My son goes to school.", + "pos": "noun", + "word_frequency": 323 + }, + { + "word": "respecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respect", + "example_sentence_native": "Tengo mucho respeto por su trabajo.", + "example_sentence_english": "I have a lot of respect for his work.", + "pos": "noun", + "word_frequency": 325 + }, + { + "word": "sentir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to feel", + "example_sentence_native": "Siento mucho lo que pasó.", + "example_sentence_english": "I'm very sorry for what happened.", + "pos": "verb", + "word_frequency": 326 + }, + { + "word": "vivir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to live", + "example_sentence_native": "Quiero vivir en España.", + "example_sentence_english": "I want to live in Spain.", + "pos": "verb", + "word_frequency": 327 + }, + { + "word": "capital", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "capital", + "example_sentence_native": "Madrid es la capital de España.", + "example_sentence_english": "Madrid is the capital of Spain.", + "pos": "noun", + "word_frequency": 328 + }, + { + "word": "libre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "free", + "example_sentence_native": "Hoy tengo tiempo libre.", + "example_sentence_english": "Today I have free time.", + "pos": "adjective", + "word_frequency": 330 + }, + { + "word": "luz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light", + "example_sentence_native": "Enciende la luz, por favor.", + "example_sentence_english": "Turn on the light, please.", + "pos": "noun", + "word_frequency": 331 + }, + { + "word": "población", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "population", + "example_sentence_native": "La población mundial está creciendo.", + "example_sentence_english": "The world population is growing.", + "pos": "noun", + "word_frequency": 332 + }, + { + "word": "relación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relationship", + "example_sentence_native": "Tienen una buena relación.", + "example_sentence_english": "They have a good relationship.", + "pos": "noun", + "word_frequency": 333 + }, + { + "word": "suerte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luck", + "example_sentence_native": "¡Buena suerte con tu examen!", + "example_sentence_english": "Good luck with your exam!", + "pos": "noun", + "word_frequency": 334 + }, + { + "word": "bastante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quite", + "example_sentence_native": "Es bastante tarde.", + "example_sentence_english": "It's quite late.", + "pos": "adverb", + "word_frequency": 335 + }, + { + "word": "cultura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culture", + "example_sentence_native": "Me interesa la cultura española.", + "example_sentence_english": "I'm interested in Spanish culture.", + "pos": "noun", + "word_frequency": 336 + }, + { + "word": "debido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "due", + "example_sentence_native": "El retraso fue debido a un problema técnico.", + "example_sentence_english": "The delay was due to a technical problem.", + "pos": "adjective", + "word_frequency": 337 + }, + { + "word": "difícil", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "difficult", + "example_sentence_native": "Este ejercicio es muy difícil.", + "example_sentence_english": "This exercise is very difficult.", + "pos": "adjective", + "word_frequency": 338 + }, + { + "word": "fuerte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strong", + "example_sentence_native": "Él es muy fuerte.", + "example_sentence_english": "He is very strong.", + "pos": "adjective", + "word_frequency": 339 + }, + { + "word": "fácil", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "easy", + "example_sentence_native": "Aprender español es fácil.", + "example_sentence_english": "Learning Spanish is easy.", + "pos": "adjective", + "word_frequency": 340 + }, + { + "word": "miedo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fear", + "example_sentence_native": "Tengo miedo a la oscuridad.", + "example_sentence_english": "I'm afraid of the dark.", + "pos": "noun", + "word_frequency": 341 + }, + { + "word": "minuto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute", + "example_sentence_native": "Espera un minuto, por favor.", + "example_sentence_english": "Wait a minute, please.", + "pos": "noun", + "word_frequency": 342 + }, + { + "word": "música", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "music", + "example_sentence_native": "Me gusta escuchar música.", + "example_sentence_english": "I like listening to music.", + "pos": "noun", + "word_frequency": 343 + }, + { + "word": "poner", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to put", + "example_sentence_native": "¿Puedes poner la mesa?", + "example_sentence_english": "Can you set the table?", + "pos": "verb", + "word_frequency": 344 + }, + { + "word": "pregunta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "question", + "example_sentence_native": "Tengo una pregunta para ti.", + "example_sentence_english": "I have a question for you.", + "pos": "noun", + "word_frequency": 345 + }, + { + "word": "rey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "king", + "example_sentence_native": "El rey vive en el palacio.", + "example_sentence_english": "The king lives in the palace.", + "pos": "noun", + "word_frequency": 346 + }, + { + "word": "apoyo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support", + "example_sentence_native": "Necesito tu apoyo en este proyecto.", + "example_sentence_english": "I need your support on this project.", + "pos": "noun", + "word_frequency": 348 + }, + { + "word": "demasiado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "too much", + "example_sentence_native": "Hay demasiada gente aquí.", + "example_sentence_english": "There are too many people here.", + "pos": "adverb", + "word_frequency": 349 + }, + { + "word": "esperar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wait", + "example_sentence_native": "Espero que todo salga bien.", + "example_sentence_english": "I hope everything goes well.", + "pos": "verb", + "word_frequency": 350 + }, + { + "word": "fuerza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strength", + "example_sentence_native": "Necesitamos más fuerza para mover esto.", + "example_sentence_english": "We need more strength to move this.", + "pos": "noun", + "word_frequency": 351 + }, + { + "word": "oficial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official", + "example_sentence_native": "Es una declaración oficial.", + "example_sentence_english": "It's an official statement.", + "pos": "adjective", + "word_frequency": 354 + }, + { + "word": "propio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "own", + "example_sentence_native": "Tiene su propio coche.", + "example_sentence_english": "He has his own car.", + "pos": "adjective", + "word_frequency": 355 + }, + { + "word": "control", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "control", + "example_sentence_native": "Necesitamos tener control de la situación.", + "example_sentence_english": "We need to have control of the situation.", + "pos": "noun", + "word_frequency": 357 + }, + { + "word": "encontrar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to find", + "example_sentence_native": "No puedo encontrar mis llaves.", + "example_sentence_english": "I can't find my keys.", + "pos": "verb", + "word_frequency": 358 + }, + { + "word": "inglés", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "English", + "example_sentence_native": "Hablo un poco de inglés.", + "example_sentence_english": "I speak a little English.", + "pos": "adjective", + "word_frequency": 359 + }, + { + "word": "marzo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "March", + "example_sentence_native": "Mi cumpleaños es en marzo.", + "example_sentence_english": "My birthday is in March.", + "pos": "noun", + "word_frequency": 360 + }, + { + "word": "peor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worse", + "example_sentence_native": "Esta situación es peor que la anterior.", + "example_sentence_english": "This situation is worse than the previous one.", + "pos": "adjective", + "word_frequency": 361 + }, + { + "word": "serie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "series", + "example_sentence_native": "Estoy viendo una nueva serie en Netflix.", + "example_sentence_english": "I'm watching a new series on Netflix.", + "pos": "noun", + "word_frequency": 362 + }, + { + "word": "sur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "south", + "example_sentence_native": "La casa está orientada al sur.", + "example_sentence_english": "The house faces south.", + "pos": "noun", + "word_frequency": 363 + }, + { + "word": "trabajar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to work", + "example_sentence_native": "Necesito trabajar mañana.", + "example_sentence_english": "I need to work tomorrow.", + "pos": "verb", + "word_frequency": 364 + }, + { + "word": "asi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "like this;so", + "example_sentence_native": "Hazlo así.", + "example_sentence_english": "Do it like this.", + "pos": "adverb", + "word_frequency": 365 + }, + { + "word": "edad", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "age", + "example_sentence_native": "¿Qué edad tienes?", + "example_sentence_english": "How old are you?", + "pos": "noun", + "word_frequency": 366 + }, + { + "word": "futuro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "future", + "example_sentence_native": "Pienso mucho en el futuro.", + "example_sentence_english": "I think a lot about the future.", + "pos": "noun", + "word_frequency": 367 + }, + { + "word": "justicia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "justice", + "example_sentence_native": "Buscamos justicia para las víctimas.", + "example_sentence_english": "We seek justice for the victims.", + "pos": "noun", + "word_frequency": 368 + }, + { + "word": "libertad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freedom", + "example_sentence_native": "La libertad es un derecho fundamental.", + "example_sentence_english": "Freedom is a fundamental right.", + "pos": "noun", + "word_frequency": 369 + }, + { + "word": "pesar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to weigh", + "example_sentence_native": "¿Cuánto pesa esta maleta?", + "example_sentence_english": "How much does this suitcase weigh?", + "pos": "verb", + "word_frequency": 370 + }, + { + "word": "tampoco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neither;not either", + "example_sentence_native": "Yo tampoco quiero ir.", + "example_sentence_english": "I don't want to go either.", + "pos": "adverb", + "word_frequency": 371 + }, + { + "word": "allá", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "over there", + "example_sentence_native": "El coche está allá.", + "example_sentence_english": "The car is over there.", + "pos": "adverb", + "word_frequency": 373 + }, + { + "word": "cantidad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quantity;amount", + "example_sentence_native": "Necesito una gran cantidad de agua.", + "example_sentence_english": "I need a large quantity of water.", + "pos": "noun", + "word_frequency": 374 + }, + { + "word": "corazón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heart", + "example_sentence_native": "Siento un dolor en el corazón.", + "example_sentence_english": "I feel a pain in my heart.", + "pos": "noun", + "word_frequency": 375 + }, + { + "word": "diciembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "December", + "example_sentence_native": "La Navidad es en diciembre.", + "example_sentence_english": "Christmas is in December.", + "pos": "noun", + "word_frequency": 376 + }, + { + "word": "existir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exist", + "example_sentence_native": "¿Crees que los fantasmas existen?", + "example_sentence_english": "Do you believe ghosts exist?", + "pos": "verb", + "word_frequency": 377 + }, + { + "word": "imagen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "image", + "example_sentence_native": "Me gusta esta imagen.", + "example_sentence_english": "I like this image.", + "pos": "noun", + "word_frequency": 378 + }, + { + "word": "importar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to matter;to be important", + "example_sentence_native": "No me importa lo que digan.", + "example_sentence_english": "I don't care what they say.", + "pos": "verb", + "word_frequency": 379 + }, + { + "word": "norte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "north", + "example_sentence_native": "El viento viene del norte.", + "example_sentence_english": "The wind comes from the north.", + "pos": "noun", + "word_frequency": 380 + }, + { + "word": "octubre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "October", + "example_sentence_native": "Mi cumpleaños es en octubre.", + "example_sentence_english": "My birthday is in October.", + "pos": "noun", + "word_frequency": 381 + }, + { + "word": "político", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "political", + "example_sentence_native": "Hablamos de temas políticos.", + "example_sentence_english": "We talk about political topics.", + "pos": "adjective", + "word_frequency": 383 + }, + { + "word": "principal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main;principal", + "example_sentence_native": "La razón principal es el dinero.", + "example_sentence_english": "The main reason is money.", + "pos": "adjective", + "word_frequency": 384 + }, + { + "word": "vista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "view;sight", + "example_sentence_native": "La vista desde aquí es increíble.", + "example_sentence_english": "The view from here is incredible.", + "pos": "noun", + "word_frequency": 385 + }, + { + "word": "volver", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to return;to come back", + "example_sentence_native": "Quiero volver a casa.", + "example_sentence_english": "I want to return home.", + "pos": "verb", + "word_frequency": 386 + }, + { + "word": "voz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "voice", + "example_sentence_native": "Tiene una voz muy bonita.", + "example_sentence_english": "She has a very beautiful voice.", + "pos": "noun", + "word_frequency": 387 + }, + { + "word": "actual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current;actual", + "example_sentence_native": "La situación actual es complicada.", + "example_sentence_english": "The current situation is complicated.", + "pos": "adjective", + "word_frequency": 388 + }, + { + "word": "elección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choice;election", + "example_sentence_native": "Es tu elección.", + "example_sentence_english": "It's your choice.", + "pos": "noun", + "word_frequency": 390 + }, + { + "word": "estudio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "study;studio", + "example_sentence_native": "Mi estudio está en el segundo piso.", + "example_sentence_english": "My study is on the second floor.", + "pos": "noun", + "word_frequency": 391 + }, + { + "word": "mirar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to look;to watch", + "example_sentence_native": "Mira la televisión.", + "example_sentence_english": "Look at the television.", + "pos": "verb", + "word_frequency": 392 + }, + { + "word": "modo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way;manner;mode", + "example_sentence_native": "No me gusta su modo de hablar.", + "example_sentence_english": "I don't like his way of speaking.", + "pos": "noun", + "word_frequency": 393 + }, + { + "word": "abril", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "April", + "example_sentence_native": "El día de los inocentes es en abril.", + "example_sentence_english": "April Fools' Day is in April.", + "pos": "noun", + "word_frequency": 394 + }, + { + "word": "campo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "field;countryside", + "example_sentence_native": "Me gusta pasear por el campo.", + "example_sentence_english": "I like to walk in the countryside.", + "pos": "noun", + "word_frequency": 395 + }, + { + "word": "internet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "internet", + "example_sentence_native": "Necesito conexión a internet.", + "example_sentence_english": "I need an internet connection.", + "pos": "noun", + "word_frequency": 396 + }, + { + "word": "joven", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "young", + "example_sentence_native": "Es una persona muy joven.", + "example_sentence_english": "He is a very young person.", + "pos": "adjective", + "word_frequency": 397 + }, + { + "word": "plan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plan", + "example_sentence_native": "Tenemos un plan para el fin de semana.", + "example_sentence_english": "We have a plan for the weekend.", + "pos": "noun", + "word_frequency": 398 + }, + { + "word": "región", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "region", + "example_sentence_native": "Esta región es conocida por sus vinos.", + "example_sentence_english": "This region is known for its wines.", + "pos": "noun", + "word_frequency": 399 + }, + { + "word": "significar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mean;to signify", + "example_sentence_native": "¿Qué significa esta palabra?", + "example_sentence_english": "What does this word mean?", + "pos": "verb", + "word_frequency": 400 + }, + { + "word": "comunidad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "community", + "example_sentence_native": "Vivimos en una comunidad muy unida.", + "example_sentence_english": "We live in a very close-knit community.", + "pos": "noun", + "word_frequency": 401 + }, + { + "word": "dirección", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "direction;address", + "example_sentence_native": "¿Cuál es tu dirección?", + "example_sentence_english": "What is your address?", + "pos": "noun", + "word_frequency": 402 + }, + { + "word": "investigación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "research;investigation", + "example_sentence_native": "La investigación científica es crucial.", + "example_sentence_english": "Scientific research is crucial.", + "pos": "noun", + "word_frequency": 403 + }, + { + "word": "junio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "June", + "example_sentence_native": "Mi cumpleaños es en junio.", + "example_sentence_english": "My birthday is in June.", + "pos": "noun", + "word_frequency": 404 + }, + { + "word": "llevar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to carry;to take;to wear", + "example_sentence_native": "Voy a llevar el libro a casa.", + "example_sentence_english": "I'm going to take the book home.", + "pos": "verb", + "word_frequency": 405 + }, + { + "word": "partir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leave;to depart;to split", + "example_sentence_native": "El tren va a partir en cinco minutos.", + "example_sentence_english": "The train is going to depart in five minutes.", + "pos": "verb", + "word_frequency": 406 + }, + { + "word": "película", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "movie;film", + "example_sentence_native": "¿Quieres ver una película esta noche?", + "example_sentence_english": "Do you want to watch a movie tonight?", + "pos": "noun", + "word_frequency": 407 + }, + { + "word": "república", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "republic", + "example_sentence_native": "España es una monarquía, no una república.", + "example_sentence_english": "Spain is a monarchy, not a republic.", + "pos": "noun", + "word_frequency": 409 + }, + { + "word": "resto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest;remainder", + "example_sentence_native": "Me quedo con el resto de la comida.", + "example_sentence_english": "I'll keep the rest of the food.", + "pos": "noun", + "word_frequency": 410 + }, + { + "word": "vuelta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turn;return;lap", + "example_sentence_native": "Dimos una vuelta por el parque.", + "example_sentence_english": "We took a walk around the park.", + "pos": "noun", + "word_frequency": 411 + }, + { + "word": "consejo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advice;council", + "example_sentence_native": "Dame un buen consejo.", + "example_sentence_english": "Give me some good advice.", + "pos": "noun", + "word_frequency": 412 + }, + { + "word": "dónde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where", + "example_sentence_native": "¿Dónde está el baño?", + "example_sentence_english": "Where is the bathroom?", + "pos": "adverb", + "word_frequency": 413 + }, + { + "word": "llamar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to call;to name", + "example_sentence_native": "Te voy a llamar más tarde.", + "example_sentence_english": "I'm going to call you later.", + "pos": "verb", + "word_frequency": 414 + }, + { + "word": "mercado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "market", + "example_sentence_native": "Vamos al mercado a comprar frutas.", + "example_sentence_english": "Let's go to the market to buy fruits.", + "pos": "noun", + "word_frequency": 415 + }, + { + "word": "movimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "movement", + "example_sentence_native": "El movimiento de las placas tectónicas causa terremotos.", + "example_sentence_english": "The movement of tectonic plates causes earthquakes.", + "pos": "noun", + "word_frequency": 416 + }, + { + "word": "noviembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "November", + "example_sentence_native": "Mi hermana nació en noviembre.", + "example_sentence_english": "My sister was born in November.", + "pos": "noun", + "word_frequency": 417 + }, + { + "word": "papel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "paper;role", + "example_sentence_native": "Necesito un papel para escribir.", + "example_sentence_english": "I need a piece of paper to write on.", + "pos": "noun", + "word_frequency": 418 + }, + { + "word": "precio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "price", + "example_sentence_native": "¿Cuál es el precio de este coche?", + "example_sentence_english": "What is the price of this car?", + "pos": "noun", + "word_frequency": 419 + }, + { + "word": "respuesta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "answer;response", + "example_sentence_native": "No tengo una respuesta para tu pregunta.", + "example_sentence_english": "I don't have an answer for your question.", + "pos": "noun", + "word_frequency": 420 + }, + { + "word": "seis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "six", + "example_sentence_native": "Tengo seis manzanas.", + "example_sentence_english": "I have six apples.", + "pos": "noun", + "word_frequency": 421 + }, + { + "word": "simplemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simply;just", + "example_sentence_native": "Simplemente no lo entiendo.", + "example_sentence_english": "I simply don't understand it.", + "pos": "adverb", + "word_frequency": 422 + }, + { + "word": "agosto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "August", + "example_sentence_native": "Las vacaciones son en agosto.", + "example_sentence_english": "The holidays are in August.", + "pos": "noun", + "word_frequency": 424 + }, + { + "word": "aun", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "even;still", + "example_sentence_native": "Aun con la lluvia, salimos.", + "example_sentence_english": "Even with the rain, we went out.", + "pos": "adverb", + "word_frequency": 425 + }, + { + "word": "cargo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position;charge;cargo", + "example_sentence_native": "Tiene un cargo importante en la empresa.", + "example_sentence_english": "He has an important position in the company.", + "pos": "noun", + "word_frequency": 427 + }, + { + "word": "comida", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "food;meal", + "example_sentence_native": "La comida está deliciosa.", + "example_sentence_english": "The food is delicious.", + "pos": "noun", + "word_frequency": 428 + }, + { + "word": "enero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "January", + "example_sentence_native": "El año nuevo es en enero.", + "example_sentence_english": "New Year is in January.", + "pos": "noun", + "word_frequency": 429 + }, + { + "word": "experiencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experience", + "example_sentence_native": "Tengo mucha experiencia en este campo.", + "example_sentence_english": "I have a lot of experience in this field.", + "pos": "noun", + "word_frequency": 430 + }, + { + "word": "jefe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boss;chief", + "example_sentence_native": "Mi jefe es muy amable.", + "example_sentence_english": "My boss is very kind.", + "pos": "noun", + "word_frequency": 431 + }, + { + "word": "leer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to read", + "example_sentence_native": "Me gusta leer libros.", + "example_sentence_english": "I like to read books.", + "pos": "verb", + "word_frequency": 432 + }, + { + "word": "miembro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "member", + "example_sentence_native": "Es un miembro activo del club.", + "example_sentence_english": "He is an active member of the club.", + "pos": "noun", + "word_frequency": 433 + }, + { + "word": "pena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pity;sorrow;penalty", + "example_sentence_native": "Es una pena que no puedas venir.", + "example_sentence_english": "It's a pity you can't come.", + "pos": "noun", + "word_frequency": 435 + }, + { + "word": "producción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "production", + "example_sentence_native": "La producción de coches ha aumentado.", + "example_sentence_english": "Car production has increased.", + "pos": "noun", + "word_frequency": 436 + }, + { + "word": "siglo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "century", + "example_sentence_native": "Vivimos en el siglo XXI.", + "example_sentence_english": "We live in the 21st century.", + "pos": "noun", + "word_frequency": 437 + }, + { + "word": "cabo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "end;cape;corporal", + "example_sentence_native": "Al cabo de un tiempo, lo entendí.", + "example_sentence_english": "After a while, I understood it.", + "pos": "noun", + "word_frequency": 438 + }, + { + "word": "común", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "common", + "example_sentence_native": "Es un problema muy común.", + "example_sentence_english": "It's a very common problem.", + "pos": "adjective", + "word_frequency": 439 + }, + { + "word": "economía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economy", + "example_sentence_native": "La economía del país está creciendo.", + "example_sentence_english": "The country's economy is growing.", + "pos": "noun", + "word_frequency": 440 + }, + { + "word": "entender", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to understand", + "example_sentence_native": "No entiendo lo que dices.", + "example_sentence_english": "I don't understand what you're saying.", + "pos": "verb", + "word_frequency": 441 + }, + { + "word": "espacio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "space", + "example_sentence_native": "Necesito más espacio en mi habitación.", + "example_sentence_english": "I need more space in my room.", + "pos": "noun", + "word_frequency": 442 + }, + { + "word": "febrero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "February", + "example_sentence_native": "Mi cumpleaños es en febrero.", + "example_sentence_english": "My birthday is in February.", + "pos": "noun", + "word_frequency": 443 + }, + { + "word": "necesitar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to need", + "example_sentence_native": "Necesito ayuda con esta tarea.", + "example_sentence_english": "I need help with this task.", + "pos": "verb", + "word_frequency": 444 + }, + { + "word": "opinión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opinion", + "example_sentence_native": "¿Cuál es tu opinión sobre el tema?", + "example_sentence_english": "What is your opinion on the topic?", + "pos": "noun", + "word_frequency": 445 + }, + { + "word": "oportunidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opportunity", + "example_sentence_native": "Esta es una gran oportunidad para aprender.", + "example_sentence_english": "This is a great opportunity to learn.", + "pos": "noun", + "word_frequency": 446 + }, + { + "word": "organización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organization", + "example_sentence_native": "La organización del evento fue excelente.", + "example_sentence_english": "The organization of the event was excellent.", + "pos": "noun", + "word_frequency": 447 + }, + { + "word": "página", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "page", + "example_sentence_native": "Lee la página diez del libro.", + "example_sentence_english": "Read page ten of the book.", + "pos": "noun", + "word_frequency": 448 + }, + { + "word": "resultado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "result", + "example_sentence_native": "El resultado del examen fue bueno.", + "example_sentence_english": "The exam result was good.", + "pos": "noun", + "word_frequency": 449 + }, + { + "word": "santo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holy", + "example_sentence_native": "Es un día santo para muchas personas.", + "example_sentence_english": "It is a holy day for many people.", + "pos": "adjective", + "word_frequency": 450 + }, + { + "word": "valer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be worth", + "example_sentence_native": "Este cuadro vale mucho dinero.", + "example_sentence_english": "This painting is worth a lot of money.", + "pos": "verb", + "word_frequency": 451 + }, + { + "word": "acción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "action", + "example_sentence_native": "Es hora de pasar a la acción.", + "example_sentence_english": "It's time to take action.", + "pos": "noun", + "word_frequency": 452 + }, + { + "word": "arte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "art", + "example_sentence_native": "Me encanta el arte moderno.", + "example_sentence_english": "I love modern art.", + "pos": "noun", + "word_frequency": 453 + }, + { + "word": "condición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condition", + "example_sentence_native": "Su condición de salud ha mejorado.", + "example_sentence_english": "His health condition has improved.", + "pos": "noun", + "word_frequency": 454 + }, + { + "word": "conocer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know", + "example_sentence_native": "Conozco a su hermana.", + "example_sentence_english": "I know his sister.", + "pos": "verb", + "word_frequency": 455 + }, + { + "word": "noticia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "news", + "example_sentence_native": "Vi las noticias en la televisión.", + "example_sentence_english": "I watched the news on television.", + "pos": "noun", + "word_frequency": 456 + }, + { + "word": "plaza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "square", + "example_sentence_native": "Nos encontramos en la plaza principal.", + "example_sentence_english": "We met in the main square.", + "pos": "noun", + "word_frequency": 457 + }, + { + "word": "septiembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "September", + "example_sentence_native": "Las clases empiezan en septiembre.", + "example_sentence_english": "Classes start in September.", + "pos": "noun", + "word_frequency": 458 + }, + { + "word": "usar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to use", + "example_sentence_native": "Puedes usar mi bolígrafo.", + "example_sentence_english": "You can use my pen.", + "pos": "verb", + "word_frequency": 460 + }, + { + "word": "valor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "value", + "example_sentence_native": "El valor de la amistad es incalculable.", + "example_sentence_english": "The value of friendship is incalculable.", + "pos": "noun", + "word_frequency": 461 + }, + { + "word": "vivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alive", + "example_sentence_native": "El perro todavía está vivo.", + "example_sentence_english": "The dog is still alive.", + "pos": "adjective", + "word_frequency": 462 + }, + { + "word": "calidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quality", + "example_sentence_native": "Este producto es de buena calidad.", + "example_sentence_english": "This product is of good quality.", + "pos": "noun", + "word_frequency": 463 + }, + { + "word": "causa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cause", + "example_sentence_native": "La causa del problema es desconocida.", + "example_sentence_english": "The cause of the problem is unknown.", + "pos": "noun", + "word_frequency": 464 + }, + { + "word": "central", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "central", + "example_sentence_native": "La estación central está cerca.", + "example_sentence_english": "The central station is nearby.", + "pos": "adjective", + "word_frequency": 465 + }, + { + "word": "director", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "director", + "example_sentence_native": "El director de la película es famoso.", + "example_sentence_english": "The film director is famous.", + "pos": "noun", + "word_frequency": 466 + }, + { + "word": "duda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doubt", + "example_sentence_native": "No tengo ninguna duda al respecto.", + "example_sentence_english": "I have no doubt about it.", + "pos": "noun", + "word_frequency": 467 + }, + { + "word": "fecha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "date", + "example_sentence_native": "¿Cuál es la fecha de hoy?", + "example_sentence_english": "What is today's date?", + "pos": "noun", + "word_frequency": 469 + }, + { + "word": "feliz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "happy", + "example_sentence_native": "Estoy muy feliz de verte.", + "example_sentence_english": "I am very happy to see you.", + "pos": "adjective", + "word_frequency": 470 + }, + { + "word": "iglesia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "church", + "example_sentence_native": "La iglesia está en el centro del pueblo.", + "example_sentence_english": "The church is in the center of the town.", + "pos": "noun", + "word_frequency": 471 + }, + { + "word": "necesario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "necessary", + "example_sentence_native": "Es necesario estudiar para el examen.", + "example_sentence_english": "It is necessary to study for the exam.", + "pos": "adjective", + "word_frequency": 473 + }, + { + "word": "pronto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soon", + "example_sentence_native": "Nos vemos pronto.", + "example_sentence_english": "See you soon.", + "pos": "adverb", + "word_frequency": 474 + }, + { + "word": "cambiar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to change", + "example_sentence_native": "Necesito cambiar mi ropa.", + "example_sentence_english": "I need to change my clothes.", + "pos": "verb", + "word_frequency": 475 + }, + { + "word": "civil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil", + "example_sentence_native": "Es un derecho civil importante.", + "example_sentence_english": "It is an important civil right.", + "pos": "adjective", + "word_frequency": 476 + }, + { + "word": "hermano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brother", + "example_sentence_native": "Mi hermano mayor vive en Madrid.", + "example_sentence_english": "My older brother lives in Madrid.", + "pos": "noun", + "word_frequency": 478 + }, + { + "word": "local", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local", + "example_sentence_native": "Compramos productos locales en el mercado.", + "example_sentence_english": "We buy local products at the market.", + "pos": "adjective", + "word_frequency": 479 + }, + { + "word": "mar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sea", + "example_sentence_native": "El mar es azul.", + "example_sentence_english": "The sea is blue.", + "pos": "noun", + "word_frequency": 480 + }, + { + "word": "viaje", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trip;journey", + "example_sentence_native": "Hicimos un viaje largo.", + "example_sentence_english": "We took a long trip.", + "pos": "noun", + "word_frequency": 481 + }, + { + "word": "acá", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here;over here", + "example_sentence_native": "Ven acá, por favor.", + "example_sentence_english": "Come here, please.", + "pos": "adverb", + "word_frequency": 483 + }, + { + "word": "alrededor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "around", + "example_sentence_native": "Miró alrededor de la habitación.", + "example_sentence_english": "He looked around the room.", + "pos": "adverb", + "word_frequency": 484 + }, + { + "word": "campaña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "campaign", + "example_sentence_native": "La campaña electoral fue intensa.", + "example_sentence_english": "The electoral campaign was intense.", + "pos": "noun", + "word_frequency": 485 + }, + { + "word": "carrera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "race;career", + "example_sentence_native": "Ella ganó la carrera.", + "example_sentence_english": "She won the race.", + "pos": "noun", + "word_frequency": 486 + }, + { + "word": "ejército", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "army", + "example_sentence_native": "El ejército desfiló por la ciudad.", + "example_sentence_english": "The army marched through the city.", + "pos": "noun", + "word_frequency": 487 + }, + { + "word": "encima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on top;above", + "example_sentence_native": "El libro está encima de la mesa.", + "example_sentence_english": "The book is on top of the table.", + "pos": "adverb", + "word_frequency": 488 + }, + { + "word": "interés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interest", + "example_sentence_native": "Tengo mucho interés en aprender.", + "example_sentence_english": "I have a lot of interest in learning.", + "pos": "noun", + "word_frequency": 489 + }, + { + "word": "mensaje", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "message", + "example_sentence_native": "Recibí un mensaje de texto.", + "example_sentence_english": "I received a text message.", + "pos": "noun", + "word_frequency": 490 + }, + { + "word": "negro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "black", + "example_sentence_native": "El gato es negro.", + "example_sentence_english": "The cat is black.", + "pos": "adjective", + "word_frequency": 491 + }, + { + "word": "objetivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective;goal", + "example_sentence_native": "Nuestro objetivo es terminar a tiempo.", + "example_sentence_english": "Our objective is to finish on time.", + "pos": "noun", + "word_frequency": 492 + }, + { + "word": "popular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "popular", + "example_sentence_native": "Es una canción muy popular.", + "example_sentence_english": "It's a very popular song.", + "pos": "adjective", + "word_frequency": 494 + }, + { + "word": "principio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beginning;principle", + "example_sentence_native": "Al principio fue difícil.", + "example_sentence_english": "In the beginning it was difficult.", + "pos": "noun", + "word_frequency": 495 + }, + { + "word": "provincia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "province", + "example_sentence_native": "Vive en una provincia pequeña.", + "example_sentence_english": "He lives in a small province.", + "pos": "noun", + "word_frequency": 496 + }, + { + "word": "recurso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resource", + "example_sentence_native": "Necesitamos más recursos para el proyecto.", + "example_sentence_english": "We need more resources for the project.", + "pos": "noun", + "word_frequency": 497 + }, + { + "word": "red", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "net;network", + "example_sentence_native": "La red de internet es muy rápida.", + "example_sentence_english": "The internet network is very fast.", + "pos": "noun", + "word_frequency": 498 + }, + { + "word": "río", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "river", + "example_sentence_native": "El río Amazonas es muy largo.", + "example_sentence_english": "The Amazon River is very long.", + "pos": "noun", + "word_frequency": 499 + }, + { + "word": "ayer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yesterday", + "example_sentence_native": "Fui al cine ayer.", + "example_sentence_english": "I went to the cinema yesterday.", + "pos": "adverb", + "word_frequency": 502 + }, + { + "word": "blanco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "white", + "example_sentence_native": "La nieve es blanca.", + "example_sentence_english": "Snow is white.", + "pos": "adjective", + "word_frequency": 503 + }, + { + "word": "comer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to eat", + "example_sentence_native": "Me gusta comer pizza.", + "example_sentence_english": "I like to eat pizza.", + "pos": "verb", + "word_frequency": 505 + }, + { + "word": "compañía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company;companionship", + "example_sentence_native": "Trabaja en una gran compañía.", + "example_sentence_english": "He works in a big company.", + "pos": "noun", + "word_frequency": 506 + }, + { + "word": "especialmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially", + "example_sentence_native": "Me gusta el chocolate, especialmente el negro.", + "example_sentence_english": "I like chocolate, especially dark chocolate.", + "pos": "adverb", + "word_frequency": 507 + }, + { + "word": "ganar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to win;to earn", + "example_sentence_native": "Quiero ganar el partido.", + "example_sentence_english": "I want to win the game.", + "pos": "verb", + "word_frequency": 508 + }, + { + "word": "interior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interior", + "example_sentence_native": "El interior de la casa es moderno.", + "example_sentence_english": "The interior of the house is modern.", + "pos": "noun", + "word_frequency": 509 + }, + { + "word": "lucha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fight;struggle", + "example_sentence_native": "La lucha por la libertad continúa.", + "example_sentence_english": "The fight for freedom continues.", + "pos": "noun", + "word_frequency": 510 + }, + { + "word": "nota", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "note;grade", + "example_sentence_native": "Tomé notas durante la clase.", + "example_sentence_english": "I took notes during the class.", + "pos": "noun", + "word_frequency": 512 + }, + { + "word": "pequeño", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "small", + "example_sentence_native": "Tengo un perro pequeño.", + "example_sentence_english": "I have a small dog.", + "pos": "adjective", + "word_frequency": 513 + }, + { + "word": "prueba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "test;proof", + "example_sentence_native": "La prueba fue muy difícil.", + "example_sentence_english": "The test was very difficult.", + "pos": "noun", + "word_frequency": 514 + }, + { + "word": "sol", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sun", + "example_sentence_native": "El sol brilla hoy.", + "example_sentence_english": "The sun is shining today.", + "pos": "noun", + "word_frequency": 515 + }, + { + "word": "anterior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous;anterior", + "example_sentence_native": "En la página anterior hay más información.", + "example_sentence_english": "On the previous page there is more information.", + "pos": "adjective", + "word_frequency": 517 + }, + { + "word": "buscar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to look for;to search", + "example_sentence_native": "Estoy buscando mis llaves.", + "example_sentence_english": "I am looking for my keys.", + "pos": "verb", + "word_frequency": 518 + }, + { + "word": "dia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day", + "example_sentence_native": "Hoy es un buen día.", + "example_sentence_english": "Today is a good day.", + "pos": "noun", + "word_frequency": 519 + }, + { + "word": "justo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;just", + "example_sentence_native": "Es justo que todos tengan las mismas oportunidades.", + "example_sentence_english": "It's fair that everyone has the same opportunities.", + "pos": "adjective", + "word_frequency": 520 + }, + { + "word": "medida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measure;step", + "example_sentence_native": "Debemos tomar medidas para proteger el medio ambiente.", + "example_sentence_english": "We must take measures to protect the environment.", + "pos": "noun", + "word_frequency": 521 + }, + { + "word": "éxito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "success", + "example_sentence_native": "Le deseo mucho éxito en su nuevo proyecto.", + "example_sentence_english": "I wish you much success in your new project.", + "pos": "noun", + "word_frequency": 522 + }, + { + "word": "actividad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "activity", + "example_sentence_native": "La lectura es una actividad relajante.", + "example_sentence_english": "Reading is a relaxing activity.", + "pos": "noun", + "word_frequency": 523 + }, + { + "word": "adelante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forward;ahead", + "example_sentence_native": "Sigue adelante con tus sueños.", + "example_sentence_english": "Go forward with your dreams.", + "pos": "adverb", + "word_frequency": 524 + }, + { + "word": "aire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "air", + "example_sentence_native": "Necesitamos aire fresco.", + "example_sentence_english": "We need fresh air.", + "pos": "noun", + "word_frequency": 525 + }, + { + "word": "arriba", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "up;above", + "example_sentence_native": "Mira hacia arriba.", + "example_sentence_english": "Look up.", + "pos": "adverb", + "word_frequency": 527 + }, + { + "word": "autor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "author", + "example_sentence_native": "El autor firmará libros mañana.", + "example_sentence_english": "The author will sign books tomorrow.", + "pos": "noun", + "word_frequency": 528 + }, + { + "word": "diferencia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difference", + "example_sentence_native": "Hay una gran diferencia entre los dos.", + "example_sentence_english": "There is a big difference between the two.", + "pos": "noun", + "word_frequency": 529 + }, + { + "word": "entrar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to enter", + "example_sentence_native": "Puedes entrar sin llamar.", + "example_sentence_english": "You can enter without knocking.", + "pos": "verb", + "word_frequency": 530 + }, + { + "word": "estilo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "style", + "example_sentence_native": "Me gusta su estilo de escritura.", + "example_sentence_english": "I like his writing style.", + "pos": "noun", + "word_frequency": 531 + }, + { + "word": "ex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ex-;former", + "example_sentence_native": "Mi ex-jefe me llamó.", + "example_sentence_english": "My ex-boss called me.", + "pos": "adjective", + "word_frequency": 532 + }, + { + "word": "lejos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "far;far away", + "example_sentence_native": "La tienda está lejos de aquí.", + "example_sentence_english": "The store is far from here.", + "pos": "adverb", + "word_frequency": 534 + }, + { + "word": "malo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bad", + "example_sentence_native": "No es una mala idea.", + "example_sentence_english": "It's not a bad idea.", + "pos": "adjective", + "word_frequency": 536 + }, + { + "word": "militar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "military", + "example_sentence_native": "Tiene una carrera militar.", + "example_sentence_english": "He has a military career.", + "pos": "adjective", + "word_frequency": 538 + }, + { + "word": "muestra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sample;display", + "example_sentence_native": "¿Puedo ver una muestra del tejido?", + "example_sentence_english": "Can I see a sample of the fabric?", + "pos": "noun", + "word_frequency": 539 + }, + { + "word": "oro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gold", + "example_sentence_native": "El anillo es de oro.", + "example_sentence_english": "The ring is made of gold.", + "pos": "noun", + "word_frequency": 540 + }, + { + "word": "par", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pair;couple", + "example_sentence_native": "Necesito un par de zapatos nuevos.", + "example_sentence_english": "I need a new pair of shoes.", + "pos": "noun", + "word_frequency": 541 + }, + { + "word": "plata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silver;money", + "example_sentence_native": "Pagó con plata.", + "example_sentence_english": "He paid with money.", + "pos": "noun", + "word_frequency": 542 + }, + { + "word": "puerta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "door", + "example_sentence_native": "Cierra la puerta, por favor.", + "example_sentence_english": "Close the door, please.", + "pos": "noun", + "word_frequency": 543 + }, + { + "word": "ayudar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to help", + "example_sentence_native": "¿Puedes ayudarme con esto?", + "example_sentence_english": "Can you help me with this?", + "pos": "verb", + "word_frequency": 545 + }, + { + "word": "canción", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "song", + "example_sentence_native": "Me gusta esta canción.", + "example_sentence_english": "I like this song.", + "pos": "noun", + "word_frequency": 546 + }, + { + "word": "color", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "color", + "example_sentence_native": "¿Cuál es tu color favorito?", + "example_sentence_english": "What is your favorite color?", + "pos": "noun", + "word_frequency": 547 + }, + { + "word": "defensa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defense", + "example_sentence_native": "La defensa del equipo fue excelente.", + "example_sentence_english": "The team's defense was excellent.", + "pos": "noun", + "word_frequency": 549 + }, + { + "word": "dólar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dollar", + "example_sentence_native": "Cuesta diez dólares.", + "example_sentence_english": "It costs ten dollars.", + "pos": "noun", + "word_frequency": 550 + }, + { + "word": "fondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottom;fund;background", + "example_sentence_native": "El vaso está en el fondo del armario.", + "example_sentence_english": "The glass is at the bottom of the cupboard.", + "pos": "noun", + "word_frequency": 551 + }, + { + "word": "fútbol", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soccer;football", + "example_sentence_native": "Me encanta jugar al fútbol.", + "example_sentence_english": "I love playing soccer.", + "pos": "noun", + "word_frequency": 552 + }, + { + "word": "hija", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "daughter", + "example_sentence_native": "Mi hija tiene cinco años.", + "example_sentence_english": "My daughter is five years old.", + "pos": "noun", + "word_frequency": 553 + }, + { + "word": "humano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "human", + "example_sentence_native": "Es un error humano.", + "example_sentence_english": "It's a human error.", + "pos": "adjective", + "word_frequency": 554 + }, + { + "word": "menor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smaller;younger;minor", + "example_sentence_native": "Es mi hermano menor.", + "example_sentence_english": "He is my younger brother.", + "pos": "adjective", + "word_frequency": 555 + }, + { + "word": "ministerio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ministry", + "example_sentence_native": "Trabaja en el Ministerio de Educación.", + "example_sentence_english": "He works in the Ministry of Education.", + "pos": "noun", + "word_frequency": 556 + }, + { + "word": "puerto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "port;harbor", + "example_sentence_native": "El barco llegó al puerto.", + "example_sentence_english": "The ship arrived at the port.", + "pos": "noun", + "word_frequency": 557 + }, + { + "word": "recuerdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory;souvenir", + "example_sentence_native": "Tengo buenos recuerdos de mi infancia.", + "example_sentence_english": "I have good memories of my childhood.", + "pos": "noun", + "word_frequency": 558 + }, + { + "word": "acceso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "access", + "example_sentence_native": "No tengo acceso a esa información.", + "example_sentence_english": "I don't have access to that information.", + "pos": "noun", + "word_frequency": 559 + }, + { + "word": "arma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weapon", + "example_sentence_native": "La policía encontró un arma en el coche.", + "example_sentence_english": "The police found a weapon in the car.", + "pos": "noun", + "word_frequency": 560 + }, + { + "word": "comunicación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communication", + "example_sentence_native": "La comunicación es clave en cualquier relación.", + "example_sentence_english": "Communication is key in any relationship.", + "pos": "noun", + "word_frequency": 561 + }, + { + "word": "congreso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congress", + "example_sentence_native": "El congreso aprobó la nueva ley.", + "example_sentence_english": "Congress approved the new law.", + "pos": "noun", + "word_frequency": 562 + }, + { + "word": "evitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to avoid", + "example_sentence_native": "Debemos evitar los errores del pasado.", + "example_sentence_english": "We must avoid past mistakes.", + "pos": "verb", + "word_frequency": 563 + }, + { + "word": "finalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finally", + "example_sentence_native": "Finalmente, llegaron a un acuerdo.", + "example_sentence_english": "Finally, they reached an agreement.", + "pos": "adverb", + "word_frequency": 564 + }, + { + "word": "fuente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "source", + "example_sentence_native": "Esta es una fuente de información muy fiable.", + "example_sentence_english": "This is a very reliable source of information.", + "pos": "noun", + "word_frequency": 565 + }, + { + "word": "jugar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to play", + "example_sentence_native": "A los niños les gusta jugar en el parque.", + "example_sentence_english": "Children like to play in the park.", + "pos": "verb", + "word_frequency": 566 + }, + { + "word": "ministro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minister", + "example_sentence_native": "El ministro de educación anunció nuevas reformas.", + "example_sentence_english": "The minister of education announced new reforms.", + "pos": "noun", + "word_frequency": 567 + }, + { + "word": "producto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "product", + "example_sentence_native": "Este producto es muy popular.", + "example_sentence_english": "This product is very popular.", + "pos": "noun", + "word_frequency": 568 + }, + { + "word": "puta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whore (vulgar)", + "example_sentence_native": "¡Qué puta suerte!", + "example_sentence_english": "What damn luck!", + "pos": "noun", + "word_frequency": 569 + }, + { + "word": "siquiera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "even", + "example_sentence_native": "No tiene ni siquiera un euro.", + "example_sentence_english": "He doesn't even have one euro.", + "pos": "adverb", + "word_frequency": 570 + }, + { + "word": "época", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "era", + "example_sentence_native": "Fue una época de grandes cambios.", + "example_sentence_english": "It was a time of great changes.", + "pos": "noun", + "word_frequency": 571 + }, + { + "word": "banco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bank", + "example_sentence_native": "Necesito ir al banco para sacar dinero.", + "example_sentence_english": "I need to go to the bank to withdraw money.", + "pos": "noun", + "word_frequency": 572 + }, + { + "word": "conseguir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get", + "example_sentence_native": "Logró conseguir el trabajo de sus sueños.", + "example_sentence_english": "He managed to get his dream job.", + "pos": "verb", + "word_frequency": 573 + }, + { + "word": "construcción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction", + "example_sentence_native": "La construcción del nuevo edificio está casi terminada.", + "example_sentence_english": "The construction of the new building is almost finished.", + "pos": "noun", + "word_frequency": 574 + }, + { + "word": "corte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "court", + "example_sentence_native": "La corte dictó sentencia.", + "example_sentence_english": "The court passed sentence.", + "pos": "noun", + "word_frequency": 575 + }, + { + "word": "departamento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "department", + "example_sentence_native": "Vive en un departamento pequeño en el centro.", + "example_sentence_english": "He lives in a small apartment downtown.", + "pos": "noun", + "word_frequency": 577 + }, + { + "word": "diez", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ten", + "example_sentence_native": "Tengo diez libros en mi mochila.", + "example_sentence_english": "I have ten books in my backpack.", + "pos": "noun", + "word_frequency": 578 + }, + { + "word": "mitad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "half", + "example_sentence_native": "Dame la mitad de tu pastel.", + "example_sentence_english": "Give me half of your cake.", + "pos": "noun", + "word_frequency": 579 + }, + { + "word": "oficina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "office", + "example_sentence_native": "Mi oficina está en el tercer piso.", + "example_sentence_english": "My office is on the third floor.", + "pos": "noun", + "word_frequency": 580 + }, + { + "word": "presente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "present", + "example_sentence_native": "Todos los estudiantes estaban presentes en la clase.", + "example_sentence_english": "All the students were present in class.", + "pos": "adjective", + "word_frequency": 581 + }, + { + "word": "sector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sector", + "example_sentence_native": "El sector tecnológico está creciendo rápidamente.", + "example_sentence_english": "The technology sector is growing rapidly.", + "pos": "noun", + "word_frequency": 582 + }, + { + "word": "serio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "serious", + "example_sentence_native": "Es una persona muy seria y responsable.", + "example_sentence_english": "He is a very serious and responsible person.", + "pos": "adjective", + "word_frequency": 583 + }, + { + "word": "superior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superior", + "example_sentence_native": "Su rendimiento fue superior al esperado.", + "example_sentence_english": "His performance was superior to what was expected.", + "pos": "adjective", + "word_frequency": 584 + }, + { + "word": "supuesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supposed", + "example_sentence_native": "El supuesto ladrón fue arrestado.", + "example_sentence_english": "The alleged thief was arrested.", + "pos": "adjective", + "word_frequency": 585 + }, + { + "word": "boca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mouth", + "example_sentence_native": "Abre la boca para el dentista.", + "example_sentence_english": "Open your mouth for the dentist.", + "pos": "noun", + "word_frequency": 586 + }, + { + "word": "capacidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capacity", + "example_sentence_native": "Tiene una gran capacidad para aprender.", + "example_sentence_english": "He has a great capacity for learning.", + "pos": "noun", + "word_frequency": 587 + }, + { + "word": "comprar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to buy", + "example_sentence_native": "Quiero comprar un coche nuevo.", + "example_sentence_english": "I want to buy a new car.", + "pos": "verb", + "word_frequency": 588 + }, + { + "word": "crear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to create", + "example_sentence_native": "Es importante crear un buen ambiente de trabajo.", + "example_sentence_english": "It's important to create a good work environment.", + "pos": "verb", + "word_frequency": 589 + }, + { + "word": "energía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy", + "example_sentence_native": "Necesito más energía para terminar el día.", + "example_sentence_english": "I need more energy to finish the day.", + "pos": "noun", + "word_frequency": 590 + }, + { + "word": "mantener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to maintain", + "example_sentence_native": "Es difícil mantener la calma en esta situación.", + "example_sentence_english": "It's difficult to keep calm in this situation.", + "pos": "verb", + "word_frequency": 591 + }, + { + "word": "modelo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "model", + "example_sentence_native": "Este es un nuevo modelo de coche.", + "example_sentence_english": "This is a new car model.", + "pos": "noun", + "word_frequency": 592 + }, + { + "word": "natural", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "natural", + "example_sentence_native": "Es un proceso natural.", + "example_sentence_english": "It's a natural process.", + "pos": "adjective", + "word_frequency": 593 + }, + { + "word": "necesidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "need", + "example_sentence_native": "Hay una gran necesidad de agua en la región.", + "example_sentence_english": "There is a great need for water in the region.", + "pos": "noun", + "word_frequency": 594 + }, + { + "word": "radio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "radio", + "example_sentence_native": "Escucho la radio por la mañana.", + "example_sentence_english": "I listen to the radio in the morning.", + "pos": "noun", + "word_frequency": 595 + }, + { + "word": "trabajador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worker", + "example_sentence_native": "Es un trabajador muy dedicado.", + "example_sentence_english": "He is a very dedicated worker.", + "pos": "noun", + "word_frequency": 596 + }, + { + "word": "viejo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "old", + "example_sentence_native": "Mi abuelo es un hombre viejo.", + "example_sentence_english": "My grandfather is an old man.", + "pos": "adjective", + "word_frequency": 598 + }, + { + "word": "administración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "administration", + "example_sentence_native": "La administración de la empresa es muy eficiente.", + "example_sentence_english": "The company's administration is very efficient.", + "pos": "noun", + "word_frequency": 599 + }, + { + "word": "comisión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commission;committee", + "example_sentence_native": "La comisión se reunirá mañana.", + "example_sentence_english": "The committee will meet tomorrow.", + "pos": "noun", + "word_frequency": 600 + }, + { + "word": "costa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coast;cost", + "example_sentence_native": "Me encanta pasar el verano en la costa.", + "example_sentence_english": "I love spending the summer on the coast.", + "pos": "noun", + "word_frequency": 602 + }, + { + "word": "crisis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crisis", + "example_sentence_native": "El país atraviesa una crisis económica.", + "example_sentence_english": "The country is going through an economic crisis.", + "pos": "noun", + "word_frequency": 603 + }, + { + "word": "culpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fault;blame", + "example_sentence_native": "No fue mi culpa.", + "example_sentence_english": "It wasn't my fault.", + "pos": "noun", + "word_frequency": 604 + }, + { + "word": "cámara", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camera;chamber", + "example_sentence_native": "Compré una nueva cámara de fotos.", + "example_sentence_english": "I bought a new camera.", + "pos": "noun", + "word_frequency": 605 + }, + { + "word": "diario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "newspaper;diary", + "example_sentence_native": "Leo el diario todas las mañanas.", + "example_sentence_english": "I read the newspaper every morning.", + "pos": "noun", + "word_frequency": 606 + }, + { + "word": "domingo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Sunday", + "example_sentence_native": "Nos vemos el domingo.", + "example_sentence_english": "See you on Sunday.", + "pos": "noun", + "word_frequency": 607 + }, + { + "word": "empezar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to start;to begin", + "example_sentence_native": "Vamos a empezar la clase.", + "example_sentence_english": "Let's start the class.", + "pos": "verb", + "word_frequency": 608 + }, + { + "word": "fuego", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fire", + "example_sentence_native": "Ten cuidado con el fuego.", + "example_sentence_english": "Be careful with the fire.", + "pos": "noun", + "word_frequency": 609 + }, + { + "word": "perder", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to lose", + "example_sentence_native": "No quiero perder el tren.", + "example_sentence_english": "I don't want to miss the train.", + "pos": "verb", + "word_frequency": 610 + }, + { + "word": "posición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position", + "example_sentence_native": "Su posición en la empresa es importante.", + "example_sentence_english": "His position in the company is important.", + "pos": "noun", + "word_frequency": 611 + }, + { + "word": "suficiente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "enough;sufficient", + "example_sentence_native": "Tenemos comida suficiente para todos.", + "example_sentence_english": "We have enough food for everyone.", + "pos": "adjective", + "word_frequency": 612 + }, + { + "word": "título", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "title;degree", + "example_sentence_native": "Obtuvo su título universitario el año pasado.", + "example_sentence_english": "He obtained his university degree last year.", + "pos": "noun", + "word_frequency": 613 + }, + { + "word": "actualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currently;nowadays", + "example_sentence_native": "Actualmente, vivo en Madrid.", + "example_sentence_english": "Currently, I live in Madrid.", + "pos": "adverb", + "word_frequency": 614 + }, + { + "word": "llamada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "call", + "example_sentence_native": "Recibí una llamada importante.", + "example_sentence_english": "I received an important call.", + "pos": "noun", + "word_frequency": 615 + }, + { + "word": "mamá", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mom;mother", + "example_sentence_native": "Mi mamá cocina muy bien.", + "example_sentence_english": "My mom cooks very well.", + "pos": "noun", + "word_frequency": 616 + }, + { + "word": "participación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participation", + "example_sentence_native": "Su participación en el proyecto fue clave.", + "example_sentence_english": "His participation in the project was key.", + "pos": "noun", + "word_frequency": 617 + }, + { + "word": "sangre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood", + "example_sentence_native": "La sangre es roja.", + "example_sentence_english": "Blood is red.", + "pos": "noun", + "word_frequency": 618 + }, + { + "word": "violencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violence", + "example_sentence_native": "Debemos luchar contra la violencia.", + "example_sentence_english": "We must fight against violence.", + "pos": "noun", + "word_frequency": 619 + }, + { + "word": "auto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car", + "example_sentence_native": "Compré un auto nuevo.", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 620 + }, + { + "word": "carta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "letter;card", + "example_sentence_native": "Escribí una carta a mi abuela.", + "example_sentence_english": "I wrote a letter to my grandmother.", + "pos": "noun", + "word_frequency": 622 + }, + { + "word": "ciudadano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citizen", + "example_sentence_native": "Todo ciudadano tiene derechos.", + "example_sentence_english": "Every citizen has rights.", + "pos": "noun", + "word_frequency": 624 + }, + { + "word": "probablemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probably", + "example_sentence_native": "Probablemente llueva mañana.", + "example_sentence_english": "It will probably rain tomorrow.", + "pos": "adverb", + "word_frequency": 627 + }, + { + "word": "rápido", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fast;quick", + "example_sentence_native": "Es un coche muy rápido.", + "example_sentence_english": "It's a very fast car.", + "pos": "adjective", + "word_frequency": 628 + }, + { + "word": "solamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "only;just", + "example_sentence_native": "Solamente quiero un café.", + "example_sentence_english": "I only want a coffee.", + "pos": "adverb", + "word_frequency": 629 + }, + { + "word": "área", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area", + "example_sentence_native": "Esta es un área de descanso.", + "example_sentence_english": "This is a rest area.", + "pos": "noun", + "word_frequency": 630 + }, + { + "word": "banda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "band;strip", + "example_sentence_native": "Me gusta la música de esa banda.", + "example_sentence_english": "I like the music of that band.", + "pos": "noun", + "word_frequency": 631 + }, + { + "word": "colegio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school", + "example_sentence_native": "Mis hijos van al mismo colegio.", + "example_sentence_english": "My children go to the same school.", + "pos": "noun", + "word_frequency": 632 + }, + { + "word": "contenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "content", + "example_sentence_native": "El contenido del libro es muy interesante.", + "example_sentence_english": "The content of the book is very interesting.", + "pos": "noun", + "word_frequency": 633 + }, + { + "word": "decisión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decision", + "example_sentence_native": "Fue una decisión difícil.", + "example_sentence_english": "It was a difficult decision.", + "pos": "noun", + "word_frequency": 634 + }, + { + "word": "encuentro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encounter;meeting", + "example_sentence_native": "Tuvimos un encuentro casual en la calle.", + "example_sentence_english": "We had a casual encounter on the street.", + "pos": "noun", + "word_frequency": 635 + }, + { + "word": "entrada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "entrance;ticket", + "example_sentence_native": "La entrada al museo es gratuita.", + "example_sentence_english": "Entrance to the museum is free.", + "pos": "noun", + "word_frequency": 636 + }, + { + "word": "fiesta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "party;feast", + "example_sentence_native": "Vamos a una fiesta el sábado.", + "example_sentence_english": "We're going to a party on Saturday.", + "pos": "noun", + "word_frequency": 637 + }, + { + "word": "imposible", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "impossible", + "example_sentence_native": "Es imposible terminar esto hoy.", + "example_sentence_english": "It's impossible to finish this today.", + "pos": "adjective", + "word_frequency": 640 + }, + { + "word": "pagar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pay", + "example_sentence_native": "Necesito pagar la cuenta.", + "example_sentence_english": "I need to pay the bill.", + "pos": "verb", + "word_frequency": 641 + }, + { + "word": "permitir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to allow;to permit", + "example_sentence_native": "No se permite fumar aquí.", + "example_sentence_english": "Smoking is not allowed here.", + "pos": "verb", + "word_frequency": 643 + }, + { + "word": "televisión", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "television", + "example_sentence_native": "Me gusta ver la televisión.", + "example_sentence_english": "I like to watch television.", + "pos": "noun", + "word_frequency": 645 + }, + { + "word": "unión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "union", + "example_sentence_native": "La unión hace la fuerza.", + "example_sentence_english": "Union makes strength.", + "pos": "noun", + "word_frequency": 646 + }, + { + "word": "vía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way;route;track", + "example_sentence_native": "Esta es la vía más rápida.", + "example_sentence_english": "This is the fastest way.", + "pos": "noun", + "word_frequency": 647 + }, + { + "word": "abajo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "down;downstairs", + "example_sentence_native": "El perro está abajo.", + "example_sentence_english": "The dog is downstairs.", + "pos": "adverb", + "word_frequency": 648 + }, + { + "word": "atrás", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back;behind", + "example_sentence_native": "Mira hacia atrás.", + "example_sentence_english": "Look back.", + "pos": "adverb", + "word_frequency": 649 + }, + { + "word": "capaz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capable;able", + "example_sentence_native": "Eres capaz de lograrlo.", + "example_sentence_english": "You are capable of achieving it.", + "pos": "adjective", + "word_frequency": 650 + }, + { + "word": "club", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "club", + "example_sentence_native": "Vamos al club esta noche.", + "example_sentence_english": "Let's go to the club tonight.", + "pos": "noun", + "word_frequency": 651 + }, + { + "word": "comentario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comment", + "example_sentence_native": "Deja tu comentario abajo.", + "example_sentence_english": "Leave your comment below.", + "pos": "noun", + "word_frequency": 652 + }, + { + "word": "error", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "error;mistake", + "example_sentence_native": "Fue un error mío.", + "example_sentence_english": "It was my mistake.", + "pos": "noun", + "word_frequency": 653 + }, + { + "word": "gusto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "taste;pleasure", + "example_sentence_native": "Mucho gusto en conocerte.", + "example_sentence_english": "Nice to meet you.", + "pos": "noun", + "word_frequency": 654 + }, + { + "word": "normal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normal", + "example_sentence_native": "Es una situación normal.", + "example_sentence_english": "It's a normal situation.", + "pos": "adjective", + "word_frequency": 655 + }, + { + "word": "sexo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sex;gender", + "example_sentence_native": "¿Cuál es tu sexo?", + "example_sentence_english": "What is your sex/gender?", + "pos": "noun", + "word_frequency": 656 + }, + { + "word": "siete", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seven", + "example_sentence_native": "Tengo siete libros.", + "example_sentence_english": "I have seven books.", + "pos": "noun", + "word_frequency": 657 + }, + { + "word": "tambien", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "also;too", + "example_sentence_native": "Yo también quiero ir.", + "example_sentence_english": "I want to go too.", + "pos": "adverb", + "word_frequency": 659 + }, + { + "word": "texto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "text", + "example_sentence_native": "Lee el texto con atención.", + "example_sentence_english": "Read the text carefully.", + "pos": "noun", + "word_frequency": 660 + }, + { + "word": "análisis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analysis", + "example_sentence_native": "Necesitamos un análisis profundo de la situación.", + "example_sentence_english": "We need a deep analysis of the situation.", + "pos": "noun", + "word_frequency": 661 + }, + { + "word": "apenas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardly;scarcely", + "example_sentence_native": "Apenas puedo creerlo.", + "example_sentence_english": "I can hardly believe it.", + "pos": "adverb", + "word_frequency": 662 + }, + { + "word": "chico", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boy;kid", + "example_sentence_native": "El chico juega en el parque.", + "example_sentence_english": "The boy is playing in the park.", + "pos": "noun", + "word_frequency": 663 + }, + { + "word": "constitución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitution", + "example_sentence_native": "La constitución garantiza nuestros derechos.", + "example_sentence_english": "The constitution guarantees our rights.", + "pos": "noun", + "word_frequency": 664 + }, + { + "word": "contrario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contrary;opposite", + "example_sentence_native": "Es lo contrario de lo que esperaba.", + "example_sentence_english": "It's the opposite of what I expected.", + "pos": "adjective", + "word_frequency": 665 + }, + { + "word": "código", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "code", + "example_sentence_native": "Introduce el código secreto.", + "example_sentence_english": "Enter the secret code.", + "pos": "noun", + "word_frequency": 666 + }, + { + "word": "dolor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pain", + "example_sentence_native": "Siento un fuerte dolor de cabeza.", + "example_sentence_english": "I feel a strong headache.", + "pos": "noun", + "word_frequency": 667 + }, + { + "word": "efecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effect", + "example_sentence_native": "El medicamento tuvo un efecto rápido.", + "example_sentence_english": "The medicine had a rapid effect.", + "pos": "noun", + "word_frequency": 668 + }, + { + "word": "isla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "island", + "example_sentence_native": "Vivimos en una isla pequeña.", + "example_sentence_english": "We live on a small island.", + "pos": "noun", + "word_frequency": 669 + }, + { + "word": "izquierda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "left (direction)", + "example_sentence_native": "Gira a la izquierda en la esquina.", + "example_sentence_english": "Turn left at the corner.", + "pos": "noun", + "word_frequency": 670 + }, + { + "word": "mente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mind", + "example_sentence_native": "Tenlo en mente.", + "example_sentence_english": "Keep it in mind.", + "pos": "noun", + "word_frequency": 671 + }, + { + "word": "odio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hatred", + "example_sentence_native": "El odio no lleva a nada bueno.", + "example_sentence_english": "Hatred leads to nothing good.", + "pos": "noun", + "word_frequency": 672 + }, + { + "word": "post", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "post (as in blog post;social media post)", + "example_sentence_native": "Publicó un nuevo post en su blog.", + "example_sentence_english": "He published a new post on his blog.", + "pos": "noun", + "word_frequency": 674 + }, + { + "word": "presencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presence", + "example_sentence_native": "Su presencia fue notada.", + "example_sentence_english": "His presence was noted.", + "pos": "noun", + "word_frequency": 675 + }, + { + "word": "profesor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "teacher;professor", + "example_sentence_native": "El profesor explicó la lección.", + "example_sentence_english": "The teacher explained the lesson.", + "pos": "noun", + "word_frequency": 676 + }, + { + "word": "quizás", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perhaps;maybe", + "example_sentence_native": "Quizás llueva mañana.", + "example_sentence_english": "Perhaps it will rain tomorrow.", + "pos": "adverb", + "word_frequency": 677 + }, + { + "word": "respeto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respect", + "example_sentence_native": "Muestra respeto por los demás.", + "example_sentence_english": "Show respect for others.", + "pos": "noun", + "word_frequency": 678 + }, + { + "word": "ropa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clothes;clothing", + "example_sentence_native": "Necesito comprar ropa nueva.", + "example_sentence_english": "I need to buy new clothes.", + "pos": "noun", + "word_frequency": 679 + }, + { + "word": "totalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "totally;completely", + "example_sentence_native": "Estoy totalmente de acuerdo contigo.", + "example_sentence_english": "I totally agree with you.", + "pos": "adverb", + "word_frequency": 681 + }, + { + "word": "versión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "version", + "example_sentence_native": "Esta es la última versión del software.", + "example_sentence_english": "This is the latest version of the software.", + "pos": "noun", + "word_frequency": 682 + }, + { + "word": "cielo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sky;heaven", + "example_sentence_native": "El cielo está despejado hoy.", + "example_sentence_english": "The sky is clear today.", + "pos": "noun", + "word_frequency": 685 + }, + { + "word": "cine", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cinema;movie theater", + "example_sentence_native": "Vamos al cine esta noche.", + "example_sentence_english": "Let's go to the cinema tonight.", + "pos": "noun", + "word_frequency": 686 + }, + { + "word": "cuestión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "question;matter;issue", + "example_sentence_native": "Es una cuestión de tiempo.", + "example_sentence_english": "It's a matter of time.", + "pos": "noun", + "word_frequency": 687 + }, + { + "word": "escribir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to write", + "example_sentence_native": "Me gusta escribir cartas.", + "example_sentence_english": "I like to write letters.", + "pos": "verb", + "word_frequency": 688 + }, + { + "word": "formación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;formation", + "example_sentence_native": "Recibió una excelente formación profesional.", + "example_sentence_english": "He received excellent professional training.", + "pos": "noun", + "word_frequency": 689 + }, + { + "word": "importancia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "importance", + "example_sentence_native": "La importancia de la educación es innegable.", + "example_sentence_english": "The importance of education is undeniable.", + "pos": "noun", + "word_frequency": 691 + }, + { + "word": "industria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industry", + "example_sentence_native": "La industria automotriz es muy grande aquí.", + "example_sentence_english": "The automotive industry is very big here.", + "pos": "noun", + "word_frequency": 692 + }, + { + "word": "instituto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "institute;high school", + "example_sentence_native": "Mi hermano estudia en el instituto.", + "example_sentence_english": "My brother studies at the high school.", + "pos": "noun", + "word_frequency": 693 + }, + { + "word": "loco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crazy;mad", + "example_sentence_native": "Él está loco.", + "example_sentence_english": "He is crazy.", + "pos": "adjective", + "word_frequency": 694 + }, + { + "word": "origen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "origin", + "example_sentence_native": "Desconocemos el origen de este problema.", + "example_sentence_english": "We don't know the origin of this problem.", + "pos": "noun", + "word_frequency": 695 + }, + { + "word": "premio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prize;award", + "example_sentence_native": "Ganó el primer premio en el concurso.", + "example_sentence_english": "He won the first prize in the competition.", + "pos": "noun", + "word_frequency": 696 + }, + { + "word": "rico", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rich;delicious", + "example_sentence_native": "La comida está muy rica.", + "example_sentence_english": "The food is very delicious.", + "pos": "adjective", + "word_frequency": 698 + }, + { + "word": "simple", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "simple", + "example_sentence_native": "Es una solución muy simple.", + "example_sentence_english": "It's a very simple solution.", + "pos": "adjective", + "word_frequency": 699 + }, + { + "word": "unidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unit;unity", + "example_sentence_native": "La unidad es importante para el equipo.", + "example_sentence_english": "Unity is important for the team.", + "pos": "noun", + "word_frequency": 700 + }, + { + "word": "canal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canal;channel", + "example_sentence_native": "Cambia de canal, por favor.", + "example_sentence_english": "Change the channel, please.", + "pos": "noun", + "word_frequency": 702 + }, + { + "word": "cultural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultural", + "example_sentence_native": "Tenemos muchas actividades culturales.", + "example_sentence_english": "We have many cultural activities.", + "pos": "adjective", + "word_frequency": 703 + }, + { + "word": "económico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economic;economical", + "example_sentence_native": "La situación económica es complicada.", + "example_sentence_english": "The economic situation is complicated.", + "pos": "adjective", + "word_frequency": 704 + }, + { + "word": "interesante", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "interesting", + "example_sentence_native": "Ese libro es muy interesante.", + "example_sentence_english": "That book is very interesting.", + "pos": "adjective", + "word_frequency": 706 + }, + { + "word": "jamás", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "never;ever", + "example_sentence_native": "Jamás lo olvidaré.", + "example_sentence_english": "I will never forget it.", + "pos": "adverb", + "word_frequency": 707 + }, + { + "word": "juicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judgment;trial", + "example_sentence_native": "El juicio duró varias semanas.", + "example_sentence_english": "The trial lasted several weeks.", + "pos": "noun", + "word_frequency": 708 + }, + { + "word": "original", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "original", + "example_sentence_native": "La idea es muy original.", + "example_sentence_english": "The idea is very original.", + "pos": "adjective", + "word_frequency": 709 + }, + { + "word": "peso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weight;currency unit", + "example_sentence_native": "Necesito saber el peso de la maleta.", + "example_sentence_english": "I need to know the weight of the suitcase.", + "pos": "noun", + "word_frequency": 710 + }, + { + "word": "pobre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "poor", + "example_sentence_native": "Es un hombre muy pobre.", + "example_sentence_english": "He is a very poor man.", + "pos": "adjective", + "word_frequency": 711 + }, + { + "word": "prensa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "press;newspaper", + "example_sentence_native": "La noticia salió en toda la prensa.", + "example_sentence_english": "The news came out in all the press.", + "pos": "noun", + "word_frequency": 712 + }, + { + "word": "propiedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property;ownership", + "example_sentence_native": "Esta casa es de mi propiedad.", + "example_sentence_english": "This house is my property.", + "pos": "noun", + "word_frequency": 713 + }, + { + "word": "revolución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolution", + "example_sentence_native": "La revolución cambió el país.", + "example_sentence_english": "The revolution changed the country.", + "pos": "noun", + "word_frequency": 714 + }, + { + "word": "victoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victory", + "example_sentence_native": "Celebraron la victoria con alegría.", + "example_sentence_english": "They celebrated the victory with joy.", + "pos": "noun", + "word_frequency": 715 + }, + { + "word": "voto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vote", + "example_sentence_native": "Cada voto cuenta en las elecciones.", + "example_sentence_english": "Every vote counts in the elections.", + "pos": "noun", + "word_frequency": 716 + }, + { + "word": "alma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soul", + "example_sentence_native": "Ella tiene un alma muy pura.", + "example_sentence_english": "She has a very pure soul.", + "pos": "noun", + "word_frequency": 719 + }, + { + "word": "asunto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matter;issue", + "example_sentence_native": "Tenemos que discutir este asunto importante.", + "example_sentence_english": "We need to discuss this important matter.", + "pos": "noun", + "word_frequency": 721 + }, + { + "word": "completo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "complete;full", + "example_sentence_native": "El libro está completo.", + "example_sentence_english": "The book is complete.", + "pos": "adverb", + "word_frequency": 722 + }, + { + "word": "conocimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knowledge", + "example_sentence_native": "Tiene un gran conocimiento de historia.", + "example_sentence_english": "He has great knowledge of history.", + "pos": "noun", + "word_frequency": 723 + }, + { + "word": "estudiante", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student", + "example_sentence_native": "Soy un estudiante de español.", + "example_sentence_english": "I am a Spanish student.", + "pos": "noun", + "word_frequency": 724 + }, + { + "word": "hospital", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hospital", + "example_sentence_native": "Necesito ir al hospital.", + "example_sentence_english": "I need to go to the hospital.", + "pos": "noun", + "word_frequency": 725 + }, + { + "word": "marcha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "march;progress", + "example_sentence_native": "La manifestación estaba en marcha.", + "example_sentence_english": "The demonstration was underway.", + "pos": "noun", + "word_frequency": 726 + }, + { + "word": "pie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "foot", + "example_sentence_native": "Me duele el pie.", + "example_sentence_english": "My foot hurts.", + "pos": "noun", + "word_frequency": 727 + }, + { + "word": "tecnología", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technology", + "example_sentence_native": "La tecnología avanza rápidamente.", + "example_sentence_english": "Technology advances rapidly.", + "pos": "noun", + "word_frequency": 728 + }, + { + "word": "verano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "summer", + "example_sentence_native": "Me encanta el verano.", + "example_sentence_english": "I love summer.", + "pos": "noun", + "word_frequency": 729 + }, + { + "word": "aprender", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to learn", + "example_sentence_native": "Quiero aprender español.", + "example_sentence_english": "I want to learn Spanish.", + "pos": "verb", + "word_frequency": 730 + }, + { + "word": "conjunto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "set;group", + "example_sentence_native": "Este es un conjunto de herramientas.", + "example_sentence_english": "This is a set of tools.", + "pos": "noun", + "word_frequency": 731 + }, + { + "word": "cuarto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room;quarter", + "example_sentence_native": "Mi cuarto es pequeño.", + "example_sentence_english": "My room is small.", + "pos": "noun", + "word_frequency": 732 + }, + { + "word": "curso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "course", + "example_sentence_native": "Estoy tomando un curso de cocina.", + "example_sentence_english": "I am taking a cooking course.", + "pos": "noun", + "word_frequency": 733 + }, + { + "word": "democracia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democracy", + "example_sentence_native": "La democracia es importante para la libertad.", + "example_sentence_english": "Democracy is important for freedom.", + "pos": "noun", + "word_frequency": 734 + }, + { + "word": "don", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gift;talent", + "example_sentence_native": "Tiene un don para la música.", + "example_sentence_english": "He has a gift for music.", + "pos": "noun", + "word_frequency": 735 + }, + { + "word": "fe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faith", + "example_sentence_native": "Tengo fe en el futuro.", + "example_sentence_english": "I have faith in the future.", + "pos": "noun", + "word_frequency": 736 + }, + { + "word": "gana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desire;urge", + "example_sentence_native": "No tengo ganas de salir.", + "example_sentence_english": "I don't feel like going out.", + "pos": "noun", + "word_frequency": 737 + }, + { + "word": "género", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gender;genre", + "example_sentence_native": "Este libro es de género fantástico.", + "example_sentence_english": "This book is of the fantasy genre.", + "pos": "noun", + "word_frequency": 738 + }, + { + "word": "muerto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dead", + "example_sentence_native": "El árbol está muerto.", + "example_sentence_english": "The tree is dead.", + "pos": "adjective", + "word_frequency": 739 + }, + { + "word": "nación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nation", + "example_sentence_native": "Es una nación con mucha historia.", + "example_sentence_english": "It is a nation with a lot of history.", + "pos": "noun", + "word_frequency": 740 + }, + { + "word": "negocio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "business;deal", + "example_sentence_native": "Mi padre tiene un negocio.", + "example_sentence_english": "My father has a business.", + "pos": "noun", + "word_frequency": 741 + }, + { + "word": "ocho", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eight", + "example_sentence_native": "Son las ocho en punto.", + "example_sentence_english": "It's eight o'clock.", + "pos": "noun", + "word_frequency": 742 + }, + { + "word": "particular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "particular;private", + "example_sentence_native": "Es un caso particular.", + "example_sentence_english": "It's a particular case.", + "pos": "adjective", + "word_frequency": 744 + }, + { + "word": "posibilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibility", + "example_sentence_native": "Hay una posibilidad de lluvia.", + "example_sentence_english": "There is a possibility of rain.", + "pos": "noun", + "word_frequency": 745 + }, + { + "word": "profesional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional", + "example_sentence_native": "Es un atleta profesional.", + "example_sentence_english": "He is a professional athlete.", + "pos": "adjective", + "word_frequency": 746 + }, + { + "word": "régimen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regime;system", + "example_sentence_native": "El país tiene un nuevo régimen político.", + "example_sentence_english": "The country has a new political regime.", + "pos": "noun", + "word_frequency": 747 + }, + { + "word": "suelo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor;ground", + "example_sentence_native": "El libro cayó al suelo.", + "example_sentence_english": "The book fell to the floor.", + "pos": "noun", + "word_frequency": 748 + }, + { + "word": "visita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visit", + "example_sentence_native": "Tuvimos una visita inesperada.", + "example_sentence_english": "We had an unexpected visit.", + "pos": "noun", + "word_frequency": 749 + }, + { + "word": "ambiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environment;atmosphere", + "example_sentence_native": "El ambiente en la fiesta era muy bueno.", + "example_sentence_english": "The atmosphere at the party was very good.", + "pos": "noun", + "word_frequency": 750 + }, + { + "word": "ataque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attack", + "example_sentence_native": "Sufrió un ataque al corazón.", + "example_sentence_english": "He suffered a heart attack.", + "pos": "noun", + "word_frequency": 751 + }, + { + "word": "edificio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "building", + "example_sentence_native": "Este edificio es muy alto.", + "example_sentence_english": "This building is very tall.", + "pos": "noun", + "word_frequency": 753 + }, + { + "word": "federal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal", + "example_sentence_native": "Es una ley federal.", + "example_sentence_english": "It is a federal law.", + "pos": "adjective", + "word_frequency": 754 + }, + { + "word": "lengua", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "language;tongue", + "example_sentence_native": "El español es mi lengua materna.", + "example_sentence_english": "Spanish is my native language.", + "pos": "noun", + "word_frequency": 755 + }, + { + "word": "mesa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "table", + "example_sentence_native": "Pon los libros en la mesa.", + "example_sentence_english": "Put the books on the table.", + "pos": "noun", + "word_frequency": 756 + }, + { + "word": "naturaleza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nature", + "example_sentence_native": "Me gusta pasar tiempo en la naturaleza.", + "example_sentence_english": "I like to spend time in nature.", + "pos": "noun", + "word_frequency": 757 + }, + { + "word": "pago", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "payment", + "example_sentence_native": "Realicé el pago ayer.", + "example_sentence_english": "I made the payment yesterday.", + "pos": "noun", + "word_frequency": 758 + }, + { + "word": "protección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protection", + "example_sentence_native": "Necesitamos protección contra el sol.", + "example_sentence_english": "We need protection from the sun.", + "pos": "noun", + "word_frequency": 759 + }, + { + "word": "publicar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to publish", + "example_sentence_native": "La editorial va a publicar un nuevo libro.", + "example_sentence_english": "The publisher is going to publish a new book.", + "pos": "verb", + "word_frequency": 760 + }, + { + "word": "sala", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "room;living room;hall", + "example_sentence_native": "Nos reunimos en la sala de estar.", + "example_sentence_english": "We met in the living room.", + "pos": "noun", + "word_frequency": 761 + }, + { + "word": "señora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "madam;lady;Mrs.", + "example_sentence_native": "La señora López es mi vecina.", + "example_sentence_english": "Mrs. Lopez is my neighbor.", + "pos": "noun", + "word_frequency": 763 + }, + { + "word": "sueño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dream;sleep", + "example_sentence_native": "Tuve un sueño muy extraño anoche.", + "example_sentence_english": "I had a very strange dream last night.", + "pos": "noun", + "word_frequency": 764 + }, + { + "word": "teléfono", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telephone;phone", + "example_sentence_native": "¿Me puedes dar tu número de teléfono?", + "example_sentence_english": "Can you give me your phone number?", + "pos": "noun", + "word_frequency": 765 + }, + { + "word": "transporte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "transport;transportation", + "example_sentence_native": "El transporte público es muy eficiente aquí.", + "example_sentence_english": "Public transport is very efficient here.", + "pos": "noun", + "word_frequency": 766 + }, + { + "word": "usuario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "user", + "example_sentence_native": "Cada usuario tiene una contraseña única.", + "example_sentence_english": "Each user has a unique password.", + "pos": "noun", + "word_frequency": 767 + }, + { + "word": "acto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "act;deed;event", + "example_sentence_native": "Fue un acto de gran valentía.", + "example_sentence_english": "It was an act of great bravery.", + "pos": "noun", + "word_frequency": 768 + }, + { + "word": "animal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "animal", + "example_sentence_native": "Mi animal favorito es el perro.", + "example_sentence_english": "My favorite animal is the dog.", + "pos": "noun", + "word_frequency": 769 + }, + { + "word": "asociación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "association;society", + "example_sentence_native": "La asociación organiza eventos benéficos.", + "example_sentence_english": "The association organizes charity events.", + "pos": "noun", + "word_frequency": 770 + }, + { + "word": "cuidado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "care;caution", + "example_sentence_native": "Ten cuidado al cruzar la calle.", + "example_sentence_english": "Be careful when crossing the street.", + "pos": "noun", + "word_frequency": 771 + }, + { + "word": "deseo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wish;desire", + "example_sentence_native": "Te deseo lo mejor en tu nuevo trabajo.", + "example_sentence_english": "I wish you the best in your new job.", + "pos": "noun", + "word_frequency": 772 + }, + { + "word": "detrás", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "behind", + "example_sentence_native": "El perro está detrás del sofá.", + "example_sentence_english": "The dog is behind the sofa.", + "pos": "adverb", + "word_frequency": 773 + }, + { + "word": "directo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directly", + "example_sentence_native": "Ve directo a casa después de la escuela.", + "example_sentence_english": "Go directly home after school.", + "pos": "adverb", + "word_frequency": 774 + }, + { + "word": "doctor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "doctor", + "example_sentence_native": "Necesito ver a un doctor.", + "example_sentence_english": "I need to see a doctor.", + "pos": "noun", + "word_frequency": 775 + }, + { + "word": "edición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edition;publishing", + "example_sentence_native": "Esta es la primera edición del libro.", + "example_sentence_english": "This is the first edition of the book.", + "pos": "noun", + "word_frequency": 777 + }, + { + "word": "escuchar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to listen", + "example_sentence_native": "Me gusta escuchar música clásica.", + "example_sentence_english": "I like to listen to classical music.", + "pos": "verb", + "word_frequency": 778 + }, + { + "word": "informe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report", + "example_sentence_native": "El informe final estará listo mañana.", + "example_sentence_english": "The final report will be ready tomorrow.", + "pos": "noun", + "word_frequency": 779 + }, + { + "word": "material", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "material", + "example_sentence_native": "Necesitamos más material para el proyecto.", + "example_sentence_english": "We need more material for the project.", + "pos": "noun", + "word_frequency": 781 + }, + { + "word": "metro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "subway;metro;meter", + "example_sentence_native": "Tomamos el metro para ir al centro.", + "example_sentence_english": "We took the subway to go downtown.", + "pos": "noun", + "word_frequency": 782 + }, + { + "word": "pareja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "couple;partner", + "example_sentence_native": "Son una pareja muy feliz.", + "example_sentence_english": "They are a very happy couple.", + "pos": "noun", + "word_frequency": 783 + }, + { + "word": "perfecto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfect", + "example_sentence_native": "El clima es perfecto hoy.", + "example_sentence_english": "The weather is perfect today.", + "pos": "adjective", + "word_frequency": 784 + }, + { + "word": "presentar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to present;to introduce", + "example_sentence_native": "Me gustaría presentar a mi colega.", + "example_sentence_english": "I would like to introduce my colleague.", + "pos": "verb", + "word_frequency": 785 + }, + { + "word": "recordar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remember;to remind", + "example_sentence_native": "No puedo recordar su nombre.", + "example_sentence_english": "I can't remember his name.", + "pos": "verb", + "word_frequency": 786 + }, + { + "word": "venta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sale", + "example_sentence_native": "La casa está en venta.", + "example_sentence_english": "The house is for sale.", + "pos": "noun", + "word_frequency": 787 + }, + { + "word": "chica", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girl", + "example_sentence_native": "La chica lleva un vestido azul.", + "example_sentence_english": "The girl is wearing a blue dress.", + "pos": "noun", + "word_frequency": 788 + }, + { + "word": "confianza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trust;confidence", + "example_sentence_native": "Tengo mucha confianza en ti.", + "example_sentence_english": "I have a lot of trust in you.", + "pos": "noun", + "word_frequency": 789 + }, + { + "word": "creación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creation", + "example_sentence_native": "La creación de este proyecto fue un desafío.", + "example_sentence_english": "The creation of this project was a challenge.", + "pos": "noun", + "word_frequency": 790 + }, + { + "word": "destino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destiny;destination", + "example_sentence_native": "Nuestro destino final es Madrid.", + "example_sentence_english": "Our final destination is Madrid.", + "pos": "noun", + "word_frequency": 791 + }, + { + "word": "especie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "species;kind", + "example_sentence_native": "Hay muchas especies de aves en esta región.", + "example_sentence_english": "There are many species of birds in this region.", + "pos": "noun", + "word_frequency": 792 + }, + { + "word": "esposa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wife", + "example_sentence_native": "Mi esposa es una excelente cocinera.", + "example_sentence_english": "My wife is an excellent cook.", + "pos": "noun", + "word_frequency": 793 + }, + { + "word": "hambre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hunger", + "example_sentence_native": "Tengo mucha hambre.", + "example_sentence_english": "I am very hungry.", + "pos": "noun", + "word_frequency": 794 + }, + { + "word": "legal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legal", + "example_sentence_native": "Es completamente legal hacer esto.", + "example_sentence_english": "It is completely legal to do this.", + "pos": "adjective", + "word_frequency": 795 + }, + { + "word": "obtener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obtain;to get", + "example_sentence_native": "Necesitamos obtener más información.", + "example_sentence_english": "We need to obtain more information.", + "pos": "verb", + "word_frequency": 796 + }, + { + "word": "pedir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ask for;to order", + "example_sentence_native": "Voy a pedir una pizza.", + "example_sentence_english": "I'm going to order a pizza.", + "pos": "verb", + "word_frequency": 797 + }, + { + "word": "perro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dog", + "example_sentence_native": "Mi perro es muy juguetón.", + "example_sentence_english": "My dog is very playful.", + "pos": "noun", + "word_frequency": 798 + }, + { + "word": "propuesta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proposal;suggestion", + "example_sentence_native": "La empresa aceptó nuestra propuesta.", + "example_sentence_english": "The company accepted our proposal.", + "pos": "noun", + "word_frequency": 799 + }, + { + "word": "responsabilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsibility", + "example_sentence_native": "La responsabilidad social es importante.", + "example_sentence_english": "Social responsibility is important.", + "pos": "noun", + "word_frequency": 800 + }, + { + "word": "reunión", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meeting", + "example_sentence_native": "Tenemos una reunión mañana por la mañana.", + "example_sentence_english": "We have a meeting tomorrow morning.", + "pos": "noun", + "word_frequency": 801 + }, + { + "word": "revista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magazine", + "example_sentence_native": "Leí un artículo interesante en la revista.", + "example_sentence_english": "I read an interesting article in the magazine.", + "pos": "noun", + "word_frequency": 802 + }, + { + "word": "solución", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solution", + "example_sentence_native": "Encontramos una solución al problema.", + "example_sentence_english": "We found a solution to the problem.", + "pos": "noun", + "word_frequency": 803 + }, + { + "word": "territorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "territory", + "example_sentence_native": "El país tiene un vasto territorio.", + "example_sentence_english": "The country has a vast territory.", + "pos": "noun", + "word_frequency": 804 + }, + { + "word": "viernes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Friday", + "example_sentence_native": "Nos vemos el viernes.", + "example_sentence_english": "See you on Friday.", + "pos": "noun", + "word_frequency": 806 + }, + { + "word": "vídeo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video", + "example_sentence_native": "Me gusta ver vídeos en línea.", + "example_sentence_english": "I like to watch videos online.", + "pos": "noun", + "word_frequency": 807 + }, + { + "word": "aplicación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application", + "example_sentence_native": "Descargué una nueva aplicación en mi teléfono.", + "example_sentence_english": "I downloaded a new application on my phone.", + "pos": "noun", + "word_frequency": 808 + }, + { + "word": "aumento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "increase", + "example_sentence_native": "Hubo un aumento en los precios.", + "example_sentence_english": "There was an increase in prices.", + "pos": "noun", + "word_frequency": 809 + }, + { + "word": "cama", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bed", + "example_sentence_native": "Me voy a la cama.", + "example_sentence_english": "I'm going to bed.", + "pos": "noun", + "word_frequency": 810 + }, + { + "word": "ciencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "science", + "example_sentence_native": "La ciencia es fascinante.", + "example_sentence_english": "Science is fascinating.", + "pos": "noun", + "word_frequency": 811 + }, + { + "word": "distancia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "distance", + "example_sentence_native": "La distancia entre las ciudades es grande.", + "example_sentence_english": "The distance between the cities is great.", + "pos": "noun", + "word_frequency": 812 + }, + { + "word": "doble", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "double", + "example_sentence_native": "Quiero una ración doble de patatas.", + "example_sentence_english": "I want a double portion of potatoes.", + "pos": "adjective", + "word_frequency": 813 + }, + { + "word": "marca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brand", + "example_sentence_native": "Esta es una marca de ropa muy conocida.", + "example_sentence_english": "This is a very well-known clothing brand.", + "pos": "noun", + "word_frequency": 816 + }, + { + "word": "memoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory", + "example_sentence_native": "Tengo buena memoria para los nombres.", + "example_sentence_english": "I have a good memory for names.", + "pos": "noun", + "word_frequency": 817 + }, + { + "word": "motivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reason", + "example_sentence_native": "No hay motivo para preocuparse.", + "example_sentence_english": "There's no reason to worry.", + "pos": "noun", + "word_frequency": 818 + }, + { + "word": "opción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "option", + "example_sentence_native": "Tienes dos opciones.", + "example_sentence_english": "You have two options.", + "pos": "noun", + "word_frequency": 819 + }, + { + "word": "pase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pass", + "example_sentence_native": "Necesitas un pase para entrar.", + "example_sentence_english": "You need a pass to enter.", + "pos": "noun", + "word_frequency": 820 + }, + { + "word": "práctica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practice", + "example_sentence_native": "La práctica hace al maestro.", + "example_sentence_english": "Practice makes perfect.", + "pos": "noun", + "word_frequency": 821 + }, + { + "word": "realizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to carry out", + "example_sentence_native": "Vamos a realizar el proyecto.", + "example_sentence_english": "We are going to carry out the project.", + "pos": "verb", + "word_frequency": 822 + }, + { + "word": "referencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reference", + "example_sentence_native": "Necesito una referencia para el trabajo.", + "example_sentence_english": "I need a reference for the job.", + "pos": "noun", + "word_frequency": 823 + }, + { + "word": "reforma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reform", + "example_sentence_native": "El gobierno anunció una nueva reforma educativa.", + "example_sentence_english": "The government announced a new educational reform.", + "pos": "noun", + "word_frequency": 824 + }, + { + "word": "reino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kingdom", + "example_sentence_native": "El reino animal es muy diverso.", + "example_sentence_english": "The animal kingdom is very diverse.", + "pos": "noun", + "word_frequency": 825 + }, + { + "word": "resultar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn out", + "example_sentence_native": "El examen resultó más fácil de lo esperado.", + "example_sentence_english": "The exam turned out to be easier than expected.", + "pos": "verb", + "word_frequency": 826 + }, + { + "word": "riesgo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risk", + "example_sentence_native": "Hay un riesgo de lluvia.", + "example_sentence_english": "There is a risk of rain.", + "pos": "noun", + "word_frequency": 827 + }, + { + "word": "sacar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take out", + "example_sentence_native": "Voy a sacar el perro a pasear.", + "example_sentence_english": "I'm going to take the dog for a walk.", + "pos": "verb", + "word_frequency": 828 + }, + { + "word": "silencio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silence", + "example_sentence_native": "Por favor, mantén silencio.", + "example_sentence_english": "Please, keep silence.", + "pos": "noun", + "word_frequency": 829 + }, + { + "word": "temporada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "season", + "example_sentence_native": "Esta es la última temporada de la serie.", + "example_sentence_english": "This is the last season of the series.", + "pos": "noun", + "word_frequency": 830 + }, + { + "word": "terminar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to finish", + "example_sentence_native": "Voy a terminar mi tarea.", + "example_sentence_english": "I'm going to finish my homework.", + "pos": "verb", + "word_frequency": 831 + }, + { + "word": "autoridad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authority", + "example_sentence_native": "La policía tiene autoridad para detenerte.", + "example_sentence_english": "The police have authority to detain you.", + "pos": "noun", + "word_frequency": 832 + }, + { + "word": "comenzar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to begin", + "example_sentence_native": "La clase va a comenzar pronto.", + "example_sentence_english": "The class is going to start soon.", + "pos": "verb", + "word_frequency": 833 + }, + { + "word": "comercio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trade", + "example_sentence_native": "El comercio internacional es complejo.", + "example_sentence_english": "International trade is complex.", + "pos": "noun", + "word_frequency": 834 + }, + { + "word": "daño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damage", + "example_sentence_native": "El accidente causó mucho daño.", + "example_sentence_english": "The accident caused a lot of damage.", + "pos": "noun", + "word_frequency": 835 + }, + { + "word": "elemento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "element", + "example_sentence_native": "El agua es un elemento esencial.", + "example_sentence_english": "Water is an essential element.", + "pos": "noun", + "word_frequency": 836 + }, + { + "word": "esfuerzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effort", + "example_sentence_native": "Hizo un gran esfuerzo para terminar el trabajo.", + "example_sentence_english": "He made a great effort to finish the work.", + "pos": "noun", + "word_frequency": 837 + }, + { + "word": "gratis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "free (of charge)", + "example_sentence_native": "La entrada al museo es gratis.", + "example_sentence_english": "Admission to the museum is free.", + "pos": "adverb", + "word_frequency": 839 + }, + { + "word": "morir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to die", + "example_sentence_native": "Todos vamos a morir algún día.", + "example_sentence_english": "We are all going to die someday.", + "pos": "verb", + "word_frequency": 841 + }, + { + "word": "médico", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "doctor", + "example_sentence_native": "Fui al médico porque me sentía mal.", + "example_sentence_english": "I went to the doctor because I felt bad.", + "pos": "noun", + "word_frequency": 842 + }, + { + "word": "próximo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "next", + "example_sentence_native": "Nos vemos la próxima semana.", + "example_sentence_english": "See you next week.", + "pos": "adjective", + "word_frequency": 843 + }, + { + "word": "salida", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "exit", + "example_sentence_native": "La salida de emergencia está a la derecha.", + "example_sentence_english": "The emergency exit is on the right.", + "pos": "noun", + "word_frequency": 844 + }, + { + "word": "selección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selection;national team", + "example_sentence_native": "La selección española de fútbol ganó el partido.", + "example_sentence_english": "The Spanish national football team won the match.", + "pos": "noun", + "word_frequency": 845 + }, + { + "word": "aparecer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to appear", + "example_sentence_native": "De repente, un conejo apareció de la nada.", + "example_sentence_english": "Suddenly, a rabbit appeared out of nowhere.", + "pos": "verb", + "word_frequency": 846 + }, + { + "word": "contacto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "contact", + "example_sentence_native": "Mantente en contacto conmigo.", + "example_sentence_english": "Stay in contact with me.", + "pos": "noun", + "word_frequency": 847 + }, + { + "word": "contar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to count;to tell", + "example_sentence_native": "Puedes contar conmigo para lo que necesites.", + "example_sentence_english": "You can count on me for whatever you need.", + "pos": "verb", + "word_frequency": 848 + }, + { + "word": "crecimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "growth", + "example_sentence_native": "La economía muestra un crecimiento constante.", + "example_sentence_english": "The economy shows constant growth.", + "pos": "noun", + "word_frequency": 849 + }, + { + "word": "despues", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "after;afterwards", + "example_sentence_native": "Vamos a cenar después del cine.", + "example_sentence_english": "We are going to have dinner after the cinema.", + "pos": "adverb", + "word_frequency": 850 + }, + { + "word": "excelente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excellent", + "example_sentence_native": "La comida estaba excelente.", + "example_sentence_english": "The food was excellent.", + "pos": "adjective", + "word_frequency": 851 + }, + { + "word": "función", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "function;role;performance", + "example_sentence_native": "La función principal de este botón es encender el aparato.", + "example_sentence_english": "The main function of this button is to turn on the device.", + "pos": "noun", + "word_frequency": 852 + }, + { + "word": "independencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence", + "example_sentence_native": "Muchos países celebran su día de independencia.", + "example_sentence_english": "Many countries celebrate their independence day.", + "pos": "noun", + "word_frequency": 853 + }, + { + "word": "plazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "term;deadline", + "example_sentence_native": "Tenemos un plazo de una semana para entregar el proyecto.", + "example_sentence_english": "We have a one-week deadline to deliver the project.", + "pos": "noun", + "word_frequency": 854 + }, + { + "word": "tv", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "TV;television", + "example_sentence_native": "Vamos a ver una película en la TV.", + "example_sentence_english": "We are going to watch a movie on TV.", + "pos": "noun", + "word_frequency": 855 + }, + { + "word": "término", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "term;end;word", + "example_sentence_native": "El contrato llega a su término el próximo mes.", + "example_sentence_english": "The contract reaches its term next month.", + "pos": "noun", + "word_frequency": 856 + }, + { + "word": "verdadero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "true;real", + "example_sentence_native": "Esta es la verdadera historia.", + "example_sentence_english": "This is the true story.", + "pos": "adjective", + "word_frequency": 857 + }, + { + "word": "verde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "green", + "example_sentence_native": "Me gusta el color verde.", + "example_sentence_english": "I like the color green.", + "pos": "adjective", + "word_frequency": 858 + }, + { + "word": "corrupción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corruption", + "example_sentence_native": "La corrupción es un problema grave en muchos países.", + "example_sentence_english": "Corruption is a serious problem in many countries.", + "pos": "noun", + "word_frequency": 859 + }, + { + "word": "cruz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cross", + "example_sentence_native": "Llevaba un collar con una cruz de plata.", + "example_sentence_english": "She wore a necklace with a silver cross.", + "pos": "noun", + "word_frequency": 860 + }, + { + "word": "dormir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sleep", + "example_sentence_native": "Necesito dormir ocho horas cada noche.", + "example_sentence_english": "I need to sleep eight hours every night.", + "pos": "verb", + "word_frequency": 861 + }, + { + "word": "esperanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hope", + "example_sentence_native": "Siempre hay esperanza, incluso en los momentos difíciles.", + "example_sentence_english": "There is always hope, even in difficult times.", + "pos": "noun", + "word_frequency": 862 + }, + { + "word": "fiscal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiscal;tax;prosecutor", + "example_sentence_native": "El año fiscal termina en diciembre.", + "example_sentence_english": "The fiscal year ends in December.", + "pos": "adjective", + "word_frequency": 863 + }, + { + "word": "hermana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sister", + "example_sentence_native": "Mi hermana mayor vive en Madrid.", + "example_sentence_english": "My older sister lives in Madrid.", + "pos": "noun", + "word_frequency": 864 + }, + { + "word": "incluir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to include", + "example_sentence_native": "El precio incluye el desayuno.", + "example_sentence_english": "The price includes breakfast.", + "pos": "verb", + "word_frequency": 865 + }, + { + "word": "líder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leader", + "example_sentence_native": "Es un líder nato.", + "example_sentence_english": "He is a born leader.", + "pos": "noun", + "word_frequency": 867 + }, + { + "word": "rato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "while;short time", + "example_sentence_native": "Espera un rato, por favor.", + "example_sentence_english": "Wait a while, please.", + "pos": "noun", + "word_frequency": 868 + }, + { + "word": "tribunal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court;tribunal", + "example_sentence_native": "El caso será juzgado en el tribunal.", + "example_sentence_english": "The case will be judged in court.", + "pos": "noun", + "word_frequency": 869 + }, + { + "word": "acabar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to finish;to end", + "example_sentence_native": "Acabé mi tarea a tiempo.", + "example_sentence_english": "I finished my homework on time.", + "pos": "verb", + "word_frequency": 870 + }, + { + "word": "amar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to love", + "example_sentence_native": "Amar es un sentimiento profundo.", + "example_sentence_english": "To love is a deep feeling.", + "pos": "verb", + "word_frequency": 871 + }, + { + "word": "barrio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neighborhood;district", + "example_sentence_native": "Vivo en un barrio tranquilo.", + "example_sentence_english": "I live in a quiet neighborhood.", + "pos": "noun", + "word_frequency": 872 + }, + { + "word": "ciento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hundred;percent", + "example_sentence_native": "Cien por ciento de seguridad.", + "example_sentence_english": "One hundred percent security.", + "pos": "noun", + "word_frequency": 873 + }, + { + "word": "comercial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commercial", + "example_sentence_native": "Es un centro comercial muy grande.", + "example_sentence_english": "It's a very large commercial center.", + "pos": "adjective", + "word_frequency": 874 + }, + { + "word": "copa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glass;cup;trophy", + "example_sentence_native": "Me sirvió una copa de vino.", + "example_sentence_english": "He poured me a glass of wine.", + "pos": "noun", + "word_frequency": 875 + }, + { + "word": "exterior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exterior;foreign", + "example_sentence_native": "La pintura exterior de la casa es nueva.", + "example_sentence_english": "The exterior paint of the house is new.", + "pos": "adjective", + "word_frequency": 877 + }, + { + "word": "habitante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant", + "example_sentence_native": "La ciudad tiene un millón de habitantes.", + "example_sentence_english": "The city has a million inhabitants.", + "pos": "noun", + "word_frequency": 878 + }, + { + "word": "honor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honor", + "example_sentence_native": "Es un honor conocerte.", + "example_sentence_english": "It's an honor to meet you.", + "pos": "noun", + "word_frequency": 879 + }, + { + "word": "institución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institution", + "example_sentence_native": "La universidad es una institución educativa importante.", + "example_sentence_english": "The university is an important educational institution.", + "pos": "noun", + "word_frequency": 880 + }, + { + "word": "mejorar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to improve", + "example_sentence_native": "Necesito mejorar mi español.", + "example_sentence_english": "I need to improve my Spanish.", + "pos": "verb", + "word_frequency": 881 + }, + { + "word": "parque", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "park", + "example_sentence_native": "Vamos al parque a jugar.", + "example_sentence_english": "Let's go to the park to play.", + "pos": "noun", + "word_frequency": 883 + }, + { + "word": "triste", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sad", + "example_sentence_native": "Ella está triste hoy.", + "example_sentence_english": "She is sad today.", + "pos": "adjective", + "word_frequency": 884 + }, + { + "word": "contrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contract", + "example_sentence_native": "Firmamos el contrato ayer.", + "example_sentence_english": "We signed the contract yesterday.", + "pos": "noun", + "word_frequency": 885 + }, + { + "word": "debate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debate", + "example_sentence_native": "Hubo un debate interesante en la televisión.", + "example_sentence_english": "There was an interesting debate on television.", + "pos": "noun", + "word_frequency": 887 + }, + { + "word": "diseño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "design", + "example_sentence_native": "Me gusta el diseño de este coche.", + "example_sentence_english": "I like the design of this car.", + "pos": "noun", + "word_frequency": 888 + }, + { + "word": "electoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electoral", + "example_sentence_native": "La campaña electoral es muy intensa.", + "example_sentence_english": "The electoral campaign is very intense.", + "pos": "adjective", + "word_frequency": 889 + }, + { + "word": "hogar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "home", + "example_sentence_native": "Mi hogar es un lugar acogedor.", + "example_sentence_english": "My home is a cozy place.", + "pos": "noun", + "word_frequency": 890 + }, + { + "word": "mando", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remote control", + "example_sentence_native": "¿Dónde está el mando de la televisión?", + "example_sentence_english": "Where is the TV remote control?", + "pos": "noun", + "word_frequency": 891 + }, + { + "word": "niña", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girl", + "example_sentence_native": "La niña juega en el jardín.", + "example_sentence_english": "The girl plays in the garden.", + "pos": "noun", + "word_frequency": 892 + }, + { + "word": "recibir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to receive", + "example_sentence_native": "Recibí un regalo de cumpleaños.", + "example_sentence_english": "I received a birthday gift.", + "pos": "verb", + "word_frequency": 893 + }, + { + "word": "rojo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "red", + "example_sentence_native": "Me gusta el coche rojo.", + "example_sentence_english": "I like the red car.", + "pos": "adjective", + "word_frequency": 894 + }, + { + "word": "similar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "similar", + "example_sentence_native": "Nuestras ideas son muy similares.", + "example_sentence_english": "Our ideas are very similar.", + "pos": "adjective", + "word_frequency": 895 + }, + { + "word": "argentino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Argentine", + "example_sentence_native": "Él es un cantante argentino famoso.", + "example_sentence_english": "He is a famous Argentine singer.", + "pos": "adjective", + "word_frequency": 896 + }, + { + "word": "azul", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blue", + "example_sentence_native": "El cielo es azul.", + "example_sentence_english": "The sky is blue.", + "pos": "adjective", + "word_frequency": 897 + }, + { + "word": "carne", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meat", + "example_sentence_native": "No como carne roja.", + "example_sentence_english": "I don't eat red meat.", + "pos": "noun", + "word_frequency": 898 + }, + { + "word": "cumplir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fulfill", + "example_sentence_native": "Debemos cumplir nuestras promesas.", + "example_sentence_english": "We must fulfill our promises.", + "pos": "verb", + "word_frequency": 899 + }, + { + "word": "discurso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speech", + "example_sentence_native": "El presidente dio un discurso importante.", + "example_sentence_english": "The president gave an important speech.", + "pos": "noun", + "word_frequency": 900 + }, + { + "word": "encantar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to love (to be enchanted by)", + "example_sentence_native": "Me encanta el chocolate.", + "example_sentence_english": "I love chocolate.", + "pos": "verb", + "word_frequency": 901 + }, + { + "word": "entrevista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interview", + "example_sentence_native": "Tengo una entrevista de trabajo mañana.", + "example_sentence_english": "I have a job interview tomorrow.", + "pos": "noun", + "word_frequency": 902 + }, + { + "word": "estudiar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to study", + "example_sentence_native": "Necesito estudiar para el examen.", + "example_sentence_english": "I need to study for the exam.", + "pos": "verb", + "word_frequency": 903 + }, + { + "word": "expresión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expression", + "example_sentence_native": "Su expresión facial cambió.", + "example_sentence_english": "Her facial expression changed.", + "pos": "noun", + "word_frequency": 904 + }, + { + "word": "extraño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strange", + "example_sentence_native": "Es una situación muy extraña.", + "example_sentence_english": "It's a very strange situation.", + "pos": "adjective", + "word_frequency": 905 + }, + { + "word": "flor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "flower", + "example_sentence_native": "Me regaló una flor roja.", + "example_sentence_english": "He gave me a red flower.", + "pos": "noun", + "word_frequency": 906 + }, + { + "word": "funcionar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to work", + "example_sentence_native": "El coche no funciona bien.", + "example_sentence_english": "The car doesn't work well.", + "pos": "verb", + "word_frequency": 907 + }, + { + "word": "increíble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incredible", + "example_sentence_native": "La vista desde aquí es increíble.", + "example_sentence_english": "The view from here is incredible.", + "pos": "adjective", + "word_frequency": 909 + }, + { + "word": "inicio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beginning", + "example_sentence_native": "Al inicio del partido, llovió.", + "example_sentence_english": "At the beginning of the match, it rained.", + "pos": "noun", + "word_frequency": 910 + }, + { + "word": "juez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judge", + "example_sentence_native": "El juez dictó sentencia.", + "example_sentence_english": "The judge passed sentence.", + "pos": "noun", + "word_frequency": 911 + }, + { + "word": "maestro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "teacher", + "example_sentence_native": "Mi maestro de español es muy bueno.", + "example_sentence_english": "My Spanish teacher is very good.", + "pos": "noun", + "word_frequency": 912 + }, + { + "word": "marco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frame", + "example_sentence_native": "El cuadro necesita un nuevo marco.", + "example_sentence_english": "The painting needs a new frame.", + "pos": "noun", + "word_frequency": 913 + }, + { + "word": "materia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subject", + "example_sentence_native": "Mi materia favorita es la historia.", + "example_sentence_english": "My favorite subject is history.", + "pos": "noun", + "word_frequency": 914 + }, + { + "word": "oposición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposition", + "example_sentence_native": "La oposición criticó la nueva ley.", + "example_sentence_english": "The opposition criticized the new law.", + "pos": "noun", + "word_frequency": 915 + }, + { + "word": "registro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registration", + "example_sentence_native": "Necesitamos hacer el registro de entrada en el hotel.", + "example_sentence_english": "We need to do the check-in at the hotel.", + "pos": "noun", + "word_frequency": 916 + }, + { + "word": "teatro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "theater", + "example_sentence_native": "Vamos al teatro esta noche.", + "example_sentence_english": "We are going to the theater tonight.", + "pos": "noun", + "word_frequency": 917 + }, + { + "word": "vecino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neighbor", + "example_sentence_native": "Mi vecino es muy amable.", + "example_sentence_english": "My neighbor is very kind.", + "pos": "noun", + "word_frequency": 918 + }, + { + "word": "asamblea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly", + "example_sentence_native": "La asamblea votó la propuesta.", + "example_sentence_english": "The assembly voted on the proposal.", + "pos": "noun", + "word_frequency": 919 + }, + { + "word": "caja", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "box", + "example_sentence_native": "Pon los libros en la caja.", + "example_sentence_english": "Put the books in the box.", + "pos": "noun", + "word_frequency": 920 + }, + { + "word": "detalle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detail", + "example_sentence_native": "Me gusta el detalle de su trabajo.", + "example_sentence_english": "I like the detail of his work.", + "pos": "noun", + "word_frequency": 921 + }, + { + "word": "empleo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job;employment", + "example_sentence_native": "Busco un nuevo empleo.", + "example_sentence_english": "I am looking for a new job.", + "pos": "noun", + "word_frequency": 922 + }, + { + "word": "enfermedad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illness;disease", + "example_sentence_native": "La enfermedad se propagó rápidamente.", + "example_sentence_english": "The illness spread quickly.", + "pos": "noun", + "word_frequency": 923 + }, + { + "word": "escena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scene", + "example_sentence_native": "La escena final de la película fue emotiva.", + "example_sentence_english": "The final scene of the movie was emotional.", + "pos": "noun", + "word_frequency": 924 + }, + { + "word": "estructura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structure", + "example_sentence_native": "La estructura del edificio es muy sólida.", + "example_sentence_english": "The structure of the building is very solid.", + "pos": "noun", + "word_frequency": 925 + }, + { + "word": "golpe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hit;blow", + "example_sentence_native": "Recibió un fuerte golpe en la cabeza.", + "example_sentence_english": "He received a strong blow to the head.", + "pos": "noun", + "word_frequency": 927 + }, + { + "word": "grado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "degree;grade", + "example_sentence_native": "Tiene un alto grado de dificultad.", + "example_sentence_english": "It has a high degree of difficulty.", + "pos": "noun", + "word_frequency": 928 + }, + { + "word": "lleno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "full", + "example_sentence_native": "El vaso está lleno de agua.", + "example_sentence_english": "The glass is full of water.", + "pos": "adjective", + "word_frequency": 929 + }, + { + "word": "matrimonio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marriage", + "example_sentence_native": "Celebraron su matrimonio el sábado pasado.", + "example_sentence_english": "They celebrated their marriage last Saturday.", + "pos": "noun", + "word_frequency": 931 + }, + { + "word": "misión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mission", + "example_sentence_native": "Su misión es proteger la ciudad.", + "example_sentence_english": "His mission is to protect the city.", + "pos": "noun", + "word_frequency": 932 + }, + { + "word": "pan", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bread", + "example_sentence_native": "Quiero un poco de pan para el desayuno.", + "example_sentence_english": "I want some bread for breakfast.", + "pos": "noun", + "word_frequency": 933 + }, + { + "word": "participar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to participate", + "example_sentence_native": "Me gustaría participar en el proyecto.", + "example_sentence_english": "I would like to participate in the project.", + "pos": "verb", + "word_frequency": 934 + }, + { + "word": "peligro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "danger", + "example_sentence_native": "Hay peligro de incendio en el bosque.", + "example_sentence_english": "There is a danger of fire in the forest.", + "pos": "noun", + "word_frequency": 935 + }, + { + "word": "pelo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hair", + "example_sentence_native": "Tiene el pelo largo y rubio.", + "example_sentence_english": "She has long, blonde hair.", + "pos": "noun", + "word_frequency": 936 + }, + { + "word": "presión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressure", + "example_sentence_native": "Siento mucha presión en el trabajo.", + "example_sentence_english": "I feel a lot of pressure at work.", + "pos": "noun", + "word_frequency": 937 + }, + { + "word": "sección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "section", + "example_sentence_native": "Lee la sección de deportes del periódico.", + "example_sentence_english": "Read the sports section of the newspaper.", + "pos": "noun", + "word_frequency": 938 + }, + { + "word": "tercero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "third", + "example_sentence_native": "Él llegó en tercer lugar en la carrera.", + "example_sentence_english": "He came in third place in the race.", + "pos": "adjective", + "word_frequency": 940 + }, + { + "word": "amiga", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "friend (female)", + "example_sentence_native": "Mi mejor amiga viene a visitarme.", + "example_sentence_english": "My best friend is coming to visit me.", + "pos": "noun", + "word_frequency": 941 + }, + { + "word": "batalla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battle", + "example_sentence_native": "La batalla duró todo el día.", + "example_sentence_english": "The battle lasted all day.", + "pos": "noun", + "word_frequency": 942 + }, + { + "word": "café", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coffee;cafe", + "example_sentence_native": "Quiero una taza de café, por favor.", + "example_sentence_english": "I want a cup of coffee, please.", + "pos": "noun", + "word_frequency": 943 + }, + { + "word": "carácter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "character", + "example_sentence_native": "Tiene un carácter muy fuerte.", + "example_sentence_english": "He has a very strong character.", + "pos": "noun", + "word_frequency": 944 + }, + { + "word": "distinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distinct;different", + "example_sentence_native": "Cada persona tiene un punto de vista distinto.", + "example_sentence_english": "Each person has a different point of view.", + "pos": "adjective", + "word_frequency": 945 + }, + { + "word": "duro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hard;tough", + "example_sentence_native": "La piedra es muy dura.", + "example_sentence_english": "The stone is very hard.", + "pos": "adjective", + "word_frequency": 946 + }, + { + "word": "estación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "station;season", + "example_sentence_native": "La estación de tren está cerca.", + "example_sentence_english": "The train station is nearby.", + "pos": "noun", + "word_frequency": 948 + }, + { + "word": "evento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event", + "example_sentence_native": "El evento fue un éxito.", + "example_sentence_english": "The event was a success.", + "pos": "noun", + "word_frequency": 949 + }, + { + "word": "francés", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "French", + "example_sentence_native": "Habla francés muy bien.", + "example_sentence_english": "He speaks French very well.", + "pos": "adjective", + "word_frequency": 950 + }, + { + "word": "independiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independent", + "example_sentence_native": "Es una persona muy independiente.", + "example_sentence_english": "She is a very independent person.", + "pos": "adjective", + "word_frequency": 952 + }, + { + "word": "ingreso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income;entry", + "example_sentence_native": "Su ingreso mensual es alto.", + "example_sentence_english": "His monthly income is high.", + "pos": "noun", + "word_frequency": 953 + }, + { + "word": "intento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attempt", + "example_sentence_native": "Hizo un intento de escapar.", + "example_sentence_english": "He made an attempt to escape.", + "pos": "noun", + "word_frequency": 954 + }, + { + "word": "lunes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Monday", + "example_sentence_native": "Nos vemos el lunes.", + "example_sentence_english": "See you on Monday.", + "pos": "noun", + "word_frequency": 956 + }, + { + "word": "novia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "girlfriend;bride", + "example_sentence_native": "Mi novia y yo vamos al cine.", + "example_sentence_english": "My girlfriend and I are going to the cinema.", + "pos": "noun", + "word_frequency": 957 + }, + { + "word": "ofrecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to offer", + "example_sentence_native": "Le ofrecí mi ayuda.", + "example_sentence_english": "I offered him my help.", + "pos": "verb", + "word_frequency": 958 + }, + { + "word": "operación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operation", + "example_sentence_native": "La operación fue un éxito.", + "example_sentence_english": "The operation was a success.", + "pos": "noun", + "word_frequency": 959 + }, + { + "word": "papa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "potato", + "example_sentence_native": "Me gusta comer papas fritas.", + "example_sentence_english": "I like to eat french fries.", + "pos": "noun", + "word_frequency": 960 + }, + { + "word": "perdón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forgiveness", + "example_sentence_native": "Pido perdón por mi error.", + "example_sentence_english": "I ask for forgiveness for my mistake.", + "pos": "noun", + "word_frequency": 961 + }, + { + "word": "planta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "plant", + "example_sentence_native": "Tengo una planta en mi escritorio.", + "example_sentence_english": "I have a plant on my desk.", + "pos": "noun", + "word_frequency": 962 + }, + { + "word": "servir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to serve", + "example_sentence_native": "¿En qué puedo servirle?", + "example_sentence_english": "How can I help you?", + "pos": "verb", + "word_frequency": 963 + }, + { + "word": "teoría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theory", + "example_sentence_native": "Su teoría es muy interesante.", + "example_sentence_english": "His theory is very interesting.", + "pos": "noun", + "word_frequency": 964 + }, + { + "word": "baño", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bathroom", + "example_sentence_native": "¿Dónde está el baño?", + "example_sentence_english": "Where is the bathroom?", + "pos": "noun", + "word_frequency": 965 + }, + { + "word": "característica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic", + "example_sentence_native": "Una característica importante de este coche es su bajo consumo.", + "example_sentence_english": "An important feature of this car is its low consumption.", + "pos": "noun", + "word_frequency": 966 + }, + { + "word": "compañero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "companion", + "example_sentence_native": "Mi compañero de trabajo es muy amable.", + "example_sentence_english": "My coworker is very kind.", + "pos": "noun", + "word_frequency": 967 + }, + { + "word": "compra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "purchase", + "example_sentence_native": "Hice una gran compra en el supermercado.", + "example_sentence_english": "I made a big purchase at the supermarket.", + "pos": "noun", + "word_frequency": 968 + }, + { + "word": "concepto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concept", + "example_sentence_native": "Es un concepto difícil de entender.", + "example_sentence_english": "It's a difficult concept to understand.", + "pos": "noun", + "word_frequency": 969 + }, + { + "word": "dicha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happiness", + "example_sentence_native": "Le deseo mucha dicha en su nueva vida.", + "example_sentence_english": "I wish you much happiness in your new life.", + "pos": "noun", + "word_frequency": 970 + }, + { + "word": "diputado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy", + "example_sentence_native": "El diputado votó a favor de la nueva ley.", + "example_sentence_english": "The deputy voted in favor of the new law.", + "pos": "noun", + "word_frequency": 971 + }, + { + "word": "documento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "document", + "example_sentence_native": "Necesito firmar este documento.", + "example_sentence_english": "I need to sign this document.", + "pos": "noun", + "word_frequency": 972 + }, + { + "word": "enorme", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "enormous", + "example_sentence_native": "Tienen una casa enorme.", + "example_sentence_english": "They have an enormous house.", + "pos": "adjective", + "word_frequency": 973 + }, + { + "word": "exacto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exactly", + "example_sentence_native": "Eso es exactamente lo que quería decir.", + "example_sentence_english": "That's exactly what I wanted to say.", + "pos": "adverb", + "word_frequency": 974 + }, + { + "word": "festival", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "festival", + "example_sentence_native": "Vamos al festival de música este fin de semana.", + "example_sentence_english": "We are going to the music festival this weekend.", + "pos": "noun", + "word_frequency": 975 + }, + { + "word": "gobernador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governor", + "example_sentence_native": "El gobernador anunció nuevas medidas.", + "example_sentence_english": "The governor announced new measures.", + "pos": "noun", + "word_frequency": 976 + }, + { + "word": "hotel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hotel", + "example_sentence_native": "Nos alojamos en un hotel céntrico.", + "example_sentence_english": "We stayed in a downtown hotel.", + "pos": "noun", + "word_frequency": 977 + }, + { + "word": "lograr", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to achieve", + "example_sentence_native": "Logró terminar el proyecto a tiempo.", + "example_sentence_english": "He managed to finish the project on time.", + "pos": "verb", + "word_frequency": 979 + }, + { + "word": "matar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to kill", + "example_sentence_native": "No debes matar insectos sin razón.", + "example_sentence_english": "You shouldn't kill insects without reason.", + "pos": "verb", + "word_frequency": 980 + }, + { + "word": "ocurrir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen", + "example_sentence_native": "¿Qué ocurrió anoche?", + "example_sentence_english": "What happened last night?", + "pos": "verb", + "word_frequency": 981 + }, + { + "word": "período", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period", + "example_sentence_native": "Fue un período difícil para todos.", + "example_sentence_english": "It was a difficult period for everyone.", + "pos": "noun", + "word_frequency": 982 + }, + { + "word": "piel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skin", + "example_sentence_native": "Su piel es muy suave.", + "example_sentence_english": "Her skin is very soft.", + "pos": "noun", + "word_frequency": 983 + }, + { + "word": "raro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strange", + "example_sentence_native": "Es una situación muy rara.", + "example_sentence_english": "It's a very strange situation.", + "pos": "adjective", + "word_frequency": 984 + }, + { + "word": "responsable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "responsible", + "example_sentence_native": "Él es responsable de sus acciones.", + "example_sentence_english": "He is responsible for his actions.", + "pos": "adjective", + "word_frequency": 985 + }, + { + "word": "tamaño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "size", + "example_sentence_native": "¿Qué tamaño de camisa necesitas?", + "example_sentence_english": "What size shirt do you need?", + "pos": "noun", + "word_frequency": 987 + }, + { + "word": "abierto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "open", + "example_sentence_native": "La tienda está abierta hasta las nueve.", + "example_sentence_english": "The store is open until nine.", + "pos": "adjective", + "word_frequency": 988 + }, + { + "word": "afuera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "outside", + "example_sentence_native": "Vamos a comer afuera.", + "example_sentence_english": "Let's eat outside.", + "pos": "adverb", + "word_frequency": 989 + }, + { + "word": "clave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "key", + "example_sentence_native": "La clave del éxito es la perseverancia.", + "example_sentence_english": "The key to success is perseverance.", + "pos": "noun", + "word_frequency": 991 + }, + { + "word": "compartir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to share", + "example_sentence_native": "Me gusta compartir mis ideas.", + "example_sentence_english": "I like to share my ideas.", + "pos": "verb", + "word_frequency": 992 + }, + { + "word": "considerar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consider", + "example_sentence_native": "Debemos considerar todas las opciones.", + "example_sentence_english": "We must consider all options.", + "pos": "verb", + "word_frequency": 993 + }, + { + "word": "crítica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criticism", + "example_sentence_native": "La película recibió buenas críticas.", + "example_sentence_english": "The movie received good reviews.", + "pos": "noun", + "word_frequency": 994 + }, + { + "word": "demanda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demand", + "example_sentence_native": "La demanda de este producto ha aumentado.", + "example_sentence_english": "The demand for this product has increased.", + "pos": "noun", + "word_frequency": 995 + }, + { + "word": "diverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diverse", + "example_sentence_native": "Ofrecen una gama diversa de productos.", + "example_sentence_english": "They offer a diverse range of products.", + "pos": "adjective", + "word_frequency": 996 + }, + { + "word": "jugador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "player", + "example_sentence_native": "Es un jugador de fútbol muy talentoso.", + "example_sentence_english": "He is a very talented soccer player.", + "pos": "noun", + "word_frequency": 998 + }, + { + "word": "luna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moon", + "example_sentence_native": "La luna llena es hermosa.", + "example_sentence_english": "The full moon is beautiful.", + "pos": "noun", + "word_frequency": 999 + }, + { + "word": "personaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character", + "example_sentence_native": "El personaje principal de la novela es muy interesante.", + "example_sentence_english": "The main character of the novel is very interesting.", + "pos": "noun", + "word_frequency": 1000 + }, + { + "word": "piso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apartment", + "example_sentence_native": "Vivo en un piso pequeño en el centro.", + "example_sentence_english": "I live in a small apartment in the center.", + "pos": "noun", + "word_frequency": 1001 + }, + { + "word": "pro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pro;advantage", + "example_sentence_native": "Una de las pros de este trabajo es la flexibilidad.", + "example_sentence_english": "One of the pros of this job is the flexibility.", + "pos": "noun", + "word_frequency": 1002 + }, + { + "word": "quizá", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perhaps;maybe", + "example_sentence_native": "Quizá llueva mañana.", + "example_sentence_english": "Perhaps it will rain tomorrow.", + "pos": "adverb", + "word_frequency": 1003 + }, + { + "word": "recién", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently;just", + "example_sentence_native": "Recién llegué a casa.", + "example_sentence_english": "I just arrived home.", + "pos": "adverb", + "word_frequency": 1004 + }, + { + "word": "reina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "queen", + "example_sentence_native": "La reina visitó la ciudad.", + "example_sentence_english": "The queen visited the city.", + "pos": "noun", + "word_frequency": 1005 + }, + { + "word": "representar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to represent", + "example_sentence_native": "Este símbolo representa la paz.", + "example_sentence_english": "This symbol represents peace.", + "pos": "verb", + "word_frequency": 1006 + }, + { + "word": "salvo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safe (as in 'a salvo')", + "example_sentence_native": "Los niños están a salvo en casa.", + "example_sentence_english": "The children are safe at home.", + "pos": "adverb", + "word_frequency": 1007 + }, + { + "word": "sábado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday", + "example_sentence_native": "El sábado vamos al parque.", + "example_sentence_english": "On Saturday we are going to the park.", + "pos": "noun", + "word_frequency": 1008 + }, + { + "word": "velocidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed", + "example_sentence_native": "La velocidad máxima es de 120 km/h.", + "example_sentence_english": "The maximum speed is 120 km/h.", + "pos": "noun", + "word_frequency": 1009 + }, + { + "word": "visión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vision;view", + "example_sentence_native": "Tengo una visión clara de lo que quiero.", + "example_sentence_english": "I have a clear vision of what I want.", + "pos": "noun", + "word_frequency": 1010 + }, + { + "word": "alcalde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mayor", + "example_sentence_native": "El alcalde anunció nuevas medidas.", + "example_sentence_english": "The mayor announced new measures.", + "pos": "noun", + "word_frequency": 1011 + }, + { + "word": "altura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "height", + "example_sentence_native": "La altura de la montaña es impresionante.", + "example_sentence_english": "The height of the mountain is impressive.", + "pos": "noun", + "word_frequency": 1012 + }, + { + "word": "candidato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candidate", + "example_sentence_native": "Es un buen candidato para el puesto.", + "example_sentence_english": "He is a good candidate for the position.", + "pos": "noun", + "word_frequency": 1013 + }, + { + "word": "competencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition;competence", + "example_sentence_native": "Hay mucha competencia en el mercado.", + "example_sentence_english": "There is a lot of competition in the market.", + "pos": "noun", + "word_frequency": 1014 + }, + { + "word": "debajo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "underneath;below", + "example_sentence_native": "El libro está debajo de la mesa.", + "example_sentence_english": "The book is underneath the table.", + "pos": "adverb", + "word_frequency": 1015 + }, + { + "word": "facultad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faculty;ability", + "example_sentence_native": "Estudio en la facultad de derecho.", + "example_sentence_english": "I study at the law faculty.", + "pos": "noun", + "word_frequency": 1016 + }, + { + "word": "generación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generation", + "example_sentence_native": "Cada generación tiene sus propios desafíos.", + "example_sentence_english": "Each generation has its own challenges.", + "pos": "noun", + "word_frequency": 1017 + }, + { + "word": "gestión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management;administration", + "example_sentence_native": "La gestión del proyecto fue excelente.", + "example_sentence_english": "The project management was excellent.", + "pos": "noun", + "word_frequency": 1018 + }, + { + "word": "menudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small", + "example_sentence_native": "Es un hombre menudo, pero fuerte.", + "example_sentence_english": "He is a small man, but strong.", + "pos": "adjective", + "word_frequency": 1019 + }, + { + "word": "presupuesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "budget", + "example_sentence_native": "Necesitamos ajustar el presupuesto.", + "example_sentence_english": "We need to adjust the budget.", + "pos": "noun", + "word_frequency": 1020 + }, + { + "word": "querido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dear;beloved", + "example_sentence_native": "Mi querido amigo, ¿cómo estás?", + "example_sentence_english": "My dear friend, how are you?", + "pos": "adjective", + "word_frequency": 1021 + }, + { + "word": "sonar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sound;to ring", + "example_sentence_native": "El teléfono está sonando.", + "example_sentence_english": "The phone is ringing.", + "pos": "verb", + "word_frequency": 1022 + }, + { + "word": "suponer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suppose;to assume", + "example_sentence_native": "Supongo que tienes razón.", + "example_sentence_english": "I suppose you are right.", + "pos": "verb", + "word_frequency": 1023 + }, + { + "word": "abogado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lawyer", + "example_sentence_native": "Necesito hablar con mi abogado.", + "example_sentence_english": "I need to speak with my lawyer.", + "pos": "noun", + "word_frequency": 1024 + }, + { + "word": "abrir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to open", + "example_sentence_native": "Por favor, abre la puerta.", + "example_sentence_english": "Please, open the door.", + "pos": "verb", + "word_frequency": 1025 + }, + { + "word": "andar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to walk;to go", + "example_sentence_native": "Me gusta andar por el parque.", + "example_sentence_english": "I like to walk in the park.", + "pos": "verb", + "word_frequency": 1026 + }, + { + "word": "antiguo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "old;ancient", + "example_sentence_native": "Compramos una casa antigua.", + "example_sentence_english": "We bought an old house.", + "pos": "adjective", + "word_frequency": 1027 + }, + { + "word": "bastar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be enough;to suffice", + "example_sentence_native": "Con eso basta.", + "example_sentence_english": "That's enough.", + "pos": "verb", + "word_frequency": 1028 + }, + { + "word": "carga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "load;burden;charge", + "example_sentence_native": "La carga del camión es muy pesada.", + "example_sentence_english": "The truck's load is very heavy.", + "pos": "noun", + "word_frequency": 1029 + }, + { + "word": "cita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appointment;date;quote", + "example_sentence_native": "Tengo una cita con el médico.", + "example_sentence_english": "I have an appointment with the doctor.", + "pos": "noun", + "word_frequency": 1030 + }, + { + "word": "consumo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumption", + "example_sentence_native": "El consumo de energía ha aumentado.", + "example_sentence_english": "Energy consumption has increased.", + "pos": "noun", + "word_frequency": 1031 + }, + { + "word": "contexto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "context", + "example_sentence_native": "Es importante entender el contexto.", + "example_sentence_english": "It's important to understand the context.", + "pos": "noun", + "word_frequency": 1032 + }, + { + "word": "correo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mail;email", + "example_sentence_native": "Revisa tu correo electrónico.", + "example_sentence_english": "Check your email.", + "pos": "noun", + "word_frequency": 1033 + }, + { + "word": "culo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "butt;ass", + "example_sentence_native": "Se cayó de culo.", + "example_sentence_english": "He fell on his butt.", + "pos": "noun", + "word_frequency": 1034 + }, + { + "word": "ejercicio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exercise;drill", + "example_sentence_native": "Hago ejercicio todos los días.", + "example_sentence_english": "I do exercise every day.", + "pos": "noun", + "word_frequency": 1035 + }, + { + "word": "elegir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to choose;to elect", + "example_sentence_native": "Tienes que elegir una opción.", + "example_sentence_english": "You have to choose an option.", + "pos": "verb", + "word_frequency": 1036 + }, + { + "word": "figura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figure;shape;person", + "example_sentence_native": "Es una figura importante en la política.", + "example_sentence_english": "He is an important figure in politics.", + "pos": "noun", + "word_frequency": 1037 + }, + { + "word": "genial", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great;brilliant;awesome", + "example_sentence_native": "¡Qué idea tan genial!", + "example_sentence_english": "What a great idea!", + "pos": "adjective", + "word_frequency": 1038 + }, + { + "word": "municipal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "municipal", + "example_sentence_native": "El ayuntamiento gestiona los servicios municipales.", + "example_sentence_english": "The city council manages the municipal services.", + "pos": "adjective", + "word_frequency": 1039 + }, + { + "word": "nueve", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nine", + "example_sentence_native": "Tengo nueve libros.", + "example_sentence_english": "I have nine books.", + "pos": "noun", + "word_frequency": 1040 + }, + { + "word": "objeto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "object", + "example_sentence_native": "Este objeto es muy antiguo.", + "example_sentence_english": "This object is very old.", + "pos": "noun", + "word_frequency": 1041 + }, + { + "word": "publicación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publication", + "example_sentence_native": "La publicación del libro fue un éxito.", + "example_sentence_english": "The publication of the book was a success.", + "pos": "noun", + "word_frequency": 1042 + }, + { + "word": "tratamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treatment", + "example_sentence_native": "El médico recomendó un nuevo tratamiento.", + "example_sentence_english": "The doctor recommended a new treatment.", + "pos": "noun", + "word_frequency": 1043 + }, + { + "word": "villa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villa", + "example_sentence_native": "Pasamos las vacaciones en una villa en la costa.", + "example_sentence_english": "We spent the holidays in a villa on the coast.", + "pos": "noun", + "word_frequency": 1044 + }, + { + "word": "calor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heat", + "example_sentence_native": "Hace mucho calor hoy.", + "example_sentence_english": "It's very hot today.", + "pos": "noun", + "word_frequency": 1045 + }, + { + "word": "conciencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscience", + "example_sentence_native": "Es importante tener conciencia social.", + "example_sentence_english": "It's important to have social awareness.", + "pos": "noun", + "word_frequency": 1046 + }, + { + "word": "cárcel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prison", + "example_sentence_native": "Fue condenado a cinco años de cárcel.", + "example_sentence_english": "He was sentenced to five years in prison.", + "pos": "noun", + "word_frequency": 1047 + }, + { + "word": "digital", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digital", + "example_sentence_native": "Necesito una copia digital del documento.", + "example_sentence_english": "I need a digital copy of the document.", + "pos": "adjective", + "word_frequency": 1048 + }, + { + "word": "distrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "district", + "example_sentence_native": "Vivo en el distrito financiero de la ciudad.", + "example_sentence_english": "I live in the financial district of the city.", + "pos": "noun", + "word_frequency": 1049 + }, + { + "word": "familiar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "familiar", + "example_sentence_native": "Su cara me resulta familiar.", + "example_sentence_english": "His face looks familiar to me.", + "pos": "adjective", + "word_frequency": 1050 + }, + { + "word": "fundación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation", + "example_sentence_native": "La fundación apoya proyectos educativos.", + "example_sentence_english": "The foundation supports educational projects.", + "pos": "noun", + "word_frequency": 1051 + }, + { + "word": "histórico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "historic", + "example_sentence_native": "Es un edificio histórico muy importante.", + "example_sentence_english": "It's a very important historic building.", + "pos": "adjective", + "word_frequency": 1052 + }, + { + "word": "intención", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intention", + "example_sentence_native": "No fue mi intención ofenderte.", + "example_sentence_english": "It was not my intention to offend you.", + "pos": "noun", + "word_frequency": 1053 + }, + { + "word": "junta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "board", + "example_sentence_native": "La junta directiva se reúne mañana.", + "example_sentence_english": "The board of directors meets tomorrow.", + "pos": "noun", + "word_frequency": 1054 + }, + { + "word": "listo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ready", + "example_sentence_native": "¿Estás listo para salir?", + "example_sentence_english": "Are you ready to leave?", + "pos": "adjective", + "word_frequency": 1055 + }, + { + "word": "máximo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maximum", + "example_sentence_native": "Alcanzamos la velocidad máxima permitida.", + "example_sentence_english": "We reached the maximum allowed speed.", + "pos": "adjective", + "word_frequency": 1057 + }, + { + "word": "ocasión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasion", + "example_sentence_native": "Fue una ocasión especial para todos.", + "example_sentence_english": "It was a special occasion for everyone.", + "pos": "noun", + "word_frequency": 1058 + }, + { + "word": "piedra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stone", + "example_sentence_native": "Encontré una piedra bonita en la playa.", + "example_sentence_english": "I found a beautiful stone on the beach.", + "pos": "noun", + "word_frequency": 1060 + }, + { + "word": "privado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "private", + "example_sentence_native": "Es un asunto privado.", + "example_sentence_english": "It's a private matter.", + "pos": "adjective", + "word_frequency": 1061 + }, + { + "word": "propósito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purpose", + "example_sentence_native": "¿Cuál es el propósito de tu visita?", + "example_sentence_english": "What is the purpose of your visit?", + "pos": "noun", + "word_frequency": 1062 + }, + { + "word": "regla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rule", + "example_sentence_native": "Debemos seguir las reglas.", + "example_sentence_english": "We must follow the rules.", + "pos": "noun", + "word_frequency": 1063 + }, + { + "word": "secretario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretary", + "example_sentence_native": "El secretario tomó notas de la reunión.", + "example_sentence_english": "The secretary took notes of the meeting.", + "pos": "noun", + "word_frequency": 1064 + }, + { + "word": "sede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headquarters", + "example_sentence_native": "La sede de la empresa está en Madrid.", + "example_sentence_english": "The company's headquarters are in Madrid.", + "pos": "noun", + "word_frequency": 1065 + }, + { + "word": "soldado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soldier", + "example_sentence_native": "El soldado regresó a casa después de la guerra.", + "example_sentence_english": "The soldier returned home after the war.", + "pos": "noun", + "word_frequency": 1066 + }, + { + "word": "técnica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technique", + "example_sentence_native": "Aprendió una nueva técnica de pintura.", + "example_sentence_english": "She learned a new painting technique.", + "pos": "noun", + "word_frequency": 1067 + }, + { + "word": "aeropuerto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airport", + "example_sentence_native": "Nos vemos en el aeropuerto.", + "example_sentence_english": "See you at the airport.", + "pos": "noun", + "word_frequency": 1068 + }, + { + "word": "cadena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chain", + "example_sentence_native": "La bicicleta tiene una cadena rota.", + "example_sentence_english": "The bicycle has a broken chain.", + "pos": "noun", + "word_frequency": 1070 + }, + { + "word": "capitán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain", + "example_sentence_native": "El capitán dio la orden de zarpar.", + "example_sentence_english": "The captain gave the order to set sail.", + "pos": "noun", + "word_frequency": 1071 + }, + { + "word": "continuación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuation", + "example_sentence_native": "La historia tendrá una continuación.", + "example_sentence_english": "The story will have a continuation.", + "pos": "noun", + "word_frequency": 1072 + }, + { + "word": "delante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in front", + "example_sentence_native": "El coche de policía está delante de nosotros.", + "example_sentence_english": "The police car is in front of us.", + "pos": "adverb", + "word_frequency": 1073 + }, + { + "word": "europeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "European", + "example_sentence_native": "Es un ciudadano europeo.", + "example_sentence_english": "He is a European citizen.", + "pos": "adjective", + "word_frequency": 1074 + }, + { + "word": "influencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influence", + "example_sentence_native": "Su influencia en la política es innegable.", + "example_sentence_english": "His influence in politics is undeniable.", + "pos": "noun", + "word_frequency": 1076 + }, + { + "word": "judicial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judicial", + "example_sentence_native": "El proceso judicial fue largo.", + "example_sentence_english": "The judicial process was long.", + "pos": "adjective", + "word_frequency": 1077 + }, + { + "word": "lenguaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "language", + "example_sentence_native": "El lenguaje es una herramienta de comunicación.", + "example_sentence_english": "Language is a communication tool.", + "pos": "noun", + "word_frequency": 1078 + }, + { + "word": "literatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "literature", + "example_sentence_native": "Le gusta mucho la literatura clásica.", + "example_sentence_english": "He really likes classical literature.", + "pos": "noun", + "word_frequency": 1079 + }, + { + "word": "mexicano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mexican", + "example_sentence_native": "Mi amigo es mexicano.", + "example_sentence_english": "My friend is Mexican.", + "pos": "adjective", + "word_frequency": 1080 + }, + { + "word": "online", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "online", + "example_sentence_native": "Hago mis compras online.", + "example_sentence_english": "I do my shopping online.", + "pos": "adjective", + "word_frequency": 1081 + }, + { + "word": "saludo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "greeting", + "example_sentence_native": "Envió un saludo a todos.", + "example_sentence_english": "He sent a greeting to everyone.", + "pos": "noun", + "word_frequency": 1082 + }, + { + "word": "actitud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attitude", + "example_sentence_native": "Tiene una actitud muy positiva.", + "example_sentence_english": "He has a very positive attitude.", + "pos": "noun", + "word_frequency": 1083 + }, + { + "word": "basura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trash;garbage", + "example_sentence_native": "Por favor, saca la basura.", + "example_sentence_english": "Please take out the trash.", + "pos": "noun", + "word_frequency": 1084 + }, + { + "word": "búsqueda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "search", + "example_sentence_native": "La búsqueda del tesoro fue emocionante.", + "example_sentence_english": "The treasure search was exciting.", + "pos": "noun", + "word_frequency": 1085 + }, + { + "word": "coche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car", + "example_sentence_native": "Mi coche es rojo.", + "example_sentence_english": "My car is red.", + "pos": "noun", + "word_frequency": 1086 + }, + { + "word": "corto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "short", + "example_sentence_native": "El camino es muy corto.", + "example_sentence_english": "The path is very short.", + "pos": "adjective", + "word_frequency": 1087 + }, + { + "word": "espíritu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirit", + "example_sentence_native": "Tiene un espíritu aventurero.", + "example_sentence_english": "He has an adventurous spirit.", + "pos": "noun", + "word_frequency": 1089 + }, + { + "word": "existencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existence", + "example_sentence_native": "La existencia de vida en otros planetas es un misterio.", + "example_sentence_english": "The existence of life on other planets is a mystery.", + "pos": "noun", + "word_frequency": 1090 + }, + { + "word": "frontera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "border;frontier", + "example_sentence_native": "Cruzamos la frontera ayer.", + "example_sentence_english": "We crossed the border yesterday.", + "pos": "noun", + "word_frequency": 1091 + }, + { + "word": "idioma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "language", + "example_sentence_native": "El español es un idioma hermoso.", + "example_sentence_english": "Spanish is a beautiful language.", + "pos": "noun", + "word_frequency": 1092 + }, + { + "word": "leche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "milk", + "example_sentence_native": "Me gusta el café con leche.", + "example_sentence_english": "I like coffee with milk.", + "pos": "noun", + "word_frequency": 1093 + }, + { + "word": "planeta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "planet", + "example_sentence_native": "La Tierra es un planeta.", + "example_sentence_english": "Earth is a planet.", + "pos": "noun", + "word_frequency": 1095 + }, + { + "word": "pobreza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poverty", + "example_sentence_native": "La pobreza es un problema global.", + "example_sentence_english": "Poverty is a global problem.", + "pos": "noun", + "word_frequency": 1096 + }, + { + "word": "sexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexual", + "example_sentence_native": "La educación sexual es importante.", + "example_sentence_english": "Sexual education is important.", + "pos": "adjective", + "word_frequency": 1097 + }, + { + "word": "super", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "super;very", + "example_sentence_native": "La película fue super interesante.", + "example_sentence_english": "The movie was super interesting.", + "pos": "adjective", + "word_frequency": 1098 + }, + { + "word": "tienda", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shop;store", + "example_sentence_native": "Voy a la tienda a comprar pan.", + "example_sentence_english": "I'm going to the store to buy bread.", + "pos": "noun", + "word_frequency": 1099 + }, + { + "word": "vacación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vacation", + "example_sentence_native": "Necesito una vacación.", + "example_sentence_english": "I need a vacation.", + "pos": "noun", + "word_frequency": 1100 + }, + { + "word": "belleza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beauty", + "example_sentence_native": "La belleza de la naturaleza es asombrosa.", + "example_sentence_english": "The beauty of nature is amazing.", + "pos": "noun", + "word_frequency": 1101 + }, + { + "word": "blog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blog", + "example_sentence_native": "Escribo en mi blog todos los días.", + "example_sentence_english": "I write on my blog every day.", + "pos": "noun", + "word_frequency": 1102 + }, + { + "word": "construir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to build", + "example_sentence_native": "Vamos a construir una casa nueva.", + "example_sentence_english": "We are going to build a new house.", + "pos": "verb", + "word_frequency": 1103 + }, + { + "word": "declaración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declaration;statement", + "example_sentence_native": "Hizo una declaración importante.", + "example_sentence_english": "He made an important statement.", + "pos": "noun", + "word_frequency": 1105 + }, + { + "word": "empleado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employee", + "example_sentence_native": "Es un empleado muy dedicado.", + "example_sentence_english": "He is a very dedicated employee.", + "pos": "noun", + "word_frequency": 1106 + }, + { + "word": "estadounidense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "American (from the United States)", + "example_sentence_native": "Mi vecino es estadounidense.", + "example_sentence_english": "My neighbor is American.", + "pos": "adjective", + "word_frequency": 1107 + }, + { + "word": "estatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state (adj.);governmental", + "example_sentence_native": "La educación estatal es gratuita.", + "example_sentence_english": "State education is free.", + "pos": "adjective", + "word_frequency": 1108 + }, + { + "word": "león", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lion", + "example_sentence_native": "El león es el rey de la selva.", + "example_sentence_english": "The lion is the king of the jungle.", + "pos": "noun", + "word_frequency": 1111 + }, + { + "word": "mínimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimum;minimal", + "example_sentence_native": "Necesitamos un esfuerzo mínimo.", + "example_sentence_english": "We need a minimum effort.", + "pos": "adjective", + "word_frequency": 1112 + }, + { + "word": "pantalla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screen", + "example_sentence_native": "La pantalla de mi teléfono está rota.", + "example_sentence_english": "My phone screen is broken.", + "pos": "noun", + "word_frequency": 1114 + }, + { + "word": "papá", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dad;father", + "example_sentence_native": "Mi papá es muy amable.", + "example_sentence_english": "My dad is very kind.", + "pos": "noun", + "word_frequency": 1115 + }, + { + "word": "perfil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profile", + "example_sentence_native": "Actualicé mi perfil en línea.", + "example_sentence_english": "I updated my online profile.", + "pos": "noun", + "word_frequency": 1116 + }, + { + "word": "periodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period", + "example_sentence_native": "Fue un periodo difícil de mi vida.", + "example_sentence_english": "It was a difficult period of my life.", + "pos": "noun", + "word_frequency": 1117 + }, + { + "word": "tarea", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "task;homework", + "example_sentence_native": "Tengo mucha tarea para mañana.", + "example_sentence_english": "I have a lot of homework for tomorrow.", + "pos": "noun", + "word_frequency": 1118 + }, + { + "word": "tratado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treaty;treatise", + "example_sentence_native": "Firmaron un tratado de paz.", + "example_sentence_english": "They signed a peace treaty.", + "pos": "noun", + "word_frequency": 1119 + }, + { + "word": "artista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "artist", + "example_sentence_native": "El artista pintó un hermoso cuadro.", + "example_sentence_english": "The artist painted a beautiful picture.", + "pos": "noun", + "word_frequency": 1121 + }, + { + "word": "aspecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aspect", + "example_sentence_native": "Consideramos todos los aspectos del problema.", + "example_sentence_english": "We considered all aspects of the problem.", + "pos": "noun", + "word_frequency": 1122 + }, + { + "word": "caer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fall", + "example_sentence_native": "No quiero caer por las escaleras.", + "example_sentence_english": "I don't want to fall down the stairs.", + "pos": "verb", + "word_frequency": 1123 + }, + { + "word": "crédito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credit", + "example_sentence_native": "Necesito un crédito para comprar una casa.", + "example_sentence_english": "I need credit to buy a house.", + "pos": "noun", + "word_frequency": 1124 + }, + { + "word": "costar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cost", + "example_sentence_native": "¿Cuánto cuesta este libro?", + "example_sentence_english": "How much does this book cost?", + "pos": "verb", + "word_frequency": 1125 + }, + { + "word": "depender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depend", + "example_sentence_native": "Todo depende de la situación.", + "example_sentence_english": "Everything depends on the situation.", + "pos": "verb", + "word_frequency": 1126 + }, + { + "word": "distribución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution", + "example_sentence_native": "La distribución de los productos es eficiente.", + "example_sentence_english": "The distribution of products is efficient.", + "pos": "noun", + "word_frequency": 1127 + }, + { + "word": "gas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gas", + "example_sentence_native": "Necesitamos más gas para la cocina.", + "example_sentence_english": "We need more gas for the kitchen.", + "pos": "noun", + "word_frequency": 1128 + }, + { + "word": "grave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serious", + "example_sentence_native": "Es una situación muy grave.", + "example_sentence_english": "It's a very serious situation.", + "pos": "adjective", + "word_frequency": 1129 + }, + { + "word": "identidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identity", + "example_sentence_native": "Ella busca su verdadera identidad.", + "example_sentence_english": "She is searching for her true identity.", + "pos": "noun", + "word_frequency": 1130 + }, + { + "word": "inteligencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intelligence", + "example_sentence_native": "La inteligencia artificial avanza rápidamente.", + "example_sentence_english": "Artificial intelligence is advancing rapidly.", + "pos": "noun", + "word_frequency": 1131 + }, + { + "word": "inversión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "example_sentence_native": "Hicimos una gran inversión en la empresa.", + "example_sentence_english": "We made a large investment in the company.", + "pos": "noun", + "word_frequency": 1132 + }, + { + "word": "mirada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaze", + "example_sentence_native": "Su mirada era profunda y sincera.", + "example_sentence_english": "His gaze was deep and sincere.", + "pos": "noun", + "word_frequency": 1133 + }, + { + "word": "pedido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "order", + "example_sentence_native": "El pedido llegará en dos días.", + "example_sentence_english": "The order will arrive in two days.", + "pos": "noun", + "word_frequency": 1135 + }, + { + "word": "playa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beach", + "example_sentence_native": "Vamos a la playa este fin de semana.", + "example_sentence_english": "We are going to the beach this weekend.", + "pos": "noun", + "word_frequency": 1136 + }, + { + "word": "promedio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "average", + "example_sentence_native": "El promedio de edad es de 30 años.", + "example_sentence_english": "The average age is 30 years.", + "pos": "noun", + "word_frequency": 1137 + }, + { + "word": "pérdida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loss", + "example_sentence_native": "La empresa reportó una gran pérdida.", + "example_sentence_english": "The company reported a large loss.", + "pos": "noun", + "word_frequency": 1138 + }, + { + "word": "resistencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance", + "example_sentence_native": "Mostró mucha resistencia al cambio.", + "example_sentence_english": "He showed a lot of resistance to change.", + "pos": "noun", + "word_frequency": 1139 + }, + { + "word": "terreno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "land", + "example_sentence_native": "Compramos un terreno para construir una casa.", + "example_sentence_english": "We bought some land to build a house.", + "pos": "noun", + "word_frequency": 1141 + }, + { + "word": "voluntad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will", + "example_sentence_native": "Tiene una fuerte voluntad para lograr sus metas.", + "example_sentence_english": "He has a strong will to achieve his goals.", + "pos": "noun", + "word_frequency": 1143 + }, + { + "word": "votar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vote", + "example_sentence_native": "Es importante votar en las elecciones.", + "example_sentence_english": "It is important to vote in elections.", + "pos": "verb", + "word_frequency": 1144 + }, + { + "word": "aceptar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to accept", + "example_sentence_native": "Ella decidió aceptar la oferta de trabajo.", + "example_sentence_english": "She decided to accept the job offer.", + "pos": "verb", + "word_frequency": 1145 + }, + { + "word": "asesinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murder", + "example_sentence_native": "La policía investiga el asesinato.", + "example_sentence_english": "The police are investigating the murder.", + "pos": "noun", + "word_frequency": 1146 + }, + { + "word": "cocina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kitchen", + "example_sentence_native": "La cocina está limpia y ordenada.", + "example_sentence_english": "The kitchen is clean and tidy.", + "pos": "noun", + "word_frequency": 1147 + }, + { + "word": "comité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "committee", + "example_sentence_native": "El comité se reunirá mañana.", + "example_sentence_english": "The committee will meet tomorrow.", + "pos": "noun", + "word_frequency": 1148 + }, + { + "word": "conflicto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conflict", + "example_sentence_native": "Hubo un conflicto de intereses.", + "example_sentence_english": "There was a conflict of interest.", + "pos": "noun", + "word_frequency": 1149 + }, + { + "word": "consecuencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequence", + "example_sentence_native": "Cada acción tiene su consecuencia.", + "example_sentence_english": "Every action has its consequence.", + "pos": "noun", + "word_frequency": 1150 + }, + { + "word": "correcto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "correct", + "example_sentence_native": "Tu respuesta es correcta.", + "example_sentence_english": "Your answer is correct.", + "pos": "adjective", + "word_frequency": 1151 + }, + { + "word": "dulce", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sweet", + "example_sentence_native": "Me gusta el sabor dulce de la fruta.", + "example_sentence_english": "I like the sweet taste of the fruit.", + "pos": "adjective", + "word_frequency": 1152 + }, + { + "word": "explicar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to explain", + "example_sentence_native": "Por favor, explícame cómo funciona.", + "example_sentence_english": "Please explain to me how it works.", + "pos": "verb", + "word_frequency": 1153 + }, + { + "word": "física", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physics", + "example_sentence_native": "Estudio física en la universidad.", + "example_sentence_english": "I study physics at the university.", + "pos": "noun", + "word_frequency": 1154 + }, + { + "word": "impuesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax", + "example_sentence_native": "El impuesto sobre la renta es alto.", + "example_sentence_english": "Income tax is high.", + "pos": "noun", + "word_frequency": 1155 + }, + { + "word": "inmediatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediately", + "example_sentence_native": "Necesito tu ayuda inmediatamente.", + "example_sentence_english": "I need your help immediately.", + "pos": "adverb", + "word_frequency": 1156 + }, + { + "word": "jueves", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Thursday", + "example_sentence_native": "La reunión es el jueves por la tarde.", + "example_sentence_english": "The meeting is on Thursday afternoon.", + "pos": "noun", + "word_frequency": 1157 + }, + { + "word": "medicina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "medicine", + "example_sentence_native": "Estudió medicina para ser doctor.", + "example_sentence_english": "He studied medicine to become a doctor.", + "pos": "noun", + "word_frequency": 1158 + }, + { + "word": "novela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novel", + "example_sentence_native": "Estoy leyendo una novela muy interesante.", + "example_sentence_english": "I am reading a very interesting novel.", + "pos": "noun", + "word_frequency": 1159 + }, + { + "word": "permiso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "permission;excuse me", + "example_sentence_native": "Con permiso, ¿puedo pasar?", + "example_sentence_english": "Excuse me, may I pass?", + "pos": "noun", + "word_frequency": 1162 + }, + { + "word": "presentación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presentation", + "example_sentence_native": "La presentación fue muy interesante.", + "example_sentence_english": "The presentation was very interesting.", + "pos": "noun", + "word_frequency": 1163 + }, + { + "word": "puente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bridge", + "example_sentence_native": "Cruzamos el río por el puente.", + "example_sentence_english": "We crossed the river by the bridge.", + "pos": "noun", + "word_frequency": 1164 + }, + { + "word": "reconocimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognition;acknowledgment", + "example_sentence_native": "Recibió un reconocimiento por su trabajo.", + "example_sentence_english": "He received recognition for his work.", + "pos": "noun", + "word_frequency": 1165 + }, + { + "word": "regreso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "return", + "example_sentence_native": "Esperamos su pronto regreso.", + "example_sentence_english": "We await your prompt return.", + "pos": "noun", + "word_frequency": 1166 + }, + { + "word": "representante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "representative", + "example_sentence_native": "El representante del sindicato habló con la dirección.", + "example_sentence_english": "The union representative spoke with the management.", + "pos": "noun", + "word_frequency": 1167 + }, + { + "word": "rosa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rose (flower)", + "example_sentence_native": "Me regaló una rosa roja.", + "example_sentence_english": "He gave me a red rose.", + "pos": "noun", + "word_frequency": 1168 + }, + { + "word": "subir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go up;to upload", + "example_sentence_native": "Vamos a subir las escaleras.", + "example_sentence_english": "We are going to go up the stairs.", + "pos": "verb", + "word_frequency": 1169 + }, + { + "word": "tren", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "train", + "example_sentence_native": "El tren llega a las diez.", + "example_sentence_english": "The train arrives at ten.", + "pos": "noun", + "word_frequency": 1170 + }, + { + "word": "utilizar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to use;to utilize", + "example_sentence_native": "Debemos utilizar los recursos de manera eficiente.", + "example_sentence_english": "We must use resources efficiently.", + "pos": "verb", + "word_frequency": 1171 + }, + { + "word": "víctima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victim", + "example_sentence_native": "La víctima del accidente fue trasladada al hospital.", + "example_sentence_english": "The accident victim was taken to the hospital.", + "pos": "noun", + "word_frequency": 1172 + }, + { + "word": "bebé", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baby", + "example_sentence_native": "El bebé está durmiendo.", + "example_sentence_english": "The baby is sleeping.", + "pos": "noun", + "word_frequency": 1173 + }, + { + "word": "beneficio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "benefit;profit", + "example_sentence_native": "Este proyecto traerá muchos beneficios.", + "example_sentence_english": "This project will bring many benefits.", + "pos": "noun", + "word_frequency": 1174 + }, + { + "word": "categoría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "category", + "example_sentence_native": "Los productos están divididos por categoría.", + "example_sentence_english": "The products are divided by category.", + "pos": "noun", + "word_frequency": 1175 + }, + { + "word": "claramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clearly", + "example_sentence_native": "Habló claramente sobre sus intenciones.", + "example_sentence_english": "He spoke clearly about his intentions.", + "pos": "adverb", + "word_frequency": 1176 + }, + { + "word": "concurso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contest;competition", + "example_sentence_native": "Ganó el primer premio en el concurso de canto.", + "example_sentence_english": "He won first prize in the singing contest.", + "pos": "noun", + "word_frequency": 1177 + }, + { + "word": "decreto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decree;order", + "example_sentence_native": "El gobierno emitió un nuevo decreto.", + "example_sentence_english": "The government issued a new decree.", + "pos": "noun", + "word_frequency": 1178 + }, + { + "word": "ejecutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executive", + "example_sentence_native": "Es un director ejecutivo muy experimentado.", + "example_sentence_english": "He is a very experienced executive director.", + "pos": "adjective", + "word_frequency": 1179 + }, + { + "word": "estrategia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strategy", + "example_sentence_native": "Necesitamos una nueva estrategia para el mercado.", + "example_sentence_english": "We need a new strategy for the market.", + "pos": "noun", + "word_frequency": 1180 + }, + { + "word": "frío", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cold (noun)", + "example_sentence_native": "Tengo mucho frío hoy.", + "example_sentence_english": "I am very cold today.", + "pos": "noun", + "word_frequency": 1181 + }, + { + "word": "generalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generally", + "example_sentence_native": "Generalmente, me levanto temprano.", + "example_sentence_english": "Generally, I wake up early.", + "pos": "adverb", + "word_frequency": 1182 + }, + { + "word": "latino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latin;Latino", + "example_sentence_native": "La cultura latina es muy rica.", + "example_sentence_english": "Latin culture is very rich.", + "pos": "adjective", + "word_frequency": 1186 + }, + { + "word": "municipio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "municipality;town hall", + "example_sentence_native": "El municipio aprobó el nuevo plan urbano.", + "example_sentence_english": "The municipality approved the new urban plan.", + "pos": "noun", + "word_frequency": 1187 + }, + { + "word": "patria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homeland;fatherland", + "example_sentence_native": "Amamos nuestra patria.", + "example_sentence_english": "We love our homeland.", + "pos": "noun", + "word_frequency": 1188 + }, + { + "word": "penal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penal;criminal", + "example_sentence_native": "El código penal fue reformado.", + "example_sentence_english": "The penal code was reformed.", + "pos": "adjective", + "word_frequency": 1189 + }, + { + "word": "pensamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thought", + "example_sentence_native": "Sus pensamientos están muy claros.", + "example_sentence_english": "His thoughts are very clear.", + "pos": "noun", + "word_frequency": 1190 + }, + { + "word": "periodista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journalist", + "example_sentence_native": "La periodista hizo una entrevista excelente.", + "example_sentence_english": "The journalist conducted an excellent interview.", + "pos": "noun", + "word_frequency": 1191 + }, + { + "word": "preguntar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to ask", + "example_sentence_native": "Quiero preguntar algo.", + "example_sentence_english": "I want to ask something.", + "pos": "verb", + "word_frequency": 1192 + }, + { + "word": "prisión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prison", + "example_sentence_native": "Fue condenado a prisión.", + "example_sentence_english": "He was sentenced to prison.", + "pos": "noun", + "word_frequency": 1193 + }, + { + "word": "referir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refer", + "example_sentence_native": "Se refirió al tema en su discurso.", + "example_sentence_english": "He referred to the topic in his speech.", + "pos": "verb", + "word_frequency": 1194 + }, + { + "word": "sentimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling;sentiment", + "example_sentence_native": "Expresó sus sentimientos abiertamente.", + "example_sentence_english": "He expressed his feelings openly.", + "pos": "noun", + "word_frequency": 1195 + }, + { + "word": "accidente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accident", + "example_sentence_native": "Tuvo un pequeño accidente de coche.", + "example_sentence_english": "He had a small car accident.", + "pos": "noun", + "word_frequency": 1196 + }, + { + "word": "actualidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "present time;current affairs", + "example_sentence_native": "Sigue las noticias de actualidad.", + "example_sentence_english": "He follows current affairs news.", + "pos": "noun", + "word_frequency": 1197 + }, + { + "word": "alimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food;nourishment", + "example_sentence_native": "Los alimentos frescos son importantes para la salud.", + "example_sentence_english": "Fresh foods are important for health.", + "pos": "noun", + "word_frequency": 1198 + }, + { + "word": "aproximadamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approximately", + "example_sentence_native": "Llegaremos aproximadamente a las tres.", + "example_sentence_english": "We will arrive approximately at three.", + "pos": "adverb", + "word_frequency": 1199 + }, + { + "word": "avión", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airplane", + "example_sentence_native": "El avión despegó a tiempo.", + "example_sentence_english": "The airplane took off on time.", + "pos": "noun", + "word_frequency": 1200 + }, + { + "word": "bandera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flag", + "example_sentence_native": "La bandera de España es roja y amarilla.", + "example_sentence_english": "The flag of Spain is red and yellow.", + "pos": "noun", + "word_frequency": 1201 + }, + { + "word": "biblioteca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "library", + "example_sentence_native": "Voy a la biblioteca a estudiar.", + "example_sentence_english": "I'm going to the library to study.", + "pos": "noun", + "word_frequency": 1202 + }, + { + "word": "celular", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cell phone", + "example_sentence_native": "Mi celular no tiene batería.", + "example_sentence_english": "My cell phone has no battery.", + "pos": "noun", + "word_frequency": 1203 + }, + { + "word": "costo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cost", + "example_sentence_native": "El costo de vida es muy alto aquí.", + "example_sentence_english": "The cost of living is very high here.", + "pos": "noun", + "word_frequency": 1204 + }, + { + "word": "delito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crime", + "example_sentence_native": "Cometer un delito tiene graves consecuencias.", + "example_sentence_english": "Committing a crime has serious consequences.", + "pos": "noun", + "word_frequency": 1205 + }, + { + "word": "deporte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sport", + "example_sentence_native": "Mi deporte favorito es el fútbol.", + "example_sentence_english": "My favorite sport is soccer.", + "pos": "noun", + "word_frequency": 1206 + }, + { + "word": "disco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disc", + "example_sentence_native": "Escuchamos música en un viejo disco de vinilo.", + "example_sentence_english": "We listened to music on an old vinyl record.", + "pos": "noun", + "word_frequency": 1207 + }, + { + "word": "entrega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery", + "example_sentence_native": "La entrega del paquete será mañana.", + "example_sentence_english": "The delivery of the package will be tomorrow.", + "pos": "noun", + "word_frequency": 1208 + }, + { + "word": "escritor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "writer", + "example_sentence_native": "Gabriel García Márquez fue un gran escritor.", + "example_sentence_english": "Gabriel García Márquez was a great writer.", + "pos": "noun", + "word_frequency": 1209 + }, + { + "word": "etapa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage", + "example_sentence_native": "Esta es una nueva etapa en mi vida.", + "example_sentence_english": "This is a new stage in my life.", + "pos": "noun", + "word_frequency": 1210 + }, + { + "word": "funcionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil servant", + "example_sentence_native": "El funcionario público atendió mi solicitud.", + "example_sentence_english": "The public official attended to my request.", + "pos": "noun", + "word_frequency": 1211 + }, + { + "word": "hermoso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beautiful", + "example_sentence_native": "El paisaje era realmente hermoso.", + "example_sentence_english": "The landscape was truly beautiful.", + "pos": "adjective", + "word_frequency": 1212 + }, + { + "word": "iniciativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiative", + "example_sentence_native": "Tomó la iniciativa para resolver el problema.", + "example_sentence_english": "He took the initiative to solve the problem.", + "pos": "noun", + "word_frequency": 1213 + }, + { + "word": "kilómetro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kilometer", + "example_sentence_native": "La ciudad está a diez kilómetros de aquí.", + "example_sentence_english": "The city is ten kilometers from here.", + "pos": "noun", + "word_frequency": 1214 + }, + { + "word": "liga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "league", + "example_sentence_native": "Mi equipo juega en la primera liga.", + "example_sentence_english": "My team plays in the first league.", + "pos": "noun", + "word_frequency": 1215 + }, + { + "word": "madera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wood", + "example_sentence_native": "La mesa es de madera maciza.", + "example_sentence_english": "The table is made of solid wood.", + "pos": "noun", + "word_frequency": 1216 + }, + { + "word": "precisamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precisely", + "example_sentence_native": "Llegó precisamente cuando lo estábamos esperando.", + "example_sentence_english": "He arrived precisely when we were waiting for him.", + "pos": "adverb", + "word_frequency": 1217 + }, + { + "word": "regional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regional", + "example_sentence_native": "La comida regional es deliciosa.", + "example_sentence_english": "The regional food is delicious.", + "pos": "adjective", + "word_frequency": 1218 + }, + { + "word": "resolución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolution", + "example_sentence_native": "La ONU aprobó una nueva resolución.", + "example_sentence_english": "The UN approved a new resolution.", + "pos": "noun", + "word_frequency": 1219 + }, + { + "word": "ruta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "route", + "example_sentence_native": "Seguimos la ruta marcada en el mapa.", + "example_sentence_english": "We followed the route marked on the map.", + "pos": "noun", + "word_frequency": 1221 + }, + { + "word": "secreto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secret", + "example_sentence_native": "Te voy a contar un secreto.", + "example_sentence_english": "I'm going to tell you a secret.", + "pos": "noun", + "word_frequency": 1222 + }, + { + "word": "soler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to usually do", + "example_sentence_native": "Suelo levantarme temprano.", + "example_sentence_english": "I usually get up early.", + "pos": "verb", + "word_frequency": 1223 + }, + { + "word": "tendencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trend", + "example_sentence_native": "Hay una nueva tendencia en la moda.", + "example_sentence_english": "There's a new trend in fashion.", + "pos": "noun", + "word_frequency": 1224 + }, + { + "word": "tocar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to touch", + "example_sentence_native": "No toques eso, está caliente.", + "example_sentence_english": "Don't touch that, it's hot.", + "pos": "verb", + "word_frequency": 1225 + }, + { + "word": "tradicional", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traditional", + "example_sentence_native": "La paella es un plato tradicional español.", + "example_sentence_english": "Paella is a traditional Spanish dish.", + "pos": "adjective", + "word_frequency": 1226 + }, + { + "word": "alumno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student", + "example_sentence_native": "Los alumnos están en clase.", + "example_sentence_english": "The students are in class.", + "pos": "noun", + "word_frequency": 1228 + }, + { + "word": "audiencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audience", + "example_sentence_native": "La audiencia aplaudió al final del concierto.", + "example_sentence_english": "The audience applauded at the end of the concert.", + "pos": "noun", + "word_frequency": 1229 + }, + { + "word": "comienzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beginning", + "example_sentence_native": "El comienzo del curso es en septiembre.", + "example_sentence_english": "The beginning of the course is in September.", + "pos": "noun", + "word_frequency": 1230 + }, + { + "word": "crimen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crime", + "example_sentence_native": "La policía investiga el crimen.", + "example_sentence_english": "The police are investigating the crime.", + "pos": "noun", + "word_frequency": 1231 + }, + { + "word": "disponible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "available", + "example_sentence_native": "El producto no está disponible en este momento.", + "example_sentence_english": "The product is not available at the moment.", + "pos": "adjective", + "word_frequency": 1234 + }, + { + "word": "droga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug", + "example_sentence_native": "La lucha contra la droga es global.", + "example_sentence_english": "The fight against drugs is global.", + "pos": "noun", + "word_frequency": 1235 + }, + { + "word": "extranjero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "foreign", + "example_sentence_native": "Habla varios idiomas extranjeros.", + "example_sentence_english": "He speaks several foreign languages.", + "pos": "adjective", + "word_frequency": 1236 + }, + { + "word": "formar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to form", + "example_sentence_native": "Necesitamos formar un equipo.", + "example_sentence_english": "We need to form a team.", + "pos": "verb", + "word_frequency": 1237 + }, + { + "word": "frase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "phrase", + "example_sentence_native": "Escribe una frase con esta palabra.", + "example_sentence_english": "Write a sentence with this word.", + "pos": "noun", + "word_frequency": 1238 + }, + { + "word": "global", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "global", + "example_sentence_native": "El cambio climático es un problema global.", + "example_sentence_english": "Climate change is a global problem.", + "pos": "adjective", + "word_frequency": 1239 + }, + { + "word": "impacto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impact", + "example_sentence_native": "El cambio climático tiene un gran impacto en el planeta.", + "example_sentence_english": "Climate change has a big impact on the planet.", + "pos": "noun", + "word_frequency": 1241 + }, + { + "word": "inteligente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intelligent", + "example_sentence_native": "Ella es una estudiante muy inteligente.", + "example_sentence_english": "She is a very intelligent student.", + "pos": "adjective", + "word_frequency": 1242 + }, + { + "word": "intentar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to try;to attempt", + "example_sentence_native": "Voy a intentar aprender un nuevo idioma.", + "example_sentence_english": "I'm going to try to learn a new language.", + "pos": "verb", + "word_frequency": 1243 + }, + { + "word": "laboral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "labor;work-related", + "example_sentence_native": "Tenemos una reunión laboral importante mañana.", + "example_sentence_english": "We have an important work meeting tomorrow.", + "pos": "adjective", + "word_frequency": 1245 + }, + { + "word": "móvil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mobile phone;cell phone", + "example_sentence_native": "He olvidado mi móvil en casa.", + "example_sentence_english": "I forgot my mobile phone at home.", + "pos": "noun", + "word_frequency": 1246 + }, + { + "word": "presidencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidency", + "example_sentence_native": "La presidencia anunció nuevas medidas económicas.", + "example_sentence_english": "The presidency announced new economic measures.", + "pos": "noun", + "word_frequency": 1247 + }, + { + "word": "publicidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertising;publicity", + "example_sentence_native": "La empresa invierte mucho en publicidad.", + "example_sentence_english": "The company invests a lot in advertising.", + "pos": "noun", + "word_frequency": 1248 + }, + { + "word": "resolver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resolve;to solve", + "example_sentence_native": "Necesitamos resolver este problema rápidamente.", + "example_sentence_english": "We need to resolve this problem quickly.", + "pos": "verb", + "word_frequency": 1249 + }, + { + "word": "seguidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "follower;supporter", + "example_sentence_native": "Tiene muchos seguidores en Instagram.", + "example_sentence_english": "He has many followers on Instagram.", + "pos": "noun", + "word_frequency": 1250 + }, + { + "word": "trato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deal;treatment;agreement", + "example_sentence_native": "Llegaron a un buen trato después de la negociación.", + "example_sentence_english": "They reached a good deal after the negotiation.", + "pos": "noun", + "word_frequency": 1251 + }, + { + "word": "alcanzar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reach;to achieve", + "example_sentence_native": "Espero alcanzar mis metas este año.", + "example_sentence_english": "I hope to achieve my goals this year.", + "pos": "verb", + "word_frequency": 1253 + }, + { + "word": "aparte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apart;separately", + "example_sentence_native": "Dejemos ese tema aparte por ahora.", + "example_sentence_english": "Let's leave that topic aside for now.", + "pos": "adverb", + "word_frequency": 1254 + }, + { + "word": "colaboración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collaboration", + "example_sentence_native": "Este proyecto es el resultado de una gran colaboración.", + "example_sentence_english": "This project is the result of a great collaboration.", + "pos": "noun", + "word_frequency": 1256 + }, + { + "word": "compromiso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commitment;compromise;engagement", + "example_sentence_native": "Su compromiso con el trabajo es admirable.", + "example_sentence_english": "His commitment to work is admirable.", + "pos": "noun", + "word_frequency": 1257 + }, + { + "word": "conferencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conference;lecture", + "example_sentence_native": "Asistí a una conferencia muy interesante sobre tecnología.", + "example_sentence_english": "I attended a very interesting conference on technology.", + "pos": "noun", + "word_frequency": 1258 + }, + { + "word": "cuento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "story;tale", + "example_sentence_native": "Me gusta leer cuentos antes de dormir.", + "example_sentence_english": "I like to read stories before sleeping.", + "pos": "noun", + "word_frequency": 1259 + }, + { + "word": "cáncer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancer", + "example_sentence_native": "La investigación sobre el cáncer ha avanzado mucho.", + "example_sentence_english": "Cancer research has advanced a lot.", + "pos": "noun", + "word_frequency": 1260 + }, + { + "word": "deuda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debt", + "example_sentence_native": "Tiene una gran deuda con el banco.", + "example_sentence_english": "He has a large debt with the bank.", + "pos": "noun", + "word_frequency": 1261 + }, + { + "word": "división", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "division", + "example_sentence_native": "La división de tareas es importante para el equipo.", + "example_sentence_english": "The division of tasks is important for the team.", + "pos": "noun", + "word_frequency": 1262 + }, + { + "word": "enemigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enemy", + "example_sentence_native": "El miedo es el peor enemigo del progreso.", + "example_sentence_english": "Fear is the worst enemy of progress.", + "pos": "noun", + "word_frequency": 1263 + }, + { + "word": "estrella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "star", + "example_sentence_native": "Por la noche, se pueden ver muchas estrellas en el cielo.", + "example_sentence_english": "At night, you can see many stars in the sky.", + "pos": "noun", + "word_frequency": 1264 + }, + { + "word": "foro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forum", + "example_sentence_native": "Participó en un foro de discusión sobre inteligencia artificial.", + "example_sentence_english": "He participated in a discussion forum on artificial intelligence.", + "pos": "noun", + "word_frequency": 1265 + }, + { + "word": "frecuencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequency", + "example_sentence_native": "La frecuencia de los autobuses ha aumentado.", + "example_sentence_english": "The frequency of buses has increased.", + "pos": "noun", + "word_frequency": 1266 + }, + { + "word": "gasto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expense;cost", + "example_sentence_native": "Tenemos que reducir nuestros gastos mensuales.", + "example_sentence_english": "We have to reduce our monthly expenses.", + "pos": "noun", + "word_frequency": 1267 + }, + { + "word": "habitación", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room", + "example_sentence_native": "Mi habitación es grande y luminosa.", + "example_sentence_english": "My room is big and bright.", + "pos": "noun", + "word_frequency": 1268 + }, + { + "word": "herramienta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tool", + "example_sentence_native": "Esta es una herramienta muy útil para el trabajo.", + "example_sentence_english": "This is a very useful tool for work.", + "pos": "noun", + "word_frequency": 1269 + }, + { + "word": "humanidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanity", + "example_sentence_native": "La humanidad enfrenta grandes desafíos.", + "example_sentence_english": "Humanity faces great challenges.", + "pos": "noun", + "word_frequency": 1270 + }, + { + "word": "humor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humor;mood", + "example_sentence_native": "Tiene un gran sentido del humor.", + "example_sentence_english": "He has a great sense of humor.", + "pos": "noun", + "word_frequency": 1271 + }, + { + "word": "interesar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to interest", + "example_sentence_native": "Me interesa mucho la historia.", + "example_sentence_english": "History interests me a lot.", + "pos": "verb", + "word_frequency": 1272 + }, + { + "word": "letra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "letter (of alphabet);lyric", + "example_sentence_native": "La primera letra del abecedario es la 'A'.", + "example_sentence_english": "The first letter of the alphabet is 'A'.", + "pos": "noun", + "word_frequency": 1274 + }, + { + "word": "lima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lime (fruit);file (tool)", + "example_sentence_native": "Me gusta el sabor ácido de la lima.", + "example_sentence_english": "I like the sour taste of lime.", + "pos": "noun", + "word_frequency": 1275 + }, + { + "word": "lindo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pretty;cute;nice", + "example_sentence_native": "Tu perro es muy lindo.", + "example_sentence_english": "Your dog is very cute.", + "pos": "adjective", + "word_frequency": 1276 + }, + { + "word": "llegada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arrival", + "example_sentence_native": "La hora de llegada del tren es a las cinco.", + "example_sentence_english": "The train's arrival time is at five.", + "pos": "noun", + "word_frequency": 1277 + }, + { + "word": "merecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deserve;to merit", + "example_sentence_native": "Ella merece todo el éxito.", + "example_sentence_english": "She deserves all the success.", + "pos": "verb", + "word_frequency": 1278 + }, + { + "word": "moral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moral", + "example_sentence_native": "Es importante tener principios morales sólidos.", + "example_sentence_english": "It's important to have strong moral principles.", + "pos": "adjective", + "word_frequency": 1279 + }, + { + "word": "museo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "museum", + "example_sentence_native": "El museo abre a las diez.", + "example_sentence_english": "The museum opens at ten.", + "pos": "noun", + "word_frequency": 1280 + }, + { + "word": "norma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "norm;rule", + "example_sentence_native": "Es una norma de la casa.", + "example_sentence_english": "It's a house rule.", + "pos": "noun", + "word_frequency": 1281 + }, + { + "word": "palacio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palace", + "example_sentence_native": "El rey vive en el palacio.", + "example_sentence_english": "The king lives in the palace.", + "pos": "noun", + "word_frequency": 1282 + }, + { + "word": "plataforma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "platform", + "example_sentence_native": "Espera el tren en la plataforma.", + "example_sentence_english": "Wait for the train on the platform.", + "pos": "noun", + "word_frequency": 1283 + }, + { + "word": "regalo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gift;present", + "example_sentence_native": "Le di un regalo de cumpleaños.", + "example_sentence_english": "I gave him a birthday gift.", + "pos": "noun", + "word_frequency": 1284 + }, + { + "word": "religión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religion", + "example_sentence_native": "La libertad de religión es importante.", + "example_sentence_english": "Freedom of religion is important.", + "pos": "noun", + "word_frequency": 1285 + }, + { + "word": "rápidamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quickly;rapidly", + "example_sentence_native": "Corre rápidamente hacia la meta.", + "example_sentence_english": "He runs quickly towards the finish line.", + "pos": "adverb", + "word_frequency": 1286 + }, + { + "word": "técnico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technical", + "example_sentence_native": "Necesitamos soporte técnico.", + "example_sentence_english": "We need technical support.", + "pos": "adjective", + "word_frequency": 1287 + }, + { + "word": "agente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agent", + "example_sentence_native": "Hablé con un agente de viajes.", + "example_sentence_english": "I spoke with a travel agent.", + "pos": "noun", + "word_frequency": 1288 + }, + { + "word": "bonito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pretty;beautiful", + "example_sentence_native": "El perro es muy bonito.", + "example_sentence_english": "The dog is very pretty.", + "pos": "adjective", + "word_frequency": 1290 + }, + { + "word": "breve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brief;short", + "example_sentence_native": "Fue una reunión breve.", + "example_sentence_english": "It was a brief meeting.", + "pos": "adjective", + "word_frequency": 1291 + }, + { + "word": "capítulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chapter", + "example_sentence_native": "Leí el primer capítulo del libro.", + "example_sentence_english": "I read the first chapter of the book.", + "pos": "noun", + "word_frequency": 1292 + }, + { + "word": "cliente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "client;customer", + "example_sentence_native": "El cliente siempre tiene la razón.", + "example_sentence_english": "The customer is always right.", + "pos": "noun", + "word_frequency": 1293 + }, + { + "word": "conocido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "known;familiar", + "example_sentence_native": "Es un hecho bien conocido.", + "example_sentence_english": "It's a well-known fact.", + "pos": "adjective", + "word_frequency": 1294 + }, + { + "word": "cumpleaños", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "birthday", + "example_sentence_native": "Feliz cumpleaños, amigo.", + "example_sentence_english": "Happy birthday, friend.", + "pos": "noun", + "word_frequency": 1295 + }, + { + "word": "decidir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to decide", + "example_sentence_native": "Necesito decidir qué hacer.", + "example_sentence_english": "I need to decide what to do.", + "pos": "verb", + "word_frequency": 1296 + }, + { + "word": "defender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defend", + "example_sentence_native": "Debemos defender nuestros derechos.", + "example_sentence_english": "We must defend our rights.", + "pos": "verb", + "word_frequency": 1297 + }, + { + "word": "evidencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evidence", + "example_sentence_native": "No hay evidencia de eso.", + "example_sentence_english": "There is no evidence of that.", + "pos": "noun", + "word_frequency": 1299 + }, + { + "word": "firma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signature;firm", + "example_sentence_native": "Por favor, ponga su firma aquí.", + "example_sentence_english": "Please put your signature here.", + "pos": "noun", + "word_frequency": 1300 + }, + { + "word": "guardia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guard;watch", + "example_sentence_native": "El guardia de seguridad está en la puerta.", + "example_sentence_english": "The security guard is at the door.", + "pos": "noun", + "word_frequency": 1302 + }, + { + "word": "juventud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth", + "example_sentence_native": "La juventud es el futuro.", + "example_sentence_english": "Youth is the future.", + "pos": "noun", + "word_frequency": 1303 + }, + { + "word": "martes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Tuesday", + "example_sentence_native": "Nos vemos el martes.", + "example_sentence_english": "See you on Tuesday.", + "pos": "noun", + "word_frequency": 1304 + }, + { + "word": "navidad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas", + "example_sentence_native": "Celebramos la Navidad en familia.", + "example_sentence_english": "We celebrate Christmas with family.", + "pos": "noun", + "word_frequency": 1305 + }, + { + "word": "probable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probable;likely", + "example_sentence_native": "Es probable que llueva.", + "example_sentence_english": "It's probable that it will rain.", + "pos": "adjective", + "word_frequency": 1308 + }, + { + "word": "producir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce", + "example_sentence_native": "Esta fábrica produce coches.", + "example_sentence_english": "This factory produces cars.", + "pos": "verb", + "word_frequency": 1309 + }, + { + "word": "responder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to answer;to respond", + "example_sentence_native": "Por favor, responde a mi pregunta.", + "example_sentence_english": "Please answer my question.", + "pos": "verb", + "word_frequency": 1310 + }, + { + "word": "sencillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "simple;easy", + "example_sentence_native": "Es un problema muy sencillo.", + "example_sentence_english": "It's a very simple problem.", + "pos": "adjective", + "word_frequency": 1311 + }, + { + "word": "señal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signal;sign", + "example_sentence_native": "No hay señal de teléfono aquí.", + "example_sentence_english": "There is no phone signal here.", + "pos": "noun", + "word_frequency": 1313 + }, + { + "word": "superficie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surface", + "example_sentence_native": "La superficie de la mesa es lisa.", + "example_sentence_english": "The surface of the table is smooth.", + "pos": "noun", + "word_frequency": 1314 + }, + { + "word": "temprano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "early", + "example_sentence_native": "Me levanto temprano cada día.", + "example_sentence_english": "I wake up early every day.", + "pos": "adverb", + "word_frequency": 1315 + }, + { + "word": "tradición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tradition", + "example_sentence_native": "Es una vieja tradición familiar.", + "example_sentence_english": "It's an old family tradition.", + "pos": "noun", + "word_frequency": 1316 + }, + { + "word": "universo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "universe", + "example_sentence_native": "El universo es inmenso.", + "example_sentence_english": "The universe is immense.", + "pos": "noun", + "word_frequency": 1317 + }, + { + "word": "valle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valley", + "example_sentence_native": "El río fluye por el valle.", + "example_sentence_english": "The river flows through the valley.", + "pos": "noun", + "word_frequency": 1318 + }, + { + "word": "viento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wind", + "example_sentence_native": "El viento sopla fuerte hoy.", + "example_sentence_english": "The wind blows strong today.", + "pos": "noun", + "word_frequency": 1319 + }, + { + "word": "colección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection", + "example_sentence_native": "Tengo una gran colección de libros.", + "example_sentence_english": "I have a large collection of books.", + "pos": "noun", + "word_frequency": 1320 + }, + { + "word": "conversación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conversation", + "example_sentence_native": "Tuvimos una conversación interesante.", + "example_sentence_english": "We had an interesting conversation.", + "pos": "noun", + "word_frequency": 1321 + }, + { + "word": "escenario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage;scenario", + "example_sentence_native": "El actor subió al escenario.", + "example_sentence_english": "The actor went up onto the stage.", + "pos": "noun", + "word_frequency": 1322 + }, + { + "word": "exposición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibition;exposure", + "example_sentence_native": "Visitamos una exposición de arte moderno.", + "example_sentence_english": "We visited a modern art exhibition.", + "pos": "noun", + "word_frequency": 1323 + }, + { + "word": "huevo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "egg", + "example_sentence_native": "Me gusta comer un huevo frito para el desayuno.", + "example_sentence_english": "I like to eat a fried egg for breakfast.", + "pos": "noun", + "word_frequency": 1324 + }, + { + "word": "igualdad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equality", + "example_sentence_native": "Luchamos por la igualdad de derechos.", + "example_sentence_english": "We fight for equal rights.", + "pos": "noun", + "word_frequency": 1325 + }, + { + "word": "invierno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "winter", + "example_sentence_native": "El invierno es mi estación favorita.", + "example_sentence_english": "Winter is my favorite season.", + "pos": "noun", + "word_frequency": 1326 + }, + { + "word": "luchar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fight;to struggle", + "example_sentence_native": "Debemos luchar por nuestros sueños.", + "example_sentence_english": "We must fight for our dreams.", + "pos": "verb", + "word_frequency": 1327 + }, + { + "word": "moda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fashion;trend", + "example_sentence_native": "Esa ropa está muy de moda.", + "example_sentence_english": "Those clothes are very fashionable.", + "pos": "noun", + "word_frequency": 1328 + }, + { + "word": "método", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "method", + "example_sentence_native": "Necesitamos un nuevo método de estudio.", + "example_sentence_english": "We need a new study method.", + "pos": "noun", + "word_frequency": 1329 + }, + { + "word": "normalmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normally;usually", + "example_sentence_native": "Normalmente, me levanto temprano.", + "example_sentence_english": "Normally, I wake up early.", + "pos": "adverb", + "word_frequency": 1330 + }, + { + "word": "oferta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offer;sale", + "example_sentence_native": "Hay una buena oferta en la tienda.", + "example_sentence_english": "There's a good offer at the store.", + "pos": "noun", + "word_frequency": 1331 + }, + { + "word": "onda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wave", + "example_sentence_native": "Las ondas del mar eran muy grandes.", + "example_sentence_english": "The sea waves were very big.", + "pos": "noun", + "word_frequency": 1332 + }, + { + "word": "salvador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savior;rescuer", + "example_sentence_native": "Lo consideran el salvador de la situación.", + "example_sentence_english": "They consider him the savior of the situation.", + "pos": "noun", + "word_frequency": 1333 + }, + { + "word": "seguramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surely;probably", + "example_sentence_native": "Seguramente lloverá mañana.", + "example_sentence_english": "It will surely rain tomorrow.", + "pos": "adverb", + "word_frequency": 1334 + }, + { + "word": "sentencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentence (legal);judgment", + "example_sentence_native": "El juez dictó la sentencia.", + "example_sentence_english": "The judge pronounced the sentence.", + "pos": "noun", + "word_frequency": 1335 + }, + { + "word": "sesión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "session", + "example_sentence_native": "La sesión de estudio duró dos horas.", + "example_sentence_english": "The study session lasted two hours.", + "pos": "noun", + "word_frequency": 1336 + }, + { + "word": "software", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "software", + "example_sentence_native": "Necesito instalar un nuevo software en mi computadora.", + "example_sentence_english": "I need to install new software on my computer.", + "pos": "noun", + "word_frequency": 1337 + }, + { + "word": "sonido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sound", + "example_sentence_native": "Escuché un sonido extraño.", + "example_sentence_english": "I heard a strange sound.", + "pos": "noun", + "word_frequency": 1338 + }, + { + "word": "sorpresa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surprise", + "example_sentence_native": "Me dio una gran sorpresa.", + "example_sentence_english": "It gave me a big surprise.", + "pos": "noun", + "word_frequency": 1339 + }, + { + "word": "suceder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen;to occur", + "example_sentence_native": "¿Qué va a suceder ahora?", + "example_sentence_english": "What is going to happen now?", + "pos": "verb", + "word_frequency": 1340 + }, + { + "word": "tarjeta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "card", + "example_sentence_native": "Pagué con tarjeta de crédito.", + "example_sentence_english": "I paid with a credit card.", + "pos": "noun", + "word_frequency": 1341 + }, + { + "word": "asimismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "likewise;also;furthermore", + "example_sentence_native": "Asimismo, se discutieron otros temas importantes.", + "example_sentence_english": "Likewise, other important topics were discussed.", + "pos": "adverb", + "word_frequency": 1343 + }, + { + "word": "bolsa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bag;purse", + "example_sentence_native": "Llevo mis compras en una bolsa.", + "example_sentence_english": "I carry my groceries in a bag.", + "pos": "noun", + "word_frequency": 1344 + }, + { + "word": "brazo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "arm", + "example_sentence_native": "Me duele el brazo.", + "example_sentence_english": "My arm hurts.", + "pos": "noun", + "word_frequency": 1345 + }, + { + "word": "cerebro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brain", + "example_sentence_native": "El cerebro controla el cuerpo.", + "example_sentence_english": "The brain controls the body.", + "pos": "noun", + "word_frequency": 1346 + }, + { + "word": "clima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "climate;weather", + "example_sentence_native": "El clima hoy es muy agradable.", + "example_sentence_english": "The weather today is very pleasant.", + "pos": "noun", + "word_frequency": 1347 + }, + { + "word": "comportamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behavior", + "example_sentence_native": "Su comportamiento fue ejemplar.", + "example_sentence_english": "His behavior was exemplary.", + "pos": "noun", + "word_frequency": 1348 + }, + { + "word": "corriente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current;stream", + "example_sentence_native": "La corriente del río es fuerte.", + "example_sentence_english": "The river current is strong.", + "pos": "noun", + "word_frequency": 1349 + }, + { + "word": "discusión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discussion;argument", + "example_sentence_native": "Tuvimos una larga discusión sobre el tema.", + "example_sentence_english": "We had a long discussion about the topic.", + "pos": "noun", + "word_frequency": 1350 + }, + { + "word": "dominio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domain;mastery", + "example_sentence_native": "Tiene un gran dominio del idioma.", + "example_sentence_english": "He has great mastery of the language.", + "pos": "noun", + "word_frequency": 1352 + }, + { + "word": "escala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scale;stopover", + "example_sentence_native": "El avión hizo una escala en Madrid.", + "example_sentence_english": "The plane made a stopover in Madrid.", + "pos": "noun", + "word_frequency": 1353 + }, + { + "word": "espalda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back (body part)", + "example_sentence_native": "Me duele la espalda.", + "example_sentence_english": "My back hurts.", + "pos": "noun", + "word_frequency": 1354 + }, + { + "word": "gracia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grace;charm", + "example_sentence_native": "Tiene mucha gracia al hablar.", + "example_sentence_english": "He has a lot of charm when speaking.", + "pos": "noun", + "word_frequency": 1355 + }, + { + "word": "intervención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervention", + "example_sentence_native": "La intervención del médico fue crucial.", + "example_sentence_english": "The doctor's intervention was crucial.", + "pos": "noun", + "word_frequency": 1356 + }, + { + "word": "montón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pile;a lot (of)", + "example_sentence_native": "Tengo un montón de trabajo.", + "example_sentence_english": "I have a lot of work.", + "pos": "noun", + "word_frequency": 1357 + }, + { + "word": "probar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to try;to taste", + "example_sentence_native": "Quiero probar este nuevo plato.", + "example_sentence_english": "I want to try this new dish.", + "pos": "verb", + "word_frequency": 1358 + }, + { + "word": "sensación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensation;feeling", + "example_sentence_native": "Tuve una extraña sensación.", + "example_sentence_english": "I had a strange sensation.", + "pos": "noun", + "word_frequency": 1359 + }, + { + "word": "terrible", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrible", + "example_sentence_native": "La película fue terrible.", + "example_sentence_english": "The movie was terrible.", + "pos": "adjective", + "word_frequency": 1361 + }, + { + "word": "vergüenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shame;embarrassment", + "example_sentence_native": "Sentí mucha vergüenza después de caerme.", + "example_sentence_english": "I felt a lot of shame after falling.", + "pos": "noun", + "word_frequency": 1362 + }, + { + "word": "agencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agency", + "example_sentence_native": "Necesito ir a la agencia de viajes.", + "example_sentence_english": "I need to go to the travel agency.", + "pos": "noun", + "word_frequency": 1363 + }, + { + "word": "anunciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to announce", + "example_sentence_native": "Van a anunciar los resultados mañana.", + "example_sentence_english": "They are going to announce the results tomorrow.", + "pos": "verb", + "word_frequency": 1364 + }, + { + "word": "apoyar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support", + "example_sentence_native": "Siempre te apoyaré en tus decisiones.", + "example_sentence_english": "I will always support you in your decisions.", + "pos": "verb", + "word_frequency": 1365 + }, + { + "word": "asistencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assistance;attendance", + "example_sentence_native": "La asistencia al evento fue muy alta.", + "example_sentence_english": "The attendance at the event was very high.", + "pos": "noun", + "word_frequency": 1366 + }, + { + "word": "ayuntamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city council;town hall", + "example_sentence_native": "El ayuntamiento aprobó el nuevo proyecto.", + "example_sentence_english": "The city council approved the new project.", + "pos": "noun", + "word_frequency": 1367 + }, + { + "word": "bajar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go down;to lower", + "example_sentence_native": "Por favor, baja las escaleras con cuidado.", + "example_sentence_english": "Please, go down the stairs carefully.", + "pos": "verb", + "word_frequency": 1368 + }, + { + "word": "caber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fit", + "example_sentence_native": "No todo el equipaje cabe en la maleta.", + "example_sentence_english": "Not all the luggage fits in the suitcase.", + "pos": "verb", + "word_frequency": 1369 + }, + { + "word": "comandante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commander", + "example_sentence_native": "El comandante dio la orden de avanzar.", + "example_sentence_english": "The commander gave the order to advance.", + "pos": "noun", + "word_frequency": 1370 + }, + { + "word": "constante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constant", + "example_sentence_native": "Su esfuerzo constante dio frutos.", + "example_sentence_english": "His constant effort bore fruit.", + "pos": "adjective", + "word_frequency": 1371 + }, + { + "word": "contener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contain", + "example_sentence_native": "Este recipiente puede contener hasta dos litros.", + "example_sentence_english": "This container can hold up to two liters.", + "pos": "verb", + "word_frequency": 1372 + }, + { + "word": "convertir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convert;to turn into", + "example_sentence_native": "El mago convirtió el pañuelo en una paloma.", + "example_sentence_english": "The magician converted the handkerchief into a dove.", + "pos": "verb", + "word_frequency": 1373 + }, + { + "word": "euro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "euro", + "example_sentence_native": "Cuesta diez euros.", + "example_sentence_english": "It costs ten euros.", + "pos": "noun", + "word_frequency": 1374 + }, + { + "word": "examen", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "exam", + "example_sentence_native": "Tengo un examen de español mañana.", + "example_sentence_english": "I have a Spanish exam tomorrow.", + "pos": "noun", + "word_frequency": 1375 + }, + { + "word": "fundamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamental", + "example_sentence_native": "Es fundamental entender los conceptos básicos.", + "example_sentence_english": "It is fundamental to understand the basic concepts.", + "pos": "adjective", + "word_frequency": 1377 + }, + { + "word": "igualmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "likewise;equally", + "example_sentence_native": "Encantado de conocerte. Igualmente.", + "example_sentence_english": "Nice to meet you. Likewise.", + "pos": "adverb", + "word_frequency": 1378 + }, + { + "word": "indicar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to indicate", + "example_sentence_native": "El mapa indica el camino más corto.", + "example_sentence_english": "The map indicates the shortest way.", + "pos": "verb", + "word_frequency": 1379 + }, + { + "word": "industrial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrial", + "example_sentence_native": "La zona industrial está lejos del centro.", + "example_sentence_english": "The industrial zone is far from the center.", + "pos": "adjective", + "word_frequency": 1380 + }, + { + "word": "mapa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "map", + "example_sentence_native": "Necesito un mapa para encontrar la dirección.", + "example_sentence_english": "I need a map to find the address.", + "pos": "noun", + "word_frequency": 1381 + }, + { + "word": "masa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mass;dough", + "example_sentence_native": "La masa del pan está lista para hornear.", + "example_sentence_english": "The bread dough is ready to bake.", + "pos": "noun", + "word_frequency": 1382 + }, + { + "word": "mentira", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lie", + "example_sentence_native": "No me gusta que me digan mentiras.", + "example_sentence_english": "I don't like being told lies.", + "pos": "noun", + "word_frequency": 1383 + }, + { + "word": "miércoles", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Wednesday", + "example_sentence_native": "Nos vemos el miércoles.", + "example_sentence_english": "See you on Wednesday.", + "pos": "noun", + "word_frequency": 1384 + }, + { + "word": "novio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boyfriend;groom", + "example_sentence_native": "Mi novio me compró flores.", + "example_sentence_english": "My boyfriend bought me flowers.", + "pos": "noun", + "word_frequency": 1385 + }, + { + "word": "nuevamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "again;newly", + "example_sentence_native": "Lo intentaremos nuevamente mañana.", + "example_sentence_english": "We will try again tomorrow.", + "pos": "adverb", + "word_frequency": 1386 + }, + { + "word": "periódico", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "newspaper", + "example_sentence_native": "Leo el periódico todas las mañanas.", + "example_sentence_english": "I read the newspaper every morning.", + "pos": "noun", + "word_frequency": 1387 + }, + { + "word": "placer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "placer", + "example_sentence_native": "Es un placer conocerte.", + "example_sentence_english": "It's a pleasure to meet you.", + "pos": "noun", + "word_frequency": 1388 + }, + { + "word": "representación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representation;performance", + "example_sentence_native": "La representación teatral fue excelente.", + "example_sentence_english": "The theatrical performance was excellent.", + "pos": "noun", + "word_frequency": 1389 + }, + { + "word": "requerir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to require", + "example_sentence_native": "Este trabajo requiere mucha paciencia.", + "example_sentence_english": "This job requires a lot of patience.", + "pos": "verb", + "word_frequency": 1390 + }, + { + "word": "resumen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary", + "example_sentence_native": "Por favor, haz un resumen del capítulo.", + "example_sentence_english": "Please, make a summary of the chapter.", + "pos": "noun", + "word_frequency": 1391 + }, + { + "word": "seguido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuous;consecutive", + "example_sentence_native": "Ha llovido tres días seguidos.", + "example_sentence_english": "It has rained three consecutive days.", + "pos": "adjective", + "word_frequency": 1393 + }, + { + "word": "titular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headline;holder", + "example_sentence_native": "El titular del periódico era impactante.", + "example_sentence_english": "The newspaper headline was shocking.", + "pos": "noun", + "word_frequency": 1394 + }, + { + "word": "turismo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tourism", + "example_sentence_native": "El turismo es importante para la economía local.", + "example_sentence_english": "Tourism is important for the local economy.", + "pos": "noun", + "word_frequency": 1395 + }, + { + "word": "vender", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sell", + "example_sentence_native": "Quiero vender mi coche viejo.", + "example_sentence_english": "I want to sell my old car.", + "pos": "verb", + "word_frequency": 1396 + }, + { + "word": "viajar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to travel", + "example_sentence_native": "Me encanta viajar por el mundo.", + "example_sentence_english": "I love to travel around the world.", + "pos": "verb", + "word_frequency": 1397 + }, + { + "word": "vuelo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flight", + "example_sentence_native": "Mi vuelo sale a las ocho.", + "example_sentence_english": "My flight leaves at eight.", + "pos": "noun", + "word_frequency": 1398 + }, + { + "word": "actuar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act", + "example_sentence_native": "Él decidió actuar rápidamente.", + "example_sentence_english": "He decided to act quickly.", + "pos": "verb", + "word_frequency": 1400 + }, + { + "word": "alcance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope;reach", + "example_sentence_native": "El proyecto está fuera de nuestro alcance.", + "example_sentence_english": "The project is beyond our scope.", + "pos": "noun", + "word_frequency": 1401 + }, + { + "word": "anual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annual", + "example_sentence_native": "La reunión anual se celebra en mayo.", + "example_sentence_english": "The annual meeting is held in May.", + "pos": "adjective", + "word_frequency": 1402 + }, + { + "word": "archivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "file;archive", + "example_sentence_native": "Guarda el documento en el archivo.", + "example_sentence_english": "Save the document in the file.", + "pos": "noun", + "word_frequency": 1403 + }, + { + "word": "aumentar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to increase", + "example_sentence_native": "Necesitamos aumentar la producción.", + "example_sentence_english": "We need to increase production.", + "pos": "verb", + "word_frequency": 1404 + }, + { + "word": "cerrar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to close", + "example_sentence_native": "Por favor, cierra la puerta.", + "example_sentence_english": "Please, close the door.", + "pos": "verb", + "word_frequency": 1406 + }, + { + "word": "continuar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to continue", + "example_sentence_native": "Ella quiere continuar sus estudios.", + "example_sentence_english": "She wants to continue her studies.", + "pos": "verb", + "word_frequency": 1407 + }, + { + "word": "cuello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neck", + "example_sentence_native": "Me duele el cuello.", + "example_sentence_english": "My neck hurts.", + "pos": "noun", + "word_frequency": 1408 + }, + { + "word": "definitivamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definitively;definitely", + "example_sentence_native": "Definitivamente, es la mejor opción.", + "example_sentence_english": "Definitely, it's the best option.", + "pos": "adverb", + "word_frequency": 1409 + }, + { + "word": "dictadura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictatorship", + "example_sentence_native": "El país vivió una larga dictadura.", + "example_sentence_english": "The country lived under a long dictatorship.", + "pos": "noun", + "word_frequency": 1410 + }, + { + "word": "década", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decade", + "example_sentence_native": "Han pasado dos décadas desde entonces.", + "example_sentence_english": "Two decades have passed since then.", + "pos": "noun", + "word_frequency": 1411 + }, + { + "word": "establecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to establish", + "example_sentence_native": "Quieren establecer una nueva ley.", + "example_sentence_english": "They want to establish a new law.", + "pos": "verb", + "word_frequency": 1412 + }, + { + "word": "famoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "famous", + "example_sentence_native": "Es un actor muy famoso.", + "example_sentence_english": "He is a very famous actor.", + "pos": "adjective", + "word_frequency": 1413 + }, + { + "word": "gato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cat", + "example_sentence_native": "Mi gato es negro.", + "example_sentence_english": "My cat is black.", + "pos": "noun", + "word_frequency": 1414 + }, + { + "word": "gay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gay", + "example_sentence_native": "Él es abiertamente gay.", + "example_sentence_english": "He is openly gay.", + "pos": "adjective", + "word_frequency": 1415 + }, + { + "word": "lectura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reading", + "example_sentence_native": "La lectura es mi pasatiempo favorito.", + "example_sentence_english": "Reading is my favorite hobby.", + "pos": "noun", + "word_frequency": 1416 + }, + { + "word": "oír", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to hear", + "example_sentence_native": "No puedo oírte bien.", + "example_sentence_english": "I can't hear you well.", + "pos": "verb", + "word_frequency": 1419 + }, + { + "word": "príncipe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prince", + "example_sentence_native": "El príncipe visitó el castillo.", + "example_sentence_english": "The prince visited the castle.", + "pos": "noun", + "word_frequency": 1421 + }, + { + "word": "tiro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shot;throw", + "example_sentence_native": "Se escuchó un tiro en la distancia.", + "example_sentence_english": "A shot was heard in the distance.", + "pos": "noun", + "word_frequency": 1423 + }, + { + "word": "torno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lathe;around (in 'en torno a')", + "example_sentence_native": "El artesano trabaja con un torno.", + "example_sentence_english": "The artisan works with a lathe.", + "pos": "noun", + "word_frequency": 1424 + }, + { + "word": "abuela", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandmother", + "example_sentence_native": "Mi abuela cocina muy bien.", + "example_sentence_english": "My grandmother cooks very well.", + "pos": "noun", + "word_frequency": 1425 + }, + { + "word": "ahi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there", + "example_sentence_native": "Ponlo ahí, por favor.", + "example_sentence_english": "Put it there, please.", + "pos": "adverb", + "word_frequency": 1426 + }, + { + "word": "carretera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "road;highway", + "example_sentence_native": "La carretera está muy transitada.", + "example_sentence_english": "The road is very busy.", + "pos": "noun", + "word_frequency": 1427 + }, + { + "word": "caída", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fall;drop", + "example_sentence_native": "Tuvo una caída fuerte.", + "example_sentence_english": "He had a hard fall.", + "pos": "noun", + "word_frequency": 1428 + }, + { + "word": "cola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tail;queue", + "example_sentence_native": "El perro movía la cola.", + "example_sentence_english": "The dog wagged its tail.", + "pos": "noun", + "word_frequency": 1429 + }, + { + "word": "disposición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disposition;arrangement", + "example_sentence_native": "Estoy a tu disposición.", + "example_sentence_english": "I am at your disposal.", + "pos": "noun", + "word_frequency": 1432 + }, + { + "word": "dueño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owner", + "example_sentence_native": "El dueño del perro es amable.", + "example_sentence_english": "The dog's owner is kind.", + "pos": "noun", + "word_frequency": 1433 + }, + { + "word": "editorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publishing house;editorial", + "example_sentence_native": "Trabaja en una editorial de libros.", + "example_sentence_english": "He works at a book publishing house.", + "pos": "noun", + "word_frequency": 1434 + }, + { + "word": "labor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labor;work", + "example_sentence_native": "Su labor es muy importante.", + "example_sentence_english": "His work is very important.", + "pos": "noun", + "word_frequency": 1437 + }, + { + "word": "lluvia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rain", + "example_sentence_native": "Hoy va a haber mucha lluvia.", + "example_sentence_english": "There will be a lot of rain today.", + "pos": "noun", + "word_frequency": 1438 + }, + { + "word": "marido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "husband", + "example_sentence_native": "Mi marido está de viaje.", + "example_sentence_english": "My husband is traveling.", + "pos": "noun", + "word_frequency": 1439 + }, + { + "word": "mostrar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to show", + "example_sentence_native": "¿Puedes mostrarme el camino?", + "example_sentence_english": "Can you show me the way?", + "pos": "verb", + "word_frequency": 1440 + }, + { + "word": "oeste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "west", + "example_sentence_native": "El sol se pone por el oeste.", + "example_sentence_english": "The sun sets in the west.", + "pos": "noun", + "word_frequency": 1441 + }, + { + "word": "suma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sum", + "example_sentence_native": "La suma de dos más dos es cuatro.", + "example_sentence_english": "The sum of two plus two is four.", + "pos": "noun", + "word_frequency": 1442 + }, + { + "word": "tasa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rate", + "example_sentence_native": "La tasa de desempleo ha disminuido.", + "example_sentence_english": "The unemployment rate has decreased.", + "pos": "noun", + "word_frequency": 1443 + }, + { + "word": "tranquilo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calm", + "example_sentence_native": "Mantente tranquilo en situaciones de estrés.", + "example_sentence_english": "Stay calm in stressful situations.", + "pos": "adjective", + "word_frequency": 1444 + }, + { + "word": "universal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "universal", + "example_sentence_native": "Es un derecho universal.", + "example_sentence_english": "It is a universal right.", + "pos": "adjective", + "word_frequency": 1445 + }, + { + "word": "vivienda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "housing", + "example_sentence_native": "Necesitamos encontrar una vivienda asequible.", + "example_sentence_english": "We need to find affordable housing.", + "pos": "noun", + "word_frequency": 1446 + }, + { + "word": "absolutamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolutely", + "example_sentence_native": "Estoy absolutamente de acuerdo contigo.", + "example_sentence_english": "I absolutely agree with you.", + "pos": "adverb", + "word_frequency": 1447 + }, + { + "word": "alegría", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joy", + "example_sentence_native": "Su llegada nos llenó de alegría.", + "example_sentence_english": "Her arrival filled us with joy.", + "pos": "noun", + "word_frequency": 1448 + }, + { + "word": "amistad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "friendship", + "example_sentence_native": "Valoramos mucho nuestra amistad.", + "example_sentence_english": "We value our friendship very much.", + "pos": "noun", + "word_frequency": 1449 + }, + { + "word": "anteriormente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previously", + "example_sentence_native": "Anteriormente trabajaba en otra empresa.", + "example_sentence_english": "Previously, I worked at another company.", + "pos": "adverb", + "word_frequency": 1450 + }, + { + "word": "cero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zero", + "example_sentence_native": "Empezamos desde cero.", + "example_sentence_english": "We start from zero.", + "pos": "noun", + "word_frequency": 1452 + }, + { + "word": "concierto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "concert", + "example_sentence_native": "Fuimos a un concierto anoche.", + "example_sentence_english": "We went to a concert last night.", + "pos": "noun", + "word_frequency": 1453 + }, + { + "word": "correr", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to run", + "example_sentence_native": "Me gusta correr por la mañana.", + "example_sentence_english": "I like to run in the morning.", + "pos": "verb", + "word_frequency": 1454 + }, + { + "word": "descripción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "description", + "example_sentence_native": "Dame una descripción detallada.", + "example_sentence_english": "Give me a detailed description.", + "pos": "noun", + "word_frequency": 1457 + }, + { + "word": "evolución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolution", + "example_sentence_native": "La evolución de la tecnología es rápida.", + "example_sentence_english": "The evolution of technology is fast.", + "pos": "noun", + "word_frequency": 1458 + }, + { + "word": "indígena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indigenous", + "example_sentence_native": "Respetamos las culturas indígenas.", + "example_sentence_english": "We respect indigenous cultures.", + "pos": "noun", + "word_frequency": 1459 + }, + { + "word": "infantil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childish;infant", + "example_sentence_native": "Es un libro infantil.", + "example_sentence_english": "It's a children's book.", + "pos": "adjective", + "word_frequency": 1460 + }, + { + "word": "moneda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coin;currency", + "example_sentence_native": "Necesito una moneda para el carrito.", + "example_sentence_english": "I need a coin for the cart.", + "pos": "noun", + "word_frequency": 1461 + }, + { + "word": "motor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engine;motor", + "example_sentence_native": "El motor del coche no arranca.", + "example_sentence_english": "The car's engine won't start.", + "pos": "noun", + "word_frequency": 1462 + }, + { + "word": "nacer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be born", + "example_sentence_native": "Nací en Madrid.", + "example_sentence_english": "I was born in Madrid.", + "pos": "verb", + "word_frequency": 1463 + }, + { + "word": "occidental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Western", + "example_sentence_native": "La cultura occidental es muy diversa.", + "example_sentence_english": "Western culture is very diverse.", + "pos": "adjective", + "word_frequency": 1464 + }, + { + "word": "permanente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "permanent", + "example_sentence_native": "Es una solución permanente.", + "example_sentence_english": "It's a permanent solution.", + "pos": "adjective", + "word_frequency": 1466 + }, + { + "word": "prácticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practically", + "example_sentence_native": "Prácticamente hemos terminado el proyecto.", + "example_sentence_english": "We have practically finished the project.", + "pos": "adverb", + "word_frequency": 1467 + }, + { + "word": "punta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip;point", + "example_sentence_native": "La punta del lápiz está rota.", + "example_sentence_english": "The tip of the pencil is broken.", + "pos": "noun", + "word_frequency": 1468 + }, + { + "word": "traducción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translation", + "example_sentence_native": "Necesito una buena traducción de este texto.", + "example_sentence_english": "I need a good translation of this text.", + "pos": "noun", + "word_frequency": 1470 + }, + { + "word": "tráfico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic", + "example_sentence_native": "Hay mucho tráfico en la ciudad.", + "example_sentence_english": "There is a lot of traffic in the city.", + "pos": "noun", + "word_frequency": 1471 + }, + { + "word": "ángel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "angel", + "example_sentence_native": "Ella es un ángel.", + "example_sentence_english": "She is an angel.", + "pos": "noun", + "word_frequency": 1472 + }, + { + "word": "adentro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside", + "example_sentence_native": "Entra, hace frío afuera, ven adentro.", + "example_sentence_english": "Come in, it's cold outside, come inside.", + "pos": "adverb", + "word_frequency": 1473 + }, + { + "word": "caliente", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hot", + "example_sentence_native": "El café está muy caliente.", + "example_sentence_english": "The coffee is very hot.", + "pos": "adjective", + "word_frequency": 1475 + }, + { + "word": "cariño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affection;darling", + "example_sentence_native": "Te tengo mucho cariño.", + "example_sentence_english": "I have a lot of affection for you.", + "pos": "noun", + "word_frequency": 1477 + }, + { + "word": "chino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Chinese", + "example_sentence_native": "Hablo un poco de chino.", + "example_sentence_english": "I speak a little Chinese.", + "pos": "adjective", + "word_frequency": 1478 + }, + { + "word": "constitucional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional", + "example_sentence_native": "Es un derecho constitucional.", + "example_sentence_english": "It is a constitutional right.", + "pos": "adjective", + "word_frequency": 1479 + }, + { + "word": "controlar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to control", + "example_sentence_native": "Necesitamos controlar la situación.", + "example_sentence_english": "We need to control the situation.", + "pos": "verb", + "word_frequency": 1480 + }, + { + "word": "coronel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonel", + "example_sentence_native": "El coronel dio las órdenes.", + "example_sentence_english": "The colonel gave the orders.", + "pos": "noun", + "word_frequency": 1481 + }, + { + "word": "disfrutar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to enjoy", + "example_sentence_native": "Me gusta disfrutar de la vida.", + "example_sentence_english": "I like to enjoy life.", + "pos": "verb", + "word_frequency": 1482 + }, + { + "word": "entero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whole;entire", + "example_sentence_native": "Comió el pastel entero.", + "example_sentence_english": "He ate the whole cake.", + "pos": "adjective", + "word_frequency": 1484 + }, + { + "word": "filosofía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophy", + "example_sentence_native": "Estudió filosofía en la universidad.", + "example_sentence_english": "He studied philosophy at university.", + "pos": "noun", + "word_frequency": 1486 + }, + { + "word": "licencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "license", + "example_sentence_native": "Necesito una licencia de conducir.", + "example_sentence_english": "I need a driver's license.", + "pos": "noun", + "word_frequency": 1489 + }, + { + "word": "parlamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliament", + "example_sentence_native": "El parlamento aprobó la nueva ley.", + "example_sentence_english": "The parliament approved the new law.", + "pos": "noun", + "word_frequency": 1490 + }, + { + "word": "pecho", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chest", + "example_sentence_native": "Se golpeó el pecho.", + "example_sentence_english": "He hit his chest.", + "pos": "noun", + "word_frequency": 1491 + }, + { + "word": "pelea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fight", + "example_sentence_native": "Tuvieron una pequeña pelea.", + "example_sentence_english": "They had a small fight.", + "pos": "noun", + "word_frequency": 1492 + }, + { + "word": "perfectamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfectly", + "example_sentence_native": "Entendí perfectamente lo que dijiste.", + "example_sentence_english": "I perfectly understood what you said.", + "pos": "adverb", + "word_frequency": 1493 + }, + { + "word": "proteger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protect", + "example_sentence_native": "Debemos proteger el medio ambiente.", + "example_sentence_english": "We must protect the environment.", + "pos": "verb", + "word_frequency": 1494 + }, + { + "word": "reducir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce", + "example_sentence_native": "Necesitamos reducir el consumo de energía.", + "example_sentence_english": "We need to reduce energy consumption.", + "pos": "verb", + "word_frequency": 1495 + }, + { + "word": "secundaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary", + "example_sentence_native": "La educación secundaria es importante.", + "example_sentence_english": "Secondary education is important.", + "pos": "adjective", + "word_frequency": 1496 + }, + { + "word": "toque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touch;knock", + "example_sentence_native": "Dio un toque a la puerta.", + "example_sentence_english": "He gave a knock on the door.", + "pos": "noun", + "word_frequency": 1497 + }, + { + "word": "tío", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "uncle", + "example_sentence_native": "Mi tío vive en Madrid.", + "example_sentence_english": "My uncle lives in Madrid.", + "pos": "noun", + "word_frequency": 1498 + }, + { + "word": "volumen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volume", + "example_sentence_native": "Sube el volumen de la música.", + "example_sentence_english": "Turn up the volume of the music.", + "pos": "noun", + "word_frequency": 1499 + }, + { + "word": "ámbito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope;field;area", + "example_sentence_native": "Es un experto en su ámbito.", + "example_sentence_english": "He is an expert in his field.", + "pos": "noun", + "word_frequency": 1500 + }, + { + "word": "alianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alliance", + "example_sentence_native": "Formaron una alianza estratégica.", + "example_sentence_english": "They formed a strategic alliance.", + "pos": "noun", + "word_frequency": 1501 + }, + { + "word": "amenaza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threat", + "example_sentence_native": "La sequía es una amenaza para la agricultura.", + "example_sentence_english": "Drought is a threat to agriculture.", + "pos": "noun", + "word_frequency": 1502 + }, + { + "word": "campeón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champion", + "example_sentence_native": "Es el campeón mundial de boxeo.", + "example_sentence_english": "He is the world boxing champion.", + "pos": "noun", + "word_frequency": 1504 + }, + { + "word": "castillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "castle", + "example_sentence_native": "Visitamos un castillo antiguo.", + "example_sentence_english": "We visited an old castle.", + "pos": "noun", + "word_frequency": 1505 + }, + { + "word": "colectivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collective", + "example_sentence_native": "Es un esfuerzo colectivo.", + "example_sentence_english": "It's a collective effort.", + "pos": "adjective", + "word_frequency": 1508 + }, + { + "word": "complejo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complex", + "example_sentence_native": "El problema es muy complejo.", + "example_sentence_english": "The problem is very complex.", + "pos": "adjective", + "word_frequency": 1509 + }, + { + "word": "conexión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection", + "example_sentence_native": "La conexión a internet es lenta.", + "example_sentence_english": "The internet connection is slow.", + "pos": "noun", + "word_frequency": 1510 + }, + { + "word": "consistir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consist of", + "example_sentence_native": "El plan consiste en tres fases.", + "example_sentence_english": "The plan consists of three phases.", + "pos": "verb", + "word_frequency": 1511 + }, + { + "word": "divertido", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fun;funny", + "example_sentence_native": "La película fue muy divertida.", + "example_sentence_english": "The movie was very fun.", + "pos": "adjective", + "word_frequency": 1512 + }, + { + "word": "fotografía", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photograph;photography", + "example_sentence_native": "Me gusta hacer fotografía.", + "example_sentence_english": "I like to do photography.", + "pos": "noun", + "word_frequency": 1513 + }, + { + "word": "límite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limit", + "example_sentence_native": "Hay un límite de velocidad.", + "example_sentence_english": "There is a speed limit.", + "pos": "noun", + "word_frequency": 1514 + }, + { + "word": "mezcla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mix;mixture", + "example_sentence_native": "Es una mezcla de culturas.", + "example_sentence_english": "It's a mix of cultures.", + "pos": "noun", + "word_frequency": 1515 + }, + { + "word": "parar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stop", + "example_sentence_native": "Por favor, para el coche.", + "example_sentence_english": "Please stop the car.", + "pos": "verb", + "word_frequency": 1516 + }, + { + "word": "poesía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poetry", + "example_sentence_native": "Le gusta leer poesía.", + "example_sentence_english": "He likes to read poetry.", + "pos": "noun", + "word_frequency": 1518 + }, + { + "word": "preferir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to prefer", + "example_sentence_native": "Prefiero café con leche.", + "example_sentence_english": "I prefer coffee with milk.", + "pos": "verb", + "word_frequency": 1519 + }, + { + "word": "raza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "race;breed", + "example_sentence_native": "Hay muchas razas de perros diferentes.", + "example_sentence_english": "There are many different dog breeds.", + "pos": "noun", + "word_frequency": 1521 + }, + { + "word": "reacción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reaction", + "example_sentence_native": "Su reacción fue de sorpresa.", + "example_sentence_english": "His reaction was one of surprise.", + "pos": "noun", + "word_frequency": 1522 + }, + { + "word": "salón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "living room;hall", + "example_sentence_native": "Nos reunimos en el salón para ver la televisión.", + "example_sentence_english": "We gathered in the living room to watch television.", + "pos": "noun", + "word_frequency": 1523 + }, + { + "word": "traer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to bring", + "example_sentence_native": "Por favor, trae el libro de la mesa.", + "example_sentence_english": "Please bring the book from the table.", + "pos": "verb", + "word_frequency": 1524 + }, + { + "word": "árbol", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tree", + "example_sentence_native": "El pájaro construyó su nido en el árbol.", + "example_sentence_english": "The bird built its nest in the tree.", + "pos": "noun", + "word_frequency": 1526 + }, + { + "word": "útil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "useful", + "example_sentence_native": "Esta herramienta es muy útil para el trabajo.", + "example_sentence_english": "This tool is very useful for the job.", + "pos": "adjective", + "word_frequency": 1527 + }, + { + "word": "amplio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ample;wide;spacious", + "example_sentence_native": "La casa tiene un jardín muy amplio.", + "example_sentence_english": "The house has a very spacious garden.", + "pos": "adjective", + "word_frequency": 1528 + }, + { + "word": "bosque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forest;woods", + "example_sentence_native": "Nos perdimos en el bosque durante la caminata.", + "example_sentence_english": "We got lost in the forest during the hike.", + "pos": "noun", + "word_frequency": 1529 + }, + { + "word": "denuncia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complaint;denunciation", + "example_sentence_native": "Presentó una denuncia por el robo.", + "example_sentence_english": "He filed a complaint about the theft.", + "pos": "noun", + "word_frequency": 1530 + }, + { + "word": "desarrollar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to develop", + "example_sentence_native": "Necesitamos desarrollar nuevas estrategias.", + "example_sentence_english": "We need to develop new strategies.", + "pos": "verb", + "word_frequency": 1531 + }, + { + "word": "factor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "factor", + "example_sentence_native": "El clima es un factor importante en la agricultura.", + "example_sentence_english": "Climate is an important factor in agriculture.", + "pos": "noun", + "word_frequency": 1532 + }, + { + "word": "fase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phase", + "example_sentence_native": "Estamos en la última fase del proyecto.", + "example_sentence_english": "We are in the final phase of the project.", + "pos": "noun", + "word_frequency": 1533 + }, + { + "word": "ideal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ideal", + "example_sentence_native": "Este es el lugar ideal para relajarse.", + "example_sentence_english": "This is the ideal place to relax.", + "pos": "adjective", + "word_frequency": 1534 + }, + { + "word": "ilegal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegal", + "example_sentence_native": "Es ilegal estacionar aquí.", + "example_sentence_english": "It is illegal to park here.", + "pos": "adjective", + "word_frequency": 1535 + }, + { + "word": "imperio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empire", + "example_sentence_native": "El Imperio Romano fue muy extenso.", + "example_sentence_english": "The Roman Empire was very extensive.", + "pos": "noun", + "word_frequency": 1536 + }, + { + "word": "jornada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "working day;journey;session", + "example_sentence_native": "La jornada laboral es de ocho horas.", + "example_sentence_english": "The working day is eight hours.", + "pos": "noun", + "word_frequency": 1538 + }, + { + "word": "nacimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birth", + "example_sentence_native": "Celebraron el nacimiento de su primer hijo.", + "example_sentence_english": "They celebrated the birth of their first child.", + "pos": "noun", + "word_frequency": 1539 + }, + { + "word": "participante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participant", + "example_sentence_native": "Cada participante recibió un certificado.", + "example_sentence_english": "Each participant received a certificate.", + "pos": "noun", + "word_frequency": 1540 + }, + { + "word": "patrimonio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heritage;patrimony", + "example_sentence_native": "La ciudad es Patrimonio de la Humanidad.", + "example_sentence_english": "The city is a World Heritage site.", + "pos": "noun", + "word_frequency": 1541 + }, + { + "word": "pertenecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to belong", + "example_sentence_native": "Este libro pertenece a la biblioteca.", + "example_sentence_english": "This book belongs to the library.", + "pos": "verb", + "word_frequency": 1542 + }, + { + "word": "pieza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piece;part", + "example_sentence_native": "Falta una pieza del rompecabezas.", + "example_sentence_english": "A piece of the puzzle is missing.", + "pos": "noun", + "word_frequency": 1543 + }, + { + "word": "primavera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spring", + "example_sentence_native": "La primavera es mi estación favorita.", + "example_sentence_english": "Spring is my favorite season.", + "pos": "noun", + "word_frequency": 1544 + }, + { + "word": "recientemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recently", + "example_sentence_native": "Lo vi recientemente en el supermercado.", + "example_sentence_english": "I saw him recently at the supermarket.", + "pos": "adverb", + "word_frequency": 1545 + }, + { + "word": "reconocer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize", + "example_sentence_native": "No pude reconocerlo con su nuevo corte de pelo.", + "example_sentence_english": "I couldn't recognize him with his new haircut.", + "pos": "verb", + "word_frequency": 1546 + }, + { + "word": "romper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to break", + "example_sentence_native": "No quiero romper el jarrón.", + "example_sentence_english": "I don't want to break the vase.", + "pos": "verb", + "word_frequency": 1547 + }, + { + "word": "rostro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "face", + "example_sentence_native": "Su rostro mostraba cansancio.", + "example_sentence_english": "His face showed tiredness.", + "pos": "noun", + "word_frequency": 1548 + }, + { + "word": "ruido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noise", + "example_sentence_native": "Había mucho ruido en la calle.", + "example_sentence_english": "There was a lot of noise in the street.", + "pos": "noun", + "word_frequency": 1549 + }, + { + "word": "sal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salt", + "example_sentence_native": "Pásame la sal, por favor.", + "example_sentence_english": "Pass me the salt, please.", + "pos": "noun", + "word_frequency": 1550 + }, + { + "word": "significado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meaning", + "example_sentence_native": "No entiendo el significado de esta palabra.", + "example_sentence_english": "I don't understand the meaning of this word.", + "pos": "noun", + "word_frequency": 1551 + }, + { + "word": "tomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volume (of a book)", + "example_sentence_native": "La enciclopedia tiene diez tomos.", + "example_sentence_english": "The encyclopedia has ten volumes.", + "pos": "noun", + "word_frequency": 1552 + }, + { + "word": "vestido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dress", + "example_sentence_native": "Compró un vestido nuevo para la fiesta.", + "example_sentence_english": "She bought a new dress for the party.", + "pos": "noun", + "word_frequency": 1553 + }, + { + "word": "virgen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virgin", + "example_sentence_native": "La Virgen María es una figura importante en el cristianismo.", + "example_sentence_english": "The Virgin Mary is an important figure in Christianity.", + "pos": "noun", + "word_frequency": 1554 + }, + { + "word": "actuación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance;action", + "example_sentence_native": "Su actuación en la obra fue excelente.", + "example_sentence_english": "His performance in the play was excellent.", + "pos": "noun", + "word_frequency": 1555 + }, + { + "word": "alcohol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alcohol", + "example_sentence_native": "No se permite el alcohol en este evento.", + "example_sentence_english": "Alcohol is not permitted at this event.", + "pos": "noun", + "word_frequency": 1556 + }, + { + "word": "apertura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opening", + "example_sentence_native": "La apertura de la tienda es mañana.", + "example_sentence_english": "The opening of the store is tomorrow.", + "pos": "noun", + "word_frequency": 1557 + }, + { + "word": "caballo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "horse", + "example_sentence_native": "Montó el caballo por el campo.", + "example_sentence_english": "He rode the horse through the field.", + "pos": "noun", + "word_frequency": 1558 + }, + { + "word": "cierre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closing;closure", + "example_sentence_native": "El cierre del parque es a las seis.", + "example_sentence_english": "The closing of the park is at six.", + "pos": "noun", + "word_frequency": 1559 + }, + { + "word": "circunstancia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circumstance", + "example_sentence_native": "Las circunstancias cambiaron rápidamente.", + "example_sentence_english": "The circumstances changed quickly.", + "pos": "noun", + "word_frequency": 1560 + }, + { + "word": "definición", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "definition", + "example_sentence_native": "Busca la definición de esa palabra en el diccionario.", + "example_sentence_english": "Look for the definition of that word in the dictionary.", + "pos": "noun", + "word_frequency": 1561 + }, + { + "word": "desastre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disaster", + "example_sentence_native": "La inundación fue un desastre natural.", + "example_sentence_english": "The flood was a natural disaster.", + "pos": "noun", + "word_frequency": 1562 + }, + { + "word": "efectivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effective", + "example_sentence_native": "El nuevo método es muy efectivo.", + "example_sentence_english": "The new method is very effective.", + "pos": "adjective", + "word_frequency": 1563 + }, + { + "word": "emergencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency", + "example_sentence_native": "Llama al 911 en caso de emergencia.", + "example_sentence_english": "Call 911 in case of emergency.", + "pos": "noun", + "word_frequency": 1564 + }, + { + "word": "enlace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "link", + "example_sentence_native": "Haz clic en el enlace para más información.", + "example_sentence_english": "Click on the link for more information.", + "pos": "noun", + "word_frequency": 1565 + }, + { + "word": "felicidad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happiness", + "example_sentence_native": "La felicidad es un estado mental.", + "example_sentence_english": "Happiness is a state of mind.", + "pos": "noun", + "word_frequency": 1566 + }, + { + "word": "firme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm", + "example_sentence_native": "Mantén una postura firme.", + "example_sentence_english": "Maintain a firm posture.", + "pos": "adjective", + "word_frequency": 1567 + }, + { + "word": "fácilmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "easily", + "example_sentence_native": "Puedes hacerlo fácilmente.", + "example_sentence_english": "You can do it easily.", + "pos": "adverb", + "word_frequency": 1568 + }, + { + "word": "guía", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guide", + "example_sentence_native": "Necesitamos una guía para el tour.", + "example_sentence_english": "We need a guide for the tour.", + "pos": "noun", + "word_frequency": 1569 + }, + { + "word": "inmediato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediate", + "example_sentence_native": "La respuesta fue inmediata.", + "example_sentence_english": "The response was immediate.", + "pos": "adjective", + "word_frequency": 1570 + }, + { + "word": "jardín", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garden", + "example_sentence_native": "Me gusta leer en el jardín.", + "example_sentence_english": "I like to read in the garden.", + "pos": "noun", + "word_frequency": 1572 + }, + { + "word": "maduro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mature", + "example_sentence_native": "La fruta está madura.", + "example_sentence_english": "The fruit is ripe.", + "pos": "adjective", + "word_frequency": 1573 + }, + { + "word": "mina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mine", + "example_sentence_native": "Trabaja en una mina de carbón.", + "example_sentence_english": "He works in a coal mine.", + "pos": "noun", + "word_frequency": 1575 + }, + { + "word": "máquina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "machine", + "example_sentence_native": "Esta máquina es muy eficiente.", + "example_sentence_english": "This machine is very efficient.", + "pos": "noun", + "word_frequency": 1576 + }, + { + "word": "personalidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personality", + "example_sentence_native": "Tiene una personalidad muy fuerte.", + "example_sentence_english": "He has a very strong personality.", + "pos": "noun", + "word_frequency": 1577 + }, + { + "word": "perspectiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perspective", + "example_sentence_native": "Necesitamos una nueva perspectiva sobre el problema.", + "example_sentence_english": "We need a new perspective on the problem.", + "pos": "noun", + "word_frequency": 1578 + }, + { + "word": "peña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rock", + "example_sentence_native": "Subimos a la cima de la peña.", + "example_sentence_english": "We climbed to the top of the rock.", + "pos": "noun", + "word_frequency": 1579 + }, + { + "word": "recuperar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recover", + "example_sentence_native": "Espero recuperar mi salud pronto.", + "example_sentence_english": "I hope to recover my health soon.", + "pos": "verb", + "word_frequency": 1580 + }, + { + "word": "rock", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rock", + "example_sentence_native": "Me gusta escuchar música rock.", + "example_sentence_english": "I like listening to rock music.", + "pos": "noun", + "word_frequency": 1581 + }, + { + "word": "agricultura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agriculture", + "example_sentence_native": "La agricultura es importante para la economía.", + "example_sentence_english": "Agriculture is important for the economy.", + "pos": "noun", + "word_frequency": 1583 + }, + { + "word": "alemán", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "German", + "example_sentence_native": "Hablo un poco de alemán.", + "example_sentence_english": "I speak a little German.", + "pos": "adjective", + "word_frequency": 1584 + }, + { + "word": "alternativa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternative", + "example_sentence_native": "Buscamos una solución alternativa.", + "example_sentence_english": "We are looking for an alternative solution.", + "pos": "adjective", + "word_frequency": 1585 + }, + { + "word": "arena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sand", + "example_sentence_native": "Los niños juegan en la arena.", + "example_sentence_english": "The children play in the sand.", + "pos": "noun", + "word_frequency": 1586 + }, + { + "word": "argumento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "argument", + "example_sentence_native": "Su argumento era muy convincente.", + "example_sentence_english": "His argument was very convincing.", + "pos": "noun", + "word_frequency": 1587 + }, + { + "word": "caminar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to walk", + "example_sentence_native": "Me gusta caminar por el parque.", + "example_sentence_english": "I like to walk in the park.", + "pos": "verb", + "word_frequency": 1589 + }, + { + "word": "combate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combat", + "example_sentence_native": "El soldado entró en combate.", + "example_sentence_english": "The soldier entered combat.", + "pos": "noun", + "word_frequency": 1591 + }, + { + "word": "consulta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consultation", + "example_sentence_native": "Tengo una consulta con el médico.", + "example_sentence_english": "I have a consultation with the doctor.", + "pos": "noun", + "word_frequency": 1592 + }, + { + "word": "corresponder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to correspond", + "example_sentence_native": "Su respuesta no corresponde con la pregunta.", + "example_sentence_english": "His answer does not correspond to the question.", + "pos": "verb", + "word_frequency": 1593 + }, + { + "word": "demostrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demonstrate", + "example_sentence_native": "Quiero demostrar mis habilidades.", + "example_sentence_english": "I want to demonstrate my skills.", + "pos": "verb", + "word_frequency": 1594 + }, + { + "word": "dignidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dignity", + "example_sentence_native": "Defendió su dignidad con valentía.", + "example_sentence_english": "He defended his dignity with courage.", + "pos": "noun", + "word_frequency": 1595 + }, + { + "word": "enviar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send", + "example_sentence_native": "Voy a enviar un correo electrónico.", + "example_sentence_english": "I am going to send an email.", + "pos": "verb", + "word_frequency": 1596 + }, + { + "word": "extremo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extreme", + "example_sentence_native": "Llegamos al extremo del camino.", + "example_sentence_english": "We reached the end of the road.", + "pos": "noun", + "word_frequency": 1597 + }, + { + "word": "generar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to generate", + "example_sentence_native": "La fábrica genera mucha energía.", + "example_sentence_english": "The factory generates a lot of energy.", + "pos": "verb", + "word_frequency": 1598 + }, + { + "word": "gol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goal", + "example_sentence_native": "Marcó un gol en el último minuto.", + "example_sentence_english": "He scored a goal in the last minute.", + "pos": "noun", + "word_frequency": 1599 + }, + { + "word": "inferior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inferior", + "example_sentence_native": "La calidad de este producto es inferior.", + "example_sentence_english": "The quality of this product is inferior.", + "pos": "adjective", + "word_frequency": 1600 + }, + { + "word": "mental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mental", + "example_sentence_native": "Necesita apoyo mental.", + "example_sentence_english": "He needs mental support.", + "pos": "adjective", + "word_frequency": 1602 + }, + { + "word": "montaña", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mountain", + "example_sentence_native": "Nos gusta escalar montañas.", + "example_sentence_english": "We like to climb mountains.", + "pos": "noun", + "word_frequency": 1603 + }, + { + "word": "musical", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musical", + "example_sentence_native": "Ella tiene mucho talento musical.", + "example_sentence_english": "She has a lot of musical talent.", + "pos": "adjective", + "word_frequency": 1604 + }, + { + "word": "orgullo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pride", + "example_sentence_native": "Siente mucho orgullo por sus hijos.", + "example_sentence_english": "He feels a lot of pride for his children.", + "pos": "noun", + "word_frequency": 1605 + }, + { + "word": "oriente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "east", + "example_sentence_native": "El sol sale por el oriente.", + "example_sentence_english": "The sun rises in the east.", + "pos": "noun", + "word_frequency": 1606 + }, + { + "word": "paciente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "patient", + "example_sentence_native": "Es importante ser paciente.", + "example_sentence_english": "It is important to be patient.", + "pos": "adjective", + "word_frequency": 1607 + }, + { + "word": "pasión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passion", + "example_sentence_native": "Su pasión por la música es evidente.", + "example_sentence_english": "His passion for music is evident.", + "pos": "noun", + "word_frequency": 1608 + }, + { + "word": "pintura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painting", + "example_sentence_native": "La pintura de la pared es nueva.", + "example_sentence_english": "The paint on the wall is new.", + "pos": "noun", + "word_frequency": 1609 + }, + { + "word": "pista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "track", + "example_sentence_native": "La policía encontró una pista importante.", + "example_sentence_english": "The police found an important clue.", + "pos": "noun", + "word_frequency": 1610 + }, + { + "word": "positivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "positive", + "example_sentence_native": "Siempre intenta mantener una actitud positiva.", + "example_sentence_english": "Always try to maintain a positive attitude.", + "pos": "adjective", + "word_frequency": 1611 + }, + { + "word": "promoción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promotion", + "example_sentence_native": "Recibió una promoción en su trabajo.", + "example_sentence_english": "He received a promotion at his job.", + "pos": "noun", + "word_frequency": 1612 + }, + { + "word": "reciente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recent", + "example_sentence_native": "Es un evento reciente.", + "example_sentence_english": "It is a recent event.", + "pos": "adjective", + "word_frequency": 1613 + }, + { + "word": "regresar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to return", + "example_sentence_native": "Necesito regresar a casa.", + "example_sentence_english": "I need to return home.", + "pos": "verb", + "word_frequency": 1614 + }, + { + "word": "relacionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "related", + "example_sentence_native": "Este tema está relacionado con el anterior.", + "example_sentence_english": "This topic is related to the previous one.", + "pos": "adjective", + "word_frequency": 1615 + }, + { + "word": "reserva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reservation", + "example_sentence_native": "Hice una reserva en el restaurante.", + "example_sentence_english": "I made a reservation at the restaurant.", + "pos": "noun", + "word_frequency": 1616 + }, + { + "word": "ritmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhythm", + "example_sentence_native": "El ritmo de la música es pegadizo.", + "example_sentence_english": "The rhythm of the music is catchy.", + "pos": "noun", + "word_frequency": 1617 + }, + { + "word": "robo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theft", + "example_sentence_native": "La policía investiga el robo.", + "example_sentence_english": "The police are investigating the robbery.", + "pos": "noun", + "word_frequency": 1618 + }, + { + "word": "temperatura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "temperature", + "example_sentence_native": "La temperatura ha bajado mucho.", + "example_sentence_english": "The temperature has dropped a lot.", + "pos": "noun", + "word_frequency": 1620 + }, + { + "word": "tono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tone", + "example_sentence_native": "Su tono de voz era muy serio.", + "example_sentence_english": "His tone of voice was very serious.", + "pos": "noun", + "word_frequency": 1621 + }, + { + "word": "variedad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variety", + "example_sentence_native": "Ofrecen una gran variedad de productos.", + "example_sentence_english": "They offer a great variety of products.", + "pos": "noun", + "word_frequency": 1623 + }, + { + "word": "únicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only", + "example_sentence_native": "Únicamente él sabe la verdad.", + "example_sentence_english": "Only he knows the truth.", + "pos": "adverb", + "word_frequency": 1625 + }, + { + "word": "academia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "academy", + "example_sentence_native": "Asiste a la academia de baile.", + "example_sentence_english": "She attends the dance academy.", + "pos": "noun", + "word_frequency": 1626 + }, + { + "word": "activo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "active", + "example_sentence_native": "Es una persona muy activa.", + "example_sentence_english": "He is a very active person.", + "pos": "adjective", + "word_frequency": 1627 + }, + { + "word": "ausencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absence", + "example_sentence_native": "Su ausencia fue notada.", + "example_sentence_english": "His absence was noted.", + "pos": "noun", + "word_frequency": 1628 + }, + { + "word": "cabello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hair", + "example_sentence_native": "Tiene el cabello largo y rubio.", + "example_sentence_english": "She has long, blonde hair.", + "pos": "noun", + "word_frequency": 1630 + }, + { + "word": "cercano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "close", + "example_sentence_native": "Vive en un pueblo cercano.", + "example_sentence_english": "He lives in a nearby town.", + "pos": "adjective", + "word_frequency": 1631 + }, + { + "word": "dispuesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willing", + "example_sentence_native": "Estoy dispuesto a ayudarte.", + "example_sentence_english": "I am willing to help you.", + "pos": "adjective", + "word_frequency": 1632 + }, + { + "word": "diálogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialogue", + "example_sentence_native": "Es importante mantener un diálogo abierto.", + "example_sentence_english": "It is important to maintain an open dialogue.", + "pos": "noun", + "word_frequency": 1633 + }, + { + "word": "estadio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stadium", + "example_sentence_native": "El concierto será en el estadio.", + "example_sentence_english": "The concert will be in the stadium.", + "pos": "noun", + "word_frequency": 1634 + }, + { + "word": "inicial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initial", + "example_sentence_native": "La fase inicial del proyecto es crucial.", + "example_sentence_english": "The initial phase of the project is crucial.", + "pos": "adjective", + "word_frequency": 1636 + }, + { + "word": "joder", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to screw (vulgar)", + "example_sentence_native": "¡Joder, qué frío hace!", + "example_sentence_english": "Damn, it's cold!", + "pos": "verb", + "word_frequency": 1637 + }, + { + "word": "locura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "madness", + "example_sentence_native": "Fue una locura viajar sin plan.", + "example_sentence_english": "It was madness to travel without a plan.", + "pos": "noun", + "word_frequency": 1638 + }, + { + "word": "molestar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bother", + "example_sentence_native": "No me gusta molestar a la gente.", + "example_sentence_english": "I don't like to bother people.", + "pos": "verb", + "word_frequency": 1639 + }, + { + "word": "obvio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obvious", + "example_sentence_native": "Es obvio que está cansado.", + "example_sentence_english": "It's obvious that he is tired.", + "pos": "adjective", + "word_frequency": 1640 + }, + { + "word": "plano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plan;flat (surface)", + "example_sentence_native": "Necesitamos un plano de la casa.", + "example_sentence_english": "We need a plan of the house.", + "pos": "noun", + "word_frequency": 1641 + }, + { + "word": "poquito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a little bit", + "example_sentence_native": "Dame un poquito de agua.", + "example_sentence_english": "Give me a little bit of water.", + "pos": "noun", + "word_frequency": 1642 + }, + { + "word": "puro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pure", + "example_sentence_native": "El agua de montaña es pura.", + "example_sentence_english": "The mountain water is pure.", + "pos": "adjective", + "word_frequency": 1643 + }, + { + "word": "risa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laugh;laughter", + "example_sentence_native": "Su risa llenó la habitación.", + "example_sentence_english": "Her laughter filled the room.", + "pos": "noun", + "word_frequency": 1644 + }, + { + "word": "rural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural", + "example_sentence_native": "Vivimos en una zona rural.", + "example_sentence_english": "We live in a rural area.", + "pos": "adjective", + "word_frequency": 1645 + }, + { + "word": "ruso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Russian", + "example_sentence_native": "Habla ruso con fluidez.", + "example_sentence_english": "He speaks Russian fluently.", + "pos": "adjective", + "word_frequency": 1646 + }, + { + "word": "socialista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialist", + "example_sentence_native": "Es un partido político socialista.", + "example_sentence_english": "It is a socialist political party.", + "pos": "adjective", + "word_frequency": 1647 + }, + { + "word": "triunfo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triumph;victory", + "example_sentence_native": "La victoria fue un gran triunfo para el equipo.", + "example_sentence_english": "The victory was a great triumph for the team.", + "pos": "noun", + "word_frequency": 1648 + }, + { + "word": "tropa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troop", + "example_sentence_native": "Las tropas avanzaron hacia la frontera.", + "example_sentence_english": "The troops advanced towards the border.", + "pos": "noun", + "word_frequency": 1649 + }, + { + "word": "ventana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "window", + "example_sentence_native": "Abre la ventana, por favor.", + "example_sentence_english": "Open the window, please.", + "pos": "noun", + "word_frequency": 1650 + }, + { + "word": "ánimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spirit;mood;encouragement", + "example_sentence_native": "¡Ánimo, ya casi terminamos!", + "example_sentence_english": "Cheer up, we're almost done!", + "pos": "noun", + "word_frequency": 1651 + }, + { + "word": "absoluto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolute", + "example_sentence_native": "Tiene confianza absoluta en sí mismo.", + "example_sentence_english": "He has absolute confidence in himself.", + "pos": "adjective", + "word_frequency": 1652 + }, + { + "word": "acceder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to access;to agree", + "example_sentence_native": "No puedo acceder a mi cuenta.", + "example_sentence_english": "I cannot access my account.", + "pos": "verb", + "word_frequency": 1653 + }, + { + "word": "actor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actor", + "example_sentence_native": "Es un actor muy famoso.", + "example_sentence_english": "He is a very famous actor.", + "pos": "noun", + "word_frequency": 1654 + }, + { + "word": "asegurar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assure;to secure;to ensure", + "example_sentence_native": "Quiero asegurar que todo esté bien.", + "example_sentence_english": "I want to ensure that everything is fine.", + "pos": "verb", + "word_frequency": 1656 + }, + { + "word": "bar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bar;pub", + "example_sentence_native": "Vamos al bar a tomar algo.", + "example_sentence_english": "Let's go to the bar for a drink.", + "pos": "noun", + "word_frequency": 1657 + }, + { + "word": "caballero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gentleman;knight", + "example_sentence_native": "Es un verdadero caballero.", + "example_sentence_english": "He is a true gentleman.", + "pos": "noun", + "word_frequency": 1658 + }, + { + "word": "electrónico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronic", + "example_sentence_native": "Necesito un dispositivo electrónico nuevo.", + "example_sentence_english": "I need a new electronic device.", + "pos": "adjective", + "word_frequency": 1660 + }, + { + "word": "eliminar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to eliminate;to remove", + "example_sentence_native": "Debemos eliminar los errores.", + "example_sentence_english": "We must eliminate the errors.", + "pos": "verb", + "word_frequency": 1661 + }, + { + "word": "explicación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "explanation", + "example_sentence_native": "Dame una explicación clara.", + "example_sentence_english": "Give me a clear explanation.", + "pos": "noun", + "word_frequency": 1662 + }, + { + "word": "ganador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winner", + "example_sentence_native": "El ganador recibirá un premio.", + "example_sentence_english": "The winner will receive a prize.", + "pos": "noun", + "word_frequency": 1663 + }, + { + "word": "hoja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leaf;sheet (of paper)", + "example_sentence_native": "La hoja del árbol cayó.", + "example_sentence_english": "The leaf fell from the tree.", + "pos": "noun", + "word_frequency": 1665 + }, + { + "word": "implicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imply;to involve", + "example_sentence_native": "Su decisión implica grandes cambios.", + "example_sentence_english": "His decision implies big changes.", + "pos": "verb", + "word_frequency": 1666 + }, + { + "word": "marina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navy;marine", + "example_sentence_native": "La marina protege las costas.", + "example_sentence_english": "The navy protects the coasts.", + "pos": "noun", + "word_frequency": 1667 + }, + { + "word": "múltiple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiple", + "example_sentence_native": "Hay múltiples opciones disponibles.", + "example_sentence_english": "There are multiple options available.", + "pos": "adjective", + "word_frequency": 1669 + }, + { + "word": "obviamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obviously", + "example_sentence_native": "Obviamente, no entendió la pregunta.", + "example_sentence_english": "Obviously, he didn't understand the question.", + "pos": "adverb", + "word_frequency": 1670 + }, + { + "word": "olvidar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to forget", + "example_sentence_native": "No olvides tus llaves.", + "example_sentence_english": "Don't forget your keys.", + "pos": "verb", + "word_frequency": 1671 + }, + { + "word": "parecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resemblance;likeness", + "example_sentence_native": "Hay un gran parecido entre ellos.", + "example_sentence_english": "There is a great resemblance between them.", + "pos": "noun", + "word_frequency": 1672 + }, + { + "word": "pierna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "leg", + "example_sentence_native": "Me duele la pierna.", + "example_sentence_english": "My leg hurts.", + "pos": "noun", + "word_frequency": 1673 + }, + { + "word": "poeta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poet", + "example_sentence_native": "Es un famoso poeta español.", + "example_sentence_english": "He is a famous Spanish poet.", + "pos": "noun", + "word_frequency": 1674 + }, + { + "word": "primario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primary", + "example_sentence_native": "La educación primaria es fundamental.", + "example_sentence_english": "Primary education is fundamental.", + "pos": "adjective", + "word_frequency": 1675 + }, + { + "word": "procedimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure", + "example_sentence_native": "Sigue el procedimiento paso a paso.", + "example_sentence_english": "Follow the procedure step by step.", + "pos": "noun", + "word_frequency": 1676 + }, + { + "word": "senado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senate", + "example_sentence_native": "El proyecto de ley fue aprobado por el senado.", + "example_sentence_english": "The bill was approved by the senate.", + "pos": "noun", + "word_frequency": 1677 + }, + { + "word": "torre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tower", + "example_sentence_native": "La torre Eiffel es muy alta.", + "example_sentence_english": "The Eiffel Tower is very tall.", + "pos": "noun", + "word_frequency": 1678 + }, + { + "word": "zapato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shoe", + "example_sentence_native": "Me compré un par de zapatos nuevos.", + "example_sentence_english": "I bought a new pair of shoes.", + "pos": "noun", + "word_frequency": 1680 + }, + { + "word": "afirmar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to affirm;to state", + "example_sentence_native": "Él afirmó que la información era correcta.", + "example_sentence_english": "He affirmed that the information was correct.", + "pos": "verb", + "word_frequency": 1681 + }, + { + "word": "americano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "American", + "example_sentence_native": "Ella es una estudiante americana.", + "example_sentence_english": "She is an American student.", + "pos": "adjective", + "word_frequency": 1682 + }, + { + "word": "barco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boat;ship", + "example_sentence_native": "Vimos un barco grande en el puerto.", + "example_sentence_english": "We saw a big boat in the port.", + "pos": "noun", + "word_frequency": 1685 + }, + { + "word": "bomba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bomb;pump", + "example_sentence_native": "La bomba de agua no funciona.", + "example_sentence_english": "The water pump is not working.", + "pos": "noun", + "word_frequency": 1686 + }, + { + "word": "cerveza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beer", + "example_sentence_native": "¿Quieres una cerveza fría?", + "example_sentence_english": "Do you want a cold beer?", + "pos": "noun", + "word_frequency": 1687 + }, + { + "word": "clásico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classic", + "example_sentence_native": "Es una película clásica.", + "example_sentence_english": "It's a classic movie.", + "pos": "adjective", + "word_frequency": 1688 + }, + { + "word": "cuadro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painting;picture;square", + "example_sentence_native": "Hay un cuadro hermoso en la pared.", + "example_sentence_english": "There is a beautiful painting on the wall.", + "pos": "noun", + "word_frequency": 1689 + }, + { + "word": "dedo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "finger;toe", + "example_sentence_native": "Me golpeé el dedo del pie.", + "example_sentence_english": "I stubbed my toe.", + "pos": "noun", + "word_frequency": 1690 + }, + { + "word": "federación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federation", + "example_sentence_native": "La federación de fútbol anunció nuevas reglas.", + "example_sentence_english": "The football federation announced new rules.", + "pos": "noun", + "word_frequency": 1693 + }, + { + "word": "gloria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glory", + "example_sentence_native": "Alcanzaron la gloria después de mucho esfuerzo.", + "example_sentence_english": "They achieved glory after much effort.", + "pos": "noun", + "word_frequency": 1694 + }, + { + "word": "granada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pomegranate;grenade", + "example_sentence_native": "Me gusta el jugo de granada.", + "example_sentence_english": "I like pomegranate juice.", + "pos": "noun", + "word_frequency": 1695 + }, + { + "word": "impresión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impression;print", + "example_sentence_native": "Tuve una buena impresión de él.", + "example_sentence_english": "I had a good impression of him.", + "pos": "noun", + "word_frequency": 1697 + }, + { + "word": "instalación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "installation;facility", + "example_sentence_native": "La instalación del software fue rápida.", + "example_sentence_english": "The software installation was quick.", + "pos": "noun", + "word_frequency": 1698 + }, + { + "word": "numeroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numerous", + "example_sentence_native": "Había un público numeroso en el concierto.", + "example_sentence_english": "There was a numerous audience at the concert.", + "pos": "adjective", + "word_frequency": 1700 + }, + { + "word": "oriental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oriental;eastern", + "example_sentence_native": "La cultura oriental es muy rica.", + "example_sentence_english": "Oriental culture is very rich.", + "pos": "adjective", + "word_frequency": 1701 + }, + { + "word": "salvar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to save;to rescue", + "example_sentence_native": "El bombero logró salvar al gato del árbol.", + "example_sentence_english": "The firefighter managed to save the cat from the tree.", + "pos": "verb", + "word_frequency": 1702 + }, + { + "word": "talento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talent", + "example_sentence_native": "Ella tiene mucho talento para la música.", + "example_sentence_english": "She has a lot of talent for music.", + "pos": "noun", + "word_frequency": 1703 + }, + { + "word": "visitar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to visit", + "example_sentence_native": "Quiero visitar España el próximo año.", + "example_sentence_english": "I want to visit Spain next year.", + "pos": "verb", + "word_frequency": 1704 + }, + { + "word": "aniversario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anniversary", + "example_sentence_native": "Celebramos nuestro aniversario de boda.", + "example_sentence_english": "We celebrated our wedding anniversary.", + "pos": "noun", + "word_frequency": 1705 + }, + { + "word": "anoche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "last night", + "example_sentence_native": "Anoche llovió mucho.", + "example_sentence_english": "It rained a lot last night.", + "pos": "adverb", + "word_frequency": 1706 + }, + { + "word": "aviso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notice;warning", + "example_sentence_native": "Recibimos un aviso importante.", + "example_sentence_english": "We received an important notice.", + "pos": "noun", + "word_frequency": 1708 + }, + { + "word": "cien", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "one hundred", + "example_sentence_native": "Tengo cien euros.", + "example_sentence_english": "I have one hundred euros.", + "pos": "noun", + "word_frequency": 1709 + }, + { + "word": "comparación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparison", + "example_sentence_native": "No hay comparación entre los dos.", + "example_sentence_english": "There is no comparison between the two.", + "pos": "noun", + "word_frequency": 1710 + }, + { + "word": "comunista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communist", + "example_sentence_native": "El partido comunista celebró una reunión.", + "example_sentence_english": "The communist party held a meeting.", + "pos": "adjective", + "word_frequency": 1711 + }, + { + "word": "diente", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tooth", + "example_sentence_native": "Me duele un diente.", + "example_sentence_english": "A tooth hurts.", + "pos": "noun", + "word_frequency": 1712 + }, + { + "word": "dificultad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difficulty", + "example_sentence_native": "Tuvimos algunas dificultades.", + "example_sentence_english": "We had some difficulties.", + "pos": "noun", + "word_frequency": 1713 + }, + { + "word": "echar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw;to cast;to pour;to expel", + "example_sentence_native": "Voy a echar la carta al buzón.", + "example_sentence_english": "I'm going to mail the letter.", + "pos": "verb", + "word_frequency": 1714 + }, + { + "word": "ejecución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "execution;performance", + "example_sentence_native": "La ejecución del plan fue impecable.", + "example_sentence_english": "The execution of the plan was impeccable.", + "pos": "noun", + "word_frequency": 1715 + }, + { + "word": "entorno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environment;surroundings", + "example_sentence_native": "El entorno de trabajo es muy agradable.", + "example_sentence_english": "The work environment is very pleasant.", + "pos": "noun", + "word_frequency": 1716 + }, + { + "word": "experto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expert", + "example_sentence_native": "Él es un experto en informática.", + "example_sentence_english": "He is an expert in computer science.", + "pos": "noun", + "word_frequency": 1717 + }, + { + "word": "extensión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;extent", + "example_sentence_native": "La extensión del terreno es considerable.", + "example_sentence_english": "The extent of the land is considerable.", + "pos": "noun", + "word_frequency": 1718 + }, + { + "word": "físico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical", + "example_sentence_native": "Necesito hacer más ejercicio físico.", + "example_sentence_english": "I need to do more physical exercise.", + "pos": "adjective", + "word_frequency": 1719 + }, + { + "word": "homenaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homage;tribute", + "example_sentence_native": "Le rindieron un homenaje póstumo.", + "example_sentence_english": "They paid him a posthumous homage.", + "pos": "noun", + "word_frequency": 1720 + }, + { + "word": "interno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internal;inside", + "example_sentence_native": "El problema es de naturaleza interna.", + "example_sentence_english": "The problem is of an internal nature.", + "pos": "adjective", + "word_frequency": 1721 + }, + { + "word": "llorar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cry", + "example_sentence_native": "No pudo evitar llorar de alegría.", + "example_sentence_english": "She couldn't help but cry with joy.", + "pos": "verb", + "word_frequency": 1723 + }, + { + "word": "meta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goal;finish line", + "example_sentence_native": "Su meta es aprender español fluido.", + "example_sentence_english": "Her goal is to learn fluent Spanish.", + "pos": "noun", + "word_frequency": 1724 + }, + { + "word": "petróleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil;petroleum", + "example_sentence_native": "El precio del petróleo ha subido.", + "example_sentence_english": "The price of oil has gone up.", + "pos": "noun", + "word_frequency": 1726 + }, + { + "word": "posteriormente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsequently;later", + "example_sentence_native": "Posteriormente, se mudaron a otra ciudad.", + "example_sentence_english": "Subsequently, they moved to another city.", + "pos": "adverb", + "word_frequency": 1727 + }, + { + "word": "potencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potential", + "example_sentence_native": "Tiene un gran potencial para el éxito.", + "example_sentence_english": "He has great potential for success.", + "pos": "adjective", + "word_frequency": 1728 + }, + { + "word": "profundo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deep;profound", + "example_sentence_native": "El lago es muy profundo.", + "example_sentence_english": "The lake is very deep.", + "pos": "adjective", + "word_frequency": 1729 + }, + { + "word": "regular", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "regular;average", + "example_sentence_native": "Su rendimiento fue regular.", + "example_sentence_english": "His performance was average.", + "pos": "adjective", + "word_frequency": 1730 + }, + { + "word": "renta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "income;rent", + "example_sentence_native": "Declaró su renta anual.", + "example_sentence_english": "He declared his annual income.", + "pos": "noun", + "word_frequency": 1731 + }, + { + "word": "señalar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to point out;to indicate", + "example_sentence_native": "Quería señalar un error en el informe.", + "example_sentence_english": "He wanted to point out an error in the report.", + "pos": "verb", + "word_frequency": 1732 + }, + { + "word": "taller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "workshop;garage", + "example_sentence_native": "Llevé mi coche al taller.", + "example_sentence_english": "I took my car to the garage.", + "pos": "noun", + "word_frequency": 1733 + }, + { + "word": "ventaja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantage", + "example_sentence_native": "Tener experiencia es una gran ventaja.", + "example_sentence_english": "Having experience is a great advantage.", + "pos": "noun", + "word_frequency": 1734 + }, + { + "word": "abrazo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hug", + "example_sentence_native": "Le dio un fuerte abrazo.", + "example_sentence_english": "She gave him a big hug.", + "pos": "noun", + "word_frequency": 1735 + }, + { + "word": "adulto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adult", + "example_sentence_native": "Los niños y los adultos disfrutaron del evento.", + "example_sentence_english": "Children and adults enjoyed the event.", + "pos": "noun", + "word_frequency": 1736 + }, + { + "word": "afectar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to affect", + "example_sentence_native": "La crisis económica afectó a muchas familias.", + "example_sentence_english": "The economic crisis affected many families.", + "pos": "verb", + "word_frequency": 1737 + }, + { + "word": "baile", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dance", + "example_sentence_native": "Vamos a un baile esta noche.", + "example_sentence_english": "We are going to a dance tonight.", + "pos": "noun", + "word_frequency": 1738 + }, + { + "word": "ciudadanía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citizenship", + "example_sentence_native": "Obtuvo la ciudadanía española.", + "example_sentence_english": "He obtained Spanish citizenship.", + "pos": "noun", + "word_frequency": 1739 + }, + { + "word": "dedicar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dedicate", + "example_sentence_native": "Se dedica a la enseñanza.", + "example_sentence_english": "He dedicates himself to teaching.", + "pos": "verb", + "word_frequency": 1741 + }, + { + "word": "descubrir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to discover", + "example_sentence_native": "Colón descubrió América en 1492.", + "example_sentence_english": "Columbus discovered America in 1492.", + "pos": "verb", + "word_frequency": 1742 + }, + { + "word": "desear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wish;to desire", + "example_sentence_native": "Te deseo lo mejor.", + "example_sentence_english": "I wish you the best.", + "pos": "verb", + "word_frequency": 1743 + }, + { + "word": "enseñanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teaching;education", + "example_sentence_native": "La enseñanza es su pasión.", + "example_sentence_english": "Teaching is her passion.", + "pos": "noun", + "word_frequency": 1744 + }, + { + "word": "entidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entity", + "example_sentence_native": "Es una entidad sin fines de lucro.", + "example_sentence_english": "It is a non-profit entity.", + "pos": "noun", + "word_frequency": 1745 + }, + { + "word": "entrenamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training", + "example_sentence_native": "El equipo está en pleno entrenamiento.", + "example_sentence_english": "The team is in full training.", + "pos": "noun", + "word_frequency": 1746 + }, + { + "word": "espectáculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "show;spectacle", + "example_sentence_native": "El espectáculo fue increíble.", + "example_sentence_english": "The show was incredible.", + "pos": "noun", + "word_frequency": 1747 + }, + { + "word": "esposo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "husband", + "example_sentence_native": "Mi esposo y yo viajamos mucho.", + "example_sentence_english": "My husband and I travel a lot.", + "pos": "noun", + "word_frequency": 1748 + }, + { + "word": "fenómeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phenomenon", + "example_sentence_native": "El cambio climático es un fenómeno global.", + "example_sentence_english": "Climate change is a global phenomenon.", + "pos": "noun", + "word_frequency": 1749 + }, + { + "word": "funcionamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functioning;operation", + "example_sentence_native": "Explicó el funcionamiento del nuevo sistema.", + "example_sentence_english": "He explained the functioning of the new system.", + "pos": "noun", + "word_frequency": 1750 + }, + { + "word": "horrible", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "horrible;terrible", + "example_sentence_native": "La película fue horrible.", + "example_sentence_english": "The movie was horrible.", + "pos": "adjective", + "word_frequency": 1751 + }, + { + "word": "intelectual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectual", + "example_sentence_native": "Es una persona muy intelectual.", + "example_sentence_english": "He is a very intellectual person.", + "pos": "adjective", + "word_frequency": 1752 + }, + { + "word": "lanzamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launch;release", + "example_sentence_native": "El lanzamiento del nuevo producto fue un éxito.", + "example_sentence_english": "The launch of the new product was a success.", + "pos": "noun", + "word_frequency": 1754 + }, + { + "word": "moderno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "modern", + "example_sentence_native": "Viven en un apartamento moderno.", + "example_sentence_english": "They live in a modern apartment.", + "pos": "adjective", + "word_frequency": 1756 + }, + { + "word": "pared", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wall", + "example_sentence_native": "La pared está pintada de blanco.", + "example_sentence_english": "The wall is painted white.", + "pos": "noun", + "word_frequency": 1757 + }, + { + "word": "paro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment;strike;stop", + "example_sentence_native": "La tasa de paro ha disminuido.", + "example_sentence_english": "The unemployment rate has decreased.", + "pos": "noun", + "word_frequency": 1758 + }, + { + "word": "particularmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particularly;especially", + "example_sentence_native": "Me gusta el chocolate, particularmente el negro.", + "example_sentence_english": "I like chocolate, particularly dark chocolate.", + "pos": "adverb", + "word_frequency": 1759 + }, + { + "word": "preocupar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worry", + "example_sentence_native": "No te preocupes por eso.", + "example_sentence_english": "Don't worry about that.", + "pos": "verb", + "word_frequency": 1760 + }, + { + "word": "provincial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provincial", + "example_sentence_native": "La vida provincial es más tranquila.", + "example_sentence_english": "Provincial life is calmer.", + "pos": "adjective", + "word_frequency": 1761 + }, + { + "word": "residencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "residence", + "example_sentence_native": "Su residencia principal está en la ciudad.", + "example_sentence_english": "His main residence is in the city.", + "pos": "noun", + "word_frequency": 1762 + }, + { + "word": "sonrisa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smile", + "example_sentence_native": "Su sonrisa iluminó la habitación.", + "example_sentence_english": "Her smile lit up the room.", + "pos": "noun", + "word_frequency": 1763 + }, + { + "word": "vehículo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vehicle", + "example_sentence_native": "Necesitamos un vehículo para el viaje.", + "example_sentence_english": "We need a vehicle for the trip.", + "pos": "noun", + "word_frequency": 1764 + }, + { + "word": "abuelo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandfather", + "example_sentence_native": "Mi abuelo me contó una historia.", + "example_sentence_english": "My grandfather told me a story.", + "pos": "noun", + "word_frequency": 1765 + }, + { + "word": "basar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to base", + "example_sentence_native": "Su argumento se basa en hechos.", + "example_sentence_english": "His argument is based on facts.", + "pos": "verb", + "word_frequency": 1767 + }, + { + "word": "bello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beautiful", + "example_sentence_native": "Es un día bello para pasear.", + "example_sentence_english": "It's a beautiful day for a walk.", + "pos": "adjective", + "word_frequency": 1768 + }, + { + "word": "colonia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colony", + "example_sentence_native": "La ciudad fue una antigua colonia romana.", + "example_sentence_english": "The city was an ancient Roman colony.", + "pos": "noun", + "word_frequency": 1770 + }, + { + "word": "cooperación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperation", + "example_sentence_native": "La cooperación es clave para el éxito.", + "example_sentence_english": "Cooperation is key to success.", + "pos": "noun", + "word_frequency": 1771 + }, + { + "word": "declarar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to declare", + "example_sentence_native": "El testigo va a declarar mañana.", + "example_sentence_english": "The witness is going to declare tomorrow.", + "pos": "verb", + "word_frequency": 1772 + }, + { + "word": "discutir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discuss", + "example_sentence_native": "Necesitamos discutir este tema.", + "example_sentence_english": "We need to discuss this topic.", + "pos": "verb", + "word_frequency": 1773 + }, + { + "word": "encuesta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey", + "example_sentence_native": "La encuesta mostró resultados interesantes.", + "example_sentence_english": "The survey showed interesting results.", + "pos": "noun", + "word_frequency": 1774 + }, + { + "word": "extra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extra", + "example_sentence_native": "Necesito una silla extra.", + "example_sentence_english": "I need an extra chair.", + "pos": "adjective", + "word_frequency": 1775 + }, + { + "word": "franco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "franc (currency)", + "example_sentence_native": "El franco suizo es una moneda fuerte.", + "example_sentence_english": "The Swiss franc is a strong currency.", + "pos": "noun", + "word_frequency": 1776 + }, + { + "word": "individual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "individual", + "example_sentence_native": "Cada estudiante tiene un plan individual.", + "example_sentence_english": "Each student has an individual plan.", + "pos": "adjective", + "word_frequency": 1777 + }, + { + "word": "individuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual", + "example_sentence_native": "Es un individuo muy talentoso.", + "example_sentence_english": "He is a very talented individual.", + "pos": "noun", + "word_frequency": 1778 + }, + { + "word": "infancia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childhood", + "example_sentence_native": "Tuvo una infancia feliz.", + "example_sentence_english": "He had a happy childhood.", + "pos": "noun", + "word_frequency": 1779 + }, + { + "word": "infraestructura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infrastructure", + "example_sentence_native": "La infraestructura de la ciudad necesita mejoras.", + "example_sentence_english": "The city's infrastructure needs improvements.", + "pos": "noun", + "word_frequency": 1780 + }, + { + "word": "ingeniería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engineering", + "example_sentence_native": "Estudió ingeniería en la universidad.", + "example_sentence_english": "He studied engineering at university.", + "pos": "noun", + "word_frequency": 1781 + }, + { + "word": "interpretación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpretation", + "example_sentence_native": "Su interpretación de la obra fue excelente.", + "example_sentence_english": "His interpretation of the play was excellent.", + "pos": "noun", + "word_frequency": 1782 + }, + { + "word": "legislación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislation", + "example_sentence_native": "La nueva legislación entrará en vigor pronto.", + "example_sentence_english": "The new legislation will come into effect soon.", + "pos": "noun", + "word_frequency": 1784 + }, + { + "word": "liberal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberal", + "example_sentence_native": "Tiene ideas muy liberales.", + "example_sentence_english": "He has very liberal ideas.", + "pos": "adjective", + "word_frequency": 1785 + }, + { + "word": "lógica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logic", + "example_sentence_native": "Su argumento carece de lógica.", + "example_sentence_english": "His argument lacks logic.", + "pos": "noun", + "word_frequency": 1786 + }, + { + "word": "manejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handling", + "example_sentence_native": "El manejo de la situación fue excelente.", + "example_sentence_english": "The handling of the situation was excellent.", + "pos": "noun", + "word_frequency": 1787 + }, + { + "word": "moreno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark-haired", + "example_sentence_native": "Ella tiene el pelo moreno.", + "example_sentence_english": "She has dark hair.", + "pos": "adjective", + "word_frequency": 1788 + }, + { + "word": "oscuro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark", + "example_sentence_native": "La habitación estaba oscura.", + "example_sentence_english": "The room was dark.", + "pos": "adjective", + "word_frequency": 1789 + }, + { + "word": "partida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "departure", + "example_sentence_native": "La partida del tren es a las diez.", + "example_sentence_english": "The train's departure is at ten.", + "pos": "noun", + "word_frequency": 1790 + }, + { + "word": "personalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personally", + "example_sentence_native": "Personalmente, no estoy de acuerdo.", + "example_sentence_english": "Personally, I don't agree.", + "pos": "adverb", + "word_frequency": 1791 + }, + { + "word": "princesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "princess", + "example_sentence_native": "La princesa vivía en un castillo.", + "example_sentence_english": "The princess lived in a castle.", + "pos": "noun", + "word_frequency": 1792 + }, + { + "word": "progreso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progress", + "example_sentence_native": "Hemos hecho mucho progreso.", + "example_sentence_english": "We have made a lot of progress.", + "pos": "noun", + "word_frequency": 1793 + }, + { + "word": "puesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "setting (e.g.;of the sun)", + "example_sentence_native": "Disfrutamos de la puesta de sol.", + "example_sentence_english": "We enjoyed the sunset.", + "pos": "noun", + "word_frequency": 1794 + }, + { + "word": "rol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "role", + "example_sentence_native": "Su rol en la película fue importante.", + "example_sentence_english": "His role in the movie was important.", + "pos": "noun", + "word_frequency": 1795 + }, + { + "word": "sujeto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject", + "example_sentence_native": "El sujeto de la oración es 'yo'.", + "example_sentence_english": "The subject of the sentence is 'I'.", + "pos": "noun", + "word_frequency": 1796 + }, + { + "word": "torneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tournament", + "example_sentence_native": "Ganó el torneo de ajedrez.", + "example_sentence_english": "He won the chess tournament.", + "pos": "noun", + "word_frequency": 1797 + }, + { + "word": "turno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turn", + "example_sentence_native": "Es tu turno de jugar.", + "example_sentence_english": "It's your turn to play.", + "pos": "noun", + "word_frequency": 1798 + }, + { + "word": "vacío", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "empty", + "example_sentence_native": "La botella está vacía.", + "example_sentence_english": "The bottle is empty.", + "pos": "adjective", + "word_frequency": 1799 + }, + { + "word": "venezolano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Venezuelan", + "example_sentence_native": "Mi amigo es venezolano.", + "example_sentence_english": "My friend is Venezuelan.", + "pos": "adjective", + "word_frequency": 1800 + }, + { + "word": "algun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "some;any", + "example_sentence_native": "¿Tienes algún libro interesante?", + "example_sentence_english": "Do you have any interesting books?", + "pos": "adjective", + "word_frequency": 1801 + }, + { + "word": "aprobación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approval", + "example_sentence_native": "Necesitamos su aprobación para continuar.", + "example_sentence_english": "We need your approval to continue.", + "pos": "noun", + "word_frequency": 1802 + }, + { + "word": "católico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catholic", + "example_sentence_native": "Es una tradición católica.", + "example_sentence_english": "It is a Catholic tradition.", + "pos": "adjective", + "word_frequency": 1803 + }, + { + "word": "celebración", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "celebration", + "example_sentence_native": "La celebración fue muy animada.", + "example_sentence_english": "The celebration was very lively.", + "pos": "noun", + "word_frequency": 1804 + }, + { + "word": "celebrar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to celebrate", + "example_sentence_native": "Vamos a celebrar tu cumpleaños.", + "example_sentence_english": "We are going to celebrate your birthday.", + "pos": "verb", + "word_frequency": 1805 + }, + { + "word": "ciclo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycle", + "example_sentence_native": "El ciclo del agua es fundamental.", + "example_sentence_english": "The water cycle is fundamental.", + "pos": "noun", + "word_frequency": 1806 + }, + { + "word": "científico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scientific", + "example_sentence_native": "Hizo un descubrimiento científico importante.", + "example_sentence_english": "He made an important scientific discovery.", + "pos": "adjective", + "word_frequency": 1807 + }, + { + "word": "conde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "count (nobleman)", + "example_sentence_native": "El conde vivía en un castillo.", + "example_sentence_english": "The count lived in a castle.", + "pos": "noun", + "word_frequency": 1808 + }, + { + "word": "crecer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to grow", + "example_sentence_native": "Los niños crecen muy rápido.", + "example_sentence_english": "Children grow very fast.", + "pos": "verb", + "word_frequency": 1809 + }, + { + "word": "criminal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal", + "example_sentence_native": "Fue un acto criminal.", + "example_sentence_english": "It was a criminal act.", + "pos": "adjective", + "word_frequency": 1810 + }, + { + "word": "círculo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circle", + "example_sentence_native": "Dibujó un círculo perfecto.", + "example_sentence_english": "He drew a perfect circle.", + "pos": "noun", + "word_frequency": 1811 + }, + { + "word": "dirigir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to direct;to manage", + "example_sentence_native": "Él dirige la empresa con éxito.", + "example_sentence_english": "He manages the company successfully.", + "pos": "verb", + "word_frequency": 1812 + }, + { + "word": "evidente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evident;obvious", + "example_sentence_native": "Su talento es evidente.", + "example_sentence_english": "His talent is evident.", + "pos": "adjective", + "word_frequency": 1813 + }, + { + "word": "excepción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exception", + "example_sentence_native": "Hay una excepción a la regla.", + "example_sentence_english": "There is an exception to the rule.", + "pos": "noun", + "word_frequency": 1814 + }, + { + "word": "falso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "false;fake", + "example_sentence_native": "Esa noticia es falsa.", + "example_sentence_english": "That news is false.", + "pos": "adjective", + "word_frequency": 1815 + }, + { + "word": "formato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "format", + "example_sentence_native": "Cambiamos el formato del documento.", + "example_sentence_english": "We changed the document format.", + "pos": "noun", + "word_frequency": 1816 + }, + { + "word": "hierro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iron", + "example_sentence_native": "La mesa es de hierro forjado.", + "example_sentence_english": "The table is made of wrought iron.", + "pos": "noun", + "word_frequency": 1817 + }, + { + "word": "jurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swear;to vow", + "example_sentence_native": "Juró decir la verdad.", + "example_sentence_english": "He swore to tell the truth.", + "pos": "verb", + "word_frequency": 1819 + }, + { + "word": "lago", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lake", + "example_sentence_native": "Fuimos a nadar en el lago.", + "example_sentence_english": "We went swimming in the lake.", + "pos": "noun", + "word_frequency": 1820 + }, + { + "word": "monte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountain;hill", + "example_sentence_native": "Subimos al monte para ver el amanecer.", + "example_sentence_english": "We climbed the mountain to see the sunrise.", + "pos": "noun", + "word_frequency": 1821 + }, + { + "word": "olor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smell;odor", + "example_sentence_native": "Había un olor agradable en la cocina.", + "example_sentence_english": "There was a pleasant smell in the kitchen.", + "pos": "noun", + "word_frequency": 1822 + }, + { + "word": "pleno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full;complete", + "example_sentence_native": "Estamos en pleno verano.", + "example_sentence_english": "We are in the middle of summer.", + "pos": "adjective", + "word_frequency": 1824 + }, + { + "word": "porcentaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "percentage", + "example_sentence_native": "Un alto porcentaje de la población votó.", + "example_sentence_english": "A high percentage of the population voted.", + "pos": "noun", + "word_frequency": 1825 + }, + { + "word": "posterior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "posterior;later;subsequent", + "example_sentence_native": "La fecha posterior es el lunes.", + "example_sentence_english": "The later date is Monday.", + "pos": "adjective", + "word_frequency": 1826 + }, + { + "word": "potencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power;potency", + "example_sentence_native": "Es una potencia económica mundial.", + "example_sentence_english": "It is a global economic power.", + "pos": "noun", + "word_frequency": 1827 + }, + { + "word": "preparar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to prepare", + "example_sentence_native": "Voy a preparar la cena.", + "example_sentence_english": "I am going to prepare dinner.", + "pos": "verb", + "word_frequency": 1828 + }, + { + "word": "pretender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intend;to claim", + "example_sentence_native": "No pretendo ofenderte.", + "example_sentence_english": "I don't intend to offend you.", + "pos": "verb", + "word_frequency": 1829 + }, + { + "word": "riqueza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wealth;richness", + "example_sentence_native": "El país tiene una gran riqueza natural.", + "example_sentence_english": "The country has great natural wealth.", + "pos": "noun", + "word_frequency": 1831 + }, + { + "word": "salario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salary;wage", + "example_sentence_native": "Su salario es muy bueno.", + "example_sentence_english": "His salary is very good.", + "pos": "noun", + "word_frequency": 1832 + }, + { + "word": "sierra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountain range;saw", + "example_sentence_native": "La sierra de Gredos es hermosa.", + "example_sentence_english": "The Gredos mountain range is beautiful.", + "pos": "noun", + "word_frequency": 1833 + }, + { + "word": "tabla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "table;board", + "example_sentence_native": "Escribió los datos en la tabla.", + "example_sentence_english": "He wrote the data in the table.", + "pos": "noun", + "word_frequency": 1834 + }, + { + "word": "bienestar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-being;welfare", + "example_sentence_native": "Buscamos el bienestar de todos.", + "example_sentence_english": "We seek the well-being of everyone.", + "pos": "noun", + "word_frequency": 1836 + }, + { + "word": "cantante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singer", + "example_sentence_native": "Mi hermana es una cantante famosa.", + "example_sentence_english": "My sister is a famous singer.", + "pos": "noun", + "word_frequency": 1837 + }, + { + "word": "concentración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concentration", + "example_sentence_native": "Necesito más concentración para estudiar.", + "example_sentence_english": "I need more concentration to study.", + "pos": "noun", + "word_frequency": 1839 + }, + { + "word": "copia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "copy", + "example_sentence_native": "Necesito una copia de este documento.", + "example_sentence_english": "I need a copy of this document.", + "pos": "noun", + "word_frequency": 1840 + }, + { + "word": "corona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crown", + "example_sentence_native": "La reina llevaba una hermosa corona.", + "example_sentence_english": "The queen wore a beautiful crown.", + "pos": "noun", + "word_frequency": 1841 + }, + { + "word": "crítico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "critical", + "example_sentence_native": "Su opinión fue muy crítica.", + "example_sentence_english": "His opinion was very critical.", + "pos": "adjective", + "word_frequency": 1843 + }, + { + "word": "determinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to determine", + "example_sentence_native": "Es difícil determinar la causa exacta.", + "example_sentence_english": "It's difficult to determine the exact cause.", + "pos": "verb", + "word_frequency": 1844 + }, + { + "word": "doce", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twelve", + "example_sentence_native": "Son las doce en punto.", + "example_sentence_english": "It's twelve o'clock sharp.", + "pos": "noun", + "word_frequency": 1845 + }, + { + "word": "fracaso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure", + "example_sentence_native": "El proyecto fue un fracaso total.", + "example_sentence_english": "The project was a total failure.", + "pos": "noun", + "word_frequency": 1847 + }, + { + "word": "fábrica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "factory", + "example_sentence_native": "Mi padre trabaja en una fábrica de coches.", + "example_sentence_english": "My father works in a car factory.", + "pos": "noun", + "word_frequency": 1848 + }, + { + "word": "margen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "margin", + "example_sentence_native": "Deja un margen amplio en el documento.", + "example_sentence_english": "Leave a wide margin in the document.", + "pos": "noun", + "word_frequency": 1850 + }, + { + "word": "pais", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "country", + "example_sentence_native": "España es un país hermoso.", + "example_sentence_english": "Spain is a beautiful country.", + "pos": "noun", + "word_frequency": 1851 + }, + { + "word": "paseo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "walk;stroll", + "example_sentence_native": "Dimos un paseo por el parque.", + "example_sentence_english": "We took a walk in the park.", + "pos": "noun", + "word_frequency": 1852 + }, + { + "word": "peligroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dangerous", + "example_sentence_native": "Es una situación muy peligrosa.", + "example_sentence_english": "It's a very dangerous situation.", + "pos": "adjective", + "word_frequency": 1853 + }, + { + "word": "secretaría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretariat;secretary's office", + "example_sentence_native": "La secretaría está en el segundo piso.", + "example_sentence_english": "The secretariat is on the second floor.", + "pos": "noun", + "word_frequency": 1854 + }, + { + "word": "suficientemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sufficiently;enough", + "example_sentence_native": "No es suficientemente bueno.", + "example_sentence_english": "It's not good enough.", + "pos": "adverb", + "word_frequency": 1855 + }, + { + "word": "superar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome;to surpass", + "example_sentence_native": "Debemos superar este desafío.", + "example_sentence_english": "We must overcome this challenge.", + "pos": "verb", + "word_frequency": 1856 + }, + { + "word": "techo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roof;ceiling", + "example_sentence_native": "El techo de la casa es rojo.", + "example_sentence_english": "The roof of the house is red.", + "pos": "noun", + "word_frequency": 1857 + }, + { + "word": "transmisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmission;broadcast", + "example_sentence_native": "La transmisión en vivo fue un éxito.", + "example_sentence_english": "The live broadcast was a success.", + "pos": "noun", + "word_frequency": 1858 + }, + { + "word": "ubicación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "location", + "example_sentence_native": "La ubicación del hotel es perfecta.", + "example_sentence_english": "The hotel's location is perfect.", + "pos": "noun", + "word_frequency": 1860 + }, + { + "word": "veinte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty", + "example_sentence_native": "Tengo veinte años.", + "example_sentence_english": "I am twenty years old.", + "pos": "noun", + "word_frequency": 1861 + }, + { + "word": "aceite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oil", + "example_sentence_native": "Necesitamos aceite para cocinar.", + "example_sentence_english": "We need oil for cooking.", + "pos": "noun", + "word_frequency": 1862 + }, + { + "word": "antecedente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antecedent;background", + "example_sentence_native": "Sus antecedentes académicos son impresionantes.", + "example_sentence_english": "His academic background is impressive.", + "pos": "noun", + "word_frequency": 1864 + }, + { + "word": "anuncio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertisement;announcement", + "example_sentence_native": "Vimos un anuncio en la televisión.", + "example_sentence_english": "We saw an advertisement on television.", + "pos": "noun", + "word_frequency": 1865 + }, + { + "word": "aplicar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply", + "example_sentence_native": "Debes aplicar esta crema dos veces al día.", + "example_sentence_english": "You should apply this cream twice a day.", + "pos": "verb", + "word_frequency": 1866 + }, + { + "word": "audio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audio", + "example_sentence_native": "El audio del video es muy claro.", + "example_sentence_english": "The audio of the video is very clear.", + "pos": "noun", + "word_frequency": 1867 + }, + { + "word": "azúcar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sugar", + "example_sentence_native": "¿Quieres azúcar en tu café?", + "example_sentence_english": "Do you want sugar in your coffee?", + "pos": "noun", + "word_frequency": 1868 + }, + { + "word": "broma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joke", + "example_sentence_native": "Solo fue una broma.", + "example_sentence_english": "It was just a joke.", + "pos": "noun", + "word_frequency": 1869 + }, + { + "word": "castellano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Castilian Spanish", + "example_sentence_native": "Hablo castellano con fluidez.", + "example_sentence_english": "I speak Castilian Spanish fluently.", + "pos": "noun", + "word_frequency": 1871 + }, + { + "word": "cifra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "figure;digit;number", + "example_sentence_native": "Las cifras de ventas son muy buenas.", + "example_sentence_english": "The sales figures are very good.", + "pos": "noun", + "word_frequency": 1872 + }, + { + "word": "columna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "column", + "example_sentence_native": "La columna vertebral es importante.", + "example_sentence_english": "The spinal column is important.", + "pos": "noun", + "word_frequency": 1873 + }, + { + "word": "correspondiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corresponding", + "example_sentence_native": "Adjunta el documento correspondiente.", + "example_sentence_english": "Attach the corresponding document.", + "pos": "adjective", + "word_frequency": 1874 + }, + { + "word": "cura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cure;priest", + "example_sentence_native": "No hay cura para esa enfermedad.", + "example_sentence_english": "There is no cure for that disease.", + "pos": "noun", + "word_frequency": 1875 + }, + { + "word": "descanso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rest;break", + "example_sentence_native": "Necesito un descanso.", + "example_sentence_english": "I need a break.", + "pos": "noun", + "word_frequency": 1876 + }, + { + "word": "doler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hurt;to ache", + "example_sentence_native": "Me duele la cabeza.", + "example_sentence_english": "My head hurts.", + "pos": "verb", + "word_frequency": 1877 + }, + { + "word": "empresario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "businessman;entrepreneur", + "example_sentence_native": "Es un empresario exitoso.", + "example_sentence_english": "He is a successful businessman.", + "pos": "noun", + "word_frequency": 1878 + }, + { + "word": "esquina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corner", + "example_sentence_native": "La tienda está en la esquina.", + "example_sentence_english": "The shop is on the corner.", + "pos": "noun", + "word_frequency": 1879 + }, + { + "word": "gira", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tour;trip", + "example_sentence_native": "La banda anunció una gira mundial.", + "example_sentence_english": "The band announced a world tour.", + "pos": "noun", + "word_frequency": 1880 + }, + { + "word": "habilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skill;ability", + "example_sentence_native": "Tiene una gran habilidad para los idiomas.", + "example_sentence_english": "He has a great skill for languages.", + "pos": "noun", + "word_frequency": 1882 + }, + { + "word": "imaginar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to imagine", + "example_sentence_native": "No puedo imaginar mi vida sin música.", + "example_sentence_english": "I can't imagine my life without music.", + "pos": "verb", + "word_frequency": 1883 + }, + { + "word": "intercambio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange", + "example_sentence_native": "Participó en un programa de intercambio estudiantil.", + "example_sentence_english": "He participated in a student exchange program.", + "pos": "noun", + "word_frequency": 1884 + }, + { + "word": "introducción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduction", + "example_sentence_native": "La introducción del libro es muy interesante.", + "example_sentence_english": "The introduction of the book is very interesting.", + "pos": "noun", + "word_frequency": 1885 + }, + { + "word": "organismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organism;body (organization)", + "example_sentence_native": "La ONU es un organismo internacional.", + "example_sentence_english": "The UN is an international body.", + "pos": "noun", + "word_frequency": 1886 + }, + { + "word": "organizar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to organize", + "example_sentence_native": "Necesitamos organizar la fiesta.", + "example_sentence_english": "We need to organize the party.", + "pos": "verb", + "word_frequency": 1887 + }, + { + "word": "poseer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to possess;to own", + "example_sentence_native": "Posee una gran colección de arte.", + "example_sentence_english": "He possesses a large art collection.", + "pos": "verb", + "word_frequency": 1889 + }, + { + "word": "promover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to promote", + "example_sentence_native": "La campaña busca promover la lectura.", + "example_sentence_english": "The campaign seeks to promote reading.", + "pos": "verb", + "word_frequency": 1890 + }, + { + "word": "raíz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "root", + "example_sentence_native": "El árbol tiene raíces profundas.", + "example_sentence_english": "The tree has deep roots.", + "pos": "noun", + "word_frequency": 1891 + }, + { + "word": "relacionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relate;to connect", + "example_sentence_native": "Es importante relacionar las ideas.", + "example_sentence_english": "It's important to relate the ideas.", + "pos": "verb", + "word_frequency": 1892 + }, + { + "word": "repente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suddenness (in 'de repente')", + "example_sentence_native": "De repente, empezó a llover.", + "example_sentence_english": "Suddenly, it started to rain.", + "pos": "noun", + "word_frequency": 1893 + }, + { + "word": "solicitud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application;request", + "example_sentence_native": "Envié mi solicitud de empleo.", + "example_sentence_english": "I sent my job application.", + "pos": "noun", + "word_frequency": 1895 + }, + { + "word": "súper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "super;great", + "example_sentence_native": "La película fue súper interesante.", + "example_sentence_english": "The movie was super interesting.", + "pos": "adjective", + "word_frequency": 1896 + }, + { + "word": "testigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "witness", + "example_sentence_native": "El testigo dio su declaración.", + "example_sentence_english": "The witness gave his statement.", + "pos": "noun", + "word_frequency": 1897 + }, + { + "word": "índice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "index;index finger;table of contents", + "example_sentence_native": "Consulta el índice del libro.", + "example_sentence_english": "Consult the book's index.", + "pos": "noun", + "word_frequency": 1899 + }, + { + "word": "aparentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparently", + "example_sentence_native": "Aparentemente, todo está bien.", + "example_sentence_english": "Apparently, everything is fine.", + "pos": "adverb", + "word_frequency": 1901 + }, + { + "word": "culpable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guilty", + "example_sentence_native": "Se declaró culpable del delito.", + "example_sentence_english": "He pleaded guilty to the crime.", + "pos": "adjective", + "word_frequency": 1902 + }, + { + "word": "democrático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democratic", + "example_sentence_native": "Vivimos en un país democrático.", + "example_sentence_english": "We live in a democratic country.", + "pos": "adjective", + "word_frequency": 1903 + }, + { + "word": "difusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diffusion;spread;broadcast", + "example_sentence_native": "La difusión de noticias es rápida hoy en día.", + "example_sentence_english": "The spread of news is fast nowadays.", + "pos": "noun", + "word_frequency": 1904 + }, + { + "word": "documental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentary", + "example_sentence_native": "Vimos un documental sobre la naturaleza.", + "example_sentence_english": "We watched a documentary about nature.", + "pos": "noun", + "word_frequency": 1905 + }, + { + "word": "drama", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drama", + "example_sentence_native": "La obra de teatro era un drama.", + "example_sentence_english": "The play was a drama.", + "pos": "noun", + "word_frequency": 1906 + }, + { + "word": "feria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;market;festival", + "example_sentence_native": "Fuimos a la feria del libro.", + "example_sentence_english": "We went to the book fair.", + "pos": "noun", + "word_frequency": 1907 + }, + { + "word": "iniciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to initiate;to start", + "example_sentence_native": "Vamos a iniciar un nuevo proyecto.", + "example_sentence_english": "We are going to initiate a new project.", + "pos": "verb", + "word_frequency": 1908 + }, + { + "word": "magia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magic", + "example_sentence_native": "Los niños creen en la magia.", + "example_sentence_english": "Children believe in magic.", + "pos": "noun", + "word_frequency": 1911 + }, + { + "word": "mantenimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance", + "example_sentence_native": "El coche necesita mantenimiento.", + "example_sentence_english": "The car needs maintenance.", + "pos": "noun", + "word_frequency": 1912 + }, + { + "word": "muro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wall", + "example_sentence_native": "Hay un muro alto alrededor del jardín.", + "example_sentence_english": "There is a high wall around the garden.", + "pos": "noun", + "word_frequency": 1913 + }, + { + "word": "posiblemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibly", + "example_sentence_native": "Posiblemente lleguemos tarde.", + "example_sentence_english": "We will possibly arrive late.", + "pos": "adverb", + "word_frequency": 1915 + }, + { + "word": "queso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cheese", + "example_sentence_native": "Me gusta el queso.", + "example_sentence_english": "I like cheese.", + "pos": "noun", + "word_frequency": 1917 + }, + { + "word": "recorrido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "route;tour;journey", + "example_sentence_native": "El recorrido turístico fue muy interesante.", + "example_sentence_english": "The tourist route was very interesting.", + "pos": "noun", + "word_frequency": 1918 + }, + { + "word": "relativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relatively", + "example_sentence_native": "Es un problema relativamente pequeño.", + "example_sentence_english": "It's a relatively small problem.", + "pos": "adverb", + "word_frequency": 1919 + }, + { + "word": "religioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religious", + "example_sentence_native": "Es un hombre muy religioso.", + "example_sentence_english": "He is a very religious man.", + "pos": "adjective", + "word_frequency": 1920 + }, + { + "word": "restaurante", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "restaurant", + "example_sentence_native": "Vamos a cenar en un restaurante italiano.", + "example_sentence_english": "We are going to have dinner at an Italian restaurant.", + "pos": "noun", + "word_frequency": 1921 + }, + { + "word": "sabor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flavor;taste", + "example_sentence_native": "Me encanta el sabor de esta fruta.", + "example_sentence_english": "I love the flavor of this fruit.", + "pos": "noun", + "word_frequency": 1922 + }, + { + "word": "supremo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supreme", + "example_sentence_native": "La Corte Suprema tomó una decisión importante.", + "example_sentence_english": "The Supreme Court made an important decision.", + "pos": "adjective", + "word_frequency": 1923 + }, + { + "word": "temporal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary;temporal", + "example_sentence_native": "Su estancia aquí es solo temporal.", + "example_sentence_english": "His stay here is only temporary.", + "pos": "adjective", + "word_frequency": 1924 + }, + { + "word": "virus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "virus", + "example_sentence_native": "El virus se propagó rápidamente.", + "example_sentence_english": "The virus spread quickly.", + "pos": "noun", + "word_frequency": 1925 + }, + { + "word": "avance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advance;progress", + "example_sentence_native": "Hemos logrado un gran avance en el proyecto.", + "example_sentence_english": "We have made great progress on the project.", + "pos": "noun", + "word_frequency": 1927 + }, + { + "word": "bailar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dance", + "example_sentence_native": "Me gusta bailar salsa.", + "example_sentence_english": "I like to dance salsa.", + "pos": "verb", + "word_frequency": 1928 + }, + { + "word": "beso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiss", + "example_sentence_native": "Le dio un beso de despedida.", + "example_sentence_english": "She gave him a farewell kiss.", + "pos": "noun", + "word_frequency": 1929 + }, + { + "word": "complicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complicated", + "example_sentence_native": "La situación es más complicada de lo que parece.", + "example_sentence_english": "The situation is more complicated than it seems.", + "pos": "adjective", + "word_frequency": 1931 + }, + { + "word": "conclusión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conclusion", + "example_sentence_native": "Llegamos a la conclusión de que era necesario un cambio.", + "example_sentence_english": "We came to the conclusion that a change was necessary.", + "pos": "noun", + "word_frequency": 1932 + }, + { + "word": "continente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "continent", + "example_sentence_native": "Asia es el continente más grande.", + "example_sentence_english": "Asia is the largest continent.", + "pos": "noun", + "word_frequency": 1933 + }, + { + "word": "costumbre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "custom;habit", + "example_sentence_native": "Es una costumbre antigua de la región.", + "example_sentence_english": "It's an old custom of the region.", + "pos": "noun", + "word_frequency": 1934 + }, + { + "word": "destacar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to highlight;to stand out", + "example_sentence_native": "Quiero destacar la importancia de este punto.", + "example_sentence_english": "I want to highlight the importance of this point.", + "pos": "verb", + "word_frequency": 1935 + }, + { + "word": "escolar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school (adj.);scholastic", + "example_sentence_native": "El año escolar comienza en septiembre.", + "example_sentence_english": "The school year begins in September.", + "pos": "adjective", + "word_frequency": 1936 + }, + { + "word": "hacienda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estate;treasury;public finances", + "example_sentence_native": "La Hacienda Pública recauda impuestos.", + "example_sentence_english": "The Public Treasury collects taxes.", + "pos": "noun", + "word_frequency": 1937 + }, + { + "word": "impresionante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impressive", + "example_sentence_native": "La vista desde la montaña era impresionante.", + "example_sentence_english": "The view from the mountain was impressive.", + "pos": "adjective", + "word_frequency": 1938 + }, + { + "word": "infierno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hell", + "example_sentence_native": "La Divina Comedia describe el infierno.", + "example_sentence_english": "The Divine Comedy describes hell.", + "pos": "noun", + "word_frequency": 1939 + }, + { + "word": "informar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to inform", + "example_sentence_native": "Necesito informar a mis padres sobre la decisión.", + "example_sentence_english": "I need to inform my parents about the decision.", + "pos": "verb", + "word_frequency": 1940 + }, + { + "word": "liberación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberation;release", + "example_sentence_native": "Lucharon por la liberación de su pueblo.", + "example_sentence_english": "They fought for the liberation of their people.", + "pos": "noun", + "word_frequency": 1942 + }, + { + "word": "localidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locality;town;seat", + "example_sentence_native": "La localidad más cercana está a diez kilómetros.", + "example_sentence_english": "The nearest town is ten kilometers away.", + "pos": "noun", + "word_frequency": 1943 + }, + { + "word": "mandar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send;to order;to command", + "example_sentence_native": "Voy a mandar un correo electrónico.", + "example_sentence_english": "I am going to send an email.", + "pos": "verb", + "word_frequency": 1945 + }, + { + "word": "mandato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mandate;command;term (of office)", + "example_sentence_native": "El presidente tiene un mandato de cuatro años.", + "example_sentence_english": "The president has a four-year term.", + "pos": "noun", + "word_frequency": 1946 + }, + { + "word": "metal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "metal", + "example_sentence_native": "El oro es un metal precioso.", + "example_sentence_english": "Gold is a precious metal.", + "pos": "noun", + "word_frequency": 1948 + }, + { + "word": "pasajero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger", + "example_sentence_native": "Todos los pasajeros deben abrocharse el cinturón.", + "example_sentence_english": "All passengers must fasten their seatbelts.", + "pos": "noun", + "word_frequency": 1950 + }, + { + "word": "polvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dust;powder", + "example_sentence_native": "Hay mucho polvo en los muebles viejos.", + "example_sentence_english": "There is a lot of dust on the old furniture.", + "pos": "noun", + "word_frequency": 1951 + }, + { + "word": "reducción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction", + "example_sentence_native": "Se necesita una reducción de costes.", + "example_sentence_english": "A cost reduction is needed.", + "pos": "noun", + "word_frequency": 1953 + }, + { + "word": "senador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senator", + "example_sentence_native": "El senador presentó una nueva ley.", + "example_sentence_english": "The senator presented a new law.", + "pos": "noun", + "word_frequency": 1955 + }, + { + "word": "socio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partner;member (of a club)", + "example_sentence_native": "Es mi socio en el negocio.", + "example_sentence_english": "He is my business partner.", + "pos": "noun", + "word_frequency": 1956 + }, + { + "word": "solidaridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solidarity", + "example_sentence_native": "Mostraron gran solidaridad con las víctimas.", + "example_sentence_english": "They showed great solidarity with the victims.", + "pos": "noun", + "word_frequency": 1957 + }, + { + "word": "sufrir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suffer", + "example_sentence_native": "No quiero que sufras por esto.", + "example_sentence_english": "I don't want you to suffer because of this.", + "pos": "verb", + "word_frequency": 1958 + }, + { + "word": "templo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple", + "example_sentence_native": "Visitamos un antiguo templo romano.", + "example_sentence_english": "We visited an ancient Roman temple.", + "pos": "noun", + "word_frequency": 1959 + }, + { + "word": "teniente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lieutenant", + "example_sentence_native": "El teniente dio órdenes a sus soldados.", + "example_sentence_english": "The lieutenant gave orders to his soldiers.", + "pos": "noun", + "word_frequency": 1960 + }, + { + "word": "terror", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terror", + "example_sentence_native": "La película de terror me asustó mucho.", + "example_sentence_english": "The horror movie scared me a lot.", + "pos": "noun", + "word_frequency": 1961 + }, + { + "word": "top", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "top;leading", + "example_sentence_native": "Es un restaurante top en la ciudad.", + "example_sentence_english": "It's a top restaurant in the city.", + "pos": "adjective", + "word_frequency": 1962 + }, + { + "word": "tormenta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "storm", + "example_sentence_native": "La tormenta causó muchos daños.", + "example_sentence_english": "The storm caused a lot of damage.", + "pos": "noun", + "word_frequency": 1963 + }, + { + "word": "armada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navy;armada", + "example_sentence_native": "La Armada española es muy antigua.", + "example_sentence_english": "The Spanish Navy is very old.", + "pos": "noun", + "word_frequency": 1966 + }, + { + "word": "baja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casualty;discharge;decrease", + "example_sentence_native": "Dio de baja su suscripción.", + "example_sentence_english": "He cancelled his subscription.", + "pos": "noun", + "word_frequency": 1967 + }, + { + "word": "bola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ball", + "example_sentence_native": "El niño juega con una bola.", + "example_sentence_english": "The child plays with a ball.", + "pos": "noun", + "word_frequency": 1968 + }, + { + "word": "cable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cable", + "example_sentence_native": "Necesito un cable para cargar mi teléfono.", + "example_sentence_english": "I need a cable to charge my phone.", + "pos": "noun", + "word_frequency": 1969 + }, + { + "word": "cantar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sing", + "example_sentence_native": "Me gusta cantar en la ducha.", + "example_sentence_english": "I like to sing in the shower.", + "pos": "verb", + "word_frequency": 1970 + }, + { + "word": "comprender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to understand;to comprehend", + "example_sentence_native": "No puedo comprender lo que dices.", + "example_sentence_english": "I cannot understand what you are saying.", + "pos": "verb", + "word_frequency": 1971 + }, + { + "word": "eléctrico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electric", + "example_sentence_native": "Compramos un coche eléctrico nuevo.", + "example_sentence_english": "We bought a new electric car.", + "pos": "adjective", + "word_frequency": 1972 + }, + { + "word": "escritura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing", + "example_sentence_native": "Su escritura es muy clara.", + "example_sentence_english": "His writing is very clear.", + "pos": "noun", + "word_frequency": 1973 + }, + { + "word": "estadística", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistic;statistics", + "example_sentence_native": "La estadística muestra un aumento en las ventas.", + "example_sentence_english": "The statistic shows an increase in sales.", + "pos": "noun", + "word_frequency": 1974 + }, + { + "word": "fraude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraud", + "example_sentence_native": "Fue acusado de fraude fiscal.", + "example_sentence_english": "He was accused of tax fraud.", + "pos": "noun", + "word_frequency": 1975 + }, + { + "word": "gigante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giant;gigantic", + "example_sentence_native": "Vimos un árbol gigante en el bosque.", + "example_sentence_english": "We saw a giant tree in the forest.", + "pos": "adjective", + "word_frequency": 1976 + }, + { + "word": "horario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "schedule;timetable", + "example_sentence_native": "¿Cuál es tu horario de trabajo?", + "example_sentence_english": "What is your work schedule?", + "pos": "noun", + "word_frequency": 1977 + }, + { + "word": "ingeniero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engineer", + "example_sentence_native": "Mi hermano es ingeniero de software.", + "example_sentence_english": "My brother is a software engineer.", + "pos": "noun", + "word_frequency": 1978 + }, + { + "word": "instrumento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instrument", + "example_sentence_native": "Toca un instrumento musical.", + "example_sentence_english": "He plays a musical instrument.", + "pos": "noun", + "word_frequency": 1979 + }, + { + "word": "labio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lip", + "example_sentence_native": "Se mordió el labio inferior.", + "example_sentence_english": "He bit his lower lip.", + "pos": "noun", + "word_frequency": 1980 + }, + { + "word": "laboratorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laboratory;lab", + "example_sentence_native": "Los científicos trabajan en el laboratorio.", + "example_sentence_english": "The scientists work in the laboratory.", + "pos": "noun", + "word_frequency": 1981 + }, + { + "word": "lujo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "luxury", + "example_sentence_native": "Vive una vida de lujo.", + "example_sentence_english": "He lives a life of luxury.", + "pos": "noun", + "word_frequency": 1982 + }, + { + "word": "manejar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drive;to handle;to manage", + "example_sentence_native": "Ella sabe manejar muy bien.", + "example_sentence_english": "She knows how to drive very well.", + "pos": "verb", + "word_frequency": 1983 + }, + { + "word": "mejora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvement", + "example_sentence_native": "Hemos visto una mejora significativa.", + "example_sentence_english": "We have seen a significant improvement.", + "pos": "noun", + "word_frequency": 1984 + }, + { + "word": "ocupar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to occupy;to take up", + "example_sentence_native": "El libro ocupa mucho espacio.", + "example_sentence_english": "The book takes up a lot of space.", + "pos": "verb", + "word_frequency": 1986 + }, + { + "word": "pc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "PC;personal computer", + "example_sentence_native": "Mi nueva PC es muy rápida.", + "example_sentence_english": "My new PC is very fast.", + "pos": "noun", + "word_frequency": 1987 + }, + { + "word": "petición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petition;request", + "example_sentence_native": "Presentaron una petición al gobierno.", + "example_sentence_english": "They submitted a petition to the government.", + "pos": "noun", + "word_frequency": 1988 + }, + { + "word": "previo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previous;prior", + "example_sentence_native": "No tengo conocimiento previo de esto.", + "example_sentence_english": "I have no prior knowledge of this.", + "pos": "adjective", + "word_frequency": 1989 + }, + { + "word": "programación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "programming;schedule", + "example_sentence_native": "La programación de este canal es excelente.", + "example_sentence_english": "The programming on this channel is excellent.", + "pos": "noun", + "word_frequency": 1990 + }, + { + "word": "proponer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to propose;to suggest", + "example_sentence_native": "Él propuso una nueva idea.", + "example_sentence_english": "He proposed a new idea.", + "pos": "verb", + "word_frequency": 1991 + }, + { + "word": "protesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protest", + "example_sentence_native": "Hubo una protesta en la plaza.", + "example_sentence_english": "There was a protest in the square.", + "pos": "noun", + "word_frequency": 1992 + }, + { + "word": "rio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "river", + "example_sentence_native": "El río Amazonas es muy largo.", + "example_sentence_english": "The Amazon River is very long.", + "pos": "noun", + "word_frequency": 1993 + }, + { + "word": "robar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to steal;to rob", + "example_sentence_native": "Alguien intentó robar mi coche.", + "example_sentence_english": "Someone tried to steal my car.", + "pos": "verb", + "word_frequency": 1994 + }, + { + "word": "silla", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chair", + "example_sentence_native": "Siéntate en la silla.", + "example_sentence_english": "Sit on the chair.", + "pos": "noun", + "word_frequency": 1996 + }, + { + "word": "votación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vote;voting", + "example_sentence_native": "La votación se realizará mañana.", + "example_sentence_english": "The voting will take place tomorrow.", + "pos": "noun", + "word_frequency": 1999 + }, + { + "word": "últimamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lately", + "example_sentence_native": "Últimamente he estado muy ocupado.", + "example_sentence_english": "Lately I have been very busy.", + "pos": "adverb", + "word_frequency": 2000 + }, + { + "word": "abandonar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to abandon", + "example_sentence_native": "No debes abandonar tus sueños.", + "example_sentence_english": "You should not abandon your dreams.", + "pos": "verb", + "word_frequency": 2001 + }, + { + "word": "agradable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pleasant", + "example_sentence_native": "Fue una conversación muy agradable.", + "example_sentence_english": "It was a very pleasant conversation.", + "pos": "adjective", + "word_frequency": 2002 + }, + { + "word": "arquitectura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "architecture", + "example_sentence_native": "Me interesa mucho la arquitectura moderna.", + "example_sentence_english": "I am very interested in modern architecture.", + "pos": "noun", + "word_frequency": 2003 + }, + { + "word": "batería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "battery", + "example_sentence_native": "La batería de mi teléfono está baja.", + "example_sentence_english": "My phone battery is low.", + "pos": "noun", + "word_frequency": 2004 + }, + { + "word": "bienvenida", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "welcome", + "example_sentence_native": "Le dimos una cálida bienvenida.", + "example_sentence_english": "We gave him a warm welcome.", + "pos": "noun", + "word_frequency": 2005 + }, + { + "word": "brillante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brilliant", + "example_sentence_native": "Tu idea es brillante.", + "example_sentence_english": "Your idea is brilliant.", + "pos": "adjective", + "word_frequency": 2006 + }, + { + "word": "cena", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dinner", + "example_sentence_native": "¿Qué quieres para la cena?", + "example_sentence_english": "What do you want for dinner?", + "pos": "noun", + "word_frequency": 2007 + }, + { + "word": "comunicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statement", + "example_sentence_native": "El gobierno emitió un comunicado oficial.", + "example_sentence_english": "The government issued an official statement.", + "pos": "noun", + "word_frequency": 2008 + }, + { + "word": "cristiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christian", + "example_sentence_native": "Él es de fe cristiana.", + "example_sentence_english": "He is of Christian faith.", + "pos": "adjective", + "word_frequency": 2009 + }, + { + "word": "cubrir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cover", + "example_sentence_native": "Por favor, cubre la comida.", + "example_sentence_english": "Please cover the food.", + "pos": "verb", + "word_frequency": 2010 + }, + { + "word": "diablo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devil", + "example_sentence_native": "Se dice que el diablo está en los detalles.", + "example_sentence_english": "They say the devil is in the details.", + "pos": "noun", + "word_frequency": 2011 + }, + { + "word": "duración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duration", + "example_sentence_native": "La duración del vuelo es de tres horas.", + "example_sentence_english": "The duration of the flight is three hours.", + "pos": "noun", + "word_frequency": 2012 + }, + { + "word": "encargado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person in charge", + "example_sentence_native": "Habla con el encargado de la tienda.", + "example_sentence_english": "Talk to the store manager.", + "pos": "noun", + "word_frequency": 2013 + }, + { + "word": "enfermo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sick", + "example_sentence_native": "Me siento enfermo hoy.", + "example_sentence_english": "I feel sick today.", + "pos": "adjective", + "word_frequency": 2014 + }, + { + "word": "financiero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial", + "example_sentence_native": "Necesitamos un buen asesor financiero.", + "example_sentence_english": "We need a good financial advisor.", + "pos": "adjective", + "word_frequency": 2015 + }, + { + "word": "guerrero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warrior", + "example_sentence_native": "Era un valiente guerrero.", + "example_sentence_english": "He was a brave warrior.", + "pos": "noun", + "word_frequency": 2016 + }, + { + "word": "héroe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hero", + "example_sentence_native": "Él es un verdadero héroe.", + "example_sentence_english": "He is a true hero.", + "pos": "noun", + "word_frequency": 2017 + }, + { + "word": "idiota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot", + "example_sentence_native": "No seas un idiota.", + "example_sentence_english": "Don't be an idiot.", + "pos": "noun", + "word_frequency": 2018 + }, + { + "word": "italiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Italian", + "example_sentence_native": "Me encanta la comida italiana.", + "example_sentence_english": "I love Italian food.", + "pos": "adjective", + "word_frequency": 2019 + }, + { + "word": "meter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put in", + "example_sentence_native": "Mete la ropa en el armario.", + "example_sentence_english": "Put the clothes in the closet.", + "pos": "verb", + "word_frequency": 2020 + }, + { + "word": "obispo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bishop", + "example_sentence_native": "El obispo visitó la parroquia.", + "example_sentence_english": "The bishop visited the parish.", + "pos": "noun", + "word_frequency": 2022 + }, + { + "word": "obligado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obliged", + "example_sentence_native": "Me siento obligado a ayudarte.", + "example_sentence_english": "I feel obliged to help you.", + "pos": "adjective", + "word_frequency": 2023 + }, + { + "word": "periodismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journalism", + "example_sentence_native": "Estudió periodismo en la universidad.", + "example_sentence_english": "He studied journalism at university.", + "pos": "noun", + "word_frequency": 2024 + }, + { + "word": "portal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portal", + "example_sentence_native": "El portal de la casa estaba abierto.", + "example_sentence_english": "The entrance of the house was open.", + "pos": "noun", + "word_frequency": 2025 + }, + { + "word": "postura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "posture", + "example_sentence_native": "Su postura sobre el tema es clara.", + "example_sentence_english": "His stance on the issue is clear.", + "pos": "noun", + "word_frequency": 2026 + }, + { + "word": "preocupación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worry", + "example_sentence_native": "Tengo una gran preocupación por su salud.", + "example_sentence_english": "I have a great concern for his health.", + "pos": "noun", + "word_frequency": 2027 + }, + { + "word": "preparación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation", + "example_sentence_native": "La preparación para el examen fue intensa.", + "example_sentence_english": "The preparation for the exam was intense.", + "pos": "noun", + "word_frequency": 2028 + }, + { + "word": "primo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cousin", + "example_sentence_native": "Mi primo vive en Madrid.", + "example_sentence_english": "My cousin lives in Madrid.", + "pos": "noun", + "word_frequency": 2029 + }, + { + "word": "productor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "producer", + "example_sentence_native": "Es un famoso productor de cine.", + "example_sentence_english": "He is a famous film producer.", + "pos": "noun", + "word_frequency": 2030 + }, + { + "word": "razon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reason", + "example_sentence_native": "No hay razón para preocuparse.", + "example_sentence_english": "There is no reason to worry.", + "pos": "noun", + "word_frequency": 2031 + }, + { + "word": "sueldo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salary", + "example_sentence_native": "Mi sueldo es suficiente para vivir.", + "example_sentence_english": "My salary is enough to live on.", + "pos": "noun", + "word_frequency": 2033 + }, + { + "word": "tensión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tension", + "example_sentence_native": "Había mucha tensión en el ambiente.", + "example_sentence_english": "There was a lot of tension in the atmosphere.", + "pos": "noun", + "word_frequency": 2034 + }, + { + "word": "treinta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty", + "example_sentence_native": "Tengo treinta años.", + "example_sentence_english": "I am thirty years old.", + "pos": "noun", + "word_frequency": 2035 + }, + { + "word": "tránsito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic", + "example_sentence_native": "El tránsito estaba muy pesado esta mañana.", + "example_sentence_english": "The traffic was very heavy this morning.", + "pos": "noun", + "word_frequency": 2036 + }, + { + "word": "boda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wedding", + "example_sentence_native": "Fuimos a una boda el sábado.", + "example_sentence_english": "We went to a wedding on Saturday.", + "pos": "noun", + "word_frequency": 2038 + }, + { + "word": "chocolate", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chocolate", + "example_sentence_native": "Me gusta el chocolate.", + "example_sentence_english": "I like chocolate.", + "pos": "noun", + "word_frequency": 2039 + }, + { + "word": "clasificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classification", + "example_sentence_native": "La clasificación de los documentos es importante.", + "example_sentence_english": "The classification of documents is important.", + "pos": "noun", + "word_frequency": 2040 + }, + { + "word": "cumplimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fulfillment;compliance", + "example_sentence_native": "El cumplimiento de las normas es obligatorio.", + "example_sentence_english": "Compliance with the rules is mandatory.", + "pos": "noun", + "word_frequency": 2042 + }, + { + "word": "definitivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definitive;final", + "example_sentence_native": "Esta es la decisión definitiva.", + "example_sentence_english": "This is the definitive decision.", + "pos": "adjective", + "word_frequency": 2043 + }, + { + "word": "destrucción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destruction", + "example_sentence_native": "La destrucción del edificio fue total.", + "example_sentence_english": "The destruction of the building was total.", + "pos": "noun", + "word_frequency": 2044 + }, + { + "word": "espejo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mirror", + "example_sentence_native": "Se miró en el espejo.", + "example_sentence_english": "He looked at himself in the mirror.", + "pos": "noun", + "word_frequency": 2045 + }, + { + "word": "fama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fame", + "example_sentence_native": "Su fama creció rápidamente.", + "example_sentence_english": "His fame grew rapidly.", + "pos": "noun", + "word_frequency": 2046 + }, + { + "word": "herida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wound;injury", + "example_sentence_native": "Tenía una herida en el brazo.", + "example_sentence_english": "He had a wound on his arm.", + "pos": "noun", + "word_frequency": 2047 + }, + { + "word": "hielo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice", + "example_sentence_native": "Pon hielo en tu bebida.", + "example_sentence_english": "Put ice in your drink.", + "pos": "noun", + "word_frequency": 2048 + }, + { + "word": "indio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Indian", + "example_sentence_native": "La cultura india es muy rica.", + "example_sentence_english": "Indian culture is very rich.", + "pos": "adjective", + "word_frequency": 2049 + }, + { + "word": "inmigrante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immigrant", + "example_sentence_native": "Muchos inmigrantes buscan una vida mejor.", + "example_sentence_english": "Many immigrants seek a better life.", + "pos": "noun", + "word_frequency": 2050 + }, + { + "word": "jurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jury", + "example_sentence_native": "El jurado emitió su veredicto.", + "example_sentence_english": "The jury delivered its verdict.", + "pos": "noun", + "word_frequency": 2051 + }, + { + "word": "paquete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "package", + "example_sentence_native": "Recibí un paquete hoy.", + "example_sentence_english": "I received a package today.", + "pos": "noun", + "word_frequency": 2055 + }, + { + "word": "propaganda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propaganda", + "example_sentence_native": "La propaganda política es muy común.", + "example_sentence_english": "Political propaganda is very common.", + "pos": "noun", + "word_frequency": 2057 + }, + { + "word": "rango", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rank;range", + "example_sentence_native": "Tiene un alto rango en el ejército.", + "example_sentence_english": "He has a high rank in the army.", + "pos": "noun", + "word_frequency": 2060 + }, + { + "word": "retiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retirement;retreat", + "example_sentence_native": "Su retiro del trabajo fue inesperado.", + "example_sentence_english": "His retirement from work was unexpected.", + "pos": "noun", + "word_frequency": 2061 + }, + { + "word": "ronda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "round;patrol", + "example_sentence_native": "Es tu ronda de bebidas.", + "example_sentence_english": "It's your round of drinks.", + "pos": "noun", + "word_frequency": 2062 + }, + { + "word": "rumbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course;direction", + "example_sentence_native": "El barco cambió de rumbo.", + "example_sentence_english": "The ship changed course.", + "pos": "noun", + "word_frequency": 2063 + }, + { + "word": "solar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar", + "example_sentence_native": "La energía solar es renovable.", + "example_sentence_english": "Solar energy is renewable.", + "pos": "adjective", + "word_frequency": 2064 + }, + { + "word": "sombra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shadow;shade", + "example_sentence_native": "Buscamos sombra bajo el árbol.", + "example_sentence_english": "We looked for shade under the tree.", + "pos": "noun", + "word_frequency": 2065 + }, + { + "word": "símbolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symbol", + "example_sentence_native": "La paloma es un símbolo de paz.", + "example_sentence_english": "The dove is a symbol of peace.", + "pos": "noun", + "word_frequency": 2066 + }, + { + "word": "vigilancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surveillance;vigilance", + "example_sentence_native": "El edificio está bajo vigilancia.", + "example_sentence_english": "The building is under surveillance.", + "pos": "noun", + "word_frequency": 2067 + }, + { + "word": "aca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here (colloquial)", + "example_sentence_native": "Ven acá un momento.", + "example_sentence_english": "Come here for a moment.", + "pos": "adverb", + "word_frequency": 2069 + }, + { + "word": "agenda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agenda;diary", + "example_sentence_native": "Tengo una reunión en mi agenda.", + "example_sentence_english": "I have a meeting in my agenda.", + "pos": "noun", + "word_frequency": 2070 + }, + { + "word": "asesinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assassinate;to murder", + "example_sentence_native": "Fue acusado de asesinar a su rival.", + "example_sentence_english": "He was accused of assassinating his rival.", + "pos": "verb", + "word_frequency": 2071 + }, + { + "word": "atacar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attack", + "example_sentence_native": "El perro atacó al intruso.", + "example_sentence_english": "The dog attacked the intruder.", + "pos": "verb", + "word_frequency": 2072 + }, + { + "word": "carro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car", + "example_sentence_native": "Compré un carro nuevo.", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 2074 + }, + { + "word": "concepción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conception;idea", + "example_sentence_native": "Su concepción del arte es única.", + "example_sentence_english": "His conception of art is unique.", + "pos": "noun", + "word_frequency": 2076 + }, + { + "word": "concreto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concrete;specific", + "example_sentence_native": "Necesito un ejemplo concreto.", + "example_sentence_english": "I need a concrete example.", + "pos": "adjective", + "word_frequency": 2077 + }, + { + "word": "conservación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservation", + "example_sentence_native": "La conservación del medio ambiente es vital.", + "example_sentence_english": "Environmental conservation is vital.", + "pos": "noun", + "word_frequency": 2078 + }, + { + "word": "constantemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constantly", + "example_sentence_native": "Está constantemente estudiando.", + "example_sentence_english": "He is constantly studying.", + "pos": "adverb", + "word_frequency": 2079 + }, + { + "word": "cuidar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take care of;to look after", + "example_sentence_native": "Debes cuidar tu salud.", + "example_sentence_english": "You should take care of your health.", + "pos": "verb", + "word_frequency": 2080 + }, + { + "word": "detener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop;to detain", + "example_sentence_native": "La policía logró detener al sospechoso.", + "example_sentence_english": "The police managed to detain the suspect.", + "pos": "verb", + "word_frequency": 2081 + }, + { + "word": "dibujo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "drawing", + "example_sentence_native": "Me gusta hacer dibujos.", + "example_sentence_english": "I like to make drawings.", + "pos": "noun", + "word_frequency": 2082 + }, + { + "word": "dirigente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader;director", + "example_sentence_native": "El dirigente del partido dio un discurso.", + "example_sentence_english": "The party leader gave a speech.", + "pos": "noun", + "word_frequency": 2083 + }, + { + "word": "electricidad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electricity", + "example_sentence_native": "No hay electricidad en la casa.", + "example_sentence_english": "There is no electricity in the house.", + "pos": "noun", + "word_frequency": 2084 + }, + { + "word": "episodio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "episode", + "example_sentence_native": "Vimos el último episodio de la serie.", + "example_sentence_english": "We watched the last episode of the series.", + "pos": "noun", + "word_frequency": 2085 + }, + { + "word": "humo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoke", + "example_sentence_native": "Había mucho humo en el incendio.", + "example_sentence_english": "There was a lot of smoke in the fire.", + "pos": "noun", + "word_frequency": 2088 + }, + { + "word": "instrucción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instruction", + "example_sentence_native": "Sigue las instrucciones cuidadosamente.", + "example_sentence_english": "Follow the instructions carefully.", + "pos": "noun", + "word_frequency": 2089 + }, + { + "word": "integración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integration", + "example_sentence_native": "La integración de los nuevos empleados fue exitosa.", + "example_sentence_english": "The integration of the new employees was successful.", + "pos": "noun", + "word_frequency": 2090 + }, + { + "word": "judío", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jewish", + "example_sentence_native": "La comunidad judía celebra sus fiestas.", + "example_sentence_english": "The Jewish community celebrates its holidays.", + "pos": "adjective", + "word_frequency": 2091 + }, + { + "word": "levantar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lift;to raise", + "example_sentence_native": "Por favor, levanta la mano si tienes una pregunta.", + "example_sentence_english": "Please raise your hand if you have a question.", + "pos": "verb", + "word_frequency": 2092 + }, + { + "word": "leyenda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legend", + "example_sentence_native": "Esta es una antigua leyenda sobre un dragón.", + "example_sentence_english": "This is an ancient legend about a dragon.", + "pos": "noun", + "word_frequency": 2093 + }, + { + "word": "link", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "link", + "example_sentence_native": "Haz clic en el link para más información.", + "example_sentence_english": "Click on the link for more information.", + "pos": "noun", + "word_frequency": 2094 + }, + { + "word": "oficialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officially", + "example_sentence_native": "La noticia fue anunciada oficialmente.", + "example_sentence_english": "The news was officially announced.", + "pos": "adverb", + "word_frequency": 2096 + }, + { + "word": "paciencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patience", + "example_sentence_native": "Necesitas mucha paciencia para este trabajo.", + "example_sentence_english": "You need a lot of patience for this job.", + "pos": "noun", + "word_frequency": 2097 + }, + { + "word": "patio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "patio;yard", + "example_sentence_native": "Los niños juegan en el patio.", + "example_sentence_english": "The children play in the yard.", + "pos": "noun", + "word_frequency": 2098 + }, + { + "word": "pico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beak;peak;pickaxe", + "example_sentence_native": "El pájaro tiene un pico afilado.", + "example_sentence_english": "The bird has a sharp beak.", + "pos": "noun", + "word_frequency": 2099 + }, + { + "word": "piloto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pilot", + "example_sentence_native": "El piloto aterrizó el avión con seguridad.", + "example_sentence_english": "The pilot landed the plane safely.", + "pos": "noun", + "word_frequency": 2100 + }, + { + "word": "presidencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidential", + "example_sentence_native": "Las elecciones presidenciales son importantes.", + "example_sentence_english": "The presidential elections are important.", + "pos": "adjective", + "word_frequency": 2102 + }, + { + "word": "saco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jacket;sack", + "example_sentence_native": "Me puse un saco para el frío.", + "example_sentence_english": "I put on a jacket for the cold.", + "pos": "noun", + "word_frequency": 2104 + }, + { + "word": "urbano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban", + "example_sentence_native": "La vida urbana es muy diferente a la rural.", + "example_sentence_english": "Urban life is very different from rural life.", + "pos": "adjective", + "word_frequency": 2105 + }, + { + "word": "acontecimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "event;happening", + "example_sentence_native": "Fue un acontecimiento histórico.", + "example_sentence_english": "It was a historic event.", + "pos": "noun", + "word_frequency": 2106 + }, + { + "word": "adecuado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adequate;appropriate", + "example_sentence_native": "Esta es la solución adecuada.", + "example_sentence_english": "This is the adequate solution.", + "pos": "adjective", + "word_frequency": 2107 + }, + { + "word": "aparición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance;apparition", + "example_sentence_native": "Su aparición en la película fue breve.", + "example_sentence_english": "His appearance in the movie was brief.", + "pos": "noun", + "word_frequency": 2108 + }, + { + "word": "arroz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rice", + "example_sentence_native": "Me gusta comer arroz con pollo.", + "example_sentence_english": "I like to eat rice with chicken.", + "pos": "noun", + "word_frequency": 2109 + }, + { + "word": "autorización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authorization", + "example_sentence_native": "Necesitas una autorización para entrar.", + "example_sentence_english": "You need an authorization to enter.", + "pos": "noun", + "word_frequency": 2110 + }, + { + "word": "avenida", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avenue", + "example_sentence_native": "La tienda está en la avenida principal.", + "example_sentence_english": "The store is on the main avenue.", + "pos": "noun", + "word_frequency": 2111 + }, + { + "word": "aventura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adventure", + "example_sentence_native": "Nos embarcamos en una gran aventura.", + "example_sentence_english": "We embarked on a great adventure.", + "pos": "noun", + "word_frequency": 2112 + }, + { + "word": "básico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basic", + "example_sentence_native": "Es un conocimiento básico para empezar.", + "example_sentence_english": "It's basic knowledge to start.", + "pos": "adjective", + "word_frequency": 2113 + }, + { + "word": "caro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "expensive", + "example_sentence_native": "Este coche es muy caro.", + "example_sentence_english": "This car is very expensive.", + "pos": "adjective", + "word_frequency": 2114 + }, + { + "word": "cobertura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coverage", + "example_sentence_native": "La cobertura de red es excelente aquí.", + "example_sentence_english": "The network coverage is excellent here.", + "pos": "noun", + "word_frequency": 2115 + }, + { + "word": "colombiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Colombian", + "example_sentence_native": "Mi amigo es colombiano.", + "example_sentence_english": "My friend is Colombian.", + "pos": "adjective", + "word_frequency": 2116 + }, + { + "word": "conforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in agreement;satisfied", + "example_sentence_native": "Estoy conforme con la decisión.", + "example_sentence_english": "I am in agreement with the decision.", + "pos": "adjective", + "word_frequency": 2117 + }, + { + "word": "desgracia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misfortune;disgrace", + "example_sentence_native": "Fue una desgracia lo que pasó.", + "example_sentence_english": "What happened was a misfortune.", + "pos": "noun", + "word_frequency": 2118 + }, + { + "word": "enfoque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach;focus", + "example_sentence_native": "Necesitamos un nuevo enfoque para este problema.", + "example_sentence_english": "We need a new approach for this problem.", + "pos": "noun", + "word_frequency": 2119 + }, + { + "word": "entrenador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach", + "example_sentence_native": "El entrenador dio instrucciones al equipo.", + "example_sentence_english": "The coach gave instructions to the team.", + "pos": "noun", + "word_frequency": 2120 + }, + { + "word": "evaluación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluation", + "example_sentence_native": "La evaluación del proyecto tomará una semana.", + "example_sentence_english": "The evaluation of the project will take a week.", + "pos": "noun", + "word_frequency": 2121 + }, + { + "word": "explotación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exploitation", + "example_sentence_native": "La explotación de los recursos naturales debe ser sostenible.", + "example_sentence_english": "The exploitation of natural resources must be sustainable.", + "pos": "noun", + "word_frequency": 2122 + }, + { + "word": "faltar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lack;to be missing", + "example_sentence_native": "Me falta tiempo para terminar el trabajo.", + "example_sentence_english": "I lack time to finish the work.", + "pos": "verb", + "word_frequency": 2123 + }, + { + "word": "favorito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "favorite", + "example_sentence_native": "Mi color favorito es el azul.", + "example_sentence_english": "My favorite color is blue.", + "pos": "adjective", + "word_frequency": 2124 + }, + { + "word": "gordo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fat", + "example_sentence_native": "El gato es muy gordo.", + "example_sentence_english": "The cat is very fat.", + "pos": "adjective", + "word_frequency": 2125 + }, + { + "word": "habitual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usual;habitual", + "example_sentence_native": "Su hora de llegada habitual es a las ocho.", + "example_sentence_english": "His usual arrival time is at eight.", + "pos": "adjective", + "word_frequency": 2126 + }, + { + "word": "identificación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identification", + "example_sentence_native": "Necesitas tu identificación para entrar.", + "example_sentence_english": "You need your identification to enter.", + "pos": "noun", + "word_frequency": 2127 + }, + { + "word": "incremento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase", + "example_sentence_native": "Hubo un incremento en las ventas este mes.", + "example_sentence_english": "There was an increase in sales this month.", + "pos": "noun", + "word_frequency": 2128 + }, + { + "word": "invitado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guest", + "example_sentence_native": "Tenemos muchos invitados en la fiesta.", + "example_sentence_english": "We have many guests at the party.", + "pos": "noun", + "word_frequency": 2129 + }, + { + "word": "japonés", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Japanese", + "example_sentence_native": "Me gusta la comida japonesa.", + "example_sentence_english": "I like Japanese food.", + "pos": "adjective", + "word_frequency": 2130 + }, + { + "word": "limpieza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleaning", + "example_sentence_native": "La limpieza de la casa es importante.", + "example_sentence_english": "The cleaning of the house is important.", + "pos": "noun", + "word_frequency": 2131 + }, + { + "word": "mencionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mention", + "example_sentence_native": "No olvides mencionar esto en la reunión.", + "example_sentence_english": "Don't forget to mention this in the meeting.", + "pos": "verb", + "word_frequency": 2133 + }, + { + "word": "nave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ship;spacecraft", + "example_sentence_native": "La nave espacial despegó hacia la luna.", + "example_sentence_english": "The spacecraft took off towards the moon.", + "pos": "noun", + "word_frequency": 2136 + }, + { + "word": "nieve", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snow", + "example_sentence_native": "Cayó mucha nieve anoche.", + "example_sentence_english": "A lot of snow fell last night.", + "pos": "noun", + "word_frequency": 2137 + }, + { + "word": "obligación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obligation", + "example_sentence_native": "Es mi obligación ayudarte.", + "example_sentence_english": "It's my obligation to help you.", + "pos": "noun", + "word_frequency": 2138 + }, + { + "word": "observar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to observe", + "example_sentence_native": "Debemos observar las reglas.", + "example_sentence_english": "We must observe the rules.", + "pos": "verb", + "word_frequency": 2139 + }, + { + "word": "once", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eleven", + "example_sentence_native": "Son las once de la mañana.", + "example_sentence_english": "It's eleven in the morning.", + "pos": "noun", + "word_frequency": 2140 + }, + { + "word": "pacto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pact;agreement", + "example_sentence_native": "Firmaron un pacto de no agresión.", + "example_sentence_english": "They signed a non-aggression pact.", + "pos": "noun", + "word_frequency": 2141 + }, + { + "word": "preso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprisoned", + "example_sentence_native": "El hombre estaba preso por sus crímenes.", + "example_sentence_english": "The man was imprisoned for his crimes.", + "pos": "adjective", + "word_frequency": 2142 + }, + { + "word": "profundidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depth", + "example_sentence_native": "La profundidad del océano es inmensa.", + "example_sentence_english": "The depth of the ocean is immense.", + "pos": "noun", + "word_frequency": 2143 + }, + { + "word": "prohibido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forbidden", + "example_sentence_native": "Fumar está prohibido aquí.", + "example_sentence_english": "Smoking is prohibited here.", + "pos": "adjective", + "word_frequency": 2144 + }, + { + "word": "realización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "realization;achievement", + "example_sentence_native": "La realización de este proyecto fue un gran éxito.", + "example_sentence_english": "The realization of this project was a great success.", + "pos": "noun", + "word_frequency": 2145 + }, + { + "word": "renuncia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation", + "example_sentence_native": "Su renuncia fue inesperada.", + "example_sentence_english": "His resignation was unexpected.", + "pos": "noun", + "word_frequency": 2146 + }, + { + "word": "revisión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "review;revision", + "example_sentence_native": "Necesitamos hacer una revisión del documento.", + "example_sentence_english": "We need to do a review of the document.", + "pos": "noun", + "word_frequency": 2147 + }, + { + "word": "tonto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silly;foolish", + "example_sentence_native": "No seas tonto, eso no es verdad.", + "example_sentence_english": "Don't be silly, that's not true.", + "pos": "adjective", + "word_frequency": 2149 + }, + { + "word": "transición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transition", + "example_sentence_native": "La transición al nuevo sistema será gradual.", + "example_sentence_english": "The transition to the new system will be gradual.", + "pos": "noun", + "word_frequency": 2150 + }, + { + "word": "alerta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alert", + "example_sentence_native": "Se emitió una alerta por tormenta.", + "example_sentence_english": "A storm alert was issued.", + "pos": "noun", + "word_frequency": 2152 + }, + { + "word": "aprendizaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "learning", + "example_sentence_native": "El aprendizaje de idiomas es un proceso continuo.", + "example_sentence_english": "Language learning is a continuous process.", + "pos": "noun", + "word_frequency": 2154 + }, + { + "word": "básicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basically", + "example_sentence_native": "Básicamente, el problema es la comunicación.", + "example_sentence_english": "Basically, the problem is communication.", + "pos": "adverb", + "word_frequency": 2155 + }, + { + "word": "casado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "married", + "example_sentence_native": "Mi hermano está casado.", + "example_sentence_english": "My brother is married.", + "pos": "adjective", + "word_frequency": 2157 + }, + { + "word": "caza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunting", + "example_sentence_native": "La caza está prohibida en esta reserva.", + "example_sentence_english": "Hunting is prohibited in this reserve.", + "pos": "noun", + "word_frequency": 2158 + }, + { + "word": "combustible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel", + "example_sentence_native": "El coche necesita combustible para funcionar.", + "example_sentence_english": "The car needs fuel to run.", + "pos": "noun", + "word_frequency": 2160 + }, + { + "word": "convenir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to agree;to suit", + "example_sentence_native": "Nos conviene reunirnos mañana.", + "example_sentence_english": "It suits us to meet tomorrow.", + "pos": "verb", + "word_frequency": 2161 + }, + { + "word": "curiosidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curiosity", + "example_sentence_native": "Su curiosidad lo llevó a investigar.", + "example_sentence_english": "His curiosity led him to investigate.", + "pos": "noun", + "word_frequency": 2162 + }, + { + "word": "deportivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sports;sporty", + "example_sentence_native": "Le gusta usar ropa deportiva.", + "example_sentence_english": "He likes to wear sports clothes.", + "pos": "adjective", + "word_frequency": 2163 + }, + { + "word": "desayuno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "breakfast", + "example_sentence_native": "El desayuno es la comida más importante del día.", + "example_sentence_english": "Breakfast is the most important meal of the day.", + "pos": "noun", + "word_frequency": 2164 + }, + { + "word": "describir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to describe", + "example_sentence_native": "¿Puedes describir a la persona que viste?", + "example_sentence_english": "Can you describe the person you saw?", + "pos": "verb", + "word_frequency": 2165 + }, + { + "word": "diversidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversity", + "example_sentence_native": "La diversidad cultural es muy importante.", + "example_sentence_english": "Cultural diversity is very important.", + "pos": "noun", + "word_frequency": 2166 + }, + { + "word": "débil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weak", + "example_sentence_native": "Se siente muy débil después de la enfermedad.", + "example_sentence_english": "He feels very weak after the illness.", + "pos": "adjective", + "word_frequency": 2167 + }, + { + "word": "ejercer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exercise;to practice (a profession)", + "example_sentence_native": "Él ejerce la medicina desde hace veinte años.", + "example_sentence_english": "He has been practicing medicine for twenty years.", + "pos": "verb", + "word_frequency": 2170 + }, + { + "word": "emperador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emperor", + "example_sentence_native": "El emperador gobernó con mano de hierro.", + "example_sentence_english": "The emperor ruled with an iron fist.", + "pos": "noun", + "word_frequency": 2171 + }, + { + "word": "ensayo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essay;rehearsal", + "example_sentence_native": "Tengo que escribir un ensayo para la clase de literatura.", + "example_sentence_english": "I have to write an essay for literature class.", + "pos": "noun", + "word_frequency": 2172 + }, + { + "word": "escapar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to escape", + "example_sentence_native": "El ladrón logró escapar de la policía.", + "example_sentence_english": "The thief managed to escape from the police.", + "pos": "verb", + "word_frequency": 2173 + }, + { + "word": "estabilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stability", + "example_sentence_native": "Buscamos estabilidad económica en el país.", + "example_sentence_english": "We seek economic stability in the country.", + "pos": "noun", + "word_frequency": 2174 + }, + { + "word": "exclusivamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exclusively", + "example_sentence_native": "Este servicio es exclusivamente para miembros.", + "example_sentence_english": "This service is exclusively for members.", + "pos": "adverb", + "word_frequency": 2175 + }, + { + "word": "expresar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express", + "example_sentence_native": "Es importante expresar tus sentimientos.", + "example_sentence_english": "It's important to express your feelings.", + "pos": "verb", + "word_frequency": 2176 + }, + { + "word": "fallo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure;fault;verdict", + "example_sentence_native": "Hubo un fallo en el sistema.", + "example_sentence_english": "There was a fault in the system.", + "pos": "noun", + "word_frequency": 2177 + }, + { + "word": "fundador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founder", + "example_sentence_native": "El fundador de la empresa es muy conocido.", + "example_sentence_english": "The founder of the company is well-known.", + "pos": "noun", + "word_frequency": 2178 + }, + { + "word": "garantizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to guarantee", + "example_sentence_native": "Podemos garantizar la calidad del producto.", + "example_sentence_english": "We can guarantee the quality of the product.", + "pos": "verb", + "word_frequency": 2179 + }, + { + "word": "incendio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire (large;destructive)", + "example_sentence_native": "El incendio destruyó varios edificios.", + "example_sentence_english": "The fire destroyed several buildings.", + "pos": "noun", + "word_frequency": 2182 + }, + { + "word": "interesado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interested", + "example_sentence_native": "Estoy muy interesado en aprender español.", + "example_sentence_english": "I am very interested in learning Spanish.", + "pos": "adjective", + "word_frequency": 2183 + }, + { + "word": "investigador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "researcher;investigator", + "example_sentence_native": "El investigador publicó un nuevo estudio.", + "example_sentence_english": "The researcher published a new study.", + "pos": "noun", + "word_frequency": 2184 + }, + { + "word": "investigar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to investigate;to research", + "example_sentence_native": "La policía va a investigar el caso.", + "example_sentence_english": "The police are going to investigate the case.", + "pos": "verb", + "word_frequency": 2185 + }, + { + "word": "lento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "slow", + "example_sentence_native": "El caracol es un animal muy lento.", + "example_sentence_english": "The snail is a very slow animal.", + "pos": "adjective", + "word_frequency": 2186 + }, + { + "word": "manifestación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstration;manifestation", + "example_sentence_native": "Hubo una gran manifestación en la plaza.", + "example_sentence_english": "There was a large demonstration in the square.", + "pos": "noun", + "word_frequency": 2187 + }, + { + "word": "mover", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to move", + "example_sentence_native": "Por favor, ayuda a mover la mesa.", + "example_sentence_english": "Please help to move the table.", + "pos": "verb", + "word_frequency": 2188 + }, + { + "word": "originalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originally", + "example_sentence_native": "Originalmente, el plan era diferente.", + "example_sentence_english": "Originally, the plan was different.", + "pos": "adverb", + "word_frequency": 2189 + }, + { + "word": "paja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straw", + "example_sentence_native": "El granjero usa paja para el ganado.", + "example_sentence_english": "The farmer uses straw for the livestock.", + "pos": "noun", + "word_frequency": 2190 + }, + { + "word": "palo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stick;pole", + "example_sentence_native": "El perro trajo un palo grande.", + "example_sentence_english": "The dog brought a big stick.", + "pos": "noun", + "word_frequency": 2191 + }, + { + "word": "pollo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chicken", + "example_sentence_native": "Me gusta comer pollo asado.", + "example_sentence_english": "I like to eat roasted chicken.", + "pos": "noun", + "word_frequency": 2192 + }, + { + "word": "radical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radical", + "example_sentence_native": "Propuso un cambio radical en la política.", + "example_sentence_english": "He proposed a radical change in policy.", + "pos": "adjective", + "word_frequency": 2193 + }, + { + "word": "relato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "story;account", + "example_sentence_native": "El autor escribió un relato corto.", + "example_sentence_english": "The author wrote a short story.", + "pos": "noun", + "word_frequency": 2194 + }, + { + "word": "reloj", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clock;watch", + "example_sentence_native": "Mi reloj de pulsera se detuvo.", + "example_sentence_english": "My wristwatch stopped.", + "pos": "noun", + "word_frequency": 2195 + }, + { + "word": "requisito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requirement", + "example_sentence_native": "Este es un requisito indispensable para el puesto.", + "example_sentence_english": "This is an essential requirement for the position.", + "pos": "noun", + "word_frequency": 2196 + }, + { + "word": "revisar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to review;to check;to revise", + "example_sentence_native": "Necesito revisar mis apuntes antes del examen.", + "example_sentence_english": "I need to review my notes before the exam.", + "pos": "verb", + "word_frequency": 2197 + }, + { + "word": "roca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock", + "example_sentence_native": "La montaña está hecha de roca sólida.", + "example_sentence_english": "The mountain is made of solid rock.", + "pos": "noun", + "word_frequency": 2198 + }, + { + "word": "salto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jump;leap", + "example_sentence_native": "Dio un gran salto para cruzar el arroyo.", + "example_sentence_english": "He took a big jump to cross the stream.", + "pos": "noun", + "word_frequency": 2199 + }, + { + "word": "traje", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suit", + "example_sentence_native": "Compró un traje nuevo para la boda.", + "example_sentence_english": "He bought a new suit for the wedding.", + "pos": "noun", + "word_frequency": 2200 + }, + { + "word": "universitario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university (adj.);collegiate", + "example_sentence_native": "La vida universitaria es muy diferente a la escolar.", + "example_sentence_english": "University life is very different from school life.", + "pos": "adjective", + "word_frequency": 2201 + }, + { + "word": "abuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abuse", + "example_sentence_native": "El abuso de poder es inaceptable.", + "example_sentence_english": "The abuse of power is unacceptable.", + "pos": "noun", + "word_frequency": 2202 + }, + { + "word": "ambiental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmental", + "example_sentence_native": "La contaminación ambiental es un problema grave.", + "example_sentence_english": "Environmental pollution is a serious problem.", + "pos": "adjective", + "word_frequency": 2203 + }, + { + "word": "asco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgust;nausea", + "example_sentence_native": "Me da asco ver tanta suciedad.", + "example_sentence_english": "It disgusts me to see so much dirt.", + "pos": "noun", + "word_frequency": 2204 + }, + { + "word": "cartel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster;sign", + "example_sentence_native": "Había un cartel grande anunciando el concierto.", + "example_sentence_english": "There was a big poster announcing the concert.", + "pos": "noun", + "word_frequency": 2206 + }, + { + "word": "castigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punishment", + "example_sentence_native": "Recibió un castigo por su mal comportamiento.", + "example_sentence_english": "He received a punishment for his bad behavior.", + "pos": "noun", + "word_frequency": 2207 + }, + { + "word": "ceremonia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceremony", + "example_sentence_native": "La ceremonia de graduación fue muy emotiva.", + "example_sentence_english": "The graduation ceremony was very emotional.", + "pos": "noun", + "word_frequency": 2208 + }, + { + "word": "chileno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Chilean", + "example_sentence_native": "Mi amigo es chileno.", + "example_sentence_english": "My friend is Chilean.", + "pos": "adjective", + "word_frequency": 2209 + }, + { + "word": "computadora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "computer", + "example_sentence_native": "Necesito una computadora nueva para trabajar.", + "example_sentence_english": "I need a new computer for work.", + "pos": "noun", + "word_frequency": 2210 + }, + { + "word": "conducta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conduct;behavior", + "example_sentence_native": "Su conducta fue ejemplar.", + "example_sentence_english": "His conduct was exemplary.", + "pos": "noun", + "word_frequency": 2211 + }, + { + "word": "confiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trust", + "example_sentence_native": "Puedes confiar en mí.", + "example_sentence_english": "You can trust me.", + "pos": "verb", + "word_frequency": 2212 + }, + { + "word": "cortar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cut", + "example_sentence_native": "Voy a cortar el pan.", + "example_sentence_english": "I am going to cut the bread.", + "pos": "verb", + "word_frequency": 2213 + }, + { + "word": "cubierta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover;deck;tire", + "example_sentence_native": "La cubierta del libro es muy bonita.", + "example_sentence_english": "The book cover is very beautiful.", + "pos": "noun", + "word_frequency": 2214 + }, + { + "word": "demas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess;too much", + "example_sentence_native": "La demasía de confianza puede ser peligrosa.", + "example_sentence_english": "Too much confidence can be dangerous.", + "pos": "noun", + "word_frequency": 2215 + }, + { + "word": "derrota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeat", + "example_sentence_native": "A pesar de la derrota, el equipo jugó bien.", + "example_sentence_english": "Despite the defeat, the team played well.", + "pos": "noun", + "word_frequency": 2216 + }, + { + "word": "dieta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diet", + "example_sentence_native": "Estoy a dieta para perder peso.", + "example_sentence_english": "I am on a diet to lose weight.", + "pos": "noun", + "word_frequency": 2217 + }, + { + "word": "establecimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "establishment;premises", + "example_sentence_native": "Es un establecimiento muy antiguo.", + "example_sentence_english": "It's a very old establishment.", + "pos": "noun", + "word_frequency": 2218 + }, + { + "word": "fórmula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formula", + "example_sentence_native": "La fórmula matemática es compleja.", + "example_sentence_english": "The mathematical formula is complex.", + "pos": "noun", + "word_frequency": 2219 + }, + { + "word": "gracioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "funny;graceful", + "example_sentence_native": "El payaso era muy gracioso.", + "example_sentence_english": "The clown was very funny.", + "pos": "adjective", + "word_frequency": 2220 + }, + { + "word": "herido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wounded;injured", + "example_sentence_native": "El soldado herido fue llevado al hospital.", + "example_sentence_english": "The wounded soldier was taken to the hospital.", + "pos": "adjective", + "word_frequency": 2221 + }, + { + "word": "ilusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illusion;hope;excitement", + "example_sentence_native": "Tengo mucha ilusión por el viaje.", + "example_sentence_english": "I'm very excited about the trip.", + "pos": "noun", + "word_frequency": 2223 + }, + { + "word": "instante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instant;moment", + "example_sentence_native": "Volveré en un instante.", + "example_sentence_english": "I'll be back in an instant.", + "pos": "noun", + "word_frequency": 2224 + }, + { + "word": "lanzar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw;to launch", + "example_sentence_native": "El atleta va a lanzar la jabalina.", + "example_sentence_english": "The athlete is going to throw the javelin.", + "pos": "verb", + "word_frequency": 2225 + }, + { + "word": "lágrima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tear (from eye)", + "example_sentence_native": "Una lágrima rodó por su mejilla.", + "example_sentence_english": "A tear rolled down her cheek.", + "pos": "noun", + "word_frequency": 2226 + }, + { + "word": "mama", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mom", + "example_sentence_native": "Mi mama me preparó la cena.", + "example_sentence_english": "My mom made me dinner.", + "pos": "noun", + "word_frequency": 2227 + }, + { + "word": "medalla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medal", + "example_sentence_native": "Ganó una medalla de oro.", + "example_sentence_english": "He won a gold medal.", + "pos": "noun", + "word_frequency": 2228 + }, + { + "word": "multitud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowd", + "example_sentence_native": "Había una gran multitud en la plaza.", + "example_sentence_english": "There was a large crowd in the square.", + "pos": "noun", + "word_frequency": 2229 + }, + { + "word": "nieto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandson", + "example_sentence_native": "Mi nieto es muy inteligente.", + "example_sentence_english": "My grandson is very intelligent.", + "pos": "noun", + "word_frequency": 2230 + }, + { + "word": "nuclear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear", + "example_sentence_native": "La energía nuclear es un tema controvertido.", + "example_sentence_english": "Nuclear energy is a controversial topic.", + "pos": "adjective", + "word_frequency": 2231 + }, + { + "word": "numero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "number", + "example_sentence_native": "¿Cuál es tu número de teléfono?", + "example_sentence_english": "What is your phone number?", + "pos": "noun", + "word_frequency": 2232 + }, + { + "word": "ocupación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occupation;job", + "example_sentence_native": "¿Cuál es tu ocupación?", + "example_sentence_english": "What is your occupation?", + "pos": "noun", + "word_frequency": 2233 + }, + { + "word": "pacífico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peaceful", + "example_sentence_native": "Es una persona muy pacífica.", + "example_sentence_english": "He is a very peaceful person.", + "pos": "adjective", + "word_frequency": 2234 + }, + { + "word": "pelota", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ball", + "example_sentence_native": "Los niños juegan con la pelota.", + "example_sentence_english": "The children play with the ball.", + "pos": "noun", + "word_frequency": 2235 + }, + { + "word": "pendiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pending matter;earring;slope", + "example_sentence_native": "Tengo un pendiente importante que resolver.", + "example_sentence_english": "I have an important pending matter to resolve.", + "pos": "noun", + "word_frequency": 2236 + }, + { + "word": "plato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "plate;dish", + "example_sentence_native": "Por favor, pon el plato en la mesa.", + "example_sentence_english": "Please, put the plate on the table.", + "pos": "noun", + "word_frequency": 2237 + }, + { + "word": "previamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previously", + "example_sentence_native": "Previamente, habíamos discutido este tema.", + "example_sentence_english": "Previously, we had discussed this topic.", + "pos": "adverb", + "word_frequency": 2240 + }, + { + "word": "quitar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remove;to take off", + "example_sentence_native": "Por favor, quita los zapatos antes de entrar.", + "example_sentence_english": "Please, take off your shoes before entering.", + "pos": "verb", + "word_frequency": 2241 + }, + { + "word": "ramo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bouquet;branch", + "example_sentence_native": "Le regaló un ramo de flores.", + "example_sentence_english": "He gave her a bouquet of flowers.", + "pos": "noun", + "word_frequency": 2242 + }, + { + "word": "recomendar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recommend", + "example_sentence_native": "Te recomiendo este libro.", + "example_sentence_english": "I recommend this book to you.", + "pos": "verb", + "word_frequency": 2243 + }, + { + "word": "recuperación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovery", + "example_sentence_native": "Su recuperación después de la cirugía fue rápida.", + "example_sentence_english": "Her recovery after the surgery was fast.", + "pos": "noun", + "word_frequency": 2244 + }, + { + "word": "rueda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheel", + "example_sentence_native": "La bicicleta tiene dos ruedas.", + "example_sentence_english": "The bicycle has two wheels.", + "pos": "noun", + "word_frequency": 2245 + }, + { + "word": "soledad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loneliness;solitude", + "example_sentence_native": "A veces disfruto de la soledad.", + "example_sentence_english": "Sometimes I enjoy solitude.", + "pos": "noun", + "word_frequency": 2246 + }, + { + "word": "sorprender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surprise", + "example_sentence_native": "Su visita me sorprendió mucho.", + "example_sentence_english": "His visit surprised me a lot.", + "pos": "verb", + "word_frequency": 2247 + }, + { + "word": "supuestamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supposedly", + "example_sentence_native": "Supuestamente, el evento fue cancelado.", + "example_sentence_english": "Supposedly, the event was canceled.", + "pos": "adverb", + "word_frequency": 2248 + }, + { + "word": "temor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fear", + "example_sentence_native": "Sentía un gran temor a la oscuridad.", + "example_sentence_english": "He felt a great fear of the dark.", + "pos": "noun", + "word_frequency": 2249 + }, + { + "word": "tirar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to throw;to pull", + "example_sentence_native": "No tires la basura al suelo.", + "example_sentence_english": "Don't throw trash on the floor.", + "pos": "verb", + "word_frequency": 2250 + }, + { + "word": "ubicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "located", + "example_sentence_native": "El hotel está ubicado en el centro de la ciudad.", + "example_sentence_english": "The hotel is located in the city center.", + "pos": "adjective", + "word_frequency": 2251 + }, + { + "word": "urgente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urgent", + "example_sentence_native": "Necesito hablar contigo, es urgente.", + "example_sentence_english": "I need to talk to you, it's urgent.", + "pos": "adjective", + "word_frequency": 2252 + }, + { + "word": "verdaderamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truly;really", + "example_sentence_native": "Es verdaderamente un placer conocerte.", + "example_sentence_english": "It's truly a pleasure to meet you.", + "pos": "adverb", + "word_frequency": 2253 + }, + { + "word": "virtual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtual", + "example_sentence_native": "Tuvimos una reunión virtual.", + "example_sentence_english": "We had a virtual meeting.", + "pos": "adjective", + "word_frequency": 2254 + }, + { + "word": "álbum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "album", + "example_sentence_native": "Miramos fotos en el álbum familiar.", + "example_sentence_english": "We looked at photos in the family album.", + "pos": "noun", + "word_frequency": 2256 + }, + { + "word": "árabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arab;Arabic", + "example_sentence_native": "Aprendo algunas palabras en árabe.", + "example_sentence_english": "I'm learning some words in Arabic.", + "pos": "adjective", + "word_frequency": 2257 + }, + { + "word": "aborto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abortion", + "example_sentence_native": "El debate sobre el aborto es muy complejo.", + "example_sentence_english": "The debate about abortion is very complex.", + "pos": "noun", + "word_frequency": 2258 + }, + { + "word": "ancho", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wide", + "example_sentence_native": "La calle es muy ancha.", + "example_sentence_english": "The street is very wide.", + "pos": "adjective", + "word_frequency": 2259 + }, + { + "word": "apellido", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "surname;last name", + "example_sentence_native": "¿Cuál es tu apellido?", + "example_sentence_english": "What is your last name?", + "pos": "noun", + "word_frequency": 2260 + }, + { + "word": "aprobado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approved;passed (exam)", + "example_sentence_native": "He aprobado el examen de conducir.", + "example_sentence_english": "I have passed the driving test.", + "pos": "adjective", + "word_frequency": 2261 + }, + { + "word": "borde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge;border", + "example_sentence_native": "Ten cuidado con el borde de la mesa.", + "example_sentence_english": "Be careful with the edge of the table.", + "pos": "noun", + "word_frequency": 2262 + }, + { + "word": "canto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "singing;song;corner (of a book;table)", + "example_sentence_native": "Me encanta el canto de los pájaros.", + "example_sentence_english": "I love the singing of the birds.", + "pos": "noun", + "word_frequency": 2263 + }, + { + "word": "conductor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driver;conductor", + "example_sentence_native": "El conductor del autobús fue muy amable.", + "example_sentence_english": "The bus driver was very kind.", + "pos": "noun", + "word_frequency": 2264 + }, + { + "word": "consciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscious;aware", + "example_sentence_native": "Soy consciente de los riesgos.", + "example_sentence_english": "I am aware of the risks.", + "pos": "adjective", + "word_frequency": 2265 + }, + { + "word": "contento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "happy;content", + "example_sentence_native": "Estoy muy contento con los resultados.", + "example_sentence_english": "I am very happy with the results.", + "pos": "adjective", + "word_frequency": 2266 + }, + { + "word": "curioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curious", + "example_sentence_native": "Es un niño muy curioso.", + "example_sentence_english": "He is a very curious child.", + "pos": "adjective", + "word_frequency": 2267 + }, + { + "word": "dama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lady", + "example_sentence_native": "La dama elegante entró al salón.", + "example_sentence_english": "The elegant lady entered the hall.", + "pos": "noun", + "word_frequency": 2268 + }, + { + "word": "desierto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desert", + "example_sentence_native": "El desierto del Sahara es enorme.", + "example_sentence_english": "The Sahara desert is enormous.", + "pos": "noun", + "word_frequency": 2269 + }, + { + "word": "destruir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destroy", + "example_sentence_native": "El terremoto destruyó muchos edificios.", + "example_sentence_english": "The earthquake destroyed many buildings.", + "pos": "verb", + "word_frequency": 2270 + }, + { + "word": "duque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duke", + "example_sentence_native": "El duque asistió a la ceremonia.", + "example_sentence_english": "The duke attended the ceremony.", + "pos": "noun", + "word_frequency": 2271 + }, + { + "word": "editor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor;publisher", + "example_sentence_native": "El editor revisó el manuscrito.", + "example_sentence_english": "The editor reviewed the manuscript.", + "pos": "noun", + "word_frequency": 2272 + }, + { + "word": "educativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educational", + "example_sentence_native": "Es un programa muy educativo para niños.", + "example_sentence_english": "It's a very educational program for children.", + "pos": "adjective", + "word_frequency": 2273 + }, + { + "word": "enseñar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to teach;to show", + "example_sentence_native": "Ella enseña español en la universidad.", + "example_sentence_english": "She teaches Spanish at the university.", + "pos": "verb", + "word_frequency": 2274 + }, + { + "word": "entregar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deliver;to hand over", + "example_sentence_native": "El cartero entregó el paquete.", + "example_sentence_english": "The postman delivered the package.", + "pos": "verb", + "word_frequency": 2275 + }, + { + "word": "equivalente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalent", + "example_sentence_native": "No hay una palabra equivalente en inglés.", + "example_sentence_english": "There is no equivalent word in English.", + "pos": "adjective", + "word_frequency": 2276 + }, + { + "word": "femenino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feminine", + "example_sentence_native": "La palabra \"mesa\" es de género femenino.", + "example_sentence_english": "The word \"mesa\" is of feminine gender.", + "pos": "adjective", + "word_frequency": 2277 + }, + { + "word": "feo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ugly", + "example_sentence_native": "No me gusta ese color, lo encuentro feo.", + "example_sentence_english": "I don't like that color, I find it ugly.", + "pos": "adjective", + "word_frequency": 2278 + }, + { + "word": "ficción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fiction", + "example_sentence_native": "Me gusta leer novelas de ciencia ficción.", + "example_sentence_english": "I like to read science fiction novels.", + "pos": "noun", + "word_frequency": 2279 + }, + { + "word": "genio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "genius", + "example_sentence_native": "Es un genio en matemáticas.", + "example_sentence_english": "He is a genius in mathematics.", + "pos": "noun", + "word_frequency": 2280 + }, + { + "word": "limpiar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to clean", + "example_sentence_native": "Necesito limpiar mi habitación.", + "example_sentence_english": "I need to clean my room.", + "pos": "verb", + "word_frequency": 2282 + }, + { + "word": "lástima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pity;shame", + "example_sentence_native": "Es una lástima que no puedas venir.", + "example_sentence_english": "It's a shame you can't come.", + "pos": "noun", + "word_frequency": 2284 + }, + { + "word": "manga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleeve;manga", + "example_sentence_native": "La camisa tiene mangas largas.", + "example_sentence_english": "The shirt has long sleeves.", + "pos": "noun", + "word_frequency": 2285 + }, + { + "word": "mediado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mid-;halfway through", + "example_sentence_native": "A mediados de mes, recibiremos el pago.", + "example_sentence_english": "Mid-month, we will receive the payment.", + "pos": "adjective", + "word_frequency": 2286 + }, + { + "word": "media", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sock;average", + "example_sentence_native": "Solo encontré una media.", + "example_sentence_english": "I only found one sock.", + "pos": "noun", + "word_frequency": 2287 + }, + { + "word": "mencionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mentioned", + "example_sentence_native": "El tema mencionado es importante.", + "example_sentence_english": "The mentioned topic is important.", + "pos": "adjective", + "word_frequency": 2288 + }, + { + "word": "necesariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "necessarily", + "example_sentence_native": "No es necesariamente cierto.", + "example_sentence_english": "It's not necessarily true.", + "pos": "adverb", + "word_frequency": 2289 + }, + { + "word": "orientación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orientation;guidance", + "example_sentence_native": "Necesito orientación para mi carrera.", + "example_sentence_english": "I need guidance for my career.", + "pos": "noun", + "word_frequency": 2290 + }, + { + "word": "patrón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pattern;boss", + "example_sentence_native": "Hay un patrón repetitivo en su comportamiento.", + "example_sentence_english": "There is a repetitive pattern in his behavior.", + "pos": "noun", + "word_frequency": 2291 + }, + { + "word": "quinto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fifth", + "example_sentence_native": "Él llegó en quinto lugar.", + "example_sentence_english": "He arrived in fifth place.", + "pos": "adjective", + "word_frequency": 2292 + }, + { + "word": "rendimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance;yield", + "example_sentence_native": "Su rendimiento académico ha mejorado.", + "example_sentence_english": "His academic performance has improved.", + "pos": "noun", + "word_frequency": 2293 + }, + { + "word": "reto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "challenge", + "example_sentence_native": "Este proyecto es un gran reto.", + "example_sentence_english": "This project is a big challenge.", + "pos": "noun", + "word_frequency": 2294 + }, + { + "word": "sentado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seated;sitting", + "example_sentence_native": "Él está sentado en la silla.", + "example_sentence_english": "He is sitting on the chair.", + "pos": "adjective", + "word_frequency": 2296 + }, + { + "word": "titulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titled;graduated", + "example_sentence_native": "El libro titulado \"Cien años de soledad\" es famoso.", + "example_sentence_english": "The book titled \"One Hundred Years of Solitude\" is famous.", + "pos": "adjective", + "word_frequency": 2297 + }, + { + "word": "típico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typical", + "example_sentence_native": "Es un día típico de verano.", + "example_sentence_english": "It's a typical summer day.", + "pos": "adjective", + "word_frequency": 2298 + }, + { + "word": "unir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unite;to join", + "example_sentence_native": "Debemos unir fuerzas.", + "example_sentence_english": "We must unite forces.", + "pos": "verb", + "word_frequency": 2300 + }, + { + "word": "valiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brave;valiant", + "example_sentence_native": "Es un soldado muy valiente.", + "example_sentence_english": "He is a very brave soldier.", + "pos": "adjective", + "word_frequency": 2301 + }, + { + "word": "vicepresidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice president", + "example_sentence_native": "El vicepresidente dio un discurso.", + "example_sentence_english": "The vice president gave a speech.", + "pos": "noun", + "word_frequency": 2303 + }, + { + "word": "acusado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accused;defendant", + "example_sentence_native": "El acusado se declaró inocente.", + "example_sentence_english": "The defendant pleaded innocent.", + "pos": "noun", + "word_frequency": 2304 + }, + { + "word": "analizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to analyze", + "example_sentence_native": "Necesitamos analizar los datos.", + "example_sentence_english": "We need to analyze the data.", + "pos": "verb", + "word_frequency": 2305 + }, + { + "word": "app", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "app", + "example_sentence_native": "Descargué una nueva app en mi teléfono.", + "example_sentence_english": "I downloaded a new app on my phone.", + "pos": "noun", + "word_frequency": 2306 + }, + { + "word": "arco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arch;bow", + "example_sentence_native": "El arco del puente es muy alto.", + "example_sentence_english": "The arch of the bridge is very high.", + "pos": "noun", + "word_frequency": 2307 + }, + { + "word": "asesino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assassin;murderer", + "example_sentence_native": "La policía busca al asesino.", + "example_sentence_english": "The police are looking for the murderer.", + "pos": "noun", + "word_frequency": 2308 + }, + { + "word": "asiento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seat", + "example_sentence_native": "Por favor, tome asiento.", + "example_sentence_english": "Please, take a seat.", + "pos": "noun", + "word_frequency": 2309 + }, + { + "word": "asumir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assume;to take on", + "example_sentence_native": "Debemos asumir la responsabilidad.", + "example_sentence_english": "We must assume responsibility.", + "pos": "verb", + "word_frequency": 2310 + }, + { + "word": "calma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calm;tranquility", + "example_sentence_native": "Mantén la calma.", + "example_sentence_english": "Keep calm.", + "pos": "noun", + "word_frequency": 2311 + }, + { + "word": "capa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "layer;cape", + "example_sentence_native": "La cebolla tiene muchas capas.", + "example_sentence_english": "The onion has many layers.", + "pos": "noun", + "word_frequency": 2312 + }, + { + "word": "charla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat;talk", + "example_sentence_native": "Tuvimos una charla interesante.", + "example_sentence_english": "We had an interesting chat.", + "pos": "noun", + "word_frequency": 2313 + }, + { + "word": "cumbre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summit;peak", + "example_sentence_native": "La cumbre de la montaña estaba cubierta de nieve.", + "example_sentence_english": "The mountain summit was covered in snow.", + "pos": "noun", + "word_frequency": 2314 + }, + { + "word": "declarado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declared", + "example_sentence_native": "Fue declarado culpable.", + "example_sentence_english": "He was declared guilty.", + "pos": "adjective", + "word_frequency": 2315 + }, + { + "word": "desaparecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "missing;disappeared", + "example_sentence_native": "El niño desaparecido fue encontrado.", + "example_sentence_english": "The missing child was found.", + "pos": "adjective", + "word_frequency": 2316 + }, + { + "word": "embajador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambassador", + "example_sentence_native": "El embajador visitó la ciudad.", + "example_sentence_english": "The ambassador visited the city.", + "pos": "noun", + "word_frequency": 2317 + }, + { + "word": "equilibrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balance;equilibrium", + "example_sentence_native": "Es importante mantener el equilibrio.", + "example_sentence_english": "It's important to maintain balance.", + "pos": "noun", + "word_frequency": 2318 + }, + { + "word": "equivocado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wrong;mistaken", + "example_sentence_native": "Estás equivocado.", + "example_sentence_english": "You are wrong.", + "pos": "adjective", + "word_frequency": 2319 + }, + { + "word": "excusa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excuse", + "example_sentence_native": "No tengo ninguna excusa para mi retraso.", + "example_sentence_english": "I have no excuse for my delay.", + "pos": "noun", + "word_frequency": 2320 + }, + { + "word": "exigir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demand;to require", + "example_sentence_native": "La ley exige que todos los ciudadanos paguen impuestos.", + "example_sentence_english": "The law requires all citizens to pay taxes.", + "pos": "verb", + "word_frequency": 2321 + }, + { + "word": "expansión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expansion", + "example_sentence_native": "La empresa planea una gran expansión internacional.", + "example_sentence_english": "The company plans a large international expansion.", + "pos": "noun", + "word_frequency": 2322 + }, + { + "word": "firmado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signed", + "example_sentence_native": "El documento ya está firmado por ambas partes.", + "example_sentence_english": "The document is already signed by both parties.", + "pos": "adjective", + "word_frequency": 2323 + }, + { + "word": "identificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to identify", + "example_sentence_native": "Es importante identificar la causa del problema.", + "example_sentence_english": "It is important to identify the cause of the problem.", + "pos": "verb", + "word_frequency": 2324 + }, + { + "word": "lector", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reader", + "example_sentence_native": "Es un libro muy popular entre los jóvenes lectores.", + "example_sentence_english": "It is a very popular book among young readers.", + "pos": "noun", + "word_frequency": 2325 + }, + { + "word": "logro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "achievement;accomplishment", + "example_sentence_native": "Conseguir este título es un gran logro para mí.", + "example_sentence_english": "Achieving this degree is a great accomplishment for me.", + "pos": "noun", + "word_frequency": 2326 + }, + { + "word": "mecanismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanism", + "example_sentence_native": "El reloj tiene un mecanismo muy complejo.", + "example_sentence_english": "The clock has a very complex mechanism.", + "pos": "noun", + "word_frequency": 2327 + }, + { + "word": "negativo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "negative", + "example_sentence_native": "No quiero escuchar más comentarios negativos.", + "example_sentence_english": "I don't want to hear any more negative comments.", + "pos": "adjective", + "word_frequency": 2328 + }, + { + "word": "ocupado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "busy;occupied", + "example_sentence_native": "Estoy muy ocupado con el trabajo esta semana.", + "example_sentence_english": "I am very busy with work this week.", + "pos": "adjective", + "word_frequency": 2329 + }, + { + "word": "olvido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oblivion;forgetfulness", + "example_sentence_native": "Cayó en el olvido después de muchos años.", + "example_sentence_english": "It fell into oblivion after many years.", + "pos": "noun", + "word_frequency": 2330 + }, + { + "word": "orto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sunrise (astronomical term)", + "example_sentence_native": "El orto del sol es un espectáculo hermoso en la montaña.", + "example_sentence_english": "The sunrise is a beautiful spectacle in the mountains.", + "pos": "noun", + "word_frequency": 2331 + }, + { + "word": "parada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stop (bus stop;train stop)", + "example_sentence_native": "La próxima parada es la estación central.", + "example_sentence_english": "The next stop is the central station.", + "pos": "noun", + "word_frequency": 2332 + }, + { + "word": "poderoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powerful", + "example_sentence_native": "Es un país con una economía muy poderosa.", + "example_sentence_english": "It is a country with a very powerful economy.", + "pos": "adjective", + "word_frequency": 2333 + }, + { + "word": "portada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover (of a book;magazine);front page", + "example_sentence_native": "La portada del libro es muy llamativa.", + "example_sentence_english": "The book's cover is very striking.", + "pos": "noun", + "word_frequency": 2334 + }, + { + "word": "profesión", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "profession", + "example_sentence_native": "¿Cuál es tu profesión?", + "example_sentence_english": "What is your profession?", + "pos": "noun", + "word_frequency": 2335 + }, + { + "word": "rechazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejection", + "example_sentence_native": "Su propuesta fue recibida con rechazo.", + "example_sentence_english": "His proposal was met with rejection.", + "pos": "noun", + "word_frequency": 2337 + }, + { + "word": "reflexión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflection", + "example_sentence_native": "Necesitamos un momento de reflexión antes de decidir.", + "example_sentence_english": "We need a moment of reflection before deciding.", + "pos": "noun", + "word_frequency": 2338 + }, + { + "word": "rescate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rescue", + "example_sentence_native": "El equipo de rescate llegó a tiempo.", + "example_sentence_english": "The rescue team arrived on time.", + "pos": "noun", + "word_frequency": 2339 + }, + { + "word": "situado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "located;situated", + "example_sentence_native": "El hotel está situado en el centro de la ciudad.", + "example_sentence_english": "The hotel is located in the city center.", + "pos": "adjective", + "word_frequency": 2340 + }, + { + "word": "tesis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thesis", + "example_sentence_native": "Está trabajando en su tesis doctoral.", + "example_sentence_english": "She is working on her doctoral thesis.", + "pos": "noun", + "word_frequency": 2341 + }, + { + "word": "tía", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "aunt", + "example_sentence_native": "Mi tía vive en otra ciudad.", + "example_sentence_english": "My aunt lives in another city.", + "pos": "noun", + "word_frequency": 2342 + }, + { + "word": "votante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voter", + "example_sentence_native": "Cada votante tiene derecho a expresar su opinión.", + "example_sentence_english": "Every voter has the right to express their opinion.", + "pos": "noun", + "word_frequency": 2343 + }, + { + "word": "órgano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organ (body part;musical instrument;organization)", + "example_sentence_native": "El corazón es un órgano vital.", + "example_sentence_english": "The heart is a vital organ.", + "pos": "noun", + "word_frequency": 2344 + }, + { + "word": "ala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wing", + "example_sentence_native": "El pájaro extendió sus alas para volar.", + "example_sentence_english": "The bird spread its wings to fly.", + "pos": "noun", + "word_frequency": 2345 + }, + { + "word": "arreglar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fix;to arrange", + "example_sentence_native": "Necesito arreglar mi coche.", + "example_sentence_english": "I need to fix my car.", + "pos": "verb", + "word_frequency": 2346 + }, + { + "word": "atender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attend to;to assist;to heed", + "example_sentence_native": "El médico está atendiendo a un paciente.", + "example_sentence_english": "The doctor is attending to a patient.", + "pos": "verb", + "word_frequency": 2347 + }, + { + "word": "autonomía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomy", + "example_sentence_native": "La región busca una mayor autonomía.", + "example_sentence_english": "The region seeks greater autonomy.", + "pos": "noun", + "word_frequency": 2348 + }, + { + "word": "bienvenido", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "welcome", + "example_sentence_native": "¡Bienvenido a nuestra casa!", + "example_sentence_english": "Welcome to our home!", + "pos": "adjective", + "word_frequency": 2349 + }, + { + "word": "botella", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bottle", + "example_sentence_native": "Por favor, pásame la botella de agua.", + "example_sentence_english": "Please pass me the water bottle.", + "pos": "noun", + "word_frequency": 2350 + }, + { + "word": "campeonato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "championship", + "example_sentence_native": "Ganaron el campeonato el año pasado.", + "example_sentence_english": "They won the championship last year.", + "pos": "noun", + "word_frequency": 2351 + }, + { + "word": "cerro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hill;mound", + "example_sentence_native": "Subimos al cerro para ver el atardecer.", + "example_sentence_english": "We climbed the hill to watch the sunset.", + "pos": "noun", + "word_frequency": 2352 + }, + { + "word": "ciertamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainly;indeed", + "example_sentence_native": "Ciertamente, es una decisión difícil.", + "example_sentence_english": "Certainly, it is a difficult decision.", + "pos": "adverb", + "word_frequency": 2353 + }, + { + "word": "coger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to take;to catch", + "example_sentence_native": "Voy a coger el autobús a las ocho.", + "example_sentence_english": "I'm going to catch the bus at eight.", + "pos": "verb", + "word_frequency": 2354 + }, + { + "word": "composición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composition", + "example_sentence_native": "La composición de la obra es muy compleja.", + "example_sentence_english": "The composition of the work is very complex.", + "pos": "noun", + "word_frequency": 2355 + }, + { + "word": "concha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shell", + "example_sentence_native": "Encontré una hermosa concha en la playa.", + "example_sentence_english": "I found a beautiful shell on the beach.", + "pos": "noun", + "word_frequency": 2356 + }, + { + "word": "condena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condemnation;sentence (legal)", + "example_sentence_native": "Recibió una condena de diez años de prisión.", + "example_sentence_english": "He received a ten-year prison sentence.", + "pos": "noun", + "word_frequency": 2357 + }, + { + "word": "constituir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to constitute;to form", + "example_sentence_native": "Estas reglas constituyen la base de nuestro acuerdo.", + "example_sentence_english": "These rules constitute the basis of our agreement.", + "pos": "verb", + "word_frequency": 2359 + }, + { + "word": "continuo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuous", + "example_sentence_native": "El ruido continuo me molesta.", + "example_sentence_english": "The continuous noise bothers me.", + "pos": "adjective", + "word_frequency": 2360 + }, + { + "word": "creciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growing;increasing", + "example_sentence_native": "Hay una preocupación creciente por el medio ambiente.", + "example_sentence_english": "There is a growing concern for the environment.", + "pos": "adjective", + "word_frequency": 2361 + }, + { + "word": "criterio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criterion;judgment", + "example_sentence_native": "Necesitamos establecer un criterio claro.", + "example_sentence_english": "We need to establish a clear criterion.", + "pos": "noun", + "word_frequency": 2362 + }, + { + "word": "data", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data", + "example_sentence_native": "Los científicos están analizando los datos.", + "example_sentence_english": "The scientists are analyzing the data.", + "pos": "noun", + "word_frequency": 2363 + }, + { + "word": "definir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to define", + "example_sentence_native": "Es difícil definir la felicidad.", + "example_sentence_english": "It's difficult to define happiness.", + "pos": "verb", + "word_frequency": 2364 + }, + { + "word": "emoción", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emotion;excitement", + "example_sentence_native": "Sintió una gran emoción al ganar.", + "example_sentence_english": "He felt great emotion upon winning.", + "pos": "noun", + "word_frequency": 2365 + }, + { + "word": "espiritual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritual", + "example_sentence_native": "Busca la paz espiritual.", + "example_sentence_english": "He seeks spiritual peace.", + "pos": "adjective", + "word_frequency": 2366 + }, + { + "word": "fiel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faithful;loyal", + "example_sentence_native": "Es un amigo muy fiel.", + "example_sentence_english": "He is a very faithful friend.", + "pos": "adjective", + "word_frequency": 2367 + }, + { + "word": "fortuna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortune;luck", + "example_sentence_native": "Tuvo la fortuna de encontrarlo.", + "example_sentence_english": "He had the fortune to find it.", + "pos": "noun", + "word_frequency": 2368 + }, + { + "word": "gabinete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabinet", + "example_sentence_native": "El presidente anunció cambios en su gabinete.", + "example_sentence_english": "The president announced changes in his cabinet.", + "pos": "noun", + "word_frequency": 2369 + }, + { + "word": "huelga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strike (labor)", + "example_sentence_native": "Los trabajadores están en huelga.", + "example_sentence_english": "The workers are on strike.", + "pos": "noun", + "word_frequency": 2372 + }, + { + "word": "limpio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clean", + "example_sentence_native": "La casa está limpia.", + "example_sentence_english": "The house is clean.", + "pos": "adjective", + "word_frequency": 2374 + }, + { + "word": "manual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manual;handbook", + "example_sentence_native": "Lee el manual de instrucciones.", + "example_sentence_english": "Read the instruction manual.", + "pos": "noun", + "word_frequency": 2375 + }, + { + "word": "maravilloso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wonderful;marvelous", + "example_sentence_native": "Tuvimos un día maravilloso.", + "example_sentence_english": "We had a wonderful day.", + "pos": "adjective", + "word_frequency": 2376 + }, + { + "word": "mate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mate (drink)", + "example_sentence_native": "Me gusta tomar mate por la mañana.", + "example_sentence_english": "I like to drink mate in the morning.", + "pos": "noun", + "word_frequency": 2377 + }, + { + "word": "muchacho", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boy;lad", + "example_sentence_native": "El muchacho juega en el parque.", + "example_sentence_english": "The boy plays in the park.", + "pos": "noun", + "word_frequency": 2379 + }, + { + "word": "oración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prayer;sentence", + "example_sentence_native": "Ella dijo una oración antes de dormir.", + "example_sentence_english": "She said a prayer before sleeping.", + "pos": "noun", + "word_frequency": 2381 + }, + { + "word": "orgulloso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proud", + "example_sentence_native": "Estoy muy orgulloso de ti.", + "example_sentence_english": "I am very proud of you.", + "pos": "adjective", + "word_frequency": 2382 + }, + { + "word": "parcial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partial;biased", + "example_sentence_native": "Su opinión es un poco parcial.", + "example_sentence_english": "His opinion is a bit biased.", + "pos": "adjective", + "word_frequency": 2383 + }, + { + "word": "respectivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectively", + "example_sentence_native": "Juan y María tienen 20 y 22 años, respectivamente.", + "example_sentence_english": "Juan and Maria are 20 and 22 years old, respectively.", + "pos": "adverb", + "word_frequency": 2384 + }, + { + "word": "ridículo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ridiculous", + "example_sentence_native": "Su excusa fue ridícula.", + "example_sentence_english": "His excuse was ridiculous.", + "pos": "adjective", + "word_frequency": 2385 + }, + { + "word": "sabio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wise", + "example_sentence_native": "Es un hombre muy sabio.", + "example_sentence_english": "He is a very wise man.", + "pos": "adjective", + "word_frequency": 2386 + }, + { + "word": "seguimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "follow-up;monitoring", + "example_sentence_native": "Haremos un seguimiento del caso.", + "example_sentence_english": "We will do a follow-up on the case.", + "pos": "noun", + "word_frequency": 2387 + }, + { + "word": "suave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soft;smooth;gentle", + "example_sentence_native": "La tela es muy suave.", + "example_sentence_english": "The fabric is very soft.", + "pos": "adjective", + "word_frequency": 2389 + }, + { + "word": "transformación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformation", + "example_sentence_native": "La ciudad ha experimentado una gran transformación.", + "example_sentence_english": "The city has undergone a great transformation.", + "pos": "noun", + "word_frequency": 2391 + }, + { + "word": "académico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academic", + "example_sentence_native": "Tiene un buen historial académico.", + "example_sentence_english": "He has a good academic record.", + "pos": "adjective", + "word_frequency": 2393 + }, + { + "word": "actriz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actress", + "example_sentence_native": "Ella es una actriz famosa.", + "example_sentence_english": "She is a famous actress.", + "pos": "noun", + "word_frequency": 2394 + }, + { + "word": "actualización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "update", + "example_sentence_native": "Necesitamos una actualización del software.", + "example_sentence_english": "We need a software update.", + "pos": "noun", + "word_frequency": 2395 + }, + { + "word": "adicional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "additional", + "example_sentence_native": "Necesitamos información adicional.", + "example_sentence_english": "We need additional information.", + "pos": "adjective", + "word_frequency": 2396 + }, + { + "word": "amarillo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yellow", + "example_sentence_native": "El coche es amarillo.", + "example_sentence_english": "The car is yellow.", + "pos": "adjective", + "word_frequency": 2397 + }, + { + "word": "aprovechar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take advantage of;to make the most of", + "example_sentence_native": "Debemos aprovechar esta oportunidad.", + "example_sentence_english": "We must take advantage of this opportunity.", + "pos": "verb", + "word_frequency": 2398 + }, + { + "word": "bravo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brave;fierce", + "example_sentence_native": "El torero fue muy bravo.", + "example_sentence_english": "The bullfighter was very brave.", + "pos": "adjective", + "word_frequency": 2399 + }, + { + "word": "catalán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catalan", + "example_sentence_native": "El idioma catalán se habla en Cataluña.", + "example_sentence_english": "The Catalan language is spoken in Catalonia.", + "pos": "adjective", + "word_frequency": 2400 + }, + { + "word": "coalición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coalition", + "example_sentence_native": "Formaron una coalición para las elecciones.", + "example_sentence_english": "They formed a coalition for the elections.", + "pos": "noun", + "word_frequency": 2403 + }, + { + "word": "combatir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to combat;to fight", + "example_sentence_native": "Debemos combatir la pobreza.", + "example_sentence_english": "We must combat poverty.", + "pos": "verb", + "word_frequency": 2404 + }, + { + "word": "coordinación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordination", + "example_sentence_native": "La coordinación del equipo fue excelente.", + "example_sentence_english": "The team's coordination was excellent.", + "pos": "noun", + "word_frequency": 2405 + }, + { + "word": "culto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cult;worship", + "example_sentence_native": "Practican un culto ancestral.", + "example_sentence_english": "They practice an ancestral cult.", + "pos": "noun", + "word_frequency": 2406 + }, + { + "word": "depresión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depression", + "example_sentence_native": "La depresión es una enfermedad grave.", + "example_sentence_english": "Depression is a serious illness.", + "pos": "noun", + "word_frequency": 2407 + }, + { + "word": "efectivamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effectively;indeed", + "example_sentence_native": "Efectivamente, tienes razón.", + "example_sentence_english": "Indeed, you are right.", + "pos": "adverb", + "word_frequency": 2408 + }, + { + "word": "esencial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "essential", + "example_sentence_native": "El agua es esencial para la vida.", + "example_sentence_english": "Water is essential for life.", + "pos": "adjective", + "word_frequency": 2409 + }, + { + "word": "espada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sword", + "example_sentence_native": "El caballero desenvainó su espada.", + "example_sentence_english": "The knight drew his sword.", + "pos": "noun", + "word_frequency": 2410 + }, + { + "word": "flujo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow;flux", + "example_sentence_native": "Hay un flujo constante de información.", + "example_sentence_english": "There is a constant flow of information.", + "pos": "noun", + "word_frequency": 2411 + }, + { + "word": "galería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallery", + "example_sentence_native": "Visitamos una galería de arte.", + "example_sentence_english": "We visited an art gallery.", + "pos": "noun", + "word_frequency": 2412 + }, + { + "word": "garantía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guarantee;warranty", + "example_sentence_native": "El producto tiene dos años de garantía.", + "example_sentence_english": "The product has a two-year warranty.", + "pos": "noun", + "word_frequency": 2413 + }, + { + "word": "gasolina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gasoline;petrol", + "example_sentence_native": "Necesito poner gasolina al coche.", + "example_sentence_english": "I need to put gasoline in the car.", + "pos": "noun", + "word_frequency": 2414 + }, + { + "word": "hilo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thread;string", + "example_sentence_native": "Necesito un hilo para coser el botón.", + "example_sentence_english": "I need a thread to sew the button.", + "pos": "noun", + "word_frequency": 2416 + }, + { + "word": "propietario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owner;proprietor", + "example_sentence_native": "El propietario del coche es mi vecino.", + "example_sentence_english": "The owner of the car is my neighbor.", + "pos": "noun", + "word_frequency": 2420 + }, + { + "word": "protagonista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protagonist;main character", + "example_sentence_native": "El protagonista de la novela es un detective.", + "example_sentence_english": "The protagonist of the novel is a detective.", + "pos": "noun", + "word_frequency": 2421 + }, + { + "word": "química", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemistry", + "example_sentence_native": "Estudiamos química en la universidad.", + "example_sentence_english": "We study chemistry at university.", + "pos": "noun", + "word_frequency": 2423 + }, + { + "word": "revelar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reveal;to develop (photos)", + "example_sentence_native": "La investigación reveló la verdad.", + "example_sentence_english": "The investigation revealed the truth.", + "pos": "verb", + "word_frequency": 2424 + }, + { + "word": "sentar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sit;to feel (well;bad)", + "example_sentence_native": "Por favor, siéntate.", + "example_sentence_english": "Please, sit down.", + "pos": "verb", + "word_frequency": 2425 + }, + { + "word": "sufrido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long-suffering;endured", + "example_sentence_native": "Es una persona muy sufrida.", + "example_sentence_english": "He is a very long-suffering person.", + "pos": "adjective", + "word_frequency": 2427 + }, + { + "word": "totalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "totality;entirety", + "example_sentence_native": "La totalidad de los estudiantes aprobaron.", + "example_sentence_english": "The totality of the students passed.", + "pos": "noun", + "word_frequency": 2428 + }, + { + "word": "violación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violation;rape", + "example_sentence_native": "Fue una violación de las reglas.", + "example_sentence_english": "It was a violation of the rules.", + "pos": "noun", + "word_frequency": 2430 + }, + { + "word": "acompañado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accompanied", + "example_sentence_native": "Fui acompañado por mi amigo.", + "example_sentence_english": "I was accompanied by my friend.", + "pos": "adjective", + "word_frequency": 2431 + }, + { + "word": "alimentación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutrition;feeding;food", + "example_sentence_native": "Una buena alimentación es clave para la salud.", + "example_sentence_english": "Good nutrition is key for health.", + "pos": "noun", + "word_frequency": 2433 + }, + { + "word": "británico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "British", + "example_sentence_native": "Es un ciudadano británico.", + "example_sentence_english": "He is a British citizen.", + "pos": "adjective", + "word_frequency": 2435 + }, + { + "word": "combinación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combination", + "example_sentence_native": "La combinación de colores es perfecta.", + "example_sentence_english": "The color combination is perfect.", + "pos": "noun", + "word_frequency": 2436 + }, + { + "word": "cultivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultivation;crop", + "example_sentence_native": "El cultivo de trigo es importante aquí.", + "example_sentence_english": "Wheat cultivation is important here.", + "pos": "noun", + "word_frequency": 2437 + }, + { + "word": "célula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cell", + "example_sentence_native": "La célula es la unidad básica de la vida.", + "example_sentence_english": "The cell is the basic unit of life.", + "pos": "noun", + "word_frequency": 2438 + }, + { + "word": "desconocido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unknown", + "example_sentence_native": "El número era desconocido.", + "example_sentence_english": "The number was unknown.", + "pos": "adjective", + "word_frequency": 2440 + }, + { + "word": "embajada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embassy", + "example_sentence_native": "La embajada está en el centro de la ciudad.", + "example_sentence_english": "The embassy is in the city center.", + "pos": "noun", + "word_frequency": 2441 + }, + { + "word": "específico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specific", + "example_sentence_native": "Necesito una respuesta específica.", + "example_sentence_english": "I need a specific answer.", + "pos": "adjective", + "word_frequency": 2442 + }, + { + "word": "fijo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed", + "example_sentence_native": "Tenemos un horario fijo.", + "example_sentence_english": "We have a fixed schedule.", + "pos": "adjective", + "word_frequency": 2443 + }, + { + "word": "formal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formal", + "example_sentence_native": "La reunión fue muy formal.", + "example_sentence_english": "The meeting was very formal.", + "pos": "adjective", + "word_frequency": 2444 + }, + { + "word": "gris", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gray", + "example_sentence_native": "El cielo está gris hoy.", + "example_sentence_english": "The sky is gray today.", + "pos": "adjective", + "word_frequency": 2445 + }, + { + "word": "gráfico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphic", + "example_sentence_native": "El diseño gráfico es su pasión.", + "example_sentence_english": "Graphic design is his passion.", + "pos": "adjective", + "word_frequency": 2446 + }, + { + "word": "guardar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to save", + "example_sentence_native": "Necesito guardar este documento.", + "example_sentence_english": "I need to save this document.", + "pos": "verb", + "word_frequency": 2447 + }, + { + "word": "incluido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included", + "example_sentence_native": "El desayuno está incluido en el precio.", + "example_sentence_english": "Breakfast is included in the price.", + "pos": "adjective", + "word_frequency": 2448 + }, + { + "word": "ira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anger", + "example_sentence_native": "Sintió una gran ira.", + "example_sentence_english": "He felt great anger.", + "pos": "noun", + "word_frequency": 2449 + }, + { + "word": "jean", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jeans", + "example_sentence_native": "Me puse mis jeans favoritos.", + "example_sentence_english": "I put on my favorite jeans.", + "pos": "noun", + "word_frequency": 2450 + }, + { + "word": "juvenil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "juvenile", + "example_sentence_native": "Es una película juvenil.", + "example_sentence_english": "It's a youth film.", + "pos": "adjective", + "word_frequency": 2451 + }, + { + "word": "literalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literally", + "example_sentence_native": "Lo dijo literalmente.", + "example_sentence_english": "He said it literally.", + "pos": "adverb", + "word_frequency": 2452 + }, + { + "word": "matemática", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mathematics", + "example_sentence_native": "Las matemáticas son difíciles para algunos.", + "example_sentence_english": "Mathematics is difficult for some.", + "pos": "noun", + "word_frequency": 2453 + }, + { + "word": "moto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorcycle", + "example_sentence_native": "Compró una moto nueva.", + "example_sentence_english": "He bought a new motorcycle.", + "pos": "noun", + "word_frequency": 2454 + }, + { + "word": "ordenar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to order", + "example_sentence_native": "Necesito ordenar mi habitación.", + "example_sentence_english": "I need to tidy up my room.", + "pos": "verb", + "word_frequency": 2455 + }, + { + "word": "pesca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishing", + "example_sentence_native": "La pesca es su pasatiempo.", + "example_sentence_english": "Fishing is his hobby.", + "pos": "noun", + "word_frequency": 2456 + }, + { + "word": "pinta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pint", + "example_sentence_native": "Pidió una pinta de cerveza.", + "example_sentence_english": "He ordered a pint of beer.", + "pos": "noun", + "word_frequency": 2457 + }, + { + "word": "posesión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possession", + "example_sentence_native": "La casa es su posesión más valiosa.", + "example_sentence_english": "The house is his most valuable possession.", + "pos": "noun", + "word_frequency": 2458 + }, + { + "word": "prioridad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priority", + "example_sentence_native": "Mi prioridad es terminar el trabajo.", + "example_sentence_english": "My priority is to finish the work.", + "pos": "noun", + "word_frequency": 2459 + }, + { + "word": "reglamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation", + "example_sentence_native": "Debemos seguir el reglamento.", + "example_sentence_english": "We must follow the regulation.", + "pos": "noun", + "word_frequency": 2460 + }, + { + "word": "respetar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to respect", + "example_sentence_native": "Debemos respetar a los demás.", + "example_sentence_english": "We must respect others.", + "pos": "verb", + "word_frequency": 2461 + }, + { + "word": "salsa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauce", + "example_sentence_native": "Me encanta la salsa picante.", + "example_sentence_english": "I love spicy sauce.", + "pos": "noun", + "word_frequency": 2462 + }, + { + "word": "saltar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to jump", + "example_sentence_native": "El niño empezó a saltar de alegría.", + "example_sentence_english": "The child started to jump with joy.", + "pos": "verb", + "word_frequency": 2463 + }, + { + "word": "separación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separation", + "example_sentence_native": "La separación fue difícil para ellos.", + "example_sentence_english": "The separation was difficult for them.", + "pos": "noun", + "word_frequency": 2464 + }, + { + "word": "sucedido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happened", + "example_sentence_native": "Lo sucedido fue inesperado.", + "example_sentence_english": "What happened was unexpected.", + "pos": "adjective", + "word_frequency": 2465 + }, + { + "word": "tesoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treasure", + "example_sentence_native": "Encontraron un tesoro escondido.", + "example_sentence_english": "They found a hidden treasure.", + "pos": "noun", + "word_frequency": 2466 + }, + { + "word": "tonelada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ton", + "example_sentence_native": "El camión puede transportar una tonelada.", + "example_sentence_english": "The truck can carry a ton.", + "pos": "noun", + "word_frequency": 2468 + }, + { + "word": "ética", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethics", + "example_sentence_native": "La ética profesional es muy importante.", + "example_sentence_english": "Professional ethics are very important.", + "pos": "noun", + "word_frequency": 2471 + }, + { + "word": "acero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steel", + "example_sentence_native": "El puente está hecho de acero.", + "example_sentence_english": "The bridge is made of steel.", + "pos": "noun", + "word_frequency": 2472 + }, + { + "word": "aparato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device", + "example_sentence_native": "Este aparato es muy útil.", + "example_sentence_english": "This device is very useful.", + "pos": "noun", + "word_frequency": 2473 + }, + { + "word": "armado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armed", + "example_sentence_native": "El hombre estaba armado.", + "example_sentence_english": "The man was armed.", + "pos": "adjective", + "word_frequency": 2474 + }, + { + "word": "autobús", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "example_sentence_native": "Tomé el autobús para ir al trabajo.", + "example_sentence_english": "I took the bus to go to work.", + "pos": "noun", + "word_frequency": 2475 + }, + { + "word": "barra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bar", + "example_sentence_native": "Nos sentamos en la barra del bar.", + "example_sentence_english": "We sat at the bar counter.", + "pos": "noun", + "word_frequency": 2476 + }, + { + "word": "bicicleta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bicycle", + "example_sentence_native": "Me gusta andar en bicicleta.", + "example_sentence_english": "I like to ride a bicycle.", + "pos": "noun", + "word_frequency": 2477 + }, + { + "word": "bolsillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pocket", + "example_sentence_native": "Puso las llaves en su bolsillo.", + "example_sentence_english": "He put the keys in his pocket.", + "pos": "noun", + "word_frequency": 2478 + }, + { + "word": "camiseta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "t-shirt", + "example_sentence_native": "Llevaba una camiseta azul.", + "example_sentence_english": "He was wearing a blue t-shirt.", + "pos": "noun", + "word_frequency": 2479 + }, + { + "word": "casualidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coincidence;chance", + "example_sentence_native": "Fue pura casualidad que nos encontráramos.", + "example_sentence_english": "It was pure coincidence that we met.", + "pos": "noun", + "word_frequency": 2480 + }, + { + "word": "cinta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ribbon;tape;film", + "example_sentence_native": "Necesito una cinta adhesiva para pegar esto.", + "example_sentence_english": "I need some adhesive tape to stick this.", + "pos": "noun", + "word_frequency": 2481 + }, + { + "word": "cirugía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgery", + "example_sentence_native": "La cirugía fue un éxito.", + "example_sentence_english": "The surgery was a success.", + "pos": "noun", + "word_frequency": 2482 + }, + { + "word": "determinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "determined;certain;specific", + "example_sentence_native": "Es una persona muy determinada a alcanzar sus metas.", + "example_sentence_english": "She is a very determined person to achieve her goals.", + "pos": "adjective", + "word_frequency": 2484 + }, + { + "word": "domicilio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domicile;home;address", + "example_sentence_native": "La entrega a domicilio es gratuita.", + "example_sentence_english": "Home delivery is free.", + "pos": "noun", + "word_frequency": 2485 + }, + { + "word": "dominicano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dominican", + "example_sentence_native": "Mi amigo es dominicano.", + "example_sentence_english": "My friend is Dominican.", + "pos": "adjective", + "word_frequency": 2486 + }, + { + "word": "esclavo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slave", + "example_sentence_native": "Los esclavos trabajaban en condiciones muy duras.", + "example_sentence_english": "Slaves worked in very harsh conditions.", + "pos": "noun", + "word_frequency": 2487 + }, + { + "word": "existente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing", + "example_sentence_native": "Queremos mejorar las condiciones existentes.", + "example_sentence_english": "We want to improve the existing conditions.", + "pos": "adjective", + "word_frequency": 2488 + }, + { + "word": "explosión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explosion", + "example_sentence_native": "Se escuchó una fuerte explosión.", + "example_sentence_english": "A loud explosion was heard.", + "pos": "noun", + "word_frequency": 2489 + }, + { + "word": "falla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fault;failure;flaw", + "example_sentence_native": "Hubo una falla en el sistema.", + "example_sentence_english": "There was a fault in the system.", + "pos": "noun", + "word_frequency": 2490 + }, + { + "word": "fan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fan", + "example_sentence_native": "Soy un gran fan de su música.", + "example_sentence_english": "I am a big fan of their music.", + "pos": "noun", + "word_frequency": 2491 + }, + { + "word": "inocente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "innocent", + "example_sentence_native": "El jurado lo declaró inocente.", + "example_sentence_english": "The jury declared him innocent.", + "pos": "adjective", + "word_frequency": 2493 + }, + { + "word": "lanzado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launched;daring;outgoing", + "example_sentence_native": "Es una persona muy lanzada, siempre dispuesta a probar cosas nuevas.", + "example_sentence_english": "She is a very daring person, always willing to try new things.", + "pos": "adjective", + "word_frequency": 2494 + }, + { + "word": "nacionalidad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nationality", + "example_sentence_native": "¿Cuál es tu nacionalidad?", + "example_sentence_english": "What is your nationality?", + "pos": "noun", + "word_frequency": 2500 + }, + { + "word": "palma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm (tree;hand);Palma (city)", + "example_sentence_native": "La palma de mi mano me duele.", + "example_sentence_english": "The palm of my hand hurts.", + "pos": "noun", + "word_frequency": 2501 + }, + { + "word": "poema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poem", + "example_sentence_native": "Leí un hermoso poema.", + "example_sentence_english": "I read a beautiful poem.", + "pos": "noun", + "word_frequency": 2503 + }, + { + "word": "promesa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promise", + "example_sentence_native": "Cumplió su promesa.", + "example_sentence_english": "He kept his promise.", + "pos": "noun", + "word_frequency": 2505 + }, + { + "word": "queja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complaint", + "example_sentence_native": "Presentó una queja formal.", + "example_sentence_english": "He filed a formal complaint.", + "pos": "noun", + "word_frequency": 2506 + }, + { + "word": "reproducción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproduction", + "example_sentence_native": "La reproducción de este material está prohibida.", + "example_sentence_english": "The reproduction of this material is prohibited.", + "pos": "noun", + "word_frequency": 2507 + }, + { + "word": "sanidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "health;sanitation;public health", + "example_sentence_native": "El sistema de sanidad pública es muy importante.", + "example_sentence_english": "The public health system is very important.", + "pos": "noun", + "word_frequency": 2508 + }, + { + "word": "sindicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "union;syndicate", + "example_sentence_native": "El sindicato negoció un nuevo contrato.", + "example_sentence_english": "The union negotiated a new contract.", + "pos": "noun", + "word_frequency": 2509 + }, + { + "word": "soberanía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereignty", + "example_sentence_native": "El país defiende su soberanía.", + "example_sentence_english": "The country defends its sovereignty.", + "pos": "noun", + "word_frequency": 2510 + }, + { + "word": "taxi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "taxi", + "example_sentence_native": "Tomemos un taxi para ir al aeropuerto.", + "example_sentence_english": "Let's take a taxi to go to the airport.", + "pos": "noun", + "word_frequency": 2511 + }, + { + "word": "terrorista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrorist", + "example_sentence_native": "El gobierno capturó al terrorista.", + "example_sentence_english": "The government captured the terrorist.", + "pos": "noun", + "word_frequency": 2512 + }, + { + "word": "testimonio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "testimony;evidence", + "example_sentence_native": "Su testimonio fue crucial en el juicio.", + "example_sentence_english": "His testimony was crucial in the trial.", + "pos": "noun", + "word_frequency": 2513 + }, + { + "word": "transparencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transparency", + "example_sentence_native": "La transparencia es fundamental en la administración pública.", + "example_sentence_english": "Transparency is fundamental in public administration.", + "pos": "noun", + "word_frequency": 2515 + }, + { + "word": "uniforme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uniform", + "example_sentence_native": "Los estudiantes deben llevar uniforme.", + "example_sentence_english": "Students must wear a uniform.", + "pos": "noun", + "word_frequency": 2516 + }, + { + "word": "via", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way;road;via", + "example_sentence_native": "Esta es la vía más rápida para llegar.", + "example_sentence_english": "This is the fastest way to get there.", + "pos": "noun", + "word_frequency": 2517 + }, + { + "word": "adolescente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teenager;adolescent", + "example_sentence_native": "Mi hermano es un adolescente.", + "example_sentence_english": "My brother is a teenager.", + "pos": "noun", + "word_frequency": 2518 + }, + { + "word": "aldea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "village", + "example_sentence_native": "Viven en una pequeña aldea en las montañas.", + "example_sentence_english": "They live in a small village in the mountains.", + "pos": "noun", + "word_frequency": 2519 + }, + { + "word": "amante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lover", + "example_sentence_native": "Ella es su amante secreta.", + "example_sentence_english": "She is his secret lover.", + "pos": "noun", + "word_frequency": 2520 + }, + { + "word": "android", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "android", + "example_sentence_native": "El robot parecía un android.", + "example_sentence_english": "The robot looked like an android.", + "pos": "noun", + "word_frequency": 2521 + }, + { + "word": "aprendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "learned", + "example_sentence_native": "Es una lección bien aprendida.", + "example_sentence_english": "It's a well-learned lesson.", + "pos": "adjective", + "word_frequency": 2522 + }, + { + "word": "asistir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to attend;to assist", + "example_sentence_native": "Voy a asistir a la reunión.", + "example_sentence_english": "I am going to attend the meeting.", + "pos": "verb", + "word_frequency": 2523 + }, + { + "word": "autónomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autonomous;self-employed", + "example_sentence_native": "Trabaja como autónomo desde hace años.", + "example_sentence_english": "He has been working as self-employed for years.", + "pos": "adjective", + "word_frequency": 2524 + }, + { + "word": "beber", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to drink", + "example_sentence_native": "Me gusta beber agua.", + "example_sentence_english": "I like to drink water.", + "pos": "verb", + "word_frequency": 2525 + }, + { + "word": "cansado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tired", + "example_sentence_native": "Estoy muy cansado después del trabajo.", + "example_sentence_english": "I am very tired after work.", + "pos": "adjective", + "word_frequency": 2527 + }, + { + "word": "chiste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joke", + "example_sentence_native": "Contó un chiste muy gracioso.", + "example_sentence_english": "He told a very funny joke.", + "pos": "noun", + "word_frequency": 2528 + }, + { + "word": "circulación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circulation;traffic", + "example_sentence_native": "Hay mucha circulación en la ciudad.", + "example_sentence_english": "There is a lot of traffic in the city.", + "pos": "noun", + "word_frequency": 2529 + }, + { + "word": "cometido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "task;mission;offense", + "example_sentence_native": "Su cometido era proteger a la familia.", + "example_sentence_english": "His mission was to protect the family.", + "pos": "noun", + "word_frequency": 2530 + }, + { + "word": "componente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "component", + "example_sentence_native": "Este es un componente esencial del sistema.", + "example_sentence_english": "This is an essential component of the system.", + "pos": "noun", + "word_frequency": 2531 + }, + { + "word": "conducir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drive;to lead", + "example_sentence_native": "Me gusta conducir por la carretera.", + "example_sentence_english": "I like to drive on the highway.", + "pos": "verb", + "word_frequency": 2532 + }, + { + "word": "constar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consist of;to be on record", + "example_sentence_native": "El libro consta de diez capítulos.", + "example_sentence_english": "The book consists of ten chapters.", + "pos": "verb", + "word_frequency": 2533 + }, + { + "word": "desaparecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappear", + "example_sentence_native": "El mago hizo desaparecer la moneda.", + "example_sentence_english": "The magician made the coin disappear.", + "pos": "verb", + "word_frequency": 2534 + }, + { + "word": "descarga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "download;discharge", + "example_sentence_native": "La descarga del archivo tardó mucho.", + "example_sentence_english": "The file download took a long time.", + "pos": "noun", + "word_frequency": 2535 + }, + { + "word": "específicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifically", + "example_sentence_native": "Habló específicamente sobre ese tema.", + "example_sentence_english": "He spoke specifically about that topic.", + "pos": "adverb", + "word_frequency": 2536 + }, + { + "word": "facilitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to facilitate;to provide", + "example_sentence_native": "Queremos facilitar el acceso a la información.", + "example_sentence_english": "We want to facilitate access to information.", + "pos": "verb", + "word_frequency": 2537 + }, + { + "word": "fila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "row;line;queue", + "example_sentence_native": "Hay una larga fila para entrar.", + "example_sentence_english": "There is a long line to enter.", + "pos": "noun", + "word_frequency": 2538 + }, + { + "word": "firmar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sign", + "example_sentence_native": "Necesitas firmar este documento.", + "example_sentence_english": "You need to sign this document.", + "pos": "verb", + "word_frequency": 2539 + }, + { + "word": "fumar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smoke", + "example_sentence_native": "Está prohibido fumar aquí.", + "example_sentence_english": "It is forbidden to smoke here.", + "pos": "verb", + "word_frequency": 2540 + }, + { + "word": "futbol", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soccer;football", + "example_sentence_native": "Me encanta jugar al fútbol.", + "example_sentence_english": "I love to play soccer.", + "pos": "noun", + "word_frequency": 2541 + }, + { + "word": "grito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shout;scream", + "example_sentence_native": "Escuché un grito en la calle.", + "example_sentence_english": "I heard a scream in the street.", + "pos": "noun", + "word_frequency": 2542 + }, + { + "word": "herir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wound;to hurt", + "example_sentence_native": "No quiero herir tus sentimientos.", + "example_sentence_english": "I don't want to hurt your feelings.", + "pos": "verb", + "word_frequency": 2544 + }, + { + "word": "ideología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideology", + "example_sentence_native": "Tienen una ideología política diferente.", + "example_sentence_english": "They have a different political ideology.", + "pos": "noun", + "word_frequency": 2545 + }, + { + "word": "imaginación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imagination", + "example_sentence_native": "Tiene mucha imaginación para sus historias.", + "example_sentence_english": "He has a lot of imagination for his stories.", + "pos": "noun", + "word_frequency": 2547 + }, + { + "word": "inflación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflation", + "example_sentence_native": "La inflación está afectando la economía.", + "example_sentence_english": "Inflation is affecting the economy.", + "pos": "noun", + "word_frequency": 2548 + }, + { + "word": "integrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member;component", + "example_sentence_native": "Es un integrante clave del equipo.", + "example_sentence_english": "He is a key member of the team.", + "pos": "noun", + "word_frequency": 2549 + }, + { + "word": "misterio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mystery", + "example_sentence_native": "La desaparición es un misterio.", + "example_sentence_english": "The disappearance is a mystery.", + "pos": "noun", + "word_frequency": 2551 + }, + { + "word": "nariz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nose", + "example_sentence_native": "Se golpeó la nariz al caer.", + "example_sentence_english": "He hit his nose when he fell.", + "pos": "noun", + "word_frequency": 2552 + }, + { + "word": "occidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "West;Occident", + "example_sentence_native": "La cultura de Occidente es muy diversa.", + "example_sentence_english": "Western culture is very diverse.", + "pos": "noun", + "word_frequency": 2554 + }, + { + "word": "oscuridad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "darkness", + "example_sentence_native": "Tenía miedo a la oscuridad.", + "example_sentence_english": "He was afraid of the darkness.", + "pos": "noun", + "word_frequency": 2556 + }, + { + "word": "paisaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landscape;scenery", + "example_sentence_native": "El paisaje de la montaña es hermoso.", + "example_sentence_english": "The mountain landscape is beautiful.", + "pos": "noun", + "word_frequency": 2557 + }, + { + "word": "pop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pop (music)", + "example_sentence_native": "Le gusta escuchar música pop.", + "example_sentence_english": "He likes to listen to pop music.", + "pos": "noun", + "word_frequency": 2558 + }, + { + "word": "precioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "precious;beautiful;lovely", + "example_sentence_native": "Tienes un vestido precioso.", + "example_sentence_english": "You have a beautiful dress.", + "pos": "adjective", + "word_frequency": 2559 + }, + { + "word": "quince", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifteen", + "example_sentence_native": "Tengo quince años.", + "example_sentence_english": "I am fifteen years old.", + "pos": "noun", + "word_frequency": 2560 + }, + { + "word": "redacción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing;editorial office", + "example_sentence_native": "La redacción del informe tomó mucho tiempo.", + "example_sentence_english": "The writing of the report took a long time.", + "pos": "noun", + "word_frequency": 2561 + }, + { + "word": "renunciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resign;to give up", + "example_sentence_native": "Decidió renunciar a su puesto.", + "example_sentence_english": "He decided to resign from his position.", + "pos": "verb", + "word_frequency": 2562 + }, + { + "word": "repetir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to repeat", + "example_sentence_native": "Por favor, ¿puedes repetir eso?", + "example_sentence_english": "Can you please repeat that?", + "pos": "verb", + "word_frequency": 2563 + }, + { + "word": "sensible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensitive", + "example_sentence_native": "Es una persona muy sensible.", + "example_sentence_english": "She is a very sensitive person.", + "pos": "adjective", + "word_frequency": 2564 + }, + { + "word": "sobrevivir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to survive", + "example_sentence_native": "Lograron sobrevivir al accidente.", + "example_sentence_english": "They managed to survive the accident.", + "pos": "verb", + "word_frequency": 2565 + }, + { + "word": "suiza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Switzerland;Swiss woman", + "example_sentence_native": "Mi amiga es de Suiza.", + "example_sentence_english": "My friend is from Switzerland.", + "pos": "noun", + "word_frequency": 2566 + }, + { + "word": "tristeza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sadness", + "example_sentence_native": "Sintió una profunda tristeza.", + "example_sentence_english": "She felt a deep sadness.", + "pos": "noun", + "word_frequency": 2567 + }, + { + "word": "administrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrative", + "example_sentence_native": "Necesitamos resolver algunos problemas administrativos.", + "example_sentence_english": "We need to solve some administrative problems.", + "pos": "adjective", + "word_frequency": 2568 + }, + { + "word": "ahorro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saving;savings", + "example_sentence_native": "Es importante tener un plan de ahorro.", + "example_sentence_english": "It's important to have a savings plan.", + "pos": "noun", + "word_frequency": 2569 + }, + { + "word": "alquiler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rent", + "example_sentence_native": "El alquiler de este apartamento es muy alto.", + "example_sentence_english": "The rent for this apartment is very high.", + "pos": "noun", + "word_frequency": 2570 + }, + { + "word": "amable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kind;friendly", + "example_sentence_native": "Siempre es muy amable con todos.", + "example_sentence_english": "He is always very kind to everyone.", + "pos": "adjective", + "word_frequency": 2571 + }, + { + "word": "apariencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appearance", + "example_sentence_native": "Su apariencia es muy importante para ella.", + "example_sentence_english": "Her appearance is very important to her.", + "pos": "noun", + "word_frequency": 2572 + }, + { + "word": "banca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banking;bench", + "example_sentence_native": "La banca española está en crisis.", + "example_sentence_english": "Spanish banking is in crisis.", + "pos": "noun", + "word_frequency": 2573 + }, + { + "word": "caos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaos", + "example_sentence_native": "La ciudad estaba en completo caos después de la tormenta.", + "example_sentence_english": "The city was in complete chaos after the storm.", + "pos": "noun", + "word_frequency": 2574 + }, + { + "word": "censo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "census", + "example_sentence_native": "El censo se realiza cada diez años.", + "example_sentence_english": "The census is conducted every ten years.", + "pos": "noun", + "word_frequency": 2575 + }, + { + "word": "cincuenta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifty", + "example_sentence_native": "Tengo cincuenta euros en mi cartera.", + "example_sentence_english": "I have fifty euros in my wallet.", + "pos": "noun", + "word_frequency": 2576 + }, + { + "word": "compuesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compound;composed", + "example_sentence_native": "Es un material compuesto muy resistente.", + "example_sentence_english": "It is a very resistant compound material.", + "pos": "adjective", + "word_frequency": 2577 + }, + { + "word": "crónica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronicle;chronic", + "example_sentence_native": "Leyó la crónica del evento en el periódico.", + "example_sentence_english": "He read the chronicle of the event in the newspaper.", + "pos": "noun", + "word_frequency": 2578 + }, + { + "word": "delegación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegation;branch office", + "example_sentence_native": "La delegación llegó a la conferencia.", + "example_sentence_english": "The delegation arrived at the conference.", + "pos": "noun", + "word_frequency": 2579 + }, + { + "word": "despacho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "office;dispatch", + "example_sentence_native": "Su despacho está en el tercer piso.", + "example_sentence_english": "His office is on the third floor.", + "pos": "noun", + "word_frequency": 2580 + }, + { + "word": "despertar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wake up", + "example_sentence_native": "Me gusta despertar temprano.", + "example_sentence_english": "I like to wake up early.", + "pos": "verb", + "word_frequency": 2581 + }, + { + "word": "docente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaching;lecturer", + "example_sentence_native": "Es un profesional docente con mucha experiencia.", + "example_sentence_english": "He is a teaching professional with a lot of experience.", + "pos": "adjective", + "word_frequency": 2582 + }, + { + "word": "documentación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentation", + "example_sentence_native": "Necesitamos toda la documentación para el trámite.", + "example_sentence_english": "We need all the documentation for the procedure.", + "pos": "noun", + "word_frequency": 2583 + }, + { + "word": "eje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "axis;axle", + "example_sentence_native": "El eje de la rueda estaba roto.", + "example_sentence_english": "The wheel's axle was broken.", + "pos": "noun", + "word_frequency": 2584 + }, + { + "word": "finanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finance", + "example_sentence_native": "Estudió finanzas en la universidad.", + "example_sentence_english": "He studied finance at university.", + "pos": "noun", + "word_frequency": 2585 + }, + { + "word": "fortaleza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strength;fortress", + "example_sentence_native": "Su mayor fortaleza es su determinación.", + "example_sentence_english": "Her greatest strength is her determination.", + "pos": "noun", + "word_frequency": 2586 + }, + { + "word": "ganancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profit;gain", + "example_sentence_native": "La empresa reportó grandes ganancias este trimestre.", + "example_sentence_english": "The company reported large profits this quarter.", + "pos": "noun", + "word_frequency": 2587 + }, + { + "word": "integral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integral;comprehensive", + "example_sentence_native": "Ofrecen un servicio integral a sus clientes.", + "example_sentence_english": "They offer a comprehensive service to their clients.", + "pos": "adjective", + "word_frequency": 2588 + }, + { + "word": "invertir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invest", + "example_sentence_native": "Decidió invertir en bienes raíces.", + "example_sentence_english": "He decided to invest in real estate.", + "pos": "verb", + "word_frequency": 2589 + }, + { + "word": "inútil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "useless", + "example_sentence_native": "Es inútil intentar convencerlo.", + "example_sentence_english": "It's useless to try to convince him.", + "pos": "adjective", + "word_frequency": 2590 + }, + { + "word": "kilo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kilo", + "example_sentence_native": "Necesito un kilo de manzanas.", + "example_sentence_english": "I need a kilo of apples.", + "pos": "noun", + "word_frequency": 2591 + }, + { + "word": "lección", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lesson", + "example_sentence_native": "Aprendí una valiosa lección.", + "example_sentence_english": "I learned a valuable lesson.", + "pos": "noun", + "word_frequency": 2592 + }, + { + "word": "legado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legacy", + "example_sentence_native": "Su legado perdurará por generaciones.", + "example_sentence_english": "His legacy will endure for generations.", + "pos": "noun", + "word_frequency": 2593 + }, + { + "word": "panorama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panorama;outlook", + "example_sentence_native": "El panorama económico es incierto.", + "example_sentence_english": "The economic outlook is uncertain.", + "pos": "noun", + "word_frequency": 2595 + }, + { + "word": "park", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "park", + "example_sentence_native": "Vamos al park a jugar.", + "example_sentence_english": "Let's go to the park to play.", + "pos": "noun", + "word_frequency": 2596 + }, + { + "word": "pastor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shepherd;pastor", + "example_sentence_native": "El pastor cuida a sus ovejas.", + "example_sentence_english": "The shepherd takes care of his sheep.", + "pos": "noun", + "word_frequency": 2597 + }, + { + "word": "pedazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piece;bit", + "example_sentence_native": "Dame un pedazo de pastel.", + "example_sentence_english": "Give me a piece of cake.", + "pos": "noun", + "word_frequency": 2598 + }, + { + "word": "permanecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remain;to stay", + "example_sentence_native": "Decidió permanecer en casa.", + "example_sentence_english": "He decided to stay at home.", + "pos": "verb", + "word_frequency": 2599 + }, + { + "word": "prevención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevention", + "example_sentence_native": "La prevención es clave para evitar enfermedades.", + "example_sentence_english": "Prevention is key to avoiding illnesses.", + "pos": "noun", + "word_frequency": 2600 + }, + { + "word": "profundamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deeply", + "example_sentence_native": "Respiró profundamente antes de hablar.", + "example_sentence_english": "He breathed deeply before speaking.", + "pos": "adverb", + "word_frequency": 2601 + }, + { + "word": "rama", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "branch", + "example_sentence_native": "El pájaro se posó en una rama del árbol.", + "example_sentence_english": "The bird perched on a branch of the tree.", + "pos": "noun", + "word_frequency": 2602 + }, + { + "word": "revolucionario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revolutionary", + "example_sentence_native": "Fue una idea revolucionaria para su tiempo.", + "example_sentence_english": "It was a revolutionary idea for its time.", + "pos": "adjective", + "word_frequency": 2604 + }, + { + "word": "roto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broken", + "example_sentence_native": "El vaso está roto.", + "example_sentence_english": "The glass is broken.", + "pos": "adjective", + "word_frequency": 2605 + }, + { + "word": "signo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign", + "example_sentence_native": "No hay ningún signo de mejora.", + "example_sentence_english": "There is no sign of improvement.", + "pos": "noun", + "word_frequency": 2607 + }, + { + "word": "sufrimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffering", + "example_sentence_native": "El sufrimiento es parte de la vida.", + "example_sentence_english": "Suffering is part of life.", + "pos": "noun", + "word_frequency": 2608 + }, + { + "word": "termino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "term;end", + "example_sentence_native": "El término del contrato es en diciembre.", + "example_sentence_english": "The term of the contract is in December.", + "pos": "noun", + "word_frequency": 2610 + }, + { + "word": "todavia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "still;yet", + "example_sentence_native": "Todavía no ha llegado.", + "example_sentence_english": "He hasn't arrived yet.", + "pos": "adverb", + "word_frequency": 2612 + }, + { + "word": "té", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tea", + "example_sentence_native": "Me gusta beber té por la mañana.", + "example_sentence_english": "I like to drink tea in the morning.", + "pos": "noun", + "word_frequency": 2613 + }, + { + "word": "ultimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "last;ultimate", + "example_sentence_native": "Este es el último capítulo del libro.", + "example_sentence_english": "This is the last chapter of the book.", + "pos": "adjective", + "word_frequency": 2614 + }, + { + "word": "unico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unique;only", + "example_sentence_native": "Es el único que sabe la verdad.", + "example_sentence_english": "He is the only one who knows the truth.", + "pos": "adjective", + "word_frequency": 2615 + }, + { + "word": "vaso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "glass (for drinking)", + "example_sentence_native": "Por favor, dame un vaso de agua.", + "example_sentence_english": "Please, give me a glass of water.", + "pos": "noun", + "word_frequency": 2616 + }, + { + "word": "visitante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visitor", + "example_sentence_native": "Los visitantes llegaron temprano.", + "example_sentence_english": "The visitors arrived early.", + "pos": "noun", + "word_frequency": 2618 + }, + { + "word": "acabado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finished;done", + "example_sentence_native": "El trabajo está acabado.", + "example_sentence_english": "The work is finished.", + "pos": "adjective", + "word_frequency": 2620 + }, + { + "word": "articulo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "article", + "example_sentence_native": "Leí un artículo interesante en el periódico.", + "example_sentence_english": "I read an interesting article in the newspaper.", + "pos": "noun", + "word_frequency": 2621 + }, + { + "word": "bloque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "block", + "example_sentence_native": "Construyeron una pared con bloques de cemento.", + "example_sentence_english": "They built a wall with cement blocks.", + "pos": "noun", + "word_frequency": 2622 + }, + { + "word": "campamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camp;campsite", + "example_sentence_native": "Fuimos de campamento el fin de semana.", + "example_sentence_english": "We went camping on the weekend.", + "pos": "noun", + "word_frequency": 2623 + }, + { + "word": "clínica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clinic", + "example_sentence_native": "La clínica está abierta hasta las cinco.", + "example_sentence_english": "The clinic is open until five.", + "pos": "noun", + "word_frequency": 2624 + }, + { + "word": "condenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condemned;convicted", + "example_sentence_native": "Fue condenado por sus crímenes.", + "example_sentence_english": "He was condemned for his crimes.", + "pos": "adjective", + "word_frequency": 2625 + }, + { + "word": "convenio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;convention", + "example_sentence_native": "Firmaron un convenio de colaboración.", + "example_sentence_english": "They signed a collaboration agreement.", + "pos": "noun", + "word_frequency": 2626 + }, + { + "word": "creado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "created", + "example_sentence_native": "Es un problema creado por la falta de comunicación.", + "example_sentence_english": "It's a problem created by lack of communication.", + "pos": "adjective", + "word_frequency": 2627 + }, + { + "word": "cristal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glass;crystal", + "example_sentence_native": "La ventana es de cristal.", + "example_sentence_english": "The window is made of glass.", + "pos": "noun", + "word_frequency": 2628 + }, + { + "word": "dedicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dedicated", + "example_sentence_native": "Es un estudiante muy dedicado.", + "example_sentence_english": "He is a very dedicated student.", + "pos": "adjective", + "word_frequency": 2629 + }, + { + "word": "disponer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange;to have available", + "example_sentence_native": "Debemos disponer de más tiempo para el proyecto.", + "example_sentence_english": "We must have more time available for the project.", + "pos": "verb", + "word_frequency": 2630 + }, + { + "word": "elaboración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elaboration;preparation;production", + "example_sentence_native": "La elaboración del plan tomó varias semanas.", + "example_sentence_english": "The elaboration of the plan took several weeks.", + "pos": "noun", + "word_frequency": 2631 + }, + { + "word": "estable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable", + "example_sentence_native": "La economía del país es estable.", + "example_sentence_english": "The country's economy is stable.", + "pos": "adjective", + "word_frequency": 2632 + }, + { + "word": "estreno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "premiere;debut", + "example_sentence_native": "El estreno de la película será el viernes.", + "example_sentence_english": "The film's premiere will be on Friday.", + "pos": "noun", + "word_frequency": 2633 + }, + { + "word": "exceso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excess", + "example_sentence_native": "El exceso de azúcar es malo para la salud.", + "example_sentence_english": "Excess sugar is bad for health.", + "pos": "noun", + "word_frequency": 2634 + }, + { + "word": "giro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turn;twist;change", + "example_sentence_native": "Dio un giro inesperado a la conversación.", + "example_sentence_english": "He gave an unexpected turn to the conversation.", + "pos": "noun", + "word_frequency": 2635 + }, + { + "word": "gratuito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free (of charge)", + "example_sentence_native": "La entrada al museo es gratuita.", + "example_sentence_english": "Admission to the museum is free.", + "pos": "adjective", + "word_frequency": 2636 + }, + { + "word": "institucional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institutional", + "example_sentence_native": "Es un problema de carácter institucional.", + "example_sentence_english": "It is an institutional problem.", + "pos": "adjective", + "word_frequency": 2637 + }, + { + "word": "juzgado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court;courthouse", + "example_sentence_native": "El caso se resolverá en el juzgado.", + "example_sentence_english": "The case will be resolved in court.", + "pos": "noun", + "word_frequency": 2638 + }, + { + "word": "liderazgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership", + "example_sentence_native": "Su liderazgo fue clave para el éxito del equipo.", + "example_sentence_english": "His leadership was key to the team's success.", + "pos": "noun", + "word_frequency": 2639 + }, + { + "word": "llenar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fill", + "example_sentence_native": "Necesito llenar el formulario.", + "example_sentence_english": "I need to fill out the form.", + "pos": "verb", + "word_frequency": 2640 + }, + { + "word": "longitud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "length", + "example_sentence_native": "La longitud de la mesa es de dos metros.", + "example_sentence_english": "The length of the table is two meters.", + "pos": "noun", + "word_frequency": 2641 + }, + { + "word": "min", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute (abbreviation)", + "example_sentence_native": "Espera un min, por favor.", + "example_sentence_english": "Wait a minute, please.", + "pos": "noun", + "word_frequency": 2643 + }, + { + "word": "naranja", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "orange", + "example_sentence_native": "Me gusta el jugo de naranja.", + "example_sentence_english": "I like orange juice.", + "pos": "noun", + "word_frequency": 2645 + }, + { + "word": "negociación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiation", + "example_sentence_native": "Las negociaciones fueron difíciles.", + "example_sentence_english": "The negotiations were difficult.", + "pos": "noun", + "word_frequency": 2646 + }, + { + "word": "otoño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "autumn", + "example_sentence_native": "El otoño es mi estación favorita.", + "example_sentence_english": "Autumn is my favorite season.", + "pos": "noun", + "word_frequency": 2647 + }, + { + "word": "pagado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paid", + "example_sentence_native": "La factura ya está pagada.", + "example_sentence_english": "The bill is already paid.", + "pos": "adjective", + "word_frequency": 2648 + }, + { + "word": "placa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plate;license plate;plaque", + "example_sentence_native": "La placa del coche es nueva.", + "example_sentence_english": "The car's license plate is new.", + "pos": "noun", + "word_frequency": 2649 + }, + { + "word": "recepción", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reception", + "example_sentence_native": "Pregunta en la recepción del hotel.", + "example_sentence_english": "Ask at the hotel reception.", + "pos": "noun", + "word_frequency": 2650 + }, + { + "word": "recoger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pick up;to collect", + "example_sentence_native": "Necesito recoger a los niños de la escuela.", + "example_sentence_english": "I need to pick up the children from school.", + "pos": "verb", + "word_frequency": 2651 + }, + { + "word": "refugio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refuge;shelter", + "example_sentence_native": "Buscaron refugio de la tormenta.", + "example_sentence_english": "They sought refuge from the storm.", + "pos": "noun", + "word_frequency": 2652 + }, + { + "word": "represión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repression", + "example_sentence_native": "Hubo una fuerte represión de las protestas.", + "example_sentence_english": "There was strong repression of the protests.", + "pos": "noun", + "word_frequency": 2653 + }, + { + "word": "sacerdote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priest", + "example_sentence_native": "El sacerdote dio la misa.", + "example_sentence_english": "The priest gave the mass.", + "pos": "noun", + "word_frequency": 2655 + }, + { + "word": "seco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dry", + "example_sentence_native": "La ropa está seca.", + "example_sentence_english": "The clothes are dry.", + "pos": "adjective", + "word_frequency": 2657 + }, + { + "word": "secretaria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "secretary", + "example_sentence_native": "La secretaria contestó el teléfono.", + "example_sentence_english": "The secretary answered the phone.", + "pos": "noun", + "word_frequency": 2658 + }, + { + "word": "tele", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "TV (informal)", + "example_sentence_native": "Vamos a ver la tele.", + "example_sentence_english": "Let's watch TV.", + "pos": "noun", + "word_frequency": 2659 + }, + { + "word": "territorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "territorial", + "example_sentence_native": "Disputas territoriales son comunes.", + "example_sentence_english": "Territorial disputes are common.", + "pos": "adjective", + "word_frequency": 2660 + }, + { + "word": "toro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bull", + "example_sentence_native": "El toro es un animal fuerte.", + "example_sentence_english": "The bull is a strong animal.", + "pos": "noun", + "word_frequency": 2661 + }, + { + "word": "tragedia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragedy", + "example_sentence_native": "Fue una gran tragedia para la familia.", + "example_sentence_english": "It was a great tragedy for the family.", + "pos": "noun", + "word_frequency": 2662 + }, + { + "word": "venganza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenge", + "example_sentence_native": "Buscó venganza por lo que le hicieron.", + "example_sentence_english": "He sought revenge for what they did to him.", + "pos": "noun", + "word_frequency": 2663 + }, + { + "word": "vigente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in force;current", + "example_sentence_native": "La ley sigue vigente.", + "example_sentence_english": "The law is still in force.", + "pos": "adjective", + "word_frequency": 2664 + }, + { + "word": "volar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fly", + "example_sentence_native": "Los pájaros pueden volar.", + "example_sentence_english": "Birds can fly.", + "pos": "verb", + "word_frequency": 2665 + }, + { + "word": "ácido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acid;sour", + "example_sentence_native": "El limón tiene un sabor ácido.", + "example_sentence_english": "The lemon has a sour taste.", + "pos": "adjective", + "word_frequency": 2667 + }, + { + "word": "afectado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affected;impacted", + "example_sentence_native": "La zona más afectada fue el sur.", + "example_sentence_english": "The most affected area was the south.", + "pos": "adjective", + "word_frequency": 2670 + }, + { + "word": "apartamento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apartment", + "example_sentence_native": "Vivo en un apartamento pequeño.", + "example_sentence_english": "I live in a small apartment.", + "pos": "noun", + "word_frequency": 2671 + }, + { + "word": "barato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cheap", + "example_sentence_native": "Este coche es muy barato.", + "example_sentence_english": "This car is very cheap.", + "pos": "adjective", + "word_frequency": 2672 + }, + { + "word": "biblia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bible", + "example_sentence_native": "La Biblia es un libro sagrado.", + "example_sentence_english": "The Bible is a sacred book.", + "pos": "noun", + "word_frequency": 2673 + }, + { + "word": "candidatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candidacy", + "example_sentence_native": "Anunció su candidatura para las elecciones.", + "example_sentence_english": "He announced his candidacy for the elections.", + "pos": "noun", + "word_frequency": 2675 + }, + { + "word": "censura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censorship", + "example_sentence_native": "La censura limitó la libertad de expresión.", + "example_sentence_english": "Censorship limited freedom of expression.", + "pos": "noun", + "word_frequency": 2676 + }, + { + "word": "cerrado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "closed", + "example_sentence_native": "La tienda está cerrada hoy.", + "example_sentence_english": "The store is closed today.", + "pos": "adjective", + "word_frequency": 2677 + }, + { + "word": "conquista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conquest", + "example_sentence_native": "La conquista de América fue un evento histórico.", + "example_sentence_english": "The conquest of America was a historical event.", + "pos": "noun", + "word_frequency": 2678 + }, + { + "word": "contestar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to answer", + "example_sentence_native": "Por favor, contesta mi pregunta.", + "example_sentence_english": "Please answer my question.", + "pos": "verb", + "word_frequency": 2679 + }, + { + "word": "cruzar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cross", + "example_sentence_native": "Debes cruzar la calle con cuidado.", + "example_sentence_english": "You must cross the street carefully.", + "pos": "verb", + "word_frequency": 2680 + }, + { + "word": "cuenca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basin", + "example_sentence_native": "La cuenca del río Amazonas es enorme.", + "example_sentence_english": "The Amazon river basin is enormous.", + "pos": "noun", + "word_frequency": 2681 + }, + { + "word": "desaparición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappearance", + "example_sentence_native": "La desaparición de especies es preocupante.", + "example_sentence_english": "The disappearance of species is worrying.", + "pos": "noun", + "word_frequency": 2682 + }, + { + "word": "destacado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outstanding", + "example_sentence_native": "Es un artista muy destacado en su campo.", + "example_sentence_english": "He is a very prominent artist in his field.", + "pos": "adjective", + "word_frequency": 2683 + }, + { + "word": "dudar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to doubt", + "example_sentence_native": "No dudes en preguntar si tienes alguna duda.", + "example_sentence_english": "Don't hesitate to ask if you have any doubts.", + "pos": "verb", + "word_frequency": 2684 + }, + { + "word": "emisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emission", + "example_sentence_native": "La emisión de gases de efecto invernadero es un problema global.", + "example_sentence_english": "The emission of greenhouse gases is a global problem.", + "pos": "noun", + "word_frequency": 2685 + }, + { + "word": "extremadamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extremely", + "example_sentence_native": "El examen fue extremadamente difícil.", + "example_sentence_english": "The exam was extremely difficult.", + "pos": "adverb", + "word_frequency": 2686 + }, + { + "word": "felicidades", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "congratulations", + "example_sentence_native": "¡Felicidades por tu nuevo trabajo!", + "example_sentence_english": "Congratulations on your new job!", + "pos": "noun", + "word_frequency": 2687 + }, + { + "word": "finalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purpose", + "example_sentence_native": "La finalidad de este proyecto es ayudar a la comunidad.", + "example_sentence_english": "The purpose of this project is to help the community.", + "pos": "noun", + "word_frequency": 2688 + }, + { + "word": "fruto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fruit", + "example_sentence_native": "El éxito es el fruto de mucho trabajo.", + "example_sentence_english": "Success is the fruit of much hard work.", + "pos": "noun", + "word_frequency": 2689 + }, + { + "word": "guitarra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "guitar", + "example_sentence_native": "Me gusta tocar la guitarra.", + "example_sentence_english": "I like to play the guitar.", + "pos": "noun", + "word_frequency": 2691 + }, + { + "word": "ignorancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorance", + "example_sentence_native": "La ignorancia puede llevar a errores.", + "example_sentence_english": "Ignorance can lead to mistakes.", + "pos": "noun", + "word_frequency": 2692 + }, + { + "word": "incidente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incident", + "example_sentence_native": "Hubo un pequeño incidente en la carretera.", + "example_sentence_english": "There was a small incident on the road.", + "pos": "noun", + "word_frequency": 2693 + }, + { + "word": "independientemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "independently", + "example_sentence_native": "Independientemente del resultado, estoy orgulloso de mi esfuerzo.", + "example_sentence_english": "Regardless of the outcome, I am proud of my effort.", + "pos": "adverb", + "word_frequency": 2694 + }, + { + "word": "informado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informed", + "example_sentence_native": "Es importante estar bien informado sobre las noticias.", + "example_sentence_english": "It's important to be well informed about the news.", + "pos": "adjective", + "word_frequency": 2695 + }, + { + "word": "inscripción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registration", + "example_sentence_native": "La fecha límite para la inscripción es el viernes.", + "example_sentence_english": "The deadline for registration is Friday.", + "pos": "noun", + "word_frequency": 2696 + }, + { + "word": "inspiración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspiration", + "example_sentence_native": "Su trabajo es una fuente de inspiración para muchos.", + "example_sentence_english": "His work is a source of inspiration for many.", + "pos": "noun", + "word_frequency": 2697 + }, + { + "word": "invitación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invitation", + "example_sentence_native": "Recibí una invitación a la fiesta.", + "example_sentence_english": "I received an invitation to the party.", + "pos": "noun", + "word_frequency": 2698 + }, + { + "word": "linea", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "example_sentence_native": "Por favor, dibuja una línea recta.", + "example_sentence_english": "Please draw a straight line.", + "pos": "noun", + "word_frequency": 2699 + }, + { + "word": "mención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mention", + "example_sentence_native": "Hizo una breve mención de su viaje.", + "example_sentence_english": "He made a brief mention of his trip.", + "pos": "noun", + "word_frequency": 2701 + }, + { + "word": "milagro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miracle", + "example_sentence_native": "Fue un milagro que nadie saliera herido.", + "example_sentence_english": "It was a miracle that no one was hurt.", + "pos": "noun", + "word_frequency": 2702 + }, + { + "word": "nena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby girl", + "example_sentence_native": "La nena está durmiendo.", + "example_sentence_english": "The baby girl is sleeping.", + "pos": "noun", + "word_frequency": 2703 + }, + { + "word": "notable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notable", + "example_sentence_native": "Su progreso ha sido notable.", + "example_sentence_english": "His progress has been notable.", + "pos": "adjective", + "word_frequency": 2704 + }, + { + "word": "océano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ocean", + "example_sentence_native": "El océano Atlántico es muy grande.", + "example_sentence_english": "The Atlantic ocean is very large.", + "pos": "noun", + "word_frequency": 2705 + }, + { + "word": "pasta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pasta", + "example_sentence_native": "Me encanta la pasta con tomate.", + "example_sentence_english": "I love pasta with tomato.", + "pos": "noun", + "word_frequency": 2706 + }, + { + "word": "reducido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduced", + "example_sentence_native": "El grupo de estudio es muy reducido.", + "example_sentence_english": "The study group is very small.", + "pos": "adjective", + "word_frequency": 2707 + }, + { + "word": "regulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation", + "example_sentence_native": "Las nuevas regulaciones son estrictas.", + "example_sentence_english": "The new regulations are strict.", + "pos": "noun", + "word_frequency": 2708 + }, + { + "word": "romero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosemary", + "example_sentence_native": "El romero es una hierba aromática.", + "example_sentence_english": "Rosemary is an aromatic herb.", + "pos": "noun", + "word_frequency": 2709 + }, + { + "word": "suspensión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspension", + "example_sentence_native": "La suspensión del servicio fue temporal.", + "example_sentence_english": "The suspension of service was temporary.", + "pos": "noun", + "word_frequency": 2711 + }, + { + "word": "terrorismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrorism", + "example_sentence_native": "El terrorismo es una amenaza global.", + "example_sentence_english": "Terrorism is a global threat.", + "pos": "noun", + "word_frequency": 2712 + }, + { + "word": "turista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tourist", + "example_sentence_native": "Muchos turistas visitan esta ciudad.", + "example_sentence_english": "Many tourists visit this city.", + "pos": "noun", + "word_frequency": 2713 + }, + { + "word": "vital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vital", + "example_sentence_native": "El agua es vital para la vida.", + "example_sentence_english": "Water is vital for life.", + "pos": "adjective", + "word_frequency": 2714 + }, + { + "word": "adquirir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquire", + "example_sentence_native": "Deseo adquirir nuevas habilidades.", + "example_sentence_english": "I wish to acquire new skills.", + "pos": "verb", + "word_frequency": 2719 + }, + { + "word": "alegre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "happy;cheerful", + "example_sentence_native": "Ella siempre está alegre.", + "example_sentence_english": "She is always happy.", + "pos": "adjective", + "word_frequency": 2720 + }, + { + "word": "altamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highly", + "example_sentence_native": "Es un proyecto altamente complejo.", + "example_sentence_english": "It is a highly complex project.", + "pos": "adverb", + "word_frequency": 2721 + }, + { + "word": "ave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bird", + "example_sentence_native": "El ave canta en el árbol.", + "example_sentence_english": "The bird sings in the tree.", + "pos": "noun", + "word_frequency": 2723 + }, + { + "word": "bordo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "board (as in on board)", + "example_sentence_native": "Todos los pasajeros están a bordo.", + "example_sentence_english": "All passengers are on board.", + "pos": "noun", + "word_frequency": 2724 + }, + { + "word": "calendario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calendar", + "example_sentence_native": "Necesito un nuevo calendario para el próximo año.", + "example_sentence_english": "I need a new calendar for next year.", + "pos": "noun", + "word_frequency": 2725 + }, + { + "word": "cancha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "court;field (sports)", + "example_sentence_native": "Jugamos baloncesto en la cancha.", + "example_sentence_english": "We play basketball on the court.", + "pos": "noun", + "word_frequency": 2726 + }, + { + "word": "catedral", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cathedral", + "example_sentence_native": "La catedral es muy antigua.", + "example_sentence_english": "The cathedral is very old.", + "pos": "noun", + "word_frequency": 2727 + }, + { + "word": "causar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause", + "example_sentence_native": "El ruido puede causar molestias.", + "example_sentence_english": "The noise can cause discomfort.", + "pos": "verb", + "word_frequency": 2728 + }, + { + "word": "circuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circuit", + "example_sentence_native": "El coche dio una vuelta completa al circuito.", + "example_sentence_english": "The car completed a full lap of the circuit.", + "pos": "noun", + "word_frequency": 2729 + }, + { + "word": "circular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circular", + "example_sentence_native": "La mesa es de forma circular.", + "example_sentence_english": "The table is circular in shape.", + "pos": "adjective", + "word_frequency": 2730 + }, + { + "word": "cobre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copper", + "example_sentence_native": "El cable está hecho de cobre.", + "example_sentence_english": "The cable is made of copper.", + "pos": "noun", + "word_frequency": 2731 + }, + { + "word": "comprobar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check;to verify", + "example_sentence_native": "Debes comprobar la información antes de enviarla.", + "example_sentence_english": "You must check the information before sending it.", + "pos": "verb", + "word_frequency": 2732 + }, + { + "word": "construido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "built", + "example_sentence_native": "El edificio fue construido en 1900.", + "example_sentence_english": "The building was built in 1900.", + "pos": "adjective", + "word_frequency": 2733 + }, + { + "word": "correa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strap;leash;belt", + "example_sentence_native": "El perro lleva una correa.", + "example_sentence_english": "The dog wears a leash.", + "pos": "noun", + "word_frequency": 2734 + }, + { + "word": "cruel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruel", + "example_sentence_native": "Fue un acto muy cruel.", + "example_sentence_english": "It was a very cruel act.", + "pos": "adjective", + "word_frequency": 2735 + }, + { + "word": "difundir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spread;to disseminate", + "example_sentence_native": "Quieren difundir la noticia rápidamente.", + "example_sentence_english": "They want to spread the news quickly.", + "pos": "verb", + "word_frequency": 2736 + }, + { + "word": "dinámica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamic;dynamics", + "example_sentence_native": "La dinámica del grupo es muy buena.", + "example_sentence_english": "The group dynamic is very good.", + "pos": "noun", + "word_frequency": 2737 + }, + { + "word": "disciplina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discipline", + "example_sentence_native": "La disciplina es clave para el éxito.", + "example_sentence_english": "Discipline is key to success.", + "pos": "noun", + "word_frequency": 2738 + }, + { + "word": "discriminación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrimination", + "example_sentence_native": "La discriminación es inaceptable.", + "example_sentence_english": "Discrimination is unacceptable.", + "pos": "noun", + "word_frequency": 2739 + }, + { + "word": "disculpa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apology;excuse", + "example_sentence_native": "Te pido una disculpa por mi error.", + "example_sentence_english": "I ask for your apology for my mistake.", + "pos": "noun", + "word_frequency": 2740 + }, + { + "word": "dosis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dose", + "example_sentence_native": "Toma una dosis de este medicamento cada ocho horas.", + "example_sentence_english": "Take a dose of this medicine every eight hours.", + "pos": "noun", + "word_frequency": 2741 + }, + { + "word": "enamorado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in love", + "example_sentence_native": "Él está enamorado de ella.", + "example_sentence_english": "He is in love with her.", + "pos": "adjective", + "word_frequency": 2742 + }, + { + "word": "enfrentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to face;to confront", + "example_sentence_native": "Debemos enfrentar nuestros miedos.", + "example_sentence_english": "We must face our fears.", + "pos": "verb", + "word_frequency": 2743 + }, + { + "word": "envío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shipment;delivery", + "example_sentence_native": "El envío del paquete tardará tres días.", + "example_sentence_english": "The shipment of the package will take three days.", + "pos": "noun", + "word_frequency": 2744 + }, + { + "word": "escándalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandal", + "example_sentence_native": "El escándalo afectó su reputación.", + "example_sentence_english": "The scandal affected his reputation.", + "pos": "noun", + "word_frequency": 2745 + }, + { + "word": "esencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essence", + "example_sentence_native": "La esencia del problema es la falta de comunicación.", + "example_sentence_english": "The essence of the problem is the lack of communication.", + "pos": "noun", + "word_frequency": 2746 + }, + { + "word": "expectativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expectation", + "example_sentence_native": "Mis expectativas son altas.", + "example_sentence_english": "My expectations are high.", + "pos": "noun", + "word_frequency": 2747 + }, + { + "word": "facilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ease;facility", + "example_sentence_native": "Aprende idiomas con facilidad.", + "example_sentence_english": "He learns languages with ease.", + "pos": "noun", + "word_frequency": 2748 + }, + { + "word": "felicitación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congratulation", + "example_sentence_native": "Recibió muchas felicitaciones por su cumpleaños.", + "example_sentence_english": "He received many congratulations for his birthday.", + "pos": "noun", + "word_frequency": 2749 + }, + { + "word": "gesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gesture", + "example_sentence_native": "Hizo un gesto de aprobación.", + "example_sentence_english": "He made a gesture of approval.", + "pos": "noun", + "word_frequency": 2751 + }, + { + "word": "grabar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to record;to engrave", + "example_sentence_native": "Vamos a grabar esta canción.", + "example_sentence_english": "We are going to record this song.", + "pos": "verb", + "word_frequency": 2752 + }, + { + "word": "humilde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humble", + "example_sentence_native": "Es una persona muy humilde.", + "example_sentence_english": "He is a very humble person.", + "pos": "adjective", + "word_frequency": 2753 + }, + { + "word": "impulso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impulse;momentum", + "example_sentence_native": "Actuó por impulso.", + "example_sentence_english": "He acted on impulse.", + "pos": "noun", + "word_frequency": 2754 + }, + { + "word": "instancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instance;request;court", + "example_sentence_native": "En primera instancia, el plan parece bueno.", + "example_sentence_english": "In the first instance, the plan seems good.", + "pos": "noun", + "word_frequency": 2755 + }, + { + "word": "izquierdo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "left (direction)", + "example_sentence_native": "Gira a la izquierda en la próxima esquina.", + "example_sentence_english": "Turn left at the next corner.", + "pos": "adjective", + "word_frequency": 2756 + }, + { + "word": "lentamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slowly", + "example_sentence_native": "Camina lentamente por el parque.", + "example_sentence_english": "He walks slowly through the park.", + "pos": "adverb", + "word_frequency": 2759 + }, + { + "word": "limitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limited", + "example_sentence_native": "Tenemos un tiempo limitado para completar la tarea.", + "example_sentence_english": "We have limited time to complete the task.", + "pos": "adjective", + "word_frequency": 2760 + }, + { + "word": "llave", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "key", + "example_sentence_native": "¿Dónde está la llave del coche?", + "example_sentence_english": "Where is the car key?", + "pos": "noun", + "word_frequency": 2761 + }, + { + "word": "multa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine (penalty)", + "example_sentence_native": "Recibió una multa por exceso de velocidad.", + "example_sentence_english": "He received a fine for speeding.", + "pos": "noun", + "word_frequency": 2762 + }, + { + "word": "negar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deny", + "example_sentence_native": "Él no pudo negar la verdad.", + "example_sentence_english": "He could not deny the truth.", + "pos": "verb", + "word_frequency": 2763 + }, + { + "word": "noble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noble", + "example_sentence_native": "Actuó con un corazón noble.", + "example_sentence_english": "He acted with a noble heart.", + "pos": "adjective", + "word_frequency": 2764 + }, + { + "word": "nombrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appointed;named", + "example_sentence_native": "Fue nombrado director de la empresa.", + "example_sentence_english": "He was appointed director of the company.", + "pos": "adjective", + "word_frequency": 2765 + }, + { + "word": "obtenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtained;acquired", + "example_sentence_native": "Los resultados obtenidos fueron excelentes.", + "example_sentence_english": "The obtained results were excellent.", + "pos": "adjective", + "word_frequency": 2766 + }, + { + "word": "pez", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fish", + "example_sentence_native": "Vimos un pez grande en el acuario.", + "example_sentence_english": "We saw a big fish in the aquarium.", + "pos": "noun", + "word_frequency": 2767 + }, + { + "word": "pelear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fight", + "example_sentence_native": "No me gusta pelear con nadie.", + "example_sentence_english": "I don't like to fight with anyone.", + "pos": "verb", + "word_frequency": 2768 + }, + { + "word": "percepción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perception", + "example_sentence_native": "Su percepción de la situación era muy clara.", + "example_sentence_english": "His perception of the situation was very clear.", + "pos": "noun", + "word_frequency": 2769 + }, + { + "word": "plantear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to propose;to raise (a question;issue)", + "example_sentence_native": "Necesitamos plantear nuevas ideas.", + "example_sentence_english": "We need to propose new ideas.", + "pos": "verb", + "word_frequency": 2770 + }, + { + "word": "policial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police (adj.)", + "example_sentence_native": "La investigación policial está en curso.", + "example_sentence_english": "The police investigation is ongoing.", + "pos": "adjective", + "word_frequency": 2771 + }, + { + "word": "prisionero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prisoner", + "example_sentence_native": "El prisionero intentó escapar.", + "example_sentence_english": "The prisoner tried to escape.", + "pos": "noun", + "word_frequency": 2772 + }, + { + "word": "privacidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privacy", + "example_sentence_native": "Valoro mucho mi privacidad.", + "example_sentence_english": "I value my privacy very much.", + "pos": "noun", + "word_frequency": 2773 + }, + { + "word": "rabia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rage;anger", + "example_sentence_native": "Sintió una gran rabia por la injusticia.", + "example_sentence_english": "He felt great rage at the injustice.", + "pos": "noun", + "word_frequency": 2774 + }, + { + "word": "rayo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lightning bolt;ray", + "example_sentence_native": "Un rayo iluminó el cielo nocturno.", + "example_sentence_english": "A lightning bolt lit up the night sky.", + "pos": "noun", + "word_frequency": 2775 + }, + { + "word": "realizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplished;carried out", + "example_sentence_native": "El proyecto fue realizado con éxito.", + "example_sentence_english": "The project was successfully carried out.", + "pos": "adjective", + "word_frequency": 2776 + }, + { + "word": "semilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seed", + "example_sentence_native": "Plantamos una semilla en el jardín.", + "example_sentence_english": "We planted a seed in the garden.", + "pos": "noun", + "word_frequency": 2779 + }, + { + "word": "soporte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support;stand", + "example_sentence_native": "Necesitamos un soporte para la cámara.", + "example_sentence_english": "We need a stand for the camera.", + "pos": "noun", + "word_frequency": 2780 + }, + { + "word": "sostener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold;to sustain", + "example_sentence_native": "Ella pudo sostener el peso fácilmente.", + "example_sentence_english": "She could hold the weight easily.", + "pos": "verb", + "word_frequency": 2781 + }, + { + "word": "tour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tour", + "example_sentence_native": "Hicimos un tour por la ciudad.", + "example_sentence_english": "We took a tour of the city.", + "pos": "noun", + "word_frequency": 2783 + }, + { + "word": "utilizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "used", + "example_sentence_native": "El coche utilizado era muy viejo.", + "example_sentence_english": "The used car was very old.", + "pos": "adjective", + "word_frequency": 2784 + }, + { + "word": "aliado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allied", + "example_sentence_native": "Son países aliados en la guerra.", + "example_sentence_english": "They are allied countries in the war.", + "pos": "adjective", + "word_frequency": 2785 + }, + { + "word": "apuesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bet;wager", + "example_sentence_native": "Hizo una apuesta arriesgada.", + "example_sentence_english": "He made a risky bet.", + "pos": "noun", + "word_frequency": 2788 + }, + { + "word": "avanzar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advance;to move forward", + "example_sentence_native": "Necesitamos avanzar en el proyecto.", + "example_sentence_english": "We need to advance on the project.", + "pos": "verb", + "word_frequency": 2789 + }, + { + "word": "añadir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add", + "example_sentence_native": "Por favor, añade más sal a la sopa.", + "example_sentence_english": "Please add more salt to the soup.", + "pos": "verb", + "word_frequency": 2790 + }, + { + "word": "captura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capture;seizure", + "example_sentence_native": "La captura del fugitivo fue exitosa.", + "example_sentence_english": "The capture of the fugitive was successful.", + "pos": "noun", + "word_frequency": 2793 + }, + { + "word": "carnaval", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carnival", + "example_sentence_native": "El carnaval de Río es famoso.", + "example_sentence_english": "The Rio carnival is famous.", + "pos": "noun", + "word_frequency": 2794 + }, + { + "word": "cd", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "CD (compact disc)", + "example_sentence_native": "Escuchamos música en un CD.", + "example_sentence_english": "We listened to music on a CD.", + "pos": "noun", + "word_frequency": 2795 + }, + { + "word": "comprensión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comprehension;understanding", + "example_sentence_native": "Su comprensión del tema es excelente.", + "example_sentence_english": "His understanding of the topic is excellent.", + "pos": "noun", + "word_frequency": 2796 + }, + { + "word": "convención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convention", + "example_sentence_native": "Asistimos a una convención internacional.", + "example_sentence_english": "We attended an international convention.", + "pos": "noun", + "word_frequency": 2797 + }, + { + "word": "convocatoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "call;summons;convocation", + "example_sentence_native": "Se publicó la convocatoria para las becas.", + "example_sentence_english": "The call for scholarships was published.", + "pos": "noun", + "word_frequency": 2798 + }, + { + "word": "creador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creator", + "example_sentence_native": "Él es el creador de esta obra de arte.", + "example_sentence_english": "He is the creator of this work of art.", + "pos": "noun", + "word_frequency": 2799 + }, + { + "word": "descubrimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discovery", + "example_sentence_native": "El descubrimiento de América cambió la historia.", + "example_sentence_english": "The discovery of America changed history.", + "pos": "noun", + "word_frequency": 2800 + }, + { + "word": "diseñado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designed", + "example_sentence_native": "El coche fue diseñado para ser muy eficiente.", + "example_sentence_english": "The car was designed to be very efficient.", + "pos": "adjective", + "word_frequency": 2801 + }, + { + "word": "eco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "echo", + "example_sentence_native": "Escuchamos el eco de nuestras voces en la cueva.", + "example_sentence_english": "We heard the echo of our voices in the cave.", + "pos": "noun", + "word_frequency": 2802 + }, + { + "word": "eliminación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elimination", + "example_sentence_native": "La eliminación del equipo fue una sorpresa.", + "example_sentence_english": "The team's elimination was a surprise.", + "pos": "noun", + "word_frequency": 2803 + }, + { + "word": "estima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esteem", + "example_sentence_native": "Tiene una alta estima por su trabajo.", + "example_sentence_english": "He has high esteem for his work.", + "pos": "noun", + "word_frequency": 2804 + }, + { + "word": "excelencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellence", + "example_sentence_native": "Buscamos la excelencia en todo lo que hacemos.", + "example_sentence_english": "We seek excellence in everything we do.", + "pos": "noun", + "word_frequency": 2805 + }, + { + "word": "fabricación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufacturing", + "example_sentence_native": "La fabricación de coches es una industria importante.", + "example_sentence_english": "Car manufacturing is an important industry.", + "pos": "noun", + "word_frequency": 2806 + }, + { + "word": "financiación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funding", + "example_sentence_native": "Necesitamos más financiación para el proyecto.", + "example_sentence_english": "We need more funding for the project.", + "pos": "noun", + "word_frequency": 2807 + }, + { + "word": "gerente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manager", + "example_sentence_native": "El gerente de la tienda nos ayudó.", + "example_sentence_english": "The store manager helped us.", + "pos": "noun", + "word_frequency": 2809 + }, + { + "word": "impedir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prevent", + "example_sentence_native": "La lluvia impidió que saliéramos.", + "example_sentence_english": "The rain prevented us from going out.", + "pos": "verb", + "word_frequency": 2810 + }, + { + "word": "importe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amount", + "example_sentence_native": "El importe total es de cien euros.", + "example_sentence_english": "The total amount is one hundred euros.", + "pos": "noun", + "word_frequency": 2811 + }, + { + "word": "info", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "info", + "example_sentence_native": "¿Tienes alguna info sobre el evento?", + "example_sentence_english": "Do you have any info about the event?", + "pos": "noun", + "word_frequency": 2812 + }, + { + "word": "intensidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensity", + "example_sentence_native": "La intensidad del viento aumentó.", + "example_sentence_english": "The intensity of the wind increased.", + "pos": "noun", + "word_frequency": 2813 + }, + { + "word": "juzgar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to judge", + "example_sentence_native": "No debes juzgar un libro por su portada.", + "example_sentence_english": "You shouldn't judge a book by its cover.", + "pos": "verb", + "word_frequency": 2814 + }, + { + "word": "legislativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legislative", + "example_sentence_native": "El poder legislativo es importante en una democracia.", + "example_sentence_english": "The legislative power is important in a democracy.", + "pos": "adjective", + "word_frequency": 2815 + }, + { + "word": "maldito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damned", + "example_sentence_native": "¡Este maldito problema no se resuelve!", + "example_sentence_english": "This damn problem won't be solved!", + "pos": "adjective", + "word_frequency": 2816 + }, + { + "word": "mancha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stain", + "example_sentence_native": "Hay una mancha de café en mi camisa.", + "example_sentence_english": "There's a coffee stain on my shirt.", + "pos": "noun", + "word_frequency": 2817 + }, + { + "word": "obligar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to oblige", + "example_sentence_native": "La ley nos obliga a pagar impuestos.", + "example_sentence_english": "The law obliges us to pay taxes.", + "pos": "verb", + "word_frequency": 2819 + }, + { + "word": "pecado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sin", + "example_sentence_native": "Consideró que mentir era un pecado.", + "example_sentence_english": "He considered lying to be a sin.", + "pos": "noun", + "word_frequency": 2820 + }, + { + "word": "pensión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pension", + "example_sentence_native": "Recibe una pensión después de jubilarse.", + "example_sentence_english": "He receives a pension after retiring.", + "pos": "noun", + "word_frequency": 2821 + }, + { + "word": "planificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planning", + "example_sentence_native": "La planificación es clave para el éxito.", + "example_sentence_english": "Planning is key to success.", + "pos": "noun", + "word_frequency": 2822 + }, + { + "word": "polémica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversy", + "example_sentence_native": "La decisión causó mucha polémica.", + "example_sentence_english": "The decision caused a lot of controversy.", + "pos": "noun", + "word_frequency": 2823 + }, + { + "word": "prevenir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prevent", + "example_sentence_native": "Es mejor prevenir que curar.", + "example_sentence_english": "It's better to prevent than to cure.", + "pos": "verb", + "word_frequency": 2824 + }, + { + "word": "psicología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychology", + "example_sentence_native": "Estudió psicología en la universidad.", + "example_sentence_english": "She studied psychology at university.", + "pos": "noun", + "word_frequency": 2825 + }, + { + "word": "reflejar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reflect", + "example_sentence_native": "El espejo refleja su imagen.", + "example_sentence_english": "The mirror reflects his image.", + "pos": "verb", + "word_frequency": 2826 + }, + { + "word": "récord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record", + "example_sentence_native": "Rompió el récord mundial de velocidad.", + "example_sentence_english": "He broke the world speed record.", + "pos": "noun", + "word_frequency": 2827 + }, + { + "word": "selva", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jungle", + "example_sentence_native": "La selva amazónica es muy grande.", + "example_sentence_english": "The Amazon rainforest is very large.", + "pos": "noun", + "word_frequency": 2828 + }, + { + "word": "socialismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "socialism", + "example_sentence_native": "El socialismo es una ideología política.", + "example_sentence_english": "Socialism is a political ideology.", + "pos": "noun", + "word_frequency": 2830 + }, + { + "word": "vistazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glance", + "example_sentence_native": "Le eché un vistazo rápido al informe.", + "example_sentence_english": "I took a quick glance at the report.", + "pos": "noun", + "word_frequency": 2832 + }, + { + "word": "visual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visual", + "example_sentence_native": "Tiene una memoria visual excelente.", + "example_sentence_english": "He has an excellent visual memory.", + "pos": "adjective", + "word_frequency": 2833 + }, + { + "word": "vol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vol.", + "example_sentence_native": "Consulta el vol. 3 de la enciclopedia.", + "example_sentence_english": "Consult vol. 3 of the encyclopedia.", + "pos": "noun", + "word_frequency": 2834 + }, + { + "word": "admitir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admit", + "example_sentence_native": "Debes admitir tus errores.", + "example_sentence_english": "You must admit your mistakes.", + "pos": "verb", + "word_frequency": 2837 + }, + { + "word": "agregar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add", + "example_sentence_native": "Puedes agregar más azúcar si quieres.", + "example_sentence_english": "You can add more sugar if you want.", + "pos": "verb", + "word_frequency": 2838 + }, + { + "word": "ansiedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiety", + "example_sentence_native": "Siente mucha ansiedad antes de los exámenes.", + "example_sentence_english": "He feels a lot of anxiety before exams.", + "pos": "noun", + "word_frequency": 2839 + }, + { + "word": "camión", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truck", + "example_sentence_native": "El camión transporta mercancías.", + "example_sentence_english": "The truck transports goods.", + "pos": "noun", + "word_frequency": 2841 + }, + { + "word": "certificado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certificate", + "example_sentence_native": "Necesito un certificado de nacimiento.", + "example_sentence_english": "I need a birth certificate.", + "pos": "noun", + "word_frequency": 2842 + }, + { + "word": "comentar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comment", + "example_sentence_native": "¿Quieres comentar algo sobre la película?", + "example_sentence_english": "Do you want to comment something about the movie?", + "pos": "verb", + "word_frequency": 2843 + }, + { + "word": "considerado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considered;thoughtful", + "example_sentence_native": "Es una persona muy considerada con los demás.", + "example_sentence_english": "He is a very thoughtful person with others.", + "pos": "adjective", + "word_frequency": 2844 + }, + { + "word": "consumidor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumer", + "example_sentence_native": "El consumidor tiene derechos.", + "example_sentence_english": "The consumer has rights.", + "pos": "noun", + "word_frequency": 2845 + }, + { + "word": "creencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belief", + "example_sentence_native": "Su creencia en la justicia es fuerte.", + "example_sentence_english": "His belief in justice is strong.", + "pos": "noun", + "word_frequency": 2846 + }, + { + "word": "critica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criticism", + "example_sentence_native": "Recibió mucha crítica por su decisión.", + "example_sentence_english": "He received a lot of criticism for his decision.", + "pos": "noun", + "word_frequency": 2847 + }, + { + "word": "criticar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to criticize", + "example_sentence_native": "No me gusta criticar a los demás.", + "example_sentence_english": "I don't like to criticize others.", + "pos": "verb", + "word_frequency": 2848 + }, + { + "word": "cuarenta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forty", + "example_sentence_native": "Tengo cuarenta años.", + "example_sentence_english": "I am forty years old.", + "pos": "noun", + "word_frequency": 2849 + }, + { + "word": "cubano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Cuban", + "example_sentence_native": "Él es un músico cubano.", + "example_sentence_english": "He is a Cuban musician.", + "pos": "adjective", + "word_frequency": 2850 + }, + { + "word": "cubierto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered", + "example_sentence_native": "La mesa está cubierta de polvo.", + "example_sentence_english": "The table is covered in dust.", + "pos": "adjective", + "word_frequency": 2851 + }, + { + "word": "delincuente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquent;offender", + "example_sentence_native": "La policía arrestó al delincuente.", + "example_sentence_english": "The police arrested the offender.", + "pos": "noun", + "word_frequency": 2852 + }, + { + "word": "dependencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependence", + "example_sentence_native": "Tiene una fuerte dependencia del café.", + "example_sentence_english": "He has a strong dependence on coffee.", + "pos": "noun", + "word_frequency": 2853 + }, + { + "word": "depósito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deposit;warehouse", + "example_sentence_native": "Hice un depósito en el banco.", + "example_sentence_english": "I made a deposit at the bank.", + "pos": "noun", + "word_frequency": 2854 + }, + { + "word": "desafío", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenge", + "example_sentence_native": "Este proyecto es un gran desafío.", + "example_sentence_english": "This project is a big challenge.", + "pos": "noun", + "word_frequency": 2855 + }, + { + "word": "destinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destined;intended", + "example_sentence_native": "Estaba destinado a ser un gran líder.", + "example_sentence_english": "He was destined to be a great leader.", + "pos": "adjective", + "word_frequency": 2856 + }, + { + "word": "embarazado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pregnant", + "example_sentence_native": "Mi hermana está embarazada.", + "example_sentence_english": "My sister is pregnant.", + "pos": "adjective", + "word_frequency": 2857 + }, + { + "word": "gravedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravity;seriousness", + "example_sentence_native": "La gravedad de la situación es preocupante.", + "example_sentence_english": "The seriousness of the situation is worrying.", + "pos": "noun", + "word_frequency": 2858 + }, + { + "word": "herencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inheritance;heritage", + "example_sentence_native": "Recibió una gran herencia.", + "example_sentence_english": "He received a large inheritance.", + "pos": "noun", + "word_frequency": 2860 + }, + { + "word": "innovación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovation", + "example_sentence_native": "La empresa busca la innovación constante.", + "example_sentence_english": "The company seeks constant innovation.", + "pos": "noun", + "word_frequency": 2861 + }, + { + "word": "invasión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasion", + "example_sentence_native": "La invasión fue un evento histórico.", + "example_sentence_english": "The invasion was a historical event.", + "pos": "noun", + "word_frequency": 2862 + }, + { + "word": "magnitud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnitude", + "example_sentence_native": "La magnitud del terremoto fue enorme.", + "example_sentence_english": "The magnitude of the earthquake was enormous.", + "pos": "noun", + "word_frequency": 2865 + }, + { + "word": "medicamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine;medication", + "example_sentence_native": "Necesito un medicamento para el dolor.", + "example_sentence_english": "I need a medicine for the pain.", + "pos": "noun", + "word_frequency": 2866 + }, + { + "word": "monumento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monument", + "example_sentence_native": "Visitamos un monumento antiguo.", + "example_sentence_english": "We visited an ancient monument.", + "pos": "noun", + "word_frequency": 2867 + }, + { + "word": "observación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observation", + "example_sentence_native": "Hizo una observación interesante.", + "example_sentence_english": "He made an interesting observation.", + "pos": "noun", + "word_frequency": 2869 + }, + { + "word": "olímpico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympic", + "example_sentence_native": "Participó en los Juegos Olímpicos.", + "example_sentence_english": "He participated in the Olympic Games.", + "pos": "adjective", + "word_frequency": 2870 + }, + { + "word": "pizza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pizza", + "example_sentence_native": "Me gusta comer pizza.", + "example_sentence_english": "I like to eat pizza.", + "pos": "noun", + "word_frequency": 2872 + }, + { + "word": "plástico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plastic", + "example_sentence_native": "La botella es de plástico.", + "example_sentence_english": "The bottle is made of plastic.", + "pos": "noun", + "word_frequency": 2873 + }, + { + "word": "portugués", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Portuguese", + "example_sentence_native": "Habla portugués fluidamente.", + "example_sentence_english": "He speaks Portuguese fluently.", + "pos": "adjective", + "word_frequency": 2874 + }, + { + "word": "protocolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protocol", + "example_sentence_native": "Debemos seguir el protocolo.", + "example_sentence_english": "We must follow the protocol.", + "pos": "noun", + "word_frequency": 2875 + }, + { + "word": "provocar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provoke;to cause", + "example_sentence_native": "Su actitud puede provocar un conflicto.", + "example_sentence_english": "His attitude can provoke a conflict.", + "pos": "verb", + "word_frequency": 2876 + }, + { + "word": "reporte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report", + "example_sentence_native": "Necesito leer el reporte.", + "example_sentence_english": "I need to read the report.", + "pos": "noun", + "word_frequency": 2877 + }, + { + "word": "residente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resident", + "example_sentence_native": "Es un residente de esta ciudad.", + "example_sentence_english": "He is a resident of this city.", + "pos": "noun", + "word_frequency": 2878 + }, + { + "word": "rival", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rival", + "example_sentence_native": "Su principal rival es muy fuerte.", + "example_sentence_english": "His main rival is very strong.", + "pos": "noun", + "word_frequency": 2879 + }, + { + "word": "sello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stamp;seal", + "example_sentence_native": "Puso un sello en la carta.", + "example_sentence_english": "He put a stamp on the letter.", + "pos": "noun", + "word_frequency": 2880 + }, + { + "word": "semejante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar;such", + "example_sentence_native": "Nunca había visto algo semejante.", + "example_sentence_english": "I had never seen anything similar.", + "pos": "adjective", + "word_frequency": 2881 + }, + { + "word": "solicitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to request;to apply for", + "example_sentence_native": "Debes solicitar el visado con antelación.", + "example_sentence_english": "You must apply for the visa in advance.", + "pos": "verb", + "word_frequency": 2882 + }, + { + "word": "solucionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to solve", + "example_sentence_native": "Necesitamos solucionar este problema pronto.", + "example_sentence_english": "We need to solve this problem soon.", + "pos": "verb", + "word_frequency": 2883 + }, + { + "word": "suicidio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suicide", + "example_sentence_native": "La prevención del suicidio es crucial.", + "example_sentence_english": "Suicide prevention is crucial.", + "pos": "noun", + "word_frequency": 2884 + }, + { + "word": "síntoma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symptom", + "example_sentence_native": "La fiebre es un síntoma común de la gripe.", + "example_sentence_english": "Fever is a common symptom of the flu.", + "pos": "noun", + "word_frequency": 2885 + }, + { + "word": "trayectoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trajectory;path;career", + "example_sentence_native": "Su trayectoria profesional ha sido impresionante.", + "example_sentence_english": "His professional career has been impressive.", + "pos": "noun", + "word_frequency": 2886 + }, + { + "word": "tumba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grave;tomb", + "example_sentence_native": "Visitaron la tumba de sus antepasados.", + "example_sentence_english": "They visited the grave of their ancestors.", + "pos": "noun", + "word_frequency": 2887 + }, + { + "word": "utilización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utilization;use", + "example_sentence_native": "La utilización de recursos debe ser eficiente.", + "example_sentence_english": "The utilization of resources must be efficient.", + "pos": "noun", + "word_frequency": 2888 + }, + { + "word": "vencer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defeat;to overcome;to expire", + "example_sentence_native": "El equipo logró vencer a sus oponentes.", + "example_sentence_english": "The team managed to defeat their opponents.", + "pos": "verb", + "word_frequency": 2889 + }, + { + "word": "agradecer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to thank;to appreciate", + "example_sentence_native": "Quiero agradecerte tu ayuda.", + "example_sentence_english": "I want to thank you for your help.", + "pos": "verb", + "word_frequency": 2890 + }, + { + "word": "ampliamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widely;extensively", + "example_sentence_native": "El tema fue ampliamente debatido.", + "example_sentence_english": "The topic was widely debated.", + "pos": "adverb", + "word_frequency": 2891 + }, + { + "word": "anillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ring", + "example_sentence_native": "Lleva un anillo de oro en el dedo.", + "example_sentence_english": "She wears a gold ring on her finger.", + "pos": "noun", + "word_frequency": 2892 + }, + { + "word": "aporte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution;input", + "example_sentence_native": "Su aporte al proyecto fue muy valioso.", + "example_sentence_english": "His contribution to the project was very valuable.", + "pos": "noun", + "word_frequency": 2893 + }, + { + "word": "aéreo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aerial;air (adj.)", + "example_sentence_native": "El tráfico aéreo fue suspendido.", + "example_sentence_english": "Air traffic was suspended.", + "pos": "adjective", + "word_frequency": 2894 + }, + { + "word": "bloqueo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blockade;blockage", + "example_sentence_native": "Hubo un bloqueo en la carretera.", + "example_sentence_english": "There was a blockage on the road.", + "pos": "noun", + "word_frequency": 2895 + }, + { + "word": "capacitación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "training;qualification", + "example_sentence_native": "Ofrecen programas de capacitación para empleados.", + "example_sentence_english": "They offer training programs for employees.", + "pos": "noun", + "word_frequency": 2896 + }, + { + "word": "carbón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coal;charcoal", + "example_sentence_native": "La energía de carbón es contaminante.", + "example_sentence_english": "Coal energy is polluting.", + "pos": "noun", + "word_frequency": 2897 + }, + { + "word": "cobrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to charge;to collect;to get paid", + "example_sentence_native": "Necesito cobrar mi cheque.", + "example_sentence_english": "I need to cash my check.", + "pos": "verb", + "word_frequency": 2898 + }, + { + "word": "comedia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comedy", + "example_sentence_native": "Vimos una comedia muy divertida anoche.", + "example_sentence_english": "We watched a very funny comedy last night.", + "pos": "noun", + "word_frequency": 2899 + }, + { + "word": "competir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compete", + "example_sentence_native": "A ellos les gusta competir en deportes.", + "example_sentence_english": "They like to compete in sports.", + "pos": "verb", + "word_frequency": 2900 + }, + { + "word": "completar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to complete", + "example_sentence_native": "Por favor, completa el formulario.", + "example_sentence_english": "Please complete the form.", + "pos": "verb", + "word_frequency": 2901 + }, + { + "word": "contribuir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contribute", + "example_sentence_native": "Todos debemos contribuir a la causa.", + "example_sentence_english": "We all must contribute to the cause.", + "pos": "verb", + "word_frequency": 2902 + }, + { + "word": "cuota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fee;quota;share", + "example_sentence_native": "La cuota mensual es de 50 euros.", + "example_sentence_english": "The monthly fee is 50 euros.", + "pos": "noun", + "word_frequency": 2903 + }, + { + "word": "defensor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defender;advocate", + "example_sentence_native": "Es un defensor de los derechos humanos.", + "example_sentence_english": "He is a human rights advocate.", + "pos": "noun", + "word_frequency": 2904 + }, + { + "word": "desempeño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance;achievement", + "example_sentence_native": "Su desempeño en el trabajo fue excelente.", + "example_sentence_english": "His performance at work was excellent.", + "pos": "noun", + "word_frequency": 2905 + }, + { + "word": "dimensión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dimension", + "example_sentence_native": "El problema tiene una nueva dimensión.", + "example_sentence_english": "The problem has a new dimension.", + "pos": "noun", + "word_frequency": 2906 + }, + { + "word": "eficaz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effective;efficient", + "example_sentence_native": "Es un método muy eficaz para aprender.", + "example_sentence_english": "It's a very effective method for learning.", + "pos": "adjective", + "word_frequency": 2907 + }, + { + "word": "encontrarse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to find oneself;to be located;to meet", + "example_sentence_native": "Me encuentro bien hoy.", + "example_sentence_english": "I feel good today.", + "pos": "verb", + "word_frequency": 2908 + }, + { + "word": "fiebre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fever", + "example_sentence_native": "El niño tiene fiebre alta.", + "example_sentence_english": "The child has a high fever.", + "pos": "noun", + "word_frequency": 2909 + }, + { + "word": "fiscalía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "public prosecutor's office;district attorney's office", + "example_sentence_native": "La fiscalía presentó nuevas pruebas.", + "example_sentence_english": "The public prosecutor's office presented new evidence.", + "pos": "noun", + "word_frequency": 2910 + }, + { + "word": "griego", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Greek", + "example_sentence_native": "Le gusta la mitología griega.", + "example_sentence_english": "He likes Greek mythology.", + "pos": "adjective", + "word_frequency": 2912 + }, + { + "word": "hueso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bone", + "example_sentence_native": "El perro está mordiendo un hueso.", + "example_sentence_english": "The dog is chewing a bone.", + "pos": "noun", + "word_frequency": 2914 + }, + { + "word": "international", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "international", + "example_sentence_native": "Es una organización internacional.", + "example_sentence_english": "It is an international organization.", + "pos": "adjective", + "word_frequency": 2915 + }, + { + "word": "ladrón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thief", + "example_sentence_native": "El ladrón fue atrapado por la policía.", + "example_sentence_english": "The thief was caught by the police.", + "pos": "noun", + "word_frequency": 2918 + }, + { + "word": "manifiesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manifesto;manifest", + "example_sentence_native": "Publicaron un manifiesto con sus demandas.", + "example_sentence_english": "They published a manifesto with their demands.", + "pos": "noun", + "word_frequency": 2919 + }, + { + "word": "miseria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misery;poverty", + "example_sentence_native": "La miseria en algunas partes del mundo es desgarradora.", + "example_sentence_english": "The misery in some parts of the world is heartbreaking.", + "pos": "noun", + "word_frequency": 2921 + }, + { + "word": "pagina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "page", + "example_sentence_native": "Abre el libro en la página diez.", + "example_sentence_english": "Open the book to page ten.", + "pos": "noun", + "word_frequency": 2924 + }, + { + "word": "pantalón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "trousers;pants", + "example_sentence_native": "Me compré un pantalón nuevo.", + "example_sentence_english": "I bought new pants.", + "pos": "noun", + "word_frequency": 2925 + }, + { + "word": "peruano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Peruvian", + "example_sentence_native": "Ella es una cantante peruana.", + "example_sentence_english": "She is a Peruvian singer.", + "pos": "adjective", + "word_frequency": 2927 + }, + { + "word": "prever", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to foresee;to anticipate", + "example_sentence_native": "Es difícil prever el futuro.", + "example_sentence_english": "It's difficult to foresee the future.", + "pos": "verb", + "word_frequency": 2929 + }, + { + "word": "razonable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reasonable", + "example_sentence_native": "El precio es razonable.", + "example_sentence_english": "The price is reasonable.", + "pos": "adjective", + "word_frequency": 2930 + }, + { + "word": "referente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference;referent", + "example_sentence_native": "Él es un referente en su campo.", + "example_sentence_english": "He is a reference in his field.", + "pos": "noun", + "word_frequency": 2931 + }, + { + "word": "respirar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to breathe", + "example_sentence_native": "Necesito respirar aire fresco.", + "example_sentence_english": "I need to breathe fresh air.", + "pos": "verb", + "word_frequency": 2932 + }, + { + "word": "revés", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setback;backhand", + "example_sentence_native": "A pesar del revés, siguió adelante.", + "example_sentence_english": "Despite the setback, he moved forward.", + "pos": "noun", + "word_frequency": 2933 + }, + { + "word": "sacrificio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sacrifice", + "example_sentence_native": "Su éxito fue el resultado de mucho sacrificio.", + "example_sentence_english": "His success was the result of much sacrifice.", + "pos": "noun", + "word_frequency": 2934 + }, + { + "word": "sano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "healthy;sound", + "example_sentence_native": "Es importante llevar una vida sana.", + "example_sentence_english": "It's important to lead a healthy life.", + "pos": "adjective", + "word_frequency": 2935 + }, + { + "word": "separado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separated;apart", + "example_sentence_native": "Mis padres están separados.", + "example_sentence_english": "My parents are separated.", + "pos": "adjective", + "word_frequency": 2936 + }, + { + "word": "surgir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emerge;to arise", + "example_sentence_native": "Nuevas ideas surgieron durante la reunión.", + "example_sentence_english": "New ideas emerged during the meeting.", + "pos": "verb", + "word_frequency": 2938 + }, + { + "word": "tenis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tennis;sneakers", + "example_sentence_native": "Me gusta jugar al tenis.", + "example_sentence_english": "I like to play tennis.", + "pos": "noun", + "word_frequency": 2939 + }, + { + "word": "terapia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therapy", + "example_sentence_native": "Ella está en terapia para su ansiedad.", + "example_sentence_english": "She is in therapy for her anxiety.", + "pos": "noun", + "word_frequency": 2940 + }, + { + "word": "tranquilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tranquility;calmness", + "example_sentence_native": "Busco la tranquilidad en la naturaleza.", + "example_sentence_english": "I seek tranquility in nature.", + "pos": "noun", + "word_frequency": 2941 + }, + { + "word": "transferencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer", + "example_sentence_native": "Hice una transferencia bancaria.", + "example_sentence_english": "I made a bank transfer.", + "pos": "noun", + "word_frequency": 2942 + }, + { + "word": "ubicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to locate;to place", + "example_sentence_native": "No puedo ubicar mis llaves.", + "example_sentence_english": "I can't locate my keys.", + "pos": "verb", + "word_frequency": 2944 + }, + { + "word": "vega", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertile plain;meadow", + "example_sentence_native": "La vega del río es muy fértil.", + "example_sentence_english": "The river plain is very fertile.", + "pos": "noun", + "word_frequency": 2945 + }, + { + "word": "videojuego", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video game", + "example_sentence_native": "Mi hijo pasa horas jugando videojuegos.", + "example_sentence_english": "My son spends hours playing video games.", + "pos": "noun", + "word_frequency": 2946 + }, + { + "word": "vidrio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glass", + "example_sentence_native": "La ventana es de vidrio.", + "example_sentence_english": "The window is made of glass.", + "pos": "noun", + "word_frequency": 2947 + }, + { + "word": "virtud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtue", + "example_sentence_native": "La paciencia es una gran virtud.", + "example_sentence_english": "Patience is a great virtue.", + "pos": "noun", + "word_frequency": 2949 + }, + { + "word": "acta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minutes (of a meeting);record", + "example_sentence_native": "Por favor, lee el acta de la reunión anterior.", + "example_sentence_english": "Please read the minutes of the previous meeting.", + "pos": "noun", + "word_frequency": 2950 + }, + { + "word": "agrícola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agricultural", + "example_sentence_native": "La economía de la región es principalmente agrícola.", + "example_sentence_english": "The region's economy is primarily agricultural.", + "pos": "adjective", + "word_frequency": 2951 + }, + { + "word": "aprobar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approve;to pass (an exam)", + "example_sentence_native": "Espero aprobar el examen.", + "example_sentence_english": "I hope to pass the exam.", + "pos": "verb", + "word_frequency": 2952 + }, + { + "word": "atmósfera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atmosphere", + "example_sentence_native": "La atmósfera del lugar era muy relajante.", + "example_sentence_english": "The atmosphere of the place was very relaxing.", + "pos": "noun", + "word_frequency": 2953 + }, + { + "word": "brasileño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Brazilian", + "example_sentence_native": "Mi amigo es brasileño.", + "example_sentence_english": "My friend is Brazilian.", + "pos": "adjective", + "word_frequency": 2954 + }, + { + "word": "bus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "example_sentence_native": "Tomé el bus para ir al trabajo.", + "example_sentence_english": "I took the bus to go to work.", + "pos": "noun", + "word_frequency": 2955 + }, + { + "word": "ciego", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blind", + "example_sentence_native": "El perro guía ayuda a la persona ciega.", + "example_sentence_english": "The guide dog helps the blind person.", + "pos": "adjective", + "word_frequency": 2957 + }, + { + "word": "confirmar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confirm", + "example_sentence_native": "¿Puedes confirmar tu asistencia?", + "example_sentence_english": "Can you confirm your attendance?", + "pos": "verb", + "word_frequency": 2958 + }, + { + "word": "confusión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confusion", + "example_sentence_native": "Hubo mucha confusión con las instrucciones.", + "example_sentence_english": "There was a lot of confusion with the instructions.", + "pos": "noun", + "word_frequency": 2959 + }, + { + "word": "costado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "side;flank", + "example_sentence_native": "Me duele el costado derecho.", + "example_sentence_english": "My right side hurts.", + "pos": "noun", + "word_frequency": 2960 + }, + { + "word": "cómodo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comfortable", + "example_sentence_native": "Este sofá es muy cómodo.", + "example_sentence_english": "This sofa is very comfortable.", + "pos": "adjective", + "word_frequency": 2961 + }, + { + "word": "danza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dance", + "example_sentence_native": "La danza es una forma de expresión artística.", + "example_sentence_english": "Dance is a form of artistic expression.", + "pos": "noun", + "word_frequency": 2962 + }, + { + "word": "detenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detained;stopped", + "example_sentence_native": "El coche estaba detenido en el semáforo.", + "example_sentence_english": "The car was stopped at the traffic light.", + "pos": "adjective", + "word_frequency": 2963 + }, + { + "word": "diccionario", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dictionary", + "example_sentence_native": "Necesito un diccionario para buscar esta palabra.", + "example_sentence_english": "I need a dictionary to look up this word.", + "pos": "noun", + "word_frequency": 2964 + }, + { + "word": "dispositivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device", + "example_sentence_native": "Este dispositivo es muy útil.", + "example_sentence_english": "This device is very useful.", + "pos": "noun", + "word_frequency": 2965 + }, + { + "word": "estándar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standard", + "example_sentence_native": "Este es el estándar de calidad que buscamos.", + "example_sentence_english": "This is the quality standard we are looking for.", + "pos": "noun", + "word_frequency": 2967 + }, + { + "word": "fantasía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy", + "example_sentence_native": "Le encanta leer libros de fantasía.", + "example_sentence_english": "She loves reading fantasy books.", + "pos": "noun", + "word_frequency": 2968 + }, + { + "word": "frecuente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequent", + "example_sentence_native": "Las lluvias son frecuentes en esta época del año.", + "example_sentence_english": "Rains are frequent at this time of year.", + "pos": "adjective", + "word_frequency": 2969 + }, + { + "word": "fresco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fresh;cool", + "example_sentence_native": "El aire de la montaña es muy fresco.", + "example_sentence_english": "The mountain air is very fresh.", + "pos": "adjective", + "word_frequency": 2970 + }, + { + "word": "imponer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impose", + "example_sentence_native": "No puedes imponer tus ideas a los demás.", + "example_sentence_english": "You cannot impose your ideas on others.", + "pos": "verb", + "word_frequency": 2972 + }, + { + "word": "inmigración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigration", + "example_sentence_native": "La inmigración es un tema importante en la política actual.", + "example_sentence_english": "Immigration is an important topic in current politics.", + "pos": "noun", + "word_frequency": 2973 + }, + { + "word": "lana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wool", + "example_sentence_native": "Este suéter es de lana pura.", + "example_sentence_english": "This sweater is made of pure wool.", + "pos": "noun", + "word_frequency": 2974 + }, + { + "word": "madrugada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "early morning;dawn", + "example_sentence_native": "Se levantó a la madrugada para ir a trabajar.", + "example_sentence_english": "He got up at dawn to go to work.", + "pos": "noun", + "word_frequency": 2975 + }, + { + "word": "marcar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mark;to dial", + "example_sentence_native": "Por favor, marca mi número de teléfono.", + "example_sentence_english": "Please dial my phone number.", + "pos": "verb", + "word_frequency": 2976 + }, + { + "word": "misa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mass (religious service)", + "example_sentence_native": "Fuimos a misa el domingo.", + "example_sentence_english": "We went to mass on Sunday.", + "pos": "noun", + "word_frequency": 2979 + }, + { + "word": "nervioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nervous", + "example_sentence_native": "Estaba muy nervioso antes del examen.", + "example_sentence_english": "He was very nervous before the exam.", + "pos": "adjective", + "word_frequency": 2980 + }, + { + "word": "ningun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "no;none (before masculine singular noun)", + "example_sentence_native": "No tengo ningún problema.", + "example_sentence_english": "I don't have any problem.", + "pos": "adjective", + "word_frequency": 2981 + }, + { + "word": "núcleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nucleus;core", + "example_sentence_native": "El núcleo de la Tierra es muy caliente.", + "example_sentence_english": "The Earth's core is very hot.", + "pos": "noun", + "word_frequency": 2982 + }, + { + "word": "pata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paw;leg (of an animal;furniture)", + "example_sentence_native": "El perro tiene una pata herida.", + "example_sentence_english": "The dog has an injured paw.", + "pos": "noun", + "word_frequency": 2983 + }, + { + "word": "persecución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persecution;chase", + "example_sentence_native": "La persecución policial duró horas.", + "example_sentence_english": "The police chase lasted for hours.", + "pos": "noun", + "word_frequency": 2984 + }, + { + "word": "pesado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heavy;annoying", + "example_sentence_native": "Esta caja es muy pesada.", + "example_sentence_english": "This box is very heavy.", + "pos": "adjective", + "word_frequency": 2985 + }, + { + "word": "pescado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fish (as food)", + "example_sentence_native": "Me gusta comer pescado.", + "example_sentence_english": "I like to eat fish.", + "pos": "noun", + "word_frequency": 2986 + }, + { + "word": "popularidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "popularity", + "example_sentence_native": "Su popularidad ha crecido mucho.", + "example_sentence_english": "His popularity has grown a lot.", + "pos": "noun", + "word_frequency": 2987 + }, + { + "word": "pozo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well (water source)", + "example_sentence_native": "Sacaron agua del pozo.", + "example_sentence_english": "They drew water from the well.", + "pos": "noun", + "word_frequency": 2988 + }, + { + "word": "preparado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prepared;ready", + "example_sentence_native": "Estoy preparado para el examen.", + "example_sentence_english": "I am prepared for the exam.", + "pos": "adjective", + "word_frequency": 2989 + }, + { + "word": "registrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to register;to search", + "example_sentence_native": "Necesito registrarme en la página web.", + "example_sentence_english": "I need to register on the website.", + "pos": "verb", + "word_frequency": 2991 + }, + { + "word": "remedio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remedy;solution", + "example_sentence_native": "No hay remedio para esta situación.", + "example_sentence_english": "There is no remedy for this situation.", + "pos": "noun", + "word_frequency": 2992 + }, + { + "word": "reputación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reputation", + "example_sentence_native": "Tiene una buena reputación en su campo.", + "example_sentence_english": "He has a good reputation in his field.", + "pos": "noun", + "word_frequency": 2993 + }, + { + "word": "rumor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rumor", + "example_sentence_native": "Hay un rumor sobre su renuncia.", + "example_sentence_english": "There's a rumor about his resignation.", + "pos": "noun", + "word_frequency": 2994 + }, + { + "word": "sinceramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincerely", + "example_sentence_native": "Sinceramente, no sé qué decir.", + "example_sentence_english": "Sincerely, I don't know what to say.", + "pos": "adverb", + "word_frequency": 2995 + }, + { + "word": "apuntar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to point;to note down", + "example_sentence_native": "Apunta la dirección en tu cuaderno.", + "example_sentence_english": "Note down the address in your notebook.", + "pos": "verb", + "word_frequency": 2999 + }, + { + "word": "asistente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "assistant", + "example_sentence_native": "La nueva asistente es muy eficiente.", + "example_sentence_english": "The new assistant is very efficient.", + "pos": "noun", + "word_frequency": 3001 + }, + { + "word": "casco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helmet", + "example_sentence_native": "Siempre usa un casco cuando andes en bicicleta.", + "example_sentence_english": "Always wear a helmet when you ride a bicycle.", + "pos": "noun", + "word_frequency": 3003 + }, + { + "word": "cocinar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cook", + "example_sentence_native": "Me gusta cocinar pasta los domingos.", + "example_sentence_english": "I like to cook pasta on Sundays.", + "pos": "verb", + "word_frequency": 3005 + }, + { + "word": "contaminación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollution", + "example_sentence_native": "La contaminación del aire es un problema grave en las ciudades.", + "example_sentence_english": "Air pollution is a serious problem in cities.", + "pos": "noun", + "word_frequency": 3006 + }, + { + "word": "descansar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rest", + "example_sentence_native": "Necesito descansar después de un largo día de trabajo.", + "example_sentence_english": "I need to rest after a long day of work.", + "pos": "verb", + "word_frequency": 3007 + }, + { + "word": "descargar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to download", + "example_sentence_native": "Voy a descargar la aplicación en mi teléfono.", + "example_sentence_english": "I'm going to download the app on my phone.", + "pos": "verb", + "word_frequency": 3008 + }, + { + "word": "diagnóstico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnosis", + "example_sentence_native": "El médico le dio un diagnóstico claro de su enfermedad.", + "example_sentence_english": "The doctor gave him a clear diagnosis of his illness.", + "pos": "noun", + "word_frequency": 3009 + }, + { + "word": "digno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worthy", + "example_sentence_native": "Es una persona digna de admiración.", + "example_sentence_english": "He is a person worthy of admiration.", + "pos": "adjective", + "word_frequency": 3010 + }, + { + "word": "grabación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recording", + "example_sentence_native": "La grabación del concierto fue excelente.", + "example_sentence_english": "The recording of the concert was excellent.", + "pos": "noun", + "word_frequency": 3013 + }, + { + "word": "grasa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fat", + "example_sentence_native": "Evita comer alimentos con mucha grasa.", + "example_sentence_english": "Avoid eating foods with a lot of fat.", + "pos": "noun", + "word_frequency": 3014 + }, + { + "word": "gritar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shout", + "example_sentence_native": "No necesitas gritar, te escucho perfectamente.", + "example_sentence_english": "You don't need to shout, I can hear you perfectly.", + "pos": "verb", + "word_frequency": 3015 + }, + { + "word": "huir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flee", + "example_sentence_native": "El ladrón intentó huir de la policía.", + "example_sentence_english": "The thief tried to flee from the police.", + "pos": "verb", + "word_frequency": 3016 + }, + { + "word": "jurídico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal", + "example_sentence_native": "Necesitamos asesoramiento jurídico para este caso.", + "example_sentence_english": "We need legal advice for this case.", + "pos": "adjective", + "word_frequency": 3018 + }, + { + "word": "macho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "male", + "example_sentence_native": "El león macho es el rey de la selva.", + "example_sentence_english": "The male lion is the king of the jungle.", + "pos": "adjective", + "word_frequency": 3019 + }, + { + "word": "mail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "email", + "example_sentence_native": "Te enviaré un mail con los detalles.", + "example_sentence_english": "I will send you an email with the details.", + "pos": "noun", + "word_frequency": 3020 + }, + { + "word": "maíz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corn", + "example_sentence_native": "Me encanta el maíz a la parrilla.", + "example_sentence_english": "I love grilled corn.", + "pos": "noun", + "word_frequency": 3022 + }, + { + "word": "músico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musician", + "example_sentence_native": "Mi hermano es un músico talentoso.", + "example_sentence_english": "My brother is a talented musician.", + "pos": "noun", + "word_frequency": 3023 + }, + { + "word": "ola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wave", + "example_sentence_native": "Las olas del mar eran muy grandes hoy.", + "example_sentence_english": "The ocean waves were very big today.", + "pos": "noun", + "word_frequency": 3025 + }, + { + "word": "operativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operative", + "example_sentence_native": "El sistema operativo necesita una actualización.", + "example_sentence_english": "The operating system needs an update.", + "pos": "noun", + "word_frequency": 3026 + }, + { + "word": "oral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oral", + "example_sentence_native": "Tenemos un examen oral la próxima semana.", + "example_sentence_english": "We have an oral exam next week.", + "pos": "adjective", + "word_frequency": 3027 + }, + { + "word": "paraíso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paradise", + "example_sentence_native": "Esta isla es un verdadero paraíso tropical.", + "example_sentence_english": "This island is a true tropical paradise.", + "pos": "noun", + "word_frequency": 3029 + }, + { + "word": "península", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peninsula", + "example_sentence_native": "España y Portugal forman la Península Ibérica.", + "example_sentence_english": "Spain and Portugal form the Iberian Peninsula.", + "pos": "noun", + "word_frequency": 3030 + }, + { + "word": "practicar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to practice", + "example_sentence_native": "Necesito practicar más mi español.", + "example_sentence_english": "I need to practice my Spanish more.", + "pos": "verb", + "word_frequency": 3031 + }, + { + "word": "presa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dam", + "example_sentence_native": "Construyeron una presa para controlar el río.", + "example_sentence_english": "They built a dam to control the river.", + "pos": "noun", + "word_frequency": 3032 + }, + { + "word": "proporcionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide", + "example_sentence_native": "La empresa debe proporcionar un buen servicio.", + "example_sentence_english": "The company must provide good service.", + "pos": "verb", + "word_frequency": 3033 + }, + { + "word": "recomendación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommendation", + "example_sentence_native": "Me dio una buena recomendación para el restaurante.", + "example_sentence_english": "He gave me a good recommendation for the restaurant.", + "pos": "noun", + "word_frequency": 3034 + }, + { + "word": "relevante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevant", + "example_sentence_native": "Su opinión es muy relevante para el proyecto.", + "example_sentence_english": "His opinion is very relevant to the project.", + "pos": "adjective", + "word_frequency": 3035 + }, + { + "word": "rutina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "routine", + "example_sentence_native": "Mi rutina diaria incluye hacer ejercicio.", + "example_sentence_english": "My daily routine includes exercising.", + "pos": "noun", + "word_frequency": 3036 + }, + { + "word": "soportar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bear", + "example_sentence_native": "No puedo soportar el calor de este verano.", + "example_sentence_english": "I can't bear the heat of this summer.", + "pos": "verb", + "word_frequency": 3037 + }, + { + "word": "teta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breast", + "example_sentence_native": "El bebé buscaba la teta de su madre.", + "example_sentence_english": "The baby was looking for its mother's breast.", + "pos": "noun", + "word_frequency": 3038 + }, + { + "word": "time", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time", + "example_sentence_native": "Trabaja a tiempo completo (full-time) en la empresa.", + "example_sentence_english": "He works full-time at the company.", + "pos": "noun", + "word_frequency": 3039 + }, + { + "word": "aclarar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clarify", + "example_sentence_native": "Necesito aclarar mis dudas.", + "example_sentence_english": "I need to clarify my doubts.", + "pos": "verb", + "word_frequency": 3040 + }, + { + "word": "adopción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adoption", + "example_sentence_native": "La adopción es un proceso legal.", + "example_sentence_english": "Adoption is a legal process.", + "pos": "noun", + "word_frequency": 3041 + }, + { + "word": "adoptar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adopt", + "example_sentence_native": "Decidieron adoptar un perro.", + "example_sentence_english": "They decided to adopt a dog.", + "pos": "verb", + "word_frequency": 3042 + }, + { + "word": "alarma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alarm", + "example_sentence_native": "La alarma sonó a las seis de la mañana.", + "example_sentence_english": "The alarm rang at six in the morning.", + "pos": "noun", + "word_frequency": 3043 + }, + { + "word": "alegrar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cheer up", + "example_sentence_native": "Su visita me alegró el día.", + "example_sentence_english": "Your visit brightened my day.", + "pos": "verb", + "word_frequency": 3044 + }, + { + "word": "amanecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dawn", + "example_sentence_native": "Me gusta ver amanecer desde la ventana.", + "example_sentence_english": "I like to watch the sunrise from the window.", + "pos": "verb", + "word_frequency": 3045 + }, + { + "word": "apartado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "section", + "example_sentence_native": "Lee el siguiente apartado del libro.", + "example_sentence_english": "Read the next section of the book.", + "pos": "noun", + "word_frequency": 3046 + }, + { + "word": "asalto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assault", + "example_sentence_native": "Hubo un asalto al banco anoche.", + "example_sentence_english": "There was a bank robbery last night.", + "pos": "noun", + "word_frequency": 3047 + }, + { + "word": "botón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "button", + "example_sentence_native": "Pulsa el botón rojo para empezar.", + "example_sentence_english": "Press the red button to start.", + "pos": "noun", + "word_frequency": 3051 + }, + { + "word": "colega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colleague", + "example_sentence_native": "Mi colega me ayudó con el proyecto.", + "example_sentence_english": "My colleague helped me with the project.", + "pos": "noun", + "word_frequency": 3052 + }, + { + "word": "colonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonial", + "example_sentence_native": "La arquitectura colonial es muy hermosa.", + "example_sentence_english": "Colonial architecture is very beautiful.", + "pos": "adjective", + "word_frequency": 3053 + }, + { + "word": "consentimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consent", + "example_sentence_native": "Necesitamos su consentimiento por escrito.", + "example_sentence_english": "We need your written consent.", + "pos": "noun", + "word_frequency": 3054 + }, + { + "word": "conveniente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convenient", + "example_sentence_native": "Es conveniente llegar temprano.", + "example_sentence_english": "It is convenient to arrive early.", + "pos": "adjective", + "word_frequency": 3055 + }, + { + "word": "corporación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporation", + "example_sentence_native": "Trabaja para una gran corporación internacional.", + "example_sentence_english": "He works for a large international corporation.", + "pos": "noun", + "word_frequency": 3056 + }, + { + "word": "descuento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "discount", + "example_sentence_native": "Hay un descuento del 20% en la tienda.", + "example_sentence_english": "There is a 20% discount in the store.", + "pos": "noun", + "word_frequency": 3057 + }, + { + "word": "desempleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment", + "example_sentence_native": "La tasa de desempleo ha disminuido.", + "example_sentence_english": "The unemployment rate has decreased.", + "pos": "noun", + "word_frequency": 3058 + }, + { + "word": "duelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grief", + "example_sentence_native": "Está pasando por un período de duelo.", + "example_sentence_english": "He is going through a period of grief.", + "pos": "noun", + "word_frequency": 3059 + }, + { + "word": "embarazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pregnancy", + "example_sentence_native": "Anunció su embarazo a la familia.", + "example_sentence_english": "She announced her pregnancy to the family.", + "pos": "noun", + "word_frequency": 3060 + }, + { + "word": "emocional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emotional", + "example_sentence_native": "Es una persona muy emocional.", + "example_sentence_english": "She is a very emotional person.", + "pos": "adjective", + "word_frequency": 3061 + }, + { + "word": "encanto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charm", + "example_sentence_native": "El pueblo tiene mucho encanto.", + "example_sentence_english": "The town has a lot of charm.", + "pos": "noun", + "word_frequency": 3062 + }, + { + "word": "escudo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shield", + "example_sentence_native": "El escudo nacional tiene un águila.", + "example_sentence_english": "The national coat of arms has an eagle.", + "pos": "noun", + "word_frequency": 3063 + }, + { + "word": "estancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stay", + "example_sentence_native": "Disfruté mucho mi estancia en el hotel.", + "example_sentence_english": "I really enjoyed my stay at the hotel.", + "pos": "noun", + "word_frequency": 3064 + }, + { + "word": "flota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleet", + "example_sentence_native": "La flota de barcos zarpó al amanecer.", + "example_sentence_english": "The fleet of ships set sail at dawn.", + "pos": "noun", + "word_frequency": 3065 + }, + { + "word": "fomentar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to foster", + "example_sentence_native": "Debemos fomentar la lectura entre los jóvenes.", + "example_sentence_english": "We must foster reading among young people.", + "pos": "verb", + "word_frequency": 3066 + }, + { + "word": "frecuentemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequently", + "example_sentence_native": "Visita a sus abuelos frecuentemente.", + "example_sentence_english": "He frequently visits his grandparents.", + "pos": "adverb", + "word_frequency": 3067 + }, + { + "word": "fruta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fruit", + "example_sentence_native": "Me gusta comer fruta fresca.", + "example_sentence_english": "I like to eat fresh fruit.", + "pos": "noun", + "word_frequency": 3068 + }, + { + "word": "fuga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leak", + "example_sentence_native": "Hubo una fuga de gas en la cocina.", + "example_sentence_english": "There was a gas leak in the kitchen.", + "pos": "noun", + "word_frequency": 3069 + }, + { + "word": "garganta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "throat", + "example_sentence_native": "Me duele la garganta.", + "example_sentence_english": "My throat hurts.", + "pos": "noun", + "word_frequency": 3070 + }, + { + "word": "gráfica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graph", + "example_sentence_native": "La gráfica muestra el crecimiento de la empresa.", + "example_sentence_english": "The graph shows the company's growth.", + "pos": "noun", + "word_frequency": 3071 + }, + { + "word": "helado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ice cream", + "example_sentence_native": "Quiero un helado de chocolate.", + "example_sentence_english": "I want a chocolate ice cream.", + "pos": "noun", + "word_frequency": 3072 + }, + { + "word": "himno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthem", + "example_sentence_native": "Cantaron el himno nacional con orgullo.", + "example_sentence_english": "They proudly sang the national anthem.", + "pos": "noun", + "word_frequency": 3073 + }, + { + "word": "informática", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computer science", + "example_sentence_native": "Estudió informática en la universidad.", + "example_sentence_english": "He studied computer science at university.", + "pos": "noun", + "word_frequency": 3075 + }, + { + "word": "lobo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wolf", + "example_sentence_native": "El lobo aulló a la luna.", + "example_sentence_english": "The wolf howled at the moon.", + "pos": "noun", + "word_frequency": 3078 + }, + { + "word": "lógico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logical", + "example_sentence_native": "Su argumento es muy lógico.", + "example_sentence_english": "His argument is very logical.", + "pos": "adjective", + "word_frequency": 3079 + }, + { + "word": "margarita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daisy;margarita", + "example_sentence_native": "La margarita es una flor muy común.", + "example_sentence_english": "The daisy is a very common flower.", + "pos": "noun", + "word_frequency": 3080 + }, + { + "word": "mensual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly", + "example_sentence_native": "El pago es mensual.", + "example_sentence_english": "The payment is monthly.", + "pos": "adjective", + "word_frequency": 3082 + }, + { + "word": "mueble", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piece of furniture", + "example_sentence_native": "Compramos un mueble nuevo para la sala.", + "example_sentence_english": "We bought a new piece of furniture for the living room.", + "pos": "noun", + "word_frequency": 3084 + }, + { + "word": "oficio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trade;occupation;official letter", + "example_sentence_native": "Su oficio es la carpintería.", + "example_sentence_english": "His trade is carpentry.", + "pos": "noun", + "word_frequency": 3085 + }, + { + "word": "parado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standing;stopped;unemployed", + "example_sentence_native": "El coche está parado en la calle.", + "example_sentence_english": "The car is stopped in the street.", + "pos": "adjective", + "word_frequency": 3086 + }, + { + "word": "presentarse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to introduce oneself;to show up;to appear", + "example_sentence_native": "Me voy a presentar a la reunión.", + "example_sentence_english": "I am going to show up to the meeting.", + "pos": "verb", + "word_frequency": 3087 + }, + { + "word": "préstamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loan", + "example_sentence_native": "Necesito un préstamo para comprar la casa.", + "example_sentence_english": "I need a loan to buy the house.", + "pos": "noun", + "word_frequency": 3088 + }, + { + "word": "receta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recipe;prescription", + "example_sentence_native": "Tengo una receta nueva para galletas.", + "example_sentence_english": "I have a new recipe for cookies.", + "pos": "noun", + "word_frequency": 3089 + }, + { + "word": "recibo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receipt", + "example_sentence_native": "Por favor, guarda el recibo.", + "example_sentence_english": "Please, keep the receipt.", + "pos": "noun", + "word_frequency": 3090 + }, + { + "word": "rincón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corner (inside)", + "example_sentence_native": "El gato duerme en el rincón de la habitación.", + "example_sentence_english": "The cat sleeps in the corner of the room.", + "pos": "noun", + "word_frequency": 3091 + }, + { + "word": "sagrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacred;holy", + "example_sentence_native": "Este es un lugar sagrado para muchas personas.", + "example_sentence_english": "This is a sacred place for many people.", + "pos": "adjective", + "word_frequency": 3092 + }, + { + "word": "salvaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild;savage", + "example_sentence_native": "Vimos animales salvajes en el bosque.", + "example_sentence_english": "We saw wild animals in the forest.", + "pos": "adjective", + "word_frequency": 3093 + }, + { + "word": "sanción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanction;penalty", + "example_sentence_native": "El equipo recibió una sanción por su comportamiento.", + "example_sentence_english": "The team received a sanction for their behavior.", + "pos": "noun", + "word_frequency": 3094 + }, + { + "word": "satisfacción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfaction", + "example_sentence_native": "Su satisfacción es nuestra prioridad.", + "example_sentence_english": "Your satisfaction is our priority.", + "pos": "noun", + "word_frequency": 3095 + }, + { + "word": "sexy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sexy", + "example_sentence_native": "Ella llevaba un vestido muy sexy.", + "example_sentence_english": "She was wearing a very sexy dress.", + "pos": "adjective", + "word_frequency": 3096 + }, + { + "word": "situar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to locate;to place;to situate", + "example_sentence_native": "Debemos situar la mesa cerca de la ventana.", + "example_sentence_english": "We must place the table near the window.", + "pos": "verb", + "word_frequency": 3097 + }, + { + "word": "sorprendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprising;astonishing", + "example_sentence_native": "La noticia fue realmente sorprendente.", + "example_sentence_english": "The news was truly surprising.", + "pos": "adjective", + "word_frequency": 3100 + }, + { + "word": "soviético", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Soviet", + "example_sentence_native": "La Unión Soviética existió durante muchos años.", + "example_sentence_english": "The Soviet Union existed for many years.", + "pos": "adjective", + "word_frequency": 3101 + }, + { + "word": "sugerir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suggest", + "example_sentence_native": "¿Qué me sugieres para cenar?", + "example_sentence_english": "What do you suggest for dinner?", + "pos": "verb", + "word_frequency": 3103 + }, + { + "word": "tela", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fabric;cloth", + "example_sentence_native": "Esta camisa está hecha de una tela suave.", + "example_sentence_english": "This shirt is made of a soft fabric.", + "pos": "noun", + "word_frequency": 3104 + }, + { + "word": "utilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utility;usefulness;profit", + "example_sentence_native": "La utilidad de esta herramienta es innegable.", + "example_sentence_english": "The usefulness of this tool is undeniable.", + "pos": "noun", + "word_frequency": 3106 + }, + { + "word": "vasco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Basque", + "example_sentence_native": "La cultura vasca es muy rica.", + "example_sentence_english": "Basque culture is very rich.", + "pos": "adjective", + "word_frequency": 3107 + }, + { + "word": "visible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visible", + "example_sentence_native": "La estrella es visible desde aquí.", + "example_sentence_english": "The star is visible from here.", + "pos": "adjective", + "word_frequency": 3108 + }, + { + "word": "aceptación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceptance", + "example_sentence_native": "La propuesta tuvo una buena aceptación.", + "example_sentence_english": "The proposal had good acceptance.", + "pos": "noun", + "word_frequency": 3111 + }, + { + "word": "adn", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "DNA (deoxyribonucleic acid)", + "example_sentence_native": "El ADN contiene nuestra información genética.", + "example_sentence_english": "DNA contains our genetic information.", + "pos": "noun", + "word_frequency": 3112 + }, + { + "word": "apreciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appreciate;to value", + "example_sentence_native": "Aprecio mucho tu ayuda.", + "example_sentence_english": "I really appreciate your help.", + "pos": "verb", + "word_frequency": 3114 + }, + { + "word": "atractivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attractive", + "example_sentence_native": "El nuevo diseño es muy atractivo.", + "example_sentence_english": "The new design is very attractive.", + "pos": "adjective", + "word_frequency": 3115 + }, + { + "word": "bahía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bay", + "example_sentence_native": "El barco entró en la bahía.", + "example_sentence_english": "The ship entered the bay.", + "pos": "noun", + "word_frequency": 3116 + }, + { + "word": "billete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "banknote;ticket", + "example_sentence_native": "Necesito un billete para el tren.", + "example_sentence_english": "I need a ticket for the train.", + "pos": "noun", + "word_frequency": 3117 + }, + { + "word": "camisa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shirt", + "example_sentence_native": "Me gusta tu camisa nueva.", + "example_sentence_english": "I like your new shirt.", + "pos": "noun", + "word_frequency": 3118 + }, + { + "word": "campesino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peasant;farmer", + "example_sentence_native": "El campesino trabaja la tierra.", + "example_sentence_english": "The farmer works the land.", + "pos": "noun", + "word_frequency": 3119 + }, + { + "word": "capitalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalism", + "example_sentence_native": "El capitalismo es un sistema económico.", + "example_sentence_english": "Capitalism is an economic system.", + "pos": "noun", + "word_frequency": 3120 + }, + { + "word": "cargar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to load;to charge", + "example_sentence_native": "Necesito cargar mi teléfono.", + "example_sentence_english": "I need to charge my phone.", + "pos": "verb", + "word_frequency": 3121 + }, + { + "word": "cometer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to commit", + "example_sentence_native": "No quiero cometer el mismo error otra vez.", + "example_sentence_english": "I don't want to commit the same mistake again.", + "pos": "verb", + "word_frequency": 3124 + }, + { + "word": "directiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directive;guideline", + "example_sentence_native": "La nueva directiva entrará en vigor mañana.", + "example_sentence_english": "The new directive will come into effect tomorrow.", + "pos": "noun", + "word_frequency": 3125 + }, + { + "word": "elevado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high;elevated", + "example_sentence_native": "El precio es demasiado elevado.", + "example_sentence_english": "The price is too high.", + "pos": "adjective", + "word_frequency": 3126 + }, + { + "word": "enfrente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in front;opposite", + "example_sentence_native": "La tienda está enfrente del parque.", + "example_sentence_english": "The store is in front of the park.", + "pos": "adverb", + "word_frequency": 3127 + }, + { + "word": "estimado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "estimated;dear (in letters)", + "example_sentence_native": "El costo estimado es de cien euros.", + "example_sentence_english": "The estimated cost is one hundred euros.", + "pos": "adjective", + "word_frequency": 3128 + }, + { + "word": "estrés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stress", + "example_sentence_native": "Tengo mucho estrés en el trabajo.", + "example_sentence_english": "I have a lot of stress at work.", + "pos": "noun", + "word_frequency": 3129 + }, + { + "word": "gimnasio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gym", + "example_sentence_native": "Voy al gimnasio tres veces por semana.", + "example_sentence_english": "I go to the gym three times a week.", + "pos": "noun", + "word_frequency": 3132 + }, + { + "word": "hectárea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hectare", + "example_sentence_native": "La finca tiene diez hectáreas.", + "example_sentence_english": "The farm has ten hectares.", + "pos": "noun", + "word_frequency": 3133 + }, + { + "word": "hombro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shoulder", + "example_sentence_native": "Me duele el hombro.", + "example_sentence_english": "My shoulder hurts.", + "pos": "noun", + "word_frequency": 3135 + }, + { + "word": "jodido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "screwed;messed up (vulgar)", + "example_sentence_native": "Esto está jodido.", + "example_sentence_english": "This is messed up.", + "pos": "adjective", + "word_frequency": 3136 + }, + { + "word": "marketing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing", + "example_sentence_native": "El marketing digital es muy importante hoy en día.", + "example_sentence_english": "Digital marketing is very important nowadays.", + "pos": "noun", + "word_frequency": 3138 + }, + { + "word": "milla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mile", + "example_sentence_native": "La ciudad está a diez millas de aquí.", + "example_sentence_english": "The city is ten miles from here.", + "pos": "noun", + "word_frequency": 3139 + }, + { + "word": "minería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mining", + "example_sentence_native": "La minería es una industria importante en la región.", + "example_sentence_english": "Mining is an important industry in the region.", + "pos": "noun", + "word_frequency": 3140 + }, + { + "word": "mini", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mini;small", + "example_sentence_native": "Compré una falda mini.", + "example_sentence_english": "I bought a mini skirt.", + "pos": "adjective", + "word_frequency": 3141 + }, + { + "word": "mérito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merit;worth", + "example_sentence_native": "Su trabajo tiene mucho mérito.", + "example_sentence_english": "His work has a lot of merit.", + "pos": "noun", + "word_frequency": 3142 + }, + { + "word": "nube", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloud", + "example_sentence_native": "Hay muchas nubes en el cielo hoy.", + "example_sentence_english": "There are many clouds in the sky today.", + "pos": "noun", + "word_frequency": 3143 + }, + { + "word": "ocultar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hide;to conceal", + "example_sentence_native": "Intentó ocultar la verdad.", + "example_sentence_english": "He tried to hide the truth.", + "pos": "verb", + "word_frequency": 3145 + }, + { + "word": "pasaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passage;ticket;fare", + "example_sentence_native": "Compré un pasaje de avión a Madrid.", + "example_sentence_english": "I bought a plane ticket to Madrid.", + "pos": "noun", + "word_frequency": 3146 + }, + { + "word": "preocupado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worried", + "example_sentence_native": "Estoy muy preocupado por el examen.", + "example_sentence_english": "I am very worried about the exam.", + "pos": "adjective", + "word_frequency": 3148 + }, + { + "word": "publicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "published", + "example_sentence_native": "El libro fue publicado el año pasado.", + "example_sentence_english": "The book was published last year.", + "pos": "adjective", + "word_frequency": 3149 + }, + { + "word": "renovación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewal", + "example_sentence_native": "Necesito hacer la renovación de mi pasaporte.", + "example_sentence_english": "I need to renew my passport.", + "pos": "noun", + "word_frequency": 3151 + }, + { + "word": "retorno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return", + "example_sentence_native": "Esperamos un buen retorno de la inversión.", + "example_sentence_english": "We expect a good return on investment.", + "pos": "noun", + "word_frequency": 3152 + }, + { + "word": "semestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semester;half-year", + "example_sentence_native": "Este semestre tengo cinco asignaturas.", + "example_sentence_english": "This semester I have five subjects.", + "pos": "noun", + "word_frequency": 3154 + }, + { + "word": "servidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "server;servant", + "example_sentence_native": "El servidor de la red está caído.", + "example_sentence_english": "The network server is down.", + "pos": "noun", + "word_frequency": 3155 + }, + { + "word": "terminal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terminal", + "example_sentence_native": "Mi vuelo sale de la terminal 3.", + "example_sentence_english": "My flight departs from terminal 3.", + "pos": "noun", + "word_frequency": 3157 + }, + { + "word": "terremoto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earthquake", + "example_sentence_native": "Hubo un terremoto anoche.", + "example_sentence_english": "There was an earthquake last night.", + "pos": "noun", + "word_frequency": 3158 + }, + { + "word": "trampa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trap", + "example_sentence_native": "Cuidado con la trampa.", + "example_sentence_english": "Beware of the trap.", + "pos": "noun", + "word_frequency": 3160 + }, + { + "word": "tremendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tremendous", + "example_sentence_native": "Fue un tremendo éxito.", + "example_sentence_english": "It was a tremendous success.", + "pos": "adjective", + "word_frequency": 3161 + }, + { + "word": "triple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triple", + "example_sentence_native": "Necesitamos una ración triple.", + "example_sentence_english": "We need a triple portion.", + "pos": "adjective", + "word_frequency": 3162 + }, + { + "word": "unirse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to join", + "example_sentence_native": "¿Quieres unirte a nuestro equipo?", + "example_sentence_english": "Do you want to join our team?", + "pos": "verb", + "word_frequency": 3163 + }, + { + "word": "vela", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "candle", + "example_sentence_native": "Encendimos una vela para iluminar la habitación.", + "example_sentence_english": "We lit a candle to illuminate the room.", + "pos": "noun", + "word_frequency": 3164 + }, + { + "word": "absurdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absurd", + "example_sentence_native": "Su argumento es completamente absurdo.", + "example_sentence_english": "His argument is completely absurd.", + "pos": "adjective", + "word_frequency": 3165 + }, + { + "word": "artístico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artistic", + "example_sentence_native": "Tiene un gran talento artístico.", + "example_sentence_english": "He has great artistic talent.", + "pos": "adjective", + "word_frequency": 3167 + }, + { + "word": "ascenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promotion", + "example_sentence_native": "Celebró su ascenso en el trabajo.", + "example_sentence_english": "He celebrated his promotion at work.", + "pos": "noun", + "word_frequency": 3168 + }, + { + "word": "asociado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "associated", + "example_sentence_native": "Los riesgos asociados son altos.", + "example_sentence_english": "The associated risks are high.", + "pos": "adjective", + "word_frequency": 3169 + }, + { + "word": "brutal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutal", + "example_sentence_native": "La película fue brutalmente intensa.", + "example_sentence_english": "The movie was brutally intense.", + "pos": "adjective", + "word_frequency": 3170 + }, + { + "word": "cartera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet", + "example_sentence_native": "Olvidé mi cartera en casa.", + "example_sentence_english": "I forgot my wallet at home.", + "pos": "noun", + "word_frequency": 3171 + }, + { + "word": "catálogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catalog", + "example_sentence_native": "Revisa el catálogo para ver los productos.", + "example_sentence_english": "Check the catalog to see the products.", + "pos": "noun", + "word_frequency": 3172 + }, + { + "word": "cementerio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cemetery", + "example_sentence_native": "El cementerio está al final de la calle.", + "example_sentence_english": "The cemetery is at the end of the street.", + "pos": "noun", + "word_frequency": 3173 + }, + { + "word": "continental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continental", + "example_sentence_native": "Viajamos por todo el territorio continental.", + "example_sentence_english": "We traveled throughout the continental territory.", + "pos": "adjective", + "word_frequency": 3174 + }, + { + "word": "convencido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convinced", + "example_sentence_native": "Estoy convencido de que es la verdad.", + "example_sentence_english": "I am convinced that it is the truth.", + "pos": "adjective", + "word_frequency": 3175 + }, + { + "word": "corrupto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrupt", + "example_sentence_native": "El sistema estaba corrupto.", + "example_sentence_english": "The system was corrupt.", + "pos": "adjective", + "word_frequency": 3176 + }, + { + "word": "crema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream", + "example_sentence_native": "Me gusta el café con crema.", + "example_sentence_english": "I like coffee with cream.", + "pos": "noun", + "word_frequency": 3177 + }, + { + "word": "debilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakness", + "example_sentence_native": "Su mayor debilidad es la impaciencia.", + "example_sentence_english": "His greatest weakness is impatience.", + "pos": "noun", + "word_frequency": 3178 + }, + { + "word": "denunciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to denounce", + "example_sentence_native": "Decidió denunciar el crimen.", + "example_sentence_english": "He decided to report the crime.", + "pos": "verb", + "word_frequency": 3179 + }, + { + "word": "detención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrest", + "example_sentence_native": "La detención se realizó sin incidentes.", + "example_sentence_english": "The arrest was made without incident.", + "pos": "noun", + "word_frequency": 3180 + }, + { + "word": "déficit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deficit", + "example_sentence_native": "El país tiene un gran déficit comercial.", + "example_sentence_english": "The country has a large trade deficit.", + "pos": "noun", + "word_frequency": 3182 + }, + { + "word": "eficiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficient", + "example_sentence_native": "Es un sistema muy eficiente.", + "example_sentence_english": "It's a very efficient system.", + "pos": "adjective", + "word_frequency": 3183 + }, + { + "word": "entusiasmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiasm", + "example_sentence_native": "Mostró mucho entusiasmo por el proyecto.", + "example_sentence_english": "He showed a lot of enthusiasm for the project.", + "pos": "noun", + "word_frequency": 3184 + }, + { + "word": "esperado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expected", + "example_sentence_native": "El resultado fue el esperado.", + "example_sentence_english": "The result was the expected one.", + "pos": "adjective", + "word_frequency": 3185 + }, + { + "word": "estúpido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupid", + "example_sentence_native": "Fue una idea estúpida.", + "example_sentence_english": "It was a stupid idea.", + "pos": "adjective", + "word_frequency": 3186 + }, + { + "word": "etiqueta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "label", + "example_sentence_native": "Lee la etiqueta antes de usarlo.", + "example_sentence_english": "Read the label before using it.", + "pos": "noun", + "word_frequency": 3187 + }, + { + "word": "fa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "F (musical note)", + "example_sentence_native": "La nota es un fa.", + "example_sentence_english": "The note is an F.", + "pos": "noun", + "word_frequency": 3188 + }, + { + "word": "filipina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Filipino", + "example_sentence_native": "Ella es de nacionalidad filipina.", + "example_sentence_english": "She is of Filipino nationality.", + "pos": "adjective", + "word_frequency": 3189 + }, + { + "word": "fuertemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strongly", + "example_sentence_native": "La puerta estaba fuertemente cerrada.", + "example_sentence_english": "The door was strongly closed.", + "pos": "adverb", + "word_frequency": 3192 + }, + { + "word": "geografía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geography", + "example_sentence_native": "Estudiamos geografía en la escuela.", + "example_sentence_english": "We study geography in school.", + "pos": "noun", + "word_frequency": 3193 + }, + { + "word": "golfo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gulf", + "example_sentence_native": "El Golfo de México es muy grande.", + "example_sentence_english": "The Gulf of Mexico is very large.", + "pos": "noun", + "word_frequency": 3194 + }, + { + "word": "historial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record", + "example_sentence_native": "Revisa tu historial de navegación.", + "example_sentence_english": "Check your browsing history.", + "pos": "noun", + "word_frequency": 3196 + }, + { + "word": "ingles", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "English", + "example_sentence_native": "Habla con acento ingles.", + "example_sentence_english": "He speaks with an English accent.", + "pos": "adjective", + "word_frequency": 3197 + }, + { + "word": "intenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intense", + "example_sentence_native": "El calor era muy intenso.", + "example_sentence_english": "The heat was very intense.", + "pos": "adjective", + "word_frequency": 3198 + }, + { + "word": "jamas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "never", + "example_sentence_native": "Jamas lo olvidaré.", + "example_sentence_english": "I will never forget it.", + "pos": "adverb", + "word_frequency": 3199 + }, + { + "word": "justamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precisely;exactly;justly", + "example_sentence_native": "Llegó justamente a tiempo para la reunión.", + "example_sentence_english": "He arrived precisely on time for the meeting.", + "pos": "adverb", + "word_frequency": 3202 + }, + { + "word": "líquido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liquid", + "example_sentence_native": "El agua es un estado líquido.", + "example_sentence_english": "Water is a liquid state.", + "pos": "adjective", + "word_frequency": 3203 + }, + { + "word": "mantenerse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stay;to keep oneself", + "example_sentence_native": "Es importante mantenerse hidratado.", + "example_sentence_english": "It's important to stay hydrated.", + "pos": "verb", + "word_frequency": 3204 + }, + { + "word": "medir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to measure", + "example_sentence_native": "Necesito medir la distancia entre los dos puntos.", + "example_sentence_english": "I need to measure the distance between the two points.", + "pos": "verb", + "word_frequency": 3205 + }, + { + "word": "militante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militant;activist", + "example_sentence_native": "Es un militante activo en el partido político.", + "example_sentence_english": "He is an active militant in the political party.", + "pos": "noun", + "word_frequency": 3206 + }, + { + "word": "mineral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mineral", + "example_sentence_native": "El hierro es un mineral esencial para el cuerpo.", + "example_sentence_english": "Iron is an essential mineral for the body.", + "pos": "noun", + "word_frequency": 3207 + }, + { + "word": "mito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myth", + "example_sentence_native": "Es un mito que los gatos siempre caen de pie.", + "example_sentence_english": "It's a myth that cats always land on their feet.", + "pos": "noun", + "word_frequency": 3209 + }, + { + "word": "monto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amount;sum", + "example_sentence_native": "El monto total a pagar es de cien euros.", + "example_sentence_english": "The total amount to pay is one hundred euros.", + "pos": "noun", + "word_frequency": 3210 + }, + { + "word": "mortal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortal;deadly", + "example_sentence_native": "Todos los seres humanos son mortales.", + "example_sentence_english": "All human beings are mortal.", + "pos": "adjective", + "word_frequency": 3211 + }, + { + "word": "municipalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipality;city hall", + "example_sentence_native": "La municipalidad aprobó el nuevo proyecto.", + "example_sentence_english": "The municipality approved the new project.", + "pos": "noun", + "word_frequency": 3212 + }, + { + "word": "pasaporte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passport", + "example_sentence_native": "Necesito mi pasaporte para viajar al extranjero.", + "example_sentence_english": "I need my passport to travel abroad.", + "pos": "noun", + "word_frequency": 3214 + }, + { + "word": "pega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "job (informal;LatAm);glue (Spain)", + "example_sentence_native": "Conseguí una buena pega en esa empresa.", + "example_sentence_english": "I got a good job at that company.", + "pos": "noun", + "word_frequency": 3215 + }, + { + "word": "proveedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplier;provider", + "example_sentence_native": "Necesitamos encontrar un nuevo proveedor de materiales.", + "example_sentence_english": "We need to find a new supplier of materials.", + "pos": "noun", + "word_frequency": 3216 + }, + { + "word": "pánico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panic", + "example_sentence_native": "Sintió pánico al ver la araña.", + "example_sentence_english": "He felt panic when he saw the spider.", + "pos": "noun", + "word_frequency": 3217 + }, + { + "word": "rebelde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebel", + "example_sentence_native": "El joven era un rebelde sin causa.", + "example_sentence_english": "The young man was a rebel without a cause.", + "pos": "noun", + "word_frequency": 3218 + }, + { + "word": "refugiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee", + "example_sentence_native": "Muchos refugiados buscan asilo en otros países.", + "example_sentence_english": "Many refugees seek asylum in other countries.", + "pos": "noun", + "word_frequency": 3219 + }, + { + "word": "respaldo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support;backing;backrest", + "example_sentence_native": "Necesitamos el respaldo de la comunidad para este proyecto.", + "example_sentence_english": "We need the community's support for this project.", + "pos": "noun", + "word_frequency": 3220 + }, + { + "word": "romano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Roman", + "example_sentence_native": "El Imperio Romano fue muy poderoso.", + "example_sentence_english": "The Roman Empire was very powerful.", + "pos": "adjective", + "word_frequency": 3221 + }, + { + "word": "saludable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "healthy", + "example_sentence_native": "Comer frutas y verduras es muy saludable.", + "example_sentence_english": "Eating fruits and vegetables is very healthy.", + "pos": "adjective", + "word_frequency": 3222 + }, + { + "word": "saque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serve (sports);withdrawal (money)", + "example_sentence_native": "El tenista hizo un saque perfecto.", + "example_sentence_english": "The tennis player made a perfect serve.", + "pos": "noun", + "word_frequency": 3223 + }, + { + "word": "tuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tweet", + "example_sentence_native": "Publicó un tuit sobre las últimas noticias.", + "example_sentence_english": "He posted a tweet about the latest news.", + "pos": "noun", + "word_frequency": 3224 + }, + { + "word": "aburrido", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boring;bored", + "example_sentence_native": "La película fue muy aburrida.", + "example_sentence_english": "The movie was very boring.", + "pos": "adjective", + "word_frequency": 3226 + }, + { + "word": "adaptación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adaptation", + "example_sentence_native": "La adaptación al nuevo clima fue difícil.", + "example_sentence_english": "The adaptation to the new climate was difficult.", + "pos": "noun", + "word_frequency": 3227 + }, + { + "word": "ajuste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjustment;fit", + "example_sentence_native": "Necesitamos hacer un ajuste en el presupuesto.", + "example_sentence_english": "We need to make an adjustment to the budget.", + "pos": "noun", + "word_frequency": 3228 + }, + { + "word": "ama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mistress;owner (female)", + "example_sentence_native": "El ama de casa limpió la cocina.", + "example_sentence_english": "The housewife cleaned the kitchen.", + "pos": "noun", + "word_frequency": 3230 + }, + { + "word": "anime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anime", + "example_sentence_native": "Le encanta ver anime japonés.", + "example_sentence_english": "He loves watching Japanese anime.", + "pos": "noun", + "word_frequency": 3231 + }, + { + "word": "asesor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advisor;consultant", + "example_sentence_native": "Contratamos a un asesor financiero.", + "example_sentence_english": "We hired a financial advisor.", + "pos": "noun", + "word_frequency": 3232 + }, + { + "word": "atentado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attack;assassination attempt", + "example_sentence_native": "Hubo un atentado terrorista en la capital.", + "example_sentence_english": "There was a terrorist attack in the capital.", + "pos": "noun", + "word_frequency": 3234 + }, + { + "word": "automáticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automatically", + "example_sentence_native": "La puerta se cierra automáticamente.", + "example_sentence_english": "The door closes automatically.", + "pos": "adverb", + "word_frequency": 3235 + }, + { + "word": "bebida", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "drink;beverage", + "example_sentence_native": "Quiero una bebida fría, por favor.", + "example_sentence_english": "I want a cold drink, please.", + "pos": "noun", + "word_frequency": 3236 + }, + { + "word": "campus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "campus", + "example_sentence_native": "El campus universitario es muy grande.", + "example_sentence_english": "The university campus is very large.", + "pos": "noun", + "word_frequency": 3238 + }, + { + "word": "caridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charity;kindness", + "example_sentence_native": "La organización vive de la caridad de la gente.", + "example_sentence_english": "The organization lives on people's charity.", + "pos": "noun", + "word_frequency": 3239 + }, + { + "word": "conservador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservative", + "example_sentence_native": "Es una persona muy conservadora en sus ideas.", + "example_sentence_english": "He is a very conservative person in his ideas.", + "pos": "adjective", + "word_frequency": 3240 + }, + { + "word": "contratar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hire;to contract", + "example_sentence_native": "La empresa va a contratar a nuevos empleados.", + "example_sentence_english": "The company is going to hire new employees.", + "pos": "verb", + "word_frequency": 3241 + }, + { + "word": "coraje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courage;bravery", + "example_sentence_native": "Tuvo el coraje de decir la verdad.", + "example_sentence_english": "He had the courage to tell the truth.", + "pos": "noun", + "word_frequency": 3242 + }, + { + "word": "cuerda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rope;string", + "example_sentence_native": "Necesitamos una cuerda larga para atar esto.", + "example_sentence_english": "We need a long rope to tie this.", + "pos": "noun", + "word_frequency": 3243 + }, + { + "word": "cálculo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calculation;calculus", + "example_sentence_native": "El cálculo de los impuestos es complicado.", + "example_sentence_english": "The calculation of taxes is complicated.", + "pos": "noun", + "word_frequency": 3244 + }, + { + "word": "durar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to last", + "example_sentence_native": "La película dura dos horas.", + "example_sentence_english": "The movie lasts two hours.", + "pos": "verb", + "word_frequency": 3245 + }, + { + "word": "empresarial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business;entrepreneurial", + "example_sentence_native": "Tiene mucha experiencia en el sector empresarial.", + "example_sentence_english": "He has a lot of experience in the business sector.", + "pos": "adjective", + "word_frequency": 3246 + }, + { + "word": "entretenimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entertainment", + "example_sentence_native": "Buscamos nuevas formas de entretenimiento.", + "example_sentence_english": "We are looking for new forms of entertainment.", + "pos": "noun", + "word_frequency": 3247 + }, + { + "word": "espacial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spatial;space (adj.)", + "example_sentence_native": "La exploración espacial es fascinante.", + "example_sentence_english": "Space exploration is fascinating.", + "pos": "adjective", + "word_frequency": 3248 + }, + { + "word": "esquema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scheme;outline;diagram", + "example_sentence_native": "Presentó un esquema detallado de su plan.", + "example_sentence_english": "He presented a detailed outline of his plan.", + "pos": "noun", + "word_frequency": 3249 + }, + { + "word": "estética", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aesthetics", + "example_sentence_native": "La estética del edificio es impresionante.", + "example_sentence_english": "The aesthetics of the building are impressive.", + "pos": "noun", + "word_frequency": 3250 + }, + { + "word": "fallecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pass away;to die (formal)", + "example_sentence_native": "Su abuelo falleció el año pasado.", + "example_sentence_english": "His grandfather passed away last year.", + "pos": "verb", + "word_frequency": 3251 + }, + { + "word": "financiamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financing;funding", + "example_sentence_native": "Necesitamos financiamiento para el proyecto.", + "example_sentence_english": "We need financing for the project.", + "pos": "noun", + "word_frequency": 3252 + }, + { + "word": "free", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free (of charge)", + "example_sentence_native": "La entrada al museo es free los domingos.", + "example_sentence_english": "Admission to the museum is free on Sundays.", + "pos": "adjective", + "word_frequency": 3253 + }, + { + "word": "gama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "range;spectrum", + "example_sentence_native": "Ofrecen una amplia gama de productos.", + "example_sentence_english": "They offer a wide range of products.", + "pos": "noun", + "word_frequency": 3254 + }, + { + "word": "gastar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to spend (money);to wear out", + "example_sentence_native": "No me gusta gastar mucho dinero en ropa.", + "example_sentence_english": "I don't like to spend a lot of money on clothes.", + "pos": "verb", + "word_frequency": 3255 + }, + { + "word": "horno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oven", + "example_sentence_native": "El pan está en el horno.", + "example_sentence_english": "The bread is in the oven.", + "pos": "noun", + "word_frequency": 3257 + }, + { + "word": "horror", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horror", + "example_sentence_native": "La película de horror me dio mucho miedo.", + "example_sentence_english": "The horror movie scared me a lot.", + "pos": "noun", + "word_frequency": 3258 + }, + { + "word": "inauguración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inauguration;opening", + "example_sentence_native": "La inauguración del nuevo edificio será el viernes.", + "example_sentence_english": "The inauguration of the new building will be on Friday.", + "pos": "noun", + "word_frequency": 3259 + }, + { + "word": "inclusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusion", + "example_sentence_native": "La inclusión social es muy importante.", + "example_sentence_english": "Social inclusion is very important.", + "pos": "noun", + "word_frequency": 3260 + }, + { + "word": "inevitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inevitable", + "example_sentence_native": "El cambio es inevitable.", + "example_sentence_english": "Change is inevitable.", + "pos": "adjective", + "word_frequency": 3261 + }, + { + "word": "inseguridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insecurity;unsafety", + "example_sentence_native": "Siente mucha inseguridad sobre su futuro.", + "example_sentence_english": "He feels a lot of insecurity about his future.", + "pos": "noun", + "word_frequency": 3262 + }, + { + "word": "invitar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to invite", + "example_sentence_native": "Te quiero invitar a mi fiesta.", + "example_sentence_english": "I want to invite you to my party.", + "pos": "verb", + "word_frequency": 3263 + }, + { + "word": "justificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to justify", + "example_sentence_native": "No hay nada que justifique su comportamiento.", + "example_sentence_english": "There is nothing that justifies his behavior.", + "pos": "verb", + "word_frequency": 3264 + }, + { + "word": "legalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legally", + "example_sentence_native": "Es legalmente imposible hacer eso.", + "example_sentence_english": "It is legally impossible to do that.", + "pos": "adverb", + "word_frequency": 3265 + }, + { + "word": "libra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pound (weight);Libra (zodiac)", + "example_sentence_native": "Compré una libra de manzanas.", + "example_sentence_english": "I bought a pound of apples.", + "pos": "noun", + "word_frequency": 3266 + }, + { + "word": "maravilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonder;marvel", + "example_sentence_native": "La Gran Muralla es una maravilla del mundo.", + "example_sentence_english": "The Great Wall is a wonder of the world.", + "pos": "noun", + "word_frequency": 3267 + }, + { + "word": "marihuana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marijuana", + "example_sentence_native": "La legalización de la marihuana es un tema de debate.", + "example_sentence_english": "The legalization of marijuana is a topic of debate.", + "pos": "noun", + "word_frequency": 3268 + }, + { + "word": "masivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massive", + "example_sentence_native": "Hubo una protesta masiva en la ciudad.", + "example_sentence_english": "There was a massive protest in the city.", + "pos": "adjective", + "word_frequency": 3269 + }, + { + "word": "miel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "honey", + "example_sentence_native": "Me gusta el té con miel.", + "example_sentence_english": "I like tea with honey.", + "pos": "noun", + "word_frequency": 3270 + }, + { + "word": "naturalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "naturally;of course", + "example_sentence_native": "Naturalmente, aceptamos su oferta.", + "example_sentence_english": "Naturally, we accept your offer.", + "pos": "adverb", + "word_frequency": 3271 + }, + { + "word": "notar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notice;to note", + "example_sentence_native": "No noté que habías cambiado de peinado.", + "example_sentence_english": "I didn't notice you had changed your hairstyle.", + "pos": "verb", + "word_frequency": 3273 + }, + { + "word": "piano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piano", + "example_sentence_native": "Toca el piano muy bien.", + "example_sentence_english": "He plays the piano very well.", + "pos": "noun", + "word_frequency": 3274 + }, + { + "word": "pinche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "damn;lousy (Mexico;Central America slang)", + "example_sentence_native": "¡Qué pinche tráfico!", + "example_sentence_english": "What damn traffic!", + "pos": "adjective", + "word_frequency": 3275 + }, + { + "word": "preciso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precise;exact;necessary", + "example_sentence_native": "Necesitamos una respuesta precisa.", + "example_sentence_english": "We need a precise answer.", + "pos": "adjective", + "word_frequency": 3276 + }, + { + "word": "retrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portrait", + "example_sentence_native": "El artista pintó un hermoso retrato.", + "example_sentence_english": "The artist painted a beautiful portrait.", + "pos": "noun", + "word_frequency": 3277 + }, + { + "word": "sabiduría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wisdom", + "example_sentence_native": "La sabiduría viene con la experiencia.", + "example_sentence_english": "Wisdom comes with experience.", + "pos": "noun", + "word_frequency": 3278 + }, + { + "word": "suceso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event", + "example_sentence_native": "El suceso inesperado cambió nuestros planes.", + "example_sentence_english": "The unexpected event changed our plans.", + "pos": "noun", + "word_frequency": 3282 + }, + { + "word": "tarifa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rate", + "example_sentence_native": "La tarifa del autobús ha subido.", + "example_sentence_english": "The bus fare has increased.", + "pos": "noun", + "word_frequency": 3283 + }, + { + "word": "traición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "betrayal", + "example_sentence_native": "La traición de su amigo le dolió mucho.", + "example_sentence_english": "His friend's betrayal hurt him deeply.", + "pos": "noun", + "word_frequency": 3284 + }, + { + "word": "trama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plot", + "example_sentence_native": "La trama de la película era muy compleja.", + "example_sentence_english": "The movie's plot was very complex.", + "pos": "noun", + "word_frequency": 3285 + }, + { + "word": "usado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "used", + "example_sentence_native": "Compré un coche usado en buen estado.", + "example_sentence_english": "I bought a used car in good condition.", + "pos": "adjective", + "word_frequency": 3286 + }, + { + "word": "voluntario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voluntary", + "example_sentence_native": "Su participación fue completamente voluntaria.", + "example_sentence_english": "His participation was completely voluntary.", + "pos": "adjective", + "word_frequency": 3289 + }, + { + "word": "adquisición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquisition", + "example_sentence_native": "La empresa anunció una nueva adquisición.", + "example_sentence_english": "The company announced a new acquisition.", + "pos": "noun", + "word_frequency": 3290 + }, + { + "word": "almuerzo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lunch", + "example_sentence_native": "Vamos a comer el almuerzo a la una.", + "example_sentence_english": "We are going to eat lunch at one o'clock.", + "pos": "noun", + "word_frequency": 3293 + }, + { + "word": "antigüedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiquity", + "example_sentence_native": "El museo exhibe objetos de gran antigüedad.", + "example_sentence_english": "The museum exhibits objects of great antiquity.", + "pos": "noun", + "word_frequency": 3294 + }, + { + "word": "balance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balance", + "example_sentence_native": "Es importante mantener un balance entre trabajo y vida personal.", + "example_sentence_english": "It's important to maintain a balance between work and personal life.", + "pos": "noun", + "word_frequency": 3295 + }, + { + "word": "beca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scholarship", + "example_sentence_native": "Obtuvo una beca para estudiar en el extranjero.", + "example_sentence_english": "She obtained a scholarship to study abroad.", + "pos": "noun", + "word_frequency": 3296 + }, + { + "word": "bombero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "firefighter", + "example_sentence_native": "El bombero rescató al gato del árbol.", + "example_sentence_english": "The firefighter rescued the cat from the tree.", + "pos": "noun", + "word_frequency": 3297 + }, + { + "word": "canaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canary", + "example_sentence_native": "Mi abuela tiene una canaria que canta muy bonito.", + "example_sentence_english": "My grandmother has a canary that sings very beautifully.", + "pos": "noun", + "word_frequency": 3298 + }, + { + "word": "casarse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get married", + "example_sentence_native": "Ellos van a casarse el próximo año.", + "example_sentence_english": "They are going to get married next year.", + "pos": "verb", + "word_frequency": 3299 + }, + { + "word": "citar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cite", + "example_sentence_native": "Debes citar tus fuentes en el ensayo.", + "example_sentence_english": "You must cite your sources in the essay.", + "pos": "verb", + "word_frequency": 3300 + }, + { + "word": "considerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerable", + "example_sentence_native": "Hubo un aumento considerable en las ventas.", + "example_sentence_english": "There was a considerable increase in sales.", + "pos": "adjective", + "word_frequency": 3301 + }, + { + "word": "convento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convent", + "example_sentence_native": "El antiguo convento ahora es un hotel.", + "example_sentence_english": "The old convent is now a hotel.", + "pos": "noun", + "word_frequency": 3302 + }, + { + "word": "coro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "choir", + "example_sentence_native": "Ella canta en el coro de la iglesia.", + "example_sentence_english": "She sings in the church choir.", + "pos": "noun", + "word_frequency": 3303 + }, + { + "word": "decena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dozen", + "example_sentence_native": "Compró una decena de huevos.", + "example_sentence_english": "He bought a dozen eggs.", + "pos": "noun", + "word_frequency": 3305 + }, + { + "word": "desigualdad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inequality", + "example_sentence_native": "La desigualdad social es un problema global.", + "example_sentence_english": "Social inequality is a global problem.", + "pos": "noun", + "word_frequency": 3306 + }, + { + "word": "dificil", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "difficult", + "example_sentence_native": "Este examen es muy difícil.", + "example_sentence_english": "This exam is very difficult.", + "pos": "adjective", + "word_frequency": 3307 + }, + { + "word": "disputa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute", + "example_sentence_native": "Tuvieron una disputa sobre el dinero.", + "example_sentence_english": "They had a dispute over the money.", + "pos": "noun", + "word_frequency": 3308 + }, + { + "word": "espectacular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spectacular", + "example_sentence_native": "La vista desde la montaña era espectacular.", + "example_sentence_english": "The view from the mountain was spectacular.", + "pos": "adjective", + "word_frequency": 3309 + }, + { + "word": "evidentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evidently", + "example_sentence_native": "Evidentemente, no entendió las instrucciones.", + "example_sentence_english": "Evidently, he didn't understand the instructions.", + "pos": "adverb", + "word_frequency": 3310 + }, + { + "word": "hipótesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypothesis", + "example_sentence_native": "La hipótesis fue confirmada por los experimentos.", + "example_sentence_english": "The hypothesis was confirmed by the experiments.", + "pos": "noun", + "word_frequency": 3312 + }, + { + "word": "humedad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humidity", + "example_sentence_native": "La humedad en el aire era muy alta hoy.", + "example_sentence_english": "The humidity in the air was very high today.", + "pos": "noun", + "word_frequency": 3313 + }, + { + "word": "ida", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "departure", + "example_sentence_native": "El billete es solo de ida.", + "example_sentence_english": "The ticket is one-way.", + "pos": "noun", + "word_frequency": 3314 + }, + { + "word": "inicialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initially", + "example_sentence_native": "Inicialmente, el plan era diferente.", + "example_sentence_english": "Initially, the plan was different.", + "pos": "adverb", + "word_frequency": 3315 + }, + { + "word": "integridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrity", + "example_sentence_native": "Es una persona de gran integridad moral.", + "example_sentence_english": "He is a person of great moral integrity.", + "pos": "noun", + "word_frequency": 3316 + }, + { + "word": "lamentablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunately", + "example_sentence_native": "Lamentablemente, no pudimos asistir al evento.", + "example_sentence_english": "Unfortunately, we couldn't attend the event.", + "pos": "adverb", + "word_frequency": 3318 + }, + { + "word": "lealtad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loyalty", + "example_sentence_native": "La lealtad es una cualidad muy valorada.", + "example_sentence_english": "Loyalty is a highly valued quality.", + "pos": "noun", + "word_frequency": 3319 + }, + { + "word": "lesión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injury", + "example_sentence_native": "Sufrió una lesión en la rodilla durante el partido.", + "example_sentence_english": "He suffered a knee injury during the match.", + "pos": "noun", + "word_frequency": 3320 + }, + { + "word": "libremente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freely", + "example_sentence_native": "Puedes expresarte libremente en esta clase.", + "example_sentence_english": "You can express yourself freely in this class.", + "pos": "adverb", + "word_frequency": 3321 + }, + { + "word": "ligeramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slightly", + "example_sentence_native": "La temperatura bajó ligeramente esta noche.", + "example_sentence_english": "The temperature dropped slightly tonight.", + "pos": "adverb", + "word_frequency": 3322 + }, + { + "word": "mentir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lie", + "example_sentence_native": "No debes mentir a tus padres.", + "example_sentence_english": "You should not lie to your parents.", + "pos": "verb", + "word_frequency": 3324 + }, + { + "word": "modificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modification", + "example_sentence_native": "Se requiere una modificación en el plan original.", + "example_sentence_english": "A modification to the original plan is required.", + "pos": "noun", + "word_frequency": 3326 + }, + { + "word": "modificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to modify", + "example_sentence_native": "Necesitamos modificar el horario de la reunión.", + "example_sentence_english": "We need to modify the meeting schedule.", + "pos": "verb", + "word_frequency": 3327 + }, + { + "word": "monarquía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarchy", + "example_sentence_native": "España es una monarquía parlamentaria.", + "example_sentence_english": "Spain is a parliamentary monarchy.", + "pos": "noun", + "word_frequency": 3328 + }, + { + "word": "pilar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pillar", + "example_sentence_native": "El pilar sostiene el techo del edificio.", + "example_sentence_english": "The pillar supports the building's roof.", + "pos": "noun", + "word_frequency": 3330 + }, + { + "word": "posta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "post office;relay", + "example_sentence_native": "Fui a la posta para enviar una carta.", + "example_sentence_english": "I went to the post office to send a letter.", + "pos": "noun", + "word_frequency": 3331 + }, + { + "word": "seminario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seminar", + "example_sentence_native": "Asistí a un seminario sobre inteligencia artificial.", + "example_sentence_english": "I attended a seminar on artificial intelligence.", + "pos": "noun", + "word_frequency": 3332 + }, + { + "word": "señorita", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "young lady;Miss", + "example_sentence_native": "La señorita nos atendió muy amablemente.", + "example_sentence_english": "The young lady served us very kindly.", + "pos": "noun", + "word_frequency": 3333 + }, + { + "word": "suministro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply", + "example_sentence_native": "El suministro de agua fue interrumpido.", + "example_sentence_english": "The water supply was interrupted.", + "pos": "noun", + "word_frequency": 3334 + }, + { + "word": "tejido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabric;tissue", + "example_sentence_native": "Este vestido está hecho de un tejido suave.", + "example_sentence_english": "This dress is made of a soft fabric.", + "pos": "noun", + "word_frequency": 3335 + }, + { + "word": "test", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "test", + "example_sentence_native": "Mañana tenemos un test de matemáticas.", + "example_sentence_english": "Tomorrow we have a math test.", + "pos": "noun", + "word_frequency": 3336 + }, + { + "word": "abandono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abandonment;neglect", + "example_sentence_native": "El abandono de mascotas es un problema grave.", + "example_sentence_english": "Pet abandonment is a serious problem.", + "pos": "noun", + "word_frequency": 3338 + }, + { + "word": "acompañar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to accompany", + "example_sentence_native": "¿Me puedes acompañar al supermercado?", + "example_sentence_english": "Can you accompany me to the supermarket?", + "pos": "verb", + "word_frequency": 3339 + }, + { + "word": "acoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassment;bullying", + "example_sentence_native": "El acoso escolar es inaceptable.", + "example_sentence_english": "School bullying is unacceptable.", + "pos": "noun", + "word_frequency": 3340 + }, + { + "word": "angel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angel", + "example_sentence_native": "Los niños creen en los ángeles.", + "example_sentence_english": "Children believe in angels.", + "pos": "noun", + "word_frequency": 3342 + }, + { + "word": "aportar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contribute;to provide", + "example_sentence_native": "Todos debemos aportar ideas al proyecto.", + "example_sentence_english": "We all must contribute ideas to the project.", + "pos": "verb", + "word_frequency": 3343 + }, + { + "word": "arreglo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrangement;repair", + "example_sentence_native": "Necesito un arreglo para mi coche.", + "example_sentence_english": "I need a repair for my car.", + "pos": "noun", + "word_frequency": 3344 + }, + { + "word": "autopista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "highway;motorway", + "example_sentence_native": "La autopista estaba muy concurrida.", + "example_sentence_english": "The highway was very busy.", + "pos": "noun", + "word_frequency": 3346 + }, + { + "word": "azar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chance;fate", + "example_sentence_native": "Lo encontramos por puro azar.", + "example_sentence_english": "We found it purely by chance.", + "pos": "noun", + "word_frequency": 3347 + }, + { + "word": "choque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crash;shock", + "example_sentence_native": "Hubo un choque de coches en la carretera.", + "example_sentence_english": "There was a car crash on the road.", + "pos": "noun", + "word_frequency": 3349 + }, + { + "word": "circo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circus", + "example_sentence_native": "Fuimos al circo el fin de semana.", + "example_sentence_english": "We went to the circus on the weekend.", + "pos": "noun", + "word_frequency": 3350 + }, + { + "word": "consenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consensus", + "example_sentence_native": "Llegaron a un consenso después de una larga discusión.", + "example_sentence_english": "They reached a consensus after a long discussion.", + "pos": "noun", + "word_frequency": 3352 + }, + { + "word": "consideración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration", + "example_sentence_native": "Tomaremos tu propuesta en consideración.", + "example_sentence_english": "We will take your proposal into consideration.", + "pos": "noun", + "word_frequency": 3353 + }, + { + "word": "continuidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuity", + "example_sentence_native": "Es importante mantener la continuidad del servicio.", + "example_sentence_english": "It is important to maintain service continuity.", + "pos": "noun", + "word_frequency": 3354 + }, + { + "word": "cueva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cave", + "example_sentence_native": "Exploramos una cueva en las montañas.", + "example_sentence_english": "We explored a cave in the mountains.", + "pos": "noun", + "word_frequency": 3355 + }, + { + "word": "defecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defect;flaw", + "example_sentence_native": "El producto tiene un pequeño defecto de fabricación.", + "example_sentence_english": "The product has a small manufacturing defect.", + "pos": "noun", + "word_frequency": 3356 + }, + { + "word": "eficiencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficiency", + "example_sentence_native": "Buscamos mejorar la eficiencia de nuestros procesos.", + "example_sentence_english": "We seek to improve the efficiency of our processes.", + "pos": "noun", + "word_frequency": 3357 + }, + { + "word": "exclusivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive", + "example_sentence_native": "Este club es muy exclusivo.", + "example_sentence_english": "This club is very exclusive.", + "pos": "adjective", + "word_frequency": 3358 + }, + { + "word": "hermandad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brotherhood;fraternity", + "example_sentence_native": "La hermandad entre ellos era muy fuerte.", + "example_sentence_english": "The brotherhood between them was very strong.", + "pos": "noun", + "word_frequency": 3359 + }, + { + "word": "jurisdicción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jurisdiction", + "example_sentence_native": "Este caso está fuera de nuestra jurisdicción.", + "example_sentence_english": "This case is outside our jurisdiction.", + "pos": "noun", + "word_frequency": 3364 + }, + { + "word": "majestad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majesty", + "example_sentence_native": "Su Majestad el Rey visitará la ciudad.", + "example_sentence_english": "His Majesty the King will visit the city.", + "pos": "noun", + "word_frequency": 3366 + }, + { + "word": "manzana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apple", + "example_sentence_native": "Me gusta comer una manzana cada día.", + "example_sentence_english": "I like to eat an apple every day.", + "pos": "noun", + "word_frequency": 3367 + }, + { + "word": "musulmán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Muslim", + "example_sentence_native": "La comunidad musulmana celebra el Ramadán.", + "example_sentence_english": "The Muslim community celebrates Ramadan.", + "pos": "adjective", + "word_frequency": 3370 + }, + { + "word": "natal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "native;birth", + "example_sentence_native": "Mi ciudad natal es Madrid.", + "example_sentence_english": "My native city is Madrid.", + "pos": "adjective", + "word_frequency": 3371 + }, + { + "word": "negociar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to negotiate", + "example_sentence_native": "Necesitamos negociar un buen precio.", + "example_sentence_english": "We need to negotiate a good price.", + "pos": "verb", + "word_frequency": 3372 + }, + { + "word": "ordenador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "computer", + "example_sentence_native": "Estoy trabajando en mi ordenador.", + "example_sentence_english": "I am working on my computer.", + "pos": "noun", + "word_frequency": 3373 + }, + { + "word": "pasa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raisin", + "example_sentence_native": "Las pasas son uvas secas.", + "example_sentence_english": "Raisins are dried grapes.", + "pos": "noun", + "word_frequency": 3374 + }, + { + "word": "perfección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfection", + "example_sentence_native": "Busca la perfección en todo lo que hace.", + "example_sentence_english": "He seeks perfection in everything he does.", + "pos": "noun", + "word_frequency": 3375 + }, + { + "word": "piscina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming pool", + "example_sentence_native": "Vamos a nadar en la piscina.", + "example_sentence_english": "Let's go swimming in the pool.", + "pos": "noun", + "word_frequency": 3376 + }, + { + "word": "precisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precision", + "example_sentence_native": "Trabaja con gran precisión.", + "example_sentence_english": "He works with great precision.", + "pos": "noun", + "word_frequency": 3378 + }, + { + "word": "retirar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to withdraw;to retire;to remove", + "example_sentence_native": "Decidió retirarse del trabajo el año pasado.", + "example_sentence_english": "He decided to retire from work last year.", + "pos": "verb", + "word_frequency": 3379 + }, + { + "word": "rubio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blonde;fair-haired", + "example_sentence_native": "Mi hermana tiene el pelo rubio.", + "example_sentence_english": "My sister has blonde hair.", + "pos": "adjective", + "word_frequency": 3380 + }, + { + "word": "secuestro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kidnapping;hijacking", + "example_sentence_native": "La policía investiga el secuestro del avión.", + "example_sentence_english": "The police are investigating the hijacking of the plane.", + "pos": "noun", + "word_frequency": 3382 + }, + { + "word": "sensibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitivity", + "example_sentence_native": "Tiene una gran sensibilidad artística.", + "example_sentence_english": "He has great artistic sensitivity.", + "pos": "noun", + "word_frequency": 3383 + }, + { + "word": "sexto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sixth", + "example_sentence_native": "Es el sexto día de la semana.", + "example_sentence_english": "It's the sixth day of the week.", + "pos": "adjective", + "word_frequency": 3384 + }, + { + "word": "traslado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer;relocation", + "example_sentence_native": "Su traslado a la nueva oficina será el lunes.", + "example_sentence_english": "His transfer to the new office will be on Monday.", + "pos": "noun", + "word_frequency": 3386 + }, + { + "word": "truco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trick;gimmick", + "example_sentence_native": "Conoce un truco para abrir la botella fácilmente.", + "example_sentence_english": "He knows a trick to open the bottle easily.", + "pos": "noun", + "word_frequency": 3387 + }, + { + "word": "tubo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tube;pipe", + "example_sentence_native": "El agua fluye por el tubo.", + "example_sentence_english": "The water flows through the tube.", + "pos": "noun", + "word_frequency": 3388 + }, + { + "word": "vaca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cow", + "example_sentence_native": "La vaca da leche.", + "example_sentence_english": "The cow gives milk.", + "pos": "noun", + "word_frequency": 3389 + }, + { + "word": "vapor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steam;vapor", + "example_sentence_native": "El agua se convierte en vapor al hervir.", + "example_sentence_english": "Water turns into steam when it boils.", + "pos": "noun", + "word_frequency": 3390 + }, + { + "word": "violento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violent", + "example_sentence_native": "La película era demasiado violenta para los niños.", + "example_sentence_english": "The movie was too violent for the children.", + "pos": "adjective", + "word_frequency": 3391 + }, + { + "word": "administrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "administrator;manager", + "example_sentence_native": "El administrador del edificio resolvió el problema.", + "example_sentence_english": "The building administrator solved the problem.", + "pos": "noun", + "word_frequency": 3392 + }, + { + "word": "afirmación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affirmation;statement", + "example_sentence_native": "Hizo una afirmación audaz sobre el futuro.", + "example_sentence_english": "He made a bold affirmation about the future.", + "pos": "noun", + "word_frequency": 3393 + }, + { + "word": "agresión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggression;assault", + "example_sentence_native": "La agresión fue condenada por la comunidad.", + "example_sentence_english": "The aggression was condemned by the community.", + "pos": "noun", + "word_frequency": 3394 + }, + { + "word": "alba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dawn;daybreak", + "example_sentence_native": "Nos levantamos al alba para ver el amanecer.", + "example_sentence_english": "We got up at dawn to see the sunrise.", + "pos": "noun", + "word_frequency": 3395 + }, + { + "word": "alli", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there", + "example_sentence_native": "Mi casa está allí, al final de la calle.", + "example_sentence_english": "My house is there, at the end of the street.", + "pos": "adverb", + "word_frequency": 3397 + }, + { + "word": "american", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "American", + "example_sentence_native": "Es un coche americano.", + "example_sentence_english": "It's an American car.", + "pos": "adjective", + "word_frequency": 3398 + }, + { + "word": "artificial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artificial", + "example_sentence_native": "La inteligencia artificial está avanzando rápidamente.", + "example_sentence_english": "Artificial intelligence is advancing rapidly.", + "pos": "adjective", + "word_frequency": 3399 + }, + { + "word": "bala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bullet", + "example_sentence_native": "La bala impactó en el objetivo.", + "example_sentence_english": "The bullet hit the target.", + "pos": "noun", + "word_frequency": 3400 + }, + { + "word": "barba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beard", + "example_sentence_native": "Se dejó crecer la barba durante el invierno.", + "example_sentence_english": "He grew his beard during the winter.", + "pos": "noun", + "word_frequency": 3401 + }, + { + "word": "cabrón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bastard;jerk", + "example_sentence_native": "¡Qué cabrón, me robó la cartera!", + "example_sentence_english": "What a jerk, he stole my wallet!", + "pos": "noun", + "word_frequency": 3404 + }, + { + "word": "civilización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civilization", + "example_sentence_native": "La antigua civilización egipcia es fascinante.", + "example_sentence_english": "The ancient Egyptian civilization is fascinating.", + "pos": "noun", + "word_frequency": 3405 + }, + { + "word": "colocar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to place;to put", + "example_sentence_native": "Por favor, coloca los libros en la estantería.", + "example_sentence_english": "Please, place the books on the shelf.", + "pos": "verb", + "word_frequency": 3406 + }, + { + "word": "consejero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advisor;counselor", + "example_sentence_native": "El consejero me ayudó con mis dudas.", + "example_sentence_english": "The advisor helped me with my doubts.", + "pos": "noun", + "word_frequency": 3407 + }, + { + "word": "contraste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrast", + "example_sentence_native": "Hay un fuerte contraste entre el día y la noche.", + "example_sentence_english": "There is a strong contrast between day and night.", + "pos": "noun", + "word_frequency": 3408 + }, + { + "word": "convencer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convince", + "example_sentence_native": "Intenté convencerlo, pero no fue posible.", + "example_sentence_english": "I tried to convince him, but it wasn't possible.", + "pos": "verb", + "word_frequency": 3409 + }, + { + "word": "correctamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "correctly", + "example_sentence_native": "Asegúrate de escribir la dirección correctamente.", + "example_sentence_english": "Make sure to write the address correctly.", + "pos": "adverb", + "word_frequency": 3410 + }, + { + "word": "coste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cost", + "example_sentence_native": "El coste total del proyecto fue muy alto.", + "example_sentence_english": "The total cost of the project was very high.", + "pos": "noun", + "word_frequency": 3411 + }, + { + "word": "cuero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leather", + "example_sentence_native": "Los zapatos son de cuero genuino.", + "example_sentence_english": "The shoes are made of genuine leather.", + "pos": "noun", + "word_frequency": 3412 + }, + { + "word": "devolver", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to return (something)", + "example_sentence_native": "Necesito devolver este libro a la biblioteca.", + "example_sentence_english": "I need to return this book to the library.", + "pos": "verb", + "word_frequency": 3413 + }, + { + "word": "disminución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decrease;reduction", + "example_sentence_native": "Hubo una disminución en las ventas este mes.", + "example_sentence_english": "There was a decrease in sales this month.", + "pos": "noun", + "word_frequency": 3415 + }, + { + "word": "diversión", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fun;entertainment", + "example_sentence_native": "Nos lo pasamos muy bien, fue mucha diversión.", + "example_sentence_english": "We had a great time, it was a lot of fun.", + "pos": "noun", + "word_frequency": 3416 + }, + { + "word": "ejemplar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemplary;model", + "example_sentence_native": "Su conducta fue ejemplar.", + "example_sentence_english": "His conduct was exemplary.", + "pos": "adjective", + "word_frequency": 3417 + }, + { + "word": "escalera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stairs;ladder", + "example_sentence_native": "Subimos por la escalera al segundo piso.", + "example_sentence_english": "We went up the stairs to the second floor.", + "pos": "noun", + "word_frequency": 3418 + }, + { + "word": "escasez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarcity;shortage", + "example_sentence_native": "La escasez de agua es un problema grave.", + "example_sentence_english": "Water scarcity is a serious problem.", + "pos": "noun", + "word_frequency": 3419 + }, + { + "word": "escritorio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "desk", + "example_sentence_native": "Mi ordenador está sobre el escritorio.", + "example_sentence_english": "My computer is on the desk.", + "pos": "noun", + "word_frequency": 3420 + }, + { + "word": "especialista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialist", + "example_sentence_native": "Consultamos a un especialista en el tema.", + "example_sentence_english": "We consulted a specialist on the subject.", + "pos": "noun", + "word_frequency": 3421 + }, + { + "word": "eterno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternal", + "example_sentence_native": "El amor verdadero es eterno.", + "example_sentence_english": "True love is eternal.", + "pos": "adjective", + "word_frequency": 3422 + }, + { + "word": "extender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to extend;to spread", + "example_sentence_native": "Necesitamos extender la fecha límite.", + "example_sentence_english": "We need to extend the deadline.", + "pos": "verb", + "word_frequency": 3423 + }, + { + "word": "extraordinario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extraordinary", + "example_sentence_native": "Fue una experiencia extraordinaria.", + "example_sentence_english": "It was an extraordinary experience.", + "pos": "adjective", + "word_frequency": 3424 + }, + { + "word": "fallecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceased;passed away", + "example_sentence_native": "El hombre fallecido era un conocido artista.", + "example_sentence_english": "The deceased man was a well-known artist.", + "pos": "adjective", + "word_frequency": 3425 + }, + { + "word": "harto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fed up;tired of", + "example_sentence_native": "Estoy harto de esta situación.", + "example_sentence_english": "I am fed up with this situation.", + "pos": "adjective", + "word_frequency": 3427 + }, + { + "word": "implementación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implementation", + "example_sentence_native": "La implementación del nuevo sistema tomará tiempo.", + "example_sentence_english": "The implementation of the new system will take time.", + "pos": "noun", + "word_frequency": 3428 + }, + { + "word": "impunidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impunity", + "example_sentence_native": "La impunidad fomenta la delincuencia.", + "example_sentence_english": "Impunity encourages crime.", + "pos": "noun", + "word_frequency": 3429 + }, + { + "word": "japones", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Japanese (person;language)", + "example_sentence_native": "Habla japonés muy bien.", + "example_sentence_english": "He speaks Japanese very well.", + "pos": "noun", + "word_frequency": 3430 + }, + { + "word": "laguna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lagoon;gap;loophole", + "example_sentence_native": "Nadamos en la laguna.", + "example_sentence_english": "We swam in the lagoon.", + "pos": "noun", + "word_frequency": 3433 + }, + { + "word": "lamentable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regrettable;lamentable", + "example_sentence_native": "Es una situación lamentable.", + "example_sentence_english": "It's a regrettable situation.", + "pos": "adjective", + "word_frequency": 3434 + }, + { + "word": "marqués", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marquis", + "example_sentence_native": "El marqués vivía en un gran castillo.", + "example_sentence_english": "The marquis lived in a large castle.", + "pos": "noun", + "word_frequency": 3436 + }, + { + "word": "novedad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novelty;news;new development", + "example_sentence_native": "¿Qué novedades hay?", + "example_sentence_english": "What's new?", + "pos": "noun", + "word_frequency": 3439 + }, + { + "word": "obligatorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obligatory", + "example_sentence_native": "Es obligatorio llevar casco en la obra.", + "example_sentence_english": "It is obligatory to wear a helmet on the construction site.", + "pos": "adjective", + "word_frequency": 3440 + }, + { + "word": "obstáculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obstacle", + "example_sentence_native": "Superamos todos los obstáculos en nuestro camino.", + "example_sentence_english": "We overcame all the obstacles in our path.", + "pos": "noun", + "word_frequency": 3441 + }, + { + "word": "otorgar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant", + "example_sentence_native": "Le van a otorgar un premio por su trabajo.", + "example_sentence_english": "They are going to grant him an award for his work.", + "pos": "verb", + "word_frequency": 3442 + }, + { + "word": "pelotudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idiot (slang)", + "example_sentence_native": "No seas pelotudo, piensa antes de hablar.", + "example_sentence_english": "Don't be an idiot, think before you speak.", + "pos": "noun", + "word_frequency": 3443 + }, + { + "word": "piedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pity", + "example_sentence_native": "El juez mostró piedad con el acusado.", + "example_sentence_english": "The judge showed pity to the accused.", + "pos": "noun", + "word_frequency": 3444 + }, + { + "word": "prestar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lend", + "example_sentence_native": "¿Me puedes prestar tu bolígrafo?", + "example_sentence_english": "Can you lend me your pen?", + "pos": "verb", + "word_frequency": 3446 + }, + { + "word": "prohibición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prohibition", + "example_sentence_native": "Existe una prohibición de fumar en lugares públicos.", + "example_sentence_english": "There is a smoking prohibition in public places.", + "pos": "noun", + "word_frequency": 3447 + }, + { + "word": "reconstrucción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstruction", + "example_sentence_native": "La reconstrucción de la ciudad llevará años.", + "example_sentence_english": "The reconstruction of the city will take years.", + "pos": "noun", + "word_frequency": 3450 + }, + { + "word": "reunir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gather", + "example_sentence_native": "Nos vamos a reunir mañana para discutir el proyecto.", + "example_sentence_english": "We are going to gather tomorrow to discuss the project.", + "pos": "verb", + "word_frequency": 3451 + }, + { + "word": "rodear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surround", + "example_sentence_native": "La policía rodeó el edificio.", + "example_sentence_english": "The police surrounded the building.", + "pos": "verb", + "word_frequency": 3452 + }, + { + "word": "sed", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirst", + "example_sentence_native": "Tengo mucha sed después de correr.", + "example_sentence_english": "I am very thirsty after running.", + "pos": "noun", + "word_frequency": 3453 + }, + { + "word": "setiembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "September", + "example_sentence_native": "Mi cumpleaños es en setiembre.", + "example_sentence_english": "My birthday is in September.", + "pos": "noun", + "word_frequency": 3454 + }, + { + "word": "significativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significant", + "example_sentence_native": "Fue un cambio significativo en su vida.", + "example_sentence_english": "It was a significant change in his life.", + "pos": "adjective", + "word_frequency": 3455 + }, + { + "word": "sobra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leftover", + "example_sentence_native": "Guarda las sobras para la cena.", + "example_sentence_english": "Save the leftovers for dinner.", + "pos": "noun", + "word_frequency": 3456 + }, + { + "word": "solitario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lonely", + "example_sentence_native": "Se siente solitario desde que se mudó.", + "example_sentence_english": "He feels lonely since he moved.", + "pos": "adjective", + "word_frequency": 3457 + }, + { + "word": "tecnológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technological", + "example_sentence_native": "Estamos viviendo una revolución tecnológica.", + "example_sentence_english": "We are living a technological revolution.", + "pos": "adjective", + "word_frequency": 3458 + }, + { + "word": "tigre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiger", + "example_sentence_native": "El tigre es un animal salvaje.", + "example_sentence_english": "The tiger is a wild animal.", + "pos": "noun", + "word_frequency": 3459 + }, + { + "word": "urgencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urgency", + "example_sentence_native": "Necesitamos resolver esto con urgencia.", + "example_sentence_english": "We need to resolve this with urgency.", + "pos": "noun", + "word_frequency": 3462 + }, + { + "word": "vendedor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seller", + "example_sentence_native": "El vendedor nos ayudó a elegir el producto.", + "example_sentence_english": "The seller helped us choose the product.", + "pos": "noun", + "word_frequency": 3463 + }, + { + "word": "aguantar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to endure", + "example_sentence_native": "No puedo aguantar más este ruido.", + "example_sentence_english": "I can't endure this noise anymore.", + "pos": "verb", + "word_frequency": 3464 + }, + { + "word": "ahorrar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to save", + "example_sentence_native": "Estoy intentando ahorrar para un coche nuevo.", + "example_sentence_english": "I am trying to save for a new car.", + "pos": "verb", + "word_frequency": 3465 + }, + { + "word": "alza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rise", + "example_sentence_native": "Hubo un alza en los precios del combustible.", + "example_sentence_english": "There was a rise in fuel prices.", + "pos": "noun", + "word_frequency": 3466 + }, + { + "word": "borrar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to erase", + "example_sentence_native": "Por favor, borra la pizarra.", + "example_sentence_english": "Please, erase the whiteboard.", + "pos": "verb", + "word_frequency": 3469 + }, + { + "word": "can", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dog", + "example_sentence_native": "El can fiel siempre espera a su amo.", + "example_sentence_english": "The faithful dog always waits for its master.", + "pos": "noun", + "word_frequency": 3471 + }, + { + "word": "cardenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardinal", + "example_sentence_native": "Vimos un cardenal rojo en el jardín.", + "example_sentence_english": "We saw a red cardinal in the garden.", + "pos": "noun", + "word_frequency": 3472 + }, + { + "word": "cima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summit", + "example_sentence_native": "Alcanzamos la cima de la montaña al amanecer.", + "example_sentence_english": "We reached the summit of the mountain at dawn.", + "pos": "noun", + "word_frequency": 3473 + }, + { + "word": "comerciante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merchant", + "example_sentence_native": "El comerciante vendía especias exóticas.", + "example_sentence_english": "The merchant sold exotic spices.", + "pos": "noun", + "word_frequency": 3475 + }, + { + "word": "conservar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conserve", + "example_sentence_native": "Es importante conservar el medio ambiente.", + "example_sentence_english": "It is important to conserve the environment.", + "pos": "verb", + "word_frequency": 3476 + }, + { + "word": "contribución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution", + "example_sentence_native": "Su contribución al proyecto fue invaluable.", + "example_sentence_english": "His contribution to the project was invaluable.", + "pos": "noun", + "word_frequency": 3477 + }, + { + "word": "delgado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin", + "example_sentence_native": "Es una persona alta y delgada.", + "example_sentence_english": "He is a tall and thin person.", + "pos": "adjective", + "word_frequency": 3479 + }, + { + "word": "demonio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demon", + "example_sentence_native": "Se dice que un demonio habita en esa casa abandonada.", + "example_sentence_english": "It is said that a demon lives in that abandoned house.", + "pos": "noun", + "word_frequency": 3480 + }, + { + "word": "denominar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to name;to call;to denominate", + "example_sentence_native": "A este fenómeno se le puede denominar \"efecto mariposa\".", + "example_sentence_english": "This phenomenon can be denominated \"the butterfly effect\".", + "pos": "verb", + "word_frequency": 3481 + }, + { + "word": "descenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "descent;decrease", + "example_sentence_native": "El descenso de la temperatura fue muy rápido.", + "example_sentence_english": "The decrease in temperature was very rapid.", + "pos": "noun", + "word_frequency": 3482 + }, + { + "word": "dictador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictator", + "example_sentence_native": "El país estuvo bajo el control de un dictador durante décadas.", + "example_sentence_english": "The country was under the control of a dictator for decades.", + "pos": "noun", + "word_frequency": 3483 + }, + { + "word": "doctrina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctrine", + "example_sentence_native": "La nueva doctrina económica fue muy controvertida.", + "example_sentence_english": "The new economic doctrine was very controversial.", + "pos": "noun", + "word_frequency": 3484 + }, + { + "word": "eficacia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effectiveness;efficacy", + "example_sentence_native": "La eficacia del nuevo medicamento es sorprendente.", + "example_sentence_english": "The effectiveness of the new medicine is surprising.", + "pos": "noun", + "word_frequency": 3486 + }, + { + "word": "elegante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elegant", + "example_sentence_native": "Ella siempre viste de forma muy elegante.", + "example_sentence_english": "She always dresses very elegantly.", + "pos": "adjective", + "word_frequency": 3487 + }, + { + "word": "escoger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to choose;to select", + "example_sentence_native": "Tienes que escoger el camino correcto.", + "example_sentence_english": "You have to choose the right path.", + "pos": "verb", + "word_frequency": 3488 + }, + { + "word": "estómago", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stomach", + "example_sentence_native": "Me duele el estómago después de comer tanto.", + "example_sentence_english": "My stomach hurts after eating so much.", + "pos": "noun", + "word_frequency": 3489 + }, + { + "word": "expedición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expedition", + "example_sentence_native": "La expedición al Everest fue muy peligrosa.", + "example_sentence_english": "The expedition to Everest was very dangerous.", + "pos": "noun", + "word_frequency": 3490 + }, + { + "word": "explotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explode;to exploit", + "example_sentence_native": "La bomba va a explotar en cinco minutos.", + "example_sentence_english": "The bomb is going to explode in five minutes.", + "pos": "verb", + "word_frequency": 3491 + }, + { + "word": "externo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "external", + "example_sentence_native": "Necesitamos una opinión externa sobre el proyecto.", + "example_sentence_english": "We need an external opinion on the project.", + "pos": "adjective", + "word_frequency": 3492 + }, + { + "word": "fantasma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ghost", + "example_sentence_native": "Dicen que hay un fantasma en el viejo castillo.", + "example_sentence_english": "They say there's a ghost in the old castle.", + "pos": "noun", + "word_frequency": 3493 + }, + { + "word": "harina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flour", + "example_sentence_native": "Necesitamos harina para hacer el pastel.", + "example_sentence_english": "We need flour to make the cake.", + "pos": "noun", + "word_frequency": 3494 + }, + { + "word": "ingresar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enter;to deposit;to admit", + "example_sentence_native": "Tienes que ingresar tus datos para acceder.", + "example_sentence_english": "You have to enter your data to access.", + "pos": "verb", + "word_frequency": 3496 + }, + { + "word": "lavar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wash", + "example_sentence_native": "Necesito lavar la ropa sucia.", + "example_sentence_english": "I need to wash the dirty clothes.", + "pos": "verb", + "word_frequency": 3497 + }, + { + "word": "literario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literary", + "example_sentence_native": "Es un género literario muy interesante.", + "example_sentence_english": "It's a very interesting literary genre.", + "pos": "adjective", + "word_frequency": 3498 + }, + { + "word": "mami", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mommy;mom", + "example_sentence_native": "Mami, ¿puedo ir a jugar?", + "example_sentence_english": "Mommy, can I go play?", + "pos": "noun", + "word_frequency": 3499 + }, + { + "word": "mediodía", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "noon;midday", + "example_sentence_native": "Nos vemos al mediodía en el parque.", + "example_sentence_english": "We'll see each other at noon in the park.", + "pos": "noun", + "word_frequency": 3500 + }, + { + "word": "molesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoying;bothered", + "example_sentence_native": "Su ruido constante es muy molesto.", + "example_sentence_english": "Their constant noise is very annoying.", + "pos": "adjective", + "word_frequency": 3501 + }, + { + "word": "mono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monkey", + "example_sentence_native": "Vimos un mono en el zoológico.", + "example_sentence_english": "We saw a monkey at the zoo.", + "pos": "noun", + "word_frequency": 3502 + }, + { + "word": "norteamericano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North American", + "example_sentence_native": "Mi amigo es norteamericano, de Canadá.", + "example_sentence_english": "My friend is North American, from Canada.", + "pos": "adjective", + "word_frequency": 3503 + }, + { + "word": "oculto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hidden;occult", + "example_sentence_native": "El tesoro estaba oculto bajo una roca.", + "example_sentence_english": "The treasure was hidden under a rock.", + "pos": "adjective", + "word_frequency": 3504 + }, + { + "word": "opuesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposite", + "example_sentence_native": "Viven en la casa de enfrente, en la calle opuesta.", + "example_sentence_english": "They live in the house across the street, on the opposite street.", + "pos": "adjective", + "word_frequency": 3505 + }, + { + "word": "oso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bear", + "example_sentence_native": "El oso hiberna durante el invierno.", + "example_sentence_english": "The bear hibernates during winter.", + "pos": "noun", + "word_frequency": 3506 + }, + { + "word": "pene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penis", + "example_sentence_native": "El pene es un órgano reproductor masculino.", + "example_sentence_english": "The penis is a male reproductive organ.", + "pos": "noun", + "word_frequency": 3509 + }, + { + "word": "pibe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;boy (Argentinian slang)", + "example_sentence_native": "Ese pibe juega muy bien al fútbol.", + "example_sentence_english": "That kid plays soccer very well.", + "pos": "noun", + "word_frequency": 3510 + }, + { + "word": "plus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plus;bonus;extra", + "example_sentence_native": "Su experiencia es un plus para el equipo.", + "example_sentence_english": "His experience is a plus for the team.", + "pos": "noun", + "word_frequency": 3511 + }, + { + "word": "prisa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hurry;rush", + "example_sentence_native": "Tengo prisa, no puedo esperar.", + "example_sentence_english": "I'm in a hurry, I can't wait.", + "pos": "noun", + "word_frequency": 3512 + }, + { + "word": "productividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productivity", + "example_sentence_native": "Necesitamos aumentar la productividad en la empresa.", + "example_sentence_english": "We need to increase productivity in the company.", + "pos": "noun", + "word_frequency": 3513 + }, + { + "word": "provenir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come from;to originate from", + "example_sentence_native": "Este vino proviene de una región muy famosa.", + "example_sentence_english": "This wine comes from a very famous region.", + "pos": "verb", + "word_frequency": 3514 + }, + { + "word": "quemar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to burn", + "example_sentence_native": "Ten cuidado, no te vayas a quemar con el fuego.", + "example_sentence_english": "Be careful, don't burn yourself with the fire.", + "pos": "verb", + "word_frequency": 3515 + }, + { + "word": "rasgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feature;trait", + "example_sentence_native": "Un rasgo distintivo de su personalidad es la honestidad.", + "example_sentence_english": "A distinctive feature of his personality is honesty.", + "pos": "noun", + "word_frequency": 3516 + }, + { + "word": "reparto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distribution;delivery;cast (of a play;film)", + "example_sentence_native": "El reparto de las tareas fue equitativo.", + "example_sentence_english": "The distribution of tasks was equitable.", + "pos": "noun", + "word_frequency": 3517 + }, + { + "word": "restricción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restriction", + "example_sentence_native": "Hay nuevas restricciones de viaje debido a la pandemia.", + "example_sentence_english": "There are new travel restrictions due to the pandemic.", + "pos": "noun", + "word_frequency": 3518 + }, + { + "word": "satisfacer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to satisfy", + "example_sentence_native": "Es difícil satisfacer a todos.", + "example_sentence_english": "It's difficult to satisfy everyone.", + "pos": "verb", + "word_frequency": 3520 + }, + { + "word": "sigla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acronym", + "example_sentence_native": "OTAN es una sigla para la Organización del Tratado del Atlántico Norte.", + "example_sentence_english": "NATO is an acronym for the North Atlantic Treaty Organization.", + "pos": "noun", + "word_frequency": 3521 + }, + { + "word": "sincero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincere", + "example_sentence_native": "Fue muy sincero en sus disculpas.", + "example_sentence_english": "He was very sincere in his apologies.", + "pos": "adjective", + "word_frequency": 3522 + }, + { + "word": "sopa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soup", + "example_sentence_native": "Me gusta la sopa de verduras.", + "example_sentence_english": "I like vegetable soup.", + "pos": "noun", + "word_frequency": 3523 + }, + { + "word": "sra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mrs.;Ms.", + "example_sentence_native": "La Sra. García es mi profesora.", + "example_sentence_english": "Mrs. García is my teacher.", + "pos": "noun", + "word_frequency": 3524 + }, + { + "word": "tapa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lid;tapa (snack)", + "example_sentence_native": "Por favor, pon la tapa a la olla.", + "example_sentence_english": "Please put the lid on the pot.", + "pos": "noun", + "word_frequency": 3526 + }, + { + "word": "tortura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torture", + "example_sentence_native": "La tortura está prohibida por la ley.", + "example_sentence_english": "Torture is prohibited by law.", + "pos": "noun", + "word_frequency": 3527 + }, + { + "word": "transmitir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transmit;to broadcast", + "example_sentence_native": "La radio va a transmitir el partido en vivo.", + "example_sentence_english": "The radio is going to broadcast the game live.", + "pos": "verb", + "word_frequency": 3528 + }, + { + "word": "trono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "throne", + "example_sentence_native": "El rey se sentó en su trono.", + "example_sentence_english": "The king sat on his throne.", + "pos": "noun", + "word_frequency": 3529 + }, + { + "word": "acusación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accusation", + "example_sentence_native": "La acusación presentó pruebas sólidas.", + "example_sentence_english": "The accusation presented strong evidence.", + "pos": "noun", + "word_frequency": 3532 + }, + { + "word": "advertir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to warn;to notice", + "example_sentence_native": "Te advierto que tengas cuidado.", + "example_sentence_english": "I warn you to be careful.", + "pos": "verb", + "word_frequency": 3533 + }, + { + "word": "aliento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath;encouragement", + "example_sentence_native": "Tomó un profundo aliento antes de hablar.", + "example_sentence_english": "He took a deep breath before speaking.", + "pos": "noun", + "word_frequency": 3535 + }, + { + "word": "averiguar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find out;to ascertain", + "example_sentence_native": "Necesito averiguar la verdad.", + "example_sentence_english": "I need to find out the truth.", + "pos": "verb", + "word_frequency": 3536 + }, + { + "word": "certeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainty", + "example_sentence_native": "Tengo la certeza de que todo saldrá bien.", + "example_sentence_english": "I have the certainty that everything will be fine.", + "pos": "noun", + "word_frequency": 3538 + }, + { + "word": "claridad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarity", + "example_sentence_native": "Necesitamos más claridad en las instrucciones.", + "example_sentence_english": "We need more clarity in the instructions.", + "pos": "noun", + "word_frequency": 3539 + }, + { + "word": "colaborar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collaborate", + "example_sentence_native": "Debemos colaborar para lograr nuestros objetivos.", + "example_sentence_english": "We must collaborate to achieve our goals.", + "pos": "verb", + "word_frequency": 3540 + }, + { + "word": "coma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comma;coma", + "example_sentence_native": "No olvides poner una coma después de la introducción.", + "example_sentence_english": "Don't forget to put a comma after the introduction.", + "pos": "noun", + "word_frequency": 3541 + }, + { + "word": "componer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compose;to fix", + "example_sentence_native": "El músico va a componer una nueva canción.", + "example_sentence_english": "The musician is going to compose a new song.", + "pos": "verb", + "word_frequency": 3542 + }, + { + "word": "creatividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creativity", + "example_sentence_native": "La creatividad es esencial para el arte.", + "example_sentence_english": "Creativity is essential for art.", + "pos": "noun", + "word_frequency": 3543 + }, + { + "word": "cuadrado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "square", + "example_sentence_native": "Dibuja un cuadrado en el papel.", + "example_sentence_english": "Draw a square on the paper.", + "pos": "noun", + "word_frequency": 3544 + }, + { + "word": "cuartel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barracks;headquarters", + "example_sentence_native": "Los soldados regresaron al cuartel.", + "example_sentence_english": "The soldiers returned to the barracks.", + "pos": "noun", + "word_frequency": 3545 + }, + { + "word": "custodia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custody", + "example_sentence_native": "La madre obtuvo la custodia de los niños.", + "example_sentence_english": "The mother obtained custody of the children.", + "pos": "noun", + "word_frequency": 3546 + }, + { + "word": "divino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divine", + "example_sentence_native": "Creemos en la providencia divina.", + "example_sentence_english": "We believe in divine providence.", + "pos": "adjective", + "word_frequency": 3548 + }, + { + "word": "electo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elected", + "example_sentence_native": "El presidente electo asumirá el cargo pronto.", + "example_sentence_english": "The elected president will take office soon.", + "pos": "adjective", + "word_frequency": 3549 + }, + { + "word": "elegido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chosen;elected", + "example_sentence_native": "Él fue el candidato elegido por el pueblo.", + "example_sentence_english": "He was the candidate chosen by the people.", + "pos": "adjective", + "word_frequency": 3550 + }, + { + "word": "encargo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "order;task;commission", + "example_sentence_native": "Recibí un encargo importante de mi jefe.", + "example_sentence_english": "I received an important task from my boss.", + "pos": "noun", + "word_frequency": 3551 + }, + { + "word": "espectador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spectator", + "example_sentence_native": "Los espectadores aplaudieron al final del concierto.", + "example_sentence_english": "The spectators applauded at the end of the concert.", + "pos": "noun", + "word_frequency": 3552 + }, + { + "word": "evaluar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evaluate", + "example_sentence_native": "Debemos evaluar el progreso del proyecto.", + "example_sentence_english": "We must evaluate the project's progress.", + "pos": "verb", + "word_frequency": 3553 + }, + { + "word": "expediente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "file;record;dossier", + "example_sentence_native": "El abogado revisó el expediente del caso.", + "example_sentence_english": "The lawyer reviewed the case file.", + "pos": "noun", + "word_frequency": 3554 + }, + { + "word": "exportación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "export", + "example_sentence_native": "La exportación de productos agrícolas aumentó este año.", + "example_sentence_english": "The export of agricultural products increased this year.", + "pos": "noun", + "word_frequency": 3555 + }, + { + "word": "facil", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "easy", + "example_sentence_native": "Este ejercicio es muy fácil.", + "example_sentence_english": "This exercise is very easy.", + "pos": "adjective", + "word_frequency": 3556 + }, + { + "word": "fortalecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strengthen", + "example_sentence_native": "El ejercicio ayuda a fortalecer los músculos.", + "example_sentence_english": "Exercise helps to strengthen muscles.", + "pos": "verb", + "word_frequency": 3557 + }, + { + "word": "fundar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to found;to establish", + "example_sentence_native": "La ciudad fue fundada en el siglo XVIII.", + "example_sentence_english": "The city was founded in the 18th century.", + "pos": "verb", + "word_frequency": 3558 + }, + { + "word": "gobernante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruler;governor", + "example_sentence_native": "El gobernante prometió nuevas reformas.", + "example_sentence_english": "The ruler promised new reforms.", + "pos": "noun", + "word_frequency": 3559 + }, + { + "word": "gobernar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to govern", + "example_sentence_native": "El presidente debe gobernar con sabiduría.", + "example_sentence_english": "The president must govern with wisdom.", + "pos": "verb", + "word_frequency": 3560 + }, + { + "word": "guapo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "handsome;good-looking", + "example_sentence_native": "Mi hermano es muy guapo.", + "example_sentence_english": "My brother is very handsome.", + "pos": "adjective", + "word_frequency": 3561 + }, + { + "word": "hidalgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobleman;hidalgo", + "example_sentence_native": "Don Quijote era un hidalgo de La Mancha.", + "example_sentence_english": "Don Quixote was a nobleman from La Mancha.", + "pos": "noun", + "word_frequency": 3562 + }, + { + "word": "jugo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "juice", + "example_sentence_native": "Me gusta beber jugo de naranja por la mañana.", + "example_sentence_english": "I like to drink orange juice in the morning.", + "pos": "noun", + "word_frequency": 3564 + }, + { + "word": "lamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lament;wail", + "example_sentence_native": "Se escuchó un lamento en la noche.", + "example_sentence_english": "A lament was heard in the night.", + "pos": "noun", + "word_frequency": 3565 + }, + { + "word": "like", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "like (social media)", + "example_sentence_native": "Dale un like a mi foto.", + "example_sentence_english": "Give a like to my photo.", + "pos": "noun", + "word_frequency": 3566 + }, + { + "word": "limitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to limit", + "example_sentence_native": "Debemos limitar el uso de plásticos.", + "example_sentence_english": "We must limit the use of plastics.", + "pos": "verb", + "word_frequency": 3567 + }, + { + "word": "lisa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mullet (fish)", + "example_sentence_native": "Pescamos una lisa grande en el río.", + "example_sentence_english": "We caught a big mullet in the river.", + "pos": "noun", + "word_frequency": 3568 + }, + { + "word": "maquinaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "machinery", + "example_sentence_native": "La fábrica invirtió en nueva maquinaria.", + "example_sentence_english": "The factory invested in new machinery.", + "pos": "noun", + "word_frequency": 3569 + }, + { + "word": "masculino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "masculine", + "example_sentence_native": "El género de la palabra \"sol\" es masculino.", + "example_sentence_english": "The gender of the word \"sun\" is masculine.", + "pos": "adjective", + "word_frequency": 3570 + }, + { + "word": "minoría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minority", + "example_sentence_native": "La minoría votó en contra de la propuesta.", + "example_sentence_english": "The minority voted against the proposal.", + "pos": "noun", + "word_frequency": 3572 + }, + { + "word": "motivación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivation", + "example_sentence_native": "Su motivación para estudiar es muy alta.", + "example_sentence_english": "His motivation to study is very high.", + "pos": "noun", + "word_frequency": 3574 + }, + { + "word": "navegación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navigation", + "example_sentence_native": "La navegación por GPS es muy útil.", + "example_sentence_english": "GPS navigation is very useful.", + "pos": "noun", + "word_frequency": 3576 + }, + { + "word": "nervio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nerve", + "example_sentence_native": "El dolor se extendió por el nervio.", + "example_sentence_english": "The pain spread along the nerve.", + "pos": "noun", + "word_frequency": 3577 + }, + { + "word": "nomas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "just;only (colloquial)", + "example_sentence_native": "Nomas quería decirte hola.", + "example_sentence_english": "I just wanted to say hello.", + "pos": "adverb", + "word_frequency": 3578 + }, + { + "word": "parto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "childbirth;delivery", + "example_sentence_native": "El parto fue largo pero sin complicaciones.", + "example_sentence_english": "The childbirth was long but without complications.", + "pos": "noun", + "word_frequency": 3579 + }, + { + "word": "portavoz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spokesperson", + "example_sentence_native": "El portavoz del gobierno anunció nuevas medidas.", + "example_sentence_english": "The government spokesperson announced new measures.", + "pos": "noun", + "word_frequency": 3580 + }, + { + "word": "probabilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probability", + "example_sentence_native": "Hay una alta probabilidad de lluvia mañana.", + "example_sentence_english": "There is a high probability of rain tomorrow.", + "pos": "noun", + "word_frequency": 3581 + }, + { + "word": "referéndum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referendum", + "example_sentence_native": "Se convocó un referéndum para decidir el futuro del país.", + "example_sentence_english": "A referendum was called to decide the future of the country.", + "pos": "noun", + "word_frequency": 3582 + }, + { + "word": "reír", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to laugh", + "example_sentence_native": "A ella le gusta reír a carcajadas.", + "example_sentence_english": "She likes to laugh out loud.", + "pos": "verb", + "word_frequency": 3583 + }, + { + "word": "vigor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigor;strength", + "example_sentence_native": "El atleta entrenó con gran vigor.", + "example_sentence_english": "The athlete trained with great vigor.", + "pos": "noun", + "word_frequency": 3587 + }, + { + "word": "ampliación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expansion;enlargement", + "example_sentence_native": "Se aprobó la ampliación del aeropuerto.", + "example_sentence_english": "The expansion of the airport was approved.", + "pos": "noun", + "word_frequency": 3588 + }, + { + "word": "balón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ball (large;e.g.;soccer ball)", + "example_sentence_native": "El niño pateó el balón con fuerza.", + "example_sentence_english": "The boy kicked the ball hard.", + "pos": "noun", + "word_frequency": 3589 + }, + { + "word": "barrera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrier", + "example_sentence_native": "Había una barrera en la carretera.", + "example_sentence_english": "There was a barrier on the road.", + "pos": "noun", + "word_frequency": 3590 + }, + { + "word": "bronce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bronze", + "example_sentence_native": "La estatua estaba hecha de bronce.", + "example_sentence_english": "The statue was made of bronze.", + "pos": "noun", + "word_frequency": 3591 + }, + { + "word": "cadáver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corpse;cadaver", + "example_sentence_native": "La policía encontró un cadáver en el bosque.", + "example_sentence_english": "The police found a corpse in the forest.", + "pos": "noun", + "word_frequency": 3592 + }, + { + "word": "caracterizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to characterize", + "example_sentence_native": "Su amabilidad lo caracteriza.", + "example_sentence_english": "His kindness characterizes him.", + "pos": "verb", + "word_frequency": 3593 + }, + { + "word": "colaborador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collaborator;contributor", + "example_sentence_native": "Es un colaborador valioso para el equipo.", + "example_sentence_english": "He is a valuable contributor to the team.", + "pos": "noun", + "word_frequency": 3594 + }, + { + "word": "corazon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "heart", + "example_sentence_native": "Tiene un gran corazon.", + "example_sentence_english": "He has a big heart.", + "pos": "noun", + "word_frequency": 3595 + }, + { + "word": "determinación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "determination", + "example_sentence_native": "Mostró gran determinación para alcanzar sus metas.", + "example_sentence_english": "He showed great determination to achieve his goals.", + "pos": "noun", + "word_frequency": 3596 + }, + { + "word": "enfrentamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confrontation;clash", + "example_sentence_native": "Hubo un enfrentamiento entre los manifestantes y la policía.", + "example_sentence_english": "There was a confrontation between the protesters and the police.", + "pos": "noun", + "word_frequency": 3599 + }, + { + "word": "engañar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deceive;to trick", + "example_sentence_native": "No intentes engañarme con tus mentiras.", + "example_sentence_english": "Don't try to deceive me with your lies.", + "pos": "verb", + "word_frequency": 3600 + }, + { + "word": "enseguida", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "immediately;right away", + "example_sentence_native": "Vuelvo enseguida, espérame.", + "example_sentence_english": "I'll be right back, wait for me.", + "pos": "adverb", + "word_frequency": 3601 + }, + { + "word": "estatua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statue", + "example_sentence_native": "La estatua en la plaza es muy antigua.", + "example_sentence_english": "The statue in the square is very old.", + "pos": "noun", + "word_frequency": 3602 + }, + { + "word": "feminista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminist", + "example_sentence_native": "Ella tiene ideas muy feministas sobre la igualdad.", + "example_sentence_english": "She has very feminist ideas about equality.", + "pos": "adjective", + "word_frequency": 3603 + }, + { + "word": "ferrocarril", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway;railroad", + "example_sentence_native": "Viajamos en ferrocarril por todo el país.", + "example_sentence_english": "We traveled by railway across the whole country.", + "pos": "noun", + "word_frequency": 3604 + }, + { + "word": "finalizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to finish;to conclude", + "example_sentence_native": "La reunión debe finalizar antes de las cinco.", + "example_sentence_english": "The meeting must finish before five o'clock.", + "pos": "verb", + "word_frequency": 3605 + }, + { + "word": "ignorar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ignore", + "example_sentence_native": "No puedes ignorar el problema, tienes que enfrentarlo.", + "example_sentence_english": "You can't ignore the problem, you have to face it.", + "pos": "verb", + "word_frequency": 3607 + }, + { + "word": "inclusive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "including;even", + "example_sentence_native": "Todos fueron invitados, inclusive los que llegaron tarde.", + "example_sentence_english": "Everyone was invited, including those who arrived late.", + "pos": "adverb", + "word_frequency": 3608 + }, + { + "word": "interpretar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interpret;to perform", + "example_sentence_native": "El actor interpretó su papel de manera brillante.", + "example_sentence_english": "The actor interpreted his role brilliantly.", + "pos": "verb", + "word_frequency": 3609 + }, + { + "word": "iva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "VAT (Value Added Tax)", + "example_sentence_native": "El precio no incluye el IVA.", + "example_sentence_english": "The price does not include VAT.", + "pos": "noun", + "word_frequency": 3610 + }, + { + "word": "legislatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislature;legislative term", + "example_sentence_native": "La nueva ley se aprobó en la última legislatura.", + "example_sentence_english": "The new law was approved in the last legislature.", + "pos": "noun", + "word_frequency": 3611 + }, + { + "word": "ligero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light (weight);slight", + "example_sentence_native": "La maleta es muy ligera, no pesa nada.", + "example_sentence_english": "The suitcase is very light, it weighs nothing.", + "pos": "adjective", + "word_frequency": 3612 + }, + { + "word": "manipulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulation", + "example_sentence_native": "La manipulación de datos es un delito grave.", + "example_sentence_english": "Data manipulation is a serious crime.", + "pos": "noun", + "word_frequency": 3614 + }, + { + "word": "mecánica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mechanics;mechanical engineering", + "example_sentence_native": "Estudió ingeniería mecánica en la universidad.", + "example_sentence_english": "He studied mechanical engineering at the university.", + "pos": "noun", + "word_frequency": 3616 + }, + { + "word": "montar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ride;to assemble;to mount", + "example_sentence_native": "Me gusta montar a caballo los fines de semana.", + "example_sentence_english": "I like to ride horses on weekends.", + "pos": "verb", + "word_frequency": 3618 + }, + { + "word": "muchacha", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girl;young woman", + "example_sentence_native": "La muchacha estaba leyendo un libro en el parque.", + "example_sentence_english": "The girl was reading a book in the park.", + "pos": "noun", + "word_frequency": 3619 + }, + { + "word": "nazi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nazi", + "example_sentence_native": "La ideología nazi causó millones de muertes.", + "example_sentence_english": "The Nazi ideology caused millions of deaths.", + "pos": "noun", + "word_frequency": 3620 + }, + { + "word": "odiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hate", + "example_sentence_native": "Odio el frío, prefiero el calor.", + "example_sentence_english": "I hate the cold, I prefer the heat.", + "pos": "verb", + "word_frequency": 3621 + }, + { + "word": "operar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to operate;to perform surgery", + "example_sentence_native": "El cirujano tuvo que operar al paciente de urgencia.", + "example_sentence_english": "The surgeon had to operate on the patient urgently.", + "pos": "verb", + "word_frequency": 3622 + }, + { + "word": "orgánico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organic", + "example_sentence_native": "Compramos verduras orgánicas en el mercado local.", + "example_sentence_english": "We buy organic vegetables at the local market.", + "pos": "adjective", + "word_frequency": 3623 + }, + { + "word": "paralelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parallel", + "example_sentence_native": "Las dos líneas son paralelas y nunca se cruzan.", + "example_sentence_english": "The two lines are parallel and never cross.", + "pos": "adjective", + "word_frequency": 3624 + }, + { + "word": "pariente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relative;kin", + "example_sentence_native": "Tengo muchos parientes viviendo en esta ciudad.", + "example_sentence_english": "I have many relatives living in this city.", + "pos": "noun", + "word_frequency": 3625 + }, + { + "word": "patente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patent", + "example_sentence_native": "La empresa solicitó una patente para su nueva invención.", + "example_sentence_english": "The company applied for a patent for its new invention.", + "pos": "noun", + "word_frequency": 3626 + }, + { + "word": "perdonar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to forgive;to pardon", + "example_sentence_native": "Por favor, perdóname por mi error.", + "example_sentence_english": "Please, forgive me for my mistake.", + "pos": "verb", + "word_frequency": 3627 + }, + { + "word": "procedente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coming from;originating from;appropriate", + "example_sentence_native": "La información es procedente de fuentes fiables.", + "example_sentence_english": "The information comes from reliable sources.", + "pos": "adjective", + "word_frequency": 3628 + }, + { + "word": "prometer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to promise", + "example_sentence_native": "Me prometió que me ayudaría con el proyecto.", + "example_sentence_english": "He promised me he would help me with the project.", + "pos": "verb", + "word_frequency": 3629 + }, + { + "word": "proporción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportion;ratio", + "example_sentence_native": "La proporción de hombres a mujeres en la clase es de uno a dos.", + "example_sentence_english": "The proportion of men to women in the class is one to two.", + "pos": "noun", + "word_frequency": 3630 + }, + { + "word": "públicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publicly", + "example_sentence_native": "Se disculpó públicamente por sus comentarios.", + "example_sentence_english": "He apologized publicly for his comments.", + "pos": "adverb", + "word_frequency": 3631 + }, + { + "word": "reflejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflection;reflex", + "example_sentence_native": "Vi mi reflejo en el agua.", + "example_sentence_english": "I saw my reflection in the water.", + "pos": "noun", + "word_frequency": 3632 + }, + { + "word": "saga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saga", + "example_sentence_native": "La saga de libros es muy popular entre los jóvenes.", + "example_sentence_english": "The book saga is very popular among young people.", + "pos": "noun", + "word_frequency": 3633 + }, + { + "word": "sombrero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hat", + "example_sentence_native": "Llevaba un sombrero grande para protegerse del sol.", + "example_sentence_english": "He was wearing a big hat to protect himself from the sun.", + "pos": "noun", + "word_frequency": 3636 + }, + { + "word": "subida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rise;increase;climb", + "example_sentence_native": "Hubo una subida de precios en los combustibles.", + "example_sentence_english": "There was a price increase in fuels.", + "pos": "noun", + "word_frequency": 3637 + }, + { + "word": "supervivencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survival", + "example_sentence_native": "La supervivencia en el desierto es muy difícil.", + "example_sentence_english": "Survival in the desert is very difficult.", + "pos": "noun", + "word_frequency": 3638 + }, + { + "word": "talla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "size (clothing);height;carving", + "example_sentence_native": "¿Qué talla de camiseta usas?", + "example_sentence_english": "What size t-shirt do you wear?", + "pos": "noun", + "word_frequency": 3639 + }, + { + "word": "teclado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "keyboard", + "example_sentence_native": "Necesito un nuevo teclado para mi computadora.", + "example_sentence_english": "I need a new keyboard for my computer.", + "pos": "noun", + "word_frequency": 3640 + }, + { + "word": "temer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fear", + "example_sentence_native": "No debes temer al fracaso.", + "example_sentence_english": "You should not fear failure.", + "pos": "verb", + "word_frequency": 3641 + }, + { + "word": "tribu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribe", + "example_sentence_native": "La tribu vivía en armonía con la naturaleza.", + "example_sentence_english": "The tribe lived in harmony with nature.", + "pos": "noun", + "word_frequency": 3642 + }, + { + "word": "usualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usually", + "example_sentence_native": "Usualmente, me levanto temprano.", + "example_sentence_english": "Usually, I wake up early.", + "pos": "adverb", + "word_frequency": 3643 + }, + { + "word": "variable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variable", + "example_sentence_native": "El clima en esta región es muy variable.", + "example_sentence_english": "The weather in this region is very variable.", + "pos": "adjective", + "word_frequency": 3644 + }, + { + "word": "acento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accent", + "example_sentence_native": "Tiene un acento muy marcado.", + "example_sentence_english": "He has a very strong accent.", + "pos": "noun", + "word_frequency": 3647 + }, + { + "word": "ampliar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expand", + "example_sentence_native": "Necesitamos ampliar la casa.", + "example_sentence_english": "We need to expand the house.", + "pos": "verb", + "word_frequency": 3648 + }, + { + "word": "apropiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appropriate", + "example_sentence_native": "Esa respuesta no es apropiada.", + "example_sentence_english": "That answer is not appropriate.", + "pos": "adjective", + "word_frequency": 3649 + }, + { + "word": "armonía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmony", + "example_sentence_native": "Viven en completa armonía.", + "example_sentence_english": "They live in complete harmony.", + "pos": "noun", + "word_frequency": 3650 + }, + { + "word": "atraer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attract", + "example_sentence_native": "El imán atrae el metal.", + "example_sentence_english": "The magnet attracts metal.", + "pos": "verb", + "word_frequency": 3651 + }, + { + "word": "auténtico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authentic", + "example_sentence_native": "Esta es una obra de arte auténtica.", + "example_sentence_english": "This is an authentic work of art.", + "pos": "adjective", + "word_frequency": 3652 + }, + { + "word": "baby", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby", + "example_sentence_native": "El baby está durmiendo.", + "example_sentence_english": "The baby is sleeping.", + "pos": "noun", + "word_frequency": 3653 + }, + { + "word": "brindar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to toast;to offer", + "example_sentence_native": "Vamos a brindar por tu éxito.", + "example_sentence_english": "Let's toast to your success.", + "pos": "verb", + "word_frequency": 3656 + }, + { + "word": "capilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chapel", + "example_sentence_native": "La boda se celebró en la capilla.", + "example_sentence_english": "The wedding was held in the chapel.", + "pos": "noun", + "word_frequency": 3657 + }, + { + "word": "cerdo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pig", + "example_sentence_native": "El cerdo vive en la granja.", + "example_sentence_english": "The pig lives on the farm.", + "pos": "noun", + "word_frequency": 3658 + }, + { + "word": "chat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat", + "example_sentence_native": "Tuvimos un chat muy interesante.", + "example_sentence_english": "We had a very interesting chat.", + "pos": "noun", + "word_frequency": 3659 + }, + { + "word": "comparar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to compare", + "example_sentence_native": "No me gusta comparar mi vida con la de otros.", + "example_sentence_english": "I don't like to compare my life with others'.", + "pos": "verb", + "word_frequency": 3660 + }, + { + "word": "condado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "county", + "example_sentence_native": "El condado es conocido por sus viñedos.", + "example_sentence_english": "The county is known for its vineyards.", + "pos": "noun", + "word_frequency": 3661 + }, + { + "word": "constituyente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constituent", + "example_sentence_native": "La asamblea constituyente redactó la nueva ley.", + "example_sentence_english": "The constituent assembly drafted the new law.", + "pos": "noun", + "word_frequency": 3662 + }, + { + "word": "cruce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossing;intersection", + "example_sentence_native": "Hay un cruce peligroso más adelante.", + "example_sentence_english": "There's a dangerous crossing ahead.", + "pos": "noun", + "word_frequency": 3663 + }, + { + "word": "cuchillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "knife", + "example_sentence_native": "Necesito un cuchillo para cortar el pan.", + "example_sentence_english": "I need a knife to cut the bread.", + "pos": "noun", + "word_frequency": 3664 + }, + { + "word": "disparo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shot (from a gun)", + "example_sentence_native": "Se escuchó un disparo en la distancia.", + "example_sentence_english": "A shot was heard in the distance.", + "pos": "noun", + "word_frequency": 3666 + }, + { + "word": "dorado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "golden", + "example_sentence_native": "El sol poniente tiñó el cielo de un color dorado.", + "example_sentence_english": "The setting sun tinged the sky with a golden color.", + "pos": "adjective", + "word_frequency": 3667 + }, + { + "word": "ducha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shower", + "example_sentence_native": "Me tomo una ducha todas las mañanas.", + "example_sentence_english": "I take a shower every morning.", + "pos": "noun", + "word_frequency": 3668 + }, + { + "word": "esclavitud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slavery", + "example_sentence_native": "La esclavitud fue abolida hace mucho tiempo.", + "example_sentence_english": "Slavery was abolished a long time ago.", + "pos": "noun", + "word_frequency": 3669 + }, + { + "word": "experimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experiment", + "example_sentence_native": "El científico realizó un experimento.", + "example_sentence_english": "The scientist conducted an experiment.", + "pos": "noun", + "word_frequency": 3673 + }, + { + "word": "factura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invoice;bill", + "example_sentence_native": "Por favor, envíame la factura.", + "example_sentence_english": "Please send me the invoice.", + "pos": "noun", + "word_frequency": 3674 + }, + { + "word": "globo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balloon;globe", + "example_sentence_native": "El niño soltó el globo al cielo.", + "example_sentence_english": "The child released the balloon into the sky.", + "pos": "noun", + "word_frequency": 3677 + }, + { + "word": "goma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rubber;eraser;gum", + "example_sentence_native": "Necesito una goma para borrar el lápiz.", + "example_sentence_english": "I need an eraser to rub out the pencil.", + "pos": "noun", + "word_frequency": 3678 + }, + { + "word": "homicidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homicide", + "example_sentence_native": "La policía investiga el caso de homicidio.", + "example_sentence_english": "The police are investigating the homicide case.", + "pos": "noun", + "word_frequency": 3679 + }, + { + "word": "ia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "AI (Artificial Intelligence)", + "example_sentence_native": "La IA está cambiando el mundo rápidamente.", + "example_sentence_english": "AI is changing the world rapidly.", + "pos": "noun", + "word_frequency": 3681 + }, + { + "word": "incapaz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incapable", + "example_sentence_native": "Es incapaz de mentir.", + "example_sentence_english": "He is incapable of lying.", + "pos": "adjective", + "word_frequency": 3682 + }, + { + "word": "instalar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to install", + "example_sentence_native": "Necesito instalar el nuevo software.", + "example_sentence_english": "I need to install the new software.", + "pos": "verb", + "word_frequency": 3683 + }, + { + "word": "integrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to integrate", + "example_sentence_native": "Es importante integrar a los nuevos miembros del equipo.", + "example_sentence_english": "It is important to integrate the new team members.", + "pos": "verb", + "word_frequency": 3684 + }, + { + "word": "interacción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interaction", + "example_sentence_native": "La interacción social es vital para los niños.", + "example_sentence_english": "Social interaction is vital for children.", + "pos": "noun", + "word_frequency": 3685 + }, + { + "word": "limón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lemon", + "example_sentence_native": "Me gusta el agua con limón.", + "example_sentence_english": "I like water with lemon.", + "pos": "noun", + "word_frequency": 3686 + }, + { + "word": "maquillaje", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "makeup", + "example_sentence_native": "Ella se puso un poco de maquillaje.", + "example_sentence_english": "She put on a little makeup.", + "pos": "noun", + "word_frequency": 3687 + }, + { + "word": "mentalidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mindset", + "example_sentence_native": "Tiene una mentalidad muy positiva.", + "example_sentence_english": "He has a very positive mindset.", + "pos": "noun", + "word_frequency": 3688 + }, + { + "word": "micro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "example_sentence_native": "El cantante ajustó el micro antes de empezar.", + "example_sentence_english": "The singer adjusted the microphone before starting.", + "pos": "noun", + "word_frequency": 3689 + }, + { + "word": "musica", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "music", + "example_sentence_native": "Me encanta escuchar música.", + "example_sentence_english": "I love listening to music.", + "pos": "noun", + "word_frequency": 3690 + }, + { + "word": "mágico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magical", + "example_sentence_native": "Fue una noche mágica.", + "example_sentence_english": "It was a magical night.", + "pos": "adjective", + "word_frequency": 3691 + }, + { + "word": "nacionalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationalism", + "example_sentence_native": "El nacionalismo puede ser una fuerza poderosa.", + "example_sentence_english": "Nationalism can be a powerful force.", + "pos": "noun", + "word_frequency": 3692 + }, + { + "word": "narrativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrative", + "example_sentence_native": "La narrativa de la película era muy compleja.", + "example_sentence_english": "The film's narrative was very complex.", + "pos": "noun", + "word_frequency": 3693 + }, + { + "word": "neto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "net", + "example_sentence_native": "El peso neto del producto es de 500 gramos.", + "example_sentence_english": "The net weight of the product is 500 grams.", + "pos": "adjective", + "word_frequency": 3694 + }, + { + "word": "obrero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worker", + "example_sentence_native": "Los obreros de la fábrica están en huelga.", + "example_sentence_english": "The factory workers are on strike.", + "pos": "noun", + "word_frequency": 3696 + }, + { + "word": "privilegio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "privilege", + "example_sentence_native": "Es un privilegio trabajar aquí.", + "example_sentence_english": "It's a privilege to work here.", + "pos": "noun", + "word_frequency": 3697 + }, + { + "word": "realista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "realistic", + "example_sentence_native": "Debemos ser realistas con nuestras expectativas.", + "example_sentence_english": "We must be realistic with our expectations.", + "pos": "adjective", + "word_frequency": 3698 + }, + { + "word": "reseña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "review", + "example_sentence_native": "Leí una buena reseña del libro.", + "example_sentence_english": "I read a good review of the book.", + "pos": "noun", + "word_frequency": 3699 + }, + { + "word": "sobrino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nephew", + "example_sentence_native": "Mi sobrino viene a visitarnos este fin de semana.", + "example_sentence_english": "My nephew is coming to visit us this weekend.", + "pos": "noun", + "word_frequency": 3700 + }, + { + "word": "sucio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dirty", + "example_sentence_native": "La ropa está sucia.", + "example_sentence_english": "The clothes are dirty.", + "pos": "adjective", + "word_frequency": 3701 + }, + { + "word": "sumamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely", + "example_sentence_native": "Estoy sumamente agradecido por tu ayuda.", + "example_sentence_english": "I am extremely grateful for your help.", + "pos": "adverb", + "word_frequency": 3702 + }, + { + "word": "tabaco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tobacco", + "example_sentence_native": "Fumar tabaco es perjudicial para la salud.", + "example_sentence_english": "Smoking tobacco is harmful to health.", + "pos": "noun", + "word_frequency": 3703 + }, + { + "word": "tender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hang (laundry)", + "example_sentence_native": "Voy a tender la ropa.", + "example_sentence_english": "I'm going to hang out the laundry.", + "pos": "verb", + "word_frequency": 3705 + }, + { + "word": "verificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to verify", + "example_sentence_native": "Debemos verificar la información antes de publicarla.", + "example_sentence_english": "We must verify the information before publishing it.", + "pos": "verb", + "word_frequency": 3709 + }, + { + "word": "vínculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "link;bond", + "example_sentence_native": "Hay un fuerte vínculo entre ellos.", + "example_sentence_english": "There is a strong bond between them.", + "pos": "noun", + "word_frequency": 3710 + }, + { + "word": "aficionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan;amateur", + "example_sentence_native": "Es un gran aficionado al fútbol.", + "example_sentence_english": "He is a big football fan.", + "pos": "noun", + "word_frequency": 3711 + }, + { + "word": "algodón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cotton", + "example_sentence_native": "La camiseta es de algodón puro.", + "example_sentence_english": "The T-shirt is made of pure cotton.", + "pos": "noun", + "word_frequency": 3712 + }, + { + "word": "anciano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elderly person", + "example_sentence_native": "Ayudamos a un anciano a cruzar la calle.", + "example_sentence_english": "We helped an elderly person cross the street.", + "pos": "noun", + "word_frequency": 3713 + }, + { + "word": "arresto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrest", + "example_sentence_native": "La policía realizó un arresto.", + "example_sentence_english": "The police made an arrest.", + "pos": "noun", + "word_frequency": 3714 + }, + { + "word": "atlético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletic", + "example_sentence_native": "Es una persona muy atlética.", + "example_sentence_english": "He is a very athletic person.", + "pos": "adjective", + "word_frequency": 3715 + }, + { + "word": "boletín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulletin;newsletter", + "example_sentence_native": "Recibo el boletín de noticias cada semana.", + "example_sentence_english": "I receive the newsletter every week.", + "pos": "noun", + "word_frequency": 3716 + }, + { + "word": "carbono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbon", + "example_sentence_native": "El dióxido de carbono es un gas de efecto invernadero.", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "noun", + "word_frequency": 3717 + }, + { + "word": "climático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climatic", + "example_sentence_native": "El cambio climático es un problema global.", + "example_sentence_english": "Climate change is a global problem.", + "pos": "adjective", + "word_frequency": 3719 + }, + { + "word": "corredor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "runner;corridor", + "example_sentence_native": "El corredor ganó la carrera.", + "example_sentence_english": "The runner won the race.", + "pos": "noun", + "word_frequency": 3720 + }, + { + "word": "desfile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parade", + "example_sentence_native": "Vimos un desfile de carrozas en la calle.", + "example_sentence_english": "We saw a parade of floats in the street.", + "pos": "noun", + "word_frequency": 3721 + }, + { + "word": "ejecutar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to execute;to perform", + "example_sentence_native": "Debemos ejecutar el plan con precisión.", + "example_sentence_english": "We must execute the plan with precision.", + "pos": "verb", + "word_frequency": 3722 + }, + { + "word": "escucha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "listening;eavesdropping", + "example_sentence_native": "La escucha activa es importante en la comunicación.", + "example_sentence_english": "Active listening is important in communication.", + "pos": "noun", + "word_frequency": 3723 + }, + { + "word": "esfera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sphere;scope", + "example_sentence_native": "La Tierra es una esfera.", + "example_sentence_english": "The Earth is a sphere.", + "pos": "noun", + "word_frequency": 3724 + }, + { + "word": "estupidez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stupidity", + "example_sentence_native": "No puedo creer la estupidez de esa decisión.", + "example_sentence_english": "I can't believe the stupidity of that decision.", + "pos": "noun", + "word_frequency": 3725 + }, + { + "word": "extinción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extinction", + "example_sentence_native": "Muchas especies están en peligro de extinción.", + "example_sentence_english": "Many species are in danger of extinction.", + "pos": "noun", + "word_frequency": 3726 + }, + { + "word": "ficha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "token;chip;card", + "example_sentence_native": "Necesitas una ficha para jugar a este juego.", + "example_sentence_english": "You need a token to play this game.", + "pos": "noun", + "word_frequency": 3727 + }, + { + "word": "honesto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "honest", + "example_sentence_native": "Es una persona muy honesta.", + "example_sentence_english": "He is a very honest person.", + "pos": "adjective", + "word_frequency": 3728 + }, + { + "word": "oler", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smell", + "example_sentence_native": "¿Puedes oler el café recién hecho?", + "example_sentence_english": "Can you smell the freshly brewed coffee?", + "pos": "verb", + "word_frequency": 3729 + }, + { + "word": "huella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footprint;trace", + "example_sentence_native": "Encontraron huellas en la nieve.", + "example_sentence_english": "They found footprints in the snow.", + "pos": "noun", + "word_frequency": 3730 + }, + { + "word": "huracán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurricane", + "example_sentence_native": "El huracán causó mucha destrucción.", + "example_sentence_english": "The hurricane caused a lot of destruction.", + "pos": "noun", + "word_frequency": 3731 + }, + { + "word": "infinito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinite", + "example_sentence_native": "El universo es infinito.", + "example_sentence_english": "The universe is infinite.", + "pos": "adjective", + "word_frequency": 3732 + }, + { + "word": "jugada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move;play (in a game)", + "example_sentence_native": "Fue una jugada muy inteligente.", + "example_sentence_english": "It was a very clever move.", + "pos": "noun", + "word_frequency": 3733 + }, + { + "word": "lateral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lateral;side", + "example_sentence_native": "El coche tiene un impacto lateral.", + "example_sentence_english": "The car has a side impact.", + "pos": "adjective", + "word_frequency": 3735 + }, + { + "word": "limitación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limitation", + "example_sentence_native": "Tenemos algunas limitaciones de presupuesto.", + "example_sentence_english": "We have some budget limitations.", + "pos": "noun", + "word_frequency": 3736 + }, + { + "word": "manifestar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manifest;to express", + "example_sentence_native": "La gente salió a manifestar su descontento.", + "example_sentence_english": "People went out to express their discontent.", + "pos": "verb", + "word_frequency": 3737 + }, + { + "word": "migración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migration", + "example_sentence_native": "La migración de aves es un fenómeno anual.", + "example_sentence_english": "Bird migration is an annual phenomenon.", + "pos": "noun", + "word_frequency": 3740 + }, + { + "word": "nacionalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nationalist", + "example_sentence_native": "Es un partido político nacionalista.", + "example_sentence_english": "It is a nationalist political party.", + "pos": "adjective", + "word_frequency": 3742 + }, + { + "word": "opera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opera", + "example_sentence_native": "Fuimos a ver una ópera anoche.", + "example_sentence_english": "We went to see an opera last night.", + "pos": "noun", + "word_frequency": 3744 + }, + { + "word": "prestigio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prestige", + "example_sentence_native": "La universidad tiene mucho prestigio.", + "example_sentence_english": "The university has a lot of prestige.", + "pos": "noun", + "word_frequency": 3746 + }, + { + "word": "productivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "productive", + "example_sentence_native": "Tuvimos una reunión muy productiva.", + "example_sentence_english": "We had a very productive meeting.", + "pos": "adjective", + "word_frequency": 3747 + }, + { + "word": "prohibir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prohibit;to forbid", + "example_sentence_native": "Está prohibido fumar aquí.", + "example_sentence_english": "Smoking is prohibited here.", + "pos": "verb", + "word_frequency": 3748 + }, + { + "word": "práctico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "practical", + "example_sentence_native": "Es una solución muy práctica.", + "example_sentence_english": "It's a very practical solution.", + "pos": "adjective", + "word_frequency": 3749 + }, + { + "word": "recurrir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resort to;to appeal", + "example_sentence_native": "Tuvimos que recurrir a medidas extremas.", + "example_sentence_english": "We had to resort to extreme measures.", + "pos": "verb", + "word_frequency": 3750 + }, + { + "word": "retraso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delay", + "example_sentence_native": "El vuelo sufrió un retraso de dos horas.", + "example_sentence_english": "The flight suffered a two-hour delay.", + "pos": "noun", + "word_frequency": 3751 + }, + { + "word": "sentada", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sit-in", + "example_sentence_native": "Organizaron una sentada frente al ayuntamiento.", + "example_sentence_english": "They organized a sit-in in front of the city hall.", + "pos": "noun", + "word_frequency": 3752 + }, + { + "word": "sospecha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicion", + "example_sentence_native": "La policía tiene una sospecha sobre el culpable.", + "example_sentence_english": "The police have a suspicion about the culprit.", + "pos": "noun", + "word_frequency": 3753 + }, + { + "word": "síndrome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syndrome", + "example_sentence_native": "El paciente fue diagnosticado con un síndrome raro.", + "example_sentence_english": "The patient was diagnosed with a rare syndrome.", + "pos": "noun", + "word_frequency": 3754 + }, + { + "word": "telecomunicación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "telecommunication", + "example_sentence_native": "La empresa se especializa en telecomunicaciones.", + "example_sentence_english": "The company specializes in telecommunications.", + "pos": "noun", + "word_frequency": 3755 + }, + { + "word": "telefónico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telephone (adj.)", + "example_sentence_native": "Hice una llamada telefónica importante.", + "example_sentence_english": "I made an important telephone call.", + "pos": "adjective", + "word_frequency": 3756 + }, + { + "word": "testamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will;testament", + "example_sentence_native": "Dejó todo su dinero en su testamento.", + "example_sentence_english": "He left all his money in his will.", + "pos": "noun", + "word_frequency": 3757 + }, + { + "word": "tolerancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerance", + "example_sentence_native": "La tolerancia es fundamental en una sociedad diversa.", + "example_sentence_english": "Tolerance is fundamental in a diverse society.", + "pos": "noun", + "word_frequency": 3758 + }, + { + "word": "traducir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to translate", + "example_sentence_native": "Necesito traducir este documento al inglés.", + "example_sentence_english": "I need to translate this document into English.", + "pos": "verb", + "word_frequency": 3759 + }, + { + "word": "transparente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transparent", + "example_sentence_native": "El cristal es completamente transparente.", + "example_sentence_english": "The glass is completely transparent.", + "pos": "adjective", + "word_frequency": 3760 + }, + { + "word": "ángulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angle", + "example_sentence_native": "El arquitecto calculó el ángulo de la pared.", + "example_sentence_english": "The architect calculated the angle of the wall.", + "pos": "noun", + "word_frequency": 3762 + }, + { + "word": "acercar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bring closer;to approach", + "example_sentence_native": "Por favor, acércame el libro.", + "example_sentence_english": "Please, bring the book closer to me.", + "pos": "verb", + "word_frequency": 3763 + }, + { + "word": "arroyo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stream;creek", + "example_sentence_native": "Caminamos junto al arroyo.", + "example_sentence_english": "We walked next to the stream.", + "pos": "noun", + "word_frequency": 3766 + }, + { + "word": "avanzado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advanced", + "example_sentence_native": "Ella tiene un nivel avanzado de español.", + "example_sentence_english": "She has an advanced level of Spanish.", + "pos": "adjective", + "word_frequency": 3767 + }, + { + "word": "bono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bonus;bond;voucher", + "example_sentence_native": "Recibió un bono por su buen desempeño.", + "example_sentence_english": "He received a bonus for his good performance.", + "pos": "noun", + "word_frequency": 3768 + }, + { + "word": "calificación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grade;qualification;rating", + "example_sentence_native": "Obtuvo una buena calificación en el examen.", + "example_sentence_english": "She got a good grade on the exam.", + "pos": "noun", + "word_frequency": 3770 + }, + { + "word": "cenar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have dinner;to dine", + "example_sentence_native": "Vamos a cenar en un restaurante italiano.", + "example_sentence_english": "We are going to have dinner at an Italian restaurant.", + "pos": "verb", + "word_frequency": 3772 + }, + { + "word": "centavo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cent", + "example_sentence_native": "No tengo ni un centavo.", + "example_sentence_english": "I don't have a single cent.", + "pos": "noun", + "word_frequency": 3773 + }, + { + "word": "concesión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concession;grant", + "example_sentence_native": "El gobierno otorgó una concesión para la mina.", + "example_sentence_english": "The government granted a concession for the mine.", + "pos": "noun", + "word_frequency": 3775 + }, + { + "word": "concluir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conclude;to finish", + "example_sentence_native": "La reunión debe concluir antes de las cinco.", + "example_sentence_english": "The meeting must conclude before five o'clock.", + "pos": "verb", + "word_frequency": 3776 + }, + { + "word": "constancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perseverance;proof;record", + "example_sentence_native": "Su constancia en el estudio dio frutos.", + "example_sentence_english": "His perseverance in studying bore fruit.", + "pos": "noun", + "word_frequency": 3777 + }, + { + "word": "decente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decent;respectable", + "example_sentence_native": "Es una persona muy decente.", + "example_sentence_english": "He is a very decent person.", + "pos": "adjective", + "word_frequency": 3778 + }, + { + "word": "despedida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farewell;goodbye", + "example_sentence_native": "Tuvimos una triste despedida en el aeropuerto.", + "example_sentence_english": "We had a sad farewell at the airport.", + "pos": "noun", + "word_frequency": 3779 + }, + { + "word": "empate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tie;draw (in a game)", + "example_sentence_native": "El partido terminó en empate.", + "example_sentence_english": "The match ended in a tie.", + "pos": "noun", + "word_frequency": 3781 + }, + { + "word": "engaño", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deception;trick", + "example_sentence_native": "Fue víctima de un engaño.", + "example_sentence_english": "He was a victim of a deception.", + "pos": "noun", + "word_frequency": 3782 + }, + { + "word": "entendimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understanding;comprehension", + "example_sentence_native": "Llegaron a un entendimiento mutuo.", + "example_sentence_english": "They reached a mutual understanding.", + "pos": "noun", + "word_frequency": 3783 + }, + { + "word": "exilio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exile", + "example_sentence_native": "Muchos artistas vivieron en el exilio.", + "example_sentence_english": "Many artists lived in exile.", + "pos": "noun", + "word_frequency": 3785 + }, + { + "word": "film", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film;movie", + "example_sentence_native": "Vimos un buen film anoche.", + "example_sentence_english": "We watched a good film last night.", + "pos": "noun", + "word_frequency": 3786 + }, + { + "word": "introducir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to introduce;to insert", + "example_sentence_native": "Permítame introducirle a mi colega.", + "example_sentence_english": "Allow me to introduce you to my colleague.", + "pos": "verb", + "word_frequency": 3788 + }, + { + "word": "lema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motto;slogan", + "example_sentence_native": "\"Libertad y orden\" es el lema del país.", + "example_sentence_english": "\"Liberty and order\" is the country's motto.", + "pos": "noun", + "word_frequency": 3791 + }, + { + "word": "liberar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to free;to release", + "example_sentence_native": "La policía logró liberar a los rehenes.", + "example_sentence_english": "The police managed to free the hostages.", + "pos": "verb", + "word_frequency": 3792 + }, + { + "word": "literal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literal", + "example_sentence_native": "Su interpretación fue muy literal.", + "example_sentence_english": "His interpretation was very literal.", + "pos": "adjective", + "word_frequency": 3793 + }, + { + "word": "localización", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "location", + "example_sentence_native": "La localización del evento es secreta.", + "example_sentence_english": "The location of the event is secret.", + "pos": "noun", + "word_frequency": 3794 + }, + { + "word": "logo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logo", + "example_sentence_native": "El nuevo logo de la empresa es moderno.", + "example_sentence_english": "The company's new logo is modern.", + "pos": "noun", + "word_frequency": 3795 + }, + { + "word": "lord", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lord", + "example_sentence_native": "El lord de la mansión era muy rico.", + "example_sentence_english": "The lord of the mansion was very rich.", + "pos": "noun", + "word_frequency": 3797 + }, + { + "word": "opositor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opponent;opposition member", + "example_sentence_native": "El opositor criticó las nuevas medidas.", + "example_sentence_english": "The opponent criticized the new measures.", + "pos": "noun", + "word_frequency": 3799 + }, + { + "word": "orilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shore;bank;edge", + "example_sentence_native": "Caminamos por la orilla del río.", + "example_sentence_english": "We walked along the river bank.", + "pos": "noun", + "word_frequency": 3800 + }, + { + "word": "oxígeno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oxygen", + "example_sentence_native": "Las plantas producen oxígeno.", + "example_sentence_english": "Plants produce oxygen.", + "pos": "noun", + "word_frequency": 3801 + }, + { + "word": "pintor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painter", + "example_sentence_native": "Mi tío es un pintor famoso.", + "example_sentence_english": "My uncle is a famous painter.", + "pos": "noun", + "word_frequency": 3803 + }, + { + "word": "pistola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pistol;gun", + "example_sentence_native": "El vaquero sacó su pistola.", + "example_sentence_english": "The cowboy pulled out his pistol.", + "pos": "noun", + "word_frequency": 3804 + }, + { + "word": "polo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polo (shirt);pole;ice pop", + "example_sentence_native": "Me gusta llevar un polo azul.", + "example_sentence_english": "I like to wear a blue polo shirt.", + "pos": "noun", + "word_frequency": 3805 + }, + { + "word": "químico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemical", + "example_sentence_native": "Es un proceso químico complejo.", + "example_sentence_english": "It's a complex chemical process.", + "pos": "adjective", + "word_frequency": 3806 + }, + { + "word": "racismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racism", + "example_sentence_native": "Debemos luchar contra el racismo.", + "example_sentence_english": "We must fight against racism.", + "pos": "noun", + "word_frequency": 3807 + }, + { + "word": "rebelión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellion", + "example_sentence_native": "La rebelión fue sofocada rápidamente.", + "example_sentence_english": "The rebellion was quickly suppressed.", + "pos": "noun", + "word_frequency": 3808 + }, + { + "word": "reclamar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to claim;to demand;to complain", + "example_sentence_native": "Voy a reclamar mi dinero.", + "example_sentence_english": "I'm going to claim my money.", + "pos": "verb", + "word_frequency": 3809 + }, + { + "word": "relativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relative", + "example_sentence_native": "Todo es relativo en la vida.", + "example_sentence_english": "Everything is relative in life.", + "pos": "adjective", + "word_frequency": 3810 + }, + { + "word": "ron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rum", + "example_sentence_native": "Me gusta el ron con cola.", + "example_sentence_english": "I like rum and coke.", + "pos": "noun", + "word_frequency": 3812 + }, + { + "word": "secundario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary;minor", + "example_sentence_native": "Es un problema secundario.", + "example_sentence_english": "It's a secondary problem.", + "pos": "adjective", + "word_frequency": 3813 + }, + { + "word": "seriamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seriously", + "example_sentence_native": "Tómate esto seriamente.", + "example_sentence_english": "Take this seriously.", + "pos": "adverb", + "word_frequency": 3814 + }, + { + "word": "tercio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "third (fraction);third part", + "example_sentence_native": "Un tercio de la población votó.", + "example_sentence_english": "A third of the population voted.", + "pos": "noun", + "word_frequency": 3817 + }, + { + "word": "tomate", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tomato", + "example_sentence_native": "Me gusta la ensalada de tomate.", + "example_sentence_english": "I like tomato salad.", + "pos": "noun", + "word_frequency": 3818 + }, + { + "word": "uña", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nail (fingernail;toenail)", + "example_sentence_native": "Se rompió una uña.", + "example_sentence_english": "She broke a nail.", + "pos": "noun", + "word_frequency": 3819 + }, + { + "word": "énfasis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emphasis", + "example_sentence_native": "Puso mucho énfasis en sus palabras.", + "example_sentence_english": "He put a lot of emphasis on his words.", + "pos": "noun", + "word_frequency": 3822 + }, + { + "word": "acorde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in accordance with;consistent with", + "example_sentence_native": "Su decisión fue acorde con la ley.", + "example_sentence_english": "His decision was in accordance with the law.", + "pos": "adjective", + "word_frequency": 3823 + }, + { + "word": "acostumbrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get used to;to accustom", + "example_sentence_native": "Me estoy acostumbrando al nuevo horario.", + "example_sentence_english": "I'm getting used to the new schedule.", + "pos": "verb", + "word_frequency": 3824 + }, + { + "word": "advertencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warning", + "example_sentence_native": "Ignoró la advertencia de peligro.", + "example_sentence_english": "He ignored the warning of danger.", + "pos": "noun", + "word_frequency": 3826 + }, + { + "word": "afortunadamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortunately", + "example_sentence_native": "Afortunadamente, llegamos a tiempo.", + "example_sentence_english": "Fortunately, we arrived on time.", + "pos": "adverb", + "word_frequency": 3827 + }, + { + "word": "agarrar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to grab;to catch;to hold", + "example_sentence_native": "Agarra mi mano.", + "example_sentence_english": "Grab my hand.", + "pos": "verb", + "word_frequency": 3828 + }, + { + "word": "arquitecto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "architect", + "example_sentence_native": "Mi padre es arquitecto.", + "example_sentence_english": "My father is an architect.", + "pos": "noun", + "word_frequency": 3832 + }, + { + "word": "arzobispo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archbishop", + "example_sentence_native": "El arzobispo dio un discurso.", + "example_sentence_english": "The archbishop gave a speech.", + "pos": "noun", + "word_frequency": 3833 + }, + { + "word": "asesinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assassinated;murdered", + "example_sentence_native": "El rey fue asesinado.", + "example_sentence_english": "The king was assassinated.", + "pos": "adjective", + "word_frequency": 3834 + }, + { + "word": "atleta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "athlete", + "example_sentence_native": "Es un atleta muy rápido.", + "example_sentence_english": "He is a very fast athlete.", + "pos": "noun", + "word_frequency": 3835 + }, + { + "word": "bestia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beast;animal", + "example_sentence_native": "La bestia rugió en la noche.", + "example_sentence_english": "The beast roared in the night.", + "pos": "noun", + "word_frequency": 3836 + }, + { + "word": "bota", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boot", + "example_sentence_native": "Llevo botas de cuero.", + "example_sentence_english": "I wear leather boots.", + "pos": "noun", + "word_frequency": 3837 + }, + { + "word": "casar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to marry", + "example_sentence_native": "Se van a casar el próximo año.", + "example_sentence_english": "They are going to marry next year.", + "pos": "verb", + "word_frequency": 3838 + }, + { + "word": "caña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cane;reed;(small glass of) beer", + "example_sentence_native": "Pedí una caña en el bar.", + "example_sentence_english": "I ordered a small beer at the bar.", + "pos": "noun", + "word_frequency": 3839 + }, + { + "word": "cinturón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belt", + "example_sentence_native": "Abróchate el cinturón de seguridad.", + "example_sentence_english": "Fasten your seatbelt.", + "pos": "noun", + "word_frequency": 3840 + }, + { + "word": "comando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "command;commando unit", + "example_sentence_native": "El comando militar ejecutó la misión.", + "example_sentence_english": "The military commando executed the mission.", + "pos": "noun", + "word_frequency": 3841 + }, + { + "word": "consultar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consult", + "example_sentence_native": "Debes consultar a un médico.", + "example_sentence_english": "You should consult a doctor.", + "pos": "verb", + "word_frequency": 3842 + }, + { + "word": "despierto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "awake;sharp", + "example_sentence_native": "Estoy despierto desde las seis de la mañana.", + "example_sentence_english": "I've been awake since six in the morning.", + "pos": "adjective", + "word_frequency": 3844 + }, + { + "word": "discapacidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disability", + "example_sentence_native": "La ley protege a las personas con discapacidad.", + "example_sentence_english": "The law protects people with disabilities.", + "pos": "noun", + "word_frequency": 3845 + }, + { + "word": "disminuir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decrease;to reduce", + "example_sentence_native": "Es importante disminuir el consumo de azúcar.", + "example_sentence_english": "It's important to decrease sugar consumption.", + "pos": "verb", + "word_frequency": 3846 + }, + { + "word": "distinción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinction", + "example_sentence_native": "No hay distinción entre ellos.", + "example_sentence_english": "There is no distinction between them.", + "pos": "noun", + "word_frequency": 3847 + }, + { + "word": "divorcio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divorce", + "example_sentence_native": "Su divorcio fue muy complicado.", + "example_sentence_english": "Their divorce was very complicated.", + "pos": "noun", + "word_frequency": 3848 + }, + { + "word": "envidia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "envy", + "example_sentence_native": "Siente mucha envidia por su éxito.", + "example_sentence_english": "He feels a lot of envy for her success.", + "pos": "noun", + "word_frequency": 3849 + }, + { + "word": "estatus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "status", + "example_sentence_native": "Su estatus social es muy alto.", + "example_sentence_english": "His social status is very high.", + "pos": "noun", + "word_frequency": 3850 + }, + { + "word": "favorable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favorable", + "example_sentence_native": "Las condiciones son favorables para el viaje.", + "example_sentence_english": "The conditions are favorable for the trip.", + "pos": "adjective", + "word_frequency": 3852 + }, + { + "word": "fibra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fiber", + "example_sentence_native": "Este alimento es rico en fibra.", + "example_sentence_english": "This food is rich in fiber.", + "pos": "noun", + "word_frequency": 3854 + }, + { + "word": "granja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farm", + "example_sentence_native": "Visitamos una granja de animales.", + "example_sentence_english": "We visited an animal farm.", + "pos": "noun", + "word_frequency": 3855 + }, + { + "word": "grano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain;pimple", + "example_sentence_native": "El pan integral está hecho de granos enteros.", + "example_sentence_english": "Whole wheat bread is made from whole grains.", + "pos": "noun", + "word_frequency": 3856 + }, + { + "word": "hábito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habit", + "example_sentence_native": "Es un buen hábito leer todos los días.", + "example_sentence_english": "It's a good habit to read every day.", + "pos": "noun", + "word_frequency": 3857 + }, + { + "word": "impulsar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to propel;to boost;to drive", + "example_sentence_native": "El gobierno quiere impulsar la economía.", + "example_sentence_english": "The government wants to boost the economy.", + "pos": "verb", + "word_frequency": 3858 + }, + { + "word": "injusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfair;unjust", + "example_sentence_native": "Es injusto que no te hayan pagado.", + "example_sentence_english": "It's unfair that they haven't paid you.", + "pos": "adjective", + "word_frequency": 3859 + }, + { + "word": "litro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "liter", + "example_sentence_native": "Necesito un litro de leche.", + "example_sentence_english": "I need a liter of milk.", + "pos": "noun", + "word_frequency": 3865 + }, + { + "word": "mafia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mafia", + "example_sentence_native": "La mafia controla el tráfico de drogas.", + "example_sentence_english": "The mafia controls drug trafficking.", + "pos": "noun", + "word_frequency": 3866 + }, + { + "word": "migrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migrant", + "example_sentence_native": "Muchos migrantes buscan una vida mejor.", + "example_sentence_english": "Many migrants seek a better life.", + "pos": "noun", + "word_frequency": 3867 + }, + { + "word": "monstruo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monster", + "example_sentence_native": "El niño tenía miedo del monstruo debajo de su cama.", + "example_sentence_english": "The child was afraid of the monster under his bed.", + "pos": "noun", + "word_frequency": 3868 + }, + { + "word": "mora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blackberry", + "example_sentence_native": "Me encanta el pastel de mora.", + "example_sentence_english": "I love blackberry pie.", + "pos": "noun", + "word_frequency": 3869 + }, + { + "word": "movilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobility", + "example_sentence_native": "La movilidad urbana es un desafío.", + "example_sentence_english": "Urban mobility is a challenge.", + "pos": "noun", + "word_frequency": 3870 + }, + { + "word": "nombramiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appointment;nomination", + "example_sentence_native": "Su nombramiento como director fue bien recibido.", + "example_sentence_english": "His appointment as director was well received.", + "pos": "noun", + "word_frequency": 3871 + }, + { + "word": "ochenta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eighty", + "example_sentence_native": "Mi abuela tiene ochenta años.", + "example_sentence_english": "My grandmother is eighty years old.", + "pos": "noun", + "word_frequency": 3872 + }, + { + "word": "ofensiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive", + "example_sentence_native": "El ejército lanzó una ofensiva.", + "example_sentence_english": "The army launched an offensive.", + "pos": "noun", + "word_frequency": 3873 + }, + { + "word": "oído", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ear;hearing", + "example_sentence_native": "Me duele el oído.", + "example_sentence_english": "My ear hurts.", + "pos": "noun", + "word_frequency": 3875 + }, + { + "word": "parcialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partially", + "example_sentence_native": "La puerta estaba parcialmente abierta.", + "example_sentence_english": "The door was partially open.", + "pos": "adverb", + "word_frequency": 3876 + }, + { + "word": "pintar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to paint", + "example_sentence_native": "Me gusta pintar paisajes.", + "example_sentence_english": "I like to paint landscapes.", + "pos": "verb", + "word_frequency": 3877 + }, + { + "word": "proyección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projection", + "example_sentence_native": "La proyección de la película fue excelente.", + "example_sentence_english": "The projection of the film was excellent.", + "pos": "noun", + "word_frequency": 3878 + }, + { + "word": "quema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burning;bonfire", + "example_sentence_native": "La quema de basura está prohibida.", + "example_sentence_english": "The burning of trash is prohibited.", + "pos": "noun", + "word_frequency": 3879 + }, + { + "word": "rata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rat", + "example_sentence_native": "La rata corrió por la cocina.", + "example_sentence_english": "The rat ran through the kitchen.", + "pos": "noun", + "word_frequency": 3880 + }, + { + "word": "ray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ray", + "example_sentence_native": "Un rayo de sol entró por la ventana.", + "example_sentence_english": "A ray of sunshine came through the window.", + "pos": "noun", + "word_frequency": 3881 + }, + { + "word": "recinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enclosure", + "example_sentence_native": "El evento se celebró en un recinto ferial.", + "example_sentence_english": "The event was held in an exhibition enclosure.", + "pos": "noun", + "word_frequency": 3882 + }, + { + "word": "recorrer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to travel;to go through", + "example_sentence_native": "Vamos a recorrer toda la ciudad.", + "example_sentence_english": "We are going to travel all over the city.", + "pos": "verb", + "word_frequency": 3883 + }, + { + "word": "relevancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevance", + "example_sentence_native": "Su opinión tiene mucha relevancia en este asunto.", + "example_sentence_english": "His opinion has a lot of relevance in this matter.", + "pos": "noun", + "word_frequency": 3884 + }, + { + "word": "rendir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to yield;to perform", + "example_sentence_native": "El equipo no pudo rendir al máximo.", + "example_sentence_english": "The team could not perform at its best.", + "pos": "verb", + "word_frequency": 3885 + }, + { + "word": "restauración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restoration", + "example_sentence_native": "La restauración del edificio duró años.", + "example_sentence_english": "The restoration of the building took years.", + "pos": "noun", + "word_frequency": 3886 + }, + { + "word": "rodilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "knee", + "example_sentence_native": "Me golpeé la rodilla al caer.", + "example_sentence_english": "I hit my knee when I fell.", + "pos": "noun", + "word_frequency": 3887 + }, + { + "word": "ruptura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rupture;break-up", + "example_sentence_native": "La ruptura de la tubería causó una inundación.", + "example_sentence_english": "The rupture of the pipe caused a flood.", + "pos": "noun", + "word_frequency": 3888 + }, + { + "word": "saldo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balance", + "example_sentence_native": "Revisa el saldo de tu cuenta bancaria.", + "example_sentence_english": "Check the balance of your bank account.", + "pos": "noun", + "word_frequency": 3889 + }, + { + "word": "tanque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tank", + "example_sentence_native": "El tanque de gasolina está casi vacío.", + "example_sentence_english": "The gas tank is almost empty.", + "pos": "noun", + "word_frequency": 3890 + }, + { + "word": "vigencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "validity;effectiveness", + "example_sentence_native": "La ley entra en vigencia mañana.", + "example_sentence_english": "The law comes into effect tomorrow.", + "pos": "noun", + "word_frequency": 3891 + }, + { + "word": "viuda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widow", + "example_sentence_native": "La viuda heredó la casa.", + "example_sentence_english": "The widow inherited the house.", + "pos": "noun", + "word_frequency": 3892 + }, + { + "word": "wifi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Wi-Fi", + "example_sentence_native": "¿Hay wifi gratis aquí?", + "example_sentence_english": "Is there free Wi-Fi here?", + "pos": "noun", + "word_frequency": 3893 + }, + { + "word": "abarcar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cover;to encompass", + "example_sentence_native": "El estudio abarca varios temas.", + "example_sentence_english": "The study covers several topics.", + "pos": "verb", + "word_frequency": 3895 + }, + { + "word": "ahorita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "right now;in a moment", + "example_sentence_native": "Vengo ahorita mismo.", + "example_sentence_english": "I'm coming right now.", + "pos": "adverb", + "word_frequency": 3897 + }, + { + "word": "aislamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolation", + "example_sentence_native": "El aislamiento social puede afectar la salud mental.", + "example_sentence_english": "Social isolation can affect mental health.", + "pos": "noun", + "word_frequency": 3898 + }, + { + "word": "alcaldía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mayor's office;city hall", + "example_sentence_native": "La alcaldía anunció nuevas medidas.", + "example_sentence_english": "The mayor's office announced new measures.", + "pos": "noun", + "word_frequency": 3899 + }, + { + "word": "buque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ship;vessel", + "example_sentence_native": "El buque de carga zarpó del puerto.", + "example_sentence_english": "The cargo ship sailed from the port.", + "pos": "noun", + "word_frequency": 3900 + }, + { + "word": "burla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mockery;joke", + "example_sentence_native": "Sus comentarios fueron objeto de burla.", + "example_sentence_english": "His comments were the subject of mockery.", + "pos": "noun", + "word_frequency": 3901 + }, + { + "word": "conectar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to connect", + "example_sentence_native": "Necesito conectar mi teléfono al cargador.", + "example_sentence_english": "I need to connect my phone to the charger.", + "pos": "verb", + "word_frequency": 3902 + }, + { + "word": "contemporáneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemporary", + "example_sentence_native": "El arte contemporáneo es muy diverso.", + "example_sentence_english": "Contemporary art is very diverse.", + "pos": "adjective", + "word_frequency": 3903 + }, + { + "word": "dominante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominant", + "example_sentence_native": "Es una especie dominante en este ecosistema.", + "example_sentence_english": "It is a dominant species in this ecosystem.", + "pos": "adjective", + "word_frequency": 3904 + }, + { + "word": "escape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "escape;exhaust", + "example_sentence_native": "El prisionero planeó su escape.", + "example_sentence_english": "The prisoner planned his escape.", + "pos": "noun", + "word_frequency": 3905 + }, + { + "word": "espectro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spectrum;ghost", + "example_sentence_native": "El arcoíris muestra un espectro de colores.", + "example_sentence_english": "The rainbow shows a spectrum of colors.", + "pos": "noun", + "word_frequency": 3906 + }, + { + "word": "eventualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eventually", + "example_sentence_native": "Eventualmente, todos los problemas se resuelven.", + "example_sentence_english": "Eventually, all problems are resolved.", + "pos": "adverb", + "word_frequency": 3907 + }, + { + "word": "fatal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fatal;terrible", + "example_sentence_native": "La noticia fue fatal para ellos.", + "example_sentence_english": "The news was terrible for them.", + "pos": "adjective", + "word_frequency": 3909 + }, + { + "word": "fundamentalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamentally", + "example_sentence_native": "Fundamentalmente, el problema es la falta de recursos.", + "example_sentence_english": "Fundamentally, the problem is the lack of resources.", + "pos": "adverb", + "word_frequency": 3910 + }, + { + "word": "fusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fusion;merger", + "example_sentence_native": "La fusión de las dos empresas fue exitosa.", + "example_sentence_english": "The merger of the two companies was successful.", + "pos": "noun", + "word_frequency": 3911 + }, + { + "word": "golf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "golf", + "example_sentence_native": "Le gusta jugar al golf los fines de semana.", + "example_sentence_english": "He likes to play golf on weekends.", + "pos": "noun", + "word_frequency": 3912 + }, + { + "word": "green", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "green (golf course part)", + "example_sentence_native": "La pelota cayó cerca del green.", + "example_sentence_english": "The ball landed near the green.", + "pos": "noun", + "word_frequency": 3913 + }, + { + "word": "hallar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to find;to discover", + "example_sentence_native": "Pudieron hallar la solución al problema.", + "example_sentence_english": "They were able to find the solution to the problem.", + "pos": "verb", + "word_frequency": 3914 + }, + { + "word": "id", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ID;identification", + "example_sentence_native": "Necesito tu ID para verificar tu identidad.", + "example_sentence_english": "I need your ID to verify your identity.", + "pos": "noun", + "word_frequency": 3915 + }, + { + "word": "implementar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implement", + "example_sentence_native": "Van a implementar nuevas políticas.", + "example_sentence_english": "They are going to implement new policies.", + "pos": "verb", + "word_frequency": 3916 + }, + { + "word": "incorporación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incorporation;inclusion", + "example_sentence_native": "La incorporación de nuevas tecnologías es clave.", + "example_sentence_english": "The incorporation of new technologies is key.", + "pos": "noun", + "word_frequency": 3917 + }, + { + "word": "insulto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insult", + "example_sentence_native": "No tolero ningún insulto.", + "example_sentence_english": "I don't tolerate any insult.", + "pos": "noun", + "word_frequency": 3919 + }, + { + "word": "intervenir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intervene", + "example_sentence_native": "La policía tuvo que intervenir en la disputa.", + "example_sentence_english": "The police had to intervene in the dispute.", + "pos": "verb", + "word_frequency": 3920 + }, + { + "word": "latinoamericano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latin American", + "example_sentence_native": "La cultura latinoamericana es muy rica.", + "example_sentence_english": "Latin American culture is very rich.", + "pos": "adjective", + "word_frequency": 3922 + }, + { + "word": "lazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bond;tie;knot", + "example_sentence_native": "Tienen un fuerte lazo de amistad.", + "example_sentence_english": "They have a strong bond of friendship.", + "pos": "noun", + "word_frequency": 3923 + }, + { + "word": "modalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modality;mode", + "example_sentence_native": "Hay diferentes modalidades de estudio.", + "example_sentence_english": "There are different modalities of study.", + "pos": "noun", + "word_frequency": 3925 + }, + { + "word": "monasterio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monastery", + "example_sentence_native": "Visitamos un antiguo monasterio en la montaña.", + "example_sentence_english": "We visited an old monastery in the mountains.", + "pos": "noun", + "word_frequency": 3926 + }, + { + "word": "opinar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to think;to opine", + "example_sentence_native": "¿Qué opinas de esta idea?", + "example_sentence_english": "What do you think of this idea?", + "pos": "verb", + "word_frequency": 3927 + }, + { + "word": "orquesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchestra", + "example_sentence_native": "La orquesta tocó una sinfonía hermosa.", + "example_sentence_english": "The orchestra played a beautiful symphony.", + "pos": "noun", + "word_frequency": 3928 + }, + { + "word": "papi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "daddy", + "example_sentence_native": "Mi papi me compró un helado.", + "example_sentence_english": "My daddy bought me an ice cream.", + "pos": "noun", + "word_frequency": 3929 + }, + { + "word": "pegar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stick;to hit", + "example_sentence_native": "Puedes pegar la foto en el álbum.", + "example_sentence_english": "You can stick the photo in the album.", + "pos": "verb", + "word_frequency": 3931 + }, + { + "word": "perdido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lost", + "example_sentence_native": "Estoy perdido, no sé dónde estoy.", + "example_sentence_english": "I am lost, I don't know where I am.", + "pos": "adjective", + "word_frequency": 3932 + }, + { + "word": "políticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "politically", + "example_sentence_native": "Es un tema políticamente sensible.", + "example_sentence_english": "It is a politically sensitive topic.", + "pos": "adverb", + "word_frequency": 3934 + }, + { + "word": "preferencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preference", + "example_sentence_native": "¿Cuál es tu preferencia de color?", + "example_sentence_english": "What is your color preference?", + "pos": "noun", + "word_frequency": 3935 + }, + { + "word": "recompensa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reward", + "example_sentence_native": "Recibió una recompensa por su valentía.", + "example_sentence_english": "He received a reward for his bravery.", + "pos": "noun", + "word_frequency": 3936 + }, + { + "word": "rehabilitación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rehabilitation", + "example_sentence_native": "Necesita rehabilitación después de la operación.", + "example_sentence_english": "He needs rehabilitation after the operation.", + "pos": "noun", + "word_frequency": 3937 + }, + { + "word": "rollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roll;hassle", + "example_sentence_native": "No quiero más de este rollo.", + "example_sentence_english": "I don't want any more of this hassle.", + "pos": "noun", + "word_frequency": 3938 + }, + { + "word": "romance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "romance", + "example_sentence_native": "Su historia de amor es un verdadero romance.", + "example_sentence_english": "Their love story is a true romance.", + "pos": "noun", + "word_frequency": 3939 + }, + { + "word": "ruina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruin", + "example_sentence_native": "Las ruinas romanas son impresionantes.", + "example_sentence_english": "The Roman ruins are impressive.", + "pos": "noun", + "word_frequency": 3941 + }, + { + "word": "sesenta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixty", + "example_sentence_native": "Tengo sesenta años.", + "example_sentence_english": "I am sixty years old.", + "pos": "noun", + "word_frequency": 3942 + }, + { + "word": "sospechoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspicious", + "example_sentence_native": "El comportamiento del hombre era sospechoso.", + "example_sentence_english": "The man's behavior was suspicious.", + "pos": "adjective", + "word_frequency": 3944 + }, + { + "word": "sucesión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "succession", + "example_sentence_native": "La sucesión al trono es un tema complejo.", + "example_sentence_english": "The succession to the throne is a complex issue.", + "pos": "noun", + "word_frequency": 3945 + }, + { + "word": "sustancia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "substance", + "example_sentence_native": "Esta sustancia es muy tóxica.", + "example_sentence_english": "This substance is very toxic.", + "pos": "noun", + "word_frequency": 3947 + }, + { + "word": "titulo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "title;degree", + "example_sentence_native": "¿Cuál es el título de tu libro?", + "example_sentence_english": "What is the title of your book?", + "pos": "noun", + "word_frequency": 3948 + }, + { + "word": "tramo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stretch;section", + "example_sentence_native": "Este tramo de la carretera está en obras.", + "example_sentence_english": "This stretch of the road is under construction.", + "pos": "noun", + "word_frequency": 3949 + }, + { + "word": "trasero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rear;back", + "example_sentence_native": "La puerta trasera está cerrada.", + "example_sentence_english": "The back door is closed.", + "pos": "adjective", + "word_frequency": 3950 + }, + { + "word": "trece", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirteen", + "example_sentence_native": "Tengo trece años.", + "example_sentence_english": "I am thirteen years old.", + "pos": "noun", + "word_frequency": 3951 + }, + { + "word": "agujero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hole", + "example_sentence_native": "Hay un agujero en mi calcetín.", + "example_sentence_english": "There is a hole in my sock.", + "pos": "noun", + "word_frequency": 3957 + }, + { + "word": "aparente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparent", + "example_sentence_native": "Su calma era solo aparente.", + "example_sentence_english": "His calm was only apparent.", + "pos": "adjective", + "word_frequency": 3958 + }, + { + "word": "barro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud;clay", + "example_sentence_native": "Los niños jugaban en el barro.", + "example_sentence_english": "The children were playing in the mud.", + "pos": "noun", + "word_frequency": 3959 + }, + { + "word": "bici", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bike", + "example_sentence_native": "Me gusta pasear en bici por el parque.", + "example_sentence_english": "I like to ride my bike in the park.", + "pos": "noun", + "word_frequency": 3961 + }, + { + "word": "camioneta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pickup truck;van", + "example_sentence_native": "Necesitamos una camioneta grande para transportar los muebles.", + "example_sentence_english": "We need a large pickup truck to transport the furniture.", + "pos": "noun", + "word_frequency": 3963 + }, + { + "word": "cerebral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cerebral", + "example_sentence_native": "Sufrió una hemorragia cerebral después del accidente.", + "example_sentence_english": "He suffered a cerebral hemorrhage after the accident.", + "pos": "adjective", + "word_frequency": 3964 + }, + { + "word": "coco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coconut", + "example_sentence_native": "Me encanta el agua de coco fría en verano.", + "example_sentence_english": "I love cold coconut water in summer.", + "pos": "noun", + "word_frequency": 3965 + }, + { + "word": "conspiración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspiracy", + "example_sentence_native": "Se descubrió una conspiración para derrocar al gobierno.", + "example_sentence_english": "A conspiracy to overthrow the government was discovered.", + "pos": "noun", + "word_frequency": 3966 + }, + { + "word": "coordinador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coordinator", + "example_sentence_native": "El coordinador del proyecto nos dio las nuevas instrucciones.", + "example_sentence_english": "The project coordinator gave us the new instructions.", + "pos": "noun", + "word_frequency": 3967 + }, + { + "word": "corregir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to correct", + "example_sentence_native": "Por favor, corrige los errores en este informe.", + "example_sentence_english": "Please, correct the errors in this report.", + "pos": "verb", + "word_frequency": 3968 + }, + { + "word": "curva", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curve", + "example_sentence_native": "El coche tomó la curva demasiado rápido.", + "example_sentence_english": "The car took the curve too fast.", + "pos": "noun", + "word_frequency": 3969 + }, + { + "word": "delincuencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquency;crime", + "example_sentence_native": "La delincuencia ha aumentado en la ciudad últimamente.", + "example_sentence_english": "Crime has increased in the city lately.", + "pos": "noun", + "word_frequency": 3970 + }, + { + "word": "deriva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drift;derivation", + "example_sentence_native": "El barco quedó a la deriva en medio de la tormenta.", + "example_sentence_english": "The boat was left adrift in the middle of the storm.", + "pos": "noun", + "word_frequency": 3971 + }, + { + "word": "desnudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "naked;bare", + "example_sentence_native": "El árbol estaba desnudo de hojas en invierno.", + "example_sentence_english": "The tree was bare of leaves in winter.", + "pos": "adjective", + "word_frequency": 3972 + }, + { + "word": "dividir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to divide", + "example_sentence_native": "Vamos a dividir la pizza en ocho porciones.", + "example_sentence_english": "We are going to divide the pizza into eight slices.", + "pos": "verb", + "word_frequency": 3973 + }, + { + "word": "emitir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emit;to broadcast;to issue", + "example_sentence_native": "La estación de radio va a emitir el concierto en vivo.", + "example_sentence_english": "The radio station is going to broadcast the concert live.", + "pos": "verb", + "word_frequency": 3974 + }, + { + "word": "establecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "established", + "example_sentence_native": "Es un procedimiento establecido para estos casos.", + "example_sentence_english": "It is an established procedure for these cases.", + "pos": "adjective", + "word_frequency": 3978 + }, + { + "word": "estrecho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narrow;tight", + "example_sentence_native": "El camino era muy estrecho y difícil de transitar.", + "example_sentence_english": "The road was very narrow and difficult to travel.", + "pos": "adjective", + "word_frequency": 3979 + }, + { + "word": "exitoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successful", + "example_sentence_native": "Su nuevo negocio ha sido muy exitoso.", + "example_sentence_english": "His new business has been very successful.", + "pos": "adjective", + "word_frequency": 3980 + }, + { + "word": "exploración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploration;scan", + "example_sentence_native": "La exploración espacial es un campo fascinante.", + "example_sentence_english": "Space exploration is a fascinating field.", + "pos": "noun", + "word_frequency": 3981 + }, + { + "word": "explorar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explore", + "example_sentence_native": "Queremos explorar nuevas oportunidades de negocio.", + "example_sentence_english": "We want to explore new business opportunities.", + "pos": "verb", + "word_frequency": 3982 + }, + { + "word": "filtro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filter", + "example_sentence_native": "Necesitamos cambiar el filtro del aire acondicionado.", + "example_sentence_english": "We need to change the air conditioner filter.", + "pos": "noun", + "word_frequency": 3983 + }, + { + "word": "financiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to finance", + "example_sentence_native": "El banco decidió financiar el proyecto de construcción.", + "example_sentence_english": "The bank decided to finance the construction project.", + "pos": "verb", + "word_frequency": 3984 + }, + { + "word": "fomento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "promotion;development;encouragement", + "example_sentence_native": "El gobierno trabaja en el fomento del turismo local.", + "example_sentence_english": "The government works on the promotion of local tourism.", + "pos": "noun", + "word_frequency": 3985 + }, + { + "word": "fotógrafo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photographer", + "example_sentence_native": "Contratamos a un fotógrafo profesional para la boda.", + "example_sentence_english": "We hired a professional photographer for the wedding.", + "pos": "noun", + "word_frequency": 3987 + }, + { + "word": "funeral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funeral", + "example_sentence_native": "Asistimos al funeral de su abuela el sábado.", + "example_sentence_english": "We attended his grandmother's funeral on Saturday.", + "pos": "noun", + "word_frequency": 3988 + }, + { + "word": "gobernación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "government;governorship;interior ministry", + "example_sentence_native": "La gobernación anunció nuevas medidas de seguridad.", + "example_sentence_english": "The government announced new security measures.", + "pos": "noun", + "word_frequency": 3989 + }, + { + "word": "gubernamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governmental", + "example_sentence_native": "Se requiere aprobación gubernamental para el proyecto.", + "example_sentence_english": "Governmental approval is required for the project.", + "pos": "adjective", + "word_frequency": 3990 + }, + { + "word": "horizonte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizon", + "example_sentence_native": "El sol se puso en el horizonte, pintando el cielo de naranja.", + "example_sentence_english": "The sun set on the horizon, painting the sky orange.", + "pos": "noun", + "word_frequency": 3994 + }, + { + "word": "incertidumbre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertainty", + "example_sentence_native": "Hay mucha incertidumbre sobre el futuro económico.", + "example_sentence_english": "There is a lot of uncertainty about the economic future.", + "pos": "noun", + "word_frequency": 3995 + }, + { + "word": "infección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infection", + "example_sentence_native": "Necesitas antibióticos para tratar la infección.", + "example_sentence_english": "You need antibiotics to treat the infection.", + "pos": "noun", + "word_frequency": 3996 + }, + { + "word": "injusticia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injustice", + "example_sentence_native": "Luchamos contra la injusticia en todas sus formas.", + "example_sentence_english": "We fight against injustice in all its forms.", + "pos": "noun", + "word_frequency": 3997 + }, + { + "word": "inmenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immense;huge", + "example_sentence_native": "El océano es inmenso y misterioso.", + "example_sentence_english": "The ocean is immense and mysterious.", + "pos": "adjective", + "word_frequency": 3998 + }, + { + "word": "inspección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspection", + "example_sentence_native": "La inspección de seguridad reveló algunas fallas.", + "example_sentence_english": "The safety inspection revealed some flaws.", + "pos": "noun", + "word_frequency": 3999 + }, + { + "word": "inspirado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspired", + "example_sentence_native": "Estaba muy inspirado después de leer el libro.", + "example_sentence_english": "He was very inspired after reading the book.", + "pos": "adjective", + "word_frequency": 4000 + }, + { + "word": "invisible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invisible", + "example_sentence_native": "El hilo era casi invisible.", + "example_sentence_english": "The thread was almost invisible.", + "pos": "adjective", + "word_frequency": 4001 + }, + { + "word": "juguete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toy", + "example_sentence_native": "El niño pidió un juguete nuevo.", + "example_sentence_english": "The child asked for a new toy.", + "pos": "noun", + "word_frequency": 4002 + }, + { + "word": "junior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junior", + "example_sentence_native": "Es el hijo junior de la familia.", + "example_sentence_english": "He is the junior son of the family.", + "pos": "noun", + "word_frequency": 4003 + }, + { + "word": "lente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lens", + "example_sentence_native": "La cámara tiene una lente de alta calidad.", + "example_sentence_english": "The camera has a high-quality lens.", + "pos": "noun", + "word_frequency": 4004 + }, + { + "word": "masacre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "massacre", + "example_sentence_native": "La historia registra varias masacres terribles.", + "example_sentence_english": "History records several terrible massacres.", + "pos": "noun", + "word_frequency": 4005 + }, + { + "word": "metropolitano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolitan", + "example_sentence_native": "La zona metropolitana es muy grande.", + "example_sentence_english": "The metropolitan area is very large.", + "pos": "adjective", + "word_frequency": 4006 + }, + { + "word": "mochila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "backpack", + "example_sentence_native": "Llevo mis libros en la mochila.", + "example_sentence_english": "I carry my books in my backpack.", + "pos": "noun", + "word_frequency": 4007 + }, + { + "word": "nativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native", + "example_sentence_native": "Es un hablante nativo de español.", + "example_sentence_english": "He is a native Spanish speaker.", + "pos": "noun", + "word_frequency": 4008 + }, + { + "word": "nombrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to name;to appoint", + "example_sentence_native": "Van a nombrar al nuevo director mañana.", + "example_sentence_english": "They are going to name the new director tomorrow.", + "pos": "verb", + "word_frequency": 4010 + }, + { + "word": "perteneciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belonging to;pertaining to", + "example_sentence_native": "Los documentos pertenecientes al caso están en la mesa.", + "example_sentence_english": "The documents pertaining to the case are on the table.", + "pos": "adjective", + "word_frequency": 4012 + }, + { + "word": "policia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police (force);police officer", + "example_sentence_native": "La policia llegó rápidamente al lugar.", + "example_sentence_english": "The police arrived quickly at the scene.", + "pos": "noun", + "word_frequency": 4013 + }, + { + "word": "proveniente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coming from;originating from", + "example_sentence_native": "La información proveniente de esa fuente es fiable.", + "example_sentence_english": "The information coming from that source is reliable.", + "pos": "adjective", + "word_frequency": 4014 + }, + { + "word": "reclamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claim;complaint", + "example_sentence_native": "Presentó un reclamo por el producto defectuoso.", + "example_sentence_english": "He filed a complaint for the defective product.", + "pos": "noun", + "word_frequency": 4015 + }, + { + "word": "reparación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repair;reparation", + "example_sentence_native": "El coche necesita una reparación urgente.", + "example_sentence_english": "The car needs an urgent repair.", + "pos": "noun", + "word_frequency": 4016 + }, + { + "word": "resuelto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolved;determined", + "example_sentence_native": "El problema ya está resuelto.", + "example_sentence_english": "The problem is already resolved.", + "pos": "adjective", + "word_frequency": 4017 + }, + { + "word": "robot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "robot", + "example_sentence_native": "El robot puede realizar tareas complejas.", + "example_sentence_english": "The robot can perform complex tasks.", + "pos": "noun", + "word_frequency": 4018 + }, + { + "word": "satélite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satellite", + "example_sentence_native": "El satélite orbita alrededor de la Tierra.", + "example_sentence_english": "The satellite orbits around the Earth.", + "pos": "noun", + "word_frequency": 4019 + }, + { + "word": "tio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "uncle", + "example_sentence_native": "Mi tio viene a visitarnos.", + "example_sentence_english": "My uncle is coming to visit us.", + "pos": "noun", + "word_frequency": 4021 + }, + { + "word": "trigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wheat", + "example_sentence_native": "El pan se hace con harina de trigo.", + "example_sentence_english": "Bread is made with wheat flour.", + "pos": "noun", + "word_frequency": 4022 + }, + { + "word": "vanguardia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vanguard;forefront", + "example_sentence_native": "Este artista está a la vanguardia del movimiento.", + "example_sentence_english": "This artist is at the forefront of the movement.", + "pos": "noun", + "word_frequency": 4024 + }, + { + "word": "vertical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vertical", + "example_sentence_native": "La línea es completamente vertical.", + "example_sentence_english": "The line is completely vertical.", + "pos": "adjective", + "word_frequency": 4025 + }, + { + "word": "agrupación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group;association", + "example_sentence_native": "La agrupación musical dio un concierto.", + "example_sentence_english": "The musical group gave a concert.", + "pos": "noun", + "word_frequency": 4028 + }, + { + "word": "altar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "altar", + "example_sentence_native": "Colocaron flores en el altar.", + "example_sentence_english": "They placed flowers on the altar.", + "pos": "noun", + "word_frequency": 4030 + }, + { + "word": "atracción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attraction", + "example_sentence_native": "El parque tiene muchas atracciones nuevas.", + "example_sentence_english": "The park has many new attractions.", + "pos": "noun", + "word_frequency": 4031 + }, + { + "word": "baloncesto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "example_sentence_native": "Me gusta jugar al baloncesto.", + "example_sentence_english": "I like to play basketball.", + "pos": "noun", + "word_frequency": 4032 + }, + { + "word": "borracho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk", + "example_sentence_native": "No podía conducir porque estaba borracho.", + "example_sentence_english": "He couldn't drive because he was drunk.", + "pos": "adjective", + "word_frequency": 4035 + }, + { + "word": "cagar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to mess up (vulgar)", + "example_sentence_native": "No quiero cagarla en el examen.", + "example_sentence_english": "I don't want to mess it up on the exam.", + "pos": "verb", + "word_frequency": 4036 + }, + { + "word": "capitalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalist", + "example_sentence_native": "Es un sistema económico capitalista.", + "example_sentence_english": "It is a capitalist economic system.", + "pos": "adjective", + "word_frequency": 4037 + }, + { + "word": "coincidencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coincidence", + "example_sentence_native": "Fue pura coincidencia que nos encontráramos.", + "example_sentence_english": "It was pure coincidence that we met.", + "pos": "noun", + "word_frequency": 4038 + }, + { + "word": "cotidiano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily;everyday", + "example_sentence_native": "Es parte de la vida cotidiana.", + "example_sentence_english": "It is part of everyday life.", + "pos": "adjective", + "word_frequency": 4039 + }, + { + "word": "derivado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "derivative;product", + "example_sentence_native": "El chocolate es un derivado del cacao.", + "example_sentence_english": "Chocolate is a derivative of cocoa.", + "pos": "noun", + "word_frequency": 4041 + }, + { + "word": "diosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goddess", + "example_sentence_native": "Atenea era la diosa de la sabiduría.", + "example_sentence_english": "Athena was the goddess of wisdom.", + "pos": "noun", + "word_frequency": 4042 + }, + { + "word": "doctorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctorate;PhD", + "example_sentence_native": "Está haciendo su doctorado en física.", + "example_sentence_english": "He is doing his doctorate in physics.", + "pos": "noun", + "word_frequency": 4043 + }, + { + "word": "especialidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialty;major", + "example_sentence_native": "Su especialidad es la medicina interna.", + "example_sentence_english": "His specialty is internal medicine.", + "pos": "noun", + "word_frequency": 4045 + }, + { + "word": "exponer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expose;to exhibit;to explain", + "example_sentence_native": "Van a exponer sus obras de arte en la galería.", + "example_sentence_english": "They are going to exhibit their artworks in the gallery.", + "pos": "verb", + "word_frequency": 4046 + }, + { + "word": "expuesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exposed;exhibited", + "example_sentence_native": "El cuadro está expuesto en el museo.", + "example_sentence_english": "The painting is exhibited in the museum.", + "pos": "adjective", + "word_frequency": 4047 + }, + { + "word": "extenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extensive;vast", + "example_sentence_native": "El informe es muy extenso y detallado.", + "example_sentence_english": "The report is very extensive and detailed.", + "pos": "adjective", + "word_frequency": 4048 + }, + { + "word": "extracción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraction;removal", + "example_sentence_native": "La extracción de la muela fue dolorosa.", + "example_sentence_english": "The tooth extraction was painful.", + "pos": "noun", + "word_frequency": 4049 + }, + { + "word": "fallecimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death;demise", + "example_sentence_native": "Lamentamos el fallecimiento de su abuela.", + "example_sentence_english": "We regret the death of your grandmother.", + "pos": "noun", + "word_frequency": 4050 + }, + { + "word": "fantástico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fantastic;great", + "example_sentence_native": "¡Qué idea tan fantástica!", + "example_sentence_english": "What a fantastic idea!", + "pos": "adjective", + "word_frequency": 4051 + }, + { + "word": "flaco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin;skinny", + "example_sentence_native": "Mi perro es muy flaco, necesita comer más.", + "example_sentence_english": "My dog is very thin, he needs to eat more.", + "pos": "adjective", + "word_frequency": 4053 + }, + { + "word": "foco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light bulb;focus", + "example_sentence_native": "Cambié el foco de la lámpara.", + "example_sentence_english": "I changed the light bulb in the lamp.", + "pos": "noun", + "word_frequency": 4054 + }, + { + "word": "franquicia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "franchise", + "example_sentence_native": "Abrió una franquicia de comida rápida.", + "example_sentence_english": "He opened a fast-food franchise.", + "pos": "noun", + "word_frequency": 4055 + }, + { + "word": "gala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gala;formal event", + "example_sentence_native": "Asistió a una gala benéfica.", + "example_sentence_english": "She attended a charity gala.", + "pos": "noun", + "word_frequency": 4057 + }, + { + "word": "historiador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "historian", + "example_sentence_native": "El historiador presentó su nueva investigación.", + "example_sentence_english": "The historian presented his new research.", + "pos": "noun", + "word_frequency": 4060 + }, + { + "word": "inocencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innocence", + "example_sentence_native": "Su inocencia fue probada en el juicio.", + "example_sentence_english": "His innocence was proven in court.", + "pos": "noun", + "word_frequency": 4062 + }, + { + "word": "ironía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irony", + "example_sentence_native": "Hay una gran ironía en esa situación.", + "example_sentence_english": "There is great irony in that situation.", + "pos": "noun", + "word_frequency": 4063 + }, + { + "word": "leal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loyal", + "example_sentence_native": "Es un amigo muy leal.", + "example_sentence_english": "He is a very loyal friend.", + "pos": "adjective", + "word_frequency": 4066 + }, + { + "word": "mascota", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pet", + "example_sentence_native": "Tengo una mascota, un gato.", + "example_sentence_english": "I have a pet, a cat.", + "pos": "noun", + "word_frequency": 4067 + }, + { + "word": "movilización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mobilization", + "example_sentence_native": "Hubo una gran movilización de tropas.", + "example_sentence_english": "There was a large mobilization of troops.", + "pos": "noun", + "word_frequency": 4069 + }, + { + "word": "parroquia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parish;church", + "example_sentence_native": "La parroquia organiza eventos comunitarios.", + "example_sentence_english": "The parish organizes community events.", + "pos": "noun", + "word_frequency": 4071 + }, + { + "word": "pila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "battery;pile;stack", + "example_sentence_native": "Necesito una pila nueva para el control remoto.", + "example_sentence_english": "I need a new battery for the remote control.", + "pos": "noun", + "word_frequency": 4075 + }, + { + "word": "portero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doorman;goalkeeper", + "example_sentence_native": "El portero del edificio es muy amable.", + "example_sentence_english": "The doorman of the building is very kind.", + "pos": "noun", + "word_frequency": 4076 + }, + { + "word": "preocuparse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to worry", + "example_sentence_native": "No te preocupes por eso.", + "example_sentence_english": "Don't worry about that.", + "pos": "verb", + "word_frequency": 4077 + }, + { + "word": "párrafo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paragraph", + "example_sentence_native": "Lee el primer párrafo del texto.", + "example_sentence_english": "Read the first paragraph of the text.", + "pos": "noun", + "word_frequency": 4078 + }, + { + "word": "reflexionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reflect;to ponder", + "example_sentence_native": "Necesito tiempo para reflexionar sobre la decisión.", + "example_sentence_english": "I need time to reflect on the decision.", + "pos": "verb", + "word_frequency": 4079 + }, + { + "word": "residuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residue;waste", + "example_sentence_native": "Debemos reducir la cantidad de residuos que producimos.", + "example_sentence_english": "We must reduce the amount of waste we produce.", + "pos": "noun", + "word_frequency": 4080 + }, + { + "word": "restante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remaining;rest", + "example_sentence_native": "El tiempo restante para el examen es de diez minutos.", + "example_sentence_english": "The remaining time for the exam is ten minutes.", + "pos": "adjective", + "word_frequency": 4081 + }, + { + "word": "sostenible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustainable", + "example_sentence_native": "Necesitamos un desarrollo más sostenible para el futuro.", + "example_sentence_english": "We need more sustainable development for the future.", + "pos": "adjective", + "word_frequency": 4083 + }, + { + "word": "sugerencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suggestion", + "example_sentence_native": "¿Tienes alguna sugerencia para el proyecto?", + "example_sentence_english": "Do you have any suggestions for the project?", + "pos": "noun", + "word_frequency": 4084 + }, + { + "word": "sustitución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitution;replacement", + "example_sentence_native": "Se hizo una sustitución en el equipo de fútbol.", + "example_sentence_english": "A substitution was made in the soccer team.", + "pos": "noun", + "word_frequency": 4085 + }, + { + "word": "taza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cup;mug", + "example_sentence_native": "Me gustaría una taza de café, por favor.", + "example_sentence_english": "I would like a cup of coffee, please.", + "pos": "noun", + "word_frequency": 4086 + }, + { + "word": "tributo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribute;tax", + "example_sentence_native": "La banda tocó un tributo a su cantante favorito.", + "example_sentence_english": "The band played a tribute to their favorite singer.", + "pos": "noun", + "word_frequency": 4087 + }, + { + "word": "turístico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tourist (adj.);touristic", + "example_sentence_native": "Es una zona muy turística en verano.", + "example_sentence_english": "It's a very touristic area in summer.", + "pos": "adjective", + "word_frequency": 4088 + }, + { + "word": "uruguayo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Uruguayan", + "example_sentence_native": "Mi amigo es uruguayo.", + "example_sentence_english": "My friend is Uruguayan.", + "pos": "adjective", + "word_frequency": 4089 + }, + { + "word": "vencido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expired;defeated;overdue", + "example_sentence_native": "La leche está vencida, no la bebas.", + "example_sentence_english": "The milk is expired, don't drink it.", + "pos": "adjective", + "word_frequency": 4090 + }, + { + "word": "visa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visa", + "example_sentence_native": "Necesito una visa para viajar a ese país.", + "example_sentence_english": "I need a visa to travel to that country.", + "pos": "noun", + "word_frequency": 4091 + }, + { + "word": "acordar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree;to remember", + "example_sentence_native": "Acordamos reunirnos mañana.", + "example_sentence_english": "We agreed to meet tomorrow.", + "pos": "verb", + "word_frequency": 4092 + }, + { + "word": "acudir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attend;to go;to resort to", + "example_sentence_native": "Debes acudir a la reunión a tiempo.", + "example_sentence_english": "You must attend the meeting on time.", + "pos": "verb", + "word_frequency": 4093 + }, + { + "word": "agricultor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmer", + "example_sentence_native": "El agricultor trabaja la tierra.", + "example_sentence_english": "The farmer works the land.", + "pos": "noun", + "word_frequency": 4094 + }, + { + "word": "almirante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "admiral", + "example_sentence_native": "El almirante dio la orden de zarpar.", + "example_sentence_english": "The admiral gave the order to set sail.", + "pos": "noun", + "word_frequency": 4096 + }, + { + "word": "bando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side;faction;decree", + "example_sentence_native": "Los dos bandos no lograron llegar a un acuerdo.", + "example_sentence_english": "The two sides could not reach an agreement.", + "pos": "noun", + "word_frequency": 4097 + }, + { + "word": "boludo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idiot;stupid (slang)", + "example_sentence_native": "No seas boludo, piensa antes de hablar.", + "example_sentence_english": "Don't be an idiot, think before you speak.", + "pos": "adjective", + "word_frequency": 4099 + }, + { + "word": "complejidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complexity", + "example_sentence_native": "La complejidad del problema es alta.", + "example_sentence_english": "The complexity of the problem is high.", + "pos": "noun", + "word_frequency": 4100 + }, + { + "word": "comunismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communism", + "example_sentence_native": "El comunismo es una ideología política.", + "example_sentence_english": "Communism is a political ideology.", + "pos": "noun", + "word_frequency": 4101 + }, + { + "word": "continuamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuously;constantly", + "example_sentence_native": "Está lloviendo continuamente desde la mañana.", + "example_sentence_english": "It has been raining continuously since the morning.", + "pos": "adverb", + "word_frequency": 4102 + }, + { + "word": "cosecha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harvest;crop", + "example_sentence_native": "La cosecha de este año fue muy buena.", + "example_sentence_english": "This year's harvest was very good.", + "pos": "noun", + "word_frequency": 4103 + }, + { + "word": "credibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credibility", + "example_sentence_native": "Su credibilidad fue cuestionada después del escándalo.", + "example_sentence_english": "His credibility was questioned after the scandal.", + "pos": "noun", + "word_frequency": 4104 + }, + { + "word": "cualidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quality;characteristic", + "example_sentence_native": "La paciencia es una cualidad importante.", + "example_sentence_english": "Patience is an important quality.", + "pos": "noun", + "word_frequency": 4105 + }, + { + "word": "decoración", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "decoration", + "example_sentence_native": "La decoración de la casa es muy moderna.", + "example_sentence_english": "The house decoration is very modern.", + "pos": "noun", + "word_frequency": 4106 + }, + { + "word": "delantero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forward (sports);front (adj.)", + "example_sentence_native": "El delantero marcó un gol impresionante.", + "example_sentence_english": "The forward scored an impressive goal.", + "pos": "noun", + "word_frequency": 4107 + }, + { + "word": "denominación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denomination;name;designation", + "example_sentence_native": "La denominación de origen protege el vino.", + "example_sentence_english": "The designation of origin protects the wine.", + "pos": "noun", + "word_frequency": 4108 + }, + { + "word": "densidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "density", + "example_sentence_native": "La densidad de población en la ciudad es muy alta.", + "example_sentence_english": "The population density in the city is very high.", + "pos": "noun", + "word_frequency": 4109 + }, + { + "word": "diariamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daily", + "example_sentence_native": "Hago ejercicio diariamente.", + "example_sentence_english": "I exercise daily.", + "pos": "adverb", + "word_frequency": 4110 + }, + { + "word": "donación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "donation", + "example_sentence_native": "Hicimos una donación al hospital local.", + "example_sentence_english": "We made a donation to the local hospital.", + "pos": "noun", + "word_frequency": 4111 + }, + { + "word": "exigencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demand;requirement", + "example_sentence_native": "Las exigencias del trabajo son muy altas.", + "example_sentence_english": "The demands of the job are very high.", + "pos": "noun", + "word_frequency": 4113 + }, + { + "word": "funcional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "functional", + "example_sentence_native": "El nuevo diseño es muy funcional.", + "example_sentence_english": "The new design is very functional.", + "pos": "adjective", + "word_frequency": 4114 + }, + { + "word": "gafa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glasses (singular lens)", + "example_sentence_native": "Necesito mis gafas para leer.", + "example_sentence_english": "I need my glasses to read.", + "pos": "noun", + "word_frequency": 4115 + }, + { + "word": "geográfico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographical", + "example_sentence_native": "Estudiamos las características geográficas de la región.", + "example_sentence_english": "We study the geographical characteristics of the region.", + "pos": "adjective", + "word_frequency": 4116 + }, + { + "word": "gota", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drop (of liquid)", + "example_sentence_native": "Cayó una gota de lluvia en mi ventana.", + "example_sentence_english": "A drop of rain fell on my window.", + "pos": "noun", + "word_frequency": 4117 + }, + { + "word": "hincha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan;supporter (sports)", + "example_sentence_native": "Es un gran hincha del equipo de fútbol.", + "example_sentence_english": "He is a big fan of the soccer team.", + "pos": "noun", + "word_frequency": 4118 + }, + { + "word": "involucrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involved", + "example_sentence_native": "Estaba muy involucrado en el proyecto.", + "example_sentence_english": "He was very involved in the project.", + "pos": "adjective", + "word_frequency": 4119 + }, + { + "word": "mediterráneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mediterranean", + "example_sentence_native": "El clima mediterráneo es suave.", + "example_sentence_english": "The Mediterranean climate is mild.", + "pos": "adjective", + "word_frequency": 4123 + }, + { + "word": "nacido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "born", + "example_sentence_native": "Es un artista nacido para la música.", + "example_sentence_english": "He is an artist born for music.", + "pos": "adjective", + "word_frequency": 4126 + }, + { + "word": "normativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "normative", + "example_sentence_native": "La ley tiene un carácter normativo.", + "example_sentence_english": "The law has a normative character.", + "pos": "adjective", + "word_frequency": 4127 + }, + { + "word": "partidario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporter", + "example_sentence_native": "Soy partidario de la educación pública.", + "example_sentence_english": "I am a supporter of public education.", + "pos": "noun", + "word_frequency": 4129 + }, + { + "word": "pastel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cake", + "example_sentence_native": "Comimos un delicioso pastel de chocolate.", + "example_sentence_english": "We ate a delicious chocolate cake.", + "pos": "noun", + "word_frequency": 4130 + }, + { + "word": "pastilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pill", + "example_sentence_native": "Toma una pastilla para el dolor de cabeza.", + "example_sentence_english": "Take a pill for the headache.", + "pos": "noun", + "word_frequency": 4131 + }, + { + "word": "proceder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proceed", + "example_sentence_native": "Debemos proceder con cautela.", + "example_sentence_english": "We must proceed with caution.", + "pos": "verb", + "word_frequency": 4132 + }, + { + "word": "provisional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisional", + "example_sentence_native": "La decisión es provisional hasta nuevo aviso.", + "example_sentence_english": "The decision is provisional until further notice.", + "pos": "adjective", + "word_frequency": 4133 + }, + { + "word": "radiación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiation", + "example_sentence_native": "La radiación solar puede ser dañina.", + "example_sentence_english": "Solar radiation can be harmful.", + "pos": "noun", + "word_frequency": 4134 + }, + { + "word": "reconocido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognized", + "example_sentence_native": "Es un artista reconocido internacionalmente.", + "example_sentence_english": "He is an internationally recognized artist.", + "pos": "adjective", + "word_frequency": 4135 + }, + { + "word": "republicano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "republican", + "example_sentence_native": "El sistema republicano se basa en la división de poderes.", + "example_sentence_english": "The republican system is based on the separation of powers.", + "pos": "adjective", + "word_frequency": 4136 + }, + { + "word": "ritual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ritual", + "example_sentence_native": "Realizaron un antiguo ritual.", + "example_sentence_english": "They performed an ancient ritual.", + "pos": "noun", + "word_frequency": 4137 + }, + { + "word": "secuencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sequence", + "example_sentence_native": "Sigue la secuencia de pasos.", + "example_sentence_english": "Follow the sequence of steps.", + "pos": "noun", + "word_frequency": 4138 + }, + { + "word": "semanal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weekly", + "example_sentence_native": "La reunión es semanal.", + "example_sentence_english": "The meeting is weekly.", + "pos": "adjective", + "word_frequency": 4139 + }, + { + "word": "sentarse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sit down", + "example_sentence_native": "Por favor, siéntate.", + "example_sentence_english": "Please, sit down.", + "pos": "verb", + "word_frequency": 4140 + }, + { + "word": "sorteo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draw", + "example_sentence_native": "Ganó el premio en el sorteo.", + "example_sentence_english": "He won the prize in the draw.", + "pos": "noun", + "word_frequency": 4142 + }, + { + "word": "sumar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to add", + "example_sentence_native": "Necesitamos sumar los números.", + "example_sentence_english": "We need to add the numbers.", + "pos": "verb", + "word_frequency": 4143 + }, + { + "word": "temático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thematic", + "example_sentence_native": "El parque temático es muy divertido.", + "example_sentence_english": "The thematic park is very fun.", + "pos": "adjective", + "word_frequency": 4144 + }, + { + "word": "tomarse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take (for oneself);to drink", + "example_sentence_native": "Me voy a tomar un café.", + "example_sentence_english": "I'm going to have a coffee.", + "pos": "verb", + "word_frequency": 4145 + }, + { + "word": "trámite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure", + "example_sentence_native": "El trámite burocrático es largo.", + "example_sentence_english": "The bureaucratic procedure is long.", + "pos": "noun", + "word_frequency": 4146 + }, + { + "word": "valorar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to value", + "example_sentence_native": "Debemos valorar el esfuerzo de todos.", + "example_sentence_english": "We must value everyone's effort.", + "pos": "verb", + "word_frequency": 4147 + }, + { + "word": "viajero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traveler", + "example_sentence_native": "El viajero llegó a su destino.", + "example_sentence_english": "The traveler arrived at his destination.", + "pos": "noun", + "word_frequency": 4148 + }, + { + "word": "abiertamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "openly", + "example_sentence_native": "Habló abiertamente sobre sus sentimientos.", + "example_sentence_english": "He spoke openly about his feelings.", + "pos": "adverb", + "word_frequency": 4151 + }, + { + "word": "abordar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approach;to board", + "example_sentence_native": "Vamos a abordar el avión.", + "example_sentence_english": "We are going to board the plane.", + "pos": "verb", + "word_frequency": 4152 + }, + { + "word": "accesible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessible", + "example_sentence_native": "El edificio es accesible para sillas de ruedas.", + "example_sentence_english": "The building is accessible for wheelchairs.", + "pos": "adjective", + "word_frequency": 4154 + }, + { + "word": "acusar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accuse", + "example_sentence_native": "Lo acusaron de robo.", + "example_sentence_english": "They accused him of theft.", + "pos": "verb", + "word_frequency": 4155 + }, + { + "word": "adoptado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adopted", + "example_sentence_native": "El niño fue adoptado por una familia amorosa.", + "example_sentence_english": "The child was adopted by a loving family.", + "pos": "adjective", + "word_frequency": 4156 + }, + { + "word": "ajeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreign;someone else's", + "example_sentence_native": "No te metas en asuntos ajenos.", + "example_sentence_english": "Don't get involved in other people's business.", + "pos": "adjective", + "word_frequency": 4157 + }, + { + "word": "amparo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protection;legal protection", + "example_sentence_native": "Buscó amparo en la ley.", + "example_sentence_english": "He sought protection under the law.", + "pos": "noun", + "word_frequency": 4159 + }, + { + "word": "animación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animation", + "example_sentence_native": "La animación de la película era impresionante.", + "example_sentence_english": "The film's animation was impressive.", + "pos": "noun", + "word_frequency": 4160 + }, + { + "word": "asegurarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ensure;to make sure", + "example_sentence_native": "Debes asegurarte de cerrar la puerta con llave.", + "example_sentence_english": "You must make sure to lock the door.", + "pos": "verb", + "word_frequency": 4162 + }, + { + "word": "aumentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased;augmented", + "example_sentence_native": "Hemos visto un interés aumentado en el proyecto.", + "example_sentence_english": "We have seen an increased interest in the project.", + "pos": "adjective", + "word_frequency": 4164 + }, + { + "word": "automóvil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "automobile;car", + "example_sentence_native": "Compró un automóvil nuevo el mes pasado.", + "example_sentence_english": "He bought a new car last month.", + "pos": "noun", + "word_frequency": 4166 + }, + { + "word": "ayudante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assistant;helper", + "example_sentence_native": "El ayudante del profesor es muy eficiente.", + "example_sentence_english": "The professor's assistant is very efficient.", + "pos": "noun", + "word_frequency": 4167 + }, + { + "word": "bibliografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bibliography", + "example_sentence_native": "La bibliografía al final del libro es muy extensa.", + "example_sentence_english": "The bibliography at the end of the book is very extensive.", + "pos": "noun", + "word_frequency": 4170 + }, + { + "word": "bloquear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to block", + "example_sentence_native": "La nieve bloqueó la carretera.", + "example_sentence_english": "The snow blocked the road.", + "pos": "verb", + "word_frequency": 4171 + }, + { + "word": "bote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boat;can;jar", + "example_sentence_native": "Salimos a pescar en un pequeño bote.", + "example_sentence_english": "We went fishing in a small boat.", + "pos": "noun", + "word_frequency": 4172 + }, + { + "word": "bronca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scolding;row;fight", + "example_sentence_native": "Mi madre me echó una bronca por llegar tarde.", + "example_sentence_english": "My mother gave me a scolding for being late.", + "pos": "noun", + "word_frequency": 4173 + }, + { + "word": "centímetro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "centimeter", + "example_sentence_native": "Mide diez centímetros de largo.", + "example_sentence_english": "It measures ten centimeters long.", + "pos": "noun", + "word_frequency": 4174 + }, + { + "word": "coincidir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to coincide;to agree", + "example_sentence_native": "Nuestras opiniones suelen coincidir.", + "example_sentence_english": "Our opinions usually coincide.", + "pos": "verb", + "word_frequency": 4175 + }, + { + "word": "cole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school (informal)", + "example_sentence_native": "Los niños van al cole por la mañana.", + "example_sentence_english": "The children go to school in the morning.", + "pos": "noun", + "word_frequency": 4176 + }, + { + "word": "comisario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commissioner;police chief", + "example_sentence_native": "El comisario investiga el caso.", + "example_sentence_english": "The commissioner is investigating the case.", + "pos": "noun", + "word_frequency": 4177 + }, + { + "word": "convivencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coexistence;living together", + "example_sentence_native": "La convivencia pacífica es esencial para la sociedad.", + "example_sentence_english": "Peaceful coexistence is essential for society.", + "pos": "noun", + "word_frequency": 4178 + }, + { + "word": "disparar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shoot;to fire", + "example_sentence_native": "El cazador disparó al aire.", + "example_sentence_english": "The hunter shot into the air.", + "pos": "verb", + "word_frequency": 4181 + }, + { + "word": "economista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economist", + "example_sentence_native": "El economista predijo una recesión.", + "example_sentence_english": "The economist predicted a recession.", + "pos": "noun", + "word_frequency": 4182 + }, + { + "word": "económicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economically", + "example_sentence_native": "La empresa no es económicamente viable.", + "example_sentence_english": "The company is not economically viable.", + "pos": "adverb", + "word_frequency": 4183 + }, + { + "word": "ego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ego", + "example_sentence_native": "Su gran ego le impide ver sus errores.", + "example_sentence_english": "His big ego prevents him from seeing his mistakes.", + "pos": "noun", + "word_frequency": 4184 + }, + { + "word": "fanático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fanatic;fan", + "example_sentence_native": "Es un fanático del fútbol.", + "example_sentence_english": "He is a football fanatic.", + "pos": "noun", + "word_frequency": 4185 + }, + { + "word": "fragmento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragment", + "example_sentence_native": "Solo leyó un fragmento del libro.", + "example_sentence_english": "He only read a fragment of the book.", + "pos": "noun", + "word_frequency": 4186 + }, + { + "word": "hueco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hole;gap;space", + "example_sentence_native": "Hay un hueco en la pared.", + "example_sentence_english": "There is a hole in the wall.", + "pos": "noun", + "word_frequency": 4187 + }, + { + "word": "imbécil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imbecile;idiot", + "example_sentence_native": "No seas imbécil, piensa antes de hablar.", + "example_sentence_english": "Don't be an imbecile, think before you speak.", + "pos": "noun", + "word_frequency": 4188 + }, + { + "word": "imperial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperial", + "example_sentence_native": "El águila imperial es un ave majestuosa.", + "example_sentence_english": "The imperial eagle is a majestic bird.", + "pos": "adjective", + "word_frequency": 4189 + }, + { + "word": "incapacidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability;incapacity", + "example_sentence_native": "Sufre de una incapacidad para caminar.", + "example_sentence_english": "He suffers from an inability to walk.", + "pos": "noun", + "word_frequency": 4190 + }, + { + "word": "incrementar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase;to increment", + "example_sentence_native": "Necesitamos incrementar la producción.", + "example_sentence_english": "We need to increase production.", + "pos": "verb", + "word_frequency": 4191 + }, + { + "word": "intendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendent;intendant", + "example_sentence_native": "El intendente supervisa los servicios municipales.", + "example_sentence_english": "The superintendent oversees municipal services.", + "pos": "noun", + "word_frequency": 4192 + }, + { + "word": "joya", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jewel;gem", + "example_sentence_native": "Llevaba una joya muy valiosa.", + "example_sentence_english": "She was wearing a very valuable jewel.", + "pos": "noun", + "word_frequency": 4195 + }, + { + "word": "licenciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graduate;licensee;bachelor's degree holder", + "example_sentence_native": "Mi hermano es licenciado en derecho.", + "example_sentence_english": "My brother has a bachelor's degree in law.", + "pos": "noun", + "word_frequency": 4196 + }, + { + "word": "minero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mining (adj);miner (noun)", + "example_sentence_native": "La industria minera es importante en esta región.", + "example_sentence_english": "The mining industry is important in this region.", + "pos": "adjective", + "word_frequency": 4198 + }, + { + "word": "narcotráfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug trafficking", + "example_sentence_native": "El narcotráfico es un problema grave en la región.", + "example_sentence_english": "Drug trafficking is a serious problem in the region.", + "pos": "noun", + "word_frequency": 4199 + }, + { + "word": "nene", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby boy;kid", + "example_sentence_native": "El nene está durmiendo en su cuna.", + "example_sentence_english": "The baby boy is sleeping in his crib.", + "pos": "noun", + "word_frequency": 4200 + }, + { + "word": "nocturno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nocturnal;night", + "example_sentence_native": "Los animales nocturnos cazan por la noche.", + "example_sentence_english": "Nocturnal animals hunt at night.", + "pos": "adjective", + "word_frequency": 4201 + }, + { + "word": "oreja", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ear", + "example_sentence_native": "Me duele la oreja.", + "example_sentence_english": "My ear hurts.", + "pos": "noun", + "word_frequency": 4202 + }, + { + "word": "panel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panel", + "example_sentence_native": "El panel solar genera electricidad.", + "example_sentence_english": "The solar panel generates electricity.", + "pos": "noun", + "word_frequency": 4204 + }, + { + "word": "plenamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fully;completely", + "example_sentence_native": "Estoy plenamente de acuerdo contigo.", + "example_sentence_english": "I fully agree with you.", + "pos": "adverb", + "word_frequency": 4205 + }, + { + "word": "precedente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precedent", + "example_sentence_native": "Este caso sienta un precedente importante.", + "example_sentence_english": "This case sets an important precedent.", + "pos": "noun", + "word_frequency": 4206 + }, + { + "word": "protegido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protected", + "example_sentence_native": "Los animales en peligro están protegidos por la ley.", + "example_sentence_english": "Endangered animals are protected by law.", + "pos": "adjective", + "word_frequency": 4207 + }, + { + "word": "provecho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "benefit;advantage;profit", + "example_sentence_native": "Espero que le saques provecho a esta información.", + "example_sentence_english": "I hope you get some benefit from this information.", + "pos": "noun", + "word_frequency": 4208 + }, + { + "word": "recorte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cut;trimming;reduction", + "example_sentence_native": "Hubo un recorte en el presupuesto.", + "example_sentence_english": "There was a cut in the budget.", + "pos": "noun", + "word_frequency": 4209 + }, + { + "word": "rector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rector;principal (of a university)", + "example_sentence_native": "El rector de la universidad dio un discurso.", + "example_sentence_english": "The rector of the university gave a speech.", + "pos": "noun", + "word_frequency": 4210 + }, + { + "word": "respiración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breathing;respiration", + "example_sentence_native": "Su respiración era lenta y profunda.", + "example_sentence_english": "His breathing was slow and deep.", + "pos": "noun", + "word_frequency": 4211 + }, + { + "word": "romántico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "romantic", + "example_sentence_native": "Tuvieron una cena romántica a la luz de las velas.", + "example_sentence_english": "They had a romantic candlelit dinner.", + "pos": "adjective", + "word_frequency": 4212 + }, + { + "word": "seno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breast;bosom;sine", + "example_sentence_native": "El seno de un ángulo es una función trigonométrica.", + "example_sentence_english": "The sine of an angle is a trigonometric function.", + "pos": "noun", + "word_frequency": 4214 + }, + { + "word": "separar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to separate", + "example_sentence_native": "Necesitamos separar la ropa blanca de la de color.", + "example_sentence_english": "We need to separate the white clothes from the colored ones.", + "pos": "verb", + "word_frequency": 4215 + }, + { + "word": "suelto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loose;free;single (coin)", + "example_sentence_native": "El perro anda suelto por el jardín.", + "example_sentence_english": "The dog is loose in the garden.", + "pos": "adjective", + "word_frequency": 4216 + }, + { + "word": "superado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overcome;surpassed", + "example_sentence_native": "Se siente superado por la situación.", + "example_sentence_english": "He feels overwhelmed by the situation.", + "pos": "adjective", + "word_frequency": 4217 + }, + { + "word": "supervisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supervision", + "example_sentence_native": "El proyecto requiere una supervisión constante.", + "example_sentence_english": "The project requires constant supervision.", + "pos": "noun", + "word_frequency": 4218 + }, + { + "word": "tirado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thrown;lying around;easy (colloquial)", + "example_sentence_native": "El libro estaba tirado en el suelo.", + "example_sentence_english": "The book was lying on the floor.", + "pos": "adjective", + "word_frequency": 4220 + }, + { + "word": "tripulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crew", + "example_sentence_native": "La tripulación del avión es muy amable.", + "example_sentence_english": "The airplane crew is very friendly.", + "pos": "noun", + "word_frequency": 4221 + }, + { + "word": "vegetal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetable;plant", + "example_sentence_native": "Es importante comer muchos vegetales.", + "example_sentence_english": "It's important to eat many vegetables.", + "pos": "noun", + "word_frequency": 4223 + }, + { + "word": "adquirido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquired;obtained", + "example_sentence_native": "Es un conocimiento adquirido con la experiencia.", + "example_sentence_english": "It's knowledge acquired through experience.", + "pos": "adjective", + "word_frequency": 4228 + }, + { + "word": "agregado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggregate;addition;attaché", + "example_sentence_native": "El agregado cultural visitó la embajada.", + "example_sentence_english": "The cultural attaché visited the embassy.", + "pos": "noun", + "word_frequency": 4229 + }, + { + "word": "asilo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum;nursing home", + "example_sentence_native": "Buscó asilo político en otro país.", + "example_sentence_english": "He sought political asylum in another country.", + "pos": "noun", + "word_frequency": 4232 + }, + { + "word": "atencion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "attention", + "example_sentence_native": "Por favor, presten atención.", + "example_sentence_english": "Please pay attention.", + "pos": "noun", + "word_frequency": 4233 + }, + { + "word": "biología", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biology", + "example_sentence_native": "Estoy estudiando biología en la universidad.", + "example_sentence_english": "I am studying biology at university.", + "pos": "noun", + "word_frequency": 4235 + }, + { + "word": "bolso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bag;handbag", + "example_sentence_native": "Olvidé mi bolso en el coche.", + "example_sentence_english": "I forgot my bag in the car.", + "pos": "noun", + "word_frequency": 4236 + }, + { + "word": "capitulo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chapter", + "example_sentence_native": "Leímos el primer capítulo del libro.", + "example_sentence_english": "We read the first chapter of the book.", + "pos": "noun", + "word_frequency": 4238 + }, + { + "word": "centrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to center;to focus", + "example_sentence_native": "Debemos centrar nuestros esfuerzos en la solución.", + "example_sentence_english": "We must focus our efforts on the solution.", + "pos": "verb", + "word_frequency": 4239 + }, + { + "word": "compensación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation", + "example_sentence_native": "Recibió una compensación por los daños.", + "example_sentence_english": "He received compensation for the damages.", + "pos": "noun", + "word_frequency": 4240 + }, + { + "word": "competición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition", + "example_sentence_native": "La competición fue muy reñida.", + "example_sentence_english": "The competition was very close.", + "pos": "noun", + "word_frequency": 4241 + }, + { + "word": "concejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "council (municipal)", + "example_sentence_native": "El concejo municipal aprobó la nueva ley.", + "example_sentence_english": "The municipal council approved the new law.", + "pos": "noun", + "word_frequency": 4242 + }, + { + "word": "consiguiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequent;resulting", + "example_sentence_native": "La lluvia y el consiguiente barro dificultaron el camino.", + "example_sentence_english": "The rain and the consequent mud made the path difficult.", + "pos": "adjective", + "word_frequency": 4243 + }, + { + "word": "contactar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contact", + "example_sentence_native": "Necesito contactar a mi abogado.", + "example_sentence_english": "I need to contact my lawyer.", + "pos": "verb", + "word_frequency": 4244 + }, + { + "word": "contratación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hiring;recruitment", + "example_sentence_native": "La empresa anunció una nueva política de contratación.", + "example_sentence_english": "The company announced a new hiring policy.", + "pos": "noun", + "word_frequency": 4245 + }, + { + "word": "controlado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controlled", + "example_sentence_native": "El fuego está controlado.", + "example_sentence_english": "The fire is controlled.", + "pos": "adjective", + "word_frequency": 4246 + }, + { + "word": "demostración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstration;proof", + "example_sentence_native": "Hizo una demostración del nuevo producto.", + "example_sentence_english": "He gave a demonstration of the new product.", + "pos": "noun", + "word_frequency": 4247 + }, + { + "word": "demócrata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democrat", + "example_sentence_native": "Es un firme demócrata.", + "example_sentence_english": "He is a strong democrat.", + "pos": "noun", + "word_frequency": 4248 + }, + { + "word": "denominado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "named;called", + "example_sentence_native": "El proyecto denominado \"Alfa\" fue un éxito.", + "example_sentence_english": "The project named \"Alpha\" was a success.", + "pos": "adjective", + "word_frequency": 4249 + }, + { + "word": "descendiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descendant", + "example_sentence_native": "Es descendiente de una antigua familia noble.", + "example_sentence_english": "He is a descendant of an old noble family.", + "pos": "noun", + "word_frequency": 4250 + }, + { + "word": "diplomático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomatic", + "example_sentence_native": "Su respuesta fue muy diplomática.", + "example_sentence_english": "His answer was very diplomatic.", + "pos": "adjective", + "word_frequency": 4251 + }, + { + "word": "directorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directory;board of directors", + "example_sentence_native": "Buscó el número en el directorio telefónico.", + "example_sentence_english": "He looked up the number in the phone directory.", + "pos": "noun", + "word_frequency": 4252 + }, + { + "word": "dirigido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directed;aimed", + "example_sentence_native": "El mensaje estaba dirigido a todos los empleados.", + "example_sentence_english": "The message was directed to all employees.", + "pos": "adjective", + "word_frequency": 4253 + }, + { + "word": "elaborar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to elaborate;to produce;to prepare", + "example_sentence_native": "Necesitamos elaborar un plan detallado.", + "example_sentence_english": "We need to elaborate a detailed plan.", + "pos": "verb", + "word_frequency": 4254 + }, + { + "word": "escaso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarce;limited", + "example_sentence_native": "Hay escasos recursos en la región.", + "example_sentence_english": "There are scarce resources in the region.", + "pos": "adjective", + "word_frequency": 4255 + }, + { + "word": "excepcional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceptional", + "example_sentence_native": "Su talento es excepcional.", + "example_sentence_english": "His talent is exceptional.", + "pos": "adjective", + "word_frequency": 4256 + }, + { + "word": "exhibición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibition;display", + "example_sentence_native": "La exhibición de arte fue impresionante.", + "example_sentence_english": "The art exhibition was impressive.", + "pos": "noun", + "word_frequency": 4257 + }, + { + "word": "experimentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to experience;to experiment", + "example_sentence_native": "Vamos a experimentar con nuevas técnicas.", + "example_sentence_english": "We are going to experiment with new techniques.", + "pos": "verb", + "word_frequency": 4258 + }, + { + "word": "fauna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fauna;wildlife", + "example_sentence_native": "La fauna local es muy diversa.", + "example_sentence_english": "The local fauna is very diverse.", + "pos": "noun", + "word_frequency": 4259 + }, + { + "word": "flash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flash", + "example_sentence_native": "Usó el flash de la cámara.", + "example_sentence_english": "He used the camera flash.", + "pos": "noun", + "word_frequency": 4260 + }, + { + "word": "funda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover;case", + "example_sentence_native": "Compré una funda nueva para mi teléfono.", + "example_sentence_english": "I bought a new case for my phone.", + "pos": "noun", + "word_frequency": 4261 + }, + { + "word": "helicóptero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helicopter", + "example_sentence_native": "Vimos un helicóptero volando sobre la ciudad.", + "example_sentence_english": "We saw a helicopter flying over the city.", + "pos": "noun", + "word_frequency": 4262 + }, + { + "word": "heredero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heir", + "example_sentence_native": "Él es el heredero de una gran fortuna.", + "example_sentence_english": "He is the heir to a large fortune.", + "pos": "noun", + "word_frequency": 4263 + }, + { + "word": "lidiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deal with;to cope with", + "example_sentence_native": "Es difícil lidiar con el estrés diario.", + "example_sentence_english": "It's difficult to deal with daily stress.", + "pos": "verb", + "word_frequency": 4265 + }, + { + "word": "miserable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miserable;wretched", + "example_sentence_native": "Se sentía miserable después de la noticia.", + "example_sentence_english": "He felt miserable after the news.", + "pos": "adjective", + "word_frequency": 4266 + }, + { + "word": "montaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;montage;setup", + "example_sentence_native": "El montaje de la exposición llevó varios días.", + "example_sentence_english": "The assembly of the exhibition took several days.", + "pos": "noun", + "word_frequency": 4267 + }, + { + "word": "normalidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "normality", + "example_sentence_native": "Poco a poco, la situación volvió a la normalidad.", + "example_sentence_english": "Little by little, the situation returned to normality.", + "pos": "noun", + "word_frequency": 4268 + }, + { + "word": "parámetro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parameter", + "example_sentence_native": "Debemos ajustar los parámetros del experimento.", + "example_sentence_english": "We must adjust the parameters of the experiment.", + "pos": "noun", + "word_frequency": 4270 + }, + { + "word": "pirata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pirate", + "example_sentence_native": "Los piratas atacaron el barco.", + "example_sentence_english": "The pirates attacked the ship.", + "pos": "noun", + "word_frequency": 4271 + }, + { + "word": "planear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plan;to hover", + "example_sentence_native": "Vamos a planear nuestras vacaciones.", + "example_sentence_english": "We are going to plan our vacation.", + "pos": "verb", + "word_frequency": 4272 + }, + { + "word": "practica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "practice", + "example_sentence_native": "La práctica hace al maestro.", + "example_sentence_english": "Practice makes perfect.", + "pos": "noun", + "word_frequency": 4274 + }, + { + "word": "pájaro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bird", + "example_sentence_native": "El pájaro canta en el árbol.", + "example_sentence_english": "The bird sings in the tree.", + "pos": "noun", + "word_frequency": 4275 + }, + { + "word": "racista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racist", + "example_sentence_native": "Sus comentarios fueron considerados racistas.", + "example_sentence_english": "His comments were considered racist.", + "pos": "adjective", + "word_frequency": 4276 + }, + { + "word": "rancho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ranch", + "example_sentence_native": "Pasamos el verano en el rancho de mis abuelos.", + "example_sentence_english": "We spent the summer at my grandparents' ranch.", + "pos": "noun", + "word_frequency": 4277 + }, + { + "word": "rechazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reject;to refuse", + "example_sentence_native": "Ella decidió rechazar la oferta.", + "example_sentence_english": "She decided to reject the offer.", + "pos": "verb", + "word_frequency": 4278 + }, + { + "word": "reforzar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reinforce;to strengthen", + "example_sentence_native": "Necesitamos reforzar la seguridad.", + "example_sentence_english": "We need to reinforce security.", + "pos": "verb", + "word_frequency": 4279 + }, + { + "word": "resistir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resist", + "example_sentence_native": "Es difícil resistir la tentación.", + "example_sentence_english": "It's difficult to resist temptation.", + "pos": "verb", + "word_frequency": 4280 + }, + { + "word": "respectivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respective", + "example_sentence_native": "Cada estudiante debe presentar su trabajo respectivo.", + "example_sentence_english": "Each student must present their respective work.", + "pos": "adjective", + "word_frequency": 4281 + }, + { + "word": "reunirse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to meet;to gather", + "example_sentence_native": "Nos vamos a reunir mañana en el café.", + "example_sentence_english": "We are going to meet tomorrow at the cafe.", + "pos": "verb", + "word_frequency": 4282 + }, + { + "word": "salina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "salt flat;salt mine", + "example_sentence_native": "Las salinas de Uyuni son impresionantes.", + "example_sentence_english": "The Uyuni salt flats are impressive.", + "pos": "noun", + "word_frequency": 4284 + }, + { + "word": "satisfecho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satisfied", + "example_sentence_native": "Estoy muy satisfecho con los resultados.", + "example_sentence_english": "I am very satisfied with the results.", + "pos": "adjective", + "word_frequency": 4285 + }, + { + "word": "sexualidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexuality", + "example_sentence_native": "La sexualidad es un aspecto importante de la vida humana.", + "example_sentence_english": "Sexuality is an important aspect of human life.", + "pos": "noun", + "word_frequency": 4286 + }, + { + "word": "socorro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "help;aid", + "example_sentence_native": "¡Socorro! Necesito ayuda.", + "example_sentence_english": "Help! I need assistance.", + "pos": "noun", + "word_frequency": 4287 + }, + { + "word": "tropical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tropical", + "example_sentence_native": "Me encanta el clima tropical.", + "example_sentence_english": "I love the tropical climate.", + "pos": "adjective", + "word_frequency": 4289 + }, + { + "word": "ultra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ultra;extreme", + "example_sentence_native": "Es un movimiento ultra conservador.", + "example_sentence_english": "It is an ultra-conservative movement.", + "pos": "adjective", + "word_frequency": 4290 + }, + { + "word": "varón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "male;man", + "example_sentence_native": "El varón es el jefe de la familia.", + "example_sentence_english": "The man is the head of the family.", + "pos": "noun", + "word_frequency": 4292 + }, + { + "word": "vestir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dress;to wear", + "example_sentence_native": "Me gusta vestir ropa cómoda.", + "example_sentence_english": "I like to wear comfortable clothes.", + "pos": "verb", + "word_frequency": 4293 + }, + { + "word": "vocación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocation;calling", + "example_sentence_native": "Su vocación es ayudar a los demás.", + "example_sentence_english": "Her vocation is to help others.", + "pos": "noun", + "word_frequency": 4294 + }, + { + "word": "alivio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relief", + "example_sentence_native": "Sentí un gran alivio al terminar el examen.", + "example_sentence_english": "I felt great relief after finishing the exam.", + "pos": "noun", + "word_frequency": 4296 + }, + { + "word": "almacenamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storage", + "example_sentence_native": "Necesitamos más espacio de almacenamiento.", + "example_sentence_english": "We need more storage space.", + "pos": "noun", + "word_frequency": 4297 + }, + { + "word": "atento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attentive;polite", + "example_sentence_native": "Siempre está atento a los detalles.", + "example_sentence_english": "He is always attentive to details.", + "pos": "adjective", + "word_frequency": 4300 + }, + { + "word": "bendición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blessing", + "example_sentence_native": "Fue una bendición conocerte.", + "example_sentence_english": "It was a blessing to meet you.", + "pos": "noun", + "word_frequency": 4302 + }, + { + "word": "bruto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gross;crude;raw", + "example_sentence_native": "El producto interno bruto creció.", + "example_sentence_english": "The gross domestic product grew.", + "pos": "adjective", + "word_frequency": 4303 + }, + { + "word": "cancelar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cancel", + "example_sentence_native": "Tuvimos que cancelar la reunión.", + "example_sentence_english": "We had to cancel the meeting.", + "pos": "verb", + "word_frequency": 4304 + }, + { + "word": "canciller", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chancellor;foreign minister", + "example_sentence_native": "El canciller se reunió con su homólogo.", + "example_sentence_english": "The chancellor met with his counterpart.", + "pos": "noun", + "word_frequency": 4305 + }, + { + "word": "carecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lack;to be without", + "example_sentence_native": "Carece de experiencia en este campo.", + "example_sentence_english": "He lacks experience in this field.", + "pos": "verb", + "word_frequency": 4307 + }, + { + "word": "cañón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canyon;cannon", + "example_sentence_native": "Visitamos el Gran Cañón.", + "example_sentence_english": "We visited the Grand Canyon.", + "pos": "noun", + "word_frequency": 4308 + }, + { + "word": "comedor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dining room", + "example_sentence_native": "Cenamos en el comedor.", + "example_sentence_english": "We had dinner in the dining room.", + "pos": "noun", + "word_frequency": 4310 + }, + { + "word": "comun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "common", + "example_sentence_native": "Es un problema muy comun.", + "example_sentence_english": "It's a very common problem.", + "pos": "adjective", + "word_frequency": 4311 + }, + { + "word": "concretamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifically;concretely", + "example_sentence_native": "Hablamos concretamente de los detalles.", + "example_sentence_english": "We spoke specifically about the details.", + "pos": "adverb", + "word_frequency": 4312 + }, + { + "word": "configuración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "configuration;setup", + "example_sentence_native": "Cambié la configuración del sistema.", + "example_sentence_english": "I changed the system configuration.", + "pos": "noun", + "word_frequency": 4313 + }, + { + "word": "conquistar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conquer;to win over", + "example_sentence_native": "Los españoles conquistaron América.", + "example_sentence_english": "The Spanish conquered America.", + "pos": "verb", + "word_frequency": 4314 + }, + { + "word": "contraseña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "password", + "example_sentence_native": "Olvidé mi contraseña.", + "example_sentence_english": "I forgot my password.", + "pos": "noun", + "word_frequency": 4315 + }, + { + "word": "controversia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversy", + "example_sentence_native": "El tema generó mucha controversia.", + "example_sentence_english": "The topic generated a lot of controversy.", + "pos": "noun", + "word_frequency": 4316 + }, + { + "word": "corrección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correction", + "example_sentence_native": "Hizo una corrección en el texto.", + "example_sentence_english": "He made a correction in the text.", + "pos": "noun", + "word_frequency": 4317 + }, + { + "word": "criatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creature;baby", + "example_sentence_native": "La pequeña criatura dormía plácidamente.", + "example_sentence_english": "The little creature slept peacefully.", + "pos": "noun", + "word_frequency": 4318 + }, + { + "word": "crudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raw;crude", + "example_sentence_native": "Prefiero las verduras crudas.", + "example_sentence_english": "I prefer raw vegetables.", + "pos": "adjective", + "word_frequency": 4319 + }, + { + "word": "desesperación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despair", + "example_sentence_native": "Su desesperación era evidente en sus ojos.", + "example_sentence_english": "Her despair was evident in her eyes.", + "pos": "noun", + "word_frequency": 4320 + }, + { + "word": "designación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designation", + "example_sentence_native": "La designación del nuevo director se anunció hoy.", + "example_sentence_english": "The designation of the new director was announced today.", + "pos": "noun", + "word_frequency": 4321 + }, + { + "word": "deterioro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deterioration", + "example_sentence_native": "El edificio muestra signos de deterioro.", + "example_sentence_english": "The building shows signs of deterioration.", + "pos": "noun", + "word_frequency": 4322 + }, + { + "word": "diseñador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designer", + "example_sentence_native": "Es un diseñador de moda muy famoso.", + "example_sentence_english": "He is a very famous fashion designer.", + "pos": "noun", + "word_frequency": 4324 + }, + { + "word": "distinguir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distinguish", + "example_sentence_native": "Es difícil distinguir entre los dos colores.", + "example_sentence_english": "It's difficult to distinguish between the two colors.", + "pos": "verb", + "word_frequency": 4325 + }, + { + "word": "diámetro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diameter", + "example_sentence_native": "El diámetro del círculo es de diez centímetros.", + "example_sentence_english": "The diameter of the circle is ten centimeters.", + "pos": "noun", + "word_frequency": 4326 + }, + { + "word": "ente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entity", + "example_sentence_native": "Consideramos al estado como un ente abstracto.", + "example_sentence_english": "We consider the state as an abstract entity.", + "pos": "noun", + "word_frequency": 4328 + }, + { + "word": "entrenar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to train", + "example_sentence_native": "Necesito entrenar más para la maratón.", + "example_sentence_english": "I need to train more for the marathon.", + "pos": "verb", + "word_frequency": 4329 + }, + { + "word": "escaño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seat (in parliament)", + "example_sentence_native": "Ganó un escaño en el parlamento.", + "example_sentence_english": "He won a seat in parliament.", + "pos": "noun", + "word_frequency": 4330 + }, + { + "word": "especializado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialized", + "example_sentence_native": "Buscamos un médico especializado en cardiología.", + "example_sentence_english": "We are looking for a doctor specialized in cardiology.", + "pos": "adjective", + "word_frequency": 4331 + }, + { + "word": "estacionamiento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parking lot", + "example_sentence_native": "El estacionamiento está lleno.", + "example_sentence_english": "The parking lot is full.", + "pos": "noun", + "word_frequency": 4332 + }, + { + "word": "estatuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statute", + "example_sentence_native": "Los estatutos de la empresa deben ser revisados.", + "example_sentence_english": "The company's bylaws must be reviewed.", + "pos": "noun", + "word_frequency": 4333 + }, + { + "word": "expulsión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expulsion", + "example_sentence_native": "La expulsión del jugador fue polémica.", + "example_sentence_english": "The player's expulsion was controversial.", + "pos": "noun", + "word_frequency": 4334 + }, + { + "word": "fino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine", + "example_sentence_native": "Lleva un vestido de seda muy fino.", + "example_sentence_english": "She is wearing a very fine silk dress.", + "pos": "adjective", + "word_frequency": 4335 + }, + { + "word": "finca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "estate", + "example_sentence_native": "Compraron una finca grande en el campo.", + "example_sentence_english": "They bought a large estate in the countryside.", + "pos": "noun", + "word_frequency": 4336 + }, + { + "word": "forestal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forest (adj.)", + "example_sentence_native": "La industria forestal es importante en esta región.", + "example_sentence_english": "The forestry industry is important in this region.", + "pos": "adjective", + "word_frequency": 4337 + }, + { + "word": "hierba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grass", + "example_sentence_native": "El jardín está lleno de hierba.", + "example_sentence_english": "The garden is full of grass.", + "pos": "noun", + "word_frequency": 4338 + }, + { + "word": "homosexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homosexual", + "example_sentence_native": "La comunidad homosexual celebra el orgullo.", + "example_sentence_english": "The homosexual community celebrates pride.", + "pos": "adjective", + "word_frequency": 4339 + }, + { + "word": "inspector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspector", + "example_sentence_native": "El inspector revisó los documentos.", + "example_sentence_english": "The inspector reviewed the documents.", + "pos": "noun", + "word_frequency": 4341 + }, + { + "word": "jazz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jazz", + "example_sentence_native": "Me encanta escuchar jazz por las noches.", + "example_sentence_english": "I love listening to jazz at night.", + "pos": "noun", + "word_frequency": 4342 + }, + { + "word": "justificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justification", + "example_sentence_native": "No hay justificación para su comportamiento.", + "example_sentence_english": "There is no justification for his behavior.", + "pos": "noun", + "word_frequency": 4345 + }, + { + "word": "latín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latin", + "example_sentence_native": "Estudió latín en la universidad.", + "example_sentence_english": "He studied Latin at university.", + "pos": "noun", + "word_frequency": 4346 + }, + { + "word": "listado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "list", + "example_sentence_native": "Necesito un listado de todos los participantes.", + "example_sentence_english": "I need a list of all participants.", + "pos": "noun", + "word_frequency": 4347 + }, + { + "word": "lucro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profit", + "example_sentence_native": "La organización opera sin fines de lucro.", + "example_sentence_english": "The organization operates without profit.", + "pos": "noun", + "word_frequency": 4348 + }, + { + "word": "madurez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maturity", + "example_sentence_native": "Su madurez es notable para su edad.", + "example_sentence_english": "His maturity is remarkable for his age.", + "pos": "noun", + "word_frequency": 4349 + }, + { + "word": "mero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mere", + "example_sentence_native": "Fue un mero accidente, nada grave.", + "example_sentence_english": "It was a mere accident, nothing serious.", + "pos": "adjective", + "word_frequency": 4353 + }, + { + "word": "monopolio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monopoly", + "example_sentence_native": "La empresa tiene el monopolio del mercado.", + "example_sentence_english": "The company has the market monopoly.", + "pos": "noun", + "word_frequency": 4354 + }, + { + "word": "noroeste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northwest", + "example_sentence_native": "El viento sopla del noroeste.", + "example_sentence_english": "The wind blows from the northwest.", + "pos": "noun", + "word_frequency": 4355 + }, + { + "word": "noruega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Norway", + "example_sentence_native": "Noruega es un país escandinavo.", + "example_sentence_english": "Norway is a Scandinavian country.", + "pos": "noun", + "word_frequency": 4356 + }, + { + "word": "operador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operator", + "example_sentence_native": "El operador de la máquina es muy hábil.", + "example_sentence_english": "The machine operator is very skilled.", + "pos": "noun", + "word_frequency": 4357 + }, + { + "word": "palestina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Palestine", + "example_sentence_native": "La situación en Palestina es compleja.", + "example_sentence_english": "The situation in Palestine is complex.", + "pos": "noun", + "word_frequency": 4358 + }, + { + "word": "pasear", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to walk", + "example_sentence_native": "Nos gusta pasear por el parque.", + "example_sentence_english": "We like to walk in the park.", + "pos": "verb", + "word_frequency": 4359 + }, + { + "word": "plantilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "template;staff;roster", + "example_sentence_native": "La empresa tiene una plantilla de cien empleados.", + "example_sentence_english": "The company has a staff of one hundred employees.", + "pos": "noun", + "word_frequency": 4360 + }, + { + "word": "ranking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranking", + "example_sentence_native": "Su equipo subió en el ranking mundial.", + "example_sentence_english": "His team moved up in the world ranking.", + "pos": "noun", + "word_frequency": 4361 + }, + { + "word": "recaudación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection;fundraising;revenue", + "example_sentence_native": "La recaudación de impuestos aumentó este año.", + "example_sentence_english": "Tax collection increased this year.", + "pos": "noun", + "word_frequency": 4362 + }, + { + "word": "regularmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "regularly", + "example_sentence_native": "Ella visita a sus abuelos regularmente.", + "example_sentence_english": "She visits her grandparents regularly.", + "pos": "adverb", + "word_frequency": 4363 + }, + { + "word": "reportaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report;feature (article;story)", + "example_sentence_native": "El periodista hizo un reportaje sobre la vida silvestre.", + "example_sentence_english": "The journalist made a report about wildlife.", + "pos": "noun", + "word_frequency": 4364 + }, + { + "word": "respectar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to respect", + "example_sentence_native": "Debemos respetar las opiniones de los demás.", + "example_sentence_english": "We must respect the opinions of others.", + "pos": "verb", + "word_frequency": 4365 + }, + { + "word": "setenta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seventy", + "example_sentence_native": "Mi abuela tiene setenta años.", + "example_sentence_english": "My grandmother is seventy years old.", + "pos": "noun", + "word_frequency": 4367 + }, + { + "word": "tontería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonsense;foolishness", + "example_sentence_native": "No digas tonterías.", + "example_sentence_english": "Don't say nonsense.", + "pos": "noun", + "word_frequency": 4368 + }, + { + "word": "túnel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tunnel", + "example_sentence_native": "El tren pasó por un túnel largo.", + "example_sentence_english": "The train went through a long tunnel.", + "pos": "noun", + "word_frequency": 4369 + }, + { + "word": "valioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valuable", + "example_sentence_native": "Este anillo es muy valioso para mí.", + "example_sentence_english": "This ring is very valuable to me.", + "pos": "adjective", + "word_frequency": 4371 + }, + { + "word": "valoración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valuation;assessment;appraisal", + "example_sentence_native": "La valoración del experto fue muy positiva.", + "example_sentence_english": "The expert's assessment was very positive.", + "pos": "noun", + "word_frequency": 4372 + }, + { + "word": "vino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wine", + "example_sentence_native": "Me gusta beber vino tinto con la cena.", + "example_sentence_english": "I like to drink red wine with dinner.", + "pos": "noun", + "word_frequency": 4373 + }, + { + "word": "élite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elite", + "example_sentence_native": "Solo la élite puede acceder a ese club.", + "example_sentence_english": "Only the elite can access that club.", + "pos": "noun", + "word_frequency": 4374 + }, + { + "word": "activamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actively", + "example_sentence_native": "Participó activamente en la reunión.", + "example_sentence_english": "He actively participated in the meeting.", + "pos": "adverb", + "word_frequency": 4375 + }, + { + "word": "agradecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grateful;thankful", + "example_sentence_native": "Estoy muy agradecido por tu ayuda.", + "example_sentence_english": "I am very grateful for your help.", + "pos": "adjective", + "word_frequency": 4376 + }, + { + "word": "agradecimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratitude;thankfulness", + "example_sentence_native": "Expresó su agradecimiento con un regalo.", + "example_sentence_english": "He expressed his gratitude with a gift.", + "pos": "noun", + "word_frequency": 4377 + }, + { + "word": "aguante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endurance;stamina;patience", + "example_sentence_native": "Necesitas mucho aguante para correr una maratón.", + "example_sentence_english": "You need a lot of endurance to run a marathon.", + "pos": "noun", + "word_frequency": 4378 + }, + { + "word": "artillería", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artillery", + "example_sentence_native": "La artillería pesada fue desplegada en el frente.", + "example_sentence_english": "The heavy artillery was deployed at the front.", + "pos": "noun", + "word_frequency": 4379 + }, + { + "word": "asunción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assumption;taking office", + "example_sentence_native": "Su asunción del cargo fue muy esperada.", + "example_sentence_english": "His taking office was highly anticipated.", + "pos": "noun", + "word_frequency": 4380 + }, + { + "word": "autorizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to authorize", + "example_sentence_native": "El director debe autorizar la compra.", + "example_sentence_english": "The director must authorize the purchase.", + "pos": "verb", + "word_frequency": 4381 + }, + { + "word": "brillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shine;sparkle;brightness", + "example_sentence_native": "El brillo de las estrellas era impresionante.", + "example_sentence_english": "The brightness of the stars was impressive.", + "pos": "noun", + "word_frequency": 4382 + }, + { + "word": "canadiense", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Canadian", + "example_sentence_native": "Mi vecino es canadiense.", + "example_sentence_english": "My neighbor is Canadian.", + "pos": "adjective", + "word_frequency": 4384 + }, + { + "word": "centenario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "centenary;centennial", + "example_sentence_native": "Celebraron el centenario de la fundación de la ciudad.", + "example_sentence_english": "They celebrated the centenary of the city's founding.", + "pos": "noun", + "word_frequency": 4387 + }, + { + "word": "cobarde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cowardly", + "example_sentence_native": "No seas cobarde, enfréntate a tus miedos.", + "example_sentence_english": "Don't be cowardly, face your fears.", + "pos": "adjective", + "word_frequency": 4390 + }, + { + "word": "cobro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection;charge;payment", + "example_sentence_native": "El cobro de la factura se realizará mañana.", + "example_sentence_english": "The collection of the invoice will be done tomorrow.", + "pos": "noun", + "word_frequency": 4391 + }, + { + "word": "conformidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conformity;compliance;agreement", + "example_sentence_native": "Actuó en conformidad con las reglas.", + "example_sentence_english": "He acted in conformity with the rules.", + "pos": "noun", + "word_frequency": 4392 + }, + { + "word": "conversión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conversion", + "example_sentence_native": "La conversión de la moneda fue rápida.", + "example_sentence_english": "The currency conversion was fast.", + "pos": "noun", + "word_frequency": 4393 + }, + { + "word": "cristianismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christianity", + "example_sentence_native": "El cristianismo es una de las religiones más grandes.", + "example_sentence_english": "Christianity is one of the largest religions.", + "pos": "noun", + "word_frequency": 4394 + }, + { + "word": "cuadrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fit;to square;to add up", + "example_sentence_native": "Los números no cuadran.", + "example_sentence_english": "The numbers don't add up.", + "pos": "verb", + "word_frequency": 4395 + }, + { + "word": "delegado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delegate;representative", + "example_sentence_native": "El delegado presentó la propuesta.", + "example_sentence_english": "The delegate presented the proposal.", + "pos": "noun", + "word_frequency": 4397 + }, + { + "word": "designar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to designate;to appoint", + "example_sentence_native": "Fue designado como el nuevo líder.", + "example_sentence_english": "He was designated as the new leader.", + "pos": "verb", + "word_frequency": 4398 + }, + { + "word": "despido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismissal;layoff;firing", + "example_sentence_native": "El despido fue inesperado.", + "example_sentence_english": "The dismissal was unexpected.", + "pos": "noun", + "word_frequency": 4399 + }, + { + "word": "dj", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "DJ", + "example_sentence_native": "El dj puso música increíble toda la noche.", + "example_sentence_english": "The DJ played amazing music all night.", + "pos": "noun", + "word_frequency": 4400 + }, + { + "word": "dragón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dragon", + "example_sentence_native": "Los niños leen cuentos sobre dragones.", + "example_sentence_english": "Children read stories about dragons.", + "pos": "noun", + "word_frequency": 4401 + }, + { + "word": "editar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to edit", + "example_sentence_native": "Necesito editar este documento antes de enviarlo.", + "example_sentence_english": "I need to edit this document before sending it.", + "pos": "verb", + "word_frequency": 4402 + }, + { + "word": "emplear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to employ;to use", + "example_sentence_native": "La empresa va a emplear a más personal.", + "example_sentence_english": "The company is going to employ more staff.", + "pos": "verb", + "word_frequency": 4404 + }, + { + "word": "exclusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusion", + "example_sentence_native": "La exclusión social es un problema grave.", + "example_sentence_english": "Social exclusion is a serious problem.", + "pos": "noun", + "word_frequency": 4405 + }, + { + "word": "franja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strip;band", + "example_sentence_native": "Hay una franja de tierra fértil junto al río.", + "example_sentence_english": "There is a strip of fertile land next to the river.", + "pos": "noun", + "word_frequency": 4406 + }, + { + "word": "físicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physically", + "example_sentence_native": "Se siente bien físicamente después del ejercicio.", + "example_sentence_english": "He feels good physically after the exercise.", + "pos": "adverb", + "word_frequency": 4408 + }, + { + "word": "higiene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygiene", + "example_sentence_native": "La buena higiene es importante para la salud.", + "example_sentence_english": "Good hygiene is important for health.", + "pos": "noun", + "word_frequency": 4409 + }, + { + "word": "ilustración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustration", + "example_sentence_native": "El libro tiene muchas ilustraciones bonitas.", + "example_sentence_english": "The book has many beautiful illustrations.", + "pos": "noun", + "word_frequency": 4410 + }, + { + "word": "importación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "importation;import", + "example_sentence_native": "La importación de productos extranjeros ha aumentado.", + "example_sentence_english": "The importation of foreign products has increased.", + "pos": "noun", + "word_frequency": 4411 + }, + { + "word": "lejano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant;far", + "example_sentence_native": "Viven en un pueblo lejano.", + "example_sentence_english": "They live in a distant village.", + "pos": "adjective", + "word_frequency": 4414 + }, + { + "word": "levantamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uprising;lifting", + "example_sentence_native": "Hubo un levantamiento popular contra el gobierno.", + "example_sentence_english": "There was a popular uprising against the government.", + "pos": "noun", + "word_frequency": 4415 + }, + { + "word": "maestría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastery;master's degree", + "example_sentence_native": "Obtuvo una maestría en literatura.", + "example_sentence_english": "She obtained a master's degree in literature.", + "pos": "noun", + "word_frequency": 4416 + }, + { + "word": "mayormente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mostly;mainly", + "example_sentence_native": "La población es mayormente joven.", + "example_sentence_english": "The population is mostly young.", + "pos": "adverb", + "word_frequency": 4417 + }, + { + "word": "misil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missile", + "example_sentence_native": "Lanzaron un misil de prueba.", + "example_sentence_english": "They launched a test missile.", + "pos": "noun", + "word_frequency": 4418 + }, + { + "word": "muñeca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doll;wrist", + "example_sentence_native": "La niña juega con su muñeca.", + "example_sentence_english": "The girl plays with her doll.", + "pos": "noun", + "word_frequency": 4419 + }, + { + "word": "máscara", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mask", + "example_sentence_native": "Llevaba una máscara en la fiesta de disfraces.", + "example_sentence_english": "He wore a mask at the costume party.", + "pos": "noun", + "word_frequency": 4420 + }, + { + "word": "parlamentario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliamentarian;MP", + "example_sentence_native": "El parlamentario presentó una nueva ley.", + "example_sentence_english": "The parliamentarian presented a new law.", + "pos": "noun", + "word_frequency": 4421 + }, + { + "word": "perseguir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chase;to pursue", + "example_sentence_native": "El perro empezó a perseguir al gato.", + "example_sentence_english": "The dog started to chase the cat.", + "pos": "verb", + "word_frequency": 4422 + }, + { + "word": "postre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dessert", + "example_sentence_native": "De postre, pedimos helado.", + "example_sentence_english": "For dessert, we ordered ice cream.", + "pos": "noun", + "word_frequency": 4423 + }, + { + "word": "potable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drinkable;potable", + "example_sentence_native": "El agua del grifo es potable.", + "example_sentence_english": "The tap water is drinkable.", + "pos": "adjective", + "word_frequency": 4424 + }, + { + "word": "prestación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefit;service;provision", + "example_sentence_native": "Recibe una prestación por desempleo.", + "example_sentence_english": "He receives unemployment benefit.", + "pos": "noun", + "word_frequency": 4425 + }, + { + "word": "racional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rational", + "example_sentence_native": "Es importante tomar decisiones racionales.", + "example_sentence_english": "It's important to make rational decisions.", + "pos": "adjective", + "word_frequency": 4427 + }, + { + "word": "realizarse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be carried out;to come true;to fulfill oneself", + "example_sentence_native": "El evento se realizará el próximo mes.", + "example_sentence_english": "The event will be carried out next month.", + "pos": "verb", + "word_frequency": 4428 + }, + { + "word": "rescatar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rescue", + "example_sentence_native": "Los bomberos lograron rescatar al gato del árbol.", + "example_sentence_english": "The firefighters managed to rescue the cat from the tree.", + "pos": "verb", + "word_frequency": 4429 + }, + { + "word": "revelación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revelation", + "example_sentence_native": "Su testimonio fue una revelación sorprendente.", + "example_sentence_english": "His testimony was a surprising revelation.", + "pos": "noun", + "word_frequency": 4430 + }, + { + "word": "segmento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "segment", + "example_sentence_native": "Este segmento del programa es muy interesante.", + "example_sentence_english": "This segment of the program is very interesting.", + "pos": "noun", + "word_frequency": 4432 + }, + { + "word": "sencillamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simply", + "example_sentence_native": "Sencillamente no entiendo por qué lo hizo.", + "example_sentence_english": "I simply don't understand why he did it.", + "pos": "adverb", + "word_frequency": 4433 + }, + { + "word": "singular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "singular;unique", + "example_sentence_native": "Es un caso singular en la historia.", + "example_sentence_english": "It's a singular case in history.", + "pos": "adjective", + "word_frequency": 4434 + }, + { + "word": "tradicionalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traditionally", + "example_sentence_native": "Tradicionalmente, la cena se sirve a las nueve.", + "example_sentence_english": "Traditionally, dinner is served at nine.", + "pos": "adverb", + "word_frequency": 4435 + }, + { + "word": "turco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Turkish", + "example_sentence_native": "La comida turca es deliciosa.", + "example_sentence_english": "Turkish food is delicious.", + "pos": "adjective", + "word_frequency": 4436 + }, + { + "word": "veneno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poison", + "example_sentence_native": "El veneno es peligroso.", + "example_sentence_english": "Poison is dangerous.", + "pos": "noun", + "word_frequency": 4440 + }, + { + "word": "aceptable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acceptable", + "example_sentence_native": "Su propuesta es aceptable.", + "example_sentence_english": "Your proposal is acceptable.", + "pos": "adjective", + "word_frequency": 4445 + }, + { + "word": "admiración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admiration", + "example_sentence_native": "Siento mucha admiración por su trabajo.", + "example_sentence_english": "I feel a lot of admiration for his work.", + "pos": "noun", + "word_frequency": 4446 + }, + { + "word": "afueras", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outskirts", + "example_sentence_native": "Vivimos en las afueras de la ciudad.", + "example_sentence_english": "We live on the outskirts of the city.", + "pos": "noun", + "word_frequency": 4447 + }, + { + "word": "almacén", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warehouse", + "example_sentence_native": "El almacén está lleno de productos.", + "example_sentence_english": "The warehouse is full of products.", + "pos": "noun", + "word_frequency": 4448 + }, + { + "word": "arrancar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull out", + "example_sentence_native": "El coche no quiere arrancar.", + "example_sentence_english": "The car doesn't want to start.", + "pos": "verb", + "word_frequency": 4449 + }, + { + "word": "arrestar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrest", + "example_sentence_native": "La policía va a arrestar al ladrón.", + "example_sentence_english": "The police are going to arrest the thief.", + "pos": "verb", + "word_frequency": 4450 + }, + { + "word": "auxilio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "help", + "example_sentence_native": "¡Auxilio! Necesito ayuda.", + "example_sentence_english": "Help! I need assistance.", + "pos": "noun", + "word_frequency": 4451 + }, + { + "word": "cabildo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "town council", + "example_sentence_native": "El cabildo se reunió para discutir el presupuesto.", + "example_sentence_english": "The town council met to discuss the budget.", + "pos": "noun", + "word_frequency": 4452 + }, + { + "word": "casino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casino", + "example_sentence_native": "Fuimos al casino a jugar.", + "example_sentence_english": "We went to the casino to gamble.", + "pos": "noun", + "word_frequency": 4454 + }, + { + "word": "checo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Czech", + "example_sentence_native": "Mi amigo es checo.", + "example_sentence_english": "My friend is Czech.", + "pos": "adjective", + "word_frequency": 4455 + }, + { + "word": "chupar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suck", + "example_sentence_native": "El bebé chupa su pulgar.", + "example_sentence_english": "The baby sucks his thumb.", + "pos": "verb", + "word_frequency": 4456 + }, + { + "word": "colorado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reddish", + "example_sentence_native": "Se puso colorado de vergüenza.", + "example_sentence_english": "He turned red with embarrassment.", + "pos": "adjective", + "word_frequency": 4457 + }, + { + "word": "comprometer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compromise", + "example_sentence_native": "No quiero comprometer mi reputación.", + "example_sentence_english": "I don't want to jeopardize my reputation.", + "pos": "verb", + "word_frequency": 4458 + }, + { + "word": "confederación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confederation", + "example_sentence_native": "La confederación de estados se disolvió.", + "example_sentence_english": "The confederation of states dissolved.", + "pos": "noun", + "word_frequency": 4459 + }, + { + "word": "consuelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comfort", + "example_sentence_native": "Sus palabras fueron un gran consuelo.", + "example_sentence_english": "His words were a great comfort.", + "pos": "noun", + "word_frequency": 4460 + }, + { + "word": "cordero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lamb", + "example_sentence_native": "Comimos cordero asado para cenar.", + "example_sentence_english": "We ate roasted lamb for dinner.", + "pos": "noun", + "word_frequency": 4461 + }, + { + "word": "curar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cure", + "example_sentence_native": "El médico pudo curar su enfermedad.", + "example_sentence_english": "The doctor was able to cure his illness.", + "pos": "verb", + "word_frequency": 4462 + }, + { + "word": "dado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dice", + "example_sentence_native": "Tira el dado para avanzar.", + "example_sentence_english": "Roll the dice to advance.", + "pos": "noun", + "word_frequency": 4463 + }, + { + "word": "dependiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shop assistant", + "example_sentence_native": "La dependienta me ayudó a encontrar la talla.", + "example_sentence_english": "The shop assistant helped me find the size.", + "pos": "noun", + "word_frequency": 4464 + }, + { + "word": "desafortunadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunately", + "example_sentence_native": "Desafortunadamente, no pudimos ir.", + "example_sentence_english": "Unfortunately, we couldn't go.", + "pos": "adverb", + "word_frequency": 4465 + }, + { + "word": "encargar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to order", + "example_sentence_native": "Me encargaron la tarea de organizar la fiesta.", + "example_sentence_english": "They entrusted me with the task of organizing the party.", + "pos": "verb", + "word_frequency": 4466 + }, + { + "word": "energético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetic", + "example_sentence_native": "Necesito una bebida energética.", + "example_sentence_english": "I need an energy drink.", + "pos": "adjective", + "word_frequency": 4467 + }, + { + "word": "enterar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find out", + "example_sentence_native": "Me acabo de enterar de la noticia.", + "example_sentence_english": "I just found out the news.", + "pos": "verb", + "word_frequency": 4468 + }, + { + "word": "express", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "express", + "example_sentence_native": "Tomamos un café express.", + "example_sentence_english": "We had an express coffee.", + "pos": "adjective", + "word_frequency": 4469 + }, + { + "word": "fachada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facade", + "example_sentence_native": "La fachada del edificio es muy bonita.", + "example_sentence_english": "The facade of the building is very beautiful.", + "pos": "noun", + "word_frequency": 4470 + }, + { + "word": "farmacia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pharmacy", + "example_sentence_native": "Voy a la farmacia a comprar medicinas.", + "example_sentence_english": "I'm going to the pharmacy to buy medicines.", + "pos": "noun", + "word_frequency": 4471 + }, + { + "word": "fianza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bail", + "example_sentence_native": "Pagó la fianza para salir de la cárcel.", + "example_sentence_english": "He paid the bail to get out of jail.", + "pos": "noun", + "word_frequency": 4472 + }, + { + "word": "frenar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to brake", + "example_sentence_native": "Tuvo que frenar bruscamente.", + "example_sentence_english": "He had to brake suddenly.", + "pos": "verb", + "word_frequency": 4474 + }, + { + "word": "ingrediente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ingredient", + "example_sentence_native": "Este es el ingrediente secreto de la receta.", + "example_sentence_english": "This is the secret ingredient of the recipe.", + "pos": "noun", + "word_frequency": 4476 + }, + { + "word": "jersey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweater", + "example_sentence_native": "Ponte un jersey, hace frío.", + "example_sentence_english": "Put on a sweater, it's cold.", + "pos": "noun", + "word_frequency": 4478 + }, + { + "word": "legítimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legitimate", + "example_sentence_native": "Su reclamo es legítimo.", + "example_sentence_english": "His claim is legitimate.", + "pos": "adjective", + "word_frequency": 4479 + }, + { + "word": "leve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slight", + "example_sentence_native": "Tuvo una fiebre leve.", + "example_sentence_english": "He had a slight fever.", + "pos": "adjective", + "word_frequency": 4481 + }, + { + "word": "magnífico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnificent", + "example_sentence_native": "El paisaje era magnífico.", + "example_sentence_english": "The landscape was magnificent.", + "pos": "adjective", + "word_frequency": 4482 + }, + { + "word": "marchar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to march;to leave", + "example_sentence_native": "Tenemos que marchar temprano.", + "example_sentence_english": "We have to leave early.", + "pos": "verb", + "word_frequency": 4483 + }, + { + "word": "marino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marine", + "example_sentence_native": "La vida marina es fascinante.", + "example_sentence_english": "Marine life is fascinating.", + "pos": "adjective", + "word_frequency": 4484 + }, + { + "word": "molestia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discomfort;annoyance", + "example_sentence_native": "Siento una ligera molestia en la rodilla.", + "example_sentence_english": "I feel a slight discomfort in my knee.", + "pos": "noun", + "word_frequency": 4487 + }, + { + "word": "monitor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monitor", + "example_sentence_native": "La pantalla del monitor está rota.", + "example_sentence_english": "The monitor screen is broken.", + "pos": "noun", + "word_frequency": 4488 + }, + { + "word": "músculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscle", + "example_sentence_native": "Se lesionó un músculo de la pierna.", + "example_sentence_english": "He injured a leg muscle.", + "pos": "noun", + "word_frequency": 4490 + }, + { + "word": "opinion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "opinion", + "example_sentence_native": "¿Cuál es tu opinión sobre esto?", + "example_sentence_english": "What is your opinion on this?", + "pos": "noun", + "word_frequency": 4491 + }, + { + "word": "pesadilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nightmare", + "example_sentence_native": "Tuve una pesadilla anoche.", + "example_sentence_english": "I had a nightmare last night.", + "pos": "noun", + "word_frequency": 4493 + }, + { + "word": "plomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lead (metal)", + "example_sentence_native": "El plomo es un metal pesado.", + "example_sentence_english": "Lead is a heavy metal.", + "pos": "noun", + "word_frequency": 4494 + }, + { + "word": "postal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "postcard", + "example_sentence_native": "Le envié una postal desde la playa.", + "example_sentence_english": "I sent him a postcard from the beach.", + "pos": "noun", + "word_frequency": 4495 + }, + { + "word": "prado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meadow", + "example_sentence_native": "Las vacas pastan en el prado.", + "example_sentence_english": "The cows graze in the meadow.", + "pos": "noun", + "word_frequency": 4496 + }, + { + "word": "recien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently;just", + "example_sentence_native": "Es un libro recién publicado.", + "example_sentence_english": "It's a recently published book.", + "pos": "adverb", + "word_frequency": 4498 + }, + { + "word": "residir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reside", + "example_sentence_native": "Él reside en Madrid desde hace años.", + "example_sentence_english": "He has resided in Madrid for years.", + "pos": "verb", + "word_frequency": 4499 + }, + { + "word": "salvación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salvation", + "example_sentence_native": "La ayuda llegó como una salvación.", + "example_sentence_english": "The help arrived as a salvation.", + "pos": "noun", + "word_frequency": 4500 + }, + { + "word": "síntesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synthesis;summary", + "example_sentence_native": "Haz una síntesis del texto.", + "example_sentence_english": "Make a summary of the text.", + "pos": "noun", + "word_frequency": 4501 + }, + { + "word": "sólido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solid", + "example_sentence_native": "La mesa es de madera sólida.", + "example_sentence_english": "The table is made of solid wood.", + "pos": "adjective", + "word_frequency": 4502 + }, + { + "word": "tinta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ink", + "example_sentence_native": "Necesito más tinta para la impresora.", + "example_sentence_english": "I need more ink for the printer.", + "pos": "noun", + "word_frequency": 4503 + }, + { + "word": "transformar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transform", + "example_sentence_native": "La tecnología puede transformar nuestras vidas.", + "example_sentence_english": "Technology can transform our lives.", + "pos": "verb", + "word_frequency": 4504 + }, + { + "word": "vano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "futile;vain", + "example_sentence_native": "Fue un intento vano de convencerlo.", + "example_sentence_english": "It was a futile attempt to convince him.", + "pos": "adjective", + "word_frequency": 4505 + }, + { + "word": "variación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variation", + "example_sentence_native": "Hay una gran variación en los precios.", + "example_sentence_english": "There is a great variation in prices.", + "pos": "noun", + "word_frequency": 4506 + }, + { + "word": "afiliado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affiliate;member", + "example_sentence_native": "Es un afiliado del partido político.", + "example_sentence_english": "He is an affiliate of the political party.", + "pos": "noun", + "word_frequency": 4507 + }, + { + "word": "alimentar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feed", + "example_sentence_native": "Debemos alimentar bien a los animales.", + "example_sentence_english": "We must feed the animals well.", + "pos": "verb", + "word_frequency": 4508 + }, + { + "word": "asiático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Asian", + "example_sentence_native": "La cultura asiática es muy rica.", + "example_sentence_english": "Asian culture is very rich.", + "pos": "adjective", + "word_frequency": 4511 + }, + { + "word": "auge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boom;peak", + "example_sentence_native": "La economía está en pleno auge.", + "example_sentence_english": "The economy is in full boom.", + "pos": "noun", + "word_frequency": 4512 + }, + { + "word": "biografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biography", + "example_sentence_native": "Leí una biografía fascinante.", + "example_sentence_english": "I read a fascinating biography.", + "pos": "noun", + "word_frequency": 4513 + }, + { + "word": "catorce", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fourteen", + "example_sentence_native": "Tengo catorce años.", + "example_sentence_english": "I am fourteen years old.", + "pos": "noun", + "word_frequency": 4516 + }, + { + "word": "cebolla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "onion", + "example_sentence_native": "Necesito una cebolla para la receta.", + "example_sentence_english": "I need an onion for the recipe.", + "pos": "noun", + "word_frequency": 4517 + }, + { + "word": "col", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cabbage", + "example_sentence_native": "Me gusta la ensalada de col.", + "example_sentence_english": "I like cabbage salad.", + "pos": "noun", + "word_frequency": 4518 + }, + { + "word": "comunicar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to communicate", + "example_sentence_native": "Necesito comunicar esta noticia.", + "example_sentence_english": "I need to communicate this news.", + "pos": "verb", + "word_frequency": 4519 + }, + { + "word": "conformar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conform;to form;to make up", + "example_sentence_native": "Debemos conformar un equipo fuerte para el proyecto.", + "example_sentence_english": "We must form a strong team for the project.", + "pos": "verb", + "word_frequency": 4520 + }, + { + "word": "contabilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounting", + "example_sentence_native": "La contabilidad de la empresa es muy compleja.", + "example_sentence_english": "The company's accounting is very complex.", + "pos": "noun", + "word_frequency": 4521 + }, + { + "word": "contador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accountant;counter", + "example_sentence_native": "Mi contador me ayuda con mis impuestos.", + "example_sentence_english": "My accountant helps me with my taxes.", + "pos": "noun", + "word_frequency": 4522 + }, + { + "word": "cátedra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professorship;chair (academic)", + "example_sentence_native": "Obtuvo la cátedra de historia en la universidad.", + "example_sentence_english": "He obtained the history professorship at the university.", + "pos": "noun", + "word_frequency": 4523 + }, + { + "word": "debut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debut", + "example_sentence_native": "Su debut en el cine fue un éxito.", + "example_sentence_english": "His film debut was a success.", + "pos": "noun", + "word_frequency": 4525 + }, + { + "word": "decepción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointment", + "example_sentence_native": "Sentí una gran decepción al no ganar.", + "example_sentence_english": "I felt great disappointment when I didn't win.", + "pos": "noun", + "word_frequency": 4526 + }, + { + "word": "deportista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athlete;sportsperson", + "example_sentence_native": "Es un deportista muy talentoso.", + "example_sentence_english": "He is a very talented athlete.", + "pos": "noun", + "word_frequency": 4527 + }, + { + "word": "desagradable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant;disagreeable", + "example_sentence_native": "El olor era muy desagradable.", + "example_sentence_english": "The smell was very unpleasant.", + "pos": "adjective", + "word_frequency": 4528 + }, + { + "word": "desorden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disorder;mess", + "example_sentence_native": "Su habitación siempre está en desorden.", + "example_sentence_english": "His room is always in a mess.", + "pos": "noun", + "word_frequency": 4529 + }, + { + "word": "desprecio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contempt;scorn", + "example_sentence_native": "Miró a su rival con desprecio.", + "example_sentence_english": "He looked at his rival with contempt.", + "pos": "noun", + "word_frequency": 4530 + }, + { + "word": "disponibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "availability", + "example_sentence_native": "Necesito confirmar su disponibilidad para la reunión.", + "example_sentence_english": "I need to confirm your availability for the meeting.", + "pos": "noun", + "word_frequency": 4532 + }, + { + "word": "emocionante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exciting;thrilling", + "example_sentence_native": "Fue un partido muy emocionante.", + "example_sentence_english": "It was a very exciting match.", + "pos": "adjective", + "word_frequency": 4533 + }, + { + "word": "estrictamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strictly", + "example_sentence_native": "Esto es estrictamente confidencial.", + "example_sentence_english": "This is strictly confidential.", + "pos": "adverb", + "word_frequency": 4534 + }, + { + "word": "evangelio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gospel", + "example_sentence_native": "El evangelio según San Juan.", + "example_sentence_english": "The gospel according to Saint John.", + "pos": "noun", + "word_frequency": 4535 + }, + { + "word": "furia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fury;rage", + "example_sentence_native": "La furia del viento destrozó los árboles.", + "example_sentence_english": "The fury of the wind destroyed the trees.", + "pos": "noun", + "word_frequency": 4536 + }, + { + "word": "gallo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rooster", + "example_sentence_native": "El gallo canta al amanecer.", + "example_sentence_english": "The rooster crows at dawn.", + "pos": "noun", + "word_frequency": 4537 + }, + { + "word": "gastronomía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastronomy", + "example_sentence_native": "La gastronomía española es muy variada.", + "example_sentence_english": "Spanish gastronomy is very varied.", + "pos": "noun", + "word_frequency": 4538 + }, + { + "word": "genética", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genetics", + "example_sentence_native": "Estudió genética en la universidad.", + "example_sentence_english": "She studied genetics at the university.", + "pos": "noun", + "word_frequency": 4539 + }, + { + "word": "gimnasia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnastics;exercise", + "example_sentence_native": "Hago gimnasia todas las mañanas.", + "example_sentence_english": "I do gymnastics every morning.", + "pos": "noun", + "word_frequency": 4540 + }, + { + "word": "guión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "script;hyphen;dash", + "example_sentence_native": "El guión de la película es excelente.", + "example_sentence_english": "The film's script is excellent.", + "pos": "noun", + "word_frequency": 4542 + }, + { + "word": "históricamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "historically", + "example_sentence_native": "Históricamente, esta región ha sido muy importante.", + "example_sentence_english": "Historically, this region has been very important.", + "pos": "adverb", + "word_frequency": 4543 + }, + { + "word": "honestidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honesty", + "example_sentence_native": "La honestidad es un valor fundamental.", + "example_sentence_english": "Honesty is a fundamental value.", + "pos": "noun", + "word_frequency": 4544 + }, + { + "word": "humildad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humility", + "example_sentence_native": "Su humildad es admirable.", + "example_sentence_english": "His humility is admirable.", + "pos": "noun", + "word_frequency": 4545 + }, + { + "word": "hígado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liver", + "example_sentence_native": "El hígado es un órgano vital.", + "example_sentence_english": "The liver is a vital organ.", + "pos": "noun", + "word_frequency": 4546 + }, + { + "word": "iluminación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lighting;illumination", + "example_sentence_native": "La iluminación del escenario era perfecta.", + "example_sentence_english": "The stage lighting was perfect.", + "pos": "noun", + "word_frequency": 4547 + }, + { + "word": "imprescindible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essential;indispensable", + "example_sentence_native": "Su ayuda es imprescindible para el éxito.", + "example_sentence_english": "Your help is essential for success.", + "pos": "adjective", + "word_frequency": 4548 + }, + { + "word": "indicador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicator;gauge", + "example_sentence_native": "El indicador de combustible está bajo.", + "example_sentence_english": "The fuel indicator is low.", + "pos": "noun", + "word_frequency": 4549 + }, + { + "word": "juramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oath;swear word", + "example_sentence_native": "Hizo un juramento de lealtad.", + "example_sentence_english": "He took an oath of loyalty.", + "pos": "noun", + "word_frequency": 4553 + }, + { + "word": "legislador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legislator", + "example_sentence_native": "El nuevo legislador propuso una ley.", + "example_sentence_english": "The new legislator proposed a law.", + "pos": "noun", + "word_frequency": 4555 + }, + { + "word": "libertador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberator", + "example_sentence_native": "Simón Bolívar es conocido como el Libertador.", + "example_sentence_english": "Simón Bolívar is known as the Liberator.", + "pos": "noun", + "word_frequency": 4557 + }, + { + "word": "liceo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school;lyceum", + "example_sentence_native": "Estudió en el liceo de su ciudad.", + "example_sentence_english": "He studied at the high school in his city.", + "pos": "noun", + "word_frequency": 4558 + }, + { + "word": "manifestante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstrator;protester", + "example_sentence_native": "Los manifestantes marcharon pacíficamente por las calles.", + "example_sentence_english": "The demonstrators marched peacefully through the streets.", + "pos": "noun", + "word_frequency": 4560 + }, + { + "word": "marcador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marker;scoreboard;bookmark", + "example_sentence_native": "Necesito un marcador para escribir en la pizarra.", + "example_sentence_english": "I need a marker to write on the whiteboard.", + "pos": "noun", + "word_frequency": 4561 + }, + { + "word": "mecánico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mechanic", + "example_sentence_native": "El mecánico reparó mi coche rápidamente.", + "example_sentence_english": "The mechanic repaired my car quickly.", + "pos": "noun", + "word_frequency": 4564 + }, + { + "word": "meme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meme", + "example_sentence_native": "Ese meme se hizo viral en internet.", + "example_sentence_english": "That meme went viral on the internet.", + "pos": "noun", + "word_frequency": 4565 + }, + { + "word": "noreste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "northeast", + "example_sentence_native": "La ciudad está situada al noreste del país.", + "example_sentence_english": "The city is located to the northeast of the country.", + "pos": "noun", + "word_frequency": 4567 + }, + { + "word": "noventa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ninety", + "example_sentence_native": "Tengo noventa euros en mi cartera.", + "example_sentence_english": "I have ninety euros in my wallet.", + "pos": "noun", + "word_frequency": 4568 + }, + { + "word": "poblado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "village;populated area", + "example_sentence_native": "El pequeño poblado estaba rodeado de montañas.", + "example_sentence_english": "The small village was surrounded by mountains.", + "pos": "noun", + "word_frequency": 4571 + }, + { + "word": "porción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portion;serving", + "example_sentence_native": "Me sirvió una gran porción de pastel.", + "example_sentence_english": "He served me a large portion of cake.", + "pos": "noun", + "word_frequency": 4572 + }, + { + "word": "progresista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive", + "example_sentence_native": "Es un partido político con ideas progresistas.", + "example_sentence_english": "It is a political party with progressive ideas.", + "pos": "adjective", + "word_frequency": 4573 + }, + { + "word": "prostitución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitution", + "example_sentence_native": "La prostitución es un tema complejo en muchas sociedades.", + "example_sentence_english": "Prostitution is a complex issue in many societies.", + "pos": "noun", + "word_frequency": 4574 + }, + { + "word": "protector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protector;guardian", + "example_sentence_native": "Mi perro es un gran protector de la casa.", + "example_sentence_english": "My dog is a great protector of the house.", + "pos": "noun", + "word_frequency": 4575 + }, + { + "word": "proveer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide;to supply", + "example_sentence_native": "La empresa debe proveer los materiales necesarios.", + "example_sentence_english": "The company must provide the necessary materials.", + "pos": "verb", + "word_frequency": 4576 + }, + { + "word": "reemplazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to replace", + "example_sentence_native": "Necesitamos reemplazar la batería del coche.", + "example_sentence_english": "We need to replace the car battery.", + "pos": "verb", + "word_frequency": 4577 + }, + { + "word": "registrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered", + "example_sentence_native": "El producto está registrado bajo una marca comercial.", + "example_sentence_english": "The product is registered under a trademark.", + "pos": "adjective", + "word_frequency": 4578 + }, + { + "word": "relieve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief;terrain", + "example_sentence_native": "El mapa muestra el relieve montañoso de la región.", + "example_sentence_english": "The map shows the mountainous terrain of the region.", + "pos": "noun", + "word_frequency": 4579 + }, + { + "word": "sida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "AIDS", + "example_sentence_native": "La investigación sobre el SIDA ha avanzado mucho.", + "example_sentence_english": "Research on AIDS has advanced greatly.", + "pos": "noun", + "word_frequency": 4580 + }, + { + "word": "soñar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dream", + "example_sentence_native": "Me gusta soñar con viajes a lugares exóticos.", + "example_sentence_english": "I like to dream about trips to exotic places.", + "pos": "verb", + "word_frequency": 4581 + }, + { + "word": "sumo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sumo (wrestling)", + "example_sentence_native": "El sumo es un deporte tradicional japonés.", + "example_sentence_english": "Sumo is a traditional Japanese sport.", + "pos": "noun", + "word_frequency": 4582 + }, + { + "word": "tardar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take time;to delay", + "example_sentence_native": "No quiero tardar mucho en llegar.", + "example_sentence_english": "I don't want to take long to arrive.", + "pos": "verb", + "word_frequency": 4583 + }, + { + "word": "tic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tic;twitch", + "example_sentence_native": "Tenía un tic nervioso en el ojo.", + "example_sentence_english": "He had a nervous tic in his eye.", + "pos": "noun", + "word_frequency": 4585 + }, + { + "word": "trimestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarter (of a year)", + "example_sentence_native": "El primer trimestre del año fue muy productivo.", + "example_sentence_english": "The first quarter of the year was very productive.", + "pos": "noun", + "word_frequency": 4587 + }, + { + "word": "técnicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technically", + "example_sentence_native": "Técnicamente, la respuesta es correcta.", + "example_sentence_english": "Technically, the answer is correct.", + "pos": "adverb", + "word_frequency": 4588 + }, + { + "word": "union", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "union", + "example_sentence_native": "La unión hace la fuerza.", + "example_sentence_english": "Union makes strength.", + "pos": "noun", + "word_frequency": 4589 + }, + { + "word": "verdura", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "vegetable", + "example_sentence_native": "Es importante comer mucha verdura.", + "example_sentence_english": "It's important to eat a lot of vegetables.", + "pos": "noun", + "word_frequency": 4590 + }, + { + "word": "abundante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abundant;plentiful", + "example_sentence_native": "Tuvimos una cosecha abundante este año.", + "example_sentence_english": "We had an abundant harvest this year.", + "pos": "adjective", + "word_frequency": 4591 + }, + { + "word": "accion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "action;share (stock)", + "example_sentence_native": "Es hora de pasar a la acción.", + "example_sentence_english": "It's time to take action.", + "pos": "noun", + "word_frequency": 4592 + }, + { + "word": "actualizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to update", + "example_sentence_native": "Necesito actualizar el software de mi ordenador.", + "example_sentence_english": "I need to update my computer software.", + "pos": "verb", + "word_frequency": 4593 + }, + { + "word": "adjunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attached;adjoint", + "example_sentence_native": "Encontrará el documento adjunto en el correo electrónico.", + "example_sentence_english": "You will find the attached document in the email.", + "pos": "adjective", + "word_frequency": 4594 + }, + { + "word": "aduana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customs (border control)", + "example_sentence_native": "Tuvimos que pasar por la aduana en el aeropuerto.", + "example_sentence_english": "We had to go through customs at the airport.", + "pos": "noun", + "word_frequency": 4595 + }, + { + "word": "afecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affection;fondness", + "example_sentence_native": "Le tengo mucho afecto a mis abuelos.", + "example_sentence_english": "I have a lot of affection for my grandparents.", + "pos": "noun", + "word_frequency": 4596 + }, + { + "word": "afrontar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to face;to confront", + "example_sentence_native": "Debemos afrontar los desafíos con valentía.", + "example_sentence_english": "We must face challenges with courage.", + "pos": "verb", + "word_frequency": 4597 + }, + { + "word": "alejar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move away;to distance", + "example_sentence_native": "Quiso alejar los malos pensamientos de su mente.", + "example_sentence_english": "He wanted to distance the bad thoughts from his mind.", + "pos": "verb", + "word_frequency": 4598 + }, + { + "word": "aprecio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciation;esteem", + "example_sentence_native": "Siento un gran aprecio por tu ayuda.", + "example_sentence_english": "I feel great appreciation for your help.", + "pos": "noun", + "word_frequency": 4599 + }, + { + "word": "armar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assemble;to arm", + "example_sentence_native": "Vamos a armar el mueble nuevo.", + "example_sentence_english": "We are going to assemble the new furniture.", + "pos": "verb", + "word_frequency": 4600 + }, + { + "word": "arranque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start;beginning", + "example_sentence_native": "El arranque del motor fue difícil en el frío.", + "example_sentence_english": "The engine's start was difficult in the cold.", + "pos": "noun", + "word_frequency": 4601 + }, + { + "word": "asignación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assignment;allocation", + "example_sentence_native": "La asignación de tareas fue clara.", + "example_sentence_english": "The assignment of tasks was clear.", + "pos": "noun", + "word_frequency": 4602 + }, + { + "word": "auxiliar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auxiliary;assistant", + "example_sentence_native": "Necesitamos personal auxiliar para el evento.", + "example_sentence_english": "We need auxiliary staff for the event.", + "pos": "adjective", + "word_frequency": 4604 + }, + { + "word": "brecha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gap;breach", + "example_sentence_native": "Hay una brecha entre ricos y pobres.", + "example_sentence_english": "There is a gap between rich and poor.", + "pos": "noun", + "word_frequency": 4606 + }, + { + "word": "cal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lime", + "example_sentence_native": "La cal se usa en la construcción.", + "example_sentence_english": "Lime is used in construction.", + "pos": "noun", + "word_frequency": 4607 + }, + { + "word": "celda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cell", + "example_sentence_native": "El prisionero estaba en su celda.", + "example_sentence_english": "The prisoner was in his cell.", + "pos": "noun", + "word_frequency": 4608 + }, + { + "word": "cemento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cement", + "example_sentence_native": "Necesitamos más cemento para la obra.", + "example_sentence_english": "We need more cement for the construction.", + "pos": "noun", + "word_frequency": 4609 + }, + { + "word": "cesar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cease;to stop", + "example_sentence_native": "La lluvia cesó después de una hora.", + "example_sentence_english": "The rain ceased after an hour.", + "pos": "verb", + "word_frequency": 4610 + }, + { + "word": "cintura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waist", + "example_sentence_native": "Se ató el cinturón a la cintura.", + "example_sentence_english": "He tied the belt around his waist.", + "pos": "noun", + "word_frequency": 4612 + }, + { + "word": "colina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hill", + "example_sentence_native": "Subimos la colina para ver el paisaje.", + "example_sentence_english": "We climbed the hill to see the landscape.", + "pos": "noun", + "word_frequency": 4615 + }, + { + "word": "comisionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commissioner", + "example_sentence_native": "El comisionado anunció nuevas medidas.", + "example_sentence_english": "The commissioner announced new measures.", + "pos": "noun", + "word_frequency": 4616 + }, + { + "word": "concejal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "councilor", + "example_sentence_native": "El concejal votó a favor del proyecto.", + "example_sentence_english": "The councilor voted in favor of the project.", + "pos": "noun", + "word_frequency": 4617 + }, + { + "word": "confesión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confession", + "example_sentence_native": "Su confesión sorprendió a todos.", + "example_sentence_english": "His confession surprised everyone.", + "pos": "noun", + "word_frequency": 4618 + }, + { + "word": "considerablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerably", + "example_sentence_native": "La situación ha mejorado considerablemente.", + "example_sentence_english": "The situation has improved considerably.", + "pos": "adverb", + "word_frequency": 4619 + }, + { + "word": "consumir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consume", + "example_sentence_native": "Debemos consumir menos energía.", + "example_sentence_english": "We must consume less energy.", + "pos": "verb", + "word_frequency": 4620 + }, + { + "word": "convencional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conventional", + "example_sentence_native": "Sigue un método convencional de enseñanza.", + "example_sentence_english": "He follows a conventional teaching method.", + "pos": "adjective", + "word_frequency": 4621 + }, + { + "word": "corporal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bodily;corporal", + "example_sentence_native": "La expresión corporal es importante.", + "example_sentence_english": "Bodily expression is important.", + "pos": "adjective", + "word_frequency": 4622 + }, + { + "word": "cuna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crib;cradle", + "example_sentence_native": "El bebé duerme en su cuna.", + "example_sentence_english": "The baby sleeps in its crib.", + "pos": "noun", + "word_frequency": 4623 + }, + { + "word": "delicioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delicious", + "example_sentence_native": "La comida estaba deliciosa.", + "example_sentence_english": "The food was delicious.", + "pos": "adjective", + "word_frequency": 4625 + }, + { + "word": "desacuerdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disagreement", + "example_sentence_native": "Hubo un desacuerdo sobre el plan.", + "example_sentence_english": "There was a disagreement about the plan.", + "pos": "noun", + "word_frequency": 4626 + }, + { + "word": "desgraciadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunately", + "example_sentence_native": "Desgraciadamente, no pudimos ir.", + "example_sentence_english": "Unfortunately, we couldn't go.", + "pos": "adverb", + "word_frequency": 4627 + }, + { + "word": "detectar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to detect", + "example_sentence_native": "Es difícil detectar el problema.", + "example_sentence_english": "It is difficult to detect the problem.", + "pos": "verb", + "word_frequency": 4628 + }, + { + "word": "docena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dozen", + "example_sentence_native": "Compramos una docena de huevos.", + "example_sentence_english": "We bought a dozen eggs.", + "pos": "noun", + "word_frequency": 4629 + }, + { + "word": "dormitorio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bedroom", + "example_sentence_native": "Mi dormitorio es grande.", + "example_sentence_english": "My bedroom is big.", + "pos": "noun", + "word_frequency": 4630 + }, + { + "word": "esconder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hide", + "example_sentence_native": "El niño se escondió detrás del árbol.", + "example_sentence_english": "The child hid behind the tree.", + "pos": "verb", + "word_frequency": 4631 + }, + { + "word": "esencialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essentially", + "example_sentence_native": "Esencialmente, todos estamos de acuerdo.", + "example_sentence_english": "Essentially, we all agree.", + "pos": "adverb", + "word_frequency": 4632 + }, + { + "word": "galleta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cookie;biscuit", + "example_sentence_native": "Me gusta comer galletas con leche.", + "example_sentence_english": "I like to eat cookies with milk.", + "pos": "noun", + "word_frequency": 4635 + }, + { + "word": "grueso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thick;bulky", + "example_sentence_native": "El libro es muy grueso.", + "example_sentence_english": "The book is very thick.", + "pos": "adjective", + "word_frequency": 4636 + }, + { + "word": "habitualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habitually;usually", + "example_sentence_native": "Habitualmente, me levanto temprano.", + "example_sentence_english": "Habitually, I wake up early.", + "pos": "adverb", + "word_frequency": 4637 + }, + { + "word": "honestamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honestly", + "example_sentence_native": "Honestamente, no sé la respuesta.", + "example_sentence_english": "Honestly, I don't know the answer.", + "pos": "adverb", + "word_frequency": 4638 + }, + { + "word": "indispensable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indispensable;essential", + "example_sentence_native": "El agua es indispensable para la vida.", + "example_sentence_english": "Water is indispensable for life.", + "pos": "adjective", + "word_frequency": 4640 + }, + { + "word": "insecto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "insect", + "example_sentence_native": "Hay un insecto en la ventana.", + "example_sentence_english": "There is an insect on the window.", + "pos": "noun", + "word_frequency": 4641 + }, + { + "word": "insistir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insist", + "example_sentence_native": "Ella insiste en que vayamos.", + "example_sentence_english": "She insists that we go.", + "pos": "verb", + "word_frequency": 4642 + }, + { + "word": "integrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integrated", + "example_sentence_native": "El sistema está completamente integrado.", + "example_sentence_english": "The system is completely integrated.", + "pos": "adjective", + "word_frequency": 4643 + }, + { + "word": "islam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Islam", + "example_sentence_native": "El islam es una religión monoteísta.", + "example_sentence_english": "Islam is a monotheistic religion.", + "pos": "noun", + "word_frequency": 4644 + }, + { + "word": "juntar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to gather;to join", + "example_sentence_native": "Vamos a juntar todas las piezas.", + "example_sentence_english": "We are going to gather all the pieces.", + "pos": "verb", + "word_frequency": 4647 + }, + { + "word": "karma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "karma", + "example_sentence_native": "Creo en el karma.", + "example_sentence_english": "I believe in karma.", + "pos": "noun", + "word_frequency": 4649 + }, + { + "word": "lata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "can (container)", + "example_sentence_native": "Compré una lata de refresco.", + "example_sentence_english": "I bought a can of soda.", + "pos": "noun", + "word_frequency": 4650 + }, + { + "word": "maratón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marathon", + "example_sentence_native": "Corrió un maratón el domingo.", + "example_sentence_english": "He ran a marathon on Sunday.", + "pos": "noun", + "word_frequency": 4651 + }, + { + "word": "materno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maternal;motherly", + "example_sentence_native": "Su lengua materna es el español.", + "example_sentence_english": "His mother tongue is Spanish.", + "pos": "adjective", + "word_frequency": 4652 + }, + { + "word": "matriz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matrix;womb;main office", + "example_sentence_native": "La oficina matriz está en Madrid.", + "example_sentence_english": "The main office is in Madrid.", + "pos": "noun", + "word_frequency": 4653 + }, + { + "word": "prejuicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudice", + "example_sentence_native": "Debemos luchar contra el prejuicio.", + "example_sentence_english": "We must fight against prejudice.", + "pos": "noun", + "word_frequency": 4655 + }, + { + "word": "problemático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "problematic", + "example_sentence_native": "La situación es bastante problemática.", + "example_sentence_english": "The situation is quite problematic.", + "pos": "adjective", + "word_frequency": 4656 + }, + { + "word": "proteína", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protein", + "example_sentence_native": "Las legumbres son una buena fuente de proteína.", + "example_sentence_english": "Legumes are a good source of protein.", + "pos": "noun", + "word_frequency": 4657 + }, + { + "word": "rapidez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speed;rapidity", + "example_sentence_native": "La rapidez de su respuesta me sorprendió.", + "example_sentence_english": "The speed of his response surprised me.", + "pos": "noun", + "word_frequency": 4659 + }, + { + "word": "reparar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to repair;to fix", + "example_sentence_native": "Necesito reparar mi coche.", + "example_sentence_english": "I need to repair my car.", + "pos": "verb", + "word_frequency": 4660 + }, + { + "word": "serpiente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snake", + "example_sentence_native": "Vi una serpiente en el jardín.", + "example_sentence_english": "I saw a snake in the garden.", + "pos": "noun", + "word_frequency": 4661 + }, + { + "word": "sinónimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synonym", + "example_sentence_native": "Grande es sinónimo de enorme.", + "example_sentence_english": "Grande is a synonym for enorme.", + "pos": "noun", + "word_frequency": 4663 + }, + { + "word": "sofá", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sofa;couch", + "example_sentence_native": "Me senté en el sofá.", + "example_sentence_english": "I sat on the sofa.", + "pos": "noun", + "word_frequency": 4664 + }, + { + "word": "terrestre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrestrial;earthly", + "example_sentence_native": "Los animales terrestres viven en la tierra.", + "example_sentence_english": "Terrestrial animals live on land.", + "pos": "adjective", + "word_frequency": 4666 + }, + { + "word": "vacuna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaccine", + "example_sentence_native": "La vacuna contra la gripe es importante.", + "example_sentence_english": "The flu vaccine is important.", + "pos": "noun", + "word_frequency": 4667 + }, + { + "word": "verso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verse (of a poem;song)", + "example_sentence_native": "El primer verso del poema es hermoso.", + "example_sentence_english": "The first verse of the poem is beautiful.", + "pos": "noun", + "word_frequency": 4668 + }, + { + "word": "vice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice (as in vice-president)", + "example_sentence_native": "Es el vicepresidente de la compañía.", + "example_sentence_english": "He is the vice-president of the company.", + "pos": "noun", + "word_frequency": 4669 + }, + { + "word": "volante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steering wheel;flyer;shuttlecock", + "example_sentence_native": "Agarra el volante con ambas manos.", + "example_sentence_english": "Hold the steering wheel with both hands.", + "pos": "noun", + "word_frequency": 4670 + }, + { + "word": "acogido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welcomed;hosted;sheltered", + "example_sentence_native": "Fue bien acogido en la comunidad.", + "example_sentence_english": "He was well welcomed in the community.", + "pos": "adjective", + "word_frequency": 4673 + }, + { + "word": "afición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hobby;fondness;fan base", + "example_sentence_native": "Su afición es la lectura.", + "example_sentence_english": "His hobby is reading.", + "pos": "noun", + "word_frequency": 4675 + }, + { + "word": "aislado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolated", + "example_sentence_native": "Se siente muy aislado en la ciudad.", + "example_sentence_english": "He feels very isolated in the city.", + "pos": "adjective", + "word_frequency": 4677 + }, + { + "word": "alojamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accommodation;lodging", + "example_sentence_native": "Buscamos alojamiento para la noche.", + "example_sentence_english": "We are looking for accommodation for the night.", + "pos": "noun", + "word_frequency": 4678 + }, + { + "word": "anónimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anonymous", + "example_sentence_native": "El autor del libro prefiere permanecer anónimo.", + "example_sentence_english": "The author of the book prefers to remain anonymous.", + "pos": "adjective", + "word_frequency": 4680 + }, + { + "word": "aula", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "classroom;lecture hall", + "example_sentence_native": "Los estudiantes se reunieron en el aula.", + "example_sentence_english": "The students gathered in the classroom.", + "pos": "noun", + "word_frequency": 4683 + }, + { + "word": "automático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatic", + "example_sentence_native": "La puerta se abre de forma automática.", + "example_sentence_english": "The door opens automatically.", + "pos": "adjective", + "word_frequency": 4684 + }, + { + "word": "boxeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxing", + "example_sentence_native": "Le gusta ver partidos de boxeo los fines de semana.", + "example_sentence_english": "He likes to watch boxing matches on weekends.", + "pos": "noun", + "word_frequency": 4686 + }, + { + "word": "béisbol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baseball", + "example_sentence_native": "El béisbol es muy popular en algunos países.", + "example_sentence_english": "Baseball is very popular in some countries.", + "pos": "noun", + "word_frequency": 4687 + }, + { + "word": "calcular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to calculate", + "example_sentence_native": "Necesito calcular el costo total del proyecto.", + "example_sentence_english": "I need to calculate the total cost of the project.", + "pos": "verb", + "word_frequency": 4688 + }, + { + "word": "ceniza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ash", + "example_sentence_native": "Después del incendio, solo quedaron cenizas.", + "example_sentence_english": "After the fire, only ashes remained.", + "pos": "noun", + "word_frequency": 4689 + }, + { + "word": "comarca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "region;district", + "example_sentence_native": "La comarca es conocida por sus viñedos.", + "example_sentence_english": "The region is known for its vineyards.", + "pos": "noun", + "word_frequency": 4691 + }, + { + "word": "comodidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfort;convenience", + "example_sentence_native": "Disfruto de la comodidad de mi hogar.", + "example_sentence_english": "I enjoy the comfort of my home.", + "pos": "noun", + "word_frequency": 4692 + }, + { + "word": "conducción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driving;conduction", + "example_sentence_native": "La conducción en la ciudad es estresante.", + "example_sentence_english": "Driving in the city is stressful.", + "pos": "noun", + "word_frequency": 4693 + }, + { + "word": "confirmación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmation", + "example_sentence_native": "Esperamos la confirmación de la reserva.", + "example_sentence_english": "We are waiting for the reservation confirmation.", + "pos": "noun", + "word_frequency": 4694 + }, + { + "word": "cortesía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courtesy", + "example_sentence_native": "Siempre muestra mucha cortesía con los demás.", + "example_sentence_english": "He always shows a lot of courtesy to others.", + "pos": "noun", + "word_frequency": 4695 + }, + { + "word": "célebre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "famous;celebrated", + "example_sentence_native": "Es un pintor célebre en su país.", + "example_sentence_english": "He is a celebrated painter in his country.", + "pos": "adjective", + "word_frequency": 4696 + }, + { + "word": "cúpula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dome;cupola", + "example_sentence_native": "La cúpula de la catedral es impresionante.", + "example_sentence_english": "The cathedral's dome is impressive.", + "pos": "noun", + "word_frequency": 4697 + }, + { + "word": "diputación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provincial council;deputation", + "example_sentence_native": "La diputación provincial aprobó el presupuesto.", + "example_sentence_english": "The provincial council approved the budget.", + "pos": "noun", + "word_frequency": 4698 + }, + { + "word": "estudiantil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "student (adj.);scholastic", + "example_sentence_native": "La vida estudiantil puede ser muy exigente.", + "example_sentence_english": "Student life can be very demanding.", + "pos": "adjective", + "word_frequency": 4700 + }, + { + "word": "eternidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternity", + "example_sentence_native": "Parecía que la espera duraría una eternidad.", + "example_sentence_english": "It seemed like the wait would last an eternity.", + "pos": "noun", + "word_frequency": 4701 + }, + { + "word": "expresidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former president", + "example_sentence_native": "El expresidente dio una conferencia de prensa.", + "example_sentence_english": "The former president gave a press conference.", + "pos": "noun", + "word_frequency": 4702 + }, + { + "word": "filósofo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosopher", + "example_sentence_native": "Platón fue un famoso filósofo griego.", + "example_sentence_english": "Plato was a famous Greek philosopher.", + "pos": "noun", + "word_frequency": 4703 + }, + { + "word": "fundamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation;basis", + "example_sentence_native": "Su argumento carece de fundamento.", + "example_sentence_english": "His argument lacks foundation.", + "pos": "noun", + "word_frequency": 4704 + }, + { + "word": "ginebra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gin", + "example_sentence_native": "Pidió un gin-tonic con ginebra de calidad.", + "example_sentence_english": "He ordered a gin and tonic with quality gin.", + "pos": "noun", + "word_frequency": 4705 + }, + { + "word": "iris", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iris (of the eye);iris (flower)", + "example_sentence_native": "El color del iris de sus ojos es muy bonito.", + "example_sentence_english": "The color of her eye's iris is very beautiful.", + "pos": "noun", + "word_frequency": 4707 + }, + { + "word": "legitimidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimacy", + "example_sentence_native": "La legitimidad de la decisión fue cuestionada.", + "example_sentence_english": "The legitimacy of the decision was questioned.", + "pos": "noun", + "word_frequency": 4709 + }, + { + "word": "lingüística", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "linguistics", + "example_sentence_native": "Estudia lingüística en la universidad.", + "example_sentence_english": "She studies linguistics at the university.", + "pos": "noun", + "word_frequency": 4710 + }, + { + "word": "magdalena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muffin;cupcake (Spanish style)", + "example_sentence_native": "Me comí una magdalena con el café.", + "example_sentence_english": "I ate a muffin with my coffee.", + "pos": "noun", + "word_frequency": 4711 + }, + { + "word": "maldad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evil;wickedness", + "example_sentence_native": "La historia trata sobre la maldad humana.", + "example_sentence_english": "The story is about human evil.", + "pos": "noun", + "word_frequency": 4712 + }, + { + "word": "maltrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistreatment;abuse", + "example_sentence_native": "El maltrato animal es inaceptable.", + "example_sentence_english": "Animal mistreatment is unacceptable.", + "pos": "noun", + "word_frequency": 4713 + }, + { + "word": "matanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slaughter;massacre", + "example_sentence_native": "La matanza de animales para consumo es común.", + "example_sentence_english": "The slaughter of animals for consumption is common.", + "pos": "noun", + "word_frequency": 4714 + }, + { + "word": "misericordia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercy", + "example_sentence_native": "Pidió misericordia al juez.", + "example_sentence_english": "He begged the judge for mercy.", + "pos": "noun", + "word_frequency": 4715 + }, + { + "word": "moción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "motion (as in a proposal);resolution", + "example_sentence_native": "La moción fue aprobada por unanimidad.", + "example_sentence_english": "The motion was approved unanimously.", + "pos": "noun", + "word_frequency": 4716 + }, + { + "word": "naval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naval", + "example_sentence_native": "La flota naval zarpó del puerto.", + "example_sentence_english": "The naval fleet sailed from the port.", + "pos": "adjective", + "word_frequency": 4717 + }, + { + "word": "niñez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childhood", + "example_sentence_native": "Tuvo una niñez muy feliz.", + "example_sentence_english": "He had a very happy childhood.", + "pos": "noun", + "word_frequency": 4719 + }, + { + "word": "nostalgia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nostalgia", + "example_sentence_native": "Siento nostalgia por mi infancia.", + "example_sentence_english": "I feel nostalgia for my childhood.", + "pos": "noun", + "word_frequency": 4720 + }, + { + "word": "notificación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notification", + "example_sentence_native": "Recibí una notificación en mi teléfono.", + "example_sentence_english": "I received a notification on my phone.", + "pos": "noun", + "word_frequency": 4721 + }, + { + "word": "pato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duck", + "example_sentence_native": "El pato nada en el estanque.", + "example_sentence_english": "The duck swims in the pond.", + "pos": "noun", + "word_frequency": 4722 + }, + { + "word": "protestar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protest", + "example_sentence_native": "La gente salió a protestar contra la medida.", + "example_sentence_english": "People went out to protest against the measure.", + "pos": "verb", + "word_frequency": 4727 + }, + { + "word": "recto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straight", + "example_sentence_native": "La línea es recta.", + "example_sentence_english": "The line is straight.", + "pos": "adjective", + "word_frequency": 4728 + }, + { + "word": "santuario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanctuary", + "example_sentence_native": "Visitamos un santuario de aves.", + "example_sentence_english": "We visited a bird sanctuary.", + "pos": "noun", + "word_frequency": 4729 + }, + { + "word": "simultáneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneously", + "example_sentence_native": "Trabajaron simultáneamente en el proyecto.", + "example_sentence_english": "They worked simultaneously on the project.", + "pos": "adverb", + "word_frequency": 4732 + }, + { + "word": "tira", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strip", + "example_sentence_native": "Cortó una tira de papel.", + "example_sentence_english": "He cut a strip of paper.", + "pos": "noun", + "word_frequency": 4735 + }, + { + "word": "tope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speed bump", + "example_sentence_native": "Hay un tope en la carretera.", + "example_sentence_english": "There is a speed bump on the road.", + "pos": "noun", + "word_frequency": 4736 + }, + { + "word": "traductor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translator", + "example_sentence_native": "Necesito un traductor para este documento.", + "example_sentence_english": "I need a translator for this document.", + "pos": "noun", + "word_frequency": 4737 + }, + { + "word": "transcurso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course", + "example_sentence_native": "Durante el transcurso del día, llovió.", + "example_sentence_english": "During the course of the day, it rained.", + "pos": "noun", + "word_frequency": 4738 + }, + { + "word": "urna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballot box", + "example_sentence_native": "Los votos se depositaron en la urna.", + "example_sentence_english": "The votes were cast into the ballot box.", + "pos": "noun", + "word_frequency": 4740 + }, + { + "word": "verbo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "verb", + "example_sentence_native": "\"Correr\" es un verbo.", + "example_sentence_english": "\"To run\" is a verb.", + "pos": "noun", + "word_frequency": 4741 + }, + { + "word": "vicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice", + "example_sentence_native": "Fumar es un vicio.", + "example_sentence_english": "Smoking is a vice.", + "pos": "noun", + "word_frequency": 4742 + }, + { + "word": "volcán", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volcano", + "example_sentence_native": "El volcán entró en erupción.", + "example_sentence_english": "The volcano erupted.", + "pos": "noun", + "word_frequency": 4743 + }, + { + "word": "activista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "activist", + "example_sentence_native": "Ella es una activista por los derechos humanos.", + "example_sentence_english": "She is a human rights activist.", + "pos": "noun", + "word_frequency": 4744 + }, + { + "word": "adelantar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overtake", + "example_sentence_native": "El coche nos adelantó en la carretera.", + "example_sentence_english": "The car overtook us on the highway.", + "pos": "verb", + "word_frequency": 4745 + }, + { + "word": "administrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to administer", + "example_sentence_native": "Él administra la empresa.", + "example_sentence_english": "He manages the company.", + "pos": "verb", + "word_frequency": 4746 + }, + { + "word": "alimentario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food-related", + "example_sentence_native": "La cadena alimentaria es compleja.", + "example_sentence_english": "The food chain is complex.", + "pos": "adjective", + "word_frequency": 4748 + }, + { + "word": "brigada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brigade", + "example_sentence_native": "Una brigada de bomberos llegó al lugar.", + "example_sentence_english": "A fire brigade arrived at the scene.", + "pos": "noun", + "word_frequency": 4750 + }, + { + "word": "caballería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavalry", + "example_sentence_native": "La caballería cargó contra el enemigo.", + "example_sentence_english": "The cavalry charged against the enemy.", + "pos": "noun", + "word_frequency": 4752 + }, + { + "word": "campana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell", + "example_sentence_native": "La campana de la iglesia sonó.", + "example_sentence_english": "The church bell rang.", + "pos": "noun", + "word_frequency": 4753 + }, + { + "word": "ceder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to yield", + "example_sentence_native": "No voy a ceder a la presión.", + "example_sentence_english": "I will not yield to pressure.", + "pos": "verb", + "word_frequency": 4754 + }, + { + "word": "celo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zeal", + "example_sentence_native": "Puso mucho celo en su trabajo.", + "example_sentence_english": "He put a lot of zeal into his work.", + "pos": "noun", + "word_frequency": 4755 + }, + { + "word": "clan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clan", + "example_sentence_native": "El clan se reunió para la celebración.", + "example_sentence_english": "The clan gathered for the celebration.", + "pos": "noun", + "word_frequency": 4757 + }, + { + "word": "comisaría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police station", + "example_sentence_native": "Fui a la comisaría a denunciar el robo.", + "example_sentence_english": "I went to the police station to report the theft.", + "pos": "noun", + "word_frequency": 4758 + }, + { + "word": "consulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consulate", + "example_sentence_native": "Necesito ir al consulado para renovar mi pasaporte.", + "example_sentence_english": "I need to go to the consulate to renew my passport.", + "pos": "noun", + "word_frequency": 4759 + }, + { + "word": "desplazamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "displacement;movement", + "example_sentence_native": "El desplazamiento de la población fue masivo.", + "example_sentence_english": "The displacement of the population was massive.", + "pos": "noun", + "word_frequency": 4761 + }, + { + "word": "educar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to educate", + "example_sentence_native": "Es importante educar a los niños.", + "example_sentence_english": "It is important to educate children.", + "pos": "verb", + "word_frequency": 4763 + }, + { + "word": "emprender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to undertake;to start (a venture)", + "example_sentence_native": "Decidió emprender un nuevo negocio.", + "example_sentence_english": "He decided to undertake a new business.", + "pos": "verb", + "word_frequency": 4764 + }, + { + "word": "enojar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to anger;to annoy", + "example_sentence_native": "Su actitud me enoja mucho.", + "example_sentence_english": "His attitude angers me a lot.", + "pos": "verb", + "word_frequency": 4765 + }, + { + "word": "feminismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminism", + "example_sentence_native": "El feminismo busca la igualdad de género.", + "example_sentence_english": "Feminism seeks gender equality.", + "pos": "noun", + "word_frequency": 4766 + }, + { + "word": "fijar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fix;to set;to attach", + "example_sentence_native": "Necesito fijar el estante a la pared.", + "example_sentence_english": "I need to fix the shelf to the wall.", + "pos": "verb", + "word_frequency": 4767 + }, + { + "word": "futbolista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soccer player", + "example_sentence_native": "Mi hermano es un futbolista profesional.", + "example_sentence_english": "My brother is a professional soccer player.", + "pos": "noun", + "word_frequency": 4768 + }, + { + "word": "gallego", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Galician (person or language)", + "example_sentence_native": "Habla gallego con fluidez.", + "example_sentence_english": "He speaks Galician fluently.", + "pos": "noun", + "word_frequency": 4769 + }, + { + "word": "gallina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hen;chicken", + "example_sentence_native": "La gallina puso un huevo.", + "example_sentence_english": "The hen laid an egg.", + "pos": "noun", + "word_frequency": 4770 + }, + { + "word": "incómodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncomfortable", + "example_sentence_native": "Me siento incómodo con esta situación.", + "example_sentence_english": "I feel uncomfortable with this situation.", + "pos": "adjective", + "word_frequency": 4773 + }, + { + "word": "informacion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "information", + "example_sentence_native": "Necesito más información sobre el proyecto.", + "example_sentence_english": "I need more information about the project.", + "pos": "noun", + "word_frequency": 4774 + }, + { + "word": "informativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informative", + "example_sentence_native": "El programa fue muy informativo.", + "example_sentence_english": "The program was very informative.", + "pos": "adjective", + "word_frequency": 4775 + }, + { + "word": "israelí", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Israeli (person)", + "example_sentence_native": "Conoció a un israelí en su viaje.", + "example_sentence_english": "He met an Israeli on his trip.", + "pos": "noun", + "word_frequency": 4776 + }, + { + "word": "legalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legality", + "example_sentence_native": "La legalidad de la medida está en duda.", + "example_sentence_english": "The legality of the measure is in doubt.", + "pos": "noun", + "word_frequency": 4777 + }, + { + "word": "maniobra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maneuver", + "example_sentence_native": "La maniobra fue muy arriesgada.", + "example_sentence_english": "The maneuver was very risky.", + "pos": "noun", + "word_frequency": 4781 + }, + { + "word": "marea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tide", + "example_sentence_native": "La marea sube y baja.", + "example_sentence_english": "The tide rises and falls.", + "pos": "noun", + "word_frequency": 4783 + }, + { + "word": "marrón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brown", + "example_sentence_native": "El perro es de color marrón.", + "example_sentence_english": "The dog is brown.", + "pos": "adjective", + "word_frequency": 4784 + }, + { + "word": "metodología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodology", + "example_sentence_native": "La metodología de investigación es muy rigurosa.", + "example_sentence_english": "The research methodology is very rigorous.", + "pos": "noun", + "word_frequency": 4785 + }, + { + "word": "nido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nest", + "example_sentence_native": "El pájaro construyó un nido en el árbol.", + "example_sentence_english": "The bird built a nest in the tree.", + "pos": "noun", + "word_frequency": 4787 + }, + { + "word": "pardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brown;grayish-brown", + "example_sentence_native": "El oso pardo hiberna en invierno.", + "example_sentence_english": "The brown bear hibernates in winter.", + "pos": "adjective", + "word_frequency": 4788 + }, + { + "word": "partícula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particle", + "example_sentence_native": "Una partícula subatómica es muy pequeña.", + "example_sentence_english": "A subatomic particle is very small.", + "pos": "noun", + "word_frequency": 4789 + }, + { + "word": "poblador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant;settler", + "example_sentence_native": "Los primeros pobladores llegaron hace siglos.", + "example_sentence_english": "The first inhabitants arrived centuries ago.", + "pos": "noun", + "word_frequency": 4792 + }, + { + "word": "potente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powerful;potent", + "example_sentence_native": "Tiene un motor muy potente.", + "example_sentence_english": "It has a very powerful engine.", + "pos": "adjective", + "word_frequency": 4793 + }, + { + "word": "recolección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection;gathering", + "example_sentence_native": "La recolección de datos es crucial para el estudio.", + "example_sentence_english": "Data collection is crucial for the study.", + "pos": "noun", + "word_frequency": 4794 + }, + { + "word": "relacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relationship;relation", + "example_sentence_native": "Tienen una buena relación.", + "example_sentence_english": "They have a good relationship.", + "pos": "noun", + "word_frequency": 4795 + }, + { + "word": "sindical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade union (adj.);syndical", + "example_sentence_native": "Los derechos sindicales son importantes.", + "example_sentence_english": "Trade union rights are important.", + "pos": "adjective", + "word_frequency": 4797 + }, + { + "word": "soberano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sovereign", + "example_sentence_native": "Cada país es soberano en su territorio.", + "example_sentence_english": "Each country is sovereign in its territory.", + "pos": "adjective", + "word_frequency": 4798 + }, + { + "word": "sobretodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overcoat", + "example_sentence_native": "Llevaba un sobretodo elegante.", + "example_sentence_english": "He was wearing an elegant overcoat.", + "pos": "noun", + "word_frequency": 4799 + }, + { + "word": "séptimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seventh", + "example_sentence_native": "Es el séptimo día de la semana.", + "example_sentence_english": "It's the seventh day of the week.", + "pos": "adjective", + "word_frequency": 4800 + }, + { + "word": "taco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "taco", + "example_sentence_native": "Me encanta comer tacos de carne.", + "example_sentence_english": "I love to eat beef tacos.", + "pos": "noun", + "word_frequency": 4801 + }, + { + "word": "torta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cake", + "example_sentence_native": "Para su cumpleaños, le hicimos una torta de chocolate.", + "example_sentence_english": "For her birthday, we made her a chocolate cake.", + "pos": "noun", + "word_frequency": 4802 + }, + { + "word": "traidor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traitorous", + "example_sentence_native": "Sus acciones fueron consideradas traidoras.", + "example_sentence_english": "His actions were considered traitorous.", + "pos": "adjective", + "word_frequency": 4803 + }, + { + "word": "vientre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly", + "example_sentence_native": "El bebé crecía en el vientre de su madre.", + "example_sentence_english": "The baby grew in its mother's womb.", + "pos": "noun", + "word_frequency": 4806 + }, + { + "word": "africano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "African", + "example_sentence_native": "El elefante africano es el animal terrestre más grande.", + "example_sentence_english": "The African elephant is the largest land animal.", + "pos": "adjective", + "word_frequency": 4810 + }, + { + "word": "angustia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anguish", + "example_sentence_native": "Sintió una profunda angustia al recibir la noticia.", + "example_sentence_english": "She felt deep anguish upon receiving the news.", + "pos": "noun", + "word_frequency": 4811 + }, + { + "word": "anualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annually", + "example_sentence_native": "La conferencia se celebra anualmente en mayo.", + "example_sentence_english": "The conference is held annually in May.", + "pos": "adverb", + "word_frequency": 4813 + }, + { + "word": "bautista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Baptist", + "example_sentence_native": "Juan el Bautista es una figura importante en la Biblia.", + "example_sentence_english": "John the Baptist is an important figure in the Bible.", + "pos": "adjective", + "word_frequency": 4814 + }, + { + "word": "boleto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ticket", + "example_sentence_native": "Necesito comprar un boleto para el concierto.", + "example_sentence_english": "I need to buy a ticket for the concert.", + "pos": "noun", + "word_frequency": 4815 + }, + { + "word": "celebrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebrated", + "example_sentence_native": "El evento fue celebrado con gran éxito.", + "example_sentence_english": "The event was celebrated with great success.", + "pos": "adjective", + "word_frequency": 4818 + }, + { + "word": "clausura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closing", + "example_sentence_native": "La ceremonia de clausura será mañana.", + "example_sentence_english": "The closing ceremony will be tomorrow.", + "pos": "noun", + "word_frequency": 4819 + }, + { + "word": "comuna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commune", + "example_sentence_native": "Vive en una pequeña comuna rural.", + "example_sentence_english": "He lives in a small rural commune.", + "pos": "noun", + "word_frequency": 4820 + }, + { + "word": "cortés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polite", + "example_sentence_native": "Siempre es muy cortés con todo el mundo.", + "example_sentence_english": "He is always very polite to everyone.", + "pos": "adjective", + "word_frequency": 4821 + }, + { + "word": "creativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creative", + "example_sentence_native": "Es una persona muy creativa y llena de ideas.", + "example_sentence_english": "She is a very creative person full of ideas.", + "pos": "adjective", + "word_frequency": 4822 + }, + { + "word": "dedicación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedication", + "example_sentence_native": "Su dedicación al trabajo es admirable.", + "example_sentence_english": "His dedication to work is admirable.", + "pos": "noun", + "word_frequency": 4823 + }, + { + "word": "delicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delicate", + "example_sentence_native": "La situación es muy delicada y requiere cuidado.", + "example_sentence_english": "The situation is very delicate and requires care.", + "pos": "adjective", + "word_frequency": 4824 + }, + { + "word": "diseñar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to design", + "example_sentence_native": "Quiero diseñar mi propia casa.", + "example_sentence_english": "I want to design my own house.", + "pos": "verb", + "word_frequency": 4825 + }, + { + "word": "divisa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "currency", + "example_sentence_native": "El euro es la divisa de muchos países europeos.", + "example_sentence_english": "The euro is the currency of many European countries.", + "pos": "noun", + "word_frequency": 4826 + }, + { + "word": "experimental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experimental", + "example_sentence_native": "Están realizando un estudio experimental sobre el nuevo fármaco.", + "example_sentence_english": "They are conducting an experimental study on the new drug.", + "pos": "adjective", + "word_frequency": 4827 + }, + { + "word": "gripe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flu", + "example_sentence_native": "Tengo gripe y me siento muy mal.", + "example_sentence_english": "I have the flu and I feel very bad.", + "pos": "noun", + "word_frequency": 4830 + }, + { + "word": "horizontal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontal", + "example_sentence_native": "La línea horizontal es paralela al suelo.", + "example_sentence_english": "The horizontal line is parallel to the ground.", + "pos": "adjective", + "word_frequency": 4831 + }, + { + "word": "imprimir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to print", + "example_sentence_native": "Necesito imprimir este documento.", + "example_sentence_english": "I need to print this document.", + "pos": "verb", + "word_frequency": 4833 + }, + { + "word": "inconsciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconscious", + "example_sentence_native": "Después del accidente, el conductor quedó inconsciente.", + "example_sentence_english": "After the accident, the driver was unconscious.", + "pos": "adjective", + "word_frequency": 4834 + }, + { + "word": "mago", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magician", + "example_sentence_native": "El mago hizo desaparecer la moneda.", + "example_sentence_english": "The magician made the coin disappear.", + "pos": "noun", + "word_frequency": 4839 + }, + { + "word": "medieval", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medieval", + "example_sentence_native": "El castillo es de origen medieval.", + "example_sentence_english": "The castle is of medieval origin.", + "pos": "adjective", + "word_frequency": 4842 + }, + { + "word": "mercancía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchandise", + "example_sentence_native": "La tienda recibió un nuevo envío de mercancía.", + "example_sentence_english": "The store received a new shipment of merchandise.", + "pos": "noun", + "word_frequency": 4843 + }, + { + "word": "misterioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mysterious", + "example_sentence_native": "Había un hombre misterioso en la esquina.", + "example_sentence_english": "There was a mysterious man on the corner.", + "pos": "adjective", + "word_frequency": 4844 + }, + { + "word": "noción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notion", + "example_sentence_native": "No tengo ninguna noción de cómo funciona.", + "example_sentence_english": "I have no notion of how it works.", + "pos": "noun", + "word_frequency": 4846 + }, + { + "word": "ong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "NGO", + "example_sentence_native": "La ONG trabaja para proteger el medio ambiente.", + "example_sentence_english": "The NGO works to protect the environment.", + "pos": "noun", + "word_frequency": 4848 + }, + { + "word": "pascua", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Easter", + "example_sentence_native": "Celebramos la Pascua en familia.", + "example_sentence_english": "We celebrate Easter with family.", + "pos": "noun", + "word_frequency": 4849 + }, + { + "word": "pasillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hallway", + "example_sentence_native": "El pasillo estaba oscuro.", + "example_sentence_english": "The hallway was dark.", + "pos": "noun", + "word_frequency": 4850 + }, + { + "word": "pasto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grass", + "example_sentence_native": "El ganado pasta en el pasto verde.", + "example_sentence_english": "The cattle graze in the green grass.", + "pos": "noun", + "word_frequency": 4851 + }, + { + "word": "payaso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clown", + "example_sentence_native": "El payaso hizo reír a los niños.", + "example_sentence_english": "The clown made the children laugh.", + "pos": "noun", + "word_frequency": 4852 + }, + { + "word": "pino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pine tree", + "example_sentence_native": "Hay muchos pinos en el bosque.", + "example_sentence_english": "There are many pine trees in the forest.", + "pos": "noun", + "word_frequency": 4853 + }, + { + "word": "profeta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophet", + "example_sentence_native": "El profeta predijo el futuro.", + "example_sentence_english": "The prophet predicted the future.", + "pos": "noun", + "word_frequency": 4855 + }, + { + "word": "prosperidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosperity", + "example_sentence_native": "Deseamos prosperidad para todos.", + "example_sentence_english": "We wish prosperity for everyone.", + "pos": "noun", + "word_frequency": 4856 + }, + { + "word": "quejar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complain", + "example_sentence_native": "No te quejes tanto.", + "example_sentence_english": "Don't complain so much.", + "pos": "verb", + "word_frequency": 4857 + }, + { + "word": "quiebra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy", + "example_sentence_native": "La empresa se declaró en quiebra.", + "example_sentence_english": "The company declared bankruptcy.", + "pos": "noun", + "word_frequency": 4858 + }, + { + "word": "renovar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to renew", + "example_sentence_native": "Necesito renovar mi pasaporte.", + "example_sentence_english": "I need to renew my passport.", + "pos": "verb", + "word_frequency": 4859 + }, + { + "word": "ribera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riverbank", + "example_sentence_native": "Caminamos por la ribera del río.", + "example_sentence_english": "We walked along the riverbank.", + "pos": "noun", + "word_frequency": 4860 + }, + { + "word": "sargento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sergeant", + "example_sentence_native": "El sargento dio las órdenes.", + "example_sentence_english": "The sergeant gave the orders.", + "pos": "noun", + "word_frequency": 4863 + }, + { + "word": "someter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to submit", + "example_sentence_native": "Debemos someter la propuesta a revisión.", + "example_sentence_english": "We must submit the proposal for review.", + "pos": "verb", + "word_frequency": 4864 + }, + { + "word": "subsidio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidy", + "example_sentence_native": "El gobierno ofrece subsidios para la vivienda.", + "example_sentence_english": "The government offers housing subsidies.", + "pos": "noun", + "word_frequency": 4865 + }, + { + "word": "suicida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicidal", + "example_sentence_native": "Es importante buscar ayuda si tienes pensamientos suicidas.", + "example_sentence_english": "It's important to seek help if you have suicidal thoughts.", + "pos": "adjective", + "word_frequency": 4866 + }, + { + "word": "validez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validity", + "example_sentence_native": "La validez del contrato expira pronto.", + "example_sentence_english": "The validity of the contract expires soon.", + "pos": "noun", + "word_frequency": 4867 + }, + { + "word": "vena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vein", + "example_sentence_native": "La sangre fluye por las venas.", + "example_sentence_english": "Blood flows through the veins.", + "pos": "noun", + "word_frequency": 4868 + }, + { + "word": "viral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viral", + "example_sentence_native": "El video se hizo viral en pocas horas.", + "example_sentence_english": "The video went viral in a few hours.", + "pos": "adjective", + "word_frequency": 4869 + }, + { + "word": "visto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seen", + "example_sentence_native": "El documento fue visto por todos.", + "example_sentence_english": "The document was seen by everyone.", + "pos": "adjective", + "word_frequency": 4870 + }, + { + "word": "válido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valid", + "example_sentence_native": "Tu pasaporte sigue siendo válido.", + "example_sentence_english": "Your passport is still valid.", + "pos": "adjective", + "word_frequency": 4871 + }, + { + "word": "zapatilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sneaker", + "example_sentence_native": "Me puse mis zapatillas para correr.", + "example_sentence_english": "I put on my sneakers to run.", + "pos": "noun", + "word_frequency": 4873 + }, + { + "word": "abrigo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coat", + "example_sentence_native": "Necesito un abrigo para el frío.", + "example_sentence_english": "I need a coat for the cold.", + "pos": "noun", + "word_frequency": 4874 + }, + { + "word": "abundancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abundance", + "example_sentence_native": "Hay una abundancia de frutas en el mercado.", + "example_sentence_english": "There is an abundance of fruits in the market.", + "pos": "noun", + "word_frequency": 4875 + }, + { + "word": "adolescencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adolescence", + "example_sentence_native": "La adolescencia es una etapa de muchos cambios.", + "example_sentence_english": "Adolescence is a stage of many changes.", + "pos": "noun", + "word_frequency": 4876 + }, + { + "word": "ajedrez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chess", + "example_sentence_native": "Me gusta jugar al ajedrez.", + "example_sentence_english": "I like to play chess.", + "pos": "noun", + "word_frequency": 4877 + }, + { + "word": "alfa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alpha", + "example_sentence_native": "Es la primera letra del alfabeto griego, alfa.", + "example_sentence_english": "It's the first letter of the Greek alphabet, alpha.", + "pos": "noun", + "word_frequency": 4878 + }, + { + "word": "aplauso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "applause", + "example_sentence_native": "El público estalló en aplausos.", + "example_sentence_english": "The audience burst into applause.", + "pos": "noun", + "word_frequency": 4879 + }, + { + "word": "apostar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bet", + "example_sentence_native": "No deberías apostar todo tu dinero.", + "example_sentence_english": "You shouldn't bet all your money.", + "pos": "verb", + "word_frequency": 4880 + }, + { + "word": "bancario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banking;bank (adj.)", + "example_sentence_native": "Necesito ir al cajero bancario.", + "example_sentence_english": "I need to go to the bank ATM.", + "pos": "adjective", + "word_frequency": 4883 + }, + { + "word": "boom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boom", + "example_sentence_native": "La economía experimentó un boom.", + "example_sentence_english": "The economy experienced a boom.", + "pos": "noun", + "word_frequency": 4884 + }, + { + "word": "callar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be quiet;to silence", + "example_sentence_native": "Por favor, calla un momento.", + "example_sentence_english": "Please, be quiet for a moment.", + "pos": "verb", + "word_frequency": 4885 + }, + { + "word": "cazador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunter", + "example_sentence_native": "El cazador siguió las huellas del animal.", + "example_sentence_english": "The hunter followed the animal's tracks.", + "pos": "noun", + "word_frequency": 4886 + }, + { + "word": "celeste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sky blue;heavenly", + "example_sentence_native": "El cielo era de un color celeste hermoso.", + "example_sentence_english": "The sky was a beautiful sky blue color.", + "pos": "adjective", + "word_frequency": 4888 + }, + { + "word": "chaqueta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jacket", + "example_sentence_native": "Ponte la chaqueta, hace frío.", + "example_sentence_english": "Put on your jacket, it's cold.", + "pos": "noun", + "word_frequency": 4889 + }, + { + "word": "compasión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassion", + "example_sentence_native": "Mostró gran compasión por los necesitados.", + "example_sentence_english": "He showed great compassion for those in need.", + "pos": "noun", + "word_frequency": 4891 + }, + { + "word": "computación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computing;computer science", + "example_sentence_native": "Estudió ingeniería en computación.", + "example_sentence_english": "He studied computer engineering.", + "pos": "noun", + "word_frequency": 4892 + }, + { + "word": "conversar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to converse;to chat", + "example_sentence_native": "Nos gusta conversar por las tardes.", + "example_sentence_english": "We like to converse in the afternoons.", + "pos": "verb", + "word_frequency": 4893 + }, + { + "word": "cool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool", + "example_sentence_native": "¡Qué camiseta tan cool!", + "example_sentence_english": "What a cool t-shirt!", + "pos": "adjective", + "word_frequency": 4894 + }, + { + "word": "cooperativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperative", + "example_sentence_native": "Trabaja en una cooperativa agrícola.", + "example_sentence_english": "He works in an agricultural cooperative.", + "pos": "noun", + "word_frequency": 4895 + }, + { + "word": "cuadra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "block (city);stable (horses)", + "example_sentence_native": "Mi casa está a dos cuadras de aquí.", + "example_sentence_english": "My house is two blocks from here.", + "pos": "noun", + "word_frequency": 4896 + }, + { + "word": "debatir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to debate", + "example_sentence_native": "Van a debatir el tema en la reunión.", + "example_sentence_english": "They are going to debate the topic at the meeting.", + "pos": "verb", + "word_frequency": 4897 + }, + { + "word": "ecuatoriano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ecuadorian", + "example_sentence_native": "Conozco a un amigo ecuatoriano.", + "example_sentence_english": "I know an Ecuadorian friend.", + "pos": "adjective", + "word_frequency": 4898 + }, + { + "word": "encontrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "found", + "example_sentence_native": "El objeto encontrado fue devuelto a su dueño.", + "example_sentence_english": "The found object was returned to its owner.", + "pos": "adjective", + "word_frequency": 4899 + }, + { + "word": "estafa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scam;fraud", + "example_sentence_native": "Fue víctima de una estafa telefónica.", + "example_sentence_english": "He was a victim of a phone scam.", + "pos": "noun", + "word_frequency": 4900 + }, + { + "word": "excesivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessive", + "example_sentence_native": "El precio me parece excesivo.", + "example_sentence_english": "The price seems excessive to me.", + "pos": "adjective", + "word_frequency": 4901 + }, + { + "word": "favorecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to favor;to benefit", + "example_sentence_native": "Esta decisión podría favorecer a todos.", + "example_sentence_english": "This decision could favor everyone.", + "pos": "verb", + "word_frequency": 4902 + }, + { + "word": "flora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flora", + "example_sentence_native": "La flora de la región es muy diversa.", + "example_sentence_english": "The flora of the region is very diverse.", + "pos": "noun", + "word_frequency": 4903 + }, + { + "word": "hall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hall", + "example_sentence_native": "Nos encontramos en el hall del hotel.", + "example_sentence_english": "We met in the hotel hall.", + "pos": "noun", + "word_frequency": 4904 + }, + { + "word": "ignorante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ignorant", + "example_sentence_native": "Es ignorante sobre muchos temas.", + "example_sentence_english": "He is ignorant about many topics.", + "pos": "adjective", + "word_frequency": 4907 + }, + { + "word": "incidencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incidence;impact", + "example_sentence_native": "La incidencia de la enfermedad ha disminuido.", + "example_sentence_english": "The incidence of the disease has decreased.", + "pos": "noun", + "word_frequency": 4908 + }, + { + "word": "insultar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insult", + "example_sentence_native": "No debes insultar a nadie.", + "example_sentence_english": "You shouldn't insult anyone.", + "pos": "verb", + "word_frequency": 4909 + }, + { + "word": "intimidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimacy;privacy", + "example_sentence_native": "Valora mucho su intimidad.", + "example_sentence_english": "He values his privacy very much.", + "pos": "noun", + "word_frequency": 4910 + }, + { + "word": "matrícula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuition;registration;license plate", + "example_sentence_native": "La matrícula de la universidad es cara.", + "example_sentence_english": "University tuition is expensive.", + "pos": "noun", + "word_frequency": 4914 + }, + { + "word": "paloma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dove;pigeon", + "example_sentence_native": "Una paloma voló sobre mi cabeza.", + "example_sentence_english": "A dove flew over my head.", + "pos": "noun", + "word_frequency": 4916 + }, + { + "word": "petrolero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil (adj.);petroleum", + "example_sentence_native": "La industria petrolera es importante para el país.", + "example_sentence_english": "The oil industry is important for the country.", + "pos": "adjective", + "word_frequency": 4917 + }, + { + "word": "preservar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preserve", + "example_sentence_native": "Debemos preservar el medio ambiente.", + "example_sentence_english": "We must preserve the environment.", + "pos": "verb", + "word_frequency": 4918 + }, + { + "word": "procesamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing", + "example_sentence_native": "El procesamiento de datos es rápido.", + "example_sentence_english": "Data processing is fast.", + "pos": "noun", + "word_frequency": 4919 + }, + { + "word": "pulso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pulse;wrist", + "example_sentence_native": "El médico tomó mi pulso.", + "example_sentence_english": "The doctor took my pulse.", + "pos": "noun", + "word_frequency": 4920 + }, + { + "word": "seda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silk", + "example_sentence_native": "El vestido es de seda pura.", + "example_sentence_english": "The dress is made of pure silk.", + "pos": "noun", + "word_frequency": 4924 + }, + { + "word": "sereno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serene;calm", + "example_sentence_native": "Mantuvo la calma y el rostro sereno.", + "example_sentence_english": "He remained calm and his face serene.", + "pos": "adjective", + "word_frequency": 4925 + }, + { + "word": "seriedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriousness", + "example_sentence_native": "Tomó la situación con mucha seriedad.", + "example_sentence_english": "He took the situation with great seriousness.", + "pos": "noun", + "word_frequency": 4926 + }, + { + "word": "soltero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "single;unmarried", + "example_sentence_native": "Mi hermano es soltero.", + "example_sentence_english": "My brother is single.", + "pos": "adjective", + "word_frequency": 4927 + }, + { + "word": "spam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spam", + "example_sentence_native": "Mi bandeja de entrada está llena de spam.", + "example_sentence_english": "My inbox is full of spam.", + "pos": "noun", + "word_frequency": 4929 + }, + { + "word": "sudeste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southeast", + "example_sentence_native": "La casa está orientada al sudeste.", + "example_sentence_english": "The house faces southeast.", + "pos": "noun", + "word_frequency": 4931 + }, + { + "word": "superficial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superficial", + "example_sentence_native": "Su conocimiento del tema es muy superficial.", + "example_sentence_english": "His knowledge of the subject is very superficial.", + "pos": "adjective", + "word_frequency": 4933 + }, + { + "word": "temporalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporarily", + "example_sentence_native": "La tienda estará cerrada temporalmente.", + "example_sentence_english": "The store will be temporarily closed.", + "pos": "adverb", + "word_frequency": 4934 + }, + { + "word": "transacción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transaction", + "example_sentence_native": "La transacción se completó con éxito.", + "example_sentence_english": "The transaction was completed successfully.", + "pos": "noun", + "word_frequency": 4935 + }, + { + "word": "táctica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactic", + "example_sentence_native": "Necesitamos una nueva táctica para ganar.", + "example_sentence_english": "We need a new tactic to win.", + "pos": "noun", + "word_frequency": 4936 + }, + { + "word": "valentía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bravery;courage", + "example_sentence_native": "Demostró gran valentía en la batalla.", + "example_sentence_english": "He showed great bravery in battle.", + "pos": "noun", + "word_frequency": 4937 + }, + { + "word": "variar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vary", + "example_sentence_native": "Los precios pueden variar según la temporada.", + "example_sentence_english": "Prices can vary depending on the season.", + "pos": "verb", + "word_frequency": 4938 + }, + { + "word": "vestuario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wardrobe;changing room", + "example_sentence_native": "El vestuario de la obra es impresionante.", + "example_sentence_english": "The play's wardrobe is impressive.", + "pos": "noun", + "word_frequency": 4939 + }, + { + "word": "viola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viola", + "example_sentence_native": "Toca la viola en la orquesta.", + "example_sentence_english": "She plays the viola in the orchestra.", + "pos": "noun", + "word_frequency": 4940 + }, + { + "word": "violar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to violate", + "example_sentence_native": "No debes violar las reglas.", + "example_sentence_english": "You must not violate the rules.", + "pos": "verb", + "word_frequency": 4941 + }, + { + "word": "acercamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach;rapprochement", + "example_sentence_native": "Hubo un acercamiento entre las dos partes.", + "example_sentence_english": "There was an approach between the two parties.", + "pos": "noun", + "word_frequency": 4942 + }, + { + "word": "adecuadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adequately;properly", + "example_sentence_native": "Asegúrate de que todo esté adecuadamente preparado.", + "example_sentence_english": "Make sure everything is adequately prepared.", + "pos": "adverb", + "word_frequency": 4943 + }, + { + "word": "alternativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternative", + "example_sentence_native": "Buscamos una solución alternativa.", + "example_sentence_english": "We are looking for an alternative solution.", + "pos": "adjective", + "word_frequency": 4944 + }, + { + "word": "atravesar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cross;to go through", + "example_sentence_native": "Tuvimos que atravesar el bosque.", + "example_sentence_english": "We had to cross the forest.", + "pos": "verb", + "word_frequency": 4945 + }, + { + "word": "capturar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to capture", + "example_sentence_native": "La policía logró capturar al ladrón.", + "example_sentence_english": "The police managed to capture the thief.", + "pos": "verb", + "word_frequency": 4947 + }, + { + "word": "conejo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rabbit", + "example_sentence_native": "Vimos un conejo en el jardín.", + "example_sentence_english": "We saw a rabbit in the garden.", + "pos": "noun", + "word_frequency": 4950 + }, + { + "word": "confiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliable;trustworthy", + "example_sentence_native": "Es una persona muy confiable.", + "example_sentence_english": "He is a very reliable person.", + "pos": "adjective", + "word_frequency": 4951 + }, + { + "word": "consola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "console", + "example_sentence_native": "Me compré una nueva consola de videojuegos.", + "example_sentence_english": "I bought a new video game console.", + "pos": "noun", + "word_frequency": 4952 + }, + { + "word": "correspondencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correspondence", + "example_sentence_native": "Recibí mucha correspondencia hoy.", + "example_sentence_english": "I received a lot of correspondence today.", + "pos": "noun", + "word_frequency": 4953 + }, + { + "word": "cuidadosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carefully", + "example_sentence_native": "Abrió el paquete cuidadosamente.", + "example_sentence_english": "He opened the package carefully.", + "pos": "adverb", + "word_frequency": 4954 + }, + { + "word": "desconfianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distrust;suspicion", + "example_sentence_native": "Su actitud generó desconfianza.", + "example_sentence_english": "His attitude generated distrust.", + "pos": "noun", + "word_frequency": 4955 + }, + { + "word": "dibujar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to draw", + "example_sentence_native": "Le gusta dibujar paisajes.", + "example_sentence_english": "He likes to draw landscapes.", + "pos": "verb", + "word_frequency": 4956 + }, + { + "word": "doloroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painful", + "example_sentence_native": "Fue una experiencia muy dolorosa.", + "example_sentence_english": "It was a very painful experience.", + "pos": "adjective", + "word_frequency": 4957 + }, + { + "word": "ensalada", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salad", + "example_sentence_native": "Pedí una ensalada de pollo.", + "example_sentence_english": "I ordered a chicken salad.", + "pos": "noun", + "word_frequency": 4958 + }, + { + "word": "equidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equity;fairness", + "example_sentence_native": "Luchamos por la equidad social.", + "example_sentence_english": "We fight for social equity.", + "pos": "noun", + "word_frequency": 4959 + }, + { + "word": "extrañar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to miss;to surprise", + "example_sentence_native": "Te voy a extrañar mucho cuando te vayas.", + "example_sentence_english": "I'm going to miss you a lot when you leave.", + "pos": "verb", + "word_frequency": 4961 + }, + { + "word": "fabricante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufacturer", + "example_sentence_native": "El fabricante de coches anunció un nuevo modelo.", + "example_sentence_english": "The car manufacturer announced a new model.", + "pos": "noun", + "word_frequency": 4962 + }, + { + "word": "formalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formally", + "example_sentence_native": "La propuesta fue presentada formalmente al comité.", + "example_sentence_english": "The proposal was formally presented to the committee.", + "pos": "adverb", + "word_frequency": 4963 + }, + { + "word": "ganadería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "livestock farming;ranching", + "example_sentence_native": "La ganadería es una actividad económica importante en esta región.", + "example_sentence_english": "Livestock farming is an important economic activity in this region.", + "pos": "noun", + "word_frequency": 4964 + }, + { + "word": "golpear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hit;to strike;to knock", + "example_sentence_native": "Alguien está golpeando la puerta.", + "example_sentence_english": "Someone is knocking on the door.", + "pos": "verb", + "word_frequency": 4965 + }, + { + "word": "indiferencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indifference", + "example_sentence_native": "Su indiferencia ante el problema me sorprendió.", + "example_sentence_english": "His indifference to the problem surprised me.", + "pos": "noun", + "word_frequency": 4966 + }, + { + "word": "inmueble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property;real estate", + "example_sentence_native": "Están buscando un inmueble para comprar.", + "example_sentence_english": "They are looking for a property to buy.", + "pos": "noun", + "word_frequency": 4967 + }, + { + "word": "inundación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flood", + "example_sentence_native": "La ciudad sufrió una grave inundación.", + "example_sentence_english": "The city suffered a severe flood.", + "pos": "noun", + "word_frequency": 4969 + }, + { + "word": "irregularidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irregularity", + "example_sentence_native": "Se detectó una irregularidad en los documentos.", + "example_sentence_english": "An irregularity was detected in the documents.", + "pos": "noun", + "word_frequency": 4971 + }, + { + "word": "irónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ironic", + "example_sentence_native": "Fue un comentario irónico.", + "example_sentence_english": "It was an ironic comment.", + "pos": "adjective", + "word_frequency": 4972 + }, + { + "word": "licenciatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bachelor's degree", + "example_sentence_native": "Obtuvo su licenciatura en historia.", + "example_sentence_english": "She obtained her bachelor's degree in history.", + "pos": "noun", + "word_frequency": 4976 + }, + { + "word": "mediano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "medium;average", + "example_sentence_native": "Compró una camiseta de talla mediana.", + "example_sentence_english": "He bought a medium-sized T-shirt.", + "pos": "adjective", + "word_frequency": 4979 + }, + { + "word": "millonario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millionaire (adj);wealthy", + "example_sentence_native": "Se hizo millonario con su negocio.", + "example_sentence_english": "He became a millionaire with his business.", + "pos": "adjective", + "word_frequency": 4981 + }, + { + "word": "niebla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fog;mist", + "example_sentence_native": "La niebla era tan densa que apenas se veía.", + "example_sentence_english": "The fog was so dense that you could barely see.", + "pos": "noun", + "word_frequency": 4983 + }, + { + "word": "oir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to hear", + "example_sentence_native": "No puedo oírte bien.", + "example_sentence_english": "I can't hear you well.", + "pos": "verb", + "word_frequency": 4985 + }, + { + "word": "organizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organized", + "example_sentence_native": "Es una persona muy organizada.", + "example_sentence_english": "She is a very organized person.", + "pos": "adjective", + "word_frequency": 4986 + }, + { + "word": "perdon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forgiveness;pardon", + "example_sentence_native": "Te pido perdón por mi error.", + "example_sentence_english": "I ask for your forgiveness for my mistake.", + "pos": "noun", + "word_frequency": 4987 + }, + { + "word": "perjuicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harm;damage;prejudice", + "example_sentence_native": "Sus acciones causaron un gran perjuicio.", + "example_sentence_english": "His actions caused great harm.", + "pos": "noun", + "word_frequency": 4988 + }, + { + "word": "perpetuo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perpetual;everlasting", + "example_sentence_native": "La búsqueda de la felicidad es un deseo perpetuo.", + "example_sentence_english": "The pursuit of happiness is a perpetual desire.", + "pos": "adjective", + "word_frequency": 4989 + }, + { + "word": "pluma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feather;pen", + "example_sentence_native": "Escribió una carta con una pluma.", + "example_sentence_english": "He wrote a letter with a pen.", + "pos": "noun", + "word_frequency": 4990 + }, + { + "word": "politica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politics;policy", + "example_sentence_native": "La política es un tema complejo.", + "example_sentence_english": "Politics is a complex subject.", + "pos": "noun", + "word_frequency": 4991 + }, + { + "word": "pretexto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretext;excuse", + "example_sentence_native": "Usó la lluvia como pretexto para no salir.", + "example_sentence_english": "He used the rain as a pretext not to go out.", + "pos": "noun", + "word_frequency": 4992 + }, + { + "word": "recibido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "received", + "example_sentence_native": "El paquete recibido estaba dañado.", + "example_sentence_english": "The received package was damaged.", + "pos": "adjective", + "word_frequency": 4994 + }, + { + "word": "recopilación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compilation;collection", + "example_sentence_native": "Esta es una recopilación de sus mejores obras.", + "example_sentence_english": "This is a compilation of his best works.", + "pos": "noun", + "word_frequency": 4995 + }, + { + "word": "sanitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanitary;health-related", + "example_sentence_native": "Se tomaron medidas sanitarias estrictas.", + "example_sentence_english": "Strict sanitary measures were taken.", + "pos": "adjective", + "word_frequency": 4996 + }, + { + "word": "seleccionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to select;to choose", + "example_sentence_native": "Debes seleccionar la opción correcta.", + "example_sentence_english": "You must select the correct option.", + "pos": "verb", + "word_frequency": 4997 + }, + { + "word": "sentimental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentimental", + "example_sentence_native": "Es una persona muy sentimental.", + "example_sentence_english": "She is a very sentimental person.", + "pos": "adjective", + "word_frequency": 4998 + }, + { + "word": "supermercado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "supermarket", + "example_sentence_native": "Voy al supermercado a comprar comida.", + "example_sentence_english": "I'm going to the supermarket to buy food.", + "pos": "noun", + "word_frequency": 5000 + }, + { + "word": "vecindario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighborhood", + "example_sentence_native": "Nuestro vecindario es muy tranquilo.", + "example_sentence_english": "Our neighborhood is very quiet.", + "pos": "noun", + "word_frequency": 5001 + }, + { + "word": "vincular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to link;to connect", + "example_sentence_native": "Es importante vincular la teoría con la práctica.", + "example_sentence_english": "It's important to link theory with practice.", + "pos": "verb", + "word_frequency": 5002 + }, + { + "word": "viña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vineyard", + "example_sentence_native": "La región es famosa por sus viñas.", + "example_sentence_english": "The region is famous for its vineyards.", + "pos": "noun", + "word_frequency": 5003 + }, + { + "word": "árbitro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "referee;arbiter", + "example_sentence_native": "El árbitro pitó el final del partido.", + "example_sentence_english": "The referee blew the whistle for the end of the match.", + "pos": "noun", + "word_frequency": 5005 + }, + { + "word": "ópera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opera", + "example_sentence_native": "Fuimos a ver una ópera anoche.", + "example_sentence_english": "We went to see an opera last night.", + "pos": "noun", + "word_frequency": 5006 + }, + { + "word": "óptica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optician's;optics", + "example_sentence_native": "Necesito ir a la óptica para mis nuevas gafas.", + "example_sentence_english": "I need to go to the optician's for my new glasses.", + "pos": "noun", + "word_frequency": 5007 + }, + { + "word": "acostumbrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accustomed;used to", + "example_sentence_native": "Estoy acostumbrado a levantarme temprano.", + "example_sentence_english": "I am accustomed to waking up early.", + "pos": "adjective", + "word_frequency": 5008 + }, + { + "word": "admisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admission", + "example_sentence_native": "La admisión al museo es gratuita.", + "example_sentence_english": "Admission to the museum is free.", + "pos": "noun", + "word_frequency": 5009 + }, + { + "word": "alfombra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rug;carpet", + "example_sentence_native": "Hay una alfombra grande en la sala.", + "example_sentence_english": "There is a large rug in the living room.", + "pos": "noun", + "word_frequency": 5010 + }, + { + "word": "aluminio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aluminum", + "example_sentence_native": "La ventana es de aluminio.", + "example_sentence_english": "The window is made of aluminum.", + "pos": "noun", + "word_frequency": 5011 + }, + { + "word": "apagar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn off;to extinguish", + "example_sentence_native": "Por favor, apaga la luz al salir.", + "example_sentence_english": "Please turn off the light when you leave.", + "pos": "verb", + "word_frequency": 5014 + }, + { + "word": "apelación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appeal", + "example_sentence_native": "Presentaron una apelación contra la sentencia.", + "example_sentence_english": "They filed an appeal against the sentence.", + "pos": "noun", + "word_frequency": 5015 + }, + { + "word": "araña", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spider", + "example_sentence_native": "Vi una araña grande en la pared.", + "example_sentence_english": "I saw a big spider on the wall.", + "pos": "noun", + "word_frequency": 5016 + }, + { + "word": "arsenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arsenal", + "example_sentence_native": "El museo exhibe un antiguo arsenal de armas.", + "example_sentence_english": "The museum exhibits an ancient arsenal of weapons.", + "pos": "noun", + "word_frequency": 5018 + }, + { + "word": "bachillerato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school diploma;baccalaureate", + "example_sentence_native": "Obtuvo su bachillerato el año pasado.", + "example_sentence_english": "He obtained his high school diploma last year.", + "pos": "noun", + "word_frequency": 5019 + }, + { + "word": "bendecir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bless", + "example_sentence_native": "El sacerdote va a bendecir la nueva iglesia.", + "example_sentence_english": "The priest is going to bless the new church.", + "pos": "verb", + "word_frequency": 5020 + }, + { + "word": "boliviano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bolivian", + "example_sentence_native": "Ella es una cantante boliviana.", + "example_sentence_english": "She is a Bolivian singer.", + "pos": "adjective", + "word_frequency": 5022 + }, + { + "word": "brevemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefly", + "example_sentence_native": "Habló brevemente sobre el tema.", + "example_sentence_english": "He spoke briefly about the topic.", + "pos": "adverb", + "word_frequency": 5023 + }, + { + "word": "bruja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "witch", + "example_sentence_native": "Los niños se disfrazaron de brujas para Halloween.", + "example_sentence_english": "The children dressed up as witches for Halloween.", + "pos": "noun", + "word_frequency": 5024 + }, + { + "word": "cabina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cabin;booth", + "example_sentence_native": "La cabina del piloto es muy pequeña.", + "example_sentence_english": "The pilot's cabin is very small.", + "pos": "noun", + "word_frequency": 5025 + }, + { + "word": "certificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certification", + "example_sentence_native": "Necesitas una certificación para este trabajo.", + "example_sentence_english": "You need a certification for this job.", + "pos": "noun", + "word_frequency": 5026 + }, + { + "word": "chip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chip", + "example_sentence_native": "El teléfono tiene un nuevo chip.", + "example_sentence_english": "The phone has a new chip.", + "pos": "noun", + "word_frequency": 5027 + }, + { + "word": "complicación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complication", + "example_sentence_native": "La cirugía tuvo una complicación inesperada.", + "example_sentence_english": "The surgery had an unexpected complication.", + "pos": "noun", + "word_frequency": 5028 + }, + { + "word": "comunitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community;communal", + "example_sentence_native": "Participamos en un proyecto comunitario.", + "example_sentence_english": "We participated in a community project.", + "pos": "adjective", + "word_frequency": 5029 + }, + { + "word": "confundir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confuse", + "example_sentence_native": "No quiero confundirte con mis explicaciones.", + "example_sentence_english": "I don't want to confuse you with my explanations.", + "pos": "verb", + "word_frequency": 5030 + }, + { + "word": "conjuntamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jointly;together", + "example_sentence_native": "Trabajaron conjuntamente en el proyecto.", + "example_sentence_english": "They worked jointly on the project.", + "pos": "adverb", + "word_frequency": 5032 + }, + { + "word": "conllevar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to entail;to involve", + "example_sentence_native": "Esta decisión puede conllevar graves consecuencias.", + "example_sentence_english": "This decision can entail serious consequences.", + "pos": "verb", + "word_frequency": 5033 + }, + { + "word": "consistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistent", + "example_sentence_native": "Su trabajo es siempre consistente y de alta calidad.", + "example_sentence_english": "His work is always consistent and high quality.", + "pos": "adjective", + "word_frequency": 5034 + }, + { + "word": "convocar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convene;to call (a meeting)", + "example_sentence_native": "El presidente decidió convocar una reunión urgente.", + "example_sentence_english": "The president decided to convene an urgent meeting.", + "pos": "verb", + "word_frequency": 5035 + }, + { + "word": "copiar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to copy", + "example_sentence_native": "Por favor, copia este documento.", + "example_sentence_english": "Please copy this document.", + "pos": "verb", + "word_frequency": 5036 + }, + { + "word": "crucero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruise;cruiser", + "example_sentence_native": "Fuimos de crucero por el Caribe.", + "example_sentence_english": "We went on a cruise in the Caribbean.", + "pos": "noun", + "word_frequency": 5037 + }, + { + "word": "culpar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blame", + "example_sentence_native": "No puedes culpar a nadie más que a ti mismo.", + "example_sentence_english": "You can't blame anyone but yourself.", + "pos": "verb", + "word_frequency": 5038 + }, + { + "word": "curiosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curiously", + "example_sentence_native": "Curiosamente, nadie se dio cuenta del error.", + "example_sentence_english": "Curiously, nobody noticed the error.", + "pos": "adverb", + "word_frequency": 5039 + }, + { + "word": "directivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managerial;executive", + "example_sentence_native": "Tomó una decisión directiva importante.", + "example_sentence_english": "He made an important managerial decision.", + "pos": "adjective", + "word_frequency": 5041 + }, + { + "word": "efectividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effectiveness", + "example_sentence_native": "La efectividad de la nueva estrategia es alta.", + "example_sentence_english": "The effectiveness of the new strategy is high.", + "pos": "noun", + "word_frequency": 5042 + }, + { + "word": "elevar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise;to elevate", + "example_sentence_native": "Debemos elevar el nivel de discusión.", + "example_sentence_english": "We must raise the level of discussion.", + "pos": "verb", + "word_frequency": 5043 + }, + { + "word": "enojo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "anger", + "example_sentence_native": "Su enojo era evidente en su voz.", + "example_sentence_english": "His anger was evident in his voice.", + "pos": "noun", + "word_frequency": 5044 + }, + { + "word": "hashtag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hashtag", + "example_sentence_native": "Usa el hashtag #viajes para tus fotos.", + "example_sentence_english": "Use the hashtag #travel for your photos.", + "pos": "noun", + "word_frequency": 5047 + }, + { + "word": "hipocresía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypocrisy", + "example_sentence_native": "No soporto la hipocresía de algunas personas.", + "example_sentence_english": "I can't stand the hypocrisy of some people.", + "pos": "noun", + "word_frequency": 5048 + }, + { + "word": "honda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deep", + "example_sentence_native": "El lago tiene aguas muy hondas.", + "example_sentence_english": "The lake has very deep waters.", + "pos": "adjective", + "word_frequency": 5049 + }, + { + "word": "indignación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indignation", + "example_sentence_native": "Sintió una profunda indignación por la injusticia.", + "example_sentence_english": "He felt deep indignation at the injustice.", + "pos": "noun", + "word_frequency": 5052 + }, + { + "word": "informal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informal", + "example_sentence_native": "La reunión fue muy informal.", + "example_sentence_english": "The meeting was very informal.", + "pos": "adjective", + "word_frequency": 5053 + }, + { + "word": "inminente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imminent", + "example_sentence_native": "La tormenta es inminente.", + "example_sentence_english": "The storm is imminent.", + "pos": "adjective", + "word_frequency": 5054 + }, + { + "word": "intermedio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intermediate", + "example_sentence_native": "Estamos en una fase intermedia del proyecto.", + "example_sentence_english": "We are in an intermediate phase of the project.", + "pos": "adjective", + "word_frequency": 5055 + }, + { + "word": "invento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invention", + "example_sentence_native": "El teléfono fue un gran invento.", + "example_sentence_english": "The telephone was a great invention.", + "pos": "noun", + "word_frequency": 5056 + }, + { + "word": "irregular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irregular", + "example_sentence_native": "El verbo 'ir' es irregular.", + "example_sentence_english": "The verb 'to go' is irregular.", + "pos": "adjective", + "word_frequency": 5057 + }, + { + "word": "jubilación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retirement", + "example_sentence_native": "Se acerca su edad de jubilación.", + "example_sentence_english": "His retirement age is approaching.", + "pos": "noun", + "word_frequency": 5058 + }, + { + "word": "localizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to locate", + "example_sentence_native": "Necesitamos localizar el origen del problema.", + "example_sentence_english": "We need to locate the origin of the problem.", + "pos": "verb", + "word_frequency": 5061 + }, + { + "word": "lucir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wear;to look (good);to shine", + "example_sentence_native": "Ella luce muy elegante hoy.", + "example_sentence_english": "She looks very elegant today.", + "pos": "verb", + "word_frequency": 5063 + }, + { + "word": "mentiroso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lying", + "example_sentence_native": "Es una persona muy mentirosa.", + "example_sentence_english": "He is a very lying person.", + "pos": "adjective", + "word_frequency": 5064 + }, + { + "word": "monarca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarch", + "example_sentence_native": "El monarca reinó durante muchos años.", + "example_sentence_english": "The monarch reigned for many years.", + "pos": "noun", + "word_frequency": 5065 + }, + { + "word": "monetario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monetary", + "example_sentence_native": "El sistema monetario es complejo.", + "example_sentence_english": "The monetary system is complex.", + "pos": "adjective", + "word_frequency": 5066 + }, + { + "word": "narración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narration;narrative", + "example_sentence_native": "La narración del cuento fue excelente.", + "example_sentence_english": "The narration of the story was excellent.", + "pos": "noun", + "word_frequency": 5067 + }, + { + "word": "nobleza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobility;nobleness", + "example_sentence_native": "La nobleza de su espíritu era admirable.", + "example_sentence_english": "The nobleness of his spirit was admirable.", + "pos": "noun", + "word_frequency": 5068 + }, + { + "word": "obsesión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obsession", + "example_sentence_native": "Tiene una obsesión con la limpieza.", + "example_sentence_english": "He has an obsession with cleanliness.", + "pos": "noun", + "word_frequency": 5069 + }, + { + "word": "party", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "party", + "example_sentence_native": "Vamos a una party esta noche.", + "example_sentence_english": "We're going to a party tonight.", + "pos": "noun", + "word_frequency": 5072 + }, + { + "word": "patada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kick", + "example_sentence_native": "Le dio una patada al balón.", + "example_sentence_english": "He gave the ball a kick.", + "pos": "noun", + "word_frequency": 5073 + }, + { + "word": "permanencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanence;stay", + "example_sentence_native": "La permanencia en el cargo es incierta.", + "example_sentence_english": "Permanence in office is uncertain.", + "pos": "noun", + "word_frequency": 5074 + }, + { + "word": "producido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "produced", + "example_sentence_native": "El vino producido aquí es excelente.", + "example_sentence_english": "The wine produced here is excellent.", + "pos": "adjective", + "word_frequency": 5077 + }, + { + "word": "rap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rap (music)", + "example_sentence_native": "Le gusta escuchar música rap.", + "example_sentence_english": "He likes to listen to rap music.", + "pos": "noun", + "word_frequency": 5078 + }, + { + "word": "reelección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-election", + "example_sentence_native": "La reelección del presidente es un tema controvertido.", + "example_sentence_english": "The president's re-election is a controversial topic.", + "pos": "noun", + "word_frequency": 5079 + }, + { + "word": "reemplazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replacement", + "example_sentence_native": "Necesitamos un reemplazo para la pieza rota.", + "example_sentence_english": "We need a replacement for the broken part.", + "pos": "noun", + "word_frequency": 5080 + }, + { + "word": "referido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referred", + "example_sentence_native": "El caso referido en el informe es complejo.", + "example_sentence_english": "The case referred to in the report is complex.", + "pos": "adjective", + "word_frequency": 5081 + }, + { + "word": "reinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reign", + "example_sentence_native": "El reinado del rey duró cincuenta años.", + "example_sentence_english": "The king's reign lasted fifty years.", + "pos": "noun", + "word_frequency": 5082 + }, + { + "word": "remoto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remote", + "example_sentence_native": "Viven en un pueblo remoto en las montañas.", + "example_sentence_english": "They live in a remote village in the mountains.", + "pos": "adjective", + "word_frequency": 5083 + }, + { + "word": "retórica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rhetoric", + "example_sentence_native": "Su discurso estaba lleno de retórica vacía.", + "example_sentence_english": "His speech was full of empty rhetoric.", + "pos": "noun", + "word_frequency": 5084 + }, + { + "word": "shock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shock", + "example_sentence_native": "La noticia fue un shock para todos.", + "example_sentence_english": "The news was a shock to everyone.", + "pos": "noun", + "word_frequency": 5087 + }, + { + "word": "sucesor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successor", + "example_sentence_native": "El sucesor del presidente será anunciado pronto.", + "example_sentence_english": "The president's successor will be announced soon.", + "pos": "noun", + "word_frequency": 5089 + }, + { + "word": "sureste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "southeast", + "example_sentence_native": "La casa está orientada al sureste.", + "example_sentence_english": "The house faces southeast.", + "pos": "noun", + "word_frequency": 5090 + }, + { + "word": "tiroteo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooting", + "example_sentence_native": "Hubo un tiroteo cerca de la escuela.", + "example_sentence_english": "There was a shooting near the school.", + "pos": "noun", + "word_frequency": 5091 + }, + { + "word": "trasladado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transferred;moved", + "example_sentence_native": "El paciente fue trasladado a otro hospital.", + "example_sentence_english": "The patient was transferred to another hospital.", + "pos": "adjective", + "word_frequency": 5092 + }, + { + "word": "trastorno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disorder;disturbance", + "example_sentence_native": "Sufre de un trastorno del sueño.", + "example_sentence_english": "He suffers from a sleep disorder.", + "pos": "noun", + "word_frequency": 5093 + }, + { + "word": "trayecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journey;route", + "example_sentence_native": "El trayecto en tren fue muy agradable.", + "example_sentence_english": "The train journey was very pleasant.", + "pos": "noun", + "word_frequency": 5094 + }, + { + "word": "visitado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visited", + "example_sentence_native": "Es un lugar muy visitado por turistas.", + "example_sentence_english": "It's a place frequently visited by tourists.", + "pos": "adjective", + "word_frequency": 5095 + }, + { + "word": "accionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shareholder", + "example_sentence_native": "Los accionistas votaron a favor de la propuesta.", + "example_sentence_english": "The shareholders voted in favor of the proposal.", + "pos": "noun", + "word_frequency": 5097 + }, + { + "word": "acordado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agreed;decided", + "example_sentence_native": "El precio acordado fue justo.", + "example_sentence_english": "The agreed price was fair.", + "pos": "adjective", + "word_frequency": 5098 + }, + { + "word": "anexo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annex;attachment", + "example_sentence_native": "Por favor, consulte el anexo para más detalles.", + "example_sentence_english": "Please refer to the annex for more details.", + "pos": "noun", + "word_frequency": 5100 + }, + { + "word": "antena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antenna", + "example_sentence_native": "La antena de la televisión está rota.", + "example_sentence_english": "The TV antenna is broken.", + "pos": "noun", + "word_frequency": 5101 + }, + { + "word": "avisar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to warn;to notify", + "example_sentence_native": "Por favor, avísame cuando llegues.", + "example_sentence_english": "Please let me know when you arrive.", + "pos": "verb", + "word_frequency": 5102 + }, + { + "word": "cabecera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headboard;header;leading position", + "example_sentence_native": "La cabecera del periódico es muy llamativa.", + "example_sentence_english": "The newspaper's header is very striking.", + "pos": "noun", + "word_frequency": 5104 + }, + { + "word": "calibre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caliber;gauge", + "example_sentence_native": "El arma es de calibre pequeño.", + "example_sentence_english": "The weapon is of small caliber.", + "pos": "noun", + "word_frequency": 5105 + }, + { + "word": "calvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bald", + "example_sentence_native": "Mi abuelo es calvo.", + "example_sentence_english": "My grandfather is bald.", + "pos": "adjective", + "word_frequency": 5106 + }, + { + "word": "cartón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardboard", + "example_sentence_native": "La caja es de cartón.", + "example_sentence_english": "The box is made of cardboard.", + "pos": "noun", + "word_frequency": 5107 + }, + { + "word": "chofer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver;chauffeur", + "example_sentence_native": "El chofer nos llevó al aeropuerto.", + "example_sentence_english": "The driver took us to the airport.", + "pos": "noun", + "word_frequency": 5108 + }, + { + "word": "colapso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse", + "example_sentence_native": "El edificio sufrió un colapso parcial.", + "example_sentence_english": "The building suffered a partial collapse.", + "pos": "noun", + "word_frequency": 5109 + }, + { + "word": "comercialización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commercialization;marketing", + "example_sentence_native": "La comercialización del producto fue un éxito.", + "example_sentence_english": "The commercialization of the product was a success.", + "pos": "noun", + "word_frequency": 5110 + }, + { + "word": "compañia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "company;companionship", + "example_sentence_native": "Trabaja para una gran compañía.", + "example_sentence_english": "He works for a large company.", + "pos": "noun", + "word_frequency": 5111 + }, + { + "word": "complemento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complement;accessory", + "example_sentence_native": "Este collar es el complemento perfecto para tu vestido.", + "example_sentence_english": "This necklace is the perfect accessory for your dress.", + "pos": "noun", + "word_frequency": 5112 + }, + { + "word": "comprador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buyer;purchaser", + "example_sentence_native": "El comprador estaba satisfecho con la adquisición.", + "example_sentence_english": "The buyer was satisfied with the acquisition.", + "pos": "noun", + "word_frequency": 5113 + }, + { + "word": "cordillera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountain range", + "example_sentence_native": "La cordillera de los Andes es muy larga.", + "example_sentence_english": "The Andes mountain range is very long.", + "pos": "noun", + "word_frequency": 5114 + }, + { + "word": "demora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delay", + "example_sentence_native": "Hubo una demora en el vuelo.", + "example_sentence_english": "There was a delay in the flight.", + "pos": "noun", + "word_frequency": 5115 + }, + { + "word": "disfrute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enjoyment;pleasure", + "example_sentence_native": "El disfrute de la música es universal.", + "example_sentence_english": "The enjoyment of music is universal.", + "pos": "noun", + "word_frequency": 5116 + }, + { + "word": "dominar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dominate;to master", + "example_sentence_native": "Ella domina varios idiomas.", + "example_sentence_english": "She masters several languages.", + "pos": "verb", + "word_frequency": 5118 + }, + { + "word": "elector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elector", + "example_sentence_native": "Cada elector tiene derecho a un voto.", + "example_sentence_english": "Every elector has the right to one vote.", + "pos": "noun", + "word_frequency": 5121 + }, + { + "word": "estratégico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strategic", + "example_sentence_native": "Tomaron una decisión estratégica para el negocio.", + "example_sentence_english": "They made a strategic decision for the business.", + "pos": "adjective", + "word_frequency": 5122 + }, + { + "word": "falda", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "skirt", + "example_sentence_native": "Ella compró una falda nueva para la fiesta.", + "example_sentence_english": "She bought a new skirt for the party.", + "pos": "noun", + "word_frequency": 5124 + }, + { + "word": "forzado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forced", + "example_sentence_native": "Su sonrisa parecía forzada.", + "example_sentence_english": "His smile seemed forced.", + "pos": "adjective", + "word_frequency": 5125 + }, + { + "word": "freno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brake", + "example_sentence_native": "El coche necesita un nuevo freno.", + "example_sentence_english": "The car needs a new brake.", + "pos": "noun", + "word_frequency": 5126 + }, + { + "word": "incorporar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to incorporate", + "example_sentence_native": "Debemos incorporar nuevas ideas al proyecto.", + "example_sentence_english": "We must incorporate new ideas into the project.", + "pos": "verb", + "word_frequency": 5129 + }, + { + "word": "instinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinct", + "example_sentence_native": "Actuó por puro instinto.", + "example_sentence_english": "He acted purely on instinct.", + "pos": "noun", + "word_frequency": 5130 + }, + { + "word": "navegar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to navigate;to browse", + "example_sentence_native": "Me gusta navegar por internet.", + "example_sentence_english": "I like to browse the internet.", + "pos": "verb", + "word_frequency": 5136 + }, + { + "word": "obtención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtaining;acquisition", + "example_sentence_native": "La obtención de resultados fue rápida.", + "example_sentence_english": "The obtaining of results was fast.", + "pos": "noun", + "word_frequency": 5137 + }, + { + "word": "pabellón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pavilion;flag;ward", + "example_sentence_native": "El pabellón de España ondeaba en lo alto.", + "example_sentence_english": "The flag of Spain waved high.", + "pos": "noun", + "word_frequency": 5138 + }, + { + "word": "pausa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pause;break", + "example_sentence_native": "Necesitamos una pausa para descansar.", + "example_sentence_english": "We need a break to rest.", + "pos": "noun", + "word_frequency": 5139 + }, + { + "word": "perfume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfume", + "example_sentence_native": "Me encanta el olor de este perfume.", + "example_sentence_english": "I love the smell of this perfume.", + "pos": "noun", + "word_frequency": 5140 + }, + { + "word": "pimienta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pepper", + "example_sentence_native": "Añade un poco de pimienta a la sopa.", + "example_sentence_english": "Add a little pepper to the soup.", + "pos": "noun", + "word_frequency": 5141 + }, + { + "word": "pintado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painted", + "example_sentence_native": "La pared está pintada de azul.", + "example_sentence_english": "The wall is painted blue.", + "pos": "adjective", + "word_frequency": 5142 + }, + { + "word": "plantel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "staff;squad;campus", + "example_sentence_native": "El plantel docente de la universidad es excelente.", + "example_sentence_english": "The teaching staff of the university is excellent.", + "pos": "noun", + "word_frequency": 5143 + }, + { + "word": "plural", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plural", + "example_sentence_native": "La palabra 'casas' es el plural de 'casa'.", + "example_sentence_english": "The word 'casas' is the plural of 'casa'.", + "pos": "adjective", + "word_frequency": 5144 + }, + { + "word": "psicológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychological", + "example_sentence_native": "Tiene un fuerte impacto psicológico.", + "example_sentence_english": "It has a strong psychological impact.", + "pos": "adjective", + "word_frequency": 5146 + }, + { + "word": "pulgada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inch", + "example_sentence_native": "La pantalla mide 27 pulgadas.", + "example_sentence_english": "The screen measures 27 inches.", + "pos": "noun", + "word_frequency": 5147 + }, + { + "word": "raya", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "line;stripe;stingray", + "example_sentence_native": "Dibujó una raya en el papel.", + "example_sentence_english": "He drew a line on the paper.", + "pos": "noun", + "word_frequency": 5148 + }, + { + "word": "reaccionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to react", + "example_sentence_native": "No supo cómo reaccionar ante la noticia.", + "example_sentence_english": "He didn't know how to react to the news.", + "pos": "verb", + "word_frequency": 5149 + }, + { + "word": "redondo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "round", + "example_sentence_native": "La mesa es redonda.", + "example_sentence_english": "The table is round.", + "pos": "adjective", + "word_frequency": 5150 + }, + { + "word": "relleno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filling;stuffing", + "example_sentence_native": "El pavo tenía un delicioso relleno.", + "example_sentence_english": "The turkey had a delicious stuffing.", + "pos": "noun", + "word_frequency": 5151 + }, + { + "word": "remate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finish;auction;shot (sports)", + "example_sentence_native": "El remate final del partido fue espectacular.", + "example_sentence_english": "The final shot of the match was spectacular.", + "pos": "noun", + "word_frequency": 5152 + }, + { + "word": "renacimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renaissance;rebirth", + "example_sentence_native": "El Renacimiento fue una época de gran florecimiento artístico.", + "example_sentence_english": "The Renaissance was a time of great artistic flourishing.", + "pos": "noun", + "word_frequency": 5153 + }, + { + "word": "sendero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;trail", + "example_sentence_native": "Caminamos por un sendero estrecho en el bosque.", + "example_sentence_english": "We walked along a narrow path in the forest.", + "pos": "noun", + "word_frequency": 5156 + }, + { + "word": "soltar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to release;to let go", + "example_sentence_native": "Soltó el globo al aire.", + "example_sentence_english": "He released the balloon into the air.", + "pos": "verb", + "word_frequency": 5157 + }, + { + "word": "suspender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suspend;to fail (an exam)", + "example_sentence_native": "Decidieron suspender la reunión.", + "example_sentence_english": "They decided to suspend the meeting.", + "pos": "verb", + "word_frequency": 5158 + }, + { + "word": "telefono", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telephone", + "example_sentence_native": "Mi telefono está sonando.", + "example_sentence_english": "My telephone is ringing.", + "pos": "noun", + "word_frequency": 5159 + }, + { + "word": "teología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theology", + "example_sentence_native": "Estudió teología en la universidad.", + "example_sentence_english": "He studied theology at the university.", + "pos": "noun", + "word_frequency": 5160 + }, + { + "word": "trozo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piece;chunk", + "example_sentence_native": "Dame un trozo de pastel, por favor.", + "example_sentence_english": "Give me a piece of cake, please.", + "pos": "noun", + "word_frequency": 5162 + }, + { + "word": "valenciano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Valencian", + "example_sentence_native": "Habla valenciano con fluidez.", + "example_sentence_english": "He speaks Valencian fluently.", + "pos": "adjective", + "word_frequency": 5163 + }, + { + "word": "vergonzoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shameful;embarrassing", + "example_sentence_native": "Fue una situación muy vergonzosa para él.", + "example_sentence_english": "It was a very embarrassing situation for him.", + "pos": "adjective", + "word_frequency": 5164 + }, + { + "word": "vigilar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to watch;to guard;to monitor", + "example_sentence_native": "Debemos vigilar a los niños en el parque.", + "example_sentence_english": "We must watch the children in the park.", + "pos": "verb", + "word_frequency": 5165 + }, + { + "word": "vinculado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linked;connected;associated", + "example_sentence_native": "El problema está vinculado a la economía.", + "example_sentence_english": "The problem is linked to the economy.", + "pos": "adjective", + "word_frequency": 5167 + }, + { + "word": "adonde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "where (to)", + "example_sentence_native": "Iremos adonde tú quieras.", + "example_sentence_english": "We will go wherever you want.", + "pos": "adverb", + "word_frequency": 5170 + }, + { + "word": "alias", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alias", + "example_sentence_native": "Es conocido por su alias \"El Zorro\".", + "example_sentence_english": "He is known by his alias \"The Fox\".", + "pos": "noun", + "word_frequency": 5172 + }, + { + "word": "amado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beloved;loved", + "example_sentence_native": "Es mi amado esposo.", + "example_sentence_english": "He is my beloved husband.", + "pos": "adjective", + "word_frequency": 5173 + }, + { + "word": "apetecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel like;to crave;to appeal to", + "example_sentence_native": "¿Te apetece un café?", + "example_sentence_english": "Do you feel like a coffee?", + "pos": "verb", + "word_frequency": 5175 + }, + { + "word": "aplicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applied;diligent;hardworking", + "example_sentence_native": "Es un estudiante muy aplicado.", + "example_sentence_english": "He is a very diligent student.", + "pos": "adjective", + "word_frequency": 5176 + }, + { + "word": "ausente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absent", + "example_sentence_native": "Estuvo ausente de la reunión.", + "example_sentence_english": "He was absent from the meeting.", + "pos": "adjective", + "word_frequency": 5177 + }, + { + "word": "batallón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battalion", + "example_sentence_native": "El batallón avanzó hacia el frente.", + "example_sentence_english": "The battalion advanced towards the front.", + "pos": "noun", + "word_frequency": 5179 + }, + { + "word": "cajón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawer;box", + "example_sentence_native": "Guarda tus calcetines en el cajón.", + "example_sentence_english": "Put your socks in the drawer.", + "pos": "noun", + "word_frequency": 5180 + }, + { + "word": "camarada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comrade", + "example_sentence_native": "Mi camarada me ayudó a cargar la caja.", + "example_sentence_english": "My comrade helped me carry the box.", + "pos": "noun", + "word_frequency": 5181 + }, + { + "word": "canario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Canary (related to the Canary Islands);canary (bird)", + "example_sentence_native": "Es un pájaro canario.", + "example_sentence_english": "It's a canary bird.", + "pos": "adjective", + "word_frequency": 5182 + }, + { + "word": "cansancio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiredness;fatigue", + "example_sentence_native": "Siento mucho cansancio después de trabajar.", + "example_sentence_english": "I feel a lot of tiredness after working.", + "pos": "noun", + "word_frequency": 5183 + }, + { + "word": "captar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capture;to grasp;to perceive", + "example_sentence_native": "No logro captar el significado de esta frase.", + "example_sentence_english": "I can't grasp the meaning of this sentence.", + "pos": "verb", + "word_frequency": 5184 + }, + { + "word": "cayo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cay;key (small island)", + "example_sentence_native": "Pasamos el día en un cayo paradisíaco.", + "example_sentence_english": "We spent the day on a paradisiacal cay.", + "pos": "noun", + "word_frequency": 5185 + }, + { + "word": "chef", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chef", + "example_sentence_native": "El chef preparó una cena deliciosa.", + "example_sentence_english": "The chef prepared a delicious dinner.", + "pos": "noun", + "word_frequency": 5186 + }, + { + "word": "cocaína", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cocaine", + "example_sentence_native": "La cocaína es una droga ilegal.", + "example_sentence_english": "Cocaine is an illegal drug.", + "pos": "noun", + "word_frequency": 5187 + }, + { + "word": "competente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competent", + "example_sentence_native": "Es un profesional muy competente.", + "example_sentence_english": "He is a very competent professional.", + "pos": "adjective", + "word_frequency": 5188 + }, + { + "word": "concedido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granted;conceded", + "example_sentence_native": "El permiso fue concedido después de mucha espera.", + "example_sentence_english": "The permit was granted after a long wait.", + "pos": "adjective", + "word_frequency": 5189 + }, + { + "word": "convicción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction;belief", + "example_sentence_native": "Habló con gran convicción sobre sus ideas.", + "example_sentence_english": "He spoke with great conviction about his ideas.", + "pos": "noun", + "word_frequency": 5190 + }, + { + "word": "convocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convened;called;summoned", + "example_sentence_native": "El comité fue convocado para una reunión urgente.", + "example_sentence_english": "The committee was convened for an urgent meeting.", + "pos": "adjective", + "word_frequency": 5191 + }, + { + "word": "cívico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civic", + "example_sentence_native": "Es importante tener un buen comportamiento cívico.", + "example_sentence_english": "It is important to have good civic behavior.", + "pos": "adjective", + "word_frequency": 5192 + }, + { + "word": "delta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delta", + "example_sentence_native": "El río forma un delta antes de desembocar en el mar.", + "example_sentence_english": "The river forms a delta before flowing into the sea.", + "pos": "noun", + "word_frequency": 5193 + }, + { + "word": "despedido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fired;dismissed", + "example_sentence_native": "Fue despedido de su trabajo.", + "example_sentence_english": "He was fired from his job.", + "pos": "adjective", + "word_frequency": 5194 + }, + { + "word": "detallado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detailed", + "example_sentence_native": "Necesitamos un informe más detallado.", + "example_sentence_english": "We need a more detailed report.", + "pos": "adjective", + "word_frequency": 5195 + }, + { + "word": "dividido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divided", + "example_sentence_native": "La clase estaba dividida en grupos.", + "example_sentence_english": "The class was divided into groups.", + "pos": "adjective", + "word_frequency": 5196 + }, + { + "word": "divulgación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissemination;disclosure;popularization", + "example_sentence_native": "La divulgación científica es muy importante.", + "example_sentence_english": "Scientific dissemination is very important.", + "pos": "noun", + "word_frequency": 5197 + }, + { + "word": "décimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenth", + "example_sentence_native": "Ocupó el décimo lugar en la carrera.", + "example_sentence_english": "He took tenth place in the race.", + "pos": "adjective", + "word_frequency": 5199 + }, + { + "word": "espía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spy", + "example_sentence_native": "El espía fue descubierto por el gobierno.", + "example_sentence_english": "The spy was discovered by the government.", + "pos": "noun", + "word_frequency": 5201 + }, + { + "word": "fracción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fraction", + "example_sentence_native": "Una fracción del pastel fue suficiente para todos.", + "example_sentence_english": "A fraction of the cake was enough for everyone.", + "pos": "noun", + "word_frequency": 5204 + }, + { + "word": "frontal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontal", + "example_sentence_native": "El impacto frontal causó graves daños.", + "example_sentence_english": "The frontal impact caused serious damage.", + "pos": "adjective", + "word_frequency": 5205 + }, + { + "word": "generoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "generous", + "example_sentence_native": "Mi abuela es una persona muy generosa.", + "example_sentence_english": "My grandmother is a very generous person.", + "pos": "adjective", + "word_frequency": 5207 + }, + { + "word": "grandeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greatness", + "example_sentence_native": "La grandeza de su espíritu era innegable.", + "example_sentence_english": "The greatness of his spirit was undeniable.", + "pos": "noun", + "word_frequency": 5208 + }, + { + "word": "ideológico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideological", + "example_sentence_native": "Tienen diferencias ideológicas importantes.", + "example_sentence_english": "They have important ideological differences.", + "pos": "adjective", + "word_frequency": 5209 + }, + { + "word": "indemnización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation", + "example_sentence_native": "Recibió una indemnización por el accidente.", + "example_sentence_english": "He received compensation for the accident.", + "pos": "noun", + "word_frequency": 5210 + }, + { + "word": "innumerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innumerable", + "example_sentence_native": "Había innumerables estrellas en el cielo.", + "example_sentence_english": "There were innumerable stars in the sky.", + "pos": "adjective", + "word_frequency": 5212 + }, + { + "word": "jabón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soap", + "example_sentence_native": "Necesito comprar jabón para la ducha.", + "example_sentence_english": "I need to buy soap for the shower.", + "pos": "noun", + "word_frequency": 5214 + }, + { + "word": "librería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookstore", + "example_sentence_native": "Compré un libro nuevo en la librería.", + "example_sentence_english": "I bought a new book at the bookstore.", + "pos": "noun", + "word_frequency": 5217 + }, + { + "word": "look", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "look;style", + "example_sentence_native": "Me gusta mucho tu nuevo look.", + "example_sentence_english": "I really like your new look.", + "pos": "noun", + "word_frequency": 5218 + }, + { + "word": "manipular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manipulate", + "example_sentence_native": "No intentes manipular la información.", + "example_sentence_english": "Don't try to manipulate the information.", + "pos": "verb", + "word_frequency": 5219 + }, + { + "word": "medianoche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "midnight", + "example_sentence_native": "La fiesta terminó a medianoche.", + "example_sentence_english": "The party ended at midnight.", + "pos": "noun", + "word_frequency": 5220 + }, + { + "word": "mercurio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mercury", + "example_sentence_native": "Mercurio es el planeta más cercano al sol.", + "example_sentence_english": "Mercury is the closest planet to the sun.", + "pos": "noun", + "word_frequency": 5221 + }, + { + "word": "milenio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennium", + "example_sentence_native": "Estamos en el tercer milenio.", + "example_sentence_english": "We are in the third millennium.", + "pos": "noun", + "word_frequency": 5222 + }, + { + "word": "molino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mill", + "example_sentence_native": "El molino de viento giraba lentamente.", + "example_sentence_english": "The windmill turned slowly.", + "pos": "noun", + "word_frequency": 5223 + }, + { + "word": "muelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dock;pier", + "example_sentence_native": "El barco atracó en el muelle.", + "example_sentence_english": "The ship docked at the pier.", + "pos": "noun", + "word_frequency": 5224 + }, + { + "word": "ortografía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spelling", + "example_sentence_native": "Es importante tener buena ortografía.", + "example_sentence_english": "It's important to have good spelling.", + "pos": "noun", + "word_frequency": 5226 + }, + { + "word": "prenda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garment", + "example_sentence_native": "Esta prenda es muy cómoda.", + "example_sentence_english": "This garment is very comfortable.", + "pos": "noun", + "word_frequency": 5227 + }, + { + "word": "presentado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presented", + "example_sentence_native": "El informe fue presentado ayer.", + "example_sentence_english": "The report was presented yesterday.", + "pos": "adjective", + "word_frequency": 5228 + }, + { + "word": "rastro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trace;trail", + "example_sentence_native": "No dejó ningún rastro de su paso.", + "example_sentence_english": "He left no trace of his passage.", + "pos": "noun", + "word_frequency": 5230 + }, + { + "word": "ratón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mouse", + "example_sentence_native": "El gato persiguió al ratón.", + "example_sentence_english": "The cat chased the mouse.", + "pos": "noun", + "word_frequency": 5231 + }, + { + "word": "recordado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remembered", + "example_sentence_native": "Es un día muy recordado por todos.", + "example_sentence_english": "It's a day well remembered by everyone.", + "pos": "adjective", + "word_frequency": 5232 + }, + { + "word": "recuperado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recovered", + "example_sentence_native": "El paciente ya está recuperado.", + "example_sentence_english": "The patient is already recovered.", + "pos": "adjective", + "word_frequency": 5233 + }, + { + "word": "relatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relate;to narrate", + "example_sentence_native": "Me pidió que le relatara la historia.", + "example_sentence_english": "He asked me to relate the story to him.", + "pos": "verb", + "word_frequency": 5234 + }, + { + "word": "rodeado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surrounded", + "example_sentence_native": "Estaba rodeado de amigos.", + "example_sentence_english": "He was surrounded by friends.", + "pos": "adjective", + "word_frequency": 5235 + }, + { + "word": "sustituir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to substitute;to replace", + "example_sentence_native": "Tuvimos que sustituir la pieza dañada.", + "example_sentence_english": "We had to replace the damaged part.", + "pos": "verb", + "word_frequency": 5239 + }, + { + "word": "teatral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theatrical", + "example_sentence_native": "Su actuación fue muy teatral y exagerada.", + "example_sentence_english": "His performance was very theatrical and exaggerated.", + "pos": "adjective", + "word_frequency": 5240 + }, + { + "word": "trans", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trans", + "example_sentence_native": "La comunidad trans lucha por sus derechos.", + "example_sentence_english": "The trans community fights for its rights.", + "pos": "adjective", + "word_frequency": 5241 + }, + { + "word": "tributario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tributary;tax-related", + "example_sentence_native": "El sistema tributario necesita una reforma.", + "example_sentence_english": "The tax system needs reform.", + "pos": "adjective", + "word_frequency": 5242 + }, + { + "word": "vaina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pod;sheath", + "example_sentence_native": "Las vainas de las legumbres son ricas en fibra.", + "example_sentence_english": "Legume pods are rich in fiber.", + "pos": "noun", + "word_frequency": 5243 + }, + { + "word": "vial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "road;traffic (adj.)", + "example_sentence_native": "Se implementaron nuevas medidas de seguridad vial.", + "example_sentence_english": "New road safety measures were implemented.", + "pos": "adjective", + "word_frequency": 5245 + }, + { + "word": "voluntariamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voluntarily", + "example_sentence_native": "Se ofreció voluntariamente para ayudar.", + "example_sentence_english": "He voluntarily offered to help.", + "pos": "adverb", + "word_frequency": 5246 + }, + { + "word": "zorra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fox", + "example_sentence_native": "La zorra es un animal astuto.", + "example_sentence_english": "The fox is a cunning animal.", + "pos": "noun", + "word_frequency": 5247 + }, + { + "word": "águila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eagle", + "example_sentence_native": "El águila volaba alto en el cielo.", + "example_sentence_english": "The eagle flew high in the sky.", + "pos": "noun", + "word_frequency": 5248 + }, + { + "word": "adicción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addiction", + "example_sentence_native": "La adicción al juego es un problema grave.", + "example_sentence_english": "Gambling addiction is a serious problem.", + "pos": "noun", + "word_frequency": 5249 + }, + { + "word": "adorar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adore;to worship", + "example_sentence_native": "Adoro pasar tiempo con mi familia.", + "example_sentence_english": "I adore spending time with my family.", + "pos": "verb", + "word_frequency": 5250 + }, + { + "word": "aplicable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicable", + "example_sentence_native": "Esta regla no es aplicable en este caso.", + "example_sentence_english": "This rule is not applicable in this case.", + "pos": "adjective", + "word_frequency": 5251 + }, + { + "word": "area", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "area", + "example_sentence_native": "Esta es un área de descanso.", + "example_sentence_english": "This is a resting area.", + "pos": "noun", + "word_frequency": 5252 + }, + { + "word": "atribuir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attribute", + "example_sentence_native": "Le atribuyen el éxito a su duro trabajo.", + "example_sentence_english": "They attribute the success to his hard work.", + "pos": "verb", + "word_frequency": 5255 + }, + { + "word": "autoestima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-esteem", + "example_sentence_native": "Es importante tener una buena autoestima.", + "example_sentence_english": "It's important to have good self-esteem.", + "pos": "noun", + "word_frequency": 5256 + }, + { + "word": "balcón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balcony", + "example_sentence_native": "Salimos al balcón para ver el desfile.", + "example_sentence_english": "We went out onto the balcony to watch the parade.", + "pos": "noun", + "word_frequency": 5257 + }, + { + "word": "borrador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eraser;draft", + "example_sentence_native": "Necesito un borrador para corregir el error.", + "example_sentence_english": "I need an eraser to correct the mistake.", + "pos": "noun", + "word_frequency": 5258 + }, + { + "word": "calificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualified;rated", + "example_sentence_native": "Es un experto altamente calificado.", + "example_sentence_english": "He is a highly qualified expert.", + "pos": "adjective", + "word_frequency": 5261 + }, + { + "word": "casual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casual;accidental", + "example_sentence_native": "Fue un encuentro casual en la calle.", + "example_sentence_english": "It was a casual encounter on the street.", + "pos": "adjective", + "word_frequency": 5262 + }, + { + "word": "cese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cessation;termination", + "example_sentence_native": "Se anunció el cese de las hostilidades.", + "example_sentence_english": "The cessation of hostilities was announced.", + "pos": "noun", + "word_frequency": 5263 + }, + { + "word": "clic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "click", + "example_sentence_native": "Haz clic aquí para abrir el enlace.", + "example_sentence_english": "Click here to open the link.", + "pos": "noun", + "word_frequency": 5264 + }, + { + "word": "colgado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hung;suspended", + "example_sentence_native": "El cuadro estaba colgado en la pared.", + "example_sentence_english": "The painting was hung on the wall.", + "pos": "adjective", + "word_frequency": 5265 + }, + { + "word": "comúnmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commonly", + "example_sentence_native": "Se usa comúnmente en la cocina.", + "example_sentence_english": "It is commonly used in cooking.", + "pos": "adverb", + "word_frequency": 5266 + }, + { + "word": "conectado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "connected", + "example_sentence_native": "Asegúrate de que el cable esté bien conectado.", + "example_sentence_english": "Make sure the cable is well connected.", + "pos": "adjective", + "word_frequency": 5267 + }, + { + "word": "cono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cone", + "example_sentence_native": "El helado de cono es mi favorito.", + "example_sentence_english": "Cone ice cream is my favorite.", + "pos": "noun", + "word_frequency": 5268 + }, + { + "word": "contemplar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contemplate;to consider", + "example_sentence_native": "Le gusta contemplar las estrellas por la noche.", + "example_sentence_english": "He likes to contemplate the stars at night.", + "pos": "verb", + "word_frequency": 5269 + }, + { + "word": "crueldad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruelty", + "example_sentence_native": "La crueldad animal es inaceptable.", + "example_sentence_english": "Animal cruelty is unacceptable.", + "pos": "noun", + "word_frequency": 5270 + }, + { + "word": "cómplice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplice", + "example_sentence_native": "Fue su cómplice en el crimen.", + "example_sentence_english": "He was his accomplice in the crime.", + "pos": "noun", + "word_frequency": 5271 + }, + { + "word": "denunciado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reported;denounced", + "example_sentence_native": "El caso fue denunciado a las autoridades.", + "example_sentence_english": "The case was reported to the authorities.", + "pos": "adjective", + "word_frequency": 5272 + }, + { + "word": "despacio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "slowly", + "example_sentence_native": "Habla despacio para que te entienda.", + "example_sentence_english": "Speak slowly so I can understand you.", + "pos": "adverb", + "word_frequency": 5273 + }, + { + "word": "doméstico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domestic", + "example_sentence_native": "Tenemos un perro doméstico.", + "example_sentence_english": "We have a domestic dog.", + "pos": "adjective", + "word_frequency": 5274 + }, + { + "word": "dramático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dramatic", + "example_sentence_native": "La situación se volvió dramática.", + "example_sentence_english": "The situation became dramatic.", + "pos": "adjective", + "word_frequency": 5275 + }, + { + "word": "enmienda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amendment", + "example_sentence_native": "Se propuso una enmienda a la ley.", + "example_sentence_english": "An amendment to the law was proposed.", + "pos": "noun", + "word_frequency": 5276 + }, + { + "word": "escogido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chosen;selected", + "example_sentence_native": "Fue el candidato escogido para el puesto.", + "example_sentence_english": "He was the chosen candidate for the position.", + "pos": "adjective", + "word_frequency": 5277 + }, + { + "word": "estructural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structural", + "example_sentence_native": "Hay un problema estructural en el edificio.", + "example_sentence_english": "There is a structural problem in the building.", + "pos": "adjective", + "word_frequency": 5278 + }, + { + "word": "fascista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascist", + "example_sentence_native": "Se le acusó de tener ideas fascistas.", + "example_sentence_english": "He was accused of having fascist ideas.", + "pos": "adjective", + "word_frequency": 5279 + }, + { + "word": "forro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lining", + "example_sentence_native": "El forro del abrigo es muy suave.", + "example_sentence_english": "The coat's lining is very soft.", + "pos": "noun", + "word_frequency": 5280 + }, + { + "word": "gen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gene", + "example_sentence_native": "Los genes determinan muchas características.", + "example_sentence_english": "Genes determine many characteristics.", + "pos": "noun", + "word_frequency": 5282 + }, + { + "word": "gradualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gradually", + "example_sentence_native": "La situación mejoró gradualmente.", + "example_sentence_english": "The situation gradually improved.", + "pos": "adverb", + "word_frequency": 5283 + }, + { + "word": "gremio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guild", + "example_sentence_native": "El gremio de artesanos se reunió.", + "example_sentence_english": "The guild of artisans met.", + "pos": "noun", + "word_frequency": 5284 + }, + { + "word": "hembra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female", + "example_sentence_native": "La leona es la hembra del león.", + "example_sentence_english": "The lioness is the female of the lion.", + "pos": "noun", + "word_frequency": 5287 + }, + { + "word": "inesperado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unexpected", + "example_sentence_native": "Fue un giro inesperado en la trama.", + "example_sentence_english": "It was an unexpected twist in the plot.", + "pos": "adjective", + "word_frequency": 5291 + }, + { + "word": "infantería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infantry", + "example_sentence_native": "La infantería avanzó por el campo.", + "example_sentence_english": "The infantry advanced across the field.", + "pos": "noun", + "word_frequency": 5292 + }, + { + "word": "invertido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inverted", + "example_sentence_native": "La imagen estaba invertida.", + "example_sentence_english": "The image was inverted.", + "pos": "adjective", + "word_frequency": 5293 + }, + { + "word": "lava", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lava", + "example_sentence_native": "La lava fluyó del volcán.", + "example_sentence_english": "The lava flowed from the volcano.", + "pos": "noun", + "word_frequency": 5295 + }, + { + "word": "licitación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tender", + "example_sentence_native": "Ganaron la licitación para el proyecto.", + "example_sentence_english": "They won the tender for the project.", + "pos": "noun", + "word_frequency": 5296 + }, + { + "word": "light", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light (low-calorie)", + "example_sentence_native": "Prefiero la bebida light.", + "example_sentence_english": "I prefer the light drink.", + "pos": "adjective", + "word_frequency": 5297 + }, + { + "word": "mantequilla", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "butter", + "example_sentence_native": "Me gusta la tostada con mantequilla.", + "example_sentence_english": "I like toast with butter.", + "pos": "noun", + "word_frequency": 5299 + }, + { + "word": "mediático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "media-related", + "example_sentence_native": "El evento tuvo un gran impacto mediático.", + "example_sentence_english": "The event had a great media impact.", + "pos": "adjective", + "word_frequency": 5301 + }, + { + "word": "merecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserved", + "example_sentence_native": "Su éxito fue bien merecido.", + "example_sentence_english": "His success was well deserved.", + "pos": "adjective", + "word_frequency": 5302 + }, + { + "word": "modificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modified", + "example_sentence_native": "El plan fue modificado ligeramente.", + "example_sentence_english": "The plan was slightly modified.", + "pos": "adjective", + "word_frequency": 5303 + }, + { + "word": "monumental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monumental", + "example_sentence_native": "La obra fue un éxito monumental.", + "example_sentence_english": "The work was a monumental success.", + "pos": "adjective", + "word_frequency": 5304 + }, + { + "word": "mortalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mortality", + "example_sentence_native": "La tasa de mortalidad infantil disminuyó.", + "example_sentence_english": "The infant mortality rate decreased.", + "pos": "noun", + "word_frequency": 5305 + }, + { + "word": "observado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observed", + "example_sentence_native": "El fenómeno fue observado por muchos.", + "example_sentence_english": "The phenomenon was observed by many.", + "pos": "adjective", + "word_frequency": 5310 + }, + { + "word": "observatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observatory", + "example_sentence_native": "Visitamos el observatorio astronómico.", + "example_sentence_english": "We visited the astronomical observatory.", + "pos": "noun", + "word_frequency": 5311 + }, + { + "word": "oliva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "olive", + "example_sentence_native": "Me encanta el aceite de oliva.", + "example_sentence_english": "I love olive oil.", + "pos": "noun", + "word_frequency": 5312 + }, + { + "word": "oportuno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportune", + "example_sentence_native": "Su intervención fue muy oportuna.", + "example_sentence_english": "His intervention was very timely.", + "pos": "adjective", + "word_frequency": 5313 + }, + { + "word": "oveja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sheep", + "example_sentence_native": "La oveja pastaba en el campo.", + "example_sentence_english": "The sheep was grazing in the field.", + "pos": "noun", + "word_frequency": 5314 + }, + { + "word": "planteado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proposed", + "example_sentence_native": "La solución planteada es interesante.", + "example_sentence_english": "The proposed solution is interesting.", + "pos": "adjective", + "word_frequency": 5316 + }, + { + "word": "procurador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosecutor", + "example_sentence_native": "El procurador presentó las pruebas.", + "example_sentence_english": "The prosecutor presented the evidence.", + "pos": "noun", + "word_frequency": 5317 + }, + { + "word": "recogida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection", + "example_sentence_native": "La recogida de basura es diaria.", + "example_sentence_english": "Garbage collection is daily.", + "pos": "noun", + "word_frequency": 5318 + }, + { + "word": "regimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regiment", + "example_sentence_native": "El regimiento desfiló por la plaza.", + "example_sentence_english": "The regiment marched through the square.", + "pos": "noun", + "word_frequency": 5319 + }, + { + "word": "reservado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reserved", + "example_sentence_native": "Es una persona muy reservada.", + "example_sentence_english": "He is a very reserved person.", + "pos": "adjective", + "word_frequency": 5321 + }, + { + "word": "ruego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plea;request", + "example_sentence_native": "Hago un ruego por su ayuda.", + "example_sentence_english": "I make a plea for your help.", + "pos": "noun", + "word_frequency": 5323 + }, + { + "word": "secuestrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapped;abducted", + "example_sentence_native": "La persona secuestrada fue liberada.", + "example_sentence_english": "The kidnapped person was released.", + "pos": "adjective", + "word_frequency": 5324 + }, + { + "word": "significativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significantly", + "example_sentence_native": "La situación ha mejorado significativamente.", + "example_sentence_english": "The situation has significantly improved.", + "pos": "adverb", + "word_frequency": 5325 + }, + { + "word": "sistemático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "systematic", + "example_sentence_native": "Necesitamos un enfoque más sistemático.", + "example_sentence_english": "We need a more systematic approach.", + "pos": "adjective", + "word_frequency": 5327 + }, + { + "word": "sociología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociology", + "example_sentence_native": "Ella estudia sociología en la universidad.", + "example_sentence_english": "She studies sociology at university.", + "pos": "noun", + "word_frequency": 5328 + }, + { + "word": "status", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "status", + "example_sentence_native": "¿Cuál es el status de tu solicitud?", + "example_sentence_english": "What is the status of your application?", + "pos": "noun", + "word_frequency": 5330 + }, + { + "word": "tablero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "board", + "example_sentence_native": "El tablero de ajedrez es blanco y negro.", + "example_sentence_english": "The chessboard is black and white.", + "pos": "noun", + "word_frequency": 5332 + }, + { + "word": "tratarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be about;to deal with", + "example_sentence_native": "Se trata de un problema complejo.", + "example_sentence_english": "It's about a complex problem.", + "pos": "verb", + "word_frequency": 5333 + }, + { + "word": "tronco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk (of a tree);torso", + "example_sentence_native": "El tronco del árbol era muy grueso.", + "example_sentence_english": "The tree trunk was very thick.", + "pos": "noun", + "word_frequency": 5334 + }, + { + "word": "tweet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tweet", + "example_sentence_native": "Publicó un tweet sobre el evento.", + "example_sentence_english": "He posted a tweet about the event.", + "pos": "noun", + "word_frequency": 5335 + }, + { + "word": "vago", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lazy;vague", + "example_sentence_native": "Es un estudiante muy vago.", + "example_sentence_english": "He is a very lazy student.", + "pos": "adjective", + "word_frequency": 5337 + }, + { + "word": "variante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variant;version", + "example_sentence_native": "Esta es una nueva variante del virus.", + "example_sentence_english": "This is a new variant of the virus.", + "pos": "noun", + "word_frequency": 5338 + }, + { + "word": "vocabulario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vocabulary", + "example_sentence_native": "Necesito aprender más vocabulario.", + "example_sentence_english": "I need to learn more vocabulary.", + "pos": "noun", + "word_frequency": 5340 + }, + { + "word": "accesorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessory", + "example_sentence_native": "Compró un accesorio para su teléfono.", + "example_sentence_english": "He bought an accessory for his phone.", + "pos": "noun", + "word_frequency": 5343 + }, + { + "word": "acondicionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conditioned;air-conditioned", + "example_sentence_native": "El aire acondicionado está encendido.", + "example_sentence_english": "The air conditioning is on.", + "pos": "adjective", + "word_frequency": 5344 + }, + { + "word": "armario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wardrobe;closet", + "example_sentence_native": "Guarda la ropa en el armario.", + "example_sentence_english": "Keep the clothes in the closet.", + "pos": "noun", + "word_frequency": 5346 + }, + { + "word": "ascensor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elevator;lift", + "example_sentence_native": "Subimos por el ascensor.", + "example_sentence_english": "We went up by elevator.", + "pos": "noun", + "word_frequency": 5347 + }, + { + "word": "asignado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assigned", + "example_sentence_native": "La tarea asignada es difícil.", + "example_sentence_english": "The assigned task is difficult.", + "pos": "adjective", + "word_frequency": 5348 + }, + { + "word": "beta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beta", + "example_sentence_native": "La versión beta del software ya está disponible.", + "example_sentence_english": "The beta version of the software is now available.", + "pos": "noun", + "word_frequency": 5351 + }, + { + "word": "burro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donkey;idiot (colloquial)", + "example_sentence_native": "El burro lleva la carga.", + "example_sentence_english": "The donkey carries the load.", + "pos": "noun", + "word_frequency": 5353 + }, + { + "word": "caudal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flow;volume (of water);wealth", + "example_sentence_native": "El río tiene un gran caudal en primavera.", + "example_sentence_english": "The river has a large flow in spring.", + "pos": "noun", + "word_frequency": 5354 + }, + { + "word": "chance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chance;opportunity", + "example_sentence_native": "Dame una chance para explicarme.", + "example_sentence_english": "Give me a chance to explain myself.", + "pos": "noun", + "word_frequency": 5355 + }, + { + "word": "cirujano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surgeon", + "example_sentence_native": "El cirujano realizó la operación.", + "example_sentence_english": "The surgeon performed the operation.", + "pos": "noun", + "word_frequency": 5356 + }, + { + "word": "collar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "necklace;collar", + "example_sentence_native": "Llevaba un hermoso collar de perlas.", + "example_sentence_english": "She wore a beautiful pearl necklace.", + "pos": "noun", + "word_frequency": 5357 + }, + { + "word": "compartido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shared", + "example_sentence_native": "Tenemos intereses compartidos.", + "example_sentence_english": "We have shared interests.", + "pos": "adjective", + "word_frequency": 5358 + }, + { + "word": "consultado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consulted", + "example_sentence_native": "El informe consultado es muy útil.", + "example_sentence_english": "The consulted report is very useful.", + "pos": "adjective", + "word_frequency": 5359 + }, + { + "word": "crucial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucial", + "example_sentence_native": "Es crucial que lleguemos a tiempo.", + "example_sentence_english": "It's crucial that we arrive on time.", + "pos": "adjective", + "word_frequency": 5360 + }, + { + "word": "cráneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skull", + "example_sentence_native": "El cráneo protege el cerebro.", + "example_sentence_english": "The skull protects the brain.", + "pos": "noun", + "word_frequency": 5361 + }, + { + "word": "dirigirse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go to;to address (oneself)", + "example_sentence_native": "Se dirigió hacia la salida.", + "example_sentence_english": "He headed towards the exit.", + "pos": "verb", + "word_frequency": 5362 + }, + { + "word": "ecuación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equation", + "example_sentence_native": "Resolvió la ecuación rápidamente.", + "example_sentence_english": "He solved the equation quickly.", + "pos": "noun", + "word_frequency": 5363 + }, + { + "word": "ejecutado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executed", + "example_sentence_native": "El plan fue ejecutado con éxito.", + "example_sentence_english": "The plan was executed successfully.", + "pos": "adjective", + "word_frequency": 5365 + }, + { + "word": "encerrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locked up;confined", + "example_sentence_native": "El perro estaba encerrado en el patio.", + "example_sentence_english": "The dog was locked up in the yard.", + "pos": "adjective", + "word_frequency": 5367 + }, + { + "word": "enfermera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nurse", + "example_sentence_native": "La enfermera me tomó la temperatura.", + "example_sentence_english": "The nurse took my temperature.", + "pos": "noun", + "word_frequency": 5368 + }, + { + "word": "enfermería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursing (profession);infirmary", + "example_sentence_native": "Estudió enfermería en la universidad.", + "example_sentence_english": "She studied nursing at the university.", + "pos": "noun", + "word_frequency": 5369 + }, + { + "word": "equipamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipment", + "example_sentence_native": "Necesitamos nuevo equipamiento para el laboratorio.", + "example_sentence_english": "We need new equipment for the laboratory.", + "pos": "noun", + "word_frequency": 5370 + }, + { + "word": "equivaler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be equivalent to", + "example_sentence_native": "Un euro equivale a cien céntimos.", + "example_sentence_english": "One euro is equivalent to one hundred cents.", + "pos": "verb", + "word_frequency": 5371 + }, + { + "word": "escultura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sculpture", + "example_sentence_native": "Admiramos la escultura en el museo.", + "example_sentence_english": "We admired the sculpture in the museum.", + "pos": "noun", + "word_frequency": 5372 + }, + { + "word": "expulsado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expelled;ejected", + "example_sentence_native": "Fue expulsado del partido por su mal comportamiento.", + "example_sentence_english": "He was expelled from the match for his bad behavior.", + "pos": "adjective", + "word_frequency": 5373 + }, + { + "word": "extraer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extract;to pull out", + "example_sentence_native": "El dentista tuvo que extraerle una muela.", + "example_sentence_english": "The dentist had to extract a tooth.", + "pos": "verb", + "word_frequency": 5374 + }, + { + "word": "fidelidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fidelity;loyalty", + "example_sentence_native": "La fidelidad es importante en una relación.", + "example_sentence_english": "Loyalty is important in a relationship.", + "pos": "noun", + "word_frequency": 5376 + }, + { + "word": "francamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frankly;honestly", + "example_sentence_native": "Francamente, no sé qué decir.", + "example_sentence_english": "Frankly, I don't know what to say.", + "pos": "adverb", + "word_frequency": 5377 + }, + { + "word": "gramo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gram", + "example_sentence_native": "Necesito cien gramos de azúcar.", + "example_sentence_english": "I need one hundred grams of sugar.", + "pos": "noun", + "word_frequency": 5382 + }, + { + "word": "inmunidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immunity", + "example_sentence_native": "Desarrolló inmunidad al virus.", + "example_sentence_english": "He developed immunity to the virus.", + "pos": "noun", + "word_frequency": 5384 + }, + { + "word": "inusual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unusual", + "example_sentence_native": "Fue una situación inusual.", + "example_sentence_english": "It was an unusual situation.", + "pos": "adjective", + "word_frequency": 5385 + }, + { + "word": "inventar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invent", + "example_sentence_native": "Él inventó una nueva máquina.", + "example_sentence_english": "He invented a new machine.", + "pos": "verb", + "word_frequency": 5386 + }, + { + "word": "jamón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ham", + "example_sentence_native": "Me gusta el bocadillo de jamón.", + "example_sentence_english": "I like the ham sandwich.", + "pos": "noun", + "word_frequency": 5387 + }, + { + "word": "leña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firewood", + "example_sentence_native": "Necesitamos más leña para la chimenea.", + "example_sentence_english": "We need more firewood for the fireplace.", + "pos": "noun", + "word_frequency": 5388 + }, + { + "word": "lote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lot;batch", + "example_sentence_native": "Compramos un lote de terreno.", + "example_sentence_english": "We bought a lot of land.", + "pos": "noun", + "word_frequency": 5390 + }, + { + "word": "madero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "timber;log", + "example_sentence_native": "Cortaron un gran madero del árbol.", + "example_sentence_english": "They cut a large log from the tree.", + "pos": "noun", + "word_frequency": 5392 + }, + { + "word": "mango", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mango (fruit);handle", + "example_sentence_native": "Me encanta el sabor del mango.", + "example_sentence_english": "I love the taste of mango.", + "pos": "noun", + "word_frequency": 5393 + }, + { + "word": "marítimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maritime", + "example_sentence_native": "La ruta marítima es más larga.", + "example_sentence_english": "The maritime route is longer.", + "pos": "adjective", + "word_frequency": 5394 + }, + { + "word": "merced", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercy;grace", + "example_sentence_native": "Estaba a merced de las olas.", + "example_sentence_english": "He was at the mercy of the waves.", + "pos": "noun", + "word_frequency": 5395 + }, + { + "word": "moderado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderate", + "example_sentence_native": "Mantuvo un tono moderado durante la discusión.", + "example_sentence_english": "He maintained a moderate tone during the discussion.", + "pos": "adjective", + "word_frequency": 5397 + }, + { + "word": "mutuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutual", + "example_sentence_native": "Tienen un respeto mutuo el uno por el otro.", + "example_sentence_english": "They have mutual respect for each other.", + "pos": "adjective", + "word_frequency": 5400 + }, + { + "word": "neutral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neutral", + "example_sentence_native": "Es importante mantenerse neutral en una discusión.", + "example_sentence_english": "It's important to remain neutral in a discussion.", + "pos": "adjective", + "word_frequency": 5402 + }, + { + "word": "ofender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to offend", + "example_sentence_native": "No quise ofenderte con mi comentario.", + "example_sentence_english": "I didn't mean to offend you with my comment.", + "pos": "verb", + "word_frequency": 5404 + }, + { + "word": "patético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pathetic", + "example_sentence_native": "Su excusa fue patética.", + "example_sentence_english": "His excuse was pathetic.", + "pos": "adjective", + "word_frequency": 5407 + }, + { + "word": "peculiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiar", + "example_sentence_native": "Tenía un sentido del humor muy peculiar.", + "example_sentence_english": "He had a very peculiar sense of humor.", + "pos": "adjective", + "word_frequency": 5408 + }, + { + "word": "pescador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fisherman", + "example_sentence_native": "El pescador salió al mar al amanecer.", + "example_sentence_english": "The fisherman went out to sea at dawn.", + "pos": "noun", + "word_frequency": 5409 + }, + { + "word": "presunto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alleged", + "example_sentence_native": "El presunto culpable fue arrestado.", + "example_sentence_english": "The alleged culprit was arrested.", + "pos": "adjective", + "word_frequency": 5411 + }, + { + "word": "proporcional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportional", + "example_sentence_native": "El castigo debe ser proporcional al delito.", + "example_sentence_english": "The punishment must be proportional to the crime.", + "pos": "adjective", + "word_frequency": 5412 + }, + { + "word": "prostituta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute", + "example_sentence_native": "La novela describe la vida de una prostituta en el siglo XIX.", + "example_sentence_english": "The novel describes the life of a prostitute in the 19th century.", + "pos": "noun", + "word_frequency": 5413 + }, + { + "word": "puñado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handful", + "example_sentence_native": "Me dio un puñado de caramelos.", + "example_sentence_english": "He gave me a handful of candies.", + "pos": "noun", + "word_frequency": 5414 + }, + { + "word": "record", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record", + "example_sentence_native": "Rompió el récord mundial de velocidad.", + "example_sentence_english": "He broke the world speed record.", + "pos": "noun", + "word_frequency": 5415 + }, + { + "word": "regalar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give (as a gift)", + "example_sentence_native": "Quiero regalarle un libro para su cumpleaños.", + "example_sentence_english": "I want to give him a book for his birthday.", + "pos": "verb", + "word_frequency": 5416 + }, + { + "word": "repercusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repercussion", + "example_sentence_native": "Sus acciones tuvieron graves repercusiones.", + "example_sentence_english": "His actions had serious repercussions.", + "pos": "noun", + "word_frequency": 5417 + }, + { + "word": "resaltar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to highlight", + "example_sentence_native": "Quiero resaltar la importancia de este punto.", + "example_sentence_english": "I want to highlight the importance of this point.", + "pos": "verb", + "word_frequency": 5418 + }, + { + "word": "revuelta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolt", + "example_sentence_native": "La revuelta fue sofocada por el ejército.", + "example_sentence_english": "The revolt was suppressed by the army.", + "pos": "noun", + "word_frequency": 5419 + }, + { + "word": "saca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sack", + "example_sentence_native": "Llenó la saca de patatas.", + "example_sentence_english": "He filled the sack with potatoes.", + "pos": "noun", + "word_frequency": 5420 + }, + { + "word": "saludar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to greet", + "example_sentence_native": "Siempre saluda a sus vecinos.", + "example_sentence_english": "He always greets his neighbors.", + "pos": "verb", + "word_frequency": 5421 + }, + { + "word": "sarcasmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcasm", + "example_sentence_native": "Su comentario estaba lleno de sarcasmo.", + "example_sentence_english": "His comment was full of sarcasm.", + "pos": "noun", + "word_frequency": 5422 + }, + { + "word": "sinceridad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincerity", + "example_sentence_native": "Aprecio tu sinceridad.", + "example_sentence_english": "I appreciate your sincerity.", + "pos": "noun", + "word_frequency": 5423 + }, + { + "word": "tango", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tango", + "example_sentence_native": "El tango es un baile apasionado.", + "example_sentence_english": "Tango is a passionate dance.", + "pos": "noun", + "word_frequency": 5425 + }, + { + "word": "telefonía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telephony", + "example_sentence_native": "La telefonía móvil ha revolucionado la comunicación.", + "example_sentence_english": "Mobile telephony has revolutionized communication.", + "pos": "noun", + "word_frequency": 5426 + }, + { + "word": "teórico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theoretical", + "example_sentence_native": "Su conocimiento es más teórico que práctico.", + "example_sentence_english": "His knowledge is more theoretical than practical.", + "pos": "adjective", + "word_frequency": 5428 + }, + { + "word": "trago", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sip", + "example_sentence_native": "Necesito un trago de agua.", + "example_sentence_english": "I need a sip of water.", + "pos": "noun", + "word_frequency": 5429 + }, + { + "word": "vegetación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegetation", + "example_sentence_native": "La vegetación en la selva es muy densa.", + "example_sentence_english": "The vegetation in the jungle is very dense.", + "pos": "noun", + "word_frequency": 5431 + }, + { + "word": "vendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sold out", + "example_sentence_native": "El concierto está completamente vendido.", + "example_sentence_english": "The concert is completely sold out.", + "pos": "adjective", + "word_frequency": 5432 + }, + { + "word": "verificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verification", + "example_sentence_native": "Se requiere una verificación de identidad.", + "example_sentence_english": "Identity verification is required.", + "pos": "noun", + "word_frequency": 5433 + }, + { + "word": "visibilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visibility", + "example_sentence_native": "La visibilidad era baja debido a la niebla.", + "example_sentence_english": "Visibility was low due to the fog.", + "pos": "noun", + "word_frequency": 5435 + }, + { + "word": "vocal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vowel", + "example_sentence_native": "Las vocales en español son a, e, i, o, u.", + "example_sentence_english": "The vowels in Spanish are a, e, i, o, u.", + "pos": "noun", + "word_frequency": 5436 + }, + { + "word": "acumulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulation", + "example_sentence_native": "La acumulación de basura es un problema.", + "example_sentence_english": "The accumulation of trash is a problem.", + "pos": "noun", + "word_frequency": 5438 + }, + { + "word": "alusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allusion", + "example_sentence_native": "Hizo una alusión a un evento pasado.", + "example_sentence_english": "He made an allusion to a past event.", + "pos": "noun", + "word_frequency": 5439 + }, + { + "word": "amnistía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amnesty", + "example_sentence_native": "El gobierno concedió una amnistía a los presos políticos.", + "example_sentence_english": "The government granted an amnesty to political prisoners.", + "pos": "noun", + "word_frequency": 5440 + }, + { + "word": "andaluz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Andalusian", + "example_sentence_native": "La cultura andaluza es muy rica.", + "example_sentence_english": "Andalusian culture is very rich.", + "pos": "adjective", + "word_frequency": 5441 + }, + { + "word": "apunte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "note;jotting", + "example_sentence_native": "Tomé algunos apuntes durante la clase.", + "example_sentence_english": "I took some notes during the class.", + "pos": "noun", + "word_frequency": 5442 + }, + { + "word": "asado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roast (meat)", + "example_sentence_native": "Para la cena, preparamos un delicioso asado de cerdo.", + "example_sentence_english": "For dinner, we prepared a delicious pork roast.", + "pos": "noun", + "word_frequency": 5443 + }, + { + "word": "atrapado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trapped", + "example_sentence_native": "El ratón estaba atrapado en la trampa.", + "example_sentence_english": "The mouse was trapped in the trap.", + "pos": "adjective", + "word_frequency": 5444 + }, + { + "word": "auditorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auditorium;audience", + "example_sentence_native": "El auditorio aplaudió al final del concierto.", + "example_sentence_english": "The audience applauded at the end of the concert.", + "pos": "noun", + "word_frequency": 5445 + }, + { + "word": "aviación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aviation", + "example_sentence_native": "La aviación ha avanzado mucho en el último siglo.", + "example_sentence_english": "Aviation has advanced a lot in the last century.", + "pos": "noun", + "word_frequency": 5446 + }, + { + "word": "bondad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kindness;goodness", + "example_sentence_native": "Su bondad es admirable.", + "example_sentence_english": "Her kindness is admirable.", + "pos": "noun", + "word_frequency": 5447 + }, + { + "word": "cabra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goat", + "example_sentence_native": "La cabra come hierba en el campo.", + "example_sentence_english": "The goat eats grass in the field.", + "pos": "noun", + "word_frequency": 5448 + }, + { + "word": "cancelación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cancellation", + "example_sentence_native": "Recibimos una notificación de la cancelación del vuelo.", + "example_sentence_english": "We received a notification of the flight cancellation.", + "pos": "noun", + "word_frequency": 5449 + }, + { + "word": "capturado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captured", + "example_sentence_native": "El ladrón fue capturado por la policía.", + "example_sentence_english": "The thief was captured by the police.", + "pos": "adjective", + "word_frequency": 5450 + }, + { + "word": "carril", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lane (road;track)", + "example_sentence_native": "Mantente en tu carril al conducir.", + "example_sentence_english": "Stay in your lane when driving.", + "pos": "noun", + "word_frequency": 5451 + }, + { + "word": "catedrático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university professor;chair (of a department)", + "example_sentence_native": "Mi padre es catedrático de historia en la universidad.", + "example_sentence_english": "My father is a history professor at the university.", + "pos": "noun", + "word_frequency": 5452 + }, + { + "word": "celoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jealous", + "example_sentence_native": "Estaba celoso de su éxito.", + "example_sentence_english": "He was jealous of her success.", + "pos": "adjective", + "word_frequency": 5453 + }, + { + "word": "centrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "centered;focused", + "example_sentence_native": "Necesitas estar más centrado en tus estudios.", + "example_sentence_english": "You need to be more focused on your studies.", + "pos": "adjective", + "word_frequency": 5454 + }, + { + "word": "cereal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cereal", + "example_sentence_native": "Desayuno cereal con leche todas las mañanas.", + "example_sentence_english": "I eat cereal with milk every morning for breakfast.", + "pos": "noun", + "word_frequency": 5455 + }, + { + "word": "cerámica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceramic;pottery", + "example_sentence_native": "Compramos un jarrón de cerámica hecho a mano.", + "example_sentence_english": "We bought a handmade ceramic vase.", + "pos": "noun", + "word_frequency": 5456 + }, + { + "word": "clasificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classified (ad;document)", + "example_sentence_native": "Busqué trabajo en la sección de clasificados del periódico.", + "example_sentence_english": "I looked for a job in the classifieds section of the newspaper.", + "pos": "noun", + "word_frequency": 5457 + }, + { + "word": "cláusula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clause", + "example_sentence_native": "El contrato tiene una cláusula de confidencialidad.", + "example_sentence_english": "The contract has a confidentiality clause.", + "pos": "noun", + "word_frequency": 5458 + }, + { + "word": "coherente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherent", + "example_sentence_native": "Su argumento no era muy coherente.", + "example_sentence_english": "His argument was not very coherent.", + "pos": "adjective", + "word_frequency": 5459 + }, + { + "word": "conceder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant;to concede", + "example_sentence_native": "El juez decidió concederle la libertad condicional.", + "example_sentence_english": "The judge decided to grant him parole.", + "pos": "verb", + "word_frequency": 5460 + }, + { + "word": "contundente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forceful;conclusive;blunt", + "example_sentence_native": "Presentó pruebas contundentes de su inocencia.", + "example_sentence_english": "He presented conclusive evidence of his innocence.", + "pos": "adjective", + "word_frequency": 5461 + }, + { + "word": "cría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offspring;young (animal)", + "example_sentence_native": "La leona protegía a su cría.", + "example_sentence_english": "The lioness protected her cub.", + "pos": "noun", + "word_frequency": 5462 + }, + { + "word": "cultivar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cultivate;to grow", + "example_sentence_native": "Queremos cultivar nuestras propias verduras en el jardín.", + "example_sentence_english": "We want to grow our own vegetables in the garden.", + "pos": "verb", + "word_frequency": 5463 + }, + { + "word": "dañar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to damage;to harm", + "example_sentence_native": "No quiero dañar el medio ambiente.", + "example_sentence_english": "I don't want to harm the environment.", + "pos": "verb", + "word_frequency": 5464 + }, + { + "word": "descontento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discontent;dissatisfaction", + "example_sentence_native": "Había un gran descontento entre los trabajadores.", + "example_sentence_english": "There was great discontent among the workers.", + "pos": "noun", + "word_frequency": 5465 + }, + { + "word": "desesperado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desperate", + "example_sentence_native": "Estaba desesperado por encontrar una solución.", + "example_sentence_english": "He was desperate to find a solution.", + "pos": "adjective", + "word_frequency": 5466 + }, + { + "word": "diamante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diamond", + "example_sentence_native": "El anillo tenía un hermoso diamante.", + "example_sentence_english": "The ring had a beautiful diamond.", + "pos": "noun", + "word_frequency": 5467 + }, + { + "word": "disolución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissolution", + "example_sentence_native": "La disolución de la empresa fue un proceso largo.", + "example_sentence_english": "The dissolution of the company was a long process.", + "pos": "noun", + "word_frequency": 5468 + }, + { + "word": "email", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "email", + "example_sentence_native": "Te enviaré un email con los detalles.", + "example_sentence_english": "I will send you an email with the details.", + "pos": "noun", + "word_frequency": 5469 + }, + { + "word": "emprendedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrepreneur", + "example_sentence_native": "Es un joven emprendedor con muchas ideas.", + "example_sentence_english": "He is a young entrepreneur with many ideas.", + "pos": "noun", + "word_frequency": 5470 + }, + { + "word": "encendido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on;lit;turned on", + "example_sentence_native": "La luz está encendida.", + "example_sentence_english": "The light is on.", + "pos": "adjective", + "word_frequency": 5471 + }, + { + "word": "enterrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buried", + "example_sentence_native": "El tesoro estaba enterrado bajo un árbol viejo.", + "example_sentence_english": "The treasure was buried under an old tree.", + "pos": "adjective", + "word_frequency": 5472 + }, + { + "word": "estricto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strict", + "example_sentence_native": "Mi profesor es muy estricto con las fechas de entrega.", + "example_sentence_english": "My professor is very strict with deadlines.", + "pos": "adjective", + "word_frequency": 5473 + }, + { + "word": "estupendo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great;wonderful;splendid", + "example_sentence_native": "¡Qué día tan estupendo!", + "example_sentence_english": "What a great day!", + "pos": "adjective", + "word_frequency": 5474 + }, + { + "word": "fabrica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "factory", + "example_sentence_native": "La fábrica produce coches.", + "example_sentence_english": "The factory produces cars.", + "pos": "noun", + "word_frequency": 5475 + }, + { + "word": "fabricar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manufacture;to fabricate", + "example_sentence_native": "Esta empresa fabrica componentes electrónicos.", + "example_sentence_english": "This company manufactures electronic components.", + "pos": "verb", + "word_frequency": 5476 + }, + { + "word": "formulario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "form (document)", + "example_sentence_native": "Por favor, rellena este formulario.", + "example_sentence_english": "Please fill out this form.", + "pos": "noun", + "word_frequency": 5477 + }, + { + "word": "frustración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustration", + "example_sentence_native": "Sentía mucha frustración por no poder resolver el problema.", + "example_sentence_english": "He felt a lot of frustration for not being able to solve the problem.", + "pos": "noun", + "word_frequency": 5478 + }, + { + "word": "guerrilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guerrilla (warfare;group)", + "example_sentence_native": "El grupo de guerrilla operaba en las montañas.", + "example_sentence_english": "The guerrilla group operated in the mountains.", + "pos": "noun", + "word_frequency": 5479 + }, + { + "word": "hispano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hispanic", + "example_sentence_native": "Es una persona de origen hispano.", + "example_sentence_english": "He is a person of Hispanic origin.", + "pos": "adjective", + "word_frequency": 5480 + }, + { + "word": "imprenta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "printing press", + "example_sentence_native": "La imprenta revolucionó la difusión del conocimiento.", + "example_sentence_english": "The printing press revolutionized the spread of knowledge.", + "pos": "noun", + "word_frequency": 5481 + }, + { + "word": "impreso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "printed", + "example_sentence_native": "Necesito el formulario impreso.", + "example_sentence_english": "I need the printed form.", + "pos": "adjective", + "word_frequency": 5482 + }, + { + "word": "influir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to influence", + "example_sentence_native": "Sus palabras pueden influir en la decisión.", + "example_sentence_english": "His words can influence the decision.", + "pos": "verb", + "word_frequency": 5483 + }, + { + "word": "insoportable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbearable", + "example_sentence_native": "El calor era insoportable.", + "example_sentence_english": "The heat was unbearable.", + "pos": "adjective", + "word_frequency": 5484 + }, + { + "word": "islámico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamic", + "example_sentence_native": "La arquitectura islámica es muy hermosa.", + "example_sentence_english": "Islamic architecture is very beautiful.", + "pos": "adjective", + "word_frequency": 5487 + }, + { + "word": "laberinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labyrinth", + "example_sentence_native": "Nos perdimos en el laberinto del jardín.", + "example_sentence_english": "We got lost in the garden maze.", + "pos": "noun", + "word_frequency": 5491 + }, + { + "word": "maldición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curse", + "example_sentence_native": "Creen que hay una maldición sobre la casa.", + "example_sentence_english": "They believe there is a curse on the house.", + "pos": "noun", + "word_frequency": 5493 + }, + { + "word": "manifestado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manifested", + "example_sentence_native": "Su descontento se ha manifestado claramente.", + "example_sentence_english": "Their discontent has been clearly manifested.", + "pos": "adjective", + "word_frequency": 5494 + }, + { + "word": "menú", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "menu", + "example_sentence_native": "¿Puedo ver el menú, por favor?", + "example_sentence_english": "Can I see the menu, please?", + "pos": "noun", + "word_frequency": 5495 + }, + { + "word": "mona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female monkey", + "example_sentence_native": "Vimos una mona con su cría en el zoológico.", + "example_sentence_english": "We saw a female monkey with her baby at the zoo.", + "pos": "noun", + "word_frequency": 5496 + }, + { + "word": "mutuamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutually", + "example_sentence_native": "Se ayudaron mutuamente.", + "example_sentence_english": "They helped each other mutually.", + "pos": "adverb", + "word_frequency": 5497 + }, + { + "word": "nacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nation", + "example_sentence_native": "Cada nación tiene su propia cultura.", + "example_sentence_english": "Every nation has its own culture.", + "pos": "noun", + "word_frequency": 5498 + }, + { + "word": "network", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "network", + "example_sentence_native": "Necesitamos una buena network de contactos.", + "example_sentence_english": "We need a good network of contacts.", + "pos": "noun", + "word_frequency": 5499 + }, + { + "word": "olla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pot", + "example_sentence_native": "La sopa está en la olla.", + "example_sentence_english": "The soup is in the pot.", + "pos": "noun", + "word_frequency": 5500 + }, + { + "word": "patata", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "potato", + "example_sentence_native": "Me encantan las patatas fritas.", + "example_sentence_english": "I love french fries.", + "pos": "noun", + "word_frequency": 5501 + }, + { + "word": "peli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "movie (colloquial)", + "example_sentence_native": "Vamos a ver una peli esta noche.", + "example_sentence_english": "Let's watch a movie tonight.", + "pos": "noun", + "word_frequency": 5502 + }, + { + "word": "piña", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pineapple", + "example_sentence_native": "La piña es una fruta tropical.", + "example_sentence_english": "Pineapple is a tropical fruit.", + "pos": "noun", + "word_frequency": 5503 + }, + { + "word": "preocupante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worrying", + "example_sentence_native": "La situación económica es preocupante.", + "example_sentence_english": "The economic situation is worrying.", + "pos": "adjective", + "word_frequency": 5504 + }, + { + "word": "presentador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presenter", + "example_sentence_native": "El presentador anunció al siguiente invitado.", + "example_sentence_english": "The presenter announced the next guest.", + "pos": "noun", + "word_frequency": 5505 + }, + { + "word": "promocionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to promote", + "example_sentence_native": "Quieren promocionar el nuevo producto.", + "example_sentence_english": "They want to promote the new product.", + "pos": "verb", + "word_frequency": 5506 + }, + { + "word": "quizas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perhaps", + "example_sentence_native": "Quizás llueva mañana.", + "example_sentence_english": "Perhaps it will rain tomorrow.", + "pos": "adverb", + "word_frequency": 5507 + }, + { + "word": "recomendable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommendable", + "example_sentence_native": "Es recomendable leer las instrucciones.", + "example_sentence_english": "It is advisable to read the instructions.", + "pos": "adjective", + "word_frequency": 5508 + }, + { + "word": "representado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "represented", + "example_sentence_native": "El país está bien representado en la conferencia.", + "example_sentence_english": "The country is well represented at the conference.", + "pos": "adjective", + "word_frequency": 5509 + }, + { + "word": "reunido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathered", + "example_sentence_native": "La familia estaba reunida para la cena.", + "example_sentence_english": "The family was gathered for dinner.", + "pos": "adjective", + "word_frequency": 5510 + }, + { + "word": "rezar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pray", + "example_sentence_native": "La gente fue a la iglesia a rezar.", + "example_sentence_english": "People went to church to pray.", + "pos": "verb", + "word_frequency": 5511 + }, + { + "word": "riego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrigation", + "example_sentence_native": "El sistema de riego automático ahorra agua.", + "example_sentence_english": "The automatic irrigation system saves water.", + "pos": "noun", + "word_frequency": 5512 + }, + { + "word": "simpatía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sympathy", + "example_sentence_native": "Siento mucha simpatía por ella.", + "example_sentence_english": "I feel a lot of sympathy for her.", + "pos": "noun", + "word_frequency": 5513 + }, + { + "word": "suspendido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspended", + "example_sentence_native": "El partido fue suspendido por la lluvia.", + "example_sentence_english": "The match was suspended due to rain.", + "pos": "adjective", + "word_frequency": 5516 + }, + { + "word": "tatuaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "example_sentence_native": "Se hizo un tatuaje en el brazo.", + "example_sentence_english": "He got a tattoo on his arm.", + "pos": "noun", + "word_frequency": 5517 + }, + { + "word": "terminado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "finished", + "example_sentence_native": "El trabajo ya está terminado.", + "example_sentence_english": "The work is already finished.", + "pos": "adjective", + "word_frequency": 5518 + }, + { + "word": "ternura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenderness", + "example_sentence_native": "Miró al bebé con mucha ternura.", + "example_sentence_english": "She looked at the baby with great tenderness.", + "pos": "noun", + "word_frequency": 5519 + }, + { + "word": "velo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veil", + "example_sentence_native": "La novia llevaba un velo largo.", + "example_sentence_english": "The bride wore a long veil.", + "pos": "noun", + "word_frequency": 5522 + }, + { + "word": "vulnerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulnerable", + "example_sentence_native": "Los niños son más vulnerables a las enfermedades.", + "example_sentence_english": "Children are more vulnerable to diseases.", + "pos": "adjective", + "word_frequency": 5523 + }, + { + "word": "abastecimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply;provisioning", + "example_sentence_native": "El abastecimiento de agua es crucial en la ciudad.", + "example_sentence_english": "Water supply is crucial in the city.", + "pos": "noun", + "word_frequency": 5526 + }, + { + "word": "adaptarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adapt oneself", + "example_sentence_native": "Es importante adaptarse a los cambios.", + "example_sentence_english": "It's important to adapt to changes.", + "pos": "verb", + "word_frequency": 5528 + }, + { + "word": "afín", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "related;similar", + "example_sentence_native": "Tenemos intereses afines.", + "example_sentence_english": "We have similar interests.", + "pos": "adjective", + "word_frequency": 5529 + }, + { + "word": "ambición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambition", + "example_sentence_native": "Su ambición lo llevó lejos.", + "example_sentence_english": "His ambition took him far.", + "pos": "noun", + "word_frequency": 5531 + }, + { + "word": "anterioridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priority;antecedence", + "example_sentence_native": "Debes solicitarlo con anterioridad.", + "example_sentence_english": "You must request it in advance.", + "pos": "noun", + "word_frequency": 5532 + }, + { + "word": "antropología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropology", + "example_sentence_native": "Estudió antropología en la universidad.", + "example_sentence_english": "She studied anthropology at university.", + "pos": "noun", + "word_frequency": 5533 + }, + { + "word": "aportación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution;input", + "example_sentence_native": "Su aportación fue muy valiosa.", + "example_sentence_english": "His contribution was very valuable.", + "pos": "noun", + "word_frequency": 5534 + }, + { + "word": "aurora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dawn;aurora", + "example_sentence_native": "Nos levantamos al amanecer para ver la aurora.", + "example_sentence_english": "We got up at dawn to see the aurora.", + "pos": "noun", + "word_frequency": 5535 + }, + { + "word": "bloqueado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blocked", + "example_sentence_native": "El camino está bloqueado por la nieve.", + "example_sentence_english": "The road is blocked by snow.", + "pos": "adjective", + "word_frequency": 5537 + }, + { + "word": "castigar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to punish", + "example_sentence_native": "Los padres no deben castigar a sus hijos severamente.", + "example_sentence_english": "Parents should not punish their children severely.", + "pos": "verb", + "word_frequency": 5538 + }, + { + "word": "contrabando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggling;contraband", + "example_sentence_native": "La policía incautó una gran cantidad de contrabando.", + "example_sentence_english": "The police seized a large amount of contraband.", + "pos": "noun", + "word_frequency": 5541 + }, + { + "word": "contribuyente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxpayer;contributor", + "example_sentence_native": "Los contribuyentes esperan una reforma fiscal.", + "example_sentence_english": "Taxpayers expect a tax reform.", + "pos": "noun", + "word_frequency": 5542 + }, + { + "word": "coordenada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordinate", + "example_sentence_native": "Necesitamos las coordenadas exactas del lugar.", + "example_sentence_english": "We need the exact coordinates of the place.", + "pos": "noun", + "word_frequency": 5543 + }, + { + "word": "coordinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to coordinate", + "example_sentence_native": "Debemos coordinar nuestros esfuerzos.", + "example_sentence_english": "We must coordinate our efforts.", + "pos": "verb", + "word_frequency": 5544 + }, + { + "word": "cortina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curtain", + "example_sentence_native": "Cierra la cortina, por favor.", + "example_sentence_english": "Close the curtain, please.", + "pos": "noun", + "word_frequency": 5545 + }, + { + "word": "criado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "servant", + "example_sentence_native": "El criado abrió la puerta.", + "example_sentence_english": "The servant opened the door.", + "pos": "noun", + "word_frequency": 5546 + }, + { + "word": "cruzada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crusade", + "example_sentence_native": "La cruzada contra el hambre es importante.", + "example_sentence_english": "The crusade against hunger is important.", + "pos": "noun", + "word_frequency": 5547 + }, + { + "word": "despliegue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deployment;display;unfolding", + "example_sentence_native": "El despliegue de tropas fue rápido.", + "example_sentence_english": "The deployment of troops was rapid.", + "pos": "noun", + "word_frequency": 5549 + }, + { + "word": "donar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to donate", + "example_sentence_native": "Decidió donar sangre.", + "example_sentence_english": "He decided to donate blood.", + "pos": "verb", + "word_frequency": 5551 + }, + { + "word": "educado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polite;educated", + "example_sentence_native": "Es un joven muy educado.", + "example_sentence_english": "He is a very polite young man.", + "pos": "adjective", + "word_frequency": 5552 + }, + { + "word": "emisora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radio station;broadcaster", + "example_sentence_native": "Escucho mi emisora favorita.", + "example_sentence_english": "I listen to my favorite radio station.", + "pos": "noun", + "word_frequency": 5553 + }, + { + "word": "flecha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arrow", + "example_sentence_native": "La flecha apuntaba hacia el norte.", + "example_sentence_english": "The arrow pointed north.", + "pos": "noun", + "word_frequency": 5556 + }, + { + "word": "fortalecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strengthening;reinforcement", + "example_sentence_native": "El fortalecimiento de la economía es vital.", + "example_sentence_english": "The strengthening of the economy is vital.", + "pos": "noun", + "word_frequency": 5557 + }, + { + "word": "girar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn;to spin", + "example_sentence_native": "Gira a la derecha en la esquina.", + "example_sentence_english": "Turn right at the corner.", + "pos": "verb", + "word_frequency": 5558 + }, + { + "word": "golpeado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaten;hit", + "example_sentence_native": "El coche estaba golpeado por el accidente.", + "example_sentence_english": "The car was hit by the accident.", + "pos": "adjective", + "word_frequency": 5560 + }, + { + "word": "gravemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriously;gravely", + "example_sentence_native": "Fue gravemente herido en el accidente.", + "example_sentence_english": "He was seriously injured in the accident.", + "pos": "adverb", + "word_frequency": 5561 + }, + { + "word": "hipócrita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypocritical", + "example_sentence_native": "Su actitud hipócrita me molesta.", + "example_sentence_english": "His hypocritical attitude bothers me.", + "pos": "adjective", + "word_frequency": 5563 + }, + { + "word": "honorable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honorable", + "example_sentence_native": "Es una persona muy honorable.", + "example_sentence_english": "He is a very honorable person.", + "pos": "adjective", + "word_frequency": 5564 + }, + { + "word": "huerta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orchard;vegetable garden", + "example_sentence_native": "Cultivamos verduras en nuestra huerta.", + "example_sentence_english": "We grow vegetables in our garden.", + "pos": "noun", + "word_frequency": 5565 + }, + { + "word": "imposición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposition;tax", + "example_sentence_native": "La nueva imposición fiscal fue impopular.", + "example_sentence_english": "The new tax imposition was unpopular.", + "pos": "noun", + "word_frequency": 5566 + }, + { + "word": "impotencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impotence;powerlessness", + "example_sentence_native": "Sintió una gran impotencia ante la situación.", + "example_sentence_english": "He felt great powerlessness in the face of the situation.", + "pos": "noun", + "word_frequency": 5567 + }, + { + "word": "interino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interim;temporary", + "example_sentence_native": "Fue nombrado director interino.", + "example_sentence_english": "He was appointed interim director.", + "pos": "adjective", + "word_frequency": 5568 + }, + { + "word": "inventario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inventory;stock", + "example_sentence_native": "Necesitamos hacer un inventario de todos los productos.", + "example_sentence_english": "We need to take an inventory of all products.", + "pos": "noun", + "word_frequency": 5569 + }, + { + "word": "inversor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investor", + "example_sentence_native": "Los inversores están interesados en el nuevo proyecto.", + "example_sentence_english": "Investors are interested in the new project.", + "pos": "noun", + "word_frequency": 5570 + }, + { + "word": "liberalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalism", + "example_sentence_native": "El liberalismo es una ideología política.", + "example_sentence_english": "Liberalism is a political ideology.", + "pos": "noun", + "word_frequency": 5574 + }, + { + "word": "litoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coast;coastline", + "example_sentence_native": "Pasamos las vacaciones en el litoral.", + "example_sentence_english": "We spent the holidays on the coast.", + "pos": "noun", + "word_frequency": 5575 + }, + { + "word": "mariposa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butterfly", + "example_sentence_native": "Una mariposa voló cerca de la flor.", + "example_sentence_english": "A butterfly flew near the flower.", + "pos": "noun", + "word_frequency": 5578 + }, + { + "word": "maternidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maternity;motherhood", + "example_sentence_native": "La maternidad es una experiencia única.", + "example_sentence_english": "Motherhood is a unique experience.", + "pos": "noun", + "word_frequency": 5579 + }, + { + "word": "observador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observer", + "example_sentence_native": "Fue un observador atento de la situación.", + "example_sentence_english": "He was an attentive observer of the situation.", + "pos": "noun", + "word_frequency": 5583 + }, + { + "word": "octavo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eighth", + "example_sentence_native": "Es el octavo día del mes.", + "example_sentence_english": "It's the eighth day of the month.", + "pos": "adjective", + "word_frequency": 5584 + }, + { + "word": "optimista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimistic", + "example_sentence_native": "Siempre es muy optimista sobre el futuro.", + "example_sentence_english": "He is always very optimistic about the future.", + "pos": "adjective", + "word_frequency": 5585 + }, + { + "word": "patriota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriot", + "example_sentence_native": "Se considera un verdadero patriota.", + "example_sentence_english": "He considers himself a true patriot.", + "pos": "noun", + "word_frequency": 5587 + }, + { + "word": "patriotismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotism", + "example_sentence_native": "El patriotismo es un sentimiento fuerte.", + "example_sentence_english": "Patriotism is a strong feeling.", + "pos": "noun", + "word_frequency": 5588 + }, + { + "word": "penetración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penetration", + "example_sentence_native": "La penetración del mercado fue lenta al principio.", + "example_sentence_english": "Market penetration was slow at first.", + "pos": "noun", + "word_frequency": 5590 + }, + { + "word": "preventivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventive;precautionary", + "example_sentence_native": "Tomaron medidas preventivas contra la enfermedad.", + "example_sentence_english": "They took preventive measures against the disease.", + "pos": "adjective", + "word_frequency": 5591 + }, + { + "word": "profe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teacher (informal)", + "example_sentence_native": "Mi profe de español es muy bueno.", + "example_sentence_english": "My Spanish teacher is very good.", + "pos": "noun", + "word_frequency": 5592 + }, + { + "word": "psicólogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "psychologist", + "example_sentence_native": "Hablé con un psicólogo sobre mis problemas.", + "example_sentence_english": "I spoke with a psychologist about my problems.", + "pos": "noun", + "word_frequency": 5593 + }, + { + "word": "puntuación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuation;score", + "example_sentence_native": "La puntuación en el examen fue alta.", + "example_sentence_english": "The score on the exam was high.", + "pos": "noun", + "word_frequency": 5594 + }, + { + "word": "receptor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receiver;recipient", + "example_sentence_native": "El receptor del paquete firmó la entrega.", + "example_sentence_english": "The recipient of the package signed for the delivery.", + "pos": "noun", + "word_frequency": 5596 + }, + { + "word": "rendición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surrender;rendition", + "example_sentence_native": "El ejército exigió la rendición incondicional.", + "example_sentence_english": "The army demanded unconditional surrender.", + "pos": "noun", + "word_frequency": 5597 + }, + { + "word": "resumir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to summarize;to sum up", + "example_sentence_native": "Por favor, ¿puedes resumir los puntos principales?", + "example_sentence_english": "Please, can you summarize the main points?", + "pos": "verb", + "word_frequency": 5598 + }, + { + "word": "seleccionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selected;chosen", + "example_sentence_native": "Los productos seleccionados están en oferta.", + "example_sentence_english": "The selected products are on sale.", + "pos": "adjective", + "word_frequency": 5599 + }, + { + "word": "situacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situation", + "example_sentence_native": "La situación es complicada.", + "example_sentence_english": "The situation is complicated.", + "pos": "noun", + "word_frequency": 5600 + }, + { + "word": "sobrina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "niece", + "example_sentence_native": "Mi sobrina viene a visitarnos.", + "example_sentence_english": "My niece is coming to visit us.", + "pos": "noun", + "word_frequency": 5601 + }, + { + "word": "sometido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjected;submissive", + "example_sentence_native": "El pueblo estaba sometido a un régimen estricto.", + "example_sentence_english": "The people were subjected to a strict regime.", + "pos": "adjective", + "word_frequency": 5602 + }, + { + "word": "subasta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auction", + "example_sentence_native": "Compró el cuadro en una subasta.", + "example_sentence_english": "He bought the painting at an auction.", + "pos": "noun", + "word_frequency": 5605 + }, + { + "word": "sudor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweat", + "example_sentence_native": "El ejercicio me hizo sudar mucho.", + "example_sentence_english": "The exercise made me sweat a lot.", + "pos": "noun", + "word_frequency": 5606 + }, + { + "word": "susto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fright;scare", + "example_sentence_native": "Me dio un gran susto.", + "example_sentence_english": "It gave me a big fright.", + "pos": "noun", + "word_frequency": 5607 + }, + { + "word": "sutil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subtle", + "example_sentence_native": "Hizo una observación muy sutil.", + "example_sentence_english": "He made a very subtle observation.", + "pos": "adjective", + "word_frequency": 5608 + }, + { + "word": "tos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cough", + "example_sentence_native": "Tiene una tos persistente.", + "example_sentence_english": "He has a persistent cough.", + "pos": "noun", + "word_frequency": 5609 + }, + { + "word": "umbral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threshold", + "example_sentence_native": "Estaba parado en el umbral de la puerta.", + "example_sentence_english": "He was standing on the threshold of the door.", + "pos": "noun", + "word_frequency": 5610 + }, + { + "word": "verbal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verbal", + "example_sentence_native": "Tuvimos un acuerdo verbal.", + "example_sentence_english": "We had a verbal agreement.", + "pos": "adjective", + "word_frequency": 5611 + }, + { + "word": "abandonado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abandoned", + "example_sentence_native": "Encontraron un perro abandonado.", + "example_sentence_english": "They found an abandoned dog.", + "pos": "adjective", + "word_frequency": 5614 + }, + { + "word": "aceptado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accepted", + "example_sentence_native": "Su propuesta fue aceptada.", + "example_sentence_english": "His proposal was accepted.", + "pos": "adjective", + "word_frequency": 5615 + }, + { + "word": "adelanto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advance;progress", + "example_sentence_native": "Hubo un gran adelanto en la investigación.", + "example_sentence_english": "There was a great advance in the research.", + "pos": "noun", + "word_frequency": 5616 + }, + { + "word": "agresivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aggressive", + "example_sentence_native": "El perro parecía muy agresivo.", + "example_sentence_english": "The dog seemed very aggressive.", + "pos": "adjective", + "word_frequency": 5617 + }, + { + "word": "ajo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garlic", + "example_sentence_native": "Me encanta el sabor del ajo.", + "example_sentence_english": "I love the taste of garlic.", + "pos": "noun", + "word_frequency": 5619 + }, + { + "word": "amargo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bitter", + "example_sentence_native": "El café estaba muy amargo.", + "example_sentence_english": "The coffee was very bitter.", + "pos": "adjective", + "word_frequency": 5620 + }, + { + "word": "amo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "master;owner", + "example_sentence_native": "El amo de la casa nos recibió.", + "example_sentence_english": "The master of the house received us.", + "pos": "noun", + "word_frequency": 5621 + }, + { + "word": "animado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lively;animated", + "example_sentence_native": "La fiesta estaba muy animada.", + "example_sentence_english": "The party was very lively.", + "pos": "adjective", + "word_frequency": 5623 + }, + { + "word": "antemano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beforehand;in advance", + "example_sentence_native": "Gracias de antemano por tu ayuda.", + "example_sentence_english": "Thanks in advance for your help.", + "pos": "adverb", + "word_frequency": 5625 + }, + { + "word": "aspiración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspiration", + "example_sentence_native": "Su aspiración es ser médico.", + "example_sentence_english": "His aspiration is to be a doctor.", + "pos": "noun", + "word_frequency": 5626 + }, + { + "word": "asqueroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusting", + "example_sentence_native": "Esa comida huele asqueroso.", + "example_sentence_english": "That food smells disgusting.", + "pos": "adjective", + "word_frequency": 5627 + }, + { + "word": "asustar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to scare", + "example_sentence_native": "No quiero asustarte.", + "example_sentence_english": "I don't want to scare you.", + "pos": "verb", + "word_frequency": 5628 + }, + { + "word": "atlas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atlas", + "example_sentence_native": "Consultó el atlas para encontrar el país.", + "example_sentence_english": "He consulted the atlas to find the country.", + "pos": "noun", + "word_frequency": 5629 + }, + { + "word": "bodega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winery;cellar;grocery store", + "example_sentence_native": "Visitamos una bodega de vinos.", + "example_sentence_english": "We visited a wine cellar.", + "pos": "noun", + "word_frequency": 5631 + }, + { + "word": "bombardeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bombing;bombardment", + "example_sentence_native": "La ciudad sufrió un intenso bombardeo.", + "example_sentence_english": "The city suffered an intense bombardment.", + "pos": "noun", + "word_frequency": 5632 + }, + { + "word": "calentamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warming;heating", + "example_sentence_native": "El calentamiento global es un problema serio.", + "example_sentence_english": "Global warming is a serious problem.", + "pos": "noun", + "word_frequency": 5633 + }, + { + "word": "caravana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caravan;trailer", + "example_sentence_native": "Viajaron en una caravana por el desierto.", + "example_sentence_english": "They traveled in a caravan through the desert.", + "pos": "noun", + "word_frequency": 5634 + }, + { + "word": "casero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homemade", + "example_sentence_native": "Me gusta la comida casera.", + "example_sentence_english": "I like homemade food.", + "pos": "adjective", + "word_frequency": 5635 + }, + { + "word": "colono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settler;colonist", + "example_sentence_native": "Los primeros colonos llegaron en barco.", + "example_sentence_english": "The first settlers arrived by ship.", + "pos": "noun", + "word_frequency": 5636 + }, + { + "word": "compensar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate", + "example_sentence_native": "Necesitamos compensar las pérdidas.", + "example_sentence_english": "We need to compensate for the losses.", + "pos": "verb", + "word_frequency": 5637 + }, + { + "word": "confundido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "confused", + "example_sentence_native": "Estoy un poco confundido con las instrucciones.", + "example_sentence_english": "I'm a bit confused with the instructions.", + "pos": "adjective", + "word_frequency": 5638 + }, + { + "word": "consolidación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consolidation", + "example_sentence_native": "La empresa busca la consolidación en el mercado.", + "example_sentence_english": "The company seeks consolidation in the market.", + "pos": "noun", + "word_frequency": 5639 + }, + { + "word": "contradicción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contradiction", + "example_sentence_native": "Hay una clara contradicción en sus argumentos.", + "example_sentence_english": "There is a clear contradiction in his arguments.", + "pos": "noun", + "word_frequency": 5640 + }, + { + "word": "creído", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceited", + "example_sentence_native": "Es una persona muy creída y no escucha a nadie.", + "example_sentence_english": "He is a very conceited person and doesn't listen to anyone.", + "pos": "adjective", + "word_frequency": 5641 + }, + { + "word": "cuñado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brother-in-law", + "example_sentence_native": "Mi cuñado viene a cenar esta noche.", + "example_sentence_english": "My brother-in-law is coming for dinner tonight.", + "pos": "noun", + "word_frequency": 5642 + }, + { + "word": "cédula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identity card", + "example_sentence_native": "Necesitas tu cédula para votar.", + "example_sentence_english": "You need your identity card to vote.", + "pos": "noun", + "word_frequency": 5643 + }, + { + "word": "decadencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decadence", + "example_sentence_native": "El imperio entró en un período de decadencia.", + "example_sentence_english": "The empire entered a period of decadence.", + "pos": "noun", + "word_frequency": 5644 + }, + { + "word": "definido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defined", + "example_sentence_native": "Tenemos un plan bien definido para el proyecto.", + "example_sentence_english": "We have a well-defined plan for the project.", + "pos": "adjective", + "word_frequency": 5645 + }, + { + "word": "derrotar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defeat", + "example_sentence_native": "El ejército logró derrotar al enemigo.", + "example_sentence_english": "The army managed to defeat the enemy.", + "pos": "verb", + "word_frequency": 5646 + }, + { + "word": "difícilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardly", + "example_sentence_native": "Difícilmente podremos terminar a tiempo.", + "example_sentence_english": "We will hardly be able to finish on time.", + "pos": "adverb", + "word_frequency": 5648 + }, + { + "word": "educacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "education", + "example_sentence_native": "La educación es fundamental para el futuro.", + "example_sentence_english": "Education is fundamental for the future.", + "pos": "noun", + "word_frequency": 5650 + }, + { + "word": "efectuar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry out", + "example_sentence_native": "Debemos efectuar los cambios necesarios.", + "example_sentence_english": "We must carry out the necessary changes.", + "pos": "verb", + "word_frequency": 5651 + }, + { + "word": "elefante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elephant", + "example_sentence_native": "Vimos un elefante en el zoológico.", + "example_sentence_english": "We saw an elephant at the zoo.", + "pos": "noun", + "word_frequency": 5652 + }, + { + "word": "enormemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enormously", + "example_sentence_native": "Su ayuda fue enormemente apreciada.", + "example_sentence_english": "Your help was enormously appreciated.", + "pos": "adverb", + "word_frequency": 5653 + }, + { + "word": "escuadrón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squadron", + "example_sentence_native": "Un escuadrón de aviones sobrevoló la ciudad.", + "example_sentence_english": "A squadron of planes flew over the city.", + "pos": "noun", + "word_frequency": 5654 + }, + { + "word": "examinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to examine", + "example_sentence_native": "El médico va a examinar al paciente.", + "example_sentence_english": "The doctor is going to examine the patient.", + "pos": "verb", + "word_frequency": 5655 + }, + { + "word": "expresamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expressly", + "example_sentence_native": "Me pidió expresamente que no lo hiciera.", + "example_sentence_english": "He expressly asked me not to do it.", + "pos": "adverb", + "word_frequency": 5656 + }, + { + "word": "extracto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extract", + "example_sentence_native": "Leí un extracto del libro.", + "example_sentence_english": "I read an extract from the book.", + "pos": "noun", + "word_frequency": 5657 + }, + { + "word": "frágil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fragile", + "example_sentence_native": "Esta caja contiene objetos frágiles.", + "example_sentence_english": "This box contains fragile objects.", + "pos": "adjective", + "word_frequency": 5658 + }, + { + "word": "furioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furious", + "example_sentence_native": "Estaba furioso por la noticia.", + "example_sentence_english": "He was furious about the news.", + "pos": "adjective", + "word_frequency": 5659 + }, + { + "word": "genocidio", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "genocide", + "example_sentence_native": "La historia registra actos de genocidio.", + "example_sentence_english": "History records acts of genocide.", + "pos": "noun", + "word_frequency": 5661 + }, + { + "word": "hockey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hockey", + "example_sentence_native": "Juegan al hockey sobre hielo.", + "example_sentence_english": "They play ice hockey.", + "pos": "noun", + "word_frequency": 5665 + }, + { + "word": "hongo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mushroom", + "example_sentence_native": "Encontré un hongo grande en el bosque.", + "example_sentence_english": "I found a large mushroom in the forest.", + "pos": "noun", + "word_frequency": 5667 + }, + { + "word": "inconveniente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inconvenience", + "example_sentence_native": "El único inconveniente es la distancia.", + "example_sentence_english": "The only inconvenience is the distance.", + "pos": "noun", + "word_frequency": 5668 + }, + { + "word": "increíblemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incredibly", + "example_sentence_native": "La vista era increíblemente hermosa.", + "example_sentence_english": "The view was incredibly beautiful.", + "pos": "adverb", + "word_frequency": 5669 + }, + { + "word": "indicación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indication", + "example_sentence_native": "Sigue las indicaciones del mapa.", + "example_sentence_english": "Follow the indications on the map.", + "pos": "noun", + "word_frequency": 5670 + }, + { + "word": "inestabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instability", + "example_sentence_native": "La inestabilidad política afecta la economía.", + "example_sentence_english": "Political instability affects the economy.", + "pos": "noun", + "word_frequency": 5671 + }, + { + "word": "intérprete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpreter", + "example_sentence_native": "Necesitamos un intérprete para la reunión.", + "example_sentence_english": "We need an interpreter for the meeting.", + "pos": "noun", + "word_frequency": 5672 + }, + { + "word": "inyección", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injection", + "example_sentence_native": "El enfermero le puso una inyección.", + "example_sentence_english": "The nurse gave him an injection.", + "pos": "noun", + "word_frequency": 5673 + }, + { + "word": "jerarquía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hierarchy", + "example_sentence_native": "Existe una clara jerarquía en la empresa.", + "example_sentence_english": "There is a clear hierarchy in the company.", + "pos": "noun", + "word_frequency": 5674 + }, + { + "word": "jubilado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retiree", + "example_sentence_native": "Mi abuelo es un jubilado feliz.", + "example_sentence_english": "My grandfather is a happy retiree.", + "pos": "noun", + "word_frequency": 5675 + }, + { + "word": "kit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kit", + "example_sentence_native": "Compramos un kit de primeros auxilios.", + "example_sentence_english": "We bought a first aid kit.", + "pos": "noun", + "word_frequency": 5677 + }, + { + "word": "llevado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carried", + "example_sentence_native": "El paquete fue llevado a la oficina.", + "example_sentence_english": "The package was carried to the office.", + "pos": "adjective", + "word_frequency": 5681 + }, + { + "word": "llover", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to rain", + "example_sentence_native": "Va a llover esta tarde.", + "example_sentence_english": "It's going to rain this afternoon.", + "pos": "verb", + "word_frequency": 5682 + }, + { + "word": "lotería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lottery", + "example_sentence_native": "Ganó la lotería el año pasado.", + "example_sentence_english": "He won the lottery last year.", + "pos": "noun", + "word_frequency": 5683 + }, + { + "word": "malestar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discomfort", + "example_sentence_native": "Sentía un malestar general después de la comida.", + "example_sentence_english": "He felt a general discomfort after the meal.", + "pos": "noun", + "word_frequency": 5684 + }, + { + "word": "mansión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mansion", + "example_sentence_native": "Viven en una mansión antigua en las afueras.", + "example_sentence_english": "They live in an old mansion on the outskirts.", + "pos": "noun", + "word_frequency": 5685 + }, + { + "word": "maquina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "machine", + "example_sentence_native": "La máquina de café está estropeada.", + "example_sentence_english": "The coffee machine is broken.", + "pos": "noun", + "word_frequency": 5686 + }, + { + "word": "micrófono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "example_sentence_native": "Por favor, habla más cerca del micrófono.", + "example_sentence_english": "Please speak closer to the microphone.", + "pos": "noun", + "word_frequency": 5687 + }, + { + "word": "montado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mounted", + "example_sentence_native": "El cuadro ya está montado en la pared.", + "example_sentence_english": "The painting is already mounted on the wall.", + "pos": "adjective", + "word_frequency": 5689 + }, + { + "word": "movida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activity", + "example_sentence_native": "Hay mucha movida en el centro los fines de semana.", + "example_sentence_english": "There's a lot of activity in the city center on weekends.", + "pos": "noun", + "word_frequency": 5690 + }, + { + "word": "narrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to narrate", + "example_sentence_native": "El abuelo solía narrar historias fascinantes.", + "example_sentence_english": "Grandfather used to narrate fascinating stories.", + "pos": "verb", + "word_frequency": 5693 + }, + { + "word": "negación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "denial", + "example_sentence_native": "Su respuesta fue una clara negación.", + "example_sentence_english": "His answer was a clear denial.", + "pos": "noun", + "word_frequency": 5694 + }, + { + "word": "nomás", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only", + "example_sentence_native": "Quería nomás un café.", + "example_sentence_english": "I just wanted a coffee.", + "pos": "adverb", + "word_frequency": 5695 + }, + { + "word": "oido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ear", + "example_sentence_native": "Me duele el oído derecho.", + "example_sentence_english": "My right ear hurts.", + "pos": "noun", + "word_frequency": 5696 + }, + { + "word": "pañuelo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handkerchief", + "example_sentence_native": "Llevaba un pañuelo de seda al cuello.", + "example_sentence_english": "She wore a silk scarf around her neck.", + "pos": "noun", + "word_frequency": 5700 + }, + { + "word": "perla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pearl", + "example_sentence_native": "El collar tiene perlas auténticas.", + "example_sentence_english": "The necklace has authentic pearls.", + "pos": "noun", + "word_frequency": 5701 + }, + { + "word": "permanentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanently", + "example_sentence_native": "La tienda está permanentemente cerrada.", + "example_sentence_english": "The store is permanently closed.", + "pos": "adverb", + "word_frequency": 5702 + }, + { + "word": "polaco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Polish", + "example_sentence_native": "Habla polaco con fluidez.", + "example_sentence_english": "He speaks Polish fluently.", + "pos": "adjective", + "word_frequency": 5703 + }, + { + "word": "preliminar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preliminary", + "example_sentence_native": "Se realizó una investigación preliminar.", + "example_sentence_english": "A preliminary investigation was carried out.", + "pos": "adjective", + "word_frequency": 5704 + }, + { + "word": "premium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premium", + "example_sentence_native": "Ofrecen un servicio premium a sus clientes.", + "example_sentence_english": "They offer a premium service to their clients.", + "pos": "adjective", + "word_frequency": 5705 + }, + { + "word": "previsto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expected", + "example_sentence_native": "Los resultados fueron mejores de lo previsto.", + "example_sentence_english": "The results were better than expected.", + "pos": "adjective", + "word_frequency": 5706 + }, + { + "word": "radicar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reside", + "example_sentence_native": "El problema radica en la falta de comunicación.", + "example_sentence_english": "The problem lies in the lack of communication.", + "pos": "verb", + "word_frequency": 5708 + }, + { + "word": "razonamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasoning", + "example_sentence_native": "Su razonamiento era lógico y claro.", + "example_sentence_english": "His reasoning was logical and clear.", + "pos": "noun", + "word_frequency": 5709 + }, + { + "word": "recogido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tied up", + "example_sentence_native": "Llevaba el pelo recogido en una coleta.", + "example_sentence_english": "She wore her hair tied up in a ponytail.", + "pos": "adjective", + "word_frequency": 5710 + }, + { + "word": "reconstruir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconstruct", + "example_sentence_native": "Tuvieron que reconstruir el edificio después del terremoto.", + "example_sentence_english": "They had to rebuild the building after the earthquake.", + "pos": "verb", + "word_frequency": 5711 + }, + { + "word": "renovable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewable", + "example_sentence_native": "Las energías renovables son el futuro.", + "example_sentence_english": "Renewable energies are the future.", + "pos": "adjective", + "word_frequency": 5712 + }, + { + "word": "requerimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "requirement", + "example_sentence_native": "Cumplió con todos los requerimientos del puesto.", + "example_sentence_english": "He met all the requirements for the position.", + "pos": "noun", + "word_frequency": 5713 + }, + { + "word": "resurrección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resurrection", + "example_sentence_native": "La resurrección de Lázaro es un milagro bíblico.", + "example_sentence_english": "The resurrection of Lazarus is a biblical miracle.", + "pos": "noun", + "word_frequency": 5714 + }, + { + "word": "rigor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rigor", + "example_sentence_native": "El estudio se realizó con gran rigor científico.", + "example_sentence_english": "The study was conducted with great scientific rigor.", + "pos": "noun", + "word_frequency": 5715 + }, + { + "word": "severo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severe", + "example_sentence_native": "Recibió una advertencia severa.", + "example_sentence_english": "He received a severe warning.", + "pos": "adjective", + "word_frequency": 5716 + }, + { + "word": "siembra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sowing", + "example_sentence_native": "La siembra del maíz se hace en primavera.", + "example_sentence_english": "Corn planting is done in spring.", + "pos": "noun", + "word_frequency": 5717 + }, + { + "word": "sumado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "added;summed up", + "example_sentence_native": "El total sumado de los gastos es muy alto.", + "example_sentence_english": "The total added expenses are very high.", + "pos": "adjective", + "word_frequency": 5721 + }, + { + "word": "terraza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrace;patio", + "example_sentence_native": "Nos sentamos en la terraza para cenar.", + "example_sentence_english": "We sat on the terrace for dinner.", + "pos": "noun", + "word_frequency": 5722 + }, + { + "word": "timbre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doorbell;stamp;tone", + "example_sentence_native": "Tocó el timbre pero nadie abrió la puerta.", + "example_sentence_english": "He rang the doorbell but no one opened the door.", + "pos": "noun", + "word_frequency": 5723 + }, + { + "word": "toalla", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "towel", + "example_sentence_native": "Necesito una toalla limpia para secarme.", + "example_sentence_english": "I need a clean towel to dry myself.", + "pos": "noun", + "word_frequency": 5724 + }, + { + "word": "trágico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tragic", + "example_sentence_native": "Fue un final trágico para la historia.", + "example_sentence_english": "It was a tragic end to the story.", + "pos": "adjective", + "word_frequency": 5725 + }, + { + "word": "verguenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shame;embarrassment", + "example_sentence_native": "Sentí mucha vergüenza después de lo que pasó.", + "example_sentence_english": "I felt a lot of shame after what happened.", + "pos": "noun", + "word_frequency": 5726 + }, + { + "word": "zapata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shoe (part of a brake);plinth", + "example_sentence_native": "La zapata del freno necesita ser reemplazada.", + "example_sentence_english": "The brake shoe needs to be replaced.", + "pos": "noun", + "word_frequency": 5727 + }, + { + "word": "ético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethical", + "example_sentence_native": "Es importante actuar de manera ética en los negocios.", + "example_sentence_english": "It's important to act ethically in business.", + "pos": "adjective", + "word_frequency": 5728 + }, + { + "word": "activar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to activate;to enable", + "example_sentence_native": "Debes activar tu cuenta antes de usarla.", + "example_sentence_english": "You must activate your account before using it.", + "pos": "verb", + "word_frequency": 5731 + }, + { + "word": "aerolínea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airline", + "example_sentence_native": "La aerolínea canceló nuestro vuelo.", + "example_sentence_english": "The airline canceled our flight.", + "pos": "noun", + "word_frequency": 5732 + }, + { + "word": "afán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eagerness;zeal;effort", + "example_sentence_native": "Trabaja con gran afán para terminar el proyecto.", + "example_sentence_english": "He works with great eagerness to finish the project.", + "pos": "noun", + "word_frequency": 5733 + }, + { + "word": "antepasado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestor", + "example_sentence_native": "Mis antepasados vinieron de España.", + "example_sentence_english": "My ancestors came from Spain.", + "pos": "noun", + "word_frequency": 5735 + }, + { + "word": "bacteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bacterium;bacteria", + "example_sentence_native": "Algunas bacterias son beneficiosas para la salud.", + "example_sentence_english": "Some bacteria are beneficial for health.", + "pos": "noun", + "word_frequency": 5737 + }, + { + "word": "bicho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bug;insect;creature", + "example_sentence_native": "Había un bicho raro en la pared.", + "example_sentence_english": "There was a strange bug on the wall.", + "pos": "noun", + "word_frequency": 5738 + }, + { + "word": "billón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billion (US);trillion (UK)", + "example_sentence_native": "La deuda del país asciende a varios billones de euros.", + "example_sentence_english": "The country's debt amounts to several billion euros.", + "pos": "noun", + "word_frequency": 5739 + }, + { + "word": "cheque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "check (bank)", + "example_sentence_native": "Pagué la factura con un cheque.", + "example_sentence_english": "I paid the bill with a check.", + "pos": "noun", + "word_frequency": 5743 + }, + { + "word": "clavo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nail;clove", + "example_sentence_native": "Necesito un martillo y un clavo para colgar el cuadro.", + "example_sentence_english": "I need a hammer and a nail to hang the picture.", + "pos": "noun", + "word_frequency": 5744 + }, + { + "word": "colocación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placement;arrangement;job placement", + "example_sentence_native": "La colocación de los muebles es importante para el feng shui.", + "example_sentence_english": "The placement of the furniture is important for feng shui.", + "pos": "noun", + "word_frequency": 5745 + }, + { + "word": "colonización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonization", + "example_sentence_native": "La colonización de América tuvo un gran impacto.", + "example_sentence_english": "The colonization of America had a great impact.", + "pos": "noun", + "word_frequency": 5746 + }, + { + "word": "complicidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complicity;connivance", + "example_sentence_native": "Hubo una clara complicidad entre los dos.", + "example_sentence_english": "There was clear complicity between the two.", + "pos": "noun", + "word_frequency": 5747 + }, + { + "word": "compositor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composer", + "example_sentence_native": "Beethoven fue un compositor famoso.", + "example_sentence_english": "Beethoven was a famous composer.", + "pos": "noun", + "word_frequency": 5748 + }, + { + "word": "comprendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "understood;included", + "example_sentence_native": "El mensaje fue comprendido por todos.", + "example_sentence_english": "The message was understood by everyone.", + "pos": "adjective", + "word_frequency": 5749 + }, + { + "word": "comprometido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "committed;engaged;compromised", + "example_sentence_native": "Está muy comprometido con su trabajo.", + "example_sentence_english": "He is very committed to his work.", + "pos": "adjective", + "word_frequency": 5750 + }, + { + "word": "condesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countess", + "example_sentence_native": "La condesa asistió al baile de máscaras.", + "example_sentence_english": "The countess attended the masquerade ball.", + "pos": "noun", + "word_frequency": 5751 + }, + { + "word": "crack", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crack;star (person);expert", + "example_sentence_native": "Es un crack en el fútbol.", + "example_sentence_english": "He's a star in soccer.", + "pos": "noun", + "word_frequency": 5753 + }, + { + "word": "cuaderno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "notebook", + "example_sentence_native": "Escribo mis notas en un cuaderno.", + "example_sentence_english": "I write my notes in a notebook.", + "pos": "noun", + "word_frequency": 5754 + }, + { + "word": "cuerno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn", + "example_sentence_native": "El rinoceronte tiene un gran cuerno.", + "example_sentence_english": "The rhinoceros has a large horn.", + "pos": "noun", + "word_frequency": 5755 + }, + { + "word": "cálido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warm;cordial", + "example_sentence_native": "El clima en el Caribe es muy cálido.", + "example_sentence_english": "The climate in the Caribbean is very warm.", + "pos": "adjective", + "word_frequency": 5756 + }, + { + "word": "decepcionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointed", + "example_sentence_native": "Estaba muy decepcionado con los resultados.", + "example_sentence_english": "I was very disappointed with the results.", + "pos": "adjective", + "word_frequency": 5757 + }, + { + "word": "decisivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decisive;crucial", + "example_sentence_native": "Su intervención fue decisiva para el éxito del proyecto.", + "example_sentence_english": "His intervention was decisive for the success of the project.", + "pos": "adjective", + "word_frequency": 5758 + }, + { + "word": "desconocer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to not know;to be unaware of;to disown", + "example_sentence_native": "Desconozco los motivos de su decisión.", + "example_sentence_english": "I don't know the reasons for his decision.", + "pos": "verb", + "word_frequency": 5759 + }, + { + "word": "dragon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dragon", + "example_sentence_native": "El dragón escupió fuego.", + "example_sentence_english": "The dragon breathed fire.", + "pos": "noun", + "word_frequency": 5760 + }, + { + "word": "emocionado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excited;emotional", + "example_sentence_native": "Estaba muy emocionado con la noticia.", + "example_sentence_english": "He was very excited about the news.", + "pos": "adjective", + "word_frequency": 5761 + }, + { + "word": "encabezado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heading;headline", + "example_sentence_native": "El encabezado del artículo era muy llamativo.", + "example_sentence_english": "The heading of the article was very striking.", + "pos": "noun", + "word_frequency": 5762 + }, + { + "word": "enojado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "angry", + "example_sentence_native": "Mi hermano estaba enojado por el retraso.", + "example_sentence_english": "My brother was angry about the delay.", + "pos": "adjective", + "word_frequency": 5763 + }, + { + "word": "enviado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sent;dispatched", + "example_sentence_native": "El paquete enviado llegó a tiempo.", + "example_sentence_english": "The sent package arrived on time.", + "pos": "adjective", + "word_frequency": 5764 + }, + { + "word": "epidemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epidemic", + "example_sentence_native": "La epidemia se extendió rápidamente.", + "example_sentence_english": "The epidemic spread rapidly.", + "pos": "noun", + "word_frequency": 5765 + }, + { + "word": "equivoco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding;mistake", + "example_sentence_native": "Hubo un equívoco en la comunicación.", + "example_sentence_english": "There was a misunderstanding in the communication.", + "pos": "noun", + "word_frequency": 5766 + }, + { + "word": "especulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculation", + "example_sentence_native": "La especulación sobre el futuro es constante.", + "example_sentence_english": "Speculation about the future is constant.", + "pos": "noun", + "word_frequency": 5767 + }, + { + "word": "fallado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "failed;missed", + "example_sentence_native": "El intento fallado no lo desanimó.", + "example_sentence_english": "The failed attempt did not discourage him.", + "pos": "adjective", + "word_frequency": 5770 + }, + { + "word": "farsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farce;sham", + "example_sentence_native": "Toda la situación fue una farsa.", + "example_sentence_english": "The whole situation was a farce.", + "pos": "noun", + "word_frequency": 5771 + }, + { + "word": "fascismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascism", + "example_sentence_native": "El fascismo es una ideología política.", + "example_sentence_english": "Fascism is a political ideology.", + "pos": "noun", + "word_frequency": 5772 + }, + { + "word": "felicitar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to congratulate", + "example_sentence_native": "Quiero felicitarte por tu éxito.", + "example_sentence_english": "I want to congratulate you on your success.", + "pos": "verb", + "word_frequency": 5773 + }, + { + "word": "fingir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pretend;to feign", + "example_sentence_native": "No tienes que fingir que estás bien.", + "example_sentence_english": "You don't have to pretend you're okay.", + "pos": "verb", + "word_frequency": 5774 + }, + { + "word": "forzar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to force;to compel", + "example_sentence_native": "No puedes forzar a nadie a hacer algo.", + "example_sentence_english": "You cannot force anyone to do something.", + "pos": "verb", + "word_frequency": 5775 + }, + { + "word": "fracasado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "failed;unsuccessful", + "example_sentence_native": "Se sintió un fracasado después de perder.", + "example_sentence_english": "He felt like a failure after losing.", + "pos": "adjective", + "word_frequency": 5776 + }, + { + "word": "fray", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friar;brother (religious title)", + "example_sentence_native": "Fray Luis de León fue un poeta.", + "example_sentence_english": "Friar Luis de León was a poet.", + "pos": "noun", + "word_frequency": 5777 + }, + { + "word": "frito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fried", + "example_sentence_native": "Me encantan las patatas fritas.", + "example_sentence_english": "I love fried potatoes.", + "pos": "adjective", + "word_frequency": 5778 + }, + { + "word": "gramática", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grammar", + "example_sentence_native": "La gramática española es compleja.", + "example_sentence_english": "Spanish grammar is complex.", + "pos": "noun", + "word_frequency": 5781 + }, + { + "word": "hallazgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finding;discovery", + "example_sentence_native": "El hallazgo arqueológico fue importante.", + "example_sentence_english": "The archaeological finding was important.", + "pos": "noun", + "word_frequency": 5782 + }, + { + "word": "homosexualidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homosexuality", + "example_sentence_native": "La homosexualidad es una orientación sexual.", + "example_sentence_english": "Homosexuality is a sexual orientation.", + "pos": "noun", + "word_frequency": 5784 + }, + { + "word": "interrupción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interruption", + "example_sentence_native": "Hubo una interrupción en la señal.", + "example_sentence_english": "There was an interruption in the signal.", + "pos": "noun", + "word_frequency": 5787 + }, + { + "word": "lesbiana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesbian", + "example_sentence_native": "Ella se identifica como lesbiana.", + "example_sentence_english": "She identifies as lesbian.", + "pos": "noun", + "word_frequency": 5790 + }, + { + "word": "lápiz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pencil", + "example_sentence_native": "Necesito un lápiz para escribir.", + "example_sentence_english": "I need a pencil to write.", + "pos": "noun", + "word_frequency": 5791 + }, + { + "word": "mandatario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader;head of state", + "example_sentence_native": "El mandatario dio un discurso.", + "example_sentence_english": "The leader gave a speech.", + "pos": "noun", + "word_frequency": 5792 + }, + { + "word": "modernización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernization", + "example_sentence_native": "La modernización del país es necesaria.", + "example_sentence_english": "The modernization of the country is necessary.", + "pos": "noun", + "word_frequency": 5795 + }, + { + "word": "monje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monk", + "example_sentence_native": "El monje vivía en el monasterio.", + "example_sentence_english": "The monk lived in the monastery.", + "pos": "noun", + "word_frequency": 5796 + }, + { + "word": "multimedia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multimedia", + "example_sentence_native": "El proyecto incluye elementos multimedia.", + "example_sentence_english": "The project includes multimedia elements.", + "pos": "noun", + "word_frequency": 5797 + }, + { + "word": "negado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denied;refused;inept", + "example_sentence_native": "Es un negado para las matemáticas.", + "example_sentence_english": "He is inept at mathematics.", + "pos": "adjective", + "word_frequency": 5798 + }, + { + "word": "poético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poetic", + "example_sentence_native": "Su descripción del paisaje era muy poética.", + "example_sentence_english": "His description of the landscape was very poetic.", + "pos": "adjective", + "word_frequency": 5801 + }, + { + "word": "precaución", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caution", + "example_sentence_native": "Se recomienda precaución al conducir en la nieve.", + "example_sentence_english": "Caution is recommended when driving in the snow.", + "pos": "noun", + "word_frequency": 5802 + }, + { + "word": "programado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programmed;scheduled", + "example_sentence_native": "El evento está programado para el próximo mes.", + "example_sentence_english": "The event is scheduled for next month.", + "pos": "adjective", + "word_frequency": 5803 + }, + { + "word": "radar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radar", + "example_sentence_native": "El barco fue detectado por el radar.", + "example_sentence_english": "The ship was detected by radar.", + "pos": "noun", + "word_frequency": 5805 + }, + { + "word": "recuento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recount;tally", + "example_sentence_native": "Se solicitó un recuento de los votos.", + "example_sentence_english": "A recount of the votes was requested.", + "pos": "noun", + "word_frequency": 5807 + }, + { + "word": "rehén", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostage", + "example_sentence_native": "El rehén fue liberado después de las negociaciones.", + "example_sentence_english": "The hostage was released after negotiations.", + "pos": "noun", + "word_frequency": 5808 + }, + { + "word": "repetición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repetition", + "example_sentence_native": "La repetición es clave para el aprendizaje.", + "example_sentence_english": "Repetition is key for learning.", + "pos": "noun", + "word_frequency": 5809 + }, + { + "word": "silvestre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wild;sylvester", + "example_sentence_native": "En el bosque crecen muchas flores silvestres.", + "example_sentence_english": "Many wild flowers grow in the forest.", + "pos": "adjective", + "word_frequency": 5813 + }, + { + "word": "superioridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superiority", + "example_sentence_native": "Demostró su superioridad en el debate.", + "example_sentence_english": "He demonstrated his superiority in the debate.", + "pos": "noun", + "word_frequency": 5816 + }, + { + "word": "tierno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tender;soft;affectionate", + "example_sentence_native": "El cachorro era muy tierno y juguetón.", + "example_sentence_english": "The puppy was very tender and playful.", + "pos": "adjective", + "word_frequency": 5819 + }, + { + "word": "trauma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trauma", + "example_sentence_native": "El accidente le causó un trauma psicológico.", + "example_sentence_english": "The accident caused him psychological trauma.", + "pos": "noun", + "word_frequency": 5820 + }, + { + "word": "tregua", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truce", + "example_sentence_native": "Los bandos acordaron una tregua temporal.", + "example_sentence_english": "The sides agreed to a temporary truce.", + "pos": "noun", + "word_frequency": 5821 + }, + { + "word": "tribuna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stand;platform;tribune", + "example_sentence_native": "El político habló desde la tribuna.", + "example_sentence_english": "The politician spoke from the tribune.", + "pos": "noun", + "word_frequency": 5822 + }, + { + "word": "trofeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trophy", + "example_sentence_native": "El equipo ganó el trofeo de la liga.", + "example_sentence_english": "The team won the league trophy.", + "pos": "noun", + "word_frequency": 5823 + }, + { + "word": "urbanización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urbanization;housing development", + "example_sentence_native": "Compraron una casa en una nueva urbanización.", + "example_sentence_english": "They bought a house in a new housing development.", + "pos": "noun", + "word_frequency": 5824 + }, + { + "word": "yoga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yoga", + "example_sentence_native": "Hago yoga para relajarme y mantenerme en forma.", + "example_sentence_english": "I do yoga to relax and stay in shape.", + "pos": "noun", + "word_frequency": 5826 + }, + { + "word": "abad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abbot", + "example_sentence_native": "El abad de la abadía recibió a los visitantes.", + "example_sentence_english": "The abbot of the abbey received the visitors.", + "pos": "noun", + "word_frequency": 5827 + }, + { + "word": "aproximación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach;approximation", + "example_sentence_native": "La aproximación del avión al aeropuerto fue suave.", + "example_sentence_english": "The plane's approach to the airport was smooth.", + "pos": "noun", + "word_frequency": 5829 + }, + { + "word": "atado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tied;bound", + "example_sentence_native": "El perro estaba atado a un árbol.", + "example_sentence_english": "The dog was tied to a tree.", + "pos": "adjective", + "word_frequency": 5830 + }, + { + "word": "cafe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coffee;café", + "example_sentence_native": "Vamos a tomar un café en la cafetería.", + "example_sentence_english": "Let's have a coffee at the cafe.", + "pos": "noun", + "word_frequency": 5836 + }, + { + "word": "cancer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancer", + "example_sentence_native": "La investigación del cáncer es fundamental.", + "example_sentence_english": "Cancer research is fundamental.", + "pos": "noun", + "word_frequency": 5838 + }, + { + "word": "canon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canon;rule;standard", + "example_sentence_native": "El canon de belleza ha evolucionado con el tiempo.", + "example_sentence_english": "The canon of beauty has evolved over time.", + "pos": "noun", + "word_frequency": 5839 + }, + { + "word": "carpeta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "folder", + "example_sentence_native": "Guarda los documentos importantes en la carpeta azul.", + "example_sentence_english": "Keep the important documents in the blue folder.", + "pos": "noun", + "word_frequency": 5841 + }, + { + "word": "cera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wax", + "example_sentence_native": "Las velas están hechas de cera.", + "example_sentence_english": "Candles are made of wax.", + "pos": "noun", + "word_frequency": 5843 + }, + { + "word": "cercanía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proximity;vicinity", + "example_sentence_native": "Vivimos en la cercanía de la playa.", + "example_sentence_english": "We live in the vicinity of the beach.", + "pos": "noun", + "word_frequency": 5844 + }, + { + "word": "certamen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contest;competition", + "example_sentence_native": "El certamen de poesía fue muy reñido.", + "example_sentence_english": "The poetry contest was very close.", + "pos": "noun", + "word_frequency": 5845 + }, + { + "word": "ciclista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyclist", + "example_sentence_native": "El ciclista ganó la carrera por un segundo.", + "example_sentence_english": "The cyclist won the race by one second.", + "pos": "noun", + "word_frequency": 5847 + }, + { + "word": "codo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elbow", + "example_sentence_native": "Me golpeé el codo contra la mesa.", + "example_sentence_english": "I hit my elbow on the table.", + "pos": "noun", + "word_frequency": 5848 + }, + { + "word": "combinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combined;mixed", + "example_sentence_native": "Ofrecen un menú combinado con bebida y postre.", + "example_sentence_english": "They offer a combined menu with a drink and dessert.", + "pos": "adjective", + "word_frequency": 5849 + }, + { + "word": "compatible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatible", + "example_sentence_native": "Este software no es compatible con tu sistema operativo.", + "example_sentence_english": "This software is not compatible with your operating system.", + "pos": "adjective", + "word_frequency": 5850 + }, + { + "word": "compatriota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatriot", + "example_sentence_native": "Encontró a un compatriota en el extranjero.", + "example_sentence_english": "He found a compatriot abroad.", + "pos": "noun", + "word_frequency": 5851 + }, + { + "word": "conveniencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convenience;suitability", + "example_sentence_native": "Por conveniencia, decidimos reunirnos en el centro.", + "example_sentence_english": "For convenience, we decided to meet in the center.", + "pos": "noun", + "word_frequency": 5852 + }, + { + "word": "cuan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "how (in exclamations or comparisons)", + "example_sentence_native": "Cuan grande es tu amor.", + "example_sentence_english": "How great is your love.", + "pos": "adverb", + "word_frequency": 5853 + }, + { + "word": "cupo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quota;capacity", + "example_sentence_native": "El cupo para el curso ya está completo.", + "example_sentence_english": "The quota for the course is already full.", + "pos": "noun", + "word_frequency": 5854 + }, + { + "word": "debidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duly;properly", + "example_sentence_native": "El formulario debe ser rellenado debidamente.", + "example_sentence_english": "The form must be filled out duly.", + "pos": "adverb", + "word_frequency": 5855 + }, + { + "word": "desarrollador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "developer", + "example_sentence_native": "Necesitamos un desarrollador de software para este proyecto.", + "example_sentence_english": "We need a software developer for this project.", + "pos": "noun", + "word_frequency": 5857 + }, + { + "word": "detective", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detective", + "example_sentence_native": "El detective resolvió el misterio rápidamente.", + "example_sentence_english": "The detective solved the mystery quickly.", + "pos": "noun", + "word_frequency": 5858 + }, + { + "word": "devoción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devotion", + "example_sentence_native": "Mostró gran devoción por su trabajo.", + "example_sentence_english": "He showed great devotion to his work.", + "pos": "noun", + "word_frequency": 5859 + }, + { + "word": "diabetes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diabetes", + "example_sentence_native": "La diabetes es una enfermedad crónica.", + "example_sentence_english": "Diabetes is a chronic disease.", + "pos": "noun", + "word_frequency": 5860 + }, + { + "word": "dormido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "asleep", + "example_sentence_native": "El bebé está dormido en su cuna.", + "example_sentence_english": "The baby is asleep in his crib.", + "pos": "adjective", + "word_frequency": 5862 + }, + { + "word": "galaxia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "galaxy", + "example_sentence_native": "Nuestra galaxia se llama la Vía Láctea.", + "example_sentence_english": "Our galaxy is called the Milky Way.", + "pos": "noun", + "word_frequency": 5863 + }, + { + "word": "gestionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manage;to handle", + "example_sentence_native": "Ella es responsable de gestionar el proyecto.", + "example_sentence_english": "She is responsible for managing the project.", + "pos": "verb", + "word_frequency": 5864 + }, + { + "word": "graduación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graduation", + "example_sentence_native": "Mi hermana asistirá a su graduación el próximo mes.", + "example_sentence_english": "My sister will attend her graduation next month.", + "pos": "noun", + "word_frequency": 5866 + }, + { + "word": "guante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glove", + "example_sentence_native": "Ponte los guantes antes de salir al frío.", + "example_sentence_english": "Put on your gloves before going out in the cold.", + "pos": "noun", + "word_frequency": 5867 + }, + { + "word": "hallado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "found", + "example_sentence_native": "El objeto hallado fue devuelto a su dueño.", + "example_sentence_english": "The found object was returned to its owner.", + "pos": "adjective", + "word_frequency": 5868 + }, + { + "word": "hamburguesa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hamburger", + "example_sentence_native": "Quiero una hamburguesa con queso, por favor.", + "example_sentence_english": "I want a cheeseburger, please.", + "pos": "noun", + "word_frequency": 5869 + }, + { + "word": "hardware", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardware", + "example_sentence_native": "Necesitamos actualizar el hardware de la computadora.", + "example_sentence_english": "We need to update the computer hardware.", + "pos": "noun", + "word_frequency": 5870 + }, + { + "word": "humanitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanitarian", + "example_sentence_native": "La organización ofrece ayuda humanitaria a los refugiados.", + "example_sentence_english": "The organization offers humanitarian aid to refugees.", + "pos": "adjective", + "word_frequency": 5871 + }, + { + "word": "húmedo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humid;damp", + "example_sentence_native": "El clima en la selva es muy húmedo.", + "example_sentence_english": "The climate in the jungle is very humid.", + "pos": "adjective", + "word_frequency": 5872 + }, + { + "word": "incentivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incentive", + "example_sentence_native": "Ofrecieron un incentivo económico para aumentar las ventas.", + "example_sentence_english": "They offered a financial incentive to increase sales.", + "pos": "noun", + "word_frequency": 5873 + }, + { + "word": "inclinación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclination;slope", + "example_sentence_native": "La carretera tiene una fuerte inclinación.", + "example_sentence_english": "The road has a steep inclination.", + "pos": "noun", + "word_frequency": 5874 + }, + { + "word": "indicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indication;sign;clue", + "example_sentence_native": "No hay ningún indicio de que haya estado aquí.", + "example_sentence_english": "There is no indication that he was here.", + "pos": "noun", + "word_frequency": 5875 + }, + { + "word": "indirectamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indirectly", + "example_sentence_native": "Sus acciones lo afectaron indirectamente.", + "example_sentence_english": "His actions affected him indirectly.", + "pos": "adverb", + "word_frequency": 5876 + }, + { + "word": "interfaz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interface", + "example_sentence_native": "La interfaz de usuario es muy intuitiva.", + "example_sentence_english": "The user interface is very intuitive.", + "pos": "noun", + "word_frequency": 5877 + }, + { + "word": "inventado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invented;made up", + "example_sentence_native": "Esa historia es completamente inventada.", + "example_sentence_english": "That story is completely made up.", + "pos": "adjective", + "word_frequency": 5878 + }, + { + "word": "llanto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crying;weeping", + "example_sentence_native": "El llanto del bebé se escuchaba por toda la casa.", + "example_sentence_english": "The baby's crying could be heard throughout the house.", + "pos": "noun", + "word_frequency": 5885 + }, + { + "word": "mariscal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marshal", + "example_sentence_native": "El mariscal dirigió las tropas en la batalla.", + "example_sentence_english": "The marshal led the troops in battle.", + "pos": "noun", + "word_frequency": 5886 + }, + { + "word": "oponer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppose", + "example_sentence_native": "No quiero oponer resistencia a sus planes.", + "example_sentence_english": "I don't want to oppose his plans.", + "pos": "verb", + "word_frequency": 5891 + }, + { + "word": "optimismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimism", + "example_sentence_native": "Su optimismo es contagioso.", + "example_sentence_english": "His optimism is contagious.", + "pos": "noun", + "word_frequency": 5892 + }, + { + "word": "pana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buddy;pal", + "example_sentence_native": "Mi pana me ayudó con la mudanza.", + "example_sentence_english": "My buddy helped me with the move.", + "pos": "noun", + "word_frequency": 5894 + }, + { + "word": "parodia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parody", + "example_sentence_native": "La película era una parodia de los filmes de acción.", + "example_sentence_english": "The movie was a parody of action films.", + "pos": "noun", + "word_frequency": 5895 + }, + { + "word": "piola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cool;chill", + "example_sentence_native": "Esa película estuvo muy piola.", + "example_sentence_english": "That movie was very cool.", + "pos": "adjective", + "word_frequency": 5899 + }, + { + "word": "plaga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plague;pest", + "example_sentence_native": "Una plaga de insectos destruyó la cosecha.", + "example_sentence_english": "A plague of insects destroyed the harvest.", + "pos": "noun", + "word_frequency": 5900 + }, + { + "word": "pronóstico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forecast;prognosis", + "example_sentence_native": "El pronóstico del tiempo anuncia lluvia para mañana.", + "example_sentence_english": "The weather forecast announces rain for tomorrow.", + "pos": "noun", + "word_frequency": 5901 + }, + { + "word": "puramente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purely", + "example_sentence_native": "Fue un error puramente accidental.", + "example_sentence_english": "It was a purely accidental mistake.", + "pos": "adverb", + "word_frequency": 5903 + }, + { + "word": "puño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fist", + "example_sentence_native": "Cerró la mano en un puño.", + "example_sentence_english": "He closed his hand into a fist.", + "pos": "noun", + "word_frequency": 5904 + }, + { + "word": "recurrente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recurrent", + "example_sentence_native": "Es un problema recurrente en esta máquina.", + "example_sentence_english": "It's a recurrent problem with this machine.", + "pos": "adjective", + "word_frequency": 5906 + }, + { + "word": "repertorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repertoire", + "example_sentence_native": "El cantante tiene un amplio repertorio de canciones.", + "example_sentence_english": "The singer has a wide repertoire of songs.", + "pos": "noun", + "word_frequency": 5907 + }, + { + "word": "restaurar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restore", + "example_sentence_native": "Necesitamos restaurar los muebles antiguos.", + "example_sentence_english": "We need to restore the antique furniture.", + "pos": "verb", + "word_frequency": 5908 + }, + { + "word": "roble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oak", + "example_sentence_native": "El mueble está hecho de madera de roble.", + "example_sentence_english": "The furniture is made of oak wood.", + "pos": "noun", + "word_frequency": 5910 + }, + { + "word": "salarial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salary-related;wage-related", + "example_sentence_native": "Hubo un aumento salarial para todos los empleados.", + "example_sentence_english": "There was a salary increase for all employees.", + "pos": "adjective", + "word_frequency": 5911 + }, + { + "word": "siesta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nap;siesta", + "example_sentence_native": "Me gusta tomar una siesta después de comer.", + "example_sentence_english": "I like to take a nap after eating.", + "pos": "noun", + "word_frequency": 5913 + }, + { + "word": "sillón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "armchair", + "example_sentence_native": "Me senté en el sillón para leer un libro.", + "example_sentence_english": "I sat in the armchair to read a book.", + "pos": "noun", + "word_frequency": 5914 + }, + { + "word": "sobreviviente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survivor", + "example_sentence_native": "Fue el único sobreviviente del accidente.", + "example_sentence_english": "He was the only survivor of the accident.", + "pos": "noun", + "word_frequency": 5915 + }, + { + "word": "submarino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "submarine", + "example_sentence_native": "El submarino exploró las profundidades del océano.", + "example_sentence_english": "The submarine explored the depths of the ocean.", + "pos": "noun", + "word_frequency": 5916 + }, + { + "word": "subvención", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsidy;grant", + "example_sentence_native": "El gobierno otorgó una subvención para el proyecto.", + "example_sentence_english": "The government granted a subsidy for the project.", + "pos": "noun", + "word_frequency": 5917 + }, + { + "word": "sujetar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold;to fasten", + "example_sentence_native": "Por favor, sujeta la puerta para que no se cierre.", + "example_sentence_english": "Please hold the door so it doesn't close.", + "pos": "verb", + "word_frequency": 5918 + }, + { + "word": "supresión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suppression;abolition", + "example_sentence_native": "La supresión de impuestos benefició a las empresas.", + "example_sentence_english": "The suppression of taxes benefited the companies.", + "pos": "noun", + "word_frequency": 5919 + }, + { + "word": "sustento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustenance;livelihood", + "example_sentence_native": "El sustento de su familia dependía de su trabajo.", + "example_sentence_english": "The sustenance of his family depended on his work.", + "pos": "noun", + "word_frequency": 5920 + }, + { + "word": "tentación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temptation", + "example_sentence_native": "Resistió la tentación de comer el pastel.", + "example_sentence_english": "He resisted the temptation to eat the cake.", + "pos": "noun", + "word_frequency": 5921 + }, + { + "word": "tirada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "print run;throw", + "example_sentence_native": "La primera tirada del libro fue de mil ejemplares.", + "example_sentence_english": "The first print run of the book was a thousand copies.", + "pos": "noun", + "word_frequency": 5922 + }, + { + "word": "tranquilamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calmly;quietly", + "example_sentence_native": "Puedes sentarte tranquilamente y leer.", + "example_sentence_english": "You can sit calmly and read.", + "pos": "adverb", + "word_frequency": 5923 + }, + { + "word": "uva", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grape", + "example_sentence_native": "Me encanta comer uvas frescas.", + "example_sentence_english": "I love eating fresh grapes.", + "pos": "noun", + "word_frequency": 5924 + }, + { + "word": "vagina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vagina", + "example_sentence_native": "La vagina es parte del sistema reproductor femenino.", + "example_sentence_english": "The vagina is part of the female reproductive system.", + "pos": "noun", + "word_frequency": 5925 + }, + { + "word": "viceversa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vice versa", + "example_sentence_native": "Él la ayuda y viceversa.", + "example_sentence_english": "He helps her and vice versa.", + "pos": "adverb", + "word_frequency": 5927 + }, + { + "word": "aguja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "needle", + "example_sentence_native": "Necesito una aguja e hilo para coser esto.", + "example_sentence_english": "I need a needle and thread to sew this.", + "pos": "noun", + "word_frequency": 5928 + }, + { + "word": "alejarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move away;to distance oneself", + "example_sentence_native": "Es mejor alejarse del peligro.", + "example_sentence_english": "It's better to move away from danger.", + "pos": "verb", + "word_frequency": 5929 + }, + { + "word": "amistoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "friendly", + "example_sentence_native": "Es un perro muy amistoso.", + "example_sentence_english": "He is a very friendly dog.", + "pos": "adjective", + "word_frequency": 5930 + }, + { + "word": "analista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "analyst", + "example_sentence_native": "El analista financiero presentó su informe.", + "example_sentence_english": "The financial analyst presented his report.", + "pos": "noun", + "word_frequency": 5931 + }, + { + "word": "anfitrión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "host", + "example_sentence_native": "El anfitrión nos recibió con una sonrisa.", + "example_sentence_english": "The host greeted us with a smile.", + "pos": "noun", + "word_frequency": 5932 + }, + { + "word": "australiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Australian", + "example_sentence_native": "Mi vecino es australiano.", + "example_sentence_english": "My neighbor is Australian.", + "pos": "adjective", + "word_frequency": 5934 + }, + { + "word": "autorizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authorized", + "example_sentence_native": "Solo el personal autorizado puede entrar.", + "example_sentence_english": "Only authorized personnel can enter.", + "pos": "adjective", + "word_frequency": 5935 + }, + { + "word": "barca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boat;small boat", + "example_sentence_native": "Fuimos de pesca en una pequeña barca.", + "example_sentence_english": "We went fishing in a small boat.", + "pos": "noun", + "word_frequency": 5936 + }, + { + "word": "burbuja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bubble", + "example_sentence_native": "Los niños soplaban burbujas en el parque.", + "example_sentence_english": "The children were blowing bubbles in the park.", + "pos": "noun", + "word_frequency": 5937 + }, + { + "word": "buscador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "search engine;seeker", + "example_sentence_native": "Usa un buscador para encontrar la información.", + "example_sentence_english": "Use a search engine to find the information.", + "pos": "noun", + "word_frequency": 5938 + }, + { + "word": "chabon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guy;dude (Argentine slang)", + "example_sentence_native": "Ese chabón es muy divertido.", + "example_sentence_english": "That guy is very funny.", + "pos": "noun", + "word_frequency": 5940 + }, + { + "word": "citado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cited;quoted", + "example_sentence_native": "El autor citado en el artículo es un experto.", + "example_sentence_english": "The author cited in the article is an expert.", + "pos": "adjective", + "word_frequency": 5941 + }, + { + "word": "combinar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to combine;to match", + "example_sentence_native": "Me gusta combinar colores en mi ropa.", + "example_sentence_english": "I like to combine colors in my clothes.", + "pos": "verb", + "word_frequency": 5943 + }, + { + "word": "comicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "election;poll", + "example_sentence_native": "Los comicios se celebrarán el próximo mes.", + "example_sentence_english": "The elections will be held next month.", + "pos": "noun", + "word_frequency": 5944 + }, + { + "word": "competitividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitiveness", + "example_sentence_native": "La competitividad es clave en el mercado actual.", + "example_sentence_english": "Competitiveness is key in the current market.", + "pos": "noun", + "word_frequency": 5945 + }, + { + "word": "contienda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contest;struggle;dispute", + "example_sentence_native": "La contienda electoral fue muy reñida.", + "example_sentence_english": "The electoral contest was very close.", + "pos": "noun", + "word_frequency": 5946 + }, + { + "word": "cólera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anger;wrath;cholera", + "example_sentence_native": "Sintió una gran cólera al escuchar la noticia.", + "example_sentence_english": "He felt great anger upon hearing the news.", + "pos": "noun", + "word_frequency": 5947 + }, + { + "word": "dedicarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dedicate oneself to;to be engaged in", + "example_sentence_native": "Se dedica a la enseñanza.", + "example_sentence_english": "He dedicates himself to teaching.", + "pos": "verb", + "word_frequency": 5948 + }, + { + "word": "enano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dwarf;gnome", + "example_sentence_native": "El cuento de Blancanieves y los siete enanos.", + "example_sentence_english": "The story of Snow White and the Seven Dwarfs.", + "pos": "noun", + "word_frequency": 5949 + }, + { + "word": "fallar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail;to miss", + "example_sentence_native": "No podemos fallar en este proyecto.", + "example_sentence_english": "We cannot fail in this project.", + "pos": "verb", + "word_frequency": 5951 + }, + { + "word": "fascinante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinating", + "example_sentence_native": "La historia es realmente fascinante.", + "example_sentence_english": "The story is truly fascinating.", + "pos": "adjective", + "word_frequency": 5952 + }, + { + "word": "filme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "film;movie", + "example_sentence_native": "Vimos un filme interesante anoche.", + "example_sentence_english": "We watched an interesting film last night.", + "pos": "noun", + "word_frequency": 5953 + }, + { + "word": "generalizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widespread;generalized", + "example_sentence_native": "La preocupación es generalizada.", + "example_sentence_english": "The concern is widespread.", + "pos": "adjective", + "word_frequency": 5956 + }, + { + "word": "gratitud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gratitude", + "example_sentence_native": "Expresó su gratitud por la ayuda recibida.", + "example_sentence_english": "He expressed his gratitude for the help received.", + "pos": "noun", + "word_frequency": 5957 + }, + { + "word": "grey", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flock;congregation;crowd", + "example_sentence_native": "El pastor cuidaba de su grey.", + "example_sentence_english": "The shepherd took care of his flock.", + "pos": "noun", + "word_frequency": 5958 + }, + { + "word": "honorario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fee;honorary", + "example_sentence_native": "Los honorarios del abogado son muy altos.", + "example_sentence_english": "The lawyer's fees are very high.", + "pos": "noun", + "word_frequency": 5960 + }, + { + "word": "indirecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indirect", + "example_sentence_native": "Su respuesta fue muy indirecta.", + "example_sentence_english": "His answer was very indirect.", + "pos": "adjective", + "word_frequency": 5962 + }, + { + "word": "infante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infant;child", + "example_sentence_native": "El infante dormía plácidamente en su cuna.", + "example_sentence_english": "The infant slept peacefully in his crib.", + "pos": "noun", + "word_frequency": 5963 + }, + { + "word": "infarto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heart attack;infarct", + "example_sentence_native": "Sufrió un infarto mientras corría.", + "example_sentence_english": "He suffered a heart attack while running.", + "pos": "noun", + "word_frequency": 5964 + }, + { + "word": "infeliz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unhappy;unfortunate", + "example_sentence_native": "Se sentía muy infeliz después de la noticia.", + "example_sentence_english": "He felt very unhappy after the news.", + "pos": "adjective", + "word_frequency": 5965 + }, + { + "word": "ladrillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brick", + "example_sentence_native": "La casa está construida con ladrillos rojos.", + "example_sentence_english": "The house is built with red bricks.", + "pos": "noun", + "word_frequency": 5966 + }, + { + "word": "living", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living room", + "example_sentence_native": "Nos reunimos en el living para ver la película.", + "example_sentence_english": "We gathered in the living room to watch the movie.", + "pos": "noun", + "word_frequency": 5967 + }, + { + "word": "llano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat;plain;simple", + "example_sentence_native": "El terreno era completamente llano.", + "example_sentence_english": "The terrain was completely flat.", + "pos": "adjective", + "word_frequency": 5968 + }, + { + "word": "láser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laser", + "example_sentence_native": "Usaron un láser para cortar el metal.", + "example_sentence_english": "They used a laser to cut the metal.", + "pos": "noun", + "word_frequency": 5969 + }, + { + "word": "magistrado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magistrate;judge", + "example_sentence_native": "El magistrado dictó sentencia.", + "example_sentence_english": "The magistrate pronounced sentence.", + "pos": "noun", + "word_frequency": 5970 + }, + { + "word": "maleta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "suitcase", + "example_sentence_native": "Empacó su ropa en la maleta.", + "example_sentence_english": "He packed his clothes in the suitcase.", + "pos": "noun", + "word_frequency": 5971 + }, + { + "word": "manuscrito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manuscript", + "example_sentence_native": "El antiguo manuscrito fue descubierto en la biblioteca.", + "example_sentence_english": "The ancient manuscript was discovered in the library.", + "pos": "noun", + "word_frequency": 5972 + }, + { + "word": "matiz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nuance;shade", + "example_sentence_native": "Hay un matiz importante en su argumento.", + "example_sentence_english": "There is an important nuance in his argument.", + "pos": "noun", + "word_frequency": 5973 + }, + { + "word": "mayoria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "majority", + "example_sentence_native": "La mayoría de la gente estuvo de acuerdo.", + "example_sentence_english": "The majority of people agreed.", + "pos": "noun", + "word_frequency": 5974 + }, + { + "word": "mercantil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial;mercantile", + "example_sentence_native": "El derecho mercantil es complejo.", + "example_sentence_english": "Commercial law is complex.", + "pos": "adjective", + "word_frequency": 5975 + }, + { + "word": "mármol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marble", + "example_sentence_native": "La estatua estaba hecha de mármol blanco.", + "example_sentence_english": "The statue was made of white marble.", + "pos": "noun", + "word_frequency": 5976 + }, + { + "word": "nadar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to swim", + "example_sentence_native": "Me gusta nadar en el mar.", + "example_sentence_english": "I like to swim in the sea.", + "pos": "verb", + "word_frequency": 5977 + }, + { + "word": "narco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug trafficker;drug lord", + "example_sentence_native": "La policía capturó a un conocido narco.", + "example_sentence_english": "The police captured a well-known drug trafficker.", + "pos": "noun", + "word_frequency": 5978 + }, + { + "word": "norteamérica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "North America", + "example_sentence_native": "Canadá es parte de Norteamérica.", + "example_sentence_english": "Canada is part of North America.", + "pos": "noun", + "word_frequency": 5979 + }, + { + "word": "nudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knot;node", + "example_sentence_native": "Hizo un nudo fuerte en la cuerda.", + "example_sentence_english": "He tied a strong knot in the rope.", + "pos": "noun", + "word_frequency": 5980 + }, + { + "word": "ofensivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive", + "example_sentence_native": "Su comentario fue muy ofensivo.", + "example_sentence_english": "His comment was very offensive.", + "pos": "adjective", + "word_frequency": 5981 + }, + { + "word": "ordinario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ordinary;common", + "example_sentence_native": "Es un día ordinario, nada especial.", + "example_sentence_english": "It's an ordinary day, nothing special.", + "pos": "adjective", + "word_frequency": 5982 + }, + { + "word": "percibir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perceive;to sense", + "example_sentence_native": "Pudo percibir un ligero cambio en el ambiente.", + "example_sentence_english": "He could perceive a slight change in the atmosphere.", + "pos": "verb", + "word_frequency": 5983 + }, + { + "word": "procesado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processed;prosecuted", + "example_sentence_native": "Evita los alimentos procesados.", + "example_sentence_english": "Avoid processed foods.", + "pos": "adjective", + "word_frequency": 5984 + }, + { + "word": "procesión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "procession", + "example_sentence_native": "La procesión pasó por la calle principal.", + "example_sentence_english": "The procession passed through the main street.", + "pos": "noun", + "word_frequency": 5985 + }, + { + "word": "pulmón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lung", + "example_sentence_native": "Los pulmones son esenciales para respirar.", + "example_sentence_english": "Lungs are essential for breathing.", + "pos": "noun", + "word_frequency": 5986 + }, + { + "word": "punk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punk (music;subculture)", + "example_sentence_native": "Le gusta la música punk.", + "example_sentence_english": "He likes punk music.", + "pos": "noun", + "word_frequency": 5987 + }, + { + "word": "racial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racial", + "example_sentence_native": "La discriminación racial es inaceptable.", + "example_sentence_english": "Racial discrimination is unacceptable.", + "pos": "adjective", + "word_frequency": 5989 + }, + { + "word": "recomendado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommended", + "example_sentence_native": "Este libro es muy recomendado.", + "example_sentence_english": "This book is highly recommended.", + "pos": "adjective", + "word_frequency": 5990 + }, + { + "word": "res", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cattle;beef", + "example_sentence_native": "Compramos carne de res para la cena.", + "example_sentence_english": "We bought beef for dinner.", + "pos": "noun", + "word_frequency": 5991 + }, + { + "word": "revelado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developed (film);revealed", + "example_sentence_native": "Las fotos ya están reveladas.", + "example_sentence_english": "The photos are already developed.", + "pos": "adjective", + "word_frequency": 5992 + }, + { + "word": "simbólico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolic", + "example_sentence_native": "Fue un gesto simbólico de paz.", + "example_sentence_english": "It was a symbolic gesture of peace.", + "pos": "adjective", + "word_frequency": 5996 + }, + { + "word": "sms", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "SMS;text message", + "example_sentence_native": "Le envié un SMS para confirmar.", + "example_sentence_english": "I sent him an SMS to confirm.", + "pos": "noun", + "word_frequency": 5997 + }, + { + "word": "socialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socially", + "example_sentence_native": "Es una persona muy activa socialmente.", + "example_sentence_english": "He is a very socially active person.", + "pos": "adverb", + "word_frequency": 5998 + }, + { + "word": "sonreír", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smile", + "example_sentence_native": "Le gusta sonreír a la gente.", + "example_sentence_english": "He likes to smile at people.", + "pos": "verb", + "word_frequency": 5999 + }, + { + "word": "stand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stand;booth", + "example_sentence_native": "El stand de libros estaba lleno de gente.", + "example_sentence_english": "The book stand was full of people.", + "pos": "noun", + "word_frequency": 6000 + }, + { + "word": "tortuga", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "turtle", + "example_sentence_native": "La tortuga camina muy lento.", + "example_sentence_english": "The turtle walks very slowly.", + "pos": "noun", + "word_frequency": 6004 + }, + { + "word": "trasladar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move;to transfer", + "example_sentence_native": "Necesitamos trasladar los muebles a la nueva casa.", + "example_sentence_english": "We need to move the furniture to the new house.", + "pos": "verb", + "word_frequency": 6005 + }, + { + "word": "tumor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tumor", + "example_sentence_native": "El médico encontró un tumor en la radiografía.", + "example_sentence_english": "The doctor found a tumor on the X-ray.", + "pos": "noun", + "word_frequency": 6006 + }, + { + "word": "usual", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "usual;common", + "example_sentence_native": "Es usual que llueva en esta época del año.", + "example_sentence_english": "It's usual for it to rain at this time of year.", + "pos": "adjective", + "word_frequency": 6007 + }, + { + "word": "veterano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veteran", + "example_sentence_native": "Mi abuelo es un veterano de guerra.", + "example_sentence_english": "My grandfather is a war veteran.", + "pos": "noun", + "word_frequency": 6008 + }, + { + "word": "órbita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orbit", + "example_sentence_native": "La Tierra gira alrededor del Sol en su órbita.", + "example_sentence_english": "The Earth revolves around the Sun in its orbit.", + "pos": "noun", + "word_frequency": 6011 + }, + { + "word": "ajustar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adjust;to fit", + "example_sentence_native": "Necesito ajustar el reloj.", + "example_sentence_english": "I need to adjust the clock.", + "pos": "verb", + "word_frequency": 6013 + }, + { + "word": "alterar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alter;to change", + "example_sentence_native": "No quiero alterar tus planes.", + "example_sentence_english": "I don't want to alter your plans.", + "pos": "verb", + "word_frequency": 6014 + }, + { + "word": "amoroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loving;affectionate", + "example_sentence_native": "Es una persona muy amorosa con sus hijos.", + "example_sentence_english": "She is a very loving person with her children.", + "pos": "adjective", + "word_frequency": 6015 + }, + { + "word": "apodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nickname", + "example_sentence_native": "Su apodo es \"El Rápido\".", + "example_sentence_english": "His nickname is \"The Fast One\".", + "pos": "noun", + "word_frequency": 6018 + }, + { + "word": "armamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armament;weaponry", + "example_sentence_native": "El país invirtió mucho en armamento.", + "example_sentence_english": "The country invested a lot in armament.", + "pos": "noun", + "word_frequency": 6020 + }, + { + "word": "aroma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aroma;scent", + "example_sentence_native": "El aroma del café recién hecho es delicioso.", + "example_sentence_english": "The aroma of freshly brewed coffee is delicious.", + "pos": "noun", + "word_frequency": 6021 + }, + { + "word": "aterrizaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landing", + "example_sentence_native": "El aterrizaje fue suave.", + "example_sentence_english": "The landing was smooth.", + "pos": "noun", + "word_frequency": 6022 + }, + { + "word": "beneficiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to benefit", + "example_sentence_native": "Esta medida beneficiará a muchas personas.", + "example_sentence_english": "This measure will benefit many people.", + "pos": "verb", + "word_frequency": 6024 + }, + { + "word": "burocracia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucracy", + "example_sentence_native": "La burocracia puede ser muy lenta.", + "example_sentence_english": "Bureaucracy can be very slow.", + "pos": "noun", + "word_frequency": 6025 + }, + { + "word": "cabida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "room;space;capacity", + "example_sentence_native": "No hay cabida para dudas.", + "example_sentence_english": "There is no room for doubt.", + "pos": "noun", + "word_frequency": 6026 + }, + { + "word": "calificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to qualify;to grade", + "example_sentence_native": "El profesor va a calificar los exámenes.", + "example_sentence_english": "The teacher is going to grade the exams.", + "pos": "verb", + "word_frequency": 6028 + }, + { + "word": "clasificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to classify;to sort", + "example_sentence_native": "Necesitamos clasificar estos documentos.", + "example_sentence_english": "We need to classify these documents.", + "pos": "verb", + "word_frequency": 6032 + }, + { + "word": "coherencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherence;consistency", + "example_sentence_native": "Sus argumentos carecen de coherencia.", + "example_sentence_english": "His arguments lack coherence.", + "pos": "noun", + "word_frequency": 6033 + }, + { + "word": "colmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "last straw;height", + "example_sentence_native": "Esto ya es el colmo.", + "example_sentence_english": "This is the last straw.", + "pos": "noun", + "word_frequency": 6034 + }, + { + "word": "comunión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communion;fellowship", + "example_sentence_native": "Tuvieron una comunión espiritual.", + "example_sentence_english": "They had a spiritual communion.", + "pos": "noun", + "word_frequency": 6036 + }, + { + "word": "consolidar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consolidate;to strengthen", + "example_sentence_native": "Necesitamos consolidar nuestra posición en el mercado.", + "example_sentence_english": "We need to consolidate our position in the market.", + "pos": "verb", + "word_frequency": 6037 + }, + { + "word": "césped", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grass;lawn", + "example_sentence_native": "El césped está muy verde.", + "example_sentence_english": "The grass is very green.", + "pos": "noun", + "word_frequency": 6038 + }, + { + "word": "cómico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic;funny", + "example_sentence_native": "La película era muy cómica.", + "example_sentence_english": "The movie was very funny.", + "pos": "adjective", + "word_frequency": 6039 + }, + { + "word": "decirse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tell oneself;to be said", + "example_sentence_native": "Se dice que el tiempo lo cura todo.", + "example_sentence_english": "It is said that time heals everything.", + "pos": "verb", + "word_frequency": 6042 + }, + { + "word": "desayunar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have breakfast", + "example_sentence_native": "Siempre desayuno café y tostadas.", + "example_sentence_english": "I always have coffee and toast for breakfast.", + "pos": "verb", + "word_frequency": 6043 + }, + { + "word": "despedir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dismiss;to fire;to say goodbye", + "example_sentence_native": "La empresa tuvo que despedir a varios empleados.", + "example_sentence_english": "The company had to dismiss several employees.", + "pos": "verb", + "word_frequency": 6044 + }, + { + "word": "devolución", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "return;refund", + "example_sentence_native": "Quiero hacer una devolución de este producto.", + "example_sentence_english": "I want to make a return of this product.", + "pos": "noun", + "word_frequency": 6045 + }, + { + "word": "dilema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dilemma", + "example_sentence_native": "Estamos ante un gran dilema moral.", + "example_sentence_english": "We are facing a great moral dilemma.", + "pos": "noun", + "word_frequency": 6047 + }, + { + "word": "dimisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation", + "example_sentence_native": "El ministro presentó su dimisión.", + "example_sentence_english": "The minister presented his resignation.", + "pos": "noun", + "word_frequency": 6048 + }, + { + "word": "diócesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocese", + "example_sentence_native": "La diócesis abarca varias ciudades.", + "example_sentence_english": "The diocese covers several cities.", + "pos": "noun", + "word_frequency": 6049 + }, + { + "word": "envolver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wrap;to involve", + "example_sentence_native": "Necesito envolver este regalo.", + "example_sentence_english": "I need to wrap this gift.", + "pos": "verb", + "word_frequency": 6052 + }, + { + "word": "equipaje", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luggage;baggage", + "example_sentence_native": "Mi equipaje es demasiado pesado.", + "example_sentence_english": "My luggage is too heavy.", + "pos": "noun", + "word_frequency": 6053 + }, + { + "word": "estimación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estimate;estimation", + "example_sentence_native": "La estimación del costo fue muy precisa.", + "example_sentence_english": "The cost estimate was very accurate.", + "pos": "noun", + "word_frequency": 6055 + }, + { + "word": "expreso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "express;explicit", + "example_sentence_native": "Tomamos el tren expreso a la ciudad.", + "example_sentence_english": "We took the express train to the city.", + "pos": "adjective", + "word_frequency": 6056 + }, + { + "word": "figurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appear;to figure;to be listed", + "example_sentence_native": "Su nombre figura en la lista de invitados.", + "example_sentence_english": "His name appears on the guest list.", + "pos": "verb", + "word_frequency": 6058 + }, + { + "word": "globalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globalization", + "example_sentence_native": "La globalización ha transformado la economía mundial.", + "example_sentence_english": "Globalization has transformed the world economy.", + "pos": "noun", + "word_frequency": 6059 + }, + { + "word": "hipoteca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortgage", + "example_sentence_native": "Necesitamos una hipoteca para comprar la casa.", + "example_sentence_english": "We need a mortgage to buy the house.", + "pos": "noun", + "word_frequency": 6061 + }, + { + "word": "hostil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostile", + "example_sentence_native": "El ambiente en la reunión era muy hostil.", + "example_sentence_english": "The atmosphere at the meeting was very hostile.", + "pos": "adjective", + "word_frequency": 6063 + }, + { + "word": "incumplimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "non-compliance;breach", + "example_sentence_native": "Hubo un incumplimiento del contrato.", + "example_sentence_english": "There was a breach of contract.", + "pos": "noun", + "word_frequency": 6064 + }, + { + "word": "informático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "IT specialist;computer scientist", + "example_sentence_native": "Mi hermano es informático y trabaja en una empresa de software.", + "example_sentence_english": "My brother is an IT specialist and works at a software company.", + "pos": "noun", + "word_frequency": 6065 + }, + { + "word": "infracción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infraction;violation", + "example_sentence_native": "Recibió una multa por una infracción de tráfico.", + "example_sentence_english": "He received a fine for a traffic violation.", + "pos": "noun", + "word_frequency": 6066 + }, + { + "word": "inmobiliaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate agency", + "example_sentence_native": "Contactamos a una inmobiliaria para vender nuestra casa.", + "example_sentence_english": "We contacted a real estate agency to sell our house.", + "pos": "noun", + "word_frequency": 6067 + }, + { + "word": "letal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lethal;fatal", + "example_sentence_native": "La dosis fue letal para el virus.", + "example_sentence_english": "The dose was lethal for the virus.", + "pos": "adjective", + "word_frequency": 6072 + }, + { + "word": "lámpara", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lamp", + "example_sentence_native": "Enciende la lámpara, por favor.", + "example_sentence_english": "Turn on the lamp, please.", + "pos": "noun", + "word_frequency": 6073 + }, + { + "word": "lío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mess;trouble;affair", + "example_sentence_native": "¡Qué lío has montado en la cocina!", + "example_sentence_english": "What a mess you've made in the kitchen!", + "pos": "noun", + "word_frequency": 6074 + }, + { + "word": "marcial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "martial", + "example_sentence_native": "Practica artes marciales desde niño.", + "example_sentence_english": "He has practiced martial arts since he was a child.", + "pos": "adjective", + "word_frequency": 6075 + }, + { + "word": "martillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hammer", + "example_sentence_native": "Necesito un martillo para clavar esto.", + "example_sentence_english": "I need a hammer to nail this.", + "pos": "noun", + "word_frequency": 6076 + }, + { + "word": "mayoritariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mostly;predominantly", + "example_sentence_native": "La población es mayoritariamente joven.", + "example_sentence_english": "The population is mostly young.", + "pos": "adverb", + "word_frequency": 6077 + }, + { + "word": "medición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measurement", + "example_sentence_native": "La medición de la temperatura es crucial.", + "example_sentence_english": "The temperature measurement is crucial.", + "pos": "noun", + "word_frequency": 6078 + }, + { + "word": "mezquita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosque", + "example_sentence_native": "Visitamos una hermosa mezquita en Estambul.", + "example_sentence_english": "We visited a beautiful mosque in Istanbul.", + "pos": "noun", + "word_frequency": 6079 + }, + { + "word": "mixto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed", + "example_sentence_native": "La ensalada mixta es mi favorita.", + "example_sentence_english": "The mixed salad is my favorite.", + "pos": "adjective", + "word_frequency": 6080 + }, + { + "word": "muralla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wall (city wall)", + "example_sentence_native": "La antigua ciudad estaba rodeada por una gran muralla.", + "example_sentence_english": "The ancient city was surrounded by a large wall.", + "pos": "noun", + "word_frequency": 6081 + }, + { + "word": "muscular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscular", + "example_sentence_native": "El atleta tiene un físico muy muscular.", + "example_sentence_english": "The athlete has a very muscular physique.", + "pos": "adjective", + "word_frequency": 6082 + }, + { + "word": "natación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming", + "example_sentence_native": "Me encanta practicar natación en verano.", + "example_sentence_english": "I love practicing swimming in summer.", + "pos": "noun", + "word_frequency": 6083 + }, + { + "word": "ninja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ninja", + "example_sentence_native": "Los niños jugaban a ser ninjas en el parque.", + "example_sentence_english": "The children played at being ninjas in the park.", + "pos": "noun", + "word_frequency": 6086 + }, + { + "word": "notablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notably;remarkably", + "example_sentence_native": "Su rendimiento ha mejorado notablemente este año.", + "example_sentence_english": "His performance has notably improved this year.", + "pos": "adverb", + "word_frequency": 6087 + }, + { + "word": "padrino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godfather;sponsor", + "example_sentence_native": "Mi padrino me regaló un libro por mi cumpleaños.", + "example_sentence_english": "My godfather gave me a book for my birthday.", + "pos": "noun", + "word_frequency": 6090 + }, + { + "word": "pito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whistle;horn", + "example_sentence_native": "El árbitro hizo sonar su pito.", + "example_sentence_english": "The referee blew his whistle.", + "pos": "noun", + "word_frequency": 6093 + }, + { + "word": "podcast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "podcast", + "example_sentence_native": "Escucho un podcast de noticias todas las mañanas.", + "example_sentence_english": "I listen to a news podcast every morning.", + "pos": "noun", + "word_frequency": 6094 + }, + { + "word": "premier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premier;prime minister", + "example_sentence_native": "El premier anunció nuevas medidas económicas.", + "example_sentence_english": "The premier announced new economic measures.", + "pos": "noun", + "word_frequency": 6096 + }, + { + "word": "presionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to press;to push;to pressure", + "example_sentence_native": "Tienes que presionar el botón para encenderlo.", + "example_sentence_english": "You have to press the button to turn it on.", + "pos": "verb", + "word_frequency": 6097 + }, + { + "word": "procedencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "origin;source;provenance", + "example_sentence_native": "La procedencia de este producto es desconocida.", + "example_sentence_english": "The origin of this product is unknown.", + "pos": "noun", + "word_frequency": 6098 + }, + { + "word": "promotor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promoter;developer", + "example_sentence_native": "El promotor del concierto anunció las fechas.", + "example_sentence_english": "The concert promoter announced the dates.", + "pos": "noun", + "word_frequency": 6099 + }, + { + "word": "propiamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "properly;strictly speaking", + "example_sentence_native": "No es propiamente un error, sino una diferencia de opinión.", + "example_sentence_english": "It's not properly an error, but a difference of opinion.", + "pos": "adverb", + "word_frequency": 6100 + }, + { + "word": "restar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to subtract;to remain", + "example_sentence_native": "Si restas dos de cinco, te quedan tres.", + "example_sentence_english": "If you subtract two from five, you are left with three.", + "pos": "verb", + "word_frequency": 6101 + }, + { + "word": "rocío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dew;spray", + "example_sentence_native": "El rocío de la mañana cubría la hierba.", + "example_sentence_english": "The morning dew covered the grass.", + "pos": "noun", + "word_frequency": 6102 + }, + { + "word": "simpatizante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sympathizer;supporter", + "example_sentence_native": "Es un simpatizante del partido político.", + "example_sentence_english": "He is a sympathizer of the political party.", + "pos": "noun", + "word_frequency": 6104 + }, + { + "word": "subtítulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subtitle;caption", + "example_sentence_native": "Prefiero ver películas con subtítulos en español.", + "example_sentence_english": "I prefer to watch movies with Spanish subtitles.", + "pos": "noun", + "word_frequency": 6105 + }, + { + "word": "tarta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cake;tart", + "example_sentence_native": "Comimos una deliciosa tarta de chocolate.", + "example_sentence_english": "We ate a delicious chocolate cake.", + "pos": "noun", + "word_frequency": 6106 + }, + { + "word": "textil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "textile", + "example_sentence_native": "La industria textil es importante en esta región.", + "example_sentence_english": "The textile industry is important in this region.", + "pos": "adjective", + "word_frequency": 6107 + }, + { + "word": "tomado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taken;occupied", + "example_sentence_native": "El asiento ya estaba tomado.", + "example_sentence_english": "The seat was already taken.", + "pos": "adjective", + "word_frequency": 6108 + }, + { + "word": "transportar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transport;to carry", + "example_sentence_native": "Necesitamos transportar los muebles a la nueva casa.", + "example_sentence_english": "We need to transport the furniture to the new house.", + "pos": "verb", + "word_frequency": 6109 + }, + { + "word": "trazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layout;design;tracing", + "example_sentence_native": "El trazado de la nueva carretera es muy eficiente.", + "example_sentence_english": "The layout of the new road is very efficient.", + "pos": "noun", + "word_frequency": 6110 + }, + { + "word": "triángulo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "triangle", + "example_sentence_native": "Dibuja un triángulo en el papel.", + "example_sentence_english": "Draw a triangle on the paper.", + "pos": "noun", + "word_frequency": 6111 + }, + { + "word": "abismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abyss;chasm", + "example_sentence_native": "Miró hacia el abismo con vértigo.", + "example_sentence_english": "He looked into the abyss with vertigo.", + "pos": "noun", + "word_frequency": 6114 + }, + { + "word": "adicionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additionally", + "example_sentence_native": "Adicionalmente, se requiere experiencia previa.", + "example_sentence_english": "Additionally, previous experience is required.", + "pos": "adverb", + "word_frequency": 6115 + }, + { + "word": "admirar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to admire", + "example_sentence_native": "Admiro mucho su trabajo.", + "example_sentence_english": "I greatly admire his work.", + "pos": "verb", + "word_frequency": 6116 + }, + { + "word": "anular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annul;to cancel;to invalidate", + "example_sentence_native": "Tuvimos que anular la reserva del hotel.", + "example_sentence_english": "We had to cancel the hotel reservation.", + "pos": "verb", + "word_frequency": 6119 + }, + { + "word": "audiovisual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audiovisual", + "example_sentence_native": "La presentación audiovisual fue muy informativa.", + "example_sentence_english": "The audiovisual presentation was very informative.", + "pos": "adjective", + "word_frequency": 6120 + }, + { + "word": "bajada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "descent;drop;download", + "example_sentence_native": "La bajada de la montaña fue empinada.", + "example_sentence_english": "The descent from the mountain was steep.", + "pos": "noun", + "word_frequency": 6121 + }, + { + "word": "balanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scale;balance", + "example_sentence_native": "Usamos una balanza para pesar los ingredientes.", + "example_sentence_english": "We use a scale to weigh the ingredients.", + "pos": "noun", + "word_frequency": 6122 + }, + { + "word": "besar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to kiss", + "example_sentence_native": "Le gusta besar a su perro.", + "example_sentence_english": "He likes to kiss his dog.", + "pos": "verb", + "word_frequency": 6123 + }, + { + "word": "bolivariano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Bolivarian", + "example_sentence_native": "El legado bolivariano es importante en la historia de Venezuela.", + "example_sentence_english": "The Bolivarian legacy is important in Venezuela's history.", + "pos": "adjective", + "word_frequency": 6124 + }, + { + "word": "box", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box (container or sport)", + "example_sentence_native": "Guarda los juguetes en el box.", + "example_sentence_english": "Put the toys in the box.", + "pos": "noun", + "word_frequency": 6125 + }, + { + "word": "carnet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ID card;membership card", + "example_sentence_native": "Necesito mi carnet de identidad para entrar.", + "example_sentence_english": "I need my ID card to enter.", + "pos": "noun", + "word_frequency": 6128 + }, + { + "word": "confesar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confess", + "example_sentence_native": "Tuvo que confesar la verdad.", + "example_sentence_english": "He had to confess the truth.", + "pos": "verb", + "word_frequency": 6131 + }, + { + "word": "coral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coral", + "example_sentence_native": "Los arrecifes de coral son muy importantes.", + "example_sentence_english": "Coral reefs are very important.", + "pos": "noun", + "word_frequency": 6132 + }, + { + "word": "coreano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Korean", + "example_sentence_native": "La comida coreana es deliciosa.", + "example_sentence_english": "Korean food is delicious.", + "pos": "adjective", + "word_frequency": 6133 + }, + { + "word": "cuestionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to question;to challenge", + "example_sentence_native": "Es importante cuestionar la información.", + "example_sentence_english": "It's important to question the information.", + "pos": "verb", + "word_frequency": 6134 + }, + { + "word": "decano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dean", + "example_sentence_native": "El decano de la facultad dio un discurso.", + "example_sentence_english": "The dean of the faculty gave a speech.", + "pos": "noun", + "word_frequency": 6137 + }, + { + "word": "derrotado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeated", + "example_sentence_native": "El equipo se sintió derrotado después del partido.", + "example_sentence_english": "The team felt defeated after the game.", + "pos": "adjective", + "word_frequency": 6138 + }, + { + "word": "distribuir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distribute", + "example_sentence_native": "Van a distribuir folletos en la calle.", + "example_sentence_english": "They are going to distribute flyers on the street.", + "pos": "verb", + "word_frequency": 6139 + }, + { + "word": "empatía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empathy", + "example_sentence_native": "La empatía es crucial para entender a los demás.", + "example_sentence_english": "Empathy is crucial for understanding others.", + "pos": "noun", + "word_frequency": 6140 + }, + { + "word": "espuma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foam;froth", + "example_sentence_native": "La cerveza tiene mucha espuma.", + "example_sentence_english": "The beer has a lot of foam.", + "pos": "noun", + "word_frequency": 6141 + }, + { + "word": "explosivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosive", + "example_sentence_native": "Se encontró un artefacto explosivo.", + "example_sentence_english": "An explosive device was found.", + "pos": "noun", + "word_frequency": 6142 + }, + { + "word": "flexible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexible", + "example_sentence_native": "Es importante ser flexible con los horarios.", + "example_sentence_english": "It's important to be flexible with schedules.", + "pos": "adjective", + "word_frequency": 6143 + }, + { + "word": "gallardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gallant;brave", + "example_sentence_native": "El caballero mostró un comportamiento gallardo.", + "example_sentence_english": "The knight showed gallant behavior.", + "pos": "adjective", + "word_frequency": 6144 + }, + { + "word": "gilipollas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idiot;jerk (vulgar)", + "example_sentence_native": "No seas gilipollas, por favor.", + "example_sentence_english": "Don't be an idiot, please.", + "pos": "noun", + "word_frequency": 6145 + }, + { + "word": "gorra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cap", + "example_sentence_native": "Llevaba una gorra azul.", + "example_sentence_english": "He was wearing a blue cap.", + "pos": "noun", + "word_frequency": 6146 + }, + { + "word": "identificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identified", + "example_sentence_native": "El sospechoso fue identificado por la policía.", + "example_sentence_english": "The suspect was identified by the police.", + "pos": "adjective", + "word_frequency": 6147 + }, + { + "word": "ingenio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingenuity;wit", + "example_sentence_native": "Su ingenio le ayudó a resolver el problema.", + "example_sentence_english": "His ingenuity helped him solve the problem.", + "pos": "noun", + "word_frequency": 6148 + }, + { + "word": "luchador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fighter;wrestler", + "example_sentence_native": "Es un luchador incansable por sus derechos.", + "example_sentence_english": "He is a tireless fighter for his rights.", + "pos": "noun", + "word_frequency": 6152 + }, + { + "word": "lunar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mole (on skin);beauty mark", + "example_sentence_native": "Tiene un lunar pequeño en la mejilla.", + "example_sentence_english": "She has a small mole on her cheek.", + "pos": "noun", + "word_frequency": 6153 + }, + { + "word": "machista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexist;chauvinistic", + "example_sentence_native": "Sus comentarios fueron muy machistas.", + "example_sentence_english": "His comments were very sexist.", + "pos": "adjective", + "word_frequency": 6154 + }, + { + "word": "marxista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxist", + "example_sentence_native": "Analizaron la teoría desde una perspectiva marxista.", + "example_sentence_english": "They analyzed the theory from a Marxist perspective.", + "pos": "adjective", + "word_frequency": 6157 + }, + { + "word": "melodía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "melody", + "example_sentence_native": "La melodía de la canción es muy pegadiza.", + "example_sentence_english": "The melody of the song is very catchy.", + "pos": "noun", + "word_frequency": 6158 + }, + { + "word": "módulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "module;unit", + "example_sentence_native": "Este curso tiene cinco módulos.", + "example_sentence_english": "This course has five modules.", + "pos": "noun", + "word_frequency": 6159 + }, + { + "word": "nulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "null;void", + "example_sentence_native": "El contrato fue declarado nulo.", + "example_sentence_english": "The contract was declared null and void.", + "pos": "adjective", + "word_frequency": 6160 + }, + { + "word": "nutrición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutrition", + "example_sentence_native": "Una buena nutrición es clave para la salud.", + "example_sentence_english": "Good nutrition is key for health.", + "pos": "noun", + "word_frequency": 6161 + }, + { + "word": "ocio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leisure", + "example_sentence_native": "Disfruto de mi tiempo de ocio leyendo.", + "example_sentence_english": "I enjoy my leisure time reading.", + "pos": "noun", + "word_frequency": 6162 + }, + { + "word": "orina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urine", + "example_sentence_native": "La muestra de orina fue analizada.", + "example_sentence_english": "The urine sample was analyzed.", + "pos": "noun", + "word_frequency": 6163 + }, + { + "word": "paraguas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "umbrella", + "example_sentence_native": "Necesito un paraguas, está lloviendo.", + "example_sentence_english": "I need an umbrella, it's raining.", + "pos": "noun", + "word_frequency": 6164 + }, + { + "word": "parrilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grill;barbecue", + "example_sentence_native": "Haremos una parrilla este fin de semana.", + "example_sentence_english": "We will have a barbecue this weekend.", + "pos": "noun", + "word_frequency": 6167 + }, + { + "word": "patrulla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patrol", + "example_sentence_native": "La patrulla de policía pasó por la calle.", + "example_sentence_english": "The police patrol passed down the street.", + "pos": "noun", + "word_frequency": 6168 + }, + { + "word": "portátil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "portable;laptop", + "example_sentence_native": "Tengo un ordenador portátil nuevo.", + "example_sentence_english": "I have a new laptop.", + "pos": "adjective", + "word_frequency": 6169 + }, + { + "word": "previsión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forecast;foresight", + "example_sentence_native": "La previsión del tiempo es de lluvia.", + "example_sentence_english": "The weather forecast is for rain.", + "pos": "noun", + "word_frequency": 6170 + }, + { + "word": "proximidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proximity", + "example_sentence_native": "Vivimos en la proximidad de la playa.", + "example_sentence_english": "We live in proximity to the beach.", + "pos": "noun", + "word_frequency": 6171 + }, + { + "word": "puntual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctual", + "example_sentence_native": "Es importante ser puntual para las reuniones.", + "example_sentence_english": "It's important to be punctual for meetings.", + "pos": "adjective", + "word_frequency": 6172 + }, + { + "word": "pág", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "page (abbreviation)", + "example_sentence_native": "Por favor, abre el libro en la pág. 25.", + "example_sentence_english": "Please open the book to page 25.", + "pos": "noun", + "word_frequency": 6173 + }, + { + "word": "recesión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recession", + "example_sentence_native": "La economía entró en recesión.", + "example_sentence_english": "The economy entered a recession.", + "pos": "noun", + "word_frequency": 6175 + }, + { + "word": "reproducir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reproduce;to play (audio;video)", + "example_sentence_native": "El altavoz no reproduce el sonido.", + "example_sentence_english": "The speaker does not reproduce the sound.", + "pos": "verb", + "word_frequency": 6176 + }, + { + "word": "residencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residential", + "example_sentence_native": "Es una zona residencial tranquila.", + "example_sentence_english": "It's a quiet residential area.", + "pos": "adjective", + "word_frequency": 6177 + }, + { + "word": "retención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retention;withholding", + "example_sentence_native": "La retención de líquidos es un problema común.", + "example_sentence_english": "Fluid retention is a common problem.", + "pos": "noun", + "word_frequency": 6178 + }, + { + "word": "sismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthquake;tremor", + "example_sentence_native": "Hubo un sismo fuerte anoche.", + "example_sentence_english": "There was a strong earthquake last night.", + "pos": "noun", + "word_frequency": 6180 + }, + { + "word": "stock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stock;inventory", + "example_sentence_native": "Tenemos poco stock de ese producto.", + "example_sentence_english": "We have low stock of that product.", + "pos": "noun", + "word_frequency": 6181 + }, + { + "word": "sufragio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suffrage;vote", + "example_sentence_native": "El sufragio universal es un derecho fundamental.", + "example_sentence_english": "Universal suffrage is a fundamental right.", + "pos": "noun", + "word_frequency": 6182 + }, + { + "word": "tiburón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shark", + "example_sentence_native": "Vimos un tiburón en el acuario.", + "example_sentence_english": "We saw a shark in the aquarium.", + "pos": "noun", + "word_frequency": 6183 + }, + { + "word": "vara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rod;stick;measuring rod", + "example_sentence_native": "Usó una vara para alcanzar la fruta.", + "example_sentence_english": "He used a rod to reach the fruit.", + "pos": "noun", + "word_frequency": 6188 + }, + { + "word": "variado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "varied;diverse", + "example_sentence_native": "El menú ofrece una selección variada.", + "example_sentence_english": "The menu offers a varied selection.", + "pos": "adjective", + "word_frequency": 6189 + }, + { + "word": "version", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "version", + "example_sentence_native": "Esta es la última versión del software.", + "example_sentence_english": "This is the latest version of the software.", + "pos": "noun", + "word_frequency": 6190 + }, + { + "word": "vulgar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulgar;common", + "example_sentence_native": "No uses lenguaje vulgar.", + "example_sentence_english": "Don't use vulgar language.", + "pos": "adjective", + "word_frequency": 6192 + }, + { + "word": "zapatero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoemaker;cobbler", + "example_sentence_native": "Llevé mis zapatos al zapatero.", + "example_sentence_english": "I took my shoes to the shoemaker.", + "pos": "noun", + "word_frequency": 6194 + }, + { + "word": "zoológico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zoo", + "example_sentence_native": "Fuimos al zoológico el domingo.", + "example_sentence_english": "We went to the zoo on Sunday.", + "pos": "noun", + "word_frequency": 6195 + }, + { + "word": "agradar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to please;to like (used with indirect object)", + "example_sentence_native": "Me agrada mucho tu compañía.", + "example_sentence_english": "Your company pleases me very much.", + "pos": "verb", + "word_frequency": 6197 + }, + { + "word": "agrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasure;liking", + "example_sentence_native": "Recibió la noticia con agrado.", + "example_sentence_english": "He received the news with pleasure.", + "pos": "noun", + "word_frequency": 6198 + }, + { + "word": "aliviar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relieve;to alleviate", + "example_sentence_native": "Este medicamento puede aliviar el dolor.", + "example_sentence_english": "This medicine can relieve the pain.", + "pos": "verb", + "word_frequency": 6199 + }, + { + "word": "apocalipsis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apocalypse", + "example_sentence_native": "La película trata sobre el fin del mundo, un verdadero apocalipsis.", + "example_sentence_english": "The movie is about the end of the world, a true apocalypse.", + "pos": "noun", + "word_frequency": 6200 + }, + { + "word": "auditoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audit", + "example_sentence_native": "La empresa se sometió a una auditoría financiera.", + "example_sentence_english": "The company underwent a financial audit.", + "pos": "noun", + "word_frequency": 6201 + }, + { + "word": "austeridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "austerity", + "example_sentence_native": "El gobierno implementó medidas de austeridad.", + "example_sentence_english": "The government implemented austerity measures.", + "pos": "noun", + "word_frequency": 6202 + }, + { + "word": "ballet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballet", + "example_sentence_native": "Fuimos a ver un espectáculo de ballet clásico.", + "example_sentence_english": "We went to see a classical ballet performance.", + "pos": "noun", + "word_frequency": 6203 + }, + { + "word": "biológico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biological", + "example_sentence_native": "Compramos productos biológicos en el mercado.", + "example_sentence_english": "We bought organic products at the market.", + "pos": "adjective", + "word_frequency": 6206 + }, + { + "word": "caca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poop", + "example_sentence_native": "El perro hizo caca en el jardín.", + "example_sentence_english": "The dog pooped in the garden.", + "pos": "noun", + "word_frequency": 6207 + }, + { + "word": "cafetería", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cafeteria;coffee shop", + "example_sentence_native": "Nos vemos en la cafetería a las tres.", + "example_sentence_english": "See you at the coffee shop at three.", + "pos": "noun", + "word_frequency": 6208 + }, + { + "word": "camp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camp", + "example_sentence_native": "Su estilo es muy camp y extravagante.", + "example_sentence_english": "Her style is very camp and extravagant.", + "pos": "noun", + "word_frequency": 6209 + }, + { + "word": "característico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic", + "example_sentence_native": "El acento es muy característico de la región.", + "example_sentence_english": "The accent is very characteristic of the region.", + "pos": "adjective", + "word_frequency": 6210 + }, + { + "word": "catástrofe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catastrophe", + "example_sentence_native": "La inundación fue una catástrofe natural.", + "example_sentence_english": "The flood was a natural catastrophe.", + "pos": "noun", + "word_frequency": 6212 + }, + { + "word": "colgar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hang;to hang up (phone)", + "example_sentence_native": "Por favor, cuelga tu abrigo en el perchero.", + "example_sentence_english": "Please hang your coat on the coat rack.", + "pos": "verb", + "word_frequency": 6214 + }, + { + "word": "confrontación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confrontation", + "example_sentence_native": "Hubo una confrontación entre los dos grupos.", + "example_sentence_english": "There was a confrontation between the two groups.", + "pos": "noun", + "word_frequency": 6215 + }, + { + "word": "costero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coastal", + "example_sentence_native": "Visitamos un pueblo costero muy bonito.", + "example_sentence_english": "We visited a very beautiful coastal town.", + "pos": "adjective", + "word_frequency": 6217 + }, + { + "word": "cubo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cube;bucket", + "example_sentence_native": "El niño juega con un cubo de Rubik.", + "example_sentence_english": "The child plays with a Rubik's cube.", + "pos": "noun", + "word_frequency": 6218 + }, + { + "word": "cómic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic book", + "example_sentence_native": "Me gusta leer cómics de superhéroes.", + "example_sentence_english": "I like to read superhero comic books.", + "pos": "noun", + "word_frequency": 6220 + }, + { + "word": "enterarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find out;to learn (about)", + "example_sentence_native": "Me acabo de enterar de la noticia.", + "example_sentence_english": "I just found out the news.", + "pos": "verb", + "word_frequency": 6221 + }, + { + "word": "ep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "EP (Extended Play)", + "example_sentence_native": "La banda lanzó un nuevo EP el mes pasado.", + "example_sentence_english": "The band released a new EP last month.", + "pos": "noun", + "word_frequency": 6222 + }, + { + "word": "estela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trail;wake (of a ship);stele", + "example_sentence_native": "El barco dejó una estela blanca en el agua.", + "example_sentence_english": "The boat left a white wake in the water.", + "pos": "noun", + "word_frequency": 6223 + }, + { + "word": "facción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faction;feature (of face)", + "example_sentence_native": "El partido político se dividió en varias facciones.", + "example_sentence_english": "The political party split into several factions.", + "pos": "noun", + "word_frequency": 6224 + }, + { + "word": "filo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge;blade", + "example_sentence_native": "El cuchillo tiene un filo muy afilado.", + "example_sentence_english": "The knife has a very sharp edge.", + "pos": "noun", + "word_frequency": 6226 + }, + { + "word": "fluido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluid", + "example_sentence_native": "El agua es un fluido esencial para la vida.", + "example_sentence_english": "Water is an essential fluid for life.", + "pos": "noun", + "word_frequency": 6227 + }, + { + "word": "happy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happy", + "example_sentence_native": "Vamos a la Happy Hour del bar.", + "example_sentence_english": "Let's go to the bar's Happy Hour.", + "pos": "adjective", + "word_frequency": 6230 + }, + { + "word": "imperialismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialism", + "example_sentence_native": "El imperialismo tuvo un gran impacto en la historia.", + "example_sentence_english": "Imperialism had a great impact on history.", + "pos": "noun", + "word_frequency": 6231 + }, + { + "word": "implicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involved;implicated", + "example_sentence_native": "Estaba implicado en el proyecto desde el principio.", + "example_sentence_english": "He was involved in the project from the beginning.", + "pos": "adjective", + "word_frequency": 6232 + }, + { + "word": "incondicional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconditional", + "example_sentence_native": "Su apoyo fue incondicional.", + "example_sentence_english": "His support was unconditional.", + "pos": "adjective", + "word_frequency": 6233 + }, + { + "word": "inspirar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inspire", + "example_sentence_native": "Su historia me inspira a seguir adelante.", + "example_sentence_english": "Her story inspires me to move forward.", + "pos": "verb", + "word_frequency": 6234 + }, + { + "word": "insumo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "input;supply", + "example_sentence_native": "Los insumos para la producción son cada vez más caros.", + "example_sentence_english": "The inputs for production are increasingly expensive.", + "pos": "noun", + "word_frequency": 6235 + }, + { + "word": "inverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inverse;reverse", + "example_sentence_native": "El efecto fue el inverso al esperado.", + "example_sentence_english": "The effect was the inverse of what was expected.", + "pos": "adjective", + "word_frequency": 6236 + }, + { + "word": "jerez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sherry (wine);Jerez (city)", + "example_sentence_native": "Me gusta beber un buen jerez después de la cena.", + "example_sentence_english": "I like to drink a good sherry after dinner.", + "pos": "noun", + "word_frequency": 6237 + }, + { + "word": "lineal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linear", + "example_sentence_native": "El crecimiento fue lineal.", + "example_sentence_english": "The growth was linear.", + "pos": "adjective", + "word_frequency": 6242 + }, + { + "word": "manta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blanket", + "example_sentence_native": "Necesito una manta para el frío.", + "example_sentence_english": "I need a blanket for the cold.", + "pos": "noun", + "word_frequency": 6245 + }, + { + "word": "mediación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mediation", + "example_sentence_native": "La mediación ayudó a resolver el conflicto.", + "example_sentence_english": "Mediation helped resolve the conflict.", + "pos": "noun", + "word_frequency": 6246 + }, + { + "word": "memorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial", + "example_sentence_native": "Construyeron un memorial a las víctimas.", + "example_sentence_english": "They built a memorial to the victims.", + "pos": "noun", + "word_frequency": 6247 + }, + { + "word": "meramente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merely", + "example_sentence_native": "Fue meramente una sugerencia.", + "example_sentence_english": "It was merely a suggestion.", + "pos": "adverb", + "word_frequency": 6248 + }, + { + "word": "mosca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fly (insect)", + "example_sentence_native": "Hay una mosca en la sopa.", + "example_sentence_english": "There's a fly in the soup.", + "pos": "noun", + "word_frequency": 6249 + }, + { + "word": "mudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mute", + "example_sentence_native": "Se quedó mudo de asombro.", + "example_sentence_english": "He was struck dumb with astonishment.", + "pos": "adjective", + "word_frequency": 6250 + }, + { + "word": "munición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammunition", + "example_sentence_native": "Se quedaron sin munición.", + "example_sentence_english": "They ran out of ammunition.", + "pos": "noun", + "word_frequency": 6251 + }, + { + "word": "mártir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "martyr", + "example_sentence_native": "Fue considerado un mártir por su causa.", + "example_sentence_english": "He was considered a martyr for his cause.", + "pos": "noun", + "word_frequency": 6252 + }, + { + "word": "opresión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppression", + "example_sentence_native": "Lucharon contra la opresión.", + "example_sentence_english": "They fought against oppression.", + "pos": "noun", + "word_frequency": 6255 + }, + { + "word": "optar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to opt", + "example_sentence_native": "Decidió optar por la opción más segura.", + "example_sentence_english": "He decided to opt for the safest option.", + "pos": "verb", + "word_frequency": 6256 + }, + { + "word": "paradero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whereabouts", + "example_sentence_native": "Se desconoce su paradero.", + "example_sentence_english": "His whereabouts are unknown.", + "pos": "noun", + "word_frequency": 6257 + }, + { + "word": "patricio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patrician", + "example_sentence_native": "Los patricios tenían mucho poder en la antigua Roma.", + "example_sentence_english": "The patricians had a lot of power in ancient Rome.", + "pos": "noun", + "word_frequency": 6258 + }, + { + "word": "pertinente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pertinent", + "example_sentence_native": "Su comentario fue muy pertinente.", + "example_sentence_english": "His comment was very pertinent.", + "pos": "adjective", + "word_frequency": 6260 + }, + { + "word": "potencialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potentially", + "example_sentence_native": "Es potencialmente peligroso.", + "example_sentence_english": "It is potentially dangerous.", + "pos": "adverb", + "word_frequency": 6264 + }, + { + "word": "protagonismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prominence", + "example_sentence_native": "El actor ganó protagonismo en la película.", + "example_sentence_english": "The actor gained prominence in the film.", + "pos": "noun", + "word_frequency": 6265 + }, + { + "word": "protestante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestant", + "example_sentence_native": "Es de fe protestante.", + "example_sentence_english": "He is of Protestant faith.", + "pos": "adjective", + "word_frequency": 6266 + }, + { + "word": "provisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provision", + "example_sentence_native": "Necesitamos hacer provisión de alimentos.", + "example_sentence_english": "We need to make provision for food.", + "pos": "noun", + "word_frequency": 6267 + }, + { + "word": "reformar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reform", + "example_sentence_native": "El gobierno planea reformar la ley.", + "example_sentence_english": "The government plans to reform the law.", + "pos": "verb", + "word_frequency": 6268 + }, + { + "word": "saqueo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looting", + "example_sentence_native": "La ciudad sufrió un saqueo.", + "example_sentence_english": "The city suffered a looting.", + "pos": "noun", + "word_frequency": 6271 + }, + { + "word": "secta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sect", + "example_sentence_native": "Se unió a una secta religiosa.", + "example_sentence_english": "He joined a religious sect.", + "pos": "noun", + "word_frequency": 6272 + }, + { + "word": "semifinal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semifinal", + "example_sentence_native": "Jugaron la semifinal del torneo.", + "example_sentence_english": "They played the semifinal of the tournament.", + "pos": "noun", + "word_frequency": 6273 + }, + { + "word": "sexualmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexually", + "example_sentence_native": "Se sentía sexualmente atraído.", + "example_sentence_english": "He felt sexually attracted.", + "pos": "adverb", + "word_frequency": 6274 + }, + { + "word": "sosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bland", + "example_sentence_native": "La comida estaba muy sosa.", + "example_sentence_english": "The food was very bland.", + "pos": "adjective", + "word_frequency": 6277 + }, + { + "word": "suite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suite", + "example_sentence_native": "Reservamos una suite en el hotel.", + "example_sentence_english": "We booked a suite in the hotel.", + "pos": "noun", + "word_frequency": 6278 + }, + { + "word": "suscripción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscription", + "example_sentence_native": "Cancelé mi suscripción a la revista.", + "example_sentence_english": "I canceled my magazine subscription.", + "pos": "noun", + "word_frequency": 6279 + }, + { + "word": "viable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viable", + "example_sentence_native": "La propuesta no parece viable en este momento.", + "example_sentence_english": "The proposal does not seem viable at this moment.", + "pos": "adjective", + "word_frequency": 6281 + }, + { + "word": "violeta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violet;purple", + "example_sentence_native": "Su vestido era de un hermoso color violeta.", + "example_sentence_english": "Her dress was a beautiful violet color.", + "pos": "adjective", + "word_frequency": 6282 + }, + { + "word": "ídolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idol", + "example_sentence_native": "Él es mi ídolo en el mundo de la música.", + "example_sentence_english": "He is my idol in the music world.", + "pos": "noun", + "word_frequency": 6283 + }, + { + "word": "abdomen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abdomen", + "example_sentence_native": "Sintió un dolor agudo en el abdomen.", + "example_sentence_english": "He felt a sharp pain in his abdomen.", + "pos": "noun", + "word_frequency": 6284 + }, + { + "word": "acelerar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accelerate;to speed up", + "example_sentence_native": "El coche empezó a acelerar en la autopista.", + "example_sentence_english": "The car started to accelerate on the highway.", + "pos": "verb", + "word_frequency": 6285 + }, + { + "word": "agarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grip;hold", + "example_sentence_native": "Necesitas un buen agarre para escalar la roca.", + "example_sentence_english": "You need a good grip to climb the rock.", + "pos": "noun", + "word_frequency": 6286 + }, + { + "word": "alteración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alteration;disturbance", + "example_sentence_native": "Hubo una alteración en el horario del vuelo.", + "example_sentence_english": "There was an alteration in the flight schedule.", + "pos": "noun", + "word_frequency": 6287 + }, + { + "word": "anotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to note down;to score", + "example_sentence_native": "El jugador logró anotar un gol en el último minuto.", + "example_sentence_english": "The player managed to score a goal in the last minute.", + "pos": "verb", + "word_frequency": 6288 + }, + { + "word": "armadura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor", + "example_sentence_native": "El caballero vestía una brillante armadura.", + "example_sentence_english": "The knight wore shining armor.", + "pos": "noun", + "word_frequency": 6289 + }, + { + "word": "bardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bard;poet", + "example_sentence_native": "El bardo cantó historias de héroes antiguos.", + "example_sentence_english": "The bard sang stories of ancient heroes.", + "pos": "noun", + "word_frequency": 6291 + }, + { + "word": "calmar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to calm;to soothe", + "example_sentence_native": "Intentó calmar al niño asustado.", + "example_sentence_english": "He tried to calm the frightened child.", + "pos": "verb", + "word_frequency": 6292 + }, + { + "word": "carabinero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carabineer;police officer (Chile)", + "example_sentence_native": "El carabinero dirigía el tráfico en la intersección.", + "example_sentence_english": "The carabineer was directing traffic at the intersection.", + "pos": "noun", + "word_frequency": 6294 + }, + { + "word": "cargado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loaded;charged;heavy", + "example_sentence_native": "La batería del teléfono está completamente cargada.", + "example_sentence_english": "The phone battery is fully charged.", + "pos": "adjective", + "word_frequency": 6295 + }, + { + "word": "carrillo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cheek (diminutive);small cart", + "example_sentence_native": "El niño tenía los carrillos sonrojados por el frío.", + "example_sentence_english": "The child had rosy cheeks from the cold.", + "pos": "noun", + "word_frequency": 6296 + }, + { + "word": "cigarrillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cigarette", + "example_sentence_native": "Por favor, no fumes cigarrillos aquí.", + "example_sentence_english": "Please, don't smoke cigarettes here.", + "pos": "noun", + "word_frequency": 6297 + }, + { + "word": "cohete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocket", + "example_sentence_native": "El cohete despegó hacia el espacio.", + "example_sentence_english": "The rocket launched into space.", + "pos": "noun", + "word_frequency": 6298 + }, + { + "word": "combatiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combatant;fighter", + "example_sentence_native": "Los combatientes se prepararon para la batalla.", + "example_sentence_english": "The combatants prepared for battle.", + "pos": "noun", + "word_frequency": 6299 + }, + { + "word": "comunal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communal", + "example_sentence_native": "Tienen un jardín comunal donde todos cultivan.", + "example_sentence_english": "They have a communal garden where everyone cultivates.", + "pos": "adjective", + "word_frequency": 6300 + }, + { + "word": "condicional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conditional", + "example_sentence_native": "La oferta es condicional a la aprobación del préstamo.", + "example_sentence_english": "The offer is conditional on loan approval.", + "pos": "adjective", + "word_frequency": 6301 + }, + { + "word": "cordón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cord;shoelace;cordon", + "example_sentence_native": "Se le desató el cordón del zapato.", + "example_sentence_english": "His shoelace came untied.", + "pos": "noun", + "word_frequency": 6302 + }, + { + "word": "corteza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bark;crust;cortex", + "example_sentence_native": "La corteza del árbol era áspera al tacto.", + "example_sentence_english": "The tree's bark was rough to the touch.", + "pos": "noun", + "word_frequency": 6303 + }, + { + "word": "defensivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defensive", + "example_sentence_native": "Su actitud era muy defensiva durante la discusión.", + "example_sentence_english": "His attitude was very defensive during the discussion.", + "pos": "adjective", + "word_frequency": 6307 + }, + { + "word": "diferenciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to differentiate;to distinguish", + "example_sentence_native": "Es difícil diferenciar entre los dos colores.", + "example_sentence_english": "It's difficult to differentiate between the two colors.", + "pos": "verb", + "word_frequency": 6308 + }, + { + "word": "difunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceased;late (person)", + "example_sentence_native": "Se celebró un homenaje al difunto presidente.", + "example_sentence_english": "A tribute was held for the late president.", + "pos": "noun", + "word_frequency": 6309 + }, + { + "word": "disturbio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbance;riot", + "example_sentence_native": "La policía intervino para controlar el disturbio.", + "example_sentence_english": "The police intervened to control the disturbance.", + "pos": "noun", + "word_frequency": 6310 + }, + { + "word": "ecológico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ecological;organic", + "example_sentence_native": "Compramos productos ecológicos para cuidar el medio ambiente.", + "example_sentence_english": "We buy ecological products to protect the environment.", + "pos": "adjective", + "word_frequency": 6311 + }, + { + "word": "egoísta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selfish", + "example_sentence_native": "No seas tan egoísta, comparte tus juguetes.", + "example_sentence_english": "Don't be so selfish, share your toys.", + "pos": "adjective", + "word_frequency": 6312 + }, + { + "word": "electorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electorate", + "example_sentence_native": "El electorado votó por un cambio de gobierno.", + "example_sentence_english": "The electorate voted for a change of government.", + "pos": "noun", + "word_frequency": 6313 + }, + { + "word": "elevación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elevation;rise", + "example_sentence_native": "La elevación del terreno dificultó la construcción.", + "example_sentence_english": "The elevation of the terrain made construction difficult.", + "pos": "noun", + "word_frequency": 6314 + }, + { + "word": "encender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn on;to light", + "example_sentence_native": "Por favor, enciende la luz.", + "example_sentence_english": "Please, turn on the light.", + "pos": "verb", + "word_frequency": 6315 + }, + { + "word": "entierro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burial;funeral", + "example_sentence_native": "Asistimos al entierro de su abuela.", + "example_sentence_english": "We attended his grandmother's burial.", + "pos": "noun", + "word_frequency": 6316 + }, + { + "word": "estelar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stellar;star (adj.)", + "example_sentence_native": "El concierto contó con una actuación estelar.", + "example_sentence_english": "The concert featured a stellar performance.", + "pos": "adjective", + "word_frequency": 6318 + }, + { + "word": "estimular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stimulate;to encourage", + "example_sentence_native": "La lectura puede estimular la imaginación.", + "example_sentence_english": "Reading can stimulate imagination.", + "pos": "verb", + "word_frequency": 6319 + }, + { + "word": "evacuación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evacuation", + "example_sentence_native": "La evacuación del edificio fue rápida y ordenada.", + "example_sentence_english": "The evacuation of the building was quick and orderly.", + "pos": "noun", + "word_frequency": 6320 + }, + { + "word": "extendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extended;widespread", + "example_sentence_native": "El uso de internet está muy extendido hoy en día.", + "example_sentence_english": "The use of the internet is very widespread nowadays.", + "pos": "adjective", + "word_frequency": 6321 + }, + { + "word": "fierro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iron;metal (colloquial)", + "example_sentence_native": "Necesitamos un fierro para levantar esto.", + "example_sentence_english": "We need a piece of iron to lift this.", + "pos": "noun", + "word_frequency": 6322 + }, + { + "word": "filial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidiary;filial", + "example_sentence_native": "La empresa abrió una oficina filial en otra ciudad.", + "example_sentence_english": "The company opened a subsidiary office in another city.", + "pos": "adjective", + "word_frequency": 6323 + }, + { + "word": "formado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formed;trained", + "example_sentence_native": "Es un profesional bien formado.", + "example_sentence_english": "He is a well-trained professional.", + "pos": "adjective", + "word_frequency": 6325 + }, + { + "word": "gemelo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twin", + "example_sentence_native": "Mis hermanos son gemelos idénticos.", + "example_sentence_english": "My brothers are identical twins.", + "pos": "noun", + "word_frequency": 6326 + }, + { + "word": "generosidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generosity", + "example_sentence_native": "Su generosidad es admirable.", + "example_sentence_english": "His generosity is admirable.", + "pos": "noun", + "word_frequency": 6327 + }, + { + "word": "holandés", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dutch", + "example_sentence_native": "La capital holandesa es Ámsterdam.", + "example_sentence_english": "The Dutch capital is Amsterdam.", + "pos": "adjective", + "word_frequency": 6331 + }, + { + "word": "imaginario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imaginary;the imaginary", + "example_sentence_native": "El imaginario colectivo influye en la cultura.", + "example_sentence_english": "The collective imaginary influences culture.", + "pos": "noun", + "word_frequency": 6333 + }, + { + "word": "implantación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implantation;implementation", + "example_sentence_native": "La implantación del nuevo sistema será gradual.", + "example_sentence_english": "The implementation of the new system will be gradual.", + "pos": "noun", + "word_frequency": 6334 + }, + { + "word": "indicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indicated;suitable", + "example_sentence_native": "Este es el momento indicado para actuar.", + "example_sentence_english": "This is the indicated moment to act.", + "pos": "adjective", + "word_frequency": 6335 + }, + { + "word": "iniciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiated;started", + "example_sentence_native": "Es un proyecto recién iniciado.", + "example_sentence_english": "It's a recently initiated project.", + "pos": "adjective", + "word_frequency": 6336 + }, + { + "word": "inversionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investor", + "example_sentence_native": "Los inversionistas buscan oportunidades en el mercado.", + "example_sentence_english": "Investors look for opportunities in the market.", + "pos": "noun", + "word_frequency": 6337 + }, + { + "word": "liquidación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidation;sale;settlement", + "example_sentence_native": "La tienda tiene una liquidación de fin de temporada.", + "example_sentence_english": "The store has an end-of-season sale.", + "pos": "noun", + "word_frequency": 6341 + }, + { + "word": "manto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mantle;cloak", + "example_sentence_native": "La montaña estaba cubierta por un manto de nieve.", + "example_sentence_english": "The mountain was covered by a mantle of snow.", + "pos": "noun", + "word_frequency": 6342 + }, + { + "word": "milicia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militia", + "example_sentence_native": "La milicia local defendió el pueblo.", + "example_sentence_english": "The local militia defended the town.", + "pos": "noun", + "word_frequency": 6344 + }, + { + "word": "pasivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passive", + "example_sentence_native": "Su actitud pasiva no ayuda a resolver el problema.", + "example_sentence_english": "His passive attitude does not help solve the problem.", + "pos": "adjective", + "word_frequency": 6347 + }, + { + "word": "pauta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guideline;pattern;agenda", + "example_sentence_native": "Se establecieron nuevas pautas para el proyecto.", + "example_sentence_english": "New guidelines were established for the project.", + "pos": "noun", + "word_frequency": 6348 + }, + { + "word": "picar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chop;to sting;to bite;to peck", + "example_sentence_native": "Necesito picar las cebollas para la salsa.", + "example_sentence_english": "I need to chop the onions for the sauce.", + "pos": "verb", + "word_frequency": 6349 + }, + { + "word": "pirámide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pyramid", + "example_sentence_native": "Las pirámides de Egipto son impresionantes.", + "example_sentence_english": "The pyramids of Egypt are impressive.", + "pos": "noun", + "word_frequency": 6350 + }, + { + "word": "procesar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to process", + "example_sentence_native": "La computadora está procesando los datos.", + "example_sentence_english": "The computer is processing the data.", + "pos": "verb", + "word_frequency": 6353 + }, + { + "word": "prólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prologue", + "example_sentence_native": "El prólogo del libro explica la historia.", + "example_sentence_english": "The prologue of the book explains the story.", + "pos": "noun", + "word_frequency": 6354 + }, + { + "word": "respetable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respectable", + "example_sentence_native": "Es una persona muy respetable en la comunidad.", + "example_sentence_english": "He is a very respectable person in the community.", + "pos": "adjective", + "word_frequency": 6355 + }, + { + "word": "rodaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filming;shooting (film);running-in (vehicle)", + "example_sentence_native": "El rodaje de la película duró tres meses.", + "example_sentence_english": "The filming of the movie lasted three months.", + "pos": "noun", + "word_frequency": 6357 + }, + { + "word": "rubro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heading;category;line of business", + "example_sentence_native": "La empresa se especializa en el rubro de la tecnología.", + "example_sentence_english": "The company specializes in the technology sector.", + "pos": "noun", + "word_frequency": 6359 + }, + { + "word": "sacrificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sacrifice", + "example_sentence_native": "Tuvieron que sacrificar al animal enfermo.", + "example_sentence_english": "They had to sacrifice the sick animal.", + "pos": "verb", + "word_frequency": 6360 + }, + { + "word": "sequía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drought", + "example_sentence_native": "La sequía ha afectado gravemente los cultivos.", + "example_sentence_english": "The drought has severely affected the crops.", + "pos": "noun", + "word_frequency": 6361 + }, + { + "word": "soja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soy;soybean", + "example_sentence_native": "La leche de soja es una alternativa popular.", + "example_sentence_english": "Soy milk is a popular alternative.", + "pos": "noun", + "word_frequency": 6362 + }, + { + "word": "taxista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taxi driver", + "example_sentence_native": "El taxista nos llevó al aeropuerto.", + "example_sentence_english": "The taxi driver took us to the airport.", + "pos": "noun", + "word_frequency": 6365 + }, + { + "word": "tranqui", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chill;relaxed (informal)", + "example_sentence_native": "¡Tranqui, no te preocupes!", + "example_sentence_english": "Chill, don't worry!", + "pos": "adjective", + "word_frequency": 6366 + }, + { + "word": "vip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "VIP (Very Important Person)", + "example_sentence_native": "Tienen acceso VIP al evento.", + "example_sentence_english": "They have VIP access to the event.", + "pos": "noun", + "word_frequency": 6369 + }, + { + "word": "virrey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viceroy", + "example_sentence_native": "El virrey gobernaba en nombre del rey.", + "example_sentence_english": "The viceroy governed on behalf of the king.", + "pos": "noun", + "word_frequency": 6370 + }, + { + "word": "agrario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agrarian;agricultural", + "example_sentence_native": "La reforma agraria fue un tema importante.", + "example_sentence_english": "Agrarian reform was an important topic.", + "pos": "adjective", + "word_frequency": 6372 + }, + { + "word": "agudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharp;acute", + "example_sentence_native": "Tiene un sentido del humor muy agudo.", + "example_sentence_english": "He has a very sharp sense of humor.", + "pos": "adjective", + "word_frequency": 6373 + }, + { + "word": "alegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allege;to claim", + "example_sentence_native": "El abogado intentó alegar su inocencia.", + "example_sentence_english": "The lawyer tried to allege his innocence.", + "pos": "verb", + "word_frequency": 6374 + }, + { + "word": "almohada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pillow", + "example_sentence_native": "Necesito una almohada más suave.", + "example_sentence_english": "I need a softer pillow.", + "pos": "noun", + "word_frequency": 6376 + }, + { + "word": "alquilar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rent", + "example_sentence_native": "Vamos a alquilar un coche para el viaje.", + "example_sentence_english": "We are going to rent a car for the trip.", + "pos": "verb", + "word_frequency": 6377 + }, + { + "word": "altitud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "altitude", + "example_sentence_native": "La ciudad está a gran altitud.", + "example_sentence_english": "The city is at a high altitude.", + "pos": "noun", + "word_frequency": 6378 + }, + { + "word": "alumnado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "student body;students (collective)", + "example_sentence_native": "El alumnado participó en la protesta.", + "example_sentence_english": "The student body participated in the protest.", + "pos": "noun", + "word_frequency": 6379 + }, + { + "word": "ambulancia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ambulance", + "example_sentence_native": "Llamaron a una ambulancia después del accidente.", + "example_sentence_english": "They called an ambulance after the accident.", + "pos": "noun", + "word_frequency": 6380 + }, + { + "word": "anal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anal", + "example_sentence_native": "Es un término médico para la región anal.", + "example_sentence_english": "It is a medical term for the anal region.", + "pos": "adjective", + "word_frequency": 6381 + }, + { + "word": "arquero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "archer;goalkeeper", + "example_sentence_native": "El arquero detuvo el penalti.", + "example_sentence_english": "The goalkeeper stopped the penalty.", + "pos": "noun", + "word_frequency": 6382 + }, + { + "word": "arruinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ruin;to spoil", + "example_sentence_native": "La lluvia arruinó nuestros planes.", + "example_sentence_english": "The rain ruined our plans.", + "pos": "verb", + "word_frequency": 6383 + }, + { + "word": "aspirante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicant;candidate", + "example_sentence_native": "Hay muchos aspirantes para el puesto.", + "example_sentence_english": "There are many applicants for the position.", + "pos": "noun", + "word_frequency": 6384 + }, + { + "word": "balear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Balearic (referring to the Balearic Islands)", + "example_sentence_native": "Las Islas Baleares son un destino turístico popular.", + "example_sentence_english": "The Balearic Islands are a popular tourist destination.", + "pos": "adjective", + "word_frequency": 6387 + }, + { + "word": "beneficiario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficiary", + "example_sentence_native": "Él es el único beneficiario del testamento.", + "example_sentence_english": "He is the sole beneficiary of the will.", + "pos": "noun", + "word_frequency": 6388 + }, + { + "word": "bigote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mustache", + "example_sentence_native": "Se dejó crecer el bigote.", + "example_sentence_english": "He grew a mustache.", + "pos": "noun", + "word_frequency": 6389 + }, + { + "word": "cabron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bastard;jerk (vulgar)", + "example_sentence_native": "¡Qué cabrón, me robó la cartera!", + "example_sentence_english": "What a bastard, he stole my wallet!", + "pos": "noun", + "word_frequency": 6391 + }, + { + "word": "cacao", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cocoa;cacao", + "example_sentence_native": "El chocolate se hace con cacao.", + "example_sentence_english": "Chocolate is made with cocoa.", + "pos": "noun", + "word_frequency": 6392 + }, + { + "word": "caldo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broth;stock", + "example_sentence_native": "Me gusta la sopa con mucho caldo.", + "example_sentence_english": "I like soup with a lot of broth.", + "pos": "noun", + "word_frequency": 6393 + }, + { + "word": "calzado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footwear", + "example_sentence_native": "Necesito comprar calzado nuevo.", + "example_sentence_english": "I need to buy new footwear.", + "pos": "noun", + "word_frequency": 6394 + }, + { + "word": "casilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box;square (on a form;game board)", + "example_sentence_native": "Marca la casilla correcta.", + "example_sentence_english": "Check the correct box.", + "pos": "noun", + "word_frequency": 6395 + }, + { + "word": "casta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caste;lineage", + "example_sentence_native": "En la India antigua, la sociedad se dividía en castas.", + "example_sentence_english": "In ancient India, society was divided into castes.", + "pos": "noun", + "word_frequency": 6396 + }, + { + "word": "celu", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cell phone (informal)", + "example_sentence_native": "¿Me prestas tu celu para llamar?", + "example_sentence_english": "Can I borrow your cell phone to call?", + "pos": "noun", + "word_frequency": 6397 + }, + { + "word": "ciclismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycling", + "example_sentence_native": "El ciclismo es un deporte muy popular en España.", + "example_sentence_english": "Cycling is a very popular sport in Spain.", + "pos": "noun", + "word_frequency": 6401 + }, + { + "word": "competitivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competitive", + "example_sentence_native": "Es una persona muy competitiva en los deportes.", + "example_sentence_english": "He is a very competitive person in sports.", + "pos": "adjective", + "word_frequency": 6402 + }, + { + "word": "condenar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condemn", + "example_sentence_native": "La sociedad condena la violencia en todas sus formas.", + "example_sentence_english": "Society condemns violence in all its forms.", + "pos": "verb", + "word_frequency": 6403 + }, + { + "word": "congregación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congregation", + "example_sentence_native": "La congregación se reunió para la misa dominical.", + "example_sentence_english": "The congregation gathered for Sunday mass.", + "pos": "noun", + "word_frequency": 6404 + }, + { + "word": "conmemoración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commemoration", + "example_sentence_native": "Se celebró una conmemoración en honor a los héroes.", + "example_sentence_english": "A commemoration was held in honor of the heroes.", + "pos": "noun", + "word_frequency": 6405 + }, + { + "word": "conteo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "count;tally", + "example_sentence_native": "El conteo de votos duró toda la noche.", + "example_sentence_english": "The vote count lasted all night.", + "pos": "noun", + "word_frequency": 6406 + }, + { + "word": "corral", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corral;pen", + "example_sentence_native": "Las gallinas están en el corral.", + "example_sentence_english": "The chickens are in the corral.", + "pos": "noun", + "word_frequency": 6407 + }, + { + "word": "cónsul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consul", + "example_sentence_native": "El cónsul ayudó a los ciudadanos en el extranjero.", + "example_sentence_english": "The consul helped the citizens abroad.", + "pos": "noun", + "word_frequency": 6408 + }, + { + "word": "disfraz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "costume", + "example_sentence_native": "Llevaba un disfraz de superhéroe para la fiesta.", + "example_sentence_english": "He wore a superhero costume for the party.", + "pos": "noun", + "word_frequency": 6413 + }, + { + "word": "ecosistema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecosystem", + "example_sentence_native": "La selva tropical es un ecosistema complejo.", + "example_sentence_english": "The tropical rainforest is a complex ecosystem.", + "pos": "noun", + "word_frequency": 6416 + }, + { + "word": "elite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elite", + "example_sentence_native": "Solo la élite tiene acceso a ese club exclusivo.", + "example_sentence_english": "Only the elite have access to that exclusive club.", + "pos": "noun", + "word_frequency": 6417 + }, + { + "word": "emigrante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emigrant", + "example_sentence_native": "Muchos emigrantes buscan una vida mejor en otro país.", + "example_sentence_english": "Many emigrants seek a better life in another country.", + "pos": "noun", + "word_frequency": 6418 + }, + { + "word": "empeño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effort;determination", + "example_sentence_native": "Puso mucho empeño en terminar el proyecto a tiempo.", + "example_sentence_english": "He put a lot of effort into finishing the project on time.", + "pos": "noun", + "word_frequency": 6419 + }, + { + "word": "emprendimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrepreneurship;venture", + "example_sentence_native": "El gobierno apoya el emprendimiento juvenil.", + "example_sentence_english": "The government supports youth entrepreneurship.", + "pos": "noun", + "word_frequency": 6420 + }, + { + "word": "escondido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hidden", + "example_sentence_native": "Encontró el tesoro escondido en el jardín.", + "example_sentence_english": "He found the hidden treasure in the garden.", + "pos": "adjective", + "word_frequency": 6421 + }, + { + "word": "estrada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "road;path;stage", + "example_sentence_native": "La estrada estaba llena de baches.", + "example_sentence_english": "The road was full of potholes.", + "pos": "noun", + "word_frequency": 6422 + }, + { + "word": "feroz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fierce;ferocious", + "example_sentence_native": "El león es un animal feroz.", + "example_sentence_english": "The lion is a fierce animal.", + "pos": "adjective", + "word_frequency": 6423 + }, + { + "word": "firmemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmly", + "example_sentence_native": "Se mantuvo firmemente en sus convicciones.", + "example_sentence_english": "He stood firmly by his convictions.", + "pos": "adverb", + "word_frequency": 6424 + }, + { + "word": "generador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generator", + "example_sentence_native": "Necesitamos un generador de electricidad para el campamento.", + "example_sentence_english": "We need an electricity generator for the camp.", + "pos": "noun", + "word_frequency": 6427 + }, + { + "word": "gozar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enjoy", + "example_sentence_native": "Espero que goces de tus vacaciones.", + "example_sentence_english": "I hope you enjoy your vacation.", + "pos": "verb", + "word_frequency": 6428 + }, + { + "word": "graduado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graduated;graduate", + "example_sentence_native": "Es un estudiante graduado de la universidad.", + "example_sentence_english": "He is a graduate student from the university.", + "pos": "adjective", + "word_frequency": 6429 + }, + { + "word": "granito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granite", + "example_sentence_native": "La encimera de la cocina es de granito.", + "example_sentence_english": "The kitchen countertop is made of granite.", + "pos": "noun", + "word_frequency": 6430 + }, + { + "word": "habitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inhabit;to live in", + "example_sentence_native": "Muchas especies raras habitan en esta selva.", + "example_sentence_english": "Many rare species inhabit this jungle.", + "pos": "verb", + "word_frequency": 6431 + }, + { + "word": "hemisferio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemisphere", + "example_sentence_native": "España se encuentra en el hemisferio norte.", + "example_sentence_english": "Spain is located in the Northern Hemisphere.", + "pos": "noun", + "word_frequency": 6432 + }, + { + "word": "hoyo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hole", + "example_sentence_native": "Había un hoyo en la carretera.", + "example_sentence_english": "There was a hole in the road.", + "pos": "noun", + "word_frequency": 6434 + }, + { + "word": "inestable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unstable", + "example_sentence_native": "La situación política es muy inestable.", + "example_sentence_english": "The political situation is very unstable.", + "pos": "adjective", + "word_frequency": 6436 + }, + { + "word": "insuficiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insufficient", + "example_sentence_native": "La cantidad de agua era insuficiente para todos.", + "example_sentence_english": "The amount of water was insufficient for everyone.", + "pos": "adjective", + "word_frequency": 6437 + }, + { + "word": "irresponsable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irresponsible", + "example_sentence_native": "Fue irresponsable dejar la puerta abierta.", + "example_sentence_english": "It was irresponsible to leave the door open.", + "pos": "adjective", + "word_frequency": 6438 + }, + { + "word": "latir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to beat (heart)", + "example_sentence_native": "Su corazón empezó a latir más rápido.", + "example_sentence_english": "His heart started to beat faster.", + "pos": "verb", + "word_frequency": 6439 + }, + { + "word": "lider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leader", + "example_sentence_native": "Él es el líder del equipo.", + "example_sentence_english": "He is the leader of the team.", + "pos": "noun", + "word_frequency": 6441 + }, + { + "word": "logística", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logistics", + "example_sentence_native": "La logística del evento fue complicada.", + "example_sentence_english": "The logistics of the event were complicated.", + "pos": "noun", + "word_frequency": 6442 + }, + { + "word": "marfil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ivory", + "example_sentence_native": "El elefante tiene colmillos de marfil.", + "example_sentence_english": "The elephant has ivory tusks.", + "pos": "noun", + "word_frequency": 6445 + }, + { + "word": "mojado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wet", + "example_sentence_native": "El suelo está mojado después de la lluvia.", + "example_sentence_english": "The floor is wet after the rain.", + "pos": "adjective", + "word_frequency": 6449 + }, + { + "word": "narrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narrator", + "example_sentence_native": "El narrador de la historia era muy bueno.", + "example_sentence_english": "The narrator of the story was very good.", + "pos": "noun", + "word_frequency": 6450 + }, + { + "word": "nómina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "payroll;salary slip", + "example_sentence_native": "Recibí mi nómina hoy.", + "example_sentence_english": "I received my salary slip today.", + "pos": "noun", + "word_frequency": 6452 + }, + { + "word": "obrador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workshop;bakery", + "example_sentence_native": "El panadero trabaja en su obrador desde temprano.", + "example_sentence_english": "The baker works in his workshop from early morning.", + "pos": "noun", + "word_frequency": 6453 + }, + { + "word": "orientar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guide;to orient", + "example_sentence_native": "El mapa nos ayudará a orientarnos.", + "example_sentence_english": "The map will help us to orient ourselves.", + "pos": "verb", + "word_frequency": 6455 + }, + { + "word": "paradigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradigm", + "example_sentence_native": "Es un cambio de paradigma en la ciencia.", + "example_sentence_english": "It's a paradigm shift in science.", + "pos": "noun", + "word_frequency": 6457 + }, + { + "word": "perrito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "puppy;little dog", + "example_sentence_native": "Mi perrito es muy juguetón.", + "example_sentence_english": "My puppy is very playful.", + "pos": "noun", + "word_frequency": 6458 + }, + { + "word": "peste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plague;stench", + "example_sentence_native": "Había una peste terrible en la basura.", + "example_sentence_english": "There was a terrible stench in the trash.", + "pos": "noun", + "word_frequency": 6459 + }, + { + "word": "piba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "girl (colloquial;Argentina)", + "example_sentence_native": "Esa piba es muy inteligente.", + "example_sentence_english": "That girl is very intelligent.", + "pos": "noun", + "word_frequency": 6460 + }, + { + "word": "pisar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to step on;to tread", + "example_sentence_native": "Ten cuidado de no pisar el charco.", + "example_sentence_english": "Be careful not to step on the puddle.", + "pos": "verb", + "word_frequency": 6461 + }, + { + "word": "plantación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plantation", + "example_sentence_native": "La plantación de café es muy grande.", + "example_sentence_english": "The coffee plantation is very large.", + "pos": "noun", + "word_frequency": 6462 + }, + { + "word": "porquería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trash;junk;rubbish", + "example_sentence_native": "No comas esa porquería, es mala para la salud.", + "example_sentence_english": "Don't eat that junk, it's bad for your health.", + "pos": "noun", + "word_frequency": 6464 + }, + { + "word": "premisa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premise", + "example_sentence_native": "La premisa de su argumento es sólida.", + "example_sentence_english": "The premise of his argument is solid.", + "pos": "noun", + "word_frequency": 6465 + }, + { + "word": "preparativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation", + "example_sentence_native": "Los preparativos para la fiesta están casi listos.", + "example_sentence_english": "The preparations for the party are almost ready.", + "pos": "noun", + "word_frequency": 6466 + }, + { + "word": "prieto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark (complexion);tight", + "example_sentence_native": "El café es de color prieto.", + "example_sentence_english": "The coffee is dark in color.", + "pos": "adjective", + "word_frequency": 6467 + }, + { + "word": "racha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "streak;gust (of wind)", + "example_sentence_native": "Estamos en una buena racha de suerte.", + "example_sentence_english": "We are on a good luck streak.", + "pos": "noun", + "word_frequency": 6468 + }, + { + "word": "realismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realism", + "example_sentence_native": "Su obra de arte se caracteriza por su realismo.", + "example_sentence_english": "His artwork is characterized by its realism.", + "pos": "noun", + "word_frequency": 6469 + }, + { + "word": "refuerzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reinforcement;support", + "example_sentence_native": "Necesitamos un refuerzo para el equipo.", + "example_sentence_english": "We need reinforcement for the team.", + "pos": "noun", + "word_frequency": 6470 + }, + { + "word": "reja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grille;railing;fence", + "example_sentence_native": "La casa tiene una reja de hierro forjado.", + "example_sentence_english": "The house has a wrought iron grille.", + "pos": "noun", + "word_frequency": 6471 + }, + { + "word": "rentabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profitability", + "example_sentence_native": "La rentabilidad de la inversión es alta.", + "example_sentence_english": "The profitability of the investment is high.", + "pos": "noun", + "word_frequency": 6472 + }, + { + "word": "rentable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profitable", + "example_sentence_native": "Es un negocio muy rentable.", + "example_sentence_english": "It's a very profitable business.", + "pos": "adjective", + "word_frequency": 6473 + }, + { + "word": "repartir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distribute;to hand out", + "example_sentence_native": "Vamos a repartir los folletos.", + "example_sentence_english": "We are going to hand out the flyers.", + "pos": "verb", + "word_frequency": 6475 + }, + { + "word": "resentimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment", + "example_sentence_native": "Guardaba un profundo resentimiento.", + "example_sentence_english": "He harbored deep resentment.", + "pos": "noun", + "word_frequency": 6476 + }, + { + "word": "retroceso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setback;regression", + "example_sentence_native": "Fue un retroceso en el progreso.", + "example_sentence_english": "It was a setback in progress.", + "pos": "noun", + "word_frequency": 6477 + }, + { + "word": "rotación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotation;turnover", + "example_sentence_native": "La rotación de personal es alta.", + "example_sentence_english": "Staff turnover is high.", + "pos": "noun", + "word_frequency": 6478 + }, + { + "word": "solidario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supportive;in solidarity", + "example_sentence_native": "Es importante ser solidario con los demás.", + "example_sentence_english": "It's important to be supportive of others.", + "pos": "adjective", + "word_frequency": 6481 + }, + { + "word": "sport", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sport", + "example_sentence_native": "Mi deporte favorito es el fútbol.", + "example_sentence_english": "My favorite sport is football.", + "pos": "noun", + "word_frequency": 6482 + }, + { + "word": "sucesivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successively;consecutively", + "example_sentence_native": "Los eventos ocurrieron sucesivamente a lo largo del día.", + "example_sentence_english": "The events occurred successively throughout the day.", + "pos": "adverb", + "word_frequency": 6483 + }, + { + "word": "televisor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "television set", + "example_sentence_native": "Compramos un televisor nuevo para la sala.", + "example_sentence_english": "We bought a new television set for the living room.", + "pos": "noun", + "word_frequency": 6484 + }, + { + "word": "trío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trio", + "example_sentence_native": "El trío musical tocó una hermosa melodía.", + "example_sentence_english": "The musical trio played a beautiful melody.", + "pos": "noun", + "word_frequency": 6485 + }, + { + "word": "vinculación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "link;connection;bond", + "example_sentence_native": "Existe una fuerte vinculación entre la causa y el efecto.", + "example_sentence_english": "There is a strong link between cause and effect.", + "pos": "noun", + "word_frequency": 6486 + }, + { + "word": "abeja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bee", + "example_sentence_native": "Una abeja volaba alrededor de las flores.", + "example_sentence_english": "A bee was flying around the flowers.", + "pos": "noun", + "word_frequency": 6488 + }, + { + "word": "adhesión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adhesion;adherence;support", + "example_sentence_native": "La adhesión al tratado fue un paso importante.", + "example_sentence_english": "Adherence to the treaty was an important step.", + "pos": "noun", + "word_frequency": 6489 + }, + { + "word": "adicto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addicted", + "example_sentence_native": "Es adicto al café por las mañanas.", + "example_sentence_english": "He is addicted to coffee in the mornings.", + "pos": "adjective", + "word_frequency": 6490 + }, + { + "word": "agotado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhausted;sold out", + "example_sentence_native": "Después de correr, me sentía completamente agotado.", + "example_sentence_english": "After running, I felt completely exhausted.", + "pos": "adjective", + "word_frequency": 6491 + }, + { + "word": "apetito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appetite", + "example_sentence_native": "Tengo mucho apetito después de hacer ejercicio.", + "example_sentence_english": "I have a big appetite after exercising.", + "pos": "noun", + "word_frequency": 6494 + }, + { + "word": "artesano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artisan;craftsman", + "example_sentence_native": "El artesano creó una pieza de cerámica única.", + "example_sentence_english": "The artisan created a unique ceramic piece.", + "pos": "noun", + "word_frequency": 6496 + }, + { + "word": "asesoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultancy;advice", + "example_sentence_native": "Necesito asesoría legal para este caso.", + "example_sentence_english": "I need legal advice for this case.", + "pos": "noun", + "word_frequency": 6497 + }, + { + "word": "asombroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amazing;astonishing", + "example_sentence_native": "El paisaje era asombroso al amanecer.", + "example_sentence_english": "The landscape was amazing at dawn.", + "pos": "adjective", + "word_frequency": 6498 + }, + { + "word": "atletismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletics;track and field", + "example_sentence_native": "Practica atletismo desde joven en la escuela.", + "example_sentence_english": "He has practiced athletics since he was young in school.", + "pos": "noun", + "word_frequency": 6499 + }, + { + "word": "auricular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earphone;headset", + "example_sentence_native": "Usa auriculares para escuchar música en el autobús.", + "example_sentence_english": "He uses earphones to listen to music on the bus.", + "pos": "noun", + "word_frequency": 6500 + }, + { + "word": "bandeja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tray", + "example_sentence_native": "Sirvió el café en una bandeja de plata.", + "example_sentence_english": "He served the coffee on a silver tray.", + "pos": "noun", + "word_frequency": 6502 + }, + { + "word": "business", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business", + "example_sentence_native": "Hablamos de business durante la cena de trabajo.", + "example_sentence_english": "We talked about business during the working dinner.", + "pos": "noun", + "word_frequency": 6505 + }, + { + "word": "cabaña", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cabin;hut", + "example_sentence_native": "Pasamos el fin de semana en una cabaña en el bosque.", + "example_sentence_english": "We spent the weekend in a cabin in the forest.", + "pos": "noun", + "word_frequency": 6507 + }, + { + "word": "caloría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calorie", + "example_sentence_native": "Esta bebida tiene muchas calorías y azúcar.", + "example_sentence_english": "This drink has many calories and sugar.", + "pos": "noun", + "word_frequency": 6508 + }, + { + "word": "capricho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whim;caprice", + "example_sentence_native": "Compró el coche por un capricho, sin pensarlo mucho.", + "example_sentence_english": "He bought the car on a whim, without thinking much.", + "pos": "noun", + "word_frequency": 6509 + }, + { + "word": "carencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack;shortage", + "example_sentence_native": "La carencia de agua es un problema grave en la región.", + "example_sentence_english": "The lack of water is a serious problem in the region.", + "pos": "noun", + "word_frequency": 6510 + }, + { + "word": "cazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hunt", + "example_sentence_native": "Le gusta cazar conejos en el campo.", + "example_sentence_english": "He likes to hunt rabbits in the countryside.", + "pos": "verb", + "word_frequency": 6512 + }, + { + "word": "ceja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eyebrow", + "example_sentence_native": "Se depiló las cejas antes de la fiesta.", + "example_sentence_english": "She plucked her eyebrows before the party.", + "pos": "noun", + "word_frequency": 6513 + }, + { + "word": "centenar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a hundred;about a hundred", + "example_sentence_native": "Un centenar de personas asistieron al evento.", + "example_sentence_english": "About a hundred people attended the event.", + "pos": "noun", + "word_frequency": 6514 + }, + { + "word": "consorcio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consorcio", + "example_sentence_native": "El consorcio ganó la licitación para el proyecto de construcción.", + "example_sentence_english": "The consortium won the bid for the construction project.", + "pos": "noun", + "word_frequency": 6518 + }, + { + "word": "creyente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "believer", + "example_sentence_native": "Es un creyente firme en la justicia.", + "example_sentence_english": "He is a firm believer in justice.", + "pos": "noun", + "word_frequency": 6520 + }, + { + "word": "departamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "departmental", + "example_sentence_native": "La reunion departamental se llevara a cabo mañana.", + "example_sentence_english": "The departmental meeting will take place tomorrow.", + "pos": "adjective", + "word_frequency": 6522 + }, + { + "word": "dinosaurio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dinosaur", + "example_sentence_native": "Los dinosaurios vivieron hace millones de años.", + "example_sentence_english": "Dinosaurs lived millions of years ago.", + "pos": "noun", + "word_frequency": 6523 + }, + { + "word": "direccion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "direction;address", + "example_sentence_native": "¿Cual es la direccion de tu casa?", + "example_sentence_english": "What is your home address?", + "pos": "noun", + "word_frequency": 6524 + }, + { + "word": "emergente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerging", + "example_sentence_native": "Estamos viendo nuevas economias emergente.", + "example_sentence_english": "We are seeing new emerging economies.", + "pos": "adjective", + "word_frequency": 6526 + }, + { + "word": "especialización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specialization", + "example_sentence_native": "Su especializacion es la inteligencia artificial.", + "example_sentence_english": "His specialization is artificial intelligence.", + "pos": "noun", + "word_frequency": 6527 + }, + { + "word": "estrechamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closely;narrowly", + "example_sentence_native": "Los dos conceptos estan estrechamente relacionados.", + "example_sentence_english": "The two concepts are closely related.", + "pos": "adverb", + "word_frequency": 6530 + }, + { + "word": "exactitud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accuracy;exactness", + "example_sentence_native": "Necesitamos verificar la exactitud de los datos.", + "example_sentence_english": "We need to verify the accuracy of the data.", + "pos": "noun", + "word_frequency": 6531 + }, + { + "word": "faro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighthouse;headlight", + "example_sentence_native": "El faro guia a los barcos en la noche.", + "example_sentence_english": "The lighthouse guides ships at night.", + "pos": "noun", + "word_frequency": 6533 + }, + { + "word": "feriado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holiday (public)", + "example_sentence_native": "Mañana es feriado nacional.", + "example_sentence_english": "Tomorrow is a national holiday.", + "pos": "noun", + "word_frequency": 6534 + }, + { + "word": "flexibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flexibility", + "example_sentence_native": "La flexibilidad es clave en este trabajo.", + "example_sentence_english": "Flexibility is key in this job.", + "pos": "noun", + "word_frequency": 6535 + }, + { + "word": "fractura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fracture;break", + "example_sentence_native": "Se hizo una fractura en la pierna.", + "example_sentence_english": "He got a fracture in his leg.", + "pos": "noun", + "word_frequency": 6536 + }, + { + "word": "frances", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "French", + "example_sentence_native": "El es un escritor frances muy famoso.", + "example_sentence_english": "He is a very famous French writer.", + "pos": "adjective", + "word_frequency": 6538 + }, + { + "word": "implicación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implication;involvement", + "example_sentence_native": "Las implicaciones de esta decision son serias.", + "example_sentence_english": "The implications of this decision are serious.", + "pos": "noun", + "word_frequency": 6542 + }, + { + "word": "indiferente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indifferent", + "example_sentence_native": "El se mostro indiferente a sus problemas.", + "example_sentence_english": "He showed himself indifferent to their problems.", + "pos": "adjective", + "word_frequency": 6543 + }, + { + "word": "inmediación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immediacy;vicinity (often plural)", + "example_sentence_native": "Las inmediaciones del edificio estan vigiladas.", + "example_sentence_english": "The vicinity of the building is guarded.", + "pos": "noun", + "word_frequency": 6544 + }, + { + "word": "inolvidable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unforgettable", + "example_sentence_native": "Fue una experiencia inolvidable para todos.", + "example_sentence_english": "It was an unforgettable experience for everyone.", + "pos": "adjective", + "word_frequency": 6545 + }, + { + "word": "inquietud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restlessness;concern;anxiety", + "example_sentence_native": "Siento una gran inquietud por el futuro.", + "example_sentence_english": "I feel great concern for the future.", + "pos": "noun", + "word_frequency": 6546 + }, + { + "word": "inscrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered;enrolled;inscribed", + "example_sentence_native": "Su nombre esta inscrito en la lista de participantes.", + "example_sentence_english": "His name is inscribed on the list of participants.", + "pos": "adjective", + "word_frequency": 6547 + }, + { + "word": "intercambiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exchange;to swap", + "example_sentence_native": "Queremos intercambiar ideas sobre el proyecto.", + "example_sentence_english": "We want to exchange ideas about the project.", + "pos": "verb", + "word_frequency": 6548 + }, + { + "word": "internacionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internationally", + "example_sentence_native": "El evento fue reconocido internacionalmente.", + "example_sentence_english": "The event was internationally recognized.", + "pos": "adverb", + "word_frequency": 6549 + }, + { + "word": "ligado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "linked;tied;bound", + "example_sentence_native": "Su destino esta ligado al nuestro.", + "example_sentence_english": "His destiny is linked to ours.", + "pos": "adjective", + "word_frequency": 6551 + }, + { + "word": "limite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "limit;boundary", + "example_sentence_native": "Hay un limite de velocidad en esta carretera.", + "example_sentence_english": "There is a speed limit on this road.", + "pos": "noun", + "word_frequency": 6552 + }, + { + "word": "loma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hill;knoll", + "example_sentence_native": "Subimos la loma para ver el paisaje.", + "example_sentence_english": "We climbed the hill to see the landscape.", + "pos": "noun", + "word_frequency": 6553 + }, + { + "word": "medico", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "doctor;physician", + "example_sentence_native": "Necesito ver a un medico urgentemente.", + "example_sentence_english": "I urgently need to see a doctor.", + "pos": "noun", + "word_frequency": 6556 + }, + { + "word": "monseñor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Monsignor", + "example_sentence_native": "Monseñor Romero fue un defensor de los derechos humanos.", + "example_sentence_english": "Monsignor Romero was a defender of human rights.", + "pos": "noun", + "word_frequency": 6558 + }, + { + "word": "objetiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective", + "example_sentence_native": "Su opinión es muy objetiva.", + "example_sentence_english": "Her opinion is very objective.", + "pos": "adjective", + "word_frequency": 6561 + }, + { + "word": "olimpiada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympiad", + "example_sentence_native": "La próxima olimpiada será en París.", + "example_sentence_english": "The next Olympiad will be in Paris.", + "pos": "noun", + "word_frequency": 6563 + }, + { + "word": "organizador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organizer", + "example_sentence_native": "El organizador del evento hizo un gran trabajo.", + "example_sentence_english": "The event organizer did a great job.", + "pos": "noun", + "word_frequency": 6564 + }, + { + "word": "pampa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pampa", + "example_sentence_native": "Las pampas argentinas son muy extensas.", + "example_sentence_english": "The Argentine pampas are very extensive.", + "pos": "noun", + "word_frequency": 6565 + }, + { + "word": "pedagogía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedagogy", + "example_sentence_native": "La pedagogía moderna se centra en el estudiante.", + "example_sentence_english": "Modern pedagogy focuses on the student.", + "pos": "noun", + "word_frequency": 6566 + }, + { + "word": "pertenencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belonging", + "example_sentence_native": "Sentir un sentido de pertenencia es importante.", + "example_sentence_english": "Feeling a sense of belonging is important.", + "pos": "noun", + "word_frequency": 6567 + }, + { + "word": "plancha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "iron", + "example_sentence_native": "Necesito una plancha para mi ropa.", + "example_sentence_english": "I need an iron for my clothes.", + "pos": "noun", + "word_frequency": 6569 + }, + { + "word": "planteamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach", + "example_sentence_native": "Su planteamiento del problema fue muy claro.", + "example_sentence_english": "His approach to the problem was very clear.", + "pos": "noun", + "word_frequency": 6570 + }, + { + "word": "plástica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plastic arts", + "example_sentence_native": "Estudió artes plásticas en la universidad.", + "example_sentence_english": "She studied plastic arts at university.", + "pos": "noun", + "word_frequency": 6571 + }, + { + "word": "posada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inn", + "example_sentence_native": "Nos alojamos en una pequeña posada rural.", + "example_sentence_english": "We stayed in a small rural inn.", + "pos": "noun", + "word_frequency": 6572 + }, + { + "word": "pronunciar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pronounce", + "example_sentence_native": "Es difícil pronunciar algunas palabras en español.", + "example_sentence_english": "It's difficult to pronounce some words in Spanish.", + "pos": "verb", + "word_frequency": 6573 + }, + { + "word": "recaudar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collect", + "example_sentence_native": "La organización busca recaudar fondos para la causa.", + "example_sentence_english": "The organization seeks to raise funds for the cause.", + "pos": "verb", + "word_frequency": 6574 + }, + { + "word": "reconciliación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconciliation", + "example_sentence_native": "La reconciliación entre las partes es esencial.", + "example_sentence_english": "Reconciliation between the parties is essential.", + "pos": "noun", + "word_frequency": 6575 + }, + { + "word": "recreo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recess", + "example_sentence_native": "Los niños juegan en el recreo.", + "example_sentence_english": "The children play during recess.", + "pos": "noun", + "word_frequency": 6576 + }, + { + "word": "reportar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to report", + "example_sentence_native": "Debes reportar cualquier incidente a la policía.", + "example_sentence_english": "You must report any incident to the police.", + "pos": "verb", + "word_frequency": 6577 + }, + { + "word": "réplica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replica", + "example_sentence_native": "El museo exhibe una réplica exacta del original.", + "example_sentence_english": "The museum exhibits an exact replica of the original.", + "pos": "noun", + "word_frequency": 6579 + }, + { + "word": "santidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holiness", + "example_sentence_native": "Se refiere a Su Santidad el Papa.", + "example_sentence_english": "He refers to His Holiness the Pope.", + "pos": "noun", + "word_frequency": 6580 + }, + { + "word": "senda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "path", + "example_sentence_native": "Seguimos la senda a través del bosque.", + "example_sentence_english": "We followed the path through the forest.", + "pos": "noun", + "word_frequency": 6581 + }, + { + "word": "sirio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Syrian", + "example_sentence_native": "Muchos refugiados sirios buscan asilo.", + "example_sentence_english": "Many Syrian refugees seek asylum.", + "pos": "adjective", + "word_frequency": 6583 + }, + { + "word": "suplente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute", + "example_sentence_native": "El jugador suplente entró en el segundo tiempo.", + "example_sentence_english": "The substitute player entered in the second half.", + "pos": "noun", + "word_frequency": 6586 + }, + { + "word": "temblor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tremor", + "example_sentence_native": "Hubo un pequeño temblor esta mañana.", + "example_sentence_english": "There was a small tremor this morning.", + "pos": "noun", + "word_frequency": 6588 + }, + { + "word": "vereda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sidewalk", + "example_sentence_native": "Caminamos por la vereda hasta el parque.", + "example_sentence_english": "We walked along the sidewalk to the park.", + "pos": "noun", + "word_frequency": 6592 + }, + { + "word": "índole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nature", + "example_sentence_native": "Es un problema de índole social.", + "example_sentence_english": "It's a problem of a social nature.", + "pos": "noun", + "word_frequency": 6594 + }, + { + "word": "íntimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimate", + "example_sentence_native": "Son amigos íntimos desde la infancia.", + "example_sentence_english": "They have been intimate friends since childhood.", + "pos": "adjective", + "word_frequency": 6595 + }, + { + "word": "albergar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to house", + "example_sentence_native": "El edificio puede albergar a cien personas.", + "example_sentence_english": "The building can house a hundred people.", + "pos": "verb", + "word_frequency": 6597 + }, + { + "word": "amateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amateur", + "example_sentence_native": "Es un fotógrafo amateur, pero muy talentoso.", + "example_sentence_english": "He is an amateur photographer, but very talented.", + "pos": "noun", + "word_frequency": 6598 + }, + { + "word": "antología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthology", + "example_sentence_native": "Publicó una antología de sus poemas.", + "example_sentence_english": "He published an anthology of his poems.", + "pos": "noun", + "word_frequency": 6599 + }, + { + "word": "ara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altar", + "example_sentence_native": "El sacerdote colocó las ofrendas sobre el ara.", + "example_sentence_english": "The priest placed the offerings on the altar.", + "pos": "noun", + "word_frequency": 6600 + }, + { + "word": "ascender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ascend;to promote", + "example_sentence_native": "Ella espera ascender en su carrera.", + "example_sentence_english": "She hopes to ascend in her career.", + "pos": "verb", + "word_frequency": 6602 + }, + { + "word": "asentamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settlement", + "example_sentence_native": "Descubrieron un antiguo asentamiento romano.", + "example_sentence_english": "They discovered an ancient Roman settlement.", + "pos": "noun", + "word_frequency": 6603 + }, + { + "word": "atardecer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunset;dusk", + "example_sentence_native": "El atardecer sobre el mar era hermoso.", + "example_sentence_english": "The sunset over the sea was beautiful.", + "pos": "noun", + "word_frequency": 6604 + }, + { + "word": "atrever", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dare", + "example_sentence_native": "No se atreve a hablar en público.", + "example_sentence_english": "He doesn't dare to speak in public.", + "pos": "verb", + "word_frequency": 6605 + }, + { + "word": "avatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avatar", + "example_sentence_native": "Creó un avatar para su perfil en línea.", + "example_sentence_english": "He created an avatar for his online profile.", + "pos": "noun", + "word_frequency": 6606 + }, + { + "word": "barón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baron", + "example_sentence_native": "El barón vivía en un gran castillo.", + "example_sentence_english": "The baron lived in a large castle.", + "pos": "noun", + "word_frequency": 6610 + }, + { + "word": "bendito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blessed;holy", + "example_sentence_native": "Fue un momento bendito para todos.", + "example_sentence_english": "It was a blessed moment for everyone.", + "pos": "adjective", + "word_frequency": 6611 + }, + { + "word": "brillar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shine", + "example_sentence_native": "Las estrellas brillan en la noche.", + "example_sentence_english": "The stars shine at night.", + "pos": "verb", + "word_frequency": 6612 + }, + { + "word": "canasta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket", + "example_sentence_native": "Metió la pelota en la canasta.", + "example_sentence_english": "He put the ball in the basket.", + "pos": "noun", + "word_frequency": 6613 + }, + { + "word": "caído", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fallen", + "example_sentence_native": "Encontraron un árbol caído en el camino.", + "example_sentence_english": "They found a fallen tree on the path.", + "pos": "adjective", + "word_frequency": 6614 + }, + { + "word": "chaval", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;lad", + "example_sentence_native": "Ese chaval es muy listo.", + "example_sentence_english": "That kid is very smart.", + "pos": "noun", + "word_frequency": 6615 + }, + { + "word": "competidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competitor", + "example_sentence_native": "Es un competidor muy fuerte en el deporte.", + "example_sentence_english": "He is a very strong competitor in the sport.", + "pos": "noun", + "word_frequency": 6616 + }, + { + "word": "confuso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confused;confusing", + "example_sentence_native": "La explicación fue un poco confusa.", + "example_sentence_english": "The explanation was a bit confusing.", + "pos": "adjective", + "word_frequency": 6617 + }, + { + "word": "discípulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disciple;student", + "example_sentence_native": "El maestro tenía muchos discípulos.", + "example_sentence_english": "The master had many disciples.", + "pos": "noun", + "word_frequency": 6618 + }, + { + "word": "dominación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domination", + "example_sentence_native": "La dominación de un imperio puede durar siglos.", + "example_sentence_english": "The domination of an empire can last for centuries.", + "pos": "noun", + "word_frequency": 6619 + }, + { + "word": "drenaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drainage", + "example_sentence_native": "El sistema de drenaje de la ciudad es antiguo.", + "example_sentence_english": "The city's drainage system is old.", + "pos": "noun", + "word_frequency": 6620 + }, + { + "word": "elegancia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elegance", + "example_sentence_native": "Su elegancia al vestir es notable.", + "example_sentence_english": "Her elegance in dressing is remarkable.", + "pos": "noun", + "word_frequency": 6623 + }, + { + "word": "escalada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climb;escalation", + "example_sentence_native": "La escalada de la montaña fue difícil.", + "example_sentence_english": "The climb of the mountain was difficult.", + "pos": "noun", + "word_frequency": 6624 + }, + { + "word": "escolta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escort;guard", + "example_sentence_native": "El presidente viajaba con una escolta de seguridad.", + "example_sentence_english": "The president traveled with a security escort.", + "pos": "noun", + "word_frequency": 6625 + }, + { + "word": "escuadra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "square (tool);squad", + "example_sentence_native": "La escuadra de fútbol entrenó duro.", + "example_sentence_english": "The soccer squad trained hard.", + "pos": "noun", + "word_frequency": 6626 + }, + { + "word": "espina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thorn;spine", + "example_sentence_native": "Me clavé una espina en el dedo.", + "example_sentence_english": "I got a thorn stuck in my finger.", + "pos": "noun", + "word_frequency": 6627 + }, + { + "word": "estatura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "height", + "example_sentence_native": "Su estatura es impresionante.", + "example_sentence_english": "His height is impressive.", + "pos": "noun", + "word_frequency": 6628 + }, + { + "word": "estímulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulus;incentive", + "example_sentence_native": "Necesita un estímulo para seguir adelante.", + "example_sentence_english": "He needs a stimulus to keep going.", + "pos": "noun", + "word_frequency": 6629 + }, + { + "word": "eventual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eventual;possible", + "example_sentence_native": "Consideramos todas las consecuencias eventuales.", + "example_sentence_english": "We considered all the eventual consequences.", + "pos": "adjective", + "word_frequency": 6630 + }, + { + "word": "festividad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festivity;holiday", + "example_sentence_native": "La Navidad es una festividad importante.", + "example_sentence_english": "Christmas is an important holiday.", + "pos": "noun", + "word_frequency": 6631 + }, + { + "word": "fraternidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraternity;brotherhood", + "example_sentence_native": "La fraternidad entre los soldados era fuerte.", + "example_sentence_english": "The fraternity among the soldiers was strong.", + "pos": "noun", + "word_frequency": 6632 + }, + { + "word": "grandioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grandiose;magnificent", + "example_sentence_native": "Fue un espectáculo grandioso.", + "example_sentence_english": "It was a magnificent show.", + "pos": "adjective", + "word_frequency": 6633 + }, + { + "word": "heroína", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heroine", + "example_sentence_native": "Ella es la heroína de la historia.", + "example_sentence_english": "She is the heroine of the story.", + "pos": "noun", + "word_frequency": 6635 + }, + { + "word": "húngaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hungarian", + "example_sentence_native": "La comida húngara es deliciosa.", + "example_sentence_english": "Hungarian food is delicious.", + "pos": "adjective", + "word_frequency": 6636 + }, + { + "word": "incorrecto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "incorrect", + "example_sentence_native": "Tu respuesta es incorrecta.", + "example_sentence_english": "Your answer is incorrect.", + "pos": "adjective", + "word_frequency": 6637 + }, + { + "word": "inmortal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immortal", + "example_sentence_native": "Los dioses griegos eran inmortales.", + "example_sentence_english": "The Greek gods were immortal.", + "pos": "adjective", + "word_frequency": 6638 + }, + { + "word": "interactuar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interact", + "example_sentence_native": "Es importante interactuar con los demás.", + "example_sentence_english": "It's important to interact with others.", + "pos": "verb", + "word_frequency": 6639 + }, + { + "word": "jaula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cage", + "example_sentence_native": "El pájaro está en la jaula.", + "example_sentence_english": "The bird is in the cage.", + "pos": "noun", + "word_frequency": 6640 + }, + { + "word": "jueza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judge (female)", + "example_sentence_native": "La jueza dictó sentencia.", + "example_sentence_english": "The judge delivered the verdict.", + "pos": "noun", + "word_frequency": 6641 + }, + { + "word": "luto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mourning", + "example_sentence_native": "La familia está de luto.", + "example_sentence_english": "The family is in mourning.", + "pos": "noun", + "word_frequency": 6644 + }, + { + "word": "masaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "massage", + "example_sentence_native": "Necesito un masaje en la espalda.", + "example_sentence_english": "I need a back massage.", + "pos": "noun", + "word_frequency": 6645 + }, + { + "word": "mentalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentally", + "example_sentence_native": "Ella calculó el resultado mentalmente.", + "example_sentence_english": "She calculated the result mentally.", + "pos": "adverb", + "word_frequency": 6646 + }, + { + "word": "mezclar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mix", + "example_sentence_native": "Hay que mezclar bien los ingredientes.", + "example_sentence_english": "You have to mix the ingredients well.", + "pos": "verb", + "word_frequency": 6647 + }, + { + "word": "militancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militancy;membership", + "example_sentence_native": "Su militancia en el partido es conocida.", + "example_sentence_english": "His membership in the party is well-known.", + "pos": "noun", + "word_frequency": 6648 + }, + { + "word": "navegador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "browser;navigator", + "example_sentence_native": "Usa un navegador seguro para internet.", + "example_sentence_english": "Use a secure browser for the internet.", + "pos": "noun", + "word_frequency": 6651 + }, + { + "word": "pala", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shovel;spade", + "example_sentence_native": "Necesitamos una pala para cavar.", + "example_sentence_english": "We need a shovel to dig.", + "pos": "noun", + "word_frequency": 6653 + }, + { + "word": "paliza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beating;thrashing", + "example_sentence_native": "El equipo sufrió una paliza.", + "example_sentence_english": "The team suffered a thrashing.", + "pos": "noun", + "word_frequency": 6654 + }, + { + "word": "persa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Persian", + "example_sentence_native": "Le gusta la alfombra persa.", + "example_sentence_english": "He likes the Persian rug.", + "pos": "adjective", + "word_frequency": 6655 + }, + { + "word": "polar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polar", + "example_sentence_native": "El oso polar vive en el Ártico.", + "example_sentence_english": "The polar bear lives in the Arctic.", + "pos": "adjective", + "word_frequency": 6656 + }, + { + "word": "prefectura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prefecture", + "example_sentence_native": "La prefectura es responsable de la seguridad.", + "example_sentence_english": "The prefecture is responsible for security.", + "pos": "noun", + "word_frequency": 6657 + }, + { + "word": "privatización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "privatization", + "example_sentence_native": "La privatización de la empresa generó debate.", + "example_sentence_english": "The privatization of the company generated debate.", + "pos": "noun", + "word_frequency": 6658 + }, + { + "word": "psiquiatra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychiatrist", + "example_sentence_native": "El psiquiatra le ayudó mucho.", + "example_sentence_english": "The psychiatrist helped him a lot.", + "pos": "noun", + "word_frequency": 6659 + }, + { + "word": "rana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frog", + "example_sentence_native": "La rana saltó al agua.", + "example_sentence_english": "The frog jumped into the water.", + "pos": "noun", + "word_frequency": 6660 + }, + { + "word": "rencor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment;grudge", + "example_sentence_native": "No guardes rencor a nadie.", + "example_sentence_english": "Don't hold a grudge against anyone.", + "pos": "noun", + "word_frequency": 6661 + }, + { + "word": "representativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representative", + "example_sentence_native": "Es un ejemplo muy representativo.", + "example_sentence_english": "It's a very representative example.", + "pos": "adjective", + "word_frequency": 6662 + }, + { + "word": "requerido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "required", + "example_sentence_native": "La información requerida está en el formulario.", + "example_sentence_english": "The required information is on the form.", + "pos": "adjective", + "word_frequency": 6663 + }, + { + "word": "respiro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break;respite", + "example_sentence_native": "Necesito un respiro de tanto trabajo.", + "example_sentence_english": "I need a break from so much work.", + "pos": "noun", + "word_frequency": 6664 + }, + { + "word": "retomar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resume;to retake", + "example_sentence_native": "Vamos a retomar la conversación mañana.", + "example_sentence_english": "We will resume the conversation tomorrow.", + "pos": "verb", + "word_frequency": 6665 + }, + { + "word": "sembrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sow;to plant", + "example_sentence_native": "Es tiempo de sembrar las semillas.", + "example_sentence_english": "It's time to sow the seeds.", + "pos": "verb", + "word_frequency": 6666 + }, + { + "word": "sucursal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch (office)", + "example_sentence_native": "La sucursal del banco está en el centro.", + "example_sentence_english": "The bank branch is downtown.", + "pos": "noun", + "word_frequency": 6668 + }, + { + "word": "suscriptor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subscriber", + "example_sentence_native": "El canal tiene muchos suscriptores.", + "example_sentence_english": "The channel has many subscribers.", + "pos": "noun", + "word_frequency": 6669 + }, + { + "word": "torpe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clumsy;awkward", + "example_sentence_native": "Es un poco torpe con las manos.", + "example_sentence_english": "He's a bit clumsy with his hands.", + "pos": "adjective", + "word_frequency": 6671 + }, + { + "word": "valla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence;hurdle;billboard", + "example_sentence_native": "Saltó la valla del jardín.", + "example_sentence_english": "He jumped over the garden fence.", + "pos": "noun", + "word_frequency": 6673 + }, + { + "word": "ambicioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambitious", + "example_sentence_native": "Es una persona muy ambiciosa.", + "example_sentence_english": "He is a very ambitious person.", + "pos": "adjective", + "word_frequency": 6678 + }, + { + "word": "anatomía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anatomy", + "example_sentence_native": "Estudiamos la anatomía humana.", + "example_sentence_english": "We study human anatomy.", + "pos": "noun", + "word_frequency": 6679 + }, + { + "word": "anécdota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anecdote", + "example_sentence_native": "Contó una anécdota divertida sobre su viaje.", + "example_sentence_english": "He told a funny anecdote about his trip.", + "pos": "noun", + "word_frequency": 6680 + }, + { + "word": "arbitraje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitration", + "example_sentence_native": "El conflicto se resolvió mediante arbitraje.", + "example_sentence_english": "The conflict was resolved through arbitration.", + "pos": "noun", + "word_frequency": 6682 + }, + { + "word": "bailarín", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dancer", + "example_sentence_native": "Es un bailarín muy talentoso.", + "example_sentence_english": "He is a very talented dancer.", + "pos": "noun", + "word_frequency": 6684 + }, + { + "word": "biodiversidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biodiversity", + "example_sentence_native": "La selva amazónica es rica en biodiversidad.", + "example_sentence_english": "The Amazon rainforest is rich in biodiversity.", + "pos": "noun", + "word_frequency": 6685 + }, + { + "word": "calcio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calcium", + "example_sentence_native": "La leche es una buena fuente de calcio.", + "example_sentence_english": "Milk is a good source of calcium.", + "pos": "noun", + "word_frequency": 6686 + }, + { + "word": "cargador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "charger", + "example_sentence_native": "Necesito mi cargador para el teléfono.", + "example_sentence_english": "I need my charger for the phone.", + "pos": "noun", + "word_frequency": 6688 + }, + { + "word": "cometa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kite", + "example_sentence_native": "Los niños volaban una cometa en el parque.", + "example_sentence_english": "The children were flying a kite in the park.", + "pos": "noun", + "word_frequency": 6690 + }, + { + "word": "concentrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "focused", + "example_sentence_native": "Estaba muy concentrado en su trabajo.", + "example_sentence_english": "He was very focused on his work.", + "pos": "adjective", + "word_frequency": 6691 + }, + { + "word": "confiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trusting", + "example_sentence_native": "Es una persona muy confiada.", + "example_sentence_english": "He is a very trusting person.", + "pos": "adjective", + "word_frequency": 6692 + }, + { + "word": "cuervo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crow", + "example_sentence_native": "Un cuervo voló sobre el campo.", + "example_sentence_english": "A crow flew over the field.", + "pos": "noun", + "word_frequency": 6694 + }, + { + "word": "desarrollado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developed", + "example_sentence_native": "Es un país muy desarrollado.", + "example_sentence_english": "It is a very developed country.", + "pos": "adjective", + "word_frequency": 6696 + }, + { + "word": "desperdicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste", + "example_sentence_native": "Hay mucho desperdicio de comida en el restaurante.", + "example_sentence_english": "There is a lot of food waste in the restaurant.", + "pos": "noun", + "word_frequency": 6697 + }, + { + "word": "docencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaching", + "example_sentence_native": "Se dedica a la docencia universitaria.", + "example_sentence_english": "She is dedicated to university teaching.", + "pos": "noun", + "word_frequency": 6698 + }, + { + "word": "dominado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastered", + "example_sentence_native": "Es un idioma que tiene dominado.", + "example_sentence_english": "It's a language he has mastered.", + "pos": "adjective", + "word_frequency": 6699 + }, + { + "word": "doscientos", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two hundred", + "example_sentence_native": "Compró doscientos libros.", + "example_sentence_english": "He bought two hundred books.", + "pos": "adjective", + "word_frequency": 6700 + }, + { + "word": "egipcio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Egyptian", + "example_sentence_native": "Visitó las pirámides egipcias.", + "example_sentence_english": "He visited the Egyptian pyramids.", + "pos": "adjective", + "word_frequency": 6701 + }, + { + "word": "elenco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cast", + "example_sentence_native": "El elenco de la película es excelente.", + "example_sentence_english": "The cast of the movie is excellent.", + "pos": "noun", + "word_frequency": 6702 + }, + { + "word": "emitido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broadcast", + "example_sentence_native": "El programa fue emitido anoche.", + "example_sentence_english": "The program was broadcast last night.", + "pos": "adjective", + "word_frequency": 6704 + }, + { + "word": "empuje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drive", + "example_sentence_native": "Necesitamos un nuevo empuje para el proyecto.", + "example_sentence_english": "We need a new drive for the project.", + "pos": "noun", + "word_frequency": 6705 + }, + { + "word": "erupción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eruption", + "example_sentence_native": "La erupción del volcán causó evacuaciones.", + "example_sentence_english": "The volcano's eruption caused evacuations.", + "pos": "noun", + "word_frequency": 6706 + }, + { + "word": "especificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specification", + "example_sentence_native": "Las especificaciones técnicas son muy detalladas.", + "example_sentence_english": "The technical specifications are very detailed.", + "pos": "noun", + "word_frequency": 6707 + }, + { + "word": "espionaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "espionage", + "example_sentence_native": "Fue acusado de espionaje.", + "example_sentence_english": "He was accused of espionage.", + "pos": "noun", + "word_frequency": 6708 + }, + { + "word": "estallar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to explode", + "example_sentence_native": "La bomba estalló en el edificio.", + "example_sentence_english": "The bomb exploded in the building.", + "pos": "verb", + "word_frequency": 6709 + }, + { + "word": "eternamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternally", + "example_sentence_native": "Te amaré eternamente.", + "example_sentence_english": "I will love you eternally.", + "pos": "adverb", + "word_frequency": 6710 + }, + { + "word": "falto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking", + "example_sentence_native": "Está falto de experiencia.", + "example_sentence_english": "He is lacking in experience.", + "pos": "adjective", + "word_frequency": 6711 + }, + { + "word": "fósil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fossil", + "example_sentence_native": "Encontraron un fósil de dinosaurio.", + "example_sentence_english": "They found a dinosaur fossil.", + "pos": "noun", + "word_frequency": 6712 + }, + { + "word": "ganado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "livestock", + "example_sentence_native": "El granjero tiene mucho ganado.", + "example_sentence_english": "The farmer has a lot of livestock.", + "pos": "noun", + "word_frequency": 6713 + }, + { + "word": "gerencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "example_sentence_native": "La gerencia tomó una decisión importante.", + "example_sentence_english": "The management made an important decision.", + "pos": "noun", + "word_frequency": 6714 + }, + { + "word": "grabado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engraving", + "example_sentence_native": "Es un grabado antiguo muy valioso.", + "example_sentence_english": "It is a very valuable ancient engraving.", + "pos": "noun", + "word_frequency": 6717 + }, + { + "word": "hito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "milestone", + "example_sentence_native": "Este descubrimiento es un hito en la ciencia.", + "example_sentence_english": "This discovery is a milestone in science.", + "pos": "noun", + "word_frequency": 6718 + }, + { + "word": "hábil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skillful", + "example_sentence_native": "Es un trabajador muy hábil.", + "example_sentence_english": "He is a very skillful worker.", + "pos": "adjective", + "word_frequency": 6720 + }, + { + "word": "imaginado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imagined", + "example_sentence_native": "El mundo que creó era puramente imaginado.", + "example_sentence_english": "The world he created was purely imagined.", + "pos": "adjective", + "word_frequency": 6721 + }, + { + "word": "interes", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interest", + "example_sentence_native": "Tengo mucho interes en aprender español.", + "example_sentence_english": "I have a lot of interest in learning Spanish.", + "pos": "noun", + "word_frequency": 6722 + }, + { + "word": "invención", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invention", + "example_sentence_native": "La rueda fue una gran invención.", + "example_sentence_english": "The wheel was a great invention.", + "pos": "noun", + "word_frequency": 6723 + }, + { + "word": "involucrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to involve", + "example_sentence_native": "No quiero involucrarme en ese problema.", + "example_sentence_english": "I don't want to get involved in that problem.", + "pos": "verb", + "word_frequency": 6724 + }, + { + "word": "lapso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lapse;period", + "example_sentence_native": "Hubo un lapso de tiempo entre los dos eventos.", + "example_sentence_english": "There was a lapse of time between the two events.", + "pos": "noun", + "word_frequency": 6727 + }, + { + "word": "lomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loin;back (of an animal;book)", + "example_sentence_native": "El lomo de cerdo es muy sabroso.", + "example_sentence_english": "Pork loin is very tasty.", + "pos": "noun", + "word_frequency": 6728 + }, + { + "word": "mediocre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediocre", + "example_sentence_native": "Su actuación fue bastante mediocre.", + "example_sentence_english": "His performance was quite mediocre.", + "pos": "adjective", + "word_frequency": 6732 + }, + { + "word": "monja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nun", + "example_sentence_native": "La monja vivía en el convento.", + "example_sentence_english": "The nun lived in the convent.", + "pos": "noun", + "word_frequency": 6733 + }, + { + "word": "movido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lively;busy", + "example_sentence_native": "La fiesta estuvo muy movida.", + "example_sentence_english": "The party was very lively.", + "pos": "adjective", + "word_frequency": 6734 + }, + { + "word": "mural", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mural", + "example_sentence_native": "Pintaron un hermoso mural en la pared.", + "example_sentence_english": "They painted a beautiful mural on the wall.", + "pos": "noun", + "word_frequency": 6735 + }, + { + "word": "neurona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neuron", + "example_sentence_native": "Las neuronas transmiten señales en el cerebro.", + "example_sentence_english": "Neurons transmit signals in the brain.", + "pos": "noun", + "word_frequency": 6736 + }, + { + "word": "nevada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowfall", + "example_sentence_native": "Tuvimos una gran nevada anoche.", + "example_sentence_english": "We had a big snowfall last night.", + "pos": "noun", + "word_frequency": 6737 + }, + { + "word": "noticiero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "news program", + "example_sentence_native": "Veo el noticiero todas las noches.", + "example_sentence_english": "I watch the news program every night.", + "pos": "noun", + "word_frequency": 6738 + }, + { + "word": "novelista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novelist", + "example_sentence_native": "Gabriel García Márquez fue un gran novelista.", + "example_sentence_english": "Gabriel García Márquez was a great novelist.", + "pos": "noun", + "word_frequency": 6740 + }, + { + "word": "nuca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nape (of the neck)", + "example_sentence_native": "Sentí un escalofrío en la nuca.", + "example_sentence_english": "I felt a chill on the nape of my neck.", + "pos": "noun", + "word_frequency": 6741 + }, + { + "word": "ofendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offended", + "example_sentence_native": "Se sintió muy ofendido por sus palabras.", + "example_sentence_english": "He felt very offended by her words.", + "pos": "adjective", + "word_frequency": 6742 + }, + { + "word": "ordenanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ordinance;orderly", + "example_sentence_native": "La ciudad aprobó una nueva ordenanza.", + "example_sentence_english": "The city approved a new ordinance.", + "pos": "noun", + "word_frequency": 6743 + }, + { + "word": "orientado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oriented;directed", + "example_sentence_native": "El edificio está orientado al sur.", + "example_sentence_english": "The building is oriented to the south.", + "pos": "adjective", + "word_frequency": 6744 + }, + { + "word": "panda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panda", + "example_sentence_native": "El panda gigante es un animal en peligro de extinción.", + "example_sentence_english": "The giant panda is an endangered animal.", + "pos": "noun", + "word_frequency": 6746 + }, + { + "word": "panza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly;tummy", + "example_sentence_native": "Le dolía la panza después de comer tanto.", + "example_sentence_english": "His belly hurt after eating so much.", + "pos": "noun", + "word_frequency": 6747 + }, + { + "word": "parra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grapevine", + "example_sentence_native": "Las uvas crecen en la parra.", + "example_sentence_english": "Grapes grow on the grapevine.", + "pos": "noun", + "word_frequency": 6748 + }, + { + "word": "perseguido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persecuted;pursued", + "example_sentence_native": "Era un hombre perseguido por la justicia.", + "example_sentence_english": "He was a man pursued by justice.", + "pos": "adjective", + "word_frequency": 6752 + }, + { + "word": "picante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spicy;hot", + "example_sentence_native": "La comida mexicana suele ser picante.", + "example_sentence_english": "Mexican food is usually spicy.", + "pos": "adjective", + "word_frequency": 6756 + }, + { + "word": "plasma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plasma", + "example_sentence_native": "La sangre se compone de plasma y células.", + "example_sentence_english": "Blood is composed of plasma and cells.", + "pos": "noun", + "word_frequency": 6757 + }, + { + "word": "pornografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pornography", + "example_sentence_native": "La pornografía es un tema controvertido.", + "example_sentence_english": "Pornography is a controversial topic.", + "pos": "noun", + "word_frequency": 6758 + }, + { + "word": "posicionamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "positioning;placement", + "example_sentence_native": "El posicionamiento de la marca es clave para el éxito.", + "example_sentence_english": "Brand positioning is key to success.", + "pos": "noun", + "word_frequency": 6759 + }, + { + "word": "preservación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preservation", + "example_sentence_native": "La preservación del medio ambiente es crucial.", + "example_sentence_english": "The preservation of the environment is crucial.", + "pos": "noun", + "word_frequency": 6760 + }, + { + "word": "progresivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progressive", + "example_sentence_native": "El impuesto progresivo ayuda a redistribuir la riqueza.", + "example_sentence_english": "The progressive tax helps redistribute wealth.", + "pos": "adjective", + "word_frequency": 6761 + }, + { + "word": "promocional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promotional", + "example_sentence_native": "Recibimos un correo electrónico promocional con descuentos.", + "example_sentence_english": "We received a promotional email with discounts.", + "pos": "adjective", + "word_frequency": 6762 + }, + { + "word": "prudente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prudent", + "example_sentence_native": "Es prudente ahorrar dinero para el futuro.", + "example_sentence_english": "It is prudent to save money for the future.", + "pos": "adjective", + "word_frequency": 6763 + }, + { + "word": "pureza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purity", + "example_sentence_native": "La pureza del agua es esencial para la salud.", + "example_sentence_english": "The purity of water is essential for health.", + "pos": "noun", + "word_frequency": 6764 + }, + { + "word": "pésimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrible", + "example_sentence_native": "El servicio en ese restaurante fue pésimo.", + "example_sentence_english": "The service in that restaurant was terrible.", + "pos": "adjective", + "word_frequency": 6765 + }, + { + "word": "repetido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "repeated", + "example_sentence_native": "No me gusta escuchar la misma canción repetida.", + "example_sentence_english": "I don't like listening to the same song repeated.", + "pos": "adjective", + "word_frequency": 6766 + }, + { + "word": "reportero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reporter", + "example_sentence_native": "El reportero cubrió la noticia en vivo.", + "example_sentence_english": "The reporter covered the news live.", + "pos": "noun", + "word_frequency": 6767 + }, + { + "word": "retener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retain", + "example_sentence_native": "Es difícil retener tanta información.", + "example_sentence_english": "It's difficult to retain so much information.", + "pos": "verb", + "word_frequency": 6768 + }, + { + "word": "smartphone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smartphone", + "example_sentence_native": "Mi nuevo smartphone tiene una cámara excelente.", + "example_sentence_english": "My new smartphone has an excellent camera.", + "pos": "noun", + "word_frequency": 6772 + }, + { + "word": "soñado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dreamed", + "example_sentence_native": "Esta es la casa soñada de mis padres.", + "example_sentence_english": "This is my parents' dream house.", + "pos": "adjective", + "word_frequency": 6773 + }, + { + "word": "suavemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "softly", + "example_sentence_native": "Abrió la puerta suavemente para no despertar a nadie.", + "example_sentence_english": "He opened the door softly so as not to wake anyone.", + "pos": "adverb", + "word_frequency": 6776 + }, + { + "word": "subterráneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subway", + "example_sentence_native": "Tomamos el subterráneo para llegar al centro.", + "example_sentence_english": "We took the subway to get to the city center.", + "pos": "noun", + "word_frequency": 6777 + }, + { + "word": "tacto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tact", + "example_sentence_native": "Hay que tener tacto al hablar de temas delicados.", + "example_sentence_english": "One must have tact when talking about delicate subjects.", + "pos": "noun", + "word_frequency": 6778 + }, + { + "word": "tapar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cover", + "example_sentence_native": "Por favor, tapa la olla para que hierva más rápido.", + "example_sentence_english": "Please cover the pot so it boils faster.", + "pos": "verb", + "word_frequency": 6779 + }, + { + "word": "travesía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journey", + "example_sentence_native": "La travesía por el desierto fue agotadora.", + "example_sentence_english": "The desert journey was exhausting.", + "pos": "noun", + "word_frequency": 6781 + }, + { + "word": "venda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandage", + "example_sentence_native": "Necesitamos una venda para la herida.", + "example_sentence_english": "We need a bandage for the wound.", + "pos": "noun", + "word_frequency": 6782 + }, + { + "word": "vestimenta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clothing", + "example_sentence_native": "La vestimenta tradicional es muy colorida.", + "example_sentence_english": "Traditional clothing is very colorful.", + "pos": "noun", + "word_frequency": 6783 + }, + { + "word": "whisky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whisky", + "example_sentence_native": "Prefiero un whisky con hielo.", + "example_sentence_english": "I prefer a whisky with ice.", + "pos": "noun", + "word_frequency": 6784 + }, + { + "word": "óseo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "osseous", + "example_sentence_native": "El sistema óseo es fundamental para el cuerpo.", + "example_sentence_english": "The osseous system is fundamental for the body.", + "pos": "adjective", + "word_frequency": 6786 + }, + { + "word": "adaptado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adapted", + "example_sentence_native": "El software está adaptado a las necesidades del usuario.", + "example_sentence_english": "The software is adapted to the user's needs.", + "pos": "adjective", + "word_frequency": 6789 + }, + { + "word": "adivinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guess", + "example_sentence_native": "Intenta adivinar qué tengo en la mano.", + "example_sentence_english": "Try to guess what I have in my hand.", + "pos": "verb", + "word_frequency": 6790 + }, + { + "word": "amenazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatened", + "example_sentence_native": "Muchas especies están amenazadas por la deforestación.", + "example_sentence_english": "Many species are threatened by deforestation.", + "pos": "adjective", + "word_frequency": 6793 + }, + { + "word": "amplitud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breadth", + "example_sentence_native": "La amplitud de su conocimiento es impresionante.", + "example_sentence_english": "The breadth of his knowledge is impressive.", + "pos": "noun", + "word_frequency": 6794 + }, + { + "word": "andino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Andean", + "example_sentence_native": "La cultura andina es muy rica y diversa.", + "example_sentence_english": "Andean culture is very rich and diverse.", + "pos": "adjective", + "word_frequency": 6795 + }, + { + "word": "apoyado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supported", + "example_sentence_native": "El proyecto está apoyado por el gobierno local.", + "example_sentence_english": "The project is supported by the local government.", + "pos": "adjective", + "word_frequency": 6796 + }, + { + "word": "aprovechamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "utilization", + "example_sentence_native": "El aprovechamiento de los recursos naturales es clave.", + "example_sentence_english": "The utilization of natural resources is key.", + "pos": "noun", + "word_frequency": 6797 + }, + { + "word": "apto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitable", + "example_sentence_native": "Este candidato es apto para el puesto.", + "example_sentence_english": "This candidate is suitable for the position.", + "pos": "adjective", + "word_frequency": 6798 + }, + { + "word": "archipiélago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archipelago", + "example_sentence_native": "Las Islas Canarias forman un archipiélago.", + "example_sentence_english": "The Canary Islands form an archipelago.", + "pos": "noun", + "word_frequency": 6799 + }, + { + "word": "arreglado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed;repaired", + "example_sentence_native": "El coche ya está arreglado.", + "example_sentence_english": "The car is already fixed.", + "pos": "adjective", + "word_frequency": 6800 + }, + { + "word": "artesanal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artisanal;handmade", + "example_sentence_native": "Me encanta el pan artesanal de esta panadería.", + "example_sentence_english": "I love the artisanal bread from this bakery.", + "pos": "adjective", + "word_frequency": 6801 + }, + { + "word": "asistido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assisted", + "example_sentence_native": "La residencia ofrece vida asistida para mayores.", + "example_sentence_english": "The residence offers assisted living for seniors.", + "pos": "adjective", + "word_frequency": 6802 + }, + { + "word": "bebe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baby", + "example_sentence_native": "El bebé está durmiendo en su cuna.", + "example_sentence_english": "The baby is sleeping in its crib.", + "pos": "noun", + "word_frequency": 6804 + }, + { + "word": "burguesía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bourgeoisie", + "example_sentence_native": "La burguesía emergió como una clase social poderosa.", + "example_sentence_english": "The bourgeoisie emerged as a powerful social class.", + "pos": "noun", + "word_frequency": 6806 + }, + { + "word": "cantón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canton;district", + "example_sentence_native": "Suiza está dividida en cantones.", + "example_sentence_english": "Switzerland is divided into cantons.", + "pos": "noun", + "word_frequency": 6808 + }, + { + "word": "capo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boss;chief (often crime boss)", + "example_sentence_native": "El capo de la mafia fue arrestado.", + "example_sentence_english": "The mafia boss was arrested.", + "pos": "noun", + "word_frequency": 6809 + }, + { + "word": "chiquito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiny;very small", + "example_sentence_native": "Tiene un perro chiquito y muy juguetón.", + "example_sentence_english": "He has a tiny and very playful dog.", + "pos": "adjective", + "word_frequency": 6812 + }, + { + "word": "concilio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "council", + "example_sentence_native": "El concilio se reunió para discutir nuevas leyes.", + "example_sentence_english": "The council met to discuss new laws.", + "pos": "noun", + "word_frequency": 6814 + }, + { + "word": "confidencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidential", + "example_sentence_native": "Esta información es estrictamente confidencial.", + "example_sentence_english": "This information is strictly confidential.", + "pos": "adjective", + "word_frequency": 6815 + }, + { + "word": "continuado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuous;continued", + "example_sentence_native": "El trabajo continuado es clave para el éxito.", + "example_sentence_english": "Continuous work is key to success.", + "pos": "adjective", + "word_frequency": 6816 + }, + { + "word": "cronología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronology", + "example_sentence_native": "La cronología de los eventos es importante.", + "example_sentence_english": "The chronology of events is important.", + "pos": "noun", + "word_frequency": 6817 + }, + { + "word": "demandar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demand;to sue", + "example_sentence_native": "Él va a demandar a la empresa por daños.", + "example_sentence_english": "He is going to sue the company for damages.", + "pos": "verb", + "word_frequency": 6819 + }, + { + "word": "deshacerse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get rid of", + "example_sentence_native": "Necesito deshacerme de estas cajas viejas.", + "example_sentence_english": "I need to get rid of these old boxes.", + "pos": "verb", + "word_frequency": 6821 + }, + { + "word": "detección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detection", + "example_sentence_native": "La detección temprana es crucial para la enfermedad.", + "example_sentence_english": "Early detection is crucial for the disease.", + "pos": "noun", + "word_frequency": 6822 + }, + { + "word": "dieciséis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixteen", + "example_sentence_native": "Tengo dieciséis años.", + "example_sentence_english": "I am sixteen years old.", + "pos": "adjective", + "word_frequency": 6823 + }, + { + "word": "diploma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diploma", + "example_sentence_native": "Recibió su diploma al final del curso.", + "example_sentence_english": "He received his diploma at the end of the course.", + "pos": "noun", + "word_frequency": 6824 + }, + { + "word": "discoteca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nightclub;disco", + "example_sentence_native": "Fuimos a bailar a la discoteca.", + "example_sentence_english": "We went dancing at the nightclub.", + "pos": "noun", + "word_frequency": 6825 + }, + { + "word": "dni", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ID card (Documento Nacional de Identidad)", + "example_sentence_native": "Necesitas tu DNI para abrir una cuenta bancaria.", + "example_sentence_english": "You need your ID card to open a bank account.", + "pos": "noun", + "word_frequency": 6826 + }, + { + "word": "ecología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecology", + "example_sentence_native": "La ecología es el estudio de los ecosistemas.", + "example_sentence_english": "Ecology is the study of ecosystems.", + "pos": "noun", + "word_frequency": 6828 + }, + { + "word": "embarcación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boat;vessel", + "example_sentence_native": "Vimos una pequeña embarcación en el puerto.", + "example_sentence_english": "We saw a small boat in the port.", + "pos": "noun", + "word_frequency": 6829 + }, + { + "word": "escombro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubble;debris", + "example_sentence_native": "Después del terremoto, solo quedaban escombros.", + "example_sentence_english": "After the earthquake, only rubble remained.", + "pos": "noun", + "word_frequency": 6831 + }, + { + "word": "espiral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spiral", + "example_sentence_native": "La escalera tiene forma de espiral.", + "example_sentence_english": "The staircase has a spiral shape.", + "pos": "noun", + "word_frequency": 6833 + }, + { + "word": "exagerado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exaggerated;excessive", + "example_sentence_native": "Su reacción fue un poco exagerada.", + "example_sentence_english": "His reaction was a bit exaggerated.", + "pos": "adjective", + "word_frequency": 6834 + }, + { + "word": "formula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formula", + "example_sentence_native": "La fórmula matemática es compleja.", + "example_sentence_english": "The mathematical formula is complex.", + "pos": "noun", + "word_frequency": 6835 + }, + { + "word": "fotográfico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photographic", + "example_sentence_native": "Necesito papel fotográfico para imprimir las fotos.", + "example_sentence_english": "I need photographic paper to print the photos.", + "pos": "adjective", + "word_frequency": 6836 + }, + { + "word": "guardián", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guardian", + "example_sentence_native": "El guardián del museo cerró las puertas.", + "example_sentence_english": "The museum guardian closed the doors.", + "pos": "noun", + "word_frequency": 6840 + }, + { + "word": "guerrillero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guerrilla fighter", + "example_sentence_native": "El guerrillero luchó por la libertad de su pueblo.", + "example_sentence_english": "The guerrilla fighter fought for the freedom of his people.", + "pos": "noun", + "word_frequency": 6841 + }, + { + "word": "hada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fairy", + "example_sentence_native": "La niña creía en las hadas.", + "example_sentence_english": "The girl believed in fairies.", + "pos": "noun", + "word_frequency": 6842 + }, + { + "word": "hebreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hebrew", + "example_sentence_native": "Aprendió el idioma hebreo en la universidad.", + "example_sentence_english": "He learned the Hebrew language at university.", + "pos": "adjective", + "word_frequency": 6843 + }, + { + "word": "hormigón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concrete", + "example_sentence_native": "El edificio está hecho de hormigón armado.", + "example_sentence_english": "The building is made of reinforced concrete.", + "pos": "noun", + "word_frequency": 6844 + }, + { + "word": "imitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to imitate", + "example_sentence_native": "Los niños suelen imitar a sus padres.", + "example_sentence_english": "Children often imitate their parents.", + "pos": "verb", + "word_frequency": 6845 + }, + { + "word": "imposibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossibility", + "example_sentence_native": "Reconoció la imposibilidad de completar el proyecto a tiempo.", + "example_sentence_english": "He recognized the impossibility of completing the project on time.", + "pos": "noun", + "word_frequency": 6846 + }, + { + "word": "liderado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "led", + "example_sentence_native": "El equipo liderado por María ganó el campeonato.", + "example_sentence_english": "The team led by Maria won the championship.", + "pos": "adjective", + "word_frequency": 6849 + }, + { + "word": "meditación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meditation", + "example_sentence_native": "La meditación ayuda a reducir el estrés.", + "example_sentence_english": "Meditation helps reduce stress.", + "pos": "noun", + "word_frequency": 6850 + }, + { + "word": "mejoramiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvement", + "example_sentence_native": "Buscamos el mejoramiento continuo de nuestros servicios.", + "example_sentence_english": "We seek the continuous improvement of our services.", + "pos": "noun", + "word_frequency": 6851 + }, + { + "word": "metáfora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metaphor", + "example_sentence_native": "Su discurso estaba lleno de metáforas.", + "example_sentence_english": "His speech was full of metaphors.", + "pos": "noun", + "word_frequency": 6853 + }, + { + "word": "metálico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metallic", + "example_sentence_native": "El sonido metálico venía de la cocina.", + "example_sentence_english": "The metallic sound came from the kitchen.", + "pos": "adjective", + "word_frequency": 6854 + }, + { + "word": "mudar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move (house);to change", + "example_sentence_native": "Decidieron mudarse a una casa más grande.", + "example_sentence_english": "They decided to move to a bigger house.", + "pos": "verb", + "word_frequency": 6855 + }, + { + "word": "muñeco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doll;toy figure", + "example_sentence_native": "La niña jugaba con su muñeco favorito.", + "example_sentence_english": "The girl was playing with her favorite doll.", + "pos": "noun", + "word_frequency": 6856 + }, + { + "word": "negligencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligence", + "example_sentence_native": "Fue acusado de negligencia profesional.", + "example_sentence_english": "He was accused of professional negligence.", + "pos": "noun", + "word_frequency": 6857 + }, + { + "word": "ordenación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ordering;arrangement", + "example_sentence_native": "La ordenación de los datos es crucial para el análisis.", + "example_sentence_english": "The ordering of the data is crucial for the analysis.", + "pos": "noun", + "word_frequency": 6858 + }, + { + "word": "palestino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Palestinian", + "example_sentence_native": "Un grupo de palestinos se reunió en la plaza.", + "example_sentence_english": "A group of Palestinians gathered in the square.", + "pos": "noun", + "word_frequency": 6859 + }, + { + "word": "paraguayo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Paraguayan", + "example_sentence_native": "La comida paraguaya es deliciosa.", + "example_sentence_english": "Paraguayan food is delicious.", + "pos": "adjective", + "word_frequency": 6860 + }, + { + "word": "presumir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to boast;to show off", + "example_sentence_native": "No le gusta presumir de sus logros.", + "example_sentence_english": "He doesn't like to boast about his achievements.", + "pos": "verb", + "word_frequency": 6862 + }, + { + "word": "primordial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primordial;essential", + "example_sentence_native": "La seguridad es de importancia primordial.", + "example_sentence_english": "Safety is of primordial importance.", + "pos": "adjective", + "word_frequency": 6864 + }, + { + "word": "prosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prose", + "example_sentence_native": "Escribió el libro en prosa sencilla.", + "example_sentence_english": "He wrote the book in simple prose.", + "pos": "noun", + "word_frequency": 6865 + }, + { + "word": "próximamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soon;coming soon", + "example_sentence_native": "La película se estrenará próximamente.", + "example_sentence_english": "The movie will be released soon.", + "pos": "adverb", + "word_frequency": 6866 + }, + { + "word": "retroceder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go back;to retreat", + "example_sentence_native": "El ejército tuvo que retroceder.", + "example_sentence_english": "The army had to retreat.", + "pos": "verb", + "word_frequency": 6868 + }, + { + "word": "revisado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revised;checked", + "example_sentence_native": "El documento ha sido revisado y aprobado.", + "example_sentence_english": "The document has been revised and approved.", + "pos": "adjective", + "word_frequency": 6869 + }, + { + "word": "rugby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rugby", + "example_sentence_native": "Le gusta jugar al rugby los fines de semana.", + "example_sentence_english": "He likes to play rugby on weekends.", + "pos": "noun", + "word_frequency": 6871 + }, + { + "word": "siniestro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sinister;ominous", + "example_sentence_native": "El castillo tenía un aspecto siniestro.", + "example_sentence_english": "The castle had a sinister appearance.", + "pos": "adjective", + "word_frequency": 6875 + }, + { + "word": "streaming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "streaming", + "example_sentence_native": "Prefiero ver películas por streaming.", + "example_sentence_english": "I prefer to watch movies via streaming.", + "pos": "noun", + "word_frequency": 6877 + }, + { + "word": "sueco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Swedish", + "example_sentence_native": "La literatura sueca es muy interesante.", + "example_sentence_english": "Swedish literature is very interesting.", + "pos": "adjective", + "word_frequency": 6878 + }, + { + "word": "superación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overcoming;self-improvement", + "example_sentence_native": "La superación personal es clave para el éxito.", + "example_sentence_english": "Self-improvement is key to success.", + "pos": "noun", + "word_frequency": 6879 + }, + { + "word": "surgimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergence;rise", + "example_sentence_native": "El surgimiento de nuevas tecnologías ha cambiado el mundo.", + "example_sentence_english": "The emergence of new technologies has changed the world.", + "pos": "noun", + "word_frequency": 6880 + }, + { + "word": "tina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathtub;tub", + "example_sentence_native": "Me gusta relajarme en la tina.", + "example_sentence_english": "I like to relax in the tub.", + "pos": "noun", + "word_frequency": 6883 + }, + { + "word": "tristemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sadly", + "example_sentence_native": "Tristemente, no pudo asistir a la reunión.", + "example_sentence_english": "Sadly, he could not attend the meeting.", + "pos": "adverb", + "word_frequency": 6884 + }, + { + "word": "videoclip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "music video;video clip", + "example_sentence_native": "Vimos el nuevo videoclip de su canción favorita.", + "example_sentence_english": "We watched the new music video of their favorite song.", + "pos": "noun", + "word_frequency": 6888 + }, + { + "word": "acertado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accurate;correct;appropriate", + "example_sentence_native": "Su respuesta fue muy acertada.", + "example_sentence_english": "His answer was very accurate.", + "pos": "adjective", + "word_frequency": 6892 + }, + { + "word": "aconsejar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advise;to counsel", + "example_sentence_native": "Te aconsejo que estudies más.", + "example_sentence_english": "I advise you to study more.", + "pos": "verb", + "word_frequency": 6893 + }, + { + "word": "amenazar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to threaten", + "example_sentence_native": "La tormenta amenaza con llegar pronto.", + "example_sentence_english": "The storm threatens to arrive soon.", + "pos": "verb", + "word_frequency": 6894 + }, + { + "word": "amigable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "friendly", + "example_sentence_native": "Es una persona muy amigable.", + "example_sentence_english": "He is a very friendly person.", + "pos": "adjective", + "word_frequency": 6895 + }, + { + "word": "ansia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiety;longing;craving", + "example_sentence_native": "Sentía una gran ansia por ver a su familia.", + "example_sentence_english": "He felt a great longing to see his family.", + "pos": "noun", + "word_frequency": 6897 + }, + { + "word": "apasionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionate", + "example_sentence_native": "Es un músico muy apasionado.", + "example_sentence_english": "He is a very passionate musician.", + "pos": "adjective", + "word_frequency": 6898 + }, + { + "word": "ardiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burning;ardent;fervent", + "example_sentence_native": "El sol ardiente quemaba la piel.", + "example_sentence_english": "The burning sun scorched the skin.", + "pos": "adjective", + "word_frequency": 6899 + }, + { + "word": "arrepentir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to regret;to repent", + "example_sentence_native": "Me arrepiento de mis errores.", + "example_sentence_english": "I regret my mistakes.", + "pos": "verb", + "word_frequency": 6900 + }, + { + "word": "asustado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scared;frightened", + "example_sentence_native": "El niño estaba asustado por el trueno.", + "example_sentence_english": "The child was scared by the thunder.", + "pos": "adjective", + "word_frequency": 6901 + }, + { + "word": "atentamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attentively;carefully;sincerely", + "example_sentence_native": "Escuchó atentamente las instrucciones.", + "example_sentence_english": "He listened attentively to the instructions.", + "pos": "adverb", + "word_frequency": 6902 + }, + { + "word": "atrapar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch;to trap", + "example_sentence_native": "El perro intentó atrapar la pelota.", + "example_sentence_english": "The dog tried to catch the ball.", + "pos": "verb", + "word_frequency": 6903 + }, + { + "word": "atrevido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daring;bold;cheeky", + "example_sentence_native": "Fue una decisión muy atrevida.", + "example_sentence_english": "It was a very daring decision.", + "pos": "adjective", + "word_frequency": 6904 + }, + { + "word": "atributo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attribute", + "example_sentence_native": "La honestidad es un atributo importante.", + "example_sentence_english": "Honesty is an important attribute.", + "pos": "noun", + "word_frequency": 6905 + }, + { + "word": "botín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boot;loot;spoils", + "example_sentence_native": "Los piratas escondieron su botín.", + "example_sentence_english": "The pirates hid their loot.", + "pos": "noun", + "word_frequency": 6909 + }, + { + "word": "calzada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "road;causeway;street", + "example_sentence_native": "La calzada romana aún se conserva.", + "example_sentence_english": "The Roman road is still preserved.", + "pos": "noun", + "word_frequency": 6912 + }, + { + "word": "cineasta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filmmaker", + "example_sentence_native": "El cineasta presentó su nueva película.", + "example_sentence_english": "The filmmaker presented his new movie.", + "pos": "noun", + "word_frequency": 6914 + }, + { + "word": "cinematográfico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cinematographic;film-related", + "example_sentence_native": "La calidad cinematográfica de la película es excelente.", + "example_sentence_english": "The cinematographic quality of the film is excellent.", + "pos": "adjective", + "word_frequency": 6915 + }, + { + "word": "clínico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clinical", + "example_sentence_native": "Realizó un estudio clínico sobre la enfermedad.", + "example_sentence_english": "He conducted a clinical study on the disease.", + "pos": "adjective", + "word_frequency": 6916 + }, + { + "word": "cojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lame;limping", + "example_sentence_native": "El perro cojo necesitaba ayuda.", + "example_sentence_english": "The lame dog needed help.", + "pos": "adjective", + "word_frequency": 6917 + }, + { + "word": "colchón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mattress", + "example_sentence_native": "Necesito un colchón nuevo para mi cama.", + "example_sentence_english": "I need a new mattress for my bed.", + "pos": "noun", + "word_frequency": 6918 + }, + { + "word": "colon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colon (punctuation or anatomical)", + "example_sentence_native": "El médico examinó su colon.", + "example_sentence_english": "The doctor examined his colon.", + "pos": "noun", + "word_frequency": 6919 + }, + { + "word": "comparado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compared", + "example_sentence_native": "Su rendimiento es bueno comparado con el de otros.", + "example_sentence_english": "His performance is good compared to that of others.", + "pos": "adjective", + "word_frequency": 6920 + }, + { + "word": "concentrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concentrate", + "example_sentence_native": "Necesito concentrarme en mi trabajo.", + "example_sentence_english": "I need to concentrate on my work.", + "pos": "verb", + "word_frequency": 6921 + }, + { + "word": "consecutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consecutive", + "example_sentence_native": "Ganaron el partido por tercer año consecutivo.", + "example_sentence_english": "They won the game for the third consecutive year.", + "pos": "adjective", + "word_frequency": 6922 + }, + { + "word": "consigna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slogan;locker;instruction", + "example_sentence_native": "La consigna del partido era \"Libertad y Justicia\".", + "example_sentence_english": "The party's slogan was \"Liberty and Justice\".", + "pos": "noun", + "word_frequency": 6923 + }, + { + "word": "crianza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upbringing;breeding", + "example_sentence_native": "Su crianza fue muy estricta.", + "example_sentence_english": "His upbringing was very strict.", + "pos": "noun", + "word_frequency": 6924 + }, + { + "word": "deficiencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficiency", + "example_sentence_native": "Tiene una deficiencia de vitamina D.", + "example_sentence_english": "He has a vitamin D deficiency.", + "pos": "noun", + "word_frequency": 6925 + }, + { + "word": "degradación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degradation", + "example_sentence_native": "La degradación del medio ambiente es un problema global.", + "example_sentence_english": "Environmental degradation is a global problem.", + "pos": "noun", + "word_frequency": 6926 + }, + { + "word": "desconocimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ignorance;lack of knowledge", + "example_sentence_native": "Su desconocimiento del tema era evidente.", + "example_sentence_english": "His lack of knowledge on the subject was evident.", + "pos": "noun", + "word_frequency": 6927 + }, + { + "word": "desventaja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disadvantage", + "example_sentence_native": "La falta de experiencia es una desventaja.", + "example_sentence_english": "Lack of experience is a disadvantage.", + "pos": "noun", + "word_frequency": 6928 + }, + { + "word": "dictamen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opinion;ruling;report", + "example_sentence_native": "El juez emitió su dictamen sobre el caso.", + "example_sentence_english": "The judge issued his ruling on the case.", + "pos": "noun", + "word_frequency": 6929 + }, + { + "word": "diplomacia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomacy", + "example_sentence_native": "La diplomacia es clave para resolver conflictos.", + "example_sentence_english": "Diplomacy is key to resolving conflicts.", + "pos": "noun", + "word_frequency": 6930 + }, + { + "word": "edificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building;construction", + "example_sentence_native": "La edificación de nuevos apartamentos está en marcha.", + "example_sentence_english": "The construction of new apartments is underway.", + "pos": "noun", + "word_frequency": 6932 + }, + { + "word": "egresado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graduate;alumnus", + "example_sentence_native": "Es un egresado de la Universidad de Salamanca.", + "example_sentence_english": "He is a graduate of the University of Salamanca.", + "pos": "noun", + "word_frequency": 6933 + }, + { + "word": "equivocar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make a mistake;to be wrong", + "example_sentence_native": "No te equivoques, esto es serio.", + "example_sentence_english": "Don't be mistaken, this is serious.", + "pos": "verb", + "word_frequency": 6934 + }, + { + "word": "esplendor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "splendor;brilliance", + "example_sentence_native": "El edificio recuperó su antiguo esplendor.", + "example_sentence_english": "The building recovered its former splendor.", + "pos": "noun", + "word_frequency": 6935 + }, + { + "word": "esqueleto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skeleton", + "example_sentence_native": "El esqueleto humano tiene 206 huesos.", + "example_sentence_english": "The human skeleton has 206 bones.", + "pos": "noun", + "word_frequency": 6936 + }, + { + "word": "estero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "estuary;marsh;tidal creek", + "example_sentence_native": "Los esteros son importantes para la biodiversidad.", + "example_sentence_english": "Estuaries are important for biodiversity.", + "pos": "noun", + "word_frequency": 6937 + }, + { + "word": "expensa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expense (usually plural: expenses)", + "example_sentence_native": "Viajó a expensas de la empresa.", + "example_sentence_english": "He traveled at the company's expense.", + "pos": "noun", + "word_frequency": 6938 + }, + { + "word": "firmeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmness;steadfastness", + "example_sentence_native": "Actuó con gran firmeza en la negociación.", + "example_sentence_english": "He acted with great firmness in the negotiation.", + "pos": "noun", + "word_frequency": 6940 + }, + { + "word": "franquismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Francoism", + "example_sentence_native": "El franquismo fue la dictadura de Francisco Franco en España.", + "example_sentence_english": "Francoism was the dictatorship of Francisco Franco in Spain.", + "pos": "noun", + "word_frequency": 6941 + }, + { + "word": "garaje", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garage", + "example_sentence_native": "El coche está en el garaje.", + "example_sentence_english": "The car is in the garage.", + "pos": "noun", + "word_frequency": 6942 + }, + { + "word": "gobernado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governed;ruled", + "example_sentence_native": "El país está bien gobernado.", + "example_sentence_english": "The country is well governed.", + "pos": "adjective", + "word_frequency": 6943 + }, + { + "word": "huésped", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guest;host (less common)", + "example_sentence_native": "Tenemos un huésped en casa este fin de semana.", + "example_sentence_english": "We have a guest at home this weekend.", + "pos": "noun", + "word_frequency": 6947 + }, + { + "word": "hábitat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "habitat", + "example_sentence_native": "La destrucción del hábitat amenaza a muchas especies.", + "example_sentence_english": "Habitat destruction threatens many species.", + "pos": "noun", + "word_frequency": 6948 + }, + { + "word": "ilegalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegally", + "example_sentence_native": "Cruzó la frontera ilegalmente.", + "example_sentence_english": "He crossed the border illegally.", + "pos": "adverb", + "word_frequency": 6949 + }, + { + "word": "imparcial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impartial;unbiased", + "example_sentence_native": "El juez debe ser imparcial.", + "example_sentence_english": "The judge must be impartial.", + "pos": "adjective", + "word_frequency": 6950 + }, + { + "word": "inaceptable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unacceptable", + "example_sentence_native": "Su comportamiento fue inaceptable.", + "example_sentence_english": "His behavior was unacceptable.", + "pos": "adjective", + "word_frequency": 6951 + }, + { + "word": "inaugurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inaugurate;to open", + "example_sentence_native": "Van a inaugurar el nuevo museo mañana.", + "example_sentence_english": "They are going to inaugurate the new museum tomorrow.", + "pos": "verb", + "word_frequency": 6952 + }, + { + "word": "infanta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infanta (Spanish;Portuguese princess)", + "example_sentence_native": "La infanta Elena es hija del rey Juan Carlos I.", + "example_sentence_english": "Infanta Elena is the daughter of King Juan Carlos I.", + "pos": "noun", + "word_frequency": 6953 + }, + { + "word": "internado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boarding school;internship", + "example_sentence_native": "Pasó su adolescencia en un internado.", + "example_sentence_english": "He spent his adolescence in a boarding school.", + "pos": "noun", + "word_frequency": 6955 + }, + { + "word": "interrumpir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interrupt", + "example_sentence_native": "Por favor, no me interrumpas mientras hablo.", + "example_sentence_english": "Please, don't interrupt me while I'm speaking.", + "pos": "verb", + "word_frequency": 6956 + }, + { + "word": "mercenario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercenary", + "example_sentence_native": "El ejército contrató a un mercenario para la misión.", + "example_sentence_english": "The army hired a mercenary for the mission.", + "pos": "noun", + "word_frequency": 6962 + }, + { + "word": "modernidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernity", + "example_sentence_native": "La modernidad ha traído muchos cambios a la sociedad.", + "example_sentence_english": "Modernity has brought many changes to society.", + "pos": "noun", + "word_frequency": 6963 + }, + { + "word": "modesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modest", + "example_sentence_native": "A pesar de su éxito, siempre fue muy modesto.", + "example_sentence_english": "Despite his success, he was always very modest.", + "pos": "adjective", + "word_frequency": 6964 + }, + { + "word": "moralidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morality", + "example_sentence_native": "La moralidad de sus acciones fue cuestionada.", + "example_sentence_english": "The morality of his actions was questioned.", + "pos": "noun", + "word_frequency": 6965 + }, + { + "word": "multinacional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multinational (company)", + "example_sentence_native": "Trabaja para una empresa multinacional con oficinas en todo el mundo.", + "example_sentence_english": "He works for a multinational company with offices all over the world.", + "pos": "noun", + "word_frequency": 6966 + }, + { + "word": "máster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master's degree", + "example_sentence_native": "Está estudiando un máster en inteligencia artificial.", + "example_sentence_english": "He is studying a master's degree in artificial intelligence.", + "pos": "noun", + "word_frequency": 6967 + }, + { + "word": "nacho", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nacho", + "example_sentence_native": "Pedimos unos nachos con queso para compartir.", + "example_sentence_english": "We ordered some nachos with cheese to share.", + "pos": "noun", + "word_frequency": 6968 + }, + { + "word": "net", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "net (internet)", + "example_sentence_native": "La información está disponible en la net.", + "example_sentence_english": "The information is available on the net.", + "pos": "noun", + "word_frequency": 6969 + }, + { + "word": "neutralidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutrality", + "example_sentence_native": "El país mantuvo su neutralidad durante el conflicto.", + "example_sentence_english": "The country maintained its neutrality during the conflict.", + "pos": "noun", + "word_frequency": 6970 + }, + { + "word": "nose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nose (of a board)", + "example_sentence_native": "La nose de la tabla de surf estaba dañada.", + "example_sentence_english": "The nose of the surfboard was damaged.", + "pos": "noun", + "word_frequency": 6971 + }, + { + "word": "noveno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ninth", + "example_sentence_native": "Ella terminó en el noveno lugar en la carrera.", + "example_sentence_english": "She finished in ninth place in the race.", + "pos": "adjective", + "word_frequency": 6972 + }, + { + "word": "peinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairstyle", + "example_sentence_native": "Me gusta mucho tu nuevo peinado.", + "example_sentence_english": "I really like your new hairstyle.", + "pos": "noun", + "word_frequency": 6974 + }, + { + "word": "predecir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to predict", + "example_sentence_native": "Es difícil predecir el futuro con certeza.", + "example_sentence_english": "It's difficult to predict the future with certainty.", + "pos": "verb", + "word_frequency": 6977 + }, + { + "word": "predio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "property;estate", + "example_sentence_native": "El predio fue vendido por una gran suma de dinero.", + "example_sentence_english": "The property was sold for a large sum of money.", + "pos": "noun", + "word_frequency": 6978 + }, + { + "word": "preferible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preferable", + "example_sentence_native": "Es preferible llegar temprano para encontrar un buen asiento.", + "example_sentence_english": "It's preferable to arrive early to find a good seat.", + "pos": "adjective", + "word_frequency": 6979 + }, + { + "word": "proporcionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportional;well-proportioned", + "example_sentence_native": "El castigo debe ser proporcionado al delito.", + "example_sentence_english": "The punishment must be proportional to the crime.", + "pos": "adjective", + "word_frequency": 6980 + }, + { + "word": "providencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providence", + "example_sentence_native": "Creemos en la divina providencia.", + "example_sentence_english": "We believe in divine providence.", + "pos": "noun", + "word_frequency": 6981 + }, + { + "word": "pío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peep;chirp (sound of a chick)", + "example_sentence_native": "Escuché el pío de un pollito en el nido.", + "example_sentence_english": "I heard the peep of a chick in the nest.", + "pos": "noun", + "word_frequency": 6982 + }, + { + "word": "pólvora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gunpowder", + "example_sentence_native": "La pólvora se usa para fabricar fuegos artificiales.", + "example_sentence_english": "Gunpowder is used to make fireworks.", + "pos": "noun", + "word_frequency": 6983 + }, + { + "word": "quebrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broken;bankrupt", + "example_sentence_native": "El vaso está quebrado.", + "example_sentence_english": "The glass is broken.", + "pos": "adjective", + "word_frequency": 6985 + }, + { + "word": "reir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to laugh", + "example_sentence_native": "Me gusta reír a carcajadas.", + "example_sentence_english": "I like to laugh out loud.", + "pos": "verb", + "word_frequency": 6989 + }, + { + "word": "reposo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest;repose", + "example_sentence_native": "Necesito un poco de reposo después de un largo día.", + "example_sentence_english": "I need some rest after a long day.", + "pos": "noun", + "word_frequency": 6990 + }, + { + "word": "resultante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resulting", + "example_sentence_native": "La situación resultante fue inesperada.", + "example_sentence_english": "The resulting situation was unexpected.", + "pos": "adjective", + "word_frequency": 6991 + }, + { + "word": "sensor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensor", + "example_sentence_native": "El coche tiene un sensor de aparcamiento.", + "example_sentence_english": "The car has a parking sensor.", + "pos": "noun", + "word_frequency": 6993 + }, + { + "word": "sensual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sensual", + "example_sentence_native": "La música tenía un ritmo muy sensual.", + "example_sentence_english": "The music had a very sensual rhythm.", + "pos": "adjective", + "word_frequency": 6994 + }, + { + "word": "short", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "short (clothing)", + "example_sentence_native": "Me puse un short para ir a la playa.", + "example_sentence_english": "I put on shorts to go to the beach.", + "pos": "adjective", + "word_frequency": 6995 + }, + { + "word": "simpático", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nice;friendly", + "example_sentence_native": "Mi nuevo vecino es muy simpático.", + "example_sentence_english": "My new neighbor is very nice.", + "pos": "adjective", + "word_frequency": 6996 + }, + { + "word": "suroeste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southwest", + "example_sentence_native": "El viento sopla del suroeste.", + "example_sentence_english": "The wind blows from the southwest.", + "pos": "noun", + "word_frequency": 6998 + }, + { + "word": "tenencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possession;tenure", + "example_sentence_native": "La tenencia de armas está regulada por ley.", + "example_sentence_english": "The possession of weapons is regulated by law.", + "pos": "noun", + "word_frequency": 7000 + }, + { + "word": "troll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "troll", + "example_sentence_native": "No alimentes al troll en los comentarios.", + "example_sentence_english": "Don't feed the troll in the comments.", + "pos": "noun", + "word_frequency": 7001 + }, + { + "word": "violador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "violator;rapist", + "example_sentence_native": "El violador fue condenado a muchos años de prisión.", + "example_sentence_english": "The violator was sentenced to many years in prison.", + "pos": "noun", + "word_frequency": 7003 + }, + { + "word": "yacimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposit;site", + "example_sentence_native": "Descubrieron un importante yacimiento arqueológico.", + "example_sentence_english": "They discovered an important archaeological site.", + "pos": "noun", + "word_frequency": 7007 + }, + { + "word": "zorro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fox", + "example_sentence_native": "El zorro es un animal astuto.", + "example_sentence_english": "The fox is a cunning animal.", + "pos": "noun", + "word_frequency": 7008 + }, + { + "word": "acierto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "success;correct answer;hit", + "example_sentence_native": "Fue un acierto invertir en esa empresa.", + "example_sentence_english": "It was a success to invest in that company.", + "pos": "noun", + "word_frequency": 7010 + }, + { + "word": "agarro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grip;hold", + "example_sentence_native": "Tenía un agarro firme en la cuerda.", + "example_sentence_english": "He had a firm grip on the rope.", + "pos": "noun", + "word_frequency": 7011 + }, + { + "word": "ancestro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ancestor", + "example_sentence_native": "Nuestros ancestros vivieron en esta tierra.", + "example_sentence_english": "Our ancestors lived on this land.", + "pos": "noun", + "word_frequency": 7012 + }, + { + "word": "asedio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "siege", + "example_sentence_native": "La ciudad resistió el asedio durante meses.", + "example_sentence_english": "The city resisted the siege for months.", + "pos": "noun", + "word_frequency": 7014 + }, + { + "word": "asesoramiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advice;counseling;consultancy", + "example_sentence_native": "Necesito asesoramiento legal sobre este asunto.", + "example_sentence_english": "I need legal advice on this matter.", + "pos": "noun", + "word_frequency": 7015 + }, + { + "word": "asociar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to associate", + "example_sentence_native": "Siempre asocio ese olor con mi infancia.", + "example_sentence_english": "I always associate that smell with my childhood.", + "pos": "verb", + "word_frequency": 7016 + }, + { + "word": "bobo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silly;foolish;dumb", + "example_sentence_native": "No seas bobo, eso no es verdad.", + "example_sentence_english": "Don't be silly, that's not true.", + "pos": "adjective", + "word_frequency": 7019 + }, + { + "word": "brisa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "breeze", + "example_sentence_native": "Una suave brisa soplaba desde el mar.", + "example_sentence_english": "A gentle breeze was blowing from the sea.", + "pos": "noun", + "word_frequency": 7020 + }, + { + "word": "calentar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to heat;to warm up", + "example_sentence_native": "Voy a calentar la leche para el café.", + "example_sentence_english": "I'm going to heat the milk for the coffee.", + "pos": "verb", + "word_frequency": 7022 + }, + { + "word": "caricatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caricature;cartoon", + "example_sentence_native": "Le gusta dibujar caricaturas de sus amigos.", + "example_sentence_english": "He likes to draw caricatures of his friends.", + "pos": "noun", + "word_frequency": 7024 + }, + { + "word": "causado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caused", + "example_sentence_native": "El daño causado fue irreparable.", + "example_sentence_english": "The damage caused was irreparable.", + "pos": "adjective", + "word_frequency": 7025 + }, + { + "word": "cesión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cession;transfer;assignment", + "example_sentence_native": "La cesión de derechos de autor es un proceso legal.", + "example_sentence_english": "The assignment of copyrights is a legal process.", + "pos": "noun", + "word_frequency": 7026 + }, + { + "word": "chapa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheet metal;bottle cap;badge", + "example_sentence_native": "La chapa del coche estaba abollada.", + "example_sentence_english": "The car's sheet metal was dented.", + "pos": "noun", + "word_frequency": 7027 + }, + { + "word": "charlar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chat;to talk", + "example_sentence_native": "Nos gusta charlar durante horas.", + "example_sentence_english": "We like to chat for hours.", + "pos": "verb", + "word_frequency": 7028 + }, + { + "word": "chimenea", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chimney;fireplace", + "example_sentence_native": "Encendimos un fuego en la chimenea.", + "example_sentence_english": "We lit a fire in the fireplace.", + "pos": "noun", + "word_frequency": 7029 + }, + { + "word": "cimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation", + "example_sentence_native": "Los cimientos de la casa son muy sólidos.", + "example_sentence_english": "The foundations of the house are very solid.", + "pos": "noun", + "word_frequency": 7030 + }, + { + "word": "consciencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consciousness;awareness", + "example_sentence_native": "Perdió la consciencia después del golpe.", + "example_sentence_english": "He lost consciousness after the blow.", + "pos": "noun", + "word_frequency": 7032 + }, + { + "word": "contenedor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container;dumpster", + "example_sentence_native": "Tira la basura en el contenedor.", + "example_sentence_english": "Throw the trash in the dumpster.", + "pos": "noun", + "word_frequency": 7033 + }, + { + "word": "corrido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrido (Mexican ballad)", + "example_sentence_native": "Escuchamos un corrido tradicional mexicano.", + "example_sentence_english": "We listened to a traditional Mexican corrido.", + "pos": "noun", + "word_frequency": 7034 + }, + { + "word": "culpabilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guilt;culpability", + "example_sentence_native": "Sentía una gran culpabilidad por sus acciones.", + "example_sentence_english": "He felt great guilt for his actions.", + "pos": "noun", + "word_frequency": 7035 + }, + { + "word": "cumbia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cumbia (Latin American music genre)", + "example_sentence_native": "Bailamos cumbia toda la noche.", + "example_sentence_english": "We danced cumbia all night.", + "pos": "noun", + "word_frequency": 7036 + }, + { + "word": "dañado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damaged;harmed", + "example_sentence_native": "El paquete llegó dañado.", + "example_sentence_english": "The package arrived damaged.", + "pos": "adjective", + "word_frequency": 7038 + }, + { + "word": "desecho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste;refuse;discard", + "example_sentence_native": "La fábrica produce muchos desechos tóxicos.", + "example_sentence_english": "The factory produces a lot of toxic waste.", + "pos": "noun", + "word_frequency": 7039 + }, + { + "word": "directriz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guideline", + "example_sentence_native": "El gobierno emitió una directriz para la nueva política.", + "example_sentence_english": "The government issued a guideline for the new policy.", + "pos": "noun", + "word_frequency": 7041 + }, + { + "word": "dron", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drone", + "example_sentence_native": "El dron sobrevoló la zona.", + "example_sentence_english": "The drone flew over the area.", + "pos": "noun", + "word_frequency": 7043 + }, + { + "word": "dureza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardness", + "example_sentence_native": "La dureza del diamante es excepcional.", + "example_sentence_english": "The hardness of diamond is exceptional.", + "pos": "noun", + "word_frequency": 7044 + }, + { + "word": "eclipse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eclipse", + "example_sentence_native": "Observamos el eclipse lunar anoche.", + "example_sentence_english": "We observed the lunar eclipse last night.", + "pos": "noun", + "word_frequency": 7046 + }, + { + "word": "engañado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deceived", + "example_sentence_native": "Se sintió engañado por sus palabras.", + "example_sentence_english": "He felt deceived by her words.", + "pos": "adjective", + "word_frequency": 7047 + }, + { + "word": "enteramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entirely", + "example_sentence_native": "Estaba enteramente de acuerdo con su propuesta.", + "example_sentence_english": "He was entirely in agreement with her proposal.", + "pos": "adverb", + "word_frequency": 7048 + }, + { + "word": "especificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to specify", + "example_sentence_native": "Necesitas especificar los detalles del proyecto.", + "example_sentence_english": "You need to specify the project details.", + "pos": "verb", + "word_frequency": 7049 + }, + { + "word": "estereotipo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stereotype", + "example_sentence_native": "Debemos evitar los estereotipos.", + "example_sentence_english": "We must avoid stereotypes.", + "pos": "noun", + "word_frequency": 7050 + }, + { + "word": "franquista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Francoist", + "example_sentence_native": "La dictadura franquista duró muchos años.", + "example_sentence_english": "The Francoist dictatorship lasted many years.", + "pos": "adjective", + "word_frequency": 7051 + }, + { + "word": "fé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faith", + "example_sentence_native": "Tiene mucha fe en el futuro.", + "example_sentence_english": "He has a lot of faith in the future.", + "pos": "noun", + "word_frequency": 7052 + }, + { + "word": "hincapié", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emphasis", + "example_sentence_native": "El profesor hizo hincapié en la importancia de la lectura.", + "example_sentence_english": "The professor emphasized the importance of reading.", + "pos": "noun", + "word_frequency": 7054 + }, + { + "word": "honrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honest", + "example_sentence_native": "Es un hombre muy honrado.", + "example_sentence_english": "He is a very honest man.", + "pos": "adjective", + "word_frequency": 7055 + }, + { + "word": "influyente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influential", + "example_sentence_native": "Es una figura muy influyente en la política.", + "example_sentence_english": "He is a very influential figure in politics.", + "pos": "adjective", + "word_frequency": 7058 + }, + { + "word": "instalado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installed", + "example_sentence_native": "El nuevo software ya está instalado.", + "example_sentence_english": "The new software is already installed.", + "pos": "adjective", + "word_frequency": 7059 + }, + { + "word": "intolerancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerance", + "example_sentence_native": "La intolerancia es un problema social.", + "example_sentence_english": "Intolerance is a social problem.", + "pos": "noun", + "word_frequency": 7060 + }, + { + "word": "investidura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "investiture", + "example_sentence_native": "La investidura del nuevo presidente será mañana.", + "example_sentence_english": "The investiture of the new president will be tomorrow.", + "pos": "noun", + "word_frequency": 7061 + }, + { + "word": "lienzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canvas", + "example_sentence_native": "El artista pintó sobre un lienzo grande.", + "example_sentence_english": "The artist painted on a large canvas.", + "pos": "noun", + "word_frequency": 7068 + }, + { + "word": "macedonia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fruit salad", + "example_sentence_native": "Me gusta la macedonia de frutas.", + "example_sentence_english": "I like fruit salad.", + "pos": "noun", + "word_frequency": 7070 + }, + { + "word": "mandíbula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaw", + "example_sentence_native": "Se rompió la mandíbula en el accidente.", + "example_sentence_english": "He broke his jaw in the accident.", + "pos": "noun", + "word_frequency": 7071 + }, + { + "word": "manteca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lard", + "example_sentence_native": "Usó manteca para freír las patatas.", + "example_sentence_english": "He used lard to fry the potatoes.", + "pos": "noun", + "word_frequency": 7072 + }, + { + "word": "marcado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marked", + "example_sentence_native": "Tenía un acento muy marcado.", + "example_sentence_english": "He had a very marked accent.", + "pos": "adjective", + "word_frequency": 7073 + }, + { + "word": "marxismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxism", + "example_sentence_native": "El marxismo es una teoría socioeconómica.", + "example_sentence_english": "Marxism is a socioeconomic theory.", + "pos": "noun", + "word_frequency": 7075 + }, + { + "word": "mensajero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messenger", + "example_sentence_native": "El mensajero entregó el paquete.", + "example_sentence_english": "The messenger delivered the package.", + "pos": "noun", + "word_frequency": 7076 + }, + { + "word": "motivado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivated", + "example_sentence_native": "Estaba muy motivado para empezar el nuevo proyecto.", + "example_sentence_english": "He was very motivated to start the new project.", + "pos": "adjective", + "word_frequency": 7078 + }, + { + "word": "médula", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marrow", + "example_sentence_native": "La médula ósea es importante para la producción de sangre.", + "example_sentence_english": "Bone marrow is important for blood production.", + "pos": "noun", + "word_frequency": 7079 + }, + { + "word": "originario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "original;native (from)", + "example_sentence_native": "Él es originario de México.", + "example_sentence_english": "He is native to Mexico.", + "pos": "adjective", + "word_frequency": 7084 + }, + { + "word": "padecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffer;to endure", + "example_sentence_native": "Muchas personas padecen de insomnio.", + "example_sentence_english": "Many people suffer from insomnia.", + "pos": "verb", + "word_frequency": 7085 + }, + { + "word": "pandemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pandemic", + "example_sentence_native": "La pandemia cambió nuestras vidas.", + "example_sentence_english": "The pandemic changed our lives.", + "pos": "noun", + "word_frequency": 7086 + }, + { + "word": "pandilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gang;group of friends", + "example_sentence_native": "Mi pandilla de amigos siempre sale junta.", + "example_sentence_english": "My group of friends always goes out together.", + "pos": "noun", + "word_frequency": 7087 + }, + { + "word": "perjudicial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful;detrimental", + "example_sentence_native": "Fumar es perjudicial para la salud.", + "example_sentence_english": "Smoking is harmful to health.", + "pos": "adjective", + "word_frequency": 7088 + }, + { + "word": "pipa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pipe (for smoking);sunflower seed", + "example_sentence_native": "Me gusta comer pipas mientras veo una película.", + "example_sentence_english": "I like to eat sunflower seeds while watching a movie.", + "pos": "noun", + "word_frequency": 7090 + }, + { + "word": "plebiscito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plebiscite;referendum", + "example_sentence_native": "Se convocó un plebiscito para decidir sobre la nueva ley.", + "example_sentence_english": "A plebiscite was called to decide on the new law.", + "pos": "noun", + "word_frequency": 7091 + }, + { + "word": "positivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "positively", + "example_sentence_native": "La noticia fue recibida positivamente.", + "example_sentence_english": "The news was received positively.", + "pos": "adverb", + "word_frequency": 7093 + }, + { + "word": "profundizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deepen;to delve into", + "example_sentence_native": "Necesitamos profundizar en este tema.", + "example_sentence_english": "We need to delve deeper into this topic.", + "pos": "verb", + "word_frequency": 7094 + }, + { + "word": "radial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radial;pertaining to radio", + "example_sentence_native": "La antena tiene una forma radial.", + "example_sentence_english": "The antenna has a radial shape.", + "pos": "adjective", + "word_frequency": 7095 + }, + { + "word": "redactado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drafted;written", + "example_sentence_native": "El informe está bien redactado.", + "example_sentence_english": "The report is well written.", + "pos": "adjective", + "word_frequency": 7097 + }, + { + "word": "regularidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regularity", + "example_sentence_native": "Es importante mantener la regularidad en el estudio.", + "example_sentence_english": "It's important to maintain regularity in study.", + "pos": "noun", + "word_frequency": 7098 + }, + { + "word": "remontar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome;to go back (in time);to ascend", + "example_sentence_native": "El equipo logró remontar el partido.", + "example_sentence_english": "The team managed to come back in the game.", + "pos": "verb", + "word_frequency": 7099 + }, + { + "word": "renovado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renewed;renovated", + "example_sentence_native": "El contrato ha sido renovado.", + "example_sentence_english": "The contract has been renewed.", + "pos": "adjective", + "word_frequency": 7100 + }, + { + "word": "resonancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resonance;echo", + "example_sentence_native": "El discurso tuvo una gran resonancia en la audiencia.", + "example_sentence_english": "The speech had a great resonance with the audience.", + "pos": "noun", + "word_frequency": 7101 + }, + { + "word": "respetado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respected", + "example_sentence_native": "Es un profesor muy respetado.", + "example_sentence_english": "He is a very respected professor.", + "pos": "adjective", + "word_frequency": 7102 + }, + { + "word": "rodar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to roll;to film (a movie)", + "example_sentence_native": "La película se va a rodar en España.", + "example_sentence_english": "The movie is going to be filmed in Spain.", + "pos": "verb", + "word_frequency": 7104 + }, + { + "word": "sacramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrament", + "example_sentence_native": "El bautismo es un sacramento.", + "example_sentence_english": "Baptism is a sacrament.", + "pos": "noun", + "word_frequency": 7107 + }, + { + "word": "sodio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sodium", + "example_sentence_native": "El sodio es un elemento químico.", + "example_sentence_english": "Sodium is a chemical element.", + "pos": "noun", + "word_frequency": 7109 + }, + { + "word": "sustancial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "substantial", + "example_sentence_native": "Hubo un cambio sustancial en la política.", + "example_sentence_english": "There was a substantial change in policy.", + "pos": "adjective", + "word_frequency": 7112 + }, + { + "word": "tiranía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyranny", + "example_sentence_native": "La gente luchó contra la tiranía.", + "example_sentence_english": "The people fought against tyranny.", + "pos": "noun", + "word_frequency": 7114 + }, + { + "word": "tolerar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tolerate", + "example_sentence_native": "No puedo tolerar la injusticia.", + "example_sentence_english": "I cannot tolerate injustice.", + "pos": "verb", + "word_frequency": 7115 + }, + { + "word": "transmitido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmitted;broadcast", + "example_sentence_native": "El programa fue transmitido en vivo.", + "example_sentence_english": "The program was broadcast live.", + "pos": "adjective", + "word_frequency": 7117 + }, + { + "word": "transversal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transversal;cross-cutting", + "example_sentence_native": "Se necesita un enfoque transversal para resolver el problema.", + "example_sentence_english": "A transversal approach is needed to solve the problem.", + "pos": "adjective", + "word_frequency": 7118 + }, + { + "word": "tutor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutor;guardian", + "example_sentence_native": "Mi tutor me ayudó con mis estudios.", + "example_sentence_english": "My tutor helped me with my studies.", + "pos": "noun", + "word_frequency": 7119 + }, + { + "word": "vampiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vampire", + "example_sentence_native": "El vampiro solo sale por la noche.", + "example_sentence_english": "The vampire only comes out at night.", + "pos": "noun", + "word_frequency": 7121 + }, + { + "word": "vencedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victor", + "example_sentence_native": "El equipo vencedor celebró su triunfo.", + "example_sentence_english": "The winning team celebrated their triumph.", + "pos": "noun", + "word_frequency": 7122 + }, + { + "word": "veracidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "veracity", + "example_sentence_native": "Dudo de la veracidad de sus afirmaciones.", + "example_sentence_english": "I doubt the veracity of his claims.", + "pos": "noun", + "word_frequency": 7123 + }, + { + "word": "absorción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorption", + "example_sentence_native": "La planta realiza la absorción de nutrientes del suelo.", + "example_sentence_english": "The plant performs the absorption of nutrients from the soil.", + "pos": "noun", + "word_frequency": 7126 + }, + { + "word": "acompañamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accompaniment", + "example_sentence_native": "Necesito un acompañamiento musical para la canción.", + "example_sentence_english": "I need a musical accompaniment for the song.", + "pos": "noun", + "word_frequency": 7127 + }, + { + "word": "album", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "album", + "example_sentence_native": "Compré el nuevo álbum de mi banda favorita.", + "example_sentence_english": "I bought the new album by my favorite band.", + "pos": "noun", + "word_frequency": 7129 + }, + { + "word": "anticipación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anticipation", + "example_sentence_native": "La anticipación del viaje me emociona.", + "example_sentence_english": "The anticipation of the trip excites me.", + "pos": "noun", + "word_frequency": 7131 + }, + { + "word": "aproximado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approximate", + "example_sentence_native": "Dame un número aproximado de asistentes.", + "example_sentence_english": "Give me an approximate number of attendees.", + "pos": "adjective", + "word_frequency": 7132 + }, + { + "word": "apóstol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apostle", + "example_sentence_native": "Pedro fue uno de los doce apóstoles.", + "example_sentence_english": "Peter was one of the twelve apostles.", + "pos": "noun", + "word_frequency": 7133 + }, + { + "word": "arca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ark", + "example_sentence_native": "El arca de Noé es una historia bíblica.", + "example_sentence_english": "Noah's ark is a biblical story.", + "pos": "noun", + "word_frequency": 7134 + }, + { + "word": "arqueología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeology", + "example_sentence_native": "La arqueología estudia las civilizaciones antiguas.", + "example_sentence_english": "Archaeology studies ancient civilizations.", + "pos": "noun", + "word_frequency": 7135 + }, + { + "word": "arriesgar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to risk", + "example_sentence_native": "No quiero arriesgar mi dinero en eso.", + "example_sentence_english": "I don't want to risk my money on that.", + "pos": "verb", + "word_frequency": 7136 + }, + { + "word": "articulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "articulation", + "example_sentence_native": "La rodilla es una articulación importante.", + "example_sentence_english": "The knee is an important joint.", + "pos": "noun", + "word_frequency": 7137 + }, + { + "word": "asumido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assumed", + "example_sentence_native": "Es un riesgo asumido por la empresa.", + "example_sentence_english": "It's a risk assumed by the company.", + "pos": "adjective", + "word_frequency": 7138 + }, + { + "word": "barril", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrel", + "example_sentence_native": "El vino se guarda en barriles de roble.", + "example_sentence_english": "Wine is stored in oak barrels.", + "pos": "noun", + "word_frequency": 7139 + }, + { + "word": "bóveda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vault", + "example_sentence_native": "El banco tiene una bóveda de seguridad.", + "example_sentence_english": "The bank has a security vault.", + "pos": "noun", + "word_frequency": 7142 + }, + { + "word": "calefacción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heating", + "example_sentence_native": "La calefacción está encendida en invierno.", + "example_sentence_english": "The heating is on in winter.", + "pos": "noun", + "word_frequency": 7143 + }, + { + "word": "caminata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walk", + "example_sentence_native": "Fuimos de caminata por la montaña.", + "example_sentence_english": "We went for a walk in the mountains.", + "pos": "noun", + "word_frequency": 7145 + }, + { + "word": "cancelado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canceled", + "example_sentence_native": "El vuelo fue cancelado debido a la tormenta.", + "example_sentence_english": "The flight was canceled due to the storm.", + "pos": "adjective", + "word_frequency": 7147 + }, + { + "word": "canela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cinnamon", + "example_sentence_native": "Me gusta el arroz con leche y canela.", + "example_sentence_english": "I like rice pudding with cinnamon.", + "pos": "noun", + "word_frequency": 7148 + }, + { + "word": "casita", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little house", + "example_sentence_native": "Tienen una casita en el campo.", + "example_sentence_english": "They have a little house in the countryside.", + "pos": "noun", + "word_frequency": 7150 + }, + { + "word": "chorro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jet", + "example_sentence_native": "Abrió el grifo y salió un chorro de agua.", + "example_sentence_english": "He opened the tap and a jet of water came out.", + "pos": "noun", + "word_frequency": 7156 + }, + { + "word": "clip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clip", + "example_sentence_native": "Usa un clip para sujetar los papeles.", + "example_sentence_english": "Use a clip to hold the papers.", + "pos": "noun", + "word_frequency": 7158 + }, + { + "word": "completado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completed", + "example_sentence_native": "El proyecto está completado.", + "example_sentence_english": "The project is completed.", + "pos": "adjective", + "word_frequency": 7162 + }, + { + "word": "concluido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concluded", + "example_sentence_native": "La reunión ha concluido con éxito.", + "example_sentence_english": "The meeting has concluded successfully.", + "pos": "adjective", + "word_frequency": 7163 + }, + { + "word": "confirmado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmed", + "example_sentence_native": "Su reserva está confirmada.", + "example_sentence_english": "Your reservation is confirmed.", + "pos": "adjective", + "word_frequency": 7164 + }, + { + "word": "confluencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confluence", + "example_sentence_native": "La ciudad se encuentra en la confluencia de dos ríos.", + "example_sentence_english": "The city is located at the confluence of two rivers.", + "pos": "noun", + "word_frequency": 7165 + }, + { + "word": "constituido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constituted", + "example_sentence_native": "El nuevo gobierno está constituido por varios partidos.", + "example_sentence_english": "The new government is constituted by several parties.", + "pos": "adjective", + "word_frequency": 7166 + }, + { + "word": "consultor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultant", + "example_sentence_native": "Contratamos a un consultor para mejorar la eficiencia.", + "example_sentence_english": "We hired a consultant to improve efficiency.", + "pos": "noun", + "word_frequency": 7167 + }, + { + "word": "contrarrestar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to counteract", + "example_sentence_native": "Es difícil contrarrestar los efectos de la inflación.", + "example_sentence_english": "It is difficult to counteract the effects of inflation.", + "pos": "verb", + "word_frequency": 7168 + }, + { + "word": "cruzado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossed", + "example_sentence_native": "Tenía los brazos cruzados.", + "example_sentence_english": "He had his arms crossed.", + "pos": "adjective", + "word_frequency": 7170 + }, + { + "word": "dentista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dentist", + "example_sentence_native": "Tengo una cita con el dentista mañana.", + "example_sentence_english": "I have an appointment with the dentist tomorrow.", + "pos": "noun", + "word_frequency": 7171 + }, + { + "word": "determinante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determining", + "example_sentence_native": "Su decisión fue determinante para el resultado.", + "example_sentence_english": "His decision was determining for the outcome.", + "pos": "adjective", + "word_frequency": 7172 + }, + { + "word": "detestar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detest", + "example_sentence_native": "Detesto la injusticia.", + "example_sentence_english": "I detest injustice.", + "pos": "verb", + "word_frequency": 7173 + }, + { + "word": "dialecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dialect", + "example_sentence_native": "En esa región se habla un dialecto antiguo.", + "example_sentence_english": "An ancient dialect is spoken in that region.", + "pos": "noun", + "word_frequency": 7174 + }, + { + "word": "dinámico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dynamic", + "example_sentence_native": "Es un equipo de trabajo muy dinámico.", + "example_sentence_english": "It's a very dynamic work team.", + "pos": "adjective", + "word_frequency": 7177 + }, + { + "word": "emigración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emigration", + "example_sentence_native": "La emigración ha aumentado en los últimos años.", + "example_sentence_english": "Emigration has increased in recent years.", + "pos": "noun", + "word_frequency": 7179 + }, + { + "word": "empleador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employer", + "example_sentence_native": "Mi empleador ofrece buenos beneficios.", + "example_sentence_english": "My employer offers good benefits.", + "pos": "noun", + "word_frequency": 7180 + }, + { + "word": "enfocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focused", + "example_sentence_native": "Está muy enfocado en sus estudios.", + "example_sentence_english": "He is very focused on his studies.", + "pos": "adjective", + "word_frequency": 7182 + }, + { + "word": "entretenido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entertaining", + "example_sentence_native": "La película fue muy entretenida.", + "example_sentence_english": "The movie was very entertaining.", + "pos": "adjective", + "word_frequency": 7183 + }, + { + "word": "evasión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evasion", + "example_sentence_native": "La evasión de impuestos es un delito grave.", + "example_sentence_english": "Tax evasion is a serious crime.", + "pos": "noun", + "word_frequency": 7184 + }, + { + "word": "excesivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessively", + "example_sentence_native": "Se preocupa excesivamente por los detalles.", + "example_sentence_english": "He worries excessively about details.", + "pos": "adverb", + "word_frequency": 7185 + }, + { + "word": "explícitamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "explicitly", + "example_sentence_native": "Lo dijo explícitamente en la reunión.", + "example_sentence_english": "He said it explicitly in the meeting.", + "pos": "adverb", + "word_frequency": 7186 + }, + { + "word": "expulsar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expel", + "example_sentence_native": "Lo expulsaron del equipo por mal comportamiento.", + "example_sentence_english": "They expelled him from the team for bad behavior.", + "pos": "verb", + "word_frequency": 7187 + }, + { + "word": "fabricado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufactured", + "example_sentence_native": "Este producto es fabricado en España.", + "example_sentence_english": "This product is manufactured in Spain.", + "pos": "adjective", + "word_frequency": 7188 + }, + { + "word": "formulación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formulation", + "example_sentence_native": "La formulación de la política es compleja.", + "example_sentence_english": "The policy formulation is complex.", + "pos": "noun", + "word_frequency": 7189 + }, + { + "word": "fronterizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "border", + "example_sentence_native": "Viven en una ciudad fronteriza.", + "example_sentence_english": "They live in a border town.", + "pos": "adjective", + "word_frequency": 7191 + }, + { + "word": "hondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deep", + "example_sentence_native": "El lago es muy hondo.", + "example_sentence_english": "The lake is very deep.", + "pos": "adjective", + "word_frequency": 7194 + }, + { + "word": "hormona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hormone", + "example_sentence_native": "Las hormonas regulan muchas funciones corporales.", + "example_sentence_english": "Hormones regulate many bodily functions.", + "pos": "noun", + "word_frequency": 7195 + }, + { + "word": "icono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "icon", + "example_sentence_native": "El icono de la aplicación está en el escritorio.", + "example_sentence_english": "The app icon is on the desktop.", + "pos": "noun", + "word_frequency": 7198 + }, + { + "word": "ilustre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illustrious", + "example_sentence_native": "Fue un escritor muy ilustre en su época.", + "example_sentence_english": "He was a very illustrious writer in his time.", + "pos": "adjective", + "word_frequency": 7199 + }, + { + "word": "impresionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impressed", + "example_sentence_native": "Estaba muy impresionado con su trabajo.", + "example_sentence_english": "I was very impressed with his work.", + "pos": "adjective", + "word_frequency": 7200 + }, + { + "word": "imputado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accused;charged", + "example_sentence_native": "El sospechoso fue declarado imputado en el caso.", + "example_sentence_english": "The suspect was declared accused in the case.", + "pos": "adjective", + "word_frequency": 7201 + }, + { + "word": "innecesario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnecessary", + "example_sentence_native": "Fue un gasto innecesario.", + "example_sentence_english": "It was an unnecessary expense.", + "pos": "adjective", + "word_frequency": 7202 + }, + { + "word": "insignificante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insignificant", + "example_sentence_native": "Su contribución fue insignificante.", + "example_sentence_english": "His contribution was insignificant.", + "pos": "adjective", + "word_frequency": 7203 + }, + { + "word": "intuición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuition", + "example_sentence_native": "Confío en mi intuición para tomar decisiones.", + "example_sentence_english": "I trust my intuition to make decisions.", + "pos": "noun", + "word_frequency": 7204 + }, + { + "word": "jefatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leadership;head office", + "example_sentence_native": "La jefatura de la empresa anunció cambios.", + "example_sentence_english": "The company's leadership announced changes.", + "pos": "noun", + "word_frequency": 7205 + }, + { + "word": "magazine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magazine", + "example_sentence_native": "Leí un artículo interesante en la magazine.", + "example_sentence_english": "I read an interesting article in the magazine.", + "pos": "noun", + "word_frequency": 7208 + }, + { + "word": "manager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manager", + "example_sentence_native": "El manager del equipo habló con los jugadores.", + "example_sentence_english": "The team's manager spoke with the players.", + "pos": "noun", + "word_frequency": 7209 + }, + { + "word": "morada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dwelling;abode", + "example_sentence_native": "Su humilde morada estaba en el campo.", + "example_sentence_english": "His humble dwelling was in the countryside.", + "pos": "noun", + "word_frequency": 7211 + }, + { + "word": "oponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opponent", + "example_sentence_native": "Derrotó a su oponente en la final.", + "example_sentence_english": "He defeated his opponent in the final.", + "pos": "noun", + "word_frequency": 7213 + }, + { + "word": "ordenamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordering;arrangement;legal system", + "example_sentence_native": "El ordenamiento jurídico es complejo.", + "example_sentence_english": "The legal system is complex.", + "pos": "noun", + "word_frequency": 7214 + }, + { + "word": "pañal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diaper", + "example_sentence_native": "Necesitamos cambiar el pañal del bebé.", + "example_sentence_english": "We need to change the baby's diaper.", + "pos": "noun", + "word_frequency": 7215 + }, + { + "word": "periodístico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journalistic", + "example_sentence_native": "Tiene una gran trayectoria periodística.", + "example_sentence_english": "He has a great journalistic career.", + "pos": "adjective", + "word_frequency": 7217 + }, + { + "word": "plantar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plant", + "example_sentence_native": "Vamos a plantar un árbol en el jardín.", + "example_sentence_english": "We are going to plant a tree in the garden.", + "pos": "verb", + "word_frequency": 7219 + }, + { + "word": "polémico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversial;polemic", + "example_sentence_native": "Es un tema muy polémico.", + "example_sentence_english": "It's a very controversial topic.", + "pos": "adjective", + "word_frequency": 7220 + }, + { + "word": "porte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bearing;stature;postage", + "example_sentence_native": "Tenía un porte elegante y distinguido.", + "example_sentence_english": "He had an elegant and distinguished bearing.", + "pos": "noun", + "word_frequency": 7221 + }, + { + "word": "preparatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preparatory", + "example_sentence_native": "El curso preparatorio es obligatorio.", + "example_sentence_english": "The preparatory course is mandatory.", + "pos": "adjective", + "word_frequency": 7222 + }, + { + "word": "prof", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prof (professor)", + "example_sentence_native": "El prof nos dio mucha tarea.", + "example_sentence_english": "The prof gave us a lot of homework.", + "pos": "noun", + "word_frequency": 7223 + }, + { + "word": "progresivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressively", + "example_sentence_native": "La situación mejoró progresivamente.", + "example_sentence_english": "The situation progressively improved.", + "pos": "adverb", + "word_frequency": 7224 + }, + { + "word": "proposición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proposition;proposal", + "example_sentence_native": "Hizo una proposición interesante.", + "example_sentence_english": "He made an interesting proposition.", + "pos": "noun", + "word_frequency": 7225 + }, + { + "word": "rastrear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to track;to trace", + "example_sentence_native": "Pudimos rastrear el paquete.", + "example_sentence_english": "We were able to track the package.", + "pos": "verb", + "word_frequency": 7226 + }, + { + "word": "recital", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recital", + "example_sentence_native": "Asistimos a un recital de piano.", + "example_sentence_english": "We attended a piano recital.", + "pos": "noun", + "word_frequency": 7227 + }, + { + "word": "redactar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draft;to write (a text)", + "example_sentence_native": "Necesito redactar un informe.", + "example_sentence_english": "I need to draft a report.", + "pos": "verb", + "word_frequency": 7228 + }, + { + "word": "reestructuración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restructuring", + "example_sentence_native": "La empresa anunció una reestructuración.", + "example_sentence_english": "The company announced a restructuring.", + "pos": "noun", + "word_frequency": 7229 + }, + { + "word": "resistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistant;tough", + "example_sentence_native": "Este material es muy resistente.", + "example_sentence_english": "This material is very resistant.", + "pos": "adjective", + "word_frequency": 7230 + }, + { + "word": "secuela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequel;after-effect", + "example_sentence_native": "La película tuvo una secuela exitosa.", + "example_sentence_english": "The movie had a successful sequel.", + "pos": "noun", + "word_frequency": 7232 + }, + { + "word": "service", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "service", + "example_sentence_native": "Necesito llevar el coche al service.", + "example_sentence_english": "I need to take the car for service.", + "pos": "noun", + "word_frequency": 7233 + }, + { + "word": "simulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulation", + "example_sentence_native": "Hicimos una simulación del vuelo.", + "example_sentence_english": "We did a flight simulation.", + "pos": "noun", + "word_frequency": 7234 + }, + { + "word": "sospechar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suspect", + "example_sentence_native": "Sospecho que algo anda mal.", + "example_sentence_english": "I suspect something is wrong.", + "pos": "verb", + "word_frequency": 7235 + }, + { + "word": "suspiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sigh", + "example_sentence_native": "Dio un largo suspiro de alivio.", + "example_sentence_english": "He gave a long sigh of relief.", + "pos": "noun", + "word_frequency": 7236 + }, + { + "word": "sustentable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sustainable", + "example_sentence_native": "Buscamos un desarrollo sustentable.", + "example_sentence_english": "We seek sustainable development.", + "pos": "adjective", + "word_frequency": 7237 + }, + { + "word": "sustituto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute", + "example_sentence_native": "Necesitamos un sustituto para el profesor.", + "example_sentence_english": "We need a substitute for the teacher.", + "pos": "noun", + "word_frequency": 7238 + }, + { + "word": "television", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "television", + "example_sentence_native": "Me gusta ver la televisión por la noche.", + "example_sentence_english": "I like to watch television at night.", + "pos": "noun", + "word_frequency": 7239 + }, + { + "word": "tenor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenor;gist", + "example_sentence_native": "El tenor de su discurso fue muy claro.", + "example_sentence_english": "The tenor of his speech was very clear.", + "pos": "noun", + "word_frequency": 7240 + }, + { + "word": "tia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "aunt", + "example_sentence_native": "Mi tía viene a visitarnos este fin de semana.", + "example_sentence_english": "My aunt is coming to visit us this weekend.", + "pos": "noun", + "word_frequency": 7241 + }, + { + "word": "transferir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transfer", + "example_sentence_native": "Necesito transferir dinero a mi cuenta.", + "example_sentence_english": "I need to transfer money to my account.", + "pos": "verb", + "word_frequency": 7242 + }, + { + "word": "tutela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guardianship;tutelage", + "example_sentence_native": "La abuela obtuvo la tutela de sus nietos.", + "example_sentence_english": "The grandmother obtained guardianship of her grandchildren.", + "pos": "noun", + "word_frequency": 7243 + }, + { + "word": "térmico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal", + "example_sentence_native": "Necesitamos un buen aislamiento térmico para la casa.", + "example_sentence_english": "We need good thermal insulation for the house.", + "pos": "adjective", + "word_frequency": 7244 + }, + { + "word": "user", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "user", + "example_sentence_native": "El sistema permite a cada user personalizar su perfil.", + "example_sentence_english": "The system allows each user to customize their profile.", + "pos": "noun", + "word_frequency": 7245 + }, + { + "word": "vacante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vacancy;opening", + "example_sentence_native": "Hay una vacante para el puesto de gerente.", + "example_sentence_english": "There is a vacancy for the manager position.", + "pos": "noun", + "word_frequency": 7246 + }, + { + "word": "vulnerabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulnerability", + "example_sentence_native": "La vulnerabilidad del sistema fue explotada por los hackers.", + "example_sentence_english": "The system's vulnerability was exploited by hackers.", + "pos": "noun", + "word_frequency": 7247 + }, + { + "word": "abundar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abound;to be plentiful", + "example_sentence_native": "En esta región, los recursos naturales abundan.", + "example_sentence_english": "In this region, natural resources abound.", + "pos": "verb", + "word_frequency": 7248 + }, + { + "word": "adversario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adversary;opponent", + "example_sentence_native": "Su adversario político presentó un fuerte argumento.", + "example_sentence_english": "His political adversary presented a strong argument.", + "pos": "noun", + "word_frequency": 7250 + }, + { + "word": "advertido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warned;noticed;astute", + "example_sentence_native": "Estaba advertido del peligro.", + "example_sentence_english": "He was warned of the danger.", + "pos": "adjective", + "word_frequency": 7251 + }, + { + "word": "alambre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wire", + "example_sentence_native": "Necesitamos un trozo de alambre para arreglarlo.", + "example_sentence_english": "We need a piece of wire to fix it.", + "pos": "noun", + "word_frequency": 7252 + }, + { + "word": "almorzar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have lunch", + "example_sentence_native": "Vamos a almorzar a las dos.", + "example_sentence_english": "We are going to have lunch at two.", + "pos": "verb", + "word_frequency": 7254 + }, + { + "word": "animar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to encourage;to cheer up;to animate", + "example_sentence_native": "Ella siempre me anima a seguir mis sueños.", + "example_sentence_english": "She always encourages me to follow my dreams.", + "pos": "verb", + "word_frequency": 7255 + }, + { + "word": "autenticidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authenticity", + "example_sentence_native": "La autenticidad de la obra de arte fue confirmada.", + "example_sentence_english": "The authenticity of the artwork was confirmed.", + "pos": "noun", + "word_frequency": 7257 + }, + { + "word": "belga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Belgian", + "example_sentence_native": "Mi amigo es belga.", + "example_sentence_english": "My friend is Belgian.", + "pos": "adjective", + "word_frequency": 7258 + }, + { + "word": "cantera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarry;youth academy (sports)", + "example_sentence_native": "El club tiene una excelente cantera de jóvenes talentos.", + "example_sentence_english": "The club has an excellent youth academy for young talents.", + "pos": "noun", + "word_frequency": 7260 + }, + { + "word": "carcel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prison;jail", + "example_sentence_native": "Pasó cinco años en la cárcel.", + "example_sentence_english": "He spent five years in prison.", + "pos": "noun", + "word_frequency": 7261 + }, + { + "word": "castaño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brown (hair;eyes);chestnut", + "example_sentence_native": "Tiene el pelo castaño y los ojos verdes.", + "example_sentence_english": "She has brown hair and green eyes.", + "pos": "adjective", + "word_frequency": 7262 + }, + { + "word": "caño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pipe;spout;drain", + "example_sentence_native": "El agua sale del caño.", + "example_sentence_english": "The water comes out of the spout.", + "pos": "noun", + "word_frequency": 7264 + }, + { + "word": "celebridad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebrity", + "example_sentence_native": "Es una celebridad en su país.", + "example_sentence_english": "He is a celebrity in his country.", + "pos": "noun", + "word_frequency": 7265 + }, + { + "word": "cicatriz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scar", + "example_sentence_native": "Tiene una cicatriz en la rodilla.", + "example_sentence_english": "He has a scar on his knee.", + "pos": "noun", + "word_frequency": 7267 + }, + { + "word": "concernir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to concern;to relate to", + "example_sentence_native": "Este asunto concierne a todos los empleados.", + "example_sentence_english": "This matter concerns all employees.", + "pos": "verb", + "word_frequency": 7268 + }, + { + "word": "corbata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tie;necktie", + "example_sentence_native": "Se puso una corbata azul para la reunión.", + "example_sentence_english": "He put on a blue tie for the meeting.", + "pos": "noun", + "word_frequency": 7269 + }, + { + "word": "corpus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpus", + "example_sentence_native": "El lingüista analizó un gran corpus de textos.", + "example_sentence_english": "The linguist analyzed a large corpus of texts.", + "pos": "noun", + "word_frequency": 7270 + }, + { + "word": "cuchara", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spoon", + "example_sentence_native": "Por favor, pásame la cuchara.", + "example_sentence_english": "Please pass me the spoon.", + "pos": "noun", + "word_frequency": 7271 + }, + { + "word": "deficiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficient;poor;inadequate", + "example_sentence_native": "Su rendimiento fue deficiente en el examen.", + "example_sentence_english": "His performance was deficient in the exam.", + "pos": "adjective", + "word_frequency": 7273 + }, + { + "word": "dental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dental", + "example_sentence_native": "Necesito una revisión dental.", + "example_sentence_english": "I need a dental check-up.", + "pos": "adjective", + "word_frequency": 7274 + }, + { + "word": "descartar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discard;to rule out", + "example_sentence_native": "Debemos descartar esa opción.", + "example_sentence_english": "We must rule out that option.", + "pos": "verb", + "word_frequency": 7275 + }, + { + "word": "desempeñar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perform;to carry out;to play (a role)", + "example_sentence_native": "Él desempeña un papel crucial en el equipo.", + "example_sentence_english": "He plays a crucial role in the team.", + "pos": "verb", + "word_frequency": 7276 + }, + { + "word": "diferencial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "differential", + "example_sentence_native": "Calculamos la ecuación diferencial.", + "example_sentence_english": "We calculated the differential equation.", + "pos": "adjective", + "word_frequency": 7277 + }, + { + "word": "dinastía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynasty", + "example_sentence_native": "La dinastía reinó durante siglos.", + "example_sentence_english": "The dynasty reigned for centuries.", + "pos": "noun", + "word_frequency": 7278 + }, + { + "word": "distante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant;remote", + "example_sentence_native": "Vive en un pueblo distante de la ciudad.", + "example_sentence_english": "He lives in a distant village from the city.", + "pos": "adjective", + "word_frequency": 7279 + }, + { + "word": "dotado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gifted;endowed", + "example_sentence_native": "Es un estudiante muy dotado para las matemáticas.", + "example_sentence_english": "He is a very gifted student in mathematics.", + "pos": "adjective", + "word_frequency": 7280 + }, + { + "word": "dulzura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweetness;tenderness", + "example_sentence_native": "La dulzura de su voz me tranquilizó.", + "example_sentence_english": "The sweetness of her voice calmed me.", + "pos": "noun", + "word_frequency": 7281 + }, + { + "word": "elaborado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elaborate;detailed", + "example_sentence_native": "Presentó un plan muy elaborado para el proyecto.", + "example_sentence_english": "He presented a very elaborate plan for the project.", + "pos": "adjective", + "word_frequency": 7283 + }, + { + "word": "encarcelado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprisoned;incarcerated", + "example_sentence_native": "El hombre encarcelado apeló su sentencia.", + "example_sentence_english": "The imprisoned man appealed his sentence.", + "pos": "adjective", + "word_frequency": 7284 + }, + { + "word": "escalar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb;to scale", + "example_sentence_native": "Decidimos escalar la montaña al amanecer.", + "example_sentence_english": "We decided to climb the mountain at dawn.", + "pos": "verb", + "word_frequency": 7286 + }, + { + "word": "etnia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethnicity;ethnic group", + "example_sentence_native": "El país tiene una gran diversidad de etnias.", + "example_sentence_english": "The country has a great diversity of ethnicities.", + "pos": "noun", + "word_frequency": 7287 + }, + { + "word": "fallido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failed;unsuccessful", + "example_sentence_native": "Su intento de escape fue fallido.", + "example_sentence_english": "His escape attempt was unsuccessful.", + "pos": "adjective", + "word_frequency": 7288 + }, + { + "word": "festejo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebration;festivity", + "example_sentence_native": "El festejo de su cumpleaños fue muy animado.", + "example_sentence_english": "His birthday celebration was very lively.", + "pos": "noun", + "word_frequency": 7290 + }, + { + "word": "garantizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guaranteed", + "example_sentence_native": "La calidad del producto está garantizada.", + "example_sentence_english": "The quality of the product is guaranteed.", + "pos": "adjective", + "word_frequency": 7292 + }, + { + "word": "glorioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glorious", + "example_sentence_native": "Fue un momento glorioso en la historia del equipo.", + "example_sentence_english": "It was a glorious moment in the team's history.", + "pos": "adjective", + "word_frequency": 7293 + }, + { + "word": "gradual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gradual", + "example_sentence_native": "El cambio fue gradual y apenas perceptible.", + "example_sentence_english": "The change was gradual and barely perceptible.", + "pos": "adjective", + "word_frequency": 7295 + }, + { + "word": "génesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genesis;origin", + "example_sentence_native": "Estudiaron el génesis de la civilización.", + "example_sentence_english": "They studied the genesis of civilization.", + "pos": "noun", + "word_frequency": 7296 + }, + { + "word": "hablante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker", + "example_sentence_native": "Es un hablante nativo de español.", + "example_sentence_english": "He is a native Spanish speaker.", + "pos": "noun", + "word_frequency": 7297 + }, + { + "word": "ibérico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Iberian", + "example_sentence_native": "La península ibérica es rica en historia.", + "example_sentence_english": "The Iberian peninsula is rich in history.", + "pos": "adjective", + "word_frequency": 7298 + }, + { + "word": "impactante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shocking;striking;impactful", + "example_sentence_native": "La noticia fue realmente impactante para todos.", + "example_sentence_english": "The news was truly shocking for everyone.", + "pos": "adjective", + "word_frequency": 7299 + }, + { + "word": "inaugural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inaugural", + "example_sentence_native": "Asistimos a la ceremonia inaugural del evento.", + "example_sentence_english": "We attended the inaugural ceremony of the event.", + "pos": "adjective", + "word_frequency": 7300 + }, + { + "word": "individualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "individually", + "example_sentence_native": "Los estudiantes trabajaron individualmente en el proyecto.", + "example_sentence_english": "The students worked individually on the project.", + "pos": "adverb", + "word_frequency": 7301 + }, + { + "word": "instrumental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instrumental", + "example_sentence_native": "Su ayuda fue instrumental para el éxito del plan.", + "example_sentence_english": "His help was instrumental to the success of the plan.", + "pos": "adjective", + "word_frequency": 7302 + }, + { + "word": "intensamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intensely", + "example_sentence_native": "Llovió intensamente durante toda la noche.", + "example_sentence_english": "It rained intensely all night.", + "pos": "adverb", + "word_frequency": 7303 + }, + { + "word": "interminable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interminable;endless", + "example_sentence_native": "La espera se hizo interminable.", + "example_sentence_english": "The wait became interminable.", + "pos": "adjective", + "word_frequency": 7304 + }, + { + "word": "intriga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrigue;plot", + "example_sentence_native": "La película estaba llena de intriga y misterio.", + "example_sentence_english": "The movie was full of intrigue and mystery.", + "pos": "noun", + "word_frequency": 7305 + }, + { + "word": "jurisprudencia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "jurisprudence;case law", + "example_sentence_native": "La jurisprudencia es fundamental en el derecho.", + "example_sentence_english": "Jurisprudence is fundamental in law.", + "pos": "noun", + "word_frequency": 7309 + }, + { + "word": "legalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legalization", + "example_sentence_native": "La legalización de ciertas sustancias es un tema controvertido.", + "example_sentence_english": "The legalization of certain substances is a controversial topic.", + "pos": "noun", + "word_frequency": 7310 + }, + { + "word": "liderar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lead", + "example_sentence_native": "Él fue elegido para liderar el equipo.", + "example_sentence_english": "He was chosen to lead the team.", + "pos": "verb", + "word_frequency": 7311 + }, + { + "word": "manada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herd;pack (of animals)", + "example_sentence_native": "Vimos una manada de lobos en el bosque.", + "example_sentence_english": "We saw a pack of wolves in the forest.", + "pos": "noun", + "word_frequency": 7314 + }, + { + "word": "mejilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheek", + "example_sentence_native": "Le dio un beso en la mejilla.", + "example_sentence_english": "He gave her a kiss on the cheek.", + "pos": "noun", + "word_frequency": 7315 + }, + { + "word": "metido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involved;stuck;nosy (colloquial)", + "example_sentence_native": "No seas tan metido en los asuntos de los demás.", + "example_sentence_english": "Don't be so nosy in other people's affairs.", + "pos": "adjective", + "word_frequency": 7316 + }, + { + "word": "misionero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missionary", + "example_sentence_native": "El misionero viajó a tierras lejanas.", + "example_sentence_english": "The missionary traveled to distant lands.", + "pos": "noun", + "word_frequency": 7317 + }, + { + "word": "molar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be cool;to like (colloquial;Spain)", + "example_sentence_native": "¡Esta película mola mucho!", + "example_sentence_english": "This movie is really cool!", + "pos": "verb", + "word_frequency": 7319 + }, + { + "word": "morado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "purple", + "example_sentence_native": "Me gusta el color morado.", + "example_sentence_english": "I like the color purple.", + "pos": "adjective", + "word_frequency": 7322 + }, + { + "word": "mudarse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move (residence)", + "example_sentence_native": "Nos vamos a mudar el próximo mes.", + "example_sentence_english": "We are going to move next month.", + "pos": "verb", + "word_frequency": 7323 + }, + { + "word": "neumático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tire", + "example_sentence_native": "Necesito cambiar un neumático del coche.", + "example_sentence_english": "I need to change a car tire.", + "pos": "noun", + "word_frequency": 7325 + }, + { + "word": "nova", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nova (astronomy)", + "example_sentence_native": "Una nova es una estrella que aumenta su brillo.", + "example_sentence_english": "A nova is a star that increases its brightness.", + "pos": "noun", + "word_frequency": 7326 + }, + { + "word": "obedecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to obey", + "example_sentence_native": "Los niños deben obedecer a sus padres.", + "example_sentence_english": "Children must obey their parents.", + "pos": "verb", + "word_frequency": 7327 + }, + { + "word": "picado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chopped;bitten;angry (colloquial)", + "example_sentence_native": "Añade cebolla picada a la salsa.", + "example_sentence_english": "Add chopped onion to the sauce.", + "pos": "adjective", + "word_frequency": 7329 + }, + { + "word": "poniente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "west;setting sun", + "example_sentence_native": "El viento de poniente es muy fuerte hoy.", + "example_sentence_english": "The west wind is very strong today.", + "pos": "noun", + "word_frequency": 7330 + }, + { + "word": "porteño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from a port city;from Buenos Aires", + "example_sentence_native": "Mi amigo es porteño, nació en Buenos Aires.", + "example_sentence_english": "My friend is porteño, he was born in Buenos Aires.", + "pos": "adjective", + "word_frequency": 7331 + }, + { + "word": "posgrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postgraduate degree;study", + "example_sentence_native": "Está haciendo un posgrado en ingeniería.", + "example_sentence_english": "He is doing a postgraduate degree in engineering.", + "pos": "noun", + "word_frequency": 7332 + }, + { + "word": "preguntarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wonder;to ask oneself", + "example_sentence_native": "Me pregunto qué hará mañana.", + "example_sentence_english": "I wonder what he will do tomorrow.", + "pos": "verb", + "word_frequency": 7333 + }, + { + "word": "prender", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn on;to catch fire", + "example_sentence_native": "Por favor, prende la luz.", + "example_sentence_english": "Please, turn on the light.", + "pos": "verb", + "word_frequency": 7334 + }, + { + "word": "procurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to try to;to endeavor;to obtain", + "example_sentence_native": "Procuraré llegar a tiempo.", + "example_sentence_english": "I will try to arrive on time.", + "pos": "verb", + "word_frequency": 7335 + }, + { + "word": "profesorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaching staff;professorship;teacher training", + "example_sentence_native": "El profesorado de la universidad es excelente.", + "example_sentence_english": "The university's teaching staff is excellent.", + "pos": "noun", + "word_frequency": 7336 + }, + { + "word": "programar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to program;to schedule", + "example_sentence_native": "Necesito programar una reunión para el lunes.", + "example_sentence_english": "I need to schedule a meeting for Monday.", + "pos": "verb", + "word_frequency": 7337 + }, + { + "word": "propagación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propagation;spread", + "example_sentence_native": "La propagación del virus fue muy rápida.", + "example_sentence_english": "The spread of the virus was very fast.", + "pos": "noun", + "word_frequency": 7338 + }, + { + "word": "prototipo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prototype", + "example_sentence_native": "Están probando el prototipo del nuevo coche.", + "example_sentence_english": "They are testing the prototype of the new car.", + "pos": "noun", + "word_frequency": 7339 + }, + { + "word": "pyme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "SME (Small and Medium-sized Enterprise)", + "example_sentence_native": "Las pymes son la base de la economía.", + "example_sentence_english": "SMEs are the backbone of the economy.", + "pos": "noun", + "word_frequency": 7340 + }, + { + "word": "regalado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gifted;given away for free;very easy", + "example_sentence_native": "El examen estuvo regalado, muy fácil.", + "example_sentence_english": "The exam was a piece of cake, very easy.", + "pos": "adjective", + "word_frequency": 7342 + }, + { + "word": "regeneración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regeneration", + "example_sentence_native": "La regeneración de los tejidos es un proceso complejo.", + "example_sentence_english": "Tissue regeneration is a complex process.", + "pos": "noun", + "word_frequency": 7343 + }, + { + "word": "religion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "religion", + "example_sentence_native": "La libertad de religión es un derecho fundamental.", + "example_sentence_english": "Freedom of religion is a fundamental right.", + "pos": "noun", + "word_frequency": 7344 + }, + { + "word": "reprimir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repress;to suppress", + "example_sentence_native": "Intentó reprimir sus emociones.", + "example_sentence_english": "He tried to repress his emotions.", + "pos": "verb", + "word_frequency": 7345 + }, + { + "word": "revivir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revive;to bring back to life", + "example_sentence_native": "Los médicos lograron revivir al paciente.", + "example_sentence_english": "The doctors managed to revive the patient.", + "pos": "verb", + "word_frequency": 7346 + }, + { + "word": "sabado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday", + "example_sentence_native": "El sabado vamos al parque.", + "example_sentence_english": "On Saturday we are going to the park.", + "pos": "noun", + "word_frequency": 7348 + }, + { + "word": "saudita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saudi", + "example_sentence_native": "La cultura saudita es muy rica.", + "example_sentence_english": "Saudi culture is very rich.", + "pos": "adjective", + "word_frequency": 7349 + }, + { + "word": "seo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "SEO (Search Engine Optimization)", + "example_sentence_native": "El SEO es crucial para la visibilidad online.", + "example_sentence_english": "SEO is crucial for online visibility.", + "pos": "noun", + "word_frequency": 7350 + }, + { + "word": "sex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sex", + "example_sentence_native": "La educación sexual es importante.", + "example_sentence_english": "Sex education is important.", + "pos": "noun", + "word_frequency": 7351 + }, + { + "word": "sobrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be left over;to be in excess", + "example_sentence_native": "Nos sobró mucha comida de la fiesta.", + "example_sentence_english": "We had a lot of food left over from the party.", + "pos": "verb", + "word_frequency": 7352 + }, + { + "word": "suplemento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplement;appendix", + "example_sentence_native": "Tomó un suplemento vitamínico.", + "example_sentence_english": "He took a vitamin supplement.", + "pos": "noun", + "word_frequency": 7353 + }, + { + "word": "suprimir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to suppress;to abolish;to delete", + "example_sentence_native": "Decidieron suprimir el impuesto.", + "example_sentence_english": "They decided to abolish the tax.", + "pos": "verb", + "word_frequency": 7354 + }, + { + "word": "taquilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ticket office;box office;locker", + "example_sentence_native": "Compramos las entradas en la taquilla.", + "example_sentence_english": "We bought the tickets at the ticket office.", + "pos": "noun", + "word_frequency": 7355 + }, + { + "word": "tequila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tequila", + "example_sentence_native": "El tequila es una bebida mexicana.", + "example_sentence_english": "Tequila is a Mexican drink.", + "pos": "noun", + "word_frequency": 7356 + }, + { + "word": "triunfar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to triumph;to succeed", + "example_sentence_native": "Espero que triunfes en tu carrera.", + "example_sentence_english": "I hope you succeed in your career.", + "pos": "verb", + "word_frequency": 7358 + }, + { + "word": "unanimidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unanimity", + "example_sentence_native": "La decisión fue tomada por unanimidad.", + "example_sentence_english": "The decision was taken by unanimity.", + "pos": "noun", + "word_frequency": 7359 + }, + { + "word": "var", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "VAR (Video Assistant Referee)", + "example_sentence_native": "El árbitro consultó el VAR para revisar la jugada.", + "example_sentence_english": "The referee consulted the VAR to review the play.", + "pos": "noun", + "word_frequency": 7361 + }, + { + "word": "villano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villain", + "example_sentence_native": "El villano de la película era muy malvado.", + "example_sentence_english": "The villain in the movie was very evil.", + "pos": "noun", + "word_frequency": 7364 + }, + { + "word": "violín", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violin", + "example_sentence_native": "Ella toca el violín en la orquesta.", + "example_sentence_english": "She plays the violin in the orchestra.", + "pos": "noun", + "word_frequency": 7365 + }, + { + "word": "víspera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eve;day before", + "example_sentence_native": "La víspera de Navidad es una noche especial.", + "example_sentence_english": "Christmas Eve is a special night.", + "pos": "noun", + "word_frequency": 7366 + }, + { + "word": "acompañante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "companion;escort", + "example_sentence_native": "Mi acompañante me ayudó a llevar las maletas.", + "example_sentence_english": "My companion helped me carry the suitcases.", + "pos": "noun", + "word_frequency": 7370 + }, + { + "word": "acumulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulated;accrued", + "example_sentence_native": "La nieve acumulada dificultaba el tráfico.", + "example_sentence_english": "The accumulated snow made traffic difficult.", + "pos": "adjective", + "word_frequency": 7371 + }, + { + "word": "adición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addition", + "example_sentence_native": "La adición de sal mejoró el sabor.", + "example_sentence_english": "The addition of salt improved the flavor.", + "pos": "noun", + "word_frequency": 7372 + }, + { + "word": "adorable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adorable", + "example_sentence_native": "El cachorro es realmente adorable.", + "example_sentence_english": "The puppy is truly adorable.", + "pos": "adjective", + "word_frequency": 7373 + }, + { + "word": "alejado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant;remote", + "example_sentence_native": "Viven en un pueblo muy alejado de la ciudad.", + "example_sentence_english": "They live in a town very distant from the city.", + "pos": "adjective", + "word_frequency": 7374 + }, + { + "word": "almacenar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to store", + "example_sentence_native": "Necesitamos almacenar la comida en un lugar fresco.", + "example_sentence_english": "We need to store the food in a cool place.", + "pos": "verb", + "word_frequency": 7375 + }, + { + "word": "amabilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kindness;friendliness", + "example_sentence_native": "Su amabilidad me sorprendió gratamente.", + "example_sentence_english": "Her kindness pleasantly surprised me.", + "pos": "noun", + "word_frequency": 7376 + }, + { + "word": "antaño", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in olden times;formerly", + "example_sentence_native": "Antaño, la vida era más sencilla.", + "example_sentence_english": "In olden times, life was simpler.", + "pos": "noun", + "word_frequency": 7379 + }, + { + "word": "aprovechado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunistic;taken advantage of", + "example_sentence_native": "No seas un aprovechado y comparte con los demás.", + "example_sentence_english": "Don't be opportunistic and share with others.", + "pos": "adjective", + "word_frequency": 7381 + }, + { + "word": "arrojar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw;to cast", + "example_sentence_native": "No debes arrojar basura en la calle.", + "example_sentence_english": "You shouldn't throw trash in the street.", + "pos": "verb", + "word_frequency": 7382 + }, + { + "word": "artefacto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artifact;device", + "example_sentence_native": "Encontraron un artefacto antiguo en la excavación.", + "example_sentence_english": "They found an ancient artifact in the excavation.", + "pos": "noun", + "word_frequency": 7383 + }, + { + "word": "atún", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tuna", + "example_sentence_native": "Me gusta el sándwich de atún.", + "example_sentence_english": "I like tuna sandwich.", + "pos": "noun", + "word_frequency": 7384 + }, + { + "word": "caldera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boiler;cauldron", + "example_sentence_native": "La caldera de la calefacción se estropeó.", + "example_sentence_english": "The heating boiler broke down.", + "pos": "noun", + "word_frequency": 7387 + }, + { + "word": "callejero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stray (animal);street (person)", + "example_sentence_native": "Adoptamos un perro callejero.", + "example_sentence_english": "We adopted a stray dog.", + "pos": "noun", + "word_frequency": 7388 + }, + { + "word": "callejón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alley;narrow street", + "example_sentence_native": "El callejón era oscuro y estrecho.", + "example_sentence_english": "The alley was dark and narrow.", + "pos": "noun", + "word_frequency": 7389 + }, + { + "word": "caracol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snail;spiral", + "example_sentence_native": "El caracol se mueve muy lentamente.", + "example_sentence_english": "The snail moves very slowly.", + "pos": "noun", + "word_frequency": 7390 + }, + { + "word": "cigarro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cigarette", + "example_sentence_native": "No se permite fumar cigarro aquí.", + "example_sentence_english": "Smoking cigarettes is not allowed here.", + "pos": "noun", + "word_frequency": 7391 + }, + { + "word": "clero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clergy", + "example_sentence_native": "El clero tiene un papel importante en la comunidad.", + "example_sentence_english": "The clergy has an important role in the community.", + "pos": "noun", + "word_frequency": 7392 + }, + { + "word": "combo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combo;combination", + "example_sentence_native": "Pedimos el combo de hamburguesa y papas fritas.", + "example_sentence_english": "We ordered the hamburger and fries combo.", + "pos": "noun", + "word_frequency": 7393 + }, + { + "word": "comprensible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understandable;comprehensible", + "example_sentence_native": "Su reacción fue totalmente comprensible.", + "example_sentence_english": "Her reaction was totally understandable.", + "pos": "adjective", + "word_frequency": 7394 + }, + { + "word": "conceptual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conceptual", + "example_sentence_native": "El arte conceptual a menudo desafía las ideas tradicionales.", + "example_sentence_english": "Conceptual art often challenges traditional ideas.", + "pos": "adjective", + "word_frequency": 7395 + }, + { + "word": "congresista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congressperson;representative", + "example_sentence_native": "El congresista presentó un nuevo proyecto de ley.", + "example_sentence_english": "The congressperson presented a new bill.", + "pos": "noun", + "word_frequency": 7396 + }, + { + "word": "cordial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cordial;friendly", + "example_sentence_native": "Recibimos una bienvenida muy cordial.", + "example_sentence_english": "We received a very cordial welcome.", + "pos": "adjective", + "word_frequency": 7397 + }, + { + "word": "cortado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut;short (coffee)", + "example_sentence_native": "El césped está bien cortado.", + "example_sentence_english": "The grass is well cut.", + "pos": "adjective", + "word_frequency": 7398 + }, + { + "word": "costoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expensive;costly", + "example_sentence_native": "El coche nuevo es muy costoso.", + "example_sentence_english": "The new car is very expensive.", + "pos": "adjective", + "word_frequency": 7399 + }, + { + "word": "criar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise;to breed", + "example_sentence_native": "Ella crió a sus hijos con mucho amor.", + "example_sentence_english": "She raised her children with a lot of love.", + "pos": "verb", + "word_frequency": 7400 + }, + { + "word": "desigual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unequal;uneven", + "example_sentence_native": "La distribución de la riqueza es muy desigual.", + "example_sentence_english": "The distribution of wealth is very unequal.", + "pos": "adjective", + "word_frequency": 7403 + }, + { + "word": "diarrea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diarrhea", + "example_sentence_native": "Tuvo diarrea después de comer algo en mal estado.", + "example_sentence_english": "He had diarrhea after eating something spoiled.", + "pos": "noun", + "word_frequency": 7404 + }, + { + "word": "dirigencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leadership;management", + "example_sentence_native": "La dirigencia del partido anunció nuevas medidas.", + "example_sentence_english": "The party's leadership announced new measures.", + "pos": "noun", + "word_frequency": 7405 + }, + { + "word": "disminuido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diminished;reduced;impaired", + "example_sentence_native": "Se siente disminuido por la falta de apoyo.", + "example_sentence_english": "He feels diminished by the lack of support.", + "pos": "adjective", + "word_frequency": 7406 + }, + { + "word": "disparado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shot up;skyrocketed", + "example_sentence_native": "Los precios de la vivienda se han disparado.", + "example_sentence_english": "Housing prices have skyrocketed.", + "pos": "adjective", + "word_frequency": 7407 + }, + { + "word": "distribuido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distributed", + "example_sentence_native": "El folleto fue distribuido entre todos los asistentes.", + "example_sentence_english": "The brochure was distributed among all attendees.", + "pos": "adjective", + "word_frequency": 7408 + }, + { + "word": "documentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "documented", + "example_sentence_native": "Su investigación está muy bien documentada.", + "example_sentence_english": "His research is very well documented.", + "pos": "adjective", + "word_frequency": 7409 + }, + { + "word": "dúo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duo", + "example_sentence_native": "El dúo musical interpretó una hermosa canción.", + "example_sentence_english": "The musical duo performed a beautiful song.", + "pos": "noun", + "word_frequency": 7410 + }, + { + "word": "elemental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elementary;basic", + "example_sentence_native": "Es una verdad elemental que el agua es necesaria para vivir.", + "example_sentence_english": "It's an elementary truth that water is necessary to live.", + "pos": "adjective", + "word_frequency": 7411 + }, + { + "word": "elogio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise;compliment", + "example_sentence_native": "Recibió muchos elogios por su trabajo.", + "example_sentence_english": "He received many compliments for his work.", + "pos": "noun", + "word_frequency": 7412 + }, + { + "word": "encajar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fit;to fit in;to make sense", + "example_sentence_native": "Esa pieza no encaja en el rompecabezas.", + "example_sentence_english": "That piece doesn't fit in the puzzle.", + "pos": "verb", + "word_frequency": 7413 + }, + { + "word": "erradicar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to eradicate", + "example_sentence_native": "El objetivo es erradicar la pobreza extrema.", + "example_sentence_english": "The goal is to eradicate extreme poverty.", + "pos": "verb", + "word_frequency": 7414 + }, + { + "word": "estallido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosion;outbreak;burst", + "example_sentence_native": "Hubo un estallido de risas en la sala.", + "example_sentence_english": "There was a burst of laughter in the room.", + "pos": "noun", + "word_frequency": 7415 + }, + { + "word": "exito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "success", + "example_sentence_native": "Le deseo mucho éxito en su nuevo proyecto.", + "example_sentence_english": "I wish you much success in your new project.", + "pos": "noun", + "word_frequency": 7416 + }, + { + "word": "falsedad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "falsehood;falsity", + "example_sentence_native": "La declaración estaba llena de falsedades.", + "example_sentence_english": "The statement was full of falsehoods.", + "pos": "noun", + "word_frequency": 7417 + }, + { + "word": "financiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financed;funded", + "example_sentence_native": "El proyecto fue financiado por el gobierno.", + "example_sentence_english": "The project was financed by the government.", + "pos": "adjective", + "word_frequency": 7418 + }, + { + "word": "flauta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flute", + "example_sentence_native": "Aprendió a tocar la flauta en la escuela.", + "example_sentence_english": "She learned to play the flute at school.", + "pos": "noun", + "word_frequency": 7419 + }, + { + "word": "franca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frank;open;sincere", + "example_sentence_native": "Siempre es muy franca con sus opiniones.", + "example_sentence_english": "She is always very frank with her opinions.", + "pos": "adjective", + "word_frequency": 7420 + }, + { + "word": "imitación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imitation", + "example_sentence_native": "El bolso era una imitación barata.", + "example_sentence_english": "The bag was a cheap imitation.", + "pos": "noun", + "word_frequency": 7426 + }, + { + "word": "impecable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impeccable;flawless", + "example_sentence_native": "Su actuación fue impecable.", + "example_sentence_english": "His performance was impeccable.", + "pos": "adjective", + "word_frequency": 7427 + }, + { + "word": "improbable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improbable;unlikely", + "example_sentence_native": "Es improbable que llueva mañana.", + "example_sentence_english": "It's improbable that it will rain tomorrow.", + "pos": "adjective", + "word_frequency": 7428 + }, + { + "word": "inmobiliario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate (sector;business)", + "example_sentence_native": "Trabaja en el sector inmobiliario.", + "example_sentence_english": "He works in the real estate sector.", + "pos": "noun", + "word_frequency": 7429 + }, + { + "word": "inserción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insertion;inclusion", + "example_sentence_native": "La inserción de nuevos datos mejoró el informe.", + "example_sentence_english": "The insertion of new data improved the report.", + "pos": "noun", + "word_frequency": 7430 + }, + { + "word": "invadir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invade", + "example_sentence_native": "El ejército intentó invadir el territorio vecino.", + "example_sentence_english": "The army tried to invade the neighboring territory.", + "pos": "verb", + "word_frequency": 7431 + }, + { + "word": "irracional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrational", + "example_sentence_native": "Su miedo era completamente irracional.", + "example_sentence_english": "His fear was completely irrational.", + "pos": "adjective", + "word_frequency": 7432 + }, + { + "word": "laurel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laurel;bay leaf", + "example_sentence_native": "Añade una hoja de laurel a la sopa.", + "example_sentence_english": "Add a bay leaf to the soup.", + "pos": "noun", + "word_frequency": 7436 + }, + { + "word": "lecho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bed (often figurative;or riverbed)", + "example_sentence_native": "El río se desbordó de su lecho.", + "example_sentence_english": "The river overflowed its bed.", + "pos": "noun", + "word_frequency": 7437 + }, + { + "word": "licor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "liquor;liqueur", + "example_sentence_native": "Prefiere un licor dulce después de la cena.", + "example_sentence_english": "He prefers a sweet liqueur after dinner.", + "pos": "noun", + "word_frequency": 7439 + }, + { + "word": "linaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lineage", + "example_sentence_native": "Su linaje se remonta a la realeza.", + "example_sentence_english": "His lineage dates back to royalty.", + "pos": "noun", + "word_frequency": 7440 + }, + { + "word": "llegado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrived", + "example_sentence_native": "El paquete llegado ayer es para ti.", + "example_sentence_english": "The package that arrived yesterday is for you.", + "pos": "adjective", + "word_frequency": 7442 + }, + { + "word": "lógicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logically", + "example_sentence_native": "Lógicamente, no podemos ir.", + "example_sentence_english": "Logically, we cannot go.", + "pos": "adverb", + "word_frequency": 7443 + }, + { + "word": "magna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great;grand", + "example_sentence_native": "Es una obra magna de la literatura.", + "example_sentence_english": "It is a great work of literature.", + "pos": "adjective", + "word_frequency": 7446 + }, + { + "word": "marginal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marginal", + "example_sentence_native": "Su contribución fue marginal.", + "example_sentence_english": "His contribution was marginal.", + "pos": "adjective", + "word_frequency": 7449 + }, + { + "word": "matemático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mathematical", + "example_sentence_native": "Es un problema matemático complejo.", + "example_sentence_english": "It is a complex mathematical problem.", + "pos": "adjective", + "word_frequency": 7451 + }, + { + "word": "milímetro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "millimeter", + "example_sentence_native": "Mide solo un milímetro de largo.", + "example_sentence_english": "It measures only one millimeter long.", + "pos": "noun", + "word_frequency": 7453 + }, + { + "word": "minimizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to minimize", + "example_sentence_native": "Debemos minimizar los riesgos.", + "example_sentence_english": "We must minimize the risks.", + "pos": "verb", + "word_frequency": 7454 + }, + { + "word": "monitoreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monitoring", + "example_sentence_native": "El monitoreo constante es crucial.", + "example_sentence_english": "Constant monitoring is crucial.", + "pos": "noun", + "word_frequency": 7455 + }, + { + "word": "nieta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "granddaughter", + "example_sentence_native": "Mi nieta es muy inteligente.", + "example_sentence_english": "My granddaughter is very intelligent.", + "pos": "noun", + "word_frequency": 7456 + }, + { + "word": "obesidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obesity", + "example_sentence_native": "La obesidad es un problema de salud.", + "example_sentence_english": "Obesity is a health problem.", + "pos": "noun", + "word_frequency": 7458 + }, + { + "word": "objetividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objectivity", + "example_sentence_native": "Es importante mantener la objetividad.", + "example_sentence_english": "It is important to maintain objectivity.", + "pos": "noun", + "word_frequency": 7459 + }, + { + "word": "ocasionalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasionally", + "example_sentence_native": "Ocasionalmente vamos al cine.", + "example_sentence_english": "Occasionally we go to the cinema.", + "pos": "adverb", + "word_frequency": 7460 + }, + { + "word": "ordenado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tidy;orderly", + "example_sentence_native": "Su habitación siempre está ordenada.", + "example_sentence_english": "Her room is always tidy.", + "pos": "adjective", + "word_frequency": 7462 + }, + { + "word": "parásito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parasite", + "example_sentence_native": "El parásito vive del huésped.", + "example_sentence_english": "The parasite lives off the host.", + "pos": "noun", + "word_frequency": 7466 + }, + { + "word": "pavo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turkey", + "example_sentence_native": "Comimos pavo en Navidad.", + "example_sentence_english": "We ate turkey on Christmas.", + "pos": "noun", + "word_frequency": 7467 + }, + { + "word": "presuntamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allegedly;presumably", + "example_sentence_native": "Fue presuntamente visto en la escena.", + "example_sentence_english": "He was allegedly seen at the scene.", + "pos": "adverb", + "word_frequency": 7468 + }, + { + "word": "primitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primitive", + "example_sentence_native": "Usaban herramientas primitivas.", + "example_sentence_english": "They used primitive tools.", + "pos": "adjective", + "word_frequency": 7469 + }, + { + "word": "privilegiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privileged", + "example_sentence_native": "Se siente privilegiado de estar aquí.", + "example_sentence_english": "He feels privileged to be here.", + "pos": "adjective", + "word_frequency": 7470 + }, + { + "word": "producirse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to occur;to take place", + "example_sentence_native": "El evento se producirá mañana.", + "example_sentence_english": "The event will occur tomorrow.", + "pos": "verb", + "word_frequency": 7471 + }, + { + "word": "radicalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radically", + "example_sentence_native": "La situación cambió radicalmente.", + "example_sentence_english": "The situation changed radically.", + "pos": "adverb", + "word_frequency": 7474 + }, + { + "word": "reclamación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "claim;complaint", + "example_sentence_native": "Presentó una reclamación por el retraso.", + "example_sentence_english": "He filed a complaint for the delay.", + "pos": "noun", + "word_frequency": 7475 + }, + { + "word": "remera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "T-shirt", + "example_sentence_native": "Compré una remera nueva.", + "example_sentence_english": "I bought a new T-shirt.", + "pos": "noun", + "word_frequency": 7476 + }, + { + "word": "retrasado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delayed;late", + "example_sentence_native": "El vuelo está retrasado.", + "example_sentence_english": "The flight is delayed.", + "pos": "adjective", + "word_frequency": 7477 + }, + { + "word": "regir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to govern;to rule", + "example_sentence_native": "Estas normas rigen el comportamiento.", + "example_sentence_english": "These rules govern behavior.", + "pos": "verb", + "word_frequency": 7478 + }, + { + "word": "ring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring (e.g.;boxing ring)", + "example_sentence_native": "El boxeador entró al ring.", + "example_sentence_english": "The boxer entered the ring.", + "pos": "noun", + "word_frequency": 7479 + }, + { + "word": "saneamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanitation", + "example_sentence_native": "El saneamiento básico es esencial para la salud pública.", + "example_sentence_english": "Basic sanitation is essential for public health.", + "pos": "noun", + "word_frequency": 7481 + }, + { + "word": "semanario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekly (magazine;newspaper)", + "example_sentence_native": "Compró el semanario para leer las noticias locales.", + "example_sentence_english": "He bought the weekly to read the local news.", + "pos": "noun", + "word_frequency": 7483 + }, + { + "word": "senior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senior;elderly person", + "example_sentence_native": "Los seniors tienen descuentos especiales en el cine.", + "example_sentence_english": "Seniors have special discounts at the cinema.", + "pos": "noun", + "word_frequency": 7484 + }, + { + "word": "soberbia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pride;arrogance", + "example_sentence_native": "Su soberbia le impidió pedir disculpas.", + "example_sentence_english": "His arrogance prevented him from apologizing.", + "pos": "noun", + "word_frequency": 7485 + }, + { + "word": "sordo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deaf", + "example_sentence_native": "Mi abuelo es sordo de un oído.", + "example_sentence_english": "My grandfather is deaf in one ear.", + "pos": "adjective", + "word_frequency": 7486 + }, + { + "word": "suegra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mother-in-law", + "example_sentence_native": "Mi suegra viene a visitarnos el fin de semana.", + "example_sentence_english": "My mother-in-law is coming to visit us this weekend.", + "pos": "noun", + "word_frequency": 7488 + }, + { + "word": "sábana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bedsheet", + "example_sentence_native": "Necesito cambiar las sábanas de la cama.", + "example_sentence_english": "I need to change the bedsheets.", + "pos": "noun", + "word_frequency": 7489 + }, + { + "word": "sótano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basement", + "example_sentence_native": "Guardamos las herramientas viejas en el sótano.", + "example_sentence_english": "We keep the old tools in the basement.", + "pos": "noun", + "word_frequency": 7490 + }, + { + "word": "textura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "texture", + "example_sentence_native": "La textura de esta tela es muy suave.", + "example_sentence_english": "The texture of this fabric is very soft.", + "pos": "noun", + "word_frequency": 7491 + }, + { + "word": "transcripción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transcription", + "example_sentence_native": "La transcripción del audio fue muy precisa.", + "example_sentence_english": "The audio transcription was very accurate.", + "pos": "noun", + "word_frequency": 7493 + }, + { + "word": "tuberculosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tuberculosis", + "example_sentence_native": "La tuberculosis es una enfermedad infecciosa grave.", + "example_sentence_english": "Tuberculosis is a serious infectious disease.", + "pos": "noun", + "word_frequency": 7494 + }, + { + "word": "ultimamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lately;recently", + "example_sentence_native": "Últimamente he estado muy ocupado.", + "example_sentence_english": "Lately, I've been very busy.", + "pos": "adverb", + "word_frequency": 7496 + }, + { + "word": "urbanismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urban planning", + "example_sentence_native": "El urbanismo sostenible es clave para el futuro de las ciudades.", + "example_sentence_english": "Sustainable urban planning is key for the future of cities.", + "pos": "noun", + "word_frequency": 7497 + }, + { + "word": "utilizarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be used", + "example_sentence_native": "Este software puede utilizarse para editar videos.", + "example_sentence_english": "This software can be used to edit videos.", + "pos": "verb", + "word_frequency": 7498 + }, + { + "word": "ventilador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fan", + "example_sentence_native": "Encendí el ventilador porque hacía mucho calor.", + "example_sentence_english": "I turned on the fan because it was very hot.", + "pos": "noun", + "word_frequency": 7499 + }, + { + "word": "veredicto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verdict", + "example_sentence_native": "El jurado emitió su veredicto después de horas de deliberación.", + "example_sentence_english": "The jury delivered its verdict after hours of deliberation.", + "pos": "noun", + "word_frequency": 7500 + }, + { + "word": "wiki", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wiki", + "example_sentence_native": "Consulté la wiki para obtener más información sobre el tema.", + "example_sentence_english": "I consulted the wiki for more information on the topic.", + "pos": "noun", + "word_frequency": 7502 + }, + { + "word": "yerba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "herb;grass", + "example_sentence_native": "La yerba mate es muy popular en Argentina.", + "example_sentence_english": "Yerba mate is very popular in Argentina.", + "pos": "noun", + "word_frequency": 7503 + }, + { + "word": "aclaración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarification", + "example_sentence_native": "Necesito una aclaración sobre este punto.", + "example_sentence_english": "I need a clarification on this point.", + "pos": "noun", + "word_frequency": 7504 + }, + { + "word": "actualizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "updated", + "example_sentence_native": "El software está actualizado a la última versión.", + "example_sentence_english": "The software is updated to the latest version.", + "pos": "adjective", + "word_frequency": 7505 + }, + { + "word": "adaptar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adapt", + "example_sentence_native": "Es importante adaptarse a los cambios.", + "example_sentence_english": "It's important to adapt to changes.", + "pos": "verb", + "word_frequency": 7506 + }, + { + "word": "admirable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admirable", + "example_sentence_native": "Su dedicación al trabajo es admirable.", + "example_sentence_english": "His dedication to work is admirable.", + "pos": "adjective", + "word_frequency": 7507 + }, + { + "word": "afiliación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affiliation;membership", + "example_sentence_native": "La afiliación al club tiene muchos beneficios.", + "example_sentence_english": "Membership in the club has many benefits.", + "pos": "noun", + "word_frequency": 7508 + }, + { + "word": "afortunado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortunate;lucky", + "example_sentence_native": "Me siento muy afortunado de tenerte.", + "example_sentence_english": "I feel very fortunate to have you.", + "pos": "adjective", + "word_frequency": 7509 + }, + { + "word": "ansioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anxious;eager", + "example_sentence_native": "Estoy ansioso por empezar el nuevo proyecto.", + "example_sentence_english": "I am eager to start the new project.", + "pos": "adjective", + "word_frequency": 7512 + }, + { + "word": "anunciado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announced", + "example_sentence_native": "El evento fue anunciado con mucha antelación.", + "example_sentence_english": "The event was announced well in advance.", + "pos": "adjective", + "word_frequency": 7513 + }, + { + "word": "arcilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clay", + "example_sentence_native": "Los niños hicieron figuras con arcilla.", + "example_sentence_english": "The children made figures with clay.", + "pos": "noun", + "word_frequency": 7514 + }, + { + "word": "aspirar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aspire;to vacuum;to inhale", + "example_sentence_native": "Ella aspira a ser una gran artista.", + "example_sentence_english": "She aspires to be a great artist.", + "pos": "verb", + "word_frequency": 7515 + }, + { + "word": "atómico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atomic", + "example_sentence_native": "La energía atómica es un tema controvertido.", + "example_sentence_english": "Atomic energy is a controversial topic.", + "pos": "adjective", + "word_frequency": 7516 + }, + { + "word": "autoritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authoritarian", + "example_sentence_native": "Su estilo de liderazgo es demasiado autoritario.", + "example_sentence_english": "His leadership style is too authoritarian.", + "pos": "adjective", + "word_frequency": 7517 + }, + { + "word": "blues", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blues (music genre)", + "example_sentence_native": "Le encanta escuchar música blues los fines de semana.", + "example_sentence_english": "He loves listening to blues music on weekends.", + "pos": "noun", + "word_frequency": 7518 + }, + { + "word": "bond", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bond (financial;chemical)", + "example_sentence_native": "Compró un bond del gobierno para invertir.", + "example_sentence_english": "He bought a government bond to invest.", + "pos": "noun", + "word_frequency": 7519 + }, + { + "word": "bárbaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awesome;barbaric", + "example_sentence_native": "¡Qué bárbaro! Esa película fue increíble.", + "example_sentence_english": "How awesome! That movie was incredible.", + "pos": "adjective", + "word_frequency": 7520 + }, + { + "word": "capitan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain", + "example_sentence_native": "El capitán del barco dio las órdenes.", + "example_sentence_english": "The captain of the ship gave the orders.", + "pos": "noun", + "word_frequency": 7521 + }, + { + "word": "caramelo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "candy;caramel", + "example_sentence_native": "A los niños les encanta el caramelo.", + "example_sentence_english": "Children love candy.", + "pos": "noun", + "word_frequency": 7522 + }, + { + "word": "carpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tent;carp", + "example_sentence_native": "Montamos la carpa en el campamento.", + "example_sentence_english": "We set up the tent at the campsite.", + "pos": "noun", + "word_frequency": 7525 + }, + { + "word": "catolicismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catholicism", + "example_sentence_native": "El catolicismo es una religión importante en España.", + "example_sentence_english": "Catholicism is an important religion in Spain.", + "pos": "noun", + "word_frequency": 7526 + }, + { + "word": "conformado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made up of;conformed", + "example_sentence_native": "El equipo está conformado por diez jugadores.", + "example_sentence_english": "The team is made up of ten players.", + "pos": "adjective", + "word_frequency": 7527 + }, + { + "word": "conocerse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to know each other;to meet", + "example_sentence_native": "Nos conocimos en la universidad.", + "example_sentence_english": "We met at the university.", + "pos": "verb", + "word_frequency": 7528 + }, + { + "word": "contable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "countable;accounting", + "example_sentence_native": "Es un error contable.", + "example_sentence_english": "It's an accounting error.", + "pos": "adjective", + "word_frequency": 7529 + }, + { + "word": "contención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "containment;restraint", + "example_sentence_native": "Se necesita contención para evitar la propagación.", + "example_sentence_english": "Containment is needed to prevent the spread.", + "pos": "noun", + "word_frequency": 7530 + }, + { + "word": "convergencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convergence", + "example_sentence_native": "La convergencia de ideas llevó a una solución.", + "example_sentence_english": "The convergence of ideas led to a solution.", + "pos": "noun", + "word_frequency": 7531 + }, + { + "word": "convincente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convincing", + "example_sentence_native": "Su argumento fue muy convincente.", + "example_sentence_english": "His argument was very convincing.", + "pos": "adjective", + "word_frequency": 7532 + }, + { + "word": "desgaste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wear and tear;erosion", + "example_sentence_native": "El uso constante causa desgaste en la máquina.", + "example_sentence_english": "Constant use causes wear and tear on the machine.", + "pos": "noun", + "word_frequency": 7533 + }, + { + "word": "discreción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discretion", + "example_sentence_native": "Actuó con gran discreción.", + "example_sentence_english": "He acted with great discretion.", + "pos": "noun", + "word_frequency": 7534 + }, + { + "word": "divertir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to amuse;to entertain", + "example_sentence_native": "Nos gusta divertirnos en el parque.", + "example_sentence_english": "We like to have fun at the park.", + "pos": "verb", + "word_frequency": 7535 + }, + { + "word": "dorsal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dorsal", + "example_sentence_native": "La aleta dorsal del tiburón es muy grande.", + "example_sentence_english": "The shark's dorsal fin is very large.", + "pos": "adjective", + "word_frequency": 7536 + }, + { + "word": "entregado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedicated;delivered", + "example_sentence_native": "Es un trabajador muy entregado a su labor.", + "example_sentence_english": "He is a worker very dedicated to his work.", + "pos": "adjective", + "word_frequency": 7538 + }, + { + "word": "entusiasta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiastic", + "example_sentence_native": "Es una persona muy entusiasta con sus proyectos.", + "example_sentence_english": "She is a very enthusiastic person about her projects.", + "pos": "adjective", + "word_frequency": 7539 + }, + { + "word": "estadía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stay (period of time)", + "example_sentence_native": "Disfrutamos nuestra estadía en el hotel.", + "example_sentence_english": "We enjoyed our stay at the hotel.", + "pos": "noun", + "word_frequency": 7540 + }, + { + "word": "exportar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to export", + "example_sentence_native": "La empresa exporta productos a muchos países.", + "example_sentence_english": "The company exports products to many countries.", + "pos": "verb", + "word_frequency": 7542 + }, + { + "word": "fijación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fixation;attachment", + "example_sentence_native": "Tiene una fijación con los detalles.", + "example_sentence_english": "He has a fixation with details.", + "pos": "noun", + "word_frequency": 7545 + }, + { + "word": "forense", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forensic", + "example_sentence_native": "El informe forense reveló la causa de la muerte.", + "example_sentence_english": "The forensic report revealed the cause of death.", + "pos": "adjective", + "word_frequency": 7546 + }, + { + "word": "frustrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrated", + "example_sentence_native": "Se sintió frustrado por la situación.", + "example_sentence_english": "He felt frustrated by the situation.", + "pos": "adjective", + "word_frequency": 7547 + }, + { + "word": "fuero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisdiction;privilege", + "example_sentence_native": "El caso está bajo el fuero militar.", + "example_sentence_english": "The case is under military jurisdiction.", + "pos": "noun", + "word_frequency": 7548 + }, + { + "word": "guay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool;great", + "example_sentence_native": "¡Qué guay es tu nueva bicicleta!", + "example_sentence_english": "How cool is your new bike!", + "pos": "adjective", + "word_frequency": 7549 + }, + { + "word": "guiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guide;to lead", + "example_sentence_native": "El guía nos ayudó a guiar por el sendero.", + "example_sentence_english": "The guide helped us to guide along the path.", + "pos": "verb", + "word_frequency": 7550 + }, + { + "word": "hidrocarburo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydrocarbon", + "example_sentence_native": "Los hidrocarburos son una fuente de energía.", + "example_sentence_english": "Hydrocarbons are a source of energy.", + "pos": "noun", + "word_frequency": 7552 + }, + { + "word": "ilustrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illustrated;enlightened", + "example_sentence_native": "El libro está muy bien ilustrado.", + "example_sentence_english": "The book is very well illustrated.", + "pos": "adjective", + "word_frequency": 7555 + }, + { + "word": "indiscutible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indisputable;undeniable", + "example_sentence_native": "Su talento es indiscutible.", + "example_sentence_english": "His talent is indisputable.", + "pos": "adjective", + "word_frequency": 7556 + }, + { + "word": "inevitablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inevitably", + "example_sentence_native": "Inevitablemente, el invierno llegará.", + "example_sentence_english": "Inevitably, winter will come.", + "pos": "adverb", + "word_frequency": 7557 + }, + { + "word": "infame", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infamous;disgraceful", + "example_sentence_native": "Fue un acto infame.", + "example_sentence_english": "It was an infamous act.", + "pos": "adjective", + "word_frequency": 7558 + }, + { + "word": "insta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Insta (short for Instagram)", + "example_sentence_native": "Subí una foto a Insta.", + "example_sentence_english": "I uploaded a photo to Insta.", + "pos": "noun", + "word_frequency": 7559 + }, + { + "word": "intendencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quartermaster's department", + "example_sentence_native": "La intendencia se encarga de la logística del ejército.", + "example_sentence_english": "The quartermaster's department is in charge of the army's logistics.", + "pos": "noun", + "word_frequency": 7560 + }, + { + "word": "intermediario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intermediary", + "example_sentence_native": "Actuó como intermediario en la negociación.", + "example_sentence_english": "He acted as an intermediary in the negotiation.", + "pos": "noun", + "word_frequency": 7561 + }, + { + "word": "irlandés", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Irish", + "example_sentence_native": "Le encanta la música irlandesa.", + "example_sentence_english": "He loves Irish music.", + "pos": "adjective", + "word_frequency": 7562 + }, + { + "word": "itinerario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "itinerary", + "example_sentence_native": "Hemos planificado un itinerario detallado para el viaje.", + "example_sentence_english": "We have planned a detailed itinerary for the trip.", + "pos": "noun", + "word_frequency": 7563 + }, + { + "word": "legendario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legendary", + "example_sentence_native": "Es un héroe legendario en su país.", + "example_sentence_english": "He is a legendary hero in his country.", + "pos": "adjective", + "word_frequency": 7565 + }, + { + "word": "legión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legion", + "example_sentence_native": "Una legión de fans esperaba al artista.", + "example_sentence_english": "A legion of fans was waiting for the artist.", + "pos": "noun", + "word_frequency": 7566 + }, + { + "word": "machismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machismo", + "example_sentence_native": "El machismo es un problema social persistente.", + "example_sentence_english": "Machismo is a persistent social problem.", + "pos": "noun", + "word_frequency": 7567 + }, + { + "word": "mosquito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mosquito", + "example_sentence_native": "Un mosquito me picó en el brazo.", + "example_sentence_english": "A mosquito bit me on the arm.", + "pos": "noun", + "word_frequency": 7571 + }, + { + "word": "mota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speck", + "example_sentence_native": "Había una mota de polvo en la lente.", + "example_sentence_english": "There was a speck of dust on the lens.", + "pos": "noun", + "word_frequency": 7572 + }, + { + "word": "nalga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buttock", + "example_sentence_native": "Se cayó y se golpeó la nalga.", + "example_sentence_english": "He fell and hit his buttock.", + "pos": "noun", + "word_frequency": 7573 + }, + { + "word": "nominado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nominated", + "example_sentence_native": "Fue nominado al premio al mejor actor.", + "example_sentence_english": "He was nominated for the best actor award.", + "pos": "adjective", + "word_frequency": 7575 + }, + { + "word": "nominal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nominal", + "example_sentence_native": "El valor nominal de la moneda es de un euro.", + "example_sentence_english": "The nominal value of the coin is one euro.", + "pos": "adjective", + "word_frequency": 7576 + }, + { + "word": "ofensa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offense", + "example_sentence_native": "No quiso causar ninguna ofensa.", + "example_sentence_english": "He didn't mean to cause any offense.", + "pos": "noun", + "word_frequency": 7577 + }, + { + "word": "pastoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pastoral", + "example_sentence_native": "Disfrutamos de la vida pastoral en el campo.", + "example_sentence_english": "We enjoyed the pastoral life in the countryside.", + "pos": "adjective", + "word_frequency": 7579 + }, + { + "word": "plátano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "banana", + "example_sentence_native": "Me gusta comer un plátano por la mañana.", + "example_sentence_english": "I like to eat a banana in the morning.", + "pos": "noun", + "word_frequency": 7580 + }, + { + "word": "portador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carrier", + "example_sentence_native": "Es el portador de buenas noticias.", + "example_sentence_english": "He is the bearer of good news.", + "pos": "noun", + "word_frequency": 7582 + }, + { + "word": "raramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rarely", + "example_sentence_native": "Raramente salgo de casa los domingos.", + "example_sentence_english": "I rarely leave home on Sundays.", + "pos": "adverb", + "word_frequency": 7583 + }, + { + "word": "reciclaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycling", + "example_sentence_native": "El reciclaje es importante para el medio ambiente.", + "example_sentence_english": "Recycling is important for the environment.", + "pos": "noun", + "word_frequency": 7584 + }, + { + "word": "recreación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recreation", + "example_sentence_native": "Necesitamos más áreas de recreación en la ciudad.", + "example_sentence_english": "We need more recreation areas in the city.", + "pos": "noun", + "word_frequency": 7585 + }, + { + "word": "restablecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reestablish", + "example_sentence_native": "Debemos restablecer la confianza entre las partes.", + "example_sentence_english": "We must reestablish trust between the parties.", + "pos": "verb", + "word_frequency": 7586 + }, + { + "word": "rosado", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pink", + "example_sentence_native": "Le gusta vestir de color rosado.", + "example_sentence_english": "She likes to wear pink.", + "pos": "adjective", + "word_frequency": 7587 + }, + { + "word": "secular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secular", + "example_sentence_native": "Vivimos en una sociedad cada vez más secular.", + "example_sentence_english": "We live in an increasingly secular society.", + "pos": "adjective", + "word_frequency": 7589 + }, + { + "word": "seña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign", + "example_sentence_native": "Hizo una seña para que se acercaran.", + "example_sentence_english": "He made a sign for them to come closer.", + "pos": "noun", + "word_frequency": 7590 + }, + { + "word": "silencioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silent", + "example_sentence_native": "La biblioteca es un lugar silencioso.", + "example_sentence_english": "The library is a silent place.", + "pos": "adjective", + "word_frequency": 7591 + }, + { + "word": "tambor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drum", + "example_sentence_native": "El niño toca el tambor con entusiasmo.", + "example_sentence_english": "The boy plays the drum with enthusiasm.", + "pos": "noun", + "word_frequency": 7592 + }, + { + "word": "terriblemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terribly", + "example_sentence_native": "Se sentía terriblemente mal después de la noticia.", + "example_sentence_english": "He felt terribly bad after the news.", + "pos": "adverb", + "word_frequency": 7593 + }, + { + "word": "victima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victim", + "example_sentence_native": "La víctima fue atendida por los paramédicos.", + "example_sentence_english": "The victim was attended by the paramedics.", + "pos": "noun", + "word_frequency": 7596 + }, + { + "word": "afirmado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affirmed", + "example_sentence_native": "El juez ha afirmado la sentencia anterior.", + "example_sentence_english": "The judge has affirmed the previous sentence.", + "pos": "adjective", + "word_frequency": 7606 + }, + { + "word": "agitación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agitation", + "example_sentence_native": "Hubo mucha agitación en la multitud después del anuncio.", + "example_sentence_english": "There was a lot of agitation in the crowd after the announcement.", + "pos": "noun", + "word_frequency": 7608 + }, + { + "word": "apagado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "off", + "example_sentence_native": "La luz está apagada.", + "example_sentence_english": "The light is off.", + "pos": "adjective", + "word_frequency": 7609 + }, + { + "word": "arce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maple", + "example_sentence_native": "Las hojas de arce cambian de color en otoño.", + "example_sentence_english": "Maple leaves change color in autumn.", + "pos": "noun", + "word_frequency": 7610 + }, + { + "word": "bastón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cane", + "example_sentence_native": "El abuelo usa un bastón para caminar.", + "example_sentence_english": "Grandpa uses a cane to walk.", + "pos": "noun", + "word_frequency": 7612 + }, + { + "word": "boliche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bowling alley", + "example_sentence_native": "Vamos al boliche este sábado.", + "example_sentence_english": "Let's go to the bowling alley this Saturday.", + "pos": "noun", + "word_frequency": 7615 + }, + { + "word": "cadera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hip", + "example_sentence_native": "Se golpeó la cadera al caer.", + "example_sentence_english": "He hit his hip when he fell.", + "pos": "noun", + "word_frequency": 7618 + }, + { + "word": "casamiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marriage", + "example_sentence_native": "El casamiento se celebrará en la iglesia.", + "example_sentence_english": "The marriage will be celebrated in the church.", + "pos": "noun", + "word_frequency": 7620 + }, + { + "word": "celestial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celestial", + "example_sentence_native": "Observamos los cuerpos celestiales en el observatorio.", + "example_sentence_english": "We observed the celestial bodies at the observatory.", + "pos": "adjective", + "word_frequency": 7621 + }, + { + "word": "comparable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparable", + "example_sentence_native": "Los resultados de ambos estudios no son directamente comparables.", + "example_sentence_english": "The results of both studies are not directly comparable.", + "pos": "adjective", + "word_frequency": 7622 + }, + { + "word": "conservado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preserved", + "example_sentence_native": "El edificio antiguo está muy bien conservado.", + "example_sentence_english": "The old building is very well preserved.", + "pos": "adjective", + "word_frequency": 7623 + }, + { + "word": "corporativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporate", + "example_sentence_native": "La imagen corporativa es muy importante para la empresa.", + "example_sentence_english": "The corporate image is very important for the company.", + "pos": "adjective", + "word_frequency": 7624 + }, + { + "word": "corresponsal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correspondent", + "example_sentence_native": "El corresponsal de guerra informó desde el frente.", + "example_sentence_english": "The war correspondent reported from the front.", + "pos": "noun", + "word_frequency": 7625 + }, + { + "word": "corrida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run", + "example_sentence_native": "La corrida de toros es una tradición en España.", + "example_sentence_english": "The bullfight is a tradition in Spain.", + "pos": "noun", + "word_frequency": 7626 + }, + { + "word": "cresta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crest", + "example_sentence_native": "La cresta de la ola era enorme.", + "example_sentence_english": "The crest of the wave was enormous.", + "pos": "noun", + "word_frequency": 7627 + }, + { + "word": "creíble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credible", + "example_sentence_native": "Su historia no me parece muy creíble.", + "example_sentence_english": "His story doesn't seem very credible to me.", + "pos": "adjective", + "word_frequency": 7628 + }, + { + "word": "cuarentena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarantine", + "example_sentence_native": "Estuvimos en cuarentena durante dos semanas.", + "example_sentence_english": "We were in quarantine for two weeks.", + "pos": "noun", + "word_frequency": 7629 + }, + { + "word": "desgraciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunate", + "example_sentence_native": "Fue un desgraciado accidente.", + "example_sentence_english": "It was an unfortunate accident.", + "pos": "adjective", + "word_frequency": 7630 + }, + { + "word": "designado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designated", + "example_sentence_native": "El área designada para fumar está al aire libre.", + "example_sentence_english": "The designated smoking area is outdoors.", + "pos": "adjective", + "word_frequency": 7631 + }, + { + "word": "desviar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to divert", + "example_sentence_native": "Tuvimos que desviar el tráfico por las obras.", + "example_sentence_english": "We had to divert traffic due to the roadworks.", + "pos": "verb", + "word_frequency": 7632 + }, + { + "word": "encantador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charming", + "example_sentence_native": "Es una persona muy encantadora.", + "example_sentence_english": "He/She is a very charming person.", + "pos": "adjective", + "word_frequency": 7634 + }, + { + "word": "equipado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipped", + "example_sentence_native": "La cocina está totalmente equipada.", + "example_sentence_english": "The kitchen is fully equipped.", + "pos": "adjective", + "word_frequency": 7635 + }, + { + "word": "facial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facial", + "example_sentence_native": "Se hizo una limpieza facial en el spa.", + "example_sentence_english": "She had a facial cleansing at the spa.", + "pos": "adjective", + "word_frequency": 7638 + }, + { + "word": "facu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faculty (colloquial)", + "example_sentence_native": "Voy a la facu a estudiar para el examen.", + "example_sentence_english": "I'm going to the faculty to study for the exam.", + "pos": "noun", + "word_frequency": 7639 + }, + { + "word": "festejar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to celebrate", + "example_sentence_native": "Vamos a festejar su cumpleaños con una gran fiesta.", + "example_sentence_english": "We are going to celebrate his birthday with a big party.", + "pos": "verb", + "word_frequency": 7640 + }, + { + "word": "fiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliable", + "example_sentence_native": "Necesitamos un sistema más fiable para almacenar los datos.", + "example_sentence_english": "We need a more reliable system to store the data.", + "pos": "adjective", + "word_frequency": 7641 + }, + { + "word": "flamenco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flamenco", + "example_sentence_native": "Me encanta la música flamenca.", + "example_sentence_english": "I love flamenco music.", + "pos": "adjective", + "word_frequency": 7643 + }, + { + "word": "galán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leading man;heartthrob", + "example_sentence_native": "Es el galán de la nueva telenovela.", + "example_sentence_english": "He is the leading man of the new soap opera.", + "pos": "noun", + "word_frequency": 7644 + }, + { + "word": "garra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claw;talon;grit", + "example_sentence_native": "El águila atrapó a su presa con sus garras.", + "example_sentence_english": "The eagle caught its prey with its talons.", + "pos": "noun", + "word_frequency": 7645 + }, + { + "word": "genético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetic", + "example_sentence_native": "Estudian la predisposición genética a ciertas enfermedades.", + "example_sentence_english": "They study the genetic predisposition to certain diseases.", + "pos": "adjective", + "word_frequency": 7646 + }, + { + "word": "giles", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fools;idiots (slang)", + "example_sentence_native": "No seas gil, piensa antes de actuar.", + "example_sentence_english": "Don't be a fool, think before you act.", + "pos": "noun", + "word_frequency": 7647 + }, + { + "word": "honra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honor", + "example_sentence_native": "Defendió su honra con valentía.", + "example_sentence_english": "He defended his honor with bravery.", + "pos": "noun", + "word_frequency": 7649 + }, + { + "word": "humillación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliation", + "example_sentence_native": "Sintió una profunda humillación después del incidente.", + "example_sentence_english": "He felt deep humiliation after the incident.", + "pos": "noun", + "word_frequency": 7650 + }, + { + "word": "insuficiencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insufficiency;inadequacy", + "example_sentence_native": "El paciente fue diagnosticado con insuficiencia renal.", + "example_sentence_english": "The patient was diagnosed with kidney insufficiency.", + "pos": "noun", + "word_frequency": 7651 + }, + { + "word": "insurgente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurgent", + "example_sentence_native": "Los insurgentes tomaron el control de la ciudad.", + "example_sentence_english": "The insurgents took control of the city.", + "pos": "noun", + "word_frequency": 7652 + }, + { + "word": "interrogatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogation", + "example_sentence_native": "El sospechoso fue sometido a un largo interrogatorio.", + "example_sentence_english": "The suspect was subjected to a long interrogation.", + "pos": "noun", + "word_frequency": 7653 + }, + { + "word": "iraní", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iranian", + "example_sentence_native": "La delegación iraní llegó a la conferencia.", + "example_sentence_english": "The Iranian delegation arrived at the conference.", + "pos": "adjective", + "word_frequency": 7654 + }, + { + "word": "luca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grand (slang for a thousand)", + "example_sentence_native": "Me costó diez lucas ese coche.", + "example_sentence_english": "That car cost me ten grand.", + "pos": "noun", + "word_frequency": 7657 + }, + { + "word": "malvado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wicked;evil", + "example_sentence_native": "El villano de la película era un hombre malvado.", + "example_sentence_english": "The villain in the movie was a wicked man.", + "pos": "adjective", + "word_frequency": 7659 + }, + { + "word": "mirado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerate;thoughtful", + "example_sentence_native": "Es un hombre muy mirado con los detalles.", + "example_sentence_english": "He is a very considerate man with details.", + "pos": "adjective", + "word_frequency": 7661 + }, + { + "word": "monton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pile;heap;a lot", + "example_sentence_native": "Había un montón de libros en el suelo.", + "example_sentence_english": "There was a pile of books on the floor.", + "pos": "noun", + "word_frequency": 7662 + }, + { + "word": "moro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Moor", + "example_sentence_native": "La influencia mora en la arquitectura española es evidente.", + "example_sentence_english": "The Moorish influence in Spanish architecture is evident.", + "pos": "noun", + "word_frequency": 7664 + }, + { + "word": "negativamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "negatively", + "example_sentence_native": "Su actitud afectó negativamente al equipo.", + "example_sentence_english": "His attitude negatively affected the team.", + "pos": "adverb", + "word_frequency": 7665 + }, + { + "word": "nominación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nomination", + "example_sentence_native": "Recibió una nominación al Oscar por su actuación.", + "example_sentence_english": "He received an Oscar nomination for his performance.", + "pos": "noun", + "word_frequency": 7667 + }, + { + "word": "ocupante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupant;squatter", + "example_sentence_native": "Los ocupantes ilegales fueron desalojados del edificio.", + "example_sentence_english": "The illegal occupants were evicted from the building.", + "pos": "noun", + "word_frequency": 7668 + }, + { + "word": "originar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to originate;to cause", + "example_sentence_native": "La disputa se originó por un malentendido.", + "example_sentence_english": "The dispute originated from a misunderstanding.", + "pos": "verb", + "word_frequency": 7670 + }, + { + "word": "padrón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal register;census", + "example_sentence_native": "Necesitas empadronarte en el ayuntamiento.", + "example_sentence_english": "You need to register yourself on the municipal register at the town hall.", + "pos": "noun", + "word_frequency": 7672 + }, + { + "word": "palanca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lever;crowbar;leverage", + "example_sentence_native": "Usa la palanca para mover la roca.", + "example_sentence_english": "Use the lever to move the rock.", + "pos": "noun", + "word_frequency": 7673 + }, + { + "word": "perdedor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loser", + "example_sentence_native": "No seas un perdedor, inténtalo de nuevo.", + "example_sentence_english": "Don't be a loser, try again.", + "pos": "noun", + "word_frequency": 7674 + }, + { + "word": "peregrino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrim", + "example_sentence_native": "Muchos peregrinos visitan Santiago de Compostela.", + "example_sentence_english": "Many pilgrims visit Santiago de Compostela.", + "pos": "noun", + "word_frequency": 7675 + }, + { + "word": "perjudicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harm;to damage", + "example_sentence_native": "Fumar puede perjudicar seriamente tu salud.", + "example_sentence_english": "Smoking can seriously harm your health.", + "pos": "verb", + "word_frequency": 7676 + }, + { + "word": "peronista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Peronist", + "example_sentence_native": "Es un político con ideas peronistas.", + "example_sentence_english": "He is a politician with Peronist ideas.", + "pos": "adjective", + "word_frequency": 7677 + }, + { + "word": "predicción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prediction", + "example_sentence_native": "Su predicción del tiempo fue muy precisa.", + "example_sentence_english": "His weather prediction was very accurate.", + "pos": "noun", + "word_frequency": 7679 + }, + { + "word": "presidir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preside over;to chair", + "example_sentence_native": "El presidente va a presidir la reunión.", + "example_sentence_english": "The president is going to preside over the meeting.", + "pos": "verb", + "word_frequency": 7680 + }, + { + "word": "quemado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burnt;burned", + "example_sentence_native": "El pan está quemado.", + "example_sentence_english": "The bread is burnt.", + "pos": "adjective", + "word_frequency": 7681 + }, + { + "word": "rapero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rapper", + "example_sentence_native": "El rapero lanzó su nuevo álbum.", + "example_sentence_english": "The rapper released his new album.", + "pos": "noun", + "word_frequency": 7683 + }, + { + "word": "rechazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejected;refused", + "example_sentence_native": "Su solicitud fue rechazada.", + "example_sentence_english": "His application was rejected.", + "pos": "adjective", + "word_frequency": 7684 + }, + { + "word": "recipiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container;recipient", + "example_sentence_native": "Guarda el agua en un recipiente.", + "example_sentence_english": "Store the water in a container.", + "pos": "noun", + "word_frequency": 7685 + }, + { + "word": "reclutamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruitment", + "example_sentence_native": "La empresa inició un nuevo proceso de reclutamiento.", + "example_sentence_english": "The company started a new recruitment process.", + "pos": "noun", + "word_frequency": 7686 + }, + { + "word": "regulador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulator", + "example_sentence_native": "El regulador de voltaje protege los aparatos.", + "example_sentence_english": "The voltage regulator protects the devices.", + "pos": "noun", + "word_frequency": 7687 + }, + { + "word": "repentinamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suddenly", + "example_sentence_native": "Repentinamente, el perro ladró.", + "example_sentence_english": "Suddenly, the dog barked.", + "pos": "adverb", + "word_frequency": 7688 + }, + { + "word": "reportado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reported", + "example_sentence_native": "El incidente fue reportado a la policía.", + "example_sentence_english": "The incident was reported to the police.", + "pos": "adjective", + "word_frequency": 7689 + }, + { + "word": "salado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salty", + "example_sentence_native": "La sopa está muy salada.", + "example_sentence_english": "The soup is very salty.", + "pos": "adjective", + "word_frequency": 7692 + }, + { + "word": "sinopsis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synopsis", + "example_sentence_native": "La sinopsis del libro es muy interesante.", + "example_sentence_english": "The synopsis of the book is very interesting.", + "pos": "noun", + "word_frequency": 7696 + }, + { + "word": "sistemáticamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "systematically", + "example_sentence_native": "Abordaron el problema sistemáticamente.", + "example_sentence_english": "They approached the problem systematically.", + "pos": "adverb", + "word_frequency": 7697 + }, + { + "word": "subsecretario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undersecretary", + "example_sentence_native": "El subsecretario asistió a la reunión.", + "example_sentence_english": "The undersecretary attended the meeting.", + "pos": "noun", + "word_frequency": 7701 + }, + { + "word": "suero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serum;whey;IV drip", + "example_sentence_native": "Le pusieron suero en el hospital.", + "example_sentence_english": "They gave him an IV drip in the hospital.", + "pos": "noun", + "word_frequency": 7702 + }, + { + "word": "suizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Swiss", + "example_sentence_native": "El chocolate suizo es famoso.", + "example_sentence_english": "Swiss chocolate is famous.", + "pos": "adjective", + "word_frequency": 7703 + }, + { + "word": "utopía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utopia", + "example_sentence_native": "La paz mundial parece una utopía.", + "example_sentence_english": "World peace seems like a utopia.", + "pos": "noun", + "word_frequency": 7704 + }, + { + "word": "velar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to watch over;to stay awake;to veil", + "example_sentence_native": "Los padres deben velar por sus hijos.", + "example_sentence_english": "Parents must watch over their children.", + "pos": "verb", + "word_frequency": 7705 + }, + { + "word": "vigilante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "security guard;vigilant", + "example_sentence_native": "El vigilante de seguridad patrulla el edificio.", + "example_sentence_english": "The security guard patrols the building.", + "pos": "noun", + "word_frequency": 7706 + }, + { + "word": "accidentalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accidentally", + "example_sentence_native": "Accidentalmente, derramó el café.", + "example_sentence_english": "Accidentally, he spilled the coffee.", + "pos": "adverb", + "word_frequency": 7709 + }, + { + "word": "admitido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admitted", + "example_sentence_native": "Fue admitido en la universidad.", + "example_sentence_english": "He was admitted to the university.", + "pos": "adjective", + "word_frequency": 7710 + }, + { + "word": "antorcha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torch", + "example_sentence_native": "Llevaba una antorcha para iluminar el camino.", + "example_sentence_english": "He carried a torch to light the way.", + "pos": "noun", + "word_frequency": 7712 + }, + { + "word": "arder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burn", + "example_sentence_native": "La leña arde en la chimenea.", + "example_sentence_english": "The firewood burns in the fireplace.", + "pos": "verb", + "word_frequency": 7713 + }, + { + "word": "aveces", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sometimes", + "example_sentence_native": "A veces voy al cine.", + "example_sentence_english": "Sometimes I go to the cinema.", + "pos": "adverb", + "word_frequency": 7715 + }, + { + "word": "brote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprout;outbreak", + "example_sentence_native": "Hubo un brote de gripe en la ciudad.", + "example_sentence_english": "There was a flu outbreak in the city.", + "pos": "noun", + "word_frequency": 7717 + }, + { + "word": "cacería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hunt;hunting", + "example_sentence_native": "Fueron de cacería al bosque.", + "example_sentence_english": "They went hunting in the forest.", + "pos": "noun", + "word_frequency": 7718 + }, + { + "word": "cinismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cynicism", + "example_sentence_native": "Su cinismo era evidente en cada comentario.", + "example_sentence_english": "His cynicism was evident in every comment.", + "pos": "noun", + "word_frequency": 7721 + }, + { + "word": "cobrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collected;charged", + "example_sentence_native": "El cheque ya ha sido cobrado.", + "example_sentence_english": "The check has already been collected.", + "pos": "adjective", + "word_frequency": 7722 + }, + { + "word": "complicar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complicate", + "example_sentence_native": "No quiero complicar las cosas más de lo necesario.", + "example_sentence_english": "I don't want to complicate things more than necessary.", + "pos": "verb", + "word_frequency": 7723 + }, + { + "word": "comportar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entail;to involve", + "example_sentence_native": "Este proyecto comporta grandes responsabilidades.", + "example_sentence_english": "This project entails great responsibilities.", + "pos": "verb", + "word_frequency": 7724 + }, + { + "word": "concebido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceived;designed", + "example_sentence_native": "El plan fue concebido para mejorar la eficiencia.", + "example_sentence_english": "The plan was conceived to improve efficiency.", + "pos": "adjective", + "word_frequency": 7725 + }, + { + "word": "conectividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connectivity", + "example_sentence_native": "La conectividad a internet es esencial hoy en día.", + "example_sentence_english": "Internet connectivity is essential nowadays.", + "pos": "noun", + "word_frequency": 7726 + }, + { + "word": "consistencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consistency", + "example_sentence_native": "Necesitamos más consistencia en nuestros resultados.", + "example_sentence_english": "We need more consistency in our results.", + "pos": "noun", + "word_frequency": 7727 + }, + { + "word": "contado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counted;told", + "example_sentence_native": "El dinero fue contado cuidadosamente.", + "example_sentence_english": "The money was counted carefully.", + "pos": "adjective", + "word_frequency": 7728 + }, + { + "word": "contratado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hired;contracted", + "example_sentence_native": "El nuevo empleado ya ha sido contratado.", + "example_sentence_english": "The new employee has already been hired.", + "pos": "adjective", + "word_frequency": 7729 + }, + { + "word": "convivir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coexist;to live together", + "example_sentence_native": "Es importante aprender a convivir con las diferencias.", + "example_sentence_english": "It's important to learn to coexist with differences.", + "pos": "verb", + "word_frequency": 7730 + }, + { + "word": "cooperar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cooperate", + "example_sentence_native": "Debemos cooperar para alcanzar nuestros objetivos.", + "example_sentence_english": "We must cooperate to achieve our goals.", + "pos": "verb", + "word_frequency": 7731 + }, + { + "word": "cosmos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmos", + "example_sentence_native": "El estudio del cosmos es fascinante.", + "example_sentence_english": "The study of the cosmos is fascinating.", + "pos": "noun", + "word_frequency": 7732 + }, + { + "word": "costilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rib", + "example_sentence_native": "Se rompió una costilla al caer.", + "example_sentence_english": "He broke a rib when he fell.", + "pos": "noun", + "word_frequency": 7733 + }, + { + "word": "cotización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quote;quotation", + "example_sentence_native": "Pedimos una cotización para el trabajo.", + "example_sentence_english": "We asked for a quote for the job.", + "pos": "noun", + "word_frequency": 7734 + }, + { + "word": "deliberadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberately", + "example_sentence_native": "Lo hizo deliberadamente para molestarme.", + "example_sentence_english": "He did it deliberately to annoy me.", + "pos": "adverb", + "word_frequency": 7736 + }, + { + "word": "derribar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to knock down;to demolish", + "example_sentence_native": "El viento fuerte derribó varios árboles.", + "example_sentence_english": "The strong wind knocked down several trees.", + "pos": "verb", + "word_frequency": 7737 + }, + { + "word": "destruido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destroyed", + "example_sentence_native": "El edificio quedó completamente destruido después del incendio.", + "example_sentence_english": "The building was completely destroyed after the fire.", + "pos": "adjective", + "word_frequency": 7738 + }, + { + "word": "disculpar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to excuse;to apologize", + "example_sentence_native": "Por favor, disculpe mi retraso.", + "example_sentence_english": "Please, excuse my delay.", + "pos": "verb", + "word_frequency": 7739 + }, + { + "word": "disgusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "displeasure;annoyance", + "example_sentence_native": "Me llevé un gran disgusto con la noticia.", + "example_sentence_english": "I was very upset by the news.", + "pos": "noun", + "word_frequency": 7740 + }, + { + "word": "dispersión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispersion;scattering", + "example_sentence_native": "La dispersión de la luz crea un arcoíris.", + "example_sentence_english": "The dispersion of light creates a rainbow.", + "pos": "noun", + "word_frequency": 7741 + }, + { + "word": "editado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edited", + "example_sentence_native": "El documento final ya está editado.", + "example_sentence_english": "The final document is already edited.", + "pos": "adjective", + "word_frequency": 7744 + }, + { + "word": "encantado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delighted;charmed", + "example_sentence_native": "Encantado de conocerte.", + "example_sentence_english": "Delighted to meet you.", + "pos": "adjective", + "word_frequency": 7745 + }, + { + "word": "enciclopedia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encyclopedia", + "example_sentence_native": "Consulté la enciclopedia para obtener más información.", + "example_sentence_english": "I consulted the encyclopedia for more information.", + "pos": "noun", + "word_frequency": 7746 + }, + { + "word": "excursión", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excursion;trip", + "example_sentence_native": "Fuimos de excursión a la montaña.", + "example_sentence_english": "We went on an excursion to the mountain.", + "pos": "noun", + "word_frequency": 7748 + }, + { + "word": "expandir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expand", + "example_sentence_native": "La empresa planea expandir sus operaciones.", + "example_sentence_english": "The company plans to expand its operations.", + "pos": "verb", + "word_frequency": 7749 + }, + { + "word": "expo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expo;exhibition (informal)", + "example_sentence_native": "Vamos a la expo de arte este fin de semana.", + "example_sentence_english": "Let's go to the art expo this weekend.", + "pos": "noun", + "word_frequency": 7750 + }, + { + "word": "factible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible", + "example_sentence_native": "La solución propuesta parece factible.", + "example_sentence_english": "The proposed solution seems feasible.", + "pos": "adjective", + "word_frequency": 7751 + }, + { + "word": "fatiga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fatigue", + "example_sentence_native": "Sentía una gran fatiga después de correr.", + "example_sentence_english": "He felt great fatigue after running.", + "pos": "noun", + "word_frequency": 7752 + }, + { + "word": "filmar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to film", + "example_sentence_native": "Van a filmar una película aquí.", + "example_sentence_english": "They are going to film a movie here.", + "pos": "verb", + "word_frequency": 7755 + }, + { + "word": "fosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pit;trench;grave", + "example_sentence_native": "Encontraron una fosa común en el sitio arqueológico.", + "example_sentence_english": "They found a mass grave at the archaeological site.", + "pos": "noun", + "word_frequency": 7756 + }, + { + "word": "genero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gender;genre", + "example_sentence_native": "El género de la película es comedia.", + "example_sentence_english": "The genre of the movie is comedy.", + "pos": "noun", + "word_frequency": 7760 + }, + { + "word": "gratuitamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratuitously;free of charge", + "example_sentence_native": "Ofrecen el servicio gratuitamente.", + "example_sentence_english": "They offer the service free of charge.", + "pos": "adverb", + "word_frequency": 7761 + }, + { + "word": "guaraní", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Guarani (language;people)", + "example_sentence_native": "El guaraní es una lengua indígena de Sudamérica.", + "example_sentence_english": "Guarani is an indigenous language of South America.", + "pos": "noun", + "word_frequency": 7762 + }, + { + "word": "hegemonía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hegemony", + "example_sentence_native": "La hegemonía cultural puede ser muy poderosa.", + "example_sentence_english": "Cultural hegemony can be very powerful.", + "pos": "noun", + "word_frequency": 7764 + }, + { + "word": "hormiga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ant", + "example_sentence_native": "Una hormiga puede levantar muchas veces su propio peso.", + "example_sentence_english": "An ant can lift many times its own weight.", + "pos": "noun", + "word_frequency": 7767 + }, + { + "word": "huérfano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orphan", + "example_sentence_native": "El niño se quedó huérfano después del accidente.", + "example_sentence_english": "The child became an orphan after the accident.", + "pos": "noun", + "word_frequency": 7768 + }, + { + "word": "ingenuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naive;ingenuous", + "example_sentence_native": "Fue ingenuo al creer todo lo que le dijeron.", + "example_sentence_english": "He was naive to believe everything they told him.", + "pos": "adjective", + "word_frequency": 7769 + }, + { + "word": "iniciación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiation", + "example_sentence_native": "La iniciación al club es un evento importante.", + "example_sentence_english": "The initiation into the club is an important event.", + "pos": "noun", + "word_frequency": 7770 + }, + { + "word": "innovador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovative", + "example_sentence_native": "Es una empresa muy innovadora en su campo.", + "example_sentence_english": "It is a very innovative company in its field.", + "pos": "adjective", + "word_frequency": 7771 + }, + { + "word": "inquisición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inquisition", + "example_sentence_native": "La Inquisición española duró siglos.", + "example_sentence_english": "The Spanish Inquisition lasted for centuries.", + "pos": "noun", + "word_frequency": 7772 + }, + { + "word": "interferencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interference", + "example_sentence_native": "Hay mucha interferencia en la señal de radio.", + "example_sentence_english": "There is a lot of interference in the radio signal.", + "pos": "noun", + "word_frequency": 7773 + }, + { + "word": "lamentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regret;to lament", + "example_sentence_native": "Lamento mucho lo ocurrido.", + "example_sentence_english": "I deeply regret what happened.", + "pos": "verb", + "word_frequency": 7775 + }, + { + "word": "llamamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeal;call", + "example_sentence_native": "Hizo un llamamiento a la unidad.", + "example_sentence_english": "He made a call for unity.", + "pos": "noun", + "word_frequency": 7778 + }, + { + "word": "lodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud", + "example_sentence_native": "Después de la lluvia, el camino estaba lleno de lodo.", + "example_sentence_english": "After the rain, the road was full of mud.", + "pos": "noun", + "word_frequency": 7779 + }, + { + "word": "maestra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "teacher (female)", + "example_sentence_native": "Mi maestra de español es muy amable.", + "example_sentence_english": "My Spanish teacher is very kind.", + "pos": "noun", + "word_frequency": 7780 + }, + { + "word": "manda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vow;command", + "example_sentence_native": "Cumplió la manda que había prometido.", + "example_sentence_english": "He fulfilled the vow he had promised.", + "pos": "noun", + "word_frequency": 7781 + }, + { + "word": "marinero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailor", + "example_sentence_native": "El marinero zarpó en su barco.", + "example_sentence_english": "The sailor set sail on his ship.", + "pos": "noun", + "word_frequency": 7783 + }, + { + "word": "mena", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ore", + "example_sentence_native": "La mina es rica en mena de hierro.", + "example_sentence_english": "The mine is rich in iron ore.", + "pos": "noun", + "word_frequency": 7784 + }, + { + "word": "mesías", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "messiah", + "example_sentence_native": "Muchas religiones esperan la llegada de un mesías.", + "example_sentence_english": "Many religions await the arrival of a messiah.", + "pos": "noun", + "word_frequency": 7785 + }, + { + "word": "moderación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderation", + "example_sentence_native": "La moderación es clave para una vida sana.", + "example_sentence_english": "Moderation is key to a healthy life.", + "pos": "noun", + "word_frequency": 7787 + }, + { + "word": "motivar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to motivate", + "example_sentence_native": "Su discurso logró motivar a la audiencia.", + "example_sentence_english": "His speech managed to motivate the audience.", + "pos": "verb", + "word_frequency": 7788 + }, + { + "word": "nevera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator;fridge", + "example_sentence_native": "Guarda la leche en la nevera.", + "example_sentence_english": "Keep the milk in the fridge.", + "pos": "noun", + "word_frequency": 7789 + }, + { + "word": "ocurrido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happened;occurred", + "example_sentence_native": "El evento ocurrido fue inesperado.", + "example_sentence_english": "The happened event was unexpected.", + "pos": "adjective", + "word_frequency": 7791 + }, + { + "word": "paradoja", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradox", + "example_sentence_native": "Es una paradoja que la riqueza no siempre traiga felicidad.", + "example_sentence_english": "It's a paradox that wealth doesn't always bring happiness.", + "pos": "noun", + "word_frequency": 7793 + }, + { + "word": "pendejada", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foolishness;bullshit (vulgar)", + "example_sentence_native": "No digas pendejadas.", + "example_sentence_english": "Don't say foolish things.", + "pos": "noun", + "word_frequency": 7794 + }, + { + "word": "pescar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fish", + "example_sentence_native": "Vamos a pescar al río este fin de semana.", + "example_sentence_english": "We are going fishing in the river this weekend.", + "pos": "verb", + "word_frequency": 7795 + }, + { + "word": "pin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pin (code;badge)", + "example_sentence_native": "Introduce tu número de pin.", + "example_sentence_english": "Enter your pin number.", + "pos": "noun", + "word_frequency": 7796 + }, + { + "word": "procesador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processor", + "example_sentence_native": "El procesador de mi computadora es muy rápido.", + "example_sentence_english": "My computer's processor is very fast.", + "pos": "noun", + "word_frequency": 7800 + }, + { + "word": "programador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programmer", + "example_sentence_native": "Mi hermano es programador de software.", + "example_sentence_english": "My brother is a software programmer.", + "pos": "noun", + "word_frequency": 7801 + }, + { + "word": "prolongado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prolonged;extended", + "example_sentence_native": "Tuvieron una discusión prolongada sobre el tema.", + "example_sentence_english": "They had a prolonged discussion about the topic.", + "pos": "adjective", + "word_frequency": 7802 + }, + { + "word": "proximo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "next;near", + "example_sentence_native": "La próxima semana viajaré a Madrid.", + "example_sentence_english": "Next week I will travel to Madrid.", + "pos": "adjective", + "word_frequency": 7803 + }, + { + "word": "proyectar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to project;to plan", + "example_sentence_native": "Vamos a proyectar la película en la pared.", + "example_sentence_english": "We are going to project the movie onto the wall.", + "pos": "verb", + "word_frequency": 7804 + }, + { + "word": "raja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack;slit;slice", + "example_sentence_native": "Hay una raja en la pared.", + "example_sentence_english": "There is a crack in the wall.", + "pos": "noun", + "word_frequency": 7805 + }, + { + "word": "repugnante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repugnant;disgusting", + "example_sentence_native": "El olor era absolutamente repugnante.", + "example_sentence_english": "The smell was absolutely repugnant.", + "pos": "adjective", + "word_frequency": 7807 + }, + { + "word": "revertir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revert;to reverse", + "example_sentence_native": "Es difícil revertir la situación actual.", + "example_sentence_english": "It is difficult to reverse the current situation.", + "pos": "verb", + "word_frequency": 7808 + }, + { + "word": "separarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to separate (oneself);to break up", + "example_sentence_native": "La pareja decidió separarse después de muchos años.", + "example_sentence_english": "The couple decided to separate after many years.", + "pos": "verb", + "word_frequency": 7810 + }, + { + "word": "sobrevivido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survived", + "example_sentence_native": "Los pocos objetos sobrevividos al incendio fueron valiosos.", + "example_sentence_english": "The few objects survived from the fire were valuable.", + "pos": "adjective", + "word_frequency": 7812 + }, + { + "word": "superviviente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survivor", + "example_sentence_native": "Solo hubo un superviviente del accidente.", + "example_sentence_english": "There was only one survivor of the accident.", + "pos": "noun", + "word_frequency": 7813 + }, + { + "word": "suspenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspense;failure (exam)", + "example_sentence_native": "La película de terror mantuvo al público en suspenso.", + "example_sentence_english": "The horror movie kept the audience in suspense.", + "pos": "noun", + "word_frequency": 7814 + }, + { + "word": "talvez", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perhaps;maybe", + "example_sentence_native": "Tal vez llueva mañana.", + "example_sentence_english": "Perhaps it will rain tomorrow.", + "pos": "adverb", + "word_frequency": 7815 + }, + { + "word": "tracción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traction", + "example_sentence_native": "El coche tiene tracción a las cuatro ruedas.", + "example_sentence_english": "The car has four-wheel drive (traction).", + "pos": "noun", + "word_frequency": 7819 + }, + { + "word": "traspaso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer;traspaso (of a business)", + "example_sentence_native": "Se anunció el traspaso del jugador a otro equipo.", + "example_sentence_english": "The transfer of the player to another team was announced.", + "pos": "noun", + "word_frequency": 7820 + }, + { + "word": "tráiler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer (movie);truck trailer", + "example_sentence_native": "Vimos el tráiler de la nueva película.", + "example_sentence_english": "We saw the trailer for the new movie.", + "pos": "noun", + "word_frequency": 7821 + }, + { + "word": "tóxico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toxic", + "example_sentence_native": "Esa sustancia es muy tóxica.", + "example_sentence_english": "That substance is very toxic.", + "pos": "adjective", + "word_frequency": 7822 + }, + { + "word": "unánime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unanimous", + "example_sentence_native": "La decisión fue unánime.", + "example_sentence_english": "The decision was unanimous.", + "pos": "adjective", + "word_frequency": 7823 + }, + { + "word": "vencimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expiration;maturity (of a debt)", + "example_sentence_native": "La fecha de vencimiento del contrato es el próximo mes.", + "example_sentence_english": "The contract's expiration date is next month.", + "pos": "noun", + "word_frequency": 7824 + }, + { + "word": "violado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "violated;raped", + "example_sentence_native": "Sus derechos fueron violados.", + "example_sentence_english": "Their rights were violated.", + "pos": "adjective", + "word_frequency": 7825 + }, + { + "word": "abolición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abolition", + "example_sentence_native": "La abolición de la esclavitud fue un hito histórico.", + "example_sentence_english": "The abolition of slavery was a historical milestone.", + "pos": "noun", + "word_frequency": 7832 + }, + { + "word": "abono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertilizer;season ticket;payment", + "example_sentence_native": "Compré un abono para el transporte público.", + "example_sentence_english": "I bought a season ticket for public transport.", + "pos": "noun", + "word_frequency": 7833 + }, + { + "word": "acoger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to welcome;to host;to take in", + "example_sentence_native": "La familia acogió a los refugiados.", + "example_sentence_english": "The family welcomed the refugees.", + "pos": "verb", + "word_frequency": 7834 + }, + { + "word": "acostado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lying down;in bed", + "example_sentence_native": "El niño estaba acostado en su cama.", + "example_sentence_english": "The child was lying down in his bed.", + "pos": "adjective", + "word_frequency": 7835 + }, + { + "word": "acreedor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creditor", + "example_sentence_native": "El banco es el principal acreedor de la empresa.", + "example_sentence_english": "The bank is the company's main creditor.", + "pos": "noun", + "word_frequency": 7836 + }, + { + "word": "analogía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analogy", + "example_sentence_native": "Podemos establecer una analogía entre ambos casos.", + "example_sentence_english": "We can establish an analogy between both cases.", + "pos": "noun", + "word_frequency": 7841 + }, + { + "word": "aplicarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply oneself", + "example_sentence_native": "Si te aplicas, verás resultados pronto.", + "example_sentence_english": "If you apply yourself, you will see results soon.", + "pos": "verb", + "word_frequency": 7842 + }, + { + "word": "apreciación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciation", + "example_sentence_native": "Su apreciación del arte es muy profunda.", + "example_sentence_english": "His appreciation of art is very profound.", + "pos": "noun", + "word_frequency": 7843 + }, + { + "word": "apropiación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriation", + "example_sentence_native": "La apropiación cultural es un tema controvertido.", + "example_sentence_english": "Cultural appropriation is a controversial topic.", + "pos": "noun", + "word_frequency": 7844 + }, + { + "word": "asfalto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asphalt", + "example_sentence_native": "El asfalto de la carretera está en mal estado.", + "example_sentence_english": "The road's asphalt is in poor condition.", + "pos": "noun", + "word_frequency": 7845 + }, + { + "word": "asombro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonishment", + "example_sentence_native": "Miró la escena con asombro.", + "example_sentence_english": "He looked at the scene with astonishment.", + "pos": "noun", + "word_frequency": 7846 + }, + { + "word": "bicentenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bicentennial", + "example_sentence_native": "Celebramos el bicentenario de la independencia.", + "example_sentence_english": "We celebrate the bicentennial of independence.", + "pos": "noun", + "word_frequency": 7849 + }, + { + "word": "bilingüe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bilingual", + "example_sentence_native": "Mi hermana es bilingüe en español e inglés.", + "example_sentence_english": "My sister is bilingual in Spanish and English.", + "pos": "adjective", + "word_frequency": 7850 + }, + { + "word": "billetera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet", + "example_sentence_native": "Perdí mi billetera en el autobús.", + "example_sentence_english": "I lost my wallet on the bus.", + "pos": "noun", + "word_frequency": 7851 + }, + { + "word": "cannabis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cannabis", + "example_sentence_native": "El cannabis es legal en algunos estados.", + "example_sentence_english": "Cannabis is legal in some states.", + "pos": "noun", + "word_frequency": 7853 + }, + { + "word": "cansar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tire", + "example_sentence_native": "Este trabajo me va a cansar mucho.", + "example_sentence_english": "This job is going to tire me out a lot.", + "pos": "verb", + "word_frequency": 7854 + }, + { + "word": "chantaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackmail", + "example_sentence_native": "Fue acusado de chantaje.", + "example_sentence_english": "He was accused of blackmail.", + "pos": "noun", + "word_frequency": 7857 + }, + { + "word": "chispa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spark", + "example_sentence_native": "Saltó una chispa del fuego.", + "example_sentence_english": "A spark flew from the fire.", + "pos": "noun", + "word_frequency": 7858 + }, + { + "word": "chocar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to crash", + "example_sentence_native": "El coche chocó contra un árbol.", + "example_sentence_english": "The car crashed into a tree.", + "pos": "verb", + "word_frequency": 7859 + }, + { + "word": "constitucion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constitution", + "example_sentence_native": "La constitución garantiza nuestros derechos.", + "example_sentence_english": "The constitution guarantees our rights.", + "pos": "noun", + "word_frequency": 7861 + }, + { + "word": "correlación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correlation", + "example_sentence_native": "Existe una fuerte correlación entre ambos factores.", + "example_sentence_english": "There is a strong correlation between both factors.", + "pos": "noun", + "word_frequency": 7862 + }, + { + "word": "credito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "credit", + "example_sentence_native": "Necesito un crédito para comprar una casa.", + "example_sentence_english": "I need credit to buy a house.", + "pos": "noun", + "word_frequency": 7863 + }, + { + "word": "criada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maid", + "example_sentence_native": "La criada limpió la habitación.", + "example_sentence_english": "The maid cleaned the room.", + "pos": "noun", + "word_frequency": 7864 + }, + { + "word": "cápita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "per capita", + "example_sentence_native": "El ingreso per cápita aumentó este año.", + "example_sentence_english": "The per capita income increased this year.", + "pos": "noun", + "word_frequency": 7865 + }, + { + "word": "delirio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delirium", + "example_sentence_native": "Tuvo un delirio a causa de la fiebre.", + "example_sentence_english": "He had a delirium due to the fever.", + "pos": "noun", + "word_frequency": 7867 + }, + { + "word": "demo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demo", + "example_sentence_native": "Escuchamos la demo de su nueva canción.", + "example_sentence_english": "We listened to the demo of their new song.", + "pos": "noun", + "word_frequency": 7868 + }, + { + "word": "derrame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spill", + "example_sentence_native": "Hubo un derrame de petróleo en el océano.", + "example_sentence_english": "There was an oil spill in the ocean.", + "pos": "noun", + "word_frequency": 7869 + }, + { + "word": "descubierto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discovered", + "example_sentence_native": "El tesoro fue descubierto por casualidad.", + "example_sentence_english": "The treasure was discovered by chance.", + "pos": "adjective", + "word_frequency": 7870 + }, + { + "word": "desprender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detach", + "example_sentence_native": "Las hojas empiezan a desprenderse de los árboles.", + "example_sentence_english": "The leaves are starting to detach from the trees.", + "pos": "verb", + "word_frequency": 7871 + }, + { + "word": "destitución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismissal", + "example_sentence_native": "Pidieron la destitución del ministro.", + "example_sentence_english": "They requested the dismissal of the minister.", + "pos": "noun", + "word_frequency": 7872 + }, + { + "word": "devaluación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devaluation", + "example_sentence_native": "La devaluación de la moneda afectó la economía.", + "example_sentence_english": "The currency devaluation affected the economy.", + "pos": "noun", + "word_frequency": 7873 + }, + { + "word": "disfrazado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disguised", + "example_sentence_native": "El detective estaba disfrazado de camarero.", + "example_sentence_english": "The detective was disguised as a waiter.", + "pos": "adjective", + "word_frequency": 7875 + }, + { + "word": "emancipación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emancipation", + "example_sentence_native": "La emancipación de la mujer es un proceso continuo.", + "example_sentence_english": "Women's emancipation is an ongoing process.", + "pos": "noun", + "word_frequency": 7876 + }, + { + "word": "emocionalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emotionally", + "example_sentence_native": "Se siente emocionalmente agotado.", + "example_sentence_english": "He feels emotionally exhausted.", + "pos": "adverb", + "word_frequency": 7877 + }, + { + "word": "enamorar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make fall in love", + "example_sentence_native": "Su sonrisa me va a enamorar.", + "example_sentence_english": "Her smile is going to make me fall in love.", + "pos": "verb", + "word_frequency": 7878 + }, + { + "word": "encabezar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lead", + "example_sentence_native": "Él va a encabezar el nuevo proyecto.", + "example_sentence_english": "He is going to lead the new project.", + "pos": "verb", + "word_frequency": 7879 + }, + { + "word": "enfadado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angry", + "example_sentence_native": "Estaba muy enfadado con la situación.", + "example_sentence_english": "He was very angry about the situation.", + "pos": "adjective", + "word_frequency": 7880 + }, + { + "word": "entrenado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trained", + "example_sentence_native": "El perro está bien entrenado.", + "example_sentence_english": "The dog is well trained.", + "pos": "adjective", + "word_frequency": 7881 + }, + { + "word": "escrutinio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrutiny", + "example_sentence_native": "El escrutinio de los votos duró toda la noche.", + "example_sentence_english": "The vote count lasted all night.", + "pos": "noun", + "word_frequency": 7882 + }, + { + "word": "estadístico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistical", + "example_sentence_native": "Necesitamos un análisis estadístico de los datos.", + "example_sentence_english": "We need a statistical analysis of the data.", + "pos": "adjective", + "word_frequency": 7883 + }, + { + "word": "estrenar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to premiere;to use for the first time", + "example_sentence_native": "Vamos a estrenar la película el próximo mes.", + "example_sentence_english": "We are going to premiere the movie next month.", + "pos": "verb", + "word_frequency": 7884 + }, + { + "word": "estupido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stupid", + "example_sentence_native": "Fue una idea estúpida.", + "example_sentence_english": "It was a stupid idea.", + "pos": "adjective", + "word_frequency": 7885 + }, + { + "word": "exigente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanding;strict", + "example_sentence_native": "Es un profesor muy exigente.", + "example_sentence_english": "He is a very demanding teacher.", + "pos": "adjective", + "word_frequency": 7886 + }, + { + "word": "fax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fax", + "example_sentence_native": "Envía el documento por fax.", + "example_sentence_english": "Send the document by fax.", + "pos": "noun", + "word_frequency": 7887 + }, + { + "word": "fertilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertility", + "example_sentence_native": "La fertilidad del suelo es crucial para la agricultura.", + "example_sentence_english": "Soil fertility is crucial for agriculture.", + "pos": "noun", + "word_frequency": 7888 + }, + { + "word": "feto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetus", + "example_sentence_native": "El desarrollo del feto es monitoreado de cerca.", + "example_sentence_english": "The development of the fetus is closely monitored.", + "pos": "noun", + "word_frequency": 7889 + }, + { + "word": "fluir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flow", + "example_sentence_native": "El agua fluye por el río.", + "example_sentence_english": "The water flows down the river.", + "pos": "verb", + "word_frequency": 7890 + }, + { + "word": "folleto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brochure;leaflet", + "example_sentence_native": "Me dieron un folleto informativo en la oficina de turismo.", + "example_sentence_english": "They gave me an informational brochure at the tourist office.", + "pos": "noun", + "word_frequency": 7891 + }, + { + "word": "huerto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchard;vegetable garden", + "example_sentence_native": "Cultivamos verduras en nuestro huerto.", + "example_sentence_english": "We grow vegetables in our garden.", + "pos": "noun", + "word_frequency": 7897 + }, + { + "word": "implacable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implacable;relentless", + "example_sentence_native": "El calor era implacable.", + "example_sentence_english": "The heat was relentless.", + "pos": "adjective", + "word_frequency": 7899 + }, + { + "word": "inexistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonexistent", + "example_sentence_native": "La evidencia era inexistente.", + "example_sentence_english": "The evidence was nonexistent.", + "pos": "adjective", + "word_frequency": 7900 + }, + { + "word": "insignia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insignia;badge", + "example_sentence_native": "Llevaba una insignia de honor en su chaqueta.", + "example_sentence_english": "He wore a badge of honor on his jacket.", + "pos": "noun", + "word_frequency": 7901 + }, + { + "word": "instantáneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instant;instantaneous", + "example_sentence_native": "Necesito una respuesta instantánea.", + "example_sentence_english": "I need an instant answer.", + "pos": "adjective", + "word_frequency": 7902 + }, + { + "word": "interamericano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inter-American", + "example_sentence_native": "La organización interamericana promueve la cooperación.", + "example_sentence_english": "The inter-American organization promotes cooperation.", + "pos": "adjective", + "word_frequency": 7903 + }, + { + "word": "lance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lance;thrust;turn (of events)", + "example_sentence_native": "Fue un lance inesperado en la historia.", + "example_sentence_english": "It was an unexpected turn in the story.", + "pos": "noun", + "word_frequency": 7908 + }, + { + "word": "meridional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "southern", + "example_sentence_native": "La región meridional de España es muy cálida.", + "example_sentence_english": "The southern region of Spain is very warm.", + "pos": "adjective", + "word_frequency": 7913 + }, + { + "word": "microonda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microwave (oven)", + "example_sentence_native": "Calienta la comida en el microondas.", + "example_sentence_english": "Heat the food in the microwave.", + "pos": "noun", + "word_frequency": 7914 + }, + { + "word": "mitología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythology", + "example_sentence_native": "Estudiamos la mitología griega en la escuela.", + "example_sentence_english": "We study Greek mythology in school.", + "pos": "noun", + "word_frequency": 7915 + }, + { + "word": "motocicleta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorcycle", + "example_sentence_native": "Compró una motocicleta nueva.", + "example_sentence_english": "He bought a new motorcycle.", + "pos": "noun", + "word_frequency": 7917 + }, + { + "word": "oligarquía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oligarchy", + "example_sentence_native": "La oligarquía controlaba la mayor parte de la riqueza del país.", + "example_sentence_english": "The oligarchy controlled most of the country's wealth.", + "pos": "noun", + "word_frequency": 7922 + }, + { + "word": "originalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originality", + "example_sentence_native": "Su obra carece de originalidad.", + "example_sentence_english": "His work lacks originality.", + "pos": "noun", + "word_frequency": 7923 + }, + { + "word": "paralelamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parallelly;simultaneously", + "example_sentence_native": "Paralelamente, se desarrollaron otros proyectos.", + "example_sentence_english": "Parallelly, other projects were developed.", + "pos": "adverb", + "word_frequency": 7925 + }, + { + "word": "pluralidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plurality", + "example_sentence_native": "La pluralidad de opiniones es esencial en una democracia.", + "example_sentence_english": "The plurality of opinions is essential in a democracy.", + "pos": "noun", + "word_frequency": 7926 + }, + { + "word": "podio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "podium", + "example_sentence_native": "El atleta subió al podio para recibir su medalla.", + "example_sentence_english": "The athlete climbed onto the podium to receive his medal.", + "pos": "noun", + "word_frequency": 7927 + }, + { + "word": "poli", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cop;police (informal)", + "example_sentence_native": "Un poli nos detuvo para pedirnos los documentos.", + "example_sentence_english": "A cop stopped us to ask for our documents.", + "pos": "noun", + "word_frequency": 7928 + }, + { + "word": "politico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "political", + "example_sentence_native": "La situación político actual es complicada.", + "example_sentence_english": "The current political situation is complicated.", + "pos": "adjective", + "word_frequency": 7929 + }, + { + "word": "poste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "post;pole", + "example_sentence_native": "El perro estaba atado a un poste.", + "example_sentence_english": "The dog was tied to a post.", + "pos": "noun", + "word_frequency": 7930 + }, + { + "word": "produccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "production", + "example_sentence_native": "La producción de coches ha aumentado este año.", + "example_sentence_english": "Car production has increased this year.", + "pos": "noun", + "word_frequency": 7931 + }, + { + "word": "pronunciación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pronunciation", + "example_sentence_native": "Su pronunciación del español es excelente.", + "example_sentence_english": "His Spanish pronunciation is excellent.", + "pos": "noun", + "word_frequency": 7932 + }, + { + "word": "pulgar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thumb", + "example_sentence_native": "Me golpeé el pulgar con el martillo.", + "example_sentence_english": "I hit my thumb with the hammer.", + "pos": "noun", + "word_frequency": 7933 + }, + { + "word": "reflejado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflected", + "example_sentence_native": "Su tristeza se veía reflejada en sus ojos.", + "example_sentence_english": "Her sadness was reflected in her eyes.", + "pos": "adjective", + "word_frequency": 7936 + }, + { + "word": "remover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove;to stir", + "example_sentence_native": "Hay que remover la salsa constantemente.", + "example_sentence_english": "You have to stir the sauce constantly.", + "pos": "verb", + "word_frequency": 7938 + }, + { + "word": "renombre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renown;fame", + "example_sentence_native": "Es un artista de gran renombre internacional.", + "example_sentence_english": "He is an artist of great international renown.", + "pos": "noun", + "word_frequency": 7939 + }, + { + "word": "rito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rite;ritual", + "example_sentence_native": "Celebraron un antiguo rito religioso.", + "example_sentence_english": "They celebrated an ancient religious rite.", + "pos": "noun", + "word_frequency": 7940 + }, + { + "word": "santísimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most holy;blessed", + "example_sentence_native": "El Santísimo Sacramento es venerado en la iglesia.", + "example_sentence_english": "The Most Holy Sacrament is venerated in the church.", + "pos": "adjective", + "word_frequency": 7942 + }, + { + "word": "solemne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemn", + "example_sentence_native": "La ceremonia fue muy solemne.", + "example_sentence_english": "The ceremony was very solemn.", + "pos": "adjective", + "word_frequency": 7944 + }, + { + "word": "sudamericano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "South American", + "example_sentence_native": "Es un país sudamericano con mucha diversidad.", + "example_sentence_english": "It is a South American country with a lot of diversity.", + "pos": "adjective", + "word_frequency": 7945 + }, + { + "word": "supervisor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supervisor", + "example_sentence_native": "Mi supervisor me dio buenos consejos.", + "example_sentence_english": "My supervisor gave me good advice.", + "pos": "noun", + "word_frequency": 7946 + }, + { + "word": "tapia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud wall;fence", + "example_sentence_native": "Construyeron una tapia alrededor del jardín.", + "example_sentence_english": "They built a mud wall around the garden.", + "pos": "noun", + "word_frequency": 7947 + }, + { + "word": "tejado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roof", + "example_sentence_native": "El tejado de la casa necesita reparaciones.", + "example_sentence_english": "The house's roof needs repairs.", + "pos": "noun", + "word_frequency": 7948 + }, + { + "word": "telenovela", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soap opera", + "example_sentence_native": "Mi abuela ve una telenovela todas las tardes.", + "example_sentence_english": "My grandmother watches a soap opera every afternoon.", + "pos": "noun", + "word_frequency": 7949 + }, + { + "word": "traducido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translated", + "example_sentence_native": "El libro ha sido traducido a varios idiomas.", + "example_sentence_english": "The book has been translated into several languages.", + "pos": "adjective", + "word_frequency": 7951 + }, + { + "word": "trapo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rag;cloth", + "example_sentence_native": "Usa un trapo húmedo para limpiar la mesa.", + "example_sentence_english": "Use a damp rag to clean the table.", + "pos": "noun", + "word_frequency": 7952 + }, + { + "word": "tuitear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tweet", + "example_sentence_native": "Voy a tuitear sobre este evento.", + "example_sentence_english": "I'm going to tweet about this event.", + "pos": "verb", + "word_frequency": 7954 + }, + { + "word": "unificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unification", + "example_sentence_native": "La unificación de los dos países fue un hito histórico.", + "example_sentence_english": "The unification of the two countries was a historic milestone.", + "pos": "noun", + "word_frequency": 7955 + }, + { + "word": "velada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evening event;soirée", + "example_sentence_native": "Disfrutamos de una agradable velada con amigos.", + "example_sentence_english": "We enjoyed a pleasant evening event with friends.", + "pos": "noun", + "word_frequency": 7956 + }, + { + "word": "veterinario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "veterinarian", + "example_sentence_native": "Llevé a mi perro al veterinario.", + "example_sentence_english": "I took my dog to the veterinarian.", + "pos": "noun", + "word_frequency": 7957 + }, + { + "word": "vitamina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vitamin", + "example_sentence_native": "Las frutas son ricas en vitamina C.", + "example_sentence_english": "Fruits are rich in vitamin C.", + "pos": "noun", + "word_frequency": 7958 + }, + { + "word": "viviente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living;alive", + "example_sentence_native": "Es el artista más influyente viviente.", + "example_sentence_english": "He is the most influential living artist.", + "pos": "adjective", + "word_frequency": 7959 + }, + { + "word": "vodka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vodka", + "example_sentence_native": "Pedimos un vaso de vodka con hielo.", + "example_sentence_english": "We ordered a glass of vodka with ice.", + "pos": "noun", + "word_frequency": 7960 + }, + { + "word": "vomitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vomit", + "example_sentence_native": "El niño empezó a vomitar después de comer demasiado.", + "example_sentence_english": "The child started to vomit after eating too much.", + "pos": "verb", + "word_frequency": 7961 + }, + { + "word": "yeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster;cast", + "example_sentence_native": "Le pusieron un yeso en la pierna rota.", + "example_sentence_english": "They put a cast on his broken leg.", + "pos": "noun", + "word_frequency": 7962 + }, + { + "word": "épico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epic", + "example_sentence_native": "Fue una batalla épica que duró días.", + "example_sentence_english": "It was an epic battle that lasted for days.", + "pos": "adjective", + "word_frequency": 7963 + }, + { + "word": "accionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to activate;to operate;to trigger", + "example_sentence_native": "Debes accionar la palanca para iniciar el motor.", + "example_sentence_english": "You must activate the lever to start the engine.", + "pos": "verb", + "word_frequency": 7964 + }, + { + "word": "adrenalina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adrenaline", + "example_sentence_native": "Sintió una descarga de adrenalina antes de saltar.", + "example_sentence_english": "He felt a rush of adrenaline before jumping.", + "pos": "noun", + "word_frequency": 7965 + }, + { + "word": "algoritmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "algorithm", + "example_sentence_native": "El algoritmo de búsqueda ha sido mejorado.", + "example_sentence_english": "The search algorithm has been improved.", + "pos": "noun", + "word_frequency": 7967 + }, + { + "word": "apretar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to squeeze;to tighten;to press", + "example_sentence_native": "Aprieta el botón para encender la luz.", + "example_sentence_english": "Press the button to turn on the light.", + "pos": "verb", + "word_frequency": 7969 + }, + { + "word": "ascendencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestry;descent", + "example_sentence_native": "Tiene ascendencia española por parte de su madre.", + "example_sentence_english": "He has Spanish ancestry on his mother's side.", + "pos": "noun", + "word_frequency": 7970 + }, + { + "word": "atacado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attacked;overwhelmed", + "example_sentence_native": "Se sintió atacado por las críticas.", + "example_sentence_english": "He felt attacked by the criticism.", + "pos": "adjective", + "word_frequency": 7971 + }, + { + "word": "austral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "southern;austral", + "example_sentence_native": "La Patagonia es una región austral de América del Sur.", + "example_sentence_english": "Patagonia is a southern region of South America.", + "pos": "adjective", + "word_frequency": 7972 + }, + { + "word": "baba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drool;slobber;slime", + "example_sentence_native": "El bebé tenía baba en la barbilla.", + "example_sentence_english": "The baby had drool on his chin.", + "pos": "noun", + "word_frequency": 7973 + }, + { + "word": "barriga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belly;tummy", + "example_sentence_native": "Le dolía la barriga después de comer tanto.", + "example_sentence_english": "His belly hurt after eating so much.", + "pos": "noun", + "word_frequency": 7974 + }, + { + "word": "beneficiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefited;favored", + "example_sentence_native": "Los estudiantes beneficiados recibirán una beca.", + "example_sentence_english": "The benefited students will receive a scholarship.", + "pos": "adjective", + "word_frequency": 7975 + }, + { + "word": "bullying", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullying", + "example_sentence_native": "La escuela tiene una política contra el bullying.", + "example_sentence_english": "The school has a policy against bullying.", + "pos": "noun", + "word_frequency": 7977 + }, + { + "word": "cajero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cashier;ATM", + "example_sentence_native": "Fui al cajero automático para sacar dinero.", + "example_sentence_english": "I went to the ATM to withdraw money.", + "pos": "noun", + "word_frequency": 7978 + }, + { + "word": "carrito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cart;trolley;stroller", + "example_sentence_native": "Necesito un carrito para llevar las compras.", + "example_sentence_english": "I need a cart to carry the groceries.", + "pos": "noun", + "word_frequency": 7980 + }, + { + "word": "cedido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceded;yielded;granted", + "example_sentence_native": "El terreno cedido será usado para construir un parque.", + "example_sentence_english": "The ceded land will be used to build a park.", + "pos": "adjective", + "word_frequency": 7981 + }, + { + "word": "cel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cell phone (colloquial;Latin America)", + "example_sentence_native": "Se me olvidó el cel en casa.", + "example_sentence_english": "I forgot my cell phone at home.", + "pos": "noun", + "word_frequency": 7982 + }, + { + "word": "centroamericano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Central American", + "example_sentence_native": "Ella es de origen centroamericano.", + "example_sentence_english": "She is of Central American origin.", + "pos": "adjective", + "word_frequency": 7983 + }, + { + "word": "coeficiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coefficient", + "example_sentence_native": "El coeficiente intelectual mide la inteligencia.", + "example_sentence_english": "The intelligence quotient measures intelligence.", + "pos": "noun", + "word_frequency": 7986 + }, + { + "word": "criollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Creole;native;local", + "example_sentence_native": "La comida criolla es muy sabrosa.", + "example_sentence_english": "Creole food is very tasty.", + "pos": "adjective", + "word_frequency": 7988 + }, + { + "word": "cross", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross (as in cross-country;or a punch)", + "example_sentence_native": "Hizo un cross con la derecha.", + "example_sentence_english": "He threw a right cross.", + "pos": "noun", + "word_frequency": 7989 + }, + { + "word": "currículum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curriculum vitae;resume", + "example_sentence_native": "Necesitas actualizar tu currículum para el nuevo trabajo.", + "example_sentence_english": "You need to update your resume for the new job.", + "pos": "noun", + "word_frequency": 7990 + }, + { + "word": "cursar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to study (a course);to take (a subject);to process (a request)", + "example_sentence_native": "Estoy cursando el último año de mi carrera.", + "example_sentence_english": "I am taking the last year of my degree.", + "pos": "verb", + "word_frequency": 7991 + }, + { + "word": "decencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decency", + "example_sentence_native": "Actuó con total decencia en una situación difícil.", + "example_sentence_english": "He acted with complete decency in a difficult situation.", + "pos": "noun", + "word_frequency": 7992 + }, + { + "word": "decidido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decided;determined;resolute", + "example_sentence_native": "Es una persona muy decidida y sabe lo que quiere.", + "example_sentence_english": "She is a very determined person and knows what she wants.", + "pos": "adjective", + "word_frequency": 7993 + }, + { + "word": "detectado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detected", + "example_sentence_native": "El problema fue detectado a tiempo.", + "example_sentence_english": "The problem was detected in time.", + "pos": "adjective", + "word_frequency": 7994 + }, + { + "word": "dialogar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dialogue;to converse;to discuss", + "example_sentence_native": "Es importante dialogar para resolver los conflictos.", + "example_sentence_english": "It is important to dialogue to resolve conflicts.", + "pos": "verb", + "word_frequency": 7995 + }, + { + "word": "dictar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dictate;to give (a lecture;class);to issue (a ruling)", + "example_sentence_native": "El profesor va a dictar una conferencia sobre historia.", + "example_sentence_english": "The professor is going to give a lecture on history.", + "pos": "verb", + "word_frequency": 7996 + }, + { + "word": "diecisiete", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seventeen", + "example_sentence_native": "Tengo diecisiete años.", + "example_sentence_english": "I am seventeen years old.", + "pos": "noun", + "word_frequency": 7997 + }, + { + "word": "discreto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discreet;modest;subtle", + "example_sentence_native": "Fue muy discreto con la información.", + "example_sentence_english": "He was very discreet with the information.", + "pos": "adjective", + "word_frequency": 7998 + }, + { + "word": "distinguido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinguished;prominent;renowned", + "example_sentence_native": "Es un científico muy distinguido en su campo.", + "example_sentence_english": "He is a very distinguished scientist in his field.", + "pos": "adjective", + "word_frequency": 7999 + }, + { + "word": "encarnación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incarnation", + "example_sentence_native": "La encarnación del mal se manifestó en sus acciones.", + "example_sentence_english": "The incarnation of evil manifested in his actions.", + "pos": "noun", + "word_frequency": 8003 + }, + { + "word": "enserio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seriously", + "example_sentence_native": "¿Lo dices enserio?", + "example_sentence_english": "Are you serious?", + "pos": "adverb", + "word_frequency": 8004 + }, + { + "word": "esquí", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ski", + "example_sentence_native": "Me encanta ir a esquiar en invierno.", + "example_sentence_english": "I love to go skiing in winter.", + "pos": "noun", + "word_frequency": 8005 + }, + { + "word": "establecerse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to settle down;to establish oneself", + "example_sentence_native": "Decidieron establecerse en una nueva ciudad.", + "example_sentence_english": "They decided to settle down in a new city.", + "pos": "verb", + "word_frequency": 8006 + }, + { + "word": "fanatismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fanaticism", + "example_sentence_native": "El fanatismo religioso puede llevar a la intolerancia.", + "example_sentence_english": "Religious fanaticism can lead to intolerance.", + "pos": "noun", + "word_frequency": 8007 + }, + { + "word": "finalista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finalist", + "example_sentence_native": "El equipo fue finalista en el torneo.", + "example_sentence_english": "The team was a finalist in the tournament.", + "pos": "noun", + "word_frequency": 8008 + }, + { + "word": "follar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fuck (vulgar)", + "example_sentence_native": "Es una palabra vulgar que no se usa en contextos formales.", + "example_sentence_english": "It's a vulgar word not used in formal contexts.", + "pos": "verb", + "word_frequency": 8009 + }, + { + "word": "fármaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug;pharmaceutical", + "example_sentence_native": "El médico recetó un fármaco para el dolor.", + "example_sentence_english": "The doctor prescribed a drug for the pain.", + "pos": "noun", + "word_frequency": 8010 + }, + { + "word": "gatito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kitten", + "example_sentence_native": "Mi gatito es muy juguetón.", + "example_sentence_english": "My kitten is very playful.", + "pos": "noun", + "word_frequency": 8011 + }, + { + "word": "genérico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generic", + "example_sentence_native": "Prefiero los productos de marca, no los genéricos.", + "example_sentence_english": "I prefer brand-name products, not generic ones.", + "pos": "adjective", + "word_frequency": 8012 + }, + { + "word": "hidrógeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydrogen", + "example_sentence_native": "El hidrógeno es el elemento más abundante en el universo.", + "example_sentence_english": "Hydrogen is the most abundant element in the universe.", + "pos": "noun", + "word_frequency": 8015 + }, + { + "word": "honrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to honor", + "example_sentence_native": "Debemos honrar la memoria de nuestros antepasados.", + "example_sentence_english": "We must honor the memory of our ancestors.", + "pos": "verb", + "word_frequency": 8017 + }, + { + "word": "huida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flight;escape", + "example_sentence_native": "La huida de los prisioneros fue un éxito.", + "example_sentence_english": "The prisoners' escape was a success.", + "pos": "noun", + "word_frequency": 8018 + }, + { + "word": "infinidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infinity;countlessness", + "example_sentence_native": "Hay una infinidad de estrellas en el universo.", + "example_sentence_english": "There are countless stars in the universe.", + "pos": "noun", + "word_frequency": 8019 + }, + { + "word": "insistencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insistence", + "example_sentence_native": "Gracias a su insistencia, logramos el objetivo.", + "example_sentence_english": "Thanks to his insistence, we achieved the goal.", + "pos": "noun", + "word_frequency": 8020 + }, + { + "word": "instructor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instructor", + "example_sentence_native": "El instructor nos enseñó a conducir.", + "example_sentence_english": "The instructor taught us how to drive.", + "pos": "noun", + "word_frequency": 8021 + }, + { + "word": "intervalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interval", + "example_sentence_native": "Habrá un intervalo de diez minutos entre las dos partes.", + "example_sentence_english": "There will be a ten-minute interval between the two parts.", + "pos": "noun", + "word_frequency": 8022 + }, + { + "word": "jardin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garden", + "example_sentence_native": "Me gusta leer en el jardín.", + "example_sentence_english": "I like to read in the garden.", + "pos": "noun", + "word_frequency": 8024 + }, + { + "word": "jesuita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jesuit", + "example_sentence_native": "Es un sacerdote jesuita.", + "example_sentence_english": "He is a Jesuit priest.", + "pos": "noun", + "word_frequency": 8025 + }, + { + "word": "jet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jet", + "example_sentence_native": "Viajamos en un jet privado.", + "example_sentence_english": "We traveled on a private jet.", + "pos": "noun", + "word_frequency": 8026 + }, + { + "word": "justificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justified", + "example_sentence_native": "Su reacción fue completamente justificada.", + "example_sentence_english": "His reaction was completely justified.", + "pos": "adjective", + "word_frequency": 8028 + }, + { + "word": "llanura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plain;flatland", + "example_sentence_native": "El paisaje se extendía en una vasta llanura.", + "example_sentence_english": "The landscape stretched out into a vast plain.", + "pos": "noun", + "word_frequency": 8030 + }, + { + "word": "llenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filling;completion (of a form)", + "example_sentence_native": "El llenado del formulario es obligatorio.", + "example_sentence_english": "The completion of the form is mandatory.", + "pos": "noun", + "word_frequency": 8031 + }, + { + "word": "marica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "faggot;queer (derogatory)", + "example_sentence_native": "Es una palabra despectiva y ofensiva.", + "example_sentence_english": "It is a derogatory and offensive word.", + "pos": "noun", + "word_frequency": 8036 + }, + { + "word": "medioambiental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmental", + "example_sentence_native": "La protección medioambiental es crucial.", + "example_sentence_english": "Environmental protection is crucial.", + "pos": "adjective", + "word_frequency": 8037 + }, + { + "word": "ministerial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ministerial", + "example_sentence_native": "Se emitió una orden ministerial.", + "example_sentence_english": "A ministerial order was issued.", + "pos": "adjective", + "word_frequency": 8038 + }, + { + "word": "molde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mold;cast", + "example_sentence_native": "Usó un molde para hacer galletas.", + "example_sentence_english": "She used a mold to make cookies.", + "pos": "noun", + "word_frequency": 8039 + }, + { + "word": "morro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snout", + "example_sentence_native": "El perro tiene un morro muy largo.", + "example_sentence_english": "The dog has a very long snout.", + "pos": "noun", + "word_frequency": 8040 + }, + { + "word": "máxima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maxim", + "example_sentence_native": "Su máxima en la vida es ser feliz.", + "example_sentence_english": "Her maxim in life is to be happy.", + "pos": "noun", + "word_frequency": 8041 + }, + { + "word": "panamericano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pan-American", + "example_sentence_native": "Los Juegos Panamericanos se celebran cada cuatro años.", + "example_sentence_english": "The Pan-American Games are held every four years.", + "pos": "adjective", + "word_frequency": 8044 + }, + { + "word": "patrocinio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsorship", + "example_sentence_native": "La empresa busca patrocinio para su nuevo proyecto.", + "example_sentence_english": "The company is looking for sponsorship for its new project.", + "pos": "noun", + "word_frequency": 8045 + }, + { + "word": "pera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pear", + "example_sentence_native": "Me gusta comer una pera para el postre.", + "example_sentence_english": "I like to eat a pear for dessert.", + "pos": "noun", + "word_frequency": 8047 + }, + { + "word": "permanecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remained", + "example_sentence_native": "El edificio ha permanecido intacto durante siglos.", + "example_sentence_english": "The building has remained intact for centuries.", + "pos": "adjective", + "word_frequency": 8049 + }, + { + "word": "perímetro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perimeter", + "example_sentence_native": "Calculamos el perímetro del cuadrado.", + "example_sentence_english": "We calculated the perimeter of the square.", + "pos": "noun", + "word_frequency": 8050 + }, + { + "word": "pionero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pioneer", + "example_sentence_native": "Fue un pionero en el campo de la medicina.", + "example_sentence_english": "He was a pioneer in the field of medicine.", + "pos": "noun", + "word_frequency": 8051 + }, + { + "word": "planeación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planning", + "example_sentence_native": "La planeación del evento tomó meses.", + "example_sentence_english": "The planning of the event took months.", + "pos": "noun", + "word_frequency": 8052 + }, + { + "word": "podrido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rotten", + "example_sentence_native": "La fruta estaba podrida y no se podía comer.", + "example_sentence_english": "The fruit was rotten and couldn't be eaten.", + "pos": "adjective", + "word_frequency": 8053 + }, + { + "word": "potestad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authority", + "example_sentence_native": "El juez tiene potestad para decidir el caso.", + "example_sentence_english": "The judge has the authority to decide the case.", + "pos": "noun", + "word_frequency": 8054 + }, + { + "word": "procesal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "procedural", + "example_sentence_native": "El derecho procesal regula los procedimientos judiciales.", + "example_sentence_english": "Procedural law regulates judicial procedures.", + "pos": "adjective", + "word_frequency": 8056 + }, + { + "word": "procuraduría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attorney general's office", + "example_sentence_native": "La procuraduría investiga el caso de corrupción.", + "example_sentence_english": "The attorney general's office is investigating the corruption case.", + "pos": "noun", + "word_frequency": 8057 + }, + { + "word": "proliferación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proliferation", + "example_sentence_native": "La proliferación de armas nucleares es una preocupación global.", + "example_sentence_english": "The proliferation of nuclear weapons is a global concern.", + "pos": "noun", + "word_frequency": 8058 + }, + { + "word": "publicitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advertising", + "example_sentence_native": "La campaña publicitaria fue muy exitosa.", + "example_sentence_english": "The advertising campaign was very successful.", + "pos": "adjective", + "word_frequency": 8060 + }, + { + "word": "remuneración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remuneration", + "example_sentence_native": "La remuneración por el trabajo es justa.", + "example_sentence_english": "The remuneration for the work is fair.", + "pos": "noun", + "word_frequency": 8062 + }, + { + "word": "robado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stolen", + "example_sentence_native": "Encontraron el coche robado.", + "example_sentence_english": "They found the stolen car.", + "pos": "adjective", + "word_frequency": 8063 + }, + { + "word": "rosal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rose bush", + "example_sentence_native": "El rosal del jardín está lleno de flores.", + "example_sentence_english": "The rose bush in the garden is full of flowers.", + "pos": "noun", + "word_frequency": 8064 + }, + { + "word": "semen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semen", + "example_sentence_native": "El semen contiene espermatozoides.", + "example_sentence_english": "Semen contains spermatozoa.", + "pos": "noun", + "word_frequency": 8065 + }, + { + "word": "sencillez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplicity", + "example_sentence_native": "Me gusta la sencillez de su estilo.", + "example_sentence_english": "I like the simplicity of her style.", + "pos": "noun", + "word_frequency": 8066 + }, + { + "word": "soda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soda", + "example_sentence_native": "¿Quieres una soda con tu comida?", + "example_sentence_english": "Do you want a soda with your meal?", + "pos": "noun", + "word_frequency": 8069 + }, + { + "word": "sonda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probe", + "example_sentence_native": "La sonda espacial envió datos a la Tierra.", + "example_sentence_english": "The space probe sent data to Earth.", + "pos": "noun", + "word_frequency": 8070 + }, + { + "word": "sostenibilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sustainability", + "example_sentence_native": "La sostenibilidad ambiental es crucial para el futuro.", + "example_sentence_english": "Environmental sustainability is crucial for the future.", + "pos": "noun", + "word_frequency": 8071 + }, + { + "word": "sud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "south", + "example_sentence_native": "El viento viene del sud.", + "example_sentence_english": "The wind comes from the south.", + "pos": "noun", + "word_frequency": 8074 + }, + { + "word": "sugerido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suggested", + "example_sentence_native": "El precio sugerido es de 20 euros.", + "example_sentence_english": "The suggested price is 20 euros.", + "pos": "adjective", + "word_frequency": 8076 + }, + { + "word": "telegrama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegram", + "example_sentence_native": "Recibió un telegrama urgente.", + "example_sentence_english": "He received an urgent telegram.", + "pos": "noun", + "word_frequency": 8078 + }, + { + "word": "tortilla", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tortilla (Spanish omelette or flatbread)", + "example_sentence_native": "Me gusta la tortilla de patatas.", + "example_sentence_english": "I like the potato omelette.", + "pos": "noun", + "word_frequency": 8082 + }, + { + "word": "tragar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swallow", + "example_sentence_native": "Es difícil tragar esta pastilla.", + "example_sentence_english": "It's difficult to swallow this pill.", + "pos": "verb", + "word_frequency": 8084 + }, + { + "word": "trascendencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transcendence;significance", + "example_sentence_native": "La decisión tuvo una gran trascendencia.", + "example_sentence_english": "The decision had great significance.", + "pos": "noun", + "word_frequency": 8086 + }, + { + "word": "trilogía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trilogy", + "example_sentence_native": "Leí la trilogía completa en una semana.", + "example_sentence_english": "I read the complete trilogy in a week.", + "pos": "noun", + "word_frequency": 8087 + }, + { + "word": "veinticinco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-five", + "example_sentence_native": "Tengo veinticinco años.", + "example_sentence_english": "I am twenty-five years old.", + "pos": "noun", + "word_frequency": 8089 + }, + { + "word": "vinagre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vinegar", + "example_sentence_native": "Añade un poco de vinagre a la ensalada.", + "example_sentence_english": "Add a little vinegar to the salad.", + "pos": "noun", + "word_frequency": 8090 + }, + { + "word": "virginidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virginity", + "example_sentence_native": "La virginidad es un concepto cultural.", + "example_sentence_english": "Virginity is a cultural concept.", + "pos": "noun", + "word_frequency": 8091 + }, + { + "word": "abrazar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hug;to embrace", + "example_sentence_native": "Me gusta abrazar a mis amigos.", + "example_sentence_english": "I like to hug my friends.", + "pos": "verb", + "word_frequency": 8092 + }, + { + "word": "adorno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ornament;decoration", + "example_sentence_native": "El árbol de Navidad tiene muchos adornos.", + "example_sentence_english": "The Christmas tree has many ornaments.", + "pos": "noun", + "word_frequency": 8093 + }, + { + "word": "agresor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressor", + "example_sentence_native": "El agresor fue detenido por la policía.", + "example_sentence_english": "The aggressor was arrested by the police.", + "pos": "noun", + "word_frequency": 8095 + }, + { + "word": "ajustado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tight;adjusted", + "example_sentence_native": "Este pantalón me queda muy ajustado.", + "example_sentence_english": "These pants are very tight on me.", + "pos": "adjective", + "word_frequency": 8096 + }, + { + "word": "alentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to encourage;to cheer on", + "example_sentence_native": "Debemos alentar a los estudiantes.", + "example_sentence_english": "We must encourage the students.", + "pos": "verb", + "word_frequency": 8097 + }, + { + "word": "alimenticio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nutritional;food-related", + "example_sentence_native": "Los productos alimenticios deben ser seguros.", + "example_sentence_english": "Food products must be safe.", + "pos": "adjective", + "word_frequency": 8099 + }, + { + "word": "anarquista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchist", + "example_sentence_native": "Es un movimiento de ideología anarquista.", + "example_sentence_english": "It is a movement with anarchist ideology.", + "pos": "noun", + "word_frequency": 8101 + }, + { + "word": "anonimato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymity", + "example_sentence_native": "Prefiere mantener su anonimato.", + "example_sentence_english": "He prefers to maintain his anonymity.", + "pos": "noun", + "word_frequency": 8102 + }, + { + "word": "anormal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abnormal", + "example_sentence_native": "Su comportamiento fue completamente anormal.", + "example_sentence_english": "His behavior was completely abnormal.", + "pos": "adjective", + "word_frequency": 8103 + }, + { + "word": "antiguamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formerly;in ancient times", + "example_sentence_native": "Antiguamente, la gente vivía sin electricidad.", + "example_sentence_english": "Formerly, people lived without electricity.", + "pos": "adverb", + "word_frequency": 8104 + }, + { + "word": "antojo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "craving;whim", + "example_sentence_native": "Tuve un antojo de chocolate.", + "example_sentence_english": "I had a craving for chocolate.", + "pos": "noun", + "word_frequency": 8105 + }, + { + "word": "arqueológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeological", + "example_sentence_native": "Descubrieron un sitio arqueológico importante.", + "example_sentence_english": "They discovered an important archaeological site.", + "pos": "adjective", + "word_frequency": 8109 + }, + { + "word": "atribución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attribution;assignment", + "example_sentence_native": "La atribución de la obra es incierta.", + "example_sentence_english": "The attribution of the work is uncertain.", + "pos": "noun", + "word_frequency": 8110 + }, + { + "word": "ballena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whale", + "example_sentence_native": "La ballena azul es el animal más grande.", + "example_sentence_english": "The blue whale is the largest animal.", + "pos": "noun", + "word_frequency": 8112 + }, + { + "word": "banana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "banana", + "example_sentence_native": "Me gusta comer una banana por la mañana.", + "example_sentence_english": "I like to eat a banana in the morning.", + "pos": "noun", + "word_frequency": 8113 + }, + { + "word": "banquete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banquet", + "example_sentence_native": "Se celebró un gran banquete en el castillo.", + "example_sentence_english": "A grand banquet was held in the castle.", + "pos": "noun", + "word_frequency": 8114 + }, + { + "word": "barbarie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barbarity;savagery", + "example_sentence_native": "La guerra trajo mucha barbarie.", + "example_sentence_english": "The war brought much barbarity.", + "pos": "noun", + "word_frequency": 8115 + }, + { + "word": "bate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bat (baseball)", + "example_sentence_native": "El jugador golpeó la pelota con el bate.", + "example_sentence_english": "The player hit the ball with the bat.", + "pos": "noun", + "word_frequency": 8116 + }, + { + "word": "bañera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathtub", + "example_sentence_native": "Me gusta relajarme en la bañera.", + "example_sentence_english": "I like to relax in the bathtub.", + "pos": "noun", + "word_frequency": 8117 + }, + { + "word": "boludez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonsense;foolishness (Argentine;Rioplatense slang)", + "example_sentence_native": "No digas boludeces.", + "example_sentence_english": "Don't say foolish things.", + "pos": "noun", + "word_frequency": 8119 + }, + { + "word": "callado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quiet;silent", + "example_sentence_native": "Es un niño muy callado, casi nunca habla.", + "example_sentence_english": "He is a very quiet child, he almost never speaks.", + "pos": "adjective", + "word_frequency": 8121 + }, + { + "word": "compadre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "godfather;close friend", + "example_sentence_native": "Mi compadre me ayudó a mudarme.", + "example_sentence_english": "My close friend helped me move.", + "pos": "noun", + "word_frequency": 8127 + }, + { + "word": "concordia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concord;harmony", + "example_sentence_native": "Vivimos en concordia con nuestros vecinos.", + "example_sentence_english": "We live in harmony with our neighbors.", + "pos": "noun", + "word_frequency": 8128 + }, + { + "word": "croata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Croatian (person;nationality)", + "example_sentence_native": "Conocí a un croata muy amable en el viaje.", + "example_sentence_english": "I met a very kind Croatian on the trip.", + "pos": "noun", + "word_frequency": 8130 + }, + { + "word": "curación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healing;cure", + "example_sentence_native": "La curación de la herida fue rápida.", + "example_sentence_english": "The healing of the wound was fast.", + "pos": "noun", + "word_frequency": 8131 + }, + { + "word": "descendencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descendants;offspring", + "example_sentence_native": "Tiene una numerosa descendencia.", + "example_sentence_english": "He has numerous descendants.", + "pos": "noun", + "word_frequency": 8132 + }, + { + "word": "descrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "described", + "example_sentence_native": "El paisaje estaba descrito con gran detalle.", + "example_sentence_english": "The landscape was described in great detail.", + "pos": "adjective", + "word_frequency": 8133 + }, + { + "word": "destreza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill;dexterity", + "example_sentence_native": "Demostró gran destreza en el manejo de la herramienta.", + "example_sentence_english": "He showed great skill in handling the tool.", + "pos": "noun", + "word_frequency": 8134 + }, + { + "word": "detallar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detail;to elaborate", + "example_sentence_native": "Necesito que me detalles los pasos del proceso.", + "example_sentence_english": "I need you to detail the steps of the process for me.", + "pos": "verb", + "word_frequency": 8135 + }, + { + "word": "duramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hard;harshly", + "example_sentence_native": "Trabajó duramente para conseguir sus metas.", + "example_sentence_english": "He worked hard to achieve his goals.", + "pos": "adverb", + "word_frequency": 8136 + }, + { + "word": "economia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economy;saving", + "example_sentence_native": "La economía del país está creciendo.", + "example_sentence_english": "The country's economy is growing.", + "pos": "noun", + "word_frequency": 8137 + }, + { + "word": "ecuatorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equatorial", + "example_sentence_native": "El clima ecuatorial es cálido y húmedo.", + "example_sentence_english": "The equatorial climate is warm and humid.", + "pos": "adjective", + "word_frequency": 8138 + }, + { + "word": "empujar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to push", + "example_sentence_native": "Por favor, empuja la puerta para abrirla.", + "example_sentence_english": "Please push the door to open it.", + "pos": "verb", + "word_frequency": 8139 + }, + { + "word": "evolucionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evolve;to develop", + "example_sentence_native": "La tecnología no deja de evolucionar.", + "example_sentence_english": "Technology continues to evolve.", + "pos": "verb", + "word_frequency": 8142 + }, + { + "word": "fideo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noodle", + "example_sentence_native": "Me gusta la sopa de fideos.", + "example_sentence_english": "I like noodle soup.", + "pos": "noun", + "word_frequency": 8144 + }, + { + "word": "filmación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filming;shooting (of a film)", + "example_sentence_native": "La filmación de la película duró tres meses.", + "example_sentence_english": "The filming of the movie lasted three months.", + "pos": "noun", + "word_frequency": 8145 + }, + { + "word": "fusil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rifle", + "example_sentence_native": "El soldado llevaba un fusil al hombro.", + "example_sentence_english": "The soldier carried a rifle on his shoulder.", + "pos": "noun", + "word_frequency": 8146 + }, + { + "word": "gaceta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gazette;official journal", + "example_sentence_native": "La noticia fue publicada en la gaceta oficial.", + "example_sentence_english": "The news was published in the official gazette.", + "pos": "noun", + "word_frequency": 8147 + }, + { + "word": "geometría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geometry", + "example_sentence_native": "Estudiamos geometría en la clase de matemáticas.", + "example_sentence_english": "We study geometry in math class.", + "pos": "noun", + "word_frequency": 8148 + }, + { + "word": "habitacion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room", + "example_sentence_native": "Mi habitación es grande y luminosa.", + "example_sentence_english": "My room is big and bright.", + "pos": "noun", + "word_frequency": 8150 + }, + { + "word": "higiénico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygienic", + "example_sentence_native": "Es importante mantener un ambiente higiénico.", + "example_sentence_english": "It is important to maintain a hygienic environment.", + "pos": "adjective", + "word_frequency": 8152 + }, + { + "word": "incierto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertain;unclear", + "example_sentence_native": "El futuro es incierto, pero hay esperanza.", + "example_sentence_english": "The future is uncertain, but there is hope.", + "pos": "adjective", + "word_frequency": 8153 + }, + { + "word": "infiel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfaithful;infidel", + "example_sentence_native": "Fue infiel a su pareja.", + "example_sentence_english": "He was unfaithful to his partner.", + "pos": "adjective", + "word_frequency": 8154 + }, + { + "word": "infinitamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infinitely", + "example_sentence_native": "El universo es infinitamente grande.", + "example_sentence_english": "The universe is infinitely large.", + "pos": "adverb", + "word_frequency": 8155 + }, + { + "word": "inmune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immune", + "example_sentence_native": "Después de la vacuna, eres inmune a la enfermedad.", + "example_sentence_english": "After the vaccine, you are immune to the disease.", + "pos": "adjective", + "word_frequency": 8156 + }, + { + "word": "leso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "injured;harmed", + "example_sentence_native": "Fue declarado leso en el accidente.", + "example_sentence_english": "He was declared injured in the accident.", + "pos": "adjective", + "word_frequency": 8158 + }, + { + "word": "levemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slightly;lightly", + "example_sentence_native": "La temperatura ha bajado levemente.", + "example_sentence_english": "The temperature has dropped slightly.", + "pos": "adverb", + "word_frequency": 8159 + }, + { + "word": "liberado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liberated;released", + "example_sentence_native": "El prisionero fue liberado después de años.", + "example_sentence_english": "The prisoner was liberated after years.", + "pos": "adjective", + "word_frequency": 8160 + }, + { + "word": "libreta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "notebook", + "example_sentence_native": "Siempre llevo una libreta pequeña para mis notas.", + "example_sentence_english": "I always carry a small notebook for my notes.", + "pos": "noun", + "word_frequency": 8161 + }, + { + "word": "maestre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "master (of a ship;order)", + "example_sentence_native": "El maestre del barco dio las órdenes.", + "example_sentence_english": "The ship's master gave the orders.", + "pos": "noun", + "word_frequency": 8165 + }, + { + "word": "medicación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medication", + "example_sentence_native": "Es importante seguir la medicación según las indicaciones.", + "example_sentence_english": "It's important to follow the medication as directed.", + "pos": "noun", + "word_frequency": 8166 + }, + { + "word": "necesitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "needy;in need", + "example_sentence_native": "Ayudamos a las personas más necesitadas de la comunidad.", + "example_sentence_english": "We help the most needy people in the community.", + "pos": "adjective", + "word_frequency": 8170 + }, + { + "word": "nuez", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nut;walnut", + "example_sentence_native": "Me gusta añadir nueces a mi ensalada.", + "example_sentence_english": "I like to add nuts to my salad.", + "pos": "noun", + "word_frequency": 8172 + }, + { + "word": "operado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operated (on)", + "example_sentence_native": "El paciente fue operado con éxito.", + "example_sentence_english": "The patient was successfully operated on.", + "pos": "adjective", + "word_frequency": 8174 + }, + { + "word": "otorgado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granted;awarded", + "example_sentence_native": "El premio fue otorgado al mejor estudiante.", + "example_sentence_english": "The award was granted to the best student.", + "pos": "adjective", + "word_frequency": 8176 + }, + { + "word": "parche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patch", + "example_sentence_native": "Necesito un parche para mi pantalón roto.", + "example_sentence_english": "I need a patch for my torn pants.", + "pos": "noun", + "word_frequency": 8177 + }, + { + "word": "persistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistent", + "example_sentence_native": "Su tos persistente le impedía dormir.", + "example_sentence_english": "His persistent cough prevented him from sleeping.", + "pos": "adjective", + "word_frequency": 8179 + }, + { + "word": "prestigioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prestigious", + "example_sentence_native": "Es una universidad muy prestigiosa.", + "example_sentence_english": "It is a very prestigious university.", + "pos": "adjective", + "word_frequency": 8180 + }, + { + "word": "presto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quickly;promptly", + "example_sentence_native": "El mago hizo desaparecer la moneda presto.", + "example_sentence_english": "The magician made the coin disappear quickly.", + "pos": "adverb", + "word_frequency": 8181 + }, + { + "word": "prójimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fellow man;neighbor", + "example_sentence_native": "Debemos amar a nuestro prójimo como a nosotros mismos.", + "example_sentence_english": "We must love our neighbor as ourselves.", + "pos": "noun", + "word_frequency": 8182 + }, + { + "word": "puntaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "score", + "example_sentence_native": "Mi puntaje en el examen fue muy alto.", + "example_sentence_english": "My score on the exam was very high.", + "pos": "noun", + "word_frequency": 8184 + }, + { + "word": "quechua", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Quechua (language or people)", + "example_sentence_native": "El quechua es una lengua indígena de Sudamérica.", + "example_sentence_english": "Quechua is an indigenous language of South America.", + "pos": "noun", + "word_frequency": 8185 + }, + { + "word": "querella", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute;complaint;lawsuit", + "example_sentence_native": "Presentó una querella contra la empresa.", + "example_sentence_english": "He filed a lawsuit against the company.", + "pos": "noun", + "word_frequency": 8186 + }, + { + "word": "quieto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "still;quiet;motionless", + "example_sentence_native": "Por favor, quédate quieto un momento.", + "example_sentence_english": "Please stay still for a moment.", + "pos": "adjective", + "word_frequency": 8187 + }, + { + "word": "rebaño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flock;herd", + "example_sentence_native": "El pastor llevó su rebaño a pastar.", + "example_sentence_english": "The shepherd led his flock to graze.", + "pos": "noun", + "word_frequency": 8188 + }, + { + "word": "redactor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor;writer;copywriter", + "example_sentence_native": "El redactor jefe aprobó el artículo.", + "example_sentence_english": "The chief editor approved the article.", + "pos": "noun", + "word_frequency": 8189 + }, + { + "word": "reemplazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replaced", + "example_sentence_native": "El componente dañado fue reemplazado.", + "example_sentence_english": "The damaged component was replaced.", + "pos": "adjective", + "word_frequency": 8190 + }, + { + "word": "restringido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restricted", + "example_sentence_native": "El acceso a esa zona está restringido.", + "example_sentence_english": "Access to that area is restricted.", + "pos": "adjective", + "word_frequency": 8191 + }, + { + "word": "tecnologia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technology", + "example_sentence_native": "La tecnologia avanza muy rápido.", + "example_sentence_english": "Technology advances very fast.", + "pos": "noun", + "word_frequency": 8197 + }, + { + "word": "televisivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "television (adj.);televised", + "example_sentence_native": "El programa televisivo fue muy popular.", + "example_sentence_english": "The television program was very popular.", + "pos": "adjective", + "word_frequency": 8198 + }, + { + "word": "tibio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lukewarm;tepid", + "example_sentence_native": "El agua estaba tibia, perfecta para un baño.", + "example_sentence_english": "The water was lukewarm, perfect for a bath.", + "pos": "adjective", + "word_frequency": 8199 + }, + { + "word": "tirano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tyrant", + "example_sentence_native": "El tirano gobernó con mano de hierro.", + "example_sentence_english": "The tyrant ruled with an iron fist.", + "pos": "noun", + "word_frequency": 8200 + }, + { + "word": "tobillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ankle", + "example_sentence_native": "Me torcí el tobillo jugando al fútbol.", + "example_sentence_english": "I twisted my ankle playing soccer.", + "pos": "noun", + "word_frequency": 8201 + }, + { + "word": "ucraniano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ukrainian", + "example_sentence_native": "La bandera ucraniana es azul y amarilla.", + "example_sentence_english": "The Ukrainian flag is blue and yellow.", + "pos": "adjective", + "word_frequency": 8202 + }, + { + "word": "vejez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old age", + "example_sentence_native": "La vejez trae consigo sabiduría y experiencia.", + "example_sentence_english": "Old age brings wisdom and experience.", + "pos": "noun", + "word_frequency": 8204 + }, + { + "word": "ventilación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ventilation", + "example_sentence_native": "Es importante tener buena ventilación en la habitación.", + "example_sentence_english": "It's important to have good ventilation in the room.", + "pos": "noun", + "word_frequency": 8205 + }, + { + "word": "vil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vile;despicable", + "example_sentence_native": "Fue un acto vil y cobarde.", + "example_sentence_english": "It was a vile and cowardly act.", + "pos": "adjective", + "word_frequency": 8206 + }, + { + "word": "íntegramente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirely;wholly", + "example_sentence_native": "El proyecto fue financiado íntegramente por el gobierno.", + "example_sentence_english": "The project was entirely funded by the government.", + "pos": "adverb", + "word_frequency": 8210 + }, + { + "word": "aborigen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aboriginal;indigenous person", + "example_sentence_native": "Los aborígenes tienen una rica cultura.", + "example_sentence_english": "Aboriginal people have a rich culture.", + "pos": "noun", + "word_frequency": 8213 + }, + { + "word": "abusar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to abuse;to misuse", + "example_sentence_native": "No debes abusar de tu poder.", + "example_sentence_english": "You should not abuse your power.", + "pos": "verb", + "word_frequency": 8214 + }, + { + "word": "alteza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "highness", + "example_sentence_native": "Su Alteza Real visitará la ciudad.", + "example_sentence_english": "His/Her Royal Highness will visit the city.", + "pos": "noun", + "word_frequency": 8216 + }, + { + "word": "analizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analyzed", + "example_sentence_native": "Los datos fueron analizados cuidadosamente.", + "example_sentence_english": "The data was carefully analyzed.", + "pos": "adjective", + "word_frequency": 8218 + }, + { + "word": "anticorrupción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-corruption", + "example_sentence_native": "La ley anticorrupción fue aprobada.", + "example_sentence_english": "The anti-corruption law was approved.", + "pos": "noun", + "word_frequency": 8220 + }, + { + "word": "aprendiz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprentice;trainee", + "example_sentence_native": "El joven aprendiz está aprendiendo el oficio.", + "example_sentence_english": "The young apprentice is learning the trade.", + "pos": "noun", + "word_frequency": 8222 + }, + { + "word": "argumentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to argue;to reason", + "example_sentence_native": "Es importante saber argumentar tus ideas.", + "example_sentence_english": "It's important to know how to argue your ideas.", + "pos": "verb", + "word_frequency": 8223 + }, + { + "word": "arrogancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogance", + "example_sentence_native": "Su arrogancia le impidió ver sus errores.", + "example_sentence_english": "His arrogance prevented him from seeing his mistakes.", + "pos": "noun", + "word_frequency": 8224 + }, + { + "word": "arteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artery", + "example_sentence_native": "La sangre fluye por las arterias.", + "example_sentence_english": "Blood flows through the arteries.", + "pos": "noun", + "word_frequency": 8225 + }, + { + "word": "atacante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attacker;assailant", + "example_sentence_native": "El atacante fue detenido por la policía.", + "example_sentence_english": "The attacker was arrested by the police.", + "pos": "noun", + "word_frequency": 8226 + }, + { + "word": "atraído", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attracted", + "example_sentence_native": "Se sintió atraído por su personalidad.", + "example_sentence_english": "He felt attracted to her personality.", + "pos": "adjective", + "word_frequency": 8227 + }, + { + "word": "autoría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authorship", + "example_sentence_native": "La autoría del libro es indiscutible.", + "example_sentence_english": "The authorship of the book is indisputable.", + "pos": "noun", + "word_frequency": 8228 + }, + { + "word": "bandido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandit;outlaw", + "example_sentence_native": "Los bandidos asaltaron el tren.", + "example_sentence_english": "The bandits robbed the train.", + "pos": "noun", + "word_frequency": 8230 + }, + { + "word": "barranco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ravine;gully", + "example_sentence_native": "El coche cayó por el barranco.", + "example_sentence_english": "The car fell down the ravine.", + "pos": "noun", + "word_frequency": 8231 + }, + { + "word": "conciliación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conciliation;reconciliation", + "example_sentence_native": "Se busca una conciliación entre las partes.", + "example_sentence_english": "A conciliation between the parties is sought.", + "pos": "noun", + "word_frequency": 8235 + }, + { + "word": "conformación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conformation;formation;shaping", + "example_sentence_native": "La conformación del nuevo gobierno es un proceso complejo.", + "example_sentence_english": "The formation of the new government is a complex process.", + "pos": "noun", + "word_frequency": 8236 + }, + { + "word": "conmemorar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commemorate", + "example_sentence_native": "Conmemoramos el aniversario de la independencia.", + "example_sentence_english": "We commemorate the anniversary of independence.", + "pos": "verb", + "word_frequency": 8237 + }, + { + "word": "coyuntura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conjuncture;situation;juncture", + "example_sentence_native": "La coyuntura económica actual es delicada.", + "example_sentence_english": "The current economic conjuncture is delicate.", + "pos": "noun", + "word_frequency": 8238 + }, + { + "word": "cuestionario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "questionnaire", + "example_sentence_native": "Por favor, rellena este cuestionario antes de la reunión.", + "example_sentence_english": "Please fill out this questionnaire before the meeting.", + "pos": "noun", + "word_frequency": 8241 + }, + { + "word": "cápsula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capsule", + "example_sentence_native": "La medicina viene en forma de cápsula.", + "example_sentence_english": "The medicine comes in capsule form.", + "pos": "noun", + "word_frequency": 8242 + }, + { + "word": "decorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decorated", + "example_sentence_native": "El salón estaba bellamente decorado para la fiesta.", + "example_sentence_english": "The hall was beautifully decorated for the party.", + "pos": "adjective", + "word_frequency": 8246 + }, + { + "word": "denso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dense", + "example_sentence_native": "La niebla era tan densa que apenas podíamos ver.", + "example_sentence_english": "The fog was so dense we could barely see.", + "pos": "adjective", + "word_frequency": 8248 + }, + { + "word": "descender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to descend", + "example_sentence_native": "Tuvimos que descender la montaña con cuidado.", + "example_sentence_english": "We had to descend the mountain carefully.", + "pos": "verb", + "word_frequency": 8249 + }, + { + "word": "despreciable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despicable", + "example_sentence_native": "Su comportamiento fue absolutamente despreciable.", + "example_sentence_english": "His behavior was absolutely despicable.", + "pos": "adjective", + "word_frequency": 8250 + }, + { + "word": "desvío", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detour", + "example_sentence_native": "Hubo un desvío en la carretera debido a las obras.", + "example_sentence_english": "There was a detour on the road due to construction.", + "pos": "noun", + "word_frequency": 8251 + }, + { + "word": "doblar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fold", + "example_sentence_native": "Por favor, dobla la ropa limpia.", + "example_sentence_english": "Please fold the clean clothes.", + "pos": "verb", + "word_frequency": 8252 + }, + { + "word": "eleccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choice", + "example_sentence_native": "La elección del nuevo presidente será el próximo mes.", + "example_sentence_english": "The election of the new president will be next month.", + "pos": "noun", + "word_frequency": 8254 + }, + { + "word": "ene", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "the letter 'N'", + "example_sentence_native": "La palabra \"naranja\" empieza con la letra ene.", + "example_sentence_english": "The word \"orange\" starts with the letter N.", + "pos": "noun", + "word_frequency": 8255 + }, + { + "word": "erróneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erroneous", + "example_sentence_native": "Su conclusión resultó ser completamente errónea.", + "example_sentence_english": "His conclusion turned out to be completely erroneous.", + "pos": "adjective", + "word_frequency": 8256 + }, + { + "word": "esponja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sponge", + "example_sentence_native": "Usa una esponja para limpiar la mesa.", + "example_sentence_english": "Use a sponge to clean the table.", + "pos": "noun", + "word_frequency": 8257 + }, + { + "word": "espontáneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spontaneous", + "example_sentence_native": "Su reacción fue totalmente espontánea.", + "example_sentence_english": "Her reaction was totally spontaneous.", + "pos": "adjective", + "word_frequency": 8258 + }, + { + "word": "finalizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finished", + "example_sentence_native": "El proyecto ya está finalizado.", + "example_sentence_english": "The project is already finished.", + "pos": "adjective", + "word_frequency": 8260 + }, + { + "word": "frasco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jar", + "example_sentence_native": "Guarda las especias en un frasco de cristal.", + "example_sentence_english": "Store the spices in a glass jar.", + "pos": "noun", + "word_frequency": 8262 + }, + { + "word": "garza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heron", + "example_sentence_native": "Vimos una garza pescando en la orilla del río.", + "example_sentence_english": "We saw a heron fishing on the river bank.", + "pos": "noun", + "word_frequency": 8264 + }, + { + "word": "gene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gene", + "example_sentence_native": "Los genes determinan muchas de nuestras características.", + "example_sentence_english": "Genes determine many of our characteristics.", + "pos": "noun", + "word_frequency": 8265 + }, + { + "word": "generado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generated", + "example_sentence_native": "El informe generado automáticamente contiene todos los datos.", + "example_sentence_english": "The automatically generated report contains all the data.", + "pos": "adjective", + "word_frequency": 8266 + }, + { + "word": "guia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guide", + "example_sentence_native": "Necesitamos una guía para visitar el museo.", + "example_sentence_english": "We need a guide to visit the museum.", + "pos": "noun", + "word_frequency": 8268 + }, + { + "word": "hostilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hostility", + "example_sentence_native": "Había una clara hostilidad en su voz.", + "example_sentence_english": "There was clear hostility in his voice.", + "pos": "noun", + "word_frequency": 8269 + }, + { + "word": "idéntico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identical", + "example_sentence_native": "Los dos cuadros son prácticamente idénticos.", + "example_sentence_english": "The two paintings are practically identical.", + "pos": "adjective", + "word_frequency": 8270 + }, + { + "word": "impresora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "printer", + "example_sentence_native": "La impresora no tiene tinta.", + "example_sentence_english": "The printer is out of ink.", + "pos": "noun", + "word_frequency": 8271 + }, + { + "word": "incentivar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to incentivize", + "example_sentence_native": "Queremos incentivar la participación de los estudiantes.", + "example_sentence_english": "We want to incentivize student participation.", + "pos": "verb", + "word_frequency": 8272 + }, + { + "word": "inmoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immoral", + "example_sentence_native": "Considero que esa acción es completamente inmoral.", + "example_sentence_english": "I consider that action to be completely immoral.", + "pos": "adjective", + "word_frequency": 8273 + }, + { + "word": "lastimar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hurt", + "example_sentence_native": "No quiero lastimar a nadie con mis palabras.", + "example_sentence_english": "I don't want to hurt anyone with my words.", + "pos": "verb", + "word_frequency": 8277 + }, + { + "word": "leona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lioness", + "example_sentence_native": "La leona cazó un antílope para sus crías.", + "example_sentence_english": "The lioness hunted an antelope for her cubs.", + "pos": "noun", + "word_frequency": 8278 + }, + { + "word": "lucio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pike (fish)", + "example_sentence_native": "El lucio es un pez de agua dulce.", + "example_sentence_english": "The pike is a freshwater fish.", + "pos": "noun", + "word_frequency": 8280 + }, + { + "word": "medicinal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicinal", + "example_sentence_native": "Esta planta tiene propiedades medicinales.", + "example_sentence_english": "This plant has medicinal properties.", + "pos": "adjective", + "word_frequency": 8285 + }, + { + "word": "miniatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miniature", + "example_sentence_native": "Compró una miniatura de la Torre Eiffel.", + "example_sentence_english": "She bought a miniature of the Eiffel Tower.", + "pos": "noun", + "word_frequency": 8288 + }, + { + "word": "mix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mix", + "example_sentence_native": "El DJ hizo un buen mix de ritmos latinos.", + "example_sentence_english": "The DJ made a good mix of Latin rhythms.", + "pos": "noun", + "word_frequency": 8289 + }, + { + "word": "molécula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molecule", + "example_sentence_native": "El agua está compuesta por moléculas de H2O.", + "example_sentence_english": "Water is composed of H2O molecules.", + "pos": "noun", + "word_frequency": 8290 + }, + { + "word": "mouse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mouse (computer)", + "example_sentence_native": "Mi mouse inalámbrico no funciona.", + "example_sentence_english": "My wireless mouse isn't working.", + "pos": "noun", + "word_frequency": 8291 + }, + { + "word": "mozo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waiter;young man", + "example_sentence_native": "El mozo nos trajo la cuenta.", + "example_sentence_english": "The waiter brought us the bill.", + "pos": "noun", + "word_frequency": 8292 + }, + { + "word": "musa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muse", + "example_sentence_native": "Ella es la musa de muchos artistas.", + "example_sentence_english": "She is the muse of many artists.", + "pos": "noun", + "word_frequency": 8293 + }, + { + "word": "nana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nanny;lullaby", + "example_sentence_native": "La nana cantó una canción para dormir al bebé.", + "example_sentence_english": "The nanny sang a song to put the baby to sleep.", + "pos": "noun", + "word_frequency": 8295 + }, + { + "word": "orgasmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgasm", + "example_sentence_native": "El orgasmo es una experiencia intensa.", + "example_sentence_english": "Orgasm is an intense experience.", + "pos": "noun", + "word_frequency": 8296 + }, + { + "word": "ortodoxo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orthodox", + "example_sentence_native": "Sigue un enfoque muy ortodoxo en su trabajo.", + "example_sentence_english": "He follows a very orthodox approach in his work.", + "pos": "adjective", + "word_frequency": 8297 + }, + { + "word": "paramilitar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paramilitary", + "example_sentence_native": "El grupo paramilitar fue desarmado.", + "example_sentence_english": "The paramilitary group was disarmed.", + "pos": "noun", + "word_frequency": 8299 + }, + { + "word": "parroquial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parochial", + "example_sentence_native": "La iglesia organiza eventos parroquiales.", + "example_sentence_english": "The church organizes parochial events.", + "pos": "adjective", + "word_frequency": 8300 + }, + { + "word": "patronato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "board of trustees;patronage", + "example_sentence_native": "El patronato de la fundación se reunió.", + "example_sentence_english": "The foundation's board of trustees met.", + "pos": "noun", + "word_frequency": 8302 + }, + { + "word": "pizarra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blackboard;whiteboard", + "example_sentence_native": "El profesor escribió en la pizarra.", + "example_sentence_english": "The teacher wrote on the blackboard.", + "pos": "noun", + "word_frequency": 8304 + }, + { + "word": "potenciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strengthen;to boost;to enhance", + "example_sentence_native": "Es importante potenciar las habilidades de los estudiantes.", + "example_sentence_english": "It's important to strengthen students' skills.", + "pos": "verb", + "word_frequency": 8306 + }, + { + "word": "propuesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proposed", + "example_sentence_native": "La solución propuesta fue aceptada.", + "example_sentence_english": "The proposed solution was accepted.", + "pos": "adjective", + "word_frequency": 8307 + }, + { + "word": "pálido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pale", + "example_sentence_native": "Después de la enfermedad, su rostro estaba pálido.", + "example_sentence_english": "After the illness, his face was pale.", + "pos": "adjective", + "word_frequency": 8308 + }, + { + "word": "reactor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reactor;jet engine", + "example_sentence_native": "El avión usa motores de reactor.", + "example_sentence_english": "The plane uses jet engines.", + "pos": "noun", + "word_frequency": 8311 + }, + { + "word": "relevo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief;relay;replacement", + "example_sentence_native": "El equipo de relevo ganó la carrera.", + "example_sentence_english": "The relay team won the race.", + "pos": "noun", + "word_frequency": 8313 + }, + { + "word": "seudónimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pseudonym", + "example_sentence_native": "El autor publicó bajo un seudónimo.", + "example_sentence_english": "The author published under a pseudonym.", + "pos": "noun", + "word_frequency": 8318 + }, + { + "word": "similitud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "similarity", + "example_sentence_native": "Hay una gran similitud entre los dos cuadros.", + "example_sentence_english": "There is a great similarity between the two paintings.", + "pos": "noun", + "word_frequency": 8320 + }, + { + "word": "temple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple", + "example_sentence_native": "Visitamos un antiguo templo en Grecia.", + "example_sentence_english": "We visited an ancient temple in Greece.", + "pos": "noun", + "word_frequency": 8324 + }, + { + "word": "terminación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "termination;ending", + "example_sentence_native": "La terminación del contrato es el próximo mes.", + "example_sentence_english": "The termination of the contract is next month.", + "pos": "noun", + "word_frequency": 8325 + }, + { + "word": "vale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "voucher;okay", + "example_sentence_native": "Tengo un vale de descuento para la tienda.", + "example_sentence_english": "I have a discount voucher for the store.", + "pos": "noun", + "word_frequency": 8329 + }, + { + "word": "valido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valid", + "example_sentence_native": "Este billete no es válido para viajar hoy.", + "example_sentence_english": "This ticket is not valid for travel today.", + "pos": "adjective", + "word_frequency": 8330 + }, + { + "word": "veloz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fast;swift", + "example_sentence_native": "El guepardo es un animal muy veloz.", + "example_sentence_english": "The cheetah is a very fast animal.", + "pos": "adjective", + "word_frequency": 8331 + }, + { + "word": "violentamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violently", + "example_sentence_native": "El viento soplaba violentamente.", + "example_sentence_english": "The wind blew violently.", + "pos": "adverb", + "word_frequency": 8335 + }, + { + "word": "visualización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visualization", + "example_sentence_native": "La visualización de datos es importante para el análisis.", + "example_sentence_english": "Data visualization is important for analysis.", + "pos": "noun", + "word_frequency": 8336 + }, + { + "word": "válvula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valve", + "example_sentence_native": "La válvula de seguridad se abrió.", + "example_sentence_english": "The safety valve opened.", + "pos": "noun", + "word_frequency": 8338 + }, + { + "word": "abuelito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandpa;granddad", + "example_sentence_native": "Mi abuelito me cuenta historias.", + "example_sentence_english": "My grandpa tells me stories.", + "pos": "noun", + "word_frequency": 8339 + }, + { + "word": "accidental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accidental", + "example_sentence_native": "Fue un encuentro accidental en la calle.", + "example_sentence_english": "It was an accidental encounter on the street.", + "pos": "adjective", + "word_frequency": 8340 + }, + { + "word": "aceleración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceleration", + "example_sentence_native": "La aceleración del coche es impresionante.", + "example_sentence_english": "The car's acceleration is impressive.", + "pos": "noun", + "word_frequency": 8341 + }, + { + "word": "activación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activation", + "example_sentence_native": "Se requiere la activación de la cuenta.", + "example_sentence_english": "Account activation is required.", + "pos": "noun", + "word_frequency": 8342 + }, + { + "word": "activado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "activated;enabled", + "example_sentence_native": "El modo avión está activado.", + "example_sentence_english": "Airplane mode is activated.", + "pos": "adjective", + "word_frequency": 8343 + }, + { + "word": "acuñar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to coin;to mint", + "example_sentence_native": "Se acuñó una nueva moneda conmemorativa.", + "example_sentence_english": "A new commemorative coin was minted.", + "pos": "verb", + "word_frequency": 8344 + }, + { + "word": "adoración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adoration;worship", + "example_sentence_native": "Sentía una profunda adoración por su ídolo.", + "example_sentence_english": "He felt a deep adoration for his idol.", + "pos": "noun", + "word_frequency": 8345 + }, + { + "word": "aleman", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "German", + "example_sentence_native": "Hablo un poco de alemán.", + "example_sentence_english": "I speak a little German.", + "pos": "adjective", + "word_frequency": 8347 + }, + { + "word": "anestesia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anesthesia", + "example_sentence_native": "Necesitará anestesia para la cirugía.", + "example_sentence_english": "You will need anesthesia for the surgery.", + "pos": "noun", + "word_frequency": 8349 + }, + { + "word": "anhelo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longing;yearning", + "example_sentence_native": "Tenía un anhelo profundo de volver a casa.", + "example_sentence_english": "He had a deep longing to return home.", + "pos": "noun", + "word_frequency": 8350 + }, + { + "word": "apelar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appeal", + "example_sentence_native": "Decidió apelar la sentencia.", + "example_sentence_english": "He decided to appeal the sentence.", + "pos": "verb", + "word_frequency": 8351 + }, + { + "word": "arrogante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogant", + "example_sentence_native": "Su actitud arrogante molestó a todos.", + "example_sentence_english": "His arrogant attitude bothered everyone.", + "pos": "adjective", + "word_frequency": 8353 + }, + { + "word": "asignatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subject;course", + "example_sentence_native": "Mi asignatura favorita es historia.", + "example_sentence_english": "My favorite subject is history.", + "pos": "noun", + "word_frequency": 8355 + }, + { + "word": "asta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flagpole;horn", + "example_sentence_native": "La bandera ondeaba en lo alto del asta.", + "example_sentence_english": "The flag waved at the top of the flagpole.", + "pos": "noun", + "word_frequency": 8356 + }, + { + "word": "audaz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "audacious;bold", + "example_sentence_native": "Fue una decisión audaz pero necesaria.", + "example_sentence_english": "It was an audacious but necessary decision.", + "pos": "adjective", + "word_frequency": 8357 + }, + { + "word": "avena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oats;oatmeal", + "example_sentence_native": "Desayuno avena con frutas cada mañana.", + "example_sentence_english": "I eat oatmeal with fruit every morning.", + "pos": "noun", + "word_frequency": 8358 + }, + { + "word": "bachiller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school graduate", + "example_sentence_native": "Obtuvo su título de bachiller el año pasado.", + "example_sentence_english": "He obtained his high school diploma last year.", + "pos": "noun", + "word_frequency": 8359 + }, + { + "word": "bilateral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bilateral", + "example_sentence_native": "Firmaron un acuerdo bilateral.", + "example_sentence_english": "They signed a bilateral agreement.", + "pos": "adjective", + "word_frequency": 8363 + }, + { + "word": "blando", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soft;mild", + "example_sentence_native": "El pan está muy blando.", + "example_sentence_english": "The bread is very soft.", + "pos": "adjective", + "word_frequency": 8365 + }, + { + "word": "bol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowl", + "example_sentence_native": "Sirve la sopa en un bol grande.", + "example_sentence_english": "Serve the soup in a large bowl.", + "pos": "noun", + "word_frequency": 8366 + }, + { + "word": "boleta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ticket;ballot;receipt", + "example_sentence_native": "Por favor, guarde su boleta de compra.", + "example_sentence_english": "Please keep your purchase receipt.", + "pos": "noun", + "word_frequency": 8367 + }, + { + "word": "bonus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bonus", + "example_sentence_native": "Recibió un bonus por su buen desempeño.", + "example_sentence_english": "He received a bonus for his good performance.", + "pos": "noun", + "word_frequency": 8368 + }, + { + "word": "cachorro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puppy;cub", + "example_sentence_native": "Mi perro tuvo cinco cachorros.", + "example_sentence_english": "My dog had five puppies.", + "pos": "noun", + "word_frequency": 8369 + }, + { + "word": "camarero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "waiter", + "example_sentence_native": "El camarero nos trajo la cuenta.", + "example_sentence_english": "The waiter brought us the bill.", + "pos": "noun", + "word_frequency": 8370 + }, + { + "word": "chaleco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vest;waistcoat", + "example_sentence_native": "Llevaba un chaleco de lana.", + "example_sentence_english": "He was wearing a wool vest.", + "pos": "noun", + "word_frequency": 8372 + }, + { + "word": "clérigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cleric;clergyman", + "example_sentence_native": "El clérigo ofició la ceremonia.", + "example_sentence_english": "The cleric officiated the ceremony.", + "pos": "noun", + "word_frequency": 8375 + }, + { + "word": "cocinero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cook;chef", + "example_sentence_native": "Mi padre es un excelente cocinero.", + "example_sentence_english": "My father is an excellent cook.", + "pos": "noun", + "word_frequency": 8376 + }, + { + "word": "colorido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colorfulness;vibrancy", + "example_sentence_native": "El colorido de la fiesta era impresionante.", + "example_sentence_english": "The colorfulness of the party was impressive.", + "pos": "noun", + "word_frequency": 8378 + }, + { + "word": "compresión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compression;understanding", + "example_sentence_native": "La compresión de datos es importante para el almacenamiento.", + "example_sentence_english": "Data compression is important for storage.", + "pos": "noun", + "word_frequency": 8379 + }, + { + "word": "consecuente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistent;consequent", + "example_sentence_native": "Sus acciones no fueron consecuentes con sus palabras.", + "example_sentence_english": "His actions were not consistent with his words.", + "pos": "adjective", + "word_frequency": 8380 + }, + { + "word": "copyright", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "copyright", + "example_sentence_native": "Esta obra está protegida por copyright.", + "example_sentence_english": "This work is protected by copyright.", + "pos": "noun", + "word_frequency": 8381 + }, + { + "word": "corporation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corporation", + "example_sentence_native": "Es una gran corporación multinacional.", + "example_sentence_english": "It is a large multinational corporation.", + "pos": "noun", + "word_frequency": 8382 + }, + { + "word": "crespo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curly;frizzy", + "example_sentence_native": "Tiene el pelo muy crespo.", + "example_sentence_english": "She has very curly hair.", + "pos": "adjective", + "word_frequency": 8383 + }, + { + "word": "declive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decline;slope", + "example_sentence_native": "La economía está en declive.", + "example_sentence_english": "The economy is in decline.", + "pos": "noun", + "word_frequency": 8387 + }, + { + "word": "deducir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deduce;to deduct", + "example_sentence_native": "Pudimos deducir la verdad de los hechos.", + "example_sentence_english": "We were able to deduce the truth from the facts.", + "pos": "verb", + "word_frequency": 8388 + }, + { + "word": "delicia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delight;pleasure", + "example_sentence_native": "El postre fue una delicia.", + "example_sentence_english": "The dessert was a delight.", + "pos": "noun", + "word_frequency": 8389 + }, + { + "word": "descomposición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decomposition;breakdown", + "example_sentence_native": "La descomposición de la materia orgánica es un proceso natural.", + "example_sentence_english": "The decomposition of organic matter is a natural process.", + "pos": "noun", + "word_frequency": 8390 + }, + { + "word": "devuelto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "returned", + "example_sentence_native": "El libro fue devuelto a la biblioteca.", + "example_sentence_english": "The book was returned to the library.", + "pos": "adjective", + "word_frequency": 8391 + }, + { + "word": "diesel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diesel", + "example_sentence_native": "Mi coche usa motor diésel.", + "example_sentence_english": "My car uses a diesel engine.", + "pos": "noun", + "word_frequency": 8392 + }, + { + "word": "distintivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinctive;characteristic", + "example_sentence_native": "Tiene un estilo muy distintivo.", + "example_sentence_english": "He has a very distinctive style.", + "pos": "adjective", + "word_frequency": 8393 + }, + { + "word": "educador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educator;teacher", + "example_sentence_native": "Es un educador con mucha experiencia.", + "example_sentence_english": "He is an educator with a lot of experience.", + "pos": "noun", + "word_frequency": 8394 + }, + { + "word": "empoderamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "empowerment", + "example_sentence_native": "El empoderamiento de las mujeres es crucial para la sociedad.", + "example_sentence_english": "Women's empowerment is crucial for society.", + "pos": "noun", + "word_frequency": 8395 + }, + { + "word": "encaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lace;fit (as in 'to fit')", + "example_sentence_native": "El vestido tenía detalles de encaje.", + "example_sentence_english": "The dress had lace details.", + "pos": "noun", + "word_frequency": 8396 + }, + { + "word": "enfrentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confronted;faced;opposing", + "example_sentence_native": "Los dos equipos estaban enfrentados en la final.", + "example_sentence_english": "The two teams were opposing each other in the final.", + "pos": "adjective", + "word_frequency": 8397 + }, + { + "word": "espesor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thickness", + "example_sentence_native": "El espesor de la pared es de 20 centímetros.", + "example_sentence_english": "The thickness of the wall is 20 centimeters.", + "pos": "noun", + "word_frequency": 8398 + }, + { + "word": "exiliado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exiled", + "example_sentence_native": "Muchos artistas vivieron exiliados durante la dictadura.", + "example_sentence_english": "Many artists lived exiled during the dictatorship.", + "pos": "adjective", + "word_frequency": 8399 + }, + { + "word": "festivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festive;holiday", + "example_sentence_native": "Mañana es un día festivo, así que no trabajamos.", + "example_sentence_english": "Tomorrow is a holiday, so we don't work.", + "pos": "adjective", + "word_frequency": 8400 + }, + { + "word": "gitano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gypsy;Romani person", + "example_sentence_native": "La cultura gitana es muy rica en música y baile.", + "example_sentence_english": "Romani culture is very rich in music and dance.", + "pos": "noun", + "word_frequency": 8404 + }, + { + "word": "goleador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goal scorer;top scorer", + "example_sentence_native": "El delantero es el máximo goleador de la liga.", + "example_sentence_english": "The forward is the top scorer in the league.", + "pos": "noun", + "word_frequency": 8405 + }, + { + "word": "gorro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hat;cap", + "example_sentence_native": "Llevaba un gorro de lana para protegerse del frío.", + "example_sentence_english": "He was wearing a wool hat to protect himself from the cold.", + "pos": "noun", + "word_frequency": 8406 + }, + { + "word": "guarda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guard;keeper", + "example_sentence_native": "El guarda de seguridad nos abrió la puerta.", + "example_sentence_english": "The security guard opened the door for us.", + "pos": "noun", + "word_frequency": 8407 + }, + { + "word": "guarnición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garnish;side dish;garrison", + "example_sentence_native": "El bistec se sirve con una guarnición de patatas.", + "example_sentence_english": "The steak is served with a side dish of potatoes.", + "pos": "noun", + "word_frequency": 8408 + }, + { + "word": "gym", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gym", + "example_sentence_native": "Voy al gym tres veces por semana.", + "example_sentence_english": "I go to the gym three times a week.", + "pos": "noun", + "word_frequency": 8409 + }, + { + "word": "hacha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "axe", + "example_sentence_native": "Cortó la leña con un hacha afilada.", + "example_sentence_english": "He cut the firewood with a sharp axe.", + "pos": "noun", + "word_frequency": 8410 + }, + { + "word": "hazaña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feat;exploit", + "example_sentence_native": "Completar la maratón fue una gran hazaña para él.", + "example_sentence_english": "Completing the marathon was a great feat for him.", + "pos": "noun", + "word_frequency": 8411 + }, + { + "word": "hit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hit (song;success)", + "example_sentence_native": "Esa canción fue un gran hit el verano pasado.", + "example_sentence_english": "That song was a big hit last summer.", + "pos": "noun", + "word_frequency": 8412 + }, + { + "word": "hospitalidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitality", + "example_sentence_native": "Nos sorprendió la calidez de su hospitalidad.", + "example_sentence_english": "The warmth of their hospitality surprised us.", + "pos": "noun", + "word_frequency": 8413 + }, + { + "word": "hostia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "host (communion wafer);damn! (expletive)", + "example_sentence_native": "En la misa, el sacerdote reparte la hostia.", + "example_sentence_english": "In mass, the priest distributes the host.", + "pos": "noun", + "word_frequency": 8414 + }, + { + "word": "humanista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanist", + "example_sentence_native": "Es un enfoque muy humanista de la educación.", + "example_sentence_english": "It's a very humanist approach to education.", + "pos": "adjective", + "word_frequency": 8415 + }, + { + "word": "hundido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sunken;submerged;depressed", + "example_sentence_native": "El barco hundido fue descubierto por buzos.", + "example_sentence_english": "The sunken ship was discovered by divers.", + "pos": "adjective", + "word_frequency": 8416 + }, + { + "word": "ilustrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illustrate;to enlighten", + "example_sentence_native": "El artista va a ilustrar el nuevo libro infantil.", + "example_sentence_english": "The artist is going to illustrate the new children's book.", + "pos": "verb", + "word_frequency": 8417 + }, + { + "word": "incrementado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased;augmented", + "example_sentence_native": "El número de visitantes se ha incrementado este año.", + "example_sentence_english": "The number of visitors has increased this year.", + "pos": "adjective", + "word_frequency": 8418 + }, + { + "word": "incursión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incursion;raid;foray", + "example_sentence_native": "Realizaron una incursión sorpresa en territorio enemigo.", + "example_sentence_english": "They carried out a surprise incursion into enemy territory.", + "pos": "noun", + "word_frequency": 8419 + }, + { + "word": "independentista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence-seeking;separatist", + "example_sentence_native": "El partido independentista ganó las elecciones regionales.", + "example_sentence_english": "The independence-seeking party won the regional elections.", + "pos": "adjective", + "word_frequency": 8420 + }, + { + "word": "inodoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "odorless;toilet (noun)", + "example_sentence_native": "El nuevo producto de limpieza es inodoro.", + "example_sentence_english": "The new cleaning product is odorless.", + "pos": "adjective", + "word_frequency": 8421 + }, + { + "word": "invasor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invader", + "example_sentence_native": "Las tropas repelieron al invasor.", + "example_sentence_english": "The troops repelled the invader.", + "pos": "noun", + "word_frequency": 8422 + }, + { + "word": "invernadero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greenhouse", + "example_sentence_native": "Cultivan tomates en el invernadero durante todo el año.", + "example_sentence_english": "They grow tomatoes in the greenhouse all year round.", + "pos": "noun", + "word_frequency": 8423 + }, + { + "word": "latitud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "latitude", + "example_sentence_native": "La ciudad se encuentra a una latitud de 40 grados norte.", + "example_sentence_english": "The city is located at a latitude of 40 degrees north.", + "pos": "noun", + "word_frequency": 8427 + }, + { + "word": "lino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "linen;flax", + "example_sentence_native": "La camisa está hecha de lino puro.", + "example_sentence_english": "The shirt is made of pure linen.", + "pos": "noun", + "word_frequency": 8429 + }, + { + "word": "luminoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luminous;bright", + "example_sentence_native": "La habitación es muy luminosa gracias a las grandes ventanas.", + "example_sentence_english": "The room is very bright thanks to the large windows.", + "pos": "adjective", + "word_frequency": 8432 + }, + { + "word": "matrimonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matrimonial;marital", + "example_sentence_native": "Tienen problemas matrimoniales.", + "example_sentence_english": "They have marital problems.", + "pos": "adjective", + "word_frequency": 8435 + }, + { + "word": "membrana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "membrane", + "example_sentence_native": "La célula está rodeada por una membrana protectora.", + "example_sentence_english": "The cell is surrounded by a protective membrane.", + "pos": "noun", + "word_frequency": 8436 + }, + { + "word": "mensajería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messaging;courier service", + "example_sentence_native": "Utilizo una aplicación de mensajería para comunicarme.", + "example_sentence_english": "I use a messaging app to communicate.", + "pos": "noun", + "word_frequency": 8437 + }, + { + "word": "obediencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obedience", + "example_sentence_native": "La obediencia es importante en el ejército.", + "example_sentence_english": "Obedience is important in the army.", + "pos": "noun", + "word_frequency": 8445 + }, + { + "word": "pantano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swamp", + "example_sentence_native": "El cocodrilo vive en el pantano.", + "example_sentence_english": "The crocodile lives in the swamp.", + "pos": "noun", + "word_frequency": 8447 + }, + { + "word": "parcela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plot (of land)", + "example_sentence_native": "Compraron una parcela para construir su casa.", + "example_sentence_english": "They bought a plot of land to build their house.", + "pos": "noun", + "word_frequency": 8448 + }, + { + "word": "peatón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pedestrian", + "example_sentence_native": "El peatón cruzó la calle con cuidado.", + "example_sentence_english": "The pedestrian crossed the street carefully.", + "pos": "noun", + "word_frequency": 8450 + }, + { + "word": "periferia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "periphery", + "example_sentence_native": "Vive en la periferia de la ciudad.", + "example_sentence_english": "He lives on the outskirts of the city.", + "pos": "noun", + "word_frequency": 8451 + }, + { + "word": "periódicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "periodically", + "example_sentence_native": "Debes revisar el coche periódicamente.", + "example_sentence_english": "You should check the car periodically.", + "pos": "adverb", + "word_frequency": 8452 + }, + { + "word": "proclamar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proclaim", + "example_sentence_native": "El rey va a proclamar una nueva ley.", + "example_sentence_english": "The king is going to proclaim a new law.", + "pos": "verb", + "word_frequency": 8453 + }, + { + "word": "profesionalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professionally", + "example_sentence_native": "Se comporta profesionalmente en el trabajo.", + "example_sentence_english": "He behaves professionally at work.", + "pos": "adverb", + "word_frequency": 8454 + }, + { + "word": "prominente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prominent", + "example_sentence_native": "Es una figura prominente en la política.", + "example_sentence_english": "He is a prominent figure in politics.", + "pos": "adjective", + "word_frequency": 8455 + }, + { + "word": "pulmonar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulmonary", + "example_sentence_native": "Tiene una enfermedad pulmonar.", + "example_sentence_english": "He has a pulmonary disease.", + "pos": "adjective", + "word_frequency": 8456 + }, + { + "word": "quilombo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mess;chaos (slang)", + "example_sentence_native": "¡Qué quilombo se armó en la fiesta!", + "example_sentence_english": "What a mess was made at the party!", + "pos": "noun", + "word_frequency": 8457 + }, + { + "word": "recordatorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reminder", + "example_sentence_native": "Pon un recordatorio en tu teléfono.", + "example_sentence_english": "Put a reminder on your phone.", + "pos": "noun", + "word_frequency": 8458 + }, + { + "word": "renal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renal", + "example_sentence_native": "Sufre de insuficiencia renal.", + "example_sentence_english": "He suffers from renal failure.", + "pos": "adjective", + "word_frequency": 8459 + }, + { + "word": "reorganización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reorganization", + "example_sentence_native": "La empresa anunció una reorganización.", + "example_sentence_english": "The company announced a reorganization.", + "pos": "noun", + "word_frequency": 8460 + }, + { + "word": "repuesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spare part", + "example_sentence_native": "Necesito un repuesto para el coche.", + "example_sentence_english": "I need a spare part for the car.", + "pos": "noun", + "word_frequency": 8461 + }, + { + "word": "rienda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rein", + "example_sentence_native": "El jinete sujetó las riendas del caballo.", + "example_sentence_english": "The rider held the horse's reins.", + "pos": "noun", + "word_frequency": 8463 + }, + { + "word": "romanticismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "romanticism", + "example_sentence_native": "El romanticismo fue un movimiento artístico.", + "example_sentence_english": "Romanticism was an artistic movement.", + "pos": "noun", + "word_frequency": 8464 + }, + { + "word": "sabana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savanna", + "example_sentence_native": "Los leones viven en la sabana africana.", + "example_sentence_english": "Lions live in the African savanna.", + "pos": "noun", + "word_frequency": 8466 + }, + { + "word": "sabroso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tasty", + "example_sentence_native": "La comida estaba muy sabrosa.", + "example_sentence_english": "The food was very tasty.", + "pos": "adjective", + "word_frequency": 8467 + }, + { + "word": "secuestrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kidnap", + "example_sentence_native": "La policía intentó evitar el secuestro.", + "example_sentence_english": "The police tried to prevent the kidnapping.", + "pos": "verb", + "word_frequency": 8471 + }, + { + "word": "serbio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Serbian", + "example_sentence_native": "Es un jugador de baloncesto serbio.", + "example_sentence_english": "He is a Serbian basketball player.", + "pos": "adjective", + "word_frequency": 8472 + }, + { + "word": "sirena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mermaid;siren", + "example_sentence_native": "La sirena del coche de policía sonó fuerte.", + "example_sentence_english": "The police car's siren blared loudly.", + "pos": "noun", + "word_frequency": 8473 + }, + { + "word": "sucesivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successive", + "example_sentence_native": "Ganaron tres partidos sucesivos.", + "example_sentence_english": "They won three successive games.", + "pos": "adjective", + "word_frequency": 8475 + }, + { + "word": "suegro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "father-in-law", + "example_sentence_native": "Mi suegro viene a cenar esta noche.", + "example_sentence_english": "My father-in-law is coming for dinner tonight.", + "pos": "noun", + "word_frequency": 8476 + }, + { + "word": "telón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curtain (theater)", + "example_sentence_native": "El telón subió al inicio de la obra.", + "example_sentence_english": "The curtain rose at the beginning of the play.", + "pos": "noun", + "word_frequency": 8478 + }, + { + "word": "terminología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terminology", + "example_sentence_native": "La terminología médica es compleja.", + "example_sentence_english": "Medical terminology is complex.", + "pos": "noun", + "word_frequency": 8479 + }, + { + "word": "tinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "red (wine)", + "example_sentence_native": "Me gusta el vino tinto.", + "example_sentence_english": "I like red wine.", + "pos": "adjective", + "word_frequency": 8480 + }, + { + "word": "titularidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ownership;title", + "example_sentence_native": "La titularidad del inmueble fue transferida.", + "example_sentence_english": "The ownership of the property was transferred.", + "pos": "noun", + "word_frequency": 8481 + }, + { + "word": "tremendamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tremendously;enormously", + "example_sentence_native": "Estaba tremendamente cansado después del viaje.", + "example_sentence_english": "He was tremendously tired after the trip.", + "pos": "adverb", + "word_frequency": 8483 + }, + { + "word": "vacunación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vaccination", + "example_sentence_native": "La campaña de vacunación ha sido un éxito.", + "example_sentence_english": "The vaccination campaign has been a success.", + "pos": "noun", + "word_frequency": 8485 + }, + { + "word": "veterinaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veterinary clinic;female veterinarian", + "example_sentence_native": "Llevé a mi perro a la veterinaria.", + "example_sentence_english": "I took my dog to the vet.", + "pos": "noun", + "word_frequency": 8486 + }, + { + "word": "étnico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethnic", + "example_sentence_native": "La ciudad tiene una gran diversidad étnica.", + "example_sentence_english": "The city has great ethnic diversity.", + "pos": "adjective", + "word_frequency": 8492 + }, + { + "word": "útero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uterus", + "example_sentence_native": "El útero es un órgano reproductor femenino.", + "example_sentence_english": "The uterus is a female reproductive organ.", + "pos": "noun", + "word_frequency": 8493 + }, + { + "word": "activismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activism", + "example_sentence_native": "El activismo juvenil está en auge.", + "example_sentence_english": "Youth activism is on the rise.", + "pos": "noun", + "word_frequency": 8494 + }, + { + "word": "acuario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aquarium;fish tank", + "example_sentence_native": "Fuimos al acuario y vimos muchos peces.", + "example_sentence_english": "We went to the aquarium and saw many fish.", + "pos": "noun", + "word_frequency": 8495 + }, + { + "word": "adjudicación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "award;adjudication;granting", + "example_sentence_native": "La adjudicación del contrato se hará pública mañana.", + "example_sentence_english": "The awarding of the contract will be made public tomorrow.", + "pos": "noun", + "word_frequency": 8496 + }, + { + "word": "afinidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affinity;kinship", + "example_sentence_native": "Sentimos una gran afinidad por la música clásica.", + "example_sentence_english": "We feel a great affinity for classical music.", + "pos": "noun", + "word_frequency": 8497 + }, + { + "word": "agonía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agonía;death throes", + "example_sentence_native": "El paciente estaba en agonía.", + "example_sentence_english": "The patient was in agony.", + "pos": "noun", + "word_frequency": 8500 + }, + { + "word": "ampliado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlarged;extended;expanded", + "example_sentence_native": "Hemos publicado una edición ampliada del libro.", + "example_sentence_english": "We have published an enlarged edition of the book.", + "pos": "adjective", + "word_frequency": 8502 + }, + { + "word": "anarquía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchy", + "example_sentence_native": "La caída del gobierno llevó a la anarquía.", + "example_sentence_english": "The fall of the government led to anarchy.", + "pos": "noun", + "word_frequency": 8503 + }, + { + "word": "arancel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tariff;duty", + "example_sentence_native": "Se impuso un nuevo arancel a las importaciones.", + "example_sentence_english": "A new tariff was imposed on imports.", + "pos": "noun", + "word_frequency": 8504 + }, + { + "word": "arbitrario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitrary", + "example_sentence_native": "La decisión fue completamente arbitraria.", + "example_sentence_english": "The decision was completely arbitrary.", + "pos": "adjective", + "word_frequency": 8505 + }, + { + "word": "aro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoop;ring;rim", + "example_sentence_native": "El aro de baloncesto estaba roto.", + "example_sentence_english": "The basketball hoop was broken.", + "pos": "noun", + "word_frequency": 8506 + }, + { + "word": "arterial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arterial", + "example_sentence_native": "La presión arterial es importante para la salud.", + "example_sentence_english": "Arterial pressure is important for health.", + "pos": "adjective", + "word_frequency": 8507 + }, + { + "word": "asegurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insured;secured;guaranteed", + "example_sentence_native": "El éxito del proyecto está asegurado.", + "example_sentence_english": "The success of the project is guaranteed.", + "pos": "adjective", + "word_frequency": 8509 + }, + { + "word": "aterrizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to land", + "example_sentence_native": "El avión aterrizó sin problemas.", + "example_sentence_english": "The plane landed without problems.", + "pos": "verb", + "word_frequency": 8510 + }, + { + "word": "audición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audition;hearing", + "example_sentence_native": "Tuvo una audición para el papel principal.", + "example_sentence_english": "She had an audition for the main role.", + "pos": "noun", + "word_frequency": 8511 + }, + { + "word": "autodeterminación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-determination", + "example_sentence_native": "El pueblo lucha por su autodeterminación.", + "example_sentence_english": "The people fight for their self-determination.", + "pos": "noun", + "word_frequency": 8512 + }, + { + "word": "bancarrota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy", + "example_sentence_native": "La empresa se declaró en bancarrota.", + "example_sentence_english": "The company declared bankruptcy.", + "pos": "noun", + "word_frequency": 8513 + }, + { + "word": "banquero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banker", + "example_sentence_native": "Mi padre es banquero.", + "example_sentence_english": "My father is a banker.", + "pos": "noun", + "word_frequency": 8514 + }, + { + "word": "busto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bust (sculpture);torso", + "example_sentence_native": "Vimos un busto de Cervantes en el museo.", + "example_sentence_english": "We saw a bust of Cervantes in the museum.", + "pos": "noun", + "word_frequency": 8515 + }, + { + "word": "cacique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chief;tribal leader;political boss", + "example_sentence_native": "El cacique dirigía a su tribu con sabiduría.", + "example_sentence_english": "The chief led his tribe with wisdom.", + "pos": "noun", + "word_frequency": 8516 + }, + { + "word": "cartucho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartridge (ink;bullet)", + "example_sentence_native": "Necesito un cartucho de tinta nuevo para la impresora.", + "example_sentence_english": "I need a new ink cartridge for the printer.", + "pos": "noun", + "word_frequency": 8518 + }, + { + "word": "caucho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubber", + "example_sentence_native": "Los neumáticos están hechos de caucho.", + "example_sentence_english": "Tires are made of rubber.", + "pos": "noun", + "word_frequency": 8519 + }, + { + "word": "caudillo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leader;chieftain", + "example_sentence_native": "El caudillo gobernó con mano de hierro.", + "example_sentence_english": "The leader ruled with an iron fist.", + "pos": "noun", + "word_frequency": 8520 + }, + { + "word": "chatarra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scrap;junk", + "example_sentence_native": "Vendimos la chatarra al reciclador.", + "example_sentence_english": "We sold the scrap to the recycler.", + "pos": "noun", + "word_frequency": 8521 + }, + { + "word": "chicle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chewing gum", + "example_sentence_native": "No me gusta el sabor de este chicle.", + "example_sentence_english": "I don't like the taste of this chewing gum.", + "pos": "noun", + "word_frequency": 8522 + }, + { + "word": "cohesión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohesion", + "example_sentence_native": "La cohesión del equipo es fundamental para el éxito.", + "example_sentence_english": "Team cohesion is fundamental for success.", + "pos": "noun", + "word_frequency": 8523 + }, + { + "word": "comediante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comedian", + "example_sentence_native": "El comediante hizo reír a toda la audiencia.", + "example_sentence_english": "The comedian made the entire audience laugh.", + "pos": "noun", + "word_frequency": 8524 + }, + { + "word": "complementario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complementary", + "example_sentence_native": "Sus habilidades son complementarias.", + "example_sentence_english": "Their skills are complementary.", + "pos": "adjective", + "word_frequency": 8526 + }, + { + "word": "conducto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conduit;duct", + "example_sentence_native": "El agua fluye por el conducto.", + "example_sentence_english": "The water flows through the conduit.", + "pos": "noun", + "word_frequency": 8527 + }, + { + "word": "covid", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "COVID", + "example_sentence_native": "Muchas personas se enfermaron de covid.", + "example_sentence_english": "Many people got sick with COVID.", + "pos": "noun", + "word_frequency": 8528 + }, + { + "word": "credencial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credential;ID", + "example_sentence_native": "Necesitas una credencial para entrar al edificio.", + "example_sentence_english": "You need an ID to enter the building.", + "pos": "noun", + "word_frequency": 8529 + }, + { + "word": "cronista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronicler;reporter", + "example_sentence_native": "El cronista escribió sobre los eventos históricos.", + "example_sentence_english": "The chronicler wrote about the historical events.", + "pos": "noun", + "word_frequency": 8530 + }, + { + "word": "cuarteto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quartet", + "example_sentence_native": "El cuarteto de cuerdas tocó una hermosa melodía.", + "example_sentence_english": "The string quartet played a beautiful melody.", + "pos": "noun", + "word_frequency": 8531 + }, + { + "word": "damasco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damask (fabric);apricot (fruit)", + "example_sentence_native": "El vestido estaba hecho de seda de damasco.", + "example_sentence_english": "The dress was made of damask silk.", + "pos": "noun", + "word_frequency": 8532 + }, + { + "word": "demandado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanded;in demand", + "example_sentence_native": "Ese producto es muy demandado en el mercado.", + "example_sentence_english": "That product is highly demanded in the market.", + "pos": "adjective", + "word_frequency": 8533 + }, + { + "word": "deseable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desirable", + "example_sentence_native": "Es deseable que llegues a tiempo.", + "example_sentence_english": "It is desirable that you arrive on time.", + "pos": "adjective", + "word_frequency": 8534 + }, + { + "word": "difundido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widespread;diffused", + "example_sentence_native": "La noticia se ha difundido rápidamente.", + "example_sentence_english": "The news has spread rapidly.", + "pos": "adjective", + "word_frequency": 8535 + }, + { + "word": "discapacitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disabled", + "example_sentence_native": "La rampa es para personas discapacitadas.", + "example_sentence_english": "The ramp is for disabled people.", + "pos": "adjective", + "word_frequency": 8536 + }, + { + "word": "distracción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distraction", + "example_sentence_native": "El ruido fue una gran distracción.", + "example_sentence_english": "The noise was a big distraction.", + "pos": "noun", + "word_frequency": 8537 + }, + { + "word": "eliminado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eliminated;removed", + "example_sentence_native": "El equipo fue eliminado del torneo.", + "example_sentence_english": "The team was eliminated from the tournament.", + "pos": "adjective", + "word_frequency": 8539 + }, + { + "word": "emigrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to emigrate", + "example_sentence_native": "Muchas personas deciden emigrar en busca de mejores oportunidades.", + "example_sentence_english": "Many people decide to emigrate in search of better opportunities.", + "pos": "verb", + "word_frequency": 8541 + }, + { + "word": "erección", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erection;construction", + "example_sentence_native": "La erección del nuevo edificio tardó dos años.", + "example_sentence_english": "The erection of the new building took two years.", + "pos": "noun", + "word_frequency": 8542 + }, + { + "word": "escoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scum;dross;slag", + "example_sentence_native": "La escoria se separó del metal fundido.", + "example_sentence_english": "The slag separated from the molten metal.", + "pos": "noun", + "word_frequency": 8543 + }, + { + "word": "esmeralda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emerald", + "example_sentence_native": "Llevaba un collar con una esmeralda brillante.", + "example_sentence_english": "She wore a necklace with a sparkling emerald.", + "pos": "noun", + "word_frequency": 8544 + }, + { + "word": "excluido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excluded", + "example_sentence_native": "Se sintió excluido del grupo.", + "example_sentence_english": "He felt excluded from the group.", + "pos": "adjective", + "word_frequency": 8545 + }, + { + "word": "experimentación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experimentation", + "example_sentence_native": "La experimentación es clave en la ciencia.", + "example_sentence_english": "Experimentation is key in science.", + "pos": "noun", + "word_frequency": 8546 + }, + { + "word": "extorsión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extortion", + "example_sentence_native": "Fue acusado de extorsión.", + "example_sentence_english": "He was accused of extortion.", + "pos": "noun", + "word_frequency": 8547 + }, + { + "word": "fresa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "strawberry", + "example_sentence_native": "Me encantan las fresas con crema.", + "example_sentence_english": "I love strawberries with cream.", + "pos": "noun", + "word_frequency": 8550 + }, + { + "word": "herrero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blacksmith", + "example_sentence_native": "El herrero forjó la espada.", + "example_sentence_english": "The blacksmith forged the sword.", + "pos": "noun", + "word_frequency": 8553 + }, + { + "word": "ilícito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illicit;unlawful", + "example_sentence_native": "Cometió un acto ilícito.", + "example_sentence_english": "He committed an illicit act.", + "pos": "adjective", + "word_frequency": 8556 + }, + { + "word": "impedido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impeded;hindered", + "example_sentence_native": "El tráfico estaba impedido por el accidente.", + "example_sentence_english": "Traffic was impeded by the accident.", + "pos": "adjective", + "word_frequency": 8557 + }, + { + "word": "importado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imported", + "example_sentence_native": "Este coche es importado de Alemania.", + "example_sentence_english": "This car is imported from Germany.", + "pos": "adjective", + "word_frequency": 8558 + }, + { + "word": "intervenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervened;seized;operated on", + "example_sentence_native": "El teléfono fue intervenido por la policía.", + "example_sentence_english": "The phone was intercepted by the police.", + "pos": "adjective", + "word_frequency": 8559 + }, + { + "word": "intestino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intestine", + "example_sentence_native": "El intestino delgado es donde se absorben la mayoría de los nutrientes.", + "example_sentence_english": "The small intestine is where most nutrients are absorbed.", + "pos": "noun", + "word_frequency": 8560 + }, + { + "word": "irrelevante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irrelevant", + "example_sentence_native": "Su opinión es completamente irrelevante para el caso.", + "example_sentence_english": "His opinion is completely irrelevant to the case.", + "pos": "adjective", + "word_frequency": 8561 + }, + { + "word": "irónicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ironically", + "example_sentence_native": "Irónicamente, el día que decidió dejar de fumar, ganó la lotería.", + "example_sentence_english": "Ironically, the day he decided to quit smoking, he won the lottery.", + "pos": "adverb", + "word_frequency": 8562 + }, + { + "word": "llanta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tire;rim", + "example_sentence_native": "La llanta del coche está desinflada.", + "example_sentence_english": "The car tire is flat.", + "pos": "noun", + "word_frequency": 8567 + }, + { + "word": "madrileño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Madrid;Madrilenian", + "example_sentence_native": "Es un restaurante madrileño muy auténtico.", + "example_sentence_english": "It's a very authentic Madrilenian restaurant.", + "pos": "adjective", + "word_frequency": 8568 + }, + { + "word": "mayordomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butler", + "example_sentence_native": "El mayordomo abrió la puerta con una reverencia.", + "example_sentence_english": "The butler opened the door with a bow.", + "pos": "noun", + "word_frequency": 8571 + }, + { + "word": "metabolismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metabolism", + "example_sentence_native": "El metabolismo es el proceso por el cual el cuerpo convierte los alimentos en energía.", + "example_sentence_english": "Metabolism is the process by which the body converts food into energy.", + "pos": "noun", + "word_frequency": 8572 + }, + { + "word": "mostrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counter", + "example_sentence_native": "Por favor, espere en el mostrador para ser atendido.", + "example_sentence_english": "Please wait at the counter to be served.", + "pos": "noun", + "word_frequency": 8574 + }, + { + "word": "objeción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objection", + "example_sentence_native": "El abogado presentó una objeción a la pregunta.", + "example_sentence_english": "The lawyer raised an objection to the question.", + "pos": "noun", + "word_frequency": 8576 + }, + { + "word": "omega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omega", + "example_sentence_native": "Omega es la última letra del alfabeto griego.", + "example_sentence_english": "Omega is the last letter of the Greek alphabet.", + "pos": "noun", + "word_frequency": 8577 + }, + { + "word": "omisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omission", + "example_sentence_native": "La omisión de ese detalle fue crucial.", + "example_sentence_english": "The omission of that detail was crucial.", + "pos": "noun", + "word_frequency": 8578 + }, + { + "word": "operativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operational;operative", + "example_sentence_native": "La nueva estrategia es completamente operativa desde hoy.", + "example_sentence_english": "The new strategy is fully operational from today.", + "pos": "adjective", + "word_frequency": 8579 + }, + { + "word": "panadería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bakery", + "example_sentence_native": "Voy a la panadería a comprar pan fresco.", + "example_sentence_english": "I'm going to the bakery to buy fresh bread.", + "pos": "noun", + "word_frequency": 8581 + }, + { + "word": "paraje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "place;spot;remote area", + "example_sentence_native": "Encontramos un hermoso paraje para acampar junto al río.", + "example_sentence_english": "We found a beautiful spot to camp by the river.", + "pos": "noun", + "word_frequency": 8582 + }, + { + "word": "parálisis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paralysis", + "example_sentence_native": "Sufrió una parálisis temporal después del accidente.", + "example_sentence_english": "He suffered temporary paralysis after the accident.", + "pos": "noun", + "word_frequency": 8583 + }, + { + "word": "patología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathology", + "example_sentence_native": "La patología es el estudio de las enfermedades.", + "example_sentence_english": "Pathology is the study of diseases.", + "pos": "noun", + "word_frequency": 8584 + }, + { + "word": "pegado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stuck;glued;attached", + "example_sentence_native": "El cartel está pegado a la pared.", + "example_sentence_english": "The poster is stuck to the wall.", + "pos": "adjective", + "word_frequency": 8585 + }, + { + "word": "picada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snack;chopped meat;dirt road", + "example_sentence_native": "Preparamos una picada con queso y embutidos para la cena.", + "example_sentence_english": "We prepared a snack with cheese and cold cuts for dinner.", + "pos": "noun", + "word_frequency": 8586 + }, + { + "word": "porro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint (marijuana cigarette);dunce (slang;Spain)", + "example_sentence_native": "En algunos países, 'porro' se refiere a un cigarrillo de marihuana.", + "example_sentence_english": "In some countries, 'porro' refers to a marijuana cigarette.", + "pos": "noun", + "word_frequency": 8588 + }, + { + "word": "predominante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predominant", + "example_sentence_native": "El color predominante en la pintura es el azul.", + "example_sentence_english": "The predominant color in the painting is blue.", + "pos": "adjective", + "word_frequency": 8589 + }, + { + "word": "presenciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to witness;to be present at", + "example_sentence_native": "Pude presenciar el evento desde la primera fila.", + "example_sentence_english": "I was able to witness the event from the front row.", + "pos": "verb", + "word_frequency": 8590 + }, + { + "word": "presunción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumption;assumption;conceit", + "example_sentence_native": "Existe una presunción de inocencia hasta que se demuestre lo contrario.", + "example_sentence_english": "There is a presumption of innocence until proven otherwise.", + "pos": "noun", + "word_frequency": 8591 + }, + { + "word": "prometido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promised;engaged (as in engaged to be married)", + "example_sentence_native": "El dinero prometido nunca llegó.", + "example_sentence_english": "The promised money never arrived.", + "pos": "adjective", + "word_frequency": 8593 + }, + { + "word": "prórroga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;overtime", + "example_sentence_native": "El partido se fue a la prórroga.", + "example_sentence_english": "The game went into overtime.", + "pos": "noun", + "word_frequency": 8594 + }, + { + "word": "random", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "random", + "example_sentence_native": "Fue una elección completamente random.", + "example_sentence_english": "It was a completely random choice.", + "pos": "adjective", + "word_frequency": 8596 + }, + { + "word": "refresco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soft drink;refreshment", + "example_sentence_native": "¿Quieres un refresco con tu comida?", + "example_sentence_english": "Do you want a soft drink with your meal?", + "pos": "noun", + "word_frequency": 8597 + }, + { + "word": "relajado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxed", + "example_sentence_native": "Después de las vacaciones, me siento muy relajado.", + "example_sentence_english": "After the holidays, I feel very relaxed.", + "pos": "adjective", + "word_frequency": 8599 + }, + { + "word": "remix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remix", + "example_sentence_native": "Hizo un remix de la canción original.", + "example_sentence_english": "He made a remix of the original song.", + "pos": "noun", + "word_frequency": 8600 + }, + { + "word": "revancha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenge;rematch", + "example_sentence_native": "Quieren una revancha después de perder el partido.", + "example_sentence_english": "They want a rematch after losing the game.", + "pos": "noun", + "word_frequency": 8602 + }, + { + "word": "reverendo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reverend", + "example_sentence_native": "El reverendo padre dio un sermón inspirador.", + "example_sentence_english": "The reverend father gave an inspiring sermon.", + "pos": "adjective", + "word_frequency": 8603 + }, + { + "word": "sapo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toad", + "example_sentence_native": "Vimos un sapo grande en el jardín.", + "example_sentence_english": "We saw a big toad in the garden.", + "pos": "noun", + "word_frequency": 8604 + }, + { + "word": "señoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Your Honor;Lordship;Ladyship", + "example_sentence_native": "Con el debido respeto, Señoría, no estoy de acuerdo.", + "example_sentence_english": "With all due respect, Your Honor, I disagree.", + "pos": "noun", + "word_frequency": 8606 + }, + { + "word": "smart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smart", + "example_sentence_native": "Compró un teléfono smart nuevo.", + "example_sentence_english": "He bought a new smart phone.", + "pos": "adjective", + "word_frequency": 8608 + }, + { + "word": "sorprendentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprisingly", + "example_sentence_native": "Sorprendentemente, el examen fue más fácil de lo que esperaba.", + "example_sentence_english": "Surprisingly, the exam was easier than I expected.", + "pos": "adverb", + "word_frequency": 8609 + }, + { + "word": "sorprendido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surprised", + "example_sentence_native": "Estaba muy sorprendido con la noticia.", + "example_sentence_english": "I was very surprised by the news.", + "pos": "adjective", + "word_frequency": 8610 + }, + { + "word": "studio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studio", + "example_sentence_native": "Grabaron la canción en el estudio.", + "example_sentence_english": "They recorded the song in the studio.", + "pos": "noun", + "word_frequency": 8613 + }, + { + "word": "system", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "system", + "example_sentence_native": "El sistema operativo necesita una actualización.", + "example_sentence_english": "The operating system needs an update.", + "pos": "noun", + "word_frequency": 8614 + }, + { + "word": "temblar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tremble;to shake", + "example_sentence_native": "Empezó a temblar de frío.", + "example_sentence_english": "He started to tremble from the cold.", + "pos": "verb", + "word_frequency": 8616 + }, + { + "word": "tendido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lying down;stretched out", + "example_sentence_native": "El perro estaba tendido en el suelo.", + "example_sentence_english": "The dog was lying on the floor.", + "pos": "adjective", + "word_frequency": 8617 + }, + { + "word": "unilateral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unilateral", + "example_sentence_native": "Tomaron una decisión unilateral sin consultar a nadie.", + "example_sentence_english": "They made a unilateral decision without consulting anyone.", + "pos": "adjective", + "word_frequency": 8621 + }, + { + "word": "vagón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wagon;carriage (train)", + "example_sentence_native": "Subimos al último vagón del tren.", + "example_sentence_english": "We got into the last carriage of the train.", + "pos": "noun", + "word_frequency": 8622 + }, + { + "word": "vestíbulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lobby;vestibule;hall", + "example_sentence_native": "Espera en el vestíbulo mientras te llamo.", + "example_sentence_english": "Wait in the lobby while I call you.", + "pos": "noun", + "word_frequency": 8623 + }, + { + "word": "vision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vision", + "example_sentence_native": "La empresa tiene una visión clara para el futuro.", + "example_sentence_english": "The company has a clear vision for the future.", + "pos": "noun", + "word_frequency": 8624 + }, + { + "word": "zombie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zombie", + "example_sentence_native": "Vimos una película de zombies anoche.", + "example_sentence_english": "We watched a zombie movie last night.", + "pos": "noun", + "word_frequency": 8627 + }, + { + "word": "zoom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zoom", + "example_sentence_native": "Tuvimos una reunión por Zoom.", + "example_sentence_english": "We had a meeting on Zoom.", + "pos": "noun", + "word_frequency": 8628 + }, + { + "word": "éxodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exodus", + "example_sentence_native": "Hubo un éxodo masivo de refugiados.", + "example_sentence_english": "There was a massive exodus of refugees.", + "pos": "noun", + "word_frequency": 8629 + }, + { + "word": "absorber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to absorb", + "example_sentence_native": "La esponja puede absorber mucha agua.", + "example_sentence_english": "The sponge can absorb a lot of water.", + "pos": "verb", + "word_frequency": 8630 + }, + { + "word": "abstracto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstract", + "example_sentence_native": "Es un concepto demasiado abstracto para entenderlo fácilmente.", + "example_sentence_english": "It's too abstract a concept to understand easily.", + "pos": "adjective", + "word_frequency": 8631 + }, + { + "word": "accesibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accessibility", + "example_sentence_native": "La accesibilidad es clave para todos los usuarios.", + "example_sentence_english": "Accessibility is key for all users.", + "pos": "noun", + "word_frequency": 8632 + }, + { + "word": "acelerado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accelerated;fast-paced", + "example_sentence_native": "Llevamos un ritmo de vida muy acelerado.", + "example_sentence_english": "We lead a very fast-paced lifestyle.", + "pos": "adjective", + "word_frequency": 8633 + }, + { + "word": "acera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sidewalk;pavement", + "example_sentence_native": "Caminamos por la acera para evitar el tráfico.", + "example_sentence_english": "We walked on the sidewalk to avoid traffic.", + "pos": "noun", + "word_frequency": 8634 + }, + { + "word": "alga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "algae;seaweed", + "example_sentence_native": "Las algas marinas son ricas en nutrientes.", + "example_sentence_english": "Sea algae are rich in nutrients.", + "pos": "noun", + "word_frequency": 8636 + }, + { + "word": "aludir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to allude to;to refer to", + "example_sentence_native": "El orador aludió a eventos pasados en su discurso.", + "example_sentence_english": "The speaker alluded to past events in his speech.", + "pos": "verb", + "word_frequency": 8637 + }, + { + "word": "anchura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "width", + "example_sentence_native": "Necesitamos medir la anchura de la puerta.", + "example_sentence_english": "We need to measure the width of the door.", + "pos": "noun", + "word_frequency": 8638 + }, + { + "word": "apuro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurry;predicament", + "example_sentence_native": "Estoy en un apuro, necesito tu ayuda.", + "example_sentence_english": "I'm in a hurry, I need your help.", + "pos": "noun", + "word_frequency": 8640 + }, + { + "word": "arbusto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bush;shrub", + "example_sentence_native": "El jardín tiene muchos arbustos verdes.", + "example_sentence_english": "The garden has many green bushes.", + "pos": "noun", + "word_frequency": 8641 + }, + { + "word": "articular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to articulate;to join", + "example_sentence_native": "Es importante articular bien las palabras al hablar en público.", + "example_sentence_english": "It's important to articulate words well when speaking in public.", + "pos": "verb", + "word_frequency": 8642 + }, + { + "word": "asma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asthma", + "example_sentence_native": "Mi hermano sufre de asma desde niño.", + "example_sentence_english": "My brother has suffered from asthma since he was a child.", + "pos": "noun", + "word_frequency": 8644 + }, + { + "word": "ayuno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fast (period of not eating)", + "example_sentence_native": "El médico le pidió que hiciera ayuno antes del análisis de sangre.", + "example_sentence_english": "The doctor asked him to fast before the blood test.", + "pos": "noun", + "word_frequency": 8645 + }, + { + "word": "barroco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baroque", + "example_sentence_native": "La catedral tiene una fachada de estilo barroco.", + "example_sentence_english": "The cathedral has a baroque style facade.", + "pos": "adjective", + "word_frequency": 8646 + }, + { + "word": "bis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encore;repeat", + "example_sentence_native": "El público pidió un bis al final del concierto.", + "example_sentence_english": "The audience asked for an encore at the end of the concert.", + "pos": "noun", + "word_frequency": 8648 + }, + { + "word": "bordar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embroider", + "example_sentence_native": "Mi abuela le gusta bordar flores en los pañuelos.", + "example_sentence_english": "My grandmother likes to embroider flowers on handkerchiefs.", + "pos": "verb", + "word_frequency": 8649 + }, + { + "word": "cancillería", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chancellery;foreign ministry", + "example_sentence_native": "La cancillería emitió un comunicado oficial.", + "example_sentence_english": "The chancellery issued an official statement.", + "pos": "noun", + "word_frequency": 8651 + }, + { + "word": "cancion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "song", + "example_sentence_native": "Me gusta mucho esta canción.", + "example_sentence_english": "I really like this song.", + "pos": "noun", + "word_frequency": 8652 + }, + { + "word": "cardíaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiac;heart-related", + "example_sentence_native": "El paciente sufrió un paro cardíaco.", + "example_sentence_english": "The patient suffered a cardiac arrest.", + "pos": "adjective", + "word_frequency": 8653 + }, + { + "word": "cascada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterfall", + "example_sentence_native": "Visitamos una hermosa cascada en la montaña.", + "example_sentence_english": "We visited a beautiful waterfall in the mountains.", + "pos": "noun", + "word_frequency": 8654 + }, + { + "word": "casting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casting (audition)", + "example_sentence_native": "Ella fue al casting para la nueva película.", + "example_sentence_english": "She went to the casting for the new movie.", + "pos": "noun", + "word_frequency": 8655 + }, + { + "word": "cauce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riverbed;channel", + "example_sentence_native": "El río se desbordó de su cauce.", + "example_sentence_english": "The river overflowed its banks.", + "pos": "noun", + "word_frequency": 8656 + }, + { + "word": "centre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "center;downtown", + "example_sentence_native": "Vamos al centro de la ciudad.", + "example_sentence_english": "Let's go to the city center.", + "pos": "noun", + "word_frequency": 8657 + }, + { + "word": "cepillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brush", + "example_sentence_native": "Necesito un cepillo para el pelo.", + "example_sentence_english": "I need a hairbrush.", + "pos": "noun", + "word_frequency": 8658 + }, + { + "word": "codigo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "code", + "example_sentence_native": "Necesito el código postal.", + "example_sentence_english": "I need the postal code.", + "pos": "noun", + "word_frequency": 8662 + }, + { + "word": "comestible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edible;foodstuff", + "example_sentence_native": "Todos los productos comestibles deben estar bien sellados.", + "example_sentence_english": "All edible products must be well sealed.", + "pos": "noun", + "word_frequency": 8663 + }, + { + "word": "complot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot;conspiracy", + "example_sentence_native": "Descubrieron un complot para derrocar al gobierno.", + "example_sentence_english": "They discovered a plot to overthrow the government.", + "pos": "noun", + "word_frequency": 8664 + }, + { + "word": "concentrarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concentrate;to focus", + "example_sentence_native": "Es difícil concentrarse con tanto ruido.", + "example_sentence_english": "It's hard to concentrate with so much noise.", + "pos": "verb", + "word_frequency": 8665 + }, + { + "word": "conmoción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commotion;shock", + "example_sentence_native": "La noticia causó gran conmoción en la ciudad.", + "example_sentence_english": "The news caused great commotion in the city.", + "pos": "noun", + "word_frequency": 8666 + }, + { + "word": "costarricense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Costa Rican", + "example_sentence_native": "Mi amigo es costarricense.", + "example_sentence_english": "My friend is Costa Rican.", + "pos": "adjective", + "word_frequency": 8667 + }, + { + "word": "danés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Danish", + "example_sentence_native": "Ella habla danés con fluidez.", + "example_sentence_english": "She speaks Danish fluently.", + "pos": "adjective", + "word_frequency": 8669 + }, + { + "word": "desinformación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disinformation", + "example_sentence_native": "La desinformación puede ser muy peligrosa.", + "example_sentence_english": "Disinformation can be very dangerous.", + "pos": "noun", + "word_frequency": 8670 + }, + { + "word": "donante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donor", + "example_sentence_native": "Se necesita un donante de sangre urgente.", + "example_sentence_english": "An urgent blood donor is needed.", + "pos": "noun", + "word_frequency": 8672 + }, + { + "word": "dudoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doubtful;dubious", + "example_sentence_native": "Su explicación me parece dudosa.", + "example_sentence_english": "His explanation seems doubtful to me.", + "pos": "adjective", + "word_frequency": 8673 + }, + { + "word": "egoísmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selfishness;egoism", + "example_sentence_native": "El egoísmo es un rasgo negativo.", + "example_sentence_english": "Selfishness is a negative trait.", + "pos": "noun", + "word_frequency": 8674 + }, + { + "word": "enriquecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enrichment", + "example_sentence_native": "El programa busca el enriquecimiento cultural de los estudiantes.", + "example_sentence_english": "The program seeks the cultural enrichment of the students.", + "pos": "noun", + "word_frequency": 8675 + }, + { + "word": "entrevistar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interview", + "example_sentence_native": "Van a entrevistar al candidato mañana.", + "example_sentence_english": "They are going to interview the candidate tomorrow.", + "pos": "verb", + "word_frequency": 8676 + }, + { + "word": "envio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shipment;sending", + "example_sentence_native": "El envío del paquete tardará tres días.", + "example_sentence_english": "The shipment of the package will take three days.", + "pos": "noun", + "word_frequency": 8677 + }, + { + "word": "episcopal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "episcopal", + "example_sentence_native": "La iglesia episcopal tiene una larga historia.", + "example_sentence_english": "The episcopal church has a long history.", + "pos": "adjective", + "word_frequency": 8678 + }, + { + "word": "epoca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "era;period;time", + "example_sentence_native": "Fue una época de grandes cambios.", + "example_sentence_english": "It was a time of great changes.", + "pos": "noun", + "word_frequency": 8679 + }, + { + "word": "erosión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erosion", + "example_sentence_native": "La erosión del suelo es un problema grave en esta región.", + "example_sentence_english": "Soil erosion is a serious problem in this region.", + "pos": "noun", + "word_frequency": 8680 + }, + { + "word": "especia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spice", + "example_sentence_native": "Añade un poco de esta especia para darle más sabor.", + "example_sentence_english": "Add a little of this spice to give it more flavor.", + "pos": "noun", + "word_frequency": 8681 + }, + { + "word": "estrago", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "havoc;damage", + "example_sentence_native": "La tormenta causó estragos en la costa.", + "example_sentence_english": "The storm caused havoc on the coast.", + "pos": "noun", + "word_frequency": 8682 + }, + { + "word": "estético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aesthetic", + "example_sentence_native": "El diseño tiene un gran valor estético.", + "example_sentence_english": "The design has great aesthetic value.", + "pos": "adjective", + "word_frequency": 8683 + }, + { + "word": "fijamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fixedly;intently", + "example_sentence_native": "Me miró fijamente a los ojos.", + "example_sentence_english": "He looked fixedly into my eyes.", + "pos": "adverb", + "word_frequency": 8686 + }, + { + "word": "fijate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "look;pay attention (informal 'you' singular)", + "example_sentence_native": "Fíjate bien en lo que te digo.", + "example_sentence_english": "Pay close attention to what I'm telling you.", + "pos": "verb", + "word_frequency": 8687 + }, + { + "word": "fracasar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail", + "example_sentence_native": "No quiero fracasar en este examen.", + "example_sentence_english": "I don't want to fail this exam.", + "pos": "verb", + "word_frequency": 8688 + }, + { + "word": "fértil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fertile", + "example_sentence_native": "La tierra de esta zona es muy fértil.", + "example_sentence_english": "The land in this area is very fertile.", + "pos": "adjective", + "word_frequency": 8689 + }, + { + "word": "gancho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hook", + "example_sentence_native": "Colgó el abrigo en el gancho de la puerta.", + "example_sentence_english": "He hung his coat on the hook on the door.", + "pos": "noun", + "word_frequency": 8690 + }, + { + "word": "genital", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genital", + "example_sentence_native": "Se refirió a la zona genital.", + "example_sentence_english": "He referred to the genital area.", + "pos": "adjective", + "word_frequency": 8691 + }, + { + "word": "grupal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group (adj.);collective", + "example_sentence_native": "Realizamos un trabajo grupal para el proyecto.", + "example_sentence_english": "We did a group work for the project.", + "pos": "adjective", + "word_frequency": 8694 + }, + { + "word": "gusano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worm", + "example_sentence_native": "El pájaro se comió un gusano.", + "example_sentence_english": "The bird ate a worm.", + "pos": "noun", + "word_frequency": 8696 + }, + { + "word": "hacker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacker", + "example_sentence_native": "Un hacker intentó acceder a mi cuenta.", + "example_sentence_english": "A hacker tried to access my account.", + "pos": "noun", + "word_frequency": 8698 + }, + { + "word": "historieta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic strip;comic book", + "example_sentence_native": "Le gusta leer historietas de superhéroes.", + "example_sentence_english": "He likes to read superhero comic books.", + "pos": "noun", + "word_frequency": 8701 + }, + { + "word": "hocico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snout;muzzle", + "example_sentence_native": "El perro tiene el hocico mojado.", + "example_sentence_english": "The dog has a wet snout.", + "pos": "noun", + "word_frequency": 8702 + }, + { + "word": "hoguera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bonfire", + "example_sentence_native": "Hicimos una hoguera en la playa.", + "example_sentence_english": "We made a bonfire on the beach.", + "pos": "noun", + "word_frequency": 8703 + }, + { + "word": "hundir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sink;to submerge", + "example_sentence_native": "El barco empezó a hundirse lentamente.", + "example_sentence_english": "The ship began to sink slowly.", + "pos": "verb", + "word_frequency": 8704 + }, + { + "word": "impulsado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "driven;propelled;boosted", + "example_sentence_native": "El proyecto fue impulsado por la nueva tecnología.", + "example_sentence_english": "The project was driven by the new technology.", + "pos": "adjective", + "word_frequency": 8705 + }, + { + "word": "imán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnet", + "example_sentence_native": "Puso un imán en la nevera.", + "example_sentence_english": "He put a magnet on the fridge.", + "pos": "noun", + "word_frequency": 8706 + }, + { + "word": "incompetencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incompetence", + "example_sentence_native": "Su incompetencia causó muchos problemas.", + "example_sentence_english": "His incompetence caused many problems.", + "pos": "noun", + "word_frequency": 8707 + }, + { + "word": "injustamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustly;unfairly", + "example_sentence_native": "Fue acusado injustamente del crimen.", + "example_sentence_english": "He was unjustly accused of the crime.", + "pos": "adverb", + "word_frequency": 8708 + }, + { + "word": "inscribirse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to register;to enroll", + "example_sentence_native": "Quiero inscribirme en el curso de español.", + "example_sentence_english": "I want to register for the Spanish course.", + "pos": "verb", + "word_frequency": 8709 + }, + { + "word": "intersección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intersection", + "example_sentence_native": "Gira a la derecha en la próxima intersección.", + "example_sentence_english": "Turn right at the next intersection.", + "pos": "noun", + "word_frequency": 8710 + }, + { + "word": "laptop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laptop", + "example_sentence_native": "Necesito una nueva laptop para el trabajo.", + "example_sentence_english": "I need a new laptop for work.", + "pos": "noun", + "word_frequency": 8715 + }, + { + "word": "localizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "located;localized", + "example_sentence_native": "El problema está localizado en esa área.", + "example_sentence_english": "The problem is localized in that area.", + "pos": "adjective", + "word_frequency": 8718 + }, + { + "word": "lora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parrot;lorikeet", + "example_sentence_native": "La lora repite todo lo que oye.", + "example_sentence_english": "The parrot repeats everything it hears.", + "pos": "noun", + "word_frequency": 8719 + }, + { + "word": "lámina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheet;plate;foil", + "example_sentence_native": "La lámina de metal era muy delgada.", + "example_sentence_english": "The metal sheet was very thin.", + "pos": "noun", + "word_frequency": 8720 + }, + { + "word": "mazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mallet;deck (of cards)", + "example_sentence_native": "Usó un mazo para clavar la estaca.", + "example_sentence_english": "He used a mallet to drive in the stake.", + "pos": "noun", + "word_frequency": 8723 + }, + { + "word": "memorable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorable", + "example_sentence_native": "Fue una noche memorable para todos.", + "example_sentence_english": "It was a memorable night for everyone.", + "pos": "adjective", + "word_frequency": 8724 + }, + { + "word": "menta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mint", + "example_sentence_native": "Me gusta el té de menta.", + "example_sentence_english": "I like mint tea.", + "pos": "noun", + "word_frequency": 8725 + }, + { + "word": "migratorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migratory", + "example_sentence_native": "Las aves migratorias viajan miles de kilómetros.", + "example_sentence_english": "Migratory birds travel thousands of kilometers.", + "pos": "adjective", + "word_frequency": 8727 + }, + { + "word": "moralmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morally", + "example_sentence_native": "Moralmente, no podía aceptar esa oferta.", + "example_sentence_english": "Morally, he couldn't accept that offer.", + "pos": "adverb", + "word_frequency": 8731 + }, + { + "word": "neoliberal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neoliberal", + "example_sentence_native": "El gobierno adoptó políticas neoliberales.", + "example_sentence_english": "The government adopted neoliberal policies.", + "pos": "adjective", + "word_frequency": 8732 + }, + { + "word": "nublado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloudy;overcast", + "example_sentence_native": "El cielo está nublado hoy.", + "example_sentence_english": "The sky is cloudy today.", + "pos": "adjective", + "word_frequency": 8735 + }, + { + "word": "nutriente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nutrient", + "example_sentence_native": "Las frutas son una buena fuente de nutrientes.", + "example_sentence_english": "Fruits are a good source of nutrients.", + "pos": "noun", + "word_frequency": 8736 + }, + { + "word": "oasis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oasis", + "example_sentence_native": "En el desierto, encontraron un pequeño oasis.", + "example_sentence_english": "In the desert, they found a small oasis.", + "pos": "noun", + "word_frequency": 8737 + }, + { + "word": "olivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "olive tree", + "example_sentence_native": "El olivo es un árbol típico del Mediterráneo.", + "example_sentence_english": "The olive tree is a typical Mediterranean tree.", + "pos": "noun", + "word_frequency": 8738 + }, + { + "word": "oyente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listener;audience member", + "example_sentence_native": "Los oyentes disfrutaron del concierto.", + "example_sentence_english": "The listeners enjoyed the concert.", + "pos": "noun", + "word_frequency": 8739 + }, + { + "word": "participativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participatory", + "example_sentence_native": "Se busca un enfoque más participativo.", + "example_sentence_english": "A more participatory approach is sought.", + "pos": "adjective", + "word_frequency": 8740 + }, + { + "word": "paternidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paternity;fatherhood", + "example_sentence_native": "La paternidad es una gran responsabilidad.", + "example_sentence_english": "Fatherhood is a great responsibility.", + "pos": "noun", + "word_frequency": 8741 + }, + { + "word": "peaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toll", + "example_sentence_native": "Tuvimos que pagar un peaje en la autopista.", + "example_sentence_english": "We had to pay a toll on the highway.", + "pos": "noun", + "word_frequency": 8742 + }, + { + "word": "planificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plan", + "example_sentence_native": "Necesitamos planificar el viaje con antelación.", + "example_sentence_english": "We need to plan the trip in advance.", + "pos": "verb", + "word_frequency": 8743 + }, + { + "word": "preferido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preferred;favorite", + "example_sentence_native": "El azul es mi color preferido.", + "example_sentence_english": "Blue is my favorite color.", + "pos": "adjective", + "word_frequency": 8744 + }, + { + "word": "pretensión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretension;claim", + "example_sentence_native": "Su pretensión de inocencia era difícil de creer.", + "example_sentence_english": "His claim of innocence was hard to believe.", + "pos": "noun", + "word_frequency": 8745 + }, + { + "word": "protegerse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protect oneself", + "example_sentence_native": "Es importante protegerse del sol.", + "example_sentence_english": "It's important to protect oneself from the sun.", + "pos": "verb", + "word_frequency": 8746 + }, + { + "word": "párroco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parish priest", + "example_sentence_native": "El párroco dio la misa dominical.", + "example_sentence_english": "The parish priest gave the Sunday mass.", + "pos": "noun", + "word_frequency": 8747 + }, + { + "word": "reivindicación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "claim;demand;vindication", + "example_sentence_native": "La huelga es una reivindicación de mejores salarios.", + "example_sentence_english": "The strike is a demand for better wages.", + "pos": "noun", + "word_frequency": 8749 + }, + { + "word": "repaso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "review;revision", + "example_sentence_native": "Haremos un repaso antes del examen.", + "example_sentence_english": "We will do a review before the exam.", + "pos": "noun", + "word_frequency": 8750 + }, + { + "word": "repentino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden;unexpected", + "example_sentence_native": "Hubo un cambio repentino en el clima.", + "example_sentence_english": "There was a sudden change in the weather.", + "pos": "adjective", + "word_frequency": 8751 + }, + { + "word": "repudio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repudiation;rejection", + "example_sentence_native": "La comunidad mostró su repudio a la violencia.", + "example_sentence_english": "The community showed its repudiation of violence.", + "pos": "noun", + "word_frequency": 8752 + }, + { + "word": "rifle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rifle", + "example_sentence_native": "El cazador llevaba un rifle.", + "example_sentence_english": "The hunter carried a rifle.", + "pos": "noun", + "word_frequency": 8753 + }, + { + "word": "sangriento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bloody;gory", + "example_sentence_native": "Fue una batalla sangrienta.", + "example_sentence_english": "It was a bloody battle.", + "pos": "adjective", + "word_frequency": 8755 + }, + { + "word": "saudí", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saudi", + "example_sentence_native": "La delegación saudí llegó a la conferencia.", + "example_sentence_english": "The Saudi delegation arrived at the conference.", + "pos": "adjective", + "word_frequency": 8756 + }, + { + "word": "semáforo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traffic light", + "example_sentence_native": "El coche se detuvo en el semáforo.", + "example_sentence_english": "The car stopped at the traffic light.", + "pos": "noun", + "word_frequency": 8758 + }, + { + "word": "server", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "server", + "example_sentence_native": "El sitio web está alojado en un nuevo server.", + "example_sentence_english": "The website is hosted on a new server.", + "pos": "noun", + "word_frequency": 8759 + }, + { + "word": "spa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spa", + "example_sentence_native": "Fuimos al spa para relajarnos.", + "example_sentence_english": "We went to the spa to relax.", + "pos": "noun", + "word_frequency": 8763 + }, + { + "word": "suicidarse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit suicide", + "example_sentence_native": "Es importante buscar ayuda si alguien piensa en suicidarse.", + "example_sentence_english": "It's important to seek help if someone thinks about committing suicide.", + "pos": "verb", + "word_frequency": 8765 + }, + { + "word": "surf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surf", + "example_sentence_native": "Me encanta hacer surf en la playa.", + "example_sentence_english": "I love to surf at the beach.", + "pos": "noun", + "word_frequency": 8766 + }, + { + "word": "tenedor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fork", + "example_sentence_native": "Necesito un tenedor para comer la ensalada.", + "example_sentence_english": "I need a fork to eat the salad.", + "pos": "noun", + "word_frequency": 8767 + }, + { + "word": "traba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstacle;impediment", + "example_sentence_native": "La falta de fondos es una traba para el proyecto.", + "example_sentence_english": "Lack of funds is an obstacle for the project.", + "pos": "noun", + "word_frequency": 8768 + }, + { + "word": "típicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typically", + "example_sentence_native": "Típicamente, el clima aquí es soleado.", + "example_sentence_english": "Typically, the weather here is sunny.", + "pos": "adverb", + "word_frequency": 8769 + }, + { + "word": "ventura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortune;luck;adventure", + "example_sentence_native": "Le deseo mucha ventura en su nuevo camino.", + "example_sentence_english": "I wish him much fortune on his new path.", + "pos": "noun", + "word_frequency": 8770 + }, + { + "word": "vitalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vitality", + "example_sentence_native": "A pesar de su edad, tiene mucha vitalidad.", + "example_sentence_english": "Despite his age, he has a lot of vitality.", + "pos": "noun", + "word_frequency": 8771 + }, + { + "word": "abanico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan (handheld)", + "example_sentence_native": "En verano, siempre llevo un abanico.", + "example_sentence_english": "In summer, I always carry a fan.", + "pos": "noun", + "word_frequency": 8774 + }, + { + "word": "acreditar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accredit;to credit", + "example_sentence_native": "La universidad debe acreditar el nuevo programa.", + "example_sentence_english": "The university must accredit the new program.", + "pos": "verb", + "word_frequency": 8775 + }, + { + "word": "acumular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accumulate", + "example_sentence_native": "No me gusta acumular cosas viejas.", + "example_sentence_english": "I don't like to accumulate old things.", + "pos": "verb", + "word_frequency": 8776 + }, + { + "word": "adobe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adobe", + "example_sentence_native": "Muchas casas antiguas están hechas de adobe.", + "example_sentence_english": "Many old houses are made of adobe.", + "pos": "noun", + "word_frequency": 8777 + }, + { + "word": "aguacate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avocado", + "example_sentence_native": "Me encanta el aguacate en mi tostada.", + "example_sentence_english": "I love avocado on my toast.", + "pos": "noun", + "word_frequency": 8778 + }, + { + "word": "albergue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostel;shelter", + "example_sentence_native": "Nos quedamos en un albergue juvenil.", + "example_sentence_english": "We stayed in a youth hostel.", + "pos": "noun", + "word_frequency": 8779 + }, + { + "word": "alergia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "allergy", + "example_sentence_native": "Tengo alergia al polen.", + "example_sentence_english": "I have a pollen allergy.", + "pos": "noun", + "word_frequency": 8780 + }, + { + "word": "alineación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alignment;lineup", + "example_sentence_native": "La alineación del equipo fue sorprendente.", + "example_sentence_english": "The team's lineup was surprising.", + "pos": "noun", + "word_frequency": 8781 + }, + { + "word": "ancestral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestral", + "example_sentence_native": "Mantienen vivas las tradiciones ancestrales.", + "example_sentence_english": "They keep ancestral traditions alive.", + "pos": "adjective", + "word_frequency": 8782 + }, + { + "word": "anteojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyeglass;monocle", + "example_sentence_native": "Perdí mi anteojo de sol.", + "example_sentence_english": "I lost my sunglass.", + "pos": "noun", + "word_frequency": 8783 + }, + { + "word": "antibiótico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antibiotic", + "example_sentence_native": "El médico me recetó un antibiótico.", + "example_sentence_english": "The doctor prescribed me an antibiotic.", + "pos": "noun", + "word_frequency": 8784 + }, + { + "word": "anulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancellation;annulment", + "example_sentence_native": "Recibimos la anulación del vuelo.", + "example_sentence_english": "We received the flight cancellation.", + "pos": "noun", + "word_frequency": 8785 + }, + { + "word": "apagón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blackout;power outage", + "example_sentence_native": "Hubo un apagón en todo el barrio.", + "example_sentence_english": "There was a blackout in the whole neighborhood.", + "pos": "noun", + "word_frequency": 8786 + }, + { + "word": "aura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aura", + "example_sentence_native": "Tenía un aura de misterio.", + "example_sentence_english": "He had an aura of mystery.", + "pos": "noun", + "word_frequency": 8788 + }, + { + "word": "banquillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bench (sports);dock (legal)", + "example_sentence_native": "El jugador estuvo en el banquillo todo el partido.", + "example_sentence_english": "The player was on the bench the whole game.", + "pos": "noun", + "word_frequency": 8791 + }, + { + "word": "bautismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baptism", + "example_sentence_native": "El bautismo es una ceremonia importante.", + "example_sentence_english": "Baptism is an important ceremony.", + "pos": "noun", + "word_frequency": 8792 + }, + { + "word": "boxeador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxer", + "example_sentence_native": "El boxeador ganó el campeonato.", + "example_sentence_english": "The boxer won the championship.", + "pos": "noun", + "word_frequency": 8794 + }, + { + "word": "cacho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piece;bit (colloquial)", + "example_sentence_native": "Dame un cacho de pan.", + "example_sentence_english": "Give me a piece of bread.", + "pos": "noun", + "word_frequency": 8795 + }, + { + "word": "calabaza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pumpkin;squash", + "example_sentence_native": "Hicimos sopa de calabaza para la cena.", + "example_sentence_english": "We made pumpkin soup for dinner.", + "pos": "noun", + "word_frequency": 8796 + }, + { + "word": "chistoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funny;witty", + "example_sentence_native": "Ese payaso es muy chistoso.", + "example_sentence_english": "That clown is very funny.", + "pos": "adjective", + "word_frequency": 8798 + }, + { + "word": "ciclón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyclone", + "example_sentence_native": "El ciclón causó mucha destrucción en la costa.", + "example_sentence_english": "The cyclone caused a lot of destruction on the coast.", + "pos": "noun", + "word_frequency": 8800 + }, + { + "word": "clon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clone", + "example_sentence_native": "Crearon un clon de la oveja.", + "example_sentence_english": "They created a clone of the sheep.", + "pos": "noun", + "word_frequency": 8801 + }, + { + "word": "co2", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "CO2 (carbon dioxide)", + "example_sentence_native": "La emisión de CO2 contribuye al cambio climático.", + "example_sentence_english": "CO2 emissions contribute to climate change.", + "pos": "noun", + "word_frequency": 8802 + }, + { + "word": "codicia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greed", + "example_sentence_native": "La codicia puede llevar a la ruina.", + "example_sentence_english": "Greed can lead to ruin.", + "pos": "noun", + "word_frequency": 8803 + }, + { + "word": "comportarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to behave", + "example_sentence_native": "Los niños deben comportarse bien en la escuela.", + "example_sentence_english": "Children should behave well at school.", + "pos": "verb", + "word_frequency": 8804 + }, + { + "word": "concretar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concretize;to specify;to finalize", + "example_sentence_native": "Necesitamos concretar los detalles del proyecto.", + "example_sentence_english": "We need to finalize the details of the project.", + "pos": "verb", + "word_frequency": 8805 + }, + { + "word": "condolencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condolence", + "example_sentence_native": "Enviamos nuestras más sinceras condolencias a la familia.", + "example_sentence_english": "We send our sincerest condolences to the family.", + "pos": "noun", + "word_frequency": 8806 + }, + { + "word": "confort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfort", + "example_sentence_native": "Esta silla ofrece mucho confort.", + "example_sentence_english": "This chair offers a lot of comfort.", + "pos": "noun", + "word_frequency": 8807 + }, + { + "word": "consultorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doctor's office;consulting room", + "example_sentence_native": "Tengo una cita en el consultorio del dentista.", + "example_sentence_english": "I have an appointment at the dentist's office.", + "pos": "noun", + "word_frequency": 8808 + }, + { + "word": "contraer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contract (a disease;a debt);to shrink", + "example_sentence_native": "Es importante no contraer deudas innecesarias.", + "example_sentence_english": "It's important not to contract unnecessary debts.", + "pos": "verb", + "word_frequency": 8809 + }, + { + "word": "cover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover (song)", + "example_sentence_native": "La banda hizo un cover de una canción famosa.", + "example_sentence_english": "The band did a cover of a famous song.", + "pos": "noun", + "word_frequency": 8810 + }, + { + "word": "cuñada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sister-in-law", + "example_sentence_native": "Mi cuñada viene a visitarnos este fin de semana.", + "example_sentence_english": "My sister-in-law is coming to visit us this weekend.", + "pos": "noun", + "word_frequency": 8811 + }, + { + "word": "delfín", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dolphin", + "example_sentence_native": "Vimos un grupo de delfines nadando cerca de la costa.", + "example_sentence_english": "We saw a group of dolphins swimming near the coast.", + "pos": "noun", + "word_frequency": 8812 + }, + { + "word": "deprimente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressing", + "example_sentence_native": "La película era bastante deprimente.", + "example_sentence_english": "The movie was quite depressing.", + "pos": "adjective", + "word_frequency": 8813 + }, + { + "word": "desesperadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desperately", + "example_sentence_native": "Buscó desesperadamente una salida.", + "example_sentence_english": "He desperately searched for a way out.", + "pos": "adverb", + "word_frequency": 8814 + }, + { + "word": "despegue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "takeoff (aviation);launch;boom (economic)", + "example_sentence_native": "El despegue del avión se retrasó por el mal tiempo.", + "example_sentence_english": "The plane's takeoff was delayed due to bad weather.", + "pos": "noun", + "word_frequency": 8815 + }, + { + "word": "diagrama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagram", + "example_sentence_native": "El profesor explicó el proceso con un diagrama.", + "example_sentence_english": "The professor explained the process with a diagram.", + "pos": "noun", + "word_frequency": 8816 + }, + { + "word": "dibujante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartoonist;illustrator;draughtsman", + "example_sentence_native": "Mi hermano es un dibujante de cómics.", + "example_sentence_english": "My brother is a comic book artist.", + "pos": "noun", + "word_frequency": 8817 + }, + { + "word": "disimular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hide;to conceal;to pretend", + "example_sentence_native": "Intentó disimular su sorpresa.", + "example_sentence_english": "He tried to hide his surprise.", + "pos": "verb", + "word_frequency": 8819 + }, + { + "word": "dotación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endowment;staff;provision", + "example_sentence_native": "La dotación de personal para el nuevo proyecto es insuficiente.", + "example_sentence_english": "The staffing for the new project is insufficient.", + "pos": "noun", + "word_frequency": 8820 + }, + { + "word": "estrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratum;layer", + "example_sentence_native": "La sociedad está dividida en diferentes estratos sociales.", + "example_sentence_english": "Society is divided into different social strata.", + "pos": "noun", + "word_frequency": 8822 + }, + { + "word": "estudioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studious", + "example_sentence_native": "Es un estudiante muy estudioso.", + "example_sentence_english": "He is a very studious student.", + "pos": "adjective", + "word_frequency": 8823 + }, + { + "word": "evadir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evade;to avoid", + "example_sentence_native": "Intentó evadir el tema de conversación.", + "example_sentence_english": "He tried to evade the topic of conversation.", + "pos": "verb", + "word_frequency": 8824 + }, + { + "word": "extremidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremity;limb", + "example_sentence_native": "Las extremidades del cuerpo son los brazos y las piernas.", + "example_sentence_english": "The extremities of the body are the arms and legs.", + "pos": "noun", + "word_frequency": 8826 + }, + { + "word": "felizmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happily;fortunately", + "example_sentence_native": "Felizmente, llegaron a tiempo para el tren.", + "example_sentence_english": "Fortunately, they arrived in time for the train.", + "pos": "adverb", + "word_frequency": 8829 + }, + { + "word": "frijol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bean", + "example_sentence_native": "Me encanta comer arroz con frijoles.", + "example_sentence_english": "I love eating rice with beans.", + "pos": "noun", + "word_frequency": 8831 + }, + { + "word": "galardón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "award;prize", + "example_sentence_native": "Recibió un galardón por su trayectoria profesional.", + "example_sentence_english": "He received an award for his professional career.", + "pos": "noun", + "word_frequency": 8832 + }, + { + "word": "genuino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genuine;authentic", + "example_sentence_native": "La obra de arte es genuina.", + "example_sentence_english": "The artwork is genuine.", + "pos": "adjective", + "word_frequency": 8833 + }, + { + "word": "hemorragia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemorrhage", + "example_sentence_native": "El paciente sufrió una hemorragia interna.", + "example_sentence_english": "The patient suffered an internal hemorrhage.", + "pos": "noun", + "word_frequency": 8837 + }, + { + "word": "iluminar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illuminate;to light up", + "example_sentence_native": "El sol empieza a iluminar el valle.", + "example_sentence_english": "The sun begins to illuminate the valley.", + "pos": "verb", + "word_frequency": 8840 + }, + { + "word": "imponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposing;impressive", + "example_sentence_native": "La montaña se alzaba imponente sobre el pueblo.", + "example_sentence_english": "The mountain rose imposingly above the town.", + "pos": "adjective", + "word_frequency": 8841 + }, + { + "word": "indiana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "calico (fabric);person from the Indies (historical)", + "example_sentence_native": "Compró una tela indiana para hacer un vestido.", + "example_sentence_english": "She bought a calico fabric to make a dress.", + "pos": "noun", + "word_frequency": 8842 + }, + { + "word": "indudablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undoubtedly", + "example_sentence_native": "Indudablemente, es la mejor opción.", + "example_sentence_english": "Undoubtedly, it is the best option.", + "pos": "adverb", + "word_frequency": 8843 + }, + { + "word": "informante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informant", + "example_sentence_native": "La policía habló con un informante anónimo.", + "example_sentence_english": "The police spoke with an anonymous informant.", + "pos": "noun", + "word_frequency": 8844 + }, + { + "word": "lama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "llama (animal);lama (religious leader)", + "example_sentence_native": "La llama es un animal típico de los Andes.", + "example_sentence_english": "The llama is a typical animal of the Andes.", + "pos": "noun", + "word_frequency": 8849 + }, + { + "word": "ligar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tie;to connect;to flirt", + "example_sentence_native": "Intentó ligar con la chica en la fiesta.", + "example_sentence_english": "He tried to flirt with the girl at the party.", + "pos": "verb", + "word_frequency": 8851 + }, + { + "word": "logotipo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logo", + "example_sentence_native": "La empresa rediseñó su logotipo.", + "example_sentence_english": "The company redesigned its logo.", + "pos": "noun", + "word_frequency": 8853 + }, + { + "word": "malta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Malta (country);malt beverage", + "example_sentence_native": "Malta es una isla en el Mediterráneo.", + "example_sentence_english": "Malta is an island in the Mediterranean.", + "pos": "noun", + "word_frequency": 8855 + }, + { + "word": "manufactura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacture;manufacturing", + "example_sentence_native": "La manufactura de automóviles es una industria importante.", + "example_sentence_english": "Car manufacturing is an important industry.", + "pos": "noun", + "word_frequency": 8856 + }, + { + "word": "mentar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to mention;to name", + "example_sentence_native": "No quiso mentar el asunto delicado.", + "example_sentence_english": "He didn't want to mention the delicate matter.", + "pos": "verb", + "word_frequency": 8859 + }, + { + "word": "mobiliario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furniture", + "example_sentence_native": "Compraron mobiliario nuevo para la oficina.", + "example_sentence_english": "They bought new furniture for the office.", + "pos": "noun", + "word_frequency": 8860 + }, + { + "word": "mítico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythical;legendary", + "example_sentence_native": "El unicornio es un animal mítico.", + "example_sentence_english": "The unicorn is a mythical animal.", + "pos": "adjective", + "word_frequency": 8862 + }, + { + "word": "nitrógeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nitrogen", + "example_sentence_native": "El nitrógeno es el gas más abundante en la atmósfera.", + "example_sentence_english": "Nitrogen is the most abundant gas in the atmosphere.", + "pos": "noun", + "word_frequency": 8864 + }, + { + "word": "notario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notary;public notary", + "example_sentence_native": "Necesitamos ir al notario para firmar los documentos.", + "example_sentence_english": "We need to go to the notary to sign the documents.", + "pos": "noun", + "word_frequency": 8865 + }, + { + "word": "notorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notorious;well-known", + "example_sentence_native": "Su talento es notorio en la industria.", + "example_sentence_english": "His talent is notorious in the industry.", + "pos": "adjective", + "word_frequency": 8866 + }, + { + "word": "olvidado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forgotten", + "example_sentence_native": "Encontró un juguete olvidado debajo del sofá.", + "example_sentence_english": "He found a forgotten toy under the sofa.", + "pos": "adjective", + "word_frequency": 8868 + }, + { + "word": "parir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give birth (animals);to bear", + "example_sentence_native": "La vaca va a parir pronto.", + "example_sentence_english": "The cow is going to give birth soon.", + "pos": "verb", + "word_frequency": 8870 + }, + { + "word": "patriarca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriarch", + "example_sentence_native": "El abuelo era el patriarca de la familia.", + "example_sentence_english": "The grandfather was the patriarch of the family.", + "pos": "noun", + "word_frequency": 8871 + }, + { + "word": "peluquería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairdresser's;hair salon", + "example_sentence_native": "Voy a la peluquería a cortarme el pelo.", + "example_sentence_english": "I'm going to the hairdresser's to get my hair cut.", + "pos": "noun", + "word_frequency": 8872 + }, + { + "word": "penitenciario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penitentiary (officer;system)", + "example_sentence_native": "El sistema penitenciario busca la reinserción social.", + "example_sentence_english": "The penitentiary system seeks social reintegration.", + "pos": "noun", + "word_frequency": 8873 + }, + { + "word": "pereza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laziness;sloth", + "example_sentence_native": "Me da pereza levantarme temprano.", + "example_sentence_english": "I feel lazy getting up early.", + "pos": "noun", + "word_frequency": 8874 + }, + { + "word": "pestaña", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eyelash;tab (browser)", + "example_sentence_native": "Se le cayó una pestaña.", + "example_sentence_english": "An eyelash fell out.", + "pos": "noun", + "word_frequency": 8875 + }, + { + "word": "pileta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swimming pool (LatAm);sink (Arg;Uru)", + "example_sentence_native": "Los niños jugaban en la pileta.", + "example_sentence_english": "The children were playing in the swimming pool.", + "pos": "noun", + "word_frequency": 8878 + }, + { + "word": "populismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "populism", + "example_sentence_native": "El populismo a menudo promete soluciones simples a problemas complejos.", + "example_sentence_english": "Populism often promises simple solutions to complex problems.", + "pos": "noun", + "word_frequency": 8880 + }, + { + "word": "púrpura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purple", + "example_sentence_native": "El color púrpura es mi favorito.", + "example_sentence_english": "The color purple is my favorite.", + "pos": "noun", + "word_frequency": 8883 + }, + { + "word": "quincena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortnight;two weeks' pay", + "example_sentence_native": "Recibo mi sueldo cada quincena.", + "example_sentence_english": "I receive my salary every fortnight.", + "pos": "noun", + "word_frequency": 8884 + }, + { + "word": "rally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rally", + "example_sentence_native": "El coche de rally derrapó en la curva.", + "example_sentence_english": "The rally car skidded on the curve.", + "pos": "noun", + "word_frequency": 8885 + }, + { + "word": "rivalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rivalry", + "example_sentence_native": "Hay una fuerte rivalidad entre los dos equipos.", + "example_sentence_english": "There is a strong rivalry between the two teams.", + "pos": "noun", + "word_frequency": 8887 + }, + { + "word": "riñón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kidney", + "example_sentence_native": "Los riñones son órganos vitales.", + "example_sentence_english": "Kidneys are vital organs.", + "pos": "noun", + "word_frequency": 8888 + }, + { + "word": "rodeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rodeo;detour", + "example_sentence_native": "El vaquero participó en el rodeo.", + "example_sentence_english": "The cowboy participated in the rodeo.", + "pos": "noun", + "word_frequency": 8889 + }, + { + "word": "rompecabezas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jigsaw puzzle;riddle", + "example_sentence_native": "Me gusta armar rompecabezas en mi tiempo libre.", + "example_sentence_english": "I like to do jigsaw puzzles in my free time.", + "pos": "noun", + "word_frequency": 8890 + }, + { + "word": "saliente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outgoing;protruding", + "example_sentence_native": "El presidente saliente dio su último discurso.", + "example_sentence_english": "The outgoing president gave his last speech.", + "pos": "adjective", + "word_frequency": 8891 + }, + { + "word": "salirse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go out;to leave;to stick out", + "example_sentence_native": "Tienes que salirse de la fila para entrar.", + "example_sentence_english": "You have to step out of the line to enter.", + "pos": "verb", + "word_frequency": 8892 + }, + { + "word": "saliva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saliva", + "example_sentence_native": "La saliva ayuda a digerir los alimentos.", + "example_sentence_english": "Saliva helps digest food.", + "pos": "noun", + "word_frequency": 8893 + }, + { + "word": "sancionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sanction;to penalize", + "example_sentence_native": "El comité decidió sancionar al jugador por su conducta.", + "example_sentence_english": "The committee decided to sanction the player for his conduct.", + "pos": "verb", + "word_frequency": 8894 + }, + { + "word": "simbolizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to symbolize", + "example_sentence_native": "La paloma blanca suele simbolizar la paz.", + "example_sentence_english": "The white dove usually symbolizes peace.", + "pos": "verb", + "word_frequency": 8896 + }, + { + "word": "site", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "site (website)", + "example_sentence_native": "Visita nuestro site para más información.", + "example_sentence_english": "Visit our site for more information.", + "pos": "noun", + "word_frequency": 8897 + }, + { + "word": "soborno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bribe", + "example_sentence_native": "El funcionario fue acusado de soborno.", + "example_sentence_english": "The official was accused of bribery.", + "pos": "noun", + "word_frequency": 8898 + }, + { + "word": "sobrenatural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supernatural", + "example_sentence_native": "La película trataba sobre fenómenos sobrenaturales.", + "example_sentence_english": "The movie was about supernatural phenomena.", + "pos": "adjective", + "word_frequency": 8899 + }, + { + "word": "solano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "east wind (specifically from the east;often hot)", + "example_sentence_native": "El viento solano es muy cálido en verano.", + "example_sentence_english": "The east wind is very warm in summer.", + "pos": "noun", + "word_frequency": 8900 + }, + { + "word": "subdirector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy director;assistant director", + "example_sentence_native": "El subdirector se encargará de la reunión.", + "example_sentence_english": "The deputy director will be in charge of the meeting.", + "pos": "noun", + "word_frequency": 8901 + }, + { + "word": "sublime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sublime", + "example_sentence_native": "La vista desde la cima de la montaña era sublime.", + "example_sentence_english": "The view from the top of the mountain was sublime.", + "pos": "adjective", + "word_frequency": 8902 + }, + { + "word": "subsistencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsistence;livelihood", + "example_sentence_native": "Muchas familias viven con lo justo para su subsistencia.", + "example_sentence_english": "Many families live with just enough for their subsistence.", + "pos": "noun", + "word_frequency": 8903 + }, + { + "word": "suicidar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit suicide", + "example_sentence_native": "Es importante buscar ayuda si alguien piensa en suicidar.", + "example_sentence_english": "It's important to seek help if someone thinks about committing suicide.", + "pos": "verb", + "word_frequency": 8904 + }, + { + "word": "tajo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cut;gash;gorge", + "example_sentence_native": "Se hizo un tajo profundo en la mano.", + "example_sentence_english": "He got a deep cut on his hand.", + "pos": "noun", + "word_frequency": 8905 + }, + { + "word": "tech", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tech;technology", + "example_sentence_native": "La industria tech está en constante crecimiento.", + "example_sentence_english": "The tech industry is constantly growing.", + "pos": "noun", + "word_frequency": 8906 + }, + { + "word": "transcurrir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to elapse;to pass (time)", + "example_sentence_native": "El tiempo transcurre rápidamente cuando te diviertes.", + "example_sentence_english": "Time passes quickly when you're having fun.", + "pos": "verb", + "word_frequency": 8907 + }, + { + "word": "trasladarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move;to relocate;to transfer", + "example_sentence_native": "Nos vamos a trasladar a otra ciudad el próximo mes.", + "example_sentence_english": "We are going to move to another city next month.", + "pos": "verb", + "word_frequency": 8908 + }, + { + "word": "trasplante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transplant", + "example_sentence_native": "Necesita un trasplante de riñón.", + "example_sentence_english": "He needs a kidney transplant.", + "pos": "noun", + "word_frequency": 8909 + }, + { + "word": "uranio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uranium", + "example_sentence_native": "El uranio es un elemento químico radiactivo.", + "example_sentence_english": "Uranium is a radioactive chemical element.", + "pos": "noun", + "word_frequency": 8910 + }, + { + "word": "vasto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vast;extensive", + "example_sentence_native": "El desierto es un lugar vasto y desolado.", + "example_sentence_english": "The desert is a vast and desolate place.", + "pos": "adjective", + "word_frequency": 8911 + }, + { + "word": "viabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viability;feasibility", + "example_sentence_native": "Estamos estudiando la viabilidad del proyecto.", + "example_sentence_english": "We are studying the viability of the project.", + "pos": "noun", + "word_frequency": 8912 + }, + { + "word": "vocero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spokesperson", + "example_sentence_native": "El vocero del gobierno hizo una declaración.", + "example_sentence_english": "The government spokesperson made a statement.", + "pos": "noun", + "word_frequency": 8913 + }, + { + "word": "zoo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zoo", + "example_sentence_native": "Fuimos al zoo a ver los animales.", + "example_sentence_english": "We went to the zoo to see the animals.", + "pos": "noun", + "word_frequency": 8915 + }, + { + "word": "abstención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstention", + "example_sentence_native": "Hubo una alta tasa de abstención en las elecciones.", + "example_sentence_english": "There was a high rate of abstention in the elections.", + "pos": "noun", + "word_frequency": 8918 + }, + { + "word": "aburrimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boredom", + "example_sentence_native": "El aburrimiento puede llevar a la creatividad.", + "example_sentence_english": "Boredom can lead to creativity.", + "pos": "noun", + "word_frequency": 8919 + }, + { + "word": "acostarse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go to bed;to lie down", + "example_sentence_native": "Me voy a acostar temprano esta noche.", + "example_sentence_english": "I'm going to go to bed early tonight.", + "pos": "verb", + "word_frequency": 8920 + }, + { + "word": "adquisitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purchasing;acquisitive", + "example_sentence_native": "El poder adquisitivo de la gente ha disminuido.", + "example_sentence_english": "People's purchasing power has decreased.", + "pos": "adjective", + "word_frequency": 8921 + }, + { + "word": "alboroto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commotion;fuss;racket", + "example_sentence_native": "Hubo un gran alboroto en la calle.", + "example_sentence_english": "There was a big commotion in the street.", + "pos": "noun", + "word_frequency": 8922 + }, + { + "word": "alfabeto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "alphabet", + "example_sentence_native": "El alfabeto español tiene 27 letras.", + "example_sentence_english": "The Spanish alphabet has 27 letters.", + "pos": "noun", + "word_frequency": 8924 + }, + { + "word": "alterado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "altered;upset;agitated", + "example_sentence_native": "Estaba muy alterado por las noticias.", + "example_sentence_english": "He was very upset by the news.", + "pos": "adjective", + "word_frequency": 8925 + }, + { + "word": "boicot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boycott", + "example_sentence_native": "La gente organizó un boicot contra la empresa.", + "example_sentence_english": "People organized a boycott against the company.", + "pos": "noun", + "word_frequency": 8934 + }, + { + "word": "bonaerense", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "from Buenos Aires", + "example_sentence_native": "Mi amigo es bonaerense, nació en La Plata.", + "example_sentence_english": "My friend is from Buenos Aires, he was born in La Plata.", + "pos": "adjective", + "word_frequency": 8935 + }, + { + "word": "carisma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charisma", + "example_sentence_native": "El líder tenía un gran carisma.", + "example_sentence_english": "The leader had great charisma.", + "pos": "noun", + "word_frequency": 8938 + }, + { + "word": "cavidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavity;hollow", + "example_sentence_native": "El dentista encontró una cavidad en mi diente.", + "example_sentence_english": "The dentist found a cavity in my tooth.", + "pos": "noun", + "word_frequency": 8939 + }, + { + "word": "cloro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chlorine;bleach", + "example_sentence_native": "Añade cloro al agua de la piscina.", + "example_sentence_english": "Add chlorine to the pool water.", + "pos": "noun", + "word_frequency": 8941 + }, + { + "word": "cocido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stew;boiled dish", + "example_sentence_native": "El cocido madrileño es un plato tradicional.", + "example_sentence_english": "Madrid stew is a traditional dish.", + "pos": "noun", + "word_frequency": 8942 + }, + { + "word": "colocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placed;high (slang)", + "example_sentence_native": "El cuadro está bien colocado en la pared.", + "example_sentence_english": "The painting is well placed on the wall.", + "pos": "adjective", + "word_frequency": 8944 + }, + { + "word": "comentarista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commentator;analyst", + "example_sentence_native": "El comentarista deportivo analizó el partido.", + "example_sentence_english": "The sports commentator analyzed the game.", + "pos": "noun", + "word_frequency": 8945 + }, + { + "word": "computador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "computer", + "example_sentence_native": "Necesito un nuevo computador para trabajar.", + "example_sentence_english": "I need a new computer for work.", + "pos": "noun", + "word_frequency": 8946 + }, + { + "word": "confección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "making;manufacturing;ready-made clothing", + "example_sentence_native": "La confección de ropa es una industria importante.", + "example_sentence_english": "Clothing manufacturing is an important industry.", + "pos": "noun", + "word_frequency": 8947 + }, + { + "word": "contratista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contractor", + "example_sentence_native": "El contratista terminó la obra a tiempo.", + "example_sentence_english": "The contractor finished the work on time.", + "pos": "noun", + "word_frequency": 8948 + }, + { + "word": "convoy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convoy", + "example_sentence_native": "Un convoy de camiones cruzó la frontera.", + "example_sentence_english": "A convoy of trucks crossed the border.", + "pos": "noun", + "word_frequency": 8949 + }, + { + "word": "coronado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowned", + "example_sentence_native": "El rey fue coronado en la catedral.", + "example_sentence_english": "The king was crowned in the cathedral.", + "pos": "adjective", + "word_frequency": 8950 + }, + { + "word": "derrocar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to overthrow;to depose", + "example_sentence_native": "Intentaron derrocar al gobierno.", + "example_sentence_english": "They tried to overthrow the government.", + "pos": "verb", + "word_frequency": 8954 + }, + { + "word": "desenlace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outcome;ending;denouement", + "example_sentence_native": "El desenlace de la historia fue inesperado.", + "example_sentence_english": "The outcome of the story was unexpected.", + "pos": "noun", + "word_frequency": 8955 + }, + { + "word": "desnutrición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malnutrition", + "example_sentence_native": "La desnutrición es un problema grave en algunas regiones.", + "example_sentence_english": "Malnutrition is a serious problem in some regions.", + "pos": "noun", + "word_frequency": 8956 + }, + { + "word": "destrozado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroyed;devastated;shattered", + "example_sentence_native": "El coche quedó destrozado después del accidente.", + "example_sentence_english": "The car was destroyed after the accident.", + "pos": "adjective", + "word_frequency": 8957 + }, + { + "word": "dificultar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make difficult;to hinder", + "example_sentence_native": "La lluvia dificultó el rescate.", + "example_sentence_english": "The rain made the rescue difficult.", + "pos": "verb", + "word_frequency": 8958 + }, + { + "word": "diferir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to differ;to postpone", + "example_sentence_native": "Sus opiniones difieren en este punto.", + "example_sentence_english": "Their opinions differ on this point.", + "pos": "verb", + "word_frequency": 8959 + }, + { + "word": "doblaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dubbing", + "example_sentence_native": "El doblaje de la película fue excelente.", + "example_sentence_english": "The dubbing of the movie was excellent.", + "pos": "noun", + "word_frequency": 8960 + }, + { + "word": "empeorar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worsen", + "example_sentence_native": "La situación económica podría empeorar.", + "example_sentence_english": "The economic situation could worsen.", + "pos": "verb", + "word_frequency": 8961 + }, + { + "word": "enterrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bury", + "example_sentence_native": "Decidieron enterrar el tesoro en el jardín.", + "example_sentence_english": "They decided to bury the treasure in the garden.", + "pos": "verb", + "word_frequency": 8962 + }, + { + "word": "escopeta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shotgun", + "example_sentence_native": "El cazador llevaba una escopeta al hombro.", + "example_sentence_english": "The hunter carried a shotgun on his shoulder.", + "pos": "noun", + "word_frequency": 8963 + }, + { + "word": "espiritualidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirituality", + "example_sentence_native": "Busca la paz a través de la espiritualidad.", + "example_sentence_english": "He seeks peace through spirituality.", + "pos": "noun", + "word_frequency": 8964 + }, + { + "word": "extradición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extradition", + "example_sentence_native": "Se solicitó la extradición del criminal.", + "example_sentence_english": "The extradition of the criminal was requested.", + "pos": "noun", + "word_frequency": 8967 + }, + { + "word": "extraterrestre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alien", + "example_sentence_native": "Vio una película sobre un extraterrestre amigable.", + "example_sentence_english": "He saw a movie about a friendly alien.", + "pos": "noun", + "word_frequency": 8968 + }, + { + "word": "extremista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremist", + "example_sentence_native": "El grupo fue calificado de extremista.", + "example_sentence_english": "The group was labeled as extremist.", + "pos": "noun", + "word_frequency": 8969 + }, + { + "word": "fake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fake", + "example_sentence_native": "Esa noticia resultó ser un fake.", + "example_sentence_english": "That news turned out to be a fake.", + "pos": "noun", + "word_frequency": 8970 + }, + { + "word": "ferro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "railway (informal)", + "example_sentence_native": "El tren va por el ferro.", + "example_sentence_english": "The train goes by the railway.", + "pos": "noun", + "word_frequency": 8972 + }, + { + "word": "fichaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signing (of a player;employee)", + "example_sentence_native": "El nuevo fichaje del equipo es prometedor.", + "example_sentence_english": "The team's new signing is promising.", + "pos": "noun", + "word_frequency": 8973 + }, + { + "word": "flojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loose", + "example_sentence_native": "El nudo estaba flojo y se deshizo.", + "example_sentence_english": "The knot was loose and came undone.", + "pos": "adjective", + "word_frequency": 8974 + }, + { + "word": "folklore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folklore", + "example_sentence_native": "El folklore de la región es muy rico.", + "example_sentence_english": "The region's folklore is very rich.", + "pos": "noun", + "word_frequency": 8976 + }, + { + "word": "formular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formulate", + "example_sentence_native": "Necesitamos formular una nueva estrategia.", + "example_sentence_english": "We need to formulate a new strategy.", + "pos": "verb", + "word_frequency": 8977 + }, + { + "word": "gestación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gestation", + "example_sentence_native": "El período de gestación de un elefante es largo.", + "example_sentence_english": "The gestation period of an elephant is long.", + "pos": "noun", + "word_frequency": 8979 + }, + { + "word": "guardería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daycare", + "example_sentence_native": "Mi hijo va a la guardería por las mañanas.", + "example_sentence_english": "My son goes to daycare in the mornings.", + "pos": "noun", + "word_frequency": 8980 + }, + { + "word": "guitarrista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guitarist", + "example_sentence_native": "El guitarrista tocó un solo increíble.", + "example_sentence_english": "The guitarist played an incredible solo.", + "pos": "noun", + "word_frequency": 8981 + }, + { + "word": "igualar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to equalize", + "example_sentence_native": "El equipo logró igualar el marcador.", + "example_sentence_english": "The team managed to equalize the score.", + "pos": "verb", + "word_frequency": 8984 + }, + { + "word": "implantar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implant", + "example_sentence_native": "Van a implantar un nuevo sistema de gestión.", + "example_sentence_english": "They are going to implement a new management system.", + "pos": "verb", + "word_frequency": 8985 + }, + { + "word": "implementado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implemented", + "example_sentence_native": "El plan ya está implementado.", + "example_sentence_english": "The plan is already implemented.", + "pos": "adjective", + "word_frequency": 8986 + }, + { + "word": "inconstitucional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconstitutional", + "example_sentence_native": "La ley fue declarada inconstitucional.", + "example_sentence_english": "The law was declared unconstitutional.", + "pos": "adjective", + "word_frequency": 8987 + }, + { + "word": "indie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indie", + "example_sentence_native": "Le gusta la música indie.", + "example_sentence_english": "He likes indie music.", + "pos": "noun", + "word_frequency": 8989 + }, + { + "word": "innegable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeniable", + "example_sentence_native": "Su talento es innegable.", + "example_sentence_english": "His talent is undeniable.", + "pos": "adjective", + "word_frequency": 8990 + }, + { + "word": "internamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internally", + "example_sentence_native": "La empresa resolvió el problema internamente.", + "example_sentence_english": "The company resolved the problem internally.", + "pos": "adverb", + "word_frequency": 8991 + }, + { + "word": "interrumpido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interrupted", + "example_sentence_native": "La reunión fue interrumpida por una llamada.", + "example_sentence_english": "The meeting was interrupted by a call.", + "pos": "adjective", + "word_frequency": 8992 + }, + { + "word": "linterna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flashlight", + "example_sentence_native": "Necesitamos una linterna para ver en la oscuridad.", + "example_sentence_english": "We need a flashlight to see in the dark.", + "pos": "noun", + "word_frequency": 8996 + }, + { + "word": "loro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parrot", + "example_sentence_native": "El loro puede imitar la voz humana.", + "example_sentence_english": "The parrot can imitate the human voice.", + "pos": "noun", + "word_frequency": 8997 + }, + { + "word": "macro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "macro (e.g.;macro-operation)", + "example_sentence_native": "Se aprobó una macro operación financiera.", + "example_sentence_english": "A macro financial operation was approved.", + "pos": "noun", + "word_frequency": 8999 + }, + { + "word": "magnético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnetic", + "example_sentence_native": "El campo magnético de la Tierra nos protege.", + "example_sentence_english": "The Earth's magnetic field protects us.", + "pos": "adjective", + "word_frequency": 9000 + }, + { + "word": "marine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marine (soldier)", + "example_sentence_native": "Un marine es un soldado de infantería de marina.", + "example_sentence_english": "A marine is a naval infantry soldier.", + "pos": "noun", + "word_frequency": 9001 + }, + { + "word": "marroquí", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Moroccan", + "example_sentence_native": "Ella es de origen marroquí.", + "example_sentence_english": "She is of Moroccan origin.", + "pos": "adjective", + "word_frequency": 9002 + }, + { + "word": "navaja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pocket knife", + "example_sentence_native": "Usó una navaja para abrir el paquete.", + "example_sentence_english": "He used a pocket knife to open the package.", + "pos": "noun", + "word_frequency": 9006 + }, + { + "word": "oficialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pro-government supporter", + "example_sentence_native": "El partido oficialista ganó las elecciones.", + "example_sentence_english": "The pro-government party won the elections.", + "pos": "noun", + "word_frequency": 9007 + }, + { + "word": "patronal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employer's;management's", + "example_sentence_native": "La parte patronal y los sindicatos llegaron a un acuerdo.", + "example_sentence_english": "The employer's side and the unions reached an agreement.", + "pos": "adjective", + "word_frequency": 9008 + }, + { + "word": "pesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weight (for exercise);dumbbell", + "example_sentence_native": "Levanta pesas en el gimnasio.", + "example_sentence_english": "He lifts weights at the gym.", + "pos": "noun", + "word_frequency": 9009 + }, + { + "word": "porcelana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porcelain", + "example_sentence_native": "La taza es de porcelana fina.", + "example_sentence_english": "The cup is made of fine porcelain.", + "pos": "noun", + "word_frequency": 9011 + }, + { + "word": "potasio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potassium", + "example_sentence_native": "El plátano es rico en potasio.", + "example_sentence_english": "Bananas are rich in potassium.", + "pos": "noun", + "word_frequency": 9012 + }, + { + "word": "profecía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophecy", + "example_sentence_native": "La antigua profecía se hizo realidad.", + "example_sentence_english": "The ancient prophecy came true.", + "pos": "noun", + "word_frequency": 9013 + }, + { + "word": "provocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provoked;caused", + "example_sentence_native": "El incendio fue provocado intencionadamente.", + "example_sentence_english": "The fire was intentionally caused.", + "pos": "adjective", + "word_frequency": 9014 + }, + { + "word": "quemadura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burn", + "example_sentence_native": "Se hizo una quemadura en la mano.", + "example_sentence_english": "He got a burn on his hand.", + "pos": "noun", + "word_frequency": 9015 + }, + { + "word": "ratito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a little while;a short time", + "example_sentence_native": "Espera un ratito, por favor.", + "example_sentence_english": "Wait a little while, please.", + "pos": "noun", + "word_frequency": 9016 + }, + { + "word": "rebeldía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellion;defiance", + "example_sentence_native": "Su rebeldía era evidente desde joven.", + "example_sentence_english": "His defiance was evident from a young age.", + "pos": "noun", + "word_frequency": 9017 + }, + { + "word": "relax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxation;chill-out", + "example_sentence_native": "Necesito un poco de relax después del trabajo.", + "example_sentence_english": "I need a bit of relaxation after work.", + "pos": "noun", + "word_frequency": 9018 + }, + { + "word": "reliquia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relic", + "example_sentence_native": "La iglesia guarda una antigua reliquia.", + "example_sentence_english": "The church keeps an ancient relic.", + "pos": "noun", + "word_frequency": 9019 + }, + { + "word": "represalia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprisal;retaliation", + "example_sentence_native": "Tomaron represalias contra los manifestantes.", + "example_sentence_english": "They took reprisals against the protesters.", + "pos": "noun", + "word_frequency": 9020 + }, + { + "word": "respetuoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respectful", + "example_sentence_native": "Siempre es muy respetuoso con los demás.", + "example_sentence_english": "He is always very respectful towards others.", + "pos": "adjective", + "word_frequency": 9021 + }, + { + "word": "revolucion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revolution", + "example_sentence_native": "La Revolución Francesa cambió la historia.", + "example_sentence_english": "The French Revolution changed history.", + "pos": "noun", + "word_frequency": 9022 + }, + { + "word": "rima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhyme", + "example_sentence_native": "El poema tiene una rima perfecta.", + "example_sentence_english": "The poem has a perfect rhyme.", + "pos": "noun", + "word_frequency": 9023 + }, + { + "word": "sancionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanctioned;penalized", + "example_sentence_native": "El jugador fue sancionado por su conducta.", + "example_sentence_english": "The player was sanctioned for his conduct.", + "pos": "adjective", + "word_frequency": 9026 + }, + { + "word": "seguidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsequently;next", + "example_sentence_native": "Terminó su discurso y seguidamente abandonó el escenario.", + "example_sentence_english": "He finished his speech and subsequently left the stage.", + "pos": "adverb", + "word_frequency": 9028 + }, + { + "word": "solucion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "solution", + "example_sentence_native": "Encontraron una solución al problema.", + "example_sentence_english": "They found a solution to the problem.", + "pos": "noun", + "word_frequency": 9029 + }, + { + "word": "spot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercial;spot (advertisement)", + "example_sentence_native": "Vimos un spot publicitario muy creativo.", + "example_sentence_english": "We saw a very creative commercial spot.", + "pos": "noun", + "word_frequency": 9032 + }, + { + "word": "sumisión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "submission", + "example_sentence_native": "Su sumisión a la autoridad era total.", + "example_sentence_english": "His submission to authority was total.", + "pos": "noun", + "word_frequency": 9033 + }, + { + "word": "supervisar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supervise", + "example_sentence_native": "El gerente debe supervisar al equipo.", + "example_sentence_english": "The manager must supervise the team.", + "pos": "verb", + "word_frequency": 9034 + }, + { + "word": "suscrito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subscribed;signed (up to)", + "example_sentence_native": "El acuerdo fue suscrito por ambas partes.", + "example_sentence_english": "The agreement was signed by both parties.", + "pos": "adjective", + "word_frequency": 9035 + }, + { + "word": "sátira", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satire", + "example_sentence_native": "La obra es una sátira social.", + "example_sentence_english": "The play is a social satire.", + "pos": "noun", + "word_frequency": 9036 + }, + { + "word": "take", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "take (in film;video)", + "example_sentence_native": "El director pidió otro take de la escena.", + "example_sentence_english": "The director asked for another take of the scene.", + "pos": "noun", + "word_frequency": 9037 + }, + { + "word": "tardío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "late;tardy", + "example_sentence_native": "La respuesta llegó de forma tardía.", + "example_sentence_english": "The response arrived late.", + "pos": "adjective", + "word_frequency": 9038 + }, + { + "word": "tenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tense", + "example_sentence_native": "El ambiente en la reunión era muy tenso.", + "example_sentence_english": "The atmosphere in the meeting was very tense.", + "pos": "adjective", + "word_frequency": 9039 + }, + { + "word": "trasfondo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "background;underlying context", + "example_sentence_native": "El trasfondo político de la decisión es complejo.", + "example_sentence_english": "The political background of the decision is complex.", + "pos": "noun", + "word_frequency": 9040 + }, + { + "word": "traves", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossbeam;obstacle", + "example_sentence_native": "Superó todos los traves en su camino.", + "example_sentence_english": "He overcame all the obstacles in his path.", + "pos": "noun", + "word_frequency": 9041 + }, + { + "word": "tímido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shy;timid", + "example_sentence_native": "Es un niño muy tímido.", + "example_sentence_english": "He is a very shy child.", + "pos": "adjective", + "word_frequency": 9043 + }, + { + "word": "tópico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "topic;cliché", + "example_sentence_native": "Ese es un tópico común en la literatura.", + "example_sentence_english": "That is a common topic in literature.", + "pos": "noun", + "word_frequency": 9044 + }, + { + "word": "vainilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vanilla", + "example_sentence_native": "Me gusta el helado de vainilla.", + "example_sentence_english": "I like vanilla ice cream.", + "pos": "noun", + "word_frequency": 9046 + }, + { + "word": "yerno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "son-in-law", + "example_sentence_native": "Mi yerno es muy amable.", + "example_sentence_english": "My son-in-law is very kind.", + "pos": "noun", + "word_frequency": 9049 + }, + { + "word": "átomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atom", + "example_sentence_native": "El átomo es la unidad más pequeña de la materia.", + "example_sentence_english": "The atom is the smallest unit of matter.", + "pos": "noun", + "word_frequency": 9050 + }, + { + "word": "adjetivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjective", + "example_sentence_native": "\"Grande\" es un adjetivo.", + "example_sentence_english": "\"Big\" is an adjective.", + "pos": "noun", + "word_frequency": 9051 + }, + { + "word": "agresividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressiveness;aggression", + "example_sentence_native": "Su agresividad en el debate fue notable.", + "example_sentence_english": "His aggressiveness in the debate was notable.", + "pos": "noun", + "word_frequency": 9052 + }, + { + "word": "alegria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joy;happiness", + "example_sentence_native": "Su llegada trajo mucha alegría a la casa.", + "example_sentence_english": "Her arrival brought much joy to the house.", + "pos": "noun", + "word_frequency": 9053 + }, + { + "word": "amablemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kindly;amicably", + "example_sentence_native": "Me saludó amablemente.", + "example_sentence_english": "He greeted me kindly.", + "pos": "adverb", + "word_frequency": 9054 + }, + { + "word": "anotación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annotation;note;scoring", + "example_sentence_native": "Hizo una anotación importante en el margen.", + "example_sentence_english": "He made an important annotation in the margin.", + "pos": "noun", + "word_frequency": 9055 + }, + { + "word": "aproximar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach;to approximate", + "example_sentence_native": "El tren se está aproximando a la estación.", + "example_sentence_english": "The train is approaching the station.", + "pos": "verb", + "word_frequency": 9056 + }, + { + "word": "asesorar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advise;to counsel", + "example_sentence_native": "Necesito que me asesores sobre este tema.", + "example_sentence_english": "I need you to advise me on this matter.", + "pos": "verb", + "word_frequency": 9058 + }, + { + "word": "asignar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assign;to allocate", + "example_sentence_native": "Me asignaron una nueva tarea.", + "example_sentence_english": "They assigned me a new task.", + "pos": "verb", + "word_frequency": 9059 + }, + { + "word": "astronomía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomy", + "example_sentence_native": "La astronomía es el estudio de los cuerpos celestes.", + "example_sentence_english": "Astronomy is the study of celestial bodies.", + "pos": "noun", + "word_frequency": 9060 + }, + { + "word": "batido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "milkshake;smoothie", + "example_sentence_native": "Quiero un batido de fresa.", + "example_sentence_english": "I want a strawberry milkshake.", + "pos": "noun", + "word_frequency": 9063 + }, + { + "word": "blusa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blouse", + "example_sentence_native": "Se puso una blusa nueva.", + "example_sentence_english": "She put on a new blouse.", + "pos": "noun", + "word_frequency": 9066 + }, + { + "word": "bulto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lump;package;bundle", + "example_sentence_native": "Llevaba un bulto grande en la espalda.", + "example_sentence_english": "He was carrying a large bundle on his back.", + "pos": "noun", + "word_frequency": 9068 + }, + { + "word": "cala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cove;inlet;calla lily", + "example_sentence_native": "Descubrimos una hermosa cala escondida.", + "example_sentence_english": "We discovered a beautiful hidden cove.", + "pos": "noun", + "word_frequency": 9069 + }, + { + "word": "cash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cash", + "example_sentence_native": "Prefiero pagar en cash.", + "example_sentence_english": "I prefer to pay in cash.", + "pos": "noun", + "word_frequency": 9070 + }, + { + "word": "casualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casually;by chance;coincidentally", + "example_sentence_native": "Casualmente, nos encontramos en la calle.", + "example_sentence_english": "Coincidentally, we met on the street.", + "pos": "adverb", + "word_frequency": 9072 + }, + { + "word": "celta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Celt;Celtic", + "example_sentence_native": "La cultura celta es muy rica.", + "example_sentence_english": "Celtic culture is very rich.", + "pos": "noun", + "word_frequency": 9073 + }, + { + "word": "cerco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence;siege;circle", + "example_sentence_native": "Levantaron un cerco alrededor del jardín.", + "example_sentence_english": "They put up a fence around the garden.", + "pos": "noun", + "word_frequency": 9074 + }, + { + "word": "cerda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sow (female pig);bristle", + "example_sentence_native": "La cerda tuvo una camada de diez lechones.", + "example_sentence_english": "The sow had a litter of ten piglets.", + "pos": "noun", + "word_frequency": 9075 + }, + { + "word": "challenge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "challenge", + "example_sentence_native": "Aceptó el challenge de correr la maratón.", + "example_sentence_english": "He accepted the challenge of running the marathon.", + "pos": "noun", + "word_frequency": 9076 + }, + { + "word": "change", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change (money;alteration)", + "example_sentence_native": "Necesito change para el autobús.", + "example_sentence_english": "I need change for the bus.", + "pos": "noun", + "word_frequency": 9077 + }, + { + "word": "chisme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gossip;rumor", + "example_sentence_native": "No me gustan los chismes.", + "example_sentence_english": "I don't like gossip.", + "pos": "noun", + "word_frequency": 9078 + }, + { + "word": "circunscripción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constituency;district", + "example_sentence_native": "Cada circunscripción elige a un representante.", + "example_sentence_english": "Each constituency elects a representative.", + "pos": "noun", + "word_frequency": 9079 + }, + { + "word": "comunicacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "communication", + "example_sentence_native": "La comunicación es clave para el éxito.", + "example_sentence_english": "Communication is key to success.", + "pos": "noun", + "word_frequency": 9082 + }, + { + "word": "concurrencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attendance;concurrence", + "example_sentence_native": "La concurrencia al evento fue masiva.", + "example_sentence_english": "The attendance at the event was massive.", + "pos": "noun", + "word_frequency": 9083 + }, + { + "word": "contingente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contingent;quota", + "example_sentence_native": "Un pequeño contingente de tropas fue enviado.", + "example_sentence_english": "A small contingent of troops was sent.", + "pos": "noun", + "word_frequency": 9084 + }, + { + "word": "demolición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demolition", + "example_sentence_native": "El edificio está programado para demolición.", + "example_sentence_english": "The building is scheduled for demolition.", + "pos": "noun", + "word_frequency": 9086 + }, + { + "word": "deprimido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressed;low", + "example_sentence_native": "Se sentía deprimido después de las malas noticias.", + "example_sentence_english": "He felt depressed after the bad news.", + "pos": "adjective", + "word_frequency": 9087 + }, + { + "word": "desalojo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eviction;displacement", + "example_sentence_native": "Hubo un desalojo de los ocupantes ilegales.", + "example_sentence_english": "There was an eviction of the illegal occupants.", + "pos": "noun", + "word_frequency": 9088 + }, + { + "word": "desembarco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing;disembarkation", + "example_sentence_native": "El desembarco de las tropas fue exitoso.", + "example_sentence_english": "The landing of the troops was successful.", + "pos": "noun", + "word_frequency": 9089 + }, + { + "word": "despejado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clear;unclouded", + "example_sentence_native": "El cielo está despejado hoy.", + "example_sentence_english": "The sky is clear today.", + "pos": "adjective", + "word_frequency": 9090 + }, + { + "word": "detrimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detriment;harm", + "example_sentence_native": "Su decisión fue en detrimento de la empresa.", + "example_sentence_english": "His decision was to the detriment of the company.", + "pos": "noun", + "word_frequency": 9091 + }, + { + "word": "dictado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dictation;decree", + "example_sentence_native": "Practicamos el dictado en clase de español.", + "example_sentence_english": "We practiced dictation in Spanish class.", + "pos": "noun", + "word_frequency": 9092 + }, + { + "word": "disidente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissident", + "example_sentence_native": "El gobierno arrestó a varios disidentes.", + "example_sentence_english": "The government arrested several dissidents.", + "pos": "noun", + "word_frequency": 9093 + }, + { + "word": "dona", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "donut", + "example_sentence_native": "Me gusta comer una dona con mi café.", + "example_sentence_english": "I like to eat a donut with my coffee.", + "pos": "noun", + "word_frequency": 9094 + }, + { + "word": "eliminatoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualifying round;knockout stage", + "example_sentence_native": "El equipo ganó la eliminatoria y avanzó.", + "example_sentence_english": "The team won the qualifying round and advanced.", + "pos": "noun", + "word_frequency": 9096 + }, + { + "word": "emotivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emotional;moving", + "example_sentence_native": "Fue un discurso muy emotivo.", + "example_sentence_english": "It was a very emotional speech.", + "pos": "adjective", + "word_frequency": 9097 + }, + { + "word": "ensenada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cove;inlet", + "example_sentence_native": "Navegamos hasta una pequeña ensenada.", + "example_sentence_english": "We sailed to a small cove.", + "pos": "noun", + "word_frequency": 9098 + }, + { + "word": "filosófico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philosophical", + "example_sentence_native": "Tuvimos una discusión filosófica sobre la vida.", + "example_sentence_english": "We had a philosophical discussion about life.", + "pos": "adjective", + "word_frequency": 9102 + }, + { + "word": "fiscalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auditing;oversight", + "example_sentence_native": "La fiscalización de las cuentas es necesaria.", + "example_sentence_english": "The auditing of the accounts is necessary.", + "pos": "noun", + "word_frequency": 9103 + }, + { + "word": "formidable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formidable;excellent", + "example_sentence_native": "El equipo mostró un rendimiento formidable.", + "example_sentence_english": "The team showed a formidable performance.", + "pos": "adjective", + "word_frequency": 9104 + }, + { + "word": "fósforo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "match;phosphorus", + "example_sentence_native": "Necesito un fósforo para encender la vela.", + "example_sentence_english": "I need a match to light the candle.", + "pos": "noun", + "word_frequency": 9107 + }, + { + "word": "ilimitado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlimited;boundless", + "example_sentence_native": "Tiene acceso ilimitado a la información.", + "example_sentence_english": "He has unlimited access to information.", + "pos": "adjective", + "word_frequency": 9109 + }, + { + "word": "lanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spear;lance", + "example_sentence_native": "El guerrero llevaba una lanza en la mano.", + "example_sentence_english": "The warrior carried a spear in his hand.", + "pos": "noun", + "word_frequency": 9115 + }, + { + "word": "limbo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "limbo", + "example_sentence_native": "El proyecto está en el limbo, sin decisión final.", + "example_sentence_english": "The project is in limbo, with no final decision.", + "pos": "noun", + "word_frequency": 9117 + }, + { + "word": "liquidez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liquidity", + "example_sentence_native": "La empresa tiene problemas de liquidez.", + "example_sentence_english": "The company has liquidity problems.", + "pos": "noun", + "word_frequency": 9118 + }, + { + "word": "mayoritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majority (adj.);mainstream", + "example_sentence_native": "La opinión mayoritaria apoya la nueva ley.", + "example_sentence_english": "The majority opinion supports the new law.", + "pos": "adjective", + "word_frequency": 9123 + }, + { + "word": "mirador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viewpoint;lookout point", + "example_sentence_native": "Desde el mirador se puede ver toda la ciudad.", + "example_sentence_english": "From the viewpoint, you can see the whole city.", + "pos": "noun", + "word_frequency": 9124 + }, + { + "word": "mudanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move;relocation", + "example_sentence_native": "Estamos planeando nuestra mudanza para el próximo mes.", + "example_sentence_english": "We are planning our move for next month.", + "pos": "noun", + "word_frequency": 9126 + }, + { + "word": "mula", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mule", + "example_sentence_native": "La mula es un animal híbrido.", + "example_sentence_english": "The mule is a hybrid animal.", + "pos": "noun", + "word_frequency": 9127 + }, + { + "word": "mundialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worldwide;globally", + "example_sentence_native": "Este problema es reconocido mundialmente.", + "example_sentence_english": "This problem is recognized worldwide.", + "pos": "adverb", + "word_frequency": 9129 + }, + { + "word": "nicaragüense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nicaraguan", + "example_sentence_native": "Mi amigo es nicaragüense.", + "example_sentence_english": "My friend is Nicaraguan.", + "pos": "adjective", + "word_frequency": 9130 + }, + { + "word": "ocular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ocular;eye-related", + "example_sentence_native": "El examen ocular es importante para la salud visual.", + "example_sentence_english": "The ocular exam is important for visual health.", + "pos": "adjective", + "word_frequency": 9131 + }, + { + "word": "ofrenda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offering;tribute", + "example_sentence_native": "Hicieron una ofrenda floral en el altar.", + "example_sentence_english": "They made a floral offering at the altar.", + "pos": "noun", + "word_frequency": 9132 + }, + { + "word": "patrimonial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patrimonial;heritage-related", + "example_sentence_native": "Los bienes patrimoniales deben ser protegidos.", + "example_sentence_english": "Patrimonial assets must be protected.", + "pos": "adjective", + "word_frequency": 9135 + }, + { + "word": "patrocinador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsor", + "example_sentence_native": "La empresa es el principal patrocinador del evento.", + "example_sentence_english": "The company is the main sponsor of the event.", + "pos": "noun", + "word_frequency": 9136 + }, + { + "word": "patrona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patroness;female boss", + "example_sentence_native": "La Virgen de Guadalupe es la patrona de México.", + "example_sentence_english": "The Virgin of Guadalupe is the patroness of Mexico.", + "pos": "noun", + "word_frequency": 9137 + }, + { + "word": "piratería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piracy", + "example_sentence_native": "La piratería de software es un delito.", + "example_sentence_english": "Software piracy is a crime.", + "pos": "noun", + "word_frequency": 9139 + }, + { + "word": "platino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "platinum", + "example_sentence_native": "El platino es un metal precioso.", + "example_sentence_english": "Platinum is a precious metal.", + "pos": "noun", + "word_frequency": 9140 + }, + { + "word": "principe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prince", + "example_sentence_native": "El príncipe vive en un castillo.", + "example_sentence_english": "The prince lives in a castle.", + "pos": "noun", + "word_frequency": 9142 + }, + { + "word": "pronunciamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pronouncement;declaration", + "example_sentence_native": "El gobierno hizo un pronunciamiento oficial sobre el tema.", + "example_sentence_english": "The government made an official pronouncement on the issue.", + "pos": "noun", + "word_frequency": 9143 + }, + { + "word": "prudencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prudence;caution", + "example_sentence_native": "Actuó con prudencia en una situación difícil.", + "example_sentence_english": "He acted with prudence in a difficult situation.", + "pos": "noun", + "word_frequency": 9144 + }, + { + "word": "puertorriqueño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Puerto Rican", + "example_sentence_native": "Ella es una cantante puertorriqueña muy famosa.", + "example_sentence_english": "She is a very famous Puerto Rican singer.", + "pos": "adjective", + "word_frequency": 9145 + }, + { + "word": "rebaja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discount;reduction;sale", + "example_sentence_native": "Hay grandes rebajas en la tienda este fin de semana.", + "example_sentence_english": "There are big sales at the store this weekend.", + "pos": "noun", + "word_frequency": 9146 + }, + { + "word": "regente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regent", + "example_sentence_native": "El príncipe fue nombrado regente durante la minoría de edad del rey.", + "example_sentence_english": "The prince was appointed regent during the king's minority.", + "pos": "noun", + "word_frequency": 9147 + }, + { + "word": "renunciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resigned;renounced", + "example_sentence_native": "El candidato renunciado no asistirá al debate.", + "example_sentence_english": "The resigned candidate will not attend the debate.", + "pos": "adjective", + "word_frequency": 9148 + }, + { + "word": "repetidamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repeatedly", + "example_sentence_native": "Le advirtió repetidamente que no lo hiciera.", + "example_sentence_english": "He repeatedly warned him not to do it.", + "pos": "adverb", + "word_frequency": 9149 + }, + { + "word": "resaca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hangover;undertow", + "example_sentence_native": "Tengo una resaca terrible después de la fiesta.", + "example_sentence_english": "I have a terrible hangover after the party.", + "pos": "noun", + "word_frequency": 9150 + }, + { + "word": "revocar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revoke;repeal;annul", + "example_sentence_native": "La corte decidió revocar la sentencia anterior.", + "example_sentence_english": "The court decided to revoke the previous sentence.", + "pos": "verb", + "word_frequency": 9152 + }, + { + "word": "sobresaliente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outstanding;excellent", + "example_sentence_native": "Su desempeño en el examen fue sobresaliente.", + "example_sentence_english": "His performance on the exam was outstanding.", + "pos": "adjective", + "word_frequency": 9154 + }, + { + "word": "solista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solist", + "example_sentence_native": "La solista cantó una hermosa aria.", + "example_sentence_english": "The soloist sang a beautiful aria.", + "pos": "noun", + "word_frequency": 9155 + }, + { + "word": "torrente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torrent;stream", + "example_sentence_native": "Después de la lluvia, el pequeño arroyo se convirtió en un torrente.", + "example_sentence_english": "After the rain, the small stream turned into a torrent.", + "pos": "noun", + "word_frequency": 9162 + }, + { + "word": "trazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trace;to draw;to outline", + "example_sentence_native": "El arquitecto trazó los planos del nuevo edificio.", + "example_sentence_english": "The architect traced the plans for the new building.", + "pos": "verb", + "word_frequency": 9164 + }, + { + "word": "tsunami", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tsunami", + "example_sentence_native": "El tsunami causó una gran devastación en la costa.", + "example_sentence_english": "The tsunami caused great devastation on the coast.", + "pos": "noun", + "word_frequency": 9165 + }, + { + "word": "urgir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to urge;to be urgent", + "example_sentence_native": "Urge encontrar una solución a este problema.", + "example_sentence_english": "It is urgent to find a solution to this problem.", + "pos": "verb", + "word_frequency": 9167 + }, + { + "word": "vehicular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vehicular", + "example_sentence_native": "El tráfico vehicular era muy denso esta mañana.", + "example_sentence_english": "The vehicular traffic was very dense this morning.", + "pos": "adjective", + "word_frequency": 9169 + }, + { + "word": "ventanilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small window;car window;ticket window", + "example_sentence_native": "Por favor, baje la ventanilla para pagar el peaje.", + "example_sentence_english": "Please, roll down the window to pay the toll.", + "pos": "noun", + "word_frequency": 9170 + }, + { + "word": "afluencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influx;flow;attendance", + "example_sentence_native": "Hubo una gran afluencia de público al concierto.", + "example_sentence_english": "There was a large influx of public to the concert.", + "pos": "noun", + "word_frequency": 9175 + }, + { + "word": "agro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agriculture;agro-", + "example_sentence_native": "El sector agro es fundamental para la economía del país.", + "example_sentence_english": "The agro sector is fundamental for the country's economy.", + "pos": "noun", + "word_frequency": 9176 + }, + { + "word": "alameda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tree-lined promenade;poplar grove", + "example_sentence_native": "Paseamos por la alameda del parque.", + "example_sentence_english": "We walked along the park's tree-lined promenade.", + "pos": "noun", + "word_frequency": 9177 + }, + { + "word": "aparcamiento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parking lot;parking space", + "example_sentence_native": "Encontré un aparcamiento libre cerca del centro comercial.", + "example_sentence_english": "I found a free parking space near the shopping center.", + "pos": "noun", + "word_frequency": 9182 + }, + { + "word": "arrastrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drag;to pull;to carry along", + "example_sentence_native": "Tuvo que arrastrar la pesada maleta por las escaleras.", + "example_sentence_english": "He had to drag the heavy suitcase up the stairs.", + "pos": "verb", + "word_frequency": 9183 + }, + { + "word": "arrepentimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regret;repentance", + "example_sentence_native": "Sintió un profundo arrepentimiento por sus acciones.", + "example_sentence_english": "He felt deep regret for his actions.", + "pos": "noun", + "word_frequency": 9184 + }, + { + "word": "aseo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet;restroom;hygiene", + "example_sentence_native": "Necesito ir al aseo, por favor.", + "example_sentence_english": "I need to go to the restroom, please.", + "pos": "noun", + "word_frequency": 9185 + }, + { + "word": "ateo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atheist", + "example_sentence_native": "Él se declara ateo y no cree en dioses.", + "example_sentence_english": "He declares himself an atheist and does not believe in gods.", + "pos": "noun", + "word_frequency": 9186 + }, + { + "word": "atroz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atrocious;terrible;dreadful", + "example_sentence_native": "La situación en el país es atroz debido a la guerra.", + "example_sentence_english": "The situation in the country is atrocious due to the war.", + "pos": "adjective", + "word_frequency": 9187 + }, + { + "word": "autismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autism", + "example_sentence_native": "El autismo es un trastorno del desarrollo.", + "example_sentence_english": "Autism is a developmental disorder.", + "pos": "noun", + "word_frequency": 9188 + }, + { + "word": "bajón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dip;slump;low mood", + "example_sentence_native": "Después de la fiesta, tuve un bajón de energía.", + "example_sentence_english": "After the party, I had a dip in energy.", + "pos": "noun", + "word_frequency": 9190 + }, + { + "word": "budista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Buddhist", + "example_sentence_native": "Ella practica la meditación como budista.", + "example_sentence_english": "She practices meditation as a Buddhist.", + "pos": "noun", + "word_frequency": 9194 + }, + { + "word": "burlar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mock;to make fun of;to evade", + "example_sentence_native": "No intentes burlar las reglas del juego.", + "example_sentence_english": "Don't try to evade the rules of the game.", + "pos": "verb", + "word_frequency": 9195 + }, + { + "word": "calculado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calculated;planned", + "example_sentence_native": "Fue un riesgo calculado, pero salió bien.", + "example_sentence_english": "It was a calculated risk, but it turned out well.", + "pos": "adjective", + "word_frequency": 9196 + }, + { + "word": "calvario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordeal;Calvary;suffering", + "example_sentence_native": "El proceso de recuperación fue un verdadero calvario para él.", + "example_sentence_english": "The recovery process was a true ordeal for him.", + "pos": "noun", + "word_frequency": 9197 + }, + { + "word": "caracter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character;nature;personality", + "example_sentence_native": "Tiene un carácter muy fuerte y decidido.", + "example_sentence_english": "He has a very strong and determined character.", + "pos": "noun", + "word_frequency": 9199 + }, + { + "word": "cautiverio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivity", + "example_sentence_native": "El animal fue liberado de su cautiverio.", + "example_sentence_english": "The animal was released from its captivity.", + "pos": "noun", + "word_frequency": 9200 + }, + { + "word": "chiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goat", + "example_sentence_native": "La chiva pastaba en el campo.", + "example_sentence_english": "The goat was grazing in the field.", + "pos": "noun", + "word_frequency": 9201 + }, + { + "word": "chota", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cop (slang);informer", + "example_sentence_native": "Ten cuidado, hay una chota cerca.", + "example_sentence_english": "Be careful, there's a cop nearby.", + "pos": "noun", + "word_frequency": 9202 + }, + { + "word": "claustro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloister;faculty", + "example_sentence_native": "El claustro de profesores se reunió.", + "example_sentence_english": "The faculty met.", + "pos": "noun", + "word_frequency": 9206 + }, + { + "word": "code", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "code", + "example_sentence_native": "Necesito escribir el code para el programa.", + "example_sentence_english": "I need to write the code for the program.", + "pos": "noun", + "word_frequency": 9208 + }, + { + "word": "combustión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combustion", + "example_sentence_native": "La combustión del motor produce energía.", + "example_sentence_english": "The engine's combustion produces energy.", + "pos": "noun", + "word_frequency": 9209 + }, + { + "word": "complacer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to please;to humor", + "example_sentence_native": "Intentó complacer a sus padres.", + "example_sentence_english": "He tried to please his parents.", + "pos": "verb", + "word_frequency": 9210 + }, + { + "word": "compás", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass;rhythm;beat", + "example_sentence_native": "El marinero usó el compás para navegar.", + "example_sentence_english": "The sailor used the compass to navigate.", + "pos": "noun", + "word_frequency": 9212 + }, + { + "word": "conquistador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conqueror", + "example_sentence_native": "Los conquistadores llegaron a nuevas tierras.", + "example_sentence_english": "The conquerors arrived in new lands.", + "pos": "noun", + "word_frequency": 9213 + }, + { + "word": "constructor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "builder;constructor", + "example_sentence_native": "El constructor terminó la casa a tiempo.", + "example_sentence_english": "The builder finished the house on time.", + "pos": "noun", + "word_frequency": 9214 + }, + { + "word": "contagio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contagion;infection", + "example_sentence_native": "Se tomaron medidas para evitar el contagio.", + "example_sentence_english": "Measures were taken to prevent contagion.", + "pos": "noun", + "word_frequency": 9215 + }, + { + "word": "contaminante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polluting;contaminant", + "example_sentence_native": "La fábrica emite gases contaminantes.", + "example_sentence_english": "The factory emits polluting gases.", + "pos": "adjective", + "word_frequency": 9216 + }, + { + "word": "convertido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "converted", + "example_sentence_native": "Es un edificio convertido en museo.", + "example_sentence_english": "It's a building converted into a museum.", + "pos": "adjective", + "word_frequency": 9217 + }, + { + "word": "cordura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sanity;common sense", + "example_sentence_native": "Puso en duda su cordura.", + "example_sentence_english": "He questioned his sanity.", + "pos": "noun", + "word_frequency": 9218 + }, + { + "word": "descuido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oversight;carelessness;neglect", + "example_sentence_native": "Fue un descuido por su parte.", + "example_sentence_english": "It was an oversight on his part.", + "pos": "noun", + "word_frequency": 9219 + }, + { + "word": "desplazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "displaced person", + "example_sentence_native": "Ayudaron a los desplazados por el conflicto.", + "example_sentence_english": "They helped the people displaced by the conflict.", + "pos": "noun", + "word_frequency": 9220 + }, + { + "word": "emplazamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "site;location;summons", + "example_sentence_native": "El emplazamiento de la nueva fábrica es ideal.", + "example_sentence_english": "The location of the new factory is ideal.", + "pos": "noun", + "word_frequency": 9223 + }, + { + "word": "endeudamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indebtedness;debt", + "example_sentence_native": "El país enfrenta un alto nivel de endeudamiento.", + "example_sentence_english": "The country faces a high level of indebtedness.", + "pos": "noun", + "word_frequency": 9224 + }, + { + "word": "enfocar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to focus;to approach", + "example_sentence_native": "Necesitamos enfocar nuestros esfuerzos en este proyecto.", + "example_sentence_english": "We need to focus our efforts on this project.", + "pos": "verb", + "word_frequency": 9225 + }, + { + "word": "ermita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermitage;chapel", + "example_sentence_native": "La ermita está en la cima de la colina.", + "example_sentence_english": "The hermitage is on top of the hill.", + "pos": "noun", + "word_frequency": 9226 + }, + { + "word": "erudito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scholar;erudite person", + "example_sentence_native": "Es un erudito en historia antigua.", + "example_sentence_english": "He is a scholar of ancient history.", + "pos": "noun", + "word_frequency": 9227 + }, + { + "word": "espantoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dreadful;frightful;awful", + "example_sentence_native": "La película era espantosa.", + "example_sentence_english": "The movie was dreadful.", + "pos": "adjective", + "word_frequency": 9228 + }, + { + "word": "estanque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pond;tank", + "example_sentence_native": "Hay peces en el estanque del jardín.", + "example_sentence_english": "There are fish in the garden pond.", + "pos": "noun", + "word_frequency": 9229 + }, + { + "word": "excluir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exclude", + "example_sentence_native": "No podemos excluir a nadie del grupo.", + "example_sentence_english": "We cannot exclude anyone from the group.", + "pos": "verb", + "word_frequency": 9230 + }, + { + "word": "explorador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explorer", + "example_sentence_native": "El explorador descubrió nuevas tierras.", + "example_sentence_english": "The explorer discovered new lands.", + "pos": "noun", + "word_frequency": 9231 + }, + { + "word": "explícito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explicit", + "example_sentence_native": "La instrucción fue muy explícita.", + "example_sentence_english": "The instruction was very explicit.", + "pos": "adjective", + "word_frequency": 9232 + }, + { + "word": "expropiación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expropriation", + "example_sentence_native": "Hubo una expropiación de tierras para el proyecto.", + "example_sentence_english": "There was a land expropriation for the project.", + "pos": "noun", + "word_frequency": 9233 + }, + { + "word": "ferry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ferry", + "example_sentence_native": "Tomamos el ferry para cruzar el río.", + "example_sentence_english": "We took the ferry to cross the river.", + "pos": "noun", + "word_frequency": 9235 + }, + { + "word": "flotante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "floating", + "example_sentence_native": "La plataforma flotante se movía con las olas.", + "example_sentence_english": "The floating platform moved with the waves.", + "pos": "adjective", + "word_frequency": 9236 + }, + { + "word": "funcionalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functionality", + "example_sentence_native": "La nueva versión mejora la funcionalidad del software.", + "example_sentence_english": "The new version improves the software's functionality.", + "pos": "noun", + "word_frequency": 9238 + }, + { + "word": "gozo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joy;delight", + "example_sentence_native": "Sentí un gran gozo al verla.", + "example_sentence_english": "I felt great joy upon seeing her.", + "pos": "noun", + "word_frequency": 9242 + }, + { + "word": "grosero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rude;coarse", + "example_sentence_native": "Fue muy grosero de su parte decir eso.", + "example_sentence_english": "It was very rude of him to say that.", + "pos": "adjective", + "word_frequency": 9243 + }, + { + "word": "hechizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spell;charm", + "example_sentence_native": "La bruja lanzó un hechizo sobre el príncipe.", + "example_sentence_english": "The witch cast a spell on the prince.", + "pos": "noun", + "word_frequency": 9244 + }, + { + "word": "helada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frost;freeze", + "example_sentence_native": "Hubo una fuerte helada anoche.", + "example_sentence_english": "There was a heavy frost last night.", + "pos": "noun", + "word_frequency": 9245 + }, + { + "word": "heladera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator (esp. Arg.)", + "example_sentence_native": "Guarda la leche en la heladera.", + "example_sentence_english": "Put the milk in the refrigerator.", + "pos": "noun", + "word_frequency": 9246 + }, + { + "word": "hermanito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little brother", + "example_sentence_native": "Mi hermanito siempre juega conmigo.", + "example_sentence_english": "My little brother always plays with me.", + "pos": "noun", + "word_frequency": 9247 + }, + { + "word": "inexplicable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexplicable", + "example_sentence_native": "Su desaparición fue inexplicable.", + "example_sentence_english": "His disappearance was inexplicable.", + "pos": "adjective", + "word_frequency": 9251 + }, + { + "word": "inseguro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insecure;unsafe", + "example_sentence_native": "Se siente inseguro al hablar en público.", + "example_sentence_english": "He feels insecure when speaking in public.", + "pos": "adjective", + "word_frequency": 9253 + }, + { + "word": "interferir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interfere", + "example_sentence_native": "No me gusta que la gente interfiera en mis asuntos.", + "example_sentence_english": "I don't like people interfering in my affairs.", + "pos": "verb", + "word_frequency": 9254 + }, + { + "word": "laburo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work;job (colloquial;esp. Arg.)", + "example_sentence_native": "Tengo mucho laburo esta semana.", + "example_sentence_english": "I have a lot of work this week.", + "pos": "noun", + "word_frequency": 9255 + }, + { + "word": "mall", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mall;shopping center", + "example_sentence_native": "Vamos al mall este fin de semana.", + "example_sentence_english": "Let's go to the mall this weekend.", + "pos": "noun", + "word_frequency": 9258 + }, + { + "word": "manía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mania;habit;quirk", + "example_sentence_native": "Tiene la manía de morderse las uñas.", + "example_sentence_english": "He has the habit of biting his nails.", + "pos": "noun", + "word_frequency": 9259 + }, + { + "word": "mayúsculo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital (letter);major;enormous", + "example_sentence_native": "Fue un error mayúsculo.", + "example_sentence_english": "It was a major mistake.", + "pos": "adjective", + "word_frequency": 9260 + }, + { + "word": "mermelada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jam;marmalade", + "example_sentence_native": "Me gusta la mermelada de fresa.", + "example_sentence_english": "I like strawberry jam.", + "pos": "noun", + "word_frequency": 9262 + }, + { + "word": "motín", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riot;mutiny", + "example_sentence_native": "Hubo un motín en la prisión.", + "example_sentence_english": "There was a riot in the prison.", + "pos": "noun", + "word_frequency": 9264 + }, + { + "word": "oficialismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "officialism;ruling party;government (as a political force)", + "example_sentence_native": "El oficialismo ganó las elecciones.", + "example_sentence_english": "The ruling party won the elections.", + "pos": "noun", + "word_frequency": 9266 + }, + { + "word": "opcion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "option;choice", + "example_sentence_native": "Tienes dos opciones para elegir.", + "example_sentence_english": "You have two options to choose from.", + "pos": "noun", + "word_frequency": 9268 + }, + { + "word": "opcional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optional", + "example_sentence_native": "La asistencia es opcional.", + "example_sentence_english": "Attendance is optional.", + "pos": "adjective", + "word_frequency": 9269 + }, + { + "word": "paleta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lollipop;palette;paddle", + "example_sentence_native": "El niño pidió una paleta de fresa.", + "example_sentence_english": "The child asked for a strawberry lollipop.", + "pos": "noun", + "word_frequency": 9270 + }, + { + "word": "palomita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "popcorn;little dove", + "example_sentence_native": "Compramos palomitas para ver la película.", + "example_sentence_english": "We bought popcorn to watch the movie.", + "pos": "noun", + "word_frequency": 9271 + }, + { + "word": "patriarcal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarchal", + "example_sentence_native": "La sociedad era de estructura patriarcal.", + "example_sentence_english": "The society had a patriarchal structure.", + "pos": "adjective", + "word_frequency": 9272 + }, + { + "word": "patriótico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotic", + "example_sentence_native": "Mostró un espíritu muy patriótico.", + "example_sentence_english": "He showed a very patriotic spirit.", + "pos": "adjective", + "word_frequency": 9273 + }, + { + "word": "peluche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plush toy;teddy bear", + "example_sentence_native": "Le regaló un oso de peluche.", + "example_sentence_english": "He gave her a teddy bear.", + "pos": "noun", + "word_frequency": 9274 + }, + { + "word": "penetrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penetrate", + "example_sentence_native": "La luz no podía penetrar la densa niebla.", + "example_sentence_english": "The light could not penetrate the dense fog.", + "pos": "verb", + "word_frequency": 9275 + }, + { + "word": "pensador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinker", + "example_sentence_native": "Era un gran pensador y filósofo.", + "example_sentence_english": "He was a great thinker and philosopher.", + "pos": "noun", + "word_frequency": 9276 + }, + { + "word": "persistir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persist", + "example_sentence_native": "Debemos persistir en nuestros esfuerzos.", + "example_sentence_english": "We must persist in our efforts.", + "pos": "verb", + "word_frequency": 9277 + }, + { + "word": "polarización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polarization", + "example_sentence_native": "La polarización política es un problema actual.", + "example_sentence_english": "Political polarization is a current problem.", + "pos": "noun", + "word_frequency": 9279 + }, + { + "word": "porvenir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "future", + "example_sentence_native": "Su porvenir es incierto.", + "example_sentence_english": "His future is uncertain.", + "pos": "noun", + "word_frequency": 9280 + }, + { + "word": "prestado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "borrowed", + "example_sentence_native": "El libro es prestado.", + "example_sentence_english": "The book is borrowed.", + "pos": "adjective", + "word_frequency": 9282 + }, + { + "word": "principado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "principality", + "example_sentence_native": "Mónaco es un principado.", + "example_sentence_english": "Monaco is a principality.", + "pos": "noun", + "word_frequency": 9283 + }, + { + "word": "quinientos", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "five hundred", + "example_sentence_native": "Tengo quinientos euros.", + "example_sentence_english": "I have five hundred euros.", + "pos": "adjective", + "word_frequency": 9285 + }, + { + "word": "recortar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut", + "example_sentence_native": "Necesito recortar el césped.", + "example_sentence_english": "I need to cut the grass.", + "pos": "verb", + "word_frequency": 9286 + }, + { + "word": "regulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulated", + "example_sentence_native": "El mercado está regulado.", + "example_sentence_english": "The market is regulated.", + "pos": "adjective", + "word_frequency": 9288 + }, + { + "word": "reservar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reserve", + "example_sentence_native": "Quiero reservar una mesa.", + "example_sentence_english": "I want to reserve a table.", + "pos": "verb", + "word_frequency": 9289 + }, + { + "word": "retirado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retired", + "example_sentence_native": "Mi abuelo está retirado.", + "example_sentence_english": "My grandfather is retired.", + "pos": "adjective", + "word_frequency": 9290 + }, + { + "word": "sellado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sealed", + "example_sentence_native": "El paquete está sellado.", + "example_sentence_english": "The package is sealed.", + "pos": "adjective", + "word_frequency": 9295 + }, + { + "word": "sensato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensible", + "example_sentence_native": "Es una persona muy sensata.", + "example_sentence_english": "He is a very sensible person.", + "pos": "adjective", + "word_frequency": 9296 + }, + { + "word": "sermón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sermon", + "example_sentence_native": "El sacerdote dio un sermón.", + "example_sentence_english": "The priest gave a sermon.", + "pos": "noun", + "word_frequency": 9297 + }, + { + "word": "simultáneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneous", + "example_sentence_native": "Hicieron un ataque simultáneo.", + "example_sentence_english": "They launched a simultaneous attack.", + "pos": "adjective", + "word_frequency": 9299 + }, + { + "word": "subjetivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjective", + "example_sentence_native": "Esa opinión es muy subjetiva.", + "example_sentence_english": "That opinion is very subjective.", + "pos": "adjective", + "word_frequency": 9301 + }, + { + "word": "suposición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assumption", + "example_sentence_native": "Es solo una suposición.", + "example_sentence_english": "It's just an assumption.", + "pos": "noun", + "word_frequency": 9302 + }, + { + "word": "traza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trace", + "example_sentence_native": "No hay ni una traza de él.", + "example_sentence_english": "There's not a trace of him.", + "pos": "noun", + "word_frequency": 9304 + }, + { + "word": "tubería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pipe", + "example_sentence_native": "La tubería está rota.", + "example_sentence_english": "The pipe is broken.", + "pos": "noun", + "word_frequency": 9305 + }, + { + "word": "turbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbo", + "example_sentence_native": "El coche tiene un motor turbo.", + "example_sentence_english": "The car has a turbo engine.", + "pos": "noun", + "word_frequency": 9306 + }, + { + "word": "zócalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plinth", + "example_sentence_native": "Nos encontramos en el Zócalo.", + "example_sentence_english": "We met in the Zocalo.", + "pos": "noun", + "word_frequency": 9309 + }, + { + "word": "abdominal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abdominal", + "example_sentence_native": "Hago ejercicios abdominales.", + "example_sentence_english": "I do abdominal exercises.", + "pos": "adjective", + "word_frequency": 9311 + }, + { + "word": "amargura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitterness", + "example_sentence_native": "Sentía una gran amargura.", + "example_sentence_english": "He felt great bitterness.", + "pos": "noun", + "word_frequency": 9315 + }, + { + "word": "artesanía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handicraft", + "example_sentence_native": "Compramos artesanía local.", + "example_sentence_english": "We bought local handicraft.", + "pos": "noun", + "word_frequency": 9316 + }, + { + "word": "ataúd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coffin", + "example_sentence_native": "El ataúd estaba cerrado.", + "example_sentence_english": "The coffin was closed.", + "pos": "noun", + "word_frequency": 9317 + }, + { + "word": "aval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guarantee", + "example_sentence_native": "Necesitamos un aval para el préstamo.", + "example_sentence_english": "We need a guarantee for the loan.", + "pos": "noun", + "word_frequency": 9319 + }, + { + "word": "bata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "robe;gown;lab coat", + "example_sentence_native": "Se puso la bata después de la ducha.", + "example_sentence_english": "She put on her robe after the shower.", + "pos": "noun", + "word_frequency": 9321 + }, + { + "word": "beneficioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beneficial", + "example_sentence_native": "El ejercicio regular es beneficioso para la salud.", + "example_sentence_english": "Regular exercise is beneficial for health.", + "pos": "adjective", + "word_frequency": 9322 + }, + { + "word": "calcetín", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sock", + "example_sentence_native": "Me puse un par de calcetines limpios.", + "example_sentence_english": "I put on a pair of clean socks.", + "pos": "noun", + "word_frequency": 9326 + }, + { + "word": "catarata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterfall;cataract", + "example_sentence_native": "Las cataratas del Iguazú son impresionantes.", + "example_sentence_english": "The Iguazu Falls are impressive.", + "pos": "noun", + "word_frequency": 9327 + }, + { + "word": "civilizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civilized", + "example_sentence_native": "Es importante mantener un comportamiento civilizado en público.", + "example_sentence_english": "It's important to maintain civilized behavior in public.", + "pos": "adjective", + "word_frequency": 9328 + }, + { + "word": "colisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collision", + "example_sentence_native": "Hubo una colisión entre dos coches en la autopista.", + "example_sentence_english": "There was a collision between two cars on the highway.", + "pos": "noun", + "word_frequency": 9329 + }, + { + "word": "comodoro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commodore", + "example_sentence_native": "El comodoro dio órdenes a la flota.", + "example_sentence_english": "The commodore gave orders to the fleet.", + "pos": "noun", + "word_frequency": 9330 + }, + { + "word": "condón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condom", + "example_sentence_native": "Es importante usar condón para prevenir enfermedades.", + "example_sentence_english": "It's important to use a condom to prevent diseases.", + "pos": "noun", + "word_frequency": 9331 + }, + { + "word": "culminar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to culminate;to conclude", + "example_sentence_native": "El proyecto culminó con un gran éxito.", + "example_sentence_english": "The project culminated in great success.", + "pos": "verb", + "word_frequency": 9332 + }, + { + "word": "demandante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plaintiff;claimant", + "example_sentence_native": "El demandante presentó su caso ante el tribunal.", + "example_sentence_english": "The plaintiff presented their case before the court.", + "pos": "noun", + "word_frequency": 9334 + }, + { + "word": "demencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dementia", + "example_sentence_native": "La demencia es una enfermedad que afecta la memoria.", + "example_sentence_english": "Dementia is a disease that affects memory.", + "pos": "noun", + "word_frequency": 9335 + }, + { + "word": "depositar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deposit;to place", + "example_sentence_native": "Voy a depositar dinero en mi cuenta bancaria.", + "example_sentence_english": "I'm going to deposit money into my bank account.", + "pos": "verb", + "word_frequency": 9336 + }, + { + "word": "deseado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desired;wished for", + "example_sentence_native": "Su llegada fue muy deseada por todos.", + "example_sentence_english": "His arrival was much desired by everyone.", + "pos": "adjective", + "word_frequency": 9337 + }, + { + "word": "desempleado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unemployed person", + "example_sentence_native": "El número de desempleados ha disminuido este mes.", + "example_sentence_english": "The number of unemployed people has decreased this month.", + "pos": "noun", + "word_frequency": 9338 + }, + { + "word": "diligencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligence;stagecoach", + "example_sentence_native": "Realizó el trabajo con gran diligencia.", + "example_sentence_english": "He carried out the work with great diligence.", + "pos": "noun", + "word_frequency": 9339 + }, + { + "word": "discrepancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discrepancy;disagreement", + "example_sentence_native": "Hay una discrepancia entre los dos informes.", + "example_sentence_english": "There is a discrepancy between the two reports.", + "pos": "noun", + "word_frequency": 9340 + }, + { + "word": "dual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dual", + "example_sentence_native": "El sistema tiene una función dual.", + "example_sentence_english": "The system has a dual function.", + "pos": "adjective", + "word_frequency": 9342 + }, + { + "word": "enigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enigma;mystery", + "example_sentence_native": "Su desaparición sigue siendo un enigma.", + "example_sentence_english": "His disappearance remains an enigma.", + "pos": "noun", + "word_frequency": 9344 + }, + { + "word": "entraña", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrails;core;depths", + "example_sentence_native": "Conoce las entrañas del sistema.", + "example_sentence_english": "He knows the inner workings of the system.", + "pos": "noun", + "word_frequency": 9345 + }, + { + "word": "escalón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "step;rung", + "example_sentence_native": "Subió el último escalón de la escalera.", + "example_sentence_english": "He climbed the last step of the stairs.", + "pos": "noun", + "word_frequency": 9346 + }, + { + "word": "evacuar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evacuate", + "example_sentence_native": "Tuvimos que evacuar el edificio por el incendio.", + "example_sentence_english": "We had to evacuate the building due to the fire.", + "pos": "verb", + "word_frequency": 9347 + }, + { + "word": "filtrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to filter;to leak", + "example_sentence_native": "La noticia se filtró a la prensa.", + "example_sentence_english": "The news leaked to the press.", + "pos": "verb", + "word_frequency": 9349 + }, + { + "word": "finalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completion;finalization", + "example_sentence_native": "La finalización del proyecto está prevista para el próximo mes.", + "example_sentence_english": "The completion of the project is scheduled for next month.", + "pos": "noun", + "word_frequency": 9350 + }, + { + "word": "flotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to float", + "example_sentence_native": "La madera flota en el agua.", + "example_sentence_english": "Wood floats on water.", + "pos": "verb", + "word_frequency": 9351 + }, + { + "word": "gentil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kind;gentle", + "example_sentence_native": "Fue muy gentil al ayudarme.", + "example_sentence_english": "He was very kind to help me.", + "pos": "adjective", + "word_frequency": 9355 + }, + { + "word": "gigantesco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gigantic;colossal", + "example_sentence_native": "Vimos un árbol gigantesco en el bosque.", + "example_sentence_english": "We saw a gigantic tree in the forest.", + "pos": "adjective", + "word_frequency": 9356 + }, + { + "word": "guionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screenwriter;scriptwriter", + "example_sentence_native": "El guionista escribió un excelente libreto.", + "example_sentence_english": "The screenwriter wrote an excellent script.", + "pos": "noun", + "word_frequency": 9358 + }, + { + "word": "hindú", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hindu", + "example_sentence_native": "Es una mujer hindú.", + "example_sentence_english": "She is a Hindu woman.", + "pos": "noun", + "word_frequency": 9360 + }, + { + "word": "híbrido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hybrid", + "example_sentence_native": "Este coche es un híbrido.", + "example_sentence_english": "This car is a hybrid.", + "pos": "noun", + "word_frequency": 9362 + }, + { + "word": "indefinido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indefinite;undefined", + "example_sentence_native": "El futuro es indefinido.", + "example_sentence_english": "The future is indefinite.", + "pos": "adjective", + "word_frequency": 9363 + }, + { + "word": "insomnio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insomnia", + "example_sentence_native": "Sufre de insomnio crónico.", + "example_sentence_english": "He suffers from chronic insomnia.", + "pos": "noun", + "word_frequency": 9364 + }, + { + "word": "insular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insular;island (adj.)", + "example_sentence_native": "La vida insular es tranquila.", + "example_sentence_english": "Island life is peaceful.", + "pos": "adjective", + "word_frequency": 9365 + }, + { + "word": "inédito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpublished;unreleased;unprecedented", + "example_sentence_native": "Es un manuscrito inédito.", + "example_sentence_english": "It's an unpublished manuscript.", + "pos": "adjective", + "word_frequency": 9366 + }, + { + "word": "localmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locally", + "example_sentence_native": "El producto se vende localmente.", + "example_sentence_english": "The product is sold locally.", + "pos": "adverb", + "word_frequency": 9371 + }, + { + "word": "magisterio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "teaching profession;magistracy", + "example_sentence_native": "Se dedica al magisterio.", + "example_sentence_english": "He is dedicated to the teaching profession.", + "pos": "noun", + "word_frequency": 9372 + }, + { + "word": "magistral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masterful;masterly", + "example_sentence_native": "Dio una conferencia magistral.", + "example_sentence_english": "He gave a masterful lecture.", + "pos": "adjective", + "word_frequency": 9373 + }, + { + "word": "mitin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rally;meeting", + "example_sentence_native": "Asistimos a un mitin político.", + "example_sentence_english": "We attended a political rally.", + "pos": "noun", + "word_frequency": 9374 + }, + { + "word": "molecular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "molecular", + "example_sentence_native": "Estudian la estructura molecular.", + "example_sentence_english": "They study the molecular structure.", + "pos": "adjective", + "word_frequency": 9375 + }, + { + "word": "mostaza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mustard", + "example_sentence_native": "Me gusta la mostaza en mi perrito caliente.", + "example_sentence_english": "I like mustard on my hot dog.", + "pos": "noun", + "word_frequency": 9378 + }, + { + "word": "oleada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wave;surge", + "example_sentence_native": "Hubo una oleada de calor.", + "example_sentence_english": "There was a heat wave.", + "pos": "noun", + "word_frequency": 9382 + }, + { + "word": "ombligo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navel;belly button", + "example_sentence_native": "Se tocó el ombligo.", + "example_sentence_english": "He touched his belly button.", + "pos": "noun", + "word_frequency": 9384 + }, + { + "word": "peatonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pedestrian (adj.)", + "example_sentence_native": "La calle es peatonal.", + "example_sentence_english": "The street is pedestrian.", + "pos": "adjective", + "word_frequency": 9388 + }, + { + "word": "pesimista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pessimistic", + "example_sentence_native": "Es una persona muy pesimista.", + "example_sentence_english": "He is a very pessimistic person.", + "pos": "adjective", + "word_frequency": 9389 + }, + { + "word": "pianista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pianist", + "example_sentence_native": "Mi hermana es pianista.", + "example_sentence_english": "My sister is a pianist.", + "pos": "noun", + "word_frequency": 9390 + }, + { + "word": "poblacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "population (adj.);demographic", + "example_sentence_native": "Estudian el crecimiento poblacional.", + "example_sentence_english": "They study population growth.", + "pos": "adjective", + "word_frequency": 9391 + }, + { + "word": "premiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awarded;prize-winning", + "example_sentence_native": "Es un autor premiado.", + "example_sentence_english": "He is an awarded author.", + "pos": "adjective", + "word_frequency": 9394 + }, + { + "word": "prescripción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescription;statute of limitations", + "example_sentence_native": "Necesito una prescripción para este medicamento.", + "example_sentence_english": "I need a prescription for this medicine.", + "pos": "noun", + "word_frequency": 9395 + }, + { + "word": "profesionalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professionalism", + "example_sentence_native": "Demostró gran profesionalismo.", + "example_sentence_english": "He showed great professionalism.", + "pos": "noun", + "word_frequency": 9397 + }, + { + "word": "protagonizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starring;protagonized", + "example_sentence_native": "Es una película protagonizada por él.", + "example_sentence_english": "It's a film starring him.", + "pos": "adjective", + "word_frequency": 9398 + }, + { + "word": "provocación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocation", + "example_sentence_native": "Su comentario fue una provocación.", + "example_sentence_english": "His comment was a provocation.", + "pos": "noun", + "word_frequency": 9399 + }, + { + "word": "radiante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiant;beaming", + "example_sentence_native": "Su sonrisa era radiante.", + "example_sentence_english": "Her smile was radiant.", + "pos": "adjective", + "word_frequency": 9400 + }, + { + "word": "recaer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relapse;to fall back", + "example_sentence_native": "Temo que pueda recaer en sus viejos hábitos.", + "example_sentence_english": "I fear he might relapse into his old habits.", + "pos": "verb", + "word_frequency": 9402 + }, + { + "word": "repleto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full;packed;replete", + "example_sentence_native": "El estadio estaba repleto de aficionados.", + "example_sentence_english": "The stadium was packed with fans.", + "pos": "adjective", + "word_frequency": 9403 + }, + { + "word": "reventar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burst;to explode", + "example_sentence_native": "El globo reventó con un fuerte estallido.", + "example_sentence_english": "The balloon burst with a loud pop.", + "pos": "verb", + "word_frequency": 9404 + }, + { + "word": "ría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ria;estuary", + "example_sentence_native": "Las rías gallegas son famosas por su belleza.", + "example_sentence_english": "The Galician rias are famous for their beauty.", + "pos": "noun", + "word_frequency": 9406 + }, + { + "word": "salon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "living room;hall;salon", + "example_sentence_native": "Nos reunimos en el salón para ver la película.", + "example_sentence_english": "We gathered in the living room to watch the movie.", + "pos": "noun", + "word_frequency": 9407 + }, + { + "word": "semejanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "similarity;resemblance", + "example_sentence_native": "Hay una gran semejanza entre los dos hermanos.", + "example_sentence_english": "There is a great resemblance between the two brothers.", + "pos": "noun", + "word_frequency": 9408 + }, + { + "word": "sor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nun;sister (religious)", + "example_sentence_native": "La sor María dedicó su vida a ayudar a los pobres.", + "example_sentence_english": "Sister María dedicated her life to helping the poor.", + "pos": "noun", + "word_frequency": 9411 + }, + { + "word": "susceptible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "susceptible;sensitive", + "example_sentence_native": "Es muy susceptible a las críticas.", + "example_sentence_english": "He is very susceptible to criticism.", + "pos": "adjective", + "word_frequency": 9412 + }, + { + "word": "topo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mole (animal);mole (spy)", + "example_sentence_native": "El topo cavó un túnel en el jardín.", + "example_sentence_english": "The mole dug a tunnel in the garden.", + "pos": "noun", + "word_frequency": 9414 + }, + { + "word": "tutorial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutorial", + "example_sentence_native": "Seguí un tutorial en línea para aprender a usar el programa.", + "example_sentence_english": "I followed an online tutorial to learn how to use the program.", + "pos": "noun", + "word_frequency": 9416 + }, + { + "word": "vaquero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cowboy;jeans (plural: vaqueros)", + "example_sentence_native": "El vaquero montaba su caballo por la pradera.", + "example_sentence_english": "The cowboy rode his horse across the prairie.", + "pos": "noun", + "word_frequency": 9418 + }, + { + "word": "vertiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slope;aspect;side", + "example_sentence_native": "La vertiente norte de la montaña estaba cubierta de nieve.", + "example_sentence_english": "The north slope of the mountain was covered in snow.", + "pos": "noun", + "word_frequency": 9419 + }, + { + "word": "vicario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vicar;deputy", + "example_sentence_native": "El vicario de la parroquia dio la misa.", + "example_sentence_english": "The vicar of the parish gave the mass.", + "pos": "noun", + "word_frequency": 9420 + }, + { + "word": "vid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grapevine;vine", + "example_sentence_native": "La vid produce uvas para hacer vino.", + "example_sentence_english": "The grapevine produces grapes for making wine.", + "pos": "noun", + "word_frequency": 9422 + }, + { + "word": "vinilo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vinyl", + "example_sentence_native": "Compré un disco de vinilo de mi banda favorita.", + "example_sentence_english": "I bought a vinyl record of my favorite band.", + "pos": "noun", + "word_frequency": 9423 + }, + { + "word": "virtualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtually", + "example_sentence_native": "La reunión se celebró virtualmente debido a la distancia.", + "example_sentence_english": "The meeting was held virtually due to the distance.", + "pos": "adverb", + "word_frequency": 9424 + }, + { + "word": "visualizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to visualize", + "example_sentence_native": "Intenta visualizar tu éxito.", + "example_sentence_english": "Try to visualize your success.", + "pos": "verb", + "word_frequency": 9425 + }, + { + "word": "water", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet;water closet", + "example_sentence_native": "¿Dónde está el wáter, por favor?", + "example_sentence_english": "Where is the toilet, please?", + "pos": "noun", + "word_frequency": 9426 + }, + { + "word": "western", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "western (film genre)", + "example_sentence_native": "Me encanta ver películas del género western.", + "example_sentence_english": "I love watching western films.", + "pos": "noun", + "word_frequency": 9427 + }, + { + "word": "xenofobia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "xenophobia", + "example_sentence_native": "La xenofobia es un problema social grave.", + "example_sentence_english": "Xenophobia is a serious social problem.", + "pos": "noun", + "word_frequency": 9429 + }, + { + "word": "yacer", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to lie (down);to be situated", + "example_sentence_native": "Aquí yace el cuerpo del rey.", + "example_sentence_english": "Here lies the king's body.", + "pos": "verb", + "word_frequency": 9430 + }, + { + "word": "zar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tsar;czar", + "example_sentence_native": "El último zar de Rusia fue Nicolás II.", + "example_sentence_english": "The last tsar of Russia was Nicholas II.", + "pos": "noun", + "word_frequency": 9431 + }, + { + "word": "zumo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "juice", + "example_sentence_native": "Me gusta beber zumo de naranja por la mañana.", + "example_sentence_english": "I like to drink orange juice in the morning.", + "pos": "noun", + "word_frequency": 9432 + }, + { + "word": "acreditación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accreditation", + "example_sentence_native": "Necesitas una acreditación para entrar al evento.", + "example_sentence_english": "You need accreditation to enter the event.", + "pos": "noun", + "word_frequency": 9433 + }, + { + "word": "alumbrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighting;streetlights", + "example_sentence_native": "El alumbrado público mejora la seguridad por la noche.", + "example_sentence_english": "Public lighting improves safety at night.", + "pos": "noun", + "word_frequency": 9434 + }, + { + "word": "angular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angular", + "example_sentence_native": "La mesa tenía una forma angular.", + "example_sentence_english": "The table had an angular shape.", + "pos": "adjective", + "word_frequency": 9436 + }, + { + "word": "apartar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to separate;to move aside", + "example_sentence_native": "Por favor, aparta tus cosas del camino.", + "example_sentence_english": "Please move your things out of the way.", + "pos": "verb", + "word_frequency": 9437 + }, + { + "word": "arbol", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tree", + "example_sentence_native": "Plantamos un árbol en el jardín.", + "example_sentence_english": "We planted a tree in the garden.", + "pos": "noun", + "word_frequency": 9439 + }, + { + "word": "azufre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sulfur", + "example_sentence_native": "El azufre es un elemento químico.", + "example_sentence_english": "Sulfur is a chemical element.", + "pos": "noun", + "word_frequency": 9440 + }, + { + "word": "birra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beer (slang)", + "example_sentence_native": "¿Vamos a tomar unas birras esta noche?", + "example_sentence_english": "Shall we go for some beers tonight?", + "pos": "noun", + "word_frequency": 9443 + }, + { + "word": "captación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capture;collection;uptake", + "example_sentence_native": "La captación de agua de lluvia es importante.", + "example_sentence_english": "Rainwater harvesting is important.", + "pos": "noun", + "word_frequency": 9447 + }, + { + "word": "carpintero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carpenter", + "example_sentence_native": "El carpintero arregló la silla rota.", + "example_sentence_english": "The carpenter fixed the broken chair.", + "pos": "noun", + "word_frequency": 9449 + }, + { + "word": "cesta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket", + "example_sentence_native": "Puso las manzanas en la cesta.", + "example_sentence_english": "He put the apples in the basket.", + "pos": "noun", + "word_frequency": 9450 + }, + { + "word": "chivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goat;(slang) guy;dude", + "example_sentence_native": "El chivo comió toda la hierba.", + "example_sentence_english": "The goat ate all the grass.", + "pos": "noun", + "word_frequency": 9451 + }, + { + "word": "cilindro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cylinder", + "example_sentence_native": "La forma de este objeto es un cilindro.", + "example_sentence_english": "The shape of this object is a cylinder.", + "pos": "noun", + "word_frequency": 9452 + }, + { + "word": "cobardía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cowardice", + "example_sentence_native": "Su cobardía le impidió actuar.", + "example_sentence_english": "His cowardice prevented him from acting.", + "pos": "noun", + "word_frequency": 9453 + }, + { + "word": "cofradía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brotherhood;confraternity", + "example_sentence_native": "La cofradía organiza la procesión de Semana Santa.", + "example_sentence_english": "The brotherhood organizes the Holy Week procession.", + "pos": "noun", + "word_frequency": 9454 + }, + { + "word": "compilación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compilation", + "example_sentence_native": "Esta es una compilación de sus mejores canciones.", + "example_sentence_english": "This is a compilation of their best songs.", + "pos": "noun", + "word_frequency": 9455 + }, + { + "word": "constructivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constructive", + "example_sentence_native": "Necesitamos una crítica constructiva.", + "example_sentence_english": "We need constructive criticism.", + "pos": "adjective", + "word_frequency": 9456 + }, + { + "word": "contraloría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comptroller's office;audit office", + "example_sentence_native": "La contraloría revisa las cuentas públicas.", + "example_sentence_english": "The comptroller's office reviews public accounts.", + "pos": "noun", + "word_frequency": 9457 + }, + { + "word": "cortometraje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short film", + "example_sentence_native": "Vimos un interesante cortometraje en el festival.", + "example_sentence_english": "We watched an interesting short film at the festival.", + "pos": "noun", + "word_frequency": 9458 + }, + { + "word": "cosita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little thing;cute thing", + "example_sentence_native": "Mira qué cosita más linda.", + "example_sentence_english": "Look what a cute little thing.", + "pos": "noun", + "word_frequency": 9459 + }, + { + "word": "cínico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cynical", + "example_sentence_native": "Su actitud cínica me molesta.", + "example_sentence_english": "His cynical attitude bothers me.", + "pos": "adjective", + "word_frequency": 9460 + }, + { + "word": "desactivar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deactivate;disable", + "example_sentence_native": "Tienes que desactivar la alarma.", + "example_sentence_english": "You have to deactivate the alarm.", + "pos": "verb", + "word_frequency": 9461 + }, + { + "word": "descifrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decipher;decode", + "example_sentence_native": "Intentó descifrar el mensaje secreto.", + "example_sentence_english": "He tried to decipher the secret message.", + "pos": "verb", + "word_frequency": 9462 + }, + { + "word": "deshacer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "undo;unmake;unpack", + "example_sentence_native": "No puedo deshacer lo que ya está hecho.", + "example_sentence_english": "I can't undo what's already done.", + "pos": "verb", + "word_frequency": 9463 + }, + { + "word": "desobediencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disobedience", + "example_sentence_native": "La desobediencia tiene consecuencias.", + "example_sentence_english": "Disobedience has consequences.", + "pos": "noun", + "word_frequency": 9464 + }, + { + "word": "despegar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "take off (plane);detach;unstick", + "example_sentence_native": "El avión va a despegar en cinco minutos.", + "example_sentence_english": "The plane is going to take off in five minutes.", + "pos": "verb", + "word_frequency": 9465 + }, + { + "word": "diagonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagonal", + "example_sentence_native": "Dibuja una línea diagonal en el papel.", + "example_sentence_english": "Draw a diagonal line on the paper.", + "pos": "adjective", + "word_frequency": 9466 + }, + { + "word": "distribuidor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distributor;dealer", + "example_sentence_native": "Es el distribuidor oficial de la marca.", + "example_sentence_english": "He is the official distributor of the brand.", + "pos": "noun", + "word_frequency": 9467 + }, + { + "word": "doctoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doctoral", + "example_sentence_native": "Está escribiendo su tesis doctoral.", + "example_sentence_english": "He is writing his doctoral thesis.", + "pos": "adjective", + "word_frequency": 9468 + }, + { + "word": "eclesiástico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecclesiastical;church-related", + "example_sentence_native": "Se refiere a asuntos eclesiásticos.", + "example_sentence_english": "It refers to ecclesiastical matters.", + "pos": "adjective", + "word_frequency": 9469 + }, + { + "word": "efectuado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carried out;performed;made", + "example_sentence_native": "La operación fue efectuada con éxito.", + "example_sentence_english": "The operation was successfully carried out.", + "pos": "adjective", + "word_frequency": 9470 + }, + { + "word": "emblema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emblem;symbol", + "example_sentence_native": "El águila es el emblema nacional.", + "example_sentence_english": "The eagle is the national emblem.", + "pos": "noun", + "word_frequency": 9471 + }, + { + "word": "encarar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "face;confront", + "example_sentence_native": "Debemos encarar los problemas con valentía.", + "example_sentence_english": "We must face problems with courage.", + "pos": "verb", + "word_frequency": 9472 + }, + { + "word": "envuelto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrapped;involved", + "example_sentence_native": "El regalo estaba envuelto en papel rojo.", + "example_sentence_english": "The gift was wrapped in red paper.", + "pos": "adjective", + "word_frequency": 9473 + }, + { + "word": "escepticismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skepticism", + "example_sentence_native": "Su escepticismo es evidente.", + "example_sentence_english": "His skepticism is evident.", + "pos": "noun", + "word_frequency": 9474 + }, + { + "word": "exageración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaggeration", + "example_sentence_native": "Eso es una clara exageración.", + "example_sentence_english": "That is a clear exaggeration.", + "pos": "noun", + "word_frequency": 9475 + }, + { + "word": "exhibir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibit;display;show", + "example_sentence_native": "La galería va a exhibir nuevas obras de arte.", + "example_sentence_english": "The gallery is going to exhibit new artworks.", + "pos": "verb", + "word_frequency": 9476 + }, + { + "word": "filtración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filtration;leak", + "example_sentence_native": "Hubo una filtración de datos importantes.", + "example_sentence_english": "There was a leak of important data.", + "pos": "noun", + "word_frequency": 9478 + }, + { + "word": "fluidez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluency;fluidity", + "example_sentence_native": "Su fluidez en español es impresionante.", + "example_sentence_english": "His fluency in Spanish is impressive.", + "pos": "noun", + "word_frequency": 9479 + }, + { + "word": "formoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beautiful;shapely", + "example_sentence_native": "La playa de arena blanca era realmente formosa.", + "example_sentence_english": "The white sand beach was truly beautiful.", + "pos": "adjective", + "word_frequency": 9481 + }, + { + "word": "fundido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "melted;fused;blown (light bulb)", + "example_sentence_native": "La bombilla está fundida, necesitamos una nueva.", + "example_sentence_english": "The light bulb is blown, we need a new one.", + "pos": "adjective", + "word_frequency": 9484 + }, + { + "word": "generalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "generality;general nature", + "example_sentence_native": "No podemos hablar en generalidades, necesitamos detalles específicos.", + "example_sentence_english": "We cannot speak in generalities, we need specific details.", + "pos": "noun", + "word_frequency": 9485 + }, + { + "word": "gestor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manager;agent;administrator", + "example_sentence_native": "El gestor de proyectos es responsable de la planificación y ejecución.", + "example_sentence_english": "The project manager is responsible for planning and execution.", + "pos": "noun", + "word_frequency": 9486 + }, + { + "word": "gorila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gorilla", + "example_sentence_native": "El gorila es el primate más grande.", + "example_sentence_english": "The gorilla is the largest primate.", + "pos": "noun", + "word_frequency": 9488 + }, + { + "word": "grieta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crack;crevice;fissure", + "example_sentence_native": "Hay una grieta en la pared del salón.", + "example_sentence_english": "There is a crack in the living room wall.", + "pos": "noun", + "word_frequency": 9490 + }, + { + "word": "imparcialidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impartiality;fairness", + "example_sentence_native": "La imparcialidad del juez es crucial para un juicio justo.", + "example_sentence_english": "The impartiality of the judge is crucial for a fair trial.", + "pos": "noun", + "word_frequency": 9496 + }, + { + "word": "impedimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impediment;obstacle;hindrance", + "example_sentence_native": "La falta de fondos fue un impedimento para el proyecto.", + "example_sentence_english": "Lack of funds was an impediment to the project.", + "pos": "noun", + "word_frequency": 9497 + }, + { + "word": "imperativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperative;essential;mandatory", + "example_sentence_native": "Es imperativo que lleguemos a tiempo.", + "example_sentence_english": "It is imperative that we arrive on time.", + "pos": "adjective", + "word_frequency": 9498 + }, + { + "word": "indignado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indignant;outraged", + "example_sentence_native": "Estaba indignado por la injusticia.", + "example_sentence_english": "He was indignant about the injustice.", + "pos": "adjective", + "word_frequency": 9499 + }, + { + "word": "inercia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inertia", + "example_sentence_native": "El coche siguió moviéndose por inercia después de frenar.", + "example_sentence_english": "The car kept moving due to inertia after braking.", + "pos": "noun", + "word_frequency": 9500 + }, + { + "word": "jinete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rider;horseman", + "example_sentence_native": "El jinete saltó el obstáculo con facilidad.", + "example_sentence_english": "The rider jumped the obstacle with ease.", + "pos": "noun", + "word_frequency": 9501 + }, + { + "word": "lechuga", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lettuce", + "example_sentence_native": "Me gusta la ensalada con mucha lechuga.", + "example_sentence_english": "I like salad with a lot of lettuce.", + "pos": "noun", + "word_frequency": 9505 + }, + { + "word": "lineamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guideline;directive;policy", + "example_sentence_native": "Los nuevos lineamientos de la empresa son muy claros.", + "example_sentence_english": "The company's new guidelines are very clear.", + "pos": "noun", + "word_frequency": 9508 + }, + { + "word": "lingüístico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguistic", + "example_sentence_native": "El estudio aborda aspectos lingüísticos del dialecto.", + "example_sentence_english": "The study addresses linguistic aspects of the dialect.", + "pos": "adjective", + "word_frequency": 9509 + }, + { + "word": "meditar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to meditate;to ponder;to reflect", + "example_sentence_native": "Me gusta meditar por las mañanas para relajarme.", + "example_sentence_english": "I like to meditate in the mornings to relax.", + "pos": "verb", + "word_frequency": 9511 + }, + { + "word": "mercadería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchandise;goods;wares", + "example_sentence_native": "La tienda recibió una nueva entrega de mercadería.", + "example_sentence_english": "The store received a new delivery of merchandise.", + "pos": "noun", + "word_frequency": 9512 + }, + { + "word": "nacionalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nationalization", + "example_sentence_native": "La nacionalización de la industria petrolera fue un tema controvertido.", + "example_sentence_english": "The nationalization of the oil industry was a controversial topic.", + "pos": "noun", + "word_frequency": 9516 + }, + { + "word": "ocasional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasional;casual", + "example_sentence_native": "Nos vemos en reuniones ocasionales.", + "example_sentence_english": "We see each other at occasional meetings.", + "pos": "adjective", + "word_frequency": 9517 + }, + { + "word": "orar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pray;to speak", + "example_sentence_native": "Muchas personas oran antes de dormir.", + "example_sentence_english": "Many people pray before sleeping.", + "pos": "verb", + "word_frequency": 9519 + }, + { + "word": "orador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orator;speaker", + "example_sentence_native": "El orador cautivó a la audiencia con su discurso.", + "example_sentence_english": "The orator captivated the audience with his speech.", + "pos": "noun", + "word_frequency": 9520 + }, + { + "word": "ostentar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hold;to boast;to display", + "example_sentence_native": "No le gusta ostentar su riqueza.", + "example_sentence_english": "He doesn't like to boast about his wealth.", + "pos": "verb", + "word_frequency": 9521 + }, + { + "word": "perseverancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perseverance", + "example_sentence_native": "La perseverancia es clave para alcanzar tus metas.", + "example_sentence_english": "Perseverance is key to achieving your goals.", + "pos": "noun", + "word_frequency": 9524 + }, + { + "word": "perverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perverse;wicked", + "example_sentence_native": "Tenía una sonrisa perversa en su rostro.", + "example_sentence_english": "He had a wicked smile on his face.", + "pos": "adjective", + "word_frequency": 9525 + }, + { + "word": "pillado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caught;busted", + "example_sentence_native": "Fue pillado robando en la tienda.", + "example_sentence_english": "He was caught stealing in the store.", + "pos": "adjective", + "word_frequency": 9526 + }, + { + "word": "plenitud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fullness;plenitude", + "example_sentence_native": "Vive su vida con plenitud.", + "example_sentence_english": "He lives his life with fullness.", + "pos": "noun", + "word_frequency": 9527 + }, + { + "word": "pontificio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontifical", + "example_sentence_native": "La universidad tiene un título pontificio.", + "example_sentence_english": "The university has a pontifical title.", + "pos": "adjective", + "word_frequency": 9528 + }, + { + "word": "precipitación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precipitation;haste", + "example_sentence_native": "La precipitación de la lluvia fue intensa.", + "example_sentence_english": "The precipitation of the rain was intense.", + "pos": "noun", + "word_frequency": 9529 + }, + { + "word": "predicador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preacher", + "example_sentence_native": "El predicador dio un sermón inspirador.", + "example_sentence_english": "The preacher gave an inspiring sermon.", + "pos": "noun", + "word_frequency": 9530 + }, + { + "word": "predominantemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predominantly", + "example_sentence_native": "La población es predominantemente joven.", + "example_sentence_english": "The population is predominantly young.", + "pos": "adverb", + "word_frequency": 9531 + }, + { + "word": "prefecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prefect", + "example_sentence_native": "El prefecto supervisa la administración local.", + "example_sentence_english": "The prefect supervises the local administration.", + "pos": "noun", + "word_frequency": 9532 + }, + { + "word": "preferentemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preferably", + "example_sentence_native": "Se recomienda llegar preferentemente antes de las diez.", + "example_sentence_english": "It is recommended to arrive preferably before ten.", + "pos": "adverb", + "word_frequency": 9533 + }, + { + "word": "progresar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to progress", + "example_sentence_native": "Es importante progresar en tus estudios.", + "example_sentence_english": "It is important to progress in your studies.", + "pos": "verb", + "word_frequency": 9534 + }, + { + "word": "puma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puma;cougar", + "example_sentence_native": "Vimos un puma en la montaña.", + "example_sentence_english": "We saw a puma in the mountain.", + "pos": "noun", + "word_frequency": 9535 + }, + { + "word": "regidor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "councilor;alderman", + "example_sentence_native": "El regidor presentó una nueva propuesta.", + "example_sentence_english": "The councilor presented a new proposal.", + "pos": "noun", + "word_frequency": 9536 + }, + { + "word": "rezo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prayer", + "example_sentence_native": "Hizo un rezo por su familia.", + "example_sentence_english": "He said a prayer for his family.", + "pos": "noun", + "word_frequency": 9537 + }, + { + "word": "rotura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break;rupture", + "example_sentence_native": "La rotura de la tubería causó una inundación.", + "example_sentence_english": "The break in the pipe caused a flood.", + "pos": "noun", + "word_frequency": 9538 + }, + { + "word": "salmón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salmon", + "example_sentence_native": "Me gusta comer salmón a la parrilla.", + "example_sentence_english": "I like to eat grilled salmon.", + "pos": "noun", + "word_frequency": 9539 + }, + { + "word": "saltillo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glottal stop", + "example_sentence_native": "El saltillo es un sonido consonántico.", + "example_sentence_english": "The glottal stop is a consonantal sound.", + "pos": "noun", + "word_frequency": 9540 + }, + { + "word": "sintonía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tune;harmony;wavelength", + "example_sentence_native": "Estamos en sintonía con nuestras ideas.", + "example_sentence_english": "We are in tune with our ideas.", + "pos": "noun", + "word_frequency": 9543 + }, + { + "word": "sonriente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smiling", + "example_sentence_native": "La niña tenía una cara sonriente.", + "example_sentence_english": "The girl had a smiling face.", + "pos": "adjective", + "word_frequency": 9544 + }, + { + "word": "subrayar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to underline;to emphasize", + "example_sentence_native": "Debes subrayar las ideas principales.", + "example_sentence_english": "You should underline the main ideas.", + "pos": "verb", + "word_frequency": 9546 + }, + { + "word": "suciedad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dirt;filth", + "example_sentence_native": "Había mucha suciedad en el suelo.", + "example_sentence_english": "There was a lot of dirt on the floor.", + "pos": "noun", + "word_frequency": 9547 + }, + { + "word": "sultán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sultan", + "example_sentence_native": "El sultán gobernó el imperio durante muchos años.", + "example_sentence_english": "The sultan ruled the empire for many years.", + "pos": "noun", + "word_frequency": 9548 + }, + { + "word": "superintendencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendence;superintendency", + "example_sentence_native": "La superintendencia supervisa las instituciones financieras.", + "example_sentence_english": "The superintendency supervises financial institutions.", + "pos": "noun", + "word_frequency": 9549 + }, + { + "word": "tarado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiotic;retarded (informal;offensive)", + "example_sentence_native": "No seas tarado, piensa antes de hablar.", + "example_sentence_english": "Don't be an idiot, think before you speak.", + "pos": "adjective", + "word_frequency": 9551 + }, + { + "word": "tipico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "typical", + "example_sentence_native": "Es un comportamiento típico de los adolescentes.", + "example_sentence_english": "It's typical adolescent behavior.", + "pos": "adjective", + "word_frequency": 9554 + }, + { + "word": "torreón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turret;large tower", + "example_sentence_native": "El castillo tenía un imponente torreón.", + "example_sentence_english": "The castle had an imposing turret.", + "pos": "noun", + "word_frequency": 9556 + }, + { + "word": "traficante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trafficker;dealer", + "example_sentence_native": "La policía arrestó a un traficante de drogas.", + "example_sentence_english": "The police arrested a drug trafficker.", + "pos": "noun", + "word_frequency": 9557 + }, + { + "word": "veto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veto", + "example_sentence_native": "El presidente ejerció su derecho de veto.", + "example_sentence_english": "The president exercised his right to veto.", + "pos": "noun", + "word_frequency": 9559 + }, + { + "word": "voluntariado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volunteering", + "example_sentence_native": "Ella participa en un programa de voluntariado.", + "example_sentence_english": "She participates in a volunteering program.", + "pos": "noun", + "word_frequency": 9561 + }, + { + "word": "abasto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supply", + "example_sentence_native": "El supermercado tiene un buen abasto de productos frescos.", + "example_sentence_english": "The supermarket has a good supply of fresh products.", + "pos": "noun", + "word_frequency": 9566 + }, + { + "word": "abstener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abstain", + "example_sentence_native": "Decidió abstenerse de votar en las elecciones.", + "example_sentence_english": "He decided to abstain from voting in the elections.", + "pos": "verb", + "word_frequency": 9567 + }, + { + "word": "adelgazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lose weight", + "example_sentence_native": "Ella quiere adelgazar para el verano.", + "example_sentence_english": "She wants to lose weight for the summer.", + "pos": "verb", + "word_frequency": 9568 + }, + { + "word": "adónde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "where (to)", + "example_sentence_native": "¿Adónde vas de vacaciones?", + "example_sentence_english": "Where are you going for vacation?", + "pos": "adverb", + "word_frequency": 9569 + }, + { + "word": "ahogado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drowned", + "example_sentence_native": "El hombre fue encontrado ahogado en el río.", + "example_sentence_english": "The man was found drowned in the river.", + "pos": "adjective", + "word_frequency": 9570 + }, + { + "word": "alcázar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortress", + "example_sentence_native": "Visitamos el antiguo alcázar de la ciudad.", + "example_sentence_english": "We visited the old fortress of the city.", + "pos": "noun", + "word_frequency": 9571 + }, + { + "word": "allanamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "raid", + "example_sentence_native": "La policía realizó un allanamiento en la casa.", + "example_sentence_english": "The police carried out a raid on the house.", + "pos": "noun", + "word_frequency": 9572 + }, + { + "word": "analítico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analytical", + "example_sentence_native": "Tiene una mente muy analítica.", + "example_sentence_english": "He has a very analytical mind.", + "pos": "adjective", + "word_frequency": 9573 + }, + { + "word": "arquitectónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "architectural", + "example_sentence_native": "El edificio tiene un gran valor arquitectónico.", + "example_sentence_english": "The building has great architectural value.", + "pos": "adjective", + "word_frequency": 9575 + }, + { + "word": "atravesado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossed", + "example_sentence_native": "El árbol caído estaba atravesado en el camino.", + "example_sentence_english": "The fallen tree was across the road.", + "pos": "adjective", + "word_frequency": 9576 + }, + { + "word": "autonómico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autonomous (regional)", + "example_sentence_native": "Las elecciones autonómicas se celebrarán el próximo mes.", + "example_sentence_english": "The regional elections will be held next month.", + "pos": "adjective", + "word_frequency": 9577 + }, + { + "word": "barbacoa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barbecue", + "example_sentence_native": "Hicimos una barbacoa en el jardín.", + "example_sentence_english": "We had a barbecue in the garden.", + "pos": "noun", + "word_frequency": 9578 + }, + { + "word": "basílica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basilica", + "example_sentence_native": "La basílica es un monumento impresionante.", + "example_sentence_english": "The basilica is an impressive monument.", + "pos": "noun", + "word_frequency": 9579 + }, + { + "word": "brujería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witchcraft", + "example_sentence_native": "En la antigüedad, la brujería era temida.", + "example_sentence_english": "In ancient times, witchcraft was feared.", + "pos": "noun", + "word_frequency": 9583 + }, + { + "word": "cana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grey hair", + "example_sentence_native": "Le salió una cana a los treinta años.", + "example_sentence_english": "He got a grey hair at thirty years old.", + "pos": "noun", + "word_frequency": 9585 + }, + { + "word": "capacitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualified", + "example_sentence_native": "Es un profesional muy capacitado para el puesto.", + "example_sentence_english": "He is a very qualified professional for the position.", + "pos": "adjective", + "word_frequency": 9586 + }, + { + "word": "castigado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punished", + "example_sentence_native": "El niño fue castigado por su mal comportamiento.", + "example_sentence_english": "The child was punished for his bad behavior.", + "pos": "adjective", + "word_frequency": 9588 + }, + { + "word": "causante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causing", + "example_sentence_native": "Identificaron al causante del accidente.", + "example_sentence_english": "They identified the cause of the accident.", + "pos": "adjective", + "word_frequency": 9589 + }, + { + "word": "colesterol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cholesterol", + "example_sentence_native": "Es importante controlar los niveles de colesterol.", + "example_sentence_english": "It's important to control cholesterol levels.", + "pos": "noun", + "word_frequency": 9592 + }, + { + "word": "comprobación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verification", + "example_sentence_native": "Se requiere una comprobación de identidad.", + "example_sentence_english": "An identity verification is required.", + "pos": "noun", + "word_frequency": 9593 + }, + { + "word": "compu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computer (colloquial)", + "example_sentence_native": "Mi compu está muy lenta hoy.", + "example_sentence_english": "My computer is very slow today.", + "pos": "noun", + "word_frequency": 9594 + }, + { + "word": "consecuentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequently", + "example_sentence_native": "No estudió, y consecuentemente, reprobó el examen.", + "example_sentence_english": "He didn't study, and consequently, he failed the exam.", + "pos": "adverb", + "word_frequency": 9595 + }, + { + "word": "consumido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumed", + "example_sentence_native": "El fuego había consumido gran parte del bosque.", + "example_sentence_english": "The fire had consumed a large part of the forest.", + "pos": "adjective", + "word_frequency": 9596 + }, + { + "word": "contradecir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contradict", + "example_sentence_native": "No me gusta que me contradigan.", + "example_sentence_english": "I don't like to be contradicted.", + "pos": "verb", + "word_frequency": 9597 + }, + { + "word": "cuidadoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "careful", + "example_sentence_native": "Es muy cuidadoso con sus pertenencias.", + "example_sentence_english": "He is very careful with his belongings.", + "pos": "adjective", + "word_frequency": 9600 + }, + { + "word": "curado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cured;healed", + "example_sentence_native": "La carne curada tiene un sabor intenso.", + "example_sentence_english": "Cured meat has an intense flavor.", + "pos": "adjective", + "word_frequency": 9601 + }, + { + "word": "decepcionante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappointing", + "example_sentence_native": "El resultado fue decepcionante para todos.", + "example_sentence_english": "The result was disappointing for everyone.", + "pos": "adjective", + "word_frequency": 9602 + }, + { + "word": "demográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demographic", + "example_sentence_native": "Estamos estudiando los cambios demográficos en la región.", + "example_sentence_english": "We are studying the demographic changes in the region.", + "pos": "adjective", + "word_frequency": 9603 + }, + { + "word": "derrumbe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse;landslide", + "example_sentence_native": "Hubo un derrumbe en la carretera debido a las lluvias.", + "example_sentence_english": "There was a landslide on the road due to the rains.", + "pos": "noun", + "word_frequency": 9604 + }, + { + "word": "desilusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disillusionment;disappointment", + "example_sentence_native": "Sintió una gran desilusión al no conseguir el trabajo.", + "example_sentence_english": "He felt great disappointment when he didn't get the job.", + "pos": "noun", + "word_frequency": 9606 + }, + { + "word": "despejar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clear;to clear up", + "example_sentence_native": "El viento ayudó a despejar el cielo de nubes.", + "example_sentence_english": "The wind helped to clear the sky of clouds.", + "pos": "verb", + "word_frequency": 9607 + }, + { + "word": "disputado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disputed;contested", + "example_sentence_native": "Es un territorio muy disputado entre ambos países.", + "example_sentence_english": "It is a highly disputed territory between both countries.", + "pos": "adjective", + "word_frequency": 9608 + }, + { + "word": "dotar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide;to equip;to endow", + "example_sentence_native": "La fundación busca dotar de recursos a las escuelas rurales.", + "example_sentence_english": "The foundation seeks to provide resources to rural schools.", + "pos": "verb", + "word_frequency": 9610 + }, + { + "word": "duradero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "durable;lasting", + "example_sentence_native": "Este material es muy duradero y resistente.", + "example_sentence_english": "This material is very durable and resistant.", + "pos": "adjective", + "word_frequency": 9612 + }, + { + "word": "eludir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to evade;to elude", + "example_sentence_native": "Intentó eludir la pregunta con una respuesta vaga.", + "example_sentence_english": "He tried to evade the question with a vague answer.", + "pos": "verb", + "word_frequency": 9615 + }, + { + "word": "envase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container;packaging", + "example_sentence_native": "Por favor, recicla el envase después de usarlo.", + "example_sentence_english": "Please recycle the container after using it.", + "pos": "noun", + "word_frequency": 9617 + }, + { + "word": "envejecimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aging;senescence", + "example_sentence_native": "El envejecimiento de la población es un desafío social.", + "example_sentence_english": "Population aging is a social challenge.", + "pos": "noun", + "word_frequency": 9618 + }, + { + "word": "escocés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Scottish", + "example_sentence_native": "Le encanta el whisky escocés.", + "example_sentence_english": "He loves Scottish whisky.", + "pos": "adjective", + "word_frequency": 9619 + }, + { + "word": "estimar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to estimate;to value;to appreciate", + "example_sentence_native": "Se estima que la población crecerá un 10%.", + "example_sentence_english": "It is estimated that the population will grow by 10%.", + "pos": "verb", + "word_frequency": 9621 + }, + { + "word": "estufa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stove;heater", + "example_sentence_native": "Encendimos la estufa para calentar la habitación.", + "example_sentence_english": "We turned on the heater to warm the room.", + "pos": "noun", + "word_frequency": 9622 + }, + { + "word": "fabuloso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabulous", + "example_sentence_native": "Tuvimos un tiempo fabuloso en las vacaciones.", + "example_sentence_english": "We had a fabulous time on vacation.", + "pos": "adjective", + "word_frequency": 9624 + }, + { + "word": "fenomenal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phenomenal;great", + "example_sentence_native": "El concierto fue absolutamente fenomenal.", + "example_sentence_english": "The concert was absolutely phenomenal.", + "pos": "adjective", + "word_frequency": 9625 + }, + { + "word": "fisico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical", + "example_sentence_native": "Necesita hacer más ejercicio físico.", + "example_sentence_english": "He needs to do more physical exercise.", + "pos": "adjective", + "word_frequency": 9628 + }, + { + "word": "guardaespaldas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bodyguard", + "example_sentence_native": "El presidente siempre viaja con guardaespaldas.", + "example_sentence_english": "The president always travels with bodyguards.", + "pos": "noun", + "word_frequency": 9633 + }, + { + "word": "incompleto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incomplete", + "example_sentence_native": "El informe aún está incompleto.", + "example_sentence_english": "The report is still incomplete.", + "pos": "adjective", + "word_frequency": 9637 + }, + { + "word": "inflamación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammation", + "example_sentence_native": "La inflamación de la garganta le causaba dolor.", + "example_sentence_english": "The inflammation of his throat caused him pain.", + "pos": "noun", + "word_frequency": 9638 + }, + { + "word": "inherente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inherent", + "example_sentence_native": "El riesgo es inherente a cualquier inversión.", + "example_sentence_english": "Risk is inherent in any investment.", + "pos": "adjective", + "word_frequency": 9639 + }, + { + "word": "inmaculado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immaculate", + "example_sentence_native": "Su reputación era inmaculada.", + "example_sentence_english": "His reputation was immaculate.", + "pos": "adjective", + "word_frequency": 9640 + }, + { + "word": "intacto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intact", + "example_sentence_native": "El edificio permaneció intacto después del terremoto.", + "example_sentence_english": "The building remained intact after the earthquake.", + "pos": "adjective", + "word_frequency": 9641 + }, + { + "word": "inventor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inventor", + "example_sentence_native": "Thomas Edison fue un gran inventor.", + "example_sentence_english": "Thomas Edison was a great inventor.", + "pos": "noun", + "word_frequency": 9642 + }, + { + "word": "jaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "check (in chess)", + "example_sentence_native": "El rey está en jaque.", + "example_sentence_english": "The king is in check.", + "pos": "noun", + "word_frequency": 9643 + }, + { + "word": "machete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "machete", + "example_sentence_native": "Usó un machete para cortar la maleza.", + "example_sentence_english": "He used a machete to cut the brush.", + "pos": "noun", + "word_frequency": 9645 + }, + { + "word": "malla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mesh;net;tights", + "example_sentence_native": "La ventana tiene una malla para los mosquitos.", + "example_sentence_english": "The window has a mesh for mosquitoes.", + "pos": "noun", + "word_frequency": 9647 + }, + { + "word": "mentor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentor", + "example_sentence_native": "Encontró un mentor que lo guio en su carrera.", + "example_sentence_english": "He found a mentor who guided him in his career.", + "pos": "noun", + "word_frequency": 9649 + }, + { + "word": "miercoles", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Wednesday", + "example_sentence_native": "Nos vemos el miércoles.", + "example_sentence_english": "See you on Wednesday.", + "pos": "noun", + "word_frequency": 9650 + }, + { + "word": "morder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bite", + "example_sentence_native": "El perro intentó morder al cartero.", + "example_sentence_english": "The dog tried to bite the postman.", + "pos": "verb", + "word_frequency": 9652 + }, + { + "word": "movilizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mobilize", + "example_sentence_native": "La organización logró movilizar a miles de voluntarios.", + "example_sentence_english": "The organization managed to mobilize thousands of volunteers.", + "pos": "verb", + "word_frequency": 9653 + }, + { + "word": "mística", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysticism;mystique", + "example_sentence_native": "La mística de la antigua civilización aún perdura.", + "example_sentence_english": "The mystique of the ancient civilization still endures.", + "pos": "noun", + "word_frequency": 9654 + }, + { + "word": "natalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "birth rate;natality", + "example_sentence_native": "La tasa de natalidad ha disminuido en el país.", + "example_sentence_english": "The birth rate has decreased in the country.", + "pos": "noun", + "word_frequency": 9655 + }, + { + "word": "neutro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutral", + "example_sentence_native": "Es importante mantener una postura neutra en el debate.", + "example_sentence_english": "It's important to maintain a neutral stance in the debate.", + "pos": "adjective", + "word_frequency": 9656 + }, + { + "word": "normalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "normalization", + "example_sentence_native": "Se espera la normalización de las relaciones diplomáticas.", + "example_sentence_english": "The normalization of diplomatic relations is expected.", + "pos": "noun", + "word_frequency": 9657 + }, + { + "word": "patriarcado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarchy", + "example_sentence_native": "El feminismo busca desmantelar el patriarcado.", + "example_sentence_english": "Feminism seeks to dismantle patriarchy.", + "pos": "noun", + "word_frequency": 9663 + }, + { + "word": "pavimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pavement;road surface", + "example_sentence_native": "El pavimento de la calle está en mal estado.", + "example_sentence_english": "The street pavement is in poor condition.", + "pos": "noun", + "word_frequency": 9665 + }, + { + "word": "pelotón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platoon;peloton", + "example_sentence_native": "El pelotón avanzó por el campo.", + "example_sentence_english": "The platoon advanced through the field.", + "pos": "noun", + "word_frequency": 9666 + }, + { + "word": "penoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painful;regrettable;embarrassing", + "example_sentence_native": "Fue una situación muy penosa para todos.", + "example_sentence_english": "It was a very regrettable situation for everyone.", + "pos": "adjective", + "word_frequency": 9667 + }, + { + "word": "pezón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nipple", + "example_sentence_native": "El bebé buscaba el pezón de su madre.", + "example_sentence_english": "The baby was looking for its mother's nipple.", + "pos": "noun", + "word_frequency": 9668 + }, + { + "word": "pinza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clip;peg;tweezers;pliers", + "example_sentence_native": "Necesito una pinza para colgar la ropa.", + "example_sentence_english": "I need a peg to hang the clothes.", + "pos": "noun", + "word_frequency": 9671 + }, + { + "word": "pizca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pinch;speck;tiny bit", + "example_sentence_native": "Añade una pizca de sal a la sopa.", + "example_sentence_english": "Add a pinch of salt to the soup.", + "pos": "noun", + "word_frequency": 9672 + }, + { + "word": "ponencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presentation;paper;report", + "example_sentence_native": "Dio una excelente ponencia sobre el cambio climático.", + "example_sentence_english": "He gave an excellent presentation on climate change.", + "pos": "noun", + "word_frequency": 9674 + }, + { + "word": "practico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practical", + "example_sentence_native": "Es una solución muy práctica para el problema.", + "example_sentence_english": "It's a very practical solution to the problem.", + "pos": "adjective", + "word_frequency": 9675 + }, + { + "word": "preferente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preferential;priority", + "example_sentence_native": "Tienen asientos preferentes en el teatro.", + "example_sentence_english": "They have preferential seating in the theater.", + "pos": "adjective", + "word_frequency": 9676 + }, + { + "word": "presencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in-person;face-to-face", + "example_sentence_native": "Las clases serán presenciales este semestre.", + "example_sentence_english": "Classes will be in-person this semester.", + "pos": "adjective", + "word_frequency": 9677 + }, + { + "word": "presidido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presided over;chaired", + "example_sentence_native": "La reunión fue presidida por el director.", + "example_sentence_english": "The meeting was presided over by the director.", + "pos": "adjective", + "word_frequency": 9678 + }, + { + "word": "primeramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firstly;primarily", + "example_sentence_native": "Primeramente, quiero agradecer a todos por venir.", + "example_sentence_english": "Firstly, I want to thank everyone for coming.", + "pos": "adverb", + "word_frequency": 9679 + }, + { + "word": "psicoanálisis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychoanalysis", + "example_sentence_native": "El psicoanálisis es una terapia que explora el inconsciente.", + "example_sentence_english": "Psychoanalysis is a therapy that explores the unconscious.", + "pos": "noun", + "word_frequency": 9680 + }, + { + "word": "pulsera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bracelet", + "example_sentence_native": "Llevaba una hermosa pulsera de plata en su muñeca.", + "example_sentence_english": "She wore a beautiful silver bracelet on her wrist.", + "pos": "noun", + "word_frequency": 9681 + }, + { + "word": "redención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redemption", + "example_sentence_native": "Buscaba la redención por sus errores pasados.", + "example_sentence_english": "He sought redemption for his past mistakes.", + "pos": "noun", + "word_frequency": 9682 + }, + { + "word": "regimen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regimen", + "example_sentence_native": "El nuevo régimen alimenticio le ayudó a sentirse mejor.", + "example_sentence_english": "The new dietary regimen helped him feel better.", + "pos": "noun", + "word_frequency": 9683 + }, + { + "word": "sanguíneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanguine", + "example_sentence_native": "Tiene un tipo de sangre sanguíneo poco común.", + "example_sentence_english": "He has a rare sanguine blood type.", + "pos": "adjective", + "word_frequency": 9685 + }, + { + "word": "selectivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selective", + "example_sentence_native": "Es muy selectivo con sus amistades.", + "example_sentence_english": "He is very selective with his friendships.", + "pos": "adjective", + "word_frequency": 9686 + }, + { + "word": "sentenciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentenced", + "example_sentence_native": "El acusado fue sentenciado a diez años de prisión.", + "example_sentence_english": "The accused was sentenced to ten years in prison.", + "pos": "adjective", + "word_frequency": 9687 + }, + { + "word": "sesgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bias", + "example_sentence_native": "Es importante reconocer el sesgo en las noticias.", + "example_sentence_english": "It's important to recognize bias in the news.", + "pos": "noun", + "word_frequency": 9688 + }, + { + "word": "severamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severely", + "example_sentence_native": "Fue severamente criticado por sus acciones.", + "example_sentence_english": "He was severely criticized for his actions.", + "pos": "adverb", + "word_frequency": 9689 + }, + { + "word": "señorío", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lordship", + "example_sentence_native": "El señorío feudal tenía gran poder en la Edad Media.", + "example_sentence_english": "The feudal lordship had great power in the Middle Ages.", + "pos": "noun", + "word_frequency": 9690 + }, + { + "word": "sobredosis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overdose", + "example_sentence_native": "La sobredosis de medicamentos puede ser fatal.", + "example_sentence_english": "A drug overdose can be fatal.", + "pos": "noun", + "word_frequency": 9693 + }, + { + "word": "sostenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustained", + "example_sentence_native": "El crecimiento económico ha sido sostenido durante años.", + "example_sentence_english": "Economic growth has been sustained for years.", + "pos": "adjective", + "word_frequency": 9694 + }, + { + "word": "tornado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tornado", + "example_sentence_native": "Un tornado devastó la pequeña ciudad.", + "example_sentence_english": "A tornado devastated the small town.", + "pos": "noun", + "word_frequency": 9698 + }, + { + "word": "traicionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "betrayed", + "example_sentence_native": "Se sintió traicionado por su mejor amigo.", + "example_sentence_english": "He felt betrayed by his best friend.", + "pos": "adjective", + "word_frequency": 9699 + }, + { + "word": "tramitación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing", + "example_sentence_native": "La tramitación de los documentos puede llevar tiempo.", + "example_sentence_english": "The processing of the documents can take time.", + "pos": "noun", + "word_frequency": 9700 + }, + { + "word": "trance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trance", + "example_sentence_native": "Entró en un profundo trance durante la meditación.", + "example_sentence_english": "He entered a deep trance during meditation.", + "pos": "noun", + "word_frequency": 9701 + }, + { + "word": "tranvía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tram", + "example_sentence_native": "Tomamos el tranvía para ir al centro de la ciudad.", + "example_sentence_english": "We took the tram to go to the city center.", + "pos": "noun", + "word_frequency": 9702 + }, + { + "word": "trescientos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "three hundred", + "example_sentence_native": "Hay trescientas personas en la sala.", + "example_sentence_english": "There are three hundred people in the room.", + "pos": "adjective", + "word_frequency": 9703 + }, + { + "word": "trueno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thunder", + "example_sentence_native": "El trueno resonó en la distancia.", + "example_sentence_english": "The thunder echoed in the distance.", + "pos": "noun", + "word_frequency": 9704 + }, + { + "word": "ultramar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overseas", + "example_sentence_native": "Viajó a ultramar para explorar nuevas culturas.", + "example_sentence_english": "He traveled overseas to explore new cultures.", + "pos": "noun", + "word_frequency": 9705 + }, + { + "word": "veinticuatro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-four", + "example_sentence_native": "El día tiene veinticuatro horas.", + "example_sentence_english": "The day has twenty-four hours.", + "pos": "adjective", + "word_frequency": 9707 + }, + { + "word": "vicioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vicious", + "example_sentence_native": "Cayó en un círculo vicioso de deudas.", + "example_sentence_english": "He fell into a vicious cycle of debt.", + "pos": "adjective", + "word_frequency": 9708 + }, + { + "word": "2da", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "2nd", + "example_sentence_native": "Esta es la 2da vez que visito este lugar.", + "example_sentence_english": "This is the 2nd time I visit this place.", + "pos": "adjective", + "word_frequency": 9711 + }, + { + "word": "abortar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abort", + "example_sentence_native": "Decidieron abortar la misión debido al mal tiempo.", + "example_sentence_english": "They decided to abort the mission due to bad weather.", + "pos": "verb", + "word_frequency": 9713 + }, + { + "word": "agotamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhaustion", + "example_sentence_native": "Sufre de agotamiento crónico por el estrés.", + "example_sentence_english": "He suffers from chronic exhaustion due to stress.", + "pos": "noun", + "word_frequency": 9714 + }, + { + "word": "alarmante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alarming", + "example_sentence_native": "La situación es alarmante y requiere acción inmediata.", + "example_sentence_english": "The situation is alarming and requires immediate action.", + "pos": "adjective", + "word_frequency": 9716 + }, + { + "word": "alfabetización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "literacy", + "example_sentence_native": "La alfabetización es clave para el desarrollo de una sociedad.", + "example_sentence_english": "Literacy is key for the development of a society.", + "pos": "noun", + "word_frequency": 9718 + }, + { + "word": "apego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attachment", + "example_sentence_native": "Su apego a la familia es muy fuerte.", + "example_sentence_english": "His attachment to his family is very strong.", + "pos": "noun", + "word_frequency": 9721 + }, + { + "word": "aplaudir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to applaud", + "example_sentence_native": "La gente empezó a aplaudir al final del concierto.", + "example_sentence_english": "The people started to applaud at the end of the concert.", + "pos": "verb", + "word_frequency": 9722 + }, + { + "word": "apretado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tight", + "example_sentence_native": "Los pantalones me quedan muy apretados.", + "example_sentence_english": "The pants are very tight on me.", + "pos": "adjective", + "word_frequency": 9723 + }, + { + "word": "aptitud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aptitude", + "example_sentence_native": "Ella tiene una gran aptitud para los idiomas.", + "example_sentence_english": "She has a great aptitude for languages.", + "pos": "noun", + "word_frequency": 9724 + }, + { + "word": "ascendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascending", + "example_sentence_native": "La curva de crecimiento es ascendente.", + "example_sentence_english": "The growth curve is ascending.", + "pos": "adjective", + "word_frequency": 9726 + }, + { + "word": "atrocidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atrocity", + "example_sentence_native": "Las atrocidades de la guerra son inaceptables.", + "example_sentence_english": "The atrocities of war are unacceptable.", + "pos": "noun", + "word_frequency": 9727 + }, + { + "word": "autoritarismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authoritarianism", + "example_sentence_native": "El país cayó bajo un régimen de autoritarismo.", + "example_sentence_english": "The country fell under a regime of authoritarianism.", + "pos": "noun", + "word_frequency": 9728 + }, + { + "word": "bautizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baptized", + "example_sentence_native": "El niño fue bautizado el mes pasado.", + "example_sentence_english": "The child was baptized last month.", + "pos": "adjective", + "word_frequency": 9729 + }, + { + "word": "bikini", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bikini", + "example_sentence_native": "Compró un nuevo bikini para el verano.", + "example_sentence_english": "She bought a new bikini for the summer.", + "pos": "noun", + "word_frequency": 9730 + }, + { + "word": "cajon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drawer", + "example_sentence_native": "Guarda los cubiertos en el cajón de la cocina.", + "example_sentence_english": "Keep the cutlery in the kitchen drawer.", + "pos": "noun", + "word_frequency": 9736 + }, + { + "word": "consagrado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renowned", + "example_sentence_native": "Es un artista consagrado en su campo.", + "example_sentence_english": "He is a renowned artist in his field.", + "pos": "adjective", + "word_frequency": 9741 + }, + { + "word": "contorno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outline", + "example_sentence_native": "Dibujó el contorno de la montaña.", + "example_sentence_english": "He drew the outline of the mountain.", + "pos": "noun", + "word_frequency": 9742 + }, + { + "word": "contracción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraction", + "example_sentence_native": "Sintió una fuerte contracción en el músculo.", + "example_sentence_english": "He felt a strong contraction in the muscle.", + "pos": "noun", + "word_frequency": 9743 + }, + { + "word": "cota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "level", + "example_sentence_native": "La cota de nieve bajó a los 1000 metros.", + "example_sentence_english": "The snow level dropped to 1000 meters.", + "pos": "noun", + "word_frequency": 9745 + }, + { + "word": "coña", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joke (informal)", + "example_sentence_native": "¿Estás de coña? No me lo puedo creer.", + "example_sentence_english": "Are you kidding? I can't believe it.", + "pos": "noun", + "word_frequency": 9746 + }, + { + "word": "criminalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminality", + "example_sentence_native": "La criminalidad ha disminuido en la ciudad.", + "example_sentence_english": "Criminality has decreased in the city.", + "pos": "noun", + "word_frequency": 9747 + }, + { + "word": "cuantía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amount", + "example_sentence_native": "La cuantía de la multa es considerable.", + "example_sentence_english": "The amount of the fine is considerable.", + "pos": "noun", + "word_frequency": 9748 + }, + { + "word": "culturalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culturally", + "example_sentence_native": "Es un país muy rico culturalmente.", + "example_sentence_english": "It is a very rich country culturally.", + "pos": "adverb", + "word_frequency": 9749 + }, + { + "word": "curro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work (informal;Spain)", + "example_sentence_native": "Tengo mucho curro esta semana.", + "example_sentence_english": "I have a lot of work this week.", + "pos": "noun", + "word_frequency": 9750 + }, + { + "word": "demarcación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demarcation", + "example_sentence_native": "La demarcación territorial es clara.", + "example_sentence_english": "The territorial demarcation is clear.", + "pos": "noun", + "word_frequency": 9751 + }, + { + "word": "democráticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democratically", + "example_sentence_native": "El presidente fue elegido democráticamente.", + "example_sentence_english": "The president was democratically elected.", + "pos": "adverb", + "word_frequency": 9752 + }, + { + "word": "denotar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to denote", + "example_sentence_native": "Su silencio denota su desacuerdo.", + "example_sentence_english": "His silence denotes his disagreement.", + "pos": "verb", + "word_frequency": 9753 + }, + { + "word": "derivar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to derive", + "example_sentence_native": "La palabra 'derivar' deriva del latín.", + "example_sentence_english": "The word 'derivar' derives from Latin.", + "pos": "verb", + "word_frequency": 9755 + }, + { + "word": "dique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dike", + "example_sentence_native": "Construyeron un dique para contener el río.", + "example_sentence_english": "They built a dike to contain the river.", + "pos": "noun", + "word_frequency": 9757 + }, + { + "word": "disputar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispute", + "example_sentence_native": "Los equipos van a disputar la final.", + "example_sentence_english": "The teams are going to dispute the final.", + "pos": "verb", + "word_frequency": 9758 + }, + { + "word": "escultor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sculptor", + "example_sentence_native": "El famoso escultor creó una obra maestra.", + "example_sentence_english": "The famous sculptor created a masterpiece.", + "pos": "noun", + "word_frequency": 9763 + }, + { + "word": "estancamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stagnation", + "example_sentence_native": "La economía sufrió un período de estancamiento.", + "example_sentence_english": "The economy suffered a period of stagnation.", + "pos": "noun", + "word_frequency": 9765 + }, + { + "word": "exterminio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extermination", + "example_sentence_native": "Se llevó a cabo el exterminio de la plaga.", + "example_sentence_english": "The extermination of the pest was carried out.", + "pos": "noun", + "word_frequency": 9766 + }, + { + "word": "faceta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facet", + "example_sentence_native": "Cada persona tiene múltiples facetas en su personalidad.", + "example_sentence_english": "Every person has multiple facets to their personality.", + "pos": "noun", + "word_frequency": 9767 + }, + { + "word": "falsificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forgery", + "example_sentence_native": "La policía descubrió una red de falsificación de documentos.", + "example_sentence_english": "The police discovered a document forgery ring.", + "pos": "noun", + "word_frequency": 9768 + }, + { + "word": "faz", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "face (poetic)", + "example_sentence_native": "La faz de la Tierra ha cambiado con el tiempo.", + "example_sentence_english": "The face of the Earth has changed over time.", + "pos": "noun", + "word_frequency": 9769 + }, + { + "word": "ferroviario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "railway (adj)", + "example_sentence_native": "La red ferroviaria es muy extensa en este país.", + "example_sentence_english": "The railway network is very extensive in this country.", + "pos": "adjective", + "word_frequency": 9770 + }, + { + "word": "ganadero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "livestock farmer", + "example_sentence_native": "El ganadero cuida de sus vacas con esmero.", + "example_sentence_english": "The livestock farmer takes great care of his cows.", + "pos": "noun", + "word_frequency": 9772 + }, + { + "word": "geología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geology", + "example_sentence_native": "Estudiamos geología para entender la formación de las rocas.", + "example_sentence_english": "We study geology to understand the formation of rocks.", + "pos": "noun", + "word_frequency": 9774 + }, + { + "word": "grato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasant", + "example_sentence_native": "Fue un momento muy grato para todos nosotros.", + "example_sentence_english": "It was a very pleasant moment for all of us.", + "pos": "adjective", + "word_frequency": 9778 + }, + { + "word": "gringo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreigner (often American)", + "example_sentence_native": "Muchos gringos visitan México cada año.", + "example_sentence_english": "Many foreigners visit Mexico every year.", + "pos": "noun", + "word_frequency": 9779 + }, + { + "word": "holandes", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dutch (person)", + "example_sentence_native": "Mi amigo es holandés y vive en Ámsterdam.", + "example_sentence_english": "My friend is Dutch and lives in Amsterdam.", + "pos": "noun", + "word_frequency": 9781 + }, + { + "word": "homofobia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homophobia", + "example_sentence_native": "La homofobia es una forma de discriminación.", + "example_sentence_english": "Homophobia is a form of discrimination.", + "pos": "noun", + "word_frequency": 9782 + }, + { + "word": "indulto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pardon", + "example_sentence_native": "El presidente concedió el indulto al prisionero.", + "example_sentence_english": "The president granted the pardon to the prisoner.", + "pos": "noun", + "word_frequency": 9784 + }, + { + "word": "infernal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infernal", + "example_sentence_native": "El ruido de la construcción era infernal.", + "example_sentence_english": "The construction noise was infernal.", + "pos": "adjective", + "word_frequency": 9785 + }, + { + "word": "ingenioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingenious", + "example_sentence_native": "Su solución al problema fue realmente ingeniosa.", + "example_sentence_english": "His solution to the problem was truly ingenious.", + "pos": "adjective", + "word_frequency": 9786 + }, + { + "word": "inquietante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbing", + "example_sentence_native": "La noticia era bastante inquietante.", + "example_sentence_english": "The news was quite disturbing.", + "pos": "adjective", + "word_frequency": 9787 + }, + { + "word": "interpretado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interpreted", + "example_sentence_native": "La canción fue interpretada por un nuevo artista.", + "example_sentence_english": "The song was interpreted by a new artist.", + "pos": "adjective", + "word_frequency": 9788 + }, + { + "word": "legalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legalize", + "example_sentence_native": "El gobierno planea legalizar ciertas sustancias.", + "example_sentence_english": "The government plans to legalize certain substances.", + "pos": "verb", + "word_frequency": 9795 + }, + { + "word": "lesionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injured", + "example_sentence_native": "El jugador se retiró del partido lesionado.", + "example_sentence_english": "The player left the game injured.", + "pos": "adjective", + "word_frequency": 9796 + }, + { + "word": "lácteo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dairy", + "example_sentence_native": "Los productos lácteos son buenos para los huesos.", + "example_sentence_english": "Dairy products are good for bones.", + "pos": "adjective", + "word_frequency": 9802 + }, + { + "word": "mae", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dude;pal (Costa Rican slang)", + "example_sentence_native": "Pura vida, mae.", + "example_sentence_english": "Pure life, dude.", + "pos": "noun", + "word_frequency": 9803 + }, + { + "word": "mamífero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mammal", + "example_sentence_native": "El delfín es un mamífero marino.", + "example_sentence_english": "The dolphin is a marine mammal.", + "pos": "noun", + "word_frequency": 9804 + }, + { + "word": "market", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "market", + "example_sentence_native": "Vamos al market a comprar frutas.", + "example_sentence_english": "Let's go to the market to buy fruits.", + "pos": "noun", + "word_frequency": 9805 + }, + { + "word": "matón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bully;thug", + "example_sentence_native": "El matón de la escuela siempre molestaba a los más pequeños.", + "example_sentence_english": "The school bully always bothered the smaller kids.", + "pos": "noun", + "word_frequency": 9806 + }, + { + "word": "medioambiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environment", + "example_sentence_native": "Debemos proteger el medioambiente para las futuras generaciones.", + "example_sentence_english": "We must protect the environment for future generations.", + "pos": "noun", + "word_frequency": 9807 + }, + { + "word": "naturalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalness;spontaneity", + "example_sentence_native": "Actuó con gran naturalidad en el escenario.", + "example_sentence_english": "He acted with great naturalness on stage.", + "pos": "noun", + "word_frequency": 9813 + }, + { + "word": "novato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novice;rookie", + "example_sentence_native": "Es un novato en el equipo, pero aprende rápido.", + "example_sentence_english": "He's a rookie on the team, but he learns fast.", + "pos": "noun", + "word_frequency": 9815 + }, + { + "word": "obstrucción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstruction;blockage", + "example_sentence_native": "Hubo una obstrucción en la tubería.", + "example_sentence_english": "There was a blockage in the pipe.", + "pos": "noun", + "word_frequency": 9816 + }, + { + "word": "paréntesis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parenthesis;interlude", + "example_sentence_native": "Lo que dijo entre paréntesis fue muy importante.", + "example_sentence_english": "What he said in parenthesis was very important.", + "pos": "noun", + "word_frequency": 9817 + }, + { + "word": "pasion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passion", + "example_sentence_native": "Ella tiene una gran pasión por la música.", + "example_sentence_english": "She has a great passion for music.", + "pos": "noun", + "word_frequency": 9818 + }, + { + "word": "paulatinamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gradually;little by little", + "example_sentence_native": "La situación mejoró paulatinamente.", + "example_sentence_english": "The situation gradually improved.", + "pos": "adverb", + "word_frequency": 9819 + }, + { + "word": "pelado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bald;peeled", + "example_sentence_native": "Mi abuelo está pelado.", + "example_sentence_english": "My grandfather is bald.", + "pos": "adjective", + "word_frequency": 9820 + }, + { + "word": "penitencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penance;punishment", + "example_sentence_native": "Como penitencia, tuvo que limpiar toda la casa.", + "example_sentence_english": "As penance, he had to clean the whole house.", + "pos": "noun", + "word_frequency": 9821 + }, + { + "word": "peregrinación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrimage", + "example_sentence_native": "Muchos fieles hacen la peregrinación a Santiago de Compostela.", + "example_sentence_english": "Many faithful make the pilgrimage to Santiago de Compostela.", + "pos": "noun", + "word_frequency": 9822 + }, + { + "word": "pique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dive;short trip;burst of speed", + "example_sentence_native": "Se dio un pique al mar.", + "example_sentence_english": "He took a dive into the sea.", + "pos": "noun", + "word_frequency": 9823 + }, + { + "word": "populista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "populist", + "example_sentence_native": "El discurso del candidato era muy populista.", + "example_sentence_english": "The candidate's speech was very populist.", + "pos": "adjective", + "word_frequency": 9826 + }, + { + "word": "porra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baton;club;pom-pom", + "example_sentence_native": "La policía usó porras para dispersar a la multitud.", + "example_sentence_english": "The police used batons to disperse the crowd.", + "pos": "noun", + "word_frequency": 9827 + }, + { + "word": "precario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precarious;unstable", + "example_sentence_native": "Muchos jóvenes tienen empleos precarios.", + "example_sentence_english": "Many young people have precarious jobs.", + "pos": "adjective", + "word_frequency": 9829 + }, + { + "word": "precariedad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precariousness;instability", + "example_sentence_native": "La precariedad laboral es un problema social.", + "example_sentence_english": "Job precariousness is a social problem.", + "pos": "noun", + "word_frequency": 9830 + }, + { + "word": "proa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bow (of a ship)", + "example_sentence_native": "La proa del barco cortaba las olas.", + "example_sentence_english": "The bow of the ship cut through the waves.", + "pos": "noun", + "word_frequency": 9831 + }, + { + "word": "propina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tip;gratuity", + "example_sentence_native": "Dejamos una buena propina al camarero.", + "example_sentence_english": "We left a good tip for the waiter.", + "pos": "noun", + "word_frequency": 9832 + }, + { + "word": "próspero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosperous;thriving", + "example_sentence_native": "Esperamos un futuro próspero para el país.", + "example_sentence_english": "We hope for a prosperous future for the country.", + "pos": "adjective", + "word_frequency": 9833 + }, + { + "word": "pulido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polished;refined", + "example_sentence_native": "El mueble de madera estaba muy pulido.", + "example_sentence_english": "The wooden furniture was very polished.", + "pos": "adjective", + "word_frequency": 9834 + }, + { + "word": "ratificar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ratify;to confirm", + "example_sentence_native": "El parlamento debe ratificar el acuerdo.", + "example_sentence_english": "The parliament must ratify the agreement.", + "pos": "verb", + "word_frequency": 9836 + }, + { + "word": "reforzado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reinforced;strengthened", + "example_sentence_native": "La estructura fue reforzada con acero.", + "example_sentence_english": "The structure was reinforced with steel.", + "pos": "adjective", + "word_frequency": 9837 + }, + { + "word": "reggae", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reggae", + "example_sentence_native": "Me encanta escuchar música reggae.", + "example_sentence_english": "I love listening to reggae music.", + "pos": "noun", + "word_frequency": 9838 + }, + { + "word": "remo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oar;rowing", + "example_sentence_native": "Practica remo en el lago cada mañana.", + "example_sentence_english": "He practices rowing on the lake every morning.", + "pos": "noun", + "word_frequency": 9839 + }, + { + "word": "remodelación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remodeling;renovation", + "example_sentence_native": "La remodelación de la casa duró varios meses.", + "example_sentence_english": "The remodeling of the house lasted several months.", + "pos": "noun", + "word_frequency": 9840 + }, + { + "word": "repartido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distributed;spread out", + "example_sentence_native": "El trabajo estaba bien repartido entre todos.", + "example_sentence_english": "The work was well distributed among everyone.", + "pos": "adjective", + "word_frequency": 9841 + }, + { + "word": "respaldar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to support;to back", + "example_sentence_native": "Necesitamos respaldar esta decisión con hechos.", + "example_sentence_english": "We need to support this decision with facts.", + "pos": "verb", + "word_frequency": 9842 + }, + { + "word": "restaurant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "restaurant", + "example_sentence_native": "Vamos a cenar en un buen restaurant esta noche.", + "example_sentence_english": "We are going to have dinner at a good restaurant tonight.", + "pos": "noun", + "word_frequency": 9843 + }, + { + "word": "restringir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restrict;to limit", + "example_sentence_native": "Debemos restringir el acceso a esta área.", + "example_sentence_english": "We must restrict access to this area.", + "pos": "verb", + "word_frequency": 9844 + }, + { + "word": "riguroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigorous;strict", + "example_sentence_native": "El examen fue muy riguroso.", + "example_sentence_english": "The exam was very rigorous.", + "pos": "adjective", + "word_frequency": 9845 + }, + { + "word": "sacado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taken out;extracted", + "example_sentence_native": "El libro fue sacado de la estantería.", + "example_sentence_english": "The book was taken out of the shelf.", + "pos": "adjective", + "word_frequency": 9848 + }, + { + "word": "sepulcro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sepulchre;tomb", + "example_sentence_native": "El antiguo sepulcro fue descubierto por arqueólogos.", + "example_sentence_english": "The ancient sepulchre was discovered by archaeologists.", + "pos": "noun", + "word_frequency": 9850 + }, + { + "word": "sexenio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "six-year term (especially presidential)", + "example_sentence_native": "El presidente cumplió su sexenio.", + "example_sentence_english": "The president completed his six-year term.", + "pos": "noun", + "word_frequency": 9851 + }, + { + "word": "tata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grandpa;dad (informal)", + "example_sentence_native": "Mi tata siempre me cuenta historias.", + "example_sentence_english": "My grandpa always tells me stories.", + "pos": "noun", + "word_frequency": 9855 + }, + { + "word": "tecla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "key (on a keyboard;piano)", + "example_sentence_native": "Presiona la tecla Enter para continuar.", + "example_sentence_english": "Press the Enter key to continue.", + "pos": "noun", + "word_frequency": 9856 + }, + { + "word": "telescopio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telescope", + "example_sentence_native": "Usamos un telescopio para ver las estrellas.", + "example_sentence_english": "We used a telescope to see the stars.", + "pos": "noun", + "word_frequency": 9857 + }, + { + "word": "terapeuta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therapist", + "example_sentence_native": "El terapeuta me ayudó mucho.", + "example_sentence_english": "The therapist helped me a lot.", + "pos": "noun", + "word_frequency": 9858 + }, + { + "word": "transferido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transferred", + "example_sentence_native": "El archivo fue transferido con éxito.", + "example_sentence_english": "The file was successfully transferred.", + "pos": "adjective", + "word_frequency": 9861 + }, + { + "word": "vengar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avenge;to get revenge", + "example_sentence_native": "Él juró vengar la muerte de su hermano.", + "example_sentence_english": "He swore to avenge his brother's death.", + "pos": "verb", + "word_frequency": 9865 + }, + { + "word": "vigilia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigil;wakefulness", + "example_sentence_native": "Pasó la noche en vigilia.", + "example_sentence_english": "He spent the night in vigil.", + "pos": "noun", + "word_frequency": 9866 + }, + { + "word": "yuca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cassava;yuca", + "example_sentence_native": "La yuca es un alimento básico en muchas culturas.", + "example_sentence_english": "Yuca is a staple food in many cultures.", + "pos": "noun", + "word_frequency": 9869 + }, + { + "word": "zanahoria", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "carrot", + "example_sentence_native": "Me gusta comer zanahorias crudas.", + "example_sentence_english": "I like to eat raw carrots.", + "pos": "noun", + "word_frequency": 9870 + }, + { + "word": "zinc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zinc", + "example_sentence_native": "El zinc es un metal.", + "example_sentence_english": "Zinc is a metal.", + "pos": "noun", + "word_frequency": 9871 + }, + { + "word": "éxtasis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecstasy", + "example_sentence_native": "Sintió un éxtasis al escuchar la música.", + "example_sentence_english": "He felt an ecstasy listening to the music.", + "pos": "noun", + "word_frequency": 9872 + }, + { + "word": "acomodar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accommodate;to arrange;to settle", + "example_sentence_native": "Por favor, acomoda los libros en el estante.", + "example_sentence_english": "Please arrange the books on the shelf.", + "pos": "verb", + "word_frequency": 9873 + }, + { + "word": "aislar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to isolate;to insulate", + "example_sentence_native": "Es importante aislar el ruido en esta habitación.", + "example_sentence_english": "It's important to insulate the noise in this room.", + "pos": "verb", + "word_frequency": 9874 + }, + { + "word": "aleta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fin (of a fish);flipper", + "example_sentence_native": "El pez movía sus aletas rápidamente.", + "example_sentence_english": "The fish moved its fins quickly.", + "pos": "noun", + "word_frequency": 9876 + }, + { + "word": "alimentado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fed;powered", + "example_sentence_native": "El motor es alimentado por electricidad.", + "example_sentence_english": "The motor is powered by electricity.", + "pos": "adjective", + "word_frequency": 9877 + }, + { + "word": "alterno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternate;alternative", + "example_sentence_native": "Tenemos un plan alterno en caso de emergencia.", + "example_sentence_english": "We have an alternate plan in case of emergency.", + "pos": "adjective", + "word_frequency": 9878 + }, + { + "word": "alucinante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amazing;mind-blowing;hallucinatory", + "example_sentence_native": "La vista desde la montaña era alucinante.", + "example_sentence_english": "The view from the mountain was amazing.", + "pos": "adjective", + "word_frequency": 9879 + }, + { + "word": "anotado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noted;scored", + "example_sentence_native": "El gol fue anotado en el último minuto.", + "example_sentence_english": "The goal was scored in the last minute.", + "pos": "adjective", + "word_frequency": 9881 + }, + { + "word": "apoderar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to empower;to authorize", + "example_sentence_native": "El abogado va a apoderar a su cliente para firmar el contrato.", + "example_sentence_english": "The lawyer is going to empower his client to sign the contract.", + "pos": "verb", + "word_frequency": 9883 + }, + { + "word": "apología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apology;defense", + "example_sentence_native": "Hizo una apología de la libertad de expresión.", + "example_sentence_english": "He made a defense of freedom of expression.", + "pos": "noun", + "word_frequency": 9884 + }, + { + "word": "arrastre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drag;haul;traction", + "example_sentence_native": "El arrastre de la red fue muy pesado.", + "example_sentence_english": "The drag of the net was very heavy.", + "pos": "noun", + "word_frequency": 9885 + }, + { + "word": "arrendamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lease;rental", + "example_sentence_native": "Firmaron un contrato de arrendamiento por cinco años.", + "example_sentence_english": "They signed a lease agreement for five years.", + "pos": "noun", + "word_frequency": 9886 + }, + { + "word": "ateneo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "athenaeum;literary society", + "example_sentence_native": "El ateneo organiza conferencias y debates culturales.", + "example_sentence_english": "The athenaeum organizes cultural conferences and debates.", + "pos": "noun", + "word_frequency": 9887 + }, + { + "word": "atraso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delay;backwardness", + "example_sentence_native": "Hubo un atraso en la entrega del paquete.", + "example_sentence_english": "There was a delay in the package delivery.", + "pos": "noun", + "word_frequency": 9888 + }, + { + "word": "autopsia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autopsy", + "example_sentence_native": "La autopsia reveló la causa de la muerte.", + "example_sentence_english": "The autopsy revealed the cause of death.", + "pos": "noun", + "word_frequency": 9889 + }, + { + "word": "avaricia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greed;avarice", + "example_sentence_native": "La avaricia puede llevar a la ruina.", + "example_sentence_english": "Greed can lead to ruin.", + "pos": "noun", + "word_frequency": 9890 + }, + { + "word": "avergonzado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ashamed;embarrassed", + "example_sentence_native": "Se sintió avergonzado por su error.", + "example_sentence_english": "He felt ashamed of his mistake.", + "pos": "adjective", + "word_frequency": 9891 + }, + { + "word": "aya", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nanny;governess", + "example_sentence_native": "La aya cuidaba a los niños con mucho cariño.", + "example_sentence_english": "The nanny took care of the children with great affection.", + "pos": "noun", + "word_frequency": 9892 + }, + { + "word": "azotea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rooftop;flat roof", + "example_sentence_native": "Subimos a la azotea para ver las vistas de la ciudad.", + "example_sentence_english": "We went up to the rooftop to see the city views.", + "pos": "noun", + "word_frequency": 9893 + }, + { + "word": "barbaridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbarity;outrage;nonsense", + "example_sentence_native": "¡Qué barbaridad! No puedo creer lo que pasó.", + "example_sentence_english": "What an outrage! I can't believe what happened.", + "pos": "noun", + "word_frequency": 9895 + }, + { + "word": "beneficencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charity;beneficence", + "example_sentence_native": "La organización se dedica a la beneficencia.", + "example_sentence_english": "The organization is dedicated to charity.", + "pos": "noun", + "word_frequency": 9897 + }, + { + "word": "capitolio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitol", + "example_sentence_native": "El Capitolio de La Habana es un edificio impresionante.", + "example_sentence_english": "The Capitol of Havana is an impressive building.", + "pos": "noun", + "word_frequency": 9900 + }, + { + "word": "cariñoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affectionate;loving", + "example_sentence_native": "Es una persona muy cariñosa con sus amigos.", + "example_sentence_english": "He is a very affectionate person with his friends.", + "pos": "adjective", + "word_frequency": 9901 + }, + { + "word": "cautela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caution;wariness", + "example_sentence_native": "Actuó con mucha cautela para evitar errores.", + "example_sentence_english": "He acted with great caution to avoid mistakes.", + "pos": "noun", + "word_frequency": 9902 + }, + { + "word": "ceguera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blindness", + "example_sentence_native": "La ceguera le impidió ver el peligro.", + "example_sentence_english": "Blindness prevented him from seeing the danger.", + "pos": "noun", + "word_frequency": 9903 + }, + { + "word": "charco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puddle", + "example_sentence_native": "Después de la lluvia, había muchos charcos en la calle.", + "example_sentence_english": "After the rain, there were many puddles in the street.", + "pos": "noun", + "word_frequency": 9905 + }, + { + "word": "chavo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;guy (colloquial)", + "example_sentence_native": "Ese chavo es muy inteligente.", + "example_sentence_english": "That kid is very intelligent.", + "pos": "noun", + "word_frequency": 9906 + }, + { + "word": "confidencialidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confidentiality", + "example_sentence_native": "Se firmó un acuerdo de confidencialidad.", + "example_sentence_english": "A confidentiality agreement was signed.", + "pos": "noun", + "word_frequency": 9908 + }, + { + "word": "configurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to configure;to set up", + "example_sentence_native": "Necesito configurar la nueva impresora.", + "example_sentence_english": "I need to configure the new printer.", + "pos": "verb", + "word_frequency": 9909 + }, + { + "word": "contrastar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contrast;to compare", + "example_sentence_native": "Es importante contrastar las fuentes de información.", + "example_sentence_english": "It is important to contrast the sources of information.", + "pos": "verb", + "word_frequency": 9910 + }, + { + "word": "coto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preserve;hunting ground;limit", + "example_sentence_native": "Este es un coto de caza privado.", + "example_sentence_english": "This is a private hunting preserve.", + "pos": "noun", + "word_frequency": 9911 + }, + { + "word": "cumplido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fulfilled;accomplished", + "example_sentence_native": "Su deseo fue cumplido.", + "example_sentence_english": "His wish was fulfilled.", + "pos": "adjective", + "word_frequency": 9912 + }, + { + "word": "damnificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victim;affected person", + "example_sentence_native": "Los damnificados recibieron ayuda humanitaria.", + "example_sentence_english": "The victims received humanitarian aid.", + "pos": "noun", + "word_frequency": 9914 + }, + { + "word": "desatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to untie;to unleash", + "example_sentence_native": "Desató al perro de la correa.", + "example_sentence_english": "He untied the dog from the leash.", + "pos": "verb", + "word_frequency": 9915 + }, + { + "word": "desviación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deviation;detour", + "example_sentence_native": "Hubo una desviación en la ruta debido a las obras.", + "example_sentence_english": "There was a detour on the route due to the roadworks.", + "pos": "noun", + "word_frequency": 9916 + }, + { + "word": "dialogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialogue", + "example_sentence_native": "Es importante mantener un diálogo abierto.", + "example_sentence_english": "It is important to maintain an open dialogue.", + "pos": "noun", + "word_frequency": 9917 + }, + { + "word": "diecinueve", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nineteen", + "example_sentence_native": "Tengo diecinueve años.", + "example_sentence_english": "I am nineteen years old.", + "pos": "noun", + "word_frequency": 9918 + }, + { + "word": "diferenciación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "differentiation", + "example_sentence_native": "La diferenciación de productos es clave en el mercado.", + "example_sentence_english": "Product differentiation is key in the market.", + "pos": "noun", + "word_frequency": 9919 + }, + { + "word": "disolver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissolve", + "example_sentence_native": "El azúcar se disuelve en agua caliente.", + "example_sentence_english": "Sugar dissolves in hot water.", + "pos": "verb", + "word_frequency": 9920 + }, + { + "word": "ebrio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk;intoxicated", + "example_sentence_native": "El hombre ebrio tropezó en la calle.", + "example_sentence_english": "The drunk man stumbled in the street.", + "pos": "adjective", + "word_frequency": 9921 + }, + { + "word": "ejido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "communal land", + "example_sentence_native": "Los campesinos cultivan el ejido de la comunidad.", + "example_sentence_english": "The peasants cultivate the communal land of the community.", + "pos": "noun", + "word_frequency": 9922 + }, + { + "word": "emirato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emirate", + "example_sentence_native": "Dubái es un emirato en los Emiratos Árabes Unidos.", + "example_sentence_english": "Dubai is an emirate in the United Arab Emirates.", + "pos": "noun", + "word_frequency": 9924 + }, + { + "word": "emocionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move;to excite;to thrill", + "example_sentence_native": "La película me emocionó mucho.", + "example_sentence_english": "The movie moved me a lot.", + "pos": "verb", + "word_frequency": 9925 + }, + { + "word": "enfado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anger;annoyance", + "example_sentence_native": "Su enfado era evidente en su voz.", + "example_sentence_english": "His anger was evident in his voice.", + "pos": "noun", + "word_frequency": 9926 + }, + { + "word": "entretanto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meanwhile;in the meantime", + "example_sentence_native": "Yo prepararé la cena, entretanto tú puedes poner la mesa.", + "example_sentence_english": "I will prepare dinner, meanwhile you can set the table.", + "pos": "adverb", + "word_frequency": 9927 + }, + { + "word": "farmacéutico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pharmaceutical", + "example_sentence_native": "La industria farmacéutica es muy grande.", + "example_sentence_english": "The pharmaceutical industry is very large.", + "pos": "adjective", + "word_frequency": 9928 + }, + { + "word": "forum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forum", + "example_sentence_native": "Participó en un foro de discusión en línea.", + "example_sentence_english": "He participated in an online discussion forum.", + "pos": "noun", + "word_frequency": 9929 + }, + { + "word": "frustrante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrating", + "example_sentence_native": "La situación era muy frustrante.", + "example_sentence_english": "The situation was very frustrating.", + "pos": "adjective", + "word_frequency": 9930 + }, + { + "word": "gel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gel", + "example_sentence_native": "Me puse gel en el pelo.", + "example_sentence_english": "I put gel in my hair.", + "pos": "noun", + "word_frequency": 9931 + }, + { + "word": "guiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guided", + "example_sentence_native": "Hicimos una visita guiada por el museo.", + "example_sentence_english": "We took a guided tour of the museum.", + "pos": "adjective", + "word_frequency": 9933 + }, + { + "word": "habilitado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enabled;qualified;authorized", + "example_sentence_native": "El sistema está habilitado para pagos en línea.", + "example_sentence_english": "The system is enabled for online payments.", + "pos": "adjective", + "word_frequency": 9934 + }, + { + "word": "halcón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "falcon;hawk", + "example_sentence_native": "El halcón volaba alto en el cielo.", + "example_sentence_english": "The falcon flew high in the sky.", + "pos": "noun", + "word_frequency": 9935 + }, + { + "word": "hortaliza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegetable (specifically from a garden)", + "example_sentence_native": "Compramos hortalizas frescas en el mercado.", + "example_sentence_english": "We bought fresh vegetables at the market.", + "pos": "noun", + "word_frequency": 9936 + }, + { + "word": "indigno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unworthy;disgraceful", + "example_sentence_native": "Su comportamiento fue indigno de un líder.", + "example_sentence_english": "His behavior was unworthy of a leader.", + "pos": "adjective", + "word_frequency": 9938 + }, + { + "word": "industrialización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "industrialization", + "example_sentence_native": "La industrialización cambió la sociedad.", + "example_sentence_english": "Industrialization changed society.", + "pos": "noun", + "word_frequency": 9939 + }, + { + "word": "intoxicación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoning;intoxication", + "example_sentence_native": "Sufrió una intoxicación alimentaria.", + "example_sentence_english": "He suffered from food poisoning.", + "pos": "noun", + "word_frequency": 9940 + }, + { + "word": "izquierdista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leftist", + "example_sentence_native": "Es un político de ideología izquierdista.", + "example_sentence_english": "He is a politician with leftist ideology.", + "pos": "adjective", + "word_frequency": 9942 + }, + { + "word": "jungla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jungle", + "example_sentence_native": "Exploraron la densa jungla.", + "example_sentence_english": "They explored the dense jungle.", + "pos": "noun", + "word_frequency": 9944 + }, + { + "word": "librar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to free;to exempt;to fight (a battle)", + "example_sentence_native": "El héroe logró librar a la ciudad del peligro.", + "example_sentence_english": "The hero managed to free the city from danger.", + "pos": "verb", + "word_frequency": 9949 + }, + { + "word": "lona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canvas;tarp", + "example_sentence_native": "La tienda de campaña está hecha de lona resistente.", + "example_sentence_english": "The tent is made of durable canvas.", + "pos": "noun", + "word_frequency": 9952 + }, + { + "word": "madurar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ripen;to mature", + "example_sentence_native": "Las frutas necesitan tiempo para madurar.", + "example_sentence_english": "Fruits need time to ripen.", + "pos": "verb", + "word_frequency": 9954 + }, + { + "word": "mear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pee;to urinate", + "example_sentence_native": "El perro salió a mear en el jardín.", + "example_sentence_english": "The dog went out to pee in the garden.", + "pos": "verb", + "word_frequency": 9959 + }, + { + "word": "metrópolis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolis", + "example_sentence_native": "Londres es una metrópolis vibrante y diversa.", + "example_sentence_english": "London is a vibrant and diverse metropolis.", + "pos": "noun", + "word_frequency": 9960 + }, + { + "word": "naciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nascent;emerging", + "example_sentence_native": "La industria naciente necesita apoyo gubernamental.", + "example_sentence_english": "The nascent industry needs government support.", + "pos": "adjective", + "word_frequency": 9966 + }, + { + "word": "negociado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "department;bureau;deal", + "example_sentence_native": "El negociado de asuntos exteriores maneja las relaciones internacionales.", + "example_sentence_english": "The foreign affairs department handles international relations.", + "pos": "noun", + "word_frequency": 9968 + }, + { + "word": "nicho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "niche;recess", + "example_sentence_native": "Encontró un nicho de mercado para su producto.", + "example_sentence_english": "He found a market niche for his product.", + "pos": "noun", + "word_frequency": 9970 + }, + { + "word": "peón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pawn;laborer", + "example_sentence_native": "El peón es la pieza más básica en el ajedrez.", + "example_sentence_english": "The pawn is the most basic piece in chess.", + "pos": "noun", + "word_frequency": 9974 + }, + { + "word": "pleito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lawsuit;dispute;quarrel", + "example_sentence_native": "Tuvieron un pleito por la herencia.", + "example_sentence_english": "They had a dispute over the inheritance.", + "pos": "noun", + "word_frequency": 9975 + }, + { + "word": "popa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stern (of a ship)", + "example_sentence_native": "La bandera ondeaba en la popa del barco.", + "example_sentence_english": "The flag waved at the stern of the ship.", + "pos": "noun", + "word_frequency": 9976 + }, + { + "word": "practicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practiced;customary", + "example_sentence_native": "Es un deporte muy practicado en esta región.", + "example_sentence_english": "It is a very practiced sport in this region.", + "pos": "adjective", + "word_frequency": 9977 + }, + { + "word": "predominar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to predominate;to prevail", + "example_sentence_native": "En esa zona, el español predomina sobre otros idiomas.", + "example_sentence_english": "In that area, Spanish predominates over other languages.", + "pos": "verb", + "word_frequency": 9978 + }, + { + "word": "proclamación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proclamation", + "example_sentence_native": "La proclamación de la independencia fue un día histórico.", + "example_sentence_english": "The proclamation of independence was a historic day.", + "pos": "noun", + "word_frequency": 9979 + }, + { + "word": "promovido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promoted;fostered", + "example_sentence_native": "Fue un evento muy promovido por el ayuntamiento.", + "example_sentence_english": "It was an event highly promoted by the city council.", + "pos": "adjective", + "word_frequency": 9980 + }, + { + "word": "proyectado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projected;planned;designed", + "example_sentence_native": "El costo proyectado de la obra es muy alto.", + "example_sentence_english": "The projected cost of the work is very high.", + "pos": "adjective", + "word_frequency": 9981 + }, + { + "word": "rabo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tail (of an animal)", + "example_sentence_native": "El perro movía el rabo de alegría.", + "example_sentence_english": "The dog wagged its tail with joy.", + "pos": "noun", + "word_frequency": 9982 + }, + { + "word": "rating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rating", + "example_sentence_native": "El programa de televisión tiene un alto rating de audiencia.", + "example_sentence_english": "The TV show has a high audience rating.", + "pos": "noun", + "word_frequency": 9983 + }, + { + "word": "refinería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refinery", + "example_sentence_native": "La refinería procesa grandes cantidades de petróleo.", + "example_sentence_english": "The refinery processes large quantities of oil.", + "pos": "noun", + "word_frequency": 9984 + }, + { + "word": "reglamentación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation;rule-making", + "example_sentence_native": "La nueva reglamentación afecta a todas las empresas.", + "example_sentence_english": "The new regulation affects all companies.", + "pos": "noun", + "word_frequency": 9985 + }, + { + "word": "residual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residual;remaining", + "example_sentence_native": "Quedan algunos efectos residuales del tratamiento.", + "example_sentence_english": "There are some residual effects from the treatment.", + "pos": "adjective", + "word_frequency": 9986 + }, + { + "word": "retrospectivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrospective", + "example_sentence_native": "Hizo un análisis retrospectivo de los eventos.", + "example_sentence_english": "He made a retrospective analysis of the events.", + "pos": "adjective", + "word_frequency": 9987 + }, + { + "word": "rígido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigid;strict", + "example_sentence_native": "La estructura es muy rígida y no permite cambios.", + "example_sentence_english": "The structure is very rigid and does not allow changes.", + "pos": "adjective", + "word_frequency": 9989 + }, + { + "word": "sanar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to heal;to cure", + "example_sentence_native": "La herida tardará en sanar.", + "example_sentence_english": "The wound will take time to heal.", + "pos": "verb", + "word_frequency": 9993 + }, + { + "word": "señalado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicated;marked;designated", + "example_sentence_native": "El día señalado para la reunión es el martes.", + "example_sentence_english": "The designated day for the meeting is Tuesday.", + "pos": "adjective", + "word_frequency": 9994 + }, + { + "word": "teóricamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theoretically", + "example_sentence_native": "Teóricamente, el plan debería funcionar.", + "example_sentence_english": "Theoretically, the plan should work.", + "pos": "adverb", + "word_frequency": 9999 + }, + { + "word": "ticket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ticket", + "example_sentence_native": "Necesito un ticket para entrar al concierto.", + "example_sentence_english": "I need a ticket to enter the concert.", + "pos": "noun", + "word_frequency": 10000 + }, + { + "word": "tiniebla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "darkness;gloom", + "example_sentence_native": "La casa estaba sumida en la más profunda tiniebla.", + "example_sentence_english": "The house was plunged into the deepest darkness.", + "pos": "noun", + "word_frequency": 10001 + }, + { + "word": "turba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mob;peat", + "example_sentence_native": "La turba se congregó frente al edificio.", + "example_sentence_english": "The mob gathered in front of the building.", + "pos": "noun", + "word_frequency": 10003 + }, + { + "word": "vacio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emptiness;void", + "example_sentence_native": "Sentía un gran vacío después de su partida.", + "example_sentence_english": "He felt a great emptiness after her departure.", + "pos": "noun", + "word_frequency": 10004 + }, + { + "word": "zurdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left-handed", + "example_sentence_native": "Mi hermano es zurdo y escribe con la mano izquierda.", + "example_sentence_english": "My brother is left-handed and writes with his left hand.", + "pos": "adjective", + "word_frequency": 10006 + }, + { + "word": "ómnibus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omnibus;bus", + "example_sentence_native": "Tomamos el ómnibus para ir al centro.", + "example_sentence_english": "We took the bus to go downtown.", + "pos": "noun", + "word_frequency": 10008 + }, + { + "word": "óptimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimal;excellent", + "example_sentence_native": "Las condiciones climáticas son óptimas para el cultivo.", + "example_sentence_english": "The weather conditions are optimal for cultivation.", + "pos": "adjective", + "word_frequency": 10009 + }, + { + "word": "óxido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rust;oxide", + "example_sentence_native": "El metal se cubrió de óxido con el tiempo.", + "example_sentence_english": "The metal became covered in rust over time.", + "pos": "noun", + "word_frequency": 10010 + }, + { + "word": "alcoholismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholism", + "example_sentence_native": "El alcoholismo es una enfermedad grave.", + "example_sentence_english": "Alcoholism is a serious disease.", + "pos": "noun", + "word_frequency": 10013 + }, + { + "word": "ambulante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "itinerant;street vendor", + "example_sentence_native": "Compramos fruta a un vendedor ambulante.", + "example_sentence_english": "We bought fruit from an itinerant vendor.", + "pos": "adjective", + "word_frequency": 10016 + }, + { + "word": "anticipado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anticipated;early;advance", + "example_sentence_native": "La reserva anticipada garantiza tu lugar.", + "example_sentence_english": "The advance reservation guarantees your spot.", + "pos": "adjective", + "word_frequency": 10017 + }, + { + "word": "apoderado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal representative;proxy", + "example_sentence_native": "Mi apoderado se encargará de los trámites legales.", + "example_sentence_english": "My legal representative will handle the legal procedures.", + "pos": "noun", + "word_frequency": 10018 + }, + { + "word": "armenio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Armenian", + "example_sentence_native": "Conozco a una persona de origen armenio.", + "example_sentence_english": "I know a person of Armenian origin.", + "pos": "adjective", + "word_frequency": 10020 + }, + { + "word": "arrepentido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regretful;repentant", + "example_sentence_native": "Estaba muy arrepentido de sus acciones.", + "example_sentence_english": "He was very regretful of his actions.", + "pos": "adjective", + "word_frequency": 10021 + }, + { + "word": "asimilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assimilate;to absorb", + "example_sentence_native": "Es difícil asimilar tanta información nueva.", + "example_sentence_english": "It's difficult to assimilate so much new information.", + "pos": "verb", + "word_frequency": 10023 + }, + { + "word": "atar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie;to bind", + "example_sentence_native": "Necesito atar los cordones de mis zapatos.", + "example_sentence_english": "I need to tie my shoelaces.", + "pos": "verb", + "word_frequency": 10024 + }, + { + "word": "automotriz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automotive", + "example_sentence_native": "La industria automotriz es muy importante en este país.", + "example_sentence_english": "The automotive industry is very important in this country.", + "pos": "adjective", + "word_frequency": 10025 + }, + { + "word": "avisado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warned;informed;shrewd", + "example_sentence_native": "Ya estábamos avisados del peligro.", + "example_sentence_english": "We were already warned of the danger.", + "pos": "adjective", + "word_frequency": 10026 + }, + { + "word": "balazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gunshot;bullet wound", + "example_sentence_native": "Escuchamos un balazo en la distancia.", + "example_sentence_english": "We heard a gunshot in the distance.", + "pos": "noun", + "word_frequency": 10028 + }, + { + "word": "balde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bucket;pail", + "example_sentence_native": "Llenó el balde con agua.", + "example_sentence_english": "He filled the bucket with water.", + "pos": "noun", + "word_frequency": 10029 + }, + { + "word": "búlgaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bulgarian", + "example_sentence_native": "La comida búlgara es deliciosa.", + "example_sentence_english": "Bulgarian food is delicious.", + "pos": "adjective", + "word_frequency": 10033 + }, + { + "word": "caida", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fall;drop", + "example_sentence_native": "Tuvo una caída y se lastimó la rodilla.", + "example_sentence_english": "He had a fall and hurt his knee.", + "pos": "noun", + "word_frequency": 10034 + }, + { + "word": "calzón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underpants;briefs", + "example_sentence_native": "Se puso un calzón limpio.", + "example_sentence_english": "He put on clean underpants.", + "pos": "noun", + "word_frequency": 10036 + }, + { + "word": "cambiante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "changing;variable", + "example_sentence_native": "El clima en la montaña es muy cambiante.", + "example_sentence_english": "The weather in the mountains is very changing.", + "pos": "adjective", + "word_frequency": 10037 + }, + { + "word": "caracterización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterization;portrayal", + "example_sentence_native": "La caracterización del personaje fue excelente.", + "example_sentence_english": "The characterization of the character was excellent.", + "pos": "noun", + "word_frequency": 10039 + }, + { + "word": "carnal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carnal;fleshly", + "example_sentence_native": "Los placeres carnales a menudo son efímeros.", + "example_sentence_english": "Carnal pleasures are often ephemeral.", + "pos": "adjective", + "word_frequency": 10040 + }, + { + "word": "cifrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encryption;cipher", + "example_sentence_native": "El cifrado de datos es crucial para la seguridad.", + "example_sentence_english": "Data encryption is crucial for security.", + "pos": "noun", + "word_frequency": 10041 + }, + { + "word": "circulo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "circle", + "example_sentence_native": "Dibuja un círculo grande en el papel.", + "example_sentence_english": "Draw a large circle on the paper.", + "pos": "noun", + "word_frequency": 10042 + }, + { + "word": "cocodrilo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crocodile", + "example_sentence_native": "El cocodrilo vive en el río.", + "example_sentence_english": "The crocodile lives in the river.", + "pos": "noun", + "word_frequency": 10043 + }, + { + "word": "concebir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceive;to imagine", + "example_sentence_native": "Es difícil concebir un mundo sin música.", + "example_sentence_english": "It's difficult to conceive of a world without music.", + "pos": "verb", + "word_frequency": 10044 + }, + { + "word": "concordar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree;to concur", + "example_sentence_native": "Sus opiniones no concuerdan con las mías.", + "example_sentence_english": "His opinions do not agree with mine.", + "pos": "verb", + "word_frequency": 10045 + }, + { + "word": "congelado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frozen", + "example_sentence_native": "La comida congelada es fácil de preparar.", + "example_sentence_english": "Frozen food is easy to prepare.", + "pos": "adjective", + "word_frequency": 10046 + }, + { + "word": "conquistado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conquered", + "example_sentence_native": "El territorio conquistado fue anexado al imperio.", + "example_sentence_english": "The conquered territory was annexed to the empire.", + "pos": "adjective", + "word_frequency": 10047 + }, + { + "word": "consecución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "achievement;attainment", + "example_sentence_native": "La consecución de sus metas requirió mucho esfuerzo.", + "example_sentence_english": "The achievement of his goals required a lot of effort.", + "pos": "noun", + "word_frequency": 10048 + }, + { + "word": "consolidado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consolidated;established", + "example_sentence_native": "La empresa tiene una posición consolidada en el mercado.", + "example_sentence_english": "The company has a consolidated position in the market.", + "pos": "adjective", + "word_frequency": 10049 + }, + { + "word": "controlador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controller", + "example_sentence_native": "Necesito un nuevo controlador para mi consola de videojuegos.", + "example_sentence_english": "I need a new controller for my video game console.", + "pos": "noun", + "word_frequency": 10050 + }, + { + "word": "coser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sew", + "example_sentence_native": "Mi abuela me enseñó a coser.", + "example_sentence_english": "My grandmother taught me how to sew.", + "pos": "verb", + "word_frequency": 10051 + }, + { + "word": "cpu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "CPU (Central Processing Unit)", + "example_sentence_native": "La CPU es el cerebro de la computadora.", + "example_sentence_english": "The CPU is the brain of the computer.", + "pos": "noun", + "word_frequency": 10052 + }, + { + "word": "cártel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartel", + "example_sentence_native": "El cártel de la droga fue desmantelado.", + "example_sentence_english": "The drug cartel was dismantled.", + "pos": "noun", + "word_frequency": 10053 + }, + { + "word": "desapercibido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnoticed;unperceived", + "example_sentence_native": "Pasó desapercibido entre la multitud.", + "example_sentence_english": "He went unnoticed in the crowd.", + "pos": "adjective", + "word_frequency": 10054 + }, + { + "word": "dimitir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resign", + "example_sentence_native": "El ministro decidió dimitir de su cargo.", + "example_sentence_english": "The minister decided to resign from his post.", + "pos": "verb", + "word_frequency": 10055 + }, + { + "word": "doncella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maiden;damsel", + "example_sentence_native": "La doncella esperaba a su príncipe.", + "example_sentence_english": "The maiden was waiting for her prince.", + "pos": "noun", + "word_frequency": 10056 + }, + { + "word": "drásticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drastically", + "example_sentence_native": "La situación económica ha cambiado drásticamente.", + "example_sentence_english": "The economic situation has changed drastically.", + "pos": "adverb", + "word_frequency": 10057 + }, + { + "word": "duende", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goblin;elf;charm (artistic)", + "example_sentence_native": "Se dice que los duendes viven en el bosque.", + "example_sentence_english": "It is said that goblins live in the forest.", + "pos": "noun", + "word_frequency": 10058 + }, + { + "word": "emperatriz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "empess", + "example_sentence_native": "La emperatriz gobernó con sabiduría.", + "example_sentence_english": "The empress ruled wisely.", + "pos": "noun", + "word_frequency": 10062 + }, + { + "word": "encierro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confinement;lockdown;bull run", + "example_sentence_native": "El encierro de los toros es peligroso.", + "example_sentence_english": "The bull run is dangerous.", + "pos": "noun", + "word_frequency": 10063 + }, + { + "word": "encomienda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commission;task;encomienda (historical system)", + "example_sentence_native": "La encomienda era un sistema de trabajo colonial.", + "example_sentence_english": "The encomienda was a colonial labor system.", + "pos": "noun", + "word_frequency": 10064 + }, + { + "word": "envergadura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wingspan;scope;magnitude", + "example_sentence_native": "El proyecto es de gran envergadura.", + "example_sentence_english": "The project is of great magnitude.", + "pos": "noun", + "word_frequency": 10065 + }, + { + "word": "espiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spy", + "example_sentence_native": "No me gusta que me espíen.", + "example_sentence_english": "I don't like being spied on.", + "pos": "verb", + "word_frequency": 10066 + }, + { + "word": "espiritu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spirit;ghost", + "example_sentence_native": "Tiene un espíritu aventurero.", + "example_sentence_english": "He has an adventurous spirit.", + "pos": "noun", + "word_frequency": 10067 + }, + { + "word": "estimulante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulating;exciting", + "example_sentence_native": "La conversación fue muy estimulante.", + "example_sentence_english": "The conversation was very stimulating.", + "pos": "adjective", + "word_frequency": 10068 + }, + { + "word": "estrellar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crash;to smash", + "example_sentence_native": "El coche se estrelló contra un árbol.", + "example_sentence_english": "The car crashed into a tree.", + "pos": "verb", + "word_frequency": 10069 + }, + { + "word": "existencial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existential", + "example_sentence_native": "Tuvo una crisis existencial.", + "example_sentence_english": "He had an existential crisis.", + "pos": "adjective", + "word_frequency": 10070 + }, + { + "word": "exquisito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exquisite;delicious", + "example_sentence_native": "La comida estaba exquisita.", + "example_sentence_english": "The food was exquisite.", + "pos": "adjective", + "word_frequency": 10071 + }, + { + "word": "extraído", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extracted;drawn out", + "example_sentence_native": "El petróleo extraído se envía a la refinería.", + "example_sentence_english": "The extracted oil is sent to the refinery.", + "pos": "adjective", + "word_frequency": 10072 + }, + { + "word": "flote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "afloat;float (as in 'keeping afloat')", + "example_sentence_native": "El barco se mantuvo a flote durante la tormenta.", + "example_sentence_english": "The ship stayed afloat during the storm.", + "pos": "noun", + "word_frequency": 10074 + }, + { + "word": "garden", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garden", + "example_sentence_native": "Tenemos un hermoso garden en casa.", + "example_sentence_english": "We have a beautiful garden at home.", + "pos": "noun", + "word_frequency": 10075 + }, + { + "word": "genéticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetically", + "example_sentence_native": "Los organismos modificados genéticamente son controvertidos.", + "example_sentence_english": "Genetically modified organisms are controversial.", + "pos": "adverb", + "word_frequency": 10076 + }, + { + "word": "goleada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rout;thrashing (in sports)", + "example_sentence_native": "El equipo sufrió una goleada humillante.", + "example_sentence_english": "The team suffered a humiliating rout.", + "pos": "noun", + "word_frequency": 10077 + }, + { + "word": "guatemalteco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Guatemalan", + "example_sentence_native": "Mi amigo es guatemalteco.", + "example_sentence_english": "My friend is Guatemalan.", + "pos": "adjective", + "word_frequency": 10078 + }, + { + "word": "guion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "script;hyphen;dash", + "example_sentence_native": "El guion de la película es excelente.", + "example_sentence_english": "The movie script is excellent.", + "pos": "noun", + "word_frequency": 10079 + }, + { + "word": "heredado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inherited", + "example_sentence_native": "La casa heredada de sus abuelos era muy antigua.", + "example_sentence_english": "The house inherited from his grandparents was very old.", + "pos": "adjective", + "word_frequency": 10082 + }, + { + "word": "heterosexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterosexual", + "example_sentence_native": "Es una persona heterosexual.", + "example_sentence_english": "He is a heterosexual person.", + "pos": "adjective", + "word_frequency": 10083 + }, + { + "word": "hidroeléctrico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydroelectric", + "example_sentence_native": "La energía hidroeléctrica es una fuente renovable.", + "example_sentence_english": "Hydroelectric energy is a renewable source.", + "pos": "adjective", + "word_frequency": 10084 + }, + { + "word": "hidráulico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydraulic", + "example_sentence_native": "El sistema hidráulico del coche necesita reparación.", + "example_sentence_english": "The car's hydraulic system needs repair.", + "pos": "adjective", + "word_frequency": 10085 + }, + { + "word": "imbecil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imbecile;idiotic", + "example_sentence_native": "No seas imbécil, piensa antes de hablar.", + "example_sentence_english": "Don't be an imbecile, think before you speak.", + "pos": "adjective", + "word_frequency": 10088 + }, + { + "word": "imperialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialist", + "example_sentence_native": "Las potencias imperialistas buscaban expandir su territorio.", + "example_sentence_english": "Imperialist powers sought to expand their territory.", + "pos": "adjective", + "word_frequency": 10089 + }, + { + "word": "incompatible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompatible", + "example_sentence_native": "Sus horarios son completamente incompatibles.", + "example_sentence_english": "Their schedules are completely incompatible.", + "pos": "adjective", + "word_frequency": 10090 + }, + { + "word": "infectado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infected", + "example_sentence_native": "La herida se veía infectada.", + "example_sentence_english": "The wound looked infected.", + "pos": "adjective", + "word_frequency": 10091 + }, + { + "word": "insensible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insensitive;unconscious", + "example_sentence_native": "Fue insensible a sus sentimientos.", + "example_sentence_english": "He was insensitive to her feelings.", + "pos": "adjective", + "word_frequency": 10092 + }, + { + "word": "instantáneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instantaneously;instantly", + "example_sentence_native": "La noticia se difundió instantáneamente.", + "example_sentence_english": "The news spread instantaneously.", + "pos": "adverb", + "word_frequency": 10093 + }, + { + "word": "jade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jade", + "example_sentence_native": "Llevaba un collar de jade.", + "example_sentence_english": "She was wearing a jade necklace.", + "pos": "noun", + "word_frequency": 10096 + }, + { + "word": "jurista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jurist;legal expert", + "example_sentence_native": "Es un reconocido jurista en derecho internacional.", + "example_sentence_english": "He is a renowned jurist in international law.", + "pos": "noun", + "word_frequency": 10098 + }, + { + "word": "lancha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boat;launch", + "example_sentence_native": "Alquilamos una lancha para ir a la isla.", + "example_sentence_english": "We rented a boat to go to the island.", + "pos": "noun", + "word_frequency": 10100 + }, + { + "word": "loa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "praise;eulogy", + "example_sentence_native": "El discurso fue una loa a su trayectoria.", + "example_sentence_english": "The speech was a praise of his career.", + "pos": "noun", + "word_frequency": 10104 + }, + { + "word": "lírico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lyrical", + "example_sentence_native": "Su poesía tiene un tono muy lírico.", + "example_sentence_english": "His poetry has a very lyrical tone.", + "pos": "adjective", + "word_frequency": 10106 + }, + { + "word": "magno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great;grand", + "example_sentence_native": "Alejandro Magno fue un gran conquistador.", + "example_sentence_english": "Alexander the Great was a great conqueror.", + "pos": "adjective", + "word_frequency": 10108 + }, + { + "word": "muchedumbre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowd;multitude", + "example_sentence_native": "Una gran muchedumbre se reunió en la plaza.", + "example_sentence_english": "A large crowd gathered in the square.", + "pos": "noun", + "word_frequency": 10115 + }, + { + "word": "nazismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nazism", + "example_sentence_native": "El nazismo fue una ideología totalitaria.", + "example_sentence_english": "Nazism was a totalitarian ideology.", + "pos": "noun", + "word_frequency": 10116 + }, + { + "word": "nulidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nullity;invalidity", + "example_sentence_native": "El contrato fue declarado de nulidad.", + "example_sentence_english": "The contract was declared null and void.", + "pos": "noun", + "word_frequency": 10118 + }, + { + "word": "oca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goose (animal);game of goose (board game)", + "example_sentence_native": "Vimos una oca nadando en el estanque.", + "example_sentence_english": "We saw a goose swimming in the pond.", + "pos": "noun", + "word_frequency": 10119 + }, + { + "word": "paladar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palate", + "example_sentence_native": "El chef tiene un paladar muy refinado.", + "example_sentence_english": "The chef has a very refined palate.", + "pos": "noun", + "word_frequency": 10121 + }, + { + "word": "paranoia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoia", + "example_sentence_native": "Sufre de paranoia y desconfía de todos.", + "example_sentence_english": "He suffers from paranoia and distrusts everyone.", + "pos": "noun", + "word_frequency": 10122 + }, + { + "word": "paridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parity", + "example_sentence_native": "Buscamos la paridad de género en la empresa.", + "example_sentence_english": "We seek gender parity in the company.", + "pos": "noun", + "word_frequency": 10123 + }, + { + "word": "patear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to kick", + "example_sentence_native": "El niño empezó a patear la pelota.", + "example_sentence_english": "The child started to kick the ball.", + "pos": "verb", + "word_frequency": 10124 + }, + { + "word": "paterno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paternal", + "example_sentence_native": "Recibió el apoyo paterno en su decisión.", + "example_sentence_english": "He received paternal support in his decision.", + "pos": "adjective", + "word_frequency": 10125 + }, + { + "word": "pedagógico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedagogical", + "example_sentence_native": "El enfoque pedagógico de la escuela es innovador.", + "example_sentence_english": "The school's pedagogical approach is innovative.", + "pos": "adjective", + "word_frequency": 10126 + }, + { + "word": "plagio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plagiarism", + "example_sentence_native": "Fue acusado de plagio en su tesis.", + "example_sentence_english": "He was accused of plagiarism in his thesis.", + "pos": "noun", + "word_frequency": 10127 + }, + { + "word": "porter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doorman", + "example_sentence_native": "El portero nos abrió la puerta del edificio.", + "example_sentence_english": "The doorman opened the building's door for us.", + "pos": "noun", + "word_frequency": 10128 + }, + { + "word": "quirúrgico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surgical", + "example_sentence_native": "Necesita una intervención quirúrgica urgente.", + "example_sentence_english": "He needs urgent surgical intervention.", + "pos": "adjective", + "word_frequency": 10129 + }, + { + "word": "radiodifusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broadcasting", + "example_sentence_native": "La radiodifusión ha evolucionado mucho con internet.", + "example_sentence_english": "Radio broadcasting has evolved a lot with the internet.", + "pos": "noun", + "word_frequency": 10130 + }, + { + "word": "reconquista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconquest", + "example_sentence_native": "La Reconquista duró varios siglos en España.", + "example_sentence_english": "The Reconquest lasted several centuries in Spain.", + "pos": "noun", + "word_frequency": 10132 + }, + { + "word": "rectificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rectify", + "example_sentence_native": "Debemos rectificar el error antes de que sea tarde.", + "example_sentence_english": "We must rectify the error before it's too late.", + "pos": "verb", + "word_frequency": 10133 + }, + { + "word": "relámpago", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lightning flash", + "example_sentence_native": "Un relámpago iluminó el cielo oscuro.", + "example_sentence_english": "A lightning flash illuminated the dark sky.", + "pos": "noun", + "word_frequency": 10134 + }, + { + "word": "rendido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhausted", + "example_sentence_native": "Después de la caminata, estaba completamente rendido.", + "example_sentence_english": "After the walk, he was completely exhausted.", + "pos": "adjective", + "word_frequency": 10135 + }, + { + "word": "retrasar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to delay", + "example_sentence_native": "La lluvia va a retrasar el vuelo.", + "example_sentence_english": "The rain is going to delay the flight.", + "pos": "verb", + "word_frequency": 10136 + }, + { + "word": "rotundo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resounding", + "example_sentence_native": "Su respuesta fue un no rotundo.", + "example_sentence_english": "His answer was a resounding no.", + "pos": "adjective", + "word_frequency": 10137 + }, + { + "word": "sable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saber", + "example_sentence_native": "El pirata desenvainó su sable.", + "example_sentence_english": "The pirate unsheathed his saber.", + "pos": "noun", + "word_frequency": 10138 + }, + { + "word": "secuestrador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapper", + "example_sentence_native": "La policía capturó al secuestrador.", + "example_sentence_english": "The police captured the kidnapper.", + "pos": "noun", + "word_frequency": 10141 + }, + { + "word": "simbolismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolism", + "example_sentence_native": "La obra está llena de simbolismo.", + "example_sentence_english": "The work is full of symbolism.", + "pos": "noun", + "word_frequency": 10143 + }, + { + "word": "sofisticado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sophisticated", + "example_sentence_native": "Tiene un gusto muy sofisticado en arte.", + "example_sentence_english": "He has a very sophisticated taste in art.", + "pos": "adjective", + "word_frequency": 10144 + }, + { + "word": "sonoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sonorous", + "example_sentence_native": "La calidad sonora de este equipo es excelente.", + "example_sentence_english": "The sound quality of this equipment is excellent.", + "pos": "adjective", + "word_frequency": 10145 + }, + { + "word": "suavidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "softness", + "example_sentence_native": "La suavidad de la tela es increíble.", + "example_sentence_english": "The softness of the fabric is incredible.", + "pos": "noun", + "word_frequency": 10147 + }, + { + "word": "suburbio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suburb", + "example_sentence_native": "Vive en un suburbio tranquilo a las afueras de la ciudad.", + "example_sentence_english": "He lives in a quiet suburb on the outskirts of the city.", + "pos": "noun", + "word_frequency": 10148 + }, + { + "word": "sustancialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substantially", + "example_sentence_native": "Los resultados mejoraron sustancialmente.", + "example_sentence_english": "The results improved substantially.", + "pos": "adverb", + "word_frequency": 10149 + }, + { + "word": "tabú", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taboo", + "example_sentence_native": "En algunas culturas, hablar de la muerte es un tabú.", + "example_sentence_english": "In some cultures, talking about death is a taboo.", + "pos": "noun", + "word_frequency": 10150 + }, + { + "word": "tacón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heel", + "example_sentence_native": "Se rompió el tacón del zapato.", + "example_sentence_english": "The heel of her shoe broke.", + "pos": "noun", + "word_frequency": 10151 + }, + { + "word": "tallo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stem", + "example_sentence_native": "El tallo de la flor es muy largo.", + "example_sentence_english": "The stem of the flower is very long.", + "pos": "noun", + "word_frequency": 10153 + }, + { + "word": "templado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temperate", + "example_sentence_native": "El clima de esta región es templado.", + "example_sentence_english": "The climate of this region is temperate.", + "pos": "adjective", + "word_frequency": 10154 + }, + { + "word": "tesorero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treasurer", + "example_sentence_native": "El tesorero es responsable de las finanzas del club.", + "example_sentence_english": "The treasurer is responsible for the club's finances.", + "pos": "noun", + "word_frequency": 10155 + }, + { + "word": "títere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puppet", + "example_sentence_native": "Los niños disfrutaron del espectáculo de títeres.", + "example_sentence_english": "The children enjoyed the puppet show.", + "pos": "noun", + "word_frequency": 10157 + }, + { + "word": "verdugo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executioner", + "example_sentence_native": "El verdugo cumplió la sentencia.", + "example_sentence_english": "The executioner carried out the sentence.", + "pos": "noun", + "word_frequency": 10159 + }, + { + "word": "ágil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agile;nimble", + "example_sentence_native": "El gato es muy ágil para saltar.", + "example_sentence_english": "The cat is very agile at jumping.", + "pos": "adjective", + "word_frequency": 10166 + }, + { + "word": "angulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angle", + "example_sentence_native": "El angulo del tejado es muy pronunciado.", + "example_sentence_english": "The angle of the roof is very steep.", + "pos": "noun", + "word_frequency": 10170 + }, + { + "word": "aplicacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "application (app)", + "example_sentence_native": "Descargué una nueva aplicacion en mi teléfono.", + "example_sentence_english": "I downloaded a new application on my phone.", + "pos": "noun", + "word_frequency": 10172 + }, + { + "word": "aragonés", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Aragonese (from Aragon)", + "example_sentence_native": "Él habla el dialecto aragonés.", + "example_sentence_english": "He speaks the Aragonese dialect.", + "pos": "adjective", + "word_frequency": 10173 + }, + { + "word": "aria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aria (in opera)", + "example_sentence_native": "La soprano cantó un aria hermosa.", + "example_sentence_english": "The soprano sang a beautiful aria.", + "pos": "noun", + "word_frequency": 10174 + }, + { + "word": "arrestado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrested", + "example_sentence_native": "El sospechoso fue arrestado por la policía.", + "example_sentence_english": "The suspect was arrested by the police.", + "pos": "adjective", + "word_frequency": 10175 + }, + { + "word": "ascensión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ascension;ascent", + "example_sentence_native": "La ascensión a la montaña fue difícil.", + "example_sentence_english": "The ascent of the mountain was difficult.", + "pos": "noun", + "word_frequency": 10176 + }, + { + "word": "aterrador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrifying;frightening", + "example_sentence_native": "Fue una película aterradora.", + "example_sentence_english": "It was a terrifying movie.", + "pos": "adjective", + "word_frequency": 10177 + }, + { + "word": "brutalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutally", + "example_sentence_native": "Fue atacado brutalmente.", + "example_sentence_english": "He was brutally attacked.", + "pos": "adverb", + "word_frequency": 10181 + }, + { + "word": "calado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soaked;drenched", + "example_sentence_native": "Llegó a casa completamente calado por la lluvia.", + "example_sentence_english": "He arrived home completely drenched by the rain.", + "pos": "adjective", + "word_frequency": 10182 + }, + { + "word": "calmado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calm;quiet", + "example_sentence_native": "Después de la tormenta, el mar estaba calmado.", + "example_sentence_english": "After the storm, the sea was calm.", + "pos": "adjective", + "word_frequency": 10183 + }, + { + "word": "caluroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot;warm (weather)", + "example_sentence_native": "Tuvimos un verano muy caluroso este año.", + "example_sentence_english": "We had a very hot summer this year.", + "pos": "adjective", + "word_frequency": 10184 + }, + { + "word": "caricia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caress;stroke", + "example_sentence_native": "Le dio una caricia suave en la mejilla.", + "example_sentence_english": "She gave him a soft caress on the cheek.", + "pos": "noun", + "word_frequency": 10185 + }, + { + "word": "carnicero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "butcher", + "example_sentence_native": "El carnicero me recomendó un buen corte de carne.", + "example_sentence_english": "The butcher recommended a good cut of meat to me.", + "pos": "noun", + "word_frequency": 10186 + }, + { + "word": "censurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to censor;to criticize", + "example_sentence_native": "El gobierno decidió censurar la película.", + "example_sentence_english": "The government decided to censor the movie.", + "pos": "verb", + "word_frequency": 10188 + }, + { + "word": "cerradura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lock (of a door)", + "example_sentence_native": "La cerradura de la puerta está rota.", + "example_sentence_english": "The door lock is broken.", + "pos": "noun", + "word_frequency": 10189 + }, + { + "word": "chulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cool;cute;cocky", + "example_sentence_native": "¡Qué coche tan chulo!", + "example_sentence_english": "What a cool car!", + "pos": "adjective", + "word_frequency": 10190 + }, + { + "word": "científicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scientifically", + "example_sentence_native": "El estudio fue probado científicamente.", + "example_sentence_english": "The study was scientifically proven.", + "pos": "adverb", + "word_frequency": 10191 + }, + { + "word": "complementar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to complement", + "example_sentence_native": "Los colores se complementan muy bien.", + "example_sentence_english": "The colors complement each other very well.", + "pos": "verb", + "word_frequency": 10194 + }, + { + "word": "conglomerado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conglomerate", + "example_sentence_native": "Es un conglomerado de empresas.", + "example_sentence_english": "It is a conglomerate of companies.", + "pos": "noun", + "word_frequency": 10195 + }, + { + "word": "construccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction", + "example_sentence_native": "La construccion del nuevo edificio avanza rápido.", + "example_sentence_english": "The construction of the new building is progressing quickly.", + "pos": "noun", + "word_frequency": 10196 + }, + { + "word": "cucaracha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cockroach", + "example_sentence_native": "Vi una cucaracha corriendo por la cocina.", + "example_sentence_english": "I saw a cockroach running through the kitchen.", + "pos": "noun", + "word_frequency": 10198 + }, + { + "word": "curriculum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curriculum;resume", + "example_sentence_native": "Necesito actualizar mi curriculum para el nuevo trabajo.", + "example_sentence_english": "I need to update my resume for the new job.", + "pos": "noun", + "word_frequency": 10199 + }, + { + "word": "delicadeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicacy", + "example_sentence_native": "Trató el tema con mucha delicadeza.", + "example_sentence_english": "He handled the topic with great delicacy.", + "pos": "noun", + "word_frequency": 10202 + }, + { + "word": "detector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detector", + "example_sentence_native": "El detector de humo se activó.", + "example_sentence_english": "The smoke detector was activated.", + "pos": "noun", + "word_frequency": 10203 + }, + { + "word": "devoto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devout", + "example_sentence_native": "Es un hombre muy devoto.", + "example_sentence_english": "He is a very devout man.", + "pos": "adjective", + "word_frequency": 10204 + }, + { + "word": "distraer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distract", + "example_sentence_native": "No dejes que el ruido te distraiga.", + "example_sentence_english": "Don't let the noise distract you.", + "pos": "verb", + "word_frequency": 10205 + }, + { + "word": "educacional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educational", + "example_sentence_native": "Es un programa con fines educacionales.", + "example_sentence_english": "It's a program with educational purposes.", + "pos": "adjective", + "word_frequency": 10209 + }, + { + "word": "embarque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boarding", + "example_sentence_native": "La hora de embarque es a las diez.", + "example_sentence_english": "The boarding time is at ten.", + "pos": "noun", + "word_frequency": 10211 + }, + { + "word": "entrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incoming", + "example_sentence_native": "La llamada entrante es de un número desconocido.", + "example_sentence_english": "The incoming call is from an unknown number.", + "pos": "adjective", + "word_frequency": 10212 + }, + { + "word": "estigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stigma", + "example_sentence_native": "Todavía existe un estigma social sobre esa enfermedad.", + "example_sentence_english": "There is still a social stigma about that disease.", + "pos": "noun", + "word_frequency": 10213 + }, + { + "word": "exceptuar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to except", + "example_sentence_native": "La regla exceptúa a los menores de edad.", + "example_sentence_english": "The rule excepts minors.", + "pos": "verb", + "word_frequency": 10214 + }, + { + "word": "frutal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fruity", + "example_sentence_native": "Este árbol es muy frutal.", + "example_sentence_english": "This tree is very fruit-bearing.", + "pos": "adjective", + "word_frequency": 10218 + }, + { + "word": "fundición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundry", + "example_sentence_native": "La fundición de metales es un proceso antiguo.", + "example_sentence_english": "Metal casting is an ancient process.", + "pos": "noun", + "word_frequency": 10219 + }, + { + "word": "galardonado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awarded", + "example_sentence_native": "El director galardonado dio un discurso.", + "example_sentence_english": "The award-winning director gave a speech.", + "pos": "adjective", + "word_frequency": 10220 + }, + { + "word": "glucosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glucose", + "example_sentence_native": "El cuerpo necesita glucosa para obtener energía.", + "example_sentence_english": "The body needs glucose for energy.", + "pos": "noun", + "word_frequency": 10221 + }, + { + "word": "grosor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thickness", + "example_sentence_native": "Mide el grosor de la tabla.", + "example_sentence_english": "Measure the thickness of the board.", + "pos": "noun", + "word_frequency": 10222 + }, + { + "word": "halo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halo", + "example_sentence_native": "La luna tenía un halo brillante.", + "example_sentence_english": "The moon had a bright halo.", + "pos": "noun", + "word_frequency": 10223 + }, + { + "word": "hepatitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hepatitis", + "example_sentence_native": "La hepatitis es una inflamación del hígado.", + "example_sentence_english": "Hepatitis is an inflammation of the liver.", + "pos": "noun", + "word_frequency": 10224 + }, + { + "word": "heroico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heroic", + "example_sentence_native": "Realizó un acto heroico para salvar a la gente.", + "example_sentence_english": "He performed a heroic act to save the people.", + "pos": "adjective", + "word_frequency": 10225 + }, + { + "word": "imparable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unstoppable", + "example_sentence_native": "Su progreso ha sido imparable.", + "example_sentence_english": "His progress has been unstoppable.", + "pos": "adjective", + "word_frequency": 10227 + }, + { + "word": "inciso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clause", + "example_sentence_native": "Lee el inciso b del artículo.", + "example_sentence_english": "Read clause b of the article.", + "pos": "noun", + "word_frequency": 10228 + }, + { + "word": "indefinidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indefinitely", + "example_sentence_native": "La reunión se pospuso indefinidamente.", + "example_sentence_english": "The meeting was postponed indefinitely.", + "pos": "adverb", + "word_frequency": 10229 + }, + { + "word": "interactivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interactive", + "example_sentence_native": "El museo tiene muchas exhibiciones interactivas.", + "example_sentence_english": "The museum has many interactive exhibits.", + "pos": "adjective", + "word_frequency": 10232 + }, + { + "word": "irreversible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irreversible", + "example_sentence_native": "El daño es irreversible.", + "example_sentence_english": "The damage is irreversible.", + "pos": "adjective", + "word_frequency": 10233 + }, + { + "word": "latente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "latent", + "example_sentence_native": "El problema permaneció latente durante años.", + "example_sentence_english": "The problem remained latent for years.", + "pos": "adjective", + "word_frequency": 10236 + }, + { + "word": "letrero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sign", + "example_sentence_native": "El letrero indicaba la salida.", + "example_sentence_english": "The sign indicated the exit.", + "pos": "noun", + "word_frequency": 10238 + }, + { + "word": "lio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mess", + "example_sentence_native": "Se armó un gran lío en la fiesta.", + "example_sentence_english": "A big mess broke out at the party.", + "pos": "noun", + "word_frequency": 10239 + }, + { + "word": "llamativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eye-catching", + "example_sentence_native": "El color rojo es muy llamativo.", + "example_sentence_english": "The red color is very eye-catching.", + "pos": "adjective", + "word_frequency": 10240 + }, + { + "word": "lujoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luxurious", + "example_sentence_native": "Compraron un coche muy lujoso.", + "example_sentence_english": "They bought a very luxurious car.", + "pos": "adjective", + "word_frequency": 10241 + }, + { + "word": "martirio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "martyrdom;torment", + "example_sentence_native": "Soportó el martirio con gran dignidad.", + "example_sentence_english": "He endured the torment with great dignity.", + "pos": "noun", + "word_frequency": 10244 + }, + { + "word": "mejoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvement", + "example_sentence_native": "Se nota una mejoría en su salud.", + "example_sentence_english": "An improvement in his health is noticeable.", + "pos": "noun", + "word_frequency": 10245 + }, + { + "word": "melancolía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melancholy", + "example_sentence_native": "A veces siente una profunda melancolía.", + "example_sentence_english": "Sometimes he feels a deep melancholy.", + "pos": "noun", + "word_frequency": 10246 + }, + { + "word": "mensualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly", + "example_sentence_native": "Recibe su salario mensualmente.", + "example_sentence_english": "He receives his salary monthly.", + "pos": "adverb", + "word_frequency": 10247 + }, + { + "word": "merino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merino (sheep;wool)", + "example_sentence_native": "La lana merino es muy suave.", + "example_sentence_english": "Merino wool is very soft.", + "pos": "noun", + "word_frequency": 10248 + }, + { + "word": "narcotraficante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug trafficker", + "example_sentence_native": "El narcotraficante fue arrestado en la frontera.", + "example_sentence_english": "The drug trafficker was arrested at the border.", + "pos": "noun", + "word_frequency": 10251 + }, + { + "word": "naufragio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipwreck", + "example_sentence_native": "El naufragio del barco causó muchas pérdidas.", + "example_sentence_english": "The shipwreck caused many losses.", + "pos": "noun", + "word_frequency": 10252 + }, + { + "word": "organizacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organization", + "example_sentence_native": "La organización del evento fue excelente.", + "example_sentence_english": "The organization of the event was excellent.", + "pos": "noun", + "word_frequency": 10253 + }, + { + "word": "panameño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Panamanian", + "example_sentence_native": "Ella es de nacionalidad panameña.", + "example_sentence_english": "She is of Panamanian nationality.", + "pos": "adjective", + "word_frequency": 10254 + }, + { + "word": "pecador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sinner", + "example_sentence_native": "Se arrepintió de ser un pecador.", + "example_sentence_english": "He repented for being a sinner.", + "pos": "noun", + "word_frequency": 10256 + }, + { + "word": "percibido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percieved", + "example_sentence_native": "El riesgo percibido era alto.", + "example_sentence_english": "The perceived risk was high.", + "pos": "adjective", + "word_frequency": 10257 + }, + { + "word": "perforación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perforation;drilling", + "example_sentence_native": "Necesitan una perforación para extraer el petróleo.", + "example_sentence_english": "They need a drilling for oil extraction.", + "pos": "noun", + "word_frequency": 10258 + }, + { + "word": "pesimismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pessimism", + "example_sentence_native": "Su pesimismo afecta a todo el equipo.", + "example_sentence_english": "His pessimism affects the whole team.", + "pos": "noun", + "word_frequency": 10259 + }, + { + "word": "pillar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch;to get;to grab", + "example_sentence_native": "Voy a pillar el autobús.", + "example_sentence_english": "I'm going to catch the bus.", + "pos": "verb", + "word_frequency": 10261 + }, + { + "word": "platillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saucer;small plate", + "example_sentence_native": "Pon la taza en el platillo.", + "example_sentence_english": "Put the cup on the saucer.", + "pos": "noun", + "word_frequency": 10262 + }, + { + "word": "portar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry;to bear", + "example_sentence_native": "Está prohibido portar armas en este lugar.", + "example_sentence_english": "It is forbidden to carry weapons in this place.", + "pos": "verb", + "word_frequency": 10263 + }, + { + "word": "pose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pose", + "example_sentence_native": "La modelo adoptó una pose elegante.", + "example_sentence_english": "The model adopted an elegant pose.", + "pos": "noun", + "word_frequency": 10264 + }, + { + "word": "prestamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loan", + "example_sentence_native": "Necesito un préstamo para comprar la casa.", + "example_sentence_english": "I need a loan to buy the house.", + "pos": "noun", + "word_frequency": 10265 + }, + { + "word": "problematico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "problematic", + "example_sentence_native": "La situación se ha vuelto muy problemática.", + "example_sentence_english": "The situation has become very problematic.", + "pos": "adjective", + "word_frequency": 10266 + }, + { + "word": "promo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promo;promotion", + "example_sentence_native": "Hay una promo especial en la tienda.", + "example_sentence_english": "There's a special promo at the store.", + "pos": "noun", + "word_frequency": 10267 + }, + { + "word": "pseudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pseudo-", + "example_sentence_native": "Es una ciencia pseudo-científica.", + "example_sentence_english": "It's a pseudo-scientific science.", + "pos": "adjective", + "word_frequency": 10268 + }, + { + "word": "psicopata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychopath", + "example_sentence_native": "El personaje principal era un psicópata.", + "example_sentence_english": "The main character was a psychopath.", + "pos": "noun", + "word_frequency": 10269 + }, + { + "word": "puerco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pig", + "example_sentence_native": "El puerco estaba en el barro.", + "example_sentence_english": "The pig was in the mud.", + "pos": "noun", + "word_frequency": 10270 + }, + { + "word": "puno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fist", + "example_sentence_native": "Cerró la mano en un puño.", + "example_sentence_english": "He closed his hand into a fist.", + "pos": "noun", + "word_frequency": 10272 + }, + { + "word": "ratificado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ratified", + "example_sentence_native": "El acuerdo fue ratificado por ambos países.", + "example_sentence_english": "The agreement was ratified by both countries.", + "pos": "adjective", + "word_frequency": 10275 + }, + { + "word": "rebote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebound;bounce", + "example_sentence_native": "El balón dio un rebote alto.", + "example_sentence_english": "The ball gave a high rebound.", + "pos": "noun", + "word_frequency": 10276 + }, + { + "word": "recarga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recharge;refill", + "example_sentence_native": "Necesito hacer una recarga de mi móvil.", + "example_sentence_english": "I need to recharge my phone.", + "pos": "noun", + "word_frequency": 10277 + }, + { + "word": "rectificacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectification;correction", + "example_sentence_native": "El periódico publicó una rectificación.", + "example_sentence_english": "The newspaper published a rectification.", + "pos": "noun", + "word_frequency": 10278 + }, + { + "word": "redistribucion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redistribution", + "example_sentence_native": "Abogan por una redistribución de la riqueza.", + "example_sentence_english": "They advocate for a redistribution of wealth.", + "pos": "noun", + "word_frequency": 10279 + }, + { + "word": "reproductor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "player (device)", + "example_sentence_native": "Mi reproductor de música está roto.", + "example_sentence_english": "My music player is broken.", + "pos": "noun", + "word_frequency": 10280 + }, + { + "word": "rescatado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescued", + "example_sentence_native": "El perro rescatado encontró un nuevo hogar.", + "example_sentence_english": "The rescued dog found a new home.", + "pos": "adjective", + "word_frequency": 10281 + }, + { + "word": "round", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "round", + "example_sentence_native": "El boxeador ganó el primer round.", + "example_sentence_english": "The boxer won the first round.", + "pos": "noun", + "word_frequency": 10282 + }, + { + "word": "sastre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tailor", + "example_sentence_native": "El sastre me hizo un traje a medida.", + "example_sentence_english": "The tailor made me a custom suit.", + "pos": "noun", + "word_frequency": 10283 + }, + { + "word": "satisfactorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfactory", + "example_sentence_native": "Los resultados del examen fueron satisfactorios.", + "example_sentence_english": "The exam results were satisfactory.", + "pos": "adjective", + "word_frequency": 10284 + }, + { + "word": "seleccion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "selection;team", + "example_sentence_native": "La selección española de fútbol ganó el partido.", + "example_sentence_english": "The Spanish national football team won the match.", + "pos": "noun", + "word_frequency": 10285 + }, + { + "word": "serenidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serenity", + "example_sentence_native": "Mantuvo la serenidad a pesar de la situación difícil.", + "example_sentence_english": "He maintained serenity despite the difficult situation.", + "pos": "noun", + "word_frequency": 10286 + }, + { + "word": "sindicalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trade unionist", + "example_sentence_native": "El sindicalista negoció un nuevo contrato para los trabajadores.", + "example_sentence_english": "The trade unionist negotiated a new contract for the workers.", + "pos": "noun", + "word_frequency": 10287 + }, + { + "word": "soga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rope", + "example_sentence_native": "Ató el paquete con una soga.", + "example_sentence_english": "He tied the package with a rope.", + "pos": "noun", + "word_frequency": 10289 + }, + { + "word": "solicitado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requested;in demand", + "example_sentence_native": "Es un experto muy solicitado en su campo.", + "example_sentence_english": "He is a highly requested expert in his field.", + "pos": "adjective", + "word_frequency": 10290 + }, + { + "word": "solito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "all alone;by oneself (diminutive)", + "example_sentence_native": "El niño se quedó solito en casa.", + "example_sentence_english": "The child stayed all alone at home.", + "pos": "adjective", + "word_frequency": 10291 + }, + { + "word": "subterraneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underground;subterranean", + "example_sentence_native": "Exploramos las cuevas subterráneas.", + "example_sentence_english": "We explored the underground caves.", + "pos": "adjective", + "word_frequency": 10292 + }, + { + "word": "suministrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supply;to provide", + "example_sentence_native": "La empresa debe suministrar agua potable a la ciudad.", + "example_sentence_english": "The company must supply drinking water to the city.", + "pos": "verb", + "word_frequency": 10293 + }, + { + "word": "surrealista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surreal", + "example_sentence_native": "Tuvo un sueño muy surrealista anoche.", + "example_sentence_english": "He had a very surreal dream last night.", + "pos": "adjective", + "word_frequency": 10294 + }, + { + "word": "tala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "felling;logging", + "example_sentence_native": "La tala de árboles es un problema ambiental.", + "example_sentence_english": "Tree felling is an environmental problem.", + "pos": "noun", + "word_frequency": 10296 + }, + { + "word": "talentoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talented", + "example_sentence_native": "Es un músico muy talentoso.", + "example_sentence_english": "He is a very talented musician.", + "pos": "adjective", + "word_frequency": 10297 + }, + { + "word": "telegram", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegram", + "example_sentence_native": "Recibió un telegrama urgente.", + "example_sentence_english": "He received an urgent telegram.", + "pos": "noun", + "word_frequency": 10298 + }, + { + "word": "temperamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temperament", + "example_sentence_native": "Tiene un temperamento muy fuerte.", + "example_sentence_english": "He has a very strong temperament.", + "pos": "noun", + "word_frequency": 10299 + }, + { + "word": "tinte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dye;tint", + "example_sentence_native": "Se tiñó el pelo con un tinte rubio.", + "example_sentence_english": "She dyed her hair with a blonde tint.", + "pos": "noun", + "word_frequency": 10300 + }, + { + "word": "tiron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pull;tug;jerk", + "example_sentence_native": "Dio un tirón a la cuerda.", + "example_sentence_english": "He gave the rope a tug.", + "pos": "noun", + "word_frequency": 10301 + }, + { + "word": "tornillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screw", + "example_sentence_native": "Necesito un tornillo para fijar esto.", + "example_sentence_english": "I need a screw to fix this.", + "pos": "noun", + "word_frequency": 10303 + }, + { + "word": "tricolor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tricolor", + "example_sentence_native": "La bandera mexicana es tricolor.", + "example_sentence_english": "The Mexican flag is tricolor.", + "pos": "adjective", + "word_frequency": 10305 + }, + { + "word": "urgentemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urgently", + "example_sentence_native": "Necesitamos resolver esto urgentemente.", + "example_sentence_english": "We need to resolve this urgently.", + "pos": "adverb", + "word_frequency": 10308 + }, + { + "word": "utensilio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "utensil", + "example_sentence_native": "Los utensilios de cocina están en el cajón.", + "example_sentence_english": "The kitchen utensils are in the drawer.", + "pos": "noun", + "word_frequency": 10309 + }, + { + "word": "vestigio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vestige;trace", + "example_sentence_native": "Solo quedan vestigios de la antigua civilización.", + "example_sentence_english": "Only vestiges of the ancient civilization remain.", + "pos": "noun", + "word_frequency": 10311 + }, + { + "word": "vivencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experience (lived experience)", + "example_sentence_native": "Fue una vivencia inolvidable.", + "example_sentence_english": "It was an unforgettable experience.", + "pos": "noun", + "word_frequency": 10313 + }, + { + "word": "voltaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voltage", + "example_sentence_native": "Comprueba el voltaje antes de conectar el aparato.", + "example_sentence_english": "Check the voltage before connecting the device.", + "pos": "noun", + "word_frequency": 10314 + }, + { + "word": "valvula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valve", + "example_sentence_native": "La válvula de seguridad se abrió.", + "example_sentence_english": "The safety valve opened.", + "pos": "noun", + "word_frequency": 10315 + }, + { + "word": "yankee", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Yankee", + "example_sentence_native": "Los Yankees de Nueva York son un equipo famoso.", + "example_sentence_english": "The New York Yankees are a famous team.", + "pos": "noun", + "word_frequency": 10319 + }, + { + "word": "apice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apex;peak", + "example_sentence_native": "Alcanzó el ápice de su carrera.", + "example_sentence_english": "He reached the apex of his career.", + "pos": "noun", + "word_frequency": 10320 + }, + { + "word": "aburrir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bore", + "example_sentence_native": "Esta película me va a aburrir.", + "example_sentence_english": "This movie is going to bore me.", + "pos": "verb", + "word_frequency": 10324 + }, + { + "word": "aclarado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarified;lightened", + "example_sentence_native": "El asunto ha quedado aclarado.", + "example_sentence_english": "The matter has been clarified.", + "pos": "adjective", + "word_frequency": 10325 + }, + { + "word": "administracion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "administration", + "example_sentence_native": "La administración del edificio es muy eficiente.", + "example_sentence_english": "The building's administration is very efficient.", + "pos": "noun", + "word_frequency": 10326 + }, + { + "word": "afro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Afro-", + "example_sentence_native": "Tiene el pelo afro.", + "example_sentence_english": "He has Afro hair.", + "pos": "adjective", + "word_frequency": 10327 + }, + { + "word": "alimentarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feed oneself;to nourish oneself", + "example_sentence_native": "Es importante alimentarse bien.", + "example_sentence_english": "It's important to feed oneself well.", + "pos": "verb", + "word_frequency": 10329 + }, + { + "word": "anochecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get dark;to become night", + "example_sentence_native": "Me gusta pasear al anochecer.", + "example_sentence_english": "I like to walk at dusk.", + "pos": "verb", + "word_frequency": 10331 + }, + { + "word": "anotacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annotation;note", + "example_sentence_native": "Hizo una anotación en el margen.", + "example_sentence_english": "He made a note in the margin.", + "pos": "noun", + "word_frequency": 10332 + }, + { + "word": "apogeo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apogee;peak", + "example_sentence_native": "La civilización romana alcanzó su apogeo.", + "example_sentence_english": "The Roman civilization reached its apogee.", + "pos": "noun", + "word_frequency": 10333 + }, + { + "word": "apendice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appendix", + "example_sentence_native": "Consulta el apéndice para más información.", + "example_sentence_english": "Consult the appendix for more information.", + "pos": "noun", + "word_frequency": 10334 + }, + { + "word": "argumentacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "argumentation;reasoning", + "example_sentence_native": "Su argumentación fue muy convincente.", + "example_sentence_english": "His argumentation was very convincing.", + "pos": "noun", + "word_frequency": 10335 + }, + { + "word": "asa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handle", + "example_sentence_native": "La taza tiene un asa rota.", + "example_sentence_english": "The cup has a broken handle.", + "pos": "noun", + "word_frequency": 10337 + }, + { + "word": "atribuido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attributed", + "example_sentence_native": "El éxito fue atribuido a su esfuerzo.", + "example_sentence_english": "The success was attributed to his effort.", + "pos": "adjective", + "word_frequency": 10338 + }, + { + "word": "autonomico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomous (regional)", + "example_sentence_native": "Las elecciones autonómicas se celebrarán pronto.", + "example_sentence_english": "The regional elections will be held soon.", + "pos": "adjective", + "word_frequency": 10339 + }, + { + "word": "biografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biography", + "example_sentence_native": "Estoy leyendo una biografía interesante.", + "example_sentence_english": "I am reading an interesting biography.", + "pos": "noun", + "word_frequency": 10343 + }, + { + "word": "brujo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wizard;witch doctor", + "example_sentence_native": "El brujo preparó una poción.", + "example_sentence_english": "The wizard prepared a potion.", + "pos": "noun", + "word_frequency": 10347 + }, + { + "word": "cadete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cadet", + "example_sentence_native": "El cadete está en formación.", + "example_sentence_english": "The cadet is in training.", + "pos": "noun", + "word_frequency": 10348 + }, + { + "word": "clamor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clamor;outcry", + "example_sentence_native": "Hubo un clamor popular por justicia.", + "example_sentence_english": "There was a popular outcry for justice.", + "pos": "noun", + "word_frequency": 10353 + }, + { + "word": "clandestino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clandestine;secret", + "example_sentence_native": "Operaban desde un lugar clandestino.", + "example_sentence_english": "They operated from a clandestine location.", + "pos": "adjective", + "word_frequency": 10354 + }, + { + "word": "clavado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nailed;stuck;exact", + "example_sentence_native": "El clavo está bien clavado en la pared.", + "example_sentence_english": "The nail is well nailed into the wall.", + "pos": "adjective", + "word_frequency": 10355 + }, + { + "word": "clientela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clientele;customers", + "example_sentence_native": "El restaurante tiene una clientela fiel.", + "example_sentence_english": "The restaurant has a loyal clientele.", + "pos": "noun", + "word_frequency": 10356 + }, + { + "word": "compacto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compact", + "example_sentence_native": "Es un coche muy compacto.", + "example_sentence_english": "It's a very compact car.", + "pos": "adjective", + "word_frequency": 10357 + }, + { + "word": "compatibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatibility", + "example_sentence_native": "La compatibilidad de software es importante.", + "example_sentence_english": "Software compatibility is important.", + "pos": "noun", + "word_frequency": 10358 + }, + { + "word": "conciliar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconcile;to conciliate;to get (sleep)", + "example_sentence_native": "Necesito conciliar el sueño.", + "example_sentence_english": "I need to get some sleep.", + "pos": "verb", + "word_frequency": 10359 + }, + { + "word": "constructora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction company", + "example_sentence_native": "La constructora terminó el edificio a tiempo.", + "example_sentence_english": "The construction company finished the building on time.", + "pos": "noun", + "word_frequency": 10360 + }, + { + "word": "coordinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coordinated", + "example_sentence_native": "El equipo trabajó de manera coordinada.", + "example_sentence_english": "The team worked in a coordinated manner.", + "pos": "adjective", + "word_frequency": 10361 + }, + { + "word": "cuaresma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lent", + "example_sentence_native": "Durante la Cuaresma, muchas personas ayunan.", + "example_sentence_english": "During Lent, many people fast.", + "pos": "noun", + "word_frequency": 10362 + }, + { + "word": "cuestionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questioned;challenged", + "example_sentence_native": "Su liderazgo ha sido cuestionado.", + "example_sentence_english": "His leadership has been questioned.", + "pos": "adjective", + "word_frequency": 10363 + }, + { + "word": "cumplirse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be fulfilled;to come true", + "example_sentence_native": "Se cumplieron diez años desde que nos conocimos.", + "example_sentence_english": "Ten years have passed since we met.", + "pos": "verb", + "word_frequency": 10364 + }, + { + "word": "curry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curry", + "example_sentence_native": "Me encanta el pollo al curry.", + "example_sentence_english": "I love chicken curry.", + "pos": "noun", + "word_frequency": 10365 + }, + { + "word": "cuantico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantum", + "example_sentence_native": "La física cuántica es muy compleja.", + "example_sentence_english": "Quantum physics is very complex.", + "pos": "adjective", + "word_frequency": 10366 + }, + { + "word": "computo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "computation;count", + "example_sentence_native": "El cómputo final de votos se anunciará mañana.", + "example_sentence_english": "The final vote count will be announced tomorrow.", + "pos": "noun", + "word_frequency": 10367 + }, + { + "word": "conyuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spouse", + "example_sentence_native": "Ambos cónyuges deben firmar el documento.", + "example_sentence_english": "Both spouses must sign the document.", + "pos": "noun", + "word_frequency": 10368 + }, + { + "word": "despacito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slowly;softly", + "example_sentence_native": "Habla despacito para que te entienda.", + "example_sentence_english": "Speak slowly so I can understand you.", + "pos": "adverb", + "word_frequency": 10370 + }, + { + "word": "durado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lasted;endured", + "example_sentence_native": "El efecto ha durado más de lo esperado.", + "example_sentence_english": "The effect has lasted longer than expected.", + "pos": "adjective", + "word_frequency": 10372 + }, + { + "word": "edge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edge (advantage)", + "example_sentence_native": "Necesitamos una ventaja competitiva para tener un edge en el mercado.", + "example_sentence_english": "We need a competitive advantage to have an edge in the market.", + "pos": "noun", + "word_frequency": 10373 + }, + { + "word": "edition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edition", + "example_sentence_native": "Esta es la primera edición del libro.", + "example_sentence_english": "This is the first edition of the book.", + "pos": "noun", + "word_frequency": 10374 + }, + { + "word": "emboscada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambush", + "example_sentence_native": "Cayeron en una emboscada en el bosque.", + "example_sentence_english": "They fell into an ambush in the forest.", + "pos": "noun", + "word_frequency": 10375 + }, + { + "word": "encuestado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surveyed;polled", + "example_sentence_native": "El público encuestado mostró su aprobación.", + "example_sentence_english": "The surveyed public showed its approval.", + "pos": "adjective", + "word_frequency": 10376 + }, + { + "word": "escrupulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scruple", + "example_sentence_native": "No tuvo ningún escrúpulo en mentir.", + "example_sentence_english": "He had no scruple about lying.", + "pos": "noun", + "word_frequency": 10378 + }, + { + "word": "evil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evil", + "example_sentence_native": "Es un personaje muy evil en la película.", + "example_sentence_english": "He is a very evil character in the movie.", + "pos": "adjective", + "word_frequency": 10380 + }, + { + "word": "feudal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feudal", + "example_sentence_native": "La sociedad feudal tenía una estructura jerárquica.", + "example_sentence_english": "Feudal society had a hierarchical structure.", + "pos": "adjective", + "word_frequency": 10382 + }, + { + "word": "firmante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signatory", + "example_sentence_native": "El firmante del contrato debe ser mayor de edad.", + "example_sentence_english": "The signatory of the contract must be of legal age.", + "pos": "noun", + "word_frequency": 10383 + }, + { + "word": "fitness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fitness", + "example_sentence_native": "Practica fitness para mantenerse en forma.", + "example_sentence_english": "He practices fitness to stay in shape.", + "pos": "noun", + "word_frequency": 10384 + }, + { + "word": "fragata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frigate", + "example_sentence_native": "La fragata zarpó hacia alta mar.", + "example_sentence_english": "The frigate set sail for the open sea.", + "pos": "noun", + "word_frequency": 10385 + }, + { + "word": "freelance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freelancer", + "example_sentence_native": "Trabaja como freelance desde casa.", + "example_sentence_english": "He works as a freelancer from home.", + "pos": "noun", + "word_frequency": 10386 + }, + { + "word": "hermanita", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little sister", + "example_sentence_native": "Mi hermanita juega en el jardín.", + "example_sentence_english": "My little sister plays in the garden.", + "pos": "noun", + "word_frequency": 10391 + }, + { + "word": "hinchada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fan base;crowd (of supporters)", + "example_sentence_native": "La hinchada celebró el gol con euforia.", + "example_sentence_english": "The fan base celebrated the goal with euphoria.", + "pos": "noun", + "word_frequency": 10392 + }, + { + "word": "hervir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to boil", + "example_sentence_native": "Pon a hervir el agua para el té.", + "example_sentence_english": "Put the water to boil for the tea.", + "pos": "verb", + "word_frequency": 10393 + }, + { + "word": "identico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identical", + "example_sentence_native": "Los gemelos son idénticos.", + "example_sentence_english": "The twins are identical.", + "pos": "adjective", + "word_frequency": 10396 + }, + { + "word": "indignante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outrageous;infuriating", + "example_sentence_native": "La injusticia es indignante.", + "example_sentence_english": "The injustice is outrageous.", + "pos": "adjective", + "word_frequency": 10397 + }, + { + "word": "inquilino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenant", + "example_sentence_native": "El inquilino pagó el alquiler a tiempo.", + "example_sentence_english": "The tenant paid the rent on time.", + "pos": "noun", + "word_frequency": 10398 + }, + { + "word": "insurreccion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurrection", + "example_sentence_native": "La insurrección fue sofocada por el ejército.", + "example_sentence_english": "The insurrection was suppressed by the army.", + "pos": "noun", + "word_frequency": 10399 + }, + { + "word": "intencional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentional", + "example_sentence_native": "Su error fue intencional, no un accidente.", + "example_sentence_english": "His mistake was intentional, not an accident.", + "pos": "adjective", + "word_frequency": 10401 + }, + { + "word": "intestinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intestinal", + "example_sentence_native": "El médico examinó la flora intestinal del paciente.", + "example_sentence_english": "The doctor examined the patient's intestinal flora.", + "pos": "adjective", + "word_frequency": 10402 + }, + { + "word": "invadido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invaded", + "example_sentence_native": "El territorio fue invadido por fuerzas extranjeras.", + "example_sentence_english": "The territory was invaded by foreign forces.", + "pos": "adjective", + "word_frequency": 10403 + }, + { + "word": "invasion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invasion", + "example_sentence_native": "La invasión del país causó mucha destrucción.", + "example_sentence_english": "The invasion of the country caused much destruction.", + "pos": "noun", + "word_frequency": 10404 + }, + { + "word": "jovencita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "young girl", + "example_sentence_native": "La jovencita estaba leyendo un libro en el parque.", + "example_sentence_english": "The young girl was reading a book in the park.", + "pos": "noun", + "word_frequency": 10406 + }, + { + "word": "lactancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lactation", + "example_sentence_native": "La lactancia materna es beneficiosa para el bebé.", + "example_sentence_english": "Breastfeeding is beneficial for the baby.", + "pos": "noun", + "word_frequency": 10411 + }, + { + "word": "lagrima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tear", + "example_sentence_native": "Una lágrima rodó por su mejilla.", + "example_sentence_english": "A tear rolled down her cheek.", + "pos": "noun", + "word_frequency": 10412 + }, + { + "word": "laico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secular", + "example_sentence_native": "El estado debe ser laico y no favorecer ninguna religión.", + "example_sentence_english": "The state must be secular and not favor any religion.", + "pos": "adjective", + "word_frequency": 10413 + }, + { + "word": "leucemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leukemia", + "example_sentence_native": "La leucemia es un tipo de cáncer de la sangre.", + "example_sentence_english": "Leukemia is a type of blood cancer.", + "pos": "noun", + "word_frequency": 10416 + }, + { + "word": "mani", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peanut", + "example_sentence_native": "Me gusta comer maní tostado.", + "example_sentence_english": "I like to eat roasted peanuts.", + "pos": "noun", + "word_frequency": 10420 + }, + { + "word": "marisco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seafood", + "example_sentence_native": "Los mariscos son muy populares en la costa.", + "example_sentence_english": "Seafood is very popular on the coast.", + "pos": "noun", + "word_frequency": 10421 + }, + { + "word": "molestado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bothered", + "example_sentence_native": "Se sentía molestado por el ruido constante.", + "example_sentence_english": "He felt bothered by the constant noise.", + "pos": "adjective", + "word_frequency": 10426 + }, + { + "word": "mosaico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mosaic", + "example_sentence_native": "El suelo estaba decorado con un hermoso mosaico.", + "example_sentence_english": "The floor was decorated with a beautiful mosaic.", + "pos": "noun", + "word_frequency": 10427 + }, + { + "word": "muchisimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very much;a lot", + "example_sentence_native": "Había muchísima gente en el concierto.", + "example_sentence_english": "There were very many people at the concert.", + "pos": "adjective", + "word_frequency": 10428 + }, + { + "word": "multiplicar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to multiply", + "example_sentence_native": "Necesitamos multiplicar estos números para obtener el total.", + "example_sentence_english": "We need to multiply these numbers to get the total.", + "pos": "verb", + "word_frequency": 10429 + }, + { + "word": "naranjo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orange tree", + "example_sentence_native": "El jardín tiene un viejo naranjo que da muchas frutas.", + "example_sentence_english": "The garden has an old orange tree that bears a lot of fruit.", + "pos": "noun", + "word_frequency": 10430 + }, + { + "word": "navio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ship", + "example_sentence_native": "El antiguo navío zarpó hacia tierras lejanas.", + "example_sentence_english": "The old ship set sail for distant lands.", + "pos": "noun", + "word_frequency": 10432 + }, + { + "word": "obispado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bishopric", + "example_sentence_native": "El obispado anunció nuevas directrices para la comunidad.", + "example_sentence_english": "The bishopric announced new guidelines for the community.", + "pos": "noun", + "word_frequency": 10434 + }, + { + "word": "olivar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "olive grove", + "example_sentence_native": "La región es famosa por sus extensos olivares.", + "example_sentence_english": "The region is famous for its extensive olive groves.", + "pos": "noun", + "word_frequency": 10435 + }, + { + "word": "pactado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreed", + "example_sentence_native": "El precio pactado fue aceptado por ambas partes.", + "example_sentence_english": "The agreed price was accepted by both parties.", + "pos": "adjective", + "word_frequency": 10437 + }, + { + "word": "particularidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "particularity", + "example_sentence_native": "Cada región tiene sus propias particularidades culturales.", + "example_sentence_english": "Each region has its own cultural particularities.", + "pos": "noun", + "word_frequency": 10439 + }, + { + "word": "patrono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employer;patron", + "example_sentence_native": "El patrono ofreció un aumento de sueldo a sus empleados.", + "example_sentence_english": "The employer offered a salary increase to his employees.", + "pos": "noun", + "word_frequency": 10440 + }, + { + "word": "personalizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personalized;customized", + "example_sentence_native": "Queremos un servicio personalizado para cada cliente.", + "example_sentence_english": "We want a personalized service for each client.", + "pos": "adjective", + "word_frequency": 10441 + }, + { + "word": "pinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pine forest;pine grove", + "example_sentence_native": "Dimos un paseo por el pinar cerca del río.", + "example_sentence_english": "We took a walk through the pine forest near the river.", + "pos": "noun", + "word_frequency": 10443 + }, + { + "word": "pobrecito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poor little thing;poor dear", + "example_sentence_native": "El gatito estaba solo y pobrecito.", + "example_sentence_english": "The kitten was alone and poor little thing.", + "pos": "adjective", + "word_frequency": 10444 + }, + { + "word": "portillo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small pass;gap;wicket gate", + "example_sentence_native": "Cruzamos el portillo para entrar al campo.", + "example_sentence_english": "We crossed the small gate to enter the field.", + "pos": "noun", + "word_frequency": 10445 + }, + { + "word": "postular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to postulate;to apply for", + "example_sentence_native": "Decidió postularse para el puesto de gerente.", + "example_sentence_english": "He decided to apply for the manager position.", + "pos": "verb", + "word_frequency": 10446 + }, + { + "word": "preparacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preparation", + "example_sentence_native": "La preparación para el examen fue intensa.", + "example_sentence_english": "The preparation for the exam was intense.", + "pos": "noun", + "word_frequency": 10447 + }, + { + "word": "progresion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progression;progress", + "example_sentence_native": "Vimos una clara progresión en su aprendizaje.", + "example_sentence_english": "We saw a clear progression in his learning.", + "pos": "noun", + "word_frequency": 10448 + }, + { + "word": "proyectil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projectile", + "example_sentence_native": "El proyectil impactó contra el muro.", + "example_sentence_english": "The projectile hit the wall.", + "pos": "noun", + "word_frequency": 10449 + }, + { + "word": "psiquiatria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychiatry", + "example_sentence_native": "Estudió psiquiatría en la universidad.", + "example_sentence_english": "He studied psychiatry at the university.", + "pos": "noun", + "word_frequency": 10450 + }, + { + "word": "quebrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break;to go bankrupt", + "example_sentence_native": "La empresa podría quebrar si no mejora sus ventas.", + "example_sentence_english": "The company could go bankrupt if it doesn't improve its sales.", + "pos": "verb", + "word_frequency": 10452 + }, + { + "word": "rampa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ramp", + "example_sentence_native": "La silla de ruedas necesita una rampa para subir.", + "example_sentence_english": "The wheelchair needs a ramp to go up.", + "pos": "noun", + "word_frequency": 10453 + }, + { + "word": "rastreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracking;tracing", + "example_sentence_native": "El rastreo del paquete mostró que ya está en camino.", + "example_sentence_english": "The package tracking showed that it is already on its way.", + "pos": "noun", + "word_frequency": 10454 + }, + { + "word": "receso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recess;break", + "example_sentence_native": "Los estudiantes tienen un receso de diez minutos.", + "example_sentence_english": "The students have a ten-minute break.", + "pos": "noun", + "word_frequency": 10455 + }, + { + "word": "rellenar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fill in;to stuff", + "example_sentence_native": "Por favor, rellena este formulario con tus datos.", + "example_sentence_english": "Please fill in this form with your details.", + "pos": "verb", + "word_frequency": 10456 + }, + { + "word": "retablo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "altarpiece;reredos", + "example_sentence_native": "El retablo de la iglesia es una obra de arte impresionante.", + "example_sentence_english": "The altarpiece in the church is an impressive work of art.", + "pos": "noun", + "word_frequency": 10458 + }, + { + "word": "sabotaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sabotage", + "example_sentence_native": "La policía investiga un posible acto de sabotaje.", + "example_sentence_english": "The police are investigating a possible act of sabotage.", + "pos": "noun", + "word_frequency": 10459 + }, + { + "word": "secretamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretly", + "example_sentence_native": "Se reunieron secretamente para planear la sorpresa.", + "example_sentence_english": "They met secretly to plan the surprise.", + "pos": "adverb", + "word_frequency": 10461 + }, + { + "word": "segregacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "segregation", + "example_sentence_native": "La segregación racial fue una triste realidad en el pasado.", + "example_sentence_english": "Racial segregation was a sad reality in the past.", + "pos": "noun", + "word_frequency": 10462 + }, + { + "word": "sociologo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociologist", + "example_sentence_native": "Un sociólogo estudia las sociedades humanas.", + "example_sentence_english": "A sociologist studies human societies.", + "pos": "noun", + "word_frequency": 10464 + }, + { + "word": "solicito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligent;solicitous", + "example_sentence_native": "Siempre es muy solícito con sus clientes.", + "example_sentence_english": "He is always very solicitous with his clients.", + "pos": "adjective", + "word_frequency": 10465 + }, + { + "word": "sortear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draw lots;to overcome;to avoid", + "example_sentence_native": "Tuvimos que sortear muchos obstáculos para llegar a la meta.", + "example_sentence_english": "We had to overcome many obstacles to reach the goal.", + "pos": "verb", + "word_frequency": 10466 + }, + { + "word": "spoiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spoiler", + "example_sentence_native": "Por favor, no me des spoilers de la película.", + "example_sentence_english": "Please don't give me spoilers for the movie.", + "pos": "noun", + "word_frequency": 10467 + }, + { + "word": "start", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "start;beginning", + "example_sentence_native": "Presiona el botón de start para iniciar el juego.", + "example_sentence_english": "Press the start button to begin the game.", + "pos": "noun", + "word_frequency": 10468 + }, + { + "word": "subsuelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsoil;basement", + "example_sentence_native": "El edificio tiene un estacionamiento en el subsuelo.", + "example_sentence_english": "The building has a parking lot in the basement.", + "pos": "noun", + "word_frequency": 10469 + }, + { + "word": "tentativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attempt;try", + "example_sentence_native": "Fue una tentativa fallida de récord mundial.", + "example_sentence_english": "It was a failed attempt at a world record.", + "pos": "noun", + "word_frequency": 10473 + }, + { + "word": "text", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "text", + "example_sentence_native": "Recibí un text de mi amigo.", + "example_sentence_english": "I received a text from my friend.", + "pos": "noun", + "word_frequency": 10474 + }, + { + "word": "topic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "topic;subject", + "example_sentence_native": "El topic de la discusión fue muy interesante.", + "example_sentence_english": "The topic of the discussion was very interesting.", + "pos": "noun", + "word_frequency": 10476 + }, + { + "word": "track", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "track;song", + "example_sentence_native": "Este es mi track favorito del álbum.", + "example_sentence_english": "This is my favorite track from the album.", + "pos": "noun", + "word_frequency": 10477 + }, + { + "word": "trip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trip;journey", + "example_sentence_native": "Hicimos un trip increíble por la costa.", + "example_sentence_english": "We took an incredible trip along the coast.", + "pos": "noun", + "word_frequency": 10479 + }, + { + "word": "tripulante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crew member", + "example_sentence_native": "El tripulante de cabina nos sirvió la cena.", + "example_sentence_english": "The cabin crew member served us dinner.", + "pos": "noun", + "word_frequency": 10480 + }, + { + "word": "unitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unitary", + "example_sentence_native": "El sistema político es unitario.", + "example_sentence_english": "The political system is unitary.", + "pos": "adjective", + "word_frequency": 10483 + }, + { + "word": "vertebral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vertebral", + "example_sentence_native": "La columna vertebral es esencial para el cuerpo.", + "example_sentence_english": "The vertebral column is essential for the body.", + "pos": "adjective", + "word_frequency": 10485 + }, + { + "word": "vertigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertigo", + "example_sentence_native": "Sufre de vértigo cuando mira hacia abajo desde alturas.", + "example_sentence_english": "He suffers from vertigo when looking down from heights.", + "pos": "noun", + "word_frequency": 10486 + }, + { + "word": "atico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic;penthouse", + "example_sentence_native": "Viven en un ático con vistas a la ciudad.", + "example_sentence_english": "They live in a penthouse with city views.", + "pos": "noun", + "word_frequency": 10487 + }, + { + "word": "acostar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put to bed;to lie down", + "example_sentence_native": "Voy a acostar a los niños.", + "example_sentence_english": "I'm going to put the children to bed.", + "pos": "verb", + "word_frequency": 10490 + }, + { + "word": "acustico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acoustic", + "example_sentence_native": "La guitarra acústica tiene un sonido cálido.", + "example_sentence_english": "The acoustic guitar has a warm sound.", + "pos": "adjective", + "word_frequency": 10491 + }, + { + "word": "admirador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admirer;fan", + "example_sentence_native": "Tiene muchos admiradores por su trabajo.", + "example_sentence_english": "He has many admirers for his work.", + "pos": "noun", + "word_frequency": 10492 + }, + { + "word": "aguero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omen;sign", + "example_sentence_native": "La aparición del cometa fue un mal agüero.", + "example_sentence_english": "The appearance of the comet was a bad omen.", + "pos": "noun", + "word_frequency": 10493 + }, + { + "word": "alcoholico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholic", + "example_sentence_native": "Las bebidas alcohólicas están prohibidas para menores.", + "example_sentence_english": "Alcoholic beverages are prohibited for minors.", + "pos": "adjective", + "word_frequency": 10494 + }, + { + "word": "anexion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annexation", + "example_sentence_native": "La anexión del territorio causó controversia.", + "example_sentence_english": "The annexation of the territory caused controversy.", + "pos": "noun", + "word_frequency": 10495 + }, + { + "word": "apostolico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apostolic", + "example_sentence_native": "La sede apostólica se encuentra en Roma.", + "example_sentence_english": "The apostolic see is located in Rome.", + "pos": "adjective", + "word_frequency": 10496 + }, + { + "word": "astro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celestial body;star", + "example_sentence_native": "Los astrónomos estudian los astros en el universo.", + "example_sentence_english": "Astronomers study celestial bodies in the universe.", + "pos": "noun", + "word_frequency": 10498 + }, + { + "word": "atrasado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "late;delayed;backward", + "example_sentence_native": "El tren llegó atrasado debido a la nieve.", + "example_sentence_english": "The train arrived late due to the snow.", + "pos": "adjective", + "word_frequency": 10499 + }, + { + "word": "atropello", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trampling;outrage;hit-and-run", + "example_sentence_native": "El atropello de los derechos humanos es inaceptable.", + "example_sentence_english": "The trampling of human rights is unacceptable.", + "pos": "noun", + "word_frequency": 10500 + }, + { + "word": "bancada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bench (of a machine);parliamentary group", + "example_sentence_native": "La bancada del partido votó en contra de la propuesta.", + "example_sentence_english": "The party's parliamentary group voted against the proposal.", + "pos": "noun", + "word_frequency": 10504 + }, + { + "word": "basurero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trash can;dump;garbage collector", + "example_sentence_native": "Tira la basura en el basurero.", + "example_sentence_english": "Throw the trash in the trash can.", + "pos": "noun", + "word_frequency": 10505 + }, + { + "word": "batallon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battalion", + "example_sentence_native": "El batallón se preparó para la misión.", + "example_sentence_english": "The battalion prepared for the mission.", + "pos": "noun", + "word_frequency": 10506 + }, + { + "word": "batir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to beat;to whisk;to defeat", + "example_sentence_native": "Hay que batir los huevos para hacer la tortilla.", + "example_sentence_english": "You have to beat the eggs to make the omelet.", + "pos": "verb", + "word_frequency": 10507 + }, + { + "word": "blanqueo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laundering;whitewashing", + "example_sentence_native": "El blanqueo de dinero es un delito grave.", + "example_sentence_english": "Money laundering is a serious crime.", + "pos": "noun", + "word_frequency": 10511 + }, + { + "word": "botanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botanical", + "example_sentence_native": "Visitamos el jardín botánico de la ciudad.", + "example_sentence_english": "We visited the city's botanical garden.", + "pos": "adjective", + "word_frequency": 10512 + }, + { + "word": "brigadier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brigadier", + "example_sentence_native": "El brigadier dio órdenes a sus tropas.", + "example_sentence_english": "The brigadier gave orders to his troops.", + "pos": "noun", + "word_frequency": 10513 + }, + { + "word": "brutalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutality", + "example_sentence_native": "La brutalidad policial es un problema serio.", + "example_sentence_english": "Police brutality is a serious problem.", + "pos": "noun", + "word_frequency": 10514 + }, + { + "word": "burgues", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bourgeois;middle-class person", + "example_sentence_native": "La novela critica la vida burguesa.", + "example_sentence_english": "The novel criticizes bourgeois life.", + "pos": "noun", + "word_frequency": 10515 + }, + { + "word": "caleta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cove;small bay", + "example_sentence_native": "Descubrimos una pequeña caleta escondida.", + "example_sentence_english": "We discovered a small hidden cove.", + "pos": "noun", + "word_frequency": 10518 + }, + { + "word": "cardiaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiac;heart-related", + "example_sentence_native": "Sufrió un ataque cardíaco.", + "example_sentence_english": "He suffered a cardiac arrest.", + "pos": "adjective", + "word_frequency": 10519 + }, + { + "word": "comprado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bought;purchased", + "example_sentence_native": "El coche ya está comprado.", + "example_sentence_english": "The car is already bought.", + "pos": "adjective", + "word_frequency": 10523 + }, + { + "word": "conservatorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conservatory", + "example_sentence_native": "Estudió música en el conservatorio.", + "example_sentence_english": "He studied music at the conservatory.", + "pos": "noun", + "word_frequency": 10526 + }, + { + "word": "constatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confirm;to verify", + "example_sentence_native": "Pudimos constatar la veracidad de los hechos.", + "example_sentence_english": "We were able to confirm the veracity of the facts.", + "pos": "verb", + "word_frequency": 10527 + }, + { + "word": "contradictorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contradictory", + "example_sentence_native": "Sus declaraciones fueron contradictorias.", + "example_sentence_english": "His statements were contradictory.", + "pos": "adjective", + "word_frequency": 10528 + }, + { + "word": "corregido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corrected;revised", + "example_sentence_native": "El texto ya está corregido.", + "example_sentence_english": "The text is already corrected.", + "pos": "adjective", + "word_frequency": 10530 + }, + { + "word": "cualesquiera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whichever;any (plural)", + "example_sentence_native": "Puedes elegir cualesquiera de los libros.", + "example_sentence_english": "You can choose any of the books.", + "pos": "adjective", + "word_frequency": 10535 + }, + { + "word": "demente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demented;insane", + "example_sentence_native": "Sus ideas parecían dementes.", + "example_sentence_english": "His ideas seemed demented.", + "pos": "adjective", + "word_frequency": 10540 + }, + { + "word": "disperso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispersed;scattered;distracted", + "example_sentence_native": "La población está muy dispersa en esa región.", + "example_sentence_english": "The population is very dispersed in that region.", + "pos": "adjective", + "word_frequency": 10543 + }, + { + "word": "dividendo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dividend", + "example_sentence_native": "La empresa pagará un dividendo a sus accionistas.", + "example_sentence_english": "The company will pay a dividend to its shareholders.", + "pos": "noun", + "word_frequency": 10544 + }, + { + "word": "dramaturgo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "playwright", + "example_sentence_native": "El dramaturgo presentó su nueva obra.", + "example_sentence_english": "The playwright presented his new play.", + "pos": "noun", + "word_frequency": 10548 + }, + { + "word": "empanada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "empanada (a type of pastry)", + "example_sentence_native": "Me encanta comer empanadas de carne.", + "example_sentence_english": "I love eating meat empanadas.", + "pos": "noun", + "word_frequency": 10550 + }, + { + "word": "encerrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lock up;to enclose", + "example_sentence_native": "Encerraron al perro en el patio.", + "example_sentence_english": "They locked the dog in the yard.", + "pos": "verb", + "word_frequency": 10551 + }, + { + "word": "enriquecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enrich", + "example_sentence_native": "La lectura puede enriquecer tu vocabulario.", + "example_sentence_english": "Reading can enrich your vocabulary.", + "pos": "verb", + "word_frequency": 10552 + }, + { + "word": "epicentro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epicenter", + "example_sentence_native": "El epicentro del terremoto fue en el mar.", + "example_sentence_english": "The earthquake's epicenter was in the sea.", + "pos": "noun", + "word_frequency": 10553 + }, + { + "word": "equilibrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balanced", + "example_sentence_native": "Lleva una dieta equilibrada.", + "example_sentence_english": "He follows a balanced diet.", + "pos": "adjective", + "word_frequency": 10554 + }, + { + "word": "escoba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broom", + "example_sentence_native": "Necesito una escoba para barrer el suelo.", + "example_sentence_english": "I need a broom to sweep the floor.", + "pos": "noun", + "word_frequency": 10557 + }, + { + "word": "etiquetar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to label", + "example_sentence_native": "Debes etiquetar todas las cajas antes de guardarlas.", + "example_sentence_english": "You must label all the boxes before storing them.", + "pos": "verb", + "word_frequency": 10560 + }, + { + "word": "fisiología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiology", + "example_sentence_native": "Estudiamos la fisiología del cuerpo humano.", + "example_sentence_english": "We study the physiology of the human body.", + "pos": "noun", + "word_frequency": 10562 + }, + { + "word": "gatillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trigger", + "example_sentence_native": "No toques el gatillo de la pistola.", + "example_sentence_english": "Don't touch the trigger of the gun.", + "pos": "noun", + "word_frequency": 10565 + }, + { + "word": "grada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tier", + "example_sentence_native": "Nos sentamos en la grada superior del estadio.", + "example_sentence_english": "We sat in the upper tier of the stadium.", + "pos": "noun", + "word_frequency": 10566 + }, + { + "word": "guiso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stew", + "example_sentence_native": "Mi abuela prepara un guiso delicioso.", + "example_sentence_english": "My grandmother prepares a delicious stew.", + "pos": "noun", + "word_frequency": 10567 + }, + { + "word": "hermosura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beauty", + "example_sentence_native": "La hermosura del paisaje me dejó sin palabras.", + "example_sentence_english": "The beauty of the landscape left me speechless.", + "pos": "noun", + "word_frequency": 10569 + }, + { + "word": "impaciente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impatient", + "example_sentence_native": "Estaba impaciente por recibir los resultados.", + "example_sentence_english": "He was impatient to receive the results.", + "pos": "adjective", + "word_frequency": 10570 + }, + { + "word": "improvisación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvisation", + "example_sentence_native": "La obra de teatro incluyó mucha improvisación.", + "example_sentence_english": "The play included a lot of improvisation.", + "pos": "noun", + "word_frequency": 10571 + }, + { + "word": "incipiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incipient", + "example_sentence_native": "Es un problema incipiente que debemos abordar.", + "example_sentence_english": "It's an incipient problem that we must address.", + "pos": "adjective", + "word_frequency": 10572 + }, + { + "word": "inclusivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusive", + "example_sentence_native": "Queremos crear un ambiente más inclusivo para todos.", + "example_sentence_english": "We want to create a more inclusive environment for everyone.", + "pos": "adjective", + "word_frequency": 10573 + }, + { + "word": "incompetente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompetent", + "example_sentence_native": "Fue despedido por ser incompetente en su trabajo.", + "example_sentence_english": "He was fired for being incompetent in his job.", + "pos": "adjective", + "word_frequency": 10574 + }, + { + "word": "infidelidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infidelity", + "example_sentence_native": "La infidelidad puede destruir una relación.", + "example_sentence_english": "Infidelity can destroy a relationship.", + "pos": "noun", + "word_frequency": 10575 + }, + { + "word": "inquieto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restless", + "example_sentence_native": "El niño estaba inquieto durante la clase.", + "example_sentence_english": "The child was restless during the class.", + "pos": "adjective", + "word_frequency": 10576 + }, + { + "word": "insostenible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsustainable", + "example_sentence_native": "Esta situación es completamente insostenible a largo plazo.", + "example_sentence_english": "This situation is completely unsustainable in the long term.", + "pos": "adjective", + "word_frequency": 10577 + }, + { + "word": "intensivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intensive", + "example_sentence_native": "Tomó un curso intensivo de español.", + "example_sentence_english": "He took an intensive Spanish course.", + "pos": "adjective", + "word_frequency": 10578 + }, + { + "word": "interrogante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "question", + "example_sentence_native": "Quedan muchos interrogantes sobre el futuro del proyecto.", + "example_sentence_english": "Many questions remain about the future of the project.", + "pos": "noun", + "word_frequency": 10579 + }, + { + "word": "irreal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unreal", + "example_sentence_native": "La escena parecía completamente irreal.", + "example_sentence_english": "The scene seemed completely unreal.", + "pos": "adjective", + "word_frequency": 10580 + }, + { + "word": "jaguar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaguar", + "example_sentence_native": "El jaguar es un felino grande de América.", + "example_sentence_english": "The jaguar is a large feline from America.", + "pos": "noun", + "word_frequency": 10581 + }, + { + "word": "jerga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jargon", + "example_sentence_native": "Es difícil entender la jerga técnica de los programadores.", + "example_sentence_english": "It's difficult to understand the technical jargon of programmers.", + "pos": "noun", + "word_frequency": 10584 + }, + { + "word": "joyería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jewelry store", + "example_sentence_native": "Compró un anillo en la joyería.", + "example_sentence_english": "She bought a ring at the jewelry store.", + "pos": "noun", + "word_frequency": 10585 + }, + { + "word": "jóven", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "young", + "example_sentence_native": "Es un jóven muy talentoso.", + "example_sentence_english": "He is a very talented young man.", + "pos": "adjective", + "word_frequency": 10587 + }, + { + "word": "largamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at length", + "example_sentence_native": "Hablaron largamente sobre sus planes futuros.", + "example_sentence_english": "They spoke at length about their future plans.", + "pos": "adverb", + "word_frequency": 10590 + }, + { + "word": "lentitud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slowness", + "example_sentence_native": "La lentitud del servicio nos frustró.", + "example_sentence_english": "The slowness of the service frustrated us.", + "pos": "noun", + "word_frequency": 10591 + }, + { + "word": "liso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smooth", + "example_sentence_native": "Su cabello es liso y brillante.", + "example_sentence_english": "Her hair is smooth and shiny.", + "pos": "adjective", + "word_frequency": 10593 + }, + { + "word": "mediocridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mediocrity", + "example_sentence_native": "No debemos conformarnos con la mediocridad.", + "example_sentence_english": "We should not settle for mediocrity.", + "pos": "noun", + "word_frequency": 10595 + }, + { + "word": "mp3", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "MP3", + "example_sentence_native": "Escucho música en formato MP3.", + "example_sentence_english": "I listen to music in MP3 format.", + "pos": "noun", + "word_frequency": 10598 + }, + { + "word": "noruego", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Norwegian", + "example_sentence_native": "Ella habla noruego con fluidez.", + "example_sentence_english": "She speaks Norwegian fluently.", + "pos": "adjective", + "word_frequency": 10601 + }, + { + "word": "náusea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nausea", + "example_sentence_native": "Sentía náuseas después de comer demasiado.", + "example_sentence_english": "He felt nausea after eating too much.", + "pos": "noun", + "word_frequency": 10603 + }, + { + "word": "odisea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "odyssey", + "example_sentence_native": "El viaje fue una verdadera odisea.", + "example_sentence_english": "The journey was a true odyssey.", + "pos": "noun", + "word_frequency": 10604 + }, + { + "word": "olfato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sense of smell", + "example_sentence_native": "Los perros tienen un olfato muy desarrollado.", + "example_sentence_english": "Dogs have a very developed sense of smell.", + "pos": "noun", + "word_frequency": 10606 + }, + { + "word": "palmera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm tree", + "example_sentence_native": "Había muchas palmeras en la playa.", + "example_sentence_english": "There were many palm trees on the beach.", + "pos": "noun", + "word_frequency": 10608 + }, + { + "word": "panteón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pantheon", + "example_sentence_native": "Visitamos el panteón de los reyes.", + "example_sentence_english": "We visited the pantheon of the kings.", + "pos": "noun", + "word_frequency": 10610 + }, + { + "word": "parentesco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kinship", + "example_sentence_native": "Descubrieron un parentesco lejano entre ellos.", + "example_sentence_english": "They discovered a distant kinship between them.", + "pos": "noun", + "word_frequency": 10611 + }, + { + "word": "pasarela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catwalk;footbridge", + "example_sentence_native": "La modelo desfiló por la pasarela.", + "example_sentence_english": "The model walked down the catwalk.", + "pos": "noun", + "word_frequency": 10612 + }, + { + "word": "paño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloth;fabric", + "example_sentence_native": "Usa un paño húmedo para limpiar la mesa.", + "example_sentence_english": "Use a damp cloth to clean the table.", + "pos": "noun", + "word_frequency": 10613 + }, + { + "word": "pergamino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parchment", + "example_sentence_native": "Encontraron un antiguo pergamino en la biblioteca.", + "example_sentence_english": "They found an ancient parchment in the library.", + "pos": "noun", + "word_frequency": 10615 + }, + { + "word": "pillo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rascal;rogue", + "example_sentence_native": "Ese niño es un pillo, siempre haciendo travesuras.", + "example_sentence_english": "That child is a rascal, always getting into mischief.", + "pos": "noun", + "word_frequency": 10616 + }, + { + "word": "planeamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "planning", + "example_sentence_native": "El planeamiento estratégico es crucial para el éxito.", + "example_sentence_english": "Strategic planning is crucial for success.", + "pos": "noun", + "word_frequency": 10617 + }, + { + "word": "privación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deprivation", + "example_sentence_native": "La privación del sueño afecta la salud.", + "example_sentence_english": "Sleep deprivation affects health.", + "pos": "noun", + "word_frequency": 10618 + }, + { + "word": "proletariado", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "proletariat", + "example_sentence_native": "Marx analizó la situación del proletariado.", + "example_sentence_english": "Marx analyzed the situation of the proletariat.", + "pos": "noun", + "word_frequency": 10619 + }, + { + "word": "psiquiátrico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychiatric", + "example_sentence_native": "Fue ingresado en un hospital psiquiátrico.", + "example_sentence_english": "He was admitted to a psychiatric hospital.", + "pos": "adjective", + "word_frequency": 10620 + }, + { + "word": "pulpo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "octopus", + "example_sentence_native": "El pulpo es un animal marino muy inteligente.", + "example_sentence_english": "The octopus is a very intelligent marine animal.", + "pos": "noun", + "word_frequency": 10621 + }, + { + "word": "radicalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalism", + "example_sentence_native": "El radicalismo puede llevar a la polarización.", + "example_sentence_english": "Radicalism can lead to polarization.", + "pos": "noun", + "word_frequency": 10623 + }, + { + "word": "ratificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ratification", + "example_sentence_native": "La ratificación del tratado es inminente.", + "example_sentence_english": "The ratification of the treaty is imminent.", + "pos": "noun", + "word_frequency": 10625 + }, + { + "word": "realeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royalty", + "example_sentence_native": "La realeza asistió al evento.", + "example_sentence_english": "Royalty attended the event.", + "pos": "noun", + "word_frequency": 10626 + }, + { + "word": "reclutar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recruit", + "example_sentence_native": "La empresa busca reclutar nuevos talentos.", + "example_sentence_english": "The company seeks to recruit new talents.", + "pos": "verb", + "word_frequency": 10627 + }, + { + "word": "recolectar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collect;to gather", + "example_sentence_native": "Vamos a recolectar fresas en el campo.", + "example_sentence_english": "We are going to collect strawberries in the field.", + "pos": "verb", + "word_frequency": 10628 + }, + { + "word": "recopilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compile;to gather", + "example_sentence_native": "Necesitamos recopilar más datos para el informe.", + "example_sentence_english": "We need to compile more data for the report.", + "pos": "verb", + "word_frequency": 10629 + }, + { + "word": "repasar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to review;to go over", + "example_sentence_native": "Debo repasar mis apuntes antes del examen.", + "example_sentence_english": "I must review my notes before the exam.", + "pos": "verb", + "word_frequency": 10631 + }, + { + "word": "retribución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remuneration;retribution", + "example_sentence_native": "La retribución por su trabajo fue justa.", + "example_sentence_english": "The remuneration for his work was fair.", + "pos": "noun", + "word_frequency": 10632 + }, + { + "word": "retro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retro", + "example_sentence_native": "Le encanta la moda retro de los años 80.", + "example_sentence_english": "She loves 80s retro fashion.", + "pos": "adjective", + "word_frequency": 10633 + }, + { + "word": "revocación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revocation", + "example_sentence_native": "La revocación de la licencia fue inmediata.", + "example_sentence_english": "The revocation of the license was immediate.", + "pos": "noun", + "word_frequency": 10635 + }, + { + "word": "sartén", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frying pan", + "example_sentence_native": "Calienta aceite en la sartén.", + "example_sentence_english": "Heat oil in the frying pan.", + "pos": "noun", + "word_frequency": 10639 + }, + { + "word": "seducir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seduce", + "example_sentence_native": "Intentó seducir a la audiencia con su carisma.", + "example_sentence_english": "He tried to seduce the audience with his charisma.", + "pos": "verb", + "word_frequency": 10641 + }, + { + "word": "shopping", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping", + "example_sentence_native": "Vamos de shopping al centro comercial.", + "example_sentence_english": "Let's go shopping at the mall.", + "pos": "noun", + "word_frequency": 10643 + }, + { + "word": "silueta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silhouette", + "example_sentence_native": "La silueta del árbol se veía contra el atardecer.", + "example_sentence_english": "The silhouette of the tree was visible against the sunset.", + "pos": "noun", + "word_frequency": 10644 + }, + { + "word": "simulacro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drill", + "example_sentence_native": "Hicimos un simulacro de incendio en la escuela.", + "example_sentence_english": "We had a fire drill at school.", + "pos": "noun", + "word_frequency": 10645 + }, + { + "word": "sostén", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bra", + "example_sentence_native": "Necesito comprar un nuevo sostén.", + "example_sentence_english": "I need to buy a new bra.", + "pos": "noun", + "word_frequency": 10646 + }, + { + "word": "supremacía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supremacy", + "example_sentence_native": "El equipo demostró su supremacía en el campeonato.", + "example_sentence_english": "The team demonstrated its supremacy in the championship.", + "pos": "noun", + "word_frequency": 10650 + }, + { + "word": "taberna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tavern", + "example_sentence_native": "Nos encontramos en la taberna del pueblo.", + "example_sentence_english": "We met at the village tavern.", + "pos": "noun", + "word_frequency": 10651 + }, + { + "word": "tara", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defect", + "example_sentence_native": "El producto tenía una tara de fabricación.", + "example_sentence_english": "The product had a manufacturing defect.", + "pos": "noun", + "word_frequency": 10652 + }, + { + "word": "timón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudder", + "example_sentence_native": "El capitán giró el timón para cambiar de dirección.", + "example_sentence_english": "The captain turned the rudder to change direction.", + "pos": "noun", + "word_frequency": 10653 + }, + { + "word": "tolerante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerant", + "example_sentence_native": "Es importante ser tolerante con las opiniones de los demás.", + "example_sentence_english": "It's important to be tolerant of others' opinions.", + "pos": "adjective", + "word_frequency": 10654 + }, + { + "word": "tribal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribal", + "example_sentence_native": "La danza tribal era muy enérgica.", + "example_sentence_english": "The tribal dance was very energetic.", + "pos": "adjective", + "word_frequency": 10656 + }, + { + "word": "vector", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vector", + "example_sentence_native": "Calculamos el vector de fuerza.", + "example_sentence_english": "We calculated the force vector.", + "pos": "noun", + "word_frequency": 10659 + }, + { + "word": "vibración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibration", + "example_sentence_native": "Sentí una fuerte vibración en el suelo.", + "example_sentence_english": "I felt a strong vibration in the ground.", + "pos": "noun", + "word_frequency": 10660 + }, + { + "word": "ártico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Arctic", + "example_sentence_native": "El clima ártico es muy frío.", + "example_sentence_english": "The Arctic climate is very cold.", + "pos": "adjective", + "word_frequency": 10665 + }, + { + "word": "alcantarillado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sewerage system", + "example_sentence_native": "La ciudad necesita mejorar su sistema de alcantarillado.", + "example_sentence_english": "The city needs to improve its sewerage system.", + "pos": "noun", + "word_frequency": 10666 + }, + { + "word": "allegado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "close relative;friend", + "example_sentence_native": "Solo asistieron sus allegados al funeral.", + "example_sentence_english": "Only his close relatives/friends attended the funeral.", + "pos": "noun", + "word_frequency": 10667 + }, + { + "word": "alzar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise", + "example_sentence_native": "Alzó la mano para hacer una pregunta.", + "example_sentence_english": "He raised his hand to ask a question.", + "pos": "verb", + "word_frequency": 10669 + }, + { + "word": "anomalía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anomaly", + "example_sentence_native": "Detectaron una anomalía en los datos.", + "example_sentence_english": "They detected an anomaly in the data.", + "pos": "noun", + "word_frequency": 10671 + }, + { + "word": "antelación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in advance", + "example_sentence_native": "Reservamos las entradas con mucha antelación.", + "example_sentence_english": "We booked the tickets well in advance.", + "pos": "noun", + "word_frequency": 10672 + }, + { + "word": "anteproyecto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "draft project", + "example_sentence_native": "El arquitecto presentó el anteproyecto de la casa.", + "example_sentence_english": "The architect presented the draft project of the house.", + "pos": "noun", + "word_frequency": 10673 + }, + { + "word": "anticipar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to anticipate", + "example_sentence_native": "No pudimos anticipar los problemas que surgieron.", + "example_sentence_english": "We couldn't anticipate the problems that arose.", + "pos": "verb", + "word_frequency": 10674 + }, + { + "word": "aparentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appear to be", + "example_sentence_native": "Aparenta ser más joven de lo que es.", + "example_sentence_english": "He appears to be younger than he is.", + "pos": "verb", + "word_frequency": 10676 + }, + { + "word": "balneario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spa resort", + "example_sentence_native": "Pasamos el fin de semana en un balneario.", + "example_sentence_english": "We spent the weekend at a spa resort.", + "pos": "noun", + "word_frequency": 10678 + }, + { + "word": "band", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "band", + "example_sentence_native": "Mi banda favorita tocará esta noche.", + "example_sentence_english": "My favorite band will play tonight.", + "pos": "noun", + "word_frequency": 10679 + }, + { + "word": "brevedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brevity", + "example_sentence_native": "La brevedad de su discurso fue apreciada.", + "example_sentence_english": "The brevity of his speech was appreciated.", + "pos": "noun", + "word_frequency": 10681 + }, + { + "word": "cebada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barley", + "example_sentence_native": "La cerveza se hace con cebada.", + "example_sentence_english": "Beer is made with barley.", + "pos": "noun", + "word_frequency": 10685 + }, + { + "word": "chorizo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chorizo (a type of spicy sausage)", + "example_sentence_native": "Me encanta el chorizo picante.", + "example_sentence_english": "I love spicy chorizo.", + "pos": "noun", + "word_frequency": 10687 + }, + { + "word": "citación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citation;summons", + "example_sentence_native": "Recibió una citación para comparecer en la corte.", + "example_sentence_english": "He received a summons to appear in court.", + "pos": "noun", + "word_frequency": 10688 + }, + { + "word": "coliseo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coliseum;arena", + "example_sentence_native": "El concierto será en el coliseo.", + "example_sentence_english": "The concert will be in the coliseum.", + "pos": "noun", + "word_frequency": 10689 + }, + { + "word": "comilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quotation mark", + "example_sentence_native": "Usa comillas para citar directamente.", + "example_sentence_english": "Use quotation marks to quote directly.", + "pos": "noun", + "word_frequency": 10690 + }, + { + "word": "contencioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contentious;litigious", + "example_sentence_native": "Es un asunto contencioso que requiere mediación.", + "example_sentence_english": "It's a contentious issue that requires mediation.", + "pos": "adjective", + "word_frequency": 10691 + }, + { + "word": "contraparte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterpart", + "example_sentence_native": "Mi contraparte en la negociación es muy hábil.", + "example_sentence_english": "My counterpart in the negotiation is very skilled.", + "pos": "noun", + "word_frequency": 10692 + }, + { + "word": "convenientemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conveniently;suitably", + "example_sentence_native": "Llegaron convenientemente justo a tiempo.", + "example_sentence_english": "They arrived conveniently just in time.", + "pos": "adverb", + "word_frequency": 10693 + }, + { + "word": "coronación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coronation", + "example_sentence_native": "La coronación del rey fue un evento majestuoso.", + "example_sentence_english": "The king's coronation was a majestic event.", + "pos": "noun", + "word_frequency": 10695 + }, + { + "word": "decretar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decree;to enact", + "example_sentence_native": "El gobierno va a decretar nuevas leyes.", + "example_sentence_english": "The government is going to decree new laws.", + "pos": "verb", + "word_frequency": 10697 + }, + { + "word": "democratización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "democratization", + "example_sentence_native": "La democratización del país es un proceso largo.", + "example_sentence_english": "The democratization of the country is a long process.", + "pos": "noun", + "word_frequency": 10698 + }, + { + "word": "derogación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repeal;abrogation", + "example_sentence_native": "Se propuso la derogación de la ley.", + "example_sentence_english": "The repeal of the law was proposed.", + "pos": "noun", + "word_frequency": 10699 + }, + { + "word": "desafortunado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunate;unlucky", + "example_sentence_native": "Fue un comentario desafortunado.", + "example_sentence_english": "It was an unfortunate comment.", + "pos": "adjective", + "word_frequency": 10700 + }, + { + "word": "desequilibrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imbalance;disequilibrium", + "example_sentence_native": "Hay un desequilibrio en la balanza comercial.", + "example_sentence_english": "There is an imbalance in the trade balance.", + "pos": "noun", + "word_frequency": 10701 + }, + { + "word": "desplegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deploy;to unfold", + "example_sentence_native": "El ejército va a desplegar nuevas tropas.", + "example_sentence_english": "The army is going to deploy new troops.", + "pos": "verb", + "word_frequency": 10702 + }, + { + "word": "detractor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detractor;critic", + "example_sentence_native": "Sus detractores no están de acuerdo con su política.", + "example_sentence_english": "His detractors do not agree with his policy.", + "pos": "noun", + "word_frequency": 10703 + }, + { + "word": "distorsión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distortion", + "example_sentence_native": "La distorsión del sonido era evidente.", + "example_sentence_english": "The distortion of the sound was evident.", + "pos": "noun", + "word_frequency": 10704 + }, + { + "word": "divulgar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disclose;to divulge", + "example_sentence_native": "No debes divulgar información confidencial.", + "example_sentence_english": "You should not disclose confidential information.", + "pos": "verb", + "word_frequency": 10705 + }, + { + "word": "duplicar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to duplicate;to double", + "example_sentence_native": "Necesitamos duplicar los esfuerzos.", + "example_sentence_english": "We need to double our efforts.", + "pos": "verb", + "word_frequency": 10706 + }, + { + "word": "emisor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "issuer;sender;transmitter", + "example_sentence_native": "El emisor del mensaje es desconocido.", + "example_sentence_english": "The sender of the message is unknown.", + "pos": "noun", + "word_frequency": 10709 + }, + { + "word": "envidiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to envy", + "example_sentence_native": "No debes envidiar el éxito de los demás.", + "example_sentence_english": "You should not envy the success of others.", + "pos": "verb", + "word_frequency": 10710 + }, + { + "word": "escandaloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandalous;outrageous", + "example_sentence_native": "Fue un comportamiento escandaloso.", + "example_sentence_english": "It was scandalous behavior.", + "pos": "adjective", + "word_frequency": 10712 + }, + { + "word": "eslogan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan;motto", + "example_sentence_native": "El eslogan de la campaña es muy pegadizo.", + "example_sentence_english": "The campaign slogan is very catchy.", + "pos": "noun", + "word_frequency": 10713 + }, + { + "word": "excavación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excavation;digging", + "example_sentence_native": "La excavación arqueológica reveló ruinas antiguas.", + "example_sentence_english": "The archaeological excavation revealed ancient ruins.", + "pos": "noun", + "word_frequency": 10715 + }, + { + "word": "exceder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exceed;to go over", + "example_sentence_native": "No debes exceder el límite de velocidad.", + "example_sentence_english": "You should not exceed the speed limit.", + "pos": "verb", + "word_frequency": 10716 + }, + { + "word": "faraón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pharaoh", + "example_sentence_native": "El faraón gobernó el antiguo Egipto.", + "example_sentence_english": "The pharaoh ruled ancient Egypt.", + "pos": "noun", + "word_frequency": 10717 + }, + { + "word": "fénix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phoenix", + "example_sentence_native": "El fénix renace de sus cenizas.", + "example_sentence_english": "The phoenix rises from its ashes.", + "pos": "noun", + "word_frequency": 10725 + }, + { + "word": "gamma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gamma", + "example_sentence_native": "La letra griega gamma es la tercera del alfabeto.", + "example_sentence_english": "The Greek letter gamma is the third letter of the alphabet.", + "pos": "noun", + "word_frequency": 10726 + }, + { + "word": "goce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enjoyment", + "example_sentence_native": "El goce de la vida es fundamental.", + "example_sentence_english": "The enjoyment of life is fundamental.", + "pos": "noun", + "word_frequency": 10727 + }, + { + "word": "guiño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wink", + "example_sentence_native": "Me hizo un guiño para saludarme.", + "example_sentence_english": "He gave me a wink to greet me.", + "pos": "noun", + "word_frequency": 10731 + }, + { + "word": "gótico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gothic", + "example_sentence_native": "La catedral tiene un estilo gótico.", + "example_sentence_english": "The cathedral has a Gothic style.", + "pos": "adjective", + "word_frequency": 10732 + }, + { + "word": "hambruna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "famine", + "example_sentence_native": "La región sufre una grave hambruna.", + "example_sentence_english": "The region is suffering from a severe famine.", + "pos": "noun", + "word_frequency": 10733 + }, + { + "word": "hipotecario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mortgage (adj.)", + "example_sentence_native": "Necesitamos un préstamo hipotecario para comprar la casa.", + "example_sentence_english": "We need a mortgage loan to buy the house.", + "pos": "adjective", + "word_frequency": 10737 + }, + { + "word": "iberoamericano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ibero-American", + "example_sentence_native": "La cumbre iberoamericana se celebra anualmente.", + "example_sentence_english": "The Ibero-American summit is held annually.", + "pos": "adjective", + "word_frequency": 10738 + }, + { + "word": "impresionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to impress", + "example_sentence_native": "Su talento me impresionó mucho.", + "example_sentence_english": "His talent impressed me a lot.", + "pos": "verb", + "word_frequency": 10739 + }, + { + "word": "incansable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tireless", + "example_sentence_native": "Es un trabajador incansable.", + "example_sentence_english": "He is a tireless worker.", + "pos": "adjective", + "word_frequency": 10740 + }, + { + "word": "injerencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interference", + "example_sentence_native": "No aceptamos ninguna injerencia externa en nuestros asuntos.", + "example_sentence_english": "We do not accept any external interference in our affairs.", + "pos": "noun", + "word_frequency": 10741 + }, + { + "word": "inmortalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immortality", + "example_sentence_native": "La búsqueda de la inmortalidad ha fascinado a la humanidad.", + "example_sentence_english": "The search for immortality has fascinated humanity.", + "pos": "noun", + "word_frequency": 10742 + }, + { + "word": "invencible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invincible", + "example_sentence_native": "Se sentía invencible después de ganar el campeonato.", + "example_sentence_english": "He felt invincible after winning the championship.", + "pos": "adjective", + "word_frequency": 10743 + }, + { + "word": "litio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lithium", + "example_sentence_native": "Las baterías de litio son muy comunes hoy en día.", + "example_sentence_english": "Lithium batteries are very common nowadays.", + "pos": "noun", + "word_frequency": 10745 + }, + { + "word": "maligno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malignant", + "example_sentence_native": "El tumor resultó ser maligno.", + "example_sentence_english": "The tumor turned out to be malignant.", + "pos": "adjective", + "word_frequency": 10746 + }, + { + "word": "mandamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commandment", + "example_sentence_native": "Los Diez Mandamientos son principios morales.", + "example_sentence_english": "The Ten Commandments are moral principles.", + "pos": "noun", + "word_frequency": 10747 + }, + { + "word": "merienda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack", + "example_sentence_native": "Vamos a tomar la merienda a las cinco.", + "example_sentence_english": "We are going to have a snack at five.", + "pos": "noun", + "word_frequency": 10750 + }, + { + "word": "morón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot", + "example_sentence_native": "No seas un morón, piensa antes de hablar.", + "example_sentence_english": "Don't be an idiot, think before you speak.", + "pos": "noun", + "word_frequency": 10752 + }, + { + "word": "muslo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thigh", + "example_sentence_native": "Se lesionó el muslo jugando al fútbol.", + "example_sentence_english": "He injured his thigh playing soccer.", + "pos": "noun", + "word_frequency": 10754 + }, + { + "word": "neoliberalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neoliberalism", + "example_sentence_native": "El neoliberalismo es una ideología económica.", + "example_sentence_english": "Neoliberalism is an economic ideology.", + "pos": "noun", + "word_frequency": 10755 + }, + { + "word": "niñera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "babysitter", + "example_sentence_native": "Contratamos una niñera para cuidar a los niños.", + "example_sentence_english": "We hired a babysitter to look after the children.", + "pos": "noun", + "word_frequency": 10757 + }, + { + "word": "nominar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nominate", + "example_sentence_native": "Lo van a nominar para el premio.", + "example_sentence_english": "They are going to nominate him for the award.", + "pos": "verb", + "word_frequency": 10759 + }, + { + "word": "notoriedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notoriety;fame", + "example_sentence_native": "Su notoriedad creció después del escándalo.", + "example_sentence_english": "His notoriety grew after the scandal.", + "pos": "noun", + "word_frequency": 10760 + }, + { + "word": "obsesionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obsess", + "example_sentence_native": "No dejes que el miedo te obsesione.", + "example_sentence_english": "Don't let fear obsess you.", + "pos": "verb", + "word_frequency": 10761 + }, + { + "word": "pepino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cucumber", + "example_sentence_native": "Me gusta el pepino en mi ensalada.", + "example_sentence_english": "I like cucumber in my salad.", + "pos": "noun", + "word_frequency": 10764 + }, + { + "word": "permitido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "permitted;allowed", + "example_sentence_native": "El acceso está permitido solo al personal autorizado.", + "example_sentence_english": "Access is permitted only to authorized personnel.", + "pos": "adjective", + "word_frequency": 10765 + }, + { + "word": "pijama", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pajamas", + "example_sentence_native": "Me puse el pijama antes de ir a la cama.", + "example_sentence_english": "I put on my pajamas before going to bed.", + "pos": "noun", + "word_frequency": 10766 + }, + { + "word": "pontífice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontiff;pope", + "example_sentence_native": "El pontífice dio su bendición a la multitud.", + "example_sentence_english": "The pontiff gave his blessing to the crowd.", + "pos": "noun", + "word_frequency": 10767 + }, + { + "word": "portuario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "port (adj.);harbor (adj.)", + "example_sentence_native": "La actividad portuaria es vital para la economía local.", + "example_sentence_english": "Port activity is vital for the local economy.", + "pos": "adjective", + "word_frequency": 10769 + }, + { + "word": "potro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foal;colt", + "example_sentence_native": "El potro corría libre por el campo.", + "example_sentence_english": "The foal ran freely through the field.", + "pos": "noun", + "word_frequency": 10770 + }, + { + "word": "preciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precious;valued", + "example_sentence_native": "La amistad es un tesoro preciado.", + "example_sentence_english": "Friendship is a precious treasure.", + "pos": "adjective", + "word_frequency": 10771 + }, + { + "word": "precoz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precocious;early", + "example_sentence_native": "Era un niño precoz, aprendiendo a leer a los tres años.", + "example_sentence_english": "He was a precocious child, learning to read at three years old.", + "pos": "adjective", + "word_frequency": 10772 + }, + { + "word": "predecesor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predecessor", + "example_sentence_native": "El nuevo director continuará el trabajo de su predecesor.", + "example_sentence_english": "The new director will continue the work of his predecessor.", + "pos": "noun", + "word_frequency": 10773 + }, + { + "word": "prescindir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to do without;to dispense with", + "example_sentence_native": "No podemos prescindir de su ayuda en este proyecto.", + "example_sentence_english": "We cannot do without your help on this project.", + "pos": "verb", + "word_frequency": 10774 + }, + { + "word": "pretemporada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preseason", + "example_sentence_native": "El equipo está en plena pretemporada.", + "example_sentence_english": "The team is in full preseason.", + "pos": "noun", + "word_frequency": 10775 + }, + { + "word": "prometedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promising", + "example_sentence_native": "Es un joven talento muy prometedor.", + "example_sentence_english": "He is a very promising young talent.", + "pos": "adjective", + "word_frequency": 10776 + }, + { + "word": "pétalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "petal", + "example_sentence_native": "Arrancó un pétalo de la rosa.", + "example_sentence_english": "He plucked a petal from the rose.", + "pos": "noun", + "word_frequency": 10777 + }, + { + "word": "rabino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabbi", + "example_sentence_native": "El rabino dirigió la ceremonia.", + "example_sentence_english": "The rabbi led the ceremony.", + "pos": "noun", + "word_frequency": 10778 + }, + { + "word": "rascacielos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skyscraper", + "example_sentence_native": "La ciudad está llena de rascacielos impresionantes.", + "example_sentence_english": "The city is full of impressive skyscrapers.", + "pos": "noun", + "word_frequency": 10779 + }, + { + "word": "recibimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reception;welcome", + "example_sentence_native": "Tuvieron un cálido recibimiento en el aeropuerto.", + "example_sentence_english": "They had a warm reception at the airport.", + "pos": "noun", + "word_frequency": 10780 + }, + { + "word": "reformista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reformist", + "example_sentence_native": "Los reformistas buscan cambios en el sistema.", + "example_sentence_english": "The reformists seek changes in the system.", + "pos": "noun", + "word_frequency": 10782 + }, + { + "word": "relajar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relax", + "example_sentence_native": "Necesito relajarme después de un largo día.", + "example_sentence_english": "I need to relax after a long day.", + "pos": "verb", + "word_frequency": 10783 + }, + { + "word": "resucitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resurrect;to revive", + "example_sentence_native": "Intentaron resucitar el antiguo proyecto.", + "example_sentence_english": "They tried to revive the old project.", + "pos": "verb", + "word_frequency": 10784 + }, + { + "word": "retaguardia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rearguard;rear", + "example_sentence_native": "El ejército protegió la retaguardia.", + "example_sentence_english": "The army protected the rearguard.", + "pos": "noun", + "word_frequency": 10785 + }, + { + "word": "rudo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rude;rough;crude", + "example_sentence_native": "Su comportamiento fue muy rudo.", + "example_sentence_english": "His behavior was very rude.", + "pos": "adjective", + "word_frequency": 10787 + }, + { + "word": "rogar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beg;to plead", + "example_sentence_native": "Le rogó que le diera otra oportunidad.", + "example_sentence_english": "He begged her to give him another chance.", + "pos": "verb", + "word_frequency": 10788 + }, + { + "word": "solicitante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicant;petitioner", + "example_sentence_native": "El solicitante debe presentar todos los documentos.", + "example_sentence_english": "The applicant must submit all documents.", + "pos": "noun", + "word_frequency": 10791 + }, + { + "word": "subyacente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "underlying;inherent", + "example_sentence_native": "Hay un problema subyacente que debemos abordar.", + "example_sentence_english": "There is an underlying problem that we must address.", + "pos": "adjective", + "word_frequency": 10793 + }, + { + "word": "sumario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summary;brief", + "example_sentence_native": "El sumario del informe es muy conciso.", + "example_sentence_english": "The summary of the report is very concise.", + "pos": "noun", + "word_frequency": 10794 + }, + { + "word": "superhéroe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superhero", + "example_sentence_native": "Mi hijo quiere ser un superhéroe cuando sea mayor.", + "example_sentence_english": "My son wants to be a superhero when he grows up.", + "pos": "noun", + "word_frequency": 10795 + }, + { + "word": "súbdito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subject (of a monarch;state)", + "example_sentence_native": "Los súbditos del rey juraron lealtad.", + "example_sentence_english": "The king's subjects swore loyalty.", + "pos": "noun", + "word_frequency": 10796 + }, + { + "word": "tertulia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social gathering;literary salon", + "example_sentence_native": "Pasamos la tarde en una tertulia literaria.", + "example_sentence_english": "We spent the afternoon at a literary gathering.", + "pos": "noun", + "word_frequency": 10797 + }, + { + "word": "tipa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type (of person);chick (informal)", + "example_sentence_native": "Esa tipa es muy simpática.", + "example_sentence_english": "That girl is very nice.", + "pos": "noun", + "word_frequency": 10798 + }, + { + "word": "trinchera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trench", + "example_sentence_native": "Los soldados se escondieron en la trinchera.", + "example_sentence_english": "The soldiers hid in the trench.", + "pos": "noun", + "word_frequency": 10800 + }, + { + "word": "validación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validation", + "example_sentence_native": "Se requiere una validación de los datos antes de proceder.", + "example_sentence_english": "Data validation is required before proceeding.", + "pos": "noun", + "word_frequency": 10802 + }, + { + "word": "viga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beam", + "example_sentence_native": "La viga de madera sostiene el techo.", + "example_sentence_english": "The wooden beam supports the roof.", + "pos": "noun", + "word_frequency": 10803 + }, + { + "word": "abertura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening", + "example_sentence_native": "Había una pequeña abertura en la pared.", + "example_sentence_english": "There was a small opening in the wall.", + "pos": "noun", + "word_frequency": 10808 + }, + { + "word": "aceituna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "olive", + "example_sentence_native": "Me encantan las aceitunas verdes.", + "example_sentence_english": "I love green olives.", + "pos": "noun", + "word_frequency": 10809 + }, + { + "word": "adverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adverse", + "example_sentence_native": "Enfrentamos condiciones climáticas adversas.", + "example_sentence_english": "We faced adverse weather conditions.", + "pos": "adjective", + "word_frequency": 10810 + }, + { + "word": "agrupar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to group", + "example_sentence_native": "Vamos a agrupar los libros por tema.", + "example_sentence_english": "We are going to group the books by topic.", + "pos": "verb", + "word_frequency": 10811 + }, + { + "word": "alférez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ensign;second lieutenant", + "example_sentence_native": "El alférez dio la orden.", + "example_sentence_english": "The ensign gave the order.", + "pos": "noun", + "word_frequency": 10813 + }, + { + "word": "alguacil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bailiff;constable", + "example_sentence_native": "El alguacil mantuvo el orden en la sala.", + "example_sentence_english": "The bailiff maintained order in the room.", + "pos": "noun", + "word_frequency": 10814 + }, + { + "word": "arruga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrinkle;crease", + "example_sentence_native": "Tenía una arruga en la frente.", + "example_sentence_english": "He had a wrinkle on his forehead.", + "pos": "noun", + "word_frequency": 10819 + }, + { + "word": "asemejar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resemble;to liken", + "example_sentence_native": "Su voz se asemeja a la de su padre.", + "example_sentence_english": "His voice resembles his father's.", + "pos": "verb", + "word_frequency": 10820 + }, + { + "word": "bacon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bacon", + "example_sentence_native": "Me gusta el desayuno con huevos y bacon.", + "example_sentence_english": "I like breakfast with eggs and bacon.", + "pos": "noun", + "word_frequency": 10821 + }, + { + "word": "bambú", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bamboo", + "example_sentence_native": "El panda come bambú.", + "example_sentence_english": "The panda eats bamboo.", + "pos": "noun", + "word_frequency": 10822 + }, + { + "word": "bienal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biennial", + "example_sentence_native": "La bienal de arte se celebra cada dos años.", + "example_sentence_english": "The art biennial is held every two years.", + "pos": "noun", + "word_frequency": 10825 + }, + { + "word": "buey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ox", + "example_sentence_native": "El buey tiraba del arado.", + "example_sentence_english": "The ox pulled the plow.", + "pos": "noun", + "word_frequency": 10826 + }, + { + "word": "burgués", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bourgeois;middle-class person", + "example_sentence_native": "La clase burguesa creció en el siglo XIX.", + "example_sentence_english": "The bourgeois class grew in the 19th century.", + "pos": "noun", + "word_frequency": 10827 + }, + { + "word": "caliza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limestone", + "example_sentence_native": "Las cuevas están formadas por roca caliza.", + "example_sentence_english": "The caves are formed by limestone rock.", + "pos": "noun", + "word_frequency": 10828 + }, + { + "word": "candado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "padlock", + "example_sentence_native": "Puso un candado en la puerta.", + "example_sentence_english": "He put a padlock on the door.", + "pos": "noun", + "word_frequency": 10829 + }, + { + "word": "cangrejo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crab", + "example_sentence_native": "El cangrejo caminaba de lado.", + "example_sentence_english": "The crab walked sideways.", + "pos": "noun", + "word_frequency": 10830 + }, + { + "word": "carcajada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guffaw;loud laugh", + "example_sentence_native": "Soltó una fuerte carcajada.", + "example_sentence_english": "He let out a loud guffaw.", + "pos": "noun", + "word_frequency": 10831 + }, + { + "word": "cartografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cartography", + "example_sentence_native": "La cartografía es el arte de hacer mapas.", + "example_sentence_english": "Cartography is the art of making maps.", + "pos": "noun", + "word_frequency": 10832 + }, + { + "word": "cepa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strain;vine stock", + "example_sentence_native": "Se ha identificado una nueva cepa del virus.", + "example_sentence_english": "A new strain of the virus has been identified.", + "pos": "noun", + "word_frequency": 10833 + }, + { + "word": "ciudadela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citadel", + "example_sentence_native": "La antigua ciudadela protegía la ciudad.", + "example_sentence_english": "The old citadel protected the city.", + "pos": "noun", + "word_frequency": 10835 + }, + { + "word": "colombo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Colombo;Colombian (related to Columbus or Colombia)", + "example_sentence_native": "El intercambio colombo-venezolano es importante.", + "example_sentence_english": "The Colombian-Venezuelan exchange is important.", + "pos": "adjective", + "word_frequency": 10839 + }, + { + "word": "concursante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contestant", + "example_sentence_native": "El concursante ganó el primer premio.", + "example_sentence_english": "The contestant won the first prize.", + "pos": "noun", + "word_frequency": 10840 + }, + { + "word": "contingencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contingency", + "example_sentence_native": "Debemos prepararnos para cualquier contingencia.", + "example_sentence_english": "We must prepare for any contingency.", + "pos": "noun", + "word_frequency": 10841 + }, + { + "word": "conversacion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "conversation", + "example_sentence_native": "Tuvimos una conversación interesante.", + "example_sentence_english": "We had an interesting conversation.", + "pos": "noun", + "word_frequency": 10842 + }, + { + "word": "desafiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to challenge;to defy", + "example_sentence_native": "Él decidió desafiar las reglas.", + "example_sentence_english": "He decided to challenge the rules.", + "pos": "verb", + "word_frequency": 10845 + }, + { + "word": "desconectar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to disconnect;to unplug", + "example_sentence_native": "Necesito desconectar el ordenador.", + "example_sentence_english": "I need to disconnect the computer.", + "pos": "verb", + "word_frequency": 10846 + }, + { + "word": "destinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to destine;to allocate;to assign", + "example_sentence_native": "Destinaron fondos para el proyecto.", + "example_sentence_english": "They allocated funds for the project.", + "pos": "verb", + "word_frequency": 10847 + }, + { + "word": "destituido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismissed;removed from office", + "example_sentence_native": "El presidente fue destituido de su cargo.", + "example_sentence_english": "The president was dismissed from his post.", + "pos": "adjective", + "word_frequency": 10848 + }, + { + "word": "didáctico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "didactic;educational", + "example_sentence_native": "Es un material didáctico muy útil.", + "example_sentence_english": "It is a very useful didactic material.", + "pos": "adjective", + "word_frequency": 10850 + }, + { + "word": "dinamismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dynamism", + "example_sentence_native": "Su dinamismo en el trabajo es admirable.", + "example_sentence_english": "His dynamism at work is admirable.", + "pos": "noun", + "word_frequency": 10851 + }, + { + "word": "distrital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district (adj.);pertaining to a district", + "example_sentence_native": "La oficina distrital está en el centro.", + "example_sentence_english": "The district office is in the center.", + "pos": "adjective", + "word_frequency": 10852 + }, + { + "word": "ensueño", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dream;reverie;daydream", + "example_sentence_native": "Vivía en un mundo de ensueño.", + "example_sentence_english": "He lived in a world of dreams.", + "pos": "noun", + "word_frequency": 10853 + }, + { + "word": "equilibrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to balance", + "example_sentence_native": "Es importante equilibrar el trabajo y la vida personal.", + "example_sentence_english": "It is important to balance work and personal life.", + "pos": "verb", + "word_frequency": 10854 + }, + { + "word": "erótico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erotic", + "example_sentence_native": "La película tenía un contenido erótico.", + "example_sentence_english": "The movie had erotic content.", + "pos": "adjective", + "word_frequency": 10855 + }, + { + "word": "escama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scale (of a fish;reptile)", + "example_sentence_native": "El pez tiene escamas brillantes.", + "example_sentence_english": "The fish has shiny scales.", + "pos": "noun", + "word_frequency": 10856 + }, + { + "word": "esforzar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exert;to make an effort", + "example_sentence_native": "Debes esforzarte más para lograr tus metas.", + "example_sentence_english": "You must make more of an effort to achieve your goals.", + "pos": "verb", + "word_frequency": 10857 + }, + { + "word": "excitación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excitement;arousal", + "example_sentence_native": "Había mucha excitación antes del concierto.", + "example_sentence_english": "There was a lot of excitement before the concert.", + "pos": "noun", + "word_frequency": 10858 + }, + { + "word": "experimentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experienced", + "example_sentence_native": "Es un médico muy experimentado.", + "example_sentence_english": "He is a very experienced doctor.", + "pos": "adjective", + "word_frequency": 10859 + }, + { + "word": "fascinación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fascination", + "example_sentence_native": "Siente una gran fascinación por la astronomía.", + "example_sentence_english": "He feels a great fascination for astronomy.", + "pos": "noun", + "word_frequency": 10860 + }, + { + "word": "fiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trust;to sell on credit", + "example_sentence_native": "No me fío de lo que dice.", + "example_sentence_english": "I don't trust what he says.", + "pos": "verb", + "word_frequency": 10861 + }, + { + "word": "flanco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flank;side", + "example_sentence_native": "Atacaron por el flanco derecho.", + "example_sentence_english": "They attacked from the right flank.", + "pos": "noun", + "word_frequency": 10862 + }, + { + "word": "fluvial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluvial;riverine", + "example_sentence_native": "La navegación fluvial es importante en esta región.", + "example_sentence_english": "River navigation is important in this region.", + "pos": "adjective", + "word_frequency": 10863 + }, + { + "word": "golpista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coup plotter;putschist", + "example_sentence_native": "Los golpistas fueron arrestados.", + "example_sentence_english": "The coup plotters were arrested.", + "pos": "noun", + "word_frequency": 10866 + }, + { + "word": "hez", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dregs;scum;sediment", + "example_sentence_native": "La hez de la sociedad.", + "example_sentence_english": "The dregs of society.", + "pos": "noun", + "word_frequency": 10872 + }, + { + "word": "humorista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comedian;humorist", + "example_sentence_native": "El humorista hizo reír a todo el público.", + "example_sentence_english": "The comedian made the whole audience laugh.", + "pos": "noun", + "word_frequency": 10874 + }, + { + "word": "hundimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sinking;collapse;downfall", + "example_sentence_native": "El hundimiento del barco fue trágico.", + "example_sentence_english": "The sinking of the ship was tragic.", + "pos": "noun", + "word_frequency": 10875 + }, + { + "word": "impune", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpunished;with impunity", + "example_sentence_native": "No se puede dejar que el crimen quede impune.", + "example_sentence_english": "Crime cannot be allowed to go unpunished.", + "pos": "adjective", + "word_frequency": 10878 + }, + { + "word": "incomodidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discomfort;inconvenience", + "example_sentence_native": "Sentí una gran incomodidad durante la reunión.", + "example_sentence_english": "I felt great discomfort during the meeting.", + "pos": "noun", + "word_frequency": 10879 + }, + { + "word": "incontable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "countless;uncountable", + "example_sentence_native": "Hay incontables estrellas en el cielo.", + "example_sentence_english": "There are countless stars in the sky.", + "pos": "adjective", + "word_frequency": 10880 + }, + { + "word": "indumentaria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attire;clothing", + "example_sentence_native": "La indumentaria tradicional de la región es muy colorida.", + "example_sentence_english": "The traditional attire of the region is very colorful.", + "pos": "noun", + "word_frequency": 10882 + }, + { + "word": "inmersión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immersion", + "example_sentence_native": "La inmersión lingüística es clave para aprender un idioma.", + "example_sentence_english": "Language immersion is key to learning a language.", + "pos": "noun", + "word_frequency": 10883 + }, + { + "word": "inscribir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to register;to enroll", + "example_sentence_native": "Debes inscribirte antes del viernes.", + "example_sentence_english": "You must register before Friday.", + "pos": "verb", + "word_frequency": 10884 + }, + { + "word": "insulina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulin", + "example_sentence_native": "Los diabéticos necesitan insulina.", + "example_sentence_english": "Diabetics need insulin.", + "pos": "noun", + "word_frequency": 10885 + }, + { + "word": "insólito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unusual;unheard of", + "example_sentence_native": "Fue un evento insólito en la historia de la ciudad.", + "example_sentence_english": "It was an unusual event in the city's history.", + "pos": "adjective", + "word_frequency": 10886 + }, + { + "word": "intencion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intention", + "example_sentence_native": "Mi intención es ayudarte.", + "example_sentence_english": "My intention is to help you.", + "pos": "noun", + "word_frequency": 10887 + }, + { + "word": "istmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "isthmus", + "example_sentence_native": "El istmo de Panamá conecta América del Norte y del Sur.", + "example_sentence_english": "The Isthmus of Panama connects North and South America.", + "pos": "noun", + "word_frequency": 10888 + }, + { + "word": "labrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmer;laborer", + "example_sentence_native": "El labrador trabaja la tierra con dedicación.", + "example_sentence_english": "The farmer works the land with dedication.", + "pos": "noun", + "word_frequency": 10890 + }, + { + "word": "locutor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announcer;speaker", + "example_sentence_native": "El locutor de radio tiene una voz muy agradable.", + "example_sentence_english": "The radio announcer has a very pleasant voice.", + "pos": "noun", + "word_frequency": 10891 + }, + { + "word": "magnate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnate", + "example_sentence_native": "El magnate de los negocios donó una gran suma a la caridad.", + "example_sentence_english": "The business magnate donated a large sum to charity.", + "pos": "noun", + "word_frequency": 10894 + }, + { + "word": "malaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malaria", + "example_sentence_native": "La malaria es una enfermedad transmitida por mosquitos.", + "example_sentence_english": "Malaria is a disease transmitted by mosquitoes.", + "pos": "noun", + "word_frequency": 10895 + }, + { + "word": "matadero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slaughterhouse", + "example_sentence_native": "La carne se procesa en el matadero.", + "example_sentence_english": "The meat is processed in the slaughterhouse.", + "pos": "noun", + "word_frequency": 10896 + }, + { + "word": "mayonesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mayonnaise", + "example_sentence_native": "Me gusta la mayonesa con las patatas fritas.", + "example_sentence_english": "I like mayonnaise with french fries.", + "pos": "noun", + "word_frequency": 10897 + }, + { + "word": "memo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memo;memorandum", + "example_sentence_native": "Envié un memo a todo el personal.", + "example_sentence_english": "I sent a memo to all staff.", + "pos": "noun", + "word_frequency": 10899 + }, + { + "word": "mezclado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed", + "example_sentence_native": "La ensalada tiene frutas y verduras mezcladas.", + "example_sentence_english": "The salad has mixed fruits and vegetables.", + "pos": "adjective", + "word_frequency": 10900 + }, + { + "word": "mole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mole (sauce)", + "example_sentence_native": "El mole poblano es un plato tradicional mexicano.", + "example_sentence_english": "Mole poblano is a traditional Mexican dish.", + "pos": "noun", + "word_frequency": 10901 + }, + { + "word": "mordida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bite;bribe", + "example_sentence_native": "El perro le dio una mordida al hueso.", + "example_sentence_english": "The dog took a bite of the bone.", + "pos": "noun", + "word_frequency": 10902 + }, + { + "word": "multimillonario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multimillionaire", + "example_sentence_native": "Es un empresario multimillonario.", + "example_sentence_english": "He is a multimillionaire businessman.", + "pos": "adjective", + "word_frequency": 10903 + }, + { + "word": "nata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream", + "example_sentence_native": "Me gusta el café con nata.", + "example_sentence_english": "I like coffee with cream.", + "pos": "noun", + "word_frequency": 10904 + }, + { + "word": "ocasionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause;to occasion", + "example_sentence_native": "La tormenta ocasionó muchos daños.", + "example_sentence_english": "The storm caused a lot of damage.", + "pos": "verb", + "word_frequency": 10907 + }, + { + "word": "ofrecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offered", + "example_sentence_native": "El precio ofrecido fue muy bueno.", + "example_sentence_english": "The offered price was very good.", + "pos": "adjective", + "word_frequency": 10908 + }, + { + "word": "opio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opium", + "example_sentence_native": "El opio se ha utilizado como analgésico.", + "example_sentence_english": "Opium has been used as a painkiller.", + "pos": "noun", + "word_frequency": 10909 + }, + { + "word": "panorámico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panoramic", + "example_sentence_native": "La vista desde la cima era panorámica.", + "example_sentence_english": "The view from the top was panoramic.", + "pos": "adjective", + "word_frequency": 10910 + }, + { + "word": "papeleta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballot;ticket;slip", + "example_sentence_native": "Marcó su voto en la papeleta.", + "example_sentence_english": "He marked his vote on the ballot.", + "pos": "noun", + "word_frequency": 10911 + }, + { + "word": "patrocinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsored", + "example_sentence_native": "El evento fue patrocinado por una empresa local.", + "example_sentence_english": "The event was sponsored by a local company.", + "pos": "adjective", + "word_frequency": 10913 + }, + { + "word": "perito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expert;specialist;appraiser", + "example_sentence_native": "El perito evaluó los daños del accidente.", + "example_sentence_english": "The expert assessed the damages from the accident.", + "pos": "noun", + "word_frequency": 10914 + }, + { + "word": "posguerra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "postwar period", + "example_sentence_native": "La economía se recuperó lentamente en la posguerra.", + "example_sentence_english": "The economy slowly recovered in the postwar period.", + "pos": "noun", + "word_frequency": 10917 + }, + { + "word": "postgrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postgraduate;graduate degree", + "example_sentence_native": "Está haciendo un postgrado en ingeniería.", + "example_sentence_english": "He is doing a postgraduate degree in engineering.", + "pos": "noun", + "word_frequency": 10918 + }, + { + "word": "previsible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreseeable;predictable", + "example_sentence_native": "El resultado del partido era previsible.", + "example_sentence_english": "The outcome of the match was predictable.", + "pos": "adjective", + "word_frequency": 10919 + }, + { + "word": "prótesis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosthesis", + "example_sentence_native": "Necesita una prótesis de cadera.", + "example_sentence_english": "He needs a hip prosthesis.", + "pos": "noun", + "word_frequency": 10920 + }, + { + "word": "puntero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pointer", + "example_sentence_native": "El puntero láser es muy útil para presentaciones.", + "example_sentence_english": "The laser pointer is very useful for presentations.", + "pos": "noun", + "word_frequency": 10922 + }, + { + "word": "rambla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promenade", + "example_sentence_native": "Paseamos por la rambla al atardecer.", + "example_sentence_english": "We walked along the promenade at sunset.", + "pos": "noun", + "word_frequency": 10924 + }, + { + "word": "reivindicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to claim", + "example_sentence_native": "Los trabajadores van a reivindicar sus derechos.", + "example_sentence_english": "The workers are going to claim their rights.", + "pos": "verb", + "word_frequency": 10925 + }, + { + "word": "resguardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receipt;shelter", + "example_sentence_native": "Guarda el resguardo de la compra.", + "example_sentence_english": "Keep the purchase receipt.", + "pos": "noun", + "word_frequency": 10926 + }, + { + "word": "retratar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to portray;to photograph", + "example_sentence_native": "El artista supo retratar la esencia del personaje.", + "example_sentence_english": "The artist knew how to portray the essence of the character.", + "pos": "verb", + "word_frequency": 10927 + }, + { + "word": "sacudir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake;to dust off", + "example_sentence_native": "Sacude la alfombra para quitar el polvo.", + "example_sentence_english": "Shake the rug to remove the dust.", + "pos": "verb", + "word_frequency": 10930 + }, + { + "word": "satelital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satellite (adj.)", + "example_sentence_native": "La señal satelital es muy clara.", + "example_sentence_english": "The satellite signal is very clear.", + "pos": "adjective", + "word_frequency": 10931 + }, + { + "word": "saturación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturation", + "example_sentence_native": "Hay una saturación de información en internet.", + "example_sentence_english": "There is a saturation of information on the internet.", + "pos": "noun", + "word_frequency": 10932 + }, + { + "word": "secar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dry", + "example_sentence_native": "Necesito secar la ropa.", + "example_sentence_english": "I need to dry the clothes.", + "pos": "verb", + "word_frequency": 10934 + }, + { + "word": "sombrío", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy;shadowy", + "example_sentence_native": "El día estaba sombrío y lluvioso.", + "example_sentence_english": "The day was gloomy and rainy.", + "pos": "adjective", + "word_frequency": 10939 + }, + { + "word": "talón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heel;stub", + "example_sentence_native": "Me duele el talón después de correr.", + "example_sentence_english": "My heel hurts after running.", + "pos": "noun", + "word_frequency": 10944 + }, + { + "word": "tanda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "batch;round;session", + "example_sentence_native": "Vamos a ver la última tanda de películas.", + "example_sentence_english": "We are going to watch the last batch of movies.", + "pos": "noun", + "word_frequency": 10946 + }, + { + "word": "tardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slow;late", + "example_sentence_native": "Es un proceso tardo pero seguro.", + "example_sentence_english": "It's a slow but sure process.", + "pos": "adjective", + "word_frequency": 10947 + }, + { + "word": "tecnico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technical", + "example_sentence_native": "Necesitamos una solución técnica para este problema.", + "example_sentence_english": "We need a technical solution for this problem.", + "pos": "adjective", + "word_frequency": 10948 + }, + { + "word": "tijera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scissors", + "example_sentence_native": "Dame la tijera para cortar el papel.", + "example_sentence_english": "Give me the scissors to cut the paper.", + "pos": "noun", + "word_frequency": 10950 + }, + { + "word": "todopoderoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "almighty;omnipotent", + "example_sentence_native": "Se dice que Dios es todopoderoso.", + "example_sentence_english": "It is said that God is almighty.", + "pos": "adjective", + "word_frequency": 10952 + }, + { + "word": "torero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bullfighter", + "example_sentence_native": "El torero salió a la plaza.", + "example_sentence_english": "The bullfighter entered the bullring.", + "pos": "noun", + "word_frequency": 10953 + }, + { + "word": "trompeta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trumpet", + "example_sentence_native": "Toca la trompeta en la orquesta.", + "example_sentence_english": "He plays the trumpet in the orchestra.", + "pos": "noun", + "word_frequency": 10955 + }, + { + "word": "túnica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tunic", + "example_sentence_native": "Los monjes vestían túnicas sencillas.", + "example_sentence_english": "The monks wore simple tunics.", + "pos": "noun", + "word_frequency": 10956 + }, + { + "word": "vandalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandalism", + "example_sentence_native": "El vandalismo es un problema en la ciudad.", + "example_sentence_english": "Vandalism is a problem in the city.", + "pos": "noun", + "word_frequency": 10957 + }, + { + "word": "vanidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vanity", + "example_sentence_native": "Su vanidad le impedía ver sus errores.", + "example_sentence_english": "His vanity prevented him from seeing his mistakes.", + "pos": "noun", + "word_frequency": 10958 + }, + { + "word": "vibrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibrant", + "example_sentence_native": "La ciudad tiene una vida nocturna vibrante.", + "example_sentence_english": "The city has a vibrant nightlife.", + "pos": "adjective", + "word_frequency": 10960 + }, + { + "word": "virreinato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viceroyalty", + "example_sentence_native": "El virreinato de Nueva España fue muy extenso.", + "example_sentence_english": "The viceroyalty of New Spain was very extensive.", + "pos": "noun", + "word_frequency": 10961 + }, + { + "word": "yegua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mare", + "example_sentence_native": "La yegua corrió libre por el campo.", + "example_sentence_english": "The mare ran freely through the field.", + "pos": "noun", + "word_frequency": 10964 + }, + { + "word": "abatido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dejected;downcast", + "example_sentence_native": "Se sentía abatido después de la derrota.", + "example_sentence_english": "He felt dejected after the defeat.", + "pos": "adjective", + "word_frequency": 10965 + }, + { + "word": "acueducto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aqueduct", + "example_sentence_native": "El antiguo acueducto aún transporta agua.", + "example_sentence_english": "The ancient aqueduct still transports water.", + "pos": "noun", + "word_frequency": 10967 + }, + { + "word": "adecuación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adequacy;suitability", + "example_sentence_native": "Se necesita una adecuación del sistema a las nuevas normas.", + "example_sentence_english": "An adaptation of the system to the new regulations is needed.", + "pos": "noun", + "word_frequency": 10968 + }, + { + "word": "aeronave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aircraft", + "example_sentence_native": "La aeronave despegó sin problemas.", + "example_sentence_english": "The aircraft took off without problems.", + "pos": "noun", + "word_frequency": 10969 + }, + { + "word": "agitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agitated;turbulent", + "example_sentence_native": "El mar estaba muy agitado.", + "example_sentence_english": "The sea was very turbulent.", + "pos": "adjective", + "word_frequency": 10970 + }, + { + "word": "analisis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "analysis", + "example_sentence_native": "El análisis de los datos es crucial.", + "example_sentence_english": "The analysis of the data is crucial.", + "pos": "noun", + "word_frequency": 10974 + }, + { + "word": "antivirus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antivirus", + "example_sentence_native": "Necesito instalar un buen antivirus en mi computadora.", + "example_sentence_english": "I need to install a good antivirus on my computer.", + "pos": "noun", + "word_frequency": 10976 + }, + { + "word": "antro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cave;dive bar", + "example_sentence_native": "El antro estaba lleno de gente bailando.", + "example_sentence_english": "The dive bar was full of people dancing.", + "pos": "noun", + "word_frequency": 10977 + }, + { + "word": "aristocracia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aristocracy", + "example_sentence_native": "La aristocracia tenía mucho poder en esa época.", + "example_sentence_english": "The aristocracy had a lot of power in that era.", + "pos": "noun", + "word_frequency": 10978 + }, + { + "word": "arrojado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daring;brave", + "example_sentence_native": "Fue un acto muy arrojado de su parte.", + "example_sentence_english": "It was a very daring act on his part.", + "pos": "adjective", + "word_frequency": 10979 + }, + { + "word": "atendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attended;cared for", + "example_sentence_native": "El paciente fue bien atendido por las enfermeras.", + "example_sentence_english": "The patient was well cared for by the nurses.", + "pos": "adjective", + "word_frequency": 10980 + }, + { + "word": "atuendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attire;outfit", + "example_sentence_native": "Su atuendo para la fiesta era muy elegante.", + "example_sentence_english": "Her attire for the party was very elegant.", + "pos": "noun", + "word_frequency": 10981 + }, + { + "word": "avalancha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avalanche", + "example_sentence_native": "La avalancha bloqueó el camino de la montaña.", + "example_sentence_english": "The avalanche blocked the mountain road.", + "pos": "noun", + "word_frequency": 10982 + }, + { + "word": "bailarina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ballerina;dancer", + "example_sentence_native": "La bailarina principal realizó un salto impresionante.", + "example_sentence_english": "The principal ballerina performed an impressive jump.", + "pos": "noun", + "word_frequency": 10984 + }, + { + "word": "benéfico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficial;charitable", + "example_sentence_native": "El evento fue benéfico para una causa noble.", + "example_sentence_english": "The event was charitable for a noble cause.", + "pos": "adjective", + "word_frequency": 10985 + }, + { + "word": "bingo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bingo", + "example_sentence_native": "Jugamos al bingo en la noche de juegos.", + "example_sentence_english": "We played bingo on game night.", + "pos": "noun", + "word_frequency": 10987 + }, + { + "word": "bombo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bass drum;hype", + "example_sentence_native": "El bombo de la batería marcaba el ritmo.", + "example_sentence_english": "The bass drum of the drum kit marked the rhythm.", + "pos": "noun", + "word_frequency": 10988 + }, + { + "word": "calumnia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slander;calumny", + "example_sentence_native": "Fue víctima de una calumnia infundada.", + "example_sentence_english": "He was the victim of unfounded slander.", + "pos": "noun", + "word_frequency": 10994 + }, + { + "word": "champagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champagne", + "example_sentence_native": "Celebramos con una botella de champagne.", + "example_sentence_english": "We celebrated with a bottle of champagne.", + "pos": "noun", + "word_frequency": 10996 + }, + { + "word": "comision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commission", + "example_sentence_native": "Recibió una comisión por cada venta.", + "example_sentence_english": "He received a commission for each sale.", + "pos": "noun", + "word_frequency": 10998 + }, + { + "word": "conmovedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moving;touching", + "example_sentence_native": "Su historia fue realmente conmovedora.", + "example_sentence_english": "Her story was truly moving.", + "pos": "adjective", + "word_frequency": 10999 + }, + { + "word": "cordobés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Córdoba;Cordovan", + "example_sentence_native": "Mi amigo es cordobés, de la provincia de Córdoba.", + "example_sentence_english": "My friend is Cordovan, from the province of Córdoba.", + "pos": "adjective", + "word_frequency": 11000 + }, + { + "word": "coreografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choreography", + "example_sentence_native": "La coreografía del ballet era impresionante.", + "example_sentence_english": "The choreography of the ballet was impressive.", + "pos": "noun", + "word_frequency": 11001 + }, + { + "word": "cúbico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cubic", + "example_sentence_native": "El volumen de la caja es de un metro cúbico.", + "example_sentence_english": "The volume of the box is one cubic meter.", + "pos": "adjective", + "word_frequency": 11004 + }, + { + "word": "descaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impudence;cheek;brazenness", + "example_sentence_native": "Su descaro al hablarle al jefe fue sorprendente.", + "example_sentence_english": "His impudence when speaking to the boss was surprising.", + "pos": "noun", + "word_frequency": 11007 + }, + { + "word": "desmadre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chaos;mess;wild party", + "example_sentence_native": "La fiesta se convirtió en un desmadre total.", + "example_sentence_english": "The party turned into a total mess.", + "pos": "noun", + "word_frequency": 11008 + }, + { + "word": "dictatorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictatorial", + "example_sentence_native": "Su estilo de liderazgo es demasiado dictatorial.", + "example_sentence_english": "His leadership style is too dictatorial.", + "pos": "adjective", + "word_frequency": 11009 + }, + { + "word": "divinidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divinity;deity", + "example_sentence_native": "Muchas culturas antiguas adoraban a varias divinidades.", + "example_sentence_english": "Many ancient cultures worshipped various divinities.", + "pos": "noun", + "word_frequency": 11010 + }, + { + "word": "doblado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folded;dubbed (film)", + "example_sentence_native": "La ropa estaba doblada en el armario. Prefiero ver películas dobladas al español.", + "example_sentence_english": "The clothes were folded in the closet. I prefer to watch movies dubbed into Spanish.", + "pos": "adjective", + "word_frequency": 11011 + }, + { + "word": "dote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dowry;gift;talent", + "example_sentence_native": "La dote de la novia era considerable. Tiene un dote natural para la música.", + "example_sentence_english": "The bride's dowry was considerable. He has a natural gift for music.", + "pos": "noun", + "word_frequency": 11013 + }, + { + "word": "ejercido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exercised;practiced", + "example_sentence_native": "El poder ejercido por el rey era absoluto.", + "example_sentence_english": "The power exercised by the king was absolute.", + "pos": "adjective", + "word_frequency": 11014 + }, + { + "word": "estandarte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standard;banner", + "example_sentence_native": "El ejército marchaba bajo su estandarte.", + "example_sentence_english": "The army marched under its standard.", + "pos": "noun", + "word_frequency": 11016 + }, + { + "word": "euforia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "euphoria", + "example_sentence_native": "Después de ganar, el equipo estaba lleno de euforia.", + "example_sentence_english": "After winning, the team was full of euphoria.", + "pos": "noun", + "word_frequency": 11017 + }, + { + "word": "exclusividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exclusivity", + "example_sentence_native": "El contrato le otorga la exclusividad en la venta.", + "example_sentence_english": "The contract grants him exclusivity in the sale.", + "pos": "noun", + "word_frequency": 11020 + }, + { + "word": "exhaustivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhaustive;thorough", + "example_sentence_native": "Realizamos un análisis exhaustivo de los datos.", + "example_sentence_english": "We conducted an exhaustive analysis of the data.", + "pos": "adjective", + "word_frequency": 11021 + }, + { + "word": "faena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "task;chore;bullfight (final stage)", + "example_sentence_native": "Tengo que terminar esta faena antes de irme.", + "example_sentence_english": "I have to finish this task before I leave.", + "pos": "noun", + "word_frequency": 11022 + }, + { + "word": "falange", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phalanx;phalange (finger;toe bone)", + "example_sentence_native": "Se rompió una falange del dedo.", + "example_sentence_english": "He broke a phalanx of his finger.", + "pos": "noun", + "word_frequency": 11023 + }, + { + "word": "ficticio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fictitious;fictional", + "example_sentence_native": "El personaje es completamente ficticio.", + "example_sentence_english": "The character is completely fictitious.", + "pos": "adjective", + "word_frequency": 11025 + }, + { + "word": "fiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild beast;fierce person", + "example_sentence_native": "El león es una fiera peligrosa.", + "example_sentence_english": "The lion is a dangerous wild beast.", + "pos": "noun", + "word_frequency": 11026 + }, + { + "word": "folio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folio;sheet of paper", + "example_sentence_native": "Por favor, firma en el folio indicado.", + "example_sentence_english": "Please sign on the indicated folio.", + "pos": "noun", + "word_frequency": 11027 + }, + { + "word": "fugaz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleeting;brief", + "example_sentence_native": "Fue un encuentro fugaz, pero memorable.", + "example_sentence_english": "It was a fleeting encounter, but memorable.", + "pos": "adjective", + "word_frequency": 11028 + }, + { + "word": "férreo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iron;strong;unyielding", + "example_sentence_native": "Tenía una voluntad férrea para alcanzar sus metas.", + "example_sentence_english": "He had an iron will to achieve his goals.", + "pos": "adjective", + "word_frequency": 11029 + }, + { + "word": "gelatina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gelatin;jelly", + "example_sentence_native": "A los niños les encanta la gelatina de fresa.", + "example_sentence_english": "Children love strawberry jelly.", + "pos": "noun", + "word_frequency": 11031 + }, + { + "word": "golazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amazing goal;wonder goal", + "example_sentence_native": "¡Qué golazo metió Messi!", + "example_sentence_english": "What an amazing goal Messi scored!", + "pos": "noun", + "word_frequency": 11035 + }, + { + "word": "graduar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to graduate;to calibrate;to adjust", + "example_sentence_native": "Mi hermana se va a graduar de la universidad el próximo año.", + "example_sentence_english": "My sister is going to graduate from university next year.", + "pos": "verb", + "word_frequency": 11036 + }, + { + "word": "grúa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crane;tow truck", + "example_sentence_native": "La grúa se llevó el coche mal estacionado.", + "example_sentence_english": "The tow truck took away the illegally parked car.", + "pos": "noun", + "word_frequency": 11037 + }, + { + "word": "humillante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliating", + "example_sentence_native": "Fue una derrota humillante para el equipo.", + "example_sentence_english": "It was a humiliating defeat for the team.", + "pos": "adjective", + "word_frequency": 11042 + }, + { + "word": "igualitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egalitarian", + "example_sentence_native": "Buscan construir una sociedad más igualitaria.", + "example_sentence_english": "They seek to build a more egalitarian society.", + "pos": "adjective", + "word_frequency": 11045 + }, + { + "word": "impartir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to impart;to give;to teach", + "example_sentence_native": "El profesor va a impartir una nueva lección.", + "example_sentence_english": "The professor is going to impart a new lesson.", + "pos": "verb", + "word_frequency": 11046 + }, + { + "word": "inferioridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inferiority", + "example_sentence_native": "Sentía un complejo de inferioridad.", + "example_sentence_english": "He felt an inferiority complex.", + "pos": "noun", + "word_frequency": 11047 + }, + { + "word": "inflexión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflection;turning point", + "example_sentence_native": "La inflexión de su voz indicaba tristeza.", + "example_sentence_english": "The inflection in her voice indicated sadness.", + "pos": "noun", + "word_frequency": 11048 + }, + { + "word": "inhumano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhuman;inhumane", + "example_sentence_native": "El trato que recibieron fue inhumano.", + "example_sentence_english": "The treatment they received was inhumane.", + "pos": "adjective", + "word_frequency": 11049 + }, + { + "word": "introducido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduced;inserted", + "example_sentence_native": "El nuevo sistema fue introducido el mes pasado.", + "example_sentence_english": "The new system was introduced last month.", + "pos": "adjective", + "word_frequency": 11050 + }, + { + "word": "iraquí", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iraqi", + "example_sentence_native": "La delegación iraquí llegó a la conferencia.", + "example_sentence_english": "The Iraqi delegation arrived at the conference.", + "pos": "adjective", + "word_frequency": 11052 + }, + { + "word": "irresponsabilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresponsibility", + "example_sentence_native": "Su irresponsabilidad causó muchos problemas.", + "example_sentence_english": "His irresponsibility caused many problems.", + "pos": "noun", + "word_frequency": 11053 + }, + { + "word": "jarabe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "syrup;cough syrup", + "example_sentence_native": "El médico le recetó jarabe para la tos.", + "example_sentence_english": "The doctor prescribed him cough syrup.", + "pos": "noun", + "word_frequency": 11054 + }, + { + "word": "kilogramo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram", + "example_sentence_native": "Necesito un kilogramo de manzanas.", + "example_sentence_english": "I need one kilogram of apples.", + "pos": "noun", + "word_frequency": 11057 + }, + { + "word": "liquidar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to liquidate;to settle;to kill", + "example_sentence_native": "Decidieron liquidar la empresa.", + "example_sentence_english": "They decided to liquidate the company.", + "pos": "verb", + "word_frequency": 11062 + }, + { + "word": "lucero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bright star;morning star;guiding light", + "example_sentence_native": "El lucero del alba brillaba en el cielo.", + "example_sentence_english": "The morning star shone in the sky.", + "pos": "noun", + "word_frequency": 11063 + }, + { + "word": "maduración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maturation;ripening", + "example_sentence_native": "La maduración de la fruta toma tiempo.", + "example_sentence_english": "The ripening of the fruit takes time.", + "pos": "noun", + "word_frequency": 11064 + }, + { + "word": "mafioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mafioso;mobster", + "example_sentence_native": "La película trata sobre un jefe mafioso.", + "example_sentence_english": "The movie is about a mafioso boss.", + "pos": "adjective", + "word_frequency": 11065 + }, + { + "word": "maza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mace;club;mallet", + "example_sentence_native": "El guerrero llevaba una maza pesada.", + "example_sentence_english": "The warrior carried a heavy mace.", + "pos": "noun", + "word_frequency": 11068 + }, + { + "word": "mercadeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing", + "example_sentence_native": "La empresa invirtió mucho en mercadeo digital.", + "example_sentence_english": "The company invested a lot in digital marketing.", + "pos": "noun", + "word_frequency": 11071 + }, + { + "word": "meseta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plateau;high plain", + "example_sentence_native": "La meseta central de España es muy extensa.", + "example_sentence_english": "The central plateau of Spain is very extensive.", + "pos": "noun", + "word_frequency": 11072 + }, + { + "word": "mijo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millet;my son;dear (term of endearment)", + "example_sentence_native": "Ven aquí, mijo, te tengo algo.", + "example_sentence_english": "Come here, my dear, I have something for you.", + "pos": "noun", + "word_frequency": 11073 + }, + { + "word": "mutación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutation", + "example_sentence_native": "Una mutación genética puede cambiar las características de un organismo.", + "example_sentence_english": "A genetic mutation can change the characteristics of an organism.", + "pos": "noun", + "word_frequency": 11075 + }, + { + "word": "místico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mystic;mystical", + "example_sentence_native": "El lugar tenía un ambiente místico y antiguo.", + "example_sentence_english": "The place had a mystical and ancient atmosphere.", + "pos": "adjective", + "word_frequency": 11076 + }, + { + "word": "novedoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovative;novel", + "example_sentence_native": "La idea es muy novedosa y podría cambiar el mercado.", + "example_sentence_english": "The idea is very innovative and could change the market.", + "pos": "adjective", + "word_frequency": 11081 + }, + { + "word": "paralizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paralyzed;stalled", + "example_sentence_native": "El tráfico estaba completamente paralizado por el accidente.", + "example_sentence_english": "The traffic was completely paralyzed by the accident.", + "pos": "adjective", + "word_frequency": 11084 + }, + { + "word": "parejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "even;equal;consistent", + "example_sentence_native": "El resultado del partido fue muy parejo.", + "example_sentence_english": "The result of the match was very even.", + "pos": "adjective", + "word_frequency": 11085 + }, + { + "word": "partición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partition;division", + "example_sentence_native": "Se acordó la partición de los bienes.", + "example_sentence_english": "The division of assets was agreed upon.", + "pos": "noun", + "word_frequency": 11086 + }, + { + "word": "peninsular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peninsular", + "example_sentence_native": "La cultura peninsular es muy rica.", + "example_sentence_english": "Peninsular culture is very rich.", + "pos": "adjective", + "word_frequency": 11088 + }, + { + "word": "petroleo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oil;petroleum", + "example_sentence_native": "El precio del petróleo ha subido.", + "example_sentence_english": "The price of oil has risen.", + "pos": "noun", + "word_frequency": 11089 + }, + { + "word": "posterioridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "posteriority;later time", + "example_sentence_native": "La decisión se tomará con posterioridad a la reunión.", + "example_sentence_english": "The decision will be made subsequent to the meeting.", + "pos": "noun", + "word_frequency": 11094 + }, + { + "word": "predicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preach;to proclaim", + "example_sentence_native": "El sacerdote predica cada domingo.", + "example_sentence_english": "The priest preaches every Sunday.", + "pos": "verb", + "word_frequency": 11095 + }, + { + "word": "proclamado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proclaimed;declared", + "example_sentence_native": "Fue proclamado ganador de las elecciones.", + "example_sentence_english": "He was proclaimed the winner of the elections.", + "pos": "adjective", + "word_frequency": 11096 + }, + { + "word": "puré", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puree;mash", + "example_sentence_native": "Me gusta el puré de patatas.", + "example_sentence_english": "I like mashed potatoes.", + "pos": "noun", + "word_frequency": 11097 + }, + { + "word": "póliza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "policy (insurance)", + "example_sentence_native": "Necesito renovar mi póliza de seguro.", + "example_sentence_english": "I need to renew my insurance policy.", + "pos": "noun", + "word_frequency": 11098 + }, + { + "word": "razonar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reason;to think", + "example_sentence_native": "Es importante razonar antes de actuar.", + "example_sentence_english": "It's important to reason before acting.", + "pos": "verb", + "word_frequency": 11099 + }, + { + "word": "remesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remittance;shipment", + "example_sentence_native": "Recibió una remesa de dinero de su familia.", + "example_sentence_english": "He received a money remittance from his family.", + "pos": "noun", + "word_frequency": 11100 + }, + { + "word": "reverso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reverse;back side", + "example_sentence_native": "Escribe tu nombre en el reverso de la hoja.", + "example_sentence_english": "Write your name on the reverse side of the sheet.", + "pos": "noun", + "word_frequency": 11101 + }, + { + "word": "revuelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commotion;stir", + "example_sentence_native": "La noticia causó un gran revuelo en la ciudad.", + "example_sentence_english": "The news caused a great stir in the city.", + "pos": "noun", + "word_frequency": 11103 + }, + { + "word": "rotonda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roundabout;traffic circle", + "example_sentence_native": "Gira a la derecha en la próxima rotonda.", + "example_sentence_english": "Turn right at the next roundabout.", + "pos": "noun", + "word_frequency": 11107 + }, + { + "word": "router", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "router", + "example_sentence_native": "Necesito reiniciar el router para tener internet.", + "example_sentence_english": "I need to restart the router to have internet.", + "pos": "noun", + "word_frequency": 11108 + }, + { + "word": "separatista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separatist", + "example_sentence_native": "El partido separatista ganó las elecciones regionales.", + "example_sentence_english": "The separatist party won the regional elections.", + "pos": "noun", + "word_frequency": 11111 + }, + { + "word": "simplicidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplicity", + "example_sentence_native": "La simplicidad del diseño es impresionante.", + "example_sentence_english": "The simplicity of the design is impressive.", + "pos": "noun", + "word_frequency": 11112 + }, + { + "word": "sinfonía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symphony", + "example_sentence_native": "Escuchamos la Quinta Sinfonía de Beethoven.", + "example_sentence_english": "We listened to Beethoven's Fifth Symphony.", + "pos": "noun", + "word_frequency": 11113 + }, + { + "word": "sondeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poll;survey", + "example_sentence_native": "El último sondeo muestra un cambio en la opinión pública.", + "example_sentence_english": "The latest poll shows a change in public opinion.", + "pos": "noun", + "word_frequency": 11114 + }, + { + "word": "superintendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendent", + "example_sentence_native": "El superintendente visitó la escuela.", + "example_sentence_english": "The superintendent visited the school.", + "pos": "noun", + "word_frequency": 11116 + }, + { + "word": "teja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roof tile", + "example_sentence_native": "El tejado está hecho de tejas rojas.", + "example_sentence_english": "The roof is made of red tiles.", + "pos": "noun", + "word_frequency": 11118 + }, + { + "word": "terapéutico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "therapeutic", + "example_sentence_native": "El masaje tuvo un efecto terapéutico.", + "example_sentence_english": "The massage had a therapeutic effect.", + "pos": "adjective", + "word_frequency": 11119 + }, + { + "word": "terrateniente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "landowner", + "example_sentence_native": "El terrateniente poseía vastas extensiones de tierra.", + "example_sentence_english": "The landowner owned vast tracts of land.", + "pos": "noun", + "word_frequency": 11120 + }, + { + "word": "trafico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traffic", + "example_sentence_native": "El tráfico en la ciudad es terrible por la mañana.", + "example_sentence_english": "The traffic in the city is terrible in the morning.", + "pos": "noun", + "word_frequency": 11122 + }, + { + "word": "trivial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trivial", + "example_sentence_native": "No te preocupes por cosas triviales.", + "example_sentence_english": "Don't worry about trivial things.", + "pos": "adjective", + "word_frequency": 11123 + }, + { + "word": "tuitero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Twitter user", + "example_sentence_native": "El tuitero publicó una opinión controvertida.", + "example_sentence_english": "The Twitter user posted a controversial opinion.", + "pos": "noun", + "word_frequency": 11124 + }, + { + "word": "táctico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactical", + "example_sentence_native": "Adoptaron una estrategia táctica para ganar el juego.", + "example_sentence_english": "They adopted a tactical strategy to win the game.", + "pos": "adjective", + "word_frequency": 11125 + }, + { + "word": "unificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unify", + "example_sentence_native": "Intentaron unificar los diferentes grupos.", + "example_sentence_english": "They tried to unify the different groups.", + "pos": "verb", + "word_frequency": 11126 + }, + { + "word": "vialidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "road network", + "example_sentence_native": "La vialidad en la zona rural necesita mejoras urgentes.", + "example_sentence_english": "The road network in the rural area needs urgent improvements.", + "pos": "noun", + "word_frequency": 11127 + }, + { + "word": "vigésimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twentieth", + "example_sentence_native": "Él fue el vigésimo en la fila.", + "example_sentence_english": "He was the twentieth in line.", + "pos": "adjective", + "word_frequency": 11129 + }, + { + "word": "yuan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yuan", + "example_sentence_native": "El yuan es la moneda de China.", + "example_sentence_english": "The yuan is the currency of China.", + "pos": "noun", + "word_frequency": 11132 + }, + { + "word": "abogacía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "law (profession)", + "example_sentence_native": "Estudió abogacía para defender los derechos humanos.", + "example_sentence_english": "She studied law to defend human rights.", + "pos": "noun", + "word_frequency": 11135 + }, + { + "word": "agropecuario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agricultural and livestock", + "example_sentence_native": "La producción agropecuaria es vital para la economía del país.", + "example_sentence_english": "Agricultural and livestock production is vital for the country's economy.", + "pos": "adjective", + "word_frequency": 11136 + }, + { + "word": "alegación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegation", + "example_sentence_native": "Su alegación fue desestimada por falta de pruebas.", + "example_sentence_english": "His allegation was dismissed due to lack of evidence.", + "pos": "noun", + "word_frequency": 11137 + }, + { + "word": "alinear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to align", + "example_sentence_native": "Necesitamos alinear los objetivos del equipo.", + "example_sentence_english": "We need to align the team's objectives.", + "pos": "verb", + "word_frequency": 11138 + }, + { + "word": "ambigüedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambiguity", + "example_sentence_native": "La ambigüedad de su respuesta causó confusión.", + "example_sentence_english": "The ambiguity of his answer caused confusion.", + "pos": "noun", + "word_frequency": 11141 + }, + { + "word": "analfabetismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illiteracy", + "example_sentence_native": "El gobierno está trabajando para reducir el analfabetismo.", + "example_sentence_english": "The government is working to reduce illiteracy.", + "pos": "noun", + "word_frequency": 11142 + }, + { + "word": "anticonceptivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraceptive", + "example_sentence_native": "El uso de anticonceptivos es un tema de debate.", + "example_sentence_english": "The use of contraceptives is a topic of debate.", + "pos": "noun", + "word_frequency": 11143 + }, + { + "word": "anticuerpo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antibody", + "example_sentence_native": "Los anticuerpos combaten las infecciones.", + "example_sentence_english": "Antibodies fight infections.", + "pos": "noun", + "word_frequency": 11144 + }, + { + "word": "apestar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stink", + "example_sentence_native": "La basura apesta si no la sacas.", + "example_sentence_english": "The trash stinks if you don't take it out.", + "pos": "verb", + "word_frequency": 11145 + }, + { + "word": "bengala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flare", + "example_sentence_native": "Encendieron una bengala para señalar su posición.", + "example_sentence_english": "They lit a flare to signal their position.", + "pos": "noun", + "word_frequency": 11149 + }, + { + "word": "boulevard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boulevard", + "example_sentence_native": "Caminamos por el boulevard arbolado.", + "example_sentence_english": "We walked along the tree-lined boulevard.", + "pos": "noun", + "word_frequency": 11151 + }, + { + "word": "budismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhism", + "example_sentence_native": "El budismo es una religión con muchos seguidores.", + "example_sentence_english": "Buddhism is a religion with many followers.", + "pos": "noun", + "word_frequency": 11153 + }, + { + "word": "buitre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulture", + "example_sentence_native": "Vimos un buitre volando en círculos sobre el desierto.", + "example_sentence_english": "We saw a vulture circling over the desert.", + "pos": "noun", + "word_frequency": 11155 + }, + { + "word": "cajita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small box", + "example_sentence_native": "Guarda tus joyas en esa cajita.", + "example_sentence_english": "Keep your jewelry in that small box.", + "pos": "noun", + "word_frequency": 11156 + }, + { + "word": "calculadora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calculator", + "example_sentence_native": "Necesito una calculadora para hacer estas cuentas.", + "example_sentence_english": "I need a calculator to do these calculations.", + "pos": "noun", + "word_frequency": 11157 + }, + { + "word": "cargamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cargo", + "example_sentence_native": "El barco transportaba un cargamento de cereales.", + "example_sentence_english": "The ship was carrying a cargo of grain.", + "pos": "noun", + "word_frequency": 11159 + }, + { + "word": "carnicería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher shop", + "example_sentence_native": "Voy a la carnicería a comprar carne para la cena.", + "example_sentence_english": "I'm going to the butcher shop to buy meat for dinner.", + "pos": "noun", + "word_frequency": 11161 + }, + { + "word": "cata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasting", + "example_sentence_native": "Hicimos una cata de vinos en la bodega.", + "example_sentence_english": "We did a wine tasting at the winery.", + "pos": "noun", + "word_frequency": 11163 + }, + { + "word": "chicha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substance;meat (colloquial)", + "example_sentence_native": "El discurso no tenía mucha chicha.", + "example_sentence_english": "The speech didn't have much substance.", + "pos": "noun", + "word_frequency": 11165 + }, + { + "word": "cognitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cognitive", + "example_sentence_native": "Estudiamos el desarrollo cognitivo en niños.", + "example_sentence_english": "We study cognitive development in children.", + "pos": "adjective", + "word_frequency": 11166 + }, + { + "word": "columnista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "columnist", + "example_sentence_native": "Mi columnista favorito escribe sobre política.", + "example_sentence_english": "My favorite columnist writes about politics.", + "pos": "noun", + "word_frequency": 11167 + }, + { + "word": "comitiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entourage;retinue", + "example_sentence_native": "La comitiva presidencial llegó al evento.", + "example_sentence_english": "The presidential entourage arrived at the event.", + "pos": "noun", + "word_frequency": 11168 + }, + { + "word": "comparativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparative", + "example_sentence_native": "Hicimos un estudio comparativo de ambos métodos.", + "example_sentence_english": "We did a comparative study of both methods.", + "pos": "adjective", + "word_frequency": 11169 + }, + { + "word": "conferir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confer;to bestow", + "example_sentence_native": "La universidad le va a conferir un doctorado honoris causa.", + "example_sentence_english": "The university is going to confer an honorary doctorate upon him.", + "pos": "verb", + "word_frequency": 11170 + }, + { + "word": "consultivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consultative", + "example_sentence_native": "El comité consultivo emitió su informe.", + "example_sentence_english": "The consultative committee issued its report.", + "pos": "adjective", + "word_frequency": 11171 + }, + { + "word": "cortejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courtship;procession", + "example_sentence_native": "El cortejo fúnebre avanzaba lentamente.", + "example_sentence_english": "The funeral procession moved slowly.", + "pos": "noun", + "word_frequency": 11172 + }, + { + "word": "cosquilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tickle", + "example_sentence_native": "Siento una cosquilla en la nariz.", + "example_sentence_english": "I feel a tickle in my nose.", + "pos": "noun", + "word_frequency": 11173 + }, + { + "word": "costura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sewing;seam", + "example_sentence_native": "Mi abuela es experta en costura.", + "example_sentence_english": "My grandmother is an expert in sewing.", + "pos": "noun", + "word_frequency": 11174 + }, + { + "word": "critico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "critic", + "example_sentence_native": "El crítico de cine dio una mala reseña.", + "example_sentence_english": "The film critic gave a bad review.", + "pos": "noun", + "word_frequency": 11175 + }, + { + "word": "cuatrocientos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "four hundred", + "example_sentence_native": "Hay cuatrocientos libros en la biblioteca.", + "example_sentence_english": "There are four hundred books in the library.", + "pos": "noun", + "word_frequency": 11176 + }, + { + "word": "culminación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culmination", + "example_sentence_native": "La graduación fue la culminación de años de estudio.", + "example_sentence_english": "Graduation was the culmination of years of study.", + "pos": "noun", + "word_frequency": 11178 + }, + { + "word": "debutar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to debut", + "example_sentence_native": "El joven actor va a debutar en la nueva obra.", + "example_sentence_english": "The young actor is going to debut in the new play.", + "pos": "verb", + "word_frequency": 11181 + }, + { + "word": "desarme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disarmament", + "example_sentence_native": "Las naciones buscan un acuerdo de desarme nuclear.", + "example_sentence_english": "Nations are seeking a nuclear disarmament agreement.", + "pos": "noun", + "word_frequency": 11182 + }, + { + "word": "descentralización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decentralization", + "example_sentence_native": "La descentralización del gobierno es un tema importante.", + "example_sentence_english": "Government decentralization is an important topic.", + "pos": "noun", + "word_frequency": 11183 + }, + { + "word": "descuidar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to neglect;to disregard", + "example_sentence_native": "No debes descuidar tus estudios.", + "example_sentence_english": "You shouldn't neglect your studies.", + "pos": "verb", + "word_frequency": 11184 + }, + { + "word": "desplazar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to displace;to move", + "example_sentence_native": "La nueva tecnología podría desplazar a los trabajadores.", + "example_sentence_english": "The new technology could displace workers.", + "pos": "verb", + "word_frequency": 11185 + }, + { + "word": "destacamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detachment;contingent", + "example_sentence_native": "Un destacamento de soldados fue enviado a la zona.", + "example_sentence_english": "A detachment of soldiers was sent to the area.", + "pos": "noun", + "word_frequency": 11186 + }, + { + "word": "disfrazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disguise;to dress up", + "example_sentence_native": "Los niños se van a disfrazar para Halloween.", + "example_sentence_english": "The children are going to dress up for Halloween.", + "pos": "verb", + "word_frequency": 11187 + }, + { + "word": "dióxido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dioxide", + "example_sentence_native": "El dióxido de carbono es un gas de efecto invernadero.", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "noun", + "word_frequency": 11188 + }, + { + "word": "débito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debit", + "example_sentence_native": "Pagué con mi tarjeta de débito.", + "example_sentence_english": "I paid with my debit card.", + "pos": "noun", + "word_frequency": 11190 + }, + { + "word": "egresar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to graduate;to exit", + "example_sentence_native": "Mi hermano va a egresar de la universidad el próximo año.", + "example_sentence_english": "My brother is going to graduate from university next year.", + "pos": "verb", + "word_frequency": 11191 + }, + { + "word": "entablar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to initiate;to start (a conversation;lawsuit)", + "example_sentence_native": "Es difícil entablar una conversación con él.", + "example_sentence_english": "It's difficult to initiate a conversation with him.", + "pos": "verb", + "word_frequency": 11192 + }, + { + "word": "entendido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expert;connoisseur", + "example_sentence_native": "Es un entendido en arte moderno.", + "example_sentence_english": "He is an expert in modern art.", + "pos": "noun", + "word_frequency": 11193 + }, + { + "word": "escéptico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skeptical", + "example_sentence_native": "Soy escéptico sobre esas afirmaciones.", + "example_sentence_english": "I am skeptical about those claims.", + "pos": "adjective", + "word_frequency": 11195 + }, + { + "word": "esmalte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enamel;nail polish", + "example_sentence_native": "Se me ha caído el esmalte de uñas.", + "example_sentence_english": "My nail polish has chipped.", + "pos": "noun", + "word_frequency": 11196 + }, + { + "word": "espléndido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splendid;magnificent", + "example_sentence_native": "Tuvimos un día espléndido en la playa.", + "example_sentence_english": "We had a splendid day at the beach.", + "pos": "adjective", + "word_frequency": 11197 + }, + { + "word": "esquivar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dodge;to evade", + "example_sentence_native": "Logró esquivar el golpe.", + "example_sentence_english": "He managed to dodge the blow.", + "pos": "verb", + "word_frequency": 11198 + }, + { + "word": "facha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fascist (derogatory);appearance (colloquial)", + "example_sentence_native": "Ese tipo tiene una facha muy sospechosa.", + "example_sentence_english": "That guy has a very suspicious appearance.", + "pos": "noun", + "word_frequency": 11199 + }, + { + "word": "fricción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friction", + "example_sentence_native": "La fricción entre las dos superficies generó calor.", + "example_sentence_english": "The friction between the two surfaces generated heat.", + "pos": "noun", + "word_frequency": 11204 + }, + { + "word": "gaviota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seagull", + "example_sentence_native": "Las gaviotas volaban sobre el mar.", + "example_sentence_english": "The seagulls were flying over the sea.", + "pos": "noun", + "word_frequency": 11207 + }, + { + "word": "gendarmería", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gendarmerie", + "example_sentence_native": "La gendarmería patrulla las zonas rurales.", + "example_sentence_english": "The gendarmerie patrols rural areas.", + "pos": "noun", + "word_frequency": 11208 + }, + { + "word": "generalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generalization", + "example_sentence_native": "No me gustan las generalizaciones.", + "example_sentence_english": "I don't like generalizations.", + "pos": "noun", + "word_frequency": 11209 + }, + { + "word": "glándula", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gland", + "example_sentence_native": "La tiroides es una glándula importante.", + "example_sentence_english": "The thyroid is an important gland.", + "pos": "noun", + "word_frequency": 11212 + }, + { + "word": "gobernabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governability", + "example_sentence_native": "La gobernabilidad del país es crucial para su estabilidad.", + "example_sentence_english": "The governability of the country is crucial for its stability.", + "pos": "noun", + "word_frequency": 11214 + }, + { + "word": "granado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pomegranate tree", + "example_sentence_native": "El jardín tiene un granado con muchos frutos.", + "example_sentence_english": "The garden has a pomegranate tree with many fruits.", + "pos": "noun", + "word_frequency": 11215 + }, + { + "word": "guita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money (slang);string", + "example_sentence_native": "No tengo mucha guita en el bolsillo.", + "example_sentence_english": "I don't have much money in my pocket.", + "pos": "noun", + "word_frequency": 11216 + }, + { + "word": "hipertensión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypertension", + "example_sentence_native": "La hipertensión es una condición médica seria.", + "example_sentence_english": "Hypertension is a serious medical condition.", + "pos": "noun", + "word_frequency": 11219 + }, + { + "word": "hobby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hobby", + "example_sentence_native": "Mi hobby es leer libros.", + "example_sentence_english": "My hobby is reading books.", + "pos": "noun", + "word_frequency": 11220 + }, + { + "word": "inclinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lean;to tilt", + "example_sentence_native": "Por favor, inclina la silla hacia atrás.", + "example_sentence_english": "Please, lean the chair back.", + "pos": "verb", + "word_frequency": 11222 + }, + { + "word": "indagar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to investigate;to inquire", + "example_sentence_native": "La policía va a indagar sobre el caso.", + "example_sentence_english": "The police are going to investigate the case.", + "pos": "verb", + "word_frequency": 11223 + }, + { + "word": "intelecto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intellect", + "example_sentence_native": "Su intelecto es impresionante.", + "example_sentence_english": "His intellect is impressive.", + "pos": "noun", + "word_frequency": 11224 + }, + { + "word": "irresistible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresistible", + "example_sentence_native": "El pastel era irresistible.", + "example_sentence_english": "The cake was irresistible.", + "pos": "adjective", + "word_frequency": 11225 + }, + { + "word": "jardinero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gardener", + "example_sentence_native": "El jardinero cuida las flores.", + "example_sentence_english": "The gardener takes care of the flowers.", + "pos": "noun", + "word_frequency": 11226 + }, + { + "word": "larva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "larva", + "example_sentence_native": "La oruga es la larva de la mariposa.", + "example_sentence_english": "The caterpillar is the larva of the butterfly.", + "pos": "noun", + "word_frequency": 11231 + }, + { + "word": "mamita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mommy (affectionate);dear", + "example_sentence_native": "Hola, mamita, ¿cómo estás?", + "example_sentence_english": "Hello, mommy, how are you?", + "pos": "noun", + "word_frequency": 11236 + }, + { + "word": "manija", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handle;crank", + "example_sentence_native": "La manija de la puerta está rota.", + "example_sentence_english": "The door handle is broken.", + "pos": "noun", + "word_frequency": 11237 + }, + { + "word": "match", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "match (sports;romantic)", + "example_sentence_native": "Vimos un buen match de fútbol ayer.", + "example_sentence_english": "We watched a good soccer match yesterday.", + "pos": "noun", + "word_frequency": 11238 + }, + { + "word": "mecha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wick;fuse", + "example_sentence_native": "La vela tiene una mecha corta.", + "example_sentence_english": "The candle has a short wick.", + "pos": "noun", + "word_frequency": 11240 + }, + { + "word": "melón", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "melon", + "example_sentence_native": "Me encanta el melón en verano.", + "example_sentence_english": "I love melon in summer.", + "pos": "noun", + "word_frequency": 11241 + }, + { + "word": "millar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thousand (as a unit)", + "example_sentence_native": "Compraron un millar de ladrillos.", + "example_sentence_english": "They bought a thousand bricks.", + "pos": "noun", + "word_frequency": 11242 + }, + { + "word": "moderador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderator", + "example_sentence_native": "El moderador controló el debate.", + "example_sentence_english": "The moderator controlled the debate.", + "pos": "noun", + "word_frequency": 11243 + }, + { + "word": "morbo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morbid curiosity;unhealthy fascination", + "example_sentence_native": "La gente siente morbo por las tragedias.", + "example_sentence_english": "People feel morbid curiosity about tragedies.", + "pos": "noun", + "word_frequency": 11244 + }, + { + "word": "mordaza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gag;muzzle;clamp", + "example_sentence_native": "Le pusieron una mordaza para que no gritara.", + "example_sentence_english": "They put a gag on him so he wouldn't scream.", + "pos": "noun", + "word_frequency": 11245 + }, + { + "word": "mortero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortar (for building);mortar (weapon);pestle", + "example_sentence_native": "Usaron mortero para unir los ladrillos.", + "example_sentence_english": "They used mortar to join the bricks.", + "pos": "noun", + "word_frequency": 11246 + }, + { + "word": "pasito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little step;slowly", + "example_sentence_native": "Ve pasito a pasito para no caerte.", + "example_sentence_english": "Go little by little so you don't fall.", + "pos": "noun", + "word_frequency": 11253 + }, + { + "word": "peluca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wig", + "example_sentence_native": "Se puso una peluca para el disfraz.", + "example_sentence_english": "She put on a wig for the costume.", + "pos": "noun", + "word_frequency": 11254 + }, + { + "word": "periférico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peripheral (device);ring road", + "example_sentence_native": "El ratón es un periférico del ordenador.", + "example_sentence_english": "The mouse is a computer peripheral.", + "pos": "noun", + "word_frequency": 11256 + }, + { + "word": "persistencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistence", + "example_sentence_native": "Su persistencia le ayudó a alcanzar sus metas.", + "example_sentence_english": "His persistence helped him achieve his goals.", + "pos": "noun", + "word_frequency": 11257 + }, + { + "word": "pio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chirp;peep", + "example_sentence_native": "El pollito hace pío, pío.", + "example_sentence_english": "The chick goes chirp, chirp.", + "pos": "noun", + "word_frequency": 11260 + }, + { + "word": "platear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to silver;to plate with silver", + "example_sentence_native": "Van a platear la medalla para que brille más.", + "example_sentence_english": "They are going to silver the medal so it shines more.", + "pos": "verb", + "word_frequency": 11262 + }, + { + "word": "prepa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school (informal;Mexico)", + "example_sentence_native": "Mi hermana está en la prepa este año.", + "example_sentence_english": "My sister is in high school this year.", + "pos": "noun", + "word_frequency": 11264 + }, + { + "word": "presumible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumable;probable", + "example_sentence_native": "Presumiblemente, el proyecto se completará a tiempo.", + "example_sentence_english": "Presumably, the project will be completed on time.", + "pos": "adverb", + "word_frequency": 11265 + }, + { + "word": "protagonizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to star in;to play the leading role", + "example_sentence_native": "Él va a protagonizar la nueva película de acción.", + "example_sentence_english": "He is going to star in the new action movie.", + "pos": "verb", + "word_frequency": 11266 + }, + { + "word": "páramo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moor;wasteland;high plateau", + "example_sentence_native": "El páramo andino es un ecosistema único.", + "example_sentence_english": "The Andean moor is a unique ecosystem.", + "pos": "noun", + "word_frequency": 11268 + }, + { + "word": "ratio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ratio", + "example_sentence_native": "La ratio de deuda a capital es importante para la empresa.", + "example_sentence_english": "The debt-to-equity ratio is important for the company.", + "pos": "noun", + "word_frequency": 11269 + }, + { + "word": "rededor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surroundings;vicinity (usually in 'alrededor')", + "example_sentence_native": "Miró a su alrededor buscando a alguien.", + "example_sentence_english": "He looked around him searching for someone.", + "pos": "noun", + "word_frequency": 11270 + }, + { + "word": "reencuentro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reunion;re-encounter", + "example_sentence_native": "El reencuentro con sus viejos amigos fue muy emotivo.", + "example_sentence_english": "The reunion with his old friends was very emotional.", + "pos": "noun", + "word_frequency": 11271 + }, + { + "word": "referendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referendum", + "example_sentence_native": "Se votará en un referendo sobre la propuesta de ley.", + "example_sentence_english": "A referendum will be voted on the proposed law.", + "pos": "noun", + "word_frequency": 11272 + }, + { + "word": "refrán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proverb;saying", + "example_sentence_native": "Hay un refrán que dice: 'No hay mal que dure cien años'.", + "example_sentence_english": "There's a proverb that says: 'No evil lasts a hundred years'.", + "pos": "noun", + "word_frequency": 11273 + }, + { + "word": "relator", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rapporteur;narrator;relator", + "example_sentence_native": "El relator especial presentó su informe ante la asamblea.", + "example_sentence_english": "The special rapporteur presented his report to the assembly.", + "pos": "noun", + "word_frequency": 11274 + }, + { + "word": "rigidez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigidity;stiffness", + "example_sentence_native": "La rigidez de las normas dificulta la adaptación.", + "example_sentence_english": "The rigidity of the rules makes adaptation difficult.", + "pos": "noun", + "word_frequency": 11276 + }, + { + "word": "salchicha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sausage", + "example_sentence_native": "Compramos salchichas para la barbacoa.", + "example_sentence_english": "We bought sausages for the barbecue.", + "pos": "noun", + "word_frequency": 11277 + }, + { + "word": "serial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "series;serial (TV;radio)", + "example_sentence_native": "Me enganché a un nuevo serial de misterio.", + "example_sentence_english": "I got hooked on a new mystery series.", + "pos": "noun", + "word_frequency": 11279 + }, + { + "word": "simplificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to simplify", + "example_sentence_native": "Debemos simplificar el proceso para que sea más eficiente.", + "example_sentence_english": "We must simplify the process to make it more efficient.", + "pos": "verb", + "word_frequency": 11280 + }, + { + "word": "sinfónico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symphonic", + "example_sentence_native": "La orquesta interpretó una pieza sinfónica.", + "example_sentence_english": "The orchestra performed a symphonic piece.", + "pos": "adjective", + "word_frequency": 11281 + }, + { + "word": "subordinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subordinate", + "example_sentence_native": "El gerente delegó la tarea a su subordinado.", + "example_sentence_english": "The manager delegated the task to his subordinate.", + "pos": "noun", + "word_frequency": 11283 + }, + { + "word": "suplicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beg;to plead", + "example_sentence_native": "Le suplicó que le diera una segunda oportunidad.", + "example_sentence_english": "He begged her to give him a second chance.", + "pos": "verb", + "word_frequency": 11284 + }, + { + "word": "torturar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torture", + "example_sentence_native": "La película mostraba cómo torturaban a los prisioneros.", + "example_sentence_english": "The movie showed how prisoners were tortured.", + "pos": "verb", + "word_frequency": 11287 + }, + { + "word": "traicionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to betray", + "example_sentence_native": "Nunca esperó que su amigo lo fuera a traicionar.", + "example_sentence_english": "He never expected his friend to betray him.", + "pos": "verb", + "word_frequency": 11288 + }, + { + "word": "zen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Zen", + "example_sentence_native": "Practica meditación zen para encontrar la paz interior.", + "example_sentence_english": "He practices Zen meditation to find inner peace.", + "pos": "noun", + "word_frequency": 11292 + }, + { + "word": "óleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil (paint;painting)", + "example_sentence_native": "El artista pintó un hermoso paisaje al óleo.", + "example_sentence_english": "The artist painted a beautiful oil landscape.", + "pos": "noun", + "word_frequency": 11293 + }, + { + "word": "abstinencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstinence;withdrawal", + "example_sentence_native": "Sufrió de síntomas de abstinencia después de dejar de fumar.", + "example_sentence_english": "He suffered from withdrawal symptoms after quitting smoking.", + "pos": "noun", + "word_frequency": 11294 + }, + { + "word": "aleatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "random", + "example_sentence_native": "La selección de números fue completamente aleatoria.", + "example_sentence_english": "The selection of numbers was completely random.", + "pos": "adjective", + "word_frequency": 11295 + }, + { + "word": "amiguito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little friend;pal", + "example_sentence_native": "Mi hijo fue a jugar con su amiguito.", + "example_sentence_english": "My son went to play with his little friend.", + "pos": "noun", + "word_frequency": 11296 + }, + { + "word": "anemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anemia", + "example_sentence_native": "El médico le diagnosticó anemia.", + "example_sentence_english": "The doctor diagnosed her with anemia.", + "pos": "noun", + "word_frequency": 11297 + }, + { + "word": "aplastar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crush;to flatten", + "example_sentence_native": "El coche aplastó la lata de refresco.", + "example_sentence_english": "The car crushed the soda can.", + "pos": "verb", + "word_frequency": 11298 + }, + { + "word": "astronauta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astronaut", + "example_sentence_native": "El astronauta flotó en el espacio.", + "example_sentence_english": "The astronaut floated in space.", + "pos": "noun", + "word_frequency": 11299 + }, + { + "word": "automatización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "automation", + "example_sentence_native": "La automatización ha mejorado la eficiencia de la fábrica.", + "example_sentence_english": "Automation has improved the factory's efficiency.", + "pos": "noun", + "word_frequency": 11300 + }, + { + "word": "bateria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "battery;drum kit", + "example_sentence_native": "La batería del coche está descargada.", + "example_sentence_english": "The car battery is dead.", + "pos": "noun", + "word_frequency": 11302 + }, + { + "word": "bohemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bohemia;bohemianism", + "example_sentence_native": "Llevaba una vida bohemia, llena de arte y libertad.", + "example_sentence_english": "She led a bohemian life, full of art and freedom.", + "pos": "noun", + "word_frequency": 11304 + }, + { + "word": "botánica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botany", + "example_sentence_native": "Estudió botánica en la universidad.", + "example_sentence_english": "She studied botany at the university.", + "pos": "noun", + "word_frequency": 11306 + }, + { + "word": "brindis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toast (celebratory)", + "example_sentence_native": "Levantamos nuestras copas para hacer un brindis por los novios.", + "example_sentence_english": "We raised our glasses to make a toast to the newlyweds.", + "pos": "noun", + "word_frequency": 11307 + }, + { + "word": "buceo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diving;scuba diving", + "example_sentence_native": "Le encanta el buceo en aguas tropicales.", + "example_sentence_english": "He loves diving in tropical waters.", + "pos": "noun", + "word_frequency": 11308 + }, + { + "word": "buzón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mailbox;postbox", + "example_sentence_native": "Deja la carta en el buzón.", + "example_sentence_english": "Leave the letter in the mailbox.", + "pos": "noun", + "word_frequency": 11310 + }, + { + "word": "bíblico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biblical", + "example_sentence_native": "La historia tiene un significado bíblico.", + "example_sentence_english": "The story has a biblical meaning.", + "pos": "adjective", + "word_frequency": 11311 + }, + { + "word": "calabozo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dungeon;jail cell", + "example_sentence_native": "El prisionero fue encerrado en el calabozo.", + "example_sentence_english": "The prisoner was locked in the dungeon.", + "pos": "noun", + "word_frequency": 11313 + }, + { + "word": "calculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calculation;calculus", + "example_sentence_native": "Necesito hacer un cálculo rápido de los gastos.", + "example_sentence_english": "I need to do a quick calculation of the expenses.", + "pos": "noun", + "word_frequency": 11314 + }, + { + "word": "careta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mask", + "example_sentence_native": "Se puso una careta para la fiesta de disfraces.", + "example_sentence_english": "He put on a mask for the costume party.", + "pos": "noun", + "word_frequency": 11315 + }, + { + "word": "cava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cellar;wine cellar;Cava (wine)", + "example_sentence_native": "Bajamos a la cava para elegir una botella de vino.", + "example_sentence_english": "We went down to the cellar to choose a bottle of wine.", + "pos": "noun", + "word_frequency": 11317 + }, + { + "word": "caverna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cavern;cave", + "example_sentence_native": "Exploraron una antigua caverna en las montañas.", + "example_sentence_english": "They explored an ancient cavern in the mountains.", + "pos": "noun", + "word_frequency": 11318 + }, + { + "word": "ciervo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deer", + "example_sentence_native": "Vimos un ciervo en el bosque esta mañana.", + "example_sentence_english": "We saw a deer in the forest this morning.", + "pos": "noun", + "word_frequency": 11321 + }, + { + "word": "cisne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swan", + "example_sentence_native": "El cisne blanco nadaba elegantemente en el lago.", + "example_sentence_english": "The white swan swam elegantly in the lake.", + "pos": "noun", + "word_frequency": 11322 + }, + { + "word": "clemencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clemency;mercy", + "example_sentence_native": "El juez mostró clemencia al acusado.", + "example_sentence_english": "The judge showed clemency to the accused.", + "pos": "noun", + "word_frequency": 11323 + }, + { + "word": "consagración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consecration;dedication", + "example_sentence_native": "La consagración de la nueva iglesia fue un evento solemne.", + "example_sentence_english": "The consecration of the new church was a solemn event.", + "pos": "noun", + "word_frequency": 11324 + }, + { + "word": "contestación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "answer;reply", + "example_sentence_native": "Esperamos su contestación a nuestra propuesta.", + "example_sentence_english": "We await your reply to our proposal.", + "pos": "noun", + "word_frequency": 11326 + }, + { + "word": "cosmético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cosmetic", + "example_sentence_native": "Ella compró un nuevo cosmético para su piel.", + "example_sentence_english": "She bought a new cosmetic for her skin.", + "pos": "noun", + "word_frequency": 11328 + }, + { + "word": "credo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creed;belief", + "example_sentence_native": "Su credo personal se basa en la honestidad y el trabajo duro.", + "example_sentence_english": "His personal creed is based on honesty and hard work.", + "pos": "noun", + "word_frequency": 11329 + }, + { + "word": "cuarzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quartz", + "example_sentence_native": "El reloj tiene un movimiento de cuarzo.", + "example_sentence_english": "The watch has a quartz movement.", + "pos": "noun", + "word_frequency": 11330 + }, + { + "word": "cuchilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blade;razor blade", + "example_sentence_native": "La cuchilla del cuchillo estaba muy afilada.", + "example_sentence_english": "The knife's blade was very sharp.", + "pos": "noun", + "word_frequency": 11332 + }, + { + "word": "cupón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coupon;voucher", + "example_sentence_native": "Usé un cupón para obtener un descuento.", + "example_sentence_english": "I used a coupon to get a discount.", + "pos": "noun", + "word_frequency": 11333 + }, + { + "word": "cáliz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chalice;goblet", + "example_sentence_native": "El sacerdote levantó el cáliz durante la misa.", + "example_sentence_english": "The priest raised the chalice during the mass.", + "pos": "noun", + "word_frequency": 11334 + }, + { + "word": "desbloquear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unlock;to unblock", + "example_sentence_native": "Necesito desbloquear mi teléfono con la contraseña.", + "example_sentence_english": "I need to unlock my phone with the password.", + "pos": "verb", + "word_frequency": 11336 + }, + { + "word": "descarado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheeky;brazen;shameless", + "example_sentence_native": "Su respuesta fue muy descarada.", + "example_sentence_english": "His answer was very cheeky.", + "pos": "adjective", + "word_frequency": 11337 + }, + { + "word": "destacable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remarkable;noteworthy", + "example_sentence_native": "Su actuación fue realmente destacable.", + "example_sentence_english": "His performance was truly remarkable.", + "pos": "adjective", + "word_frequency": 11338 + }, + { + "word": "destrozar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destroy;to smash", + "example_sentence_native": "El viento destrozó el tejado de la casa.", + "example_sentence_english": "The wind destroyed the house's roof.", + "pos": "verb", + "word_frequency": 11339 + }, + { + "word": "distar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be distant;to differ", + "example_sentence_native": "La ciudad dista mucho de ser perfecta.", + "example_sentence_english": "The city is far from perfect.", + "pos": "verb", + "word_frequency": 11341 + }, + { + "word": "dogma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dogma", + "example_sentence_native": "La iglesia enseña sus dogmas a los fieles.", + "example_sentence_english": "The church teaches its dogmas to the faithful.", + "pos": "noun", + "word_frequency": 11342 + }, + { + "word": "ecologista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmentalist;ecologist", + "example_sentence_native": "Mi hermana es una ecologista muy comprometida.", + "example_sentence_english": "My sister is a very committed environmentalist.", + "pos": "noun", + "word_frequency": 11345 + }, + { + "word": "ejercitar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to exercise;to practice", + "example_sentence_native": "Es importante ejercitarse regularmente para mantenerse sano.", + "example_sentence_english": "It's important to exercise regularly to stay healthy.", + "pos": "verb", + "word_frequency": 11347 + }, + { + "word": "eliminatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eliminatory;qualifying", + "example_sentence_native": "Esta es la fase eliminatoria del torneo.", + "example_sentence_english": "This is the eliminatory phase of the tournament.", + "pos": "adjective", + "word_frequency": 11348 + }, + { + "word": "embalse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reservoir;dam", + "example_sentence_native": "El embalse suministra agua a toda la ciudad.", + "example_sentence_english": "The reservoir supplies water to the entire city.", + "pos": "noun", + "word_frequency": 11349 + }, + { + "word": "emir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emir", + "example_sentence_native": "El emir visitó el país vecino.", + "example_sentence_english": "The emir visited the neighboring country.", + "pos": "noun", + "word_frequency": 11350 + }, + { + "word": "escribano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scribe;notary (public)", + "example_sentence_native": "El escribano redactó el documento legal.", + "example_sentence_english": "The scribe drafted the legal document.", + "pos": "noun", + "word_frequency": 11352 + }, + { + "word": "escudero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squire", + "example_sentence_native": "El escudero acompañó al caballero en su aventura.", + "example_sentence_english": "The squire accompanied the knight on his adventure.", + "pos": "noun", + "word_frequency": 11353 + }, + { + "word": "especular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speculate;to reflect", + "example_sentence_native": "No me gusta especular sobre el futuro.", + "example_sentence_english": "I don't like to speculate about the future.", + "pos": "verb", + "word_frequency": 11354 + }, + { + "word": "estimulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulation", + "example_sentence_native": "La estimulación temprana es importante para los niños.", + "example_sentence_english": "Early stimulation is important for children.", + "pos": "noun", + "word_frequency": 11355 + }, + { + "word": "evocar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evoke;to recall", + "example_sentence_native": "Esa canción siempre me evoca recuerdos de mi infancia.", + "example_sentence_english": "That song always evokes memories of my childhood.", + "pos": "verb", + "word_frequency": 11356 + }, + { + "word": "exportador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exporter", + "example_sentence_native": "España es un gran exportador de aceite de oliva.", + "example_sentence_english": "Spain is a large exporter of olive oil.", + "pos": "noun", + "word_frequency": 11357 + }, + { + "word": "fraile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friar", + "example_sentence_native": "El fraile vivía en el monasterio.", + "example_sentence_english": "The friar lived in the monastery.", + "pos": "noun", + "word_frequency": 11363 + }, + { + "word": "fundado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founded", + "example_sentence_native": "Su opinión está bien fundada.", + "example_sentence_english": "His opinion is well-founded.", + "pos": "adjective", + "word_frequency": 11364 + }, + { + "word": "furor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fury", + "example_sentence_native": "La noticia causó furor entre la gente.", + "example_sentence_english": "The news caused a furor among the people.", + "pos": "noun", + "word_frequency": 11365 + }, + { + "word": "gordito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chubby", + "example_sentence_native": "El bebé es muy gordito y adorable.", + "example_sentence_english": "The baby is very chubby and adorable.", + "pos": "adjective", + "word_frequency": 11371 + }, + { + "word": "granjero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farmer", + "example_sentence_native": "El granjero trabaja en el campo.", + "example_sentence_english": "The farmer works in the field.", + "pos": "noun", + "word_frequency": 11372 + }, + { + "word": "gurú", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guru", + "example_sentence_native": "Es considerado un gurú en su campo.", + "example_sentence_english": "He is considered a guru in his field.", + "pos": "noun", + "word_frequency": 11373 + }, + { + "word": "hispánico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hispanic", + "example_sentence_native": "La cultura hispánica es muy rica.", + "example_sentence_english": "Hispanic culture is very rich.", + "pos": "adjective", + "word_frequency": 11375 + }, + { + "word": "histeria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hysteria", + "example_sentence_native": "La noticia causó una histeria colectiva.", + "example_sentence_english": "The news caused collective hysteria.", + "pos": "noun", + "word_frequency": 11376 + }, + { + "word": "idealista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idealistic", + "example_sentence_native": "Es una persona muy idealista.", + "example_sentence_english": "He is a very idealistic person.", + "pos": "adjective", + "word_frequency": 11377 + }, + { + "word": "inadecuado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inadequate", + "example_sentence_native": "Su comportamiento fue inadecuado.", + "example_sentence_english": "His behavior was inappropriate.", + "pos": "adjective", + "word_frequency": 11378 + }, + { + "word": "incomprensible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incomprehensible", + "example_sentence_native": "El texto era incomprensible para mí.", + "example_sentence_english": "The text was incomprehensible to me.", + "pos": "adjective", + "word_frequency": 11379 + }, + { + "word": "indecente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indecent", + "example_sentence_native": "Hizo un comentario indecente.", + "example_sentence_english": "He made an indecent comment.", + "pos": "adjective", + "word_frequency": 11380 + }, + { + "word": "infografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infographic", + "example_sentence_native": "La infografía explica los datos visualmente.", + "example_sentence_english": "The infographic explains the data visually.", + "pos": "noun", + "word_frequency": 11382 + }, + { + "word": "intolerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerable", + "example_sentence_native": "El ruido era intolerable.", + "example_sentence_english": "The noise was intolerable.", + "pos": "adjective", + "word_frequency": 11383 + }, + { + "word": "invernal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wintery", + "example_sentence_native": "Disfruto del paisaje invernal.", + "example_sentence_english": "I enjoy the wintery landscape.", + "pos": "adjective", + "word_frequency": 11384 + }, + { + "word": "invicto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undefeated", + "example_sentence_native": "El equipo se mantuvo invicto toda la temporada.", + "example_sentence_english": "The team remained undefeated all season.", + "pos": "adjective", + "word_frequency": 11385 + }, + { + "word": "karate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "karate", + "example_sentence_native": "Practica karate desde niño.", + "example_sentence_english": "He has practiced karate since he was a child.", + "pos": "noun", + "word_frequency": 11389 + }, + { + "word": "lagarto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lizard", + "example_sentence_native": "Vimos un lagarto tomando el sol.", + "example_sentence_english": "We saw a lizard sunbathing.", + "pos": "noun", + "word_frequency": 11391 + }, + { + "word": "legislar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legislate", + "example_sentence_native": "El parlamento debe legislar sobre este asunto.", + "example_sentence_english": "The parliament must legislate on this matter.", + "pos": "verb", + "word_frequency": 11392 + }, + { + "word": "lila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lilac", + "example_sentence_native": "Compró una camisa de color lila.", + "example_sentence_english": "She bought a lilac-colored shirt.", + "pos": "adjective", + "word_frequency": 11393 + }, + { + "word": "macizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solid", + "example_sentence_native": "La mesa es de madera maciza.", + "example_sentence_english": "The table is made of solid wood.", + "pos": "adjective", + "word_frequency": 11395 + }, + { + "word": "mantenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintained", + "example_sentence_native": "El coche está bien mantenido.", + "example_sentence_english": "The car is well maintained.", + "pos": "adjective", + "word_frequency": 11397 + }, + { + "word": "mayúscula", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "uppercase", + "example_sentence_native": "Escribe la primera letra en mayúscula.", + "example_sentence_english": "Write the first letter in uppercase.", + "pos": "adjective", + "word_frequency": 11399 + }, + { + "word": "medido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measured;moderate", + "example_sentence_native": "Su respuesta fue muy medida y cuidadosa.", + "example_sentence_english": "His response was very measured and careful.", + "pos": "adjective", + "word_frequency": 11400 + }, + { + "word": "mestizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mestizo (person of mixed European and indigenous descent)", + "example_sentence_native": "La cultura mestiza es rica y diversa.", + "example_sentence_english": "Mestizo culture is rich and diverse.", + "pos": "noun", + "word_frequency": 11401 + }, + { + "word": "mitigar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to mitigate;to alleviate", + "example_sentence_native": "Intentaron mitigar los efectos de la sequía.", + "example_sentence_english": "They tried to mitigate the effects of the drought.", + "pos": "verb", + "word_frequency": 11403 + }, + { + "word": "motel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motel", + "example_sentence_native": "Nos quedamos en un motel en la carretera.", + "example_sentence_english": "We stayed at a motel on the highway.", + "pos": "noun", + "word_frequency": 11406 + }, + { + "word": "mugre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grime;dirt", + "example_sentence_native": "Había mucha mugre debajo de la cama.", + "example_sentence_english": "There was a lot of grime under the bed.", + "pos": "noun", + "word_frequency": 11407 + }, + { + "word": "necio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolish;stubborn", + "example_sentence_native": "Es necio insistir en algo que no tiene solución.", + "example_sentence_english": "It's foolish to insist on something that has no solution.", + "pos": "adjective", + "word_frequency": 11411 + }, + { + "word": "nefasto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disastrous;ill-fated", + "example_sentence_native": "Fue un día nefasto para la economía.", + "example_sentence_english": "It was a disastrous day for the economy.", + "pos": "adjective", + "word_frequency": 11412 + }, + { + "word": "negrita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bold (text);dark-skinned (feminine)", + "example_sentence_native": "Escribe el título en negrita.", + "example_sentence_english": "Write the title in bold.", + "pos": "adjective", + "word_frequency": 11413 + }, + { + "word": "oscilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oscillate;to swing;to fluctuate", + "example_sentence_native": "Los precios del petróleo suelen oscilar.", + "example_sentence_english": "Oil prices tend to fluctuate.", + "pos": "verb", + "word_frequency": 11416 + }, + { + "word": "partidista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partisan;biased", + "example_sentence_native": "Su opinión era claramente partidista.", + "example_sentence_english": "His opinion was clearly partisan.", + "pos": "adjective", + "word_frequency": 11417 + }, + { + "word": "pegamento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glue;adhesive", + "example_sentence_native": "Usa pegamento para arreglar el jarrón.", + "example_sentence_english": "Use glue to fix the vase.", + "pos": "noun", + "word_frequency": 11419 + }, + { + "word": "plantado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planted;stood (firmly)", + "example_sentence_native": "El árbol está bien plantado en el jardín.", + "example_sentence_english": "The tree is well planted in the garden.", + "pos": "adjective", + "word_frequency": 11422 + }, + { + "word": "precisar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to specify;to need;to require", + "example_sentence_native": "Necesito precisar la fecha de la reunión.", + "example_sentence_english": "I need to specify the date of the meeting.", + "pos": "verb", + "word_frequency": 11424 + }, + { + "word": "predominio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predominance;prevalence", + "example_sentence_native": "Hubo un claro predominio del equipo local.", + "example_sentence_english": "There was a clear predominance of the home team.", + "pos": "noun", + "word_frequency": 11425 + }, + { + "word": "preescolar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preschool", + "example_sentence_native": "Mi hijo va a la educación preescolar.", + "example_sentence_english": "My son goes to preschool education.", + "pos": "adjective", + "word_frequency": 11426 + }, + { + "word": "presion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pressure", + "example_sentence_native": "Siento mucha presión en el trabajo.", + "example_sentence_english": "I feel a lot of pressure at work.", + "pos": "noun", + "word_frequency": 11427 + }, + { + "word": "prioritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priority;preferential", + "example_sentence_native": "Este es un asunto prioritario para el gobierno.", + "example_sentence_english": "This is a priority matter for the government.", + "pos": "adjective", + "word_frequency": 11428 + }, + { + "word": "promulgación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "promulgation;enactment", + "example_sentence_native": "La promulgación de la nueva ley fue un hito.", + "example_sentence_english": "The promulgation of the new law was a milestone.", + "pos": "noun", + "word_frequency": 11429 + }, + { + "word": "puntualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctually;precisely", + "example_sentence_native": "Llegó puntualmente a la cita.", + "example_sentence_english": "He arrived punctually for the appointment.", + "pos": "adverb", + "word_frequency": 11431 + }, + { + "word": "refrigerador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator", + "example_sentence_native": "Guarda la leche en el refrigerador.", + "example_sentence_english": "Keep the milk in the refrigerator.", + "pos": "noun", + "word_frequency": 11432 + }, + { + "word": "regio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royal;splendid;magnificent", + "example_sentence_native": "La vista desde la montaña era regia.", + "example_sentence_english": "The view from the mountain was splendid.", + "pos": "adjective", + "word_frequency": 11433 + }, + { + "word": "reposición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "replacement;replenishment;re-run (of a show)", + "example_sentence_native": "Necesitamos la reposición de existencias.", + "example_sentence_english": "We need stock replenishment.", + "pos": "noun", + "word_frequency": 11434 + }, + { + "word": "robusto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robust;sturdy;strong", + "example_sentence_native": "El mueble es muy robusto y duradero.", + "example_sentence_english": "The furniture is very robust and durable.", + "pos": "adjective", + "word_frequency": 11436 + }, + { + "word": "salvadoreño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Salvadoran", + "example_sentence_native": "Mi amigo es salvadoreño.", + "example_sentence_english": "My friend is Salvadoran.", + "pos": "adjective", + "word_frequency": 11438 + }, + { + "word": "seducción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seduction", + "example_sentence_native": "El arte de la seducción es complejo.", + "example_sentence_english": "The art of seduction is complex.", + "pos": "noun", + "word_frequency": 11439 + }, + { + "word": "septentrional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "northern", + "example_sentence_native": "La región septentrional del país es conocida por sus montañas.", + "example_sentence_english": "The northern region of the country is known for its mountains.", + "pos": "adjective", + "word_frequency": 11441 + }, + { + "word": "simular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to simulate;to feign", + "example_sentence_native": "El actor tuvo que simular dolor en la escena.", + "example_sentence_english": "The actor had to simulate pain in the scene.", + "pos": "verb", + "word_frequency": 11442 + }, + { + "word": "singularidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "singularity;uniqueness", + "example_sentence_native": "Cada persona tiene su propia singularidad.", + "example_sentence_english": "Every person has their own uniqueness.", + "pos": "noun", + "word_frequency": 11443 + }, + { + "word": "sirviente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "servant", + "example_sentence_native": "El sirviente abrió la puerta principal.", + "example_sentence_english": "The servant opened the main door.", + "pos": "noun", + "word_frequency": 11444 + }, + { + "word": "sobrepeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overweight", + "example_sentence_native": "El médico le aconsejó perder el sobrepeso.", + "example_sentence_english": "The doctor advised him to lose the overweight.", + "pos": "noun", + "word_frequency": 11445 + }, + { + "word": "tempestad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storm;tempest", + "example_sentence_native": "La tempestad causó muchos daños en la costa.", + "example_sentence_english": "The storm caused a lot of damage on the coast.", + "pos": "noun", + "word_frequency": 11452 + }, + { + "word": "textual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "textual;verbatim", + "example_sentence_native": "La cita es textual, palabra por palabra.", + "example_sentence_english": "The quote is textual, word for word.", + "pos": "adjective", + "word_frequency": 11453 + }, + { + "word": "tostada", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toast", + "example_sentence_native": "Me gusta desayunar tostadas con mermelada.", + "example_sentence_english": "I like to have toast with jam for breakfast.", + "pos": "noun", + "word_frequency": 11454 + }, + { + "word": "tramitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to process;to handle (a procedure)", + "example_sentence_native": "Necesito tramitar mi pasaporte nuevo.", + "example_sentence_english": "I need to process my new passport.", + "pos": "verb", + "word_frequency": 11455 + }, + { + "word": "transnacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transnational", + "example_sentence_native": "Las empresas transnacionales operan en varios países.", + "example_sentence_english": "Transnational companies operate in several countries.", + "pos": "adjective", + "word_frequency": 11456 + }, + { + "word": "trio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trio", + "example_sentence_native": "El trio musical tocó una hermosa melodía.", + "example_sentence_english": "The musical trio played a beautiful melody.", + "pos": "noun", + "word_frequency": 11457 + }, + { + "word": "venado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deer", + "example_sentence_native": "Vimos un venado en el bosque.", + "example_sentence_english": "We saw a deer in the forest.", + "pos": "noun", + "word_frequency": 11460 + }, + { + "word": "venida", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avenue;coming;arrival", + "example_sentence_native": "La Gran Vía es una avenida famosa en Madrid.", + "example_sentence_english": "Gran Vía is a famous avenue in Madrid.", + "pos": "noun", + "word_frequency": 11461 + }, + { + "word": "vinculante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "binding", + "example_sentence_native": "La decisión del tribunal es vinculante.", + "example_sentence_english": "The court's decision is binding.", + "pos": "adjective", + "word_frequency": 11462 + }, + { + "word": "viudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widower", + "example_sentence_native": "Mi abuelo es viudo desde hace diez años.", + "example_sentence_english": "My grandfather has been a widower for ten years.", + "pos": "noun", + "word_frequency": 11463 + }, + { + "word": "voleibol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volleyball", + "example_sentence_native": "Jugamos voleibol en la playa.", + "example_sentence_english": "We played volleyball on the beach.", + "pos": "noun", + "word_frequency": 11464 + }, + { + "word": "adepto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adept;follower", + "example_sentence_native": "Es un adepto a las nuevas tecnologías.", + "example_sentence_english": "He is a follower of new technologies.", + "pos": "noun", + "word_frequency": 11471 + }, + { + "word": "adulterio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adultery", + "example_sentence_native": "El adulterio es considerado una ofensa grave en algunas culturas.", + "example_sentence_english": "Adultery is considered a serious offense in some cultures.", + "pos": "noun", + "word_frequency": 11472 + }, + { + "word": "afectación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affectation;impact;damage", + "example_sentence_native": "La afectación emocional fue profunda.", + "example_sentence_english": "The emotional impact was profound.", + "pos": "noun", + "word_frequency": 11474 + }, + { + "word": "ametralladora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machine gun", + "example_sentence_native": "El soldado llevaba una ametralladora.", + "example_sentence_english": "The soldier carried a machine gun.", + "pos": "noun", + "word_frequency": 11478 + }, + { + "word": "anticipo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advance;down payment", + "example_sentence_native": "Recibí un anticipo de mi salario.", + "example_sentence_english": "I received an advance on my salary.", + "pos": "noun", + "word_frequency": 11479 + }, + { + "word": "asfixia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asphyxia", + "example_sentence_native": "La falta de oxígeno puede causar asfixia.", + "example_sentence_english": "Lack of oxygen can cause asphyxia.", + "pos": "noun", + "word_frequency": 11482 + }, + { + "word": "asombrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to astonish", + "example_sentence_native": "Su talento para el canto me asombró.", + "example_sentence_english": "Her singing talent astonished me.", + "pos": "verb", + "word_frequency": 11483 + }, + { + "word": "astuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astute", + "example_sentence_native": "El zorro es un animal muy astuto.", + "example_sentence_english": "The fox is a very cunning animal.", + "pos": "adjective", + "word_frequency": 11484 + }, + { + "word": "avecinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to approach", + "example_sentence_native": "Se avecina una tormenta.", + "example_sentence_english": "A storm is approaching.", + "pos": "verb", + "word_frequency": 11486 + }, + { + "word": "bajista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bassist", + "example_sentence_native": "El bajista de la banda es excelente.", + "example_sentence_english": "The band's bassist is excellent.", + "pos": "noun", + "word_frequency": 11487 + }, + { + "word": "balsa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raft", + "example_sentence_native": "Cruzaron el río en una balsa improvisada.", + "example_sentence_english": "They crossed the river on an improvised raft.", + "pos": "noun", + "word_frequency": 11488 + }, + { + "word": "bañar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to bathe", + "example_sentence_native": "Me gusta bañar a mi perro una vez al mes.", + "example_sentence_english": "I like to bathe my dog once a month.", + "pos": "verb", + "word_frequency": 11489 + }, + { + "word": "beat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beat", + "example_sentence_native": "El beat de esta canción es muy pegadizo.", + "example_sentence_english": "The beat of this song is very catchy.", + "pos": "noun", + "word_frequency": 11490 + }, + { + "word": "bocina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn", + "example_sentence_native": "Tocó la bocina para avisar que llegaba.", + "example_sentence_english": "He honked the horn to announce his arrival.", + "pos": "noun", + "word_frequency": 11493 + }, + { + "word": "bowl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bowl", + "example_sentence_native": "Sirvió la sopa en un bowl grande.", + "example_sentence_english": "He served the soup in a large bowl.", + "pos": "noun", + "word_frequency": 11494 + }, + { + "word": "bucle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loop", + "example_sentence_native": "Su cabello tiene bucles naturales.", + "example_sentence_english": "Her hair has natural curls.", + "pos": "noun", + "word_frequency": 11496 + }, + { + "word": "bula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papal bull", + "example_sentence_native": "El Papa emitió una bula importante.", + "example_sentence_english": "The Pope issued an important bull.", + "pos": "noun", + "word_frequency": 11497 + }, + { + "word": "butler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butler", + "example_sentence_native": "El butler de la casa nos atendió muy bien.", + "example_sentence_english": "The house's butler attended to us very well.", + "pos": "noun", + "word_frequency": 11498 + }, + { + "word": "cactus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cactus", + "example_sentence_native": "El cactus es una planta del desierto.", + "example_sentence_english": "The cactus is a desert plant.", + "pos": "noun", + "word_frequency": 11500 + }, + { + "word": "caducidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expiration", + "example_sentence_native": "Revisa la fecha de caducidad del producto.", + "example_sentence_english": "Check the product's expiration date.", + "pos": "noun", + "word_frequency": 11501 + }, + { + "word": "canalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to channel", + "example_sentence_native": "Necesitamos canalizar nuestros esfuerzos.", + "example_sentence_english": "We need to channel our efforts.", + "pos": "verb", + "word_frequency": 11502 + }, + { + "word": "caracterizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characterized", + "example_sentence_native": "Es un artista caracterizado por su originalidad.", + "example_sentence_english": "He is an artist characterized by his originality.", + "pos": "adjective", + "word_frequency": 11504 + }, + { + "word": "carbohidrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carbohydrate", + "example_sentence_native": "Los carbohidratos son una fuente de energía.", + "example_sentence_english": "Carbohydrates are a source of energy.", + "pos": "noun", + "word_frequency": 11505 + }, + { + "word": "chic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chic", + "example_sentence_native": "Ese vestido es muy chic.", + "example_sentence_english": "That dress is very chic.", + "pos": "adjective", + "word_frequency": 11509 + }, + { + "word": "colateral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collateral", + "example_sentence_native": "Hubo daños colaterales en el accidente.", + "example_sentence_english": "There was collateral damage in the accident.", + "pos": "adjective", + "word_frequency": 11511 + }, + { + "word": "coloración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coloring", + "example_sentence_native": "La coloración de su cabello es natural.", + "example_sentence_english": "Her hair coloring is natural.", + "pos": "noun", + "word_frequency": 11512 + }, + { + "word": "copado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cool", + "example_sentence_native": "Esa fiesta estuvo muy copada.", + "example_sentence_english": "That party was really cool.", + "pos": "adjective", + "word_frequency": 11515 + }, + { + "word": "culata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buttstock", + "example_sentence_native": "La culata del rifle es de madera.", + "example_sentence_english": "The rifle's buttstock is made of wood.", + "pos": "noun", + "word_frequency": 11516 + }, + { + "word": "despensa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pantry", + "example_sentence_native": "La despensa está llena de comida.", + "example_sentence_english": "The pantry is full of food.", + "pos": "noun", + "word_frequency": 11520 + }, + { + "word": "destinatario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recipient", + "example_sentence_native": "El nombre del destinatario está en el paquete.", + "example_sentence_english": "The recipient's name is on the package.", + "pos": "noun", + "word_frequency": 11521 + }, + { + "word": "discutible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debatable", + "example_sentence_native": "Su argumento es muy discutible.", + "example_sentence_english": "His argument is very debatable.", + "pos": "adjective", + "word_frequency": 11522 + }, + { + "word": "diva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diva", + "example_sentence_native": "La cantante es una verdadera diva.", + "example_sentence_english": "The singer is a true diva.", + "pos": "noun", + "word_frequency": 11523 + }, + { + "word": "embrión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embryo", + "example_sentence_native": "El embrión se desarrolla rápidamente.", + "example_sentence_english": "The embryo develops rapidly.", + "pos": "noun", + "word_frequency": 11525 + }, + { + "word": "encubierto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undercover;covert", + "example_sentence_native": "La operación fue encubierta.", + "example_sentence_english": "The operation was covert.", + "pos": "adjective", + "word_frequency": 11526 + }, + { + "word": "envenenamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoning", + "example_sentence_native": "Hubo un caso de envenenamiento por alimentos.", + "example_sentence_english": "There was a case of food poisoning.", + "pos": "noun", + "word_frequency": 11527 + }, + { + "word": "erradicación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eradication", + "example_sentence_native": "La erradicación de la enfermedad es el objetivo.", + "example_sentence_english": "The eradication of the disease is the goal.", + "pos": "noun", + "word_frequency": 11529 + }, + { + "word": "escriba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scribe", + "example_sentence_native": "El escriba transcribió el manuscrito.", + "example_sentence_english": "The scribe transcribed the manuscript.", + "pos": "noun", + "word_frequency": 11530 + }, + { + "word": "estabilización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stabilization", + "example_sentence_native": "La estabilización de la economía es crucial.", + "example_sentence_english": "The stabilization of the economy is crucial.", + "pos": "noun", + "word_frequency": 11532 + }, + { + "word": "estacion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "station;season", + "example_sentence_native": "La estación de tren está cerca.", + "example_sentence_english": "The train station is nearby.", + "pos": "noun", + "word_frequency": 11533 + }, + { + "word": "estéril", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterile", + "example_sentence_native": "El equipo médico debe ser estéril.", + "example_sentence_english": "The medical equipment must be sterile.", + "pos": "adjective", + "word_frequency": 11535 + }, + { + "word": "exagerar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exaggerate", + "example_sentence_native": "No debes exagerar la situación.", + "example_sentence_english": "You shouldn't exaggerate the situation.", + "pos": "verb", + "word_frequency": 11537 + }, + { + "word": "exento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exempt", + "example_sentence_native": "Está exento de impuestos.", + "example_sentence_english": "He is exempt from taxes.", + "pos": "adjective", + "word_frequency": 11539 + }, + { + "word": "exponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exponent;representative", + "example_sentence_native": "Es un exponente clave de la nueva teoría.", + "example_sentence_english": "He is a key exponent of the new theory.", + "pos": "noun", + "word_frequency": 11540 + }, + { + "word": "faja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sash;girdle;band", + "example_sentence_native": "Llevaba una faja para el dolor de espalda.", + "example_sentence_english": "She wore a back brace for back pain.", + "pos": "noun", + "word_frequency": 11541 + }, + { + "word": "fervor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fervor", + "example_sentence_native": "Habló con gran fervor sobre sus creencias.", + "example_sentence_english": "He spoke with great fervor about his beliefs.", + "pos": "noun", + "word_frequency": 11542 + }, + { + "word": "fideicomiso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trust (legal;financial)", + "example_sentence_native": "Establecieron un fideicomiso para sus hijos.", + "example_sentence_english": "They established a trust for their children.", + "pos": "noun", + "word_frequency": 11543 + }, + { + "word": "grifo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tap;faucet", + "example_sentence_native": "El grifo gotea.", + "example_sentence_english": "The tap is dripping.", + "pos": "noun", + "word_frequency": 11548 + }, + { + "word": "habilitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enable;to qualify", + "example_sentence_native": "Debes habilitar la opción en la configuración.", + "example_sentence_english": "You must enable the option in the settings.", + "pos": "verb", + "word_frequency": 11550 + }, + { + "word": "hackear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hack", + "example_sentence_native": "Intentaron hackear mi cuenta.", + "example_sentence_english": "They tried to hack my account.", + "pos": "verb", + "word_frequency": 11551 + }, + { + "word": "hetero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterosexual", + "example_sentence_native": "Es una persona hetero.", + "example_sentence_english": "He/She is a heterosexual person.", + "pos": "adjective", + "word_frequency": 11553 + }, + { + "word": "humanismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanism", + "example_sentence_native": "El Renacimiento fue una época de gran humanismo.", + "example_sentence_english": "The Renaissance was a time of great humanism.", + "pos": "noun", + "word_frequency": 11554 + }, + { + "word": "ideado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devised;conceived", + "example_sentence_native": "El plan ideado por el equipo fue un éxito.", + "example_sentence_english": "The plan devised by the team was a success.", + "pos": "adjective", + "word_frequency": 11555 + }, + { + "word": "ilegalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegality", + "example_sentence_native": "La empresa operaba en la ilegalidad.", + "example_sentence_english": "The company operated in illegality.", + "pos": "noun", + "word_frequency": 11556 + }, + { + "word": "inapropiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inappropriate", + "example_sentence_native": "Su comentario fue inapropiado.", + "example_sentence_english": "His comment was inappropriate.", + "pos": "adjective", + "word_frequency": 11557 + }, + { + "word": "incomodar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inconvenience;to make uncomfortable", + "example_sentence_native": "No quiero incomodarte con mis preguntas.", + "example_sentence_english": "I don't want to inconvenience you with my questions.", + "pos": "verb", + "word_frequency": 11558 + }, + { + "word": "inducción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "induction", + "example_sentence_native": "La inducción al puesto fue muy completa.", + "example_sentence_english": "The induction to the position was very thorough.", + "pos": "noun", + "word_frequency": 11559 + }, + { + "word": "infiltrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infiltrator", + "example_sentence_native": "Descubrieron que había un infiltrado en la organización.", + "example_sentence_english": "They discovered there was an infiltrator in the organization.", + "pos": "noun", + "word_frequency": 11560 + }, + { + "word": "inofensivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmless", + "example_sentence_native": "El perro parecía grande, pero era completamente inofensivo.", + "example_sentence_english": "The dog looked big, but it was completely harmless.", + "pos": "adjective", + "word_frequency": 11561 + }, + { + "word": "insertar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insert", + "example_sentence_native": "Debes insertar la tarjeta en la ranura.", + "example_sentence_english": "You must insert the card into the slot.", + "pos": "verb", + "word_frequency": 11562 + }, + { + "word": "ladera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hillside;slope", + "example_sentence_native": "La casa está construida en la ladera de la montaña.", + "example_sentence_english": "The house is built on the hillside of the mountain.", + "pos": "noun", + "word_frequency": 11566 + }, + { + "word": "lis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lily (fleur-de-lis)", + "example_sentence_native": "El escudo de armas tenía una flor de lis.", + "example_sentence_english": "The coat of arms had a fleur-de-lis.", + "pos": "noun", + "word_frequency": 11567 + }, + { + "word": "malicia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malice;ill will", + "example_sentence_native": "No había malicia en sus palabras, solo un malentendido.", + "example_sentence_english": "There was no malice in his words, just a misunderstanding.", + "pos": "noun", + "word_frequency": 11569 + }, + { + "word": "mamar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suckle;to suck", + "example_sentence_native": "El bebé empezó a mamar de su madre.", + "example_sentence_english": "The baby started to suckle from its mother.", + "pos": "verb", + "word_frequency": 11570 + }, + { + "word": "manantial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spring (of water)", + "example_sentence_native": "Encontramos un manantial de agua fresca en el bosque.", + "example_sentence_english": "We found a spring of fresh water in the forest.", + "pos": "noun", + "word_frequency": 11571 + }, + { + "word": "mediador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediator", + "example_sentence_native": "Necesitamos un mediador para resolver el conflicto.", + "example_sentence_english": "We need a mediator to resolve the conflict.", + "pos": "noun", + "word_frequency": 11573 + }, + { + "word": "mision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mission", + "example_sentence_native": "Su misión era entregar el paquete a tiempo.", + "example_sentence_english": "His mission was to deliver the package on time.", + "pos": "noun", + "word_frequency": 11576 + }, + { + "word": "monólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monologue", + "example_sentence_native": "El actor interpretó un monólogo muy emotivo.", + "example_sentence_english": "The actor performed a very emotional monologue.", + "pos": "noun", + "word_frequency": 11577 + }, + { + "word": "murciélago", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bat (animal)", + "example_sentence_native": "Vimos un murciélago volando al anochecer.", + "example_sentence_english": "We saw a bat flying at dusk.", + "pos": "noun", + "word_frequency": 11579 + }, + { + "word": "nasal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nasal", + "example_sentence_native": "Tiene una voz muy nasal.", + "example_sentence_english": "He has a very nasal voice.", + "pos": "adjective", + "word_frequency": 11580 + }, + { + "word": "natura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nature", + "example_sentence_native": "La belleza de la natura es innegable.", + "example_sentence_english": "The beauty of nature is undeniable.", + "pos": "noun", + "word_frequency": 11581 + }, + { + "word": "neumonía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pneumonia", + "example_sentence_native": "Fue hospitalizado con neumonía.", + "example_sentence_english": "He was hospitalized with pneumonia.", + "pos": "noun", + "word_frequency": 11582 + }, + { + "word": "nordeste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northeast", + "example_sentence_native": "El viento sopla del nordeste.", + "example_sentence_english": "The wind blows from the northeast.", + "pos": "noun", + "word_frequency": 11584 + }, + { + "word": "ocurrencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurrence;idea;witticism", + "example_sentence_native": "Tuvo una ocurrencia muy divertida.", + "example_sentence_english": "He had a very funny idea/witticism.", + "pos": "noun", + "word_frequency": 11586 + }, + { + "word": "oposicion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposition", + "example_sentence_native": "El partido de oposición criticó la nueva ley.", + "example_sentence_english": "The opposition party criticized the new law.", + "pos": "noun", + "word_frequency": 11587 + }, + { + "word": "oprimido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppressed", + "example_sentence_native": "La gente oprimida luchó por su libertad.", + "example_sentence_english": "The oppressed people fought for their freedom.", + "pos": "adjective", + "word_frequency": 11588 + }, + { + "word": "paisano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countryman;fellow countryman", + "example_sentence_native": "Encontró a un paisano suyo en el extranjero.", + "example_sentence_english": "He found a fellow countryman of his abroad.", + "pos": "noun", + "word_frequency": 11589 + }, + { + "word": "paradójicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradoxically", + "example_sentence_native": "Paradójicamente, el silencio era más ruidoso que el grito.", + "example_sentence_english": "Paradoxically, the silence was louder than the scream.", + "pos": "adverb", + "word_frequency": 11590 + }, + { + "word": "pedestal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedestal", + "example_sentence_native": "La estatua se alzaba sobre un alto pedestal.", + "example_sentence_english": "The statue stood on a high pedestal.", + "pos": "noun", + "word_frequency": 11592 + }, + { + "word": "persuadir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persuade", + "example_sentence_native": "Intentó persuadirla para que cambiara de opinión.", + "example_sentence_english": "He tried to persuade her to change her mind.", + "pos": "verb", + "word_frequency": 11594 + }, + { + "word": "pliego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheet (of paper);fold", + "example_sentence_native": "Entregó un pliego de peticiones al director.", + "example_sentence_english": "He handed a sheet of requests to the director.", + "pos": "noun", + "word_frequency": 11596 + }, + { + "word": "portería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goal (soccer);goalpost;lodge (concierge's office)", + "example_sentence_native": "El delantero marcó un gol en la portería vacía.", + "example_sentence_english": "The forward scored a goal in the empty net.", + "pos": "noun", + "word_frequency": 11599 + }, + { + "word": "postear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to post", + "example_sentence_native": "Voy a postear una foto en mis redes sociales.", + "example_sentence_english": "I'm going to post a photo on my social media.", + "pos": "verb", + "word_frequency": 11600 + }, + { + "word": "prevalecer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prevail", + "example_sentence_native": "La justicia debe prevalecer.", + "example_sentence_english": "Justice must prevail.", + "pos": "verb", + "word_frequency": 11602 + }, + { + "word": "prevalencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevalence", + "example_sentence_native": "La prevalencia de la enfermedad ha disminuido.", + "example_sentence_english": "The prevalence of the disease has decreased.", + "pos": "noun", + "word_frequency": 11603 + }, + { + "word": "prolongación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prolongation;extension", + "example_sentence_native": "Se solicitó una prolongación del plazo.", + "example_sentence_english": "An extension of the deadline was requested.", + "pos": "noun", + "word_frequency": 11604 + }, + { + "word": "propicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propitious;favorable", + "example_sentence_native": "Este es un momento propicio para invertir.", + "example_sentence_english": "This is a propitious moment to invest.", + "pos": "adjective", + "word_frequency": 11605 + }, + { + "word": "prosperar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prosper;to thrive", + "example_sentence_native": "Esperamos que el negocio prospere.", + "example_sentence_english": "We hope the business prospers.", + "pos": "verb", + "word_frequency": 11606 + }, + { + "word": "proteccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protection", + "example_sentence_native": "Necesitamos más protección contra el sol.", + "example_sentence_english": "We need more protection from the sun.", + "pos": "noun", + "word_frequency": 11607 + }, + { + "word": "purga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purge", + "example_sentence_native": "Hubo una purga en el partido político.", + "example_sentence_english": "There was a purge in the political party.", + "pos": "noun", + "word_frequency": 11609 + }, + { + "word": "pésame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condolences", + "example_sentence_native": "Le di mi más sentido pésame.", + "example_sentence_english": "I gave him my deepest condolences.", + "pos": "noun", + "word_frequency": 11610 + }, + { + "word": "ración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ration;portion", + "example_sentence_native": "Cada soldado recibió su ración diaria.", + "example_sentence_english": "Each soldier received their daily ration.", + "pos": "noun", + "word_frequency": 11614 + }, + { + "word": "recluta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruit", + "example_sentence_native": "El nuevo recluta se unió al ejército.", + "example_sentence_english": "The new recruit joined the army.", + "pos": "noun", + "word_frequency": 11615 + }, + { + "word": "reembolso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refund;reimbursement", + "example_sentence_native": "Solicité un reembolso por el producto defectuoso.", + "example_sentence_english": "I requested a refund for the defective product.", + "pos": "noun", + "word_frequency": 11616 + }, + { + "word": "reproductivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproductive", + "example_sentence_native": "Estudiamos el sistema reproductivo humano.", + "example_sentence_english": "We study the human reproductive system.", + "pos": "adjective", + "word_frequency": 11617 + }, + { + "word": "restitución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restitution;restoration", + "example_sentence_native": "Exigieron la restitución de los bienes robados.", + "example_sentence_english": "They demanded the restitution of the stolen goods.", + "pos": "noun", + "word_frequency": 11618 + }, + { + "word": "revólver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolver", + "example_sentence_native": "El detective sacó su revólver.", + "example_sentence_english": "The detective pulled out his revolver.", + "pos": "noun", + "word_frequency": 11619 + }, + { + "word": "rosca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring-shaped cake;bread;screw thread", + "example_sentence_native": "Compramos una rosca de Reyes para la celebración.", + "example_sentence_english": "We bought a King's cake for the celebration.", + "pos": "noun", + "word_frequency": 11621 + }, + { + "word": "rotundamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emphatically;flatly;absolutely", + "example_sentence_native": "Negó rotundamente las acusaciones.", + "example_sentence_english": "He flatly denied the accusations.", + "pos": "adverb", + "word_frequency": 11622 + }, + { + "word": "sensibilización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awareness;sensitization", + "example_sentence_native": "La campaña busca la sensibilización sobre el cambio climático.", + "example_sentence_english": "The campaign seeks to raise awareness about climate change.", + "pos": "noun", + "word_frequency": 11627 + }, + { + "word": "sobrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sober;restrained;plain", + "example_sentence_native": "Mantuvo un tono sobrio durante la reunión.", + "example_sentence_english": "He maintained a sober tone during the meeting.", + "pos": "adjective", + "word_frequency": 11630 + }, + { + "word": "socialización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialization", + "example_sentence_native": "La socialización es clave para el desarrollo infantil.", + "example_sentence_english": "Socialization is key for child development.", + "pos": "noun", + "word_frequency": 11631 + }, + { + "word": "socioeconómico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "socioeconomic", + "example_sentence_native": "Analizamos el impacto socioeconómico de la crisis.", + "example_sentence_english": "We analyzed the socioeconomic impact of the crisis.", + "pos": "adjective", + "word_frequency": 11632 + }, + { + "word": "sustantivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noun", + "example_sentence_native": "En español, 'mesa' es un sustantivo femenino.", + "example_sentence_english": "In Spanish, 'mesa' is a feminine noun.", + "pos": "noun", + "word_frequency": 11634 + }, + { + "word": "terciopelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "velvet", + "example_sentence_native": "El vestido era de terciopelo rojo.", + "example_sentence_english": "The dress was made of red velvet.", + "pos": "noun", + "word_frequency": 11638 + }, + { + "word": "tipografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "typography;typeface", + "example_sentence_native": "La tipografía de este libro es muy clara.", + "example_sentence_english": "The typography of this book is very clear.", + "pos": "noun", + "word_frequency": 11639 + }, + { + "word": "tostado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toasted;tanned", + "example_sentence_native": "Me gusta el pan tostado con mantequilla.", + "example_sentence_english": "I like toasted bread with butter.", + "pos": "adjective", + "word_frequency": 11641 + }, + { + "word": "tractor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tractor", + "example_sentence_native": "El agricultor usa un tractor para arar el campo.", + "example_sentence_english": "The farmer uses a tractor to plow the field.", + "pos": "noun", + "word_frequency": 11643 + }, + { + "word": "visado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visa", + "example_sentence_native": "Necesito un visado para viajar a ese país.", + "example_sentence_english": "I need a visa to travel to that country.", + "pos": "noun", + "word_frequency": 11647 + }, + { + "word": "zombi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zombie", + "example_sentence_native": "Vimos una película de zombis anoche.", + "example_sentence_english": "We watched a zombie movie last night.", + "pos": "noun", + "word_frequency": 11651 + }, + { + "word": "agilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agility", + "example_sentence_native": "El atleta demostró gran agilidad en la carrera.", + "example_sentence_english": "The athlete showed great agility in the race.", + "pos": "noun", + "word_frequency": 11653 + }, + { + "word": "almendra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "almond", + "example_sentence_native": "Me encantan las galletas de almendra.", + "example_sentence_english": "I love almond cookies.", + "pos": "noun", + "word_frequency": 11655 + }, + { + "word": "alojar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to host;to accommodate;to lodge", + "example_sentence_native": "El hotel puede alojar a cien personas.", + "example_sentence_english": "The hotel can accommodate one hundred people.", + "pos": "verb", + "word_frequency": 11656 + }, + { + "word": "antojar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crave;to fancy;to feel like", + "example_sentence_native": "Se me antoja un helado de chocolate.", + "example_sentence_english": "I'm craving a chocolate ice cream.", + "pos": "verb", + "word_frequency": 11658 + }, + { + "word": "anuario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yearbook;annual", + "example_sentence_native": "El anuario de la escuela ya está disponible.", + "example_sentence_english": "The school yearbook is already available.", + "pos": "noun", + "word_frequency": 11659 + }, + { + "word": "apodado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nicknamed;dubbed", + "example_sentence_native": "Es conocido como \"El Gato\", apodado así por su agilidad.", + "example_sentence_english": "He is known as \"The Cat\", nicknamed that for his agility.", + "pos": "adjective", + "word_frequency": 11660 + }, + { + "word": "asturiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Asturian (from Asturias;Spain)", + "example_sentence_native": "La sidra asturiana es muy famosa.", + "example_sentence_english": "Asturian cider is very famous.", + "pos": "adjective", + "word_frequency": 11661 + }, + { + "word": "atmosférico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atmospheric", + "example_sentence_native": "La presión atmosférica es importante para el clima.", + "example_sentence_english": "Atmospheric pressure is important for the climate.", + "pos": "adjective", + "word_frequency": 11663 + }, + { + "word": "braga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knickers;briefs", + "example_sentence_native": "Necesito comprar una nueva braga de bikini.", + "example_sentence_english": "I need to buy new bikini briefs.", + "pos": "noun", + "word_frequency": 11672 + }, + { + "word": "camilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretcher;cot;gurney", + "example_sentence_native": "El paciente fue llevado en camilla al hospital.", + "example_sentence_english": "The patient was taken on a stretcher to the hospital.", + "pos": "noun", + "word_frequency": 11674 + }, + { + "word": "camping", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camping;campsite", + "example_sentence_native": "Vamos de camping este fin de semana.", + "example_sentence_english": "We are going camping this weekend.", + "pos": "noun", + "word_frequency": 11675 + }, + { + "word": "canalla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scoundrel;rogue;villain", + "example_sentence_native": "Ese hombre es un canalla, no confíes en él.", + "example_sentence_english": "That man is a scoundrel, don't trust him.", + "pos": "noun", + "word_frequency": 11676 + }, + { + "word": "carita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little face;cute face", + "example_sentence_native": "La niña tiene una carita muy dulce.", + "example_sentence_english": "The girl has a very sweet little face.", + "pos": "noun", + "word_frequency": 11679 + }, + { + "word": "chido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool;great", + "example_sentence_native": "¡Qué chido está tu nuevo teléfono!", + "example_sentence_english": "How cool your new phone is!", + "pos": "adjective", + "word_frequency": 11681 + }, + { + "word": "choto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lame;bad (slang)", + "example_sentence_native": "Ese concierto estuvo muy choto.", + "example_sentence_english": "That concert was really lame.", + "pos": "noun", + "word_frequency": 11682 + }, + { + "word": "coleccionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collector", + "example_sentence_native": "Es un ávido coleccionista de sellos.", + "example_sentence_english": "He is an avid stamp collector.", + "pos": "noun", + "word_frequency": 11684 + }, + { + "word": "colectivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collectively", + "example_sentence_native": "Decidieron colectivamente sobre el futuro del proyecto.", + "example_sentence_english": "They decided collectively on the future of the project.", + "pos": "adverb", + "word_frequency": 11685 + }, + { + "word": "compendio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compendium;summary", + "example_sentence_native": "El libro es un compendio de sus obras.", + "example_sentence_english": "The book is a compendium of his works.", + "pos": "noun", + "word_frequency": 11686 + }, + { + "word": "concesionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dealership;concessionaire", + "example_sentence_native": "Compramos el coche en el concesionario local.", + "example_sentence_english": "We bought the car at the local dealership.", + "pos": "noun", + "word_frequency": 11687 + }, + { + "word": "congestión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congestion", + "example_sentence_native": "Hay mucha congestión de tráfico en el centro.", + "example_sentence_english": "There is a lot of traffic congestion in the city center.", + "pos": "noun", + "word_frequency": 11688 + }, + { + "word": "contraposición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contraposition;contrast", + "example_sentence_native": "Su argumento se basa en la contraposición de ideas.", + "example_sentence_english": "His argument is based on the contraposition of ideas.", + "pos": "noun", + "word_frequency": 11689 + }, + { + "word": "crucificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucified", + "example_sentence_native": "La imagen del crucificado es muy antigua.", + "example_sentence_english": "The image of the crucified one is very old.", + "pos": "adjective", + "word_frequency": 11691 + }, + { + "word": "cráter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crater", + "example_sentence_native": "El volcán tiene un cráter enorme.", + "example_sentence_english": "The volcano has an enormous crater.", + "pos": "noun", + "word_frequency": 11692 + }, + { + "word": "cóctel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cocktail", + "example_sentence_native": "Me gustaría pedir un cóctel de frutas.", + "example_sentence_english": "I would like to order a fruit cocktail.", + "pos": "noun", + "word_frequency": 11695 + }, + { + "word": "cómodamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortably", + "example_sentence_native": "Se sentó cómodamente en el sofá.", + "example_sentence_english": "He sat comfortably on the sofa.", + "pos": "adverb", + "word_frequency": 11696 + }, + { + "word": "debilitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weaken", + "example_sentence_native": "La enfermedad puede debilitar el sistema inmune.", + "example_sentence_english": "The disease can weaken the immune system.", + "pos": "verb", + "word_frequency": 11697 + }, + { + "word": "decorar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to decorate", + "example_sentence_native": "Vamos a decorar la casa para Navidad.", + "example_sentence_english": "We are going to decorate the house for Christmas.", + "pos": "verb", + "word_frequency": 11698 + }, + { + "word": "deformación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deformation;distortion", + "example_sentence_native": "El accidente causó una deformación en el metal.", + "example_sentence_english": "The accident caused a deformation in the metal.", + "pos": "noun", + "word_frequency": 11699 + }, + { + "word": "depredador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predator", + "example_sentence_native": "El león es un depredador formidable.", + "example_sentence_english": "The lion is a formidable predator.", + "pos": "noun", + "word_frequency": 11701 + }, + { + "word": "desperdiciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to waste", + "example_sentence_native": "No debemos desperdiciar la comida.", + "example_sentence_english": "We should not waste food.", + "pos": "verb", + "word_frequency": 11702 + }, + { + "word": "destructor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "destructive", + "example_sentence_native": "Las inundaciones tuvieron un efecto destructor.", + "example_sentence_english": "The floods had a destructive effect.", + "pos": "adjective", + "word_frequency": 11703 + }, + { + "word": "disuelto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissolved", + "example_sentence_native": "El azúcar está completamente disuelto en el agua.", + "example_sentence_english": "The sugar is completely dissolved in the water.", + "pos": "adjective", + "word_frequency": 11705 + }, + { + "word": "diversificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diversification", + "example_sentence_native": "La empresa busca la diversificación de sus productos.", + "example_sentence_english": "The company seeks the diversification of its products.", + "pos": "noun", + "word_frequency": 11706 + }, + { + "word": "enclave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enclave", + "example_sentence_native": "La ciudad es un enclave cultural.", + "example_sentence_english": "The city is a cultural enclave.", + "pos": "noun", + "word_frequency": 11710 + }, + { + "word": "enfatizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emphasize", + "example_sentence_native": "Es importante enfatizar la seguridad.", + "example_sentence_english": "It is important to emphasize safety.", + "pos": "verb", + "word_frequency": 11711 + }, + { + "word": "erario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treasury;public funds", + "example_sentence_native": "Los fondos del erario público se usan para servicios.", + "example_sentence_english": "Public treasury funds are used for services.", + "pos": "noun", + "word_frequency": 11712 + }, + { + "word": "escondite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiding place;hideout", + "example_sentence_native": "Los niños jugaban al escondite en el jardín.", + "example_sentence_english": "The children played hide-and-seek in the garden.", + "pos": "noun", + "word_frequency": 11713 + }, + { + "word": "familiarizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "familiar;acquainted", + "example_sentence_native": "Estoy familiarizado con el software.", + "example_sentence_english": "I am familiar with the software.", + "pos": "adjective", + "word_frequency": 11716 + }, + { + "word": "fertilizante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertilizer", + "example_sentence_native": "Necesitamos fertilizante para las plantas.", + "example_sentence_english": "We need fertilizer for the plants.", + "pos": "noun", + "word_frequency": 11717 + }, + { + "word": "foral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foral;pertaining to a charter;privilege", + "example_sentence_native": "La ley foral protege los derechos históricos de la región.", + "example_sentence_english": "The foral law protects the historical rights of the region.", + "pos": "adjective", + "word_frequency": 11721 + }, + { + "word": "franciscano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Franciscan", + "example_sentence_native": "El monasterio franciscano tiene una arquitectura impresionante.", + "example_sentence_english": "The Franciscan monastery has impressive architecture.", + "pos": "adjective", + "word_frequency": 11722 + }, + { + "word": "frescura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freshness;coolness", + "example_sentence_native": "Me encanta la frescura del aire de la montaña.", + "example_sentence_english": "I love the freshness of the mountain air.", + "pos": "noun", + "word_frequency": 11723 + }, + { + "word": "guardado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saved;stored;kept", + "example_sentence_native": "El documento está guardado en la carpeta de descargas.", + "example_sentence_english": "The document is saved in the downloads folder.", + "pos": "adjective", + "word_frequency": 11725 + }, + { + "word": "hambriento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hungry", + "example_sentence_native": "Después de correr, estaba muy hambriento.", + "example_sentence_english": "After running, I was very hungry.", + "pos": "adjective", + "word_frequency": 11726 + }, + { + "word": "hueva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roe;(Mexico;slang) laziness;idleness", + "example_sentence_native": "La hueva de pescado es deliciosa. Me da mucha hueva ir al gimnasio.", + "example_sentence_english": "Fish roe is delicious. I'm too lazy to go to the gym.", + "pos": "noun", + "word_frequency": 11733 + }, + { + "word": "impensable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unthinkable;inconceivable", + "example_sentence_native": "Era impensable que eso pudiera suceder.", + "example_sentence_english": "It was unthinkable that that could happen.", + "pos": "adjective", + "word_frequency": 11734 + }, + { + "word": "influenciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influenced", + "example_sentence_native": "Estaba muy influenciado por sus amigos.", + "example_sentence_english": "He was very influenced by his friends.", + "pos": "adjective", + "word_frequency": 11735 + }, + { + "word": "ingenuidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naivety;ingenuousness", + "example_sentence_native": "Su ingenuidad a veces le causaba problemas.", + "example_sentence_english": "His naivety sometimes caused him problems.", + "pos": "noun", + "word_frequency": 11736 + }, + { + "word": "intermitente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intermittent;flashing", + "example_sentence_native": "La luz intermitente del coche estaba rota.", + "example_sentence_english": "The car's intermittent light was broken.", + "pos": "adjective", + "word_frequency": 11737 + }, + { + "word": "júbilo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jubilation;joy", + "example_sentence_native": "La noticia fue recibida con gran júbilo.", + "example_sentence_english": "The news was received with great jubilation.", + "pos": "noun", + "word_frequency": 11742 + }, + { + "word": "lavadora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "washing machine", + "example_sentence_native": "La lavadora está en el cuarto de servicio.", + "example_sentence_english": "The washing machine is in the utility room.", + "pos": "noun", + "word_frequency": 11745 + }, + { + "word": "limosna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alms;charity", + "example_sentence_native": "Dio una limosna al mendigo.", + "example_sentence_english": "He gave alms to the beggar.", + "pos": "noun", + "word_frequency": 11746 + }, + { + "word": "lujuria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lust", + "example_sentence_native": "La lujuria es uno de los siete pecados capitales.", + "example_sentence_english": "Lust is one of the seven deadly sins.", + "pos": "noun", + "word_frequency": 11747 + }, + { + "word": "manchado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stained;spotted;dirty", + "example_sentence_native": "La camisa estaba manchada de café.", + "example_sentence_english": "The shirt was stained with coffee.", + "pos": "adjective", + "word_frequency": 11749 + }, + { + "word": "objetivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objectively", + "example_sentence_native": "Debemos analizar la situación objetivamente.", + "example_sentence_english": "We must analyze the situation objectively.", + "pos": "adverb", + "word_frequency": 11758 + }, + { + "word": "odiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hated;detested", + "example_sentence_native": "Era un personaje odiado por muchos.", + "example_sentence_english": "He was a character hated by many.", + "pos": "adjective", + "word_frequency": 11759 + }, + { + "word": "operacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operation", + "example_sentence_native": "La operación fue un éxito rotundo.", + "example_sentence_english": "The operation was a resounding success.", + "pos": "noun", + "word_frequency": 11760 + }, + { + "word": "pepa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seed (of fruit)", + "example_sentence_native": "Quítale la pepa al aguacate antes de machacarlo.", + "example_sentence_english": "Remove the seed from the avocado before mashing it.", + "pos": "noun", + "word_frequency": 11761 + }, + { + "word": "pesquero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishing (adj.)", + "example_sentence_native": "La flota pesquera salió al mar temprano.", + "example_sentence_english": "The fishing fleet went out to sea early.", + "pos": "adjective", + "word_frequency": 11762 + }, + { + "word": "piojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "louse", + "example_sentence_native": "Los niños a veces traen piojos de la escuela.", + "example_sentence_english": "Children sometimes bring lice from school.", + "pos": "noun", + "word_frequency": 11763 + }, + { + "word": "planilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "form;payroll;spreadsheet", + "example_sentence_native": "Por favor, rellena esta planilla con tus datos personales.", + "example_sentence_english": "Please fill out this form with your personal data.", + "pos": "noun", + "word_frequency": 11765 + }, + { + "word": "poker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poker", + "example_sentence_native": "Jugamos al póker con amigos los fines de semana.", + "example_sentence_english": "We play poker with friends on weekends.", + "pos": "noun", + "word_frequency": 11766 + }, + { + "word": "polígono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polygon;industrial estate", + "example_sentence_native": "Un hexágono es un polígono de seis lados.", + "example_sentence_english": "A hexagon is a six-sided polygon.", + "pos": "noun", + "word_frequency": 11767 + }, + { + "word": "practicante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intern;trainee", + "example_sentence_native": "El nuevo practicante está aprendiendo muy rápido en la empresa.", + "example_sentence_english": "The new intern is learning very quickly at the company.", + "pos": "noun", + "word_frequency": 11768 + }, + { + "word": "precursor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precursor", + "example_sentence_native": "Este evento fue un precursor de la revolución.", + "example_sentence_english": "This event was a precursor to the revolution.", + "pos": "noun", + "word_frequency": 11769 + }, + { + "word": "predecible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predictable", + "example_sentence_native": "El final de la película fue bastante predecible.", + "example_sentence_english": "The end of the movie was quite predictable.", + "pos": "adjective", + "word_frequency": 11770 + }, + { + "word": "prendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on (light;device);lit", + "example_sentence_native": "La luz de la sala está prendida.", + "example_sentence_english": "The living room light is on.", + "pos": "adjective", + "word_frequency": 11771 + }, + { + "word": "presionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressured;under pressure", + "example_sentence_native": "Se siente muy presionado por la fecha límite.", + "example_sentence_english": "He feels very pressured by the deadline.", + "pos": "adjective", + "word_frequency": 11772 + }, + { + "word": "próstata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prostate", + "example_sentence_native": "La próstata es una glándula del sistema reproductor masculino.", + "example_sentence_english": "The prostate is a gland of the male reproductive system.", + "pos": "noun", + "word_frequency": 11773 + }, + { + "word": "purificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purification", + "example_sentence_native": "El proceso de purificación del agua es vital para la salud.", + "example_sentence_english": "The water purification process is vital for health.", + "pos": "noun", + "word_frequency": 11775 + }, + { + "word": "raiz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "root", + "example_sentence_native": "La raíz del árbol es muy profunda.", + "example_sentence_english": "The tree's root is very deep.", + "pos": "noun", + "word_frequency": 11776 + }, + { + "word": "rebajar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lower;to reduce;to discount", + "example_sentence_native": "Necesitamos rebajar los precios para atraer más clientes.", + "example_sentence_english": "We need to lower prices to attract more customers.", + "pos": "verb", + "word_frequency": 11780 + }, + { + "word": "regresivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regressive", + "example_sentence_native": "Es una política fiscal regresiva que afecta a los más pobres.", + "example_sentence_english": "It is a regressive fiscal policy that affects the poorest.", + "pos": "adjective", + "word_frequency": 11781 + }, + { + "word": "remoción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "removal", + "example_sentence_native": "La remoción de escombros tardará varios días.", + "example_sentence_english": "The removal of debris will take several days.", + "pos": "noun", + "word_frequency": 11782 + }, + { + "word": "remordimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remorse;regret", + "example_sentence_native": "Sentía un profundo remordimiento por sus errores pasados.", + "example_sentence_english": "He felt deep remorse for his past mistakes.", + "pos": "noun", + "word_frequency": 11783 + }, + { + "word": "retenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retained;held back;withheld", + "example_sentence_native": "El paquete fue retenido en la aduana por falta de documentos.", + "example_sentence_english": "The package was retained at customs due to missing documents.", + "pos": "adjective", + "word_frequency": 11784 + }, + { + "word": "retornar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to return", + "example_sentence_native": "Debes retornar los libros a la biblioteca antes del viernes.", + "example_sentence_english": "You must return the books to the library before Friday.", + "pos": "verb", + "word_frequency": 11785 + }, + { + "word": "ruleta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roulette;tape measure", + "example_sentence_native": "Apostó todo su dinero en la ruleta del casino.", + "example_sentence_english": "He bet all his money on the casino roulette wheel.", + "pos": "noun", + "word_frequency": 11788 + }, + { + "word": "salmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psalm", + "example_sentence_native": "Leyó un salmo de la Biblia durante la ceremonia.", + "example_sentence_english": "He read a psalm from the Bible during the ceremony.", + "pos": "noun", + "word_frequency": 11790 + }, + { + "word": "sangrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bleeding;blood loss", + "example_sentence_native": "El sangrado se detuvo después de aplicar presión.", + "example_sentence_english": "The bleeding stopped after applying pressure.", + "pos": "noun", + "word_frequency": 11791 + }, + { + "word": "sauce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willow (tree)", + "example_sentence_native": "El sauce llorón es un árbol muy común cerca de los ríos.", + "example_sentence_english": "The weeping willow is a very common tree near rivers.", + "pos": "noun", + "word_frequency": 11793 + }, + { + "word": "semántico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semantic", + "example_sentence_native": "Existe una diferencia semántica sutil entre ambas palabras.", + "example_sentence_english": "There is a subtle semantic difference between both words.", + "pos": "adjective", + "word_frequency": 11795 + }, + { + "word": "sensacional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensational;amazing", + "example_sentence_native": "La actuación de la banda fue absolutamente sensacional.", + "example_sentence_english": "The band's performance was absolutely sensational.", + "pos": "adjective", + "word_frequency": 11796 + }, + { + "word": "sensualidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensuality", + "example_sentence_native": "Su baile expresaba una gran sensualidad y pasión.", + "example_sentence_english": "Her dance expressed great sensuality and passion.", + "pos": "noun", + "word_frequency": 11797 + }, + { + "word": "servidumbre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "servitude;domestic staff", + "example_sentence_native": "En el pasado, muchas casas grandes tenían una numerosa servidumbre.", + "example_sentence_english": "In the past, many large houses had numerous domestic staff.", + "pos": "noun", + "word_frequency": 11798 + }, + { + "word": "siervo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "servant;serf", + "example_sentence_native": "En la Edad Media, el siervo estaba ligado a la tierra de su señor.", + "example_sentence_english": "In the Middle Ages, the serf was tied to his lord's land.", + "pos": "noun", + "word_frequency": 11799 + }, + { + "word": "simposio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symposium", + "example_sentence_native": "El simposio sobre inteligencia artificial fue muy interesante.", + "example_sentence_english": "The symposium on artificial intelligence was very interesting.", + "pos": "noun", + "word_frequency": 11800 + }, + { + "word": "sinvergüenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scoundrel;shameless person", + "example_sentence_native": "Ese sinvergüenza me robó la cartera.", + "example_sentence_english": "That scoundrel stole my wallet.", + "pos": "noun", + "word_frequency": 11801 + }, + { + "word": "soplar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blow", + "example_sentence_native": "El viento empezó a soplar fuerte.", + "example_sentence_english": "The wind started to blow strongly.", + "pos": "verb", + "word_frequency": 11804 + }, + { + "word": "subconsciente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subconscious", + "example_sentence_native": "Muchas de nuestras decisiones provienen del subconsciente.", + "example_sentence_english": "Many of our decisions come from the subconscious.", + "pos": "noun", + "word_frequency": 11806 + }, + { + "word": "sudoeste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southwest", + "example_sentence_native": "La tormenta se acerca desde el sudoeste.", + "example_sentence_english": "The storm is approaching from the southwest.", + "pos": "noun", + "word_frequency": 11807 + }, + { + "word": "sustentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sustain;to support", + "example_sentence_native": "La economía local se sustenta en el turismo.", + "example_sentence_english": "The local economy is sustained by tourism.", + "pos": "verb", + "word_frequency": 11809 + }, + { + "word": "timo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scam;swindle;thymus", + "example_sentence_native": "Fue un timo, perdí todo mi dinero.", + "example_sentence_english": "It was a scam, I lost all my money.", + "pos": "noun", + "word_frequency": 11810 + }, + { + "word": "torso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torso", + "example_sentence_native": "El atleta tiene un torso muy fuerte.", + "example_sentence_english": "The athlete has a very strong torso.", + "pos": "noun", + "word_frequency": 11812 + }, + { + "word": "transexual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transsexual", + "example_sentence_native": "La comunidad transexual lucha por sus derechos.", + "example_sentence_english": "The transsexual community fights for its rights.", + "pos": "adjective", + "word_frequency": 11814 + }, + { + "word": "transitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transit;to pass through", + "example_sentence_native": "Está prohibido transitar por esta calle.", + "example_sentence_english": "It is forbidden to pass through this street.", + "pos": "verb", + "word_frequency": 11815 + }, + { + "word": "trascendental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transcendental;momentous", + "example_sentence_native": "Fue una decisión trascendental para su carrera.", + "example_sentence_english": "It was a momentous decision for his career.", + "pos": "adjective", + "word_frequency": 11816 + }, + { + "word": "uniformado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uniformed", + "example_sentence_native": "Los agentes uniformados llegaron al lugar.", + "example_sentence_english": "The uniformed officers arrived at the scene.", + "pos": "adjective", + "word_frequency": 11817 + }, + { + "word": "validar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to validate", + "example_sentence_native": "Necesitamos validar los datos antes de continuar.", + "example_sentence_english": "We need to validate the data before continuing.", + "pos": "verb", + "word_frequency": 11820 + }, + { + "word": "yogur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yogurt", + "example_sentence_native": "Me gusta comer yogur con frutas.", + "example_sentence_english": "I like to eat yogurt with fruit.", + "pos": "noun", + "word_frequency": 11822 + }, + { + "word": "óptico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optical", + "example_sentence_native": "La fibra óptica permite una conexión rápida.", + "example_sentence_english": "Optical fiber allows for a fast connection.", + "pos": "adjective", + "word_frequency": 11823 + }, + { + "word": "abrumador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming", + "example_sentence_native": "La cantidad de trabajo era abrumadora.", + "example_sentence_english": "The amount of work was overwhelming.", + "pos": "adjective", + "word_frequency": 11824 + }, + { + "word": "acelerador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accelerator", + "example_sentence_native": "Pisa el acelerador para ir más rápido.", + "example_sentence_english": "Step on the accelerator to go faster.", + "pos": "noun", + "word_frequency": 11825 + }, + { + "word": "acopio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collection;gathering;stock", + "example_sentence_native": "Hicieron acopio de víveres para el invierno.", + "example_sentence_english": "They gathered provisions for the winter.", + "pos": "noun", + "word_frequency": 11826 + }, + { + "word": "adyacente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adjacent", + "example_sentence_native": "La casa adyacente está en venta.", + "example_sentence_english": "The adjacent house is for sale.", + "pos": "adjective", + "word_frequency": 11827 + }, + { + "word": "aeronáutico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aeronautical", + "example_sentence_native": "La industria aeronáutica está en crecimiento.", + "example_sentence_english": "The aeronautical industry is growing.", + "pos": "adjective", + "word_frequency": 11828 + }, + { + "word": "altavoz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loudspeaker;speaker", + "example_sentence_native": "El sonido del altavoz era muy claro.", + "example_sentence_english": "The sound from the speaker was very clear.", + "pos": "noun", + "word_frequency": 11832 + }, + { + "word": "amnesia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amnesia", + "example_sentence_native": "Sufrió amnesia después del accidente.", + "example_sentence_english": "He suffered amnesia after the accident.", + "pos": "noun", + "word_frequency": 11833 + }, + { + "word": "apasionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impassion;to be passionate about", + "example_sentence_native": "Me apasiona la música clásica.", + "example_sentence_english": "Classical music impassions me (I am passionate about classical music).", + "pos": "verb", + "word_frequency": 11835 + }, + { + "word": "arribo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrival", + "example_sentence_native": "El arribo del tren está previsto para las diez.", + "example_sentence_english": "The arrival of the train is scheduled for ten.", + "pos": "noun", + "word_frequency": 11836 + }, + { + "word": "asentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settled;established", + "example_sentence_native": "Es un negocio bien asentado en la comunidad.", + "example_sentence_english": "It is a business well-established in the community.", + "pos": "adjective", + "word_frequency": 11837 + }, + { + "word": "bahia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bay", + "example_sentence_native": "La bahía de Acapulco es muy hermosa.", + "example_sentence_english": "Acapulco Bay is very beautiful.", + "pos": "noun", + "word_frequency": 11839 + }, + { + "word": "baron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baron", + "example_sentence_native": "El barón vivía en un castillo antiguo.", + "example_sentence_english": "The baron lived in an old castle.", + "pos": "noun", + "word_frequency": 11841 + }, + { + "word": "brasilero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Brazilian", + "example_sentence_native": "Mi amigo es brasilero.", + "example_sentence_english": "My friend is Brazilian.", + "pos": "adjective", + "word_frequency": 11848 + }, + { + "word": "brújula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass", + "example_sentence_native": "Necesitamos una brújula para orientarnos.", + "example_sentence_english": "We need a compass to orient ourselves.", + "pos": "noun", + "word_frequency": 11849 + }, + { + "word": "bélico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "warlike;belligerent", + "example_sentence_native": "El conflicto tomó un giro bélico.", + "example_sentence_english": "The conflict took a warlike turn.", + "pos": "adjective", + "word_frequency": 11850 + }, + { + "word": "caballito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little horse;hobbyhorse", + "example_sentence_native": "El niño juega con su caballito de madera.", + "example_sentence_english": "The child plays with his wooden hobbyhorse.", + "pos": "noun", + "word_frequency": 11851 + }, + { + "word": "calavera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skull", + "example_sentence_native": "Dibujó una calavera en su cuaderno.", + "example_sentence_english": "He drew a skull in his notebook.", + "pos": "noun", + "word_frequency": 11853 + }, + { + "word": "callo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "callus", + "example_sentence_native": "Me salió un callo en el pie por los zapatos nuevos.", + "example_sentence_english": "I got a callus on my foot from the new shoes.", + "pos": "noun", + "word_frequency": 11855 + }, + { + "word": "camionero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck driver", + "example_sentence_native": "El camionero entregó la mercancía a tiempo.", + "example_sentence_english": "The truck driver delivered the goods on time.", + "pos": "noun", + "word_frequency": 11856 + }, + { + "word": "capucha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood", + "example_sentence_native": "Se puso la capucha para protegerse de la lluvia.", + "example_sentence_english": "He put on his hood to protect himself from the rain.", + "pos": "noun", + "word_frequency": 11857 + }, + { + "word": "carente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking;devoid of", + "example_sentence_native": "La propuesta es carente de detalles.", + "example_sentence_english": "The proposal is lacking in details.", + "pos": "adjective", + "word_frequency": 11858 + }, + { + "word": "caserío", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hamlet;cluster of houses", + "example_sentence_native": "El caserío estaba escondido entre las montañas.", + "example_sentence_english": "The hamlet was hidden among the mountains.", + "pos": "noun", + "word_frequency": 11860 + }, + { + "word": "centralizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centralized", + "example_sentence_native": "El sistema de gestión está centralizado.", + "example_sentence_english": "The management system is centralized.", + "pos": "adjective", + "word_frequency": 11861 + }, + { + "word": "cisco", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dregs;refuse", + "example_sentence_native": "El cisco del café se quedó en el fondo de la taza.", + "example_sentence_english": "The dregs of the coffee remained at the bottom of the cup.", + "pos": "noun", + "word_frequency": 11863 + }, + { + "word": "cofundador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-founder", + "example_sentence_native": "Es el cofundador de la empresa.", + "example_sentence_english": "He is the co-founder of the company.", + "pos": "noun", + "word_frequency": 11865 + }, + { + "word": "coloquial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colloquial", + "example_sentence_native": "Usó una expresión coloquial en su discurso.", + "example_sentence_english": "He used a colloquial expression in his speech.", + "pos": "adjective", + "word_frequency": 11866 + }, + { + "word": "conjunción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conjunction", + "example_sentence_native": "La palabra 'y' es una conjunción.", + "example_sentence_english": "The word 'and' is a conjunction.", + "pos": "conjunction", + "word_frequency": 11867 + }, + { + "word": "cuadrilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gang;crew;squad", + "example_sentence_native": "Una cuadrilla de trabajadores reparó la calle.", + "example_sentence_english": "A crew of workers repaired the street.", + "pos": "noun", + "word_frequency": 11868 + }, + { + "word": "céntimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cent", + "example_sentence_native": "No tengo ni un céntimo en el bolsillo.", + "example_sentence_english": "I don't have a single cent in my pocket.", + "pos": "noun", + "word_frequency": 11870 + }, + { + "word": "cóndor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condor", + "example_sentence_native": "El cóndor andino es un ave majestuosa.", + "example_sentence_english": "The Andean condor is a majestic bird.", + "pos": "noun", + "word_frequency": 11871 + }, + { + "word": "deidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deity", + "example_sentence_native": "Los antiguos griegos adoraban a muchas deidades.", + "example_sentence_english": "Ancient Greeks worshipped many deities.", + "pos": "noun", + "word_frequency": 11873 + }, + { + "word": "depositado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposited", + "example_sentence_native": "El dinero ya está depositado en tu cuenta.", + "example_sentence_english": "The money is already deposited in your account.", + "pos": "adjective", + "word_frequency": 11874 + }, + { + "word": "deprisa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quickly;fast", + "example_sentence_native": "Corre deprisa para no perder el autobús.", + "example_sentence_english": "Run quickly so you don't miss the bus.", + "pos": "adverb", + "word_frequency": 11875 + }, + { + "word": "desahucio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eviction", + "example_sentence_native": "La familia recibió una orden de desahucio.", + "example_sentence_english": "The family received an eviction order.", + "pos": "noun", + "word_frequency": 11876 + }, + { + "word": "digestivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digestive", + "example_sentence_native": "El té de menta es bueno para el sistema digestivo.", + "example_sentence_english": "Peppermint tea is good for the digestive system.", + "pos": "adjective", + "word_frequency": 11877 + }, + { + "word": "disidencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissent;dissidence", + "example_sentence_native": "Hubo mucha disidencia en la reunión.", + "example_sentence_english": "There was a lot of dissent at the meeting.", + "pos": "noun", + "word_frequency": 11879 + }, + { + "word": "durazno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peach", + "example_sentence_native": "Me encanta el durazno fresco en verano.", + "example_sentence_english": "I love fresh peach in summer.", + "pos": "noun", + "word_frequency": 11880 + }, + { + "word": "eficazmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effectively;efficiently", + "example_sentence_native": "El equipo trabajó eficazmente para terminar el proyecto a tiempo.", + "example_sentence_english": "The team worked effectively to finish the project on time.", + "pos": "adverb", + "word_frequency": 11883 + }, + { + "word": "electrodoméstico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home appliance", + "example_sentence_native": "Necesitamos comprar un nuevo electrodoméstico para la cocina.", + "example_sentence_english": "We need to buy a new home appliance for the kitchen.", + "pos": "noun", + "word_frequency": 11884 + }, + { + "word": "electrón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electron", + "example_sentence_native": "Un electrón es una partícula subatómica con carga eléctrica negativa.", + "example_sentence_english": "An electron is a subatomic particle with a negative electrical charge.", + "pos": "noun", + "word_frequency": 11885 + }, + { + "word": "ensayar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rehearse;to try out", + "example_sentence_native": "La banda va a ensayar antes del concierto.", + "example_sentence_english": "The band is going to rehearse before the concert.", + "pos": "verb", + "word_frequency": 11886 + }, + { + "word": "entramado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "framework;structure;entanglement", + "example_sentence_native": "El entramado de calles del centro histórico es muy complejo.", + "example_sentence_english": "The framework of streets in the historic center is very complex.", + "pos": "noun", + "word_frequency": 11887 + }, + { + "word": "entretener", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to entertain", + "example_sentence_native": "La película logró entretener a toda la familia.", + "example_sentence_english": "The movie managed to entertain the whole family.", + "pos": "verb", + "word_frequency": 11888 + }, + { + "word": "esquizofrenia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "schizophrenia", + "example_sentence_native": "La esquizofrenia es una enfermedad mental compleja.", + "example_sentence_english": "Schizophrenia is a complex mental illness.", + "pos": "noun", + "word_frequency": 11890 + }, + { + "word": "estacionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parked", + "example_sentence_native": "El coche estaba estacionado ilegalmente.", + "example_sentence_english": "The car was illegally parked.", + "pos": "adjective", + "word_frequency": 11891 + }, + { + "word": "estadista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statesman;stateswoman", + "example_sentence_native": "Fue un gran estadista que cambió el rumbo del país.", + "example_sentence_english": "He was a great statesman who changed the course of the country.", + "pos": "noun", + "word_frequency": 11892 + }, + { + "word": "estirar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stretch", + "example_sentence_native": "Es importante estirar los músculos antes de hacer ejercicio.", + "example_sentence_english": "It's important to stretch your muscles before exercising.", + "pos": "verb", + "word_frequency": 11893 + }, + { + "word": "evangélico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evangelical", + "example_sentence_native": "La comunidad evangélica es muy activa en la región.", + "example_sentence_english": "The evangelical community is very active in the region.", + "pos": "adjective", + "word_frequency": 11894 + }, + { + "word": "extraordinariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraordinarily", + "example_sentence_native": "El concierto fue extraordinariamente bueno.", + "example_sentence_english": "The concert was extraordinarily good.", + "pos": "adverb", + "word_frequency": 11896 + }, + { + "word": "facturación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billing;invoicing;check-in (at airport)", + "example_sentence_native": "La facturación de equipaje cierra una hora antes del vuelo.", + "example_sentence_english": "Luggage check-in closes one hour before the flight.", + "pos": "noun", + "word_frequency": 11897 + }, + { + "word": "fiabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reliability", + "example_sentence_native": "La fiabilidad de este coche es excelente.", + "example_sentence_english": "The reliability of this car is excellent.", + "pos": "noun", + "word_frequency": 11900 + }, + { + "word": "filipino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Filipino", + "example_sentence_native": "Conozco a una persona filipina muy amable.", + "example_sentence_english": "I know a very kind Filipino person.", + "pos": "adjective", + "word_frequency": 11901 + }, + { + "word": "filología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philology", + "example_sentence_native": "Estudió filología hispánica en la universidad.", + "example_sentence_english": "She studied Hispanic philology at the university.", + "pos": "noun", + "word_frequency": 11902 + }, + { + "word": "francotirador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sniper", + "example_sentence_native": "El francotirador se posicionó en el tejado.", + "example_sentence_english": "The sniper positioned himself on the roof.", + "pos": "noun", + "word_frequency": 11906 + }, + { + "word": "gaseosa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soda;soft drink", + "example_sentence_native": "Me gustaría una gaseosa, por favor.", + "example_sentence_english": "I would like a soda, please.", + "pos": "noun", + "word_frequency": 11909 + }, + { + "word": "gasolinera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gas station", + "example_sentence_native": "Necesito parar en la gasolinera para llenar el tanque.", + "example_sentence_english": "I need to stop at the gas station to fill the tank.", + "pos": "noun", + "word_frequency": 11910 + }, + { + "word": "honradez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honesty;integrity", + "example_sentence_native": "Su honradez es una de sus mejores cualidades.", + "example_sentence_english": "His honesty is one of his best qualities.", + "pos": "noun", + "word_frequency": 11912 + }, + { + "word": "impactar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impact;to shock", + "example_sentence_native": "La noticia impactó a toda la comunidad.", + "example_sentence_english": "The news impacted the entire community.", + "pos": "verb", + "word_frequency": 11915 + }, + { + "word": "inducir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to induce;to lead to", + "example_sentence_native": "No quiero inducir a nadie a error.", + "example_sentence_english": "I don't want to lead anyone into error.", + "pos": "verb", + "word_frequency": 11916 + }, + { + "word": "insultado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulted", + "example_sentence_native": "Se sintió insultado por sus comentarios.", + "example_sentence_english": "He felt insulted by his comments.", + "pos": "adjective", + "word_frequency": 11917 + }, + { + "word": "lar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "home", + "example_sentence_native": "Volvió a su lar después de un largo viaje.", + "example_sentence_english": "He returned to his home after a long journey.", + "pos": "noun", + "word_frequency": 11921 + }, + { + "word": "latido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heartbeat", + "example_sentence_native": "Sentí un fuerte latido en mi pecho.", + "example_sentence_english": "I felt a strong heartbeat in my chest.", + "pos": "noun", + "word_frequency": 11922 + }, + { + "word": "legumbre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legume", + "example_sentence_native": "Las lentejas son una legumbre muy nutritiva.", + "example_sentence_english": "Lentils are a very nutritious legume.", + "pos": "noun", + "word_frequency": 11923 + }, + { + "word": "libertario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libertarian", + "example_sentence_native": "Tiene ideas políticas libertarias.", + "example_sentence_english": "He has libertarian political ideas.", + "pos": "adjective", + "word_frequency": 11925 + }, + { + "word": "lira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lyre", + "example_sentence_native": "El músico tocaba una antigua lira.", + "example_sentence_english": "The musician played an ancient lyre.", + "pos": "noun", + "word_frequency": 11926 + }, + { + "word": "manguera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hose", + "example_sentence_native": "Necesito una manguera para regar el jardín.", + "example_sentence_english": "I need a hose to water the garden.", + "pos": "noun", + "word_frequency": 11927 + }, + { + "word": "maximizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maximize", + "example_sentence_native": "Debemos maximizar nuestros esfuerzos para lograr el objetivo.", + "example_sentence_english": "We must maximize our efforts to achieve the goal.", + "pos": "verb", + "word_frequency": 11930 + }, + { + "word": "moco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snot", + "example_sentence_native": "El niño tenía mocos por el resfriado.", + "example_sentence_english": "The child had snot from the cold.", + "pos": "noun", + "word_frequency": 11935 + }, + { + "word": "navideño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christmas", + "example_sentence_native": "Me encanta el ambiente navideño.", + "example_sentence_english": "I love the Christmas atmosphere.", + "pos": "adjective", + "word_frequency": 11939 + }, + { + "word": "neutralizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to neutralize", + "example_sentence_native": "Intentaron neutralizar la amenaza.", + "example_sentence_english": "They tried to neutralize the threat.", + "pos": "verb", + "word_frequency": 11942 + }, + { + "word": "nexo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nexus", + "example_sentence_native": "Existe un nexo claro entre ambos eventos.", + "example_sentence_english": "There is a clear nexus between both events.", + "pos": "noun", + "word_frequency": 11943 + }, + { + "word": "nomenclatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nomenclature", + "example_sentence_native": "La nomenclatura científica es muy precisa.", + "example_sentence_english": "Scientific nomenclature is very precise.", + "pos": "noun", + "word_frequency": 11944 + }, + { + "word": "ofrecimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offer", + "example_sentence_native": "Agradezco tu ofrecimiento de ayuda.", + "example_sentence_english": "I appreciate your offer of help.", + "pos": "noun", + "word_frequency": 11946 + }, + { + "word": "padrastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepfather", + "example_sentence_native": "Mi padrastro es muy amable.", + "example_sentence_english": "My stepfather is very kind.", + "pos": "noun", + "word_frequency": 11948 + }, + { + "word": "pantera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panther", + "example_sentence_native": "La pantera negra es un animal majestuoso.", + "example_sentence_english": "The black panther is a majestic animal.", + "pos": "noun", + "word_frequency": 11949 + }, + { + "word": "paracaídas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parachute", + "example_sentence_native": "Saltó del avión con un paracaídas.", + "example_sentence_english": "He jumped from the plane with a parachute.", + "pos": "noun", + "word_frequency": 11950 + }, + { + "word": "pasividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "passivity", + "example_sentence_native": "Su pasividad ante el problema fue sorprendente.", + "example_sentence_english": "His passivity in the face of the problem was surprising.", + "pos": "noun", + "word_frequency": 11951 + }, + { + "word": "perico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parakeet", + "example_sentence_native": "Mi abuela tiene un perico que habla.", + "example_sentence_english": "My grandmother has a talking parakeet.", + "pos": "noun", + "word_frequency": 11952 + }, + { + "word": "pié", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "foot", + "example_sentence_native": "Me duele el pie derecho.", + "example_sentence_english": "My right foot hurts.", + "pos": "noun", + "word_frequency": 11953 + }, + { + "word": "portafolio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefcase", + "example_sentence_native": "Llevaba sus documentos en un portafolio.", + "example_sentence_english": "He carried his documents in a briefcase.", + "pos": "noun", + "word_frequency": 11955 + }, + { + "word": "pradera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meadow", + "example_sentence_native": "Las vacas pastaban en la verde pradera.", + "example_sentence_english": "The cows grazed in the green meadow.", + "pos": "noun", + "word_frequency": 11957 + }, + { + "word": "prematuro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premature", + "example_sentence_native": "Fue un nacimiento prematuro.", + "example_sentence_english": "It was a premature birth.", + "pos": "adjective", + "word_frequency": 11958 + }, + { + "word": "prision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prison", + "example_sentence_native": "El criminal fue enviado a prisión.", + "example_sentence_english": "The criminal was sent to prison.", + "pos": "noun", + "word_frequency": 11959 + }, + { + "word": "promulgar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to promulgate;to enact", + "example_sentence_native": "El gobierno debe promulgar nuevas leyes para proteger el medio ambiente.", + "example_sentence_english": "The government must promulgate new laws to protect the environment.", + "pos": "verb", + "word_frequency": 11960 + }, + { + "word": "pubertad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puberty", + "example_sentence_native": "La pubertad es una etapa de grandes cambios.", + "example_sentence_english": "Puberty is a stage of great changes.", + "pos": "noun", + "word_frequency": 11961 + }, + { + "word": "publicista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publicist;advertiser", + "example_sentence_native": "Contrataron a un publicista para mejorar la imagen de la empresa.", + "example_sentence_english": "They hired a publicist to improve the company's image.", + "pos": "noun", + "word_frequency": 11962 + }, + { + "word": "pulpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pulp", + "example_sentence_native": "La pulpa de la naranja es muy jugosa.", + "example_sentence_english": "The pulp of the orange is very juicy.", + "pos": "noun", + "word_frequency": 11963 + }, + { + "word": "quehacer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chore;task", + "example_sentence_native": "Los quehaceres domésticos pueden ser agotadores.", + "example_sentence_english": "Household chores can be exhausting.", + "pos": "noun", + "word_frequency": 11964 + }, + { + "word": "racionalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationality", + "example_sentence_native": "La decisión se tomó con total racionalidad.", + "example_sentence_english": "The decision was made with complete rationality.", + "pos": "noun", + "word_frequency": 11965 + }, + { + "word": "recrear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recreate;to amuse", + "example_sentence_native": "Intentaron recrear la escena del crimen.", + "example_sentence_english": "They tried to recreate the crime scene.", + "pos": "verb", + "word_frequency": 11966 + }, + { + "word": "refinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refine", + "example_sentence_native": "Es necesario refinar el azúcar antes de consumirlo.", + "example_sentence_english": "It is necessary to refine sugar before consuming it.", + "pos": "verb", + "word_frequency": 11967 + }, + { + "word": "refrigeración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refrigeration;cooling", + "example_sentence_native": "El sistema de refrigeración del coche no funciona.", + "example_sentence_english": "The car's cooling system is not working.", + "pos": "noun", + "word_frequency": 11968 + }, + { + "word": "reiniciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restart;to reboot", + "example_sentence_native": "Por favor, reinicia tu ordenador.", + "example_sentence_english": "Please, restart your computer.", + "pos": "verb", + "word_frequency": 11969 + }, + { + "word": "reiterar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reiterate;to repeat", + "example_sentence_native": "Quiero reiterar mi agradecimiento por su ayuda.", + "example_sentence_english": "I want to reiterate my gratitude for your help.", + "pos": "verb", + "word_frequency": 11970 + }, + { + "word": "represa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dam;reservoir", + "example_sentence_native": "La represa genera electricidad para toda la región.", + "example_sentence_english": "The dam generates electricity for the entire region.", + "pos": "noun", + "word_frequency": 11971 + }, + { + "word": "restablecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reestablishment;restoration", + "example_sentence_native": "El restablecimiento de la paz es nuestra prioridad.", + "example_sentence_english": "The reestablishment of peace is our priority.", + "pos": "noun", + "word_frequency": 11972 + }, + { + "word": "ridiculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ridiculous", + "example_sentence_native": "Su excusa fue completamente ridícula.", + "example_sentence_english": "His excuse was completely ridiculous.", + "pos": "adjective", + "word_frequency": 11973 + }, + { + "word": "roce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friction;rub", + "example_sentence_native": "Hubo un pequeño roce entre los dos coches.", + "example_sentence_english": "There was a slight rub between the two cars.", + "pos": "noun", + "word_frequency": 11975 + }, + { + "word": "sabiendas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "knowledge (in 'knowingly')", + "example_sentence_native": "Lo hizo a sabiendas de las consecuencias.", + "example_sentence_english": "He did it knowing the consequences.", + "pos": "noun", + "word_frequency": 11977 + }, + { + "word": "salvaguardar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to safeguard;to protect", + "example_sentence_native": "Es importante salvaguardar los derechos humanos.", + "example_sentence_english": "It is important to safeguard human rights.", + "pos": "verb", + "word_frequency": 11978 + }, + { + "word": "salvavidas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "life preserver;lifeguard", + "example_sentence_native": "El salvavidas saltó al agua para rescatar al niño.", + "example_sentence_english": "The lifeguard jumped into the water to rescue the child.", + "pos": "noun", + "word_frequency": 11979 + }, + { + "word": "sanatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanatorium;clinic", + "example_sentence_native": "Fue trasladado a un sanatorio para su recuperación.", + "example_sentence_english": "He was transferred to a sanatorium for his recovery.", + "pos": "noun", + "word_frequency": 11980 + }, + { + "word": "sectorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sectoral", + "example_sentence_native": "Se necesitan políticas sectoriales para cada industria.", + "example_sentence_english": "Sectoral policies are needed for each industry.", + "pos": "adjective", + "word_frequency": 11983 + }, + { + "word": "sensacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensation;feeling", + "example_sentence_native": "Tuve una extraña sensación al entrar en la casa.", + "example_sentence_english": "I had a strange sensation when entering the house.", + "pos": "noun", + "word_frequency": 11984 + }, + { + "word": "sepultura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burial;grave", + "example_sentence_native": "La sepultura tuvo lugar al atardecer.", + "example_sentence_english": "The burial took place at sunset.", + "pos": "noun", + "word_frequency": 11985 + }, + { + "word": "sermon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sermon;lecture", + "example_sentence_native": "El sacerdote dio un largo sermón.", + "example_sentence_english": "The priest gave a long sermon.", + "pos": "noun", + "word_frequency": 11986 + }, + { + "word": "señalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signage;signaling", + "example_sentence_native": "La nueva señalización vial es muy clara.", + "example_sentence_english": "The new road signage is very clear.", + "pos": "noun", + "word_frequency": 11989 + }, + { + "word": "sobrecarga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overload;surcharge", + "example_sentence_native": "El sistema sufrió una sobrecarga eléctrica.", + "example_sentence_english": "The system suffered an electrical overload.", + "pos": "noun", + "word_frequency": 11991 + }, + { + "word": "sobrepasar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exceed;to overtake", + "example_sentence_native": "No debes sobrepasar el límite de velocidad.", + "example_sentence_english": "You must not exceed the speed limit.", + "pos": "verb", + "word_frequency": 11992 + }, + { + "word": "socialdemócrata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social democratic", + "example_sentence_native": "Es un partido de ideología socialdemócrata.", + "example_sentence_english": "It is a social democratic party.", + "pos": "adjective", + "word_frequency": 11993 + }, + { + "word": "solear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sun;to expose to the sun", + "example_sentence_native": "Vamos a solear la ropa para que se seque.", + "example_sentence_english": "We are going to sun the clothes so they dry.", + "pos": "verb", + "word_frequency": 11994 + }, + { + "word": "urbe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "city;metropolis", + "example_sentence_native": "La urbe crecía a un ritmo acelerado.", + "example_sentence_english": "The city was growing at an accelerated pace.", + "pos": "noun", + "word_frequency": 11998 + }, + { + "word": "veraz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truthful;veracious", + "example_sentence_native": "Necesitamos información veraz para tomar una decisión.", + "example_sentence_english": "We need truthful information to make a decision.", + "pos": "adjective", + "word_frequency": 11999 + }, + { + "word": "victorioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victorious", + "example_sentence_native": "El equipo estaba victorioso después del partido.", + "example_sentence_english": "The team was victorious after the match.", + "pos": "adjective", + "word_frequency": 12001 + }, + { + "word": "yanqui", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Yankee", + "example_sentence_native": "Muchos turistas yanquis visitan la ciudad.", + "example_sentence_english": "Many Yankee tourists visit the city.", + "pos": "adjective", + "word_frequency": 12010 + }, + { + "word": "yate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yacht", + "example_sentence_native": "Compraron un yate para navegar por el Mediterráneo.", + "example_sentence_english": "They bought a yacht to sail the Mediterranean.", + "pos": "noun", + "word_frequency": 12011 + }, + { + "word": "abadía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbey", + "example_sentence_native": "La abadía es un lugar histórico muy antiguo.", + "example_sentence_english": "The abbey is a very old historical place.", + "pos": "noun", + "word_frequency": 12013 + }, + { + "word": "abonar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pay;to fertilize", + "example_sentence_native": "Debes abonar la factura antes del viernes.", + "example_sentence_english": "You must pay the invoice before Friday.", + "pos": "verb", + "word_frequency": 12014 + }, + { + "word": "albañil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bricklayer;builder", + "example_sentence_native": "El albañil está construyendo una nueva pared.", + "example_sentence_english": "The bricklayer is building a new wall.", + "pos": "noun", + "word_frequency": 12015 + }, + { + "word": "alcanzado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reached;achieved", + "example_sentence_native": "El objetivo alcanzado fue un gran éxito.", + "example_sentence_english": "The achieved goal was a great success.", + "pos": "adjective", + "word_frequency": 12016 + }, + { + "word": "alcohólico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholic", + "example_sentence_native": "La bebida alcohólica no es para menores.", + "example_sentence_english": "Alcoholic beverages are not for minors.", + "pos": "adjective", + "word_frequency": 12017 + }, + { + "word": "alejamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distancing;estrangement", + "example_sentence_native": "Hubo un alejamiento entre los dos amigos.", + "example_sentence_english": "There was an estrangement between the two friends.", + "pos": "noun", + "word_frequency": 12018 + }, + { + "word": "alzamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uprising;rebellion", + "example_sentence_native": "El alzamiento popular fue reprimido.", + "example_sentence_english": "The popular uprising was suppressed.", + "pos": "noun", + "word_frequency": 12020 + }, + { + "word": "armónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmonic;harmonious", + "example_sentence_native": "Su relación es muy armónica.", + "example_sentence_english": "Their relationship is very harmonious.", + "pos": "adjective", + "word_frequency": 12022 + }, + { + "word": "asaltar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assault;to rob", + "example_sentence_native": "Los ladrones intentaron asaltar el banco.", + "example_sentence_english": "The thieves tried to rob the bank.", + "pos": "verb", + "word_frequency": 12023 + }, + { + "word": "asentar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to settle;to establish", + "example_sentence_native": "Necesitamos asentar las bases del proyecto.", + "example_sentence_english": "We need to establish the foundations of the project.", + "pos": "verb", + "word_frequency": 12024 + }, + { + "word": "autocrítica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-criticism", + "example_sentence_native": "La autocrítica es importante para mejorar.", + "example_sentence_english": "Self-criticism is important for improvement.", + "pos": "noun", + "word_frequency": 12025 + }, + { + "word": "aventurero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adventurous", + "example_sentence_native": "Es un espíritu aventurero que siempre busca nuevos desafíos.", + "example_sentence_english": "He has an adventurous spirit that always seeks new challenges.", + "pos": "adjective", + "word_frequency": 12026 + }, + { + "word": "bromear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to joke", + "example_sentence_native": "Le gusta bromear con sus amigos.", + "example_sentence_english": "He likes to joke with his friends.", + "pos": "verb", + "word_frequency": 12030 + }, + { + "word": "carpintería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpentry;carpenter's shop", + "example_sentence_native": "Estudió carpintería para hacer muebles.", + "example_sentence_english": "He studied carpentry to make furniture.", + "pos": "noun", + "word_frequency": 12034 + }, + { + "word": "centeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rye", + "example_sentence_native": "El pan de centeno es muy saludable.", + "example_sentence_english": "Rye bread is very healthy.", + "pos": "noun", + "word_frequency": 12037 + }, + { + "word": "cliché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cliché", + "example_sentence_native": "Su discurso estaba lleno de clichés.", + "example_sentence_english": "His speech was full of clichés.", + "pos": "noun", + "word_frequency": 12040 + }, + { + "word": "cojer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to take;to grab;(vulgar in some LatAm) to have sex", + "example_sentence_native": "Voy a cojer el autobús.", + "example_sentence_english": "I'm going to take the bus.", + "pos": "verb", + "word_frequency": 12041 + }, + { + "word": "colectividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collectivity;community", + "example_sentence_native": "La colectividad se unió para protestar.", + "example_sentence_english": "The community united to protest.", + "pos": "noun", + "word_frequency": 12042 + }, + { + "word": "colonialismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonialism", + "example_sentence_native": "El colonialismo dejó una profunda huella en la historia.", + "example_sentence_english": "Colonialism left a deep mark on history.", + "pos": "noun", + "word_frequency": 12043 + }, + { + "word": "coloquio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colloquium;discussion", + "example_sentence_native": "Participó en un coloquio sobre literatura.", + "example_sentence_english": "He participated in a colloquium on literature.", + "pos": "noun", + "word_frequency": 12044 + }, + { + "word": "compraventa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buying and selling;sale", + "example_sentence_native": "El contrato de compraventa fue firmado.", + "example_sentence_english": "The sales contract was signed.", + "pos": "noun", + "word_frequency": 12045 + }, + { + "word": "comprimir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compress", + "example_sentence_native": "Necesitas comprimir el archivo para enviarlo.", + "example_sentence_english": "You need to compress the file to send it.", + "pos": "verb", + "word_frequency": 12046 + }, + { + "word": "congelar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to freeze", + "example_sentence_native": "Voy a congelar las verduras frescas.", + "example_sentence_english": "I'm going to freeze the fresh vegetables.", + "pos": "verb", + "word_frequency": 12047 + }, + { + "word": "consentir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consent;to spoil (a child)", + "example_sentence_native": "No debes consentir todos sus caprichos.", + "example_sentence_english": "You shouldn't consent to all his whims.", + "pos": "verb", + "word_frequency": 12049 + }, + { + "word": "controvertido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversial", + "example_sentence_native": "Es un tema muy controvertido en la sociedad.", + "example_sentence_english": "It's a very controversial topic in society.", + "pos": "adjective", + "word_frequency": 12050 + }, + { + "word": "cosplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosplay", + "example_sentence_native": "Le encanta hacer cosplay de personajes de anime.", + "example_sentence_english": "He loves to cosplay anime characters.", + "pos": "noun", + "word_frequency": 12051 + }, + { + "word": "colar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strain;to filter;to sneak in", + "example_sentence_native": "Hay que colar el café antes de servirlo.", + "example_sentence_english": "You have to strain the coffee before serving it.", + "pos": "verb", + "word_frequency": 12052 + }, + { + "word": "cuestionable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questionable", + "example_sentence_native": "Su comportamiento fue bastante cuestionable.", + "example_sentence_english": "His behavior was quite questionable.", + "pos": "adjective", + "word_frequency": 12053 + }, + { + "word": "defensoría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ombudsman's office;public defender's office", + "example_sentence_native": "Acudió a la defensoría del pueblo para presentar su queja.", + "example_sentence_english": "He went to the ombudsman's office to file his complaint.", + "pos": "noun", + "word_frequency": 12056 + }, + { + "word": "deforestación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deforestation", + "example_sentence_native": "La deforestación es un problema ambiental grave.", + "example_sentence_english": "Deforestation is a serious environmental problem.", + "pos": "noun", + "word_frequency": 12057 + }, + { + "word": "denominador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denominator;common factor", + "example_sentence_native": "Busca el mínimo común denominador.", + "example_sentence_english": "Find the least common denominator.", + "pos": "noun", + "word_frequency": 12058 + }, + { + "word": "desembocadura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mouth (of a river);estuary", + "example_sentence_native": "El río tiene su desembocadura en el océano.", + "example_sentence_english": "The river has its mouth in the ocean.", + "pos": "noun", + "word_frequency": 12059 + }, + { + "word": "devenir", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "becoming;evolution;future", + "example_sentence_native": "El devenir de los acontecimientos es incierto.", + "example_sentence_english": "The becoming of events is uncertain.", + "pos": "noun", + "word_frequency": 12060 + }, + { + "word": "dominical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sunday (adj.);pertaining to Sunday", + "example_sentence_native": "El suplemento dominical del periódico es muy popular.", + "example_sentence_english": "The Sunday supplement of the newspaper is very popular.", + "pos": "adjective", + "word_frequency": 12061 + }, + { + "word": "elocuente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eloquent", + "example_sentence_native": "Su discurso fue muy elocuente y persuasivo.", + "example_sentence_english": "His speech was very eloquent and persuasive.", + "pos": "adjective", + "word_frequency": 12064 + }, + { + "word": "elogiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to praise;to commend", + "example_sentence_native": "El profesor elogió el trabajo de los estudiantes.", + "example_sentence_english": "The professor praised the students' work.", + "pos": "verb", + "word_frequency": 12065 + }, + { + "word": "emerger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emerge", + "example_sentence_native": "La verdad emergió después de la investigación.", + "example_sentence_english": "The truth emerged after the investigation.", + "pos": "verb", + "word_frequency": 12066 + }, + { + "word": "empatar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie (in a game);to draw", + "example_sentence_native": "El partido terminó en empate a cero.", + "example_sentence_english": "The match ended in a zero-zero tie.", + "pos": "verb", + "word_frequency": 12067 + }, + { + "word": "enchufe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plug;socket;connection (informal;nepotism)", + "example_sentence_native": "Necesito un enchufe para cargar mi teléfono.", + "example_sentence_english": "I need a plug to charge my phone.", + "pos": "noun", + "word_frequency": 12068 + }, + { + "word": "enlazar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to link;to connect", + "example_sentence_native": "Puedes enlazar este documento a la página web.", + "example_sentence_english": "You can link this document to the website.", + "pos": "verb", + "word_frequency": 12069 + }, + { + "word": "espeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thick;dense", + "example_sentence_native": "La sopa está muy espesa.", + "example_sentence_english": "The soup is very thick.", + "pos": "adjective", + "word_frequency": 12071 + }, + { + "word": "espontáneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spontaneously", + "example_sentence_native": "La gente empezó a aplaudir espontáneamente.", + "example_sentence_english": "People started to applaud spontaneously.", + "pos": "adverb", + "word_frequency": 12072 + }, + { + "word": "estabilizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stabilize", + "example_sentence_native": "Intentaron estabilizar la situación económica.", + "example_sentence_english": "They tried to stabilize the economic situation.", + "pos": "verb", + "word_frequency": 12073 + }, + { + "word": "estipular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stipulate", + "example_sentence_native": "El contrato estipula las condiciones de pago.", + "example_sentence_english": "The contract stipulates the payment conditions.", + "pos": "verb", + "word_frequency": 12074 + }, + { + "word": "estresante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stressful", + "example_sentence_native": "Mi trabajo puede ser muy estresante a veces.", + "example_sentence_english": "My job can be very stressful sometimes.", + "pos": "adjective", + "word_frequency": 12075 + }, + { + "word": "expresado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressed;stated", + "example_sentence_native": "Su opinión fue claramente expresada.", + "example_sentence_english": "His opinion was clearly expressed.", + "pos": "adjective", + "word_frequency": 12076 + }, + { + "word": "extravagante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extravagant;eccentric", + "example_sentence_native": "Llevaba un sombrero muy extravagante.", + "example_sentence_english": "She was wearing a very extravagant hat.", + "pos": "adjective", + "word_frequency": 12077 + }, + { + "word": "fantasy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fantasy", + "example_sentence_native": "Le gusta leer libros de fantasy.", + "example_sentence_english": "He likes to read fantasy books.", + "pos": "noun", + "word_frequency": 12078 + }, + { + "word": "fichar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sign (up;on);to clock in;out;to hire", + "example_sentence_native": "Tienes que fichar al entrar y salir del trabajo.", + "example_sentence_english": "You have to clock in and out of work.", + "pos": "verb", + "word_frequency": 12081 + }, + { + "word": "floral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floral", + "example_sentence_native": "El vestido tenía un estampado floral muy bonito.", + "example_sentence_english": "The dress had a very beautiful floral print.", + "pos": "adjective", + "word_frequency": 12082 + }, + { + "word": "furgoneta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "van", + "example_sentence_native": "Necesitamos una furgoneta grande para la mudanza.", + "example_sentence_english": "We need a big van for the move.", + "pos": "noun", + "word_frequency": 12085 + }, + { + "word": "fúnebre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funereal;mournful", + "example_sentence_native": "El ambiente en el velatorio era fúnebre.", + "example_sentence_english": "The atmosphere at the wake was funereal.", + "pos": "adjective", + "word_frequency": 12086 + }, + { + "word": "imprudente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprudent;reckless", + "example_sentence_native": "Fue una decisión imprudente conducir tan rápido.", + "example_sentence_english": "It was an imprudent decision to drive so fast.", + "pos": "adjective", + "word_frequency": 12093 + }, + { + "word": "inactividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inactivity", + "example_sentence_native": "La inactividad física puede llevar a problemas de salud.", + "example_sentence_english": "Physical inactivity can lead to health problems.", + "pos": "noun", + "word_frequency": 12094 + }, + { + "word": "incesante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incessant;ceaseless", + "example_sentence_native": "La lluvia incesante duró toda la noche.", + "example_sentence_english": "The incessant rain lasted all night.", + "pos": "adjective", + "word_frequency": 12095 + }, + { + "word": "incomparable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incomparable", + "example_sentence_native": "Su belleza es incomparable.", + "example_sentence_english": "Her beauty is incomparable.", + "pos": "adjective", + "word_frequency": 12096 + }, + { + "word": "indicativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicative", + "example_sentence_native": "El modo indicativo se usa para hechos reales.", + "example_sentence_english": "The indicative mood is used for real facts.", + "pos": "adjective", + "word_frequency": 12097 + }, + { + "word": "interruptor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "switch", + "example_sentence_native": "Apaga la luz con el interruptor.", + "example_sentence_english": "Turn off the light with the switch.", + "pos": "noun", + "word_frequency": 12098 + }, + { + "word": "intimidación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidation", + "example_sentence_native": "La intimidación en el trabajo es inaceptable.", + "example_sentence_english": "Intimidation at work is unacceptable.", + "pos": "noun", + "word_frequency": 12099 + }, + { + "word": "largometraje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feature film", + "example_sentence_native": "Este largometraje ganó varios premios.", + "example_sentence_english": "This feature film won several awards.", + "pos": "noun", + "word_frequency": 12105 + }, + { + "word": "lastre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballast;burden", + "example_sentence_native": "Su deuda se convirtió en un lastre para su progreso.", + "example_sentence_english": "His debt became a burden to his progress.", + "pos": "noun", + "word_frequency": 12106 + }, + { + "word": "logia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lodge;loggia", + "example_sentence_native": "La reunión se celebró en la antigua logia.", + "example_sentence_english": "The meeting was held in the old lodge.", + "pos": "noun", + "word_frequency": 12108 + }, + { + "word": "léxico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lexicon;vocabulary", + "example_sentence_native": "Su léxico es muy amplio para su edad.", + "example_sentence_english": "His vocabulary is very extensive for his age.", + "pos": "noun", + "word_frequency": 12110 + }, + { + "word": "magnesio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnesium", + "example_sentence_native": "El magnesio es importante para la salud ósea.", + "example_sentence_english": "Magnesium is important for bone health.", + "pos": "noun", + "word_frequency": 12112 + }, + { + "word": "manualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manually", + "example_sentence_native": "Tuve que introducir los datos manualmente.", + "example_sentence_english": "I had to enter the data manually.", + "pos": "adverb", + "word_frequency": 12115 + }, + { + "word": "marginado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marginalized;outcast", + "example_sentence_native": "La película trata sobre la vida de un grupo de jóvenes marginados.", + "example_sentence_english": "The film is about the life of a group of marginalized young people.", + "pos": "adjective", + "word_frequency": 12116 + }, + { + "word": "marioneta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puppet;marionette", + "example_sentence_native": "El titiritero movía las cuerdas de la marioneta.", + "example_sentence_english": "The puppeteer moved the strings of the marionette.", + "pos": "noun", + "word_frequency": 12117 + }, + { + "word": "masturbación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masturbation", + "example_sentence_native": "La masturbación es una forma de autoerotismo.", + "example_sentence_english": "Masturbation is a form of autoeroticism.", + "pos": "noun", + "word_frequency": 12118 + }, + { + "word": "muela", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "molar;wisdom tooth", + "example_sentence_native": "Me duele una muela del juicio.", + "example_sentence_english": "My wisdom tooth hurts.", + "pos": "noun", + "word_frequency": 12122 + }, + { + "word": "pajarito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little bird", + "example_sentence_native": "Un pajarito cantaba en el árbol.", + "example_sentence_english": "A little bird was singing in the tree.", + "pos": "noun", + "word_frequency": 12129 + }, + { + "word": "papeleo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paperwork;bureaucracy", + "example_sentence_native": "Hay mucho papeleo que hacer para la solicitud.", + "example_sentence_english": "There's a lot of paperwork to do for the application.", + "pos": "noun", + "word_frequency": 12130 + }, + { + "word": "pavón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peacock", + "example_sentence_native": "El pavón real exhibía sus plumas.", + "example_sentence_english": "The royal peacock displayed its feathers.", + "pos": "noun", + "word_frequency": 12131 + }, + { + "word": "pingüino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penguin", + "example_sentence_native": "Los pingüinos viven en regiones frías.", + "example_sentence_english": "Penguins live in cold regions.", + "pos": "noun", + "word_frequency": 12133 + }, + { + "word": "polis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police (informal)", + "example_sentence_native": "La polis llegó rápidamente al lugar del accidente.", + "example_sentence_english": "The police arrived quickly at the accident scene.", + "pos": "noun", + "word_frequency": 12135 + }, + { + "word": "poro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pore", + "example_sentence_native": "Los poros de la piel se abren con el calor.", + "example_sentence_english": "Skin pores open with heat.", + "pos": "noun", + "word_frequency": 12136 + }, + { + "word": "postulado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "postulate;premise", + "example_sentence_native": "Su teoría se basa en un postulado fundamental.", + "example_sentence_english": "His theory is based on a fundamental postulate.", + "pos": "noun", + "word_frequency": 12137 + }, + { + "word": "prolongar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prolong;to extend", + "example_sentence_native": "Intentaron prolongar la reunión lo máximo posible.", + "example_sentence_english": "They tried to prolong the meeting as much as possible.", + "pos": "verb", + "word_frequency": 12140 + }, + { + "word": "póster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster", + "example_sentence_native": "Colgó un póster de su banda favorita en la pared.", + "example_sentence_english": "He hung a poster of his favorite band on the wall.", + "pos": "noun", + "word_frequency": 12141 + }, + { + "word": "quimioterapia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemotherapy", + "example_sentence_native": "El paciente está recibiendo quimioterapia.", + "example_sentence_english": "The patient is receiving chemotherapy.", + "pos": "noun", + "word_frequency": 12142 + }, + { + "word": "radiografía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "X-ray", + "example_sentence_native": "Necesitamos una radiografía para ver el hueso roto.", + "example_sentence_english": "We need an X-ray to see the broken bone.", + "pos": "noun", + "word_frequency": 12143 + }, + { + "word": "razonablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasonably", + "example_sentence_native": "El precio es razonablemente justo.", + "example_sentence_english": "The price is reasonably fair.", + "pos": "adverb", + "word_frequency": 12144 + }, + { + "word": "reclusión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reclusion;confinement", + "example_sentence_native": "Fue sentenciado a reclusión en una prisión de máxima seguridad.", + "example_sentence_english": "He was sentenced to reclusion in a maximum-security prison.", + "pos": "noun", + "word_frequency": 12146 + }, + { + "word": "rectangular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rectangular", + "example_sentence_native": "La mesa es de forma rectangular.", + "example_sentence_english": "The table is rectangular in shape.", + "pos": "adjective", + "word_frequency": 12148 + }, + { + "word": "rumano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Romanian", + "example_sentence_native": "Habla rumano con fluidez.", + "example_sentence_english": "He speaks Romanian fluently.", + "pos": "adjective", + "word_frequency": 12151 + }, + { + "word": "secesión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secession", + "example_sentence_native": "El debate sobre la secesión ha sido intenso.", + "example_sentence_english": "The debate about secession has been intense.", + "pos": "noun", + "word_frequency": 12156 + }, + { + "word": "secuaz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "henchman;follower", + "example_sentence_native": "El villano y sus secuaces fueron capturados.", + "example_sentence_english": "The villain and his henchmen were captured.", + "pos": "noun", + "word_frequency": 12157 + }, + { + "word": "silenciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to silence", + "example_sentence_native": "Por favor, silencia tu teléfono durante la reunión.", + "example_sentence_english": "Please, silence your phone during the meeting.", + "pos": "verb", + "word_frequency": 12161 + }, + { + "word": "sintaxis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syntax", + "example_sentence_native": "La sintaxis de esta oración es compleja.", + "example_sentence_english": "The syntax of this sentence is complex.", + "pos": "noun", + "word_frequency": 12163 + }, + { + "word": "sujeción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fastening", + "example_sentence_native": "Asegura la sujeción de la carga.", + "example_sentence_english": "Ensure the fastening of the load.", + "pos": "noun", + "word_frequency": 12166 + }, + { + "word": "tangible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangible", + "example_sentence_native": "Necesitamos resultados tangibles.", + "example_sentence_english": "We need tangible results.", + "pos": "adjective", + "word_frequency": 12168 + }, + { + "word": "toxicidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toxicity", + "example_sentence_native": "Debemos evaluar la toxicidad de este producto.", + "example_sentence_english": "We must evaluate the toxicity of this product.", + "pos": "noun", + "word_frequency": 12171 + }, + { + "word": "transportista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carrier", + "example_sentence_native": "El transportista entregó el paquete.", + "example_sentence_english": "The carrier delivered the package.", + "pos": "noun", + "word_frequency": 12172 + }, + { + "word": "viceministro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deputy minister", + "example_sentence_native": "El viceministro anunció nuevas medidas.", + "example_sentence_english": "The deputy minister announced new measures.", + "pos": "noun", + "word_frequency": 12175 + }, + { + "word": "vocalista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vocalist", + "example_sentence_native": "La vocalista de la banda tiene una voz increíble.", + "example_sentence_english": "The band's vocalist has an incredible voice.", + "pos": "noun", + "word_frequency": 12176 + }, + { + "word": "volador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flying", + "example_sentence_native": "Vimos un objeto volador no identificado.", + "example_sentence_english": "We saw an unidentified flying object.", + "pos": "adjective", + "word_frequency": 12177 + }, + { + "word": "abordaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boarding", + "example_sentence_native": "El abordaje del avión comenzó a tiempo.", + "example_sentence_english": "The boarding of the plane started on time.", + "pos": "noun", + "word_frequency": 12185 + }, + { + "word": "acatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obey", + "example_sentence_native": "Debemos acatar las normas de seguridad.", + "example_sentence_english": "We must obey the safety rules.", + "pos": "verb", + "word_frequency": 12186 + }, + { + "word": "acidez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acidity", + "example_sentence_native": "Sufro de acidez estomacal después de comer.", + "example_sentence_english": "I suffer from heartburn after eating.", + "pos": "noun", + "word_frequency": 12187 + }, + { + "word": "acre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acre", + "example_sentence_native": "Compraron un terreno de diez acres.", + "example_sentence_english": "They bought a ten-acre plot of land.", + "pos": "noun", + "word_frequency": 12188 + }, + { + "word": "adversidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adversity", + "example_sentence_native": "Superó la adversidad con valentía.", + "example_sentence_english": "He overcame adversity with courage.", + "pos": "noun", + "word_frequency": 12189 + }, + { + "word": "altiplano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high plateau", + "example_sentence_native": "El altiplano andino es muy extenso.", + "example_sentence_english": "The Andean high plateau is very extensive.", + "pos": "noun", + "word_frequency": 12191 + }, + { + "word": "ancla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anchor", + "example_sentence_native": "El barco echó el ancla cerca de la costa.", + "example_sentence_english": "The ship dropped anchor near the coast.", + "pos": "noun", + "word_frequency": 12192 + }, + { + "word": "azulejo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tile", + "example_sentence_native": "La pared de la cocina está decorada con azulejos.", + "example_sentence_english": "The kitchen wall is decorated with tiles.", + "pos": "noun", + "word_frequency": 12197 + }, + { + "word": "bache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pothole", + "example_sentence_native": "Cuidado con el bache en la carretera.", + "example_sentence_english": "Beware of the pothole on the road.", + "pos": "noun", + "word_frequency": 12198 + }, + { + "word": "bastión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bastion", + "example_sentence_native": "Esa fortaleza era un bastión inexpugnable.", + "example_sentence_english": "That fortress was an impregnable bastion.", + "pos": "noun", + "word_frequency": 12199 + }, + { + "word": "baúl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk;chest", + "example_sentence_native": "Guardamos los recuerdos en un viejo baúl.", + "example_sentence_english": "We keep the memories in an old trunk.", + "pos": "noun", + "word_frequency": 12200 + }, + { + "word": "bipolar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bipolar", + "example_sentence_native": "El trastorno bipolar afecta el estado de ánimo.", + "example_sentence_english": "Bipolar disorder affects mood.", + "pos": "adjective", + "word_frequency": 12206 + }, + { + "word": "bisexual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bisexual", + "example_sentence_native": "Es importante respetar la identidad bisexual de las personas.", + "example_sentence_english": "It is important to respect people's bisexual identity.", + "pos": "adjective", + "word_frequency": 12207 + }, + { + "word": "bitácora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logbook;blog", + "example_sentence_native": "El capitán escribió en la bitácora del barco.", + "example_sentence_english": "The captain wrote in the ship's logbook.", + "pos": "noun", + "word_frequency": 12208 + }, + { + "word": "bocado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite;mouthful;snack", + "example_sentence_native": "Dame un bocado de tu pastel.", + "example_sentence_english": "Give me a bite of your cake.", + "pos": "noun", + "word_frequency": 12210 + }, + { + "word": "caché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cache;prestige", + "example_sentence_native": "Borra la caché del navegador para solucionar el problema.", + "example_sentence_english": "Clear the browser cache to fix the problem.", + "pos": "noun", + "word_frequency": 12212 + }, + { + "word": "cafetera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coffee maker;coffeepot", + "example_sentence_native": "La cafetera está en la cocina.", + "example_sentence_english": "The coffee maker is in the kitchen.", + "pos": "noun", + "word_frequency": 12213 + }, + { + "word": "camarera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waitress", + "example_sentence_native": "La camarera nos trajo la cuenta.", + "example_sentence_english": "The waitress brought us the bill.", + "pos": "noun", + "word_frequency": 12214 + }, + { + "word": "camarón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shrimp", + "example_sentence_native": "Me encantan los camarones al ajillo.", + "example_sentence_english": "I love garlic shrimp.", + "pos": "noun", + "word_frequency": 12215 + }, + { + "word": "camello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camel", + "example_sentence_native": "El camello puede vivir mucho tiempo sin agua.", + "example_sentence_english": "The camel can live a long time without water.", + "pos": "noun", + "word_frequency": 12216 + }, + { + "word": "cartelera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billboard;movie listings;playbill", + "example_sentence_native": "Consulté la cartelera para ver qué películas había.", + "example_sentence_english": "I checked the movie listings to see what movies were playing.", + "pos": "noun", + "word_frequency": 12217 + }, + { + "word": "catalizador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catalyst", + "example_sentence_native": "El catalizador acelera la reacción química.", + "example_sentence_english": "The catalyst speeds up the chemical reaction.", + "pos": "noun", + "word_frequency": 12218 + }, + { + "word": "cañada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glen;ravine;sheep track", + "example_sentence_native": "Caminamos por la cañada hasta el río.", + "example_sentence_english": "We walked through the glen to the river.", + "pos": "noun", + "word_frequency": 12219 + }, + { + "word": "chasis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chassis", + "example_sentence_native": "El chasis del coche estaba dañado.", + "example_sentence_english": "The car's chassis was damaged.", + "pos": "noun", + "word_frequency": 12222 + }, + { + "word": "cocción", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooking;boiling;baking", + "example_sentence_native": "El tiempo de cocción de las patatas es de 20 minutos.", + "example_sentence_english": "The cooking time for potatoes is 20 minutes.", + "pos": "noun", + "word_frequency": 12224 + }, + { + "word": "conocedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connoisseur;expert;knowledgeable person", + "example_sentence_native": "Es un conocedor de vinos.", + "example_sentence_english": "He is a wine connoisseur.", + "pos": "noun", + "word_frequency": 12225 + }, + { + "word": "contaminar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contaminate;to pollute", + "example_sentence_native": "No debemos contaminar el medio ambiente.", + "example_sentence_english": "We must not pollute the environment.", + "pos": "verb", + "word_frequency": 12227 + }, + { + "word": "cooperativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooperative", + "example_sentence_native": "Es importante ser cooperativo en el trabajo en equipo.", + "example_sentence_english": "It is important to be cooperative in teamwork.", + "pos": "adjective", + "word_frequency": 12228 + }, + { + "word": "coso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thingamajig;whatsit;place (bullring)", + "example_sentence_native": "Pásame ese coso que está en la mesa.", + "example_sentence_english": "Pass me that thingamajig on the table.", + "pos": "noun", + "word_frequency": 12230 + }, + { + "word": "crepúsculo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twilight;dusk", + "example_sentence_native": "El crepúsculo es mi momento favorito del día.", + "example_sentence_english": "Twilight is my favorite time of day.", + "pos": "noun", + "word_frequency": 12232 + }, + { + "word": "crónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronic", + "example_sentence_native": "Sufre de dolor crónico en la espalda.", + "example_sentence_english": "He suffers from chronic back pain.", + "pos": "adjective", + "word_frequency": 12233 + }, + { + "word": "cursi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corny;cheesy;tacky;kitschy", + "example_sentence_native": "Su estilo es un poco cursi para mi gusto.", + "example_sentence_english": "Her style is a bit corny for my taste.", + "pos": "adjective", + "word_frequency": 12236 + }, + { + "word": "deducción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduction;inference;tax deduction", + "example_sentence_native": "Llegó a esa conclusión por deducción lógica.", + "example_sentence_english": "He reached that conclusion by logical deduction.", + "pos": "noun", + "word_frequency": 12238 + }, + { + "word": "deplorable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deplorable;regrettable;lamentable", + "example_sentence_native": "Las condiciones de vida eran deplorables.", + "example_sentence_english": "The living conditions were deplorable.", + "pos": "adjective", + "word_frequency": 12239 + }, + { + "word": "descargo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discharge;acquittal", + "example_sentence_native": "El juez ordenó el descargo del acusado por falta de pruebas.", + "example_sentence_english": "The judge ordered the acquittal of the accused due to lack of evidence.", + "pos": "noun", + "word_frequency": 12240 + }, + { + "word": "difamación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defamation", + "example_sentence_native": "Presentó una demanda por difamación contra el periódico.", + "example_sentence_english": "He filed a defamation lawsuit against the newspaper.", + "pos": "noun", + "word_frequency": 12241 + }, + { + "word": "discriminar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discriminate", + "example_sentence_native": "Es ilegal discriminar a alguien por su origen.", + "example_sentence_english": "It is illegal to discriminate against someone based on their origin.", + "pos": "verb", + "word_frequency": 12243 + }, + { + "word": "disparate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonsense;absurdity", + "example_sentence_native": "Lo que dijo fue un completo disparate.", + "example_sentence_english": "What he said was complete nonsense.", + "pos": "noun", + "word_frequency": 12244 + }, + { + "word": "dispar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequal;disparate", + "example_sentence_native": "Tienen opiniones muy dispares sobre el tema.", + "example_sentence_english": "They have very disparate opinions on the subject.", + "pos": "adjective", + "word_frequency": 12245 + }, + { + "word": "diésel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diesel", + "example_sentence_native": "Mi coche funciona con diésel.", + "example_sentence_english": "My car runs on diesel.", + "pos": "noun", + "word_frequency": 12246 + }, + { + "word": "documentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to document", + "example_sentence_native": "Es importante documentar todos los pasos del proceso.", + "example_sentence_english": "It is important to document all steps of the process.", + "pos": "verb", + "word_frequency": 12247 + }, + { + "word": "drogadicto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug addict", + "example_sentence_native": "El centro ayuda a personas drogadictas a recuperarse.", + "example_sentence_english": "The center helps drug addicts recover.", + "pos": "noun", + "word_frequency": 12248 + }, + { + "word": "drogar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drug;to take drugs", + "example_sentence_native": "No debes drogarte, es peligroso para tu salud.", + "example_sentence_english": "You shouldn't take drugs, it's dangerous for your health.", + "pos": "verb", + "word_frequency": 12249 + }, + { + "word": "emblemático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emblematic", + "example_sentence_native": "La torre es un edificio emblemático de la ciudad.", + "example_sentence_english": "The tower is an emblematic building of the city.", + "pos": "adjective", + "word_frequency": 12251 + }, + { + "word": "empujón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "push;shove", + "example_sentence_native": "Le dio un empujón para que se moviera.", + "example_sentence_english": "He gave him a push to make him move.", + "pos": "noun", + "word_frequency": 12252 + }, + { + "word": "encarcelamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprisonment", + "example_sentence_native": "El encarcelamiento del criminal fue una victoria para la justicia.", + "example_sentence_english": "The imprisonment of the criminal was a victory for justice.", + "pos": "noun", + "word_frequency": 12253 + }, + { + "word": "encarnar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to embody;to incarnate", + "example_sentence_native": "El actor supo encarnar perfectamente al personaje.", + "example_sentence_english": "The actor perfectly embodied the character.", + "pos": "verb", + "word_frequency": 12254 + }, + { + "word": "encubrir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cover up;to conceal", + "example_sentence_native": "Intentaron encubrir el escándalo.", + "example_sentence_english": "They tried to cover up the scandal.", + "pos": "verb", + "word_frequency": 12255 + }, + { + "word": "equitativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equitable;fair", + "example_sentence_native": "Buscamos una solución equitativa para todas las partes.", + "example_sentence_english": "We are looking for an equitable solution for all parties.", + "pos": "adjective", + "word_frequency": 12256 + }, + { + "word": "escote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neckline;cleavage", + "example_sentence_native": "Llevaba un vestido con un escote pronunciado.", + "example_sentence_english": "She wore a dress with a deep neckline.", + "pos": "noun", + "word_frequency": 12257 + }, + { + "word": "estadísticamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statistically", + "example_sentence_native": "Estadísticamente, es muy poco probable que eso ocurra.", + "example_sentence_english": "Statistically, it is very unlikely that will happen.", + "pos": "adverb", + "word_frequency": 12258 + }, + { + "word": "estafador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swindler;con artist", + "example_sentence_native": "El estafador fue arrestado por defraudar a muchas personas.", + "example_sentence_english": "The swindler was arrested for defrauding many people.", + "pos": "noun", + "word_frequency": 12259 + }, + { + "word": "etimología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "etymology", + "example_sentence_native": "Me interesa la etimología de las palabras.", + "example_sentence_english": "I am interested in the etymology of words.", + "pos": "noun", + "word_frequency": 12260 + }, + { + "word": "fastidio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoyance;bother", + "example_sentence_native": "Es un fastidio tener que esperar tanto.", + "example_sentence_english": "It's an annoyance to have to wait so long.", + "pos": "noun", + "word_frequency": 12262 + }, + { + "word": "flamante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brand new;gleaming", + "example_sentence_native": "Compró un coche flamante.", + "example_sentence_english": "He bought a brand new car.", + "pos": "adjective", + "word_frequency": 12264 + }, + { + "word": "formacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;formation", + "example_sentence_native": "La formación profesional es muy importante hoy en día.", + "example_sentence_english": "Professional training is very important nowadays.", + "pos": "noun", + "word_frequency": 12265 + }, + { + "word": "fragmentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fragmentation", + "example_sentence_native": "La fragmentación del disco duro puede ralentizar el sistema.", + "example_sentence_english": "Hard drive fragmentation can slow down the system.", + "pos": "noun", + "word_frequency": 12266 + }, + { + "word": "fumador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoker", + "example_sentence_native": "Está prohibido fumar para los fumadores en este área.", + "example_sentence_english": "Smoking is prohibited for smokers in this area.", + "pos": "noun", + "word_frequency": 12267 + }, + { + "word": "funeraria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral home", + "example_sentence_native": "La funeraria se encargó de todos los arreglos.", + "example_sentence_english": "The funeral home took care of all the arrangements.", + "pos": "noun", + "word_frequency": 12268 + }, + { + "word": "ganso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goose;silly person", + "example_sentence_native": "Vimos un ganso nadando en el lago.", + "example_sentence_english": "We saw a goose swimming in the lake.", + "pos": "noun", + "word_frequency": 12269 + }, + { + "word": "generacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "generational", + "example_sentence_native": "Existe una brecha generacional entre padres e hijos.", + "example_sentence_english": "There is a generational gap between parents and children.", + "pos": "adjective", + "word_frequency": 12270 + }, + { + "word": "gesta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feat;deed;epic", + "example_sentence_native": "La conquista del Everest fue una gran gesta.", + "example_sentence_english": "The conquest of Everest was a great feat.", + "pos": "noun", + "word_frequency": 12272 + }, + { + "word": "golosina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweet;candy;treat", + "example_sentence_native": "A los niños les encantan las golosinas.", + "example_sentence_english": "Children love sweets.", + "pos": "noun", + "word_frequency": 12273 + }, + { + "word": "gremial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guild-related;trade union-related", + "example_sentence_native": "Se celebró una reunión gremial para discutir las nuevas normas.", + "example_sentence_english": "A trade union meeting was held to discuss the new rules.", + "pos": "adjective", + "word_frequency": 12274 + }, + { + "word": "habilitación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "qualification;authorization;enablement", + "example_sentence_native": "Necesita una habilitación especial para ejercer esa profesión.", + "example_sentence_english": "He needs a special qualification to practice that profession.", + "pos": "noun", + "word_frequency": 12275 + }, + { + "word": "hondureño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Honduran", + "example_sentence_native": "Conozco a una persona hondureña muy amable.", + "example_sentence_english": "I know a very kind Honduran person.", + "pos": "adjective", + "word_frequency": 12277 + }, + { + "word": "imputación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imputation;charge", + "example_sentence_native": "La imputación de cargos fue un shock para todos.", + "example_sentence_english": "The imputation of charges was a shock to everyone.", + "pos": "noun", + "word_frequency": 12280 + }, + { + "word": "inesperadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unexpectedly", + "example_sentence_native": "Inesperadamente, la lluvia comenzó a caer.", + "example_sentence_english": "Unexpectedly, the rain began to fall.", + "pos": "adverb", + "word_frequency": 12282 + }, + { + "word": "infiltración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infiltration", + "example_sentence_native": "Hubo una infiltración de agua en el sótano.", + "example_sentence_english": "There was water infiltration in the basement.", + "pos": "noun", + "word_frequency": 12283 + }, + { + "word": "inspeccionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inspect", + "example_sentence_native": "El técnico debe inspeccionar el equipo.", + "example_sentence_english": "The technician must inspect the equipment.", + "pos": "verb", + "word_frequency": 12284 + }, + { + "word": "institucionalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "institutionality", + "example_sentence_native": "La institucionalidad del país es fundamental para su estabilidad.", + "example_sentence_english": "The country's institutionality is fundamental for its stability.", + "pos": "noun", + "word_frequency": 12285 + }, + { + "word": "instar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to urge;to press", + "example_sentence_native": "El presidente instó a la población a mantener la calma.", + "example_sentence_english": "The president urged the population to remain calm.", + "pos": "verb", + "word_frequency": 12286 + }, + { + "word": "intencionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentionally", + "example_sentence_native": "Lo hizo intencionalmente para molestarme.", + "example_sentence_english": "He did it intentionally to annoy me.", + "pos": "adverb", + "word_frequency": 12287 + }, + { + "word": "ion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ion", + "example_sentence_native": "Un ion es un átomo con carga eléctrica.", + "example_sentence_english": "An ion is an atom with an electrical charge.", + "pos": "noun", + "word_frequency": 12289 + }, + { + "word": "laborista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laborist;Labour (party member)", + "example_sentence_native": "El partido laborista ganó las elecciones.", + "example_sentence_english": "The Labour party won the elections.", + "pos": "noun", + "word_frequency": 12294 + }, + { + "word": "lenteja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lentil", + "example_sentence_native": "Me encantan las lentejas con chorizo.", + "example_sentence_english": "I love lentils with chorizo.", + "pos": "noun", + "word_frequency": 12298 + }, + { + "word": "levadura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yeast", + "example_sentence_native": "Necesitamos levadura para hacer pan.", + "example_sentence_english": "We need yeast to make bread.", + "pos": "noun", + "word_frequency": 12299 + }, + { + "word": "liebre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hare", + "example_sentence_native": "La liebre corrió rápidamente por el campo.", + "example_sentence_english": "The hare ran quickly through the field.", + "pos": "noun", + "word_frequency": 12300 + }, + { + "word": "litigio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "litigation;dispute", + "example_sentence_native": "El litigio duró varios años.", + "example_sentence_english": "The litigation lasted several years.", + "pos": "noun", + "word_frequency": 12304 + }, + { + "word": "lugareño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local;villager", + "example_sentence_native": "Los lugareños son muy amables.", + "example_sentence_english": "The locals are very friendly.", + "pos": "noun", + "word_frequency": 12307 + }, + { + "word": "lupa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnifying glass", + "example_sentence_native": "Usó una lupa para ver los detalles.", + "example_sentence_english": "He used a magnifying glass to see the details.", + "pos": "noun", + "word_frequency": 12308 + }, + { + "word": "mandarín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mandarin (language;fruit)", + "example_sentence_native": "El mandarín es el idioma más hablado del mundo.", + "example_sentence_english": "Mandarin is the most spoken language in the world.", + "pos": "noun", + "word_frequency": 12310 + }, + { + "word": "mendigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beggar", + "example_sentence_native": "Un mendigo pedía limosna en la calle.", + "example_sentence_english": "A beggar was asking for alms on the street.", + "pos": "noun", + "word_frequency": 12312 + }, + { + "word": "microscopio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microscope", + "example_sentence_native": "Usamos un microscopio para ver las células.", + "example_sentence_english": "We use a microscope to see cells.", + "pos": "noun", + "word_frequency": 12313 + }, + { + "word": "milanesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "milanese (cutlet)", + "example_sentence_native": "Pedí una milanesa con papas fritas.", + "example_sentence_english": "I ordered a milanese cutlet with french fries.", + "pos": "noun", + "word_frequency": 12314 + }, + { + "word": "modernizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to modernize", + "example_sentence_native": "Necesitamos modernizar nuestros sistemas.", + "example_sentence_english": "We need to modernize our systems.", + "pos": "verb", + "word_frequency": 12315 + }, + { + "word": "mutante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutant", + "example_sentence_native": "Descubrieron una nueva especie mutante.", + "example_sentence_english": "They discovered a new mutant species.", + "pos": "adjective", + "word_frequency": 12317 + }, + { + "word": "nano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nano (prefix);nanometer", + "example_sentence_native": "La nanotecnología estudia materiales a escala nano.", + "example_sentence_english": "Nanotechnology studies materials at the nano scale.", + "pos": "noun", + "word_frequency": 12319 + }, + { + "word": "nono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ninth", + "example_sentence_native": "Él fue el nono en llegar a la meta.", + "example_sentence_english": "He was the ninth to reach the finish line.", + "pos": "noun", + "word_frequency": 12321 + }, + { + "word": "obsequio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gift;present", + "example_sentence_native": "Le dio un obsequio por su cumpleaños.", + "example_sentence_english": "He gave her a gift for her birthday.", + "pos": "noun", + "word_frequency": 12324 + }, + { + "word": "oda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ode", + "example_sentence_native": "El poeta escribió una oda a la alegría.", + "example_sentence_english": "The poet wrote an ode to joy.", + "pos": "noun", + "word_frequency": 12325 + }, + { + "word": "otorgamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "granting;bestowal", + "example_sentence_native": "El otorgamiento de la beca fue un gran alivio.", + "example_sentence_english": "The granting of the scholarship was a great relief.", + "pos": "noun", + "word_frequency": 12327 + }, + { + "word": "paralímpico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Paralympic", + "example_sentence_native": "Los Juegos Paralímpicos son una inspiración.", + "example_sentence_english": "The Paralympic Games are an inspiration.", + "pos": "adjective", + "word_frequency": 12328 + }, + { + "word": "paranoico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoid", + "example_sentence_native": "Se volvió paranoico después del incidente.", + "example_sentence_english": "He became paranoid after the incident.", + "pos": "adjective", + "word_frequency": 12329 + }, + { + "word": "pentágono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pentagon", + "example_sentence_native": "El Pentágono es la sede del Departamento de Defensa de EE. UU.", + "example_sentence_english": "The Pentagon is the headquarters of the U.S. Department of Defense.", + "pos": "noun", + "word_frequency": 12331 + }, + { + "word": "percusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percussion", + "example_sentence_native": "Me encanta el sonido de la percusión en la música.", + "example_sentence_english": "I love the sound of percussion in music.", + "pos": "noun", + "word_frequency": 12333 + }, + { + "word": "perfeccionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to perfect;to improve", + "example_sentence_native": "Necesito perfeccionar mi español.", + "example_sentence_english": "I need to perfect my Spanish.", + "pos": "verb", + "word_frequency": 12334 + }, + { + "word": "platicar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chat;to talk", + "example_sentence_native": "Nos gusta platicar por las tardes.", + "example_sentence_english": "We like to chat in the afternoons.", + "pos": "verb", + "word_frequency": 12336 + }, + { + "word": "plenaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plenary session", + "example_sentence_native": "La plenaria se celebrará mañana.", + "example_sentence_english": "The plenary session will be held tomorrow.", + "pos": "noun", + "word_frequency": 12337 + }, + { + "word": "portón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large gate;main gate", + "example_sentence_native": "El portón de la finca estaba abierto.", + "example_sentence_english": "The main gate of the estate was open.", + "pos": "noun", + "word_frequency": 12338 + }, + { + "word": "praxis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "praxis;practice", + "example_sentence_native": "La teoría debe ir de la mano con la praxis.", + "example_sentence_english": "Theory must go hand in hand with praxis.", + "pos": "noun", + "word_frequency": 12339 + }, + { + "word": "presentacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "presentation", + "example_sentence_native": "La presentación fue muy clara.", + "example_sentence_english": "The presentation was very clear.", + "pos": "noun", + "word_frequency": 12340 + }, + { + "word": "presentimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premonition;hunch", + "example_sentence_native": "Tuve un presentimiento de que algo iba a pasar.", + "example_sentence_english": "I had a premonition that something was going to happen.", + "pos": "noun", + "word_frequency": 12341 + }, + { + "word": "presupuestario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "budgetary", + "example_sentence_native": "Tenemos restricciones presupuestarias este año.", + "example_sentence_english": "We have budgetary restrictions this year.", + "pos": "adjective", + "word_frequency": 12343 + }, + { + "word": "principiante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beginner", + "example_sentence_native": "Soy principiante en el ajedrez.", + "example_sentence_english": "I am a beginner at chess.", + "pos": "noun", + "word_frequency": 12344 + }, + { + "word": "propiciar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to foster;to promote", + "example_sentence_native": "Debemos propiciar un ambiente de diálogo.", + "example_sentence_english": "We must foster an environment of dialogue.", + "pos": "verb", + "word_frequency": 12345 + }, + { + "word": "pros", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pros;advantages", + "example_sentence_native": "Analizamos los pros y los contras de la propuesta.", + "example_sentence_english": "We analyzed the pros and cons of the proposal.", + "pos": "noun", + "word_frequency": 12346 + }, + { + "word": "proseguir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to continue;to proceed", + "example_sentence_native": "La reunión debe proseguir sin interrupciones.", + "example_sentence_english": "The meeting must continue without interruptions.", + "pos": "verb", + "word_frequency": 12347 + }, + { + "word": "quiebre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break;rupture;collapse", + "example_sentence_native": "El quiebre de la relación fue doloroso.", + "example_sentence_english": "The break in the relationship was painful.", + "pos": "noun", + "word_frequency": 12349 + }, + { + "word": "regalía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "royalty;prerogative", + "example_sentence_native": "Recibe regalías por cada libro vendido.", + "example_sentence_english": "He receives royalties for each book sold.", + "pos": "noun", + "word_frequency": 12350 + }, + { + "word": "relajación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxation", + "example_sentence_native": "Necesito un momento de relajación después del trabajo.", + "example_sentence_english": "I need a moment of relaxation after work.", + "pos": "noun", + "word_frequency": 12351 + }, + { + "word": "ria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ria;estuary", + "example_sentence_native": "Las rías gallegas son famosas por su belleza.", + "example_sentence_english": "The Galician rias are famous for their beauty.", + "pos": "noun", + "word_frequency": 12353 + }, + { + "word": "safari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safari", + "example_sentence_native": "Fuimos de safari en África.", + "example_sentence_english": "We went on a safari in Africa.", + "pos": "noun", + "word_frequency": 12359 + }, + { + "word": "saquear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to loot;to sack", + "example_sentence_native": "Los piratas saquearon el pueblo costero.", + "example_sentence_english": "The pirates looted the coastal town.", + "pos": "verb", + "word_frequency": 12360 + }, + { + "word": "sicario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hitman;assassin", + "example_sentence_native": "El sicario fue contratado para eliminar al testigo.", + "example_sentence_english": "The hitman was hired to eliminate the witness.", + "pos": "noun", + "word_frequency": 12362 + }, + { + "word": "simio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ape", + "example_sentence_native": "Los simios son animales muy inteligentes.", + "example_sentence_english": "Apes are very intelligent animals.", + "pos": "noun", + "word_frequency": 12363 + }, + { + "word": "subsecretaría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undersecretariat", + "example_sentence_native": "La subsecretaría emitió un comunicado oficial.", + "example_sentence_english": "The undersecretariat issued an official statement.", + "pos": "noun", + "word_frequency": 12365 + }, + { + "word": "tempo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tempo;pace", + "example_sentence_native": "El director de orquesta ajustó el tempo de la pieza.", + "example_sentence_english": "The orchestra conductor adjusted the tempo of the piece.", + "pos": "noun", + "word_frequency": 12368 + }, + { + "word": "terciario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tertiary", + "example_sentence_native": "El sector terciario de la economía incluye los servicios.", + "example_sentence_english": "The tertiary sector of the economy includes services.", + "pos": "adjective", + "word_frequency": 12369 + }, + { + "word": "ternera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veal;calf", + "example_sentence_native": "Pedimos un plato de ternera con patatas.", + "example_sentence_english": "We ordered a dish of veal with potatoes.", + "pos": "noun", + "word_frequency": 12370 + }, + { + "word": "tesorería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treasury;bursary", + "example_sentence_native": "La tesorería del ayuntamiento gestiona los fondos públicos.", + "example_sentence_english": "The city council's treasury manages public funds.", + "pos": "noun", + "word_frequency": 12371 + }, + { + "word": "tripa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gut;tripe", + "example_sentence_native": "Me duele la tripa después de comer tanto.", + "example_sentence_english": "My gut hurts after eating so much.", + "pos": "noun", + "word_frequency": 12373 + }, + { + "word": "trucha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trout", + "example_sentence_native": "La trucha es un pescado de agua dulce muy apreciado.", + "example_sentence_english": "Trout is a highly prized freshwater fish.", + "pos": "noun", + "word_frequency": 12374 + }, + { + "word": "vacuno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cattle;beef", + "example_sentence_native": "La carne de vacuno es una fuente importante de proteínas.", + "example_sentence_english": "Beef is an important source of protein.", + "pos": "noun", + "word_frequency": 12375 + }, + { + "word": "vecinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neighborhood;local (adj.)", + "example_sentence_native": "La asociación vecinal organizó una fiesta para el barrio.", + "example_sentence_english": "The neighborhood association organized a party for the district.", + "pos": "adjective", + "word_frequency": 12377 + }, + { + "word": "vengador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avenger", + "example_sentence_native": "El héroe se convirtió en el vengador de su pueblo.", + "example_sentence_english": "The hero became the avenger of his people.", + "pos": "noun", + "word_frequency": 12379 + }, + { + "word": "vibrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vibrate;to thrill", + "example_sentence_native": "El teléfono empezó a vibrar en mi bolsillo.", + "example_sentence_english": "The phone started to vibrate in my pocket.", + "pos": "verb", + "word_frequency": 12380 + }, + { + "word": "vietnamita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Vietnamese", + "example_sentence_native": "La comida vietnamita es muy sabrosa.", + "example_sentence_english": "Vietnamese food is very tasty.", + "pos": "adjective", + "word_frequency": 12381 + }, + { + "word": "íntimamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intimately", + "example_sentence_native": "Están íntimamente relacionados con el problema.", + "example_sentence_english": "They are intimately related to the problem.", + "pos": "adverb", + "word_frequency": 12384 + }, + { + "word": "acantilado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cliff", + "example_sentence_native": "El faro se encuentra en la cima de un acantilado.", + "example_sentence_english": "The lighthouse is located on top of a cliff.", + "pos": "noun", + "word_frequency": 12385 + }, + { + "word": "acuático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aquatic", + "example_sentence_native": "Los deportes acuáticos son muy populares en verano.", + "example_sentence_english": "Aquatic sports are very popular in summer.", + "pos": "adjective", + "word_frequency": 12386 + }, + { + "word": "aforo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capacity;seating capacity", + "example_sentence_native": "El aforo máximo del local es de cien personas.", + "example_sentence_english": "The maximum capacity of the venue is one hundred people.", + "pos": "noun", + "word_frequency": 12387 + }, + { + "word": "agotar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exhaust;to sell out", + "example_sentence_native": "Las entradas para el concierto se agotaron rápidamente.", + "example_sentence_english": "The concert tickets sold out quickly.", + "pos": "verb", + "word_frequency": 12388 + }, + { + "word": "agravar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aggravate;to worsen", + "example_sentence_native": "La falta de lluvia podría agravar la sequía.", + "example_sentence_english": "The lack of rain could aggravate the drought.", + "pos": "verb", + "word_frequency": 12389 + }, + { + "word": "agredir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attack;to assault", + "example_sentence_native": "No debes agredir a nadie, ni física ni verbalmente.", + "example_sentence_english": "You should not attack anyone, neither physically nor verbally.", + "pos": "verb", + "word_frequency": 12390 + }, + { + "word": "aldeano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villager;peasant", + "example_sentence_native": "Los aldeanos vivían de la agricultura.", + "example_sentence_english": "The villagers lived from agriculture.", + "pos": "noun", + "word_frequency": 12392 + }, + { + "word": "alegremente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerfully;happily", + "example_sentence_native": "Cantaba alegremente mientras trabajaba.", + "example_sentence_english": "He sang cheerfully while working.", + "pos": "adverb", + "word_frequency": 12393 + }, + { + "word": "amazónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Amazonian", + "example_sentence_native": "La selva amazónica es el pulmón del planeta.", + "example_sentence_english": "The Amazonian jungle is the lung of the planet.", + "pos": "adjective", + "word_frequency": 12394 + }, + { + "word": "anarquismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchism", + "example_sentence_native": "El anarquismo es una filosofía política.", + "example_sentence_english": "Anarchism is a political philosophy.", + "pos": "noun", + "word_frequency": 12395 + }, + { + "word": "apatía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apathy", + "example_sentence_native": "Su apatía hacia el trabajo era evidente.", + "example_sentence_english": "His apathy towards work was evident.", + "pos": "noun", + "word_frequency": 12397 + }, + { + "word": "arduo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arduous;difficult", + "example_sentence_native": "Fue una tarea ardua, pero la completamos.", + "example_sentence_english": "It was an arduous task, but we completed it.", + "pos": "adjective", + "word_frequency": 12398 + }, + { + "word": "arriendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lease;rent (noun)", + "example_sentence_native": "Firmamos un contrato de arriendo por un año.", + "example_sentence_english": "We signed a lease contract for one year.", + "pos": "noun", + "word_frequency": 12399 + }, + { + "word": "audacia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audacity;daring", + "example_sentence_native": "Su audacia le permitió enfrentar el desafío.", + "example_sentence_english": "His audacity allowed him to face the challenge.", + "pos": "noun", + "word_frequency": 12400 + }, + { + "word": "bastardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bastard", + "example_sentence_native": "En la historia, a veces se usaba la palabra bastardo para describir a un hijo ilegítimo.", + "example_sentence_english": "In history, the word bastard was sometimes used to describe an illegitimate child.", + "pos": "noun", + "word_frequency": 12402 + }, + { + "word": "bermuda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bermuda shorts", + "example_sentence_native": "Me puse mis bermudas para ir a la playa.", + "example_sentence_english": "I put on my Bermuda shorts to go to the beach.", + "pos": "noun", + "word_frequency": 12403 + }, + { + "word": "bombilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light bulb", + "example_sentence_native": "La bombilla de la lámpara se quemó.", + "example_sentence_english": "The light bulb in the lamp burned out.", + "pos": "noun", + "word_frequency": 12404 + }, + { + "word": "bufanda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scarf", + "example_sentence_native": "Llevaba una bufanda de lana para protegerse del frío.", + "example_sentence_english": "She wore a wool scarf to protect herself from the cold.", + "pos": "noun", + "word_frequency": 12406 + }, + { + "word": "campeon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "champion", + "example_sentence_native": "El equipo se coronó campeón de la liga.", + "example_sentence_english": "The team was crowned champion of the league.", + "pos": "noun", + "word_frequency": 12407 + }, + { + "word": "candela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candle;flame;fire (colloquial)", + "example_sentence_native": "Encendimos una candela para iluminar la habitación.", + "example_sentence_english": "We lit a candle to illuminate the room.", + "pos": "noun", + "word_frequency": 12408 + }, + { + "word": "cantor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "singer (male);cantor", + "example_sentence_native": "El cantor principal tenía una voz muy potente.", + "example_sentence_english": "The lead singer had a very powerful voice.", + "pos": "noun", + "word_frequency": 12409 + }, + { + "word": "capacitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to train;to enable;to qualify", + "example_sentence_native": "La empresa va a capacitar a sus empleados en nuevas tecnologías.", + "example_sentence_english": "The company is going to train its employees in new technologies.", + "pos": "verb", + "word_frequency": 12410 + }, + { + "word": "caseta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "booth;hut;shed", + "example_sentence_native": "La caseta del guarda estaba al lado de la entrada.", + "example_sentence_english": "The guard's booth was next to the entrance.", + "pos": "noun", + "word_frequency": 12411 + }, + { + "word": "causal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causal", + "example_sentence_native": "Existe una relación causal entre el tabaquismo y el cáncer de pulmón.", + "example_sentence_english": "There is a causal relationship between smoking and lung cancer.", + "pos": "adjective", + "word_frequency": 12412 + }, + { + "word": "ceremonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceremonial", + "example_sentence_native": "El traje ceremonial se usa solo en ocasiones especiales.", + "example_sentence_english": "The ceremonial suit is only worn on special occasions.", + "pos": "adjective", + "word_frequency": 12413 + }, + { + "word": "chalet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chalet;detached house", + "example_sentence_native": "Pasamos las vacaciones en un bonito chalet en la montaña.", + "example_sentence_english": "We spent our vacation in a beautiful chalet in the mountains.", + "pos": "noun", + "word_frequency": 12414 + }, + { + "word": "coach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach", + "example_sentence_native": "El coach motivó al equipo antes del partido.", + "example_sentence_english": "The coach motivated the team before the game.", + "pos": "noun", + "word_frequency": 12416 + }, + { + "word": "comparecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appear (in court;before an authority)", + "example_sentence_native": "El testigo tuvo que comparecer ante el juez.", + "example_sentence_english": "The witness had to appear before the judge.", + "pos": "verb", + "word_frequency": 12417 + }, + { + "word": "conciudadano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fellow citizen", + "example_sentence_native": "Mis conciudadanos merecen un futuro mejor.", + "example_sentence_english": "My fellow citizens deserve a better future.", + "pos": "noun", + "word_frequency": 12418 + }, + { + "word": "conmemorativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commemorative", + "example_sentence_native": "Se emitió una moneda conmemorativa del evento.", + "example_sentence_english": "A commemorative coin for the event was issued.", + "pos": "adjective", + "word_frequency": 12419 + }, + { + "word": "connotación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connotation", + "example_sentence_native": "La palabra \"hogar\" tiene una connotación de calidez y seguridad.", + "example_sentence_english": "The word \"home\" has a connotation of warmth and security.", + "pos": "noun", + "word_frequency": 12420 + }, + { + "word": "consultoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultancy;consulting firm", + "example_sentence_native": "Contratamos una consultoría para mejorar nuestros procesos.", + "example_sentence_english": "We hired a consultancy to improve our processes.", + "pos": "noun", + "word_frequency": 12422 + }, + { + "word": "contractual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contractual", + "example_sentence_native": "Las obligaciones contractuales deben cumplirse.", + "example_sentence_english": "Contractual obligations must be fulfilled.", + "pos": "adjective", + "word_frequency": 12423 + }, + { + "word": "contrariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on the contrary;conversely", + "example_sentence_native": "Contrariamente a lo que se esperaba, el proyecto fue un éxito.", + "example_sentence_english": "Contrary to what was expected, the project was a success.", + "pos": "adverb", + "word_frequency": 12424 + }, + { + "word": "convulsión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convulsion;upheaval", + "example_sentence_native": "El paciente sufrió una convulsión durante la noche.", + "example_sentence_english": "The patient suffered a convulsion during the night.", + "pos": "noun", + "word_frequency": 12425 + }, + { + "word": "cronograma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timeline;schedule", + "example_sentence_native": "Necesitamos un cronograma detallado para el proyecto.", + "example_sentence_english": "We need a detailed timeline for the project.", + "pos": "noun", + "word_frequency": 12428 + }, + { + "word": "currículo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curriculum;CV;resume", + "example_sentence_native": "Actualicé mi currículo para la nueva oferta de trabajo.", + "example_sentence_english": "I updated my resume for the new job offer.", + "pos": "noun", + "word_frequency": 12429 + }, + { + "word": "cúmulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accumulation;cluster;heap", + "example_sentence_native": "Había un cúmulo de nubes en el horizonte.", + "example_sentence_english": "There was a cluster of clouds on the horizon.", + "pos": "noun", + "word_frequency": 12430 + }, + { + "word": "decepcionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappoint", + "example_sentence_native": "No quiero decepcionar a mis padres.", + "example_sentence_english": "I don't want to disappoint my parents.", + "pos": "verb", + "word_frequency": 12432 + }, + { + "word": "defunción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death;demise", + "example_sentence_native": "El certificado de defunción es un documento oficial.", + "example_sentence_english": "The death certificate is an official document.", + "pos": "noun", + "word_frequency": 12433 + }, + { + "word": "desafiante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenging;defiant", + "example_sentence_native": "Fue una tarea desafiante, pero la completamos.", + "example_sentence_english": "It was a challenging task, but we completed it.", + "pos": "adjective", + "word_frequency": 12435 + }, + { + "word": "descarar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be cheeky;brazen;to remove the face;skin (literal)", + "example_sentence_native": "No te atrevas a descararte así con tus mayores.", + "example_sentence_english": "Don't you dare be so cheeky with your elders.", + "pos": "verb", + "word_frequency": 12436 + }, + { + "word": "desintegración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disintegration", + "example_sentence_native": "La desintegración del imperio fue un proceso largo.", + "example_sentence_english": "The disintegration of the empire was a long process.", + "pos": "noun", + "word_frequency": 12437 + }, + { + "word": "deudor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debtor", + "example_sentence_native": "El deudor tiene un plazo para pagar su deuda.", + "example_sentence_english": "The debtor has a deadline to pay their debt.", + "pos": "noun", + "word_frequency": 12438 + }, + { + "word": "escalofriante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chilling", + "example_sentence_native": "Fue una historia escalofriante.", + "example_sentence_english": "It was a chilling story.", + "pos": "adjective", + "word_frequency": 12444 + }, + { + "word": "esclarecer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to clarify", + "example_sentence_native": "Necesitamos esclarecer los hechos.", + "example_sentence_english": "We need to clarify the facts.", + "pos": "verb", + "word_frequency": 12445 + }, + { + "word": "excedente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus", + "example_sentence_native": "Tenemos un excedente de producción este año.", + "example_sentence_english": "We have a production surplus this year.", + "pos": "noun", + "word_frequency": 12448 + }, + { + "word": "exención", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemption", + "example_sentence_native": "Solicitó una exención de impuestos.", + "example_sentence_english": "He applied for a tax exemption.", + "pos": "noun", + "word_frequency": 12449 + }, + { + "word": "exministro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former minister", + "example_sentence_native": "El exministro dio una conferencia.", + "example_sentence_english": "The former minister gave a lecture.", + "pos": "noun", + "word_frequency": 12450 + }, + { + "word": "eólico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wind (power)", + "example_sentence_native": "La energía eólica es renovable.", + "example_sentence_english": "Wind energy is renewable.", + "pos": "adjective", + "word_frequency": 12452 + }, + { + "word": "falacia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fallacy", + "example_sentence_native": "Su argumento se basaba en una falacia.", + "example_sentence_english": "His argument was based on a fallacy.", + "pos": "noun", + "word_frequency": 12453 + }, + { + "word": "fascinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fascinate", + "example_sentence_native": "Me fascina la historia antigua.", + "example_sentence_english": "Ancient history fascinates me.", + "pos": "verb", + "word_frequency": 12454 + }, + { + "word": "flow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow (rhythm;style)", + "example_sentence_native": "Ese rapero tiene un flow increíble.", + "example_sentence_english": "That rapper has an incredible flow.", + "pos": "noun", + "word_frequency": 12455 + }, + { + "word": "fotografiar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to photograph", + "example_sentence_native": "Le gusta fotografiar paisajes.", + "example_sentence_english": "He likes to photograph landscapes.", + "pos": "verb", + "word_frequency": 12456 + }, + { + "word": "fragilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragility", + "example_sentence_native": "La fragilidad del cristal es evidente.", + "example_sentence_english": "The fragility of the glass is evident.", + "pos": "noun", + "word_frequency": 12457 + }, + { + "word": "gong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gong", + "example_sentence_native": "El sonido del gong anunció el inicio.", + "example_sentence_english": "The sound of the gong announced the start.", + "pos": "noun", + "word_frequency": 12460 + }, + { + "word": "historiografía", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "historiography", + "example_sentence_native": "La historiografía moderna ha evolucionado mucho.", + "example_sentence_english": "Modern historiography has evolved a lot.", + "pos": "noun", + "word_frequency": 12466 + }, + { + "word": "hurto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theft", + "example_sentence_native": "Fue acusado de hurto menor.", + "example_sentence_english": "He was accused of petty theft.", + "pos": "noun", + "word_frequency": 12469 + }, + { + "word": "idem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idem", + "example_sentence_native": "Su opinión es ídem a la mía.", + "example_sentence_english": "His opinion is the same as mine.", + "pos": "adverb", + "word_frequency": 12470 + }, + { + "word": "idóneo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suitable", + "example_sentence_native": "Es el candidato idóneo para el puesto.", + "example_sentence_english": "He is the ideal candidate for the position.", + "pos": "adjective", + "word_frequency": 12471 + }, + { + "word": "impotente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerless", + "example_sentence_native": "Se sintió impotente ante la situación.", + "example_sentence_english": "He felt powerless in the situation.", + "pos": "adjective", + "word_frequency": 12472 + }, + { + "word": "impredecible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpredictable", + "example_sentence_native": "El clima en esta región es impredecible.", + "example_sentence_english": "The weather in this region is unpredictable.", + "pos": "adjective", + "word_frequency": 12473 + }, + { + "word": "infalible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infallible", + "example_sentence_native": "No existe un método infalible.", + "example_sentence_english": "There is no infallible method.", + "pos": "adjective", + "word_frequency": 12474 + }, + { + "word": "ingesta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intake", + "example_sentence_native": "La ingesta diaria de vitaminas es importante.", + "example_sentence_english": "Daily vitamin intake is important.", + "pos": "noun", + "word_frequency": 12475 + }, + { + "word": "investigado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigated", + "example_sentence_native": "El caso sigue siendo investigado.", + "example_sentence_english": "The case is still being investigated.", + "pos": "adjective", + "word_frequency": 12476 + }, + { + "word": "invocar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to invoke", + "example_sentence_native": "Decidió invocar su derecho a guardar silencio.", + "example_sentence_english": "He decided to invoke his right to remain silent.", + "pos": "verb", + "word_frequency": 12477 + }, + { + "word": "irritación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritation", + "example_sentence_native": "Sintió una leve irritación en la piel.", + "example_sentence_english": "He felt a slight irritation on his skin.", + "pos": "noun", + "word_frequency": 12478 + }, + { + "word": "joker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joker", + "example_sentence_native": "En la baraja, el comodín es el joker.", + "example_sentence_english": "In the deck, the wild card is the joker.", + "pos": "noun", + "word_frequency": 12479 + }, + { + "word": "laburar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work (colloquial)", + "example_sentence_native": "Tengo que laburar hasta tarde hoy.", + "example_sentence_english": "I have to work late today.", + "pos": "verb", + "word_frequency": 12482 + }, + { + "word": "marginación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marginalization", + "example_sentence_native": "La marginación social es un problema grave.", + "example_sentence_english": "Social marginalization is a serious problem.", + "pos": "noun", + "word_frequency": 12489 + }, + { + "word": "meteorito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meteorite", + "example_sentence_native": "Un meteorito cayó en el desierto.", + "example_sentence_english": "A meteorite fell in the desert.", + "pos": "noun", + "word_frequency": 12491 + }, + { + "word": "milagroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miraculous", + "example_sentence_native": "Fue una recuperación milagrosa.", + "example_sentence_english": "It was a miraculous recovery.", + "pos": "adjective", + "word_frequency": 12492 + }, + { + "word": "miliciano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militiaman", + "example_sentence_native": "El miliciano defendió su pueblo con valentía.", + "example_sentence_english": "The militiaman bravely defended his town.", + "pos": "noun", + "word_frequency": 12493 + }, + { + "word": "modernismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernism", + "example_sentence_native": "El modernismo fue un movimiento artístico importante.", + "example_sentence_english": "Modernism was an important artistic movement.", + "pos": "noun", + "word_frequency": 12494 + }, + { + "word": "métrica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meter;metrics", + "example_sentence_native": "La métrica de este poema es irregular.", + "example_sentence_english": "The meter of this poem is irregular.", + "pos": "noun", + "word_frequency": 12501 + }, + { + "word": "nafta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gasoline;naphtha", + "example_sentence_native": "Necesito poner nafta al coche.", + "example_sentence_english": "I need to put gasoline in the car.", + "pos": "noun", + "word_frequency": 12502 + }, + { + "word": "narrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrative", + "example_sentence_native": "El estilo narrativo del autor es muy envolvente.", + "example_sentence_english": "The author's narrative style is very engaging.", + "pos": "adjective", + "word_frequency": 12503 + }, + { + "word": "navío", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ship;vessel", + "example_sentence_native": "El navío zarpó hacia el puerto.", + "example_sentence_english": "The ship set sail for the port.", + "pos": "noun", + "word_frequency": 12506 + }, + { + "word": "netamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clearly;purely;distinctly", + "example_sentence_native": "Su argumento era netamente político.", + "example_sentence_english": "His argument was purely political.", + "pos": "adverb", + "word_frequency": 12507 + }, + { + "word": "numeración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numbering;numeration", + "example_sentence_native": "Revisa la numeración de las páginas.", + "example_sentence_english": "Check the numbering of the pages.", + "pos": "noun", + "word_frequency": 12509 + }, + { + "word": "obelisco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obelisk", + "example_sentence_native": "El obelisco es un monumento imponente.", + "example_sentence_english": "The obelisk is an imposing monument.", + "pos": "noun", + "word_frequency": 12510 + }, + { + "word": "orinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to urinate", + "example_sentence_native": "El perro necesita orinar en el parque.", + "example_sentence_english": "The dog needs to urinate in the park.", + "pos": "verb", + "word_frequency": 12513 + }, + { + "word": "peludo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairy;furry", + "example_sentence_native": "Mi perro es muy peludo.", + "example_sentence_english": "My dog is very hairy.", + "pos": "adjective", + "word_frequency": 12516 + }, + { + "word": "plegaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prayer", + "example_sentence_native": "Elevó una plegaria al cielo.", + "example_sentence_english": "He raised a prayer to heaven.", + "pos": "noun", + "word_frequency": 12520 + }, + { + "word": "poster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster", + "example_sentence_native": "Compró un poster de su banda favorita.", + "example_sentence_english": "He bought a poster of his favorite band.", + "pos": "noun", + "word_frequency": 12521 + }, + { + "word": "prisma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prism", + "example_sentence_native": "La luz se descompuso al pasar por el prisma.", + "example_sentence_english": "The light decomposed when passing through the prism.", + "pos": "noun", + "word_frequency": 12522 + }, + { + "word": "puñalada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stab;knife wound", + "example_sentence_native": "Recibió una puñalada en el brazo.", + "example_sentence_english": "He received a stab wound in the arm.", + "pos": "noun", + "word_frequency": 12523 + }, + { + "word": "referendum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referendum", + "example_sentence_native": "Se convocó un referendum para decidir el futuro del país.", + "example_sentence_english": "A referendum was called to decide the future of the country.", + "pos": "noun", + "word_frequency": 12526 + }, + { + "word": "remolque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer;tow", + "example_sentence_native": "El coche llevaba un remolque con equipaje.", + "example_sentence_english": "The car was pulling a trailer with luggage.", + "pos": "noun", + "word_frequency": 12527 + }, + { + "word": "renacer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be reborn;to revive", + "example_sentence_native": "Después de la crisis, la ciudad logró renacer.", + "example_sentence_english": "After the crisis, the city managed to be reborn.", + "pos": "verb", + "word_frequency": 12528 + }, + { + "word": "reptil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reptile", + "example_sentence_native": "Las serpientes son reptiles.", + "example_sentence_english": "Snakes are reptiles.", + "pos": "noun", + "word_frequency": 12529 + }, + { + "word": "respiratorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respiratory", + "example_sentence_native": "Tiene un problema respiratorio.", + "example_sentence_english": "He has a respiratory problem.", + "pos": "adjective", + "word_frequency": 12530 + }, + { + "word": "resplandor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glow;radiance;splendor", + "example_sentence_native": "El resplandor del sol al amanecer era hermoso.", + "example_sentence_english": "The glow of the sun at dawn was beautiful.", + "pos": "noun", + "word_frequency": 12531 + }, + { + "word": "revolver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stir;to rummage;to revolve", + "example_sentence_native": "Revolvió el café con la cuchara.", + "example_sentence_english": "He stirred the coffee with the spoon.", + "pos": "verb", + "word_frequency": 12532 + }, + { + "word": "robótica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robotics", + "example_sentence_native": "La robótica es un campo en constante avance.", + "example_sentence_english": "Robotics is a constantly advancing field.", + "pos": "noun", + "word_frequency": 12533 + }, + { + "word": "sandalia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sandal", + "example_sentence_native": "Llevaba sandalias en la playa.", + "example_sentence_english": "She wore sandals on the beach.", + "pos": "noun", + "word_frequency": 12535 + }, + { + "word": "sentenciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sentence;to condemn", + "example_sentence_native": "El juez va a sentenciar al acusado.", + "example_sentence_english": "The judge is going to sentence the accused.", + "pos": "verb", + "word_frequency": 12536 + }, + { + "word": "severidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severity;strictness", + "example_sentence_native": "La severidad de la ley es necesaria.", + "example_sentence_english": "The severity of the law is necessary.", + "pos": "noun", + "word_frequency": 12537 + }, + { + "word": "sintético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synthetic", + "example_sentence_native": "La ropa está hecha de fibra sintética.", + "example_sentence_english": "The clothes are made of synthetic fiber.", + "pos": "adjective", + "word_frequency": 12540 + }, + { + "word": "solidez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solidity;firmness;robustness", + "example_sentence_native": "La solidez de la estructura es impresionante.", + "example_sentence_english": "The solidity of the structure is impressive.", + "pos": "noun", + "word_frequency": 12541 + }, + { + "word": "sublevación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uprising;rebellion", + "example_sentence_native": "La sublevación fue rápidamente sofocada.", + "example_sentence_english": "The uprising was quickly suppressed.", + "pos": "noun", + "word_frequency": 12544 + }, + { + "word": "sándwich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sandwich", + "example_sentence_native": "Quiero un sándwich de jamón y queso.", + "example_sentence_english": "I want a ham and cheese sandwich.", + "pos": "noun", + "word_frequency": 12545 + }, + { + "word": "teoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theory", + "example_sentence_native": "Su teoria sobre el origen del universo es interesante.", + "example_sentence_english": "His theory about the origin of the universe is interesting.", + "pos": "noun", + "word_frequency": 12549 + }, + { + "word": "testosterona", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testosterone", + "example_sentence_native": "La testosterona es una hormona importante.", + "example_sentence_english": "Testosterone is an important hormone.", + "pos": "noun", + "word_frequency": 12550 + }, + { + "word": "tocino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bacon", + "example_sentence_native": "Me gusta el tocino crujiente.", + "example_sentence_english": "I like crispy bacon.", + "pos": "noun", + "word_frequency": 12553 + }, + { + "word": "triangular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triangular", + "example_sentence_native": "La mesa tiene una forma triangular.", + "example_sentence_english": "The table has a triangular shape.", + "pos": "adjective", + "word_frequency": 12556 + }, + { + "word": "turbio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murky;cloudy;shady", + "example_sentence_native": "El agua del río estaba turbia después de la lluvia.", + "example_sentence_english": "The river water was murky after the rain.", + "pos": "adjective", + "word_frequency": 12557 + }, + { + "word": "vejiga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bladder", + "example_sentence_native": "La vejiga almacena la orina.", + "example_sentence_english": "The bladder stores urine.", + "pos": "noun", + "word_frequency": 12558 + }, + { + "word": "vello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fine hair;downy hair", + "example_sentence_native": "Tiene vello fino en los brazos.", + "example_sentence_english": "He has fine hair on his arms.", + "pos": "noun", + "word_frequency": 12559 + }, + { + "word": "vicuña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vicuña", + "example_sentence_native": "La vicuña es un animal andino.", + "example_sentence_english": "The vicuña is an Andean animal.", + "pos": "noun", + "word_frequency": 12560 + }, + { + "word": "viejito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little old man;woman;elderly (affectionate)", + "example_sentence_native": "Mi abuelo es un viejito muy amable.", + "example_sentence_english": "My grandfather is a very kind old man.", + "pos": "adjective", + "word_frequency": 12562 + }, + { + "word": "visualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visually", + "example_sentence_native": "El diseño es visualmente atractivo.", + "example_sentence_english": "The design is visually appealing.", + "pos": "adverb", + "word_frequency": 12564 + }, + { + "word": "votado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voted (for);elected", + "example_sentence_native": "El candidato más votado ganó las elecciones.", + "example_sentence_english": "The most voted candidate won the elections.", + "pos": "adjective", + "word_frequency": 12565 + }, + { + "word": "yugo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yoke", + "example_sentence_native": "Los bueyes tiraban del arado bajo el yugo.", + "example_sentence_english": "The oxen pulled the plow under the yoke.", + "pos": "noun", + "word_frequency": 12567 + }, + { + "word": "íntegro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integral;whole;upright", + "example_sentence_native": "Es una persona íntegra y honesta.", + "example_sentence_english": "He is an upright and honest person.", + "pos": "adjective", + "word_frequency": 12568 + }, + { + "word": "5to", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "5th;fifth", + "example_sentence_native": "Es el 5to piso del edificio.", + "example_sentence_english": "It's the 5th floor of the building.", + "pos": "adjective", + "word_frequency": 12569 + }, + { + "word": "absolución", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absolution;acquittal", + "example_sentence_native": "El juez dictó la absolución del acusado.", + "example_sentence_english": "The judge pronounced the acquittal of the accused.", + "pos": "noun", + "word_frequency": 12571 + }, + { + "word": "alabanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise", + "example_sentence_native": "Recibió muchas alabanzas por su trabajo.", + "example_sentence_english": "He received much praise for his work.", + "pos": "noun", + "word_frequency": 12573 + }, + { + "word": "alternativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternatively", + "example_sentence_native": "Podemos ir en coche o, alternativamente, en tren.", + "example_sentence_english": "We can go by car or, alternatively, by train.", + "pos": "adverb", + "word_frequency": 12576 + }, + { + "word": "antecesor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predecessor", + "example_sentence_native": "Su antecesor dejó un legado importante.", + "example_sentence_english": "His predecessor left an important legacy.", + "pos": "noun", + "word_frequency": 12578 + }, + { + "word": "aplastante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming;crushing", + "example_sentence_native": "Obtuvo una victoria aplastante.", + "example_sentence_english": "He achieved an overwhelming victory.", + "pos": "adjective", + "word_frequency": 12579 + }, + { + "word": "apostólico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apostolic", + "example_sentence_native": "La sucesión apostólica es importante en la Iglesia.", + "example_sentence_english": "Apostolic succession is important in the Church.", + "pos": "adjective", + "word_frequency": 12580 + }, + { + "word": "arqueólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeologist", + "example_sentence_native": "El arqueólogo descubrió ruinas antiguas.", + "example_sentence_english": "The archaeologist discovered ancient ruins.", + "pos": "noun", + "word_frequency": 12581 + }, + { + "word": "asimilación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assimilation", + "example_sentence_native": "La asimilación cultural es un proceso complejo.", + "example_sentence_english": "Cultural assimilation is a complex process.", + "pos": "noun", + "word_frequency": 12582 + }, + { + "word": "atraco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robbery;holdup", + "example_sentence_native": "Hubo un atraco en el banco anoche.", + "example_sentence_english": "There was a robbery at the bank last night.", + "pos": "noun", + "word_frequency": 12584 + }, + { + "word": "atropellar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to run over;to knock down", + "example_sentence_native": "El coche atropelló a un perro.", + "example_sentence_english": "The car ran over a dog.", + "pos": "verb", + "word_frequency": 12585 + }, + { + "word": "autobiografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autobiography", + "example_sentence_native": "Escribió su autobiografía a los ochenta años.", + "example_sentence_english": "He wrote his autobiography at eighty years old.", + "pos": "noun", + "word_frequency": 12586 + }, + { + "word": "avion", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airplane", + "example_sentence_native": "El avión despegó a tiempo.", + "example_sentence_english": "The airplane took off on time.", + "pos": "noun", + "word_frequency": 12587 + }, + { + "word": "barbero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barber", + "example_sentence_native": "Fui al barbero para un corte de pelo.", + "example_sentence_english": "I went to the barber for a haircut.", + "pos": "noun", + "word_frequency": 12588 + }, + { + "word": "benigno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benign;kind", + "example_sentence_native": "El tumor resultó ser benigno.", + "example_sentence_english": "The tumor turned out to be benign.", + "pos": "adjective", + "word_frequency": 12590 + }, + { + "word": "bizarro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brave;gallant", + "example_sentence_native": "Mostró un comportamiento bizarro ante el peligro.", + "example_sentence_english": "He showed brave behavior in the face of danger.", + "pos": "adjective", + "word_frequency": 12591 + }, + { + "word": "bolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bowling pin;small ball", + "example_sentence_native": "Derribó todos los bolos con un solo tiro.", + "example_sentence_english": "He knocked down all the bowling pins with one shot.", + "pos": "noun", + "word_frequency": 12593 + }, + { + "word": "buscado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wanted;sought after", + "example_sentence_native": "Es un criminal muy buscado.", + "example_sentence_english": "He is a very wanted criminal.", + "pos": "adjective", + "word_frequency": 12594 + }, + { + "word": "campera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jacket (esp. in Argentina;Uruguay)", + "example_sentence_native": "Ponte la campera, hace frío.", + "example_sentence_english": "Put on your jacket, it's cold.", + "pos": "noun", + "word_frequency": 12595 + }, + { + "word": "chequeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "check-up;verification", + "example_sentence_native": "Necesito un chequeo médico anual.", + "example_sentence_english": "I need an annual medical check-up.", + "pos": "noun", + "word_frequency": 12598 + }, + { + "word": "chucha", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opossum (Colombia);(vulgar) vagina", + "example_sentence_native": "Vimos una chucha en el árbol.", + "example_sentence_english": "We saw an opossum in the tree.", + "pos": "noun", + "word_frequency": 12599 + }, + { + "word": "collado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hill;knoll", + "example_sentence_native": "Subimos al collado para ver el amanecer.", + "example_sentence_english": "We climbed the hill to see the sunrise.", + "pos": "noun", + "word_frequency": 12600 + }, + { + "word": "concordancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreement;concordance", + "example_sentence_native": "Debe haber concordancia entre el sujeto y el verbo.", + "example_sentence_english": "There must be agreement between the subject and the verb.", + "pos": "noun", + "word_frequency": 12601 + }, + { + "word": "cosmopolita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmopolitan", + "example_sentence_native": "Madrid es una ciudad muy cosmopolita.", + "example_sentence_english": "Madrid is a very cosmopolitan city.", + "pos": "adjective", + "word_frequency": 12602 + }, + { + "word": "deportación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deportation", + "example_sentence_native": "La deportación fue un tema controvertido.", + "example_sentence_english": "The deportation was a controversial topic.", + "pos": "noun", + "word_frequency": 12603 + }, + { + "word": "derroche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste;extravagance", + "example_sentence_native": "El derroche de agua es un problema grave.", + "example_sentence_english": "The waste of water is a serious problem.", + "pos": "noun", + "word_frequency": 12604 + }, + { + "word": "desalojar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evict;to dislodge", + "example_sentence_native": "La policía tuvo que desalojar el edificio.", + "example_sentence_english": "The police had to evict the building.", + "pos": "verb", + "word_frequency": 12605 + }, + { + "word": "dialéctica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialectic", + "example_sentence_native": "La dialéctica es fundamental en la filosofía.", + "example_sentence_english": "Dialectic is fundamental in philosophy.", + "pos": "noun", + "word_frequency": 12606 + }, + { + "word": "discordia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discord;disagreement", + "example_sentence_native": "La discordia entre ellos era evidente.", + "example_sentence_english": "The discord between them was evident.", + "pos": "noun", + "word_frequency": 12607 + }, + { + "word": "encrucijada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossroads;dilemma", + "example_sentence_native": "Estamos en una encrucijada importante.", + "example_sentence_english": "We are at an important crossroads.", + "pos": "noun", + "word_frequency": 12609 + }, + { + "word": "enganchar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hook;to get hooked;to connect", + "example_sentence_native": "La serie me enganchó desde el primer capítulo.", + "example_sentence_english": "The series hooked me from the first episode.", + "pos": "verb", + "word_frequency": 12610 + }, + { + "word": "enganche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "down payment;hook;connection", + "example_sentence_native": "Dio un enganche para comprar el coche.", + "example_sentence_english": "He gave a down payment to buy the car.", + "pos": "noun", + "word_frequency": 12611 + }, + { + "word": "engañoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misleading;deceptive", + "example_sentence_native": "La publicidad puede ser muy engañosa.", + "example_sentence_english": "Advertising can be very misleading.", + "pos": "adjective", + "word_frequency": 12612 + }, + { + "word": "entrevistado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interviewed (adj);interviewee (noun)", + "example_sentence_native": "El entrevistado respondió con sinceridad.", + "example_sentence_english": "The interviewee answered sincerely.", + "pos": "adjective", + "word_frequency": 12613 + }, + { + "word": "entusiasmar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excite;to enthuse", + "example_sentence_native": "Su idea me entusiasmó mucho.", + "example_sentence_english": "His idea excited me a lot.", + "pos": "verb", + "word_frequency": 12614 + }, + { + "word": "estructurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to structure;to organize", + "example_sentence_native": "Necesitamos estructurar mejor el proyecto.", + "example_sentence_english": "We need to structure the project better.", + "pos": "verb", + "word_frequency": 12616 + }, + { + "word": "explanada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esplanade;open space", + "example_sentence_native": "La explanada estaba llena de gente.", + "example_sentence_english": "The esplanade was full of people.", + "pos": "noun", + "word_frequency": 12617 + }, + { + "word": "fermentación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fermentation", + "example_sentence_native": "La fermentación es clave en la producción de vino.", + "example_sentence_english": "Fermentation is key in wine production.", + "pos": "noun", + "word_frequency": 12622 + }, + { + "word": "forjar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to forge;to shape;to build", + "example_sentence_native": "Es importante forjar buenas relaciones.", + "example_sentence_english": "It's important to forge good relationships.", + "pos": "verb", + "word_frequency": 12624 + }, + { + "word": "formalidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formality;seriousness", + "example_sentence_native": "Se requiere cierta formalidad para el evento.", + "example_sentence_english": "A certain formality is required for the event.", + "pos": "noun", + "word_frequency": 12625 + }, + { + "word": "fulano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so-and-so;what's-his-name", + "example_sentence_native": "Fulano de tal dijo que vendría.", + "example_sentence_english": "So-and-so said he would come.", + "pos": "noun", + "word_frequency": 12627 + }, + { + "word": "galletita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cookie;biscuit (small)", + "example_sentence_native": "Me comí una galletita con el café.", + "example_sentence_english": "I ate a small cookie with my coffee.", + "pos": "noun", + "word_frequency": 12630 + }, + { + "word": "gaucho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gaucho (South American cowboy)", + "example_sentence_native": "El gaucho es un símbolo de la cultura argentina.", + "example_sentence_english": "The gaucho is a symbol of Argentine culture.", + "pos": "noun", + "word_frequency": 12631 + }, + { + "word": "genialidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genius;brilliance", + "example_sentence_native": "Su última idea fue una genialidad.", + "example_sentence_english": "His latest idea was a stroke of genius.", + "pos": "noun", + "word_frequency": 12632 + }, + { + "word": "gluten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gluten", + "example_sentence_native": "Muchas personas evitan el gluten en su dieta.", + "example_sentence_english": "Many people avoid gluten in their diet.", + "pos": "noun", + "word_frequency": 12635 + }, + { + "word": "humillar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to humiliate", + "example_sentence_native": "No debes humillar a nadie.", + "example_sentence_english": "You should not humiliate anyone.", + "pos": "verb", + "word_frequency": 12638 + }, + { + "word": "inconscientemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconsciously", + "example_sentence_native": "Lo hizo inconscientemente.", + "example_sentence_english": "He did it unconsciously.", + "pos": "adverb", + "word_frequency": 12639 + }, + { + "word": "inconstitucionalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconstitutionality", + "example_sentence_native": "La inconstitucionalidad de la ley fue declarada por el tribunal.", + "example_sentence_english": "The unconstitutionality of the law was declared by the court.", + "pos": "noun", + "word_frequency": 12640 + }, + { + "word": "interrogar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interrogate", + "example_sentence_native": "La policía va a interrogar al sospechoso.", + "example_sentence_english": "The police are going to interrogate the suspect.", + "pos": "verb", + "word_frequency": 12641 + }, + { + "word": "legua", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "league (unit of distance)", + "example_sentence_native": "El pueblo está a varias leguas de aquí.", + "example_sentence_english": "The village is several leagues from here.", + "pos": "noun", + "word_frequency": 12645 + }, + { + "word": "masonería", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "freemasonry", + "example_sentence_native": "La masonería tiene una larga historia en muchos países.", + "example_sentence_english": "Freemasonry has a long history in many countries.", + "pos": "noun", + "word_frequency": 12650 + }, + { + "word": "meteorología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorology", + "example_sentence_native": "La meteorología es el estudio de la atmósfera.", + "example_sentence_english": "Meteorology is the study of the atmosphere.", + "pos": "noun", + "word_frequency": 12653 + }, + { + "word": "microorganismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "microorganism", + "example_sentence_native": "Los microorganismos son invisibles a simple vista.", + "example_sentence_english": "Microorganisms are invisible to the naked eye.", + "pos": "noun", + "word_frequency": 12654 + }, + { + "word": "moraleja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moral (of a story)", + "example_sentence_native": "La moraleja de la historia es que la honestidad es la mejor política.", + "example_sentence_english": "The moral of the story is that honesty is the best policy.", + "pos": "noun", + "word_frequency": 12658 + }, + { + "word": "multiplicación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "multiplication", + "example_sentence_native": "Los niños están aprendiendo la multiplicación en la escuela.", + "example_sentence_english": "Children are learning multiplication in school.", + "pos": "noun", + "word_frequency": 12659 + }, + { + "word": "nepotismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nepotism", + "example_sentence_native": "El nepotismo es una práctica común en algunas empresas.", + "example_sentence_english": "Nepotism is a common practice in some companies.", + "pos": "noun", + "word_frequency": 12660 + }, + { + "word": "nerd", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nerd", + "example_sentence_native": "Mi hermano es un nerd de la informática.", + "example_sentence_english": "My brother is a computer nerd.", + "pos": "noun", + "word_frequency": 12661 + }, + { + "word": "normalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "normal school student;teacher", + "example_sentence_native": "Mi tía es normalista y enseña en una escuela primaria.", + "example_sentence_english": "My aunt is a normal school teacher and teaches in an elementary school.", + "pos": "noun", + "word_frequency": 12663 + }, + { + "word": "nutricional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutritional", + "example_sentence_native": "Esta comida tiene un alto valor nutricional.", + "example_sentence_english": "This food has a high nutritional value.", + "pos": "adjective", + "word_frequency": 12664 + }, + { + "word": "ocaso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sunset;decline", + "example_sentence_native": "Disfrutamos del ocaso en la playa.", + "example_sentence_english": "We enjoyed the sunset on the beach.", + "pos": "noun", + "word_frequency": 12665 + }, + { + "word": "ojete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eyelet (also vulgar: asshole)", + "example_sentence_native": "El cordón pasa por el ojete del zapato.", + "example_sentence_english": "The lace goes through the eyelet of the shoe.", + "pos": "noun", + "word_frequency": 12666 + }, + { + "word": "olivera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "olive tree", + "example_sentence_native": "La olivera es un árbol típico del Mediterráneo.", + "example_sentence_english": "The olive tree is a typical Mediterranean tree.", + "pos": "noun", + "word_frequency": 12667 + }, + { + "word": "osa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female bear", + "example_sentence_native": "La osa protegía a sus cachorros.", + "example_sentence_english": "The female bear protected her cubs.", + "pos": "noun", + "word_frequency": 12668 + }, + { + "word": "otomano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ottoman", + "example_sentence_native": "El Imperio Otomano fue muy extenso.", + "example_sentence_english": "The Ottoman Empire was very extensive.", + "pos": "adjective", + "word_frequency": 12669 + }, + { + "word": "pasatiempo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hobby;pastime", + "example_sentence_native": "Leer es mi pasatiempo favorito.", + "example_sentence_english": "Reading is my favorite pastime.", + "pos": "noun", + "word_frequency": 12671 + }, + { + "word": "patinaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skating", + "example_sentence_native": "El patinaje sobre hielo es un deporte elegante.", + "example_sentence_english": "Ice skating is an elegant sport.", + "pos": "noun", + "word_frequency": 12672 + }, + { + "word": "peo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fart", + "example_sentence_native": "Se le escapó un peo ruidoso.", + "example_sentence_english": "A loud fart escaped him.", + "pos": "noun", + "word_frequency": 12674 + }, + { + "word": "perpetuar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perpetuate", + "example_sentence_native": "Debemos evitar perpetuar los estereotipos negativos.", + "example_sentence_english": "We must avoid perpetuating negative stereotypes.", + "pos": "verb", + "word_frequency": 12675 + }, + { + "word": "pincel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paintbrush", + "example_sentence_native": "Necesito un pincel nuevo para pintar.", + "example_sentence_english": "I need a new paintbrush for painting.", + "pos": "noun", + "word_frequency": 12677 + }, + { + "word": "ponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker;rapporteur", + "example_sentence_native": "El ponente presentó su investigación en la conferencia.", + "example_sentence_english": "The speaker presented his research at the conference.", + "pos": "noun", + "word_frequency": 12679 + }, + { + "word": "pony", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pony", + "example_sentence_native": "El niño montó en el pony.", + "example_sentence_english": "The boy rode the pony.", + "pos": "noun", + "word_frequency": 12680 + }, + { + "word": "precepto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precept", + "example_sentence_native": "Los preceptos morales guían su vida.", + "example_sentence_english": "Moral precepts guide his life.", + "pos": "noun", + "word_frequency": 12681 + }, + { + "word": "prehistoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prehistory", + "example_sentence_native": "Estudiamos la prehistoria en la escuela.", + "example_sentence_english": "We study prehistory in school.", + "pos": "noun", + "word_frequency": 12682 + }, + { + "word": "pure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pure", + "example_sentence_native": "El agua de la montaña es pura.", + "example_sentence_english": "The mountain water is pure.", + "pos": "adjective", + "word_frequency": 12683 + }, + { + "word": "reactivación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reactivation", + "example_sentence_native": "La reactivación económica es necesaria.", + "example_sentence_english": "Economic reactivation is necessary.", + "pos": "noun", + "word_frequency": 12686 + }, + { + "word": "refrescante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshing", + "example_sentence_native": "Esta bebida es muy refrescante.", + "example_sentence_english": "This drink is very refreshing.", + "pos": "adjective", + "word_frequency": 12687 + }, + { + "word": "refugiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take refuge;to shelter", + "example_sentence_native": "Se refugiaron de la tormenta en una cueva.", + "example_sentence_english": "They took refuge from the storm in a cave.", + "pos": "verb", + "word_frequency": 12688 + }, + { + "word": "remotamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remotely", + "example_sentence_native": "La idea no es remotamente posible.", + "example_sentence_english": "The idea is not remotely possible.", + "pos": "adverb", + "word_frequency": 12690 + }, + { + "word": "remunerar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remunerate;to pay", + "example_sentence_native": "La empresa debe remunerar bien a sus empleados.", + "example_sentence_english": "The company must remunerate its employees well.", + "pos": "verb", + "word_frequency": 12691 + }, + { + "word": "reponer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to replace;to restock;to recover", + "example_sentence_native": "Necesitamos reponer las existencias.", + "example_sentence_english": "We need to restock the supplies.", + "pos": "verb", + "word_frequency": 12692 + }, + { + "word": "resentido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentful;bitter", + "example_sentence_native": "Se sentía resentido por la injusticia.", + "example_sentence_english": "He felt resentful about the injustice.", + "pos": "adjective", + "word_frequency": 12693 + }, + { + "word": "romo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blunt;obtuse", + "example_sentence_native": "El cuchillo está romo y no corta bien.", + "example_sentence_english": "The knife is blunt and doesn't cut well.", + "pos": "adjective", + "word_frequency": 12696 + }, + { + "word": "semanalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekly", + "example_sentence_native": "Nos reunimos semanalmente.", + "example_sentence_english": "We meet weekly.", + "pos": "adverb", + "word_frequency": 12703 + }, + { + "word": "sobrenombre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nickname;sobriquet", + "example_sentence_native": "Su sobrenombre es \"El Rápido\".", + "example_sentence_english": "His nickname is \"The Fast One\".", + "pos": "noun", + "word_frequency": 12705 + }, + { + "word": "subte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subway;metro (Argentina)", + "example_sentence_native": "Tomamos el subte para ir al centro.", + "example_sentence_english": "We took the subway to go downtown.", + "pos": "noun", + "word_frequency": 12710 + }, + { + "word": "temible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fearsome;dreadful", + "example_sentence_native": "El dragón era una criatura temible.", + "example_sentence_english": "The dragon was a fearsome creature.", + "pos": "adjective", + "word_frequency": 12711 + }, + { + "word": "termo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thermos;flask", + "example_sentence_native": "Llené el termo con café caliente.", + "example_sentence_english": "I filled the thermos with hot coffee.", + "pos": "noun", + "word_frequency": 12712 + }, + { + "word": "tirador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooter;handle;suspender", + "example_sentence_native": "El tirador de la puerta estaba roto.", + "example_sentence_english": "The door handle was broken.", + "pos": "noun", + "word_frequency": 12714 + }, + { + "word": "topografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "topography", + "example_sentence_native": "La topografía del terreno es muy irregular.", + "example_sentence_english": "The topography of the terrain is very irregular.", + "pos": "noun", + "word_frequency": 12715 + }, + { + "word": "vals", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waltz", + "example_sentence_native": "Bailaron un vals en la fiesta.", + "example_sentence_english": "They danced a waltz at the party.", + "pos": "noun", + "word_frequency": 12718 + }, + { + "word": "vecindad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighborhood;vicinity", + "example_sentence_native": "La vecindad es muy tranquila.", + "example_sentence_english": "The neighborhood is very quiet.", + "pos": "noun", + "word_frequency": 12720 + }, + { + "word": "vegetariano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetarian", + "example_sentence_native": "Soy vegetariano desde hace cinco años.", + "example_sentence_english": "I have been vegetarian for five years.", + "pos": "adjective", + "word_frequency": 12721 + }, + { + "word": "viñeta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vignette;cartoon panel", + "example_sentence_native": "La viñeta del periódico me hizo reír.", + "example_sentence_english": "The newspaper cartoon panel made me laugh.", + "pos": "noun", + "word_frequency": 12723 + }, + { + "word": "zanja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ditch;trench", + "example_sentence_native": "Cavaron una zanja para el nuevo sistema de riego.", + "example_sentence_english": "They dug a ditch for the new irrigation system.", + "pos": "noun", + "word_frequency": 12725 + }, + { + "word": "álgebra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "algebra", + "example_sentence_native": "Las matemáticas incluyen el álgebra y la geometría.", + "example_sentence_english": "Mathematics includes algebra and geometry.", + "pos": "noun", + "word_frequency": 12726 + }, + { + "word": "abstracción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstraction", + "example_sentence_native": "La abstracción es un concepto complejo en filosofía.", + "example_sentence_english": "Abstraction is a complex concept in philosophy.", + "pos": "noun", + "word_frequency": 12729 + }, + { + "word": "absuelto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquitted", + "example_sentence_native": "El acusado fue absuelto de todos los cargos.", + "example_sentence_english": "The accused was acquitted of all charges.", + "pos": "adjective", + "word_frequency": 12730 + }, + { + "word": "acústico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acoustic", + "example_sentence_native": "Me encanta la música acústica.", + "example_sentence_english": "I love acoustic music.", + "pos": "adjective", + "word_frequency": 12731 + }, + { + "word": "agrupado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grouped;clustered", + "example_sentence_native": "Los estudiantes estaban agrupados por nivel.", + "example_sentence_english": "The students were grouped by level.", + "pos": "adjective", + "word_frequency": 12732 + }, + { + "word": "ahogar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drown;to suffocate", + "example_sentence_native": "No dejes que el miedo te ahogue.", + "example_sentence_english": "Don't let fear drown you.", + "pos": "verb", + "word_frequency": 12733 + }, + { + "word": "alabar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to praise", + "example_sentence_native": "Es importante alabar los esfuerzos de los niños.", + "example_sentence_english": "It's important to praise children's efforts.", + "pos": "verb", + "word_frequency": 12734 + }, + { + "word": "alargar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lengthen;to extend", + "example_sentence_native": "Necesitamos alargar el plazo de entrega.", + "example_sentence_english": "We need to extend the delivery deadline.", + "pos": "verb", + "word_frequency": 12735 + }, + { + "word": "apurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hurry up;to finish;to exhaust", + "example_sentence_native": "Hay que apurar el paso para llegar a tiempo.", + "example_sentence_english": "We have to hurry up to arrive on time.", + "pos": "verb", + "word_frequency": 12739 + }, + { + "word": "arrecife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reef", + "example_sentence_native": "El buceo en el arrecife de coral es impresionante.", + "example_sentence_english": "Diving in the coral reef is impressive.", + "pos": "noun", + "word_frequency": 12740 + }, + { + "word": "barricada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barricade", + "example_sentence_native": "Levantaron una barricada para bloquear la calle.", + "example_sentence_english": "They set up a barricade to block the street.", + "pos": "noun", + "word_frequency": 12742 + }, + { + "word": "becario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intern;scholarship holder", + "example_sentence_native": "El nuevo becario es muy trabajador.", + "example_sentence_english": "The new intern is very hardworking.", + "pos": "noun", + "word_frequency": 12744 + }, + { + "word": "bonanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bonanza;prosperity", + "example_sentence_native": "La empresa está viviendo una época de bonanza económica.", + "example_sentence_english": "The company is experiencing a period of economic bonanza.", + "pos": "noun", + "word_frequency": 12746 + }, + { + "word": "broche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brooch;clasp;pin", + "example_sentence_native": "Se puso un broche elegante en la solapa.", + "example_sentence_english": "She put an elegant brooch on her lapel.", + "pos": "noun", + "word_frequency": 12747 + }, + { + "word": "cabal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exact;just;complete", + "example_sentence_native": "Su descripción fue cabal y precisa.", + "example_sentence_english": "His description was exact and precise.", + "pos": "adjective", + "word_frequency": 12751 + }, + { + "word": "cantina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canteen;bar", + "example_sentence_native": "Fuimos a la cantina a tomar algo.", + "example_sentence_english": "We went to the canteen to have a drink.", + "pos": "noun", + "word_frequency": 12752 + }, + { + "word": "carné", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ID card;membership card", + "example_sentence_native": "Olvidé mi carné de conducir en casa.", + "example_sentence_english": "I forgot my driver's license at home.", + "pos": "noun", + "word_frequency": 12753 + }, + { + "word": "cautivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captive", + "example_sentence_native": "El animal fue liberado después de estar cautivo.", + "example_sentence_english": "The animal was released after being captive.", + "pos": "adjective", + "word_frequency": 12755 + }, + { + "word": "cianuro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cyanide", + "example_sentence_native": "El cianuro es un veneno muy potente.", + "example_sentence_english": "Cyanide is a very potent poison.", + "pos": "noun", + "word_frequency": 12759 + }, + { + "word": "clandestinidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clandestinity;secrecy", + "example_sentence_native": "Vivían en la clandestinidad para evitar ser descubiertos.", + "example_sentence_english": "They lived in clandestinity to avoid being discovered.", + "pos": "noun", + "word_frequency": 12760 + }, + { + "word": "clavar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nail;to stick;to stab", + "example_sentence_native": "Clavó el cuadro en la pared.", + "example_sentence_english": "He nailed the picture to the wall.", + "pos": "verb", + "word_frequency": 12762 + }, + { + "word": "cofre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chest;trunk;coffer", + "example_sentence_native": "Encontraron un cofre lleno de monedas antiguas.", + "example_sentence_english": "They found a chest full of old coins.", + "pos": "noun", + "word_frequency": 12763 + }, + { + "word": "colación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collation;snack;mention", + "example_sentence_native": "Su comentario vino a colación de la discusión anterior.", + "example_sentence_english": "His comment came up in connection with the previous discussion.", + "pos": "noun", + "word_frequency": 12764 + }, + { + "word": "comprensivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "understanding;comprehensive", + "example_sentence_native": "Es una persona muy comprensiva y siempre escucha.", + "example_sentence_english": "She is a very understanding person and always listens.", + "pos": "adjective", + "word_frequency": 12766 + }, + { + "word": "comunicador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communicator;broadcaster", + "example_sentence_native": "Es un excelente comunicador y sabe cómo llegar a la gente.", + "example_sentence_english": "He is an excellent communicator and knows how to reach people.", + "pos": "noun", + "word_frequency": 12767 + }, + { + "word": "consonancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consonance;harmony;accordance", + "example_sentence_native": "Sus acciones están en consonancia con sus principios.", + "example_sentence_english": "His actions are in consonance with his principles.", + "pos": "noun", + "word_frequency": 12769 + }, + { + "word": "controversial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversial", + "example_sentence_native": "El tema es muy controversial y genera mucho debate.", + "example_sentence_english": "The topic is very controversial and generates a lot of debate.", + "pos": "adjective", + "word_frequency": 12770 + }, + { + "word": "corrector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corrector;proofreader;correction fluid", + "example_sentence_native": "Necesito un corrector para mi texto.", + "example_sentence_english": "I need a corrector for my text.", + "pos": "noun", + "word_frequency": 12772 + }, + { + "word": "cosechar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to harvest;to reap;to gather", + "example_sentence_native": "Los agricultores cosechan el trigo en verano.", + "example_sentence_english": "Farmers harvest wheat in summer.", + "pos": "verb", + "word_frequency": 12773 + }, + { + "word": "costear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay for;to afford;to finance", + "example_sentence_native": "No puedo costearme unas vacaciones este año.", + "example_sentence_english": "I can't afford a vacation this year.", + "pos": "verb", + "word_frequency": 12774 + }, + { + "word": "cuesta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slope;hill;incline", + "example_sentence_native": "Subimos la cuesta con dificultad.", + "example_sentence_english": "We climbed the slope with difficulty.", + "pos": "noun", + "word_frequency": 12776 + }, + { + "word": "cuestionamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questioning;challenge;query", + "example_sentence_native": "Su decisión generó un fuerte cuestionamiento.", + "example_sentence_english": "His decision generated strong questioning.", + "pos": "noun", + "word_frequency": 12777 + }, + { + "word": "deleite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delight;pleasure", + "example_sentence_native": "Escuchar música clásica es un deleite para mí.", + "example_sentence_english": "Listening to classical music is a delight for me.", + "pos": "noun", + "word_frequency": 12781 + }, + { + "word": "demostrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proven;demonstrated", + "example_sentence_native": "Su inocencia ha sido demostrada.", + "example_sentence_english": "His innocence has been proven.", + "pos": "adjective", + "word_frequency": 12782 + }, + { + "word": "dengue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dengue (fever)", + "example_sentence_native": "El dengue es una enfermedad transmitida por mosquitos.", + "example_sentence_english": "Dengue is a mosquito-borne disease.", + "pos": "noun", + "word_frequency": 12783 + }, + { + "word": "derramar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spill;to shed", + "example_sentence_native": "Derramó el café sobre la mesa.", + "example_sentence_english": "He spilled the coffee on the table.", + "pos": "verb", + "word_frequency": 12784 + }, + { + "word": "deserción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desertion;dropout", + "example_sentence_native": "La deserción escolar es un problema grave.", + "example_sentence_english": "School dropout is a serious problem.", + "pos": "noun", + "word_frequency": 12785 + }, + { + "word": "desestabilizar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to destabilize", + "example_sentence_native": "La crisis económica podría desestabilizar la región.", + "example_sentence_english": "The economic crisis could destabilize the region.", + "pos": "verb", + "word_frequency": 12786 + }, + { + "word": "desfavorable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfavorable;adverse", + "example_sentence_native": "Las condiciones climáticas son desfavorables para el cultivo.", + "example_sentence_english": "The weather conditions are unfavorable for cultivation.", + "pos": "adjective", + "word_frequency": 12787 + }, + { + "word": "desmontar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismantle;to disassemble;to debunk", + "example_sentence_native": "Tuvimos que desmontar los muebles para transportarlos.", + "example_sentence_english": "We had to dismantle the furniture to transport it.", + "pos": "verb", + "word_frequency": 12788 + }, + { + "word": "doblete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "double;brace (in sports);double act", + "example_sentence_native": "El delantero marcó un doblete en el partido.", + "example_sentence_english": "The forward scored a brace in the match.", + "pos": "noun", + "word_frequency": 12791 + }, + { + "word": "dorso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "back (of hand;body;book);dorsal", + "example_sentence_native": "Se tatuó un dragón en el dorso de la mano.", + "example_sentence_english": "He tattooed a dragon on the back of his hand.", + "pos": "noun", + "word_frequency": 12793 + }, + { + "word": "duna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dune", + "example_sentence_native": "Las dunas del desierto son impresionantes.", + "example_sentence_english": "The desert dunes are impressive.", + "pos": "noun", + "word_frequency": 12795 + }, + { + "word": "encubrimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cover-up;concealment", + "example_sentence_native": "Fue acusado de encubrimiento de pruebas.", + "example_sentence_english": "He was accused of cover-up of evidence.", + "pos": "noun", + "word_frequency": 12799 + }, + { + "word": "enjuiciamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosecution;trial", + "example_sentence_native": "El enjuiciamiento del caso duró varios meses.", + "example_sentence_english": "The prosecution of the case lasted several months.", + "pos": "noun", + "word_frequency": 12800 + }, + { + "word": "enzima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enzyme", + "example_sentence_native": "Las enzimas son esenciales para la digestión.", + "example_sentence_english": "Enzymes are essential for digestion.", + "pos": "noun", + "word_frequency": 12801 + }, + { + "word": "equivalencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalence", + "example_sentence_native": "No hay una equivalencia exacta entre los dos términos.", + "example_sentence_english": "There is no exact equivalence between the two terms.", + "pos": "noun", + "word_frequency": 12802 + }, + { + "word": "escorpión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scorpion", + "example_sentence_native": "Vimos un escorpión en el desierto.", + "example_sentence_english": "We saw a scorpion in the desert.", + "pos": "noun", + "word_frequency": 12803 + }, + { + "word": "estratega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategist", + "example_sentence_native": "Es un estratega brillante en el mundo de los negocios.", + "example_sentence_english": "He is a brilliant strategist in the business world.", + "pos": "noun", + "word_frequency": 12804 + }, + { + "word": "eucaristía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eucharist", + "example_sentence_native": "La eucaristía es un sacramento importante en la Iglesia Católica.", + "example_sentence_english": "The Eucharist is an important sacrament in the Catholic Church.", + "pos": "noun", + "word_frequency": 12805 + }, + { + "word": "exclamar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exclaim", + "example_sentence_native": "Ella no pudo evitar exclamar de alegría.", + "example_sentence_english": "She couldn't help but exclaim with joy.", + "pos": "verb", + "word_frequency": 12806 + }, + { + "word": "explotado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploited", + "example_sentence_native": "Los trabajadores se sentían explotados por la empresa.", + "example_sentence_english": "The workers felt exploited by the company.", + "pos": "adjective", + "word_frequency": 12808 + }, + { + "word": "exponencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exponential", + "example_sentence_native": "El crecimiento de la población fue exponencial.", + "example_sentence_english": "The population growth was exponential.", + "pos": "adjective", + "word_frequency": 12809 + }, + { + "word": "exótico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exotic", + "example_sentence_native": "Le encantan los animales exóticos.", + "example_sentence_english": "She loves exotic animals.", + "pos": "adjective", + "word_frequency": 12810 + }, + { + "word": "fielmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faithfully", + "example_sentence_native": "Cumplió fielmente con sus promesas.", + "example_sentence_english": "He faithfully fulfilled his promises.", + "pos": "adverb", + "word_frequency": 12811 + }, + { + "word": "fragancia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fragrance", + "example_sentence_native": "La fragancia de las flores llenaba la habitación.", + "example_sentence_english": "The fragrance of the flowers filled the room.", + "pos": "noun", + "word_frequency": 12813 + }, + { + "word": "franqueza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frankness;candor", + "example_sentence_native": "Aprecio su franqueza al decir la verdad.", + "example_sentence_english": "I appreciate his frankness in telling the truth.", + "pos": "noun", + "word_frequency": 12814 + }, + { + "word": "fugitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugitive", + "example_sentence_native": "La policía busca al fugitivo desde hace días.", + "example_sentence_english": "The police have been looking for the fugitive for days.", + "pos": "noun", + "word_frequency": 12816 + }, + { + "word": "galo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gaul;Gallic (person)", + "example_sentence_native": "Los galos eran un pueblo celta.", + "example_sentence_english": "The Gauls were a Celtic people.", + "pos": "noun", + "word_frequency": 12817 + }, + { + "word": "genocida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genocidist", + "example_sentence_native": "Fue juzgado como un genocida por sus crímenes.", + "example_sentence_english": "He was tried as a genocidist for his crimes.", + "pos": "noun", + "word_frequency": 12818 + }, + { + "word": "granizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hail", + "example_sentence_native": "Cayó granizo durante la tormenta.", + "example_sentence_english": "Hail fell during the storm.", + "pos": "noun", + "word_frequency": 12820 + }, + { + "word": "grosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coarse;thick;rude", + "example_sentence_native": "El tejido era muy grosso al tacto.", + "example_sentence_english": "The fabric was very coarse to the touch.", + "pos": "adjective", + "word_frequency": 12821 + }, + { + "word": "heraldo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "herald", + "example_sentence_native": "El cuervo negro es a menudo un heraldo de malas noticias.", + "example_sentence_english": "The black crow is often a herald of bad news.", + "pos": "noun", + "word_frequency": 12826 + }, + { + "word": "heredar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inherit", + "example_sentence_native": "Ella va a heredar una gran fortuna.", + "example_sentence_english": "She is going to inherit a large fortune.", + "pos": "verb", + "word_frequency": 12827 + }, + { + "word": "hippie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hippie", + "example_sentence_native": "Mis padres fueron hippies en los años 70.", + "example_sentence_english": "My parents were hippies in the 70s.", + "pos": "noun", + "word_frequency": 12828 + }, + { + "word": "iceberg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iceberg", + "example_sentence_native": "El Titanic chocó contra un iceberg.", + "example_sentence_english": "The Titanic hit an iceberg.", + "pos": "noun", + "word_frequency": 12829 + }, + { + "word": "ilegítimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegitimate", + "example_sentence_native": "Su reclamo al trono era ilegítimo.", + "example_sentence_english": "His claim to the throne was illegitimate.", + "pos": "adjective", + "word_frequency": 12830 + }, + { + "word": "iluminado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illuminated;enlightened", + "example_sentence_native": "La habitación estaba bien iluminada.", + "example_sentence_english": "The room was well illuminated.", + "pos": "adjective", + "word_frequency": 12831 + }, + { + "word": "implícito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implicit", + "example_sentence_native": "Había un acuerdo implícito entre ellos.", + "example_sentence_english": "There was an implicit agreement between them.", + "pos": "adjective", + "word_frequency": 12832 + }, + { + "word": "impresion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impression", + "example_sentence_native": "Su primera impresión fue muy buena.", + "example_sentence_english": "His first impression was very good.", + "pos": "noun", + "word_frequency": 12833 + }, + { + "word": "improvisado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvised", + "example_sentence_native": "Tuvimos que hacer una cena improvisada.", + "example_sentence_english": "We had to make an improvised dinner.", + "pos": "adjective", + "word_frequency": 12834 + }, + { + "word": "inaugurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaugurated;opened", + "example_sentence_native": "El nuevo edificio fue inaugurado ayer.", + "example_sentence_english": "The new building was inaugurated yesterday.", + "pos": "adjective", + "word_frequency": 12835 + }, + { + "word": "inspirador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspiring", + "example_sentence_native": "Su historia es realmente inspiradora.", + "example_sentence_english": "His story is truly inspiring.", + "pos": "adjective", + "word_frequency": 12836 + }, + { + "word": "interlocutor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interlocutor", + "example_sentence_native": "Necesito un interlocutor para practicar mi español.", + "example_sentence_english": "I need an interlocutor to practice my Spanish.", + "pos": "noun", + "word_frequency": 12837 + }, + { + "word": "jardinería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gardening", + "example_sentence_native": "Le gusta pasar el tiempo haciendo jardinería.", + "example_sentence_english": "She likes to spend time gardening.", + "pos": "noun", + "word_frequency": 12839 + }, + { + "word": "jarra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jug;pitcher", + "example_sentence_native": "La jarra de agua está vacía.", + "example_sentence_english": "The water jug is empty.", + "pos": "noun", + "word_frequency": 12840 + }, + { + "word": "leopardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leopard", + "example_sentence_native": "El leopardo es un animal muy rápido.", + "example_sentence_english": "The leopard is a very fast animal.", + "pos": "noun", + "word_frequency": 12844 + }, + { + "word": "liviano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light (weight);lightweight", + "example_sentence_native": "Este material es muy liviano.", + "example_sentence_english": "This material is very lightweight.", + "pos": "adjective", + "word_frequency": 12847 + }, + { + "word": "luminosidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "luminosity;brightness", + "example_sentence_native": "La luminosidad de la pantalla es ajustable.", + "example_sentence_english": "The screen's brightness is adjustable.", + "pos": "noun", + "word_frequency": 12848 + }, + { + "word": "látigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whip", + "example_sentence_native": "El jinete usó el látigo para animar al caballo.", + "example_sentence_english": "The rider used the whip to encourage the horse.", + "pos": "noun", + "word_frequency": 12849 + }, + { + "word": "malentendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misunderstanding", + "example_sentence_native": "Fue solo un malentendido entre nosotros.", + "example_sentence_english": "It was just a misunderstanding between us.", + "pos": "noun", + "word_frequency": 12851 + }, + { + "word": "medianamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderately;reasonably", + "example_sentence_native": "El trabajo está medianamente bien hecho.", + "example_sentence_english": "The work is reasonably well done.", + "pos": "adverb", + "word_frequency": 12854 + }, + { + "word": "mediar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mediate;to intervene", + "example_sentence_native": "Intentó mediar en la discusión.", + "example_sentence_english": "He tried to mediate in the discussion.", + "pos": "verb", + "word_frequency": 12855 + }, + { + "word": "mercader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchant;trader", + "example_sentence_native": "El mercader vendía especias exóticas.", + "example_sentence_english": "The merchant sold exotic spices.", + "pos": "noun", + "word_frequency": 12856 + }, + { + "word": "meridiano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meridian", + "example_sentence_native": "El meridiano de Greenwich es el meridiano cero.", + "example_sentence_english": "The Greenwich meridian is the prime meridian.", + "pos": "noun", + "word_frequency": 12857 + }, + { + "word": "momia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mummy", + "example_sentence_native": "Vimos una momia en el museo.", + "example_sentence_english": "We saw a mummy in the museum.", + "pos": "noun", + "word_frequency": 12859 + }, + { + "word": "moribundo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dying;moribund", + "example_sentence_native": "El árbol estaba moribundo después de la sequía.", + "example_sentence_english": "The tree was dying after the drought.", + "pos": "adjective", + "word_frequency": 12860 + }, + { + "word": "narciso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narcissus (flower);narcissist (person)", + "example_sentence_native": "El narciso es una flor muy bonita.", + "example_sentence_english": "The narcissus is a very beautiful flower.", + "pos": "noun", + "word_frequency": 12862 + }, + { + "word": "nodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "node", + "example_sentence_native": "Cada computadora es un nodo en la red.", + "example_sentence_english": "Each computer is a node in the network.", + "pos": "noun", + "word_frequency": 12866 + }, + { + "word": "numérico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numeric;numerical", + "example_sentence_native": "Necesito introducir un valor numérico.", + "example_sentence_english": "I need to enter a numerical value.", + "pos": "adjective", + "word_frequency": 12867 + }, + { + "word": "optimizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to optimize", + "example_sentence_native": "Debemos optimizar el proceso para ahorrar tiempo.", + "example_sentence_english": "We must optimize the process to save time.", + "pos": "verb", + "word_frequency": 12868 + }, + { + "word": "orfanato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orphanage", + "example_sentence_native": "El orfanato cuida a muchos niños.", + "example_sentence_english": "The orphanage takes care of many children.", + "pos": "noun", + "word_frequency": 12869 + }, + { + "word": "paliar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to alleviate;to palliate", + "example_sentence_native": "Intentaron paliar los efectos de la crisis.", + "example_sentence_english": "They tried to alleviate the effects of the crisis.", + "pos": "verb", + "word_frequency": 12872 + }, + { + "word": "parlante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker (loudspeaker)", + "example_sentence_native": "El sonido sale del parlante.", + "example_sentence_english": "The sound comes out of the speaker.", + "pos": "noun", + "word_frequency": 12873 + }, + { + "word": "perdición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perdition;ruin;downfall", + "example_sentence_native": "Su adicción fue su perdición.", + "example_sentence_english": "His addiction was his downfall.", + "pos": "noun", + "word_frequency": 12874 + }, + { + "word": "pesticida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pesticide", + "example_sentence_native": "Usaron pesticidas para proteger los cultivos.", + "example_sentence_english": "They used pesticides to protect the crops.", + "pos": "noun", + "word_frequency": 12875 + }, + { + "word": "pintoresco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picturesque", + "example_sentence_native": "El pueblo era muy pintoresco.", + "example_sentence_english": "The village was very picturesque.", + "pos": "adjective", + "word_frequency": 12878 + }, + { + "word": "planetario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planetarium", + "example_sentence_native": "Visitamos el planetario para ver las estrellas.", + "example_sentence_english": "We visited the planetarium to see the stars.", + "pos": "noun", + "word_frequency": 12880 + }, + { + "word": "recabar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collect;to gather", + "example_sentence_native": "Necesitamos recabar más información antes de decidir.", + "example_sentence_english": "We need to gather more information before deciding.", + "pos": "verb", + "word_frequency": 12886 + }, + { + "word": "reciclar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to recycle", + "example_sentence_native": "Es importante reciclar el plástico y el papel.", + "example_sentence_english": "It's important to recycle plastic and paper.", + "pos": "verb", + "word_frequency": 12887 + }, + { + "word": "regencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regency", + "example_sentence_native": "El país estuvo bajo una regencia durante la minoría del rey.", + "example_sentence_english": "The country was under a regency during the king's minority.", + "pos": "noun", + "word_frequency": 12888 + }, + { + "word": "replica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replica;copy", + "example_sentence_native": "La exposición mostraba una réplica exacta del barco.", + "example_sentence_english": "The exhibition showed an exact replica of the ship.", + "pos": "noun", + "word_frequency": 12889 + }, + { + "word": "replicar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reply;to replicate", + "example_sentence_native": "No supo qué replicar a su argumento.", + "example_sentence_english": "He didn't know what to reply to her argument.", + "pos": "verb", + "word_frequency": 12890 + }, + { + "word": "reverencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bow;reverence", + "example_sentence_native": "Hizo una reverencia al público al final de la obra.", + "example_sentence_english": "He made a bow to the audience at the end of the play.", + "pos": "noun", + "word_frequency": 12891 + }, + { + "word": "rojizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reddish", + "example_sentence_native": "El cielo tenía un color rojizo al atardecer.", + "example_sentence_english": "The sky had a reddish color at sunset.", + "pos": "adjective", + "word_frequency": 12894 + }, + { + "word": "roza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clearing (in a forest);friction", + "example_sentence_native": "La roza de la madera causó un sonido.", + "example_sentence_english": "The friction of the wood caused a sound.", + "pos": "noun", + "word_frequency": 12896 + }, + { + "word": "ráfaga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gust (of wind);burst (of light;fire)", + "example_sentence_native": "Una ráfaga de viento movió los árboles.", + "example_sentence_english": "A gust of wind moved the trees.", + "pos": "noun", + "word_frequency": 12899 + }, + { + "word": "sacro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacred;sacral", + "example_sentence_native": "Este es un lugar sacro para muchas culturas.", + "example_sentence_english": "This is a sacred place for many cultures.", + "pos": "adjective", + "word_frequency": 12901 + }, + { + "word": "seta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mushroom", + "example_sentence_native": "Encontré una seta grande en el bosque.", + "example_sentence_english": "I found a large mushroom in the forest.", + "pos": "noun", + "word_frequency": 12904 + }, + { + "word": "sincronización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronization", + "example_sentence_native": "La sincronización de los datos es crucial.", + "example_sentence_english": "Data synchronization is crucial.", + "pos": "noun", + "word_frequency": 12906 + }, + { + "word": "soberbio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superb;arrogant;proud", + "example_sentence_native": "Su actuación fue soberbia.", + "example_sentence_english": "His performance was superb.", + "pos": "adjective", + "word_frequency": 12907 + }, + { + "word": "sobresalir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stand out;to excel", + "example_sentence_native": "Siempre intenta sobresalir en sus estudios.", + "example_sentence_english": "He always tries to excel in his studies.", + "pos": "verb", + "word_frequency": 12908 + }, + { + "word": "soya", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soy;soybean", + "example_sentence_native": "La leche de soya es una alternativa a la leche de vaca.", + "example_sentence_english": "Soy milk is an alternative to cow's milk.", + "pos": "noun", + "word_frequency": 12910 + }, + { + "word": "subsistir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subsist;to survive", + "example_sentence_native": "Es difícil subsistir con tan poco dinero.", + "example_sentence_english": "It's difficult to subsist on so little money.", + "pos": "verb", + "word_frequency": 12913 + }, + { + "word": "sudar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sweat", + "example_sentence_native": "Empecé a sudar después de correr.", + "example_sentence_english": "I started to sweat after running.", + "pos": "verb", + "word_frequency": 12914 + }, + { + "word": "sumergir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to submerge;to immerse", + "example_sentence_native": "Sumergió la mano en el agua fría.", + "example_sentence_english": "He submerged his hand in the cold water.", + "pos": "verb", + "word_frequency": 12915 + }, + { + "word": "tableta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablet (device or pill)", + "example_sentence_native": "Leo libros en mi tableta.", + "example_sentence_english": "I read books on my tablet.", + "pos": "noun", + "word_frequency": 12916 + }, + { + "word": "tapón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stopper;plug;traffic jam", + "example_sentence_native": "Había un gran tapón en la carretera.", + "example_sentence_english": "There was a big traffic jam on the road.", + "pos": "noun", + "word_frequency": 12917 + }, + { + "word": "tecnica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technique;skill", + "example_sentence_native": "Necesitas mejorar tu tecnica de estudio.", + "example_sentence_english": "You need to improve your study technique.", + "pos": "noun", + "word_frequency": 12918 + }, + { + "word": "transitorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transitory;temporary", + "example_sentence_native": "La fase de transición es transitoria.", + "example_sentence_english": "The transition phase is transitory.", + "pos": "adjective", + "word_frequency": 12920 + }, + { + "word": "tónica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tonic;tonic water;keynote", + "example_sentence_native": "Me gusta beber agua tónica con limón.", + "example_sentence_english": "I like to drink tonic water with lemon.", + "pos": "noun", + "word_frequency": 12923 + }, + { + "word": "unicornio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unicorn", + "example_sentence_native": "Los niños creen en los unicornios.", + "example_sentence_english": "Children believe in unicorns.", + "pos": "noun", + "word_frequency": 12924 + }, + { + "word": "vaciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to empty", + "example_sentence_native": "Por favor, vacía el cubo de basura.", + "example_sentence_english": "Please, empty the trash can.", + "pos": "verb", + "word_frequency": 12925 + }, + { + "word": "vagabundo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vagabond;tramp", + "example_sentence_native": "El vagabundo dormía en el banco del parque.", + "example_sentence_english": "The vagabond was sleeping on the park bench.", + "pos": "noun", + "word_frequency": 12926 + }, + { + "word": "vascular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vascular", + "example_sentence_native": "El sistema vascular es complejo.", + "example_sentence_english": "The vascular system is complex.", + "pos": "adjective", + "word_frequency": 12927 + }, + { + "word": "vicepresidencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice-presidency", + "example_sentence_native": "Ocupa el cargo de vicepresidencia en la empresa.", + "example_sentence_english": "He holds the position of vice-presidency in the company.", + "pos": "noun", + "word_frequency": 12928 + }, + { + "word": "yarda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yard", + "example_sentence_native": "La tela mide tres yardas de largo.", + "example_sentence_english": "The fabric is three yards long.", + "pos": "noun", + "word_frequency": 12934 + }, + { + "word": "youtuber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "YouTuber", + "example_sentence_native": "Mi hijo quiere ser youtuber cuando sea mayor.", + "example_sentence_english": "My son wants to be a YouTuber when he grows up.", + "pos": "noun", + "word_frequency": 12935 + }, + { + "word": "abastecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supply;to provide", + "example_sentence_native": "La tienda necesita abastecerse de productos frescos.", + "example_sentence_english": "The store needs to supply itself with fresh products.", + "pos": "verb", + "word_frequency": 12938 + }, + { + "word": "abonado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscriber;season ticket holder", + "example_sentence_native": "Soy abonado a este servicio de streaming.", + "example_sentence_english": "I am a subscriber to this streaming service.", + "pos": "noun", + "word_frequency": 12939 + }, + { + "word": "acampar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to camp", + "example_sentence_native": "Nos gusta acampar en la montaña.", + "example_sentence_english": "We like to camp in the mountains.", + "pos": "verb", + "word_frequency": 12940 + }, + { + "word": "alternancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternation", + "example_sentence_native": "La alternancia de estaciones es natural.", + "example_sentence_english": "The alternation of seasons is natural.", + "pos": "noun", + "word_frequency": 12944 + }, + { + "word": "ambiguo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambiguous", + "example_sentence_native": "Su respuesta fue muy ambigua.", + "example_sentence_english": "His answer was very ambiguous.", + "pos": "adjective", + "word_frequency": 12946 + }, + { + "word": "aminoácido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amino acid", + "example_sentence_native": "Las proteínas están compuestas de aminoácidos.", + "example_sentence_english": "Proteins are composed of amino acids.", + "pos": "noun", + "word_frequency": 12947 + }, + { + "word": "anglo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Anglo", + "example_sentence_native": "La cultura anglo es muy influyente.", + "example_sentence_english": "Anglo culture is very influential.", + "pos": "noun", + "word_frequency": 12948 + }, + { + "word": "apropiadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriately", + "example_sentence_native": "Se comportó apropiadamente en la reunión.", + "example_sentence_english": "He behaved appropriately at the meeting.", + "pos": "adverb", + "word_frequency": 12949 + }, + { + "word": "arcángel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archangel", + "example_sentence_native": "El arcángel Gabriel anunció la noticia.", + "example_sentence_english": "The archangel Gabriel announced the news.", + "pos": "noun", + "word_frequency": 12950 + }, + { + "word": "ardilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "squirrel", + "example_sentence_native": "Una ardilla subió al árbol rápidamente.", + "example_sentence_english": "A squirrel quickly climbed the tree.", + "pos": "noun", + "word_frequency": 12951 + }, + { + "word": "asalariado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wage earner;employee", + "example_sentence_native": "La mayoría de la población activa es asalariada.", + "example_sentence_english": "Most of the active population are wage earners.", + "pos": "noun", + "word_frequency": 12952 + }, + { + "word": "asequible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affordable;accessible", + "example_sentence_native": "Queremos que la educación sea asequible para todos.", + "example_sentence_english": "We want education to be affordable for everyone.", + "pos": "adjective", + "word_frequency": 12953 + }, + { + "word": "aversión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aversion", + "example_sentence_native": "Tiene una aversión natural a las serpientes.", + "example_sentence_english": "He has a natural aversion to snakes.", + "pos": "noun", + "word_frequency": 12955 + }, + { + "word": "bajito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quietly;softly (diminutive of 'bajo')", + "example_sentence_native": "Habla bajito para no despertar al bebé.", + "example_sentence_english": "Speak quietly so as not to wake the baby.", + "pos": "adverb", + "word_frequency": 12956 + }, + { + "word": "barrer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sweep", + "example_sentence_native": "Necesito barrer el suelo de la cocina.", + "example_sentence_english": "I need to sweep the kitchen floor.", + "pos": "verb", + "word_frequency": 12957 + }, + { + "word": "biotecnología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biotechnology", + "example_sentence_native": "La biotecnología avanza a pasos agigantados.", + "example_sentence_english": "Biotechnology is advancing by leaps and bounds.", + "pos": "noun", + "word_frequency": 12958 + }, + { + "word": "blindado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armored", + "example_sentence_native": "El vehículo blindado resistió el ataque.", + "example_sentence_english": "The armored vehicle resisted the attack.", + "pos": "adjective", + "word_frequency": 12960 + }, + { + "word": "bofetada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slap", + "example_sentence_native": "Le dio una bofetada en la cara.", + "example_sentence_english": "She gave him a slap on the face.", + "pos": "noun", + "word_frequency": 12961 + }, + { + "word": "brusco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abrupt;brusque", + "example_sentence_native": "Su respuesta fue muy brusca y me sorprendió.", + "example_sentence_english": "His response was very abrupt and surprised me.", + "pos": "adjective", + "word_frequency": 12964 + }, + { + "word": "bufete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "law firm", + "example_sentence_native": "Trabaja en un bufete de abogados muy prestigioso.", + "example_sentence_english": "He works at a very prestigious law firm.", + "pos": "noun", + "word_frequency": 12965 + }, + { + "word": "caimán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caiman", + "example_sentence_native": "Vimos un caimán en el río.", + "example_sentence_english": "We saw a caiman in the river.", + "pos": "noun", + "word_frequency": 12968 + }, + { + "word": "canelón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cannelloni", + "example_sentence_native": "Para cenar, preparé canelones de carne.", + "example_sentence_english": "For dinner, I prepared meat cannelloni.", + "pos": "noun", + "word_frequency": 12970 + }, + { + "word": "canoa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canoe", + "example_sentence_native": "Fuimos de paseo en canoa por el lago.", + "example_sentence_english": "We went for a canoe ride on the lake.", + "pos": "noun", + "word_frequency": 12971 + }, + { + "word": "cantautor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "singer-songwriter", + "example_sentence_native": "Es un famoso cantautor con muchas canciones populares.", + "example_sentence_english": "He is a famous singer-songwriter with many popular songs.", + "pos": "noun", + "word_frequency": 12972 + }, + { + "word": "categoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "category", + "example_sentence_native": "Este producto pertenece a una nueva categoría.", + "example_sentence_english": "This product belongs to a new category.", + "pos": "noun", + "word_frequency": 12974 + }, + { + "word": "centurión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centurion", + "example_sentence_native": "El centurión lideró a sus tropas en la batalla.", + "example_sentence_english": "The centurion led his troops in battle.", + "pos": "noun", + "word_frequency": 12975 + }, + { + "word": "cinema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cinema;movie theater", + "example_sentence_native": "Vamos al cinema a ver la nueva película.", + "example_sentence_english": "Let's go to the cinema to see the new movie.", + "pos": "noun", + "word_frequency": 12976 + }, + { + "word": "circunferencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circumference", + "example_sentence_native": "Calcula la circunferencia del círculo.", + "example_sentence_english": "Calculate the circumference of the circle.", + "pos": "noun", + "word_frequency": 12977 + }, + { + "word": "cisterna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cistern;tank", + "example_sentence_native": "La casa tiene una cisterna para recoger agua de lluvia.", + "example_sentence_english": "The house has a cistern to collect rainwater.", + "pos": "noun", + "word_frequency": 12978 + }, + { + "word": "cloaca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sewer;cloaca", + "example_sentence_native": "Las cloacas de la ciudad necesitan ser reparadas.", + "example_sentence_english": "The city's sewers need to be repaired.", + "pos": "noun", + "word_frequency": 12979 + }, + { + "word": "constelación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constellation", + "example_sentence_native": "Pudimos ver muchas constelaciones en el cielo nocturno.", + "example_sentence_english": "We could see many constellations in the night sky.", + "pos": "noun", + "word_frequency": 12980 + }, + { + "word": "contaminado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contaminated;polluted", + "example_sentence_native": "El agua del río está contaminada.", + "example_sentence_english": "The river water is contaminated.", + "pos": "adjective", + "word_frequency": 12981 + }, + { + "word": "contemplación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemplation", + "example_sentence_native": "Se sentó en silencio, sumido en la contemplación.", + "example_sentence_english": "He sat in silence, deep in contemplation.", + "pos": "noun", + "word_frequency": 12982 + }, + { + "word": "copiloto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "co-pilot", + "example_sentence_native": "El copiloto revisó la lista de verificación antes del despegue.", + "example_sentence_english": "The co-pilot checked the checklist before takeoff.", + "pos": "noun", + "word_frequency": 12983 + }, + { + "word": "cortijo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "farmhouse;country estate", + "example_sentence_native": "Pasamos el verano en un hermoso cortijo en el sur de España.", + "example_sentence_english": "We spent the summer in a beautiful farmhouse in southern Spain.", + "pos": "noun", + "word_frequency": 12984 + }, + { + "word": "cósmico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmic", + "example_sentence_native": "El universo está lleno de fenómenos cósmicos.", + "example_sentence_english": "The universe is full of cosmic phenomena.", + "pos": "adjective", + "word_frequency": 12986 + }, + { + "word": "dañino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful;damaging", + "example_sentence_native": "Fumar es muy dañino para la salud.", + "example_sentence_english": "Smoking is very harmful to health.", + "pos": "adjective", + "word_frequency": 12987 + }, + { + "word": "defectuoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defective;faulty", + "example_sentence_native": "El producto resultó ser defectuoso y tuve que devolverlo.", + "example_sentence_english": "The product turned out to be defective and I had to return it.", + "pos": "adjective", + "word_frequency": 12988 + }, + { + "word": "derogar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repeal;to revoke", + "example_sentence_native": "El gobierno decidió derogar la antigua ley.", + "example_sentence_english": "The government decided to repeal the old law.", + "pos": "verb", + "word_frequency": 12989 + }, + { + "word": "desacreditar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to discredit", + "example_sentence_native": "Intentaron desacreditar su reputación con rumores falsos.", + "example_sentence_english": "They tried to discredit his reputation with false rumors.", + "pos": "verb", + "word_frequency": 12990 + }, + { + "word": "desleal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disloyal;unfaithful", + "example_sentence_native": "Fue un acto desleal hacia sus amigos.", + "example_sentence_english": "It was a disloyal act towards his friends.", + "pos": "adjective", + "word_frequency": 12991 + }, + { + "word": "despreciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despise;to scorn", + "example_sentence_native": "No debes despreciar a nadie por su origen.", + "example_sentence_english": "You should not despise anyone because of their origin.", + "pos": "verb", + "word_frequency": 12992 + }, + { + "word": "desuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disuse", + "example_sentence_native": "Esa palabra ha caído en desuso.", + "example_sentence_english": "That word has fallen into disuse.", + "pos": "noun", + "word_frequency": 12993 + }, + { + "word": "diestro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right-handed;skillful", + "example_sentence_native": "Es muy diestro con las manos, un verdadero artesano.", + "example_sentence_english": "He is very skillful with his hands, a true artisan.", + "pos": "adjective", + "word_frequency": 12994 + }, + { + "word": "drone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drone", + "example_sentence_native": "Usaron un drone para grabar las imágenes aéreas.", + "example_sentence_english": "They used a drone to record the aerial footage.", + "pos": "noun", + "word_frequency": 12995 + }, + { + "word": "elfo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elf", + "example_sentence_native": "Los elfos son criaturas mágicas de los bosques.", + "example_sentence_english": "Elves are magical creatures of the forests.", + "pos": "noun", + "word_frequency": 12996 + }, + { + "word": "enorgullecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make proud", + "example_sentence_native": "Sus logros nos enorgullecen a todos.", + "example_sentence_english": "His achievements make us all proud.", + "pos": "verb", + "word_frequency": 12998 + }, + { + "word": "enunciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statement;utterance", + "example_sentence_native": "Analiza el enunciado y encuentra el sujeto.", + "example_sentence_english": "Analyze the statement and find the subject.", + "pos": "noun", + "word_frequency": 12999 + }, + { + "word": "excitante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exciting;stimulating", + "example_sentence_native": "Fue una película muy excitante.", + "example_sentence_english": "It was a very exciting movie.", + "pos": "adjective", + "word_frequency": 13003 + }, + { + "word": "extensamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extensively", + "example_sentence_native": "El tema fue discutido extensamente.", + "example_sentence_english": "The topic was discussed extensively.", + "pos": "adverb", + "word_frequency": 13004 + }, + { + "word": "fechar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to date (a document;event)", + "example_sentence_native": "Debemos fechar este documento antes de enviarlo.", + "example_sentence_english": "We must date this document before sending it.", + "pos": "verb", + "word_frequency": 13005 + }, + { + "word": "fobia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phobia", + "example_sentence_native": "Tiene una fobia a las arañas.", + "example_sentence_english": "She has a phobia of spiders.", + "pos": "noun", + "word_frequency": 13006 + }, + { + "word": "forzoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsory;forced", + "example_sentence_native": "El servicio militar era forzoso en el pasado.", + "example_sentence_english": "Military service was compulsory in the past.", + "pos": "adjective", + "word_frequency": 13008 + }, + { + "word": "gemido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moan;groan", + "example_sentence_native": "Se escuchó un gemido de dolor.", + "example_sentence_english": "A groan of pain was heard.", + "pos": "noun", + "word_frequency": 13010 + }, + { + "word": "geográficamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geographically", + "example_sentence_native": "España está geográficamente en Europa.", + "example_sentence_english": "Spain is geographically in Europe.", + "pos": "adverb", + "word_frequency": 13011 + }, + { + "word": "gratificante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratifying;rewarding", + "example_sentence_native": "Ayudar a los demás es una experiencia muy gratificante.", + "example_sentence_english": "Helping others is a very gratifying experience.", + "pos": "adjective", + "word_frequency": 13013 + }, + { + "word": "hospedaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lodging;accommodation", + "example_sentence_native": "Buscamos un hospedaje barato para el fin de semana.", + "example_sentence_english": "We are looking for cheap lodging for the weekend.", + "pos": "noun", + "word_frequency": 13020 + }, + { + "word": "idiotez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiocy;foolishness", + "example_sentence_native": "Fue una idiotez haber dicho eso.", + "example_sentence_english": "It was idiocy to have said that.", + "pos": "noun", + "word_frequency": 13021 + }, + { + "word": "imperdonable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unforgivable", + "example_sentence_native": "Su traición fue imperdonable.", + "example_sentence_english": "His betrayal was unforgivable.", + "pos": "adjective", + "word_frequency": 13022 + }, + { + "word": "inmensamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immensely", + "example_sentence_native": "Estaba inmensamente feliz con la noticia.", + "example_sentence_english": "She was immensely happy with the news.", + "pos": "adverb", + "word_frequency": 13023 + }, + { + "word": "innovar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to innovate", + "example_sentence_native": "Las empresas necesitan innovar para crecer.", + "example_sentence_english": "Companies need to innovate to grow.", + "pos": "verb", + "word_frequency": 13024 + }, + { + "word": "insinuar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to insinuate;to hint", + "example_sentence_native": "No quiso insinuar nada malo.", + "example_sentence_english": "He didn't mean to insinuate anything bad.", + "pos": "verb", + "word_frequency": 13025 + }, + { + "word": "interrogación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interrogation;question mark", + "example_sentence_native": "Puso un signo de interrogación al final de la frase.", + "example_sentence_english": "He put a question mark at the end of the sentence.", + "pos": "noun", + "word_frequency": 13026 + }, + { + "word": "intolerante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerant", + "example_sentence_native": "Es una persona muy intolerante con las opiniones diferentes.", + "example_sentence_english": "He is a very intolerant person of different opinions.", + "pos": "adjective", + "word_frequency": 13027 + }, + { + "word": "irrupción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irruption;sudden entry", + "example_sentence_native": "La irrupción de la policía sorprendió a todos.", + "example_sentence_english": "The irruption of the police surprised everyone.", + "pos": "noun", + "word_frequency": 13028 + }, + { + "word": "jeep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jeep", + "example_sentence_native": "Condujo un jeep por el camino de tierra.", + "example_sentence_english": "He drove a jeep on the dirt road.", + "pos": "noun", + "word_frequency": 13029 + }, + { + "word": "labial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labial;lip (adj.)", + "example_sentence_native": "Se puso un bálsamo labial para los labios secos.", + "example_sentence_english": "She put on a lip balm for dry lips.", + "pos": "adjective", + "word_frequency": 13036 + }, + { + "word": "lavandería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundry;laundromat", + "example_sentence_native": "Necesito ir a la lavandería hoy.", + "example_sentence_english": "I need to go to the laundromat today.", + "pos": "noun", + "word_frequency": 13038 + }, + { + "word": "losa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slab", + "example_sentence_native": "La losa de mármol era muy pesada.", + "example_sentence_english": "The marble slab was very heavy.", + "pos": "noun", + "word_frequency": 13040 + }, + { + "word": "lápida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tombstone", + "example_sentence_native": "Grabaron su nombre en la lápida.", + "example_sentence_english": "They carved his name on the tombstone.", + "pos": "noun", + "word_frequency": 13041 + }, + { + "word": "maletín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefcase", + "example_sentence_native": "Llevaba un maletín lleno de documentos importantes.", + "example_sentence_english": "He was carrying a briefcase full of important documents.", + "pos": "noun", + "word_frequency": 13042 + }, + { + "word": "malversación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embezzlement", + "example_sentence_native": "Fue acusado de malversación de fondos públicos.", + "example_sentence_english": "He was accused of embezzlement of public funds.", + "pos": "noun", + "word_frequency": 13043 + }, + { + "word": "manzano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apple tree", + "example_sentence_native": "El manzano del jardín da muchas manzanas cada año.", + "example_sentence_english": "The apple tree in the garden yields many apples every year.", + "pos": "noun", + "word_frequency": 13044 + }, + { + "word": "mimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mime;pampering", + "example_sentence_native": "El mimo actuó en la calle para los transeúntes.", + "example_sentence_english": "The mime performed on the street for passersby.", + "pos": "noun", + "word_frequency": 13048 + }, + { + "word": "misteriosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mysteriously", + "example_sentence_native": "El objeto desapareció misteriosamente de la mesa.", + "example_sentence_english": "The object mysteriously disappeared from the table.", + "pos": "adverb", + "word_frequency": 13049 + }, + { + "word": "monzón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monsoon", + "example_sentence_native": "La temporada de monzones trae fuertes lluvias a la región.", + "example_sentence_english": "The monsoon season brings heavy rains to the region.", + "pos": "noun", + "word_frequency": 13050 + }, + { + "word": "naturalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalist", + "example_sentence_native": "El naturalista estudió la flora y fauna local.", + "example_sentence_english": "The naturalist studied the local flora and fauna.", + "pos": "noun", + "word_frequency": 13052 + }, + { + "word": "notificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notify", + "example_sentence_native": "Debemos notificar a la policía sobre el incidente.", + "example_sentence_english": "We must notify the police about the incident.", + "pos": "verb", + "word_frequency": 13054 + }, + { + "word": "notoriamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notoriously", + "example_sentence_native": "Su ausencia fue notoriamente evidente.", + "example_sentence_english": "His absence was notoriously evident.", + "pos": "adverb", + "word_frequency": 13055 + }, + { + "word": "organizativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organizational", + "example_sentence_native": "Necesitamos mejorar la estructura organizativa de la empresa.", + "example_sentence_english": "We need to improve the organizational structure of the company.", + "pos": "adjective", + "word_frequency": 13057 + }, + { + "word": "oráculo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oracle", + "example_sentence_native": "Consultaron al oráculo para conocer su destino.", + "example_sentence_english": "They consulted the oracle to know their destiny.", + "pos": "noun", + "word_frequency": 13058 + }, + { + "word": "ovario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ovary", + "example_sentence_native": "El ovario es una glándula reproductora femenina.", + "example_sentence_english": "The ovary is a female reproductive gland.", + "pos": "noun", + "word_frequency": 13059 + }, + { + "word": "ovni", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "UFO", + "example_sentence_native": "Muchas personas afirman haber visto un ovni.", + "example_sentence_english": "Many people claim to have seen a UFO.", + "pos": "noun", + "word_frequency": 13060 + }, + { + "word": "pactar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to agree;to pact", + "example_sentence_native": "Las partes lograron pactar un acuerdo de paz.", + "example_sentence_english": "The parties managed to pact a peace agreement.", + "pos": "verb", + "word_frequency": 13061 + }, + { + "word": "pagano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pagan", + "example_sentence_native": "Las antiguas culturas tenían rituales paganos.", + "example_sentence_english": "Ancient cultures had pagan rituals.", + "pos": "noun", + "word_frequency": 13062 + }, + { + "word": "parabrisas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "windshield", + "example_sentence_native": "El parabrisas del coche estaba sucio.", + "example_sentence_english": "The car's windshield was dirty.", + "pos": "noun", + "word_frequency": 13063 + }, + { + "word": "paraiso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paradise", + "example_sentence_native": "La isla es un verdadero paraíso tropical.", + "example_sentence_english": "The island is a true tropical paradise.", + "pos": "noun", + "word_frequency": 13064 + }, + { + "word": "pedal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pedal", + "example_sentence_native": "Presiona el pedal del freno suavemente.", + "example_sentence_english": "Press the brake pedal gently.", + "pos": "noun", + "word_frequency": 13066 + }, + { + "word": "perejil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parsley", + "example_sentence_native": "Añade un poco de perejil picado a la sopa.", + "example_sentence_english": "Add some chopped parsley to the soup.", + "pos": "noun", + "word_frequency": 13067 + }, + { + "word": "perenne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perennial", + "example_sentence_native": "Las plantas perennes florecen año tras año.", + "example_sentence_english": "Perennial plants bloom year after year.", + "pos": "adjective", + "word_frequency": 13068 + }, + { + "word": "perfeccionamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improvement;refinement", + "example_sentence_native": "El perfeccionamiento de sus habilidades es constante.", + "example_sentence_english": "The improvement of his skills is constant.", + "pos": "noun", + "word_frequency": 13069 + }, + { + "word": "picnic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "picnic", + "example_sentence_native": "Fuimos de picnic al parque el domingo.", + "example_sentence_english": "We went for a picnic in the park on Sunday.", + "pos": "noun", + "word_frequency": 13073 + }, + { + "word": "plagar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to plague;to infest", + "example_sentence_native": "La zona está plagada de mosquitos.", + "example_sentence_english": "The area is plagued by mosquitoes.", + "pos": "verb", + "word_frequency": 13074 + }, + { + "word": "poderío", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "power;might", + "example_sentence_native": "El país demostró su poderío militar.", + "example_sentence_english": "The country demonstrated its military might.", + "pos": "noun", + "word_frequency": 13075 + }, + { + "word": "politécnico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polytechnic", + "example_sentence_native": "Estudió ingeniería en una universidad politécnica.", + "example_sentence_english": "He studied engineering at a polytechnic university.", + "pos": "adjective", + "word_frequency": 13076 + }, + { + "word": "postulación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "application;candidacy", + "example_sentence_native": "Su postulación para el puesto fue aceptada.", + "example_sentence_english": "His application for the position was accepted.", + "pos": "noun", + "word_frequency": 13078 + }, + { + "word": "proposito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purpose;intention", + "example_sentence_native": "¿Cuál es el propósito de esta reunión?", + "example_sentence_english": "What is the purpose of this meeting?", + "pos": "noun", + "word_frequency": 13079 + }, + { + "word": "psicológicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychologically", + "example_sentence_native": "Psicológicamente, no estaba preparado para la noticia.", + "example_sentence_english": "Psychologically, he was not prepared for the news.", + "pos": "adverb", + "word_frequency": 13080 + }, + { + "word": "psicosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychosis", + "example_sentence_native": "La psicosis puede manifestarse de diversas formas.", + "example_sentence_english": "Psychosis can manifest in various forms.", + "pos": "noun", + "word_frequency": 13081 + }, + { + "word": "pudor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modesty", + "example_sentence_native": "Sintió pudor al hablar de sus sentimientos más íntimos.", + "example_sentence_english": "He felt modesty when talking about his most intimate feelings.", + "pos": "noun", + "word_frequency": 13082 + }, + { + "word": "reactivar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reactivate", + "example_sentence_native": "Necesitamos reactivar la economía local.", + "example_sentence_english": "We need to reactivate the local economy.", + "pos": "verb", + "word_frequency": 13086 + }, + { + "word": "redada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid", + "example_sentence_native": "La policía realizó una redada en el almacén.", + "example_sentence_english": "The police carried out a raid on the warehouse.", + "pos": "noun", + "word_frequency": 13088 + }, + { + "word": "reiterado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repeated", + "example_sentence_native": "Recibimos quejas reiteradas sobre el ruido.", + "example_sentence_english": "We received repeated complaints about the noise.", + "pos": "adjective", + "word_frequency": 13089 + }, + { + "word": "remitir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to send", + "example_sentence_native": "Por favor, remita el documento a la oficina principal.", + "example_sentence_english": "Please send the document to the main office.", + "pos": "verb", + "word_frequency": 13090 + }, + { + "word": "resignación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation", + "example_sentence_native": "Aceptó su destino con resignación.", + "example_sentence_english": "He accepted his fate with resignation.", + "pos": "noun", + "word_frequency": 13092 + }, + { + "word": "resina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resin", + "example_sentence_native": "La resina se usa para hacer plásticos.", + "example_sentence_english": "Resin is used to make plastics.", + "pos": "noun", + "word_frequency": 13093 + }, + { + "word": "resort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resort", + "example_sentence_native": "Pasamos nuestras vacaciones en un resort de lujo.", + "example_sentence_english": "We spent our vacation at a luxury resort.", + "pos": "noun", + "word_frequency": 13094 + }, + { + "word": "retina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retina", + "example_sentence_native": "La retina es una parte esencial del ojo.", + "example_sentence_english": "The retina is an essential part of the eye.", + "pos": "noun", + "word_frequency": 13095 + }, + { + "word": "retroalimentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feedback", + "example_sentence_native": "Necesitamos tu retroalimentación para mejorar el proyecto.", + "example_sentence_english": "We need your feedback to improve the project.", + "pos": "noun", + "word_frequency": 13096 + }, + { + "word": "sarcástico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcastic", + "example_sentence_native": "Su comentario sarcástico no fue bien recibido.", + "example_sentence_english": "His sarcastic comment was not well received.", + "pos": "adjective", + "word_frequency": 13098 + }, + { + "word": "sendos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "each (respective)", + "example_sentence_native": "Los dos equipos ganaron sendos partidos.", + "example_sentence_english": "The two teams won their respective matches.", + "pos": "adjective", + "word_frequency": 13099 + }, + { + "word": "share", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to share", + "example_sentence_native": "Por favor, share esta publicación con tus amigos.", + "example_sentence_english": "Please share this post with your friends.", + "pos": "verb", + "word_frequency": 13101 + }, + { + "word": "sinagoga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synagogue", + "example_sentence_native": "La sinagoga es un lugar de culto judío.", + "example_sentence_english": "The synagogue is a Jewish place of worship.", + "pos": "noun", + "word_frequency": 13102 + }, + { + "word": "sindicalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade unionism", + "example_sentence_native": "El sindicalismo ha jugado un papel importante en la historia laboral.", + "example_sentence_english": "Trade unionism has played an important role in labor history.", + "pos": "noun", + "word_frequency": 13103 + }, + { + "word": "solventar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to solve", + "example_sentence_native": "Debemos solventar este problema lo antes posible.", + "example_sentence_english": "We must solve this problem as soon as possible.", + "pos": "verb", + "word_frequency": 13104 + }, + { + "word": "sound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sound (audio)", + "example_sentence_native": "El sound de la película es excelente.", + "example_sentence_english": "The sound of the movie is excellent.", + "pos": "noun", + "word_frequency": 13105 + }, + { + "word": "studies", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studies (academic field)", + "example_sentence_native": "Ella se especializa en cultural studies.", + "example_sentence_english": "She specializes in cultural studies.", + "pos": "noun", + "word_frequency": 13106 + }, + { + "word": "superávit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus", + "example_sentence_native": "El país registró un superávit comercial este año.", + "example_sentence_english": "The country registered a trade surplus this year.", + "pos": "noun", + "word_frequency": 13107 + }, + { + "word": "tenista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tennis player", + "example_sentence_native": "Rafael Nadal es un famoso tenista español.", + "example_sentence_english": "Rafael Nadal is a famous Spanish tennis player.", + "pos": "noun", + "word_frequency": 13109 + }, + { + "word": "teólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theologian", + "example_sentence_native": "El teólogo dio una conferencia sobre la fe.", + "example_sentence_english": "The theologian gave a lecture on faith.", + "pos": "noun", + "word_frequency": 13110 + }, + { + "word": "timidez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shyness", + "example_sentence_native": "Su timidez le impedía hablar en público.", + "example_sentence_english": "His shyness prevented him from speaking in public.", + "pos": "noun", + "word_frequency": 13111 + }, + { + "word": "tipología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "typology", + "example_sentence_native": "Estudiamos la tipología de los suelos de la región.", + "example_sentence_english": "We studied the typology of the soils in the region.", + "pos": "noun", + "word_frequency": 13113 + }, + { + "word": "torrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torrent", + "example_sentence_native": "Descargó el archivo usando un cliente de torrent.", + "example_sentence_english": "He downloaded the file using a torrent client.", + "pos": "noun", + "word_frequency": 13114 + }, + { + "word": "trazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stroke", + "example_sentence_native": "El artista hizo un trazo firme en el lienzo.", + "example_sentence_english": "The artist made a firm stroke on the canvas.", + "pos": "noun", + "word_frequency": 13115 + }, + { + "word": "tuerto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one-eyed person", + "example_sentence_native": "El pirata era tuerto.", + "example_sentence_english": "The pirate was one-eyed.", + "pos": "noun", + "word_frequency": 13117 + }, + { + "word": "unicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only", + "example_sentence_native": "Únicamente los miembros pueden entrar al club.", + "example_sentence_english": "Only members can enter the club.", + "pos": "adverb", + "word_frequency": 13122 + }, + { + "word": "vidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seer", + "example_sentence_native": "La vidente predijo un futuro incierto.", + "example_sentence_english": "The seer predicted an uncertain future.", + "pos": "noun", + "word_frequency": 13124 + }, + { + "word": "voltear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn over", + "example_sentence_native": "Por favor, voltea la página para continuar leyendo.", + "example_sentence_english": "Please, turn the page to continue reading.", + "pos": "verb", + "word_frequency": 13125 + }, + { + "word": "vómito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vomit", + "example_sentence_native": "El niño tuvo un ataque de vómito durante la noche.", + "example_sentence_english": "The child had an attack of vomit during the night.", + "pos": "noun", + "word_frequency": 13127 + }, + { + "word": "ámbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amber", + "example_sentence_native": "El collar de ámbar brillaba bajo la luz.", + "example_sentence_english": "The amber necklace shone under the light.", + "pos": "noun", + "word_frequency": 13131 + }, + { + "word": "ícono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icon", + "example_sentence_native": "Haz clic en el ícono para abrir la aplicación.", + "example_sentence_english": "Click on the icon to open the application.", + "pos": "noun", + "word_frequency": 13132 + }, + { + "word": "abusivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abusive", + "example_sentence_native": "Su comportamiento fue considerado abusivo por todos.", + "example_sentence_english": "His behavior was considered abusive by everyone.", + "pos": "adjective", + "word_frequency": 13135 + }, + { + "word": "afección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condition", + "example_sentence_native": "Sufre de una afección respiratoria crónica.", + "example_sentence_english": "He suffers from a chronic respiratory condition.", + "pos": "noun", + "word_frequency": 13137 + }, + { + "word": "aguardar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to await", + "example_sentence_native": "Debemos aguardar su respuesta antes de actuar.", + "example_sentence_english": "We must await his answer before acting.", + "pos": "verb", + "word_frequency": 13138 + }, + { + "word": "aledaño", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adjacent", + "example_sentence_native": "Las propiedades aledañas fueron vendidas rápidamente.", + "example_sentence_english": "The adjacent properties were sold quickly.", + "pos": "adjective", + "word_frequency": 13139 + }, + { + "word": "apreciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciated", + "example_sentence_native": "Su esfuerzo fue muy apreciado por el equipo.", + "example_sentence_english": "His effort was much appreciated by the team.", + "pos": "adjective", + "word_frequency": 13143 + }, + { + "word": "arbitrariamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitrarily", + "example_sentence_native": "El juez actuó arbitrariamente sin seguir la ley.", + "example_sentence_english": "The judge acted arbitrarily without following the law.", + "pos": "adverb", + "word_frequency": 13144 + }, + { + "word": "artificialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artificially", + "example_sentence_native": "La fruta fue madurada artificialmente para la venta.", + "example_sentence_english": "The fruit was ripened artificially for sale.", + "pos": "adverb", + "word_frequency": 13145 + }, + { + "word": "autodidacta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-taught person", + "example_sentence_native": "Es un autodidacta en el campo de la informática.", + "example_sentence_english": "He is a self-taught person in the field of computer science.", + "pos": "noun", + "word_frequency": 13146 + }, + { + "word": "avería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breakdown", + "example_sentence_native": "El coche sufrió una avería en medio de la carretera.", + "example_sentence_english": "The car suffered a breakdown in the middle of the road.", + "pos": "noun", + "word_frequency": 13147 + }, + { + "word": "bacalao", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cod", + "example_sentence_native": "El bacalao es un pescado muy popular en la cocina española.", + "example_sentence_english": "Cod is a very popular fish in Spanish cuisine.", + "pos": "noun", + "word_frequency": 13148 + }, + { + "word": "baraja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deck of cards", + "example_sentence_native": "Mezcla bien la baraja antes de empezar a jugar.", + "example_sentence_english": "Shuffle the deck of cards well before starting to play.", + "pos": "noun", + "word_frequency": 13149 + }, + { + "word": "barbilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chin", + "example_sentence_native": "Se golpeó la barbilla al caerse de la bicicleta.", + "example_sentence_english": "He hit his chin when he fell off the bicycle.", + "pos": "noun", + "word_frequency": 13150 + }, + { + "word": "blogger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blogger", + "example_sentence_native": "Ella es una blogger de moda muy influyente.", + "example_sentence_english": "She is a very influential fashion blogger.", + "pos": "noun", + "word_frequency": 13152 + }, + { + "word": "bombardear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bomb", + "example_sentence_native": "Decidieron bombardear las posiciones enemigas.", + "example_sentence_english": "They decided to bomb the enemy positions.", + "pos": "verb", + "word_frequency": 13153 + }, + { + "word": "calentura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fever", + "example_sentence_native": "El niño tiene calentura y necesita descansar.", + "example_sentence_english": "The child has a fever and needs to rest.", + "pos": "noun", + "word_frequency": 13155 + }, + { + "word": "caminante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walker", + "example_sentence_native": "El caminante disfrutó del hermoso paisaje de la montaña.", + "example_sentence_english": "The walker enjoyed the beautiful mountain scenery.", + "pos": "noun", + "word_frequency": 13156 + }, + { + "word": "chófer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver;chauffeur", + "example_sentence_native": "El chófer nos llevó al aeropuerto.", + "example_sentence_english": "The driver took us to the airport.", + "pos": "noun", + "word_frequency": 13161 + }, + { + "word": "collage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collage", + "example_sentence_native": "Hizo un hermoso collage con fotos antiguas.", + "example_sentence_english": "She made a beautiful collage with old photos.", + "pos": "noun", + "word_frequency": 13162 + }, + { + "word": "conjetura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conjecture;guess", + "example_sentence_native": "Su conjetura resultó ser correcta.", + "example_sentence_english": "His conjecture turned out to be correct.", + "pos": "noun", + "word_frequency": 13163 + }, + { + "word": "critique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "critique", + "example_sentence_native": "Su ensayo ofrecía una profunda critique del sistema.", + "example_sentence_english": "His essay offered a profound critique of the system.", + "pos": "noun", + "word_frequency": 13165 + }, + { + "word": "cucharada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spoonful;tablespoon", + "example_sentence_native": "Añade una cucharada de azúcar al café.", + "example_sentence_english": "Add a spoonful of sugar to the coffee.", + "pos": "noun", + "word_frequency": 13166 + }, + { + "word": "códice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "codex", + "example_sentence_native": "El códice antiguo contenía textos valiosos.", + "example_sentence_english": "The ancient codex contained valuable texts.", + "pos": "noun", + "word_frequency": 13167 + }, + { + "word": "decididamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decidedly;firmly", + "example_sentence_native": "Decididamente, no estoy de acuerdo con esa idea.", + "example_sentence_english": "Decidedly, I do not agree with that idea.", + "pos": "adverb", + "word_frequency": 13169 + }, + { + "word": "demagogia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demagoguery", + "example_sentence_native": "El político fue acusado de demagogia.", + "example_sentence_english": "The politician was accused of demagoguery.", + "pos": "noun", + "word_frequency": 13170 + }, + { + "word": "deportado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deportee", + "example_sentence_native": "El deportado regresó a su país de origen.", + "example_sentence_english": "The deportee returned to his country of origin.", + "pos": "noun", + "word_frequency": 13171 + }, + { + "word": "derrocamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overthrow;downfall", + "example_sentence_native": "El derrocamiento del gobierno fue inesperado.", + "example_sentence_english": "The overthrow of the government was unexpected.", + "pos": "noun", + "word_frequency": 13173 + }, + { + "word": "descartes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discards;rejections", + "example_sentence_native": "Los descartes de la fábrica contaminan el río.", + "example_sentence_english": "The factory's discards pollute the river.", + "pos": "noun", + "word_frequency": 13174 + }, + { + "word": "descendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descending;downward", + "example_sentence_native": "La trayectoria descendente del avión preocupó a todos.", + "example_sentence_english": "The descending trajectory of the plane worried everyone.", + "pos": "adjective", + "word_frequency": 13175 + }, + { + "word": "desconcierto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bewilderment;confusion", + "example_sentence_native": "Su respuesta causó un gran desconcierto.", + "example_sentence_english": "His answer caused great bewilderment.", + "pos": "noun", + "word_frequency": 13176 + }, + { + "word": "deslizamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slide;slip;landslide", + "example_sentence_native": "Hubo un deslizamiento de tierra en la montaña.", + "example_sentence_english": "There was a landslide on the mountain.", + "pos": "noun", + "word_frequency": 13177 + }, + { + "word": "detalladamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in detail;thoroughly", + "example_sentence_native": "Explicó el plan detalladamente.", + "example_sentence_english": "He explained the plan in detail.", + "pos": "adverb", + "word_frequency": 13178 + }, + { + "word": "digestión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digestion", + "example_sentence_native": "Una buena digestión es clave para la salud.", + "example_sentence_english": "Good digestion is key to health.", + "pos": "noun", + "word_frequency": 13179 + }, + { + "word": "elasticidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elasticity", + "example_sentence_native": "La elasticidad del material es impresionante.", + "example_sentence_english": "The elasticity of the material is impressive.", + "pos": "noun", + "word_frequency": 13181 + }, + { + "word": "enfriamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooling;chilling", + "example_sentence_native": "El enfriamiento global es un tema de debate.", + "example_sentence_english": "Global cooling is a topic of debate.", + "pos": "noun", + "word_frequency": 13182 + }, + { + "word": "equipar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to equip;to furnish", + "example_sentence_native": "Necesitamos equipar la oficina con nuevos ordenadores.", + "example_sentence_english": "We need to equip the office with new computers.", + "pos": "verb", + "word_frequency": 13183 + }, + { + "word": "escalofrío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shiver;chill", + "example_sentence_native": "Sentí un escalofrío al escuchar la historia.", + "example_sentence_english": "I felt a shiver when I heard the story.", + "pos": "noun", + "word_frequency": 13184 + }, + { + "word": "eslabón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "link (of a chain);component", + "example_sentence_native": "Es el eslabón más débil de la cadena.", + "example_sentence_english": "It's the weakest link in the chain.", + "pos": "noun", + "word_frequency": 13185 + }, + { + "word": "espanto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fright;terror;horror", + "example_sentence_native": "La película de terror causó espanto.", + "example_sentence_english": "The horror movie caused fright.", + "pos": "noun", + "word_frequency": 13186 + }, + { + "word": "esparcimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recreation;leisure;scattering", + "example_sentence_native": "Necesitamos más áreas de esparcimiento en la ciudad.", + "example_sentence_english": "We need more recreation areas in the city.", + "pos": "noun", + "word_frequency": 13187 + }, + { + "word": "estribillo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chorus;refrain", + "example_sentence_native": "El estribillo de la canción es muy pegadizo.", + "example_sentence_english": "The chorus of the song is very catchy.", + "pos": "noun", + "word_frequency": 13188 + }, + { + "word": "evangelización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evangelization", + "example_sentence_native": "La evangelización de nuevas tierras fue un objetivo.", + "example_sentence_english": "The evangelization of new lands was a goal.", + "pos": "noun", + "word_frequency": 13189 + }, + { + "word": "falsamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "falsely;wrongly", + "example_sentence_native": "Fue acusado falsamente de un crimen.", + "example_sentence_english": "He was falsely accused of a crime.", + "pos": "adverb", + "word_frequency": 13191 + }, + { + "word": "fango", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud;mire", + "example_sentence_native": "Los coches se atascaron en el fango.", + "example_sentence_english": "The cars got stuck in the mud.", + "pos": "noun", + "word_frequency": 13192 + }, + { + "word": "fisura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fissure;crack", + "example_sentence_native": "Hay una pequeña fisura en la pared.", + "example_sentence_english": "There is a small crack in the wall.", + "pos": "noun", + "word_frequency": 13195 + }, + { + "word": "florecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bloom;to flourish", + "example_sentence_native": "Las flores empiezan a florecer en primavera.", + "example_sentence_english": "The flowers begin to bloom in spring.", + "pos": "verb", + "word_frequency": 13196 + }, + { + "word": "forja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forge;smithy", + "example_sentence_native": "El herrero trabaja en la forja.", + "example_sentence_english": "The blacksmith works in the forge.", + "pos": "noun", + "word_frequency": 13197 + }, + { + "word": "fraccionamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subdivision;fractionation", + "example_sentence_native": "Compraron un lote en un nuevo fraccionamiento.", + "example_sentence_english": "They bought a lot in a new subdivision.", + "pos": "noun", + "word_frequency": 13198 + }, + { + "word": "garante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guarantor;warrantor", + "example_sentence_native": "El banco pidió un garante para el préstamo.", + "example_sentence_english": "The bank asked for a guarantor for the loan.", + "pos": "noun", + "word_frequency": 13199 + }, + { + "word": "gema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gem", + "example_sentence_native": "Encontró una gema preciosa en la mina.", + "example_sentence_english": "He found a precious gem in the mine.", + "pos": "noun", + "word_frequency": 13201 + }, + { + "word": "geológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geological", + "example_sentence_native": "Estudiamos la historia geológica de la Tierra.", + "example_sentence_english": "We study the geological history of the Earth.", + "pos": "adjective", + "word_frequency": 13202 + }, + { + "word": "girasol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunflower", + "example_sentence_native": "El campo estaba lleno de girasoles amarillos.", + "example_sentence_english": "The field was full of yellow sunflowers.", + "pos": "noun", + "word_frequency": 13203 + }, + { + "word": "granero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barn", + "example_sentence_native": "El granero estaba lleno de heno.", + "example_sentence_english": "The barn was full of hay.", + "pos": "noun", + "word_frequency": 13208 + }, + { + "word": "hospitalario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospitable", + "example_sentence_native": "La gente del pueblo es muy hospitalaria.", + "example_sentence_english": "The people of the town are very hospitable.", + "pos": "adjective", + "word_frequency": 13215 + }, + { + "word": "hoz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sickle", + "example_sentence_native": "El campesino usaba una hoz para cortar el trigo.", + "example_sentence_english": "The farmer used a sickle to cut the wheat.", + "pos": "noun", + "word_frequency": 13216 + }, + { + "word": "inadmisible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inadmissible", + "example_sentence_native": "Su comportamiento fue completamente inadmisible.", + "example_sentence_english": "His behavior was completely inadmissible.", + "pos": "adjective", + "word_frequency": 13217 + }, + { + "word": "incesto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incest", + "example_sentence_native": "El incesto es un tema tabú en muchas culturas.", + "example_sentence_english": "Incest is a taboo subject in many cultures.", + "pos": "noun", + "word_frequency": 13218 + }, + { + "word": "ineficiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inefficient", + "example_sentence_native": "El sistema actual es muy ineficiente.", + "example_sentence_english": "The current system is very inefficient.", + "pos": "adjective", + "word_frequency": 13219 + }, + { + "word": "influenciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to influence", + "example_sentence_native": "Sus palabras pueden influenciar a mucha gente.", + "example_sentence_english": "His words can influence many people.", + "pos": "verb", + "word_frequency": 13220 + }, + { + "word": "inmóvil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motionless;immobile", + "example_sentence_native": "Se quedó inmóvil, observando la escena.", + "example_sentence_english": "He remained motionless, observing the scene.", + "pos": "adjective", + "word_frequency": 13221 + }, + { + "word": "langosta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lobster", + "example_sentence_native": "Cenamos langosta fresca en la playa.", + "example_sentence_english": "We had fresh lobster for dinner on the beach.", + "pos": "noun", + "word_frequency": 13224 + }, + { + "word": "limítrofe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bordering;adjacent", + "example_sentence_native": "Los países limítrofes comparten una frontera.", + "example_sentence_english": "Bordering countries share a frontier.", + "pos": "adjective", + "word_frequency": 13229 + }, + { + "word": "liturgia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liturgy", + "example_sentence_native": "La liturgia de la misa es muy antigua.", + "example_sentence_english": "The liturgy of the mass is very old.", + "pos": "noun", + "word_frequency": 13230 + }, + { + "word": "lluvioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rainy", + "example_sentence_native": "Hoy es un día muy lluvioso.", + "example_sentence_english": "Today is a very rainy day.", + "pos": "adjective", + "word_frequency": 13231 + }, + { + "word": "logístico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logistical", + "example_sentence_native": "Necesitamos mejorar la planificación logística.", + "example_sentence_english": "We need to improve logistical planning.", + "pos": "adjective", + "word_frequency": 13232 + }, + { + "word": "magnifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnificent", + "example_sentence_native": "El paisaje era simplemente magnífico.", + "example_sentence_english": "The landscape was simply magnificent.", + "pos": "adjective", + "word_frequency": 13236 + }, + { + "word": "manco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one-armed person", + "example_sentence_native": "El hombre manco aprendió a escribir con el pie.", + "example_sentence_english": "The one-armed man learned to write with his foot.", + "pos": "noun", + "word_frequency": 13237 + }, + { + "word": "mancomunidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commonwealth;association of municipalities", + "example_sentence_native": "La mancomunidad de municipios gestiona los servicios locales.", + "example_sentence_english": "The association of municipalities manages local services.", + "pos": "noun", + "word_frequency": 13238 + }, + { + "word": "manjar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delicacy;treat", + "example_sentence_native": "Este postre es un verdadero manjar.", + "example_sentence_english": "This dessert is a true delicacy.", + "pos": "noun", + "word_frequency": 13239 + }, + { + "word": "manso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tame;gentle", + "example_sentence_native": "El perro es muy manso con los niños.", + "example_sentence_english": "The dog is very gentle with children.", + "pos": "adjective", + "word_frequency": 13240 + }, + { + "word": "mascarilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mask;face mask", + "example_sentence_native": "Es obligatorio usar mascarilla en el transporte público.", + "example_sentence_english": "It is mandatory to wear a mask on public transport.", + "pos": "noun", + "word_frequency": 13243 + }, + { + "word": "mayorista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wholesaler", + "example_sentence_native": "Compramos los productos directamente del mayorista.", + "example_sentence_english": "We buy the products directly from the wholesaler.", + "pos": "noun", + "word_frequency": 13245 + }, + { + "word": "medidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meter;gauge", + "example_sentence_native": "El medidor de gas está en la pared.", + "example_sentence_english": "The gas meter is on the wall.", + "pos": "noun", + "word_frequency": 13247 + }, + { + "word": "merengue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meringue (dessert);merengue (dance;music)", + "example_sentence_native": "Me encanta bailar merengue.", + "example_sentence_english": "I love dancing merengue.", + "pos": "noun", + "word_frequency": 13248 + }, + { + "word": "metafísica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphysics", + "example_sentence_native": "La metafísica es una rama de la filosofía.", + "example_sentence_english": "Metaphysics is a branch of philosophy.", + "pos": "noun", + "word_frequency": 13250 + }, + { + "word": "metamorfosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metamorphosis", + "example_sentence_native": "La oruga experimenta una metamorfosis para convertirse en mariposa.", + "example_sentence_english": "The caterpillar undergoes a metamorphosis to become a butterfly.", + "pos": "noun", + "word_frequency": 13251 + }, + { + "word": "mili", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military service (colloquial)", + "example_sentence_native": "Hizo la mili hace muchos años.", + "example_sentence_english": "He did his military service many years ago.", + "pos": "noun", + "word_frequency": 13252 + }, + { + "word": "modelar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to model;to shape", + "example_sentence_native": "A ella le gusta modelar con arcilla.", + "example_sentence_english": "She likes to model with clay.", + "pos": "verb", + "word_frequency": 13253 + }, + { + "word": "monedero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coin purse;wallet", + "example_sentence_native": "Perdí mi monedero con todas mis monedas.", + "example_sentence_english": "I lost my coin purse with all my coins.", + "pos": "noun", + "word_frequency": 13255 + }, + { + "word": "morfología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morphology", + "example_sentence_native": "La morfología estudia la estructura de las palabras.", + "example_sentence_english": "Morphology studies the structure of words.", + "pos": "noun", + "word_frequency": 13256 + }, + { + "word": "obsesivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsessive", + "example_sentence_native": "Tiene un comportamiento obsesivo con la limpieza.", + "example_sentence_english": "He has an obsessive behavior with cleanliness.", + "pos": "adjective", + "word_frequency": 13260 + }, + { + "word": "obsoleto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsolete", + "example_sentence_native": "Esa tecnología ya está obsoleta.", + "example_sentence_english": "That technology is already obsolete.", + "pos": "adjective", + "word_frequency": 13261 + }, + { + "word": "ocupacional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupational", + "example_sentence_native": "Recibió terapia ocupacional después del accidente.", + "example_sentence_english": "He received occupational therapy after the accident.", + "pos": "adjective", + "word_frequency": 13262 + }, + { + "word": "otrora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formerly;in times past", + "example_sentence_native": "Otrora, este lugar era un bosque denso.", + "example_sentence_english": "Formerly, this place was a dense forest.", + "pos": "adverb", + "word_frequency": 13265 + }, + { + "word": "palpable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palpable;tangible", + "example_sentence_native": "La tensión en la sala era palpable.", + "example_sentence_english": "The tension in the room was palpable.", + "pos": "adjective", + "word_frequency": 13268 + }, + { + "word": "papal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papal", + "example_sentence_native": "La visita papal fue un evento histórico.", + "example_sentence_english": "The papal visit was a historic event.", + "pos": "adjective", + "word_frequency": 13269 + }, + { + "word": "paranormal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranormal", + "example_sentence_native": "Investigan fenómenos paranormales.", + "example_sentence_english": "They investigate paranormal phenomena.", + "pos": "adjective", + "word_frequency": 13270 + }, + { + "word": "patrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotic;national (related to homeland)", + "example_sentence_native": "Celebraron el día patrio con desfiles.", + "example_sentence_english": "They celebrated the national day with parades.", + "pos": "adjective", + "word_frequency": 13271 + }, + { + "word": "pelar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to peel;to skin;to shave (hair)", + "example_sentence_native": "Necesito pelar las patatas para la cena.", + "example_sentence_english": "I need to peel the potatoes for dinner.", + "pos": "verb", + "word_frequency": 13272 + }, + { + "word": "pensionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pensioner", + "example_sentence_native": "Mi abuela es pensionista y vive de su jubilación.", + "example_sentence_english": "My grandmother is a pensioner and lives off her retirement.", + "pos": "noun", + "word_frequency": 13273 + }, + { + "word": "personalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to personalize;to customize", + "example_sentence_native": "Puedes personalizar la configuración de tu teléfono.", + "example_sentence_english": "You can personalize your phone settings.", + "pos": "verb", + "word_frequency": 13274 + }, + { + "word": "pitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to honk;to whistle;to beep", + "example_sentence_native": "El árbitro pitó el final del partido.", + "example_sentence_english": "The referee whistled the end of the match.", + "pos": "verb", + "word_frequency": 13276 + }, + { + "word": "placentero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasant;pleasurable", + "example_sentence_native": "Fue un viaje muy placentero.", + "example_sentence_english": "It was a very pleasant trip.", + "pos": "adjective", + "word_frequency": 13277 + }, + { + "word": "polen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollen", + "example_sentence_native": "Tengo alergia al polen en primavera.", + "example_sentence_english": "I have a pollen allergy in spring.", + "pos": "noun", + "word_frequency": 13279 + }, + { + "word": "titulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification;degree", + "example_sentence_native": "Obtuvo su titulación en ingeniería el año pasado.", + "example_sentence_english": "He obtained his engineering qualification last year.", + "pos": "noun", + "word_frequency": 13320 + }, + { + "word": "torpeza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clumsiness;awkwardness", + "example_sentence_native": "Su torpeza le hizo tropezar con la silla.", + "example_sentence_english": "His clumsiness made him trip over the chair.", + "pos": "noun", + "word_frequency": 13321 + }, + { + "word": "totalitario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "totalitarian", + "example_sentence_native": "El régimen totalitario controlaba todos los aspectos de la vida.", + "example_sentence_english": "The totalitarian regime controlled all aspects of life.", + "pos": "adjective", + "word_frequency": 13322 + }, + { + "word": "veda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closed season;ban", + "example_sentence_native": "Durante la veda, está prohibido pescar en este río.", + "example_sentence_english": "During the closed season, fishing is prohibited in this river.", + "pos": "noun", + "word_frequency": 13325 + }, + { + "word": "yen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yen", + "example_sentence_native": "El yen japonés es una moneda fuerte.", + "example_sentence_english": "The Japanese yen is a strong currency.", + "pos": "noun", + "word_frequency": 13327 + }, + { + "word": "4ta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "4th;fourth", + "example_sentence_native": "Esta es la 4ta vez que lo intento.", + "example_sentence_english": "This is the 4th time I've tried.", + "pos": "adjective", + "word_frequency": 13329 + }, + { + "word": "abogar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advocate;to plead", + "example_sentence_native": "Él siempre aboga por los derechos de los animales.", + "example_sentence_english": "He always advocates for animal rights.", + "pos": "verb", + "word_frequency": 13331 + }, + { + "word": "abolir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to abolish", + "example_sentence_native": "El gobierno decidió abolir la antigua ley.", + "example_sentence_english": "The government decided to abolish the old law.", + "pos": "verb", + "word_frequency": 13332 + }, + { + "word": "acreditado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accredited;reputable", + "example_sentence_native": "Es un experto acreditado en su campo.", + "example_sentence_english": "He is an accredited expert in his field.", + "pos": "adjective", + "word_frequency": 13333 + }, + { + "word": "agotador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhausting", + "example_sentence_native": "Fue un día de trabajo agotador.", + "example_sentence_english": "It was an exhausting day at work.", + "pos": "adjective", + "word_frequency": 13334 + }, + { + "word": "albedrío", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "free will", + "example_sentence_native": "Creemos en el libre albedrío de las personas.", + "example_sentence_english": "We believe in people's free will.", + "pos": "noun", + "word_frequency": 13336 + }, + { + "word": "alcaide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warden;governor (of a prison;fortress)", + "example_sentence_native": "El alcaide de la prisión supervisa a los reclusos.", + "example_sentence_english": "The prison warden supervises the inmates.", + "pos": "noun", + "word_frequency": 13337 + }, + { + "word": "anunciante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertiser", + "example_sentence_native": "El anunciante pagó por el espacio publicitario.", + "example_sentence_english": "The advertiser paid for the advertising space.", + "pos": "noun", + "word_frequency": 13339 + }, + { + "word": "apropiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appropriate;to seize", + "example_sentence_native": "Intentó apropiarse de los fondos públicos.", + "example_sentence_english": "He tried to appropriate public funds.", + "pos": "verb", + "word_frequency": 13340 + }, + { + "word": "apurado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a hurry;hard-pressed;embarrassed", + "example_sentence_native": "Estoy muy apurado, tengo que irme.", + "example_sentence_english": "I'm very much in a hurry, I have to go.", + "pos": "adjective", + "word_frequency": 13341 + }, + { + "word": "arraigado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deeply rooted;ingrained", + "example_sentence_native": "Es una tradición muy arraigada en la cultura.", + "example_sentence_english": "It's a tradition deeply rooted in the culture.", + "pos": "adjective", + "word_frequency": 13342 + }, + { + "word": "asomar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to peek out;to stick out;to appear", + "example_sentence_native": "El sol empezó a asomar por el horizonte.", + "example_sentence_english": "The sun began to peek out over the horizon.", + "pos": "verb", + "word_frequency": 13344 + }, + { + "word": "audífono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "headphone;hearing aid", + "example_sentence_native": "Necesito mis audífonos para escuchar música.", + "example_sentence_english": "I need my headphones to listen to music.", + "pos": "noun", + "word_frequency": 13346 + }, + { + "word": "barbado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bearded man;Barbadian", + "example_sentence_native": "El barbado se sentó en la esquina del bar.", + "example_sentence_english": "The bearded man sat in the corner of the bar.", + "pos": "noun", + "word_frequency": 13348 + }, + { + "word": "barrido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweep;scan", + "example_sentence_native": "Hizo un barrido rápido de la habitación.", + "example_sentence_english": "He did a quick sweep of the room.", + "pos": "noun", + "word_frequency": 13350 + }, + { + "word": "beisbol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baseball", + "example_sentence_native": "El beisbol es muy popular en el Caribe.", + "example_sentence_english": "Baseball is very popular in the Caribbean.", + "pos": "noun", + "word_frequency": 13353 + }, + { + "word": "bibliotecario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "librarian", + "example_sentence_native": "El bibliotecario me ayudó a encontrar el libro.", + "example_sentence_english": "The librarian helped me find the book.", + "pos": "noun", + "word_frequency": 13355 + }, + { + "word": "bilis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bile;anger", + "example_sentence_native": "La bilis ayuda en la digestión.", + "example_sentence_english": "Bile helps in digestion.", + "pos": "noun", + "word_frequency": 13356 + }, + { + "word": "bordado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embroidery", + "example_sentence_native": "El vestido tenía un hermoso bordado a mano.", + "example_sentence_english": "The dress had beautiful hand embroidery.", + "pos": "noun", + "word_frequency": 13357 + }, + { + "word": "bosta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dung;manure", + "example_sentence_native": "La bosta de vaca se usa como fertilizante.", + "example_sentence_english": "Cow dung is used as fertilizer.", + "pos": "noun", + "word_frequency": 13358 + }, + { + "word": "burócrata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucrat", + "example_sentence_native": "El burócrata procesó los documentos lentamente.", + "example_sentence_english": "The bureaucrat processed the documents slowly.", + "pos": "noun", + "word_frequency": 13360 + }, + { + "word": "cafeína", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caffeine", + "example_sentence_native": "Necesito cafeína para despertarme por la mañana.", + "example_sentence_english": "I need caffeine to wake up in the morning.", + "pos": "noun", + "word_frequency": 13361 + }, + { + "word": "canónico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canonical", + "example_sentence_native": "La versión canónica de la historia es la más aceptada.", + "example_sentence_english": "The canonical version of the story is the most accepted.", + "pos": "adjective", + "word_frequency": 13364 + }, + { + "word": "capellán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaplain", + "example_sentence_native": "El capellán visitó a los soldados heridos en el hospital.", + "example_sentence_english": "The chaplain visited the wounded soldiers in the hospital.", + "pos": "noun", + "word_frequency": 13365 + }, + { + "word": "carismático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charismatic", + "example_sentence_native": "El nuevo líder es muy carismático y atrae a mucha gente.", + "example_sentence_english": "The new leader is very charismatic and attracts many people.", + "pos": "adjective", + "word_frequency": 13366 + }, + { + "word": "carreta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cart;wagon", + "example_sentence_native": "La carreta estaba llena de heno.", + "example_sentence_english": "The cart was full of hay.", + "pos": "noun", + "word_frequency": 13368 + }, + { + "word": "casación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cassation (appeal)", + "example_sentence_native": "El abogado presentó un recurso de casación ante el tribunal supremo.", + "example_sentence_english": "The lawyer filed an appeal for cassation before the supreme court.", + "pos": "noun", + "word_frequency": 13369 + }, + { + "word": "cervecería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brewery;pub", + "example_sentence_native": "Fuimos a la cervecería a probar la nueva cerveza artesanal.", + "example_sentence_english": "We went to the brewery to try the new craft beer.", + "pos": "noun", + "word_frequency": 13370 + }, + { + "word": "cloruro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chloride", + "example_sentence_native": "El cloruro de sodio es la sal común.", + "example_sentence_english": "Sodium chloride is common salt.", + "pos": "noun", + "word_frequency": 13373 + }, + { + "word": "colosal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colossal;enormous", + "example_sentence_native": "La estatua era de tamaño colosal.", + "example_sentence_english": "The statue was of colossal size.", + "pos": "adjective", + "word_frequency": 13374 + }, + { + "word": "concurrir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concur;to attend;to converge", + "example_sentence_native": "Muchas personas concurrieron al evento.", + "example_sentence_english": "Many people attended the event.", + "pos": "verb", + "word_frequency": 13375 + }, + { + "word": "confinamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confinement;lockdown", + "example_sentence_native": "Durante el confinamiento, la gente trabajó desde casa.", + "example_sentence_english": "During the lockdown, people worked from home.", + "pos": "noun", + "word_frequency": 13376 + }, + { + "word": "contraproducente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterproductive", + "example_sentence_native": "Esa medida resultó ser contraproducente para la economía.", + "example_sentence_english": "That measure turned out to be counterproductive for the economy.", + "pos": "adjective", + "word_frequency": 13377 + }, + { + "word": "corcho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cork", + "example_sentence_native": "El corcho de la botella de vino se rompió.", + "example_sentence_english": "The cork of the wine bottle broke.", + "pos": "noun", + "word_frequency": 13378 + }, + { + "word": "corroborar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to corroborate;to confirm", + "example_sentence_native": "Necesitamos corroborar los datos antes de publicar el informe.", + "example_sentence_english": "We need to corroborate the data before publishing the report.", + "pos": "verb", + "word_frequency": 13379 + }, + { + "word": "cónyuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spouse", + "example_sentence_native": "Ambos cónyuges deben firmar el documento.", + "example_sentence_english": "Both spouses must sign the document.", + "pos": "noun", + "word_frequency": 13381 + }, + { + "word": "depuesto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deposed;overthrown", + "example_sentence_native": "El presidente depuesto huyó del país.", + "example_sentence_english": "The deposed president fled the country.", + "pos": "adjective", + "word_frequency": 13382 + }, + { + "word": "derribo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demolition;knockdown", + "example_sentence_native": "El derribo del edificio antiguo comenzará la próxima semana.", + "example_sentence_english": "The demolition of the old building will begin next week.", + "pos": "noun", + "word_frequency": 13383 + }, + { + "word": "desinterés", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinterest;lack of interest", + "example_sentence_native": "Mostró un completo desinterés por el tema.", + "example_sentence_english": "He showed complete disinterest in the topic.", + "pos": "noun", + "word_frequency": 13384 + }, + { + "word": "diluvio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flood;deluge", + "example_sentence_native": "Después de la tormenta, hubo un diluvio en las calles.", + "example_sentence_english": "After the storm, there was a flood in the streets.", + "pos": "noun", + "word_frequency": 13385 + }, + { + "word": "doblemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubly", + "example_sentence_native": "Estaba doblemente feliz por la noticia.", + "example_sentence_english": "He was doubly happy about the news.", + "pos": "adverb", + "word_frequency": 13387 + }, + { + "word": "dualidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duality", + "example_sentence_native": "La dualidad entre el bien y el mal es un tema recurrente.", + "example_sentence_english": "The duality between good and evil is a recurring theme.", + "pos": "noun", + "word_frequency": 13388 + }, + { + "word": "edicion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edition", + "example_sentence_native": "Esta es la primera edición del libro.", + "example_sentence_english": "This is the first edition of the book.", + "pos": "noun", + "word_frequency": 13389 + }, + { + "word": "edicto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edict;decree", + "example_sentence_native": "El gobierno emitió un edicto para regular el comercio.", + "example_sentence_english": "The government issued an edict to regulate trade.", + "pos": "noun", + "word_frequency": 13390 + }, + { + "word": "epilepsia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epilepsy", + "example_sentence_native": "La epilepsia es un trastorno neurológico.", + "example_sentence_english": "Epilepsy is a neurological disorder.", + "pos": "noun", + "word_frequency": 13392 + }, + { + "word": "especializar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to specialize", + "example_sentence_native": "Decidió especializarse en medicina interna.", + "example_sentence_english": "He decided to specialize in internal medicine.", + "pos": "verb", + "word_frequency": 13395 + }, + { + "word": "estacionar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to park", + "example_sentence_native": "No puedes estacionar aquí.", + "example_sentence_english": "You cannot park here.", + "pos": "verb", + "word_frequency": 13396 + }, + { + "word": "eutanasia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "euthanasia", + "example_sentence_native": "El debate sobre la eutanasia es complejo.", + "example_sentence_english": "The debate about euthanasia is complex.", + "pos": "noun", + "word_frequency": 13397 + }, + { + "word": "finito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finite", + "example_sentence_native": "Los recursos naturales son finitos.", + "example_sentence_english": "Natural resources are finite.", + "pos": "adjective", + "word_frequency": 13399 + }, + { + "word": "gamer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gamer", + "example_sentence_native": "Mi hermano es un gran gamer y pasa horas jugando.", + "example_sentence_english": "My brother is a big gamer and spends hours playing.", + "pos": "noun", + "word_frequency": 13402 + }, + { + "word": "glaciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glacier", + "example_sentence_native": "El glaciar se está derritiendo debido al cambio climático.", + "example_sentence_english": "The glacier is melting due to climate change.", + "pos": "noun", + "word_frequency": 13403 + }, + { + "word": "grava", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gravel", + "example_sentence_native": "El camino estaba cubierto de grava suelta.", + "example_sentence_english": "The path was covered in loose gravel.", + "pos": "noun", + "word_frequency": 13405 + }, + { + "word": "habitacional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residential", + "example_sentence_native": "Se construyó un nuevo complejo habitacional en la zona.", + "example_sentence_english": "A new residential complex was built in the area.", + "pos": "adjective", + "word_frequency": 13406 + }, + { + "word": "habitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabited", + "example_sentence_native": "La isla estaba habitada por una pequeña comunidad.", + "example_sentence_english": "The island was inhabited by a small community.", + "pos": "adjective", + "word_frequency": 13407 + }, + { + "word": "hipotético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothetical", + "example_sentence_native": "Es solo un escenario hipotético, no te preocupes.", + "example_sentence_english": "It's just a hypothetical scenario, don't worry.", + "pos": "adjective", + "word_frequency": 13409 + }, + { + "word": "histérico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hysterical", + "example_sentence_native": "Después de la noticia, se puso histérica.", + "example_sentence_english": "After the news, she became hysterical.", + "pos": "adjective", + "word_frequency": 13410 + }, + { + "word": "homogéneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homogeneous", + "example_sentence_native": "La mezcla debe ser completamente homogénea.", + "example_sentence_english": "The mixture must be completely homogeneous.", + "pos": "adjective", + "word_frequency": 13412 + }, + { + "word": "horca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gallows", + "example_sentence_native": "En la Edad Media, la horca era un método de ejecución.", + "example_sentence_english": "In the Middle Ages, the gallows was a method of execution.", + "pos": "noun", + "word_frequency": 13413 + }, + { + "word": "impaciencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impatience", + "example_sentence_native": "Su impaciencia era evidente mientras esperaba.", + "example_sentence_english": "His impatience was evident while he waited.", + "pos": "noun", + "word_frequency": 13415 + }, + { + "word": "impactado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shocked", + "example_sentence_native": "Me quedé impactado por la noticia.", + "example_sentence_english": "I was shocked by the news.", + "pos": "adjective", + "word_frequency": 13416 + }, + { + "word": "imperfección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperfection", + "example_sentence_native": "Cada imperfección la hacía única.", + "example_sentence_english": "Every imperfection made her unique.", + "pos": "noun", + "word_frequency": 13417 + }, + { + "word": "indocumentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undocumented", + "example_sentence_native": "Muchas personas indocumentadas buscan una vida mejor.", + "example_sentence_english": "Many undocumented people seek a better life.", + "pos": "adjective", + "word_frequency": 13418 + }, + { + "word": "inducido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "induced", + "example_sentence_native": "El sueño inducido por medicamentos es común en hospitales.", + "example_sentence_english": "Medication-induced sleep is common in hospitals.", + "pos": "adjective", + "word_frequency": 13419 + }, + { + "word": "irritante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritating", + "example_sentence_native": "Su constante queja era muy irritante.", + "example_sentence_english": "His constant complaining was very irritating.", + "pos": "adjective", + "word_frequency": 13421 + }, + { + "word": "isp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ISP", + "example_sentence_native": "Mi ISP me ofrece una conexión a internet rápida.", + "example_sentence_english": "My ISP offers me a fast internet connection.", + "pos": "noun", + "word_frequency": 13422 + }, + { + "word": "legítimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legitimately", + "example_sentence_native": "Él ganó el premio legítimamente.", + "example_sentence_english": "He legitimately won the prize.", + "pos": "adverb", + "word_frequency": 13427 + }, + { + "word": "leído", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "read (well-read)", + "example_sentence_native": "Es un libro muy leído en las escuelas.", + "example_sentence_english": "It's a widely read book in schools.", + "pos": "adjective", + "word_frequency": 13428 + }, + { + "word": "libreto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "libretto", + "example_sentence_native": "El libreto de la ópera fue escrito por un famoso poeta.", + "example_sentence_english": "The opera's libretto was written by a famous poet.", + "pos": "noun", + "word_frequency": 13429 + }, + { + "word": "madrastra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepmother", + "example_sentence_native": "Mi madrastra es muy amable conmigo.", + "example_sentence_english": "My stepmother is very kind to me.", + "pos": "noun", + "word_frequency": 13432 + }, + { + "word": "maiz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corn", + "example_sentence_native": "El maíz es un cultivo básico en muchas culturas.", + "example_sentence_english": "Corn is a staple crop in many cultures.", + "pos": "noun", + "word_frequency": 13433 + }, + { + "word": "malware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malware", + "example_sentence_native": "Mi computadora fue infectada con malware.", + "example_sentence_english": "My computer was infected with malware.", + "pos": "noun", + "word_frequency": 13434 + }, + { + "word": "masón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Freemason", + "example_sentence_native": "Se rumorea que es un masón de alto rango.", + "example_sentence_english": "He is rumored to be a high-ranking Freemason.", + "pos": "noun", + "word_frequency": 13435 + }, + { + "word": "mella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dent", + "example_sentence_native": "La caída dejó una mella en la mesa de madera.", + "example_sentence_english": "The fall left a dent in the wooden table.", + "pos": "noun", + "word_frequency": 13437 + }, + { + "word": "mercante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchant", + "example_sentence_native": "El mercante vendía especias exóticas.", + "example_sentence_english": "The merchant sold exotic spices.", + "pos": "noun", + "word_frequency": 13438 + }, + { + "word": "mudado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moved (residence)", + "example_sentence_native": "El inquilino ya está mudado a su nuevo apartamento.", + "example_sentence_english": "The tenant has already moved to his new apartment.", + "pos": "adjective", + "word_frequency": 13442 + }, + { + "word": "nazareno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nazarene", + "example_sentence_native": "Jesús de Nazaret es conocido como el Nazareno.", + "example_sentence_english": "Jesus of Nazareth is known as the Nazarene.", + "pos": "noun", + "word_frequency": 13446 + }, + { + "word": "odontología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dentistry", + "example_sentence_native": "Estudió odontología para convertirse en dentista.", + "example_sentence_english": "He studied dentistry to become a dentist.", + "pos": "noun", + "word_frequency": 13449 + }, + { + "word": "olmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elm tree", + "example_sentence_native": "El olmo es un árbol grande y frondoso.", + "example_sentence_english": "The elm is a large and leafy tree.", + "pos": "noun", + "word_frequency": 13450 + }, + { + "word": "omiso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remiss", + "example_sentence_native": "Fue omiso en sus deberes y recibió una sanción.", + "example_sentence_english": "He was remiss in his duties and received a sanction.", + "pos": "adjective", + "word_frequency": 13451 + }, + { + "word": "optimización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimization", + "example_sentence_native": "La optimización de procesos es clave para la eficiencia.", + "example_sentence_english": "Process optimization is key for efficiency.", + "pos": "noun", + "word_frequency": 13452 + }, + { + "word": "palco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "box (theater;stadium)", + "example_sentence_native": "Vimos la obra desde un palco con vistas excelentes.", + "example_sentence_english": "We watched the play from a box with excellent views.", + "pos": "noun", + "word_frequency": 13454 + }, + { + "word": "panfleto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pamphlet", + "example_sentence_native": "Repartieron panfletos informativos en la calle.", + "example_sentence_english": "They handed out informative pamphlets on the street.", + "pos": "noun", + "word_frequency": 13455 + }, + { + "word": "peine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comb", + "example_sentence_native": "Necesito un peine para desenredarme el pelo.", + "example_sentence_english": "I need a comb to untangle my hair.", + "pos": "noun", + "word_frequency": 13456 + }, + { + "word": "pinchar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prick", + "example_sentence_native": "Me pinché el dedo con una aguja.", + "example_sentence_english": "I pricked my finger with a needle.", + "pos": "verb", + "word_frequency": 13459 + }, + { + "word": "pluralismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pluralism", + "example_sentence_native": "La democracia se basa en el pluralismo de ideas.", + "example_sentence_english": "Democracy is based on the pluralism of ideas.", + "pos": "noun", + "word_frequency": 13461 + }, + { + "word": "poseedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possessor", + "example_sentence_native": "El poseedor del billete ganador reclamó el premio.", + "example_sentence_english": "The possessor of the winning ticket claimed the prize.", + "pos": "noun", + "word_frequency": 13462 + }, + { + "word": "precipicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precipice", + "example_sentence_native": "El sendero bordeaba un peligroso precipicio.", + "example_sentence_english": "The path bordered a dangerous precipice.", + "pos": "noun", + "word_frequency": 13463 + }, + { + "word": "pulga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flea", + "example_sentence_native": "Mi perro tiene pulgas y necesita tratamiento.", + "example_sentence_english": "My dog has fleas and needs treatment.", + "pos": "noun", + "word_frequency": 13464 + }, + { + "word": "raso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flat", + "example_sentence_native": "El terreno era completamente raso, sin elevaciones.", + "example_sentence_english": "The terrain was completely flat, without elevations.", + "pos": "adjective", + "word_frequency": 13465 + }, + { + "word": "recambio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replacement part", + "example_sentence_native": "Necesito un recambio para la batería del coche.", + "example_sentence_english": "I need a replacement part for the car battery.", + "pos": "noun", + "word_frequency": 13466 + }, + { + "word": "recargar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recharge", + "example_sentence_native": "Debo recargar mi teléfono antes de salir.", + "example_sentence_english": "I must recharge my phone before leaving.", + "pos": "verb", + "word_frequency": 13467 + }, + { + "word": "regresión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regression", + "example_sentence_native": "El análisis de regresión es una herramienta estadística.", + "example_sentence_english": "Regression analysis is a statistical tool.", + "pos": "noun", + "word_frequency": 13468 + }, + { + "word": "relucir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shine", + "example_sentence_native": "El metal pulido hacía relucir la luz.", + "example_sentence_english": "The polished metal made the light shine.", + "pos": "verb", + "word_frequency": 13469 + }, + { + "word": "rematar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to finish off", + "example_sentence_native": "El delantero logró rematar el partido con un gol.", + "example_sentence_english": "The forward managed to finish off the game with a goal.", + "pos": "verb", + "word_frequency": 13470 + }, + { + "word": "removido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "removed", + "example_sentence_native": "El obstáculo fue removido del camino.", + "example_sentence_english": "The obstacle was removed from the path.", + "pos": "adjective", + "word_frequency": 13471 + }, + { + "word": "reo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convict", + "example_sentence_native": "El reo fue declarado culpable por el jurado.", + "example_sentence_english": "The convict was declared guilty by the jury.", + "pos": "noun", + "word_frequency": 13472 + }, + { + "word": "resfriado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cold (illness)", + "example_sentence_native": "Tengo un resfriado y me siento mal.", + "example_sentence_english": "I have a cold and feel unwell.", + "pos": "noun", + "word_frequency": 13473 + }, + { + "word": "restaurado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restored", + "example_sentence_native": "El edificio antiguo fue completamente restaurado.", + "example_sentence_english": "The old building was completely restored.", + "pos": "adjective", + "word_frequency": 13474 + }, + { + "word": "rústico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rustic", + "example_sentence_native": "La casa de campo tenía un encanto rústico.", + "example_sentence_english": "The country house had a rustic charm.", + "pos": "adjective", + "word_frequency": 13477 + }, + { + "word": "salvado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saved", + "example_sentence_native": "El niño fue salvado del río por un bombero.", + "example_sentence_english": "The child was saved from the river by a firefighter.", + "pos": "adjective", + "word_frequency": 13478 + }, + { + "word": "sembrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sown field", + "example_sentence_native": "El sembrado de trigo se ve muy bien este año.", + "example_sentence_english": "The wheat field looks very good this year.", + "pos": "noun", + "word_frequency": 13481 + }, + { + "word": "sevillano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sevillian (person from Seville)", + "example_sentence_native": "Los sevillanos son conocidos por su alegría.", + "example_sentence_english": "Sevillians are known for their joy.", + "pos": "noun", + "word_frequency": 13482 + }, + { + "word": "sidra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cider", + "example_sentence_native": "Me gusta beber sidra en otoño.", + "example_sentence_english": "I like to drink cider in autumn.", + "pos": "noun", + "word_frequency": 13485 + }, + { + "word": "solana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sunny spot", + "example_sentence_native": "Nos sentamos en la solana para disfrutar del calor.", + "example_sentence_english": "We sat in the sunny spot to enjoy the warmth.", + "pos": "noun", + "word_frequency": 13486 + }, + { + "word": "subtitulado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subtitling", + "example_sentence_native": "Prefiero ver películas con subtitulado en español.", + "example_sentence_english": "I prefer to watch movies with Spanish subtitling.", + "pos": "noun", + "word_frequency": 13489 + }, + { + "word": "suela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sole (of a shoe)", + "example_sentence_native": "La suela de mis zapatos está gastada.", + "example_sentence_english": "The sole of my shoes is worn out.", + "pos": "noun", + "word_frequency": 13490 + }, + { + "word": "tamal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tamale", + "example_sentence_native": "Me encanta comer tamales en Navidad.", + "example_sentence_english": "I love eating tamales at Christmas.", + "pos": "noun", + "word_frequency": 13493 + }, + { + "word": "teorema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theorem", + "example_sentence_native": "El teorema de Pitágoras es fundamental en geometría.", + "example_sentence_english": "Pythagorean theorem is fundamental in geometry.", + "pos": "noun", + "word_frequency": 13496 + }, + { + "word": "tino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judgment;skill", + "example_sentence_native": "Siempre actúa con mucho tino en situaciones difíciles.", + "example_sentence_english": "He always acts with great judgment in difficult situations.", + "pos": "noun", + "word_frequency": 13498 + }, + { + "word": "transgénero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transgender person", + "example_sentence_native": "La comunidad transgénero busca mayor visibilidad.", + "example_sentence_english": "The transgender community seeks greater visibility.", + "pos": "noun", + "word_frequency": 13500 + }, + { + "word": "trascender", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to transcend", + "example_sentence_native": "Su obra logró trascender las fronteras culturales.", + "example_sentence_english": "His work managed to transcend cultural boundaries.", + "pos": "verb", + "word_frequency": 13501 + }, + { + "word": "veintidós", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-two", + "example_sentence_native": "Tengo veintidós años.", + "example_sentence_english": "I am twenty-two years old.", + "pos": "noun", + "word_frequency": 13505 + }, + { + "word": "visiblemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visibly", + "example_sentence_native": "Estaba visiblemente molesto con la situación.", + "example_sentence_english": "He was visibly upset with the situation.", + "pos": "adverb", + "word_frequency": 13506 + }, + { + "word": "vivero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursery (plant nursery)", + "example_sentence_native": "Compramos las plantas en el vivero local.", + "example_sentence_english": "We bought the plants at the local nursery.", + "pos": "noun", + "word_frequency": 13507 + }, + { + "word": "yogurt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yogurt", + "example_sentence_native": "Me gusta el yogurt con frutas.", + "example_sentence_english": "I like yogurt with fruit.", + "pos": "noun", + "word_frequency": 13512 + }, + { + "word": "abusado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abused;taken advantage of", + "example_sentence_native": "Se sintió abusado por el sistema.", + "example_sentence_english": "He felt abused by the system.", + "pos": "adjective", + "word_frequency": 13515 + }, + { + "word": "aduanero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customs (adj.);customs officer (noun)", + "example_sentence_native": "El control aduanero fue muy estricto.", + "example_sentence_english": "The customs control was very strict.", + "pos": "adjective", + "word_frequency": 13518 + }, + { + "word": "aferrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cling to;to grasp firmly", + "example_sentence_native": "Se aferró a la esperanza de un futuro mejor.", + "example_sentence_english": "He clung to the hope of a better future.", + "pos": "verb", + "word_frequency": 13519 + }, + { + "word": "ardor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ardor;passion", + "example_sentence_native": "Trabajó con gran ardor para terminar el proyecto.", + "example_sentence_english": "He worked with great ardor to finish the project.", + "pos": "noun", + "word_frequency": 13522 + }, + { + "word": "aritmética", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arithmetic", + "example_sentence_native": "La aritmética es fundamental para las matemáticas.", + "example_sentence_english": "Arithmetic is fundamental for mathematics.", + "pos": "noun", + "word_frequency": 13523 + }, + { + "word": "arpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harp", + "example_sentence_native": "El sonido del arpa es muy relajante.", + "example_sentence_english": "The sound of the harp is very relaxing.", + "pos": "noun", + "word_frequency": 13524 + }, + { + "word": "asegurador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurer", + "example_sentence_native": "El asegurador pagó la indemnización por el accidente.", + "example_sentence_english": "The insurer paid the compensation for the accident.", + "pos": "noun", + "word_frequency": 13525 + }, + { + "word": "asteroide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asteroid", + "example_sentence_native": "Un asteroide pasó cerca de la Tierra.", + "example_sentence_english": "An asteroid passed close to Earth.", + "pos": "noun", + "word_frequency": 13526 + }, + { + "word": "bautizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baptism;christening", + "example_sentence_native": "Fuimos al bautizo de su sobrino.", + "example_sentence_english": "We went to his nephew's baptism.", + "pos": "noun", + "word_frequency": 13529 + }, + { + "word": "bebido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk", + "example_sentence_native": "No conduzcas si has bebido.", + "example_sentence_english": "Don't drive if you have drunk.", + "pos": "adjective", + "word_frequency": 13532 + }, + { + "word": "bendecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blessed", + "example_sentence_native": "Nos sentimos bendecidos por tener esta oportunidad.", + "example_sentence_english": "We feel blessed to have this opportunity.", + "pos": "adjective", + "word_frequency": 13533 + }, + { + "word": "boba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silly person (female)", + "example_sentence_native": "No seas boba, eso no es verdad.", + "example_sentence_english": "Don't be silly, that's not true.", + "pos": "noun", + "word_frequency": 13537 + }, + { + "word": "boricua", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Puerto Rican (person)", + "example_sentence_native": "Ella es boricua y vive en Nueva York.", + "example_sentence_english": "She is Puerto Rican and lives in New York.", + "pos": "noun", + "word_frequency": 13540 + }, + { + "word": "cambiario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange (rate);monetary exchange", + "example_sentence_native": "La política cambiaria afecta el valor de la moneda.", + "example_sentence_english": "The exchange policy affects the value of the currency.", + "pos": "adjective", + "word_frequency": 13543 + }, + { + "word": "censurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censored", + "example_sentence_native": "El contenido fue censurado por el gobierno.", + "example_sentence_english": "The content was censored by the government.", + "pos": "adjective", + "word_frequency": 13545 + }, + { + "word": "champú", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shampoo", + "example_sentence_native": "Necesito comprar un nuevo champú para el pelo.", + "example_sentence_english": "I need to buy a new shampoo for my hair.", + "pos": "noun", + "word_frequency": 13546 + }, + { + "word": "clasico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "classic;classical", + "example_sentence_native": "Es un coche clásico muy bonito.", + "example_sentence_english": "It's a very beautiful classic car.", + "pos": "adjective", + "word_frequency": 13548 + }, + { + "word": "colaborativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collaborative", + "example_sentence_native": "El trabajo en equipo es un proceso colaborativo.", + "example_sentence_english": "Teamwork is a collaborative process.", + "pos": "adjective", + "word_frequency": 13549 + }, + { + "word": "colmena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beehive", + "example_sentence_native": "Las abejas viven en una colmena.", + "example_sentence_english": "Bees live in a beehive.", + "pos": "noun", + "word_frequency": 13550 + }, + { + "word": "compas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass (for drawing);rhythm", + "example_sentence_native": "El músico siguió el compás de la canción.", + "example_sentence_english": "The musician followed the beat of the song.", + "pos": "noun", + "word_frequency": 13552 + }, + { + "word": "condicion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "condition;state", + "example_sentence_native": "Su condición de salud ha mejorado.", + "example_sentence_english": "His health condition has improved.", + "pos": "noun", + "word_frequency": 13553 + }, + { + "word": "cuña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wedge;commercial (spot)", + "example_sentence_native": "Puso una cuña de madera para estabilizar la mesa.", + "example_sentence_english": "He put a wooden wedge to stabilize the table.", + "pos": "noun", + "word_frequency": 13557 + }, + { + "word": "denunciante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complainant;whistleblower", + "example_sentence_native": "El denunciante presentó pruebas a la policía.", + "example_sentence_english": "The complainant presented evidence to the police.", + "pos": "noun", + "word_frequency": 13559 + }, + { + "word": "derivación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derivation", + "example_sentence_native": "La derivación de palabras es un proceso común en lingüística.", + "example_sentence_english": "Word derivation is a common process in linguistics.", + "pos": "noun", + "word_frequency": 13560 + }, + { + "word": "desacato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contempt;disobedience", + "example_sentence_native": "Fue acusado de desacato al tribunal.", + "example_sentence_english": "He was accused of contempt of court.", + "pos": "noun", + "word_frequency": 13561 + }, + { + "word": "desastroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disastrous", + "example_sentence_native": "El resultado del partido fue desastroso para nuestro equipo.", + "example_sentence_english": "The outcome of the match was disastrous for our team.", + "pos": "adjective", + "word_frequency": 13562 + }, + { + "word": "desconfiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distrust;to mistrust", + "example_sentence_native": "No debes desconfiar de tus amigos.", + "example_sentence_english": "You should not distrust your friends.", + "pos": "verb", + "word_frequency": 13563 + }, + { + "word": "descriptivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "descriptive", + "example_sentence_native": "El informe era muy descriptivo y detallado.", + "example_sentence_english": "The report was very descriptive and detailed.", + "pos": "adjective", + "word_frequency": 13564 + }, + { + "word": "desesperanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despair;hopelessness", + "example_sentence_native": "Sintió una profunda desesperanza después de la noticia.", + "example_sentence_english": "He felt deep despair after the news.", + "pos": "noun", + "word_frequency": 13565 + }, + { + "word": "desprestigio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discredit;disrepute", + "example_sentence_native": "El escándalo causó un gran desprestigio a su reputación.", + "example_sentence_english": "The scandal caused great discredit to his reputation.", + "pos": "noun", + "word_frequency": 13566 + }, + { + "word": "digerir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to digest", + "example_sentence_native": "Es importante masticar bien la comida para digerirla.", + "example_sentence_english": "It's important to chew food well to digest it.", + "pos": "verb", + "word_frequency": 13567 + }, + { + "word": "dinamita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamite", + "example_sentence_native": "La dinamita se usa en la minería para romper rocas.", + "example_sentence_english": "Dynamite is used in mining to break rocks.", + "pos": "noun", + "word_frequency": 13568 + }, + { + "word": "diplomado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graduate;diploma holder", + "example_sentence_native": "Es un diplomado en ciencias políticas.", + "example_sentence_english": "He is a graduate in political science.", + "pos": "noun", + "word_frequency": 13569 + }, + { + "word": "dolido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurt;sore", + "example_sentence_native": "Se sentía muy dolido por sus palabras.", + "example_sentence_english": "He felt very hurt by her words.", + "pos": "adjective", + "word_frequency": 13570 + }, + { + "word": "duo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duo", + "example_sentence_native": "El dúo musical interpretó una hermosa canción.", + "example_sentence_english": "The musical duo performed a beautiful song.", + "pos": "noun", + "word_frequency": 13572 + }, + { + "word": "ebullición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boiling;ebullition", + "example_sentence_native": "El agua alcanzó el punto de ebullición.", + "example_sentence_english": "The water reached the boiling point.", + "pos": "noun", + "word_frequency": 13573 + }, + { + "word": "edén", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Eden", + "example_sentence_native": "El jardín parecía un verdadero edén.", + "example_sentence_english": "The garden looked like a true Eden.", + "pos": "noun", + "word_frequency": 13574 + }, + { + "word": "enfriar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cool down", + "example_sentence_native": "Deja la sopa enfriar antes de comerla.", + "example_sentence_english": "Let the soup cool down before eating it.", + "pos": "verb", + "word_frequency": 13575 + }, + { + "word": "escupir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spit", + "example_sentence_native": "No se debe escupir en la calle.", + "example_sentence_english": "One should not spit on the street.", + "pos": "verb", + "word_frequency": 13576 + }, + { + "word": "esgrima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fencing", + "example_sentence_native": "Practica esgrima desde hace cinco años.", + "example_sentence_english": "He has been practicing fencing for five years.", + "pos": "noun", + "word_frequency": 13577 + }, + { + "word": "fisco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treasury;exchequer", + "example_sentence_native": "El fisco recaudó más impuestos este año.", + "example_sentence_english": "The treasury collected more taxes this year.", + "pos": "noun", + "word_frequency": 13581 + }, + { + "word": "foso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moat;pit;ditch", + "example_sentence_native": "El castillo estaba rodeado por un profundo foso.", + "example_sentence_english": "The castle was surrounded by a deep moat.", + "pos": "noun", + "word_frequency": 13582 + }, + { + "word": "fábula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fable", + "example_sentence_native": "Leímos una fábula sobre una tortuga y una liebre.", + "example_sentence_english": "We read a fable about a tortoise and a hare.", + "pos": "noun", + "word_frequency": 13585 + }, + { + "word": "galés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Welsh", + "example_sentence_native": "Mi amigo es de origen galés.", + "example_sentence_english": "My friend is of Welsh origin.", + "pos": "adjective", + "word_frequency": 13586 + }, + { + "word": "gamba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prawn;shrimp", + "example_sentence_native": "Pedimos unas gambas al ajillo.", + "example_sentence_english": "We ordered some garlic prawns.", + "pos": "noun", + "word_frequency": 13587 + }, + { + "word": "generacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generation", + "example_sentence_native": "Cada generación tiene sus propios desafíos.", + "example_sentence_english": "Each generation has its own challenges.", + "pos": "noun", + "word_frequency": 13588 + }, + { + "word": "generalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to generalize", + "example_sentence_native": "No deberías generalizar sobre las personas.", + "example_sentence_english": "You shouldn't generalize about people.", + "pos": "verb", + "word_frequency": 13589 + }, + { + "word": "geopolítica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geopolitics", + "example_sentence_native": "Estudiamos la geopolítica de la región.", + "example_sentence_english": "We study the geopolitics of the region.", + "pos": "noun", + "word_frequency": 13590 + }, + { + "word": "ineptitud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ineptitude;incompetence", + "example_sentence_native": "Su ineptitud para el puesto era evidente.", + "example_sentence_english": "His ineptitude for the position was evident.", + "pos": "noun", + "word_frequency": 13596 + }, + { + "word": "insuperable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurmountable;unbeatable", + "example_sentence_native": "Enfrentaron un desafío insuperable.", + "example_sentence_english": "They faced an insurmountable challenge.", + "pos": "adjective", + "word_frequency": 13597 + }, + { + "word": "intercultural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intercultural", + "example_sentence_native": "Promovemos el diálogo intercultural.", + "example_sentence_english": "We promote intercultural dialogue.", + "pos": "adjective", + "word_frequency": 13598 + }, + { + "word": "jota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jota (Spanish folk dance)", + "example_sentence_native": "Bailaron una jota tradicional en la fiesta del pueblo.", + "example_sentence_english": "They danced a traditional jota at the town festival.", + "pos": "noun", + "word_frequency": 13604 + }, + { + "word": "judicatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judiciary", + "example_sentence_native": "La independencia de la judicatura es fundamental para la democracia.", + "example_sentence_english": "The independence of the judiciary is fundamental for democracy.", + "pos": "noun", + "word_frequency": 13605 + }, + { + "word": "lanzador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitcher", + "example_sentence_native": "El lanzador hizo un strikeout impresionante en la última entrada.", + "example_sentence_english": "The pitcher threw an impressive strikeout in the last inning.", + "pos": "noun", + "word_frequency": 13608 + }, + { + "word": "liberalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalization", + "example_sentence_native": "La liberalización del mercado trajo nuevas oportunidades económicas.", + "example_sentence_english": "Market liberalization brought new economic opportunities.", + "pos": "noun", + "word_frequency": 13611 + }, + { + "word": "liguilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playoff round", + "example_sentence_native": "El equipo se clasificó para la liguilla final del torneo.", + "example_sentence_english": "The team qualified for the final playoff round of the tournament.", + "pos": "noun", + "word_frequency": 13612 + }, + { + "word": "maqueta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model", + "example_sentence_native": "El arquitecto presentó una maqueta detallada del nuevo edificio.", + "example_sentence_english": "The architect presented a detailed model of the new building.", + "pos": "noun", + "word_frequency": 13615 + }, + { + "word": "mareo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dizziness", + "example_sentence_native": "Sentí un fuerte mareo después de bajar de la montaña rusa.", + "example_sentence_english": "I felt strong dizziness after getting off the roller coaster.", + "pos": "noun", + "word_frequency": 13616 + }, + { + "word": "masculinidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masculinity", + "example_sentence_native": "La masculinidad se expresa de muchas maneras diferentes en la sociedad.", + "example_sentence_english": "Masculinity is expressed in many different ways in society.", + "pos": "noun", + "word_frequency": 13617 + }, + { + "word": "matador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bullfighter", + "example_sentence_native": "El matador realizó una faena valiente en la plaza de toros.", + "example_sentence_english": "The bullfighter performed a brave act in the bullring.", + "pos": "noun", + "word_frequency": 13618 + }, + { + "word": "maternal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maternal", + "example_sentence_native": "Ella mostró un instinto maternal muy fuerte hacia el bebé.", + "example_sentence_english": "She showed a very strong maternal instinct towards the baby.", + "pos": "adjective", + "word_frequency": 13619 + }, + { + "word": "meteorológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorological", + "example_sentence_native": "El pronóstico meteorológico anuncia lluvias para el fin de semana.", + "example_sentence_english": "The meteorological forecast announces rain for the weekend.", + "pos": "adjective", + "word_frequency": 13622 + }, + { + "word": "modestia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modesty", + "example_sentence_native": "A pesar de su éxito, siempre mantuvo una gran modestia.", + "example_sentence_english": "Despite his success, he always maintained great modesty.", + "pos": "noun", + "word_frequency": 13626 + }, + { + "word": "nerviosismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nervousness", + "example_sentence_native": "El nerviosismo antes del examen era palpable en la sala.", + "example_sentence_english": "The nervousness before the exam was palpable in the room.", + "pos": "noun", + "word_frequency": 13628 + }, + { + "word": "nochebuena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Christmas Eve", + "example_sentence_native": "Cenamos pavo en Nochebuena con toda la familia.", + "example_sentence_english": "We had turkey for dinner on Christmas Eve with the whole family.", + "pos": "noun", + "word_frequency": 13629 + }, + { + "word": "obsesionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsessed", + "example_sentence_native": "Está obsesionado con la limpieza de su coche.", + "example_sentence_english": "He is obsessed with cleaning his car.", + "pos": "adjective", + "word_frequency": 13631 + }, + { + "word": "oportunista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunistic", + "example_sentence_native": "Su comportamiento fue muy oportunista, aprovechando la situación.", + "example_sentence_english": "His behavior was very opportunistic, taking advantage of the situation.", + "pos": "adjective", + "word_frequency": 13633 + }, + { + "word": "oratoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oratory", + "example_sentence_native": "Su habilidad en la oratoria le permitió cautivar a la audiencia.", + "example_sentence_english": "His skill in oratory allowed him to captivate the audience.", + "pos": "noun", + "word_frequency": 13634 + }, + { + "word": "panadero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baker", + "example_sentence_native": "El panadero abre su tienda muy temprano cada mañana.", + "example_sentence_english": "The baker opens his shop very early every morning.", + "pos": "noun", + "word_frequency": 13639 + }, + { + "word": "patin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skate", + "example_sentence_native": "Me encanta ir a patinar sobre hielo con mis patines nuevos.", + "example_sentence_english": "I love to go ice skating with my new skates.", + "pos": "noun", + "word_frequency": 13640 + }, + { + "word": "presenciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witnessed", + "example_sentence_native": "El evento fue presenciado por miles de personas.", + "example_sentence_english": "The event was witnessed by thousands of people.", + "pos": "adjective", + "word_frequency": 13643 + }, + { + "word": "primogénito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firstborn", + "example_sentence_native": "Él es el hijo primogénito de la familia.", + "example_sentence_english": "He is the firstborn son of the family.", + "pos": "noun", + "word_frequency": 13644 + }, + { + "word": "prior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prior", + "example_sentence_native": "El prior del monasterio dio un discurso.", + "example_sentence_english": "The prior of the monastery gave a speech.", + "pos": "noun", + "word_frequency": 13645 + }, + { + "word": "proverbio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proverb", + "example_sentence_native": "Hay un viejo proverbio que dice 'más vale tarde que nunca'.", + "example_sentence_english": "There's an old proverb that says 'better late than never'.", + "pos": "noun", + "word_frequency": 13646 + }, + { + "word": "puja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bid", + "example_sentence_native": "Hubo una fuerte puja por el cuadro en la subasta.", + "example_sentence_english": "There was a strong bid for the painting at the auction.", + "pos": "noun", + "word_frequency": 13648 + }, + { + "word": "python", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Python", + "example_sentence_native": "Estoy aprendiendo a programar en Python.", + "example_sentence_english": "I am learning to program in Python.", + "pos": "noun", + "word_frequency": 13649 + }, + { + "word": "reapertura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reopening", + "example_sentence_native": "La reapertura del museo está programada para el próximo mes.", + "example_sentence_english": "The reopening of the museum is scheduled for next month.", + "pos": "noun", + "word_frequency": 13651 + }, + { + "word": "renombrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renowned", + "example_sentence_native": "Es un artista renombrado a nivel mundial.", + "example_sentence_english": "He is a world-renowned artist.", + "pos": "adjective", + "word_frequency": 13652 + }, + { + "word": "riel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rail", + "example_sentence_native": "El tren descarriló de los rieles.", + "example_sentence_english": "The train derailed from the tracks.", + "pos": "noun", + "word_frequency": 13653 + }, + { + "word": "ruidoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noisy", + "example_sentence_native": "Los vecinos son muy ruidosos por la noche.", + "example_sentence_english": "The neighbors are very noisy at night.", + "pos": "adjective", + "word_frequency": 13655 + }, + { + "word": "salvamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescue", + "example_sentence_native": "El equipo de salvamento llegó rápidamente al lugar del accidente.", + "example_sentence_english": "The rescue team quickly arrived at the accident site.", + "pos": "noun", + "word_frequency": 13656 + }, + { + "word": "script", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "script", + "example_sentence_native": "Necesito escribir un script para automatizar esta tarea.", + "example_sentence_english": "I need to write a script to automate this task.", + "pos": "noun", + "word_frequency": 13657 + }, + { + "word": "silicon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silicon", + "example_sentence_native": "El silicio es un elemento fundamental en la electrónica.", + "example_sentence_english": "Silicon is a fundamental element in electronics.", + "pos": "noun", + "word_frequency": 13658 + }, + { + "word": "soplo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puff", + "example_sentence_native": "Con un solo soplo, apagó todas las velas.", + "example_sentence_english": "With a single puff, he blew out all the candles.", + "pos": "noun", + "word_frequency": 13660 + }, + { + "word": "soñador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dreamer", + "example_sentence_native": "Es un soñador que siempre busca nuevas aventuras.", + "example_sentence_english": "He is a dreamer who always seeks new adventures.", + "pos": "noun", + "word_frequency": 13662 + }, + { + "word": "stadium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stadium", + "example_sentence_native": "El concierto se celebrará en el estadio principal.", + "example_sentence_english": "The concert will be held in the main stadium.", + "pos": "noun", + "word_frequency": 13663 + }, + { + "word": "subsidiario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsidiary", + "example_sentence_native": "La empresa tiene varias filiales subsidiarias.", + "example_sentence_english": "The company has several subsidiary branches.", + "pos": "adjective", + "word_frequency": 13664 + }, + { + "word": "sui", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "sui (as in sui generis)", + "example_sentence_native": "Es un caso sui generis, no hay precedentes.", + "example_sentence_english": "It's a sui generis case, there are no precedents.", + "pos": "adjective", + "word_frequency": 13665 + }, + { + "word": "suplir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supply", + "example_sentence_native": "Necesitamos suplir las necesidades básicas de la población.", + "example_sentence_english": "We need to supply the basic needs of the population.", + "pos": "verb", + "word_frequency": 13666 + }, + { + "word": "sustentabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sustainability", + "example_sentence_native": "La sustentabilidad ambiental es crucial para el futuro.", + "example_sentence_english": "Environmental sustainability is crucial for the future.", + "pos": "noun", + "word_frequency": 13667 + }, + { + "word": "talle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "size", + "example_sentence_native": "¿Qué talle de pantalón usas?", + "example_sentence_english": "What pant size do you wear?", + "pos": "noun", + "word_frequency": 13668 + }, + { + "word": "tentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tempted", + "example_sentence_native": "Me sentí tentado a comprar el postre.", + "example_sentence_english": "I felt tempted to buy the dessert.", + "pos": "adjective", + "word_frequency": 13672 + }, + { + "word": "terrenal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "earthly", + "example_sentence_native": "Buscamos la felicidad en las cosas terrenales.", + "example_sentence_english": "We seek happiness in earthly things.", + "pos": "adjective", + "word_frequency": 13673 + }, + { + "word": "tilde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tilde", + "example_sentence_native": "La palabra 'árbol' lleva tilde en la 'a'.", + "example_sentence_english": "The word 'árbol' has an accent mark on the 'a'.", + "pos": "noun", + "word_frequency": 13674 + }, + { + "word": "trap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trap (music genre)", + "example_sentence_native": "Escucho mucho trap últimamente.", + "example_sentence_english": "I listen to a lot of trap lately.", + "pos": "noun", + "word_frequency": 13676 + }, + { + "word": "tórax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorax", + "example_sentence_native": "El médico examinó su tórax.", + "example_sentence_english": "The doctor examined his chest.", + "pos": "noun", + "word_frequency": 13677 + }, + { + "word": "vertedero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landfill;dump", + "example_sentence_native": "El vertedero está lleno de basura.", + "example_sentence_english": "The landfill is full of trash.", + "pos": "noun", + "word_frequency": 13680 + }, + { + "word": "vestidura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garment;vestment", + "example_sentence_native": "Las vestiduras del sacerdote eran muy elaboradas.", + "example_sentence_english": "The priest's vestments were very elaborate.", + "pos": "noun", + "word_frequency": 13681 + }, + { + "word": "viñedo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vineyard", + "example_sentence_native": "Visitamos un hermoso viñedo en la región.", + "example_sentence_english": "We visited a beautiful vineyard in the region.", + "pos": "noun", + "word_frequency": 13683 + }, + { + "word": "volcánico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volcanic", + "example_sentence_native": "La actividad volcánica ha aumentado recientemente.", + "example_sentence_english": "Volcanic activity has increased recently.", + "pos": "adjective", + "word_frequency": 13684 + }, + { + "word": "vértice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertex;apex", + "example_sentence_native": "El vértice del triángulo es el punto más alto.", + "example_sentence_english": "The vertex of the triangle is the highest point.", + "pos": "noun", + "word_frequency": 13685 + }, + { + "word": "índico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Indian (referring to the Indian Ocean)", + "example_sentence_native": "El Océano Índico es el tercer océano más grande.", + "example_sentence_english": "The Indian Ocean is the third largest ocean.", + "pos": "adjective", + "word_frequency": 13687 + }, + { + "word": "acomodado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well-off;comfortable (financially)", + "example_sentence_native": "Vive en un barrio acomodado de la ciudad.", + "example_sentence_english": "He lives in a well-off neighborhood of the city.", + "pos": "adjective", + "word_frequency": 13688 + }, + { + "word": "anticuado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old-fashioned;outdated", + "example_sentence_native": "Su ropa parece un poco anticuada.", + "example_sentence_english": "His clothes look a bit old-fashioned.", + "pos": "adjective", + "word_frequency": 13690 + }, + { + "word": "apasionante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exciting;thrilling;passionate", + "example_sentence_native": "Fue una película realmente apasionante.", + "example_sentence_english": "It was a truly exciting movie.", + "pos": "adjective", + "word_frequency": 13691 + }, + { + "word": "aprehensión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apprehension;seizure (of goods)", + "example_sentence_native": "Sentía una gran aprehensión antes del examen.", + "example_sentence_english": "He felt great apprehension before the exam.", + "pos": "noun", + "word_frequency": 13692 + }, + { + "word": "arista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edge (of a polyhedron);arris", + "example_sentence_native": "Un cubo tiene doce aristas.", + "example_sentence_english": "A cube has twelve edges.", + "pos": "noun", + "word_frequency": 13694 + }, + { + "word": "arzobispado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archbishopric", + "example_sentence_native": "El arzobispado está en el centro histórico de la ciudad.", + "example_sentence_english": "The archbishopric is in the historic center of the city.", + "pos": "noun", + "word_frequency": 13695 + }, + { + "word": "asaltante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assailant;robber", + "example_sentence_native": "El asaltante fue capturado por la policía.", + "example_sentence_english": "The assailant was captured by the police.", + "pos": "noun", + "word_frequency": 13696 + }, + { + "word": "asombrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astonished;amazed", + "example_sentence_native": "Estaba asombrado por la belleza del paisaje.", + "example_sentence_english": "He was astonished by the beauty of the landscape.", + "pos": "adjective", + "word_frequency": 13697 + }, + { + "word": "astucia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cunning;shrewdness", + "example_sentence_native": "Demostró gran astucia en los negocios.", + "example_sentence_english": "He showed great cunning in business.", + "pos": "noun", + "word_frequency": 13699 + }, + { + "word": "atentar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to attempt (against);to make an attempt (on);to violate", + "example_sentence_native": "Atentaron contra la vida del presidente.", + "example_sentence_english": "They attempted against the president's life.", + "pos": "verb", + "word_frequency": 13700 + }, + { + "word": "auditor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auditor", + "example_sentence_native": "El auditor revisó las cuentas de la empresa.", + "example_sentence_english": "The auditor reviewed the company's accounts.", + "pos": "noun", + "word_frequency": 13701 + }, + { + "word": "avergonzar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embarrass;to shame", + "example_sentence_native": "Sus comentarios me hicieron avergonzar.", + "example_sentence_english": "His comments made me embarrassed.", + "pos": "verb", + "word_frequency": 13703 + }, + { + "word": "bazar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bazaar;market;department store", + "example_sentence_native": "Compramos recuerdos en el bazar local.", + "example_sentence_english": "We bought souvenirs at the local bazaar.", + "pos": "noun", + "word_frequency": 13704 + }, + { + "word": "billar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "billiards;pool", + "example_sentence_native": "Nos gusta jugar al billar los fines de semana.", + "example_sentence_english": "We like to play billiards on weekends.", + "pos": "noun", + "word_frequency": 13705 + }, + { + "word": "bucal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oral;buccal", + "example_sentence_native": "Es importante mantener una buena higiene bucal.", + "example_sentence_english": "It's important to maintain good oral hygiene.", + "pos": "adjective", + "word_frequency": 13707 + }, + { + "word": "buzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diver;(sweatshirt;jumpsuit in some regions)", + "example_sentence_native": "El buzo exploró las profundidades del océano.", + "example_sentence_english": "The diver explored the depths of the ocean.", + "pos": "noun", + "word_frequency": 13708 + }, + { + "word": "básquet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "example_sentence_native": "Mi deporte favorito es el básquet.", + "example_sentence_english": "My favorite sport is basketball.", + "pos": "noun", + "word_frequency": 13709 + }, + { + "word": "capitanía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "captaincy;captain's office", + "example_sentence_native": "La capitanía del puerto controla el tráfico marítimo.", + "example_sentence_english": "The port captaincy controls maritime traffic.", + "pos": "noun", + "word_frequency": 13710 + }, + { + "word": "castor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaver", + "example_sentence_native": "El castor construyó una presa en el río.", + "example_sentence_english": "The beaver built a dam in the river.", + "pos": "noun", + "word_frequency": 13711 + }, + { + "word": "cerezo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cherry tree;cherry", + "example_sentence_native": "En primavera, los cerezos están en flor.", + "example_sentence_english": "In spring, the cherry trees are in bloom.", + "pos": "noun", + "word_frequency": 13712 + }, + { + "word": "chusma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabble;riff-raff;gossip", + "example_sentence_native": "No quiero mezclarme con esa chusma.", + "example_sentence_english": "I don't want to mix with that rabble.", + "pos": "noun", + "word_frequency": 13713 + }, + { + "word": "cobra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cobra", + "example_sentence_native": "La cobra es una serpiente venenosa.", + "example_sentence_english": "The cobra is a venomous snake.", + "pos": "noun", + "word_frequency": 13715 + }, + { + "word": "colgante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hanging;pendant", + "example_sentence_native": "Llevaba un hermoso collar con un colgante de plata.", + "example_sentence_english": "She wore a beautiful necklace with a silver pendant.", + "pos": "adjective", + "word_frequency": 13716 + }, + { + "word": "comandancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "command;headquarters (military;police)", + "example_sentence_native": "La comandancia de la policía está en el centro.", + "example_sentence_english": "The police headquarters is in the center.", + "pos": "noun", + "word_frequency": 13717 + }, + { + "word": "comerciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trade;to deal", + "example_sentence_native": "Solían comerciar con especias y seda.", + "example_sentence_english": "They used to trade in spices and silk.", + "pos": "verb", + "word_frequency": 13718 + }, + { + "word": "confesado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confessed;admitted", + "example_sentence_native": "El crimen fue un secreto confesado.", + "example_sentence_english": "The crime was a confessed secret.", + "pos": "adjective", + "word_frequency": 13719 + }, + { + "word": "creacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creation", + "example_sentence_native": "La creación del universo es un misterio.", + "example_sentence_english": "The creation of the universe is a mystery.", + "pos": "noun", + "word_frequency": 13720 + }, + { + "word": "culebra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snake", + "example_sentence_native": "Vimos una culebra en el jardín.", + "example_sentence_english": "We saw a snake in the garden.", + "pos": "noun", + "word_frequency": 13721 + }, + { + "word": "cultivado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultivated;cultured", + "example_sentence_native": "Es una persona muy cultivada.", + "example_sentence_english": "He is a very cultured person.", + "pos": "adjective", + "word_frequency": 13722 + }, + { + "word": "delirante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delirious;raving", + "example_sentence_native": "Tenía fiebre y estaba delirante.", + "example_sentence_english": "He had a fever and was delirious.", + "pos": "adjective", + "word_frequency": 13725 + }, + { + "word": "derrocado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overthrown;deposed", + "example_sentence_native": "El gobierno derrocado intentó recuperar el poder.", + "example_sentence_english": "The overthrown government tried to regain power.", + "pos": "adjective", + "word_frequency": 13726 + }, + { + "word": "descaradamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shamelessly;brazenly", + "example_sentence_native": "Se rió descaradamente de mi error.", + "example_sentence_english": "He shamelessly laughed at my mistake.", + "pos": "adverb", + "word_frequency": 13727 + }, + { + "word": "despertador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alarm clock", + "example_sentence_native": "Mi despertador suena a las seis de la mañana.", + "example_sentence_english": "My alarm clock rings at six in the morning.", + "pos": "noun", + "word_frequency": 13728 + }, + { + "word": "despilfarro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waste;squandering", + "example_sentence_native": "El despilfarro de recursos es inaceptable.", + "example_sentence_english": "The waste of resources is unacceptable.", + "pos": "noun", + "word_frequency": 13729 + }, + { + "word": "destructivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destructive", + "example_sentence_native": "Sus comentarios fueron muy destructivos.", + "example_sentence_english": "His comments were very destructive.", + "pos": "adjective", + "word_frequency": 13730 + }, + { + "word": "devastador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devastating", + "example_sentence_native": "El huracán causó un daño devastador.", + "example_sentence_english": "The hurricane caused devastating damage.", + "pos": "adjective", + "word_frequency": 13731 + }, + { + "word": "discernir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to discern;to distinguish", + "example_sentence_native": "Es difícil discernir la verdad en esta situación.", + "example_sentence_english": "It's difficult to discern the truth in this situation.", + "pos": "verb", + "word_frequency": 13733 + }, + { + "word": "englobar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to encompass;to include", + "example_sentence_native": "El proyecto debe englobar todas las fases.", + "example_sentence_english": "The project must encompass all phases.", + "pos": "verb", + "word_frequency": 13738 + }, + { + "word": "entrañable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endearing;beloved;heartfelt", + "example_sentence_native": "Es un recuerdo muy entrañable para mí.", + "example_sentence_english": "It's a very endearing memory for me.", + "pos": "adjective", + "word_frequency": 13739 + }, + { + "word": "entristecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sadden;to make sad", + "example_sentence_native": "La noticia me entristeció mucho.", + "example_sentence_english": "The news saddened me greatly.", + "pos": "verb", + "word_frequency": 13740 + }, + { + "word": "envenenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoned", + "example_sentence_native": "La manzana estaba envenenada.", + "example_sentence_english": "The apple was poisoned.", + "pos": "adjective", + "word_frequency": 13741 + }, + { + "word": "esforzado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hardworking;strenuous;painstaking", + "example_sentence_native": "Su trabajo fue muy esforzado.", + "example_sentence_english": "His work was very painstaking.", + "pos": "adjective", + "word_frequency": 13742 + }, + { + "word": "estampa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "print;stamp;image", + "example_sentence_native": "Compró una estampa antigua en el mercado.", + "example_sentence_english": "He bought an old print at the market.", + "pos": "noun", + "word_frequency": 13743 + }, + { + "word": "estante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shelf", + "example_sentence_native": "Pon los libros en el estante.", + "example_sentence_english": "Put the books on the shelf.", + "pos": "noun", + "word_frequency": 13744 + }, + { + "word": "esteroide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steroid", + "example_sentence_native": "Los esteroides pueden tener efectos secundarios.", + "example_sentence_english": "Steroids can have side effects.", + "pos": "noun", + "word_frequency": 13745 + }, + { + "word": "exámen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exam;test", + "example_sentence_native": "Tengo un examen de español mañana.", + "example_sentence_english": "I have a Spanish exam tomorrow.", + "pos": "noun", + "word_frequency": 13746 + }, + { + "word": "fascinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinated", + "example_sentence_native": "Estaba fascinado con la historia.", + "example_sentence_english": "He was fascinated by the story.", + "pos": "adjective", + "word_frequency": 13747 + }, + { + "word": "fonda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inn;humble restaurant", + "example_sentence_native": "Comimos en una pequeña fonda del pueblo.", + "example_sentence_english": "We ate at a small inn in the village.", + "pos": "noun", + "word_frequency": 13748 + }, + { + "word": "glamour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glamour", + "example_sentence_native": "La actriz tenía mucho glamour.", + "example_sentence_english": "The actress had a lot of glamour.", + "pos": "noun", + "word_frequency": 13753 + }, + { + "word": "glorieta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roundabout;gazebo", + "example_sentence_native": "Hay una glorieta en el centro de la plaza.", + "example_sentence_english": "There is a roundabout in the center of the square.", + "pos": "noun", + "word_frequency": 13754 + }, + { + "word": "gobernanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governance", + "example_sentence_native": "La buena gobernanza es esencial para el desarrollo.", + "example_sentence_english": "Good governance is essential for development.", + "pos": "noun", + "word_frequency": 13755 + }, + { + "word": "grillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cricket", + "example_sentence_native": "Escuchamos el canto de un grillo por la noche.", + "example_sentence_english": "We heard a cricket's song at night.", + "pos": "noun", + "word_frequency": 13756 + }, + { + "word": "heroísmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heroism", + "example_sentence_native": "Su acto de heroísmo salvó muchas vidas.", + "example_sentence_english": "His act of heroism saved many lives.", + "pos": "noun", + "word_frequency": 13758 + }, + { + "word": "ideario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "set of ideas;ideology", + "example_sentence_native": "El ideario del partido se basa en la justicia social.", + "example_sentence_english": "The party's set of ideas is based on social justice.", + "pos": "noun", + "word_frequency": 13762 + }, + { + "word": "ignorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignored;unknown", + "example_sentence_native": "Su trabajo fue ignorado por la crítica.", + "example_sentence_english": "His work was ignored by critics.", + "pos": "adjective", + "word_frequency": 13763 + }, + { + "word": "incienso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incense", + "example_sentence_native": "El olor a incienso llenaba la iglesia.", + "example_sentence_english": "The smell of incense filled the church.", + "pos": "noun", + "word_frequency": 13765 + }, + { + "word": "indebido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undue;improper", + "example_sentence_native": "Se le acusó de uso indebido de fondos.", + "example_sentence_english": "He was accused of improper use of funds.", + "pos": "adjective", + "word_frequency": 13766 + }, + { + "word": "inhabilitación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disqualification;disbarment", + "example_sentence_native": "La inhabilitación le impide ejercer su profesión.", + "example_sentence_english": "The disqualification prevents him from practicing his profession.", + "pos": "noun", + "word_frequency": 13767 + }, + { + "word": "instaurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to establish;to institute", + "example_sentence_native": "Decidieron instaurar un nuevo sistema.", + "example_sentence_english": "They decided to establish a new system.", + "pos": "verb", + "word_frequency": 13768 + }, + { + "word": "intimidar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intimidate", + "example_sentence_native": "No dejes que te intimiden.", + "example_sentence_english": "Don't let them intimidate you.", + "pos": "verb", + "word_frequency": 13769 + }, + { + "word": "intromisión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrusion;interference", + "example_sentence_native": "Fue una clara intromisión en su vida privada.", + "example_sentence_english": "It was a clear intrusion into his private life.", + "pos": "noun", + "word_frequency": 13770 + }, + { + "word": "inundar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flood", + "example_sentence_native": "La lluvia torrencial comenzó a inundar las calles.", + "example_sentence_english": "The torrential rain began to flood the streets.", + "pos": "verb", + "word_frequency": 13771 + }, + { + "word": "judio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jew", + "example_sentence_native": "La comunidad judía celebra sus festividades.", + "example_sentence_english": "The Jewish community celebrates its festivities.", + "pos": "noun", + "word_frequency": 13775 + }, + { + "word": "ladron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thief", + "example_sentence_native": "El ladrón fue atrapado por la policía.", + "example_sentence_english": "The thief was caught by the police.", + "pos": "noun", + "word_frequency": 13776 + }, + { + "word": "legitimar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legitimize;to validate", + "example_sentence_native": "Intentaron legitimar sus acciones.", + "example_sentence_english": "They tried to legitimize their actions.", + "pos": "verb", + "word_frequency": 13777 + }, + { + "word": "liza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arena;lists", + "example_sentence_native": "Entró en la liza política con determinación.", + "example_sentence_english": "He entered the political arena with determination.", + "pos": "noun", + "word_frequency": 13779 + }, + { + "word": "magistratura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magistracy;judiciary", + "example_sentence_native": "La magistratura debe ser independiente.", + "example_sentence_english": "The judiciary must be independent.", + "pos": "noun", + "word_frequency": 13781 + }, + { + "word": "maravillosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonderfully;marvelously", + "example_sentence_native": "Todo salió maravillosamente bien.", + "example_sentence_english": "Everything turned out wonderfully well.", + "pos": "adverb", + "word_frequency": 13784 + }, + { + "word": "matutino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morning (adj.);matutinal", + "example_sentence_native": "Le gusta leer el periódico matutino.", + "example_sentence_english": "He likes to read the morning newspaper.", + "pos": "adjective", + "word_frequency": 13787 + }, + { + "word": "maña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knack;skill;trick", + "example_sentence_native": "Tiene mucha maña para arreglar cosas.", + "example_sentence_english": "He has a great knack for fixing things.", + "pos": "noun", + "word_frequency": 13788 + }, + { + "word": "minoritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minority (adj.);minoritarian", + "example_sentence_native": "Es un grupo minoritario en la región.", + "example_sentence_english": "It is a minority group in the region.", + "pos": "adjective", + "word_frequency": 13792 + }, + { + "word": "monitorear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to monitor", + "example_sentence_native": "Necesitamos monitorear la situación de cerca.", + "example_sentence_english": "We need to monitor the situation closely.", + "pos": "verb", + "word_frequency": 13794 + }, + { + "word": "neblina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mist;fog", + "example_sentence_native": "La neblina dificultaba la visibilidad.", + "example_sentence_english": "The mist made visibility difficult.", + "pos": "noun", + "word_frequency": 13795 + }, + { + "word": "numeral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "numeral", + "example_sentence_native": "El número \"cinco\" es un numeral.", + "example_sentence_english": "The number \"five\" is a numeral.", + "pos": "noun", + "word_frequency": 13797 + }, + { + "word": "obligatoriamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligatorily;compulsorily", + "example_sentence_native": "Debes asistir obligatoriamente a la reunión.", + "example_sentence_english": "You must obligatorily attend the meeting.", + "pos": "adverb", + "word_frequency": 13798 + }, + { + "word": "oligarca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oligarch", + "example_sentence_native": "El oligarca controlaba gran parte de la economía del país.", + "example_sentence_english": "The oligarch controlled a large part of the country's economy.", + "pos": "noun", + "word_frequency": 13800 + }, + { + "word": "papito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daddy (affectionate)", + "example_sentence_native": "Mi papito siempre me compraba dulces.", + "example_sentence_english": "My daddy always bought me sweets.", + "pos": "noun", + "word_frequency": 13802 + }, + { + "word": "paralización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stoppage;paralysis", + "example_sentence_native": "La paralización del tráfico causó grandes retrasos.", + "example_sentence_english": "The traffic stoppage caused major delays.", + "pos": "noun", + "word_frequency": 13803 + }, + { + "word": "pericia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expertise;skill", + "example_sentence_native": "Demostró gran pericia en la resolución del problema.", + "example_sentence_english": "He showed great expertise in solving the problem.", + "pos": "noun", + "word_frequency": 13806 + }, + { + "word": "perjudicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmed;injured;affected", + "example_sentence_native": "Las víctimas se sintieron perjudicadas por la decisión.", + "example_sentence_english": "The victims felt harmed by the decision.", + "pos": "adjective", + "word_frequency": 13807 + }, + { + "word": "pimiento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pepper (bell pepper)", + "example_sentence_native": "Me gusta el pimiento rojo en la ensalada.", + "example_sentence_english": "I like red pepper in the salad.", + "pos": "noun", + "word_frequency": 13808 + }, + { + "word": "pixel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pixel", + "example_sentence_native": "La imagen tiene muchos píxeles.", + "example_sentence_english": "The image has many pixels.", + "pos": "noun", + "word_frequency": 13809 + }, + { + "word": "plática", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat;talk;conversation", + "example_sentence_native": "Tuvimos una plática muy agradable sobre nuestros planes.", + "example_sentence_english": "We had a very pleasant chat about our plans.", + "pos": "noun", + "word_frequency": 13810 + }, + { + "word": "primicia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scoop;exclusive (news)", + "example_sentence_native": "El periódico publicó la primicia sobre el escándalo.", + "example_sentence_english": "The newspaper published the scoop about the scandal.", + "pos": "noun", + "word_frequency": 13812 + }, + { + "word": "priorizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prioritize", + "example_sentence_native": "Debemos priorizar las tareas más importantes.", + "example_sentence_english": "We must prioritize the most important tasks.", + "pos": "verb", + "word_frequency": 13813 + }, + { + "word": "puntería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aim;marksmanship", + "example_sentence_native": "Su puntería es excelente, siempre acierta al blanco.", + "example_sentence_english": "His aim is excellent, he always hits the target.", + "pos": "noun", + "word_frequency": 13814 + }, + { + "word": "puñetazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punch;blow with the fist", + "example_sentence_native": "Le dio un puñetazo en la mesa para enfatizar su punto.", + "example_sentence_english": "He gave the table a punch to emphasize his point.", + "pos": "noun", + "word_frequency": 13815 + }, + { + "word": "ramal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch;spur (of a road;railway)", + "example_sentence_native": "El tren tomó un ramal hacia el norte.", + "example_sentence_english": "The train took a branch line to the north.", + "pos": "noun", + "word_frequency": 13816 + }, + { + "word": "reciprocidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reciprocity", + "example_sentence_native": "La reciprocidad es clave en cualquier relación sana.", + "example_sentence_english": "Reciprocity is key in any healthy relationship.", + "pos": "noun", + "word_frequency": 13819 + }, + { + "word": "regazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lap", + "example_sentence_native": "El niño se sentó en el regazo de su abuela.", + "example_sentence_english": "The child sat on his grandmother's lap.", + "pos": "noun", + "word_frequency": 13820 + }, + { + "word": "reprimido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repressed;suppressed", + "example_sentence_native": "Sentía emociones reprimidas desde su infancia.", + "example_sentence_english": "He felt repressed emotions since his childhood.", + "pos": "adjective", + "word_frequency": 13822 + }, + { + "word": "rúa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "street (regional)", + "example_sentence_native": "Caminamos por la rúa principal del pueblo.", + "example_sentence_english": "We walked along the main street of the town.", + "pos": "noun", + "word_frequency": 13827 + }, + { + "word": "samurai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "samurai", + "example_sentence_native": "Los samuráis eran guerreros japoneses.", + "example_sentence_english": "Samurai were Japanese warriors.", + "pos": "noun", + "word_frequency": 13829 + }, + { + "word": "sangrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bleed", + "example_sentence_native": "La herida empezó a sangrar.", + "example_sentence_english": "The wound started to bleed.", + "pos": "verb", + "word_frequency": 13830 + }, + { + "word": "sensatez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "common sense;good sense", + "example_sentence_native": "Actuó con gran sensatez en una situación difícil.", + "example_sentence_english": "He acted with great common sense in a difficult situation.", + "pos": "noun", + "word_frequency": 13833 + }, + { + "word": "sexista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexist", + "example_sentence_native": "Su comentario fue considerado sexista.", + "example_sentence_english": "His comment was considered sexist.", + "pos": "adjective", + "word_frequency": 13834 + }, + { + "word": "shield", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shield", + "example_sentence_native": "El personaje usaba un shield para protegerse.", + "example_sentence_english": "The character used a shield to protect himself.", + "pos": "noun", + "word_frequency": 13835 + }, + { + "word": "significación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "significance;meaning", + "example_sentence_native": "La significación de sus palabras era profunda.", + "example_sentence_english": "The significance of his words was profound.", + "pos": "noun", + "word_frequency": 13837 + }, + { + "word": "skin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skin (digital appearance)", + "example_sentence_native": "Compró una nueva skin para su personaje en el juego.", + "example_sentence_english": "He bought a new skin for his character in the game.", + "pos": "noun", + "word_frequency": 13838 + }, + { + "word": "soprano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soprano", + "example_sentence_native": "La soprano cantó un aria impresionante.", + "example_sentence_english": "The soprano sang an impressive aria.", + "pos": "noun", + "word_frequency": 13839 + }, + { + "word": "surco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furrow;groove", + "example_sentence_native": "El arado dejó un surco profundo en la tierra.", + "example_sentence_english": "The plow left a deep furrow in the earth.", + "pos": "noun", + "word_frequency": 13840 + }, + { + "word": "tarro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jar;can", + "example_sentence_native": "Guarda las galletas en un tarro de cristal.", + "example_sentence_english": "Keep the cookies in a glass jar.", + "pos": "noun", + "word_frequency": 13842 + }, + { + "word": "tornar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to return;to turn (into)", + "example_sentence_native": "El cielo comenzó a tornarse gris.", + "example_sentence_english": "The sky began to turn gray.", + "pos": "verb", + "word_frequency": 13848 + }, + { + "word": "toxina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toxin", + "example_sentence_native": "Algunas bacterias producen toxinas peligrosas.", + "example_sentence_english": "Some bacteria produce dangerous toxins.", + "pos": "noun", + "word_frequency": 13849 + }, + { + "word": "traído", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brought;carried", + "example_sentence_native": "La comida traída por los invitados estaba deliciosa.", + "example_sentence_english": "The food brought by the guests was delicious.", + "pos": "adjective", + "word_frequency": 13850 + }, + { + "word": "triunfal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumphant", + "example_sentence_native": "El equipo tuvo una entrada triunfal al estadio.", + "example_sentence_english": "The team had a triumphant entry into the stadium.", + "pos": "adjective", + "word_frequency": 13851 + }, + { + "word": "vagamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vaguely", + "example_sentence_native": "Recordaba vagamente su rostro.", + "example_sentence_english": "He vaguely remembered her face.", + "pos": "adverb", + "word_frequency": 13856 + }, + { + "word": "vaginal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vaginal", + "example_sentence_native": "El médico realizó un examen vaginal.", + "example_sentence_english": "The doctor performed a vaginal examination.", + "pos": "adjective", + "word_frequency": 13857 + }, + { + "word": "vertido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spill;discharge;dumping", + "example_sentence_native": "El vertido de petróleo causó un gran daño ecológico.", + "example_sentence_english": "The oil spill caused great ecological damage.", + "pos": "noun", + "word_frequency": 13858 + }, + { + "word": "vivido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lived;experienced;vivid", + "example_sentence_native": "Tiene muchos recuerdos vívidos de su infancia.", + "example_sentence_english": "He has many vivid memories of his childhood.", + "pos": "adjective", + "word_frequency": 13859 + }, + { + "word": "volado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flown;blown away;overhanging", + "example_sentence_native": "El balcón volado ofrece una vista espectacular.", + "example_sentence_english": "The overhanging balcony offers a spectacular view.", + "pos": "adjective", + "word_frequency": 13860 + }, + { + "word": "víbora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viper;snake", + "example_sentence_native": "Ten cuidado, hay una víbora en el camino.", + "example_sentence_english": "Be careful, there's a viper on the path.", + "pos": "noun", + "word_frequency": 13861 + }, + { + "word": "acontecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to happen;to occur", + "example_sentence_native": "Es difícil predecir lo que va a acontecer.", + "example_sentence_english": "It's difficult to predict what will happen.", + "pos": "verb", + "word_frequency": 13870 + }, + { + "word": "alienígena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alien;extraterrestrial", + "example_sentence_native": "La película trata sobre un encuentro con un alienígena.", + "example_sentence_english": "The movie is about an encounter with an alien.", + "pos": "noun", + "word_frequency": 13872 + }, + { + "word": "análogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "analogous;similar", + "example_sentence_native": "Su situación es análoga a la nuestra.", + "example_sentence_english": "His situation is analogous to ours.", + "pos": "adjective", + "word_frequency": 13875 + }, + { + "word": "arbitro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "referee;arbiter", + "example_sentence_native": "El árbitro pitó el final del partido.", + "example_sentence_english": "The referee blew the whistle for the end of the match.", + "pos": "noun", + "word_frequency": 13876 + }, + { + "word": "arcoiris", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rainbow", + "example_sentence_native": "Después de la lluvia, apareció un hermoso arcoíris.", + "example_sentence_english": "After the rain, a beautiful rainbow appeared.", + "pos": "noun", + "word_frequency": 13877 + }, + { + "word": "arenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sandy area;sandpit", + "example_sentence_native": "Los niños jugaban en el arenal de la playa.", + "example_sentence_english": "The children were playing in the sandy area of the beach.", + "pos": "noun", + "word_frequency": 13878 + }, + { + "word": "arribar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrive;to reach", + "example_sentence_native": "El barco arribó al puerto al amanecer.", + "example_sentence_english": "The ship arrived at the port at dawn.", + "pos": "verb", + "word_frequency": 13879 + }, + { + "word": "artritis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arthritis", + "example_sentence_native": "La artritis le causa mucho dolor en las manos.", + "example_sentence_english": "Arthritis causes him a lot of pain in his hands.", + "pos": "noun", + "word_frequency": 13880 + }, + { + "word": "astillero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipyard", + "example_sentence_native": "El barco fue construido en el astillero local.", + "example_sentence_english": "The ship was built in the local shipyard.", + "pos": "noun", + "word_frequency": 13881 + }, + { + "word": "ateísmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atheism", + "example_sentence_native": "El ateísmo es la falta de creencia en la existencia de Dios.", + "example_sentence_english": "Atheism is the lack of belief in the existence of God.", + "pos": "noun", + "word_frequency": 13883 + }, + { + "word": "añito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little year", + "example_sentence_native": "Mi sobrino ya tiene un añito.", + "example_sentence_english": "My nephew is already one year old.", + "pos": "noun", + "word_frequency": 13885 + }, + { + "word": "balonmano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handball", + "example_sentence_native": "El balonmano es un deporte muy popular en Europa.", + "example_sentence_english": "Handball is a very popular sport in Europe.", + "pos": "noun", + "word_frequency": 13886 + }, + { + "word": "bioquímica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biochemistry", + "example_sentence_native": "Estudió bioquímica en la universidad.", + "example_sentence_english": "She studied biochemistry at university.", + "pos": "noun", + "word_frequency": 13890 + }, + { + "word": "bolita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little ball", + "example_sentence_native": "El niño jugaba con una pequeña bolita de cristal.", + "example_sentence_english": "The child was playing with a small glass bead.", + "pos": "noun", + "word_frequency": 13893 + }, + { + "word": "canje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange", + "example_sentence_native": "Se realizó un canje de prisioneros.", + "example_sentence_english": "A prisoner exchange was carried out.", + "pos": "noun", + "word_frequency": 13895 + }, + { + "word": "capullo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cocoon", + "example_sentence_native": "La mariposa salió de su capullo.", + "example_sentence_english": "The butterfly emerged from its cocoon.", + "pos": "noun", + "word_frequency": 13896 + }, + { + "word": "caribeño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Caribbean", + "example_sentence_native": "Disfrutamos de la música caribeña durante las vacaciones.", + "example_sentence_english": "We enjoyed Caribbean music during the holidays.", + "pos": "adjective", + "word_frequency": 13897 + }, + { + "word": "catalogar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to catalog", + "example_sentence_native": "La biblioteca está catalogando los nuevos libros.", + "example_sentence_english": "The library is cataloging the new books.", + "pos": "verb", + "word_frequency": 13900 + }, + { + "word": "cebo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bait", + "example_sentence_native": "Usó gusanos como cebo para pescar.", + "example_sentence_english": "He used worms as bait for fishing.", + "pos": "noun", + "word_frequency": 13901 + }, + { + "word": "ceño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frown", + "example_sentence_native": "Frunció el ceño al escuchar la mala noticia.", + "example_sentence_english": "He frowned upon hearing the bad news.", + "pos": "noun", + "word_frequency": 13903 + }, + { + "word": "colegiado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "registered professional", + "example_sentence_native": "Para ejercer la medicina, es necesario ser un médico colegiado.", + "example_sentence_english": "To practice medicine, it is necessary to be a registered doctor.", + "pos": "noun", + "word_frequency": 13905 + }, + { + "word": "colonizador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonizer", + "example_sentence_native": "Los colonizadores llegaron a nuevas tierras.", + "example_sentence_english": "The colonizers arrived in new lands.", + "pos": "noun", + "word_frequency": 13906 + }, + { + "word": "comendador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commander (of a military order)", + "example_sentence_native": "El comendador de la orden dirigió la ceremonia.", + "example_sentence_english": "The commander of the order led the ceremony.", + "pos": "noun", + "word_frequency": 13907 + }, + { + "word": "comercializar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commercialize", + "example_sentence_native": "La empresa planea comercializar el nuevo producto el próximo año.", + "example_sentence_english": "The company plans to commercialize the new product next year.", + "pos": "verb", + "word_frequency": 13908 + }, + { + "word": "comparecencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appearance (in court;public)", + "example_sentence_native": "Su comparecencia ante el juez es obligatoria.", + "example_sentence_english": "His appearance before the judge is mandatory.", + "pos": "noun", + "word_frequency": 13909 + }, + { + "word": "concienciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise awareness", + "example_sentence_native": "Es importante concienciar a la gente sobre el cambio climático.", + "example_sentence_english": "It is important to raise people's awareness about climate change.", + "pos": "verb", + "word_frequency": 13910 + }, + { + "word": "consagrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consecrate", + "example_sentence_native": "El obispo va a consagrar la nueva iglesia.", + "example_sentence_english": "The bishop is going to consecrate the new church.", + "pos": "verb", + "word_frequency": 13911 + }, + { + "word": "conscientemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consciously", + "example_sentence_native": "Decidió conscientemente cambiar su estilo de vida.", + "example_sentence_english": "He consciously decided to change his lifestyle.", + "pos": "adverb", + "word_frequency": 13912 + }, + { + "word": "constitucionalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutionality", + "example_sentence_native": "El tribunal revisará la constitucionalidad de la nueva ley.", + "example_sentence_english": "The court will review the constitutionality of the new law.", + "pos": "noun", + "word_frequency": 13913 + }, + { + "word": "coronavirus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coronavirus", + "example_sentence_native": "La pandemia de coronavirus afectó a todo el mundo.", + "example_sentence_english": "The coronavirus pandemic affected the whole world.", + "pos": "noun", + "word_frequency": 13915 + }, + { + "word": "corso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privateer", + "example_sentence_native": "El corso atacó los barcos mercantes.", + "example_sentence_english": "The privateer attacked the merchant ships.", + "pos": "noun", + "word_frequency": 13916 + }, + { + "word": "cotizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quote (a price)", + "example_sentence_native": "Necesito cotizar el precio de este servicio.", + "example_sentence_english": "I need to get a quote for the price of this service.", + "pos": "verb", + "word_frequency": 13917 + }, + { + "word": "crowdfunding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowdfunding", + "example_sentence_native": "El crowdfunding es una forma popular de financiar proyectos.", + "example_sentence_english": "Crowdfunding is a popular way to finance projects.", + "pos": "noun", + "word_frequency": 13920 + }, + { + "word": "deliberado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberate", + "example_sentence_native": "Fue un acto deliberado, no un accidente.", + "example_sentence_english": "It was a deliberate act, not an accident.", + "pos": "adjective", + "word_frequency": 13923 + }, + { + "word": "demografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demography", + "example_sentence_native": "La demografía del país está cambiando rápidamente.", + "example_sentence_english": "The country's demography is changing rapidly.", + "pos": "noun", + "word_frequency": 13924 + }, + { + "word": "depuración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purification;debugging;cleansing", + "example_sentence_native": "La depuración de aguas residuales es esencial para el medio ambiente.", + "example_sentence_english": "Wastewater purification is essential for the environment.", + "pos": "noun", + "word_frequency": 13925 + }, + { + "word": "desmayo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faint;fainting spell", + "example_sentence_native": "Sufrió un desmayo debido al calor.", + "example_sentence_english": "He suffered a faint due to the heat.", + "pos": "noun", + "word_frequency": 13926 + }, + { + "word": "desnudez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nudity;nakedness", + "example_sentence_native": "La desnudez en el arte ha sido un tema recurrente.", + "example_sentence_english": "Nudity in art has been a recurring theme.", + "pos": "noun", + "word_frequency": 13927 + }, + { + "word": "diminuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny;minute", + "example_sentence_native": "Encontró un insecto diminuto en la hoja.", + "example_sentence_english": "He found a tiny insect on the leaf.", + "pos": "adjective", + "word_frequency": 13928 + }, + { + "word": "distraído", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distracted;absent-minded", + "example_sentence_native": "Estaba tan distraído que no escuchó la pregunta.", + "example_sentence_english": "He was so distracted that he didn't hear the question.", + "pos": "adjective", + "word_frequency": 13929 + }, + { + "word": "diáspora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diaspora", + "example_sentence_native": "La diáspora cubana es muy grande en Miami.", + "example_sentence_english": "The Cuban diaspora is very large in Miami.", + "pos": "noun", + "word_frequency": 13930 + }, + { + "word": "empaque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "packaging;packing", + "example_sentence_native": "El empaque del producto es muy atractivo.", + "example_sentence_english": "The product's packaging is very attractive.", + "pos": "noun", + "word_frequency": 13934 + }, + { + "word": "enfermero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nurse (male)", + "example_sentence_native": "El enfermero tomó mi temperatura.", + "example_sentence_english": "The nurse took my temperature.", + "pos": "noun", + "word_frequency": 13935 + }, + { + "word": "enérgicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetically;vigorously", + "example_sentence_native": "Respondió enérgicamente a las acusaciones.", + "example_sentence_english": "He responded energetically to the accusations.", + "pos": "adverb", + "word_frequency": 13936 + }, + { + "word": "escasamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarcely;barely", + "example_sentence_native": "Escasamente había comida en la nevera.", + "example_sentence_english": "There was scarcely any food in the fridge.", + "pos": "adverb", + "word_frequency": 13937 + }, + { + "word": "escisión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "split;schism;fission", + "example_sentence_native": "La escisión del partido político causó mucha controversia.", + "example_sentence_english": "The split of the political party caused much controversy.", + "pos": "noun", + "word_frequency": 13938 + }, + { + "word": "esterilización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterilization", + "example_sentence_native": "La esterilización de los instrumentos médicos es crucial.", + "example_sentence_english": "The sterilization of medical instruments is crucial.", + "pos": "noun", + "word_frequency": 13940 + }, + { + "word": "estratégicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategically", + "example_sentence_native": "Colocaron las tropas estratégicamente.", + "example_sentence_english": "They strategically placed the troops.", + "pos": "adverb", + "word_frequency": 13941 + }, + { + "word": "estudiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studied;deliberate", + "example_sentence_native": "Su respuesta fue muy estudiada.", + "example_sentence_english": "His answer was very studied.", + "pos": "adjective", + "word_frequency": 13942 + }, + { + "word": "evolutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolutionary", + "example_sentence_native": "El proceso evolutivo es fascinante.", + "example_sentence_english": "The evolutionary process is fascinating.", + "pos": "adjective", + "word_frequency": 13943 + }, + { + "word": "exaltación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exaltation;praise;excitement", + "example_sentence_native": "La exaltación de su victoria fue evidente.", + "example_sentence_english": "The exaltation of their victory was evident.", + "pos": "noun", + "word_frequency": 13944 + }, + { + "word": "fusilar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to execute by firing squad;to plagiarize", + "example_sentence_native": "El dictador ordenó fusilar a los rebeldes.", + "example_sentence_english": "The dictator ordered the rebels to be executed by firing squad.", + "pos": "verb", + "word_frequency": 13949 + }, + { + "word": "homicida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "murderer", + "example_sentence_native": "El homicida fue capturado después de una larga persecución.", + "example_sentence_english": "The murderer was captured after a long pursuit.", + "pos": "noun", + "word_frequency": 13960 + }, + { + "word": "horda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horde", + "example_sentence_native": "Una horda de turistas invadió la pequeña ciudad.", + "example_sentence_english": "A horde of tourists invaded the small town.", + "pos": "noun", + "word_frequency": 13961 + }, + { + "word": "impositivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax-related;imposing", + "example_sentence_native": "La nueva política impositiva afectará a muchas empresas.", + "example_sentence_english": "The new tax policy will affect many companies.", + "pos": "adjective", + "word_frequency": 13963 + }, + { + "word": "incitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incite;to instigate", + "example_sentence_native": "No debes incitar a la violencia.", + "example_sentence_english": "You should not incite violence.", + "pos": "verb", + "word_frequency": 13964 + }, + { + "word": "indeterminado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undetermined;indefinite", + "example_sentence_native": "El futuro de la empresa es indeterminado.", + "example_sentence_english": "The future of the company is undetermined.", + "pos": "adjective", + "word_frequency": 13966 + }, + { + "word": "individualismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "individualism", + "example_sentence_native": "El individualismo puede ser tanto una fortaleza como una debilidad.", + "example_sentence_english": "Individualism can be both a strength and a weakness.", + "pos": "noun", + "word_frequency": 13967 + }, + { + "word": "infusión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infusion;herbal tea", + "example_sentence_native": "Me gusta tomar una infusión de manzanilla antes de dormir.", + "example_sentence_english": "I like to drink a chamomile infusion before sleeping.", + "pos": "noun", + "word_frequency": 13968 + }, + { + "word": "injuria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insult;slander", + "example_sentence_native": "Fue acusado de injuria por sus comentarios.", + "example_sentence_english": "He was accused of slander for his comments.", + "pos": "noun", + "word_frequency": 13969 + }, + { + "word": "intocable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untouchable", + "example_sentence_native": "Para muchos, la ley es intocable.", + "example_sentence_english": "For many, the law is untouchable.", + "pos": "adjective", + "word_frequency": 13971 + }, + { + "word": "intruso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intruder", + "example_sentence_native": "El sistema de seguridad detectó a un intruso.", + "example_sentence_english": "The security system detected an intruder.", + "pos": "noun", + "word_frequency": 13972 + }, + { + "word": "irritar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to irritate;to annoy", + "example_sentence_native": "Su constante queja empezó a irritarme.", + "example_sentence_english": "His constant complaining started to irritate me.", + "pos": "verb", + "word_frequency": 13975 + }, + { + "word": "liderato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership", + "example_sentence_native": "Su liderato fue clave para el éxito del proyecto.", + "example_sentence_english": "His leadership was key to the project's success.", + "pos": "noun", + "word_frequency": 13985 + }, + { + "word": "locación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "location (film;event)", + "example_sentence_native": "La película se filmó en varias locaciones exóticas.", + "example_sentence_english": "The movie was filmed in several exotic locations.", + "pos": "noun", + "word_frequency": 13987 + }, + { + "word": "lóbulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lobe", + "example_sentence_native": "El lóbulo de la oreja es una parte blanda.", + "example_sentence_english": "The earlobe is a soft part.", + "pos": "noun", + "word_frequency": 13988 + }, + { + "word": "matinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morning;matutinal", + "example_sentence_native": "La edición matinal del periódico ya está disponible.", + "example_sentence_english": "The morning edition of the newspaper is already available.", + "pos": "adjective", + "word_frequency": 13992 + }, + { + "word": "membresía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "membership", + "example_sentence_native": "La membresía al club tiene muchos beneficios.", + "example_sentence_english": "Club membership has many benefits.", + "pos": "noun", + "word_frequency": 13995 + }, + { + "word": "mojar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wet;to soak", + "example_sentence_native": "No olvides mojar las plantas.", + "example_sentence_english": "Don't forget to water the plants.", + "pos": "verb", + "word_frequency": 13997 + }, + { + "word": "morgue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morgue", + "example_sentence_native": "El cuerpo fue llevado a la morgue.", + "example_sentence_english": "The body was taken to the morgue.", + "pos": "noun", + "word_frequency": 13999 + }, + { + "word": "mostrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shown;displayed", + "example_sentence_native": "El documento mostrado contenía información importante.", + "example_sentence_english": "The document shown contained important information.", + "pos": "adjective", + "word_frequency": 14000 + }, + { + "word": "muestreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sampling", + "example_sentence_native": "El muestreo de datos es crucial para la investigación.", + "example_sentence_english": "Data sampling is crucial for research.", + "pos": "noun", + "word_frequency": 14001 + }, + { + "word": "nutrir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nourish;to feed", + "example_sentence_native": "Es importante nutrir el cuerpo con alimentos saludables.", + "example_sentence_english": "It is important to nourish the body with healthy foods.", + "pos": "verb", + "word_frequency": 14006 + }, + { + "word": "operacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "operational", + "example_sentence_native": "El sistema está completamente operacional.", + "example_sentence_english": "The system is fully operational.", + "pos": "adjective", + "word_frequency": 14010 + }, + { + "word": "ovación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ovation;applause", + "example_sentence_native": "El público le dio una gran ovación al final del concierto.", + "example_sentence_english": "The audience gave him a great ovation at the end of the concert.", + "pos": "noun", + "word_frequency": 14012 + }, + { + "word": "oxidación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oxidation", + "example_sentence_native": "La oxidación del metal causa óxido.", + "example_sentence_english": "The oxidation of metal causes rust.", + "pos": "noun", + "word_frequency": 14013 + }, + { + "word": "palito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small stick;twig", + "example_sentence_native": "El perro trajo un palito del jardín.", + "example_sentence_english": "The dog brought a small stick from the garden.", + "pos": "noun", + "word_frequency": 14014 + }, + { + "word": "pancarta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banner;placard", + "example_sentence_native": "Los manifestantes llevaban pancartas con sus demandas.", + "example_sentence_english": "The protesters carried banners with their demands.", + "pos": "noun", + "word_frequency": 14015 + }, + { + "word": "peculiaridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiarity;characteristic", + "example_sentence_native": "Cada cultura tiene sus propias peculiaridades.", + "example_sentence_english": "Each culture has its own peculiarities.", + "pos": "noun", + "word_frequency": 14017 + }, + { + "word": "pedacito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small piece;little bit", + "example_sentence_native": "Dame un pedacito de pastel, por favor.", + "example_sentence_english": "Give me a small piece of cake, please.", + "pos": "noun", + "word_frequency": 14018 + }, + { + "word": "peluquero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairdresser;barber", + "example_sentence_native": "Fui al peluquero para un corte de pelo.", + "example_sentence_english": "I went to the hairdresser for a haircut.", + "pos": "noun", + "word_frequency": 14019 + }, + { + "word": "pensionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pensioner;retiree", + "example_sentence_native": "Mi abuelo es un pensionado y disfruta de su tiempo libre.", + "example_sentence_english": "My grandfather is a pensioner and enjoys his free time.", + "pos": "noun", + "word_frequency": 14020 + }, + { + "word": "penúltimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penultimate;second to last", + "example_sentence_native": "El penúltimo capítulo del libro fue muy emocionante.", + "example_sentence_english": "The penultimate chapter of the book was very exciting.", + "pos": "adjective", + "word_frequency": 14021 + }, + { + "word": "polideportivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sports center;multi-sport complex", + "example_sentence_native": "Vamos al polideportivo a jugar al baloncesto.", + "example_sentence_english": "We are going to the sports center to play basketball.", + "pos": "noun", + "word_frequency": 14024 + }, + { + "word": "profesionalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professionalism", + "example_sentence_native": "Su profesionalidad es admirable en cada proyecto.", + "example_sentence_english": "His professionalism is admirable in every project.", + "pos": "noun", + "word_frequency": 14025 + }, + { + "word": "pronunciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pronounced;marked;steep", + "example_sentence_native": "La curva de la carretera era muy pronunciada.", + "example_sentence_english": "The curve of the road was very steep.", + "pos": "adjective", + "word_frequency": 14026 + }, + { + "word": "proxy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proxy", + "example_sentence_native": "Necesitas configurar un proxy para acceder a la red.", + "example_sentence_english": "You need to configure a proxy to access the network.", + "pos": "noun", + "word_frequency": 14027 + }, + { + "word": "píldora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pill", + "example_sentence_native": "Tómate una píldora para el dolor de cabeza.", + "example_sentence_english": "Take a pill for the headache.", + "pos": "noun", + "word_frequency": 14028 + }, + { + "word": "rapidamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rapidly;quickly", + "example_sentence_native": "El coche se movía rapidamente por la carretera.", + "example_sentence_english": "The car was moving rapidly on the road.", + "pos": "adverb", + "word_frequency": 14030 + }, + { + "word": "rayado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "striped;scratched", + "example_sentence_native": "La pantalla del teléfono está rayada.", + "example_sentence_english": "The phone screen is scratched.", + "pos": "adjective", + "word_frequency": 14031 + }, + { + "word": "reciclado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycled", + "example_sentence_native": "Usamos papel reciclado para proteger el medio ambiente.", + "example_sentence_english": "We use recycled paper to protect the environment.", + "pos": "adjective", + "word_frequency": 14032 + }, + { + "word": "relatividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relativity", + "example_sentence_native": "La teoría de la relatividad fue propuesta por Einstein.", + "example_sentence_english": "The theory of relativity was proposed by Einstein.", + "pos": "noun", + "word_frequency": 14035 + }, + { + "word": "repartidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery person", + "example_sentence_native": "El repartidor trajo mi paquete esta mañana.", + "example_sentence_english": "The delivery person brought my package this morning.", + "pos": "noun", + "word_frequency": 14036 + }, + { + "word": "revelador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revealing;insightful", + "example_sentence_native": "Sus palabras fueron muy reveladoras sobre la situación.", + "example_sentence_english": "His words were very revealing about the situation.", + "pos": "adjective", + "word_frequency": 14037 + }, + { + "word": "revuelto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scrambled;messy;turbulent", + "example_sentence_native": "El tiempo está revuelto hoy, parece que va a llover.", + "example_sentence_english": "The weather is turbulent today, it looks like it's going to rain.", + "pos": "adjective", + "word_frequency": 14038 + }, + { + "word": "rial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rial (currency)", + "example_sentence_native": "El rial es la moneda de Irán.", + "example_sentence_english": "The rial is the currency of Iran.", + "pos": "noun", + "word_frequency": 14039 + }, + { + "word": "sensorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensory", + "example_sentence_native": "La experiencia sensorial fue muy intensa.", + "example_sentence_english": "The sensory experience was very intense.", + "pos": "adjective", + "word_frequency": 14040 + }, + { + "word": "simplificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplification", + "example_sentence_native": "Necesitamos una simplificación del proceso.", + "example_sentence_english": "We need a simplification of the process.", + "pos": "noun", + "word_frequency": 14046 + }, + { + "word": "susurro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whisper", + "example_sentence_native": "Escuché un susurro en la oscuridad.", + "example_sentence_english": "I heard a whisper in the dark.", + "pos": "noun", + "word_frequency": 14049 + }, + { + "word": "tanga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thong", + "example_sentence_native": "Compró una tanga para la playa.", + "example_sentence_english": "She bought a thong for the beach.", + "pos": "noun", + "word_frequency": 14051 + }, + { + "word": "tejer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to knit", + "example_sentence_native": "Mi abuela le gusta tejer bufandas.", + "example_sentence_english": "My grandmother likes to knit scarves.", + "pos": "verb", + "word_frequency": 14053 + }, + { + "word": "tenue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faint", + "example_sentence_native": "La luz era tenue en la habitación.", + "example_sentence_english": "The light was faint in the room.", + "pos": "adjective", + "word_frequency": 14054 + }, + { + "word": "titán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titan", + "example_sentence_native": "Es un titán en su campo de estudio.", + "example_sentence_english": "He is a titan in his field of study.", + "pos": "noun", + "word_frequency": 14056 + }, + { + "word": "transito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transit", + "example_sentence_native": "El transito en la ciudad es muy pesado.", + "example_sentence_english": "The transit in the city is very heavy.", + "pos": "noun", + "word_frequency": 14057 + }, + { + "word": "trompa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk", + "example_sentence_native": "El elefante usó su trompa para beber agua.", + "example_sentence_english": "The elephant used its trunk to drink water.", + "pos": "noun", + "word_frequency": 14058 + }, + { + "word": "viruela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smallpox", + "example_sentence_native": "La viruela fue una enfermedad devastadora.", + "example_sentence_english": "Smallpox was a devastating disease.", + "pos": "noun", + "word_frequency": 14064 + }, + { + "word": "visionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visionary", + "example_sentence_native": "Era un líder visionario con grandes ideas.", + "example_sentence_english": "He was a visionary leader with great ideas.", + "pos": "adjective", + "word_frequency": 14065 + }, + { + "word": "vocablo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "word", + "example_sentence_native": "Es un vocablo poco común en el lenguaje diario.", + "example_sentence_english": "It's an uncommon word in daily language.", + "pos": "noun", + "word_frequency": 14067 + }, + { + "word": "volátil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volatile", + "example_sentence_native": "El mercado de valores es muy volátil.", + "example_sentence_english": "The stock market is very volatile.", + "pos": "adjective", + "word_frequency": 14068 + }, + { + "word": "zorrilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skunk", + "example_sentence_native": "Vimos una zorrilla cruzando el camino.", + "example_sentence_english": "We saw a skunk crossing the road.", + "pos": "noun", + "word_frequency": 14073 + }, + { + "word": "acertar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guess correctly", + "example_sentence_native": "Acertó la respuesta en el examen.", + "example_sentence_english": "He guessed the answer correctly on the exam.", + "pos": "verb", + "word_frequency": 14075 + }, + { + "word": "acervo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heritage", + "example_sentence_native": "El acervo cultural de este país es inmenso.", + "example_sentence_english": "The cultural heritage of this country is immense.", + "pos": "noun", + "word_frequency": 14076 + }, + { + "word": "acosador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stalker", + "example_sentence_native": "La policía arrestó al acosador.", + "example_sentence_english": "The police arrested the stalker.", + "pos": "noun", + "word_frequency": 14077 + }, + { + "word": "afeitar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shave", + "example_sentence_native": "Me tengo que afeitar la barba.", + "example_sentence_english": "I have to shave my beard.", + "pos": "verb", + "word_frequency": 14078 + }, + { + "word": "agitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake", + "example_sentence_native": "Agita la botella antes de usarla.", + "example_sentence_english": "Shake the bottle before using it.", + "pos": "verb", + "word_frequency": 14079 + }, + { + "word": "agredido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assaulted", + "example_sentence_native": "La víctima se sintió agredida por los comentarios.", + "example_sentence_english": "The victim felt assaulted by the comments.", + "pos": "adjective", + "word_frequency": 14080 + }, + { + "word": "aleación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alloy", + "example_sentence_native": "El bronce es una aleación de cobre y estaño.", + "example_sentence_english": "Bronze is an alloy of copper and tin.", + "pos": "noun", + "word_frequency": 14081 + }, + { + "word": "almacenaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storage;warehousing", + "example_sentence_native": "El costo de almacenaje de los productos es alto.", + "example_sentence_english": "The storage cost of the products is high.", + "pos": "noun", + "word_frequency": 14083 + }, + { + "word": "andén", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "platform (train;bus)", + "example_sentence_native": "Esperamos el tren en el andén número tres.", + "example_sentence_english": "We waited for the train on platform number three.", + "pos": "noun", + "word_frequency": 14086 + }, + { + "word": "antropólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthropologist", + "example_sentence_native": "Un antropólogo estudia las culturas humanas.", + "example_sentence_english": "An anthropologist studies human cultures.", + "pos": "noun", + "word_frequency": 14087 + }, + { + "word": "apostado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stationed;posted", + "example_sentence_native": "Los soldados estaban apostados en la frontera.", + "example_sentence_english": "The soldiers were stationed at the border.", + "pos": "adjective", + "word_frequency": 14089 + }, + { + "word": "aragones", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Aragonese (from Aragon)", + "example_sentence_native": "La jota es un baile tradicional aragonés.", + "example_sentence_english": "The jota is a traditional Aragonese dance.", + "pos": "adjective", + "word_frequency": 14090 + }, + { + "word": "atadura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tie;bond;restraint", + "example_sentence_native": "Se liberó de todas las ataduras sociales.", + "example_sentence_english": "He freed himself from all social ties.", + "pos": "noun", + "word_frequency": 14093 + }, + { + "word": "besito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little kiss;peck", + "example_sentence_native": "Dame un besito antes de irte.", + "example_sentence_english": "Give me a little kiss before you leave.", + "pos": "noun", + "word_frequency": 14099 + }, + { + "word": "cableado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wiring;cabling", + "example_sentence_native": "Necesitamos revisar el cableado eléctrico de la casa.", + "example_sentence_english": "We need to check the electrical wiring of the house.", + "pos": "noun", + "word_frequency": 14104 + }, + { + "word": "calzoncillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "underwear (men's);briefs", + "example_sentence_native": "Necesito comprar calzoncillos nuevos.", + "example_sentence_english": "I need to buy new underwear.", + "pos": "noun", + "word_frequency": 14107 + }, + { + "word": "carroza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "float (parade);carriage", + "example_sentence_native": "La carroza del rey era muy lujosa.", + "example_sentence_english": "The king's carriage was very luxurious.", + "pos": "noun", + "word_frequency": 14109 + }, + { + "word": "caótico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chaotic", + "example_sentence_native": "La situación en la ciudad era caótica después del terremoto.", + "example_sentence_english": "The situation in the city was chaotic after the earthquake.", + "pos": "adjective", + "word_frequency": 14110 + }, + { + "word": "cesárea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "C-section;Caesarean section", + "example_sentence_native": "El bebé nació por cesárea.", + "example_sentence_english": "The baby was born by C-section.", + "pos": "noun", + "word_frequency": 14112 + }, + { + "word": "coacción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coercion;duress", + "example_sentence_native": "Actuó bajo coacción.", + "example_sentence_english": "He acted under coercion.", + "pos": "noun", + "word_frequency": 14115 + }, + { + "word": "concerniente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concerning;related to", + "example_sentence_native": "Se discutieron los puntos concernientes al nuevo contrato.", + "example_sentence_english": "The points concerning the new contract were discussed.", + "pos": "adjective", + "word_frequency": 14116 + }, + { + "word": "concienciación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awareness;conscientization", + "example_sentence_native": "Es importante la concienciación sobre el cambio climático.", + "example_sentence_english": "Awareness about climate change is important.", + "pos": "noun", + "word_frequency": 14117 + }, + { + "word": "confrontar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confront;to face", + "example_sentence_native": "Tuvo que confrontar sus miedos.", + "example_sentence_english": "He had to confront his fears.", + "pos": "verb", + "word_frequency": 14118 + }, + { + "word": "congelación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freezing;frostbite", + "example_sentence_native": "La congelación de alimentos ayuda a conservarlos.", + "example_sentence_english": "Food freezing helps preserve them.", + "pos": "noun", + "word_frequency": 14119 + }, + { + "word": "consentido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spoiled;pampered", + "example_sentence_native": "Es un niño muy consentido.", + "example_sentence_english": "He is a very spoiled child.", + "pos": "adjective", + "word_frequency": 14120 + }, + { + "word": "conserva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserve;canned food", + "example_sentence_native": "Compramos una lata de conserva de atún.", + "example_sentence_english": "We bought a can of tuna preserve.", + "pos": "noun", + "word_frequency": 14121 + }, + { + "word": "contagioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contagious", + "example_sentence_native": "La risa es contagiosa.", + "example_sentence_english": "Laughter is contagious.", + "pos": "adjective", + "word_frequency": 14122 + }, + { + "word": "correspondido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reciprocated;corresponded", + "example_sentence_native": "Su amor no fue correspondido.", + "example_sentence_english": "His love was not reciprocated.", + "pos": "adjective", + "word_frequency": 14123 + }, + { + "word": "creed", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creed;belief", + "example_sentence_native": "Cada religión tiene su propio creed.", + "example_sentence_english": "Every religion has its own creed.", + "pos": "noun", + "word_frequency": 14125 + }, + { + "word": "cricket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cricket (sport)", + "example_sentence_native": "El cricket es un deporte popular en Inglaterra.", + "example_sentence_english": "Cricket is a popular sport in England.", + "pos": "noun", + "word_frequency": 14126 + }, + { + "word": "cuadrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrant;dial", + "example_sentence_native": "El reloj tiene un cuadrante grande.", + "example_sentence_english": "The clock has a large dial.", + "pos": "noun", + "word_frequency": 14127 + }, + { + "word": "datar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to date (from);to originate", + "example_sentence_native": "Este edificio data del siglo XVIII.", + "example_sentence_english": "This building dates from the 18th century.", + "pos": "verb", + "word_frequency": 14128 + }, + { + "word": "delictivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminal;delinquent", + "example_sentence_native": "Se investiga la actividad delictiva.", + "example_sentence_english": "Criminal activity is being investigated.", + "pos": "adjective", + "word_frequency": 14129 + }, + { + "word": "demorar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delay;to postpone", + "example_sentence_native": "No debemos demorar la decisión.", + "example_sentence_english": "We should not delay the decision.", + "pos": "verb", + "word_frequency": 14130 + }, + { + "word": "derechista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "right-wing", + "example_sentence_native": "Es un partido político derechista.", + "example_sentence_english": "It is a right-wing political party.", + "pos": "adjective", + "word_frequency": 14131 + }, + { + "word": "derrama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spill;levy;special assessment", + "example_sentence_native": "La comunidad de vecinos aprobó una derrama para las reparaciones.", + "example_sentence_english": "The neighborhood community approved a special assessment for the repairs.", + "pos": "noun", + "word_frequency": 14132 + }, + { + "word": "descalzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barefoot", + "example_sentence_native": "Caminaba descalzo por la playa.", + "example_sentence_english": "He walked barefoot on the beach.", + "pos": "adjective", + "word_frequency": 14133 + }, + { + "word": "descomunal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enormous;colossal", + "example_sentence_native": "El elefante tenía un tamaño descomunal.", + "example_sentence_english": "The elephant had an enormous size.", + "pos": "adjective", + "word_frequency": 14134 + }, + { + "word": "desmantelamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismantling;demolition", + "example_sentence_native": "El desmantelamiento de la fábrica duró meses.", + "example_sentence_english": "The dismantling of the factory lasted months.", + "pos": "noun", + "word_frequency": 14135 + }, + { + "word": "desordenado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messy;disorganized", + "example_sentence_native": "Su habitación siempre está desordenada.", + "example_sentence_english": "His room is always messy.", + "pos": "adjective", + "word_frequency": 14137 + }, + { + "word": "discretamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discreetly", + "example_sentence_native": "Entró discretamente en la sala.", + "example_sentence_english": "He entered the room discreetly.", + "pos": "adverb", + "word_frequency": 14140 + }, + { + "word": "domiciliario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "domiciliary;home-based", + "example_sentence_native": "Ofrecen servicios de atención domiciliaria.", + "example_sentence_english": "They offer home-based care services.", + "pos": "adjective", + "word_frequency": 14141 + }, + { + "word": "domino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domino", + "example_sentence_native": "Jugamos al dominó por la tarde.", + "example_sentence_english": "We played dominoes in the afternoon.", + "pos": "noun", + "word_frequency": 14142 + }, + { + "word": "dondequiera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wherever;anywhere", + "example_sentence_native": "Te seguiré dondequiera que vayas.", + "example_sentence_english": "I will follow you wherever you go.", + "pos": "adverb", + "word_frequency": 14143 + }, + { + "word": "efímero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ephemeral;fleeting", + "example_sentence_native": "La belleza es efímera.", + "example_sentence_english": "Beauty is ephemeral.", + "pos": "adjective", + "word_frequency": 14148 + }, + { + "word": "empírico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "empirical", + "example_sentence_native": "Se basa en datos empíricos.", + "example_sentence_english": "It is based on empirical data.", + "pos": "adjective", + "word_frequency": 14150 + }, + { + "word": "encarcelar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imprison;to incarcerate", + "example_sentence_native": "Decidieron encarcelar al culpable.", + "example_sentence_english": "They decided to imprison the culprit.", + "pos": "verb", + "word_frequency": 14151 + }, + { + "word": "enemistad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enmity;hostility", + "example_sentence_native": "Había una vieja enemistad entre las familias.", + "example_sentence_english": "There was an old enmity between the families.", + "pos": "noun", + "word_frequency": 14152 + }, + { + "word": "engordar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gain weight;to fatten", + "example_sentence_native": "No quiero engordar durante las vacaciones.", + "example_sentence_english": "I don't want to gain weight during the holidays.", + "pos": "verb", + "word_frequency": 14153 + }, + { + "word": "envejecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to age;to grow old", + "example_sentence_native": "Todos vamos a envejecer algún día.", + "example_sentence_english": "We are all going to age someday.", + "pos": "verb", + "word_frequency": 14155 + }, + { + "word": "errante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wandering;errant", + "example_sentence_native": "El caballero errante buscaba aventuras.", + "example_sentence_english": "The errant knight sought adventures.", + "pos": "adjective", + "word_frequency": 14157 + }, + { + "word": "esperma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sperm", + "example_sentence_native": "El esperma es una célula reproductiva masculina.", + "example_sentence_english": "Sperm is a male reproductive cell.", + "pos": "noun", + "word_frequency": 14159 + }, + { + "word": "estrechar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to narrow;to tighten;to shake (hands)", + "example_sentence_native": "Quiso estrechar la mano de su oponente.", + "example_sentence_english": "He wanted to shake his opponent's hand.", + "pos": "verb", + "word_frequency": 14160 + }, + { + "word": "estuche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "case;pencil case;box", + "example_sentence_native": "Guarda tus gafas en el estuche.", + "example_sentence_english": "Keep your glasses in the case.", + "pos": "noun", + "word_frequency": 14161 + }, + { + "word": "excluyente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive;exclusionary", + "example_sentence_native": "La política era excluyente para ciertos grupos.", + "example_sentence_english": "The policy was exclusionary for certain groups.", + "pos": "adjective", + "word_frequency": 14162 + }, + { + "word": "expiatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expiatory;scapegoat (as in 'scapegoat')", + "example_sentence_native": "Fue el chivo expiatorio de la situación.", + "example_sentence_english": "He was the scapegoat for the situation.", + "pos": "adjective", + "word_frequency": 14163 + }, + { + "word": "federalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federalism", + "example_sentence_native": "El federalismo es un sistema de gobierno.", + "example_sentence_english": "Federalism is a system of government.", + "pos": "noun", + "word_frequency": 14165 + }, + { + "word": "feudo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fief;feud (as in a domain)", + "example_sentence_native": "El caballero gobernaba su feudo con mano dura.", + "example_sentence_english": "The knight ruled his fief with a firm hand.", + "pos": "noun", + "word_frequency": 14166 + }, + { + "word": "fotocopia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photocopy", + "example_sentence_native": "Necesito una fotocopia de este documento.", + "example_sentence_english": "I need a photocopy of this document.", + "pos": "noun", + "word_frequency": 14168 + }, + { + "word": "frigorífico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator;fridge", + "example_sentence_native": "Guarda la leche en el frigorífico.", + "example_sentence_english": "Keep the milk in the refrigerator.", + "pos": "noun", + "word_frequency": 14170 + }, + { + "word": "gramatical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grammatical", + "example_sentence_native": "La oración tiene un error gramatical.", + "example_sentence_english": "The sentence has a grammatical error.", + "pos": "adjective", + "word_frequency": 14173 + }, + { + "word": "gratuidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratuity;freeness", + "example_sentence_native": "Abogan por la gratuidad de la educación.", + "example_sentence_english": "They advocate for free education.", + "pos": "noun", + "word_frequency": 14174 + }, + { + "word": "herejía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heresy", + "example_sentence_native": "Fue acusado de herejía por sus creencias.", + "example_sentence_english": "He was accused of heresy for his beliefs.", + "pos": "noun", + "word_frequency": 14178 + }, + { + "word": "iberoamérica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ibero-America", + "example_sentence_native": "Iberoamérica tiene una rica diversidad cultural.", + "example_sentence_english": "Ibero-America has a rich cultural diversity.", + "pos": "noun", + "word_frequency": 14182 + }, + { + "word": "implante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implant", + "example_sentence_native": "Se sometió a un implante dental.", + "example_sentence_english": "He underwent a dental implant.", + "pos": "noun", + "word_frequency": 14183 + }, + { + "word": "improvisar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to improvise", + "example_sentence_native": "Tuvimos que improvisar un plan.", + "example_sentence_english": "We had to improvise a plan.", + "pos": "verb", + "word_frequency": 14184 + }, + { + "word": "impugnación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "challenge;impeachment;objection", + "example_sentence_native": "Presentaron una impugnación contra la decisión.", + "example_sentence_english": "They filed an objection against the decision.", + "pos": "noun", + "word_frequency": 14185 + }, + { + "word": "impulsor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promoter;driving force;impeller", + "example_sentence_native": "Fue el principal impulsor del proyecto.", + "example_sentence_english": "He was the main driving force behind the project.", + "pos": "noun", + "word_frequency": 14186 + }, + { + "word": "inepto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inept;incompetent", + "example_sentence_native": "Su desempeño fue inepto.", + "example_sentence_english": "His performance was inept.", + "pos": "adjective", + "word_frequency": 14187 + }, + { + "word": "insultante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insulting", + "example_sentence_native": "Sus comentarios fueron insultantes.", + "example_sentence_english": "His comments were insulting.", + "pos": "adjective", + "word_frequency": 14188 + }, + { + "word": "jazmín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jasmine", + "example_sentence_native": "El jazmín tiene un aroma dulce.", + "example_sentence_english": "Jasmine has a sweet scent.", + "pos": "noun", + "word_frequency": 14192 + }, + { + "word": "jengibre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ginger", + "example_sentence_native": "Me gusta el té de jengibre.", + "example_sentence_english": "I like ginger tea.", + "pos": "noun", + "word_frequency": 14193 + }, + { + "word": "kilometro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilometer", + "example_sentence_native": "La distancia es de diez kilómetros.", + "example_sentence_english": "The distance is ten kilometers.", + "pos": "noun", + "word_frequency": 14196 + }, + { + "word": "legitimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legitimate", + "example_sentence_native": "Su reclamo es completamente legítimo.", + "example_sentence_english": "His claim is completely legitimate.", + "pos": "adjective", + "word_frequency": 14202 + }, + { + "word": "locomotora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locomotive", + "example_sentence_native": "La locomotora tiraba de los vagones.", + "example_sentence_english": "The locomotive pulled the wagons.", + "pos": "noun", + "word_frequency": 14204 + }, + { + "word": "manicomio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asylum", + "example_sentence_native": "El antiguo manicomio fue convertido en un museo.", + "example_sentence_english": "The old asylum was converted into a museum.", + "pos": "noun", + "word_frequency": 14210 + }, + { + "word": "mercadotecnia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing", + "example_sentence_native": "Estudió mercadotecnia en la universidad.", + "example_sentence_english": "He studied marketing at the university.", + "pos": "noun", + "word_frequency": 14215 + }, + { + "word": "mesero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waiter", + "example_sentence_native": "El mesero nos trajo la cuenta.", + "example_sentence_english": "The waiter brought us the bill.", + "pos": "noun", + "word_frequency": 14216 + }, + { + "word": "montañoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountainous", + "example_sentence_native": "El paisaje era muy montañoso.", + "example_sentence_english": "The landscape was very mountainous.", + "pos": "adjective", + "word_frequency": 14220 + }, + { + "word": "operario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worker", + "example_sentence_native": "El operario de la fábrica revisó la maquinaria.", + "example_sentence_english": "The factory worker checked the machinery.", + "pos": "noun", + "word_frequency": 14229 + }, + { + "word": "oportunamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunely", + "example_sentence_native": "La información fue entregada oportunamente.", + "example_sentence_english": "The information was delivered opportunely.", + "pos": "adverb", + "word_frequency": 14230 + }, + { + "word": "orificio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orifice", + "example_sentence_native": "Había un pequeño orificio en la pared.", + "example_sentence_english": "There was a small orifice in the wall.", + "pos": "noun", + "word_frequency": 14231 + }, + { + "word": "oriundo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "native", + "example_sentence_native": "Es oriundo de un pequeño pueblo de montaña.", + "example_sentence_english": "He is native to a small mountain town.", + "pos": "adjective", + "word_frequency": 14232 + }, + { + "word": "oxigeno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oxygen", + "example_sentence_native": "Necesitamos oxígeno para respirar.", + "example_sentence_english": "We need oxygen to breathe.", + "pos": "noun", + "word_frequency": 14234 + }, + { + "word": "partícipe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participant", + "example_sentence_native": "Todos los partícipes del proyecto se reunieron.", + "example_sentence_english": "All participants in the project met.", + "pos": "noun", + "word_frequency": 14237 + }, + { + "word": "pedofilia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "pedophilia", + "example_sentence_native": "La pedofilia es un crimen grave.", + "example_sentence_english": "Pedophilia is a serious crime.", + "pos": "noun", + "word_frequency": 14239 + }, + { + "word": "peligrosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dangerously", + "example_sentence_native": "El coche se acercaba peligrosamente a la curva.", + "example_sentence_english": "The car was approaching the curve dangerously.", + "pos": "adverb", + "word_frequency": 14240 + }, + { + "word": "plató", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "studio;set (film;TV)", + "example_sentence_native": "El rodaje tuvo lugar en un plató de cine.", + "example_sentence_english": "The filming took place on a film set.", + "pos": "noun", + "word_frequency": 14243 + }, + { + "word": "plausible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plausible", + "example_sentence_native": "Su explicación parecía bastante plausible.", + "example_sentence_english": "His explanation seemed quite plausible.", + "pos": "adjective", + "word_frequency": 14244 + }, + { + "word": "poncho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poncho", + "example_sentence_native": "Llevaba un poncho de lana para protegerse del frío.", + "example_sentence_english": "He was wearing a wool poncho to protect himself from the cold.", + "pos": "noun", + "word_frequency": 14245 + }, + { + "word": "porche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porch", + "example_sentence_native": "Nos sentamos en el porche a tomar café.", + "example_sentence_english": "We sat on the porch to drink coffee.", + "pos": "noun", + "word_frequency": 14246 + }, + { + "word": "precedido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preceded", + "example_sentence_native": "El discurso fue precedido por una breve introducción.", + "example_sentence_english": "The speech was preceded by a brief introduction.", + "pos": "adjective", + "word_frequency": 14248 + }, + { + "word": "predisposición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predisposition", + "example_sentence_native": "Tiene una predisposición genética a ciertas enfermedades.", + "example_sentence_english": "He has a genetic predisposition to certain diseases.", + "pos": "noun", + "word_frequency": 14249 + }, + { + "word": "preferencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preferential", + "example_sentence_native": "Los miembros tienen acceso preferencial a los eventos.", + "example_sentence_english": "Members have preferential access to events.", + "pos": "adjective", + "word_frequency": 14250 + }, + { + "word": "presbítero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presbyter;priest", + "example_sentence_native": "El presbítero ofició la misa dominical.", + "example_sentence_english": "The presbyter officiated the Sunday mass.", + "pos": "noun", + "word_frequency": 14251 + }, + { + "word": "progenitor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "progenitor;parent", + "example_sentence_native": "Los progenitores son responsables de la educación de sus hijos.", + "example_sentence_english": "The progenitors are responsible for their children's education.", + "pos": "noun", + "word_frequency": 14252 + }, + { + "word": "propagar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to propagate;to spread", + "example_sentence_native": "La noticia se propagó rápidamente por todo el pueblo.", + "example_sentence_english": "The news spread quickly throughout the town.", + "pos": "verb", + "word_frequency": 14253 + }, + { + "word": "púa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorn;barb;pick (guitar)", + "example_sentence_native": "La guitarra necesita una púa nueva.", + "example_sentence_english": "The guitar needs a new pick.", + "pos": "noun", + "word_frequency": 14254 + }, + { + "word": "realizador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "director;filmmaker", + "example_sentence_native": "El realizador presentó su nueva película en el festival.", + "example_sentence_english": "The director presented his new film at the festival.", + "pos": "noun", + "word_frequency": 14256 + }, + { + "word": "refutar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refute", + "example_sentence_native": "Intentó refutar los argumentos de su oponente.", + "example_sentence_english": "He tried to refute his opponent's arguments.", + "pos": "verb", + "word_frequency": 14257 + }, + { + "word": "regar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to water (plants)", + "example_sentence_native": "No olvides regar las plantas por la mañana.", + "example_sentence_english": "Don't forget to water the plants in the morning.", + "pos": "verb", + "word_frequency": 14258 + }, + { + "word": "reggaeton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reggaeton", + "example_sentence_native": "El reggaeton es un género musical muy popular en Latinoamérica.", + "example_sentence_english": "Reggaeton is a very popular music genre in Latin America.", + "pos": "noun", + "word_frequency": 14259 + }, + { + "word": "regularización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regularization", + "example_sentence_native": "El gobierno anunció un plan de regularización para inmigrantes.", + "example_sentence_english": "The government announced a regularization plan for immigrants.", + "pos": "noun", + "word_frequency": 14260 + }, + { + "word": "reiteradamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repeatedly;reiteratively", + "example_sentence_native": "Le advirtió reiteradamente que no lo hiciera.", + "example_sentence_english": "He repeatedly warned him not to do it.", + "pos": "adverb", + "word_frequency": 14261 + }, + { + "word": "renacentista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Renaissance (adj.)", + "example_sentence_native": "Admiramos la arquitectura renacentista de la ciudad.", + "example_sentence_english": "We admire the Renaissance architecture of the city.", + "pos": "adjective", + "word_frequency": 14262 + }, + { + "word": "reparado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repaired;fixed", + "example_sentence_native": "El coche ya está reparado y listo para usar.", + "example_sentence_english": "The car is already repaired and ready to use.", + "pos": "adjective", + "word_frequency": 14263 + }, + { + "word": "riachuelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stream;brook", + "example_sentence_native": "Había un pequeño riachuelo que cruzaba el bosque.", + "example_sentence_english": "There was a small stream crossing the forest.", + "pos": "noun", + "word_frequency": 14264 + }, + { + "word": "ruedo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullring;arena", + "example_sentence_native": "El torero salió al ruedo para enfrentarse al toro.", + "example_sentence_english": "The bullfighter entered the bullring to face the bull.", + "pos": "noun", + "word_frequency": 14268 + }, + { + "word": "sandía", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "watermelon", + "example_sentence_native": "Me encanta comer sandía en verano.", + "example_sentence_english": "I love eating watermelon in summer.", + "pos": "noun", + "word_frequency": 14269 + }, + { + "word": "secreción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secretion", + "example_sentence_native": "La glándula produce una secreción hormonal.", + "example_sentence_english": "The gland produces a hormonal secretion.", + "pos": "noun", + "word_frequency": 14271 + }, + { + "word": "sima", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chasm;abyss;sinkhole", + "example_sentence_native": "Los espeleólogos exploraron la profunda sima.", + "example_sentence_english": "The speleologists explored the deep chasm.", + "pos": "noun", + "word_frequency": 14273 + }, + { + "word": "simetría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symmetry", + "example_sentence_native": "La simetría de la fachada es impresionante.", + "example_sentence_english": "The symmetry of the facade is impressive.", + "pos": "noun", + "word_frequency": 14274 + }, + { + "word": "soldadura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weld;soldering", + "example_sentence_native": "La soldadura de las tuberías debe ser muy resistente.", + "example_sentence_english": "The welding of the pipes must be very resistant.", + "pos": "noun", + "word_frequency": 14275 + }, + { + "word": "sometimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "submission;subjugation", + "example_sentence_native": "El sometimiento a la autoridad es fundamental en el ejército.", + "example_sentence_english": "Submission to authority is fundamental in the army.", + "pos": "noun", + "word_frequency": 14277 + }, + { + "word": "stereo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stereo", + "example_sentence_native": "Compramos un nuevo equipo de sonido estéreo.", + "example_sentence_english": "We bought a new stereo sound system.", + "pos": "noun", + "word_frequency": 14280 + }, + { + "word": "subrayado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underline;highlight", + "example_sentence_native": "El subrayado en el texto me ayudó a recordar lo importante.", + "example_sentence_english": "The underline in the text helped me remember what was important.", + "pos": "noun", + "word_frequency": 14282 + }, + { + "word": "supercopa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Supercup", + "example_sentence_native": "El equipo ganó la Supercopa el año pasado.", + "example_sentence_english": "The team won the Supercup last year.", + "pos": "noun", + "word_frequency": 14283 + }, + { + "word": "suéter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweater", + "example_sentence_native": "Necesito un suéter para el frío.", + "example_sentence_english": "I need a sweater for the cold.", + "pos": "noun", + "word_frequency": 14284 + }, + { + "word": "tenacidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenacity", + "example_sentence_native": "Su tenacidad le permitió superar todos los obstáculos.", + "example_sentence_english": "His tenacity allowed him to overcome all obstacles.", + "pos": "noun", + "word_frequency": 14285 + }, + { + "word": "tentador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tempting", + "example_sentence_native": "La oferta era muy tentadora.", + "example_sentence_english": "The offer was very tempting.", + "pos": "adjective", + "word_frequency": 14286 + }, + { + "word": "titan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titan", + "example_sentence_native": "Se le considera un titán de la industria.", + "example_sentence_english": "He is considered a titan of the industry.", + "pos": "noun", + "word_frequency": 14287 + }, + { + "word": "transgénico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transgenic;GMO", + "example_sentence_native": "Hay un debate sobre los alimentos transgénicos.", + "example_sentence_english": "There is a debate about transgenic foods.", + "pos": "adjective", + "word_frequency": 14289 + }, + { + "word": "traspasar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transfer;to go through", + "example_sentence_native": "Tuvieron que traspasar la propiedad a su hijo.", + "example_sentence_english": "They had to transfer the property to their son.", + "pos": "verb", + "word_frequency": 14290 + }, + { + "word": "ultimátum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimatum", + "example_sentence_native": "Le dieron un ultimátum para que tomara una decisión.", + "example_sentence_english": "They gave him an ultimatum to make a decision.", + "pos": "noun", + "word_frequency": 14293 + }, + { + "word": "unificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unified", + "example_sentence_native": "El equipo presentó un frente unificado.", + "example_sentence_english": "The team presented a unified front.", + "pos": "adjective", + "word_frequency": 14294 + }, + { + "word": "vacacional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vacation (adj.);holiday (adj.)", + "example_sentence_native": "Estamos planeando nuestras actividades vacacionales.", + "example_sentence_english": "We are planning our vacation activities.", + "pos": "adjective", + "word_frequency": 14296 + }, + { + "word": "valorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valued;appreciated", + "example_sentence_native": "Su trabajo es muy valorado en la empresa.", + "example_sentence_english": "His work is highly valued in the company.", + "pos": "adjective", + "word_frequency": 14298 + }, + { + "word": "zarzuela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zarzuela (Spanish operetta or seafood stew)", + "example_sentence_native": "Fuimos a ver una zarzuela en el teatro.", + "example_sentence_english": "We went to see a zarzuela at the theater.", + "pos": "noun", + "word_frequency": 14304 + }, + { + "word": "ímpetu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impetus;impulse", + "example_sentence_native": "Actuó con gran ímpetu.", + "example_sentence_english": "He acted with great impetus.", + "pos": "noun", + "word_frequency": 14306 + }, + { + "word": "aclamado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acclaimed", + "example_sentence_native": "El director fue aclamado por su última película.", + "example_sentence_english": "The director was acclaimed for his latest film.", + "pos": "adjective", + "word_frequency": 14307 + }, + { + "word": "acné", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acne", + "example_sentence_native": "Muchos adolescentes sufren de acné.", + "example_sentence_english": "Many teenagers suffer from acne.", + "pos": "noun", + "word_frequency": 14308 + }, + { + "word": "administrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administered;managed", + "example_sentence_native": "Los fondos fueron administrados correctamente.", + "example_sentence_english": "The funds were administered correctly.", + "pos": "adjective", + "word_frequency": 14309 + }, + { + "word": "almacenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stored", + "example_sentence_native": "Los productos están almacenados en el almacén.", + "example_sentence_english": "The products are stored in the warehouse.", + "pos": "adjective", + "word_frequency": 14313 + }, + { + "word": "analfabeto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illiterate", + "example_sentence_native": "Lamentablemente, todavía hay muchas personas analfabetas en el mundo.", + "example_sentence_english": "Unfortunately, there are still many illiterate people in the world.", + "pos": "adjective", + "word_frequency": 14314 + }, + { + "word": "apartheid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apartheid", + "example_sentence_native": "El apartheid fue un sistema de segregación racial.", + "example_sentence_english": "Apartheid was a system of racial segregation.", + "pos": "noun", + "word_frequency": 14317 + }, + { + "word": "bancar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to support;to tolerate", + "example_sentence_native": "No puedo bancar más esta situación.", + "example_sentence_english": "I can't tolerate this situation anymore.", + "pos": "verb", + "word_frequency": 14319 + }, + { + "word": "bicarbonato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baking soda", + "example_sentence_native": "Añade una cucharadita de bicarbonato al pastel.", + "example_sentence_english": "Add a teaspoon of baking soda to the cake.", + "pos": "noun", + "word_frequency": 14320 + }, + { + "word": "bid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bid", + "example_sentence_native": "Hizo una oferta alta en la subasta.", + "example_sentence_english": "He made a high bid at the auction.", + "pos": "noun", + "word_frequency": 14321 + }, + { + "word": "botar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to throw away;to bounce", + "example_sentence_native": "No olvides botar la basura antes de salir.", + "example_sentence_english": "Don't forget to throw away the trash before leaving.", + "pos": "verb", + "word_frequency": 14322 + }, + { + "word": "bruscamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abruptly;brusquely", + "example_sentence_native": "El coche se detuvo bruscamente.", + "example_sentence_english": "The car stopped abruptly.", + "pos": "adverb", + "word_frequency": 14323 + }, + { + "word": "caligrafía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calligraphy;handwriting", + "example_sentence_native": "Su caligrafía es muy elegante.", + "example_sentence_english": "Her calligraphy is very elegant.", + "pos": "noun", + "word_frequency": 14324 + }, + { + "word": "campiña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "countryside", + "example_sentence_native": "Pasamos el fin de semana en la campiña.", + "example_sentence_english": "We spent the weekend in the countryside.", + "pos": "noun", + "word_frequency": 14325 + }, + { + "word": "capitalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitalization", + "example_sentence_native": "La capitalización de mercado de la empresa ha aumentado.", + "example_sentence_english": "The company's market capitalization has increased.", + "pos": "noun", + "word_frequency": 14326 + }, + { + "word": "carruaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carriage", + "example_sentence_native": "El príncipe llegó en un hermoso carruaje.", + "example_sentence_english": "The prince arrived in a beautiful carriage.", + "pos": "noun", + "word_frequency": 14327 + }, + { + "word": "cedro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cedar", + "example_sentence_native": "El jardín tiene un gran árbol de cedro.", + "example_sentence_english": "The garden has a large cedar tree.", + "pos": "noun", + "word_frequency": 14328 + }, + { + "word": "cercado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence;enclosure", + "example_sentence_native": "El ganado estaba dentro del cercado.", + "example_sentence_english": "The cattle were inside the enclosure.", + "pos": "noun", + "word_frequency": 14331 + }, + { + "word": "chupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chupe (Andean soup;stew)", + "example_sentence_native": "El chupe de camarones es un plato típico peruano.", + "example_sentence_english": "Shrimp chupe is a typical Peruvian dish.", + "pos": "noun", + "word_frequency": 14332 + }, + { + "word": "coexistencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coexistence", + "example_sentence_native": "La coexistencia pacífica es esencial para la armonía.", + "example_sentence_english": "Peaceful coexistence is essential for harmony.", + "pos": "noun", + "word_frequency": 14334 + }, + { + "word": "colecta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection;fundraiser", + "example_sentence_native": "Hicimos una colecta para ayudar a la familia.", + "example_sentence_english": "We made a collection to help the family.", + "pos": "noun", + "word_frequency": 14336 + }, + { + "word": "colmillo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fang;canine tooth", + "example_sentence_native": "El vampiro mostró sus afilados colmillos.", + "example_sentence_english": "The vampire showed his sharp fangs.", + "pos": "noun", + "word_frequency": 14337 + }, + { + "word": "comunero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commoner;comunero", + "example_sentence_native": "Los comuneros defendieron sus derechos.", + "example_sentence_english": "The commoners defended their rights.", + "pos": "noun", + "word_frequency": 14339 + }, + { + "word": "conciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscious;aware", + "example_sentence_native": "Era conciente de los riesgos.", + "example_sentence_english": "He was conscious of the risks.", + "pos": "adjective", + "word_frequency": 14341 + }, + { + "word": "cuerdo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sane;sensible", + "example_sentence_native": "A pesar de la presión, se mantuvo cuerdo.", + "example_sentence_english": "Despite the pressure, he remained sane.", + "pos": "adjective", + "word_frequency": 14343 + }, + { + "word": "curador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curator;healer", + "example_sentence_native": "El curador del museo explicó la exposición.", + "example_sentence_english": "The museum curator explained the exhibition.", + "pos": "noun", + "word_frequency": 14344 + }, + { + "word": "daga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dagger", + "example_sentence_native": "Llevaba una daga oculta bajo su capa.", + "example_sentence_english": "He carried a dagger hidden under his cloak.", + "pos": "noun", + "word_frequency": 14345 + }, + { + "word": "decorativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorative", + "example_sentence_native": "Compró un jarrón puramente decorativo.", + "example_sentence_english": "She bought a purely decorative vase.", + "pos": "adjective", + "word_frequency": 14348 + }, + { + "word": "degenerado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degenerate;depraved", + "example_sentence_native": "Su comportamiento fue considerado degenerado.", + "example_sentence_english": "His behavior was considered degenerate.", + "pos": "adjective", + "word_frequency": 14349 + }, + { + "word": "dejado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neglected;sloppy", + "example_sentence_native": "La casa parecía muy dejada.", + "example_sentence_english": "The house looked very neglected.", + "pos": "adjective", + "word_frequency": 14350 + }, + { + "word": "delimitación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delimitation;demarcation", + "example_sentence_native": "Se necesita una clara delimitación de las fronteras.", + "example_sentence_english": "A clear delimitation of the borders is needed.", + "pos": "noun", + "word_frequency": 14351 + }, + { + "word": "depreciación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depreciation", + "example_sentence_native": "La depreciación del coche es inevitable.", + "example_sentence_english": "Car depreciation is inevitable.", + "pos": "noun", + "word_frequency": 14352 + }, + { + "word": "desamparado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helpless;abandoned", + "example_sentence_native": "Se sentía completamente desamparado.", + "example_sentence_english": "He felt completely helpless.", + "pos": "adjective", + "word_frequency": 14353 + }, + { + "word": "desarmado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unarmed;disarmed", + "example_sentence_native": "El ladrón fue encontrado desarmado.", + "example_sentence_english": "The thief was found unarmed.", + "pos": "adjective", + "word_frequency": 14354 + }, + { + "word": "dupla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duo;pair", + "example_sentence_native": "La dupla de atacantes fue imparable.", + "example_sentence_english": "The attacking duo was unstoppable.", + "pos": "noun", + "word_frequency": 14357 + }, + { + "word": "eminencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eminence", + "example_sentence_native": "Es una eminencia en su campo.", + "example_sentence_english": "He is an eminence in his field.", + "pos": "noun", + "word_frequency": 14363 + }, + { + "word": "enmendar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to amend", + "example_sentence_native": "Debemos enmendar nuestros errores.", + "example_sentence_english": "We must amend our mistakes.", + "pos": "verb", + "word_frequency": 14365 + }, + { + "word": "enseña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ensign", + "example_sentence_native": "La enseña nacional ondeaba al viento.", + "example_sentence_english": "The national ensign waved in the wind.", + "pos": "noun", + "word_frequency": 14366 + }, + { + "word": "enérgico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energetic", + "example_sentence_native": "Dio una respuesta muy enérgica.", + "example_sentence_english": "He gave a very energetic response.", + "pos": "adjective", + "word_frequency": 14367 + }, + { + "word": "errado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistaken", + "example_sentence_native": "Su cálculo estaba errado.", + "example_sentence_english": "His calculation was mistaken.", + "pos": "adjective", + "word_frequency": 14368 + }, + { + "word": "estaño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tin", + "example_sentence_native": "El estaño se usa para soldar.", + "example_sentence_english": "Tin is used for soldering.", + "pos": "noun", + "word_frequency": 14370 + }, + { + "word": "estresado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stressed", + "example_sentence_native": "Me siento muy estresado por el trabajo.", + "example_sentence_english": "I feel very stressed by work.", + "pos": "adjective", + "word_frequency": 14371 + }, + { + "word": "estéreo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stereo", + "example_sentence_native": "Escuchamos música en el estéreo.", + "example_sentence_english": "We listened to music on the stereo.", + "pos": "noun", + "word_frequency": 14372 + }, + { + "word": "fetal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetal", + "example_sentence_native": "Se realizó un estudio del desarrollo fetal.", + "example_sentence_english": "A study of fetal development was conducted.", + "pos": "adjective", + "word_frequency": 14373 + }, + { + "word": "frenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "braked", + "example_sentence_native": "El vehículo estaba frenado en la curva.", + "example_sentence_english": "The vehicle was braked on the curve.", + "pos": "adjective", + "word_frequency": 14375 + }, + { + "word": "fusilamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution by firing squad", + "example_sentence_native": "El fusilamiento fue un acto brutal.", + "example_sentence_english": "The execution by firing squad was a brutal act.", + "pos": "noun", + "word_frequency": 14378 + }, + { + "word": "galápago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tortoise", + "example_sentence_native": "Las Islas Galápagos son famosas por sus tortugas gigantes.", + "example_sentence_english": "The Galapagos Islands are famous for their giant tortoises.", + "pos": "noun", + "word_frequency": 14379 + }, + { + "word": "gentuza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rabble", + "example_sentence_native": "Esa gentuza solo causa problemas.", + "example_sentence_english": "That rabble only causes problems.", + "pos": "noun", + "word_frequency": 14381 + }, + { + "word": "germen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "germ", + "example_sentence_native": "Lávate las manos para eliminar los gérmenes.", + "example_sentence_english": "Wash your hands to eliminate germs.", + "pos": "noun", + "word_frequency": 14382 + }, + { + "word": "humedal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wetland", + "example_sentence_native": "Los humedales son importantes para la biodiversidad.", + "example_sentence_english": "Wetlands are important for biodiversity.", + "pos": "noun", + "word_frequency": 14386 + }, + { + "word": "impugnar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to challenge", + "example_sentence_native": "Decidieron impugnar la decisión.", + "example_sentence_english": "They decided to challenge the decision.", + "pos": "verb", + "word_frequency": 14388 + }, + { + "word": "inclinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inclined", + "example_sentence_native": "La torre está ligeramente inclinada.", + "example_sentence_english": "The tower is slightly inclined.", + "pos": "adjective", + "word_frequency": 14389 + }, + { + "word": "incredulidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disbelief", + "example_sentence_native": "Su reacción fue de total incredulidad.", + "example_sentence_english": "His reaction was one of total disbelief.", + "pos": "noun", + "word_frequency": 14390 + }, + { + "word": "indefenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defenseless", + "example_sentence_native": "Se sentía completamente indefenso.", + "example_sentence_english": "He felt completely defenseless.", + "pos": "adjective", + "word_frequency": 14391 + }, + { + "word": "indigente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destitute person", + "example_sentence_native": "Ayudaron a los indigentes de la ciudad.", + "example_sentence_english": "They helped the destitute people of the city.", + "pos": "noun", + "word_frequency": 14392 + }, + { + "word": "ineficiencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inefficiency", + "example_sentence_native": "La ineficiencia del sistema es evidente.", + "example_sentence_english": "The inefficiency of the system is evident.", + "pos": "noun", + "word_frequency": 14393 + }, + { + "word": "inmaduro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immature", + "example_sentence_native": "Su comportamiento es muy inmaduro.", + "example_sentence_english": "His behavior is very immature.", + "pos": "adjective", + "word_frequency": 14394 + }, + { + "word": "inmerso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immersed", + "example_sentence_native": "Estaba inmerso en sus pensamientos.", + "example_sentence_english": "He was immersed in his thoughts.", + "pos": "adjective", + "word_frequency": 14395 + }, + { + "word": "intemperie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outdoors", + "example_sentence_native": "Pasaron la noche a la intemperie.", + "example_sentence_english": "They spent the night outdoors.", + "pos": "noun", + "word_frequency": 14396 + }, + { + "word": "inversion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "investment", + "example_sentence_native": "Hizo una gran inversión en la empresa.", + "example_sentence_english": "He made a large investment in the company.", + "pos": "noun", + "word_frequency": 14397 + }, + { + "word": "israelita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Israelite", + "example_sentence_native": "Los israelitas celebran muchas festividades.", + "example_sentence_english": "The Israelites celebrate many festivities.", + "pos": "noun", + "word_frequency": 14399 + }, + { + "word": "jeque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheikh", + "example_sentence_native": "El jeque árabe visitó la ciudad.", + "example_sentence_english": "The Arab sheikh visited the city.", + "pos": "noun", + "word_frequency": 14402 + }, + { + "word": "jeta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snout;face (slang)", + "example_sentence_native": "¡Cierra la jeta!", + "example_sentence_english": "Shut your trap!", + "pos": "noun", + "word_frequency": 14403 + }, + { + "word": "judaísmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Judaism", + "example_sentence_native": "El judaísmo es una religión monoteísta.", + "example_sentence_english": "Judaism is a monotheistic religion.", + "pos": "noun", + "word_frequency": 14405 + }, + { + "word": "largar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let go;to release", + "example_sentence_native": "El marinero largó las amarras.", + "example_sentence_english": "The sailor let go of the moorings.", + "pos": "verb", + "word_frequency": 14412 + }, + { + "word": "malecón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boardwalk;pier;seawall", + "example_sentence_native": "Caminamos por el malecón al atardecer.", + "example_sentence_english": "We walked along the boardwalk at sunset.", + "pos": "noun", + "word_frequency": 14413 + }, + { + "word": "mba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "MBA (Master of Business Administration)", + "example_sentence_native": "Obtuvo su MBA en una prestigiosa universidad.", + "example_sentence_english": "He obtained his MBA from a prestigious university.", + "pos": "noun", + "word_frequency": 14417 + }, + { + "word": "mica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mica;plastic sheet", + "example_sentence_native": "La mica es un mineral con propiedades aislantes.", + "example_sentence_english": "Mica is a mineral with insulating properties.", + "pos": "noun", + "word_frequency": 14419 + }, + { + "word": "migrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to migrate", + "example_sentence_native": "Muchas aves migran hacia el sur en invierno.", + "example_sentence_english": "Many birds migrate south in winter.", + "pos": "verb", + "word_frequency": 14421 + }, + { + "word": "minúsculo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minuscule;tiny", + "example_sentence_native": "Encontró un error minúsculo en el código.", + "example_sentence_english": "He found a minuscule error in the code.", + "pos": "adjective", + "word_frequency": 14422 + }, + { + "word": "molido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ground;crushed;exhausted", + "example_sentence_native": "El café molido tiene un aroma intenso.", + "example_sentence_english": "Ground coffee has an intense aroma.", + "pos": "adjective", + "word_frequency": 14423 + }, + { + "word": "navegante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navigator;sailor", + "example_sentence_native": "El navegante usó las estrellas para orientarse.", + "example_sentence_english": "The navigator used the stars to orient himself.", + "pos": "noun", + "word_frequency": 14427 + }, + { + "word": "negociador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiator", + "example_sentence_native": "Es un negociador muy hábil y logró un buen acuerdo.", + "example_sentence_english": "He is a very skilled negotiator and achieved a good agreement.", + "pos": "noun", + "word_frequency": 14428 + }, + { + "word": "normalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to normalize;to standardize", + "example_sentence_native": "Es importante normalizar la situación lo antes posible.", + "example_sentence_english": "It's important to normalize the situation as soon as possible.", + "pos": "verb", + "word_frequency": 14431 + }, + { + "word": "norteño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northern;from the north", + "example_sentence_native": "La música norteña es muy popular en México.", + "example_sentence_english": "Northern music is very popular in Mexico.", + "pos": "adjective", + "word_frequency": 14432 + }, + { + "word": "noviazgo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engagement;courtship;relationship", + "example_sentence_native": "Su noviazgo duró dos años antes de casarse.", + "example_sentence_english": "Their courtship lasted two years before they got married.", + "pos": "noun", + "word_frequency": 14434 + }, + { + "word": "odioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hateful;odious;obnoxious", + "example_sentence_native": "Su comportamiento fue realmente odioso.", + "example_sentence_english": "His behavior was truly obnoxious.", + "pos": "adjective", + "word_frequency": 14437 + }, + { + "word": "okey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "okay;alright", + "example_sentence_native": "Okey, nos vemos mañana.", + "example_sentence_english": "Okay, see you tomorrow.", + "pos": "interjection", + "word_frequency": 14438 + }, + { + "word": "omg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "OMG (Oh My God)", + "example_sentence_native": "OMG, ¡no puedo creerlo!", + "example_sentence_english": "OMG, I can't believe it!", + "pos": "interjection", + "word_frequency": 14439 + }, + { + "word": "opresor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppressor", + "example_sentence_native": "El opresor fue derrocado por el pueblo.", + "example_sentence_english": "The oppressor was overthrown by the people.", + "pos": "noun", + "word_frequency": 14440 + }, + { + "word": "orbe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orb", + "example_sentence_native": "El orbe terrestre gira alrededor del sol.", + "example_sentence_english": "The terrestrial orb revolves around the sun.", + "pos": "noun", + "word_frequency": 14441 + }, + { + "word": "pediatría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pediatrics", + "example_sentence_native": "Estudió pediatría en la universidad.", + "example_sentence_english": "She studied pediatrics at the university.", + "pos": "noun", + "word_frequency": 14445 + }, + { + "word": "pedófilo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedophile", + "example_sentence_native": "La policía arrestó al pedófilo.", + "example_sentence_english": "The police arrested the pedophile.", + "pos": "noun", + "word_frequency": 14446 + }, + { + "word": "pelirrojo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "red-haired", + "example_sentence_native": "Mi amigo es pelirrojo.", + "example_sentence_english": "My friend is red-haired.", + "pos": "adjective", + "word_frequency": 14447 + }, + { + "word": "perezoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lazy", + "example_sentence_native": "Es demasiado perezoso para levantarse temprano.", + "example_sentence_english": "He is too lazy to get up early.", + "pos": "adjective", + "word_frequency": 14449 + }, + { + "word": "perpetrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perpetrate", + "example_sentence_native": "La banda perpetró un robo.", + "example_sentence_english": "The gang perpetrated a robbery.", + "pos": "verb", + "word_frequency": 14450 + }, + { + "word": "placebo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placebo", + "example_sentence_native": "Le dieron un placebo en el estudio.", + "example_sentence_english": "They gave him a placebo in the study.", + "pos": "noun", + "word_frequency": 14452 + }, + { + "word": "preceder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to precede", + "example_sentence_native": "La tormenta precedió a la calma.", + "example_sentence_english": "The storm preceded the calm.", + "pos": "verb", + "word_frequency": 14455 + }, + { + "word": "preludio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prelude", + "example_sentence_native": "El silencio fue el preludio de la tragedia.", + "example_sentence_english": "The silence was the prelude to the tragedy.", + "pos": "noun", + "word_frequency": 14456 + }, + { + "word": "prodigio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prodigy", + "example_sentence_native": "El niño es un prodigio musical.", + "example_sentence_english": "The child is a musical prodigy.", + "pos": "noun", + "word_frequency": 14457 + }, + { + "word": "propenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prone", + "example_sentence_native": "Es propenso a los resfriados.", + "example_sentence_english": "He is prone to colds.", + "pos": "adjective", + "word_frequency": 14458 + }, + { + "word": "proporcionalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportionality", + "example_sentence_native": "La ley busca la proporcionalidad en las penas.", + "example_sentence_english": "The law seeks proportionality in sentences.", + "pos": "noun", + "word_frequency": 14459 + }, + { + "word": "reformado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reformed", + "example_sentence_native": "El edificio fue reformado el año pasado.", + "example_sentence_english": "The building was reformed last year.", + "pos": "adjective", + "word_frequency": 14464 + }, + { + "word": "reinicio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restart", + "example_sentence_native": "Necesito un reinicio del sistema.", + "example_sentence_english": "I need a system restart.", + "pos": "noun", + "word_frequency": 14465 + }, + { + "word": "remar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to row", + "example_sentence_native": "Vamos a remar en el lago.", + "example_sentence_english": "We are going to row on the lake.", + "pos": "verb", + "word_frequency": 14466 + }, + { + "word": "reno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reindeer", + "example_sentence_native": "Los renos tiran del trineo de Papá Noel.", + "example_sentence_english": "Reindeer pull Santa Claus's sleigh.", + "pos": "noun", + "word_frequency": 14467 + }, + { + "word": "renovador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renovator", + "example_sentence_native": "Es un renovador de ideas.", + "example_sentence_english": "He is a renovator of ideas.", + "pos": "noun", + "word_frequency": 14468 + }, + { + "word": "ruda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rue (herb)", + "example_sentence_native": "La ruda es una planta medicinal.", + "example_sentence_english": "Rue is a medicinal plant.", + "pos": "noun", + "word_frequency": 14471 + }, + { + "word": "rumba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rumba", + "example_sentence_native": "Bailamos rumba toda la noche.", + "example_sentence_english": "We danced rumba all night.", + "pos": "noun", + "word_frequency": 14472 + }, + { + "word": "sha", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Shah", + "example_sentence_native": "El sha de Irán fue derrocado.", + "example_sentence_english": "The Shah of Iran was overthrown.", + "pos": "noun", + "word_frequency": 14477 + }, + { + "word": "shot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shot (drink;photo;injection)", + "example_sentence_native": "Me tomé un shot de tequila.", + "example_sentence_english": "I had a shot of tequila.", + "pos": "noun", + "word_frequency": 14478 + }, + { + "word": "smash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smash (hit;success)", + "example_sentence_native": "Fue un smash en taquilla.", + "example_sentence_english": "It was a box office smash.", + "pos": "noun", + "word_frequency": 14479 + }, + { + "word": "subjetividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subjectivity", + "example_sentence_native": "La subjetividad es inherente a la percepción humana.", + "example_sentence_english": "Subjectivity is inherent in human perception.", + "pos": "noun", + "word_frequency": 14483 + }, + { + "word": "séquito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entourage", + "example_sentence_native": "El artista llegó con su séquito de asistentes.", + "example_sentence_english": "The artist arrived with his entourage of assistants.", + "pos": "noun", + "word_frequency": 14484 + }, + { + "word": "sílaba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syllable", + "example_sentence_native": "La palabra 'casa' tiene dos sílabas.", + "example_sentence_english": "The word 'casa' has two syllables.", + "pos": "noun", + "word_frequency": 14485 + }, + { + "word": "súbito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden", + "example_sentence_native": "Hubo un cambio súbito en el clima.", + "example_sentence_english": "There was a sudden change in the weather.", + "pos": "adjective", + "word_frequency": 14486 + }, + { + "word": "tailandés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai", + "example_sentence_native": "La comida tailandesa es muy picante.", + "example_sentence_english": "Thai food is very spicy.", + "pos": "adjective", + "word_frequency": 14487 + }, + { + "word": "tapado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered", + "example_sentence_native": "El pozo estaba tapado con una tabla.", + "example_sentence_english": "The well was covered with a board.", + "pos": "adjective", + "word_frequency": 14489 + }, + { + "word": "templario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Templar", + "example_sentence_native": "Los caballeros templarios eran una orden militar.", + "example_sentence_english": "The Templar knights were a military order.", + "pos": "noun", + "word_frequency": 14491 + }, + { + "word": "tez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complexion", + "example_sentence_native": "Tenía una tez muy clara.", + "example_sentence_english": "She had a very fair complexion.", + "pos": "noun", + "word_frequency": 14494 + }, + { + "word": "tico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Costa Rican (informal)", + "example_sentence_native": "Los ticos son conocidos por su amabilidad.", + "example_sentence_english": "Costa Ricans are known for their kindness.", + "pos": "noun", + "word_frequency": 14496 + }, + { + "word": "transeúnte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passerby", + "example_sentence_native": "Un transeúnte encontró la cartera perdida.", + "example_sentence_english": "A passerby found the lost wallet.", + "pos": "noun", + "word_frequency": 14498 + }, + { + "word": "transmisor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmitter", + "example_sentence_native": "El transmisor de radio estaba averiado.", + "example_sentence_english": "The radio transmitter was broken.", + "pos": "noun", + "word_frequency": 14499 + }, + { + "word": "travesti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transvestite", + "example_sentence_native": "La comunidad LGTBIQ+ incluye a personas travestis.", + "example_sentence_english": "The LGTBIQ+ community includes transvestite people.", + "pos": "noun", + "word_frequency": 14500 + }, + { + "word": "travesura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mischief", + "example_sentence_native": "Los niños hicieron una travesura en el jardín.", + "example_sentence_english": "The children played a prank in the garden.", + "pos": "noun", + "word_frequency": 14501 + }, + { + "word": "trenza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "braid", + "example_sentence_native": "Se hizo una trenza larga en el pelo.", + "example_sentence_english": "She made a long braid in her hair.", + "pos": "noun", + "word_frequency": 14502 + }, + { + "word": "variabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variability", + "example_sentence_native": "La variabilidad climática es un desafío global.", + "example_sentence_english": "Climate variability is a global challenge.", + "pos": "noun", + "word_frequency": 14505 + }, + { + "word": "veneración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veneration", + "example_sentence_native": "Sentía una profunda veneración por sus ancestros.", + "example_sentence_english": "He felt a deep veneration for his ancestors.", + "pos": "noun", + "word_frequency": 14506 + }, + { + "word": "verbalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verbally", + "example_sentence_native": "Confirmó su asistencia verbalmente.", + "example_sentence_english": "He confirmed his attendance verbally.", + "pos": "adverb", + "word_frequency": 14507 + }, + { + "word": "verificado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verified", + "example_sentence_native": "La cuenta de usuario ha sido verificada.", + "example_sentence_english": "The user account has been verified.", + "pos": "adjective", + "word_frequency": 14508 + }, + { + "word": "victoriano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Victorian", + "example_sentence_native": "La arquitectura victoriana es muy ornamentada.", + "example_sentence_english": "Victorian architecture is very ornate.", + "pos": "adjective", + "word_frequency": 14510 + }, + { + "word": "vuelco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overturn", + "example_sentence_native": "La noticia dio un vuelco inesperado a la situación.", + "example_sentence_english": "The news gave an unexpected turn to the situation.", + "pos": "noun", + "word_frequency": 14514 + }, + { + "word": "acogedor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cozy", + "example_sentence_native": "La casa tiene un ambiente muy acogedor.", + "example_sentence_english": "The house has a very cozy atmosphere.", + "pos": "adjective", + "word_frequency": 14522 + }, + { + "word": "aconsejable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advisable", + "example_sentence_native": "Es aconsejable beber mucha agua.", + "example_sentence_english": "It is advisable to drink a lot of water.", + "pos": "adjective", + "word_frequency": 14523 + }, + { + "word": "amargado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embittered", + "example_sentence_native": "Después de la derrota, se sentía muy amargado.", + "example_sentence_english": "After the defeat, he felt very embittered.", + "pos": "adjective", + "word_frequency": 14526 + }, + { + "word": "ampolla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blister", + "example_sentence_native": "Me salió una ampolla en el pie por los zapatos nuevos.", + "example_sentence_english": "I got a blister on my foot from the new shoes.", + "pos": "noun", + "word_frequency": 14527 + }, + { + "word": "antídoto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antidote", + "example_sentence_native": "Necesitamos encontrar el antídoto rápidamente.", + "example_sentence_english": "We need to find the antidote quickly.", + "pos": "noun", + "word_frequency": 14528 + }, + { + "word": "aperitivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appetizer", + "example_sentence_native": "Vamos a tomar un aperitivo antes de la cena.", + "example_sentence_english": "Let's have an appetizer before dinner.", + "pos": "noun", + "word_frequency": 14529 + }, + { + "word": "arabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arab", + "example_sentence_native": "Aprendió a hablar árabe en la universidad.", + "example_sentence_english": "He learned to speak Arabic at university.", + "pos": "noun", + "word_frequency": 14530 + }, + { + "word": "autobus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "example_sentence_native": "Tomamos el autobus para ir al centro.", + "example_sentence_english": "We took the bus to go downtown.", + "pos": "noun", + "word_frequency": 14532 + }, + { + "word": "automotor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motor vehicle", + "example_sentence_native": "La industria automotor es muy importante en este país.", + "example_sentence_english": "The motor vehicle industry is very important in this country.", + "pos": "noun", + "word_frequency": 14533 + }, + { + "word": "automovilístico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automotive", + "example_sentence_native": "El sector automovilístico está en crecimiento.", + "example_sentence_english": "The automotive sector is growing.", + "pos": "adjective", + "word_frequency": 14534 + }, + { + "word": "axila", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armpit", + "example_sentence_native": "Me duele la axila.", + "example_sentence_english": "My armpit hurts.", + "pos": "noun", + "word_frequency": 14535 + }, + { + "word": "baldosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tile", + "example_sentence_native": "Se rompió una baldosa en el baño.", + "example_sentence_english": "A tile broke in the bathroom.", + "pos": "noun", + "word_frequency": 14536 + }, + { + "word": "barraca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shack", + "example_sentence_native": "Vivían en una pequeña barraca cerca del río.", + "example_sentence_english": "They lived in a small shack near the river.", + "pos": "noun", + "word_frequency": 14537 + }, + { + "word": "baza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trump card", + "example_sentence_native": "Su experiencia es una baza importante en esta negociación.", + "example_sentence_english": "His experience is an important trump card in this negotiation.", + "pos": "noun", + "word_frequency": 14538 + }, + { + "word": "binario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binary", + "example_sentence_native": "Las computadoras usan un sistema binario.", + "example_sentence_english": "Computers use a binary system.", + "pos": "noun", + "word_frequency": 14540 + }, + { + "word": "bisabuelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great-grandfather", + "example_sentence_native": "Mi bisabuelo vivió hasta los cien años.", + "example_sentence_english": "My great-grandfather lived to be a hundred years old.", + "pos": "noun", + "word_frequency": 14541 + }, + { + "word": "bizcocho", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sponge cake", + "example_sentence_native": "Hicimos un bizcocho de chocolate para el postre.", + "example_sentence_english": "We made a chocolate sponge cake for dessert.", + "pos": "noun", + "word_frequency": 14542 + }, + { + "word": "borrachera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkenness", + "example_sentence_native": "Tuvo una gran borrachera anoche.", + "example_sentence_english": "He had a big drunkenness last night.", + "pos": "noun", + "word_frequency": 14543 + }, + { + "word": "burocrático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucratic", + "example_sentence_native": "El proceso es demasiado burocrático.", + "example_sentence_english": "The process is too bureaucratic.", + "pos": "adjective", + "word_frequency": 14546 + }, + { + "word": "carrocería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "car body", + "example_sentence_native": "La carrocería del coche está dañada.", + "example_sentence_english": "The car body is damaged.", + "pos": "noun", + "word_frequency": 14549 + }, + { + "word": "catarina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ladybug", + "example_sentence_native": "Una catarina se posó en mi mano.", + "example_sentence_english": "A ladybug landed on my hand.", + "pos": "noun", + "word_frequency": 14550 + }, + { + "word": "caviar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caviar", + "example_sentence_native": "Sirvieron caviar en la fiesta.", + "example_sentence_english": "They served caviar at the party.", + "pos": "noun", + "word_frequency": 14551 + }, + { + "word": "cochera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garage", + "example_sentence_native": "El coche está en la cochera.", + "example_sentence_english": "The car is in the garage.", + "pos": "noun", + "word_frequency": 14554 + }, + { + "word": "colado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strained", + "example_sentence_native": "El café está bien colado.", + "example_sentence_english": "The coffee is well strained.", + "pos": "adjective", + "word_frequency": 14555 + }, + { + "word": "comprobante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "receipt", + "example_sentence_native": "Guarda el comprobante de pago.", + "example_sentence_english": "Keep the payment receipt.", + "pos": "noun", + "word_frequency": 14556 + }, + { + "word": "condicionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conditioned", + "example_sentence_native": "Su respuesta está condicionada por sus experiencias pasadas.", + "example_sentence_english": "His response is conditioned by his past experiences.", + "pos": "adjective", + "word_frequency": 14558 + }, + { + "word": "condominio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condominium", + "example_sentence_native": "Compramos un apartamento en un condominio nuevo.", + "example_sentence_english": "We bought an apartment in a new condominium.", + "pos": "noun", + "word_frequency": 14559 + }, + { + "word": "congelador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freezer", + "example_sentence_native": "Guarda la carne en el congelador.", + "example_sentence_english": "Store the meat in the freezer.", + "pos": "noun", + "word_frequency": 14560 + }, + { + "word": "conspirador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspirator", + "example_sentence_native": "El conspirador fue descubierto antes de ejecutar su plan.", + "example_sentence_english": "The conspirator was discovered before executing his plan.", + "pos": "noun", + "word_frequency": 14562 + }, + { + "word": "consular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consular", + "example_sentence_native": "Necesitas una visa consular para entrar al país.", + "example_sentence_english": "You need a consular visa to enter the country.", + "pos": "adjective", + "word_frequency": 14563 + }, + { + "word": "consumado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consummate;accomplished", + "example_sentence_native": "Es un artista consumado en su campo.", + "example_sentence_english": "He is a consummate artist in his field.", + "pos": "adjective", + "word_frequency": 14564 + }, + { + "word": "coyote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coyote", + "example_sentence_native": "El coyote aulló a la luna.", + "example_sentence_english": "The coyote howled at the moon.", + "pos": "noun", + "word_frequency": 14565 + }, + { + "word": "cúspide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cusp;peak;apex", + "example_sentence_native": "Alcanzó la cúspide de su carrera.", + "example_sentence_english": "He reached the peak of his career.", + "pos": "noun", + "word_frequency": 14568 + }, + { + "word": "deceso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demise;death", + "example_sentence_native": "Lamentamos el deceso de su abuelo.", + "example_sentence_english": "We regret the demise of his grandfather.", + "pos": "noun", + "word_frequency": 14570 + }, + { + "word": "dedicatoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dedication;inscription", + "example_sentence_native": "El libro tenía una dedicatoria especial.", + "example_sentence_english": "The book had a special dedication.", + "pos": "noun", + "word_frequency": 14571 + }, + { + "word": "dehesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pastureland;meadow", + "example_sentence_native": "Las dehesas son características del paisaje español.", + "example_sentence_english": "Dehesas are characteristic of the Spanish landscape.", + "pos": "noun", + "word_frequency": 14572 + }, + { + "word": "desconcertante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disconcerting;unsettling", + "example_sentence_native": "Su actitud fue bastante desconcertante.", + "example_sentence_english": "His attitude was quite disconcerting.", + "pos": "adjective", + "word_frequency": 14575 + }, + { + "word": "desconexión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disconnection", + "example_sentence_native": "Hubo una desconexión en la red.", + "example_sentence_english": "There was a disconnection in the network.", + "pos": "noun", + "word_frequency": 14576 + }, + { + "word": "desembocar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flow into;to lead to", + "example_sentence_native": "El río desemboca en el mar.", + "example_sentence_english": "The river flows into the sea.", + "pos": "verb", + "word_frequency": 14577 + }, + { + "word": "despiadado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ruthless;merciless", + "example_sentence_native": "Fue una crítica despiadada.", + "example_sentence_english": "It was a ruthless critique.", + "pos": "adjective", + "word_frequency": 14578 + }, + { + "word": "diagnosticar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diagnose", + "example_sentence_native": "El médico pudo diagnosticar la enfermedad.", + "example_sentence_english": "The doctor was able to diagnose the illness.", + "pos": "verb", + "word_frequency": 14579 + }, + { + "word": "dichoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happy;fortunate;blessed", + "example_sentence_native": "Se sentía dichoso de estar allí.", + "example_sentence_english": "He felt fortunate to be there.", + "pos": "adjective", + "word_frequency": 14580 + }, + { + "word": "dignamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with dignity;worthily", + "example_sentence_native": "Aceptó la derrota dignamente.", + "example_sentence_english": "He accepted defeat with dignity.", + "pos": "adverb", + "word_frequency": 14581 + }, + { + "word": "distanciamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distancing;estrangement", + "example_sentence_native": "Mantén el distanciamiento social.", + "example_sentence_english": "Maintain social distancing.", + "pos": "noun", + "word_frequency": 14582 + }, + { + "word": "drástico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drastic", + "example_sentence_native": "Se necesitan medidas drásticas.", + "example_sentence_english": "Drastic measures are needed.", + "pos": "adjective", + "word_frequency": 14585 + }, + { + "word": "eficientemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficiently", + "example_sentence_native": "Trabaja eficientemente para terminar a tiempo.", + "example_sentence_english": "He works efficiently to finish on time.", + "pos": "adverb", + "word_frequency": 14587 + }, + { + "word": "enumerar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enumerate;to list", + "example_sentence_native": "Por favor, enumera los puntos principales.", + "example_sentence_english": "Please enumerate the main points.", + "pos": "verb", + "word_frequency": 14591 + }, + { + "word": "erotismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eroticism", + "example_sentence_native": "La película exploraba el erotismo de una manera sutil.", + "example_sentence_english": "The film explored eroticism in a subtle way.", + "pos": "noun", + "word_frequency": 14592 + }, + { + "word": "escénico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scenic;theatrical", + "example_sentence_native": "El diseño escénico fue impresionante.", + "example_sentence_english": "The scenic design was impressive.", + "pos": "adjective", + "word_frequency": 14593 + }, + { + "word": "espinar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prick with thorns;to make thorny", + "example_sentence_native": "Las rosas pueden espinar si no tienes cuidado.", + "example_sentence_english": "Roses can prick you if you're not careful.", + "pos": "verb", + "word_frequency": 14594 + }, + { + "word": "estancado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stagnant;stuck", + "example_sentence_native": "El agua del estanque estaba estancada.", + "example_sentence_english": "The pond water was stagnant.", + "pos": "adjective", + "word_frequency": 14595 + }, + { + "word": "estrellado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starry", + "example_sentence_native": "Admiramos el cielo estrellado.", + "example_sentence_english": "We admired the starry sky.", + "pos": "adjective", + "word_frequency": 14596 + }, + { + "word": "estrofa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stanza;verse", + "example_sentence_native": "La canción tiene tres estrofas.", + "example_sentence_english": "The song has three stanzas.", + "pos": "noun", + "word_frequency": 14597 + }, + { + "word": "evangelista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evangelist", + "example_sentence_native": "El evangelista predicó en la plaza.", + "example_sentence_english": "The evangelist preached in the square.", + "pos": "noun", + "word_frequency": 14598 + }, + { + "word": "feligrés", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parishioner", + "example_sentence_native": "El feligrés asistió a la misa dominical.", + "example_sentence_english": "The parishioner attended Sunday mass.", + "pos": "noun", + "word_frequency": 14600 + }, + { + "word": "fiasco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiasco", + "example_sentence_native": "La fiesta fue un completo fiasco.", + "example_sentence_english": "The party was a complete fiasco.", + "pos": "noun", + "word_frequency": 14603 + }, + { + "word": "flojera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laziness", + "example_sentence_native": "Me dio mucha flojera levantarme temprano.", + "example_sentence_english": "I felt very lazy getting up early.", + "pos": "noun", + "word_frequency": 14605 + }, + { + "word": "fundo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farm;estate", + "example_sentence_native": "Compraron un fundo grande en el sur.", + "example_sentence_english": "They bought a large estate in the south.", + "pos": "noun", + "word_frequency": 14608 + }, + { + "word": "gallinero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chicken coop", + "example_sentence_native": "Las gallinas están en el gallinero.", + "example_sentence_english": "The chickens are in the chicken coop.", + "pos": "noun", + "word_frequency": 14609 + }, + { + "word": "gentileza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kindness;courtesy", + "example_sentence_native": "Agradezco su gentileza.", + "example_sentence_english": "I appreciate your kindness.", + "pos": "noun", + "word_frequency": 14613 + }, + { + "word": "genuinamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genuinely", + "example_sentence_native": "Él se disculpó genuinamente por su error.", + "example_sentence_english": "He genuinely apologized for his mistake.", + "pos": "adverb", + "word_frequency": 14614 + }, + { + "word": "graffiti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graffiti", + "example_sentence_native": "Hay mucho graffiti en las paredes de la ciudad.", + "example_sentence_english": "There is a lot of graffiti on the city walls.", + "pos": "noun", + "word_frequency": 14615 + }, + { + "word": "gringa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female foreigner (informal;often American)", + "example_sentence_native": "La gringa estaba aprendiendo español muy rápido.", + "example_sentence_english": "The American woman was learning Spanish very quickly.", + "pos": "noun", + "word_frequency": 14616 + }, + { + "word": "hepático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hepatic;liver-related", + "example_sentence_native": "El médico diagnosticó un problema hepático.", + "example_sentence_english": "The doctor diagnosed a hepatic problem.", + "pos": "adjective", + "word_frequency": 14619 + }, + { + "word": "herradura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horseshoe", + "example_sentence_native": "Encontró una herradura vieja en el camino.", + "example_sentence_english": "He found an old horseshoe on the road.", + "pos": "noun", + "word_frequency": 14620 + }, + { + "word": "idoneidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suitability;appropriateness", + "example_sentence_native": "Se evaluó la idoneidad del candidato para el puesto.", + "example_sentence_english": "The candidate's suitability for the position was evaluated.", + "pos": "noun", + "word_frequency": 14622 + }, + { + "word": "ilusion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hope;excitement;illusion", + "example_sentence_native": "Tengo mucha ilusion por el viaje.", + "example_sentence_english": "I have a lot of excitement for the trip.", + "pos": "noun", + "word_frequency": 14623 + }, + { + "word": "imperante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevailing;dominant", + "example_sentence_native": "La moda imperante en ese momento era muy extravagante.", + "example_sentence_english": "The prevailing fashion at that time was very extravagant.", + "pos": "adjective", + "word_frequency": 14625 + }, + { + "word": "importador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "importer", + "example_sentence_native": "Es un importante importador de productos electrónicos.", + "example_sentence_english": "He is an important importer of electronic products.", + "pos": "noun", + "word_frequency": 14626 + }, + { + "word": "inaccesible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaccessible", + "example_sentence_native": "La cima de la montaña era inaccesible sin equipo especial.", + "example_sentence_english": "The mountain peak was inaccessible without special equipment.", + "pos": "adjective", + "word_frequency": 14628 + }, + { + "word": "inalámbrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wireless", + "example_sentence_native": "Necesito un ratón inalámbrico para mi computadora.", + "example_sentence_english": "I need a wireless mouse for my computer.", + "pos": "adjective", + "word_frequency": 14629 + }, + { + "word": "incendiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set fire to;to ignite", + "example_sentence_native": "El pirómano intentó incendiar el edificio.", + "example_sentence_english": "The arsonist tried to set fire to the building.", + "pos": "verb", + "word_frequency": 14630 + }, + { + "word": "incidir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to affect;to influence", + "example_sentence_native": "Sus palabras pueden incidir en la decisión final.", + "example_sentence_english": "His words can influence the final decision.", + "pos": "verb", + "word_frequency": 14631 + }, + { + "word": "indudable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undoubted;unquestionable", + "example_sentence_native": "Su talento es indudable.", + "example_sentence_english": "His talent is undoubted.", + "pos": "adjective", + "word_frequency": 14632 + }, + { + "word": "ineficaz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ineffective", + "example_sentence_native": "El tratamiento resultó ser ineficaz.", + "example_sentence_english": "The treatment turned out to be ineffective.", + "pos": "adjective", + "word_frequency": 14633 + }, + { + "word": "inexistencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "non-existence", + "example_sentence_native": "La inexistencia de pruebas dificultó el caso.", + "example_sentence_english": "The non-existence of evidence complicated the case.", + "pos": "noun", + "word_frequency": 14634 + }, + { + "word": "influenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influenza;flu", + "example_sentence_native": "La influenza es una enfermedad respiratoria común.", + "example_sentence_english": "Influenza is a common respiratory illness.", + "pos": "noun", + "word_frequency": 14635 + }, + { + "word": "jabalí", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wild boar", + "example_sentence_native": "Vimos un jabalí cruzando el bosque.", + "example_sentence_english": "We saw a wild boar crossing the forest.", + "pos": "noun", + "word_frequency": 14637 + }, + { + "word": "lacra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scourge;blight;defect", + "example_sentence_native": "La corrupción es una lacra en nuestra sociedad.", + "example_sentence_english": "Corruption is a scourge in our society.", + "pos": "noun", + "word_frequency": 14644 + }, + { + "word": "legitimación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimation;authorization", + "example_sentence_native": "Necesitamos la legitimación de los documentos.", + "example_sentence_english": "We need the legitimation of the documents.", + "pos": "noun", + "word_frequency": 14646 + }, + { + "word": "lucrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lucrative;profitable", + "example_sentence_native": "Es un negocio muy lucrativo.", + "example_sentence_english": "It's a very lucrative business.", + "pos": "adjective", + "word_frequency": 14649 + }, + { + "word": "mandado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "errand;chore", + "example_sentence_native": "Voy a hacer unos mandados al supermercado.", + "example_sentence_english": "I'm going to run some errands at the supermarket.", + "pos": "noun", + "word_frequency": 14653 + }, + { + "word": "manutención", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance;upkeep;child support", + "example_sentence_native": "Debe pagar la manutención de sus hijos.", + "example_sentence_english": "He must pay child support for his children.", + "pos": "noun", + "word_frequency": 14655 + }, + { + "word": "materialismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "materialism", + "example_sentence_native": "El materialismo es una filosofía que valora lo material.", + "example_sentence_english": "Materialism is a philosophy that values material things.", + "pos": "noun", + "word_frequency": 14656 + }, + { + "word": "mausoleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mausoleum", + "example_sentence_native": "Visitamos el antiguo mausoleo.", + "example_sentence_english": "We visited the ancient mausoleum.", + "pos": "noun", + "word_frequency": 14657 + }, + { + "word": "melena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mane (of an animal);long hair (of a person)", + "example_sentence_native": "Tiene una melena rubia muy bonita.", + "example_sentence_english": "She has very beautiful blonde long hair.", + "pos": "noun", + "word_frequency": 14658 + }, + { + "word": "mesita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small table;nightstand", + "example_sentence_native": "Puse la lámpara en la mesita de noche.", + "example_sentence_english": "I put the lamp on the nightstand.", + "pos": "noun", + "word_frequency": 14660 + }, + { + "word": "miga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crumb;bit;essence", + "example_sentence_native": "No queda ni una miga de pan.", + "example_sentence_english": "There isn't even a crumb of bread left.", + "pos": "noun", + "word_frequency": 14661 + }, + { + "word": "minar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mine;to undermine;to sap", + "example_sentence_native": "La crítica constante puede minar la confianza.", + "example_sentence_english": "Constant criticism can undermine confidence.", + "pos": "verb", + "word_frequency": 14663 + }, + { + "word": "mojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mojo (sauce);charm;luck", + "example_sentence_native": "El mojo picón es una salsa canaria.", + "example_sentence_english": "Mojo picón is a Canarian sauce.", + "pos": "noun", + "word_frequency": 14664 + }, + { + "word": "momentáneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "momentarily;temporarily", + "example_sentence_native": "La luz se fue momentáneamente.", + "example_sentence_english": "The light went out momentarily.", + "pos": "adverb", + "word_frequency": 14665 + }, + { + "word": "morra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "head (slang);girl (slang;Mexico)", + "example_sentence_native": "¡Qué morra tan chida!", + "example_sentence_english": "What a cool girl!", + "pos": "noun", + "word_frequency": 14666 + }, + { + "word": "níquel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nickel", + "example_sentence_native": "El níquel es un metal resistente.", + "example_sentence_english": "Nickel is a resistant metal.", + "pos": "noun", + "word_frequency": 14669 + }, + { + "word": "organizacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "organizational", + "example_sentence_native": "Necesitamos un cambio organizacional.", + "example_sentence_english": "We need an organizational change.", + "pos": "adjective", + "word_frequency": 14670 + }, + { + "word": "osadía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "daring;audacity;boldness", + "example_sentence_native": "Tuvo la osadía de desafiar al jefe.", + "example_sentence_english": "He had the audacity to challenge the boss.", + "pos": "noun", + "word_frequency": 14671 + }, + { + "word": "penalti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty (kick)", + "example_sentence_native": "El árbitro pitó un penalti.", + "example_sentence_english": "The referee whistled a penalty.", + "pos": "noun", + "word_frequency": 14672 + }, + { + "word": "pobrecita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poor little thing (female)", + "example_sentence_native": "La gatita estaba sola, pobrecita.", + "example_sentence_english": "The little cat was alone, poor little thing.", + "pos": "noun", + "word_frequency": 14676 + }, + { + "word": "presentir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to have a premonition;to sense;to foresee", + "example_sentence_native": "Presentía que algo malo iba a pasar.", + "example_sentence_english": "I had a premonition that something bad was going to happen.", + "pos": "verb", + "word_frequency": 14679 + }, + { + "word": "puntualidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punctuality", + "example_sentence_native": "La puntualidad es clave en el trabajo.", + "example_sentence_english": "Punctuality is key at work.", + "pos": "noun", + "word_frequency": 14680 + }, + { + "word": "purgatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purgatory", + "example_sentence_native": "Según la tradición, las almas van al purgatorio.", + "example_sentence_english": "According to tradition, souls go to purgatory.", + "pos": "noun", + "word_frequency": 14681 + }, + { + "word": "páncreas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pancreas", + "example_sentence_native": "El páncreas produce insulina.", + "example_sentence_english": "The pancreas produces insulin.", + "pos": "noun", + "word_frequency": 14682 + }, + { + "word": "párpado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyelid", + "example_sentence_native": "Se le cerraron los párpados por el sueño.", + "example_sentence_english": "His eyelids closed due to sleep.", + "pos": "noun", + "word_frequency": 14683 + }, + { + "word": "pórtico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portico", + "example_sentence_native": "El pórtico de la iglesia es impresionante.", + "example_sentence_english": "The church's portico is impressive.", + "pos": "noun", + "word_frequency": 14684 + }, + { + "word": "quicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doorjamb;sanity (in idiom)", + "example_sentence_native": "Su actitud me saca de quicio.", + "example_sentence_english": "His attitude drives me crazy.", + "pos": "noun", + "word_frequency": 14685 + }, + { + "word": "ramificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ramification;branching", + "example_sentence_native": "El árbol tiene muchas ramificaciones.", + "example_sentence_english": "The tree has many branches.", + "pos": "noun", + "word_frequency": 14687 + }, + { + "word": "recalcar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emphasize;to stress", + "example_sentence_native": "Quiero recalcar la importancia de la seguridad.", + "example_sentence_english": "I want to emphasize the importance of safety.", + "pos": "verb", + "word_frequency": 14690 + }, + { + "word": "remediar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remedy;to fix", + "example_sentence_native": "Intentaremos remediar la situación.", + "example_sentence_english": "We will try to remedy the situation.", + "pos": "verb", + "word_frequency": 14691 + }, + { + "word": "resorte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spring (mechanical)", + "example_sentence_native": "El colchón tiene muchos resortes.", + "example_sentence_english": "The mattress has many springs.", + "pos": "noun", + "word_frequency": 14693 + }, + { + "word": "revestimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coating;lining;cladding", + "example_sentence_native": "El revestimiento de la pared es de madera.", + "example_sentence_english": "The wall cladding is made of wood.", + "pos": "noun", + "word_frequency": 14694 + }, + { + "word": "rubí", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruby", + "example_sentence_native": "El anillo tiene un rubí precioso.", + "example_sentence_english": "The ring has a precious ruby.", + "pos": "noun", + "word_frequency": 14697 + }, + { + "word": "sacudida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shake;jolt", + "example_sentence_native": "Sentimos una fuerte sacudida durante el terremoto.", + "example_sentence_english": "We felt a strong jolt during the earthquake.", + "pos": "noun", + "word_frequency": 14699 + }, + { + "word": "sesion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "session", + "example_sentence_native": "La sesión de estudio duró dos horas.", + "example_sentence_english": "The study session lasted two hours.", + "pos": "noun", + "word_frequency": 14701 + }, + { + "word": "simulador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulator", + "example_sentence_native": "Usamos un simulador de vuelo.", + "example_sentence_english": "We used a flight simulator.", + "pos": "noun", + "word_frequency": 14704 + }, + { + "word": "sociable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sociable", + "example_sentence_native": "Es una persona muy sociable.", + "example_sentence_english": "He is a very sociable person.", + "pos": "adjective", + "word_frequency": 14707 + }, + { + "word": "sudafricano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South African", + "example_sentence_native": "Él es de origen sudafricano.", + "example_sentence_english": "He is of South African origin.", + "pos": "adjective", + "word_frequency": 14709 + }, + { + "word": "sujetador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bra", + "example_sentence_native": "Necesito comprar un nuevo sujetador.", + "example_sentence_english": "I need to buy a new bra.", + "pos": "noun", + "word_frequency": 14710 + }, + { + "word": "sumergido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submerged", + "example_sentence_native": "El submarino está sumergido.", + "example_sentence_english": "The submarine is submerged.", + "pos": "adjective", + "word_frequency": 14711 + }, + { + "word": "superstición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superstition", + "example_sentence_native": "Es una vieja superstición.", + "example_sentence_english": "It's an old superstition.", + "pos": "noun", + "word_frequency": 14713 + }, + { + "word": "suscitar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arouse;to provoke;to cause", + "example_sentence_native": "Su comentario suscitó un debate.", + "example_sentence_english": "His comment provoked a debate.", + "pos": "verb", + "word_frequency": 14714 + }, + { + "word": "taladro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drill", + "example_sentence_native": "Necesito un taladro para colgar el cuadro.", + "example_sentence_english": "I need a drill to hang the picture.", + "pos": "noun", + "word_frequency": 14716 + }, + { + "word": "tambo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dairy farm;inn (Andean region)", + "example_sentence_native": "Visitamos un tambo en el campo.", + "example_sentence_english": "We visited a dairy farm in the countryside.", + "pos": "noun", + "word_frequency": 14717 + }, + { + "word": "tauro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Taurus", + "example_sentence_native": "Mi signo zodiacal es Tauro.", + "example_sentence_english": "My zodiac sign is Taurus.", + "pos": "noun", + "word_frequency": 14718 + }, + { + "word": "tauromaquia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bullfighting (art;practice)", + "example_sentence_native": "La tauromaquia es una tradición controvertida en España.", + "example_sentence_english": "Bullfighting is a controversial tradition in Spain.", + "pos": "noun", + "word_frequency": 14719 + }, + { + "word": "termómetro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thermometer", + "example_sentence_native": "Usamos un termómetro para medir la fiebre.", + "example_sentence_english": "We use a thermometer to measure fever.", + "pos": "noun", + "word_frequency": 14720 + }, + { + "word": "transbordador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shuttle;ferry", + "example_sentence_native": "El transbordador espacial regresó a la Tierra.", + "example_sentence_english": "The space shuttle returned to Earth.", + "pos": "noun", + "word_frequency": 14721 + }, + { + "word": "transformador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformer", + "example_sentence_native": "El transformador convierte la corriente eléctrica.", + "example_sentence_english": "The transformer converts electrical current.", + "pos": "noun", + "word_frequency": 14722 + }, + { + "word": "trending", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trending (topic)", + "example_sentence_native": "Este tema es trending en las redes sociales.", + "example_sentence_english": "This topic is trending on social media.", + "pos": "noun", + "word_frequency": 14723 + }, + { + "word": "util", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "useful", + "example_sentence_native": "Este libro es muy útil para estudiar.", + "example_sentence_english": "This book is very useful for studying.", + "pos": "adjective", + "word_frequency": 14726 + }, + { + "word": "varita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wand", + "example_sentence_native": "El mago agitó su varita mágica.", + "example_sentence_english": "The magician waved his magic wand.", + "pos": "noun", + "word_frequency": 14728 + }, + { + "word": "vasallo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vassal", + "example_sentence_native": "El vasallo juró lealtad a su señor.", + "example_sentence_english": "The vassal swore loyalty to his lord.", + "pos": "noun", + "word_frequency": 14729 + }, + { + "word": "vocacional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocational", + "example_sentence_native": "Ella está buscando orientación vocacional.", + "example_sentence_english": "She is looking for vocational guidance.", + "pos": "adjective", + "word_frequency": 14731 + }, + { + "word": "yin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yin", + "example_sentence_native": "El yin y el yang representan fuerzas opuestas.", + "example_sentence_english": "Yin and yang represent opposing forces.", + "pos": "noun", + "word_frequency": 14733 + }, + { + "word": "zumbido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hum;buzzing sound", + "example_sentence_native": "Escuché un zumbido de abejas.", + "example_sentence_english": "I heard a buzzing sound of bees.", + "pos": "noun", + "word_frequency": 14735 + }, + { + "word": "absorbido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorbed", + "example_sentence_native": "Estaba tan absorbido en el libro que no escuchó nada.", + "example_sentence_english": "He was so absorbed in the book that he heard nothing.", + "pos": "adjective", + "word_frequency": 14738 + }, + { + "word": "acariciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to caress;to stroke", + "example_sentence_native": "Le gusta acariciar a su gato.", + "example_sentence_english": "He likes to caress his cat.", + "pos": "verb", + "word_frequency": 14739 + }, + { + "word": "admin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admin;administrator", + "example_sentence_native": "El admin del grupo publicó un aviso.", + "example_sentence_english": "The group admin posted a notice.", + "pos": "noun", + "word_frequency": 14740 + }, + { + "word": "afianzar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strengthen;to secure;to consolidate", + "example_sentence_native": "Necesitamos afianzar nuestras relaciones comerciales.", + "example_sentence_english": "We need to strengthen our trade relations.", + "pos": "verb", + "word_frequency": 14741 + }, + { + "word": "amazonía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Amazonia;Amazon rainforest", + "example_sentence_native": "La Amazonía es el pulmón del planeta.", + "example_sentence_english": "The Amazon rainforest is the lung of the planet.", + "pos": "noun", + "word_frequency": 14743 + }, + { + "word": "amenazante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatening", + "example_sentence_native": "El cielo se veía oscuro y amenazante.", + "example_sentence_english": "The sky looked dark and threatening.", + "pos": "adjective", + "word_frequency": 14744 + }, + { + "word": "angostura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrows;strait;gorge", + "example_sentence_native": "El barco navegó por la angostura del río.", + "example_sentence_english": "The ship sailed through the narrows of the river.", + "pos": "noun", + "word_frequency": 14746 + }, + { + "word": "arbitral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitral;arbitration", + "example_sentence_native": "La decisión arbitral fue muy controvertida.", + "example_sentence_english": "The arbitral decision was very controversial.", + "pos": "adjective", + "word_frequency": 14748 + }, + { + "word": "arraigo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "roots;deep-rootedness;strong ties", + "example_sentence_native": "Siente un fuerte arraigo a su tierra natal.", + "example_sentence_english": "He feels a strong connection to his homeland.", + "pos": "noun", + "word_frequency": 14749 + }, + { + "word": "autovía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dual carriageway;motorway (Spain)", + "example_sentence_native": "Condujimos por la autovía hasta la costa.", + "example_sentence_english": "We drove along the dual carriageway to the coast.", + "pos": "noun", + "word_frequency": 14752 + }, + { + "word": "añadido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "added;additional", + "example_sentence_native": "Hay un coste añadido por el envío.", + "example_sentence_english": "There is an added cost for shipping.", + "pos": "adjective", + "word_frequency": 14754 + }, + { + "word": "battle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battle (as in 'battle royale')", + "example_sentence_native": "Ganamos la battle en el videojuego.", + "example_sentence_english": "We won the battle in the video game.", + "pos": "noun", + "word_frequency": 14758 + }, + { + "word": "blindaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor;shielding", + "example_sentence_native": "El vehículo tiene un blindaje especial.", + "example_sentence_english": "The vehicle has special armor.", + "pos": "noun", + "word_frequency": 14763 + }, + { + "word": "boceto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sketch;draft", + "example_sentence_native": "Hizo un boceto rápido de la idea.", + "example_sentence_english": "He made a quick sketch of the idea.", + "pos": "noun", + "word_frequency": 14764 + }, + { + "word": "cabaret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabaret", + "example_sentence_native": "Fuimos a un espectáculo de cabaret.", + "example_sentence_english": "We went to a cabaret show.", + "pos": "noun", + "word_frequency": 14769 + }, + { + "word": "cabezón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubborn;big-headed", + "example_sentence_native": "Es muy cabezón y nunca cambia de opinión.", + "example_sentence_english": "He is very stubborn and never changes his mind.", + "pos": "adjective", + "word_frequency": 14770 + }, + { + "word": "calidez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warmth;cordiality", + "example_sentence_native": "La calidez de su sonrisa me tranquilizó.", + "example_sentence_english": "The warmth of her smile calmed me.", + "pos": "noun", + "word_frequency": 14771 + }, + { + "word": "casona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large old house;mansion", + "example_sentence_native": "Compraron una casona antigua en el campo.", + "example_sentence_english": "They bought a large old house in the countryside.", + "pos": "noun", + "word_frequency": 14772 + }, + { + "word": "champaña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champagne", + "example_sentence_native": "Brindamos con champaña por el éxito.", + "example_sentence_english": "We toasted with champagne for success.", + "pos": "noun", + "word_frequency": 14773 + }, + { + "word": "chequear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check", + "example_sentence_native": "Necesito chequear mi correo electrónico.", + "example_sentence_english": "I need to check my email.", + "pos": "verb", + "word_frequency": 14774 + }, + { + "word": "ciber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyber;internet cafe", + "example_sentence_native": "Fui al ciber para imprimir unos documentos.", + "example_sentence_english": "I went to the internet cafe to print some documents.", + "pos": "noun", + "word_frequency": 14776 + }, + { + "word": "clarito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very clear;crystal clear", + "example_sentence_native": "Habló muy clarito para que todos entendieran.", + "example_sentence_english": "He spoke very clearly so that everyone would understand.", + "pos": "adjective", + "word_frequency": 14777 + }, + { + "word": "clímax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climax", + "example_sentence_native": "La película alcanzó su clímax al final.", + "example_sentence_english": "The movie reached its climax at the end.", + "pos": "noun", + "word_frequency": 14778 + }, + { + "word": "cocinado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cooked", + "example_sentence_native": "La carne ya está cocinada.", + "example_sentence_english": "The meat is already cooked.", + "pos": "adjective", + "word_frequency": 14779 + }, + { + "word": "compilado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compiled", + "example_sentence_native": "El informe final fue compilado por el equipo.", + "example_sentence_english": "The final report was compiled by the team.", + "pos": "adjective", + "word_frequency": 14785 + }, + { + "word": "conjuro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spell;incantation", + "example_sentence_native": "El mago recitó un antiguo conjuro.", + "example_sentence_english": "The wizard recited an ancient spell.", + "pos": "noun", + "word_frequency": 14787 + }, + { + "word": "conmovido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moved;touched (emotionally)", + "example_sentence_native": "Estaba muy conmovido por sus palabras.", + "example_sentence_english": "He was very moved by her words.", + "pos": "adjective", + "word_frequency": 14788 + }, + { + "word": "constitucionalmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutionally", + "example_sentence_native": "La ley fue aprobada constitucionalmente.", + "example_sentence_english": "The law was approved constitutionally.", + "pos": "adverb", + "word_frequency": 14790 + }, + { + "word": "convencimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction;belief", + "example_sentence_native": "Habló con gran convencimiento.", + "example_sentence_english": "He spoke with great conviction.", + "pos": "noun", + "word_frequency": 14791 + }, + { + "word": "costanera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coastal road;waterfront promenade", + "example_sentence_native": "Dimos un paseo por la costanera.", + "example_sentence_english": "We took a walk along the coastal road.", + "pos": "noun", + "word_frequency": 14794 + }, + { + "word": "cuco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boogeyman;cuckoo bird", + "example_sentence_native": "No tengas miedo, el cuco no existe.", + "example_sentence_english": "Don't be afraid, the boogeyman doesn't exist.", + "pos": "noun", + "word_frequency": 14796 + }, + { + "word": "debacle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debacle;collapse", + "example_sentence_native": "La economía sufrió una debacle.", + "example_sentence_english": "The economy suffered a debacle.", + "pos": "noun", + "word_frequency": 14798 + }, + { + "word": "debatido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debated;discussed", + "example_sentence_native": "Es un tema muy debatido en la sociedad.", + "example_sentence_english": "It is a highly debated topic in society.", + "pos": "adjective", + "word_frequency": 14799 + }, + { + "word": "decadente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decadent", + "example_sentence_native": "La sociedad parecía estar en un estado decadente.", + "example_sentence_english": "Society seemed to be in a decadent state.", + "pos": "adjective", + "word_frequency": 14800 + }, + { + "word": "declaracion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "declaration;statement", + "example_sentence_native": "Hizo una declaración importante ante la prensa.", + "example_sentence_english": "He made an important statement to the press.", + "pos": "noun", + "word_frequency": 14801 + }, + { + "word": "derrumbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to knock down;to collapse", + "example_sentence_native": "El edificio viejo podría derrumbarse en cualquier momento.", + "example_sentence_english": "The old building could collapse at any moment.", + "pos": "verb", + "word_frequency": 14802 + }, + { + "word": "desatado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unleashed;unbridled", + "example_sentence_native": "La tormenta desatada causó muchos daños.", + "example_sentence_english": "The unleashed storm caused a lot of damage.", + "pos": "adjective", + "word_frequency": 14803 + }, + { + "word": "desencadenar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unleash;to trigger", + "example_sentence_native": "Sus palabras pueden desencadenar una reacción en cadena.", + "example_sentence_english": "His words can trigger a chain reaction.", + "pos": "verb", + "word_frequency": 14804 + }, + { + "word": "deslumbrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dazzling;brilliant", + "example_sentence_native": "La vista desde la cima de la montaña era deslumbrante.", + "example_sentence_english": "The view from the top of the mountain was dazzling.", + "pos": "adjective", + "word_frequency": 14805 + }, + { + "word": "desnivel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unevenness;slope", + "example_sentence_native": "Hay un desnivel peligroso en la carretera.", + "example_sentence_english": "There is a dangerous unevenness on the road.", + "pos": "noun", + "word_frequency": 14806 + }, + { + "word": "deteriorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deteriorated;damaged", + "example_sentence_native": "El libro estaba muy deteriorado por el uso.", + "example_sentence_english": "The book was very deteriorated from use.", + "pos": "adjective", + "word_frequency": 14807 + }, + { + "word": "disciplinario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disciplinary", + "example_sentence_native": "Recibió una acción disciplinaria por su comportamiento.", + "example_sentence_english": "He received disciplinary action for his behavior.", + "pos": "adjective", + "word_frequency": 14808 + }, + { + "word": "discutido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disputed;controversial", + "example_sentence_native": "Es un tema muy discutido en la actualidad.", + "example_sentence_english": "It is a very controversial topic nowadays.", + "pos": "adjective", + "word_frequency": 14809 + }, + { + "word": "disfunción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dysfunction", + "example_sentence_native": "El sistema mostró una disfunción inesperada.", + "example_sentence_english": "The system showed an unexpected dysfunction.", + "pos": "noun", + "word_frequency": 14810 + }, + { + "word": "domo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dome", + "example_sentence_native": "La iglesia tiene un domo impresionante.", + "example_sentence_english": "The church has an impressive dome.", + "pos": "noun", + "word_frequency": 14811 + }, + { + "word": "donativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "donation", + "example_sentence_native": "Hicimos un donativo a la organización benéfica.", + "example_sentence_english": "We made a donation to the charity organization.", + "pos": "noun", + "word_frequency": 14812 + }, + { + "word": "elevador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elevator;lift", + "example_sentence_native": "Subimos al quinto piso en el elevador.", + "example_sentence_english": "We went up to the fifth floor in the elevator.", + "pos": "noun", + "word_frequency": 14814 + }, + { + "word": "elástico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elastic", + "example_sentence_native": "Este material es muy elástico.", + "example_sentence_english": "This material is very elastic.", + "pos": "adjective", + "word_frequency": 14815 + }, + { + "word": "entrever", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to glimpse;to catch a glimpse of", + "example_sentence_native": "Pude entrever su silueta en la oscuridad.", + "example_sentence_english": "I could glimpse his silhouette in the darkness.", + "pos": "verb", + "word_frequency": 14818 + }, + { + "word": "espanol", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Spanish (language;person)", + "example_sentence_native": "Hablo español con fluidez.", + "example_sentence_english": "I speak Spanish fluently.", + "pos": "noun", + "word_frequency": 14819 + }, + { + "word": "espeluznante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creepy;horrifying;chilling", + "example_sentence_native": "La película de terror era espeluznante.", + "example_sentence_english": "The horror movie was creepy.", + "pos": "adjective", + "word_frequency": 14821 + }, + { + "word": "farándula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "show business;showbiz", + "example_sentence_native": "Trabaja en el mundo de la farándula.", + "example_sentence_english": "He works in the world of show business.", + "pos": "noun", + "word_frequency": 14822 + }, + { + "word": "financieramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financially", + "example_sentence_native": "Están bien financieramente después de la inversión.", + "example_sentence_english": "They are well financially after the investment.", + "pos": "adverb", + "word_frequency": 14824 + }, + { + "word": "floración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flowering;bloom", + "example_sentence_native": "La floración de los cerezos es hermosa en primavera.", + "example_sentence_english": "The cherry blossom is beautiful in spring.", + "pos": "noun", + "word_frequency": 14826 + }, + { + "word": "fluctuación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluctuation", + "example_sentence_native": "Hubo una fluctuación en los precios del mercado.", + "example_sentence_english": "There was a fluctuation in market prices.", + "pos": "noun", + "word_frequency": 14827 + }, + { + "word": "foca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seal (animal)", + "example_sentence_native": "Vimos una foca nadando en el océano.", + "example_sentence_english": "We saw a seal swimming in the ocean.", + "pos": "noun", + "word_frequency": 14828 + }, + { + "word": "formulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formulated", + "example_sentence_native": "La pregunta estaba bien formulada.", + "example_sentence_english": "The question was well formulated.", + "pos": "adjective", + "word_frequency": 14829 + }, + { + "word": "fundacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foundational", + "example_sentence_native": "Es un principio fundacional de la democracia.", + "example_sentence_english": "It is a foundational principle of democracy.", + "pos": "adjective", + "word_frequency": 14832 + }, + { + "word": "fín", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "end;purpose", + "example_sentence_native": "Llegamos al fin del camino.", + "example_sentence_english": "We reached the end of the road.", + "pos": "noun", + "word_frequency": 14833 + }, + { + "word": "galón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallon", + "example_sentence_native": "Necesito un galón de leche.", + "example_sentence_english": "I need a gallon of milk.", + "pos": "noun", + "word_frequency": 14834 + }, + { + "word": "glóbulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globule;cell", + "example_sentence_native": "Los glóbulos rojos transportan oxígeno.", + "example_sentence_english": "Red blood cells transport oxygen.", + "pos": "noun", + "word_frequency": 14837 + }, + { + "word": "granadero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grenadier", + "example_sentence_native": "Los granaderos marcharon en el desfile.", + "example_sentence_english": "The grenadiers marched in the parade.", + "pos": "noun", + "word_frequency": 14839 + }, + { + "word": "guarida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lair;den", + "example_sentence_native": "El oso regresó a su guarida en la cueva.", + "example_sentence_english": "The bear returned to its lair in the cave.", + "pos": "noun", + "word_frequency": 14841 + }, + { + "word": "herpes", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "herpes", + "example_sentence_native": "El médico diagnosticó herpes labial.", + "example_sentence_english": "The doctor diagnosed oral herpes.", + "pos": "noun", + "word_frequency": 14844 + }, + { + "word": "hinchado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swollen", + "example_sentence_native": "Su tobillo estaba hinchado después de la caída.", + "example_sentence_english": "His ankle was swollen after the fall.", + "pos": "adjective", + "word_frequency": 14845 + }, + { + "word": "hormiguero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthill;anteater", + "example_sentence_native": "Vimos un hormiguero gigante en el bosque.", + "example_sentence_english": "We saw a giant anthill in the forest.", + "pos": "noun", + "word_frequency": 14847 + }, + { + "word": "hormonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hormonal", + "example_sentence_native": "Los cambios hormonales son comunes durante la adolescencia.", + "example_sentence_english": "Hormonal changes are common during adolescence.", + "pos": "adjective", + "word_frequency": 14848 + }, + { + "word": "hospicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hospice;poorhouse", + "example_sentence_native": "El anciano pasó sus últimos días en el hospicio.", + "example_sentence_english": "The old man spent his last days in the hospice.", + "pos": "noun", + "word_frequency": 14849 + }, + { + "word": "hospitalizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitalized", + "example_sentence_native": "El paciente fue hospitalizado por una infección.", + "example_sentence_english": "The patient was hospitalized due to an infection.", + "pos": "adjective", + "word_frequency": 14850 + }, + { + "word": "impopular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpopular", + "example_sentence_native": "Esa decisión fue muy impopular entre la gente.", + "example_sentence_english": "That decision was very unpopular among the people.", + "pos": "adjective", + "word_frequency": 14854 + }, + { + "word": "inconcebible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inconceivable", + "example_sentence_native": "Es inconcebible que algo así pudiera pasar.", + "example_sentence_english": "It's inconceivable that something like that could happen.", + "pos": "adjective", + "word_frequency": 14855 + }, + { + "word": "influjo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "influence;influx", + "example_sentence_native": "El influjo de nuevas ideas cambió la sociedad.", + "example_sentence_english": "The influx of new ideas changed society.", + "pos": "noun", + "word_frequency": 14856 + }, + { + "word": "intensificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intensify", + "example_sentence_native": "Necesitamos intensificar nuestros esfuerzos.", + "example_sentence_english": "We need to intensify our efforts.", + "pos": "verb", + "word_frequency": 14857 + }, + { + "word": "inundado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flooded", + "example_sentence_native": "La casa quedó inundada después de la tormenta.", + "example_sentence_english": "The house was flooded after the storm.", + "pos": "adjective", + "word_frequency": 14858 + }, + { + "word": "itinerante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "itinerant;wandering", + "example_sentence_native": "El circo itinerante visitó muchos pueblos.", + "example_sentence_english": "The itinerant circus visited many towns.", + "pos": "adjective", + "word_frequency": 14859 + }, + { + "word": "jalar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pull", + "example_sentence_native": "Jala la puerta para abrirla.", + "example_sentence_english": "Pull the door to open it.", + "pos": "verb", + "word_frequency": 14860 + }, + { + "word": "judo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judo", + "example_sentence_native": "Practica judo dos veces por semana.", + "example_sentence_english": "He practices judo twice a week.", + "pos": "noun", + "word_frequency": 14862 + }, + { + "word": "kiosco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiosk", + "example_sentence_native": "Compré un periódico en el kiosco.", + "example_sentence_english": "I bought a newspaper at the kiosk.", + "pos": "noun", + "word_frequency": 14865 + }, + { + "word": "maltratado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistreated;abused", + "example_sentence_native": "El perro rescatado estaba maltratado.", + "example_sentence_english": "The rescued dog was mistreated.", + "pos": "adjective", + "word_frequency": 14869 + }, + { + "word": "manzanilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chamomile", + "example_sentence_native": "Tomó una taza de té de manzanilla para relajarse.", + "example_sentence_english": "She drank a cup of chamomile tea to relax.", + "pos": "noun", + "word_frequency": 14874 + }, + { + "word": "memorándum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorandum", + "example_sentence_native": "El director envió un memorándum a todo el personal.", + "example_sentence_english": "The director sent a memorandum to all staff.", + "pos": "noun", + "word_frequency": 14880 + }, + { + "word": "menstruación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "menstruation", + "example_sentence_native": "La menstruación es parte del ciclo reproductivo femenino.", + "example_sentence_english": "Menstruation is part of the female reproductive cycle.", + "pos": "noun", + "word_frequency": 14881 + }, + { + "word": "metrópoli", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolis", + "example_sentence_native": "Madrid es una gran metrópoli.", + "example_sentence_english": "Madrid is a large metropolis.", + "pos": "noun", + "word_frequency": 14882 + }, + { + "word": "militarmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militarily", + "example_sentence_native": "El país está preparado militarmente para cualquier amenaza.", + "example_sentence_english": "The country is militarily prepared for any threat.", + "pos": "adverb", + "word_frequency": 14883 + }, + { + "word": "mustang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mustang (wild horse)", + "example_sentence_native": "El mustang es un caballo salvaje de América del Norte.", + "example_sentence_english": "The mustang is a wild horse from North America.", + "pos": "noun", + "word_frequency": 14886 + }, + { + "word": "módem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modem", + "example_sentence_native": "Necesito un nuevo módem para mi conexión a internet.", + "example_sentence_english": "I need a new modem for my internet connection.", + "pos": "noun", + "word_frequency": 14887 + }, + { + "word": "nogal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walnut tree", + "example_sentence_native": "El nogal del jardín da muchas nueces.", + "example_sentence_english": "The walnut tree in the garden yields many walnuts.", + "pos": "noun", + "word_frequency": 14891 + }, + { + "word": "omitir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to omit", + "example_sentence_native": "No debes omitir ningún detalle importante.", + "example_sentence_english": "You should not omit any important details.", + "pos": "verb", + "word_frequency": 14892 + }, + { + "word": "paella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paella", + "example_sentence_native": "La paella es un plato típico español.", + "example_sentence_english": "Paella is a typical Spanish dish.", + "pos": "noun", + "word_frequency": 14894 + }, + { + "word": "palenque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stockade;arena", + "example_sentence_native": "Los gallos luchaban en el palenque.", + "example_sentence_english": "The roosters fought in the arena.", + "pos": "noun", + "word_frequency": 14895 + }, + { + "word": "pastoreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grazing;herding", + "example_sentence_native": "El pastoreo es una actividad económica importante en la región.", + "example_sentence_english": "Grazing is an important economic activity in the region.", + "pos": "noun", + "word_frequency": 14896 + }, + { + "word": "pelvis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pelvis", + "example_sentence_native": "La pelvis es una estructura ósea importante.", + "example_sentence_english": "The pelvis is an important bone structure.", + "pos": "noun", + "word_frequency": 14897 + }, + { + "word": "perturbación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disturbance;perturbation", + "example_sentence_native": "Hubo una perturbación en la señal de radio.", + "example_sentence_english": "There was a disturbance in the radio signal.", + "pos": "noun", + "word_frequency": 14898 + }, + { + "word": "perversión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perversion", + "example_sentence_native": "La película exploraba temas de perversión.", + "example_sentence_english": "The film explored themes of perversion.", + "pos": "noun", + "word_frequency": 14899 + }, + { + "word": "posar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pose;to land (for birds)", + "example_sentence_native": "La modelo tuvo que posar durante horas.", + "example_sentence_english": "The model had to pose for hours.", + "pos": "verb", + "word_frequency": 14900 + }, + { + "word": "proporcionalmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proportionally", + "example_sentence_native": "Los beneficios se distribuyeron proporcionalmente a la inversión.", + "example_sentence_english": "The profits were distributed proportionally to the investment.", + "pos": "adverb", + "word_frequency": 14902 + }, + { + "word": "provisionalmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provisionally;temporarily", + "example_sentence_native": "El acuerdo fue aprobado provisionalmente.", + "example_sentence_english": "The agreement was provisionally approved.", + "pos": "adverb", + "word_frequency": 14903 + }, + { + "word": "pulsar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to press;to pulsate", + "example_sentence_native": "Pulsa el botón para encender el televisor.", + "example_sentence_english": "Press the button to turn on the television.", + "pos": "verb", + "word_frequency": 14904 + }, + { + "word": "puñal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dagger", + "example_sentence_native": "Llevaba un puñal escondido bajo su capa.", + "example_sentence_english": "He carried a dagger hidden under his cloak.", + "pos": "noun", + "word_frequency": 14905 + }, + { + "word": "rallado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grated;scratched", + "example_sentence_native": "Añade queso rallado a la pasta.", + "example_sentence_english": "Add grated cheese to the pasta.", + "pos": "adjective", + "word_frequency": 14906 + }, + { + "word": "rapto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abduction;rapture", + "example_sentence_native": "La policía investiga el rapto del niño.", + "example_sentence_english": "The police are investigating the abduction of the child.", + "pos": "noun", + "word_frequency": 14907 + }, + { + "word": "redentor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redeemer", + "example_sentence_native": "Muchas culturas tienen la figura de un redentor.", + "example_sentence_english": "Many cultures have the figure of a redeemer.", + "pos": "noun", + "word_frequency": 14908 + }, + { + "word": "reelegido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-elected", + "example_sentence_native": "El presidente fue reelegido para un segundo mandato.", + "example_sentence_english": "The president was re-elected for a second term.", + "pos": "adjective", + "word_frequency": 14909 + }, + { + "word": "reencarnación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reincarnation", + "example_sentence_native": "Algunas religiones creen en la reencarnación.", + "example_sentence_english": "Some religions believe in reincarnation.", + "pos": "noun", + "word_frequency": 14910 + }, + { + "word": "rehacer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redo;to remake", + "example_sentence_native": "Tuve que rehacer todo el informe.", + "example_sentence_english": "I had to redo the entire report.", + "pos": "verb", + "word_frequency": 14911 + }, + { + "word": "rehusar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refuse", + "example_sentence_native": "Él rehusó la oferta de trabajo.", + "example_sentence_english": "He refused the job offer.", + "pos": "verb", + "word_frequency": 14912 + }, + { + "word": "remisión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remission;referral", + "example_sentence_native": "El paciente está en remisión.", + "example_sentence_english": "The patient is in remission.", + "pos": "noun", + "word_frequency": 14913 + }, + { + "word": "resolucion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolution", + "example_sentence_native": "La junta aprobó una nueva resolucion.", + "example_sentence_english": "The board approved a new resolution.", + "pos": "noun", + "word_frequency": 14915 + }, + { + "word": "respaldado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backed;supported", + "example_sentence_native": "El proyecto está respaldado por el gobierno.", + "example_sentence_english": "The project is backed by the government.", + "pos": "adjective", + "word_frequency": 14916 + }, + { + "word": "rouge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rouge", + "example_sentence_native": "Se aplicó un poco de rouge en las mejillas.", + "example_sentence_english": "She applied a little rouge to her cheeks.", + "pos": "noun", + "word_frequency": 14920 + }, + { + "word": "runner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "runner", + "example_sentence_native": "El runner completó la maratón en menos de tres horas.", + "example_sentence_english": "The runner completed the marathon in less than three hours.", + "pos": "noun", + "word_frequency": 14921 + }, + { + "word": "saborear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to savor", + "example_sentence_native": "Me gusta saborear cada bocado de mi comida.", + "example_sentence_english": "I like to savor every bite of my food.", + "pos": "verb", + "word_frequency": 14922 + }, + { + "word": "skate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skate", + "example_sentence_native": "Compró un nuevo skate para practicar en el parque.", + "example_sentence_english": "He bought a new skate to practice at the park.", + "pos": "noun", + "word_frequency": 14925 + }, + { + "word": "special", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "special", + "example_sentence_native": "Este es un día muy special para mí.", + "example_sentence_english": "This is a very special day for me.", + "pos": "adjective", + "word_frequency": 14927 + }, + { + "word": "subversión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subversion", + "example_sentence_native": "El gobierno acusó al grupo de subversión.", + "example_sentence_english": "The government accused the group of subversion.", + "pos": "noun", + "word_frequency": 14930 + }, + { + "word": "sumiso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submissive", + "example_sentence_native": "Su actitud era demasiado sumisa.", + "example_sentence_english": "His attitude was too submissive.", + "pos": "adjective", + "word_frequency": 14932 + }, + { + "word": "sureño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southern;southerner", + "example_sentence_native": "La cultura sureña es muy rica.", + "example_sentence_english": "Southern culture is very rich.", + "pos": "adjective", + "word_frequency": 14933 + }, + { + "word": "surtido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assortment", + "example_sentence_native": "Compramos un surtido de dulces.", + "example_sentence_english": "We bought an assortment of sweets.", + "pos": "noun", + "word_frequency": 14934 + }, + { + "word": "tazón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowl", + "example_sentence_native": "Sirvió la sopa en un tazón grande.", + "example_sentence_english": "He served the soup in a large bowl.", + "pos": "noun", + "word_frequency": 14936 + }, + { + "word": "telégrafo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegraph", + "example_sentence_native": "El telégrafo fue una invención revolucionaria.", + "example_sentence_english": "The telegraph was a revolutionary invention.", + "pos": "noun", + "word_frequency": 14937 + }, + { + "word": "textualmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "textually;word for word", + "example_sentence_native": "Citó sus palabras textualmente.", + "example_sentence_english": "He quoted her words textually.", + "pos": "adverb", + "word_frequency": 14938 + }, + { + "word": "tocada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musical piece;touch", + "example_sentence_native": "La banda hizo una tocada improvisada en la plaza.", + "example_sentence_english": "The band did an impromptu musical piece in the square.", + "pos": "noun", + "word_frequency": 14941 + }, + { + "word": "tonalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tonality;shade", + "example_sentence_native": "La pintura tiene una tonalidad azul muy suave.", + "example_sentence_english": "The painting has a very soft blue shade.", + "pos": "noun", + "word_frequency": 14942 + }, + { + "word": "torpedo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torpedo", + "example_sentence_native": "El submarino lanzó un torpedo al objetivo.", + "example_sentence_english": "The submarine launched a torpedo at the target.", + "pos": "noun", + "word_frequency": 14943 + }, + { + "word": "trompada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punch;blow", + "example_sentence_native": "Le dio una trompada en la cara.", + "example_sentence_english": "He gave him a punch in the face.", + "pos": "noun", + "word_frequency": 14945 + }, + { + "word": "trueque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barter;exchange", + "example_sentence_native": "Hicieron un trueque de bienes.", + "example_sentence_english": "They made an exchange of goods.", + "pos": "noun", + "word_frequency": 14946 + }, + { + "word": "urbanístico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urbanistic;urban planning", + "example_sentence_native": "El plan urbanístico fue aprobado por el ayuntamiento.", + "example_sentence_english": "The urban planning project was approved by the city council.", + "pos": "adjective", + "word_frequency": 14949 + }, + { + "word": "usurpación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usurpation", + "example_sentence_native": "La usurpación de tierras es un delito grave.", + "example_sentence_english": "Land usurpation is a serious crime.", + "pos": "noun", + "word_frequency": 14950 + }, + { + "word": "venerable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venerable", + "example_sentence_native": "El venerable anciano compartió su sabiduría.", + "example_sentence_english": "The venerable old man shared his wisdom.", + "pos": "adjective", + "word_frequency": 14953 + }, + { + "word": "vintage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vintage", + "example_sentence_native": "Le encanta la ropa vintage.", + "example_sentence_english": "She loves vintage clothes.", + "pos": "adjective", + "word_frequency": 14954 + }, + { + "word": "virtuoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virtuous;virtuoso", + "example_sentence_native": "Es un músico virtuoso.", + "example_sentence_english": "He is a virtuoso musician.", + "pos": "adjective", + "word_frequency": 14955 + }, + { + "word": "yihadista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jihadist", + "example_sentence_native": "Las autoridades detuvieron a un presunto yihadista.", + "example_sentence_english": "The authorities arrested a suspected jihadist.", + "pos": "noun", + "word_frequency": 14961 + }, + { + "word": "áspero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough;harsh", + "example_sentence_native": "La superficie de la roca era muy áspera.", + "example_sentence_english": "The surface of the rock was very rough.", + "pos": "adjective", + "word_frequency": 14963 + }, + { + "word": "aberración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aberration", + "example_sentence_native": "Consideró su comportamiento una aberración.", + "example_sentence_english": "He considered her behavior an aberration.", + "pos": "noun", + "word_frequency": 14965 + }, + { + "word": "acortar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shorten;to cut short", + "example_sentence_native": "Necesitamos acortar la reunión.", + "example_sentence_english": "We need to shorten the meeting.", + "pos": "verb", + "word_frequency": 14966 + }, + { + "word": "acosado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassed;bullied", + "example_sentence_native": "Se sentía acosado por sus compañeros.", + "example_sentence_english": "He felt harassed by his classmates.", + "pos": "adjective", + "word_frequency": 14967 + }, + { + "word": "adiestramiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "training;coaching", + "example_sentence_native": "El perro recibió un adiestramiento intensivo.", + "example_sentence_english": "The dog received intensive training.", + "pos": "noun", + "word_frequency": 14968 + }, + { + "word": "alberca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming pool (Mexican Spanish)", + "example_sentence_native": "Los niños jugaban en la alberca.", + "example_sentence_english": "The children were playing in the swimming pool.", + "pos": "noun", + "word_frequency": 14969 + }, + { + "word": "albino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "albino", + "example_sentence_native": "Vimos un conejo albino en el campo.", + "example_sentence_english": "We saw an albino rabbit in the field.", + "pos": "noun", + "word_frequency": 14970 + }, + { + "word": "alegato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "argument;plea;statement", + "example_sentence_native": "El abogado presentó su alegato final.", + "example_sentence_english": "The lawyer presented his final argument.", + "pos": "noun", + "word_frequency": 14971 + }, + { + "word": "alucinación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hallucination", + "example_sentence_native": "Experimentó una alucinación visual.", + "example_sentence_english": "He experienced a visual hallucination.", + "pos": "noun", + "word_frequency": 14973 + }, + { + "word": "alzado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raised;rebellious", + "example_sentence_native": "El pueblo alzado se negó a obedecer.", + "example_sentence_english": "The rebellious people refused to obey.", + "pos": "adjective", + "word_frequency": 14974 + }, + { + "word": "amarillento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yellowish", + "example_sentence_native": "Las hojas se volvieron amarillentas en otoño.", + "example_sentence_english": "The leaves turned yellowish in autumn.", + "pos": "adjective", + "word_frequency": 14975 + }, + { + "word": "andante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "walking;moving (music: andante)", + "example_sentence_native": "El segundo movimiento es un andante.", + "example_sentence_english": "The second movement is an andante.", + "pos": "adjective", + "word_frequency": 14976 + }, + { + "word": "angelito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little angel (often used ironically or endearingly)", + "example_sentence_native": "Mi sobrino es un verdadero angelito.", + "example_sentence_english": "My nephew is a true little angel.", + "pos": "noun", + "word_frequency": 14977 + }, + { + "word": "animador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animator;entertainer;host", + "example_sentence_native": "El animador del programa era muy divertido.", + "example_sentence_english": "The show's host was very funny.", + "pos": "noun", + "word_frequency": 14979 + }, + { + "word": "antisemitismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemitism", + "example_sentence_native": "El antisemitismo es una forma de discriminación.", + "example_sentence_english": "Antisemitism is a form of discrimination.", + "pos": "noun", + "word_frequency": 14982 + }, + { + "word": "antisocial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antisocial", + "example_sentence_native": "Su comportamiento antisocial preocupaba a sus padres.", + "example_sentence_english": "His antisocial behavior worried his parents.", + "pos": "adjective", + "word_frequency": 14983 + }, + { + "word": "astrología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astrology", + "example_sentence_native": "Ella estudia astrología y horóscopos.", + "example_sentence_english": "She studies astrology and horoscopes.", + "pos": "noun", + "word_frequency": 14987 + }, + { + "word": "atajo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shortcut;detour", + "example_sentence_native": "Tomamos un atajo para llegar más rápido.", + "example_sentence_english": "We took a shortcut to get there faster.", + "pos": "noun", + "word_frequency": 14988 + }, + { + "word": "automatizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automated", + "example_sentence_native": "El proceso de producción está completamente automatizado.", + "example_sentence_english": "The production process is completely automated.", + "pos": "adjective", + "word_frequency": 14989 + }, + { + "word": "ballestero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossbowman", + "example_sentence_native": "El ballestero disparó con precisión.", + "example_sentence_english": "The crossbowman shot with precision.", + "pos": "noun", + "word_frequency": 14990 + }, + { + "word": "biopsia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biopsy", + "example_sentence_native": "Los resultados de la biopsia fueron negativos.", + "example_sentence_english": "The biopsy results were negative.", + "pos": "noun", + "word_frequency": 14994 + }, + { + "word": "biólogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biologist", + "example_sentence_native": "Mi hermana es bióloga marina.", + "example_sentence_english": "My sister is a marine biologist.", + "pos": "noun", + "word_frequency": 14995 + }, + { + "word": "bonificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bonus;gratification", + "example_sentence_native": "Recibió una bonificación por su buen desempeño.", + "example_sentence_english": "He received a bonus for his good performance.", + "pos": "noun", + "word_frequency": 14997 + }, + { + "word": "boton", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "button", + "example_sentence_native": "Pulsa el botón rojo para iniciar.", + "example_sentence_english": "Press the red button to start.", + "pos": "noun", + "word_frequency": 14998 + }, + { + "word": "bronceado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tanned;bronzed", + "example_sentence_native": "Después de las vacaciones, estaba muy bronceado.", + "example_sentence_english": "After the holidays, he was very tanned.", + "pos": "adjective", + "word_frequency": 14999 + }, + { + "word": "bulevar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boulevard", + "example_sentence_native": "Caminamos por el bulevar arbolado.", + "example_sentence_english": "We walked along the tree-lined boulevard.", + "pos": "noun", + "word_frequency": 15000 + }, + { + "word": "burdel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brothel", + "example_sentence_native": "El edificio abandonado solía ser un burdel.", + "example_sentence_english": "The abandoned building used to be a brothel.", + "pos": "noun", + "word_frequency": 15001 + }, + { + "word": "buró", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bureau;desk;office", + "example_sentence_native": "Dejó los documentos sobre el buró.", + "example_sentence_english": "He left the documents on the desk.", + "pos": "noun", + "word_frequency": 15003 + }, + { + "word": "cabellera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head of hair;mane (of hair)", + "example_sentence_native": "Su larga cabellera rubia brillaba al sol.", + "example_sentence_english": "Her long blonde hair shone in the sun.", + "pos": "noun", + "word_frequency": 15004 + }, + { + "word": "cambiado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "changed", + "example_sentence_native": "El plan ha sido cambiado.", + "example_sentence_english": "The plan has been changed.", + "pos": "adjective", + "word_frequency": 15005 + }, + { + "word": "campanario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bell tower;belfry", + "example_sentence_native": "Las campanas del campanario sonaron a mediodía.", + "example_sentence_english": "The bells of the bell tower rang at noon.", + "pos": "noun", + "word_frequency": 15006 + }, + { + "word": "capitalino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital city resident (adj.);related to the capital", + "example_sentence_native": "La vida capitalina es muy ajetreada.", + "example_sentence_english": "Capital city life is very busy.", + "pos": "adjective", + "word_frequency": 15007 + }, + { + "word": "caracteristica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic;feature", + "example_sentence_native": "Una característica importante de este software es su facilidad de uso.", + "example_sentence_english": "An important feature of this software is its ease of use.", + "pos": "noun", + "word_frequency": 15008 + }, + { + "word": "cartilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primer;booklet;basic guide", + "example_sentence_native": "Los niños aprenden a leer con una cartilla.", + "example_sentence_english": "Children learn to read with a primer.", + "pos": "noun", + "word_frequency": 15010 + }, + { + "word": "celulosa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cellulose", + "example_sentence_native": "La celulosa es el componente principal de las paredes celulares de las plantas.", + "example_sentence_english": "Cellulose is the main component of plant cell walls.", + "pos": "noun", + "word_frequency": 15012 + }, + { + "word": "cereza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cherry", + "example_sentence_native": "Me encanta el pastel de cereza.", + "example_sentence_english": "I love cherry pie.", + "pos": "noun", + "word_frequency": 15013 + }, + { + "word": "choza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hut;shack", + "example_sentence_native": "Vivían en una pequeña choza en el bosque.", + "example_sentence_english": "They lived in a small hut in the forest.", + "pos": "noun", + "word_frequency": 15014 + }, + { + "word": "cociente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quotient", + "example_sentence_native": "El cociente de diez dividido por dos es cinco.", + "example_sentence_english": "The quotient of ten divided by two is five.", + "pos": "noun", + "word_frequency": 15017 + }, + { + "word": "comunicacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "communicational", + "example_sentence_native": "La estrategia comunicacional fue muy efectiva.", + "example_sentence_english": "The communicational strategy was very effective.", + "pos": "adjective", + "word_frequency": 15019 + }, + { + "word": "confidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidant", + "example_sentence_native": "Ella es mi mejor amiga y mi confidente.", + "example_sentence_english": "She is my best friend and my confidant.", + "pos": "noun", + "word_frequency": 15020 + }, + { + "word": "contrapartida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpart;quid pro quo", + "example_sentence_native": "El ministro se reunió con su contrapartida francesa.", + "example_sentence_english": "The minister met with his French counterpart.", + "pos": "noun", + "word_frequency": 15021 + }, + { + "word": "contrapunto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpoint", + "example_sentence_native": "La novela presenta un interesante contrapunto entre los dos personajes principales.", + "example_sentence_english": "The novel presents an interesting counterpoint between the two main characters.", + "pos": "noun", + "word_frequency": 15022 + }, + { + "word": "contrincante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opponent;rival", + "example_sentence_native": "El boxeador no subestimó a su contrincante.", + "example_sentence_english": "The boxer did not underestimate his opponent.", + "pos": "noun", + "word_frequency": 15023 + }, + { + "word": "conyugal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conjugal;marital", + "example_sentence_native": "Disfrutan de una felicidad conyugal.", + "example_sentence_english": "They enjoy conjugal happiness.", + "pos": "adjective", + "word_frequency": 15024 + }, + { + "word": "cortante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cutting;sharp;harsh", + "example_sentence_native": "Su voz era fría y cortante.", + "example_sentence_english": "Her voice was cold and sharp.", + "pos": "adjective", + "word_frequency": 15026 + }, + { + "word": "cromo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chromium;collectible card;sticker", + "example_sentence_native": "Necesito un cromo para completar mi álbum.", + "example_sentence_english": "I need a sticker to complete my album.", + "pos": "noun", + "word_frequency": 15028 + }, + { + "word": "cántico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canticle;chant", + "example_sentence_native": "Los monjes entonaron un cántico antiguo.", + "example_sentence_english": "The monks chanted an ancient canticle.", + "pos": "noun", + "word_frequency": 15030 + }, + { + "word": "desarmar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disarm;to dismantle", + "example_sentence_native": "La policía logró desarmar al sospechoso.", + "example_sentence_english": "The police managed to disarm the suspect.", + "pos": "verb", + "word_frequency": 15034 + }, + { + "word": "desbordar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to overflow;to overwhelm", + "example_sentence_native": "El río se desbordó después de las fuertes lluvias.", + "example_sentence_english": "The river overflowed after the heavy rains.", + "pos": "verb", + "word_frequency": 15035 + }, + { + "word": "desmentir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deny;to refute;to debunk", + "example_sentence_native": "El político tuvo que desmentir los rumores.", + "example_sentence_english": "The politician had to deny the rumors.", + "pos": "verb", + "word_frequency": 15036 + }, + { + "word": "destierro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exile;banishment", + "example_sentence_native": "El rey lo condenó al destierro.", + "example_sentence_english": "The king condemned him to exile.", + "pos": "noun", + "word_frequency": 15037 + }, + { + "word": "diabólico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diabolical;devilish", + "example_sentence_native": "Tenía una risa diabólica.", + "example_sentence_english": "He had a diabolical laugh.", + "pos": "adjective", + "word_frequency": 15038 + }, + { + "word": "dicotomía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dichotomy", + "example_sentence_native": "Existe una clara dicotomía entre la teoría y la práctica.", + "example_sentence_english": "There is a clear dichotomy between theory and practice.", + "pos": "noun", + "word_frequency": 15039 + }, + { + "word": "diferenciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "differentiated", + "example_sentence_native": "Ofrecen un servicio diferenciado a sus clientes.", + "example_sentence_english": "They offer a differentiated service to their clients.", + "pos": "adjective", + "word_frequency": 15040 + }, + { + "word": "dominico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dominican (person;friar)", + "example_sentence_native": "El fraile dominico predicó en la iglesia.", + "example_sentence_english": "The Dominican friar preached in the church.", + "pos": "noun", + "word_frequency": 15041 + }, + { + "word": "eden", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eden", + "example_sentence_native": "El jardín era un verdadero edén.", + "example_sentence_english": "The garden was a true Eden.", + "pos": "noun", + "word_frequency": 15044 + }, + { + "word": "enriquecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enriched", + "example_sentence_native": "El suelo está enriquecido con nutrientes.", + "example_sentence_english": "The soil is enriched with nutrients.", + "pos": "adjective", + "word_frequency": 15045 + }, + { + "word": "escenografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "set design;scenography", + "example_sentence_native": "La escenografía de la obra era impresionante.", + "example_sentence_english": "The set design of the play was impressive.", + "pos": "noun", + "word_frequency": 15047 + }, + { + "word": "estría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stria;groove;streak", + "example_sentence_native": "La piel presentaba una estría después del estiramiento.", + "example_sentence_english": "The skin showed a stria after stretching.", + "pos": "noun", + "word_frequency": 15049 + }, + { + "word": "etanol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethanol", + "example_sentence_native": "El etanol se usa como combustible.", + "example_sentence_english": "Ethanol is used as fuel.", + "pos": "noun", + "word_frequency": 15050 + }, + { + "word": "evidenciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evidence;to show;to highlight", + "example_sentence_native": "Los datos evidencian un aumento de la temperatura.", + "example_sentence_english": "The data evidences an increase in temperature.", + "pos": "verb", + "word_frequency": 15051 + }, + { + "word": "excitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excite;to arouse;to stimulate", + "example_sentence_native": "La música puede excitar los sentidos.", + "example_sentence_english": "Music can excite the senses.", + "pos": "verb", + "word_frequency": 15052 + }, + { + "word": "excéntrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eccentric", + "example_sentence_native": "Su comportamiento era un poco excéntrico.", + "example_sentence_english": "His behavior was a bit eccentric.", + "pos": "adjective", + "word_frequency": 15053 + }, + { + "word": "expandido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expanded", + "example_sentence_native": "El material expandido es ligero.", + "example_sentence_english": "The expanded material is light.", + "pos": "adjective", + "word_frequency": 15054 + }, + { + "word": "extinguido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extinct;extinguished", + "example_sentence_native": "El volcán está extinguido.", + "example_sentence_english": "The volcano is extinct.", + "pos": "adjective", + "word_frequency": 15056 + }, + { + "word": "extrañado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprised;missed;estranged", + "example_sentence_native": "Se sintió extrañado por su repentina partida.", + "example_sentence_english": "He felt surprised by her sudden departure.", + "pos": "adjective", + "word_frequency": 15057 + }, + { + "word": "fechado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dated", + "example_sentence_native": "El documento está fechado el 15 de mayo.", + "example_sentence_english": "The document is dated May 15th.", + "pos": "adjective", + "word_frequency": 15060 + }, + { + "word": "ferretería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hardware store", + "example_sentence_native": "Compré los tornillos en la ferretería.", + "example_sentence_english": "I bought the screws at the hardware store.", + "pos": "noun", + "word_frequency": 15061 + }, + { + "word": "ferviente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fervent;ardent", + "example_sentence_native": "Es un ferviente defensor de los derechos humanos.", + "example_sentence_english": "He is a fervent defender of human rights.", + "pos": "adjective", + "word_frequency": 15062 + }, + { + "word": "fijado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed;set", + "example_sentence_native": "El precio está fijado.", + "example_sentence_english": "The price is fixed.", + "pos": "adjective", + "word_frequency": 15063 + }, + { + "word": "filiación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affiliation;parentage", + "example_sentence_native": "Se requiere la filiación para el registro.", + "example_sentence_english": "Affiliation is required for registration.", + "pos": "noun", + "word_frequency": 15064 + }, + { + "word": "flan", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "flan;custard", + "example_sentence_native": "Me encanta el flan de huevo.", + "example_sentence_english": "I love egg custard.", + "pos": "noun", + "word_frequency": 15065 + }, + { + "word": "foráneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreign;external", + "example_sentence_native": "Recibimos visitas de estudiantes foráneos.", + "example_sentence_english": "We receive visits from foreign students.", + "pos": "adjective", + "word_frequency": 15066 + }, + { + "word": "fraudulento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraudulent", + "example_sentence_native": "Fue acusado de actividades fraudulentas.", + "example_sentence_english": "He was accused of fraudulent activities.", + "pos": "adjective", + "word_frequency": 15067 + }, + { + "word": "friki", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geek;nerd", + "example_sentence_native": "Es un friki de los videojuegos.", + "example_sentence_english": "He's a video game geek.", + "pos": "noun", + "word_frequency": 15068 + }, + { + "word": "fundamentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to base;to found;to justify", + "example_sentence_native": "Necesitas fundamentar tus argumentos con pruebas.", + "example_sentence_english": "You need to base your arguments on evidence.", + "pos": "verb", + "word_frequency": 15069 + }, + { + "word": "garantia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guarantee;warranty", + "example_sentence_native": "El producto tiene dos años de garantía.", + "example_sentence_english": "The product has a two-year warranty.", + "pos": "noun", + "word_frequency": 15071 + }, + { + "word": "gin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gin", + "example_sentence_native": "Pidió un gin-tonic en el bar.", + "example_sentence_english": "He ordered a gin and tonic at the bar.", + "pos": "noun", + "word_frequency": 15073 + }, + { + "word": "girón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shred;piece;tatter", + "example_sentence_native": "Quedaban solo girones de la bandera.", + "example_sentence_english": "Only tatters of the flag remained.", + "pos": "noun", + "word_frequency": 15075 + }, + { + "word": "horrendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horrendous", + "example_sentence_native": "El olor era horrendo.", + "example_sentence_english": "The smell was horrendous.", + "pos": "adjective", + "word_frequency": 15080 + }, + { + "word": "hosting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hosting", + "example_sentence_native": "Necesitamos un buen servicio de hosting para nuestra página web.", + "example_sentence_english": "We need a good hosting service for our website.", + "pos": "noun", + "word_frequency": 15081 + }, + { + "word": "humildemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humbly", + "example_sentence_native": "Se disculpó humildemente por su error.", + "example_sentence_english": "He humbly apologized for his mistake.", + "pos": "adverb", + "word_frequency": 15082 + }, + { + "word": "humorístico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humorous", + "example_sentence_native": "Le encanta leer libros humorísticos.", + "example_sentence_english": "He loves reading humorous books.", + "pos": "adjective", + "word_frequency": 15083 + }, + { + "word": "idol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idol", + "example_sentence_native": "Es el ídolo de muchos jóvenes.", + "example_sentence_english": "He is the idol of many young people.", + "pos": "noun", + "word_frequency": 15084 + }, + { + "word": "inacción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaction", + "example_sentence_native": "La inacción del gobierno causó frustración.", + "example_sentence_english": "The government's inaction caused frustration.", + "pos": "noun", + "word_frequency": 15085 + }, + { + "word": "incurrir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incur", + "example_sentence_native": "Podría incurrir en una multa si no paga a tiempo.", + "example_sentence_english": "You could incur a fine if you don't pay on time.", + "pos": "verb", + "word_frequency": 15086 + }, + { + "word": "indeseable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undesirable", + "example_sentence_native": "Su comportamiento fue considerado indeseable.", + "example_sentence_english": "His behavior was considered undesirable.", + "pos": "adjective", + "word_frequency": 15087 + }, + { + "word": "instauración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment", + "example_sentence_native": "La instauración de la nueva ley tomó tiempo.", + "example_sentence_english": "The establishment of the new law took time.", + "pos": "noun", + "word_frequency": 15088 + }, + { + "word": "instrumentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instrumentation", + "example_sentence_native": "La instrumentación del proyecto requiere equipos especiales.", + "example_sentence_english": "The instrumentation of the project requires special equipment.", + "pos": "noun", + "word_frequency": 15089 + }, + { + "word": "jornalero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "day laborer", + "example_sentence_native": "Muchos jornaleros trabajan en el campo.", + "example_sentence_english": "Many day laborers work in the field.", + "pos": "noun", + "word_frequency": 15091 + }, + { + "word": "ladilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pubic louse;nuisance", + "example_sentence_native": "Esa persona es una ladilla, siempre quejándose.", + "example_sentence_english": "That person is a nuisance, always complaining.", + "pos": "noun", + "word_frequency": 15093 + }, + { + "word": "letrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lawyer", + "example_sentence_native": "Consultó a un letrado para su caso.", + "example_sentence_english": "He consulted a lawyer for his case.", + "pos": "noun", + "word_frequency": 15096 + }, + { + "word": "lince", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lynx", + "example_sentence_native": "El lince ibérico es una especie protegida.", + "example_sentence_english": "The Iberian lynx is a protected species.", + "pos": "noun", + "word_frequency": 15098 + }, + { + "word": "linchamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lynching", + "example_sentence_native": "La noticia del linchamiento conmocionó a la comunidad.", + "example_sentence_english": "The news of the lynching shocked the community.", + "pos": "noun", + "word_frequency": 15099 + }, + { + "word": "logrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successful", + "example_sentence_native": "Fue un diseño muy logrado.", + "example_sentence_english": "It was a very successful design.", + "pos": "adjective", + "word_frequency": 15100 + }, + { + "word": "longitudinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longitudinal", + "example_sentence_native": "Realizaron un estudio longitudinal sobre el desarrollo infantil.", + "example_sentence_english": "They conducted a longitudinal study on child development.", + "pos": "adjective", + "word_frequency": 15101 + }, + { + "word": "mariachi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mariachi", + "example_sentence_native": "Contrataron un mariachi para la fiesta.", + "example_sentence_english": "They hired a mariachi band for the party.", + "pos": "noun", + "word_frequency": 15102 + }, + { + "word": "metodo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "method", + "example_sentence_native": "Necesitamos un nuevo metodo de trabajo.", + "example_sentence_english": "We need a new method of working.", + "pos": "noun", + "word_frequency": 15104 + }, + { + "word": "milagrosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miraculously", + "example_sentence_native": "Milagrosamente, nadie resultó herido en el accidente.", + "example_sentence_english": "Miraculously, no one was injured in the accident.", + "pos": "adverb", + "word_frequency": 15107 + }, + { + "word": "minorista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retailer", + "example_sentence_native": "La tienda es un minorista de productos electrónicos.", + "example_sentence_english": "The store is a retailer of electronic products.", + "pos": "noun", + "word_frequency": 15108 + }, + { + "word": "montonero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Montonero (Argentine guerrilla)", + "example_sentence_native": "Los montoneros fueron un grupo político-militar en Argentina.", + "example_sentence_english": "The Montoneros were a political-military group in Argentina.", + "pos": "noun", + "word_frequency": 15110 + }, + { + "word": "narcótico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narcotic", + "example_sentence_native": "El médico recetó un narcótico para el dolor.", + "example_sentence_english": "The doctor prescribed a narcotic for the pain.", + "pos": "noun", + "word_frequency": 15112 + }, + { + "word": "nisiquiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not even", + "example_sentence_native": "No vino nisiquiera a saludar.", + "example_sentence_english": "He didn't even come to say hello.", + "pos": "adverb", + "word_frequency": 15113 + }, + { + "word": "obediente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obedient", + "example_sentence_native": "El perro es muy obediente.", + "example_sentence_english": "The dog is very obedient.", + "pos": "adjective", + "word_frequency": 15116 + }, + { + "word": "obligatoriedad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mandatory nature", + "example_sentence_native": "Se discute la obligatoriedad de la vacuna.", + "example_sentence_english": "The mandatory nature of the vaccine is being discussed.", + "pos": "noun", + "word_frequency": 15117 + }, + { + "word": "orquídea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchid", + "example_sentence_native": "La orquídea es una flor muy hermosa.", + "example_sentence_english": "The orchid is a very beautiful flower.", + "pos": "noun", + "word_frequency": 15121 + }, + { + "word": "ozono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ozone", + "example_sentence_native": "La capa de ozono protege la Tierra.", + "example_sentence_english": "The ozone layer protects the Earth.", + "pos": "noun", + "word_frequency": 15123 + }, + { + "word": "parcialidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partiality;bias", + "example_sentence_native": "El juez fue acusado de parcialidad.", + "example_sentence_english": "The judge was accused of partiality.", + "pos": "noun", + "word_frequency": 15124 + }, + { + "word": "pervertido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perverted", + "example_sentence_native": "Su comportamiento era bastante pervertido.", + "example_sentence_english": "His behavior was quite perverted.", + "pos": "adjective", + "word_frequency": 15126 + }, + { + "word": "pliegue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fold;crease", + "example_sentence_native": "Había un pliegue en la tela.", + "example_sentence_english": "There was a fold in the fabric.", + "pos": "noun", + "word_frequency": 15128 + }, + { + "word": "podrir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rot;to decay", + "example_sentence_native": "La fruta empezó a podrirse.", + "example_sentence_english": "The fruit started to rot.", + "pos": "verb", + "word_frequency": 15129 + }, + { + "word": "pregrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undergraduate (studies;degree)", + "example_sentence_native": "Está cursando sus estudios de pregrado.", + "example_sentence_english": "He is pursuing his undergraduate studies.", + "pos": "noun", + "word_frequency": 15132 + }, + { + "word": "pretendido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alleged;supposed;intended", + "example_sentence_native": "El pretendido ladrón fue arrestado.", + "example_sentence_english": "The alleged thief was arrested.", + "pos": "adjective", + "word_frequency": 15133 + }, + { + "word": "pupila", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pupil (of the eye);female student;disciple", + "example_sentence_native": "La pupila se dilata con la oscuridad.", + "example_sentence_english": "The pupil dilates with darkness.", + "pos": "noun", + "word_frequency": 15134 + }, + { + "word": "pus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pus", + "example_sentence_native": "La herida estaba llena de pus.", + "example_sentence_english": "The wound was full of pus.", + "pos": "noun", + "word_frequency": 15135 + }, + { + "word": "rareza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rarity;oddity;strangeness", + "example_sentence_native": "Su colección de sellos es una rareza.", + "example_sentence_english": "His stamp collection is a rarity.", + "pos": "noun", + "word_frequency": 15137 + }, + { + "word": "recreativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recreational", + "example_sentence_native": "Buscamos actividades recreativas para el fin de semana.", + "example_sentence_english": "We are looking for recreational activities for the weekend.", + "pos": "adjective", + "word_frequency": 15138 + }, + { + "word": "remitente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sender", + "example_sentence_native": "El nombre del remitente no estaba claro.", + "example_sentence_english": "The sender's name was not clear.", + "pos": "noun", + "word_frequency": 15139 + }, + { + "word": "resumido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summarized;concise", + "example_sentence_native": "El informe está resumido en una página.", + "example_sentence_english": "The report is summarized on one page.", + "pos": "adjective", + "word_frequency": 15141 + }, + { + "word": "retratado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portrayed;depicted", + "example_sentence_native": "El artista ha retratado la vida rural.", + "example_sentence_english": "The artist has portrayed rural life.", + "pos": "adjective", + "word_frequency": 15142 + }, + { + "word": "reunificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reunification", + "example_sentence_native": "La reunificación de Alemania fue un evento histórico.", + "example_sentence_english": "The reunification of Germany was a historical event.", + "pos": "noun", + "word_frequency": 15143 + }, + { + "word": "rondar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to patrol;to haunt;to hover around", + "example_sentence_native": "Un perro rondaba la casa.", + "example_sentence_english": "A dog was hovering around the house.", + "pos": "verb", + "word_frequency": 15144 + }, + { + "word": "rítmico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhythmic", + "example_sentence_native": "La música tenía un patrón rítmico.", + "example_sentence_english": "The music had a rhythmic pattern.", + "pos": "adjective", + "word_frequency": 15148 + }, + { + "word": "salame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salami;idiot (colloquial)", + "example_sentence_native": "Compramos un poco de salame para el sándwich.", + "example_sentence_english": "We bought some salami for the sandwich.", + "pos": "noun", + "word_frequency": 15149 + }, + { + "word": "sedición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sedition", + "example_sentence_native": "Fue acusado de sedición contra el gobierno.", + "example_sentence_english": "He was accused of sedition against the government.", + "pos": "noun", + "word_frequency": 15154 + }, + { + "word": "sepultado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buried;interred", + "example_sentence_native": "El tesoro estaba sepultado bajo tierra.", + "example_sentence_english": "The treasure was buried underground.", + "pos": "adjective", + "word_frequency": 15155 + }, + { + "word": "señorito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "young master;dandy;spoiled rich boy", + "example_sentence_native": "Se comporta como un señorito, sin trabajar.", + "example_sentence_english": "He behaves like a spoiled rich boy, without working.", + "pos": "noun", + "word_frequency": 15157 + }, + { + "word": "sumido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submerged", + "example_sentence_native": "Estaba sumido en sus pensamientos.", + "example_sentence_english": "He was plunged into his thoughts.", + "pos": "adjective", + "word_frequency": 15162 + }, + { + "word": "suspirar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sigh", + "example_sentence_native": "Ella suspiró de alivio.", + "example_sentence_english": "She sighed with relief.", + "pos": "verb", + "word_frequency": 15163 + }, + { + "word": "tarima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platform", + "example_sentence_native": "El orador subió a la tarima.", + "example_sentence_english": "The speaker went up to the platform.", + "pos": "noun", + "word_frequency": 15164 + }, + { + "word": "tennis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tennis", + "example_sentence_native": "Me gusta jugar al tennis los fines de semana.", + "example_sentence_english": "I like to play tennis on weekends.", + "pos": "noun", + "word_frequency": 15165 + }, + { + "word": "thai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai", + "example_sentence_native": "Comimos comida thai anoche.", + "example_sentence_english": "We ate Thai food last night.", + "pos": "adjective", + "word_frequency": 15166 + }, + { + "word": "tormento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torment", + "example_sentence_native": "Su vida fue un tormento constante.", + "example_sentence_english": "His life was a constant torment.", + "pos": "noun", + "word_frequency": 15168 + }, + { + "word": "torturado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tortured", + "example_sentence_native": "El prisionero parecía torturado.", + "example_sentence_english": "The prisoner looked tortured.", + "pos": "adjective", + "word_frequency": 15169 + }, + { + "word": "totalitarismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "totalitarianism", + "example_sentence_native": "El totalitarismo es una forma de gobierno opresiva.", + "example_sentence_english": "Totalitarianism is an oppressive form of government.", + "pos": "noun", + "word_frequency": 15170 + }, + { + "word": "transportado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transported", + "example_sentence_native": "La mercancía fue transportada por barco.", + "example_sentence_english": "The merchandise was transported by ship.", + "pos": "adjective", + "word_frequency": 15172 + }, + { + "word": "traumatismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trauma", + "example_sentence_native": "Sufrió un traumatismo craneoencefálico.", + "example_sentence_english": "He suffered a craniocerebral trauma.", + "pos": "noun", + "word_frequency": 15173 + }, + { + "word": "trecho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stretch", + "example_sentence_native": "Recorrimos un largo trecho a pie.", + "example_sentence_english": "We covered a long stretch on foot.", + "pos": "noun", + "word_frequency": 15174 + }, + { + "word": "veintena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "score", + "example_sentence_native": "Una veintena de personas asistieron al evento.", + "example_sentence_english": "About twenty people attended the event.", + "pos": "noun", + "word_frequency": 15180 + }, + { + "word": "yema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yolk", + "example_sentence_native": "La yema del huevo es amarilla.", + "example_sentence_english": "The egg yolk is yellow.", + "pos": "noun", + "word_frequency": 15187 + }, + { + "word": "abra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cove", + "example_sentence_native": "El barco entró en la pequeña abra.", + "example_sentence_english": "The boat entered the small cove.", + "pos": "noun", + "word_frequency": 15190 + }, + { + "word": "acosar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harass", + "example_sentence_native": "Es importante denunciar el acoso.", + "example_sentence_english": "It is important to report harassment.", + "pos": "verb", + "word_frequency": 15191 + }, + { + "word": "adherir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adhere", + "example_sentence_native": "El sello se adhirió al sobre.", + "example_sentence_english": "The stamp adhered to the envelope.", + "pos": "verb", + "word_frequency": 15192 + }, + { + "word": "adjudicar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to award", + "example_sentence_native": "Le adjudicaron el premio al mejor proyecto.", + "example_sentence_english": "They awarded him the prize for the best project.", + "pos": "verb", + "word_frequency": 15193 + }, + { + "word": "afiliar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affiliate", + "example_sentence_native": "Decidió afiliarse al partido político.", + "example_sentence_english": "He decided to affiliate with the political party.", + "pos": "verb", + "word_frequency": 15195 + }, + { + "word": "aguardiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brandy", + "example_sentence_native": "Bebimos un poco de aguardiente para calentarnos.", + "example_sentence_english": "We drank some brandy to warm ourselves.", + "pos": "noun", + "word_frequency": 15196 + }, + { + "word": "amp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amplifier", + "example_sentence_native": "El guitarrista conectó su guitarra al amp.", + "example_sentence_english": "The guitarist connected his guitar to the amp.", + "pos": "noun", + "word_frequency": 15200 + }, + { + "word": "balada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballad", + "example_sentence_native": "Escuchamos una hermosa balada romántica.", + "example_sentence_english": "We listened to a beautiful romantic ballad.", + "pos": "noun", + "word_frequency": 15204 + }, + { + "word": "blasfemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blasphemy", + "example_sentence_native": "La blasfemia es considerada un pecado en muchas religiones.", + "example_sentence_english": "Blasphemy is considered a sin in many religions.", + "pos": "noun", + "word_frequency": 15210 + }, + { + "word": "bocadillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sandwich", + "example_sentence_native": "Me comí un bocadillo de jamón y queso.", + "example_sentence_english": "I ate a ham and cheese sandwich.", + "pos": "noun", + "word_frequency": 15211 + }, + { + "word": "bronco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bronco", + "example_sentence_native": "El jinete intentó domar al bronco.", + "example_sentence_english": "The rider tried to tame the bronco.", + "pos": "noun", + "word_frequency": 15215 + }, + { + "word": "búfalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buffalo", + "example_sentence_native": "Vimos un búfalo en el zoológico.", + "example_sentence_english": "We saw a buffalo at the zoo.", + "pos": "noun", + "word_frequency": 15216 + }, + { + "word": "búho", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "owl", + "example_sentence_native": "El búho es un ave nocturna.", + "example_sentence_english": "The owl is a nocturnal bird.", + "pos": "noun", + "word_frequency": 15217 + }, + { + "word": "camuflaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camouflage", + "example_sentence_native": "Los soldados usaban ropa de camuflaje.", + "example_sentence_english": "The soldiers wore camouflage clothing.", + "pos": "noun", + "word_frequency": 15218 + }, + { + "word": "cardiovascular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiovascular", + "example_sentence_native": "Es importante mantener una buena salud cardiovascular.", + "example_sentence_english": "It is important to maintain good cardiovascular health.", + "pos": "adjective", + "word_frequency": 15219 + }, + { + "word": "cartero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mailman", + "example_sentence_native": "El cartero entregó una carta importante.", + "example_sentence_english": "The mailman delivered an important letter.", + "pos": "noun", + "word_frequency": 15220 + }, + { + "word": "cervical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cervical", + "example_sentence_native": "Tuve dolor en la columna cervical.", + "example_sentence_english": "I had pain in my cervical spine.", + "pos": "adjective", + "word_frequency": 15223 + }, + { + "word": "cetro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scepter", + "example_sentence_native": "El rey sostenía el cetro como símbolo de su poder.", + "example_sentence_english": "The king held the scepter as a symbol of his power.", + "pos": "noun", + "word_frequency": 15224 + }, + { + "word": "chamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid", + "example_sentence_native": "Ese chamo es muy inteligente.", + "example_sentence_english": "That kid is very intelligent.", + "pos": "noun", + "word_frequency": 15225 + }, + { + "word": "choco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cuttlefish", + "example_sentence_native": "Pedimos choco a la plancha en el restaurante.", + "example_sentence_english": "We ordered grilled cuttlefish at the restaurant.", + "pos": "noun", + "word_frequency": 15226 + }, + { + "word": "cinematografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cinematography", + "example_sentence_native": "La cinematografía de la película era impresionante.", + "example_sentence_english": "The cinematography of the film was impressive.", + "pos": "noun", + "word_frequency": 15227 + }, + { + "word": "circundante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrounding", + "example_sentence_native": "Exploramos el área circundante al lago.", + "example_sentence_english": "We explored the surrounding area of the lake.", + "pos": "adjective", + "word_frequency": 15228 + }, + { + "word": "colapsar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse", + "example_sentence_native": "El edificio viejo podría colapsar en cualquier momento.", + "example_sentence_english": "The old building could collapse at any moment.", + "pos": "verb", + "word_frequency": 15229 + }, + { + "word": "confortable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortable", + "example_sentence_native": "El sofá es muy confortable.", + "example_sentence_english": "The sofa is very comfortable.", + "pos": "adjective", + "word_frequency": 15230 + }, + { + "word": "conservadurismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conservatism", + "example_sentence_native": "El conservadurismo es una ideología política.", + "example_sentence_english": "Conservatism is a political ideology.", + "pos": "noun", + "word_frequency": 15232 + }, + { + "word": "contralor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comptroller", + "example_sentence_native": "El contralor revisó las cuentas de la empresa.", + "example_sentence_english": "The comptroller reviewed the company's accounts.", + "pos": "noun", + "word_frequency": 15233 + }, + { + "word": "contundencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forcefulness", + "example_sentence_native": "La contundencia de sus argumentos fue innegable.", + "example_sentence_english": "The forcefulness of his arguments was undeniable.", + "pos": "noun", + "word_frequency": 15234 + }, + { + "word": "cromosoma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chromosome", + "example_sentence_native": "Los cromosomas contienen nuestra información genética.", + "example_sentence_english": "Chromosomes contain our genetic information.", + "pos": "noun", + "word_frequency": 15235 + }, + { + "word": "cronológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronological", + "example_sentence_native": "Ordenamos los eventos en orden cronológico.", + "example_sentence_english": "We ordered the events in chronological order.", + "pos": "adjective", + "word_frequency": 15236 + }, + { + "word": "derby", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derby", + "example_sentence_native": "Asistimos al derby de caballos el fin de semana.", + "example_sentence_english": "We attended the horse derby on the weekend.", + "pos": "noun", + "word_frequency": 15243 + }, + { + "word": "desertor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserter", + "example_sentence_native": "El soldado fue declarado desertor.", + "example_sentence_english": "The soldier was declared a deserter.", + "pos": "noun", + "word_frequency": 15244 + }, + { + "word": "deshonra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonor", + "example_sentence_native": "Su acción trajo deshonra a su familia.", + "example_sentence_english": "His action brought dishonor to his family.", + "pos": "noun", + "word_frequency": 15245 + }, + { + "word": "deslizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slide", + "example_sentence_native": "El niño se deslizó por el tobogán.", + "example_sentence_english": "The child slid down the slide.", + "pos": "verb", + "word_frequency": 15246 + }, + { + "word": "desmantelar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismantle", + "example_sentence_native": "Decidieron desmantelar la vieja fábrica.", + "example_sentence_english": "They decided to dismantle the old factory.", + "pos": "verb", + "word_frequency": 15247 + }, + { + "word": "desodorante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deodorant", + "example_sentence_native": "Necesito comprar un desodorante nuevo.", + "example_sentence_english": "I need to buy a new deodorant.", + "pos": "noun", + "word_frequency": 15248 + }, + { + "word": "dial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dial", + "example_sentence_native": "Giró el dial de la radio para encontrar una estación.", + "example_sentence_english": "He turned the radio dial to find a station.", + "pos": "noun", + "word_frequency": 15250 + }, + { + "word": "diversificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diversify", + "example_sentence_native": "Es importante diversificar las inversiones.", + "example_sentence_english": "It's important to diversify investments.", + "pos": "verb", + "word_frequency": 15251 + }, + { + "word": "eminentemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eminently", + "example_sentence_native": "Es un problema eminentemente político.", + "example_sentence_english": "It is an eminently political problem.", + "pos": "adverb", + "word_frequency": 15255 + }, + { + "word": "encapuchar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put a hood on", + "example_sentence_native": "El ladrón intentó encapucharse antes de entrar.", + "example_sentence_english": "The thief tried to put his hood on before entering.", + "pos": "verb", + "word_frequency": 15256 + }, + { + "word": "enfermar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get sick", + "example_sentence_native": "No quiero enfermarme antes de las vacaciones.", + "example_sentence_english": "I don't want to get sick before the holidays.", + "pos": "verb", + "word_frequency": 15257 + }, + { + "word": "escaparate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shop window", + "example_sentence_native": "Miramos los escaparates de las tiendas.", + "example_sentence_english": "We looked at the shop windows.", + "pos": "noun", + "word_frequency": 15258 + }, + { + "word": "escolaridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "schooling", + "example_sentence_native": "Su escolaridad fue excelente.", + "example_sentence_english": "His schooling was excellent.", + "pos": "noun", + "word_frequency": 15259 + }, + { + "word": "especifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specific", + "example_sentence_native": "Necesito una respuesta específica.", + "example_sentence_english": "I need a specific answer.", + "pos": "adjective", + "word_frequency": 15260 + }, + { + "word": "establo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable", + "example_sentence_native": "Los caballos están en el establo.", + "example_sentence_english": "The horses are in the stable.", + "pos": "noun", + "word_frequency": 15261 + }, + { + "word": "fantasia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy", + "example_sentence_native": "Le gusta leer libros de fantasía.", + "example_sentence_english": "He likes to read fantasy books.", + "pos": "noun", + "word_frequency": 15262 + }, + { + "word": "festín", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feast", + "example_sentence_native": "Prepararon un gran festín para la celebración.", + "example_sentence_english": "They prepared a great feast for the celebration.", + "pos": "noun", + "word_frequency": 15264 + }, + { + "word": "file", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "file", + "example_sentence_native": "Guarda el documento en un nuevo file.", + "example_sentence_english": "Save the document in a new file.", + "pos": "noun", + "word_frequency": 15266 + }, + { + "word": "flag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flag", + "example_sentence_native": "Puedes poner un flag en este mensaje.", + "example_sentence_english": "You can put a flag on this message.", + "pos": "noun", + "word_frequency": 15267 + }, + { + "word": "folclore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folklore", + "example_sentence_native": "Estudiamos el folclore de la región.", + "example_sentence_english": "We studied the folklore of the region.", + "pos": "noun", + "word_frequency": 15269 + }, + { + "word": "fotografia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photograph", + "example_sentence_native": "Me gusta tomar fotografías.", + "example_sentence_english": "I like to take photographs.", + "pos": "noun", + "word_frequency": 15270 + }, + { + "word": "frustrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to frustrate", + "example_sentence_native": "La situación me frustra mucho.", + "example_sentence_english": "The situation frustrates me a lot.", + "pos": "verb", + "word_frequency": 15271 + }, + { + "word": "fundir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to melt;to fuse", + "example_sentence_native": "El calor puede fundir el chocolate.", + "example_sentence_english": "Heat can melt chocolate.", + "pos": "verb", + "word_frequency": 15272 + }, + { + "word": "galera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galley;top hat", + "example_sentence_native": "La galera navegó por el mar.", + "example_sentence_english": "The galley sailed across the sea.", + "pos": "noun", + "word_frequency": 15273 + }, + { + "word": "gastronómico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastronomic", + "example_sentence_native": "La ciudad es famosa por su oferta gastronómica.", + "example_sentence_english": "The city is famous for its gastronomic offer.", + "pos": "adjective", + "word_frequency": 15274 + }, + { + "word": "geek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geek", + "example_sentence_native": "Es un geek de la tecnología.", + "example_sentence_english": "He is a technology geek.", + "pos": "noun", + "word_frequency": 15275 + }, + { + "word": "globalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globally", + "example_sentence_native": "El problema afecta globalmente a la economía.", + "example_sentence_english": "The problem globally affects the economy.", + "pos": "adverb", + "word_frequency": 15277 + }, + { + "word": "grabadora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recorder", + "example_sentence_native": "Usé la grabadora para la entrevista.", + "example_sentence_english": "I used the recorder for the interview.", + "pos": "noun", + "word_frequency": 15279 + }, + { + "word": "hemorroide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemorrhoid", + "example_sentence_native": "La hemorroide le causaba mucho dolor.", + "example_sentence_english": "The hemorrhoid caused him a lot of pain.", + "pos": "noun", + "word_frequency": 15283 + }, + { + "word": "hipódromo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racetrack", + "example_sentence_native": "Fuimos al hipódromo a ver las carreras de caballos.", + "example_sentence_english": "We went to the racetrack to watch the horse races.", + "pos": "noun", + "word_frequency": 15284 + }, + { + "word": "homólogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homologous", + "example_sentence_native": "El ministro se reunió con su homólogo francés.", + "example_sentence_english": "The minister met with his French counterpart.", + "pos": "adjective", + "word_frequency": 15285 + }, + { + "word": "horroroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horrible", + "example_sentence_native": "La película era horrorosa, no me gustó nada.", + "example_sentence_english": "The movie was horrible, I didn't like it at all.", + "pos": "adjective", + "word_frequency": 15286 + }, + { + "word": "hostigamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassment", + "example_sentence_native": "La empresa tiene una política contra el hostigamiento laboral.", + "example_sentence_english": "The company has a policy against workplace harassment.", + "pos": "noun", + "word_frequency": 15287 + }, + { + "word": "hídrico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "water-related", + "example_sentence_native": "La gestión de los recursos hídricos es crucial.", + "example_sentence_english": "The management of water resources is crucial.", + "pos": "adjective", + "word_frequency": 15288 + }, + { + "word": "ibero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Iberian", + "example_sentence_native": "La cultura ibera dejó una huella profunda en la península.", + "example_sentence_english": "The Iberian culture left a deep mark on the peninsula.", + "pos": "noun", + "word_frequency": 15289 + }, + { + "word": "individualidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individuality", + "example_sentence_native": "Cada persona tiene su propia individualidad.", + "example_sentence_english": "Each person has their own individuality.", + "pos": "noun", + "word_frequency": 15291 + }, + { + "word": "indo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Indo", + "example_sentence_native": "Las lenguas indoeuropeas tienen un origen común.", + "example_sentence_english": "Indo-European languages have a common origin.", + "pos": "noun", + "word_frequency": 15292 + }, + { + "word": "infeccioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infectious", + "example_sentence_native": "La gripe es una enfermedad infecciosa.", + "example_sentence_english": "Flu is an infectious disease.", + "pos": "adjective", + "word_frequency": 15293 + }, + { + "word": "inquebrantable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unbreakable", + "example_sentence_native": "Tenía una fe inquebrantable en sus principios.", + "example_sentence_english": "He had an unwavering faith in his principles.", + "pos": "adjective", + "word_frequency": 15295 + }, + { + "word": "insatisfacción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissatisfaction", + "example_sentence_native": "Expresó su insatisfacción con el servicio.", + "example_sentence_english": "He expressed his dissatisfaction with the service.", + "pos": "noun", + "word_frequency": 15296 + }, + { + "word": "internauta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internet user", + "example_sentence_native": "Los internautas pasaron horas navegando por la red.", + "example_sentence_english": "The internet users spent hours browsing the net.", + "pos": "noun", + "word_frequency": 15297 + }, + { + "word": "jurídicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legally", + "example_sentence_native": "El contrato es jurídicamente vinculante.", + "example_sentence_english": "The contract is legally binding.", + "pos": "adverb", + "word_frequency": 15299 + }, + { + "word": "lavabo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink", + "example_sentence_native": "Lávate las manos en el lavabo.", + "example_sentence_english": "Wash your hands in the sink.", + "pos": "noun", + "word_frequency": 15301 + }, + { + "word": "lavadero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laundry room", + "example_sentence_native": "La ropa sucia está en el lavadero.", + "example_sentence_english": "The dirty clothes are in the laundry room.", + "pos": "noun", + "word_frequency": 15302 + }, + { + "word": "lejanía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distance", + "example_sentence_native": "Desde la lejanía, las montañas parecían pequeñas.", + "example_sentence_english": "From a distance, the mountains looked small.", + "pos": "noun", + "word_frequency": 15303 + }, + { + "word": "lencería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lingerie", + "example_sentence_native": "Compró un conjunto de lencería nuevo.", + "example_sentence_english": "She bought a new lingerie set.", + "pos": "noun", + "word_frequency": 15304 + }, + { + "word": "manipulador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulator", + "example_sentence_native": "Es un manipulador que siempre consigue lo que quiere.", + "example_sentence_english": "He is a manipulator who always gets what he wants.", + "pos": "noun", + "word_frequency": 15309 + }, + { + "word": "mantra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mantra", + "example_sentence_native": "Repetía el mantra para encontrar la calma.", + "example_sentence_english": "He repeated the mantra to find calm.", + "pos": "noun", + "word_frequency": 15310 + }, + { + "word": "marciano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Martian", + "example_sentence_native": "En la película, un marciano visitaba la Tierra.", + "example_sentence_english": "In the movie, a Martian visited Earth.", + "pos": "noun", + "word_frequency": 15311 + }, + { + "word": "mote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nickname", + "example_sentence_native": "Su mote es 'El Rápido'.", + "example_sentence_english": "His nickname is 'The Fast One'.", + "pos": "noun", + "word_frequency": 15317 + }, + { + "word": "moño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bun", + "example_sentence_native": "Se hizo un moño alto para la fiesta.", + "example_sentence_english": "She put her hair in a high bun for the party.", + "pos": "noun", + "word_frequency": 15319 + }, + { + "word": "mástil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mast", + "example_sentence_native": "El barco tenía un mástil alto.", + "example_sentence_english": "The ship had a tall mast.", + "pos": "noun", + "word_frequency": 15320 + }, + { + "word": "nadador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimmer", + "example_sentence_native": "El nadador ganó la carrera.", + "example_sentence_english": "The swimmer won the race.", + "pos": "noun", + "word_frequency": 15321 + }, + { + "word": "nado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swim (noun)", + "example_sentence_native": "Disfruto de un buen nado por la mañana.", + "example_sentence_english": "I enjoy a good swim in the morning.", + "pos": "noun", + "word_frequency": 15322 + }, + { + "word": "negatividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negativity", + "example_sentence_native": "Intenta evitar la negatividad en tu vida.", + "example_sentence_english": "Try to avoid negativity in your life.", + "pos": "noun", + "word_frequency": 15324 + }, + { + "word": "nocivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful;noxious", + "example_sentence_native": "Fumar es nocivo para la salud.", + "example_sentence_english": "Smoking is harmful to health.", + "pos": "adjective", + "word_frequency": 15325 + }, + { + "word": "nómada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nomad", + "example_sentence_native": "Las tribus nómadas se movían constantemente.", + "example_sentence_english": "The nomadic tribes moved constantly.", + "pos": "noun", + "word_frequency": 15326 + }, + { + "word": "orgullosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proudly", + "example_sentence_native": "Él aceptó el premio orgullosamente.", + "example_sentence_english": "He proudly accepted the award.", + "pos": "adverb", + "word_frequency": 15328 + }, + { + "word": "pacifista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pacifist", + "example_sentence_native": "Es un pacifista convencido.", + "example_sentence_english": "He is a convinced pacifist.", + "pos": "noun", + "word_frequency": 15330 + }, + { + "word": "pagaré", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promissory note", + "example_sentence_native": "Firmó un pagaré para el préstamo.", + "example_sentence_english": "He signed a promissory note for the loan.", + "pos": "noun", + "word_frequency": 15331 + }, + { + "word": "papelera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wastebasket;paper bin", + "example_sentence_native": "Tira el papel en la papelera.", + "example_sentence_english": "Throw the paper in the wastebasket.", + "pos": "noun", + "word_frequency": 15332 + }, + { + "word": "paralelismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parallelism", + "example_sentence_native": "Hay un claro paralelismo entre ambos casos.", + "example_sentence_english": "There is a clear parallelism between both cases.", + "pos": "noun", + "word_frequency": 15333 + }, + { + "word": "paralizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to paralyze", + "example_sentence_native": "El miedo puede paralizar a una persona.", + "example_sentence_english": "Fear can paralyze a person.", + "pos": "verb", + "word_frequency": 15334 + }, + { + "word": "pasional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionate", + "example_sentence_native": "Es una persona muy pasional en todo lo que hace.", + "example_sentence_english": "She is a very passionate person in everything she does.", + "pos": "adjective", + "word_frequency": 15335 + }, + { + "word": "pelaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fur;coat (of an animal)", + "example_sentence_native": "El perro tiene un pelaje suave y brillante.", + "example_sentence_english": "The dog has soft, shiny fur.", + "pos": "noun", + "word_frequency": 15336 + }, + { + "word": "piquete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picket (line);protest line", + "example_sentence_native": "Los trabajadores formaron un piquete frente a la fábrica.", + "example_sentence_english": "The workers formed a picket line in front of the factory.", + "pos": "noun", + "word_frequency": 15339 + }, + { + "word": "pragmático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pragmatic", + "example_sentence_native": "Su enfoque es muy pragmático.", + "example_sentence_english": "His approach is very pragmatic.", + "pos": "adjective", + "word_frequency": 15341 + }, + { + "word": "pretendiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitor;claimant", + "example_sentence_native": "La princesa tenía muchos pretendientes.", + "example_sentence_english": "The princess had many suitors.", + "pos": "noun", + "word_frequency": 15342 + }, + { + "word": "propulsión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propulsion", + "example_sentence_native": "El avión usa propulsión a chorro.", + "example_sentence_english": "The airplane uses jet propulsion.", + "pos": "noun", + "word_frequency": 15343 + }, + { + "word": "proyector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "projector", + "example_sentence_native": "Necesitamos un proyector para la presentación.", + "example_sentence_english": "We need a projector for the presentation.", + "pos": "noun", + "word_frequency": 15344 + }, + { + "word": "psicópata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychopath", + "example_sentence_native": "El personaje principal era un psicópata.", + "example_sentence_english": "The main character was a psychopath.", + "pos": "noun", + "word_frequency": 15345 + }, + { + "word": "quirófano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operating room", + "example_sentence_native": "El paciente fue llevado al quirófano.", + "example_sentence_english": "The patient was taken to the operating room.", + "pos": "noun", + "word_frequency": 15346 + }, + { + "word": "racionamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationing", + "example_sentence_native": "Hubo racionamiento de alimentos durante la guerra.", + "example_sentence_english": "There was food rationing during the war.", + "pos": "noun", + "word_frequency": 15347 + }, + { + "word": "raid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid", + "example_sentence_native": "La policía hizo un raid en el almacén.", + "example_sentence_english": "The police conducted a raid on the warehouse.", + "pos": "noun", + "word_frequency": 15348 + }, + { + "word": "recolector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collector;gatherer", + "example_sentence_native": "El recolector de basura viene por la mañana.", + "example_sentence_english": "The garbage collector comes in the morning.", + "pos": "noun", + "word_frequency": 15349 + }, + { + "word": "reflexivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflective;thoughtful", + "example_sentence_native": "Es una persona muy reflexiva antes de tomar decisiones.", + "example_sentence_english": "He is a very reflective person before making decisions.", + "pos": "adjective", + "word_frequency": 15350 + }, + { + "word": "religiosidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "religiosity", + "example_sentence_native": "Su religiosidad es muy profunda.", + "example_sentence_english": "His religiosity is very deep.", + "pos": "noun", + "word_frequency": 15351 + }, + { + "word": "representatividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representativeness", + "example_sentence_native": "La representatividad del sindicato es cuestionada.", + "example_sentence_english": "The representativeness of the union is questioned.", + "pos": "noun", + "word_frequency": 15352 + }, + { + "word": "riña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarrel;brawl", + "example_sentence_native": "Tuvieron una riña por un malentendido.", + "example_sentence_english": "They had a quarrel over a misunderstanding.", + "pos": "noun", + "word_frequency": 15355 + }, + { + "word": "roedor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rodent", + "example_sentence_native": "El ratón es un tipo de roedor.", + "example_sentence_english": "The mouse is a type of rodent.", + "pos": "noun", + "word_frequency": 15356 + }, + { + "word": "secretariado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretariat;secretarial staff", + "example_sentence_native": "El secretariado se encarga de la correspondencia.", + "example_sentence_english": "The secretariat handles the correspondence.", + "pos": "noun", + "word_frequency": 15358 + }, + { + "word": "serge", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "serge (fabric)", + "example_sentence_native": "El uniforme estaba hecho de un tejido de serge resistente.", + "example_sentence_english": "The uniform was made of a durable serge fabric.", + "pos": "noun", + "word_frequency": 15359 + }, + { + "word": "silenciosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silently", + "example_sentence_native": "Entró silenciosamente en la habitación para no despertar a nadie.", + "example_sentence_english": "He entered the room silently so as not to wake anyone.", + "pos": "adverb", + "word_frequency": 15363 + }, + { + "word": "sionista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zionist", + "example_sentence_native": "El movimiento sionista buscaba el establecimiento de un estado judío.", + "example_sentence_english": "The Zionist movement sought the establishment of a Jewish state.", + "pos": "noun", + "word_frequency": 15364 + }, + { + "word": "startup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "startup", + "example_sentence_native": "Trabaja en una startup de tecnología muy prometedora.", + "example_sentence_english": "He works at a very promising tech startup.", + "pos": "noun", + "word_frequency": 15365 + }, + { + "word": "suscribir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to subscribe", + "example_sentence_native": "Me voy a suscribir a tu canal de YouTube.", + "example_sentence_english": "I'm going to subscribe to your YouTube channel.", + "pos": "verb", + "word_frequency": 15367 + }, + { + "word": "titanio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titanium", + "example_sentence_native": "El titanio es un metal muy resistente y ligero.", + "example_sentence_english": "Titanium is a very strong and light metal.", + "pos": "noun", + "word_frequency": 15370 + }, + { + "word": "trading", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trading", + "example_sentence_native": "El trading de acciones puede ser muy volátil.", + "example_sentence_english": "Stock trading can be very volatile.", + "pos": "noun", + "word_frequency": 15371 + }, + { + "word": "travieso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mischievous", + "example_sentence_native": "El niño es muy travieso y siempre está haciendo bromas.", + "example_sentence_english": "The boy is very mischievous and is always playing jokes.", + "pos": "noun", + "word_frequency": 15372 + }, + { + "word": "troika", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "troika", + "example_sentence_native": "La troika supervisó las reformas económicas en Grecia.", + "example_sentence_english": "The troika oversaw the economic reforms in Greece.", + "pos": "noun", + "word_frequency": 15373 + }, + { + "word": "tumbar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to knock down", + "example_sentence_native": "El viento tumbó el árbol viejo.", + "example_sentence_english": "The wind knocked down the old tree.", + "pos": "verb", + "word_frequency": 15374 + }, + { + "word": "ultravioleta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultraviolet", + "example_sentence_native": "La luz ultravioleta puede ser dañina para la piel.", + "example_sentence_english": "Ultraviolet light can be harmful to the skin.", + "pos": "adjective", + "word_frequency": 15375 + }, + { + "word": "unilateralmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unilaterally", + "example_sentence_native": "El país decidió actuar unilateralmente en el conflicto.", + "example_sentence_english": "The country decided to act unilaterally in the conflict.", + "pos": "adverb", + "word_frequency": 15376 + }, + { + "word": "valija", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitcase", + "example_sentence_native": "Preparó su valija para el viaje.", + "example_sentence_english": "He packed his suitcase for the trip.", + "pos": "noun", + "word_frequency": 15378 + }, + { + "word": "vizconde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viscount", + "example_sentence_native": "El vizconde asistió a la reunión de la nobleza.", + "example_sentence_english": "The viscount attended the nobility meeting.", + "pos": "noun", + "word_frequency": 15381 + }, + { + "word": "zeta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Z (the letter)", + "example_sentence_native": "La última letra del alfabeto español es la zeta.", + "example_sentence_english": "The last letter of the Spanish alphabet is Z.", + "pos": "noun", + "word_frequency": 15384 + }, + { + "word": "zodiaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zodiac", + "example_sentence_native": "Mi signo del zodiaco es Leo.", + "example_sentence_english": "My zodiac sign is Leo.", + "pos": "noun", + "word_frequency": 15385 + }, + { + "word": "adornar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adorn", + "example_sentence_native": "Vamos a adornar la casa para la Navidad.", + "example_sentence_english": "We are going to decorate the house for Christmas.", + "pos": "verb", + "word_frequency": 15388 + }, + { + "word": "adscrito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assigned", + "example_sentence_native": "Es un profesor adscrito al departamento de historia.", + "example_sentence_english": "He is a professor assigned to the history department.", + "pos": "adjective", + "word_frequency": 15390 + }, + { + "word": "aguinaldo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christmas bonus", + "example_sentence_native": "Recibí mi aguinaldo a principios de diciembre.", + "example_sentence_english": "I received my Christmas bonus at the beginning of December.", + "pos": "noun", + "word_frequency": 15392 + }, + { + "word": "alarde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boast", + "example_sentence_native": "No me gusta hacer alarde de mis logros.", + "example_sentence_english": "I don't like to boast about my achievements.", + "pos": "noun", + "word_frequency": 15393 + }, + { + "word": "alertar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alert", + "example_sentence_native": "La policía alertó a los ciudadanos sobre el peligro.", + "example_sentence_english": "The police alerted the citizens about the danger.", + "pos": "verb", + "word_frequency": 15395 + }, + { + "word": "anaranjado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orange", + "example_sentence_native": "El cielo se puso de color anaranjado al atardecer.", + "example_sentence_english": "The sky turned orange at sunset.", + "pos": "adjective", + "word_frequency": 15399 + }, + { + "word": "antiterrorista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiterrorist", + "example_sentence_native": "La policía llevó a cabo una operación antiterrorista.", + "example_sentence_english": "The police carried out an antiterrorist operation.", + "pos": "adjective", + "word_frequency": 15400 + }, + { + "word": "arcade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arcade", + "example_sentence_native": "Pasamos la tarde en la sala de juegos arcade.", + "example_sentence_english": "We spent the afternoon at the arcade game room.", + "pos": "noun", + "word_frequency": 15401 + }, + { + "word": "archivar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to file;to archive", + "example_sentence_native": "Necesito archivar estos documentos importantes.", + "example_sentence_english": "I need to file these important documents.", + "pos": "verb", + "word_frequency": 15402 + }, + { + "word": "asistencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welfare;assistance-related", + "example_sentence_native": "El gobierno ha mejorado los servicios asistenciales.", + "example_sentence_english": "The government has improved welfare services.", + "pos": "adjective", + "word_frequency": 15403 + }, + { + "word": "atrevimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daring;boldness", + "example_sentence_native": "Su atrevimiento le permitió alcanzar sus metas.", + "example_sentence_english": "His daring allowed him to achieve his goals.", + "pos": "noun", + "word_frequency": 15404 + }, + { + "word": "autodefensa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-defense", + "example_sentence_native": "Tomó clases de autodefensa para sentirse más segura.", + "example_sentence_english": "She took self-defense classes to feel safer.", + "pos": "noun", + "word_frequency": 15405 + }, + { + "word": "barranca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ravine;gully", + "example_sentence_native": "El coche cayó por la barranca.", + "example_sentence_english": "The car fell down the ravine.", + "pos": "noun", + "word_frequency": 15408 + }, + { + "word": "bulla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noise;commotion", + "example_sentence_native": "Había mucha bulla en la fiesta.", + "example_sentence_english": "There was a lot of noise at the party.", + "pos": "noun", + "word_frequency": 15414 + }, + { + "word": "canton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canton (administrative division)", + "example_sentence_native": "Suiza está dividida en cantones.", + "example_sentence_english": "Switzerland is divided into cantons.", + "pos": "noun", + "word_frequency": 15416 + }, + { + "word": "caprichoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capricious;whimsical", + "example_sentence_native": "Es una persona muy caprichosa, siempre quiere lo que no puede tener.", + "example_sentence_english": "She is a very capricious person, always wanting what she cannot have.", + "pos": "adjective", + "word_frequency": 15418 + }, + { + "word": "carrusel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carousel;merry-go-round", + "example_sentence_native": "Los niños disfrutaron mucho en el carrusel del parque.", + "example_sentence_english": "The children really enjoyed the carousel at the park.", + "pos": "noun", + "word_frequency": 15419 + }, + { + "word": "cautivar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to captivate;to charm", + "example_sentence_native": "Su voz logró cautivar a toda la audiencia.", + "example_sentence_english": "Her voice managed to captivate the entire audience.", + "pos": "verb", + "word_frequency": 15420 + }, + { + "word": "certero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accurate;precise;sure", + "example_sentence_native": "Dio un golpe certero que derribó a su oponente.", + "example_sentence_english": "He delivered an accurate blow that knocked down his opponent.", + "pos": "adjective", + "word_frequency": 15421 + }, + { + "word": "chocante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shocking;jarring", + "example_sentence_native": "Su actitud fue bastante chocante para todos.", + "example_sentence_english": "His attitude was quite shocking to everyone.", + "pos": "adjective", + "word_frequency": 15422 + }, + { + "word": "cholo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(term for indigenous or mestizo person;often derogatory or informal depending on region)", + "example_sentence_native": "En algunos lugares, \"cholo\" se usa para referirse a personas de ascendencia indígena.", + "example_sentence_english": "In some places, \"cholo\" is used to refer to people of indigenous descent.", + "pos": "noun", + "word_frequency": 15424 + }, + { + "word": "churro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "churro (fried dough pastry)", + "example_sentence_native": "Me encanta comer churros con chocolate caliente.", + "example_sentence_english": "I love eating churros with hot chocolate.", + "pos": "noun", + "word_frequency": 15426 + }, + { + "word": "cobija", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blanket", + "example_sentence_native": "Necesito una cobija extra para el frío.", + "example_sentence_english": "I need an extra blanket for the cold.", + "pos": "noun", + "word_frequency": 15429 + }, + { + "word": "commonwealth", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commonwealth", + "example_sentence_native": "El Commonwealth de Naciones es una organización internacional.", + "example_sentence_english": "The Commonwealth of Nations is an international organization.", + "pos": "noun", + "word_frequency": 15430 + }, + { + "word": "compulsivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsive", + "example_sentence_native": "Tiene un comportamiento compulsivo cuando está estresado.", + "example_sentence_english": "He has compulsive behavior when he is stressed.", + "pos": "adjective", + "word_frequency": 15431 + }, + { + "word": "confin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confine;boundary;limit", + "example_sentence_native": "Los exploradores llegaron a los confines del mundo conocido.", + "example_sentence_english": "The explorers reached the confines of the known world.", + "pos": "noun", + "word_frequency": 15432 + }, + { + "word": "conmover", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move (emotionally);to touch", + "example_sentence_native": "Su historia logró conmover a todos los presentes.", + "example_sentence_english": "Her story managed to move everyone present.", + "pos": "verb", + "word_frequency": 15433 + }, + { + "word": "contrapeso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterweight;counterbalance", + "example_sentence_native": "El sistema necesita un contrapeso para mantener el equilibrio.", + "example_sentence_english": "The system needs a counterbalance to maintain balance.", + "pos": "noun", + "word_frequency": 15434 + }, + { + "word": "contratiempo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "setback;mishap", + "example_sentence_native": "Tuvimos un pequeño contratiempo en el viaje, pero lo resolvimos.", + "example_sentence_english": "We had a small setback on the trip, but we resolved it.", + "pos": "noun", + "word_frequency": 15435 + }, + { + "word": "crash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crash (e.g.;computer crash;market crash)", + "example_sentence_native": "La bolsa sufrió un crash inesperado.", + "example_sentence_english": "The stock market suffered an unexpected crash.", + "pos": "noun", + "word_frequency": 15439 + }, + { + "word": "cuatrimestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trimester", + "example_sentence_native": "El próximo cuatrimestre comienza en septiembre.", + "example_sentence_english": "The next trimester starts in September.", + "pos": "noun", + "word_frequency": 15441 + }, + { + "word": "cuidador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caregiver", + "example_sentence_native": "El cuidador de animales es muy amable.", + "example_sentence_english": "The animal caregiver is very kind.", + "pos": "noun", + "word_frequency": 15442 + }, + { + "word": "cáñamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemp", + "example_sentence_native": "La cuerda estaba hecha de cáñamo.", + "example_sentence_english": "The rope was made of hemp.", + "pos": "noun", + "word_frequency": 15443 + }, + { + "word": "delegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delegate", + "example_sentence_native": "Es importante aprender a delegar tareas.", + "example_sentence_english": "It's important to learn to delegate tasks.", + "pos": "verb", + "word_frequency": 15446 + }, + { + "word": "depresivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressive", + "example_sentence_native": "El clima lluvioso puede ser depresivo.", + "example_sentence_english": "Rainy weather can be depressing.", + "pos": "adjective", + "word_frequency": 15447 + }, + { + "word": "desdén", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disdain", + "example_sentence_native": "Miró a su rival con desdén.", + "example_sentence_english": "He looked at his rival with disdain.", + "pos": "noun", + "word_frequency": 15448 + }, + { + "word": "destello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flash", + "example_sentence_native": "Vimos un destello de luz en la oscuridad.", + "example_sentence_english": "We saw a flash of light in the darkness.", + "pos": "noun", + "word_frequency": 15449 + }, + { + "word": "destrozo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damage", + "example_sentence_native": "La tormenta causó muchos destrozos.", + "example_sentence_english": "The storm caused a lot of damage.", + "pos": "noun", + "word_frequency": 15450 + }, + { + "word": "disparidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disparity", + "example_sentence_native": "Existe una gran disparidad de ingresos entre las regiones.", + "example_sentence_english": "There is a great disparity in income between the regions.", + "pos": "noun", + "word_frequency": 15451 + }, + { + "word": "driver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver (computer)", + "example_sentence_native": "Necesito instalar los drivers para la impresora.", + "example_sentence_english": "I need to install the drivers for the printer.", + "pos": "noun", + "word_frequency": 15452 + }, + { + "word": "electricista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electrician", + "example_sentence_native": "Llamamos a un electricista para arreglar la luz.", + "example_sentence_english": "We called an electrician to fix the light.", + "pos": "noun", + "word_frequency": 15455 + }, + { + "word": "embarcar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embark", + "example_sentence_native": "Vamos a embarcar en el avión en una hora.", + "example_sentence_english": "We are going to board the plane in an hour.", + "pos": "verb", + "word_frequency": 15456 + }, + { + "word": "encina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holm oak", + "example_sentence_native": "La encina es un árbol muy resistente.", + "example_sentence_english": "The holm oak is a very resistant tree.", + "pos": "noun", + "word_frequency": 15457 + }, + { + "word": "endémico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endemic", + "example_sentence_native": "Esta enfermedad es endémica de la región.", + "example_sentence_english": "This disease is endemic to the region.", + "pos": "adjective", + "word_frequency": 15460 + }, + { + "word": "epílogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epilogue", + "example_sentence_native": "El libro tiene un epílogo muy emotivo.", + "example_sentence_english": "The book has a very emotional epilogue.", + "pos": "noun", + "word_frequency": 15461 + }, + { + "word": "epístola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epistle", + "example_sentence_native": "Leyó una epístola antigua en la clase.", + "example_sentence_english": "He read an ancient epistle in class.", + "pos": "noun", + "word_frequency": 15462 + }, + { + "word": "equis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "X", + "example_sentence_native": "Pon una equis donde corresponda.", + "example_sentence_english": "Put an X where appropriate.", + "pos": "noun", + "word_frequency": 15463 + }, + { + "word": "escarlata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scarlet", + "example_sentence_native": "Llevaba un vestido de color escarlata.", + "example_sentence_english": "She was wearing a scarlet dress.", + "pos": "adjective", + "word_frequency": 15464 + }, + { + "word": "escuchado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heard", + "example_sentence_native": "Su opinión fue escuchada por todos.", + "example_sentence_english": "His opinion was heard by everyone.", + "pos": "adjective", + "word_frequency": 15466 + }, + { + "word": "especulador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculator", + "example_sentence_native": "Los especuladores inflaron los precios.", + "example_sentence_english": "The speculators inflated the prices.", + "pos": "noun", + "word_frequency": 15467 + }, + { + "word": "estupefaciente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcotic", + "example_sentence_native": "La venta de estupefacientes es ilegal.", + "example_sentence_english": "The sale of narcotics is illegal.", + "pos": "noun", + "word_frequency": 15468 + }, + { + "word": "evaluado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evaluated", + "example_sentence_native": "El proyecto fue evaluado positivamente.", + "example_sentence_english": "The project was positively evaluated.", + "pos": "adjective", + "word_frequency": 15471 + }, + { + "word": "explicacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "explanation", + "example_sentence_native": "Necesito una explicación clara.", + "example_sentence_english": "I need a clear explanation.", + "pos": "noun", + "word_frequency": 15472 + }, + { + "word": "exterminar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exterminate", + "example_sentence_native": "Intentaron exterminar la plaga de insectos.", + "example_sentence_english": "They tried to exterminate the insect plague.", + "pos": "verb", + "word_frequency": 15473 + }, + { + "word": "feeling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling", + "example_sentence_native": "Tengo un buen feeling sobre esto.", + "example_sentence_english": "I have a good feeling about this.", + "pos": "noun", + "word_frequency": 15474 + }, + { + "word": "floreciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flourishing", + "example_sentence_native": "La economía de la ciudad está floreciente.", + "example_sentence_english": "The city's economy is flourishing.", + "pos": "adjective", + "word_frequency": 15476 + }, + { + "word": "graso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fatty;greasy", + "example_sentence_native": "Evita los alimentos grasos para una dieta saludable.", + "example_sentence_english": "Avoid fatty foods for a healthy diet.", + "pos": "adjective", + "word_frequency": 15480 + }, + { + "word": "hechicero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorcerer;wizard", + "example_sentence_native": "El hechicero lanzó un poderoso hechizo.", + "example_sentence_english": "The sorcerer cast a powerful spell.", + "pos": "noun", + "word_frequency": 15485 + }, + { + "word": "ilustrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustrator", + "example_sentence_native": "El ilustrador dibujó las imágenes para el libro.", + "example_sentence_english": "The illustrator drew the images for the book.", + "pos": "noun", + "word_frequency": 15490 + }, + { + "word": "imperfecto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imperfect;flawed", + "example_sentence_native": "Nadie es perfecto, todos somos imperfectos.", + "example_sentence_english": "Nobody is perfect, we are all imperfect.", + "pos": "adjective", + "word_frequency": 15491 + }, + { + "word": "impresentable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpresentable;unacceptable", + "example_sentence_native": "Su comportamiento fue totalmente impresentable.", + "example_sentence_english": "His behavior was totally unacceptable.", + "pos": "adjective", + "word_frequency": 15492 + }, + { + "word": "inactivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inactive", + "example_sentence_native": "La cuenta ha estado inactiva por mucho tiempo.", + "example_sentence_english": "The account has been inactive for a long time.", + "pos": "adjective", + "word_frequency": 15493 + }, + { + "word": "inconformidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonconformity;disagreement", + "example_sentence_native": "Expresó su inconformidad con la decisión.", + "example_sentence_english": "He expressed his disagreement with the decision.", + "pos": "noun", + "word_frequency": 15494 + }, + { + "word": "ineludible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unavoidable;inescapable", + "example_sentence_native": "La muerte es una realidad ineludible.", + "example_sentence_english": "Death is an unavoidable reality.", + "pos": "adjective", + "word_frequency": 15495 + }, + { + "word": "infamia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infamy;disgrace", + "example_sentence_native": "Su traición fue un acto de pura infamia.", + "example_sentence_english": "His betrayal was an act of pure infamy.", + "pos": "noun", + "word_frequency": 15496 + }, + { + "word": "interceptar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intercept", + "example_sentence_native": "La policía logró interceptar la llamada.", + "example_sentence_english": "The police managed to intercept the call.", + "pos": "verb", + "word_frequency": 15497 + }, + { + "word": "interpuesto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interposed;placed between", + "example_sentence_native": "No había ningún obstáculo interpuesto entre ellos.", + "example_sentence_english": "There was no obstacle interposed between them.", + "pos": "adjective", + "word_frequency": 15498 + }, + { + "word": "inviable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfeasible;unviable", + "example_sentence_native": "El proyecto resultó ser inviable económicamente.", + "example_sentence_english": "The project turned out to be economically unfeasible.", + "pos": "adjective", + "word_frequency": 15499 + }, + { + "word": "involuntario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involuntary", + "example_sentence_native": "Fue un error involuntario, no lo hizo a propósito.", + "example_sentence_english": "It was an involuntary mistake, he didn't do it on purpose.", + "pos": "adjective", + "word_frequency": 15500 + }, + { + "word": "irrigación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrigation", + "example_sentence_native": "La irrigación es esencial para los cultivos en esta región.", + "example_sentence_english": "Irrigation is essential for crops in this region.", + "pos": "noun", + "word_frequency": 15501 + }, + { + "word": "ligereza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightness;frivolity", + "example_sentence_native": "Actuó con una ligereza sorprendente ante la situación.", + "example_sentence_english": "He acted with surprising lightness in the situation.", + "pos": "noun", + "word_frequency": 15504 + }, + { + "word": "londinense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Londoner;from London", + "example_sentence_native": "Mi amigo es londinense y vive en el centro.", + "example_sentence_english": "My friend is a Londoner and lives in the city center.", + "pos": "adjective", + "word_frequency": 15506 + }, + { + "word": "lucidez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lucidity;clarity", + "example_sentence_native": "A pesar de su edad, mantiene una gran lucidez mental.", + "example_sentence_english": "Despite his age, he maintains great mental lucidity.", + "pos": "noun", + "word_frequency": 15507 + }, + { + "word": "macedonio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Macedonian (person or adjective)", + "example_sentence_native": "Alejandro Magno fue un líder macedonio.", + "example_sentence_english": "Alexander the Great was a Macedonian leader.", + "pos": "noun", + "word_frequency": 15510 + }, + { + "word": "majestuoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "majestic", + "example_sentence_native": "El águila real es un ave majestuosa.", + "example_sentence_english": "The golden eagle is a majestic bird.", + "pos": "adjective", + "word_frequency": 15511 + }, + { + "word": "maletero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car boot (UK);trunk (US);luggage handler", + "example_sentence_native": "Pon las maletas en el maletero del coche.", + "example_sentence_english": "Put the suitcases in the car boot.", + "pos": "noun", + "word_frequency": 15512 + }, + { + "word": "mamón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sucker;jerk (informal);suckling (literal)", + "example_sentence_native": "No seas un mamón y ayuda a tus amigos.", + "example_sentence_english": "Don't be a jerk and help your friends.", + "pos": "noun", + "word_frequency": 15513 + }, + { + "word": "masticar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chew", + "example_sentence_native": "Es importante masticar bien la comida.", + "example_sentence_english": "It's important to chew food well.", + "pos": "verb", + "word_frequency": 15515 + }, + { + "word": "mellizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twin (fraternal)", + "example_sentence_native": "Mis hermanos son mellizos, pero no idénticos.", + "example_sentence_english": "My brothers are fraternal twins, but not identical.", + "pos": "noun", + "word_frequency": 15517 + }, + { + "word": "metano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methane", + "example_sentence_native": "El metano es un gas de efecto invernadero.", + "example_sentence_english": "Methane is a greenhouse gas.", + "pos": "noun", + "word_frequency": 15520 + }, + { + "word": "migaja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crumb", + "example_sentence_native": "Cayó una migaja de pan al suelo.", + "example_sentence_english": "A bread crumb fell to the floor.", + "pos": "noun", + "word_frequency": 15521 + }, + { + "word": "modular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to modularize;to modulate", + "example_sentence_native": "Necesitamos modular el diseño para que sea más flexible.", + "example_sentence_english": "We need to modularize the design to make it more flexible.", + "pos": "verb", + "word_frequency": 15522 + }, + { + "word": "mínimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimally", + "example_sentence_native": "El impacto fue mínimamente perceptible.", + "example_sentence_english": "The impact was minimally perceptible.", + "pos": "adverb", + "word_frequency": 15525 + }, + { + "word": "naipe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playing card", + "example_sentence_native": "Barajó los naipes antes de repartir.", + "example_sentence_english": "He shuffled the playing cards before dealing.", + "pos": "noun", + "word_frequency": 15526 + }, + { + "word": "nato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "born;natural (as in 'born leader')", + "example_sentence_native": "Es un líder nato.", + "example_sentence_english": "He is a born leader.", + "pos": "adjective", + "word_frequency": 15527 + }, + { + "word": "nebulosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nebula", + "example_sentence_native": "La nebulosa de Orión es visible a simple vista.", + "example_sentence_english": "The Orion nebula is visible to the naked eye.", + "pos": "noun", + "word_frequency": 15529 + }, + { + "word": "nexus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "nexus", + "example_sentence_native": "Existe un nexus entre ambos conceptos.", + "example_sentence_english": "There is a nexus between both concepts.", + "pos": "noun", + "word_frequency": 15531 + }, + { + "word": "nórdico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nordic", + "example_sentence_native": "Le gusta la mitología nórdica.", + "example_sentence_english": "He likes Nordic mythology.", + "pos": "adjective", + "word_frequency": 15535 + }, + { + "word": "patito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duckling", + "example_sentence_native": "El patito siguió a su mamá.", + "example_sentence_english": "The duckling followed its mother.", + "pos": "noun", + "word_frequency": 15537 + }, + { + "word": "pecar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sin;to err", + "example_sentence_native": "Pecó de ingenuo al confiar en él.", + "example_sentence_english": "He erred by being naive in trusting him.", + "pos": "verb", + "word_frequency": 15538 + }, + { + "word": "pellejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hide;skin (animal);rind", + "example_sentence_native": "El pellejo de la naranja es amargo.", + "example_sentence_english": "The orange peel is bitter.", + "pos": "noun", + "word_frequency": 15539 + }, + { + "word": "plasmar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to express;to capture;to embody", + "example_sentence_native": "El artista logró plasmar sus emociones en la pintura.", + "example_sentence_english": "The artist managed to express his emotions in the painting.", + "pos": "verb", + "word_frequency": 15541 + }, + { + "word": "playero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beachy;related to the beach", + "example_sentence_native": "Llevaba un sombrero playero.", + "example_sentence_english": "She was wearing a beachy hat.", + "pos": "adjective", + "word_frequency": 15542 + }, + { + "word": "plusvalía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capital gain;added value", + "example_sentence_native": "La venta de la propiedad generó una plusvalía considerable.", + "example_sentence_english": "The sale of the property generated a considerable capital gain.", + "pos": "noun", + "word_frequency": 15543 + }, + { + "word": "porcentual", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percentage-related;proportional", + "example_sentence_native": "Se calculó el incremento porcentual de las ventas.", + "example_sentence_english": "The percentage increase in sales was calculated.", + "pos": "adjective", + "word_frequency": 15544 + }, + { + "word": "posibilitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enable;to make possible", + "example_sentence_native": "La nueva tecnología posibilitará avances significativos.", + "example_sentence_english": "The new technology will enable significant advances.", + "pos": "verb", + "word_frequency": 15545 + }, + { + "word": "postor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bidder", + "example_sentence_native": "El mejor postor se llevó la obra de arte.", + "example_sentence_english": "The highest bidder took the artwork.", + "pos": "noun", + "word_frequency": 15546 + }, + { + "word": "preferiblemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preferably", + "example_sentence_native": "Debes llegar temprano, preferiblemente antes de las nueve.", + "example_sentence_english": "You should arrive early, preferably before nine.", + "pos": "adverb", + "word_frequency": 15547 + }, + { + "word": "preservativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condom;preservative (food)", + "example_sentence_native": "Es importante usar preservativo para prevenir enfermedades.", + "example_sentence_english": "It's important to use a condom to prevent diseases.", + "pos": "noun", + "word_frequency": 15548 + }, + { + "word": "profundización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deepening;in-depth study", + "example_sentence_native": "Se requiere una profundización en el tema.", + "example_sentence_english": "An in-depth study of the topic is required.", + "pos": "noun", + "word_frequency": 15550 + }, + { + "word": "pronombre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pronoun", + "example_sentence_native": "Ella es un pronombre personal.", + "example_sentence_english": "She is a personal pronoun.", + "pos": "noun", + "word_frequency": 15551 + }, + { + "word": "pueblito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small town;village", + "example_sentence_native": "Pasamos el verano en un pueblito tranquilo.", + "example_sentence_english": "We spent the summer in a quiet small town.", + "pos": "noun", + "word_frequency": 15552 + }, + { + "word": "pugna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "struggle;conflict", + "example_sentence_native": "Existe una pugna de poder entre los dos partidos.", + "example_sentence_english": "There is a power struggle between the two parties.", + "pos": "noun", + "word_frequency": 15553 + }, + { + "word": "pulir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to polish;to refine", + "example_sentence_native": "Necesito pulir mis zapatos.", + "example_sentence_english": "I need to polish my shoes.", + "pos": "verb", + "word_frequency": 15554 + }, + { + "word": "reaparecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reappear", + "example_sentence_native": "El sol reapareció después de la tormenta.", + "example_sentence_english": "The sun reappeared after the storm.", + "pos": "verb", + "word_frequency": 15555 + }, + { + "word": "recelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicion;distrust", + "example_sentence_native": "Sentía recelo hacia las intenciones del desconocido.", + "example_sentence_english": "He felt suspicion towards the stranger's intentions.", + "pos": "noun", + "word_frequency": 15556 + }, + { + "word": "refinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refined;sophisticated", + "example_sentence_native": "Tiene un gusto muy refinado en el arte.", + "example_sentence_english": "He has a very refined taste in art.", + "pos": "adjective", + "word_frequency": 15557 + }, + { + "word": "reinante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reigning;prevailing", + "example_sentence_native": "La calma reinante en el pueblo era palpable.", + "example_sentence_english": "The prevailing calm in the town was palpable.", + "pos": "adjective", + "word_frequency": 15558 + }, + { + "word": "remanente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remainder;remnant", + "example_sentence_native": "Usaremos el remanente del material para otro proyecto.", + "example_sentence_english": "We will use the remainder of the material for another project.", + "pos": "noun", + "word_frequency": 15559 + }, + { + "word": "satírico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satirical", + "example_sentence_native": "Su obra es conocida por su tono satírico.", + "example_sentence_english": "His work is known for its satirical tone.", + "pos": "adjective", + "word_frequency": 15567 + }, + { + "word": "sobrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leftover;arrogant;excessive", + "example_sentence_native": "Hay comida sobrada de la fiesta.", + "example_sentence_english": "There's leftover food from the party.", + "pos": "adjective", + "word_frequency": 15571 + }, + { + "word": "sobrellevar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cope with;to bear", + "example_sentence_native": "Es difícil sobrellevar la pérdida de un ser querido.", + "example_sentence_english": "It's difficult to cope with the loss of a loved one.", + "pos": "verb", + "word_frequency": 15572 + }, + { + "word": "sofocar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffocate;to stifle", + "example_sentence_native": "El humo empezó a sofocar a la gente.", + "example_sentence_english": "The smoke began to suffocate the people.", + "pos": "verb", + "word_frequency": 15573 + }, + { + "word": "surcoreano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South Korean", + "example_sentence_native": "La cultura surcoreana es muy popular ahora.", + "example_sentence_english": "South Korean culture is very popular now.", + "pos": "adjective", + "word_frequency": 15578 + }, + { + "word": "sífilis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syphilis", + "example_sentence_native": "La sífilis es una enfermedad de transmisión sexual.", + "example_sentence_english": "Syphilis is a sexually transmitted disease.", + "pos": "noun", + "word_frequency": 15579 + }, + { + "word": "tallado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carved;sculpted", + "example_sentence_native": "La estatua estaba bellamente tallada.", + "example_sentence_english": "The statue was beautifully carved.", + "pos": "adjective", + "word_frequency": 15580 + }, + { + "word": "tamil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Tamil", + "example_sentence_native": "El tamil es una lengua dravídica.", + "example_sentence_english": "Tamil is a Dravidian language.", + "pos": "noun", + "word_frequency": 15581 + }, + { + "word": "televidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "TV viewer", + "example_sentence_native": "Los televidentes esperan el próximo episodio.", + "example_sentence_english": "The TV viewers are waiting for the next episode.", + "pos": "noun", + "word_frequency": 15584 + }, + { + "word": "teñido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dyed;tinted", + "example_sentence_native": "Tiene el pelo teñido de rojo.", + "example_sentence_english": "She has red dyed hair.", + "pos": "adjective", + "word_frequency": 15585 + }, + { + "word": "traumático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "traumatic", + "example_sentence_native": "Fue una experiencia muy traumática para él.", + "example_sentence_english": "It was a very traumatic experience for him.", + "pos": "adjective", + "word_frequency": 15589 + }, + { + "word": "triatlón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triathlon", + "example_sentence_native": "Entrena para el triatlón del próximo mes.", + "example_sentence_english": "He trains for next month's triathlon.", + "pos": "noun", + "word_frequency": 15590 + }, + { + "word": "trimestral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarterly", + "example_sentence_native": "Presentamos informes trimestrales.", + "example_sentence_english": "We present quarterly reports.", + "pos": "adjective", + "word_frequency": 15591 + }, + { + "word": "unísono", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in unison;unison", + "example_sentence_native": "Cantaron al unísono.", + "example_sentence_english": "They sang in unison.", + "pos": "adjective", + "word_frequency": 15592 + }, + { + "word": "vato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guy;dude", + "example_sentence_native": "Ese vato es mi amigo.", + "example_sentence_english": "That guy is my friend.", + "pos": "noun", + "word_frequency": 15593 + }, + { + "word": "veintitrés", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-three", + "example_sentence_native": "Tengo veintitrés años.", + "example_sentence_english": "I am twenty-three years old.", + "pos": "noun", + "word_frequency": 15594 + }, + { + "word": "vitrina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "display case;showcase", + "example_sentence_native": "Los trofeos están en la vitrina.", + "example_sentence_english": "The trophies are in the display case.", + "pos": "noun", + "word_frequency": 15596 + }, + { + "word": "volcar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overturn;to spill;to tip over", + "example_sentence_native": "El camión se volcó en la carretera.", + "example_sentence_english": "The truck overturned on the road.", + "pos": "verb", + "word_frequency": 15597 + }, + { + "word": "advenimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advent;arrival", + "example_sentence_native": "El advenimiento de la primavera trae días más largos.", + "example_sentence_english": "The advent of spring brings longer days.", + "pos": "noun", + "word_frequency": 15604 + }, + { + "word": "aerosol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aerosol", + "example_sentence_native": "Este desodorante viene en formato de aerosol.", + "example_sentence_english": "This deodorant comes in aerosol format.", + "pos": "noun", + "word_frequency": 15605 + }, + { + "word": "agalla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gill;courage", + "example_sentence_native": "Los peces respiran por sus agallas.", + "example_sentence_english": "Fish breathe through their gills.", + "pos": "noun", + "word_frequency": 15606 + }, + { + "word": "agilizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speed up;to streamline", + "example_sentence_native": "Necesitamos agilizar el proceso de aprobación.", + "example_sentence_english": "We need to speed up the approval process.", + "pos": "verb", + "word_frequency": 15607 + }, + { + "word": "alojado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accommodated;housed", + "example_sentence_native": "Estuvimos alojados en un hotel céntrico.", + "example_sentence_english": "We were accommodated in a downtown hotel.", + "pos": "adjective", + "word_frequency": 15610 + }, + { + "word": "alquilado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rented", + "example_sentence_native": "Vivimos en un apartamento alquilado.", + "example_sentence_english": "We live in a rented apartment.", + "pos": "adjective", + "word_frequency": 15611 + }, + { + "word": "alérgico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allergic", + "example_sentence_native": "Soy alérgico al polen.", + "example_sentence_english": "I am allergic to pollen.", + "pos": "adjective", + "word_frequency": 15612 + }, + { + "word": "ambientado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set (in a place;time);themed", + "example_sentence_native": "La película está ambientada en los años 80.", + "example_sentence_english": "The movie is set in the 80s.", + "pos": "adjective", + "word_frequency": 15614 + }, + { + "word": "arboleda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grove;woodland", + "example_sentence_native": "Caminamos por una hermosa arboleda.", + "example_sentence_english": "We walked through a beautiful grove.", + "pos": "noun", + "word_frequency": 15617 + }, + { + "word": "arrastrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dragged;lowly", + "example_sentence_native": "El perro llegó arrastrado por la correa.", + "example_sentence_english": "The dog arrived dragged by the leash.", + "pos": "adjective", + "word_frequency": 15619 + }, + { + "word": "arrebato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outburst;fit (of anger)", + "example_sentence_native": "Tuvo un arrebato de ira.", + "example_sentence_english": "He had an outburst of anger.", + "pos": "noun", + "word_frequency": 15620 + }, + { + "word": "astral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astral", + "example_sentence_native": "Observamos los cuerpos astrales en el cielo nocturno.", + "example_sentence_english": "We observed the astral bodies in the night sky.", + "pos": "adjective", + "word_frequency": 15621 + }, + { + "word": "auditoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audit", + "example_sentence_native": "La empresa se sometió a una auditoría externa.", + "example_sentence_english": "The company underwent an external audit.", + "pos": "noun", + "word_frequency": 15622 + }, + { + "word": "autocontrol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-control", + "example_sentence_native": "Es importante tener autocontrol en situaciones difíciles.", + "example_sentence_english": "It's important to have self-control in difficult situations.", + "pos": "noun", + "word_frequency": 15623 + }, + { + "word": "avalar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to endorse;to guarantee", + "example_sentence_native": "El banco no quiso avalar el préstamo.", + "example_sentence_english": "The bank did not want to guarantee the loan.", + "pos": "verb", + "word_frequency": 15624 + }, + { + "word": "azote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whip;scourge", + "example_sentence_native": "La sequía fue un azote para la agricultura.", + "example_sentence_english": "The drought was a scourge for agriculture.", + "pos": "noun", + "word_frequency": 15626 + }, + { + "word": "balacera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shootout;gunfight", + "example_sentence_native": "Hubo una balacera en el centro de la ciudad.", + "example_sentence_english": "There was a shootout in the city center.", + "pos": "noun", + "word_frequency": 15627 + }, + { + "word": "baseball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baseball", + "example_sentence_native": "El baseball es muy popular en el Caribe.", + "example_sentence_english": "Baseball is very popular in the Caribbean.", + "pos": "noun", + "word_frequency": 15628 + }, + { + "word": "baterista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drummer", + "example_sentence_native": "El baterista de la banda es excelente.", + "example_sentence_english": "The band's drummer is excellent.", + "pos": "noun", + "word_frequency": 15629 + }, + { + "word": "blanquear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whiten;to bleach;to launder", + "example_sentence_native": "Necesito blanquear la ropa blanca.", + "example_sentence_english": "I need to whiten the white clothes.", + "pos": "verb", + "word_frequency": 15630 + }, + { + "word": "boga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vogue;fashion", + "example_sentence_native": "Esa moda está en boga ahora mismo.", + "example_sentence_english": "That fashion is in vogue right now.", + "pos": "noun", + "word_frequency": 15631 + }, + { + "word": "bombardero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bomber (aircraft)", + "example_sentence_native": "El bombardero voló sobre la ciudad.", + "example_sentence_english": "The bomber flew over the city.", + "pos": "noun", + "word_frequency": 15632 + }, + { + "word": "bombón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chocolate;bonbon", + "example_sentence_native": "Me encanta comer bombones de chocolate.", + "example_sentence_english": "I love eating chocolate bonbons.", + "pos": "noun", + "word_frequency": 15633 + }, + { + "word": "brea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tar;pitch", + "example_sentence_native": "El camino estaba cubierto de brea.", + "example_sentence_english": "The road was covered in tar.", + "pos": "noun", + "word_frequency": 15635 + }, + { + "word": "calamidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "calamity;disaster", + "example_sentence_native": "La sequía fue una calamidad para los agricultores.", + "example_sentence_english": "The drought was a calamity for the farmers.", + "pos": "noun", + "word_frequency": 15638 + }, + { + "word": "camion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truck;lorry", + "example_sentence_native": "El camion transportaba mercancías pesadas.", + "example_sentence_english": "The truck was transporting heavy goods.", + "pos": "noun", + "word_frequency": 15639 + }, + { + "word": "causalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causality", + "example_sentence_native": "Estudiamos la causalidad entre los eventos.", + "example_sentence_english": "We study the causality between the events.", + "pos": "noun", + "word_frequency": 15641 + }, + { + "word": "colegial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schoolboy;schoolgirl", + "example_sentence_native": "Los colegiales salieron de la escuela.", + "example_sentence_english": "The school children left the school.", + "pos": "noun", + "word_frequency": 15649 + }, + { + "word": "concluyente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conclusive", + "example_sentence_native": "La evidencia fue concluyente.", + "example_sentence_english": "The evidence was conclusive.", + "pos": "adjective", + "word_frequency": 15652 + }, + { + "word": "conserje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "janitor;concierge", + "example_sentence_native": "El conserje limpió el pasillo.", + "example_sentence_english": "The janitor cleaned the hallway.", + "pos": "noun", + "word_frequency": 15653 + }, + { + "word": "corregimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "district;corregimiento", + "example_sentence_native": "El corregimiento es una división administrativa.", + "example_sentence_english": "The corregimiento is an administrative division.", + "pos": "noun", + "word_frequency": 15656 + }, + { + "word": "culinario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culinary", + "example_sentence_native": "Tiene un gran interés culinario.", + "example_sentence_english": "He has a great culinary interest.", + "pos": "adjective", + "word_frequency": 15658 + }, + { + "word": "curricular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curricular", + "example_sentence_native": "Las actividades curriculares son obligatorias.", + "example_sentence_english": "Curricular activities are mandatory.", + "pos": "adjective", + "word_frequency": 15659 + }, + { + "word": "dardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dart", + "example_sentence_native": "Lanzó un dardo al blanco.", + "example_sentence_english": "He threw a dart at the target.", + "pos": "noun", + "word_frequency": 15661 + }, + { + "word": "delivery", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery", + "example_sentence_native": "Pedimos pizza a domicilio, el delivery fue rápido.", + "example_sentence_english": "We ordered pizza for home delivery, the delivery was fast.", + "pos": "noun", + "word_frequency": 15663 + }, + { + "word": "dentadura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dentition;set of teeth", + "example_sentence_native": "Tiene una dentadura perfecta.", + "example_sentence_english": "He has a perfect set of teeth.", + "pos": "noun", + "word_frequency": 15664 + }, + { + "word": "derramado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spilled;shed", + "example_sentence_native": "La leche derramada no se puede recoger.", + "example_sentence_english": "Spilled milk cannot be picked up.", + "pos": "adjective", + "word_frequency": 15665 + }, + { + "word": "descentralizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decentralized", + "example_sentence_native": "El sistema es descentralizado.", + "example_sentence_english": "The system is decentralized.", + "pos": "adjective", + "word_frequency": 15666 + }, + { + "word": "desfavorecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disadvantaged;underprivileged", + "example_sentence_native": "Ayudamos a las comunidades desfavorecidas.", + "example_sentence_english": "We help disadvantaged communities.", + "pos": "adjective", + "word_frequency": 15667 + }, + { + "word": "desistir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to desist;to give up", + "example_sentence_native": "No debemos desistir de nuestros sueños.", + "example_sentence_english": "We must not give up on our dreams.", + "pos": "verb", + "word_frequency": 15668 + }, + { + "word": "desplegado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deployed;unfolded", + "example_sentence_native": "El mapa estaba desplegado sobre la mesa.", + "example_sentence_english": "The map was unfolded on the table.", + "pos": "adjective", + "word_frequency": 15669 + }, + { + "word": "desprendimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detachment;shedding;landslide", + "example_sentence_native": "Sufrió un desprendimiento de retina.", + "example_sentence_english": "He suffered a retinal detachment.", + "pos": "noun", + "word_frequency": 15670 + }, + { + "word": "desterrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exiled;banished", + "example_sentence_native": "El rey desterrado vivió en el exilio.", + "example_sentence_english": "The exiled king lived in exile.", + "pos": "adjective", + "word_frequency": 15671 + }, + { + "word": "diapositiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slide (presentation)", + "example_sentence_native": "La presentación tiene diez diapositivas.", + "example_sentence_english": "The presentation has ten slides.", + "pos": "noun", + "word_frequency": 15673 + }, + { + "word": "discográfico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record (adj.);phonographic", + "example_sentence_native": "Firmó un contrato discográfico.", + "example_sentence_english": "He signed a record deal.", + "pos": "adjective", + "word_frequency": 15674 + }, + { + "word": "discurrir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to flow;to elapse;to reason", + "example_sentence_native": "El tiempo discurre lentamente.", + "example_sentence_english": "Time flows slowly.", + "pos": "verb", + "word_frequency": 15675 + }, + { + "word": "embole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boredom;nuisance (colloquial)", + "example_sentence_native": "Qué embole esta reunión.", + "example_sentence_english": "What a bore this meeting is.", + "pos": "noun", + "word_frequency": 15679 + }, + { + "word": "ensayista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "essayist", + "example_sentence_native": "El ensayista presentó su nueva obra.", + "example_sentence_english": "The essayist presented his new work.", + "pos": "noun", + "word_frequency": 15681 + }, + { + "word": "espino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hawthorn", + "example_sentence_native": "El pájaro construyó su nido en el espino.", + "example_sentence_english": "The bird built its nest in the hawthorn.", + "pos": "noun", + "word_frequency": 15684 + }, + { + "word": "estiércol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manure", + "example_sentence_native": "El agricultor usó estiércol para fertilizar el campo.", + "example_sentence_english": "The farmer used manure to fertilize the field.", + "pos": "noun", + "word_frequency": 15685 + }, + { + "word": "expectación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expectation", + "example_sentence_native": "Había gran expectación por el estreno de la película.", + "example_sentence_english": "There was great anticipation for the film's premiere.", + "pos": "noun", + "word_frequency": 15686 + }, + { + "word": "flagrante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flagrant", + "example_sentence_native": "Fue un error flagrante que no se podía ignorar.", + "example_sentence_english": "It was a flagrant error that could not be ignored.", + "pos": "adjective", + "word_frequency": 15689 + }, + { + "word": "frenesí", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frenzy", + "example_sentence_native": "La multitud entró en un frenesí de alegría.", + "example_sentence_english": "The crowd entered a frenzy of joy.", + "pos": "noun", + "word_frequency": 15690 + }, + { + "word": "frialdad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coldness", + "example_sentence_native": "Su frialdad en la respuesta me sorprendió.", + "example_sentence_english": "His coldness in the reply surprised me.", + "pos": "noun", + "word_frequency": 15691 + }, + { + "word": "ganga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bargain", + "example_sentence_native": "Compré este vestido por solo diez euros, ¡fue una ganga!", + "example_sentence_english": "I bought this dress for only ten euros, it was a bargain!", + "pos": "noun", + "word_frequency": 15694 + }, + { + "word": "generosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generously", + "example_sentence_native": "Él siempre ayuda generosamente a los demás.", + "example_sentence_english": "He always generously helps others.", + "pos": "adverb", + "word_frequency": 15695 + }, + { + "word": "glifosato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glyphosate", + "example_sentence_native": "El uso de glifosato es un tema controvertido.", + "example_sentence_english": "The use of glyphosate is a controversial topic.", + "pos": "noun", + "word_frequency": 15697 + }, + { + "word": "grotesco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grotesque", + "example_sentence_native": "La estatua tenía una forma grotesca.", + "example_sentence_english": "The statue had a grotesque shape.", + "pos": "adjective", + "word_frequency": 15699 + }, + { + "word": "gruta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grotto", + "example_sentence_native": "Exploramos una gruta oscura en la montaña.", + "example_sentence_english": "We explored a dark grotto in the mountain.", + "pos": "noun", + "word_frequency": 15700 + }, + { + "word": "hazle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "do;make (to him;her;it;you formal)", + "example_sentence_native": "Hazle un favor.", + "example_sentence_english": "Do him a favor.", + "pos": "noun", + "word_frequency": 15703 + }, + { + "word": "higuera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fig tree", + "example_sentence_native": "La higuera del jardín da muchos frutos.", + "example_sentence_english": "The fig tree in the garden bears a lot of fruit.", + "pos": "noun", + "word_frequency": 15704 + }, + { + "word": "hindi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hindi", + "example_sentence_native": "El hindi es uno de los idiomas oficiales de la India.", + "example_sentence_english": "Hindi is one of the official languages of India.", + "pos": "noun", + "word_frequency": 15705 + }, + { + "word": "idealismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idealism", + "example_sentence_native": "Su idealismo lo llevó a luchar por sus creencias.", + "example_sentence_english": "His idealism led him to fight for his beliefs.", + "pos": "noun", + "word_frequency": 15709 + }, + { + "word": "ideológicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideologically", + "example_sentence_native": "Están ideológicamente opuestos.", + "example_sentence_english": "They are ideologically opposed.", + "pos": "adverb", + "word_frequency": 15710 + }, + { + "word": "ilógico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illogical", + "example_sentence_native": "Su argumento era completamente ilógico.", + "example_sentence_english": "His argument was completely illogical.", + "pos": "adjective", + "word_frequency": 15711 + }, + { + "word": "impermeable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterproof", + "example_sentence_native": "Necesito una chaqueta impermeable para la lluvia.", + "example_sentence_english": "I need a waterproof jacket for the rain.", + "pos": "adjective", + "word_frequency": 15712 + }, + { + "word": "impunemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "with impunity", + "example_sentence_native": "No se puede actuar impunemente.", + "example_sentence_english": "One cannot act with impunity.", + "pos": "adverb", + "word_frequency": 15713 + }, + { + "word": "inalcanzable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unattainable", + "example_sentence_native": "Su sueño parecía inalcanzable.", + "example_sentence_english": "His dream seemed unattainable.", + "pos": "adjective", + "word_frequency": 15714 + }, + { + "word": "incondicionalmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconditionally", + "example_sentence_native": "Te apoyaré incondicionalmente.", + "example_sentence_english": "I will support you unconditionally.", + "pos": "adverb", + "word_frequency": 15715 + }, + { + "word": "incumbir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to concern", + "example_sentence_native": "Este asunto no me incumbe.", + "example_sentence_english": "This matter does not concern me.", + "pos": "verb", + "word_frequency": 15716 + }, + { + "word": "indeciso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undecided", + "example_sentence_native": "Estaba indeciso sobre qué camino tomar.", + "example_sentence_english": "He was undecided about which path to take.", + "pos": "adjective", + "word_frequency": 15717 + }, + { + "word": "indistintamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indiscriminately", + "example_sentence_native": "Se pueden usar indistintamente.", + "example_sentence_english": "They can be used interchangeably.", + "pos": "adverb", + "word_frequency": 15719 + }, + { + "word": "inhibición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhibition", + "example_sentence_native": "La inhibición social le impedía hablar en público.", + "example_sentence_english": "Social inhibition prevented him from speaking in public.", + "pos": "noun", + "word_frequency": 15720 + }, + { + "word": "interponer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interpose;to file", + "example_sentence_native": "Decidió interponer una demanda contra la empresa.", + "example_sentence_english": "He decided to file a lawsuit against the company.", + "pos": "verb", + "word_frequency": 15722 + }, + { + "word": "intrusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrusion", + "example_sentence_native": "La intrusión en su privacidad fue inaceptable.", + "example_sentence_english": "The intrusion into his privacy was unacceptable.", + "pos": "noun", + "word_frequency": 15723 + }, + { + "word": "jurisdiccional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisdictional", + "example_sentence_native": "El tribunal tiene autoridad jurisdiccional sobre el caso.", + "example_sentence_english": "The court has jurisdictional authority over the case.", + "pos": "adjective", + "word_frequency": 15725 + }, + { + "word": "kinder", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kindergarten", + "example_sentence_native": "Mi hijo va al kinder por las mañanas.", + "example_sentence_english": "My son goes to kindergarten in the mornings.", + "pos": "noun", + "word_frequency": 15726 + }, + { + "word": "longevidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longevity", + "example_sentence_native": "El estudio investiga los factores de la longevidad.", + "example_sentence_english": "The study investigates the factors of longevity.", + "pos": "noun", + "word_frequency": 15732 + }, + { + "word": "marañón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cashew (fruit;tree)", + "example_sentence_native": "Me encanta el sabor del marañón.", + "example_sentence_english": "I love the taste of cashew.", + "pos": "noun", + "word_frequency": 15735 + }, + { + "word": "mestizaje", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "racial mixing;miscegenation", + "example_sentence_native": "El mestizaje es una característica de la cultura latinoamericana.", + "example_sentence_english": "Racial mixing is a characteristic of Latin American culture.", + "pos": "noun", + "word_frequency": 15740 + }, + { + "word": "minuciosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulously;thoroughly", + "example_sentence_native": "Examinó el documento minuciosamente.", + "example_sentence_english": "He examined the document meticulously.", + "pos": "adverb", + "word_frequency": 15741 + }, + { + "word": "moderadamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderately", + "example_sentence_native": "La temperatura es moderadamente cálida.", + "example_sentence_english": "The temperature is moderately warm.", + "pos": "adverb", + "word_frequency": 15742 + }, + { + "word": "monitorización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monitoring", + "example_sentence_native": "La monitorización de los signos vitales es crucial.", + "example_sentence_english": "The monitoring of vital signs is crucial.", + "pos": "noun", + "word_frequency": 15743 + }, + { + "word": "monstruoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monstrous", + "example_sentence_native": "El monstruoso edificio dominaba el horizonte.", + "example_sentence_english": "The monstrous building dominated the skyline.", + "pos": "adjective", + "word_frequency": 15744 + }, + { + "word": "motriz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "motor;driving (force)", + "example_sentence_native": "La habilidad motriz fina es importante para escribir.", + "example_sentence_english": "Fine motor skill is important for writing.", + "pos": "adjective", + "word_frequency": 15748 + }, + { + "word": "nevado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowy;snow-capped", + "example_sentence_native": "Vimos las cumbres nevadas de las montañas.", + "example_sentence_english": "We saw the snowy peaks of the mountains.", + "pos": "adjective", + "word_frequency": 15749 + }, + { + "word": "nicotina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nicotine", + "example_sentence_native": "La nicotina es una sustancia adictiva.", + "example_sentence_english": "Nicotine is an addictive substance.", + "pos": "noun", + "word_frequency": 15750 + }, + { + "word": "niñito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little boy;girl;toddler", + "example_sentence_native": "El niñito jugaba con sus bloques.", + "example_sentence_english": "The little boy was playing with his blocks.", + "pos": "noun", + "word_frequency": 15751 + }, + { + "word": "oleaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swell;waves (collective)", + "example_sentence_native": "El oleaje era muy fuerte en la costa.", + "example_sentence_english": "The swell was very strong on the coast.", + "pos": "noun", + "word_frequency": 15754 + }, + { + "word": "ortodoxia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orthodoxy", + "example_sentence_native": "Cuestionó la ortodoxia de las ideas establecidas.", + "example_sentence_english": "He questioned the orthodoxy of established ideas.", + "pos": "noun", + "word_frequency": 15756 + }, + { + "word": "ostra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oyster", + "example_sentence_native": "Las ostras frescas son una delicia.", + "example_sentence_english": "Fresh oysters are a delicacy.", + "pos": "noun", + "word_frequency": 15757 + }, + { + "word": "palomar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dovecote;pigeon loft", + "example_sentence_native": "Construyó un palomar en el jardín.", + "example_sentence_english": "He built a dovecote in the garden.", + "pos": "noun", + "word_frequency": 15758 + }, + { + "word": "parábola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parable;parabola", + "example_sentence_native": "Jesús enseñaba a menudo usando parábolas.", + "example_sentence_english": "Jesus often taught using parables.", + "pos": "noun", + "word_frequency": 15759 + }, + { + "word": "penuria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penury;scarcity", + "example_sentence_native": "La familia vivía en la más absoluta penuria.", + "example_sentence_english": "The family lived in absolute penury.", + "pos": "noun", + "word_frequency": 15760 + }, + { + "word": "perdurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to endure;to last", + "example_sentence_native": "Su legado perdurará por generaciones.", + "example_sentence_english": "His legacy will endure for generations.", + "pos": "verb", + "word_frequency": 15761 + }, + { + "word": "platica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat;talk", + "example_sentence_native": "Tuvimos una platica muy agradable sobre nuestros planes.", + "example_sentence_english": "We had a very pleasant chat about our plans.", + "pos": "noun", + "word_frequency": 15763 + }, + { + "word": "poemario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collection of poems;poetry book", + "example_sentence_native": "Publicó su primer poemario a los veinte años.", + "example_sentence_english": "He published his first collection of poems at twenty years old.", + "pos": "noun", + "word_frequency": 15764 + }, + { + "word": "pope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pope", + "example_sentence_native": "El papa reside en el Vaticano.", + "example_sentence_english": "The pope resides in the Vatican.", + "pos": "noun", + "word_frequency": 15766 + }, + { + "word": "pragmatismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pragmatism", + "example_sentence_native": "Su enfoque se basa en el pragmatismo.", + "example_sentence_english": "His approach is based on pragmatism.", + "pos": "noun", + "word_frequency": 15767 + }, + { + "word": "prepotencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogance;haughtiness", + "example_sentence_native": "Su prepotencia le hizo perder muchos amigos.", + "example_sentence_english": "His arrogance made him lose many friends.", + "pos": "noun", + "word_frequency": 15768 + }, + { + "word": "rea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female defendant;culprit", + "example_sentence_native": "La rea confesó su crimen.", + "example_sentence_english": "The female defendant confessed her crime.", + "pos": "noun", + "word_frequency": 15771 + }, + { + "word": "recepcionista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receptionist", + "example_sentence_native": "La recepcionista nos dio las llaves de la habitación.", + "example_sentence_english": "The receptionist gave us the room keys.", + "pos": "noun", + "word_frequency": 15772 + }, + { + "word": "rectángulo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rectangle", + "example_sentence_native": "Dibujó un rectángulo perfecto en la pizarra.", + "example_sentence_english": "He drew a perfect rectangle on the board.", + "pos": "noun", + "word_frequency": 15773 + }, + { + "word": "reglamentario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulatory;standard", + "example_sentence_native": "El uso del casco es reglamentario en esta obra.", + "example_sentence_english": "Helmet use is mandatory on this construction site.", + "pos": "adjective", + "word_frequency": 15774 + }, + { + "word": "reposar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rest;to settle", + "example_sentence_native": "Necesito reposar un poco después de la caminata.", + "example_sentence_english": "I need to rest a bit after the walk.", + "pos": "verb", + "word_frequency": 15775 + }, + { + "word": "sabiamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wisely", + "example_sentence_native": "Actuó sabiamente al no responder a la provocación.", + "example_sentence_english": "He acted wisely by not responding to the provocation.", + "pos": "adverb", + "word_frequency": 15779 + }, + { + "word": "sacerdocio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priesthood", + "example_sentence_native": "Dedicó su vida al sacerdocio.", + "example_sentence_english": "He dedicated his life to the priesthood.", + "pos": "noun", + "word_frequency": 15780 + }, + { + "word": "sardina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sardine", + "example_sentence_native": "Me encantan las sardinas a la parrilla.", + "example_sentence_english": "I love grilled sardines.", + "pos": "noun", + "word_frequency": 15782 + }, + { + "word": "sexismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexism", + "example_sentence_native": "Debemos luchar contra el sexismo en todas sus formas.", + "example_sentence_english": "We must fight against sexism in all its forms.", + "pos": "noun", + "word_frequency": 15783 + }, + { + "word": "significante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "significant;meaningful", + "example_sentence_native": "Su contribución fue realmente significante para el proyecto.", + "example_sentence_english": "His contribution was truly significant for the project.", + "pos": "adjective", + "word_frequency": 15786 + }, + { + "word": "sobornar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bribe", + "example_sentence_native": "Intentaron sobornar al funcionario.", + "example_sentence_english": "They tried to bribe the official.", + "pos": "verb", + "word_frequency": 15787 + }, + { + "word": "stress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stress", + "example_sentence_native": "El trabajo le causa mucho estrés.", + "example_sentence_english": "The job causes him a lot of stress.", + "pos": "noun", + "word_frequency": 15792 + }, + { + "word": "suavizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to soften;to ease", + "example_sentence_native": "Intentó suavizar la situación con una broma.", + "example_sentence_english": "He tried to ease the situation with a joke.", + "pos": "verb", + "word_frequency": 15793 + }, + { + "word": "subsiguiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsequent", + "example_sentence_native": "Las consecuencias subsiguientes fueron graves.", + "example_sentence_english": "The subsequent consequences were serious.", + "pos": "adjective", + "word_frequency": 15794 + }, + { + "word": "surrealismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrealism", + "example_sentence_native": "El surrealismo es un movimiento artístico del siglo XX.", + "example_sentence_english": "Surrealism is a 20th-century art movement.", + "pos": "noun", + "word_frequency": 15796 + }, + { + "word": "tapete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mat;rug", + "example_sentence_native": "Puso un tapete nuevo en la entrada.", + "example_sentence_english": "He put a new mat at the entrance.", + "pos": "noun", + "word_frequency": 15797 + }, + { + "word": "tarot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tarot", + "example_sentence_native": "Le leyó las cartas del tarot.", + "example_sentence_english": "She read his tarot cards.", + "pos": "noun", + "word_frequency": 15798 + }, + { + "word": "tenaz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenacious;persistent", + "example_sentence_native": "Su tenaz esfuerzo lo llevó al éxito.", + "example_sentence_english": "His tenacious effort led him to success.", + "pos": "adjective", + "word_frequency": 15800 + }, + { + "word": "terma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal bath;hot spring", + "example_sentence_native": "Visitamos las termas romanas antiguas.", + "example_sentence_english": "We visited the ancient Roman thermal baths.", + "pos": "noun", + "word_frequency": 15801 + }, + { + "word": "tifón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typhoon", + "example_sentence_native": "El tifón causó mucha destrucción en la costa.", + "example_sentence_english": "The typhoon caused a lot of destruction on the coast.", + "pos": "noun", + "word_frequency": 15802 + }, + { + "word": "tracto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tract", + "example_sentence_native": "El tracto digestivo es esencial para la absorción de nutrientes.", + "example_sentence_english": "The digestive tract is essential for nutrient absorption.", + "pos": "noun", + "word_frequency": 15803 + }, + { + "word": "trascendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transcendent;profound", + "example_sentence_native": "Fue una experiencia trascendente que cambió su perspectiva.", + "example_sentence_english": "It was a transcendent experience that changed his perspective.", + "pos": "adjective", + "word_frequency": 15804 + }, + { + "word": "tumbado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lying down;reclined", + "example_sentence_native": "Se quedó tumbado en el sofá toda la tarde.", + "example_sentence_english": "He stayed lying down on the sofa all afternoon.", + "pos": "adjective", + "word_frequency": 15805 + }, + { + "word": "táctil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactile;touch-sensitive", + "example_sentence_native": "La pantalla táctil del teléfono es muy sensible.", + "example_sentence_english": "The phone's touch screen is very sensitive.", + "pos": "adjective", + "word_frequency": 15806 + }, + { + "word": "viaducto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viaduct", + "example_sentence_native": "El viaducto cruza el valle profundo.", + "example_sentence_english": "The viaduct crosses the deep valley.", + "pos": "noun", + "word_frequency": 15807 + }, + { + "word": "verter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pour;to spill", + "example_sentence_native": "Por favor, vierte el agua en el vaso.", + "example_sentence_english": "Please pour the water into the glass.", + "pos": "verb", + "word_frequency": 15808 + }, + { + "word": "vándalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandal", + "example_sentence_native": "Los vándalos destrozaron la propiedad pública.", + "example_sentence_english": "The vandals destroyed public property.", + "pos": "noun", + "word_frequency": 15810 + }, + { + "word": "webcam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "webcam", + "example_sentence_native": "Necesito una webcam para la videollamada.", + "example_sentence_english": "I need a webcam for the video call.", + "pos": "noun", + "word_frequency": 15811 + }, + { + "word": "yodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iodine", + "example_sentence_native": "El yodo es importante para la función tiroidea.", + "example_sentence_english": "Iodine is important for thyroid function.", + "pos": "noun", + "word_frequency": 15812 + }, + { + "word": "ídem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ditto;same", + "example_sentence_native": "\"Me gusta el chocolate.\" \"Ídem.\"", + "example_sentence_english": "\"I like chocolate.\" \"Ditto.\"", + "pos": "adverb", + "word_frequency": 15815 + }, + { + "word": "acepción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meaning;sense (of a word)", + "example_sentence_native": "Esta palabra tiene varias acepciones.", + "example_sentence_english": "This word has several meanings.", + "pos": "noun", + "word_frequency": 15817 + }, + { + "word": "adivino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortune-teller;soothsayer", + "example_sentence_native": "El adivino predijo su futuro.", + "example_sentence_english": "The fortune-teller predicted his future.", + "pos": "noun", + "word_frequency": 15818 + }, + { + "word": "afirmativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affirmative;positive", + "example_sentence_native": "Su respuesta fue afirmativa.", + "example_sentence_english": "His answer was affirmative.", + "pos": "adjective", + "word_frequency": 15819 + }, + { + "word": "ahorcado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hanged", + "example_sentence_native": "En el juego, el hombre ahorcado pierde.", + "example_sentence_english": "In the game, the hanged man loses.", + "pos": "adjective", + "word_frequency": 15821 + }, + { + "word": "alcantarilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sewer;drain", + "example_sentence_native": "La tapa de la alcantarilla estaba suelta.", + "example_sentence_english": "The sewer lid was loose.", + "pos": "noun", + "word_frequency": 15822 + }, + { + "word": "alegoría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegory", + "example_sentence_native": "La novela es una alegoría de la sociedad moderna.", + "example_sentence_english": "The novel is an allegory of modern society.", + "pos": "noun", + "word_frequency": 15824 + }, + { + "word": "ameno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasant;enjoyable", + "example_sentence_native": "La conversación fue muy amena.", + "example_sentence_english": "The conversation was very pleasant.", + "pos": "adjective", + "word_frequency": 15827 + }, + { + "word": "anfiteatro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphitheater", + "example_sentence_native": "El concierto se celebró en el antiguo anfiteatro.", + "example_sentence_english": "The concert was held in the ancient amphitheater.", + "pos": "noun", + "word_frequency": 15829 + }, + { + "word": "arsénico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arsenic", + "example_sentence_native": "El arsénico es un elemento químico tóxico.", + "example_sentence_english": "Arsenic is a toxic chemical element.", + "pos": "noun", + "word_frequency": 15831 + }, + { + "word": "asno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "donkey;ass", + "example_sentence_native": "El asno cargaba con la leña.", + "example_sentence_english": "The donkey was carrying the firewood.", + "pos": "noun", + "word_frequency": 15832 + }, + { + "word": "atajar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut short;to intercept;to stop", + "example_sentence_native": "Hay que atajar el problema antes de que empeore.", + "example_sentence_english": "We must stop the problem before it gets worse.", + "pos": "verb", + "word_frequency": 15834 + }, + { + "word": "autóctono", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indigenous;native", + "example_sentence_native": "La flora autóctona de la región es muy diversa.", + "example_sentence_english": "The indigenous flora of the region is very diverse.", + "pos": "adjective", + "word_frequency": 15835 + }, + { + "word": "autógrafo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autograph", + "example_sentence_native": "Consiguió un autógrafo de su actor favorito.", + "example_sentence_english": "He got an autograph from his favorite actor.", + "pos": "noun", + "word_frequency": 15836 + }, + { + "word": "basal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "basal;basic;fundamental", + "example_sentence_native": "La tasa metabólica basal es la energía que el cuerpo necesita en reposo.", + "example_sentence_english": "The basal metabolic rate is the energy the body needs at rest.", + "pos": "adjective", + "word_frequency": 15838 + }, + { + "word": "basicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basically", + "example_sentence_native": "Básicamente, el plan es muy simple.", + "example_sentence_english": "Basically, the plan is very simple.", + "pos": "adverb", + "word_frequency": 15839 + }, + { + "word": "bastidor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame", + "example_sentence_native": "El pintor montó el lienzo en el bastidor.", + "example_sentence_english": "The painter mounted the canvas on the frame.", + "pos": "noun", + "word_frequency": 15840 + }, + { + "word": "baya", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "berry", + "example_sentence_native": "Las bayas silvestres son deliciosas.", + "example_sentence_english": "Wild berries are delicious.", + "pos": "noun", + "word_frequency": 15841 + }, + { + "word": "boa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boa", + "example_sentence_native": "La boa se enrolló alrededor de la rama.", + "example_sentence_english": "The boa coiled around the branch.", + "pos": "noun", + "word_frequency": 15843 + }, + { + "word": "cascabel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rattle (bell);rattlesnake", + "example_sentence_native": "El cascabel de la serpiente sonó.", + "example_sentence_english": "The snake's rattle sounded.", + "pos": "noun", + "word_frequency": 15849 + }, + { + "word": "cautelar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to caution;to protect;to take precautionary measures", + "example_sentence_native": "Debemos cautelar nuestros intereses.", + "example_sentence_english": "We must protect our interests.", + "pos": "verb", + "word_frequency": 15850 + }, + { + "word": "cañon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canyon;cannon;barrel (of a gun)", + "example_sentence_native": "El Gran Cañón es impresionante.", + "example_sentence_english": "The Grand Canyon is impressive.", + "pos": "noun", + "word_frequency": 15852 + }, + { + "word": "centralismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centralism", + "example_sentence_native": "El centralismo es un sistema político.", + "example_sentence_english": "Centralism is a political system.", + "pos": "noun", + "word_frequency": 15854 + }, + { + "word": "chatear", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chat", + "example_sentence_native": "Me gusta chatear con mis amigos en línea.", + "example_sentence_english": "I like to chat with my friends online.", + "pos": "verb", + "word_frequency": 15855 + }, + { + "word": "chato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat;blunt;boring (colloquial)", + "example_sentence_native": "Tiene la nariz chata.", + "example_sentence_english": "He has a flat nose.", + "pos": "adjective", + "word_frequency": 15856 + }, + { + "word": "clamar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clamor;to cry out;to demand", + "example_sentence_native": "La gente clamaba por justicia.", + "example_sentence_english": "The people clamored for justice.", + "pos": "verb", + "word_frequency": 15858 + }, + { + "word": "comino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cumin", + "example_sentence_native": "Añade un poco de comino al guiso.", + "example_sentence_english": "Add a little cumin to the stew.", + "pos": "noun", + "word_frequency": 15862 + }, + { + "word": "comparsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troupe;carnival group;extra (in a play)", + "example_sentence_native": "La comparsa desfiló con alegría.", + "example_sentence_english": "The troupe paraded with joy.", + "pos": "noun", + "word_frequency": 15863 + }, + { + "word": "condescendiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "condescending", + "example_sentence_native": "Su tono era condescendiente.", + "example_sentence_english": "His tone was condescending.", + "pos": "adjective", + "word_frequency": 15864 + }, + { + "word": "contemplado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemplated;considered;foreseen", + "example_sentence_native": "Es un escenario contemplado en el plan.", + "example_sentence_english": "It is a scenario contemplated in the plan.", + "pos": "adjective", + "word_frequency": 15865 + }, + { + "word": "contraataque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterattack", + "example_sentence_native": "El equipo lanzó un rápido contraataque.", + "example_sentence_english": "The team launched a quick counterattack.", + "pos": "noun", + "word_frequency": 15866 + }, + { + "word": "corregidor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corregidor (magistrate in historical Spain;colonies)", + "example_sentence_native": "El corregidor era una figura importante en la administración colonial.", + "example_sentence_english": "The corregidor was an important figure in colonial administration.", + "pos": "noun", + "word_frequency": 15867 + }, + { + "word": "cristiandad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Christendom", + "example_sentence_native": "La cristiandad se extendió por Europa.", + "example_sentence_english": "Christendom spread throughout Europe.", + "pos": "noun", + "word_frequency": 15868 + }, + { + "word": "céntrico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "central;downtown", + "example_sentence_native": "Vivimos en un apartamento muy céntrico.", + "example_sentence_english": "We live in a very central apartment.", + "pos": "adjective", + "word_frequency": 15870 + }, + { + "word": "debilitamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weakening;debilitation", + "example_sentence_native": "El debilitamiento de la economía es preocupante.", + "example_sentence_english": "The weakening of the economy is worrying.", + "pos": "noun", + "word_frequency": 15872 + }, + { + "word": "degeneración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degeneration", + "example_sentence_native": "La degeneración de los tejidos es un proceso natural.", + "example_sentence_english": "Tissue degeneration is a natural process.", + "pos": "noun", + "word_frequency": 15873 + }, + { + "word": "degradado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "degraded;faded;gradient (haircut)", + "example_sentence_native": "La calidad de la imagen se ha degradado.", + "example_sentence_english": "The image quality has degraded.", + "pos": "adjective", + "word_frequency": 15874 + }, + { + "word": "deliberación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deliberation", + "example_sentence_native": "Después de mucha deliberación, tomaron una decisión.", + "example_sentence_english": "After much deliberation, they made a decision.", + "pos": "noun", + "word_frequency": 15875 + }, + { + "word": "desechar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discard;to reject;to dismiss", + "example_sentence_native": "Debemos desechar la basura correctamente.", + "example_sentence_english": "We must discard the trash properly.", + "pos": "verb", + "word_frequency": 15876 + }, + { + "word": "desvanecer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to vanish;to fade;to dispel", + "example_sentence_native": "Los recuerdos comenzaron a desvanecerse.", + "example_sentence_english": "The memories began to fade.", + "pos": "verb", + "word_frequency": 15877 + }, + { + "word": "disgustar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to displease;to upset;to dislike", + "example_sentence_native": "Me disgusta la injusticia.", + "example_sentence_english": "Injustice displeases me.", + "pos": "verb", + "word_frequency": 15879 + }, + { + "word": "divisorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divisive;partition", + "example_sentence_native": "La pared divisoria separaba las dos habitaciones.", + "example_sentence_english": "The partition wall separated the two rooms.", + "pos": "adjective", + "word_frequency": 15880 + }, + { + "word": "dosciento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two hundred", + "example_sentence_native": "Hay doscientos libros en la biblioteca.", + "example_sentence_english": "There are two hundred books in the library.", + "pos": "adjective", + "word_frequency": 15883 + }, + { + "word": "edil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "councilor;alderman", + "example_sentence_native": "El edil presentó una nueva propuesta para la ciudad.", + "example_sentence_english": "The councilor presented a new proposal for the city.", + "pos": "noun", + "word_frequency": 15885 + }, + { + "word": "emular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to emulate", + "example_sentence_native": "Intentó emular el estilo de su artista favorito.", + "example_sentence_english": "He tried to emulate the style of his favorite artist.", + "pos": "verb", + "word_frequency": 15888 + }, + { + "word": "encaminado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on track;headed in the right direction", + "example_sentence_native": "El proyecto está bien encaminado.", + "example_sentence_english": "The project is well on track.", + "pos": "adjective", + "word_frequency": 15889 + }, + { + "word": "enmarcar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frame;to set (in a context)", + "example_sentence_native": "Quiero enmarcar esta foto.", + "example_sentence_english": "I want to frame this photo.", + "pos": "verb", + "word_frequency": 15890 + }, + { + "word": "escapada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "getaway;escape", + "example_sentence_native": "Hicimos una escapada de fin de semana a la playa.", + "example_sentence_english": "We took a weekend getaway to the beach.", + "pos": "noun", + "word_frequency": 15891 + }, + { + "word": "esclerosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sclerosis", + "example_sentence_native": "La esclerosis múltiple es una enfermedad neurológica.", + "example_sentence_english": "Multiple sclerosis is a neurological disease.", + "pos": "noun", + "word_frequency": 15892 + }, + { + "word": "estacional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seasonal", + "example_sentence_native": "Las alergias estacionales son muy comunes en primavera.", + "example_sentence_english": "Seasonal allergies are very common in spring.", + "pos": "adjective", + "word_frequency": 15893 + }, + { + "word": "estático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "static", + "example_sentence_native": "La imagen permaneció estática en la pantalla.", + "example_sentence_english": "The image remained static on the screen.", + "pos": "adjective", + "word_frequency": 15895 + }, + { + "word": "eufemismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "euphemism", + "example_sentence_native": "\"Pasar a mejor vida\" es un eufemismo para morir.", + "example_sentence_english": "\"To pass away\" is a euphemism for dying.", + "pos": "noun", + "word_frequency": 15896 + }, + { + "word": "explicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explained", + "example_sentence_native": "El concepto fue bien explicado por el profesor.", + "example_sentence_english": "The concept was well explained by the professor.", + "pos": "adjective", + "word_frequency": 15897 + }, + { + "word": "favorablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favorably", + "example_sentence_native": "La propuesta fue recibida favorablemente.", + "example_sentence_english": "The proposal was favorably received.", + "pos": "adverb", + "word_frequency": 15898 + }, + { + "word": "feminicidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "femicide", + "example_sentence_native": "La ley busca prevenir el feminicidio.", + "example_sentence_english": "The law seeks to prevent femicide.", + "pos": "noun", + "word_frequency": 15899 + }, + { + "word": "fetiche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetish", + "example_sentence_native": "Tiene un fetiche por los zapatos.", + "example_sentence_english": "He has a fetish for shoes.", + "pos": "noun", + "word_frequency": 15901 + }, + { + "word": "fonética", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phonetics", + "example_sentence_native": "La fonética es el estudio de los sonidos del habla.", + "example_sentence_english": "Phonetics is the study of speech sounds.", + "pos": "noun", + "word_frequency": 15903 + }, + { + "word": "fortalecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strengthened;reinforced", + "example_sentence_native": "El equipo salió fortalecido de la derrota.", + "example_sentence_english": "The team emerged strengthened from the defeat.", + "pos": "adjective", + "word_frequency": 15904 + }, + { + "word": "garbanzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chickpea", + "example_sentence_native": "Me encantan los garbanzos en el cocido.", + "example_sentence_english": "I love chickpeas in the stew.", + "pos": "noun", + "word_frequency": 15907 + }, + { + "word": "georgiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Georgian", + "example_sentence_native": "El idioma georgiano es muy complejo.", + "example_sentence_english": "The Georgian language is very complex.", + "pos": "adjective", + "word_frequency": 15908 + }, + { + "word": "grupito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small group;clique", + "example_sentence_native": "Se formó un grupito de amigos en la fiesta.", + "example_sentence_english": "A small group of friends formed at the party.", + "pos": "noun", + "word_frequency": 15911 + }, + { + "word": "hereditario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hereditary", + "example_sentence_native": "La calvicie puede ser un rasgo hereditario.", + "example_sentence_english": "Baldness can be a hereditary trait.", + "pos": "adjective", + "word_frequency": 15915 + }, + { + "word": "idiosincrasia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idiosyncrasy", + "example_sentence_native": "Su idiosincrasia lo hace único.", + "example_sentence_english": "His idiosyncrasy makes him unique.", + "pos": "noun", + "word_frequency": 15920 + }, + { + "word": "incógnita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unknown;enigma", + "example_sentence_native": "La incógnita de la ecuación era difícil de resolver.", + "example_sentence_english": "The unknown in the equation was difficult to solve.", + "pos": "noun", + "word_frequency": 15921 + }, + { + "word": "ininterrumpido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uninterrupted", + "example_sentence_native": "Tuvimos un flujo de trabajo ininterrumpido.", + "example_sentence_english": "We had an uninterrupted workflow.", + "pos": "adjective", + "word_frequency": 15922 + }, + { + "word": "innecesariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnecessarily", + "example_sentence_native": "Te preocupas innecesariamente.", + "example_sentence_english": "You worry unnecessarily.", + "pos": "adverb", + "word_frequency": 15923 + }, + { + "word": "insistente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insistent", + "example_sentence_native": "Fue muy insistente con su petición.", + "example_sentence_english": "He was very insistent with his request.", + "pos": "adjective", + "word_frequency": 15924 + }, + { + "word": "intelectualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectually", + "example_sentence_native": "Es una persona muy estimulante intelectualmente.", + "example_sentence_english": "He is a very intellectually stimulating person.", + "pos": "adverb", + "word_frequency": 15925 + }, + { + "word": "judicialmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judicially", + "example_sentence_native": "El caso fue resuelto judicialmente.", + "example_sentence_english": "The case was resolved judicially.", + "pos": "adverb", + "word_frequency": 15928 + }, + { + "word": "jumbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jumbo (size)", + "example_sentence_native": "Compramos un paquete jumbo de patatas fritas.", + "example_sentence_english": "We bought a jumbo pack of potato chips.", + "pos": "noun", + "word_frequency": 15929 + }, + { + "word": "juntado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joined;gathered", + "example_sentence_native": "Los documentos estaban juntados en una pila.", + "example_sentence_english": "The documents were gathered in a pile.", + "pos": "adjective", + "word_frequency": 15930 + }, + { + "word": "lite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lite (version)", + "example_sentence_native": "Prefiero la versión lite de la aplicación.", + "example_sentence_english": "I prefer the lite version of the application.", + "pos": "noun", + "word_frequency": 15935 + }, + { + "word": "loto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lotus", + "example_sentence_native": "La flor de loto es muy hermosa.", + "example_sentence_english": "The lotus flower is very beautiful.", + "pos": "noun", + "word_frequency": 15937 + }, + { + "word": "macabro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "macabre", + "example_sentence_native": "La escena del crimen era macabra.", + "example_sentence_english": "The crime scene was macabre.", + "pos": "adjective", + "word_frequency": 15939 + }, + { + "word": "manipulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulated", + "example_sentence_native": "La información fue manipulada para engañar al público.", + "example_sentence_english": "The information was manipulated to deceive the public.", + "pos": "adjective", + "word_frequency": 15940 + }, + { + "word": "matematica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mathematics", + "example_sentence_native": "Me gusta estudiar matemática.", + "example_sentence_english": "I like to study mathematics.", + "pos": "noun", + "word_frequency": 15941 + }, + { + "word": "matricula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enrollment;registration;license plate", + "example_sentence_native": "La matrícula para el curso ya está abierta.", + "example_sentence_english": "Enrollment for the course is already open.", + "pos": "noun", + "word_frequency": 15943 + }, + { + "word": "merma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shrinkage;loss", + "example_sentence_native": "Hubo una merma significativa en el inventario.", + "example_sentence_english": "There was a significant shrinkage in the inventory.", + "pos": "noun", + "word_frequency": 15946 + }, + { + "word": "mezquino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petty;mean;stingy", + "example_sentence_native": "Su actitud fue muy mezquina.", + "example_sentence_english": "His attitude was very petty.", + "pos": "adjective", + "word_frequency": 15947 + }, + { + "word": "minucioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meticulous;thorough", + "example_sentence_native": "Hizo un trabajo muy minucioso.", + "example_sentence_english": "He did a very meticulous job.", + "pos": "adjective", + "word_frequency": 15951 + }, + { + "word": "moderar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to moderate;to temper", + "example_sentence_native": "Debes moderar tu consumo de azúcar.", + "example_sentence_english": "You should moderate your sugar intake.", + "pos": "verb", + "word_frequency": 15953 + }, + { + "word": "mujeriego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "womanizer;philandering (adj.)", + "example_sentence_native": "Es conocido por ser un hombre mujeriego.", + "example_sentence_english": "He is known for being a philandering man.", + "pos": "adjective", + "word_frequency": 15955 + }, + { + "word": "murga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "street band (often carnival-related);nuisance", + "example_sentence_native": "La murga desfiló por las calles.", + "example_sentence_english": "The street band paraded through the streets.", + "pos": "noun", + "word_frequency": 15956 + }, + { + "word": "negrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bold (text);little black one (affectionate)", + "example_sentence_native": "Pon esta palabra en negrito.", + "example_sentence_english": "Put this word in bold.", + "pos": "noun", + "word_frequency": 15959 + }, + { + "word": "nica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nicaraguan (person from Nicaragua)", + "example_sentence_native": "Mi amigo es nica y vive en Managua.", + "example_sentence_english": "My friend is Nicaraguan and lives in Managua.", + "pos": "noun", + "word_frequency": 15961 + }, + { + "word": "nupcial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuptial;wedding", + "example_sentence_native": "La ceremonia nupcial fue muy emotiva.", + "example_sentence_english": "The nuptial ceremony was very emotional.", + "pos": "adjective", + "word_frequency": 15962 + }, + { + "word": "néctar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nectar", + "example_sentence_native": "Las abejas recogen néctar de las flores.", + "example_sentence_english": "Bees collect nectar from flowers.", + "pos": "noun", + "word_frequency": 15963 + }, + { + "word": "obrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to act;to work;to perform", + "example_sentence_native": "Es importante obrar con honestidad.", + "example_sentence_english": "It is important to act with honesty.", + "pos": "verb", + "word_frequency": 15965 + }, + { + "word": "obsceno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obscene", + "example_sentence_native": "El lenguaje que usó era obsceno.", + "example_sentence_english": "The language he used was obscene.", + "pos": "adjective", + "word_frequency": 15966 + }, + { + "word": "ojito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watch out;be careful (idiomatic)", + "example_sentence_native": "¡Ojito con ese escalón, es peligroso!", + "example_sentence_english": "Watch out for that step, it's dangerous!", + "pos": "noun", + "word_frequency": 15968 + }, + { + "word": "osito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teddy bear;little bear", + "example_sentence_native": "Mi hija duerme con su osito de peluche.", + "example_sentence_english": "My daughter sleeps with her teddy bear.", + "pos": "noun", + "word_frequency": 15971 + }, + { + "word": "oval", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oval", + "example_sentence_native": "La mesa tiene una forma oval.", + "example_sentence_english": "The table has an oval shape.", + "pos": "adjective", + "word_frequency": 15972 + }, + { + "word": "panista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member;supporter of the PAN party (Mexico)", + "example_sentence_native": "El candidato es un panista reconocido.", + "example_sentence_english": "The candidate is a recognized PAN member.", + "pos": "noun", + "word_frequency": 15974 + }, + { + "word": "penalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty;penalization", + "example_sentence_native": "El equipo recibió una penalización por falta.", + "example_sentence_english": "The team received a penalty for a foul.", + "pos": "noun", + "word_frequency": 15977 + }, + { + "word": "perdiz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partridge", + "example_sentence_native": "La perdiz es un ave de caza.", + "example_sentence_english": "The partridge is a game bird.", + "pos": "noun", + "word_frequency": 15978 + }, + { + "word": "piramidal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyramidal", + "example_sentence_native": "La estructura de la empresa es piramidal.", + "example_sentence_english": "The company's structure is pyramidal.", + "pos": "adjective", + "word_frequency": 15981 + }, + { + "word": "portado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "behaved (well;badly);carried", + "example_sentence_native": "El niño se ha portado muy bien hoy.", + "example_sentence_english": "The child has behaved very well today.", + "pos": "adjective", + "word_frequency": 15982 + }, + { + "word": "premiación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awards ceremony;prize-giving", + "example_sentence_native": "La premiación de los ganadores será mañana.", + "example_sentence_english": "The awards ceremony for the winners will be tomorrow.", + "pos": "noun", + "word_frequency": 15983 + }, + { + "word": "privatizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to privatize", + "example_sentence_native": "El gobierno planea privatizar algunas empresas públicas.", + "example_sentence_english": "The government plans to privatize some public companies.", + "pos": "verb", + "word_frequency": 15984 + }, + { + "word": "proteccionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protectionism", + "example_sentence_native": "Muchos países critican el proteccionismo económico.", + "example_sentence_english": "Many countries criticize economic protectionism.", + "pos": "noun", + "word_frequency": 15985 + }, + { + "word": "prócer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "national hero;illustrious figure", + "example_sentence_native": "José Martí es un prócer de la independencia cubana.", + "example_sentence_english": "José Martí is a national hero of Cuban independence.", + "pos": "noun", + "word_frequency": 15986 + }, + { + "word": "publicacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publication", + "example_sentence_native": "La nueva publicación de la revista sale el lunes.", + "example_sentence_english": "The new publication of the magazine comes out on Monday.", + "pos": "noun", + "word_frequency": 15988 + }, + { + "word": "quimera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chimera;illusion;fantasy", + "example_sentence_native": "Perseguir esa idea es una quimera.", + "example_sentence_english": "Chasing that idea is a chimera.", + "pos": "noun", + "word_frequency": 15992 + }, + { + "word": "racimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bunch;cluster (of grapes;bananas)", + "example_sentence_native": "Compré un racimo de uvas en el mercado.", + "example_sentence_english": "I bought a bunch of grapes at the market.", + "pos": "noun", + "word_frequency": 15993 + }, + { + "word": "recargo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surcharge;extra charge", + "example_sentence_native": "Hay un recargo por pago tardío.", + "example_sentence_english": "There is a surcharge for late payment.", + "pos": "noun", + "word_frequency": 15994 + }, + { + "word": "recobrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recover;to regain", + "example_sentence_native": "Necesito recobrar mis fuerzas después de la enfermedad.", + "example_sentence_english": "I need to recover my strength after the illness.", + "pos": "verb", + "word_frequency": 15995 + }, + { + "word": "reconversión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconversion;restructuring;transformation", + "example_sentence_native": "La reconversión industrial afectó a muchos trabajadores.", + "example_sentence_english": "The industrial reconversion affected many workers.", + "pos": "noun", + "word_frequency": 15996 + }, + { + "word": "remolacha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beetroot;beet", + "example_sentence_native": "Me gusta la ensalada de remolacha.", + "example_sentence_english": "I like beetroot salad.", + "pos": "noun", + "word_frequency": 15997 + }, + { + "word": "reojo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corner of the eye (used in 'de reojo' - out of the corner of one's eye)", + "example_sentence_native": "Lo miró de reojo para que no se diera cuenta.", + "example_sentence_english": "He looked at him out of the corner of his eye so he wouldn't notice.", + "pos": "noun", + "word_frequency": 15999 + }, + { + "word": "rizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curly;frizzy", + "example_sentence_native": "Tiene el pelo rizado y oscuro.", + "example_sentence_english": "She has curly, dark hair.", + "pos": "adjective", + "word_frequency": 16001 + }, + { + "word": "rupia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rupee", + "example_sentence_native": "La rupia india es la moneda oficial de la India.", + "example_sentence_english": "The Indian rupee is the official currency of India.", + "pos": "noun", + "word_frequency": 16002 + }, + { + "word": "sabotear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sabotage", + "example_sentence_native": "Intentaron sabotear el plan del enemigo.", + "example_sentence_english": "They tried to sabotage the enemy's plan.", + "pos": "verb", + "word_frequency": 16003 + }, + { + "word": "saturado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturated;overloaded", + "example_sentence_native": "El mercado está saturado de productos similares.", + "example_sentence_english": "The market is saturated with similar products.", + "pos": "adjective", + "word_frequency": 16007 + }, + { + "word": "sobrevivencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survival", + "example_sentence_native": "La sobrevivencia en la selva es difícil.", + "example_sentence_english": "Survival in the jungle is difficult.", + "pos": "noun", + "word_frequency": 16010 + }, + { + "word": "sociólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociologist", + "example_sentence_native": "Un sociólogo estudia las sociedades humanas.", + "example_sentence_english": "A sociologist studies human societies.", + "pos": "noun", + "word_frequency": 16011 + }, + { + "word": "sorbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sip;gulp", + "example_sentence_native": "Dio un sorbo a su café.", + "example_sentence_english": "He took a sip of his coffee.", + "pos": "noun", + "word_frequency": 16012 + }, + { + "word": "sota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jack (playing card)", + "example_sentence_native": "En la baraja española, la sota es la figura más baja.", + "example_sentence_english": "In the Spanish deck, the jack is the lowest face card.", + "pos": "noun", + "word_frequency": 16013 + }, + { + "word": "sulfato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sulfate", + "example_sentence_native": "El sulfato de cobre se usa como fungicida.", + "example_sentence_english": "Copper sulfate is used as a fungicide.", + "pos": "noun", + "word_frequency": 16016 + }, + { + "word": "surgido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arisen;emerged", + "example_sentence_native": "Un nuevo problema ha surgido inesperadamente.", + "example_sentence_english": "A new problem has unexpectedly arisen.", + "pos": "adjective", + "word_frequency": 16017 + }, + { + "word": "torcer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to twist;to sprain", + "example_sentence_native": "Se torció el tobillo jugando al fútbol.", + "example_sentence_english": "He sprained his ankle playing soccer.", + "pos": "verb", + "word_frequency": 16020 + }, + { + "word": "tuerca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nut (fastener)", + "example_sentence_native": "Necesito una llave para apretar esa tuerca.", + "example_sentence_english": "I need a wrench to tighten that nut.", + "pos": "noun", + "word_frequency": 16024 + }, + { + "word": "vamonos", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "let's go", + "example_sentence_native": "¡Vámonos de aquí antes de que llueva!", + "example_sentence_english": "Let's go from here before it rains!", + "pos": "verb", + "word_frequency": 16026 + }, + { + "word": "venidero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coming;future", + "example_sentence_native": "En los años venideros, la tecnología avanzará mucho.", + "example_sentence_english": "In the coming years, technology will advance greatly.", + "pos": "adjective", + "word_frequency": 16027 + }, + { + "word": "zaga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rear;defense (in sports)", + "example_sentence_native": "El equipo tiene una zaga muy sólida.", + "example_sentence_english": "The team has a very solid defense.", + "pos": "noun", + "word_frequency": 16031 + }, + { + "word": "abanderado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standard-bearer;flag-bearer;champion (figurative)", + "example_sentence_native": "Es el abanderado de la causa de la justicia social.", + "example_sentence_english": "He is the champion of the cause of social justice.", + "pos": "adjective", + "word_frequency": 16036 + }, + { + "word": "abrazado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embraced;hugged", + "example_sentence_native": "Los niños estaban abrazados a sus padres.", + "example_sentence_english": "The children were hugged by their parents.", + "pos": "adjective", + "word_frequency": 16037 + }, + { + "word": "abrupto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abruptly;steep (as adjective)", + "example_sentence_native": "El camino terminaba de forma abrupta.", + "example_sentence_english": "The road ended abruptly.", + "pos": "adverb", + "word_frequency": 16038 + }, + { + "word": "acostumbrarse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get used to;to accustom oneself", + "example_sentence_native": "Me cuesta acostumbrarme al nuevo horario.", + "example_sentence_english": "It's hard for me to get used to the new schedule.", + "pos": "verb", + "word_frequency": 16039 + }, + { + "word": "adelantado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advanced", + "example_sentence_native": "Es un niño muy adelantado para su edad.", + "example_sentence_english": "He is a very advanced child for his age.", + "pos": "adjective", + "word_frequency": 16040 + }, + { + "word": "agravante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aggravating", + "example_sentence_native": "La premeditación fue un factor agravante en el crimen.", + "example_sentence_english": "Premeditation was an aggravating factor in the crime.", + "pos": "adjective", + "word_frequency": 16041 + }, + { + "word": "ahumado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoked", + "example_sentence_native": "Me encanta el salmón ahumado.", + "example_sentence_english": "I love smoked salmon.", + "pos": "adjective", + "word_frequency": 16042 + }, + { + "word": "albornoz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bathrobe", + "example_sentence_native": "Se puso el albornoz después de la ducha.", + "example_sentence_english": "He put on his bathrobe after the shower.", + "pos": "noun", + "word_frequency": 16043 + }, + { + "word": "almidón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starch", + "example_sentence_native": "El arroz es rico en almidón.", + "example_sentence_english": "Rice is rich in starch.", + "pos": "noun", + "word_frequency": 16044 + }, + { + "word": "aluvión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flood;deluge", + "example_sentence_native": "Un aluvión de críticas cayó sobre el nuevo proyecto.", + "example_sentence_english": "A deluge of criticism fell upon the new project.", + "pos": "noun", + "word_frequency": 16045 + }, + { + "word": "ameritar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to merit;to deserve", + "example_sentence_native": "Su esfuerzo amerita un reconocimiento.", + "example_sentence_english": "His effort merits recognition.", + "pos": "verb", + "word_frequency": 16046 + }, + { + "word": "antesala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antechamber;waiting room", + "example_sentence_native": "Esperamos en la antesala antes de la reunión.", + "example_sentence_english": "We waited in the antechamber before the meeting.", + "pos": "noun", + "word_frequency": 16047 + }, + { + "word": "antidepresivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antidepressant", + "example_sentence_native": "El médico le recetó un antidepresivo.", + "example_sentence_english": "The doctor prescribed him an antidepressant.", + "pos": "noun", + "word_frequency": 16048 + }, + { + "word": "aplazamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postponement;deferral", + "example_sentence_native": "Hubo un aplazamiento de la fecha del examen.", + "example_sentence_english": "There was a postponement of the exam date.", + "pos": "noun", + "word_frequency": 16049 + }, + { + "word": "apresado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "captured;seized", + "example_sentence_native": "El barco apresado fue llevado a puerto.", + "example_sentence_english": "The captured ship was taken to port.", + "pos": "adjective", + "word_frequency": 16050 + }, + { + "word": "beneplácito", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "approval;consent", + "example_sentence_native": "El proyecto fue aprobado con el beneplácito de la junta.", + "example_sentence_english": "The project was approved with the board's consent.", + "pos": "noun", + "word_frequency": 16055 + }, + { + "word": "bolígrafo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pen;ballpoint pen", + "example_sentence_native": "Necesito un bolígrafo para escribir.", + "example_sentence_english": "I need a pen to write.", + "pos": "noun", + "word_frequency": 16057 + }, + { + "word": "bombeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pumping", + "example_sentence_native": "El bombeo de agua es esencial para la agricultura.", + "example_sentence_english": "Water pumping is essential for agriculture.", + "pos": "noun", + "word_frequency": 16058 + }, + { + "word": "burdo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crude;coarse", + "example_sentence_native": "Su comentario fue muy burdo e inapropiado.", + "example_sentence_english": "His comment was very crude and inappropriate.", + "pos": "adjective", + "word_frequency": 16062 + }, + { + "word": "caparazón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shell;carapace", + "example_sentence_native": "La tortuga se esconde en su caparazón.", + "example_sentence_english": "The turtle hides in its shell.", + "pos": "noun", + "word_frequency": 16066 + }, + { + "word": "carnero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ram;wether", + "example_sentence_native": "El carnero tiene cuernos grandes.", + "example_sentence_english": "The ram has large horns.", + "pos": "noun", + "word_frequency": 16067 + }, + { + "word": "carrete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reel;spool", + "example_sentence_native": "Necesito un carrete de hilo.", + "example_sentence_english": "I need a spool of thread.", + "pos": "noun", + "word_frequency": 16068 + }, + { + "word": "castidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chastity", + "example_sentence_native": "La castidad es un valor en algunas culturas.", + "example_sentence_english": "Chastity is a value in some cultures.", + "pos": "noun", + "word_frequency": 16069 + }, + { + "word": "cavar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dig", + "example_sentence_native": "Vamos a cavar un hoyo en el jardín.", + "example_sentence_english": "We are going to dig a hole in the garden.", + "pos": "verb", + "word_frequency": 16070 + }, + { + "word": "centinela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentinel;guard", + "example_sentence_native": "El centinela estaba de pie en la puerta.", + "example_sentence_english": "The sentinel was standing at the gate.", + "pos": "noun", + "word_frequency": 16071 + }, + { + "word": "cibernética", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cybernetics", + "example_sentence_native": "La cibernética es un campo de estudio fascinante.", + "example_sentence_english": "Cybernetics is a fascinating field of study.", + "pos": "noun", + "word_frequency": 16077 + }, + { + "word": "comparacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comparison", + "example_sentence_native": "Hizo una comparación entre los dos productos.", + "example_sentence_english": "He made a comparison between the two products.", + "pos": "noun", + "word_frequency": 16079 + }, + { + "word": "compañerismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camaraderie;fellowship", + "example_sentence_native": "El compañerismo es esencial en un equipo de trabajo.", + "example_sentence_english": "Camaraderie is essential in a work team.", + "pos": "noun", + "word_frequency": 16080 + }, + { + "word": "conector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connector;plug", + "example_sentence_native": "Necesito un conector USB para mi teléfono.", + "example_sentence_english": "I need a USB connector for my phone.", + "pos": "noun", + "word_frequency": 16081 + }, + { + "word": "conexion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "connection", + "example_sentence_native": "La conexión a internet es muy lenta hoy.", + "example_sentence_english": "The internet connection is very slow today.", + "pos": "noun", + "word_frequency": 16082 + }, + { + "word": "constituirse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to constitute oneself;to form", + "example_sentence_native": "El grupo decidió constituirse en una asociación formal.", + "example_sentence_english": "The group decided to form a formal association.", + "pos": "verb", + "word_frequency": 16083 + }, + { + "word": "consolar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to console;to comfort", + "example_sentence_native": "Intentó consolar a su amigo después de la mala noticia.", + "example_sentence_english": "He tried to console his friend after the bad news.", + "pos": "verb", + "word_frequency": 16084 + }, + { + "word": "custodio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custodian;guardian", + "example_sentence_native": "El custodio del museo vigilaba las obras de arte.", + "example_sentence_english": "The museum's custodian watched over the artworks.", + "pos": "noun", + "word_frequency": 16088 + }, + { + "word": "decretado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decreed;declared", + "example_sentence_native": "El estado de emergencia fue decretado por el gobierno.", + "example_sentence_english": "The state of emergency was decreed by the government.", + "pos": "adjective", + "word_frequency": 16090 + }, + { + "word": "descalificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disqualification", + "example_sentence_native": "Su descalificación del torneo fue una sorpresa.", + "example_sentence_english": "His disqualification from the tournament was a surprise.", + "pos": "noun", + "word_frequency": 16091 + }, + { + "word": "descripcion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "description", + "example_sentence_native": "Dame una descripción detallada del objeto.", + "example_sentence_english": "Give me a detailed description of the object.", + "pos": "noun", + "word_frequency": 16092 + }, + { + "word": "desembarcar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disembark;to unload", + "example_sentence_native": "Los pasajeros comenzaron a desembarcar del barco.", + "example_sentence_english": "The passengers began to disembark from the ship.", + "pos": "verb", + "word_frequency": 16093 + }, + { + "word": "desencanto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disillusionment;disappointment", + "example_sentence_native": "Sintió un profundo desencanto al ver la realidad.", + "example_sentence_english": "He felt a deep disillusionment upon seeing the reality.", + "pos": "noun", + "word_frequency": 16094 + }, + { + "word": "detergente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "detergent", + "example_sentence_native": "Necesitamos comprar más detergente para la ropa.", + "example_sentence_english": "We need to buy more laundry detergent.", + "pos": "noun", + "word_frequency": 16095 + }, + { + "word": "devastación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devastation", + "example_sentence_native": "La tormenta causó una gran devastación en la costa.", + "example_sentence_english": "The storm caused great devastation on the coast.", + "pos": "noun", + "word_frequency": 16096 + }, + { + "word": "diafragma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diaphragm", + "example_sentence_native": "El diafragma es un músculo importante para la respiración.", + "example_sentence_english": "The diaphragm is an important muscle for breathing.", + "pos": "noun", + "word_frequency": 16097 + }, + { + "word": "electrico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electric", + "example_sentence_native": "El coche eléctrico es el futuro del transporte.", + "example_sentence_english": "The electric car is the future of transportation.", + "pos": "adjective", + "word_frequency": 16099 + }, + { + "word": "elitista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elitist", + "example_sentence_native": "Su actitud elitista no le ayuda a hacer amigos.", + "example_sentence_english": "His elitist attitude doesn't help him make friends.", + "pos": "adjective", + "word_frequency": 16100 + }, + { + "word": "empeñado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determined;insistent", + "example_sentence_native": "Estaba empeñado en terminar el proyecto a tiempo.", + "example_sentence_english": "He was determined to finish the project on time.", + "pos": "adjective", + "word_frequency": 16101 + }, + { + "word": "emplearse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be employed;to be used", + "example_sentence_native": "La nueva tecnología puede emplearse en varios campos.", + "example_sentence_english": "The new technology can be used in various fields.", + "pos": "verb", + "word_frequency": 16102 + }, + { + "word": "engranaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gear;mechanism", + "example_sentence_native": "El engranaje del reloj estaba roto.", + "example_sentence_english": "The clock's gear was broken.", + "pos": "noun", + "word_frequency": 16104 + }, + { + "word": "enmarcado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framed;set within", + "example_sentence_native": "La foto estaba enmarcada en plata.", + "example_sentence_english": "The photo was framed in silver.", + "pos": "adjective", + "word_frequency": 16105 + }, + { + "word": "erigido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erected;built", + "example_sentence_native": "El monumento fue erigido en honor a los héroes.", + "example_sentence_english": "The monument was erected in honor of the heroes.", + "pos": "adjective", + "word_frequency": 16106 + }, + { + "word": "escarabajo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beetle", + "example_sentence_native": "Un escarabajo verde caminaba por la hoja.", + "example_sentence_english": "A green beetle was walking on the leaf.", + "pos": "noun", + "word_frequency": 16107 + }, + { + "word": "estrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platform;dais", + "example_sentence_native": "El orador subió al estrado para dar su discurso.", + "example_sentence_english": "The speaker went up to the platform to give his speech.", + "pos": "noun", + "word_frequency": 16108 + }, + { + "word": "exuberante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exuberant;lush", + "example_sentence_native": "La selva tropical es exuberante y llena de vida.", + "example_sentence_english": "The tropical jungle is lush and full of life.", + "pos": "adjective", + "word_frequency": 16109 + }, + { + "word": "fichado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signed (up);registered", + "example_sentence_native": "El nuevo jugador ya ha sido fichado por el equipo.", + "example_sentence_english": "The new player has already been signed by the team.", + "pos": "adjective", + "word_frequency": 16110 + }, + { + "word": "fichero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "file (computer);card index", + "example_sentence_native": "Guarda el documento en un nuevo fichero.", + "example_sentence_english": "Save the document in a new file.", + "pos": "noun", + "word_frequency": 16111 + }, + { + "word": "formalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formalize", + "example_sentence_native": "Necesitamos formalizar el acuerdo por escrito.", + "example_sentence_english": "We need to formalize the agreement in writing.", + "pos": "verb", + "word_frequency": 16114 + }, + { + "word": "fumado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoked", + "example_sentence_native": "Encontró un cigarro fumado en el cenicero.", + "example_sentence_english": "He found a smoked cigarette in the ashtray.", + "pos": "adjective", + "word_frequency": 16116 + }, + { + "word": "genoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genome", + "example_sentence_native": "El estudio del genoma humano ha avanzado mucho.", + "example_sentence_english": "The study of the human genome has advanced greatly.", + "pos": "noun", + "word_frequency": 16117 + }, + { + "word": "giratorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rotating", + "example_sentence_native": "La silla giratoria es muy cómoda para trabajar.", + "example_sentence_english": "The rotating chair is very comfortable for working.", + "pos": "adjective", + "word_frequency": 16120 + }, + { + "word": "globalizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globalized", + "example_sentence_native": "Vivimos en un mundo cada vez más globalizado.", + "example_sentence_english": "We live in an increasingly globalized world.", + "pos": "adjective", + "word_frequency": 16121 + }, + { + "word": "hotelero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hotel (adj.)", + "example_sentence_native": "La industria hotelera se recupera lentamente.", + "example_sentence_english": "The hotel industry is slowly recovering.", + "pos": "adjective", + "word_frequency": 16124 + }, + { + "word": "imprevisto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unforeseen", + "example_sentence_native": "Tuvimos que cancelar el viaje por un gasto imprevisto.", + "example_sentence_english": "We had to cancel the trip due to an unforeseen expense.", + "pos": "adjective", + "word_frequency": 16126 + }, + { + "word": "incorporado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incorporated", + "example_sentence_native": "El nuevo modelo tiene un sistema de navegación incorporado.", + "example_sentence_english": "The new model has a built-in navigation system.", + "pos": "adjective", + "word_frequency": 16127 + }, + { + "word": "incuestionable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unquestionable", + "example_sentence_native": "Su talento es incuestionable.", + "example_sentence_english": "His talent is unquestionable.", + "pos": "adjective", + "word_frequency": 16128 + }, + { + "word": "inseparable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inseparable", + "example_sentence_native": "Son amigos inseparables desde la infancia.", + "example_sentence_english": "They have been inseparable friends since childhood.", + "pos": "adjective", + "word_frequency": 16130 + }, + { + "word": "institucion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "institution", + "example_sentence_native": "Es una institución muy respetada en la ciudad.", + "example_sentence_english": "It is a very respected institution in the city.", + "pos": "noun", + "word_frequency": 16131 + }, + { + "word": "irrefutable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrefutable", + "example_sentence_native": "Presentó pruebas irrefutables de su inocencia.", + "example_sentence_english": "He presented irrefutable proof of his innocence.", + "pos": "adjective", + "word_frequency": 16132 + }, + { + "word": "item", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "item", + "example_sentence_native": "Necesitamos revisar cada ítem de la lista.", + "example_sentence_english": "We need to check each item on the list.", + "pos": "noun", + "word_frequency": 16134 + }, + { + "word": "jacuzzi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jacuzzi", + "example_sentence_native": "El hotel tiene un jacuzzi en la terraza.", + "example_sentence_english": "The hotel has a jacuzzi on the terrace.", + "pos": "noun", + "word_frequency": 16136 + }, + { + "word": "jugoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "juicy", + "example_sentence_native": "La naranja estaba muy jugosa.", + "example_sentence_english": "The orange was very juicy.", + "pos": "adjective", + "word_frequency": 16139 + }, + { + "word": "lamer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lick", + "example_sentence_native": "El perro empezó a lamer mi mano.", + "example_sentence_english": "The dog started to lick my hand.", + "pos": "verb", + "word_frequency": 16145 + }, + { + "word": "legend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legend", + "example_sentence_native": "Es una leyenda del fútbol.", + "example_sentence_english": "He is a football legend.", + "pos": "noun", + "word_frequency": 16147 + }, + { + "word": "licuado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smoothie", + "example_sentence_native": "Me gusta tomar un licuado de frutas por la mañana.", + "example_sentence_english": "I like to drink a fruit smoothie in the morning.", + "pos": "noun", + "word_frequency": 16148 + }, + { + "word": "loba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "she-wolf", + "example_sentence_native": "La loba aulló a la luna llena.", + "example_sentence_english": "The she-wolf howled at the full moon.", + "pos": "noun", + "word_frequency": 16149 + }, + { + "word": "loza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthenware", + "example_sentence_native": "Compramos una vajilla de loza muy bonita.", + "example_sentence_english": "We bought a very beautiful earthenware dinnerware set.", + "pos": "noun", + "word_frequency": 16150 + }, + { + "word": "maga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sorceress", + "example_sentence_native": "La maga realizó un truco increíble.", + "example_sentence_english": "The sorceress performed an incredible trick.", + "pos": "noun", + "word_frequency": 16154 + }, + { + "word": "malicioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malicious", + "example_sentence_native": "No hagas comentarios maliciosos sobre los demás.", + "example_sentence_english": "Don't make malicious comments about others.", + "pos": "adjective", + "word_frequency": 16156 + }, + { + "word": "medusa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jellyfish", + "example_sentence_native": "Vimos una medusa grande en el mar.", + "example_sentence_english": "We saw a large jellyfish in the sea.", + "pos": "noun", + "word_frequency": 16158 + }, + { + "word": "memorizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to memorize", + "example_sentence_native": "Necesito memorizar estas nuevas palabras para el examen.", + "example_sentence_english": "I need to memorize these new words for the exam.", + "pos": "verb", + "word_frequency": 16159 + }, + { + "word": "mezclarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix;to blend in", + "example_sentence_native": "Le gusta mezclarse con la gente local cuando viaja.", + "example_sentence_english": "He likes to mix with the local people when he travels.", + "pos": "verb", + "word_frequency": 16161 + }, + { + "word": "naco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tacky;uncultured person (slang;derogatory)", + "example_sentence_native": "Esa decoración se ve un poco naca.", + "example_sentence_english": "That decoration looks a bit tacky.", + "pos": "noun", + "word_frequency": 16163 + }, + { + "word": "operadora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operator (female)", + "example_sentence_native": "La operadora me transfirió al departamento de ventas.", + "example_sentence_english": "The operator transferred me to the sales department.", + "pos": "noun", + "word_frequency": 16167 + }, + { + "word": "parking", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parking lot;parking space", + "example_sentence_native": "No había parking disponible cerca del estadio.", + "example_sentence_english": "There was no parking available near the stadium.", + "pos": "noun", + "word_frequency": 16169 + }, + { + "word": "pastelería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastry shop;bakery", + "example_sentence_native": "Compramos un pastel delicioso en la pastelería.", + "example_sentence_english": "We bought a delicious cake at the pastry shop.", + "pos": "noun", + "word_frequency": 16171 + }, + { + "word": "pava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female turkey;kettle (colloquial)", + "example_sentence_native": "Puso agua a hervir en la pava para el té.", + "example_sentence_english": "She put water to boil in the kettle for tea.", + "pos": "noun", + "word_frequency": 16173 + }, + { + "word": "periodicidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "periodicity", + "example_sentence_native": "La periodicidad de las publicaciones es trimestral.", + "example_sentence_english": "The periodicity of the publications is quarterly.", + "pos": "noun", + "word_frequency": 16174 + }, + { + "word": "perpendicular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpendicular", + "example_sentence_native": "Las dos calles son perpendiculares entre sí.", + "example_sentence_english": "The two streets are perpendicular to each other.", + "pos": "adjective", + "word_frequency": 16175 + }, + { + "word": "perturbador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbing;unsettling", + "example_sentence_native": "La noticia fue bastante perturbadora para todos.", + "example_sentence_english": "The news was quite disturbing for everyone.", + "pos": "adjective", + "word_frequency": 16176 + }, + { + "word": "picardía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischief;roguishness", + "example_sentence_native": "Siempre tiene una picardía en la mirada.", + "example_sentence_english": "He always has a mischievous look in his eyes.", + "pos": "noun", + "word_frequency": 16177 + }, + { + "word": "plantón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seedling;sit-in (colloquial)", + "example_sentence_native": "Los estudiantes hicieron un plantón frente a la rectoría.", + "example_sentence_english": "The students staged a sit-in in front of the rector's office.", + "pos": "noun", + "word_frequency": 16180 + }, + { + "word": "precipitado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hasty;rushed", + "example_sentence_native": "Fue una decisión muy precipitada y sin pensar.", + "example_sentence_english": "It was a very hasty and thoughtless decision.", + "pos": "adjective", + "word_frequency": 16181 + }, + { + "word": "privar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deprive;to forbid", + "example_sentence_native": "No debes privarte de las cosas que te hacen feliz.", + "example_sentence_english": "You shouldn't deprive yourself of the things that make you happy.", + "pos": "verb", + "word_frequency": 16182 + }, + { + "word": "provisto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provided;supplied", + "example_sentence_native": "El refugio estaba bien provisto de mantas y alimentos.", + "example_sentence_english": "The shelter was well supplied with blankets and food.", + "pos": "adjective", + "word_frequency": 16184 + }, + { + "word": "pudrir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rot;to decay", + "example_sentence_native": "La fruta se va a pudrir si no la guardas en la nevera.", + "example_sentence_english": "The fruit will rot if you don't keep it in the fridge.", + "pos": "verb", + "word_frequency": 16185 + }, + { + "word": "recámara", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bedroom (LatAm);chamber", + "example_sentence_native": "La casa tiene tres recámaras y dos baños.", + "example_sentence_english": "The house has three bedrooms and two bathrooms.", + "pos": "noun", + "word_frequency": 16191 + }, + { + "word": "repartición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution;division", + "example_sentence_native": "La repartición de los beneficios fue justa.", + "example_sentence_english": "The distribution of profits was fair.", + "pos": "noun", + "word_frequency": 16192 + }, + { + "word": "resguardar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to protect;to guard;to shelter", + "example_sentence_native": "Es importante resguardar la información personal.", + "example_sentence_english": "It is important to protect personal information.", + "pos": "verb", + "word_frequency": 16195 + }, + { + "word": "retar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to challenge;to scold", + "example_sentence_native": "Lo retó a un duelo de ajedrez.", + "example_sentence_english": "He challenged him to a chess duel.", + "pos": "verb", + "word_frequency": 16196 + }, + { + "word": "rinoceronte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhinoceros", + "example_sentence_native": "El rinoceronte es un animal majestuoso pero en peligro.", + "example_sentence_english": "The rhinoceros is a majestic but endangered animal.", + "pos": "noun", + "word_frequency": 16198 + }, + { + "word": "sauna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sauna", + "example_sentence_native": "Me gusta relajarme en la sauna después de hacer ejercicio.", + "example_sentence_english": "I like to relax in the sauna after exercising.", + "pos": "noun", + "word_frequency": 16205 + }, + { + "word": "servilleta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "napkin", + "example_sentence_native": "Por favor, pásame una servilleta.", + "example_sentence_english": "Please pass me a napkin.", + "pos": "noun", + "word_frequency": 16207 + }, + { + "word": "sien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple (of the head)", + "example_sentence_native": "Se tocó la sien con el dedo.", + "example_sentence_english": "He touched his temple with his finger.", + "pos": "noun", + "word_frequency": 16210 + }, + { + "word": "soltado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "released;let go", + "example_sentence_native": "El pájaro ha sido soltado de la jaula.", + "example_sentence_english": "The bird has been released from the cage.", + "pos": "adjective", + "word_frequency": 16212 + }, + { + "word": "sticker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sticker", + "example_sentence_native": "Puso un sticker en su cuaderno.", + "example_sentence_english": "He put a sticker on his notebook.", + "pos": "noun", + "word_frequency": 16218 + }, + { + "word": "sudadera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweatshirt;hoodie", + "example_sentence_native": "Me puse mi sudadera favorita para salir.", + "example_sentence_english": "I put on my favorite sweatshirt to go out.", + "pos": "noun", + "word_frequency": 16221 + }, + { + "word": "superarse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome oneself;to improve oneself", + "example_sentence_native": "Es importante superarse cada día.", + "example_sentence_english": "It's important to improve oneself every day.", + "pos": "verb", + "word_frequency": 16222 + }, + { + "word": "sísmico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seismic", + "example_sentence_native": "La actividad sísmica ha aumentado en la región.", + "example_sentence_english": "Seismic activity has increased in the region.", + "pos": "adjective", + "word_frequency": 16223 + }, + { + "word": "tibetano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Tibetan", + "example_sentence_native": "El budismo tibetano es muy interesante.", + "example_sentence_english": "Tibetan Buddhism is very interesting.", + "pos": "adjective", + "word_frequency": 16227 + }, + { + "word": "til", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lime tree;linden tree", + "example_sentence_native": "Se sentó bajo la sombra de un til.", + "example_sentence_english": "He sat under the shade of a lime tree.", + "pos": "noun", + "word_frequency": 16228 + }, + { + "word": "trampolín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trampoline;diving board", + "example_sentence_native": "Los niños se divierten saltando en el trampolín.", + "example_sentence_english": "The children have fun jumping on the trampoline.", + "pos": "noun", + "word_frequency": 16230 + }, + { + "word": "turbina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbine", + "example_sentence_native": "La turbina del avión giraba rápidamente.", + "example_sentence_english": "The airplane's turbine was spinning rapidly.", + "pos": "noun", + "word_frequency": 16234 + }, + { + "word": "ubicarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be located;to place oneself;to get one's bearings", + "example_sentence_native": "Necesito ubicarme en el mapa.", + "example_sentence_english": "I need to locate myself on the map.", + "pos": "verb", + "word_frequency": 16236 + }, + { + "word": "ultraderecha", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "far-right;extreme right", + "example_sentence_native": "El partido de ultraderecha ganó algunos escaños.", + "example_sentence_english": "The far-right party won some seats.", + "pos": "noun", + "word_frequency": 16237 + }, + { + "word": "vikingo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Viking", + "example_sentence_native": "Los vikingos eran navegantes y guerreros.", + "example_sentence_english": "The Vikings were navigators and warriors.", + "pos": "noun", + "word_frequency": 16240 + }, + { + "word": "visor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visor", + "example_sentence_native": "El casco tiene un visor transparente.", + "example_sentence_english": "The helmet has a transparent visor.", + "pos": "noun", + "word_frequency": 16241 + }, + { + "word": "volcado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overturned;dumped;dedicated", + "example_sentence_native": "El camión quedó volcado en la carretera.", + "example_sentence_english": "The truck was overturned on the road.", + "pos": "adjective", + "word_frequency": 16242 + }, + { + "word": "éter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ether", + "example_sentence_native": "En la química, el éter es un compuesto orgánico.", + "example_sentence_english": "In chemistry, ether is an organic compound.", + "pos": "noun", + "word_frequency": 16247 + }, + { + "word": "acarrear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry;to entail;to bring about", + "example_sentence_native": "Sus decisiones podrían acarrear graves consecuencias.", + "example_sentence_english": "His decisions could entail serious consequences.", + "pos": "verb", + "word_frequency": 16248 + }, + { + "word": "accidentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uneven;rough;injured (in an accident)", + "example_sentence_native": "El terreno era muy accidentado para caminar.", + "example_sentence_english": "The terrain was very rough for walking.", + "pos": "adjective", + "word_frequency": 16249 + }, + { + "word": "acecho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lurking;stalking;ambush", + "example_sentence_native": "El depredador estaba al acecho de su presa.", + "example_sentence_english": "The predator was lurking for its prey.", + "pos": "noun", + "word_frequency": 16250 + }, + { + "word": "aconsejado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advised;recommended", + "example_sentence_native": "Es aconsejado seguir las instrucciones del médico.", + "example_sentence_english": "It is advised to follow the doctor's instructions.", + "pos": "adjective", + "word_frequency": 16251 + }, + { + "word": "acuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acknowledgment;accusation", + "example_sentence_native": "Recibí un acuse de recibo de mi correo.", + "example_sentence_english": "I received an acknowledgment of receipt for my mail.", + "pos": "noun", + "word_frequency": 16252 + }, + { + "word": "agora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agora", + "example_sentence_native": "El ágora era el centro de la vida pública en la antigua Grecia.", + "example_sentence_english": "The agora was the center of public life in ancient Greece.", + "pos": "noun", + "word_frequency": 16253 + }, + { + "word": "agronomía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agronomy", + "example_sentence_native": "Estudió agronomía para mejorar las técnicas de cultivo.", + "example_sentence_english": "He studied agronomy to improve cultivation techniques.", + "pos": "noun", + "word_frequency": 16254 + }, + { + "word": "aguila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eagle", + "example_sentence_native": "El águila volaba majestuosamente sobre las montañas.", + "example_sentence_english": "The eagle flew majestically over the mountains.", + "pos": "noun", + "word_frequency": 16255 + }, + { + "word": "alternar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alternate;to socialize", + "example_sentence_native": "Le gusta alternar con sus amigos los fines de semana.", + "example_sentence_english": "He likes to socialize with his friends on weekends.", + "pos": "verb", + "word_frequency": 16257 + }, + { + "word": "aludido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alluded to;mentioned", + "example_sentence_native": "El tema aludido en la conversación era muy delicado.", + "example_sentence_english": "The topic alluded to in the conversation was very delicate.", + "pos": "adjective", + "word_frequency": 16258 + }, + { + "word": "andadura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "walk;progress;course", + "example_sentence_native": "La empresa ha tenido una buena andadura en el mercado.", + "example_sentence_english": "The company has had a good run in the market.", + "pos": "noun", + "word_frequency": 16259 + }, + { + "word": "animalito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little animal;critter", + "example_sentence_native": "Mira qué animalito tan pequeño y bonito.", + "example_sentence_english": "Look what a small and beautiful little animal.", + "pos": "noun", + "word_frequency": 16260 + }, + { + "word": "antisemita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemitic", + "example_sentence_native": "Las declaraciones fueron consideradas antisemitas.", + "example_sentence_english": "The statements were considered antisemitic.", + "pos": "adjective", + "word_frequency": 16261 + }, + { + "word": "apio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "celery", + "example_sentence_native": "Me gusta añadir apio a la sopa.", + "example_sentence_english": "I like to add celery to the soup.", + "pos": "noun", + "word_frequency": 16262 + }, + { + "word": "arbitrariedad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitrariness", + "example_sentence_native": "La decisión fue tomada con total arbitrariedad.", + "example_sentence_english": "The decision was made with total arbitrariness.", + "pos": "noun", + "word_frequency": 16264 + }, + { + "word": "argumental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plot-related;argumentative", + "example_sentence_native": "La estructura argumental de la novela es compleja.", + "example_sentence_english": "The plot structure of the novel is complex.", + "pos": "adjective", + "word_frequency": 16265 + }, + { + "word": "arrebatado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carried away;snatched;passionate", + "example_sentence_native": "Su discurso fue arrebatado y lleno de emoción.", + "example_sentence_english": "His speech was passionate and full of emotion.", + "pos": "adjective", + "word_frequency": 16267 + }, + { + "word": "arrecho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "angry;horny;brave (regional slang)", + "example_sentence_native": "En algunos países, 'estar arrecho' significa estar enojado.", + "example_sentence_english": "In some countries, 'estar arrecho' means to be angry.", + "pos": "adjective", + "word_frequency": 16268 + }, + { + "word": "artífice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mastermind;architect;craftsman", + "example_sentence_native": "Él fue el artífice de todo el proyecto.", + "example_sentence_english": "He was the mastermind behind the entire project.", + "pos": "noun", + "word_frequency": 16269 + }, + { + "word": "astrónomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomer", + "example_sentence_native": "El astrónomo estudió las estrellas durante toda la noche.", + "example_sentence_english": "The astronomer studied the stars all night.", + "pos": "noun", + "word_frequency": 16270 + }, + { + "word": "atreverse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dare", + "example_sentence_native": "No se atreve a hablar en público.", + "example_sentence_english": "He doesn't dare to speak in public.", + "pos": "verb", + "word_frequency": 16273 + }, + { + "word": "aviador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aviator;pilot", + "example_sentence_native": "El aviador preparó su avión para el despegue.", + "example_sentence_english": "The aviator prepared his plane for takeoff.", + "pos": "noun", + "word_frequency": 16276 + }, + { + "word": "baluarte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bulwark;stronghold;pillar", + "example_sentence_native": "La libertad de prensa es un baluarte de la democracia.", + "example_sentence_english": "Freedom of the press is a bulwark of democracy.", + "pos": "noun", + "word_frequency": 16277 + }, + { + "word": "barriada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neighborhood;district;slum", + "example_sentence_native": "Creció en una barriada humilde de la ciudad.", + "example_sentence_english": "He grew up in a humble neighborhood of the city.", + "pos": "noun", + "word_frequency": 16278 + }, + { + "word": "bermejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reddish", + "example_sentence_native": "El cielo al atardecer tenía un tono bermejo.", + "example_sentence_english": "The sky at sunset had a reddish hue.", + "pos": "adjective", + "word_frequency": 16281 + }, + { + "word": "bobina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coil", + "example_sentence_native": "La bobina de hilo se desenrolló rápidamente.", + "example_sentence_english": "The spool of thread unwound quickly.", + "pos": "noun", + "word_frequency": 16285 + }, + { + "word": "borrego", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lamb", + "example_sentence_native": "El pastor cuidaba a sus borregos en el campo.", + "example_sentence_english": "The shepherd looked after his lambs in the field.", + "pos": "noun", + "word_frequency": 16286 + }, + { + "word": "cacerola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saucepan", + "example_sentence_native": "Calenté la sopa en una cacerola grande.", + "example_sentence_english": "I heated the soup in a large saucepan.", + "pos": "noun", + "word_frequency": 16293 + }, + { + "word": "campestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural", + "example_sentence_native": "Disfrutamos de un picnic campestre junto al río.", + "example_sentence_english": "We enjoyed a rural picnic by the river.", + "pos": "adjective", + "word_frequency": 16295 + }, + { + "word": "capataz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreman", + "example_sentence_native": "El capataz dio instrucciones a los trabajadores.", + "example_sentence_english": "The foreman gave instructions to the workers.", + "pos": "noun", + "word_frequency": 16296 + }, + { + "word": "capita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capita", + "example_sentence_native": "El ingreso per cápita ha aumentado en la región.", + "example_sentence_english": "The per capita income has increased in the region.", + "pos": "noun", + "word_frequency": 16297 + }, + { + "word": "carrizo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reed", + "example_sentence_native": "Los carrizos crecen a orillas del lago.", + "example_sentence_english": "Reeds grow on the banks of the lake.", + "pos": "noun", + "word_frequency": 16298 + }, + { + "word": "chelín", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shilling", + "example_sentence_native": "En el pasado, el chelín era una moneda común en algunos países.", + "example_sentence_english": "In the past, the shilling was a common currency in some countries.", + "pos": "noun", + "word_frequency": 16301 + }, + { + "word": "clinica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clinic", + "example_sentence_native": "Fui a la clínica para una revisión médica.", + "example_sentence_english": "I went to the clinic for a medical check-up.", + "pos": "noun", + "word_frequency": 16305 + }, + { + "word": "clítoris", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clitoris", + "example_sentence_native": "El clítoris es un órgano sexual femenino.", + "example_sentence_english": "The clitoris is a female sexual organ.", + "pos": "noun", + "word_frequency": 16306 + }, + { + "word": "coaching", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coaching", + "example_sentence_native": "Recibió coaching para mejorar sus habilidades de liderazgo.", + "example_sentence_english": "He received coaching to improve his leadership skills.", + "pos": "noun", + "word_frequency": 16307 + }, + { + "word": "conducido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driven", + "example_sentence_native": "El coche era conducido por un chófer experimentado.", + "example_sentence_english": "The car was driven by an experienced chauffeur.", + "pos": "adjective", + "word_frequency": 16311 + }, + { + "word": "consistorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "town hall", + "example_sentence_native": "El consistorio municipal aprobó el nuevo plan urbanístico.", + "example_sentence_english": "The municipal town hall approved the new urban plan.", + "pos": "noun", + "word_frequency": 16312 + }, + { + "word": "converger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to converge", + "example_sentence_native": "Los caminos convergen en el centro del pueblo.", + "example_sentence_english": "The roads converge in the center of the town.", + "pos": "verb", + "word_frequency": 16313 + }, + { + "word": "cristalino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crystalline", + "example_sentence_native": "El agua del lago era tan cristalina que se veía el fondo.", + "example_sentence_english": "The lake water was so clear that you could see the bottom.", + "pos": "adjective", + "word_frequency": 16314 + }, + { + "word": "crucifijo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crucifix", + "example_sentence_native": "Un crucifijo colgaba en la pared de la iglesia.", + "example_sentence_english": "A crucifix hung on the church wall.", + "pos": "noun", + "word_frequency": 16315 + }, + { + "word": "culminante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culminating", + "example_sentence_native": "El momento culminante de la obra fue el final inesperado.", + "example_sentence_english": "The culminating moment of the play was the unexpected ending.", + "pos": "adjective", + "word_frequency": 16316 + }, + { + "word": "demoler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demolish", + "example_sentence_native": "Van a demoler el edificio antiguo para construir uno nuevo.", + "example_sentence_english": "They are going to demolish the old building to construct a new one.", + "pos": "verb", + "word_frequency": 16317 + }, + { + "word": "densamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "densely", + "example_sentence_native": "El bosque estaba densamente poblado de árboles.", + "example_sentence_english": "The forest was densely populated with trees.", + "pos": "adverb", + "word_frequency": 16318 + }, + { + "word": "deparar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bring", + "example_sentence_native": "El futuro nos deparará muchas sorpresas.", + "example_sentence_english": "The future will bring us many surprises.", + "pos": "verb", + "word_frequency": 16319 + }, + { + "word": "derramamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shedding;spilling", + "example_sentence_native": "El derramamiento de sangre fue evitado.", + "example_sentence_english": "The shedding of blood was avoided.", + "pos": "noun", + "word_frequency": 16320 + }, + { + "word": "desfilar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to parade;to march", + "example_sentence_native": "Los soldados desfilaron por la plaza.", + "example_sentence_english": "The soldiers paraded through the square.", + "pos": "verb", + "word_frequency": 16321 + }, + { + "word": "deshidratación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dehydration", + "example_sentence_native": "La deshidratación puede ser peligrosa en climas cálidos.", + "example_sentence_english": "Dehydration can be dangerous in hot climates.", + "pos": "noun", + "word_frequency": 16322 + }, + { + "word": "desolación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desolation;devastation", + "example_sentence_native": "Sintió una profunda desolación tras la noticia.", + "example_sentence_english": "He felt a deep desolation after the news.", + "pos": "noun", + "word_frequency": 16323 + }, + { + "word": "despojado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stripped;deprived;bare", + "example_sentence_native": "El árbol estaba despojado de sus hojas en invierno.", + "example_sentence_english": "The tree was stripped of its leaves in winter.", + "pos": "adjective", + "word_frequency": 16324 + }, + { + "word": "dino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dino (short for dinosaur)", + "example_sentence_native": "Mi hijo tiene un juguete de un dino.", + "example_sentence_english": "My son has a dino toy.", + "pos": "noun", + "word_frequency": 16325 + }, + { + "word": "dramáticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dramatically", + "example_sentence_native": "La situación cambió dramáticamente.", + "example_sentence_english": "The situation changed dramatically.", + "pos": "adverb", + "word_frequency": 16328 + }, + { + "word": "edema", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edema", + "example_sentence_native": "El paciente presentaba edema en las piernas.", + "example_sentence_english": "The patient presented with edema in the legs.", + "pos": "noun", + "word_frequency": 16329 + }, + { + "word": "electronica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronics;electronic music", + "example_sentence_native": "Le gusta escuchar música electrónica.", + "example_sentence_english": "He likes to listen to electronic music.", + "pos": "noun", + "word_frequency": 16330 + }, + { + "word": "elegible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eligible", + "example_sentence_native": "Solo los estudiantes con buenas notas son elegibles para la beca.", + "example_sentence_english": "Only students with good grades are eligible for the scholarship.", + "pos": "adjective", + "word_frequency": 16331 + }, + { + "word": "eminente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eminent;prominent", + "example_sentence_native": "Es un científico eminente en su campo.", + "example_sentence_english": "He is an eminent scientist in his field.", + "pos": "adjective", + "word_frequency": 16332 + }, + { + "word": "encadenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chained;shackled", + "example_sentence_native": "El prisionero estaba encadenado a la pared.", + "example_sentence_english": "The prisoner was chained to the wall.", + "pos": "adjective", + "word_frequency": 16333 + }, + { + "word": "enjambre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swarm", + "example_sentence_native": "Un enjambre de abejas volaba cerca del árbol.", + "example_sentence_english": "A swarm of bees was flying near the tree.", + "pos": "noun", + "word_frequency": 16334 + }, + { + "word": "ensuciar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dirty;to soil", + "example_sentence_native": "No ensucies tu ropa nueva.", + "example_sentence_english": "Don't dirty your new clothes.", + "pos": "verb", + "word_frequency": 16335 + }, + { + "word": "entredicho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute;question", + "example_sentence_native": "Su reputación fue puesta en entredicho.", + "example_sentence_english": "His reputation was called into question.", + "pos": "noun", + "word_frequency": 16336 + }, + { + "word": "envoltura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrapper;packaging", + "example_sentence_native": "Quita la envoltura antes de comer el caramelo.", + "example_sentence_english": "Remove the wrapper before eating the candy.", + "pos": "noun", + "word_frequency": 16337 + }, + { + "word": "evacuado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evacuated", + "example_sentence_native": "La zona fue evacuada debido al incendio.", + "example_sentence_english": "The area was evacuated due to the fire.", + "pos": "adjective", + "word_frequency": 16339 + }, + { + "word": "expedido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "issued;dispatched", + "example_sentence_native": "El pasaporte fue expedido la semana pasada.", + "example_sentence_english": "The passport was issued last week.", + "pos": "adjective", + "word_frequency": 16341 + }, + { + "word": "factoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "factory;plant", + "example_sentence_native": "La nueva factoría creará muchos empleos.", + "example_sentence_english": "The new factory will create many jobs.", + "pos": "noun", + "word_frequency": 16342 + }, + { + "word": "femenil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female (adj.);women's", + "example_sentence_native": "El equipo de fútbol femenil ganó el campeonato.", + "example_sentence_english": "The women's soccer team won the championship.", + "pos": "adjective", + "word_frequency": 16343 + }, + { + "word": "follaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foliage", + "example_sentence_native": "El follaje de los árboles era muy denso.", + "example_sentence_english": "The foliage of the trees was very dense.", + "pos": "noun", + "word_frequency": 16345 + }, + { + "word": "forastero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stranger;outsider", + "example_sentence_native": "Un forastero llegó al pueblo.", + "example_sentence_english": "A stranger arrived in the town.", + "pos": "noun", + "word_frequency": 16346 + }, + { + "word": "fortificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortification", + "example_sentence_native": "La antigua fortificación protegía la ciudad.", + "example_sentence_english": "The ancient fortification protected the city.", + "pos": "noun", + "word_frequency": 16347 + }, + { + "word": "fresno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ash tree", + "example_sentence_native": "Plantamos un fresno en el jardín.", + "example_sentence_english": "We planted an ash tree in the garden.", + "pos": "noun", + "word_frequency": 16348 + }, + { + "word": "futurista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "futuristic", + "example_sentence_native": "El diseño del edificio es muy futurista.", + "example_sentence_english": "The building's design is very futuristic.", + "pos": "adjective", + "word_frequency": 16349 + }, + { + "word": "galeria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gallery;arcade", + "example_sentence_native": "Visitamos una galería de arte.", + "example_sentence_english": "We visited an art gallery.", + "pos": "noun", + "word_frequency": 16351 + }, + { + "word": "galpón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shed;warehouse", + "example_sentence_native": "Guardamos las herramientas en el galpón.", + "example_sentence_english": "We keep the tools in the shed.", + "pos": "noun", + "word_frequency": 16352 + }, + { + "word": "glosario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glossary", + "example_sentence_native": "Consulta el glosario al final del libro.", + "example_sentence_english": "Consult the glossary at the end of the book.", + "pos": "noun", + "word_frequency": 16356 + }, + { + "word": "gritado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shouted;yelled", + "example_sentence_native": "Su voz gritada resonó en la sala.", + "example_sentence_english": "His shouted voice echoed in the room.", + "pos": "adjective", + "word_frequency": 16358 + }, + { + "word": "hack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hack", + "example_sentence_native": "Descubrieron un hack en el sistema de seguridad.", + "example_sentence_english": "They discovered a hack in the security system.", + "pos": "noun", + "word_frequency": 16359 + }, + { + "word": "hipo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hiccup", + "example_sentence_native": "Tuve un hipo persistente después de comer muy rápido.", + "example_sentence_english": "I had a persistent hiccup after eating too fast.", + "pos": "noun", + "word_frequency": 16364 + }, + { + "word": "hispanoamericano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hispanic American", + "example_sentence_native": "La cultura hispanoamericana es muy rica y diversa.", + "example_sentence_english": "Hispanic American culture is very rich and diverse.", + "pos": "adjective", + "word_frequency": 16365 + }, + { + "word": "holiday", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holiday", + "example_sentence_native": "Estamos planeando nuestras próximas holiday en la playa.", + "example_sentence_english": "We are planning our next holiday at the beach.", + "pos": "noun", + "word_frequency": 16367 + }, + { + "word": "horóscopo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horoscope", + "example_sentence_native": "Siempre leo mi horóscopo en el periódico.", + "example_sentence_english": "I always read my horoscope in the newspaper.", + "pos": "noun", + "word_frequency": 16368 + }, + { + "word": "hype", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hype", + "example_sentence_native": "Hay mucho hype alrededor del nuevo lanzamiento del videojuego.", + "example_sentence_english": "There's a lot of hype around the new video game release.", + "pos": "noun", + "word_frequency": 16369 + }, + { + "word": "igualito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "just like;identical", + "example_sentence_native": "Ese perro es igualito a uno que tuve de niño.", + "example_sentence_english": "That dog is just like one I had as a child.", + "pos": "adjective", + "word_frequency": 16370 + }, + { + "word": "impronta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprint", + "example_sentence_native": "Su trabajo dejó una impronta duradera en la comunidad.", + "example_sentence_english": "His work left a lasting imprint on the community.", + "pos": "noun", + "word_frequency": 16371 + }, + { + "word": "imprudencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprudence", + "example_sentence_native": "Fue una imprudencia conducir tan rápido bajo la lluvia.", + "example_sentence_english": "It was an imprudence to drive so fast in the rain.", + "pos": "noun", + "word_frequency": 16372 + }, + { + "word": "inigualable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequaled", + "example_sentence_native": "Su talento para la música es inigualable.", + "example_sentence_english": "Her talent for music is unequaled.", + "pos": "adjective", + "word_frequency": 16374 + }, + { + "word": "intermediación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intermediation", + "example_sentence_native": "La intermediación del abogado fue clave para el acuerdo.", + "example_sentence_english": "The lawyer's intermediation was key to the agreement.", + "pos": "noun", + "word_frequency": 16375 + }, + { + "word": "jueguito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little game", + "example_sentence_native": "Los niños estaban entretenidos con un jueguito en el parque.", + "example_sentence_english": "The children were entertained with a little game in the park.", + "pos": "noun", + "word_frequency": 16380 + }, + { + "word": "justicialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Peronist", + "example_sentence_native": "El partido justicialista tiene una larga historia en Argentina.", + "example_sentence_english": "The Justicialist party has a long history in Argentina.", + "pos": "adjective", + "word_frequency": 16381 + }, + { + "word": "lingüista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguist", + "example_sentence_native": "Mi profesor de español es un lingüista muy reconocido.", + "example_sentence_english": "My Spanish teacher is a very renowned linguist.", + "pos": "noun", + "word_frequency": 16387 + }, + { + "word": "log", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "log", + "example_sentence_native": "Revisamos el log del sistema para encontrar el error.", + "example_sentence_english": "We checked the system log to find the error.", + "pos": "noun", + "word_frequency": 16388 + }, + { + "word": "lubricante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lubricant", + "example_sentence_native": "Necesitamos aplicar lubricante a las bisagras de la puerta.", + "example_sentence_english": "We need to apply lubricant to the door hinges.", + "pos": "noun", + "word_frequency": 16389 + }, + { + "word": "majo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nice;charming", + "example_sentence_native": "Es un chico muy majo y siempre está dispuesto a ayudar.", + "example_sentence_english": "He's a very nice guy and is always willing to help.", + "pos": "adjective", + "word_frequency": 16390 + }, + { + "word": "manchar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stain", + "example_sentence_native": "Ten cuidado de no manchar tu ropa con la pintura.", + "example_sentence_english": "Be careful not to stain your clothes with the paint.", + "pos": "verb", + "word_frequency": 16392 + }, + { + "word": "manejado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "managed;handled", + "example_sentence_native": "El proyecto fue manejado con gran eficiencia.", + "example_sentence_english": "The project was managed with great efficiency.", + "pos": "adjective", + "word_frequency": 16393 + }, + { + "word": "maná", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manna", + "example_sentence_native": "Consideraban el agua fresca como un maná en el desierto.", + "example_sentence_english": "They considered the fresh water as manna in the desert.", + "pos": "noun", + "word_frequency": 16394 + }, + { + "word": "mascara", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mask", + "example_sentence_native": "Llevaba una mascara para el baile de disfraces.", + "example_sentence_english": "She wore a mask for the costume party.", + "pos": "noun", + "word_frequency": 16396 + }, + { + "word": "menospreciar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to belittle;to scorn", + "example_sentence_native": "No debes menospreciar el esfuerzo de los demás.", + "example_sentence_english": "You shouldn't belittle the efforts of others.", + "pos": "verb", + "word_frequency": 16397 + }, + { + "word": "milk", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "milk", + "example_sentence_native": "Prefiero mi café con un poco de milk.", + "example_sentence_english": "I prefer my coffee with a little milk.", + "pos": "noun", + "word_frequency": 16398 + }, + { + "word": "monotonía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monotony", + "example_sentence_native": "La monotonía de su trabajo lo aburría.", + "example_sentence_english": "The monotony of his job bored him.", + "pos": "noun", + "word_frequency": 16400 + }, + { + "word": "montura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mount;frame (e.g.;glasses);saddle", + "example_sentence_native": "Necesito una nueva montura para mis gafas.", + "example_sentence_english": "I need a new frame for my glasses.", + "pos": "noun", + "word_frequency": 16402 + }, + { + "word": "monárquico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarchical", + "example_sentence_native": "El partido monárquico defendía la restauración de la realeza.", + "example_sentence_english": "The monarchical party defended the restoration of royalty.", + "pos": "adjective", + "word_frequency": 16403 + }, + { + "word": "morador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhabitant;dweller", + "example_sentence_native": "Los moradores de la antigua ciudad vivían en cuevas.", + "example_sentence_english": "The inhabitants of the ancient city lived in caves.", + "pos": "noun", + "word_frequency": 16404 + }, + { + "word": "mucosa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mucous membrane", + "example_sentence_native": "La mucosa nasal protege las vías respiratorias.", + "example_sentence_english": "The nasal mucous membrane protects the respiratory tract.", + "pos": "noun", + "word_frequency": 16407 + }, + { + "word": "offline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offline", + "example_sentence_native": "Puedes trabajar offline si no tienes conexión a internet.", + "example_sentence_english": "You can work offline if you don't have an internet connection.", + "pos": "adverb", + "word_frequency": 16410 + }, + { + "word": "otaku", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "otaku (fan of anime;manga)", + "example_sentence_native": "Es un otaku de los videojuegos japoneses.", + "example_sentence_english": "He is an otaku of Japanese video games.", + "pos": "noun", + "word_frequency": 16415 + }, + { + "word": "partitura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "musical score;sheet music", + "example_sentence_native": "El pianista leyó la partitura con atención.", + "example_sentence_english": "The pianist read the musical score carefully.", + "pos": "noun", + "word_frequency": 16416 + }, + { + "word": "patrullero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patrol car;patrolman", + "example_sentence_native": "El patrullero detuvo el coche sospechoso.", + "example_sentence_english": "The patrol car stopped the suspicious car.", + "pos": "noun", + "word_frequency": 16417 + }, + { + "word": "persiana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blind;shutter", + "example_sentence_native": "Baja la persiana, hay mucha luz.", + "example_sentence_english": "Lower the blind, there's too much light.", + "pos": "noun", + "word_frequency": 16418 + }, + { + "word": "perturbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disturb;to perturb", + "example_sentence_native": "No quiero perturbar tu concentración.", + "example_sentence_english": "I don't want to disturb your concentration.", + "pos": "verb", + "word_frequency": 16419 + }, + { + "word": "plateado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silver;silver-plated", + "example_sentence_native": "Llevaba un collar plateado muy bonito.", + "example_sentence_english": "She was wearing a very beautiful silver necklace.", + "pos": "adjective", + "word_frequency": 16420 + }, + { + "word": "posteridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "posterity", + "example_sentence_native": "Su obra será recordada por la posteridad.", + "example_sentence_english": "His work will be remembered by posterity.", + "pos": "noun", + "word_frequency": 16422 + }, + { + "word": "predicación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preaching;sermon", + "example_sentence_native": "Su predicación fue muy inspiradora para la comunidad.", + "example_sentence_english": "His preaching was very inspiring for the community.", + "pos": "noun", + "word_frequency": 16424 + }, + { + "word": "previsional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provident;related to social security;pensions", + "example_sentence_native": "El sistema previsional necesita reformas urgentes.", + "example_sentence_english": "The pension system needs urgent reforms.", + "pos": "adjective", + "word_frequency": 16425 + }, + { + "word": "prolífico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prolific", + "example_sentence_native": "Es un autor prolífico con muchas obras publicadas.", + "example_sentence_english": "He is a prolific author with many published works.", + "pos": "adjective", + "word_frequency": 16427 + }, + { + "word": "prospecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leaflet;prospectus;potential client", + "example_sentence_native": "Lee el prospecto antes de tomar el medicamento.", + "example_sentence_english": "Read the leaflet before taking the medicine.", + "pos": "noun", + "word_frequency": 16428 + }, + { + "word": "reabrir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reopen", + "example_sentence_native": "La tienda va a reabrir mañana después de las reformas.", + "example_sentence_english": "The store is going to reopen tomorrow after the renovations.", + "pos": "verb", + "word_frequency": 16430 + }, + { + "word": "reconfortante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comforting;reassuring", + "example_sentence_native": "Sus palabras fueron muy reconfortantes en un momento difícil.", + "example_sentence_english": "His words were very comforting in a difficult moment.", + "pos": "adjective", + "word_frequency": 16431 + }, + { + "word": "rehabilitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rehabilitate", + "example_sentence_native": "Necesita rehabilitar su rodilla después de la operación.", + "example_sentence_english": "He needs to rehabilitate his knee after the operation.", + "pos": "verb", + "word_frequency": 16432 + }, + { + "word": "rejilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grid;grate;grille", + "example_sentence_native": "La rejilla de ventilación estaba sucia y necesitaba limpieza.", + "example_sentence_english": "The ventilation grate was dirty and needed cleaning.", + "pos": "noun", + "word_frequency": 16433 + }, + { + "word": "retail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retail", + "example_sentence_native": "Trabaja en el sector retail desde hace varios años.", + "example_sentence_english": "He has worked in the retail sector for several years.", + "pos": "noun", + "word_frequency": 16434 + }, + { + "word": "retransmisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retransmission;broadcast", + "example_sentence_native": "La retransmisión del partido fue en directo por televisión.", + "example_sentence_english": "The retransmission of the match was live on television.", + "pos": "noun", + "word_frequency": 16435 + }, + { + "word": "rodante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rolling;wheeled", + "example_sentence_native": "Necesito una silla rodante para la oficina.", + "example_sentence_english": "I need a rolling chair for the office.", + "pos": "adjective", + "word_frequency": 16437 + }, + { + "word": "sacerdotal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacerdotal;priestly", + "example_sentence_native": "Llevaba una vestimenta sacerdotal para la ceremonia.", + "example_sentence_english": "He wore a sacerdotal garment for the ceremony.", + "pos": "adjective", + "word_frequency": 16440 + }, + { + "word": "satisfactoriamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfactorily", + "example_sentence_native": "El proyecto se completó satisfactoriamente.", + "example_sentence_english": "The project was completed satisfactorily.", + "pos": "adverb", + "word_frequency": 16442 + }, + { + "word": "screen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screen", + "example_sentence_native": "La screen del ordenador es muy grande.", + "example_sentence_english": "The computer screen is very big.", + "pos": "noun", + "word_frequency": 16443 + }, + { + "word": "seductor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seductive;charming", + "example_sentence_native": "Tenía una sonrisa seductora.", + "example_sentence_english": "He had a seductive smile.", + "pos": "adjective", + "word_frequency": 16444 + }, + { + "word": "seleccionador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selector;coach (national team)", + "example_sentence_native": "El seleccionador anunció la lista de jugadores.", + "example_sentence_english": "The coach announced the list of players.", + "pos": "noun", + "word_frequency": 16445 + }, + { + "word": "sevillana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sevillana (person from Seville;or a type of folk dance;song)", + "example_sentence_native": "Bailamos sevillanas en la feria.", + "example_sentence_english": "We danced sevillanas at the fair.", + "pos": "noun", + "word_frequency": 16446 + }, + { + "word": "simplista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "simplistic", + "example_sentence_native": "Su análisis del problema fue demasiado simplista.", + "example_sentence_english": "His analysis of the problem was too simplistic.", + "pos": "adjective", + "word_frequency": 16448 + }, + { + "word": "sintetizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to synthesize", + "example_sentence_native": "Necesitamos sintetizar la información clave.", + "example_sentence_english": "We need to synthesize the key information.", + "pos": "verb", + "word_frequency": 16449 + }, + { + "word": "suicidado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicidal (having committed suicide);self-killed", + "example_sentence_native": "La policía encontró al hombre suicidado en su apartamento.", + "example_sentence_english": "The police found the self-killed man in his apartment.", + "pos": "adjective", + "word_frequency": 16451 + }, + { + "word": "table", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "table (data table or tablet device)", + "example_sentence_native": "Consulta la table de contenidos para más información.", + "example_sentence_english": "Consult the table of contents for more information.", + "pos": "noun", + "word_frequency": 16453 + }, + { + "word": "terco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubborn;obstinate", + "example_sentence_native": "Es tan terco que nunca cambia de opinión.", + "example_sentence_english": "He is so stubborn that he never changes his mind.", + "pos": "adjective", + "word_frequency": 16454 + }, + { + "word": "tirante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strap;suspender", + "example_sentence_native": "Se le rompió un tirante del vestido.", + "example_sentence_english": "A strap of her dress broke.", + "pos": "noun", + "word_frequency": 16457 + }, + { + "word": "torcido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twisted;crooked;sprained", + "example_sentence_native": "Tiene el tobillo torcido después de la caída.", + "example_sentence_english": "He has a sprained ankle after the fall.", + "pos": "adjective", + "word_frequency": 16459 + }, + { + "word": "tower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tower", + "example_sentence_native": "La torre de control del aeropuerto es muy alta.", + "example_sentence_english": "The airport control tower is very tall.", + "pos": "noun", + "word_frequency": 16460 + }, + { + "word": "traduccion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "translation", + "example_sentence_native": "Necesito una buena traducción de este documento.", + "example_sentence_english": "I need a good translation of this document.", + "pos": "noun", + "word_frequency": 16461 + }, + { + "word": "tragado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swallowed;engulfed", + "example_sentence_native": "El barco fue tragado por las olas gigantes.", + "example_sentence_english": "The ship was swallowed by the giant waves.", + "pos": "adjective", + "word_frequency": 16462 + }, + { + "word": "trepar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb;to scramble", + "example_sentence_native": "Los niños intentaron trepar al árbol.", + "example_sentence_english": "The children tried to climb the tree.", + "pos": "verb", + "word_frequency": 16463 + }, + { + "word": "tropezar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trip;to stumble", + "example_sentence_native": "Tuve cuidado de no tropezar con la alfombra.", + "example_sentence_english": "I was careful not to trip on the rug.", + "pos": "verb", + "word_frequency": 16464 + }, + { + "word": "trópico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tropic", + "example_sentence_native": "Vivimos en una región cercana al trópico.", + "example_sentence_english": "We live in a region near the tropic.", + "pos": "noun", + "word_frequency": 16465 + }, + { + "word": "tuiteo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tweet (the act of tweeting)", + "example_sentence_native": "Su último tuiteo generó mucha controversia.", + "example_sentence_english": "His last tweet generated a lot of controversy.", + "pos": "noun", + "word_frequency": 16466 + }, + { + "word": "tácito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tacit;implicit", + "example_sentence_native": "Había un acuerdo tácito entre ellos.", + "example_sentence_english": "There was a tacit agreement between them.", + "pos": "adjective", + "word_frequency": 16469 + }, + { + "word": "veta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vein;streak;lode", + "example_sentence_native": "Encontraron una veta de oro en la mina.", + "example_sentence_english": "They found a vein of gold in the mine.", + "pos": "noun", + "word_frequency": 16471 + }, + { + "word": "vigilado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watched;monitored;supervised", + "example_sentence_native": "El área está vigilada por cámaras de seguridad.", + "example_sentence_english": "The area is monitored by security cameras.", + "pos": "adjective", + "word_frequency": 16472 + }, + { + "word": "villancico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christmas carol", + "example_sentence_native": "Cantamos villancicos en Nochebuena.", + "example_sentence_english": "We sang Christmas carols on Christmas Eve.", + "pos": "noun", + "word_frequency": 16473 + }, + { + "word": "visceral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visceral", + "example_sentence_native": "Tuvo una reacción visceral ante la injusticia.", + "example_sentence_english": "He had a visceral reaction to the injustice.", + "pos": "adjective", + "word_frequency": 16474 + }, + { + "word": "volatilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "volatility", + "example_sentence_native": "La volatilidad del mercado es alta en estos momentos.", + "example_sentence_english": "Market volatility is high at the moment.", + "pos": "noun", + "word_frequency": 16475 + }, + { + "word": "wing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wing", + "example_sentence_native": "El avión tiene un wing dañado.", + "example_sentence_english": "The plane has a damaged wing.", + "pos": "noun", + "word_frequency": 16479 + }, + { + "word": "adictivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addictive", + "example_sentence_native": "Este juego es muy adictivo.", + "example_sentence_english": "This game is very addictive.", + "pos": "adjective", + "word_frequency": 16484 + }, + { + "word": "adoptivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoptive", + "example_sentence_native": "Es su hijo adoptivo.", + "example_sentence_english": "He is their adoptive son.", + "pos": "adjective", + "word_frequency": 16485 + }, + { + "word": "aflojar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to loosen;to slacken", + "example_sentence_native": "Tienes que aflojar el nudo.", + "example_sentence_english": "You have to loosen the knot.", + "pos": "verb", + "word_frequency": 16486 + }, + { + "word": "agrandar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enlarge;to make bigger", + "example_sentence_native": "Podemos agrandar la foto.", + "example_sentence_english": "We can enlarge the photo.", + "pos": "verb", + "word_frequency": 16487 + }, + { + "word": "ahogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choking;suffocation;anguish", + "example_sentence_native": "Sintió un ahogo al ver la noticia.", + "example_sentence_english": "He felt a choking sensation/anguish when he saw the news.", + "pos": "noun", + "word_frequency": 16488 + }, + { + "word": "alfabético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alphabetical", + "example_sentence_native": "Los nombres están en orden alfabético.", + "example_sentence_english": "The names are in alphabetical order.", + "pos": "adjective", + "word_frequency": 16489 + }, + { + "word": "alineado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aligned", + "example_sentence_native": "Los libros deben estar alineados en el estante.", + "example_sentence_english": "The books should be aligned on the shelf.", + "pos": "adjective", + "word_frequency": 16490 + }, + { + "word": "aliviado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relieved", + "example_sentence_native": "Me sentí muy aliviado después de terminar el examen.", + "example_sentence_english": "I felt very relieved after finishing the exam.", + "pos": "adjective", + "word_frequency": 16491 + }, + { + "word": "alquimia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alchemy", + "example_sentence_native": "La alquimia es una antigua práctica.", + "example_sentence_english": "Alchemy is an ancient practice.", + "pos": "noun", + "word_frequency": 16492 + }, + { + "word": "altibajo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ups and downs;fluctuation", + "example_sentence_native": "La vida tiene sus altibajos.", + "example_sentence_english": "Life has its ups and downs.", + "pos": "noun", + "word_frequency": 16493 + }, + { + "word": "amarrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tied;moored", + "example_sentence_native": "El barco estaba amarrado al muelle.", + "example_sentence_english": "The boat was tied to the dock.", + "pos": "adjective", + "word_frequency": 16494 + }, + { + "word": "anorexia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anorexia", + "example_sentence_native": "La anorexia es un trastorno alimentario grave.", + "example_sentence_english": "Anorexia is a serious eating disorder.", + "pos": "noun", + "word_frequency": 16498 + }, + { + "word": "anzuelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishhook", + "example_sentence_native": "Puso el cebo en el anzuelo.", + "example_sentence_english": "He put the bait on the fishhook.", + "pos": "noun", + "word_frequency": 16499 + }, + { + "word": "apacible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peaceful;calm;gentle", + "example_sentence_native": "El lago estaba apacible al amanecer.", + "example_sentence_english": "The lake was peaceful at dawn.", + "pos": "adjective", + "word_frequency": 16500 + }, + { + "word": "apresurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurried;rushed", + "example_sentence_native": "Su respuesta fue un poco apresurada.", + "example_sentence_english": "His answer was a bit rushed.", + "pos": "adjective", + "word_frequency": 16501 + }, + { + "word": "apretón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squeeze;handshake", + "example_sentence_native": "Le dio un fuerte apretón de manos.", + "example_sentence_english": "He gave him a strong handshake.", + "pos": "noun", + "word_frequency": 16502 + }, + { + "word": "asociacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "association", + "example_sentence_native": "Es miembro de una asociación de vecinos.", + "example_sentence_english": "He is a member of a neighborhood association.", + "pos": "noun", + "word_frequency": 16504 + }, + { + "word": "asomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hint;trace;glimmer", + "example_sentence_native": "No había ni un asomo de duda en su voz.", + "example_sentence_english": "There wasn't a hint of doubt in his voice.", + "pos": "noun", + "word_frequency": 16505 + }, + { + "word": "aspirina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aspirin", + "example_sentence_native": "Necesito una aspirina para el dolor de cabeza.", + "example_sentence_english": "I need an aspirin for my headache.", + "pos": "noun", + "word_frequency": 16506 + }, + { + "word": "avalado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endorsed;backed;guaranteed", + "example_sentence_native": "El proyecto está avalado por el gobierno.", + "example_sentence_english": "The project is endorsed by the government.", + "pos": "adjective", + "word_frequency": 16508 + }, + { + "word": "barroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muddy", + "example_sentence_native": "El camino estaba muy barroso después de la lluvia.", + "example_sentence_english": "The path was very muddy after the rain.", + "pos": "adjective", + "word_frequency": 16510 + }, + { + "word": "bestial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bestial;brutal;awesome (informal)", + "example_sentence_native": "La película fue bestial, me encantó.", + "example_sentence_english": "The movie was awesome, I loved it.", + "pos": "adjective", + "word_frequency": 16514 + }, + { + "word": "biomasa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biomass", + "example_sentence_native": "La biomasa es una fuente de energía renovable.", + "example_sentence_english": "Biomass is a renewable energy source.", + "pos": "noun", + "word_frequency": 16515 + }, + { + "word": "bocha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ball (esp. for bocce;bowls);head (slang)", + "example_sentence_native": "Juegan a la bocha en el parque.", + "example_sentence_english": "They play bocce in the park.", + "pos": "noun", + "word_frequency": 16516 + }, + { + "word": "bollo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bun;pastry;dent (on a car)", + "example_sentence_native": "Me comí un bollo de chocolate.", + "example_sentence_english": "I ate a chocolate bun.", + "pos": "noun", + "word_frequency": 16517 + }, + { + "word": "bolsita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small bag;sachet", + "example_sentence_native": "Dame una bolsita de té.", + "example_sentence_english": "Give me a small tea bag.", + "pos": "noun", + "word_frequency": 16518 + }, + { + "word": "burrito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "burrito", + "example_sentence_native": "Me encanta comer un burrito para el almuerzo.", + "example_sentence_english": "I love to eat a burrito for lunch.", + "pos": "noun", + "word_frequency": 16520 + }, + { + "word": "cachondo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funny;playful", + "example_sentence_native": "Es un tipo muy cachondo, siempre hace reír a la gente.", + "example_sentence_english": "He's a very funny guy, he always makes people laugh.", + "pos": "adjective", + "word_frequency": 16521 + }, + { + "word": "calificativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualifier;adjective", + "example_sentence_native": "Usó un calificativo despectivo para describir la situación.", + "example_sentence_english": "He used a derogatory qualifier to describe the situation.", + "pos": "noun", + "word_frequency": 16522 + }, + { + "word": "camarilla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clique;cabal", + "example_sentence_native": "La camarilla del presidente tiene mucho poder.", + "example_sentence_english": "The president's clique has a lot of power.", + "pos": "noun", + "word_frequency": 16523 + }, + { + "word": "canguro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kangaroo;babysitter", + "example_sentence_native": "Contratamos a una canguro para cuidar a los niños.", + "example_sentence_english": "We hired a babysitter to look after the children.", + "pos": "noun", + "word_frequency": 16524 + }, + { + "word": "canónigo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canon (clergyman)", + "example_sentence_native": "El canónigo ofició la misa en la catedral.", + "example_sentence_english": "The canon officiated the mass in the cathedral.", + "pos": "noun", + "word_frequency": 16525 + }, + { + "word": "castaña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chestnut", + "example_sentence_native": "En otoño me gusta asar castañas.", + "example_sentence_english": "In autumn I like to roast chestnuts.", + "pos": "noun", + "word_frequency": 16527 + }, + { + "word": "celeridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "speed;swiftness", + "example_sentence_native": "El proyecto se completó con gran celeridad.", + "example_sentence_english": "The project was completed with great swiftness.", + "pos": "noun", + "word_frequency": 16528 + }, + { + "word": "cerrojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bolt;latch", + "example_sentence_native": "Asegúrate de echar el cerrojo antes de salir.", + "example_sentence_english": "Make sure to bolt the door before leaving.", + "pos": "noun", + "word_frequency": 16530 + }, + { + "word": "chava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "girl;young woman", + "example_sentence_native": "Esa chava es muy inteligente.", + "example_sentence_english": "That girl is very intelligent.", + "pos": "noun", + "word_frequency": 16531 + }, + { + "word": "ciberseguridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cybersecurity", + "example_sentence_native": "La ciberseguridad es crucial en el mundo digital actual.", + "example_sentence_english": "Cybersecurity is crucial in today's digital world.", + "pos": "noun", + "word_frequency": 16533 + }, + { + "word": "clasista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classist", + "example_sentence_native": "Sus comentarios eran muy clasistas.", + "example_sentence_english": "His comments were very classist.", + "pos": "adjective", + "word_frequency": 16536 + }, + { + "word": "comercialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercially", + "example_sentence_native": "El producto no fue viable comercialmente.", + "example_sentence_english": "The product was not commercially viable.", + "pos": "adverb", + "word_frequency": 16538 + }, + { + "word": "condicionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to condition;to determine", + "example_sentence_native": "El clima puede condicionar el éxito de la cosecha.", + "example_sentence_english": "The weather can condition the success of the harvest.", + "pos": "verb", + "word_frequency": 16539 + }, + { + "word": "conjugación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conjugation", + "example_sentence_native": "La conjugación de los verbos es difícil.", + "example_sentence_english": "Verb conjugation is difficult.", + "pos": "noun", + "word_frequency": 16540 + }, + { + "word": "conseguido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "achieved;obtained", + "example_sentence_native": "El objetivo fue conseguido con mucho esfuerzo.", + "example_sentence_english": "The goal was achieved with great effort.", + "pos": "adjective", + "word_frequency": 16541 + }, + { + "word": "consumismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumerism", + "example_sentence_native": "El consumismo excesivo daña el medio ambiente.", + "example_sentence_english": "Excessive consumerism harms the environment.", + "pos": "noun", + "word_frequency": 16542 + }, + { + "word": "contendiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contender;contestant", + "example_sentence_native": "Ambos contendientes lucharon con valentía.", + "example_sentence_english": "Both contenders fought bravely.", + "pos": "noun", + "word_frequency": 16543 + }, + { + "word": "cornisa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornice;ledge", + "example_sentence_native": "El pájaro se posó en la cornisa del edificio.", + "example_sentence_english": "The bird perched on the cornice of the building.", + "pos": "noun", + "word_frequency": 16544 + }, + { + "word": "cripta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crypt", + "example_sentence_native": "La cripta de la iglesia es muy antigua.", + "example_sentence_english": "The church's crypt is very old.", + "pos": "noun", + "word_frequency": 16546 + }, + { + "word": "criptomoneda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cryptocurrency", + "example_sentence_native": "Las criptomonedas han ganado popularidad.", + "example_sentence_english": "Cryptocurrencies have gained popularity.", + "pos": "noun", + "word_frequency": 16547 + }, + { + "word": "cualificado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualified;skilled", + "example_sentence_native": "Necesitamos personal cualificado para este puesto.", + "example_sentence_english": "We need qualified personnel for this position.", + "pos": "adjective", + "word_frequency": 16549 + }, + { + "word": "decimal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decimal", + "example_sentence_native": "El número pi tiene infinitos decimales.", + "example_sentence_english": "The number pi has infinite decimals.", + "pos": "noun", + "word_frequency": 16551 + }, + { + "word": "decoro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decorum;propriety", + "example_sentence_native": "Se comportó con gran decoro en la ceremonia.", + "example_sentence_english": "He behaved with great decorum at the ceremony.", + "pos": "noun", + "word_frequency": 16552 + }, + { + "word": "defraudar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defraud;to disappoint", + "example_sentence_native": "No quiero defraudar a mis padres.", + "example_sentence_english": "I don't want to disappoint my parents.", + "pos": "verb", + "word_frequency": 16553 + }, + { + "word": "deprimir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depress", + "example_sentence_native": "La mala noticia lo deprimió.", + "example_sentence_english": "The bad news depressed him.", + "pos": "verb", + "word_frequency": 16554 + }, + { + "word": "desagrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "displeasure;dislike", + "example_sentence_native": "Mostró su desagrado con un gesto.", + "example_sentence_english": "He showed his displeasure with a gesture.", + "pos": "noun", + "word_frequency": 16555 + }, + { + "word": "despectivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derogatory;contemptuous", + "example_sentence_native": "Usó un tono despectivo al hablar.", + "example_sentence_english": "He used a derogatory tone when speaking.", + "pos": "adjective", + "word_frequency": 16556 + }, + { + "word": "despenalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decriminalization", + "example_sentence_native": "La despenalización de ciertas drogas es un tema de debate.", + "example_sentence_english": "The decriminalization of certain drugs is a topic of debate.", + "pos": "noun", + "word_frequency": 16557 + }, + { + "word": "discriminatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discriminatory", + "example_sentence_native": "Es importante evitar cualquier comportamiento discriminatorio.", + "example_sentence_english": "It is important to avoid any discriminatory behavior.", + "pos": "adjective", + "word_frequency": 16560 + }, + { + "word": "donado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donated", + "example_sentence_native": "Los fondos donados ayudarán a la comunidad.", + "example_sentence_english": "The donated funds will help the community.", + "pos": "adjective", + "word_frequency": 16562 + }, + { + "word": "ducado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duchy", + "example_sentence_native": "El ducado de Borgoña fue muy poderoso.", + "example_sentence_english": "The Duchy of Burgundy was very powerful.", + "pos": "noun", + "word_frequency": 16563 + }, + { + "word": "durmiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleeper", + "example_sentence_native": "El durmiente no se despertó con el ruido.", + "example_sentence_english": "The sleeper did not wake up with the noise.", + "pos": "noun", + "word_frequency": 16564 + }, + { + "word": "emanar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to emanate", + "example_sentence_native": "Un olor dulce emanaba de las flores.", + "example_sentence_english": "A sweet smell emanated from the flowers.", + "pos": "verb", + "word_frequency": 16567 + }, + { + "word": "embudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funnel", + "example_sentence_native": "Usamos un embudo para verter el líquido.", + "example_sentence_english": "We used a funnel to pour the liquid.", + "pos": "noun", + "word_frequency": 16568 + }, + { + "word": "entendible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understandable", + "example_sentence_native": "Su explicación fue muy entendible.", + "example_sentence_english": "His explanation was very understandable.", + "pos": "adjective", + "word_frequency": 16569 + }, + { + "word": "envejecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aged", + "example_sentence_native": "El vino envejecido tiene un sabor más profundo.", + "example_sentence_english": "Aged wine has a deeper flavor.", + "pos": "adjective", + "word_frequency": 16570 + }, + { + "word": "envidiable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enviable", + "example_sentence_native": "Tiene una posición envidiable en la empresa.", + "example_sentence_english": "He has an enviable position in the company.", + "pos": "adjective", + "word_frequency": 16571 + }, + { + "word": "espécimen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specimen", + "example_sentence_native": "El museo exhibe un espécimen raro.", + "example_sentence_english": "The museum exhibits a rare specimen.", + "pos": "noun", + "word_frequency": 16574 + }, + { + "word": "estirpe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lineage", + "example_sentence_native": "Proviene de una antigua estirpe noble.", + "example_sentence_english": "He comes from an ancient noble lineage.", + "pos": "noun", + "word_frequency": 16576 + }, + { + "word": "exigido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanded", + "example_sentence_native": "Cumplió con todos los requisitos exigidos.", + "example_sentence_english": "He met all the demanded requirements.", + "pos": "adjective", + "word_frequency": 16579 + }, + { + "word": "farol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lantern", + "example_sentence_native": "El farol de la calle iluminaba el camino.", + "example_sentence_english": "The street lantern illuminated the path.", + "pos": "noun", + "word_frequency": 16580 + }, + { + "word": "finamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finely", + "example_sentence_native": "La tela estaba finamente tejida.", + "example_sentence_english": "The fabric was finely woven.", + "pos": "adverb", + "word_frequency": 16584 + }, + { + "word": "forzosamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forcibly", + "example_sentence_native": "Tuvimos que aceptar la decisión forzosamente.", + "example_sentence_english": "We had to accept the decision forcibly.", + "pos": "adverb", + "word_frequency": 16588 + }, + { + "word": "genealogía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genealogy", + "example_sentence_native": "Estudió la genealogía de su familia.", + "example_sentence_english": "He studied his family's genealogy.", + "pos": "noun", + "word_frequency": 16591 + }, + { + "word": "gilipollez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foolishness (slang)", + "example_sentence_native": "No digas gilipolleces.", + "example_sentence_english": "Don't say foolish things.", + "pos": "noun", + "word_frequency": 16592 + }, + { + "word": "hackeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacking (act of)", + "example_sentence_native": "Sufrieron un hackeo en su sistema informático.", + "example_sentence_english": "They suffered a hacking attack on their computer system.", + "pos": "noun", + "word_frequency": 16594 + }, + { + "word": "hamaca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hammock", + "example_sentence_native": "Me gusta leer en la hamaca.", + "example_sentence_english": "I like to read in the hammock.", + "pos": "noun", + "word_frequency": 16595 + }, + { + "word": "iguana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iguana", + "example_sentence_native": "Vimos una iguana grande en el árbol.", + "example_sentence_english": "We saw a large iguana in the tree.", + "pos": "noun", + "word_frequency": 16598 + }, + { + "word": "imperar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prevail", + "example_sentence_native": "La ley debe imperar en toda la sociedad.", + "example_sentence_english": "The law must prevail throughout society.", + "pos": "verb", + "word_frequency": 16599 + }, + { + "word": "inagotable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexhaustible", + "example_sentence_native": "Su energía parece inagotable.", + "example_sentence_english": "His energy seems inexhaustible.", + "pos": "adjective", + "word_frequency": 16600 + }, + { + "word": "ineficacia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inefficiency", + "example_sentence_native": "La ineficacia del sistema es evidente.", + "example_sentence_english": "The inefficiency of the system is evident.", + "pos": "noun", + "word_frequency": 16601 + }, + { + "word": "inerte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inert", + "example_sentence_native": "El cuerpo yacía inerte en el suelo.", + "example_sentence_english": "The body lay inert on the ground.", + "pos": "adjective", + "word_frequency": 16602 + }, + { + "word": "infractor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offender", + "example_sentence_native": "El infractor fue multado por exceso de velocidad.", + "example_sentence_english": "The offender was fined for speeding.", + "pos": "noun", + "word_frequency": 16603 + }, + { + "word": "inimaginable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unimaginable", + "example_sentence_native": "Las consecuencias podrían ser inimaginables.", + "example_sentence_english": "The consequences could be unimaginable.", + "pos": "adjective", + "word_frequency": 16604 + }, + { + "word": "interconexión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interconnection", + "example_sentence_native": "La interconexión de redes es crucial hoy en día.", + "example_sentence_english": "Network interconnection is crucial nowadays.", + "pos": "noun", + "word_frequency": 16605 + }, + { + "word": "intuitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuitive", + "example_sentence_native": "El diseño de la aplicación es muy intuitivo.", + "example_sentence_english": "The application's design is very intuitive.", + "pos": "adjective", + "word_frequency": 16606 + }, + { + "word": "invariablemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invariably", + "example_sentence_native": "Invariablemente llega tarde a las reuniones.", + "example_sentence_english": "He invariably arrives late to meetings.", + "pos": "adverb", + "word_frequency": 16607 + }, + { + "word": "inyectar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inject", + "example_sentence_native": "El médico tuvo que inyectar el medicamento.", + "example_sentence_english": "The doctor had to inject the medicine.", + "pos": "verb", + "word_frequency": 16608 + }, + { + "word": "irreparable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreparable", + "example_sentence_native": "El daño causado es irreparable.", + "example_sentence_english": "The damage caused is irreparable.", + "pos": "adjective", + "word_frequency": 16609 + }, + { + "word": "jerárquico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hierarchical", + "example_sentence_native": "La estructura de la empresa es jerárquica.", + "example_sentence_english": "The company's structure is hierarchical.", + "pos": "adjective", + "word_frequency": 16614 + }, + { + "word": "lastimosamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regrettably", + "example_sentence_native": "Lastimosamente, no pudimos asistir al evento.", + "example_sentence_english": "Regrettably, we could not attend the event.", + "pos": "adverb", + "word_frequency": 16620 + }, + { + "word": "ligamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ligament", + "example_sentence_native": "Se rompió un ligamento en la rodilla.", + "example_sentence_english": "He tore a ligament in his knee.", + "pos": "noun", + "word_frequency": 16621 + }, + { + "word": "lupus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lupus", + "example_sentence_native": "El lupus es una enfermedad autoinmune.", + "example_sentence_english": "Lupus is an autoimmune disease.", + "pos": "noun", + "word_frequency": 16623 + }, + { + "word": "maleza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weeds", + "example_sentence_native": "El jardín está lleno de maleza.", + "example_sentence_english": "The garden is full of weeds.", + "pos": "noun", + "word_frequency": 16626 + }, + { + "word": "mentón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chin", + "example_sentence_native": "Se golpeó el mentón al caer.", + "example_sentence_english": "He hit his chin when he fell.", + "pos": "noun", + "word_frequency": 16629 + }, + { + "word": "merecedor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserving", + "example_sentence_native": "Es merecedor de todos los elogios.", + "example_sentence_english": "He is deserving of all praise.", + "pos": "adjective", + "word_frequency": 16630 + }, + { + "word": "modernista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernist", + "example_sentence_native": "El edificio tiene un estilo modernista.", + "example_sentence_english": "The building has a modernist style.", + "pos": "adjective", + "word_frequency": 16636 + }, + { + "word": "moho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mold", + "example_sentence_native": "Hay moho en la pared del baño.", + "example_sentence_english": "There is mold on the bathroom wall.", + "pos": "noun", + "word_frequency": 16637 + }, + { + "word": "movilizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobilized", + "example_sentence_native": "La población está movilizada contra la injusticia.", + "example_sentence_english": "The population is mobilized against injustice.", + "pos": "adjective", + "word_frequency": 16639 + }, + { + "word": "mueca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grimace", + "example_sentence_native": "Hizo una mueca de disgusto al probar la comida.", + "example_sentence_english": "He made a grimace of disgust when tasting the food.", + "pos": "noun", + "word_frequency": 16640 + }, + { + "word": "obligacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obligation;duty", + "example_sentence_native": "Es mi obligación ayudarte en esta situación difícil.", + "example_sentence_english": "It is my obligation to help you in this difficult situation.", + "pos": "noun", + "word_frequency": 16645 + }, + { + "word": "oprimir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppress;to press", + "example_sentence_native": "No debemos oprimir a las minorías en nuestra sociedad.", + "example_sentence_english": "We must not oppress minorities in our society.", + "pos": "verb", + "word_frequency": 16647 + }, + { + "word": "orco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orc", + "example_sentence_native": "En la fantasía, el orco es una criatura de aspecto temible.", + "example_sentence_english": "In fantasy, the orc is a fearsome-looking creature.", + "pos": "noun", + "word_frequency": 16648 + }, + { + "word": "penado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convicted;penalized", + "example_sentence_native": "El acusado fue penado con una multa considerable.", + "example_sentence_english": "The accused was penalized with a considerable fine.", + "pos": "adjective", + "word_frequency": 16654 + }, + { + "word": "playlist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playlist", + "example_sentence_native": "Creé una nueva playlist con mis canciones favoritas para el viaje.", + "example_sentence_english": "I created a new playlist with my favorite songs for the trip.", + "pos": "noun", + "word_frequency": 16658 + }, + { + "word": "playoff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playoff", + "example_sentence_native": "Los equipos se preparan intensamente para los playoffs de la liga.", + "example_sentence_english": "The teams are preparing intensely for the league playoffs.", + "pos": "noun", + "word_frequency": 16659 + }, + { + "word": "plebe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "common people;plebs", + "example_sentence_native": "En la antigua Roma, la plebe tenía menos derechos que los patricios.", + "example_sentence_english": "In ancient Rome, the common people had fewer rights than the patricians.", + "pos": "noun", + "word_frequency": 16660 + }, + { + "word": "plomero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plumber", + "example_sentence_native": "Necesitamos llamar a un plomero para arreglar la tubería rota.", + "example_sentence_english": "We need to call a plumber to fix the broken pipe.", + "pos": "noun", + "word_frequency": 16661 + }, + { + "word": "prefacio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preface;foreword", + "example_sentence_native": "El prefacio del libro explica la intención del autor.", + "example_sentence_english": "The preface of the book explains the author's intention.", + "pos": "noun", + "word_frequency": 16663 + }, + { + "word": "presidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prison;penitentiary;garrison", + "example_sentence_native": "Fue condenado a diez años de presidio por sus crímenes.", + "example_sentence_english": "He was sentenced to ten years in prison for his crimes.", + "pos": "noun", + "word_frequency": 16664 + }, + { + "word": "propiciado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "favored;brought about;conducive", + "example_sentence_native": "El buen clima ha propiciado una excelente cosecha este año.", + "example_sentence_english": "The good weather has brought about an excellent harvest this year.", + "pos": "adjective", + "word_frequency": 16665 + }, + { + "word": "reaccionario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactionary", + "example_sentence_native": "Sus opiniones políticas son consideradas muy reaccionarias por muchos.", + "example_sentence_english": "His political opinions are considered very reactionary by many.", + "pos": "adjective", + "word_frequency": 16668 + }, + { + "word": "reactivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reactive", + "example_sentence_native": "Este compuesto químico es altamente reactivo al contacto con el agua.", + "example_sentence_english": "This chemical compound is highly reactive upon contact with water.", + "pos": "adjective", + "word_frequency": 16669 + }, + { + "word": "reader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reader (e.g.;e-reader)", + "example_sentence_native": "Prefiero leer libros en mi e-reader que en papel.", + "example_sentence_english": "I prefer reading books on my e-reader than on paper.", + "pos": "noun", + "word_frequency": 16670 + }, + { + "word": "reelecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-elected", + "example_sentence_native": "El alcalde fue reelecto para un segundo mandato con amplia mayoría.", + "example_sentence_english": "The mayor was re-elected for a second term with a large majority.", + "pos": "adjective", + "word_frequency": 16671 + }, + { + "word": "regadío", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrigation;irrigated land", + "example_sentence_native": "La zona de regadío es fundamental para la agricultura local.", + "example_sentence_english": "The irrigated area is fundamental for local agriculture.", + "pos": "noun", + "word_frequency": 16672 + }, + { + "word": "reparo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objection;repair;shelter", + "example_sentence_native": "No tengo ningún reparo en expresar mi opinión honesta.", + "example_sentence_english": "I have no objection to expressing my honest opinion.", + "pos": "noun", + "word_frequency": 16673 + }, + { + "word": "retirada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retreat;withdrawal;retirement", + "example_sentence_native": "La retirada de las tropas fue una decisión estratégica.", + "example_sentence_english": "The withdrawal of the troops was a strategic decision.", + "pos": "noun", + "word_frequency": 16674 + }, + { + "word": "reutilización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reuse;recycling", + "example_sentence_native": "La reutilización de envases ayuda a proteger el medio ambiente.", + "example_sentence_english": "The reuse of containers helps protect the environment.", + "pos": "noun", + "word_frequency": 16675 + }, + { + "word": "reversa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reverse (gear);reverse (side)", + "example_sentence_native": "Puso el coche en reversa para salir del estacionamiento.", + "example_sentence_english": "He put the car in reverse to leave the parking lot.", + "pos": "noun", + "word_frequency": 16676 + }, + { + "word": "rumorear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rumor;to spread rumors", + "example_sentence_native": "Se rumorea que la empresa cerrará.", + "example_sentence_english": "It is rumored that the company will close.", + "pos": "verb", + "word_frequency": 16682 + }, + { + "word": "salubridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "public health;sanitation", + "example_sentence_native": "Las autoridades trabajan para mejorar la salubridad en la ciudad.", + "example_sentence_english": "The authorities are working to improve public health in the city.", + "pos": "noun", + "word_frequency": 16685 + }, + { + "word": "saqueado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looted;plundered", + "example_sentence_native": "El museo fue encontrado saqueado después del robo.", + "example_sentence_english": "The museum was found looted after the robbery.", + "pos": "adjective", + "word_frequency": 16687 + }, + { + "word": "sarampión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measles", + "example_sentence_native": "El sarampión es una enfermedad contagiosa.", + "example_sentence_english": "Measles is a contagious disease.", + "pos": "noun", + "word_frequency": 16688 + }, + { + "word": "sazón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seasoning;ripeness;opportune moment", + "example_sentence_native": "La carne necesita más sazón.", + "example_sentence_english": "The meat needs more seasoning.", + "pos": "noun", + "word_frequency": 16689 + }, + { + "word": "sesgado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biased;skewed", + "example_sentence_native": "El informe parecía sesgado hacia una opinión.", + "example_sentence_english": "The report seemed biased towards one opinion.", + "pos": "adjective", + "word_frequency": 16691 + }, + { + "word": "silicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silicon", + "example_sentence_native": "Los chips de computadora están hechos de silicio.", + "example_sentence_english": "Computer chips are made of silicon.", + "pos": "noun", + "word_frequency": 16693 + }, + { + "word": "silo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silo", + "example_sentence_native": "El grano se almacena en grandes silos.", + "example_sentence_english": "Grain is stored in large silos.", + "pos": "noun", + "word_frequency": 16694 + }, + { + "word": "slogan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan", + "example_sentence_native": "La campaña publicitaria tiene un eslogan pegadizo.", + "example_sentence_english": "The advertising campaign has a catchy slogan.", + "pos": "noun", + "word_frequency": 16695 + }, + { + "word": "sésamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sesame", + "example_sentence_native": "El pan tiene semillas de sésamo.", + "example_sentence_english": "The bread has sesame seeds.", + "pos": "noun", + "word_frequency": 16699 + }, + { + "word": "teletón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telethon", + "example_sentence_native": "La teletón recaudó fondos para los niños.", + "example_sentence_english": "The telethon raised funds for the children.", + "pos": "noun", + "word_frequency": 16702 + }, + { + "word": "triunfante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumphant", + "example_sentence_native": "El equipo regresó triunfante después de ganar el campeonato.", + "example_sentence_english": "The team returned triumphant after winning the championship.", + "pos": "adjective", + "word_frequency": 16707 + }, + { + "word": "universalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "universally", + "example_sentence_native": "Este principio es universalmente aceptado.", + "example_sentence_english": "This principle is universally accepted.", + "pos": "adverb", + "word_frequency": 16710 + }, + { + "word": "utópico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utopian", + "example_sentence_native": "Su visión de la sociedad es un poco utópica.", + "example_sentence_english": "His vision of society is a bit utopian.", + "pos": "adjective", + "word_frequency": 16712 + }, + { + "word": "vaciado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emptied;cast (as in metal)", + "example_sentence_native": "El cubo estaba completamente vaciado.", + "example_sentence_english": "The bucket was completely emptied.", + "pos": "adjective", + "word_frequency": 16713 + }, + { + "word": "vajilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tableware;crockery;dishes", + "example_sentence_native": "Necesitamos lavar la vajilla después de la cena.", + "example_sentence_english": "We need to wash the dishes after dinner.", + "pos": "noun", + "word_frequency": 16715 + }, + { + "word": "velero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailboat", + "example_sentence_native": "Fuimos a navegar en un velero.", + "example_sentence_english": "We went sailing in a sailboat.", + "pos": "noun", + "word_frequency": 16717 + }, + { + "word": "violinista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violinist", + "example_sentence_native": "La violinista tocó una hermosa melodía en el concierto.", + "example_sentence_english": "The violinist played a beautiful melody at the concert.", + "pos": "noun", + "word_frequency": 16721 + }, + { + "word": "visibilizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make visible;to give visibility to", + "example_sentence_native": "Es importante visibilizar los problemas de la comunidad.", + "example_sentence_english": "It is important to make the community's problems visible.", + "pos": "verb", + "word_frequency": 16722 + }, + { + "word": "ítem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "item", + "example_sentence_native": "Cada ítem de la lista debe ser revisado cuidadosamente.", + "example_sentence_english": "Each item on the list must be carefully reviewed.", + "pos": "noun", + "word_frequency": 16727 + }, + { + "word": "acomodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrangement;accommodation", + "example_sentence_native": "El acomodo de los libros en la estantería es perfecto.", + "example_sentence_english": "The arrangement of the books on the shelf is perfect.", + "pos": "noun", + "word_frequency": 16728 + }, + { + "word": "acordeón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accordion", + "example_sentence_native": "Mi abuelo toca el acordeón en las fiestas familiares.", + "example_sentence_english": "My grandfather plays the accordion at family parties.", + "pos": "noun", + "word_frequency": 16729 + }, + { + "word": "afectivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affective;emotional", + "example_sentence_native": "El apoyo afectivo de sus amigos fue crucial en ese momento.", + "example_sentence_english": "The emotional support from his friends was crucial at that moment.", + "pos": "adjective", + "word_frequency": 16730 + }, + { + "word": "afluente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tributary;affluent", + "example_sentence_native": "El río principal recibe agua de varios afluentes.", + "example_sentence_english": "The main river receives water from several tributaries.", + "pos": "noun", + "word_frequency": 16731 + }, + { + "word": "afroamericano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "African American", + "example_sentence_native": "La historia afroamericana es una parte vital de la cultura de Estados Unidos.", + "example_sentence_english": "African American history is a vital part of US culture.", + "pos": "adjective", + "word_frequency": 16732 + }, + { + "word": "aguado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watery;diluted;weak", + "example_sentence_native": "El café está muy aguado, no tiene mucho sabor.", + "example_sentence_english": "The coffee is very watery, it doesn't have much flavor.", + "pos": "adjective", + "word_frequency": 16733 + }, + { + "word": "ají", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chili pepper", + "example_sentence_native": "Me encanta el sabor picante del ají en la comida.", + "example_sentence_english": "I love the spicy flavor of chili pepper in food.", + "pos": "noun", + "word_frequency": 16734 + }, + { + "word": "alzada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "height;rise", + "example_sentence_native": "La alzada del caballo era impresionante para su raza.", + "example_sentence_english": "The horse's height was impressive for its breed.", + "pos": "noun", + "word_frequency": 16738 + }, + { + "word": "amortización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amortization;depreciation", + "example_sentence_native": "La amortización de la hipoteca se realizará en 30 años.", + "example_sentence_english": "The mortgage amortization will be done in 30 years.", + "pos": "noun", + "word_frequency": 16739 + }, + { + "word": "amplificador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amplifier", + "example_sentence_native": "Necesito un nuevo amplificador para mi sistema de sonido.", + "example_sentence_english": "I need a new amplifier for my sound system.", + "pos": "noun", + "word_frequency": 16740 + }, + { + "word": "aportado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contributed;provided", + "example_sentence_native": "Los datos aportados por el estudio son muy relevantes.", + "example_sentence_english": "The data provided by the study is very relevant.", + "pos": "adjective", + "word_frequency": 16742 + }, + { + "word": "arrasar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devastate;to sweep away;to triumph overwhelmingly", + "example_sentence_native": "La tormenta arrasó con los cultivos de la región.", + "example_sentence_english": "The storm devastated the region's crops.", + "pos": "verb", + "word_frequency": 16743 + }, + { + "word": "avioneta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small plane;light aircraft", + "example_sentence_native": "La avioneta voló bajo sobre el campo.", + "example_sentence_english": "The small plane flew low over the field.", + "pos": "noun", + "word_frequency": 16746 + }, + { + "word": "ballesta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossbow", + "example_sentence_native": "En la Edad Media, la ballesta era un arma poderosa.", + "example_sentence_english": "In the Middle Ages, the crossbow was a powerful weapon.", + "pos": "noun", + "word_frequency": 16749 + }, + { + "word": "benefactor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefactor", + "example_sentence_native": "La escuela agradeció al benefactor por su generosa donación.", + "example_sentence_english": "The school thanked the benefactor for their generous donation.", + "pos": "noun", + "word_frequency": 16753 + }, + { + "word": "binomio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "binomial;pair", + "example_sentence_native": "El binomio 'trabajo y esfuerzo' es clave para el éxito.", + "example_sentence_english": "The binomial 'work and effort' is key to success.", + "pos": "noun", + "word_frequency": 16755 + }, + { + "word": "borrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "erased;deleted", + "example_sentence_native": "El mensaje borrado no se pudo recuperar del teléfono.", + "example_sentence_english": "The deleted message could not be recovered from the phone.", + "pos": "adjective", + "word_frequency": 16756 + }, + { + "word": "borroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blurry;fuzzy", + "example_sentence_native": "La imagen se ve un poco borrosa debido a la mala calidad.", + "example_sentence_english": "The image looks a bit blurry due to poor quality.", + "pos": "adjective", + "word_frequency": 16757 + }, + { + "word": "cabecita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little head", + "example_sentence_native": "El bebé movía su cabecita de un lado a otro.", + "example_sentence_english": "The baby moved its little head from side to side.", + "pos": "noun", + "word_frequency": 16758 + }, + { + "word": "cardio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardio", + "example_sentence_native": "Hago cardio tres veces a la semana para mantenerme en forma.", + "example_sentence_english": "I do cardio three times a week to stay in shape.", + "pos": "noun", + "word_frequency": 16760 + }, + { + "word": "casal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "country house;manor house", + "example_sentence_native": "Compraron un antiguo casal en el campo.", + "example_sentence_english": "They bought an old country house in the countryside.", + "pos": "noun", + "word_frequency": 16762 + }, + { + "word": "certificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to certify", + "example_sentence_native": "Necesitamos certificar estos documentos.", + "example_sentence_english": "We need to certify these documents.", + "pos": "verb", + "word_frequency": 16764 + }, + { + "word": "ciénaga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swamp;bog", + "example_sentence_native": "La ciénaga estaba llena de vida silvestre.", + "example_sentence_english": "The swamp was full of wildlife.", + "pos": "noun", + "word_frequency": 16765 + }, + { + "word": "clóset", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "closet", + "example_sentence_native": "Guarda tu ropa en el clóset.", + "example_sentence_english": "Put your clothes in the closet.", + "pos": "noun", + "word_frequency": 16767 + }, + { + "word": "concientización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awareness;conscientization", + "example_sentence_native": "La concientización sobre el cambio climático es crucial.", + "example_sentence_english": "Awareness about climate change is crucial.", + "pos": "noun", + "word_frequency": 16768 + }, + { + "word": "confiscación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confiscation", + "example_sentence_native": "La confiscación de bienes fue ordenada por el juez.", + "example_sentence_english": "The confiscation of goods was ordered by the judge.", + "pos": "noun", + "word_frequency": 16769 + }, + { + "word": "corrompido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrupt;corrupted", + "example_sentence_native": "El sistema estaba completamente corrompido.", + "example_sentence_english": "The system was completely corrupted.", + "pos": "adjective", + "word_frequency": 16774 + }, + { + "word": "cuantificar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to quantify", + "example_sentence_native": "Es difícil cuantificar el impacto emocional.", + "example_sentence_english": "It's difficult to quantify the emotional impact.", + "pos": "verb", + "word_frequency": 16777 + }, + { + "word": "cuenco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bowl", + "example_sentence_native": "Sirvió la sopa en un cuenco grande.", + "example_sentence_english": "He served the soup in a large bowl.", + "pos": "noun", + "word_frequency": 16778 + }, + { + "word": "curia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "curia (e.g.;Roman Curia;court)", + "example_sentence_native": "La Curia Romana es el aparato administrativo de la Santa Sede.", + "example_sentence_english": "The Roman Curia is the administrative apparatus of the Holy See.", + "pos": "noun", + "word_frequency": 16779 + }, + { + "word": "deforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deformed;misshapen", + "example_sentence_native": "La escultura tenía una forma extraña y deforme.", + "example_sentence_english": "The sculpture had a strange and deformed shape.", + "pos": "adjective", + "word_frequency": 16780 + }, + { + "word": "denegado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denied;rejected", + "example_sentence_native": "Su solicitud fue denegada.", + "example_sentence_english": "Your application was denied.", + "pos": "adjective", + "word_frequency": 16782 + }, + { + "word": "desidia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apathy;negligence;sloth", + "example_sentence_native": "Su desidia en el trabajo le costó el puesto.", + "example_sentence_english": "His negligence at work cost him his job.", + "pos": "noun", + "word_frequency": 16785 + }, + { + "word": "desmán", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outrage;excess;desman (mammal)", + "example_sentence_native": "Los desmanes de la multitud fueron inaceptables.", + "example_sentence_english": "The excesses of the crowd were unacceptable.", + "pos": "noun", + "word_frequency": 16786 + }, + { + "word": "detestable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detestable;hateful", + "example_sentence_native": "Su actitud era verdaderamente detestable.", + "example_sentence_english": "His attitude was truly detestable.", + "pos": "adjective", + "word_frequency": 16787 + }, + { + "word": "devastado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastated", + "example_sentence_native": "El pueblo quedó devastado después del huracán.", + "example_sentence_english": "The town was devastated after the hurricane.", + "pos": "adjective", + "word_frequency": 16788 + }, + { + "word": "digitalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digitalization", + "example_sentence_native": "La digitalización de documentos facilita el acceso.", + "example_sentence_english": "The digitalization of documents facilitates access.", + "pos": "noun", + "word_frequency": 16789 + }, + { + "word": "distribucion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distribution", + "example_sentence_native": "La distribución de los productos es eficiente.", + "example_sentence_english": "The distribution of the products is efficient.", + "pos": "noun", + "word_frequency": 16790 + }, + { + "word": "empeorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worsened;deteriorated", + "example_sentence_native": "La situación ha empeorado considerablemente.", + "example_sentence_english": "The situation has worsened considerably.", + "pos": "adjective", + "word_frequency": 16794 + }, + { + "word": "encomendar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to entrust;to commend", + "example_sentence_native": "Le encomendó una tarea importante.", + "example_sentence_english": "He entrusted him with an important task.", + "pos": "verb", + "word_frequency": 16795 + }, + { + "word": "enfadar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to anger;to annoy", + "example_sentence_native": "No quiero enfadar a nadie con mis comentarios.", + "example_sentence_english": "I don't want to anger anyone with my comments.", + "pos": "verb", + "word_frequency": 16796 + }, + { + "word": "enlazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linked;connected", + "example_sentence_native": "Los documentos están enlazados entre sí.", + "example_sentence_english": "The documents are linked to each other.", + "pos": "adjective", + "word_frequency": 16797 + }, + { + "word": "ensanche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urban expansion;widening", + "example_sentence_native": "El ensanche de la ciudad creó nuevas avenidas.", + "example_sentence_english": "The urban expansion of the city created new avenues.", + "pos": "noun", + "word_frequency": 16798 + }, + { + "word": "entrevistador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interviewer", + "example_sentence_native": "El entrevistador hizo preguntas interesantes.", + "example_sentence_english": "The interviewer asked interesting questions.", + "pos": "noun", + "word_frequency": 16799 + }, + { + "word": "ermitaño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermit", + "example_sentence_native": "El ermitaño vivía solo en una cueva.", + "example_sentence_english": "The hermit lived alone in a cave.", + "pos": "noun", + "word_frequency": 16800 + }, + { + "word": "esparcir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scatter;to spread", + "example_sentence_native": "El viento esparció las hojas por todo el jardín.", + "example_sentence_english": "The wind scattered the leaves all over the garden.", + "pos": "verb", + "word_frequency": 16801 + }, + { + "word": "fastidiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annoy;to bother", + "example_sentence_native": "No me fastidies con tus quejas.", + "example_sentence_english": "Don't bother me with your complaints.", + "pos": "verb", + "word_frequency": 16806 + }, + { + "word": "funerario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funerary;funeral (adj.)", + "example_sentence_native": "Los servicios funerarios se celebrarán mañana.", + "example_sentence_english": "The funerary services will be held tomorrow.", + "pos": "adjective", + "word_frequency": 16811 + }, + { + "word": "garrote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "club;cudgel", + "example_sentence_native": "El ladrón amenazó con un garrote.", + "example_sentence_english": "The thief threatened with a club.", + "pos": "noun", + "word_frequency": 16814 + }, + { + "word": "germano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Germanic;German (person;language)", + "example_sentence_native": "Los pueblos germanos migraron por Europa.", + "example_sentence_english": "The Germanic peoples migrated through Europe.", + "pos": "noun", + "word_frequency": 16815 + }, + { + "word": "golpiza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beating;thrashing", + "example_sentence_native": "Recibió una golpiza por su insolencia.", + "example_sentence_english": "He received a beating for his insolence.", + "pos": "noun", + "word_frequency": 16816 + }, + { + "word": "hernia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hernia", + "example_sentence_native": "Le diagnosticaron una hernia discal.", + "example_sentence_english": "He was diagnosed with a disc hernia.", + "pos": "noun", + "word_frequency": 16819 + }, + { + "word": "homónimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homonym", + "example_sentence_native": "«Banco» es un homónimo, puede ser de sentarse o de dinero.", + "example_sentence_english": "«Banco» is a homonym, it can be for sitting or for money.", + "pos": "noun", + "word_frequency": 16820 + }, + { + "word": "inaudito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unheard of;unprecedented", + "example_sentence_native": "Su comportamiento fue inaudito.", + "example_sentence_english": "His behavior was unheard of.", + "pos": "adjective", + "word_frequency": 16824 + }, + { + "word": "incoherente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incoherent", + "example_sentence_native": "Sus argumentos eran totalmente incoherentes.", + "example_sentence_english": "His arguments were totally incoherent.", + "pos": "adjective", + "word_frequency": 16825 + }, + { + "word": "inconfundible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unmistakable;distinctive", + "example_sentence_native": "Su voz es inconfundible.", + "example_sentence_english": "Her voice is unmistakable.", + "pos": "adjective", + "word_frequency": 16826 + }, + { + "word": "incumplir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fail to comply;to breach", + "example_sentence_native": "Incumplió el contrato.", + "example_sentence_english": "He failed to comply with the contract.", + "pos": "verb", + "word_frequency": 16827 + }, + { + "word": "insurgencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurgency", + "example_sentence_native": "La insurgencia ganó terreno en la región.", + "example_sentence_english": "The insurgency gained ground in the region.", + "pos": "noun", + "word_frequency": 16828 + }, + { + "word": "intangible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intangible", + "example_sentence_native": "La reputación es un activo intangible.", + "example_sentence_english": "Reputation is an intangible asset.", + "pos": "adjective", + "word_frequency": 16829 + }, + { + "word": "intensificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intensification", + "example_sentence_native": "Hubo una intensificación de las protestas.", + "example_sentence_english": "There was an intensification of the protests.", + "pos": "noun", + "word_frequency": 16830 + }, + { + "word": "internacionalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internationalization", + "example_sentence_native": "La internacionalización de la empresa es clave para su crecimiento.", + "example_sentence_english": "The internationalization of the company is key to its growth.", + "pos": "noun", + "word_frequency": 16831 + }, + { + "word": "liado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tied up;busy;confused", + "example_sentence_native": "Estoy muy liado con el trabajo esta semana.", + "example_sentence_english": "I'm very busy with work this week.", + "pos": "adjective", + "word_frequency": 16841 + }, + { + "word": "maceta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flowerpot", + "example_sentence_native": "Puse la planta en una maceta nueva.", + "example_sentence_english": "I put the plant in a new flowerpot.", + "pos": "noun", + "word_frequency": 16847 + }, + { + "word": "metralla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shrapnel", + "example_sentence_native": "La explosión esparció metralla por todas partes.", + "example_sentence_english": "The explosion scattered shrapnel everywhere.", + "pos": "noun", + "word_frequency": 16852 + }, + { + "word": "misericordioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merciful;compassionate", + "example_sentence_native": "Dios es misericordioso con sus criaturas.", + "example_sentence_english": "God is merciful to his creatures.", + "pos": "adjective", + "word_frequency": 16853 + }, + { + "word": "mutual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mutual", + "example_sentence_native": "Tenemos un acuerdo mutual.", + "example_sentence_english": "We have a mutual agreement.", + "pos": "adjective", + "word_frequency": 16856 + }, + { + "word": "natividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nativity;birth", + "example_sentence_native": "Celebraron la Natividad de Jesús.", + "example_sentence_english": "They celebrated the Nativity of Jesus.", + "pos": "noun", + "word_frequency": 16859 + }, + { + "word": "noria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ferris wheel;water wheel", + "example_sentence_native": "Subimos a la noria en la feria.", + "example_sentence_english": "We rode the Ferris wheel at the fair.", + "pos": "noun", + "word_frequency": 16860 + }, + { + "word": "nupcia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nuptial;wedding", + "example_sentence_native": "Las nupcias se celebraron en la iglesia.", + "example_sentence_english": "The nuptials were celebrated in the church.", + "pos": "noun", + "word_frequency": 16862 + }, + { + "word": "obviar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obviate;to avoid;to omit", + "example_sentence_native": "Es importante obviar los detalles innecesarios.", + "example_sentence_english": "It's important to omit unnecessary details.", + "pos": "verb", + "word_frequency": 16863 + }, + { + "word": "opacidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opacity", + "example_sentence_native": "La opacidad del cristal impedía ver a través.", + "example_sentence_english": "The opacity of the glass prevented seeing through.", + "pos": "noun", + "word_frequency": 16864 + }, + { + "word": "oracion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prayer;sentence", + "example_sentence_native": "Ella recita una oración cada noche.", + "example_sentence_english": "She recites a prayer every night.", + "pos": "noun", + "word_frequency": 16865 + }, + { + "word": "palmar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to die (colloquial);to lose (money)", + "example_sentence_native": "El negocio va a palmar si no cambian de estrategia.", + "example_sentence_english": "The business is going to go bust if they don't change strategy.", + "pos": "verb", + "word_frequency": 16867 + }, + { + "word": "papaya", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "papaya", + "example_sentence_native": "Me gusta comer papaya en el desayuno.", + "example_sentence_english": "I like to eat papaya for breakfast.", + "pos": "noun", + "word_frequency": 16869 + }, + { + "word": "pavimentación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paving;pavement", + "example_sentence_native": "La pavimentación de la calle mejoró el tráfico.", + "example_sentence_english": "The paving of the street improved traffic.", + "pos": "noun", + "word_frequency": 16871 + }, + { + "word": "pediatra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pediatrician", + "example_sentence_native": "Llevé a mi hijo al pediatra.", + "example_sentence_english": "I took my son to the pediatrician.", + "pos": "noun", + "word_frequency": 16874 + }, + { + "word": "pepito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type of sandwich (often with steak)", + "example_sentence_native": "Pedí un pepito de ternera para cenar.", + "example_sentence_english": "I ordered a steak sandwich for dinner.", + "pos": "noun", + "word_frequency": 16876 + }, + { + "word": "pitbull", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pitbull", + "example_sentence_native": "Mi vecino tiene un perro pitbull.", + "example_sentence_english": "My neighbor has a pitbull dog.", + "pos": "noun", + "word_frequency": 16877 + }, + { + "word": "prefijo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prefix", + "example_sentence_native": "El prefijo 're-' significa 'de nuevo'.", + "example_sentence_english": "The prefix 're-' means 'again'.", + "pos": "noun", + "word_frequency": 16879 + }, + { + "word": "prófugo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugitive", + "example_sentence_native": "La policía busca al prófugo de la justicia.", + "example_sentence_english": "The police are looking for the fugitive from justice.", + "pos": "noun", + "word_frequency": 16883 + }, + { + "word": "péndulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pendulum", + "example_sentence_native": "El péndulo del reloj se movía de un lado a otro.", + "example_sentence_english": "The clock's pendulum swung from side to side.", + "pos": "noun", + "word_frequency": 16887 + }, + { + "word": "recitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recite", + "example_sentence_native": "El poeta va a recitar sus versos.", + "example_sentence_english": "The poet is going to recite his verses.", + "pos": "verb", + "word_frequency": 16892 + }, + { + "word": "reconocible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognizable", + "example_sentence_native": "Su voz era inmediatamente reconocible.", + "example_sentence_english": "Her voice was immediately recognizable.", + "pos": "adjective", + "word_frequency": 16893 + }, + { + "word": "reconsiderar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reconsider", + "example_sentence_native": "Debemos reconsiderar nuestra decisión.", + "example_sentence_english": "We must reconsider our decision.", + "pos": "verb", + "word_frequency": 16894 + }, + { + "word": "redundancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redundancy", + "example_sentence_native": "Evita la redundancia en tus escritos.", + "example_sentence_english": "Avoid redundancy in your writing.", + "pos": "noun", + "word_frequency": 16895 + }, + { + "word": "reinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reign", + "example_sentence_native": "La paz reinó después de la guerra.", + "example_sentence_english": "Peace reigned after the war.", + "pos": "verb", + "word_frequency": 16896 + }, + { + "word": "repositorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repository", + "example_sentence_native": "El código fuente está en el repositorio.", + "example_sentence_english": "The source code is in the repository.", + "pos": "noun", + "word_frequency": 16897 + }, + { + "word": "represivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repressive", + "example_sentence_native": "El régimen era muy represivo con la oposición.", + "example_sentence_english": "The regime was very repressive towards the opposition.", + "pos": "adjective", + "word_frequency": 16898 + }, + { + "word": "reproche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproach", + "example_sentence_native": "Su mirada estaba llena de reproche.", + "example_sentence_english": "His gaze was full of reproach.", + "pos": "noun", + "word_frequency": 16899 + }, + { + "word": "riesgoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risky", + "example_sentence_native": "Es un negocio muy riesgoso.", + "example_sentence_english": "It's a very risky business.", + "pos": "adjective", + "word_frequency": 16902 + }, + { + "word": "sacra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacred", + "example_sentence_native": "La música sacra es muy hermosa.", + "example_sentence_english": "Sacred music is very beautiful.", + "pos": "adjective", + "word_frequency": 16903 + }, + { + "word": "sangría", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sangria", + "example_sentence_native": "Me gustaría una jarra de sangría, por favor.", + "example_sentence_english": "I would like a pitcher of sangria, please.", + "pos": "noun", + "word_frequency": 16906 + }, + { + "word": "seiscientos", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "six hundred", + "example_sentence_native": "El libro tiene seiscientas páginas.", + "example_sentence_english": "The book has six hundred pages.", + "pos": "noun", + "word_frequency": 16907 + }, + { + "word": "senderismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiking", + "example_sentence_native": "Nos encanta hacer senderismo en las montañas.", + "example_sentence_english": "We love hiking in the mountains.", + "pos": "noun", + "word_frequency": 16908 + }, + { + "word": "sensacionalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensationalist", + "example_sentence_native": "Ese periódico es demasiado sensacionalista.", + "example_sentence_english": "That newspaper is too sensationalist.", + "pos": "adjective", + "word_frequency": 16909 + }, + { + "word": "sinfín", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multitude;countless", + "example_sentence_native": "Hay un sinfín de posibilidades.", + "example_sentence_english": "There are countless possibilities.", + "pos": "noun", + "word_frequency": 16910 + }, + { + "word": "sobremanera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exceedingly", + "example_sentence_native": "Su ayuda fue sobremanera valiosa.", + "example_sentence_english": "His help was exceedingly valuable.", + "pos": "adverb", + "word_frequency": 16912 + }, + { + "word": "solemnemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemnly", + "example_sentence_native": "Juró solemnemente decir la verdad.", + "example_sentence_english": "He solemnly swore to tell the truth.", + "pos": "adverb", + "word_frequency": 16914 + }, + { + "word": "sustituido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substituted", + "example_sentence_native": "El jugador lesionado fue sustituido.", + "example_sentence_english": "The injured player was substituted.", + "pos": "adjective", + "word_frequency": 16918 + }, + { + "word": "sutileza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subtlety", + "example_sentence_native": "Apreció la sutileza de su argumento.", + "example_sentence_english": "He appreciated the subtlety of her argument.", + "pos": "noun", + "word_frequency": 16919 + }, + { + "word": "tardanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delay", + "example_sentence_native": "La tardanza del tren causó problemas.", + "example_sentence_english": "The train's delay caused problems.", + "pos": "noun", + "word_frequency": 16921 + }, + { + "word": "tato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tattoo", + "example_sentence_native": "Se hizo un tato en el brazo.", + "example_sentence_english": "He got a tattoo on his arm.", + "pos": "noun", + "word_frequency": 16922 + }, + { + "word": "temeroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fearful", + "example_sentence_native": "Estaba temeroso de la oscuridad.", + "example_sentence_english": "He was fearful of the dark.", + "pos": "adjective", + "word_frequency": 16923 + }, + { + "word": "tentáculo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tentacle", + "example_sentence_native": "El pulpo extendió sus tentáculos.", + "example_sentence_english": "The octopus extended its tentacles.", + "pos": "noun", + "word_frequency": 16924 + }, + { + "word": "tiza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chalk", + "example_sentence_native": "Escribió en la pizarra con tiza.", + "example_sentence_english": "He wrote on the blackboard with chalk.", + "pos": "noun", + "word_frequency": 16927 + }, + { + "word": "topar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to run into", + "example_sentence_native": "Me topé con un viejo amigo en la calle.", + "example_sentence_english": "I ran into an old friend on the street.", + "pos": "verb", + "word_frequency": 16928 + }, + { + "word": "torbellino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whirlwind", + "example_sentence_native": "Un torbellino de polvo se levantó en el desierto.", + "example_sentence_english": "A whirlwind of dust rose in the desert.", + "pos": "noun", + "word_frequency": 16929 + }, + { + "word": "tributación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taxation", + "example_sentence_native": "La tributación es un tema complejo.", + "example_sentence_english": "Taxation is a complex topic.", + "pos": "noun", + "word_frequency": 16930 + }, + { + "word": "venenoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisonous", + "example_sentence_native": "Esa planta es venenosa.", + "example_sentence_english": "That plant is poisonous.", + "pos": "adjective", + "word_frequency": 16933 + }, + { + "word": "versar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deal with", + "example_sentence_native": "La conferencia versará sobre el cambio climático.", + "example_sentence_english": "The conference will deal with climate change.", + "pos": "verb", + "word_frequency": 16934 + }, + { + "word": "ñoqui", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gnocchi", + "example_sentence_native": "Me encantan los ñoquis con salsa de tomate.", + "example_sentence_english": "I love gnocchi with tomato sauce.", + "pos": "noun", + "word_frequency": 16938 + }, + { + "word": "acrónimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acronym", + "example_sentence_native": "OTAN es un acrónimo de Organización del Tratado del Atlántico Norte.", + "example_sentence_english": "NATO is an acronym for North Atlantic Treaty Organization.", + "pos": "noun", + "word_frequency": 16939 + }, + { + "word": "adaptador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adapter", + "example_sentence_native": "Necesito un adaptador para mi portátil.", + "example_sentence_english": "I need an adapter for my laptop.", + "pos": "noun", + "word_frequency": 16940 + }, + { + "word": "adorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adored", + "example_sentence_native": "Mi abuela es una mujer muy adorada por todos.", + "example_sentence_english": "My grandmother is a woman much adored by everyone.", + "pos": "adjective", + "word_frequency": 16941 + }, + { + "word": "afilado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharp", + "example_sentence_native": "El cuchillo está muy afilado.", + "example_sentence_english": "The knife is very sharp.", + "pos": "adjective", + "word_frequency": 16942 + }, + { + "word": "agravio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grievance", + "example_sentence_native": "Sintió un gran agravio por la injusticia.", + "example_sentence_english": "He felt a great grievance over the injustice.", + "pos": "noun", + "word_frequency": 16943 + }, + { + "word": "agrónomo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agronomist", + "example_sentence_native": "El agrónomo visitó la finca para evaluar los cultivos.", + "example_sentence_english": "The agronomist visited the farm to evaluate the crops.", + "pos": "noun", + "word_frequency": 16944 + }, + { + "word": "ahondar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deepen", + "example_sentence_native": "Es necesario ahondar en las causas del problema.", + "example_sentence_english": "It is necessary to delve into the causes of the problem.", + "pos": "verb", + "word_frequency": 16945 + }, + { + "word": "alienación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alienation", + "example_sentence_native": "La alienación social es un problema creciente.", + "example_sentence_english": "Social alienation is a growing problem.", + "pos": "noun", + "word_frequency": 16948 + }, + { + "word": "altercado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altercation", + "example_sentence_native": "Hubo un altercado en la calle.", + "example_sentence_english": "There was an altercation in the street.", + "pos": "noun", + "word_frequency": 16950 + }, + { + "word": "amparar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to protect", + "example_sentence_native": "La ley busca amparar los derechos de los ciudadanos.", + "example_sentence_english": "The law seeks to protect the rights of citizens.", + "pos": "verb", + "word_frequency": 16951 + }, + { + "word": "antártico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Antarctic", + "example_sentence_native": "El continente antártico es muy frío.", + "example_sentence_english": "The Antarctic continent is very cold.", + "pos": "adjective", + "word_frequency": 16952 + }, + { + "word": "aprieto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predicament", + "example_sentence_native": "Se encontró en un aprieto financiero.", + "example_sentence_english": "He found himself in a financial predicament.", + "pos": "noun", + "word_frequency": 16953 + }, + { + "word": "apuñalar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stab", + "example_sentence_native": "Fue acusado de apuñalar a su rival.", + "example_sentence_english": "He was accused of stabbing his rival.", + "pos": "verb", + "word_frequency": 16954 + }, + { + "word": "armisticio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armistice", + "example_sentence_native": "Se firmó un armisticio para detener la guerra.", + "example_sentence_english": "An armistice was signed to stop the war.", + "pos": "noun", + "word_frequency": 16955 + }, + { + "word": "atalaya", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "watchtower", + "example_sentence_native": "Desde la atalaya se podía ver todo el valle.", + "example_sentence_english": "From the watchtower, the entire valley could be seen.", + "pos": "noun", + "word_frequency": 16956 + }, + { + "word": "atrio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atrium", + "example_sentence_native": "El atrio de la iglesia estaba lleno de gente.", + "example_sentence_english": "The church atrium was full of people.", + "pos": "noun", + "word_frequency": 16957 + }, + { + "word": "azucarero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sugar-related", + "example_sentence_native": "La industria azucarera es importante en esta región.", + "example_sentence_english": "The sugar industry is important in this region.", + "pos": "adjective", + "word_frequency": 16958 + }, + { + "word": "barniz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "varnish", + "example_sentence_native": "Aplicó una capa de barniz para proteger la madera.", + "example_sentence_english": "He applied a coat of varnish to protect the wood.", + "pos": "noun", + "word_frequency": 16961 + }, + { + "word": "bombonera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candy box;(football) stadium", + "example_sentence_native": "Le regaló una bombonera llena de chocolates.", + "example_sentence_english": "He gave her a candy box full of chocolates.", + "pos": "noun", + "word_frequency": 16964 + }, + { + "word": "bra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bra", + "example_sentence_native": "Necesito comprar un nuevo bra.", + "example_sentence_english": "I need to buy a new bra.", + "pos": "noun", + "word_frequency": 16966 + }, + { + "word": "brazalete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bracelet;armband", + "example_sentence_native": "Llevaba un hermoso brazalete de plata.", + "example_sentence_english": "She was wearing a beautiful silver bracelet.", + "pos": "noun", + "word_frequency": 16968 + }, + { + "word": "bursátil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stock market;financial", + "example_sentence_native": "La crisis bursátil afectó a muchas empresas.", + "example_sentence_english": "The stock market crisis affected many companies.", + "pos": "adjective", + "word_frequency": 16969 + }, + { + "word": "butaca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armchair;seat (in a theater)", + "example_sentence_native": "Se sentó cómodamente en la butaca del cine.", + "example_sentence_english": "He sat comfortably in the cinema armchair.", + "pos": "noun", + "word_frequency": 16970 + }, + { + "word": "byte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "byte", + "example_sentence_native": "Un kilobyte tiene mil veinticuatro bytes.", + "example_sentence_english": "A kilobyte has one thousand twenty-four bytes.", + "pos": "noun", + "word_frequency": 16971 + }, + { + "word": "cachemira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cashmere", + "example_sentence_native": "Compró una bufanda de cachemira muy suave.", + "example_sentence_english": "She bought a very soft cashmere scarf.", + "pos": "noun", + "word_frequency": 16972 + }, + { + "word": "califa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caliph", + "example_sentence_native": "El califa gobernaba un vasto imperio.", + "example_sentence_english": "The caliph ruled a vast empire.", + "pos": "noun", + "word_frequency": 16973 + }, + { + "word": "catastrófico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catastrophic", + "example_sentence_native": "Las inundaciones tuvieron un efecto catastrófico en la región.", + "example_sentence_english": "The floods had a catastrophic effect on the region.", + "pos": "adjective", + "word_frequency": 16974 + }, + { + "word": "categóricamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "categorically", + "example_sentence_native": "Negó categóricamente todas las acusaciones.", + "example_sentence_english": "He categorically denied all the accusations.", + "pos": "adverb", + "word_frequency": 16975 + }, + { + "word": "cebra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zebra", + "example_sentence_native": "La cebra tiene rayas blancas y negras.", + "example_sentence_english": "The zebra has black and white stripes.", + "pos": "noun", + "word_frequency": 16976 + }, + { + "word": "celestino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matchmaker;pimp", + "example_sentence_native": "Actuó como celestino para sus amigos.", + "example_sentence_english": "He acted as a matchmaker for his friends.", + "pos": "noun", + "word_frequency": 16977 + }, + { + "word": "chinchilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chinchilla", + "example_sentence_native": "La chinchilla es un roedor con un pelaje muy suave.", + "example_sentence_english": "The chinchilla is a rodent with very soft fur.", + "pos": "noun", + "word_frequency": 16984 + }, + { + "word": "chorrada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;silly thing", + "example_sentence_native": "No digas chorradas, eso no es verdad.", + "example_sentence_english": "Don't talk nonsense, that's not true.", + "pos": "noun", + "word_frequency": 16985 + }, + { + "word": "colada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laundry;filtered liquid;(Cuban) coffee shot", + "example_sentence_native": "Tengo que poner la colada hoy.", + "example_sentence_english": "I have to do the laundry today.", + "pos": "noun", + "word_frequency": 16987 + }, + { + "word": "coloso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colossus;giant", + "example_sentence_native": "El Coloso de Rodas fue una de las Siete Maravillas del Mundo Antiguo.", + "example_sentence_english": "The Colossus of Rhodes was one of the Seven Wonders of the Ancient World.", + "pos": "noun", + "word_frequency": 16988 + }, + { + "word": "complaciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complacent;obliging", + "example_sentence_native": "Su actitud complaciente no ayudó a resolver el problema.", + "example_sentence_english": "His complacent attitude did not help solve the problem.", + "pos": "adjective", + "word_frequency": 16989 + }, + { + "word": "concreción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concretization;concretion;specific instance", + "example_sentence_native": "Necesitamos una concreción de las ideas para poder avanzar.", + "example_sentence_english": "We need a concretization of the ideas to be able to move forward.", + "pos": "noun", + "word_frequency": 16991 + }, + { + "word": "condecoración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decoration;medal;award", + "example_sentence_native": "Recibió una condecoración por su valentía en el servicio.", + "example_sentence_english": "He received a decoration for his bravery in service.", + "pos": "noun", + "word_frequency": 16992 + }, + { + "word": "condensación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condensation", + "example_sentence_native": "La condensación del vapor de agua forma nubes.", + "example_sentence_english": "The condensation of water vapor forms clouds.", + "pos": "noun", + "word_frequency": 16993 + }, + { + "word": "correccional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correctional", + "example_sentence_native": "Fue enviado a un centro correccional para jóvenes.", + "example_sentence_english": "He was sent to a correctional facility for young people.", + "pos": "adjective", + "word_frequency": 16996 + }, + { + "word": "cremallera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zipper;zip", + "example_sentence_native": "La cremallera de mi chaqueta está rota.", + "example_sentence_english": "The zipper on my jacket is broken.", + "pos": "noun", + "word_frequency": 16998 + }, + { + "word": "crujiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crunchy;crispy", + "example_sentence_native": "Las patatas fritas estaban muy crujientes.", + "example_sentence_english": "The potato chips were very crunchy.", + "pos": "adjective", + "word_frequency": 16999 + }, + { + "word": "cítrico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citrus", + "example_sentence_native": "Me encanta el sabor cítrico de las naranjas.", + "example_sentence_english": "I love the citrus flavor of oranges.", + "pos": "adjective", + "word_frequency": 17001 + }, + { + "word": "declaratorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "declaratory", + "example_sentence_native": "La sentencia fue meramente declaratoria.", + "example_sentence_english": "The judgment was merely declaratory.", + "pos": "adjective", + "word_frequency": 17003 + }, + { + "word": "derbi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derby (sports)", + "example_sentence_native": "El derbi local siempre genera mucha expectación.", + "example_sentence_english": "The local derby always generates a lot of anticipation.", + "pos": "noun", + "word_frequency": 17004 + }, + { + "word": "derretir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to melt", + "example_sentence_native": "El hielo se derrite rápidamente al sol.", + "example_sentence_english": "The ice melts quickly in the sun.", + "pos": "verb", + "word_frequency": 17005 + }, + { + "word": "deshonesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dishonest", + "example_sentence_native": "Fue deshonesto al no decir la verdad.", + "example_sentence_english": "He was dishonest by not telling the truth.", + "pos": "adjective", + "word_frequency": 17006 + }, + { + "word": "diocesano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocesan", + "example_sentence_native": "El obispo visitó todas las parroquias diocesanas.", + "example_sentence_english": "The bishop visited all the diocesan parishes.", + "pos": "adjective", + "word_frequency": 17008 + }, + { + "word": "edificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build;to edify", + "example_sentence_native": "Quieren edificar un nuevo hospital en la ciudad.", + "example_sentence_english": "They want to build a new hospital in the city.", + "pos": "verb", + "word_frequency": 17011 + }, + { + "word": "electrificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electrification", + "example_sentence_native": "La electrificación rural es un objetivo importante.", + "example_sentence_english": "Rural electrification is an important goal.", + "pos": "noun", + "word_frequency": 17012 + }, + { + "word": "embrague", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clutch (vehicle)", + "example_sentence_native": "Necesito reparar el embrague de mi coche.", + "example_sentence_english": "I need to repair the clutch of my car.", + "pos": "noun", + "word_frequency": 17014 + }, + { + "word": "emérito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emeritus", + "example_sentence_native": "El profesor emérito dio una conferencia magistral.", + "example_sentence_english": "The emeritus professor gave a master lecture.", + "pos": "adjective", + "word_frequency": 17015 + }, + { + "word": "enfermizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sickly;unhealthy", + "example_sentence_native": "Tiene una constitución enfermiza y se resfría a menudo.", + "example_sentence_english": "He has a sickly constitution and often catches colds.", + "pos": "adjective", + "word_frequency": 17016 + }, + { + "word": "ensamble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;ensemble", + "example_sentence_native": "El ensamble de piezas es crucial para el funcionamiento.", + "example_sentence_english": "The assembly of parts is crucial for operation.", + "pos": "noun", + "word_frequency": 17017 + }, + { + "word": "erigir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to erect;to establish", + "example_sentence_native": "Decidieron erigir un monumento en honor a los héroes.", + "example_sentence_english": "They decided to erect a monument in honor of the heroes.", + "pos": "verb", + "word_frequency": 17018 + }, + { + "word": "escanear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scan", + "example_sentence_native": "Necesito escanear este documento para enviarlo por correo.", + "example_sentence_english": "I need to scan this document to send it by mail.", + "pos": "verb", + "word_frequency": 17019 + }, + { + "word": "escáner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scanner", + "example_sentence_native": "Compré un nuevo escáner para mi oficina.", + "example_sentence_english": "I bought a new scanner for my office.", + "pos": "noun", + "word_frequency": 17021 + }, + { + "word": "especificidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specificity", + "example_sentence_native": "La especificidad de los síntomas ayuda al diagnóstico.", + "example_sentence_english": "The specificity of the symptoms helps with the diagnosis.", + "pos": "noun", + "word_frequency": 17022 + }, + { + "word": "estafar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swindle;to defraud", + "example_sentence_native": "Lo estafaron con una falsa promesa de inversión.", + "example_sentence_english": "They swindled him with a false investment promise.", + "pos": "verb", + "word_frequency": 17023 + }, + { + "word": "estorbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hindrance;nuisance;obstacle", + "example_sentence_native": "Esa caja es un estorbo en el pasillo.", + "example_sentence_english": "That box is a hindrance in the hallway.", + "pos": "noun", + "word_frequency": 17024 + }, + { + "word": "expositor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibitor;speaker", + "example_sentence_native": "El expositor presentó su proyecto con claridad.", + "example_sentence_english": "The speaker presented his project clearly.", + "pos": "noun", + "word_frequency": 17026 + }, + { + "word": "factibilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feasibility", + "example_sentence_native": "Estudiaron la factibilidad del proyecto antes de invertir.", + "example_sentence_english": "They studied the feasibility of the project before investing.", + "pos": "noun", + "word_frequency": 17027 + }, + { + "word": "filarmónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philharmonic", + "example_sentence_native": "La orquesta filarmónica ofreció un concierto excelente.", + "example_sentence_english": "The philharmonic orchestra gave an excellent concert.", + "pos": "adjective", + "word_frequency": 17030 + }, + { + "word": "flotilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flotilla;small fleet", + "example_sentence_native": "La empresa tiene una flotilla de vehículos de reparto.", + "example_sentence_english": "The company has a fleet of delivery vehicles.", + "pos": "noun", + "word_frequency": 17033 + }, + { + "word": "formalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formalization", + "example_sentence_native": "La formalización del acuerdo tardó varios meses.", + "example_sentence_english": "The formalization of the agreement took several months.", + "pos": "noun", + "word_frequency": 17034 + }, + { + "word": "fortín", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small fort;stronghold", + "example_sentence_native": "Construyeron un fortín para defender la frontera.", + "example_sentence_english": "They built a small fort to defend the border.", + "pos": "noun", + "word_frequency": 17036 + }, + { + "word": "grandemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "greatly", + "example_sentence_native": "Su trabajo contribuyó grandemente al éxito del proyecto.", + "example_sentence_english": "His work greatly contributed to the project's success.", + "pos": "adverb", + "word_frequency": 17042 + }, + { + "word": "habitable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "habitable", + "example_sentence_native": "Los científicos buscan planetas habitables fuera de nuestro sistema solar.", + "example_sentence_english": "Scientists are looking for habitable planets outside our solar system.", + "pos": "adjective", + "word_frequency": 17043 + }, + { + "word": "hemeroteca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "newspaper archive", + "example_sentence_native": "Consulté la hemeroteca para encontrar noticias antiguas.", + "example_sentence_english": "I consulted the newspaper archive to find old news.", + "pos": "noun", + "word_frequency": 17045 + }, + { + "word": "higo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fig", + "example_sentence_native": "Me gusta comer higos frescos en verano.", + "example_sentence_english": "I like to eat fresh figs in summer.", + "pos": "noun", + "word_frequency": 17046 + }, + { + "word": "hold", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hold", + "example_sentence_native": "El avión tiene un gran hold de carga.", + "example_sentence_english": "The plane has a large cargo hold.", + "pos": "noun", + "word_frequency": 17047 + }, + { + "word": "hospitalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospitalization", + "example_sentence_native": "La hospitalización fue necesaria después del accidente.", + "example_sentence_english": "Hospitalization was necessary after the accident.", + "pos": "noun", + "word_frequency": 17048 + }, + { + "word": "iconografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iconography", + "example_sentence_native": "La iconografía religiosa es un campo de estudio fascinante.", + "example_sentence_english": "Religious iconography is a fascinating field of study.", + "pos": "noun", + "word_frequency": 17049 + }, + { + "word": "imponible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxable", + "example_sentence_native": "La base imponible se calcula sobre los ingresos brutos.", + "example_sentence_english": "The taxable base is calculated on gross income.", + "pos": "adjective", + "word_frequency": 17050 + }, + { + "word": "incisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incision", + "example_sentence_native": "El cirujano hizo una pequeña incisión para la operación.", + "example_sentence_english": "The surgeon made a small incision for the operation.", + "pos": "noun", + "word_frequency": 17051 + }, + { + "word": "incompatibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompatibility", + "example_sentence_native": "Existe una incompatibilidad de horarios entre los dos.", + "example_sentence_english": "There is a schedule incompatibility between the two.", + "pos": "noun", + "word_frequency": 17052 + }, + { + "word": "indigencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "destitution", + "example_sentence_native": "La indigencia es un problema social que afecta a muchas ciudades.", + "example_sentence_english": "Destitution is a social problem affecting many cities.", + "pos": "noun", + "word_frequency": 17053 + }, + { + "word": "inframundo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underworld", + "example_sentence_native": "En la mitología griega, Hades es el dios del inframundo.", + "example_sentence_english": "In Greek mythology, Hades is the god of the underworld.", + "pos": "noun", + "word_frequency": 17054 + }, + { + "word": "insinuación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insinuation", + "example_sentence_native": "Su comentario fue una clara insinuación de lo que pensaba.", + "example_sentence_english": "His comment was a clear insinuation of what he thought.", + "pos": "noun", + "word_frequency": 17056 + }, + { + "word": "intencionalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intentionality", + "example_sentence_native": "La intencionalidad de sus acciones era evidente para todos.", + "example_sentence_english": "The intentionality of his actions was evident to everyone.", + "pos": "noun", + "word_frequency": 17057 + }, + { + "word": "involuntariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involuntarily", + "example_sentence_native": "Se rió involuntariamente al escuchar el chiste.", + "example_sentence_english": "He laughed involuntarily when he heard the joke.", + "pos": "adverb", + "word_frequency": 17060 + }, + { + "word": "irremediablemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irremediably", + "example_sentence_native": "La situación estaba irremediablemente perdida.", + "example_sentence_english": "The situation was irremediably lost.", + "pos": "adverb", + "word_frequency": 17061 + }, + { + "word": "lepra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leprosy", + "example_sentence_native": "La lepra es una enfermedad infecciosa crónica.", + "example_sentence_english": "Leprosy is a chronic infectious disease.", + "pos": "noun", + "word_frequency": 17068 + }, + { + "word": "listón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ribbon", + "example_sentence_native": "Ató el regalo con un listón rojo.", + "example_sentence_english": "He tied the gift with a red ribbon.", + "pos": "noun", + "word_frequency": 17070 + }, + { + "word": "llanamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plainly", + "example_sentence_native": "Explicó el problema llanamente para que todos lo entendieran.", + "example_sentence_english": "He explained the problem plainly so everyone would understand it.", + "pos": "adverb", + "word_frequency": 17071 + }, + { + "word": "loable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laudable", + "example_sentence_native": "Su esfuerzo por ayudar a los demás es realmente loable.", + "example_sentence_english": "His effort to help others is truly laudable.", + "pos": "adjective", + "word_frequency": 17072 + }, + { + "word": "lumbar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lumbar", + "example_sentence_native": "Sufre de dolor en la zona lumbar.", + "example_sentence_english": "He suffers from pain in the lumbar region.", + "pos": "adjective", + "word_frequency": 17075 + }, + { + "word": "mainstream", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mainstream", + "example_sentence_native": "Su música se ha vuelto muy mainstream en los últimos años.", + "example_sentence_english": "His music has become very mainstream in recent years.", + "pos": "noun", + "word_frequency": 17077 + }, + { + "word": "malandro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thug", + "example_sentence_native": "La policía arrestó a un grupo de malandros en el barrio.", + "example_sentence_english": "The police arrested a group of thugs in the neighborhood.", + "pos": "noun", + "word_frequency": 17078 + }, + { + "word": "maquinista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engineer (train driver)", + "example_sentence_native": "El maquinista detuvo el tren en la estación.", + "example_sentence_english": "The engineer stopped the train at the station.", + "pos": "noun", + "word_frequency": 17080 + }, + { + "word": "marga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marl", + "example_sentence_native": "El suelo de la región es rico en marga.", + "example_sentence_english": "The soil of the region is rich in marl.", + "pos": "noun", + "word_frequency": 17081 + }, + { + "word": "multicultural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multicultural", + "example_sentence_native": "Vivimos en una sociedad cada vez más multicultural.", + "example_sentence_english": "We live in an increasingly multicultural society.", + "pos": "adjective", + "word_frequency": 17093 + }, + { + "word": "multitudinario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multitudinous;massive", + "example_sentence_native": "El concierto fue un evento multitudinario con miles de asistentes.", + "example_sentence_english": "The concert was a multitudinous event with thousands of attendees.", + "pos": "adjective", + "word_frequency": 17094 + }, + { + "word": "mutilación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutilation", + "example_sentence_native": "La mutilación de documentos históricos es un delito grave.", + "example_sentence_english": "The mutilation of historical documents is a serious crime.", + "pos": "noun", + "word_frequency": 17096 + }, + { + "word": "nord", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "north", + "example_sentence_native": "El viento sopla del nord.", + "example_sentence_english": "The wind blows from the north.", + "pos": "noun", + "word_frequency": 17102 + }, + { + "word": "nuera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daughter-in-law", + "example_sentence_native": "Mi nuera es una persona muy amable y trabajadora.", + "example_sentence_english": "My daughter-in-law is a very kind and hardworking person.", + "pos": "noun", + "word_frequency": 17104 + }, + { + "word": "nuncio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nuncio", + "example_sentence_native": "El nuncio apostólico presentó sus credenciales al presidente.", + "example_sentence_english": "The apostolic nuncio presented his credentials to the president.", + "pos": "noun", + "word_frequency": 17105 + }, + { + "word": "ojeada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glance;quick look", + "example_sentence_native": "Le di una ojeada rápida al periódico antes de salir.", + "example_sentence_english": "I gave the newspaper a quick glance before leaving.", + "pos": "noun", + "word_frequency": 17107 + }, + { + "word": "oportunismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opportunism", + "example_sentence_native": "Su oportunismo le permitió aprovechar cada situación a su favor.", + "example_sentence_english": "His opportunism allowed him to take advantage of every situation.", + "pos": "noun", + "word_frequency": 17108 + }, + { + "word": "oratorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oratory (place of prayer);oratorio (musical work)", + "example_sentence_native": "El oratorio de la iglesia es un lugar de paz y reflexión.", + "example_sentence_english": "The church oratory is a place of peace and reflection.", + "pos": "noun", + "word_frequency": 17109 + }, + { + "word": "pacificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pacify;to calm", + "example_sentence_native": "El gobierno intentó pacificar la región después de los disturbios.", + "example_sentence_english": "The government tried to pacify the region after the riots.", + "pos": "verb", + "word_frequency": 17110 + }, + { + "word": "pacificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pacification", + "example_sentence_native": "La pacificación de la zona es un proceso largo y complejo.", + "example_sentence_english": "The pacification of the area is a long and complex process.", + "pos": "noun", + "word_frequency": 17111 + }, + { + "word": "panqueque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pancake", + "example_sentence_native": "Para el desayuno, me gusta comer panqueques con miel.", + "example_sentence_english": "For breakfast, I like to eat pancakes with honey.", + "pos": "noun", + "word_frequency": 17112 + }, + { + "word": "persuasión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "persuasion", + "example_sentence_native": "Su habilidad para la persuasión es impresionante.", + "example_sentence_english": "His ability for persuasion is impressive.", + "pos": "noun", + "word_frequency": 17118 + }, + { + "word": "pizzería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pizzeria", + "example_sentence_native": "Vamos a cenar a la pizzería esta noche.", + "example_sentence_english": "Let's go to the pizzeria tonight for dinner.", + "pos": "noun", + "word_frequency": 17120 + }, + { + "word": "planchar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to iron", + "example_sentence_native": "Necesito planchar mi camisa antes de salir.", + "example_sentence_english": "I need to iron my shirt before going out.", + "pos": "verb", + "word_frequency": 17121 + }, + { + "word": "postulante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicant", + "example_sentence_native": "El postulante presentó todos los documentos requeridos.", + "example_sentence_english": "The applicant submitted all the required documents.", + "pos": "noun", + "word_frequency": 17123 + }, + { + "word": "presagio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omen;premonition", + "example_sentence_native": "La aparición del cometa fue un presagio de grandes cambios.", + "example_sentence_english": "The appearance of the comet was an omen of great changes.", + "pos": "noun", + "word_frequency": 17124 + }, + { + "word": "radicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "based;established;residing", + "example_sentence_native": "La empresa está radicada en Madrid.", + "example_sentence_english": "The company is based in Madrid.", + "pos": "adjective", + "word_frequency": 17126 + }, + { + "word": "renegar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deny;to renounce;to grumble", + "example_sentence_native": "Él reniega de su pasado.", + "example_sentence_english": "He renounces his past.", + "pos": "verb", + "word_frequency": 17127 + }, + { + "word": "resiliencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resilience", + "example_sentence_native": "La resiliencia es clave para superar las adversidades.", + "example_sentence_english": "Resilience is key to overcoming adversities.", + "pos": "noun", + "word_frequency": 17129 + }, + { + "word": "respetuosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectfully", + "example_sentence_native": "Se dirigió a ella respetuosamente.", + "example_sentence_english": "He addressed her respectfully.", + "pos": "adverb", + "word_frequency": 17130 + }, + { + "word": "revocatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recall (referendum;vote)", + "example_sentence_native": "Se convocó un referéndum revocatorio para el mandato del presidente.", + "example_sentence_english": "A recall referendum was called for the president's term.", + "pos": "noun", + "word_frequency": 17131 + }, + { + "word": "rizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curl;loop", + "example_sentence_native": "Tiene el pelo lleno de rizos.", + "example_sentence_english": "She has hair full of curls.", + "pos": "noun", + "word_frequency": 17134 + }, + { + "word": "roncar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to snore", + "example_sentence_native": "Mi abuelo ronca muy fuerte por las noches.", + "example_sentence_english": "My grandfather snores very loudly at night.", + "pos": "verb", + "word_frequency": 17135 + }, + { + "word": "ruin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mean;vile;ruinous", + "example_sentence_native": "Fue un acto ruin y despreciable.", + "example_sentence_english": "It was a mean and despicable act.", + "pos": "adjective", + "word_frequency": 17136 + }, + { + "word": "rutinario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "routine;habitual", + "example_sentence_native": "Su trabajo se ha vuelto muy rutinario.", + "example_sentence_english": "His job has become very routine.", + "pos": "adjective", + "word_frequency": 17137 + }, + { + "word": "saciedad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satiety;fullness", + "example_sentence_native": "Sentí una gran saciedad después de la comida.", + "example_sentence_english": "I felt great satiety after the meal.", + "pos": "noun", + "word_frequency": 17139 + }, + { + "word": "saldar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to settle;to pay off", + "example_sentence_native": "Necesito saldar mis deudas antes de fin de mes.", + "example_sentence_english": "I need to settle my debts before the end of the month.", + "pos": "verb", + "word_frequency": 17140 + }, + { + "word": "simbólicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolically", + "example_sentence_native": "El gesto fue simbólicamente importante.", + "example_sentence_english": "The gesture was symbolically important.", + "pos": "adverb", + "word_frequency": 17143 + }, + { + "word": "sistémico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "systemic", + "example_sentence_native": "Es necesario un cambio sistémico para resolver el problema.", + "example_sentence_english": "A systemic change is necessary to solve the problem.", + "pos": "adjective", + "word_frequency": 17144 + }, + { + "word": "sociocultural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociocultural", + "example_sentence_native": "Analizamos el impacto sociocultural de la tecnología.", + "example_sentence_english": "We analyzed the sociocultural impact of technology.", + "pos": "adjective", + "word_frequency": 17146 + }, + { + "word": "solsticio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solstice", + "example_sentence_native": "El solsticio de verano es el día más largo del año.", + "example_sentence_english": "The summer solstice is the longest day of the year.", + "pos": "noun", + "word_frequency": 17147 + }, + { + "word": "subdirección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sub-directorate;deputy management", + "example_sentence_native": "La subdirección es responsable de la planificación.", + "example_sentence_english": "The sub-directorate is responsible for planning.", + "pos": "noun", + "word_frequency": 17150 + }, + { + "word": "subordinación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subordination", + "example_sentence_native": "La subordinación de cláusulas es un tema gramatical.", + "example_sentence_english": "The subordination of clauses is a grammatical topic.", + "pos": "noun", + "word_frequency": 17151 + }, + { + "word": "termal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal (often used in plural as 'thermal baths')", + "example_sentence_native": "Nos relajamos en las termales del balneario.", + "example_sentence_english": "We relaxed in the thermal baths of the spa.", + "pos": "noun", + "word_frequency": 17156 + }, + { + "word": "testimonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "testimonial;evidentiary", + "example_sentence_native": "La prueba testimonial es importante en el juicio.", + "example_sentence_english": "The testimonial evidence is important in the trial.", + "pos": "adjective", + "word_frequency": 17157 + }, + { + "word": "tocador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressing table", + "example_sentence_native": "Ella se sentó frente al tocador para maquillarse.", + "example_sentence_english": "She sat in front of the dressing table to put on her makeup.", + "pos": "noun", + "word_frequency": 17160 + }, + { + "word": "tocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headdress", + "example_sentence_native": "La novia llevaba un hermoso tocado floral.", + "example_sentence_english": "The bride wore a beautiful floral headdress.", + "pos": "noun", + "word_frequency": 17161 + }, + { + "word": "tranquilizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to calm", + "example_sentence_native": "Intentó tranquilizar al niño asustado.", + "example_sentence_english": "He tried to calm the scared child.", + "pos": "verb", + "word_frequency": 17163 + }, + { + "word": "traste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fret (of a guitar)", + "example_sentence_native": "El guitarrista presionó la cuerda en el tercer traste.", + "example_sentence_english": "The guitarist pressed the string on the third fret.", + "pos": "noun", + "word_frequency": 17164 + }, + { + "word": "trébol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clover", + "example_sentence_native": "Encontró un trébol de cuatro hojas.", + "example_sentence_english": "He found a four-leaf clover.", + "pos": "noun", + "word_frequency": 17167 + }, + { + "word": "uniformidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uniformity", + "example_sentence_native": "Buscaban la uniformidad en el diseño de los edificios.", + "example_sentence_english": "They sought uniformity in the design of the buildings.", + "pos": "noun", + "word_frequency": 17169 + }, + { + "word": "vendimia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grape harvest", + "example_sentence_native": "La vendimia es una época importante para la región.", + "example_sentence_english": "The grape harvest is an important time for the region.", + "pos": "noun", + "word_frequency": 17170 + }, + { + "word": "versátil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "versatile", + "example_sentence_native": "Es un artista muy versátil, puede pintar y esculpir.", + "example_sentence_english": "He is a very versatile artist, he can paint and sculpt.", + "pos": "adjective", + "word_frequency": 17171 + }, + { + "word": "versículo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verse (of a bible;poem)", + "example_sentence_native": "Leyó un versículo de la Biblia.", + "example_sentence_english": "He read a verse from the Bible.", + "pos": "noun", + "word_frequency": 17172 + }, + { + "word": "zafra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sugar cane harvest", + "example_sentence_native": "La zafra de este año fue muy productiva.", + "example_sentence_english": "This year's sugar cane harvest was very productive.", + "pos": "noun", + "word_frequency": 17177 + }, + { + "word": "úlcera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ulcer", + "example_sentence_native": "El médico diagnosticó una úlcera de estómago.", + "example_sentence_english": "The doctor diagnosed a stomach ulcer.", + "pos": "noun", + "word_frequency": 17178 + }, + { + "word": "acometer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to undertake", + "example_sentence_native": "Decidió acometer el proyecto con determinación.", + "example_sentence_english": "He decided to undertake the project with determination.", + "pos": "verb", + "word_frequency": 17181 + }, + { + "word": "afiche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poster", + "example_sentence_native": "Pegaron el afiche en la pared.", + "example_sentence_english": "They pasted the poster on the wall.", + "pos": "noun", + "word_frequency": 17182 + }, + { + "word": "agregación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aggregation", + "example_sentence_native": "La agregación de datos es crucial para el análisis.", + "example_sentence_english": "Data aggregation is crucial for analysis.", + "pos": "noun", + "word_frequency": 17184 + }, + { + "word": "aguada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watercolor (painting technique)", + "example_sentence_native": "El artista usó la técnica de la aguada para el paisaje.", + "example_sentence_english": "The artist used the watercolor technique for the landscape.", + "pos": "noun", + "word_frequency": 17185 + }, + { + "word": "alargado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elongated", + "example_sentence_native": "El cuello de la jirafa es muy alargado.", + "example_sentence_english": "The giraffe's neck is very elongated.", + "pos": "adjective", + "word_frequency": 17187 + }, + { + "word": "anguila", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eel", + "example_sentence_native": "La anguila se deslizó por el agua.", + "example_sentence_english": "The eel slid through the water.", + "pos": "noun", + "word_frequency": 17190 + }, + { + "word": "aniquilar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to annihilate", + "example_sentence_native": "El ejército enemigo fue aniquilado.", + "example_sentence_english": "The enemy army was annihilated.", + "pos": "verb", + "word_frequency": 17192 + }, + { + "word": "aparecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeared", + "example_sentence_native": "El libro aparecido en la mesa no era mío.", + "example_sentence_english": "The book that appeared on the table was not mine.", + "pos": "adjective", + "word_frequency": 17193 + }, + { + "word": "apasionadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionately", + "example_sentence_native": "Ella canta apasionadamente.", + "example_sentence_english": "She sings passionately.", + "pos": "adverb", + "word_frequency": 17194 + }, + { + "word": "apresurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hurry", + "example_sentence_native": "No hay necesidad de apresurar la decisión.", + "example_sentence_english": "There is no need to hurry the decision.", + "pos": "verb", + "word_frequency": 17195 + }, + { + "word": "arcaico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archaic", + "example_sentence_native": "Esa palabra es considerada arcaica hoy en día.", + "example_sentence_english": "That word is considered archaic nowadays.", + "pos": "adjective", + "word_frequency": 17196 + }, + { + "word": "arepa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arepa (a type of corn cake)", + "example_sentence_native": "Desayuné una arepa con queso.", + "example_sentence_english": "I had an arepa with cheese for breakfast.", + "pos": "noun", + "word_frequency": 17198 + }, + { + "word": "aunado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "united;combined", + "example_sentence_native": "El esfuerzo aunado de todos llevó al éxito.", + "example_sentence_english": "The combined effort of everyone led to success.", + "pos": "adjective", + "word_frequency": 17200 + }, + { + "word": "autista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autistic", + "example_sentence_native": "El niño tiene un comportamiento autista.", + "example_sentence_english": "The child has autistic behavior.", + "pos": "adjective", + "word_frequency": 17201 + }, + { + "word": "banal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banal;trivial", + "example_sentence_native": "No quiero hablar de cosas banales.", + "example_sentence_english": "I don't want to talk about trivial things.", + "pos": "adjective", + "word_frequency": 17205 + }, + { + "word": "beato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blessed person;devout person", + "example_sentence_native": "La beata rezaba en la iglesia.", + "example_sentence_english": "The devout woman prayed in the church.", + "pos": "noun", + "word_frequency": 17207 + }, + { + "word": "boicotear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boycott", + "example_sentence_native": "Decidieron boicotear los productos de esa empresa.", + "example_sentence_english": "They decided to boycott that company's products.", + "pos": "verb", + "word_frequency": 17209 + }, + { + "word": "básquetbol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "example_sentence_native": "Me gusta jugar al básquetbol.", + "example_sentence_english": "I like to play basketball.", + "pos": "noun", + "word_frequency": 17212 + }, + { + "word": "calamar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squid", + "example_sentence_native": "Pedimos calamares a la romana.", + "example_sentence_english": "We ordered Roman-style squid.", + "pos": "noun", + "word_frequency": 17214 + }, + { + "word": "caries", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cavity (dental)", + "example_sentence_native": "Tengo una caries en una muela.", + "example_sentence_english": "I have a cavity in a molar.", + "pos": "noun", + "word_frequency": 17215 + }, + { + "word": "catastro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cadastre;land registry", + "example_sentence_native": "El catastro registra la propiedad de las tierras.", + "example_sentence_english": "The cadastre registers land ownership.", + "pos": "noun", + "word_frequency": 17216 + }, + { + "word": "catecismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catechism", + "example_sentence_native": "Estudió el catecismo para su primera comunión.", + "example_sentence_english": "He studied the catechism for his first communion.", + "pos": "noun", + "word_frequency": 17217 + }, + { + "word": "chamba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "job;work (colloquial;Latin America)", + "example_sentence_native": "Conseguí una buena chamba el mes pasado.", + "example_sentence_english": "I got a good job last month.", + "pos": "noun", + "word_frequency": 17219 + }, + { + "word": "circunstancial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circumstantial", + "example_sentence_native": "Fue un encuentro puramente circunstancial.", + "example_sentence_english": "It was a purely circumstantial encounter.", + "pos": "adjective", + "word_frequency": 17220 + }, + { + "word": "cogido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caught;taken;grasped", + "example_sentence_native": "El ladrón fue cogido in fraganti.", + "example_sentence_english": "The thief was caught red-handed.", + "pos": "adjective", + "word_frequency": 17225 + }, + { + "word": "coito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coitus;sexual intercourse", + "example_sentence_native": "El coito es una parte de la reproducción sexual.", + "example_sentence_english": "Coitus is a part of sexual reproduction.", + "pos": "noun", + "word_frequency": 17226 + }, + { + "word": "comodín", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wildcard;joker (card);utility player", + "example_sentence_native": "En este juego, el as es el comodín.", + "example_sentence_english": "In this game, the ace is the wildcard.", + "pos": "noun", + "word_frequency": 17228 + }, + { + "word": "concertado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreed;concerted;subsidized (school)", + "example_sentence_native": "Llegaron a un acuerdo concertado.", + "example_sentence_english": "They reached a concerted agreement.", + "pos": "adjective", + "word_frequency": 17229 + }, + { + "word": "conciso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concise", + "example_sentence_native": "Su respuesta fue muy concisa y clara.", + "example_sentence_english": "His answer was very concise and clear.", + "pos": "adjective", + "word_frequency": 17230 + }, + { + "word": "contaduría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounting;accountancy department", + "example_sentence_native": "Trabaja en la contaduría de la empresa.", + "example_sentence_english": "He works in the company's accounting department.", + "pos": "noun", + "word_frequency": 17232 + }, + { + "word": "contrabandista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggler", + "example_sentence_native": "La policía detuvo a un contrabandista de tabaco.", + "example_sentence_english": "The police arrested a tobacco smuggler.", + "pos": "noun", + "word_frequency": 17233 + }, + { + "word": "convicto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convict", + "example_sentence_native": "El convicto fue liberado después de diez años.", + "example_sentence_english": "The convict was released after ten years.", + "pos": "noun", + "word_frequency": 17234 + }, + { + "word": "crecida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flood;rise (of water level)", + "example_sentence_native": "La crecida del río causó inundaciones.", + "example_sentence_english": "The rise of the river caused floods.", + "pos": "noun", + "word_frequency": 17236 + }, + { + "word": "croqueta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "croquette", + "example_sentence_native": "Me encantan las croquetas de jamón.", + "example_sentence_english": "I love ham croquettes.", + "pos": "noun", + "word_frequency": 17237 + }, + { + "word": "cualitativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "qualitative", + "example_sentence_native": "Necesitamos un análisis cualitativo de los datos.", + "example_sentence_english": "We need a qualitative analysis of the data.", + "pos": "adjective", + "word_frequency": 17239 + }, + { + "word": "curvatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curvature", + "example_sentence_native": "La curvatura de la carretera dificultaba la visibilidad.", + "example_sentence_english": "The curvature of the road made visibility difficult.", + "pos": "noun", + "word_frequency": 17240 + }, + { + "word": "debil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weak", + "example_sentence_native": "Se sentía muy débil después de la enfermedad.", + "example_sentence_english": "He felt very weak after the illness.", + "pos": "adjective", + "word_frequency": 17243 + }, + { + "word": "definicion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definition", + "example_sentence_native": "Busca la definición de esa palabra en el diccionario.", + "example_sentence_english": "Look for the definition of that word in the dictionary.", + "pos": "noun", + "word_frequency": 17244 + }, + { + "word": "delatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to betray;to denounce", + "example_sentence_native": "No quiso delatar a sus amigos.", + "example_sentence_english": "He didn't want to betray his friends.", + "pos": "verb", + "word_frequency": 17245 + }, + { + "word": "desamor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of love;heartbreak", + "example_sentence_native": "Sintió un profundo desamor después de la ruptura.", + "example_sentence_english": "He felt a deep heartbreak after the breakup.", + "pos": "noun", + "word_frequency": 17247 + }, + { + "word": "desconcertado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disconcerted;bewildered", + "example_sentence_native": "Se quedó desconcertado con la noticia inesperada.", + "example_sentence_english": "He was bewildered by the unexpected news.", + "pos": "adjective", + "word_frequency": 17248 + }, + { + "word": "desmedido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excessive;immoderate", + "example_sentence_native": "Su ambición desmedida lo llevó a cometer errores.", + "example_sentence_english": "His excessive ambition led him to make mistakes.", + "pos": "adjective", + "word_frequency": 17249 + }, + { + "word": "desocupación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment", + "example_sentence_native": "La tasa de desocupación ha disminuido este año.", + "example_sentence_english": "The unemployment rate has decreased this year.", + "pos": "noun", + "word_frequency": 17250 + }, + { + "word": "despojo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plunder;spoils;dispossession", + "example_sentence_native": "Los despojos de la guerra fueron repartidos.", + "example_sentence_english": "The spoils of war were distributed.", + "pos": "noun", + "word_frequency": 17251 + }, + { + "word": "desproporcionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disproportionate", + "example_sentence_native": "El castigo fue desproporcionado al delito.", + "example_sentence_english": "The punishment was disproportionate to the crime.", + "pos": "adjective", + "word_frequency": 17252 + }, + { + "word": "detonante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triggering;detonating", + "example_sentence_native": "El estrés fue el factor detonante de su enfermedad.", + "example_sentence_english": "Stress was the triggering factor for his illness.", + "pos": "adjective", + "word_frequency": 17254 + }, + { + "word": "difamar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to defame;to slander", + "example_sentence_native": "No debes difamar a las personas sin pruebas.", + "example_sentence_english": "You shouldn't defame people without proof.", + "pos": "verb", + "word_frequency": 17256 + }, + { + "word": "diferido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deferred;delayed", + "example_sentence_native": "La transmisión del evento fue en diferido.", + "example_sentence_english": "The event's broadcast was delayed.", + "pos": "adjective", + "word_frequency": 17257 + }, + { + "word": "difuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diffuse;vague", + "example_sentence_native": "La luz era difusa y creaba un ambiente suave.", + "example_sentence_english": "The light was diffuse and created a soft atmosphere.", + "pos": "adjective", + "word_frequency": 17258 + }, + { + "word": "dilatado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilated;extensive;prolonged", + "example_sentence_native": "El proyecto requirió un dilatado período de investigación.", + "example_sentence_english": "The project required a prolonged period of research.", + "pos": "adjective", + "word_frequency": 17259 + }, + { + "word": "divorciado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divorced", + "example_sentence_native": "Mi tío es divorciado y vive solo.", + "example_sentence_english": "My uncle is divorced and lives alone.", + "pos": "adjective", + "word_frequency": 17260 + }, + { + "word": "efigie", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "effigy", + "example_sentence_native": "Quemaron una efigie del dictador en la protesta.", + "example_sentence_english": "They burned an effigy of the dictator in the protest.", + "pos": "noun", + "word_frequency": 17261 + }, + { + "word": "errar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to err;to wander;to miss", + "example_sentence_native": "Es humano errar, pero es divino perdonar.", + "example_sentence_english": "To err is human, to forgive divine.", + "pos": "verb", + "word_frequency": 17266 + }, + { + "word": "espejismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mirage", + "example_sentence_native": "Vio un espejismo en el desierto.", + "example_sentence_english": "He saw a mirage in the desert.", + "pos": "noun", + "word_frequency": 17268 + }, + { + "word": "espiritualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritually", + "example_sentence_native": "Se sentía espiritualmente conectado con la naturaleza.", + "example_sentence_english": "He felt spiritually connected to nature.", + "pos": "adverb", + "word_frequency": 17270 + }, + { + "word": "estaca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stake;post", + "example_sentence_native": "Clavó una estaca en el suelo para sujetar la tienda.", + "example_sentence_english": "He drove a stake into the ground to hold the tent.", + "pos": "noun", + "word_frequency": 17271 + }, + { + "word": "estampado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "print;pattern", + "example_sentence_native": "Me gusta el estampado floral de tu vestido.", + "example_sentence_english": "I like the floral print on your dress.", + "pos": "noun", + "word_frequency": 17272 + }, + { + "word": "etíope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ethiopian", + "example_sentence_native": "La cultura etíope es muy rica.", + "example_sentence_english": "Ethiopian culture is very rich.", + "pos": "adjective", + "word_frequency": 17273 + }, + { + "word": "excremento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excrement;feces", + "example_sentence_native": "Encontraron excremento de animal en el bosque.", + "example_sentence_english": "They found animal excrement in the forest.", + "pos": "noun", + "word_frequency": 17275 + }, + { + "word": "exhortar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exhort;to urge", + "example_sentence_native": "El líder exhortó a la gente a mantener la calma.", + "example_sentence_english": "The leader exhorted the people to remain calm.", + "pos": "verb", + "word_frequency": 17276 + }, + { + "word": "eximir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exempt;to excuse", + "example_sentence_native": "Fue eximido de pagar impuestos por su baja renta.", + "example_sentence_english": "He was exempted from paying taxes due to his low income.", + "pos": "verb", + "word_frequency": 17277 + }, + { + "word": "extensivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extensive;comprehensive", + "example_sentence_native": "Hizo un estudio extensivo sobre el tema.", + "example_sentence_english": "He conducted an extensive study on the topic.", + "pos": "adjective", + "word_frequency": 17278 + }, + { + "word": "filete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fillet;steak", + "example_sentence_native": "Quiero un filete bien cocido.", + "example_sentence_english": "I want a well-cooked steak.", + "pos": "noun", + "word_frequency": 17280 + }, + { + "word": "fontana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fountain (less common than 'fuente')", + "example_sentence_native": "La Fontana de Trevi es famosa en Roma.", + "example_sentence_english": "The Trevi Fountain is famous in Rome.", + "pos": "noun", + "word_frequency": 17282 + }, + { + "word": "formativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formative;educational", + "example_sentence_native": "Es un proceso formativo muy importante para los estudiantes.", + "example_sentence_english": "It's a very important formative process for students.", + "pos": "adjective", + "word_frequency": 17283 + }, + { + "word": "gastado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worn out;used up", + "example_sentence_native": "Mis zapatos están muy gastados.", + "example_sentence_english": "My shoes are very worn out.", + "pos": "adjective", + "word_frequency": 17286 + }, + { + "word": "ginecólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gynecologist", + "example_sentence_native": "Ella tiene una cita con el ginecólogo.", + "example_sentence_english": "She has an appointment with the gynecologist.", + "pos": "noun", + "word_frequency": 17287 + }, + { + "word": "hacinamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overcrowding;congestion", + "example_sentence_native": "El hacinamiento en las ciudades es un problema social.", + "example_sentence_english": "Overcrowding in cities is a social problem.", + "pos": "noun", + "word_frequency": 17289 + }, + { + "word": "halago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compliment;flattery", + "example_sentence_native": "Recibió muchos halagos por su trabajo.", + "example_sentence_english": "He received many compliments for his work.", + "pos": "noun", + "word_frequency": 17290 + }, + { + "word": "heno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hay", + "example_sentence_native": "El granjero recogió el heno del campo.", + "example_sentence_english": "The farmer collected the hay from the field.", + "pos": "noun", + "word_frequency": 17293 + }, + { + "word": "hilera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "row;line", + "example_sentence_native": "Los árboles estaban plantados en una hilera perfecta.", + "example_sentence_english": "The trees were planted in a perfect row.", + "pos": "noun", + "word_frequency": 17295 + }, + { + "word": "hinchazón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swelling", + "example_sentence_native": "La hinchazón en su tobillo disminuyó.", + "example_sentence_english": "The swelling in his ankle decreased.", + "pos": "noun", + "word_frequency": 17296 + }, + { + "word": "hipnosis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypnosis", + "example_sentence_native": "La hipnosis puede ser usada en terapia.", + "example_sentence_english": "Hypnosis can be used in therapy.", + "pos": "noun", + "word_frequency": 17297 + }, + { + "word": "historico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "historic;historical", + "example_sentence_native": "Es un momento histórico para el país.", + "example_sentence_english": "It's a historic moment for the country.", + "pos": "adjective", + "word_frequency": 17298 + }, + { + "word": "homeopatía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homeopathy", + "example_sentence_native": "La homeopatía es una medicina alternativa.", + "example_sentence_english": "Homeopathy is an alternative medicine.", + "pos": "noun", + "word_frequency": 17301 + }, + { + "word": "hostal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hostel;guesthouse", + "example_sentence_native": "Nos alojamos en un hostal barato.", + "example_sentence_english": "We stayed in a cheap hostel.", + "pos": "noun", + "word_frequency": 17302 + }, + { + "word": "icónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iconic", + "example_sentence_native": "La Torre Eiffel es un símbolo icónico de París.", + "example_sentence_english": "The Eiffel Tower is an iconic symbol of Paris.", + "pos": "adjective", + "word_frequency": 17305 + }, + { + "word": "implícitamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implicitly", + "example_sentence_native": "Su respuesta lo dijo implícitamente.", + "example_sentence_english": "His answer said it implicitly.", + "pos": "adverb", + "word_frequency": 17307 + }, + { + "word": "incalculable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incalculable;immeasurable", + "example_sentence_native": "El valor de la obra es incalculable.", + "example_sentence_english": "The value of the work is incalculable.", + "pos": "adjective", + "word_frequency": 17308 + }, + { + "word": "incontrolable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrollable", + "example_sentence_native": "La situación se volvió incontrolable.", + "example_sentence_english": "The situation became uncontrollable.", + "pos": "adjective", + "word_frequency": 17309 + }, + { + "word": "inculcar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instill;to inculcate", + "example_sentence_native": "Es importante inculcar valores a los niños.", + "example_sentence_english": "It's important to instill values in children.", + "pos": "verb", + "word_frequency": 17310 + }, + { + "word": "infringir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to infringe;to violate", + "example_sentence_native": "No debes infringir las reglas.", + "example_sentence_english": "You must not infringe the rules.", + "pos": "verb", + "word_frequency": 17311 + }, + { + "word": "ingerir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ingest;to swallow", + "example_sentence_native": "No ingerir este producto.", + "example_sentence_english": "Do not ingest this product.", + "pos": "verb", + "word_frequency": 17312 + }, + { + "word": "inmoralidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immorality", + "example_sentence_native": "La inmoralidad de sus acciones fue evidente.", + "example_sentence_english": "The immorality of his actions was evident.", + "pos": "noun", + "word_frequency": 17313 + }, + { + "word": "interventor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auditor;controller;supervisor", + "example_sentence_native": "El interventor revisó las cuentas de la empresa.", + "example_sentence_english": "The auditor reviewed the company's accounts.", + "pos": "noun", + "word_frequency": 17314 + }, + { + "word": "invalidez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invalidity;disability", + "example_sentence_native": "Recibe una pensión por invalidez.", + "example_sentence_english": "He receives a disability pension.", + "pos": "noun", + "word_frequency": 17315 + }, + { + "word": "irrumpir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to burst in;to break in", + "example_sentence_native": "La policía irrumpió en el edificio.", + "example_sentence_english": "The police burst into the building.", + "pos": "verb", + "word_frequency": 17316 + }, + { + "word": "jockey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jockey", + "example_sentence_native": "El jockey montó el caballo ganador.", + "example_sentence_english": "The jockey rode the winning horse.", + "pos": "noun", + "word_frequency": 17317 + }, + { + "word": "juntada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathering;get-together (informal;esp. Southern Cone)", + "example_sentence_native": "Hicimos una juntada con amigos el sábado.", + "example_sentence_english": "We had a get-together with friends on Saturday.", + "pos": "noun", + "word_frequency": 17318 + }, + { + "word": "levante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "east wind;Levant (eastern Spain)", + "example_sentence_native": "El levante es un viento cálido que sopla del este.", + "example_sentence_english": "The east wind is a warm wind that blows from the east.", + "pos": "noun", + "word_frequency": 17323 + }, + { + "word": "ligue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flirtation;hookup", + "example_sentence_native": "Tuvo un ligue en la fiesta anoche.", + "example_sentence_english": "He had a hookup at the party last night.", + "pos": "noun", + "word_frequency": 17324 + }, + { + "word": "látex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "latex", + "example_sentence_native": "Muchas personas son alérgicas al látex.", + "example_sentence_english": "Many people are allergic to latex.", + "pos": "noun", + "word_frequency": 17328 + }, + { + "word": "madrigal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "madrigal", + "example_sentence_native": "Cantaron un hermoso madrigal renacentista.", + "example_sentence_english": "They sang a beautiful Renaissance madrigal.", + "pos": "noun", + "word_frequency": 17329 + }, + { + "word": "mandarina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tangerine;mandarin", + "example_sentence_native": "Me encanta el sabor dulce de la mandarina.", + "example_sentence_english": "I love the sweet taste of tangerine.", + "pos": "noun", + "word_frequency": 17331 + }, + { + "word": "mantel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablecloth", + "example_sentence_native": "Puso un mantel limpio en la mesa.", + "example_sentence_english": "She put a clean tablecloth on the table.", + "pos": "noun", + "word_frequency": 17332 + }, + { + "word": "materialista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "materialistic", + "example_sentence_native": "No seas tan materialista, el dinero no lo es todo.", + "example_sentence_english": "Don't be so materialistic, money isn't everything.", + "pos": "adjective", + "word_frequency": 17335 + }, + { + "word": "monografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monograph", + "example_sentence_native": "Presentó una monografía sobre la historia del arte.", + "example_sentence_english": "He presented a monograph on art history.", + "pos": "noun", + "word_frequency": 17339 + }, + { + "word": "moratoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moratorium", + "example_sentence_native": "El gobierno declaró una moratoria en el pago de la deuda.", + "example_sentence_english": "The government declared a moratorium on debt payment.", + "pos": "noun", + "word_frequency": 17341 + }, + { + "word": "mus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mus (a Spanish card game)", + "example_sentence_native": "Pasamos la tarde jugando al mus con los amigos.", + "example_sentence_english": "We spent the afternoon playing mus with friends.", + "pos": "noun", + "word_frequency": 17342 + }, + { + "word": "musculoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscular", + "example_sentence_native": "El atleta era muy musculoso y fuerte.", + "example_sentence_english": "The athlete was very muscular and strong.", + "pos": "adjective", + "word_frequency": 17343 + }, + { + "word": "máxime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "especially;particularly", + "example_sentence_native": "Es importante estudiar, máxime si quieres aprobar el examen.", + "example_sentence_english": "It's important to study, especially if you want to pass the exam.", + "pos": "adverb", + "word_frequency": 17345 + }, + { + "word": "neonazi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neo-Nazi", + "example_sentence_native": "La policía investiga a un grupo neonazi.", + "example_sentence_english": "The police are investigating a neo-Nazi group.", + "pos": "noun", + "word_frequency": 17346 + }, + { + "word": "novecientos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nine hundred", + "example_sentence_native": "Compró novecientos libros para la biblioteca.", + "example_sentence_english": "He bought nine hundred books for the library.", + "pos": "adjective", + "word_frequency": 17349 + }, + { + "word": "oceanía", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Oceania", + "example_sentence_native": "Australia es el país más grande de Oceanía.", + "example_sentence_english": "Australia is the largest country in Oceania.", + "pos": "noun", + "word_frequency": 17351 + }, + { + "word": "ojera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dark circle (under eye)", + "example_sentence_native": "Tiene grandes ojeras por no dormir bien.", + "example_sentence_english": "She has big dark circles from not sleeping well.", + "pos": "noun", + "word_frequency": 17352 + }, + { + "word": "palestra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palestra;arena;forum (for debate)", + "example_sentence_native": "El debate se llevó a cabo en la palestra pública.", + "example_sentence_english": "The debate took place in the public arena.", + "pos": "noun", + "word_frequency": 17356 + }, + { + "word": "panal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honeycomb", + "example_sentence_native": "Las abejas construyen su panal para almacenar miel.", + "example_sentence_english": "Bees build their honeycomb to store honey.", + "pos": "noun", + "word_frequency": 17357 + }, + { + "word": "paramédico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paramedic", + "example_sentence_native": "El paramédico llegó rápidamente para atender al herido.", + "example_sentence_english": "The paramedic arrived quickly to attend to the injured person.", + "pos": "noun", + "word_frequency": 17358 + }, + { + "word": "paternal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paternal", + "example_sentence_native": "Mostró un amor paternal hacia el niño.", + "example_sentence_english": "He showed a paternal love towards the child.", + "pos": "adjective", + "word_frequency": 17361 + }, + { + "word": "peligrosidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dangerousness;hazard", + "example_sentence_native": "La peligrosidad de la zona es alta.", + "example_sentence_english": "The dangerousness of the area is high.", + "pos": "noun", + "word_frequency": 17365 + }, + { + "word": "perplejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perplexed;puzzled", + "example_sentence_native": "Se quedó perplejo ante la situación inesperada.", + "example_sentence_english": "He remained perplexed by the unexpected situation.", + "pos": "adjective", + "word_frequency": 17367 + }, + { + "word": "piropo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compliment (often flirtatious);catcall", + "example_sentence_native": "Le lanzó un piropo a la chica que pasaba.", + "example_sentence_english": "He gave a compliment to the girl passing by.", + "pos": "noun", + "word_frequency": 17368 + }, + { + "word": "plenario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plenary (session;meeting)", + "example_sentence_native": "El plenario votó a favor de la propuesta.", + "example_sentence_english": "The plenary voted in favor of the proposal.", + "pos": "noun", + "word_frequency": 17369 + }, + { + "word": "plácido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placid;calm;peaceful", + "example_sentence_native": "Disfrutamos de una tarde plácida en el campo.", + "example_sentence_english": "We enjoyed a placid afternoon in the countryside.", + "pos": "adjective", + "word_frequency": 17371 + }, + { + "word": "psique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psyche", + "example_sentence_native": "La psique humana es un campo de estudio complejo.", + "example_sentence_english": "The human psyche is a complex field of study.", + "pos": "noun", + "word_frequency": 17375 + }, + { + "word": "radiador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "radiator", + "example_sentence_native": "El radiador de la calefacción estaba caliente.", + "example_sentence_english": "The heating radiator was hot.", + "pos": "noun", + "word_frequency": 17379 + }, + { + "word": "recado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "message;errand", + "example_sentence_native": "Dejó un recado importante antes de salir.", + "example_sentence_english": "He left an important message before leaving.", + "pos": "noun", + "word_frequency": 17380 + }, + { + "word": "recortado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut;trimmed;reduced", + "example_sentence_native": "El césped estaba recién recortado.", + "example_sentence_english": "The lawn was freshly trimmed.", + "pos": "adjective", + "word_frequency": 17381 + }, + { + "word": "rediseño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redesign", + "example_sentence_native": "El rediseño del sitio web mejoró la experiencia del usuario.", + "example_sentence_english": "The website redesign improved the user experience.", + "pos": "noun", + "word_frequency": 17382 + }, + { + "word": "regalito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little gift;small present", + "example_sentence_native": "Le trajo un regalito de su viaje.", + "example_sentence_english": "He brought her a little gift from his trip.", + "pos": "noun", + "word_frequency": 17383 + }, + { + "word": "relegado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relegated;demoted;sidelined", + "example_sentence_native": "El proyecto fue relegado a un segundo plano.", + "example_sentence_english": "The project was relegated to the background.", + "pos": "adjective", + "word_frequency": 17384 + }, + { + "word": "reorganizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reorganize", + "example_sentence_native": "Es necesario reorganizar el departamento para ser más eficientes.", + "example_sentence_english": "It is necessary to reorganize the department to be more efficient.", + "pos": "verb", + "word_frequency": 17385 + }, + { + "word": "repensar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rethink", + "example_sentence_native": "Debemos repensar nuestra estrategia de marketing.", + "example_sentence_english": "We should rethink our marketing strategy.", + "pos": "verb", + "word_frequency": 17386 + }, + { + "word": "restrictivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restrictive", + "example_sentence_native": "Las nuevas leyes son demasiado restrictivas.", + "example_sentence_english": "The new laws are too restrictive.", + "pos": "adjective", + "word_frequency": 17387 + }, + { + "word": "resurgir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to re-emerge;to resurface;to rise again", + "example_sentence_native": "La ciudad logró resurgir de las cenizas.", + "example_sentence_english": "The city managed to re-emerge from the ashes.", + "pos": "verb", + "word_frequency": 17388 + }, + { + "word": "ropero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wardrobe;closet", + "example_sentence_native": "Guardó toda su ropa en el ropero.", + "example_sentence_english": "He put all his clothes in the wardrobe.", + "pos": "noun", + "word_frequency": 17391 + }, + { + "word": "sagitario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sagittarius", + "example_sentence_native": "Mi hermana es Sagitario, nació en diciembre.", + "example_sentence_english": "My sister is Sagittarius, she was born in December.", + "pos": "noun", + "word_frequency": 17397 + }, + { + "word": "savia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sap (of a plant);vitality", + "example_sentence_native": "La savia del árbol es esencial para su crecimiento.", + "example_sentence_english": "The tree's sap is essential for its growth.", + "pos": "noun", + "word_frequency": 17399 + }, + { + "word": "señorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stately", + "example_sentence_native": "El edificio tenía un aire señorial y antiguo.", + "example_sentence_english": "The building had a stately and ancient air.", + "pos": "adjective", + "word_frequency": 17401 + }, + { + "word": "sobrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leftover", + "example_sentence_native": "Guarda el sobrante de comida para mañana.", + "example_sentence_english": "Save the leftover food for tomorrow.", + "pos": "noun", + "word_frequency": 17404 + }, + { + "word": "sufragar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to defray", + "example_sentence_native": "La empresa decidió sufragar los gastos del viaje.", + "example_sentence_english": "The company decided to defray the travel expenses.", + "pos": "verb", + "word_frequency": 17405 + }, + { + "word": "televisora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "television station", + "example_sentence_native": "La televisora anunció un programa especial.", + "example_sentence_english": "The television station announced a special program.", + "pos": "noun", + "word_frequency": 17408 + }, + { + "word": "temerario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reckless", + "example_sentence_native": "Su decisión fue temeraria y peligrosa.", + "example_sentence_english": "His decision was reckless and dangerous.", + "pos": "adjective", + "word_frequency": 17409 + }, + { + "word": "vigía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lookout", + "example_sentence_native": "El vigía alertó sobre la presencia de un barco.", + "example_sentence_english": "The lookout warned about the presence of a ship.", + "pos": "noun", + "word_frequency": 17415 + }, + { + "word": "acertadamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accurately", + "example_sentence_native": "Respondió acertadamente a todas las preguntas.", + "example_sentence_english": "He answered all the questions accurately.", + "pos": "adverb", + "word_frequency": 17425 + }, + { + "word": "acuarela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watercolor", + "example_sentence_native": "Pintó un hermoso paisaje con acuarelas.", + "example_sentence_english": "He painted a beautiful landscape with watercolors.", + "pos": "noun", + "word_frequency": 17426 + }, + { + "word": "adentrar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to go deep into", + "example_sentence_native": "Se adentró en el bosque sin miedo.", + "example_sentence_english": "He went deep into the forest without fear.", + "pos": "verb", + "word_frequency": 17427 + }, + { + "word": "adoctrinamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indoctrination", + "example_sentence_native": "El adoctrinamiento político es peligroso.", + "example_sentence_english": "Political indoctrination is dangerous.", + "pos": "noun", + "word_frequency": 17428 + }, + { + "word": "aducir", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to adduce", + "example_sentence_native": "Adujo varias razones para su ausencia.", + "example_sentence_english": "He adduced several reasons for his absence.", + "pos": "verb", + "word_frequency": 17429 + }, + { + "word": "alado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "winged", + "example_sentence_native": "El caballo alado voló por el cielo.", + "example_sentence_english": "The winged horse flew through the sky.", + "pos": "adjective", + "word_frequency": 17430 + }, + { + "word": "almenos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at least", + "example_sentence_native": "Al menos inténtalo una vez más.", + "example_sentence_english": "At least try it one more time.", + "pos": "adverb", + "word_frequency": 17431 + }, + { + "word": "ambientación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atmosphere", + "example_sentence_native": "La ambientación de la película era perfecta.", + "example_sentence_english": "The setting of the movie was perfect.", + "pos": "noun", + "word_frequency": 17432 + }, + { + "word": "analógico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analog", + "example_sentence_native": "Prefiero los relojes analógicos a los digitales.", + "example_sentence_english": "I prefer analog watches to digital ones.", + "pos": "adjective", + "word_frequency": 17433 + }, + { + "word": "anhelar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to long for", + "example_sentence_native": "Anhelaba volver a su hogar.", + "example_sentence_english": "He longed to return home.", + "pos": "verb", + "word_frequency": 17435 + }, + { + "word": "antebrazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forearm", + "example_sentence_native": "Se golpeó el antebrazo al caer.", + "example_sentence_english": "He hit his forearm when he fell.", + "pos": "noun", + "word_frequency": 17436 + }, + { + "word": "archiduque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archduke", + "example_sentence_native": "El archiduque Francisco Fernando fue asesinado en Sarajevo.", + "example_sentence_english": "Archduke Franz Ferdinand was assassinated in Sarajevo.", + "pos": "noun", + "word_frequency": 17438 + }, + { + "word": "armazón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame", + "example_sentence_native": "El armazón del edificio ya está terminado.", + "example_sentence_english": "The building's frame is already finished.", + "pos": "noun", + "word_frequency": 17439 + }, + { + "word": "arrechera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anger;rage (Venezuelan slang)", + "example_sentence_native": "Sentía una arrechera inmensa por la injusticia.", + "example_sentence_english": "He felt immense rage because of the injustice.", + "pos": "noun", + "word_frequency": 17440 + }, + { + "word": "arroba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at sign (@);old unit of weight", + "example_sentence_native": "Mi correo electrónico es usuario arroba dominio punto com.", + "example_sentence_english": "My email is user at domain dot com.", + "pos": "noun", + "word_frequency": 17441 + }, + { + "word": "asador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rotisserie;grill;spit", + "example_sentence_native": "Compramos un pollo en el asador.", + "example_sentence_english": "We bought a chicken at the rotisserie.", + "pos": "noun", + "word_frequency": 17443 + }, + { + "word": "auspiciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsored;endorsed", + "example_sentence_native": "El evento fue auspiciado por una gran empresa.", + "example_sentence_english": "The event was sponsored by a large company.", + "pos": "adjective", + "word_frequency": 17444 + }, + { + "word": "basto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coarse;crude;rough", + "example_sentence_native": "Su lenguaje era muy basto y ofensivo.", + "example_sentence_english": "His language was very coarse and offensive.", + "pos": "adjective", + "word_frequency": 17449 + }, + { + "word": "batida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "milkshake;raid (police)", + "example_sentence_native": "Me tomé una batida de fresa.", + "example_sentence_english": "I had a strawberry milkshake.", + "pos": "noun", + "word_frequency": 17450 + }, + { + "word": "borrón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smudge;blot;blur", + "example_sentence_native": "Hice un borrón en el documento.", + "example_sentence_english": "I made a smudge on the document.", + "pos": "noun", + "word_frequency": 17458 + }, + { + "word": "bunker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bunker", + "example_sentence_native": "Se refugiaron en un búnker durante el ataque.", + "example_sentence_english": "They took refuge in a bunker during the attack.", + "pos": "noun", + "word_frequency": 17460 + }, + { + "word": "cadencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cadence;rhythm", + "example_sentence_native": "La cadencia de su voz era muy relajante.", + "example_sentence_english": "The cadence of her voice was very relaxing.", + "pos": "noun", + "word_frequency": 17461 + }, + { + "word": "camada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "litter (of animals);generation (figurative)", + "example_sentence_native": "La perra tuvo una camada de seis cachorros.", + "example_sentence_english": "The dog had a litter of six puppies.", + "pos": "noun", + "word_frequency": 17463 + }, + { + "word": "candente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glowing;red-hot;burning (issue)", + "example_sentence_native": "Es un tema candente en la política actual.", + "example_sentence_english": "It's a burning issue in current politics.", + "pos": "adjective", + "word_frequency": 17466 + }, + { + "word": "cariñosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affectionately;lovingly", + "example_sentence_native": "La saludó cariñosamente.", + "example_sentence_english": "He greeted her affectionately.", + "pos": "adverb", + "word_frequency": 17467 + }, + { + "word": "catarsis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catharsis", + "example_sentence_native": "Llorar fue una catarsis para ella.", + "example_sentence_english": "Crying was a catharsis for her.", + "pos": "noun", + "word_frequency": 17468 + }, + { + "word": "censor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censor", + "example_sentence_native": "El censor eliminó varias escenas de la película.", + "example_sentence_english": "The censor removed several scenes from the movie.", + "pos": "noun", + "word_frequency": 17469 + }, + { + "word": "centralización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centralization", + "example_sentence_native": "La centralización del poder puede ser peligrosa.", + "example_sentence_english": "The centralization of power can be dangerous.", + "pos": "noun", + "word_frequency": 17470 + }, + { + "word": "chabón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guy;dude (Argentine;Uruguayan slang)", + "example_sentence_native": "Ese chabón es muy divertido.", + "example_sentence_english": "That guy is very funny.", + "pos": "noun", + "word_frequency": 17471 + }, + { + "word": "chow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "show;performance;food (slang)", + "example_sentence_native": "El chow de esta noche es imperdible.", + "example_sentence_english": "Tonight's show is unmissable.", + "pos": "noun", + "word_frequency": 17473 + }, + { + "word": "civismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civic-mindedness;civility", + "example_sentence_native": "Es importante fomentar el civismo en la sociedad.", + "example_sentence_english": "It's important to foster civic-mindedness in society.", + "pos": "noun", + "word_frequency": 17474 + }, + { + "word": "cocer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cook;to boil;to bake", + "example_sentence_native": "Hay que cocer las patatas durante veinte minutos.", + "example_sentence_english": "You have to boil the potatoes for twenty minutes.", + "pos": "verb", + "word_frequency": 17477 + }, + { + "word": "coleccionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collect", + "example_sentence_native": "Me gusta coleccionar sellos antiguos.", + "example_sentence_english": "I like to collect old stamps.", + "pos": "verb", + "word_frequency": 17478 + }, + { + "word": "comensal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diner;guest (at a meal)", + "example_sentence_native": "Los comensales disfrutaron de la cena.", + "example_sentence_english": "The diners enjoyed the dinner.", + "pos": "noun", + "word_frequency": 17479 + }, + { + "word": "comentado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commented;discussed", + "example_sentence_native": "El tema fue muy comentado en la reunión.", + "example_sentence_english": "The topic was much discussed at the meeting.", + "pos": "adjective", + "word_frequency": 17480 + }, + { + "word": "compresor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressor", + "example_sentence_native": "El compresor del aire acondicionado está averiado.", + "example_sentence_english": "The air conditioner's compressor is broken.", + "pos": "noun", + "word_frequency": 17481 + }, + { + "word": "comprobado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proven;checked;verified", + "example_sentence_native": "La información ha sido comprobada y es correcta.", + "example_sentence_english": "The information has been checked and is correct.", + "pos": "adjective", + "word_frequency": 17482 + }, + { + "word": "confeccionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make;to prepare;to draw up", + "example_sentence_native": "Necesitamos confeccionar un nuevo plan de trabajo.", + "example_sentence_english": "We need to draw up a new work plan.", + "pos": "verb", + "word_frequency": 17483 + }, + { + "word": "cornudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cuckold", + "example_sentence_native": "En la obra de teatro, el personaje principal era un cornudo.", + "example_sentence_english": "In the play, the main character was a cuckold.", + "pos": "noun", + "word_frequency": 17484 + }, + { + "word": "cotejo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comparison;collation", + "example_sentence_native": "Se realizó un cotejo de las firmas para verificar su autenticidad.", + "example_sentence_english": "A comparison of the signatures was carried out to verify their authenticity.", + "pos": "noun", + "word_frequency": 17485 + }, + { + "word": "defraudado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defrauded;disappointed", + "example_sentence_native": "Se sintió defraudado por la respuesta.", + "example_sentence_english": "He felt disappointed by the answer.", + "pos": "adjective", + "word_frequency": 17491 + }, + { + "word": "denegación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denial;refusal", + "example_sentence_native": "La denegación de la solicitud fue inesperada.", + "example_sentence_english": "The denial of the request was unexpected.", + "pos": "noun", + "word_frequency": 17492 + }, + { + "word": "desabastecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shortage;scarcity;lack of supply", + "example_sentence_native": "El país sufre un grave desabastecimiento de alimentos.", + "example_sentence_english": "The country is suffering from a severe food shortage.", + "pos": "noun", + "word_frequency": 17493 + }, + { + "word": "desaceleración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deceleration;slowdown", + "example_sentence_native": "La economía muestra signos de desaceleración.", + "example_sentence_english": "The economy shows signs of deceleration.", + "pos": "noun", + "word_frequency": 17494 + }, + { + "word": "descuidado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "careless;neglected;untidy", + "example_sentence_native": "Su aspecto era descuidado después de tantos días de viaje.", + "example_sentence_english": "His appearance was untidy after so many days of travel.", + "pos": "adjective", + "word_frequency": 17495 + }, + { + "word": "desesperante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frustrating;desperate (causing desperation)", + "example_sentence_native": "La situación se volvió desesperante.", + "example_sentence_english": "The situation became desperate.", + "pos": "adjective", + "word_frequency": 17496 + }, + { + "word": "desvelar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reveal;to uncover;to keep awake", + "example_sentence_native": "La investigación logró desvelar la verdad.", + "example_sentence_english": "The investigation managed to reveal the truth.", + "pos": "verb", + "word_frequency": 17497 + }, + { + "word": "dilatación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilation;expansion", + "example_sentence_native": "La dilatación de las pupilas es un síntoma.", + "example_sentence_english": "Pupil dilation is a symptom.", + "pos": "noun", + "word_frequency": 17498 + }, + { + "word": "disertación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissertation;discourse", + "example_sentence_native": "Presentó una disertación sobre la historia del arte.", + "example_sentence_english": "He presented a dissertation on art history.", + "pos": "noun", + "word_frequency": 17499 + }, + { + "word": "disgustado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upset;displeased", + "example_sentence_native": "Estaba muy disgustado con la noticia.", + "example_sentence_english": "He was very upset with the news.", + "pos": "adjective", + "word_frequency": 17500 + }, + { + "word": "ecografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultrasound;sonogram", + "example_sentence_native": "La ecografía confirmó el embarazo.", + "example_sentence_english": "The ultrasound confirmed the pregnancy.", + "pos": "noun", + "word_frequency": 17503 + }, + { + "word": "empresariado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "business community;entrepreneurs", + "example_sentence_native": "El empresariado local se reunió con las autoridades.", + "example_sentence_english": "The local business community met with the authorities.", + "pos": "noun", + "word_frequency": 17505 + }, + { + "word": "encarnado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incarnate;deep red;flesh-colored", + "example_sentence_native": "El diablo encarnado apareció en la historia.", + "example_sentence_english": "The incarnate devil appeared in the story.", + "pos": "adjective", + "word_frequency": 17506 + }, + { + "word": "escalafón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rank;scale;seniority list", + "example_sentence_native": "Ascendió en el escalafón militar.", + "example_sentence_english": "He rose through the military ranks.", + "pos": "noun", + "word_frequency": 17507 + }, + { + "word": "espantar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scare away;to frighten", + "example_sentence_native": "El ruido espantó a los pájaros.", + "example_sentence_english": "The noise scared away the birds.", + "pos": "verb", + "word_frequency": 17508 + }, + { + "word": "espontaneidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spontaneity", + "example_sentence_native": "Me encanta su espontaneidad.", + "example_sentence_english": "I love her spontaneity.", + "pos": "noun", + "word_frequency": 17509 + }, + { + "word": "flexión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flexion;bending;inflection", + "example_sentence_native": "Hizo una flexión de rodillas.", + "example_sentence_english": "He did a knee bend.", + "pos": "noun", + "word_frequency": 17512 + }, + { + "word": "florecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flourishing;blooming;blossoming", + "example_sentence_native": "La ciudad experimentó un florecimiento cultural.", + "example_sentence_english": "The city experienced a cultural flourishing.", + "pos": "noun", + "word_frequency": 17513 + }, + { + "word": "floresta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forest;woodland", + "example_sentence_native": "Se perdieron en la densa floresta.", + "example_sentence_english": "They got lost in the dense forest.", + "pos": "noun", + "word_frequency": 17514 + }, + { + "word": "freír", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fry", + "example_sentence_native": "Voy a freír unas patatas para la cena.", + "example_sentence_english": "I'm going to fry some potatoes for dinner.", + "pos": "verb", + "word_frequency": 17518 + }, + { + "word": "gaseoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaseous", + "example_sentence_native": "El estado gaseoso del agua es vapor.", + "example_sentence_english": "The gaseous state of water is vapor.", + "pos": "adjective", + "word_frequency": 17520 + }, + { + "word": "geométrico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geometric", + "example_sentence_native": "Le gustan los diseños geométricos.", + "example_sentence_english": "He likes geometric designs.", + "pos": "adjective", + "word_frequency": 17523 + }, + { + "word": "guagua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bus (Caribbean;Canary Islands);baby (Chile)", + "example_sentence_native": "Tomamos la guagua para ir al centro.", + "example_sentence_english": "We took the bus to go downtown.", + "pos": "noun", + "word_frequency": 17526 + }, + { + "word": "guillotina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guillotine", + "example_sentence_native": "La guillotina fue un instrumento de ejecución.", + "example_sentence_english": "The guillotine was an instrument of execution.", + "pos": "noun", + "word_frequency": 17527 + }, + { + "word": "hato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bundle;herd;ranch (regional)", + "example_sentence_native": "Llevaba un hato de ropa vieja.", + "example_sentence_english": "He was carrying a bundle of old clothes.", + "pos": "noun", + "word_frequency": 17529 + }, + { + "word": "hedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stench;reek", + "example_sentence_native": "Había un hedor insoportable en la habitación.", + "example_sentence_english": "There was an unbearable stench in the room.", + "pos": "noun", + "word_frequency": 17532 + }, + { + "word": "holding", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holding (company)", + "example_sentence_native": "Crearon una holding para gestionar sus inversiones.", + "example_sentence_english": "They created a holding company to manage their investments.", + "pos": "noun", + "word_frequency": 17537 + }, + { + "word": "homofóbico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homophobic", + "example_sentence_native": "Es importante combatir el comportamiento homofóbico.", + "example_sentence_english": "It is important to combat homophobic behavior.", + "pos": "adjective", + "word_frequency": 17538 + }, + { + "word": "incitación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incitement", + "example_sentence_native": "Fue acusado de incitación a la violencia.", + "example_sentence_english": "He was accused of incitement to violence.", + "pos": "noun", + "word_frequency": 17541 + }, + { + "word": "individualista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individualistic", + "example_sentence_native": "Su enfoque es muy individualista.", + "example_sentence_english": "His approach is very individualistic.", + "pos": "adjective", + "word_frequency": 17542 + }, + { + "word": "inhibidor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhibitor", + "example_sentence_native": "El medicamento actúa como un inhibidor.", + "example_sentence_english": "The medicine acts as an inhibitor.", + "pos": "noun", + "word_frequency": 17545 + }, + { + "word": "inmaterial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immaterial", + "example_sentence_native": "La belleza es algo inmaterial.", + "example_sentence_english": "Beauty is something immaterial.", + "pos": "adjective", + "word_frequency": 17546 + }, + { + "word": "inoxidable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stainless", + "example_sentence_native": "Compramos una olla de acero inoxidable.", + "example_sentence_english": "We bought a stainless steel pot.", + "pos": "adjective", + "word_frequency": 17547 + }, + { + "word": "investido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invested;vested", + "example_sentence_native": "El presidente fue investido de sus poderes.", + "example_sentence_english": "The president was vested with his powers.", + "pos": "adjective", + "word_frequency": 17548 + }, + { + "word": "irrespetuoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disrespectful", + "example_sentence_native": "Su comentario fue muy irrespetuoso.", + "example_sentence_english": "His comment was very disrespectful.", + "pos": "adjective", + "word_frequency": 17549 + }, + { + "word": "locacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "location", + "example_sentence_native": "La locación de la reunión es secreta.", + "example_sentence_english": "The location of the meeting is secret.", + "pos": "noun", + "word_frequency": 17560 + }, + { + "word": "madrazo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "big hit", + "example_sentence_native": "Se dio un madrazo contra la pared.", + "example_sentence_english": "He hit himself hard against the wall.", + "pos": "noun", + "word_frequency": 17562 + }, + { + "word": "magnetismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnetism", + "example_sentence_native": "El magnetismo es una fuerza fundamental de la naturaleza.", + "example_sentence_english": "Magnetism is a fundamental force of nature.", + "pos": "noun", + "word_frequency": 17563 + }, + { + "word": "mecenas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patron", + "example_sentence_native": "Los mecenas apoyan a los artistas jóvenes.", + "example_sentence_english": "Patrons support young artists.", + "pos": "noun", + "word_frequency": 17566 + }, + { + "word": "medium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medium", + "example_sentence_native": "La médium afirmó comunicarse con los espíritus.", + "example_sentence_english": "The medium claimed to communicate with spirits.", + "pos": "noun", + "word_frequency": 17567 + }, + { + "word": "migraña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "migraine", + "example_sentence_native": "Sufro de migrañas muy fuertes.", + "example_sentence_english": "I suffer from very severe migraines.", + "pos": "noun", + "word_frequency": 17568 + }, + { + "word": "misoginia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misogyny", + "example_sentence_native": "La misoginia es un problema social grave.", + "example_sentence_english": "Misogyny is a serious social problem.", + "pos": "noun", + "word_frequency": 17569 + }, + { + "word": "morfina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morphine", + "example_sentence_native": "Le administraron morfina para el dolor.", + "example_sentence_english": "They administered morphine for the pain.", + "pos": "noun", + "word_frequency": 17571 + }, + { + "word": "motociclista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorcyclist", + "example_sentence_native": "El motociclista llevaba un casco de seguridad.", + "example_sentence_english": "The motorcyclist was wearing a safety helmet.", + "pos": "noun", + "word_frequency": 17573 + }, + { + "word": "motorizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motorized", + "example_sentence_native": "Necesitamos un vehículo motorizado para el transporte.", + "example_sentence_english": "We need a motorized vehicle for transport.", + "pos": "adjective", + "word_frequency": 17574 + }, + { + "word": "multijugador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiplayer", + "example_sentence_native": "Este juego tiene un modo multijugador muy divertido.", + "example_sentence_english": "This game has a very fun multiplayer mode.", + "pos": "adjective", + "word_frequency": 17576 + }, + { + "word": "mágicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magically", + "example_sentence_native": "El mago hizo desaparecer la moneda mágicamente.", + "example_sentence_english": "The magician made the coin disappear magically.", + "pos": "adverb", + "word_frequency": 17578 + }, + { + "word": "nabo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turnip", + "example_sentence_native": "Añade un nabo a la sopa para darle sabor.", + "example_sentence_english": "Add a turnip to the soup for flavor.", + "pos": "noun", + "word_frequency": 17579 + }, + { + "word": "narcisista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcissistic", + "example_sentence_native": "Su actitud narcisista le impide ver sus errores.", + "example_sentence_english": "His narcissistic attitude prevents him from seeing his mistakes.", + "pos": "adjective", + "word_frequency": 17580 + }, + { + "word": "neuronal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neuronal", + "example_sentence_native": "La actividad neuronal es clave para el pensamiento.", + "example_sentence_english": "Neuronal activity is key to thought.", + "pos": "adjective", + "word_frequency": 17581 + }, + { + "word": "neón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neon", + "example_sentence_native": "El letrero de neón brillaba en la oscuridad.", + "example_sentence_english": "The neon sign glowed in the dark.", + "pos": "noun", + "word_frequency": 17582 + }, + { + "word": "nevar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to snow", + "example_sentence_native": "Va a nevar mucho esta noche.", + "example_sentence_english": "It's going to snow a lot tonight.", + "pos": "verb", + "word_frequency": 17583 + }, + { + "word": "official", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official", + "example_sentence_native": "La decisión oficial se anunciará mañana.", + "example_sentence_english": "The official decision will be announced tomorrow.", + "pos": "adjective", + "word_frequency": 17587 + }, + { + "word": "omnipresente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipresent", + "example_sentence_native": "La tecnología es omnipresente en nuestras vidas.", + "example_sentence_english": "Technology is omnipresent in our lives.", + "pos": "adjective", + "word_frequency": 17589 + }, + { + "word": "onza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ounce", + "example_sentence_native": "Pesa una onza de oro.", + "example_sentence_english": "It weighs one ounce of gold.", + "pos": "noun", + "word_frequency": 17590 + }, + { + "word": "originariamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "originally", + "example_sentence_native": "La casa fue originariamente construida en el siglo XVIII.", + "example_sentence_english": "The house was originally built in the 18th century.", + "pos": "adverb", + "word_frequency": 17592 + }, + { + "word": "paracaidista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parachutist", + "example_sentence_native": "El paracaidista aterrizó suavemente en el campo.", + "example_sentence_english": "The parachutist landed softly in the field.", + "pos": "noun", + "word_frequency": 17595 + }, + { + "word": "patinar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to skate", + "example_sentence_native": "Me gusta patinar sobre hielo en invierno.", + "example_sentence_english": "I like to ice skate in winter.", + "pos": "verb", + "word_frequency": 17596 + }, + { + "word": "penalmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminally", + "example_sentence_native": "Será procesado penalmente por sus acciones.", + "example_sentence_english": "He will be criminally prosecuted for his actions.", + "pos": "adverb", + "word_frequency": 17599 + }, + { + "word": "penitenciaría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penitentiary", + "example_sentence_native": "La antigua penitenciaría fue convertida en un museo.", + "example_sentence_english": "The old penitentiary was converted into a museum.", + "pos": "noun", + "word_frequency": 17600 + }, + { + "word": "perturbado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbed", + "example_sentence_native": "Su mente estaba perturbada por los eventos recientes.", + "example_sentence_english": "His mind was disturbed by the recent events.", + "pos": "adjective", + "word_frequency": 17601 + }, + { + "word": "plastico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plastic", + "example_sentence_native": "Necesitamos reducir el uso de plástico.", + "example_sentence_english": "We need to reduce the use of plastic.", + "pos": "noun", + "word_frequency": 17604 + }, + { + "word": "positivismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "positivism", + "example_sentence_native": "El positivismo influyó mucho en el pensamiento del siglo XIX.", + "example_sentence_english": "Positivism greatly influenced 19th-century thought.", + "pos": "noun", + "word_frequency": 17606 + }, + { + "word": "poza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puddle", + "example_sentence_native": "Después de la lluvia, se formó una poza grande en el camino.", + "example_sentence_english": "After the rain, a large puddle formed on the road.", + "pos": "noun", + "word_frequency": 17607 + }, + { + "word": "premeditado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premeditated", + "example_sentence_native": "Fue un crimen premeditado, no un accidente.", + "example_sentence_english": "It was a premeditated crime, not an accident.", + "pos": "adjective", + "word_frequency": 17609 + }, + { + "word": "prestamista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moneylender", + "example_sentence_native": "Acudió a un prestamista para conseguir el dinero.", + "example_sentence_english": "He went to a moneylender to get the money.", + "pos": "noun", + "word_frequency": 17610 + }, + { + "word": "proselitismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proselytism", + "example_sentence_native": "La ley prohíbe el proselitismo político en las escuelas.", + "example_sentence_english": "The law prohibits political proselytism in schools.", + "pos": "noun", + "word_frequency": 17611 + }, + { + "word": "pulsacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulsation;keystroke", + "example_sentence_native": "Cada pulsación del teclado produce un sonido.", + "example_sentence_english": "Each keystroke produces a sound.", + "pos": "noun", + "word_frequency": 17612 + }, + { + "word": "quinta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "country house", + "example_sentence_native": "Pasamos el verano en una quinta en el campo.", + "example_sentence_english": "We spent the summer in a country house in the countryside.", + "pos": "noun", + "word_frequency": 17613 + }, + { + "word": "quiosco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiosk", + "example_sentence_native": "Compré el periódico en el quiosco de la esquina.", + "example_sentence_english": "I bought the newspaper at the corner kiosk.", + "pos": "noun", + "word_frequency": 17614 + }, + { + "word": "reanudación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resumption", + "example_sentence_native": "Se espera la reanudación de las negociaciones pronto.", + "example_sentence_english": "The resumption of negotiations is expected soon.", + "pos": "noun", + "word_frequency": 17615 + }, + { + "word": "rebelar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rebel", + "example_sentence_native": "Los ciudadanos decidieron rebelarse contra el gobierno.", + "example_sentence_english": "The citizens decided to rebel against the government.", + "pos": "verb", + "word_frequency": 17616 + }, + { + "word": "reclutado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruited", + "example_sentence_native": "El nuevo soldado fue reclutado el mes pasado.", + "example_sentence_english": "The new soldier was recruited last month.", + "pos": "adjective", + "word_frequency": 17617 + }, + { + "word": "recompensado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rewarded", + "example_sentence_native": "Su esfuerzo fue recompensado con un ascenso.", + "example_sentence_english": "His effort was rewarded with a promotion.", + "pos": "adjective", + "word_frequency": 17618 + }, + { + "word": "regocijo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joy;rejoicing", + "example_sentence_native": "La noticia de su victoria causó gran regocijo.", + "example_sentence_english": "The news of their victory caused great rejoicing.", + "pos": "noun", + "word_frequency": 17619 + }, + { + "word": "regularizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regularize", + "example_sentence_native": "Es necesario regularizar la situación de los inmigrantes.", + "example_sentence_english": "It is necessary to regularize the situation of immigrants.", + "pos": "verb", + "word_frequency": 17620 + }, + { + "word": "remarcar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emphasize", + "example_sentence_native": "Quiero remarcar la importancia de este punto.", + "example_sentence_english": "I want to emphasize the importance of this point.", + "pos": "verb", + "word_frequency": 17622 + }, + { + "word": "remunerado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remunerated;paid", + "example_sentence_native": "Es un trabajo bien remunerado.", + "example_sentence_english": "It is a well-paid job.", + "pos": "adjective", + "word_frequency": 17623 + }, + { + "word": "rifa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raffle", + "example_sentence_native": "Ganó un coche en la rifa de la iglesia.", + "example_sentence_english": "He won a car in the church raffle.", + "pos": "noun", + "word_frequency": 17624 + }, + { + "word": "romería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrimage;religious procession", + "example_sentence_native": "Cada año, miles de personas participan en la romería.", + "example_sentence_english": "Every year, thousands of people participate in the pilgrimage.", + "pos": "noun", + "word_frequency": 17625 + }, + { + "word": "sinnúmero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "countless number;myriad", + "example_sentence_native": "Hay un sinnúmero de estrellas en el cielo.", + "example_sentence_english": "There are a countless number of stars in the sky.", + "pos": "noun", + "word_frequency": 17628 + }, + { + "word": "solemnidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemnity", + "example_sentence_native": "La ceremonia se llevó a cabo con gran solemnidad.", + "example_sentence_english": "The ceremony was carried out with great solemnity.", + "pos": "noun", + "word_frequency": 17629 + }, + { + "word": "sufijo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffix", + "example_sentence_native": "La palabra \"felicidad\" tiene el sufijo \"-dad\".", + "example_sentence_english": "The word \"happiness\" has the suffix \"-ness\".", + "pos": "noun", + "word_frequency": 17635 + }, + { + "word": "sínodo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synod", + "example_sentence_native": "El sínodo se reunirá para discutir temas importantes.", + "example_sentence_english": "The synod will meet to discuss important issues.", + "pos": "noun", + "word_frequency": 17636 + }, + { + "word": "taba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knucklebone (game)", + "example_sentence_native": "Los niños jugaban a la taba en el patio.", + "example_sentence_english": "The children played knucklebones in the yard.", + "pos": "noun", + "word_frequency": 17637 + }, + { + "word": "talante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mood;disposition", + "example_sentence_native": "Su talante optimista siempre ayuda en situaciones difíciles.", + "example_sentence_english": "His optimistic disposition always helps in difficult situations.", + "pos": "noun", + "word_frequency": 17638 + }, + { + "word": "tangente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangent", + "example_sentence_native": "La conversación tomó una tangente inesperada.", + "example_sentence_english": "The conversation took an unexpected tangent.", + "pos": "noun", + "word_frequency": 17639 + }, + { + "word": "tentar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tempt;to try", + "example_sentence_native": "No me tientes con ese pastel de chocolate.", + "example_sentence_english": "Don't tempt me with that chocolate cake.", + "pos": "verb", + "word_frequency": 17640 + }, + { + "word": "tutoría", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutoring;tutorial;mentorship", + "example_sentence_native": "Necesito una tutoría para entender este tema.", + "example_sentence_english": "I need a tutorial to understand this topic.", + "pos": "noun", + "word_frequency": 17643 + }, + { + "word": "umbilical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "umbilical", + "example_sentence_native": "El cordón umbilical conecta al bebé con la madre.", + "example_sentence_english": "The umbilical cord connects the baby to the mother.", + "pos": "adjective", + "word_frequency": 17644 + }, + { + "word": "vanguardista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "avant-garde;pioneering", + "example_sentence_native": "Es un artista muy vanguardista.", + "example_sentence_english": "He is a very avant-garde artist.", + "pos": "adjective", + "word_frequency": 17646 + }, + { + "word": "varilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rod;stick;bar", + "example_sentence_native": "La varilla de metal se dobló.", + "example_sentence_english": "The metal rod bent.", + "pos": "noun", + "word_frequency": 17647 + }, + { + "word": "veintiocho", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-eight", + "example_sentence_native": "Tengo veintiocho años.", + "example_sentence_english": "I am twenty-eight years old.", + "pos": "noun", + "word_frequency": 17649 + }, + { + "word": "veintisiete", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-seven", + "example_sentence_native": "El número de la casa es veintisiete.", + "example_sentence_english": "The house number is twenty-seven.", + "pos": "noun", + "word_frequency": 17650 + }, + { + "word": "viveza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liveliness;quick-wittedness;sharpness", + "example_sentence_native": "Su viveza mental le ayudó a resolver el problema.", + "example_sentence_english": "His mental quick-wittedness helped him solve the problem.", + "pos": "noun", + "word_frequency": 17652 + }, + { + "word": "álamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poplar tree", + "example_sentence_native": "El álamo es un árbol alto.", + "example_sentence_english": "The poplar is a tall tree.", + "pos": "noun", + "word_frequency": 17658 + }, + { + "word": "abrumado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelmed;swamped", + "example_sentence_native": "Me siento abrumado por tanto trabajo.", + "example_sentence_english": "I feel overwhelmed by so much work.", + "pos": "adjective", + "word_frequency": 17659 + }, + { + "word": "acallar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to silence;to quiet;to quell", + "example_sentence_native": "Intentó acallar los rumores.", + "example_sentence_english": "He tried to silence the rumors.", + "pos": "verb", + "word_frequency": 17660 + }, + { + "word": "acentuar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accentuate;to emphasize", + "example_sentence_native": "Es importante acentuar las vocales en español.", + "example_sentence_english": "It's important to accentuate the vowels in Spanish.", + "pos": "verb", + "word_frequency": 17661 + }, + { + "word": "acondicionamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conditioning;preparation", + "example_sentence_native": "El acondicionamiento físico es clave para los atletas.", + "example_sentence_english": "Physical conditioning is key for athletes.", + "pos": "noun", + "word_frequency": 17662 + }, + { + "word": "admisible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admissible;acceptable", + "example_sentence_native": "Su propuesta es admisible.", + "example_sentence_english": "His proposal is admissible.", + "pos": "adjective", + "word_frequency": 17664 + }, + { + "word": "aflicción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affliction;grief;sorrow", + "example_sentence_native": "Sentía una profunda aflicción por la pérdida.", + "example_sentence_english": "He felt deep affliction for the loss.", + "pos": "noun", + "word_frequency": 17666 + }, + { + "word": "afrenta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affront;insult;outrage", + "example_sentence_native": "Consideró sus palabras como una afrenta personal.", + "example_sentence_english": "He considered her words a personal affront.", + "pos": "noun", + "word_frequency": 17667 + }, + { + "word": "agridulce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bittersweet", + "example_sentence_native": "La victoria tuvo un sabor agridulce.", + "example_sentence_english": "The victory had a bittersweet taste.", + "pos": "adjective", + "word_frequency": 17669 + }, + { + "word": "alentador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encouraging;hopeful", + "example_sentence_native": "Las noticias son muy alentadoras.", + "example_sentence_english": "The news is very encouraging.", + "pos": "adjective", + "word_frequency": 17672 + }, + { + "word": "anglosajón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Anglo-Saxon", + "example_sentence_native": "La cultura anglosajona es muy influyente.", + "example_sentence_english": "Anglo-Saxon culture is very influential.", + "pos": "adjective", + "word_frequency": 17675 + }, + { + "word": "aniquilación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annihilation", + "example_sentence_native": "La aniquilación de la plaga fue un éxito.", + "example_sentence_english": "The annihilation of the plague was a success.", + "pos": "noun", + "word_frequency": 17676 + }, + { + "word": "aplazar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to postpone;to defer", + "example_sentence_native": "Tuvimos que aplazar la reunión.", + "example_sentence_english": "We had to postpone the meeting.", + "pos": "verb", + "word_frequency": 17678 + }, + { + "word": "astronómico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomical", + "example_sentence_native": "El telescopio nos permite ver objetos astronómicos.", + "example_sentence_english": "The telescope allows us to see astronomical objects.", + "pos": "adjective", + "word_frequency": 17681 + }, + { + "word": "auditivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auditory", + "example_sentence_native": "Tiene una excelente memoria auditiva.", + "example_sentence_english": "He has an excellent auditory memory.", + "pos": "adjective", + "word_frequency": 17683 + }, + { + "word": "austriaco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Austrian", + "example_sentence_native": "El artista austriaco es muy famoso.", + "example_sentence_english": "The Austrian artist is very famous.", + "pos": "adjective", + "word_frequency": 17684 + }, + { + "word": "autentico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authentic", + "example_sentence_native": "Esta es una pieza de arte auténtica.", + "example_sentence_english": "This is an authentic piece of art.", + "pos": "adjective", + "word_frequency": 17685 + }, + { + "word": "baranda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railing;banister", + "example_sentence_native": "Agárrate a la baranda al subir las escaleras.", + "example_sentence_english": "Hold onto the railing when going up the stairs.", + "pos": "noun", + "word_frequency": 17688 + }, + { + "word": "batuta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baton (for conducting)", + "example_sentence_native": "El director de orquesta levantó su batuta.", + "example_sentence_english": "The orchestra conductor raised his baton.", + "pos": "noun", + "word_frequency": 17689 + }, + { + "word": "bazo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spleen", + "example_sentence_native": "El bazo es un órgano importante del sistema linfático.", + "example_sentence_english": "The spleen is an important organ of the lymphatic system.", + "pos": "noun", + "word_frequency": 17690 + }, + { + "word": "bejarano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Béjar", + "example_sentence_native": "El queso bejarano es muy apreciado en la región.", + "example_sentence_english": "The Bejarano cheese is highly valued in the region.", + "pos": "adjective", + "word_frequency": 17693 + }, + { + "word": "biográfico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biographical", + "example_sentence_native": "Leí una novela biográfica sobre su vida.", + "example_sentence_english": "I read a biographical novel about his life.", + "pos": "adjective", + "word_frequency": 17695 + }, + { + "word": "broadcasting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "broadcasting", + "example_sentence_native": "La empresa se especializa en broadcasting de eventos deportivos.", + "example_sentence_english": "The company specializes in broadcasting of sports events.", + "pos": "noun", + "word_frequency": 17698 + }, + { + "word": "broker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broker", + "example_sentence_native": "Necesito hablar con mi broker de bolsa.", + "example_sentence_english": "I need to talk to my stock broker.", + "pos": "noun", + "word_frequency": 17699 + }, + { + "word": "bálsamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balm", + "example_sentence_native": "Este bálsamo labial hidrata mucho.", + "example_sentence_english": "This lip balm is very moisturizing.", + "pos": "noun", + "word_frequency": 17701 + }, + { + "word": "cabezazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headbutt;header (in soccer)", + "example_sentence_native": "Marcó un gol de cabezazo.", + "example_sentence_english": "He scored a goal with a header.", + "pos": "noun", + "word_frequency": 17702 + }, + { + "word": "camarógrafo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cameraman;cinematographer", + "example_sentence_native": "El camarógrafo grabó toda la escena.", + "example_sentence_english": "The cameraman filmed the entire scene.", + "pos": "noun", + "word_frequency": 17704 + }, + { + "word": "capote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cape;cloak (especially bullfighter's cape)", + "example_sentence_native": "El torero usó el capote con gran habilidad.", + "example_sentence_english": "The bullfighter used the cape with great skill.", + "pos": "noun", + "word_frequency": 17705 + }, + { + "word": "caradura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cheeky person;audacious person;scoundrel", + "example_sentence_native": "Es un caradura, siempre intenta salirse con la suya.", + "example_sentence_english": "He's a cheeky person, always trying to get his way.", + "pos": "noun", + "word_frequency": 17706 + }, + { + "word": "carbonato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carbonate", + "example_sentence_native": "El carbonato de calcio es un compuesto común.", + "example_sentence_english": "Calcium carbonate is a common compound.", + "pos": "noun", + "word_frequency": 17707 + }, + { + "word": "carey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tortoiseshell;hawksbill turtle", + "example_sentence_native": "Las gafas de carey son muy elegantes.", + "example_sentence_english": "Tortoiseshell glasses are very elegant.", + "pos": "noun", + "word_frequency": 17708 + }, + { + "word": "carmelita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Carmelite (nun;friar);reddish-brown (color)", + "example_sentence_native": "La monja carmelita vivía en el convento.", + "example_sentence_english": "The Carmelite nun lived in the convent.", + "pos": "noun", + "word_frequency": 17709 + }, + { + "word": "ceiba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceiba tree;kapok tree", + "example_sentence_native": "La ceiba es un árbol sagrado en algunas culturas.", + "example_sentence_english": "The ceiba tree is a sacred tree in some cultures.", + "pos": "noun", + "word_frequency": 17712 + }, + { + "word": "celulitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cellulite", + "example_sentence_native": "Muchas personas buscan tratamientos para la celulitis.", + "example_sentence_english": "Many people look for cellulite treatments.", + "pos": "noun", + "word_frequency": 17713 + }, + { + "word": "champán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champagne", + "example_sentence_native": "Brindamos con champán por el nuevo año.", + "example_sentence_english": "We toasted with champagne for the new year.", + "pos": "noun", + "word_frequency": 17714 + }, + { + "word": "cochino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dirty;piggish", + "example_sentence_native": "No seas cochino y limpia tu habitación.", + "example_sentence_english": "Don't be dirty and clean your room.", + "pos": "adjective", + "word_frequency": 17717 + }, + { + "word": "colapsado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapsed", + "example_sentence_native": "El edificio quedó colapsado después del terremoto.", + "example_sentence_english": "The building was collapsed after the earthquake.", + "pos": "adjective", + "word_frequency": 17718 + }, + { + "word": "colorante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coloring;dye;food coloring", + "example_sentence_native": "Este pastel lleva colorante alimentario.", + "example_sentence_english": "This cake contains food coloring.", + "pos": "noun", + "word_frequency": 17719 + }, + { + "word": "comparativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparatively", + "example_sentence_native": "Comparativamente, este método es más eficiente.", + "example_sentence_english": "Comparatively, this method is more efficient.", + "pos": "adverb", + "word_frequency": 17721 + }, + { + "word": "condimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condiment", + "example_sentence_native": "Añade un poco de condimento a la sopa.", + "example_sentence_english": "Add a little condiment to the soup.", + "pos": "noun", + "word_frequency": 17722 + }, + { + "word": "confiabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reliability", + "example_sentence_native": "La confiabilidad del sistema es crucial.", + "example_sentence_english": "The reliability of the system is crucial.", + "pos": "noun", + "word_frequency": 17723 + }, + { + "word": "corneta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bugle", + "example_sentence_native": "El soldado tocó la corneta al amanecer.", + "example_sentence_english": "The soldier played the bugle at dawn.", + "pos": "noun", + "word_frequency": 17724 + }, + { + "word": "creta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chalk", + "example_sentence_native": "Escribió en la pizarra con una tiza de creta.", + "example_sentence_english": "He wrote on the blackboard with a piece of chalk.", + "pos": "noun", + "word_frequency": 17725 + }, + { + "word": "crucis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross (in Via Crucis)", + "example_sentence_native": "Participamos en el Via Crucis durante la Semana Santa.", + "example_sentence_english": "We participated in the Stations of the Cross during Holy Week.", + "pos": "noun", + "word_frequency": 17726 + }, + { + "word": "descubridor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discoverer", + "example_sentence_native": "Cristóbal Colón fue un gran descubridor.", + "example_sentence_english": "Christopher Columbus was a great discoverer.", + "pos": "noun", + "word_frequency": 17728 + }, + { + "word": "deshecho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wreck", + "example_sentence_native": "Después de la tormenta, la casa era un deshecho.", + "example_sentence_english": "After the storm, the house was a wreck.", + "pos": "noun", + "word_frequency": 17729 + }, + { + "word": "desmentido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denial", + "example_sentence_native": "El gobierno emitió un desmentido oficial.", + "example_sentence_english": "The government issued an official denial.", + "pos": "noun", + "word_frequency": 17730 + }, + { + "word": "despecho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spite", + "example_sentence_native": "Lo hizo por despecho.", + "example_sentence_english": "He did it out of spite.", + "pos": "noun", + "word_frequency": 17731 + }, + { + "word": "destituir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismiss", + "example_sentence_native": "Decidieron destituir al director por mala gestión.", + "example_sentence_english": "They decided to dismiss the director for mismanagement.", + "pos": "verb", + "word_frequency": 17732 + }, + { + "word": "dolencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ailment", + "example_sentence_native": "Sufre de una dolencia crónica.", + "example_sentence_english": "He suffers from a chronic ailment.", + "pos": "noun", + "word_frequency": 17735 + }, + { + "word": "emisario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emissary", + "example_sentence_native": "El emisario fue enviado a negociar la paz.", + "example_sentence_english": "The emissary was sent to negotiate peace.", + "pos": "noun", + "word_frequency": 17739 + }, + { + "word": "enredo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangle", + "example_sentence_native": "La situación se convirtió en un gran enredo.", + "example_sentence_english": "The situation turned into a big tangle.", + "pos": "noun", + "word_frequency": 17741 + }, + { + "word": "entrepierna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crotch", + "example_sentence_native": "La costura de la entrepierna se rompió.", + "example_sentence_english": "The crotch seam broke.", + "pos": "noun", + "word_frequency": 17743 + }, + { + "word": "estamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "estate (social class)", + "example_sentence_native": "La sociedad medieval estaba dividida en estamentos.", + "example_sentence_english": "Medieval society was divided into estates.", + "pos": "noun", + "word_frequency": 17747 + }, + { + "word": "estilista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stylist", + "example_sentence_native": "Mi estilista me recomendó un nuevo corte de pelo.", + "example_sentence_english": "My stylist recommended a new haircut.", + "pos": "noun", + "word_frequency": 17748 + }, + { + "word": "excitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excited", + "example_sentence_native": "Los niños estaban muy excitados con la noticia.", + "example_sentence_english": "The children were very excited about the news.", + "pos": "adjective", + "word_frequency": 17751 + }, + { + "word": "exhibido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibited", + "example_sentence_native": "El cuadro fue exhibido en el museo.", + "example_sentence_english": "The painting was exhibited in the museum.", + "pos": "adjective", + "word_frequency": 17752 + }, + { + "word": "felino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feline", + "example_sentence_native": "Tiene movimientos muy felinos.", + "example_sentence_english": "He has very feline movements.", + "pos": "adjective", + "word_frequency": 17753 + }, + { + "word": "flagelo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scourge", + "example_sentence_native": "La pobreza es un flagelo social.", + "example_sentence_english": "Poverty is a social scourge.", + "pos": "noun", + "word_frequency": 17754 + }, + { + "word": "futsal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "futsal", + "example_sentence_native": "Juegan futsal todos los viernes.", + "example_sentence_english": "They play futsal every Friday.", + "pos": "noun", + "word_frequency": 17758 + }, + { + "word": "hereje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heretic", + "example_sentence_native": "Fue acusado de hereje por sus ideas.", + "example_sentence_english": "He was accused of being a heretic for his ideas.", + "pos": "noun", + "word_frequency": 17767 + }, + { + "word": "hostelería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitality industry", + "example_sentence_native": "Trabaja en el sector de la hostelería.", + "example_sentence_english": "He works in the hospitality industry.", + "pos": "noun", + "word_frequency": 17769 + }, + { + "word": "hélice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propeller;helix", + "example_sentence_native": "La hélice del avión giraba rápidamente.", + "example_sentence_english": "The airplane's propeller spun rapidly.", + "pos": "noun", + "word_frequency": 17770 + }, + { + "word": "incorrectamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incorrectly", + "example_sentence_native": "Respondió la pregunta incorrectamente.", + "example_sentence_english": "He answered the question incorrectly.", + "pos": "adverb", + "word_frequency": 17772 + }, + { + "word": "incubación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incubation", + "example_sentence_native": "El período de incubación de la enfermedad es de dos semanas.", + "example_sentence_english": "The incubation period of the disease is two weeks.", + "pos": "noun", + "word_frequency": 17773 + }, + { + "word": "incógnito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incognito", + "example_sentence_native": "Viajó de incógnito para evitar a la prensa.", + "example_sentence_english": "He traveled incognito to avoid the press.", + "pos": "adjective", + "word_frequency": 17774 + }, + { + "word": "independentismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separatism;independence movement", + "example_sentence_native": "El independentismo es un tema recurrente en la política regional.", + "example_sentence_english": "Separatism is a recurring theme in regional politics.", + "pos": "noun", + "word_frequency": 17775 + }, + { + "word": "indescriptible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indescribable", + "example_sentence_native": "La belleza del paisaje era indescriptible.", + "example_sentence_english": "The beauty of the landscape was indescribable.", + "pos": "adjective", + "word_frequency": 17776 + }, + { + "word": "inmensidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immensity;vastness", + "example_sentence_native": "Se sintió pequeño ante la inmensidad del océano.", + "example_sentence_english": "He felt small before the immensity of the ocean.", + "pos": "noun", + "word_frequency": 17777 + }, + { + "word": "innato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "innate", + "example_sentence_native": "Tiene un talento innato para la música.", + "example_sentence_english": "He has an innate talent for music.", + "pos": "adjective", + "word_frequency": 17778 + }, + { + "word": "inservible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "useless;unserviceable", + "example_sentence_native": "El viejo aparato era completamente inservible.", + "example_sentence_english": "The old device was completely useless.", + "pos": "adjective", + "word_frequency": 17779 + }, + { + "word": "intencionadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentionally", + "example_sentence_native": "Lo hizo intencionadamente para molestarme.", + "example_sentence_english": "He did it intentionally to annoy me.", + "pos": "adverb", + "word_frequency": 17780 + }, + { + "word": "intravenoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intravenous", + "example_sentence_native": "Necesita una inyección intravenosa.", + "example_sentence_english": "He needs an intravenous injection.", + "pos": "adjective", + "word_frequency": 17781 + }, + { + "word": "intrigante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intriguing", + "example_sentence_native": "La trama de la novela era muy intrigante.", + "example_sentence_english": "The plot of the novel was very intriguing.", + "pos": "adjective", + "word_frequency": 17782 + }, + { + "word": "invocación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invocation", + "example_sentence_native": "La ceremonia comenzó con una invocación a los dioses.", + "example_sentence_english": "The ceremony began with an invocation to the gods.", + "pos": "noun", + "word_frequency": 17783 + }, + { + "word": "isleño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "islander", + "example_sentence_native": "Los isleños viven de la pesca y el turismo.", + "example_sentence_english": "The islanders live from fishing and tourism.", + "pos": "noun", + "word_frequency": 17784 + }, + { + "word": "jaca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pony;small horse", + "example_sentence_native": "Montó una jaca para recorrer el campo.", + "example_sentence_english": "He rode a pony to explore the countryside.", + "pos": "noun", + "word_frequency": 17786 + }, + { + "word": "jornal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily wage;day's work", + "example_sentence_native": "Ganaba un jornal modesto por su trabajo.", + "example_sentence_english": "He earned a modest daily wage for his work.", + "pos": "noun", + "word_frequency": 17788 + }, + { + "word": "latón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brass", + "example_sentence_native": "La cerradura es de latón.", + "example_sentence_english": "The lock is made of brass.", + "pos": "noun", + "word_frequency": 17792 + }, + { + "word": "licuadora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blender", + "example_sentence_native": "Usa la licuadora para hacer un batido.", + "example_sentence_english": "Use the blender to make a smoothie.", + "pos": "noun", + "word_frequency": 17795 + }, + { + "word": "limon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lemon", + "example_sentence_native": "Me gusta el agua con limón.", + "example_sentence_english": "I like water with lemon.", + "pos": "noun", + "word_frequency": 17796 + }, + { + "word": "litera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bunk bed", + "example_sentence_native": "Los niños duermen en una litera.", + "example_sentence_english": "The children sleep in a bunk bed.", + "pos": "noun", + "word_frequency": 17798 + }, + { + "word": "lombardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lombard", + "example_sentence_native": "El lombardo es un dialecto del italiano.", + "example_sentence_english": "Lombard is a dialect of Italian.", + "pos": "noun", + "word_frequency": 17799 + }, + { + "word": "manganeso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manganese", + "example_sentence_native": "El manganeso es un metal de transición.", + "example_sentence_english": "Manganese is a transition metal.", + "pos": "noun", + "word_frequency": 17802 + }, + { + "word": "mariquita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ladybug", + "example_sentence_native": "Una mariquita se posó en mi mano.", + "example_sentence_english": "A ladybug landed on my hand.", + "pos": "noun", + "word_frequency": 17803 + }, + { + "word": "matorral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thicket", + "example_sentence_native": "El conejo se escondió en el matorral.", + "example_sentence_english": "The rabbit hid in the thicket.", + "pos": "noun", + "word_frequency": 17805 + }, + { + "word": "matriculado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enrolled", + "example_sentence_native": "El estudiante ya está matriculado en el curso.", + "example_sentence_english": "The student is already enrolled in the course.", + "pos": "adjective", + "word_frequency": 17806 + }, + { + "word": "melancólico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melancholic", + "example_sentence_native": "Su expresión era melancólica después de la noticia.", + "example_sentence_english": "His expression was melancholic after the news.", + "pos": "adjective", + "word_frequency": 17807 + }, + { + "word": "merito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merit", + "example_sentence_native": "Su trabajo tiene mucho mérito.", + "example_sentence_english": "His work has a lot of merit.", + "pos": "noun", + "word_frequency": 17808 + }, + { + "word": "metástasis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metastasis", + "example_sentence_native": "El cáncer había desarrollado metástasis.", + "example_sentence_english": "The cancer had developed metastasis.", + "pos": "noun", + "word_frequency": 17810 + }, + { + "word": "multilateral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multilateral", + "example_sentence_native": "Se firmó un acuerdo multilateral entre los países.", + "example_sentence_english": "A multilateral agreement was signed between the countries.", + "pos": "adjective", + "word_frequency": 17813 + }, + { + "word": "notebook", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "notebook (computer)", + "example_sentence_native": "Necesito un nuevo notebook para el trabajo.", + "example_sentence_english": "I need a new notebook for work.", + "pos": "noun", + "word_frequency": 17817 + }, + { + "word": "observancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "observance", + "example_sentence_native": "La observancia de las normas es crucial.", + "example_sentence_english": "The observance of the rules is crucial.", + "pos": "noun", + "word_frequency": 17819 + }, + { + "word": "opaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opaque", + "example_sentence_native": "El cristal es opaco y no deja ver a través.", + "example_sentence_english": "The glass is opaque and doesn't let you see through.", + "pos": "adjective", + "word_frequency": 17820 + }, + { + "word": "pacientemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patiently", + "example_sentence_native": "Esperó pacientemente su turno.", + "example_sentence_english": "He waited patiently for his turn.", + "pos": "adverb", + "word_frequency": 17822 + }, + { + "word": "pad", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pad (tablet device)", + "example_sentence_native": "Usa el pad para dibujar.", + "example_sentence_english": "Use the pad to draw.", + "pos": "noun", + "word_frequency": 17823 + }, + { + "word": "palomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "male dove;pigeon", + "example_sentence_native": "Un palomo blanco voló sobre el tejado.", + "example_sentence_english": "A white male dove flew over the roof.", + "pos": "noun", + "word_frequency": 17826 + }, + { + "word": "pandillero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gang member", + "example_sentence_native": "La policía arrestó a un pandillero.", + "example_sentence_english": "The police arrested a gang member.", + "pos": "noun", + "word_frequency": 17827 + }, + { + "word": "paradójico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradoxical", + "example_sentence_native": "Es una situación paradójica.", + "example_sentence_english": "It's a paradoxical situation.", + "pos": "adjective", + "word_frequency": 17828 + }, + { + "word": "parla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "talk;chatter", + "example_sentence_native": "Tiene mucha parla, no para de hablar.", + "example_sentence_english": "He has a lot of talk, he doesn't stop speaking.", + "pos": "noun", + "word_frequency": 17829 + }, + { + "word": "pasante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intern", + "example_sentence_native": "El nuevo pasante es muy trabajador.", + "example_sentence_english": "The new intern is very hardworking.", + "pos": "noun", + "word_frequency": 17830 + }, + { + "word": "perforar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perforate;to drill", + "example_sentence_native": "Necesitamos perforar la pared para colgar el cuadro.", + "example_sentence_english": "We need to drill the wall to hang the picture.", + "pos": "verb", + "word_frequency": 17833 + }, + { + "word": "piñata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piñata", + "example_sentence_native": "Los niños rompieron la piñata en la fiesta.", + "example_sentence_english": "The children broke the piñata at the party.", + "pos": "noun", + "word_frequency": 17834 + }, + { + "word": "poda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pruning", + "example_sentence_native": "La poda de los árboles es necesaria en otoño.", + "example_sentence_english": "Tree pruning is necessary in autumn.", + "pos": "noun", + "word_frequency": 17835 + }, + { + "word": "pola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beer (informal)", + "example_sentence_native": "Vamos por unas polas después del trabajo.", + "example_sentence_english": "Let's go for some beers after work.", + "pos": "noun", + "word_frequency": 17836 + }, + { + "word": "prematuramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prematurely", + "example_sentence_native": "El proyecto terminó prematuramente.", + "example_sentence_english": "The project ended prematurely.", + "pos": "adverb", + "word_frequency": 17838 + }, + { + "word": "prepotente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogant;overbearing", + "example_sentence_native": "Su actitud prepotente molestó a todos.", + "example_sentence_english": "His arrogant attitude bothered everyone.", + "pos": "adjective", + "word_frequency": 17839 + }, + { + "word": "puzzle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puzzle", + "example_sentence_native": "Compré un nuevo puzzle para el fin de semana.", + "example_sentence_english": "I bought a new puzzle for the weekend.", + "pos": "noun", + "word_frequency": 17841 + }, + { + "word": "rabioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rabid;furious", + "example_sentence_native": "El perro rabioso fue puesto en cuarentena.", + "example_sentence_english": "The rabid dog was quarantined.", + "pos": "adjective", + "word_frequency": 17844 + }, + { + "word": "rancio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rancid;stale", + "example_sentence_native": "El aceite se puso rancio después de mucho tiempo.", + "example_sentence_english": "The oil went rancid after a long time.", + "pos": "adjective", + "word_frequency": 17845 + }, + { + "word": "ranura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slot;groove", + "example_sentence_native": "Inserta la tarjeta en la ranura correspondiente.", + "example_sentence_english": "Insert the card into the corresponding slot.", + "pos": "noun", + "word_frequency": 17846 + }, + { + "word": "recíproco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reciprocal", + "example_sentence_native": "Su amistad se basa en el respeto recíproco.", + "example_sentence_english": "Their friendship is based on reciprocal respect.", + "pos": "adjective", + "word_frequency": 17847 + }, + { + "word": "remontada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comeback", + "example_sentence_native": "El equipo logró una remontada épica en los últimos minutos.", + "example_sentence_english": "The team achieved an epic comeback in the last minutes.", + "pos": "noun", + "word_frequency": 17848 + }, + { + "word": "repatriación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repatriation", + "example_sentence_native": "Se está gestionando la repatriación de los ciudadanos.", + "example_sentence_english": "The repatriation of citizens is being managed.", + "pos": "noun", + "word_frequency": 17849 + }, + { + "word": "repetitivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repetitive", + "example_sentence_native": "El trabajo se volvió muy repetitivo y aburrido.", + "example_sentence_english": "The work became very repetitive and boring.", + "pos": "adjective", + "word_frequency": 17850 + }, + { + "word": "retorcido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twisted;convoluted", + "example_sentence_native": "La trama de la película era muy retorcida.", + "example_sentence_english": "The movie's plot was very twisted.", + "pos": "adjective", + "word_frequency": 17853 + }, + { + "word": "reubicación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relocation", + "example_sentence_native": "La empresa anunció la reubicación de sus oficinas.", + "example_sentence_english": "The company announced the relocation of its offices.", + "pos": "noun", + "word_frequency": 17854 + }, + { + "word": "sagrario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tabernacle;sanctuary", + "example_sentence_native": "El sagrario guarda el Santísimo Sacramento.", + "example_sentence_english": "The tabernacle holds the Blessed Sacrament.", + "pos": "noun", + "word_frequency": 17857 + }, + { + "word": "salido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protruding;horny (colloquial)", + "example_sentence_native": "Tiene un diente salido.", + "example_sentence_english": "He has a protruding tooth.", + "pos": "adjective", + "word_frequency": 17858 + }, + { + "word": "selectividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selectivity;university entrance exam (Spain)", + "example_sentence_native": "Muchos estudiantes se preparan para la selectividad.", + "example_sentence_english": "Many students prepare for the university entrance exam.", + "pos": "noun", + "word_frequency": 17862 + }, + { + "word": "serenata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serenade", + "example_sentence_native": "Le dio una serenata bajo su balcón.", + "example_sentence_english": "He gave her a serenade under her balcony.", + "pos": "noun", + "word_frequency": 17863 + }, + { + "word": "serranía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountain range;hilly region", + "example_sentence_native": "La serranía es conocida por sus paisajes.", + "example_sentence_english": "The mountain range is known for its landscapes.", + "pos": "noun", + "word_frequency": 17864 + }, + { + "word": "sociológico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociological", + "example_sentence_native": "El estudio tiene un enfoque sociológico.", + "example_sentence_english": "The study has a sociological approach.", + "pos": "adjective", + "word_frequency": 17869 + }, + { + "word": "soluble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soluble", + "example_sentence_native": "El azúcar es soluble en agua.", + "example_sentence_english": "Sugar is soluble in water.", + "pos": "adjective", + "word_frequency": 17870 + }, + { + "word": "subestimar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to underestimate", + "example_sentence_native": "Nunca debes subestimar a tu oponente.", + "example_sentence_english": "You should never underestimate your opponent.", + "pos": "verb", + "word_frequency": 17873 + }, + { + "word": "tablón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plank;board", + "example_sentence_native": "Necesitamos un tablón largo para el puente.", + "example_sentence_english": "We need a long plank for the bridge.", + "pos": "noun", + "word_frequency": 17875 + }, + { + "word": "tiroides", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thyroid", + "example_sentence_native": "La glándula tiroides es importante para el metabolismo.", + "example_sentence_english": "The thyroid gland is important for metabolism.", + "pos": "noun", + "word_frequency": 17881 + }, + { + "word": "todoterreno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "all-terrain vehicle;SUV", + "example_sentence_native": "Compramos un todoterreno para viajar por la montaña.", + "example_sentence_english": "We bought an SUV to travel through the mountains.", + "pos": "noun", + "word_frequency": 17882 + }, + { + "word": "toreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullfighting", + "example_sentence_native": "El toreo es una tradición controvertida en España.", + "example_sentence_english": "Bullfighting is a controversial tradition in Spain.", + "pos": "noun", + "word_frequency": 17884 + }, + { + "word": "transcurrido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elapsed;passed", + "example_sentence_native": "Han transcurrido varios años desde la última vez que nos vimos.", + "example_sentence_english": "Several years have passed since we last saw each other.", + "pos": "adjective", + "word_frequency": 17887 + }, + { + "word": "vagar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wander;to roam", + "example_sentence_native": "Le gusta vagar por el campo sin rumbo fijo.", + "example_sentence_english": "He likes to wander through the countryside aimlessly.", + "pos": "verb", + "word_frequency": 17895 + }, + { + "word": "varado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stranded;stuck", + "example_sentence_native": "El barco quedó varado en la arena.", + "example_sentence_english": "The ship was stranded on the sand.", + "pos": "adjective", + "word_frequency": 17896 + }, + { + "word": "vegano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegan", + "example_sentence_native": "Mi hermana es vegana y no come productos animales.", + "example_sentence_english": "My sister is vegan and doesn't eat animal products.", + "pos": "adjective", + "word_frequency": 17897 + }, + { + "word": "vieira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scallop", + "example_sentence_native": "Las vieiras a la plancha son deliciosas.", + "example_sentence_english": "Grilled scallops are delicious.", + "pos": "noun", + "word_frequency": 17898 + }, + { + "word": "adecuar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adapt;to adjust", + "example_sentence_native": "Debemos adecuar el plan a las nuevas circunstancias.", + "example_sentence_english": "We must adapt the plan to the new circumstances.", + "pos": "verb", + "word_frequency": 17904 + }, + { + "word": "adherido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adhered;attached", + "example_sentence_native": "El cartel estaba firmemente adherido a la pared.", + "example_sentence_english": "The poster was firmly adhered to the wall.", + "pos": "adjective", + "word_frequency": 17905 + }, + { + "word": "aeródromo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aerodrome;airfield", + "example_sentence_native": "El pequeño aeródromo solo se usa para vuelos privados.", + "example_sentence_english": "The small aerodrome is only used for private flights.", + "pos": "noun", + "word_frequency": 17907 + }, + { + "word": "altruista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altruistic", + "example_sentence_native": "Su comportamiento altruista impresionó a todos.", + "example_sentence_english": "His altruistic behavior impressed everyone.", + "pos": "adjective", + "word_frequency": 17910 + }, + { + "word": "aparcar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to park", + "example_sentence_native": "¿Dónde puedo aparcar mi coche?", + "example_sentence_english": "Where can I park my car?", + "pos": "verb", + "word_frequency": 17912 + }, + { + "word": "aposento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chamber;room", + "example_sentence_native": "El rey se retiró a sus aposentos privados.", + "example_sentence_english": "The king retired to his private chambers.", + "pos": "noun", + "word_frequency": 17914 + }, + { + "word": "arado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plow", + "example_sentence_native": "El agricultor usó el arado para preparar la tierra.", + "example_sentence_english": "The farmer used the plow to prepare the land.", + "pos": "noun", + "word_frequency": 17915 + }, + { + "word": "auspicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auspice;patronage", + "example_sentence_native": "El evento se realizó bajo el auspicio del ayuntamiento.", + "example_sentence_english": "The event was held under the patronage of the city council.", + "pos": "noun", + "word_frequency": 17917 + }, + { + "word": "automatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatic", + "example_sentence_native": "La puerta se abre de forma automática.", + "example_sentence_english": "The door opens automatically.", + "pos": "adjective", + "word_frequency": 17918 + }, + { + "word": "avispa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wasp", + "example_sentence_native": "Una avispa me picó en el brazo.", + "example_sentence_english": "A wasp stung me on the arm.", + "pos": "noun", + "word_frequency": 17919 + }, + { + "word": "bagaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baggage", + "example_sentence_native": "Recogimos nuestro bagaje en la cinta transportadora.", + "example_sentence_english": "We collected our baggage from the conveyor belt.", + "pos": "noun", + "word_frequency": 17921 + }, + { + "word": "bolchevique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Bolshevik", + "example_sentence_native": "Los bolcheviques tomaron el poder en Rusia.", + "example_sentence_english": "The Bolsheviks took power in Russia.", + "pos": "noun", + "word_frequency": 17925 + }, + { + "word": "brandy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brandy", + "example_sentence_native": "Le gusta beber brandy después de la cena.", + "example_sentence_english": "He likes to drink brandy after dinner.", + "pos": "noun", + "word_frequency": 17929 + }, + { + "word": "brasa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ember", + "example_sentence_native": "Las brasas del fuego aún estaban calientes.", + "example_sentence_english": "The embers of the fire were still hot.", + "pos": "noun", + "word_frequency": 17930 + }, + { + "word": "búnker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bunker", + "example_sentence_native": "Se refugiaron en el búnker durante el bombardeo.", + "example_sentence_english": "They took refuge in the bunker during the bombing.", + "pos": "noun", + "word_frequency": 17931 + }, + { + "word": "cabecilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ringleader", + "example_sentence_native": "El cabecilla de la banda fue arrestado.", + "example_sentence_english": "The ringleader of the gang was arrested.", + "pos": "noun", + "word_frequency": 17932 + }, + { + "word": "calza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedge", + "example_sentence_native": "Puso una calza debajo de la mesa para que no cojeara.", + "example_sentence_english": "He put a wedge under the table so it wouldn't wobble.", + "pos": "noun", + "word_frequency": 17935 + }, + { + "word": "capitulación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitulation", + "example_sentence_native": "La capitulación del ejército fue inevitable.", + "example_sentence_english": "The army's capitulation was inevitable.", + "pos": "noun", + "word_frequency": 17937 + }, + { + "word": "catequesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catechesis", + "example_sentence_native": "Los niños asisten a clases de catequesis para la primera comunión.", + "example_sentence_english": "Children attend catechesis classes for their first communion.", + "pos": "noun", + "word_frequency": 17941 + }, + { + "word": "concertar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange", + "example_sentence_native": "Necesitamos concertar una cita para discutir el proyecto.", + "example_sentence_english": "We need to arrange an appointment to discuss the project.", + "pos": "verb", + "word_frequency": 17948 + }, + { + "word": "consolación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consolation", + "example_sentence_native": "Le ofrecí mi consolación después de su pérdida.", + "example_sentence_english": "I offered him my consolation after his loss.", + "pos": "noun", + "word_frequency": 17950 + }, + { + "word": "corintio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Corinthian", + "example_sentence_native": "El templo tenía columnas de estilo corintio.", + "example_sentence_english": "The temple had Corinthian-style columns.", + "pos": "noun", + "word_frequency": 17952 + }, + { + "word": "costal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sack", + "example_sentence_native": "Llevaba un costal de patatas al mercado.", + "example_sentence_english": "He carried a sack of potatoes to the market.", + "pos": "noun", + "word_frequency": 17953 + }, + { + "word": "crisol", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crucible", + "example_sentence_native": "Nueva York es un crisol de culturas.", + "example_sentence_english": "New York is a melting pot of cultures.", + "pos": "noun", + "word_frequency": 17955 + }, + { + "word": "cuantitativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quantitative", + "example_sentence_native": "Realizamos un análisis cuantitativo de los datos.", + "example_sentence_english": "We performed a quantitative analysis of the data.", + "pos": "adjective", + "word_frequency": 17956 + }, + { + "word": "cursivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cursive", + "example_sentence_native": "Escribió la carta con letra cursiva.", + "example_sentence_english": "He wrote the letter in cursive script.", + "pos": "adjective", + "word_frequency": 17957 + }, + { + "word": "decapitar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decapitate", + "example_sentence_native": "En la antigüedad, a veces se solía decapitar a los traidores.", + "example_sentence_english": "In ancient times, traitors were sometimes decapitated.", + "pos": "verb", + "word_frequency": 17958 + }, + { + "word": "decreciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decreasing", + "example_sentence_native": "La población de la ciudad ha sido decreciente en los últimos años.", + "example_sentence_english": "The city's population has been decreasing in recent years.", + "pos": "adjective", + "word_frequency": 17959 + }, + { + "word": "delantal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apron", + "example_sentence_native": "Se puso el delantal antes de empezar a cocinar.", + "example_sentence_english": "She put on the apron before starting to cook.", + "pos": "noun", + "word_frequency": 17960 + }, + { + "word": "delinquir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit a crime", + "example_sentence_native": "La empresa fue acusada de delinquir contra las leyes fiscales.", + "example_sentence_english": "The company was accused of committing a crime against tax laws.", + "pos": "verb", + "word_frequency": 17961 + }, + { + "word": "desaprobación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disapproval", + "example_sentence_native": "Su silencio fue una señal de desaprobación.", + "example_sentence_english": "His silence was a sign of disapproval.", + "pos": "noun", + "word_frequency": 17962 + }, + { + "word": "descomponer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break down;to decompose", + "example_sentence_native": "El coche se descompuso en medio de la carretera.", + "example_sentence_english": "The car broke down in the middle of the road.", + "pos": "verb", + "word_frequency": 17963 + }, + { + "word": "desestimar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismiss;to reject", + "example_sentence_native": "El juez decidió desestimar el caso por falta de pruebas.", + "example_sentence_english": "The judge decided to dismiss the case due to lack of evidence.", + "pos": "verb", + "word_frequency": 17964 + }, + { + "word": "detenimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoroughness;carefulness", + "example_sentence_native": "Analizó el informe con detenimiento.", + "example_sentence_english": "He analyzed the report with thoroughness.", + "pos": "noun", + "word_frequency": 17965 + }, + { + "word": "disconformidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagreement;nonconformity", + "example_sentence_native": "Expresó su disconformidad con la decisión.", + "example_sentence_english": "He expressed his disagreement with the decision.", + "pos": "noun", + "word_frequency": 17967 + }, + { + "word": "enchufar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plug in", + "example_sentence_native": "¿Puedes enchufar el cargador del teléfono?", + "example_sentence_english": "Can you plug in the phone charger?", + "pos": "verb", + "word_frequency": 17972 + }, + { + "word": "enloquecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drive crazy;to go mad", + "example_sentence_native": "El ruido constante me va a enloquecer.", + "example_sentence_english": "The constant noise is going to drive me crazy.", + "pos": "verb", + "word_frequency": 17973 + }, + { + "word": "entorpecer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hinder;to impede", + "example_sentence_native": "La burocracia puede entorpecer el progreso.", + "example_sentence_english": "Bureaucracy can hinder progress.", + "pos": "verb", + "word_frequency": 17974 + }, + { + "word": "envoltorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrapper;packaging", + "example_sentence_native": "Quita el envoltorio antes de comer el caramelo.", + "example_sentence_english": "Remove the wrapper before eating the candy.", + "pos": "noun", + "word_frequency": 17975 + }, + { + "word": "epidemiología", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "epidemiology", + "example_sentence_native": "La epidemiología es crucial para entender la propagación de enfermedades.", + "example_sentence_english": "Epidemiology is crucial for understanding the spread of diseases.", + "pos": "noun", + "word_frequency": 17976 + }, + { + "word": "eslovaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovak", + "example_sentence_native": "Habla eslovaco con fluidez.", + "example_sentence_english": "He speaks Slovak fluently.", + "pos": "adjective", + "word_frequency": 17977 + }, + { + "word": "estribo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stirrup", + "example_sentence_native": "El jinete puso el pie en el estribo.", + "example_sentence_english": "The rider put his foot in the stirrup.", + "pos": "noun", + "word_frequency": 17978 + }, + { + "word": "estruendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roar;din", + "example_sentence_native": "El estruendo de la explosión se escuchó a kilómetros.", + "example_sentence_english": "The roar of the explosion was heard for kilometers.", + "pos": "noun", + "word_frequency": 17979 + }, + { + "word": "evaporación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaporation", + "example_sentence_native": "La evaporación es parte del ciclo del agua.", + "example_sentence_english": "Evaporation is part of the water cycle.", + "pos": "noun", + "word_frequency": 17980 + }, + { + "word": "exponencialmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exponentially", + "example_sentence_native": "La población creció exponencialmente.", + "example_sentence_english": "The population grew exponentially.", + "pos": "adverb", + "word_frequency": 17982 + }, + { + "word": "expresivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressive", + "example_sentence_native": "Tiene una mirada muy expresiva.", + "example_sentence_english": "He has a very expressive look.", + "pos": "adjective", + "word_frequency": 17983 + }, + { + "word": "familiaridad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "familiarity", + "example_sentence_native": "Su familiaridad con el tema era evidente.", + "example_sentence_english": "His familiarity with the subject was evident.", + "pos": "noun", + "word_frequency": 17986 + }, + { + "word": "focal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "focal", + "example_sentence_native": "El punto focal de la discusión fue la economía.", + "example_sentence_english": "The focal point of the discussion was the economy.", + "pos": "adjective", + "word_frequency": 17987 + }, + { + "word": "futbolístico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "football (soccer) related", + "example_sentence_native": "El ambiente futbolístico era increíble en el estadio.", + "example_sentence_english": "The footballing atmosphere was incredible in the stadium.", + "pos": "adjective", + "word_frequency": 17989 + }, + { + "word": "goteo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drip;dripping", + "example_sentence_native": "Hay un goteo constante del grifo.", + "example_sentence_english": "There is a constant drip from the faucet.", + "pos": "noun", + "word_frequency": 17995 + }, + { + "word": "grosería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudeness;vulgarity", + "example_sentence_native": "No tolero las groserías en mi casa.", + "example_sentence_english": "I don't tolerate rudeness in my house.", + "pos": "noun", + "word_frequency": 17996 + }, + { + "word": "gubernatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governorship", + "example_sentence_native": "La gubernatura es un cargo de gran responsabilidad.", + "example_sentence_english": "The governorship is a position of great responsibility.", + "pos": "noun", + "word_frequency": 17998 + }, + { + "word": "incluyente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inclusive", + "example_sentence_native": "Necesitamos políticas más incluyentes para todos.", + "example_sentence_english": "We need more inclusive policies for everyone.", + "pos": "adjective", + "word_frequency": 18005 + }, + { + "word": "indiscriminado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indiscriminate", + "example_sentence_native": "El bombardeo indiscriminado causó muchas víctimas.", + "example_sentence_english": "The indiscriminate bombing caused many casualties.", + "pos": "adjective", + "word_frequency": 18006 + }, + { + "word": "indulgencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indulgence", + "example_sentence_native": "Pidió indulgencia por sus errores.", + "example_sentence_english": "He asked for indulgence for his mistakes.", + "pos": "noun", + "word_frequency": 18007 + }, + { + "word": "insigne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distinguished;notable", + "example_sentence_native": "Es un insigne escritor de nuestra época.", + "example_sentence_english": "He is a distinguished writer of our time.", + "pos": "adjective", + "word_frequency": 18008 + }, + { + "word": "insolente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insolent", + "example_sentence_native": "Su actitud insolente molestó a todos.", + "example_sentence_english": "His insolent attitude bothered everyone.", + "pos": "adjective", + "word_frequency": 18009 + }, + { + "word": "instructivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instruction manual;guide", + "example_sentence_native": "Por favor, lee el instructivo antes de usar el aparato.", + "example_sentence_english": "Please read the instruction manual before using the device.", + "pos": "noun", + "word_frequency": 18010 + }, + { + "word": "inválido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invalid;disabled", + "example_sentence_native": "El argumento es inválido porque carece de pruebas.", + "example_sentence_english": "The argument is invalid because it lacks evidence.", + "pos": "adjective", + "word_frequency": 18011 + }, + { + "word": "islamista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamist", + "example_sentence_native": "El grupo islamista reivindicó el ataque.", + "example_sentence_english": "The Islamist group claimed responsibility for the attack.", + "pos": "noun", + "word_frequency": 18012 + }, + { + "word": "ladrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bark", + "example_sentence_native": "El perro empezó a ladrar a los extraños.", + "example_sentence_english": "The dog started to bark at the strangers.", + "pos": "verb", + "word_frequency": 18017 + }, + { + "word": "liar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie up;to roll (a cigarette)", + "example_sentence_native": "Necesito liar el paquete con una cuerda.", + "example_sentence_english": "I need to tie up the package with a rope.", + "pos": "verb", + "word_frequency": 18019 + }, + { + "word": "limonada", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lemonade", + "example_sentence_native": "En verano, me encanta beber limonada fría.", + "example_sentence_english": "In summer, I love to drink cold lemonade.", + "pos": "noun", + "word_frequency": 18020 + }, + { + "word": "mendigar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beg", + "example_sentence_native": "No le gusta mendigar ayuda a nadie.", + "example_sentence_english": "He doesn't like to beg anyone for help.", + "pos": "verb", + "word_frequency": 18030 + }, + { + "word": "metalurgia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metallurgy", + "example_sentence_native": "La metalurgia es una ciencia antigua.", + "example_sentence_english": "Metallurgy is an ancient science.", + "pos": "noun", + "word_frequency": 18031 + }, + { + "word": "minita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small mine", + "example_sentence_native": "Descubrieron una pequeña minita de oro.", + "example_sentence_english": "They discovered a small gold mine.", + "pos": "noun", + "word_frequency": 18032 + }, + { + "word": "moler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grind", + "example_sentence_native": "Hay que moler el café antes de prepararlo.", + "example_sentence_english": "You have to grind the coffee before preparing it.", + "pos": "verb", + "word_frequency": 18033 + }, + { + "word": "norcoreano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "North Korean", + "example_sentence_native": "La delegación norcoreana llegó a la cumbre.", + "example_sentence_english": "The North Korean delegation arrived at the summit.", + "pos": "adjective", + "word_frequency": 18038 + }, + { + "word": "notaría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notary's office", + "example_sentence_native": "Firmamos los documentos en la notaría.", + "example_sentence_english": "We signed the documents at the notary's office.", + "pos": "noun", + "word_frequency": 18040 + }, + { + "word": "ochocientos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eight hundred", + "example_sentence_native": "El libro tiene ochocientos páginas.", + "example_sentence_english": "The book has eight hundred pages.", + "pos": "noun", + "word_frequency": 18041 + }, + { + "word": "paria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pariah;outcast", + "example_sentence_native": "Se sentía como un paria en la sociedad.", + "example_sentence_english": "He felt like a pariah in society.", + "pos": "noun", + "word_frequency": 18048 + }, + { + "word": "penitenciaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penitentiary;prison", + "example_sentence_native": "Fue trasladado a la penitenciaria de máxima seguridad.", + "example_sentence_english": "He was transferred to the maximum security penitentiary.", + "pos": "noun", + "word_frequency": 18052 + }, + { + "word": "periplo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "journey;periplus", + "example_sentence_native": "Su periplo por el mundo duró un año.", + "example_sentence_english": "His journey around the world lasted a year.", + "pos": "noun", + "word_frequency": 18053 + }, + { + "word": "personificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personification", + "example_sentence_native": "La justicia es a menudo representada como una personificación.", + "example_sentence_english": "Justice is often represented as a personification.", + "pos": "noun", + "word_frequency": 18054 + }, + { + "word": "platea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stalls;orchestra seats (theater)", + "example_sentence_native": "Nos sentamos en la platea para ver la obra.", + "example_sentence_english": "We sat in the stalls to watch the play.", + "pos": "noun", + "word_frequency": 18056 + }, + { + "word": "platense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from La Plata (Argentina);Rioplatense", + "example_sentence_native": "El dialecto platense es muy distintivo.", + "example_sentence_english": "The Rioplatense dialect is very distinctive.", + "pos": "adjective", + "word_frequency": 18057 + }, + { + "word": "plurinacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plurinational", + "example_sentence_native": "Bolivia es un estado plurinacional.", + "example_sentence_english": "Bolivia is a plurinational state.", + "pos": "adjective", + "word_frequency": 18058 + }, + { + "word": "provisorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisional;temporary", + "example_sentence_native": "La solución es solo provisoria.", + "example_sentence_english": "The solution is only provisional.", + "pos": "adjective", + "word_frequency": 18061 + }, + { + "word": "quórum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quorum", + "example_sentence_native": "No había quórum suficiente para votar.", + "example_sentence_english": "There wasn't enough quorum to vote.", + "pos": "noun", + "word_frequency": 18067 + }, + { + "word": "recio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strong;sturdy;robust", + "example_sentence_native": "Era un hombre recio y trabajador.", + "example_sentence_english": "He was a strong and hardworking man.", + "pos": "adjective", + "word_frequency": 18068 + }, + { + "word": "resonar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resonate;to echo", + "example_sentence_native": "Sus palabras resonaron en mi mente.", + "example_sentence_english": "His words resonated in my mind.", + "pos": "verb", + "word_frequency": 18069 + }, + { + "word": "rublo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruble", + "example_sentence_native": "El rublo es la moneda de Rusia.", + "example_sentence_english": "The ruble is the currency of Russia.", + "pos": "noun", + "word_frequency": 18071 + }, + { + "word": "rufián", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ruffian;scoundrel", + "example_sentence_native": "El rufián fue arrestado por sus crímenes.", + "example_sentence_english": "The ruffian was arrested for his crimes.", + "pos": "noun", + "word_frequency": 18072 + }, + { + "word": "sacristía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacristy", + "example_sentence_native": "El sacerdote se preparó en la sacristía.", + "example_sentence_english": "The priest prepared himself in the sacristy.", + "pos": "noun", + "word_frequency": 18074 + }, + { + "word": "sake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sake", + "example_sentence_native": "Pedimos sake con la comida japonesa.", + "example_sentence_english": "We ordered sake with the Japanese food.", + "pos": "noun", + "word_frequency": 18075 + }, + { + "word": "sectario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sectarian;bigot", + "example_sentence_native": "No debemos caer en discursos sectarios.", + "example_sentence_english": "We must not fall into sectarian discourses.", + "pos": "noun", + "word_frequency": 18078 + }, + { + "word": "sectarismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sectarianism", + "example_sentence_native": "El sectarismo es un obstáculo para la unidad.", + "example_sentence_english": "Sectarianism is an obstacle to unity.", + "pos": "noun", + "word_frequency": 18079 + }, + { + "word": "sensibilizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sensitize", + "example_sentence_native": "Es importante sensibilizar a la gente sobre el cambio climático.", + "example_sentence_english": "It is important to sensitize people about climate change.", + "pos": "verb", + "word_frequency": 18080 + }, + { + "word": "sequedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dryness", + "example_sentence_native": "La sequedad del ambiente afectó su piel.", + "example_sentence_english": "The dryness of the environment affected her skin.", + "pos": "noun", + "word_frequency": 18081 + }, + { + "word": "silicona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silicone", + "example_sentence_native": "Usamos moldes de silicona para hornear.", + "example_sentence_english": "We use silicone molds for baking.", + "pos": "noun", + "word_frequency": 18083 + }, + { + "word": "sobriedad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sobriety", + "example_sentence_native": "Su sobriedad en el vestir era notable.", + "example_sentence_english": "Her sobriety in dressing was notable.", + "pos": "noun", + "word_frequency": 18085 + }, + { + "word": "soltura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ease;fluency", + "example_sentence_native": "Habla español con gran soltura.", + "example_sentence_english": "He speaks Spanish with great fluency.", + "pos": "noun", + "word_frequency": 18087 + }, + { + "word": "subtitular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subtitle", + "example_sentence_native": "Necesitamos subtitular la película para el público internacional.", + "example_sentence_english": "We need to subtitle the movie for the international audience.", + "pos": "verb", + "word_frequency": 18089 + }, + { + "word": "superliga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "super league", + "example_sentence_native": "La propuesta de una Superliga generó mucha controversia.", + "example_sentence_english": "The Super League proposal generated a lot of controversy.", + "pos": "noun", + "word_frequency": 18090 + }, + { + "word": "superposición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superposition;overlap", + "example_sentence_native": "Hay una superposición de funciones en este departamento.", + "example_sentence_english": "There is an overlap of functions in this department.", + "pos": "noun", + "word_frequency": 18091 + }, + { + "word": "sutura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suture;stitch", + "example_sentence_native": "El médico le puso tres puntos de sutura.", + "example_sentence_english": "The doctor gave him three stitches.", + "pos": "noun", + "word_frequency": 18092 + }, + { + "word": "tajante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "categorical;blunt;decisive", + "example_sentence_native": "Su respuesta fue tajante, sin lugar a dudas.", + "example_sentence_english": "His answer was categorical, leaving no room for doubt.", + "pos": "adjective", + "word_frequency": 18093 + }, + { + "word": "tapiz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tapestry;rug", + "example_sentence_native": "Colgaron un hermoso tapiz en la pared.", + "example_sentence_english": "They hung a beautiful tapestry on the wall.", + "pos": "noun", + "word_frequency": 18094 + }, + { + "word": "telediario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "TV news;newscast", + "example_sentence_native": "Veo el telediario todas las noches para informarme.", + "example_sentence_english": "I watch the TV news every night to get informed.", + "pos": "noun", + "word_frequency": 18095 + }, + { + "word": "tenebroso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gloomy;dark;sinister", + "example_sentence_native": "El castillo tenía un aspecto tenebroso.", + "example_sentence_english": "The castle had a gloomy appearance.", + "pos": "adjective", + "word_frequency": 18097 + }, + { + "word": "transplante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transplant", + "example_sentence_native": "Necesita un transplante de riñón.", + "example_sentence_english": "He needs a kidney transplant.", + "pos": "noun", + "word_frequency": 18100 + }, + { + "word": "undécimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eleventh", + "example_sentence_native": "Ocupó el undécimo lugar en la competición.", + "example_sentence_english": "He took eleventh place in the competition.", + "pos": "adjective", + "word_frequency": 18104 + }, + { + "word": "universalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "universality", + "example_sentence_native": "La universalidad de los derechos humanos es fundamental.", + "example_sentence_english": "The universality of human rights is fundamental.", + "pos": "noun", + "word_frequency": 18105 + }, + { + "word": "veintiún", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twenty-one", + "example_sentence_native": "Tiene veintiún años.", + "example_sentence_english": "He is twenty-one years old.", + "pos": "noun", + "word_frequency": 18107 + }, + { + "word": "versatilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "versatility", + "example_sentence_native": "Su versatilidad como actor es impresionante.", + "example_sentence_english": "His versatility as an actor is impressive.", + "pos": "noun", + "word_frequency": 18108 + }, + { + "word": "vidriera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stained glass window;shop window", + "example_sentence_native": "La catedral tiene una hermosa vidriera.", + "example_sentence_english": "The cathedral has a beautiful stained glass window.", + "pos": "noun", + "word_frequency": 18109 + }, + { + "word": "vitalicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lifelong;permanent", + "example_sentence_native": "Fue nombrado senador vitalicio.", + "example_sentence_english": "He was appointed senator for life.", + "pos": "adjective", + "word_frequency": 18110 + }, + { + "word": "voltio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volt", + "example_sentence_native": "La batería es de doce voltios.", + "example_sentence_english": "The battery is twelve volts.", + "pos": "noun", + "word_frequency": 18111 + }, + { + "word": "vulgaridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulgarity;commonness", + "example_sentence_native": "Evita la vulgaridad en tu lenguaje.", + "example_sentence_english": "Avoid vulgarity in your language.", + "pos": "noun", + "word_frequency": 18112 + }, + { + "word": "abominable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abominable;detestable", + "example_sentence_native": "El tiempo era abominable, con lluvia y viento.", + "example_sentence_english": "The weather was abominable, with rain and wind.", + "pos": "adjective", + "word_frequency": 18118 + }, + { + "word": "acoplamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coupling", + "example_sentence_native": "El acoplamiento de las piezas es esencial para el funcionamiento.", + "example_sentence_english": "The coupling of the parts is essential for the operation.", + "pos": "noun", + "word_frequency": 18120 + }, + { + "word": "adherente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adherent", + "example_sentence_native": "Es un adherente fiel a las ideas del partido.", + "example_sentence_english": "He is a faithful adherent to the party's ideas.", + "pos": "noun", + "word_frequency": 18121 + }, + { + "word": "ahumar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to smoke (food)", + "example_sentence_native": "Vamos a ahumar el salmón para la cena.", + "example_sentence_english": "We are going to smoke the salmon for dinner.", + "pos": "verb", + "word_frequency": 18122 + }, + { + "word": "aliar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ally", + "example_sentence_native": "Los dos países decidieron aliar sus fuerzas.", + "example_sentence_english": "The two countries decided to ally their forces.", + "pos": "verb", + "word_frequency": 18123 + }, + { + "word": "amuleto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amulet", + "example_sentence_native": "Llevaba un amuleto de la suerte en el bolsillo.", + "example_sentence_english": "He carried a lucky amulet in his pocket.", + "pos": "noun", + "word_frequency": 18126 + }, + { + "word": "anclar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to anchor", + "example_sentence_native": "El barco ancló cerca de la costa.", + "example_sentence_english": "The ship anchored near the coast.", + "pos": "verb", + "word_frequency": 18127 + }, + { + "word": "arcada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archway", + "example_sentence_native": "Pasamos por una hermosa arcada de piedra.", + "example_sentence_english": "We passed through a beautiful stone archway.", + "pos": "noun", + "word_frequency": 18130 + }, + { + "word": "asian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Asian", + "example_sentence_native": "La cultura asiática es muy diversa.", + "example_sentence_english": "Asian culture is very diverse.", + "pos": "adjective", + "word_frequency": 18132 + }, + { + "word": "automaticamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatically", + "example_sentence_native": "La puerta se abrió automáticamente.", + "example_sentence_english": "The door opened automatically.", + "pos": "adverb", + "word_frequency": 18133 + }, + { + "word": "baroneso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baroness", + "example_sentence_native": "La baronesa asistió a la gala.", + "example_sentence_english": "The baroness attended the gala.", + "pos": "noun", + "word_frequency": 18138 + }, + { + "word": "boxer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxer", + "example_sentence_native": "El boxeador ganó el combate por nocaut.", + "example_sentence_english": "The boxer won the fight by knockout.", + "pos": "noun", + "word_frequency": 18140 + }, + { + "word": "bufón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jester", + "example_sentence_native": "El bufón entretenía a la corte con sus chistes.", + "example_sentence_english": "The jester entertained the court with his jokes.", + "pos": "noun", + "word_frequency": 18144 + }, + { + "word": "califato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caliphate", + "example_sentence_native": "El califato de Córdoba fue un importante centro cultural.", + "example_sentence_english": "The Caliphate of Cordoba was an important cultural center.", + "pos": "noun", + "word_frequency": 18145 + }, + { + "word": "canino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canine", + "example_sentence_native": "Los dientes caninos son puntiagudos.", + "example_sentence_english": "Canine teeth are pointed.", + "pos": "adjective", + "word_frequency": 18146 + }, + { + "word": "cantero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stonemason", + "example_sentence_native": "El cantero talló la piedra con gran habilidad.", + "example_sentence_english": "The stonemason carved the stone with great skill.", + "pos": "noun", + "word_frequency": 18147 + }, + { + "word": "capitalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capitalize", + "example_sentence_native": "Debemos capitalizar esta oportunidad.", + "example_sentence_english": "We must capitalize on this opportunity.", + "pos": "verb", + "word_frequency": 18148 + }, + { + "word": "capricornio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Capricorn", + "example_sentence_native": "Mi signo zodiacal es Capricornio.", + "example_sentence_english": "My zodiac sign is Capricorn.", + "pos": "noun", + "word_frequency": 18149 + }, + { + "word": "cardinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardinal", + "example_sentence_native": "El cardenal es un pájaro de color rojo brillante.", + "example_sentence_english": "The cardinal is a bright red bird.", + "pos": "noun", + "word_frequency": 18151 + }, + { + "word": "cañería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piping", + "example_sentence_native": "Hay una fuga en la cañería del baño.", + "example_sentence_english": "There's a leak in the bathroom piping.", + "pos": "noun", + "word_frequency": 18155 + }, + { + "word": "centrocampista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "midfielder", + "example_sentence_native": "El centrocampista controló el balón con maestría.", + "example_sentence_english": "The midfielder controlled the ball with mastery.", + "pos": "noun", + "word_frequency": 18157 + }, + { + "word": "cilantro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cilantro;coriander", + "example_sentence_native": "Me gusta poner cilantro fresco en mi sopa.", + "example_sentence_english": "I like to put fresh cilantro in my soup.", + "pos": "noun", + "word_frequency": 18162 + }, + { + "word": "cinto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belt", + "example_sentence_native": "Necesito un cinto nuevo para mis pantalones.", + "example_sentence_english": "I need a new belt for my pants.", + "pos": "noun", + "word_frequency": 18163 + }, + { + "word": "clarificar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clarify", + "example_sentence_native": "Por favor, ¿podrías clarificar ese punto?", + "example_sentence_english": "Please, could you clarify that point?", + "pos": "verb", + "word_frequency": 18164 + }, + { + "word": "coagulación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coagulation", + "example_sentence_native": "La coagulación de la sangre es un proceso vital.", + "example_sentence_english": "Blood coagulation is a vital process.", + "pos": "noun", + "word_frequency": 18166 + }, + { + "word": "cobijo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shelter;refuge", + "example_sentence_native": "Buscamos cobijo de la tormenta.", + "example_sentence_english": "We sought shelter from the storm.", + "pos": "noun", + "word_frequency": 18167 + }, + { + "word": "colector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collector;manifold;sewer", + "example_sentence_native": "El colector de aguas residuales estaba obstruido.", + "example_sentence_english": "The wastewater collector was clogged.", + "pos": "noun", + "word_frequency": 18168 + }, + { + "word": "combi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minivan;shared taxi", + "example_sentence_native": "Tomamos una combi para ir al centro.", + "example_sentence_english": "We took a combi (minivan/shared taxi) to go downtown.", + "pos": "noun", + "word_frequency": 18169 + }, + { + "word": "compartimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compartment", + "example_sentence_native": "Guarda tus cosas en el compartimento superior.", + "example_sentence_english": "Store your things in the overhead compartment.", + "pos": "noun", + "word_frequency": 18170 + }, + { + "word": "compasivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassionate", + "example_sentence_native": "Es una persona muy compasiva con los animales.", + "example_sentence_english": "She is a very compassionate person towards animals.", + "pos": "adjective", + "word_frequency": 18171 + }, + { + "word": "confinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confined", + "example_sentence_native": "Estuvo confinado en su casa durante la cuarentena.", + "example_sentence_english": "He was confined to his house during the quarantine.", + "pos": "adjective", + "word_frequency": 18172 + }, + { + "word": "conflictivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conflictive;problematic", + "example_sentence_native": "Es un tema muy conflictivo que requiere debate.", + "example_sentence_english": "It's a very conflictive issue that requires debate.", + "pos": "adjective", + "word_frequency": 18173 + }, + { + "word": "cordialidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cordiality;friendliness", + "example_sentence_native": "Nos recibieron con gran cordialidad.", + "example_sentence_english": "They received us with great cordiality.", + "pos": "noun", + "word_frequency": 18175 + }, + { + "word": "cuadrilátero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrilateral;boxing ring", + "example_sentence_native": "El boxeador entró al cuadrilátero.", + "example_sentence_english": "The boxer entered the boxing ring.", + "pos": "noun", + "word_frequency": 18179 + }, + { + "word": "cubeta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bucket;tray", + "example_sentence_native": "Llena la cubeta con agua.", + "example_sentence_english": "Fill the bucket with water.", + "pos": "noun", + "word_frequency": 18180 + }, + { + "word": "cursado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "studied;taken (a course)", + "example_sentence_native": "Ya he cursado todas las asignaturas obligatorias.", + "example_sentence_english": "I have already taken all the compulsory subjects.", + "pos": "adjective", + "word_frequency": 18183 + }, + { + "word": "deliberante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deliberative", + "example_sentence_native": "El comité deliberante se reunirá mañana.", + "example_sentence_english": "The deliberative committee will meet tomorrow.", + "pos": "adjective", + "word_frequency": 18184 + }, + { + "word": "desahogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief;catharsis;outlet", + "example_sentence_native": "Necesitaba un desahogo después de un día estresante.", + "example_sentence_english": "He needed an outlet after a stressful day.", + "pos": "noun", + "word_frequency": 18185 + }, + { + "word": "descabellado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;absurd;far-fetched", + "example_sentence_native": "Su idea me parece completamente descabellada.", + "example_sentence_english": "His idea seems completely absurd to me.", + "pos": "adjective", + "word_frequency": 18186 + }, + { + "word": "descontrol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lack of control;chaos", + "example_sentence_native": "Hubo un descontrol total en la manifestación.", + "example_sentence_english": "There was total chaos at the demonstration.", + "pos": "noun", + "word_frequency": 18187 + }, + { + "word": "desolado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desolate;heartbroken", + "example_sentence_native": "Se sentía desolado después de la noticia.", + "example_sentence_english": "He felt heartbroken after the news.", + "pos": "adjective", + "word_frequency": 18188 + }, + { + "word": "desplome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collapse;plummet;downfall", + "example_sentence_native": "El desplome del edificio fue repentino.", + "example_sentence_english": "The collapse of the building was sudden.", + "pos": "noun", + "word_frequency": 18189 + }, + { + "word": "destapar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to uncover;to uncap;to unblock", + "example_sentence_native": "Por favor, destapa la botella de vino.", + "example_sentence_english": "Please, uncap the wine bottle.", + "pos": "verb", + "word_frequency": 18190 + }, + { + "word": "disipar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissipate;to dispel", + "example_sentence_native": "El sol disipó la niebla rápidamente.", + "example_sentence_english": "The sun quickly dissipated the fog.", + "pos": "verb", + "word_frequency": 18191 + }, + { + "word": "divergencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divergence", + "example_sentence_native": "Hay una clara divergencia de opiniones entre ellos.", + "example_sentence_english": "There is a clear divergence of opinions between them.", + "pos": "noun", + "word_frequency": 18192 + }, + { + "word": "divergente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divergent", + "example_sentence_native": "Sus puntos de vista son completamente divergentes.", + "example_sentence_english": "Their viewpoints are completely divergent.", + "pos": "adjective", + "word_frequency": 18193 + }, + { + "word": "divorciar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to divorce", + "example_sentence_native": "Decidieron divorciarse después de veinte años de matrimonio.", + "example_sentence_english": "They decided to divorce after twenty years of marriage.", + "pos": "verb", + "word_frequency": 18194 + }, + { + "word": "ebriedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkenness;intoxication", + "example_sentence_native": "Fue arrestado por conducir en estado de ebriedad.", + "example_sentence_english": "He was arrested for driving while intoxicated.", + "pos": "noun", + "word_frequency": 18196 + }, + { + "word": "empalme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junction;splice;connection", + "example_sentence_native": "El tren hizo un empalme en la estación principal.", + "example_sentence_english": "The train made a connection at the main station.", + "pos": "noun", + "word_frequency": 18200 + }, + { + "word": "encíclica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encyclical", + "example_sentence_native": "El Papa publicó una nueva encíclica sobre la justicia social.", + "example_sentence_english": "The Pope published a new encyclical on social justice.", + "pos": "noun", + "word_frequency": 18201 + }, + { + "word": "enfurecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enraged;furious", + "example_sentence_native": "El cliente estaba enfurecido por el mal servicio.", + "example_sentence_english": "The customer was enraged by the bad service.", + "pos": "adjective", + "word_frequency": 18202 + }, + { + "word": "entreno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training (session)", + "example_sentence_native": "Hoy tengo un entreno muy duro en el gimnasio.", + "example_sentence_english": "Today I have a very hard training session at the gym.", + "pos": "noun", + "word_frequency": 18203 + }, + { + "word": "espectaculo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "show;spectacle", + "example_sentence_native": "El espectáculo de luces fue increíble.", + "example_sentence_english": "The light show was incredible.", + "pos": "noun", + "word_frequency": 18204 + }, + { + "word": "esquivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elusive;evasive;shy", + "example_sentence_native": "Es una persona muy esquiva, difícil de conocer.", + "example_sentence_english": "He is a very elusive person, difficult to get to know.", + "pos": "adjective", + "word_frequency": 18206 + }, + { + "word": "estantería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bookshelf;shelving unit", + "example_sentence_native": "Necesito una estantería nueva para mis libros.", + "example_sentence_english": "I need a new bookshelf for my books.", + "pos": "noun", + "word_frequency": 18208 + }, + { + "word": "exageradamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaggeratedly;excessively", + "example_sentence_native": "Reaccionó exageradamente a la noticia.", + "example_sentence_english": "He reacted exaggeratedly to the news.", + "pos": "adverb", + "word_frequency": 18209 + }, + { + "word": "exprés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "express", + "example_sentence_native": "Tomamos un café exprés antes de irnos.", + "example_sentence_english": "We had an express coffee before leaving.", + "pos": "adjective", + "word_frequency": 18210 + }, + { + "word": "extension", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extension;scope;area", + "example_sentence_native": "La extensión del terreno es considerable.", + "example_sentence_english": "The extension of the land is considerable.", + "pos": "noun", + "word_frequency": 18211 + }, + { + "word": "falsificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to falsify;to forge", + "example_sentence_native": "Intentó falsificar su firma en el documento.", + "example_sentence_english": "He tried to falsify his signature on the document.", + "pos": "verb", + "word_frequency": 18212 + }, + { + "word": "federativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federative;federal", + "example_sentence_native": "La estructura federativa del país es compleja.", + "example_sentence_english": "The federative structure of the country is complex.", + "pos": "adjective", + "word_frequency": 18213 + }, + { + "word": "gendarme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gendarme;police officer", + "example_sentence_native": "El gendarme controlaba el tráfico en la frontera.", + "example_sentence_english": "The gendarme controlled traffic at the border.", + "pos": "noun", + "word_frequency": 18222 + }, + { + "word": "gilada", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonsense;foolishness", + "example_sentence_native": "No le hagas caso, está diciendo puras giladas.", + "example_sentence_english": "Don't pay attention to him, he's saying pure nonsense.", + "pos": "noun", + "word_frequency": 18224 + }, + { + "word": "grabador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recorder;engraver", + "example_sentence_native": "Necesito un grabador de voz para la entrevista.", + "example_sentence_english": "I need a voice recorder for the interview.", + "pos": "noun", + "word_frequency": 18225 + }, + { + "word": "grandote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very big;huge", + "example_sentence_native": "Compramos un perro grandote para la casa.", + "example_sentence_english": "We bought a very big dog for the house.", + "pos": "adjective", + "word_frequency": 18226 + }, + { + "word": "groso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great;awesome;big shot", + "example_sentence_native": "Ese músico es un groso, me encanta su trabajo.", + "example_sentence_english": "That musician is awesome, I love his work.", + "pos": "adjective", + "word_frequency": 18227 + }, + { + "word": "idear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devise;to conceive;to come up with", + "example_sentence_native": "Necesitamos idear un plan para el proyecto.", + "example_sentence_english": "We need to devise a plan for the project.", + "pos": "verb", + "word_frequency": 18230 + }, + { + "word": "iluso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naive;deluded;idealistic", + "example_sentence_native": "Es un iluso si cree que eso va a funcionar.", + "example_sentence_english": "He is naive if he thinks that will work.", + "pos": "adjective", + "word_frequency": 18231 + }, + { + "word": "indestructible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indestructible", + "example_sentence_native": "Este material parece indestructible.", + "example_sentence_english": "This material seems indestructible.", + "pos": "adjective", + "word_frequency": 18233 + }, + { + "word": "inferir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to infer;to deduce", + "example_sentence_native": "Podemos inferir su intención por sus acciones.", + "example_sentence_english": "We can infer his intention from his actions.", + "pos": "verb", + "word_frequency": 18234 + }, + { + "word": "ingestión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ingestion", + "example_sentence_native": "La ingestión de ciertos hongos puede ser peligrosa.", + "example_sentence_english": "The ingestion of certain mushrooms can be dangerous.", + "pos": "noun", + "word_frequency": 18235 + }, + { + "word": "inhabilitado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disqualified;disabled;barred", + "example_sentence_native": "Fue inhabilitado para ejercer su profesión.", + "example_sentence_english": "He was disqualified from practicing his profession.", + "pos": "adjective", + "word_frequency": 18236 + }, + { + "word": "intencionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentional;deliberate", + "example_sentence_native": "Fue un acto intencionado, no un accidente.", + "example_sentence_english": "It was an intentional act, not an accident.", + "pos": "adjective", + "word_frequency": 18240 + }, + { + "word": "inutilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uselessness;futility", + "example_sentence_native": "La inutilidad de sus esfuerzos era evidente.", + "example_sentence_english": "The uselessness of his efforts was evident.", + "pos": "noun", + "word_frequency": 18241 + }, + { + "word": "inverosímil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improbable;unlikely", + "example_sentence_native": "Su historia era tan inverosímil que nadie le creyó.", + "example_sentence_english": "His story was so improbable that no one believed him.", + "pos": "adjective", + "word_frequency": 18242 + }, + { + "word": "jovencito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very young;youthful", + "example_sentence_native": "El jovencito estudiante aprendió rápido.", + "example_sentence_english": "The very young student learned quickly.", + "pos": "adjective", + "word_frequency": 18246 + }, + { + "word": "justiciero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigilante;avenger", + "example_sentence_native": "El justiciero enmascarado luchaba contra el crimen.", + "example_sentence_english": "The masked vigilante fought against crime.", + "pos": "noun", + "word_frequency": 18247 + }, + { + "word": "kurdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Kurd;Kurdish", + "example_sentence_native": "Habla kurdo y vive en la región kurda.", + "example_sentence_english": "He speaks Kurdish and lives in the Kurdish region.", + "pos": "noun", + "word_frequency": 18250 + }, + { + "word": "lacayo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lackey;flunky", + "example_sentence_native": "El lacayo obedecía todas las órdenes de su amo.", + "example_sentence_english": "The lackey obeyed all his master's orders.", + "pos": "noun", + "word_frequency": 18251 + }, + { + "word": "lacio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straight (hair);limp", + "example_sentence_native": "Tiene el pelo lacio y brillante.", + "example_sentence_english": "She has straight and shiny hair.", + "pos": "adjective", + "word_frequency": 18252 + }, + { + "word": "lactosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lactose", + "example_sentence_native": "Muchas personas son intolerantes a la lactosa.", + "example_sentence_english": "Many people are lactose intolerant.", + "pos": "noun", + "word_frequency": 18253 + }, + { + "word": "lechero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "milky;dairy (adj);milkman (noun)", + "example_sentence_native": "El producto lechero es muy popular.", + "example_sentence_english": "The dairy product is very popular.", + "pos": "adjective", + "word_frequency": 18256 + }, + { + "word": "libanés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lebanese", + "example_sentence_native": "La comida libanesa es deliciosa.", + "example_sentence_english": "Lebanese food is delicious.", + "pos": "adjective", + "word_frequency": 18258 + }, + { + "word": "lugarteniente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lieutenant;deputy", + "example_sentence_native": "El lugarteniente asumió el mando en ausencia del capitán.", + "example_sentence_english": "The lieutenant took command in the captain's absence.", + "pos": "noun", + "word_frequency": 18259 + }, + { + "word": "medallista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medalist", + "example_sentence_native": "El atleta es un medallista olímpico.", + "example_sentence_english": "The athlete is an Olympic medalist.", + "pos": "noun", + "word_frequency": 18261 + }, + { + "word": "melodrama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melodrama", + "example_sentence_native": "La película era un melodrama lleno de emociones.", + "example_sentence_english": "The movie was a melodrama full of emotions.", + "pos": "noun", + "word_frequency": 18262 + }, + { + "word": "militarización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militarization", + "example_sentence_native": "La militarización de la frontera causó preocupación.", + "example_sentence_english": "The militarization of the border caused concern.", + "pos": "noun", + "word_frequency": 18263 + }, + { + "word": "mineria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mining", + "example_sentence_native": "La minería es una industria importante en la región.", + "example_sentence_english": "Mining is an important industry in the region.", + "pos": "noun", + "word_frequency": 18264 + }, + { + "word": "molusco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mollusk", + "example_sentence_native": "El pulpo es un tipo de molusco.", + "example_sentence_english": "The octopus is a type of mollusk.", + "pos": "noun", + "word_frequency": 18267 + }, + { + "word": "muleta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crutch;cape (bullfighting)", + "example_sentence_native": "Necesitó una muleta para caminar después de la lesión.", + "example_sentence_english": "He needed a crutch to walk after the injury.", + "pos": "noun", + "word_frequency": 18269 + }, + { + "word": "nitrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nitrate", + "example_sentence_native": "Los nitratos se usan en fertilizantes.", + "example_sentence_english": "Nitrates are used in fertilizers.", + "pos": "noun", + "word_frequency": 18270 + }, + { + "word": "nostálgico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nostalgic", + "example_sentence_native": "Se sentía nostálgico por su infancia.", + "example_sentence_english": "He felt nostalgic for his childhood.", + "pos": "adjective", + "word_frequency": 18273 + }, + { + "word": "novel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "novel;new;inexperienced", + "example_sentence_native": "Es un autor novel con mucho talento.", + "example_sentence_english": "He is a novel author with a lot of talent.", + "pos": "adjective", + "word_frequency": 18274 + }, + { + "word": "nutricionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutritionist", + "example_sentence_native": "Consultó a un nutricionista para mejorar su dieta.", + "example_sentence_english": "He consulted a nutritionist to improve his diet.", + "pos": "noun", + "word_frequency": 18275 + }, + { + "word": "nutritivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutritious", + "example_sentence_native": "Las frutas y verduras son muy nutritivas.", + "example_sentence_english": "Fruits and vegetables are very nutritious.", + "pos": "adjective", + "word_frequency": 18276 + }, + { + "word": "ocupa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squatter;occupier", + "example_sentence_native": "La policía desalojó a los okupas del edificio abandonado.", + "example_sentence_english": "The police evicted the squatters from the abandoned building.", + "pos": "noun", + "word_frequency": 18279 + }, + { + "word": "patógeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathogenic", + "example_sentence_native": "Las bacterias patógenas pueden causar enfermedades graves.", + "example_sentence_english": "Pathogenic bacteria can cause serious diseases.", + "pos": "adjective", + "word_frequency": 18283 + }, + { + "word": "paulatino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gradual;slow", + "example_sentence_native": "El cambio fue paulatino, no repentino.", + "example_sentence_english": "The change was gradual, not sudden.", + "pos": "adjective", + "word_frequency": 18284 + }, + { + "word": "pequeñito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiny;very small", + "example_sentence_native": "Tiene un perrito pequeñito que le encanta.", + "example_sentence_english": "She has a tiny dog that she loves.", + "pos": "adjective", + "word_frequency": 18285 + }, + { + "word": "pertinencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevance;pertinence", + "example_sentence_native": "La pertinencia de su argumento es innegable.", + "example_sentence_english": "The relevance of his argument is undeniable.", + "pos": "noun", + "word_frequency": 18286 + }, + { + "word": "picadura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sting;bite (insect)", + "example_sentence_native": "Me puse crema en la picadura de mosquito.", + "example_sentence_english": "I put cream on the mosquito bite.", + "pos": "noun", + "word_frequency": 18287 + }, + { + "word": "pina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pineapple", + "example_sentence_native": "Me gusta el jugo de piña natural.", + "example_sentence_english": "I like natural pineapple juice.", + "pos": "noun", + "word_frequency": 18288 + }, + { + "word": "piqué", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pique (fabric)", + "example_sentence_native": "La camisa está hecha de tela de piqué.", + "example_sentence_english": "The shirt is made of pique fabric.", + "pos": "noun", + "word_frequency": 18289 + }, + { + "word": "pistolero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gunman;shooter", + "example_sentence_native": "El pistolero fue capturado después de un tiroteo.", + "example_sentence_english": "The gunman was captured after a shootout.", + "pos": "noun", + "word_frequency": 18290 + }, + { + "word": "polilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moth", + "example_sentence_native": "Una polilla voló hacia la luz.", + "example_sentence_english": "A moth flew towards the light.", + "pos": "noun", + "word_frequency": 18292 + }, + { + "word": "politólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "political scientist", + "example_sentence_native": "El politólogo analizó las tendencias electorales.", + "example_sentence_english": "The political scientist analyzed the electoral trends.", + "pos": "noun", + "word_frequency": 18293 + }, + { + "word": "pomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doorknob;jar (colloquial)", + "example_sentence_native": "Gira el pomo para abrir la puerta.", + "example_sentence_english": "Turn the doorknob to open the door.", + "pos": "noun", + "word_frequency": 18294 + }, + { + "word": "porqueria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubbish;junk;filth", + "example_sentence_native": "No quiero comer esa porquería.", + "example_sentence_english": "I don't want to eat that rubbish.", + "pos": "noun", + "word_frequency": 18295 + }, + { + "word": "precandidato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-candidate;aspiring candidate", + "example_sentence_native": "El precandidato presentó su programa de gobierno.", + "example_sentence_english": "The pre-candidate presented his government program.", + "pos": "noun", + "word_frequency": 18296 + }, + { + "word": "predilecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favorite;preferred", + "example_sentence_native": "El azul es su color predilecto.", + "example_sentence_english": "Blue is her favorite color.", + "pos": "adjective", + "word_frequency": 18297 + }, + { + "word": "preponderante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preponderant;dominant", + "example_sentence_native": "Su influencia fue preponderante en la decisión final.", + "example_sentence_english": "His influence was preponderant in the final decision.", + "pos": "adjective", + "word_frequency": 18298 + }, + { + "word": "primate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primate", + "example_sentence_native": "Los monos y los humanos son primates.", + "example_sentence_english": "Monkeys and humans are primates.", + "pos": "noun", + "word_frequency": 18299 + }, + { + "word": "protagónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leading;starring;protagonist (adj.)", + "example_sentence_native": "Tuvo un papel protagónico en la película.", + "example_sentence_english": "He had a leading role in the movie.", + "pos": "adjective", + "word_frequency": 18302 + }, + { + "word": "psicologia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "psychology", + "example_sentence_native": "Estudia psicología en la universidad.", + "example_sentence_english": "She studies psychology at the university.", + "pos": "noun", + "word_frequency": 18303 + }, + { + "word": "psicoterapia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychotherapy", + "example_sentence_native": "La psicoterapia puede ayudar a manejar la ansiedad.", + "example_sentence_english": "Psychotherapy can help manage anxiety.", + "pos": "noun", + "word_frequency": 18304 + }, + { + "word": "recluido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secluded;confined;reclusive", + "example_sentence_native": "Pasó sus últimos años recluido en su casa.", + "example_sentence_english": "He spent his last years secluded in his house.", + "pos": "adjective", + "word_frequency": 18306 + }, + { + "word": "rectoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rectorate;rectory", + "example_sentence_native": "La rectoría de la universidad está en el edificio principal.", + "example_sentence_english": "The university's rectorate is in the main building.", + "pos": "noun", + "word_frequency": 18307 + }, + { + "word": "regido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governed;ruled;guided", + "example_sentence_native": "El país está regido por una constitución.", + "example_sentence_english": "The country is governed by a constitution.", + "pos": "adjective", + "word_frequency": 18308 + }, + { + "word": "religiosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "religiously;strictly;punctually", + "example_sentence_native": "Cumple sus promesas religiosamente.", + "example_sentence_english": "He keeps his promises religiously.", + "pos": "adverb", + "word_frequency": 18309 + }, + { + "word": "repeler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repel;to deter", + "example_sentence_native": "El repelente ayuda a repeler los mosquitos.", + "example_sentence_english": "The repellent helps to repel mosquitoes.", + "pos": "verb", + "word_frequency": 18310 + }, + { + "word": "reproducido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproduced;copied", + "example_sentence_native": "La imagen fue reproducida en varios libros.", + "example_sentence_english": "The image was reproduced in several books.", + "pos": "adjective", + "word_frequency": 18311 + }, + { + "word": "retrete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toilet;lavatory", + "example_sentence_native": "El retrete está en el pasillo.", + "example_sentence_english": "The toilet is in the hallway.", + "pos": "noun", + "word_frequency": 18312 + }, + { + "word": "roche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarrassment;shame (Latin America)", + "example_sentence_native": "Me dio mucho roche hablar en público.", + "example_sentence_english": "I felt a lot of embarrassment speaking in public.", + "pos": "noun", + "word_frequency": 18315 + }, + { + "word": "ruiseñor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightingale", + "example_sentence_native": "El ruiseñor canta hermosamente por la noche.", + "example_sentence_english": "The nightingale sings beautifully at night.", + "pos": "noun", + "word_frequency": 18316 + }, + { + "word": "sacrificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrificed;dedicated;hard-working", + "example_sentence_native": "Es un trabajo muy sacrificado, pero gratificante.", + "example_sentence_english": "It's a very dedicated job, but rewarding.", + "pos": "adjective", + "word_frequency": 18319 + }, + { + "word": "salitre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saltpeter", + "example_sentence_native": "Las paredes antiguas estaban cubiertas de salitre.", + "example_sentence_english": "The old walls were covered in saltpeter.", + "pos": "noun", + "word_frequency": 18321 + }, + { + "word": "saqueador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looter", + "example_sentence_native": "Los saqueadores se llevaron todo lo de valor.", + "example_sentence_english": "The looters took everything of value.", + "pos": "noun", + "word_frequency": 18322 + }, + { + "word": "seccional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sectional", + "example_sentence_native": "El sofá seccional es muy cómodo.", + "example_sentence_english": "The sectional sofa is very comfortable.", + "pos": "adjective", + "word_frequency": 18323 + }, + { + "word": "simbología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symbology", + "example_sentence_native": "La simbología de la obra es compleja.", + "example_sentence_english": "The symbology of the work is complex.", + "pos": "noun", + "word_frequency": 18326 + }, + { + "word": "subdesarrollo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "underdevelopment", + "example_sentence_native": "Muchos países luchan contra el subdesarrollo.", + "example_sentence_english": "Many countries fight against underdevelopment.", + "pos": "noun", + "word_frequency": 18329 + }, + { + "word": "subversivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subversive", + "example_sentence_native": "Sus ideas eran consideradas subversivas.", + "example_sentence_english": "His ideas were considered subversive.", + "pos": "adjective", + "word_frequency": 18330 + }, + { + "word": "succión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suction", + "example_sentence_native": "La bomba crea una fuerte succión.", + "example_sentence_english": "The pump creates strong suction.", + "pos": "noun", + "word_frequency": 18331 + }, + { + "word": "suicido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suicide", + "example_sentence_native": "La prevención del suicidio es crucial.", + "example_sentence_english": "Suicide prevention is crucial.", + "pos": "noun", + "word_frequency": 18332 + }, + { + "word": "tajada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slice", + "example_sentence_native": "Me comí una tajada de sandía.", + "example_sentence_english": "I ate a slice of watermelon.", + "pos": "noun", + "word_frequency": 18334 + }, + { + "word": "tecno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "techno", + "example_sentence_native": "Le gusta mucho la música tecno.", + "example_sentence_english": "He really likes techno music.", + "pos": "noun", + "word_frequency": 18335 + }, + { + "word": "tedioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tedious", + "example_sentence_native": "La tarea era larga y tediosa.", + "example_sentence_english": "The task was long and tedious.", + "pos": "adjective", + "word_frequency": 18336 + }, + { + "word": "temario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "syllabus", + "example_sentence_native": "El temario del curso es muy extenso.", + "example_sentence_english": "The course syllabus is very extensive.", + "pos": "noun", + "word_frequency": 18337 + }, + { + "word": "toga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toga", + "example_sentence_native": "El juez vestía una toga negra.", + "example_sentence_english": "The judge wore a black toga.", + "pos": "noun", + "word_frequency": 18338 + }, + { + "word": "transfusión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfusion", + "example_sentence_native": "Necesitó una transfusión de sangre urgente.", + "example_sentence_english": "He needed an urgent blood transfusion.", + "pos": "noun", + "word_frequency": 18339 + }, + { + "word": "transportador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transporter", + "example_sentence_native": "Usamos un transportador para medir el ángulo.", + "example_sentence_english": "We used a protractor to measure the angle.", + "pos": "noun", + "word_frequency": 18340 + }, + { + "word": "tumulto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tumult", + "example_sentence_native": "Hubo un gran tumulto en la plaza.", + "example_sentence_english": "There was a great tumult in the square.", + "pos": "noun", + "word_frequency": 18342 + }, + { + "word": "turbulencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbulence", + "example_sentence_native": "El avión experimentó una fuerte turbulencia.", + "example_sentence_english": "The plane experienced strong turbulence.", + "pos": "noun", + "word_frequency": 18343 + }, + { + "word": "turquesa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turquoise", + "example_sentence_native": "El mar Caribe es de color turquesa.", + "example_sentence_english": "The Caribbean Sea is turquoise in color.", + "pos": "noun", + "word_frequency": 18344 + }, + { + "word": "vasija", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vessel", + "example_sentence_native": "Encontraron una vasija antigua en la excavación.", + "example_sentence_english": "They found an ancient vessel in the excavation.", + "pos": "noun", + "word_frequency": 18351 + }, + { + "word": "vesícula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vesicle", + "example_sentence_native": "La vesícula biliar almacena la bilis.", + "example_sentence_english": "The gallbladder stores bile.", + "pos": "noun", + "word_frequency": 18353 + }, + { + "word": "abreviado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbreviated;shortened", + "example_sentence_native": "El informe fue presentado en una versión abreviada.", + "example_sentence_english": "The report was presented in an abbreviated version.", + "pos": "adjective", + "word_frequency": 18361 + }, + { + "word": "adherencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adherence;grip", + "example_sentence_native": "La adherencia de los neumáticos es crucial para la seguridad.", + "example_sentence_english": "Tire grip is crucial for safety.", + "pos": "noun", + "word_frequency": 18363 + }, + { + "word": "aditivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additive", + "example_sentence_native": "Este producto no contiene aditivos artificiales.", + "example_sentence_english": "This product contains no artificial additives.", + "pos": "noun", + "word_frequency": 18364 + }, + { + "word": "adrede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on purpose;deliberately", + "example_sentence_native": "Lo hizo adrede para molestarme.", + "example_sentence_english": "He did it on purpose to annoy me.", + "pos": "adverb", + "word_frequency": 18366 + }, + { + "word": "afectuoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affectionate;warm", + "example_sentence_native": "Siempre fue muy afectuoso con sus nietos.", + "example_sentence_english": "He was always very affectionate with his grandchildren.", + "pos": "adjective", + "word_frequency": 18368 + }, + { + "word": "agusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at ease;comfortable", + "example_sentence_native": "Me siento muy agusto en esta casa.", + "example_sentence_english": "I feel very comfortable in this house.", + "pos": "adverb", + "word_frequency": 18369 + }, + { + "word": "alentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encouraged;cheered up", + "example_sentence_native": "Se sintió alentado por las palabras de su entrenador.", + "example_sentence_english": "He felt encouraged by his coach's words.", + "pos": "adjective", + "word_frequency": 18370 + }, + { + "word": "allanar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to flatten;to raid (a house)", + "example_sentence_native": "La policía tuvo que allanar la casa para encontrar las pruebas.", + "example_sentence_english": "The police had to raid the house to find the evidence.", + "pos": "verb", + "word_frequency": 18371 + }, + { + "word": "amapola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poppy", + "example_sentence_native": "El campo estaba lleno de amapolas rojas.", + "example_sentence_english": "The field was full of red poppies.", + "pos": "noun", + "word_frequency": 18372 + }, + { + "word": "anteayer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the day before yesterday", + "example_sentence_native": "Fui al cine anteayer con mis amigos.", + "example_sentence_english": "I went to the cinema the day before yesterday with my friends.", + "pos": "adverb", + "word_frequency": 18373 + }, + { + "word": "antidisturbio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riot police officer;riot gear", + "example_sentence_native": "Los antidisturbios dispersaron a la multitud.", + "example_sentence_english": "The riot police dispersed the crowd.", + "pos": "noun", + "word_frequency": 18374 + }, + { + "word": "antifascista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-fascist", + "example_sentence_native": "Se unió al movimiento antifascista.", + "example_sentence_english": "He joined the anti-fascist movement.", + "pos": "adjective", + "word_frequency": 18375 + }, + { + "word": "anís", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anise;aniseed", + "example_sentence_native": "El anís se usa para dar sabor a algunos licores.", + "example_sentence_english": "Anise is used to flavor some liqueurs.", + "pos": "noun", + "word_frequency": 18376 + }, + { + "word": "apaciguar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to appease;to calm down", + "example_sentence_native": "Intentó apaciguar la situación con palabras amables.", + "example_sentence_english": "He tried to appease the situation with kind words.", + "pos": "verb", + "word_frequency": 18377 + }, + { + "word": "arcoíris", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rainbow", + "example_sentence_native": "Después de la lluvia, apareció un hermoso arcoíris.", + "example_sentence_english": "After the rain, a beautiful rainbow appeared.", + "pos": "noun", + "word_frequency": 18378 + }, + { + "word": "arrebatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to snatch;to seize", + "example_sentence_native": "El ladrón le arrebató el bolso.", + "example_sentence_english": "The thief snatched her purse.", + "pos": "verb", + "word_frequency": 18380 + }, + { + "word": "arándano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cranberry;blueberry", + "example_sentence_native": "Me gusta añadir arándanos a mi yogur.", + "example_sentence_english": "I like to add cranberries to my yogurt.", + "pos": "noun", + "word_frequency": 18381 + }, + { + "word": "atormentado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tormented;haunted", + "example_sentence_native": "El artista vivía una vida atormentada.", + "example_sentence_english": "The artist lived a tormented life.", + "pos": "adjective", + "word_frequency": 18385 + }, + { + "word": "autogobierno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-government;autonomy", + "example_sentence_native": "La región busca un mayor autogobierno.", + "example_sentence_english": "The region seeks greater self-government.", + "pos": "noun", + "word_frequency": 18386 + }, + { + "word": "avestruz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ostrich", + "example_sentence_native": "El avestruz es el ave más grande del mundo.", + "example_sentence_english": "The ostrich is the largest bird in the world.", + "pos": "noun", + "word_frequency": 18388 + }, + { + "word": "azur", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "azure;sky blue", + "example_sentence_native": "El cielo tenía un tono azur profundo.", + "example_sentence_english": "The sky had a deep azure hue.", + "pos": "adjective", + "word_frequency": 18389 + }, + { + "word": "bardear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mock;to make fun of (Argentina)", + "example_sentence_native": "No me gusta que me barden por mi forma de vestir.", + "example_sentence_english": "I don't like being mocked for the way I dress.", + "pos": "verb", + "word_frequency": 18391 + }, + { + "word": "bolsón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large bag;satchel;pouch", + "example_sentence_native": "Llevaba un bolsón lleno de libros.", + "example_sentence_english": "He was carrying a large bag full of books.", + "pos": "noun", + "word_frequency": 18397 + }, + { + "word": "bondadoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kind;benevolent", + "example_sentence_native": "Es una persona muy bondadosa y siempre ayuda a los demás.", + "example_sentence_english": "She is a very kind person and always helps others.", + "pos": "adjective", + "word_frequency": 18398 + }, + { + "word": "calleja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alleyway;narrow street", + "example_sentence_native": "La calleja era tan estrecha que apenas cabía un coche.", + "example_sentence_english": "The alleyway was so narrow that a car barely fit.", + "pos": "noun", + "word_frequency": 18402 + }, + { + "word": "carcasa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casing;shell;housing", + "example_sentence_native": "La carcasa del teléfono estaba rota.", + "example_sentence_english": "The phone casing was broken.", + "pos": "noun", + "word_frequency": 18404 + }, + { + "word": "carretero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wagoner;cart driver", + "example_sentence_native": "El carretero transportaba mercancías al pueblo vecino.", + "example_sentence_english": "The wagoner transported goods to the neighboring village.", + "pos": "noun", + "word_frequency": 18406 + }, + { + "word": "casaca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jacket;tunic;coat", + "example_sentence_native": "El soldado vestía una casaca militar.", + "example_sentence_english": "The soldier wore a military jacket.", + "pos": "noun", + "word_frequency": 18407 + }, + { + "word": "cesto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket", + "example_sentence_native": "Puso la ropa sucia en el cesto.", + "example_sentence_english": "He put the dirty clothes in the basket.", + "pos": "noun", + "word_frequency": 18410 + }, + { + "word": "charca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puddle;pond", + "example_sentence_native": "Después de la lluvia, se formó una gran charca en el camino.", + "example_sentence_english": "After the rain, a large puddle formed on the road.", + "pos": "noun", + "word_frequency": 18411 + }, + { + "word": "cheto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "snob;rich kid (Argentina slang)", + "example_sentence_native": "Ese tipo es un cheto, siempre presume de su dinero.", + "example_sentence_english": "That guy is a snob, he always brags about his money.", + "pos": "noun", + "word_frequency": 18412 + }, + { + "word": "cisma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schism;division", + "example_sentence_native": "La iglesia sufrió un gran cisma en el siglo XI.", + "example_sentence_english": "The church suffered a great schism in the 11th century.", + "pos": "noun", + "word_frequency": 18413 + }, + { + "word": "clausurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closed;shut down;suspended", + "example_sentence_native": "El restaurante fue clausurado por problemas de higiene.", + "example_sentence_english": "The restaurant was shut down due to hygiene problems.", + "pos": "adjective", + "word_frequency": 18414 + }, + { + "word": "coerción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coercion", + "example_sentence_native": "Actuó bajo coerción, no por voluntad propia.", + "example_sentence_english": "He acted under coercion, not of his own free will.", + "pos": "noun", + "word_frequency": 18416 + }, + { + "word": "colindante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjacent;bordering;contiguous", + "example_sentence_native": "La propiedad colindante está en venta.", + "example_sentence_english": "The adjacent property is for sale.", + "pos": "adjective", + "word_frequency": 18417 + }, + { + "word": "comoda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chest of drawers;dresser", + "example_sentence_native": "Guardó la ropa en la cómoda del dormitorio.", + "example_sentence_english": "She kept the clothes in the bedroom dresser.", + "pos": "noun", + "word_frequency": 18418 + }, + { + "word": "concientizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise awareness;to make aware", + "example_sentence_native": "Es importante concientizar a la gente sobre el cambio climático.", + "example_sentence_english": "It's important to raise people's awareness about climate change.", + "pos": "verb", + "word_frequency": 18419 + }, + { + "word": "condecorado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decorated;awarded", + "example_sentence_native": "El héroe de guerra fue condecorado por su valentía.", + "example_sentence_english": "The war hero was decorated for his bravery.", + "pos": "adjective", + "word_frequency": 18420 + }, + { + "word": "consonante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consonant", + "example_sentence_native": "La \"b\" es una consonante.", + "example_sentence_english": "The \"b\" is a consonant.", + "pos": "noun", + "word_frequency": 18421 + }, + { + "word": "conspirar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conspire", + "example_sentence_native": "Los enemigos conspiraron contra el rey.", + "example_sentence_english": "The enemies conspired against the king.", + "pos": "verb", + "word_frequency": 18422 + }, + { + "word": "constitucionalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutionalist", + "example_sentence_native": "El partido se declaró constitucionalista.", + "example_sentence_english": "The party declared itself constitutionalist.", + "pos": "noun", + "word_frequency": 18423 + }, + { + "word": "copo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flake;tuft;scoop", + "example_sentence_native": "Cayó un copo de nieve en mi mano.", + "example_sentence_english": "A snowflake fell on my hand.", + "pos": "noun", + "word_frequency": 18424 + }, + { + "word": "corromper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to corrupt;to spoil", + "example_sentence_native": "El poder puede corromper a las personas.", + "example_sentence_english": "Power can corrupt people.", + "pos": "verb", + "word_frequency": 18425 + }, + { + "word": "corrosión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrosion", + "example_sentence_native": "La corrosión dañó la estructura metálica.", + "example_sentence_english": "Corrosion damaged the metal structure.", + "pos": "noun", + "word_frequency": 18426 + }, + { + "word": "cosilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little thing;trifle", + "example_sentence_native": "Solo es una cosilla sin importancia.", + "example_sentence_english": "It's just a little thing of no importance.", + "pos": "noun", + "word_frequency": 18427 + }, + { + "word": "críticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "critically", + "example_sentence_native": "Debemos analizar la situación críticamente.", + "example_sentence_english": "We must analyze the situation critically.", + "pos": "adverb", + "word_frequency": 18429 + }, + { + "word": "cándido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "candid;naive;innocent", + "example_sentence_native": "Su respuesta fue cándida y sincera.", + "example_sentence_english": "His answer was candid and sincere.", + "pos": "adjective", + "word_frequency": 18430 + }, + { + "word": "cónclave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conclave;secret meeting", + "example_sentence_native": "El cónclave eligió al nuevo papa.", + "example_sentence_english": "The conclave elected the new pope.", + "pos": "noun", + "word_frequency": 18431 + }, + { + "word": "desafio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "challenge", + "example_sentence_native": "Aceptó el desafío con entusiasmo.", + "example_sentence_english": "He accepted the challenge with enthusiasm.", + "pos": "noun", + "word_frequency": 18436 + }, + { + "word": "descartado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discarded;ruled out;dismissed", + "example_sentence_native": "La opción fue descartada después de un análisis.", + "example_sentence_english": "The option was ruled out after an analysis.", + "pos": "adjective", + "word_frequency": 18437 + }, + { + "word": "desenmascarar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unmask;to expose;to reveal", + "example_sentence_native": "La investigación logró desenmascarar al culpable.", + "example_sentence_english": "The investigation managed to unmask the culprit.", + "pos": "verb", + "word_frequency": 18438 + }, + { + "word": "deseoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eager;desirous;keen", + "example_sentence_native": "Estaba deseoso de empezar el nuevo proyecto.", + "example_sentence_english": "He was eager to start the new project.", + "pos": "adjective", + "word_frequency": 18439 + }, + { + "word": "desobedecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disobey", + "example_sentence_native": "No debes desobedecer las reglas.", + "example_sentence_english": "You should not disobey the rules.", + "pos": "verb", + "word_frequency": 18441 + }, + { + "word": "dibujito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little drawing;cartoon", + "example_sentence_native": "A mi hijo le encantan los dibujitos animados.", + "example_sentence_english": "My son loves cartoons.", + "pos": "noun", + "word_frequency": 18443 + }, + { + "word": "disuadir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dissuade", + "example_sentence_native": "Intentó disuadirla de su decisión.", + "example_sentence_english": "He tried to dissuade her from her decision.", + "pos": "verb", + "word_frequency": 18444 + }, + { + "word": "dolo", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "deceit;fraud", + "example_sentence_native": "La sentencia se basó en la existencia de dolo.", + "example_sentence_english": "The sentence was based on the existence of deceit.", + "pos": "noun", + "word_frequency": 18445 + }, + { + "word": "ejecutor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executor;enforcer", + "example_sentence_native": "Fue nombrado ejecutor del testamento.", + "example_sentence_english": "He was named executor of the will.", + "pos": "noun", + "word_frequency": 18447 + }, + { + "word": "electrodo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electrode", + "example_sentence_native": "Los electrodos se conectaron al aparato.", + "example_sentence_english": "The electrodes were connected to the device.", + "pos": "noun", + "word_frequency": 18448 + }, + { + "word": "elogiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praised;lauded", + "example_sentence_native": "Su trabajo fue muy elogiado por la crítica.", + "example_sentence_english": "His work was highly praised by critics.", + "pos": "adjective", + "word_frequency": 18450 + }, + { + "word": "embalaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "packaging;packing", + "example_sentence_native": "El embalaje protege el producto durante el envío.", + "example_sentence_english": "The packaging protects the product during shipping.", + "pos": "noun", + "word_frequency": 18451 + }, + { + "word": "embutido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sausage;cold cut", + "example_sentence_native": "Me gusta el embutido en el desayuno.", + "example_sentence_english": "I like cold cuts for breakfast.", + "pos": "noun", + "word_frequency": 18452 + }, + { + "word": "empapado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soaked;drenched", + "example_sentence_native": "Llegué a casa empapado por la lluvia.", + "example_sentence_english": "I arrived home drenched by the rain.", + "pos": "adjective", + "word_frequency": 18453 + }, + { + "word": "empatado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tied (in a game;score)", + "example_sentence_native": "El partido terminó empatado a cero.", + "example_sentence_english": "The match ended tied at zero.", + "pos": "adjective", + "word_frequency": 18454 + }, + { + "word": "enajenación", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "alienation;estrangement", + "example_sentence_native": "La enajenación social es un problema creciente.", + "example_sentence_english": "Social alienation is a growing problem.", + "pos": "noun", + "word_frequency": 18455 + }, + { + "word": "equiparar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to equate;to compare", + "example_sentence_native": "No se puede equiparar la riqueza con la felicidad.", + "example_sentence_english": "You cannot equate wealth with happiness.", + "pos": "verb", + "word_frequency": 18456 + }, + { + "word": "extinguir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extinguish;to die out", + "example_sentence_native": "Es importante proteger a las especies en peligro de extinguirse.", + "example_sentence_english": "It is important to protect endangered species from dying out.", + "pos": "verb", + "word_frequency": 18458 + }, + { + "word": "extremismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremism", + "example_sentence_native": "El extremismo puede llevar a la violencia.", + "example_sentence_english": "Extremism can lead to violence.", + "pos": "noun", + "word_frequency": 18459 + }, + { + "word": "fertilización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertilization", + "example_sentence_native": "La fertilización del suelo es crucial para la agricultura.", + "example_sentence_english": "Soil fertilization is crucial for agriculture.", + "pos": "noun", + "word_frequency": 18460 + }, + { + "word": "flotación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flotation;floating", + "example_sentence_native": "La flotación de los barcos depende de su densidad.", + "example_sentence_english": "The flotation of ships depends on their density.", + "pos": "noun", + "word_frequency": 18463 + }, + { + "word": "fogata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bonfire;campfire", + "example_sentence_native": "Hicimos una fogata para asar malvaviscos.", + "example_sentence_english": "We made a bonfire to roast marshmallows.", + "pos": "noun", + "word_frequency": 18464 + }, + { + "word": "fosfato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phosphate", + "example_sentence_native": "Los fosfatos son importantes para el crecimiento de las plantas.", + "example_sentence_english": "Phosphates are important for plant growth.", + "pos": "noun", + "word_frequency": 18465 + }, + { + "word": "frenético", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frantic;frenzied", + "example_sentence_native": "El ritmo de vida en la ciudad es frenético.", + "example_sentence_english": "The pace of life in the city is frantic.", + "pos": "adjective", + "word_frequency": 18467 + }, + { + "word": "fructífero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fruitful;productive", + "example_sentence_native": "Tuvimos una discusión muy fructífera.", + "example_sentence_english": "We had a very fruitful discussion.", + "pos": "adjective", + "word_frequency": 18468 + }, + { + "word": "gasa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gauze", + "example_sentence_native": "La enfermera cubrió la herida con gasa.", + "example_sentence_english": "The nurse covered the wound with gauze.", + "pos": "noun", + "word_frequency": 18469 + }, + { + "word": "genealógico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genealogical", + "example_sentence_native": "Estoy investigando mi árbol genealógico.", + "example_sentence_english": "I am researching my genealogical tree.", + "pos": "adjective", + "word_frequency": 18470 + }, + { + "word": "goleta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "schooner", + "example_sentence_native": "La goleta navegaba con el viento a favor.", + "example_sentence_english": "The schooner sailed with the wind in its favor.", + "pos": "noun", + "word_frequency": 18472 + }, + { + "word": "gueto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ghetto", + "example_sentence_native": "Vivían en un gueto en las afueras de la ciudad.", + "example_sentence_english": "They lived in a ghetto on the outskirts of the city.", + "pos": "noun", + "word_frequency": 18475 + }, + { + "word": "horriblemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horribly", + "example_sentence_native": "El plan salió horriblemente mal.", + "example_sentence_english": "The plan went horribly wrong.", + "pos": "adverb", + "word_frequency": 18482 + }, + { + "word": "impostor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impostor", + "example_sentence_native": "Descubrieron que era un impostor y no el verdadero rey.", + "example_sentence_english": "They discovered he was an impostor and not the real king.", + "pos": "noun", + "word_frequency": 18484 + }, + { + "word": "industrializado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrialized", + "example_sentence_native": "Es un país altamente industrializado.", + "example_sentence_english": "It is a highly industrialized country.", + "pos": "adjective", + "word_frequency": 18485 + }, + { + "word": "insaciable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insatiable", + "example_sentence_native": "Tenía un apetito insaciable por el conocimiento.", + "example_sentence_english": "He had an insatiable appetite for knowledge.", + "pos": "adjective", + "word_frequency": 18486 + }, + { + "word": "instruido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educated", + "example_sentence_native": "Es una persona muy instruida en historia.", + "example_sentence_english": "He is a very educated person in history.", + "pos": "adjective", + "word_frequency": 18487 + }, + { + "word": "intervencionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interventionism", + "example_sentence_native": "El debate sobre el intervencionismo estatal es constante.", + "example_sentence_english": "The debate about state interventionism is constant.", + "pos": "noun", + "word_frequency": 18488 + }, + { + "word": "intrínseco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrinsic", + "example_sentence_native": "El valor intrínseco de la obra de arte es incalculable.", + "example_sentence_english": "The intrinsic value of the artwork is incalculable.", + "pos": "adjective", + "word_frequency": 18489 + }, + { + "word": "jirafa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "giraffe", + "example_sentence_native": "La jirafa tiene un cuello muy largo.", + "example_sentence_english": "The giraffe has a very long neck.", + "pos": "noun", + "word_frequency": 18490 + }, + { + "word": "kart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kart", + "example_sentence_native": "Fuimos a un circuito de karts el fin de semana.", + "example_sentence_english": "We went to a go-kart track on the weekend.", + "pos": "noun", + "word_frequency": 18492 + }, + { + "word": "latigazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whiplash", + "example_sentence_native": "Sintió un latigazo en el cuello después del accidente.", + "example_sentence_english": "He felt a whiplash in his neck after the accident.", + "pos": "noun", + "word_frequency": 18494 + }, + { + "word": "leninista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Leninist", + "example_sentence_native": "Era un ferviente seguidor de las ideas leninistas.", + "example_sentence_english": "He was a fervent follower of Leninist ideas.", + "pos": "noun", + "word_frequency": 18497 + }, + { + "word": "lesionar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to injure", + "example_sentence_native": "Se lesionó la rodilla jugando al fútbol.", + "example_sentence_english": "He injured his knee playing soccer.", + "pos": "verb", + "word_frequency": 18499 + }, + { + "word": "librito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little book", + "example_sentence_native": "Compré un librito de cuentos para mi sobrina.", + "example_sentence_english": "I bought a little book of stories for my niece.", + "pos": "noun", + "word_frequency": 18502 + }, + { + "word": "limpiador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleaner", + "example_sentence_native": "Necesito un limpiador para el baño.", + "example_sentence_english": "I need a cleaner for the bathroom.", + "pos": "noun", + "word_frequency": 18503 + }, + { + "word": "llavero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "keychain", + "example_sentence_native": "Perdí mi llavero con todas las llaves.", + "example_sentence_english": "I lost my keychain with all the keys.", + "pos": "noun", + "word_frequency": 18504 + }, + { + "word": "llorona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crybaby", + "example_sentence_native": "No seas una llorona por algo tan pequeño.", + "example_sentence_english": "Don't be a crybaby about something so small.", + "pos": "noun", + "word_frequency": 18505 + }, + { + "word": "locución", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locution", + "example_sentence_native": "La locución del presentador fue muy clara.", + "example_sentence_english": "The presenter's locution was very clear.", + "pos": "noun", + "word_frequency": 18506 + }, + { + "word": "lícito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lawful", + "example_sentence_native": "Es una actividad completamente lícita según la ley.", + "example_sentence_english": "It is a completely lawful activity according to the law.", + "pos": "adjective", + "word_frequency": 18509 + }, + { + "word": "malabar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "juggling", + "example_sentence_native": "Hizo un malabar con tres pelotas.", + "example_sentence_english": "He did a juggling act with three balls.", + "pos": "noun", + "word_frequency": 18513 + }, + { + "word": "malayo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Malay", + "example_sentence_native": "Aprendió a hablar malayo en su viaje.", + "example_sentence_english": "He learned to speak Malay on his trip.", + "pos": "noun", + "word_frequency": 18514 + }, + { + "word": "manita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little hand", + "example_sentence_native": "El bebé me agarró la manita.", + "example_sentence_english": "The baby grabbed my little hand.", + "pos": "noun", + "word_frequency": 18516 + }, + { + "word": "marcadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "markedly", + "example_sentence_native": "Su actitud cambió marcadamente después del incidente.", + "example_sentence_english": "His attitude changed markedly after the incident.", + "pos": "adverb", + "word_frequency": 18517 + }, + { + "word": "masajista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "massage therapist", + "example_sentence_native": "El masajista me ayudó a relajar los músculos.", + "example_sentence_english": "The massage therapist helped me relax my muscles.", + "pos": "noun", + "word_frequency": 18519 + }, + { + "word": "mediocampista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "midfielder", + "example_sentence_native": "El mediocampista controló el balón con habilidad.", + "example_sentence_english": "The midfielder controlled the ball skillfully.", + "pos": "noun", + "word_frequency": 18520 + }, + { + "word": "melody", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "melody", + "example_sentence_native": "La melodía de la canción era muy pegadiza.", + "example_sentence_english": "The melody of the song was very catchy.", + "pos": "noun", + "word_frequency": 18521 + }, + { + "word": "melon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "melon", + "example_sentence_native": "Me encanta el melón en verano.", + "example_sentence_english": "I love melon in summer.", + "pos": "noun", + "word_frequency": 18522 + }, + { + "word": "mic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mic (microphone)", + "example_sentence_native": "Por favor, prueba el mic antes de empezar a hablar.", + "example_sentence_english": "Please test the mic before you start speaking.", + "pos": "noun", + "word_frequency": 18523 + }, + { + "word": "milenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennial;millenary", + "example_sentence_native": "El árbol milenario se alzaba majestuoso en el bosque.", + "example_sentence_english": "The millenary tree stood majestically in the forest.", + "pos": "adjective", + "word_frequency": 18525 + }, + { + "word": "moment", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moment", + "example_sentence_native": "Espera un momento, por favor.", + "example_sentence_english": "Wait a moment, please.", + "pos": "noun", + "word_frequency": 18526 + }, + { + "word": "morisco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Moorish (person);Morisco", + "example_sentence_native": "Los moriscos fueron expulsados de España en el siglo XVII.", + "example_sentence_english": "The Moriscos were expelled from Spain in the 17th century.", + "pos": "noun", + "word_frequency": 18527 + }, + { + "word": "natalicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "birthday (formal);birth anniversary", + "example_sentence_native": "Se celebra el natalicio del prócer con un desfile.", + "example_sentence_english": "The birth anniversary of the national hero is celebrated with a parade.", + "pos": "noun", + "word_frequency": 18531 + }, + { + "word": "negligente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligent", + "example_sentence_native": "Fue negligente al no revisar los frenos del coche.", + "example_sentence_english": "He was negligent in not checking the car's brakes.", + "pos": "adjective", + "word_frequency": 18532 + }, + { + "word": "notarial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notarial", + "example_sentence_native": "Necesitamos una copia notarial del documento.", + "example_sentence_english": "We need a notarial copy of the document.", + "pos": "adjective", + "word_frequency": 18533 + }, + { + "word": "obeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obese", + "example_sentence_native": "El médico le dijo que estaba obeso y necesitaba hacer ejercicio.", + "example_sentence_english": "The doctor told him he was obese and needed to exercise.", + "pos": "adjective", + "word_frequency": 18535 + }, + { + "word": "obstetricia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obstetrics", + "example_sentence_native": "Se especializó en obstetricia después de la carrera de medicina.", + "example_sentence_english": "She specialized in obstetrics after medical school.", + "pos": "noun", + "word_frequency": 18536 + }, + { + "word": "ornamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ornament", + "example_sentence_native": "El jarrón era un hermoso ornamento para la sala.", + "example_sentence_english": "The vase was a beautiful ornament for the living room.", + "pos": "noun", + "word_frequency": 18538 + }, + { + "word": "pavada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;triviality", + "example_sentence_native": "No digas pavadas, eso no es cierto.", + "example_sentence_english": "Don't say nonsense, that's not true.", + "pos": "noun", + "word_frequency": 18541 + }, + { + "word": "pea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkness;binge", + "example_sentence_native": "Se agarró una buena pea anoche.", + "example_sentence_english": "He got really drunk last night.", + "pos": "noun", + "word_frequency": 18542 + }, + { + "word": "peda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkness;party (slang)", + "example_sentence_native": "Vamos a la peda esta noche.", + "example_sentence_english": "Let's go to the party tonight.", + "pos": "noun", + "word_frequency": 18543 + }, + { + "word": "penalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty;hardship", + "example_sentence_native": "La penalidad por el incumplimiento del contrato es alta.", + "example_sentence_english": "The penalty for breach of contract is high.", + "pos": "noun", + "word_frequency": 18544 + }, + { + "word": "penetrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penetrating;piercing", + "example_sentence_native": "Su mirada era penetrante y profunda.", + "example_sentence_english": "His gaze was penetrating and profound.", + "pos": "adjective", + "word_frequency": 18545 + }, + { + "word": "penicilina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penicillin", + "example_sentence_native": "La penicilina revolucionó el tratamiento de las infecciones.", + "example_sentence_english": "Penicillin revolutionized the treatment of infections.", + "pos": "noun", + "word_frequency": 18546 + }, + { + "word": "pomada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ointment;pomade", + "example_sentence_native": "Aplica esta pomada en la herida dos veces al día.", + "example_sentence_english": "Apply this ointment to the wound twice a day.", + "pos": "noun", + "word_frequency": 18551 + }, + { + "word": "porciento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "percent;percentage", + "example_sentence_native": "Un alto porciento de la población votó.", + "example_sentence_english": "A high percentage of the population voted.", + "pos": "noun", + "word_frequency": 18552 + }, + { + "word": "poseído", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possessed", + "example_sentence_native": "Se decía que la casa estaba poseída por espíritus.", + "example_sentence_english": "It was said that the house was possessed by spirits.", + "pos": "adjective", + "word_frequency": 18553 + }, + { + "word": "pote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pot;jar;container", + "example_sentence_native": "Guarda las galletas en un pote hermético.", + "example_sentence_english": "Keep the cookies in an airtight jar.", + "pos": "noun", + "word_frequency": 18554 + }, + { + "word": "preciosidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preciousness;beauty;darling (as a term of endearment)", + "example_sentence_native": "Esa joya es una verdadera preciosidad.", + "example_sentence_english": "That jewel is a true preciousness.", + "pos": "noun", + "word_frequency": 18555 + }, + { + "word": "premiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premiere", + "example_sentence_native": "La premiere de la película será el próximo mes.", + "example_sentence_english": "The movie premiere will be next month.", + "pos": "noun", + "word_frequency": 18556 + }, + { + "word": "protectorado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protectorate", + "example_sentence_native": "Marruecos fue un protectorado español y francés.", + "example_sentence_english": "Morocco was a Spanish and French protectorate.", + "pos": "noun", + "word_frequency": 18558 + }, + { + "word": "provocador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocateur;instigator", + "example_sentence_native": "El provocador intentó iniciar una discusión.", + "example_sentence_english": "The provocateur tried to start an argument.", + "pos": "noun", + "word_frequency": 18559 + }, + { + "word": "psico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psycho (short for psychology;psychologist)", + "example_sentence_native": "Estudia psico en la universidad.", + "example_sentence_english": "She studies psycho at university.", + "pos": "noun", + "word_frequency": 18560 + }, + { + "word": "psicoanalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychoanalyst", + "example_sentence_native": "Consultó a un psicoanalista para su ansiedad.", + "example_sentence_english": "He consulted a psychoanalyst for his anxiety.", + "pos": "noun", + "word_frequency": 18561 + }, + { + "word": "purísimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purest", + "example_sentence_native": "El agua de manantial es purísima.", + "example_sentence_english": "The spring water is the purest.", + "pos": "adjective", + "word_frequency": 18562 + }, + { + "word": "púlpito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulpit", + "example_sentence_native": "El sacerdote predicó desde el púlpito.", + "example_sentence_english": "The priest preached from the pulpit.", + "pos": "noun", + "word_frequency": 18563 + }, + { + "word": "queer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "queer", + "example_sentence_native": "La comunidad queer celebra la diversidad.", + "example_sentence_english": "The queer community celebrates diversity.", + "pos": "noun", + "word_frequency": 18564 + }, + { + "word": "quilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keel", + "example_sentence_native": "La quilla del barco se dañó en la tormenta.", + "example_sentence_english": "The ship's keel was damaged in the storm.", + "pos": "noun", + "word_frequency": 18566 + }, + { + "word": "reforestación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reforestation", + "example_sentence_native": "El proyecto de reforestación es vital para el planeta.", + "example_sentence_english": "The reforestation project is vital for the planet.", + "pos": "noun", + "word_frequency": 18568 + }, + { + "word": "refrescar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refresh", + "example_sentence_native": "Necesito refrescar mi memoria sobre ese tema.", + "example_sentence_english": "I need to refresh my memory on that topic.", + "pos": "verb", + "word_frequency": 18569 + }, + { + "word": "renglón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "line (of text)", + "example_sentence_native": "Escribe en el siguiente renglón.", + "example_sentence_english": "Write on the next line.", + "pos": "noun", + "word_frequency": 18572 + }, + { + "word": "senil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "senile", + "example_sentence_native": "Su abuelo muestra signos de deterioro senil.", + "example_sentence_english": "His grandfather shows signs of senile decay.", + "pos": "adjective", + "word_frequency": 18579 + }, + { + "word": "subsahariano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sub-Saharan", + "example_sentence_native": "La región subsahariana enfrenta muchos desafíos.", + "example_sentence_english": "The sub-Saharan region faces many challenges.", + "pos": "adjective", + "word_frequency": 18586 + }, + { + "word": "subyacer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to underlie", + "example_sentence_native": "La verdad subyace a todas las apariencias.", + "example_sentence_english": "The truth underlies all appearances.", + "pos": "verb", + "word_frequency": 18587 + }, + { + "word": "superpoder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superpower", + "example_sentence_native": "Le gustaría tener el superpoder de volar.", + "example_sentence_english": "He would like to have the superpower of flying.", + "pos": "noun", + "word_frequency": 18589 + }, + { + "word": "tau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tau", + "example_sentence_native": "La letra griega 'tau' se usa en matemáticas.", + "example_sentence_english": "The Greek letter 'tau' is used in mathematics.", + "pos": "noun", + "word_frequency": 18591 + }, + { + "word": "tramposo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheater", + "example_sentence_native": "No me gusta jugar con él porque es un tramposo.", + "example_sentence_english": "I don't like playing with him because he is a cheater.", + "pos": "noun", + "word_frequency": 18600 + }, + { + "word": "tridimensional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "three-dimensional", + "example_sentence_native": "La película se proyectó en formato tridimensional.", + "example_sentence_english": "The movie was screened in three-dimensional format.", + "pos": "adjective", + "word_frequency": 18601 + }, + { + "word": "tropiezo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stumble;setback", + "example_sentence_native": "Tuvo un pequeño tropiezo en el camino, pero se levantó.", + "example_sentence_english": "He had a small stumble on the path, but he got up.", + "pos": "noun", + "word_frequency": 18602 + }, + { + "word": "vaselina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "petroleum jelly;Vaseline", + "example_sentence_native": "Usa vaselina para hidratar tus labios secos.", + "example_sentence_english": "Use petroleum jelly to moisturize your dry lips.", + "pos": "noun", + "word_frequency": 18603 + }, + { + "word": "árido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arid;dry", + "example_sentence_native": "El desierto es un lugar árido y caluroso.", + "example_sentence_english": "The desert is an arid and hot place.", + "pos": "adjective", + "word_frequency": 18611 + }, + { + "word": "óvulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ovum;egg cell", + "example_sentence_native": "La fecundación ocurre cuando un espermatozoide se une a un óvulo.", + "example_sentence_english": "Fertilization occurs when a sperm unites with an ovum.", + "pos": "noun", + "word_frequency": 18612 + }, + { + "word": "abusador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abuser", + "example_sentence_native": "La ley debe proteger a las víctimas de cualquier abusador.", + "example_sentence_english": "The law must protect victims from any abuser.", + "pos": "noun", + "word_frequency": 18613 + }, + { + "word": "albor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dawn;beginning", + "example_sentence_native": "Al albor del día, los pájaros comenzaron a cantar.", + "example_sentence_english": "At the dawn of the day, the birds began to sing.", + "pos": "noun", + "word_frequency": 18617 + }, + { + "word": "aloe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aloe", + "example_sentence_native": "El gel de aloe es bueno para las quemaduras solares.", + "example_sentence_english": "Aloe gel is good for sunburns.", + "pos": "noun", + "word_frequency": 18619 + }, + { + "word": "amalgama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amalgam;mixture", + "example_sentence_native": "Su estilo musical es una amalgama de diferentes géneros.", + "example_sentence_english": "His musical style is an amalgam of different genres.", + "pos": "noun", + "word_frequency": 18621 + }, + { + "word": "analgésico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painkiller;analgesic", + "example_sentence_native": "Necesito un analgésico para el dolor de cabeza.", + "example_sentence_english": "I need a painkiller for my headache.", + "pos": "noun", + "word_frequency": 18622 + }, + { + "word": "anticristo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antichrist", + "example_sentence_native": "Algunas profecías hablan de la llegada del anticristo.", + "example_sentence_english": "Some prophecies speak of the arrival of the antichrist.", + "pos": "noun", + "word_frequency": 18623 + }, + { + "word": "antiguedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiquity;old age", + "example_sentence_native": "El museo exhibe objetos de gran antigüedad.", + "example_sentence_english": "The museum exhibits objects of great antiquity.", + "pos": "noun", + "word_frequency": 18624 + }, + { + "word": "arruinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruined;broke", + "example_sentence_native": "Después de la crisis, muchas empresas quedaron arruinadas.", + "example_sentence_english": "After the crisis, many companies were ruined.", + "pos": "adjective", + "word_frequency": 18626 + }, + { + "word": "atascado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuck;jammed", + "example_sentence_native": "El coche se quedó atascado en el barro.", + "example_sentence_english": "The car got stuck in the mud.", + "pos": "adjective", + "word_frequency": 18628 + }, + { + "word": "atisbo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glimpse;hint", + "example_sentence_native": "No había ni un atisbo de esperanza en sus ojos.", + "example_sentence_english": "There wasn't even a glimpse of hope in his eyes.", + "pos": "noun", + "word_frequency": 18629 + }, + { + "word": "bacteriano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bacterial", + "example_sentence_native": "La infección es de origen bacteriano.", + "example_sentence_english": "The infection is of bacterial origin.", + "pos": "adjective", + "word_frequency": 18631 + }, + { + "word": "barrote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bar;rod", + "example_sentence_native": "Las ventanas tenían barrotes de hierro.", + "example_sentence_english": "The windows had iron bars.", + "pos": "noun", + "word_frequency": 18633 + }, + { + "word": "basketball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "example_sentence_native": "Me gusta jugar basketball con mis amigos.", + "example_sentence_english": "I like to play basketball with my friends.", + "pos": "noun", + "word_frequency": 18634 + }, + { + "word": "binacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "binational", + "example_sentence_native": "Se firmó un acuerdo binacional entre ambos países.", + "example_sentence_english": "A binational agreement was signed between both countries.", + "pos": "adjective", + "word_frequency": 18637 + }, + { + "word": "bipartidismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bipartisanship;two-party system", + "example_sentence_native": "El bipartidismo es común en muchos sistemas democráticos.", + "example_sentence_english": "Bipartisanship is common in many democratic systems.", + "pos": "noun", + "word_frequency": 18638 + }, + { + "word": "bloc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bloc;pad;block", + "example_sentence_native": "Necesito un bloc de notas para apuntar mis ideas.", + "example_sentence_english": "I need a notepad to write down my ideas.", + "pos": "noun", + "word_frequency": 18639 + }, + { + "word": "boludear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess around;to waste time", + "example_sentence_native": "Deja de boludear y ponte a trabajar.", + "example_sentence_english": "Stop messing around and get to work.", + "pos": "verb", + "word_frequency": 18640 + }, + { + "word": "boutique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boutique", + "example_sentence_native": "Compró un vestido en una boutique de moda.", + "example_sentence_english": "She bought a dress at a fashion boutique.", + "pos": "noun", + "word_frequency": 18643 + }, + { + "word": "brotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sprout;to emerge", + "example_sentence_native": "Las semillas empezaron a brotar con la lluvia.", + "example_sentence_english": "The seeds began to sprout with the rain.", + "pos": "verb", + "word_frequency": 18646 + }, + { + "word": "burra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female donkey;(colloquial) stupid person", + "example_sentence_native": "La burra cargaba la leña. No seas burra, piensa antes de hablar.", + "example_sentence_english": "The female donkey carried the firewood. Don't be stupid, think before you speak.", + "pos": "noun", + "word_frequency": 18649 + }, + { + "word": "cabreado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pissed off;angry (colloquial)", + "example_sentence_native": "Estaba muy cabreado con la situación.", + "example_sentence_english": "He was very pissed off with the situation.", + "pos": "adjective", + "word_frequency": 18653 + }, + { + "word": "cachetada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slap (on the face)", + "example_sentence_native": "Le dio una cachetada por su insolencia.", + "example_sentence_english": "She gave him a slap for his insolence.", + "pos": "noun", + "word_frequency": 18654 + }, + { + "word": "calentito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "warm;cozy", + "example_sentence_native": "El café está calentito, perfecto para el frío.", + "example_sentence_english": "The coffee is warm, perfect for the cold.", + "pos": "adjective", + "word_frequency": 18655 + }, + { + "word": "canalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "channeling;canalization", + "example_sentence_native": "La canalización del río evitó inundaciones.", + "example_sentence_english": "The channeling of the river prevented floods.", + "pos": "noun", + "word_frequency": 18656 + }, + { + "word": "cancionero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "songbook", + "example_sentence_native": "Compró un cancionero con todas las letras de su banda favorita.", + "example_sentence_english": "He bought a songbook with all the lyrics of his favorite band.", + "pos": "noun", + "word_frequency": 18657 + }, + { + "word": "carrero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cart driver;wagoner", + "example_sentence_native": "El carrero transportaba mercancías por el pueblo.", + "example_sentence_english": "The cart driver transported goods through the village.", + "pos": "noun", + "word_frequency": 18658 + }, + { + "word": "caspa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dandruff", + "example_sentence_native": "Necesito un champú para la caspa.", + "example_sentence_english": "I need a shampoo for dandruff.", + "pos": "noun", + "word_frequency": 18659 + }, + { + "word": "catar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to taste;to sample", + "example_sentence_native": "Vamos a catar los vinos de la región.", + "example_sentence_english": "We are going to taste the wines of the region.", + "pos": "verb", + "word_frequency": 18660 + }, + { + "word": "cazuela", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "casserole;cooking pot", + "example_sentence_native": "Preparamos una deliciosa cazuela de mariscos.", + "example_sentence_english": "We prepared a delicious seafood casserole.", + "pos": "noun", + "word_frequency": 18662 + }, + { + "word": "chamuyo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sweet talk;smooth talk (colloquial;often deceptive)", + "example_sentence_native": "No le creas, todo lo que dice es puro chamuyo.", + "example_sentence_english": "Don't believe him, everything he says is pure sweet talk.", + "pos": "noun", + "word_frequency": 18664 + }, + { + "word": "chaparro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short (person);squat;chaparral (shrub)", + "example_sentence_native": "Es un hombre chaparro pero muy fuerte. El chaparro es resistente a la sequía.", + "example_sentence_english": "He is a short but very strong man. The chaparral is resistant to drought.", + "pos": "noun", + "word_frequency": 18665 + }, + { + "word": "cité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenement;housing complex (regional)", + "example_sentence_native": "Vive en un cité antiguo en el centro de la ciudad.", + "example_sentence_english": "He lives in an old tenement in the city center.", + "pos": "noun", + "word_frequency": 18667 + }, + { + "word": "colorear", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to color", + "example_sentence_native": "A mi hijo le encanta colorear dibujos.", + "example_sentence_english": "My son loves to color drawings.", + "pos": "verb", + "word_frequency": 18668 + }, + { + "word": "comunicativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communicative", + "example_sentence_native": "Es una persona muy comunicativa y abierta.", + "example_sentence_english": "He is a very communicative and open person.", + "pos": "adjective", + "word_frequency": 18670 + }, + { + "word": "connivencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connivance;collusion", + "example_sentence_native": "Hubo connivencia entre los dos grupos para ocultar la verdad.", + "example_sentence_english": "There was connivance between the two groups to hide the truth.", + "pos": "noun", + "word_frequency": 18671 + }, + { + "word": "consorte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consort;spouse", + "example_sentence_native": "La reina y su consorte asistieron al evento.", + "example_sentence_english": "The queen and her consort attended the event.", + "pos": "noun", + "word_frequency": 18672 + }, + { + "word": "contiguo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contiguous;adjacent", + "example_sentence_native": "Las dos propiedades son contiguas.", + "example_sentence_english": "The two properties are contiguous.", + "pos": "adjective", + "word_frequency": 18673 + }, + { + "word": "conurbano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conurbation;metropolitan area (regional)", + "example_sentence_native": "Muchos habitantes del conurbano viajan a la capital para trabajar.", + "example_sentence_english": "Many inhabitants of the conurbation travel to the capital for work.", + "pos": "noun", + "word_frequency": 18674 + }, + { + "word": "coronar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crown;to culminate", + "example_sentence_native": "El rey fue coronado en la catedral. Su esfuerzo coronó con éxito.", + "example_sentence_english": "The king was crowned in the cathedral. His effort culminated in success.", + "pos": "verb", + "word_frequency": 18676 + }, + { + "word": "cosmovisión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worldview;cosmology", + "example_sentence_native": "Cada cultura tiene una cosmovisión única.", + "example_sentence_english": "Each culture has a unique worldview.", + "pos": "noun", + "word_frequency": 18677 + }, + { + "word": "cotidianidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "daily life;everydayness", + "example_sentence_native": "La cotidianidad puede ser monótona a veces.", + "example_sentence_english": "Daily life can be monotonous sometimes.", + "pos": "noun", + "word_frequency": 18678 + }, + { + "word": "criminología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminology", + "example_sentence_native": "La criminología estudia las causas del crimen.", + "example_sentence_english": "Criminology studies the causes of crime.", + "pos": "noun", + "word_frequency": 18680 + }, + { + "word": "cutre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shabby;tacky;cheap", + "example_sentence_native": "El hotel era un poco cutre, pero barato.", + "example_sentence_english": "The hotel was a bit shabby, but cheap.", + "pos": "adjective", + "word_frequency": 18681 + }, + { + "word": "cuántico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantum", + "example_sentence_native": "La física cuántica es un campo complejo.", + "example_sentence_english": "Quantum physics is a complex field.", + "pos": "adjective", + "word_frequency": 18682 + }, + { + "word": "delimitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delimit;to define", + "example_sentence_native": "Es importante delimitar el alcance del proyecto.", + "example_sentence_english": "It is important to delimit the scope of the project.", + "pos": "verb", + "word_frequency": 18685 + }, + { + "word": "desborde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overflow;outburst", + "example_sentence_native": "El desborde del río causó inundaciones.", + "example_sentence_english": "The overflow of the river caused floods.", + "pos": "noun", + "word_frequency": 18686 + }, + { + "word": "descarte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discard;rejection", + "example_sentence_native": "Este material es un descarte de la producción.", + "example_sentence_english": "This material is a discard from production.", + "pos": "noun", + "word_frequency": 18687 + }, + { + "word": "desconfiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distrustful;suspicious", + "example_sentence_native": "Es una persona muy desconfiada con los extraños.", + "example_sentence_english": "He is a very distrustful person with strangers.", + "pos": "adjective", + "word_frequency": 18688 + }, + { + "word": "descrédito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discredit;disrepute", + "example_sentence_native": "El escándalo causó un gran descrédito a la empresa.", + "example_sentence_english": "The scandal caused great discredit to the company.", + "pos": "noun", + "word_frequency": 18689 + }, + { + "word": "desechable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disposable", + "example_sentence_native": "Usamos vasos desechables en la fiesta.", + "example_sentence_english": "We used disposable cups at the party.", + "pos": "adjective", + "word_frequency": 18690 + }, + { + "word": "desprestigiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discredit;to disparage", + "example_sentence_native": "Intentaron desprestigiar su reputación con rumores.", + "example_sentence_english": "They tried to discredit his reputation with rumors.", + "pos": "verb", + "word_frequency": 18691 + }, + { + "word": "destruccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destruction", + "example_sentence_native": "La destrucción del bosque fue devastadora.", + "example_sentence_english": "The destruction of the forest was devastating.", + "pos": "noun", + "word_frequency": 18692 + }, + { + "word": "dictaminar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rule;to dictate;to pronounce", + "example_sentence_native": "El juez debe dictaminar sobre el caso.", + "example_sentence_english": "The judge must rule on the case.", + "pos": "verb", + "word_frequency": 18693 + }, + { + "word": "distorsionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distorted", + "example_sentence_native": "La imagen se veía distorsionada en la pantalla.", + "example_sentence_english": "The image looked distorted on the screen.", + "pos": "adjective", + "word_frequency": 18694 + }, + { + "word": "donoso", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "graceful;witty;charming", + "example_sentence_native": "Su estilo de escritura es muy donoso.", + "example_sentence_english": "His writing style is very graceful.", + "pos": "adjective", + "word_frequency": 18696 + }, + { + "word": "dopaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doping", + "example_sentence_native": "El dopaje es un problema grave en el deporte.", + "example_sentence_english": "Doping is a serious problem in sports.", + "pos": "noun", + "word_frequency": 18697 + }, + { + "word": "dopamina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dopamine", + "example_sentence_native": "La dopamina es un neurotransmisor importante.", + "example_sentence_english": "Dopamine is an important neurotransmitter.", + "pos": "noun", + "word_frequency": 18698 + }, + { + "word": "dossier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dossier;file", + "example_sentence_native": "Preparó un dossier completo sobre el caso.", + "example_sentence_english": "He prepared a complete dossier on the case.", + "pos": "noun", + "word_frequency": 18699 + }, + { + "word": "dueto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duet", + "example_sentence_native": "Cantaron un hermoso dueto en el concierto.", + "example_sentence_english": "They sang a beautiful duet at the concert.", + "pos": "noun", + "word_frequency": 18701 + }, + { + "word": "echado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lying down;thrown out;fired", + "example_sentence_native": "Estaba echado en el sofá leyendo un libro.", + "example_sentence_english": "He was lying on the sofa reading a book.", + "pos": "adjective", + "word_frequency": 18703 + }, + { + "word": "efeméride", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ephemeris;anniversary (of an event)", + "example_sentence_native": "Hoy celebramos una importante efeméride histórica.", + "example_sentence_english": "Today we celebrate an important historical anniversary.", + "pos": "noun", + "word_frequency": 18706 + }, + { + "word": "egoista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selfish", + "example_sentence_native": "No seas egoísta y comparte tus juguetes.", + "example_sentence_english": "Don't be selfish and share your toys.", + "pos": "adjective", + "word_frequency": 18707 + }, + { + "word": "elocuencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eloquence", + "example_sentence_native": "Su discurso se caracterizó por su gran elocuencia.", + "example_sentence_english": "His speech was characterized by its great eloquence.", + "pos": "noun", + "word_frequency": 18708 + }, + { + "word": "empoderar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to empower", + "example_sentence_native": "Es importante empoderar a las mujeres en la sociedad.", + "example_sentence_english": "It is important to empower women in society.", + "pos": "verb", + "word_frequency": 18709 + }, + { + "word": "enjuiciar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prosecute;to judge", + "example_sentence_native": "El fiscal decidió enjuiciar al sospechoso.", + "example_sentence_english": "The prosecutor decided to prosecute the suspect.", + "pos": "verb", + "word_frequency": 18710 + }, + { + "word": "epifanía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epiphany", + "example_sentence_native": "Tuvo una epifanía sobre el significado de su vida.", + "example_sentence_english": "He had an epiphany about the meaning of his life.", + "pos": "noun", + "word_frequency": 18712 + }, + { + "word": "epopeya", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epic;epic poem", + "example_sentence_native": "La Odisea es una famosa epopeya griega.", + "example_sentence_english": "The Odyssey is a famous Greek epic.", + "pos": "noun", + "word_frequency": 18713 + }, + { + "word": "escaramuza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skirmish;minor dispute", + "example_sentence_native": "Hubo una pequeña escaramuza entre los dos grupos.", + "example_sentence_english": "There was a small skirmish between the two groups.", + "pos": "noun", + "word_frequency": 18716 + }, + { + "word": "espermatozoide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spermatozoon;sperm", + "example_sentence_native": "El espermatozoide es la célula reproductora masculina.", + "example_sentence_english": "The spermatozoon is the male reproductive cell.", + "pos": "noun", + "word_frequency": 18718 + }, + { + "word": "esterlino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterling", + "example_sentence_native": "La libra esterlina es la moneda del Reino Unido.", + "example_sentence_english": "The pound sterling is the currency of the United Kingdom.", + "pos": "adjective", + "word_frequency": 18719 + }, + { + "word": "estructuración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structuring;framework", + "example_sentence_native": "La estructuración del proyecto es crucial para su éxito.", + "example_sentence_english": "The structuring of the project is crucial for its success.", + "pos": "noun", + "word_frequency": 18720 + }, + { + "word": "evolucion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evolution", + "example_sentence_native": "La evolución de la tecnología es constante.", + "example_sentence_english": "The evolution of technology is constant.", + "pos": "noun", + "word_frequency": 18722 + }, + { + "word": "extinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extinct", + "example_sentence_native": "Los dinosaurios están extintos desde hace millones de años.", + "example_sentence_english": "Dinosaurs have been extinct for millions of years.", + "pos": "adjective", + "word_frequency": 18723 + }, + { + "word": "favoritismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favoritism", + "example_sentence_native": "El favoritismo en el trabajo puede generar resentimiento.", + "example_sentence_english": "Favoritism at work can generate resentment.", + "pos": "noun", + "word_frequency": 18725 + }, + { + "word": "feudalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feudalism", + "example_sentence_native": "El feudalismo fue un sistema social y económico de la Edad Media.", + "example_sentence_english": "Feudalism was a social and economic system of the Middle Ages.", + "pos": "noun", + "word_frequency": 18727 + }, + { + "word": "florido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flowery;blooming", + "example_sentence_native": "El jardín está muy florido en primavera.", + "example_sentence_english": "The garden is very flowery in spring.", + "pos": "adjective", + "word_frequency": 18728 + }, + { + "word": "forrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lined;covered", + "example_sentence_native": "El cuaderno está forrado con papel de colores.", + "example_sentence_english": "The notebook is covered with colored paper.", + "pos": "adjective", + "word_frequency": 18730 + }, + { + "word": "fotografiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photographed", + "example_sentence_native": "El paisaje fue fotografiado al amanecer.", + "example_sentence_english": "The landscape was photographed at dawn.", + "pos": "adjective", + "word_frequency": 18732 + }, + { + "word": "fuel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel", + "example_sentence_native": "El avión necesita más fuel para el viaje.", + "example_sentence_english": "The airplane needs more fuel for the trip.", + "pos": "noun", + "word_frequency": 18733 + }, + { + "word": "gago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stutterer;stammerer", + "example_sentence_native": "El niño era un poco gago al principio, pero mejoró con terapia.", + "example_sentence_english": "The boy was a bit of a stutterer at first, but he improved with therapy.", + "pos": "noun", + "word_frequency": 18735 + }, + { + "word": "genesis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genesis;origin", + "example_sentence_native": "La génesis de la idea se remonta a un antiguo manuscrito.", + "example_sentence_english": "The genesis of the idea dates back to an ancient manuscript.", + "pos": "noun", + "word_frequency": 18739 + }, + { + "word": "gestapo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Gestapo", + "example_sentence_native": "La Gestapo fue la policía secreta de la Alemania nazi.", + "example_sentence_english": "The Gestapo was the secret police of Nazi Germany.", + "pos": "noun", + "word_frequency": 18740 + }, + { + "word": "gladiador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gladiator", + "example_sentence_native": "Los gladiadores luchaban en el Coliseo romano.", + "example_sentence_english": "Gladiators fought in the Roman Colosseum.", + "pos": "noun", + "word_frequency": 18742 + }, + { + "word": "gravar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tax;to burden;to engrave", + "example_sentence_native": "El gobierno decidió gravar las bebidas azucaradas.", + "example_sentence_english": "The government decided to tax sugary drinks.", + "pos": "verb", + "word_frequency": 18747 + }, + { + "word": "guarnicion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garrison;trim;side dish", + "example_sentence_native": "La guarnición militar protegía la fortaleza.", + "example_sentence_english": "The military garrison protected the fortress.", + "pos": "noun", + "word_frequency": 18749 + }, + { + "word": "haba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broad bean;fava bean", + "example_sentence_native": "Las habas son legumbres muy nutritivas.", + "example_sentence_english": "Broad beans are very nutritious legumes.", + "pos": "noun", + "word_frequency": 18750 + }, + { + "word": "hangar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hangar", + "example_sentence_native": "El avión fue llevado al hangar para mantenimiento.", + "example_sentence_english": "The airplane was taken to the hangar for maintenance.", + "pos": "noun", + "word_frequency": 18753 + }, + { + "word": "hijito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little son;dear son (diminutive)", + "example_sentence_native": "Ven aquí, hijito, te voy a leer un cuento.", + "example_sentence_english": "Come here, little son, I'm going to read you a story.", + "pos": "noun", + "word_frequency": 18758 + }, + { + "word": "hoya", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basin;hollow;pit", + "example_sentence_native": "La hoya del valle es muy fértil para la agricultura.", + "example_sentence_english": "The valley basin is very fertile for agriculture.", + "pos": "noun", + "word_frequency": 18759 + }, + { + "word": "hueste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "host;army", + "example_sentence_native": "Una hueste de seguidores lo esperaba.", + "example_sentence_english": "A host of followers awaited him.", + "pos": "noun", + "word_frequency": 18760 + }, + { + "word": "humillacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliation", + "example_sentence_native": "Sintió una profunda humillación después del incidente.", + "example_sentence_english": "He felt deep humiliation after the incident.", + "pos": "noun", + "word_frequency": 18761 + }, + { + "word": "icon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "icon", + "example_sentence_native": "Haz clic en el icono para abrir la aplicación.", + "example_sentence_english": "Click on the icon to open the application.", + "pos": "noun", + "word_frequency": 18762 + }, + { + "word": "impenetrable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impenetrable", + "example_sentence_native": "La jungla era densa e impenetrable.", + "example_sentence_english": "The jungle was dense and impenetrable.", + "pos": "adjective", + "word_frequency": 18764 + }, + { + "word": "impropio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improper;inappropriate", + "example_sentence_native": "Su comportamiento fue considerado impropio para la ocasión.", + "example_sentence_english": "His behavior was considered improper for the occasion.", + "pos": "adjective", + "word_frequency": 18765 + }, + { + "word": "impulse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impulse", + "example_sentence_native": "Actuó por impulso, sin pensarlo dos veces.", + "example_sentence_english": "He acted on impulse, without thinking twice.", + "pos": "noun", + "word_frequency": 18766 + }, + { + "word": "impureza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impurity", + "example_sentence_native": "El agua contenía algunas impurezas.", + "example_sentence_english": "The water contained some impurities.", + "pos": "noun", + "word_frequency": 18767 + }, + { + "word": "inconsistencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconsistency", + "example_sentence_native": "Había una clara inconsistencia en su testimonio.", + "example_sentence_english": "There was a clear inconsistency in his testimony.", + "pos": "noun", + "word_frequency": 18768 + }, + { + "word": "inquisidor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inquisitor", + "example_sentence_native": "El inquisidor interrogó al sospechoso con severidad.", + "example_sentence_english": "The inquisitor interrogated the suspect severely.", + "pos": "noun", + "word_frequency": 18769 + }, + { + "word": "intercontinental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intercontinental", + "example_sentence_native": "Realizaron un vuelo intercontinental.", + "example_sentence_english": "They made an intercontinental flight.", + "pos": "adjective", + "word_frequency": 18771 + }, + { + "word": "interpersonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpersonal", + "example_sentence_native": "Sus habilidades interpersonales son excelentes.", + "example_sentence_english": "His interpersonal skills are excellent.", + "pos": "adjective", + "word_frequency": 18772 + }, + { + "word": "intrínsecamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrinsically", + "example_sentence_native": "La belleza de la obra es intrínsecamente subjetiva.", + "example_sentence_english": "The beauty of the work is intrinsically subjective.", + "pos": "adverb", + "word_frequency": 18773 + }, + { + "word": "irritado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritated;annoyed", + "example_sentence_native": "Estaba muy irritado por el ruido constante.", + "example_sentence_english": "He was very irritated by the constant noise.", + "pos": "adjective", + "word_frequency": 18774 + }, + { + "word": "lerdo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slow;sluggish", + "example_sentence_native": "Es un animal lerdo en sus movimientos.", + "example_sentence_english": "It is a sluggish animal in its movements.", + "pos": "adjective", + "word_frequency": 18788 + }, + { + "word": "letargo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lethargy;slumber", + "example_sentence_native": "El oso entró en un profundo letargo invernal.", + "example_sentence_english": "The bear entered a deep winter slumber.", + "pos": "noun", + "word_frequency": 18789 + }, + { + "word": "levantado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raised;lifted", + "example_sentence_native": "Tenía la cabeza levantada con orgullo.", + "example_sentence_english": "He held his head up with pride.", + "pos": "adjective", + "word_frequency": 18790 + }, + { + "word": "libido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libido", + "example_sentence_native": "La libido es un concepto central en la teoría freudiana.", + "example_sentence_english": "Libido is a central concept in Freudian theory.", + "pos": "noun", + "word_frequency": 18791 + }, + { + "word": "llorón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crybaby;whiny", + "example_sentence_native": "No seas tan llorón por pequeñas cosas.", + "example_sentence_english": "Don't be such a crybaby about small things.", + "pos": "adjective", + "word_frequency": 18792 + }, + { + "word": "luminaria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "luminary;light fixture", + "example_sentence_native": "Era una luminaria en el campo de la ciencia.", + "example_sentence_english": "He was a luminary in the field of science.", + "pos": "noun", + "word_frequency": 18795 + }, + { + "word": "lúcido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lucid;clear-headed", + "example_sentence_native": "A pesar de su edad, se mantiene muy lúcido.", + "example_sentence_english": "Despite his age, he remains very lucid.", + "pos": "adjective", + "word_frequency": 18796 + }, + { + "word": "matemáticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mathematically", + "example_sentence_native": "Matemáticamente, la solución es incorrecta.", + "example_sentence_english": "Mathematically, the solution is incorrect.", + "pos": "adverb", + "word_frequency": 18801 + }, + { + "word": "meollo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "core;gist;essence", + "example_sentence_native": "El meollo del asunto es la falta de comunicación.", + "example_sentence_english": "The core of the matter is the lack of communication.", + "pos": "noun", + "word_frequency": 18805 + }, + { + "word": "metrobús", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metrobus (bus rapid transit system)", + "example_sentence_native": "Tomamos el metrobús para llegar al centro.", + "example_sentence_english": "We took the metrobus to get to the city center.", + "pos": "noun", + "word_frequency": 18806 + }, + { + "word": "mezcal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mezcal (alcoholic beverage)", + "example_sentence_native": "El mezcal es una bebida tradicional de México.", + "example_sentence_english": "Mezcal is a traditional drink from Mexico.", + "pos": "noun", + "word_frequency": 18807 + }, + { + "word": "naturalización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalization", + "example_sentence_native": "El proceso de naturalización puede llevar varios años.", + "example_sentence_english": "The naturalization process can take several years.", + "pos": "noun", + "word_frequency": 18815 + }, + { + "word": "náutico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nautical", + "example_sentence_native": "Le encanta el deporte náutico.", + "example_sentence_english": "He loves nautical sports.", + "pos": "adjective", + "word_frequency": 18822 + }, + { + "word": "oruga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caterpillar", + "example_sentence_native": "La oruga se convirtió en mariposa.", + "example_sentence_english": "The caterpillar turned into a butterfly.", + "pos": "noun", + "word_frequency": 18823 + }, + { + "word": "oxidado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rusty;oxidized", + "example_sentence_native": "El coche viejo estaba completamente oxidado.", + "example_sentence_english": "The old car was completely rusty.", + "pos": "adjective", + "word_frequency": 18826 + }, + { + "word": "paisa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countryman;countrywoman (Colombia;specifically Antioquia region)", + "example_sentence_native": "Los paisas son conocidos por su amabilidad.", + "example_sentence_english": "Paisas are known for their kindness.", + "pos": "noun", + "word_frequency": 18827 + }, + { + "word": "palio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pallium;canopy", + "example_sentence_native": "El obispo llevaba un palio durante la procesión.", + "example_sentence_english": "The bishop wore a pallium during the procession.", + "pos": "noun", + "word_frequency": 18828 + }, + { + "word": "palomino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palomino (horse)", + "example_sentence_native": "El caballo palomino era muy hermoso.", + "example_sentence_english": "The palomino horse was very beautiful.", + "pos": "noun", + "word_frequency": 18829 + }, + { + "word": "papelería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stationery shop;stationery", + "example_sentence_native": "Necesito ir a la papelería a comprar bolígrafos.", + "example_sentence_english": "I need to go to the stationery shop to buy pens.", + "pos": "noun", + "word_frequency": 18830 + }, + { + "word": "patita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little paw;leg;duckling (female)", + "example_sentence_native": "El perrito movía su patita.", + "example_sentence_english": "The puppy moved its little paw.", + "pos": "noun", + "word_frequency": 18831 + }, + { + "word": "pensado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thought out;planned;considered", + "example_sentence_native": "Es un plan bien pensado.", + "example_sentence_english": "It's a well-thought-out plan.", + "pos": "adjective", + "word_frequency": 18835 + }, + { + "word": "pepita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seed (e.g.;pumpkin seed);nugget (e.g.;gold nugget)", + "example_sentence_native": "Me encantan las pepitas de calabaza tostadas.", + "example_sentence_english": "I love roasted pumpkin seeds.", + "pos": "noun", + "word_frequency": 18836 + }, + { + "word": "personería", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal personality;public defender's office;legal representation", + "example_sentence_native": "La personería municipal defiende los derechos de los ciudadanos.", + "example_sentence_english": "The municipal public defender's office defends citizens' rights.", + "pos": "noun", + "word_frequency": 18837 + }, + { + "word": "petardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firecracker;dud (slang)", + "example_sentence_native": "Encendieron un petardo para celebrar el Año Nuevo.", + "example_sentence_english": "They lit a firecracker to celebrate New Year.", + "pos": "noun", + "word_frequency": 18838 + }, + { + "word": "pigmento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pigment", + "example_sentence_native": "La pintura contiene pigmentos naturales.", + "example_sentence_english": "The paint contains natural pigments.", + "pos": "noun", + "word_frequency": 18839 + }, + { + "word": "placenta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "placenta", + "example_sentence_native": "La placenta nutre al feto durante el embarazo.", + "example_sentence_english": "The placenta nourishes the fetus during pregnancy.", + "pos": "noun", + "word_frequency": 18840 + }, + { + "word": "plaqueta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "platelet", + "example_sentence_native": "Las plaquetas son esenciales para la coagulación de la sangre.", + "example_sentence_english": "Platelets are essential for blood clotting.", + "pos": "noun", + "word_frequency": 18841 + }, + { + "word": "plasmado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embodied;reflected", + "example_sentence_native": "Su visión está plasmada en este proyecto.", + "example_sentence_english": "His vision is embodied in this project.", + "pos": "adjective", + "word_frequency": 18842 + }, + { + "word": "pornográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pornographic", + "example_sentence_native": "La ley prohíbe el material pornográfico infantil.", + "example_sentence_english": "The law prohibits child pornographic material.", + "pos": "adjective", + "word_frequency": 18845 + }, + { + "word": "predilección", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predilection;preference", + "example_sentence_native": "Tiene una predilección por los dulces.", + "example_sentence_english": "He has a predilection for sweets.", + "pos": "noun", + "word_frequency": 18846 + }, + { + "word": "prelado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prelate", + "example_sentence_native": "El prelado ofició la ceremonia.", + "example_sentence_english": "The prelate officiated the ceremony.", + "pos": "noun", + "word_frequency": 18847 + }, + { + "word": "prole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offspring;progeny", + "example_sentence_native": "La prole de ese animal es muy numerosa.", + "example_sentence_english": "The offspring of that animal is very numerous.", + "pos": "noun", + "word_frequency": 18849 + }, + { + "word": "promulgado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promulgated;enacted", + "example_sentence_native": "La nueva ley fue promulgada ayer.", + "example_sentence_english": "The new law was promulgated yesterday.", + "pos": "adjective", + "word_frequency": 18851 + }, + { + "word": "puntilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lace;tip;finishing touch", + "example_sentence_native": "El vestido tenía una puntilla delicada.", + "example_sentence_english": "The dress had delicate lace.", + "pos": "noun", + "word_frequency": 18852 + }, + { + "word": "pérsico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Persian", + "example_sentence_native": "El Golfo Pérsico es una importante ruta marítima.", + "example_sentence_english": "The Persian Gulf is an important maritime route.", + "pos": "adjective", + "word_frequency": 18854 + }, + { + "word": "rascar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to scratch", + "example_sentence_native": "Me gusta rascarme la espalda.", + "example_sentence_english": "I like to scratch my back.", + "pos": "verb", + "word_frequency": 18857 + }, + { + "word": "reconstruido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reconstructed", + "example_sentence_native": "El edificio fue reconstruido después del incendio.", + "example_sentence_english": "The building was reconstructed after the fire.", + "pos": "adjective", + "word_frequency": 18858 + }, + { + "word": "recopilado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compiled;collected", + "example_sentence_native": "Los datos fueron recopilados de varias fuentes.", + "example_sentence_english": "The data was compiled from various sources.", + "pos": "adjective", + "word_frequency": 18859 + }, + { + "word": "rectitud", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectitude;integrity", + "example_sentence_native": "Su rectitud moral es incuestionable.", + "example_sentence_english": "His moral rectitude is unquestionable.", + "pos": "noun", + "word_frequency": 18860 + }, + { + "word": "reducto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redoubt;stronghold", + "example_sentence_native": "Ese pueblo es un reducto de tradiciones antiguas.", + "example_sentence_english": "That town is a redoubt of ancient traditions.", + "pos": "noun", + "word_frequency": 18861 + }, + { + "word": "regenerar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regenerate", + "example_sentence_native": "Algunos animales pueden regenerar sus extremidades.", + "example_sentence_english": "Some animals can regenerate their limbs.", + "pos": "verb", + "word_frequency": 18862 + }, + { + "word": "registrador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registrar;recorder", + "example_sentence_native": "El registrador de la propiedad inscribió la escritura.", + "example_sentence_english": "The property registrar registered the deed.", + "pos": "noun", + "word_frequency": 18863 + }, + { + "word": "reinserción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reintegration;reinsertion", + "example_sentence_native": "El programa busca la reinserción social de los exconvictos.", + "example_sentence_english": "The program seeks the social reintegration of ex-convicts.", + "pos": "noun", + "word_frequency": 18864 + }, + { + "word": "repunte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upturn;rebound", + "example_sentence_native": "Se observa un repunte en la economía.", + "example_sentence_english": "An upturn in the economy is observed.", + "pos": "noun", + "word_frequency": 18865 + }, + { + "word": "restablecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reestablished;restored", + "example_sentence_native": "El orden fue restablecido después de la protesta.", + "example_sentence_english": "Order was reestablished after the protest.", + "pos": "adjective", + "word_frequency": 18867 + }, + { + "word": "sionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zionism", + "example_sentence_native": "El sionismo es un movimiento político.", + "example_sentence_english": "Zionism is a political movement.", + "pos": "noun", + "word_frequency": 18875 + }, + { + "word": "solvente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solvent;financially sound", + "example_sentence_native": "La empresa es solvente y puede pagar sus deudas.", + "example_sentence_english": "The company is solvent and can pay its debts.", + "pos": "adjective", + "word_frequency": 18880 + }, + { + "word": "soundtrack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soundtrack", + "example_sentence_native": "La soundtrack de la película es increíble.", + "example_sentence_english": "The movie soundtrack is amazing.", + "pos": "noun", + "word_frequency": 18882 + }, + { + "word": "stage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage", + "example_sentence_native": "El cantante subió al stage para comenzar el concierto.", + "example_sentence_english": "The singer went up on stage to start the concert.", + "pos": "noun", + "word_frequency": 18884 + }, + { + "word": "subgrupo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subgroup", + "example_sentence_native": "Dividimos el equipo en varios subgrupos para el proyecto.", + "example_sentence_english": "We divided the team into several subgroups for the project.", + "pos": "noun", + "word_frequency": 18885 + }, + { + "word": "subido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uploaded;high (in color;volume)", + "example_sentence_native": "La foto subida a la red social recibió muchos \"me gusta\".", + "example_sentence_english": "The photo uploaded to the social network received many likes.", + "pos": "adjective", + "word_frequency": 18886 + }, + { + "word": "subtitulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subtitle", + "example_sentence_native": "Prefiero ver películas con subtítulos en español.", + "example_sentence_english": "I prefer to watch movies with Spanish subtitles.", + "pos": "noun", + "word_frequency": 18887 + }, + { + "word": "teleférico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cable car;aerial tramway", + "example_sentence_native": "Subimos la montaña en teleférico para disfrutar de las vistas.", + "example_sentence_english": "We went up the mountain by cable car to enjoy the views.", + "pos": "noun", + "word_frequency": 18890 + }, + { + "word": "tendiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending;prone;inclined", + "example_sentence_native": "Es una persona tendiente a la melancolía.", + "example_sentence_english": "He is a person prone to melancholy.", + "pos": "adjective", + "word_frequency": 18891 + }, + { + "word": "teológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theological", + "example_sentence_native": "Estudió filosofía y teología en la universidad.", + "example_sentence_english": "He studied philosophy and theology at the university.", + "pos": "adjective", + "word_frequency": 18892 + }, + { + "word": "terna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shortlist;trio;panel", + "example_sentence_native": "El comité presentó una terna de candidatos para el puesto.", + "example_sentence_english": "The committee presented a shortlist of candidates for the position.", + "pos": "noun", + "word_frequency": 18893 + }, + { + "word": "triunfador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winner;triumphant person", + "example_sentence_native": "El equipo fue recibido como un triunfador después de ganar el campeonato.", + "example_sentence_english": "The team was received as a winner after winning the championship.", + "pos": "noun", + "word_frequency": 18898 + }, + { + "word": "turn", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turn", + "example_sentence_native": "Es tu turn de jugar.", + "example_sentence_english": "It's your turn to play.", + "pos": "noun", + "word_frequency": 18900 + }, + { + "word": "upa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "up!;come on! (often used when lifting a child)", + "example_sentence_native": "¡Upa! Arriba, pequeño.", + "example_sentence_english": "Up! Up, little one.", + "pos": "interjection", + "word_frequency": 18901 + }, + { + "word": "velorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wake;vigil", + "example_sentence_native": "Asistimos al velorio para dar el pésame a la familia.", + "example_sentence_english": "We attended the wake to offer condolences to the family.", + "pos": "noun", + "word_frequency": 18903 + }, + { + "word": "verticalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vertically", + "example_sentence_native": "La escalera se extiende verticalmente hacia el techo.", + "example_sentence_english": "The ladder extends vertically towards the ceiling.", + "pos": "adverb", + "word_frequency": 18904 + }, + { + "word": "viciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stale;vitiated;corrupted;addicted", + "example_sentence_native": "El aire en la habitación estaba viciado.", + "example_sentence_english": "The air in the room was stale.", + "pos": "adjective", + "word_frequency": 18905 + }, + { + "word": "viático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "travel allowance;per diem;viaticum", + "example_sentence_native": "La empresa cubre los viáticos de los empleados en viajes de negocios.", + "example_sentence_english": "The company covers the travel allowance for employees on business trips.", + "pos": "noun", + "word_frequency": 18907 + }, + { + "word": "vulneración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "violation;infringement", + "example_sentence_native": "La vulneración de los derechos humanos es inaceptable.", + "example_sentence_english": "The violation of human rights is unacceptable.", + "pos": "noun", + "word_frequency": 18908 + }, + { + "word": "wire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wire (as in news wire;or electrical wire)", + "example_sentence_native": "Recibimos la noticia a través del wire de la agencia.", + "example_sentence_english": "We received the news through the agency's wire.", + "pos": "noun", + "word_frequency": 18910 + }, + { + "word": "account", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "account", + "example_sentence_native": "Necesitas crear un account para acceder al servicio.", + "example_sentence_english": "You need to create an account to access the service.", + "pos": "noun", + "word_frequency": 18912 + }, + { + "word": "adicion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addition", + "example_sentence_native": "La adicion de sal mejoró el sabor de la sopa.", + "example_sentence_english": "The addition of salt improved the soup's flavor.", + "pos": "noun", + "word_frequency": 18913 + }, + { + "word": "adornado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adorned;decorated", + "example_sentence_native": "El árbol estaba adornado con luces de colores.", + "example_sentence_english": "The tree was adorned with colorful lights.", + "pos": "adjective", + "word_frequency": 18914 + }, + { + "word": "agroindustria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agro-industry", + "example_sentence_native": "La agroindustria es un sector clave para la economía del país.", + "example_sentence_english": "Agro-industry is a key sector for the country's economy.", + "pos": "noun", + "word_frequency": 18915 + }, + { + "word": "aguayo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aguayo (Andean textile)", + "example_sentence_native": "Compró un hermoso aguayo en el mercado artesanal.", + "example_sentence_english": "She bought a beautiful aguayo at the artisan market.", + "pos": "noun", + "word_frequency": 18916 + }, + { + "word": "almacen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "warehouse;store", + "example_sentence_native": "Guardamos los productos en el almacen.", + "example_sentence_english": "We store the products in the warehouse.", + "pos": "noun", + "word_frequency": 18918 + }, + { + "word": "amparado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protected", + "example_sentence_native": "El niño se sentía amparado por sus padres.", + "example_sentence_english": "The child felt protected by his parents.", + "pos": "adjective", + "word_frequency": 18921 + }, + { + "word": "argelino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Algerian", + "example_sentence_native": "La cultura argelina es muy rica.", + "example_sentence_english": "Algerian culture is very rich.", + "pos": "adjective", + "word_frequency": 18922 + }, + { + "word": "automovilismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motorsport", + "example_sentence_native": "Le encanta el automovilismo y sigue todas las carreras.", + "example_sentence_english": "He loves motorsport and follows all the races.", + "pos": "noun", + "word_frequency": 18926 + }, + { + "word": "autosuficiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-sufficient", + "example_sentence_native": "Es una persona muy autosuficiente y no necesita ayuda.", + "example_sentence_english": "She is a very self-sufficient person and doesn't need help.", + "pos": "adjective", + "word_frequency": 18927 + }, + { + "word": "barbudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bearded", + "example_sentence_native": "El hombre barbudo se sentó en el banco.", + "example_sentence_english": "The bearded man sat on the bench.", + "pos": "adjective", + "word_frequency": 18928 + }, + { + "word": "barómetro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barometer", + "example_sentence_native": "El barómetro indica que la presión atmosférica está bajando.", + "example_sentence_english": "The barometer indicates that the atmospheric pressure is falling.", + "pos": "noun", + "word_frequency": 18930 + }, + { + "word": "becerro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calf", + "example_sentence_native": "El becerro seguía a su madre por el campo.", + "example_sentence_english": "The calf followed its mother through the field.", + "pos": "noun", + "word_frequency": 18931 + }, + { + "word": "berenjena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eggplant", + "example_sentence_native": "Me gusta cocinar berenjenas a la parrilla.", + "example_sentence_english": "I like to cook grilled eggplants.", + "pos": "noun", + "word_frequency": 18935 + }, + { + "word": "biosfera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biosphere", + "example_sentence_native": "La biosfera es la parte de la Tierra donde existe vida.", + "example_sentence_english": "The biosphere is the part of Earth where life exists.", + "pos": "noun", + "word_frequency": 18936 + }, + { + "word": "blockchain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blockchain", + "example_sentence_native": "La tecnología blockchain está revolucionando las finanzas.", + "example_sentence_english": "Blockchain technology is revolutionizing finance.", + "pos": "noun", + "word_frequency": 18938 + }, + { + "word": "bolero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bolero", + "example_sentence_native": "Bailamos un bolero lento en la fiesta.", + "example_sentence_english": "We danced a slow bolero at the party.", + "pos": "noun", + "word_frequency": 18939 + }, + { + "word": "build", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "build", + "example_sentence_native": "La nueva build del software tiene muchas mejoras.", + "example_sentence_english": "The new build of the software has many improvements.", + "pos": "noun", + "word_frequency": 18941 + }, + { + "word": "cache", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cache", + "example_sentence_native": "Necesitas borrar la caché de tu navegador.", + "example_sentence_english": "You need to clear your browser's cache.", + "pos": "noun", + "word_frequency": 18942 + }, + { + "word": "canibalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cannibalism", + "example_sentence_native": "El estudio antropológico abordó el tema del canibalismo ritual.", + "example_sentence_english": "The anthropological study addressed the topic of ritual cannibalism.", + "pos": "noun", + "word_frequency": 18943 + }, + { + "word": "capilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capillary", + "example_sentence_native": "Los productos capilares ayudan a fortalecer el cabello.", + "example_sentence_english": "Hair products help strengthen hair.", + "pos": "adjective", + "word_frequency": 18945 + }, + { + "word": "captain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captain", + "example_sentence_native": "El captain del equipo dio un discurso motivador.", + "example_sentence_english": "The team captain gave a motivational speech.", + "pos": "noun", + "word_frequency": 18946 + }, + { + "word": "capó", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood (of a car)", + "example_sentence_native": "Levantó el capó para revisar el motor.", + "example_sentence_english": "He lifted the hood to check the engine.", + "pos": "noun", + "word_frequency": 18947 + }, + { + "word": "carabina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbine", + "example_sentence_native": "El cazador llevaba una carabina al hombro.", + "example_sentence_english": "The hunter carried a carbine on his shoulder.", + "pos": "noun", + "word_frequency": 18948 + }, + { + "word": "catalan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catalan", + "example_sentence_native": "El catalán es una lengua romance hablada en Cataluña.", + "example_sentence_english": "Catalan is a Romance language spoken in Catalonia.", + "pos": "noun", + "word_frequency": 18951 + }, + { + "word": "cedula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ID card", + "example_sentence_native": "Necesitas tu cédula para identificarte.", + "example_sentence_english": "You need your ID card to identify yourself.", + "pos": "noun", + "word_frequency": 18952 + }, + { + "word": "centralista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centralist", + "example_sentence_native": "El gobierno adoptó una postura centralista.", + "example_sentence_english": "The government adopted a centralist stance.", + "pos": "adjective", + "word_frequency": 18953 + }, + { + "word": "chamán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaman", + "example_sentence_native": "El chamán realizó un ritual de curación.", + "example_sentence_english": "The shaman performed a healing ritual.", + "pos": "noun", + "word_frequency": 18954 + }, + { + "word": "chango", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monkey", + "example_sentence_native": "Vimos un chango en el zoológico.", + "example_sentence_english": "We saw a monkey at the zoo.", + "pos": "noun", + "word_frequency": 18955 + }, + { + "word": "cibernético", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cybernetic", + "example_sentence_native": "La seguridad cibernética es crucial hoy en día.", + "example_sentence_english": "Cybersecurity is crucial nowadays.", + "pos": "adjective", + "word_frequency": 18958 + }, + { + "word": "coleta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ponytail", + "example_sentence_native": "Se hizo una coleta para el gimnasio.", + "example_sentence_english": "She made a ponytail for the gym.", + "pos": "noun", + "word_frequency": 18962 + }, + { + "word": "compi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mate;pal (colloquial for companion)", + "example_sentence_native": "Mi compi de trabajo me ayudó mucho.", + "example_sentence_english": "My workmate helped me a lot.", + "pos": "noun", + "word_frequency": 18963 + }, + { + "word": "compuerta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sluice gate;floodgate", + "example_sentence_native": "Abrieron la compuerta para liberar el agua.", + "example_sentence_english": "They opened the sluice gate to release the water.", + "pos": "noun", + "word_frequency": 18964 + }, + { + "word": "confluir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to converge;to flow together", + "example_sentence_native": "Los dos caminos confluyen en la plaza.", + "example_sentence_english": "The two paths converge in the square.", + "pos": "verb", + "word_frequency": 18965 + }, + { + "word": "congruencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congruence;consistency", + "example_sentence_native": "Hay una falta de congruencia entre sus palabras y sus acciones.", + "example_sentence_english": "There is a lack of consistency between his words and his actions.", + "pos": "noun", + "word_frequency": 18966 + }, + { + "word": "coqueto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flirtatious;charming;dainty", + "example_sentence_native": "Tiene un estilo muy coqueto al vestir.", + "example_sentence_english": "She has a very charming style of dressing.", + "pos": "adjective", + "word_frequency": 18968 + }, + { + "word": "coraza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor;shell;breastplate", + "example_sentence_native": "El armadillo tiene una coraza protectora.", + "example_sentence_english": "The armadillo has a protective shell.", + "pos": "noun", + "word_frequency": 18969 + }, + { + "word": "criador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breeder;raiser", + "example_sentence_native": "Es un criador de caballos de pura raza.", + "example_sentence_english": "He is a breeder of purebred horses.", + "pos": "noun", + "word_frequency": 18972 + }, + { + "word": "deliberacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deliberation", + "example_sentence_native": "La decisión se tomó tras una larga deliberación.", + "example_sentence_english": "The decision was made after a long deliberation.", + "pos": "noun", + "word_frequency": 18973 + }, + { + "word": "depresion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depression", + "example_sentence_native": "La crisis económica causó una gran depresión.", + "example_sentence_english": "The economic crisis caused a great depression.", + "pos": "noun", + "word_frequency": 18974 + }, + { + "word": "desagüe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drain;outlet", + "example_sentence_native": "El desagüe de la bañera está atascado.", + "example_sentence_english": "The bathtub drain is clogged.", + "pos": "noun", + "word_frequency": 18975 + }, + { + "word": "desilusionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappointed;disillusioned", + "example_sentence_native": "Me sentí desilusionado con el resultado del partido.", + "example_sentence_english": "I felt disappointed with the outcome of the match.", + "pos": "adjective", + "word_frequency": 18976 + }, + { + "word": "discrepar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disagree", + "example_sentence_native": "Puedo discrepar contigo sin dejar de ser amigos.", + "example_sentence_english": "I can disagree with you without ceasing to be friends.", + "pos": "verb", + "word_frequency": 18977 + }, + { + "word": "egreso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expenditure;outflow;graduation", + "example_sentence_native": "El egreso de fondos debe ser aprobado.", + "example_sentence_english": "The outflow of funds must be approved.", + "pos": "noun", + "word_frequency": 18985 + }, + { + "word": "embotellado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottled;stuck in traffic", + "example_sentence_native": "El tráfico estaba embotellado en la autopista.", + "example_sentence_english": "The traffic was stuck on the highway.", + "pos": "adjective", + "word_frequency": 18988 + }, + { + "word": "empeñar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pawn;to pledge;to insist on", + "example_sentence_native": "Tuvo que empeñar su reloj para pagar la deuda.", + "example_sentence_english": "He had to pawn his watch to pay the debt.", + "pos": "verb", + "word_frequency": 18989 + }, + { + "word": "enamoramiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "falling in love;infatuation", + "example_sentence_native": "El enamoramiento es una etapa intensa de una relación.", + "example_sentence_english": "Falling in love is an intense stage of a relationship.", + "pos": "noun", + "word_frequency": 18990 + }, + { + "word": "enmascarado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masked;disguised", + "example_sentence_native": "El ladrón enmascarado entró por la ventana.", + "example_sentence_english": "The masked thief entered through the window.", + "pos": "adjective", + "word_frequency": 18991 + }, + { + "word": "enser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "household good;chattel", + "example_sentence_native": "Los enseres de la casa fueron donados a la caridad.", + "example_sentence_english": "The household goods were donated to charity.", + "pos": "noun", + "word_frequency": 18992 + }, + { + "word": "entonación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intonation", + "example_sentence_native": "Su entonación al hablar es muy particular.", + "example_sentence_english": "Her intonation when speaking is very particular.", + "pos": "noun", + "word_frequency": 18993 + }, + { + "word": "entusiasmado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiastic;excited", + "example_sentence_native": "Estaba muy entusiasmado con la idea de viajar.", + "example_sentence_english": "He was very enthusiastic about the idea of traveling.", + "pos": "adjective", + "word_frequency": 18994 + }, + { + "word": "enésimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nth;umpteenth", + "example_sentence_native": "Es la enésima vez que me lo pides.", + "example_sentence_english": "It's the umpteenth time you've asked me.", + "pos": "adjective", + "word_frequency": 18995 + }, + { + "word": "epidermis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epidermis", + "example_sentence_native": "La epidermis es la capa más externa de la piel.", + "example_sentence_english": "The epidermis is the outermost layer of the skin.", + "pos": "noun", + "word_frequency": 18996 + }, + { + "word": "esbozo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sketch;outline;draft", + "example_sentence_native": "Hizo un esbozo rápido de la casa.", + "example_sentence_english": "He made a quick sketch of the house.", + "pos": "noun", + "word_frequency": 18997 + }, + { + "word": "estampilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stamp;postage stamp", + "example_sentence_native": "Necesito una estampilla para enviar esta carta.", + "example_sentence_english": "I need a stamp to send this letter.", + "pos": "noun", + "word_frequency": 18998 + }, + { + "word": "estival", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summery;summer-related", + "example_sentence_native": "Disfrutamos del ambiente estival en la costa.", + "example_sentence_english": "We enjoyed the summery atmosphere on the coast.", + "pos": "adjective", + "word_frequency": 18999 + }, + { + "word": "estofado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stew", + "example_sentence_native": "Me encanta el estofado de ternera de mi abuela.", + "example_sentence_english": "I love my grandmother's beef stew.", + "pos": "noun", + "word_frequency": 19000 + }, + { + "word": "esófago", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "esophagus", + "example_sentence_native": "La comida pasa por el esófago hasta el estómago.", + "example_sentence_english": "Food passes through the esophagus to the stomach.", + "pos": "noun", + "word_frequency": 19001 + }, + { + "word": "eventualidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eventuality;contingency", + "example_sentence_native": "Debemos estar preparados para cualquier eventualidad.", + "example_sentence_english": "We must be prepared for any eventuality.", + "pos": "noun", + "word_frequency": 19002 + }, + { + "word": "expatriado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expatriate", + "example_sentence_native": "Muchos expatriados viven en esta ciudad.", + "example_sentence_english": "Many expatriates live in this city.", + "pos": "noun", + "word_frequency": 19003 + }, + { + "word": "extremeño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Extremadura (Spain)", + "example_sentence_native": "El jamón extremeño es muy famoso.", + "example_sentence_english": "Extremaduran ham is very famous.", + "pos": "adjective", + "word_frequency": 19004 + }, + { + "word": "false", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "false;fake", + "example_sentence_native": "Esa información es completamente falsa.", + "example_sentence_english": "That information is completely false.", + "pos": "adjective", + "word_frequency": 19007 + }, + { + "word": "fecundación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertilization", + "example_sentence_native": "La fecundación es el proceso de unión de gametos.", + "example_sentence_english": "Fertilization is the process of gamete fusion.", + "pos": "noun", + "word_frequency": 19008 + }, + { + "word": "filamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filament", + "example_sentence_native": "El filamento de la bombilla se rompió.", + "example_sentence_english": "The light bulb's filament broke.", + "pos": "noun", + "word_frequency": 19009 + }, + { + "word": "finlandés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Finnish", + "example_sentence_native": "Habla finlandés con fluidez.", + "example_sentence_english": "He speaks Finnish fluently.", + "pos": "adjective", + "word_frequency": 19010 + }, + { + "word": "fraternal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraternal", + "example_sentence_native": "Mantienen una relación fraternal muy fuerte.", + "example_sentence_english": "They maintain a very strong fraternal relationship.", + "pos": "adjective", + "word_frequency": 19013 + }, + { + "word": "fregadero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink (kitchen)", + "example_sentence_native": "Deja los platos sucios en el fregadero.", + "example_sentence_english": "Leave the dirty dishes in the sink.", + "pos": "noun", + "word_frequency": 19014 + }, + { + "word": "fundamentalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamentalist", + "example_sentence_native": "El grupo fue descrito como fundamentalista.", + "example_sentence_english": "The group was described as fundamentalist.", + "pos": "noun", + "word_frequency": 19015 + }, + { + "word": "gasoducto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gas pipeline", + "example_sentence_native": "Se construirá un nuevo gasoducto para transportar el gas natural.", + "example_sentence_english": "A new gas pipeline will be built to transport natural gas.", + "pos": "noun", + "word_frequency": 19018 + }, + { + "word": "gestionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managed;administered", + "example_sentence_native": "El proyecto fue gestionado eficientemente.", + "example_sentence_english": "The project was managed efficiently.", + "pos": "adjective", + "word_frequency": 19019 + }, + { + "word": "granel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulk (as in 'in bulk')", + "example_sentence_native": "Compramos arroz a granel para ahorrar.", + "example_sentence_english": "We buy rice in bulk to save money.", + "pos": "noun", + "word_frequency": 19022 + }, + { + "word": "guru", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guru", + "example_sentence_native": "Es considerado un gurú de la tecnología.", + "example_sentence_english": "He is considered a technology guru.", + "pos": "noun", + "word_frequency": 19024 + }, + { + "word": "hiperinflación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hyperinflation", + "example_sentence_native": "El país sufrió un período de hiperinflación severa.", + "example_sentence_english": "The country suffered a period of severe hyperinflation.", + "pos": "noun", + "word_frequency": 19028 + }, + { + "word": "identificador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identifier", + "example_sentence_native": "Cada usuario tiene un identificador único.", + "example_sentence_english": "Each user has a unique identifier.", + "pos": "noun", + "word_frequency": 19031 + }, + { + "word": "ilusionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excited;hopeful", + "example_sentence_native": "Estoy muy ilusionado con el nuevo proyecto.", + "example_sentence_english": "I am very excited about the new project.", + "pos": "adjective", + "word_frequency": 19032 + }, + { + "word": "impulsivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impulsive", + "example_sentence_native": "Su decisión fue un poco impulsiva.", + "example_sentence_english": "His decision was a bit impulsive.", + "pos": "adjective", + "word_frequency": 19033 + }, + { + "word": "indebidamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improperly;unduly", + "example_sentence_native": "Los fondos fueron utilizados indebidamente.", + "example_sentence_english": "The funds were used improperly.", + "pos": "adverb", + "word_frequency": 19034 + }, + { + "word": "infiltrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to infiltrate", + "example_sentence_native": "La lluvia se puede infiltrar por el techo.", + "example_sentence_english": "Rain can infiltrate through the roof.", + "pos": "verb", + "word_frequency": 19035 + }, + { + "word": "informalidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informality", + "example_sentence_native": "La informalidad laboral es un problema en muchos países.", + "example_sentence_english": "Labor informality is a problem in many countries.", + "pos": "noun", + "word_frequency": 19036 + }, + { + "word": "ingente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immense;enormous", + "example_sentence_native": "Se requiere una ingente cantidad de trabajo.", + "example_sentence_english": "An immense amount of work is required.", + "pos": "adjective", + "word_frequency": 19037 + }, + { + "word": "injustificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustified", + "example_sentence_native": "Su ausencia fue completamente injustificada.", + "example_sentence_english": "His absence was completely unjustified.", + "pos": "adjective", + "word_frequency": 19038 + }, + { + "word": "instaurado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "established;instituted", + "example_sentence_native": "El nuevo sistema fue instaurado el mes pasado.", + "example_sentence_english": "The new system was established last month.", + "pos": "adjective", + "word_frequency": 19039 + }, + { + "word": "introspección", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "introspection", + "example_sentence_native": "La introspección es clave para el autoconocimiento.", + "example_sentence_english": "Introspection is key for self-knowledge.", + "pos": "noun", + "word_frequency": 19040 + }, + { + "word": "kiwi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiwi", + "example_sentence_native": "Me encanta el sabor dulce del kiwi.", + "example_sentence_english": "I love the sweet taste of kiwi.", + "pos": "noun", + "word_frequency": 19049 + }, + { + "word": "lapicera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pen", + "example_sentence_native": "Necesito una lapicera para escribir.", + "example_sentence_english": "I need a pen to write.", + "pos": "noun", + "word_frequency": 19052 + }, + { + "word": "lobato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cub (wolf cub)", + "example_sentence_native": "El lobato siguió a su madre por el bosque.", + "example_sentence_english": "The wolf cub followed its mother through the forest.", + "pos": "noun", + "word_frequency": 19055 + }, + { + "word": "loción", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lotion", + "example_sentence_native": "Me puse loción hidratante después de la ducha.", + "example_sentence_english": "I put on moisturizing lotion after the shower.", + "pos": "noun", + "word_frequency": 19056 + }, + { + "word": "maltratar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mistreat", + "example_sentence_native": "No se debe maltratar a los animales.", + "example_sentence_english": "Animals should not be mistreated.", + "pos": "verb", + "word_frequency": 19061 + }, + { + "word": "manglar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mangrove (forest)", + "example_sentence_native": "Los manglares son ecosistemas vitales para la costa.", + "example_sentence_english": "Mangroves are vital ecosystems for the coast.", + "pos": "noun", + "word_frequency": 19062 + }, + { + "word": "maniobrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maneuver", + "example_sentence_native": "El barco tuvo que maniobrar para evitar el arrecife.", + "example_sentence_english": "The ship had to maneuver to avoid the reef.", + "pos": "verb", + "word_frequency": 19063 + }, + { + "word": "marginalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marginalization", + "example_sentence_native": "La marginalidad social es un problema complejo.", + "example_sentence_english": "Social marginalization is a complex problem.", + "pos": "noun", + "word_frequency": 19065 + }, + { + "word": "medular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medullary;core;essential", + "example_sentence_native": "Este es el punto medular de nuestra discusión.", + "example_sentence_english": "This is the core point of our discussion.", + "pos": "adjective", + "word_frequency": 19067 + }, + { + "word": "melocotón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peach", + "example_sentence_native": "Me gusta el zumo de melocotón.", + "example_sentence_english": "I like peach juice.", + "pos": "noun", + "word_frequency": 19068 + }, + { + "word": "meningitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meningitis", + "example_sentence_native": "La meningitis es una enfermedad grave.", + "example_sentence_english": "Meningitis is a serious illness.", + "pos": "noun", + "word_frequency": 19069 + }, + { + "word": "meñique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little finger;toe", + "example_sentence_native": "Se golpeó el dedo meñique del pie.", + "example_sentence_english": "He stubbed his little toe.", + "pos": "noun", + "word_frequency": 19072 + }, + { + "word": "mojón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landmark;boundary stone", + "example_sentence_native": "El mojón indicaba el límite de la propiedad.", + "example_sentence_english": "The landmark indicated the property boundary.", + "pos": "noun", + "word_frequency": 19073 + }, + { + "word": "mordido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite;bite mark", + "example_sentence_native": "Tenía un mordido de mosquito en el brazo.", + "example_sentence_english": "He had a mosquito bite on his arm.", + "pos": "noun", + "word_frequency": 19074 + }, + { + "word": "moretón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bruise", + "example_sentence_native": "Se cayó y le salió un moretón en la rodilla.", + "example_sentence_english": "He fell and got a bruise on his knee.", + "pos": "noun", + "word_frequency": 19075 + }, + { + "word": "multiplicidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multiplicity", + "example_sentence_native": "La multiplicidad de culturas en la ciudad es fascinante.", + "example_sentence_english": "The multiplicity of cultures in the city is fascinating.", + "pos": "noun", + "word_frequency": 19076 + }, + { + "word": "noir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "black (as in film noir)", + "example_sentence_native": "Es una película de cine noir.", + "example_sentence_english": "It's a film noir movie.", + "pos": "noun", + "word_frequency": 19080 + }, + { + "word": "organo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organ", + "example_sentence_native": "El corazón es un órgano vital.", + "example_sentence_english": "The heart is a vital organ.", + "pos": "noun", + "word_frequency": 19082 + }, + { + "word": "origin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "origin", + "example_sentence_native": "¿Cuál es el origen de esta palabra?", + "example_sentence_english": "What is the origin of this word?", + "pos": "noun", + "word_frequency": 19083 + }, + { + "word": "osado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daring;bold", + "example_sentence_native": "Fue una decisión muy osada.", + "example_sentence_english": "It was a very daring decision.", + "pos": "adjective", + "word_frequency": 19084 + }, + { + "word": "padecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suffering;ailment", + "example_sentence_native": "Su padecimiento era evidente.", + "example_sentence_english": "His suffering was evident.", + "pos": "noun", + "word_frequency": 19086 + }, + { + "word": "paritario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parity;equal", + "example_sentence_native": "Buscamos una representación paritaria en el consejo.", + "example_sentence_english": "We seek equal representation on the council.", + "pos": "adjective", + "word_frequency": 19087 + }, + { + "word": "pasha", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "pasha", + "example_sentence_native": "El pasha gobernó la provincia.", + "example_sentence_english": "The pasha governed the province.", + "pos": "noun", + "word_frequency": 19089 + }, + { + "word": "pavor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dread;terror", + "example_sentence_native": "Sintió un pavor inmenso.", + "example_sentence_english": "He felt immense dread.", + "pos": "noun", + "word_frequency": 19091 + }, + { + "word": "peca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freckle", + "example_sentence_native": "Tiene muchas pecas en la nariz.", + "example_sentence_english": "She has many freckles on her nose.", + "pos": "noun", + "word_frequency": 19093 + }, + { + "word": "pica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pike;spade;pickaxe;itch", + "example_sentence_native": "La pica es una herramienta de jardinería.", + "example_sentence_english": "The pickaxe is a gardening tool.", + "pos": "noun", + "word_frequency": 19095 + }, + { + "word": "pinzón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "finch", + "example_sentence_native": "El pinzón es un pájaro pequeño.", + "example_sentence_english": "The finch is a small bird.", + "pos": "noun", + "word_frequency": 19096 + }, + { + "word": "pisada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footprint;step", + "example_sentence_native": "Dejó una pisada en la arena.", + "example_sentence_english": "He left a footprint in the sand.", + "pos": "noun", + "word_frequency": 19097 + }, + { + "word": "platónico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "platonic", + "example_sentence_native": "Tienen una amistad platónica.", + "example_sentence_english": "They have a platonic friendship.", + "pos": "adjective", + "word_frequency": 19098 + }, + { + "word": "porcino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "porcine;pig-related", + "example_sentence_native": "La carne porcina es muy popular.", + "example_sentence_english": "Pork meat is very popular.", + "pos": "adjective", + "word_frequency": 19100 + }, + { + "word": "pormenor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detail;particular", + "example_sentence_native": "Explicó cada pormenor del plan.", + "example_sentence_english": "He explained every detail of the plan.", + "pos": "noun", + "word_frequency": 19101 + }, + { + "word": "potencialidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "potentiality;potential", + "example_sentence_native": "Reconoció la potencialidad del proyecto.", + "example_sentence_english": "He recognized the potential of the project.", + "pos": "noun", + "word_frequency": 19102 + }, + { + "word": "presuponer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to presuppose;to assume", + "example_sentence_native": "No debes presuponer nada.", + "example_sentence_english": "You shouldn't presuppose anything.", + "pos": "verb", + "word_frequency": 19103 + }, + { + "word": "profesionalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professionalization", + "example_sentence_native": "La profesionalización del sector es clave.", + "example_sentence_english": "The professionalization of the sector is key.", + "pos": "noun", + "word_frequency": 19104 + }, + { + "word": "progresado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressed;advanced", + "example_sentence_native": "Es un estudiante muy progresado.", + "example_sentence_english": "He is a very advanced student.", + "pos": "adjective", + "word_frequency": 19105 + }, + { + "word": "píxel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pixel", + "example_sentence_native": "La imagen tiene muchos píxeles.", + "example_sentence_english": "The image has many pixels.", + "pos": "noun", + "word_frequency": 19109 + }, + { + "word": "recontra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "really;super;very (colloquial intensifier)", + "example_sentence_native": "Es recontra difícil.", + "example_sentence_english": "It's super difficult.", + "pos": "adverb", + "word_frequency": 19113 + }, + { + "word": "recuadro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "box;frame;inset", + "example_sentence_native": "Lee el texto en el recuadro.", + "example_sentence_english": "Read the text in the box.", + "pos": "noun", + "word_frequency": 19114 + }, + { + "word": "reescribir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rewrite", + "example_sentence_native": "Necesito reescribir este párrafo.", + "example_sentence_english": "I need to rewrite this paragraph.", + "pos": "verb", + "word_frequency": 19115 + }, + { + "word": "repechaje", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repechage;playoff;second chance", + "example_sentence_native": "El equipo ganó el repechaje.", + "example_sentence_english": "The team won the repechage.", + "pos": "noun", + "word_frequency": 19116 + }, + { + "word": "repercutir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reverberate;to have repercussions;to affect", + "example_sentence_native": "Sus acciones pueden repercutir en el futuro.", + "example_sentence_english": "His actions can have repercussions in the future.", + "pos": "verb", + "word_frequency": 19117 + }, + { + "word": "reversible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reversible", + "example_sentence_native": "La chaqueta es reversible.", + "example_sentence_english": "The jacket is reversible.", + "pos": "adjective", + "word_frequency": 19119 + }, + { + "word": "reves", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setback;reverse", + "example_sentence_native": "Sufrió un revés en su carrera profesional.", + "example_sentence_english": "He suffered a setback in his professional career.", + "pos": "noun", + "word_frequency": 19120 + }, + { + "word": "ride", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ride (a lift)", + "example_sentence_native": "¿Me das un ride al centro comercial?", + "example_sentence_english": "Can you give me a ride to the mall?", + "pos": "noun", + "word_frequency": 19121 + }, + { + "word": "rola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "song (informal)", + "example_sentence_native": "Esa rola es mi favorita para bailar.", + "example_sentence_english": "That song is my favorite to dance to.", + "pos": "noun", + "word_frequency": 19123 + }, + { + "word": "royo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boring talk;hassle (informal)", + "example_sentence_native": "No me vengas con ese rollo, por favor.", + "example_sentence_english": "Don't give me that boring talk, please.", + "pos": "noun", + "word_frequency": 19126 + }, + { + "word": "rozar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to graze;to brush against", + "example_sentence_native": "El coche rozó la pared al aparcar.", + "example_sentence_english": "The car grazed the wall when parking.", + "pos": "verb", + "word_frequency": 19127 + }, + { + "word": "scooter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scooter", + "example_sentence_native": "Compró un scooter para ir al trabajo.", + "example_sentence_english": "He bought a scooter to go to work.", + "pos": "noun", + "word_frequency": 19131 + }, + { + "word": "seso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brain;intellect", + "example_sentence_native": "Usa tu seso para resolver este enigma.", + "example_sentence_english": "Use your brain to solve this enigma.", + "pos": "noun", + "word_frequency": 19133 + }, + { + "word": "sobrevalorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overrated", + "example_sentence_native": "Creo que esa película está un poco sobrevalorada.", + "example_sentence_english": "I think that movie is a bit overrated.", + "pos": "adjective", + "word_frequency": 19136 + }, + { + "word": "subteniente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "second lieutenant", + "example_sentence_native": "El subteniente dirigió la operación con valentía.", + "example_sentence_english": "The second lieutenant bravely led the operation.", + "pos": "noun", + "word_frequency": 19140 + }, + { + "word": "susodicho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aforesaid;aforementioned", + "example_sentence_native": "El susodicho informe ya fue entregado.", + "example_sentence_english": "The aforesaid report has already been delivered.", + "pos": "adjective", + "word_frequency": 19143 + }, + { + "word": "tacha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defect;stain", + "example_sentence_native": "Su única tacha es su falta de paciencia.", + "example_sentence_english": "His only defect is his lack of patience.", + "pos": "noun", + "word_frequency": 19144 + }, + { + "word": "talco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talc;talcum powder", + "example_sentence_native": "Necesito talco para los pies después de correr.", + "example_sentence_english": "I need talcum powder for my feet after running.", + "pos": "noun", + "word_frequency": 19146 + }, + { + "word": "techno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "techno (music genre)", + "example_sentence_native": "La fiesta puso música techno toda la noche.", + "example_sentence_english": "The party played techno music all night.", + "pos": "noun", + "word_frequency": 19147 + }, + { + "word": "tenorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "womanizer;Don Juan", + "example_sentence_native": "Es conocido por ser un verdadero tenorio en la ciudad.", + "example_sentence_english": "He is known for being a true womanizer in the city.", + "pos": "noun", + "word_frequency": 19149 + }, + { + "word": "testificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to testify", + "example_sentence_native": "El testigo se negó a testificar en el juicio.", + "example_sentence_english": "The witness refused to testify in the trial.", + "pos": "verb", + "word_frequency": 19150 + }, + { + "word": "tofu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tofu", + "example_sentence_native": "El tofu es una buena fuente de proteínas vegetales.", + "example_sentence_english": "Tofu is a good source of plant-based protein.", + "pos": "noun", + "word_frequency": 19152 + }, + { + "word": "troyano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Trojan (horse;virus)", + "example_sentence_native": "Mi computadora fue infectada por un virus troyano.", + "example_sentence_english": "My computer was infected by a Trojan virus.", + "pos": "noun", + "word_frequency": 19155 + }, + { + "word": "twittero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Twitter user", + "example_sentence_native": "Es un twittero muy influyente en su comunidad.", + "example_sentence_english": "He is a very influential Twitter user in his community.", + "pos": "noun", + "word_frequency": 19158 + }, + { + "word": "vagancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laziness", + "example_sentence_native": "Su vagancia le impidió terminar el proyecto a tiempo.", + "example_sentence_english": "His laziness prevented him from finishing the project on time.", + "pos": "noun", + "word_frequency": 19162 + }, + { + "word": "vehemencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vehemence", + "example_sentence_native": "Defendió su postura con gran vehemencia.", + "example_sentence_english": "He defended his position with great vehemence.", + "pos": "noun", + "word_frequency": 19164 + }, + { + "word": "ventanal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large window", + "example_sentence_native": "La sala tiene un hermoso ventanal con vistas al jardín.", + "example_sentence_english": "The living room has a beautiful large window with garden views.", + "pos": "noun", + "word_frequency": 19165 + }, + { + "word": "verbena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "street party", + "example_sentence_native": "Cada verano, el barrio celebra una animada verbena.", + "example_sentence_english": "Every summer, the neighborhood celebrates a lively street party.", + "pos": "noun", + "word_frequency": 19166 + }, + { + "word": "vetar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to veto", + "example_sentence_native": "El presidente puede vetar la ley si no está de acuerdo.", + "example_sentence_english": "The president can veto the law if he doesn't agree.", + "pos": "verb", + "word_frequency": 19167 + }, + { + "word": "aberrante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aberrant", + "example_sentence_native": "Su comportamiento fue considerado aberrante por la comunidad.", + "example_sentence_english": "His behavior was considered aberrant by the community.", + "pos": "adjective", + "word_frequency": 19174 + }, + { + "word": "acampada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camping trip", + "example_sentence_native": "Fuimos de acampada a la montaña el fin de semana.", + "example_sentence_english": "We went on a camping trip to the mountains over the weekend.", + "pos": "noun", + "word_frequency": 19175 + }, + { + "word": "acechar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stalk", + "example_sentence_native": "El gato acechaba al pájaro desde la rama.", + "example_sentence_english": "The cat stalked the bird from the branch.", + "pos": "verb", + "word_frequency": 19176 + }, + { + "word": "aguacero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downpour", + "example_sentence_native": "Nos sorprendió un aguacero repentino en medio del paseo.", + "example_sentence_english": "A sudden downpour surprised us in the middle of the walk.", + "pos": "noun", + "word_frequency": 19177 + }, + { + "word": "agudeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wit", + "example_sentence_native": "Su agudeza mental le permitía resolver problemas complejos rápidamente.", + "example_sentence_english": "His mental sharpness allowed him to solve complex problems quickly.", + "pos": "noun", + "word_frequency": 19178 + }, + { + "word": "aislante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulating", + "example_sentence_native": "Necesitamos un material aislante para el techo.", + "example_sentence_english": "We need an insulating material for the roof.", + "pos": "adjective", + "word_frequency": 19179 + }, + { + "word": "albanés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Albanian", + "example_sentence_native": "Conocí a una persona albanesa en mi viaje.", + "example_sentence_english": "I met an Albanian person on my trip.", + "pos": "adjective", + "word_frequency": 19180 + }, + { + "word": "alcoba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bedroom", + "example_sentence_native": "La casa tiene tres alcobas y dos baños.", + "example_sentence_english": "The house has three bedrooms and two bathrooms.", + "pos": "noun", + "word_frequency": 19181 + }, + { + "word": "argento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silver", + "example_sentence_native": "El color argento de la luna brillaba en la noche.", + "example_sentence_english": "The silver color of the moon shone in the night.", + "pos": "noun", + "word_frequency": 19185 + }, + { + "word": "aromático", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aromatic", + "example_sentence_native": "Las hierbas aromáticas le dan un sabor especial a la comida.", + "example_sentence_english": "Aromatic herbs give a special flavor to the food.", + "pos": "adjective", + "word_frequency": 19186 + }, + { + "word": "arquetipo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archetype", + "example_sentence_native": "El héroe es un arquetipo común en la literatura.", + "example_sentence_english": "The hero is a common archetype in literature.", + "pos": "noun", + "word_frequency": 19187 + }, + { + "word": "austríaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Austrian", + "example_sentence_native": "La música clásica austríaca es muy famosa.", + "example_sentence_english": "Austrian classical music is very famous.", + "pos": "adjective", + "word_frequency": 19188 + }, + { + "word": "autoayuda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-help", + "example_sentence_native": "Le gusta leer libros de autoayuda para mejorar su bienestar.", + "example_sentence_english": "He likes to read self-help books to improve his well-being.", + "pos": "noun", + "word_frequency": 19189 + }, + { + "word": "azafrán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saffron", + "example_sentence_native": "El azafrán es un ingrediente clave en la paella.", + "example_sentence_english": "Saffron is a key ingredient in paella.", + "pos": "noun", + "word_frequency": 19190 + }, + { + "word": "bibliográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bibliographic", + "example_sentence_native": "Necesito consultar varias fuentes bibliográficas para mi investigación.", + "example_sentence_english": "I need to consult several bibliographic sources for my research.", + "pos": "adjective", + "word_frequency": 19195 + }, + { + "word": "bochorno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarrassment", + "example_sentence_native": "Sentí un gran bochorno al caerme en público.", + "example_sentence_english": "I felt great embarrassment when I fell in public.", + "pos": "noun", + "word_frequency": 19197 + }, + { + "word": "bochornoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarrassing", + "example_sentence_native": "Fue una situación bochornosa para todos.", + "example_sentence_english": "It was an embarrassing situation for everyone.", + "pos": "adjective", + "word_frequency": 19198 + }, + { + "word": "bohemio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bohemian", + "example_sentence_native": "Llevaba un estilo de vida bohemio, sin preocupaciones.", + "example_sentence_english": "He led a bohemian lifestyle, without worries.", + "pos": "adjective", + "word_frequency": 19199 + }, + { + "word": "boreal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boreal;northern", + "example_sentence_native": "Las luces boreales son un espectáculo impresionante.", + "example_sentence_english": "The boreal lights are an impressive spectacle.", + "pos": "adjective", + "word_frequency": 19200 + }, + { + "word": "cadaver", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpse;cadaver", + "example_sentence_native": "El forense examinó el cadáver.", + "example_sentence_english": "The forensic pathologist examined the corpse.", + "pos": "noun", + "word_frequency": 19204 + }, + { + "word": "cagón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coward;scaredy-cat (vulgar)", + "example_sentence_native": "No seas cagón y enfréntate a tus miedos.", + "example_sentence_english": "Don't be a coward and face your fears.", + "pos": "adjective", + "word_frequency": 19206 + }, + { + "word": "calentador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heater;water heater", + "example_sentence_native": "Necesitamos un calentador nuevo para el agua.", + "example_sentence_english": "We need a new water heater.", + "pos": "noun", + "word_frequency": 19207 + }, + { + "word": "capi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captain (informal)", + "example_sentence_native": "¡Vamos, capi, tú puedes!", + "example_sentence_english": "Come on, cap, you can do it!", + "pos": "noun", + "word_frequency": 19209 + }, + { + "word": "capitular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to capitulate;to surrender", + "example_sentence_native": "El ejército enemigo se vio obligado a capitular.", + "example_sentence_english": "The enemy army was forced to capitulate.", + "pos": "verb", + "word_frequency": 19210 + }, + { + "word": "castración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "castration", + "example_sentence_native": "La castración de mascotas es común para controlar la población.", + "example_sentence_english": "Pet castration is common to control the population.", + "pos": "noun", + "word_frequency": 19213 + }, + { + "word": "chiquillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;little boy;girl", + "example_sentence_native": "Los chiquillos estaban jugando en el parque.", + "example_sentence_english": "The kids were playing in the park.", + "pos": "noun", + "word_frequency": 19217 + }, + { + "word": "chiringuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beach bar;restaurant;kiosk", + "example_sentence_native": "Comimos paella en un chiringuito en la playa.", + "example_sentence_english": "We ate paella at a beach bar on the beach.", + "pos": "noun", + "word_frequency": 19218 + }, + { + "word": "chula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cool;pretty;sassy", + "example_sentence_native": "¡Qué camiseta más chula!", + "example_sentence_english": "What a cool t-shirt!", + "pos": "adjective", + "word_frequency": 19219 + }, + { + "word": "cigüeña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stork", + "example_sentence_native": "La cigüeña construyó su nido en el tejado.", + "example_sentence_english": "The stork built its nest on the roof.", + "pos": "noun", + "word_frequency": 19221 + }, + { + "word": "circuncisión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circumcision", + "example_sentence_native": "La circuncisión es una práctica cultural en algunas comunidades.", + "example_sentence_english": "Circumcision is a cultural practice in some communities.", + "pos": "noun", + "word_frequency": 19222 + }, + { + "word": "clavel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnation", + "example_sentence_native": "Le regaló un ramo de claveles rojos.", + "example_sentence_english": "He gave her a bouquet of red carnations.", + "pos": "noun", + "word_frequency": 19224 + }, + { + "word": "coima", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bribe;kickback (Latin America)", + "example_sentence_native": "Fue acusado de aceptar una coima.", + "example_sentence_english": "He was accused of accepting a bribe.", + "pos": "noun", + "word_frequency": 19226 + }, + { + "word": "cojín", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cushion;pillow", + "example_sentence_native": "Pon un cojín en el sofá para mayor comodidad.", + "example_sentence_english": "Put a cushion on the sofa for more comfort.", + "pos": "noun", + "word_frequency": 19227 + }, + { + "word": "compostura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repair;composure;mending", + "example_sentence_native": "El coche necesita una compostura urgente.", + "example_sentence_english": "The car needs urgent repair.", + "pos": "noun", + "word_frequency": 19228 + }, + { + "word": "copla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "copla (a type of Spanish folk song;verse)", + "example_sentence_native": "La cantante interpretó una copla andaluza.", + "example_sentence_english": "The singer performed an Andalusian copla.", + "pos": "noun", + "word_frequency": 19230 + }, + { + "word": "cosechado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harvested;reaped", + "example_sentence_native": "El trigo cosechado este año es de excelente calidad.", + "example_sentence_english": "The wheat harvested this year is of excellent quality.", + "pos": "adjective", + "word_frequency": 19231 + }, + { + "word": "cosmética", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cosmetics", + "example_sentence_native": "La industria de la cosmética es muy grande.", + "example_sentence_english": "The cosmetics industry is very large.", + "pos": "noun", + "word_frequency": 19232 + }, + { + "word": "descansado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rested", + "example_sentence_native": "Después de dormir bien, me siento muy descansado.", + "example_sentence_english": "After sleeping well, I feel very rested.", + "pos": "adjective", + "word_frequency": 19234 + }, + { + "word": "desesperar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despair;to lose hope", + "example_sentence_native": "No debes desesperar, siempre hay una solución.", + "example_sentence_english": "You shouldn't despair, there's always a solution.", + "pos": "verb", + "word_frequency": 19235 + }, + { + "word": "desglose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breakdown;itemization", + "example_sentence_native": "Necesito un desglose detallado de los gastos.", + "example_sentence_english": "I need a detailed breakdown of the expenses.", + "pos": "noun", + "word_frequency": 19236 + }, + { + "word": "desinteresado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinterested;selfless;unbiased", + "example_sentence_native": "Su ayuda fue completamente desinteresada.", + "example_sentence_english": "His help was completely selfless.", + "pos": "adjective", + "word_frequency": 19237 + }, + { + "word": "despistado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absent-minded;scatterbrained;distracted", + "example_sentence_native": "Es un poco despistado y siempre olvida las llaves.", + "example_sentence_english": "He's a bit absent-minded and always forgets his keys.", + "pos": "adjective", + "word_frequency": 19238 + }, + { + "word": "digitalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digitally", + "example_sentence_native": "La información se almacena digitalmente.", + "example_sentence_english": "The information is stored digitally.", + "pos": "adverb", + "word_frequency": 19239 + }, + { + "word": "diminutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diminutive", + "example_sentence_native": "\"Casita\" es un diminutivo de \"casa\".", + "example_sentence_english": "\"Casita\" is a diminutive of \"casa\".", + "pos": "noun", + "word_frequency": 19240 + }, + { + "word": "dimitido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resigned (having resigned)", + "example_sentence_native": "El presidente dimitido dio una conferencia de prensa.", + "example_sentence_english": "The resigned president gave a press conference.", + "pos": "adjective", + "word_frequency": 19241 + }, + { + "word": "enfurecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enrage;to infuriate", + "example_sentence_native": "Sus mentiras lograron enfurecer a la multitud.", + "example_sentence_english": "His lies managed to enrage the crowd.", + "pos": "verb", + "word_frequency": 19249 + }, + { + "word": "esmero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "care;diligence;painstaking effort", + "example_sentence_native": "Realizó el trabajo con gran esmero.", + "example_sentence_english": "He performed the work with great care.", + "pos": "noun", + "word_frequency": 19250 + }, + { + "word": "esparcido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scattered;dispersed", + "example_sentence_native": "Las hojas estaban esparcidas por todo el suelo.", + "example_sentence_english": "The leaves were scattered all over the ground.", + "pos": "adjective", + "word_frequency": 19251 + }, + { + "word": "espinoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorny;prickly;tricky;delicate", + "example_sentence_native": "La rosa tiene un tallo espinoso.", + "example_sentence_english": "The rose has a thorny stem.", + "pos": "adjective", + "word_frequency": 19252 + }, + { + "word": "establishment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment", + "example_sentence_native": "Criticó duramente al establishment político.", + "example_sentence_english": "He harshly criticized the political establishment.", + "pos": "noun", + "word_frequency": 19253 + }, + { + "word": "estadistica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statistics", + "example_sentence_native": "La estadística es una rama de las matemáticas.", + "example_sentence_english": "Statistics is a branch of mathematics.", + "pos": "noun", + "word_frequency": 19254 + }, + { + "word": "eurozona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eurozone", + "example_sentence_native": "Grecia es parte de la eurozona.", + "example_sentence_english": "Greece is part of the Eurozone.", + "pos": "noun", + "word_frequency": 19255 + }, + { + "word": "extraviado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lost;strayed;missing", + "example_sentence_native": "Encontraron al perro extraviado después de dos días.", + "example_sentence_english": "They found the lost dog after two days.", + "pos": "adjective", + "word_frequency": 19256 + }, + { + "word": "fiscalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to audit;to oversee;to scrutinize", + "example_sentence_native": "Es importante fiscalizar el uso de los fondos públicos.", + "example_sentence_english": "It is important to audit the use of public funds.", + "pos": "verb", + "word_frequency": 19257 + }, + { + "word": "geografia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "geography", + "example_sentence_native": "Me gusta estudiar geografía en la escuela.", + "example_sentence_english": "I like to study geography at school.", + "pos": "noun", + "word_frequency": 19259 + }, + { + "word": "ghetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ghetto", + "example_sentence_native": "Vivían en un gueto en las afueras de la ciudad.", + "example_sentence_english": "They lived in a ghetto on the outskirts of the city.", + "pos": "noun", + "word_frequency": 19261 + }, + { + "word": "gluteo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glute;gluteus", + "example_sentence_native": "Es importante fortalecer los músculos glúteos.", + "example_sentence_english": "It is important to strengthen the glute muscles.", + "pos": "noun", + "word_frequency": 19262 + }, + { + "word": "granate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maroon;garnet (color)", + "example_sentence_native": "Compró un suéter de color granate.", + "example_sentence_english": "He bought a maroon-colored sweater.", + "pos": "adjective", + "word_frequency": 19263 + }, + { + "word": "grial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grail", + "example_sentence_native": "La búsqueda del Santo Grial es una leyenda famosa.", + "example_sentence_english": "The search for the Holy Grail is a famous legend.", + "pos": "noun", + "word_frequency": 19264 + }, + { + "word": "hampa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "underworld;criminal underworld", + "example_sentence_native": "La policía investiga los vínculos con el hampa.", + "example_sentence_english": "The police are investigating links to the underworld.", + "pos": "noun", + "word_frequency": 19265 + }, + { + "word": "hemoglobina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemoglobin", + "example_sentence_native": "La hemoglobina transporta oxígeno en la sangre.", + "example_sentence_english": "Hemoglobin transports oxygen in the blood.", + "pos": "noun", + "word_frequency": 19268 + }, + { + "word": "hipster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hipster", + "example_sentence_native": "Muchos hipsters frecuentan ese café.", + "example_sentence_english": "Many hipsters frequent that cafe.", + "pos": "noun", + "word_frequency": 19269 + }, + { + "word": "homologo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homologous;equivalent;counterpart", + "example_sentence_native": "El ministro se reunió con su homólogo francés.", + "example_sentence_english": "The minister met with his French counterpart.", + "pos": "adjective", + "word_frequency": 19271 + }, + { + "word": "impar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "odd (number);uneven", + "example_sentence_native": "El número tres es impar.", + "example_sentence_english": "The number three is odd.", + "pos": "adjective", + "word_frequency": 19275 + }, + { + "word": "incansablemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tirelessly;indefatigably", + "example_sentence_native": "Trabajó incansablemente para terminar el proyecto.", + "example_sentence_english": "He worked tirelessly to finish the project.", + "pos": "adverb", + "word_frequency": 19276 + }, + { + "word": "independizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make independent;to become independent", + "example_sentence_native": "Muchos jóvenes quieren independizarse de sus padres.", + "example_sentence_english": "Many young people want to become independent from their parents.", + "pos": "verb", + "word_frequency": 19277 + }, + { + "word": "inflexible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflexible;rigid;unyielding", + "example_sentence_native": "Su postura inflexible dificultó las negociaciones.", + "example_sentence_english": "His inflexible stance made negotiations difficult.", + "pos": "adjective", + "word_frequency": 19278 + }, + { + "word": "inhibir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to inhibit;to restrain;to suppress", + "example_sentence_native": "El miedo puede inhibir la creatividad.", + "example_sentence_english": "Fear can inhibit creativity.", + "pos": "verb", + "word_frequency": 19279 + }, + { + "word": "intransigente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncompromising", + "example_sentence_native": "Su postura intransigente dificultó las negociaciones.", + "example_sentence_english": "His uncompromising stance made negotiations difficult.", + "pos": "adjective", + "word_frequency": 19281 + }, + { + "word": "maleducado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ill-mannered;rude", + "example_sentence_native": "Fue muy maleducado al no saludar.", + "example_sentence_english": "He was very ill-mannered for not greeting.", + "pos": "adjective", + "word_frequency": 19295 + }, + { + "word": "maraña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangle;mess", + "example_sentence_native": "El gato se enredó en una maraña de lana.", + "example_sentence_english": "The cat got tangled in a mess of yarn.", + "pos": "noun", + "word_frequency": 19297 + }, + { + "word": "merca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merchandise (colloquial);drugs (slang)", + "example_sentence_native": "La policía incautó una gran cantidad de merca.", + "example_sentence_english": "The police seized a large quantity of drugs.", + "pos": "noun", + "word_frequency": 19302 + }, + { + "word": "morboso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morbid;gruesome", + "example_sentence_native": "Tenía una curiosidad morbosa por los detalles del accidente.", + "example_sentence_english": "He had a morbid curiosity about the details of the accident.", + "pos": "adjective", + "word_frequency": 19309 + }, + { + "word": "morcilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood sausage;black pudding", + "example_sentence_native": "La morcilla de Burgos es muy famosa.", + "example_sentence_english": "Burgos blood sausage is very famous.", + "pos": "noun", + "word_frequency": 19310 + }, + { + "word": "mosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catalan police officer", + "example_sentence_native": "Un mosso de escuadra regulaba el tráfico.", + "example_sentence_english": "A Catalan police officer was directing traffic.", + "pos": "noun", + "word_frequency": 19311 + }, + { + "word": "murmullo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "murmur;whisper", + "example_sentence_native": "Se escuchaba un murmullo de voces en la sala.", + "example_sentence_english": "A murmur of voices could be heard in the room.", + "pos": "noun", + "word_frequency": 19313 + }, + { + "word": "musculatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musculature;muscles", + "example_sentence_native": "Desarrolló una musculatura impresionante en el gimnasio.", + "example_sentence_english": "He developed impressive musculature at the gym.", + "pos": "noun", + "word_frequency": 19314 + }, + { + "word": "musgo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moss", + "example_sentence_native": "Las rocas estaban cubiertas de musgo verde.", + "example_sentence_english": "The rocks were covered in green moss.", + "pos": "noun", + "word_frequency": 19315 + }, + { + "word": "negociable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiable", + "example_sentence_native": "El precio de la casa es negociable.", + "example_sentence_english": "The price of the house is negotiable.", + "pos": "adjective", + "word_frequency": 19317 + }, + { + "word": "nigeriano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nigerian", + "example_sentence_native": "La cultura nigeriana es muy rica y diversa.", + "example_sentence_english": "Nigerian culture is very rich and diverse.", + "pos": "adjective", + "word_frequency": 19319 + }, + { + "word": "obstaculizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hinder;to obstruct", + "example_sentence_native": "La burocracia puede obstaculizar el progreso.", + "example_sentence_english": "Bureaucracy can hinder progress.", + "pos": "verb", + "word_frequency": 19322 + }, + { + "word": "ogro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ogre", + "example_sentence_native": "El ogro vivía en un castillo oscuro.", + "example_sentence_english": "The ogre lived in a dark castle.", + "pos": "noun", + "word_frequency": 19323 + }, + { + "word": "paúl", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marsh;bog", + "example_sentence_native": "El terreno era un paúl lleno de juncos.", + "example_sentence_english": "The terrain was a marsh full of reeds.", + "pos": "noun", + "word_frequency": 19325 + }, + { + "word": "pegajoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticky;catchy (song)", + "example_sentence_native": "La miel es muy pegajosa.", + "example_sentence_english": "Honey is very sticky.", + "pos": "adjective", + "word_frequency": 19326 + }, + { + "word": "peregrinaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrimage", + "example_sentence_native": "Hicieron un largo peregrinaje a Santiago de Compostela.", + "example_sentence_english": "They made a long pilgrimage to Santiago de Compostela.", + "pos": "noun", + "word_frequency": 19328 + }, + { + "word": "pollera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skirt (LatAm);chicken coop", + "example_sentence_native": "La mujer llevaba una pollera colorida.", + "example_sentence_english": "The woman was wearing a colorful skirt.", + "pos": "noun", + "word_frequency": 19331 + }, + { + "word": "portabilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portability", + "example_sentence_native": "La portabilidad del número de teléfono es una ventaja.", + "example_sentence_english": "Phone number portability is an advantage.", + "pos": "noun", + "word_frequency": 19332 + }, + { + "word": "prerrogativa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prerogative", + "example_sentence_native": "Es su prerrogativa decidir sobre el asunto.", + "example_sentence_english": "It is his prerogative to decide on the matter.", + "pos": "noun", + "word_frequency": 19333 + }, + { + "word": "protestantismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestantism", + "example_sentence_native": "El protestantismo es una rama del cristianismo.", + "example_sentence_english": "Protestantism is a branch of Christianity.", + "pos": "noun", + "word_frequency": 19335 + }, + { + "word": "publicitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to publicize;to advertise", + "example_sentence_native": "Debemos publicitar el evento para atraer más gente.", + "example_sentence_english": "We must publicize the event to attract more people.", + "pos": "verb", + "word_frequency": 19336 + }, + { + "word": "reaparicion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reappearance", + "example_sentence_native": "Su reaparicion en público sorprendió a todos.", + "example_sentence_english": "His reappearance in public surprised everyone.", + "pos": "noun", + "word_frequency": 19340 + }, + { + "word": "recupero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovery;recuperation", + "example_sentence_native": "El recupero de datos fue exitoso.", + "example_sentence_english": "The data recovery was successful.", + "pos": "noun", + "word_frequency": 19341 + }, + { + "word": "reestructurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restructure", + "example_sentence_native": "La empresa necesita reestructurar sus operaciones.", + "example_sentence_english": "The company needs to restructure its operations.", + "pos": "verb", + "word_frequency": 19342 + }, + { + "word": "refinamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refinement", + "example_sentence_native": "Su estilo muestra un gran refinamiento.", + "example_sentence_english": "His style shows great refinement.", + "pos": "noun", + "word_frequency": 19343 + }, + { + "word": "reposteria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastry shop;confectionery;baking", + "example_sentence_native": "Compramos pasteles en la reposteria.", + "example_sentence_english": "We bought cakes at the pastry shop.", + "pos": "noun", + "word_frequency": 19344 + }, + { + "word": "reseñar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to review;to summarize", + "example_sentence_native": "El crítico va a reseñar la nueva película.", + "example_sentence_english": "The critic is going to review the new movie.", + "pos": "verb", + "word_frequency": 19345 + }, + { + "word": "risco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crag;cliff", + "example_sentence_native": "El águila anidaba en lo alto del risco.", + "example_sentence_english": "The eagle nested high on the crag.", + "pos": "noun", + "word_frequency": 19347 + }, + { + "word": "rodaja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slice (of fruit;vegetable)", + "example_sentence_native": "Me gusta poner una rodaja de limón en mi té.", + "example_sentence_english": "I like to put a slice of lemon in my tea.", + "pos": "noun", + "word_frequency": 19349 + }, + { + "word": "rondón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rondón (Caribbean stew)", + "example_sentence_native": "El rondón es un plato típico de la costa caribeña.", + "example_sentence_english": "Rondón is a typical dish from the Caribbean coast.", + "pos": "noun", + "word_frequency": 19350 + }, + { + "word": "sabiduria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wisdom", + "example_sentence_native": "La sabiduria se adquiere con la experiencia.", + "example_sentence_english": "Wisdom is acquired through experience.", + "pos": "noun", + "word_frequency": 19355 + }, + { + "word": "separatismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separatism", + "example_sentence_native": "El separatismo es un tema político complejo.", + "example_sentence_english": "Separatism is a complex political issue.", + "pos": "noun", + "word_frequency": 19357 + }, + { + "word": "setecientos", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seven hundred", + "example_sentence_native": "Hay setecientos libros en la biblioteca.", + "example_sentence_english": "There are seven hundred books in the library.", + "pos": "adjective", + "word_frequency": 19358 + }, + { + "word": "sinsentido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;absurdity", + "example_sentence_native": "Lo que dijo fue un completo sinsentido.", + "example_sentence_english": "What he said was complete nonsense.", + "pos": "noun", + "word_frequency": 19360 + }, + { + "word": "spirit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spirit", + "example_sentence_native": "Tiene un gran spirit de lucha.", + "example_sentence_english": "He has a great fighting spirit.", + "pos": "noun", + "word_frequency": 19363 + }, + { + "word": "subcampeon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "runner-up;vice-champion", + "example_sentence_native": "El equipo quedó subcampeón del torneo.", + "example_sentence_english": "The team was runner-up in the tournament.", + "pos": "noun", + "word_frequency": 19365 + }, + { + "word": "suministrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplied;provided", + "example_sentence_native": "La información suministrada es muy útil.", + "example_sentence_english": "The supplied information is very useful.", + "pos": "adjective", + "word_frequency": 19366 + }, + { + "word": "suspense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspense", + "example_sentence_native": "La película de suspense me mantuvo en vilo.", + "example_sentence_english": "The suspense film kept me on edge.", + "pos": "noun", + "word_frequency": 19367 + }, + { + "word": "taquicardia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tachycardia", + "example_sentence_native": "Sintió una fuerte taquicardia después del susto.", + "example_sentence_english": "He felt a strong tachycardia after the scare.", + "pos": "noun", + "word_frequency": 19369 + }, + { + "word": "tatuado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattooed", + "example_sentence_native": "Tiene el brazo completamente tatuado.", + "example_sentence_english": "He has his arm completely tattooed.", + "pos": "adjective", + "word_frequency": 19371 + }, + { + "word": "tecnológicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technologically", + "example_sentence_native": "La empresa está tecnológicamente muy avanzada.", + "example_sentence_english": "The company is technologically very advanced.", + "pos": "adverb", + "word_frequency": 19373 + }, + { + "word": "topa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mole (animal);bump;knot", + "example_sentence_native": "Encontró una topa en el jardín.", + "example_sentence_english": "He found a mole in the garden.", + "pos": "noun", + "word_frequency": 19374 + }, + { + "word": "tradicion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tradition", + "example_sentence_native": "Es una tradición muy antigua en mi país.", + "example_sentence_english": "It's a very old tradition in my country.", + "pos": "noun", + "word_frequency": 19376 + }, + { + "word": "tramite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "procedure;process;formality", + "example_sentence_native": "El trámite para obtener el pasaporte es largo.", + "example_sentence_english": "The procedure to obtain the passport is long.", + "pos": "noun", + "word_frequency": 19377 + }, + { + "word": "translation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translation", + "example_sentence_native": "Necesito una translation de este documento.", + "example_sentence_english": "I need a translation of this document.", + "pos": "noun", + "word_frequency": 19378 + }, + { + "word": "tártaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tartar (person;sauce)", + "example_sentence_native": "Me gusta el pescado con salsa tártara.", + "example_sentence_english": "I like fish with Tartar sauce.", + "pos": "noun", + "word_frequency": 19380 + }, + { + "word": "uniformemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uniformly", + "example_sentence_native": "El color se distribuyó uniformemente por toda la superficie.", + "example_sentence_english": "The color was uniformly distributed over the entire surface.", + "pos": "adverb", + "word_frequency": 19381 + }, + { + "word": "urbanizacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urbanization;housing development", + "example_sentence_native": "Viven en una urbanización a las afueras de la ciudad.", + "example_sentence_english": "They live in a housing development on the outskirts of the city.", + "pos": "noun", + "word_frequency": 19382 + }, + { + "word": "varonil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manly;virile", + "example_sentence_native": "Su voz era profunda y varonil.", + "example_sentence_english": "His voice was deep and manly.", + "pos": "adjective", + "word_frequency": 19384 + }, + { + "word": "veintiséis", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-six", + "example_sentence_native": "Tengo veintiséis años.", + "example_sentence_english": "I am twenty-six years old.", + "pos": "adjective", + "word_frequency": 19385 + }, + { + "word": "venerado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venerated;revered", + "example_sentence_native": "Es un santo muy venerado en la región.", + "example_sentence_english": "He is a highly venerated saint in the region.", + "pos": "adjective", + "word_frequency": 19386 + }, + { + "word": "verja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence;railing;gate", + "example_sentence_native": "La casa tiene una verja de hierro forjado.", + "example_sentence_english": "The house has a wrought iron fence.", + "pos": "noun", + "word_frequency": 19387 + }, + { + "word": "vertebra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertebra", + "example_sentence_native": "Se fracturó una vértebra en la caída.", + "example_sentence_english": "He fractured a vertebra in the fall.", + "pos": "noun", + "word_frequency": 19389 + }, + { + "word": "yard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yard;garden", + "example_sentence_native": "Los niños juegan en el yard.", + "example_sentence_english": "The children play in the yard.", + "pos": "noun", + "word_frequency": 19393 + }, + { + "word": "zafar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape;to get away;to untangle", + "example_sentence_native": "Logró zafar de la situación incómoda.", + "example_sentence_english": "He managed to escape the awkward situation.", + "pos": "verb", + "word_frequency": 19395 + }, + { + "word": "orbita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orbit", + "example_sentence_native": "La Tierra gira alrededor del Sol en su órbita.", + "example_sentence_english": "The Earth revolves around the Sun in its orbit.", + "pos": "noun", + "word_frequency": 19396 + }, + { + "word": "acetato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acetate;vinyl record", + "example_sentence_native": "Escuchamos música en viejos acetatos.", + "example_sentence_english": "We listened to music on old vinyl records.", + "pos": "noun", + "word_frequency": 19397 + }, + { + "word": "afgano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Afghan", + "example_sentence_native": "Conoció a un refugiado afgano.", + "example_sentence_english": "He met an Afghan refugee.", + "pos": "adjective", + "word_frequency": 19399 + }, + { + "word": "agravado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggravated;worsened", + "example_sentence_native": "Su condición de salud se ha agravado.", + "example_sentence_english": "His health condition has worsened.", + "pos": "adjective", + "word_frequency": 19400 + }, + { + "word": "alero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eaves;small forward (basketball)", + "example_sentence_native": "El alero de la casa protegía la entrada de la lluvia.", + "example_sentence_english": "The eaves of the house protected the entrance from the rain.", + "pos": "noun", + "word_frequency": 19401 + }, + { + "word": "amoniaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammonia", + "example_sentence_native": "El amoniaco tiene un olor muy fuerte y característico.", + "example_sentence_english": "Ammonia has a very strong and characteristic smell.", + "pos": "noun", + "word_frequency": 19404 + }, + { + "word": "androide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "android", + "example_sentence_native": "En la ciencia ficción, los androides a menudo se confunden con humanos.", + "example_sentence_english": "In science fiction, androids are often confused with humans.", + "pos": "noun", + "word_frequency": 19405 + }, + { + "word": "angosto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narrow", + "example_sentence_native": "El camino era muy angosto y difícil de transitar.", + "example_sentence_english": "The path was very narrow and difficult to travel.", + "pos": "adjective", + "word_frequency": 19406 + }, + { + "word": "arquidiocesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archdiocese", + "example_sentence_native": "La arquidiócesis anunció cambios en la administración parroquial.", + "example_sentence_english": "The archdiocese announced changes in parish administration.", + "pos": "noun", + "word_frequency": 19408 + }, + { + "word": "arrabal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slum;outskirts;shantytown", + "example_sentence_native": "Creció en un arrabal a las afueras de la ciudad.", + "example_sentence_english": "He grew up in a slum on the outskirts of the city.", + "pos": "noun", + "word_frequency": 19409 + }, + { + "word": "atenuar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attenuate;to mitigate;to lessen", + "example_sentence_native": "Intentaron atenuar el impacto de la crisis económica.", + "example_sentence_english": "They tried to mitigate the impact of the economic crisis.", + "pos": "verb", + "word_frequency": 19411 + }, + { + "word": "autogestion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-management;self-governance", + "example_sentence_native": "La empresa promueve la autogestión entre sus empleados.", + "example_sentence_english": "The company promotes self-management among its employees.", + "pos": "noun", + "word_frequency": 19413 + }, + { + "word": "azulado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bluish", + "example_sentence_native": "El cielo tenía un tono azulado al atardecer.", + "example_sentence_english": "The sky had a bluish tint at sunset.", + "pos": "adjective", + "word_frequency": 19415 + }, + { + "word": "banqueta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sidewalk (LatAm);bench (Spain)", + "example_sentence_native": "Caminamos por la banqueta hasta la esquina.", + "example_sentence_english": "We walked along the sidewalk to the corner.", + "pos": "noun", + "word_frequency": 19416 + }, + { + "word": "bautizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to baptize;to christen", + "example_sentence_native": "Decidieron bautizar a su hijo el próximo mes.", + "example_sentence_english": "They decided to baptize their son next month.", + "pos": "verb", + "word_frequency": 19419 + }, + { + "word": "bañado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathed;wet;covered (in liquid)", + "example_sentence_native": "El perro estaba bañado en barro después de jugar.", + "example_sentence_english": "The dog was covered in mud after playing.", + "pos": "adjective", + "word_frequency": 19420 + }, + { + "word": "bucear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dive;to scuba dive", + "example_sentence_native": "Le encanta bucear en el mar Caribe.", + "example_sentence_english": "He loves to dive in the Caribbean Sea.", + "pos": "verb", + "word_frequency": 19425 + }, + { + "word": "bulldog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulldog", + "example_sentence_native": "Mi vecino tiene un bulldog muy amigable.", + "example_sentence_english": "My neighbor has a very friendly bulldog.", + "pos": "noun", + "word_frequency": 19426 + }, + { + "word": "caducar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expire;to lapse", + "example_sentence_native": "Asegúrate de revisar la fecha de caducidad de los alimentos.", + "example_sentence_english": "Make sure to check the expiration date of the food.", + "pos": "verb", + "word_frequency": 19429 + }, + { + "word": "calcetin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sock", + "example_sentence_native": "Necesito un par de calcetines limpios.", + "example_sentence_english": "I need a pair of clean socks.", + "pos": "noun", + "word_frequency": 19431 + }, + { + "word": "camaraderia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camaraderie;fellowship", + "example_sentence_native": "Había una gran camaradería entre los miembros del equipo.", + "example_sentence_english": "There was great camaraderie among the team members.", + "pos": "noun", + "word_frequency": 19433 + }, + { + "word": "catolico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Catholic", + "example_sentence_native": "La mayoría de la población es católica.", + "example_sentence_english": "The majority of the population is Catholic.", + "pos": "adjective", + "word_frequency": 19434 + }, + { + "word": "cerquita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very close;just around the corner", + "example_sentence_native": "La tienda está cerquita de aquí.", + "example_sentence_english": "The store is very close to here.", + "pos": "adverb", + "word_frequency": 19435 + }, + { + "word": "chamorro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shank (meat);calf (leg)", + "example_sentence_native": "El chamorro de cerdo es muy popular en la cocina mexicana.", + "example_sentence_english": "Pork shank is very popular in Mexican cuisine.", + "pos": "noun", + "word_frequency": 19438 + }, + { + "word": "chollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bargain;steal (a good deal)", + "example_sentence_native": "Encontré un chollo en las rebajas de verano.", + "example_sentence_english": "I found a bargain in the summer sales.", + "pos": "noun", + "word_frequency": 19439 + }, + { + "word": "clandestinamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clandestinely", + "example_sentence_native": "Entraron al edificio clandestinamente por la noche.", + "example_sentence_english": "They entered the building clandestinely at night.", + "pos": "adverb", + "word_frequency": 19442 + }, + { + "word": "coartada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alibi", + "example_sentence_native": "El sospechoso tenía una coartada sólida para la noche del crimen.", + "example_sentence_english": "The suspect had a solid alibi for the night of the crime.", + "pos": "noun", + "word_frequency": 19443 + }, + { + "word": "coautor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-author", + "example_sentence_native": "Es el coautor de varios libros de historia.", + "example_sentence_english": "He is the co-author of several history books.", + "pos": "noun", + "word_frequency": 19444 + }, + { + "word": "codificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to encode", + "example_sentence_native": "Necesitamos codificar la información para protegerla.", + "example_sentence_english": "We need to encode the information to protect it.", + "pos": "verb", + "word_frequency": 19445 + }, + { + "word": "colmenar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apiary", + "example_sentence_native": "El apicultor revisa su colmenar cada semana.", + "example_sentence_english": "The beekeeper checks his apiary every week.", + "pos": "noun", + "word_frequency": 19446 + }, + { + "word": "comarcal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regional", + "example_sentence_native": "La carretera comarcal conecta varios pueblos pequeños.", + "example_sentence_english": "The regional road connects several small towns.", + "pos": "adjective", + "word_frequency": 19448 + }, + { + "word": "condensado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condensed", + "example_sentence_native": "La leche condensada es muy dulce.", + "example_sentence_english": "Condensed milk is very sweet.", + "pos": "adjective", + "word_frequency": 19451 + }, + { + "word": "confesor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confessor", + "example_sentence_native": "El sacerdote actuó como confesor para los fieles.", + "example_sentence_english": "The priest acted as confessor for the faithful.", + "pos": "noun", + "word_frequency": 19452 + }, + { + "word": "consolador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comforting", + "example_sentence_native": "Sus palabras fueron muy consoladoras en un momento difícil.", + "example_sentence_english": "His words were very comforting in a difficult moment.", + "pos": "adjective", + "word_frequency": 19453 + }, + { + "word": "contratante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contracting party", + "example_sentence_native": "Ambas partes contratantes deben firmar el acuerdo.", + "example_sentence_english": "Both contracting parties must sign the agreement.", + "pos": "noun", + "word_frequency": 19454 + }, + { + "word": "convertible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convertible", + "example_sentence_native": "Compró un coche convertible para el verano.", + "example_sentence_english": "He bought a convertible car for the summer.", + "pos": "adjective", + "word_frequency": 19455 + }, + { + "word": "corno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horn", + "example_sentence_native": "El músico tocaba el corno francés en la orquesta.", + "example_sentence_english": "The musician played the French horn in the orchestra.", + "pos": "noun", + "word_frequency": 19457 + }, + { + "word": "corzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roe deer", + "example_sentence_native": "Vimos un corzo pastando en el bosque al amanecer.", + "example_sentence_english": "We saw a roe deer grazing in the forest at dawn.", + "pos": "noun", + "word_frequency": 19458 + }, + { + "word": "criminalizar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to criminalize", + "example_sentence_native": "Algunos países buscan criminalizar ciertas actividades.", + "example_sentence_english": "Some countries seek to criminalize certain activities.", + "pos": "verb", + "word_frequency": 19459 + }, + { + "word": "cuneta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ditch", + "example_sentence_native": "El coche se salió de la carretera y cayó en la cuneta.", + "example_sentence_english": "The car went off the road and fell into the ditch.", + "pos": "noun", + "word_frequency": 19461 + }, + { + "word": "deportar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deport", + "example_sentence_native": "Las autoridades decidieron deportar al inmigrante ilegal.", + "example_sentence_english": "The authorities decided to deport the illegal immigrant.", + "pos": "verb", + "word_frequency": 19465 + }, + { + "word": "descontrolado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrolled", + "example_sentence_native": "El fuego se propagó de forma descontrolada por el bosque.", + "example_sentence_english": "The fire spread uncontrollably through the forest.", + "pos": "adjective", + "word_frequency": 19466 + }, + { + "word": "desplomar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse", + "example_sentence_native": "El edificio viejo amenazaba con desplomarse en cualquier momento.", + "example_sentence_english": "The old building threatened to collapse at any moment.", + "pos": "verb", + "word_frequency": 19467 + }, + { + "word": "diadema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headband", + "example_sentence_native": "La niña llevaba una diadema de flores en el pelo.", + "example_sentence_english": "The girl wore a flower headband in her hair.", + "pos": "noun", + "word_frequency": 19469 + }, + { + "word": "dignatario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dignitary", + "example_sentence_native": "Varios dignatarios extranjeros asistieron a la cumbre.", + "example_sentence_english": "Several foreign dignitaries attended the summit.", + "pos": "noun", + "word_frequency": 19470 + }, + { + "word": "dócil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "docile", + "example_sentence_native": "El perro es muy dócil y obedece todas las órdenes.", + "example_sentence_english": "The dog is very docile and obeys all commands.", + "pos": "adjective", + "word_frequency": 19477 + }, + { + "word": "embarcadero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pier", + "example_sentence_native": "Los barcos esperaban en el embarcadero para cargar mercancías.", + "example_sentence_english": "The boats waited at the pier to load goods.", + "pos": "noun", + "word_frequency": 19479 + }, + { + "word": "empobrecimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impoverishment", + "example_sentence_native": "El empobrecimiento de la región es preocupante.", + "example_sentence_english": "The impoverishment of the region is worrying.", + "pos": "noun", + "word_frequency": 19480 + }, + { + "word": "enderezar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to straighten", + "example_sentence_native": "Necesitas enderezar el cuadro.", + "example_sentence_english": "You need to straighten the picture.", + "pos": "verb", + "word_frequency": 19481 + }, + { + "word": "enigmático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enigmatic", + "example_sentence_native": "Su sonrisa enigmática me intrigaba.", + "example_sentence_english": "Her enigmatic smile intrigued me.", + "pos": "adjective", + "word_frequency": 19482 + }, + { + "word": "escandalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scandal", + "example_sentence_native": "El escándalo político sacudió al país.", + "example_sentence_english": "The political scandal shook the country.", + "pos": "noun", + "word_frequency": 19485 + }, + { + "word": "escandinavo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Scandinavian", + "example_sentence_native": "Le gusta la literatura escandinava.", + "example_sentence_english": "He likes Scandinavian literature.", + "pos": "adjective", + "word_frequency": 19486 + }, + { + "word": "esfinge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sphinx", + "example_sentence_native": "La Gran Esfinge de Giza es impresionante.", + "example_sentence_english": "The Great Sphinx of Giza is impressive.", + "pos": "noun", + "word_frequency": 19487 + }, + { + "word": "espiga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ear (of grain)", + "example_sentence_native": "El trigo tiene una espiga dorada.", + "example_sentence_english": "Wheat has a golden ear.", + "pos": "noun", + "word_frequency": 19488 + }, + { + "word": "espora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spore", + "example_sentence_native": "Los hongos se reproducen por esporas.", + "example_sentence_english": "Fungi reproduce by spores.", + "pos": "noun", + "word_frequency": 19489 + }, + { + "word": "estepa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steppe", + "example_sentence_native": "La estepa es un bioma de pastizales.", + "example_sentence_english": "The steppe is a grassland biome.", + "pos": "noun", + "word_frequency": 19490 + }, + { + "word": "excavar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excavate", + "example_sentence_native": "Los arqueólogos van a excavar el sitio.", + "example_sentence_english": "The archaeologists are going to excavate the site.", + "pos": "verb", + "word_frequency": 19492 + }, + { + "word": "exdirector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former director", + "example_sentence_native": "El exdirector visitó la escuela.", + "example_sentence_english": "The former director visited the school.", + "pos": "noun", + "word_frequency": 19493 + }, + { + "word": "expansivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expansive", + "example_sentence_native": "Tiene una personalidad muy expansiva.", + "example_sentence_english": "He has a very outgoing personality.", + "pos": "adjective", + "word_frequency": 19494 + }, + { + "word": "farsante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impostor", + "example_sentence_native": "Descubrieron que era un farsante.", + "example_sentence_english": "They discovered he was an impostor.", + "pos": "noun", + "word_frequency": 19495 + }, + { + "word": "favorecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favored", + "example_sentence_native": "Es el candidato más favorecido.", + "example_sentence_english": "He is the most favored candidate.", + "pos": "adjective", + "word_frequency": 19497 + }, + { + "word": "fiero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fierce", + "example_sentence_native": "El león es un animal fiero.", + "example_sentence_english": "The lion is a fierce animal.", + "pos": "adjective", + "word_frequency": 19498 + }, + { + "word": "flete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freight", + "example_sentence_native": "El costo del flete es alto.", + "example_sentence_english": "The cost of the freight is high.", + "pos": "noun", + "word_frequency": 19499 + }, + { + "word": "fortuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortuitous", + "example_sentence_native": "Fue un encuentro fortuito.", + "example_sentence_english": "It was a fortuitous encounter.", + "pos": "adjective", + "word_frequency": 19501 + }, + { + "word": "galáctico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galactic", + "example_sentence_native": "Observamos fenómenos galácticos.", + "example_sentence_english": "We observe galactic phenomena.", + "pos": "adjective", + "word_frequency": 19505 + }, + { + "word": "germánico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Germanic", + "example_sentence_native": "El alemán es una lengua germánica.", + "example_sentence_english": "German is a Germanic language.", + "pos": "adjective", + "word_frequency": 19507 + }, + { + "word": "gimnasta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnast", + "example_sentence_native": "La gimnasta ganó la medalla de oro.", + "example_sentence_english": "The gymnast won the gold medal.", + "pos": "noun", + "word_frequency": 19509 + }, + { + "word": "godo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Goth", + "example_sentence_native": "Los visigodos fueron un pueblo germánico.", + "example_sentence_english": "The Visigoths were a Germanic people.", + "pos": "noun", + "word_frequency": 19510 + }, + { + "word": "hilarante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hilarious", + "example_sentence_native": "La película era hilarante.", + "example_sentence_english": "The movie was hilarious.", + "pos": "adjective", + "word_frequency": 19514 + }, + { + "word": "homenajear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay homage to", + "example_sentence_native": "Quieren homenajear al artista.", + "example_sentence_english": "They want to honor the artist.", + "pos": "verb", + "word_frequency": 19515 + }, + { + "word": "hule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oilcloth", + "example_sentence_native": "La mesa está cubierta con un hule.", + "example_sentence_english": "The table is covered with an oilcloth.", + "pos": "noun", + "word_frequency": 19517 + }, + { + "word": "ilustrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illustrative", + "example_sentence_native": "Su ejemplo fue muy ilustrativo.", + "example_sentence_english": "His example was very illustrative.", + "pos": "adjective", + "word_frequency": 19518 + }, + { + "word": "incoherencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incoherence", + "example_sentence_native": "Sus argumentos estaban llenos de incoherencia.", + "example_sentence_english": "His arguments were full of incoherence.", + "pos": "noun", + "word_frequency": 19520 + }, + { + "word": "indagación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inquiry;investigation", + "example_sentence_native": "La policía inició una indagación sobre el caso.", + "example_sentence_english": "The police began an inquiry into the case.", + "pos": "noun", + "word_frequency": 19521 + }, + { + "word": "indagatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interrogative;investigative", + "example_sentence_native": "El proceso indagatorio duró varias horas.", + "example_sentence_english": "The investigative process lasted several hours.", + "pos": "adjective", + "word_frequency": 19522 + }, + { + "word": "indemnizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate;to indemnify", + "example_sentence_native": "La empresa tuvo que indemnizar a los afectados.", + "example_sentence_english": "The company had to compensate those affected.", + "pos": "verb", + "word_frequency": 19523 + }, + { + "word": "indomable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untamable;indomitable", + "example_sentence_native": "Era un espíritu indomable, nunca se rendía.", + "example_sentence_english": "He had an indomitable spirit, he never gave up.", + "pos": "adjective", + "word_frequency": 19524 + }, + { + "word": "inequívoco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequivocal;unambiguous", + "example_sentence_native": "Su respuesta fue un signo inequívoco de aprobación.", + "example_sentence_english": "His answer was an unequivocal sign of approval.", + "pos": "adjective", + "word_frequency": 19525 + }, + { + "word": "inestimable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inestimable;invaluable", + "example_sentence_native": "Su ayuda fue de un valor inestimable.", + "example_sentence_english": "His help was of inestimable value.", + "pos": "adjective", + "word_frequency": 19526 + }, + { + "word": "infelicidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unhappiness;misery", + "example_sentence_native": "La infelicidad se reflejaba en su rostro.", + "example_sentence_english": "Unhappiness was reflected in her face.", + "pos": "noun", + "word_frequency": 19527 + }, + { + "word": "injerto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graft;implant", + "example_sentence_native": "El cirujano realizó un injerto de piel.", + "example_sentence_english": "The surgeon performed a skin graft.", + "pos": "noun", + "word_frequency": 19528 + }, + { + "word": "inmundo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filthy;unclean;foul", + "example_sentence_native": "El lugar estaba inmundo, lleno de basura.", + "example_sentence_english": "The place was filthy, full of trash.", + "pos": "adjective", + "word_frequency": 19529 + }, + { + "word": "instalacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installation;facility", + "example_sentence_native": "La instalación de la nueva máquina fue rápida.", + "example_sentence_english": "The installation of the new machine was quick.", + "pos": "noun", + "word_frequency": 19530 + }, + { + "word": "instruir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instruct;to educate", + "example_sentence_native": "El profesor se dedicó a instruir a sus alumnos.", + "example_sentence_english": "The teacher dedicated himself to instructing his students.", + "pos": "verb", + "word_frequency": 19531 + }, + { + "word": "interceptado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intercepted", + "example_sentence_native": "El mensaje fue interceptado antes de llegar a su destino.", + "example_sentence_english": "The message was intercepted before reaching its destination.", + "pos": "adjective", + "word_frequency": 19532 + }, + { + "word": "irreverente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irreverent", + "example_sentence_native": "Su actitud irreverente sorprendió a todos.", + "example_sentence_english": "His irreverent attitude surprised everyone.", + "pos": "adjective", + "word_frequency": 19533 + }, + { + "word": "jugabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gameplay;playability", + "example_sentence_native": "La jugabilidad de este videojuego es excelente.", + "example_sentence_english": "The gameplay of this video game is excellent.", + "pos": "noun", + "word_frequency": 19541 + }, + { + "word": "madrugar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get up early", + "example_sentence_native": "Me gusta madrugar para aprovechar el día.", + "example_sentence_english": "I like to get up early to make the most of the day.", + "pos": "verb", + "word_frequency": 19549 + }, + { + "word": "malaya", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Malay (person;language)", + "example_sentence_native": "Aprendió a hablar malayo durante su viaje.", + "example_sentence_english": "He learned to speak Malay during his trip.", + "pos": "noun", + "word_frequency": 19550 + }, + { + "word": "maldicion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curse;damnation", + "example_sentence_native": "Lanzó una maldición al cielo.", + "example_sentence_english": "He cast a curse to the sky.", + "pos": "noun", + "word_frequency": 19551 + }, + { + "word": "masacrado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "massacred;slaughtered", + "example_sentence_native": "El ejército encontró un pueblo masacrado.", + "example_sentence_english": "The army found a massacred village.", + "pos": "adjective", + "word_frequency": 19553 + }, + { + "word": "mayoral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreman;mayor (archaic)", + "example_sentence_native": "El mayoral de la finca supervisaba el trabajo.", + "example_sentence_english": "The foreman of the farm supervised the work.", + "pos": "noun", + "word_frequency": 19554 + }, + { + "word": "medallón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locket;medallion", + "example_sentence_native": "Llevaba un medallón con la foto de su abuela.", + "example_sentence_english": "She wore a locket with her grandmother's photo.", + "pos": "noun", + "word_frequency": 19556 + }, + { + "word": "misiva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "missive;letter", + "example_sentence_native": "Recibió una misiva urgente del embajador.", + "example_sentence_english": "He received an urgent missive from the ambassador.", + "pos": "noun", + "word_frequency": 19557 + }, + { + "word": "mordisco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite;nibble", + "example_sentence_native": "El perro le dio un pequeño mordisco en la mano.", + "example_sentence_english": "The dog gave him a small bite on the hand.", + "pos": "noun", + "word_frequency": 19559 + }, + { + "word": "muni", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "municipality (informal)", + "example_sentence_native": "La muni está arreglando las calles del barrio.", + "example_sentence_english": "The municipality is fixing the neighborhood streets.", + "pos": "noun", + "word_frequency": 19560 + }, + { + "word": "ninfa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nymph", + "example_sentence_native": "En la mitología, las ninfas habitaban los bosques.", + "example_sentence_english": "In mythology, nymphs inhabited the forests.", + "pos": "noun", + "word_frequency": 19564 + }, + { + "word": "nochevieja", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "New Year's Eve", + "example_sentence_native": "Celebramos la Nochevieja con uvas y champán.", + "example_sentence_english": "We celebrated New Year's Eve with grapes and champagne.", + "pos": "noun", + "word_frequency": 19565 + }, + { + "word": "obsesion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obsession", + "example_sentence_native": "Tiene una obsesión por el orden y la limpieza.", + "example_sentence_english": "He has an obsession with order and cleanliness.", + "pos": "noun", + "word_frequency": 19571 + }, + { + "word": "panacea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "panacea", + "example_sentence_native": "No existe una panacea para todos los problemas económicos.", + "example_sentence_english": "There is no panacea for all economic problems.", + "pos": "noun", + "word_frequency": 19578 + }, + { + "word": "parental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parental", + "example_sentence_native": "La guía parental es fundamental para el desarrollo infantil.", + "example_sentence_english": "Parental guidance is fundamental for child development.", + "pos": "adjective", + "word_frequency": 19579 + }, + { + "word": "pasantía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internship", + "example_sentence_native": "Realizó una pasantía de verano en una empresa de marketing.", + "example_sentence_english": "She completed a summer internship at a marketing company.", + "pos": "noun", + "word_frequency": 19580 + }, + { + "word": "pechuga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "breast (chicken;turkey)", + "example_sentence_native": "Pedí una pechuga de pollo a la plancha para cenar.", + "example_sentence_english": "I ordered a grilled chicken breast for dinner.", + "pos": "noun", + "word_frequency": 19581 + }, + { + "word": "pensante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinking;thoughtful", + "example_sentence_native": "El ser humano es un animal racional y pensante.", + "example_sentence_english": "The human being is a rational and thinking animal.", + "pos": "adjective", + "word_frequency": 19582 + }, + { + "word": "perfeccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfection", + "example_sentence_native": "Busca la perfección en cada detalle de su trabajo.", + "example_sentence_english": "He seeks perfection in every detail of his work.", + "pos": "noun", + "word_frequency": 19583 + }, + { + "word": "piscis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pisces", + "example_sentence_native": "Mi hermana nació en marzo, así que su signo es Piscis.", + "example_sentence_english": "My sister was born in March, so her sign is Pisces.", + "pos": "noun", + "word_frequency": 19584 + }, + { + "word": "planicie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plain;flatland", + "example_sentence_native": "La vasta planicie se extendía hasta donde alcanzaba la vista.", + "example_sentence_english": "The vast plain stretched as far as the eye could see.", + "pos": "noun", + "word_frequency": 19585 + }, + { + "word": "polarizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polarized;tinted", + "example_sentence_native": "La opinión pública está muy polarizada sobre este tema.", + "example_sentence_english": "Public opinion is very polarized on this issue.", + "pos": "adjective", + "word_frequency": 19586 + }, + { + "word": "pontificado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontificate;papacy", + "example_sentence_native": "El pontificado del Papa Juan Pablo II fue muy largo.", + "example_sentence_english": "Pope John Paul II's pontificate was very long.", + "pos": "noun", + "word_frequency": 19587 + }, + { + "word": "posteo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "post (online)", + "example_sentence_native": "Su último posteo en Instagram recibió muchos comentarios.", + "example_sentence_english": "His last Instagram post received many comments.", + "pos": "noun", + "word_frequency": 19588 + }, + { + "word": "pregón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proclamation;public announcement", + "example_sentence_native": "El pregón del alcalde dio inicio a las fiestas del pueblo.", + "example_sentence_english": "The mayor's proclamation marked the beginning of the town's festivities.", + "pos": "noun", + "word_frequency": 19589 + }, + { + "word": "prevaricación", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "prevarication;malfeasance", + "example_sentence_native": "El funcionario fue acusado de prevaricación por sus acciones ilegales.", + "example_sentence_english": "The official was accused of prevarication for his illegal actions.", + "pos": "noun", + "word_frequency": 19590 + }, + { + "word": "primaveral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spring-like;vernal", + "example_sentence_native": "Disfrutamos de un clima primaveral muy agradable hoy.", + "example_sentence_english": "We enjoyed very pleasant spring-like weather today.", + "pos": "adjective", + "word_frequency": 19591 + }, + { + "word": "procrear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to procreate;to reproduce", + "example_sentence_native": "Muchos animales procrean en primavera.", + "example_sentence_english": "Many animals procreate in spring.", + "pos": "verb", + "word_frequency": 19592 + }, + { + "word": "profesionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional (person)", + "example_sentence_native": "Es un profesionista con mucha experiencia en su área.", + "example_sentence_english": "He is a professional with a lot of experience in his field.", + "pos": "noun", + "word_frequency": 19593 + }, + { + "word": "quijada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaw;jawbone", + "example_sentence_native": "Se fracturó la quijada en el accidente.", + "example_sentence_english": "He fractured his jaw in the accident.", + "pos": "noun", + "word_frequency": 19594 + }, + { + "word": "radicalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalization", + "example_sentence_native": "La radicalización de ciertos grupos es un problema social.", + "example_sentence_english": "The radicalization of certain groups is a social problem.", + "pos": "noun", + "word_frequency": 19596 + }, + { + "word": "recaída", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relapse;setback", + "example_sentence_native": "Después de la mejora, sufrió una recaída en su enfermedad.", + "example_sentence_english": "After improving, he suffered a relapse in his illness.", + "pos": "noun", + "word_frequency": 19597 + }, + { + "word": "reedición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-edition;reissue", + "example_sentence_native": "La banda anunció la reedición de su álbum clásico.", + "example_sentence_english": "The band announced the re-edition of their classic album.", + "pos": "noun", + "word_frequency": 19598 + }, + { + "word": "remolino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whirlwind;eddy;swirl", + "example_sentence_native": "El remolino de viento levantó hojas del suelo.", + "example_sentence_english": "The whirlwind lifted leaves from the ground.", + "pos": "noun", + "word_frequency": 19600 + }, + { + "word": "repulsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repulsion", + "example_sentence_native": "Sintió una fuerte repulsión hacia la violencia.", + "example_sentence_english": "He felt a strong repulsion towards violence.", + "pos": "noun", + "word_frequency": 19602 + }, + { + "word": "resbalar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slip;to slide", + "example_sentence_native": "Ten cuidado de no resbalar en el hielo.", + "example_sentence_english": "Be careful not to slip on the ice.", + "pos": "verb", + "word_frequency": 19603 + }, + { + "word": "restituir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to restore;to return;to restitute", + "example_sentence_native": "La empresa debe restituir el dinero a los clientes afectados.", + "example_sentence_english": "The company must restore the money to the affected customers.", + "pos": "verb", + "word_frequency": 19604 + }, + { + "word": "retardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delay", + "example_sentence_native": "Hubo un retardo en la entrega del paquete.", + "example_sentence_english": "There was a delay in the package delivery.", + "pos": "noun", + "word_frequency": 19605 + }, + { + "word": "retribucion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remuneration;retribution;payment", + "example_sentence_native": "La retribución por su trabajo fue justa.", + "example_sentence_english": "The remuneration for his work was fair.", + "pos": "noun", + "word_frequency": 19606 + }, + { + "word": "reventa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resale", + "example_sentence_native": "La reventa de entradas está prohibida.", + "example_sentence_english": "The resale of tickets is prohibited.", + "pos": "noun", + "word_frequency": 19607 + }, + { + "word": "rigurosamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rigorously;strictly", + "example_sentence_native": "El experimento debe seguirse rigurosamente.", + "example_sentence_english": "The experiment must be followed rigorously.", + "pos": "adverb", + "word_frequency": 19608 + }, + { + "word": "rompimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breaking;rupture;breakup", + "example_sentence_native": "El rompimiento de la tubería causó una inundación.", + "example_sentence_english": "The breaking of the pipe caused a flood.", + "pos": "noun", + "word_frequency": 19610 + }, + { + "word": "saciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to satisfy;to quench;to satiate", + "example_sentence_native": "El agua fresca ayudó a saciar su sed.", + "example_sentence_english": "The fresh water helped to quench his thirst.", + "pos": "verb", + "word_frequency": 19615 + }, + { + "word": "suboficial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-commissioned officer;sub-officer", + "example_sentence_native": "El suboficial dio las órdenes a la tropa.", + "example_sentence_english": "The non-commissioned officer gave the orders to the troop.", + "pos": "noun", + "word_frequency": 19620 + }, + { + "word": "síndico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trustee;receiver;syndic", + "example_sentence_native": "El síndico fue nombrado para administrar la quiebra.", + "example_sentence_english": "The trustee was appointed to administer the bankruptcy.", + "pos": "noun", + "word_frequency": 19622 + }, + { + "word": "súbitamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suddenly;abruptly", + "example_sentence_native": "Súbitamente, la luz se apagó.", + "example_sentence_english": "Suddenly, the light went out.", + "pos": "adverb", + "word_frequency": 19623 + }, + { + "word": "suplica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plea;supplication", + "example_sentence_native": "Su súplica fue ignorada por las autoridades.", + "example_sentence_english": "His plea was ignored by the authorities.", + "pos": "noun", + "word_frequency": 19624 + }, + { + "word": "torácico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thoracic", + "example_sentence_native": "El dolor torácico puede ser un síntoma grave.", + "example_sentence_english": "Thoracic pain can be a serious symptom.", + "pos": "adjective", + "word_frequency": 19634 + }, + { + "word": "usurpador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usurper", + "example_sentence_native": "El rey fue derrocado por un usurpador.", + "example_sentence_english": "The king was overthrown by a usurper.", + "pos": "noun", + "word_frequency": 19638 + }, + { + "word": "valorización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valuation;appreciation;valorization", + "example_sentence_native": "La valorización de la propiedad ha aumentado.", + "example_sentence_english": "The appreciation of the property has increased.", + "pos": "noun", + "word_frequency": 19639 + }, + { + "word": "érase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "there was once", + "example_sentence_native": "Érase una vez una princesa que vivía en un castillo.", + "example_sentence_english": "Once upon a time there was a princess who lived in a castle.", + "pos": "verb", + "word_frequency": 19647 + }, + { + "word": "absorbente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorbent", + "example_sentence_native": "Usa un paño absorbente para limpiar el derrame.", + "example_sentence_english": "Use an absorbent cloth to clean the spill.", + "pos": "adjective", + "word_frequency": 19649 + }, + { + "word": "afinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tune", + "example_sentence_native": "Necesito afinar mi guitarra antes del concierto.", + "example_sentence_english": "I need to tune my guitar before the concert.", + "pos": "verb", + "word_frequency": 19651 + }, + { + "word": "airbag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airbag", + "example_sentence_native": "El coche tiene seis airbags para mayor seguridad.", + "example_sentence_english": "The car has six airbags for greater safety.", + "pos": "noun", + "word_frequency": 19652 + }, + { + "word": "alfajor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alfajor (cookie)", + "example_sentence_native": "Me encanta comer alfajores con un café.", + "example_sentence_english": "I love eating alfajores with coffee.", + "pos": "noun", + "word_frequency": 19653 + }, + { + "word": "andanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adventure", + "example_sentence_native": "Sus andanzas por el mundo le enseñaron mucho.", + "example_sentence_english": "His adventures around the world taught him a lot.", + "pos": "noun", + "word_frequency": 19656 + }, + { + "word": "antagonista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antagonist", + "example_sentence_native": "El villano es el principal antagonista de la historia.", + "example_sentence_english": "The villain is the main antagonist of the story.", + "pos": "noun", + "word_frequency": 19657 + }, + { + "word": "aplacar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to appease", + "example_sentence_native": "Intentó aplacar la ira de la multitud con sus palabras.", + "example_sentence_english": "He tried to appease the crowd's anger with his words.", + "pos": "verb", + "word_frequency": 19659 + }, + { + "word": "apostolado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apostolate", + "example_sentence_native": "Su vida estuvo dedicada al apostolado y la caridad.", + "example_sentence_english": "His life was dedicated to apostolate and charity.", + "pos": "noun", + "word_frequency": 19660 + }, + { + "word": "aristócrata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aristocrat", + "example_sentence_native": "La familia era de origen aristócrata.", + "example_sentence_english": "The family was of aristocratic origin.", + "pos": "noun", + "word_frequency": 19663 + }, + { + "word": "asentir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nod", + "example_sentence_native": "Ella asintió con la cabeza en señal de acuerdo.", + "example_sentence_english": "She nodded her head as a sign of agreement.", + "pos": "verb", + "word_frequency": 19665 + }, + { + "word": "austero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "austere", + "example_sentence_native": "Llevaba una vida muy austera, sin lujos.", + "example_sentence_english": "He led a very austere life, without luxuries.", + "pos": "adjective", + "word_frequency": 19668 + }, + { + "word": "autoconsumo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-consumption", + "example_sentence_native": "La energía solar permite el autoconsumo en muchos hogares.", + "example_sentence_english": "Solar energy allows self-consumption in many homes.", + "pos": "noun", + "word_frequency": 19669 + }, + { + "word": "azafata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flight attendant", + "example_sentence_native": "La azafata nos sirvió las bebidas durante el vuelo.", + "example_sentence_english": "The flight attendant served us drinks during the flight.", + "pos": "noun", + "word_frequency": 19671 + }, + { + "word": "baboso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slimy", + "example_sentence_native": "El perro dejó un rastro baboso en el suelo.", + "example_sentence_english": "The dog left a slimy trail on the floor.", + "pos": "adjective", + "word_frequency": 19672 + }, + { + "word": "bananera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banana plantation", + "example_sentence_native": "La economía del país dependía de las bananeras.", + "example_sentence_english": "The country's economy depended on the banana plantations.", + "pos": "noun", + "word_frequency": 19673 + }, + { + "word": "bisturí", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scalpel", + "example_sentence_native": "El cirujano usó un bisturí para hacer la incisión.", + "example_sentence_english": "The surgeon used a scalpel to make the incision.", + "pos": "noun", + "word_frequency": 19678 + }, + { + "word": "boquilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mouthpiece;nozzle", + "example_sentence_native": "La boquilla de la trompeta estaba sucia.", + "example_sentence_english": "The trumpet's mouthpiece was dirty.", + "pos": "noun", + "word_frequency": 19680 + }, + { + "word": "bruma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mist;haze", + "example_sentence_native": "La bruma cubría la costa al amanecer.", + "example_sentence_english": "The mist covered the coast at dawn.", + "pos": "noun", + "word_frequency": 19682 + }, + { + "word": "burlado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mocked;ridiculed;tricked", + "example_sentence_native": "Se sintió burlado por sus amigos.", + "example_sentence_english": "He felt tricked by his friends.", + "pos": "adjective", + "word_frequency": 19684 + }, + { + "word": "cabalgata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavalcade;parade (on horseback)", + "example_sentence_native": "La cabalgata de Reyes Magos es una tradición.", + "example_sentence_english": "The Three Kings' parade is a tradition.", + "pos": "noun", + "word_frequency": 19685 + }, + { + "word": "calmante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calming;soothing", + "example_sentence_native": "La música suave es muy calmante.", + "example_sentence_english": "Soft music is very calming.", + "pos": "adjective", + "word_frequency": 19686 + }, + { + "word": "camaleón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chameleon", + "example_sentence_native": "El camaleón cambia de color para camuflarse.", + "example_sentence_english": "The chameleon changes color to camouflage itself.", + "pos": "noun", + "word_frequency": 19687 + }, + { + "word": "camarote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabin (on a ship;train)", + "example_sentence_native": "Reservamos un camarote con vistas al mar.", + "example_sentence_english": "We booked a cabin with a sea view.", + "pos": "noun", + "word_frequency": 19688 + }, + { + "word": "canelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cinnamon tree;reddish-brown (color)", + "example_sentence_native": "El canelo es un árbol nativo de Chile.", + "example_sentence_english": "The cinnamon tree is a native tree of Chile.", + "pos": "noun", + "word_frequency": 19689 + }, + { + "word": "carmesí", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crimson", + "example_sentence_native": "El cielo se tiñó de un color carmesí al atardecer.", + "example_sentence_english": "The sky turned a crimson color at sunset.", + "pos": "adjective", + "word_frequency": 19690 + }, + { + "word": "cauteloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cautious;wary", + "example_sentence_native": "Fue muy cauteloso al cruzar la calle.", + "example_sentence_english": "He was very cautious when crossing the street.", + "pos": "adjective", + "word_frequency": 19693 + }, + { + "word": "cazo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saucepan;pot", + "example_sentence_native": "Calenté la leche en un cazo pequeño.", + "example_sentence_english": "I heated the milk in a small saucepan.", + "pos": "noun", + "word_frequency": 19694 + }, + { + "word": "cent", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cent", + "example_sentence_native": "Un euro tiene cien cents.", + "example_sentence_english": "One euro has one hundred cents.", + "pos": "noun", + "word_frequency": 19695 + }, + { + "word": "charro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mexican cowboy", + "example_sentence_native": "El charro vestía un traje tradicional.", + "example_sentence_english": "The charro wore a traditional suit.", + "pos": "noun", + "word_frequency": 19696 + }, + { + "word": "chingón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awesome;bad-ass (Mexican slang)", + "example_sentence_native": "¡Ese concierto estuvo chingón!", + "example_sentence_english": "That concert was awesome!", + "pos": "adjective", + "word_frequency": 19698 + }, + { + "word": "ciruela", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plum", + "example_sentence_native": "Me encanta comer ciruelas frescas en verano.", + "example_sentence_english": "I love eating fresh plums in summer.", + "pos": "noun", + "word_frequency": 19699 + }, + { + "word": "cohecho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bribery", + "example_sentence_native": "Fue acusado de cohecho por aceptar dinero.", + "example_sentence_english": "He was accused of bribery for accepting money.", + "pos": "noun", + "word_frequency": 19700 + }, + { + "word": "comprimido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressed;(as noun) tablet;pill", + "example_sentence_native": "El aire comprimido se usa en muchas herramientas.", + "example_sentence_english": "Compressed air is used in many tools.", + "pos": "adjective", + "word_frequency": 19702 + }, + { + "word": "conductual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "behavioral", + "example_sentence_native": "Estudiamos los patrones conductuales de los animales.", + "example_sentence_english": "We study the behavioral patterns of animals.", + "pos": "adjective", + "word_frequency": 19703 + }, + { + "word": "cordialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cordially;sincerely", + "example_sentence_native": "Le saluda cordialmente, [Su nombre].", + "example_sentence_english": "Cordially yours, [Your name].", + "pos": "adverb", + "word_frequency": 19705 + }, + { + "word": "crediticio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "credit-related;credit (adj.)", + "example_sentence_native": "Su historial crediticio es excelente.", + "example_sentence_english": "His credit history is excellent.", + "pos": "adjective", + "word_frequency": 19706 + }, + { + "word": "crímen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crime", + "example_sentence_native": "El crimen fue investigado por la policía.", + "example_sentence_english": "The crime was investigated by the police.", + "pos": "noun", + "word_frequency": 19709 + }, + { + "word": "crío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;child (informal)", + "example_sentence_native": "Los críos estaban jugando en el parque.", + "example_sentence_english": "The kids were playing in the park.", + "pos": "noun", + "word_frequency": 19710 + }, + { + "word": "deportacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deportation", + "example_sentence_native": "La deportación es un proceso legal.", + "example_sentence_english": "Deportation is a legal process.", + "pos": "noun", + "word_frequency": 19714 + }, + { + "word": "derogado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repealed;abolished", + "example_sentence_native": "La ley fue derogada el año pasado.", + "example_sentence_english": "The law was repealed last year.", + "pos": "adjective", + "word_frequency": 19715 + }, + { + "word": "desperdiciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wasted", + "example_sentence_native": "Fue una oportunidad desperdiciada.", + "example_sentence_english": "It was a wasted opportunity.", + "pos": "adjective", + "word_frequency": 19716 + }, + { + "word": "detonar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detonate;to trigger", + "example_sentence_native": "La explosión detonó a medianoche.", + "example_sentence_english": "The explosion detonated at midnight.", + "pos": "verb", + "word_frequency": 19718 + }, + { + "word": "disciplinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disciplined", + "example_sentence_native": "Es un estudiante muy disciplinado.", + "example_sentence_english": "He is a very disciplined student.", + "pos": "adjective", + "word_frequency": 19721 + }, + { + "word": "discografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discography", + "example_sentence_native": "Su discografía incluye varios álbumes exitosos.", + "example_sentence_english": "His discography includes several successful albums.", + "pos": "noun", + "word_frequency": 19722 + }, + { + "word": "diálisis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialysis", + "example_sentence_native": "El paciente necesita diálisis tres veces por semana.", + "example_sentence_english": "The patient needs dialysis three times a week.", + "pos": "noun", + "word_frequency": 19724 + }, + { + "word": "drago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dragon tree", + "example_sentence_native": "El drago es un árbol emblemático de las Islas Canarias.", + "example_sentence_english": "The dragon tree is an emblematic tree of the Canary Islands.", + "pos": "noun", + "word_frequency": 19725 + }, + { + "word": "dígito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digit", + "example_sentence_native": "El número tiene diez dígitos.", + "example_sentence_english": "The number has ten digits.", + "pos": "noun", + "word_frequency": 19728 + }, + { + "word": "engendro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monstrosity;abomination", + "example_sentence_native": "Esa criatura era un verdadero engendro.", + "example_sentence_english": "That creature was a true monstrosity.", + "pos": "noun", + "word_frequency": 19731 + }, + { + "word": "ensamblaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;assemblage", + "example_sentence_native": "El ensamblaje de las piezas es complejo.", + "example_sentence_english": "The assembly of the parts is complex.", + "pos": "noun", + "word_frequency": 19732 + }, + { + "word": "envenenar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to poison", + "example_sentence_native": "No debes envenenar el agua.", + "example_sentence_english": "You must not poison the water.", + "pos": "verb", + "word_frequency": 19733 + }, + { + "word": "envidioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "envious;jealous", + "example_sentence_native": "Era una persona muy envidiosa de los demás.", + "example_sentence_english": "He was a very envious person of others.", + "pos": "adjective", + "word_frequency": 19734 + }, + { + "word": "esquiar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ski", + "example_sentence_native": "Me encanta esquiar en invierno.", + "example_sentence_english": "I love to ski in winter.", + "pos": "verb", + "word_frequency": 19737 + }, + { + "word": "exclamación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exclamation", + "example_sentence_native": "Puso un signo de exclamación al final de la frase.", + "example_sentence_english": "He put an exclamation mark at the end of the sentence.", + "pos": "noun", + "word_frequency": 19738 + }, + { + "word": "facultativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "optional;medical professional", + "example_sentence_native": "La asistencia a la reunión es facultativa. El facultativo examinó al paciente.", + "example_sentence_english": "Attendance at the meeting is optional. The medical professional examined the patient.", + "pos": "adjective", + "word_frequency": 19742 + }, + { + "word": "firmamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmament;sky", + "example_sentence_native": "Las estrellas brillaban en el firmamento.", + "example_sentence_english": "The stars shone in the firmament.", + "pos": "noun", + "word_frequency": 19745 + }, + { + "word": "frazada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blanket", + "example_sentence_native": "Me cubrí con una frazada para no tener frío.", + "example_sentence_english": "I covered myself with a blanket so I wouldn't be cold.", + "pos": "noun", + "word_frequency": 19749 + }, + { + "word": "fregar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to scrub;to wash (dishes)", + "example_sentence_native": "Necesito fregar los platos después de cenar.", + "example_sentence_english": "I need to wash the dishes after dinner.", + "pos": "verb", + "word_frequency": 19750 + }, + { + "word": "fémur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "femur;thigh bone", + "example_sentence_native": "El fémur es el hueso más largo del cuerpo.", + "example_sentence_english": "The femur is the longest bone in the body.", + "pos": "noun", + "word_frequency": 19754 + }, + { + "word": "ganglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ganglion;lymph node", + "example_sentence_native": "El médico palpó los ganglios del cuello.", + "example_sentence_english": "The doctor palpated the lymph nodes in the neck.", + "pos": "noun", + "word_frequency": 19755 + }, + { + "word": "gangrena", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gangrene", + "example_sentence_native": "La gangrena es una complicación grave.", + "example_sentence_english": "Gangrene is a serious complication.", + "pos": "noun", + "word_frequency": 19756 + }, + { + "word": "gilda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gilda (a type of Spanish skewer;tapa)", + "example_sentence_native": "Pedimos unas gildas y una cerveza.", + "example_sentence_english": "We ordered some gildas and a beer.", + "pos": "noun", + "word_frequency": 19759 + }, + { + "word": "granadina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grenadine;person from Granada", + "example_sentence_native": "Me gusta el sabor de la granadina en los cócteles.", + "example_sentence_english": "I like the taste of grenadine in cocktails.", + "pos": "noun", + "word_frequency": 19762 + }, + { + "word": "guisante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pea", + "example_sentence_native": "Los guisantes son pequeños y verdes.", + "example_sentence_english": "Peas are small and green.", + "pos": "noun", + "word_frequency": 19763 + }, + { + "word": "habitat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "habitat", + "example_sentence_native": "La selva es el hábitat natural de muchos animales.", + "example_sentence_english": "The jungle is the natural habitat of many animals.", + "pos": "noun", + "word_frequency": 19767 + }, + { + "word": "huelguista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striker (person on strike)", + "example_sentence_native": "Los huelguistas se manifestaron frente a la fábrica.", + "example_sentence_english": "The strikers demonstrated in front of the factory.", + "pos": "noun", + "word_frequency": 19774 + }, + { + "word": "incurable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incurable", + "example_sentence_native": "La enfermedad era incurable.", + "example_sentence_english": "The disease was incurable.", + "pos": "adjective", + "word_frequency": 19777 + }, + { + "word": "insensato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolish;senseless", + "example_sentence_native": "Fue una decisión insensata.", + "example_sentence_english": "It was a foolish decision.", + "pos": "adjective", + "word_frequency": 19781 + }, + { + "word": "lavado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wash;laundry", + "example_sentence_native": "Tengo que hacer el lavado hoy.", + "example_sentence_english": "I have to do the laundry today.", + "pos": "noun", + "word_frequency": 19792 + }, + { + "word": "legion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legion", + "example_sentence_native": "La legión romana era muy poderosa.", + "example_sentence_english": "The Roman legion was very powerful.", + "pos": "noun", + "word_frequency": 19796 + }, + { + "word": "llaga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sore;wound;ulcer", + "example_sentence_native": "Tenía una llaga en la boca.", + "example_sentence_english": "He had a sore in his mouth.", + "pos": "noun", + "word_frequency": 19798 + }, + { + "word": "lounge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lounge", + "example_sentence_native": "Nos encontramos en el lounge del hotel para tomar un café.", + "example_sentence_english": "We met in the hotel lounge for coffee.", + "pos": "noun", + "word_frequency": 19800 + }, + { + "word": "lía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dregs;lees", + "example_sentence_native": "La lía del vino se asentó en el fondo de la botella.", + "example_sentence_english": "The dregs of the wine settled at the bottom of the bottle.", + "pos": "noun", + "word_frequency": 19801 + }, + { + "word": "magister", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "master (academic degree)", + "example_sentence_native": "Obtuvo su título de magister en filosofía medieval.", + "example_sentence_english": "He obtained his master's degree in medieval philosophy.", + "pos": "noun", + "word_frequency": 19802 + }, + { + "word": "manualidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "craft;handicraft", + "example_sentence_native": "A los niños les encanta hacer manualidades en la escuela.", + "example_sentence_english": "Children love doing crafts at school.", + "pos": "noun", + "word_frequency": 19806 + }, + { + "word": "mapache", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raccoon", + "example_sentence_native": "Un mapache estaba buscando comida en el cubo de basura.", + "example_sentence_english": "A raccoon was looking for food in the trash can.", + "pos": "noun", + "word_frequency": 19807 + }, + { + "word": "mareado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dizzy;seasick", + "example_sentence_native": "Me siento un poco mareado después de subir a la montaña rusa.", + "example_sentence_english": "I feel a bit dizzy after riding the roller coaster.", + "pos": "adjective", + "word_frequency": 19808 + }, + { + "word": "masturbarse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to masturbate", + "example_sentence_native": "Es un verbo que describe una acción personal.", + "example_sentence_english": "It is a verb that describes a personal action.", + "pos": "verb", + "word_frequency": 19811 + }, + { + "word": "menosprecio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contempt;scorn", + "example_sentence_native": "Su actitud de menosprecio fue evidente para todos.", + "example_sentence_english": "His attitude of contempt was evident to everyone.", + "pos": "noun", + "word_frequency": 19814 + }, + { + "word": "metadato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metadata", + "example_sentence_native": "Los metadatos son esenciales para organizar la información digital.", + "example_sentence_english": "Metadata is essential for organizing digital information.", + "pos": "noun", + "word_frequency": 19815 + }, + { + "word": "metodista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Methodist", + "example_sentence_native": "La iglesia metodista tiene una gran comunidad en la ciudad.", + "example_sentence_english": "The Methodist church has a large community in the city.", + "pos": "noun", + "word_frequency": 19816 + }, + { + "word": "millennial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennial", + "example_sentence_native": "Los millennials son la primera generación nativa digital.", + "example_sentence_english": "Millennials are the first digital native generation.", + "pos": "noun", + "word_frequency": 19819 + }, + { + "word": "miopía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myopia;nearsightedness", + "example_sentence_native": "Mi miopía ha empeorado con los años.", + "example_sentence_english": "My myopia has worsened over the years.", + "pos": "noun", + "word_frequency": 19821 + }, + { + "word": "motora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorboat", + "example_sentence_native": "Alquilamos una motora para explorar la costa.", + "example_sentence_english": "We rented a motorboat to explore the coast.", + "pos": "noun", + "word_frequency": 19826 + }, + { + "word": "necedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolishness;nonsense", + "example_sentence_native": "No hagas caso a sus necedades, no tienen sentido.", + "example_sentence_english": "Don't pay attention to his foolishness, it makes no sense.", + "pos": "noun", + "word_frequency": 19830 + }, + { + "word": "necrópolis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necropolis;cemetery", + "example_sentence_native": "La antigua necrópolis fue descubierta por arqueólogos.", + "example_sentence_english": "The ancient necropolis was discovered by archaeologists.", + "pos": "noun", + "word_frequency": 19831 + }, + { + "word": "normatividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "normativity;regulations", + "example_sentence_native": "La nueva ley establece la normatividad para la protección de datos.", + "example_sentence_english": "The new law establishes the regulations for data protection.", + "pos": "noun", + "word_frequency": 19833 + }, + { + "word": "objetar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to object", + "example_sentence_native": "El abogado decidió objetar la pregunta del fiscal.", + "example_sentence_english": "The lawyer decided to object to the prosecutor's question.", + "pos": "verb", + "word_frequency": 19834 + }, + { + "word": "obstinado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubborn;obstinate", + "example_sentence_native": "Es un hombre muy obstinado, no cambia de opinión fácilmente.", + "example_sentence_english": "He is a very stubborn man, he doesn't change his mind easily.", + "pos": "adjective", + "word_frequency": 19835 + }, + { + "word": "oleoducto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oil pipeline", + "example_sentence_native": "La construcción del oleoducto ha generado debate ambiental.", + "example_sentence_english": "The construction of the oil pipeline has generated environmental debate.", + "pos": "noun", + "word_frequency": 19836 + }, + { + "word": "pasadizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passageway;corridor", + "example_sentence_native": "El pasadizo secreto llevaba a una habitación oculta.", + "example_sentence_english": "The secret passageway led to a hidden room.", + "pos": "noun", + "word_frequency": 19840 + }, + { + "word": "patrocinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sponsor", + "example_sentence_native": "La empresa decidió patrocinar el evento deportivo.", + "example_sentence_english": "The company decided to sponsor the sporting event.", + "pos": "verb", + "word_frequency": 19841 + }, + { + "word": "pegarse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stick to;to hit oneself;to get close", + "example_sentence_native": "El chicle se me pegó al zapato.", + "example_sentence_english": "The chewing gum stuck to my shoe.", + "pos": "verb", + "word_frequency": 19843 + }, + { + "word": "penumbra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penumbra;dim light", + "example_sentence_native": "La habitación estaba sumida en la penumbra.", + "example_sentence_english": "The room was plunged into dim light.", + "pos": "noun", + "word_frequency": 19844 + }, + { + "word": "pictórico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pictorial", + "example_sentence_native": "Su estilo pictórico es muy original.", + "example_sentence_english": "His pictorial style is very original.", + "pos": "adjective", + "word_frequency": 19848 + }, + { + "word": "pincho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skewer;tapa (on a skewer)", + "example_sentence_native": "Pedimos unos pinchos en el bar.", + "example_sentence_english": "We ordered some tapas (on skewers) at the bar.", + "pos": "noun", + "word_frequency": 19849 + }, + { + "word": "pitufo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Smurf", + "example_sentence_native": "Mi hijo adora los dibujos de los pitufos.", + "example_sentence_english": "My son loves the Smurf cartoons.", + "pos": "noun", + "word_frequency": 19850 + }, + { + "word": "playera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "t-shirt;beach shoe", + "example_sentence_native": "Me puse una playera cómoda para ir a la playa.", + "example_sentence_english": "I put on a comfortable t-shirt to go to the beach.", + "pos": "noun", + "word_frequency": 19851 + }, + { + "word": "polución", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollution", + "example_sentence_native": "La polución del aire es un problema grave en la ciudad.", + "example_sentence_english": "Air pollution is a serious problem in the city.", + "pos": "noun", + "word_frequency": 19852 + }, + { + "word": "pompa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bubble;pomp", + "example_sentence_native": "Los niños soplaban pompas de jabón.", + "example_sentence_english": "The children were blowing soap bubbles.", + "pos": "noun", + "word_frequency": 19853 + }, + { + "word": "predial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "property (tax);land (tax)", + "example_sentence_native": "El impuesto predial se paga anualmente.", + "example_sentence_english": "The property tax is paid annually.", + "pos": "adjective", + "word_frequency": 19854 + }, + { + "word": "preñado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pregnant (animal);full of", + "example_sentence_native": "La yegua está preñada.", + "example_sentence_english": "The mare is pregnant.", + "pos": "adjective", + "word_frequency": 19855 + }, + { + "word": "progre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive (person)", + "example_sentence_native": "Algunos lo consideran un progre, otros un moderado.", + "example_sentence_english": "Some consider him a progressive, others a moderate.", + "pos": "noun", + "word_frequency": 19858 + }, + { + "word": "pseudónimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pseudonym", + "example_sentence_native": "El autor publicó la novela bajo un pseudónimo.", + "example_sentence_english": "The author published the novel under a pseudonym.", + "pos": "noun", + "word_frequency": 19860 + }, + { + "word": "pudiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wealthy;affluent", + "example_sentence_native": "La familia pudiente donó una gran suma de dinero.", + "example_sentence_english": "The wealthy family donated a large sum of money.", + "pos": "adjective", + "word_frequency": 19861 + }, + { + "word": "pícaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischievous;roguish;cunning", + "example_sentence_native": "El niño tenía una sonrisa pícara.", + "example_sentence_english": "The boy had a mischievous smile.", + "pos": "adjective", + "word_frequency": 19863 + }, + { + "word": "póquer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poker", + "example_sentence_native": "Jugamos una partida de póquer anoche.", + "example_sentence_english": "We played a game of poker last night.", + "pos": "noun", + "word_frequency": 19864 + }, + { + "word": "racionalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalization", + "example_sentence_native": "La racionalización de los recursos es esencial para la eficiencia.", + "example_sentence_english": "The rationalization of resources is essential for efficiency.", + "pos": "noun", + "word_frequency": 19865 + }, + { + "word": "ramen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ramen", + "example_sentence_native": "Me encanta comer ramen en invierno.", + "example_sentence_english": "I love eating ramen in winter.", + "pos": "noun", + "word_frequency": 19866 + }, + { + "word": "reacio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reluctant;unwilling", + "example_sentence_native": "Estaba reacio a aceptar la propuesta sin más información.", + "example_sentence_english": "He was reluctant to accept the proposal without more information.", + "pos": "adjective", + "word_frequency": 19867 + }, + { + "word": "redundante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redundant", + "example_sentence_native": "Tu explicación es un poco redundante, ya lo entendimos.", + "example_sentence_english": "Your explanation is a bit redundant, we already understood it.", + "pos": "adjective", + "word_frequency": 19868 + }, + { + "word": "relajo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relaxation;mess;chaos (informal)", + "example_sentence_native": "Después del trabajo, necesito un poco de relajo.", + "example_sentence_english": "After work, I need a bit of relaxation.", + "pos": "noun", + "word_frequency": 19869 + }, + { + "word": "resaltado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highlight;emphasis", + "example_sentence_native": "El texto en resaltado es importante para el examen.", + "example_sentence_english": "The highlighted text is important for the exam.", + "pos": "noun", + "word_frequency": 19870 + }, + { + "word": "sacrificarse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sacrifice oneself", + "example_sentence_native": "Se sacrificó por el bien de su familia.", + "example_sentence_english": "He sacrificed himself for the good of his family.", + "pos": "verb", + "word_frequency": 19874 + }, + { + "word": "saharaui", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sahrawi", + "example_sentence_native": "La cultura saharaui es muy rica y tiene una historia compleja.", + "example_sentence_english": "Sahrawi culture is very rich and has a complex history.", + "pos": "adjective", + "word_frequency": 19875 + }, + { + "word": "salpicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprinkled;splattered;dotted", + "example_sentence_native": "La pared estaba salpicada de pintura de colores.", + "example_sentence_english": "The wall was splattered with colorful paint.", + "pos": "adjective", + "word_frequency": 19876 + }, + { + "word": "sanación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healing", + "example_sentence_native": "La sanación de la herida fue lenta pero completa.", + "example_sentence_english": "The healing of the wound was slow but complete.", + "pos": "noun", + "word_frequency": 19877 + }, + { + "word": "sarna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scabies;mange", + "example_sentence_native": "El perro tenía sarna y necesitaba tratamiento veterinario.", + "example_sentence_english": "The dog had mange and needed veterinary treatment.", + "pos": "noun", + "word_frequency": 19878 + }, + { + "word": "servido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "served;ready", + "example_sentence_native": "La comida ya está servida, pueden pasar a la mesa.", + "example_sentence_english": "The food is already served, you can come to the table.", + "pos": "adjective", + "word_frequency": 19879 + }, + { + "word": "sigilo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stealth", + "example_sentence_native": "El ladrón actuó con gran sigilo para no ser detectado.", + "example_sentence_english": "The thief acted with great stealth so as not to be detected.", + "pos": "noun", + "word_frequency": 19885 + }, + { + "word": "silbato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "whistle", + "example_sentence_native": "El árbitro sopló el silbato para indicar el final del partido.", + "example_sentence_english": "The referee blew the whistle to signal the end of the match.", + "pos": "noun", + "word_frequency": 19886 + }, + { + "word": "simplificado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simplified", + "example_sentence_native": "Necesitamos una versión simplificada de las instrucciones.", + "example_sentence_english": "We need a simplified version of the instructions.", + "pos": "adjective", + "word_frequency": 19888 + }, + { + "word": "ski", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ski", + "example_sentence_native": "Me encanta ir a hacer ski en invierno.", + "example_sentence_english": "I love to go skiing in winter.", + "pos": "noun", + "word_frequency": 19889 + }, + { + "word": "solapa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lapel", + "example_sentence_native": "El detective encontró una nota escondida en la solapa del abrigo.", + "example_sentence_english": "The detective found a note hidden in the lapel of the coat.", + "pos": "noun", + "word_frequency": 19891 + }, + { + "word": "sonata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonata", + "example_sentence_native": "La sonata para piano de Beethoven es una obra maestra.", + "example_sentence_english": "Beethoven's piano sonata is a masterpiece.", + "pos": "noun", + "word_frequency": 19892 + }, + { + "word": "sorpresivamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surprisingly", + "example_sentence_native": "Sorpresivamente, el equipo más débil ganó el partido.", + "example_sentence_english": "Surprisingly, the weaker team won the match.", + "pos": "adverb", + "word_frequency": 19893 + }, + { + "word": "sostenimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance", + "example_sentence_native": "El sostenimiento de la estructura requiere mucho trabajo.", + "example_sentence_english": "The maintenance of the structure requires a lot of work.", + "pos": "noun", + "word_frequency": 19894 + }, + { + "word": "tendón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tendon", + "example_sentence_native": "Se lesionó el tendón de Aquiles jugando al fútbol.", + "example_sentence_english": "He injured his Achilles tendon playing soccer.", + "pos": "noun", + "word_frequency": 19900 + }, + { + "word": "topless", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "topless", + "example_sentence_native": "En algunas playas, el topless está permitido.", + "example_sentence_english": "On some beaches, topless is allowed.", + "pos": "noun", + "word_frequency": 19905 + }, + { + "word": "trabado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stuck", + "example_sentence_native": "La puerta está trabada, no puedo abrirla.", + "example_sentence_english": "The door is stuck, I can't open it.", + "pos": "adjective", + "word_frequency": 19906 + }, + { + "word": "trabajado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worked", + "example_sentence_native": "El diseño del mueble es muy trabajado y detallado.", + "example_sentence_english": "The furniture design is very elaborate and detailed.", + "pos": "adjective", + "word_frequency": 19907 + }, + { + "word": "tranca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bar", + "example_sentence_native": "Puso una tranca en la puerta para mayor seguridad.", + "example_sentence_english": "He put a bar on the door for extra security.", + "pos": "noun", + "word_frequency": 19908 + }, + { + "word": "trovador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troubadour", + "example_sentence_native": "El trovador cantó baladas de amor en la plaza del pueblo.", + "example_sentence_english": "The troubadour sang love ballads in the town square.", + "pos": "noun", + "word_frequency": 19911 + }, + { + "word": "unánimemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unanimously", + "example_sentence_native": "La propuesta fue aprobada unánimemente por el comité.", + "example_sentence_english": "The proposal was unanimously approved by the committee.", + "pos": "adverb", + "word_frequency": 19914 + }, + { + "word": "verdoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greenish", + "example_sentence_native": "El agua del estanque tenía un color verdoso.", + "example_sentence_english": "The pond water had a greenish color.", + "pos": "adjective", + "word_frequency": 19917 + }, + { + "word": "vigoroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigorous", + "example_sentence_native": "Necesitamos un plan de acción vigoroso para resolver el problema.", + "example_sentence_english": "We need a vigorous action plan to solve the problem.", + "pos": "adjective", + "word_frequency": 19918 + }, + { + "word": "vizcaíno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Biscayan (from Biscay)", + "example_sentence_native": "El equipo de fútbol vizcaíno ganó el campeonato.", + "example_sentence_english": "The Biscayan football team won the championship.", + "pos": "adjective", + "word_frequency": 19921 + }, + { + "word": "voraz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voracious", + "example_sentence_native": "Tiene un apetito voraz.", + "example_sentence_english": "He has a voracious appetite.", + "pos": "adjective", + "word_frequency": 19922 + }, + { + "word": "vudú", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voodoo", + "example_sentence_native": "Estudió las prácticas del vudú en Haití.", + "example_sentence_english": "He studied voodoo practices in Haiti.", + "pos": "noun", + "word_frequency": 19924 + }, + { + "word": "vulnerar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to violate;to infringe", + "example_sentence_native": "No debemos vulnerar los derechos de los ciudadanos.", + "example_sentence_english": "We must not violate the rights of citizens.", + "pos": "verb", + "word_frequency": 19925 + }, + { + "word": "álgido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "critical;crucial;peak", + "example_sentence_native": "Llegamos al momento álgido de la discusión.", + "example_sentence_english": "We reached the critical moment of the discussion.", + "pos": "adjective", + "word_frequency": 19935 + }, + { + "word": "ánima", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soul;spirit", + "example_sentence_native": "Se dice que el ánima abandona el cuerpo al morir.", + "example_sentence_english": "It is said that the soul leaves the body upon death.", + "pos": "noun", + "word_frequency": 19936 + }, + { + "word": "ávido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avid;eager", + "example_sentence_native": "Es un lector ávido de novelas de misterio.", + "example_sentence_english": "He is an avid reader of mystery novels.", + "pos": "adjective", + "word_frequency": 19937 + }, + { + "word": "abdicación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abdication", + "example_sentence_native": "La abdicación del rey sorprendió a todos.", + "example_sentence_english": "The king's abdication surprised everyone.", + "pos": "noun", + "word_frequency": 19938 + }, + { + "word": "abrirse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to open up (oneself);to spread out", + "example_sentence_native": "Ella necesita abrirse más a sus amigos.", + "example_sentence_english": "She needs to open up more to her friends.", + "pos": "verb", + "word_frequency": 19939 + }, + { + "word": "adhesivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adhesive;sticky", + "example_sentence_native": "Este pegamento es muy adhesivo.", + "example_sentence_english": "This glue is very adhesive.", + "pos": "adjective", + "word_frequency": 19940 + }, + { + "word": "aeroespacial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aerospace", + "example_sentence_native": "Trabaja en la industria aeroespacial.", + "example_sentence_english": "He works in the aerospace industry.", + "pos": "adjective", + "word_frequency": 19941 + }, + { + "word": "afamado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "famous;renowned", + "example_sentence_native": "Es un pintor afamado en todo el mundo.", + "example_sentence_english": "He is a painter renowned throughout the world.", + "pos": "adjective", + "word_frequency": 19942 + }, + { + "word": "agrio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sour;bitter", + "example_sentence_native": "El limón tiene un sabor agrio.", + "example_sentence_english": "The lemon has a sour taste.", + "pos": "adjective", + "word_frequency": 19943 + }, + { + "word": "ahuyentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scare away;to drive away", + "example_sentence_native": "Usó un espantapájaros para ahuyentar a los pájaros.", + "example_sentence_english": "He used a scarecrow to scare away the birds.", + "pos": "verb", + "word_frequency": 19944 + }, + { + "word": "anclaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchorage;anchoring;mooring", + "example_sentence_native": "El barco encontró un buen anclaje en la bahía.", + "example_sentence_english": "The ship found good anchorage in the bay.", + "pos": "noun", + "word_frequency": 19948 + }, + { + "word": "aprovisionamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provisioning;supply", + "example_sentence_native": "La empresa es responsable del aprovisionamiento de alimentos.", + "example_sentence_english": "The company is responsible for the provisioning of food.", + "pos": "noun", + "word_frequency": 19949 + }, + { + "word": "arrasado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastated;razed", + "example_sentence_native": "El pueblo quedó arrasado después del terremoto.", + "example_sentence_english": "The town was devastated after the earthquake.", + "pos": "adjective", + "word_frequency": 19951 + }, + { + "word": "arrendar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lease;to rent (out)", + "example_sentence_native": "Decidieron arrendar la propiedad por cinco años.", + "example_sentence_english": "They decided to lease the property for five years.", + "pos": "verb", + "word_frequency": 19952 + }, + { + "word": "aspiradora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vacuum cleaner", + "example_sentence_native": "Necesito usar la aspiradora para limpiar la alfombra.", + "example_sentence_english": "I need to use the vacuum cleaner to clean the carpet.", + "pos": "noun", + "word_frequency": 19953 + }, + { + "word": "atañer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to concern;to pertain to", + "example_sentence_native": "Este asunto no atañe a nuestra jurisdicción.", + "example_sentence_english": "This matter does not pertain to our jurisdiction.", + "pos": "verb", + "word_frequency": 19954 + }, + { + "word": "automovilista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorist;driver", + "example_sentence_native": "El automovilista fue multado por exceso de velocidad.", + "example_sentence_english": "The motorist was fined for speeding.", + "pos": "noun", + "word_frequency": 19956 + }, + { + "word": "añico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piece;fragment (usually in \"hacer añicos\" - to smash to pieces)", + "example_sentence_native": "El vaso se cayó y se hizo añicos.", + "example_sentence_english": "The glass fell and shattered into pieces.", + "pos": "noun", + "word_frequency": 19957 + }, + { + "word": "banano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "banana (plant;tree);banana (fruit;common in some regions)", + "example_sentence_native": "El banano es una fruta tropical muy popular.", + "example_sentence_english": "The banana is a very popular tropical fruit.", + "pos": "noun", + "word_frequency": 19958 + }, + { + "word": "beige", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beige", + "example_sentence_native": "Compró una chaqueta de color beige.", + "example_sentence_english": "She bought a beige jacket.", + "pos": "adjective", + "word_frequency": 19964 + }, + { + "word": "bledo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trifle (in 'no me importa un bledo')", + "example_sentence_native": "No me importa un bledo lo que piensen.", + "example_sentence_english": "I don't care a fig what they think.", + "pos": "noun", + "word_frequency": 19966 + }, + { + "word": "boina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beret", + "example_sentence_native": "Llevaba una boina roja.", + "example_sentence_english": "He was wearing a red beret.", + "pos": "noun", + "word_frequency": 19967 + }, + { + "word": "boomerang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boomerang", + "example_sentence_native": "El boomerang regresó a su mano.", + "example_sentence_english": "The boomerang returned to his hand.", + "pos": "noun", + "word_frequency": 19968 + }, + { + "word": "bullicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bustle;commotion", + "example_sentence_native": "El bullicio de la ciudad era constante.", + "example_sentence_english": "The city's bustle was constant.", + "pos": "noun", + "word_frequency": 19971 + }, + { + "word": "cabelludo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hairy (often in 'scalp')", + "example_sentence_native": "Tiene un cuero cabelludo sensible.", + "example_sentence_english": "He has a sensitive scalp.", + "pos": "adjective", + "word_frequency": 19973 + }, + { + "word": "calentarse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to warm up;to get hot", + "example_sentence_native": "El agua empezó a calentarse.", + "example_sentence_english": "The water started to warm up.", + "pos": "verb", + "word_frequency": 19977 + }, + { + "word": "capuchino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cappuccino", + "example_sentence_native": "Me gustaría un capuchino, por favor.", + "example_sentence_english": "I would like a cappuccino, please.", + "pos": "noun", + "word_frequency": 19980 + }, + { + "word": "cari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dear (affectionate term)", + "example_sentence_native": "Hola, cari, ¿cómo estás?", + "example_sentence_english": "Hello, dear, how are you?", + "pos": "noun", + "word_frequency": 19981 + }, + { + "word": "cartoon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartoon", + "example_sentence_native": "Vimos un cartoon muy divertido en la televisión.", + "example_sentence_english": "We watched a very funny cartoon on television.", + "pos": "noun", + "word_frequency": 19982 + }, + { + "word": "cartílago", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cartilage", + "example_sentence_native": "El cartílago de la rodilla estaba dañado.", + "example_sentence_english": "The knee cartilage was damaged.", + "pos": "noun", + "word_frequency": 19983 + }, + { + "word": "cassette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cassette", + "example_sentence_native": "Encontré un viejo cassette de música.", + "example_sentence_english": "I found an old music cassette.", + "pos": "noun", + "word_frequency": 19984 + }, + { + "word": "chacra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farm;ranch (LatAm)", + "example_sentence_native": "Pasamos el fin de semana en la chacra.", + "example_sentence_english": "We spent the weekend at the farm.", + "pos": "noun", + "word_frequency": 19985 + }, + { + "word": "champiñón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mushroom", + "example_sentence_native": "Me encantan las setas y los champiñones.", + "example_sentence_english": "I love mushrooms.", + "pos": "noun", + "word_frequency": 19986 + }, + { + "word": "circunvalación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ring road;bypass", + "example_sentence_native": "Tomamos la carretera de circunvalación para evitar el centro.", + "example_sentence_english": "We took the ring road to avoid the city center.", + "pos": "noun", + "word_frequency": 19990 + }, + { + "word": "cirrosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cirrhosis", + "example_sentence_native": "La cirrosis hepática es una enfermedad grave.", + "example_sentence_english": "Liver cirrhosis is a serious disease.", + "pos": "noun", + "word_frequency": 19991 + }, + { + "word": "clarinete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarinet", + "example_sentence_native": "Aprende a tocar el clarinete.", + "example_sentence_english": "He is learning to play the clarinet.", + "pos": "noun", + "word_frequency": 19992 + }, + { + "word": "coa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hoe (tool)", + "example_sentence_native": "Usó una coa para remover la tierra.", + "example_sentence_english": "He used a hoe to turn the soil.", + "pos": "noun", + "word_frequency": 19993 + }, + { + "word": "cobalto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cobalt", + "example_sentence_native": "El cobalto es un metal de transición.", + "example_sentence_english": "Cobalt is a transition metal.", + "pos": "noun", + "word_frequency": 19994 + }, + { + "word": "compartimiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compartment", + "example_sentence_native": "Guarda tu equipaje en el compartimiento superior.", + "example_sentence_english": "Store your luggage in the overhead compartment.", + "pos": "noun", + "word_frequency": 19995 + }, + { + "word": "complacencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complacency;satisfaction", + "example_sentence_native": "Su complacencia le impidió ver el peligro.", + "example_sentence_english": "His complacency prevented him from seeing the danger.", + "pos": "noun", + "word_frequency": 19996 + }, + { + "word": "comunicarse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to communicate", + "example_sentence_native": "Es importante comunicarse claramente.", + "example_sentence_english": "It is important to communicate clearly.", + "pos": "verb", + "word_frequency": 19997 + }, + { + "word": "corpiño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bodice;bra", + "example_sentence_native": "Se puso un corpiño de encaje.", + "example_sentence_english": "She put on a lace bodice.", + "pos": "noun", + "word_frequency": 19999 + }, + { + "word": "craneal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cranial", + "example_sentence_native": "La fractura craneal fue grave.", + "example_sentence_english": "The cranial fracture was severe.", + "pos": "adjective", + "word_frequency": 20000 + }, + { + "word": "criadero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hatchery;breeding ground", + "example_sentence_native": "Visitaron un criadero de peces.", + "example_sentence_english": "They visited a fish hatchery.", + "pos": "noun", + "word_frequency": 20001 + }, + { + "word": "cultivador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultivator;grower", + "example_sentence_native": "El cultivador de café trabaja duro.", + "example_sentence_english": "The coffee grower works hard.", + "pos": "noun", + "word_frequency": 20003 + }, + { + "word": "cupcake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cupcake", + "example_sentence_native": "Compramos un cupcake de chocolate.", + "example_sentence_english": "We bought a chocolate cupcake.", + "pos": "noun", + "word_frequency": 20004 + }, + { + "word": "demorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delayed;late", + "example_sentence_native": "El vuelo está demorado.", + "example_sentence_english": "The flight is delayed.", + "pos": "adjective", + "word_frequency": 20006 + }, + { + "word": "denominarse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be called;to be named", + "example_sentence_native": "Este fenómeno suele denominarse efecto invernadero.", + "example_sentence_english": "This phenomenon is usually called the greenhouse effect.", + "pos": "verb", + "word_frequency": 20007 + }, + { + "word": "depurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to purify;to debug;to refine", + "example_sentence_native": "Necesitamos depurar el agua antes de beberla.", + "example_sentence_english": "We need to purify the water before drinking it.", + "pos": "verb", + "word_frequency": 20008 + }, + { + "word": "desbloqueo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlock;unblocking", + "example_sentence_native": "El desbloqueo del teléfono es sencillo.", + "example_sentence_english": "The phone unlock is simple.", + "pos": "noun", + "word_frequency": 20009 + }, + { + "word": "descontar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discount;to deduct", + "example_sentence_native": "Te van a descontar el 10% del precio.", + "example_sentence_english": "They are going to discount 10% off the price for you.", + "pos": "verb", + "word_frequency": 20010 + }, + { + "word": "deshielo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thaw;melting", + "example_sentence_native": "El deshielo de los glaciares es preocupante.", + "example_sentence_english": "The melting of glaciers is worrying.", + "pos": "noun", + "word_frequency": 20011 + }, + { + "word": "disimulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissimulation;concealment", + "example_sentence_native": "Actuó con gran disimulo para no ser descubierto.", + "example_sentence_english": "He acted with great dissimulation so as not to be discovered.", + "pos": "noun", + "word_frequency": 20016 + }, + { + "word": "distal", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "distal", + "example_sentence_native": "La parte distal del hueso estaba dañada.", + "example_sentence_english": "The distal part of the bone was damaged.", + "pos": "adjective", + "word_frequency": 20017 + }, + { + "word": "disyuntiva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilemma;choice;alternative", + "example_sentence_native": "Se encuentra ante una difícil disyuntiva.", + "example_sentence_english": "He is faced with a difficult dilemma.", + "pos": "noun", + "word_frequency": 20018 + }, + { + "word": "dolorosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painfully", + "example_sentence_native": "La herida le dolía dolorosamente.", + "example_sentence_english": "The wound was painfully hurting him.", + "pos": "adverb", + "word_frequency": 20019 + }, + { + "word": "ebook", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ebook", + "example_sentence_native": "Prefiero leer un ebook en mi tableta.", + "example_sentence_english": "I prefer to read an ebook on my tablet.", + "pos": "noun", + "word_frequency": 20022 + }, + { + "word": "electromagnético", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electromagnetic", + "example_sentence_native": "Las ondas electromagnéticas viajan a la velocidad de la luz.", + "example_sentence_english": "Electromagnetic waves travel at the speed of light.", + "pos": "adjective", + "word_frequency": 20025 + }, + { + "word": "elixir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elixir", + "example_sentence_native": "Creían que era un elixir de la vida eterna.", + "example_sentence_english": "They believed it was an elixir of eternal life.", + "pos": "noun", + "word_frequency": 20026 + }, + { + "word": "endurecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harden;to toughen", + "example_sentence_native": "El frío puede endurecer el suelo.", + "example_sentence_english": "Cold can harden the ground.", + "pos": "verb", + "word_frequency": 20028 + }, + { + "word": "endurecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hardening;toughening", + "example_sentence_native": "El endurecimiento de las restricciones es inminente.", + "example_sentence_english": "The hardening of restrictions is imminent.", + "pos": "noun", + "word_frequency": 20029 + }, + { + "word": "enterado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informed;aware", + "example_sentence_native": "Estoy enterado de la situación.", + "example_sentence_english": "I am aware of the situation.", + "pos": "adjective", + "word_frequency": 20030 + }, + { + "word": "episcopado", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "episcopate;bishopric", + "example_sentence_native": "El episcopado se reunió para discutir el tema.", + "example_sentence_english": "The episcopate met to discuss the issue.", + "pos": "noun", + "word_frequency": 20031 + }, + { + "word": "esclarecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clarification;elucidation", + "example_sentence_native": "Se busca el esclarecimiento de los hechos.", + "example_sentence_english": "The clarification of the facts is sought.", + "pos": "noun", + "word_frequency": 20032 + }, + { + "word": "especulativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "speculative", + "example_sentence_native": "Sus ideas son puramente especulativas.", + "example_sentence_english": "His ideas are purely speculative.", + "pos": "adjective", + "word_frequency": 20034 + }, + { + "word": "estallado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burst;exploded", + "example_sentence_native": "La burbuja estallada dejó un desastre.", + "example_sentence_english": "The burst bubble left a mess.", + "pos": "adjective", + "word_frequency": 20035 + }, + { + "word": "estropeado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damaged;spoiled;broken", + "example_sentence_native": "El coche está estropeado.", + "example_sentence_english": "The car is broken.", + "pos": "adjective", + "word_frequency": 20036 + }, + { + "word": "estéticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aesthetically", + "example_sentence_native": "El diseño es estéticamente agradable.", + "example_sentence_english": "The design is aesthetically pleasing.", + "pos": "adverb", + "word_frequency": 20037 + }, + { + "word": "explicativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explanatory", + "example_sentence_native": "El texto explicativo aclaró mis dudas.", + "example_sentence_english": "The explanatory text clarified my doubts.", + "pos": "adjective", + "word_frequency": 20038 + }, + { + "word": "exprimir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to squeeze;to wring out", + "example_sentence_native": "Voy a exprimir naranjas para hacer jugo.", + "example_sentence_english": "I'm going to squeeze oranges to make juice.", + "pos": "verb", + "word_frequency": 20039 + }, + { + "word": "fecal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fecal", + "example_sentence_native": "Se encontraron restos fecales en el agua.", + "example_sentence_english": "Fecal remains were found in the water.", + "pos": "adjective", + "word_frequency": 20042 + }, + { + "word": "fechoría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misdeed", + "example_sentence_native": "El villano fue castigado por sus fechorías.", + "example_sentence_english": "The villain was punished for his misdeeds.", + "pos": "noun", + "word_frequency": 20043 + }, + { + "word": "feminidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "femininity", + "example_sentence_native": "Ella irradia feminidad y gracia.", + "example_sentence_english": "She radiates femininity and grace.", + "pos": "noun", + "word_frequency": 20044 + }, + { + "word": "fingido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feigned", + "example_sentence_native": "Su sonrisa era fingida.", + "example_sentence_english": "His smile was feigned.", + "pos": "adjective", + "word_frequency": 20047 + }, + { + "word": "fragmentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragmented", + "example_sentence_native": "El informe estaba fragmentado y difícil de entender.", + "example_sentence_english": "The report was fragmented and difficult to understand.", + "pos": "adjective", + "word_frequency": 20048 + }, + { + "word": "fundamentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-founded", + "example_sentence_native": "Su argumento estaba bien fundamentado.", + "example_sentence_english": "His argument was well-founded.", + "pos": "adjective", + "word_frequency": 20049 + }, + { + "word": "gestar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gestate", + "example_sentence_native": "El proyecto se gestó durante meses.", + "example_sentence_english": "The project was developed over months.", + "pos": "verb", + "word_frequency": 20054 + }, + { + "word": "golondrina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swallow", + "example_sentence_native": "Las golondrinas regresan en primavera.", + "example_sentence_english": "Swallows return in spring.", + "pos": "noun", + "word_frequency": 20057 + }, + { + "word": "gráficamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphically", + "example_sentence_native": "El artista representó la escena gráficamente.", + "example_sentence_english": "The artist represented the scene graphically.", + "pos": "adverb", + "word_frequency": 20059 + }, + { + "word": "hegemónico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hegemonic", + "example_sentence_native": "El poder hegemónico influyó en la región.", + "example_sentence_english": "The hegemonic power influenced the region.", + "pos": "adjective", + "word_frequency": 20063 + }, + { + "word": "hermético", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermetic", + "example_sentence_native": "El recipiente es hermético para evitar fugas.", + "example_sentence_english": "The container is hermetic to prevent leaks.", + "pos": "adjective", + "word_frequency": 20065 + }, + { + "word": "hipopótamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hippopotamus", + "example_sentence_native": "El hipopótamo vive en el río.", + "example_sentence_english": "The hippopotamus lives in the river.", + "pos": "noun", + "word_frequency": 20066 + }, + { + "word": "igualado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equalized", + "example_sentence_native": "El marcador estaba igualado al final del partido.", + "example_sentence_english": "The score was equalized at the end of the match.", + "pos": "adjective", + "word_frequency": 20071 + }, + { + "word": "inconsistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconsistent", + "example_sentence_native": "Sus declaraciones fueron inconsistentes.", + "example_sentence_english": "His statements were inconsistent.", + "pos": "adjective", + "word_frequency": 20072 + }, + { + "word": "incubadora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incubator", + "example_sentence_native": "El bebé prematuro fue puesto en una incubadora.", + "example_sentence_english": "The premature baby was placed in an incubator.", + "pos": "noun", + "word_frequency": 20073 + }, + { + "word": "infectar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to infect", + "example_sentence_native": "El virus puede infectar a muchas personas.", + "example_sentence_english": "The virus can infect many people.", + "pos": "verb", + "word_frequency": 20074 + }, + { + "word": "inflado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inflated", + "example_sentence_native": "El globo estaba inflado.", + "example_sentence_english": "The balloon was inflated.", + "pos": "adjective", + "word_frequency": 20075 + }, + { + "word": "inmediatez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immediacy", + "example_sentence_native": "La inmediatez de la respuesta fue crucial.", + "example_sentence_english": "The immediacy of the response was crucial.", + "pos": "noun", + "word_frequency": 20076 + }, + { + "word": "internamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internment", + "example_sentence_native": "Se recomendó el internamiento del paciente.", + "example_sentence_english": "The patient's hospitalization was recommended.", + "pos": "noun", + "word_frequency": 20078 + }, + { + "word": "intrigado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrigued", + "example_sentence_native": "Estaba muy intrigado por la historia.", + "example_sentence_english": "He was very intrigued by the story.", + "pos": "adjective", + "word_frequency": 20079 + }, + { + "word": "introductorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introductory", + "example_sentence_native": "El curso introductorio es para principiantes.", + "example_sentence_english": "The introductory course is for beginners.", + "pos": "adjective", + "word_frequency": 20080 + }, + { + "word": "jeringa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syringe", + "example_sentence_native": "La enfermera usó una jeringa para la inyección.", + "example_sentence_english": "The nurse used a syringe for the injection.", + "pos": "noun", + "word_frequency": 20082 + }, + { + "word": "juerga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spree", + "example_sentence_native": "Se fueron de juerga toda la noche.", + "example_sentence_english": "They went on a spree all night.", + "pos": "noun", + "word_frequency": 20084 + }, + { + "word": "júnior", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junior", + "example_sentence_native": "Es el miembro júnior del equipo.", + "example_sentence_english": "He is the junior member of the team.", + "pos": "adjective", + "word_frequency": 20088 + }, + { + "word": "liberador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberating", + "example_sentence_native": "Fue una experiencia muy liberadora.", + "example_sentence_english": "It was a very liberating experience.", + "pos": "adjective", + "word_frequency": 20091 + }, + { + "word": "llanero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plainsman", + "example_sentence_native": "El llanero es un jinete experto.", + "example_sentence_english": "The plainsman is an expert rider.", + "pos": "noun", + "word_frequency": 20093 + }, + { + "word": "lípido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lipid", + "example_sentence_native": "Los lípidos son importantes para la energía.", + "example_sentence_english": "Lipids are important for energy.", + "pos": "noun", + "word_frequency": 20096 + }, + { + "word": "macarrón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "macaroni", + "example_sentence_native": "A los niños les encantan los macarrones con queso.", + "example_sentence_english": "Kids love macaroni and cheese.", + "pos": "noun", + "word_frequency": 20097 + }, + { + "word": "maldecir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to curse", + "example_sentence_native": "No debes maldecir en público.", + "example_sentence_english": "You shouldn't curse in public.", + "pos": "verb", + "word_frequency": 20098 + }, + { + "word": "mamut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mammoth", + "example_sentence_native": "El mamut lanudo se extinguió hace miles de años.", + "example_sentence_english": "The woolly mammoth became extinct thousands of years ago.", + "pos": "noun", + "word_frequency": 20099 + }, + { + "word": "manchego", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Manchegan", + "example_sentence_native": "El queso manchego es muy famoso.", + "example_sentence_english": "Manchego cheese is very famous.", + "pos": "adjective", + "word_frequency": 20101 + }, + { + "word": "manejable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manageable", + "example_sentence_native": "El problema es manejable si trabajamos juntos.", + "example_sentence_english": "The problem is manageable if we work together.", + "pos": "adjective", + "word_frequency": 20102 + }, + { + "word": "menester", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necessity", + "example_sentence_native": "Es menester actuar con rapidez.", + "example_sentence_english": "It is necessary to act quickly.", + "pos": "noun", + "word_frequency": 20106 + }, + { + "word": "microbio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "microbe", + "example_sentence_native": "Los microbios son invisibles a simple vista.", + "example_sentence_english": "Microbes are invisible to the naked eye.", + "pos": "noun", + "word_frequency": 20108 + }, + { + "word": "mimar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pamper", + "example_sentence_native": "A veces es bueno mimar a tu mascota.", + "example_sentence_english": "Sometimes it's good to pamper your pet.", + "pos": "verb", + "word_frequency": 20111 + }, + { + "word": "misticismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysticism", + "example_sentence_native": "El misticismo es un tema fascinante.", + "example_sentence_english": "Mysticism is a fascinating subject.", + "pos": "noun", + "word_frequency": 20112 + }, + { + "word": "mofa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mockery", + "example_sentence_native": "Sus palabras fueron objeto de mofa.", + "example_sentence_english": "His words were an object of mockery.", + "pos": "noun", + "word_frequency": 20113 + }, + { + "word": "mongol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mongol", + "example_sentence_native": "La historia del imperio mongol es muy rica.", + "example_sentence_english": "The history of the Mongol empire is very rich.", + "pos": "noun", + "word_frequency": 20114 + }, + { + "word": "multiple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiple", + "example_sentence_native": "Hay múltiples opciones disponibles.", + "example_sentence_english": "There are multiple options available.", + "pos": "adjective", + "word_frequency": 20118 + }, + { + "word": "murciano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Murcian", + "example_sentence_native": "La gastronomía murciana es deliciosa.", + "example_sentence_english": "Murcian gastronomy is delicious.", + "pos": "adjective", + "word_frequency": 20119 + }, + { + "word": "narrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrated", + "example_sentence_native": "El cuento fue narrado por un experto.", + "example_sentence_english": "The story was narrated by an expert.", + "pos": "adjective", + "word_frequency": 20120 + }, + { + "word": "oceano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ocean", + "example_sentence_native": "El océano Atlántico es muy grande.", + "example_sentence_english": "The Atlantic ocean is very large.", + "pos": "noun", + "word_frequency": 20123 + }, + { + "word": "ornamental", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ornamental", + "example_sentence_native": "La planta tiene un valor ornamental.", + "example_sentence_english": "The plant has an ornamental value.", + "pos": "adjective", + "word_frequency": 20131 + }, + { + "word": "orégano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oregano", + "example_sentence_native": "Añade orégano a la pizza.", + "example_sentence_english": "Add oregano to the pizza.", + "pos": "noun", + "word_frequency": 20132 + }, + { + "word": "palabrería", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wordiness;empty talk", + "example_sentence_native": "Su discurso fue pura palabrería sin contenido.", + "example_sentence_english": "His speech was pure wordiness without content.", + "pos": "noun", + "word_frequency": 20134 + }, + { + "word": "parral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grapevine;trellis", + "example_sentence_native": "Las uvas crecen en el parral.", + "example_sentence_english": "The grapes grow on the grapevine.", + "pos": "noun", + "word_frequency": 20135 + }, + { + "word": "pastizal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pasture;grassland", + "example_sentence_native": "El ganado pasta en el vasto pastizal.", + "example_sentence_english": "The cattle graze in the vast pasture.", + "pos": "noun", + "word_frequency": 20136 + }, + { + "word": "patológico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathological", + "example_sentence_native": "Tiene una necesidad patológica de mentir.", + "example_sentence_english": "He has a pathological need to lie.", + "pos": "adjective", + "word_frequency": 20137 + }, + { + "word": "paulista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Paulista (person from São Paulo)", + "example_sentence_native": "Muchos paulistas visitan las playas de Río.", + "example_sentence_english": "Many Paulistas visit the beaches of Rio.", + "pos": "noun", + "word_frequency": 20138 + }, + { + "word": "pelusa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lint;fluff", + "example_sentence_native": "Hay mucha pelusa debajo de la cama.", + "example_sentence_english": "There is a lot of lint under the bed.", + "pos": "noun", + "word_frequency": 20139 + }, + { + "word": "peyorativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pejorative;derogatory", + "example_sentence_native": "Usó un término peyorativo para describirlo.", + "example_sentence_english": "He used a pejorative term to describe him.", + "pos": "adjective", + "word_frequency": 20140 + }, + { + "word": "piadoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pious;merciful", + "example_sentence_native": "Era un hombre piadoso y muy religioso.", + "example_sentence_english": "He was a pious and very religious man.", + "pos": "adjective", + "word_frequency": 20141 + }, + { + "word": "pollito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chick (baby chicken)", + "example_sentence_native": "El pollito salió del huevo.", + "example_sentence_english": "The chick came out of the egg.", + "pos": "noun", + "word_frequency": 20143 + }, + { + "word": "presupuestal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "budgetary", + "example_sentence_native": "Necesitamos una revisión presupuestal urgente.", + "example_sentence_english": "We need an urgent budgetary review.", + "pos": "adjective", + "word_frequency": 20144 + }, + { + "word": "primordialmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primarily;primordially", + "example_sentence_native": "El problema es primordialmente económico.", + "example_sentence_english": "The problem is primarily economic.", + "pos": "adverb", + "word_frequency": 20145 + }, + { + "word": "proeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feat;exploit", + "example_sentence_native": "Lograr eso fue una verdadera proeza.", + "example_sentence_english": "Achieving that was a true feat.", + "pos": "noun", + "word_frequency": 20146 + }, + { + "word": "profusamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profusely;abundantly", + "example_sentence_native": "La planta floreció profusamente este año.", + "example_sentence_english": "The plant bloomed profusely this year.", + "pos": "adverb", + "word_frequency": 20147 + }, + { + "word": "promocionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promoted;advertised", + "example_sentence_native": "El nuevo producto fue muy promocionado.", + "example_sentence_english": "The new product was heavily promoted.", + "pos": "adjective", + "word_frequency": 20148 + }, + { + "word": "prontamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promptly;quickly", + "example_sentence_native": "Respondió prontamente a mi correo.", + "example_sentence_english": "He responded promptly to my email.", + "pos": "adverb", + "word_frequency": 20149 + }, + { + "word": "provener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come from;to originate", + "example_sentence_native": "El río proviene de las montañas.", + "example_sentence_english": "The river comes from the mountains.", + "pos": "verb", + "word_frequency": 20150 + }, + { + "word": "pujante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thriving;booming", + "example_sentence_native": "Es una economía pujante.", + "example_sentence_english": "It is a thriving economy.", + "pos": "adjective", + "word_frequency": 20153 + }, + { + "word": "punible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "punishable", + "example_sentence_native": "El fraude es un delito punible por la ley.", + "example_sentence_english": "Fraud is a crime punishable by law.", + "pos": "adjective", + "word_frequency": 20154 + }, + { + "word": "quietud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stillness;quietness", + "example_sentence_native": "Disfrutamos de la quietud de la noche.", + "example_sentence_english": "We enjoyed the stillness of the night.", + "pos": "noun", + "word_frequency": 20157 + }, + { + "word": "quinteto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quintet", + "example_sentence_native": "El quinteto de jazz tocó maravillosamente.", + "example_sentence_english": "The jazz quintet played wonderfully.", + "pos": "noun", + "word_frequency": 20159 + }, + { + "word": "racionalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rationalize", + "example_sentence_native": "Necesitamos racionalizar nuestros gastos para ahorrar dinero.", + "example_sentence_english": "We need to rationalize our expenses to save money.", + "pos": "verb", + "word_frequency": 20160 + }, + { + "word": "racionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rationally", + "example_sentence_native": "Debemos pensar racionalmente antes de tomar una decisión.", + "example_sentence_english": "We must think rationally before making a decision.", + "pos": "adverb", + "word_frequency": 20161 + }, + { + "word": "recalde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "settling (of a building);reheating", + "example_sentence_native": "El recalde del hormigón puede causar grietas.", + "example_sentence_english": "The settling of the concrete can cause cracks.", + "pos": "noun", + "word_frequency": 20163 + }, + { + "word": "recompensar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reward;to compensate", + "example_sentence_native": "Quería recompensar su esfuerzo con un regalo.", + "example_sentence_english": "He wanted to reward her effort with a gift.", + "pos": "verb", + "word_frequency": 20164 + }, + { + "word": "reflexion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection;thought", + "example_sentence_native": "La situación requiere una profunda reflexión.", + "example_sentence_english": "The situation requires deep reflection.", + "pos": "noun", + "word_frequency": 20165 + }, + { + "word": "rentar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rent;to yield (profit)", + "example_sentence_native": "Vamos a rentar un coche para el viaje.", + "example_sentence_english": "We are going to rent a car for the trip.", + "pos": "verb", + "word_frequency": 20167 + }, + { + "word": "repollo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cabbage", + "example_sentence_native": "Me gusta la ensalada de repollo.", + "example_sentence_english": "I like cabbage salad.", + "pos": "noun", + "word_frequency": 20168 + }, + { + "word": "revitalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revitalize", + "example_sentence_native": "Es necesario revitalizar la economía local.", + "example_sentence_english": "It is necessary to revitalize the local economy.", + "pos": "verb", + "word_frequency": 20169 + }, + { + "word": "rocoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocky", + "example_sentence_native": "El terreno era muy rocoso y difícil de caminar.", + "example_sentence_english": "The terrain was very rocky and difficult to walk on.", + "pos": "adjective", + "word_frequency": 20172 + }, + { + "word": "románico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Romanesque", + "example_sentence_native": "La iglesia tiene un estilo románico.", + "example_sentence_english": "The church has a Romanesque style.", + "pos": "adjective", + "word_frequency": 20173 + }, + { + "word": "rugido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roar", + "example_sentence_native": "Escuchamos el rugido de un león en la distancia.", + "example_sentence_english": "We heard the roar of a lion in the distance.", + "pos": "noun", + "word_frequency": 20175 + }, + { + "word": "sacristán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacristan;sexton", + "example_sentence_native": "El sacristán preparó el altar para la misa.", + "example_sentence_english": "The sacristan prepared the altar for the mass.", + "pos": "noun", + "word_frequency": 20177 + }, + { + "word": "saltamontes", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grasshopper", + "example_sentence_native": "Un saltamontes saltó sobre la hierba.", + "example_sentence_english": "A grasshopper jumped on the grass.", + "pos": "noun", + "word_frequency": 20180 + }, + { + "word": "sensiblemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noticeably;considerably", + "example_sentence_native": "La temperatura ha bajado sensiblemente.", + "example_sentence_english": "The temperature has dropped noticeably.", + "pos": "adverb", + "word_frequency": 20185 + }, + { + "word": "seño", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "miss;madam (informal)", + "example_sentence_native": "Hola, seño, ¿cómo está?", + "example_sentence_english": "Hello, miss, how are you?", + "pos": "noun", + "word_frequency": 20186 + }, + { + "word": "sigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sigma", + "example_sentence_native": "La letra griega sigma se usa en matemáticas.", + "example_sentence_english": "The Greek letter sigma is used in mathematics.", + "pos": "noun", + "word_frequency": 20188 + }, + { + "word": "socialdemocracia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social democracy", + "example_sentence_native": "La socialdemocracia busca un equilibrio entre el capitalismo y el socialismo.", + "example_sentence_english": "Social democracy seeks a balance between capitalism and socialism.", + "pos": "noun", + "word_frequency": 20191 + }, + { + "word": "sordera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deafness", + "example_sentence_native": "La sordera puede ser causada por varios factores.", + "example_sentence_english": "Deafness can be caused by various factors.", + "pos": "noun", + "word_frequency": 20193 + }, + { + "word": "sublevado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rebellious;insurgent", + "example_sentence_native": "El pueblo sublevado exigía sus derechos.", + "example_sentence_english": "The rebellious people demanded their rights.", + "pos": "adjective", + "word_frequency": 20196 + }, + { + "word": "sultana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sultana", + "example_sentence_native": "La sultana gobernó el imperio con sabiduría.", + "example_sentence_english": "The sultana ruled the empire wisely.", + "pos": "noun", + "word_frequency": 20197 + }, + { + "word": "símil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "simile", + "example_sentence_native": "El poeta usó un símil para describir la luna.", + "example_sentence_english": "The poet used a simile to describe the moon.", + "pos": "noun", + "word_frequency": 20201 + }, + { + "word": "tachado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossed out", + "example_sentence_native": "La palabra estaba tachada en el documento.", + "example_sentence_english": "The word was crossed out in the document.", + "pos": "adjective", + "word_frequency": 20202 + }, + { + "word": "tubérculo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuber", + "example_sentence_native": "La patata es un tipo de tubérculo.", + "example_sentence_english": "The potato is a type of tuber.", + "pos": "noun", + "word_frequency": 20215 + }, + { + "word": "tándem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tandem", + "example_sentence_native": "Trabajan en tándem para lograr sus objetivos.", + "example_sentence_english": "They work in tandem to achieve their goals.", + "pos": "noun", + "word_frequency": 20216 + }, + { + "word": "ultrasonido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultrasound", + "example_sentence_native": "Se hizo un ultrasonido para ver al bebé.", + "example_sentence_english": "She had an ultrasound to see the baby.", + "pos": "noun", + "word_frequency": 20220 + }, + { + "word": "vacunar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vaccinate", + "example_sentence_native": "Es importante vacunar a los niños.", + "example_sentence_english": "It's important to vaccinate children.", + "pos": "verb", + "word_frequency": 20222 + }, + { + "word": "valientemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bravely;valiantly", + "example_sentence_native": "El soldado luchó valientemente.", + "example_sentence_english": "The soldier fought bravely.", + "pos": "adverb", + "word_frequency": 20223 + }, + { + "word": "ventral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ventral", + "example_sentence_native": "La aleta ventral del pez es importante para su equilibrio.", + "example_sentence_english": "The ventral fin of the fish is important for its balance.", + "pos": "adjective", + "word_frequency": 20225 + }, + { + "word": "vicisitud", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "vicissitude;change", + "example_sentence_native": "La vida está llena de vicisitudes inesperadas.", + "example_sentence_english": "Life is full of unexpected vicissitudes.", + "pos": "noun", + "word_frequency": 20227 + }, + { + "word": "albóndiga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meatball", + "example_sentence_native": "Me encantan las albóndigas con salsa de tomate.", + "example_sentence_english": "I love meatballs with tomato sauce.", + "pos": "noun", + "word_frequency": 20234 + }, + { + "word": "alfiler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pin", + "example_sentence_native": "Se pinchó el dedo con un alfiler.", + "example_sentence_english": "She pricked her finger with a pin.", + "pos": "noun", + "word_frequency": 20235 + }, + { + "word": "alimentacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nutrition;feeding", + "example_sentence_native": "La alimentación saludable es fundamental para el bienestar.", + "example_sentence_english": "Healthy nutrition is fundamental for well-being.", + "pos": "noun", + "word_frequency": 20236 + }, + { + "word": "ambientalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmental activist", + "example_sentence_native": "Es un ambientalista muy comprometido con la causa.", + "example_sentence_english": "He is an environmental activist very committed to the cause.", + "pos": "noun", + "word_frequency": 20237 + }, + { + "word": "anagrama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anagram", + "example_sentence_native": "'Roma' es un anagrama de 'amor'.", + "example_sentence_english": "'Roma' is an anagram of 'amor'.", + "pos": "noun", + "word_frequency": 20238 + }, + { + "word": "antagonismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antagonism", + "example_sentence_native": "Había un claro antagonismo entre los dos grupos.", + "example_sentence_english": "There was a clear antagonism between the two groups.", + "pos": "noun", + "word_frequency": 20239 + }, + { + "word": "aplazado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "postponed;deferred", + "example_sentence_native": "El examen fue aplazado hasta la próxima semana.", + "example_sentence_english": "The exam was postponed until next week.", + "pos": "adjective", + "word_frequency": 20241 + }, + { + "word": "apreciable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciable;noticeable", + "example_sentence_native": "Hubo una mejora apreciable en su rendimiento.", + "example_sentence_english": "There was an appreciable improvement in his performance.", + "pos": "adjective", + "word_frequency": 20242 + }, + { + "word": "arbolito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small tree;sapling", + "example_sentence_native": "Plantamos un arbolito en el jardín.", + "example_sentence_english": "We planted a small tree in the garden.", + "pos": "noun", + "word_frequency": 20243 + }, + { + "word": "ardid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratagem;ruse;trick", + "example_sentence_native": "El ladrón usó un ardid para distraer a la policía.", + "example_sentence_english": "The thief used a ruse to distract the police.", + "pos": "noun", + "word_frequency": 20244 + }, + { + "word": "articulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "articulated;jointed;well-spoken", + "example_sentence_native": "Su discurso fue muy articulado y claro.", + "example_sentence_english": "His speech was very articulated and clear.", + "pos": "adjective", + "word_frequency": 20245 + }, + { + "word": "aturdido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dazed;stunned;bewildered", + "example_sentence_native": "Después del golpe, se sintió aturdido.", + "example_sentence_english": "After the blow, he felt dazed.", + "pos": "adjective", + "word_frequency": 20247 + }, + { + "word": "autosuficiencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-sufficiency", + "example_sentence_native": "La autosuficiencia es un objetivo importante para muchas personas.", + "example_sentence_english": "Self-sufficiency is an important goal for many people.", + "pos": "noun", + "word_frequency": 20248 + }, + { + "word": "azotar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whip;to lash;to beat", + "example_sentence_native": "El viento azotaba las ventanas.", + "example_sentence_english": "The wind lashed against the windows.", + "pos": "verb", + "word_frequency": 20249 + }, + { + "word": "baca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roof rack (of a car)", + "example_sentence_native": "Pusimos las maletas en la baca del coche.", + "example_sentence_english": "We put the suitcases on the car's roof rack.", + "pos": "noun", + "word_frequency": 20250 + }, + { + "word": "batata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweet potato", + "example_sentence_native": "Las batatas son muy nutritivas.", + "example_sentence_english": "Sweet potatoes are very nutritious.", + "pos": "noun", + "word_frequency": 20252 + }, + { + "word": "bañador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimsuit;bathing suit", + "example_sentence_native": "Olvidé mi bañador en casa.", + "example_sentence_english": "I forgot my swimsuit at home.", + "pos": "noun", + "word_frequency": 20254 + }, + { + "word": "biliar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biliary;bile-related", + "example_sentence_native": "Tiene un problema biliar.", + "example_sentence_english": "He has a biliary problem.", + "pos": "adjective", + "word_frequency": 20255 + }, + { + "word": "biológicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biologically", + "example_sentence_native": "Biológicamente, somos muy similares a otros mamíferos.", + "example_sentence_english": "Biologically, we are very similar to other mammals.", + "pos": "adverb", + "word_frequency": 20256 + }, + { + "word": "bovino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bovine;cattle-related", + "example_sentence_native": "La carne bovina es muy popular.", + "example_sentence_english": "Bovine meat is very popular.", + "pos": "adjective", + "word_frequency": 20258 + }, + { + "word": "bretón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Breton", + "example_sentence_native": "Aprendió algunas palabras en bretón.", + "example_sentence_english": "He learned some words in Breton.", + "pos": "adjective", + "word_frequency": 20260 + }, + { + "word": "brillantez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brilliance;brightness", + "example_sentence_native": "La brillantez de su mente era evidente.", + "example_sentence_english": "The brilliance of his mind was evident.", + "pos": "noun", + "word_frequency": 20261 + }, + { + "word": "cantábrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cantabrian", + "example_sentence_native": "Las montañas cantábricas son hermosas.", + "example_sentence_english": "The Cantabrian mountains are beautiful.", + "pos": "adjective", + "word_frequency": 20264 + }, + { + "word": "caoba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mahogany", + "example_sentence_native": "La mesa es de madera de caoba.", + "example_sentence_english": "The table is made of mahogany wood.", + "pos": "noun", + "word_frequency": 20265 + }, + { + "word": "caperucita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little hood;Little Red Riding Hood (as a character)", + "example_sentence_native": "Leí el cuento de Caperucita Roja.", + "example_sentence_english": "I read the story of Little Red Riding Hood.", + "pos": "noun", + "word_frequency": 20266 + }, + { + "word": "carátula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover (of a book;CD);sleeve;faceplate", + "example_sentence_native": "La carátula del disco es muy original.", + "example_sentence_english": "The album cover is very original.", + "pos": "noun", + "word_frequency": 20267 + }, + { + "word": "chacal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jackal", + "example_sentence_native": "El chacal es un animal nocturno.", + "example_sentence_english": "The jackal is a nocturnal animal.", + "pos": "noun", + "word_frequency": 20269 + }, + { + "word": "chevere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool;great;awesome", + "example_sentence_native": "¡Qué chévere tu nueva bicicleta!", + "example_sentence_english": "How cool your new bike is!", + "pos": "adjective", + "word_frequency": 20272 + }, + { + "word": "chupo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pacifier;dummy (UK);sucker", + "example_sentence_native": "El bebé no quiere soltar su chupo.", + "example_sentence_english": "The baby doesn't want to let go of his pacifier.", + "pos": "noun", + "word_frequency": 20275 + }, + { + "word": "cirílico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cyrillic", + "example_sentence_native": "El alfabeto cirílico se usa en varios idiomas eslavos.", + "example_sentence_english": "The Cyrillic alphabet is used in several Slavic languages.", + "pos": "adjective", + "word_frequency": 20276 + }, + { + "word": "clientelismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clientelism;patronage", + "example_sentence_native": "El clientelismo es un problema en la política de algunos países.", + "example_sentence_english": "Clientelism is a problem in the politics of some countries.", + "pos": "noun", + "word_frequency": 20277 + }, + { + "word": "codificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coded", + "example_sentence_native": "El mensaje estaba codificado para proteger la información.", + "example_sentence_english": "The message was coded to protect the information.", + "pos": "adjective", + "word_frequency": 20280 + }, + { + "word": "colonizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to colonize", + "example_sentence_native": "Los europeos comenzaron a colonizar nuevas tierras en el siglo XV.", + "example_sentence_english": "Europeans began to colonize new lands in the 15th century.", + "pos": "verb", + "word_frequency": 20282 + }, + { + "word": "conciliador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conciliatory", + "example_sentence_native": "Su actitud conciliadora ayudó a resolver el conflicto.", + "example_sentence_english": "His conciliatory attitude helped resolve the conflict.", + "pos": "adjective", + "word_frequency": 20284 + }, + { + "word": "concurrido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowded", + "example_sentence_native": "El mercado estaba muy concurrido el sábado.", + "example_sentence_english": "The market was very crowded on Saturday.", + "pos": "adjective", + "word_frequency": 20285 + }, + { + "word": "contagiar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to infect", + "example_sentence_native": "No quiero contagiarte mi resfriado.", + "example_sentence_english": "I don't want to infect you with my cold.", + "pos": "verb", + "word_frequency": 20286 + }, + { + "word": "copete", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forelock", + "example_sentence_native": "Se arregló el copete antes de salir.", + "example_sentence_english": "He fixed his forelock before going out.", + "pos": "noun", + "word_frequency": 20288 + }, + { + "word": "corsario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privateer", + "example_sentence_native": "El corsario atacó el barco mercante.", + "example_sentence_english": "The privateer attacked the merchant ship.", + "pos": "noun", + "word_frequency": 20289 + }, + { + "word": "cruelmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruelly", + "example_sentence_native": "Lo trató cruelmente sin razón.", + "example_sentence_english": "He treated him cruelly for no reason.", + "pos": "adverb", + "word_frequency": 20290 + }, + { + "word": "cutis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complexion", + "example_sentence_native": "Tiene un cutis muy suave.", + "example_sentence_english": "She has very soft skin.", + "pos": "noun", + "word_frequency": 20293 + }, + { + "word": "córnea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cornea", + "example_sentence_native": "La córnea es la parte transparente del ojo.", + "example_sentence_english": "The cornea is the transparent part of the eye.", + "pos": "noun", + "word_frequency": 20294 + }, + { + "word": "declinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decline", + "example_sentence_native": "Tuvo que declinar la invitación por motivos de salud.", + "example_sentence_english": "He had to decline the invitation for health reasons.", + "pos": "verb", + "word_frequency": 20297 + }, + { + "word": "descontado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discounted", + "example_sentence_native": "El precio ya está descontado.", + "example_sentence_english": "The price is already discounted.", + "pos": "adjective", + "word_frequency": 20298 + }, + { + "word": "desestabilización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "destabilization", + "example_sentence_native": "La desestabilización de la región es preocupante.", + "example_sentence_english": "The destabilization of the region is worrying.", + "pos": "noun", + "word_frequency": 20299 + }, + { + "word": "desgarrador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heartbreaking", + "example_sentence_native": "Fue una escena desgarradora verlos sufrir.", + "example_sentence_english": "It was a heartbreaking scene to see them suffer.", + "pos": "adjective", + "word_frequency": 20300 + }, + { + "word": "desliz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slip", + "example_sentence_native": "Cometió un pequeño desliz al hablar.", + "example_sentence_english": "He made a small slip when speaking.", + "pos": "noun", + "word_frequency": 20301 + }, + { + "word": "devorar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devour", + "example_sentence_native": "El león devoró a su presa rápidamente.", + "example_sentence_english": "The lion devoured its prey quickly.", + "pos": "verb", + "word_frequency": 20304 + }, + { + "word": "dispersar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disperse", + "example_sentence_native": "La policía tuvo que dispersar a la multitud.", + "example_sentence_english": "The police had to disperse the crowd.", + "pos": "verb", + "word_frequency": 20305 + }, + { + "word": "ecuestre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equestrian", + "example_sentence_native": "Le encanta practicar la equitación ecuestre.", + "example_sentence_english": "She loves practicing equestrian riding.", + "pos": "adjective", + "word_frequency": 20308 + }, + { + "word": "edificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "built", + "example_sentence_native": "El edificio fue edificado en el siglo XIX.", + "example_sentence_english": "The building was built in the 19th century.", + "pos": "adjective", + "word_frequency": 20309 + }, + { + "word": "encendedor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighter", + "example_sentence_native": "¿Tienes un encendedor, por favor?", + "example_sentence_english": "Do you have a lighter, please?", + "pos": "noun", + "word_frequency": 20312 + }, + { + "word": "envolvente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enveloping", + "example_sentence_native": "La música creó una atmósfera envolvente.", + "example_sentence_english": "The music created an immersive atmosphere.", + "pos": "adjective", + "word_frequency": 20314 + }, + { + "word": "equivocación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mistake", + "example_sentence_native": "Fue una equivocación grave no revisar los datos.", + "example_sentence_english": "It was a serious mistake not to check the data.", + "pos": "noun", + "word_frequency": 20315 + }, + { + "word": "esporádicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sporadically", + "example_sentence_native": "Las lluvias caen esporádicamente en esta región.", + "example_sentence_english": "Rains fall sporadically in this region.", + "pos": "adverb", + "word_frequency": 20317 + }, + { + "word": "estupendamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wonderfully", + "example_sentence_native": "Me siento estupendamente hoy.", + "example_sentence_english": "I feel wonderfully today.", + "pos": "adverb", + "word_frequency": 20318 + }, + { + "word": "exorcista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exorcist", + "example_sentence_native": "La película trata sobre un exorcista.", + "example_sentence_english": "The movie is about an exorcist.", + "pos": "noun", + "word_frequency": 20319 + }, + { + "word": "expedir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to issue;to dispatch", + "example_sentence_native": "La oficina puede expedir pasaportes en una semana.", + "example_sentence_english": "The office can issue passports in one week.", + "pos": "verb", + "word_frequency": 20320 + }, + { + "word": "explotador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploiter;operator", + "example_sentence_native": "El explotador de la mina fue multado por las malas condiciones.", + "example_sentence_english": "The mine operator was fined for the poor conditions.", + "pos": "noun", + "word_frequency": 20321 + }, + { + "word": "extranjería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immigration office;foreign affairs", + "example_sentence_native": "Tienes que ir a la oficina de extranjería para tu permiso de residencia.", + "example_sentence_english": "You have to go to the immigration office for your residence permit.", + "pos": "noun", + "word_frequency": 20322 + }, + { + "word": "falsificacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forgery;counterfeit", + "example_sentence_native": "La falsificación de documentos es un delito grave.", + "example_sentence_english": "Document forgery is a serious crime.", + "pos": "noun", + "word_frequency": 20323 + }, + { + "word": "fantastico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fantastic;great", + "example_sentence_native": "¡Qué día tan fantástico tuvimos en la playa!", + "example_sentence_english": "What a fantastic day we had at the beach!", + "pos": "adjective", + "word_frequency": 20324 + }, + { + "word": "fealdad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ugliness", + "example_sentence_native": "La fealdad de la guerra es innegable.", + "example_sentence_english": "The ugliness of war is undeniable.", + "pos": "noun", + "word_frequency": 20325 + }, + { + "word": "fecundidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertility;fecundity", + "example_sentence_native": "Estudiaron la fecundidad de la tierra para la agricultura.", + "example_sentence_english": "They studied the fertility of the land for agriculture.", + "pos": "noun", + "word_frequency": 20326 + }, + { + "word": "figurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "figurative;metaphorical", + "example_sentence_native": "Su comentario fue en sentido figurado, no literal.", + "example_sentence_english": "His comment was figurative, not literal.", + "pos": "adjective", + "word_frequency": 20328 + }, + { + "word": "filtrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filtered;leaked", + "example_sentence_native": "La información filtrada causó un gran escándalo.", + "example_sentence_english": "The leaked information caused a big scandal.", + "pos": "adjective", + "word_frequency": 20329 + }, + { + "word": "fontanero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plumber", + "example_sentence_native": "Llamamos al fontanero para arreglar la fuga.", + "example_sentence_english": "We called the plumber to fix the leak.", + "pos": "noun", + "word_frequency": 20331 + }, + { + "word": "fulminante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sudden;overwhelming;fulminant", + "example_sentence_native": "La noticia fue un golpe fulminante para todos.", + "example_sentence_english": "The news was a sudden blow to everyone.", + "pos": "adjective", + "word_frequency": 20332 + }, + { + "word": "garabato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scribble;doodle", + "example_sentence_native": "El niño hizo un garabato en la pared.", + "example_sentence_english": "The child made a scribble on the wall.", + "pos": "noun", + "word_frequency": 20334 + }, + { + "word": "geologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geological", + "example_sentence_native": "Realizaron un estudio geológico de la zona.", + "example_sentence_english": "They conducted a geological study of the area.", + "pos": "adjective", + "word_frequency": 20336 + }, + { + "word": "grafico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graphic;graphical", + "example_sentence_native": "El diseño gráfico es muy importante para la publicidad.", + "example_sentence_english": "Graphic design is very important for advertising.", + "pos": "adjective", + "word_frequency": 20340 + }, + { + "word": "granadino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Granada;Grenadian", + "example_sentence_native": "Mi amigo es granadino, nació en Granada.", + "example_sentence_english": "My friend is Grenadian, he was born in Granada.", + "pos": "adjective", + "word_frequency": 20341 + }, + { + "word": "holandesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Dutch (female)", + "example_sentence_native": "Mi vecina es holandesa y habla español muy bien.", + "example_sentence_english": "My neighbor is Dutch and speaks Spanish very well.", + "pos": "adjective", + "word_frequency": 20344 + }, + { + "word": "humanamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanly", + "example_sentence_native": "Es humanamente imposible terminar todo el trabajo en un día.", + "example_sentence_english": "It is humanly impossible to finish all the work in one day.", + "pos": "adverb", + "word_frequency": 20345 + }, + { + "word": "identificable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identifiable", + "example_sentence_native": "El objeto no era fácilmente identificable.", + "example_sentence_english": "The object was not easily identifiable.", + "pos": "adjective", + "word_frequency": 20347 + }, + { + "word": "idoneo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suitable;appropriate;ideal", + "example_sentence_native": "Él es el candidato idóneo para el puesto.", + "example_sentence_english": "He is the ideal candidate for the position.", + "pos": "adjective", + "word_frequency": 20348 + }, + { + "word": "ileso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unharmed;uninjured", + "example_sentence_native": "Afortunadamente, salió ileso del accidente.", + "example_sentence_english": "Fortunately, he emerged unharmed from the accident.", + "pos": "adjective", + "word_frequency": 20350 + }, + { + "word": "impago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-payment;default", + "example_sentence_native": "La empresa tiene varios impagos pendientes.", + "example_sentence_english": "The company has several pending non-payments.", + "pos": "noun", + "word_frequency": 20351 + }, + { + "word": "inhalacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhalation", + "example_sentence_native": "La inhalación de humo puede ser peligrosa.", + "example_sentence_english": "Smoke inhalation can be dangerous.", + "pos": "noun", + "word_frequency": 20352 + }, + { + "word": "insinuacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insinuation;hint", + "example_sentence_native": "Su comentario fue una clara insinuación.", + "example_sentence_english": "His comment was a clear insinuation.", + "pos": "noun", + "word_frequency": 20353 + }, + { + "word": "joyita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little gem;treasure", + "example_sentence_native": "Este reloj antiguo es una verdadera joyita.", + "example_sentence_english": "This antique watch is a real little gem.", + "pos": "noun", + "word_frequency": 20361 + }, + { + "word": "kayak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kayak", + "example_sentence_native": "Fuimos a remar en kayak por el río.", + "example_sentence_english": "We went kayaking down the river.", + "pos": "noun", + "word_frequency": 20365 + }, + { + "word": "lavanda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lavender", + "example_sentence_native": "El aroma a lavanda es muy relajante.", + "example_sentence_english": "The scent of lavender is very relaxing.", + "pos": "noun", + "word_frequency": 20370 + }, + { + "word": "limeño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Lima;Liman", + "example_sentence_native": "Mi amigo es limeño, nació en la capital de Perú.", + "example_sentence_english": "My friend is from Lima, he was born in the capital of Peru.", + "pos": "adjective", + "word_frequency": 20372 + }, + { + "word": "linfocito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lymphocyte", + "example_sentence_native": "Los linfocitos son un tipo de glóbulo blanco.", + "example_sentence_english": "Lymphocytes are a type of white blood cell.", + "pos": "noun", + "word_frequency": 20373 + }, + { + "word": "lonja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slice;strip;market;exchange", + "example_sentence_native": "Compramos una lonja de salmón fresco.", + "example_sentence_english": "We bought a slice of fresh salmon.", + "pos": "noun", + "word_frequency": 20375 + }, + { + "word": "loquito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a little crazy;crazy (endearing)", + "example_sentence_native": "Mi abuela está un poco loquita, pero la queremos mucho.", + "example_sentence_english": "My grandma is a little crazy, but we love her very much.", + "pos": "adjective", + "word_frequency": 20376 + }, + { + "word": "maestria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mastery;master's degree", + "example_sentence_native": "Obtuvo su maestría en literatura.", + "example_sentence_english": "She obtained her master's degree in literature.", + "pos": "noun", + "word_frequency": 20381 + }, + { + "word": "manojo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bunch;handful", + "example_sentence_native": "Le di un manojo de llaves.", + "example_sentence_english": "I gave him a bunch of keys.", + "pos": "noun", + "word_frequency": 20382 + }, + { + "word": "manufacturero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing", + "example_sentence_native": "La industria manufacturera es importante para la economía.", + "example_sentence_english": "The manufacturing industry is important for the economy.", + "pos": "adjective", + "word_frequency": 20383 + }, + { + "word": "mapeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mapping", + "example_sentence_native": "El mapeo genético es una herramienta útil en la investigación.", + "example_sentence_english": "Genetic mapping is a useful tool in research.", + "pos": "noun", + "word_frequency": 20384 + }, + { + "word": "mariguana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marijuana", + "example_sentence_native": "El debate sobre la legalización de la mariguana continúa.", + "example_sentence_english": "The debate about marijuana legalization continues.", + "pos": "noun", + "word_frequency": 20385 + }, + { + "word": "maxilar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maxillary", + "example_sentence_native": "El hueso maxilar forma parte de la mandíbula superior.", + "example_sentence_english": "The maxillary bone is part of the upper jaw.", + "pos": "adjective", + "word_frequency": 20386 + }, + { + "word": "mechón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lock (of hair);tuft", + "example_sentence_native": "Se cortó un mechón de pelo para donarlo.", + "example_sentence_english": "She cut a lock of hair to donate it.", + "pos": "noun", + "word_frequency": 20389 + }, + { + "word": "mediodia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "midday;noon", + "example_sentence_native": "Nos vemos al mediodía para almorzar.", + "example_sentence_english": "We'll see each other at midday for lunch.", + "pos": "noun", + "word_frequency": 20391 + }, + { + "word": "metraje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footage;length (of film)", + "example_sentence_native": "El metraje de la película fue editado cuidadosamente.", + "example_sentence_english": "The film footage was carefully edited.", + "pos": "noun", + "word_frequency": 20393 + }, + { + "word": "minimalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimalist", + "example_sentence_native": "Su estilo de decoración es muy minimalista.", + "example_sentence_english": "Her decorating style is very minimalist.", + "pos": "adjective", + "word_frequency": 20395 + }, + { + "word": "miocardio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "myocardium", + "example_sentence_native": "El infarto de miocardio es una emergencia médica.", + "example_sentence_english": "Myocardial infarction is a medical emergency.", + "pos": "noun", + "word_frequency": 20397 + }, + { + "word": "misógino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misogynistic", + "example_sentence_native": "Sus comentarios fueron considerados misóginos.", + "example_sentence_english": "His comments were considered misogynistic.", + "pos": "adjective", + "word_frequency": 20398 + }, + { + "word": "molienda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grinding;milling", + "example_sentence_native": "La molienda del café se hace antes de prepararlo.", + "example_sentence_english": "The grinding of the coffee is done before preparing it.", + "pos": "noun", + "word_frequency": 20399 + }, + { + "word": "multar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fine;to ticket", + "example_sentence_native": "La policía puede multar a los conductores por exceso de velocidad.", + "example_sentence_english": "The police can fine drivers for speeding.", + "pos": "verb", + "word_frequency": 20400 + }, + { + "word": "mundialista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "World Cup participant;player;related to the World Cup", + "example_sentence_native": "El equipo tiene varios jugadores mundialistas.", + "example_sentence_english": "The team has several World Cup players.", + "pos": "adjective", + "word_frequency": 20401 + }, + { + "word": "networking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "networking", + "example_sentence_native": "El networking es clave para encontrar nuevas oportunidades laborales.", + "example_sentence_english": "Networking is key to finding new job opportunities.", + "pos": "noun", + "word_frequency": 20406 + }, + { + "word": "nitro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nitro", + "example_sentence_native": "El coche de carreras usaba nitro para aumentar la velocidad.", + "example_sentence_english": "The race car used nitro to increase speed.", + "pos": "noun", + "word_frequency": 20410 + }, + { + "word": "offshore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offshore (as in offshore company;account)", + "example_sentence_native": "Muchas empresas tienen cuentas offshore para optimizar impuestos.", + "example_sentence_english": "Many companies have offshore accounts to optimize taxes.", + "pos": "noun", + "word_frequency": 20411 + }, + { + "word": "omnibus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omnibus;bus", + "example_sentence_native": "Tomamos el ómnibus para ir al centro.", + "example_sentence_english": "We took the omnibus to go downtown.", + "pos": "noun", + "word_frequency": 20412 + }, + { + "word": "opereta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operetta", + "example_sentence_native": "La opereta es un género musical ligero.", + "example_sentence_english": "Operetta is a light musical genre.", + "pos": "noun", + "word_frequency": 20413 + }, + { + "word": "oscilacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oscillation", + "example_sentence_native": "La oscilación del péndulo es regular.", + "example_sentence_english": "The oscillation of the pendulum is regular.", + "pos": "noun", + "word_frequency": 20414 + }, + { + "word": "oscurecer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to darken;to get dark", + "example_sentence_native": "El cielo empezó a oscurecer al atardecer.", + "example_sentence_english": "The sky began to darken at dusk.", + "pos": "verb", + "word_frequency": 20415 + }, + { + "word": "outfit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outfit", + "example_sentence_native": "Me encanta tu nuevo outfit.", + "example_sentence_english": "I love your new outfit.", + "pos": "noun", + "word_frequency": 20417 + }, + { + "word": "palatino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palatine", + "example_sentence_native": "El hueso palatino forma parte del paladar.", + "example_sentence_english": "The palatine bone is part of the palate.", + "pos": "adjective", + "word_frequency": 20418 + }, + { + "word": "palmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "span (of a hand);handbreadth", + "example_sentence_native": "La mesa mide un palmo de ancho.", + "example_sentence_english": "The table is a handbreadth wide.", + "pos": "noun", + "word_frequency": 20419 + }, + { + "word": "papelón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarrassing situation;disgrace;(in some regions) unrefined sugar", + "example_sentence_native": "Hizo un papelón en la reunión al olvidar su presentación.", + "example_sentence_english": "He made a fool of himself at the meeting by forgetting his presentation.", + "pos": "noun", + "word_frequency": 20420 + }, + { + "word": "papita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small potato;chip (crisp)", + "example_sentence_native": "¿Quieres unas papitas con tu sándwich?", + "example_sentence_english": "Do you want some chips with your sandwich?", + "pos": "noun", + "word_frequency": 20421 + }, + { + "word": "payasada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clowning;foolishness;nonsense", + "example_sentence_native": "Deja de hacer payasadas y sé serio.", + "example_sentence_english": "Stop clowning around and be serious.", + "pos": "noun", + "word_frequency": 20423 + }, + { + "word": "pender", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hang;to depend", + "example_sentence_native": "La lámpara pende del techo.", + "example_sentence_english": "The lamp hangs from the ceiling.", + "pos": "verb", + "word_frequency": 20424 + }, + { + "word": "peninsula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peninsula", + "example_sentence_native": "España es una península.", + "example_sentence_english": "Spain is a peninsula.", + "pos": "noun", + "word_frequency": 20425 + }, + { + "word": "perfilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outline;to profile;to shape", + "example_sentence_native": "El artista empezó a perfilar el rostro en el lienzo.", + "example_sentence_english": "The artist began to outline the face on the canvas.", + "pos": "verb", + "word_frequency": 20427 + }, + { + "word": "personalizacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personalization;customization", + "example_sentence_native": "La personalización del producto mejora la experiencia del usuario.", + "example_sentence_english": "Product personalization improves the user experience.", + "pos": "noun", + "word_frequency": 20428 + }, + { + "word": "pesquisa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inquiry;investigation;research", + "example_sentence_native": "La policía inició una pesquisa sobre el caso.", + "example_sentence_english": "The police began an inquiry into the case.", + "pos": "noun", + "word_frequency": 20429 + }, + { + "word": "pincelada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brushstroke", + "example_sentence_native": "El pintor añadió una pincelada de color al cuadro.", + "example_sentence_english": "The painter added a brushstroke of color to the painting.", + "pos": "noun", + "word_frequency": 20433 + }, + { + "word": "plenipotenciario", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "plenipotentiary", + "example_sentence_native": "El embajador es un representante plenipotenciario de su país.", + "example_sentence_english": "The ambassador is a plenipotentiary representative of his country.", + "pos": "adjective", + "word_frequency": 20437 + }, + { + "word": "plumaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plumage;feathers", + "example_sentence_native": "El plumaje del pavo real es muy vistoso.", + "example_sentence_english": "The peacock's plumage is very showy.", + "pos": "noun", + "word_frequency": 20438 + }, + { + "word": "pnb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "GNP (Gross National Product)", + "example_sentence_native": "El PNB es un indicador económico importante.", + "example_sentence_english": "GNP is an important economic indicator.", + "pos": "noun", + "word_frequency": 20439 + }, + { + "word": "podredumbre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decay;rot", + "example_sentence_native": "El olor a podredumbre era insoportable en el sótano.", + "example_sentence_english": "The smell of decay was unbearable in the basement.", + "pos": "noun", + "word_frequency": 20440 + }, + { + "word": "policíaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police (adj.);detective (adj.)", + "example_sentence_native": "Le encanta leer novelas policíacas de misterio.", + "example_sentence_english": "He loves reading detective mystery novels.", + "pos": "adjective", + "word_frequency": 20441 + }, + { + "word": "prebenda", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "sinecure;prebend", + "example_sentence_native": "Obtuvo una prebenda en la administración pública sin mucho esfuerzo.", + "example_sentence_english": "He obtained a sinecure in public administration without much effort.", + "pos": "noun", + "word_frequency": 20445 + }, + { + "word": "prehispánico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-Hispanic", + "example_sentence_native": "Estudiamos las culturas prehispánicas de Mesoamérica.", + "example_sentence_english": "We study the pre-Hispanic cultures of Mesoamerica.", + "pos": "adjective", + "word_frequency": 20446 + }, + { + "word": "pretencioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretentious", + "example_sentence_native": "Su discurso sonó un poco pretencioso y vacío.", + "example_sentence_english": "His speech sounded a bit pretentious and empty.", + "pos": "adjective", + "word_frequency": 20447 + }, + { + "word": "propension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propensity;tendency", + "example_sentence_native": "Tiene una propensión natural a la lectura.", + "example_sentence_english": "He has a natural propensity for reading.", + "pos": "noun", + "word_frequency": 20449 + }, + { + "word": "póker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poker", + "example_sentence_native": "Jugamos una partida de póker con amigos el sábado.", + "example_sentence_english": "We played a game of poker with friends on Saturday.", + "pos": "noun", + "word_frequency": 20453 + }, + { + "word": "póstumo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "posthumous", + "example_sentence_native": "Su obra fue publicada de forma póstuma.", + "example_sentence_english": "His work was published posthumously.", + "pos": "adjective", + "word_frequency": 20454 + }, + { + "word": "recaudado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collected;raised (money)", + "example_sentence_native": "El dinero recaudado se destinará a la beneficencia.", + "example_sentence_english": "The money collected will be donated to charity.", + "pos": "adjective", + "word_frequency": 20455 + }, + { + "word": "rectorado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectorate;dean's office", + "example_sentence_native": "La reunión del consejo se celebró en el rectorado de la universidad.", + "example_sentence_english": "The council meeting was held in the university's rectorate.", + "pos": "noun", + "word_frequency": 20456 + }, + { + "word": "recubrimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coating;covering", + "example_sentence_native": "El recubrimiento cerámico protege la superficie.", + "example_sentence_english": "The ceramic coating protects the surface.", + "pos": "noun", + "word_frequency": 20457 + }, + { + "word": "reflector", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflector;spotlight", + "example_sentence_native": "El reflector iluminaba el escenario durante la obra.", + "example_sentence_english": "The spotlight illuminated the stage during the play.", + "pos": "noun", + "word_frequency": 20458 + }, + { + "word": "regañadientes", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reluctantly;unwillingly", + "example_sentence_native": "Aceptó la propuesta a regañadientes, pero al final lo hizo.", + "example_sentence_english": "He accepted the proposal reluctantly, but in the end he did it.", + "pos": "adverb", + "word_frequency": 20459 + }, + { + "word": "retrovisor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rearview mirror", + "example_sentence_native": "Miró por el retrovisor antes de girar a la derecha.", + "example_sentence_english": "He looked in the rearview mirror before turning right.", + "pos": "noun", + "word_frequency": 20461 + }, + { + "word": "rodada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wheel track;rut;(film) shoot;take", + "example_sentence_native": "La rodada de la película duró varias semanas.", + "example_sentence_english": "The film shoot lasted several weeks.", + "pos": "noun", + "word_frequency": 20462 + }, + { + "word": "salvajemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "savagely;wildly", + "example_sentence_native": "El león atacó salvajemente a su presa en la sabana.", + "example_sentence_english": "The lion savagely attacked its prey on the savanna.", + "pos": "adverb", + "word_frequency": 20466 + }, + { + "word": "secador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dryer;hairdryer", + "example_sentence_native": "Necesito un secador de pelo para arreglarme.", + "example_sentence_english": "I need a hairdryer to get ready.", + "pos": "noun", + "word_frequency": 20472 + }, + { + "word": "secano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dry farming land;dryland", + "example_sentence_native": "La agricultura de secano depende de la lluvia natural.", + "example_sentence_english": "Dry farming agriculture depends on natural rainfall.", + "pos": "noun", + "word_frequency": 20473 + }, + { + "word": "servil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "servile;subservient", + "example_sentence_native": "Su actitud servil hacia el jefe era evidente para todos.", + "example_sentence_english": "His servile attitude towards the boss was evident to everyone.", + "pos": "adjective", + "word_frequency": 20474 + }, + { + "word": "simbiosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symbiosis", + "example_sentence_native": "Existe una simbiosis perfecta entre estas dos especies de plantas.", + "example_sentence_english": "There is a perfect symbiosis between these two plant species.", + "pos": "noun", + "word_frequency": 20475 + }, + { + "word": "sitiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "besieged;surrounded", + "example_sentence_native": "El castillo estaba sitiado por las tropas enemigas durante meses.", + "example_sentence_english": "The castle was besieged by enemy troops for months.", + "pos": "adjective", + "word_frequency": 20478 + }, + { + "word": "sobremesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "after-dinner conversation", + "example_sentence_native": "La sobremesa después de la cena fue muy agradable.", + "example_sentence_english": "The after-dinner conversation was very pleasant.", + "pos": "noun", + "word_frequency": 20480 + }, + { + "word": "soneto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonnet", + "example_sentence_native": "El poeta escribió un hermoso soneto de amor.", + "example_sentence_english": "The poet wrote a beautiful love sonnet.", + "pos": "noun", + "word_frequency": 20481 + }, + { + "word": "subjuntivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subjunctive (mood)", + "example_sentence_native": "Es importante dominar el subjuntivo para hablar español con fluidez.", + "example_sentence_english": "It's important to master the subjunctive to speak Spanish fluently.", + "pos": "noun", + "word_frequency": 20483 + }, + { + "word": "suplementario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supplementary", + "example_sentence_native": "Necesitamos información suplementaria para completar el informe.", + "example_sentence_english": "We need supplementary information to complete the report.", + "pos": "adjective", + "word_frequency": 20484 + }, + { + "word": "suprimido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suppressed", + "example_sentence_native": "El artículo fue suprimido de la publicación final.", + "example_sentence_english": "The article was suppressed from the final publication.", + "pos": "adjective", + "word_frequency": 20485 + }, + { + "word": "subscribir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to subscribe", + "example_sentence_native": "Me voy a subscribir a tu canal de YouTube.", + "example_sentence_english": "I'm going to subscribe to your YouTube channel.", + "pos": "verb", + "word_frequency": 20486 + }, + { + "word": "treintena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "about thirty", + "example_sentence_native": "Una treintena de personas asistieron a la reunión.", + "example_sentence_english": "About thirty people attended the meeting.", + "pos": "noun", + "word_frequency": 20499 + }, + { + "word": "tribuno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tribune", + "example_sentence_native": "El tribuno del pueblo defendía los derechos de los ciudadanos.", + "example_sentence_english": "The tribune of the people defended the rights of the citizens.", + "pos": "noun", + "word_frequency": 20500 + }, + { + "word": "tridente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trident", + "example_sentence_native": "Neptuno es a menudo representado con un tridente.", + "example_sentence_english": "Neptune is often depicted with a trident.", + "pos": "noun", + "word_frequency": 20501 + }, + { + "word": "ubicacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "location", + "example_sentence_native": "Por favor, comparte tu ubicación actual.", + "example_sentence_english": "Please share your current location.", + "pos": "noun", + "word_frequency": 20503 + }, + { + "word": "urraca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magpie", + "example_sentence_native": "La urraca es un ave muy inteligente.", + "example_sentence_english": "The magpie is a very intelligent bird.", + "pos": "noun", + "word_frequency": 20506 + }, + { + "word": "vibrador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibrator", + "example_sentence_native": "El teléfono tiene un vibrador para las notificaciones.", + "example_sentence_english": "The phone has a vibrator for notifications.", + "pos": "noun", + "word_frequency": 20508 + }, + { + "word": "zafiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sapphire", + "example_sentence_native": "El anillo tiene un hermoso zafiro azul.", + "example_sentence_english": "The ring has a beautiful blue sapphire.", + "pos": "noun", + "word_frequency": 20512 + }, + { + "word": "zarpado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "having left (a port)", + "example_sentence_native": "El barco ya ha zarpado del puerto.", + "example_sentence_english": "The ship has already left the port.", + "pos": "adjective", + "word_frequency": 20513 + }, + { + "word": "zoologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zoology", + "example_sentence_native": "Estudió zoología en la universidad.", + "example_sentence_english": "He studied zoology at the university.", + "pos": "noun", + "word_frequency": 20515 + }, + { + "word": "abolido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abolished", + "example_sentence_native": "La antigua ley fue finalmente abolida el año pasado.", + "example_sentence_english": "The old law was finally abolished last year.", + "pos": "adjective", + "word_frequency": 20521 + }, + { + "word": "abreviatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abbreviation", + "example_sentence_native": "La abreviatura de 'doctor' es 'Dr.'.", + "example_sentence_english": "The abbreviation for 'doctor' is 'Dr.'.", + "pos": "noun", + "word_frequency": 20522 + }, + { + "word": "aglomeracion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agglomeration", + "example_sentence_native": "Había una gran aglomeración de personas en la entrada del concierto.", + "example_sentence_english": "There was a large agglomeration of people at the concert entrance.", + "pos": "noun", + "word_frequency": 20525 + }, + { + "word": "aleatoriamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "randomly", + "example_sentence_native": "Los números fueron seleccionados aleatoriamente por el sistema.", + "example_sentence_english": "The numbers were selected randomly by the system.", + "pos": "adverb", + "word_frequency": 20526 + }, + { + "word": "alfareria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pottery", + "example_sentence_native": "Visitamos un taller de alfarería tradicional en el pueblo.", + "example_sentence_english": "We visited a traditional pottery workshop in the village.", + "pos": "noun", + "word_frequency": 20527 + }, + { + "word": "alita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little wing", + "example_sentence_native": "Pedimos unas alitas de pollo picantes para compartir.", + "example_sentence_english": "We ordered some spicy chicken wings to share.", + "pos": "noun", + "word_frequency": 20528 + }, + { + "word": "altruismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "altruism", + "example_sentence_native": "Su acto de puro altruismo conmovió a todos los presentes.", + "example_sentence_english": "His act of pure altruism moved everyone present.", + "pos": "noun", + "word_frequency": 20529 + }, + { + "word": "amputacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amputation", + "example_sentence_native": "La amputación de la pierna fue necesaria debido a la infección.", + "example_sentence_english": "The amputation of the leg was necessary due to the infection.", + "pos": "noun", + "word_frequency": 20530 + }, + { + "word": "apenar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grieve", + "example_sentence_native": "Me apena mucho verla tan triste.", + "example_sentence_english": "It grieves me greatly to see her so sad.", + "pos": "verb", + "word_frequency": 20531 + }, + { + "word": "aplastado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crushed", + "example_sentence_native": "El coche quedó completamente aplastado después del accidente.", + "example_sentence_english": "The car was completely crushed after the accident.", + "pos": "adjective", + "word_frequency": 20532 + }, + { + "word": "apoco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little by little", + "example_sentence_native": "Apoco a poco, la situación empezó a mejorar.", + "example_sentence_english": "Little by little, the situation began to improve.", + "pos": "adverb", + "word_frequency": 20533 + }, + { + "word": "apresuradamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurriedly", + "example_sentence_native": "Salió apresuradamente de la casa para no perder el autobús.", + "example_sentence_english": "He left the house hurriedly so as not to miss the bus.", + "pos": "adverb", + "word_frequency": 20534 + }, + { + "word": "apriete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tightening", + "example_sentence_native": "Necesita un apriete de los tornillos para que no se suelte.", + "example_sentence_english": "It needs a tightening of the screws so it doesn't come loose.", + "pos": "noun", + "word_frequency": 20535 + }, + { + "word": "apuntado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pointed", + "example_sentence_native": "El lápiz estaba bien apuntado y listo para escribir.", + "example_sentence_english": "The pencil was well pointed and ready to write.", + "pos": "adjective", + "word_frequency": 20536 + }, + { + "word": "armonioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmonious", + "example_sentence_native": "Su relación es muy armoniosa y llena de respeto mutuo.", + "example_sentence_english": "Their relationship is very harmonious and full of mutual respect.", + "pos": "adjective", + "word_frequency": 20537 + }, + { + "word": "artillero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artilleryman", + "example_sentence_native": "El artillero ajustó la mira antes de disparar.", + "example_sentence_english": "The artilleryman adjusted the sight before firing.", + "pos": "noun", + "word_frequency": 20539 + }, + { + "word": "aseguramiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assurance", + "example_sentence_native": "El aseguramiento de la calidad es fundamental en la producción.", + "example_sentence_english": "Quality assurance is fundamental in production.", + "pos": "noun", + "word_frequency": 20540 + }, + { + "word": "asimilado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assimilated", + "example_sentence_native": "Los nuevos conocimientos fueron asimilados rápidamente por los estudiantes.", + "example_sentence_english": "The new knowledge was quickly assimilated by the students.", + "pos": "adjective", + "word_frequency": 20541 + }, + { + "word": "atasco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic jam", + "example_sentence_native": "Llegué tarde al trabajo por un atasco en la autopista.", + "example_sentence_english": "I was late for work due to a traffic jam on the highway.", + "pos": "noun", + "word_frequency": 20542 + }, + { + "word": "autenticacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authentication", + "example_sentence_native": "La autenticación de usuario es un paso clave en la seguridad informática.", + "example_sentence_english": "User authentication is a key step in computer security.", + "pos": "noun", + "word_frequency": 20543 + }, + { + "word": "averiguacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigation", + "example_sentence_native": "Se ha iniciado una averiguación interna sobre el incidente.", + "example_sentence_english": "An internal investigation into the incident has been initiated.", + "pos": "noun", + "word_frequency": 20544 + }, + { + "word": "averiguado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascertained", + "example_sentence_native": "El motivo del retraso fue averiguado después de varias llamadas.", + "example_sentence_english": "The reason for the delay was ascertained after several calls.", + "pos": "adjective", + "word_frequency": 20545 + }, + { + "word": "ayudado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helped", + "example_sentence_native": "Se sintió muy ayudado por el apoyo de su familia.", + "example_sentence_english": "He felt very helped by his family's support.", + "pos": "adjective", + "word_frequency": 20546 + }, + { + "word": "barandilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handrail", + "example_sentence_native": "Agárrate a la barandilla para no caerte por las escaleras.", + "example_sentence_english": "Hold onto the handrail so you don't fall down the stairs.", + "pos": "noun", + "word_frequency": 20548 + }, + { + "word": "barcelonés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Barcelonian", + "example_sentence_native": "Es un artista barcelonés muy reconocido en el mundo del arte.", + "example_sentence_english": "He is a Barcelonian artist very recognized in the art world.", + "pos": "adjective", + "word_frequency": 20549 + }, + { + "word": "barral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barrel", + "example_sentence_native": "El vino se añeja en grandes barrales de roble.", + "example_sentence_english": "The wine ages in large oak barrels.", + "pos": "noun", + "word_frequency": 20550 + }, + { + "word": "beata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pious woman", + "example_sentence_native": "La beata rezaba el rosario todos los días en la iglesia.", + "example_sentence_english": "The pious woman prayed the rosary every day in church.", + "pos": "noun", + "word_frequency": 20551 + }, + { + "word": "bendicion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blessing", + "example_sentence_native": "Recibió la bendición de sus abuelos antes de viajar.", + "example_sentence_english": "He received his grandparents' blessing before traveling.", + "pos": "noun", + "word_frequency": 20553 + }, + { + "word": "boquita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little mouth", + "example_sentence_native": "El bebé abrió su boquita para recibir la papilla.", + "example_sentence_english": "The baby opened its little mouth to receive the baby food.", + "pos": "noun", + "word_frequency": 20555 + }, + { + "word": "bronquitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bronchitis", + "example_sentence_native": "El médico le diagnosticó bronquitis aguda y le recetó reposo.", + "example_sentence_english": "The doctor diagnosed him with acute bronchitis and prescribed rest.", + "pos": "noun", + "word_frequency": 20558 + }, + { + "word": "báltico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Baltic", + "example_sentence_native": "El mar Báltico es un mar interior del norte de Europa.", + "example_sentence_english": "The Baltic Sea is an inland sea in Northern Europe.", + "pos": "adjective", + "word_frequency": 20560 + }, + { + "word": "calera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lime kiln", + "example_sentence_native": "La antigua calera se ha convertido en un museo.", + "example_sentence_english": "The old lime kiln has been converted into a museum.", + "pos": "noun", + "word_frequency": 20561 + }, + { + "word": "caló", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Caló (Romani language)", + "example_sentence_native": "El caló es una lengua romaní hablada por los gitanos en España.", + "example_sentence_english": "Caló is a Romani language spoken by the Romani people in Spain.", + "pos": "noun", + "word_frequency": 20562 + }, + { + "word": "carbonero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coal miner", + "example_sentence_native": "Mi abuelo era carbonero y trabajaba en la mina.", + "example_sentence_english": "My grandfather was a coal miner and worked in the mine.", + "pos": "noun", + "word_frequency": 20563 + }, + { + "word": "caritativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charitable", + "example_sentence_native": "Es una persona muy caritativa que siempre ayuda a los demás.", + "example_sentence_english": "He is a very charitable person who always helps others.", + "pos": "adjective", + "word_frequency": 20564 + }, + { + "word": "catalogado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cataloged", + "example_sentence_native": "El libro está catalogado en la sección de historia.", + "example_sentence_english": "The book is cataloged in the history section.", + "pos": "adjective", + "word_frequency": 20566 + }, + { + "word": "catering", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catering", + "example_sentence_native": "Contratamos un servicio de catering para la fiesta.", + "example_sentence_english": "We hired a catering service for the party.", + "pos": "noun", + "word_frequency": 20567 + }, + { + "word": "cepo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trap", + "example_sentence_native": "El cazador puso un cepo para atrapar al animal.", + "example_sentence_english": "The hunter set a trap to catch the animal.", + "pos": "noun", + "word_frequency": 20568 + }, + { + "word": "champion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "champion", + "example_sentence_native": "El equipo se coronó campeón de la liga.", + "example_sentence_english": "The team was crowned champion of the league.", + "pos": "noun", + "word_frequency": 20569 + }, + { + "word": "chillar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scream", + "example_sentence_native": "No me gusta cuando los niños empiezan a chillar.", + "example_sentence_english": "I don't like it when the children start to scream.", + "pos": "verb", + "word_frequency": 20570 + }, + { + "word": "chocado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crashed", + "example_sentence_native": "El coche quedó chocado después del accidente.", + "example_sentence_english": "The car was crashed after the accident.", + "pos": "adjective", + "word_frequency": 20571 + }, + { + "word": "clínicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clinically", + "example_sentence_native": "El paciente está clínicamente estable.", + "example_sentence_english": "The patient is clinically stable.", + "pos": "adverb", + "word_frequency": 20575 + }, + { + "word": "computacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "computational", + "example_sentence_native": "La lingüística computacional es un campo fascinante.", + "example_sentence_english": "Computational linguistics is a fascinating field.", + "pos": "adjective", + "word_frequency": 20576 + }, + { + "word": "condensador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capacitor", + "example_sentence_native": "El condensador almacena energía eléctrica.", + "example_sentence_english": "The capacitor stores electrical energy.", + "pos": "noun", + "word_frequency": 20577 + }, + { + "word": "congruente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congruent", + "example_sentence_native": "Sus acciones no son congruentes con sus palabras.", + "example_sentence_english": "His actions are not congruent with his words.", + "pos": "adjective", + "word_frequency": 20578 + }, + { + "word": "congénito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congenital", + "example_sentence_native": "Tiene una enfermedad cardíaca congénita.", + "example_sentence_english": "He has a congenital heart disease.", + "pos": "adjective", + "word_frequency": 20579 + }, + { + "word": "converso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "converted (person)", + "example_sentence_native": "Era un judío converso al cristianismo.", + "example_sentence_english": "He was a Jew converted to Christianity.", + "pos": "adjective", + "word_frequency": 20580 + }, + { + "word": "crucifixion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucifixion", + "example_sentence_native": "La crucifixión es un método antiguo de ejecución.", + "example_sentence_english": "Crucifixion is an ancient method of execution.", + "pos": "noun", + "word_frequency": 20581 + }, + { + "word": "cuadrangular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrangular", + "example_sentence_native": "La torre tiene una base cuadrangular.", + "example_sentence_english": "The tower has a quadrangular base.", + "pos": "adjective", + "word_frequency": 20582 + }, + { + "word": "cui", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guinea pig", + "example_sentence_native": "En algunos países andinos, el cui es un animal de granja.", + "example_sentence_english": "In some Andean countries, the guinea pig is a farm animal.", + "pos": "noun", + "word_frequency": 20583 + }, + { + "word": "dactilar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "digital (finger-related)", + "example_sentence_native": "La huella dactilar es única para cada persona.", + "example_sentence_english": "The fingerprint is unique to each person.", + "pos": "adjective", + "word_frequency": 20585 + }, + { + "word": "declinacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "declension", + "example_sentence_native": "El latín tiene varias declinaciones.", + "example_sentence_english": "Latin has several declensions.", + "pos": "noun", + "word_frequency": 20587 + }, + { + "word": "denuevo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "again", + "example_sentence_native": "Empezaremos denuevo desde el principio.", + "example_sentence_english": "We will start again from the beginning.", + "pos": "adverb", + "word_frequency": 20589 + }, + { + "word": "descolonizacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decolonization", + "example_sentence_native": "La descolonización fue un proceso clave en el siglo XX.", + "example_sentence_english": "Decolonization was a key process in the 20th century.", + "pos": "noun", + "word_frequency": 20590 + }, + { + "word": "desinfeccion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinfection", + "example_sentence_native": "La desinfección de las manos es esencial.", + "example_sentence_english": "Hand disinfection is essential.", + "pos": "noun", + "word_frequency": 20591 + }, + { + "word": "despoblado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpopulated", + "example_sentence_native": "El pueblo quedó despoblado después de la sequía.", + "example_sentence_english": "The village became unpopulated after the drought.", + "pos": "adjective", + "word_frequency": 20592 + }, + { + "word": "detonacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detonation", + "example_sentence_native": "Se escuchó una fuerte detonación en la distancia.", + "example_sentence_english": "A loud detonation was heard in the distance.", + "pos": "noun", + "word_frequency": 20593 + }, + { + "word": "dibujado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawn", + "example_sentence_native": "El personaje está muy bien dibujado.", + "example_sentence_english": "The character is very well drawn.", + "pos": "adjective", + "word_frequency": 20594 + }, + { + "word": "diligente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligent", + "example_sentence_native": "Es un estudiante muy diligente y siempre entrega sus tareas a tiempo.", + "example_sentence_english": "He is a very diligent student and always hands in his assignments on time.", + "pos": "adjective", + "word_frequency": 20595 + }, + { + "word": "duplicado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duplicated", + "example_sentence_native": "Necesito una copia duplicada de este documento.", + "example_sentence_english": "I need a duplicate copy of this document.", + "pos": "adjective", + "word_frequency": 20597 + }, + { + "word": "déspota", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despot", + "example_sentence_native": "El rey era un déspota que gobernaba con mano de hierro.", + "example_sentence_english": "The king was a despot who ruled with an iron fist.", + "pos": "noun", + "word_frequency": 20599 + }, + { + "word": "encarecidamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "earnestly", + "example_sentence_native": "Le ruego encarecidamente que considere mi propuesta.", + "example_sentence_english": "I earnestly beg you to consider my proposal.", + "pos": "adverb", + "word_frequency": 20601 + }, + { + "word": "encia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gum (of the mouth)", + "example_sentence_native": "Me sangran las encías cuando me cepillo los dientes.", + "example_sentence_english": "My gums bleed when I brush my teeth.", + "pos": "noun", + "word_frequency": 20602 + }, + { + "word": "enmedio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the middle", + "example_sentence_native": "El árbol estaba enmedio del campo.", + "example_sentence_english": "The tree was in the middle of the field.", + "pos": "adverb", + "word_frequency": 20603 + }, + { + "word": "esbirro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "henchman", + "example_sentence_native": "El villano tenía un ejército de esbirros.", + "example_sentence_english": "The villain had an army of henchmen.", + "pos": "noun", + "word_frequency": 20605 + }, + { + "word": "espárrago", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asparagus", + "example_sentence_native": "Me encantan los espárragos a la parrilla.", + "example_sentence_english": "I love grilled asparagus.", + "pos": "noun", + "word_frequency": 20606 + }, + { + "word": "estres", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stress", + "example_sentence_native": "El trabajo le causa mucho estrés.", + "example_sentence_english": "The job causes him a lot of stress.", + "pos": "noun", + "word_frequency": 20607 + }, + { + "word": "eternal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternal", + "example_sentence_native": "Prometió amor eterno.", + "example_sentence_english": "He promised eternal love.", + "pos": "adjective", + "word_frequency": 20608 + }, + { + "word": "expropiar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to expropriate", + "example_sentence_native": "El gobierno decidió expropiar las tierras para construir una carretera.", + "example_sentence_english": "The government decided to expropriate the land to build a road.", + "pos": "verb", + "word_frequency": 20609 + }, + { + "word": "fisioterapia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physiotherapy", + "example_sentence_native": "Necesito fisioterapia para mi rodilla.", + "example_sentence_english": "I need physiotherapy for my knee.", + "pos": "noun", + "word_frequency": 20614 + }, + { + "word": "formador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trainer", + "example_sentence_native": "Él es un formador de nuevos empleados.", + "example_sentence_english": "He is a trainer for new employees.", + "pos": "noun", + "word_frequency": 20615 + }, + { + "word": "fusionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to merge", + "example_sentence_native": "Las dos empresas van a fusionarse.", + "example_sentence_english": "The two companies are going to merge.", + "pos": "verb", + "word_frequency": 20618 + }, + { + "word": "fosforo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "match (for lighting)", + "example_sentence_native": "Necesito un fósforo para encender la vela.", + "example_sentence_english": "I need a match to light the candle.", + "pos": "noun", + "word_frequency": 20619 + }, + { + "word": "gordita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chubby girl;gordita (food)", + "example_sentence_native": "Mi abuela me llama 'gordita' con cariño.", + "example_sentence_english": "My grandmother calls me 'chubby' affectionately.", + "pos": "noun", + "word_frequency": 20621 + }, + { + "word": "gratamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasantly", + "example_sentence_native": "Me sorprendió gratamente su visita.", + "example_sentence_english": "His visit pleasantly surprised me.", + "pos": "adverb", + "word_frequency": 20623 + }, + { + "word": "grilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cricket (insect);grid", + "example_sentence_native": "Escuché una grilla cantar en el jardín.", + "example_sentence_english": "I heard a cricket singing in the garden.", + "pos": "noun", + "word_frequency": 20625 + }, + { + "word": "guacho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orphan (Argentina;Chile);guy (colloquial)", + "example_sentence_native": "Ese guacho siempre está metiéndose en problemas.", + "example_sentence_english": "That guy is always getting into trouble.", + "pos": "noun", + "word_frequency": 20627 + }, + { + "word": "guarra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dirty woman;slut (offensive)", + "example_sentence_native": "No seas tan guarra, limpia tu habitación.", + "example_sentence_english": "Don't be so messy, clean your room.", + "pos": "noun", + "word_frequency": 20628 + }, + { + "word": "hiena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hyena", + "example_sentence_native": "La hiena es conocida por su risa.", + "example_sentence_english": "The hyena is known for its laugh.", + "pos": "noun", + "word_frequency": 20632 + }, + { + "word": "higado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liver", + "example_sentence_native": "El hígado es un órgano importante.", + "example_sentence_english": "The liver is an important organ.", + "pos": "noun", + "word_frequency": 20633 + }, + { + "word": "hispanohablante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Spanish speaker", + "example_sentence_native": "Ella es una hispanohablante nativa.", + "example_sentence_english": "She is a native Spanish speaker.", + "pos": "noun", + "word_frequency": 20635 + }, + { + "word": "incautación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seizure;confiscation", + "example_sentence_native": "La policía realizó una incautación de drogas.", + "example_sentence_english": "The police carried out a drug seizure.", + "pos": "noun", + "word_frequency": 20637 + }, + { + "word": "incluído", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included", + "example_sentence_native": "El desayuno está incluido en el precio.", + "example_sentence_english": "Breakfast is included in the price.", + "pos": "adjective", + "word_frequency": 20638 + }, + { + "word": "inconsciencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconsciousness;thoughtlessness", + "example_sentence_native": "Cayó en un estado de inconsciencia después del golpe.", + "example_sentence_english": "He fell into a state of unconsciousness after the blow.", + "pos": "noun", + "word_frequency": 20639 + }, + { + "word": "inflable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inflatable", + "example_sentence_native": "Compramos una piscina inflable para el verano.", + "example_sentence_english": "We bought an inflatable pool for the summer.", + "pos": "adjective", + "word_frequency": 20640 + }, + { + "word": "infundir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to instill;to infuse", + "example_sentence_native": "Es importante infundir valores positivos en los niños.", + "example_sentence_english": "It's important to instill positive values in children.", + "pos": "verb", + "word_frequency": 20641 + }, + { + "word": "inmejorable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbeatable;unmatchable", + "example_sentence_native": "La vista desde aquí es inmejorable.", + "example_sentence_english": "The view from here is unbeatable.", + "pos": "adjective", + "word_frequency": 20642 + }, + { + "word": "insecticida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insecticide", + "example_sentence_native": "Necesitamos un buen insecticida para las plagas del jardín.", + "example_sentence_english": "We need a good insecticide for the garden pests.", + "pos": "noun", + "word_frequency": 20643 + }, + { + "word": "integrador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integrating;inclusive", + "example_sentence_native": "Su enfoque es muy integrador y considera todas las perspectivas.", + "example_sentence_english": "His approach is very integrating and considers all perspectives.", + "pos": "adjective", + "word_frequency": 20644 + }, + { + "word": "inteligentemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intelligently", + "example_sentence_native": "Actuó inteligentemente ante la situación difícil.", + "example_sentence_english": "He acted intelligently in the difficult situation.", + "pos": "adverb", + "word_frequency": 20645 + }, + { + "word": "inversamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inversely", + "example_sentence_native": "La presión es inversamente proporcional al volumen.", + "example_sentence_english": "Pressure is inversely proportional to volume.", + "pos": "adverb", + "word_frequency": 20646 + }, + { + "word": "invisibilidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invisibility", + "example_sentence_native": "Soñaba con el poder de la invisibilidad.", + "example_sentence_english": "He dreamed of the power of invisibility.", + "pos": "noun", + "word_frequency": 20647 + }, + { + "word": "islandés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Icelandic", + "example_sentence_native": "La cultura islandesa es fascinante.", + "example_sentence_english": "Icelandic culture is fascinating.", + "pos": "adjective", + "word_frequency": 20648 + }, + { + "word": "jalea", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jelly;jam", + "example_sentence_native": "Me gusta la tostada con jalea de fresa.", + "example_sentence_english": "I like toast with strawberry jelly.", + "pos": "noun", + "word_frequency": 20651 + }, + { + "word": "juntamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jointly;together", + "example_sentence_native": "Trabajarán juntamente en el proyecto.", + "example_sentence_english": "They will work jointly on the project.", + "pos": "adverb", + "word_frequency": 20656 + }, + { + "word": "laborable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working (day);business (day)", + "example_sentence_native": "El lunes es un día laborable.", + "example_sentence_english": "Monday is a working day.", + "pos": "adjective", + "word_frequency": 20662 + }, + { + "word": "labranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tillage;cultivation", + "example_sentence_native": "La labranza de la tierra es esencial para la agricultura.", + "example_sentence_english": "Tillage of the land is essential for agriculture.", + "pos": "noun", + "word_frequency": 20663 + }, + { + "word": "laicismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laicism;secularism", + "example_sentence_native": "El laicismo defiende la separación entre Iglesia y Estado.", + "example_sentence_english": "Laicism advocates for the separation between Church and State.", + "pos": "noun", + "word_frequency": 20664 + }, + { + "word": "lastra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ballast;burden;slab", + "example_sentence_native": "La deuda es una lastra para la economía.", + "example_sentence_english": "Debt is a burden on the economy.", + "pos": "noun", + "word_frequency": 20668 + }, + { + "word": "lechuza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owl (barn owl type)", + "example_sentence_native": "Una lechuza voló sobre el campo al anochecer.", + "example_sentence_english": "An owl flew over the field at dusk.", + "pos": "noun", + "word_frequency": 20669 + }, + { + "word": "legible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legible", + "example_sentence_native": "Su letra es muy legible.", + "example_sentence_english": "His handwriting is very legible.", + "pos": "adjective", + "word_frequency": 20670 + }, + { + "word": "limitante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limiting;restrictive", + "example_sentence_native": "Esa regla es muy limitante para la creatividad.", + "example_sentence_english": "That rule is very limiting for creativity.", + "pos": "adjective", + "word_frequency": 20671 + }, + { + "word": "locamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "madly;crazily", + "example_sentence_native": "Se enamoró locamente de ella.", + "example_sentence_english": "He fell madly in love with her.", + "pos": "adverb", + "word_frequency": 20672 + }, + { + "word": "lapida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tombstone;gravestone", + "example_sentence_native": "La lápida tenía una inscripción antigua.", + "example_sentence_english": "The tombstone had an ancient inscription.", + "pos": "noun", + "word_frequency": 20675 + }, + { + "word": "malagueño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Malaga;Malagan", + "example_sentence_native": "Es un vino malagueño muy famoso.", + "example_sentence_english": "It's a very famous Malagan wine.", + "pos": "adjective", + "word_frequency": 20678 + }, + { + "word": "maleante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquent;evildoer;thug", + "example_sentence_native": "La policía detuvo a un grupo de maleantes.", + "example_sentence_english": "The police arrested a group of delinquents.", + "pos": "noun", + "word_frequency": 20679 + }, + { + "word": "malformacion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malformation", + "example_sentence_native": "La ecografía reveló una malformación congénita.", + "example_sentence_english": "The ultrasound revealed a congenital malformation.", + "pos": "noun", + "word_frequency": 20680 + }, + { + "word": "mamposteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masonry", + "example_sentence_native": "La mampostería de la antigua iglesia era impresionante.", + "example_sentence_english": "The masonry of the old church was impressive.", + "pos": "noun", + "word_frequency": 20681 + }, + { + "word": "matute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contraband;smuggling", + "example_sentence_native": "La policía incautó un cargamento de matute en la frontera.", + "example_sentence_english": "The police seized a shipment of contraband at the border.", + "pos": "noun", + "word_frequency": 20684 + }, + { + "word": "menopausia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "menopause", + "example_sentence_native": "La menopausia es una etapa natural en la vida de la mujer.", + "example_sentence_english": "Menopause is a natural stage in a woman's life.", + "pos": "noun", + "word_frequency": 20686 + }, + { + "word": "mercaderia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merchandise;goods", + "example_sentence_native": "La tienda recibió un nuevo cargamento de mercadería.", + "example_sentence_english": "The store received a new shipment of merchandise.", + "pos": "noun", + "word_frequency": 20687 + }, + { + "word": "meson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inn;tavern", + "example_sentence_native": "Cenamos en un antiguo mesón con mucha historia.", + "example_sentence_english": "We had dinner in an old inn with a lot of history.", + "pos": "noun", + "word_frequency": 20689 + }, + { + "word": "mitra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mitre", + "example_sentence_native": "El obispo llevaba una mitra ceremonial.", + "example_sentence_english": "The bishop wore a ceremonial mitre.", + "pos": "noun", + "word_frequency": 20691 + }, + { + "word": "monografia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monograph", + "example_sentence_native": "Presentó una monografía detallada sobre el tema.", + "example_sentence_english": "He presented a detailed monograph on the subject.", + "pos": "noun", + "word_frequency": 20692 + }, + { + "word": "neurosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurosis", + "example_sentence_native": "La neurosis puede manifestarse de diversas formas.", + "example_sentence_english": "Neurosis can manifest in various ways.", + "pos": "noun", + "word_frequency": 20700 + }, + { + "word": "nodriza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wet nurse;nursemaid;mother ship", + "example_sentence_native": "En el pasado, muchas familias contrataban una nodriza.", + "example_sentence_english": "In the past, many families hired a wet nurse.", + "pos": "noun", + "word_frequency": 20702 + }, + { + "word": "obscuro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark;obscure", + "example_sentence_native": "La habitación estaba muy obscura sin luz.", + "example_sentence_english": "The room was very dark without light.", + "pos": "adjective", + "word_frequency": 20703 + }, + { + "word": "opa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "takeover bid", + "example_sentence_native": "La empresa lanzó una OPA hostil para adquirir la compañía rival.", + "example_sentence_english": "The company launched a hostile takeover bid to acquire the rival company.", + "pos": "noun", + "word_frequency": 20705 + }, + { + "word": "originado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originated;caused;derived", + "example_sentence_native": "El problema originado por la lluvia causó inundaciones.", + "example_sentence_english": "The problem originated by the rain caused floods.", + "pos": "adjective", + "word_frequency": 20706 + }, + { + "word": "padel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "padel (tennis-like sport)", + "example_sentence_native": "Jugar al pádel se ha vuelto muy popular.", + "example_sentence_english": "Playing padel has become very popular.", + "pos": "noun", + "word_frequency": 20710 + }, + { + "word": "parafrasear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to paraphrase", + "example_sentence_native": "Debes parafrasear la información en tus propias palabras.", + "example_sentence_english": "You must paraphrase the information in your own words.", + "pos": "verb", + "word_frequency": 20712 + }, + { + "word": "percha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hanger;perch", + "example_sentence_native": "Cuelga tu abrigo en la percha.", + "example_sentence_english": "Hang your coat on the hanger.", + "pos": "noun", + "word_frequency": 20713 + }, + { + "word": "peritaje", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expert appraisal;expert report", + "example_sentence_native": "El peritaje técnico confirmó la causa del accidente.", + "example_sentence_english": "The technical expert appraisal confirmed the cause of the accident.", + "pos": "noun", + "word_frequency": 20714 + }, + { + "word": "peto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bib;breastplate;overalls", + "example_sentence_native": "Los niños llevaban petos para jugar en el parque.", + "example_sentence_english": "The children wore overalls to play in the park.", + "pos": "noun", + "word_frequency": 20715 + }, + { + "word": "petroquímica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "petrochemicals;petrochemical industry", + "example_sentence_native": "La industria petroquímica es vital para la economía.", + "example_sentence_english": "The petrochemical industry is vital for the economy.", + "pos": "noun", + "word_frequency": 20716 + }, + { + "word": "poblar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to populate;to settle", + "example_sentence_native": "Los colonos comenzaron a poblar nuevas tierras.", + "example_sentence_english": "The settlers began to populate new lands.", + "pos": "verb", + "word_frequency": 20717 + }, + { + "word": "pocho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(derogatory) Mexican-American who has lost touch with Mexican culture;faded;discolored", + "example_sentence_native": "Algunos usan la palabra 'pocho' para describir a los mexicoamericanos asimilados.", + "example_sentence_english": "Some use the word 'pocho' to describe assimilated Mexican-Americans.", + "pos": "noun", + "word_frequency": 20718 + }, + { + "word": "precipitar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to precipitate;to rush;to hasten", + "example_sentence_native": "No debemos precipitar una decisión tan importante.", + "example_sentence_english": "We should not rush such an important decision.", + "pos": "verb", + "word_frequency": 20719 + }, + { + "word": "puchero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stew;pot", + "example_sentence_native": "Mi abuela prepara un delicioso puchero los domingos.", + "example_sentence_english": "My grandmother prepares a delicious stew on Sundays.", + "pos": "noun", + "word_frequency": 20720 + }, + { + "word": "quincenal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortnightly;bi-weekly", + "example_sentence_native": "Recibimos nuestro salario de forma quincenal.", + "example_sentence_english": "We receive our salary fortnightly.", + "pos": "adjective", + "word_frequency": 20722 + }, + { + "word": "quiniento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "five hundred", + "example_sentence_native": "Compramos quinientos gramos de café.", + "example_sentence_english": "We bought five hundred grams of coffee.", + "pos": "adjective", + "word_frequency": 20723 + }, + { + "word": "radiografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "X-ray;radiograph", + "example_sentence_native": "El médico pidió una radiografía de mi rodilla.", + "example_sentence_english": "The doctor ordered an X-ray of my knee.", + "pos": "noun", + "word_frequency": 20724 + }, + { + "word": "radioterapia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiotherapy", + "example_sentence_native": "La radioterapia es un tratamiento común para el cáncer.", + "example_sentence_english": "Radiotherapy is a common treatment for cancer.", + "pos": "noun", + "word_frequency": 20725 + }, + { + "word": "rapidito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quickly;very quickly (informal)", + "example_sentence_native": "Hazlo rapidito, por favor.", + "example_sentence_english": "Do it quickly, please.", + "pos": "adverb", + "word_frequency": 20727 + }, + { + "word": "recaudo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection;precaution", + "example_sentence_native": "Se encargó del recaudo de fondos para la causa.", + "example_sentence_english": "He was in charge of the collection of funds for the cause.", + "pos": "noun", + "word_frequency": 20728 + }, + { + "word": "redondeado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rounded", + "example_sentence_native": "La mesa tiene las esquinas redondeadas.", + "example_sentence_english": "The table has rounded corners.", + "pos": "adjective", + "word_frequency": 20729 + }, + { + "word": "reflujo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflux;backflow", + "example_sentence_native": "Sufre de reflujo gástrico por las noches.", + "example_sentence_english": "He suffers from gastric reflux at night.", + "pos": "noun", + "word_frequency": 20730 + }, + { + "word": "regulatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regulatory", + "example_sentence_native": "Las nuevas medidas regulatorias afectarán a la industria.", + "example_sentence_english": "The new regulatory measures will affect the industry.", + "pos": "adjective", + "word_frequency": 20731 + }, + { + "word": "reincorporación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reincorporation;reinstatement", + "example_sentence_native": "Su reincorporación al equipo fue bien recibida.", + "example_sentence_english": "His reincorporation into the team was well received.", + "pos": "noun", + "word_frequency": 20732 + }, + { + "word": "reintegro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refund;reimbursement", + "example_sentence_native": "Solicité el reintegro del dinero de la entrada.", + "example_sentence_english": "I requested a refund for the ticket money.", + "pos": "noun", + "word_frequency": 20733 + }, + { + "word": "renegado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renegade;apostate", + "example_sentence_native": "Fue considerado un renegado por su antigua comunidad.", + "example_sentence_english": "He was considered a renegade by his former community.", + "pos": "adjective", + "word_frequency": 20734 + }, + { + "word": "repelente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repellent;repulsive", + "example_sentence_native": "Usamos un spray repelente para los mosquitos.", + "example_sentence_english": "We used a repellent spray for mosquitoes.", + "pos": "adjective", + "word_frequency": 20735 + }, + { + "word": "replantear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rethink;to reformulate", + "example_sentence_native": "Necesitamos replantear nuestra estrategia.", + "example_sentence_english": "We need to rethink our strategy.", + "pos": "verb", + "word_frequency": 20736 + }, + { + "word": "representacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "representation;performance", + "example_sentence_native": "La representación teatral fue excelente.", + "example_sentence_english": "The theatrical performance was excellent.", + "pos": "noun", + "word_frequency": 20737 + }, + { + "word": "repudiar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repudiate;to reject", + "example_sentence_native": "La sociedad debe repudiar cualquier forma de discriminación.", + "example_sentence_english": "Society must repudiate any form of discrimination.", + "pos": "verb", + "word_frequency": 20738 + }, + { + "word": "resplandeciente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resplendent;shining", + "example_sentence_native": "El sol estaba resplandeciente en el cielo azul.", + "example_sentence_english": "The sun was resplendent in the blue sky.", + "pos": "adjective", + "word_frequency": 20739 + }, + { + "word": "rotativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotating;rotary", + "example_sentence_native": "El sistema de turnos es rotativo.", + "example_sentence_english": "The shift system is rotating.", + "pos": "adjective", + "word_frequency": 20741 + }, + { + "word": "sanguinario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bloodthirsty;sanguinary", + "example_sentence_native": "La película mostraba escenas de un dictador sanguinario.", + "example_sentence_english": "The movie showed scenes of a bloodthirsty dictator.", + "pos": "adjective", + "word_frequency": 20742 + }, + { + "word": "segmentación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "segmentation", + "example_sentence_native": "La segmentación del mercado es clave para el marketing.", + "example_sentence_english": "Market segmentation is key for marketing.", + "pos": "noun", + "word_frequency": 20746 + }, + { + "word": "sombrilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parasol;beach umbrella", + "example_sentence_native": "Llevamos una sombrilla a la playa para protegernos del sol.", + "example_sentence_english": "We took a parasol to the beach to protect ourselves from the sun.", + "pos": "noun", + "word_frequency": 20750 + }, + { + "word": "sorpresivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprising;unexpected", + "example_sentence_native": "Su renuncia fue un anuncio sorpresivo.", + "example_sentence_english": "His resignation was a surprising announcement.", + "pos": "adjective", + "word_frequency": 20751 + }, + { + "word": "subcontinente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subcontinent", + "example_sentence_native": "India es parte del subcontinente indio.", + "example_sentence_english": "India is part of the Indian subcontinent.", + "pos": "noun", + "word_frequency": 20755 + }, + { + "word": "subdivisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subdivision", + "example_sentence_native": "El terreno fue dividido en varias subdivisiones.", + "example_sentence_english": "The land was divided into several subdivisions.", + "pos": "noun", + "word_frequency": 20756 + }, + { + "word": "subsanar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rectify;to correct", + "example_sentence_native": "Debemos subsanar los errores antes de la fecha límite.", + "example_sentence_english": "We must rectify the errors before the deadline.", + "pos": "verb", + "word_frequency": 20757 + }, + { + "word": "sádico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sadistic", + "example_sentence_native": "Su comportamiento sádico asustó a todos.", + "example_sentence_english": "His sadistic behavior scared everyone.", + "pos": "adjective", + "word_frequency": 20759 + }, + { + "word": "tamarindo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tamarind", + "example_sentence_native": "Me encanta el agua de tamarindo.", + "example_sentence_english": "I love tamarind water.", + "pos": "noun", + "word_frequency": 20761 + }, + { + "word": "temido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feared;dreaded", + "example_sentence_native": "El lobo era un animal temido en el bosque.", + "example_sentence_english": "The wolf was a feared animal in the forest.", + "pos": "adjective", + "word_frequency": 20762 + }, + { + "word": "terrorífico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrifying;horrific", + "example_sentence_native": "La película de terror fue terrorífica.", + "example_sentence_english": "The horror movie was terrifying.", + "pos": "adjective", + "word_frequency": 20765 + }, + { + "word": "tita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auntie (informal)", + "example_sentence_native": "Mi tita siempre me da caramelos.", + "example_sentence_english": "My auntie always gives me candies.", + "pos": "noun", + "word_frequency": 20769 + }, + { + "word": "tolerable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerable;bearable", + "example_sentence_native": "El calor era apenas tolerable.", + "example_sentence_english": "The heat was barely tolerable.", + "pos": "adjective", + "word_frequency": 20770 + }, + { + "word": "tolerado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerated;allowed", + "example_sentence_native": "Su comportamiento no será tolerado.", + "example_sentence_english": "His behavior will not be tolerated.", + "pos": "adjective", + "word_frequency": 20771 + }, + { + "word": "traficar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to traffic;to trade illegally", + "example_sentence_native": "La policía lo arrestó por traficar drogas.", + "example_sentence_english": "The police arrested him for trafficking drugs.", + "pos": "verb", + "word_frequency": 20774 + }, + { + "word": "tripartito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tripartite", + "example_sentence_native": "Se firmó un acuerdo tripartito entre los tres países.", + "example_sentence_english": "A tripartite agreement was signed between the three countries.", + "pos": "adjective", + "word_frequency": 20775 + }, + { + "word": "trote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trot;jog", + "example_sentence_native": "Salió a dar un trote por el parque.", + "example_sentence_english": "He went for a jog in the park.", + "pos": "noun", + "word_frequency": 20776 + }, + { + "word": "turbulento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbulent", + "example_sentence_native": "El avión pasó por una zona de aire turbulento.", + "example_sentence_english": "The plane went through a zone of turbulent air.", + "pos": "adjective", + "word_frequency": 20777 + }, + { + "word": "vacunado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaccinated", + "example_sentence_native": "Ya estoy vacunado contra la gripe.", + "example_sentence_english": "I am already vaccinated against the flu.", + "pos": "adjective", + "word_frequency": 20779 + }, + { + "word": "visualizacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visualization", + "example_sentence_native": "La visualización de datos es clave para entenderlos.", + "example_sentence_english": "Data visualization is key to understanding them.", + "pos": "noun", + "word_frequency": 20781 + }, + { + "word": "volteo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flip;turn;somersault", + "example_sentence_native": "El gimnasta hizo un volteo perfecto.", + "example_sentence_english": "The gymnast did a perfect somersault.", + "pos": "noun", + "word_frequency": 20784 + }, + { + "word": "wacho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kid;guy (colloquial;often derogatory or informal)", + "example_sentence_native": "Ese wacho siempre está metiéndose en problemas.", + "example_sentence_english": "That kid is always getting into trouble.", + "pos": "noun", + "word_frequency": 20785 + }, + { + "word": "acaecer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to happen;to occur", + "example_sentence_native": "Tales eventos suelen acaecer sin previo aviso.", + "example_sentence_english": "Such events usually happen without prior notice.", + "pos": "verb", + "word_frequency": 20794 + }, + { + "word": "acorralado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornered;trapped", + "example_sentence_native": "Se sintió acorralado por las preguntas.", + "example_sentence_english": "He felt cornered by the questions.", + "pos": "adjective", + "word_frequency": 20796 + }, + { + "word": "acotar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to limit;to define;to annotate", + "example_sentence_native": "Es importante acotar el alcance del estudio.", + "example_sentence_english": "It is important to limit the scope of the study.", + "pos": "verb", + "word_frequency": 20797 + }, + { + "word": "acusador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accusatory;accusing", + "example_sentence_native": "Su tono era acusador.", + "example_sentence_english": "His tone was accusatory.", + "pos": "adjective", + "word_frequency": 20798 + }, + { + "word": "acuífero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aquifer", + "example_sentence_native": "El acuífero es una fuente vital de agua.", + "example_sentence_english": "The aquifer is a vital source of water.", + "pos": "noun", + "word_frequency": 20799 + }, + { + "word": "angustiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distressed;anxious", + "example_sentence_native": "Se sentía muy angustiado por la noticia.", + "example_sentence_english": "He felt very distressed by the news.", + "pos": "adjective", + "word_frequency": 20804 + }, + { + "word": "antítesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antithesis", + "example_sentence_native": "Su comportamiento es la antítesis de lo que esperábamos.", + "example_sentence_english": "His behavior is the antithesis of what we expected.", + "pos": "noun", + "word_frequency": 20805 + }, + { + "word": "apocalíptico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apocalyptic", + "example_sentence_native": "La película tenía un tono apocalíptico.", + "example_sentence_english": "The movie had an apocalyptic tone.", + "pos": "adjective", + "word_frequency": 20806 + }, + { + "word": "apreciacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciation;assessment", + "example_sentence_native": "Su apreciación del arte es muy profunda.", + "example_sentence_english": "His appreciation of art is very profound.", + "pos": "noun", + "word_frequency": 20807 + }, + { + "word": "arnes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harness", + "example_sentence_native": "El escalador se puso el arnés de seguridad.", + "example_sentence_english": "The climber put on the safety harness.", + "pos": "noun", + "word_frequency": 20811 + }, + { + "word": "arrendatario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenant;lessee", + "example_sentence_native": "El arrendatario firmó el contrato de alquiler.", + "example_sentence_english": "The tenant signed the rental agreement.", + "pos": "noun", + "word_frequency": 20812 + }, + { + "word": "arrojo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "daring;bravery;boldness", + "example_sentence_native": "Actuó con gran arrojo frente al peligro.", + "example_sentence_english": "He acted with great daring in the face of danger.", + "pos": "noun", + "word_frequency": 20813 + }, + { + "word": "asiduo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assiduous;regular;frequent", + "example_sentence_native": "Es un cliente asiduo de este restaurante.", + "example_sentence_english": "He is a regular customer of this restaurant.", + "pos": "adjective", + "word_frequency": 20814 + }, + { + "word": "atener", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abide by;to stick to", + "example_sentence_native": "Debemos atenernos a las reglas establecidas.", + "example_sentence_english": "We must abide by the established rules.", + "pos": "verb", + "word_frequency": 20816 + }, + { + "word": "aterrorizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrified", + "example_sentence_native": "El niño estaba aterrorizado por la tormenta.", + "example_sentence_english": "The child was terrified by the storm.", + "pos": "adjective", + "word_frequency": 20817 + }, + { + "word": "automatizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to automate", + "example_sentence_native": "Necesitamos automatizar este proceso para ser más eficientes.", + "example_sentence_english": "We need to automate this process to be more efficient.", + "pos": "verb", + "word_frequency": 20820 + }, + { + "word": "avistamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sighting", + "example_sentence_native": "Hubo un avistamiento de ovnis anoche.", + "example_sentence_english": "There was a UFO sighting last night.", + "pos": "noun", + "word_frequency": 20821 + }, + { + "word": "azotado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whipped;scourged;battered", + "example_sentence_native": "La costa fue azotada por fuertes vientos.", + "example_sentence_english": "The coast was battered by strong winds.", + "pos": "adjective", + "word_frequency": 20823 + }, + { + "word": "besote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "big kiss;huge kiss", + "example_sentence_native": "Le dio un gran besote a su abuela.", + "example_sentence_english": "He gave a big kiss to his grandmother.", + "pos": "noun", + "word_frequency": 20826 + }, + { + "word": "bielorruso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Belarusian", + "example_sentence_native": "La capital bielorrusa es Minsk.", + "example_sentence_english": "The Belarusian capital is Minsk.", + "pos": "adjective", + "word_frequency": 20828 + }, + { + "word": "botánico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "botanical", + "example_sentence_native": "Visitamos el jardín botánico de la ciudad.", + "example_sentence_english": "We visited the city's botanical garden.", + "pos": "adjective", + "word_frequency": 20833 + }, + { + "word": "brocoli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broccoli", + "example_sentence_native": "El brócoli es una verdura muy saludable.", + "example_sentence_english": "Broccoli is a very healthy vegetable.", + "pos": "noun", + "word_frequency": 20837 + }, + { + "word": "cachondeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teasing;joking;fun", + "example_sentence_native": "Había mucho cachondeo en la fiesta.", + "example_sentence_english": "There was a lot of fun at the party.", + "pos": "noun", + "word_frequency": 20840 + }, + { + "word": "calmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calm", + "example_sentence_native": "El mar estaba calmo esta mañana.", + "example_sentence_english": "The sea was calm this morning.", + "pos": "adjective", + "word_frequency": 20841 + }, + { + "word": "camerino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressing room", + "example_sentence_native": "La actriz se preparó en su camerino.", + "example_sentence_english": "The actress got ready in her dressing room.", + "pos": "noun", + "word_frequency": 20842 + }, + { + "word": "carton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardboard", + "example_sentence_native": "Necesitamos una caja de cartón para el envío.", + "example_sentence_english": "We need a cardboard box for the shipment.", + "pos": "noun", + "word_frequency": 20843 + }, + { + "word": "caserio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hamlet;cluster of houses", + "example_sentence_native": "El caserío estaba escondido entre las montañas.", + "example_sentence_english": "The hamlet was hidden among the mountains.", + "pos": "noun", + "word_frequency": 20844 + }, + { + "word": "centroafricano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Central African", + "example_sentence_native": "La República Centroafricana es un país en África.", + "example_sentence_english": "The Central African Republic is a country in Africa.", + "pos": "adjective", + "word_frequency": 20846 + }, + { + "word": "charlatan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charlatan;quack", + "example_sentence_native": "El charlatán prometió curas milagrosas.", + "example_sentence_english": "The charlatan promised miraculous cures.", + "pos": "noun", + "word_frequency": 20849 + }, + { + "word": "ciclon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyclone", + "example_sentence_native": "El ciclón causó mucha destrucción.", + "example_sentence_english": "The cyclone caused a lot of destruction.", + "pos": "noun", + "word_frequency": 20853 + }, + { + "word": "combativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combative", + "example_sentence_native": "Era un orador muy combativo.", + "example_sentence_english": "He was a very combative speaker.", + "pos": "adjective", + "word_frequency": 20860 + }, + { + "word": "comite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "committee", + "example_sentence_native": "El comité se reunirá mañana.", + "example_sentence_english": "The committee will meet tomorrow.", + "pos": "noun", + "word_frequency": 20861 + }, + { + "word": "compinche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplice;crony", + "example_sentence_native": "Su compinche lo ayudó a escapar.", + "example_sentence_english": "His accomplice helped him escape.", + "pos": "noun", + "word_frequency": 20862 + }, + { + "word": "comunmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commonly", + "example_sentence_native": "Comunmente, la gente prefiere el café.", + "example_sentence_english": "Commonly, people prefer coffee.", + "pos": "adverb", + "word_frequency": 20864 + }, + { + "word": "condor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condor", + "example_sentence_native": "El cóndor andino es un ave majestuosa.", + "example_sentence_english": "The Andean condor is a majestic bird.", + "pos": "noun", + "word_frequency": 20865 + }, + { + "word": "conferencista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker;lecturer", + "example_sentence_native": "El conferencista dio una charla interesante.", + "example_sentence_english": "The speaker gave an interesting talk.", + "pos": "noun", + "word_frequency": 20866 + }, + { + "word": "conformismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conformism", + "example_sentence_native": "Su actitud de conformismo era frustrante.", + "example_sentence_english": "His attitude of conformism was frustrating.", + "pos": "noun", + "word_frequency": 20867 + }, + { + "word": "confrontacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confrontation", + "example_sentence_native": "La confrontación fue inevitable.", + "example_sentence_english": "The confrontation was inevitable.", + "pos": "noun", + "word_frequency": 20868 + }, + { + "word": "consistentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistently", + "example_sentence_native": "Trabaja consistentemente para alcanzar sus metas.", + "example_sentence_english": "He works consistently to achieve his goals.", + "pos": "adverb", + "word_frequency": 20869 + }, + { + "word": "consternación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consternation;dismay", + "example_sentence_native": "La noticia causó gran consternación.", + "example_sentence_english": "The news caused great consternation.", + "pos": "noun", + "word_frequency": 20870 + }, + { + "word": "constitutivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutive;constituent", + "example_sentence_native": "Este es un elemento constitutivo del acuerdo.", + "example_sentence_english": "This is a constitutive element of the agreement.", + "pos": "adjective", + "word_frequency": 20871 + }, + { + "word": "cortafuego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firewall;firebreak", + "example_sentence_native": "El cortafuegos protege la red de ataques.", + "example_sentence_english": "The firewall protects the network from attacks.", + "pos": "noun", + "word_frequency": 20872 + }, + { + "word": "cotidianamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily;on a daily basis", + "example_sentence_native": "Realiza estas tareas cotidianamente.", + "example_sentence_english": "He performs these tasks daily.", + "pos": "adverb", + "word_frequency": 20873 + }, + { + "word": "criminalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminalization", + "example_sentence_native": "La criminalización de ciertas conductas es un debate.", + "example_sentence_english": "The criminalization of certain behaviors is a debate.", + "pos": "noun", + "word_frequency": 20876 + }, + { + "word": "decenio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decade", + "example_sentence_native": "El último decenio ha traído muchos cambios.", + "example_sentence_english": "The last decade has brought many changes.", + "pos": "noun", + "word_frequency": 20881 + }, + { + "word": "deformacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deformation", + "example_sentence_native": "La deformación del metal fue causada por el calor.", + "example_sentence_english": "The deformation of the metal was caused by the heat.", + "pos": "noun", + "word_frequency": 20882 + }, + { + "word": "desavenencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disagreement", + "example_sentence_native": "Hubo una desavenencia entre los socios sobre la dirección del proyecto.", + "example_sentence_english": "There was a disagreement between the partners about the project's direction.", + "pos": "noun", + "word_frequency": 20883 + }, + { + "word": "diezmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tithe", + "example_sentence_native": "En la antigüedad, la gente pagaba el diezmo a la iglesia.", + "example_sentence_english": "In ancient times, people paid the tithe to the church.", + "pos": "noun", + "word_frequency": 20886 + }, + { + "word": "divulgado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disclosed", + "example_sentence_native": "La información fue ampliamente divulgada por los medios.", + "example_sentence_english": "The information was widely disclosed by the media.", + "pos": "adjective", + "word_frequency": 20888 + }, + { + "word": "dollar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dollar", + "example_sentence_native": "El precio es de diez dólares.", + "example_sentence_english": "The price is ten dollars.", + "pos": "noun", + "word_frequency": 20891 + }, + { + "word": "ecoturismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecotourism", + "example_sentence_native": "El ecoturismo es una forma de viajar responsable.", + "example_sentence_english": "Ecotourism is a responsible way to travel.", + "pos": "noun", + "word_frequency": 20895 + }, + { + "word": "electron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electron", + "example_sentence_native": "Un electrón es una partícula subatómica.", + "example_sentence_english": "An electron is a subatomic particle.", + "pos": "noun", + "word_frequency": 20899 + }, + { + "word": "emigrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emigrant", + "example_sentence_native": "Muchos emigrados regresan a su país de origen.", + "example_sentence_english": "Many emigrants return to their country of origin.", + "pos": "noun", + "word_frequency": 20900 + }, + { + "word": "emplazar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to summon", + "example_sentence_native": "El juez decidió emplazar a los testigos.", + "example_sentence_english": "The judge decided to summon the witnesses.", + "pos": "verb", + "word_frequency": 20902 + }, + { + "word": "enredar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tangle", + "example_sentence_native": "El gato se enredó en el hilo.", + "example_sentence_english": "The cat got tangled in the thread.", + "pos": "verb", + "word_frequency": 20904 + }, + { + "word": "equipación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kit", + "example_sentence_native": "El equipo estrenó una nueva equipación.", + "example_sentence_english": "The team debuted a new kit.", + "pos": "noun", + "word_frequency": 20905 + }, + { + "word": "equitación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horse riding", + "example_sentence_native": "Le encanta practicar la equitación los fines de semana.", + "example_sentence_english": "He loves practicing horse riding on weekends.", + "pos": "noun", + "word_frequency": 20906 + }, + { + "word": "erizo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hedgehog", + "example_sentence_native": "Vimos un erizo en el jardín anoche.", + "example_sentence_english": "We saw a hedgehog in the garden last night.", + "pos": "noun", + "word_frequency": 20907 + }, + { + "word": "escolarización", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "schooling", + "example_sentence_native": "La escolarización obligatoria comienza a los seis años.", + "example_sentence_english": "Compulsory schooling begins at six years old.", + "pos": "noun", + "word_frequency": 20909 + }, + { + "word": "esperanzador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hopeful", + "example_sentence_native": "Las noticias son esperanzadoras para el futuro.", + "example_sentence_english": "The news is hopeful for the future.", + "pos": "adjective", + "word_frequency": 20910 + }, + { + "word": "estabilizador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stabilizer", + "example_sentence_native": "El avión necesita un estabilizador para volar recto.", + "example_sentence_english": "The plane needs a stabilizer to fly straight.", + "pos": "noun", + "word_frequency": 20911 + }, + { + "word": "etiología", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "etiology", + "example_sentence_native": "La etiología de la enfermedad aún no se conoce.", + "example_sentence_english": "The etiology of the disease is not yet known.", + "pos": "noun", + "word_frequency": 20913 + }, + { + "word": "falangista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Falangist", + "example_sentence_native": "El falangista defendía una ideología nacionalista.", + "example_sentence_english": "The Falangist defended a nationalist ideology.", + "pos": "noun", + "word_frequency": 20915 + }, + { + "word": "fariseo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Pharisee", + "example_sentence_native": "Jesús criticó a los fariseos por su hipocresía.", + "example_sentence_english": "Jesus criticized the Pharisees for their hypocrisy.", + "pos": "noun", + "word_frequency": 20916 + }, + { + "word": "furgón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "van;wagon;freight car", + "example_sentence_native": "El furgón de reparto llegó tarde con el paquete.", + "example_sentence_english": "The delivery van arrived late with the package.", + "pos": "noun", + "word_frequency": 20922 + }, + { + "word": "gomera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slingshot", + "example_sentence_native": "El niño jugaba con su gomera en el campo.", + "example_sentence_english": "The boy was playing with his slingshot in the field.", + "pos": "noun", + "word_frequency": 20926 + }, + { + "word": "gratificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratification;bonus;tip", + "example_sentence_native": "Recibió una gratificación extra por su buen desempeño.", + "example_sentence_english": "He received an extra bonus for his good performance.", + "pos": "noun", + "word_frequency": 20928 + }, + { + "word": "gravamen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encumbrance;lien;tax", + "example_sentence_native": "La propiedad tiene un gravamen hipotecario.", + "example_sentence_english": "The property has a mortgage lien.", + "pos": "noun", + "word_frequency": 20929 + }, + { + "word": "heterogéneo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heterogeneous;diverse", + "example_sentence_native": "El grupo de estudiantes era muy heterogéneo en sus orígenes.", + "example_sentence_english": "The group of students was very heterogeneous in their origins.", + "pos": "adjective", + "word_frequency": 20937 + }, + { + "word": "hornear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bake", + "example_sentence_native": "Me gusta hornear pan casero los fines de semana.", + "example_sentence_english": "I like to bake homemade bread on weekends.", + "pos": "verb", + "word_frequency": 20941 + }, + { + "word": "ibuprofeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ibuprofen", + "example_sentence_native": "Tomé un ibuprofeno para aliviar el dolor de cabeza.", + "example_sentence_english": "I took an ibuprofen to relieve the headache.", + "pos": "noun", + "word_frequency": 20943 + }, + { + "word": "idolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idol", + "example_sentence_native": "Ese cantante es el ídolo de muchos adolescentes.", + "example_sentence_english": "That singer is the idol of many teenagers.", + "pos": "noun", + "word_frequency": 20944 + }, + { + "word": "imputar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to impute;to accuse;to charge", + "example_sentence_native": "La fiscalía decidió imputar cargos al sospechoso.", + "example_sentence_english": "The prosecution decided to impute charges to the suspect.", + "pos": "verb", + "word_frequency": 20945 + }, + { + "word": "inequidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inequity;unfairness", + "example_sentence_native": "La inequidad social es un problema global que debemos abordar.", + "example_sentence_english": "Social inequity is a global problem that we must address.", + "pos": "noun", + "word_frequency": 20948 + }, + { + "word": "inexperiencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexperience", + "example_sentence_native": "Su inexperiencia en el puesto le causó algunos errores.", + "example_sentence_english": "His inexperience in the position caused him some errors.", + "pos": "noun", + "word_frequency": 20949 + }, + { + "word": "ingrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ungrateful;thankless", + "example_sentence_native": "Fue un trabajo ingrato, pero alguien tenía que hacerlo.", + "example_sentence_english": "It was a thankless job, but someone had to do it.", + "pos": "adjective", + "word_frequency": 20950 + }, + { + "word": "inmadurez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immaturity", + "example_sentence_native": "Su inmadurez se refleja en sus decisiones impulsivas.", + "example_sentence_english": "His immaturity is reflected in his impulsive decisions.", + "pos": "noun", + "word_frequency": 20951 + }, + { + "word": "instituir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to institute;to establish", + "example_sentence_native": "Decidieron instituir un nuevo programa de becas.", + "example_sentence_english": "They decided to institute a new scholarship program.", + "pos": "verb", + "word_frequency": 20952 + }, + { + "word": "insufrible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbearable;insufferable", + "example_sentence_native": "El calor en el desierto es casi insufrible durante el día.", + "example_sentence_english": "The heat in the desert is almost unbearable during the day.", + "pos": "adjective", + "word_frequency": 20953 + }, + { + "word": "intimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intimate;close", + "example_sentence_native": "Son amigos íntimos desde la infancia.", + "example_sentence_english": "They have been intimate friends since childhood.", + "pos": "adjective", + "word_frequency": 20954 + }, + { + "word": "inusualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusually", + "example_sentence_native": "Hoy hace un frío inusualmente intenso para esta época del año.", + "example_sentence_english": "Today it is unusually cold for this time of year.", + "pos": "adverb", + "word_frequency": 20955 + }, + { + "word": "invaluable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invaluable;priceless", + "example_sentence_native": "Su experiencia fue invaluable para el éxito del proyecto.", + "example_sentence_english": "His experience was invaluable for the success of the project.", + "pos": "adjective", + "word_frequency": 20956 + }, + { + "word": "legionario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legionary", + "example_sentence_native": "El legionario marchó con su unidad.", + "example_sentence_english": "The legionary marched with his unit.", + "pos": "noun", + "word_frequency": 20962 + }, + { + "word": "linfoma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "lymphoma", + "example_sentence_native": "Le diagnosticaron linfoma en una etapa temprana.", + "example_sentence_english": "He was diagnosed with lymphoma at an early stage.", + "pos": "noun", + "word_frequency": 20963 + }, + { + "word": "lirio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lily", + "example_sentence_native": "El lirio blanco es una flor muy elegante.", + "example_sentence_english": "The white lily is a very elegant flower.", + "pos": "noun", + "word_frequency": 20964 + }, + { + "word": "logica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logic", + "example_sentence_native": "Su argumento carece de lógica.", + "example_sentence_english": "His argument lacks logic.", + "pos": "noun", + "word_frequency": 20965 + }, + { + "word": "lumbrera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "luminary;genius", + "example_sentence_native": "Es una verdadera lumbrera en el campo de la física.", + "example_sentence_english": "He is a true luminary in the field of physics.", + "pos": "noun", + "word_frequency": 20967 + }, + { + "word": "lumen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lumen (unit of light)", + "example_sentence_native": "La bombilla tiene una potencia de 800 lúmenes.", + "example_sentence_english": "The light bulb has a power of 800 lumens.", + "pos": "noun", + "word_frequency": 20968 + }, + { + "word": "mandala", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mandala", + "example_sentence_native": "Pintar un mandala puede ser una actividad relajante.", + "example_sentence_english": "Painting a mandala can be a relaxing activity.", + "pos": "noun", + "word_frequency": 20972 + }, + { + "word": "mejillón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mussel", + "example_sentence_native": "Pedimos una ración de mejillones al vapor.", + "example_sentence_english": "We ordered a serving of steamed mussels.", + "pos": "noun", + "word_frequency": 20974 + }, + { + "word": "memorando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorandum;memo", + "example_sentence_native": "El director envió un memorando a todo el personal.", + "example_sentence_english": "The director sent a memorandum to all staff.", + "pos": "noun", + "word_frequency": 20975 + }, + { + "word": "menstrual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "menstrual", + "example_sentence_native": "El ciclo menstrual es un proceso natural en las mujeres.", + "example_sentence_english": "The menstrual cycle is a natural process in women.", + "pos": "adjective", + "word_frequency": 20976 + }, + { + "word": "mercadillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flea market;street market", + "example_sentence_native": "Compré un libro antiguo en el mercadillo.", + "example_sentence_english": "I bought an old book at the flea market.", + "pos": "noun", + "word_frequency": 20977 + }, + { + "word": "mies", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harvest;crop", + "example_sentence_native": "La mies de trigo de este año fue abundante.", + "example_sentence_english": "This year's wheat harvest was abundant.", + "pos": "noun", + "word_frequency": 20980 + }, + { + "word": "mitigación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mitigation", + "example_sentence_native": "Se necesitan medidas de mitigación para el cambio climático.", + "example_sentence_english": "Mitigation measures are needed for climate change.", + "pos": "noun", + "word_frequency": 20982 + }, + { + "word": "moldear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mold;to shape", + "example_sentence_native": "El artista usó arcilla para moldear la figura.", + "example_sentence_english": "The artist used clay to mold the figure.", + "pos": "verb", + "word_frequency": 20984 + }, + { + "word": "mordaz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sarcastic;biting;caustic", + "example_sentence_native": "Su comentario mordaz hirió los sentimientos de todos.", + "example_sentence_english": "His biting comment hurt everyone's feelings.", + "pos": "adjective", + "word_frequency": 20985 + }, + { + "word": "morsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "walrus", + "example_sentence_native": "La morsa es un mamífero marino grande.", + "example_sentence_english": "The walrus is a large marine mammal.", + "pos": "noun", + "word_frequency": 20986 + }, + { + "word": "musicalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musically", + "example_sentence_native": "Es una persona muy talentosa musicalmente.", + "example_sentence_english": "He is a very talented person musically.", + "pos": "adverb", + "word_frequency": 20989 + }, + { + "word": "mutilado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutilated", + "example_sentence_native": "El documento fue encontrado mutilado y quemado.", + "example_sentence_english": "The document was found mutilated and burned.", + "pos": "adjective", + "word_frequency": 20991 + }, + { + "word": "mutis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "exit (stage direction);silence", + "example_sentence_native": "El actor hizo mutis por el foro.", + "example_sentence_english": "The actor exited through the back of the stage.", + "pos": "noun", + "word_frequency": 20992 + }, + { + "word": "notación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notation", + "example_sentence_native": "La notación musical es un lenguaje universal.", + "example_sentence_english": "Musical notation is a universal language.", + "pos": "noun", + "word_frequency": 20995 + }, + { + "word": "orbital", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orbital", + "example_sentence_native": "La estación espacial está en una órbita terrestre baja.", + "example_sentence_english": "The space station is in a low Earth orbital.", + "pos": "adjective", + "word_frequency": 20998 + }, + { + "word": "organigrama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organizational chart", + "example_sentence_native": "El organigrama muestra la estructura de la empresa.", + "example_sentence_english": "The organizational chart shows the company's structure.", + "pos": "noun", + "word_frequency": 20999 + }, + { + "word": "ornamentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ornamentation", + "example_sentence_native": "La ornamentación del edificio era muy elaborada.", + "example_sentence_english": "The ornamentation of the building was very elaborate.", + "pos": "noun", + "word_frequency": 21000 + }, + { + "word": "ovino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheep (as in;a sheep animal)", + "example_sentence_native": "La industria ovina es importante en esa región.", + "example_sentence_english": "The sheep industry is important in that region.", + "pos": "noun", + "word_frequency": 21001 + }, + { + "word": "paliativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palliative", + "example_sentence_native": "El medicamento solo ofrece un paliativo, no una cura.", + "example_sentence_english": "The medicine only offers a palliative, not a cure.", + "pos": "noun", + "word_frequency": 21002 + }, + { + "word": "panelista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panelist", + "example_sentence_native": "Los panelistas debatieron sobre el futuro de la economía.", + "example_sentence_english": "The panelists debated about the future of the economy.", + "pos": "noun", + "word_frequency": 21003 + }, + { + "word": "papelito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small piece of paper", + "example_sentence_native": "Escribió una nota en un papelito.", + "example_sentence_english": "He wrote a note on a small piece of paper.", + "pos": "noun", + "word_frequency": 21004 + }, + { + "word": "patilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sideburn", + "example_sentence_native": "Se dejó crecer las patillas.", + "example_sentence_english": "He grew his sideburns.", + "pos": "noun", + "word_frequency": 21005 + }, + { + "word": "pectoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pectoral (muscle)", + "example_sentence_native": "Hizo ejercicios para fortalecer sus pectorales.", + "example_sentence_english": "He did exercises to strengthen his pectorals.", + "pos": "noun", + "word_frequency": 21008 + }, + { + "word": "perdigón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pellet", + "example_sentence_native": "La escopeta dispara perdigones.", + "example_sentence_english": "The shotgun fires pellets.", + "pos": "noun", + "word_frequency": 21010 + }, + { + "word": "perrera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dog pound", + "example_sentence_native": "El perro fue llevado a la perrera.", + "example_sentence_english": "The dog was taken to the dog pound.", + "pos": "noun", + "word_frequency": 21011 + }, + { + "word": "pesebre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manger", + "example_sentence_native": "En Navidad, muchas familias arman un pesebre.", + "example_sentence_english": "At Christmas, many families set up a nativity scene.", + "pos": "noun", + "word_frequency": 21012 + }, + { + "word": "pichón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fledgling", + "example_sentence_native": "Un pichón cayó del nido.", + "example_sentence_english": "A fledgling fell from the nest.", + "pos": "noun", + "word_frequency": 21013 + }, + { + "word": "pirotecnia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyrotechnics", + "example_sentence_native": "El espectáculo de pirotecnia fue impresionante.", + "example_sentence_english": "The fireworks show was impressive.", + "pos": "noun", + "word_frequency": 21014 + }, + { + "word": "pisotear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trample", + "example_sentence_native": "No pises las flores del jardín.", + "example_sentence_english": "Don't trample the garden flowers.", + "pos": "verb", + "word_frequency": 21015 + }, + { + "word": "pistón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piston", + "example_sentence_native": "El motor necesita un pistón nuevo.", + "example_sentence_english": "The engine needs a new piston.", + "pos": "noun", + "word_frequency": 21016 + }, + { + "word": "plebeyo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commoner", + "example_sentence_native": "En la antigua Roma, los plebeyos tenían menos derechos.", + "example_sentence_english": "In ancient Rome, commoners had fewer rights.", + "pos": "noun", + "word_frequency": 21017 + }, + { + "word": "postergar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to postpone", + "example_sentence_native": "Tuvimos que postergar la reunión hasta la próxima semana.", + "example_sentence_english": "We had to postpone the meeting until next week.", + "pos": "verb", + "word_frequency": 21018 + }, + { + "word": "potrero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vacant lot (for playing soccer)", + "example_sentence_native": "Los niños jugaban al fútbol en el potrero.", + "example_sentence_english": "The children played soccer in the vacant lot.", + "pos": "noun", + "word_frequency": 21019 + }, + { + "word": "pozuelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small pit", + "example_sentence_native": "Había un pequeño pozuelo en el camino.", + "example_sentence_english": "There was a small pit on the road.", + "pos": "noun", + "word_frequency": 21020 + }, + { + "word": "prescribir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prescribe", + "example_sentence_native": "El médico le prescribió un nuevo medicamento.", + "example_sentence_english": "The doctor prescribed him a new medication.", + "pos": "verb", + "word_frequency": 21022 + }, + { + "word": "probado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proven", + "example_sentence_native": "Es un método probado para aprender idiomas.", + "example_sentence_english": "It's a proven method for learning languages.", + "pos": "adjective", + "word_frequency": 21025 + }, + { + "word": "prolijo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meticulous", + "example_sentence_native": "Siempre es muy prolijo con su trabajo.", + "example_sentence_english": "He is always very meticulous with his work.", + "pos": "adjective", + "word_frequency": 21027 + }, + { + "word": "propulsor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propeller", + "example_sentence_native": "El barco tiene un potente propulsor.", + "example_sentence_english": "The ship has a powerful propeller.", + "pos": "noun", + "word_frequency": 21028 + }, + { + "word": "prostíbulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brothel", + "example_sentence_native": "El prostíbulo fue cerrado por la policía.", + "example_sentence_english": "The brothel was closed by the police.", + "pos": "noun", + "word_frequency": 21029 + }, + { + "word": "pucho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cigarette butt (Latin America)", + "example_sentence_native": "Apagó el pucho en el cenicero.", + "example_sentence_english": "He put out the cigarette butt in the ashtray.", + "pos": "noun", + "word_frequency": 21030 + }, + { + "word": "pía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sow", + "example_sentence_native": "La pía dio a luz a diez lechones.", + "example_sentence_english": "The sow gave birth to ten piglets.", + "pos": "noun", + "word_frequency": 21033 + }, + { + "word": "realzar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enhance;highlight", + "example_sentence_native": "El nuevo diseño busca realzar la belleza del edificio.", + "example_sentence_english": "The new design seeks to enhance the beauty of the building.", + "pos": "verb", + "word_frequency": 21040 + }, + { + "word": "reflejadas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflected", + "example_sentence_native": "Sus emociones estaban claramente reflejadas en su rostro.", + "example_sentence_english": "Her emotions were clearly reflected in her face.", + "pos": "adjective", + "word_frequency": 21041 + }, + { + "word": "reincidencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recidivism;reoffending", + "example_sentence_native": "La reincidencia es un problema grave en el sistema penal.", + "example_sentence_english": "Recidivism is a serious problem in the penal system.", + "pos": "noun", + "word_frequency": 21042 + }, + { + "word": "releer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reread", + "example_sentence_native": "Necesito releer el capítulo para entenderlo mejor.", + "example_sentence_english": "I need to reread the chapter to understand it better.", + "pos": "verb", + "word_frequency": 21043 + }, + { + "word": "relevamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey;assessment", + "example_sentence_native": "Se realizó un relevamiento de las necesidades de la comunidad.", + "example_sentence_english": "A survey of the community's needs was carried out.", + "pos": "noun", + "word_frequency": 21044 + }, + { + "word": "rescisión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rescission;termination", + "example_sentence_native": "El contrato fue objeto de rescisión por incumplimiento.", + "example_sentence_english": "The contract was subject to rescission due to non-compliance.", + "pos": "noun", + "word_frequency": 21045 + }, + { + "word": "retrógrado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrograde;backward-looking", + "example_sentence_native": "Sus ideas políticas son consideradas retrógradas por muchos.", + "example_sentence_english": "His political ideas are considered retrograde by many.", + "pos": "adjective", + "word_frequency": 21046 + }, + { + "word": "rodillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roller", + "example_sentence_native": "Usó un rodillo para pintar la pared.", + "example_sentence_english": "He used a roller to paint the wall.", + "pos": "noun", + "word_frequency": 21048 + }, + { + "word": "semillero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seedbed;nursery (for talent)", + "example_sentence_native": "Este club es un semillero de jóvenes talentos futbolísticos.", + "example_sentence_english": "This club is a nursery for young football talents.", + "pos": "noun", + "word_frequency": 21059 + }, + { + "word": "sepia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cuttlefish;sepia (color)", + "example_sentence_native": "Pedimos calamares y sepia a la plancha.", + "example_sentence_english": "We ordered grilled squid and cuttlefish.", + "pos": "noun", + "word_frequency": 21060 + }, + { + "word": "silbido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whistle (sound)", + "example_sentence_native": "Escuchó un silbido agudo en la oscuridad.", + "example_sentence_english": "He heard a sharp whistle in the dark.", + "pos": "noun", + "word_frequency": 21061 + }, + { + "word": "subnormal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subnormal", + "example_sentence_native": "El término \"subnormal\" ya no se usa en el ámbito médico.", + "example_sentence_english": "The term \"subnormal\" is no longer used in the medical field.", + "pos": "adjective", + "word_frequency": 21066 + }, + { + "word": "sucumbir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "succumb;yield", + "example_sentence_native": "No debemos sucumbir a la presión.", + "example_sentence_english": "We must not succumb to pressure.", + "pos": "verb", + "word_frequency": 21068 + }, + { + "word": "susurrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whisper", + "example_sentence_native": "Ella le susurró un secreto al oído.", + "example_sentence_english": "She whispered a secret into his ear.", + "pos": "verb", + "word_frequency": 21069 + }, + { + "word": "tacho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bin;trash can (Latin America)", + "example_sentence_native": "Por favor, tira la basura en el tacho.", + "example_sentence_english": "Please throw the trash in the bin.", + "pos": "noun", + "word_frequency": 21070 + }, + { + "word": "taurino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullfighting-related;taurine", + "example_sentence_native": "La cultura taurina es muy arraigada en algunas regiones de España.", + "example_sentence_english": "Bullfighting culture is deeply rooted in some regions of Spain.", + "pos": "adjective", + "word_frequency": 21071 + }, + { + "word": "telaraña", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cobweb;spiderweb", + "example_sentence_native": "Había una telaraña grande en la esquina del techo.", + "example_sentence_english": "There was a large cobweb in the corner of the ceiling.", + "pos": "noun", + "word_frequency": 21072 + }, + { + "word": "tomillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thyme", + "example_sentence_native": "Añade un poco de tomillo fresco a la salsa.", + "example_sentence_english": "Add some fresh thyme to the sauce.", + "pos": "noun", + "word_frequency": 21075 + }, + { + "word": "transformado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transformed", + "example_sentence_native": "El paisaje se ha transformado completamente después de la lluvia.", + "example_sentence_english": "The landscape has completely transformed after the rain.", + "pos": "adjective", + "word_frequency": 21076 + }, + { + "word": "triunvirato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triumvirate", + "example_sentence_native": "El país fue gobernado por un triunvirato durante la transición.", + "example_sentence_english": "The country was governed by a triumvirate during the transition.", + "pos": "noun", + "word_frequency": 21077 + }, + { + "word": "troncal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "main;trunk (e.g.;road;line)", + "example_sentence_native": "La carretera troncal conecta las principales ciudades.", + "example_sentence_english": "The main road connects the major cities.", + "pos": "adjective", + "word_frequency": 21078 + }, + { + "word": "trágicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragically", + "example_sentence_native": "El accidente terminó trágicamente para la familia.", + "example_sentence_english": "The accident ended tragically for the family.", + "pos": "adverb", + "word_frequency": 21079 + }, + { + "word": "unipersonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one-person", + "example_sentence_native": "La empresa es una sociedad unipersonal.", + "example_sentence_english": "The company is a one-person company.", + "pos": "adjective", + "word_frequency": 21082 + }, + { + "word": "velado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veiled", + "example_sentence_native": "Su respuesta fue un poco velada, no muy clara.", + "example_sentence_english": "His answer was a bit veiled, not very clear.", + "pos": "adjective", + "word_frequency": 21083 + }, + { + "word": "venerar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to venerate", + "example_sentence_native": "Muchas culturas veneran a sus ancestros.", + "example_sentence_english": "Many cultures venerate their ancestors.", + "pos": "verb", + "word_frequency": 21084 + }, + { + "word": "vertiginoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vertiginous", + "example_sentence_native": "El ascenso fue vertiginoso, alcanzando la cima en poco tiempo.", + "example_sentence_english": "The ascent was vertiginous, reaching the summit in a short time.", + "pos": "adjective", + "word_frequency": 21085 + }, + { + "word": "vislumbrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to glimpse", + "example_sentence_native": "Pudimos vislumbrar el mar a lo lejos.", + "example_sentence_english": "We could glimpse the sea in the distance.", + "pos": "verb", + "word_frequency": 21086 + }, + { + "word": "vorágine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maelstrom", + "example_sentence_native": "Se vio envuelto en una vorágine de eventos.", + "example_sentence_english": "He was caught in a whirlwind of events.", + "pos": "noun", + "word_frequency": 21088 + }, + { + "word": "xenófobo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "xenophobic", + "example_sentence_native": "Sus comentarios revelaron una actitud xenófoba.", + "example_sentence_english": "His comments revealed a xenophobic attitude.", + "pos": "adjective", + "word_frequency": 21091 + }, + { + "word": "yunque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anvil", + "example_sentence_native": "El herrero golpeaba el metal sobre el yunque.", + "example_sentence_english": "The blacksmith struck the metal on the anvil.", + "pos": "noun", + "word_frequency": 21093 + }, + { + "word": "zeppelin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zeppelin", + "example_sentence_native": "Los zeppelines fueron dirigibles rígidos usados en el siglo XX.", + "example_sentence_english": "Zeppelins were rigid airships used in the 20th century.", + "pos": "noun", + "word_frequency": 21094 + }, + { + "word": "abominación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abomination", + "example_sentence_native": "La injusticia es una abominación para la sociedad.", + "example_sentence_english": "Injustice is an abomination to society.", + "pos": "noun", + "word_frequency": 21096 + }, + { + "word": "acequia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrigation ditch", + "example_sentence_native": "El agua de la acequia riega los campos.", + "example_sentence_english": "The water from the irrigation ditch waters the fields.", + "pos": "noun", + "word_frequency": 21097 + }, + { + "word": "actualizacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "update", + "example_sentence_native": "Necesitamos una actualización del software.", + "example_sentence_english": "We need a software update.", + "pos": "noun", + "word_frequency": 21098 + }, + { + "word": "agobiante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelming", + "example_sentence_native": "La presión del trabajo era agobiante.", + "example_sentence_english": "The pressure of work was overwhelming.", + "pos": "adjective", + "word_frequency": 21099 + }, + { + "word": "agonizante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agonizing", + "example_sentence_native": "El paciente estaba en un estado agonizante.", + "example_sentence_english": "The patient was in an agonizing state.", + "pos": "adjective", + "word_frequency": 21100 + }, + { + "word": "alardear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boast", + "example_sentence_native": "No le gusta alardear de sus logros.", + "example_sentence_english": "He doesn't like to boast about his achievements.", + "pos": "verb", + "word_frequency": 21102 + }, + { + "word": "alce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moose", + "example_sentence_native": "Vimos un alce en el bosque.", + "example_sentence_english": "We saw a moose in the forest.", + "pos": "noun", + "word_frequency": 21103 + }, + { + "word": "aliciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incentive", + "example_sentence_native": "El bono fue un gran aliciente para trabajar más.", + "example_sentence_english": "The bonus was a great incentive to work more.", + "pos": "noun", + "word_frequency": 21104 + }, + { + "word": "alud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avalanche", + "example_sentence_native": "Un alud de nieve bloqueó la carretera.", + "example_sentence_english": "A snow avalanche blocked the road.", + "pos": "noun", + "word_frequency": 21105 + }, + { + "word": "anecdótico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anecdotal", + "example_sentence_native": "Su experiencia es interesante, pero solo anecdótica.", + "example_sentence_english": "His experience is interesting, but only anecdotal.", + "pos": "adjective", + "word_frequency": 21110 + }, + { + "word": "apareamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mating", + "example_sentence_native": "La temporada de apareamiento de los ciervos es en otoño.", + "example_sentence_english": "The deer mating season is in autumn.", + "pos": "noun", + "word_frequency": 21111 + }, + { + "word": "apremiante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urgent", + "example_sentence_native": "Tenemos una necesidad apremiante de recursos.", + "example_sentence_english": "We have a pressing need for resources.", + "pos": "adjective", + "word_frequency": 21112 + }, + { + "word": "apéndice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appendix", + "example_sentence_native": "El libro tiene un apéndice con glosario.", + "example_sentence_english": "The book has an appendix with a glossary.", + "pos": "noun", + "word_frequency": 21113 + }, + { + "word": "armería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armory", + "example_sentence_native": "La armería vende armas y municiones.", + "example_sentence_english": "The armory sells weapons and ammunition.", + "pos": "noun", + "word_frequency": 21116 + }, + { + "word": "armonizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harmonize", + "example_sentence_native": "Los colores de la habitación armonizan perfectamente.", + "example_sentence_english": "The colors of the room harmonize perfectly.", + "pos": "verb", + "word_frequency": 21117 + }, + { + "word": "articulista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "columnist", + "example_sentence_native": "Es un articulista reconocido en el periódico.", + "example_sentence_english": "He is a renowned columnist in the newspaper.", + "pos": "noun", + "word_frequency": 21118 + }, + { + "word": "asambleísta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly member", + "example_sentence_native": "El asambleísta presentó una nueva propuesta de ley.", + "example_sentence_english": "The assembly member presented a new bill.", + "pos": "noun", + "word_frequency": 21119 + }, + { + "word": "asar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to roast;to grill", + "example_sentence_native": "Vamos a asar el pollo para la cena.", + "example_sentence_english": "We are going to roast the chicken for dinner.", + "pos": "verb", + "word_frequency": 21120 + }, + { + "word": "avivar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stir up;to rekindle;to enliven", + "example_sentence_native": "El viento ayudó a avivar el fuego.", + "example_sentence_english": "The wind helped to stir up the fire.", + "pos": "verb", + "word_frequency": 21121 + }, + { + "word": "bachata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bachata (Dominican music;dance style)", + "example_sentence_native": "Me encanta bailar bachata los fines de semana.", + "example_sentence_english": "I love dancing bachata on weekends.", + "pos": "noun", + "word_frequency": 21122 + }, + { + "word": "berrinche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tantrum", + "example_sentence_native": "El niño hizo un berrinche en la tienda.", + "example_sentence_english": "The child threw a tantrum in the store.", + "pos": "noun", + "word_frequency": 21124 + }, + { + "word": "biologia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biology", + "example_sentence_native": "Estoy estudiando biología en la universidad.", + "example_sentence_english": "I am studying biology at university.", + "pos": "noun", + "word_frequency": 21125 + }, + { + "word": "biógrafo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biographer", + "example_sentence_native": "El biógrafo pasó años investigando su vida.", + "example_sentence_english": "The biographer spent years researching his life.", + "pos": "noun", + "word_frequency": 21126 + }, + { + "word": "bomb", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bomb (loanword;often for a flop)", + "example_sentence_native": "La película fue un bomb en taquilla.", + "example_sentence_english": "The movie was a bomb at the box office.", + "pos": "noun", + "word_frequency": 21127 + }, + { + "word": "braille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Braille", + "example_sentence_native": "Aprendió a leer en braille.", + "example_sentence_english": "He learned to read in Braille.", + "pos": "noun", + "word_frequency": 21130 + }, + { + "word": "calaña", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ilk;sort;type (often derogatory)", + "example_sentence_native": "No quiero tratar con gente de esa calaña.", + "example_sentence_english": "I don't want to deal with people of that ilk.", + "pos": "noun", + "word_frequency": 21132 + }, + { + "word": "caldero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cauldron;large pot", + "example_sentence_native": "La bruja revolvía el contenido del caldero.", + "example_sentence_english": "The witch stirred the contents of the cauldron.", + "pos": "noun", + "word_frequency": 21133 + }, + { + "word": "campesinado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peasantry;farming community", + "example_sentence_native": "El campesinado ha sido la base de la economía rural.", + "example_sentence_english": "The peasantry has been the base of the rural economy.", + "pos": "noun", + "word_frequency": 21134 + }, + { + "word": "carcelario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prison (adj.);carceral", + "example_sentence_native": "Las condiciones carcelarias eran muy duras.", + "example_sentence_english": "The prison conditions were very harsh.", + "pos": "adjective", + "word_frequency": 21135 + }, + { + "word": "carioca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Carioca (person from Rio de Janeiro)", + "example_sentence_native": "Mi amigo es carioca y vive en Río de Janeiro.", + "example_sentence_english": "My friend is Carioca and lives in Rio de Janeiro.", + "pos": "noun", + "word_frequency": 21136 + }, + { + "word": "cegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blind;to dazzle", + "example_sentence_native": "La luz brillante me cegó por un momento.", + "example_sentence_english": "The bright light blinded me for a moment.", + "pos": "verb", + "word_frequency": 21138 + }, + { + "word": "centralidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centrality", + "example_sentence_native": "La centralidad de este tema es innegable.", + "example_sentence_english": "The centrality of this topic is undeniable.", + "pos": "noun", + "word_frequency": 21139 + }, + { + "word": "centígrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Celsius;centigrade", + "example_sentence_native": "La temperatura es de 25 grados centígrados.", + "example_sentence_english": "The temperature is 25 degrees Celsius.", + "pos": "adjective", + "word_frequency": 21140 + }, + { + "word": "challenger", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "challenger (loanword)", + "example_sentence_native": "El Challenger fue un transbordador espacial.", + "example_sentence_english": "The Challenger was a space shuttle.", + "pos": "noun", + "word_frequency": 21141 + }, + { + "word": "chela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beer (colloquial;Latin America)", + "example_sentence_native": "Vamos por unas chelas después del trabajo.", + "example_sentence_english": "Let's go for some beers after work.", + "pos": "noun", + "word_frequency": 21142 + }, + { + "word": "cinética", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kinetics;kinetic energy", + "example_sentence_native": "Estudiamos la cinética de la reacción química.", + "example_sentence_english": "We studied the kinetics of the chemical reaction.", + "pos": "noun", + "word_frequency": 21143 + }, + { + "word": "colibrí", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hummingbird", + "example_sentence_native": "Un colibrí revoloteaba cerca de las flores.", + "example_sentence_english": "A hummingbird hovered near the flowers.", + "pos": "noun", + "word_frequency": 21147 + }, + { + "word": "contrata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contract;hiring", + "example_sentence_native": "Firmó una nueva contrata con la empresa.", + "example_sentence_english": "He signed a new contract with the company.", + "pos": "noun", + "word_frequency": 21149 + }, + { + "word": "crecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grown;increased;swollen", + "example_sentence_native": "El río está muy crecido después de las lluvias.", + "example_sentence_english": "The river is very swollen after the rains.", + "pos": "adjective", + "word_frequency": 21151 + }, + { + "word": "cronológicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronologically", + "example_sentence_native": "Los eventos se presentan cronológicamente.", + "example_sentence_english": "The events are presented chronologically.", + "pos": "adverb", + "word_frequency": 21152 + }, + { + "word": "cuca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cockroach (colloquial);cute (colloquial;nickname)", + "example_sentence_native": "Vi una cuca corriendo por la pared.", + "example_sentence_english": "I saw a cockroach running on the wall.", + "pos": "noun", + "word_frequency": 21154 + }, + { + "word": "currar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work (colloquial;Spain)", + "example_sentence_native": "Tengo que currar mucho esta semana.", + "example_sentence_english": "I have to work a lot this week.", + "pos": "verb", + "word_frequency": 21156 + }, + { + "word": "deck", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deck (of cards;ship) (loanword)", + "example_sentence_native": "Baraja el deck de cartas.", + "example_sentence_english": "Shuffle the deck of cards.", + "pos": "noun", + "word_frequency": 21159 + }, + { + "word": "degradar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to degrade;to demote", + "example_sentence_native": "No debes degradar a tus empleados.", + "example_sentence_english": "You should not degrade your employees.", + "pos": "verb", + "word_frequency": 21160 + }, + { + "word": "demon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demon", + "example_sentence_native": "Se dice que un demon habita en esa casa.", + "example_sentence_english": "It is said that a demon lives in that house.", + "pos": "noun", + "word_frequency": 21161 + }, + { + "word": "deposición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deposition;stool (medical)", + "example_sentence_native": "El abogado tomó la deposición del testigo.", + "example_sentence_english": "The lawyer took the witness's deposition.", + "pos": "noun", + "word_frequency": 21162 + }, + { + "word": "desarollar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to develop", + "example_sentence_native": "Necesitamos desarrollar nuevas estrategias.", + "example_sentence_english": "We need to develop new strategies.", + "pos": "verb", + "word_frequency": 21163 + }, + { + "word": "desembolso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disbursement;outlay", + "example_sentence_native": "El desembolso de fondos se realizará mañana.", + "example_sentence_english": "The disbursement of funds will take place tomorrow.", + "pos": "noun", + "word_frequency": 21164 + }, + { + "word": "desgarro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tear;rip", + "example_sentence_native": "Sufrió un desgarro muscular durante el partido.", + "example_sentence_english": "He suffered a muscle tear during the game.", + "pos": "noun", + "word_frequency": 21165 + }, + { + "word": "dilucidar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to elucidate;to clarify", + "example_sentence_native": "Es necesario dilucidar los hechos antes de tomar una decisión.", + "example_sentence_english": "It is necessary to clarify the facts before making a decision.", + "pos": "verb", + "word_frequency": 21166 + }, + { + "word": "dimension", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dimension", + "example_sentence_native": "El problema tiene una nueva dimensión.", + "example_sentence_english": "The problem has a new dimension.", + "pos": "noun", + "word_frequency": 21167 + }, + { + "word": "direction", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "direction;address", + "example_sentence_native": "¿Puedes darme la dirección de tu casa?", + "example_sentence_english": "Can you give me your home address?", + "pos": "noun", + "word_frequency": 21168 + }, + { + "word": "discriminado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discriminated (against)", + "example_sentence_native": "Se sentía discriminado por su origen.", + "example_sentence_english": "He felt discriminated against because of his origin.", + "pos": "adjective", + "word_frequency": 21169 + }, + { + "word": "diu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "IUD (intrauterine device)", + "example_sentence_native": "El DIU es un método anticonceptivo eficaz.", + "example_sentence_english": "The IUD is an effective contraceptive method.", + "pos": "noun", + "word_frequency": 21170 + }, + { + "word": "doblegar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bend;to subdue", + "example_sentence_native": "No se dejó doblegar por la presión.", + "example_sentence_english": "He did not let himself be subdued by the pressure.", + "pos": "verb", + "word_frequency": 21173 + }, + { + "word": "dramaturgia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dramaturgy", + "example_sentence_native": "Estudió dramaturgia en la universidad.", + "example_sentence_english": "He studied dramaturgy at the university.", + "pos": "noun", + "word_frequency": 21175 + }, + { + "word": "duodécimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twelfth", + "example_sentence_native": "Ocupó el duodécimo lugar en la competición.", + "example_sentence_english": "He took twelfth place in the competition.", + "pos": "adjective", + "word_frequency": 21177 + }, + { + "word": "duplicación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duplication", + "example_sentence_native": "La duplicación de datos es un problema común.", + "example_sentence_english": "Data duplication is a common problem.", + "pos": "noun", + "word_frequency": 21178 + }, + { + "word": "empeoramiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worsening;deterioration", + "example_sentence_native": "Hubo un empeoramiento de su salud.", + "example_sentence_english": "There was a worsening of his health.", + "pos": "noun", + "word_frequency": 21183 + }, + { + "word": "emprendido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undertaken;embarked upon", + "example_sentence_native": "Es un proyecto ambicioso, pero ya está emprendido.", + "example_sentence_english": "It's an ambitious project, but it's already undertaken.", + "pos": "adjective", + "word_frequency": 21184 + }, + { + "word": "emulador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emulator", + "example_sentence_native": "Usó un emulador para jugar a juegos antiguos.", + "example_sentence_english": "He used an emulator to play old games.", + "pos": "noun", + "word_frequency": 21185 + }, + { + "word": "espartano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Spartan;austere", + "example_sentence_native": "Llevaba una vida espartana, sin lujos.", + "example_sentence_english": "He led a Spartan life, without luxuries.", + "pos": "adjective", + "word_frequency": 21186 + }, + { + "word": "estampida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stampede", + "example_sentence_native": "La estampida causó pánico entre la multitud.", + "example_sentence_english": "The stampede caused panic among the crowd.", + "pos": "noun", + "word_frequency": 21187 + }, + { + "word": "estreñimiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constipation", + "example_sentence_native": "El estreñimiento es un problema digestivo común.", + "example_sentence_english": "Constipation is a common digestive problem.", + "pos": "noun", + "word_frequency": 21188 + }, + { + "word": "estupor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stupor;daze", + "example_sentence_native": "Cayó en un estado de estupor después del accidente.", + "example_sentence_english": "He fell into a state of stupor after the accident.", + "pos": "noun", + "word_frequency": 21189 + }, + { + "word": "etnografía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnography", + "example_sentence_native": "La etnografía es el estudio descriptivo de las culturas.", + "example_sentence_english": "Ethnography is the descriptive study of cultures.", + "pos": "noun", + "word_frequency": 21190 + }, + { + "word": "exhausto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhausted", + "example_sentence_native": "Después de correr la maratón, estaba completamente exhausto.", + "example_sentence_english": "After running the marathon, he was completely exhausted.", + "pos": "adjective", + "word_frequency": 21191 + }, + { + "word": "exposicion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibition;exposure", + "example_sentence_native": "Visitamos una exposición de arte moderno.", + "example_sentence_english": "We visited a modern art exhibition.", + "pos": "noun", + "word_frequency": 21192 + }, + { + "word": "extrajudicial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extrajudicial", + "example_sentence_native": "Se llegó a un acuerdo extrajudicial.", + "example_sentence_english": "An extrajudicial agreement was reached.", + "pos": "adjective", + "word_frequency": 21193 + }, + { + "word": "extraoficial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unofficial", + "example_sentence_native": "La noticia es extraoficial, pero parece ser cierta.", + "example_sentence_english": "The news is unofficial, but it seems to be true.", + "pos": "adjective", + "word_frequency": 21194 + }, + { + "word": "faltante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missing;lacking", + "example_sentence_native": "Hay algunas piezas faltantes en el rompecabezas.", + "example_sentence_english": "There are some missing pieces in the puzzle.", + "pos": "adjective", + "word_frequency": 21195 + }, + { + "word": "favela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favela (Brazilian slum)", + "example_sentence_native": "Las favelas de Río de Janeiro son muy conocidas.", + "example_sentence_english": "The favelas of Rio de Janeiro are well-known.", + "pos": "noun", + "word_frequency": 21197 + }, + { + "word": "fibrosis", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "fibrosis", + "example_sentence_native": "La fibrosis pulmonar es una enfermedad grave.", + "example_sentence_english": "Pulmonary fibrosis is a serious disease.", + "pos": "noun", + "word_frequency": 21200 + }, + { + "word": "florero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vase", + "example_sentence_native": "Puso las flores en el florero.", + "example_sentence_english": "She put the flowers in the vase.", + "pos": "noun", + "word_frequency": 21203 + }, + { + "word": "fome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boring (Chilean slang)", + "example_sentence_native": "La película fue muy fome.", + "example_sentence_english": "The movie was very boring.", + "pos": "adjective", + "word_frequency": 21204 + }, + { + "word": "frontón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pediment;fronton (for pelota)", + "example_sentence_native": "Jugaron a la pelota vasca en el frontón.", + "example_sentence_english": "They played Basque pelota on the fronton.", + "pos": "noun", + "word_frequency": 21206 + }, + { + "word": "frutilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strawberry (Latin America)", + "example_sentence_native": "Me encantan las frutillas con crema.", + "example_sentence_english": "I love strawberries with cream.", + "pos": "noun", + "word_frequency": 21207 + }, + { + "word": "fugado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escaped;fugitive", + "example_sentence_native": "El prisionero fugado fue recapturado.", + "example_sentence_english": "The escaped prisoner was recaptured.", + "pos": "adjective", + "word_frequency": 21208 + }, + { + "word": "gata", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female cat", + "example_sentence_native": "Mi gata duerme todo el día.", + "example_sentence_english": "My cat sleeps all day.", + "pos": "noun", + "word_frequency": 21211 + }, + { + "word": "glacial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glacial;icy", + "example_sentence_native": "El clima en la Antártida es glacial.", + "example_sentence_english": "The climate in Antarctica is glacial.", + "pos": "adjective", + "word_frequency": 21215 + }, + { + "word": "gonorrea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gonorrhea", + "example_sentence_native": "La gonorrea es una infección de transmisión sexual.", + "example_sentence_english": "Gonorrhea is a sexually transmitted infection.", + "pos": "noun", + "word_frequency": 21217 + }, + { + "word": "grafiti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graffiti", + "example_sentence_native": "Hay mucho grafiti en las paredes de la ciudad.", + "example_sentence_english": "There is a lot of graffiti on the city walls.", + "pos": "noun", + "word_frequency": 21218 + }, + { + "word": "guayaba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guava", + "example_sentence_native": "La guayaba es una fruta tropical deliciosa.", + "example_sentence_english": "Guava is a delicious tropical fruit.", + "pos": "noun", + "word_frequency": 21220 + }, + { + "word": "hexagonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hexagonal", + "example_sentence_native": "La mesa tiene una forma hexagonal.", + "example_sentence_english": "The table has a hexagonal shape.", + "pos": "adjective", + "word_frequency": 21225 + }, + { + "word": "homologación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homologation;approval;standardization", + "example_sentence_native": "Se requiere la homologación del título para trabajar aquí.", + "example_sentence_english": "Title homologation is required to work here.", + "pos": "noun", + "word_frequency": 21226 + }, + { + "word": "huso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spindle;time zone", + "example_sentence_native": "El huso horario de España es diferente al de México.", + "example_sentence_english": "Spain's time zone is different from Mexico's.", + "pos": "noun", + "word_frequency": 21229 + }, + { + "word": "imperioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperious;urgent;compelling", + "example_sentence_native": "Tenía una necesidad imperiosa de salir.", + "example_sentence_english": "He had an imperious need to leave.", + "pos": "adjective", + "word_frequency": 21231 + }, + { + "word": "incapacitado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incapacitated;disabled", + "example_sentence_native": "Fue declarado incapacitado para trabajar.", + "example_sentence_english": "He was declared incapacitated for work.", + "pos": "adjective", + "word_frequency": 21232 + }, + { + "word": "incomprensión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incomprehension;lack of understanding", + "example_sentence_native": "Su incomprensión de la situación era evidente.", + "example_sentence_english": "His incomprehension of the situation was evident.", + "pos": "noun", + "word_frequency": 21233 + }, + { + "word": "intercambiable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interchangeable", + "example_sentence_native": "Las piezas son intercambiables entre los modelos.", + "example_sentence_english": "The parts are interchangeable between models.", + "pos": "adjective", + "word_frequency": 21235 + }, + { + "word": "interdisciplinario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interdisciplinary", + "example_sentence_native": "El proyecto requiere un enfoque interdisciplinario.", + "example_sentence_english": "The project requires an interdisciplinary approach.", + "pos": "adjective", + "word_frequency": 21236 + }, + { + "word": "jubilar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to retire;to pension off", + "example_sentence_native": "Mi abuelo se va a jubilar el próximo año.", + "example_sentence_english": "My grandfather is going to retire next year.", + "pos": "verb", + "word_frequency": 21239 + }, + { + "word": "katana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "katana", + "example_sentence_native": "El samurái desenvainó su afilada katana.", + "example_sentence_english": "The samurai unsheathed his sharp katana.", + "pos": "noun", + "word_frequency": 21241 + }, + { + "word": "lagartija", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lizard", + "example_sentence_native": "Una pequeña lagartija corrió por la pared.", + "example_sentence_english": "A small lizard ran up the wall.", + "pos": "noun", + "word_frequency": 21247 + }, + { + "word": "latencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "latency", + "example_sentence_native": "La latencia de la red era muy alta, lo que causaba problemas.", + "example_sentence_english": "The network latency was very high, causing problems.", + "pos": "noun", + "word_frequency": 21248 + }, + { + "word": "leonés", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Leonese", + "example_sentence_native": "La catedral de León es un ejemplo de arquitectura gótica leonesa.", + "example_sentence_english": "León Cathedral is an example of Leonese Gothic architecture.", + "pos": "adjective", + "word_frequency": 21252 + }, + { + "word": "loteria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lottery", + "example_sentence_native": "Compramos un boleto de loteria con la esperanza de ganar.", + "example_sentence_english": "We bought a lottery ticket hoping to win.", + "pos": "noun", + "word_frequency": 21254 + }, + { + "word": "mania", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mania;craze", + "example_sentence_native": "Tiene una manía por la limpieza.", + "example_sentence_english": "He has a cleaning craze.", + "pos": "noun", + "word_frequency": 21258 + }, + { + "word": "mantención", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maintenance", + "example_sentence_native": "La mantención del coche es esencial para su buen funcionamiento.", + "example_sentence_english": "Car maintenance is essential for its proper functioning.", + "pos": "noun", + "word_frequency": 21259 + }, + { + "word": "masoquista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masochistic", + "example_sentence_native": "Su comportamiento masoquista preocupaba a sus amigos.", + "example_sentence_english": "His masochistic behavior worried his friends.", + "pos": "adjective", + "word_frequency": 21261 + }, + { + "word": "meritorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meritorious;praiseworthy", + "example_sentence_native": "Su esfuerzo fue realmente meritorio.", + "example_sentence_english": "His effort was truly meritorious.", + "pos": "adjective", + "word_frequency": 21264 + }, + { + "word": "metalúrgico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metallurgical", + "example_sentence_native": "La industria metalúrgica es importante para la economía.", + "example_sentence_english": "The metallurgical industry is important for the economy.", + "pos": "adjective", + "word_frequency": 21265 + }, + { + "word": "mocho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blunt;cut off", + "example_sentence_native": "El lápiz estaba mocho y no se podía escribir bien.", + "example_sentence_english": "The pencil was blunt and couldn't write well.", + "pos": "adjective", + "word_frequency": 21269 + }, + { + "word": "monitorizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to monitor", + "example_sentence_native": "Necesitamos monitorizar el progreso del proyecto.", + "example_sentence_english": "We need to monitor the project's progress.", + "pos": "verb", + "word_frequency": 21272 + }, + { + "word": "mortalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortally;deadly", + "example_sentence_native": "El veneno era mortalmente peligroso.", + "example_sentence_english": "The poison was mortally dangerous.", + "pos": "adverb", + "word_frequency": 21273 + }, + { + "word": "mánager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manager", + "example_sentence_native": "El mánager del equipo dio una conferencia de prensa.", + "example_sentence_english": "The team's manager gave a press conference.", + "pos": "noun", + "word_frequency": 21276 + }, + { + "word": "napolitano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Neapolitan", + "example_sentence_native": "La pizza napolitana es famosa en todo el mundo.", + "example_sentence_english": "Neapolitan pizza is famous worldwide.", + "pos": "adjective", + "word_frequency": 21277 + }, + { + "word": "neurología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurology", + "example_sentence_native": "La neurología es el estudio del sistema nervioso.", + "example_sentence_english": "Neurology is the study of the nervous system.", + "pos": "noun", + "word_frequency": 21283 + }, + { + "word": "neutrón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neutron", + "example_sentence_native": "El neutrón es una partícula subatómica sin carga eléctrica.", + "example_sentence_english": "The neutron is a subatomic particle with no electric charge.", + "pos": "noun", + "word_frequency": 21284 + }, + { + "word": "nie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreigner identification number (NIE)", + "example_sentence_native": "Necesitas un NIE para abrir una cuenta bancaria en España.", + "example_sentence_english": "You need an NIE to open a bank account in Spain.", + "pos": "noun", + "word_frequency": 21285 + }, + { + "word": "nitidez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharpness", + "example_sentence_native": "La foto carece de nitidez.", + "example_sentence_english": "The photo lacks sharpness.", + "pos": "noun", + "word_frequency": 21286 + }, + { + "word": "nylon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nylon", + "example_sentence_native": "Esta cuerda está hecha de nylon.", + "example_sentence_english": "This rope is made of nylon.", + "pos": "noun", + "word_frequency": 21287 + }, + { + "word": "ocultación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concealment", + "example_sentence_native": "La ocultación de pruebas es un delito.", + "example_sentence_english": "The concealment of evidence is a crime.", + "pos": "noun", + "word_frequency": 21289 + }, + { + "word": "omnipotente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipotent", + "example_sentence_native": "Se creía omnipotente y capaz de todo.", + "example_sentence_english": "He believed himself omnipotent and capable of anything.", + "pos": "adjective", + "word_frequency": 21290 + }, + { + "word": "ondulado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wavy", + "example_sentence_native": "Tiene el pelo ondulado.", + "example_sentence_english": "She has wavy hair.", + "pos": "adjective", + "word_frequency": 21291 + }, + { + "word": "ortográfico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orthographic", + "example_sentence_native": "Revisa los errores ortográficos antes de entregar el trabajo.", + "example_sentence_english": "Check for spelling errors before submitting the work.", + "pos": "adjective", + "word_frequency": 21292 + }, + { + "word": "ostracismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ostracism", + "example_sentence_native": "Fue condenado al ostracismo por sus ideas.", + "example_sentence_english": "He was condemned to ostracism for his ideas.", + "pos": "noun", + "word_frequency": 21293 + }, + { + "word": "paparazzi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paparazzi", + "example_sentence_native": "Los paparazzi persiguieron a la actriz.", + "example_sentence_english": "The paparazzi chased the actress.", + "pos": "noun", + "word_frequency": 21296 + }, + { + "word": "peldaño", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "step", + "example_sentence_native": "Subió el último peldaño de la escalera.", + "example_sentence_english": "He climbed the last step of the ladder.", + "pos": "noun", + "word_frequency": 21300 + }, + { + "word": "pensativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thoughtful", + "example_sentence_native": "Estaba pensativo, mirando por la ventana.", + "example_sentence_english": "He was thoughtful, looking out the window.", + "pos": "adjective", + "word_frequency": 21301 + }, + { + "word": "percatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to notice", + "example_sentence_native": "Se percató de su error demasiado tarde.", + "example_sentence_english": "He noticed his mistake too late.", + "pos": "verb", + "word_frequency": 21302 + }, + { + "word": "perecer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perish", + "example_sentence_native": "Muchos animales perecieron en el incendio.", + "example_sentence_english": "Many animals perished in the fire.", + "pos": "verb", + "word_frequency": 21303 + }, + { + "word": "pimentón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paprika", + "example_sentence_native": "Añade una cucharadita de pimentón al guiso.", + "example_sentence_english": "Add a teaspoon of paprika to the stew.", + "pos": "noun", + "word_frequency": 21305 + }, + { + "word": "pinchazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puncture", + "example_sentence_native": "Tuvimos un pinchazo en la rueda del coche.", + "example_sentence_english": "We had a flat tire on the car wheel.", + "pos": "noun", + "word_frequency": 21306 + }, + { + "word": "pomelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grapefruit", + "example_sentence_native": "Me gusta el zumo de pomelo por la mañana.", + "example_sentence_english": "I like grapefruit juice in the morning.", + "pos": "noun", + "word_frequency": 21308 + }, + { + "word": "preparador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trainer", + "example_sentence_native": "El preparador físico diseñó un nuevo programa de entrenamiento.", + "example_sentence_english": "The physical trainer designed a new training program.", + "pos": "noun", + "word_frequency": 21309 + }, + { + "word": "preventa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presale", + "example_sentence_native": "Las entradas para el concierto están en preventa.", + "example_sentence_english": "Concert tickets are on presale.", + "pos": "noun", + "word_frequency": 21310 + }, + { + "word": "primacía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primacy", + "example_sentence_native": "La empresa busca la primacía en el mercado.", + "example_sentence_english": "The company seeks primacy in the market.", + "pos": "noun", + "word_frequency": 21311 + }, + { + "word": "progresismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "progressivism", + "example_sentence_native": "El progresismo aboga por el cambio social.", + "example_sentence_english": "Progressivism advocates for social change.", + "pos": "noun", + "word_frequency": 21312 + }, + { + "word": "purificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to purify", + "example_sentence_native": "Es necesario purificar el agua antes de beberla.", + "example_sentence_english": "It is necessary to purify the water before drinking it.", + "pos": "verb", + "word_frequency": 21313 + }, + { + "word": "radiología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiology", + "example_sentence_native": "El diagnóstico se confirmó con una prueba de radiología.", + "example_sentence_english": "The diagnosis was confirmed with a radiology test.", + "pos": "noun", + "word_frequency": 21316 + }, + { + "word": "referencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referential", + "example_sentence_native": "El marco referencial del estudio es muy amplio.", + "example_sentence_english": "The referential framework of the study is very broad.", + "pos": "adjective", + "word_frequency": 21320 + }, + { + "word": "relevar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relieve;to replace", + "example_sentence_native": "El nuevo guardia va a relevar al anterior.", + "example_sentence_english": "The new guard is going to relieve the previous one.", + "pos": "verb", + "word_frequency": 21321 + }, + { + "word": "repugnar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disgust;to repel", + "example_sentence_native": "Me repugna la injusticia.", + "example_sentence_english": "Injustice disgusts me.", + "pos": "verb", + "word_frequency": 21322 + }, + { + "word": "retoque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "touch-up;retouch", + "example_sentence_native": "La foto necesita un pequeño retoque.", + "example_sentence_english": "The photo needs a small touch-up.", + "pos": "noun", + "word_frequency": 21323 + }, + { + "word": "retroactivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retroactive", + "example_sentence_native": "La ley tiene efecto retroactivo.", + "example_sentence_english": "The law has retroactive effect.", + "pos": "adjective", + "word_frequency": 21324 + }, + { + "word": "reventado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhausted;burst", + "example_sentence_native": "Después de correr la maratón, estaba completamente reventado.", + "example_sentence_english": "After running the marathon, I was completely exhausted.", + "pos": "adjective", + "word_frequency": 21325 + }, + { + "word": "ridiculez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ridiculousness;absurdity", + "example_sentence_native": "No puedo creer la ridiculez de su argumento.", + "example_sentence_english": "I can't believe the ridiculousness of his argument.", + "pos": "noun", + "word_frequency": 21327 + }, + { + "word": "ridiculizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ridicule", + "example_sentence_native": "No debes ridiculizar a los demás.", + "example_sentence_english": "You shouldn't ridicule others.", + "pos": "verb", + "word_frequency": 21328 + }, + { + "word": "ridículamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ridiculously", + "example_sentence_native": "El precio era ridículamente alto.", + "example_sentence_english": "The price was ridiculously high.", + "pos": "adverb", + "word_frequency": 21329 + }, + { + "word": "rioplatense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Rioplatense (from the Río de la Plata region)", + "example_sentence_native": "El acento rioplatense es muy distintivo.", + "example_sentence_english": "The Rioplatense accent is very distinctive.", + "pos": "adjective", + "word_frequency": 21330 + }, + { + "word": "salar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to salt", + "example_sentence_native": "No olvides salar la carne antes de cocinarla.", + "example_sentence_english": "Don't forget to salt the meat before cooking it.", + "pos": "verb", + "word_frequency": 21336 + }, + { + "word": "sandez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolishness;nonsense", + "example_sentence_native": "Dijo una sandez que nadie entendió.", + "example_sentence_english": "He said a piece of nonsense that nobody understood.", + "pos": "noun", + "word_frequency": 21337 + }, + { + "word": "satánico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satanic", + "example_sentence_native": "La banda tocaba música con letras satánicas.", + "example_sentence_english": "The band played music with satanic lyrics.", + "pos": "adjective", + "word_frequency": 21339 + }, + { + "word": "saxo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saxophone (informal)", + "example_sentence_native": "Le encanta tocar el saxo.", + "example_sentence_english": "He loves playing the sax.", + "pos": "noun", + "word_frequency": 21340 + }, + { + "word": "sedán", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sedan", + "example_sentence_native": "Compró un coche sedán nuevo.", + "example_sentence_english": "He bought a new sedan car.", + "pos": "noun", + "word_frequency": 21341 + }, + { + "word": "socavar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to undermine;to erode", + "example_sentence_native": "Sus acciones socavaron la confianza del equipo.", + "example_sentence_english": "His actions undermined the team's trust.", + "pos": "verb", + "word_frequency": 21343 + }, + { + "word": "sofisticación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sophistication", + "example_sentence_native": "Su estilo se caracteriza por la sofisticación.", + "example_sentence_english": "Her style is characterized by sophistication.", + "pos": "noun", + "word_frequency": 21344 + }, + { + "word": "sofocante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffocating;stifling", + "example_sentence_native": "El calor era sofocante en la habitación.", + "example_sentence_english": "The heat was suffocating in the room.", + "pos": "adjective", + "word_frequency": 21345 + }, + { + "word": "talar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut down (trees);to fell", + "example_sentence_native": "Es ilegal talar árboles en esta zona.", + "example_sentence_english": "It is illegal to cut down trees in this area.", + "pos": "verb", + "word_frequency": 21352 + }, + { + "word": "tianguis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open-air market (Mexican Spanish)", + "example_sentence_native": "Compramos frutas frescas en el tianguis.", + "example_sentence_english": "We bought fresh fruit at the street market.", + "pos": "noun", + "word_frequency": 21353 + }, + { + "word": "tica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Costa Rican woman (informal)", + "example_sentence_native": "Mi amiga es tica y muy amable.", + "example_sentence_english": "My friend is a Costa Rican woman and very kind.", + "pos": "noun", + "word_frequency": 21354 + }, + { + "word": "torrencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torrential", + "example_sentence_native": "La lluvia torrencial causó inundaciones.", + "example_sentence_english": "The torrential rain caused floods.", + "pos": "adjective", + "word_frequency": 21358 + }, + { + "word": "torsión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torsion;twisting", + "example_sentence_native": "El puente fue diseñado para resistir la torsión.", + "example_sentence_english": "The bridge was designed to resist torsion.", + "pos": "noun", + "word_frequency": 21359 + }, + { + "word": "transgresión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transgression", + "example_sentence_native": "Su acción fue una clara transgresión de las normas.", + "example_sentence_english": "His action was a clear transgression of the rules.", + "pos": "noun", + "word_frequency": 21360 + }, + { + "word": "trigésimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thirtieth", + "example_sentence_native": "Él fue el trigésimo en cruzar la meta.", + "example_sentence_english": "He was the thirtieth to cross the finish line.", + "pos": "adjective", + "word_frequency": 21361 + }, + { + "word": "tripulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manned;crewed", + "example_sentence_native": "La nave espacial tripulada regresó a salvo.", + "example_sentence_english": "The manned spacecraft returned safely.", + "pos": "adjective", + "word_frequency": 21362 + }, + { + "word": "uterino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uterine", + "example_sentence_native": "El útero es un órgano uterino.", + "example_sentence_english": "The uterus is a uterine organ.", + "pos": "adjective", + "word_frequency": 21368 + }, + { + "word": "vacilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hesitate;to waver;to tease (colloquial)", + "example_sentence_native": "No vaciles en preguntar si tienes dudas.", + "example_sentence_english": "Don't hesitate to ask if you have doubts.", + "pos": "verb", + "word_frequency": 21369 + }, + { + "word": "verruga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wart", + "example_sentence_native": "Tenía una pequeña verruga en la mano.", + "example_sentence_english": "He had a small wart on his hand.", + "pos": "noun", + "word_frequency": 21372 + }, + { + "word": "vetado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vetoed;banned;forbidden", + "example_sentence_native": "El proyecto de ley fue vetado por el presidente.", + "example_sentence_english": "The bill was vetoed by the president.", + "pos": "adjective", + "word_frequency": 21374 + }, + { + "word": "zonal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zonal", + "example_sentence_native": "Se establecieron restricciones zonales.", + "example_sentence_english": "Zonal restrictions were established.", + "pos": "adjective", + "word_frequency": 21380 + }, + { + "word": "zumba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Zumba (fitness program);buzz;hum", + "example_sentence_native": "Vamos a la clase de zumba.", + "example_sentence_english": "Let's go to the Zumba class.", + "pos": "noun", + "word_frequency": 21381 + }, + { + "word": "acorazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armored;battleship", + "example_sentence_native": "El barco acorazado resistió el ataque.", + "example_sentence_english": "The armored ship withstood the attack.", + "pos": "adjective", + "word_frequency": 21384 + }, + { + "word": "aderezo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressing;seasoning", + "example_sentence_native": "Me gusta el aderezo de la ensalada.", + "example_sentence_english": "I like the salad dressing.", + "pos": "noun", + "word_frequency": 21386 + }, + { + "word": "adultez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adulthood", + "example_sentence_native": "La adultez trae nuevas responsabilidades.", + "example_sentence_english": "Adulthood brings new responsibilities.", + "pos": "noun", + "word_frequency": 21387 + }, + { + "word": "agustino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Augustinian", + "example_sentence_native": "Es un monje agustino.", + "example_sentence_english": "He is an Augustinian monk.", + "pos": "adjective", + "word_frequency": 21388 + }, + { + "word": "almeja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clam", + "example_sentence_native": "Pedimos sopa de almejas.", + "example_sentence_english": "We ordered clam soup.", + "pos": "noun", + "word_frequency": 21391 + }, + { + "word": "alondra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lark", + "example_sentence_native": "La alondra canta al amanecer.", + "example_sentence_english": "The lark sings at dawn.", + "pos": "noun", + "word_frequency": 21392 + }, + { + "word": "alpargata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "espadrille", + "example_sentence_native": "Compré unas alpargatas nuevas para el verano.", + "example_sentence_english": "I bought new espadrilles for the summer.", + "pos": "noun", + "word_frequency": 21393 + }, + { + "word": "amamantar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to breastfeed;to nurse", + "example_sentence_native": "La madre amamantó a su bebé.", + "example_sentence_english": "The mother breastfed her baby.", + "pos": "verb", + "word_frequency": 21394 + }, + { + "word": "amarrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie;to moor", + "example_sentence_native": "Amarró el barco al muelle.", + "example_sentence_english": "He tied the boat to the dock.", + "pos": "verb", + "word_frequency": 21396 + }, + { + "word": "animé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anime", + "example_sentence_native": "Me gusta ver animé japonés.", + "example_sentence_english": "I like watching Japanese anime.", + "pos": "noun", + "word_frequency": 21398 + }, + { + "word": "antibala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulletproof", + "example_sentence_native": "Llevaba un chaleco antibala.", + "example_sentence_english": "He was wearing a bulletproof vest.", + "pos": "noun", + "word_frequency": 21399 + }, + { + "word": "antioqueño", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Antioquian (from Antioquia;Colombia)", + "example_sentence_native": "La cultura antioqueña es muy rica.", + "example_sentence_english": "Antioquian culture is very rich.", + "pos": "adjective", + "word_frequency": 21400 + }, + { + "word": "arenisca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sandstone", + "example_sentence_native": "La casa estaba construida con arenisca roja.", + "example_sentence_english": "The house was built with red sandstone.", + "pos": "noun", + "word_frequency": 21402 + }, + { + "word": "argot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slang;jargon;argot", + "example_sentence_native": "Es difícil entender el argot de los adolescentes.", + "example_sentence_english": "It's difficult to understand teenage slang.", + "pos": "noun", + "word_frequency": 21403 + }, + { + "word": "asimétrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asymmetrical", + "example_sentence_native": "El diseño del edificio es asimétrico.", + "example_sentence_english": "The building's design is asymmetrical.", + "pos": "adjective", + "word_frequency": 21404 + }, + { + "word": "backup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backup", + "example_sentence_native": "Necesito hacer un backup de mis archivos.", + "example_sentence_english": "I need to make a backup of my files.", + "pos": "noun", + "word_frequency": 21407 + }, + { + "word": "bajío", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shoal;sandbank;lowlands", + "example_sentence_native": "El barco encalló en un bajío.", + "example_sentence_english": "The ship ran aground on a shoal.", + "pos": "noun", + "word_frequency": 21408 + }, + { + "word": "bato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guy;dude (Mexican slang)", + "example_sentence_native": "Ese bato es muy buena onda.", + "example_sentence_english": "That guy is really cool.", + "pos": "noun", + "word_frequency": 21412 + }, + { + "word": "bizantino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Byzantine", + "example_sentence_native": "El arte bizantino es fascinante.", + "example_sentence_english": "Byzantine art is fascinating.", + "pos": "adjective", + "word_frequency": 21413 + }, + { + "word": "bobada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonsense;foolishness;silly thing", + "example_sentence_native": "No digas bobadas.", + "example_sentence_english": "Don't say silly things.", + "pos": "noun", + "word_frequency": 21415 + }, + { + "word": "calambre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cramp", + "example_sentence_native": "Me dio un calambre en la pierna.", + "example_sentence_english": "I got a cramp in my leg.", + "pos": "noun", + "word_frequency": 21419 + }, + { + "word": "campanilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small bell;campanula;uvula", + "example_sentence_native": "La campanilla de la puerta sonó.", + "example_sentence_english": "The doorbell rang.", + "pos": "noun", + "word_frequency": 21420 + }, + { + "word": "carretilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wheelbarrow;trolley;cart", + "example_sentence_native": "Llevó la arena en una carretilla.", + "example_sentence_english": "He carried the sand in a wheelbarrow.", + "pos": "noun", + "word_frequency": 21425 + }, + { + "word": "cartulina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardstock;construction paper", + "example_sentence_native": "Necesitamos una cartulina para el proyecto.", + "example_sentence_english": "We need some cardstock for the project.", + "pos": "noun", + "word_frequency": 21427 + }, + { + "word": "catacumba", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catacomb", + "example_sentence_native": "Las catacumbas de Roma son impresionantes.", + "example_sentence_english": "The catacombs of Rome are impressive.", + "pos": "noun", + "word_frequency": 21429 + }, + { + "word": "celibato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celibacy", + "example_sentence_native": "El celibato es una práctica religiosa.", + "example_sentence_english": "Celibacy is a religious practice.", + "pos": "noun", + "word_frequency": 21432 + }, + { + "word": "cerrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small hill;hillock", + "example_sentence_native": "Subimos al cerrito para ver el paisaje.", + "example_sentence_english": "We climbed the small hill to see the landscape.", + "pos": "noun", + "word_frequency": 21434 + }, + { + "word": "cerámico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceramic", + "example_sentence_native": "Compramos un plato cerámico.", + "example_sentence_english": "We bought a ceramic plate.", + "pos": "adjective", + "word_frequency": 21435 + }, + { + "word": "checar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check;to verify", + "example_sentence_native": "Voy a checar el correo.", + "example_sentence_english": "I'm going to check the mail.", + "pos": "verb", + "word_frequency": 21439 + }, + { + "word": "chelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cello", + "example_sentence_native": "Toca el chelo en la orquesta.", + "example_sentence_english": "He plays the cello in the orchestra.", + "pos": "noun", + "word_frequency": 21440 + }, + { + "word": "chévere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool;great", + "example_sentence_native": "¡Qué chévere tu nueva bicicleta!", + "example_sentence_english": "How cool your new bike is!", + "pos": "adjective", + "word_frequency": 21442 + }, + { + "word": "clasicismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "classicism", + "example_sentence_native": "El clasicismo influyó mucho en el arte de esa época.", + "example_sentence_english": "Classicism greatly influenced the art of that era.", + "pos": "noun", + "word_frequency": 21443 + }, + { + "word": "clonación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloning", + "example_sentence_native": "La clonación de animales es un tema controvertido.", + "example_sentence_english": "Animal cloning is a controversial topic.", + "pos": "noun", + "word_frequency": 21445 + }, + { + "word": "cofrade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confrere;member of a brotherhood", + "example_sentence_native": "Los cofrades se preparan para la procesión.", + "example_sentence_english": "The confreres prepare for the procession.", + "pos": "noun", + "word_frequency": 21447 + }, + { + "word": "compania", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "company;companionship", + "example_sentence_native": "Disfruto de la compañía de mis amigos.", + "example_sentence_english": "I enjoy the company of my friends.", + "pos": "noun", + "word_frequency": 21450 + }, + { + "word": "condestable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constable (historical title)", + "example_sentence_native": "El condestable era una figura importante en la corte medieval.", + "example_sentence_english": "The constable was an important figure in the medieval court.", + "pos": "noun", + "word_frequency": 21451 + }, + { + "word": "congelamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freezing;congelation", + "example_sentence_native": "El congelamiento del agua ocurre a cero grados Celsius.", + "example_sentence_english": "The freezing of water occurs at zero degrees Celsius.", + "pos": "noun", + "word_frequency": 21452 + }, + { + "word": "contentar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to please;to satisfy", + "example_sentence_native": "Intentó contentar a todos con su decisión.", + "example_sentence_english": "He tried to please everyone with his decision.", + "pos": "verb", + "word_frequency": 21453 + }, + { + "word": "cortocircuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short circuit", + "example_sentence_native": "Un cortocircuito causó el apagón en la casa.", + "example_sentence_english": "A short circuit caused the power outage in the house.", + "pos": "noun", + "word_frequency": 21454 + }, + { + "word": "cosmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmos", + "example_sentence_native": "El estudio del cosmo es fascinante.", + "example_sentence_english": "The study of the cosmos is fascinating.", + "pos": "noun", + "word_frequency": 21455 + }, + { + "word": "craso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gross;egregious (e.g.;error)", + "example_sentence_native": "Cometió un craso error al no revisar los datos.", + "example_sentence_english": "He made a gross error by not checking the data.", + "pos": "adjective", + "word_frequency": 21457 + }, + { + "word": "cria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offspring;young animal", + "example_sentence_native": "La leona protege a su cría.", + "example_sentence_english": "The lioness protects her offspring.", + "pos": "noun", + "word_frequency": 21458 + }, + { + "word": "crustáceo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crustacean", + "example_sentence_native": "Las langostas son un tipo de crustáceo.", + "example_sentence_english": "Lobsters are a type of crustacean.", + "pos": "noun", + "word_frequency": 21460 + }, + { + "word": "debilitado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakened;debilitated", + "example_sentence_native": "El paciente se sentía muy debilitado después de la enfermedad.", + "example_sentence_english": "The patient felt very weakened after the illness.", + "pos": "adjective", + "word_frequency": 21461 + }, + { + "word": "decaer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decline;to decay;to wane", + "example_sentence_native": "Su salud empezó a decaer rápidamente.", + "example_sentence_english": "His health began to decline rapidly.", + "pos": "verb", + "word_frequency": 21462 + }, + { + "word": "decrecimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decrease;decline;degrowth", + "example_sentence_native": "El decrecimiento económico es una preocupación global.", + "example_sentence_english": "Economic degrowth is a global concern.", + "pos": "noun", + "word_frequency": 21463 + }, + { + "word": "democratizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to democratize", + "example_sentence_native": "Es importante democratizar el acceso a la educación.", + "example_sentence_english": "It is important to democratize access to education.", + "pos": "verb", + "word_frequency": 21464 + }, + { + "word": "denigrar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to denigrate;to disparage", + "example_sentence_native": "No debes denigrar el trabajo de los demás.", + "example_sentence_english": "You should not denigrate the work of others.", + "pos": "verb", + "word_frequency": 21465 + }, + { + "word": "desagradar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to displease;to dislike", + "example_sentence_native": "Me desagrada la gente que miente.", + "example_sentence_english": "I dislike people who lie.", + "pos": "verb", + "word_frequency": 21466 + }, + { + "word": "descalificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disqualify", + "example_sentence_native": "El árbitro tuvo que descalificar al jugador.", + "example_sentence_english": "The referee had to disqualify the player.", + "pos": "verb", + "word_frequency": 21467 + }, + { + "word": "despotismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despotism", + "example_sentence_native": "El despotismo ilustrado fue una forma de gobierno.", + "example_sentence_english": "Enlightened despotism was a form of government.", + "pos": "noun", + "word_frequency": 21468 + }, + { + "word": "diabético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diabetic", + "example_sentence_native": "Mi abuela es diabética y cuida su dieta.", + "example_sentence_english": "My grandmother is diabetic and watches her diet.", + "pos": "adjective", + "word_frequency": 21471 + }, + { + "word": "diseminación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissemination;spread", + "example_sentence_native": "La diseminación de información falsa es un problema.", + "example_sentence_english": "The dissemination of false information is a problem.", + "pos": "noun", + "word_frequency": 21473 + }, + { + "word": "diurno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diurnal;daytime", + "example_sentence_native": "Los animales diurnos están activos durante el día.", + "example_sentence_english": "Diurnal animals are active during the day.", + "pos": "adjective", + "word_frequency": 21474 + }, + { + "word": "drogado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drugged;high (on drugs)", + "example_sentence_native": "El conductor parecía drogado y fue detenido.", + "example_sentence_english": "The driver seemed drugged and was arrested.", + "pos": "adjective", + "word_frequency": 21476 + }, + { + "word": "embriaguez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drunkenness;intoxication", + "example_sentence_native": "La embriaguez al volante es un delito grave.", + "example_sentence_english": "Drunkenness while driving is a serious crime.", + "pos": "noun", + "word_frequency": 21479 + }, + { + "word": "epistemología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epistemology", + "example_sentence_native": "La epistemología es el estudio del conocimiento.", + "example_sentence_english": "Epistemology is the study of knowledge.", + "pos": "noun", + "word_frequency": 21482 + }, + { + "word": "epitafio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epitaph", + "example_sentence_native": "El epitafio en la tumba era muy conmovedor.", + "example_sentence_english": "The epitaph on the tomb was very moving.", + "pos": "noun", + "word_frequency": 21483 + }, + { + "word": "erudición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erudition;scholarship", + "example_sentence_native": "Su erudición en historia era impresionante.", + "example_sentence_english": "His erudition in history was impressive.", + "pos": "noun", + "word_frequency": 21484 + }, + { + "word": "escarnio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scorn;mockery", + "example_sentence_native": "Sufrió el escarnio público por sus acciones.", + "example_sentence_english": "He suffered public scorn for his actions.", + "pos": "noun", + "word_frequency": 21485 + }, + { + "word": "escroto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scrotum", + "example_sentence_native": "El escroto contiene los testículos.", + "example_sentence_english": "The scrotum contains the testicles.", + "pos": "noun", + "word_frequency": 21486 + }, + { + "word": "eslavo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slavic", + "example_sentence_native": "Las lenguas eslavas son un grupo de idiomas.", + "example_sentence_english": "Slavic languages are a group of languages.", + "pos": "adjective", + "word_frequency": 21487 + }, + { + "word": "espacioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spacious;roomy", + "example_sentence_native": "La casa nueva es muy espaciosa.", + "example_sentence_english": "The new house is very spacious.", + "pos": "adjective", + "word_frequency": 21488 + }, + { + "word": "espasmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spasm", + "example_sentence_native": "Tuvo un espasmo muscular en la pierna.", + "example_sentence_english": "He had a muscle spasm in his leg.", + "pos": "noun", + "word_frequency": 21489 + }, + { + "word": "especificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specified", + "example_sentence_native": "El precio especificado en el contrato es final.", + "example_sentence_english": "The price specified in the contract is final.", + "pos": "adjective", + "word_frequency": 21490 + }, + { + "word": "estambre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stamen (botany);worsted yarn (textiles)", + "example_sentence_native": "Los estambres son la parte masculina de la flor.", + "example_sentence_english": "Stamens are the male part of the flower.", + "pos": "noun", + "word_frequency": 21491 + }, + { + "word": "ethernet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ethernet", + "example_sentence_native": "Necesitas un cable Ethernet para conectar el ordenador.", + "example_sentence_english": "You need an Ethernet cable to connect the computer.", + "pos": "noun", + "word_frequency": 21492 + }, + { + "word": "exalcalde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former mayor", + "example_sentence_native": "El exalcalde fue entrevistado sobre el proyecto.", + "example_sentence_english": "The former mayor was interviewed about the project.", + "pos": "noun", + "word_frequency": 21493 + }, + { + "word": "exaltar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exalt;to praise;to excite", + "example_sentence_native": "No debemos exaltar la violencia.", + "example_sentence_english": "We must not exalt violence.", + "pos": "verb", + "word_frequency": 21494 + }, + { + "word": "fastidioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoying;tedious;fastidious", + "example_sentence_native": "Esa tarea es muy fastidiosa.", + "example_sentence_english": "That task is very annoying.", + "pos": "adjective", + "word_frequency": 21497 + }, + { + "word": "fehaciente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reliable;conclusive;authentic", + "example_sentence_native": "Necesitamos pruebas fehacientes de su inocencia.", + "example_sentence_english": "We need conclusive proof of his innocence.", + "pos": "adjective", + "word_frequency": 21500 + }, + { + "word": "fisiológico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiological", + "example_sentence_native": "Estudiamos los procesos fisiológicos del cuerpo.", + "example_sentence_english": "We study the physiological processes of the body.", + "pos": "adjective", + "word_frequency": 21502 + }, + { + "word": "fundamentalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamentalism", + "example_sentence_native": "El fundamentalismo religioso puede ser peligroso.", + "example_sentence_english": "Religious fundamentalism can be dangerous.", + "pos": "noun", + "word_frequency": 21505 + }, + { + "word": "gavilán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hawk;sparrowhawk", + "example_sentence_native": "Un gavilán volaba sobre el campo.", + "example_sentence_english": "A hawk was flying over the field.", + "pos": "noun", + "word_frequency": 21507 + }, + { + "word": "gemir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to groan;to moan;to whimper", + "example_sentence_native": "El perro empezó a gemir de dolor.", + "example_sentence_english": "The dog started to whimper in pain.", + "pos": "verb", + "word_frequency": 21508 + }, + { + "word": "gentilicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demonym;adjective of nationality;origin", + "example_sentence_native": "El gentilicio de España es 'español'.", + "example_sentence_english": "The demonym for Spain is 'Spanish'.", + "pos": "noun", + "word_frequency": 21509 + }, + { + "word": "geólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geologist", + "example_sentence_native": "El geólogo estudió las rocas de la montaña.", + "example_sentence_english": "The geologist studied the rocks of the mountain.", + "pos": "noun", + "word_frequency": 21510 + }, + { + "word": "hacendado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landowner;estate owner", + "example_sentence_native": "El hacendado era dueño de muchas tierras.", + "example_sentence_english": "The landowner owned many lands.", + "pos": "noun", + "word_frequency": 21515 + }, + { + "word": "hemiciclo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemicycle;semicircular chamber", + "example_sentence_native": "El debate tuvo lugar en el hemiciclo del parlamento.", + "example_sentence_english": "The debate took place in the hemicycle of the parliament.", + "pos": "noun", + "word_frequency": 21519 + }, + { + "word": "hidrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydrate", + "example_sentence_native": "El hidrato de carbono es esencial para la energía.", + "example_sentence_english": "Carbohydrate hydrate is essential for energy.", + "pos": "noun", + "word_frequency": 21522 + }, + { + "word": "hidrográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydrographic", + "example_sentence_native": "Realizaron un estudio hidrográfico de la costa.", + "example_sentence_english": "They conducted a hydrographic study of the coast.", + "pos": "adjective", + "word_frequency": 21523 + }, + { + "word": "honorífico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honorary", + "example_sentence_native": "Recibió un doctorado honorífico por su trayectoria.", + "example_sentence_english": "He received an honorary doctorate for his career.", + "pos": "adjective", + "word_frequency": 21524 + }, + { + "word": "horquilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairpin;fork (bike);price range", + "example_sentence_native": "Se puso una horquilla en el pelo.", + "example_sentence_english": "She put a hairpin in her hair.", + "pos": "noun", + "word_frequency": 21526 + }, + { + "word": "humillado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliated", + "example_sentence_native": "Se sintió humillado después del error.", + "example_sentence_english": "He felt humiliated after the mistake.", + "pos": "adjective", + "word_frequency": 21528 + }, + { + "word": "imitador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imitator", + "example_sentence_native": "Era un imitador de voces muy talentoso.", + "example_sentence_english": "He was a very talented voice imitator.", + "pos": "noun", + "word_frequency": 21529 + }, + { + "word": "impregnar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to impregnate;to permeate", + "example_sentence_native": "El olor a humo impregnó toda la ropa.", + "example_sentence_english": "The smell of smoke permeated all the clothes.", + "pos": "verb", + "word_frequency": 21530 + }, + { + "word": "incongruencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incongruity;inconsistency", + "example_sentence_native": "Había una clara incongruencia entre sus palabras y sus acciones.", + "example_sentence_english": "There was a clear incongruity between his words and his actions.", + "pos": "noun", + "word_frequency": 21531 + }, + { + "word": "incursionar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to venture into;to make an incursion", + "example_sentence_native": "Decidió incursionar en el mundo de la política.", + "example_sentence_english": "He decided to venture into the world of politics.", + "pos": "verb", + "word_frequency": 21532 + }, + { + "word": "indecisión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indecision", + "example_sentence_native": "Su indecisión le impidió tomar una decisión rápida.", + "example_sentence_english": "His indecision prevented him from making a quick decision.", + "pos": "noun", + "word_frequency": 21533 + }, + { + "word": "indefensión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "helplessness;defenselessness", + "example_sentence_native": "La víctima se encontraba en un estado de indefensión.", + "example_sentence_english": "The victim was in a state of helplessness.", + "pos": "noun", + "word_frequency": 21534 + }, + { + "word": "indonesio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Indonesian", + "example_sentence_native": "La comida indonesia es muy sabrosa.", + "example_sentence_english": "Indonesian food is very tasty.", + "pos": "adjective", + "word_frequency": 21535 + }, + { + "word": "informador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informant;reporter", + "example_sentence_native": "El informador reveló datos importantes a la prensa.", + "example_sentence_english": "The informant revealed important data to the press.", + "pos": "noun", + "word_frequency": 21536 + }, + { + "word": "injustificable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unjustifiable", + "example_sentence_native": "Su comportamiento fue completamente injustificable.", + "example_sentence_english": "His behavior was completely unjustifiable.", + "pos": "adjective", + "word_frequency": 21537 + }, + { + "word": "inoportuno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inopportune;untimely", + "example_sentence_native": "Su comentario fue inoportuno en ese momento.", + "example_sentence_english": "His comment was inopportune at that moment.", + "pos": "adjective", + "word_frequency": 21538 + }, + { + "word": "intachable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreproachable;impeccable", + "example_sentence_native": "Tiene una reputación intachable en la comunidad.", + "example_sentence_english": "He has an irreproachable reputation in the community.", + "pos": "adjective", + "word_frequency": 21539 + }, + { + "word": "internacionalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internationalist (person specializing in international relations)", + "example_sentence_native": "Es un reconocido internacionalista y analista político.", + "example_sentence_english": "He is a renowned internationalist and political analyst.", + "pos": "noun", + "word_frequency": 21540 + }, + { + "word": "jubileo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jubilee", + "example_sentence_native": "Celebraron el jubileo de oro de la empresa.", + "example_sentence_english": "They celebrated the company's golden jubilee.", + "pos": "noun", + "word_frequency": 21544 + }, + { + "word": "justificable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justifiable", + "example_sentence_native": "Su decisión fue completamente justificable dadas las circunstancias.", + "example_sentence_english": "His decision was completely justifiable given the circumstances.", + "pos": "adjective", + "word_frequency": 21545 + }, + { + "word": "laca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacquer;hairspray", + "example_sentence_native": "Usó laca para fijar su peinado.", + "example_sentence_english": "She used hairspray to fix her hairstyle.", + "pos": "noun", + "word_frequency": 21549 + }, + { + "word": "lastimado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurt;injured", + "example_sentence_native": "Tenía el brazo lastimado después de la caída.", + "example_sentence_english": "He had his arm hurt after the fall.", + "pos": "adjective", + "word_frequency": 21550 + }, + { + "word": "lejía", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bleach", + "example_sentence_native": "Limpió el baño con lejía para desinfectar.", + "example_sentence_english": "She cleaned the bathroom with bleach to disinfect.", + "pos": "noun", + "word_frequency": 21552 + }, + { + "word": "libio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Libyan", + "example_sentence_native": "La cultura libia es rica en historia.", + "example_sentence_english": "Libyan culture is rich in history.", + "pos": "adjective", + "word_frequency": 21555 + }, + { + "word": "libreria", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bookstore", + "example_sentence_native": "Compré un libro nuevo en la librería.", + "example_sentence_english": "I bought a new book at the bookstore.", + "pos": "noun", + "word_frequency": 21556 + }, + { + "word": "lingote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingot", + "example_sentence_native": "Encontraron un lingote de oro en el barco hundido.", + "example_sentence_english": "They found a gold ingot in the sunken ship.", + "pos": "noun", + "word_frequency": 21557 + }, + { + "word": "madriguera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burrow;den", + "example_sentence_native": "El conejo se escondió en su madriguera.", + "example_sentence_english": "The rabbit hid in its burrow.", + "pos": "noun", + "word_frequency": 21565 + }, + { + "word": "malhechor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evildoer;wrongdoer", + "example_sentence_native": "La policía persiguió al malhechor por las calles.", + "example_sentence_english": "The police chased the evildoer through the streets.", + "pos": "noun", + "word_frequency": 21566 + }, + { + "word": "manicura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "manicure", + "example_sentence_native": "Se hizo la manicura para la fiesta.", + "example_sentence_english": "She got a manicure for the party.", + "pos": "noun", + "word_frequency": 21567 + }, + { + "word": "mantilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mantilla (a lace or silk veil or shawl)", + "example_sentence_native": "La novia llevaba una hermosa mantilla de encaje.", + "example_sentence_english": "The bride wore a beautiful lace mantilla.", + "pos": "noun", + "word_frequency": 21568 + }, + { + "word": "mayorazgo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entailment;primogeniture", + "example_sentence_native": "El mayorazgo aseguraba que la propiedad familiar no se dividiera.", + "example_sentence_english": "The entailment ensured that the family property would not be divided.", + "pos": "noun", + "word_frequency": 21570 + }, + { + "word": "mazmorra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dungeon", + "example_sentence_native": "Los prisioneros fueron encerrados en la oscura mazmorra.", + "example_sentence_english": "The prisoners were locked in the dark dungeon.", + "pos": "noun", + "word_frequency": 21571 + }, + { + "word": "mejorado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improved;enhanced", + "example_sentence_native": "La calidad del producto ha mejorado significativamente.", + "example_sentence_english": "The product quality has improved significantly.", + "pos": "adjective", + "word_frequency": 21573 + }, + { + "word": "merluza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hake (fish)", + "example_sentence_native": "Pedimos merluza a la plancha para cenar.", + "example_sentence_english": "We ordered grilled hake for dinner.", + "pos": "noun", + "word_frequency": 21574 + }, + { + "word": "milanés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Milanese", + "example_sentence_native": "La moda milanesa es muy elegante.", + "example_sentence_english": "Milanese fashion is very elegant.", + "pos": "adjective", + "word_frequency": 21575 + }, + { + "word": "milonga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "milonga (a type of Argentine folk music and dance;or a social tango event)", + "example_sentence_native": "Fuimos a una milonga para bailar tango.", + "example_sentence_english": "We went to a milonga to dance tango.", + "pos": "noun", + "word_frequency": 21576 + }, + { + "word": "minuta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minutes (of a meeting);draft", + "example_sentence_native": "Por favor, toma la minuta de la reunión.", + "example_sentence_english": "Please take the minutes of the meeting.", + "pos": "noun", + "word_frequency": 21577 + }, + { + "word": "montículo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mound;hillock", + "example_sentence_native": "Había un pequeño montículo en el centro del campo.", + "example_sentence_english": "There was a small mound in the center of the field.", + "pos": "noun", + "word_frequency": 21582 + }, + { + "word": "monóxido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monoxide", + "example_sentence_native": "El monóxido de carbono es un gas peligroso.", + "example_sentence_english": "Carbon monoxide is a dangerous gas.", + "pos": "noun", + "word_frequency": 21583 + }, + { + "word": "nivelación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leveling;equalization", + "example_sentence_native": "Se necesita una nivelación del terreno antes de construir.", + "example_sentence_english": "Ground leveling is needed before building.", + "pos": "noun", + "word_frequency": 21594 + }, + { + "word": "patrullaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patrol;patrolling", + "example_sentence_native": "El patrullaje nocturno es esencial para la seguridad.", + "example_sentence_english": "Night patrolling is essential for security.", + "pos": "noun", + "word_frequency": 21601 + }, + { + "word": "patrullar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to patrol", + "example_sentence_native": "La policía debe patrullar las calles regularmente.", + "example_sentence_english": "The police must patrol the streets regularly.", + "pos": "verb", + "word_frequency": 21602 + }, + { + "word": "peje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fish (colloquial);guy;fellow (colloquial)", + "example_sentence_native": "Ese peje es muy escurridizo.", + "example_sentence_english": "That guy is very elusive.", + "pos": "noun", + "word_frequency": 21603 + }, + { + "word": "peripecia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peripeteia;vicissitude;mishap", + "example_sentence_native": "La novela está llena de peripecias inesperadas.", + "example_sentence_english": "The novel is full of unexpected mishaps.", + "pos": "noun", + "word_frequency": 21604 + }, + { + "word": "petrolífero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil-bearing;petroleum-related", + "example_sentence_native": "La región es rica en yacimientos petrolíferos.", + "example_sentence_english": "The region is rich in oil-bearing deposits.", + "pos": "adjective", + "word_frequency": 21605 + }, + { + "word": "policiaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police (adj.);crime (adj.);detective (adj.)", + "example_sentence_native": "Me gusta leer novelas policiacas.", + "example_sentence_english": "I like to read crime novels.", + "pos": "adjective", + "word_frequency": 21612 + }, + { + "word": "polio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polio;poliomyelitis", + "example_sentence_native": "La vacuna contra la polio ha salvado muchas vidas.", + "example_sentence_english": "The polio vaccine has saved many lives.", + "pos": "noun", + "word_frequency": 21613 + }, + { + "word": "priísta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "PRI member;supporter (Mexican political party)", + "example_sentence_native": "El candidato priísta ganó las elecciones.", + "example_sentence_english": "The PRI candidate won the elections.", + "pos": "noun", + "word_frequency": 21617 + }, + { + "word": "profesar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to profess;to declare;to practice (a religion)", + "example_sentence_native": "Él profesa una gran admiración por su maestro.", + "example_sentence_english": "He professes great admiration for his teacher.", + "pos": "verb", + "word_frequency": 21618 + }, + { + "word": "prontuario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "handbook;compendium;criminal record", + "example_sentence_native": "El prontuario del delincuente era extenso.", + "example_sentence_english": "The criminal's record was extensive.", + "pos": "noun", + "word_frequency": 21621 + }, + { + "word": "prospección", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prospecting;exploration;market research", + "example_sentence_native": "La prospección de nuevos mercados es crucial para el crecimiento.", + "example_sentence_english": "Prospecting for new markets is crucial for growth.", + "pos": "noun", + "word_frequency": 21622 + }, + { + "word": "protón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proton", + "example_sentence_native": "El protón tiene una carga eléctrica positiva.", + "example_sentence_english": "The proton has a positive electrical charge.", + "pos": "noun", + "word_frequency": 21624 + }, + { + "word": "quilate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carat", + "example_sentence_native": "El diamante es de un quilate.", + "example_sentence_english": "The diamond is one carat.", + "pos": "noun", + "word_frequency": 21627 + }, + { + "word": "quinua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quinoa", + "example_sentence_native": "La quinua es un alimento muy nutritivo.", + "example_sentence_english": "Quinoa is a very nutritious food.", + "pos": "noun", + "word_frequency": 21628 + }, + { + "word": "reajuste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "readjustment;adjustment;reshuffle", + "example_sentence_native": "Se anunció un reajuste salarial para los empleados.", + "example_sentence_english": "A salary readjustment was announced for the employees.", + "pos": "noun", + "word_frequency": 21630 + }, + { + "word": "recolecta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection;gathering;harvest", + "example_sentence_native": "La recolecta de fondos fue un éxito.", + "example_sentence_english": "The fundraising collection was a success.", + "pos": "noun", + "word_frequency": 21631 + }, + { + "word": "redefinir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redefine", + "example_sentence_native": "Es necesario redefinir nuestros objetivos.", + "example_sentence_english": "It is necessary to redefine our objectives.", + "pos": "verb", + "word_frequency": 21632 + }, + { + "word": "refrigerante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coolant;refrigerant", + "example_sentence_native": "El coche necesita más refrigerante.", + "example_sentence_english": "The car needs more coolant.", + "pos": "noun", + "word_frequency": 21633 + }, + { + "word": "reluciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shiny;gleaming;sparkling", + "example_sentence_native": "El coche nuevo estaba reluciente.", + "example_sentence_english": "The new car was gleaming.", + "pos": "adjective", + "word_frequency": 21635 + }, + { + "word": "repoblación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repopulation;reforestation;restocking", + "example_sentence_native": "El proyecto busca la repoblación de especies nativas.", + "example_sentence_english": "The project seeks the repopulation of native species.", + "pos": "noun", + "word_frequency": 21637 + }, + { + "word": "reputado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reputed;renowned;well-known", + "example_sentence_native": "Es un científico reputado en su campo.", + "example_sentence_english": "He is a renowned scientist in his field.", + "pos": "adjective", + "word_frequency": 21638 + }, + { + "word": "reticencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reticence;reluctance;hesitation", + "example_sentence_native": "Mostró reticencia a aceptar la propuesta.", + "example_sentence_english": "He showed reticence to accept the proposal.", + "pos": "noun", + "word_frequency": 21639 + }, + { + "word": "reversión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reversion", + "example_sentence_native": "La reversión de la decisión fue inesperada.", + "example_sentence_english": "The reversion of the decision was unexpected.", + "pos": "noun", + "word_frequency": 21640 + }, + { + "word": "salvedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proviso", + "example_sentence_native": "Hizo una salvedad importante antes de firmar el contrato.", + "example_sentence_english": "He made an important proviso before signing the contract.", + "pos": "noun", + "word_frequency": 21643 + }, + { + "word": "secadora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dryer", + "example_sentence_native": "La ropa está en la secadora.", + "example_sentence_english": "The clothes are in the dryer.", + "pos": "noun", + "word_frequency": 21647 + }, + { + "word": "semestral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semestral", + "example_sentence_native": "Tenemos exámenes semestrales en la universidad.", + "example_sentence_english": "We have semestral exams at the university.", + "pos": "adjective", + "word_frequency": 21648 + }, + { + "word": "separacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separation", + "example_sentence_native": "La separación de los elementos es crucial para el análisis.", + "example_sentence_english": "The separation of the elements is crucial for the analysis.", + "pos": "noun", + "word_frequency": 21650 + }, + { + "word": "serafín", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seraph", + "example_sentence_native": "En la Biblia se menciona a los serafines.", + "example_sentence_english": "Seraphs are mentioned in the Bible.", + "pos": "noun", + "word_frequency": 21651 + }, + { + "word": "señalamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sign", + "example_sentence_native": "Los señalamientos de tráfico son importantes para la seguridad.", + "example_sentence_english": "Traffic signs are important for safety.", + "pos": "noun", + "word_frequency": 21652 + }, + { + "word": "simétrico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symmetrical", + "example_sentence_native": "El diseño del edificio es perfectamente simétrico.", + "example_sentence_english": "The building's design is perfectly symmetrical.", + "pos": "adjective", + "word_frequency": 21654 + }, + { + "word": "sofa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sofa", + "example_sentence_native": "Me gusta leer en el sofá.", + "example_sentence_english": "I like to read on the sofa.", + "pos": "noun", + "word_frequency": 21655 + }, + { + "word": "sugerente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggestive", + "example_sentence_native": "La pintura tiene un estilo muy sugerente.", + "example_sentence_english": "The painting has a very suggestive style.", + "pos": "adjective", + "word_frequency": 21659 + }, + { + "word": "sulfuro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfide", + "example_sentence_native": "El sulfuro de hidrógeno tiene un olor característico.", + "example_sentence_english": "Hydrogen sulfide has a characteristic smell.", + "pos": "noun", + "word_frequency": 21660 + }, + { + "word": "sustentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supported", + "example_sentence_native": "Su argumento está bien sustentado con pruebas.", + "example_sentence_english": "His argument is well supported by evidence.", + "pos": "adjective", + "word_frequency": 21661 + }, + { + "word": "súplica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plea", + "example_sentence_native": "Hizo una súplica desesperada por ayuda.", + "example_sentence_english": "He made a desperate plea for help.", + "pos": "noun", + "word_frequency": 21663 + }, + { + "word": "tee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tee (golf)", + "example_sentence_native": "Colocó la pelota en el tee.", + "example_sentence_english": "He placed the ball on the tee.", + "pos": "noun", + "word_frequency": 21666 + }, + { + "word": "toallita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wipe", + "example_sentence_native": "Usa una toallita húmeda para limpiar la mesa.", + "example_sentence_english": "Use a wet wipe to clean the table.", + "pos": "noun", + "word_frequency": 21669 + }, + { + "word": "toser", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cough", + "example_sentence_native": "Empezó a toser después de respirar el humo.", + "example_sentence_english": "He started to cough after breathing the smoke.", + "pos": "verb", + "word_frequency": 21670 + }, + { + "word": "trineo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleigh", + "example_sentence_native": "Papá Noel viaja en un trineo.", + "example_sentence_english": "Santa Claus travels in a sleigh.", + "pos": "noun", + "word_frequency": 21672 + }, + { + "word": "tuna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prickly pear", + "example_sentence_native": "Me gusta el sabor dulce de la tuna.", + "example_sentence_english": "I like the sweet taste of the prickly pear.", + "pos": "noun", + "word_frequency": 21673 + }, + { + "word": "urinario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urinary", + "example_sentence_native": "Tiene una infección del tracto urinario.", + "example_sentence_english": "He has a urinary tract infection.", + "pos": "adjective", + "word_frequency": 21674 + }, + { + "word": "usura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usury", + "example_sentence_native": "La ley prohíbe la usura.", + "example_sentence_english": "The law prohibits usury.", + "pos": "noun", + "word_frequency": 21675 + }, + { + "word": "vendetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vendetta", + "example_sentence_native": "La familia juró una vendetta contra sus enemigos.", + "example_sentence_english": "The family swore a vendetta against their enemies.", + "pos": "noun", + "word_frequency": 21677 + }, + { + "word": "ventilar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ventilate", + "example_sentence_native": "Es importante ventilar la habitación cada día.", + "example_sentence_english": "It's important to ventilate the room every day.", + "pos": "verb", + "word_frequency": 21678 + }, + { + "word": "vulva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulva", + "example_sentence_native": "La vulva es la parte externa de los genitales femeninos.", + "example_sentence_english": "The vulva is the external part of the female genitalia.", + "pos": "noun", + "word_frequency": 21681 + }, + { + "word": "wc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "WC;toilet", + "example_sentence_native": "¿Dónde está el WC, por favor?", + "example_sentence_english": "Where is the WC, please?", + "pos": "noun", + "word_frequency": 21682 + }, + { + "word": "acrobacia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acrobatics", + "example_sentence_native": "La gimnasta realizó una impresionante acrobacia.", + "example_sentence_english": "The gymnast performed an impressive acrobatic feat.", + "pos": "noun", + "word_frequency": 21686 + }, + { + "word": "adinerado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wealthy;rich", + "example_sentence_native": "Es un hombre muy adinerado.", + "example_sentence_english": "He is a very wealthy man.", + "pos": "adjective", + "word_frequency": 21687 + }, + { + "word": "afable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affable;friendly", + "example_sentence_native": "Siempre ha sido una persona muy afable con todos.", + "example_sentence_english": "He has always been a very affable person with everyone.", + "pos": "adjective", + "word_frequency": 21688 + }, + { + "word": "alquitrán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tar", + "example_sentence_native": "El camino estaba cubierto de alquitrán.", + "example_sentence_english": "The road was covered in tar.", + "pos": "noun", + "word_frequency": 21691 + }, + { + "word": "angelical", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angelic", + "example_sentence_native": "Tenía una voz angelical.", + "example_sentence_english": "She had an angelic voice.", + "pos": "adjective", + "word_frequency": 21693 + }, + { + "word": "anticomunista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-communist", + "example_sentence_native": "Sus ideas eran fuertemente anticomunistas.", + "example_sentence_english": "His ideas were strongly anti-communist.", + "pos": "adjective", + "word_frequency": 21694 + }, + { + "word": "aorta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aorta", + "example_sentence_native": "La aorta es la arteria principal del cuerpo.", + "example_sentence_english": "The aorta is the body's main artery.", + "pos": "noun", + "word_frequency": 21696 + }, + { + "word": "apegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attach;to cling;to stick to", + "example_sentence_native": "Es importante apegarse a las reglas.", + "example_sentence_english": "It is important to stick to the rules.", + "pos": "verb", + "word_frequency": 21697 + }, + { + "word": "arete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earring (Latin America)", + "example_sentence_native": "Se puso un arete nuevo.", + "example_sentence_english": "She put on a new earring.", + "pos": "noun", + "word_frequency": 21699 + }, + { + "word": "armonización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmonization", + "example_sentence_native": "Se busca la armonización de las leyes.", + "example_sentence_english": "The harmonization of laws is sought.", + "pos": "noun", + "word_frequency": 21700 + }, + { + "word": "arrodillar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kneel", + "example_sentence_native": "Se arrodilló para atarse los cordones.", + "example_sentence_english": "He knelt to tie his shoelaces.", + "pos": "verb", + "word_frequency": 21701 + }, + { + "word": "artimaña", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trick;stratagem;ruse", + "example_sentence_native": "Usó una artimaña para conseguir lo que quería.", + "example_sentence_english": "He used a trick to get what he wanted.", + "pos": "noun", + "word_frequency": 21702 + }, + { + "word": "atorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuck;clogged;choked", + "example_sentence_native": "El desagüe está atorado.", + "example_sentence_english": "The drain is clogged.", + "pos": "adjective", + "word_frequency": 21706 + }, + { + "word": "atormentar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to torment;to torture", + "example_sentence_native": "Los recuerdos lo atormentaban.", + "example_sentence_english": "The memories tormented him.", + "pos": "verb", + "word_frequency": 21707 + }, + { + "word": "autorretrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-portrait", + "example_sentence_native": "La artista pintó un autorretrato.", + "example_sentence_english": "The artist painted a self-portrait.", + "pos": "noun", + "word_frequency": 21708 + }, + { + "word": "bajeza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baseness;meanness;low act", + "example_sentence_native": "Fue una bajeza lo que hizo.", + "example_sentence_english": "What he did was a low act.", + "pos": "noun", + "word_frequency": 21710 + }, + { + "word": "balanceado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balanced", + "example_sentence_native": "Necesitamos una dieta balanceada.", + "example_sentence_english": "We need a balanced diet.", + "pos": "adjective", + "word_frequency": 21711 + }, + { + "word": "bambalina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stage flat;wing (of a stage)", + "example_sentence_native": "Los actores esperaban entre bambalinas.", + "example_sentence_english": "The actors waited in the wings.", + "pos": "noun", + "word_frequency": 21713 + }, + { + "word": "beagle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beagle", + "example_sentence_native": "Mi perro es un beagle.", + "example_sentence_english": "My dog is a beagle.", + "pos": "noun", + "word_frequency": 21715 + }, + { + "word": "benevolencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benevolence", + "example_sentence_native": "Actuó con gran benevolencia.", + "example_sentence_english": "He acted with great benevolence.", + "pos": "noun", + "word_frequency": 21717 + }, + { + "word": "bienaventurado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blessed;blissful", + "example_sentence_native": "Los bienaventurados heredarán la tierra.", + "example_sentence_english": "The blessed shall inherit the earth.", + "pos": "adjective", + "word_frequency": 21719 + }, + { + "word": "bipartidista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bipartisan", + "example_sentence_native": "Se busca una solución bipartidista para el problema.", + "example_sentence_english": "A bipartisan solution is sought for the problem.", + "pos": "adjective", + "word_frequency": 21721 + }, + { + "word": "bloqueador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blocker;sunscreen", + "example_sentence_native": "No olvides ponerte bloqueador solar antes de ir a la playa.", + "example_sentence_english": "Don't forget to put on sunscreen before going to the beach.", + "pos": "noun", + "word_frequency": 21722 + }, + { + "word": "cabotaje", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cabotage", + "example_sentence_native": "Las leyes de cabotaje regulan el transporte marítimo nacional.", + "example_sentence_english": "Cabotage laws regulate national maritime transport.", + "pos": "noun", + "word_frequency": 21728 + }, + { + "word": "cautividad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivity", + "example_sentence_native": "Muchos animales nacidos en cautividad nunca han visto la naturaleza.", + "example_sentence_english": "Many animals born in captivity have never seen nature.", + "pos": "noun", + "word_frequency": 21733 + }, + { + "word": "celsius", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Celsius", + "example_sentence_native": "La temperatura hoy es de 25 grados Celsius.", + "example_sentence_english": "The temperature today is 25 degrees Celsius.", + "pos": "noun", + "word_frequency": 21734 + }, + { + "word": "chola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chola (indigenous or mestiza woman;often with cultural connotations)", + "example_sentence_native": "En algunas regiones andinas, 'chola' se refiere a una mujer mestiza o indígena.", + "example_sentence_english": "In some Andean regions, 'chola' refers to a mestiza or indigenous woman.", + "pos": "noun", + "word_frequency": 21736 + }, + { + "word": "circulante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circulating;current (as in currency)", + "example_sentence_native": "La cantidad de dinero circulante en la economía ha aumentado.", + "example_sentence_english": "The amount of circulating money in the economy has increased.", + "pos": "adjective", + "word_frequency": 21738 + }, + { + "word": "confeccionado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made;manufactured;tailored", + "example_sentence_native": "El vestido fue confeccionado a mano por una modista.", + "example_sentence_english": "The dress was handmade by a seamstress.", + "pos": "adjective", + "word_frequency": 21742 + }, + { + "word": "conversatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discussion forum;talk;colloquium", + "example_sentence_native": "Participamos en un conversatorio sobre el futuro de la educación.", + "example_sentence_english": "We participated in a discussion forum on the future of education.", + "pos": "noun", + "word_frequency": 21743 + }, + { + "word": "coronario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coronary", + "example_sentence_native": "El paciente sufrió un ataque coronario.", + "example_sentence_english": "The patient suffered a coronary attack.", + "pos": "adjective", + "word_frequency": 21744 + }, + { + "word": "crudeza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rawness;harshness;crudeness", + "example_sentence_native": "La crudeza de la realidad golpeó a todos.", + "example_sentence_english": "The harshness of reality hit everyone.", + "pos": "noun", + "word_frequency": 21746 + }, + { + "word": "culpado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blamed;guilty (as in 'the blamed one')", + "example_sentence_native": "El hombre culpado negó todas las acusaciones.", + "example_sentence_english": "The blamed man denied all accusations.", + "pos": "adjective", + "word_frequency": 21747 + }, + { + "word": "dalia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dahlia", + "example_sentence_native": "Las dalias son flores muy coloridas y hermosas.", + "example_sentence_english": "Dahlias are very colorful and beautiful flowers.", + "pos": "noun", + "word_frequency": 21748 + }, + { + "word": "degradante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "degrading", + "example_sentence_native": "Fue una experiencia degradante para todos los involucrados.", + "example_sentence_english": "It was a degrading experience for everyone involved.", + "pos": "adjective", + "word_frequency": 21751 + }, + { + "word": "desenfrenado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unrestrained;rampant;wild", + "example_sentence_native": "La violencia desenfrenada es un problema grave en la ciudad.", + "example_sentence_english": "Unrestrained violence is a serious problem in the city.", + "pos": "adjective", + "word_frequency": 21752 + }, + { + "word": "desgastado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worn out;worn down;frayed", + "example_sentence_native": "Sus zapatos estaban viejos y desgastados.", + "example_sentence_english": "His shoes were old and worn out.", + "pos": "adjective", + "word_frequency": 21753 + }, + { + "word": "despreocupado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefree;unworried", + "example_sentence_native": "Siempre ha sido una persona despreocupada y optimista.", + "example_sentence_english": "He has always been a carefree and optimistic person.", + "pos": "adjective", + "word_frequency": 21754 + }, + { + "word": "despropósito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonsense;absurdity;blunder", + "example_sentence_native": "Decir eso en este momento sería un despropósito.", + "example_sentence_english": "Saying that right now would be nonsense.", + "pos": "noun", + "word_frequency": 21755 + }, + { + "word": "dharma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dharma", + "example_sentence_native": "En el budismo, el dharma se refiere a las enseñanzas de Buda.", + "example_sentence_english": "In Buddhism, dharma refers to the teachings of Buddha.", + "pos": "noun", + "word_frequency": 21756 + }, + { + "word": "disolvente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissolving;solvent (as in a substance)", + "example_sentence_native": "Este líquido es un potente disolvente de grasas.", + "example_sentence_english": "This liquid is a powerful fat-dissolving agent.", + "pos": "adjective", + "word_frequency": 21758 + }, + { + "word": "dramatismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dramatism", + "example_sentence_native": "La película estaba llena de dramatismo y emoción.", + "example_sentence_english": "The movie was full of dramatism and emotion.", + "pos": "noun", + "word_frequency": 21762 + }, + { + "word": "durabilidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "durability", + "example_sentence_native": "La durabilidad de este material es impresionante.", + "example_sentence_english": "The durability of this material is impressive.", + "pos": "noun", + "word_frequency": 21765 + }, + { + "word": "ejemplificar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exemplify", + "example_sentence_native": "Puedes ejemplificar tu argumento con un caso real.", + "example_sentence_english": "You can exemplify your argument with a real case.", + "pos": "verb", + "word_frequency": 21768 + }, + { + "word": "emoji", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emoji", + "example_sentence_native": "Ella me envió un mensaje con un emoji sonriente.", + "example_sentence_english": "She sent me a message with a smiling emoji.", + "pos": "noun", + "word_frequency": 21770 + }, + { + "word": "empobrecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impoverished", + "example_sentence_native": "La región ha estado empobrecida por la sequía.", + "example_sentence_english": "The region has been impoverished by the drought.", + "pos": "adjective", + "word_frequency": 21771 + }, + { + "word": "empuñadura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handle", + "example_sentence_native": "La empuñadura de la espada era de cuero.", + "example_sentence_english": "The handle of the sword was made of leather.", + "pos": "noun", + "word_frequency": 21772 + }, + { + "word": "encuadre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framing", + "example_sentence_native": "El encuadre de la fotografía era perfecto.", + "example_sentence_english": "The framing of the photograph was perfect.", + "pos": "noun", + "word_frequency": 21774 + }, + { + "word": "equivocadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistakenly", + "example_sentence_native": "Respondió equivocadamente a la pregunta del examen.", + "example_sentence_english": "He mistakenly answered the exam question.", + "pos": "adverb", + "word_frequency": 21778 + }, + { + "word": "espinaca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spinach", + "example_sentence_native": "Me gusta añadir espinaca a mis batidos verdes.", + "example_sentence_english": "I like to add spinach to my green smoothies.", + "pos": "noun", + "word_frequency": 21779 + }, + { + "word": "esporádico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sporadic", + "example_sentence_native": "Las lluvias han sido esporádicas este verano.", + "example_sentence_english": "The rains have been sporadic this summer.", + "pos": "adjective", + "word_frequency": 21780 + }, + { + "word": "esposado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handcuffed", + "example_sentence_native": "El sospechoso fue encontrado esposado en la escena.", + "example_sentence_english": "The suspect was found handcuffed at the scene.", + "pos": "adjective", + "word_frequency": 21781 + }, + { + "word": "estremecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shake", + "example_sentence_native": "La noticia lo hizo estremecer de miedo.", + "example_sentence_english": "The news made him shake with fear.", + "pos": "verb", + "word_frequency": 21782 + }, + { + "word": "examinado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "examined", + "example_sentence_native": "El paciente fue examinado cuidadosamente por el médico.", + "example_sentence_english": "The patient was carefully examined by the doctor.", + "pos": "adjective", + "word_frequency": 21786 + }, + { + "word": "exjefe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "former boss", + "example_sentence_native": "Mi exjefe me llamó para ofrecerme un nuevo puesto.", + "example_sentence_english": "My former boss called me to offer a new position.", + "pos": "noun", + "word_frequency": 21787 + }, + { + "word": "femoral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "femoral", + "example_sentence_native": "Sufrió una fractura femoral en el accidente.", + "example_sentence_english": "He suffered a femoral fracture in the accident.", + "pos": "adjective", + "word_frequency": 21790 + }, + { + "word": "fisonomía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physiognomy", + "example_sentence_native": "Su fisonomía revelaba una profunda tristeza.", + "example_sentence_english": "His physiognomy revealed a deep sadness.", + "pos": "noun", + "word_frequency": 21792 + }, + { + "word": "flequillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bangs", + "example_sentence_native": "Se cortó el flequillo para cambiar de look.", + "example_sentence_english": "She cut her bangs to change her look.", + "pos": "noun", + "word_frequency": 21793 + }, + { + "word": "féretro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coffin", + "example_sentence_native": "El féretro fue llevado en hombros por sus amigos.", + "example_sentence_english": "The coffin was carried on the shoulders of his friends.", + "pos": "noun", + "word_frequency": 21798 + }, + { + "word": "garita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sentry box", + "example_sentence_native": "El guardia de seguridad estaba en la garita de entrada.", + "example_sentence_english": "The security guard was in the entrance sentry box.", + "pos": "noun", + "word_frequency": 21799 + }, + { + "word": "gorrión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparrow", + "example_sentence_native": "Un gorrión se posó en la ventana.", + "example_sentence_english": "A sparrow landed on the window.", + "pos": "noun", + "word_frequency": 21800 + }, + { + "word": "gulag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gulag", + "example_sentence_native": "Millones de personas sufrieron en los gulags soviéticos.", + "example_sentence_english": "Millions of people suffered in the Soviet gulags.", + "pos": "noun", + "word_frequency": 21803 + }, + { + "word": "hachís", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hashish", + "example_sentence_native": "El hachís es una sustancia ilegal en muchos países.", + "example_sentence_english": "Hashish is an illegal substance in many countries.", + "pos": "noun", + "word_frequency": 21804 + }, + { + "word": "hartazgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fed up feeling;satiety;surfeit", + "example_sentence_native": "Siento un hartazgo de tanta burocracia.", + "example_sentence_english": "I feel fed up with so much bureaucracy.", + "pos": "noun", + "word_frequency": 21807 + }, + { + "word": "hobbie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hobby", + "example_sentence_native": "Mi hobbie favorito es leer.", + "example_sentence_english": "My favorite hobby is reading.", + "pos": "noun", + "word_frequency": 21810 + }, + { + "word": "homenajeado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honored;paid tribute to", + "example_sentence_native": "El escritor fue homenajeado por su trayectoria.", + "example_sentence_english": "The writer was honored for his career.", + "pos": "adjective", + "word_frequency": 21811 + }, + { + "word": "hun", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hun", + "example_sentence_native": "Los hunos fueron un pueblo nómada.", + "example_sentence_english": "The Huns were a nomadic people.", + "pos": "noun", + "word_frequency": 21815 + }, + { + "word": "hábilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skillfully;ably", + "example_sentence_native": "Resolvió el problema hábilmente.", + "example_sentence_english": "He skillfully solved the problem.", + "pos": "adverb", + "word_frequency": 21817 + }, + { + "word": "imaginable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginable", + "example_sentence_native": "Hizo todo lo imaginable para ayudar.", + "example_sentence_english": "He did everything imaginable to help.", + "pos": "adjective", + "word_frequency": 21818 + }, + { + "word": "implemento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implement;tool;device", + "example_sentence_native": "Necesitamos un implemento para cavar.", + "example_sentence_english": "We need an implement to dig.", + "pos": "noun", + "word_frequency": 21819 + }, + { + "word": "informatica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computer science;informatics", + "example_sentence_native": "Estudió informatica en la universidad.", + "example_sentence_english": "He studied computer science at university.", + "pos": "noun", + "word_frequency": 21821 + }, + { + "word": "insatisfecho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissatisfied;unsatisfied", + "example_sentence_native": "El cliente estaba insatisfecho con el servicio.", + "example_sentence_english": "The customer was dissatisfied with the service.", + "pos": "adjective", + "word_frequency": 21822 + }, + { + "word": "instituido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instituted;established", + "example_sentence_native": "La ley fue instituida el año pasado.", + "example_sentence_english": "The law was instituted last year.", + "pos": "adjective", + "word_frequency": 21823 + }, + { + "word": "intelectualidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intellectuality;intelligentsia", + "example_sentence_native": "La intelectualidad del país debatió el tema.", + "example_sentence_english": "The country's intelligentsia debated the topic.", + "pos": "noun", + "word_frequency": 21824 + }, + { + "word": "irritable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritable", + "example_sentence_native": "Estaba muy irritable por la falta de sueño.", + "example_sentence_english": "He was very irritable due to lack of sleep.", + "pos": "adjective", + "word_frequency": 21826 + }, + { + "word": "jalón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "milestone;pull;tug", + "example_sentence_native": "Este proyecto es un jalón importante para la empresa.", + "example_sentence_english": "This project is an important milestone for the company.", + "pos": "noun", + "word_frequency": 21827 + }, + { + "word": "jarrón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vase", + "example_sentence_native": "Puso flores frescas en el jarrón.", + "example_sentence_english": "She put fresh flowers in the vase.", + "pos": "noun", + "word_frequency": 21829 + }, + { + "word": "junco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reed;rush", + "example_sentence_native": "Los juncos crecen a orillas del río.", + "example_sentence_english": "Reeds grow on the riverbanks.", + "pos": "noun", + "word_frequency": 21830 + }, + { + "word": "laborar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work;to labor", + "example_sentence_native": "Es importante laborar con dedicación.", + "example_sentence_english": "It is important to work with dedication.", + "pos": "verb", + "word_frequency": 21835 + }, + { + "word": "librado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "issued (e.g.;a check);freed;delivered", + "example_sentence_native": "El cheque fue librado a su nombre.", + "example_sentence_english": "The check was issued in his name.", + "pos": "adjective", + "word_frequency": 21837 + }, + { + "word": "lija", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sandpaper", + "example_sentence_native": "Necesito lija para alisar la madera.", + "example_sentence_english": "I need sandpaper to smooth the wood.", + "pos": "noun", + "word_frequency": 21838 + }, + { + "word": "linfático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lymphatic", + "example_sentence_native": "El sistema linfático es parte del sistema inmune.", + "example_sentence_english": "The lymphatic system is part of the immune system.", + "pos": "adjective", + "word_frequency": 21839 + }, + { + "word": "lucido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lucid;brilliant", + "example_sentence_native": "Su discurso fue muy lúcido y persuasivo.", + "example_sentence_english": "His speech was very lucid and persuasive.", + "pos": "adjective", + "word_frequency": 21840 + }, + { + "word": "lúdico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playful;recreational", + "example_sentence_native": "Las actividades lúdicas son importantes para el desarrollo infantil.", + "example_sentence_english": "Playful activities are important for child development.", + "pos": "adjective", + "word_frequency": 21843 + }, + { + "word": "lúgubre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gloomy;dismal", + "example_sentence_native": "El ambiente en la vieja casa era lúgubre y silencioso.", + "example_sentence_english": "The atmosphere in the old house was gloomy and silent.", + "pos": "adjective", + "word_frequency": 21844 + }, + { + "word": "malgastar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to waste;to squander", + "example_sentence_native": "No deberías malgastar tu dinero en cosas innecesarias.", + "example_sentence_english": "You shouldn't waste your money on unnecessary things.", + "pos": "verb", + "word_frequency": 21845 + }, + { + "word": "marmota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marmot", + "example_sentence_native": "La marmota salió de su madriguera.", + "example_sentence_english": "The marmot came out of its burrow.", + "pos": "noun", + "word_frequency": 21846 + }, + { + "word": "minifalda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miniskirt", + "example_sentence_native": "Ella llevaba una minifalda de mezclilla.", + "example_sentence_english": "She was wearing a denim miniskirt.", + "pos": "noun", + "word_frequency": 21852 + }, + { + "word": "moralista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moralistic", + "example_sentence_native": "Su actitud moralista a veces resulta molesta.", + "example_sentence_english": "His moralistic attitude is sometimes annoying.", + "pos": "adjective", + "word_frequency": 21853 + }, + { + "word": "mosquetero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musketeer", + "example_sentence_native": "Los tres mosqueteros son personajes famosos de la literatura.", + "example_sentence_english": "The three musketeers are famous literary characters.", + "pos": "noun", + "word_frequency": 21854 + }, + { + "word": "multado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fined;ticketed", + "example_sentence_native": "Fue multado por exceso de velocidad.", + "example_sentence_english": "He was fined for speeding.", + "pos": "adjective", + "word_frequency": 21855 + }, + { + "word": "multiplicador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiplier", + "example_sentence_native": "El multiplicador de impuestos afecta la economía.", + "example_sentence_english": "The tax multiplier affects the economy.", + "pos": "noun", + "word_frequency": 21856 + }, + { + "word": "mundano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worldly;mundane", + "example_sentence_native": "A pesar de su riqueza, llevaba una vida bastante mundana.", + "example_sentence_english": "Despite his wealth, he led a rather mundane life.", + "pos": "adjective", + "word_frequency": 21857 + }, + { + "word": "neoyorquino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "New Yorker;from New York", + "example_sentence_native": "Mi amigo es neoyorquino y vive en Brooklyn.", + "example_sentence_english": "My friend is a New Yorker and lives in Brooklyn.", + "pos": "adjective", + "word_frequency": 21860 + }, + { + "word": "noticiario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "news program;newscast", + "example_sentence_native": "Vemos el noticiario todas las noches para informarnos.", + "example_sentence_english": "We watch the newscast every night to get informed.", + "pos": "noun", + "word_frequency": 21864 + }, + { + "word": "paca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bale;bundle", + "example_sentence_native": "Compramos una paca de heno para los animales.", + "example_sentence_english": "We bought a bale of hay for the animals.", + "pos": "noun", + "word_frequency": 21868 + }, + { + "word": "parisino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Parisian;from Paris", + "example_sentence_native": "Le encanta el estilo de vida parisino.", + "example_sentence_english": "He loves the Parisian lifestyle.", + "pos": "adjective", + "word_frequency": 21870 + }, + { + "word": "parpadeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blink;flicker", + "example_sentence_native": "Un parpadeo de las luces indicó un problema eléctrico.", + "example_sentence_english": "A flicker of the lights indicated an electrical problem.", + "pos": "noun", + "word_frequency": 21871 + }, + { + "word": "parranda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spree;party", + "example_sentence_native": "Se fueron de parranda toda la noche.", + "example_sentence_english": "They went on a spree all night.", + "pos": "noun", + "word_frequency": 21872 + }, + { + "word": "pastelito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small pastry;cupcake", + "example_sentence_native": "Me comí un pastelito de manzana para el postre.", + "example_sentence_english": "I ate a small apple pastry for dessert.", + "pos": "noun", + "word_frequency": 21873 + }, + { + "word": "patetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pathetic", + "example_sentence_native": "Su intento de excusa fue realmente patético.", + "example_sentence_english": "His attempt at an excuse was truly pathetic.", + "pos": "adjective", + "word_frequency": 21875 + }, + { + "word": "pedregal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stony ground;rocky place", + "example_sentence_native": "El camino a la cima de la montaña era un pedregal.", + "example_sentence_english": "The path to the top of the mountain was a stony ground.", + "pos": "noun", + "word_frequency": 21876 + }, + { + "word": "pelotazo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hard kick;shot;big hit;windfall", + "example_sentence_native": "Marcó un gol con un pelotazo desde fuera del área.", + "example_sentence_english": "He scored a goal with a hard shot from outside the box.", + "pos": "noun", + "word_frequency": 21877 + }, + { + "word": "perceptible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perceptible;noticeable", + "example_sentence_native": "El cambio en la temperatura era apenas perceptible.", + "example_sentence_english": "The change in temperature was barely perceptible.", + "pos": "adjective", + "word_frequency": 21878 + }, + { + "word": "perfeccionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfected;improved", + "example_sentence_native": "Su técnica de pintura se ha perfeccionado con los años.", + "example_sentence_english": "His painting technique has been perfected over the years.", + "pos": "adjective", + "word_frequency": 21879 + }, + { + "word": "perspicaz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perspicacious;astute", + "example_sentence_native": "Su mente perspicaz le permitió resolver el enigma rápidamente.", + "example_sentence_english": "His perspicacious mind allowed him to solve the enigma quickly.", + "pos": "adjective", + "word_frequency": 21880 + }, + { + "word": "peñón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large rock;crag", + "example_sentence_native": "El peñón se alzaba majestuoso sobre el mar.", + "example_sentence_english": "The large rock rose majestically above the sea.", + "pos": "noun", + "word_frequency": 21881 + }, + { + "word": "planchado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ironed;pressed", + "example_sentence_native": "La camisa estaba perfectamente planchada.", + "example_sentence_english": "The shirt was perfectly ironed.", + "pos": "adjective", + "word_frequency": 21882 + }, + { + "word": "poblamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settlement;population", + "example_sentence_native": "El poblamiento de América fue un proceso largo y complejo.", + "example_sentence_english": "The settlement of America was a long and complex process.", + "pos": "noun", + "word_frequency": 21883 + }, + { + "word": "poderosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerfully;strongly", + "example_sentence_native": "La música le afectó poderosamente.", + "example_sentence_english": "The music affected him powerfully.", + "pos": "adverb", + "word_frequency": 21884 + }, + { + "word": "polenta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polenta", + "example_sentence_native": "Cenamos polenta con salsa de champiñones.", + "example_sentence_english": "We had polenta with mushroom sauce for dinner.", + "pos": "noun", + "word_frequency": 21885 + }, + { + "word": "polinesia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Polynesia", + "example_sentence_native": "Las islas de la Polinesia son famosas por su belleza.", + "example_sentence_english": "The islands of Polynesia are famous for their beauty.", + "pos": "noun", + "word_frequency": 21886 + }, + { + "word": "predeterminado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "default;predetermined", + "example_sentence_native": "La configuración predeterminada del software es suficiente para la mayoría de los usuarios.", + "example_sentence_english": "The default software configuration is sufficient for most users.", + "pos": "adjective", + "word_frequency": 21887 + }, + { + "word": "predicho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predicted;foretold", + "example_sentence_native": "El resultado fue exactamente como se había predicho.", + "example_sentence_english": "The result was exactly as had been predicted.", + "pos": "adjective", + "word_frequency": 21888 + }, + { + "word": "preexistente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pre-existing", + "example_sentence_native": "La condición preexistente del paciente complicó el tratamiento.", + "example_sentence_english": "The patient's pre-existing condition complicated the treatment.", + "pos": "adjective", + "word_frequency": 21889 + }, + { + "word": "prestador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lender;provider", + "example_sentence_native": "El banco es un prestador de servicios financieros.", + "example_sentence_english": "The bank is a provider of financial services.", + "pos": "noun", + "word_frequency": 21890 + }, + { + "word": "primado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primate;primacy", + "example_sentence_native": "El gorila es un tipo de primado.", + "example_sentence_english": "The gorilla is a type of primate.", + "pos": "noun", + "word_frequency": 21891 + }, + { + "word": "pronosticar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forecast;to predict", + "example_sentence_native": "El meteorólogo pronosticó lluvias para el fin de semana.", + "example_sentence_english": "The meteorologist forecast rain for the weekend.", + "pos": "verb", + "word_frequency": 21892 + }, + { + "word": "radiactivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radioactive", + "example_sentence_native": "El material radiactivo debe manejarse con extremo cuidado.", + "example_sentence_english": "Radioactive material must be handled with extreme care.", + "pos": "adjective", + "word_frequency": 21898 + }, + { + "word": "reduccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reduction", + "example_sentence_native": "Se espera una reducción en los costos.", + "example_sentence_english": "A reduction in costs is expected.", + "pos": "noun", + "word_frequency": 21901 + }, + { + "word": "reencontrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rediscover;to reunite with", + "example_sentence_native": "Después de años, lograron reencontrarse.", + "example_sentence_english": "After years, they managed to reunite.", + "pos": "verb", + "word_frequency": 21902 + }, + { + "word": "reforzamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reinforcement;strengthening", + "example_sentence_native": "El reforzamiento de la estructura es crucial para su seguridad.", + "example_sentence_english": "The reinforcement of the structure is crucial for its safety.", + "pos": "noun", + "word_frequency": 21903 + }, + { + "word": "reminiscencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reminiscence", + "example_sentence_native": "Tenía una vaga reminiscencia de aquel día.", + "example_sentence_english": "He had a vague reminiscence of that day.", + "pos": "noun", + "word_frequency": 21904 + }, + { + "word": "renegociacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renegotiation", + "example_sentence_native": "La renegociación del contrato fue exitosa.", + "example_sentence_english": "The renegotiation of the contract was successful.", + "pos": "noun", + "word_frequency": 21905 + }, + { + "word": "reservacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reservation", + "example_sentence_native": "Hice una reservación para dos en el restaurante.", + "example_sentence_english": "I made a reservation for two at the restaurant.", + "pos": "noun", + "word_frequency": 21906 + }, + { + "word": "restaurador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restorer", + "example_sentence_native": "El restaurador trabajó en la antigua pintura.", + "example_sentence_english": "The restorer worked on the old painting.", + "pos": "noun", + "word_frequency": 21907 + }, + { + "word": "revolucionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revolutionize", + "example_sentence_native": "La tecnología ha revolucionado la forma en que vivimos.", + "example_sentence_english": "Technology has revolutionized the way we live.", + "pos": "verb", + "word_frequency": 21908 + }, + { + "word": "roer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gnaw;to nibble", + "example_sentence_native": "El ratón empezó a roer el queso.", + "example_sentence_english": "The mouse started to gnaw on the cheese.", + "pos": "verb", + "word_frequency": 21909 + }, + { + "word": "rotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rotate;to spin", + "example_sentence_native": "La Tierra rota sobre su propio eje.", + "example_sentence_english": "The Earth rotates on its own axis.", + "pos": "verb", + "word_frequency": 21910 + }, + { + "word": "salvia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sage (herb)", + "example_sentence_native": "La salvia se usa en la cocina y en la medicina tradicional.", + "example_sentence_english": "Sage is used in cooking and traditional medicine.", + "pos": "noun", + "word_frequency": 21912 + }, + { + "word": "sediento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirsty", + "example_sentence_native": "Después de correr, estaba muy sediento.", + "example_sentence_english": "After running, he was very thirsty.", + "pos": "adjective", + "word_frequency": 21916 + }, + { + "word": "semblanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sketch;profile", + "example_sentence_native": "El libro incluía una breve semblanza del autor.", + "example_sentence_english": "The book included a brief profile of the author.", + "pos": "noun", + "word_frequency": 21917 + }, + { + "word": "serotonina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serotonin", + "example_sentence_native": "La serotonina es un neurotransmisor importante.", + "example_sentence_english": "Serotonin is an important neurotransmitter.", + "pos": "noun", + "word_frequency": 21918 + }, + { + "word": "sobradamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amply", + "example_sentence_native": "Ha demostrado sobradamente su capacidad para el puesto.", + "example_sentence_english": "He has amply demonstrated his capacity for the position.", + "pos": "adverb", + "word_frequency": 21922 + }, + { + "word": "tapadera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lid", + "example_sentence_native": "La olla necesita una tapadera.", + "example_sentence_english": "The pot needs a lid.", + "pos": "noun", + "word_frequency": 21926 + }, + { + "word": "tasacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appraisal", + "example_sentence_native": "Necesitamos una tasación de la propiedad.", + "example_sentence_english": "We need an appraisal of the property.", + "pos": "noun", + "word_frequency": 21927 + }, + { + "word": "tejedor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weaver", + "example_sentence_native": "El tejedor trabaja con hilos de colores.", + "example_sentence_english": "The weaver works with colored threads.", + "pos": "noun", + "word_frequency": 21928 + }, + { + "word": "telar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loom", + "example_sentence_native": "El telar antiguo estaba en el museo.", + "example_sentence_english": "The old loom was in the museum.", + "pos": "noun", + "word_frequency": 21929 + }, + { + "word": "televisado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "televised", + "example_sentence_native": "El partido será televisado en directo.", + "example_sentence_english": "The match will be televised live.", + "pos": "adjective", + "word_frequency": 21930 + }, + { + "word": "termita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "termite", + "example_sentence_native": "Las termitas pueden causar mucho daño a la madera.", + "example_sentence_english": "Termites can cause a lot of damage to wood.", + "pos": "noun", + "word_frequency": 21931 + }, + { + "word": "tosco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crude", + "example_sentence_native": "Su comportamiento fue un poco tosco.", + "example_sentence_english": "His behavior was a bit crude.", + "pos": "adjective", + "word_frequency": 21936 + }, + { + "word": "tradicionalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditionalist", + "example_sentence_native": "Es una persona muy tradicionalista en sus costumbres.", + "example_sentence_english": "He is a very traditionalist person in his customs.", + "pos": "adjective", + "word_frequency": 21937 + }, + { + "word": "trasmitir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transmit", + "example_sentence_native": "La radio va a trasmitir el partido en vivo.", + "example_sentence_english": "The radio will transmit the game live.", + "pos": "verb", + "word_frequency": 21940 + }, + { + "word": "trillon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trillion", + "example_sentence_native": "La deuda del país asciende a varios trillones de dólares.", + "example_sentence_english": "The country's debt amounts to several trillion dollars.", + "pos": "noun", + "word_frequency": 21941 + }, + { + "word": "triplicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tripled", + "example_sentence_native": "El número de visitantes se ha triplicado este año.", + "example_sentence_english": "The number of visitors has tripled this year.", + "pos": "adjective", + "word_frequency": 21942 + }, + { + "word": "trípode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tripod", + "example_sentence_native": "Necesito un trípode para la cámara.", + "example_sentence_english": "I need a tripod for the camera.", + "pos": "noun", + "word_frequency": 21943 + }, + { + "word": "tunel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tunnel", + "example_sentence_native": "El tren pasó por un largo túnel.", + "example_sentence_english": "The train went through a long tunnel.", + "pos": "noun", + "word_frequency": 21945 + }, + { + "word": "tónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tonic", + "example_sentence_native": "Este es un tónico capilar para fortalecer el cabello.", + "example_sentence_english": "This is a hair tonic to strengthen hair.", + "pos": "adjective", + "word_frequency": 21946 + }, + { + "word": "ulterior", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "further", + "example_sentence_native": "Necesitamos más información ulterior para tomar una decisión.", + "example_sentence_english": "We need further information to make a decision.", + "pos": "adjective", + "word_frequency": 21949 + }, + { + "word": "varon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "male", + "example_sentence_native": "Es un varón de gran estatura.", + "example_sentence_english": "He is a tall male.", + "pos": "noun", + "word_frequency": 21952 + }, + { + "word": "vestidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressing room", + "example_sentence_native": "El vestidor del teatro es muy grande.", + "example_sentence_english": "The theater's dressing room is very large.", + "pos": "noun", + "word_frequency": 21953 + }, + { + "word": "vinculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "link", + "example_sentence_native": "Existe un fuerte vínculo entre ellos.", + "example_sentence_english": "There is a strong link between them.", + "pos": "noun", + "word_frequency": 21957 + }, + { + "word": "violacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violation", + "example_sentence_native": "La violación de la ley tendrá consecuencias.", + "example_sentence_english": "The violation of the law will have consequences.", + "pos": "noun", + "word_frequency": 21958 + }, + { + "word": "violin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violin", + "example_sentence_native": "Ella toca el violín muy bien.", + "example_sentence_english": "She plays the violin very well.", + "pos": "noun", + "word_frequency": 21959 + }, + { + "word": "yihad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jihad", + "example_sentence_native": "El concepto de yihad es a menudo malinterpretado.", + "example_sentence_english": "The concept of jihad is often misunderstood.", + "pos": "noun", + "word_frequency": 21966 + }, + { + "word": "yugular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to slit the throat;to strangle", + "example_sentence_native": "El cazador tuvo que yugular al animal herido para acabar con su sufrimiento.", + "example_sentence_english": "The hunter had to slit the throat of the wounded animal to end its suffering.", + "pos": "verb", + "word_frequency": 21967 + }, + { + "word": "ínfimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinitesimal;tiny;negligible", + "example_sentence_native": "La probabilidad de que eso ocurra es ínfima.", + "example_sentence_english": "The probability of that happening is infinitesimal.", + "pos": "adjective", + "word_frequency": 21969 + }, + { + "word": "abatir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring down;to shoot down;to discourage", + "example_sentence_native": "La mala noticia lo abatió profundamente.", + "example_sentence_english": "The bad news deeply discouraged him.", + "pos": "verb", + "word_frequency": 21971 + }, + { + "word": "acertijo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "riddle;puzzle", + "example_sentence_native": "Me encanta resolver acertijos difíciles en mi tiempo libre.", + "example_sentence_english": "I love solving difficult riddles in my free time.", + "pos": "noun", + "word_frequency": 21974 + }, + { + "word": "alfalfa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alfalfa", + "example_sentence_native": "La alfalfa es una planta muy nutritiva para el ganado.", + "example_sentence_english": "Alfalfa is a very nutritious plant for livestock.", + "pos": "noun", + "word_frequency": 21976 + }, + { + "word": "almanaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almanac", + "example_sentence_native": "Consultó el almanaque para saber cuándo sería la próxima luna llena.", + "example_sentence_english": "He consulted the almanac to know when the next full moon would be.", + "pos": "noun", + "word_frequency": 21977 + }, + { + "word": "amargamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitterly", + "example_sentence_native": "Se rió amargamente al recordar su fracaso.", + "example_sentence_english": "He laughed bitterly remembering his failure.", + "pos": "adverb", + "word_frequency": 21979 + }, + { + "word": "angina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angina;tonsillitis", + "example_sentence_native": "El médico le diagnosticó una angina de pecho.", + "example_sentence_english": "The doctor diagnosed him with angina pectoris.", + "pos": "noun", + "word_frequency": 21981 + }, + { + "word": "antidemocrático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-democratic", + "example_sentence_native": "Consideraron que la nueva ley era antidemocrática.", + "example_sentence_english": "They considered the new law anti-democratic.", + "pos": "adjective", + "word_frequency": 21982 + }, + { + "word": "apelativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appellation;nickname;epithet", + "example_sentence_native": "Su apelativo de 'el sabio' le venía muy bien.", + "example_sentence_english": "His appellation 'the wise one' suited him very well.", + "pos": "noun", + "word_frequency": 21984 + }, + { + "word": "arbolado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "woodland;tree-lined area", + "example_sentence_native": "El parque tiene un arbolado muy denso y agradable.", + "example_sentence_english": "The park has very dense and pleasant woodland.", + "pos": "noun", + "word_frequency": 21985 + }, + { + "word": "arremeter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to charge;to attack;to lash out", + "example_sentence_native": "El toro arremetió con fuerza contra la barrera.", + "example_sentence_english": "The bull charged forcefully against the barrier.", + "pos": "verb", + "word_frequency": 21986 + }, + { + "word": "asesorado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advised;counselled", + "example_sentence_native": "Estaba bien asesorado por su abogado antes de tomar la decisión.", + "example_sentence_english": "He was well advised by his lawyer before making the decision.", + "pos": "adjective", + "word_frequency": 21988 + }, + { + "word": "asimetría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asymmetry", + "example_sentence_native": "La asimetría en el diseño le da un toque moderno.", + "example_sentence_english": "The asymmetry in the design gives it a modern touch.", + "pos": "noun", + "word_frequency": 21989 + }, + { + "word": "azulgrana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blue and deep red;garnet (colors of FC Barcelona)", + "example_sentence_native": "El equipo azulgrana jugó un partido excelente.", + "example_sentence_english": "The blue and deep red team played an excellent match.", + "pos": "adjective", + "word_frequency": 21994 + }, + { + "word": "batallar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to battle;to struggle", + "example_sentence_native": "Tuvo que batallar mucho para superar los obstáculos.", + "example_sentence_english": "He had to struggle a lot to overcome the obstacles.", + "pos": "verb", + "word_frequency": 21999 + }, + { + "word": "bayoneta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bayonet", + "example_sentence_native": "El soldado fijó la bayoneta a su rifle.", + "example_sentence_english": "The soldier fixed the bayonet to his rifle.", + "pos": "noun", + "word_frequency": 22000 + }, + { + "word": "bowling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowling", + "example_sentence_native": "Fuimos a jugar a los bolos el sábado.", + "example_sentence_english": "We went bowling on Saturday.", + "pos": "noun", + "word_frequency": 22007 + }, + { + "word": "bromista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joker;prankster", + "example_sentence_native": "Mi hermano es un bromista y siempre cuenta chistes.", + "example_sentence_english": "My brother is a joker and always tells jokes.", + "pos": "noun", + "word_frequency": 22008 + }, + { + "word": "cabreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anger;fit of rage (informal)", + "example_sentence_native": "Tuvo un cabreo monumental por la noticia.", + "example_sentence_english": "He had a monumental fit of rage over the news.", + "pos": "noun", + "word_frequency": 22009 + }, + { + "word": "cartuja", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Carthusian monastery;charterhouse", + "example_sentence_native": "Visitamos la antigua cartuja en la montaña.", + "example_sentence_english": "We visited the old Carthusian monastery in the mountains.", + "pos": "noun", + "word_frequency": 22010 + }, + { + "word": "cerrajero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locksmith", + "example_sentence_native": "Llamamos al cerrajero para que abriera la puerta.", + "example_sentence_english": "We called the locksmith to open the door.", + "pos": "noun", + "word_frequency": 22012 + }, + { + "word": "charlatán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charlatan;quack", + "example_sentence_native": "No confíes en ese charlatán, solo quiere tu dinero.", + "example_sentence_english": "Don't trust that charlatan, he just wants your money.", + "pos": "noun", + "word_frequency": 22013 + }, + { + "word": "chimpancé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chimpanzee", + "example_sentence_native": "El chimpancé es un animal muy inteligente.", + "example_sentence_english": "The chimpanzee is a very intelligent animal.", + "pos": "noun", + "word_frequency": 22014 + }, + { + "word": "circulatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circulatory", + "example_sentence_native": "El sistema circulatorio es vital para la vida.", + "example_sentence_english": "The circulatory system is vital for life.", + "pos": "adjective", + "word_frequency": 22017 + }, + { + "word": "coexistir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coexist", + "example_sentence_native": "Es importante aprender a coexistir pacíficamente.", + "example_sentence_english": "It's important to learn to coexist peacefully.", + "pos": "verb", + "word_frequency": 22020 + }, + { + "word": "colador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colander;strainer", + "example_sentence_native": "Usa un colador para escurrir la pasta.", + "example_sentence_english": "Use a colander to drain the pasta.", + "pos": "noun", + "word_frequency": 22021 + }, + { + "word": "colmado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grocery store;general store (LatAm)", + "example_sentence_native": "Compré pan en el colmado de la esquina.", + "example_sentence_english": "I bought bread at the corner grocery store.", + "pos": "noun", + "word_frequency": 22022 + }, + { + "word": "colofón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colophon;crowning touch;conclusion", + "example_sentence_native": "Su discurso fue el colofón perfecto para la conferencia.", + "example_sentence_english": "His speech was the perfect crowning touch for the conference.", + "pos": "noun", + "word_frequency": 22023 + }, + { + "word": "columpio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swing", + "example_sentence_native": "Los niños jugaban en el columpio del parque.", + "example_sentence_english": "The children were playing on the swing in the park.", + "pos": "noun", + "word_frequency": 22024 + }, + { + "word": "compilar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compile", + "example_sentence_native": "Necesito compilar todos los datos para el informe.", + "example_sentence_english": "I need to compile all the data for the report.", + "pos": "verb", + "word_frequency": 22026 + }, + { + "word": "concurrente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concurrent;simultaneous", + "example_sentence_native": "Hubo varios eventos concurrentes en la ciudad.", + "example_sentence_english": "There were several concurrent events in the city.", + "pos": "adjective", + "word_frequency": 22028 + }, + { + "word": "confederado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confederate", + "example_sentence_native": "Las tropas confederadas se rindieron al final de la guerra.", + "example_sentence_english": "The confederate troops surrendered at the end of the war.", + "pos": "adjective", + "word_frequency": 22030 + }, + { + "word": "conjugar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conjugate", + "example_sentence_native": "Los estudiantes aprenden a conjugar verbos en español.", + "example_sentence_english": "Students learn to conjugate verbs in Spanish.", + "pos": "verb", + "word_frequency": 22032 + }, + { + "word": "conspirativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspiratorial", + "example_sentence_native": "Tenía una teoría conspirativa sobre el gobierno.", + "example_sentence_english": "He had a conspiratorial theory about the government.", + "pos": "adjective", + "word_frequency": 22034 + }, + { + "word": "coquetear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flirt", + "example_sentence_native": "Le gusta coquetear con todo el mundo.", + "example_sentence_english": "He likes to flirt with everyone.", + "pos": "verb", + "word_frequency": 22035 + }, + { + "word": "corbeta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corvette", + "example_sentence_native": "La corbeta patrullaba las aguas costeras.", + "example_sentence_english": "The corvette patrolled the coastal waters.", + "pos": "noun", + "word_frequency": 22036 + }, + { + "word": "cucharadita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teaspoon", + "example_sentence_native": "Añade una cucharadita de azúcar al café.", + "example_sentence_english": "Add a teaspoon of sugar to the coffee.", + "pos": "noun", + "word_frequency": 22039 + }, + { + "word": "cáscara", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peel;shell", + "example_sentence_native": "La cáscara de la fruta es comestible.", + "example_sentence_english": "The fruit peel is edible.", + "pos": "noun", + "word_frequency": 22041 + }, + { + "word": "desamparo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helplessness;abandonment", + "example_sentence_native": "Sintió un profundo desamparo al quedarse solo.", + "example_sentence_english": "He felt a deep helplessness when he was left alone.", + "pos": "noun", + "word_frequency": 22043 + }, + { + "word": "descalabro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "setback;disaster", + "example_sentence_native": "La empresa sufrió un descalabro financiero.", + "example_sentence_english": "The company suffered a financial setback.", + "pos": "noun", + "word_frequency": 22044 + }, + { + "word": "desconectado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disconnected;unplugged", + "example_sentence_native": "El teléfono está desconectado de la red.", + "example_sentence_english": "The phone is disconnected from the network.", + "pos": "adjective", + "word_frequency": 22045 + }, + { + "word": "desenvolver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unwrap;to unfold", + "example_sentence_native": "Ayúdame a desenvolver los regalos.", + "example_sentence_english": "Help me unwrap the presents.", + "pos": "verb", + "word_frequency": 22046 + }, + { + "word": "desfalco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embezzlement", + "example_sentence_native": "Fue acusado de desfalco de fondos públicos.", + "example_sentence_english": "He was accused of embezzlement of public funds.", + "pos": "noun", + "word_frequency": 22047 + }, + { + "word": "deslealtad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disloyalty;unfaithfulness", + "example_sentence_native": "Su deslealtad sorprendió a todos.", + "example_sentence_english": "His disloyalty surprised everyone.", + "pos": "noun", + "word_frequency": 22048 + }, + { + "word": "desocupado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unoccupied;unemployed", + "example_sentence_native": "El asiento está desocupado.", + "example_sentence_english": "The seat is unoccupied.", + "pos": "adjective", + "word_frequency": 22049 + }, + { + "word": "desprevenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprepared;off guard", + "example_sentence_native": "La noticia lo tomó desprevenido.", + "example_sentence_english": "The news caught him unprepared.", + "pos": "adjective", + "word_frequency": 22050 + }, + { + "word": "dogmático", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dogmatic", + "example_sentence_native": "Su postura es demasiado dogmática.", + "example_sentence_english": "His stance is too dogmatic.", + "pos": "adjective", + "word_frequency": 22053 + }, + { + "word": "domar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tame", + "example_sentence_native": "Es difícil domar a un caballo salvaje.", + "example_sentence_english": "It's difficult to tame a wild horse.", + "pos": "verb", + "word_frequency": 22055 + }, + { + "word": "donut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donut", + "example_sentence_native": "Me encanta comer un donut con café.", + "example_sentence_english": "I love to eat a donut with coffee.", + "pos": "noun", + "word_frequency": 22056 + }, + { + "word": "drogadicción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug addiction", + "example_sentence_native": "La drogadicción es un problema social grave.", + "example_sentence_english": "Drug addiction is a serious social problem.", + "pos": "noun", + "word_frequency": 22057 + }, + { + "word": "duma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Duma", + "example_sentence_native": "La Duma es la asamblea legislativa de Rusia.", + "example_sentence_english": "The Duma is the legislative assembly of Russia.", + "pos": "noun", + "word_frequency": 22058 + }, + { + "word": "empedrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cobblestone;paved street", + "example_sentence_native": "Caminamos por el empedrado del casco antiguo.", + "example_sentence_english": "We walked along the cobblestone of the old town.", + "pos": "noun", + "word_frequency": 22063 + }, + { + "word": "envasado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "packaging;bottled", + "example_sentence_native": "Compramos agua envasada.", + "example_sentence_english": "We bought bottled water.", + "pos": "noun", + "word_frequency": 22065 + }, + { + "word": "erecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erect;upright", + "example_sentence_native": "Se mantuvo erecto a pesar del viento.", + "example_sentence_english": "He stood erect despite the wind.", + "pos": "adjective", + "word_frequency": 22066 + }, + { + "word": "estandarización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standardization", + "example_sentence_native": "La estandarización de procesos mejora la eficiencia.", + "example_sentence_english": "Process standardization improves efficiency.", + "pos": "noun", + "word_frequency": 22067 + }, + { + "word": "estructurado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structured", + "example_sentence_native": "El curso tiene un programa bien estructurado.", + "example_sentence_english": "The course has a well-structured program.", + "pos": "adjective", + "word_frequency": 22068 + }, + { + "word": "eucalipto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eucalyptus", + "example_sentence_native": "El olor a eucalipto es muy refrescante.", + "example_sentence_english": "The smell of eucalyptus is very refreshing.", + "pos": "noun", + "word_frequency": 22069 + }, + { + "word": "eurodiputado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Member of the European Parliament (MEP)", + "example_sentence_native": "Un eurodiputado representa a su país en el Parlamento Europeo.", + "example_sentence_english": "An MEP represents their country in the European Parliament.", + "pos": "noun", + "word_frequency": 22070 + }, + { + "word": "excedencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leave of absence;sabbatical", + "example_sentence_native": "Se tomó una excedencia para viajar por el mundo.", + "example_sentence_english": "He took a leave of absence to travel the world.", + "pos": "noun", + "word_frequency": 22071 + }, + { + "word": "exorcismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exorcism", + "example_sentence_native": "La película trata sobre un exorcismo.", + "example_sentence_english": "The movie is about an exorcism.", + "pos": "noun", + "word_frequency": 22074 + }, + { + "word": "fenicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Phoenician", + "example_sentence_native": "Los fenicios fueron grandes navegantes.", + "example_sentence_english": "The Phoenicians were great navigators.", + "pos": "noun", + "word_frequency": 22075 + }, + { + "word": "fiduciario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fiduciary", + "example_sentence_native": "El banco actúa como agente fiduciario.", + "example_sentence_english": "The bank acts as a fiduciary agent.", + "pos": "adjective", + "word_frequency": 22077 + }, + { + "word": "forraje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fodder;forage", + "example_sentence_native": "El ganado se alimenta de forraje.", + "example_sentence_english": "The livestock feeds on fodder.", + "pos": "noun", + "word_frequency": 22079 + }, + { + "word": "franela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flannel", + "example_sentence_native": "La camisa de franela es muy suave.", + "example_sentence_english": "The flannel shirt is very soft.", + "pos": "noun", + "word_frequency": 22080 + }, + { + "word": "fugar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape;to flee", + "example_sentence_native": "El prisionero intentó fugar de la cárcel.", + "example_sentence_english": "The prisoner tried to escape from prison.", + "pos": "verb", + "word_frequency": 22081 + }, + { + "word": "ginecología", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gynecology", + "example_sentence_native": "Ella estudia ginecología en la universidad.", + "example_sentence_english": "She studies gynecology at the university.", + "pos": "noun", + "word_frequency": 22085 + }, + { + "word": "grosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cool person (slang;feminine)", + "example_sentence_native": "Esa chica es una grosa en matemáticas.", + "example_sentence_english": "That girl is really good (cool) at math.", + "pos": "noun", + "word_frequency": 22088 + }, + { + "word": "guardacosta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coast guard (member or vessel)", + "example_sentence_native": "El guardacosta rescató a los náufragos.", + "example_sentence_english": "The coast guard rescued the shipwrecked people.", + "pos": "noun", + "word_frequency": 22090 + }, + { + "word": "hojalata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tinplate;tin", + "example_sentence_native": "La lata está hecha de hojalata.", + "example_sentence_english": "The can is made of tinplate.", + "pos": "noun", + "word_frequency": 22095 + }, + { + "word": "hombría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manliness;virility", + "example_sentence_native": "Demostró su hombría al enfrentar el peligro.", + "example_sentence_english": "He showed his manliness by facing the danger.", + "pos": "noun", + "word_frequency": 22096 + }, + { + "word": "hostel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostel", + "example_sentence_native": "Nos quedamos en un hostel barato en el centro.", + "example_sentence_english": "We stayed in a cheap hostel in the center.", + "pos": "noun", + "word_frequency": 22098 + }, + { + "word": "humus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humus (soil component)", + "example_sentence_native": "El suelo del bosque es rico en humus.", + "example_sentence_english": "The forest soil is rich in humus.", + "pos": "noun", + "word_frequency": 22099 + }, + { + "word": "ideólogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideologue;mastermind", + "example_sentence_native": "Era el ideólogo principal del movimiento.", + "example_sentence_english": "He was the main ideologue of the movement.", + "pos": "noun", + "word_frequency": 22101 + }, + { + "word": "impertinente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impertinent;rude", + "example_sentence_native": "Su comentario fue muy impertinente.", + "example_sentence_english": "His comment was very impertinent.", + "pos": "adjective", + "word_frequency": 22102 + }, + { + "word": "impreciso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprecise;vague", + "example_sentence_native": "La información que dio era imprecisa.", + "example_sentence_english": "The information he gave was imprecise.", + "pos": "adjective", + "word_frequency": 22103 + }, + { + "word": "imprevisible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpredictable;unforeseen", + "example_sentence_native": "El clima en esta región es imprevisible.", + "example_sentence_english": "The weather in this region is unpredictable.", + "pos": "adjective", + "word_frequency": 22104 + }, + { + "word": "infrarrojo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infrared", + "example_sentence_native": "La cámara detecta el infrarrojo.", + "example_sentence_english": "The camera detects infrared.", + "pos": "noun", + "word_frequency": 22106 + }, + { + "word": "inmovilizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to immobilize", + "example_sentence_native": "Tuvieron que inmovilizar la pierna herida.", + "example_sentence_english": "They had to immobilize the injured leg.", + "pos": "verb", + "word_frequency": 22107 + }, + { + "word": "internación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hospitalization;internment", + "example_sentence_native": "La internación del paciente duró una semana.", + "example_sentence_english": "The patient's hospitalization lasted a week.", + "pos": "noun", + "word_frequency": 22108 + }, + { + "word": "islamismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamism", + "example_sentence_native": "El islamismo es una ideología política y religiosa.", + "example_sentence_english": "Islamism is a political and religious ideology.", + "pos": "noun", + "word_frequency": 22110 + }, + { + "word": "librero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bookseller;bookcase", + "example_sentence_native": "El librero recomendó una novela interesante.", + "example_sentence_english": "The bookseller recommended an interesting novel.", + "pos": "noun", + "word_frequency": 22121 + }, + { + "word": "locomoción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locomotion", + "example_sentence_native": "La locomoción de algunos animales es fascinante.", + "example_sentence_english": "The locomotion of some animals is fascinating.", + "pos": "noun", + "word_frequency": 22122 + }, + { + "word": "lombriz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earthworm", + "example_sentence_native": "Las lombrices son buenas para la tierra del jardín.", + "example_sentence_english": "Earthworms are good for the garden soil.", + "pos": "noun", + "word_frequency": 22124 + }, + { + "word": "maquillar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put on makeup;to make up (a story)", + "example_sentence_native": "Ella se maquilla antes de salir.", + "example_sentence_english": "She puts on makeup before going out.", + "pos": "verb", + "word_frequency": 22128 + }, + { + "word": "mascar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chew", + "example_sentence_native": "Es importante mascar bien la comida.", + "example_sentence_english": "It's important to chew food well.", + "pos": "verb", + "word_frequency": 22129 + }, + { + "word": "matricular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enroll;to register", + "example_sentence_native": "Necesito matricularme en el curso de español.", + "example_sentence_english": "I need to enroll in the Spanish course.", + "pos": "verb", + "word_frequency": 22130 + }, + { + "word": "metodológico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "methodological", + "example_sentence_native": "El enfoque metodológico del estudio es muy riguroso.", + "example_sentence_english": "The methodological approach of the study is very rigorous.", + "pos": "adjective", + "word_frequency": 22133 + }, + { + "word": "mexica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mexica (people)", + "example_sentence_native": "Los mexicas fundaron Tenochtitlan.", + "example_sentence_english": "The Mexica founded Tenochtitlan.", + "pos": "noun", + "word_frequency": 22134 + }, + { + "word": "militarismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militarism", + "example_sentence_native": "El militarismo ha sido una causa de muchos conflictos.", + "example_sentence_english": "Militarism has been a cause of many conflicts.", + "pos": "noun", + "word_frequency": 22135 + }, + { + "word": "mitológico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythological", + "example_sentence_native": "Los dioses griegos son figuras mitológicas.", + "example_sentence_english": "Greek gods are mythological figures.", + "pos": "adjective", + "word_frequency": 22137 + }, + { + "word": "montería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hunt (especially big game);hunting ground", + "example_sentence_native": "La montería es una tradición de caza en algunas regiones.", + "example_sentence_english": "The montería is a hunting tradition in some regions.", + "pos": "noun", + "word_frequency": 22139 + }, + { + "word": "monótono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monotonous", + "example_sentence_native": "Su voz era monótona y me aburría.", + "example_sentence_english": "His voice was monotonous and bored me.", + "pos": "adjective", + "word_frequency": 22140 + }, + { + "word": "multicolor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multicolored", + "example_sentence_native": "El arcoíris es un fenómeno multicolor.", + "example_sentence_english": "The rainbow is a multicolored phenomenon.", + "pos": "adjective", + "word_frequency": 22141 + }, + { + "word": "nausea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nausea", + "example_sentence_native": "Sentía náuseas después de comer demasiado.", + "example_sentence_english": "I felt nausea after eating too much.", + "pos": "noun", + "word_frequency": 22144 + }, + { + "word": "neural", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neural", + "example_sentence_native": "El sistema neural es complejo.", + "example_sentence_english": "The neural system is complex.", + "pos": "adjective", + "word_frequency": 22146 + }, + { + "word": "ocre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ochre", + "example_sentence_native": "Pintó la pared de color ocre.", + "example_sentence_english": "He painted the wall ochre.", + "pos": "noun", + "word_frequency": 22152 + }, + { + "word": "pacha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pacha (Quechua: earth;world;time)", + "example_sentence_native": "La Pachamama es la Madre Tierra en la cultura andina.", + "example_sentence_english": "Pachamama is Mother Earth in Andean culture.", + "pos": "noun", + "word_frequency": 22153 + }, + { + "word": "pajaro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bird", + "example_sentence_native": "El pájaro canta en el árbol.", + "example_sentence_english": "The bird sings in the tree.", + "pos": "noun", + "word_frequency": 22155 + }, + { + "word": "pantufla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slipper", + "example_sentence_native": "Me pongo mis pantuflas al llegar a casa.", + "example_sentence_english": "I put on my slippers when I get home.", + "pos": "noun", + "word_frequency": 22156 + }, + { + "word": "papiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "papyrus", + "example_sentence_native": "Los antiguos egipcios escribían en papiro.", + "example_sentence_english": "The ancient Egyptians wrote on papyrus.", + "pos": "noun", + "word_frequency": 22157 + }, + { + "word": "parador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parador (state-run hotel in Spain;often in historic buildings)", + "example_sentence_native": "Nos alojamos en un parador con vistas al mar.", + "example_sentence_english": "We stayed in a parador with sea views.", + "pos": "noun", + "word_frequency": 22158 + }, + { + "word": "patán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boor;lout", + "example_sentence_native": "Su comportamiento fue el de un verdadero patán.", + "example_sentence_english": "His behavior was that of a true boor.", + "pos": "noun", + "word_frequency": 22160 + }, + { + "word": "pedante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedantic;pompous", + "example_sentence_native": "No me gusta hablar con gente tan pedante.", + "example_sentence_english": "I don't like talking to such pedantic people.", + "pos": "adjective", + "word_frequency": 22161 + }, + { + "word": "peleador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighter;brawler", + "example_sentence_native": "Es conocido por ser un peleador en las discusiones.", + "example_sentence_english": "He is known for being a brawler in discussions.", + "pos": "noun", + "word_frequency": 22162 + }, + { + "word": "peligrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be in danger;to be at risk", + "example_sentence_native": "La especie podría peligrar si no se toman medidas.", + "example_sentence_english": "The species could be in danger if measures are not taken.", + "pos": "verb", + "word_frequency": 22163 + }, + { + "word": "pinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spotted;painted", + "example_sentence_native": "El caballo pinto corrió por el campo.", + "example_sentence_english": "The spotted horse ran through the field.", + "pos": "adjective", + "word_frequency": 22165 + }, + { + "word": "polaridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polarity", + "example_sentence_native": "Hay una clara polaridad entre sus opiniones.", + "example_sentence_english": "There is a clear polarity between their opinions.", + "pos": "noun", + "word_frequency": 22166 + }, + { + "word": "politización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "politicization", + "example_sentence_native": "La politización del tema dificultó el consenso.", + "example_sentence_english": "The politicization of the issue made consensus difficult.", + "pos": "noun", + "word_frequency": 22167 + }, + { + "word": "prenatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prenatal", + "example_sentence_native": "Recibió atención prenatal durante todo el embarazo.", + "example_sentence_english": "She received prenatal care throughout the pregnancy.", + "pos": "adjective", + "word_frequency": 22168 + }, + { + "word": "preposición", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preposition", + "example_sentence_native": "En es una preposición de lugar.", + "example_sentence_english": "In is a preposition of place.", + "pos": "noun", + "word_frequency": 22169 + }, + { + "word": "profano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profane;secular;lay", + "example_sentence_native": "Su conocimiento del tema era bastante profano.", + "example_sentence_english": "His knowledge of the subject was quite lay.", + "pos": "adjective", + "word_frequency": 22171 + }, + { + "word": "provechoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficial;profitable", + "example_sentence_native": "Fue una discusión muy provechosa para todos.", + "example_sentence_english": "It was a very beneficial discussion for everyone.", + "pos": "adjective", + "word_frequency": 22172 + }, + { + "word": "provida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pro-life", + "example_sentence_native": "Es un activista provida muy conocido.", + "example_sentence_english": "He is a well-known pro-life activist.", + "pos": "adjective", + "word_frequency": 22173 + }, + { + "word": "quimio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemo (short for chemotherapy)", + "example_sentence_native": "Está recibiendo quimio para su tratamiento.", + "example_sentence_english": "He is receiving chemo for his treatment.", + "pos": "noun", + "word_frequency": 22177 + }, + { + "word": "rampante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rampant;widespread", + "example_sentence_native": "La corrupción es un problema rampante en el país.", + "example_sentence_english": "Corruption is a rampant problem in the country.", + "pos": "adjective", + "word_frequency": 22178 + }, + { + "word": "rayar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scratch;to draw a line;to border on", + "example_sentence_native": "No vayas a rayar la mesa nueva.", + "example_sentence_english": "Don't scratch the new table.", + "pos": "verb", + "word_frequency": 22180 + }, + { + "word": "rebanada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slice", + "example_sentence_native": "Quiero una rebanada de pastel, por favor.", + "example_sentence_english": "I want a slice of cake, please.", + "pos": "noun", + "word_frequency": 22181 + }, + { + "word": "responsabilizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold responsible;to make responsible", + "example_sentence_native": "Debemos responsabilizar a los culpables.", + "example_sentence_english": "We must hold the culprits responsible.", + "pos": "verb", + "word_frequency": 22182 + }, + { + "word": "reutilizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reuse", + "example_sentence_native": "Es importante reutilizar las bolsas de la compra.", + "example_sentence_english": "It's important to reuse shopping bags.", + "pos": "verb", + "word_frequency": 22183 + }, + { + "word": "revitalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revitalization", + "example_sentence_native": "El proyecto busca la revitalización del centro histórico.", + "example_sentence_english": "The project seeks the revitalization of the historic center.", + "pos": "noun", + "word_frequency": 22184 + }, + { + "word": "salvaguarda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "safeguard", + "example_sentence_native": "Se necesitan más salvaguardas para proteger los datos.", + "example_sentence_english": "More safeguards are needed to protect the data.", + "pos": "noun", + "word_frequency": 22188 + }, + { + "word": "sangrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bleeding;raw;painful (figurative)", + "example_sentence_native": "Es una herida sangrante que necesita atención.", + "example_sentence_english": "It's a bleeding wound that needs attention.", + "pos": "adjective", + "word_frequency": 22189 + }, + { + "word": "sigiloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stealthy;secretive", + "example_sentence_native": "El gato se movía de forma sigilosa.", + "example_sentence_english": "The cat moved in a stealthy way.", + "pos": "adverb", + "word_frequency": 22192 + }, + { + "word": "signatario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "signatory", + "example_sentence_native": "Los signatarios del acuerdo se reunieron.", + "example_sentence_english": "The signatories of the agreement met.", + "pos": "noun", + "word_frequency": 22193 + }, + { + "word": "snowboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snowboard", + "example_sentence_native": "Compró un nuevo snowboard para la temporada de invierno.", + "example_sentence_english": "He bought a new snowboard for the winter season.", + "pos": "noun", + "word_frequency": 22200 + }, + { + "word": "sulfúrico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfuric", + "example_sentence_native": "El ácido sulfúrico es muy corrosivo.", + "example_sentence_english": "Sulfuric acid is very corrosive.", + "pos": "adjective", + "word_frequency": 22202 + }, + { + "word": "suv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "SUV (Sport Utility Vehicle)", + "example_sentence_native": "Compramos un SUV nuevo para la familia.", + "example_sentence_english": "We bought a new SUV for the family.", + "pos": "noun", + "word_frequency": 22204 + }, + { + "word": "sílice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silica", + "example_sentence_native": "El cuarzo está compuesto principalmente de sílice.", + "example_sentence_english": "Quartz is mainly composed of silica.", + "pos": "noun", + "word_frequency": 22205 + }, + { + "word": "taburete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stool", + "example_sentence_native": "Se sentó en el taburete de la cocina.", + "example_sentence_english": "He sat on the kitchen stool.", + "pos": "noun", + "word_frequency": 22207 + }, + { + "word": "talismán", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "talisman", + "example_sentence_native": "Llevaba un talismán para la buena suerte.", + "example_sentence_english": "He carried a talisman for good luck.", + "pos": "noun", + "word_frequency": 22208 + }, + { + "word": "tapujo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cover-up;pretext;concealment", + "example_sentence_native": "Habló sin tapujos sobre la situación.", + "example_sentence_english": "He spoke openly (without concealment) about the situation.", + "pos": "noun", + "word_frequency": 22209 + }, + { + "word": "tension", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tension", + "example_sentence_native": "Había mucha tensión en la sala.", + "example_sentence_english": "There was a lot of tension in the room.", + "pos": "noun", + "word_frequency": 22210 + }, + { + "word": "terquedad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubbornness;obstinacy", + "example_sentence_native": "Su terquedad le impidió cambiar de opinión.", + "example_sentence_english": "His stubbornness prevented him from changing his mind.", + "pos": "noun", + "word_frequency": 22211 + }, + { + "word": "tertuliano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "talk show guest;panelist;participant in a tertulia", + "example_sentence_native": "El tertuliano expuso su punto de vista en el programa.", + "example_sentence_english": "The panelist presented his point of view on the show.", + "pos": "noun", + "word_frequency": 22212 + }, + { + "word": "tintero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inkwell", + "example_sentence_native": "El escritor mojó su pluma en el tintero.", + "example_sentence_english": "The writer dipped his pen in the inkwell.", + "pos": "noun", + "word_frequency": 22214 + }, + { + "word": "tonada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tune;melody;folk song", + "example_sentence_native": "Cantó una hermosa tonada tradicional.", + "example_sentence_english": "She sang a beautiful traditional tune.", + "pos": "noun", + "word_frequency": 22217 + }, + { + "word": "transportación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transportation", + "example_sentence_native": "La transportación pública es eficiente en esta ciudad.", + "example_sentence_english": "Public transportation is efficient in this city.", + "pos": "noun", + "word_frequency": 22220 + }, + { + "word": "trasto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junk;old thing;useless object", + "example_sentence_native": "Guarda todos los trastos viejos en el desván.", + "example_sentence_english": "He keeps all the old junk in the attic.", + "pos": "noun", + "word_frequency": 22221 + }, + { + "word": "tributar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay tribute;to pay taxes;to render homage", + "example_sentence_native": "Las empresas deben tributar al estado.", + "example_sentence_english": "Companies must pay taxes to the state.", + "pos": "verb", + "word_frequency": 22222 + }, + { + "word": "trino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trill (bird song);tweet (social media)", + "example_sentence_native": "El trino del pájaro alegró la mañana.", + "example_sentence_english": "The bird's trill brightened the morning.", + "pos": "noun", + "word_frequency": 22223 + }, + { + "word": "tris", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flash;instant (in expressions)", + "example_sentence_native": "Lo hizo en un tris.", + "example_sentence_english": "He did it in a flash.", + "pos": "noun", + "word_frequency": 22224 + }, + { + "word": "trucho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fake;counterfeit;dodgy", + "example_sentence_native": "Compró un reloj trucho en el mercado.", + "example_sentence_english": "He bought a fake watch at the market.", + "pos": "adjective", + "word_frequency": 22225 + }, + { + "word": "tubular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tubular", + "example_sentence_native": "La estructura del puente es tubular.", + "example_sentence_english": "The bridge structure is tubular.", + "pos": "adjective", + "word_frequency": 22227 + }, + { + "word": "turbante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turban", + "example_sentence_native": "Llevaba un turbante de seda.", + "example_sentence_english": "She wore a silk turban.", + "pos": "noun", + "word_frequency": 22228 + }, + { + "word": "ultraje", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outrage;insult;affront", + "example_sentence_native": "Consideró sus palabras un ultraje.", + "example_sentence_english": "He considered her words an outrage.", + "pos": "noun", + "word_frequency": 22230 + }, + { + "word": "urano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Uranus", + "example_sentence_native": "Urano es el séptimo planeta del sistema solar.", + "example_sentence_english": "Uranus is the seventh planet in the solar system.", + "pos": "noun", + "word_frequency": 22233 + }, + { + "word": "valente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valiant;brave", + "example_sentence_native": "El caballero valente defendió el reino.", + "example_sentence_english": "The valiant knight defended the kingdom.", + "pos": "adjective", + "word_frequency": 22236 + }, + { + "word": "viscosidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viscosity", + "example_sentence_native": "La viscosidad del aceite es importante para el motor.", + "example_sentence_english": "The viscosity of the oil is important for the engine.", + "pos": "noun", + "word_frequency": 22241 + }, + { + "word": "abecedario", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "alphabet", + "example_sentence_native": "Los niños aprenden el abecedario en la escuela.", + "example_sentence_english": "Children learn the alphabet in school.", + "pos": "noun", + "word_frequency": 22252 + }, + { + "word": "absolutismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absolutism", + "example_sentence_native": "El absolutismo fue una forma de gobierno en Europa.", + "example_sentence_english": "Absolutism was a form of government in Europe.", + "pos": "noun", + "word_frequency": 22253 + }, + { + "word": "absolutista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absolutist", + "example_sentence_native": "Sus ideas políticas eran absolutistas.", + "example_sentence_english": "His political ideas were absolutist.", + "pos": "adjective", + "word_frequency": 22254 + }, + { + "word": "acaparamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hoarding;monopolization", + "example_sentence_native": "El acaparamiento de alimentos causó escasez.", + "example_sentence_english": "The hoarding of food caused scarcity.", + "pos": "noun", + "word_frequency": 22255 + }, + { + "word": "acentuado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accented;pronounced;emphasized", + "example_sentence_native": "Tenía un acento muy acentuado.", + "example_sentence_english": "He had a very pronounced accent.", + "pos": "adjective", + "word_frequency": 22257 + }, + { + "word": "acondicionador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conditioner (hair);air conditioner", + "example_sentence_native": "Necesito comprar acondicionador para el pelo.", + "example_sentence_english": "I need to buy hair conditioner.", + "pos": "noun", + "word_frequency": 22258 + }, + { + "word": "afligido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distressed;afflicted;grieved", + "example_sentence_native": "Estaba muy afligido por la noticia.", + "example_sentence_english": "He was very distressed by the news.", + "pos": "adjective", + "word_frequency": 22261 + }, + { + "word": "albano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Albanian", + "example_sentence_native": "La bandera albana es roja y negra.", + "example_sentence_english": "The Albanian flag is red and black.", + "pos": "adjective", + "word_frequency": 22263 + }, + { + "word": "anonimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anonymous", + "example_sentence_native": "El autor del mensaje es anónimo.", + "example_sentence_english": "The author of the message is anonymous.", + "pos": "adjective", + "word_frequency": 22270 + }, + { + "word": "antidrogas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-drug (as in;anti-drug unit;policy)", + "example_sentence_native": "La policía antidrogas realizó una redada.", + "example_sentence_english": "The anti-drug police carried out a raid.", + "pos": "noun", + "word_frequency": 22271 + }, + { + "word": "arrollador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming;crushing", + "example_sentence_native": "Su victoria fue arrolladora.", + "example_sentence_english": "His victory was overwhelming.", + "pos": "adjective", + "word_frequency": 22275 + }, + { + "word": "aterrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrified", + "example_sentence_native": "Estaba aterrado por la oscuridad.", + "example_sentence_english": "He was terrified by the darkness.", + "pos": "adjective", + "word_frequency": 22278 + }, + { + "word": "augurio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omen;augury", + "example_sentence_native": "La aparición del cometa fue un mal augurio.", + "example_sentence_english": "The appearance of the comet was a bad omen.", + "pos": "noun", + "word_frequency": 22279 + }, + { + "word": "aunar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unite;to combine", + "example_sentence_native": "Debemos aunar nuestros esfuerzos para lograr el objetivo.", + "example_sentence_english": "We must unite our efforts to achieve the goal.", + "pos": "verb", + "word_frequency": 22280 + }, + { + "word": "autodestrucción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-destruction", + "example_sentence_native": "La autodestrucción es un tema recurrente en su obra.", + "example_sentence_english": "Self-destruction is a recurring theme in his work.", + "pos": "noun", + "word_frequency": 22281 + }, + { + "word": "axioma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "axiom", + "example_sentence_native": "Es un axioma que la verdad es subjetiva.", + "example_sentence_english": "It is an axiom that truth is subjective.", + "pos": "noun", + "word_frequency": 22284 + }, + { + "word": "barda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence;wall", + "example_sentence_native": "Construyeron una barda alta alrededor de la propiedad.", + "example_sentence_english": "They built a high fence around the property.", + "pos": "noun", + "word_frequency": 22288 + }, + { + "word": "bateador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "batter (baseball)", + "example_sentence_native": "El bateador conectó un jonrón.", + "example_sentence_english": "The batter hit a home run.", + "pos": "noun", + "word_frequency": 22290 + }, + { + "word": "besazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "big kiss;huge kiss", + "example_sentence_native": "Te mando un besazo desde aquí.", + "example_sentence_english": "I'm sending you a big kiss from here.", + "pos": "noun", + "word_frequency": 22291 + }, + { + "word": "bosquejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sketch;outline", + "example_sentence_native": "Hizo un bosquejo rápido de la idea principal.", + "example_sentence_english": "He made a quick sketch of the main idea.", + "pos": "noun", + "word_frequency": 22294 + }, + { + "word": "boxes", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pits (racing);boxes (boxing)", + "example_sentence_native": "El coche entró en boxes para cambiar los neumáticos.", + "example_sentence_english": "The car entered the pits to change the tires.", + "pos": "noun", + "word_frequency": 22295 + }, + { + "word": "calentado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heated;warmed up", + "example_sentence_native": "La comida calentada no sabe igual.", + "example_sentence_english": "Warmed-up food doesn't taste the same.", + "pos": "adjective", + "word_frequency": 22300 + }, + { + "word": "carcinoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carcinoma", + "example_sentence_native": "Le diagnosticaron un carcinoma de piel.", + "example_sentence_english": "He was diagnosed with skin carcinoma.", + "pos": "noun", + "word_frequency": 22301 + }, + { + "word": "castrense", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "military;martial", + "example_sentence_native": "La disciplina castrense es muy estricta.", + "example_sentence_english": "Military discipline is very strict.", + "pos": "adjective", + "word_frequency": 22305 + }, + { + "word": "catalogación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cataloging;categorization", + "example_sentence_native": "La catalogación de libros es un trabajo minucioso.", + "example_sentence_english": "Book cataloging is a meticulous job.", + "pos": "noun", + "word_frequency": 22306 + }, + { + "word": "chueco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crooked;bent;twisted", + "example_sentence_native": "La mesa está un poco chueca.", + "example_sentence_english": "The table is a bit crooked.", + "pos": "adjective", + "word_frequency": 22308 + }, + { + "word": "chupete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pacifier;dummy (UK)", + "example_sentence_native": "El bebé no puede dormir sin su chupete.", + "example_sentence_english": "The baby can't sleep without his pacifier.", + "pos": "noun", + "word_frequency": 22309 + }, + { + "word": "cojonudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awesome;brilliant (vulgar)", + "example_sentence_native": "¡Esa película fue cojonuda!", + "example_sentence_english": "That movie was awesome!", + "pos": "adjective", + "word_frequency": 22312 + }, + { + "word": "colegiala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schoolgirl", + "example_sentence_native": "La colegiala llevaba un uniforme azul.", + "example_sentence_english": "The schoolgirl was wearing a blue uniform.", + "pos": "noun", + "word_frequency": 22313 + }, + { + "word": "concretado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "materialized;concretized;specified", + "example_sentence_native": "El proyecto aún no se ha concretado.", + "example_sentence_english": "The project has not yet materialized.", + "pos": "adjective", + "word_frequency": 22316 + }, + { + "word": "conferenciante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker;lecturer", + "example_sentence_native": "El conferenciante habló sobre el cambio climático.", + "example_sentence_english": "The speaker talked about climate change.", + "pos": "noun", + "word_frequency": 22317 + }, + { + "word": "confiscado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confiscated;seized", + "example_sentence_native": "Los bienes confiscados fueron subastados.", + "example_sentence_english": "The confiscated goods were auctioned.", + "pos": "adjective", + "word_frequency": 22318 + }, + { + "word": "confronta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confrontation;comparison", + "example_sentence_native": "Se realizó una confronta de documentos.", + "example_sentence_english": "A comparison of documents was carried out.", + "pos": "noun", + "word_frequency": 22319 + }, + { + "word": "conmutación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "switching;commutation", + "example_sentence_native": "La conmutación de paquetes es fundamental para internet.", + "example_sentence_english": "Packet switching is fundamental for the internet.", + "pos": "noun", + "word_frequency": 22320 + }, + { + "word": "corola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corolla", + "example_sentence_native": "La corola de la flor era de un vibrante color rojo.", + "example_sentence_english": "The flower's corolla was a vibrant red.", + "pos": "noun", + "word_frequency": 22322 + }, + { + "word": "corsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Corsican (female)", + "example_sentence_native": "Es una mujer corsa, muy orgullosa de su isla.", + "example_sentence_english": "She is a Corsican woman, very proud of her island.", + "pos": "noun", + "word_frequency": 22323 + }, + { + "word": "cortesana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courtesan", + "example_sentence_native": "La cortesana vivía en el lujo, pero con poca libertad.", + "example_sentence_english": "The courtesan lived in luxury, but with little freedom.", + "pos": "noun", + "word_frequency": 22324 + }, + { + "word": "cutáneo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cutaneous;skin-related", + "example_sentence_native": "La erupción cutánea le causaba mucha picazón.", + "example_sentence_english": "The cutaneous rash caused him a lot of itching.", + "pos": "adjective", + "word_frequency": 22325 + }, + { + "word": "desbordamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overflow;spillage", + "example_sentence_native": "El desbordamiento del río causó inundaciones.", + "example_sentence_english": "The overflow of the river caused floods.", + "pos": "noun", + "word_frequency": 22328 + }, + { + "word": "desentrañar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unravel;to decipher", + "example_sentence_native": "Intentó desentrañar el misterio de su desaparición.", + "example_sentence_english": "He tried to unravel the mystery of her disappearance.", + "pos": "verb", + "word_frequency": 22329 + }, + { + "word": "desestimado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismissed;rejected", + "example_sentence_native": "Su solicitud fue desestimada por falta de pruebas.", + "example_sentence_english": "His application was dismissed due to lack of evidence.", + "pos": "adjective", + "word_frequency": 22330 + }, + { + "word": "desfiladero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gorge;ravine", + "example_sentence_native": "El camino serpenteaba a través de un estrecho desfiladero.", + "example_sentence_english": "The path wound through a narrow gorge.", + "pos": "noun", + "word_frequency": 22331 + }, + { + "word": "desinfectante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disinfectant", + "example_sentence_native": "Usa desinfectante para limpiar la superficie.", + "example_sentence_english": "Use disinfectant to clean the surface.", + "pos": "noun", + "word_frequency": 22332 + }, + { + "word": "despeje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearance;clearing", + "example_sentence_native": "El despeje del balón fue crucial para el equipo.", + "example_sentence_english": "The clearance of the ball was crucial for the team.", + "pos": "noun", + "word_frequency": 22333 + }, + { + "word": "destornillador", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screwdriver", + "example_sentence_native": "Necesito un destornillador para apretar este tornillo.", + "example_sentence_english": "I need a screwdriver to tighten this screw.", + "pos": "noun", + "word_frequency": 22334 + }, + { + "word": "diagnosticado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnosed", + "example_sentence_native": "Fue diagnosticado con una enfermedad rara.", + "example_sentence_english": "He was diagnosed with a rare disease.", + "pos": "adjective", + "word_frequency": 22335 + }, + { + "word": "discernimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discernment;insight", + "example_sentence_native": "Mostró gran discernimiento al tomar la decisión.", + "example_sentence_english": "He showed great discernment in making the decision.", + "pos": "noun", + "word_frequency": 22338 + }, + { + "word": "disfuncional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dysfunctional", + "example_sentence_native": "La familia era completamente disfuncional.", + "example_sentence_english": "The family was completely dysfunctional.", + "pos": "adjective", + "word_frequency": 22339 + }, + { + "word": "diácono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deacon", + "example_sentence_native": "El diácono asistió al sacerdote durante la misa.", + "example_sentence_english": "The deacon assisted the priest during the mass.", + "pos": "noun", + "word_frequency": 22340 + }, + { + "word": "enchufado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plugged in", + "example_sentence_native": "El cargador está enchufado a la pared.", + "example_sentence_english": "The charger is plugged into the wall.", + "pos": "adjective", + "word_frequency": 22350 + }, + { + "word": "enganchado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hooked;addicted", + "example_sentence_native": "Está enganchado a los videojuegos.", + "example_sentence_english": "He is hooked on video games.", + "pos": "adjective", + "word_frequency": 22351 + }, + { + "word": "engorde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fattening;weight gain", + "example_sentence_native": "El engorde del ganado es un proceso largo.", + "example_sentence_english": "The fattening of livestock is a long process.", + "pos": "noun", + "word_frequency": 22353 + }, + { + "word": "escoltado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escorted", + "example_sentence_native": "El presidente fue escoltado por su equipo de seguridad.", + "example_sentence_english": "The president was escorted by his security team.", + "pos": "adjective", + "word_frequency": 22354 + }, + { + "word": "estabilizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stabilized", + "example_sentence_native": "La condición del paciente se ha estabilizado.", + "example_sentence_english": "The patient's condition has stabilized.", + "pos": "adjective", + "word_frequency": 22355 + }, + { + "word": "estirado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuck-up", + "example_sentence_native": "No me gusta su actitud, es muy estirado.", + "example_sentence_english": "I don't like his attitude, he's very stuck-up.", + "pos": "adjective", + "word_frequency": 22356 + }, + { + "word": "estomacal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stomach;gastric", + "example_sentence_native": "Tengo un dolor estomacal desde esta mañana.", + "example_sentence_english": "I've had a stomach ache since this morning.", + "pos": "adjective", + "word_frequency": 22357 + }, + { + "word": "estratagema", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratagem;ploy", + "example_sentence_native": "Usó una estratagema inteligente para ganar el juego.", + "example_sentence_english": "He used a clever stratagem to win the game.", + "pos": "noun", + "word_frequency": 22358 + }, + { + "word": "exhorto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rogatory letter", + "example_sentence_native": "El juez emitió un exhorto para solicitar información.", + "example_sentence_english": "The judge issued a rogatory letter to request information.", + "pos": "noun", + "word_frequency": 22360 + }, + { + "word": "expiración", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expiration", + "example_sentence_native": "La fecha de expiración del producto es el próximo mes.", + "example_sentence_english": "The product's expiration date is next month.", + "pos": "noun", + "word_frequency": 22361 + }, + { + "word": "extorsionar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extort", + "example_sentence_native": "Intentaron extorsionar al empresario.", + "example_sentence_english": "They tried to extort the businessman.", + "pos": "verb", + "word_frequency": 22362 + }, + { + "word": "eyaculación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ejaculation", + "example_sentence_native": "La eyaculación es parte del proceso reproductivo masculino.", + "example_sentence_english": "Ejaculation is part of the male reproductive process.", + "pos": "noun", + "word_frequency": 22363 + }, + { + "word": "facilitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facilitated", + "example_sentence_native": "El acceso a la información ha sido facilitado.", + "example_sentence_english": "Access to information has been facilitated.", + "pos": "adjective", + "word_frequency": 22365 + }, + { + "word": "fresquito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool;chilly", + "example_sentence_native": "Hace un día fresquito, perfecto para pasear.", + "example_sentence_english": "It's a cool day, perfect for a walk.", + "pos": "adjective", + "word_frequency": 22369 + }, + { + "word": "garrapata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tick", + "example_sentence_native": "El perro tenía una garrapata en la oreja.", + "example_sentence_english": "The dog had a tick on its ear.", + "pos": "noun", + "word_frequency": 22373 + }, + { + "word": "grafito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphite", + "example_sentence_native": "El lápiz está hecho de grafito.", + "example_sentence_english": "The pencil is made of graphite.", + "pos": "noun", + "word_frequency": 22377 + }, + { + "word": "guisa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manner", + "example_sentence_native": "Se vistió a guisa de caballero medieval.", + "example_sentence_english": "He dressed in the manner of a medieval knight.", + "pos": "noun", + "word_frequency": 22380 + }, + { + "word": "gula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gluttony", + "example_sentence_native": "La gula es uno de los siete pecados capitales.", + "example_sentence_english": "Gluttony is one of the seven deadly sins.", + "pos": "noun", + "word_frequency": 22381 + }, + { + "word": "hablador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talker", + "example_sentence_native": "Es un gran hablador, siempre tiene algo que contar.", + "example_sentence_english": "He's a great talker, always has something to tell.", + "pos": "noun", + "word_frequency": 22382 + }, + { + "word": "hacedor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maker", + "example_sentence_native": "Se le considera el hacedor de esta nueva teoría.", + "example_sentence_english": "He is considered the maker of this new theory.", + "pos": "noun", + "word_frequency": 22383 + }, + { + "word": "hispanidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hispanicity", + "example_sentence_native": "El Día de la Hispanidad se celebra el 12 de octubre.", + "example_sentence_english": "Hispanic Day is celebrated on October 12th.", + "pos": "noun", + "word_frequency": 22385 + }, + { + "word": "homogeneidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homogeneity", + "example_sentence_native": "Buscamos la homogeneidad en la calidad de los productos.", + "example_sentence_english": "We seek homogeneity in product quality.", + "pos": "noun", + "word_frequency": 22386 + }, + { + "word": "importacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "import", + "example_sentence_native": "La importación de bienes ha aumentado este año.", + "example_sentence_english": "The import of goods has increased this year.", + "pos": "noun", + "word_frequency": 22389 + }, + { + "word": "inadvertido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnoticed", + "example_sentence_native": "Su presencia pasó inadvertida.", + "example_sentence_english": "His presence went unnoticed.", + "pos": "adjective", + "word_frequency": 22390 + }, + { + "word": "incumbencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purview", + "example_sentence_native": "Este asunto no es de mi incumbencia.", + "example_sentence_english": "This matter is not within my purview.", + "pos": "noun", + "word_frequency": 22391 + }, + { + "word": "indiscriminadamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indiscriminately", + "example_sentence_native": "Lanzaron los folletos indiscriminadamente por la calle.", + "example_sentence_english": "They threw the flyers indiscriminately down the street.", + "pos": "adverb", + "word_frequency": 22392 + }, + { + "word": "intimidante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidating", + "example_sentence_native": "Su presencia era intimidante para los nuevos empleados.", + "example_sentence_english": "His presence was intimidating for the new employees.", + "pos": "adjective", + "word_frequency": 22394 + }, + { + "word": "introduccion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduction", + "example_sentence_native": "La introducción del libro es muy interesante.", + "example_sentence_english": "The introduction of the book is very interesting.", + "pos": "noun", + "word_frequency": 22395 + }, + { + "word": "intrépido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrepid", + "example_sentence_native": "El explorador intrépido se aventuró en la selva.", + "example_sentence_english": "The intrepid explorer ventured into the jungle.", + "pos": "adjective", + "word_frequency": 22396 + }, + { + "word": "jurásico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jurassic", + "example_sentence_native": "Los dinosaurios vivieron en el período jurásico.", + "example_sentence_english": "Dinosaurs lived in the Jurassic period.", + "pos": "adjective", + "word_frequency": 22401 + }, + { + "word": "labia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glibness;smooth talk", + "example_sentence_native": "Tiene mucha labia para convencer a la gente.", + "example_sentence_english": "He has a lot of smooth talk to convince people.", + "pos": "noun", + "word_frequency": 22406 + }, + { + "word": "lacrimógeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tear-inducing;tear gas", + "example_sentence_native": "La policía usó gas lacrimógeno para dispersar la multitud.", + "example_sentence_english": "The police used tear gas to disperse the crowd.", + "pos": "adjective", + "word_frequency": 22407 + }, + { + "word": "lapiz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pencil", + "example_sentence_native": "Necesito un lápiz para escribir.", + "example_sentence_english": "I need a pencil to write.", + "pos": "noun", + "word_frequency": 22408 + }, + { + "word": "libanes", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lebanese", + "example_sentence_native": "La comida libanesa es deliciosa.", + "example_sentence_english": "Lebanese food is delicious.", + "pos": "adjective", + "word_frequency": 22409 + }, + { + "word": "magma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magma", + "example_sentence_native": "El volcán expulsó magma y ceniza.", + "example_sentence_english": "The volcano expelled magma and ash.", + "pos": "noun", + "word_frequency": 22412 + }, + { + "word": "matrona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "midwife;matron", + "example_sentence_native": "La matrona ayudó en el parto.", + "example_sentence_english": "The midwife helped with the delivery.", + "pos": "noun", + "word_frequency": 22417 + }, + { + "word": "mecánicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanically", + "example_sentence_native": "Hizo el trabajo mecánicamente, sin pensar.", + "example_sentence_english": "He did the work mechanically, without thinking.", + "pos": "adverb", + "word_frequency": 22418 + }, + { + "word": "mencion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mention", + "example_sentence_native": "Hizo una mención honorífica en su discurso.", + "example_sentence_english": "He made an honorable mention in his speech.", + "pos": "noun", + "word_frequency": 22419 + }, + { + "word": "mezquindad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meanness;pettiness;stinginess", + "example_sentence_native": "Su mezquindad le impidió compartir.", + "example_sentence_english": "His meanness prevented him from sharing.", + "pos": "noun", + "word_frequency": 22420 + }, + { + "word": "microbiología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microbiology", + "example_sentence_native": "Estudió microbiología en la universidad.", + "example_sentence_english": "She studied microbiology at university.", + "pos": "noun", + "word_frequency": 22422 + }, + { + "word": "mita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mita (forced labor system)", + "example_sentence_native": "La mita fue un sistema de trabajo forzado en la colonia.", + "example_sentence_english": "The mita was a system of forced labor in the colony.", + "pos": "noun", + "word_frequency": 22424 + }, + { + "word": "modulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modulation", + "example_sentence_native": "La modulación de la voz es importante para un orador.", + "example_sentence_english": "Voice modulation is important for a speaker.", + "pos": "noun", + "word_frequency": 22426 + }, + { + "word": "montañés", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountaineer;mountain dweller;Cantabrian", + "example_sentence_native": "Los montañeses conocen bien el terreno.", + "example_sentence_english": "The mountain dwellers know the terrain well.", + "pos": "noun", + "word_frequency": 22428 + }, + { + "word": "míster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mister;coach;manager", + "example_sentence_native": "El míster dio instrucciones al equipo.", + "example_sentence_english": "The coach gave instructions to the team.", + "pos": "noun", + "word_frequency": 22434 + }, + { + "word": "nadamas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nothing else;only", + "example_sentence_native": "Quiero un café, nada más.", + "example_sentence_english": "I want a coffee, nothing else.", + "pos": "adverb", + "word_frequency": 22435 + }, + { + "word": "napalm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "napalm", + "example_sentence_native": "El napalm fue usado en la guerra.", + "example_sentence_english": "Napalm was used in the war.", + "pos": "noun", + "word_frequency": 22436 + }, + { + "word": "neurociencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neuroscience", + "example_sentence_native": "La neurociencia estudia el sistema nervioso.", + "example_sentence_english": "Neuroscience studies the nervous system.", + "pos": "noun", + "word_frequency": 22438 + }, + { + "word": "nopal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prickly pear cactus", + "example_sentence_native": "El nopal es un ingrediente básico en la cocina mexicana.", + "example_sentence_english": "The prickly pear cactus is a basic ingredient in Mexican cuisine.", + "pos": "noun", + "word_frequency": 22441 + }, + { + "word": "nudillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knuckle", + "example_sentence_native": "Se golpeó el nudillo al cerrar la puerta.", + "example_sentence_english": "He hit his knuckle when closing the door.", + "pos": "noun", + "word_frequency": 22442 + }, + { + "word": "numerito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little number;fuss;scene", + "example_sentence_native": "No hagas un numerito por algo tan pequeño.", + "example_sentence_english": "Don't make a fuss over something so small.", + "pos": "noun", + "word_frequency": 22443 + }, + { + "word": "nutrido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-fed;abundant;numerous", + "example_sentence_native": "Asistió un nutrido grupo de personas a la conferencia.", + "example_sentence_english": "A numerous group of people attended the conference.", + "pos": "adjective", + "word_frequency": 22444 + }, + { + "word": "nódulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nodule", + "example_sentence_native": "Le encontraron un pequeño nódulo en la garganta.", + "example_sentence_english": "They found a small nodule in his throat.", + "pos": "noun", + "word_frequency": 22445 + }, + { + "word": "obituario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obituary", + "example_sentence_native": "Leyó el obituario en el periódico esta mañana.", + "example_sentence_english": "He read the obituary in the newspaper this morning.", + "pos": "noun", + "word_frequency": 22446 + }, + { + "word": "operatividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "operability;functionality", + "example_sentence_native": "La operatividad del sistema es crucial para la seguridad.", + "example_sentence_english": "The operability of the system is crucial for security.", + "pos": "noun", + "word_frequency": 22450 + }, + { + "word": "orquestado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orchestrated", + "example_sentence_native": "Fue un plan orquestado para desacreditarlo.", + "example_sentence_english": "It was an orchestrated plan to discredit him.", + "pos": "adjective", + "word_frequency": 22452 + }, + { + "word": "pachamama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Mother Earth (Andean deity)", + "example_sentence_native": "La Pachamama es venerada en los Andes como la Madre Tierra.", + "example_sentence_english": "Pachamama is venerated in the Andes as Mother Earth.", + "pos": "noun", + "word_frequency": 22454 + }, + { + "word": "pakistaní", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pakistani (person)", + "example_sentence_native": "Conocí a un pakistaní muy amable en el viaje.", + "example_sentence_english": "I met a very kind Pakistani on the trip.", + "pos": "noun", + "word_frequency": 22455 + }, + { + "word": "palillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toothpick;chopstick;drumstick", + "example_sentence_native": "Usó un palillo para quitarse un trozo de comida.", + "example_sentence_english": "He used a toothpick to remove a piece of food.", + "pos": "noun", + "word_frequency": 22456 + }, + { + "word": "pantomima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pantomime;charade", + "example_sentence_native": "La obra de teatro era una pantomima sin diálogos.", + "example_sentence_english": "The play was a pantomime without dialogues.", + "pos": "noun", + "word_frequency": 22457 + }, + { + "word": "paracetamol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paracetamol;acetaminophen", + "example_sentence_native": "Tomó paracetamol para el dolor de cabeza.", + "example_sentence_english": "He took paracetamol for his headache.", + "pos": "noun", + "word_frequency": 22458 + }, + { + "word": "parafernalia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paraphernalia;trappings", + "example_sentence_native": "Llevaba toda la parafernalia necesaria para acampar.", + "example_sentence_english": "He carried all the necessary paraphernalia for camping.", + "pos": "noun", + "word_frequency": 22459 + }, + { + "word": "paredón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution wall;large wall", + "example_sentence_native": "Los prisioneros fueron llevados al paredón.", + "example_sentence_english": "The prisoners were taken to the execution wall.", + "pos": "noun", + "word_frequency": 22460 + }, + { + "word": "pegatina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sticker", + "example_sentence_native": "Puso una pegatina en su cuaderno.", + "example_sentence_english": "She put a sticker on her notebook.", + "pos": "noun", + "word_frequency": 22462 + }, + { + "word": "percance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mishap;incident", + "example_sentence_native": "Tuvimos un pequeño percance en el camino.", + "example_sentence_english": "We had a small mishap on the way.", + "pos": "noun", + "word_frequency": 22463 + }, + { + "word": "permeabilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "permeability", + "example_sentence_native": "La permeabilidad del suelo afecta el drenaje del agua.", + "example_sentence_english": "The permeability of the soil affects water drainage.", + "pos": "noun", + "word_frequency": 22464 + }, + { + "word": "peticion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "petition;request", + "example_sentence_native": "Presentaron una petición al ayuntamiento.", + "example_sentence_english": "They submitted a petition to the city council.", + "pos": "noun", + "word_frequency": 22465 + }, + { + "word": "pizarrón", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blackboard;whiteboard", + "example_sentence_native": "El profesor escribió la lección en el pizarrón.", + "example_sentence_english": "The teacher wrote the lesson on the blackboard.", + "pos": "noun", + "word_frequency": 22468 + }, + { + "word": "piñón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pine nut;pinion (gear)", + "example_sentence_native": "Los piñones son deliciosos en ensaladas.", + "example_sentence_english": "Pine nuts are delicious in salads.", + "pos": "noun", + "word_frequency": 22469 + }, + { + "word": "plutonio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plutonium", + "example_sentence_native": "El plutonio es un elemento radiactivo.", + "example_sentence_english": "Plutonium is a radioactive element.", + "pos": "noun", + "word_frequency": 22470 + }, + { + "word": "pobremente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poorly;meagerly", + "example_sentence_native": "La casa estaba pobremente amueblada.", + "example_sentence_english": "The house was poorly furnished.", + "pos": "adverb", + "word_frequency": 22472 + }, + { + "word": "ponderado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weighted;balanced;thoughtful", + "example_sentence_native": "Su opinión siempre es muy ponderada y justa.", + "example_sentence_english": "His opinion is always very thoughtful and fair.", + "pos": "adjective", + "word_frequency": 22474 + }, + { + "word": "popularizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "popularized", + "example_sentence_native": "Esa canción se ha popularizado mucho en los últimos meses.", + "example_sentence_english": "That song has become very popularized in recent months.", + "pos": "adjective", + "word_frequency": 22475 + }, + { + "word": "pozole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pozole (Mexican stew)", + "example_sentence_native": "El pozole es un plato tradicional mexicano.", + "example_sentence_english": "Pozole is a traditional Mexican dish.", + "pos": "noun", + "word_frequency": 22476 + }, + { + "word": "precavido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cautious;wary", + "example_sentence_native": "Es mejor ser precavido al conducir en la nieve.", + "example_sentence_english": "It's better to be cautious when driving in the snow.", + "pos": "adjective", + "word_frequency": 22478 + }, + { + "word": "predicado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predicate", + "example_sentence_native": "En la oración, 'corre rápido' es el predicado.", + "example_sentence_english": "In the sentence, 'runs fast' is the predicate.", + "pos": "noun", + "word_frequency": 22479 + }, + { + "word": "privativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive;private", + "example_sentence_native": "El acceso a la zona es privativo para el personal autorizado.", + "example_sentence_english": "Access to the area is exclusive to authorized personnel.", + "pos": "adjective", + "word_frequency": 22480 + }, + { + "word": "proteccionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protectionist", + "example_sentence_native": "Adoptaron una política económica proteccionista.", + "example_sentence_english": "They adopted a protectionist economic policy.", + "pos": "adjective", + "word_frequency": 22481 + }, + { + "word": "publicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publicly", + "example_sentence_native": "El anuncio se hizo públicamente.", + "example_sentence_english": "The announcement was made publicly.", + "pos": "adverb", + "word_frequency": 22482 + }, + { + "word": "puna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "high Andean plateau", + "example_sentence_native": "La puna es una región de alta montaña en los Andes.", + "example_sentence_english": "The puna is a high mountain region in the Andes.", + "pos": "noun", + "word_frequency": 22483 + }, + { + "word": "puntito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little point;tiny dot", + "example_sentence_native": "Solo falta un puntito para terminar el dibujo.", + "example_sentence_english": "Just a little dot is missing to finish the drawing.", + "pos": "noun", + "word_frequency": 22484 + }, + { + "word": "radioactivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radioactive", + "example_sentence_native": "El material es altamente radioactivo.", + "example_sentence_english": "The material is highly radioactive.", + "pos": "adjective", + "word_frequency": 22487 + }, + { + "word": "radiofónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radio (adj.);broadcast", + "example_sentence_native": "La emisión radiofónica fue muy popular.", + "example_sentence_english": "The radio broadcast was very popular.", + "pos": "adjective", + "word_frequency": 22488 + }, + { + "word": "rapiña", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plunder;rapine;birds of prey", + "example_sentence_native": "Los buitres son aves de rapiña.", + "example_sentence_english": "Vultures are birds of prey.", + "pos": "noun", + "word_frequency": 22489 + }, + { + "word": "relatado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "related;narrated", + "example_sentence_native": "La historia relatada fue muy conmovedora.", + "example_sentence_english": "The narrated story was very moving.", + "pos": "adjective", + "word_frequency": 22490 + }, + { + "word": "represor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repressor;oppressor", + "example_sentence_native": "Fue un represor durante la dictadura.", + "example_sentence_english": "He was a repressor during the dictatorship.", + "pos": "noun", + "word_frequency": 22491 + }, + { + "word": "reputacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reputation", + "example_sentence_native": "Su reputación es impecable.", + "example_sentence_english": "His reputation is impeccable.", + "pos": "noun", + "word_frequency": 22492 + }, + { + "word": "reservación", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reservation", + "example_sentence_native": "Hice una reservación en el restaurante.", + "example_sentence_english": "I made a reservation at the restaurant.", + "pos": "noun", + "word_frequency": 22493 + }, + { + "word": "resignado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resigned", + "example_sentence_native": "Aceptó su destino de forma resignada.", + "example_sentence_english": "He accepted his fate in a resigned manner.", + "pos": "adjective", + "word_frequency": 22494 + }, + { + "word": "retardado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delayed;retarded", + "example_sentence_native": "El vuelo fue retardado por el mal tiempo.", + "example_sentence_english": "The flight was delayed due to bad weather.", + "pos": "adjective", + "word_frequency": 22495 + }, + { + "word": "rezago", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lag;delay;backlog", + "example_sentence_native": "Hay un rezago significativo en la producción.", + "example_sentence_english": "There is a significant backlog in production.", + "pos": "noun", + "word_frequency": 22496 + }, + { + "word": "reñido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disputed;quarrelsome;hard-fought", + "example_sentence_native": "Fue un partido muy reñido hasta el final.", + "example_sentence_english": "It was a very hard-fought match until the end.", + "pos": "adjective", + "word_frequency": 22497 + }, + { + "word": "rockero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocker (person)", + "example_sentence_native": "Es un rockero de corazón.", + "example_sentence_english": "He is a rocker at heart.", + "pos": "noun", + "word_frequency": 22500 + }, + { + "word": "rotor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotor", + "example_sentence_native": "El helicóptero tiene un rotor principal y uno de cola.", + "example_sentence_english": "The helicopter has a main rotor and a tail rotor.", + "pos": "noun", + "word_frequency": 22502 + }, + { + "word": "rótulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign;label", + "example_sentence_native": "El rótulo de la tienda es muy llamativo.", + "example_sentence_english": "The shop sign is very striking.", + "pos": "noun", + "word_frequency": 22506 + }, + { + "word": "seudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pseudo-;false", + "example_sentence_native": "La noticia resultó ser seudocientífica.", + "example_sentence_english": "The news turned out to be pseudoscientific.", + "pos": "adjective", + "word_frequency": 22511 + }, + { + "word": "señuelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lure;decoy", + "example_sentence_native": "Usaron un señuelo para atraer al animal.", + "example_sentence_english": "They used a lure to attract the animal.", + "pos": "noun", + "word_frequency": 22512 + }, + { + "word": "silvicultura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silviculture;forestry", + "example_sentence_native": "La silvicultura sostenible es crucial para el medio ambiente.", + "example_sentence_english": "Sustainable silviculture is crucial for the environment.", + "pos": "noun", + "word_frequency": 22516 + }, + { + "word": "simpleza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplicity;foolishness", + "example_sentence_native": "A veces la simpleza es la mejor solución.", + "example_sentence_english": "Sometimes simplicity is the best solution.", + "pos": "noun", + "word_frequency": 22517 + }, + { + "word": "simulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulated;fake", + "example_sentence_native": "Realizaron un ataque simulado para el entrenamiento.", + "example_sentence_english": "They carried out a simulated attack for training.", + "pos": "adjective", + "word_frequency": 22518 + }, + { + "word": "sintonizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tune in;to synchronize", + "example_sentence_native": "Sintoniza la radio en la emisora correcta.", + "example_sentence_english": "Tune the radio to the correct station.", + "pos": "verb", + "word_frequency": 22519 + }, + { + "word": "somalí", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Somali", + "example_sentence_native": "Ella es de origen somalí.", + "example_sentence_english": "She is of Somali origin.", + "pos": "noun", + "word_frequency": 22523 + }, + { + "word": "tabique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partition wall", + "example_sentence_native": "Construyeron un tabique para dividir la habitación.", + "example_sentence_english": "They built a partition wall to divide the room.", + "pos": "noun", + "word_frequency": 22526 + }, + { + "word": "tachar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cross out", + "example_sentence_native": "Por favor, tacha mi nombre de la lista.", + "example_sentence_english": "Please, cross my name off the list.", + "pos": "verb", + "word_frequency": 22527 + }, + { + "word": "tallarín", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noodle", + "example_sentence_native": "Me encantan los tallarines con salsa de tomate.", + "example_sentence_english": "I love noodles with tomato sauce.", + "pos": "noun", + "word_frequency": 22528 + }, + { + "word": "tetera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teapot", + "example_sentence_native": "La tetera está en la cocina.", + "example_sentence_english": "The teapot is in the kitchen.", + "pos": "noun", + "word_frequency": 22530 + }, + { + "word": "tobogán", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slide", + "example_sentence_native": "Los niños se divierten en el tobogán del parque.", + "example_sentence_english": "The children have fun on the park slide.", + "pos": "noun", + "word_frequency": 22532 + }, + { + "word": "trasvase", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfer (of liquids)", + "example_sentence_native": "El trasvase de agua es un tema controvertido.", + "example_sentence_english": "Water transfer is a controversial topic.", + "pos": "noun", + "word_frequency": 22535 + }, + { + "word": "trotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trot", + "example_sentence_native": "Me gusta trotar por el parque cada mañana.", + "example_sentence_english": "I like to jog in the park every morning.", + "pos": "verb", + "word_frequency": 22536 + }, + { + "word": "tuco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tomato sauce (regional)", + "example_sentence_native": "Preparamos la pasta con tuco casero.", + "example_sentence_english": "We prepared the pasta with homemade tomato sauce.", + "pos": "noun", + "word_frequency": 22537 + }, + { + "word": "usanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custom", + "example_sentence_native": "Es una usanza antigua de la región.", + "example_sentence_english": "It's an old custom of the region.", + "pos": "noun", + "word_frequency": 22540 + }, + { + "word": "vado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ford;dip (in road)", + "example_sentence_native": "No aparques aquí, es un vado permanente.", + "example_sentence_english": "Don't park here, it's a permanent dip.", + "pos": "noun", + "word_frequency": 22541 + }, + { + "word": "vehemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vehement", + "example_sentence_native": "Su discurso fue muy vehemente.", + "example_sentence_english": "His speech was very vehement.", + "pos": "adjective", + "word_frequency": 22545 + }, + { + "word": "veracruzano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Veracruzian", + "example_sentence_native": "La comida veracruzana es deliciosa.", + "example_sentence_english": "Veracruzian food is delicious.", + "pos": "adjective", + "word_frequency": 22546 + }, + { + "word": "vertebrado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vertebrate", + "example_sentence_native": "Los mamíferos son animales vertebrados.", + "example_sentence_english": "Mammals are vertebrate animals.", + "pos": "noun", + "word_frequency": 22547 + }, + { + "word": "acérrimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "staunch", + "example_sentence_native": "Es un defensor acérrimo de sus ideas.", + "example_sentence_english": "He is a staunch defender of his ideas.", + "pos": "adjective", + "word_frequency": 22558 + }, + { + "word": "alertado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alerted;warned", + "example_sentence_native": "El público estaba alertado sobre el peligro.", + "example_sentence_english": "The public was alerted about the danger.", + "pos": "adjective", + "word_frequency": 22563 + }, + { + "word": "amedrentar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to intimidate;to frighten", + "example_sentence_native": "No dejes que nadie te amedrente.", + "example_sentence_english": "Don't let anyone intimidate you.", + "pos": "verb", + "word_frequency": 22566 + }, + { + "word": "aneurisma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "aneurysm", + "example_sentence_native": "Le diagnosticaron un aneurisma cerebral.", + "example_sentence_english": "He was diagnosed with a brain aneurysm.", + "pos": "noun", + "word_frequency": 22567 + }, + { + "word": "anfibio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphibian", + "example_sentence_native": "La rana es un anfibio.", + "example_sentence_english": "The frog is an amphibian.", + "pos": "noun", + "word_frequency": 22568 + }, + { + "word": "antipatía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antipathy;dislike", + "example_sentence_native": "Sentía una profunda antipatía por su nuevo jefe.", + "example_sentence_english": "He felt a deep antipathy towards his new boss.", + "pos": "noun", + "word_frequency": 22570 + }, + { + "word": "anulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annulled;cancelled;voided", + "example_sentence_native": "El vuelo fue anulado debido al mal tiempo.", + "example_sentence_english": "The flight was cancelled due to bad weather.", + "pos": "adjective", + "word_frequency": 22571 + }, + { + "word": "anverso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obverse;front side", + "example_sentence_native": "El anverso de la moneda muestra el escudo.", + "example_sentence_english": "The obverse of the coin shows the coat of arms.", + "pos": "noun", + "word_frequency": 22572 + }, + { + "word": "asterisco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asterisk", + "example_sentence_native": "Pon un asterisco al lado de la nota importante.", + "example_sentence_english": "Put an asterisk next to the important note.", + "pos": "noun", + "word_frequency": 22576 + }, + { + "word": "atestiguar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to testify;to bear witness", + "example_sentence_native": "Él tuvo que atestiguar en el juicio.", + "example_sentence_english": "He had to testify in court.", + "pos": "verb", + "word_frequency": 22577 + }, + { + "word": "atrofia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "atrophy", + "example_sentence_native": "La falta de uso puede causar atrofia muscular.", + "example_sentence_english": "Lack of use can cause muscle atrophy.", + "pos": "noun", + "word_frequency": 22578 + }, + { + "word": "barlovento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "windward", + "example_sentence_native": "El barco navegaba a barlovento.", + "example_sentence_english": "The ship was sailing windward.", + "pos": "noun", + "word_frequency": 22584 + }, + { + "word": "barman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bartender;barman", + "example_sentence_native": "El barman preparó un cóctel delicioso.", + "example_sentence_english": "The bartender prepared a delicious cocktail.", + "pos": "noun", + "word_frequency": 22585 + }, + { + "word": "bengalí", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bengali", + "example_sentence_native": "Habla bengalí con fluidez.", + "example_sentence_english": "He speaks Bengali fluently.", + "pos": "adjective", + "word_frequency": 22587 + }, + { + "word": "bergantín", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "brigantine", + "example_sentence_native": "El bergantín zarpó al amanecer.", + "example_sentence_english": "The brigantine set sail at dawn.", + "pos": "noun", + "word_frequency": 22589 + }, + { + "word": "bisabuela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great-grandmother", + "example_sentence_native": "Mi bisabuela vivió hasta los cien años.", + "example_sentence_english": "My great-grandmother lived until she was a hundred.", + "pos": "noun", + "word_frequency": 22590 + }, + { + "word": "bombazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bomb blast;bombshell (news)", + "example_sentence_native": "La noticia fue un verdadero bombazo.", + "example_sentence_english": "The news was a real bombshell.", + "pos": "noun", + "word_frequency": 22593 + }, + { + "word": "botado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launched;thrown (away)", + "example_sentence_native": "El nuevo barco fue botado al mar.", + "example_sentence_english": "The new ship was launched into the sea.", + "pos": "adjective", + "word_frequency": 22594 + }, + { + "word": "canonización", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "canonization", + "example_sentence_native": "La canonización del nuevo santo fue un evento importante.", + "example_sentence_english": "The canonization of the new saint was an important event.", + "pos": "noun", + "word_frequency": 22597 + }, + { + "word": "captado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captured;understood;perceived", + "example_sentence_native": "El mensaje fue captado por todos.", + "example_sentence_english": "The message was understood by everyone.", + "pos": "adjective", + "word_frequency": 22598 + }, + { + "word": "captor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captor", + "example_sentence_native": "El captor exigió un rescate.", + "example_sentence_english": "The captor demanded a ransom.", + "pos": "noun", + "word_frequency": 22599 + }, + { + "word": "cardiología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cardiology", + "example_sentence_native": "Estudió cardiología en la universidad.", + "example_sentence_english": "She studied cardiology at the university.", + "pos": "noun", + "word_frequency": 22602 + }, + { + "word": "caricaturista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartoonist", + "example_sentence_native": "El caricaturista dibujó un retrato divertido.", + "example_sentence_english": "The cartoonist drew a funny portrait.", + "pos": "noun", + "word_frequency": 22603 + }, + { + "word": "casillero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locker", + "example_sentence_native": "Guarda tus libros en el casillero.", + "example_sentence_english": "Keep your books in the locker.", + "pos": "noun", + "word_frequency": 22604 + }, + { + "word": "cervecero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brewing;beer-related", + "example_sentence_native": "La industria cervecera ha crecido mucho.", + "example_sentence_english": "The brewing industry has grown a lot.", + "pos": "adjective", + "word_frequency": 22606 + }, + { + "word": "chacho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kid;guy (informal;Canary Islands;Caribbean)", + "example_sentence_native": "¡Qué pasa, chacho! ¿Cómo estás?", + "example_sentence_english": "What's up, man! How are you?", + "pos": "noun", + "word_frequency": 22607 + }, + { + "word": "chancla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flip-flop;sandal", + "example_sentence_native": "Me puse las chanclas para ir a la playa.", + "example_sentence_english": "I put on my flip-flops to go to the beach.", + "pos": "noun", + "word_frequency": 22608 + }, + { + "word": "colcha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bedspread;quilt", + "example_sentence_native": "La colcha de la cama es muy suave.", + "example_sentence_english": "The bedspread is very soft.", + "pos": "noun", + "word_frequency": 22611 + }, + { + "word": "compensado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensated;balanced", + "example_sentence_native": "Se sintió compensado por su esfuerzo.", + "example_sentence_english": "He felt compensated for his effort.", + "pos": "adjective", + "word_frequency": 22612 + }, + { + "word": "compilador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compiler", + "example_sentence_native": "Necesitas un compilador para ejecutar este código.", + "example_sentence_english": "You need a compiler to run this code.", + "pos": "noun", + "word_frequency": 22613 + }, + { + "word": "conjura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspiracy;plot", + "example_sentence_native": "Descubrieron una conjura contra el rey.", + "example_sentence_english": "They discovered a conspiracy against the king.", + "pos": "noun", + "word_frequency": 22614 + }, + { + "word": "correctivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrective", + "example_sentence_native": "Tomaron medidas correctivas para solucionar el problema.", + "example_sentence_english": "They took corrective measures to solve the problem.", + "pos": "adjective", + "word_frequency": 22616 + }, + { + "word": "cuantificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantification", + "example_sentence_native": "La cuantificación de datos es esencial en la investigación.", + "example_sentence_english": "Data quantification is essential in research.", + "pos": "noun", + "word_frequency": 22618 + }, + { + "word": "cíclico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyclic;cyclical", + "example_sentence_native": "Los ciclos económicos son cíclicos.", + "example_sentence_english": "Economic cycles are cyclical.", + "pos": "adjective", + "word_frequency": 22620 + }, + { + "word": "denigrante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denigrating;degrading", + "example_sentence_native": "Fue un comentario denigrante.", + "example_sentence_english": "It was a denigrating comment.", + "pos": "adjective", + "word_frequency": 22623 + }, + { + "word": "depilación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hair removal;depilation", + "example_sentence_native": "La depilación láser es muy popular.", + "example_sentence_english": "Laser hair removal is very popular.", + "pos": "noun", + "word_frequency": 22624 + }, + { + "word": "descargado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downloaded;unloaded", + "example_sentence_native": "El archivo ya está descargado.", + "example_sentence_english": "The file is already downloaded.", + "pos": "adjective", + "word_frequency": 22625 + }, + { + "word": "desfase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lag;discrepancy;phase shift", + "example_sentence_native": "Hay un desfase entre la teoría y la práctica.", + "example_sentence_english": "There is a discrepancy between theory and practice.", + "pos": "noun", + "word_frequency": 22626 + }, + { + "word": "desintoxicación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detoxification", + "example_sentence_native": "Necesita un programa de desintoxicación.", + "example_sentence_english": "He needs a detoxification program.", + "pos": "noun", + "word_frequency": 22628 + }, + { + "word": "desmantelado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismantled;stripped down", + "example_sentence_native": "El edificio fue desmantelado por seguridad.", + "example_sentence_english": "The building was dismantled for safety.", + "pos": "adjective", + "word_frequency": 22629 + }, + { + "word": "desorientado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disoriented;confused", + "example_sentence_native": "Se sintió desorientado en la ciudad nueva.", + "example_sentence_english": "He felt disoriented in the new city.", + "pos": "adjective", + "word_frequency": 22630 + }, + { + "word": "despreciado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despised;scorned", + "example_sentence_native": "Se sintió despreciado por sus compañeros.", + "example_sentence_english": "He felt despised by his colleagues.", + "pos": "adjective", + "word_frequency": 22631 + }, + { + "word": "desventura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misfortune;mishap", + "example_sentence_native": "La desventura lo persiguió durante años.", + "example_sentence_english": "Misfortune pursued him for years.", + "pos": "noun", + "word_frequency": 22632 + }, + { + "word": "diluir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dilute", + "example_sentence_native": "Debes diluir el jugo con agua.", + "example_sentence_english": "You should dilute the juice with water.", + "pos": "verb", + "word_frequency": 22636 + }, + { + "word": "discrecional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discretionary", + "example_sentence_native": "La decisión es discrecional del juez.", + "example_sentence_english": "The decision is at the judge's discretion.", + "pos": "adjective", + "word_frequency": 22637 + }, + { + "word": "disección", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissection", + "example_sentence_native": "La disección del corazón es compleja.", + "example_sentence_english": "Heart dissection is complex.", + "pos": "noun", + "word_frequency": 22639 + }, + { + "word": "distanciar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distance;to separate", + "example_sentence_native": "Es importante distanciarte de las personas tóxicas.", + "example_sentence_english": "It's important to distance yourself from toxic people.", + "pos": "verb", + "word_frequency": 22640 + }, + { + "word": "ducto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duct;conduit", + "example_sentence_native": "El aire acondicionado necesita un ducto para la ventilación.", + "example_sentence_english": "The air conditioning needs a duct for ventilation.", + "pos": "noun", + "word_frequency": 22643 + }, + { + "word": "encaminar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to direct;to guide", + "example_sentence_native": "Debemos encaminar nuestros esfuerzos hacia un objetivo común.", + "example_sentence_english": "We must direct our efforts towards a common goal.", + "pos": "verb", + "word_frequency": 22647 + }, + { + "word": "encriptación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encryption", + "example_sentence_native": "La encriptación de datos es crucial para la seguridad en línea.", + "example_sentence_english": "Data encryption is crucial for online security.", + "pos": "noun", + "word_frequency": 22648 + }, + { + "word": "endurecido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardened;toughened", + "example_sentence_native": "Su corazón se había endurecido con los años.", + "example_sentence_english": "His heart had hardened over the years.", + "pos": "adjective", + "word_frequency": 22649 + }, + { + "word": "escalado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scaled;escalated", + "example_sentence_native": "El conflicto ha escalado a un nivel peligroso.", + "example_sentence_english": "The conflict has escalated to a dangerous level.", + "pos": "adjective", + "word_frequency": 22651 + }, + { + "word": "escalinata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grand staircase;flight of steps", + "example_sentence_native": "Subimos por la majestuosa escalinata del palacio.", + "example_sentence_english": "We went up the majestic grand staircase of the palace.", + "pos": "noun", + "word_frequency": 22652 + }, + { + "word": "escapatoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escape;loophole;way out", + "example_sentence_native": "No había escapatoria de la situación.", + "example_sentence_english": "There was no escape from the situation.", + "pos": "noun", + "word_frequency": 22653 + }, + { + "word": "estimulado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulated;encouraged", + "example_sentence_native": "Se sintió estimulado por las palabras de su mentor.", + "example_sentence_english": "He felt stimulated by his mentor's words.", + "pos": "adjective", + "word_frequency": 22654 + }, + { + "word": "etnográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnographic", + "example_sentence_native": "El museo exhibe una colección etnográfica de la región.", + "example_sentence_english": "The museum exhibits an ethnographic collection from the region.", + "pos": "adjective", + "word_frequency": 22655 + }, + { + "word": "excedido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceeded;overstepped", + "example_sentence_native": "El presupuesto ha sido excedido.", + "example_sentence_english": "The budget has been exceeded.", + "pos": "adjective", + "word_frequency": 22657 + }, + { + "word": "externamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "externally", + "example_sentence_native": "Externamente, todo parecía normal.", + "example_sentence_english": "Externally, everything seemed normal.", + "pos": "adverb", + "word_frequency": 22659 + }, + { + "word": "facturar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to check in (luggage);to invoice", + "example_sentence_native": "Necesito facturar mi equipaje antes del vuelo.", + "example_sentence_english": "I need to check in my luggage before the flight.", + "pos": "verb", + "word_frequency": 22660 + }, + { + "word": "federalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federalist", + "example_sentence_native": "Los federalistas apoyaban un gobierno central fuerte.", + "example_sentence_english": "The federalists supported a strong central government.", + "pos": "noun", + "word_frequency": 22665 + }, + { + "word": "ferial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fair-related;market-related", + "example_sentence_native": "La actividad ferial atrae a muchos visitantes.", + "example_sentence_english": "The fair activity attracts many visitors.", + "pos": "adjective", + "word_frequency": 22667 + }, + { + "word": "ferozmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiercely;ferociously", + "example_sentence_native": "El perro ladró ferozmente al extraño.", + "example_sentence_english": "The dog barked fiercely at the stranger.", + "pos": "adverb", + "word_frequency": 22669 + }, + { + "word": "filantropía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philanthropy", + "example_sentence_native": "La filantropía es esencial para el desarrollo social.", + "example_sentence_english": "Philanthropy is essential for social development.", + "pos": "noun", + "word_frequency": 22670 + }, + { + "word": "folclórico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folkloric;traditional", + "example_sentence_native": "Disfrutamos de un espectáculo de danza folclórica.", + "example_sentence_english": "We enjoyed a folkloric dance show.", + "pos": "adjective", + "word_frequency": 22673 + }, + { + "word": "fono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phone (informal);sound (as prefix)", + "example_sentence_native": "¿Me pasas el fono?", + "example_sentence_english": "Can you pass me the phone?", + "pos": "noun", + "word_frequency": 22674 + }, + { + "word": "frecuentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frequent;to visit often", + "example_sentence_native": "Solía frecuentar ese café cuando era estudiante.", + "example_sentence_english": "I used to frequent that cafe when I was a student.", + "pos": "verb", + "word_frequency": 22675 + }, + { + "word": "gastritis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastritis", + "example_sentence_native": "El médico le diagnosticó gastritis.", + "example_sentence_english": "The doctor diagnosed him with gastritis.", + "pos": "noun", + "word_frequency": 22676 + }, + { + "word": "gazeta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gazette;newspaper (archaic spelling)", + "example_sentence_native": "La gazeta publicó las últimas noticias.", + "example_sentence_english": "The gazette published the latest news.", + "pos": "noun", + "word_frequency": 22678 + }, + { + "word": "geógrafo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geographer", + "example_sentence_native": "Un geógrafo estudia la superficie terrestre.", + "example_sentence_english": "A geographer studies the Earth's surface.", + "pos": "noun", + "word_frequency": 22679 + }, + { + "word": "guardameta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goalkeeper", + "example_sentence_native": "El guardameta hizo una parada increíble.", + "example_sentence_english": "The goalkeeper made an incredible save.", + "pos": "noun", + "word_frequency": 22681 + }, + { + "word": "herbicida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herbicide", + "example_sentence_native": "Usaron un herbicida para eliminar las malas hierbas del jardín.", + "example_sentence_english": "They used a herbicide to eliminate the weeds from the garden.", + "pos": "noun", + "word_frequency": 22686 + }, + { + "word": "horizontalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontally", + "example_sentence_native": "Coloca el libro horizontalmente sobre la mesa.", + "example_sentence_english": "Place the book horizontally on the table.", + "pos": "adverb", + "word_frequency": 22688 + }, + { + "word": "incineración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incineration", + "example_sentence_native": "La incineración de residuos es un método de eliminación.", + "example_sentence_english": "Waste incineration is a disposal method.", + "pos": "noun", + "word_frequency": 22693 + }, + { + "word": "inconcluso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfinished;incomplete", + "example_sentence_native": "El proyecto quedó inconcluso debido a la falta de fondos.", + "example_sentence_english": "The project remained unfinished due to lack of funds.", + "pos": "adjective", + "word_frequency": 22694 + }, + { + "word": "incumplido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfulfilled;unmet", + "example_sentence_native": "Su promesa quedó incumplida.", + "example_sentence_english": "His promise remained unfulfilled.", + "pos": "adjective", + "word_frequency": 22695 + }, + { + "word": "inexorable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexorable;relentless", + "example_sentence_native": "El paso del tiempo es inexorable.", + "example_sentence_english": "The passage of time is inexorable.", + "pos": "adjective", + "word_frequency": 22698 + }, + { + "word": "inflamable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flammable", + "example_sentence_native": "Este material es altamente inflamable.", + "example_sentence_english": "This material is highly flammable.", + "pos": "adjective", + "word_frequency": 22699 + }, + { + "word": "infundado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfounded;groundless", + "example_sentence_native": "Sus acusaciones resultaron ser infundadas.", + "example_sentence_english": "His accusations turned out to be unfounded.", + "pos": "adjective", + "word_frequency": 22700 + }, + { + "word": "ingle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "groin", + "example_sentence_native": "Sintió un dolor agudo en la ingle.", + "example_sentence_english": "He felt a sharp pain in his groin.", + "pos": "noun", + "word_frequency": 22701 + }, + { + "word": "inmutable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immutable;unchangeable", + "example_sentence_native": "Sus principios morales son inmutables.", + "example_sentence_english": "His moral principles are immutable.", + "pos": "adjective", + "word_frequency": 22702 + }, + { + "word": "intercesión", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intercession", + "example_sentence_native": "Gracias a su intercesión, se llegó a un acuerdo.", + "example_sentence_english": "Thanks to his intercession, an agreement was reached.", + "pos": "noun", + "word_frequency": 22703 + }, + { + "word": "inventiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventiveness;ingenuity", + "example_sentence_native": "Demostró una gran inventiva para resolver el problema.", + "example_sentence_english": "He showed great inventiveness in solving the problem.", + "pos": "noun", + "word_frequency": 22705 + }, + { + "word": "jauría", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pack (of dogs)", + "example_sentence_native": "Una jauría de perros persiguió al zorro.", + "example_sentence_english": "A pack of dogs chased the fox.", + "pos": "noun", + "word_frequency": 22708 + }, + { + "word": "jeroglífico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hieroglyph", + "example_sentence_native": "Los antiguos egipcios escribían con jeroglíficos.", + "example_sentence_english": "Ancient Egyptians wrote with hieroglyphs.", + "pos": "noun", + "word_frequency": 22709 + }, + { + "word": "kiosko", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiosk;newsstand", + "example_sentence_native": "Compré el periódico en el kiosko de la esquina.", + "example_sentence_english": "I bought the newspaper at the corner kiosk.", + "pos": "noun", + "word_frequency": 22712 + }, + { + "word": "lauro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laurel;triumph;glory", + "example_sentence_native": "El atleta obtuvo el lauro de la victoria.", + "example_sentence_english": "The athlete achieved the laurel of victory.", + "pos": "noun", + "word_frequency": 22719 + }, + { + "word": "leninismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Leninism", + "example_sentence_native": "El leninismo es una ideología política.", + "example_sentence_english": "Leninism is a political ideology.", + "pos": "noun", + "word_frequency": 22722 + }, + { + "word": "leva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camshaft;levy;conscription", + "example_sentence_native": "La leva del motor necesita ser reemplazada.", + "example_sentence_english": "The engine's camshaft needs to be replaced.", + "pos": "noun", + "word_frequency": 22723 + }, + { + "word": "lilia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lily", + "example_sentence_native": "Las lilias son flores muy bonitas.", + "example_sentence_english": "Lilies are very beautiful flowers.", + "pos": "noun", + "word_frequency": 22725 + }, + { + "word": "llovizna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drizzle", + "example_sentence_native": "Hoy hay una llovizna ligera.", + "example_sentence_english": "Today there is a light drizzle.", + "pos": "noun", + "word_frequency": 22726 + }, + { + "word": "maniquí", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mannequin", + "example_sentence_native": "El maniquí del escaparate lleva un vestido nuevo.", + "example_sentence_english": "The display mannequin is wearing a new dress.", + "pos": "noun", + "word_frequency": 22730 + }, + { + "word": "materializar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to materialize;to realize", + "example_sentence_native": "Espero que podamos materializar nuestros planes.", + "example_sentence_english": "I hope we can materialize our plans.", + "pos": "verb", + "word_frequency": 22731 + }, + { + "word": "mejicano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Mexican", + "example_sentence_native": "La comida mejicana es deliciosa.", + "example_sentence_english": "Mexican food is delicious.", + "pos": "adjective", + "word_frequency": 22735 + }, + { + "word": "membrillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quince", + "example_sentence_native": "Me gusta el dulce de membrillo.", + "example_sentence_english": "I like quince paste.", + "pos": "noun", + "word_frequency": 22736 + }, + { + "word": "mensualidad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly payment;monthly fee", + "example_sentence_native": "La mensualidad del gimnasio es de 30 euros.", + "example_sentence_english": "The monthly gym fee is 30 euros.", + "pos": "noun", + "word_frequency": 22737 + }, + { + "word": "merindad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merindad (historical administrative division in Spain)", + "example_sentence_native": "La merindad de Pamplona tiene una rica historia.", + "example_sentence_english": "The merindad of Pamplona has a rich history.", + "pos": "noun", + "word_frequency": 22738 + }, + { + "word": "milico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soldier (colloquial;often derogatory)", + "example_sentence_native": "Los milicos patrullaban las calles.", + "example_sentence_english": "The soldiers patrolled the streets.", + "pos": "noun", + "word_frequency": 22741 + }, + { + "word": "miope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nearsighted;myopic", + "example_sentence_native": "Soy miope y necesito gafas.", + "example_sentence_english": "I am nearsighted and need glasses.", + "pos": "adjective", + "word_frequency": 22743 + }, + { + "word": "miscelánea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miscellany;assortment", + "example_sentence_native": "La tienda vende una miscelánea de productos.", + "example_sentence_english": "The store sells a miscellany of products.", + "pos": "noun", + "word_frequency": 22744 + }, + { + "word": "moldura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molding;trim", + "example_sentence_native": "La moldura del techo es muy elegante.", + "example_sentence_english": "The ceiling molding is very elegant.", + "pos": "noun", + "word_frequency": 22746 + }, + { + "word": "monito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little monkey;cute monkey", + "example_sentence_native": "El monito jugaba en el árbol.", + "example_sentence_english": "The little monkey played in the tree.", + "pos": "noun", + "word_frequency": 22747 + }, + { + "word": "narcisismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcissism", + "example_sentence_native": "Su narcisismo le impide ver sus errores.", + "example_sentence_english": "His narcissism prevents him from seeing his mistakes.", + "pos": "noun", + "word_frequency": 22750 + }, + { + "word": "nini", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "NEET (Not in Education;Employment;or Training)", + "example_sentence_native": "Muchos jóvenes son nini hoy en día.", + "example_sentence_english": "Many young people are NEETs nowadays.", + "pos": "noun", + "word_frequency": 22753 + }, + { + "word": "oncología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oncology", + "example_sentence_native": "La oncología es la rama de la medicina que estudia el cáncer.", + "example_sentence_english": "Oncology is the branch of medicine that studies cancer.", + "pos": "noun", + "word_frequency": 22756 + }, + { + "word": "parón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halt;stop;break", + "example_sentence_native": "Hubo un parón en la producción.", + "example_sentence_english": "There was a halt in production.", + "pos": "noun", + "word_frequency": 22759 + }, + { + "word": "patentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patented", + "example_sentence_native": "El nuevo invento está patentado.", + "example_sentence_english": "The new invention is patented.", + "pos": "adjective", + "word_frequency": 22760 + }, + { + "word": "pedida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "request", + "example_sentence_native": "La pedida de mano fue muy romántica.", + "example_sentence_english": "The marriage proposal was very romantic.", + "pos": "noun", + "word_frequency": 22762 + }, + { + "word": "pelotudes", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foolishness", + "example_sentence_native": "No digas más pelotudeces.", + "example_sentence_english": "Don't say any more nonsense.", + "pos": "noun", + "word_frequency": 22763 + }, + { + "word": "penetrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penetrated", + "example_sentence_native": "El mercado ha sido penetrado por nuevas tecnologías.", + "example_sentence_english": "The market has been penetrated by new technologies.", + "pos": "adjective", + "word_frequency": 22764 + }, + { + "word": "perdidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madly", + "example_sentence_native": "Está perdidamente enamorado de ella.", + "example_sentence_english": "He is madly in love with her.", + "pos": "adverb", + "word_frequency": 22765 + }, + { + "word": "perimetral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perimeter", + "example_sentence_native": "Construyeron un muro perimetral alrededor de la propiedad.", + "example_sentence_english": "They built a perimeter wall around the property.", + "pos": "adjective", + "word_frequency": 22766 + }, + { + "word": "perpetrado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perpetrated", + "example_sentence_native": "El crimen perpetrado conmocionó a la comunidad.", + "example_sentence_english": "The perpetrated crime shocked the community.", + "pos": "adjective", + "word_frequency": 22767 + }, + { + "word": "pira", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pyre", + "example_sentence_native": "Encendieron una pira funeraria.", + "example_sentence_english": "They lit a funeral pyre.", + "pos": "noun", + "word_frequency": 22769 + }, + { + "word": "placard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wardrobe", + "example_sentence_native": "Guarda la ropa en el placard.", + "example_sentence_english": "Put the clothes in the wardrobe.", + "pos": "noun", + "word_frequency": 22770 + }, + { + "word": "plug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plug", + "example_sentence_native": "Necesito un adaptador para este plug.", + "example_sentence_english": "I need an adapter for this plug.", + "pos": "noun", + "word_frequency": 22771 + }, + { + "word": "pluvial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pluvial", + "example_sentence_native": "La temporada pluvial comienza en mayo.", + "example_sentence_english": "The rainy season begins in May.", + "pos": "adjective", + "word_frequency": 22772 + }, + { + "word": "poción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potion", + "example_sentence_native": "La bruja preparó una poción mágica.", + "example_sentence_english": "The witch prepared a magic potion.", + "pos": "noun", + "word_frequency": 22773 + }, + { + "word": "poligamia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polygamy", + "example_sentence_native": "La poligamia es ilegal en muchos países.", + "example_sentence_english": "Polygamy is illegal in many countries.", + "pos": "noun", + "word_frequency": 22774 + }, + { + "word": "portazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "door slam", + "example_sentence_native": "Dio un portazo al salir de la habitación.", + "example_sentence_english": "He slammed the door when leaving the room.", + "pos": "noun", + "word_frequency": 22776 + }, + { + "word": "posesivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possessive", + "example_sentence_native": "Es muy posesivo con sus juguetes.", + "example_sentence_english": "He is very possessive with his toys.", + "pos": "adjective", + "word_frequency": 22777 + }, + { + "word": "proactivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proactive", + "example_sentence_native": "Es importante ser proactivo en el trabajo.", + "example_sentence_english": "It's important to be proactive at work.", + "pos": "adjective", + "word_frequency": 22781 + }, + { + "word": "programacion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programming", + "example_sentence_native": "La programación de hoy incluye una película.", + "example_sentence_english": "Today's programming includes a movie.", + "pos": "noun", + "word_frequency": 22782 + }, + { + "word": "proletario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proletarian", + "example_sentence_native": "La clase proletaria luchó por sus derechos.", + "example_sentence_english": "The proletarian class fought for its rights.", + "pos": "adjective", + "word_frequency": 22783 + }, + { + "word": "racionalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalism", + "example_sentence_native": "El racionalismo es una corriente filosófica.", + "example_sentence_english": "Rationalism is a philosophical current.", + "pos": "noun", + "word_frequency": 22785 + }, + { + "word": "raqueta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "racket", + "example_sentence_native": "Necesito una raqueta nueva para jugar al tenis.", + "example_sentence_english": "I need a new racket to play tennis.", + "pos": "noun", + "word_frequency": 22786 + }, + { + "word": "relacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relational", + "example_sentence_native": "Las bases de datos relacionales son muy comunes.", + "example_sentence_english": "Relational databases are very common.", + "pos": "adjective", + "word_frequency": 22787 + }, + { + "word": "revalorización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revaluation", + "example_sentence_native": "La revalorización de la moneda es positiva.", + "example_sentence_english": "The revaluation of the currency is positive.", + "pos": "noun", + "word_frequency": 22789 + }, + { + "word": "revestido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coated", + "example_sentence_native": "La pared está revestida de madera.", + "example_sentence_english": "The wall is covered with wood.", + "pos": "adjective", + "word_frequency": 22790 + }, + { + "word": "runa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rune", + "example_sentence_native": "Encontraron una antigua runa grabada en la piedra.", + "example_sentence_english": "They found an ancient rune carved into the stone.", + "pos": "noun", + "word_frequency": 22797 + }, + { + "word": "sanguijuela", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leech", + "example_sentence_native": "La sanguijuela se adhirió a su piel.", + "example_sentence_english": "The leech attached itself to his skin.", + "pos": "noun", + "word_frequency": 22802 + }, + { + "word": "sarta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "string;chain;series", + "example_sentence_native": "Dijo una sarta de mentiras.", + "example_sentence_english": "He told a string of lies.", + "pos": "noun", + "word_frequency": 22803 + }, + { + "word": "semblante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countenance;expression", + "example_sentence_native": "Su semblante mostraba preocupación.", + "example_sentence_english": "His countenance showed concern.", + "pos": "noun", + "word_frequency": 22805 + }, + { + "word": "simbolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symbol", + "example_sentence_native": "La paloma es un símbolo de paz.", + "example_sentence_english": "The dove is a symbol of peace.", + "pos": "noun", + "word_frequency": 22806 + }, + { + "word": "sinergia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synergy", + "example_sentence_native": "La sinergia entre los equipos fue clave para el éxito.", + "example_sentence_english": "The synergy between the teams was key to success.", + "pos": "noun", + "word_frequency": 22807 + }, + { + "word": "soldar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weld", + "example_sentence_native": "Necesitamos soldar estas dos piezas de metal.", + "example_sentence_english": "We need to weld these two metal pieces.", + "pos": "verb", + "word_frequency": 22809 + }, + { + "word": "subregión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subregion", + "example_sentence_native": "Esta subregión tiene un clima particular.", + "example_sentence_english": "This subregion has a particular climate.", + "pos": "noun", + "word_frequency": 22810 + }, + { + "word": "suficiencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sufficiency;competence", + "example_sentence_native": "Demostró su suficiencia en el examen.", + "example_sentence_english": "He demonstrated his competence in the exam.", + "pos": "noun", + "word_frequency": 22811 + }, + { + "word": "survey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey", + "example_sentence_native": "Realizamos un survey para conocer la opinión de los clientes.", + "example_sentence_english": "We conducted a survey to know the customers' opinion.", + "pos": "noun", + "word_frequency": 22812 + }, + { + "word": "sólamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "only;solely", + "example_sentence_native": "Sólamente quiero un café.", + "example_sentence_english": "I only want a coffee.", + "pos": "adverb", + "word_frequency": 22813 + }, + { + "word": "testa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forehead;head (archaic;formal);will (legal)", + "example_sentence_native": "Se golpeó la testa al caer.", + "example_sentence_english": "He hit his head when falling.", + "pos": "noun", + "word_frequency": 22819 + }, + { + "word": "teñir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dye;to tint", + "example_sentence_native": "Ella decidió teñirse el pelo de rojo.", + "example_sentence_english": "She decided to dye her hair red.", + "pos": "verb", + "word_frequency": 22820 + }, + { + "word": "trabar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lock;to hinder;to start (a conversation)", + "example_sentence_native": "Se le trabó la lengua al hablar.", + "example_sentence_english": "His tongue got tied when speaking.", + "pos": "verb", + "word_frequency": 22824 + }, + { + "word": "transfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer", + "example_sentence_native": "Necesito un transfer del aeropuerto al hotel.", + "example_sentence_english": "I need a transfer from the airport to the hotel.", + "pos": "noun", + "word_frequency": 22825 + }, + { + "word": "vaiven", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swaying;rocking;fluctuation", + "example_sentence_native": "El vaivén del barco me mareó.", + "example_sentence_english": "The rocking of the boat made me dizzy.", + "pos": "noun", + "word_frequency": 22828 + }, + { + "word": "varo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buck;quid (money)", + "example_sentence_native": "No tengo ni un varo.", + "example_sentence_english": "I don't have a single buck.", + "pos": "noun", + "word_frequency": 22829 + }, + { + "word": "vendado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandaged;blindfolded", + "example_sentence_native": "Tenía el brazo vendado después del accidente.", + "example_sentence_english": "He had his arm bandaged after the accident.", + "pos": "adjective", + "word_frequency": 22830 + }, + { + "word": "venoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "venous", + "example_sentence_native": "El sistema venoso transporta la sangre al corazón.", + "example_sentence_english": "The venous system transports blood to the heart.", + "pos": "adjective", + "word_frequency": 22831 + }, + { + "word": "ventajoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advantageous;beneficial", + "example_sentence_native": "Es una posición muy ventajosa.", + "example_sentence_english": "It's a very advantageous position.", + "pos": "adjective", + "word_frequency": 22832 + }, + { + "word": "vespertino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evening (adj.);vespertine", + "example_sentence_native": "La sesión vespertina comienza a las seis.", + "example_sentence_english": "The evening session starts at six.", + "pos": "adjective", + "word_frequency": 22833 + }, + { + "word": "vicerrector", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vice-rector;vice-chancellor", + "example_sentence_native": "El vicerrector anunció nuevas políticas.", + "example_sentence_english": "The vice-rector announced new policies.", + "pos": "noun", + "word_frequency": 22835 + }, + { + "word": "victimización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "victimization", + "example_sentence_native": "La victimización es un problema social grave.", + "example_sentence_english": "Victimization is a serious social problem.", + "pos": "noun", + "word_frequency": 22836 + }, + { + "word": "vilo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspense;uncertainty (in 'en vilo')", + "example_sentence_native": "Nos mantuvo en vilo durante toda la película.", + "example_sentence_english": "He kept us in suspense throughout the movie.", + "pos": "noun", + "word_frequency": 22838 + }, + { + "word": "viraje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn;change of direction", + "example_sentence_native": "El coche hizo un viraje brusco.", + "example_sentence_english": "The car made a sharp turn.", + "pos": "noun", + "word_frequency": 22839 + }, + { + "word": "viril", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virile;manly", + "example_sentence_native": "Su voz profunda y su postura erguida le daban un aire viril.", + "example_sentence_english": "His deep voice and upright posture gave him a virile air.", + "pos": "adjective", + "word_frequency": 22840 + }, + { + "word": "viso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glimpse;appearance;aspect", + "example_sentence_native": "Tenía un viso de tristeza en sus ojos.", + "example_sentence_english": "He had a glimpse of sadness in his eyes.", + "pos": "noun", + "word_frequency": 22841 + }, + { + "word": "whiskey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whiskey", + "example_sentence_native": "Pidió un vaso de whiskey con hielo.", + "example_sentence_english": "He ordered a glass of whiskey with ice.", + "pos": "noun", + "word_frequency": 22843 + }, + { + "word": "adagio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adagio;proverb;slow movement (music)", + "example_sentence_native": "El adagio de la sinfonía era muy emotivo.", + "example_sentence_english": "The adagio of the symphony was very emotional.", + "pos": "noun", + "word_frequency": 22853 + }, + { + "word": "administrativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administratively", + "example_sentence_native": "La decisión fue tomada administrativamente.", + "example_sentence_english": "The decision was made administratively.", + "pos": "adverb", + "word_frequency": 22854 + }, + { + "word": "admirado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admired;amazed", + "example_sentence_native": "Estaba admirado por su talento.", + "example_sentence_english": "He was amazed by her talent.", + "pos": "adjective", + "word_frequency": 22855 + }, + { + "word": "adorador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worshipper;adorer", + "example_sentence_native": "Era un adorador de la música clásica.", + "example_sentence_english": "He was an adorer of classical music.", + "pos": "noun", + "word_frequency": 22856 + }, + { + "word": "aficion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hobby;fondness;liking", + "example_sentence_native": "Su afición principal es la lectura.", + "example_sentence_english": "His main hobby is reading.", + "pos": "noun", + "word_frequency": 22857 + }, + { + "word": "afrodescendiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Afro-descendant", + "example_sentence_native": "La comunidad afrodescendiente celebra su herencia cultural.", + "example_sentence_english": "The Afro-descendant community celebrates its cultural heritage.", + "pos": "noun", + "word_frequency": 22858 + }, + { + "word": "agresivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressively", + "example_sentence_native": "Respondió agresivamente a la pregunta.", + "example_sentence_english": "He responded aggressively to the question.", + "pos": "adverb", + "word_frequency": 22859 + }, + { + "word": "aguijón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sting;stinger (of an insect)", + "example_sentence_native": "La abeja le clavó su aguijón.", + "example_sentence_english": "The bee stung him with its stinger.", + "pos": "noun", + "word_frequency": 22860 + }, + { + "word": "albahaca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basil", + "example_sentence_native": "Me encanta el olor de la albahaca fresca.", + "example_sentence_english": "I love the smell of fresh basil.", + "pos": "noun", + "word_frequency": 22862 + }, + { + "word": "albanes", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Albanian (person;language)", + "example_sentence_native": "Habla albanés con fluidez.", + "example_sentence_english": "He speaks Albanian fluently.", + "pos": "noun", + "word_frequency": 22863 + }, + { + "word": "ambito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope;field;domain", + "example_sentence_native": "Este tema está fuera de mi ámbito de conocimiento.", + "example_sentence_english": "This topic is outside my scope of knowledge.", + "pos": "noun", + "word_frequency": 22866 + }, + { + "word": "anatómico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anatomical", + "example_sentence_native": "Estudiamos el modelo anatómico del corazón.", + "example_sentence_english": "We studied the anatomical model of the heart.", + "pos": "adjective", + "word_frequency": 22868 + }, + { + "word": "aparcado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parked", + "example_sentence_native": "El coche estaba aparcado en la calle.", + "example_sentence_english": "The car was parked on the street.", + "pos": "adjective", + "word_frequency": 22869 + }, + { + "word": "azucena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lily (flower)", + "example_sentence_native": "El jardín estaba lleno de azucenas blancas.", + "example_sentence_english": "The garden was full of white lilies.", + "pos": "noun", + "word_frequency": 22872 + }, + { + "word": "barbaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbaric;great;awesome", + "example_sentence_native": "¡Qué idea tan bárbara!", + "example_sentence_english": "What a great idea!", + "pos": "adjective", + "word_frequency": 22874 + }, + { + "word": "basquetbol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "example_sentence_native": "Juegan basquetbol todos los fines de semana.", + "example_sentence_english": "They play basketball every weekend.", + "pos": "noun", + "word_frequency": 22876 + }, + { + "word": "boli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pen (informal)", + "example_sentence_native": "¿Me prestas tu boli?", + "example_sentence_english": "Can you lend me your pen?", + "pos": "noun", + "word_frequency": 22884 + }, + { + "word": "botiquín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "first-aid kit", + "example_sentence_native": "Siempre tengo un botiquín en el coche.", + "example_sentence_english": "I always have a first-aid kit in the car.", + "pos": "noun", + "word_frequency": 22885 + }, + { + "word": "brillantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brilliantly", + "example_sentence_native": "Resolvió el problema brillantemente.", + "example_sentence_english": "He solved the problem brilliantly.", + "pos": "adverb", + "word_frequency": 22886 + }, + { + "word": "buñuelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fritter", + "example_sentence_native": "Me encantan los buñuelos de viento.", + "example_sentence_english": "I love cream fritters.", + "pos": "noun", + "word_frequency": 22891 + }, + { + "word": "campal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitched (as in battle)", + "example_sentence_native": "Fue una batalla campal.", + "example_sentence_english": "It was a pitched battle.", + "pos": "adjective", + "word_frequency": 22895 + }, + { + "word": "chakra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chakra", + "example_sentence_native": "Se dice que los chakras son centros de energía en el cuerpo.", + "example_sentence_english": "Chakras are said to be energy centers in the body.", + "pos": "noun", + "word_frequency": 22899 + }, + { + "word": "cobranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection (of debts)", + "example_sentence_native": "La empresa se especializa en la cobranza de deudas.", + "example_sentence_english": "The company specializes in debt collection.", + "pos": "noun", + "word_frequency": 22903 + }, + { + "word": "codiciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coveted", + "example_sentence_native": "El trofeo es el más codiciado del torneo.", + "example_sentence_english": "The trophy is the most coveted in the tournament.", + "pos": "adjective", + "word_frequency": 22904 + }, + { + "word": "colita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little tail;ponytail", + "example_sentence_native": "La niña llevaba una colita en el pelo.", + "example_sentence_english": "The girl had a ponytail in her hair.", + "pos": "noun", + "word_frequency": 22905 + }, + { + "word": "compadecer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pity", + "example_sentence_native": "No puedo evitar compadecer a los animales abandonados.", + "example_sentence_english": "I can't help but pity abandoned animals.", + "pos": "verb", + "word_frequency": 22908 + }, + { + "word": "concubina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concubine", + "example_sentence_native": "En algunas culturas antiguas, la concubina tenía un estatus reconocido.", + "example_sentence_english": "In some ancient cultures, the concubine had a recognized status.", + "pos": "noun", + "word_frequency": 22909 + }, + { + "word": "conejito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bunny", + "example_sentence_native": "El conejito saltó por el jardín.", + "example_sentence_english": "The bunny hopped through the garden.", + "pos": "noun", + "word_frequency": 22910 + }, + { + "word": "constitucionalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutionalism", + "example_sentence_native": "El constitucionalismo es una doctrina política fundamental.", + "example_sentence_english": "Constitutionalism is a fundamental political doctrine.", + "pos": "noun", + "word_frequency": 22912 + }, + { + "word": "contrarreloj", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time trial;against the clock", + "example_sentence_native": "La etapa de hoy es una contrarreloj individual.", + "example_sentence_english": "Today's stage is an individual time trial.", + "pos": "noun", + "word_frequency": 22914 + }, + { + "word": "cortito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very short;a little short", + "example_sentence_native": "El vestido es un poco cortito para la ocasión.", + "example_sentence_english": "The dress is a little short for the occasion.", + "pos": "adjective", + "word_frequency": 22915 + }, + { + "word": "cul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ass;butt (vulgar)", + "example_sentence_native": "Se cayó de cul.", + "example_sentence_english": "He fell on his butt.", + "pos": "noun", + "word_frequency": 22919 + }, + { + "word": "cuádruple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadruple", + "example_sentence_native": "El costo fue el cuádruple de lo esperado.", + "example_sentence_english": "The cost was quadruple what was expected.", + "pos": "adjective", + "word_frequency": 22920 + }, + { + "word": "dancing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dancing (place;activity)", + "example_sentence_native": "Fuimos a un dancing el sábado por la noche.", + "example_sentence_english": "We went to a dancing place on Saturday night.", + "pos": "noun", + "word_frequency": 22923 + }, + { + "word": "danzante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dancer", + "example_sentence_native": "Los danzantes tradicionales llevaban trajes coloridos.", + "example_sentence_english": "The traditional dancers wore colorful costumes.", + "pos": "noun", + "word_frequency": 22924 + }, + { + "word": "deco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deco (style)", + "example_sentence_native": "Me encanta el estilo deco de los años 20.", + "example_sentence_english": "I love the deco style of the 20s.", + "pos": "noun", + "word_frequency": 22926 + }, + { + "word": "degustar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to taste;to sample", + "example_sentence_native": "Queremos degustar los vinos locales.", + "example_sentence_english": "We want to taste the local wines.", + "pos": "verb", + "word_frequency": 22927 + }, + { + "word": "delicadamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delicately", + "example_sentence_native": "Abrió el paquete delicadamente para no romperlo.", + "example_sentence_english": "He opened the package delicately so as not to break it.", + "pos": "adverb", + "word_frequency": 22928 + }, + { + "word": "desenvolvimiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "development;unfolding;performance", + "example_sentence_native": "Su desenvolvimiento en el proyecto fue excelente.", + "example_sentence_english": "His performance in the project was excellent.", + "pos": "noun", + "word_frequency": 22931 + }, + { + "word": "desmoronar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crumble;to collapse", + "example_sentence_native": "La vieja pared empezó a desmoronarse.", + "example_sentence_english": "The old wall began to crumble.", + "pos": "verb", + "word_frequency": 22932 + }, + { + "word": "desnudar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to undress;to strip", + "example_sentence_native": "Se desnudó antes de entrar a la ducha.", + "example_sentence_english": "He undressed before getting into the shower.", + "pos": "verb", + "word_frequency": 22933 + }, + { + "word": "diametralmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diametrically", + "example_sentence_native": "Sus opiniones son diametralmente opuestas.", + "example_sentence_english": "Their opinions are diametrically opposed.", + "pos": "adverb", + "word_frequency": 22935 + }, + { + "word": "diversificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversified", + "example_sentence_native": "La empresa tiene un portafolio diversificado de productos.", + "example_sentence_english": "The company has a diversified portfolio of products.", + "pos": "adjective", + "word_frequency": 22937 + }, + { + "word": "egocéntrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egocentric", + "example_sentence_native": "Su actitud egocéntrica molesta a los demás.", + "example_sentence_english": "His egocentric attitude bothers others.", + "pos": "adjective", + "word_frequency": 22939 + }, + { + "word": "electronics", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronics", + "example_sentence_native": "Compró nuevos componentes de electronics para su proyecto.", + "example_sentence_english": "He bought new electronics components for his project.", + "pos": "noun", + "word_frequency": 22941 + }, + { + "word": "embestida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charge;assault", + "example_sentence_native": "La embestida del toro fue muy fuerte.", + "example_sentence_english": "The bull's charge was very strong.", + "pos": "noun", + "word_frequency": 22943 + }, + { + "word": "empacar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pack", + "example_sentence_native": "Necesito empacar mi ropa para el viaje.", + "example_sentence_english": "I need to pack my clothes for the trip.", + "pos": "verb", + "word_frequency": 22944 + }, + { + "word": "encomendado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrusted;commissioned", + "example_sentence_native": "La tarea encomendada era muy importante.", + "example_sentence_english": "The entrusted task was very important.", + "pos": "adjective", + "word_frequency": 22945 + }, + { + "word": "epígrafe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epigraph;heading", + "example_sentence_native": "El libro comenzaba con un epígrafe inspirador.", + "example_sentence_english": "The book began with an inspiring epigraph.", + "pos": "noun", + "word_frequency": 22948 + }, + { + "word": "equiparable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comparable;equivalent", + "example_sentence_native": "Su experiencia es equiparable a la mía.", + "example_sentence_english": "His experience is comparable to mine.", + "pos": "adjective", + "word_frequency": 22949 + }, + { + "word": "esclavista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slave owner;pro-slavery", + "example_sentence_native": "La sociedad esclavista fue abolida hace mucho tiempo.", + "example_sentence_english": "The slave-owning society was abolished a long time ago.", + "pos": "noun", + "word_frequency": 22951 + }, + { + "word": "esférico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spherical", + "example_sentence_native": "La Tierra no es perfectamente esférica.", + "example_sentence_english": "The Earth is not perfectly spherical.", + "pos": "adjective", + "word_frequency": 22952 + }, + { + "word": "events", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "events", + "example_sentence_native": "La empresa organiza muchos events corporativos.", + "example_sentence_english": "The company organizes many corporate events.", + "pos": "noun", + "word_frequency": 22955 + }, + { + "word": "evidenciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evidenced;demonstrated", + "example_sentence_native": "El problema ha sido evidenciado por varios estudios.", + "example_sentence_english": "The problem has been evidenced by several studies.", + "pos": "adjective", + "word_frequency": 22956 + }, + { + "word": "exgobernador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former governor", + "example_sentence_native": "El exgobernador dio una conferencia de prensa.", + "example_sentence_english": "The former governor gave a press conference.", + "pos": "noun", + "word_frequency": 22957 + }, + { + "word": "facilitador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facilitator", + "example_sentence_native": "El facilitador guio la discusión del grupo.", + "example_sentence_english": "The facilitator guided the group discussion.", + "pos": "noun", + "word_frequency": 22958 + }, + { + "word": "fatídico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fateful;ominous", + "example_sentence_native": "Fue un día fatídico para la ciudad.", + "example_sentence_english": "It was a fateful day for the city.", + "pos": "adjective", + "word_frequency": 22960 + }, + { + "word": "fiambre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cold cuts;deli meat", + "example_sentence_native": "Compramos fiambre para hacer sándwiches.", + "example_sentence_english": "We bought cold cuts to make sandwiches.", + "pos": "noun", + "word_frequency": 22961 + }, + { + "word": "firmware", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "firmware", + "example_sentence_native": "Necesitamos actualizar el firmware del dispositivo.", + "example_sentence_english": "We need to update the device's firmware.", + "pos": "noun", + "word_frequency": 22962 + }, + { + "word": "frambuesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raspberry", + "example_sentence_native": "Me encanta el helado de frambuesa.", + "example_sentence_english": "I love raspberry ice cream.", + "pos": "noun", + "word_frequency": 22965 + }, + { + "word": "freestyle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freestyle", + "example_sentence_native": "El rapero ganó la batalla de freestyle.", + "example_sentence_english": "The rapper won the freestyle battle.", + "pos": "noun", + "word_frequency": 22966 + }, + { + "word": "furtivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furtive;stealthy", + "example_sentence_native": "Dio una mirada furtiva a su alrededor.", + "example_sentence_english": "He cast a furtive glance around him.", + "pos": "adjective", + "word_frequency": 22967 + }, + { + "word": "gentilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kindly;gently", + "example_sentence_native": "Me ayudó gentilmente con mi equipaje.", + "example_sentence_english": "He kindly helped me with my luggage.", + "pos": "adverb", + "word_frequency": 22970 + }, + { + "word": "gotera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leak (drip);drip", + "example_sentence_native": "Hay una gotera en el techo de la cocina.", + "example_sentence_english": "There's a leak in the kitchen ceiling.", + "pos": "noun", + "word_frequency": 22974 + }, + { + "word": "guano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guano", + "example_sentence_native": "El guano es un fertilizante natural.", + "example_sentence_english": "Guano is a natural fertilizer.", + "pos": "noun", + "word_frequency": 22976 + }, + { + "word": "guinda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cherry (sour cherry);icing on the cake (idiomatic)", + "example_sentence_native": "La guinda del pastel fue su discurso.", + "example_sentence_english": "The icing on the cake was his speech.", + "pos": "noun", + "word_frequency": 22977 + }, + { + "word": "hacking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacking", + "example_sentence_native": "El hacking ético es una profesión.", + "example_sentence_english": "Ethical hacking is a profession.", + "pos": "noun", + "word_frequency": 22979 + }, + { + "word": "haram", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forbidden (in Islam)", + "example_sentence_native": "El consumo de cerdo es haram para los musulmanes.", + "example_sentence_english": "Pork consumption is haram for Muslims.", + "pos": "noun", + "word_frequency": 22981 + }, + { + "word": "heladería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice cream parlor;shop", + "example_sentence_native": "Vamos a la heladería por un postre.", + "example_sentence_english": "Let's go to the ice cream parlor for dessert.", + "pos": "noun", + "word_frequency": 22983 + }, + { + "word": "holograma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hologram", + "example_sentence_native": "Vimos un holograma en la exposición.", + "example_sentence_english": "We saw a hologram at the exhibition.", + "pos": "noun", + "word_frequency": 22986 + }, + { + "word": "horrorizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horrified", + "example_sentence_native": "Estaba horrorizado por lo que vio.", + "example_sentence_english": "He was horrified by what he saw.", + "pos": "adjective", + "word_frequency": 22987 + }, + { + "word": "imperdible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unmissable;must-see;safety pin (as a noun)", + "example_sentence_native": "Esa película es imperdible.", + "example_sentence_english": "That movie is unmissable.", + "pos": "adjective", + "word_frequency": 22993 + }, + { + "word": "implicancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implication;involvement", + "example_sentence_native": "Las implicancias de su decisión son graves.", + "example_sentence_english": "The implications of his decision are serious.", + "pos": "noun", + "word_frequency": 22994 + }, + { + "word": "inamovible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unmovable;unchangeable;irremovable", + "example_sentence_native": "Su postura sobre el tema es inamovible.", + "example_sentence_english": "His stance on the issue is unchangeable.", + "pos": "adjective", + "word_frequency": 22995 + }, + { + "word": "inanición", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "starvation;inanition", + "example_sentence_native": "Muchas personas mueren de inanición en el mundo.", + "example_sentence_english": "Many people die of starvation in the world.", + "pos": "noun", + "word_frequency": 22996 + }, + { + "word": "incesantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incessantly;ceaselessly", + "example_sentence_native": "La lluvia caía incesantemente.", + "example_sentence_english": "The rain fell incessantly.", + "pos": "adverb", + "word_frequency": 22997 + }, + { + "word": "indefendible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indefensible;unsustainable", + "example_sentence_native": "Su argumento era completamente indefendible.", + "example_sentence_english": "His argument was completely indefensible.", + "pos": "adjective", + "word_frequency": 22999 + }, + { + "word": "indulgente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indulgent;lenient", + "example_sentence_native": "Su actitud indulgente con los niños a veces es un problema.", + "example_sentence_english": "Her indulgent attitude with the children is sometimes a problem.", + "pos": "adjective", + "word_frequency": 23000 + }, + { + "word": "inequívocamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequivocally;unmistakably", + "example_sentence_native": "Su respuesta fue inequívocamente clara.", + "example_sentence_english": "His answer was unequivocally clear.", + "pos": "adverb", + "word_frequency": 23001 + }, + { + "word": "informalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informally", + "example_sentence_native": "Nos reunimos informalmente para discutir el proyecto.", + "example_sentence_english": "We met informally to discuss the project.", + "pos": "adverb", + "word_frequency": 23002 + }, + { + "word": "infortunio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misfortune;bad luck", + "example_sentence_native": "A pesar del infortunio, mantuvo una actitud positiva.", + "example_sentence_english": "Despite the misfortune, he maintained a positive attitude.", + "pos": "noun", + "word_frequency": 23003 + }, + { + "word": "ingresado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admitted;hospitalized", + "example_sentence_native": "El paciente ingresado se recupera favorablemente.", + "example_sentence_english": "The admitted patient is recovering favorably.", + "pos": "adjective", + "word_frequency": 23004 + }, + { + "word": "inherentemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inherently", + "example_sentence_native": "La belleza de la naturaleza es inherentemente inspiradora.", + "example_sentence_english": "The beauty of nature is inherently inspiring.", + "pos": "adverb", + "word_frequency": 23005 + }, + { + "word": "iniciador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiator;founder", + "example_sentence_native": "Él fue el iniciador del proyecto.", + "example_sentence_english": "He was the initiator of the project.", + "pos": "noun", + "word_frequency": 23006 + }, + { + "word": "interpretativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interpretive", + "example_sentence_native": "Su análisis interpretativo de la obra fue muy profundo.", + "example_sentence_english": "His interpretive analysis of the work was very profound.", + "pos": "adjective", + "word_frequency": 23007 + }, + { + "word": "intrafamiliar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrafamily;within the family", + "example_sentence_native": "Se están investigando casos de violencia intrafamiliar.", + "example_sentence_english": "Cases of intrafamily violence are being investigated.", + "pos": "adjective", + "word_frequency": 23008 + }, + { + "word": "invalidar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invalidate;to annul", + "example_sentence_native": "El juez decidió invalidar el contrato.", + "example_sentence_english": "The judge decided to invalidate the contract.", + "pos": "verb", + "word_frequency": 23009 + }, + { + "word": "lapsus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lapse;slip (e.g.;slip of the tongue)", + "example_sentence_native": "Fue un lapsus linguae, no quise decir eso.", + "example_sentence_english": "It was a slip of the tongue, I didn't mean that.", + "pos": "noun", + "word_frequency": 23015 + }, + { + "word": "liquidado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidated;settled;cleared", + "example_sentence_native": "La deuda ya está liquidada.", + "example_sentence_english": "The debt is already settled.", + "pos": "adjective", + "word_frequency": 23016 + }, + { + "word": "magico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magical;magic", + "example_sentence_native": "Fue una noche mágica.", + "example_sentence_english": "It was a magical night.", + "pos": "adjective", + "word_frequency": 23025 + }, + { + "word": "marroquín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Moroccan (person)", + "example_sentence_native": "Conoció a un marroquín en su viaje.", + "example_sentence_english": "He met a Moroccan on his trip.", + "pos": "noun", + "word_frequency": 23028 + }, + { + "word": "mendocino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Mendoza;Mendocinean", + "example_sentence_native": "El vino mendocino es famoso en Argentina.", + "example_sentence_english": "Mendocinean wine is famous in Argentina.", + "pos": "adjective", + "word_frequency": 23032 + }, + { + "word": "merendar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to have a snack;to have an afternoon snack", + "example_sentence_native": "Vamos a merendar algo antes de salir.", + "example_sentence_english": "Let's have a snack before going out.", + "pos": "verb", + "word_frequency": 23034 + }, + { + "word": "mesada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allowance (monthly);countertop", + "example_sentence_native": "Mis padres me dan una mesada cada mes.", + "example_sentence_english": "My parents give me an allowance every month.", + "pos": "noun", + "word_frequency": 23035 + }, + { + "word": "mesura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moderation;prudence;restraint", + "example_sentence_native": "Actuó con gran mesura ante la situación.", + "example_sentence_english": "He acted with great moderation in the situation.", + "pos": "noun", + "word_frequency": 23036 + }, + { + "word": "miserablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miserably", + "example_sentence_native": "Falló miserablemente en su intento.", + "example_sentence_english": "He failed miserably in his attempt.", + "pos": "adverb", + "word_frequency": 23038 + }, + { + "word": "modelaje", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modeling (as a profession;activity)", + "example_sentence_native": "Ella se dedica al modelaje de alta costura.", + "example_sentence_english": "She is dedicated to high fashion modeling.", + "pos": "noun", + "word_frequency": 23039 + }, + { + "word": "modem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modem", + "example_sentence_native": "Necesito un nuevo módem para mi conexión a internet.", + "example_sentence_english": "I need a new modem for my internet connection.", + "pos": "noun", + "word_frequency": 23040 + }, + { + "word": "modulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "module;modulus", + "example_sentence_native": "El módulo de un número complejo es su distancia al origen.", + "example_sentence_english": "The modulus of a complex number is its distance from the origin.", + "pos": "noun", + "word_frequency": 23041 + }, + { + "word": "nacionalizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationalized;naturalized", + "example_sentence_native": "La empresa fue nacionalizada por el gobierno.", + "example_sentence_english": "The company was nationalized by the government.", + "pos": "adjective", + "word_frequency": 23043 + }, + { + "word": "neurológico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurological", + "example_sentence_native": "Sufre de un trastorno neurológico.", + "example_sentence_english": "He suffers from a neurological disorder.", + "pos": "adjective", + "word_frequency": 23048 + }, + { + "word": "neurólogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neurologist", + "example_sentence_native": "El neurólogo le recetó un nuevo medicamento.", + "example_sentence_english": "The neurologist prescribed him a new medication.", + "pos": "noun", + "word_frequency": 23049 + }, + { + "word": "nona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ninth (feminine);grandmother (regional)", + "example_sentence_native": "Mi nona me contó una historia de su juventud.", + "example_sentence_english": "My grandmother told me a story from her youth.", + "pos": "noun", + "word_frequency": 23050 + }, + { + "word": "observer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "observer (loanword)", + "example_sentence_native": "El patrón 'Observer' es común en el diseño de software.", + "example_sentence_english": "The 'Observer' pattern is common in software design.", + "pos": "noun", + "word_frequency": 23054 + }, + { + "word": "olimpíada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympiad;Olympics", + "example_sentence_native": "Las próximas Olimpíadas se celebrarán en París.", + "example_sentence_english": "The next Olympics will be held in Paris.", + "pos": "noun", + "word_frequency": 23056 + }, + { + "word": "palta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avocado (Latin America)", + "example_sentence_native": "Me encanta comer tostadas con palta para el desayuno.", + "example_sentence_english": "I love eating toast with avocado for breakfast.", + "pos": "noun", + "word_frequency": 23060 + }, + { + "word": "pandereta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tambourine", + "example_sentence_native": "Tocó la pandereta en la canción navideña.", + "example_sentence_english": "He played the tambourine in the Christmas song.", + "pos": "noun", + "word_frequency": 23061 + }, + { + "word": "panico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panic", + "example_sentence_native": "Sintió un ataque de pánico antes del examen.", + "example_sentence_english": "He felt a panic attack before the exam.", + "pos": "noun", + "word_frequency": 23063 + }, + { + "word": "passion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "passion (English loanword)", + "example_sentence_native": "Algunos usan la palabra 'passion' en lugar de 'pasión' en contextos específicos.", + "example_sentence_english": "Some use the word 'passion' instead of 'pasión' in specific contexts.", + "pos": "noun", + "word_frequency": 23065 + }, + { + "word": "pazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Galician manor house", + "example_sentence_native": "Visitamos un hermoso pazo antiguo en Galicia.", + "example_sentence_english": "We visited a beautiful old manor house in Galicia.", + "pos": "noun", + "word_frequency": 23067 + }, + { + "word": "pecera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fish tank;fishbowl", + "example_sentence_native": "Compramos una pecera nueva para los peces.", + "example_sentence_english": "We bought a new fish tank for the fish.", + "pos": "noun", + "word_frequency": 23068 + }, + { + "word": "pedagogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedagogue;educator", + "example_sentence_native": "El pedagogo diseñó un nuevo plan de estudios.", + "example_sentence_english": "The pedagogue designed a new curriculum.", + "pos": "noun", + "word_frequency": 23070 + }, + { + "word": "pentecostés", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pentecost", + "example_sentence_native": "Celebramos Pentecostés con una misa especial.", + "example_sentence_english": "We celebrated Pentecost with a special mass.", + "pos": "noun", + "word_frequency": 23071 + }, + { + "word": "pipí", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pee;wee-wee (childish)", + "example_sentence_native": "El niño necesita hacer pipí.", + "example_sentence_english": "The child needs to pee.", + "pos": "noun", + "word_frequency": 23073 + }, + { + "word": "playback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playback", + "example_sentence_native": "El cantante hizo playback durante el concierto.", + "example_sentence_english": "The singer lip-synced during the concert.", + "pos": "noun", + "word_frequency": 23074 + }, + { + "word": "plegable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foldable;collapsible", + "example_sentence_native": "Compramos una mesa plegable para el jardín.", + "example_sentence_english": "We bought a foldable table for the garden.", + "pos": "adjective", + "word_frequency": 23075 + }, + { + "word": "portfolio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portfolio", + "example_sentence_native": "Necesitas un buen portfolio para mostrar tu trabajo.", + "example_sentence_english": "You need a good portfolio to show your work.", + "pos": "noun", + "word_frequency": 23076 + }, + { + "word": "prensado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pressed", + "example_sentence_native": "El jugo prensado en frío es muy saludable.", + "example_sentence_english": "Cold-pressed juice is very healthy.", + "pos": "adjective", + "word_frequency": 23077 + }, + { + "word": "probe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "probe (loanword)", + "example_sentence_native": "La sonda espacial es una 'probe' que explora Marte.", + "example_sentence_english": "The space probe is a 'probe' that explores Mars.", + "pos": "noun", + "word_frequency": 23079 + }, + { + "word": "procuración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procuration;power of attorney", + "example_sentence_native": "La procuración de fondos es esencial para el proyecto.", + "example_sentence_english": "The procuration of funds is essential for the project.", + "pos": "noun", + "word_frequency": 23080 + }, + { + "word": "prontitud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promptness;readiness", + "example_sentence_native": "Respondió con gran prontitud a mi solicitud.", + "example_sentence_english": "He responded with great promptness to my request.", + "pos": "noun", + "word_frequency": 23082 + }, + { + "word": "pródigo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prodigal;lavish;wasteful", + "example_sentence_native": "Fue un hijo pródigo que regresó a casa.", + "example_sentence_english": "He was a prodigal son who returned home.", + "pos": "adjective", + "word_frequency": 23084 + }, + { + "word": "punción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puncture;tap", + "example_sentence_native": "Le hicieron una punción lumbar para el diagnóstico.", + "example_sentence_english": "They performed a lumbar puncture for the diagnosis.", + "pos": "noun", + "word_frequency": 23086 + }, + { + "word": "puñetero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "damn;bloody;annoying", + "example_sentence_native": "¡Qué día tan puñetero!", + "example_sentence_english": "What a damn day!", + "pos": "adjective", + "word_frequency": 23087 + }, + { + "word": "rasero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standard;measure;criterion", + "example_sentence_native": "No podemos medir a todos con el mismo rasero.", + "example_sentence_english": "We cannot measure everyone by the same standard.", + "pos": "noun", + "word_frequency": 23089 + }, + { + "word": "recolectado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collected;harvested", + "example_sentence_native": "Las manzanas recolectadas estaban muy dulces.", + "example_sentence_english": "The collected apples were very sweet.", + "pos": "adjective", + "word_frequency": 23091 + }, + { + "word": "reconciliar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconcile", + "example_sentence_native": "Intentaron reconciliar sus diferencias.", + "example_sentence_english": "They tried to reconcile their differences.", + "pos": "verb", + "word_frequency": 23092 + }, + { + "word": "recopilatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compilation;collection", + "example_sentence_native": "Escuchamos un álbum recopilatorio de sus mejores éxitos.", + "example_sentence_english": "We listened to a compilation album of their greatest hits.", + "pos": "noun", + "word_frequency": 23093 + }, + { + "word": "reeducación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "re-education;rehabilitation", + "example_sentence_native": "El programa de reeducación busca la reinserción social.", + "example_sentence_english": "The re-education program seeks social reintegration.", + "pos": "noun", + "word_frequency": 23094 + }, + { + "word": "refacción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snack;repair;spare part", + "example_sentence_native": "Necesitamos una refacción para el coche.", + "example_sentence_english": "We need a spare part for the car.", + "pos": "noun", + "word_frequency": 23095 + }, + { + "word": "regata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regatta;race (boat)", + "example_sentence_native": "La regata anual atrae a muchos espectadores.", + "example_sentence_english": "The annual regatta attracts many spectators.", + "pos": "noun", + "word_frequency": 23096 + }, + { + "word": "rehabilitado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rehabilitated;restored", + "example_sentence_native": "El edificio antiguo fue completamente rehabilitado.", + "example_sentence_english": "The old building was completely rehabilitated.", + "pos": "adjective", + "word_frequency": 23097 + }, + { + "word": "reinventar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reinvent", + "example_sentence_native": "Es hora de reinventar nuestro enfoque.", + "example_sentence_english": "It's time to reinvent our approach.", + "pos": "verb", + "word_frequency": 23098 + }, + { + "word": "remodelar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remodel;to renovate", + "example_sentence_native": "Van a remodelar la cocina el próximo mes.", + "example_sentence_english": "They are going to remodel the kitchen next month.", + "pos": "verb", + "word_frequency": 23101 + }, + { + "word": "reparador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restorative;repairing", + "example_sentence_native": "Necesito un sueño reparador después de este día.", + "example_sentence_english": "I need a restorative sleep after this day.", + "pos": "adjective", + "word_frequency": 23102 + }, + { + "word": "repugnancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repugnance;disgust", + "example_sentence_native": "Sentía una profunda repugnancia por la injusticia.", + "example_sentence_english": "He felt a deep repugnance for injustice.", + "pos": "noun", + "word_frequency": 23103 + }, + { + "word": "retén", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "checkpoint;retainer;detachment", + "example_sentence_native": "La policía estableció un retén en la carretera.", + "example_sentence_english": "The police set up a checkpoint on the road.", + "pos": "noun", + "word_frequency": 23104 + }, + { + "word": "revocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revoked;plastered (wall)", + "example_sentence_native": "Su licencia fue revocada por conducir ebrio.", + "example_sentence_english": "His license was revoked for drunk driving.", + "pos": "adjective", + "word_frequency": 23105 + }, + { + "word": "rinconada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corner;secluded spot", + "example_sentence_native": "Encontró un pequeño café en una rinconada del barrio.", + "example_sentence_english": "He found a small cafe in a secluded corner of the neighborhood.", + "pos": "noun", + "word_frequency": 23107 + }, + { + "word": "rubor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blush;redness", + "example_sentence_native": "Un ligero rubor apareció en sus mejillas.", + "example_sentence_english": "A slight blush appeared on her cheeks.", + "pos": "noun", + "word_frequency": 23112 + }, + { + "word": "rédito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yield;return;profit", + "example_sentence_native": "La inversión generó un buen rédito.", + "example_sentence_english": "The investment generated a good return.", + "pos": "noun", + "word_frequency": 23114 + }, + { + "word": "sacramental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacramental", + "example_sentence_native": "La ceremonia tuvo un carácter sacramental.", + "example_sentence_english": "The ceremony had a sacramental character.", + "pos": "adjective", + "word_frequency": 23115 + }, + { + "word": "separadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separately", + "example_sentence_native": "Los documentos deben presentarse separadamente.", + "example_sentence_english": "The documents must be presented separately.", + "pos": "adverb", + "word_frequency": 23120 + }, + { + "word": "sincronizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synchronized", + "example_sentence_native": "Los movimientos estaban perfectamente sincronizados.", + "example_sentence_english": "The movements were perfectly synchronized.", + "pos": "adjective", + "word_frequency": 23123 + }, + { + "word": "sonoridad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sonority;sonorousness", + "example_sentence_native": "La sonoridad de su voz era impresionante.", + "example_sentence_english": "The sonority of her voice was impressive.", + "pos": "noun", + "word_frequency": 23127 + }, + { + "word": "subdesarrollado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underdeveloped", + "example_sentence_native": "Muchos países aún son considerados subdesarrollados.", + "example_sentence_english": "Many countries are still considered underdeveloped.", + "pos": "adjective", + "word_frequency": 23130 + }, + { + "word": "tenido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "had;held", + "example_sentence_native": "El problema tenido en cuenta fue resuelto.", + "example_sentence_english": "The problem taken into account was resolved.", + "pos": "adjective", + "word_frequency": 23135 + }, + { + "word": "torturador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torturer", + "example_sentence_native": "El torturador fue llevado ante la justicia.", + "example_sentence_english": "The torturer was brought to justice.", + "pos": "noun", + "word_frequency": 23137 + }, + { + "word": "trasmisión", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transmission;broadcast", + "example_sentence_native": "La trasmisión en vivo fue un éxito.", + "example_sentence_english": "The live broadcast was a success.", + "pos": "noun", + "word_frequency": 23139 + }, + { + "word": "trombosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thrombosis", + "example_sentence_native": "Le diagnosticaron una trombosis venosa profunda.", + "example_sentence_english": "He was diagnosed with deep vein thrombosis.", + "pos": "noun", + "word_frequency": 23141 + }, + { + "word": "umbría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shady place;shade", + "example_sentence_native": "Buscamos la umbría para protegernos del sol.", + "example_sentence_english": "We looked for the shady place to protect ourselves from the sun.", + "pos": "noun", + "word_frequency": 23142 + }, + { + "word": "veintinueve", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-nine", + "example_sentence_native": "Tengo veintinueve años.", + "example_sentence_english": "I am twenty-nine years old.", + "pos": "noun", + "word_frequency": 23144 + }, + { + "word": "veintiuno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-one", + "example_sentence_native": "El veintiuno de marzo es mi cumpleaños.", + "example_sentence_english": "March twenty-first is my birthday.", + "pos": "noun", + "word_frequency": 23145 + }, + { + "word": "vendaje", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandage;dressing", + "example_sentence_native": "Necesitas un vendaje para esa herida.", + "example_sentence_english": "You need a bandage for that wound.", + "pos": "noun", + "word_frequency": 23147 + }, + { + "word": "veneciano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Venetian", + "example_sentence_native": "Le encanta el arte veneciano.", + "example_sentence_english": "He loves Venetian art.", + "pos": "adjective", + "word_frequency": 23148 + }, + { + "word": "ventricular", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ventricular", + "example_sentence_native": "Sufrió una taquicardia ventricular.", + "example_sentence_english": "He suffered from ventricular tachycardia.", + "pos": "adjective", + "word_frequency": 23149 + }, + { + "word": "visera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visor;brim (of a cap)", + "example_sentence_native": "Se puso la gorra con la visera hacia atrás.", + "example_sentence_english": "He put on the cap with the brim backward.", + "pos": "noun", + "word_frequency": 23150 + }, + { + "word": "vivaz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lively;vivacious", + "example_sentence_native": "Era una niña muy vivaz y curiosa.", + "example_sentence_english": "She was a very lively and curious child.", + "pos": "adjective", + "word_frequency": 23152 + }, + { + "word": "abismal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abysmal", + "example_sentence_native": "La diferencia entre sus habilidades era abismal.", + "example_sentence_english": "The difference between their abilities was abysmal.", + "pos": "adjective", + "word_frequency": 23161 + }, + { + "word": "alineamiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alignment", + "example_sentence_native": "El alineamiento de los planetas es un evento raro.", + "example_sentence_english": "The alignment of the planets is a rare event.", + "pos": "noun", + "word_frequency": 23163 + }, + { + "word": "alquimista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alchemist", + "example_sentence_native": "El alquimista buscaba la piedra filosofal.", + "example_sentence_english": "The alchemist was looking for the philosopher's stone.", + "pos": "noun", + "word_frequency": 23164 + }, + { + "word": "amarre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mooring", + "example_sentence_native": "Asegura el amarre del barco al muelle.", + "example_sentence_english": "Secure the mooring of the boat to the dock.", + "pos": "noun", + "word_frequency": 23165 + }, + { + "word": "amenazador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatening", + "example_sentence_native": "El cielo se veía oscuro y amenazador.", + "example_sentence_english": "The sky looked dark and threatening.", + "pos": "adjective", + "word_frequency": 23166 + }, + { + "word": "americanista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Americanist", + "example_sentence_native": "Es un reconocido americanista, experto en historia colonial.", + "example_sentence_english": "He is a renowned Americanist, an expert in colonial history.", + "pos": "noun", + "word_frequency": 23167 + }, + { + "word": "ansiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "longed for", + "example_sentence_native": "Finalmente llegó el ansiado día de vacaciones.", + "example_sentence_english": "Finally, the longed-for vacation day arrived.", + "pos": "adjective", + "word_frequency": 23171 + }, + { + "word": "aseveración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assertion", + "example_sentence_native": "Su aseveración carecía de pruebas.", + "example_sentence_english": "His assertion lacked proof.", + "pos": "noun", + "word_frequency": 23174 + }, + { + "word": "aspa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blade", + "example_sentence_native": "Las aspas del molino giraban con el viento.", + "example_sentence_english": "The blades of the windmill turned with the wind.", + "pos": "noun", + "word_frequency": 23175 + }, + { + "word": "balompié", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "football", + "example_sentence_native": "El balompié es el deporte más popular en España.", + "example_sentence_english": "Football is the most popular sport in Spain.", + "pos": "noun", + "word_frequency": 23177 + }, + { + "word": "barrial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of the neighborhood", + "example_sentence_native": "La fiesta barrial reunió a todos los vecinos.", + "example_sentence_english": "The neighborhood party brought all the neighbors together.", + "pos": "adjective", + "word_frequency": 23179 + }, + { + "word": "bordear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to border", + "example_sentence_native": "Decidimos bordear el lago en lugar de cruzarlo.", + "example_sentence_english": "We decided to skirt the lake instead of crossing it.", + "pos": "verb", + "word_frequency": 23181 + }, + { + "word": "brinco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jump", + "example_sentence_native": "Dio un brinco de alegría al recibir la noticia.", + "example_sentence_english": "He gave a jump of joy upon receiving the news.", + "pos": "noun", + "word_frequency": 23183 + }, + { + "word": "cabalgar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ride (a horse)", + "example_sentence_native": "Le encanta cabalgar por el campo al atardecer.", + "example_sentence_english": "He loves to ride through the countryside at sunset.", + "pos": "verb", + "word_frequency": 23185 + }, + { + "word": "cabrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid (young goat)", + "example_sentence_native": "El cabrito asado es una especialidad de la región.", + "example_sentence_english": "Roast kid is a specialty of the region.", + "pos": "noun", + "word_frequency": 23186 + }, + { + "word": "calvicie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baldness", + "example_sentence_native": "La calvicie es común en su familia.", + "example_sentence_english": "Baldness is common in his family.", + "pos": "noun", + "word_frequency": 23187 + }, + { + "word": "calórico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caloric", + "example_sentence_native": "Este postre es muy calórico, pero delicioso.", + "example_sentence_english": "This dessert is very caloric, but delicious.", + "pos": "adjective", + "word_frequency": 23188 + }, + { + "word": "canilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faucet", + "example_sentence_native": "La canilla del grifo gotea sin parar.", + "example_sentence_english": "The faucet is dripping non-stop.", + "pos": "noun", + "word_frequency": 23189 + }, + { + "word": "canuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tube", + "example_sentence_native": "Encontró un canuto de bambú en el jardín.", + "example_sentence_english": "He found a bamboo tube in the garden.", + "pos": "noun", + "word_frequency": 23190 + }, + { + "word": "cenicero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ashtray", + "example_sentence_native": "Por favor, usa el cenicero para las colillas.", + "example_sentence_english": "Please use the ashtray for the cigarette butts.", + "pos": "noun", + "word_frequency": 23193 + }, + { + "word": "centralizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to centralize", + "example_sentence_native": "El gobierno planea centralizar los servicios de salud.", + "example_sentence_english": "The government plans to centralize health services.", + "pos": "verb", + "word_frequency": 23194 + }, + { + "word": "chicharrón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pork rind", + "example_sentence_native": "Me encanta el chicharrón crujiente.", + "example_sentence_english": "I love crispy pork rind.", + "pos": "noun", + "word_frequency": 23197 + }, + { + "word": "choro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mussel", + "example_sentence_native": "Pedimos una ración de choros al vapor.", + "example_sentence_english": "We ordered a portion of steamed mussels.", + "pos": "noun", + "word_frequency": 23199 + }, + { + "word": "clausula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clause", + "example_sentence_native": "La cláusula del contrato es muy importante.", + "example_sentence_english": "The clause in the contract is very important.", + "pos": "noun", + "word_frequency": 23203 + }, + { + "word": "clavícula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collarbone", + "example_sentence_native": "Se rompió la clavícula al caer.", + "example_sentence_english": "He broke his collarbone when he fell.", + "pos": "noun", + "word_frequency": 23204 + }, + { + "word": "coctel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cocktail", + "example_sentence_native": "Pedimos un cóctel en el bar.", + "example_sentence_english": "We ordered a cocktail at the bar.", + "pos": "noun", + "word_frequency": 23205 + }, + { + "word": "cohorte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cohort", + "example_sentence_native": "Estudiaron una cohorte de estudiantes universitarios.", + "example_sentence_english": "They studied a cohort of university students.", + "pos": "noun", + "word_frequency": 23206 + }, + { + "word": "coincidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coincidental;coinciding", + "example_sentence_native": "Fue una coincidencia que nuestras ideas fueran coincidentes.", + "example_sentence_english": "It was a coincidence that our ideas were coincidental.", + "pos": "adjective", + "word_frequency": 23207 + }, + { + "word": "colágeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collagen", + "example_sentence_native": "El colágeno es importante para la piel.", + "example_sentence_english": "Collagen is important for the skin.", + "pos": "noun", + "word_frequency": 23210 + }, + { + "word": "condicionamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conditioning", + "example_sentence_native": "El condicionamiento clásico fue estudiado por Pavlov.", + "example_sentence_english": "Classical conditioning was studied by Pavlov.", + "pos": "noun", + "word_frequency": 23211 + }, + { + "word": "confitería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confectionery;sweet shop", + "example_sentence_native": "Compramos pasteles en la confitería.", + "example_sentence_english": "We bought pastries at the confectionery.", + "pos": "noun", + "word_frequency": 23212 + }, + { + "word": "conga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conga (drum;dance)", + "example_sentence_native": "Bailamos la conga en la fiesta.", + "example_sentence_english": "We danced the conga at the party.", + "pos": "noun", + "word_frequency": 23213 + }, + { + "word": "corsé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corset", + "example_sentence_native": "Llevaba un corsé bajo el vestido.", + "example_sentence_english": "She wore a corset under her dress.", + "pos": "noun", + "word_frequency": 23215 + }, + { + "word": "coñac", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cognac", + "example_sentence_native": "Después de la cena, bebimos un poco de coñac.", + "example_sentence_english": "After dinner, we drank some cognac.", + "pos": "noun", + "word_frequency": 23217 + }, + { + "word": "cubito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice cube", + "example_sentence_native": "Por favor, pon unos cubitos de hielo en mi bebida.", + "example_sentence_english": "Please put some ice cubes in my drink.", + "pos": "noun", + "word_frequency": 23219 + }, + { + "word": "cueca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cueca (Chilean national dance)", + "example_sentence_native": "La cueca es el baile nacional de Chile.", + "example_sentence_english": "The cueca is the national dance of Chile.", + "pos": "noun", + "word_frequency": 23220 + }, + { + "word": "degustación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tasting;sampling", + "example_sentence_native": "Fuimos a una degustación de vinos.", + "example_sentence_english": "We went to a wine tasting.", + "pos": "noun", + "word_frequency": 23224 + }, + { + "word": "demoledor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devastating;demolishing", + "example_sentence_native": "La crítica fue demoledora para el artista.", + "example_sentence_english": "The criticism was devastating for the artist.", + "pos": "adjective", + "word_frequency": 23225 + }, + { + "word": "depa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apartment (colloquial)", + "example_sentence_native": "Mi depa es pequeño pero acogedor.", + "example_sentence_english": "My apartment is small but cozy.", + "pos": "noun", + "word_frequency": 23226 + }, + { + "word": "derrick", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "derrick", + "example_sentence_native": "El derrick de perforación se elevaba sobre el campo petrolero.", + "example_sentence_english": "The drilling derrick rose above the oil field.", + "pos": "noun", + "word_frequency": 23227 + }, + { + "word": "derrumbado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapsed;fallen down", + "example_sentence_native": "El edificio viejo estaba derrumbado.", + "example_sentence_english": "The old building was collapsed.", + "pos": "adjective", + "word_frequency": 23228 + }, + { + "word": "desencadenado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unleashed;triggered;unchained", + "example_sentence_native": "La crisis económica desencadenó una serie de protestas.", + "example_sentence_english": "The economic crisis unleashed a series of protests.", + "pos": "adjective", + "word_frequency": 23229 + }, + { + "word": "desesperacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desperation", + "example_sentence_native": "Sintió una profunda desesperación al perderlo todo.", + "example_sentence_english": "He felt deep desperation upon losing everything.", + "pos": "noun", + "word_frequency": 23230 + }, + { + "word": "desfachatez", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impudence;audacity;cheekiness", + "example_sentence_native": "Su desfachatez al hablarle al jefe fue sorprendente.", + "example_sentence_english": "His impudence in speaking to the boss was surprising.", + "pos": "noun", + "word_frequency": 23231 + }, + { + "word": "desmayar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to faint;to lose heart", + "example_sentence_native": "Se sintió mareado y pensó que iba a desmayar.", + "example_sentence_english": "He felt dizzy and thought he was going to faint.", + "pos": "verb", + "word_frequency": 23232 + }, + { + "word": "desperfecto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defect;flaw;malfunction", + "example_sentence_native": "El coche tenía un desperfecto en el motor.", + "example_sentence_english": "The car had a defect in the engine.", + "pos": "noun", + "word_frequency": 23233 + }, + { + "word": "desánimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discouragement;low spirits", + "example_sentence_native": "Después de la derrota, hubo un gran desánimo en el equipo.", + "example_sentence_english": "After the defeat, there was great discouragement in the team.", + "pos": "noun", + "word_frequency": 23234 + }, + { + "word": "diluido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diluted", + "example_sentence_native": "El jugo estaba demasiado diluido con agua.", + "example_sentence_english": "The juice was too diluted with water.", + "pos": "adjective", + "word_frequency": 23236 + }, + { + "word": "disentir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dissent;to disagree", + "example_sentence_native": "Es posible disentir sin ser irrespetuoso.", + "example_sentence_english": "It is possible to dissent without being disrespectful.", + "pos": "verb", + "word_frequency": 23237 + }, + { + "word": "dislexia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dyslexia", + "example_sentence_native": "La dislexia es un trastorno del aprendizaje.", + "example_sentence_english": "Dyslexia is a learning disorder.", + "pos": "noun", + "word_frequency": 23238 + }, + { + "word": "display", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "display;screen", + "example_sentence_native": "El display del teléfono está roto.", + "example_sentence_english": "The phone's display is broken.", + "pos": "noun", + "word_frequency": 23239 + }, + { + "word": "engendrar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to engender;to beget", + "example_sentence_native": "Sus acciones pueden engendrar consecuencias inesperadas.", + "example_sentence_english": "His actions can engender unexpected consequences.", + "pos": "verb", + "word_frequency": 23243 + }, + { + "word": "enloquecido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maddened;driven crazy", + "example_sentence_native": "El ruido constante lo tenía enloquecido.", + "example_sentence_english": "The constant noise had him maddened.", + "pos": "adjective", + "word_frequency": 23244 + }, + { + "word": "enumeración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enumeration;list", + "example_sentence_native": "La enumeración de los puntos clave fue muy útil.", + "example_sentence_english": "The enumeration of the key points was very useful.", + "pos": "noun", + "word_frequency": 23245 + }, + { + "word": "equitativamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equitably;fairly", + "example_sentence_native": "Los recursos se distribuyeron equitativamente entre todos.", + "example_sentence_english": "The resources were distributed equitably among everyone.", + "pos": "adverb", + "word_frequency": 23246 + }, + { + "word": "erguido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erect;upright", + "example_sentence_native": "Se mantuvo erguido a pesar de la adversidad.", + "example_sentence_english": "He remained erect despite the adversity.", + "pos": "adjective", + "word_frequency": 23247 + }, + { + "word": "etiquetado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labeled;tagged", + "example_sentence_native": "El producto viene correctamente etiquetado.", + "example_sentence_english": "The product comes correctly labeled.", + "pos": "adjective", + "word_frequency": 23250 + }, + { + "word": "evangelizar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to evangelize", + "example_sentence_native": "Su misión era evangelizar a las comunidades remotas.", + "example_sentence_english": "Their mission was to evangelize the remote communities.", + "pos": "verb", + "word_frequency": 23251 + }, + { + "word": "exoneración", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exoneration;exemption", + "example_sentence_native": "Se le concedió la exoneración de impuestos.", + "example_sentence_english": "He was granted tax exemption.", + "pos": "noun", + "word_frequency": 23253 + }, + { + "word": "exportado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exported", + "example_sentence_native": "El café exportado es de alta calidad.", + "example_sentence_english": "The exported coffee is of high quality.", + "pos": "adjective", + "word_frequency": 23255 + }, + { + "word": "expresividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expressiveness", + "example_sentence_native": "Su expresividad en el escenario era asombrosa.", + "example_sentence_english": "Her expressiveness on stage was amazing.", + "pos": "noun", + "word_frequency": 23256 + }, + { + "word": "falaz", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "fallacious;misleading", + "example_sentence_native": "Su argumento era completamente falaz.", + "example_sentence_english": "His argument was completely fallacious.", + "pos": "adjective", + "word_frequency": 23257 + }, + { + "word": "fatalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fatality;fate;misfortune", + "example_sentence_native": "Fue una fatalidad que ocurriera el accidente.", + "example_sentence_english": "It was a misfortune that the accident happened.", + "pos": "noun", + "word_frequency": 23259 + }, + { + "word": "figurita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figurine;small figure", + "example_sentence_native": "Colecciona figuritas de animales.", + "example_sentence_english": "He collects animal figurines.", + "pos": "noun", + "word_frequency": 23262 + }, + { + "word": "filántropo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philanthropist", + "example_sentence_native": "Es un conocido filántropo de la ciudad.", + "example_sentence_english": "He is a well-known philanthropist in the city.", + "pos": "noun", + "word_frequency": 23263 + }, + { + "word": "fiscalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taxation;fiscal policy", + "example_sentence_native": "La fiscalidad en el país es compleja.", + "example_sentence_english": "Taxation in the country is complex.", + "pos": "noun", + "word_frequency": 23264 + }, + { + "word": "flexibilización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalization;relaxation;flexibility", + "example_sentence_native": "Se busca la flexibilización de las normas laborales.", + "example_sentence_english": "The relaxation of labor laws is sought.", + "pos": "noun", + "word_frequency": 23267 + }, + { + "word": "fogón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stove;hearth;campfire", + "example_sentence_native": "Cocinaron la cena en el fogón.", + "example_sentence_english": "They cooked dinner on the stove.", + "pos": "noun", + "word_frequency": 23268 + }, + { + "word": "forero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forum user;member of a forum", + "example_sentence_native": "Un forero hizo una pregunta interesante.", + "example_sentence_english": "A forum user asked an interesting question.", + "pos": "noun", + "word_frequency": 23269 + }, + { + "word": "frecuentado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frequented;popular", + "example_sentence_native": "Es un restaurante muy frecuentado por los turistas.", + "example_sentence_english": "It's a restaurant very frequented by tourists.", + "pos": "adjective", + "word_frequency": 23270 + }, + { + "word": "frivolidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frivolity", + "example_sentence_native": "No le gusta la frivolidad de la vida social.", + "example_sentence_english": "He doesn't like the frivolity of social life.", + "pos": "noun", + "word_frequency": 23271 + }, + { + "word": "galante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gallant;courteous", + "example_sentence_native": "Siempre fue muy galante con las damas.", + "example_sentence_english": "He was always very gallant with the ladies.", + "pos": "adjective", + "word_frequency": 23274 + }, + { + "word": "gallito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little rooster;cocky person", + "example_sentence_native": "No seas tan gallito, sé más humilde.", + "example_sentence_english": "Don't be so cocky, be more humble.", + "pos": "noun", + "word_frequency": 23275 + }, + { + "word": "gradiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gradient", + "example_sentence_native": "Calculamos el gradiente de la función.", + "example_sentence_english": "We calculated the gradient of the function.", + "pos": "noun", + "word_frequency": 23281 + }, + { + "word": "grafía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spelling;orthography", + "example_sentence_native": "La grafía de esa palabra ha cambiado con el tiempo.", + "example_sentence_english": "The spelling of that word has changed over time.", + "pos": "noun", + "word_frequency": 23282 + }, + { + "word": "guacamole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guacamole", + "example_sentence_native": "Me encanta el guacamole con totopos.", + "example_sentence_english": "I love guacamole with tortilla chips.", + "pos": "noun", + "word_frequency": 23284 + }, + { + "word": "guardabosque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forest ranger", + "example_sentence_native": "El guardabosque protege la fauna y flora del parque.", + "example_sentence_english": "The forest ranger protects the park's fauna and flora.", + "pos": "noun", + "word_frequency": 23285 + }, + { + "word": "gástrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastric", + "example_sentence_native": "Tiene problemas gástricos después de comer.", + "example_sentence_english": "He has gastric problems after eating.", + "pos": "adjective", + "word_frequency": 23286 + }, + { + "word": "habanero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habanero (chili)", + "example_sentence_native": "Este chile habanero es muy picante.", + "example_sentence_english": "This habanero chili is very spicy.", + "pos": "noun", + "word_frequency": 23287 + }, + { + "word": "hablado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spoken;oral", + "example_sentence_native": "El español hablado en México es diferente al de España.", + "example_sentence_english": "The Spanish spoken in Mexico is different from that in Spain.", + "pos": "adjective", + "word_frequency": 23288 + }, + { + "word": "herrería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blacksmith's shop;ironwork", + "example_sentence_native": "La antigua herrería del pueblo ahora es un museo.", + "example_sentence_english": "The old blacksmith's shop in the village is now a museum.", + "pos": "noun", + "word_frequency": 23289 + }, + { + "word": "hiedra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ivy", + "example_sentence_native": "La hiedra cubría toda la pared de la casa.", + "example_sentence_english": "The ivy covered the entire wall of the house.", + "pos": "noun", + "word_frequency": 23291 + }, + { + "word": "idolatría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idolatry", + "example_sentence_native": "La idolatría de la fama es común en la sociedad moderna.", + "example_sentence_english": "The idolatry of fame is common in modern society.", + "pos": "noun", + "word_frequency": 23294 + }, + { + "word": "impartido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imparted;given", + "example_sentence_native": "El conocimiento impartido en la universidad es muy valioso.", + "example_sentence_english": "The knowledge imparted at the university is very valuable.", + "pos": "adjective", + "word_frequency": 23296 + }, + { + "word": "imperceptible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperceptible", + "example_sentence_native": "El cambio fue tan lento que resultó casi imperceptible.", + "example_sentence_english": "The change was so slow that it was almost imperceptible.", + "pos": "adjective", + "word_frequency": 23297 + }, + { + "word": "impersonal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impersonal", + "example_sentence_native": "Su trato era muy impersonal y frío.", + "example_sentence_english": "His treatment was very impersonal and cold.", + "pos": "adjective", + "word_frequency": 23298 + }, + { + "word": "impresor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "printer (person or machine)", + "example_sentence_native": "El impresor necesita más tinta para terminar el trabajo.", + "example_sentence_english": "The printer needs more ink to finish the job.", + "pos": "noun", + "word_frequency": 23299 + }, + { + "word": "indolencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indolence;laziness", + "example_sentence_native": "Su indolencia le impidió alcanzar sus metas.", + "example_sentence_english": "His indolence prevented him from reaching his goals.", + "pos": "noun", + "word_frequency": 23301 + }, + { + "word": "inflacionario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflationary", + "example_sentence_native": "El gobierno tomó medidas para controlar el proceso inflacionario.", + "example_sentence_english": "The government took measures to control the inflationary process.", + "pos": "adjective", + "word_frequency": 23302 + }, + { + "word": "inflar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inflate;to blow up", + "example_sentence_native": "Necesitamos inflar los globos para la fiesta.", + "example_sentence_english": "We need to inflate the balloons for the party.", + "pos": "verb", + "word_frequency": 23303 + }, + { + "word": "inmundicia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "filth;dirt", + "example_sentence_native": "El lugar estaba lleno de inmundicia y basura.", + "example_sentence_english": "The place was full of filth and garbage.", + "pos": "noun", + "word_frequency": 23304 + }, + { + "word": "inscripto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enrolled;registered", + "example_sentence_native": "Su nombre ya está inscripto en la lista.", + "example_sentence_english": "His name is already enrolled on the list.", + "pos": "adjective", + "word_frequency": 23305 + }, + { + "word": "insensibilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insensitivity", + "example_sentence_native": "Mostró una gran insensibilidad ante el dolor ajeno.", + "example_sentence_english": "He showed great insensitivity to the pain of others.", + "pos": "noun", + "word_frequency": 23306 + }, + { + "word": "insolencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insolence", + "example_sentence_native": "Su insolencia le costó el puesto de trabajo.", + "example_sentence_english": "His insolence cost him his job.", + "pos": "noun", + "word_frequency": 23307 + }, + { + "word": "instintivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinctively", + "example_sentence_native": "Reaccionó instintivamente para proteger a su hijo.", + "example_sentence_english": "He reacted instinctively to protect his son.", + "pos": "adverb", + "word_frequency": 23308 + }, + { + "word": "interiormente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internally;inwardly", + "example_sentence_native": "Interiormente, se sentía muy triste a pesar de su sonrisa.", + "example_sentence_english": "Internally, he felt very sad despite his smile.", + "pos": "adverb", + "word_frequency": 23309 + }, + { + "word": "irrepetible", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unrepeatable;unique", + "example_sentence_native": "Fue una experiencia irrepetible que nunca olvidaré.", + "example_sentence_english": "It was an unrepeatable experience that I will never forget.", + "pos": "adjective", + "word_frequency": 23310 + }, + { + "word": "jerarca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hierarch;dignitary", + "example_sentence_native": "El jerarca de la iglesia dio un discurso.", + "example_sentence_english": "The hierarch of the church gave a speech.", + "pos": "noun", + "word_frequency": 23313 + }, + { + "word": "laso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasso;bow", + "example_sentence_native": "El vaquero lanzó el laso para atrapar al caballo.", + "example_sentence_english": "The cowboy threw the lasso to catch the horse.", + "pos": "noun", + "word_frequency": 23317 + }, + { + "word": "lectivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academic;school (year)", + "example_sentence_native": "El año lectivo comienza en septiembre.", + "example_sentence_english": "The academic year begins in September.", + "pos": "adjective", + "word_frequency": 23318 + }, + { + "word": "lega", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "layperson;legal representative (female)", + "example_sentence_native": "Como lega, no entiendo todos los términos jurídicos.", + "example_sentence_english": "As a layperson, I don't understand all the legal terms.", + "pos": "noun", + "word_frequency": 23319 + }, + { + "word": "libertinaje", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debauchery", + "example_sentence_native": "El libertinaje de su vida le trajo problemas.", + "example_sentence_english": "The debauchery of his life brought him problems.", + "pos": "noun", + "word_frequency": 23322 + }, + { + "word": "maestranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arsenal;shipyard;bullring", + "example_sentence_native": "La Real Maestranza de Caballería de Sevilla es famosa.", + "example_sentence_english": "The Royal Cavalry Armory of Seville is famous.", + "pos": "noun", + "word_frequency": 23326 + }, + { + "word": "magisterial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masterful", + "example_sentence_native": "Dio una conferencia magisterial sobre el tema.", + "example_sentence_english": "He gave a masterful lecture on the subject.", + "pos": "adjective", + "word_frequency": 23327 + }, + { + "word": "mamarracho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ridiculous person;clown", + "example_sentence_native": "No seas un mamarracho y vístete bien.", + "example_sentence_english": "Don't be a clown and dress properly.", + "pos": "noun", + "word_frequency": 23329 + }, + { + "word": "medallero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medal table", + "example_sentence_native": "España ocupa el quinto lugar en el medallero olímpico.", + "example_sentence_english": "Spain is in fifth place in the Olympic medal table.", + "pos": "noun", + "word_frequency": 23331 + }, + { + "word": "mediocampo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midfield", + "example_sentence_native": "El mediocampo es clave en el fútbol.", + "example_sentence_english": "The midfield is key in football.", + "pos": "noun", + "word_frequency": 23333 + }, + { + "word": "metafóricamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphorically", + "example_sentence_native": "Hablando metafóricamente, era un mar de problemas.", + "example_sentence_english": "Metaphorically speaking, it was a sea of problems.", + "pos": "adverb", + "word_frequency": 23335 + }, + { + "word": "miguelito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miguelito (a type of pastry)", + "example_sentence_native": "Me encanta comer miguelitos con el café.", + "example_sentence_english": "I love eating miguelitos with coffee.", + "pos": "noun", + "word_frequency": 23337 + }, + { + "word": "monolito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monolith", + "example_sentence_native": "El monolito se alzaba imponente en el paisaje.", + "example_sentence_english": "The monolith stood imposingly in the landscape.", + "pos": "noun", + "word_frequency": 23339 + }, + { + "word": "mordedura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bite", + "example_sentence_native": "La mordedura del perro no fue grave.", + "example_sentence_english": "The dog's bite was not serious.", + "pos": "noun", + "word_frequency": 23341 + }, + { + "word": "multiplataforma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiplatform", + "example_sentence_native": "El juego es multiplataforma, disponible en varias consolas.", + "example_sentence_english": "The game is multiplatform, available on various consoles.", + "pos": "noun", + "word_frequency": 23342 + }, + { + "word": "naviera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipping company", + "example_sentence_native": "La naviera anunció nuevas rutas de carga.", + "example_sentence_english": "The shipping company announced new cargo routes.", + "pos": "noun", + "word_frequency": 23343 + }, + { + "word": "necrosis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necrosis", + "example_sentence_native": "La necrosis del tejido requiere atención médica urgente.", + "example_sentence_english": "Tissue necrosis requires urgent medical attention.", + "pos": "noun", + "word_frequency": 23344 + }, + { + "word": "nivelar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to level;to equalize", + "example_sentence_native": "Necesitamos nivelar el terreno antes de construir.", + "example_sentence_english": "We need to level the ground before building.", + "pos": "verb", + "word_frequency": 23346 + }, + { + "word": "osar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dare", + "example_sentence_native": "¿Cómo osas hablarme así?", + "example_sentence_english": "How dare you speak to me like that?", + "pos": "verb", + "word_frequency": 23347 + }, + { + "word": "papado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papacy", + "example_sentence_native": "El papado tiene una larga historia.", + "example_sentence_english": "The papacy has a long history.", + "pos": "noun", + "word_frequency": 23349 + }, + { + "word": "patraña", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tall tale;fabrication", + "example_sentence_native": "Esa historia es una patraña.", + "example_sentence_english": "That story is a tall tale.", + "pos": "noun", + "word_frequency": 23351 + }, + { + "word": "pedalear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pedal", + "example_sentence_native": "Le gusta pedalear en su bicicleta.", + "example_sentence_english": "He likes to pedal on his bicycle.", + "pos": "verb", + "word_frequency": 23354 + }, + { + "word": "peta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joint (slang)", + "example_sentence_native": "Se encendió una peta después del trabajo.", + "example_sentence_english": "He lit a joint after work.", + "pos": "noun", + "word_frequency": 23356 + }, + { + "word": "planeado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planned", + "example_sentence_native": "Todo salió según lo planeado.", + "example_sentence_english": "Everything went as planned.", + "pos": "adjective", + "word_frequency": 23359 + }, + { + "word": "ponderación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberation;consideration", + "example_sentence_native": "La ponderación de los pros y los contras es crucial antes de tomar una decisión.", + "example_sentence_english": "The deliberation of the pros and cons is crucial before making a decision.", + "pos": "noun", + "word_frequency": 23360 + }, + { + "word": "pospuesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "postponed;delayed", + "example_sentence_native": "La reunión ha sido pospuesta hasta la próxima semana.", + "example_sentence_english": "The meeting has been postponed until next week.", + "pos": "adjective", + "word_frequency": 23362 + }, + { + "word": "preservado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserved", + "example_sentence_native": "Los documentos antiguos fueron preservados cuidadosamente.", + "example_sentence_english": "The old documents were carefully preserved.", + "pos": "adjective", + "word_frequency": 23363 + }, + { + "word": "pretérito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preterite (past tense)", + "example_sentence_native": "El pretérito indefinido se usa para acciones terminadas en el pasado.", + "example_sentence_english": "The preterite tense is used for completed actions in the past.", + "pos": "noun", + "word_frequency": 23364 + }, + { + "word": "prodigioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prodigious;marvelous", + "example_sentence_native": "El niño mostró un talento prodigioso para la música.", + "example_sentence_english": "The child showed a prodigious talent for music.", + "pos": "adjective", + "word_frequency": 23365 + }, + { + "word": "propagandístico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propagandistic", + "example_sentence_native": "El discurso tenía un tono claramente propagandístico.", + "example_sentence_english": "The speech had a clearly propagandistic tone.", + "pos": "adjective", + "word_frequency": 23366 + }, + { + "word": "purgar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to purge;to cleanse", + "example_sentence_native": "Decidió purgar su armario de ropa vieja.", + "example_sentence_english": "He decided to purge his closet of old clothes.", + "pos": "verb", + "word_frequency": 23368 + }, + { + "word": "quemarropa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "at point-blank range;bluntly", + "example_sentence_native": "Le disparó a quemarropa.", + "example_sentence_english": "He shot him at point-blank range.", + "pos": "adverb", + "word_frequency": 23369 + }, + { + "word": "quetzal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quetzal (bird;currency of Guatemala)", + "example_sentence_native": "El quetzal es el ave nacional de Guatemala.", + "example_sentence_english": "The quetzal is the national bird of Guatemala.", + "pos": "noun", + "word_frequency": 23370 + }, + { + "word": "ratero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pickpocket;petty thief", + "example_sentence_native": "Un ratero le robó la cartera en el metro.", + "example_sentence_english": "A pickpocket stole his wallet on the subway.", + "pos": "noun", + "word_frequency": 23372 + }, + { + "word": "reanimación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resuscitation;reanimation", + "example_sentence_native": "Se le practicó reanimación cardiopulmonar.", + "example_sentence_english": "Cardiopulmonary resuscitation was performed on him.", + "pos": "noun", + "word_frequency": 23374 + }, + { + "word": "rebatir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refute;to rebut", + "example_sentence_native": "Es difícil rebatir sus argumentos con pruebas tan sólidas.", + "example_sentence_english": "It's difficult to refute his arguments with such solid evidence.", + "pos": "verb", + "word_frequency": 23375 + }, + { + "word": "rebotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bounce", + "example_sentence_native": "La pelota rebotó contra la pared.", + "example_sentence_english": "The ball bounced against the wall.", + "pos": "verb", + "word_frequency": 23376 + }, + { + "word": "recomponer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recompose;to put back together", + "example_sentence_native": "Después de la caída, tuvo que recomponerse para seguir.", + "example_sentence_english": "After the fall, he had to recompose himself to continue.", + "pos": "verb", + "word_frequency": 23377 + }, + { + "word": "recubierto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coated;covered", + "example_sentence_native": "La superficie estaba recubierta de una fina capa de polvo.", + "example_sentence_english": "The surface was coated with a thin layer of dust.", + "pos": "adjective", + "word_frequency": 23378 + }, + { + "word": "refundido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consolidated;recast", + "example_sentence_native": "El texto legal fue refundido para mayor claridad.", + "example_sentence_english": "The legal text was consolidated for greater clarity.", + "pos": "adjective", + "word_frequency": 23379 + }, + { + "word": "refutación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refutation", + "example_sentence_native": "Su refutación fue muy convincente.", + "example_sentence_english": "His refutation was very convincing.", + "pos": "noun", + "word_frequency": 23380 + }, + { + "word": "regadera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "watering can;shower head", + "example_sentence_native": "Necesito la regadera para las plantas del jardín.", + "example_sentence_english": "I need the watering can for the garden plants.", + "pos": "noun", + "word_frequency": 23381 + }, + { + "word": "reprochar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reproach;to blame", + "example_sentence_native": "No tienes nada que reprocharle.", + "example_sentence_english": "You have nothing to reproach him for.", + "pos": "verb", + "word_frequency": 23382 + }, + { + "word": "republicanismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "republicanism", + "example_sentence_native": "El republicanismo es una ideología política.", + "example_sentence_english": "Republicanism is a political ideology.", + "pos": "noun", + "word_frequency": 23383 + }, + { + "word": "reseñado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reviewed;commented on", + "example_sentence_native": "El libro fue reseñado positivamente por la crítica.", + "example_sentence_english": "The book was positively reviewed by critics.", + "pos": "adjective", + "word_frequency": 23384 + }, + { + "word": "retomado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resumed;retaken", + "example_sentence_native": "El proyecto fue retomado después de un largo descanso.", + "example_sentence_english": "The project was resumed after a long break.", + "pos": "adjective", + "word_frequency": 23385 + }, + { + "word": "rugir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to roar", + "example_sentence_native": "El león rugió fuertemente en la sabana.", + "example_sentence_english": "The lion roared loudly in the savanna.", + "pos": "verb", + "word_frequency": 23387 + }, + { + "word": "sacrilegio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacrilege", + "example_sentence_native": "Destruir el antiguo templo sería un sacrilegio.", + "example_sentence_english": "Destroying the ancient temple would be a sacrilege.", + "pos": "noun", + "word_frequency": 23388 + }, + { + "word": "sarcófago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcophagus", + "example_sentence_native": "El sarcófago fue descubierto en la tumba del faraón.", + "example_sentence_english": "The sarcophagus was discovered in the pharaoh's tomb.", + "pos": "noun", + "word_frequency": 23390 + }, + { + "word": "sica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sica (ancient Roman dagger)", + "example_sentence_native": "La sica era una daga curva usada por los tracios.", + "example_sentence_english": "The sica was a curved dagger used by the Thracians.", + "pos": "noun", + "word_frequency": 23395 + }, + { + "word": "sorgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorghum", + "example_sentence_native": "El sorgo se utiliza para alimentar al ganado.", + "example_sentence_english": "Sorghum is used to feed livestock.", + "pos": "noun", + "word_frequency": 23397 + }, + { + "word": "superficialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superficially", + "example_sentence_native": "Solo leyó el informe superficialmente.", + "example_sentence_english": "He only read the report superficially.", + "pos": "adverb", + "word_frequency": 23399 + }, + { + "word": "talent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talent", + "example_sentence_native": "Ella tiene un gran talento para la música.", + "example_sentence_english": "She has a great talent for music.", + "pos": "noun", + "word_frequency": 23400 + }, + { + "word": "templanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "temperance;moderation", + "example_sentence_native": "La templanza es una virtud importante.", + "example_sentence_english": "Temperance is an important virtue.", + "pos": "noun", + "word_frequency": 23402 + }, + { + "word": "toscano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tuscan", + "example_sentence_native": "El paisaje toscano es muy hermoso.", + "example_sentence_english": "The Tuscan landscape is very beautiful.", + "pos": "adjective", + "word_frequency": 23407 + }, + { + "word": "tostadora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toaster", + "example_sentence_native": "Necesito una tostadora nueva.", + "example_sentence_english": "I need a new toaster.", + "pos": "noun", + "word_frequency": 23408 + }, + { + "word": "transmision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transmission", + "example_sentence_native": "La transmisión del partido fue excelente.", + "example_sentence_english": "The transmission of the match was excellent.", + "pos": "noun", + "word_frequency": 23410 + }, + { + "word": "trapecio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trapezoid;trapeze", + "example_sentence_native": "El trapecio es una figura geométrica.", + "example_sentence_english": "The trapezoid is a geometric figure.", + "pos": "noun", + "word_frequency": 23411 + }, + { + "word": "triciclo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tricycle", + "example_sentence_native": "Mi hijo aprendió a andar en triciclo.", + "example_sentence_english": "My son learned to ride a tricycle.", + "pos": "noun", + "word_frequency": 23412 + }, + { + "word": "trienio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triennium;three-year period", + "example_sentence_native": "El proyecto durará un trienio.", + "example_sentence_english": "The project will last a triennium.", + "pos": "noun", + "word_frequency": 23413 + }, + { + "word": "ultranza", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to the utmost;to the death (in \"a ultranza\")", + "example_sentence_native": "Defendieron sus ideales a ultranza.", + "example_sentence_english": "They defended their ideals to the utmost.", + "pos": "noun", + "word_frequency": 23415 + }, + { + "word": "verosímil", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plausible;probable", + "example_sentence_native": "Su explicación no parece muy verosímil.", + "example_sentence_english": "His explanation doesn't seem very plausible.", + "pos": "adjective", + "word_frequency": 23417 + }, + { + "word": "vástago", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shoot;offspring;descendant", + "example_sentence_native": "Es el vástago de una noble familia.", + "example_sentence_english": "He is the offspring of a noble family.", + "pos": "noun", + "word_frequency": 23418 + }, + { + "word": "ébano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ebony", + "example_sentence_native": "La mesa era de madera de ébano.", + "example_sentence_english": "The table was made of ebony wood.", + "pos": "noun", + "word_frequency": 23428 + }, + { + "word": "adulación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flattery;adulation", + "example_sentence_native": "No me gusta la adulación excesiva.", + "example_sentence_english": "I don't like excessive flattery.", + "pos": "noun", + "word_frequency": 23431 + }, + { + "word": "agitador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agitator;stirrer", + "example_sentence_native": "El agitador político fue arrestado.", + "example_sentence_english": "The political agitator was arrested.", + "pos": "noun", + "word_frequency": 23433 + }, + { + "word": "agonizar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to agonize;to be dying", + "example_sentence_native": "El paciente agonizaba en la cama.", + "example_sentence_english": "The patient was agonizing in bed.", + "pos": "verb", + "word_frequency": 23434 + }, + { + "word": "agroindustrial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agro-industrial", + "example_sentence_native": "La producción agroindustrial es vital para la economía.", + "example_sentence_english": "Agro-industrial production is vital for the economy.", + "pos": "adjective", + "word_frequency": 23435 + }, + { + "word": "ahijado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godson", + "example_sentence_native": "Mi ahijado cumple años mañana.", + "example_sentence_english": "My godson's birthday is tomorrow.", + "pos": "noun", + "word_frequency": 23436 + }, + { + "word": "ahorcar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hang (by the neck)", + "example_sentence_native": "El verdugo iba a ahorcar al criminal.", + "example_sentence_english": "The executioner was going to hang the criminal.", + "pos": "verb", + "word_frequency": 23437 + }, + { + "word": "alacena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pantry;cupboard", + "example_sentence_native": "Guarda los platos en la alacena.", + "example_sentence_english": "Put the dishes in the cupboard.", + "pos": "noun", + "word_frequency": 23438 + }, + { + "word": "alambrado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wire fence;wiring", + "example_sentence_native": "El campo estaba rodeado por un alambrado.", + "example_sentence_english": "The field was surrounded by a wire fence.", + "pos": "noun", + "word_frequency": 23439 + }, + { + "word": "almirantazgo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "admiralty", + "example_sentence_native": "El almirantazgo emitió una nueva orden.", + "example_sentence_english": "The admiralty issued a new order.", + "pos": "noun", + "word_frequency": 23440 + }, + { + "word": "alpaca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alpaca", + "example_sentence_native": "Las alpacas son animales nativos de los Andes.", + "example_sentence_english": "Alpacas are animals native to the Andes.", + "pos": "noun", + "word_frequency": 23441 + }, + { + "word": "amonio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammonium", + "example_sentence_native": "El amonio es un compuesto químico importante.", + "example_sentence_english": "Ammonium is an important chemical compound.", + "pos": "noun", + "word_frequency": 23442 + }, + { + "word": "amorcito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweetheart", + "example_sentence_native": "Hola, amorcito, ¿cómo estás?", + "example_sentence_english": "Hello, sweetheart, how are you?", + "pos": "noun", + "word_frequency": 23443 + }, + { + "word": "anhelado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longed-for", + "example_sentence_native": "Finalmente alcanzó su sueño anhelado.", + "example_sentence_english": "He finally achieved his longed-for dream.", + "pos": "adjective", + "word_frequency": 23444 + }, + { + "word": "anticipadamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in advance", + "example_sentence_native": "Gracias anticipadamente por tu ayuda.", + "example_sentence_english": "Thanks in advance for your help.", + "pos": "adverb", + "word_frequency": 23445 + }, + { + "word": "antinatural", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnatural", + "example_sentence_native": "Su comportamiento parecía antinatural.", + "example_sentence_english": "His behavior seemed unnatural.", + "pos": "adjective", + "word_frequency": 23446 + }, + { + "word": "apendicitis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appendicitis", + "example_sentence_native": "Tuvo que ser operado de apendicitis.", + "example_sentence_english": "He had to be operated on for appendicitis.", + "pos": "noun", + "word_frequency": 23449 + }, + { + "word": "ariete", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "battering ram", + "example_sentence_native": "Usaron un ariete para derribar la puerta.", + "example_sentence_english": "They used a battering ram to break down the door.", + "pos": "noun", + "word_frequency": 23450 + }, + { + "word": "aristocrático", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aristocratic", + "example_sentence_native": "Tenía modales muy aristocráticos.", + "example_sentence_english": "He had very aristocratic manners.", + "pos": "adjective", + "word_frequency": 23451 + }, + { + "word": "arrancada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start", + "example_sentence_native": "La arrancada del coche fue muy rápida.", + "example_sentence_english": "The car's start was very fast.", + "pos": "noun", + "word_frequency": 23453 + }, + { + "word": "artísticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artistically", + "example_sentence_native": "Decoró la habitación muy artísticamente.", + "example_sentence_english": "He decorated the room very artistically.", + "pos": "adverb", + "word_frequency": 23455 + }, + { + "word": "asbesto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asbestos", + "example_sentence_native": "El asbesto es un material peligroso para la salud.", + "example_sentence_english": "Asbestos is a dangerous material for health.", + "pos": "noun", + "word_frequency": 23456 + }, + { + "word": "atracar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dock", + "example_sentence_native": "El barco va a atracar en el puerto.", + "example_sentence_english": "The ship is going to dock in the port.", + "pos": "verb", + "word_frequency": 23457 + }, + { + "word": "atrayente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attractive", + "example_sentence_native": "Su personalidad es muy atrayente.", + "example_sentence_english": "His personality is very attractive.", + "pos": "adjective", + "word_frequency": 23458 + }, + { + "word": "atropellado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run over", + "example_sentence_native": "El perro fue atropellado por un coche.", + "example_sentence_english": "The dog was run over by a car.", + "pos": "adjective", + "word_frequency": 23459 + }, + { + "word": "atónito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astonished", + "example_sentence_native": "Se quedó atónito al escuchar la noticia.", + "example_sentence_english": "He was astonished to hear the news.", + "pos": "adjective", + "word_frequency": 23460 + }, + { + "word": "aventurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to venture", + "example_sentence_native": "No quiero aventurar una opinión sin más datos.", + "example_sentence_english": "I don't want to venture an opinion without more data.", + "pos": "verb", + "word_frequency": 23462 + }, + { + "word": "aviar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prepare", + "example_sentence_native": "Hay que aviar los caballos para el viaje.", + "example_sentence_english": "We need to prepare the horses for the trip.", + "pos": "verb", + "word_frequency": 23463 + }, + { + "word": "balancear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to balance", + "example_sentence_native": "Es difícil balancear el plato en la cabeza.", + "example_sentence_english": "It's difficult to balance the plate on your head.", + "pos": "verb", + "word_frequency": 23466 + }, + { + "word": "balanceo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swing", + "example_sentence_native": "El balanceo del barco me mareó.", + "example_sentence_english": "The rocking of the boat made me dizzy.", + "pos": "noun", + "word_frequency": 23467 + }, + { + "word": "bastilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hem", + "example_sentence_native": "La bastilla de los pantalones estaba descosida.", + "example_sentence_english": "The hem of the pants was unstitched.", + "pos": "noun", + "word_frequency": 23468 + }, + { + "word": "bellota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acorn", + "example_sentence_native": "Las ardillas recogen bellotas para el invierno.", + "example_sentence_english": "Squirrels collect acorns for winter.", + "pos": "noun", + "word_frequency": 23470 + }, + { + "word": "bilingüismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bilingualism", + "example_sentence_native": "El bilingüismo es común en muchas regiones del mundo.", + "example_sentence_english": "Bilingualism is common in many regions of the world.", + "pos": "noun", + "word_frequency": 23473 + }, + { + "word": "bisagra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hinge", + "example_sentence_native": "La puerta necesita una bisagra nueva.", + "example_sentence_english": "The door needs a new hinge.", + "pos": "noun", + "word_frequency": 23474 + }, + { + "word": "bulbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulb", + "example_sentence_native": "Plantamos bulbos de tulipanes en el jardín.", + "example_sentence_english": "We planted tulip bulbs in the garden.", + "pos": "noun", + "word_frequency": 23478 + }, + { + "word": "burgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "borough", + "example_sentence_native": "El burgo medieval estaba rodeado por una muralla.", + "example_sentence_english": "The medieval borough was surrounded by a wall.", + "pos": "noun", + "word_frequency": 23480 + }, + { + "word": "catalá", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catalan (person or language)", + "example_sentence_native": "Habla catalá con fluidez.", + "example_sentence_english": "He speaks Catalan fluently.", + "pos": "noun", + "word_frequency": 23489 + }, + { + "word": "catastral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cadastral", + "example_sentence_native": "Necesitamos el valor catastral de la propiedad.", + "example_sentence_english": "We need the cadastral value of the property.", + "pos": "adjective", + "word_frequency": 23490 + }, + { + "word": "catéter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catheter", + "example_sentence_native": "El paciente necesitaba un catéter para el procedimiento.", + "example_sentence_english": "The patient needed a catheter for the procedure.", + "pos": "noun", + "word_frequency": 23491 + }, + { + "word": "chantajear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blackmail", + "example_sentence_native": "Intentaron chantajearlo con información confidencial.", + "example_sentence_english": "They tried to blackmail him with confidential information.", + "pos": "verb", + "word_frequency": 23493 + }, + { + "word": "chorrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little stream;jet (of liquid)", + "example_sentence_native": "Añade un chorrito de aceite a la ensalada.", + "example_sentence_english": "Add a little stream of oil to the salad.", + "pos": "noun", + "word_frequency": 23497 + }, + { + "word": "cloroformo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chloroform", + "example_sentence_native": "El cloroformo se usaba antiguamente como anestésico.", + "example_sentence_english": "Chloroform was formerly used as an anesthetic.", + "pos": "noun", + "word_frequency": 23499 + }, + { + "word": "confesionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confessional (booth)", + "example_sentence_native": "El sacerdote esperaba en el confesionario.", + "example_sentence_english": "The priest waited in the confessional.", + "pos": "noun", + "word_frequency": 23502 + }, + { + "word": "contragolpe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterattack;counterblow", + "example_sentence_native": "El equipo lanzó un rápido contragolpe.", + "example_sentence_english": "The team launched a quick counterattack.", + "pos": "noun", + "word_frequency": 23505 + }, + { + "word": "convergente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convergent", + "example_sentence_native": "Las líneas convergentes se encuentran en un punto.", + "example_sentence_english": "Convergent lines meet at a point.", + "pos": "adjective", + "word_frequency": 23506 + }, + { + "word": "criticado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criticized", + "example_sentence_native": "El proyecto fue muy criticado por la prensa.", + "example_sentence_english": "The project was heavily criticized by the press.", + "pos": "adjective", + "word_frequency": 23507 + }, + { + "word": "cronómetro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stopwatch;chronometer", + "example_sentence_native": "Usó un cronómetro para medir el tiempo de la carrera.", + "example_sentence_english": "He used a stopwatch to measure the race time.", + "pos": "noun", + "word_frequency": 23508 + }, + { + "word": "cuadrícula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grid", + "example_sentence_native": "Dibuja una cuadrícula en el papel.", + "example_sentence_english": "Draw a grid on the paper.", + "pos": "noun", + "word_frequency": 23509 + }, + { + "word": "culminado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culminated;completed", + "example_sentence_native": "El proyecto ha sido culminado con éxito.", + "example_sentence_english": "The project has been successfully culminated.", + "pos": "adjective", + "word_frequency": 23510 + }, + { + "word": "cónico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conical", + "example_sentence_native": "La forma del cono es cónica.", + "example_sentence_english": "The shape of the cone is conical.", + "pos": "adjective", + "word_frequency": 23513 + }, + { + "word": "dación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "giving;granting (e.g.;dation in payment)", + "example_sentence_native": "La dación en pago es una alternativa para saldar deudas.", + "example_sentence_english": "Dation in payment is an alternative to settle debts.", + "pos": "noun", + "word_frequency": 23514 + }, + { + "word": "decada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decade", + "example_sentence_native": "Han pasado dos décadas desde entonces.", + "example_sentence_english": "Two decades have passed since then.", + "pos": "noun", + "word_frequency": 23515 + }, + { + "word": "decálogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decalogue;set of ten principles", + "example_sentence_native": "El decálogo de la empresa establece sus principios fundamentales.", + "example_sentence_english": "The company's decalogue establishes its fundamental principles.", + "pos": "noun", + "word_frequency": 23516 + }, + { + "word": "desbaratar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disrupt;to foil;to mess up", + "example_sentence_native": "La tormenta desbarató nuestros planes de viaje.", + "example_sentence_english": "The storm disrupted our travel plans.", + "pos": "verb", + "word_frequency": 23519 + }, + { + "word": "desempate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tie-break;playoff", + "example_sentence_native": "El partido terminó en un desempate emocionante.", + "example_sentence_english": "The match ended in an exciting tie-break.", + "pos": "noun", + "word_frequency": 23520 + }, + { + "word": "desgarrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torn;ripped", + "example_sentence_native": "Tenía la ropa desgarrada después de la caída.", + "example_sentence_english": "He had torn clothes after the fall.", + "pos": "adjective", + "word_frequency": 23521 + }, + { + "word": "designio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "design;intention;purpose", + "example_sentence_native": "Los designios del destino son inescrutables.", + "example_sentence_english": "The designs of fate are inscrutable.", + "pos": "noun", + "word_frequency": 23522 + }, + { + "word": "desmayado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fainted;unconscious", + "example_sentence_native": "Se sintió débil y desmayado por el calor.", + "example_sentence_english": "He felt weak and fainted from the heat.", + "pos": "adjective", + "word_frequency": 23523 + }, + { + "word": "desterrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to banish;to exile", + "example_sentence_native": "El rey decidió desterrar al traidor del reino.", + "example_sentence_english": "The king decided to banish the traitor from the kingdom.", + "pos": "verb", + "word_frequency": 23524 + }, + { + "word": "detallista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retailer;detail-oriented person", + "example_sentence_native": "Mi abuela es muy detallista con sus regalos.", + "example_sentence_english": "My grandmother is very detail-oriented with her gifts.", + "pos": "noun", + "word_frequency": 23525 + }, + { + "word": "deteriorar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deteriorate;to worsen", + "example_sentence_native": "La calidad del aire se está deteriorando rápidamente.", + "example_sentence_english": "The air quality is deteriorating rapidly.", + "pos": "verb", + "word_frequency": 23526 + }, + { + "word": "disciplinar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discipline", + "example_sentence_native": "Es importante disciplinar a los niños con amor.", + "example_sentence_english": "It's important to discipline children with love.", + "pos": "verb", + "word_frequency": 23527 + }, + { + "word": "ecuménico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecumenical", + "example_sentence_native": "Se celebró un concilio ecuménico para discutir la unidad.", + "example_sentence_english": "An ecumenical council was held to discuss unity.", + "pos": "adjective", + "word_frequency": 23532 + }, + { + "word": "elegantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elegantly", + "example_sentence_native": "Se vistió elegantemente para la fiesta.", + "example_sentence_english": "She dressed elegantly for the party.", + "pos": "adverb", + "word_frequency": 23533 + }, + { + "word": "entereza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrity;fortitude;wholeness", + "example_sentence_native": "Afrontó la situación con gran entereza.", + "example_sentence_english": "He faced the situation with great fortitude.", + "pos": "noun", + "word_frequency": 23535 + }, + { + "word": "entrelazado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intertwined;interwoven", + "example_sentence_native": "Los árboles tenían sus ramas entrelazadas.", + "example_sentence_english": "The trees had their branches intertwined.", + "pos": "adjective", + "word_frequency": 23536 + }, + { + "word": "escuadrilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squadron (of planes;ships)", + "example_sentence_native": "Una escuadrilla de aviones sobrevoló la ciudad.", + "example_sentence_english": "A squadron of planes flew over the city.", + "pos": "noun", + "word_frequency": 23538 + }, + { + "word": "escuelita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little school;small school", + "example_sentence_native": "Mi hijo va a una escuelita en el barrio.", + "example_sentence_english": "My son goes to a little school in the neighborhood.", + "pos": "noun", + "word_frequency": 23539 + }, + { + "word": "espectral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spectral;ghostly", + "example_sentence_native": "Una figura espectral apareció en la oscuridad.", + "example_sentence_english": "A spectral figure appeared in the darkness.", + "pos": "adjective", + "word_frequency": 23540 + }, + { + "word": "estiramiento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretching;stretch", + "example_sentence_native": "Es importante hacer estiramientos antes de correr.", + "example_sentence_english": "It's important to do stretches before running.", + "pos": "noun", + "word_frequency": 23541 + }, + { + "word": "expectante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expectant;waiting", + "example_sentence_native": "La audiencia estaba expectante ante el anuncio.", + "example_sentence_english": "The audience was expectant before the announcement.", + "pos": "adjective", + "word_frequency": 23542 + }, + { + "word": "falencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deficiency;shortcoming;flaw", + "example_sentence_native": "Identificaron varias falencias en el sistema.", + "example_sentence_english": "They identified several shortcomings in the system.", + "pos": "noun", + "word_frequency": 23543 + }, + { + "word": "felicitado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congratulated;praised", + "example_sentence_native": "Fue felicitado por su excelente trabajo.", + "example_sentence_english": "He was congratulated for his excellent work.", + "pos": "adjective", + "word_frequency": 23549 + }, + { + "word": "femicidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "femicide", + "example_sentence_native": "La ley busca prevenir el femicidio.", + "example_sentence_english": "The law seeks to prevent femicide.", + "pos": "noun", + "word_frequency": 23550 + }, + { + "word": "fervientemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fervently;ardently", + "example_sentence_native": "Rezaba fervientemente por la paz mundial.", + "example_sentence_english": "He prayed fervently for world peace.", + "pos": "adverb", + "word_frequency": 23551 + }, + { + "word": "filón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lode;vein;goldmine (figurative)", + "example_sentence_native": "Encontraron un filón de oro en la mina.", + "example_sentence_english": "They found a gold lode in the mine.", + "pos": "noun", + "word_frequency": 23552 + }, + { + "word": "formalizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formalized;officialized", + "example_sentence_native": "El acuerdo fue formalizado con la firma de ambos.", + "example_sentence_english": "The agreement was formalized with the signature of both.", + "pos": "adjective", + "word_frequency": 23554 + }, + { + "word": "forte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forte;strong point", + "example_sentence_native": "Su forte es la oratoria.", + "example_sentence_english": "His forte is public speaking.", + "pos": "noun", + "word_frequency": 23555 + }, + { + "word": "frotar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rub", + "example_sentence_native": "Necesitas frotar la mancha para quitarla.", + "example_sentence_english": "You need to rub the stain to remove it.", + "pos": "verb", + "word_frequency": 23557 + }, + { + "word": "fumigación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fumigation;pest control", + "example_sentence_native": "La fumigación es necesaria para eliminar las plagas.", + "example_sentence_english": "Fumigation is necessary to eliminate pests.", + "pos": "noun", + "word_frequency": 23559 + }, + { + "word": "gaita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bagpipe", + "example_sentence_native": "El sonido de la gaita es muy característico de Escocia.", + "example_sentence_english": "The sound of the bagpipe is very characteristic of Scotland.", + "pos": "noun", + "word_frequency": 23560 + }, + { + "word": "guirnalda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garland;wreath", + "example_sentence_native": "Colgamos una guirnalda de luces en el árbol de Navidad.", + "example_sentence_english": "We hung a garland of lights on the Christmas tree.", + "pos": "noun", + "word_frequency": 23563 + }, + { + "word": "guisado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stew", + "example_sentence_native": "Mi abuela prepara un guisado de lentejas delicioso.", + "example_sentence_english": "My grandmother makes a delicious lentil stew.", + "pos": "noun", + "word_frequency": 23564 + }, + { + "word": "heráldica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heraldry", + "example_sentence_native": "Estudió la heráldica para entender los escudos familiares.", + "example_sentence_english": "He studied heraldry to understand family crests.", + "pos": "noun", + "word_frequency": 23568 + }, + { + "word": "hidratación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydration", + "example_sentence_native": "La hidratación es clave para la salud.", + "example_sentence_english": "Hydration is key for health.", + "pos": "noun", + "word_frequency": 23569 + }, + { + "word": "hilar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spin (thread)", + "example_sentence_native": "La araña puede hilar una tela muy fuerte.", + "example_sentence_english": "The spider can spin a very strong web.", + "pos": "verb", + "word_frequency": 23570 + }, + { + "word": "hipotermia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothermia", + "example_sentence_native": "La exposición prolongada al frío puede causar hipotermia.", + "example_sentence_english": "Prolonged exposure to cold can cause hypothermia.", + "pos": "noun", + "word_frequency": 23571 + }, + { + "word": "improcedente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improper;inadmissible;unfounded", + "example_sentence_native": "La objeción fue declarada improcedente por el juez.", + "example_sentence_english": "The objection was declared inadmissible by the judge.", + "pos": "adjective", + "word_frequency": 23577 + }, + { + "word": "incendiario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arsonist", + "example_sentence_native": "La policía busca al incendiario responsable del fuego.", + "example_sentence_english": "The police are looking for the arsonist responsible for the fire.", + "pos": "noun", + "word_frequency": 23578 + }, + { + "word": "inexperto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexperienced", + "example_sentence_native": "Es un conductor inexperto, así que ten cuidado.", + "example_sentence_english": "He is an inexperienced driver, so be careful.", + "pos": "adjective", + "word_frequency": 23579 + }, + { + "word": "interestatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interstate", + "example_sentence_native": "La carretera interestatal conecta varias ciudades importantes.", + "example_sentence_english": "The interstate highway connects several important cities.", + "pos": "adjective", + "word_frequency": 23582 + }, + { + "word": "interrelación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interrelation;relationship", + "example_sentence_native": "Existe una estrecha interrelación entre la economía y la política.", + "example_sentence_english": "There is a close interrelation between economy and politics.", + "pos": "noun", + "word_frequency": 23583 + }, + { + "word": "islote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "islet;small island", + "example_sentence_native": "El barco se detuvo cerca de un pequeño islote.", + "example_sentence_english": "The boat stopped near a small islet.", + "pos": "noun", + "word_frequency": 23584 + }, + { + "word": "jaleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commotion;fuss;racket", + "example_sentence_native": "Se armó un gran jaleo en la calle.", + "example_sentence_english": "A big commotion broke out in the street.", + "pos": "noun", + "word_frequency": 23587 + }, + { + "word": "jamon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ham", + "example_sentence_native": "Me encanta el jamón serrano.", + "example_sentence_english": "I love Serrano ham.", + "pos": "noun", + "word_frequency": 23588 + }, + { + "word": "lateralmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laterally;sideways", + "example_sentence_native": "El cangrejo se mueve lateralmente.", + "example_sentence_english": "The crab moves sideways.", + "pos": "adverb", + "word_frequency": 23597 + }, + { + "word": "laureado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laureate;acclaimed;decorated", + "example_sentence_native": "El escritor laureado recibió otro premio.", + "example_sentence_english": "The acclaimed writer received another award.", + "pos": "adjective", + "word_frequency": 23598 + }, + { + "word": "laúd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lute", + "example_sentence_native": "El laúd es un instrumento de cuerda antiguo.", + "example_sentence_english": "The lute is an ancient string instrument.", + "pos": "noun", + "word_frequency": 23599 + }, + { + "word": "legar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bequeath;to hand down", + "example_sentence_native": "El abuelo decidió legar su fortuna a sus nietos.", + "example_sentence_english": "The grandfather decided to bequeath his fortune to his grandchildren.", + "pos": "verb", + "word_frequency": 23600 + }, + { + "word": "litografía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lithography", + "example_sentence_native": "La exposición incluía varias litografías antiguas.", + "example_sentence_english": "The exhibition included several old lithographs.", + "pos": "noun", + "word_frequency": 23603 + }, + { + "word": "lolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "young man;lad (informal)", + "example_sentence_native": "Los lolos estaban jugando al fútbol en el parque.", + "example_sentence_english": "The young lads were playing soccer in the park.", + "pos": "noun", + "word_frequency": 23605 + }, + { + "word": "lustro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "five-year period;lustrum", + "example_sentence_native": "Han pasado dos lustros desde que nos conocimos.", + "example_sentence_english": "Two five-year periods have passed since we met.", + "pos": "noun", + "word_frequency": 23607 + }, + { + "word": "maca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maca (plant);Maca (nickname)", + "example_sentence_native": "La maca es una planta andina con propiedades energéticas.", + "example_sentence_english": "Maca is an Andean plant with energetic properties.", + "pos": "noun", + "word_frequency": 23609 + }, + { + "word": "malnutrición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malnutrition", + "example_sentence_native": "La malnutrición es un problema grave en muchas regiones.", + "example_sentence_english": "Malnutrition is a serious problem in many regions.", + "pos": "noun", + "word_frequency": 23612 + }, + { + "word": "marchitar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wither;to fade", + "example_sentence_native": "Las flores empezaron a marchitarse sin agua.", + "example_sentence_english": "The flowers began to wither without water.", + "pos": "verb", + "word_frequency": 23615 + }, + { + "word": "masacrar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to massacre;to slaughter", + "example_sentence_native": "La historia registra cómo masacraron a la población.", + "example_sentence_english": "History records how they massacred the population.", + "pos": "verb", + "word_frequency": 23618 + }, + { + "word": "mimbre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wicker", + "example_sentence_native": "Compramos una cesta de mimbre para el picnic.", + "example_sentence_english": "We bought a wicker basket for the picnic.", + "pos": "noun", + "word_frequency": 23619 + }, + { + "word": "miniserie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miniseries", + "example_sentence_native": "Vimos una miniserie muy interesante el fin de semana.", + "example_sentence_english": "We watched a very interesting miniseries over the weekend.", + "pos": "noun", + "word_frequency": 23620 + }, + { + "word": "monada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cutie;cute thing;charm", + "example_sentence_native": "¡Qué monada de vestido!", + "example_sentence_english": "What a cute dress!", + "pos": "noun", + "word_frequency": 23621 + }, + { + "word": "monográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monographic;specialized", + "example_sentence_native": "Publicaron un número monográfico sobre la historia del arte.", + "example_sentence_english": "They published a monographic issue on art history.", + "pos": "adjective", + "word_frequency": 23622 + }, + { + "word": "morocho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark-haired;dark-skinned (Latin America)", + "example_sentence_native": "Mi primo es morocho y tiene ojos claros.", + "example_sentence_english": "My cousin is dark-haired and has light eyes.", + "pos": "adjective", + "word_frequency": 23624 + }, + { + "word": "métrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metric", + "example_sentence_native": "El sistema métrico decimal es el más usado.", + "example_sentence_english": "The decimal metric system is the most widely used.", + "pos": "adjective", + "word_frequency": 23626 + }, + { + "word": "naturalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "naturalism", + "example_sentence_native": "El naturalismo fue un movimiento literario del siglo XIX.", + "example_sentence_english": "Naturalism was a literary movement of the 19th century.", + "pos": "noun", + "word_frequency": 23627 + }, + { + "word": "newsletter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "newsletter", + "example_sentence_native": "Me suscribí a la newsletter para recibir actualizaciones.", + "example_sentence_english": "I subscribed to the newsletter to receive updates.", + "pos": "noun", + "word_frequency": 23630 + }, + { + "word": "obstruir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obstruct;to block", + "example_sentence_native": "Un árbol caído obstruía el camino.", + "example_sentence_english": "A fallen tree was obstructing the road.", + "pos": "verb", + "word_frequency": 23632 + }, + { + "word": "ocasionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caused;occasioned", + "example_sentence_native": "Los daños ocasionados por la tormenta fueron considerables.", + "example_sentence_english": "The damage caused by the storm was considerable.", + "pos": "adjective", + "word_frequency": 23633 + }, + { + "word": "pacotilla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "junk;trash;shoddy goods", + "example_sentence_native": "No quiero comprar cosas de pacotilla.", + "example_sentence_english": "I don't want to buy shoddy goods.", + "pos": "noun", + "word_frequency": 23635 + }, + { + "word": "paleolítico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Paleolithic", + "example_sentence_native": "En el Paleolítico, los humanos eran cazadores-recolectores.", + "example_sentence_english": "In the Paleolithic, humans were hunter-gatherers.", + "pos": "adjective", + "word_frequency": 23636 + }, + { + "word": "peinar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to comb", + "example_sentence_native": "Necesito peinarme antes de salir.", + "example_sentence_english": "I need to comb my hair before going out.", + "pos": "verb", + "word_frequency": 23637 + }, + { + "word": "pelín", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a little bit;a tiny bit", + "example_sentence_native": "Dame un pelín de azúcar, por favor.", + "example_sentence_english": "Give me a little bit of sugar, please.", + "pos": "noun", + "word_frequency": 23638 + }, + { + "word": "perdonado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forgiven", + "example_sentence_native": "Se sintió perdonado después de su disculpa.", + "example_sentence_english": "He felt forgiven after his apology.", + "pos": "adjective", + "word_frequency": 23639 + }, + { + "word": "perpetuidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perpetuity", + "example_sentence_native": "La perpetuidad de la vida es un concepto filosófico.", + "example_sentence_english": "The perpetuity of life is a philosophical concept.", + "pos": "noun", + "word_frequency": 23640 + }, + { + "word": "perseverar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persevere", + "example_sentence_native": "Debes perseverar para alcanzar tus metas.", + "example_sentence_english": "You must persevere to achieve your goals.", + "pos": "verb", + "word_frequency": 23641 + }, + { + "word": "pibito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little boy (slang)", + "example_sentence_native": "El pibito estaba jugando en el parque.", + "example_sentence_english": "The little boy was playing in the park.", + "pos": "noun", + "word_frequency": 23642 + }, + { + "word": "procreación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "procreation", + "example_sentence_native": "La procreación es esencial para la supervivencia de la especie.", + "example_sentence_english": "Procreation is essential for the survival of the species.", + "pos": "noun", + "word_frequency": 23646 + }, + { + "word": "psicótico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotic", + "example_sentence_native": "El paciente fue diagnosticado con un trastorno psicótico.", + "example_sentence_english": "The patient was diagnosed with a psychotic disorder.", + "pos": "adjective", + "word_frequency": 23647 + }, + { + "word": "psiquis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psyche", + "example_sentence_native": "La psiquis humana es compleja y fascinante.", + "example_sentence_english": "The human psyche is complex and fascinating.", + "pos": "noun", + "word_frequency": 23648 + }, + { + "word": "quiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyst", + "example_sentence_native": "Le extirparon un quiste benigno.", + "example_sentence_english": "They removed a benign cyst from him.", + "pos": "noun", + "word_frequency": 23650 + }, + { + "word": "químicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemically", + "example_sentence_native": "El agua está químicamente pura.", + "example_sentence_english": "The water is chemically pure.", + "pos": "adverb", + "word_frequency": 23651 + }, + { + "word": "raudal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torrent;abundance", + "example_sentence_native": "Un raudal de información inundó la red.", + "example_sentence_english": "A torrent of information flooded the network.", + "pos": "noun", + "word_frequency": 23652 + }, + { + "word": "receptivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receptive", + "example_sentence_native": "Es importante ser receptivo a nuevas ideas.", + "example_sentence_english": "It is important to be receptive to new ideas.", + "pos": "adjective", + "word_frequency": 23654 + }, + { + "word": "reconquistar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconquer", + "example_sentence_native": "Intentaron reconquistar el territorio perdido.", + "example_sentence_english": "They tried to reconquer the lost territory.", + "pos": "verb", + "word_frequency": 23655 + }, + { + "word": "reformador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reformer", + "example_sentence_native": "Fue un gran reformador social.", + "example_sentence_english": "He was a great social reformer.", + "pos": "noun", + "word_frequency": 23656 + }, + { + "word": "refri", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fridge (informal)", + "example_sentence_native": "Guarda la leche en la refri.", + "example_sentence_english": "Put the milk in the fridge.", + "pos": "noun", + "word_frequency": 23657 + }, + { + "word": "remitido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referred;sent", + "example_sentence_native": "El paciente fue remitido a un especialista.", + "example_sentence_english": "The patient was referred to a specialist.", + "pos": "adjective", + "word_frequency": 23658 + }, + { + "word": "remodelado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remodeled", + "example_sentence_native": "La casa fue completamente remodelada.", + "example_sentence_english": "The house was completely remodeled.", + "pos": "adjective", + "word_frequency": 23659 + }, + { + "word": "retórico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rhetorical", + "example_sentence_native": "Hizo una pregunta retórica sin esperar respuesta.", + "example_sentence_english": "He asked a rhetorical question without expecting an answer.", + "pos": "adjective", + "word_frequency": 23662 + }, + { + "word": "revoltoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unruly;mischievous", + "example_sentence_native": "El niño era muy revoltoso en clase.", + "example_sentence_english": "The child was very unruly in class.", + "pos": "adjective", + "word_frequency": 23663 + }, + { + "word": "rezagado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lagging;straggling", + "example_sentence_native": "Los estudiantes rezagados necesitan apoyo adicional.", + "example_sentence_english": "The straggling students need additional support.", + "pos": "adjective", + "word_frequency": 23664 + }, + { + "word": "salinidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "salinity", + "example_sentence_native": "La salinidad del agua del mar es alta.", + "example_sentence_english": "The salinity of seawater is high.", + "pos": "noun", + "word_frequency": 23671 + }, + { + "word": "sebo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tallow;sebum", + "example_sentence_native": "El sebo se usa para hacer velas.", + "example_sentence_english": "Tallow is used to make candles.", + "pos": "noun", + "word_frequency": 23673 + }, + { + "word": "sentimentalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentimentalism", + "example_sentence_native": "Evita caer en el sentimentalismo excesivo.", + "example_sentence_english": "Avoid falling into excessive sentimentalism.", + "pos": "noun", + "word_frequency": 23674 + }, + { + "word": "simpatizar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sympathize;to get along with", + "example_sentence_native": "Es fácil simpatizar con su causa.", + "example_sentence_english": "It's easy to sympathize with their cause.", + "pos": "verb", + "word_frequency": 23679 + }, + { + "word": "sintomatología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symptomatology", + "example_sentence_native": "La sintomatología de la enfermedad es muy variada.", + "example_sentence_english": "The symptomatology of the disease is very varied.", + "pos": "noun", + "word_frequency": 23680 + }, + { + "word": "solterón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old bachelor;confirmed bachelor", + "example_sentence_native": "Mi tío es un solterón empedernido.", + "example_sentence_english": "My uncle is a confirmed bachelor.", + "pos": "noun", + "word_frequency": 23682 + }, + { + "word": "souvenir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "souvenir", + "example_sentence_native": "Compré un souvenir de la Torre Eiffel.", + "example_sentence_english": "I bought a souvenir of the Eiffel Tower.", + "pos": "noun", + "word_frequency": 23683 + }, + { + "word": "subalterno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subordinate;subaltern", + "example_sentence_native": "El personal subalterno debe seguir las instrucciones.", + "example_sentence_english": "The subordinate staff must follow instructions.", + "pos": "adjective", + "word_frequency": 23685 + }, + { + "word": "subcultura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subculture", + "example_sentence_native": "Cada ciudad tiene sus propias subculturas urbanas.", + "example_sentence_english": "Every city has its own urban subcultures.", + "pos": "noun", + "word_frequency": 23686 + }, + { + "word": "subsecuente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsequent", + "example_sentence_native": "Las acciones subsecuentes fueron decisivas.", + "example_sentence_english": "The subsequent actions were decisive.", + "pos": "adjective", + "word_frequency": 23687 + }, + { + "word": "subsistema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsystem", + "example_sentence_native": "El subsistema de refrigeración falló.", + "example_sentence_english": "The cooling subsystem failed.", + "pos": "noun", + "word_frequency": 23688 + }, + { + "word": "subvencionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidized;grant-aided", + "example_sentence_native": "El proyecto fue subvencionado por el gobierno.", + "example_sentence_english": "The project was subsidized by the government.", + "pos": "adjective", + "word_frequency": 23689 + }, + { + "word": "superestrella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superstar", + "example_sentence_native": "La cantante se ha convertido en una superestrella mundial.", + "example_sentence_english": "The singer has become a global superstar.", + "pos": "noun", + "word_frequency": 23690 + }, + { + "word": "sustracción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subtraction;removal;theft", + "example_sentence_native": "La sustracción de fondos fue un delito grave.", + "example_sentence_english": "The subtraction of funds was a serious crime.", + "pos": "noun", + "word_frequency": 23692 + }, + { + "word": "tongo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fix;rigged match;event", + "example_sentence_native": "El partido de boxeo fue un tongo.", + "example_sentence_english": "The boxing match was a fix.", + "pos": "noun", + "word_frequency": 23696 + }, + { + "word": "topográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "topographic", + "example_sentence_native": "Necesitamos un mapa topográfico de la zona.", + "example_sentence_english": "We need a topographic map of the area.", + "pos": "adjective", + "word_frequency": 23698 + }, + { + "word": "transcribir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transcribe", + "example_sentence_native": "Debes transcribir la entrevista palabra por palabra.", + "example_sentence_english": "You must transcribe the interview word for word.", + "pos": "verb", + "word_frequency": 23699 + }, + { + "word": "transpiración", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perspiration;transpiration", + "example_sentence_native": "La transpiración es un mecanismo natural del cuerpo.", + "example_sentence_english": "Perspiration is a natural mechanism of the body.", + "pos": "noun", + "word_frequency": 23700 + }, + { + "word": "traslación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "translation (movement);transfer;relocation", + "example_sentence_native": "La traslación de la Tierra alrededor del Sol dura un año.", + "example_sentence_english": "The Earth's translation around the Sun takes one year.", + "pos": "noun", + "word_frequency": 23701 + }, + { + "word": "tribulación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tribulation;affliction", + "example_sentence_native": "Pasaron por muchas tribulaciones antes de alcanzar la paz.", + "example_sentence_english": "They went through many tribulations before achieving peace.", + "pos": "noun", + "word_frequency": 23702 + }, + { + "word": "trocito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small piece;little bit", + "example_sentence_native": "Dame un trocito de pastel, por favor.", + "example_sentence_english": "Give me a small piece of cake, please.", + "pos": "noun", + "word_frequency": 23703 + }, + { + "word": "trompo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spinning top", + "example_sentence_native": "El niño jugaba con su trompo en el patio.", + "example_sentence_english": "The boy was playing with his spinning top in the yard.", + "pos": "noun", + "word_frequency": 23704 + }, + { + "word": "utilitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utilitarian;practical;utility (car)", + "example_sentence_native": "Compró un coche utilitario para la ciudad.", + "example_sentence_english": "He bought a utility car for the city.", + "pos": "adjective", + "word_frequency": 23707 + }, + { + "word": "vedado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forbidden;prohibited;restricted", + "example_sentence_native": "El acceso a esa zona está vedado al público.", + "example_sentence_english": "Access to that area is forbidden to the public.", + "pos": "adjective", + "word_frequency": 23708 + }, + { + "word": "vengativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vengeful;vindictive", + "example_sentence_native": "Su actitud vengativa le trajo muchos problemas.", + "example_sentence_english": "His vengeful attitude brought him many problems.", + "pos": "adjective", + "word_frequency": 23710 + }, + { + "word": "virreinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viceregal;viceroyal", + "example_sentence_native": "La arquitectura virreinal es impresionante en esa ciudad.", + "example_sentence_english": "The viceregal architecture is impressive in that city.", + "pos": "adjective", + "word_frequency": 23715 + }, + { + "word": "virulencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virulence", + "example_sentence_native": "La virulencia del nuevo virus es preocupante.", + "example_sentence_english": "The virulence of the new virus is concerning.", + "pos": "noun", + "word_frequency": 23716 + }, + { + "word": "vítor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurrah;cheer", + "example_sentence_native": "La multitud gritó \"¡Vítor!\" al ver al campeón.", + "example_sentence_english": "The crowd shouted \"Hurrah!\" upon seeing the champion.", + "pos": "noun", + "word_frequency": 23720 + }, + { + "word": "yaya", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandma;granny", + "example_sentence_native": "Mi yaya siempre me cuenta historias.", + "example_sentence_english": "My grandma always tells me stories.", + "pos": "noun", + "word_frequency": 23723 + }, + { + "word": "abaratar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lower the price;to make cheaper", + "example_sentence_native": "Necesitamos abaratar los costes de producción.", + "example_sentence_english": "We need to lower the production costs.", + "pos": "verb", + "word_frequency": 23729 + }, + { + "word": "acaparar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hoard;to monopolize", + "example_sentence_native": "No intentes acaparar toda la atención.", + "example_sentence_english": "Don't try to monopolize all the attention.", + "pos": "verb", + "word_frequency": 23730 + }, + { + "word": "advocación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advocation;dedication (religious context)", + "example_sentence_native": "La Virgen del Pilar es una advocación mariana.", + "example_sentence_english": "The Virgin of Pilar is a Marian advocation.", + "pos": "noun", + "word_frequency": 23731 + }, + { + "word": "agar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agar", + "example_sentence_native": "Usamos agar para cultivar bacterias en el laboratorio.", + "example_sentence_english": "We use agar to grow bacteria in the laboratory.", + "pos": "noun", + "word_frequency": 23733 + }, + { + "word": "agobiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelmed;stressed", + "example_sentence_native": "Se siente agobiado por la cantidad de trabajo.", + "example_sentence_english": "He feels overwhelmed by the amount of work.", + "pos": "adjective", + "word_frequency": 23734 + }, + { + "word": "alarmado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alarmed", + "example_sentence_native": "Estaba muy alarmado por las noticias.", + "example_sentence_english": "He was very alarmed by the news.", + "pos": "adjective", + "word_frequency": 23736 + }, + { + "word": "albo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "white;pure white", + "example_sentence_native": "La nieve cubría el paisaje con un manto albo.", + "example_sentence_english": "The snow covered the landscape with a pure white blanket.", + "pos": "adjective", + "word_frequency": 23738 + }, + { + "word": "alevosía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treachery;perfidy", + "example_sentence_native": "Fue condenado por asesinato con alevosía.", + "example_sentence_english": "He was convicted of murder with treachery.", + "pos": "noun", + "word_frequency": 23739 + }, + { + "word": "alfil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bishop (chess piece)", + "example_sentence_native": "El alfil se mueve en diagonal en el ajedrez.", + "example_sentence_english": "The bishop moves diagonally in chess.", + "pos": "noun", + "word_frequency": 23740 + }, + { + "word": "algarabía", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hubbub;din;gibberish", + "example_sentence_native": "Había una gran algarabía en el mercado.", + "example_sentence_english": "There was a great hubbub in the market.", + "pos": "noun", + "word_frequency": 23741 + }, + { + "word": "alumbrar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illuminate;to light up;to give birth", + "example_sentence_native": "La luna llena alumbra el camino.", + "example_sentence_english": "The full moon illuminates the path.", + "pos": "verb", + "word_frequency": 23743 + }, + { + "word": "amasar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to knead;to amass", + "example_sentence_native": "Hay que amasar la masa del pan durante diez minutos.", + "example_sentence_english": "You have to knead the bread dough for ten minutes.", + "pos": "verb", + "word_frequency": 23744 + }, + { + "word": "amplificación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amplification", + "example_sentence_native": "La amplificación del sonido era necesaria para el concierto.", + "example_sentence_english": "Sound amplification was necessary for the concert.", + "pos": "noun", + "word_frequency": 23745 + }, + { + "word": "animosidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "animosity;hostility", + "example_sentence_native": "Había una clara animosidad entre los dos equipos.", + "example_sentence_english": "There was clear animosity between the two teams.", + "pos": "noun", + "word_frequency": 23746 + }, + { + "word": "anotador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scorer;annotator", + "example_sentence_native": "El anotador registró todos los puntos del partido.", + "example_sentence_english": "The scorer recorded all the points of the game.", + "pos": "noun", + "word_frequency": 23747 + }, + { + "word": "antropológico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropological", + "example_sentence_native": "Realizó un estudio antropológico sobre la tribu.", + "example_sentence_english": "He conducted an anthropological study on the tribe.", + "pos": "adjective", + "word_frequency": 23748 + }, + { + "word": "arañazo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scratch;claw mark", + "example_sentence_native": "El gato me hizo un arañazo en el brazo.", + "example_sentence_english": "The cat gave me a scratch on the arm.", + "pos": "noun", + "word_frequency": 23751 + }, + { + "word": "ario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Aryan", + "example_sentence_native": "La teoría de la raza aria es pseudocientífica.", + "example_sentence_english": "The theory of the Aryan race is pseudoscientific.", + "pos": "adjective", + "word_frequency": 23753 + }, + { + "word": "ateniense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Athenian", + "example_sentence_native": "La democracia ateniense es un modelo histórico.", + "example_sentence_english": "Athenian democracy is a historical model.", + "pos": "adjective", + "word_frequency": 23755 + }, + { + "word": "autobiográfico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autobiographical", + "example_sentence_native": "Escribió una novela con elementos autobiográficos.", + "example_sentence_english": "He wrote a novel with autobiographical elements.", + "pos": "adjective", + "word_frequency": 23756 + }, + { + "word": "azor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goshawk", + "example_sentence_native": "El azor es un ave rapaz.", + "example_sentence_english": "The goshawk is a bird of prey.", + "pos": "noun", + "word_frequency": 23758 + }, + { + "word": "añejo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aged;old (wine;cheese;etc.)", + "example_sentence_native": "Este vino añejo tiene un sabor excelente.", + "example_sentence_english": "This aged wine has an excellent flavor.", + "pos": "adjective", + "word_frequency": 23759 + }, + { + "word": "babosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slug", + "example_sentence_native": "La babosa dejó un rastro brillante en el camino.", + "example_sentence_english": "The slug left a shiny trail on the path.", + "pos": "noun", + "word_frequency": 23760 + }, + { + "word": "baldío", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fallow;vacant", + "example_sentence_native": "El terreno baldío será convertido en un parque.", + "example_sentence_english": "The vacant lot will be converted into a park.", + "pos": "adjective", + "word_frequency": 23761 + }, + { + "word": "bloguero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blogger", + "example_sentence_native": "El bloguero escribió un artículo interesante sobre viajes.", + "example_sentence_english": "The blogger wrote an interesting article about travel.", + "pos": "noun", + "word_frequency": 23771 + }, + { + "word": "bozal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muzzle", + "example_sentence_native": "El perro necesita un bozal para ir al veterinario.", + "example_sentence_english": "The dog needs a muzzle to go to the vet.", + "pos": "noun", + "word_frequency": 23776 + }, + { + "word": "brocha", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brush (for painting)", + "example_sentence_native": "Usa una brocha grande para pintar la pared.", + "example_sentence_english": "Use a large brush to paint the wall.", + "pos": "noun", + "word_frequency": 23778 + }, + { + "word": "bíceps", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biceps", + "example_sentence_native": "Hizo ejercicios para fortalecer sus bíceps.", + "example_sentence_english": "He did exercises to strengthen his biceps.", + "pos": "noun", + "word_frequency": 23780 + }, + { + "word": "cacerolazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pot-banging protest", + "example_sentence_native": "Hubo un cacerolazo en protesta por las nuevas medidas.", + "example_sentence_english": "There was a pot-banging protest against the new measures.", + "pos": "noun", + "word_frequency": 23782 + }, + { + "word": "cafetero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coffee grower;producer", + "example_sentence_native": "Colombia es un país cafetero por excelencia.", + "example_sentence_english": "Colombia is a coffee-producing country par excellence.", + "pos": "noun", + "word_frequency": 23784 + }, + { + "word": "cardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thistle", + "example_sentence_native": "El cardo tiene espinas que protegen sus flores.", + "example_sentence_english": "The thistle has thorns that protect its flowers.", + "pos": "noun", + "word_frequency": 23785 + }, + { + "word": "carroña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carrion", + "example_sentence_native": "Los buitres se alimentan de carroña.", + "example_sentence_english": "Vultures feed on carrion.", + "pos": "noun", + "word_frequency": 23787 + }, + { + "word": "castrista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Castroist;pro-Castro", + "example_sentence_native": "El gobierno adoptó una postura castrista.", + "example_sentence_english": "The government adopted a Castroist stance.", + "pos": "adjective", + "word_frequency": 23788 + }, + { + "word": "certidumbre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainty", + "example_sentence_native": "No hay certidumbre sobre el futuro.", + "example_sentence_english": "There is no certainty about the future.", + "pos": "noun", + "word_frequency": 23793 + }, + { + "word": "ceviche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ceviche", + "example_sentence_native": "El ceviche peruano es delicioso.", + "example_sentence_english": "Peruvian ceviche is delicious.", + "pos": "noun", + "word_frequency": 23794 + }, + { + "word": "choclo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corn on the cob (Latin America)", + "example_sentence_native": "Me encanta el choclo con queso.", + "example_sentence_english": "I love corn on the cob with cheese.", + "pos": "noun", + "word_frequency": 23797 + }, + { + "word": "clausurar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to close;to shut down", + "example_sentence_native": "Decidieron clausurar el edificio por razones de seguridad.", + "example_sentence_english": "They decided to close the building for safety reasons.", + "pos": "verb", + "word_frequency": 23800 + }, + { + "word": "comercializado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercialized;marketed", + "example_sentence_native": "El producto ya está comercializado en varios países.", + "example_sentence_english": "The product is already commercialized in several countries.", + "pos": "adjective", + "word_frequency": 23801 + }, + { + "word": "complementado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complemented;supplemented", + "example_sentence_native": "Su dieta está complementada con vitaminas.", + "example_sentence_english": "Her diet is complemented with vitamins.", + "pos": "adjective", + "word_frequency": 23802 + }, + { + "word": "complexión", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "build;physique;complexion", + "example_sentence_native": "Tiene una complexión atlética.", + "example_sentence_english": "He has an athletic build.", + "pos": "noun", + "word_frequency": 23803 + }, + { + "word": "condal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "county;comital", + "example_sentence_native": "La familia condal vivía en el castillo.", + "example_sentence_english": "The comital family lived in the castle.", + "pos": "adjective", + "word_frequency": 23805 + }, + { + "word": "condicionante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conditioning;determining;influencing", + "example_sentence_native": "El factor económico es un condicionante importante.", + "example_sentence_english": "The economic factor is an important conditioning factor.", + "pos": "adjective", + "word_frequency": 23806 + }, + { + "word": "condon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condom", + "example_sentence_native": "Es importante usar condón para prevenir enfermedades.", + "example_sentence_english": "It's important to use a condom to prevent diseases.", + "pos": "noun", + "word_frequency": 23807 + }, + { + "word": "conflictividad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conflict;conflictivity", + "example_sentence_native": "La conflictividad social ha aumentado en la región.", + "example_sentence_english": "Social conflict has increased in the region.", + "pos": "noun", + "word_frequency": 23808 + }, + { + "word": "constatación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "verification;confirmation;ascertainment", + "example_sentence_native": "La constatación de los hechos es crucial para el caso.", + "example_sentence_english": "The ascertainment of the facts is crucial for the case.", + "pos": "noun", + "word_frequency": 23809 + }, + { + "word": "continuacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "continuation;sequel", + "example_sentence_native": "La película tendrá una continuación el próximo año.", + "example_sentence_english": "The movie will have a continuation next year.", + "pos": "noun", + "word_frequency": 23810 + }, + { + "word": "contracorriente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upstream;against the current", + "example_sentence_native": "Nadar contracorriente es agotador.", + "example_sentence_english": "Swimming against the current is exhausting.", + "pos": "noun", + "word_frequency": 23811 + }, + { + "word": "cordel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "string;twine", + "example_sentence_native": "Ató el paquete con un cordel.", + "example_sentence_english": "He tied the package with a string.", + "pos": "noun", + "word_frequency": 23813 + }, + { + "word": "correría", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "raid;escapade;spree", + "example_sentence_native": "Los piratas hicieron una correría por la costa.", + "example_sentence_english": "The pirates made a raid along the coast.", + "pos": "noun", + "word_frequency": 23814 + }, + { + "word": "cotizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quoted;listed (on stock exchange);valued", + "example_sentence_native": "Las acciones de la empresa están muy cotizadas.", + "example_sentence_english": "The company's shares are highly valued.", + "pos": "adjective", + "word_frequency": 23815 + }, + { + "word": "cremoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "creamy", + "example_sentence_native": "El helado es muy cremoso.", + "example_sentence_english": "The ice cream is very creamy.", + "pos": "adjective", + "word_frequency": 23817 + }, + { + "word": "deponer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to depose;to remove from office;to testify", + "example_sentence_native": "El testigo tuvo que deponer ante el tribunal.", + "example_sentence_english": "The witness had to testify before the court.", + "pos": "verb", + "word_frequency": 23824 + }, + { + "word": "desactivación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deactivation;disabling", + "example_sentence_native": "La desactivación de la alarma fue exitosa.", + "example_sentence_english": "The deactivation of the alarm was successful.", + "pos": "noun", + "word_frequency": 23825 + }, + { + "word": "desolador", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desolate;heartbreaking;bleak", + "example_sentence_native": "La vista del pueblo después del terremoto era desoladora.", + "example_sentence_english": "The sight of the town after the earthquake was desolate.", + "pos": "adjective", + "word_frequency": 23826 + }, + { + "word": "despachar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispatch;to send off;to deal with;to serve", + "example_sentence_native": "Necesito despachar estos paquetes antes del mediodía.", + "example_sentence_english": "I need to dispatch these packages before noon.", + "pos": "verb", + "word_frequency": 23827 + }, + { + "word": "desquiciado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unhinged;deranged;frantic", + "example_sentence_native": "Después de la noticia, se sintió completamente desquiciado.", + "example_sentence_english": "After the news, he felt completely unhinged.", + "pos": "adjective", + "word_frequency": 23828 + }, + { + "word": "dicción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diction;articulation", + "example_sentence_native": "Su dicción es impecable, se le entiende perfectamente.", + "example_sentence_english": "His diction is impeccable, he is understood perfectly.", + "pos": "noun", + "word_frequency": 23829 + }, + { + "word": "doctrinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doctrinal", + "example_sentence_native": "El debate se centró en aspectos doctrinales.", + "example_sentence_english": "The debate focused on doctrinal aspects.", + "pos": "adjective", + "word_frequency": 23830 + }, + { + "word": "educadamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politely;courteously", + "example_sentence_native": "Respondió educadamente a todas las preguntas.", + "example_sentence_english": "He answered all the questions politely.", + "pos": "adverb", + "word_frequency": 23831 + }, + { + "word": "encuadrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frame;to fit in;to classify", + "example_sentence_native": "La foto está bien encuadrada.", + "example_sentence_english": "The photo is well framed.", + "pos": "verb", + "word_frequency": 23836 + }, + { + "word": "ensangrentado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bloody;bloodstained", + "example_sentence_native": "Encontraron la camisa ensangrentada.", + "example_sentence_english": "They found the bloody shirt.", + "pos": "adjective", + "word_frequency": 23838 + }, + { + "word": "escarcha", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frost", + "example_sentence_native": "La escarcha cubría los campos esta mañana.", + "example_sentence_english": "The frost covered the fields this morning.", + "pos": "noun", + "word_frequency": 23841 + }, + { + "word": "esclavizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enslaved", + "example_sentence_native": "El pueblo fue esclavizado por el invasor.", + "example_sentence_english": "The people were enslaved by the invader.", + "pos": "adjective", + "word_frequency": 23842 + }, + { + "word": "esguince", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sprain", + "example_sentence_native": "Se hizo un esguince de tobillo jugando al fútbol.", + "example_sentence_english": "He got an ankle sprain playing soccer.", + "pos": "noun", + "word_frequency": 23844 + }, + { + "word": "espantapájaros", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scarecrow", + "example_sentence_native": "El espantapájaros protegía los cultivos.", + "example_sentence_english": "The scarecrow protected the crops.", + "pos": "noun", + "word_frequency": 23845 + }, + { + "word": "estatuilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statuette", + "example_sentence_native": "Ganó una estatuilla de oro por su actuación.", + "example_sentence_english": "He won a golden statuette for his performance.", + "pos": "noun", + "word_frequency": 23846 + }, + { + "word": "estrellita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little star", + "example_sentence_native": "La niña dibujó una estrellita en su cuaderno.", + "example_sentence_english": "The girl drew a little star in her notebook.", + "pos": "noun", + "word_frequency": 23847 + }, + { + "word": "estropear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spoil", + "example_sentence_native": "No quiero estropear la sorpresa.", + "example_sentence_english": "I don't want to spoil the surprise.", + "pos": "verb", + "word_frequency": 23848 + }, + { + "word": "estúpidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stupidly", + "example_sentence_native": "Actuó estúpidamente en esa situación.", + "example_sentence_english": "He acted stupidly in that situation.", + "pos": "adverb", + "word_frequency": 23849 + }, + { + "word": "extirpar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to extirpate", + "example_sentence_native": "Tuvieron que extirpar el tumor.", + "example_sentence_english": "They had to extirpate the tumor.", + "pos": "verb", + "word_frequency": 23851 + }, + { + "word": "fotón", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "photon", + "example_sentence_native": "Un fotón es una partícula elemental de luz.", + "example_sentence_english": "A photon is an elementary particle of light.", + "pos": "noun", + "word_frequency": 23859 + }, + { + "word": "fríamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coldly", + "example_sentence_native": "Respondió fríamente a la pregunta.", + "example_sentence_english": "He responded coldly to the question.", + "pos": "adverb", + "word_frequency": 23860 + }, + { + "word": "galgo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greyhound", + "example_sentence_native": "El galgo corrió muy rápido en la carrera.", + "example_sentence_english": "The greyhound ran very fast in the race.", + "pos": "noun", + "word_frequency": 23861 + }, + { + "word": "galope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallop", + "example_sentence_native": "El caballo iba a todo galope por el campo.", + "example_sentence_english": "The horse was at a full gallop across the field.", + "pos": "noun", + "word_frequency": 23862 + }, + { + "word": "gotita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little drop", + "example_sentence_native": "Cayó una gotita de lluvia en mi nariz.", + "example_sentence_english": "A little drop of rain fell on my nose.", + "pos": "noun", + "word_frequency": 23868 + }, + { + "word": "guindo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sour cherry tree", + "example_sentence_native": "El guindo del jardín está lleno de frutos.", + "example_sentence_english": "The sour cherry tree in the garden is full of fruit.", + "pos": "noun", + "word_frequency": 23871 + }, + { + "word": "hermanastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepbrother", + "example_sentence_native": "Mi hermanastro es mayor que yo.", + "example_sentence_english": "My stepbrother is older than me.", + "pos": "noun", + "word_frequency": 23874 + }, + { + "word": "hervido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boiled", + "example_sentence_native": "Los huevos hervidos son un desayuno saludable.", + "example_sentence_english": "Boiled eggs are a healthy breakfast.", + "pos": "adjective", + "word_frequency": 23876 + }, + { + "word": "incrustado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embedded", + "example_sentence_native": "El diamante estaba incrustado en el anillo.", + "example_sentence_english": "The diamond was embedded in the ring.", + "pos": "adjective", + "word_frequency": 23882 + }, + { + "word": "indiscutiblemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undisputably", + "example_sentence_native": "Indiscutiblemente, es la mejor opción.", + "example_sentence_english": "Undisputably, it is the best option.", + "pos": "adverb", + "word_frequency": 23883 + }, + { + "word": "inferencia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inference", + "example_sentence_native": "Su conclusión fue una inferencia lógica de los datos.", + "example_sentence_english": "His conclusion was a logical inference from the data.", + "pos": "noun", + "word_frequency": 23884 + }, + { + "word": "infrecuente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infrequent", + "example_sentence_native": "Es un fenómeno infrecuente en esta región.", + "example_sentence_english": "It is an infrequent phenomenon in this region.", + "pos": "adjective", + "word_frequency": 23885 + }, + { + "word": "institucionalización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "institutionalization", + "example_sentence_native": "La institucionalización de nuevas políticas lleva tiempo.", + "example_sentence_english": "The institutionalization of new policies takes time.", + "pos": "noun", + "word_frequency": 23886 + }, + { + "word": "intervencionista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interventionist", + "example_sentence_native": "El gobierno adoptó una postura intervencionista en la economía.", + "example_sentence_english": "The government adopted an interventionist stance in the economy.", + "pos": "adjective", + "word_frequency": 23887 + }, + { + "word": "intransigencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intransigence", + "example_sentence_native": "Su intransigencia dificultó las negociaciones.", + "example_sentence_english": "His intransigence made negotiations difficult.", + "pos": "noun", + "word_frequency": 23888 + }, + { + "word": "invasivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasive", + "example_sentence_native": "La cirugía fue mínimamente invasiva.", + "example_sentence_english": "The surgery was minimally invasive.", + "pos": "adjective", + "word_frequency": 23889 + }, + { + "word": "irracionalidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrationality", + "example_sentence_native": "La irracionalidad de sus argumentos era evidente.", + "example_sentence_english": "The irrationality of his arguments was evident.", + "pos": "noun", + "word_frequency": 23890 + }, + { + "word": "irrenunciable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inalienable", + "example_sentence_native": "Los derechos humanos son irrenunciables.", + "example_sentence_english": "Human rights are inalienable.", + "pos": "adjective", + "word_frequency": 23891 + }, + { + "word": "jactar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boast", + "example_sentence_native": "No le gusta jactarse de sus logros.", + "example_sentence_english": "He doesn't like to boast about his achievements.", + "pos": "verb", + "word_frequency": 23894 + }, + { + "word": "jonrón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home run", + "example_sentence_native": "El bateador conectó un jonrón en la novena entrada.", + "example_sentence_english": "The batter hit a home run in the ninth inning.", + "pos": "noun", + "word_frequency": 23898 + }, + { + "word": "joyero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jeweler", + "example_sentence_native": "Fui al joyero para reparar mi reloj.", + "example_sentence_english": "I went to the jeweler to repair my watch.", + "pos": "noun", + "word_frequency": 23900 + }, + { + "word": "juguetón", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playful", + "example_sentence_native": "El cachorro es muy juguetón.", + "example_sentence_english": "The puppy is very playful.", + "pos": "adjective", + "word_frequency": 23902 + }, + { + "word": "kernel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kernel", + "example_sentence_native": "El kernel es el núcleo del sistema operativo.", + "example_sentence_english": "The kernel is the core of the operating system.", + "pos": "noun", + "word_frequency": 23905 + }, + { + "word": "labrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carved", + "example_sentence_native": "La madera estaba finamente labrada.", + "example_sentence_english": "The wood was finely carved.", + "pos": "adjective", + "word_frequency": 23907 + }, + { + "word": "lactante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infant", + "example_sentence_native": "El lactante necesita ser alimentado cada pocas horas.", + "example_sentence_english": "The infant needs to be fed every few hours.", + "pos": "noun", + "word_frequency": 23908 + }, + { + "word": "laja", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flagstone", + "example_sentence_native": "El camino estaba cubierto de lajas de piedra.", + "example_sentence_english": "The path was covered with flagstones.", + "pos": "noun", + "word_frequency": 23910 + }, + { + "word": "lanzadera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shuttle", + "example_sentence_native": "La lanzadera espacial despegó con éxito.", + "example_sentence_english": "The space shuttle took off successfully.", + "pos": "noun", + "word_frequency": 23911 + }, + { + "word": "legalizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legalized", + "example_sentence_native": "El uso de cannabis medicinal ha sido legalizado en algunos estados.", + "example_sentence_english": "The use of medicinal cannabis has been legalized in some states.", + "pos": "adjective", + "word_frequency": 23914 + }, + { + "word": "leproso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leper", + "example_sentence_native": "En la antigüedad, los leprosos eran aislados.", + "example_sentence_english": "In ancient times, lepers were isolated.", + "pos": "noun", + "word_frequency": 23915 + }, + { + "word": "libelo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libel", + "example_sentence_native": "Fue acusado de escribir un libelo difamatorio.", + "example_sentence_english": "He was accused of writing a defamatory libel.", + "pos": "noun", + "word_frequency": 23916 + }, + { + "word": "maple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maple", + "example_sentence_native": "El jarabe de maple es muy popular en Canadá.", + "example_sentence_english": "Maple syrup is very popular in Canada.", + "pos": "noun", + "word_frequency": 23918 + }, + { + "word": "metropolis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolis", + "example_sentence_native": "La ciudad se ha convertido en una gran metrópolis.", + "example_sentence_english": "The city has become a large metropolis.", + "pos": "noun", + "word_frequency": 23928 + }, + { + "word": "million", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "million", + "example_sentence_native": "Hay un millón de estrellas en el cielo.", + "example_sentence_english": "There are a million stars in the sky.", + "pos": "noun", + "word_frequency": 23930 + }, + { + "word": "mimado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spoiled;pampered", + "example_sentence_native": "Es un niño muy mimado.", + "example_sentence_english": "He is a very spoiled child.", + "pos": "adjective", + "word_frequency": 23931 + }, + { + "word": "monday", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Monday", + "example_sentence_native": "El lunes tengo una reunión importante.", + "example_sentence_english": "On Monday I have an important meeting.", + "pos": "noun", + "word_frequency": 23932 + }, + { + "word": "nutria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "otter", + "example_sentence_native": "Vimos una nutria nadando en el río.", + "example_sentence_english": "We saw an otter swimming in the river.", + "pos": "noun", + "word_frequency": 23939 + }, + { + "word": "oficialidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official status;officialdom", + "example_sentence_native": "La oficialidad del idioma es importante.", + "example_sentence_english": "The official status of the language is important.", + "pos": "noun", + "word_frequency": 23941 + }, + { + "word": "paladín", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paladin;champion", + "example_sentence_native": "Se convirtió en el paladín de los derechos humanos.", + "example_sentence_english": "He became the champion of human rights.", + "pos": "noun", + "word_frequency": 23945 + }, + { + "word": "paleontología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paleontology", + "example_sentence_native": "Estudió paleontología en la universidad.", + "example_sentence_english": "She studied paleontology at the university.", + "pos": "noun", + "word_frequency": 23946 + }, + { + "word": "palmada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pat;slap", + "example_sentence_native": "Le dio una palmada en la espalda.", + "example_sentence_english": "He gave him a pat on the back.", + "pos": "noun", + "word_frequency": 23947 + }, + { + "word": "paternalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paternalistic", + "example_sentence_native": "Su actitud era demasiado paternalista.", + "example_sentence_english": "His attitude was too paternalistic.", + "pos": "adjective", + "word_frequency": 23948 + }, + { + "word": "pederasta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pederast", + "example_sentence_native": "La policía arrestó al pederasta.", + "example_sentence_english": "The police arrested the pederast.", + "pos": "noun", + "word_frequency": 23950 + }, + { + "word": "pediátrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pediatric", + "example_sentence_native": "Necesitamos una consulta pediátrica.", + "example_sentence_english": "We need a pediatric consultation.", + "pos": "adjective", + "word_frequency": 23951 + }, + { + "word": "penalizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penalize", + "example_sentence_native": "El árbitro decidió penalizar al equipo.", + "example_sentence_english": "The referee decided to penalize the team.", + "pos": "verb", + "word_frequency": 23952 + }, + { + "word": "piercing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piercing", + "example_sentence_native": "Se hizo un nuevo piercing en la oreja.", + "example_sentence_english": "She got a new piercing in her ear.", + "pos": "noun", + "word_frequency": 23955 + }, + { + "word": "pirate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pirate", + "example_sentence_native": "Los piratas atacaron el barco.", + "example_sentence_english": "The pirates attacked the ship.", + "pos": "noun", + "word_frequency": 23956 + }, + { + "word": "plaguicida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pesticide", + "example_sentence_native": "El uso de plaguicidas está regulado.", + "example_sentence_english": "The use of pesticides is regulated.", + "pos": "noun", + "word_frequency": 23957 + }, + { + "word": "planificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planned", + "example_sentence_native": "El evento fue cuidadosamente planificado.", + "example_sentence_english": "The event was carefully planned.", + "pos": "adjective", + "word_frequency": 23958 + }, + { + "word": "pluralista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pluralist", + "example_sentence_native": "Es un enfoque pluralista que considera múltiples perspectivas.", + "example_sentence_english": "It's a pluralist approach that considers multiple perspectives.", + "pos": "adjective", + "word_frequency": 23960 + }, + { + "word": "popularizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to popularize", + "example_sentence_native": "Quieren popularizar el uso de bicicletas en la ciudad.", + "example_sentence_english": "They want to popularize the use of bicycles in the city.", + "pos": "verb", + "word_frequency": 23961 + }, + { + "word": "preaviso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prior notice", + "example_sentence_native": "Debes dar un preaviso de dos semanas antes de renunciar.", + "example_sentence_english": "You must give two weeks' prior notice before resigning.", + "pos": "noun", + "word_frequency": 23963 + }, + { + "word": "preceptor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preceptor", + "example_sentence_native": "El preceptor guio a los estudiantes en su investigación.", + "example_sentence_english": "The preceptor guided the students in their research.", + "pos": "noun", + "word_frequency": 23964 + }, + { + "word": "preponderancia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preponderance", + "example_sentence_native": "La preponderancia de la evidencia apunta a su culpabilidad.", + "example_sentence_english": "The preponderance of the evidence points to his guilt.", + "pos": "noun", + "word_frequency": 23965 + }, + { + "word": "prevenido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forewarned", + "example_sentence_native": "Es mejor estar prevenido ante cualquier eventualidad.", + "example_sentence_english": "It's better to be forewarned against any eventuality.", + "pos": "adjective", + "word_frequency": 23966 + }, + { + "word": "provinciano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provincial", + "example_sentence_native": "Tiene un aire un poco provinciano, pero es muy amable.", + "example_sentence_english": "He has a somewhat provincial air, but he is very kind.", + "pos": "adjective", + "word_frequency": 23968 + }, + { + "word": "quiniela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "football pool", + "example_sentence_native": "Hizo una quiniela para el partido de fútbol.", + "example_sentence_english": "He made a football pool bet for the soccer match.", + "pos": "noun", + "word_frequency": 23973 + }, + { + "word": "raciocinio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reasoning", + "example_sentence_native": "Su raciocinio lógico le permitió resolver el problema.", + "example_sentence_english": "His logical reasoning allowed him to solve the problem.", + "pos": "noun", + "word_frequency": 23974 + }, + { + "word": "raton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mouse", + "example_sentence_native": "El ratón se escondió detrás del sofá.", + "example_sentence_english": "The mouse hid behind the sofa.", + "pos": "noun", + "word_frequency": 23976 + }, + { + "word": "refriega", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skirmish", + "example_sentence_native": "Hubo una pequeña refriega entre los manifestantes y la policía.", + "example_sentence_english": "There was a small skirmish between the protesters and the police.", + "pos": "noun", + "word_frequency": 23977 + }, + { + "word": "rememorar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to recall", + "example_sentence_native": "Le gusta rememorar los viejos tiempos con sus amigos.", + "example_sentence_english": "He likes to recall the old times with his friends.", + "pos": "verb", + "word_frequency": 23979 + }, + { + "word": "repisa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shelf", + "example_sentence_native": "Puso los libros en la repisa de la chimenea.", + "example_sentence_english": "He put the books on the fireplace shelf.", + "pos": "noun", + "word_frequency": 23980 + }, + { + "word": "riñon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kidney", + "example_sentence_native": "Los riñones son órganos vitales para filtrar la sangre.", + "example_sentence_english": "Kidneys are vital organs for filtering blood.", + "pos": "noun", + "word_frequency": 23982 + }, + { + "word": "ronco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoarse", + "example_sentence_native": "Su voz estaba ronca después de gritar tanto.", + "example_sentence_english": "His voice was hoarse after shouting so much.", + "pos": "adjective", + "word_frequency": 23984 + }, + { + "word": "sado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sadism", + "example_sentence_native": "El término \"sado\" se refiere a prácticas relacionadas con el sadismo.", + "example_sentence_english": "The term \"sado\" refers to practices related to sadism.", + "pos": "noun", + "word_frequency": 23988 + }, + { + "word": "sanear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sanitize", + "example_sentence_native": "Necesitamos sanear las finanzas de la empresa.", + "example_sentence_english": "We need to sanitize the company's finances.", + "pos": "verb", + "word_frequency": 23990 + }, + { + "word": "saña", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fury", + "example_sentence_native": "Atacó con gran saña a su oponente.", + "example_sentence_english": "He attacked his opponent with great fury.", + "pos": "noun", + "word_frequency": 23992 + }, + { + "word": "secuencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequential", + "example_sentence_native": "Los pasos deben seguir un orden secuencial.", + "example_sentence_english": "The steps must follow a sequential order.", + "pos": "adjective", + "word_frequency": 23994 + }, + { + "word": "silenciado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silenced", + "example_sentence_native": "El micrófono estaba silenciado durante la reunión.", + "example_sentence_english": "The microphone was silenced during the meeting.", + "pos": "adjective", + "word_frequency": 23998 + }, + { + "word": "sosiego", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "calm;tranquility", + "example_sentence_native": "Buscaba el sosiego en la naturaleza.", + "example_sentence_english": "He sought tranquility in nature.", + "pos": "noun", + "word_frequency": 24001 + }, + { + "word": "soso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bland;dull", + "example_sentence_native": "La comida estaba un poco sosa.", + "example_sentence_english": "The food was a bit bland.", + "pos": "adjective", + "word_frequency": 24002 + }, + { + "word": "sospechosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspiciously", + "example_sentence_native": "Se comportó sospechosamente durante la reunión.", + "example_sentence_english": "He behaved suspiciously during the meeting.", + "pos": "adverb", + "word_frequency": 24003 + }, + { + "word": "subproducto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "byproduct", + "example_sentence_native": "El gas es un subproducto de la producción de petróleo.", + "example_sentence_english": "Gas is a byproduct of oil production.", + "pos": "noun", + "word_frequency": 24004 + }, + { + "word": "suplicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torment;ordeal", + "example_sentence_native": "Esperar los resultados fue un verdadero suplicio.", + "example_sentence_english": "Waiting for the results was a real torment.", + "pos": "noun", + "word_frequency": 24005 + }, + { + "word": "susceptibilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "susceptibility", + "example_sentence_native": "Su alta susceptibilidad a las críticas le afectaba mucho.", + "example_sentence_english": "His high susceptibility to criticism affected him greatly.", + "pos": "noun", + "word_frequency": 24006 + }, + { + "word": "tantito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a little bit;just a little", + "example_sentence_native": "Espera tantito, por favor.", + "example_sentence_english": "Wait just a little bit, please.", + "pos": "adverb", + "word_frequency": 24007 + }, + { + "word": "telepatía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "telepathy", + "example_sentence_native": "Creía en la telepatía entre hermanos.", + "example_sentence_english": "She believed in telepathy between siblings.", + "pos": "noun", + "word_frequency": 24009 + }, + { + "word": "timonel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "helmsman;coxswain", + "example_sentence_native": "El timonel mantuvo el rumbo firme a pesar de la tormenta.", + "example_sentence_english": "The helmsman kept a steady course despite the storm.", + "pos": "noun", + "word_frequency": 24011 + }, + { + "word": "toldo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awning;canopy", + "example_sentence_native": "Bajamos el toldo para protegernos del sol.", + "example_sentence_english": "We lowered the awning to protect ourselves from the sun.", + "pos": "noun", + "word_frequency": 24012 + }, + { + "word": "tortita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small cake;pancake", + "example_sentence_native": "Desayuné unas tortitas con miel.", + "example_sentence_english": "I had some pancakes with honey for breakfast.", + "pos": "noun", + "word_frequency": 24014 + }, + { + "word": "traicionero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treacherous;traitorous", + "example_sentence_native": "El camino era traicionero después de la lluvia.", + "example_sentence_english": "The road was treacherous after the rain.", + "pos": "adjective", + "word_frequency": 24017 + }, + { + "word": "trillo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "threshing sledge;path;track", + "example_sentence_native": "Seguimos el viejo trillo que llevaba al río.", + "example_sentence_english": "We followed the old track that led to the river.", + "pos": "noun", + "word_frequency": 24019 + }, + { + "word": "trufa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truffle", + "example_sentence_native": "Las trufas son muy apreciadas en la gastronomía.", + "example_sentence_english": "Truffles are highly valued in gastronomy.", + "pos": "noun", + "word_frequency": 24021 + }, + { + "word": "tucumano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Tucumán (Argentina)", + "example_sentence_native": "Mi amigo es tucumano, de Argentina.", + "example_sentence_english": "My friend is from Tucumán, Argentina.", + "pos": "adjective", + "word_frequency": 24022 + }, + { + "word": "valeroso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valiant;courageous", + "example_sentence_native": "El caballero valeroso rescató a la princesa.", + "example_sentence_english": "The valiant knight rescued the princess.", + "pos": "adjective", + "word_frequency": 24027 + }, + { + "word": "veleta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weather vane;fickle person", + "example_sentence_native": "La veleta giraba con el viento.", + "example_sentence_english": "The weather vane turned with the wind.", + "pos": "noun", + "word_frequency": 24031 + }, + { + "word": "villero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slum dweller;from the shantytown", + "example_sentence_native": "Muchos villeros luchan por mejores condiciones de vida.", + "example_sentence_english": "Many slum dwellers fight for better living conditions.", + "pos": "noun", + "word_frequency": 24033 + }, + { + "word": "vistoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showy;colorful;striking", + "example_sentence_native": "El vestido era muy vistoso y llamaba la atención.", + "example_sentence_english": "The dress was very showy and attracted attention.", + "pos": "adjective", + "word_frequency": 24035 + }, + { + "word": "vórtice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vortex;whirlpool", + "example_sentence_native": "El agua formó un vórtice al drenarse.", + "example_sentence_english": "The water formed a vortex as it drained.", + "pos": "noun", + "word_frequency": 24038 + }, + { + "word": "zenit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zenith", + "example_sentence_native": "El sol alcanzó su zenit al mediodía.", + "example_sentence_english": "The sun reached its zenith at noon.", + "pos": "noun", + "word_frequency": 24044 + }, + { + "word": "zenit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zenith", + "example_sentence_native": "El sol alcanzó su zenit al mediodía.", + "example_sentence_english": "The sun reached its zenith at noon.", + "pos": "noun", + "word_frequency": 24044 + }, + { + "word": "acotado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limited;bounded", + "example_sentence_native": "El número de participantes está acotado.", + "example_sentence_english": "The number of participants is limited.", + "pos": "adjective", + "word_frequency": 24046 + }, + { + "word": "acotado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limited;bounded", + "example_sentence_native": "El número de participantes está acotado.", + "example_sentence_english": "The number of participants is limited.", + "pos": "adjective", + "word_frequency": 24046 + }, + { + "word": "actuacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "performance;action", + "example_sentence_native": "Su actuacion en la obra fue muy aplaudida.", + "example_sentence_english": "His performance in the play was highly applauded.", + "pos": "noun", + "word_frequency": 24047 + }, + { + "word": "actuacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "performance;action", + "example_sentence_native": "Su actuacion en la obra fue muy aplaudida.", + "example_sentence_english": "His performance in the play was highly applauded.", + "pos": "noun", + "word_frequency": 24047 + }, + { + "word": "acupuntura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acupuncture", + "example_sentence_native": "La acupuntura puede aliviar ciertos dolores.", + "example_sentence_english": "Acupuncture can relieve certain pains.", + "pos": "noun", + "word_frequency": 24048 + }, + { + "word": "acupuntura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acupuncture", + "example_sentence_native": "La acupuntura puede aliviar ciertos dolores.", + "example_sentence_english": "Acupuncture can relieve certain pains.", + "pos": "noun", + "word_frequency": 24048 + }, + { + "word": "adivinación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divination;fortune-telling", + "example_sentence_native": "La adivinación del futuro es una práctica antigua.", + "example_sentence_english": "Fortune-telling is an ancient practice.", + "pos": "noun", + "word_frequency": 24049 + }, + { + "word": "adivinación", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divination;fortune-telling", + "example_sentence_native": "La adivinación del futuro es una práctica antigua.", + "example_sentence_english": "Fortune-telling is an ancient practice.", + "pos": "noun", + "word_frequency": 24049 + }, + { + "word": "adonis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adonis (a very handsome man)", + "example_sentence_native": "Era un adonis, con una figura escultural.", + "example_sentence_english": "He was an adonis, with a sculptural figure.", + "pos": "noun", + "word_frequency": 24050 + }, + { + "word": "adonis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adonis (a very handsome man)", + "example_sentence_native": "Era un adonis, con una figura escultural.", + "example_sentence_english": "He was an adonis, with a sculptural figure.", + "pos": "noun", + "word_frequency": 24050 + }, + { + "word": "adopcion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoption", + "example_sentence_native": "La adopcion de niños es un acto de amor.", + "example_sentence_english": "Child adoption is an act of love.", + "pos": "noun", + "word_frequency": 24051 + }, + { + "word": "adopcion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoption", + "example_sentence_native": "La adopcion de niños es un acto de amor.", + "example_sentence_english": "Child adoption is an act of love.", + "pos": "noun", + "word_frequency": 24051 + }, + { + "word": "afincado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settled;established", + "example_sentence_native": "Está afincado en la ciudad desde hace una década.", + "example_sentence_english": "He has been settled in the city for a decade.", + "pos": "adjective", + "word_frequency": 24054 + }, + { + "word": "afincado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settled;established", + "example_sentence_native": "Está afincado en la ciudad desde hace una década.", + "example_sentence_english": "He has been settled in the city for a decade.", + "pos": "adjective", + "word_frequency": 24054 + }, + { + "word": "algarrobo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carob tree", + "example_sentence_native": "El algarrobo es un árbol resistente a la sequía.", + "example_sentence_english": "The carob tree is a drought-resistant tree.", + "pos": "noun", + "word_frequency": 24059 + }, + { + "word": "algarrobo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carob tree", + "example_sentence_native": "El algarrobo es un árbol resistente a la sequía.", + "example_sentence_english": "The carob tree is a drought-resistant tree.", + "pos": "noun", + "word_frequency": 24059 + }, + { + "word": "amotinado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutinous;rebellious", + "example_sentence_native": "El grupo de prisioneros se declaró amotinado.", + "example_sentence_english": "The group of prisoners declared themselves mutinous.", + "pos": "adjective", + "word_frequency": 24061 + }, + { + "word": "amotinado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutinous;rebellious", + "example_sentence_native": "El grupo de prisioneros se declaró amotinado.", + "example_sentence_english": "The group of prisoners declared themselves mutinous.", + "pos": "adjective", + "word_frequency": 24061 + }, + { + "word": "anclado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchored", + "example_sentence_native": "El barco permanece anclado en la bahía.", + "example_sentence_english": "The ship remains anchored in the bay.", + "pos": "adjective", + "word_frequency": 24062 + }, + { + "word": "anclado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchored", + "example_sentence_native": "El barco permanece anclado en la bahía.", + "example_sentence_english": "The ship remains anchored in the bay.", + "pos": "adjective", + "word_frequency": 24062 + }, + { + "word": "ansiosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiously", + "example_sentence_native": "Esperaba ansiosamente la llegada de la carta.", + "example_sentence_english": "He anxiously awaited the letter's arrival.", + "pos": "adverb", + "word_frequency": 24063 + }, + { + "word": "ansiosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiously", + "example_sentence_native": "Esperaba ansiosamente la llegada de la carta.", + "example_sentence_english": "He anxiously awaited the letter's arrival.", + "pos": "adverb", + "word_frequency": 24063 + }, + { + "word": "arduamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arduously;strenuously", + "example_sentence_native": "Trabajó arduamente para alcanzar sus metas.", + "example_sentence_english": "He worked arduously to achieve his goals.", + "pos": "adverb", + "word_frequency": 24064 + }, + { + "word": "arduamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arduously;strenuously", + "example_sentence_native": "Trabajó arduamente para alcanzar sus metas.", + "example_sentence_english": "He worked arduously to achieve his goals.", + "pos": "adverb", + "word_frequency": 24064 + }, + { + "word": "arenoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sandy", + "example_sentence_native": "El suelo de la duna es muy arenoso.", + "example_sentence_english": "The dune's soil is very sandy.", + "pos": "adjective", + "word_frequency": 24065 + }, + { + "word": "arenoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sandy", + "example_sentence_native": "El suelo de la duna es muy arenoso.", + "example_sentence_english": "The dune's soil is very sandy.", + "pos": "adjective", + "word_frequency": 24065 + }, + { + "word": "armero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gunsmith;armorer;gun cabinet", + "example_sentence_native": "El armero reparó el viejo rifle de caza.", + "example_sentence_english": "The gunsmith repaired the old hunting rifle.", + "pos": "noun", + "word_frequency": 24066 + }, + { + "word": "armero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gunsmith;armorer;gun cabinet", + "example_sentence_native": "El armero reparó el viejo rifle de caza.", + "example_sentence_english": "The gunsmith repaired the old hunting rifle.", + "pos": "noun", + "word_frequency": 24066 + }, + { + "word": "arrendador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landlord;lessor", + "example_sentence_native": "El arrendador es responsable del mantenimiento del edificio.", + "example_sentence_english": "The landlord is responsible for the building's maintenance.", + "pos": "noun", + "word_frequency": 24067 + }, + { + "word": "arrendador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landlord;lessor", + "example_sentence_native": "El arrendador es responsable del mantenimiento del edificio.", + "example_sentence_english": "The landlord is responsible for the building's maintenance.", + "pos": "noun", + "word_frequency": 24067 + }, + { + "word": "artificio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artifice;device;trick", + "example_sentence_native": "Su argumento era un mero artificio para engañar.", + "example_sentence_english": "His argument was a mere artifice to deceive.", + "pos": "noun", + "word_frequency": 24068 + }, + { + "word": "artificio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artifice;device;trick", + "example_sentence_native": "Su argumento era un mero artificio para engañar.", + "example_sentence_english": "His argument was a mere artifice to deceive.", + "pos": "noun", + "word_frequency": 24068 + }, + { + "word": "arábigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Arabic", + "example_sentence_native": "Los números arábigos son de uso universal.", + "example_sentence_english": "Arabic numerals are universally used.", + "pos": "adjective", + "word_frequency": 24069 + }, + { + "word": "arábigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Arabic", + "example_sentence_native": "Los números arábigos son de uso universal.", + "example_sentence_english": "Arabic numerals are universally used.", + "pos": "adjective", + "word_frequency": 24069 + }, + { + "word": "aseverar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assert;to affirm", + "example_sentence_native": "El abogado aseveró la inocencia de su cliente.", + "example_sentence_english": "The lawyer asserted his client's innocence.", + "pos": "verb", + "word_frequency": 24070 + }, + { + "word": "aseverar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assert;to affirm", + "example_sentence_native": "El abogado aseveró la inocencia de su cliente.", + "example_sentence_english": "The lawyer asserted his client's innocence.", + "pos": "verb", + "word_frequency": 24070 + }, + { + "word": "aterrizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landed", + "example_sentence_native": "El avión ha aterrizado sin problemas.", + "example_sentence_english": "The plane has landed without problems.", + "pos": "adjective", + "word_frequency": 24072 + }, + { + "word": "aterrizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landed", + "example_sentence_native": "El avión ha aterrizado sin problemas.", + "example_sentence_english": "The plane has landed without problems.", + "pos": "adjective", + "word_frequency": 24072 + }, + { + "word": "atípico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atypical;unusual", + "example_sentence_native": "Fue un comportamiento atípico para él.", + "example_sentence_english": "It was atypical behavior for him.", + "pos": "adjective", + "word_frequency": 24073 + }, + { + "word": "atípico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atypical;unusual", + "example_sentence_native": "Fue un comportamiento atípico para él.", + "example_sentence_english": "It was atypical behavior for him.", + "pos": "adjective", + "word_frequency": 24073 + }, + { + "word": "autoservicio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "self-service", + "example_sentence_native": "Este restaurante es de autoservicio.", + "example_sentence_english": "This restaurant is self-service.", + "pos": "noun", + "word_frequency": 24074 + }, + { + "word": "autoservicio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "self-service", + "example_sentence_native": "Este restaurante es de autoservicio.", + "example_sentence_english": "This restaurant is self-service.", + "pos": "noun", + "word_frequency": 24074 + }, + { + "word": "autódromo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racetrack;motor racing circuit", + "example_sentence_native": "La carrera de coches se celebró en el autódromo.", + "example_sentence_english": "The car race was held at the racetrack.", + "pos": "noun", + "word_frequency": 24075 + }, + { + "word": "autódromo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racetrack;motor racing circuit", + "example_sentence_native": "La carrera de coches se celebró en el autódromo.", + "example_sentence_english": "The car race was held at the racetrack.", + "pos": "noun", + "word_frequency": 24075 + }, + { + "word": "avaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greedy;miserly", + "example_sentence_native": "El personaje principal era un hombre avaro.", + "example_sentence_english": "The main character was a greedy man.", + "pos": "adjective", + "word_frequency": 24076 + }, + { + "word": "avaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greedy;miserly", + "example_sentence_native": "El personaje principal era un hombre avaro.", + "example_sentence_english": "The main character was a greedy man.", + "pos": "adjective", + "word_frequency": 24076 + }, + { + "word": "backstage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backstage", + "example_sentence_native": "Los músicos esperaban en el backstage antes del concierto.", + "example_sentence_english": "The musicians waited backstage before the concert.", + "pos": "noun", + "word_frequency": 24078 + }, + { + "word": "backstage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backstage", + "example_sentence_native": "Los músicos esperaban en el backstage antes del concierto.", + "example_sentence_english": "The musicians waited backstage before the concert.", + "pos": "noun", + "word_frequency": 24078 + }, + { + "word": "bateo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "batting", + "example_sentence_native": "El bateo del equipo mejoró mucho esta temporada.", + "example_sentence_english": "The team's batting improved a lot this season.", + "pos": "noun", + "word_frequency": 24080 + }, + { + "word": "bateo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "batting", + "example_sentence_native": "El bateo del equipo mejoró mucho esta temporada.", + "example_sentence_english": "The team's batting improved a lot this season.", + "pos": "noun", + "word_frequency": 24080 + }, + { + "word": "bocanada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puff;gulp", + "example_sentence_native": "Dio una bocanada de aire fresco.", + "example_sentence_english": "He took a gulp of fresh air.", + "pos": "noun", + "word_frequency": 24084 + }, + { + "word": "bocanada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puff;gulp", + "example_sentence_native": "Dio una bocanada de aire fresco.", + "example_sentence_english": "He took a gulp of fresh air.", + "pos": "noun", + "word_frequency": 24084 + }, + { + "word": "bosnio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bosnian", + "example_sentence_native": "La cultura bosnia es muy rica.", + "example_sentence_english": "Bosnian culture is very rich.", + "pos": "adjective", + "word_frequency": 24085 + }, + { + "word": "bosnio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bosnian", + "example_sentence_native": "La cultura bosnia es muy rica.", + "example_sentence_english": "Bosnian culture is very rich.", + "pos": "adjective", + "word_frequency": 24085 + }, + { + "word": "botana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snack;appetizer", + "example_sentence_native": "Compramos unas botanas para la fiesta.", + "example_sentence_english": "We bought some snacks for the party.", + "pos": "noun", + "word_frequency": 24086 + }, + { + "word": "botana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snack;appetizer", + "example_sentence_native": "Compramos unas botanas para la fiesta.", + "example_sentence_english": "We bought some snacks for the party.", + "pos": "noun", + "word_frequency": 24086 + }, + { + "word": "cachito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little piece;bit", + "example_sentence_native": "Dame un cachito de pastel, por favor.", + "example_sentence_english": "Give me a little piece of cake, please.", + "pos": "noun", + "word_frequency": 24088 + }, + { + "word": "cachito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little piece;bit", + "example_sentence_native": "Dame un cachito de pastel, por favor.", + "example_sentence_english": "Give me a little piece of cake, please.", + "pos": "noun", + "word_frequency": 24088 + }, + { + "word": "campanada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chime;bell stroke", + "example_sentence_native": "Escuchamos las campanadas de medianoche.", + "example_sentence_english": "We heard the midnight chimes.", + "pos": "noun", + "word_frequency": 24089 + }, + { + "word": "campanada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chime;bell stroke", + "example_sentence_native": "Escuchamos las campanadas de medianoche.", + "example_sentence_english": "We heard the midnight chimes.", + "pos": "noun", + "word_frequency": 24089 + }, + { + "word": "canjear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redeem;to exchange", + "example_sentence_native": "Puedes canjear tus puntos por un regalo.", + "example_sentence_english": "You can redeem your points for a gift.", + "pos": "verb", + "word_frequency": 24090 + }, + { + "word": "canjear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redeem;to exchange", + "example_sentence_native": "Puedes canjear tus puntos por un regalo.", + "example_sentence_english": "You can redeem your points for a gift.", + "pos": "verb", + "word_frequency": 24090 + }, + { + "word": "caníbal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannibal", + "example_sentence_native": "La historia hablaba de tribus caníbales.", + "example_sentence_english": "The story spoke of cannibal tribes.", + "pos": "noun", + "word_frequency": 24091 + }, + { + "word": "caníbal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannibal", + "example_sentence_native": "La historia hablaba de tribus caníbales.", + "example_sentence_english": "The story spoke of cannibal tribes.", + "pos": "noun", + "word_frequency": 24091 + }, + { + "word": "capitel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capital (of a column)", + "example_sentence_native": "El capitel de la columna era de estilo corintio.", + "example_sentence_english": "The capital of the column was Corinthian style.", + "pos": "noun", + "word_frequency": 24092 + }, + { + "word": "capitel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capital (of a column)", + "example_sentence_native": "El capitel de la columna era de estilo corintio.", + "example_sentence_english": "The capital of the column was Corinthian style.", + "pos": "noun", + "word_frequency": 24092 + }, + { + "word": "cariz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appearance;aspect", + "example_sentence_native": "La situación tomó un cariz inesperado.", + "example_sentence_english": "The situation took an unexpected turn.", + "pos": "noun", + "word_frequency": 24093 + }, + { + "word": "cariz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appearance;aspect", + "example_sentence_native": "La situación tomó un cariz inesperado.", + "example_sentence_english": "The situation took an unexpected turn.", + "pos": "noun", + "word_frequency": 24093 + }, + { + "word": "chai", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chai (tea)", + "example_sentence_native": "Me gusta mucho el té chai con leche.", + "example_sentence_english": "I really like chai tea with milk.", + "pos": "noun", + "word_frequency": 24099 + }, + { + "word": "chai", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chai (tea)", + "example_sentence_native": "Me gusta mucho el té chai con leche.", + "example_sentence_english": "I really like chai tea with milk.", + "pos": "noun", + "word_frequency": 24099 + }, + { + "word": "circa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circa;approximately", + "example_sentence_native": "La pintura data de circa 1850.", + "example_sentence_english": "The painting dates from circa 1850.", + "pos": "adverb", + "word_frequency": 24104 + }, + { + "word": "circa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circa;approximately", + "example_sentence_native": "La pintura data de circa 1850.", + "example_sentence_english": "The painting dates from circa 1850.", + "pos": "adverb", + "word_frequency": 24104 + }, + { + "word": "ciudadania", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citizenship;citizenry", + "example_sentence_native": "La ciudadanía tiene derecho a votar.", + "example_sentence_english": "The citizenry has the right to vote.", + "pos": "noun", + "word_frequency": 24105 + }, + { + "word": "ciudadania", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citizenship;citizenry", + "example_sentence_native": "La ciudadanía tiene derecho a votar.", + "example_sentence_english": "The citizenry has the right to vote.", + "pos": "noun", + "word_frequency": 24105 + }, + { + "word": "cobrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collector;conductor", + "example_sentence_native": "El cobrador vino a recoger el pago.", + "example_sentence_english": "The collector came to pick up the payment.", + "pos": "noun", + "word_frequency": 24110 + }, + { + "word": "cobrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collector;conductor", + "example_sentence_native": "El cobrador vino a recoger el pago.", + "example_sentence_english": "The collector came to pick up the payment.", + "pos": "noun", + "word_frequency": 24110 + }, + { + "word": "confiscar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confiscate", + "example_sentence_native": "La policía confiscó las drogas ilegales.", + "example_sentence_english": "The police confiscated the illegal drugs.", + "pos": "verb", + "word_frequency": 24112 + }, + { + "word": "confiscar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confiscate", + "example_sentence_native": "La policía confiscó las drogas ilegales.", + "example_sentence_english": "The police confiscated the illegal drugs.", + "pos": "verb", + "word_frequency": 24112 + }, + { + "word": "coreógrafo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choreographer", + "example_sentence_native": "El coreógrafo diseñó los pasos de baile.", + "example_sentence_english": "The choreographer designed the dance steps.", + "pos": "noun", + "word_frequency": 24114 + }, + { + "word": "coreógrafo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choreographer", + "example_sentence_native": "El coreógrafo diseñó los pasos de baile.", + "example_sentence_english": "The choreographer designed the dance steps.", + "pos": "noun", + "word_frequency": 24114 + }, + { + "word": "coronilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crown (of the head)", + "example_sentence_native": "Se rascó la coronilla de la cabeza.", + "example_sentence_english": "He scratched the crown of his head.", + "pos": "noun", + "word_frequency": 24115 + }, + { + "word": "coronilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crown (of the head)", + "example_sentence_native": "Se rascó la coronilla de la cabeza.", + "example_sentence_english": "He scratched the crown of his head.", + "pos": "noun", + "word_frequency": 24115 + }, + { + "word": "corredera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slide;track", + "example_sentence_native": "La puerta corredera se atascó.", + "example_sentence_english": "The sliding door got stuck.", + "pos": "noun", + "word_frequency": 24116 + }, + { + "word": "corredera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slide;track", + "example_sentence_native": "La puerta corredera se atascó.", + "example_sentence_english": "The sliding door got stuck.", + "pos": "noun", + "word_frequency": 24116 + }, + { + "word": "críquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cricket", + "example_sentence_native": "El críquet es un deporte popular en algunos países.", + "example_sentence_english": "Cricket is a popular sport in some countries.", + "pos": "noun", + "word_frequency": 24120 + }, + { + "word": "críquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cricket", + "example_sentence_native": "El críquet es un deporte popular en algunos países.", + "example_sentence_english": "Cricket is a popular sport in some countries.", + "pos": "noun", + "word_frequency": 24120 + }, + { + "word": "críquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cricket", + "example_sentence_native": "El críquet es un deporte popular en algunos países.", + "example_sentence_english": "Cricket is a popular sport in some countries.", + "pos": "noun", + "word_frequency": 24120 + }, + { + "word": "curvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curved", + "example_sentence_native": "La carretera tiene una sección muy curva.", + "example_sentence_english": "The road has a very curved section.", + "pos": "adjective", + "word_frequency": 24121 + }, + { + "word": "curvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curved", + "example_sentence_native": "La carretera tiene una sección muy curva.", + "example_sentence_english": "The road has a very curved section.", + "pos": "adjective", + "word_frequency": 24121 + }, + { + "word": "curvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curved", + "example_sentence_native": "La carretera tiene una sección muy curva.", + "example_sentence_english": "The road has a very curved section.", + "pos": "adjective", + "word_frequency": 24121 + }, + { + "word": "decisivamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decisively", + "example_sentence_native": "El equipo ganó el partido decisivamente.", + "example_sentence_english": "The team won the match decisively.", + "pos": "adverb", + "word_frequency": 24122 + }, + { + "word": "decisivamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decisively", + "example_sentence_native": "El equipo ganó el partido decisivamente.", + "example_sentence_english": "The team won the match decisively.", + "pos": "adverb", + "word_frequency": 24122 + }, + { + "word": "decisivamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decisively", + "example_sentence_native": "El equipo ganó el partido decisivamente.", + "example_sentence_english": "The team won the match decisively.", + "pos": "adverb", + "word_frequency": 24122 + }, + { + "word": "denegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to refuse", + "example_sentence_native": "La empresa decidió denegar su solicitud.", + "example_sentence_english": "The company decided to deny his request.", + "pos": "verb", + "word_frequency": 24123 + }, + { + "word": "denegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to refuse", + "example_sentence_native": "La empresa decidió denegar su solicitud.", + "example_sentence_english": "The company decided to deny his request.", + "pos": "verb", + "word_frequency": 24123 + }, + { + "word": "denegar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to refuse", + "example_sentence_native": "La empresa decidió denegar su solicitud.", + "example_sentence_english": "The company decided to deny his request.", + "pos": "verb", + "word_frequency": 24123 + }, + { + "word": "desafiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenged", + "example_sentence_native": "Se sintió desafiado por la complejidad del problema.", + "example_sentence_english": "He felt challenged by the complexity of the problem.", + "pos": "adjective", + "word_frequency": 24124 + }, + { + "word": "desafiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenged", + "example_sentence_native": "Se sintió desafiado por la complejidad del problema.", + "example_sentence_english": "He felt challenged by the complexity of the problem.", + "pos": "adjective", + "word_frequency": 24124 + }, + { + "word": "desafiado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenged", + "example_sentence_native": "Se sintió desafiado por la complejidad del problema.", + "example_sentence_english": "He felt challenged by the complexity of the problem.", + "pos": "adjective", + "word_frequency": 24124 + }, + { + "word": "desalentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discourage", + "example_sentence_native": "No dejes que los obstáculos te desalienten.", + "example_sentence_english": "Don't let obstacles discourage you.", + "pos": "verb", + "word_frequency": 24125 + }, + { + "word": "desalentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discourage", + "example_sentence_native": "No dejes que los obstáculos te desalienten.", + "example_sentence_english": "Don't let obstacles discourage you.", + "pos": "verb", + "word_frequency": 24125 + }, + { + "word": "desalentar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discourage", + "example_sentence_native": "No dejes que los obstáculos te desalienten.", + "example_sentence_english": "Don't let obstacles discourage you.", + "pos": "verb", + "word_frequency": 24125 + }, + { + "word": "desengaño", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disappointment;disillusionment", + "example_sentence_native": "Su desengaño fue evidente después de la noticia.", + "example_sentence_english": "His disappointment was evident after the news.", + "pos": "noun", + "word_frequency": 24126 + }, + { + "word": "desengaño", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disappointment;disillusionment", + "example_sentence_native": "Su desengaño fue evidente después de la noticia.", + "example_sentence_english": "His disappointment was evident after the news.", + "pos": "noun", + "word_frequency": 24126 + }, + { + "word": "desengaño", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disappointment;disillusionment", + "example_sentence_native": "Su desengaño fue evidente después de la noticia.", + "example_sentence_english": "His disappointment was evident after the news.", + "pos": "noun", + "word_frequency": 24126 + }, + { + "word": "desenterrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unearth;to dig up", + "example_sentence_native": "Los arqueólogos lograron desenterrar artefactos antiguos.", + "example_sentence_english": "The archaeologists managed to unearth ancient artifacts.", + "pos": "verb", + "word_frequency": 24127 + }, + { + "word": "desenterrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unearth;to dig up", + "example_sentence_native": "Los arqueólogos lograron desenterrar artefactos antiguos.", + "example_sentence_english": "The archaeologists managed to unearth ancient artifacts.", + "pos": "verb", + "word_frequency": 24127 + }, + { + "word": "desenterrar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unearth;to dig up", + "example_sentence_native": "Los arqueólogos lograron desenterrar artefactos antiguos.", + "example_sentence_english": "The archaeologists managed to unearth ancient artifacts.", + "pos": "verb", + "word_frequency": 24127 + }, + { + "word": "desertar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to desert", + "example_sentence_native": "Muchos soldados intentaron desertar durante la guerra.", + "example_sentence_english": "Many soldiers tried to desert during the war.", + "pos": "verb", + "word_frequency": 24128 + }, + { + "word": "desertar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to desert", + "example_sentence_native": "Muchos soldados intentaron desertar durante la guerra.", + "example_sentence_english": "Many soldiers tried to desert during the war.", + "pos": "verb", + "word_frequency": 24128 + }, + { + "word": "desertar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to desert", + "example_sentence_native": "Muchos soldados intentaron desertar durante la guerra.", + "example_sentence_english": "Many soldiers tried to desert during the war.", + "pos": "verb", + "word_frequency": 24128 + }, + { + "word": "desprotegido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprotected;vulnerable", + "example_sentence_native": "El niño se sentía desprotegido en la oscuridad.", + "example_sentence_english": "The child felt unprotected in the dark.", + "pos": "adjective", + "word_frequency": 24130 + }, + { + "word": "desprotegido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprotected;vulnerable", + "example_sentence_native": "El niño se sentía desprotegido en la oscuridad.", + "example_sentence_english": "The child felt unprotected in the dark.", + "pos": "adjective", + "word_frequency": 24130 + }, + { + "word": "desprotegido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprotected;vulnerable", + "example_sentence_native": "El niño se sentía desprotegido en la oscuridad.", + "example_sentence_english": "The child felt unprotected in the dark.", + "pos": "adjective", + "word_frequency": 24130 + }, + { + "word": "destilar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distill", + "example_sentence_native": "Se usa este proceso para destilar el alcohol.", + "example_sentence_english": "This process is used to distill alcohol.", + "pos": "verb", + "word_frequency": 24131 + }, + { + "word": "destilar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distill", + "example_sentence_native": "Se usa este proceso para destilar el alcohol.", + "example_sentence_english": "This process is used to distill alcohol.", + "pos": "verb", + "word_frequency": 24131 + }, + { + "word": "destilar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distill", + "example_sentence_native": "Se usa este proceso para destilar el alcohol.", + "example_sentence_english": "This process is used to distill alcohol.", + "pos": "verb", + "word_frequency": 24131 + }, + { + "word": "desvelado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleepless;awake", + "example_sentence_native": "Estaba desvelado toda la noche pensando en el examen.", + "example_sentence_english": "He was sleepless all night thinking about the exam.", + "pos": "adjective", + "word_frequency": 24132 + }, + { + "word": "desvelado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleepless;awake", + "example_sentence_native": "Estaba desvelado toda la noche pensando en el examen.", + "example_sentence_english": "He was sleepless all night thinking about the exam.", + "pos": "adjective", + "word_frequency": 24132 + }, + { + "word": "desvelado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleepless;awake", + "example_sentence_native": "Estaba desvelado toda la noche pensando en el examen.", + "example_sentence_english": "He was sleepless all night thinking about the exam.", + "pos": "adjective", + "word_frequency": 24132 + }, + { + "word": "desvelo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sleeplessness;wakefulness", + "example_sentence_native": "El desvelo le causó mucho cansancio.", + "example_sentence_english": "The sleeplessness caused him a lot of fatigue.", + "pos": "noun", + "word_frequency": 24133 + }, + { + "word": "desvelo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sleeplessness;wakefulness", + "example_sentence_native": "El desvelo le causó mucho cansancio.", + "example_sentence_english": "The sleeplessness caused him a lot of fatigue.", + "pos": "noun", + "word_frequency": 24133 + }, + { + "word": "desvelo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sleeplessness;wakefulness", + "example_sentence_native": "El desvelo le causó mucho cansancio.", + "example_sentence_english": "The sleeplessness caused him a lot of fatigue.", + "pos": "noun", + "word_frequency": 24133 + }, + { + "word": "desván", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic", + "example_sentence_native": "Encontré viejas fotos en el desván.", + "example_sentence_english": "I found old photos in the attic.", + "pos": "noun", + "word_frequency": 24134 + }, + { + "word": "desván", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic", + "example_sentence_native": "Encontré viejas fotos en el desván.", + "example_sentence_english": "I found old photos in the attic.", + "pos": "noun", + "word_frequency": 24134 + }, + { + "word": "desván", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic", + "example_sentence_native": "Encontré viejas fotos en el desván.", + "example_sentence_english": "I found old photos in the attic.", + "pos": "noun", + "word_frequency": 24134 + }, + { + "word": "dietético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dietary;diet", + "example_sentence_native": "Necesito seguir un plan dietético estricto.", + "example_sentence_english": "I need to follow a strict dietary plan.", + "pos": "adjective", + "word_frequency": 24136 + }, + { + "word": "dietético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dietary;diet", + "example_sentence_native": "Necesito seguir un plan dietético estricto.", + "example_sentence_english": "I need to follow a strict dietary plan.", + "pos": "adjective", + "word_frequency": 24136 + }, + { + "word": "dietético", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dietary;diet", + "example_sentence_native": "Necesito seguir un plan dietético estricto.", + "example_sentence_english": "I need to follow a strict dietary plan.", + "pos": "adjective", + "word_frequency": 24136 + }, + { + "word": "disparador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger", + "example_sentence_native": "El ruido fue el disparador de su ansiedad.", + "example_sentence_english": "The noise was the trigger for his anxiety.", + "pos": "noun", + "word_frequency": 24137 + }, + { + "word": "disparador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger", + "example_sentence_native": "El ruido fue el disparador de su ansiedad.", + "example_sentence_english": "The noise was the trigger for his anxiety.", + "pos": "noun", + "word_frequency": 24137 + }, + { + "word": "disparador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger", + "example_sentence_native": "El ruido fue el disparador de su ansiedad.", + "example_sentence_english": "The noise was the trigger for his anxiety.", + "pos": "noun", + "word_frequency": 24137 + }, + { + "word": "distorsionar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distort", + "example_sentence_native": "No debes distorsionar la verdad.", + "example_sentence_english": "You should not distort the truth.", + "pos": "verb", + "word_frequency": 24138 + }, + { + "word": "distorsionar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distort", + "example_sentence_native": "No debes distorsionar la verdad.", + "example_sentence_english": "You should not distort the truth.", + "pos": "verb", + "word_frequency": 24138 + }, + { + "word": "distorsionar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distort", + "example_sentence_native": "No debes distorsionar la verdad.", + "example_sentence_english": "You should not distort the truth.", + "pos": "verb", + "word_frequency": 24138 + }, + { + "word": "doma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taming;breaking (of horses);dressage", + "example_sentence_native": "La doma de caballos requiere mucha paciencia.", + "example_sentence_english": "Horse taming requires a lot of patience.", + "pos": "noun", + "word_frequency": 24140 + }, + { + "word": "doma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taming;breaking (of horses);dressage", + "example_sentence_native": "La doma de caballos requiere mucha paciencia.", + "example_sentence_english": "Horse taming requires a lot of patience.", + "pos": "noun", + "word_frequency": 24140 + }, + { + "word": "doma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taming;breaking (of horses);dressage", + "example_sentence_native": "La doma de caballos requiere mucha paciencia.", + "example_sentence_english": "Horse taming requires a lot of patience.", + "pos": "noun", + "word_frequency": 24140 + }, + { + "word": "drenar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drain", + "example_sentence_native": "Es importante drenar el agua después de la lluvia.", + "example_sentence_english": "It's important to drain the water after the rain.", + "pos": "verb", + "word_frequency": 24141 + }, + { + "word": "drenar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drain", + "example_sentence_native": "Es importante drenar el agua después de la lluvia.", + "example_sentence_english": "It's important to drain the water after the rain.", + "pos": "verb", + "word_frequency": 24141 + }, + { + "word": "drenar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drain", + "example_sentence_native": "Es importante drenar el agua después de la lluvia.", + "example_sentence_english": "It's important to drain the water after the rain.", + "pos": "verb", + "word_frequency": 24141 + }, + { + "word": "elote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corn on the cob", + "example_sentence_native": "Me encanta comer elote asado en verano.", + "example_sentence_english": "I love eating roasted corn on the cob in summer.", + "pos": "noun", + "word_frequency": 24149 + }, + { + "word": "elote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corn on the cob", + "example_sentence_native": "Me encanta comer elote asado en verano.", + "example_sentence_english": "I love eating roasted corn on the cob in summer.", + "pos": "noun", + "word_frequency": 24149 + }, + { + "word": "elote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corn on the cob", + "example_sentence_native": "Me encanta comer elote asado en verano.", + "example_sentence_english": "I love eating roasted corn on the cob in summer.", + "pos": "noun", + "word_frequency": 24149 + }, + { + "word": "elíptico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elliptical", + "example_sentence_native": "La órbita del planeta es elíptica.", + "example_sentence_english": "The planet's orbit is elliptical.", + "pos": "adjective", + "word_frequency": 24150 + }, + { + "word": "elíptico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elliptical", + "example_sentence_native": "La órbita del planeta es elíptica.", + "example_sentence_english": "The planet's orbit is elliptical.", + "pos": "adjective", + "word_frequency": 24150 + }, + { + "word": "elíptico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elliptical", + "example_sentence_native": "La órbita del planeta es elíptica.", + "example_sentence_english": "The planet's orbit is elliptical.", + "pos": "adjective", + "word_frequency": 24150 + }, + { + "word": "emborrachar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get drunk;to intoxicate", + "example_sentence_native": "No quiero emborracharme esta noche.", + "example_sentence_english": "I don't want to get drunk tonight.", + "pos": "verb", + "word_frequency": 24151 + }, + { + "word": "emborrachar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get drunk;to intoxicate", + "example_sentence_native": "No quiero emborracharme esta noche.", + "example_sentence_english": "I don't want to get drunk tonight.", + "pos": "verb", + "word_frequency": 24151 + }, + { + "word": "emborrachar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get drunk;to intoxicate", + "example_sentence_native": "No quiero emborracharme esta noche.", + "example_sentence_english": "I don't want to get drunk tonight.", + "pos": "verb", + "word_frequency": 24151 + }, + { + "word": "empaquetado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "packaged", + "example_sentence_native": "Compramos productos empaquetados en el supermercado.", + "example_sentence_english": "We buy packaged products at the supermarket.", + "pos": "adjective", + "word_frequency": 24152 + }, + { + "word": "empaquetado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "packaged", + "example_sentence_native": "Compramos productos empaquetados en el supermercado.", + "example_sentence_english": "We buy packaged products at the supermarket.", + "pos": "adjective", + "word_frequency": 24152 + }, + { + "word": "empaquetado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "packaged", + "example_sentence_native": "Compramos productos empaquetados en el supermercado.", + "example_sentence_english": "We buy packaged products at the supermarket.", + "pos": "adjective", + "word_frequency": 24152 + }, + { + "word": "encoger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shrink", + "example_sentence_native": "Esta camisa se encogió al lavarla.", + "example_sentence_english": "This shirt shrunk when I washed it.", + "pos": "verb", + "word_frequency": 24153 + }, + { + "word": "encoger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shrink", + "example_sentence_native": "Esta camisa se encogió al lavarla.", + "example_sentence_english": "This shirt shrunk when I washed it.", + "pos": "verb", + "word_frequency": 24153 + }, + { + "word": "encoger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shrink", + "example_sentence_native": "Esta camisa se encogió al lavarla.", + "example_sentence_english": "This shirt shrunk when I washed it.", + "pos": "verb", + "word_frequency": 24153 + }, + { + "word": "encriptado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encrypted", + "example_sentence_native": "Los datos están encriptados para mayor seguridad.", + "example_sentence_english": "The data is encrypted for greater security.", + "pos": "adjective", + "word_frequency": 24154 + }, + { + "word": "encriptado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encrypted", + "example_sentence_native": "Los datos están encriptados para mayor seguridad.", + "example_sentence_english": "The data is encrypted for greater security.", + "pos": "adjective", + "word_frequency": 24154 + }, + { + "word": "encriptado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encrypted", + "example_sentence_native": "Los datos están encriptados para mayor seguridad.", + "example_sentence_english": "The data is encrypted for greater security.", + "pos": "adjective", + "word_frequency": 24154 + }, + { + "word": "encuadernación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding (of a book)", + "example_sentence_native": "La encuadernación del libro es muy antigua.", + "example_sentence_english": "The book's binding is very old.", + "pos": "noun", + "word_frequency": 24155 + }, + { + "word": "encuadernación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding (of a book)", + "example_sentence_native": "La encuadernación del libro es muy antigua.", + "example_sentence_english": "The book's binding is very old.", + "pos": "noun", + "word_frequency": 24155 + }, + { + "word": "encuadernación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding (of a book)", + "example_sentence_native": "La encuadernación del libro es muy antigua.", + "example_sentence_english": "The book's binding is very old.", + "pos": "noun", + "word_frequency": 24155 + }, + { + "word": "endeble", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flimsy;weak", + "example_sentence_native": "La estructura era demasiado endeble para soportar el peso.", + "example_sentence_english": "The structure was too flimsy to support the weight.", + "pos": "adjective", + "word_frequency": 24156 + }, + { + "word": "endeble", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flimsy;weak", + "example_sentence_native": "La estructura era demasiado endeble para soportar el peso.", + "example_sentence_english": "The structure was too flimsy to support the weight.", + "pos": "adjective", + "word_frequency": 24156 + }, + { + "word": "endeble", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flimsy;weak", + "example_sentence_native": "La estructura era demasiado endeble para soportar el peso.", + "example_sentence_english": "The structure was too flimsy to support the weight.", + "pos": "adjective", + "word_frequency": 24156 + }, + { + "word": "eslógan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan", + "example_sentence_native": "La empresa tiene un nuevo eslógan publicitario.", + "example_sentence_english": "The company has a new advertising slogan.", + "pos": "noun", + "word_frequency": 24158 + }, + { + "word": "eslógan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan", + "example_sentence_native": "La empresa tiene un nuevo eslógan publicitario.", + "example_sentence_english": "The company has a new advertising slogan.", + "pos": "noun", + "word_frequency": 24158 + }, + { + "word": "eslógan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan", + "example_sentence_native": "La empresa tiene un nuevo eslógan publicitario.", + "example_sentence_english": "The company has a new advertising slogan.", + "pos": "noun", + "word_frequency": 24158 + }, + { + "word": "estandar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standard", + "example_sentence_native": "Este es el estandar de calidad que buscamos.", + "example_sentence_english": "This is the quality standard we are looking for.", + "pos": "noun", + "word_frequency": 24160 + }, + { + "word": "estandar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standard", + "example_sentence_native": "Este es el estandar de calidad que buscamos.", + "example_sentence_english": "This is the quality standard we are looking for.", + "pos": "noun", + "word_frequency": 24160 + }, + { + "word": "estocada", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thrust;lunge", + "example_sentence_native": "El torero dio la estocada final.", + "example_sentence_english": "The bullfighter delivered the final thrust.", + "pos": "noun", + "word_frequency": 24161 + }, + { + "word": "estocada", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thrust;lunge", + "example_sentence_native": "El torero dio la estocada final.", + "example_sentence_english": "The bullfighter delivered the final thrust.", + "pos": "noun", + "word_frequency": 24161 + }, + { + "word": "estructuralmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structurally", + "example_sentence_native": "El edificio está estructuralmente sano.", + "example_sentence_english": "The building is structurally sound.", + "pos": "adverb", + "word_frequency": 24162 + }, + { + "word": "estructuralmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structurally", + "example_sentence_native": "El edificio está estructuralmente sano.", + "example_sentence_english": "The building is structurally sound.", + "pos": "adverb", + "word_frequency": 24162 + }, + { + "word": "exorbitante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exorbitant", + "example_sentence_native": "El precio era exorbitante para un objeto tan pequeño.", + "example_sentence_english": "The price was exorbitant for such a small object.", + "pos": "adjective", + "word_frequency": 24163 + }, + { + "word": "exorbitante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exorbitant", + "example_sentence_native": "El precio era exorbitante para un objeto tan pequeño.", + "example_sentence_english": "The price was exorbitant for such a small object.", + "pos": "adjective", + "word_frequency": 24163 + }, + { + "word": "fajo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bundle;wad", + "example_sentence_native": "Encontró un fajo de billetes debajo del colchón.", + "example_sentence_english": "He found a wad of bills under the mattress.", + "pos": "noun", + "word_frequency": 24165 + }, + { + "word": "fajo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bundle;wad", + "example_sentence_native": "Encontró un fajo de billetes debajo del colchón.", + "example_sentence_english": "He found a wad of bills under the mattress.", + "pos": "noun", + "word_frequency": 24165 + }, + { + "word": "fedora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fedora", + "example_sentence_native": "Llevaba una fedora elegante en la cabeza.", + "example_sentence_english": "He wore a stylish fedora on his head.", + "pos": "noun", + "word_frequency": 24167 + }, + { + "word": "fedora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fedora", + "example_sentence_native": "Llevaba una fedora elegante en la cabeza.", + "example_sentence_english": "He wore a stylish fedora on his head.", + "pos": "noun", + "word_frequency": 24167 + }, + { + "word": "fenomeno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phenomenon", + "example_sentence_native": "El cambio climático es un fenómeno global.", + "example_sentence_english": "Climate change is a global phenomenon.", + "pos": "noun", + "word_frequency": 24168 + }, + { + "word": "fenomeno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phenomenon", + "example_sentence_native": "El cambio climático es un fenómeno global.", + "example_sentence_english": "Climate change is a global phenomenon.", + "pos": "noun", + "word_frequency": 24168 + }, + { + "word": "ferocidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ferocity", + "example_sentence_native": "La ferocidad del ataque sorprendió a todos.", + "example_sentence_english": "The ferocity of the attack surprised everyone.", + "pos": "noun", + "word_frequency": 24169 + }, + { + "word": "ferocidad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ferocity", + "example_sentence_native": "La ferocidad del ataque sorprendió a todos.", + "example_sentence_english": "The ferocity of the attack surprised everyone.", + "pos": "noun", + "word_frequency": 24169 + }, + { + "word": "fisicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physically", + "example_sentence_native": "Se sentía físicamente agotado después del maratón.", + "example_sentence_english": "He felt physically exhausted after the marathon.", + "pos": "adverb", + "word_frequency": 24170 + }, + { + "word": "fisicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physically", + "example_sentence_native": "Se sentía físicamente agotado después del maratón.", + "example_sentence_english": "He felt physically exhausted after the marathon.", + "pos": "adverb", + "word_frequency": 24170 + }, + { + "word": "fórum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forum", + "example_sentence_native": "Participó en un fórum de discusión sobre tecnología.", + "example_sentence_english": "He participated in a technology discussion forum.", + "pos": "noun", + "word_frequency": 24173 + }, + { + "word": "fórum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forum", + "example_sentence_native": "Participó en un fórum de discusión sobre tecnología.", + "example_sentence_english": "He participated in a technology discussion forum.", + "pos": "noun", + "word_frequency": 24173 + }, + { + "word": "gastrointestinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gastrointestinal", + "example_sentence_native": "Sufre de problemas gastrointestinales.", + "example_sentence_english": "He suffers from gastrointestinal problems.", + "pos": "adjective", + "word_frequency": 24179 + }, + { + "word": "gastrointestinal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gastrointestinal", + "example_sentence_native": "Sufre de problemas gastrointestinales.", + "example_sentence_english": "He suffers from gastrointestinal problems.", + "pos": "adjective", + "word_frequency": 24179 + }, + { + "word": "gentío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowd;throng", + "example_sentence_native": "Había un gran gentío en la plaza.", + "example_sentence_english": "There was a large crowd in the square.", + "pos": "noun", + "word_frequency": 24181 + }, + { + "word": "gentío", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowd;throng", + "example_sentence_native": "Había un gran gentío en la plaza.", + "example_sentence_english": "There was a large crowd in the square.", + "pos": "noun", + "word_frequency": 24181 + }, + { + "word": "geopolítico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geopolitical", + "example_sentence_native": "Analizaron la situación desde una perspectiva geopolítica.", + "example_sentence_english": "They analyzed the situation from a geopolitical perspective.", + "pos": "adjective", + "word_frequency": 24182 + }, + { + "word": "geopolítico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geopolitical", + "example_sentence_native": "Analizaron la situación desde una perspectiva geopolítica.", + "example_sentence_english": "They analyzed the situation from a geopolitical perspective.", + "pos": "adjective", + "word_frequency": 24182 + }, + { + "word": "gerencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managerial", + "example_sentence_native": "Tiene habilidades gerenciales excelentes.", + "example_sentence_english": "He has excellent managerial skills.", + "pos": "adjective", + "word_frequency": 24183 + }, + { + "word": "gerencial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managerial", + "example_sentence_native": "Tiene habilidades gerenciales excelentes.", + "example_sentence_english": "He has excellent managerial skills.", + "pos": "adjective", + "word_frequency": 24183 + }, + { + "word": "glam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glam;glamour", + "example_sentence_native": "Le gusta el estilo glam de los años 80.", + "example_sentence_english": "She likes the glam style of the 80s.", + "pos": "noun", + "word_frequency": 24187 + }, + { + "word": "glam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glam;glamour", + "example_sentence_native": "Le gusta el estilo glam de los años 80.", + "example_sentence_english": "She likes the glam style of the 80s.", + "pos": "noun", + "word_frequency": 24187 + }, + { + "word": "grillete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shackle;handcuff", + "example_sentence_native": "Le pusieron grilletes en las muñecas.", + "example_sentence_english": "They put shackles on his wrists.", + "pos": "noun", + "word_frequency": 24190 + }, + { + "word": "grillete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shackle;handcuff", + "example_sentence_native": "Le pusieron grilletes en las muñecas.", + "example_sentence_english": "They put shackles on his wrists.", + "pos": "noun", + "word_frequency": 24190 + }, + { + "word": "handball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handball", + "example_sentence_native": "El balonmano, o handball, es un deporte popular.", + "example_sentence_english": "Handball is a popular sport.", + "pos": "noun", + "word_frequency": 24194 + }, + { + "word": "handball", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handball", + "example_sentence_native": "El balonmano, o handball, es un deporte popular.", + "example_sentence_english": "Handball is a popular sport.", + "pos": "noun", + "word_frequency": 24194 + }, + { + "word": "hechicería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witchcraft;sorcery", + "example_sentence_native": "La historia está llena de cuentos de hechicería.", + "example_sentence_english": "History is full of tales of witchcraft.", + "pos": "noun", + "word_frequency": 24198 + }, + { + "word": "hechicería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witchcraft;sorcery", + "example_sentence_native": "La historia está llena de cuentos de hechicería.", + "example_sentence_english": "History is full of tales of witchcraft.", + "pos": "noun", + "word_frequency": 24198 + }, + { + "word": "hinchar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swell;to inflate", + "example_sentence_native": "El golpe hizo que su tobillo se hinchara.", + "example_sentence_english": "The blow caused his ankle to swell.", + "pos": "verb", + "word_frequency": 24200 + }, + { + "word": "hinchar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swell;to inflate", + "example_sentence_native": "El golpe hizo que su tobillo se hinchara.", + "example_sentence_english": "The blow caused his ankle to swell.", + "pos": "verb", + "word_frequency": 24200 + }, + { + "word": "hiriente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurtful;wounding", + "example_sentence_native": "Sus palabras fueron muy hirientes.", + "example_sentence_english": "Her words were very hurtful.", + "pos": "adjective", + "word_frequency": 24201 + }, + { + "word": "hiriente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurtful;wounding", + "example_sentence_native": "Sus palabras fueron muy hirientes.", + "example_sentence_english": "Her words were very hurtful.", + "pos": "adjective", + "word_frequency": 24201 + }, + { + "word": "hurtadillas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stealthily;on the sly (often used as \"a hurtadillas\")", + "example_sentence_native": "Entró a hurtadillas para no despertar a nadie.", + "example_sentence_english": "He entered stealthily so as not to wake anyone.", + "pos": "noun", + "word_frequency": 24203 + }, + { + "word": "hurtadillas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stealthily;on the sly (often used as \"a hurtadillas\")", + "example_sentence_native": "Entró a hurtadillas para no despertar a nadie.", + "example_sentence_english": "He entered stealthily so as not to wake anyone.", + "pos": "noun", + "word_frequency": 24203 + }, + { + "word": "ignición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignition", + "example_sentence_native": "El coche no arrancaba por un problema de ignición.", + "example_sentence_english": "The car wouldn't start due to an ignition problem.", + "pos": "noun", + "word_frequency": 24205 + }, + { + "word": "ignición", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignition", + "example_sentence_native": "El coche no arrancaba por un problema de ignición.", + "example_sentence_english": "The car wouldn't start due to an ignition problem.", + "pos": "noun", + "word_frequency": 24205 + }, + { + "word": "improviso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unexpectedly;suddenly (often used as \"de improviso\")", + "example_sentence_native": "Llegó de improviso y nos sorprendió a todos.", + "example_sentence_english": "He arrived unexpectedly and surprised us all.", + "pos": "noun", + "word_frequency": 24208 + }, + { + "word": "improviso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unexpectedly;suddenly (often used as \"de improviso\")", + "example_sentence_native": "Llegó de improviso y nos sorprendió a todos.", + "example_sentence_english": "He arrived unexpectedly and surprised us all.", + "pos": "noun", + "word_frequency": 24208 + }, + { + "word": "incautado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seized;confiscated", + "example_sentence_native": "La policía mostró el material incautado.", + "example_sentence_english": "The police showed the seized material.", + "pos": "adjective", + "word_frequency": 24209 + }, + { + "word": "incautado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seized;confiscated", + "example_sentence_native": "La policía mostró el material incautado.", + "example_sentence_english": "The police showed the seized material.", + "pos": "adjective", + "word_frequency": 24209 + }, + { + "word": "incomunicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incommunicado;isolated", + "example_sentence_native": "El prisionero estuvo incomunicado durante días.", + "example_sentence_english": "The prisoner was incommunicado for days.", + "pos": "adjective", + "word_frequency": 24210 + }, + { + "word": "incomunicado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incommunicado;isolated", + "example_sentence_native": "El prisionero estuvo incomunicado durante días.", + "example_sentence_english": "The prisoner was incommunicado for days.", + "pos": "adjective", + "word_frequency": 24210 + }, + { + "word": "inconforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonconformist;dissatisfied", + "example_sentence_native": "La población estaba inconforme con las nuevas medidas.", + "example_sentence_english": "The population was dissatisfied with the new measures.", + "pos": "adjective", + "word_frequency": 24211 + }, + { + "word": "inconforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonconformist;dissatisfied", + "example_sentence_native": "La población estaba inconforme con las nuevas medidas.", + "example_sentence_english": "The population was dissatisfied with the new measures.", + "pos": "adjective", + "word_frequency": 24211 + }, + { + "word": "inexplicablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexplicably", + "example_sentence_native": "Desapareció inexplicablemente de la habitación.", + "example_sentence_english": "He inexplicably disappeared from the room.", + "pos": "adverb", + "word_frequency": 24212 + }, + { + "word": "inexplicablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexplicably", + "example_sentence_native": "Desapareció inexplicablemente de la habitación.", + "example_sentence_english": "He inexplicably disappeared from the room.", + "pos": "adverb", + "word_frequency": 24212 + }, + { + "word": "intercepción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interception", + "example_sentence_native": "La intercepción del pase fue crucial para el partido.", + "example_sentence_english": "The interception of the pass was crucial for the game.", + "pos": "noun", + "word_frequency": 24213 + }, + { + "word": "intercepción", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interception", + "example_sentence_native": "La intercepción del pase fue crucial para el partido.", + "example_sentence_english": "The interception of the pass was crucial for the game.", + "pos": "noun", + "word_frequency": 24213 + }, + { + "word": "intergubernamental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intergovernmental", + "example_sentence_native": "Se celebró una reunión intergubernamental.", + "example_sentence_english": "An intergovernmental meeting was held.", + "pos": "adjective", + "word_frequency": 24214 + }, + { + "word": "intergubernamental", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intergovernmental", + "example_sentence_native": "Se celebró una reunión intergubernamental.", + "example_sentence_english": "An intergovernmental meeting was held.", + "pos": "adjective", + "word_frequency": 24214 + }, + { + "word": "invitacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invitation", + "example_sentence_native": "Recibí una invitación a la fiesta.", + "example_sentence_english": "I received an invitation to the party.", + "pos": "noun", + "word_frequency": 24215 + }, + { + "word": "invitacion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invitation", + "example_sentence_native": "Recibí una invitación a la fiesta.", + "example_sentence_english": "I received an invitation to the party.", + "pos": "noun", + "word_frequency": 24215 + }, + { + "word": "invocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invoked;called upon", + "example_sentence_native": "El espíritu invocado apareció en la oscuridad.", + "example_sentence_english": "The invoked spirit appeared in the darkness.", + "pos": "adjective", + "word_frequency": 24216 + }, + { + "word": "invocado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invoked;called upon", + "example_sentence_native": "El espíritu invocado apareció en la oscuridad.", + "example_sentence_english": "The invoked spirit appeared in the darkness.", + "pos": "adjective", + "word_frequency": 24216 + }, + { + "word": "inútilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uselessly;in vain", + "example_sentence_native": "Intentó abrir la puerta inútilmente.", + "example_sentence_english": "He tried to open the door uselessly.", + "pos": "adverb", + "word_frequency": 24217 + }, + { + "word": "inútilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uselessly;in vain", + "example_sentence_native": "Intentó abrir la puerta inútilmente.", + "example_sentence_english": "He tried to open the door uselessly.", + "pos": "adverb", + "word_frequency": 24217 + }, + { + "word": "jordano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Jordanian", + "example_sentence_native": "Es un ciudadano jordano.", + "example_sentence_english": "He is a Jordanian citizen.", + "pos": "adjective", + "word_frequency": 24220 + }, + { + "word": "jordano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Jordanian", + "example_sentence_native": "Es un ciudadano jordano.", + "example_sentence_english": "He is a Jordanian citizen.", + "pos": "adjective", + "word_frequency": 24220 + }, + { + "word": "judeo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Judeo- (prefix related to Jews;Judaism)", + "example_sentence_native": "La cultura judeocristiana tiene una gran influencia.", + "example_sentence_english": "Judeo-Christian culture has a great influence.", + "pos": "adjective", + "word_frequency": 24222 + }, + { + "word": "judeo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Judeo- (prefix related to Jews;Judaism)", + "example_sentence_native": "La cultura judeocristiana tiene una gran influencia.", + "example_sentence_english": "Judeo-Christian culture has a great influence.", + "pos": "adjective", + "word_frequency": 24222 + }, + { + "word": "laborioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laborious;hardworking", + "example_sentence_native": "Fue un trabajo muy laborioso.", + "example_sentence_english": "It was a very laborious job.", + "pos": "adjective", + "word_frequency": 24225 + }, + { + "word": "laborioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laborious;hardworking", + "example_sentence_native": "Fue un trabajo muy laborioso.", + "example_sentence_english": "It was a very laborious job.", + "pos": "adjective", + "word_frequency": 24225 + }, + { + "word": "ladrido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bark (of a dog)", + "example_sentence_native": "Escuché el ladrido de un perro.", + "example_sentence_english": "I heard a dog's bark.", + "pos": "noun", + "word_frequency": 24226 + }, + { + "word": "ladrido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bark (of a dog)", + "example_sentence_native": "Escuché el ladrido de un perro.", + "example_sentence_english": "I heard a dog's bark.", + "pos": "noun", + "word_frequency": 24226 + }, + { + "word": "lanzallama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flamethrower", + "example_sentence_native": "El soldado llevaba un lanzallamas.", + "example_sentence_english": "The soldier carried a flamethrower.", + "pos": "noun", + "word_frequency": 24227 + }, + { + "word": "lanzallama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flamethrower", + "example_sentence_native": "El soldado llevaba un lanzallamas.", + "example_sentence_english": "The soldier carried a flamethrower.", + "pos": "noun", + "word_frequency": 24227 + }, + { + "word": "limo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud;slime;silt", + "example_sentence_native": "El río dejó mucho limo después de la inundación.", + "example_sentence_english": "The river left a lot of silt after the flood.", + "pos": "noun", + "word_frequency": 24230 + }, + { + "word": "limo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud;slime;silt", + "example_sentence_native": "El río dejó mucho limo después de la inundación.", + "example_sentence_english": "The river left a lot of silt after the flood.", + "pos": "noun", + "word_frequency": 24230 + }, + { + "word": "litúrgico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liturgical", + "example_sentence_native": "La ceremonia tenía un carácter litúrgico.", + "example_sentence_english": "The ceremony had a liturgical character.", + "pos": "adjective", + "word_frequency": 24231 + }, + { + "word": "litúrgico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liturgical", + "example_sentence_native": "La ceremonia tenía un carácter litúrgico.", + "example_sentence_english": "The ceremony had a liturgical character.", + "pos": "adjective", + "word_frequency": 24231 + }, + { + "word": "lésbico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesbian", + "example_sentence_native": "Es una mujer lésbica.", + "example_sentence_english": "She is a lesbian woman.", + "pos": "adjective", + "word_frequency": 24234 + }, + { + "word": "lésbico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesbian", + "example_sentence_native": "Es una mujer lésbica.", + "example_sentence_english": "She is a lesbian woman.", + "pos": "adjective", + "word_frequency": 24234 + }, + { + "word": "machacar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crush;to pound;to mash", + "example_sentence_native": "Hay que machacar el ajo para la salsa.", + "example_sentence_english": "You have to crush the garlic for the sauce.", + "pos": "verb", + "word_frequency": 24235 + }, + { + "word": "machacar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crush;to pound;to mash", + "example_sentence_native": "Hay que machacar el ajo para la salsa.", + "example_sentence_english": "You have to crush the garlic for the sauce.", + "pos": "verb", + "word_frequency": 24235 + }, + { + "word": "madridista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Real Madrid fan;player", + "example_sentence_native": "Es un madridista de corazón.", + "example_sentence_english": "He is a Real Madrid fan at heart.", + "pos": "noun", + "word_frequency": 24236 + }, + { + "word": "madridista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Real Madrid fan;player", + "example_sentence_native": "Es un madridista de corazón.", + "example_sentence_english": "He is a Real Madrid fan at heart.", + "pos": "noun", + "word_frequency": 24236 + }, + { + "word": "magíster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "master (academic degree)", + "example_sentence_native": "Obtuvo su título de magíster en literatura.", + "example_sentence_english": "He obtained his master's degree in literature.", + "pos": "noun", + "word_frequency": 24237 + }, + { + "word": "magíster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "master (academic degree)", + "example_sentence_native": "Obtuvo su título de magíster en literatura.", + "example_sentence_english": "He obtained his master's degree in literature.", + "pos": "noun", + "word_frequency": 24237 + }, + { + "word": "malaui", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Malawi (country;person from Malawi)", + "example_sentence_native": "Viajó a Malaui el año pasado.", + "example_sentence_english": "He traveled to Malawi last year.", + "pos": "noun", + "word_frequency": 24238 + }, + { + "word": "malaui", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Malawi (country;person from Malawi)", + "example_sentence_native": "Viajó a Malaui el año pasado.", + "example_sentence_english": "He traveled to Malawi last year.", + "pos": "noun", + "word_frequency": 24238 + }, + { + "word": "matizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nuance", + "example_sentence_native": "Es importante matizar tus argumentos.", + "example_sentence_english": "It's important to nuance your arguments.", + "pos": "verb", + "word_frequency": 24241 + }, + { + "word": "matizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nuance", + "example_sentence_native": "Es importante matizar tus argumentos.", + "example_sentence_english": "It's important to nuance your arguments.", + "pos": "verb", + "word_frequency": 24241 + }, + { + "word": "mecanizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "machined", + "example_sentence_native": "La pieza fue mecanizada con precisión.", + "example_sentence_english": "The part was machined with precision.", + "pos": "adjective", + "word_frequency": 24243 + }, + { + "word": "mecanizado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "machined", + "example_sentence_native": "La pieza fue mecanizada con precisión.", + "example_sentence_english": "The part was machined with precision.", + "pos": "adjective", + "word_frequency": 24243 + }, + { + "word": "miligramo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "milligram", + "example_sentence_native": "Necesito un miligramo de este medicamento.", + "example_sentence_english": "I need one milligram of this medicine.", + "pos": "noun", + "word_frequency": 24248 + }, + { + "word": "miligramo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "milligram", + "example_sentence_native": "Necesito un miligramo de este medicamento.", + "example_sentence_english": "I need one milligram of this medicine.", + "pos": "noun", + "word_frequency": 24248 + }, + { + "word": "millardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billion (10^9)", + "example_sentence_native": "La población mundial supera los siete millardos.", + "example_sentence_english": "The world population exceeds seven billion.", + "pos": "noun", + "word_frequency": 24249 + }, + { + "word": "millardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billion (10^9)", + "example_sentence_native": "La población mundial supera los siete millardos.", + "example_sentence_english": "The world population exceeds seven billion.", + "pos": "noun", + "word_frequency": 24249 + }, + { + "word": "moca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mocha", + "example_sentence_native": "Quiero un café con sabor a moca.", + "example_sentence_english": "I want a coffee with mocha flavor.", + "pos": "noun", + "word_frequency": 24251 + }, + { + "word": "moca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mocha", + "example_sentence_native": "Quiero un café con sabor a moca.", + "example_sentence_english": "I want a coffee with mocha flavor.", + "pos": "noun", + "word_frequency": 24251 + }, + { + "word": "modestamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modestly", + "example_sentence_native": "Él aceptó el premio modestamente.", + "example_sentence_english": "He accepted the award modestly.", + "pos": "adverb", + "word_frequency": 24252 + }, + { + "word": "modestamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modestly", + "example_sentence_native": "Él aceptó el premio modestamente.", + "example_sentence_english": "He accepted the award modestly.", + "pos": "adverb", + "word_frequency": 24252 + }, + { + "word": "modista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressmaker", + "example_sentence_native": "Mi abuela era una modista muy talentosa.", + "example_sentence_english": "My grandmother was a very talented dressmaker.", + "pos": "noun", + "word_frequency": 24253 + }, + { + "word": "modista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressmaker", + "example_sentence_native": "Mi abuela era una modista muy talentosa.", + "example_sentence_english": "My grandmother was a very talented dressmaker.", + "pos": "noun", + "word_frequency": 24253 + }, + { + "word": "mogollón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lot (colloquial)", + "example_sentence_native": "Había mogollón de gente en el concierto.", + "example_sentence_english": "There were a lot of people at the concert.", + "pos": "noun", + "word_frequency": 24254 + }, + { + "word": "mogollón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a lot (colloquial)", + "example_sentence_native": "Había mogollón de gente en el concierto.", + "example_sentence_english": "There were a lot of people at the concert.", + "pos": "noun", + "word_frequency": 24254 + }, + { + "word": "morera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mulberry tree", + "example_sentence_native": "El jardín tiene una morera grande.", + "example_sentence_english": "The garden has a large mulberry tree.", + "pos": "noun", + "word_frequency": 24255 + }, + { + "word": "morera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mulberry tree", + "example_sentence_native": "El jardín tiene una morera grande.", + "example_sentence_english": "The garden has a large mulberry tree.", + "pos": "noun", + "word_frequency": 24255 + }, + { + "word": "moroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquent (payer)", + "example_sentence_native": "El cliente es moroso con sus pagos.", + "example_sentence_english": "The client is delinquent with their payments.", + "pos": "adjective", + "word_frequency": 24256 + }, + { + "word": "moroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquent (payer)", + "example_sentence_native": "El cliente es moroso con sus pagos.", + "example_sentence_english": "The client is delinquent with their payments.", + "pos": "adjective", + "word_frequency": 24256 + }, + { + "word": "mortífero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadly", + "example_sentence_native": "La enfermedad es mortífera si no se trata.", + "example_sentence_english": "The disease is deadly if not treated.", + "pos": "adjective", + "word_frequency": 24257 + }, + { + "word": "mortífero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadly", + "example_sentence_native": "La enfermedad es mortífera si no se trata.", + "example_sentence_english": "The disease is deadly if not treated.", + "pos": "adjective", + "word_frequency": 24257 + }, + { + "word": "motivador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivating", + "example_sentence_native": "Su discurso fue muy motivador.", + "example_sentence_english": "His speech was very motivating.", + "pos": "adjective", + "word_frequency": 24258 + }, + { + "word": "motivador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivating", + "example_sentence_native": "Su discurso fue muy motivador.", + "example_sentence_english": "His speech was very motivating.", + "pos": "adjective", + "word_frequency": 24258 + }, + { + "word": "nanotecnología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nanotechnology", + "example_sentence_native": "La nanotecnología tiene muchas aplicaciones futuras.", + "example_sentence_english": "Nanotechnology has many future applications.", + "pos": "noun", + "word_frequency": 24260 + }, + { + "word": "nanotecnología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nanotechnology", + "example_sentence_native": "La nanotecnología tiene muchas aplicaciones futuras.", + "example_sentence_english": "Nanotechnology has many future applications.", + "pos": "noun", + "word_frequency": 24260 + }, + { + "word": "náufrago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "castaway", + "example_sentence_native": "El náufrago fue rescatado después de días.", + "example_sentence_english": "The castaway was rescued after days.", + "pos": "noun", + "word_frequency": 24264 + }, + { + "word": "náufrago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "castaway", + "example_sentence_native": "El náufrago fue rescatado después de días.", + "example_sentence_english": "The castaway was rescued after days.", + "pos": "noun", + "word_frequency": 24264 + }, + { + "word": "obtuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtuse", + "example_sentence_native": "Es un ángulo obtuso.", + "example_sentence_english": "It's an obtuse angle.", + "pos": "adjective", + "word_frequency": 24265 + }, + { + "word": "obtuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtuse", + "example_sentence_native": "Es un ángulo obtuso.", + "example_sentence_english": "It's an obtuse angle.", + "pos": "adjective", + "word_frequency": 24265 + }, + { + "word": "oftalmología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ophthalmology", + "example_sentence_native": "Estudió oftalmología en la universidad.", + "example_sentence_english": "He studied ophthalmology at the university.", + "pos": "noun", + "word_frequency": 24266 + }, + { + "word": "oftalmología", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ophthalmology", + "example_sentence_native": "Estudió oftalmología en la universidad.", + "example_sentence_english": "He studied ophthalmology at the university.", + "pos": "noun", + "word_frequency": 24266 + }, + { + "word": "papu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dude (colloquial)", + "example_sentence_native": "¡Qué onda, papu!", + "example_sentence_english": "What's up, dude!", + "pos": "noun", + "word_frequency": 24268 + }, + { + "word": "papu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dude (colloquial)", + "example_sentence_native": "¡Qué onda, papu!", + "example_sentence_english": "What's up, dude!", + "pos": "noun", + "word_frequency": 24268 + }, + { + "word": "parachoques", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bumper", + "example_sentence_native": "El coche necesita un nuevo parachoques.", + "example_sentence_english": "The car needs a new bumper.", + "pos": "noun", + "word_frequency": 24269 + }, + { + "word": "parachoques", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bumper", + "example_sentence_native": "El coche necesita un nuevo parachoques.", + "example_sentence_english": "The car needs a new bumper.", + "pos": "noun", + "word_frequency": 24269 + }, + { + "word": "partidazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great match", + "example_sentence_native": "Fue un partidazo, lleno de emoción.", + "example_sentence_english": "It was a great match, full of excitement.", + "pos": "noun", + "word_frequency": 24270 + }, + { + "word": "partidazo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "great match", + "example_sentence_native": "Fue un partidazo, lleno de emoción.", + "example_sentence_english": "It was a great match, full of excitement.", + "pos": "noun", + "word_frequency": 24270 + }, + { + "word": "peral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pear tree", + "example_sentence_native": "Hay un peral en el huerto.", + "example_sentence_english": "There is a pear tree in the orchard.", + "pos": "noun", + "word_frequency": 24271 + }, + { + "word": "peral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pear tree", + "example_sentence_native": "Hay un peral en el huerto.", + "example_sentence_english": "There is a pear tree in the orchard.", + "pos": "noun", + "word_frequency": 24271 + }, + { + "word": "perfumería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfume shop", + "example_sentence_native": "Compré un regalo en la perfumería.", + "example_sentence_english": "I bought a gift at the perfume shop.", + "pos": "noun", + "word_frequency": 24272 + }, + { + "word": "perfumería", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfume shop", + "example_sentence_native": "Compré un regalo en la perfumería.", + "example_sentence_english": "I bought a gift at the perfume shop.", + "pos": "noun", + "word_frequency": 24272 + }, + { + "word": "pichi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pinafore dress", + "example_sentence_native": "Llevaba un pichi de mezclilla.", + "example_sentence_english": "She was wearing a denim pinafore dress.", + "pos": "noun", + "word_frequency": 24273 + }, + { + "word": "pichi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pinafore dress", + "example_sentence_native": "Llevaba un pichi de mezclilla.", + "example_sentence_english": "She was wearing a denim pinafore dress.", + "pos": "noun", + "word_frequency": 24273 + }, + { + "word": "pilates", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pilates", + "example_sentence_native": "Practico Pilates dos veces por semana.", + "example_sentence_english": "I practice Pilates twice a week.", + "pos": "noun", + "word_frequency": 24274 + }, + { + "word": "pilates", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pilates", + "example_sentence_native": "Practico Pilates dos veces por semana.", + "example_sentence_english": "I practice Pilates twice a week.", + "pos": "noun", + "word_frequency": 24274 + }, + { + "word": "plasticidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plasticity", + "example_sentence_native": "La plasticidad del cerebro es asombrosa.", + "example_sentence_english": "The plasticity of the brain is amazing.", + "pos": "noun", + "word_frequency": 24275 + }, + { + "word": "plasticidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plasticity", + "example_sentence_native": "La plasticidad del cerebro es asombrosa.", + "example_sentence_english": "The plasticity of the brain is amazing.", + "pos": "noun", + "word_frequency": 24275 + }, + { + "word": "provocativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocative", + "example_sentence_native": "Su comentario fue muy provocativo.", + "example_sentence_english": "His comment was very provocative.", + "pos": "adjective", + "word_frequency": 24283 + }, + { + "word": "provocativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocative", + "example_sentence_native": "Su comentario fue muy provocativo.", + "example_sentence_english": "His comment was very provocative.", + "pos": "adjective", + "word_frequency": 24283 + }, + { + "word": "psycho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psycho", + "example_sentence_native": "Esa película de terror es un clásico sobre un psycho.", + "example_sentence_english": "That horror movie is a classic about a psycho.", + "pos": "noun", + "word_frequency": 24285 + }, + { + "word": "psycho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psycho", + "example_sentence_native": "Esa película de terror es un clásico sobre un psycho.", + "example_sentence_english": "That horror movie is a classic about a psycho.", + "pos": "noun", + "word_frequency": 24285 + }, + { + "word": "publisher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publisher", + "example_sentence_native": "El publisher lanzó el nuevo libro la semana pasada.", + "example_sentence_english": "The publisher released the new book last week.", + "pos": "noun", + "word_frequency": 24286 + }, + { + "word": "publisher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publisher", + "example_sentence_native": "El publisher lanzó el nuevo libro la semana pasada.", + "example_sentence_english": "The publisher released the new book last week.", + "pos": "noun", + "word_frequency": 24286 + }, + { + "word": "punzante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sharp;piercing", + "example_sentence_native": "Sentí un dolor punzante en el costado.", + "example_sentence_english": "I felt a sharp pain in my side.", + "pos": "adjective", + "word_frequency": 24287 + }, + { + "word": "punzante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sharp;piercing", + "example_sentence_native": "Sentí un dolor punzante en el costado.", + "example_sentence_english": "I felt a sharp pain in my side.", + "pos": "adjective", + "word_frequency": 24287 + }, + { + "word": "pívot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pivot;center (basketball)", + "example_sentence_native": "El pívot del equipo anotó veinte puntos.", + "example_sentence_english": "The team's center scored twenty points.", + "pos": "noun", + "word_frequency": 24288 + }, + { + "word": "pívot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pivot;center (basketball)", + "example_sentence_native": "El pívot del equipo anotó veinte puntos.", + "example_sentence_english": "The team's center scored twenty points.", + "pos": "noun", + "word_frequency": 24288 + }, + { + "word": "quebrantar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to break;to violate", + "example_sentence_native": "No debes quebrantar las reglas.", + "example_sentence_english": "You must not break the rules.", + "pos": "verb", + "word_frequency": 24290 + }, + { + "word": "quebrantar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to break;to violate", + "example_sentence_native": "No debes quebrantar las reglas.", + "example_sentence_english": "You must not break the rules.", + "pos": "verb", + "word_frequency": 24290 + }, + { + "word": "quote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quote", + "example_sentence_native": "Necesito una quote para el seguro del coche.", + "example_sentence_english": "I need a quote for car insurance.", + "pos": "noun", + "word_frequency": 24292 + }, + { + "word": "quote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quote", + "example_sentence_native": "Necesito una quote para el seguro del coche.", + "example_sentence_english": "I need a quote for car insurance.", + "pos": "noun", + "word_frequency": 24292 + }, + { + "word": "rajar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to split;to crack", + "example_sentence_native": "El carpintero va a rajar la madera.", + "example_sentence_english": "The carpenter is going to split the wood.", + "pos": "verb", + "word_frequency": 24294 + }, + { + "word": "rajar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to split;to crack", + "example_sentence_native": "El carpintero va a rajar la madera.", + "example_sentence_english": "The carpenter is going to split the wood.", + "pos": "verb", + "word_frequency": 24294 + }, + { + "word": "ranchero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rancher;country-style", + "example_sentence_native": "Le gusta la música ranchera.", + "example_sentence_english": "He likes ranchero music.", + "pos": "adjective", + "word_frequency": 24295 + }, + { + "word": "ranchero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rancher;country-style", + "example_sentence_native": "Le gusta la música ranchera.", + "example_sentence_english": "He likes ranchero music.", + "pos": "adjective", + "word_frequency": 24295 + }, + { + "word": "rapa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buzz cut;shaven head", + "example_sentence_native": "Se hizo una rapa para el verano.", + "example_sentence_english": "He got a buzz cut for the summer.", + "pos": "noun", + "word_frequency": 24296 + }, + { + "word": "rapa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buzz cut;shaven head", + "example_sentence_native": "Se hizo una rapa para el verano.", + "example_sentence_english": "He got a buzz cut for the summer.", + "pos": "noun", + "word_frequency": 24296 + }, + { + "word": "rastrero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despicable;vile", + "example_sentence_native": "Su comportamiento fue rastrero y deshonesto.", + "example_sentence_english": "His behavior was despicable and dishonest.", + "pos": "adjective", + "word_frequency": 24297 + }, + { + "word": "rastrero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despicable;vile", + "example_sentence_native": "Su comportamiento fue rastrero y deshonesto.", + "example_sentence_english": "His behavior was despicable and dishonest.", + "pos": "adjective", + "word_frequency": 24297 + }, + { + "word": "rayón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scratch;streak;rayon", + "example_sentence_native": "El coche tiene un rayón en la puerta.", + "example_sentence_english": "The car has a scratch on the door.", + "pos": "noun", + "word_frequency": 24299 + }, + { + "word": "rayón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scratch;streak;rayon", + "example_sentence_native": "El coche tiene un rayón en la puerta.", + "example_sentence_english": "The car has a scratch on the door.", + "pos": "noun", + "word_frequency": 24299 + }, + { + "word": "recibidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hall;entrance hall", + "example_sentence_native": "Dejé las llaves en la mesa del recibidor.", + "example_sentence_english": "I left the keys on the table in the hall.", + "pos": "noun", + "word_frequency": 24300 + }, + { + "word": "recibidor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hall;entrance hall", + "example_sentence_native": "Dejé las llaves en la mesa del recibidor.", + "example_sentence_english": "I left the keys on the table in the hall.", + "pos": "noun", + "word_frequency": 24300 + }, + { + "word": "redoblar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to redouble;to increase", + "example_sentence_native": "Debemos redoblar nuestros esfuerzos.", + "example_sentence_english": "We must redouble our efforts.", + "pos": "verb", + "word_frequency": 24301 + }, + { + "word": "redoblar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to redouble;to increase", + "example_sentence_native": "Debemos redoblar nuestros esfuerzos.", + "example_sentence_english": "We must redouble our efforts.", + "pos": "verb", + "word_frequency": 24301 + }, + { + "word": "refracción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refraction", + "example_sentence_native": "La refracción de la luz es un fenómeno óptico.", + "example_sentence_english": "The refraction of light is an optical phenomenon.", + "pos": "noun", + "word_frequency": 24302 + }, + { + "word": "refracción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refraction", + "example_sentence_native": "La refracción de la luz es un fenómeno óptico.", + "example_sentence_english": "The refraction of light is an optical phenomenon.", + "pos": "noun", + "word_frequency": 24302 + }, + { + "word": "regatear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to haggle;to bargain", + "example_sentence_native": "Me gusta regatear en el mercado.", + "example_sentence_english": "I like to haggle at the market.", + "pos": "verb", + "word_frequency": 24303 + }, + { + "word": "regatear", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to haggle;to bargain", + "example_sentence_native": "Me gusta regatear en el mercado.", + "example_sentence_english": "I like to haggle at the market.", + "pos": "verb", + "word_frequency": 24303 + }, + { + "word": "reivindicado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vindicated;reclaimed", + "example_sentence_native": "Su reputación fue finalmente reivindicada.", + "example_sentence_english": "His reputation was finally vindicated.", + "pos": "adjective", + "word_frequency": 24304 + }, + { + "word": "reivindicado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vindicated;reclaimed", + "example_sentence_native": "Su reputación fue finalmente reivindicada.", + "example_sentence_english": "His reputation was finally vindicated.", + "pos": "adjective", + "word_frequency": 24304 + }, + { + "word": "resignar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resign;to give up", + "example_sentence_native": "Tuvo que resignarse a su destino.", + "example_sentence_english": "He had to resign himself to his fate.", + "pos": "verb", + "word_frequency": 24306 + }, + { + "word": "resignar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resign;to give up", + "example_sentence_native": "Tuvo que resignarse a su destino.", + "example_sentence_english": "He had to resign himself to his fate.", + "pos": "verb", + "word_frequency": 24306 + }, + { + "word": "responsablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsibly", + "example_sentence_native": "Debemos actuar responsablemente.", + "example_sentence_english": "We must act responsibly.", + "pos": "adverb", + "word_frequency": 24307 + }, + { + "word": "responsablemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsibly", + "example_sentence_native": "Debemos actuar responsablemente.", + "example_sentence_english": "We must act responsibly.", + "pos": "adverb", + "word_frequency": 24307 + }, + { + "word": "retazo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remnant;scrap", + "example_sentence_native": "Usó un retazo de tela para remendar la camisa.", + "example_sentence_english": "She used a scrap of fabric to mend the shirt.", + "pos": "noun", + "word_frequency": 24308 + }, + { + "word": "retazo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remnant;scrap", + "example_sentence_native": "Usó un retazo de tela para remendar la camisa.", + "example_sentence_english": "She used a scrap of fabric to mend the shirt.", + "pos": "noun", + "word_frequency": 24308 + }, + { + "word": "scientific", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scientific", + "example_sentence_native": "Necesitamos un enfoque scientific para resolver el problema.", + "example_sentence_english": "We need a scientific approach to solve the problem.", + "pos": "adjective", + "word_frequency": 24317 + }, + { + "word": "scientific", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scientific", + "example_sentence_native": "Necesitamos un enfoque scientific para resolver el problema.", + "example_sentence_english": "We need a scientific approach to solve the problem.", + "pos": "adjective", + "word_frequency": 24317 + }, + { + "word": "sepelio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burial;funeral", + "example_sentence_native": "El sepelio se realizará mañana por la mañana.", + "example_sentence_english": "The burial will take place tomorrow morning.", + "pos": "noun", + "word_frequency": 24319 + }, + { + "word": "sepelio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burial;funeral", + "example_sentence_native": "El sepelio se realizará mañana por la mañana.", + "example_sentence_english": "The burial will take place tomorrow morning.", + "pos": "noun", + "word_frequency": 24319 + }, + { + "word": "servicial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helpful;obliging", + "example_sentence_native": "Es una persona muy servicial y siempre dispuesta a ayudar.", + "example_sentence_english": "He is a very helpful person and always willing to assist.", + "pos": "adjective", + "word_frequency": 24320 + }, + { + "word": "servicial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helpful;obliging", + "example_sentence_native": "Es una persona muy servicial y siempre dispuesta a ayudar.", + "example_sentence_english": "He is a very helpful person and always willing to assist.", + "pos": "adjective", + "word_frequency": 24320 + }, + { + "word": "sincretismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syncretism", + "example_sentence_native": "El sincretismo religioso es común en muchas culturas.", + "example_sentence_english": "Religious syncretism is common in many cultures.", + "pos": "noun", + "word_frequency": 24322 + }, + { + "word": "sincretismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syncretism", + "example_sentence_native": "El sincretismo religioso es común en muchas culturas.", + "example_sentence_english": "Religious syncretism is common in many cultures.", + "pos": "noun", + "word_frequency": 24322 + }, + { + "word": "sindrome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "syndrome", + "example_sentence_native": "El paciente fue diagnosticado con un síndrome raro.", + "example_sentence_english": "The patient was diagnosed with a rare syndrome.", + "pos": "noun", + "word_frequency": 24323 + }, + { + "word": "sindrome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "syndrome", + "example_sentence_native": "El paciente fue diagnosticado con un síndrome raro.", + "example_sentence_english": "The patient was diagnosed with a rare syndrome.", + "pos": "noun", + "word_frequency": 24323 + }, + { + "word": "smog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smog", + "example_sentence_native": "La ciudad estaba cubierta por una capa densa de smog.", + "example_sentence_english": "The city was covered by a dense layer of smog.", + "pos": "noun", + "word_frequency": 24324 + }, + { + "word": "smog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smog", + "example_sentence_native": "La ciudad estaba cubierta por una capa densa de smog.", + "example_sentence_english": "The city was covered by a dense layer of smog.", + "pos": "noun", + "word_frequency": 24324 + }, + { + "word": "sobreponer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to superimpose;to overcome", + "example_sentence_native": "Es difícil sobreponerse a una pérdida tan grande.", + "example_sentence_english": "It's difficult to overcome such a great loss.", + "pos": "verb", + "word_frequency": 24325 + }, + { + "word": "sobreponer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to superimpose;to overcome", + "example_sentence_native": "Es difícil sobreponerse a una pérdida tan grande.", + "example_sentence_english": "It's difficult to overcome such a great loss.", + "pos": "verb", + "word_frequency": 24325 + }, + { + "word": "spinning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spinning (exercise)", + "example_sentence_native": "Voy a mi clase de spinning tres veces por semana.", + "example_sentence_english": "I go to my spinning class three times a week.", + "pos": "noun", + "word_frequency": 24327 + }, + { + "word": "spinning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spinning (exercise)", + "example_sentence_native": "Voy a mi clase de spinning tres veces por semana.", + "example_sentence_english": "I go to my spinning class three times a week.", + "pos": "noun", + "word_frequency": 24327 + }, + { + "word": "subcomité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subcommittee", + "example_sentence_native": "El subcomité se reunirá la próxima semana para discutir el informe.", + "example_sentence_english": "The subcommittee will meet next week to discuss the report.", + "pos": "noun", + "word_frequency": 24329 + }, + { + "word": "subcomité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subcommittee", + "example_sentence_native": "El subcomité se reunirá la próxima semana para discutir el informe.", + "example_sentence_english": "The subcommittee will meet next week to discuss the report.", + "pos": "noun", + "word_frequency": 24329 + }, + { + "word": "subestación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substation", + "example_sentence_native": "La subestación eléctrica sufrió un corte de energía.", + "example_sentence_english": "The electrical substation suffered a power outage.", + "pos": "noun", + "word_frequency": 24330 + }, + { + "word": "subestación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substation", + "example_sentence_native": "La subestación eléctrica sufrió un corte de energía.", + "example_sentence_english": "The electrical substation suffered a power outage.", + "pos": "noun", + "word_frequency": 24330 + }, + { + "word": "subjefe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deputy chief;assistant manager", + "example_sentence_native": "El subjefe se encargará del departamento durante su ausencia.", + "example_sentence_english": "The deputy chief will be in charge of the department during his absence.", + "pos": "noun", + "word_frequency": 24331 + }, + { + "word": "subjefe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deputy chief;assistant manager", + "example_sentence_native": "El subjefe se encargará del departamento durante su ausencia.", + "example_sentence_english": "The deputy chief will be in charge of the department during his absence.", + "pos": "noun", + "word_frequency": 24331 + }, + { + "word": "subliminal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subliminal", + "example_sentence_native": "Hay mensajes subliminales en la publicidad.", + "example_sentence_english": "There are subliminal messages in advertising.", + "pos": "adjective", + "word_frequency": 24332 + }, + { + "word": "subliminal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subliminal", + "example_sentence_native": "Hay mensajes subliminales en la publicidad.", + "example_sentence_english": "There are subliminal messages in advertising.", + "pos": "adjective", + "word_frequency": 24332 + }, + { + "word": "supernova", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supernova", + "example_sentence_native": "La explosión de una supernova es un evento cósmico impresionante.", + "example_sentence_english": "The explosion of a supernova is an impressive cosmic event.", + "pos": "noun", + "word_frequency": 24333 + }, + { + "word": "supernova", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supernova", + "example_sentence_native": "La explosión de una supernova es un evento cósmico impresionante.", + "example_sentence_english": "The explosion of a supernova is an impressive cosmic event.", + "pos": "noun", + "word_frequency": 24333 + }, + { + "word": "sustentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sustenance;support;lift (aerodynamics)", + "example_sentence_native": "La sustentación es clave para el vuelo de los aviones.", + "example_sentence_english": "Lift is key for airplane flight.", + "pos": "noun", + "word_frequency": 24334 + }, + { + "word": "sustentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sustenance;support;lift (aerodynamics)", + "example_sentence_native": "La sustentación es clave para el vuelo de los aviones.", + "example_sentence_english": "Lift is key for airplane flight.", + "pos": "noun", + "word_frequency": 24334 + }, + { + "word": "tattoo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "example_sentence_native": "Se hizo un nuevo tattoo en el brazo.", + "example_sentence_english": "He got a new tattoo on his arm.", + "pos": "noun", + "word_frequency": 24336 + }, + { + "word": "tattoo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "example_sentence_native": "Se hizo un nuevo tattoo en el brazo.", + "example_sentence_english": "He got a new tattoo on his arm.", + "pos": "noun", + "word_frequency": 24336 + }, + { + "word": "termoeléctrico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thermoelectric", + "example_sentence_native": "La planta termoeléctrica genera electricidad a partir del calor.", + "example_sentence_english": "The thermoelectric plant generates electricity from heat.", + "pos": "adjective", + "word_frequency": 24339 + }, + { + "word": "termoeléctrico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thermoelectric", + "example_sentence_native": "La planta termoeléctrica genera electricidad a partir del calor.", + "example_sentence_english": "The thermoelectric plant generates electricity from heat.", + "pos": "adjective", + "word_frequency": 24339 + }, + { + "word": "toledano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Toledo", + "example_sentence_native": "El queso manchego es un producto toledano muy famoso.", + "example_sentence_english": "Manchego cheese is a very famous product from Toledo.", + "pos": "adjective", + "word_frequency": 24343 + }, + { + "word": "toledano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Toledo", + "example_sentence_native": "El queso manchego es un producto toledano muy famoso.", + "example_sentence_english": "Manchego cheese is a very famous product from Toledo.", + "pos": "adjective", + "word_frequency": 24343 + }, + { + "word": "toral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamental;main;crucial", + "example_sentence_native": "Este es un punto toral en nuestra discusión.", + "example_sentence_english": "This is a crucial point in our discussion.", + "pos": "adjective", + "word_frequency": 24344 + }, + { + "word": "toral", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamental;main;crucial", + "example_sentence_native": "Este es un punto toral en nuestra discusión.", + "example_sentence_english": "This is a crucial point in our discussion.", + "pos": "adjective", + "word_frequency": 24344 + }, + { + "word": "trend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trend", + "example_sentence_native": "Esa es la nueva trend en moda.", + "example_sentence_english": "That's the new trend in fashion.", + "pos": "noun", + "word_frequency": 24346 + }, + { + "word": "trend", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trend", + "example_sentence_native": "Esa es la nueva trend en moda.", + "example_sentence_english": "That's the new trend in fashion.", + "pos": "noun", + "word_frequency": 24346 + }, + { + "word": "trigger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger", + "example_sentence_native": "Ese comentario fue un trigger para su ansiedad.", + "example_sentence_english": "That comment was a trigger for his anxiety.", + "pos": "noun", + "word_frequency": 24347 + }, + { + "word": "trigger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger", + "example_sentence_native": "Ese comentario fue un trigger para su ansiedad.", + "example_sentence_english": "That comment was a trigger for his anxiety.", + "pos": "noun", + "word_frequency": 24347 + }, + { + "word": "triza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "splinter;shred;piece (usually small)", + "example_sentence_native": "El jarrón se hizo trizas al caer al suelo.", + "example_sentence_english": "The vase shattered into pieces when it fell to the floor.", + "pos": "noun", + "word_frequency": 24348 + }, + { + "word": "triza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "splinter;shred;piece (usually small)", + "example_sentence_native": "El jarrón se hizo trizas al caer al suelo.", + "example_sentence_english": "The vase shattered into pieces when it fell to the floor.", + "pos": "noun", + "word_frequency": 24348 + }, + { + "word": "trol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "troll", + "example_sentence_native": "No alimentes al trol en los comentarios.", + "example_sentence_english": "Don't feed the troll in the comments.", + "pos": "noun", + "word_frequency": 24350 + }, + { + "word": "trol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "troll", + "example_sentence_native": "No alimentes al trol en los comentarios.", + "example_sentence_english": "Don't feed the troll in the comments.", + "pos": "noun", + "word_frequency": 24350 + }, + { + "word": "tupper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "food container;Tupperware", + "example_sentence_native": "Guarda las sobras en un tupper.", + "example_sentence_english": "Store the leftovers in a food container.", + "pos": "noun", + "word_frequency": 24353 + }, + { + "word": "tupper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "food container;Tupperware", + "example_sentence_native": "Guarda las sobras en un tupper.", + "example_sentence_english": "Store the leftovers in a food container.", + "pos": "noun", + "word_frequency": 24353 + }, + { + "word": "unionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unionist", + "example_sentence_native": "Los unionistas defendían la unidad del país.", + "example_sentence_english": "The unionists defended the unity of the country.", + "pos": "noun", + "word_frequency": 24358 + }, + { + "word": "unionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unionist", + "example_sentence_native": "Los unionistas defendían la unidad del país.", + "example_sentence_english": "The unionists defended the unity of the country.", + "pos": "noun", + "word_frequency": 24358 + }, + { + "word": "varicela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chickenpox", + "example_sentence_native": "Mi hijo tuvo varicela el año pasado.", + "example_sentence_english": "My son had chickenpox last year.", + "pos": "noun", + "word_frequency": 24363 + }, + { + "word": "varicela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chickenpox", + "example_sentence_native": "Mi hijo tuvo varicela el año pasado.", + "example_sentence_english": "My son had chickenpox last year.", + "pos": "noun", + "word_frequency": 24363 + }, + { + "word": "vasito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small glass", + "example_sentence_native": "Por favor, dame un vasito de agua.", + "example_sentence_english": "Please, give me a small glass of water.", + "pos": "noun", + "word_frequency": 24364 + }, + { + "word": "vasito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small glass", + "example_sentence_native": "Por favor, dame un vasito de agua.", + "example_sentence_english": "Please, give me a small glass of water.", + "pos": "noun", + "word_frequency": 24364 + }, + { + "word": "videoconferencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "videoconference", + "example_sentence_native": "Tenemos una videoconferencia programada para las diez.", + "example_sentence_english": "We have a videoconference scheduled for ten o'clock.", + "pos": "noun", + "word_frequency": 24365 + }, + { + "word": "videoconferencia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "videoconference", + "example_sentence_native": "Tenemos una videoconferencia programada para las diez.", + "example_sentence_english": "We have a videoconference scheduled for ten o'clock.", + "pos": "noun", + "word_frequency": 24365 + }, + { + "word": "vulgarmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulgarly;commonly", + "example_sentence_native": "Vulgarmente se le conoce como 'la gripe'.", + "example_sentence_english": "It is commonly known as 'the flu'.", + "pos": "adverb", + "word_frequency": 24368 + }, + { + "word": "vulgarmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulgarly;commonly", + "example_sentence_native": "Vulgarmente se le conoce como 'la gripe'.", + "example_sentence_english": "It is commonly known as 'the flu'.", + "pos": "adverb", + "word_frequency": 24368 + }, + { + "word": "acarreado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobilized (politically);carried", + "example_sentence_native": "Los manifestantes eran acarreados por autobuses.", + "example_sentence_english": "The protesters were mobilized by buses.", + "pos": "adjective", + "word_frequency": 24376 + }, + { + "word": "acarreado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobilized (politically);carried", + "example_sentence_native": "Los manifestantes eran acarreados por autobuses.", + "example_sentence_english": "The protesters were mobilized by buses.", + "pos": "adjective", + "word_frequency": 24376 + }, + { + "word": "acrópolis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acropolis", + "example_sentence_native": "La Acrópolis de Atenas es un sitio histórico.", + "example_sentence_english": "The Acropolis of Athens is a historical site.", + "pos": "noun", + "word_frequency": 24377 + }, + { + "word": "acrópolis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acropolis", + "example_sentence_native": "La Acrópolis de Atenas es un sitio histórico.", + "example_sentence_english": "The Acropolis of Athens is a historical site.", + "pos": "noun", + "word_frequency": 24377 + }, + { + "word": "albañilería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masonry;bricklaying", + "example_sentence_native": "Se necesita mucha habilidad para la albañilería.", + "example_sentence_english": "Much skill is needed for masonry.", + "pos": "noun", + "word_frequency": 24382 + }, + { + "word": "albañilería", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masonry;bricklaying", + "example_sentence_native": "Se necesita mucha habilidad para la albañilería.", + "example_sentence_english": "Much skill is needed for masonry.", + "pos": "noun", + "word_frequency": 24382 + }, + { + "word": "alcoholemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blood alcohol level", + "example_sentence_native": "La policía le hizo una prueba de alcoholemia.", + "example_sentence_english": "The police gave him a blood alcohol test.", + "pos": "noun", + "word_frequency": 24383 + }, + { + "word": "alcoholemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blood alcohol level", + "example_sentence_native": "La policía le hizo una prueba de alcoholemia.", + "example_sentence_english": "The police gave him a blood alcohol test.", + "pos": "noun", + "word_frequency": 24383 + }, + { + "word": "antagónico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antagonistic", + "example_sentence_native": "Tienen puntos de vista antagónicos.", + "example_sentence_english": "They have antagonistic viewpoints.", + "pos": "adjective", + "word_frequency": 24389 + }, + { + "word": "antagónico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antagonistic", + "example_sentence_native": "Tienen puntos de vista antagónicos.", + "example_sentence_english": "They have antagonistic viewpoints.", + "pos": "adjective", + "word_frequency": 24389 + }, + { + "word": "antiimperialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-imperialist", + "example_sentence_native": "Es un movimiento antiimperialista.", + "example_sentence_english": "It is an anti-imperialist movement.", + "pos": "adjective", + "word_frequency": 24390 + }, + { + "word": "antiimperialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-imperialist", + "example_sentence_native": "Es un movimiento antiimperialista.", + "example_sentence_english": "It is an anti-imperialist movement.", + "pos": "adjective", + "word_frequency": 24390 + }, + { + "word": "antígeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antigen", + "example_sentence_native": "El cuerpo produce anticuerpos contra el antígeno.", + "example_sentence_english": "The body produces antibodies against the antigen.", + "pos": "noun", + "word_frequency": 24391 + }, + { + "word": "antígeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antigen", + "example_sentence_native": "El cuerpo produce anticuerpos contra el antígeno.", + "example_sentence_english": "The body produces antibodies against the antigen.", + "pos": "noun", + "word_frequency": 24391 + }, + { + "word": "anónimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymously", + "example_sentence_native": "La información fue enviada anónimamente.", + "example_sentence_english": "The information was sent anonymously.", + "pos": "adverb", + "word_frequency": 24393 + }, + { + "word": "anónimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymously", + "example_sentence_native": "La información fue enviada anónimamente.", + "example_sentence_english": "The information was sent anonymously.", + "pos": "adverb", + "word_frequency": 24393 + }, + { + "word": "apelado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appealed (legal);nicknamed", + "example_sentence_native": "La decisión apelada será revisada.", + "example_sentence_english": "The appealed decision will be reviewed.", + "pos": "adjective", + "word_frequency": 24394 + }, + { + "word": "apelado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appealed (legal);nicknamed", + "example_sentence_native": "La decisión apelada será revisada.", + "example_sentence_english": "The appealed decision will be reviewed.", + "pos": "adjective", + "word_frequency": 24394 + }, + { + "word": "arrugado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrinkled;creased", + "example_sentence_native": "La camisa estaba muy arrugada.", + "example_sentence_english": "The shirt was very wrinkled.", + "pos": "adjective", + "word_frequency": 24397 + }, + { + "word": "arrugado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrinkled;creased", + "example_sentence_native": "La camisa estaba muy arrugada.", + "example_sentence_english": "The shirt was very wrinkled.", + "pos": "adjective", + "word_frequency": 24397 + }, + { + "word": "artemisa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Artemisia;Artemis", + "example_sentence_native": "La artemisa es una planta medicinal.", + "example_sentence_english": "Artemisia is a medicinal plant.", + "pos": "noun", + "word_frequency": 24398 + }, + { + "word": "artemisa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Artemisia;Artemis", + "example_sentence_native": "La artemisa es una planta medicinal.", + "example_sentence_english": "Artemisia is a medicinal plant.", + "pos": "noun", + "word_frequency": 24398 + }, + { + "word": "ayunar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fast", + "example_sentence_native": "Algunas personas ayunan por motivos religiosos.", + "example_sentence_english": "Some people fast for religious reasons.", + "pos": "verb", + "word_frequency": 24399 + }, + { + "word": "ayunar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fast", + "example_sentence_native": "Algunas personas ayunan por motivos religiosos.", + "example_sentence_english": "Some people fast for religious reasons.", + "pos": "verb", + "word_frequency": 24399 + }, + { + "word": "bandada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flock", + "example_sentence_native": "Una bandada de pájaros voló sobre el campo.", + "example_sentence_english": "A flock of birds flew over the field.", + "pos": "noun", + "word_frequency": 24400 + }, + { + "word": "bandada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flock", + "example_sentence_native": "Una bandada de pájaros voló sobre el campo.", + "example_sentence_english": "A flock of birds flew over the field.", + "pos": "noun", + "word_frequency": 24400 + }, + { + "word": "becado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scholarship holder (adj.)", + "example_sentence_native": "El estudiante becado se graduó con honores.", + "example_sentence_english": "The scholarship-holding student graduated with honors.", + "pos": "adjective", + "word_frequency": 24402 + }, + { + "word": "becado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scholarship holder (adj.)", + "example_sentence_native": "El estudiante becado se graduó con honores.", + "example_sentence_english": "The scholarship-holding student graduated with honors.", + "pos": "adjective", + "word_frequency": 24402 + }, + { + "word": "bifurcación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bifurcation;fork", + "example_sentence_native": "Llegamos a una bifurcación en el camino.", + "example_sentence_english": "We reached a bifurcation in the road.", + "pos": "noun", + "word_frequency": 24406 + }, + { + "word": "bifurcación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bifurcation;fork", + "example_sentence_native": "Llegamos a una bifurcación en el camino.", + "example_sentence_english": "We reached a bifurcation in the road.", + "pos": "noun", + "word_frequency": 24406 + }, + { + "word": "bolillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bolillo (bread);rolling pin", + "example_sentence_native": "Compré un bolillo para el desayuno.", + "example_sentence_english": "I bought a bolillo for breakfast.", + "pos": "noun", + "word_frequency": 24408 + }, + { + "word": "bolillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bolillo (bread);rolling pin", + "example_sentence_native": "Compré un bolillo para el desayuno.", + "example_sentence_english": "I bought a bolillo for breakfast.", + "pos": "noun", + "word_frequency": 24408 + }, + { + "word": "bombear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pump", + "example_sentence_native": "La máquina bombea agua del pozo.", + "example_sentence_english": "The machine pumps water from the well.", + "pos": "verb", + "word_frequency": 24409 + }, + { + "word": "bombear", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pump", + "example_sentence_native": "La máquina bombea agua del pozo.", + "example_sentence_english": "The machine pumps water from the well.", + "pos": "verb", + "word_frequency": 24409 + }, + { + "word": "bongo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bongo (drum);small boat", + "example_sentence_native": "Tocó los bongos en la banda.", + "example_sentence_english": "He played the bongos in the band.", + "pos": "noun", + "word_frequency": 24410 + }, + { + "word": "bongo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bongo (drum);small boat", + "example_sentence_native": "Tocó los bongos en la banda.", + "example_sentence_english": "He played the bongos in the band.", + "pos": "noun", + "word_frequency": 24410 + }, + { + "word": "burlón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mocking;jocular", + "example_sentence_native": "Tenía una sonrisa burlona en su rostro.", + "example_sentence_english": "He had a mocking smile on his face.", + "pos": "adjective", + "word_frequency": 24415 + }, + { + "word": "burlón", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mocking;jocular", + "example_sentence_native": "Tenía una sonrisa burlona en su rostro.", + "example_sentence_english": "He had a mocking smile on his face.", + "pos": "adjective", + "word_frequency": 24415 + }, + { + "word": "cacahuete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peanut", + "example_sentence_native": "Me encantan los cacahuetes salados.", + "example_sentence_english": "I love salted peanuts.", + "pos": "noun", + "word_frequency": 24417 + }, + { + "word": "cacahuete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peanut", + "example_sentence_native": "Me encantan los cacahuetes salados.", + "example_sentence_english": "I love salted peanuts.", + "pos": "noun", + "word_frequency": 24417 + }, + { + "word": "cadmio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cadmium", + "example_sentence_native": "El cadmio es un metal pesado.", + "example_sentence_english": "Cadmium is a heavy metal.", + "pos": "noun", + "word_frequency": 24418 + }, + { + "word": "cadmio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cadmium", + "example_sentence_native": "El cadmio es un metal pesado.", + "example_sentence_english": "Cadmium is a heavy metal.", + "pos": "noun", + "word_frequency": 24418 + }, + { + "word": "caducado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expired;out of date", + "example_sentence_native": "La leche está caducada.", + "example_sentence_english": "The milk is expired.", + "pos": "adjective", + "word_frequency": 24419 + }, + { + "word": "caducado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expired;out of date", + "example_sentence_native": "La leche está caducada.", + "example_sentence_english": "The milk is expired.", + "pos": "adjective", + "word_frequency": 24419 + }, + { + "word": "calafate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calafate (berry);caulker", + "example_sentence_native": "Probamos las bayas de calafate en la Patagonia.", + "example_sentence_english": "We tried the calafate berries in Patagonia.", + "pos": "noun", + "word_frequency": 24422 + }, + { + "word": "calafate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calafate (berry);caulker", + "example_sentence_native": "Probamos las bayas de calafate en la Patagonia.", + "example_sentence_english": "We tried the calafate berries in Patagonia.", + "pos": "noun", + "word_frequency": 24422 + }, + { + "word": "calladito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very quietly;silently", + "example_sentence_native": "Se quedó calladito en la esquina.", + "example_sentence_english": "He stayed very quietly in the corner.", + "pos": "adverb", + "word_frequency": 24423 + }, + { + "word": "calladito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very quietly;silently", + "example_sentence_native": "Se quedó calladito en la esquina.", + "example_sentence_english": "He stayed very quietly in the corner.", + "pos": "adverb", + "word_frequency": 24423 + }, + { + "word": "carnívoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnivore", + "example_sentence_native": "El león es un animal carnívoro.", + "example_sentence_english": "The lion is a carnivorous animal.", + "pos": "noun", + "word_frequency": 24425 + }, + { + "word": "carnívoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnivore", + "example_sentence_native": "El león es un animal carnívoro.", + "example_sentence_english": "The lion is a carnivorous animal.", + "pos": "noun", + "word_frequency": 24425 + }, + { + "word": "categorización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "categorization", + "example_sentence_native": "La categorización de datos es esencial para el análisis.", + "example_sentence_english": "Data categorization is essential for analysis.", + "pos": "noun", + "word_frequency": 24428 + }, + { + "word": "categorización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "categorization", + "example_sentence_native": "La categorización de datos es esencial para el análisis.", + "example_sentence_english": "Data categorization is essential for analysis.", + "pos": "noun", + "word_frequency": 24428 + }, + { + "word": "cauto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cautious;wary", + "example_sentence_native": "Debemos ser cautos al tomar decisiones importantes.", + "example_sentence_english": "We must be cautious when making important decisions.", + "pos": "adjective", + "word_frequency": 24429 + }, + { + "word": "cauto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cautious;wary", + "example_sentence_native": "Debemos ser cautos al tomar decisiones importantes.", + "example_sentence_english": "We must be cautious when making important decisions.", + "pos": "adjective", + "word_frequency": 24429 + }, + { + "word": "cañaveral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sugarcane field;cane field", + "example_sentence_native": "El cañaveral se extendía hasta donde alcanzaba la vista.", + "example_sentence_english": "The sugarcane field stretched as far as the eye could see.", + "pos": "noun", + "word_frequency": 24430 + }, + { + "word": "cañaveral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sugarcane field;cane field", + "example_sentence_native": "El cañaveral se extendía hasta donde alcanzaba la vista.", + "example_sentence_english": "The sugarcane field stretched as far as the eye could see.", + "pos": "noun", + "word_frequency": 24430 + }, + { + "word": "cebú", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zebu", + "example_sentence_native": "El cebú es una raza de ganado originaria de la India.", + "example_sentence_english": "The zebu is a breed of cattle native to India.", + "pos": "noun", + "word_frequency": 24431 + }, + { + "word": "cebú", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zebu", + "example_sentence_native": "El cebú es una raza de ganado originaria de la India.", + "example_sentence_english": "The zebu is a breed of cattle native to India.", + "pos": "noun", + "word_frequency": 24431 + }, + { + "word": "cheddar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheddar (cheese)", + "example_sentence_native": "Me gusta el queso cheddar en mi sándwich.", + "example_sentence_english": "I like cheddar cheese in my sandwich.", + "pos": "noun", + "word_frequency": 24433 + }, + { + "word": "cheddar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheddar (cheese)", + "example_sentence_native": "Me gusta el queso cheddar en mi sándwich.", + "example_sentence_english": "I like cheddar cheese in my sandwich.", + "pos": "noun", + "word_frequency": 24433 + }, + { + "word": "chocolatada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot chocolate drink", + "example_sentence_native": "En invierno, nos gusta tomar una chocolatada caliente.", + "example_sentence_english": "In winter, we like to drink a hot chocolate.", + "pos": "noun", + "word_frequency": 24435 + }, + { + "word": "chocolatada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot chocolate drink", + "example_sentence_native": "En invierno, nos gusta tomar una chocolatada caliente.", + "example_sentence_english": "In winter, we like to drink a hot chocolate.", + "pos": "noun", + "word_frequency": 24435 + }, + { + "word": "civilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civility;politeness", + "example_sentence_native": "La civilidad es importante en el debate público.", + "example_sentence_english": "Civility is important in public debate.", + "pos": "noun", + "word_frequency": 24437 + }, + { + "word": "civilidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "civility;politeness", + "example_sentence_native": "La civilidad es importante en el debate público.", + "example_sentence_english": "Civility is important in public debate.", + "pos": "noun", + "word_frequency": 24437 + }, + { + "word": "cobertizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shed;lean-to", + "example_sentence_native": "Guardamos las herramientas en el cobertizo.", + "example_sentence_english": "We keep the tools in the shed.", + "pos": "noun", + "word_frequency": 24438 + }, + { + "word": "cobertizo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shed;lean-to", + "example_sentence_native": "Guardamos las herramientas en el cobertizo.", + "example_sentence_english": "We keep the tools in the shed.", + "pos": "noun", + "word_frequency": 24438 + }, + { + "word": "comadre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "godmother;close female friend", + "example_sentence_native": "Mi comadre me ayudó a organizar la fiesta.", + "example_sentence_english": "My godmother helped me organize the party.", + "pos": "noun", + "word_frequency": 24440 + }, + { + "word": "comadre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "godmother;close female friend", + "example_sentence_native": "Mi comadre me ayudó a organizar la fiesta.", + "example_sentence_english": "My godmother helped me organize the party.", + "pos": "noun", + "word_frequency": 24440 + }, + { + "word": "comenzado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "started;begun", + "example_sentence_native": "El trabajo ya está comenzado.", + "example_sentence_english": "The work is already started.", + "pos": "adjective", + "word_frequency": 24441 + }, + { + "word": "comenzado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "started;begun", + "example_sentence_native": "El trabajo ya está comenzado.", + "example_sentence_english": "The work is already started.", + "pos": "adjective", + "word_frequency": 24441 + }, + { + "word": "comprobados", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proven;verified", + "example_sentence_native": "Los resultados fueron comprobados por un equipo independiente.", + "example_sentence_english": "The results were verified by an independent team.", + "pos": "adjective", + "word_frequency": 24442 + }, + { + "word": "comprobados", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proven;verified", + "example_sentence_native": "Los resultados fueron comprobados por un equipo independiente.", + "example_sentence_english": "The results were verified by an independent team.", + "pos": "adjective", + "word_frequency": 24442 + }, + { + "word": "conferido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conferred;granted", + "example_sentence_native": "El poder conferido al presidente es inmenso.", + "example_sentence_english": "The power conferred upon the president is immense.", + "pos": "adjective", + "word_frequency": 24443 + }, + { + "word": "conferido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conferred;granted", + "example_sentence_native": "El poder conferido al presidente es inmenso.", + "example_sentence_english": "The power conferred upon the president is immense.", + "pos": "adjective", + "word_frequency": 24443 + }, + { + "word": "conmocionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shocked;shaken", + "example_sentence_native": "Estaba conmocionado por las noticias.", + "example_sentence_english": "He was shocked by the news.", + "pos": "adjective", + "word_frequency": 24444 + }, + { + "word": "conmocionado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shocked;shaken", + "example_sentence_native": "Estaba conmocionado por las noticias.", + "example_sentence_english": "He was shocked by the news.", + "pos": "adjective", + "word_frequency": 24444 + }, + { + "word": "costra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scab;crust", + "example_sentence_native": "Se formó una costra en la herida.", + "example_sentence_english": "A scab formed on the wound.", + "pos": "noun", + "word_frequency": 24447 + }, + { + "word": "costra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scab;crust", + "example_sentence_native": "Se formó una costra en la herida.", + "example_sentence_english": "A scab formed on the wound.", + "pos": "noun", + "word_frequency": 24447 + }, + { + "word": "cronica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chronicle;news report", + "example_sentence_native": "Leyó la crónica del evento en el periódico.", + "example_sentence_english": "He read the chronicle of the event in the newspaper.", + "pos": "noun", + "word_frequency": 24448 + }, + { + "word": "cronica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chronicle;news report", + "example_sentence_native": "Leyó la crónica del evento en el periódico.", + "example_sentence_english": "He read the chronicle of the event in the newspaper.", + "pos": "noun", + "word_frequency": 24448 + }, + { + "word": "cuban", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Cuban (person)", + "example_sentence_native": "Conocí a un cubano muy amable.", + "example_sentence_english": "I met a very kind Cuban.", + "pos": "noun", + "word_frequency": 24449 + }, + { + "word": "cuban", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Cuban (person)", + "example_sentence_native": "Conocí a un cubano muy amable.", + "example_sentence_english": "I met a very kind Cuban.", + "pos": "noun", + "word_frequency": 24449 + }, + { + "word": "curandero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditional healer;witch doctor", + "example_sentence_native": "El curandero usó hierbas medicinales.", + "example_sentence_english": "The traditional healer used medicinal herbs.", + "pos": "noun", + "word_frequency": 24451 + }, + { + "word": "curandero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditional healer;witch doctor", + "example_sentence_native": "El curandero usó hierbas medicinales.", + "example_sentence_english": "The traditional healer used medicinal herbs.", + "pos": "noun", + "word_frequency": 24451 + }, + { + "word": "deambular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wander;to stroll", + "example_sentence_native": "Le gustaba deambular por las calles sin rumbo fijo.", + "example_sentence_english": "He liked to wander through the streets aimlessly.", + "pos": "verb", + "word_frequency": 24453 + }, + { + "word": "deambular", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wander;to stroll", + "example_sentence_native": "Le gustaba deambular por las calles sin rumbo fijo.", + "example_sentence_english": "He liked to wander through the streets aimlessly.", + "pos": "verb", + "word_frequency": 24453 + }, + { + "word": "degollar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to slit the throat;to behead", + "example_sentence_native": "En la antigüedad, a veces se degollaba a los prisioneros.", + "example_sentence_english": "In ancient times, prisoners were sometimes beheaded.", + "pos": "verb", + "word_frequency": 24454 + }, + { + "word": "degollar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to slit the throat;to behead", + "example_sentence_native": "En la antigüedad, a veces se degollaba a los prisioneros.", + "example_sentence_english": "In ancient times, prisoners were sometimes beheaded.", + "pos": "verb", + "word_frequency": 24454 + }, + { + "word": "demasía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess;too much", + "example_sentence_native": "La demasía de confianza puede ser peligrosa.", + "example_sentence_english": "Too much confidence can be dangerous.", + "pos": "noun", + "word_frequency": 24455 + }, + { + "word": "demasía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess;too much", + "example_sentence_native": "La demasía de confianza puede ser peligrosa.", + "example_sentence_english": "Too much confidence can be dangerous.", + "pos": "noun", + "word_frequency": 24455 + }, + { + "word": "demoníaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonic", + "example_sentence_native": "La película trataba sobre una posesión demoníaca.", + "example_sentence_english": "The movie was about a demonic possession.", + "pos": "adjective", + "word_frequency": 24456 + }, + { + "word": "demoníaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonic", + "example_sentence_native": "La película trataba sobre una posesión demoníaca.", + "example_sentence_english": "The movie was about a demonic possession.", + "pos": "adjective", + "word_frequency": 24456 + }, + { + "word": "despoblación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depopulation", + "example_sentence_native": "La despoblación rural es un problema grave en muchas regiones.", + "example_sentence_english": "Rural depopulation is a serious problem in many regions.", + "pos": "noun", + "word_frequency": 24458 + }, + { + "word": "despoblación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depopulation", + "example_sentence_native": "La despoblación rural es un problema grave en muchas regiones.", + "example_sentence_english": "Rural depopulation is a serious problem in many regions.", + "pos": "noun", + "word_frequency": 24458 + }, + { + "word": "destape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncovering;revelation", + "example_sentence_native": "El destape del escándalo causó un gran revuelo.", + "example_sentence_english": "The revelation of the scandal caused a great stir.", + "pos": "noun", + "word_frequency": 24459 + }, + { + "word": "destape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncovering;revelation", + "example_sentence_native": "El destape del escándalo causó un gran revuelo.", + "example_sentence_english": "The revelation of the scandal caused a great stir.", + "pos": "noun", + "word_frequency": 24459 + }, + { + "word": "destaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highlight;emphasis", + "example_sentence_native": "El destaque de su discurso fue la propuesta de paz.", + "example_sentence_english": "The highlight of his speech was the peace proposal.", + "pos": "noun", + "word_frequency": 24460 + }, + { + "word": "destaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highlight;emphasis", + "example_sentence_native": "El destaque de su discurso fue la propuesta de paz.", + "example_sentence_english": "The highlight of his speech was the peace proposal.", + "pos": "noun", + "word_frequency": 24460 + }, + { + "word": "dialéctico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialectical", + "example_sentence_native": "Su enfoque dialéctico ayudó a resolver el conflicto.", + "example_sentence_english": "His dialectical approach helped resolve the conflict.", + "pos": "adjective", + "word_frequency": 24461 + }, + { + "word": "dialéctico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialectical", + "example_sentence_native": "Su enfoque dialéctico ayudó a resolver el conflicto.", + "example_sentence_english": "His dialectical approach helped resolve the conflict.", + "pos": "adjective", + "word_frequency": 24461 + }, + { + "word": "dignar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deign;to condescend", + "example_sentence_native": "No se dignó a responder a mi pregunta.", + "example_sentence_english": "He did not deign to answer my question.", + "pos": "verb", + "word_frequency": 24462 + }, + { + "word": "dignar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deign;to condescend", + "example_sentence_native": "No se dignó a responder a mi pregunta.", + "example_sentence_english": "He did not deign to answer my question.", + "pos": "verb", + "word_frequency": 24462 + }, + { + "word": "dimensional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dimensional", + "example_sentence_native": "El problema es de naturaleza multidimensional.", + "example_sentence_english": "The problem is multidimensional in nature.", + "pos": "adjective", + "word_frequency": 24463 + }, + { + "word": "dimensional", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dimensional", + "example_sentence_native": "El problema es de naturaleza multidimensional.", + "example_sentence_english": "The problem is multidimensional in nature.", + "pos": "adjective", + "word_frequency": 24463 + }, + { + "word": "dineral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fortune;a lot of money", + "example_sentence_native": "Gastó un dineral en el coche nuevo.", + "example_sentence_english": "He spent a fortune on the new car.", + "pos": "noun", + "word_frequency": 24464 + }, + { + "word": "dineral", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a fortune;a lot of money", + "example_sentence_native": "Gastó un dineral en el coche nuevo.", + "example_sentence_english": "He spent a fortune on the new car.", + "pos": "noun", + "word_frequency": 24464 + }, + { + "word": "dirimir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to resolve;to settle (a dispute)", + "example_sentence_native": "El tribunal debe dirimir la disputa entre las partes.", + "example_sentence_english": "The court must resolve the dispute between the parties.", + "pos": "verb", + "word_frequency": 24465 + }, + { + "word": "dirimir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to resolve;to settle (a dispute)", + "example_sentence_native": "El tribunal debe dirimir la disputa entre las partes.", + "example_sentence_english": "The court must resolve the dispute between the parties.", + "pos": "verb", + "word_frequency": 24465 + }, + { + "word": "drogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug addict;junkie (colloquial;derogatory)", + "example_sentence_native": "La policía detuvo a un drogo cerca de la estación.", + "example_sentence_english": "The police arrested a junkie near the station.", + "pos": "noun", + "word_frequency": 24469 + }, + { + "word": "drogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug addict;junkie (colloquial;derogatory)", + "example_sentence_native": "La policía detuvo a un drogo cerca de la estación.", + "example_sentence_english": "The police arrested a junkie near the station.", + "pos": "noun", + "word_frequency": 24469 + }, + { + "word": "eclesial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecclesial;ecclesiastical", + "example_sentence_native": "La estructura eclesial es compleja.", + "example_sentence_english": "The ecclesial structure is complex.", + "pos": "adjective", + "word_frequency": 24472 + }, + { + "word": "eclesial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecclesial;ecclesiastical", + "example_sentence_native": "La estructura eclesial es compleja.", + "example_sentence_english": "The ecclesial structure is complex.", + "pos": "adjective", + "word_frequency": 24472 + }, + { + "word": "embate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "onslaught;attack;impact", + "example_sentence_native": "Soportaron el embate de la tormenta.", + "example_sentence_english": "They withstood the onslaught of the storm.", + "pos": "noun", + "word_frequency": 24474 + }, + { + "word": "embate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "onslaught;attack;impact", + "example_sentence_native": "Soportaron el embate de la tormenta.", + "example_sentence_english": "They withstood the onslaught of the storm.", + "pos": "noun", + "word_frequency": 24474 + }, + { + "word": "embrollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess;muddle;tangle", + "example_sentence_native": "Se metió en un gran embrollo legal.", + "example_sentence_english": "He got into a big legal mess.", + "pos": "noun", + "word_frequency": 24475 + }, + { + "word": "embrollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess;muddle;tangle", + "example_sentence_native": "Se metió en un gran embrollo legal.", + "example_sentence_english": "He got into a big legal mess.", + "pos": "noun", + "word_frequency": 24475 + }, + { + "word": "encauzar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to channel;to direct;to guide", + "example_sentence_native": "Intentaron encauzar la conversación hacia temas más productivos.", + "example_sentence_english": "They tried to channel the conversation towards more productive topics.", + "pos": "verb", + "word_frequency": 24476 + }, + { + "word": "encauzar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to channel;to direct;to guide", + "example_sentence_native": "Intentaron encauzar la conversación hacia temas más productivos.", + "example_sentence_english": "They tried to channel the conversation towards more productive topics.", + "pos": "verb", + "word_frequency": 24476 + }, + { + "word": "encomiable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commendable;praiseworthy", + "example_sentence_native": "Su esfuerzo fue realmente encomiable.", + "example_sentence_english": "His effort was truly commendable.", + "pos": "adjective", + "word_frequency": 24477 + }, + { + "word": "encomiable", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commendable;praiseworthy", + "example_sentence_native": "Su esfuerzo fue realmente encomiable.", + "example_sentence_english": "His effort was truly commendable.", + "pos": "adjective", + "word_frequency": 24477 + }, + { + "word": "enriquecedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enriching", + "example_sentence_native": "Fue una experiencia muy enriquecedora.", + "example_sentence_english": "It was a very enriching experience.", + "pos": "adjective", + "word_frequency": 24478 + }, + { + "word": "enriquecedor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enriching", + "example_sentence_native": "Fue una experiencia muy enriquecedora.", + "example_sentence_english": "It was a very enriching experience.", + "pos": "adjective", + "word_frequency": 24478 + }, + { + "word": "entropía", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "entropy", + "example_sentence_native": "La entropía es una medida del desorden en un sistema.", + "example_sentence_english": "Entropy is a measure of disorder in a system.", + "pos": "noun", + "word_frequency": 24479 + }, + { + "word": "entropía", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "entropy", + "example_sentence_native": "La entropía es una medida del desorden en un sistema.", + "example_sentence_english": "Entropy is a measure of disorder in a system.", + "pos": "noun", + "word_frequency": 24479 + }, + { + "word": "epitelio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epithelium", + "example_sentence_native": "El epitelio cubre las superficies del cuerpo.", + "example_sentence_english": "The epithelium covers the body's surfaces.", + "pos": "noun", + "word_frequency": 24480 + }, + { + "word": "epitelio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epithelium", + "example_sentence_native": "El epitelio cubre las superficies del cuerpo.", + "example_sentence_english": "The epithelium covers the body's surfaces.", + "pos": "noun", + "word_frequency": 24480 + }, + { + "word": "escarmiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesson;deterrent", + "example_sentence_native": "Su error le sirvió de escarmiento.", + "example_sentence_english": "His mistake served as a lesson for him.", + "pos": "noun", + "word_frequency": 24483 + }, + { + "word": "escarmiento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesson;deterrent", + "example_sentence_native": "Su error le sirvió de escarmiento.", + "example_sentence_english": "His mistake served as a lesson for him.", + "pos": "noun", + "word_frequency": 24483 + }, + { + "word": "estanco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tobacconist's", + "example_sentence_native": "Compré los sellos en el estanco.", + "example_sentence_english": "I bought the stamps at the tobacconist's.", + "pos": "noun", + "word_frequency": 24487 + }, + { + "word": "estanco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tobacconist's", + "example_sentence_native": "Compré los sellos en el estanco.", + "example_sentence_english": "I bought the stamps at the tobacconist's.", + "pos": "noun", + "word_frequency": 24487 + }, + { + "word": "estopa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tow;oakum", + "example_sentence_native": "Usaron estopa para calafatear el barco.", + "example_sentence_english": "They used oakum to caulk the boat.", + "pos": "noun", + "word_frequency": 24488 + }, + { + "word": "estopa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tow;oakum", + "example_sentence_native": "Usaron estopa para calafatear el barco.", + "example_sentence_english": "They used oakum to caulk the boat.", + "pos": "noun", + "word_frequency": 24488 + }, + { + "word": "estratificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratification", + "example_sentence_native": "La estratificación social es un fenómeno complejo.", + "example_sentence_english": "Social stratification is a complex phenomenon.", + "pos": "noun", + "word_frequency": 24489 + }, + { + "word": "estratificación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratification", + "example_sentence_native": "La estratificación social es un fenómeno complejo.", + "example_sentence_english": "Social stratification is a complex phenomenon.", + "pos": "noun", + "word_frequency": 24489 + }, + { + "word": "estrechez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrowness;tightness", + "example_sentence_native": "La estrechez del camino dificultaba el paso.", + "example_sentence_english": "The narrowness of the path made passage difficult.", + "pos": "noun", + "word_frequency": 24490 + }, + { + "word": "estrechez", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrowness;tightness", + "example_sentence_native": "La estrechez del camino dificultaba el paso.", + "example_sentence_english": "The narrowness of the path made passage difficult.", + "pos": "noun", + "word_frequency": 24490 + }, + { + "word": "excarcelación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "release from prison", + "example_sentence_native": "Se ordenó la excarcelación del prisionero.", + "example_sentence_english": "The prisoner's release was ordered.", + "pos": "noun", + "word_frequency": 24493 + }, + { + "word": "excarcelación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "release from prison", + "example_sentence_native": "Se ordenó la excarcelación del prisionero.", + "example_sentence_english": "The prisoner's release was ordered.", + "pos": "noun", + "word_frequency": 24493 + }, + { + "word": "excursionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiker", + "example_sentence_native": "Los excursionistas disfrutaron del paisaje.", + "example_sentence_english": "The hikers enjoyed the scenery.", + "pos": "noun", + "word_frequency": 24494 + }, + { + "word": "excursionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiker", + "example_sentence_native": "Los excursionistas disfrutaron del paisaje.", + "example_sentence_english": "The hikers enjoyed the scenery.", + "pos": "noun", + "word_frequency": 24494 + }, + { + "word": "expolio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plunder;spoliation", + "example_sentence_native": "El expolio de los recursos naturales es un problema grave.", + "example_sentence_english": "The plunder of natural resources is a serious problem.", + "pos": "noun", + "word_frequency": 24495 + }, + { + "word": "expolio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plunder;spoliation", + "example_sentence_native": "El expolio de los recursos naturales es un problema grave.", + "example_sentence_english": "The plunder of natural resources is a serious problem.", + "pos": "noun", + "word_frequency": 24495 + }, + { + "word": "fabricacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing", + "example_sentence_native": "La fabricación de coches es una industria importante.", + "example_sentence_english": "Car manufacturing is an important industry.", + "pos": "noun", + "word_frequency": 24496 + }, + { + "word": "fabricacion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing", + "example_sentence_native": "La fabricación de coches es una industria importante.", + "example_sentence_english": "Car manufacturing is an important industry.", + "pos": "noun", + "word_frequency": 24496 + }, + { + "word": "fastidiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoyed;fed up", + "example_sentence_native": "Estoy fastidiado con esta situación.", + "example_sentence_english": "I'm fed up with this situation.", + "pos": "adjective", + "word_frequency": 24497 + }, + { + "word": "fastidiado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoyed;fed up", + "example_sentence_native": "Estoy fastidiado con esta situación.", + "example_sentence_english": "I'm fed up with this situation.", + "pos": "adjective", + "word_frequency": 24497 + }, + { + "word": "fidedigno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reliable;trustworthy", + "example_sentence_native": "Necesitamos una fuente de información fidedigna.", + "example_sentence_english": "We need a reliable source of information.", + "pos": "adjective", + "word_frequency": 24499 + }, + { + "word": "fidedigno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reliable;trustworthy", + "example_sentence_native": "Necesitamos una fuente de información fidedigna.", + "example_sentence_english": "We need a reliable source of information.", + "pos": "adjective", + "word_frequency": 24499 + }, + { + "word": "fleco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fringe;bang", + "example_sentence_native": "Se cortó el fleco del pelo.", + "example_sentence_english": "She cut her hair fringe.", + "pos": "noun", + "word_frequency": 24503 + }, + { + "word": "fleco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fringe;bang", + "example_sentence_native": "Se cortó el fleco del pelo.", + "example_sentence_english": "She cut her hair fringe.", + "pos": "noun", + "word_frequency": 24503 + }, + { + "word": "fotograma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "film frame;still", + "example_sentence_native": "Analizamos cada fotograma de la película.", + "example_sentence_english": "We analyzed each film frame of the movie.", + "pos": "noun", + "word_frequency": 24504 + }, + { + "word": "fotograma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "film frame;still", + "example_sentence_native": "Analizamos cada fotograma de la película.", + "example_sentence_english": "We analyzed each film frame of the movie.", + "pos": "noun", + "word_frequency": 24504 + }, + { + "word": "frenada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "braking;brake", + "example_sentence_native": "La frenada brusca evitó el accidente.", + "example_sentence_english": "The sudden braking avoided the accident.", + "pos": "noun", + "word_frequency": 24505 + }, + { + "word": "frenada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "braking;brake", + "example_sentence_native": "La frenada brusca evitó el accidente.", + "example_sentence_english": "The sudden braking avoided the accident.", + "pos": "noun", + "word_frequency": 24505 + }, + { + "word": "frontalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontally;head-on", + "example_sentence_native": "Se enfrentaron frontalmente al problema.", + "example_sentence_english": "They confronted the problem head-on.", + "pos": "adverb", + "word_frequency": 24506 + }, + { + "word": "frontalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontally;head-on", + "example_sentence_native": "Se enfrentaron frontalmente al problema.", + "example_sentence_english": "They confronted the problem head-on.", + "pos": "adverb", + "word_frequency": 24506 + }, + { + "word": "grama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grass;gram", + "example_sentence_native": "El jardín está cubierto de grama.", + "example_sentence_english": "The garden is covered with grass.", + "pos": "noun", + "word_frequency": 24511 + }, + { + "word": "grama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grass;gram", + "example_sentence_native": "El jardín está cubierto de grama.", + "example_sentence_english": "The garden is covered with grass.", + "pos": "noun", + "word_frequency": 24511 + }, + { + "word": "gravitacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gravitational", + "example_sentence_native": "La fuerza gravitacional atrae los objetos.", + "example_sentence_english": "Gravitational force attracts objects.", + "pos": "adjective", + "word_frequency": 24513 + }, + { + "word": "gravitacional", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gravitational", + "example_sentence_native": "La fuerza gravitacional atrae los objetos.", + "example_sentence_english": "Gravitational force attracts objects.", + "pos": "adjective", + "word_frequency": 24513 + }, + { + "word": "guardarropa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wardrobe;cloakroom", + "example_sentence_native": "Dejé mi abrigo en el guardarropa.", + "example_sentence_english": "I left my coat in the cloakroom.", + "pos": "noun", + "word_frequency": 24514 + }, + { + "word": "guardarropa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wardrobe;cloakroom", + "example_sentence_native": "Dejé mi abrigo en el guardarropa.", + "example_sentence_english": "I left my coat in the cloakroom.", + "pos": "noun", + "word_frequency": 24514 + }, + { + "word": "hinduismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hinduism", + "example_sentence_native": "El hinduismo es una religión antigua.", + "example_sentence_english": "Hinduism is an ancient religion.", + "pos": "noun", + "word_frequency": 24517 + }, + { + "word": "hinduismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hinduism", + "example_sentence_native": "El hinduismo es una religión antigua.", + "example_sentence_english": "Hinduism is an ancient religion.", + "pos": "noun", + "word_frequency": 24517 + }, + { + "word": "hollín", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soot", + "example_sentence_native": "La chimenea estaba llena de hollín.", + "example_sentence_english": "The chimney was full of soot.", + "pos": "noun", + "word_frequency": 24518 + }, + { + "word": "hollín", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soot", + "example_sentence_native": "La chimenea estaba llena de hollín.", + "example_sentence_english": "The chimney was full of soot.", + "pos": "noun", + "word_frequency": 24518 + }, + { + "word": "imaginativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginative", + "example_sentence_native": "Es un niño muy imaginativo, siempre inventa historias.", + "example_sentence_english": "He is a very imaginative child, always inventing stories.", + "pos": "adjective", + "word_frequency": 24522 + }, + { + "word": "imaginativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginative", + "example_sentence_native": "Es un niño muy imaginativo, siempre inventa historias.", + "example_sentence_english": "He is a very imaginative child, always inventing stories.", + "pos": "adjective", + "word_frequency": 24522 + }, + { + "word": "implantado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implanted", + "example_sentence_native": "El nuevo sistema ha sido implantado con éxito.", + "example_sentence_english": "The new system has been successfully implanted.", + "pos": "adjective", + "word_frequency": 24523 + }, + { + "word": "implantado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implanted", + "example_sentence_native": "El nuevo sistema ha sido implantado con éxito.", + "example_sentence_english": "The new system has been successfully implanted.", + "pos": "adjective", + "word_frequency": 24523 + }, + { + "word": "inclemencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inclemency", + "example_sentence_native": "Las inclemencias del tiempo impidieron el viaje.", + "example_sentence_english": "The inclemency of the weather prevented the trip.", + "pos": "noun", + "word_frequency": 24524 + }, + { + "word": "inclemencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inclemency", + "example_sentence_native": "Las inclemencias del tiempo impidieron el viaje.", + "example_sentence_english": "The inclemency of the weather prevented the trip.", + "pos": "noun", + "word_frequency": 24524 + }, + { + "word": "indignar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outrage", + "example_sentence_native": "La injusticia suele indignar a la gente.", + "example_sentence_english": "Injustice usually outrages people.", + "pos": "verb", + "word_frequency": 24525 + }, + { + "word": "indignar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outrage", + "example_sentence_native": "La injusticia suele indignar a la gente.", + "example_sentence_english": "Injustice usually outrages people.", + "pos": "verb", + "word_frequency": 24525 + }, + { + "word": "inflamatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammatory", + "example_sentence_native": "El médico recetó un medicamento antiinflamatorio.", + "example_sentence_english": "The doctor prescribed an anti-inflammatory medication.", + "pos": "adjective", + "word_frequency": 24526 + }, + { + "word": "inflamatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammatory", + "example_sentence_native": "El médico recetó un medicamento antiinflamatorio.", + "example_sentence_english": "The doctor prescribed an anti-inflammatory medication.", + "pos": "adjective", + "word_frequency": 24526 + }, + { + "word": "insolvencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insolvency", + "example_sentence_native": "La empresa declaró la insolvencia debido a las deudas.", + "example_sentence_english": "The company declared insolvency due to debts.", + "pos": "noun", + "word_frequency": 24527 + }, + { + "word": "insolvencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insolvency", + "example_sentence_native": "La empresa declaró la insolvencia debido a las deudas.", + "example_sentence_english": "The company declared insolvency due to debts.", + "pos": "noun", + "word_frequency": 24527 + }, + { + "word": "intensificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensified", + "example_sentence_native": "El conflicto se ha intensificado en las últimas semanas.", + "example_sentence_english": "The conflict has intensified in recent weeks.", + "pos": "adjective", + "word_frequency": 24528 + }, + { + "word": "intensificado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensified", + "example_sentence_native": "El conflicto se ha intensificado en las últimas semanas.", + "example_sentence_english": "The conflict has intensified in recent weeks.", + "pos": "adjective", + "word_frequency": 24528 + }, + { + "word": "interanual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "year-on-year", + "example_sentence_native": "El crecimiento interanual de la economía fue del 2%.", + "example_sentence_english": "The year-on-year growth of the economy was 2%.", + "pos": "adjective", + "word_frequency": 24529 + }, + { + "word": "interanual", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "year-on-year", + "example_sentence_native": "El crecimiento interanual de la economía fue del 2%.", + "example_sentence_english": "The year-on-year growth of the economy was 2%.", + "pos": "adjective", + "word_frequency": 24529 + }, + { + "word": "intimidado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidated", + "example_sentence_native": "Se sentía intimidado por la presencia del jefe.", + "example_sentence_english": "He felt intimidated by the boss's presence.", + "pos": "adjective", + "word_frequency": 24530 + }, + { + "word": "intimidado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidated", + "example_sentence_native": "Se sentía intimidado por la presencia del jefe.", + "example_sentence_english": "He felt intimidated by the boss's presence.", + "pos": "adjective", + "word_frequency": 24530 + }, + { + "word": "intranet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intranet", + "example_sentence_native": "La empresa utiliza una intranet para la comunicación interna.", + "example_sentence_english": "The company uses an intranet for internal communication.", + "pos": "noun", + "word_frequency": 24531 + }, + { + "word": "intranet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intranet", + "example_sentence_native": "La empresa utiliza una intranet para la comunicación interna.", + "example_sentence_english": "The company uses an intranet for internal communication.", + "pos": "noun", + "word_frequency": 24531 + }, + { + "word": "invertebrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invertebrate", + "example_sentence_native": "Los insectos son un tipo de invertebrado.", + "example_sentence_english": "Insects are a type of invertebrate.", + "pos": "noun", + "word_frequency": 24532 + }, + { + "word": "invertebrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invertebrate", + "example_sentence_native": "Los insectos son un tipo de invertebrado.", + "example_sentence_english": "Insects are a type of invertebrate.", + "pos": "noun", + "word_frequency": 24532 + }, + { + "word": "irradiar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to radiate", + "example_sentence_native": "El sol irradia luz y calor.", + "example_sentence_english": "The sun radiates light and heat.", + "pos": "verb", + "word_frequency": 24534 + }, + { + "word": "irradiar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to radiate", + "example_sentence_native": "El sol irradia luz y calor.", + "example_sentence_english": "The sun radiates light and heat.", + "pos": "verb", + "word_frequency": 24534 + }, + { + "word": "irreconocible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrecognizable", + "example_sentence_native": "Después del accidente, su coche quedó irreconocible.", + "example_sentence_english": "After the accident, his car was unrecognizable.", + "pos": "adjective", + "word_frequency": 24535 + }, + { + "word": "irreconocible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrecognizable", + "example_sentence_native": "Después del accidente, su coche quedó irreconocible.", + "example_sentence_english": "After the accident, his car was unrecognizable.", + "pos": "adjective", + "word_frequency": 24535 + }, + { + "word": "izar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hoist", + "example_sentence_native": "Vamos a izar la bandera al amanecer.", + "example_sentence_english": "We are going to hoist the flag at dawn.", + "pos": "verb", + "word_frequency": 24537 + }, + { + "word": "izar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hoist", + "example_sentence_native": "Vamos a izar la bandera al amanecer.", + "example_sentence_english": "We are going to hoist the flag at dawn.", + "pos": "verb", + "word_frequency": 24537 + }, + { + "word": "lechería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dairy farm", + "example_sentence_native": "Compramos leche fresca en la lechería del pueblo.", + "example_sentence_english": "We bought fresh milk at the village dairy.", + "pos": "noun", + "word_frequency": 24547 + }, + { + "word": "lechería", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dairy farm", + "example_sentence_native": "Compramos leche fresca en la lechería del pueblo.", + "example_sentence_english": "We bought fresh milk at the village dairy.", + "pos": "noun", + "word_frequency": 24547 + }, + { + "word": "legitimado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimized", + "example_sentence_native": "Su posición ha sido legitimada por la votación.", + "example_sentence_english": "His position has been legitimized by the vote.", + "pos": "adjective", + "word_frequency": 24549 + }, + { + "word": "legitimado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimized", + "example_sentence_native": "Su posición ha sido legitimada por la votación.", + "example_sentence_english": "His position has been legitimized by the vote.", + "pos": "adjective", + "word_frequency": 24549 + }, + { + "word": "luso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Portuguese", + "example_sentence_native": "La cultura lusa es rica en tradiciones.", + "example_sentence_english": "Portuguese culture is rich in traditions.", + "pos": "adjective", + "word_frequency": 24551 + }, + { + "word": "luso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Portuguese", + "example_sentence_native": "La cultura lusa es rica en tradiciones.", + "example_sentence_english": "Portuguese culture is rich in traditions.", + "pos": "adjective", + "word_frequency": 24551 + }, + { + "word": "macroeconomía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "macroeconomics", + "example_sentence_native": "Estudiamos los principios de la macroeconomía en la universidad.", + "example_sentence_english": "We study the principles of macroeconomics at university.", + "pos": "noun", + "word_frequency": 24553 + }, + { + "word": "macroeconomía", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "macroeconomics", + "example_sentence_native": "Estudiamos los principios de la macroeconomía en la universidad.", + "example_sentence_english": "We study the principles of macroeconomics at university.", + "pos": "noun", + "word_frequency": 24553 + }, + { + "word": "mandioca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cassava", + "example_sentence_native": "La mandioca es un alimento básico en muchas culturas.", + "example_sentence_english": "Cassava is a staple food in many cultures.", + "pos": "noun", + "word_frequency": 24554 + }, + { + "word": "mandioca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cassava", + "example_sentence_native": "La mandioca es un alimento básico en muchas culturas.", + "example_sentence_english": "Cassava is a staple food in many cultures.", + "pos": "noun", + "word_frequency": 24554 + }, + { + "word": "maruja", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "housewife", + "example_sentence_native": "Mi vecina es una maruja, siempre está al tanto de todo.", + "example_sentence_english": "My neighbor is a busybody, she's always aware of everything.", + "pos": "noun", + "word_frequency": 24555 + }, + { + "word": "maruja", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "housewife", + "example_sentence_native": "Mi vecina es una maruja, siempre está al tanto de todo.", + "example_sentence_english": "My neighbor is a busybody, she's always aware of everything.", + "pos": "noun", + "word_frequency": 24555 + }, + { + "word": "medial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medial", + "example_sentence_native": "El nervio medial se encuentra en el brazo.", + "example_sentence_english": "The medial nerve is located in the arm.", + "pos": "adjective", + "word_frequency": 24556 + }, + { + "word": "medial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medial", + "example_sentence_native": "El nervio medial se encuentra en el brazo.", + "example_sentence_english": "The medial nerve is located in the arm.", + "pos": "adjective", + "word_frequency": 24556 + }, + { + "word": "metabólico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metabolic", + "example_sentence_native": "El ejercicio acelera el proceso metabólico.", + "example_sentence_english": "Exercise speeds up the metabolic process.", + "pos": "adjective", + "word_frequency": 24559 + }, + { + "word": "metabólico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metabolic", + "example_sentence_native": "El ejercicio acelera el proceso metabólico.", + "example_sentence_english": "Exercise speeds up the metabolic process.", + "pos": "adjective", + "word_frequency": 24559 + }, + { + "word": "meticuloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous", + "example_sentence_native": "Es un investigador muy meticuloso en su trabajo.", + "example_sentence_english": "He is a very meticulous researcher in his work.", + "pos": "adjective", + "word_frequency": 24560 + }, + { + "word": "meticuloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous", + "example_sentence_native": "Es un investigador muy meticuloso en su trabajo.", + "example_sentence_english": "He is a very meticulous researcher in his work.", + "pos": "adjective", + "word_frequency": 24560 + }, + { + "word": "microfono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "example_sentence_native": "Necesitamos un micrófono para la presentación.", + "example_sentence_english": "We need a microphone for the presentation.", + "pos": "noun", + "word_frequency": 24561 + }, + { + "word": "microfono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "example_sentence_native": "Necesitamos un micrófono para la presentación.", + "example_sentence_english": "We need a microphone for the presentation.", + "pos": "noun", + "word_frequency": 24561 + }, + { + "word": "motosierra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chainsaw", + "example_sentence_native": "Usó una motosierra para cortar el árbol.", + "example_sentence_english": "He used a chainsaw to cut the tree.", + "pos": "noun", + "word_frequency": 24564 + }, + { + "word": "motosierra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chainsaw", + "example_sentence_native": "Usó una motosierra para cortar el árbol.", + "example_sentence_english": "He used a chainsaw to cut the tree.", + "pos": "noun", + "word_frequency": 24564 + }, + { + "word": "nítido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clear;sharp", + "example_sentence_native": "La imagen de la televisión es muy nítida.", + "example_sentence_english": "The television image is very clear.", + "pos": "adjective", + "word_frequency": 24572 + }, + { + "word": "nítido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clear;sharp", + "example_sentence_native": "La imagen de la televisión es muy nítida.", + "example_sentence_english": "The television image is very clear.", + "pos": "adjective", + "word_frequency": 24572 + }, + { + "word": "obsolescencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsolescence", + "example_sentence_native": "La obsolescencia programada es un problema.", + "example_sentence_english": "Planned obsolescence is a problem.", + "pos": "noun", + "word_frequency": 24574 + }, + { + "word": "obsolescencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsolescence", + "example_sentence_native": "La obsolescencia programada es un problema.", + "example_sentence_english": "Planned obsolescence is a problem.", + "pos": "noun", + "word_frequency": 24574 + }, + { + "word": "ocultamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concealment", + "example_sentence_native": "El ocultamiento de pruebas es un delito.", + "example_sentence_english": "The concealment of evidence is a crime.", + "pos": "noun", + "word_frequency": 24575 + }, + { + "word": "ocultamiento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concealment", + "example_sentence_native": "El ocultamiento de pruebas es un delito.", + "example_sentence_english": "The concealment of evidence is a crime.", + "pos": "noun", + "word_frequency": 24575 + }, + { + "word": "opulencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opulence", + "example_sentence_native": "Vivían en la opulencia.", + "example_sentence_english": "They lived in opulence.", + "pos": "noun", + "word_frequency": 24578 + }, + { + "word": "opulencia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opulence", + "example_sentence_native": "Vivían en la opulencia.", + "example_sentence_english": "They lived in opulence.", + "pos": "noun", + "word_frequency": 24578 + }, + { + "word": "oscurantismo", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "obscurantism", + "example_sentence_native": "La sociedad luchó contra el oscurantismo.", + "example_sentence_english": "Society fought against obscurantism.", + "pos": "noun", + "word_frequency": 24580 + }, + { + "word": "oscurantismo", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "obscurantism", + "example_sentence_native": "La sociedad luchó contra el oscurantismo.", + "example_sentence_english": "Society fought against obscurantism.", + "pos": "noun", + "word_frequency": 24580 + }, + { + "word": "ostentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ostentation", + "example_sentence_native": "Su riqueza era pura ostentación.", + "example_sentence_english": "His wealth was pure ostentation.", + "pos": "noun", + "word_frequency": 24581 + }, + { + "word": "ostentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ostentation", + "example_sentence_native": "Su riqueza era pura ostentación.", + "example_sentence_english": "His wealth was pure ostentation.", + "pos": "noun", + "word_frequency": 24581 + }, + { + "word": "outlet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outlet (store)", + "example_sentence_native": "Compró ropa en un outlet.", + "example_sentence_english": "He bought clothes at an outlet.", + "pos": "noun", + "word_frequency": 24582 + }, + { + "word": "outlet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outlet (store)", + "example_sentence_native": "Compró ropa en un outlet.", + "example_sentence_english": "He bought clothes at an outlet.", + "pos": "noun", + "word_frequency": 24582 + }, + { + "word": "ovalado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oval", + "example_sentence_native": "La mesa tiene una forma ovalada.", + "example_sentence_english": "The table has an oval shape.", + "pos": "adjective", + "word_frequency": 24584 + }, + { + "word": "ovalado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oval", + "example_sentence_native": "La mesa tiene una forma ovalada.", + "example_sentence_english": "The table has an oval shape.", + "pos": "adjective", + "word_frequency": 24584 + }, + { + "word": "oxigenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bleached (hair)", + "example_sentence_native": "Su cabello estaba oxigenado.", + "example_sentence_english": "Her hair was bleached.", + "pos": "adjective", + "word_frequency": 24585 + }, + { + "word": "oxigenado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bleached (hair)", + "example_sentence_native": "Su cabello estaba oxigenado.", + "example_sentence_english": "Her hair was bleached.", + "pos": "adjective", + "word_frequency": 24585 + }, + { + "word": "pagoda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pagoda", + "example_sentence_native": "Visitamos una antigua pagoda en Japón.", + "example_sentence_english": "We visited an ancient pagoda in Japan.", + "pos": "noun", + "word_frequency": 24587 + }, + { + "word": "pagoda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pagoda", + "example_sentence_native": "Visitamos una antigua pagoda en Japón.", + "example_sentence_english": "We visited an ancient pagoda in Japan.", + "pos": "noun", + "word_frequency": 24587 + }, + { + "word": "panceta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bacon;pancetta", + "example_sentence_native": "Me gusta la panceta crujiente.", + "example_sentence_english": "I like crispy bacon.", + "pos": "noun", + "word_frequency": 24588 + }, + { + "word": "panceta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bacon;pancetta", + "example_sentence_native": "Me gusta la panceta crujiente.", + "example_sentence_english": "I like crispy bacon.", + "pos": "noun", + "word_frequency": 24588 + }, + { + "word": "paté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pâté", + "example_sentence_native": "Sirvieron paté con tostadas.", + "example_sentence_english": "They served pâté with toast.", + "pos": "noun", + "word_frequency": 24589 + }, + { + "word": "paté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pâté", + "example_sentence_native": "Sirvieron paté con tostadas.", + "example_sentence_english": "They served pâté with toast.", + "pos": "noun", + "word_frequency": 24589 + }, + { + "word": "picota", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pillory", + "example_sentence_native": "Lo pusieron en la picota pública.", + "example_sentence_english": "They put him in the public pillory.", + "pos": "noun", + "word_frequency": 24594 + }, + { + "word": "picota", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pillory", + "example_sentence_native": "Lo pusieron en la picota pública.", + "example_sentence_english": "They put him in the public pillory.", + "pos": "noun", + "word_frequency": 24594 + }, + { + "word": "plastilina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plasticine;play-doh", + "example_sentence_native": "Los niños juegan con plastilina.", + "example_sentence_english": "The children play with plasticine.", + "pos": "noun", + "word_frequency": 24596 + }, + { + "word": "plastilina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plasticine;play-doh", + "example_sentence_native": "Los niños juegan con plastilina.", + "example_sentence_english": "The children play with plasticine.", + "pos": "noun", + "word_frequency": 24596 + }, + { + "word": "politizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "politicized", + "example_sentence_native": "El debate se ha vuelto muy politizado.", + "example_sentence_english": "The debate has become very politicized.", + "pos": "adjective", + "word_frequency": 24597 + }, + { + "word": "politizado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "politicized", + "example_sentence_native": "El debate se ha vuelto muy politizado.", + "example_sentence_english": "The debate has become very politicized.", + "pos": "adjective", + "word_frequency": 24597 + }, + { + "word": "poroto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bean", + "example_sentence_native": "Me encantan los porotos negros.", + "example_sentence_english": "I love black beans.", + "pos": "noun", + "word_frequency": 24599 + }, + { + "word": "poroto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bean", + "example_sentence_native": "Me encantan los porotos negros.", + "example_sentence_english": "I love black beans.", + "pos": "noun", + "word_frequency": 24599 + }, + { + "word": "postguerra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postwar period", + "example_sentence_native": "La postguerra fue un período de reconstrucción.", + "example_sentence_english": "The postwar period was a time of reconstruction.", + "pos": "noun", + "word_frequency": 24600 + }, + { + "word": "postguerra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postwar period", + "example_sentence_native": "La postguerra fue un período de reconstrucción.", + "example_sentence_english": "The postwar period was a time of reconstruction.", + "pos": "noun", + "word_frequency": 24600 + }, + { + "word": "prehistórico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prehistoric", + "example_sentence_native": "Descubrieron herramientas prehistóricas en la cueva.", + "example_sentence_english": "They discovered prehistoric tools in the cave.", + "pos": "adjective", + "word_frequency": 24601 + }, + { + "word": "prehistórico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prehistoric", + "example_sentence_native": "Descubrieron herramientas prehistóricas en la cueva.", + "example_sentence_english": "They discovered prehistoric tools in the cave.", + "pos": "adjective", + "word_frequency": 24601 + }, + { + "word": "proba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proof;test", + "example_sentence_native": "La proba de su inocencia fue difícil de encontrar.", + "example_sentence_english": "The proof of his innocence was difficult to find.", + "pos": "noun", + "word_frequency": 24603 + }, + { + "word": "proba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proof;test", + "example_sentence_native": "La proba de su inocencia fue difícil de encontrar.", + "example_sentence_english": "The proof of his innocence was difficult to find.", + "pos": "noun", + "word_frequency": 24603 + }, + { + "word": "promiscuidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "promiscuity", + "example_sentence_native": "La promiscuidad puede tener consecuencias para la salud.", + "example_sentence_english": "Promiscuity can have health consequences.", + "pos": "noun", + "word_frequency": 24604 + }, + { + "word": "promiscuidad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "promiscuity", + "example_sentence_native": "La promiscuidad puede tener consecuencias para la salud.", + "example_sentence_english": "Promiscuity can have health consequences.", + "pos": "noun", + "word_frequency": 24604 + }, + { + "word": "putrefacción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "putrefaction;decay", + "example_sentence_native": "El olor a putrefacción era insoportable.", + "example_sentence_english": "The smell of putrefaction was unbearable.", + "pos": "noun", + "word_frequency": 24605 + }, + { + "word": "putrefacción", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "putrefaction;decay", + "example_sentence_native": "El olor a putrefacción era insoportable.", + "example_sentence_english": "The smell of putrefaction was unbearable.", + "pos": "noun", + "word_frequency": 24605 + }, + { + "word": "racionalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalist", + "example_sentence_native": "Es un racionalista convencido de la lógica.", + "example_sentence_english": "He is a rationalist convinced by logic.", + "pos": "noun", + "word_frequency": 24607 + }, + { + "word": "racionalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalist", + "example_sentence_native": "Es un racionalista convencido de la lógica.", + "example_sentence_english": "He is a rationalist convinced by logic.", + "pos": "noun", + "word_frequency": 24607 + }, + { + "word": "rastreador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracker;scout", + "example_sentence_native": "El rastreador encontró las huellas en la nieve.", + "example_sentence_english": "The tracker found the footprints in the snow.", + "pos": "noun", + "word_frequency": 24608 + }, + { + "word": "rastreador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracker;scout", + "example_sentence_native": "El rastreador encontró las huellas en la nieve.", + "example_sentence_english": "The tracker found the footprints in the snow.", + "pos": "noun", + "word_frequency": 24608 + }, + { + "word": "rayuela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hopscotch", + "example_sentence_native": "Los niños jugaban a la rayuela en el patio.", + "example_sentence_english": "The children were playing hopscotch in the yard.", + "pos": "noun", + "word_frequency": 24609 + }, + { + "word": "rayuela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hopscotch", + "example_sentence_native": "Los niños jugaban a la rayuela en el patio.", + "example_sentence_english": "The children were playing hopscotch in the yard.", + "pos": "noun", + "word_frequency": 24609 + }, + { + "word": "recaudador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collector (of taxes;debts;etc.)", + "example_sentence_native": "El recaudador de impuestos visitó la empresa.", + "example_sentence_english": "The tax collector visited the company.", + "pos": "noun", + "word_frequency": 24610 + }, + { + "word": "recaudador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collector (of taxes;debts;etc.)", + "example_sentence_native": "El recaudador de impuestos visitó la empresa.", + "example_sentence_english": "The tax collector visited the company.", + "pos": "noun", + "word_frequency": 24610 + }, + { + "word": "recife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reef", + "example_sentence_native": "El barco chocó contra un recife oculto.", + "example_sentence_english": "The ship crashed against a hidden reef.", + "pos": "noun", + "word_frequency": 24611 + }, + { + "word": "recife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reef", + "example_sentence_native": "El barco chocó contra un recife oculto.", + "example_sentence_english": "The ship crashed against a hidden reef.", + "pos": "noun", + "word_frequency": 24611 + }, + { + "word": "rectal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectal", + "example_sentence_native": "El médico realizó un examen rectal.", + "example_sentence_english": "The doctor performed a rectal exam.", + "pos": "adjective", + "word_frequency": 24612 + }, + { + "word": "rectal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectal", + "example_sentence_native": "El médico realizó un examen rectal.", + "example_sentence_english": "The doctor performed a rectal exam.", + "pos": "adjective", + "word_frequency": 24612 + }, + { + "word": "refinación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refining;refinement", + "example_sentence_native": "La refinación del petróleo es un proceso complejo.", + "example_sentence_english": "Oil refining is a complex process.", + "pos": "noun", + "word_frequency": 24613 + }, + { + "word": "refinación", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refining;refinement", + "example_sentence_native": "La refinación del petróleo es un proceso complejo.", + "example_sentence_english": "Oil refining is a complex process.", + "pos": "noun", + "word_frequency": 24613 + }, + { + "word": "reguero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trail;mess;spill", + "example_sentence_native": "Dejó un reguero de migas por toda la cocina.", + "example_sentence_english": "He left a trail of crumbs all over the kitchen.", + "pos": "noun", + "word_frequency": 24614 + }, + { + "word": "reguero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trail;mess;spill", + "example_sentence_native": "Dejó un reguero de migas por toda la cocina.", + "example_sentence_english": "He left a trail of crumbs all over the kitchen.", + "pos": "noun", + "word_frequency": 24614 + }, + { + "word": "repulsivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repulsive;disgusting", + "example_sentence_native": "El olor era absolutamente repulsivo.", + "example_sentence_english": "The smell was absolutely repulsive.", + "pos": "adjective", + "word_frequency": 24615 + }, + { + "word": "repulsivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repulsive;disgusting", + "example_sentence_native": "El olor era absolutamente repulsivo.", + "example_sentence_english": "The smell was absolutely repulsive.", + "pos": "adjective", + "word_frequency": 24615 + }, + { + "word": "reservorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reservoir", + "example_sentence_native": "El lago es un importante reservorio de agua dulce.", + "example_sentence_english": "The lake is an important freshwater reservoir.", + "pos": "noun", + "word_frequency": 24616 + }, + { + "word": "reservorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reservoir", + "example_sentence_native": "El lago es un importante reservorio de agua dulce.", + "example_sentence_english": "The lake is an important freshwater reservoir.", + "pos": "noun", + "word_frequency": 24616 + }, + { + "word": "resonante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resonant;resounding", + "example_sentence_native": "Su voz era profunda y resonante.", + "example_sentence_english": "His voice was deep and resonant.", + "pos": "adjective", + "word_frequency": 24618 + }, + { + "word": "resonante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resonant;resounding", + "example_sentence_native": "Su voz era profunda y resonante.", + "example_sentence_english": "His voice was deep and resonant.", + "pos": "adjective", + "word_frequency": 24618 + }, + { + "word": "resquicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crack;gap;loophole", + "example_sentence_native": "Encontró un resquicio en la pared.", + "example_sentence_english": "He found a crack in the wall.", + "pos": "noun", + "word_frequency": 24619 + }, + { + "word": "resquicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crack;gap;loophole", + "example_sentence_native": "Encontró un resquicio en la pared.", + "example_sentence_english": "He found a crack in the wall.", + "pos": "noun", + "word_frequency": 24619 + }, + { + "word": "retracto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retraction;right of first refusal (legal)", + "example_sentence_native": "Ejerció su derecho de retracto sobre la propiedad.", + "example_sentence_english": "He exercised his right of first refusal on the property.", + "pos": "noun", + "word_frequency": 24620 + }, + { + "word": "retracto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retraction;right of first refusal (legal)", + "example_sentence_native": "Ejerció su derecho de retracto sobre la propiedad.", + "example_sentence_english": "He exercised his right of first refusal on the property.", + "pos": "noun", + "word_frequency": 24620 + }, + { + "word": "revoque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plaster;render (coating on a wall)", + "example_sentence_native": "Necesitamos aplicar un nuevo revoque a la pared.", + "example_sentence_english": "We need to apply new plaster to the wall.", + "pos": "noun", + "word_frequency": 24621 + }, + { + "word": "revoque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plaster;render (coating on a wall)", + "example_sentence_native": "Necesitamos aplicar un nuevo revoque a la pared.", + "example_sentence_english": "We need to apply new plaster to the wall.", + "pos": "noun", + "word_frequency": 24621 + }, + { + "word": "ricamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "richly;abundantly", + "example_sentence_native": "La casa estaba ricamente decorada.", + "example_sentence_english": "The house was richly decorated.", + "pos": "adverb", + "word_frequency": 24622 + }, + { + "word": "ricamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "richly;abundantly", + "example_sentence_native": "La casa estaba ricamente decorada.", + "example_sentence_english": "The house was richly decorated.", + "pos": "adverb", + "word_frequency": 24622 + }, + { + "word": "salvajismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "savagery;barbarism", + "example_sentence_native": "El acto de salvajismo fue condenado por todos.", + "example_sentence_english": "The act of savagery was condemned by everyone.", + "pos": "noun", + "word_frequency": 24627 + }, + { + "word": "salvajismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "savagery;barbarism", + "example_sentence_native": "El acto de salvajismo fue condenado por todos.", + "example_sentence_english": "The act of savagery was condemned by everyone.", + "pos": "noun", + "word_frequency": 24627 + }, + { + "word": "sedimentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sedimentation", + "example_sentence_native": "La sedimentación es un proceso geológico.", + "example_sentence_english": "Sedimentation is a geological process.", + "pos": "noun", + "word_frequency": 24632 + }, + { + "word": "sedimentación", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sedimentation", + "example_sentence_native": "La sedimentación es un proceso geológico.", + "example_sentence_english": "Sedimentation is a geological process.", + "pos": "noun", + "word_frequency": 24632 + }, + { + "word": "seguidilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seguidilla (Spanish folk dance;song)", + "example_sentence_native": "Bailaron una animada seguidilla en la fiesta.", + "example_sentence_english": "They danced a lively seguidilla at the party.", + "pos": "noun", + "word_frequency": 24633 + }, + { + "word": "seguidilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seguidilla (Spanish folk dance;song)", + "example_sentence_native": "Bailaron una animada seguidilla en la fiesta.", + "example_sentence_english": "They danced a lively seguidilla at the party.", + "pos": "noun", + "word_frequency": 24633 + }, + { + "word": "sincronizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to synchronize", + "example_sentence_native": "Necesitamos sincronizar nuestros relojes.", + "example_sentence_english": "We need to synchronize our watches.", + "pos": "verb", + "word_frequency": 24636 + }, + { + "word": "sincronizar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to synchronize", + "example_sentence_native": "Necesitamos sincronizar nuestros relojes.", + "example_sentence_english": "We need to synchronize our watches.", + "pos": "verb", + "word_frequency": 24636 + }, + { + "word": "sirenita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little mermaid", + "example_sentence_native": "Mi hija adora el cuento de la Sirenita.", + "example_sentence_english": "My daughter loves the story of the Little Mermaid.", + "pos": "noun", + "word_frequency": 24637 + }, + { + "word": "sirenita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little mermaid", + "example_sentence_native": "Mi hija adora el cuento de la Sirenita.", + "example_sentence_english": "My daughter loves the story of the Little Mermaid.", + "pos": "noun", + "word_frequency": 24637 + }, + { + "word": "sistematización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "systematization", + "example_sentence_native": "La sistematización de datos es crucial para el análisis.", + "example_sentence_english": "Data systematization is crucial for analysis.", + "pos": "noun", + "word_frequency": 24638 + }, + { + "word": "sistematización", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "systematization", + "example_sentence_native": "La sistematización de datos es crucial para el análisis.", + "example_sentence_english": "Data systematization is crucial for analysis.", + "pos": "noun", + "word_frequency": 24638 + }, + { + "word": "sodomía", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "sodomy", + "example_sentence_native": "La sodomía fue considerada un crimen en muchas culturas antiguas.", + "example_sentence_english": "Sodomy was considered a crime in many ancient cultures.", + "pos": "noun", + "word_frequency": 24640 + }, + { + "word": "sodomía", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "sodomy", + "example_sentence_native": "La sodomía fue considerada un crimen en muchas culturas antiguas.", + "example_sentence_english": "Sodomy was considered a crime in many ancient cultures.", + "pos": "noun", + "word_frequency": 24640 + }, + { + "word": "soleado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunny", + "example_sentence_native": "Hoy es un día soleado perfecto para ir a la playa.", + "example_sentence_english": "Today is a sunny day perfect for going to the beach.", + "pos": "adjective", + "word_frequency": 24641 + }, + { + "word": "soleado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunny", + "example_sentence_native": "Hoy es un día soleado perfecto para ir a la playa.", + "example_sentence_english": "Today is a sunny day perfect for going to the beach.", + "pos": "adjective", + "word_frequency": 24641 + }, + { + "word": "subsidiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subsidize", + "example_sentence_native": "El gobierno decidió subsidiar el transporte público para reducir los costos.", + "example_sentence_english": "The government decided to subsidize public transport to reduce costs.", + "pos": "verb", + "word_frequency": 24646 + }, + { + "word": "subsidiar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subsidize", + "example_sentence_native": "El gobierno decidió subsidiar el transporte público para reducir los costos.", + "example_sentence_english": "The government decided to subsidize public transport to reduce costs.", + "pos": "verb", + "word_frequency": 24646 + }, + { + "word": "sura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surah (chapter of the Quran)", + "example_sentence_native": "Cada sura del Corán contiene enseñanzas importantes para los creyentes.", + "example_sentence_english": "Each surah of the Quran contains important teachings for believers.", + "pos": "noun", + "word_frequency": 24648 + }, + { + "word": "sura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surah (chapter of the Quran)", + "example_sentence_native": "Cada sura del Corán contiene enseñanzas importantes para los creyentes.", + "example_sentence_english": "Each surah of the Quran contains important teachings for believers.", + "pos": "noun", + "word_frequency": 24648 + }, + { + "word": "tallar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to carve;to sculpt", + "example_sentence_native": "El artista va a tallar una estatua de madera para la exposición.", + "example_sentence_english": "The artist is going to carve a wooden statue for the exhibition.", + "pos": "verb", + "word_frequency": 24650 + }, + { + "word": "tallar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to carve;to sculpt", + "example_sentence_native": "El artista va a tallar una estatua de madera para la exposición.", + "example_sentence_english": "The artist is going to carve a wooden statue for the exhibition.", + "pos": "verb", + "word_frequency": 24650 + }, + { + "word": "temporizador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timer", + "example_sentence_native": "Puse el temporizador para que la alarma suene en cinco minutos.", + "example_sentence_english": "I set the timer for the alarm to ring in five minutes.", + "pos": "noun", + "word_frequency": 24655 + }, + { + "word": "temporizador", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timer", + "example_sentence_native": "Puse el temporizador para que la alarma suene en cinco minutos.", + "example_sentence_english": "I set the timer for the alarm to ring in five minutes.", + "pos": "noun", + "word_frequency": 24655 + }, + { + "word": "tintura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tincture;dye", + "example_sentence_native": "Se aplicó una tintura para cambiar el color de su cabello.", + "example_sentence_english": "She applied a dye to change her hair color.", + "pos": "noun", + "word_frequency": 24657 + }, + { + "word": "tintura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tincture;dye", + "example_sentence_native": "Se aplicó una tintura para cambiar el color de su cabello.", + "example_sentence_english": "She applied a dye to change her hair color.", + "pos": "noun", + "word_frequency": 24657 + }, + { + "word": "tramar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to plot;to scheme", + "example_sentence_native": "Los villanos estaban tramando un plan para dominar el mundo.", + "example_sentence_english": "The villains were plotting a plan to dominate the world.", + "pos": "verb", + "word_frequency": 24659 + }, + { + "word": "tramar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to plot;to scheme", + "example_sentence_native": "Los villanos estaban tramando un plan para dominar el mundo.", + "example_sentence_english": "The villains were plotting a plan to dominate the world.", + "pos": "verb", + "word_frequency": 24659 + }, + { + "word": "trocha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "track;path", + "example_sentence_native": "Seguimos una pequeña trocha a través del bosque hasta el río.", + "example_sentence_english": "We followed a small track through the forest to the river.", + "pos": "noun", + "word_frequency": 24660 + }, + { + "word": "trocha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "track;path", + "example_sentence_native": "Seguimos una pequeña trocha a través del bosque hasta el río.", + "example_sentence_english": "We followed a small track through the forest to the river.", + "pos": "noun", + "word_frequency": 24660 + } +] diff --git a/data-pipeline/stage-2-annotate/sources/cefr/fr.json b/data-pipeline/stage-2-annotate/sources/cefr/fr.json new file mode 100644 index 0000000..a76a5f0 --- /dev/null +++ b/data-pipeline/stage-2-annotate/sources/cefr/fr.json @@ -0,0 +1,193382 @@ +[ + { + "word": "être", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be", + "example_sentence_native": "Je suis étudiant.", + "example_sentence_english": "I am a student.", + "pos": "verb", + "word_frequency": 7 + }, + { + "word": "avoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have", + "example_sentence_native": "Nous avons faim.", + "example_sentence_english": "We are hungry.", + "pos": "verb", + "word_frequency": 13 + }, + { + "word": "pas", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not", + "example_sentence_native": "Je ne sais pas.", + "example_sentence_english": "I don't know.", + "pos": "adverb", + "word_frequency": 14 + }, + { + "word": "ne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not (first part of negation)", + "example_sentence_native": "Je ne mange pas de viande.", + "example_sentence_english": "I don't eat meat.", + "pos": "adverb", + "word_frequency": 27 + }, + { + "word": "plus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "more", + "example_sentence_native": "Je veux plus de café.", + "example_sentence_english": "I want more coffee.", + "pos": "adverb", + "word_frequency": 28 + }, + { + "word": "tout", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "all;every", + "example_sentence_native": "Tout le monde est là.", + "example_sentence_english": "Everyone is here.", + "pos": "adjective", + "word_frequency": 40 + }, + { + "word": "faire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to do;to make", + "example_sentence_native": "Je dois faire mes devoirs.", + "example_sentence_english": "I have to do my homework.", + "pos": "verb", + "word_frequency": 41 + }, + { + "word": "bien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "well", + "example_sentence_native": "Elle parle bien français.", + "example_sentence_english": "She speaks French well.", + "pos": "adverb", + "word_frequency": 44 + }, + { + "word": "même", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "same;even", + "example_sentence_native": "C'est la même chose.", + "example_sentence_english": "It's the same thing.", + "pos": "adjective", + "word_frequency": 46 + }, + { + "word": "mon", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "my", + "example_sentence_native": "C'est mon livre.", + "example_sentence_english": "This is my book.", + "pos": "adjective", + "word_frequency": 49 + }, + { + "word": "aussi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "also;too", + "example_sentence_native": "Moi aussi, j'aime le chocolat.", + "example_sentence_english": "I also like chocolate.", + "pos": "adverb", + "word_frequency": 51 + }, + { + "word": "pouvoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be able to;can", + "example_sentence_native": "Je peux t'aider.", + "example_sentence_english": "I can help you.", + "pos": "verb", + "word_frequency": 52 + }, + { + "word": "deux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two", + "example_sentence_native": "J'ai deux frères.", + "example_sentence_english": "I have two brothers.", + "pos": "numeral", + "word_frequency": 53 + }, + { + "word": "leur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "their", + "example_sentence_native": "C'est leur maison.", + "example_sentence_english": "It's their house.", + "pos": "adjective", + "word_frequency": 54 + }, + { + "word": "très", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "very", + "example_sentence_native": "C'est très intéressant.", + "example_sentence_english": "It's very interesting.", + "pos": "adverb", + "word_frequency": 58 + }, + { + "word": "où", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where", + "example_sentence_native": "Où est la gare ?", + "example_sentence_english": "Where is the station?", + "pos": "adverb", + "word_frequency": 61 + }, + { + "word": "aller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go", + "example_sentence_native": "Nous allons au parc.", + "example_sentence_english": "We are going to the park.", + "pos": "verb", + "word_frequency": 62 + }, + { + "word": "encore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "still;yet;again", + "example_sentence_native": "Il pleut encore.", + "example_sentence_english": "It's still raining.", + "pos": "adverb", + "word_frequency": 63 + }, + { + "word": "alors", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "so;then", + "example_sentence_native": "Alors, qu'est-ce qu'on fait ?", + "example_sentence_english": "So, what do we do?", + "pos": "adverb", + "word_frequency": 64 + }, + { + "word": "temps", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time;weather", + "example_sentence_native": "Quel temps fait-il ?", + "example_sentence_english": "What's the weather like?", + "pos": "noun", + "word_frequency": 66 + }, + { + "word": "an", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "year", + "example_sentence_native": "J'ai vingt ans.", + "example_sentence_english": "I am twenty years old.", + "pos": "noun", + "word_frequency": 67 + }, + { + "word": "autre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "other;another", + "example_sentence_native": "Je veux un autre café.", + "example_sentence_english": "I want another coffee.", + "pos": "adjective", + "word_frequency": 68 + }, + { + "word": "dire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to say;to tell", + "example_sentence_native": "Que veux-tu dire ?", + "example_sentence_english": "What do you mean?", + "pos": "verb", + "word_frequency": 69 + }, + { + "word": "là", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there;here", + "example_sentence_native": "Mets-le là.", + "example_sentence_english": "Put it there.", + "pos": "adverb", + "word_frequency": 70 + }, + { + "word": "peu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little;few", + "example_sentence_native": "J'ai un peu de temps.", + "example_sentence_english": "I have a little time.", + "pos": "adverb", + "word_frequency": 71 + }, + { + "word": "monde", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "world;people", + "example_sentence_native": "Tout le monde est là.", + "example_sentence_english": "Everyone is here.", + "pos": "noun", + "word_frequency": 75 + }, + { + "word": "fois", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time (occurrence)", + "example_sentence_native": "Une fois par semaine.", + "example_sentence_english": "Once a week.", + "pos": "noun", + "word_frequency": 76 + }, + { + "word": "falloir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be necessary;must", + "example_sentence_native": "Il faut partir.", + "example_sentence_english": "It is necessary to leave.", + "pos": "verb", + "word_frequency": 77 + }, + { + "word": "toujours", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "always;still", + "example_sentence_native": "Il est toujours en retard.", + "example_sentence_english": "He is always late.", + "pos": "adverb", + "word_frequency": 78 + }, + { + "word": "voir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to see", + "example_sentence_native": "Je vois un oiseau.", + "example_sentence_english": "I see a bird.", + "pos": "verb", + "word_frequency": 79 + }, + { + "word": "bon", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "good", + "example_sentence_native": "C'est un bon livre.", + "example_sentence_english": "It's a good book.", + "pos": "adjective", + "word_frequency": 80 + }, + { + "word": "jamais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "never", + "example_sentence_native": "Je ne mange jamais de viande.", + "example_sentence_english": "I never eat meat.", + "pos": "adverb", + "word_frequency": 88 + }, + { + "word": "vie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "life", + "example_sentence_native": "La vie est belle.", + "example_sentence_english": "Life is beautiful.", + "pos": "noun", + "word_frequency": 89 + }, + { + "word": "moins", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "less", + "example_sentence_native": "Il y a moins de monde aujourd'hui.", + "example_sentence_english": "There are fewer people today.", + "pos": "adverb", + "word_frequency": 90 + }, + { + "word": "déjà", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "already", + "example_sentence_native": "Tu as déjà mangé ?", + "example_sentence_english": "Have you already eaten?", + "pos": "adverb", + "word_frequency": 93 + }, + { + "word": "trop", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "too much", + "example_sentence_native": "Il y a trop de bruit.", + "example_sentence_english": "There is too much noise.", + "pos": "adverb", + "word_frequency": 95 + }, + { + "word": "gens", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "people", + "example_sentence_native": "Les gens sont gentils ici.", + "example_sentence_english": "The people are kind here.", + "pos": "noun", + "word_frequency": 98 + }, + { + "word": "juste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "just", + "example_sentence_native": "C'est une décision juste.", + "example_sentence_english": "It's a fair decision.", + "pos": "adjective", + "word_frequency": 99 + }, + { + "word": "vraiment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "really", + "example_sentence_native": "C'est vraiment intéressant.", + "example_sentence_english": "It's really interesting.", + "pos": "adverb", + "word_frequency": 101 + }, + { + "word": "ainsi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thus", + "example_sentence_native": "Il a agi ainsi.", + "example_sentence_english": "He acted in this way.", + "pos": "adverb", + "word_frequency": 102 + }, + { + "word": "grand", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "big", + "example_sentence_native": "C'est une grande maison.", + "example_sentence_english": "It's a big house.", + "pos": "adjective", + "word_frequency": 103 + }, + { + "word": "pays", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "country", + "example_sentence_native": "Quel est votre pays d'origine ?", + "example_sentence_english": "What is your country of origin?", + "pos": "noun", + "word_frequency": 104 + }, + { + "word": "français", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "French", + "example_sentence_native": "Je parle français.", + "example_sentence_english": "I speak French.", + "pos": "adjective", + "word_frequency": 105 + }, + { + "word": "beaucoup", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a lot", + "example_sentence_native": "J'aime beaucoup ce film.", + "example_sentence_english": "I like this movie a lot.", + "pos": "adverb", + "word_frequency": 106 + }, + { + "word": "jour", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day", + "example_sentence_native": "Bonne journée !", + "example_sentence_english": "Have a good day!", + "pos": "noun", + "word_frequency": 107 + }, + { + "word": "premier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "first", + "example_sentence_native": "C'est le premier jour.", + "example_sentence_english": "It's the first day.", + "pos": "adjective", + "word_frequency": 110 + }, + { + "word": "personne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "person", + "example_sentence_native": "C'est une personne gentille.", + "example_sentence_english": "She is a kind person.", + "pos": "noun", + "word_frequency": 112 + }, + { + "word": "homme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "man", + "example_sentence_native": "C'est un homme grand.", + "example_sentence_english": "He is a tall man.", + "pos": "noun", + "word_frequency": 115 + }, + { + "word": "ici", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here", + "example_sentence_native": "Venez ici !", + "example_sentence_english": "Come here!", + "pos": "adverb", + "word_frequency": 116 + }, + { + "word": "cas", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "case", + "example_sentence_native": "Dans ce cas, nous devons agir.", + "example_sentence_english": "In this case, we must act.", + "pos": "noun", + "word_frequency": 118 + }, + { + "word": "chose", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thing", + "example_sentence_native": "C'est une bonne chose.", + "example_sentence_english": "It's a good thing.", + "pos": "noun", + "word_frequency": 119 + }, + { + "word": "devoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have to;must", + "example_sentence_native": "Je dois partir maintenant.", + "example_sentence_english": "I have to leave now.", + "pos": "verb", + "word_frequency": 120 + }, + { + "word": "partie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "part;game", + "example_sentence_native": "C'est une grande partie de ma vie.", + "example_sentence_english": "It's a big part of my life.", + "pos": "noun", + "word_frequency": 121 + }, + { + "word": "mal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "badly;wrong", + "example_sentence_native": "Il chante très mal.", + "example_sentence_english": "He sings very badly.", + "pos": "adverb", + "word_frequency": 123 + }, + { + "word": "fin", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "end", + "example_sentence_native": "C'est la fin du film.", + "example_sentence_english": "It's the end of the movie.", + "pos": "noun", + "word_frequency": 124 + }, + { + "word": "petit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "small;little", + "example_sentence_native": "J'ai un petit chien.", + "example_sentence_english": "I have a small dog.", + "pos": "adjective", + "word_frequency": 126 + }, + { + "word": "puis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "then", + "example_sentence_native": "Je mange, puis je pars.", + "example_sentence_english": "I eat, then I leave.", + "pos": "adverb", + "word_frequency": 127 + }, + { + "word": "année", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "year", + "example_sentence_native": "L'année prochaine, je voyagerai.", + "example_sentence_english": "Next year, I will travel.", + "pos": "noun", + "word_frequency": 128 + }, + { + "word": "moment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moment", + "example_sentence_native": "Attends un moment, s'il te plaît.", + "example_sentence_english": "Wait a moment, please.", + "pos": "noun", + "word_frequency": 130 + }, + { + "word": "place", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "place;seat;square", + "example_sentence_native": "Il n'y a plus de place.", + "example_sentence_english": "There is no more room.", + "pos": "noun", + "word_frequency": 131 + }, + { + "word": "plusieurs", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "several", + "example_sentence_native": "J'ai plusieurs livres.", + "example_sentence_english": "I have several books.", + "pos": "adjective", + "word_frequency": 132 + }, + { + "word": "pourquoi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "why", + "example_sentence_native": "Pourquoi es-tu triste ?", + "example_sentence_english": "Why are you sad?", + "pos": "adverb", + "word_frequency": 133 + }, + { + "word": "ville", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "city;town", + "example_sentence_native": "J'habite dans une grande ville.", + "example_sentence_english": "I live in a big city.", + "pos": "noun", + "word_frequency": 134 + }, + { + "word": "mois", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "month", + "example_sentence_native": "Le mois prochain, je pars en vacances.", + "example_sentence_english": "Next month, I'm going on vacation.", + "pos": "noun", + "word_frequency": 135 + }, + { + "word": "histoire", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "story;history", + "example_sentence_native": "J'aime lire des histoires.", + "example_sentence_english": "I like reading stories.", + "pos": "noun", + "word_frequency": 137 + }, + { + "word": "mort", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death", + "example_sentence_native": "La mort est inévitable.", + "example_sentence_english": "Death is inevitable.", + "pos": "noun", + "word_frequency": 138 + }, + { + "word": "savoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know (facts;how to do something)", + "example_sentence_native": "Je sais parler français.", + "example_sentence_english": "I know how to speak French.", + "pos": "verb", + "word_frequency": 139 + }, + { + "word": "nouveau", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "new", + "example_sentence_native": "J'ai une nouvelle voiture.", + "example_sentence_english": "I have a new car.", + "pos": "adjective", + "word_frequency": 140 + }, + { + "word": "part", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "share;part", + "example_sentence_native": "Prends ta part du gâteau.", + "example_sentence_english": "Take your share of the cake.", + "pos": "noun", + "word_frequency": 141 + }, + { + "word": "travail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "work;job", + "example_sentence_native": "Mon travail est intéressant.", + "example_sentence_english": "My job is interesting.", + "pos": "noun", + "word_frequency": 142 + }, + { + "word": "aujourd'hui", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "today", + "example_sentence_native": "Aujourd'hui, il fait beau.", + "example_sentence_english": "Today, the weather is nice.", + "pos": "adverb", + "word_frequency": 143 + }, + { + "word": "compte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "account;count", + "example_sentence_native": "J'ai un compte bancaire.", + "example_sentence_english": "I have a bank account.", + "pos": "noun", + "word_frequency": 144 + }, + { + "word": "prendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to take", + "example_sentence_native": "Je vais prendre le bus.", + "example_sentence_english": "I'm going to take the bus.", + "pos": "verb", + "word_frequency": 146 + }, + { + "word": "vouloir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to want", + "example_sentence_native": "Je veux un café.", + "example_sentence_english": "I want a coffee.", + "pos": "verb", + "word_frequency": 147 + }, + { + "word": "état", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "state;condition", + "example_sentence_native": "L'état de la voiture est bon.", + "example_sentence_english": "The condition of the car is good.", + "pos": "noun", + "word_frequency": 148 + }, + { + "word": "cours", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "course;class", + "example_sentence_native": "J'ai un cours de français.", + "example_sentence_english": "I have a French class.", + "pos": "noun", + "word_frequency": 149 + }, + { + "word": "politique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "political", + "example_sentence_native": "C'est une question politique.", + "example_sentence_english": "It's a political question.", + "pos": "adjective", + "word_frequency": 150 + }, + { + "word": "reste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest;remainder", + "example_sentence_native": "Je prends le reste du gâteau.", + "example_sentence_english": "I'll take the rest of the cake.", + "pos": "noun", + "word_frequency": 151 + }, + { + "word": "chaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "each;every", + "example_sentence_native": "Chaque jour est une nouvelle opportunité.", + "example_sentence_english": "Every day is a new opportunity.", + "pos": "adjective", + "word_frequency": 152 + }, + { + "word": "femme", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "woman;wife", + "example_sentence_native": "C'est une femme très gentille.", + "example_sentence_english": "She is a very kind woman.", + "pos": "noun", + "word_frequency": 153 + }, + { + "word": "nom", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "name;noun", + "example_sentence_native": "Quel est votre nom ?", + "example_sentence_english": "What is your name?", + "pos": "noun", + "word_frequency": 154 + }, + { + "word": "prix", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "price;prize", + "example_sentence_native": "Le prix est trop élevé.", + "example_sentence_english": "The price is too high.", + "pos": "noun", + "word_frequency": 155 + }, + { + "word": "également", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "also;equally", + "example_sentence_native": "Il est également venu.", + "example_sentence_english": "He also came.", + "pos": "adverb", + "word_frequency": 156 + }, + { + "word": "point", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "point;dot", + "example_sentence_native": "C'est un point important.", + "example_sentence_english": "It's an important point.", + "pos": "noun", + "word_frequency": 157 + }, + { + "word": "seul", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alone;only", + "example_sentence_native": "Je suis seul à la maison.", + "example_sentence_english": "I am alone at home.", + "pos": "adjective", + "word_frequency": 158 + }, + { + "word": "lieu", + "article_with_word": "le lieu", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place", + "example_sentence_native": "C'est un bon lieu pour se reposer.", + "example_sentence_english": "It's a good place to rest.", + "pos": "noun", + "word_frequency": 160 + }, + { + "word": "lors", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at the time;during", + "example_sentence_native": "Lors de son discours, il a mentionné ce point.", + "example_sentence_english": "During his speech, he mentioned this point.", + "pos": "adverb", + "word_frequency": 161 + }, + { + "word": "vrai", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "true;real", + "example_sentence_native": "C'est une vraie histoire.", + "example_sentence_english": "It's a true story.", + "pos": "adjective", + "word_frequency": 162 + }, + { + "word": "droit", + "article_with_word": "le droit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "right;law", + "example_sentence_native": "Tout le monde a le droit de s'exprimer.", + "example_sentence_english": "Everyone has the right to express themselves.", + "pos": "noun", + "word_frequency": 163 + }, + { + "word": "coup", + "article_with_word": "le coup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blow;hit;shot", + "example_sentence_native": "J'ai entendu un coup à la porte.", + "example_sentence_english": "I heard a knock at the door.", + "pos": "noun", + "word_frequency": 165 + }, + { + "word": "mettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to put;to place", + "example_sentence_native": "Peux-tu mettre la table s'il te plaît ?", + "example_sentence_english": "Can you set the table please?", + "pos": "verb", + "word_frequency": 166 + }, + { + "word": "penser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to think", + "example_sentence_native": "Je pense que c'est une bonne idée.", + "example_sentence_english": "I think it's a good idea.", + "pos": "verb", + "word_frequency": 167 + }, + { + "word": "quelque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "some;a few", + "example_sentence_native": "J'ai quelques questions à poser.", + "example_sentence_english": "I have a few questions to ask.", + "pos": "adjective", + "word_frequency": 168 + }, + { + "word": "tant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "so much;so many", + "example_sentence_native": "Il y a tant de choses à faire.", + "example_sentence_english": "There are so many things to do.", + "pos": "adverb", + "word_frequency": 169 + }, + { + "word": "groupe", + "article_with_word": "le groupe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "group", + "example_sentence_native": "Nous travaillons en groupe sur ce projet.", + "example_sentence_english": "We are working in a group on this project.", + "pos": "noun", + "word_frequency": 170 + }, + { + "word": "maintenant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "now", + "example_sentence_native": "Je dois partir maintenant.", + "example_sentence_english": "I have to leave now.", + "pos": "adverb", + "word_frequency": 171 + }, + { + "word": "maison", + "article_with_word": "la maison", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "house;home", + "example_sentence_native": "Je rentre à la maison.", + "example_sentence_english": "I'm going home.", + "pos": "noun", + "word_frequency": 172 + }, + { + "word": "saint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holy;saintly", + "example_sentence_native": "C'est un jour saint pour beaucoup de gens.", + "example_sentence_english": "It's a holy day for many people.", + "pos": "adjective", + "word_frequency": 173 + }, + { + "word": "tête", + "article_with_word": "la tête", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "head", + "example_sentence_native": "J'ai mal à la tête.", + "example_sentence_english": "I have a headache.", + "pos": "noun", + "word_frequency": 174 + }, + { + "word": "aimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to like;to love", + "example_sentence_native": "J'aime lire des livres.", + "example_sentence_english": "I like to read books.", + "pos": "verb", + "word_frequency": 175 + }, + { + "word": "enfant", + "article_with_word": "l'enfant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "child", + "example_sentence_native": "L'enfant joue dans le jardin.", + "example_sentence_english": "The child is playing in the garden.", + "pos": "noun", + "word_frequency": 176 + }, + { + "word": "famille", + "article_with_word": "la famille", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "family", + "example_sentence_native": "Ma famille est très importante pour moi.", + "example_sentence_english": "My family is very important to me.", + "pos": "noun", + "word_frequency": 177 + }, + { + "word": "parler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to speak;to talk", + "example_sentence_native": "Je parle français.", + "example_sentence_english": "I speak French.", + "pos": "verb", + "word_frequency": 178 + }, + { + "word": "suite", + "article_with_word": "la suite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuation;next", + "example_sentence_native": "À la suite de l'accident, il a été hospitalisé.", + "example_sentence_english": "Following the accident, he was hospitalized.", + "pos": "noun", + "word_frequency": 179 + }, + { + "word": "assez", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "enough;quite", + "example_sentence_native": "J'ai assez de temps pour finir.", + "example_sentence_english": "I have enough time to finish.", + "pos": "adverb", + "word_frequency": 180 + }, + { + "word": "besoin", + "article_with_word": "le besoin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "need", + "example_sentence_native": "J'ai besoin d'aide.", + "example_sentence_english": "I need help.", + "pos": "noun", + "word_frequency": 181 + }, + { + "word": "demande", + "article_with_word": "la demande", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "request;demand", + "example_sentence_native": "J'ai fait une demande de visa.", + "example_sentence_english": "I made a visa request.", + "pos": "noun", + "word_frequency": 182 + }, + { + "word": "genre", + "article_with_word": "le genre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kind;type;gender", + "example_sentence_native": "Quel genre de musique aimes-tu ?", + "example_sentence_english": "What kind of music do you like?", + "pos": "noun", + "word_frequency": 183 + }, + { + "word": "société", + "article_with_word": "la société", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "society;company", + "example_sentence_native": "La société évolue rapidement.", + "example_sentence_english": "Society is evolving rapidly.", + "pos": "noun", + "word_frequency": 184 + }, + { + "word": "trouver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to find", + "example_sentence_native": "J'ai trouvé mes clés.", + "example_sentence_english": "I found my keys.", + "pos": "verb", + "word_frequency": 185 + }, + { + "word": "côté", + "article_with_word": "le côté", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "side", + "example_sentence_native": "De quel côté est la porte ?", + "example_sentence_english": "Which side is the door on?", + "pos": "noun", + "word_frequency": 186 + }, + { + "word": "passer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pass;to spend (time)", + "example_sentence_native": "Nous allons passer nos vacances en France.", + "example_sentence_english": "We are going to spend our holidays in France.", + "pos": "verb", + "word_frequency": 187 + }, + { + "word": "question", + "article_with_word": "la question", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "question", + "example_sentence_native": "J'ai une question pour vous.", + "example_sentence_english": "I have a question for you.", + "pos": "noun", + "word_frequency": 188 + }, + { + "word": "raison", + "article_with_word": "la raison", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reason", + "example_sentence_native": "Quelle est la raison de votre visite ?", + "example_sentence_english": "What is the reason for your visit?", + "pos": "noun", + "word_frequency": 189 + }, + { + "word": "sens", + "article_with_word": "le sens", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meaning;sense;direction", + "example_sentence_native": "Ce mot a plusieurs sens.", + "example_sentence_english": "This word has several meanings.", + "pos": "noun", + "word_frequency": 190 + }, + { + "word": "ailleurs", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elsewhere", + "example_sentence_native": "Il est parti vivre ailleurs.", + "example_sentence_english": "He went to live elsewhere.", + "pos": "adverb", + "word_frequency": 191 + }, + { + "word": "certain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "certain;sure", + "example_sentence_native": "Je suis certain de ma réponse.", + "example_sentence_english": "I am certain of my answer.", + "pos": "adjective", + "word_frequency": 192 + }, + { + "word": "jeu", + "article_with_word": "le jeu", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "game;play", + "example_sentence_native": "Les enfants aiment jouer à des jeux.", + "example_sentence_english": "Children like to play games.", + "pos": "noun", + "word_frequency": 195 + }, + { + "word": "soir", + "article_with_word": "le soir", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "evening", + "example_sentence_native": "Nous sortons ce soir.", + "example_sentence_english": "We are going out this evening.", + "pos": "noun", + "word_frequency": 196 + }, + { + "word": "souvent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "often", + "example_sentence_native": "Je vais souvent au cinéma.", + "example_sentence_english": "I often go to the cinema.", + "pos": "adverb", + "word_frequency": 197 + }, + { + "word": "effet", + "article_with_word": "l'effet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effect;impact", + "example_sentence_native": "Ce médicament a des effets secondaires.", + "example_sentence_english": "This medicine has side effects.", + "pos": "noun", + "word_frequency": 198 + }, + { + "word": "général", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "general", + "example_sentence_native": "C'est une règle générale.", + "example_sentence_english": "It's a general rule.", + "pos": "adjective", + "word_frequency": 199 + }, + { + "word": "jean", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jeans", + "example_sentence_native": "J'ai acheté un nouveau jean.", + "example_sentence_english": "I bought new jeans.", + "pos": "noun", + "word_frequency": 200 + }, + { + "word": "partir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to leave;to depart", + "example_sentence_native": "Je dois partir maintenant.", + "example_sentence_english": "I have to leave now.", + "pos": "verb", + "word_frequency": 203 + }, + { + "word": "surtout", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially;above all", + "example_sentence_native": "J'aime tous les fruits, surtout les pommes.", + "example_sentence_english": "I like all fruits, especially apples.", + "pos": "adverb", + "word_frequency": 204 + }, + { + "word": "équipe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "team", + "example_sentence_native": "Notre équipe a gagné le match.", + "example_sentence_english": "Our team won the match.", + "pos": "noun", + "word_frequency": 205 + }, + { + "word": "dernier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "last;latest", + "example_sentence_native": "C'est la dernière fois.", + "example_sentence_english": "This is the last time.", + "pos": "adjective", + "word_frequency": 206 + }, + { + "word": "enfin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finally;at last", + "example_sentence_native": "Enfin, nous sommes arrivés.", + "example_sentence_english": "Finally, we arrived.", + "pos": "adverb", + "word_frequency": 207 + }, + { + "word": "nombre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "number", + "example_sentence_native": "Le nombre de participants a augmenté.", + "example_sentence_english": "The number of participants has increased.", + "pos": "noun", + "word_frequency": 208 + }, + { + "word": "porte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "door", + "example_sentence_native": "La porte est ouverte.", + "example_sentence_english": "The door is open.", + "pos": "noun", + "word_frequency": 209 + }, + { + "word": "seulement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "only", + "example_sentence_native": "J'ai seulement deux euros.", + "example_sentence_english": "I only have two euros.", + "pos": "adverb", + "word_frequency": 210 + }, + { + "word": "site", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "site;website", + "example_sentence_native": "Visitez notre site web pour plus d'informations.", + "example_sentence_english": "Visit our website for more information.", + "pos": "noun", + "word_frequency": 211 + }, + { + "word": "eau", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "water", + "example_sentence_native": "Je voudrais un verre d'eau.", + "example_sentence_english": "I would like a glass of water.", + "pos": "noun", + "word_frequency": 212 + }, + { + "word": "ensemble", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "together", + "example_sentence_native": "Nous allons au cinéma ensemble.", + "example_sentence_english": "We are going to the cinema together.", + "pos": "adverb", + "word_frequency": 213 + }, + { + "word": "mère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother", + "example_sentence_native": "Ma mère est très gentille.", + "example_sentence_english": "My mother is very kind.", + "pos": "noun", + "word_frequency": 214 + }, + { + "word": "près", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "near;close", + "example_sentence_native": "La gare est tout près d'ici.", + "example_sentence_english": "The station is very close to here.", + "pos": "adverb", + "word_frequency": 215 + }, + { + "word": "quel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "what;which", + "example_sentence_native": "Quel est ton nom ?", + "example_sentence_english": "What is your name?", + "pos": "adjective", + "word_frequency": 216 + }, + { + "word": "aucun", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "no;not any", + "example_sentence_native": "Je n'ai aucune idée.", + "example_sentence_english": "I have no idea.", + "pos": "adjective", + "word_frequency": 218 + }, + { + "word": "loi", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "law", + "example_sentence_native": "C'est contre la loi.", + "example_sentence_english": "It's against the law.", + "pos": "noun", + "word_frequency": 219 + }, + { + "word": "parti", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party (political);side", + "example_sentence_native": "Il a rejoint un nouveau parti politique.", + "example_sentence_english": "He joined a new political party.", + "pos": "noun", + "word_frequency": 220 + }, + { + "word": "père", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father", + "example_sentence_native": "Mon père travaille beaucoup.", + "example_sentence_english": "My father works a lot.", + "pos": "noun", + "word_frequency": 221 + }, + { + "word": "rapport", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "report;relationship", + "example_sentence_native": "Le rapport annuel sera publié demain.", + "example_sentence_english": "The annual report will be published tomorrow.", + "pos": "noun", + "word_frequency": 222 + }, + { + "word": "autant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "as much;as many", + "example_sentence_native": "J'ai autant de livres que toi.", + "example_sentence_english": "I have as many books as you.", + "pos": "adverb", + "word_frequency": 224 + }, + { + "word": "face", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "face;side", + "example_sentence_native": "Il a regardé la face de la pièce.", + "example_sentence_english": "He looked at the face of the coin.", + "pos": "noun", + "word_frequency": 225 + }, + { + "word": "fille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girl;daughter", + "example_sentence_native": "C'est ma fille.", + "example_sentence_english": "This is my daughter.", + "pos": "noun", + "word_frequency": 226 + }, + { + "word": "gouvernement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "government", + "example_sentence_native": "Le gouvernement a annoncé de nouvelles mesures.", + "example_sentence_english": "The government announced new measures.", + "pos": "noun", + "word_frequency": 227 + }, + { + "word": "gros", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "big;fat", + "example_sentence_native": "Il a un gros chien.", + "example_sentence_english": "He has a big dog.", + "pos": "adjective", + "word_frequency": 228 + }, + { + "word": "guerre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "war", + "example_sentence_native": "La guerre est une tragédie.", + "example_sentence_english": "War is a tragedy.", + "pos": "noun", + "word_frequency": 229 + }, + { + "word": "niveau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "level", + "example_sentence_native": "Quel est votre niveau de français ?", + "example_sentence_english": "What is your French level?", + "pos": "noun", + "word_frequency": 230 + }, + { + "word": "passé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "past", + "example_sentence_native": "Il faut oublier le passé.", + "example_sentence_english": "We must forget the past.", + "pos": "noun", + "word_frequency": 231 + }, + { + "word": "semaine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "week", + "example_sentence_native": "Je pars en vacances la semaine prochaine.", + "example_sentence_english": "I'm going on vacation next week.", + "pos": "noun", + "word_frequency": 233 + }, + { + "word": "service", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "service", + "example_sentence_native": "Le service était excellent.", + "example_sentence_english": "The service was excellent.", + "pos": "noun", + "word_frequency": 234 + }, + { + "word": "accord", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agreement;accord", + "example_sentence_native": "Nous sommes arrivés à un accord.", + "example_sentence_english": "We reached an agreement.", + "pos": "noun", + "word_frequency": 235 + }, + { + "word": "article", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "article", + "example_sentence_native": "J'ai lu un article intéressant.", + "example_sentence_english": "I read an interesting article.", + "pos": "noun", + "word_frequency": 236 + }, + { + "word": "donner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to give", + "example_sentence_native": "Peux-tu me donner ton stylo ?", + "example_sentence_english": "Can you give me your pen?", + "pos": "verb", + "word_frequency": 237 + }, + { + "word": "ligne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "line", + "example_sentence_native": "Attendez sur la ligne.", + "example_sentence_english": "Wait on the line.", + "pos": "noun", + "word_frequency": 238 + }, + { + "word": "problème", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "problem", + "example_sentence_native": "Il n'y a pas de problème.", + "example_sentence_english": "There is no problem.", + "pos": "noun", + "word_frequency": 239 + }, + { + "word": "président", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "president", + "example_sentence_native": "Le président a annoncé de nouvelles mesures.", + "example_sentence_english": "The president announced new measures.", + "pos": "noun", + "word_frequency": 240 + }, + { + "word": "venir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to come", + "example_sentence_native": "Je viens de la maison.", + "example_sentence_english": "I come from home.", + "pos": "verb", + "word_frequency": 241 + }, + { + "word": "cause", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cause", + "example_sentence_native": "Quelle est la cause de ce problème?", + "example_sentence_english": "What is the cause of this problem?", + "pos": "noun", + "word_frequency": 242 + }, + { + "word": "croire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to believe", + "example_sentence_native": "Je crois en toi.", + "example_sentence_english": "I believe in you.", + "pos": "verb", + "word_frequency": 243 + }, + { + "word": "dieu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "God", + "example_sentence_native": "Il croit en Dieu.", + "example_sentence_english": "He believes in God.", + "pos": "noun", + "word_frequency": 244 + }, + { + "word": "début", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beginning", + "example_sentence_native": "Au début, c'était difficile.", + "example_sentence_english": "In the beginning, it was difficult.", + "pos": "noun", + "word_frequency": 245 + }, + { + "word": "exemple", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "example", + "example_sentence_native": "Peux-tu me donner un exemple?", + "example_sentence_english": "Can you give me an example?", + "pos": "noun", + "word_frequency": 246 + }, + { + "word": "fils", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "son", + "example_sentence_native": "Mon fils est étudiant.", + "example_sentence_english": "My son is a student.", + "pos": "noun", + "word_frequency": 247 + }, + { + "word": "jeune", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "young", + "example_sentence_native": "Elle est très jeune.", + "example_sentence_english": "She is very young.", + "pos": "adjective", + "word_frequency": 248 + }, + { + "word": "système", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "system", + "example_sentence_native": "Le système fonctionne bien.", + "example_sentence_english": "The system works well.", + "pos": "noun", + "word_frequency": 249 + }, + { + "word": "air", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "air", + "example_sentence_native": "L'air est frais ce matin.", + "example_sentence_english": "The air is fresh this morning.", + "pos": "noun", + "word_frequency": 250 + }, + { + "word": "bas", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "low", + "example_sentence_native": "Le prix est très bas.", + "example_sentence_english": "The price is very low.", + "pos": "adjective", + "word_frequency": 251 + }, + { + "word": "centre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "center", + "example_sentence_native": "Le centre-ville est animé.", + "example_sentence_english": "The city center is lively.", + "pos": "noun", + "word_frequency": 252 + }, + { + "word": "façon", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way;manner", + "example_sentence_native": "J'aime sa façon de parler.", + "example_sentence_english": "I like his way of speaking.", + "pos": "noun", + "word_frequency": 253 + }, + { + "word": "heure", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hour;time", + "example_sentence_native": "Quelle heure est-il?", + "example_sentence_english": "What time is it?", + "pos": "noun", + "word_frequency": 254 + }, + { + "word": "loin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "far", + "example_sentence_native": "La gare est loin d'ici.", + "example_sentence_english": "The station is far from here.", + "pos": "adverb", + "word_frequency": 255 + }, + { + "word": "possible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "possible", + "example_sentence_native": "C'est possible de le faire.", + "example_sentence_english": "It's possible to do it.", + "pos": "adjective", + "word_frequency": 256 + }, + { + "word": "projet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project", + "example_sentence_native": "Nous travaillons sur un nouveau projet.", + "example_sentence_english": "We are working on a new project.", + "pos": "noun", + "word_frequency": 257 + }, + { + "word": "conseil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advice;council", + "example_sentence_native": "J'ai besoin de tes conseils.", + "example_sentence_english": "I need your advice.", + "pos": "noun", + "word_frequency": 258 + }, + { + "word": "idée", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "idea", + "example_sentence_native": "J'ai une bonne idée.", + "example_sentence_english": "I have a good idea.", + "pos": "noun", + "word_frequency": 259 + }, + { + "word": "notamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notably;especially", + "example_sentence_native": "Il aime les fruits, notamment les pommes.", + "example_sentence_english": "He likes fruits, especially apples.", + "pos": "adverb", + "word_frequency": 260 + }, + { + "word": "nuit", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "night", + "example_sentence_native": "Bonne nuit!", + "example_sentence_english": "Good night!", + "pos": "noun", + "word_frequency": 261 + }, + { + "word": "argent", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "money;silver", + "example_sentence_native": "J'ai besoin d'argent.", + "example_sentence_english": "I need money.", + "pos": "noun", + "word_frequency": 262 + }, + { + "word": "tour", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turn;tour;tower", + "example_sentence_native": "Faisons un tour dans le parc.", + "example_sentence_english": "Let's take a walk in the park.", + "pos": "noun", + "word_frequency": 263 + }, + { + "word": "vue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "view;sight", + "example_sentence_native": "La vue depuis la montagne est magnifique.", + "example_sentence_english": "The view from the mountain is magnificent.", + "pos": "noun", + "word_frequency": 264 + }, + { + "word": "dessus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "above;on top", + "example_sentence_native": "Le livre est sur la table, juste au-dessus.", + "example_sentence_english": "The book is on the table, just above.", + "pos": "adverb", + "word_frequency": 265 + }, + { + "word": "film", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "film;movie", + "example_sentence_native": "J'ai vu un bon film hier soir.", + "example_sentence_english": "I saw a good movie last night.", + "pos": "noun", + "word_frequency": 266 + }, + { + "word": "corps", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "body", + "example_sentence_native": "Le corps humain est complexe.", + "example_sentence_english": "The human body is complex.", + "pos": "noun", + "word_frequency": 268 + }, + { + "word": "ensuite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "then;next", + "example_sentence_native": "D'abord, je mange, ensuite je travaille.", + "example_sentence_english": "First, I eat, then I work.", + "pos": "adverb", + "word_frequency": 269 + }, + { + "word": "forme", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shape;form", + "example_sentence_native": "Ce nuage a une forme étrange.", + "example_sentence_english": "This cloud has a strange shape.", + "pos": "noun", + "word_frequency": 270 + }, + { + "word": "haut", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "high;tall", + "example_sentence_native": "La montagne est très haute.", + "example_sentence_english": "The mountain is very high.", + "pos": "adjective", + "word_frequency": 271 + }, + { + "word": "plutôt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rather;instead", + "example_sentence_native": "Je préférerais plutôt rester à la maison.", + "example_sentence_english": "I would rather stay at home.", + "pos": "adverb", + "word_frequency": 273 + }, + { + "word": "arriver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to arrive;to happen", + "example_sentence_native": "Je suis arrivé en retard.", + "example_sentence_english": "I arrived late.", + "pos": "verb", + "word_frequency": 275 + }, + { + "word": "chef", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chief;boss;head", + "example_sentence_native": "Le chef de l'entreprise a démissionné.", + "example_sentence_english": "The head of the company resigned.", + "pos": "noun", + "word_frequency": 276 + }, + { + "word": "fort", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strong", + "example_sentence_native": "Il est très fort en mathématiques.", + "example_sentence_english": "He is very strong in mathematics.", + "pos": "adjective", + "word_frequency": 278 + }, + { + "word": "public", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "public", + "example_sentence_native": "C'est un lieu public.", + "example_sentence_english": "It's a public place.", + "pos": "adjective", + "word_frequency": 280 + }, + { + "word": "tard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "late", + "example_sentence_native": "Il est rentré tard hier soir.", + "example_sentence_english": "He came home late last night.", + "pos": "adverb", + "word_frequency": 281 + }, + { + "word": "main", + "article_with_word": "la main", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hand", + "example_sentence_native": "Elle a une fleur dans la main.", + "example_sentence_english": "She has a flower in her hand.", + "pos": "noun", + "word_frequency": 282 + }, + { + "word": "terre", + "article_with_word": "la terre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "earth", + "example_sentence_native": "La Terre tourne autour du soleil.", + "example_sentence_english": "The Earth revolves around the sun.", + "pos": "noun", + "word_frequency": 283 + }, + { + "word": "titre", + "article_with_word": "le titre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "title", + "example_sentence_native": "Quel est le titre de ce livre?", + "example_sentence_english": "What is the title of this book?", + "pos": "noun", + "word_frequency": 284 + }, + { + "word": "matin", + "article_with_word": "le matin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "morning", + "example_sentence_native": "Je me lève tôt le matin.", + "example_sentence_english": "I wake up early in the morning.", + "pos": "noun", + "word_frequency": 285 + }, + { + "word": "mise", + "article_with_word": "la mise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "putting;stake", + "example_sentence_native": "La mise à jour du logiciel est nécessaire.", + "example_sentence_english": "The software update is necessary.", + "pos": "noun", + "word_frequency": 286 + }, + { + "word": "plan", + "article_with_word": "le plan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plan;map", + "example_sentence_native": "Nous avons un nouveau plan pour le projet.", + "example_sentence_english": "We have a new plan for the project.", + "pos": "noun", + "word_frequency": 287 + }, + { + "word": "saison", + "article_with_word": "la saison", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "season", + "example_sentence_native": "Quelle est votre saison préférée?", + "example_sentence_english": "What is your favorite season?", + "pos": "noun", + "word_frequency": 288 + }, + { + "word": "type", + "article_with_word": "le type", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type;kind", + "example_sentence_native": "Quel type de musique aimez-vous?", + "example_sentence_english": "What type of music do you like?", + "pos": "noun", + "word_frequency": 289 + }, + { + "word": "aide", + "article_with_word": "l'aide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "help;aid", + "example_sentence_native": "J'ai besoin d'aide pour ce problème.", + "example_sentence_english": "I need help with this problem.", + "pos": "noun", + "word_frequency": 292 + }, + { + "word": "beau", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beautiful;handsome", + "example_sentence_native": "C'est un très beau paysage.", + "example_sentence_english": "It's a very beautiful landscape.", + "pos": "adjective", + "word_frequency": 293 + }, + { + "word": "choix", + "article_with_word": "le choix", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "choice", + "example_sentence_native": "C'est un choix difficile à faire.", + "example_sentence_english": "It's a difficult choice to make.", + "pos": "noun", + "word_frequency": 294 + }, + { + "word": "long", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "long", + "example_sentence_native": "Le voyage était très long.", + "example_sentence_english": "The journey was very long.", + "pos": "adjective", + "word_frequency": 295 + }, + { + "word": "minute", + "article_with_word": "la minute", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute", + "example_sentence_native": "Attendez une minute, s'il vous plaît.", + "example_sentence_english": "Wait a minute, please.", + "pos": "noun", + "word_frequency": 296 + }, + { + "word": "retour", + "article_with_word": "le retour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "return", + "example_sentence_native": "Son retour est prévu pour demain.", + "example_sentence_english": "His return is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 297 + }, + { + "word": "situation", + "article_with_word": "la situation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situation", + "example_sentence_native": "La situation est complexe.", + "example_sentence_english": "The situation is complex.", + "pos": "noun", + "word_frequency": 298 + }, + { + "word": "vite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fast;quickly", + "example_sentence_native": "Il court très vite.", + "example_sentence_english": "He runs very fast.", + "pos": "adverb", + "word_frequency": 299 + }, + { + "word": "oeil", + "article_with_word": "l'œil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eye", + "example_sentence_native": "Il a les yeux bleus.", + "example_sentence_english": "He has blue eyes.", + "pos": "noun", + "word_frequency": 300 + }, + { + "word": "amour", + "article_with_word": "l'amour", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "love", + "example_sentence_native": "L'amour est un sentiment puissant.", + "example_sentence_english": "Love is a powerful feeling.", + "pos": "noun", + "word_frequency": 301 + }, + { + "word": "base", + "article_with_word": "la base", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "base", + "example_sentence_native": "C'est la base de notre argument.", + "example_sentence_english": "This is the base of our argument.", + "pos": "noun", + "word_frequency": 302 + }, + { + "word": "journée", + "article_with_word": "la journée", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day (duration)", + "example_sentence_native": "J'ai passé une bonne journée.", + "example_sentence_english": "I had a good day.", + "pos": "noun", + "word_frequency": 304 + }, + { + "word": "nord", + "article_with_word": "le nord", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "north", + "example_sentence_native": "Le vent vient du nord.", + "example_sentence_english": "The wind comes from the north.", + "pos": "noun", + "word_frequency": 305 + }, + { + "word": "grâce", + "article_with_word": "la grâce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grace;thanks", + "example_sentence_native": "Il a réussi grâce à son travail acharné.", + "example_sentence_english": "He succeeded thanks to his hard work.", + "pos": "noun", + "word_frequency": 308 + }, + { + "word": "moyen", + "article_with_word": "le moyen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "means;way", + "example_sentence_native": "Quel est le meilleur moyen de transport?", + "example_sentence_english": "What is the best means of transport?", + "pos": "noun", + "word_frequency": 309 + }, + { + "word": "ordre", + "article_with_word": "l'ordre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "order", + "example_sentence_native": "Mettez les livres dans l'ordre alphabétique.", + "example_sentence_english": "Put the books in alphabetical order.", + "pos": "noun", + "word_frequency": 310 + }, + { + "word": "école", + "article_with_word": "l'école", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "school", + "example_sentence_native": "Les enfants vont à l'école.", + "example_sentence_english": "Children go to school.", + "pos": "noun", + "word_frequency": 311 + }, + { + "word": "but", + "article_with_word": "le but", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goal;aim", + "example_sentence_native": "Son but est de devenir médecin.", + "example_sentence_english": "His goal is to become a doctor.", + "pos": "noun", + "word_frequency": 312 + }, + { + "word": "manière", + "article_with_word": "la manière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manner;way", + "example_sentence_native": "Il parle d'une manière très polie.", + "example_sentence_english": "He speaks in a very polite manner.", + "pos": "noun", + "word_frequency": 314 + }, + { + "word": "pierre", + "article_with_word": "la pierre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stone;rock", + "example_sentence_native": "Cette maison est construite en pierre.", + "example_sentence_english": "This house is built of stone.", + "pos": "noun", + "word_frequency": 316 + }, + { + "word": "sembler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to seem;appear", + "example_sentence_native": "Il semble fatigué aujourd'hui.", + "example_sentence_english": "He seems tired today.", + "pos": "verb", + "word_frequency": 318 + }, + { + "word": "sujet", + "article_with_word": "le sujet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subject;topic", + "example_sentence_native": "Quel est le sujet de votre discussion?", + "example_sentence_english": "What is the subject of your discussion?", + "pos": "noun", + "word_frequency": 319 + }, + { + "word": "truc", + "article_with_word": "le truc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thing;trick", + "example_sentence_native": "J'ai un truc à te dire.", + "example_sentence_english": "I have something to tell you.", + "pos": "noun", + "word_frequency": 320 + }, + { + "word": "agir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act;to behave", + "example_sentence_native": "Il faut agir vite.", + "example_sentence_english": "We must act quickly.", + "pos": "verb", + "word_frequency": 321 + }, + { + "word": "ministre", + "article_with_word": "le ministre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minister", + "example_sentence_native": "Le ministre a annoncé de nouvelles mesures.", + "example_sentence_english": "The minister announced new measures.", + "pos": "noun", + "word_frequency": 322 + }, + { + "word": "nouvelle", + "article_with_word": "la nouvelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "news;short story", + "example_sentence_native": "J'ai une bonne nouvelle pour toi.", + "example_sentence_english": "I have good news for you.", + "pos": "noun", + "word_frequency": 323 + }, + { + "word": "parfois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sometimes", + "example_sentence_native": "Il pleut parfois en été.", + "example_sentence_english": "It sometimes rains in summer.", + "pos": "adverb", + "word_frequency": 324 + }, + { + "word": "rue", + "article_with_word": "la rue", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "street", + "example_sentence_native": "La boulangerie est au bout de la rue.", + "example_sentence_english": "The bakery is at the end of the street.", + "pos": "noun", + "word_frequency": 325 + }, + { + "word": "sud", + "article_with_word": "le sud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "south", + "example_sentence_native": "Nous allons passer nos vacances dans le sud de la France.", + "example_sentence_english": "We are going to spend our holidays in the south of France.", + "pos": "noun", + "word_frequency": 326 + }, + { + "word": "super", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great;super", + "example_sentence_native": "C'est une idée super!", + "example_sentence_english": "That's a great idea!", + "pos": "adjective", + "word_frequency": 327 + }, + { + "word": "sûr", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sure;safe", + "example_sentence_native": "Es-tu sûr de ta réponse?", + "example_sentence_english": "Are you sure of your answer?", + "pos": "adjective", + "word_frequency": 328 + }, + { + "word": "uni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "united;plain", + "example_sentence_native": "Ils sont restés unis face à l'adversité.", + "example_sentence_english": "They remained united in the face of adversity.", + "pos": "adjective", + "word_frequency": 329 + }, + { + "word": "vidéo", + "article_with_word": "la vidéo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video", + "example_sentence_native": "J'ai regardé une vidéo intéressante.", + "example_sentence_english": "I watched an interesting video.", + "pos": "noun", + "word_frequency": 330 + }, + { + "word": "ami", + "article_with_word": "un ami", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "friend", + "example_sentence_native": "J'ai rencontré un vieil ami.", + "example_sentence_english": "I met an old friend.", + "pos": "noun", + "word_frequency": 331 + }, + { + "word": "art", + "article_with_word": "l'art", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "art", + "example_sentence_native": "J'aime l'art moderne.", + "example_sentence_english": "I like modern art.", + "pos": "noun", + "word_frequency": 332 + }, + { + "word": "comprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to understand", + "example_sentence_native": "Je ne comprends pas cette phrase.", + "example_sentence_english": "I don't understand this sentence.", + "pos": "verb", + "word_frequency": 333 + }, + { + "word": "gauche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "left", + "example_sentence_native": "Tournez à gauche après le feu.", + "example_sentence_english": "Turn left after the traffic light.", + "pos": "adjective", + "word_frequency": 334 + }, + { + "word": "livre", + "article_with_word": "le livre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "book", + "example_sentence_native": "J'ai lu un bon livre.", + "example_sentence_english": "I read a good book.", + "pos": "noun", + "word_frequency": 335 + }, + { + "word": "musique", + "article_with_word": "la musique", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "music", + "example_sentence_native": "J'écoute de la musique classique.", + "example_sentence_english": "I listen to classical music.", + "pos": "noun", + "word_frequency": 336 + }, + { + "word": "région", + "article_with_word": "la région", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "region", + "example_sentence_native": "Cette région est connue pour ses vins.", + "example_sentence_english": "This region is known for its wines.", + "pos": "noun", + "word_frequency": 337 + }, + { + "word": "entreprise", + "article_with_word": "l'entreprise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company;business", + "example_sentence_native": "Il travaille dans une grande entreprise.", + "example_sentence_english": "He works in a large company.", + "pos": "noun", + "word_frequency": 338 + }, + { + "word": "longtemps", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "for a long time", + "example_sentence_native": "Je ne l'ai pas vu depuis longtemps.", + "example_sentence_english": "I haven't seen him for a long time.", + "pos": "adverb", + "word_frequency": 339 + }, + { + "word": "match", + "article_with_word": "le match", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "match (sports)", + "example_sentence_native": "Nous avons regardé le match de football.", + "example_sentence_english": "We watched the football match.", + "pos": "noun", + "word_frequency": 340 + }, + { + "word": "permettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to allow;to permit", + "example_sentence_native": "Cela nous permet de mieux comprendre.", + "example_sentence_english": "That allows us to understand better.", + "pos": "verb", + "word_frequency": 341 + }, + { + "word": "simple", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "simple;easy", + "example_sentence_native": "C'est une question très simple.", + "example_sentence_english": "It's a very simple question.", + "pos": "adjective", + "word_frequency": 342 + }, + { + "word": "chambre", + "article_with_word": "la chambre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room;bedroom", + "example_sentence_native": "Ma chambre est au premier étage.", + "example_sentence_english": "My room is on the first floor.", + "pos": "noun", + "word_frequency": 344 + }, + { + "word": "deuxième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "second", + "example_sentence_native": "C'est la deuxième fois que je viens ici.", + "example_sentence_english": "This is the second time I've come here.", + "pos": "adjective", + "word_frequency": 345 + }, + { + "word": "importer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to import;to matter", + "example_sentence_native": "Qu'est-ce qui importe le plus?", + "example_sentence_english": "What matters most?", + "pos": "verb", + "word_frequency": 346 + }, + { + "word": "juin", + "article_with_word": "le juin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "June", + "example_sentence_native": "Mon anniversaire est en juin.", + "example_sentence_english": "My birthday is in June.", + "pos": "noun", + "word_frequency": 348 + }, + { + "word": "mai", + "article_with_word": "le mai", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "May", + "example_sentence_native": "Le muguet fleurit en mai.", + "example_sentence_english": "Lily of the valley blooms in May.", + "pos": "noun", + "word_frequency": 350 + }, + { + "word": "peur", + "article_with_word": "la peur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fear", + "example_sentence_native": "J'ai peur du noir.", + "example_sentence_english": "I am afraid of the dark.", + "pos": "noun", + "word_frequency": 351 + }, + { + "word": "plein", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "full", + "example_sentence_native": "Le verre est plein.", + "example_sentence_english": "The glass is full.", + "pos": "adjective", + "word_frequency": 352 + }, + { + "word": "police", + "article_with_word": "la police", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police;font", + "example_sentence_native": "La police enquête sur l'affaire.", + "example_sentence_english": "The police are investigating the case.", + "pos": "noun", + "word_frequency": 353 + }, + { + "word": "septembre", + "article_with_word": "le septembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "September", + "example_sentence_native": "La rentrée scolaire est en septembre.", + "example_sentence_english": "The school year starts in September.", + "pos": "noun", + "word_frequency": 354 + }, + { + "word": "sécurité", + "article_with_word": "la sécurité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "security;safety", + "example_sentence_native": "La sécurité est une priorité.", + "example_sentence_english": "Safety is a priority.", + "pos": "noun", + "word_frequency": 355 + }, + { + "word": "série", + "article_with_word": "la série", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "series", + "example_sentence_native": "J'ai regardé toute la série.", + "example_sentence_english": "I watched the whole series.", + "pos": "noun", + "word_frequency": 356 + }, + { + "word": "ancien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "old;former;ancient", + "example_sentence_native": "C'est une ancienne maison.", + "example_sentence_english": "It's an old house.", + "pos": "adjective", + "word_frequency": 357 + }, + { + "word": "anglais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "English", + "example_sentence_native": "Je parle un peu anglais.", + "example_sentence_english": "I speak a little English.", + "pos": "adjective", + "word_frequency": 358 + }, + { + "word": "important", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "important", + "example_sentence_native": "C'est une décision importante.", + "example_sentence_english": "It's an important decision.", + "pos": "adjective", + "word_frequency": 359 + }, + { + "word": "jouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to play", + "example_sentence_native": "Il aime jouer au football.", + "example_sentence_english": "He likes to play football.", + "pos": "verb", + "word_frequency": 360 + }, + { + "word": "membre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "member", + "example_sentence_native": "Chaque membre de l'équipe a contribué.", + "example_sentence_english": "Each member of the team contributed.", + "pos": "noun", + "word_frequency": 361 + }, + { + "word": "peine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pain;trouble;effort", + "example_sentence_native": "Ça ne vaut pas la peine.", + "example_sentence_english": "It's not worth the trouble.", + "pos": "noun", + "word_frequency": 364 + }, + { + "word": "presque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "almost;nearly", + "example_sentence_native": "J'ai presque fini mon travail.", + "example_sentence_english": "I have almost finished my work.", + "pos": "adverb", + "word_frequency": 365 + }, + { + "word": "tellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "so much;so many;so", + "example_sentence_native": "Il y a tellement de choses à faire.", + "example_sentence_english": "There are so many things to do.", + "pos": "adverb", + "word_frequency": 366 + }, + { + "word": "époque", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "era;period;time", + "example_sentence_native": "À cette époque, la vie était différente.", + "example_sentence_english": "At that time, life was different.", + "pos": "noun", + "word_frequency": 367 + }, + { + "word": "doute", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doubt", + "example_sentence_native": "Il n'y a aucun doute à ce sujet.", + "example_sentence_english": "There is no doubt about it.", + "pos": "noun", + "word_frequency": 368 + }, + { + "word": "force", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strength;force", + "example_sentence_native": "Il a beaucoup de force physique.", + "example_sentence_english": "He has a lot of physical strength.", + "pos": "noun", + "word_frequency": 369 + }, + { + "word": "lire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to read", + "example_sentence_native": "J'aime lire des livres.", + "example_sentence_english": "I like to read books.", + "pos": "verb", + "word_frequency": 370 + }, + { + "word": "marché", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "market", + "example_sentence_native": "Nous allons au marché tous les samedis.", + "example_sentence_english": "We go to the market every Saturday.", + "pos": "noun", + "word_frequency": 371 + }, + { + "word": "mot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "word", + "example_sentence_native": "Peux-tu répéter ce mot?", + "example_sentence_english": "Can you repeat that word?", + "pos": "noun", + "word_frequency": 372 + }, + { + "word": "recherche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "research;search", + "example_sentence_native": "Elle fait de la recherche en biologie.", + "example_sentence_english": "She does research in biology.", + "pos": "noun", + "word_frequency": 373 + }, + { + "word": "santé", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "health", + "example_sentence_native": "Sa santé s'est améliorée.", + "example_sentence_english": "His health has improved.", + "pos": "noun", + "word_frequency": 374 + }, + { + "word": "train", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "train", + "example_sentence_native": "Le train arrive à l'heure.", + "example_sentence_english": "The train arrives on time.", + "pos": "noun", + "word_frequency": 375 + }, + { + "word": "voix", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "voice", + "example_sentence_native": "Elle a une belle voix.", + "example_sentence_english": "She has a beautiful voice.", + "pos": "noun", + "word_frequency": 376 + }, + { + "word": "écrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to write", + "example_sentence_native": "J'aime écrire des histoires.", + "example_sentence_english": "I like to write stories.", + "pos": "verb", + "word_frequency": 377 + }, + { + "word": "affaire", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business;matter;deal", + "example_sentence_native": "C'est une bonne affaire.", + "example_sentence_english": "It's a good deal.", + "pos": "noun", + "word_frequency": 378 + }, + { + "word": "avis", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opinion;advice", + "example_sentence_native": "Quel est votre avis sur cette question?", + "example_sentence_english": "What is your opinion on this matter?", + "pos": "noun", + "word_frequency": 380 + }, + { + "word": "développement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development", + "example_sentence_native": "Le développement durable est important.", + "example_sentence_english": "Sustainable development is important.", + "pos": "noun", + "word_frequency": 382 + }, + { + "word": "hier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yesterday", + "example_sentence_native": "Je l'ai vu hier.", + "example_sentence_english": "I saw him yesterday.", + "pos": "adverb", + "word_frequency": 383 + }, + { + "word": "juillet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "July", + "example_sentence_native": "Mon anniversaire est en juillet.", + "example_sentence_english": "My birthday is in July.", + "pos": "noun", + "word_frequency": 384 + }, + { + "word": "million", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "million", + "example_sentence_native": "Il a gagné un million d'euros.", + "example_sentence_english": "He won a million euros.", + "pos": "noun", + "word_frequency": 385 + }, + { + "word": "national", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national", + "example_sentence_native": "C'est un jour férié national.", + "example_sentence_english": "It's a national holiday.", + "pos": "adjective", + "word_frequency": 386 + }, + { + "word": "nombreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numerous;many", + "example_sentence_native": "De nombreux étudiants étaient présents.", + "example_sentence_english": "Many students were present.", + "pos": "adjective", + "word_frequency": 387 + }, + { + "word": "parent", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "parent", + "example_sentence_native": "Ses parents sont très fiers de lui.", + "example_sentence_english": "His parents are very proud of him.", + "pos": "noun", + "word_frequency": 388 + }, + { + "word": "propre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "own;clean", + "example_sentence_native": "Il a sa propre voiture.", + "example_sentence_english": "He has his own car.", + "pos": "adjective", + "word_frequency": 389 + }, + { + "word": "rendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to give back;to make;to render", + "example_sentence_native": "Il doit rendre les livres à la bibliothèque.", + "example_sentence_english": "He must return the books to the library.", + "pos": "verb", + "word_frequency": 390 + }, + { + "word": "vivre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to live", + "example_sentence_native": "Nous vivons à Paris.", + "example_sentence_english": "We live in Paris.", + "pos": "verb", + "word_frequency": 391 + }, + { + "word": "environ", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "about;approximately", + "example_sentence_native": "Il y a environ vingt personnes.", + "example_sentence_english": "There are about twenty people.", + "pos": "adverb", + "word_frequency": 392 + }, + { + "word": "fond", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottom;back;background", + "example_sentence_native": "Le verre est vide jusqu'au fond.", + "example_sentence_english": "The glass is empty to the bottom.", + "pos": "noun", + "word_frequency": 393 + }, + { + "word": "mec", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guy;dude", + "example_sentence_native": "Ce mec est sympa.", + "example_sentence_english": "This guy is nice.", + "pos": "noun", + "word_frequency": 394 + }, + { + "word": "mesure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measure;extent", + "example_sentence_native": "Nous devons prendre des mesures.", + "example_sentence_english": "We must take measures.", + "pos": "noun", + "word_frequency": 395 + }, + { + "word": "abord", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approach;access (often in phrases like 'd'abord')", + "example_sentence_native": "D'abord, je voudrais vous remercier.", + "example_sentence_english": "First, I would like to thank you.", + "pos": "noun", + "word_frequency": 398 + }, + { + "word": "envie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "desire;urge;envy", + "example_sentence_native": "J'ai envie de manger une pizza.", + "example_sentence_english": "I feel like eating a pizza.", + "pos": "noun", + "word_frequency": 399 + }, + { + "word": "gars", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guy;fellow", + "example_sentence_native": "C'est un bon gars.", + "example_sentence_english": "He's a good guy.", + "pos": "noun", + "word_frequency": 400 + }, + { + "word": "octobre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "October", + "example_sentence_native": "Mon anniversaire est en octobre.", + "example_sentence_english": "My birthday is in October.", + "pos": "noun", + "word_frequency": 402 + }, + { + "word": "siècle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "century", + "example_sentence_native": "Nous vivons au 21e siècle.", + "example_sentence_english": "We live in the 21st century.", + "pos": "noun", + "word_frequency": 403 + }, + { + "word": "sortir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go out;to exit", + "example_sentence_native": "Je dois sortir ce soir.", + "example_sentence_english": "I have to go out tonight.", + "pos": "verb", + "word_frequency": 404 + }, + { + "word": "terme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "term;end", + "example_sentence_native": "C'est un terme technique.", + "example_sentence_english": "It's a technical term.", + "pos": "noun", + "word_frequency": 405 + }, + { + "word": "voiture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car", + "example_sentence_native": "J'ai acheté une nouvelle voiture.", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 406 + }, + { + "word": "avril", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "April", + "example_sentence_native": "Le poisson d'avril est une tradition.", + "example_sentence_english": "April Fool's Day is a tradition.", + "pos": "noun", + "word_frequency": 407 + }, + { + "word": "frère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brother", + "example_sentence_native": "Mon frère est plus âgé que moi.", + "example_sentence_english": "My brother is older than me.", + "pos": "noun", + "word_frequency": 409 + }, + { + "word": "janvier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "January", + "example_sentence_native": "Le nouvel an est en janvier.", + "example_sentence_english": "New Year's Day is in January.", + "pos": "noun", + "word_frequency": 410 + }, + { + "word": "population", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "population", + "example_sentence_native": "La population mondiale augmente.", + "example_sentence_english": "The world population is increasing.", + "pos": "noun", + "word_frequency": 411 + }, + { + "word": "roi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "king", + "example_sentence_native": "Le roi a visité la ville.", + "example_sentence_english": "The king visited the city.", + "pos": "noun", + "word_frequency": 412 + }, + { + "word": "action", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "action;share", + "example_sentence_native": "Il faut passer à l'action.", + "example_sentence_english": "We need to take action.", + "pos": "noun", + "word_frequency": 413 + }, + { + "word": "club", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "club", + "example_sentence_native": "Je suis membre d'un club de lecture.", + "example_sentence_english": "I am a member of a book club.", + "pos": "noun", + "word_frequency": 414 + }, + { + "word": "culture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culture", + "example_sentence_native": "La culture française est riche.", + "example_sentence_english": "French culture is rich.", + "pos": "noun", + "word_frequency": 415 + }, + { + "word": "cœur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heart", + "example_sentence_native": "Il a un grand cœur.", + "example_sentence_english": "He has a big heart.", + "pos": "noun", + "word_frequency": 416 + }, + { + "word": "difficile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "difficult", + "example_sentence_native": "C'est une question difficile.", + "example_sentence_english": "It's a difficult question.", + "pos": "adjective", + "word_frequency": 417 + }, + { + "word": "exister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exist", + "example_sentence_native": "Je pense, donc j'existe.", + "example_sentence_english": "I think, therefore I exist.", + "pos": "verb", + "word_frequency": 418 + }, + { + "word": "laisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to leave;to let", + "example_sentence_native": "Laisse-moi t'aider.", + "example_sentence_english": "Let me help you.", + "pos": "verb", + "word_frequency": 419 + }, + { + "word": "milieu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle;environment", + "example_sentence_native": "Il est au milieu de la pièce.", + "example_sentence_english": "He is in the middle of the room.", + "pos": "noun", + "word_frequency": 421 + }, + { + "word": "produit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "product", + "example_sentence_native": "Ce produit est de bonne qualité.", + "example_sentence_english": "This product is of good quality.", + "pos": "noun", + "word_frequency": 423 + }, + { + "word": "programme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "program", + "example_sentence_native": "Quel est le programme de ce soir ?", + "example_sentence_english": "What's the program for tonight?", + "pos": "noun", + "word_frequency": 424 + }, + { + "word": "propos", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remark;subject", + "example_sentence_native": "Il a tenu des propos choquants.", + "example_sentence_english": "He made shocking remarks.", + "pos": "noun", + "word_frequency": 425 + }, + { + "word": "route", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "road;route", + "example_sentence_native": "La route est longue.", + "example_sentence_english": "The road is long.", + "pos": "noun", + "word_frequency": 426 + }, + { + "word": "direction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "direction;management", + "example_sentence_native": "Dans quelle direction allons-nous ?", + "example_sentence_english": "In which direction are we going?", + "pos": "noun", + "word_frequency": 428 + }, + { + "word": "emploi", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job;employment;use", + "example_sentence_native": "Il cherche un nouvel emploi.", + "example_sentence_english": "He is looking for a new job.", + "pos": "noun", + "word_frequency": 429 + }, + { + "word": "feu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fire;light", + "example_sentence_native": "Le feu est rouge.", + "example_sentence_english": "The light is red.", + "pos": "noun", + "word_frequency": 430 + }, + { + "word": "marche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walk;step;market", + "example_sentence_native": "La marche est bonne pour la santé.", + "example_sentence_english": "Walking is good for health.", + "pos": "noun", + "word_frequency": 431 + }, + { + "word": "période", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period", + "example_sentence_native": "C'est une période difficile.", + "example_sentence_english": "It's a difficult period.", + "pos": "noun", + "word_frequency": 432 + }, + { + "word": "tel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "such;like", + "example_sentence_native": "Je n'ai jamais vu un tel désordre.", + "example_sentence_english": "I have never seen such a mess.", + "pos": "adjective", + "word_frequency": 433 + }, + { + "word": "âge", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "age", + "example_sentence_native": "Quel âge as-tu ?", + "example_sentence_english": "How old are you?", + "pos": "noun", + "word_frequency": 434 + }, + { + "word": "armée", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "army", + "example_sentence_native": "L'armée est intervenue.", + "example_sentence_english": "The army intervened.", + "pos": "noun", + "word_frequency": 435 + }, + { + "word": "bois", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wood;forest", + "example_sentence_native": "Cette table est en bois.", + "example_sentence_english": "This table is made of wood.", + "pos": "noun", + "word_frequency": 436 + }, + { + "word": "chance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luck;chance", + "example_sentence_native": "Bonne chance pour ton examen !", + "example_sentence_english": "Good luck with your exam!", + "pos": "noun", + "word_frequency": 437 + }, + { + "word": "confiance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trust;confidence", + "example_sentence_native": "J'ai confiance en toi.", + "example_sentence_english": "I trust you.", + "pos": "noun", + "word_frequency": 438 + }, + { + "word": "date", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "date", + "example_sentence_native": "Quelle est la date aujourd'hui ?", + "example_sentence_english": "What is the date today?", + "pos": "noun", + "word_frequency": 439 + }, + { + "word": "dix", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ten", + "example_sentence_native": "J'ai dix ans.", + "example_sentence_english": "I am ten years old.", + "pos": "numeral", + "word_frequency": 440 + }, + { + "word": "décembre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "December", + "example_sentence_native": "Mon anniversaire est en décembre.", + "example_sentence_english": "My birthday is in December.", + "pos": "noun", + "word_frequency": 441 + }, + { + "word": "manque", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lack;shortage", + "example_sentence_native": "Il y a un manque d'eau dans la région.", + "example_sentence_english": "There is a lack of water in the region.", + "pos": "noun", + "word_frequency": 442 + }, + { + "word": "mode", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fashion;mode", + "example_sentence_native": "Elle suit toujours la dernière mode.", + "example_sentence_english": "She always follows the latest fashion.", + "pos": "noun", + "word_frequency": 443 + }, + { + "word": "novembre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "November", + "example_sentence_native": "Nous partons en vacances en novembre.", + "example_sentence_english": "We are going on vacation in November.", + "pos": "noun", + "word_frequency": 444 + }, + { + "word": "plaisir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pleasure", + "example_sentence_native": "C'est un plaisir de vous rencontrer.", + "example_sentence_english": "It's a pleasure to meet you.", + "pos": "noun", + "word_frequency": 445 + }, + { + "word": "rencontre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meeting;encounter", + "example_sentence_native": "J'ai eu une rencontre intéressante hier.", + "example_sentence_english": "I had an interesting encounter yesterday.", + "pos": "noun", + "word_frequency": 446 + }, + { + "word": "résultat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "result", + "example_sentence_native": "Les résultats de l'examen seront affichés demain.", + "example_sentence_english": "The exam results will be posted tomorrow.", + "pos": "noun", + "word_frequency": 447 + }, + { + "word": "six", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "six", + "example_sentence_native": "Il a six pommes.", + "example_sentence_english": "He has six apples.", + "pos": "numeral", + "word_frequency": 448 + }, + { + "word": "août", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "August", + "example_sentence_native": "Nous allons à la plage en août.", + "example_sentence_english": "We are going to the beach in August.", + "pos": "noun", + "word_frequency": 449 + }, + { + "word": "blanc", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "white", + "example_sentence_native": "La neige est blanche.", + "example_sentence_english": "The snow is white.", + "pos": "adjective", + "word_frequency": 450 + }, + { + "word": "classe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "class;classroom", + "example_sentence_native": "La classe commence à neuf heures.", + "example_sentence_english": "The class starts at nine o'clock.", + "pos": "noun", + "word_frequency": 452 + }, + { + "word": "commencer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to begin;to start", + "example_sentence_native": "Nous allons commencer le travail.", + "example_sentence_english": "We are going to start the work.", + "pos": "verb", + "word_frequency": 453 + }, + { + "word": "demain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tomorrow", + "example_sentence_native": "Je te verrai demain.", + "example_sentence_english": "I will see you tomorrow.", + "pos": "adverb", + "word_frequency": 454 + }, + { + "word": "demander", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to ask", + "example_sentence_native": "Il a demandé de l'aide.", + "example_sentence_english": "He asked for help.", + "pos": "verb", + "word_frequency": 455 + }, + { + "word": "formation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;formation", + "example_sentence_native": "Elle suit une formation en informatique.", + "example_sentence_english": "She is undergoing computer training.", + "pos": "noun", + "word_frequency": 456 + }, + { + "word": "liste", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "list", + "example_sentence_native": "Fais une liste de courses.", + "example_sentence_english": "Make a shopping list.", + "pos": "noun", + "word_frequency": 457 + }, + { + "word": "photo", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "photo", + "example_sentence_native": "J'ai pris une belle photo.", + "example_sentence_english": "I took a beautiful photo.", + "pos": "noun", + "word_frequency": 458 + }, + { + "word": "rôle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "role", + "example_sentence_native": "Il a joué un rôle important dans le film.", + "example_sentence_english": "He played an important role in the movie.", + "pos": "noun", + "word_frequency": 459 + }, + { + "word": "attention", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "attention", + "example_sentence_native": "Faites attention à la route.", + "example_sentence_english": "Pay attention to the road.", + "pos": "noun", + "word_frequency": 461 + }, + { + "word": "bout", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "end;tip;piece", + "example_sentence_native": "Il y a un bout de ficelle sur la table.", + "example_sentence_english": "There is a piece of string on the table.", + "pos": "noun", + "word_frequency": 462 + }, + { + "word": "condition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condition", + "example_sentence_native": "Les conditions météorologiques sont bonnes.", + "example_sentence_english": "The weather conditions are good.", + "pos": "noun", + "word_frequency": 463 + }, + { + "word": "esprit", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mind;spirit;wit", + "example_sentence_native": "Il a un esprit très vif.", + "example_sentence_english": "He has a very sharp mind.", + "pos": "noun", + "word_frequency": 464 + }, + { + "word": "espérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hope", + "example_sentence_native": "J'espère que tu vas bien.", + "example_sentence_english": "I hope you are well.", + "pos": "verb", + "word_frequency": 465 + }, + { + "word": "garde", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guard;custody", + "example_sentence_native": "Le chien de garde protège la maison.", + "example_sentence_english": "The guard dog protects the house.", + "pos": "noun", + "word_frequency": 466 + }, + { + "word": "internet", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "internet", + "example_sentence_native": "J'utilise internet tous les jours.", + "example_sentence_english": "I use the internet every day.", + "pos": "noun", + "word_frequency": 467 + }, + { + "word": "intérieur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interior;inside", + "example_sentence_native": "L'intérieur de la maison est très lumineux.", + "example_sentence_english": "The interior of the house is very bright.", + "pos": "noun", + "word_frequency": 468 + }, + { + "word": "intérêt", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interest", + "example_sentence_native": "J'ai beaucoup d'intérêt pour l'histoire.", + "example_sentence_english": "I have a lot of interest in history.", + "pos": "noun", + "word_frequency": 469 + }, + { + "word": "mouvement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "movement", + "example_sentence_native": "Le mouvement des feuilles est beau.", + "example_sentence_english": "The movement of the leaves is beautiful.", + "pos": "noun", + "word_frequency": 470 + }, + { + "word": "noir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "black", + "example_sentence_native": "Le chat est noir.", + "example_sentence_english": "The cat is black.", + "pos": "adjective", + "word_frequency": 471 + }, + { + "word": "origine", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "origin", + "example_sentence_native": "Quelle est l'origine de ce mot ?", + "example_sentence_english": "What is the origin of this word?", + "pos": "noun", + "word_frequency": 472 + }, + { + "word": "présenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to present;to introduce", + "example_sentence_native": "Je voudrais vous présenter mon ami.", + "example_sentence_english": "I would like to introduce you to my friend.", + "pos": "verb", + "word_frequency": 473 + }, + { + "word": "regarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to look at;to watch", + "example_sentence_native": "Regarde ce beau paysage.", + "example_sentence_english": "Look at this beautiful landscape.", + "pos": "verb", + "word_frequency": 474 + }, + { + "word": "rouge", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "red", + "example_sentence_native": "La voiture est rouge.", + "example_sentence_english": "The car is red.", + "pos": "adjective", + "word_frequency": 475 + }, + { + "word": "sortie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exit;outing", + "example_sentence_native": "Où est la sortie de secours ?", + "example_sentence_english": "Where is the emergency exit?", + "pos": "noun", + "word_frequency": 476 + }, + { + "word": "auteur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "author", + "example_sentence_native": "L'auteur de ce livre est célèbre.", + "example_sentence_english": "The author of this book is famous.", + "pos": "noun", + "word_frequency": 477 + }, + { + "word": "février", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "February", + "example_sentence_native": "Février est le mois le plus court.", + "example_sentence_english": "February is the shortest month.", + "pos": "noun", + "word_frequency": 479 + }, + { + "word": "justice", + "article_with_word": "la justice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "justice", + "example_sentence_native": "La justice doit être égale pour tous.", + "example_sentence_english": "Justice must be equal for everyone.", + "pos": "noun", + "word_frequency": 481 + }, + { + "word": "langue", + "article_with_word": "la langue", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "language;tongue", + "example_sentence_native": "Quelle langue parlez-vous?", + "example_sentence_english": "What language do you speak?", + "pos": "noun", + "word_frequency": 482 + }, + { + "word": "occasion", + "article_with_word": "l'occasion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opportunity;occasion", + "example_sentence_native": "C'est une bonne occasion d'apprendre.", + "example_sentence_english": "It's a good opportunity to learn.", + "pos": "noun", + "word_frequency": 483 + }, + { + "word": "offre", + "article_with_word": "l'offre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offer;supply", + "example_sentence_native": "Nous avons reçu une offre intéressante.", + "example_sentence_english": "We received an interesting offer.", + "pos": "noun", + "word_frequency": 484 + }, + { + "word": "perdre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lose", + "example_sentence_native": "Je ne veux pas perdre mon temps.", + "example_sentence_english": "I don't want to lose my time.", + "pos": "verb", + "word_frequency": 485 + }, + { + "word": "qualité", + "article_with_word": "la qualité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quality", + "example_sentence_native": "Ce produit est de bonne qualité.", + "example_sentence_english": "This product is of good quality.", + "pos": "noun", + "word_frequency": 486 + }, + { + "word": "risque", + "article_with_word": "le risque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risk", + "example_sentence_native": "Il y a un risque de pluie aujourd'hui.", + "example_sentence_english": "There is a risk of rain today.", + "pos": "noun", + "word_frequency": 488 + }, + { + "word": "scène", + "article_with_word": "la scène", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scene;stage", + "example_sentence_native": "L'acteur est monté sur scène.", + "example_sentence_english": "The actor went on stage.", + "pos": "noun", + "word_frequency": 489 + }, + { + "word": "voici", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here is;are", + "example_sentence_native": "Voici votre café.", + "example_sentence_english": "Here is your coffee.", + "pos": "adverb", + "word_frequency": 491 + }, + { + "word": "appeler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to call", + "example_sentence_native": "Je vais t'appeler plus tard.", + "example_sentence_english": "I will call you later.", + "pos": "verb", + "word_frequency": 492 + }, + { + "word": "cadre", + "article_with_word": "le cadre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame;executive;setting", + "example_sentence_native": "Le tableau est dans un beau cadre.", + "example_sentence_english": "The painting is in a beautiful frame.", + "pos": "noun", + "word_frequency": 493 + }, + { + "word": "changer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to change", + "example_sentence_native": "Il faut changer les piles.", + "example_sentence_english": "The batteries need to be changed.", + "pos": "verb", + "word_frequency": 494 + }, + { + "word": "libre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "free", + "example_sentence_native": "Je suis libre ce soir.", + "example_sentence_english": "I am free tonight.", + "pos": "adjective", + "word_frequency": 495 + }, + { + "word": "production", + "article_with_word": "la production", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production", + "example_sentence_native": "La production de voitures a augmenté.", + "example_sentence_english": "Car production has increased.", + "pos": "noun", + "word_frequency": 496 + }, + { + "word": "vieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "old", + "example_sentence_native": "C'est un très vieux livre.", + "example_sentence_english": "It's a very old book.", + "pos": "adjective", + "word_frequency": 497 + }, + { + "word": "connaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know (a person;place;or thing)", + "example_sentence_native": "Je connais bien cette ville.", + "example_sentence_english": "I know this city well.", + "pos": "verb", + "word_frequency": 498 + }, + { + "word": "facile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "easy", + "example_sentence_native": "C'est un exercice facile.", + "example_sentence_english": "It's an easy exercise.", + "pos": "adjective", + "word_frequency": 499 + }, + { + "word": "image", + "article_with_word": "l'image", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "image;picture", + "example_sentence_native": "Regarde cette belle image.", + "example_sentence_english": "Look at this beautiful picture.", + "pos": "noun", + "word_frequency": 500 + }, + { + "word": "lien", + "article_with_word": "le lien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "link;bond", + "example_sentence_native": "Clique sur ce lien pour plus d'informations.", + "example_sentence_english": "Click on this link for more information.", + "pos": "noun", + "word_frequency": 501 + }, + { + "word": "mer", + "article_with_word": "la mer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sea", + "example_sentence_native": "Nous allons à la mer cet été.", + "example_sentence_english": "We are going to the sea this summer.", + "pos": "noun", + "word_frequency": 502 + }, + { + "word": "mauvais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bad", + "example_sentence_native": "C'est une mauvaise idée.", + "example_sentence_english": "It's a bad idea.", + "pos": "adjective", + "word_frequency": 503 + }, + { + "word": "rester", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stay;to remain", + "example_sentence_native": "Je veux rester ici.", + "example_sentence_english": "I want to stay here.", + "pos": "verb", + "word_frequency": 504 + }, + { + "word": "source", + "article_with_word": "la source", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "source", + "example_sentence_native": "Quelle est la source de cette information?", + "example_sentence_english": "What is the source of this information?", + "pos": "noun", + "word_frequency": 506 + }, + { + "word": "troisième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "third", + "example_sentence_native": "C'est la troisième fois.", + "example_sentence_english": "It's the third time.", + "pos": "numeral", + "word_frequency": 507 + }, + { + "word": "aider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to help", + "example_sentence_native": "Peux-tu m'aider s'il te plaît?", + "example_sentence_english": "Can you help me please?", + "pos": "verb", + "word_frequency": 508 + }, + { + "word": "campagne", + "article_with_word": "la campagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "countryside;campaign", + "example_sentence_native": "J'aime passer mes vacances à la campagne.", + "example_sentence_english": "I like to spend my holidays in the countryside.", + "pos": "noun", + "word_frequency": 510 + }, + { + "word": "coupe", + "article_with_word": "la coupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut;cup", + "example_sentence_native": "Il a gagné la coupe du monde.", + "example_sentence_english": "He won the World Cup.", + "pos": "noun", + "word_frequency": 511 + }, + { + "word": "cour", + "article_with_word": "la cour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courtyard;court", + "example_sentence_native": "Les enfants jouent dans la cour.", + "example_sentence_english": "The children are playing in the courtyard.", + "pos": "noun", + "word_frequency": 512 + }, + { + "word": "objet", + "article_with_word": "l'objet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "object", + "example_sentence_native": "C'est un objet très ancien.", + "example_sentence_english": "It's a very old object.", + "pos": "noun", + "word_frequency": 514 + }, + { + "word": "partout", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "everywhere", + "example_sentence_native": "J'ai cherché mes clés partout.", + "example_sentence_english": "I looked for my keys everywhere.", + "pos": "adverb", + "word_frequency": 516 + }, + { + "word": "plupart", + "article_with_word": "la plupart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most (of)", + "example_sentence_native": "La plupart des gens sont d'accord.", + "example_sentence_english": "Most people agree.", + "pos": "noun", + "word_frequency": 517 + }, + { + "word": "second", + "article_with_word": "le second", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "second;second (of time)", + "example_sentence_native": "Attends une seconde.", + "example_sentence_english": "Wait a second.", + "pos": "noun", + "word_frequency": 518 + }, + { + "word": "valeur", + "article_with_word": "la valeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "value", + "example_sentence_native": "Ce tableau a beaucoup de valeur.", + "example_sentence_english": "This painting has a lot of value.", + "pos": "noun", + "word_frequency": 519 + }, + { + "word": "étude", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "study", + "example_sentence_native": "Elle a commencé une nouvelle étude sur le climat.", + "example_sentence_english": "She started a new study on the climate.", + "pos": "noun", + "word_frequency": 520 + }, + { + "word": "cher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "expensive", + "example_sentence_native": "Cette voiture est très chère.", + "example_sentence_english": "This car is very expensive.", + "pos": "adjective", + "word_frequency": 522 + }, + { + "word": "devenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to become", + "example_sentence_native": "Il veut devenir médecin.", + "example_sentence_english": "He wants to become a doctor.", + "pos": "verb", + "word_frequency": 523 + }, + { + "word": "donnée", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data", + "example_sentence_native": "Nous avons analysé les données collectées.", + "example_sentence_english": "We analyzed the collected data.", + "pos": "noun", + "word_frequency": 524 + }, + { + "word": "montrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to show", + "example_sentence_native": "Peux-tu me montrer le chemin?", + "example_sentence_english": "Can you show me the way?", + "pos": "verb", + "word_frequency": 528 + }, + { + "word": "particulier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "particular", + "example_sentence_native": "C'est un cas particulier.", + "example_sentence_english": "It's a particular case.", + "pos": "adjective", + "word_frequency": 529 + }, + { + "word": "poste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position", + "example_sentence_native": "Il a obtenu un nouveau poste.", + "example_sentence_english": "He got a new position.", + "pos": "noun", + "word_frequency": 530 + }, + { + "word": "présent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "present", + "example_sentence_native": "Tous les étudiants sont présents.", + "example_sentence_english": "All students are present.", + "pos": "adjective", + "word_frequency": 531 + }, + { + "word": "réponse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "answer", + "example_sentence_native": "J'attends ta réponse.", + "example_sentence_english": "I'm waiting for your answer.", + "pos": "noun", + "word_frequency": 532 + }, + { + "word": "réseau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "network", + "example_sentence_native": "Le réseau internet est en panne.", + "example_sentence_english": "The internet network is down.", + "pos": "noun", + "word_frequency": 533 + }, + { + "word": "salle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room", + "example_sentence_native": "La salle de classe est grande.", + "example_sentence_english": "The classroom is big.", + "pos": "noun", + "word_frequency": 534 + }, + { + "word": "texte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "text", + "example_sentence_native": "Lisez le texte attentivement.", + "example_sentence_english": "Read the text carefully.", + "pos": "noun", + "word_frequency": 535 + }, + { + "word": "appel", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "call", + "example_sentence_native": "J'ai reçu un appel important.", + "example_sentence_english": "I received an important call.", + "pos": "noun", + "word_frequency": 536 + }, + { + "word": "contrôle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "control", + "example_sentence_native": "Le contrôle qualité est essentiel.", + "example_sentence_english": "Quality control is essential.", + "pos": "noun", + "word_frequency": 538 + }, + { + "word": "message", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "message", + "example_sentence_native": "J'ai laissé un message sur son répondeur.", + "example_sentence_english": "I left a message on his answering machine.", + "pos": "noun", + "word_frequency": 539 + }, + { + "word": "position", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position", + "example_sentence_native": "Quelle est votre position sur ce sujet?", + "example_sentence_english": "What is your position on this topic?", + "pos": "noun", + "word_frequency": 540 + }, + { + "word": "république", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "republic", + "example_sentence_native": "La France est une république.", + "example_sentence_english": "France is a republic.", + "pos": "noun", + "word_frequency": 541 + }, + { + "word": "succès", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "success", + "example_sentence_native": "Je lui souhaite beaucoup de succès.", + "example_sentence_english": "I wish him a lot of success.", + "pos": "noun", + "word_frequency": 542 + }, + { + "word": "économique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economic", + "example_sentence_native": "La situation économique est difficile.", + "example_sentence_english": "The economic situation is difficult.", + "pos": "adjective", + "word_frequency": 543 + }, + { + "word": "activité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "activity", + "example_sentence_native": "Quelle est votre activité préférée?", + "example_sentence_english": "What is your favorite activity?", + "pos": "noun", + "word_frequency": 544 + }, + { + "word": "américain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "American", + "example_sentence_native": "Il est d'origine américaine.", + "example_sentence_english": "He is of American origin.", + "pos": "adjective", + "word_frequency": 545 + }, + { + "word": "association", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "association", + "example_sentence_native": "Il fait partie d'une association caritative.", + "example_sentence_english": "He is part of a charity association.", + "pos": "noun", + "word_frequency": 546 + }, + { + "word": "carte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "map", + "example_sentence_native": "J'ai besoin d'une carte pour trouver mon chemin.", + "example_sentence_english": "I need a map to find my way.", + "pos": "noun", + "word_frequency": 547 + }, + { + "word": "chercher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to look for", + "example_sentence_native": "Je cherche mes clés.", + "example_sentence_english": "I'm looking for my keys.", + "pos": "verb", + "word_frequency": 548 + }, + { + "word": "création", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creation", + "example_sentence_native": "La création de ce projet a pris du temps.", + "example_sentence_english": "The creation of this project took time.", + "pos": "noun", + "word_frequency": 549 + }, + { + "word": "euro", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "euro", + "example_sentence_native": "Combien coûte un euro?", + "example_sentence_english": "How much does one euro cost?", + "pos": "noun", + "word_frequency": 550 + }, + { + "word": "expérience", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experience", + "example_sentence_native": "Il a beaucoup d'expérience dans ce domaine.", + "example_sentence_english": "He has a lot of experience in this field.", + "pos": "noun", + "word_frequency": 551 + }, + { + "word": "fonction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "function", + "example_sentence_native": "Quelle est la fonction de ce bouton?", + "example_sentence_english": "What is the function of this button?", + "pos": "noun", + "word_frequency": 552 + }, + { + "word": "impression", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impression", + "example_sentence_native": "J'ai eu une bonne impression de lui.", + "example_sentence_english": "I had a good impression of him.", + "pos": "noun", + "word_frequency": 553 + }, + { + "word": "nature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nature", + "example_sentence_native": "J'aime passer du temps dans la nature.", + "example_sentence_english": "I like spending time in nature.", + "pos": "noun", + "word_frequency": 555 + }, + { + "word": "simplement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simply", + "example_sentence_native": "Il a simplement dit la vérité.", + "example_sentence_english": "He simply told the truth.", + "pos": "adverb", + "word_frequency": 557 + }, + { + "word": "annonce", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announcement;ad", + "example_sentence_native": "J'ai vu une annonce pour un nouvel emploi.", + "example_sentence_english": "I saw an ad for a new job.", + "pos": "noun", + "word_frequency": 560 + }, + { + "word": "arrêter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stop", + "example_sentence_native": "Il faut arrêter de fumer.", + "example_sentence_english": "You must stop smoking.", + "pos": "verb", + "word_frequency": 561 + }, + { + "word": "bientôt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soon", + "example_sentence_native": "À bientôt !", + "example_sentence_english": "See you soon!", + "pos": "adverb", + "word_frequency": 562 + }, + { + "word": "chemin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "path;way", + "example_sentence_native": "Nous avons suivi le chemin jusqu'à la rivière.", + "example_sentence_english": "We followed the path to the river.", + "pos": "noun", + "word_frequency": 563 + }, + { + "word": "demi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "half", + "example_sentence_native": "Je voudrais une demi-baguette.", + "example_sentence_english": "I would like half a baguette.", + "pos": "adjective", + "word_frequency": 564 + }, + { + "word": "différent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "different", + "example_sentence_native": "Ces deux couleurs sont très différentes.", + "example_sentence_english": "These two colors are very different.", + "pos": "adjective", + "word_frequency": 565 + }, + { + "word": "directeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "director;manager", + "example_sentence_native": "Le directeur a annoncé sa démission.", + "example_sentence_english": "The director announced his resignation.", + "pos": "noun", + "word_frequency": 566 + }, + { + "word": "espace", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "space", + "example_sentence_native": "Il y a beaucoup d'espace dans cette pièce.", + "example_sentence_english": "There is a lot of space in this room.", + "pos": "noun", + "word_frequency": 567 + }, + { + "word": "liberté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freedom;liberty", + "example_sentence_native": "La liberté est un droit fondamental.", + "example_sentence_english": "Freedom is a fundamental right.", + "pos": "noun", + "word_frequency": 568 + }, + { + "word": "mariage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marriage;wedding", + "example_sentence_native": "Ils ont célébré leur mariage l'été dernier.", + "example_sentence_english": "They celebrated their wedding last summer.", + "pos": "noun", + "word_frequency": 569 + }, + { + "word": "organisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organization", + "example_sentence_native": "L'organisation de l'événement a été parfaite.", + "example_sentence_english": "The organization of the event was perfect.", + "pos": "noun", + "word_frequency": 571 + }, + { + "word": "passage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passage;crossing", + "example_sentence_native": "Le passage est bloqué par des travaux.", + "example_sentence_english": "The passage is blocked by construction.", + "pos": "noun", + "word_frequency": 572 + }, + { + "word": "présence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presence", + "example_sentence_native": "Sa présence a été très appréciée.", + "example_sentence_english": "His presence was much appreciated.", + "pos": "noun", + "word_frequency": 573 + }, + { + "word": "sein", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breast;bosom;within", + "example_sentence_native": "Au sein de l'entreprise, il y a une bonne ambiance.", + "example_sentence_english": "Within the company, there is a good atmosphere.", + "pos": "noun", + "word_frequency": 574 + }, + { + "word": "sort", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fate;spell", + "example_sentence_native": "Il a jeté un sort sur le dragon.", + "example_sentence_english": "He cast a spell on the dragon.", + "pos": "noun", + "word_frequency": 575 + }, + { + "word": "zone", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zone;area", + "example_sentence_native": "C'est une zone résidentielle tranquille.", + "example_sentence_english": "It's a quiet residential zone.", + "pos": "noun", + "word_frequency": 576 + }, + { + "word": "économie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economy;saving", + "example_sentence_native": "L'économie du pays est en croissance.", + "example_sentence_english": "The country's economy is growing.", + "pos": "noun", + "word_frequency": 577 + }, + { + "word": "bureau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "office;desk", + "example_sentence_native": "Je travaille dans mon bureau.", + "example_sentence_english": "I work in my office.", + "pos": "noun", + "word_frequency": 578 + }, + { + "word": "compagnie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company;companionship", + "example_sentence_native": "Il aime la compagnie de ses amis.", + "example_sentence_english": "He enjoys the company of his friends.", + "pos": "noun", + "word_frequency": 579 + }, + { + "word": "entrée", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "entrance;starter (food)", + "example_sentence_native": "L'entrée du bâtiment est à droite.", + "example_sentence_english": "The entrance to the building is on the right.", + "pos": "noun", + "word_frequency": 580 + }, + { + "word": "pied", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "foot", + "example_sentence_native": "J'ai mal au pied.", + "example_sentence_english": "My foot hurts.", + "pos": "noun", + "word_frequency": 582 + }, + { + "word": "presse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "press (media);urgency", + "example_sentence_native": "La liberté de la presse est essentielle.", + "example_sentence_english": "Freedom of the press is essential.", + "pos": "noun", + "word_frequency": 583 + }, + { + "word": "prise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socket;grip;catch;taking", + "example_sentence_native": "Branchez l'appareil dans la prise.", + "example_sentence_english": "Plug the device into the socket.", + "pos": "noun", + "word_frequency": 584 + }, + { + "word": "réalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reality", + "example_sentence_native": "La réalité est parfois difficile à accepter.", + "example_sentence_english": "Reality is sometimes hard to accept.", + "pos": "noun", + "word_frequency": 585 + }, + { + "word": "social", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social", + "example_sentence_native": "Il est très actif sur les réseaux sociaux.", + "example_sentence_english": "He is very active on social networks.", + "pos": "adjective", + "word_frequency": 586 + }, + { + "word": "sorte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kind;sort", + "example_sentence_native": "Quelle sorte de musique aimes-tu ?", + "example_sentence_english": "What kind of music do you like?", + "pos": "noun", + "word_frequency": 587 + }, + { + "word": "université", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "university", + "example_sentence_native": "Elle étudie à l'université.", + "example_sentence_english": "She studies at the university.", + "pos": "noun", + "word_frequency": 588 + }, + { + "word": "utiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to use", + "example_sentence_native": "Peux-tu utiliser cet outil ?", + "example_sentence_english": "Can you use this tool?", + "pos": "verb", + "word_frequency": 589 + }, + { + "word": "œuvre", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work (of art;literature);deed", + "example_sentence_native": "C'est une œuvre d'art magnifique.", + "example_sentence_english": "It's a magnificent work of art.", + "pos": "noun", + "word_frequency": 590 + }, + { + "word": "accès", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "access", + "example_sentence_native": "L'accès au site est restreint.", + "example_sentence_english": "Access to the site is restricted.", + "pos": "noun", + "word_frequency": 591 + }, + { + "word": "commission", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commission;committee;errand", + "example_sentence_native": "La commission a rendu son rapport.", + "example_sentence_english": "The committee submitted its report.", + "pos": "noun", + "word_frequency": 592 + }, + { + "word": "dimanche", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Sunday", + "example_sentence_native": "Nous allons au marché le dimanche.", + "example_sentence_english": "We go to the market on Sunday.", + "pos": "noun", + "word_frequency": 593 + }, + { + "word": "départ", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "departure;start", + "example_sentence_native": "L'heure de départ est 10h.", + "example_sentence_english": "The departure time is 10 AM.", + "pos": "noun", + "word_frequency": 594 + }, + { + "word": "lit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bed", + "example_sentence_native": "Je vais me coucher dans mon lit.", + "example_sentence_english": "I'm going to bed.", + "pos": "noun", + "word_frequency": 595 + }, + { + "word": "marier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to marry", + "example_sentence_native": "Ils vont se marier l'année prochaine.", + "example_sentence_english": "They are going to get married next year.", + "pos": "verb", + "word_frequency": 596 + }, + { + "word": "numéro", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "number", + "example_sentence_native": "Quel est ton numéro de téléphone ?", + "example_sentence_english": "What is your phone number?", + "pos": "noun", + "word_frequency": 597 + }, + { + "word": "soleil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sun", + "example_sentence_native": "Le soleil brille aujourd'hui.", + "example_sentence_english": "The sun is shining today.", + "pos": "noun", + "word_frequency": 599 + }, + { + "word": "taux", + "article_with_word": "le taux", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rate", + "example_sentence_native": "Le taux de chômage a diminué.", + "example_sentence_english": "The unemployment rate has decreased.", + "pos": "noun", + "word_frequency": 600 + }, + { + "word": "travailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to work", + "example_sentence_native": "Je dois travailler demain.", + "example_sentence_english": "I have to work tomorrow.", + "pos": "verb", + "word_frequency": 601 + }, + { + "word": "voie", + "article_with_word": "la voie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "way;path;track", + "example_sentence_native": "C'est la bonne voie à suivre.", + "example_sentence_english": "This is the right way to follow.", + "pos": "noun", + "word_frequency": 602 + }, + { + "word": "acheter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to buy", + "example_sentence_native": "J'aimerais acheter un nouveau livre.", + "example_sentence_english": "I would like to buy a new book.", + "pos": "verb", + "word_frequency": 603 + }, + { + "word": "attendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wait", + "example_sentence_native": "J'attends le bus.", + "example_sentence_english": "I am waiting for the bus.", + "pos": "verb", + "word_frequency": 605 + }, + { + "word": "bras", + "article_with_word": "le bras", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "arm", + "example_sentence_native": "Il a un bras cassé.", + "example_sentence_english": "He has a broken arm.", + "pos": "noun", + "word_frequency": 606 + }, + { + "word": "charge", + "article_with_word": "la charge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "load;charge;responsibility", + "example_sentence_native": "Il a une lourde charge de travail.", + "example_sentence_english": "He has a heavy workload.", + "pos": "noun", + "word_frequency": 607 + }, + { + "word": "ex", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "former;ex-", + "example_sentence_native": "C'est mon ex-mari.", + "example_sentence_english": "He is my ex-husband.", + "pos": "adjective", + "word_frequency": 608 + }, + { + "word": "finalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finally;eventually", + "example_sentence_native": "Finalement, nous sommes arrivés à destination.", + "example_sentence_english": "Finally, we arrived at our destination.", + "pos": "adverb", + "word_frequency": 609 + }, + { + "word": "finir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to finish;to end", + "example_sentence_native": "Je dois finir mon travail.", + "example_sentence_english": "I have to finish my work.", + "pos": "verb", + "word_frequency": 610 + }, + { + "word": "manger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to eat", + "example_sentence_native": "J'aime manger des fruits.", + "example_sentence_english": "I like to eat fruit.", + "pos": "verb", + "word_frequency": 611 + }, + { + "word": "marque", + "article_with_word": "la marque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brand;mark", + "example_sentence_native": "Quelle est votre marque préférée?", + "example_sentence_english": "What is your favorite brand?", + "pos": "noun", + "word_frequency": 612 + }, + { + "word": "pièce", + "article_with_word": "la pièce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "room;piece;coin", + "example_sentence_native": "Il y a trois pièces dans cet appartement.", + "example_sentence_english": "There are three rooms in this apartment.", + "pos": "noun", + "word_frequency": 613 + }, + { + "word": "pratique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practical;convenient", + "example_sentence_native": "C'est une solution très pratique.", + "example_sentence_english": "It's a very practical solution.", + "pos": "adjective", + "word_frequency": 614 + }, + { + "word": "victoire", + "article_with_word": "la victoire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victory", + "example_sentence_native": "L'équipe a célébré sa victoire.", + "example_sentence_english": "The team celebrated its victory.", + "pos": "noun", + "word_frequency": 615 + }, + { + "word": "vérité", + "article_with_word": "la vérité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truth", + "example_sentence_native": "Dis-moi la vérité.", + "example_sentence_english": "Tell me the truth.", + "pos": "noun", + "word_frequency": 616 + }, + { + "word": "communauté", + "article_with_word": "la communauté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "community", + "example_sentence_native": "Nous vivons dans une petite communauté.", + "example_sentence_english": "We live in a small community.", + "pos": "noun", + "word_frequency": 618 + }, + { + "word": "domaine", + "article_with_word": "le domaine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domain;field;area", + "example_sentence_native": "C'est son domaine d'expertise.", + "example_sentence_english": "This is his field of expertise.", + "pos": "noun", + "word_frequency": 619 + }, + { + "word": "monsieur", + "article_with_word": "le monsieur", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sir;Mr.;gentleman", + "example_sentence_native": "Bonjour, Monsieur Dupont.", + "example_sentence_english": "Hello, Mr. Dupont.", + "pos": "noun", + "word_frequency": 620 + }, + { + "word": "payer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pay", + "example_sentence_native": "Je dois payer la facture.", + "example_sentence_english": "I have to pay the bill.", + "pos": "verb", + "word_frequency": 622 + }, + { + "word": "peuple", + "article_with_word": "le peuple", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "people;nation", + "example_sentence_native": "Le peuple a voté.", + "example_sentence_english": "The people voted.", + "pos": "noun", + "word_frequency": 623 + }, + { + "word": "proche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "close;near", + "example_sentence_native": "Ma maison est proche de l'école.", + "example_sentence_english": "My house is close to the school.", + "pos": "adjective", + "word_frequency": 624 + }, + { + "word": "publier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to publish", + "example_sentence_native": "L'auteur va publier un nouveau livre.", + "example_sentence_english": "The author will publish a new book.", + "pos": "verb", + "word_frequency": 625 + }, + { + "word": "recevoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to receive", + "example_sentence_native": "J'ai reçu un cadeau.", + "example_sentence_english": "I received a gift.", + "pos": "verb", + "word_frequency": 627 + }, + { + "word": "répondre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to answer;to reply", + "example_sentence_native": "Il n'a pas répondu à ma question.", + "example_sentence_english": "He did not answer my question.", + "pos": "verb", + "word_frequency": 628 + }, + { + "word": "suivre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to follow", + "example_sentence_native": "Suivez-moi, s'il vous plaît.", + "example_sentence_english": "Follow me, please.", + "pos": "verb", + "word_frequency": 629 + }, + { + "word": "administration", + "article_with_word": "l'administration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administration", + "example_sentence_native": "Il travaille dans l'administration publique.", + "example_sentence_english": "He works in public administration.", + "pos": "noun", + "word_frequency": 630 + }, + { + "word": "code", + "article_with_word": "le code", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "code", + "example_sentence_native": "Entrez le code secret.", + "example_sentence_english": "Enter the secret code.", + "pos": "noun", + "word_frequency": 632 + }, + { + "word": "entendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to hear", + "example_sentence_native": "J'entends de la musique.", + "example_sentence_english": "I hear music.", + "pos": "verb", + "word_frequency": 633 + }, + { + "word": "gagner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to win;to earn", + "example_sentence_native": "Il veut gagner le match.", + "example_sentence_english": "He wants to win the match.", + "pos": "verb", + "word_frequency": 634 + }, + { + "word": "honneur", + "article_with_word": "l'honneur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honor", + "example_sentence_native": "C'est un grand honneur pour moi.", + "example_sentence_english": "It's a great honor for me.", + "pos": "noun", + "word_frequency": 635 + }, + { + "word": "journal", + "article_with_word": "le journal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "newspaper;journal", + "example_sentence_native": "Je lis le journal tous les matins.", + "example_sentence_english": "I read the newspaper every morning.", + "pos": "noun", + "word_frequency": 636 + }, + { + "word": "matière", + "article_with_word": "la matière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matter;subject;material", + "example_sentence_native": "Quelle est votre matière préférée à l'école?", + "example_sentence_english": "What is your favorite subject at school?", + "pos": "noun", + "word_frequency": 637 + }, + { + "word": "ouest", + "article_with_word": "l'ouest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "west", + "example_sentence_native": "Le soleil se couche à l'ouest.", + "example_sentence_english": "The sun sets in the west.", + "pos": "noun", + "word_frequency": 638 + }, + { + "word": "permis", + "article_with_word": "le permis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "permit;license", + "example_sentence_native": "J'ai mon permis de conduire.", + "example_sentence_english": "I have my driver's license.", + "pos": "noun", + "word_frequency": 639 + }, + { + "word": "rapidement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quickly", + "example_sentence_native": "Il a couru rapidement pour attraper le bus.", + "example_sentence_english": "He ran quickly to catch the bus.", + "pos": "adverb", + "word_frequency": 640 + }, + { + "word": "retrouver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to find again;to meet up with", + "example_sentence_native": "J'espère retrouver mes clés.", + "example_sentence_english": "I hope to find my keys again.", + "pos": "verb", + "word_frequency": 641 + }, + { + "word": "sept", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seven", + "example_sentence_native": "Il y a sept jours dans une semaine.", + "example_sentence_english": "There are seven days in a week.", + "pos": "numeral", + "word_frequency": 642 + }, + { + "word": "soirée", + "article_with_word": "la soirée", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "evening;party", + "example_sentence_native": "Nous avons passé une bonne soirée.", + "example_sentence_english": "We had a good evening.", + "pos": "noun", + "word_frequency": 643 + }, + { + "word": "sol", + "article_with_word": "le sol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ground;floor;soil", + "example_sentence_native": "Le livre est tombé sur le sol.", + "example_sentence_english": "The book fell on the floor.", + "pos": "noun", + "word_frequency": 644 + }, + { + "word": "sport", + "article_with_word": "le sport", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sport", + "example_sentence_native": "J'aime faire du sport le week-end.", + "example_sentence_english": "I like to do sport on the weekend.", + "pos": "noun", + "word_frequency": 645 + }, + { + "word": "téléphone", + "article_with_word": "le téléphone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telephone;phone", + "example_sentence_native": "Mon téléphone est sur la table.", + "example_sentence_english": "My phone is on the table.", + "pos": "noun", + "word_frequency": 646 + }, + { + "word": "version", + "article_with_word": "la version", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "version", + "example_sentence_native": "C'est la dernière version du logiciel.", + "example_sentence_english": "This is the latest version of the software.", + "pos": "noun", + "word_frequency": 647 + }, + { + "word": "arme", + "article_with_word": "une arme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weapon;arm", + "example_sentence_native": "Il portait une arme.", + "example_sentence_english": "He was carrying a weapon.", + "pos": "noun", + "word_frequency": 649 + }, + { + "word": "arrivée", + "article_with_word": "l'arrivée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arrival", + "example_sentence_native": "L'heure d'arrivée est 10h.", + "example_sentence_english": "The arrival time is 10 AM.", + "pos": "noun", + "word_frequency": 650 + }, + { + "word": "coeur", + "article_with_word": "le cœur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heart", + "example_sentence_native": "Il a un grand cœur.", + "example_sentence_english": "He has a big heart.", + "pos": "noun", + "word_frequency": 651 + }, + { + "word": "construction", + "article_with_word": "la construction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction;building", + "example_sentence_native": "La construction du nouveau pont est terminée.", + "example_sentence_english": "The construction of the new bridge is finished.", + "pos": "noun", + "word_frequency": 652 + }, + { + "word": "double", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "double", + "example_sentence_native": "Il a commandé un double expresso.", + "example_sentence_english": "He ordered a double espresso.", + "pos": "adjective", + "word_frequency": 653 + }, + { + "word": "information", + "article_with_word": "l'information", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "information", + "example_sentence_native": "J'ai besoin de plus d'informations.", + "example_sentence_english": "I need more information.", + "pos": "noun", + "word_frequency": 654 + }, + { + "word": "midi", + "article_with_word": "le midi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "noon;midday", + "example_sentence_native": "Nous déjeunons à midi.", + "example_sentence_english": "We have lunch at noon.", + "pos": "noun", + "word_frequency": 656 + }, + { + "word": "mission", + "article_with_word": "la mission", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mission", + "example_sentence_native": "La mission est de trouver la solution.", + "example_sentence_english": "The mission is to find the solution.", + "pos": "noun", + "word_frequency": 657 + }, + { + "word": "moitié", + "article_with_word": "la moitié", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half", + "example_sentence_native": "Il a mangé la moitié du gâteau.", + "example_sentence_english": "He ate half of the cake.", + "pos": "noun", + "word_frequency": 658 + }, + { + "word": "page", + "article_with_word": "la page", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "page", + "example_sentence_native": "Lisez la page 10.", + "example_sentence_english": "Read page 10.", + "pos": "noun", + "word_frequency": 659 + }, + { + "word": "particulièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particularly;especially", + "example_sentence_native": "Ce sujet est particulièrement intéressant.", + "example_sentence_english": "This topic is particularly interesting.", + "pos": "adverb", + "word_frequency": 660 + }, + { + "word": "prochain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "next", + "example_sentence_native": "On se voit la semaine prochaine.", + "example_sentence_english": "See you next week.", + "pos": "adjective", + "word_frequency": 661 + }, + { + "word": "prêt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ready", + "example_sentence_native": "Je suis prêt à partir.", + "example_sentence_english": "I am ready to leave.", + "pos": "adjective", + "word_frequency": 662 + }, + { + "word": "technique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technical", + "example_sentence_native": "C'est un problème technique.", + "example_sentence_english": "It's a technical problem.", + "pos": "adjective", + "word_frequency": 663 + }, + { + "word": "union", + "article_with_word": "l'union", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "union", + "example_sentence_native": "L'union fait la force.", + "example_sentence_english": "Unity is strength.", + "pos": "noun", + "word_frequency": 664 + }, + { + "word": "voyage", + "article_with_word": "le voyage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trip;journey", + "example_sentence_native": "J'ai fait un long voyage.", + "example_sentence_english": "I took a long trip.", + "pos": "noun", + "word_frequency": 666 + }, + { + "word": "énergie", + "article_with_word": "l'énergie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy", + "example_sentence_native": "Il a beaucoup d'énergie.", + "example_sentence_english": "He has a lot of energy.", + "pos": "noun", + "word_frequency": 667 + }, + { + "word": "éviter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to avoid", + "example_sentence_native": "Il faut éviter les embouteillages.", + "example_sentence_english": "We must avoid traffic jams.", + "pos": "verb", + "word_frequency": 668 + }, + { + "word": "bord", + "article_with_word": "le bord", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge;border;side", + "example_sentence_native": "Il s'est assis au bord de la rivière.", + "example_sentence_english": "He sat at the edge of the river.", + "pos": "noun", + "word_frequency": 669 + }, + { + "word": "combien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "how much;how many", + "example_sentence_native": "Combien coûte ce livre ?", + "example_sentence_english": "How much does this book cost?", + "pos": "adverb", + "word_frequency": 670 + }, + { + "word": "continuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to continue", + "example_sentence_native": "Il faut continuer à travailler.", + "example_sentence_english": "We must continue to work.", + "pos": "verb", + "word_frequency": 671 + }, + { + "word": "contraire", + "article_with_word": "le contraire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposite;contrary", + "example_sentence_native": "Au contraire, je suis d'accord.", + "example_sentence_english": "On the contrary, I agree.", + "pos": "noun", + "word_frequency": 672 + }, + { + "word": "courant", + "article_with_word": "le courant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current;flow", + "example_sentence_native": "Le courant de la rivière est fort.", + "example_sentence_english": "The river current is strong.", + "pos": "noun", + "word_frequency": 673 + }, + { + "word": "fait", + "article_with_word": "le fait", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fact", + "example_sentence_native": "C'est un fait avéré.", + "example_sentence_english": "It's a proven fact.", + "pos": "noun", + "word_frequency": 674 + }, + { + "word": "faute", + "article_with_word": "la faute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fault;mistake", + "example_sentence_native": "C'est ma faute.", + "example_sentence_english": "It's my fault.", + "pos": "noun", + "word_frequency": 675 + }, + { + "word": "final", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "final;last", + "example_sentence_native": "C'est la décision finale.", + "example_sentence_english": "It's the final decision.", + "pos": "adjective", + "word_frequency": 676 + }, + { + "word": "heureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happy", + "example_sentence_native": "Je suis très heureux de te voir.", + "example_sentence_english": "I am very happy to see you.", + "pos": "adjective", + "word_frequency": 677 + }, + { + "word": "impossible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "impossible", + "example_sentence_native": "C'est impossible à faire.", + "example_sentence_english": "It's impossible to do.", + "pos": "adjective", + "word_frequency": 678 + }, + { + "word": "joueur", + "article_with_word": "le joueur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "player", + "example_sentence_native": "Le joueur a marqué un but.", + "example_sentence_english": "The player scored a goal.", + "pos": "noun", + "word_frequency": 679 + }, + { + "word": "nécessaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "necessary", + "example_sentence_native": "C'est nécessaire de bien manger.", + "example_sentence_english": "It's necessary to eat well.", + "pos": "adjective", + "word_frequency": 680 + }, + { + "word": "porter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wear;to carry", + "example_sentence_native": "Je porte un pull chaud.", + "example_sentence_english": "I am wearing a warm sweater.", + "pos": "verb", + "word_frequency": 682 + }, + { + "word": "samedi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday", + "example_sentence_native": "Nous allons au marché le samedi.", + "example_sentence_english": "We go to the market on Saturday.", + "pos": "noun", + "word_frequency": 683 + }, + { + "word": "sang", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood", + "example_sentence_native": "Le sang coule dans nos veines.", + "example_sentence_english": "Blood flows in our veins.", + "pos": "noun", + "word_frequency": 684 + }, + { + "word": "style", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "style", + "example_sentence_native": "J'aime son style vestimentaire.", + "example_sentence_english": "I like his clothing style.", + "pos": "noun", + "word_frequency": 685 + }, + { + "word": "sérieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "serious", + "example_sentence_native": "Il est très sérieux dans son travail.", + "example_sentence_english": "He is very serious in his work.", + "pos": "adjective", + "word_frequency": 686 + }, + { + "word": "terrain", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ground;field;land", + "example_sentence_native": "Les enfants jouent sur le terrain de football.", + "example_sentence_english": "The children are playing on the football field.", + "pos": "noun", + "word_frequency": 687 + }, + { + "word": "église", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "church", + "example_sentence_native": "L'église est très ancienne.", + "example_sentence_english": "The church is very old.", + "pos": "noun", + "word_frequency": 688 + }, + { + "word": "créer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to create", + "example_sentence_native": "Il veut créer une nouvelle entreprise.", + "example_sentence_english": "He wants to create a new company.", + "pos": "verb", + "word_frequency": 690 + }, + { + "word": "décision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decision", + "example_sentence_native": "C'est une décision difficile à prendre.", + "example_sentence_english": "It's a difficult decision to make.", + "pos": "noun", + "word_frequency": 691 + }, + { + "word": "défense", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defense", + "example_sentence_native": "La défense de la ville est forte.", + "example_sentence_english": "The city's defense is strong.", + "pos": "noun", + "word_frequency": 692 + }, + { + "word": "désormais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from now on;henceforth", + "example_sentence_native": "Désormais, je ferai plus attention.", + "example_sentence_english": "From now on, I will be more careful.", + "pos": "adverb", + "word_frequency": 693 + }, + { + "word": "frais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fresh;cool", + "example_sentence_native": "J'aime les fruits frais.", + "example_sentence_english": "I like fresh fruit.", + "pos": "adjective", + "word_frequency": 694 + }, + { + "word": "hôtel", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hotel", + "example_sentence_native": "Nous avons réservé une chambre à l'hôtel.", + "example_sentence_english": "We booked a room at the hotel.", + "pos": "noun", + "word_frequency": 696 + }, + { + "word": "instant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moment;instant", + "example_sentence_native": "Attendez un instant, s'il vous plaît.", + "example_sentence_english": "Wait a moment, please.", + "pos": "noun", + "word_frequency": 697 + }, + { + "word": "majorité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majority", + "example_sentence_native": "La majorité des gens sont d'accord.", + "example_sentence_english": "The majority of people agree.", + "pos": "noun", + "word_frequency": 698 + }, + { + "word": "modèle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model;pattern", + "example_sentence_native": "C'est un excellent modèle à suivre.", + "example_sentence_english": "It's an excellent model to follow.", + "pos": "noun", + "word_frequency": 699 + }, + { + "word": "obtenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to obtain;to get", + "example_sentence_native": "J'espère obtenir de bons résultats.", + "example_sentence_english": "I hope to obtain good results.", + "pos": "verb", + "word_frequency": 700 + }, + { + "word": "paix", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peace", + "example_sentence_native": "Nous souhaitons la paix dans le monde.", + "example_sentence_english": "We wish for peace in the world.", + "pos": "noun", + "word_frequency": 702 + }, + { + "word": "rappeler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to call back;to remind", + "example_sentence_native": "N'oubliez pas de me rappeler.", + "example_sentence_english": "Don't forget to call me back.", + "pos": "verb", + "word_frequency": 703 + }, + { + "word": "solution", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "solution", + "example_sentence_native": "Nous avons trouvé une solution au problème.", + "example_sentence_english": "We found a solution to the problem.", + "pos": "noun", + "word_frequency": 704 + }, + { + "word": "actuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currently;at present", + "example_sentence_native": "Actuellement, je travaille sur un nouveau projet.", + "example_sentence_english": "Currently, I am working on a new project.", + "pos": "adverb", + "word_frequency": 706 + }, + { + "word": "assemblée", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;meeting", + "example_sentence_native": "L'assemblée générale aura lieu demain.", + "example_sentence_english": "The general assembly will take place tomorrow.", + "pos": "noun", + "word_frequency": 707 + }, + { + "word": "bande", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "band;strip;gang", + "example_sentence_native": "Une bande de jeunes jouait dans le parc.", + "example_sentence_english": "A group of young people was playing in the park.", + "pos": "noun", + "word_frequency": 708 + }, + { + "word": "commune", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "municipality;commune", + "example_sentence_native": "La commune a organisé un événement.", + "example_sentence_english": "The municipality organized an event.", + "pos": "noun", + "word_frequency": 709 + }, + { + "word": "contrat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contract", + "example_sentence_native": "Il a signé un nouveau contrat de travail.", + "example_sentence_english": "He signed a new employment contract.", + "pos": "noun", + "word_frequency": 710 + }, + { + "word": "faux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "false;fake", + "example_sentence_native": "Cette information est fausse.", + "example_sentence_english": "This information is false.", + "pos": "adjective", + "word_frequency": 711 + }, + { + "word": "international", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "international", + "example_sentence_native": "C'est une organisation internationale.", + "example_sentence_english": "It's an international organization.", + "pos": "adjective", + "word_frequency": 712 + }, + { + "word": "note", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "note;grade", + "example_sentence_native": "J'ai pris des notes pendant la réunion.", + "example_sentence_english": "I took notes during the meeting.", + "pos": "noun", + "word_frequency": 713 + }, + { + "word": "suffire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be enough;to suffice", + "example_sentence_native": "Deux heures devraient suffire.", + "example_sentence_english": "Two hours should be enough.", + "pos": "verb", + "word_frequency": 714 + }, + { + "word": "total", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total", + "example_sentence_native": "Le coût total est de cent euros.", + "example_sentence_english": "The total cost is one hundred euros.", + "pos": "adjective", + "word_frequency": 715 + }, + { + "word": "tôt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "early", + "example_sentence_native": "Je me lève tôt tous les jours.", + "example_sentence_english": "I wake up early every day.", + "pos": "adverb", + "word_frequency": 716 + }, + { + "word": "vol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flight;theft", + "example_sentence_native": "Le vol a été retardé.", + "example_sentence_english": "The flight was delayed.", + "pos": "noun", + "word_frequency": 717 + }, + { + "word": "élément", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "element", + "example_sentence_native": "C'est un élément important de la discussion.", + "example_sentence_english": "It's an important element of the discussion.", + "pos": "noun", + "word_frequency": 718 + }, + { + "word": "avenir", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "future", + "example_sentence_native": "Je pense à mon avenir.", + "example_sentence_english": "I think about my future.", + "pos": "noun", + "word_frequency": 719 + }, + { + "word": "critique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "critical", + "example_sentence_native": "Son analyse était très critique.", + "example_sentence_english": "His analysis was very critical.", + "pos": "adjective", + "word_frequency": 720 + }, + { + "word": "dehors", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "outside", + "example_sentence_native": "Il fait froid dehors.", + "example_sentence_english": "It's cold outside.", + "pos": "adverb", + "word_frequency": 721 + }, + { + "word": "directement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directly", + "example_sentence_native": "Parlez-lui directement.", + "example_sentence_english": "Speak to him directly.", + "pos": "adverb", + "word_frequency": 722 + }, + { + "word": "discours", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speech;discourse", + "example_sentence_native": "Le président a prononcé un discours important.", + "example_sentence_english": "The president delivered an important speech.", + "pos": "noun", + "word_frequency": 723 + }, + { + "word": "dur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hard;tough", + "example_sentence_native": "C'est un travail dur.", + "example_sentence_english": "It's a hard job.", + "pos": "adjective", + "word_frequency": 724 + }, + { + "word": "expliquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to explain", + "example_sentence_native": "Peux-tu m'expliquer cela?", + "example_sentence_english": "Can you explain that to me?", + "pos": "verb", + "word_frequency": 725 + }, + { + "word": "fête", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "party;celebration", + "example_sentence_native": "Nous allons à une fête ce soir.", + "example_sentence_english": "We are going to a party tonight.", + "pos": "noun", + "word_frequency": 726 + }, + { + "word": "maître", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "master;teacher", + "example_sentence_native": "Le maître a donné une leçon.", + "example_sentence_english": "The master gave a lesson.", + "pos": "noun", + "word_frequency": 727 + }, + { + "word": "personnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personal", + "example_sentence_native": "C'est une question personnelle.", + "example_sentence_english": "It's a personal question.", + "pos": "adjective", + "word_frequency": 728 + }, + { + "word": "preuve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proof;evidence", + "example_sentence_native": "Il n'y a pas de preuve.", + "example_sentence_english": "There is no proof.", + "pos": "noun", + "word_frequency": 729 + }, + { + "word": "prison", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prison", + "example_sentence_native": "Il a été envoyé en prison.", + "example_sentence_english": "He was sent to prison.", + "pos": "noun", + "word_frequency": 730 + }, + { + "word": "proposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to propose;to offer", + "example_sentence_native": "Je peux vous proposer une solution.", + "example_sentence_english": "I can offer you a solution.", + "pos": "verb", + "word_frequency": 731 + }, + { + "word": "vendredi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Friday", + "example_sentence_native": "Nous nous verrons vendredi.", + "example_sentence_english": "We will see each other on Friday.", + "pos": "noun", + "word_frequency": 732 + }, + { + "word": "éducation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education", + "example_sentence_native": "L'éducation est très importante.", + "example_sentence_english": "Education is very important.", + "pos": "noun", + "word_frequency": 733 + }, + { + "word": "adresse", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "address", + "example_sentence_native": "Quelle est votre adresse?", + "example_sentence_english": "What is your address?", + "pos": "noun", + "word_frequency": 734 + }, + { + "word": "apprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to learn", + "example_sentence_native": "J'apprends le français.", + "example_sentence_english": "I am learning French.", + "pos": "verb", + "word_frequency": 735 + }, + { + "word": "attaque", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attack", + "example_sentence_native": "L'attaque a été repoussée.", + "example_sentence_english": "The attack was repelled.", + "pos": "noun", + "word_frequency": 736 + }, + { + "word": "avance", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advance;lead", + "example_sentence_native": "Nous avons pris de l'avance.", + "example_sentence_english": "We took the lead.", + "pos": "noun", + "word_frequency": 737 + }, + { + "word": "court", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "short", + "example_sentence_native": "La robe est trop courte.", + "example_sentence_english": "The dress is too short.", + "pos": "adjective", + "word_frequency": 739 + }, + { + "word": "dos", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back (body part)", + "example_sentence_native": "J'ai mal au dos.", + "example_sentence_english": "My back hurts.", + "pos": "noun", + "word_frequency": 740 + }, + { + "word": "endroit", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place;spot", + "example_sentence_native": "C'est un bel endroit.", + "example_sentence_english": "It's a beautiful place.", + "pos": "noun", + "word_frequency": 741 + }, + { + "word": "essayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to try", + "example_sentence_native": "Je vais essayer de le faire.", + "example_sentence_english": "I will try to do it.", + "pos": "verb", + "word_frequency": 742 + }, + { + "word": "exactement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exactly", + "example_sentence_native": "C'est exactement ce que je pensais.", + "example_sentence_english": "That's exactly what I thought.", + "pos": "adverb", + "word_frequency": 743 + }, + { + "word": "grave", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serious;grave", + "example_sentence_native": "La situation est grave.", + "example_sentence_english": "The situation is serious.", + "pos": "adjective", + "word_frequency": 744 + }, + { + "word": "huit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eight", + "example_sentence_native": "Il est huit heures.", + "example_sentence_english": "It is eight o'clock.", + "pos": "numeral", + "word_frequency": 745 + }, + { + "word": "lumière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light", + "example_sentence_native": "Allume la lumière.", + "example_sentence_english": "Turn on the light.", + "pos": "noun", + "word_frequency": 746 + }, + { + "word": "média", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "media", + "example_sentence_native": "Les médias ont couvert l'événement.", + "example_sentence_english": "The media covered the event.", + "pos": "noun", + "word_frequency": 747 + }, + { + "word": "régime", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regime;diet", + "example_sentence_native": "Il suit un régime strict.", + "example_sentence_english": "He is following a strict diet.", + "pos": "noun", + "word_frequency": 748 + }, + { + "word": "toutefois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "however;nevertheless", + "example_sentence_native": "Il était fatigué, toutefois il a continué.", + "example_sentence_english": "He was tired, however he continued.", + "pos": "adverb", + "word_frequency": 749 + }, + { + "word": "arrière", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back;behind", + "example_sentence_native": "Regarde en arrière.", + "example_sentence_english": "Look back.", + "pos": "adverb", + "word_frequency": 750 + }, + { + "word": "commerce", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trade;commerce", + "example_sentence_native": "Le commerce international est complexe.", + "example_sentence_english": "International trade is complex.", + "pos": "noun", + "word_frequency": 751 + }, + { + "word": "complètement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely", + "example_sentence_native": "Il a complètement oublié.", + "example_sentence_english": "He completely forgot.", + "pos": "adverb", + "word_frequency": 752 + }, + { + "word": "habitant", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant;resident", + "example_sentence_native": "Les habitants de la ville sont accueillants.", + "example_sentence_english": "The inhabitants of the city are welcoming.", + "pos": "noun", + "word_frequency": 753 + }, + { + "word": "physique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical", + "example_sentence_native": "Il a une bonne condition physique.", + "example_sentence_english": "He has good physical condition.", + "pos": "adjective", + "word_frequency": 755 + }, + { + "word": "quartier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neighborhood;district", + "example_sentence_native": "J'habite dans ce quartier.", + "example_sentence_english": "I live in this neighborhood.", + "pos": "noun", + "word_frequency": 756 + }, + { + "word": "territoire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "territory", + "example_sentence_native": "C'est un vaste territoire.", + "example_sentence_english": "It's a vast territory.", + "pos": "noun", + "word_frequency": 757 + }, + { + "word": "unique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unique;sole", + "example_sentence_native": "C'est une opportunité unique.", + "example_sentence_english": "It's a unique opportunity.", + "pos": "adjective", + "word_frequency": 758 + }, + { + "word": "vente", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sale", + "example_sentence_native": "La maison est en vente.", + "example_sentence_english": "The house is for sale.", + "pos": "noun", + "word_frequency": 759 + }, + { + "word": "changement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "change", + "example_sentence_native": "Il y a eu un grand changement dans sa vie.", + "example_sentence_english": "There was a big change in his life.", + "pos": "noun", + "word_frequency": 761 + }, + { + "word": "concerner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concern", + "example_sentence_native": "Cette règle concerne tous les employés.", + "example_sentence_english": "This rule concerns all employees.", + "pos": "verb", + "word_frequency": 762 + }, + { + "word": "cul", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butt", + "example_sentence_native": "Il est tombé sur le cul.", + "example_sentence_english": "He fell on his butt.", + "pos": "noun", + "word_frequency": 763 + }, + { + "word": "européen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "European", + "example_sentence_native": "C'est un pays européen.", + "example_sentence_english": "It is a European country.", + "pos": "adjective", + "word_frequency": 764 + }, + { + "word": "lettre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "letter", + "example_sentence_native": "J'ai reçu une lettre de ma sœur.", + "example_sentence_english": "I received a letter from my sister.", + "pos": "noun", + "word_frequency": 766 + }, + { + "word": "parole", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "word", + "example_sentence_native": "Il a donné sa parole.", + "example_sentence_english": "He gave his word.", + "pos": "noun", + "word_frequency": 768 + }, + { + "word": "principe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "principle", + "example_sentence_native": "C'est un principe fondamental.", + "example_sentence_english": "It's a fundamental principle.", + "pos": "noun", + "word_frequency": 769 + }, + { + "word": "radio", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "radio", + "example_sentence_native": "J'écoute la radio tous les matins.", + "example_sentence_english": "I listen to the radio every morning.", + "pos": "noun", + "word_frequency": 770 + }, + { + "word": "relation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relation", + "example_sentence_native": "Ils ont une bonne relation.", + "example_sentence_english": "They have a good relationship.", + "pos": "noun", + "word_frequency": 771 + }, + { + "word": "règle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rule", + "example_sentence_native": "Il faut suivre les règles.", + "example_sentence_english": "You must follow the rules.", + "pos": "noun", + "word_frequency": 772 + }, + { + "word": "table", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "table", + "example_sentence_native": "Mets les livres sur la table.", + "example_sentence_english": "Put the books on the table.", + "pos": "noun", + "word_frequency": 773 + }, + { + "word": "valoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be worth", + "example_sentence_native": "Ce tableau vaut cher.", + "example_sentence_english": "This painting is worth a lot.", + "pos": "verb", + "word_frequency": 774 + }, + { + "word": "édition", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edition", + "example_sentence_native": "C'est la première édition de ce livre.", + "example_sentence_english": "It's the first edition of this book.", + "pos": "noun", + "word_frequency": 775 + }, + { + "word": "élection", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "election", + "example_sentence_native": "Les élections auront lieu en mai.", + "example_sentence_english": "The elections will take place in May.", + "pos": "noun", + "word_frequency": 776 + }, + { + "word": "analyse", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analysis", + "example_sentence_native": "Il a fait une analyse détaillée de la situation.", + "example_sentence_english": "He made a detailed analysis of the situation.", + "pos": "noun", + "word_frequency": 777 + }, + { + "word": "arrêté", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "order", + "example_sentence_native": "Un arrêté ministériel a été publié.", + "example_sentence_english": "A ministerial order has been published.", + "pos": "noun", + "word_frequency": 778 + }, + { + "word": "assurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assure", + "example_sentence_native": "Je peux vous assurer que c'est vrai.", + "example_sentence_english": "I can assure you that it's true.", + "pos": "verb", + "word_frequency": 779 + }, + { + "word": "carrière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "career", + "example_sentence_native": "Elle a une brillante carrière.", + "example_sentence_english": "She has a brilliant career.", + "pos": "noun", + "word_frequency": 780 + }, + { + "word": "commun", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "common", + "example_sentence_native": "C'est un problème commun.", + "example_sentence_english": "It's a common problem.", + "pos": "adjective", + "word_frequency": 782 + }, + { + "word": "couleur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "color", + "example_sentence_native": "Quelle est ta couleur préférée ?", + "example_sentence_english": "What is your favorite color?", + "pos": "noun", + "word_frequency": 783 + }, + { + "word": "durée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duration", + "example_sentence_native": "La durée du film est de deux heures.", + "example_sentence_english": "The duration of the film is two hours.", + "pos": "noun", + "word_frequency": 784 + }, + { + "word": "erreur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "error", + "example_sentence_native": "J'ai fait une erreur.", + "example_sentence_english": "I made a mistake.", + "pos": "noun", + "word_frequency": 785 + }, + { + "word": "espèce", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "species", + "example_sentence_native": "C'est une espèce rare.", + "example_sentence_english": "It's a rare species.", + "pos": "noun", + "word_frequency": 786 + }, + { + "word": "faible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weak", + "example_sentence_native": "Il est très faible après sa maladie.", + "example_sentence_english": "He is very weak after his illness.", + "pos": "adjective", + "word_frequency": 787 + }, + { + "word": "large", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wide", + "example_sentence_native": "La rivière est très large ici.", + "example_sentence_english": "The river is very wide here.", + "pos": "adjective", + "word_frequency": 789 + }, + { + "word": "lundi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Monday", + "example_sentence_native": "Je travaille du lundi au vendredi.", + "example_sentence_english": "I work from Monday to Friday.", + "pos": "noun", + "word_frequency": 790 + }, + { + "word": "ministère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ministry", + "example_sentence_native": "Il travaille au ministère de l'Éducation.", + "example_sentence_english": "He works at the Ministry of Education.", + "pos": "noun", + "word_frequency": 791 + }, + { + "word": "neuf", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nine", + "example_sentence_native": "J'ai neuf livres.", + "example_sentence_english": "I have nine books.", + "pos": "numeral", + "word_frequency": 793 + }, + { + "word": "objectif", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective", + "example_sentence_native": "Quel est votre objectif principal ?", + "example_sentence_english": "What is your main objective?", + "pos": "noun", + "word_frequency": 794 + }, + { + "word": "pro", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pro", + "example_sentence_native": "C'est un vrai pro dans son domaine.", + "example_sentence_english": "He's a real pro in his field.", + "pos": "noun", + "word_frequency": 795 + }, + { + "word": "probablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probably", + "example_sentence_native": "Il viendra probablement demain.", + "example_sentence_english": "He will probably come tomorrow.", + "pos": "adverb", + "word_frequency": 796 + }, + { + "word": "respect", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respect", + "example_sentence_native": "Il faut avoir du respect pour les autres.", + "example_sentence_english": "You must have respect for others.", + "pos": "noun", + "word_frequency": 797 + }, + { + "word": "responsable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "responsible", + "example_sentence_native": "Qui est responsable de ce projet ?", + "example_sentence_english": "Who is responsible for this project?", + "pos": "adjective", + "word_frequency": 798 + }, + { + "word": "secteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sector", + "example_sentence_native": "Il travaille dans le secteur de la technologie.", + "example_sentence_english": "He works in the technology sector.", + "pos": "noun", + "word_frequency": 799 + }, + { + "word": "soutien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support", + "example_sentence_native": "Il a besoin de soutien pour son projet.", + "example_sentence_english": "He needs support for his project.", + "pos": "noun", + "word_frequency": 800 + }, + { + "word": "tomber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to fall", + "example_sentence_native": "Il ne faut pas tomber.", + "example_sentence_english": "You must not fall.", + "pos": "verb", + "word_frequency": 802 + }, + { + "word": "vacance", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "holiday;vacation", + "example_sentence_native": "Nous partons en vacances la semaine prochaine.", + "example_sentence_english": "We are going on holiday next week.", + "pos": "noun", + "word_frequency": 803 + }, + { + "word": "concours", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition;contest", + "example_sentence_native": "Il a gagné le concours de chant.", + "example_sentence_english": "He won the singing competition.", + "pos": "noun", + "word_frequency": 806 + }, + { + "word": "couple", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "couple", + "example_sentence_native": "Le jeune couple s'est marié.", + "example_sentence_english": "The young couple got married.", + "pos": "noun", + "word_frequency": 807 + }, + { + "word": "course", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "race;run;shopping", + "example_sentence_native": "Je dois faire les courses.", + "example_sentence_english": "I need to do the shopping.", + "pos": "noun", + "word_frequency": 808 + }, + { + "word": "différence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difference", + "example_sentence_native": "Quelle est la différence entre les deux?", + "example_sentence_english": "What is the difference between the two?", + "pos": "noun", + "word_frequency": 809 + }, + { + "word": "décider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to decide", + "example_sentence_native": "Il est difficile de décider.", + "example_sentence_english": "It is difficult to decide.", + "pos": "verb", + "word_frequency": 810 + }, + { + "word": "fou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crazy;mad", + "example_sentence_native": "C'est une idée folle.", + "example_sentence_english": "It's a crazy idea.", + "pos": "adjective", + "word_frequency": 811 + }, + { + "word": "gestion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "example_sentence_native": "La gestion de projet est complexe.", + "example_sentence_english": "Project management is complex.", + "pos": "noun", + "word_frequency": 812 + }, + { + "word": "juge", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judge", + "example_sentence_native": "Le juge a rendu son verdict.", + "example_sentence_english": "The judge delivered his verdict.", + "pos": "noun", + "word_frequency": 813 + }, + { + "word": "mètre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meter", + "example_sentence_native": "Le tissu mesure deux mètres.", + "example_sentence_english": "The fabric measures two meters.", + "pos": "noun", + "word_frequency": 815 + }, + { + "word": "normal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normal", + "example_sentence_native": "C'est tout à fait normal.", + "example_sentence_english": "That's completely normal.", + "pos": "adjective", + "word_frequency": 816 + }, + { + "word": "ouverture", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening", + "example_sentence_native": "L'ouverture du magasin est à 9h.", + "example_sentence_english": "The store's opening is at 9 AM.", + "pos": "noun", + "word_frequency": 817 + }, + { + "word": "poids", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weight", + "example_sentence_native": "Quel est le poids de cette valise?", + "example_sentence_english": "What is the weight of this suitcase?", + "pos": "noun", + "word_frequency": 818 + }, + { + "word": "réussir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to succeed;pass", + "example_sentence_native": "J'espère réussir mon examen.", + "example_sentence_english": "I hope to pass my exam.", + "pos": "verb", + "word_frequency": 819 + }, + { + "word": "servir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to serve;be useful", + "example_sentence_native": "Ce couteau sert à couper le pain.", + "example_sentence_english": "This knife is used to cut bread.", + "pos": "verb", + "word_frequency": 820 + }, + { + "word": "suivant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "next;following", + "example_sentence_native": "La prochaine étape est la suivante.", + "example_sentence_english": "The next step is the following one.", + "pos": "adjective", + "word_frequency": 821 + }, + { + "word": "taille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "size;height;waist", + "example_sentence_native": "Quelle est votre taille de vêtements?", + "example_sentence_english": "What is your clothing size?", + "pos": "noun", + "word_frequency": 822 + }, + { + "word": "village", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "village", + "example_sentence_native": "Nous vivons dans un petit village.", + "example_sentence_english": "We live in a small village.", + "pos": "noun", + "word_frequency": 823 + }, + { + "word": "visite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visit", + "example_sentence_native": "J'ai rendu visite à mes parents.", + "example_sentence_english": "I visited my parents.", + "pos": "noun", + "word_frequency": 824 + }, + { + "word": "absolument", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolutely", + "example_sentence_native": "C'est absolument nécessaire.", + "example_sentence_english": "It's absolutely necessary.", + "pos": "adverb", + "word_frequency": 825 + }, + { + "word": "bref", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brief;short", + "example_sentence_native": "En bref, c'est une bonne idée.", + "example_sentence_english": "In short, it's a good idea.", + "pos": "adjective", + "word_frequency": 826 + }, + { + "word": "ciel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sky;heaven", + "example_sentence_native": "Le ciel est bleu aujourd'hui.", + "example_sentence_english": "The sky is blue today.", + "pos": "noun", + "word_frequency": 827 + }, + { + "word": "clair", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clear;light", + "example_sentence_native": "L'eau est très claire.", + "example_sentence_english": "The water is very clear.", + "pos": "adjective", + "word_frequency": 828 + }, + { + "word": "combat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fight;combat", + "example_sentence_native": "Le combat a été intense.", + "example_sentence_english": "The fight was intense.", + "pos": "noun", + "word_frequency": 829 + }, + { + "word": "comité", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "committee", + "example_sentence_native": "Le comité se réunira demain.", + "example_sentence_english": "The committee will meet tomorrow.", + "pos": "noun", + "word_frequency": 830 + }, + { + "word": "mémoire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory;memoir", + "example_sentence_native": "J'ai une bonne mémoire.", + "example_sentence_english": "I have a good memory.", + "pos": "noun", + "word_frequency": 832 + }, + { + "word": "ouvert", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "open", + "example_sentence_native": "La porte est ouverte.", + "example_sentence_english": "The door is open.", + "pos": "adjective", + "word_frequency": 833 + }, + { + "word": "protection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protection", + "example_sentence_native": "Il a besoin de protection.", + "example_sentence_english": "He needs protection.", + "pos": "noun", + "word_frequency": 834 + }, + { + "word": "revenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to come back;return", + "example_sentence_native": "Je dois revenir demain.", + "example_sentence_english": "I have to come back tomorrow.", + "pos": "verb", + "word_frequency": 835 + }, + { + "word": "signe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sign;signal", + "example_sentence_native": "C'est un bon signe.", + "example_sentence_english": "It's a good sign.", + "pos": "noun", + "word_frequency": 836 + }, + { + "word": "suisse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Swiss", + "example_sentence_native": "J'aime le chocolat suisse.", + "example_sentence_english": "I like Swiss chocolate.", + "pos": "adjective", + "word_frequency": 837 + }, + { + "word": "tenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hold;keep", + "example_sentence_native": "Tiens ma main.", + "example_sentence_english": "Hold my hand.", + "pos": "verb", + "word_frequency": 838 + }, + { + "word": "album", + "article_with_word": "l'album", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "album", + "example_sentence_native": "J'ai trouvé un vieil album de photos dans le grenier.", + "example_sentence_english": "I found an old photo album in the attic.", + "pos": "noun", + "word_frequency": 840 + }, + { + "word": "anti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-;against", + "example_sentence_native": "C'est un mouvement anti-guerre.", + "example_sentence_english": "It's an anti-war movement.", + "pos": "adjective", + "word_frequency": 841 + }, + { + "word": "cinéma", + "article_with_word": "le cinéma", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cinema;movie theater", + "example_sentence_native": "Nous allons au cinéma ce soir.", + "example_sentence_english": "We are going to the cinema tonight.", + "pos": "noun", + "word_frequency": 843 + }, + { + "word": "crise", + "article_with_word": "la crise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crisis", + "example_sentence_native": "Le pays traverse une crise économique.", + "example_sentence_english": "The country is going through an economic crisis.", + "pos": "noun", + "word_frequency": 844 + }, + { + "word": "garder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to keep;to guard", + "example_sentence_native": "Je dois garder mon calme.", + "example_sentence_english": "I must keep calm.", + "pos": "verb", + "word_frequency": 847 + }, + { + "word": "généralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generally;usually", + "example_sentence_native": "Il se lève généralement tôt.", + "example_sentence_english": "He generally gets up early.", + "pos": "adverb", + "word_frequency": 848 + }, + { + "word": "historique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "historical", + "example_sentence_native": "C'est un événement historique.", + "example_sentence_english": "It's a historical event.", + "pos": "adjective", + "word_frequency": 849 + }, + { + "word": "industrie", + "article_with_word": "l'industrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industry", + "example_sentence_native": "L'industrie automobile est importante ici.", + "example_sentence_english": "The automotive industry is important here.", + "pos": "noun", + "word_frequency": 850 + }, + { + "word": "maladie", + "article_with_word": "la maladie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illness;disease", + "example_sentence_native": "Il a contracté une maladie rare.", + "example_sentence_english": "He contracted a rare disease.", + "pos": "noun", + "word_frequency": 851 + }, + { + "word": "militaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military", + "example_sentence_native": "Il a une carrière militaire.", + "example_sentence_english": "He has a military career.", + "pos": "adjective", + "word_frequency": 852 + }, + { + "word": "mondial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "global;worldwide", + "example_sentence_native": "C'est un problème mondial.", + "example_sentence_english": "It's a global problem.", + "pos": "adjective", + "word_frequency": 853 + }, + { + "word": "médecin", + "article_with_word": "le médecin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor", + "example_sentence_native": "J'ai rendez-vous chez le médecin.", + "example_sentence_english": "I have an appointment with the doctor.", + "pos": "noun", + "word_frequency": 854 + }, + { + "word": "vote", + "article_with_word": "le vote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vote", + "example_sentence_native": "Le vote est un droit important.", + "example_sentence_english": "The vote is an important right.", + "pos": "noun", + "word_frequency": 858 + }, + { + "word": "écoute", + "article_with_word": "l'écoute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listening;hearing", + "example_sentence_native": "L'écoute active est essentielle pour communiquer.", + "example_sentence_english": "Active listening is essential for communication.", + "pos": "noun", + "word_frequency": 859 + }, + { + "word": "île", + "article_with_word": "l'île", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "island", + "example_sentence_native": "Nous avons visité une belle île.", + "example_sentence_english": "We visited a beautiful island.", + "pos": "noun", + "word_frequency": 860 + }, + { + "word": "animal", + "article_with_word": "l'animal", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "animal", + "example_sentence_native": "Mon animal préféré est le chat.", + "example_sentence_english": "My favorite animal is the cat.", + "pos": "noun", + "word_frequency": 861 + }, + { + "word": "application", + "article_with_word": "l'application", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application;app", + "example_sentence_native": "J'ai téléchargé une nouvelle application sur mon téléphone.", + "example_sentence_english": "I downloaded a new application on my phone.", + "pos": "noun", + "word_frequency": 862 + }, + { + "word": "banque", + "article_with_word": "la banque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bank", + "example_sentence_native": "Je dois aller à la banque.", + "example_sentence_english": "I need to go to the bank.", + "pos": "noun", + "word_frequency": 863 + }, + { + "word": "chanson", + "article_with_word": "la chanson", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "song", + "example_sentence_native": "J'aime cette chanson.", + "example_sentence_english": "I like this song.", + "pos": "noun", + "word_frequency": 864 + }, + { + "word": "département", + "article_with_word": "le département", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "department;county", + "example_sentence_native": "Il travaille dans le département des ventes.", + "example_sentence_english": "He works in the sales department.", + "pos": "noun", + "word_frequency": 865 + }, + { + "word": "environnement", + "article_with_word": "l'environnement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environment", + "example_sentence_native": "Nous devons protéger l'environnement.", + "example_sentence_english": "We must protect the environment.", + "pos": "noun", + "word_frequency": 866 + }, + { + "word": "ferme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm;strong", + "example_sentence_native": "Il a une poignée de main ferme.", + "example_sentence_english": "He has a firm handshake.", + "pos": "adjective", + "word_frequency": 867 + }, + { + "word": "maire", + "article_with_word": "le maire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mayor", + "example_sentence_native": "Le maire a annoncé de nouvelles mesures.", + "example_sentence_english": "The mayor announced new measures.", + "pos": "noun", + "word_frequency": 869 + }, + { + "word": "opération", + "article_with_word": "l'opération", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operation", + "example_sentence_native": "Elle a subi une opération chirurgicale.", + "example_sentence_english": "She underwent a surgical operation.", + "pos": "noun", + "word_frequency": 870 + }, + { + "word": "parc", + "article_with_word": "le parc", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "park", + "example_sentence_native": "Nous allons nous promener au parc.", + "example_sentence_english": "We are going for a walk in the park.", + "pos": "noun", + "word_frequency": 871 + }, + { + "word": "pose", + "article_with_word": "la pose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pose;installation;break", + "example_sentence_native": "Le mannequin a pris une pose élégante.", + "example_sentence_english": "The model struck an elegant pose.", + "pos": "noun", + "word_frequency": 872 + }, + { + "word": "seigneur", + "article_with_word": "le seigneur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lord;master", + "example_sentence_native": "Le seigneur du château était très puissant.", + "example_sentence_english": "The lord of the castle was very powerful.", + "pos": "noun", + "word_frequency": 873 + }, + { + "word": "traitement", + "article_with_word": "le traitement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treatment;processing", + "example_sentence_native": "Le patient suit un nouveau traitement.", + "example_sentence_english": "The patient is following a new treatment.", + "pos": "noun", + "word_frequency": 874 + }, + { + "word": "visage", + "article_with_word": "le visage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "face", + "example_sentence_native": "Elle a un beau visage.", + "example_sentence_english": "She has a beautiful face.", + "pos": "noun", + "word_frequency": 875 + }, + { + "word": "véritable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "true;real;genuine", + "example_sentence_native": "C'est une véritable œuvre d'art.", + "example_sentence_english": "It's a true work of art.", + "pos": "adjective", + "word_frequency": 876 + }, + { + "word": "avion", + "article_with_word": "l'avion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "airplane", + "example_sentence_native": "L'avion décolle à 10 heures.", + "example_sentence_english": "The airplane takes off at 10 AM.", + "pos": "noun", + "word_frequency": 877 + }, + { + "word": "calme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calm;quiet", + "example_sentence_native": "Restez calme, tout va bien.", + "example_sentence_english": "Stay calm, everything is fine.", + "pos": "adjective", + "word_frequency": 878 + }, + { + "word": "chien", + "article_with_word": "le chien", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dog", + "example_sentence_native": "J'ai un chien noir.", + "example_sentence_english": "I have a black dog.", + "pos": "noun", + "word_frequency": 879 + }, + { + "word": "cool", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cool", + "example_sentence_native": "C'est une idée cool.", + "example_sentence_english": "It's a cool idea.", + "pos": "adjective", + "word_frequency": 880 + }, + { + "word": "enquête", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "survey;inquiry;investigation", + "example_sentence_native": "La police a ouvert une enquête.", + "example_sentence_english": "The police opened an investigation.", + "pos": "noun", + "word_frequency": 882 + }, + { + "word": "envoyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send", + "example_sentence_native": "Je vais t'envoyer un email.", + "example_sentence_english": "I will send you an email.", + "pos": "verb", + "word_frequency": 883 + }, + { + "word": "ligue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "league", + "example_sentence_native": "Il joue dans la ligue de football.", + "example_sentence_english": "He plays in the football league.", + "pos": "noun", + "word_frequency": 886 + }, + { + "word": "limite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limit;boundary", + "example_sentence_native": "Il y a une limite de vitesse ici.", + "example_sentence_english": "There is a speed limit here.", + "pos": "noun", + "word_frequency": 887 + }, + { + "word": "parfait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfect", + "example_sentence_native": "C'est une solution parfaite.", + "example_sentence_english": "It's a perfect solution.", + "pos": "adjective", + "word_frequency": 888 + }, + { + "word": "port", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "port;harbor", + "example_sentence_native": "Le bateau est arrivé au port.", + "example_sentence_english": "The boat arrived at the port.", + "pos": "noun", + "word_frequency": 889 + }, + { + "word": "professeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "professor;teacher", + "example_sentence_native": "Mon professeur est très gentil.", + "example_sentence_english": "My teacher is very kind.", + "pos": "noun", + "word_frequency": 890 + }, + { + "word": "transport", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "transport;transportation", + "example_sentence_native": "Les transports en commun sont efficaces.", + "example_sentence_english": "Public transport is efficient.", + "pos": "noun", + "word_frequency": 891 + }, + { + "word": "vitesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed", + "example_sentence_native": "La voiture roulait à grande vitesse.", + "example_sentence_english": "The car was driving at high speed.", + "pos": "noun", + "word_frequency": 892 + }, + { + "word": "étranger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foreign;strange", + "example_sentence_native": "C'est un pays étranger.", + "example_sentence_english": "It's a foreign country.", + "pos": "adjective", + "word_frequency": 893 + }, + { + "word": "cheveu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hair (strand of)", + "example_sentence_native": "Elle a de longs cheveux blonds.", + "example_sentence_english": "She has long blonde hair.", + "pos": "noun", + "word_frequency": 895 + }, + { + "word": "dollar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dollar", + "example_sentence_native": "Ça coûte dix dollars.", + "example_sentence_english": "It costs ten dollars.", + "pos": "noun", + "word_frequency": 896 + }, + { + "word": "dossier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "file;folder;record", + "example_sentence_native": "J'ai mis les documents dans le dossier.", + "example_sentence_english": "I put the documents in the folder.", + "pos": "noun", + "word_frequency": 897 + }, + { + "word": "hiver", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "winter", + "example_sentence_native": "J'aime skier en hiver.", + "example_sentence_english": "I like to ski in winter.", + "pos": "noun", + "word_frequency": 898 + }, + { + "word": "hôpital", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hospital", + "example_sentence_native": "Il a été transporté à l'hôpital.", + "example_sentence_english": "He was transported to the hospital.", + "pos": "noun", + "word_frequency": 899 + }, + { + "word": "importance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "importance", + "example_sentence_native": "C'est d'une grande importance.", + "example_sentence_english": "It is of great importance.", + "pos": "noun", + "word_frequency": 900 + }, + { + "word": "lutte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "struggle;fight;wrestling", + "example_sentence_native": "La lutte contre la pauvreté continue.", + "example_sentence_english": "The fight against poverty continues.", + "pos": "noun", + "word_frequency": 901 + }, + { + "word": "marine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navy;marine", + "example_sentence_native": "Il a servi dans la marine.", + "example_sentence_english": "He served in the navy.", + "pos": "noun", + "word_frequency": 902 + }, + { + "word": "ouvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to open", + "example_sentence_native": "Peux-tu ouvrir la porte?", + "example_sentence_english": "Can you open the door?", + "pos": "verb", + "word_frequency": 903 + }, + { + "word": "pression", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressure", + "example_sentence_native": "Il y a beaucoup de pression au travail.", + "example_sentence_english": "There is a lot of pressure at work.", + "pos": "noun", + "word_frequency": 904 + }, + { + "word": "puissance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "power;strength", + "example_sentence_native": "La puissance du moteur est impressionnante.", + "example_sentence_english": "The engine's power is impressive.", + "pos": "noun", + "word_frequency": 905 + }, + { + "word": "religion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religion", + "example_sentence_native": "La liberté de religion est un droit fondamental.", + "example_sentence_english": "Freedom of religion is a fundamental right.", + "pos": "noun", + "word_frequency": 906 + }, + { + "word": "stade", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stadium;stage (of development)", + "example_sentence_native": "Le concert aura lieu au stade.", + "example_sentence_english": "The concert will take place at the stadium.", + "pos": "noun", + "word_frequency": 908 + }, + { + "word": "théâtre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "theater", + "example_sentence_native": "Nous allons au théâtre ce soir.", + "example_sentence_english": "We are going to the theater tonight.", + "pos": "noun", + "word_frequency": 909 + }, + { + "word": "volonté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will;willpower", + "example_sentence_native": "Il a une forte volonté de réussir.", + "example_sentence_english": "He has a strong will to succeed.", + "pos": "noun", + "word_frequency": 910 + }, + { + "word": "élève", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student;pupil", + "example_sentence_native": "L'élève a bien travaillé.", + "example_sentence_english": "The student worked well.", + "pos": "noun", + "word_frequency": 911 + }, + { + "word": "évolution", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolution;development", + "example_sentence_native": "L'évolution de la technologie est rapide.", + "example_sentence_english": "The evolution of technology is rapid.", + "pos": "noun", + "word_frequency": 912 + }, + { + "word": "adorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to adore;to love", + "example_sentence_native": "J'adore le chocolat.", + "example_sentence_english": "I love chocolate.", + "pos": "verb", + "word_frequency": 913 + }, + { + "word": "camp", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camp", + "example_sentence_native": "Nous avons monté le camp près de la rivière.", + "example_sentence_english": "We set up camp near the river.", + "pos": "noun", + "word_frequency": 915 + }, + { + "word": "drôle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "funny;strange", + "example_sentence_native": "C'est une histoire drôle.", + "example_sentence_english": "It's a funny story.", + "pos": "adjective", + "word_frequency": 916 + }, + { + "word": "débat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debate", + "example_sentence_native": "Le débat a duré des heures.", + "example_sentence_english": "The debate lasted for hours.", + "pos": "noun", + "word_frequency": 917 + }, + { + "word": "oublier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to forget", + "example_sentence_native": "J'ai oublié mes clés.", + "example_sentence_english": "I forgot my keys.", + "pos": "verb", + "word_frequency": 919 + }, + { + "word": "pauvre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "poor", + "example_sentence_native": "Il est très pauvre.", + "example_sentence_english": "He is very poor.", + "pos": "adjective", + "word_frequency": 920 + }, + { + "word": "regard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaze;look", + "example_sentence_native": "Son regard était intense.", + "example_sentence_english": "His gaze was intense.", + "pos": "noun", + "word_frequency": 921 + }, + { + "word": "représenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to represent", + "example_sentence_native": "Ce symbole représente la paix.", + "example_sentence_english": "This symbol represents peace.", + "pos": "verb", + "word_frequency": 922 + }, + { + "word": "rêve", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dream", + "example_sentence_native": "J'ai fait un beau rêve cette nuit.", + "example_sentence_english": "I had a beautiful dream last night.", + "pos": "noun", + "word_frequency": 923 + }, + { + "word": "science", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "science", + "example_sentence_native": "La science est essentielle pour le progrès.", + "example_sentence_english": "Science is essential for progress.", + "pos": "noun", + "word_frequency": 924 + }, + { + "word": "souhaiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wish", + "example_sentence_native": "Je vous souhaite une bonne journée.", + "example_sentence_english": "I wish you a good day.", + "pos": "verb", + "word_frequency": 925 + }, + { + "word": "toucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to touch", + "example_sentence_native": "Ne touche pas à ça!", + "example_sentence_english": "Don't touch that!", + "pos": "verb", + "word_frequency": 926 + }, + { + "word": "utilisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "use;utilization", + "example_sentence_native": "L'utilisation de ce logiciel est simple.", + "example_sentence_english": "The use of this software is simple.", + "pos": "noun", + "word_frequency": 927 + }, + { + "word": "étudiant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student", + "example_sentence_native": "Il est un étudiant en médecine.", + "example_sentence_english": "He is a medical student.", + "pos": "noun", + "word_frequency": 928 + }, + { + "word": "absence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absence", + "example_sentence_native": "Son absence a été remarquée.", + "example_sentence_english": "His absence was noticed.", + "pos": "noun", + "word_frequency": 929 + }, + { + "word": "capable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capable", + "example_sentence_native": "Il est capable de grandes choses.", + "example_sentence_english": "He is capable of great things.", + "pos": "adjective", + "word_frequency": 932 + }, + { + "word": "cité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city;town", + "example_sentence_native": "C'est une ancienne cité romaine.", + "example_sentence_english": "It's an ancient Roman city.", + "pos": "noun", + "word_frequency": 933 + }, + { + "word": "client", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "client;customer", + "example_sentence_native": "Le client est toujours roi.", + "example_sentence_english": "The customer is always king.", + "pos": "noun", + "word_frequency": 934 + }, + { + "word": "connaissance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knowledge;acquaintance", + "example_sentence_native": "Il a une grande connaissance de l'histoire.", + "example_sentence_english": "He has a great knowledge of history.", + "pos": "noun", + "word_frequency": 935 + }, + { + "word": "habitude", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "habit", + "example_sentence_native": "J'ai l'habitude de me lever tôt.", + "example_sentence_english": "I have the habit of getting up early.", + "pos": "noun", + "word_frequency": 938 + }, + { + "word": "poser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put;to ask (a question)", + "example_sentence_native": "Peux-tu poser le livre sur la table?", + "example_sentence_english": "Can you put the book on the table?", + "pos": "verb", + "word_frequency": 940 + }, + { + "word": "principal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main;principal", + "example_sentence_native": "C'est la raison principale.", + "example_sentence_english": "This is the main reason.", + "pos": "adjective", + "word_frequency": 941 + }, + { + "word": "royaume", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kingdom", + "example_sentence_native": "Le Royaume-Uni est une monarchie.", + "example_sentence_english": "The United Kingdom is a monarchy.", + "pos": "noun", + "word_frequency": 942 + }, + { + "word": "russe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Russian", + "example_sentence_native": "Il parle russe couramment.", + "example_sentence_english": "He speaks Russian fluently.", + "pos": "adjective", + "word_frequency": 943 + }, + { + "word": "référence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference", + "example_sentence_native": "J'ai besoin d'une référence pour ce travail.", + "example_sentence_english": "I need a reference for this job.", + "pos": "noun", + "word_frequency": 944 + }, + { + "word": "secret", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secret", + "example_sentence_native": "Garde ce secret pour toi.", + "example_sentence_english": "Keep this secret to yourself.", + "pos": "noun", + "word_frequency": 945 + }, + { + "word": "top", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top;excellent", + "example_sentence_native": "Ce film est vraiment top!", + "example_sentence_english": "This movie is really top-notch!", + "pos": "adjective", + "word_frequency": 946 + }, + { + "word": "totalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "totally", + "example_sentence_native": "Je suis totalement d'accord.", + "example_sentence_english": "I totally agree.", + "pos": "adverb", + "word_frequency": 947 + }, + { + "word": "usage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "usage;use", + "example_sentence_native": "L'usage de ce mot est rare.", + "example_sentence_english": "The usage of this word is rare.", + "pos": "noun", + "word_frequency": 948 + }, + { + "word": "émission", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broadcast;show", + "example_sentence_native": "J'ai regardé une émission intéressante hier soir.", + "example_sentence_english": "I watched an interesting show last night.", + "pos": "noun", + "word_frequency": 950 + }, + { + "word": "chaîne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chain;channel", + "example_sentence_native": "Quelle chaîne regardes-tu?", + "example_sentence_english": "Which channel are you watching?", + "pos": "noun", + "word_frequency": 951 + }, + { + "word": "chinois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Chinese", + "example_sentence_native": "J'aime la cuisine chinoise.", + "example_sentence_english": "I like Chinese cuisine.", + "pos": "adjective", + "word_frequency": 952 + }, + { + "word": "classique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classic", + "example_sentence_native": "C'est un exemple classique.", + "example_sentence_english": "It's a classic example.", + "pos": "adjective", + "word_frequency": 953 + }, + { + "word": "contact", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contact", + "example_sentence_native": "Gardons le contact.", + "example_sentence_english": "Let's keep in touch.", + "pos": "noun", + "word_frequency": 954 + }, + { + "word": "dame", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lady", + "example_sentence_native": "Une dame âgée m'a aidé.", + "example_sentence_english": "An elderly lady helped me.", + "pos": "noun", + "word_frequency": 955 + }, + { + "word": "direct", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "direct", + "example_sentence_native": "Il a un style direct.", + "example_sentence_english": "He has a direct style.", + "pos": "adjective", + "word_frequency": 956 + }, + { + "word": "divers", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "various;diverse", + "example_sentence_native": "Nous avons discuté de divers sujets.", + "example_sentence_english": "We discussed various topics.", + "pos": "adjective", + "word_frequency": 957 + }, + { + "word": "expression", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expression", + "example_sentence_native": "Son expression était claire.", + "example_sentence_english": "His expression was clear.", + "pos": "noun", + "word_frequency": 959 + }, + { + "word": "facilement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "easily", + "example_sentence_native": "Il a résolu le problème facilement.", + "example_sentence_english": "He solved the problem easily.", + "pos": "adverb", + "word_frequency": 960 + }, + { + "word": "fer", + "article_with_word": "le fer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iron", + "example_sentence_native": "Le fer est un métal très résistant.", + "example_sentence_english": "Iron is a very strong metal.", + "pos": "noun", + "word_frequency": 961 + }, + { + "word": "fil", + "article_with_word": "le fil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thread;wire", + "example_sentence_native": "J'ai besoin d'un fil pour coudre ce bouton.", + "example_sentence_english": "I need a thread to sew this button.", + "pos": "noun", + "word_frequency": 962 + }, + { + "word": "froid", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cold", + "example_sentence_native": "Il fait très froid aujourd'hui.", + "example_sentence_english": "It is very cold today.", + "pos": "adjective", + "word_frequency": 963 + }, + { + "word": "futur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "future", + "example_sentence_native": "Nous devons penser aux générations futures.", + "example_sentence_english": "We must think about future generations.", + "pos": "adjective", + "word_frequency": 964 + }, + { + "word": "gaz", + "article_with_word": "le gaz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gas", + "example_sentence_native": "Le gaz naturel est une source d'énergie.", + "example_sentence_english": "Natural gas is an energy source.", + "pos": "noun", + "word_frequency": 965 + }, + { + "word": "malade", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sick;ill", + "example_sentence_native": "Je me sens un peu malade aujourd'hui.", + "example_sentence_english": "I feel a little sick today.", + "pos": "adjective", + "word_frequency": 966 + }, + { + "word": "pareil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar;same", + "example_sentence_native": "Ils ont le même avis, c'est pareil.", + "example_sentence_english": "They have the same opinion, it's similar.", + "pos": "adjective", + "word_frequency": 967 + }, + { + "word": "privé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private", + "example_sentence_native": "C'est une propriété privée, l'accès est interdit.", + "example_sentence_english": "This is private property, access is forbidden.", + "pos": "adjective", + "word_frequency": 968 + }, + { + "word": "procès", + "article_with_word": "le procès", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trial;lawsuit", + "example_sentence_native": "Le procès a duré plusieurs semaines.", + "example_sentence_english": "The trial lasted several weeks.", + "pos": "noun", + "word_frequency": 969 + }, + { + "word": "rapide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fast;quick", + "example_sentence_native": "C'est une voiture très rapide.", + "example_sentence_english": "It's a very fast car.", + "pos": "adjective", + "word_frequency": 970 + }, + { + "word": "réunion", + "article_with_word": "la réunion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meeting", + "example_sentence_native": "Nous avons une réunion importante demain matin.", + "example_sentence_english": "We have an important meeting tomorrow morning.", + "pos": "noun", + "word_frequency": 971 + }, + { + "word": "révolution", + "article_with_word": "la révolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolution", + "example_sentence_native": "La Révolution française a changé l'histoire.", + "example_sentence_english": "The French Revolution changed history.", + "pos": "noun", + "word_frequency": 972 + }, + { + "word": "tableau", + "article_with_word": "le tableau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "board;painting;table (data)", + "example_sentence_native": "Le professeur a écrit au tableau.", + "example_sentence_english": "The teacher wrote on the board.", + "pos": "noun", + "word_frequency": 973 + }, + { + "word": "tendance", + "article_with_word": "la tendance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trend;tendency", + "example_sentence_native": "La mode actuelle suit une nouvelle tendance.", + "example_sentence_english": "Current fashion follows a new trend.", + "pos": "noun", + "word_frequency": 974 + }, + { + "word": "vingt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty", + "example_sentence_native": "J'ai vingt ans.", + "example_sentence_english": "I am twenty years old.", + "pos": "numeral", + "word_frequency": 975 + }, + { + "word": "atteindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reach;to attain", + "example_sentence_native": "Il veut atteindre ses objectifs.", + "example_sentence_english": "He wants to reach his goals.", + "pos": "verb", + "word_frequency": 976 + }, + { + "word": "boulot", + "article_with_word": "le boulot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job;work (informal)", + "example_sentence_native": "J'ai beaucoup de boulot cette semaine.", + "example_sentence_english": "I have a lot of work this week.", + "pos": "noun", + "word_frequency": 977 + }, + { + "word": "bébé", + "article_with_word": "le bébé", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baby", + "example_sentence_native": "Le bébé dort paisiblement.", + "example_sentence_english": "The baby is sleeping peacefully.", + "pos": "noun", + "word_frequency": 978 + }, + { + "word": "choisir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to choose", + "example_sentence_native": "Tu dois choisir ta couleur préférée.", + "example_sentence_english": "You must choose your favorite color.", + "pos": "verb", + "word_frequency": 979 + }, + { + "word": "communication", + "article_with_word": "la communication", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communication", + "example_sentence_native": "La communication est essentielle dans une équipe.", + "example_sentence_english": "Communication is essential in a team.", + "pos": "noun", + "word_frequency": 980 + }, + { + "word": "côte", + "article_with_word": "la côte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coast;rib;slope", + "example_sentence_native": "Nous avons passé nos vacances sur la côte.", + "example_sentence_english": "We spent our holidays on the coast.", + "pos": "noun", + "word_frequency": 981 + }, + { + "word": "goût", + "article_with_word": "le goût", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taste;flavor", + "example_sentence_native": "J'aime le goût de ce chocolat.", + "example_sentence_english": "I like the taste of this chocolate.", + "pos": "noun", + "word_frequency": 982 + }, + { + "word": "humain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "human", + "example_sentence_native": "Les droits humains sont universels.", + "example_sentence_english": "Human rights are universal.", + "pos": "adjective", + "word_frequency": 983 + }, + { + "word": "madame", + "article_with_word": "Madame", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Madam;Mrs.", + "example_sentence_native": "Bonjour Madame, comment allez-vous?", + "example_sentence_english": "Hello Madam, how are you?", + "pos": "noun", + "word_frequency": 985 + }, + { + "word": "parlement", + "article_with_word": "le parlement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliament", + "example_sentence_native": "Le parlement a voté une nouvelle loi.", + "example_sentence_english": "The parliament voted a new law.", + "pos": "noun", + "word_frequency": 986 + }, + { + "word": "peau", + "article_with_word": "la peau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skin", + "example_sentence_native": "Protégez votre peau du soleil.", + "example_sentence_english": "Protect your skin from the sun.", + "pos": "noun", + "word_frequency": 987 + }, + { + "word": "surface", + "article_with_word": "la surface", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surface", + "example_sentence_native": "La surface de la table est lisse.", + "example_sentence_english": "The surface of the table is smooth.", + "pos": "noun", + "word_frequency": 988 + }, + { + "word": "uniquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "only;solely", + "example_sentence_native": "Ce service est uniquement disponible en ligne.", + "example_sentence_english": "This service is only available online.", + "pos": "adverb", + "word_frequency": 989 + }, + { + "word": "vendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sell", + "example_sentence_native": "Il veut vendre sa voiture.", + "example_sentence_english": "He wants to sell his car.", + "pos": "verb", + "word_frequency": 990 + }, + { + "word": "victime", + "article_with_word": "la victime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victim", + "example_sentence_native": "La victime a été secourue rapidement.", + "example_sentence_english": "The victim was rescued quickly.", + "pos": "noun", + "word_frequency": 991 + }, + { + "word": "épisode", + "article_with_word": "l'épisode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "episode", + "example_sentence_native": "J'ai regardé le dernier épisode de ma série préférée.", + "example_sentence_english": "I watched the last episode of my favorite series.", + "pos": "noun", + "word_frequency": 992 + }, + { + "word": "évidemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obviously;evidently", + "example_sentence_native": "Évidemment, il a réussi son examen.", + "example_sentence_english": "Obviously, he passed his exam.", + "pos": "adverb", + "word_frequency": 993 + }, + { + "word": "allemand", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "German", + "example_sentence_native": "Il parle allemand couramment.", + "example_sentence_english": "He speaks German fluently.", + "pos": "adjective", + "word_frequency": 994 + }, + { + "word": "arrêt", + "article_with_word": "l'arrêt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stop;arrest;decree", + "example_sentence_native": "Le bus fait un arrêt à chaque coin de rue.", + "example_sentence_english": "The bus makes a stop at every street corner.", + "pos": "noun", + "word_frequency": 995 + }, + { + "word": "avocat", + "article_with_word": "l'avocat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lawyer;avocado", + "example_sentence_native": "Mon avocat m'a conseillé.", + "example_sentence_english": "My lawyer advised me.", + "pos": "noun", + "word_frequency": 996 + }, + { + "word": "bonheur", + "article_with_word": "le bonheur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happiness", + "example_sentence_native": "Je te souhaite beaucoup de bonheur.", + "example_sentence_english": "I wish you much happiness.", + "pos": "noun", + "word_frequency": 997 + }, + { + "word": "budget", + "article_with_word": "le budget", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "budget", + "example_sentence_native": "Nous devons respecter notre budget.", + "example_sentence_english": "We must respect our budget.", + "pos": "noun", + "word_frequency": 998 + }, + { + "word": "caractère", + "article_with_word": "le caractère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character;personality", + "example_sentence_native": "Il a un très bon caractère.", + "example_sentence_english": "He has a very good character.", + "pos": "noun", + "word_frequency": 999 + }, + { + "word": "compter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to count", + "example_sentence_native": "Je peux compter jusqu'à dix.", + "example_sentence_english": "I can count to ten.", + "pos": "verb", + "word_frequency": 1000 + }, + { + "word": "consommation", + "article_with_word": "la consommation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consumption", + "example_sentence_native": "La consommation d'énergie a augmenté.", + "example_sentence_english": "Energy consumption has increased.", + "pos": "noun", + "word_frequency": 1001 + }, + { + "word": "dedans", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside", + "example_sentence_native": "Il est resté dedans toute la journée.", + "example_sentence_english": "He stayed inside all day.", + "pos": "adverb", + "word_frequency": 1002 + }, + { + "word": "découvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to discover", + "example_sentence_native": "Nous allons découvrir de nouveaux lieux.", + "example_sentence_english": "We are going to discover new places.", + "pos": "verb", + "word_frequency": 1003 + }, + { + "word": "enseignement", + "article_with_word": "l'enseignement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teaching", + "example_sentence_native": "L'enseignement supérieur est important.", + "example_sentence_english": "Higher education is important.", + "pos": "noun", + "word_frequency": 1004 + }, + { + "word": "lendemain", + "article_with_word": "le lendemain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the next day", + "example_sentence_native": "Le lendemain, il est parti.", + "example_sentence_english": "The next day, he left.", + "pos": "noun", + "word_frequency": 1006 + }, + { + "word": "magnifique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magnificent", + "example_sentence_native": "C'est un paysage magnifique.", + "example_sentence_english": "It's a magnificent landscape.", + "pos": "adjective", + "word_frequency": 1007 + }, + { + "word": "mari", + "article_with_word": "le mari", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "husband", + "example_sentence_native": "Mon mari est très gentil.", + "example_sentence_english": "My husband is very kind.", + "pos": "noun", + "word_frequency": 1008 + }, + { + "word": "musée", + "article_with_word": "le musée", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "museum", + "example_sentence_native": "Nous avons visité le musée.", + "example_sentence_english": "We visited the museum.", + "pos": "noun", + "word_frequency": 1009 + }, + { + "word": "populaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "popular", + "example_sentence_native": "Cette chanson est très populaire.", + "example_sentence_english": "This song is very popular.", + "pos": "adjective", + "word_frequency": 1010 + }, + { + "word": "prince", + "article_with_word": "le prince", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prince", + "example_sentence_native": "Le prince a épousé la princesse.", + "example_sentence_english": "The prince married the princess.", + "pos": "noun", + "word_frequency": 1011 + }, + { + "word": "province", + "article_with_word": "la province", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "province", + "example_sentence_native": "Il vient d'une petite province.", + "example_sentence_english": "He comes from a small province.", + "pos": "noun", + "word_frequency": 1012 + }, + { + "word": "rentrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go back in", + "example_sentence_native": "Je dois rentrer à la maison.", + "example_sentence_english": "I have to go back home.", + "pos": "verb", + "word_frequency": 1014 + }, + { + "word": "ressource", + "article_with_word": "la ressource", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resource", + "example_sentence_native": "Les ressources naturelles sont limitées.", + "example_sentence_english": "Natural resources are limited.", + "pos": "noun", + "word_frequency": 1015 + }, + { + "word": "retraite", + "article_with_word": "la retraite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retirement", + "example_sentence_native": "Il est à la retraite.", + "example_sentence_english": "He is retired.", + "pos": "noun", + "word_frequency": 1016 + }, + { + "word": "revenu", + "article_with_word": "le revenu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "income", + "example_sentence_native": "Son revenu est suffisant.", + "example_sentence_english": "His income is sufficient.", + "pos": "noun", + "word_frequency": 1017 + }, + { + "word": "sac", + "article_with_word": "le sac", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bag", + "example_sentence_native": "J'ai acheté un nouveau sac.", + "example_sentence_english": "I bought a new bag.", + "pos": "noun", + "word_frequency": 1018 + }, + { + "word": "secrétaire", + "article_with_word": "le secrétaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretary", + "example_sentence_native": "La secrétaire a tapé la lettre.", + "example_sentence_english": "The secretary typed the letter.", + "pos": "noun", + "word_frequency": 1019 + }, + { + "word": "siège", + "article_with_word": "le siège", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seat", + "example_sentence_native": "Prenez un siège, s'il vous plaît.", + "example_sentence_english": "Take a seat, please.", + "pos": "noun", + "word_frequency": 1020 + }, + { + "word": "supérieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superior", + "example_sentence_native": "Il a des compétences supérieures.", + "example_sentence_english": "He has superior skills.", + "pos": "adjective", + "word_frequency": 1021 + }, + { + "word": "surprise", + "article_with_word": "la surprise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surprise", + "example_sentence_native": "C'était une agréable surprise.", + "example_sentence_english": "It was a pleasant surprise.", + "pos": "noun", + "word_frequency": 1022 + }, + { + "word": "vent", + "article_with_word": "le vent", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wind", + "example_sentence_native": "Le vent souffle fort aujourd'hui.", + "example_sentence_english": "The wind is blowing hard today.", + "pos": "noun", + "word_frequency": 1024 + }, + { + "word": "acte", + "article_with_word": "l'acte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "act", + "example_sentence_native": "C'était un acte de courage.", + "example_sentence_english": "It was an act of courage.", + "pos": "noun", + "word_frequency": 1025 + }, + { + "word": "bouche", + "article_with_word": "la bouche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mouth", + "example_sentence_native": "Ouvre la bouche, s'il te plaît.", + "example_sentence_english": "Open your mouth, please.", + "pos": "noun", + "word_frequency": 1026 + }, + { + "word": "capacité", + "article_with_word": "la capacité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capacity", + "example_sentence_native": "Il a une grande capacité d'apprentissage.", + "example_sentence_english": "He has a great learning capacity.", + "pos": "noun", + "word_frequency": 1027 + }, + { + "word": "central", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "central", + "example_sentence_native": "Le bureau est situé dans le quartier central.", + "example_sentence_english": "The office is located in the central district.", + "pos": "adjective", + "word_frequency": 1028 + }, + { + "word": "chaud", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hot", + "example_sentence_native": "Il fait chaud aujourd'hui.", + "example_sentence_english": "It's hot today.", + "pos": "adjective", + "word_frequency": 1029 + }, + { + "word": "contexte", + "article_with_word": "le contexte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "context", + "example_sentence_native": "Il faut comprendre le contexte historique.", + "example_sentence_english": "One must understand the historical context.", + "pos": "noun", + "word_frequency": 1030 + }, + { + "word": "dessous", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "underneath", + "example_sentence_native": "Le chat est passé dessous la table.", + "example_sentence_english": "The cat went underneath the table.", + "pos": "adverb", + "word_frequency": 1031 + }, + { + "word": "extérieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exterior", + "example_sentence_native": "La peinture extérieure est neuve.", + "example_sentence_english": "The exterior paint is new.", + "pos": "adjective", + "word_frequency": 1032 + }, + { + "word": "gueule", + "article_with_word": "la gueule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mouth (slang)", + "example_sentence_native": "Le chien a ouvert la gueule.", + "example_sentence_english": "The dog opened its mouth.", + "pos": "noun", + "word_frequency": 1033 + }, + { + "word": "hauteur", + "article_with_word": "la hauteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "height", + "example_sentence_native": "La tour a une grande hauteur.", + "example_sentence_english": "The tower has a great height.", + "pos": "noun", + "word_frequency": 1034 + }, + { + "word": "naissance", + "article_with_word": "la naissance", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "birth", + "example_sentence_native": "La date de naissance est importante.", + "example_sentence_english": "The date of birth is important.", + "pos": "noun", + "word_frequency": 1035 + }, + { + "word": "naître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be born", + "example_sentence_native": "Il est né en France.", + "example_sentence_english": "He was born in France.", + "pos": "verb", + "word_frequency": 1037 + }, + { + "word": "opposition", + "article_with_word": "l'opposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposition", + "example_sentence_native": "Il y a une forte opposition à cette idée.", + "example_sentence_english": "There is strong opposition to this idea.", + "pos": "noun", + "word_frequency": 1038 + }, + { + "word": "processus", + "article_with_word": "le processus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "process", + "example_sentence_native": "C'est un long processus.", + "example_sentence_english": "It's a long process.", + "pos": "noun", + "word_frequency": 1039 + }, + { + "word": "rencontrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to meet", + "example_sentence_native": "Je suis ravi de vous rencontrer.", + "example_sentence_english": "I am delighted to meet you.", + "pos": "verb", + "word_frequency": 1040 + }, + { + "word": "rire", + "article_with_word": "le rire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laughter", + "example_sentence_native": "Son rire est contagieux.", + "example_sentence_english": "His laughter is contagious.", + "pos": "noun", + "word_frequency": 1041 + }, + { + "word": "réaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to realize;to achieve", + "example_sentence_native": "Il a réalisé son rêve.", + "example_sentence_english": "He achieved his dream.", + "pos": "verb", + "word_frequency": 1042 + }, + { + "word": "salut", + "article_with_word": "le salut", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salute;greeting", + "example_sentence_native": "Il a fait un salut militaire.", + "example_sentence_english": "He gave a military salute.", + "pos": "noun", + "word_frequency": 1043 + }, + { + "word": "seconde", + "article_with_word": "la seconde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "second", + "example_sentence_native": "Attendez une seconde, s'il vous plaît.", + "example_sentence_english": "Wait a second, please.", + "pos": "noun", + "word_frequency": 1044 + }, + { + "word": "sœur", + "article_with_word": "la sœur", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sister", + "example_sentence_native": "Ma sœur habite à Paris.", + "example_sentence_english": "My sister lives in Paris.", + "pos": "noun", + "word_frequency": 1045 + }, + { + "word": "vin", + "article_with_word": "le vin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wine", + "example_sentence_native": "J'aime le vin rouge.", + "example_sentence_english": "I like red wine.", + "pos": "noun", + "word_frequency": 1046 + }, + { + "word": "actuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current;present", + "example_sentence_native": "Quelle est la situation actuelle ?", + "example_sentence_english": "What is the current situation?", + "pos": "adjective", + "word_frequency": 1047 + }, + { + "word": "approche", + "article_with_word": "l'approche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach", + "example_sentence_native": "Nous devons changer notre approche.", + "example_sentence_english": "We need to change our approach.", + "pos": "noun", + "word_frequency": 1048 + }, + { + "word": "candidat", + "article_with_word": "le candidat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candidate", + "example_sentence_native": "Il est un bon candidat pour le poste.", + "example_sentence_english": "He is a good candidate for the position.", + "pos": "noun", + "word_frequency": 1049 + }, + { + "word": "capitaine", + "article_with_word": "le capitaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain", + "example_sentence_native": "Le capitaine a donné l'ordre.", + "example_sentence_english": "The captain gave the order.", + "pos": "noun", + "word_frequency": 1050 + }, + { + "word": "capitale", + "article_with_word": "la capitale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "capital city", + "example_sentence_native": "Paris est la capitale de la France.", + "example_sentence_english": "Paris is the capital of France.", + "pos": "noun", + "word_frequency": 1051 + }, + { + "word": "désolé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sorry", + "example_sentence_native": "Je suis désolé pour le retard.", + "example_sentence_english": "I am sorry for the delay.", + "pos": "adjective", + "word_frequency": 1052 + }, + { + "word": "faveur", + "article_with_word": "la faveur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favor", + "example_sentence_native": "Peux-tu me faire une faveur ?", + "example_sentence_english": "Can you do me a favor?", + "pos": "noun", + "word_frequency": 1053 + }, + { + "word": "front", + "article_with_word": "le front", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forehead;front", + "example_sentence_native": "Il a une cicatrice sur le front.", + "example_sentence_english": "He has a scar on his forehead.", + "pos": "noun", + "word_frequency": 1054 + }, + { + "word": "mérite", + "article_with_word": "le mérite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merit;worth", + "example_sentence_native": "Son travail a beaucoup de mérite.", + "example_sentence_english": "His work has a lot of merit.", + "pos": "noun", + "word_frequency": 1056 + }, + { + "word": "papier", + "article_with_word": "le papier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "paper", + "example_sentence_native": "J'ai besoin d'une feuille de papier.", + "example_sentence_english": "I need a sheet of paper.", + "pos": "noun", + "word_frequency": 1058 + }, + { + "word": "prévoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to foresee;to plan", + "example_sentence_native": "Nous devons prévoir les dépenses.", + "example_sentence_english": "We need to plan the expenses.", + "pos": "verb", + "word_frequency": 1059 + }, + { + "word": "tribunal", + "article_with_word": "le tribunal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court;tribunal", + "example_sentence_native": "L'affaire sera jugée au tribunal.", + "example_sentence_english": "The case will be judged in court.", + "pos": "noun", + "word_frequency": 1060 + }, + { + "word": "télé", + "article_with_word": "la télé", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "TV", + "example_sentence_native": "J'ai regardé la télé hier soir.", + "example_sentence_english": "I watched TV last night.", + "pos": "noun", + "word_frequency": 1061 + }, + { + "word": "accident", + "article_with_word": "l'accident", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accident", + "example_sentence_native": "Il y a eu un accident sur la route.", + "example_sentence_english": "There was an accident on the road.", + "pos": "noun", + "word_frequency": 1062 + }, + { + "word": "courage", + "article_with_word": "le courage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courage", + "example_sentence_native": "Il a montré beaucoup de courage.", + "example_sentence_english": "He showed a lot of courage.", + "pos": "noun", + "word_frequency": 1063 + }, + { + "word": "entrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to enter;to come in", + "example_sentence_native": "Vous pouvez entrer maintenant.", + "example_sentence_english": "You can come in now.", + "pos": "verb", + "word_frequency": 1064 + }, + { + "word": "festival", + "article_with_word": "le festival", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "festival", + "example_sentence_native": "Nous allons au festival de musique.", + "example_sentence_english": "We are going to the music festival.", + "pos": "noun", + "word_frequency": 1065 + }, + { + "word": "jeudi", + "article_with_word": "le jeudi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Thursday", + "example_sentence_native": "Le rendez-vous est jeudi.", + "example_sentence_english": "The appointment is on Thursday.", + "pos": "noun", + "word_frequency": 1066 + }, + { + "word": "journaliste", + "article_with_word": "le journaliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journalist", + "example_sentence_native": "Le journaliste a posé une question.", + "example_sentence_english": "The journalist asked a question.", + "pos": "noun", + "word_frequency": 1067 + }, + { + "word": "nul", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "null;worthless;bad", + "example_sentence_native": "Ce film est vraiment nul.", + "example_sentence_english": "This movie is really bad.", + "pos": "adjective", + "word_frequency": 1068 + }, + { + "word": "perte", + "article_with_word": "la perte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loss", + "example_sentence_native": "La perte de données est un problème.", + "example_sentence_english": "Data loss is a problem.", + "pos": "noun", + "word_frequency": 1069 + }, + { + "word": "possibilité", + "article_with_word": "la possibilité", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "possibility", + "example_sentence_native": "Il y a une possibilité de pluie.", + "example_sentence_english": "There is a possibility of rain.", + "pos": "noun", + "word_frequency": 1070 + }, + { + "word": "riche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rich", + "example_sentence_native": "Il est devenu très riche.", + "example_sentence_english": "He became very rich.", + "pos": "adjective", + "word_frequency": 1071 + }, + { + "word": "tuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to kill", + "example_sentence_native": "Le chasseur a tué un sanglier.", + "example_sentence_english": "The hunter killed a wild boar.", + "pos": "verb", + "word_frequency": 1072 + }, + { + "word": "unité", + "article_with_word": "l'unité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unit;unity", + "example_sentence_native": "L'unité est importante pour le groupe.", + "example_sentence_english": "Unity is important for the group.", + "pos": "noun", + "word_frequency": 1073 + }, + { + "word": "établissement", + "article_with_word": "l'établissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "establishment;institution", + "example_sentence_native": "C'est un établissement scolaire.", + "example_sentence_english": "It's an educational establishment.", + "pos": "noun", + "word_frequency": 1074 + }, + { + "word": "anniversaire", + "article_with_word": "l'anniversaire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "birthday;anniversary", + "example_sentence_native": "Joyeux anniversaire !", + "example_sentence_english": "Happy birthday!", + "pos": "noun", + "word_frequency": 1075 + }, + { + "word": "café", + "article_with_word": "le café", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coffee;cafe", + "example_sentence_native": "Je prends un café tous les matins.", + "example_sentence_english": "I drink coffee every morning.", + "pos": "noun", + "word_frequency": 1077 + }, + { + "word": "chat", + "article_with_word": "le chat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cat", + "example_sentence_native": "Mon chat dort sur le canapé.", + "example_sentence_english": "My cat sleeps on the sofa.", + "pos": "noun", + "word_frequency": 1078 + }, + { + "word": "chiffre", + "article_with_word": "le chiffre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figure;digit;number", + "example_sentence_native": "Quel est le chiffre d'affaires de l'entreprise ?", + "example_sentence_english": "What is the company's turnover?", + "pos": "noun", + "word_frequency": 1079 + }, + { + "word": "coin", + "article_with_word": "le coin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corner", + "example_sentence_native": "Le livre est dans le coin de la pièce.", + "example_sentence_english": "The book is in the corner of the room.", + "pos": "noun", + "word_frequency": 1080 + }, + { + "word": "identité", + "article_with_word": "l'identité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identity", + "example_sentence_native": "Elle a vérifié son identité à l'entrée.", + "example_sentence_english": "She checked her identity at the entrance.", + "pos": "noun", + "word_frequency": 1082 + }, + { + "word": "intéressant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interesting", + "example_sentence_native": "Ce film est très intéressant.", + "example_sentence_english": "This movie is very interesting.", + "pos": "adjective", + "word_frequency": 1083 + }, + { + "word": "lancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to throw;to launch", + "example_sentence_native": "Il va lancer le ballon.", + "example_sentence_english": "He is going to throw the ball.", + "pos": "verb", + "word_frequency": 1084 + }, + { + "word": "largement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widely;largely", + "example_sentence_native": "Son travail est largement reconnu.", + "example_sentence_english": "His work is widely recognized.", + "pos": "adverb", + "word_frequency": 1085 + }, + { + "word": "moindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "least;slightest", + "example_sentence_native": "Il n'y a pas le moindre doute.", + "example_sentence_english": "There isn't the slightest doubt.", + "pos": "adjective", + "word_frequency": 1088 + }, + { + "word": "parcours", + "article_with_word": "le parcours", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;course;journey", + "example_sentence_native": "Son parcours professionnel est impressionnant.", + "example_sentence_english": "His professional journey is impressive.", + "pos": "noun", + "word_frequency": 1090 + }, + { + "word": "parfaitement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfectly", + "example_sentence_native": "Je comprends parfaitement ce que tu dis.", + "example_sentence_english": "I perfectly understand what you are saying.", + "pos": "adverb", + "word_frequency": 1091 + }, + { + "word": "partage", + "article_with_word": "le partage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharing;share", + "example_sentence_native": "Le partage des connaissances est essentiel.", + "example_sentence_english": "The sharing of knowledge is essential.", + "pos": "noun", + "word_frequency": 1092 + }, + { + "word": "pont", + "article_with_word": "le pont", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bridge", + "example_sentence_native": "Nous avons traversé le pont.", + "example_sentence_english": "We crossed the bridge.", + "pos": "noun", + "word_frequency": 1093 + }, + { + "word": "protéger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protect", + "example_sentence_native": "Il faut protéger l'environnement.", + "example_sentence_english": "We must protect the environment.", + "pos": "verb", + "word_frequency": 1094 + }, + { + "word": "préférer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to prefer", + "example_sentence_native": "Je préfère le café au thé.", + "example_sentence_english": "I prefer coffee to tea.", + "pos": "verb", + "word_frequency": 1095 + }, + { + "word": "remettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put back;to hand over;to postpone", + "example_sentence_native": "Peux-tu remettre le livre sur l'étagère ?", + "example_sentence_english": "Can you put the book back on the shelf?", + "pos": "verb", + "word_frequency": 1096 + }, + { + "word": "responsabilité", + "article_with_word": "la responsabilité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "responsibility", + "example_sentence_native": "C'est une grande responsabilité.", + "example_sentence_english": "It's a big responsibility.", + "pos": "noun", + "word_frequency": 1097 + }, + { + "word": "scientifique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scientific", + "example_sentence_native": "Il a mené une recherche scientifique.", + "example_sentence_english": "He conducted scientific research.", + "pos": "adjective", + "word_frequency": 1098 + }, + { + "word": "somme", + "article_with_word": "la somme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sum;amount", + "example_sentence_native": "La somme totale est de cent euros.", + "example_sentence_english": "The total sum is one hundred euros.", + "pos": "noun", + "word_frequency": 1099 + }, + { + "word": "tirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pull;to draw;to shoot", + "example_sentence_native": "Il faut tirer la porte pour l'ouvrir.", + "example_sentence_english": "You have to pull the door to open it.", + "pos": "verb", + "word_frequency": 1100 + }, + { + "word": "violence", + "article_with_word": "la violence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violence", + "example_sentence_native": "La violence n'est jamais une solution.", + "example_sentence_english": "Violence is never a solution.", + "pos": "noun", + "word_frequency": 1101 + }, + { + "word": "élevé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high;elevated", + "example_sentence_native": "Le niveau de l'eau est très élevé.", + "example_sentence_english": "The water level is very high.", + "pos": "adjective", + "word_frequency": 1103 + }, + { + "word": "beauté", + "article_with_word": "la beauté", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beauty", + "example_sentence_native": "La beauté de ce paysage est incroyable.", + "example_sentence_english": "The beauty of this landscape is incredible.", + "pos": "noun", + "word_frequency": 1104 + }, + { + "word": "bleu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blue", + "example_sentence_native": "Le ciel est bleu.", + "example_sentence_english": "The sky is blue.", + "pos": "adjective", + "word_frequency": 1105 + }, + { + "word": "champ", + "article_with_word": "le champ", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "field", + "example_sentence_native": "Les vaches paissent dans le champ.", + "example_sentence_english": "The cows are grazing in the field.", + "pos": "noun", + "word_frequency": 1106 + }, + { + "word": "conférence", + "article_with_word": "la conférence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conference;lecture", + "example_sentence_native": "J'ai assisté à une conférence intéressante.", + "example_sentence_english": "I attended an interesting conference.", + "pos": "noun", + "word_frequency": 1107 + }, + { + "word": "cuisine", + "article_with_word": "la cuisine", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kitchen;cooking", + "example_sentence_native": "La cuisine est le cœur de la maison.", + "example_sentence_english": "The kitchen is the heart of the house.", + "pos": "noun", + "word_frequency": 1108 + }, + { + "word": "danger", + "article_with_word": "le danger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "danger", + "example_sentence_native": "Il y a un danger imminent.", + "example_sentence_english": "There is an imminent danger.", + "pos": "noun", + "word_frequency": 1109 + }, + { + "word": "député", + "article_with_word": "le député", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy;member of parliament", + "example_sentence_native": "Le député a voté la nouvelle loi.", + "example_sentence_english": "The deputy voted for the new law.", + "pos": "noun", + "word_frequency": 1110 + }, + { + "word": "foi", + "article_with_word": "la foi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faith;belief", + "example_sentence_native": "J'ai foi en l'avenir.", + "example_sentence_english": "I have faith in the future.", + "pos": "noun", + "word_frequency": 1111 + }, + { + "word": "football", + "article_with_word": "le football", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "football (soccer)", + "example_sentence_native": "Il aime jouer au football.", + "example_sentence_english": "He likes to play football.", + "pos": "noun", + "word_frequency": 1112 + }, + { + "word": "lycée", + "article_with_word": "le lycée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "high school", + "example_sentence_native": "Mon frère est au lycée.", + "example_sentence_english": "My brother is in high school.", + "pos": "noun", + "word_frequency": 1114 + }, + { + "word": "mercredi", + "article_with_word": "le mercredi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Wednesday", + "example_sentence_native": "Nous avons une réunion mercredi.", + "example_sentence_english": "We have a meeting on Wednesday.", + "pos": "noun", + "word_frequency": 1115 + }, + { + "word": "milliard", + "article_with_word": "le milliard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billion (US);milliard (UK)", + "example_sentence_native": "La population mondiale dépasse les sept milliards.", + "example_sentence_english": "The world population exceeds seven billion.", + "pos": "noun", + "word_frequency": 1116 + }, + { + "word": "mourir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to die", + "example_sentence_native": "Les plantes peuvent mourir sans eau.", + "example_sentence_english": "Plants can die without water.", + "pos": "verb", + "word_frequency": 1117 + }, + { + "word": "opinion", + "article_with_word": "l'opinion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opinion", + "example_sentence_native": "J'ai une opinion différente.", + "example_sentence_english": "I have a different opinion.", + "pos": "noun", + "word_frequency": 1118 + }, + { + "word": "participer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to participate", + "example_sentence_native": "Il veut participer à la discussion.", + "example_sentence_english": "He wants to participate in the discussion.", + "pos": "verb", + "word_frequency": 1119 + }, + { + "word": "personnage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character", + "example_sentence_native": "Le personnage principal est très courageux.", + "example_sentence_english": "The main character is very brave.", + "pos": "noun", + "word_frequency": 1120 + }, + { + "word": "planète", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "planet", + "example_sentence_native": "La Terre est une planète bleue.", + "example_sentence_english": "Earth is a blue planet.", + "pos": "noun", + "word_frequency": 1121 + }, + { + "word": "québécois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Quebecois (from Quebec)", + "example_sentence_native": "Il parle avec un accent québécois.", + "example_sentence_english": "He speaks with a Quebecois accent.", + "pos": "adjective", + "word_frequency": 1122 + }, + { + "word": "retard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delay;lateness", + "example_sentence_native": "Le train a un retard de dix minutes.", + "example_sentence_english": "The train has a ten-minute delay.", + "pos": "noun", + "word_frequency": 1123 + }, + { + "word": "sexe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sex;gender", + "example_sentence_native": "Quel est votre sexe ?", + "example_sentence_english": "What is your sex/gender?", + "pos": "noun", + "word_frequency": 1124 + }, + { + "word": "situer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to locate;to be situated", + "example_sentence_native": "La ville se situe au bord de la mer.", + "example_sentence_english": "The city is located by the sea.", + "pos": "verb", + "word_frequency": 1125 + }, + { + "word": "théorie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theory", + "example_sentence_native": "Cette théorie est très intéressante.", + "example_sentence_english": "This theory is very interesting.", + "pos": "noun", + "word_frequency": 1126 + }, + { + "word": "verre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "glass", + "example_sentence_native": "Je voudrais un verre d'eau.", + "example_sentence_english": "I would like a glass of water.", + "pos": "noun", + "word_frequency": 1127 + }, + { + "word": "agence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "agency", + "example_sentence_native": "Il travaille pour une agence de voyages.", + "example_sentence_english": "He works for a travel agency.", + "pos": "noun", + "word_frequency": 1128 + }, + { + "word": "artiste", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "artist", + "example_sentence_native": "C'est un artiste très talentueux.", + "example_sentence_english": "He is a very talented artist.", + "pos": "noun", + "word_frequency": 1129 + }, + { + "word": "assurance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insurance;assurance", + "example_sentence_native": "J'ai pris une assurance voyage.", + "example_sentence_english": "I took out travel insurance.", + "pos": "noun", + "word_frequency": 1130 + }, + { + "word": "autorité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authority", + "example_sentence_native": "Il a beaucoup d'autorité.", + "example_sentence_english": "He has a lot of authority.", + "pos": "noun", + "word_frequency": 1131 + }, + { + "word": "bus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "example_sentence_native": "Je prends le bus pour aller au travail.", + "example_sentence_english": "I take the bus to go to work.", + "pos": "noun", + "word_frequency": 1132 + }, + { + "word": "citoyen", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citizen", + "example_sentence_native": "Chaque citoyen a des droits et des devoirs.", + "example_sentence_english": "Every citizen has rights and duties.", + "pos": "noun", + "word_frequency": 1133 + }, + { + "word": "collection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "collection", + "example_sentence_native": "Elle a une grande collection de timbres.", + "example_sentence_english": "She has a large stamp collection.", + "pos": "noun", + "word_frequency": 1134 + }, + { + "word": "conscience", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consciousness;conscience", + "example_sentence_native": "Il a une bonne conscience professionnelle.", + "example_sentence_english": "He has a good professional conscience.", + "pos": "noun", + "word_frequency": 1135 + }, + { + "word": "content", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "happy;content", + "example_sentence_native": "Je suis très content de te voir.", + "example_sentence_english": "I am very happy to see you.", + "pos": "adjective", + "word_frequency": 1136 + }, + { + "word": "croissance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growth", + "example_sentence_native": "L'économie connaît une forte croissance.", + "example_sentence_english": "The economy is experiencing strong growth.", + "pos": "noun", + "word_frequency": 1137 + }, + { + "word": "célèbre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "famous;celebrated", + "example_sentence_native": "C'est un acteur très célèbre.", + "example_sentence_english": "He is a very famous actor.", + "pos": "adjective", + "word_frequency": 1138 + }, + { + "word": "davantage", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "more;further", + "example_sentence_native": "J'ai besoin de davantage de temps.", + "example_sentence_english": "I need more time.", + "pos": "adverb", + "word_frequency": 1139 + }, + { + "word": "distance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "distance", + "example_sentence_native": "La distance entre les deux villes est grande.", + "example_sentence_english": "The distance between the two cities is great.", + "pos": "noun", + "word_frequency": 1140 + }, + { + "word": "détail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detail", + "example_sentence_native": "Il a expliqué tous les détails.", + "example_sentence_english": "He explained all the details.", + "pos": "noun", + "word_frequency": 1141 + }, + { + "word": "entier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entire;whole", + "example_sentence_native": "Il a mangé le gâteau entier.", + "example_sentence_english": "He ate the whole cake.", + "pos": "adjective", + "word_frequency": 1142 + }, + { + "word": "exposition", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibition;exposure", + "example_sentence_native": "Nous avons visité une exposition d'art moderne.", + "example_sentence_english": "We visited a modern art exhibition.", + "pos": "noun", + "word_frequency": 1143 + }, + { + "word": "extrême", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extreme", + "example_sentence_native": "Il fait face à des conditions extrêmes.", + "example_sentence_english": "He faces extreme conditions.", + "pos": "adjective", + "word_frequency": 1144 + }, + { + "word": "figure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figure;face;shape", + "example_sentence_native": "C'est une figure importante de l'histoire.", + "example_sentence_english": "He is an important figure in history.", + "pos": "noun", + "word_frequency": 1145 + }, + { + "word": "imaginer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to imagine", + "example_sentence_native": "J'imagine que tu es fatigué.", + "example_sentence_english": "I imagine you are tired.", + "pos": "verb", + "word_frequency": 1146 + }, + { + "word": "influence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "influence", + "example_sentence_native": "Il a une grande influence sur ses amis.", + "example_sentence_english": "He has a great influence on his friends.", + "pos": "noun", + "word_frequency": 1147 + }, + { + "word": "lecture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reading;lecture", + "example_sentence_native": "La lecture est mon passe-temps préféré.", + "example_sentence_english": "Reading is my favorite hobby.", + "pos": "noun", + "word_frequency": 1148 + }, + { + "word": "maman", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mom;mummy", + "example_sentence_native": "Ma maman est la meilleure.", + "example_sentence_english": "My mom is the best.", + "pos": "noun", + "word_frequency": 1149 + }, + { + "word": "masse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mass;crowd", + "example_sentence_native": "Il y avait une grande masse de gens.", + "example_sentence_english": "There was a large crowd of people.", + "pos": "noun", + "word_frequency": 1150 + }, + { + "word": "moderne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "modern", + "example_sentence_native": "J'aime l'art moderne.", + "example_sentence_english": "I like modern art.", + "pos": "adjective", + "word_frequency": 1151 + }, + { + "word": "mur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wall", + "example_sentence_native": "Il a peint le mur en bleu.", + "example_sentence_english": "He painted the wall blue.", + "pos": "noun", + "word_frequency": 1152 + }, + { + "word": "pensée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thought;thinking", + "example_sentence_native": "J'ai une pensée pour toi.", + "example_sentence_english": "I'm thinking of you.", + "pos": "noun", + "word_frequency": 1154 + }, + { + "word": "propriétaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owner;landlord", + "example_sentence_native": "Le propriétaire de la maison est très gentil.", + "example_sentence_english": "The owner of the house is very kind.", + "pos": "noun", + "word_frequency": 1155 + }, + { + "word": "propriété", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "property;ownership", + "example_sentence_native": "C'est ma propriété privée.", + "example_sentence_english": "This is my private property.", + "pos": "noun", + "word_frequency": 1156 + }, + { + "word": "quitter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to leave;to quit", + "example_sentence_native": "Il a quitté son travail.", + "example_sentence_english": "He quit his job.", + "pos": "verb", + "word_frequency": 1157 + }, + { + "word": "quotidien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daily;everyday", + "example_sentence_native": "C'est ma routine quotidienne.", + "example_sentence_english": "This is my daily routine.", + "pos": "adjective", + "word_frequency": 1158 + }, + { + "word": "soldat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soldier", + "example_sentence_native": "Le soldat a défendu son pays.", + "example_sentence_english": "The soldier defended his country.", + "pos": "noun", + "word_frequency": 1159 + }, + { + "word": "triste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sad", + "example_sentence_native": "Elle est triste aujourd'hui.", + "example_sentence_english": "She is sad today.", + "pos": "adjective", + "word_frequency": 1160 + }, + { + "word": "vert", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "green", + "example_sentence_native": "La pomme est verte.", + "example_sentence_english": "The apple is green.", + "pos": "adjective", + "word_frequency": 1162 + }, + { + "word": "vide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "empty", + "example_sentence_native": "La bouteille est vide.", + "example_sentence_english": "The bottle is empty.", + "pos": "adjective", + "word_frequency": 1163 + }, + { + "word": "âme", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soul", + "example_sentence_native": "Il a une âme d'artiste.", + "example_sentence_english": "He has an artist's soul.", + "pos": "noun", + "word_frequency": 1164 + }, + { + "word": "échange", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange", + "example_sentence_native": "Nous avons eu un bon échange d'idées.", + "example_sentence_english": "We had a good exchange of ideas.", + "pos": "noun", + "word_frequency": 1165 + }, + { + "word": "élu", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elected official", + "example_sentence_native": "L'élu local a promis des changements.", + "example_sentence_english": "The local elected official promised changes.", + "pos": "noun", + "word_frequency": 1166 + }, + { + "word": "énorme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enormous;huge", + "example_sentence_native": "Il y a eu un énorme succès.", + "example_sentence_english": "There was an enormous success.", + "pos": "adjective", + "word_frequency": 1167 + }, + { + "word": "événement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "event", + "example_sentence_native": "C'était un événement important.", + "example_sentence_english": "It was an important event.", + "pos": "noun", + "word_frequency": 1168 + }, + { + "word": "bizarre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strange;bizarre", + "example_sentence_native": "C'est une histoire bizarre.", + "example_sentence_english": "It's a strange story.", + "pos": "adjective", + "word_frequency": 1169 + }, + { + "word": "catégorie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "category", + "example_sentence_native": "Ce produit appartient à une nouvelle catégorie.", + "example_sentence_english": "This product belongs to a new category.", + "pos": "noun", + "word_frequency": 1170 + }, + { + "word": "contenu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "content", + "example_sentence_native": "Le contenu de la boîte est secret.", + "example_sentence_english": "The content of the box is secret.", + "pos": "noun", + "word_frequency": 1171 + }, + { + "word": "dommage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pity;damage", + "example_sentence_native": "C'est dommage que tu ne puisses pas venir.", + "example_sentence_english": "It's a pity you can't come.", + "pos": "noun", + "word_frequency": 1172 + }, + { + "word": "découverte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discovery", + "example_sentence_native": "La découverte de l'Amérique a changé le monde.", + "example_sentence_english": "The discovery of America changed the world.", + "pos": "noun", + "word_frequency": 1173 + }, + { + "word": "empire", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empire", + "example_sentence_native": "L'Empire romain était vaste.", + "example_sentence_english": "The Roman Empire was vast.", + "pos": "noun", + "word_frequency": 1174 + }, + { + "word": "espoir", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hope", + "example_sentence_native": "Il y a toujours de l'espoir.", + "example_sentence_english": "There is always hope.", + "pos": "noun", + "word_frequency": 1175 + }, + { + "word": "existence", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existence", + "example_sentence_native": "L'existence de Dieu est un sujet de débat.", + "example_sentence_english": "The existence of God is a subject of debate.", + "pos": "noun", + "word_frequency": 1176 + }, + { + "word": "exploitation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploitation;operation", + "example_sentence_native": "L'exploitation des ressources naturelles est cruciale.", + "example_sentence_english": "The exploitation of natural resources is crucial.", + "pos": "noun", + "word_frequency": 1177 + }, + { + "word": "malheureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unhappy", + "example_sentence_native": "Il est malheureux de ne pas pouvoir voyager.", + "example_sentence_english": "He is unhappy not to be able to travel.", + "pos": "adverb", + "word_frequency": 1178 + }, + { + "word": "mardi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Tuesday", + "example_sentence_native": "Nous nous rencontrons le mardi.", + "example_sentence_english": "We meet on Tuesdays.", + "pos": "noun", + "word_frequency": 1179 + }, + { + "word": "offrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to offer;to give", + "example_sentence_native": "Il a offert des fleurs à sa mère.", + "example_sentence_english": "He offered flowers to his mother.", + "pos": "verb", + "word_frequency": 1180 + }, + { + "word": "religieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religious", + "example_sentence_native": "C'est une personne très religieuse.", + "example_sentence_english": "She is a very religious person.", + "pos": "adjective", + "word_frequency": 1181 + }, + { + "word": "réserve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reserve;stock", + "example_sentence_native": "Nous avons une grande réserve d'eau.", + "example_sentence_english": "We have a large reserve of water.", + "pos": "noun", + "word_frequency": 1183 + }, + { + "word": "section", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "section", + "example_sentence_native": "Lisez la section suivante.", + "example_sentence_english": "Read the next section.", + "pos": "noun", + "word_frequency": 1184 + }, + { + "word": "sentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to feel;to smell", + "example_sentence_native": "Je me sens fatigué.", + "example_sentence_english": "I feel tired.", + "pos": "verb", + "word_frequency": 1185 + }, + { + "word": "signifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mean;to signify", + "example_sentence_native": "Que signifie ce mot ?", + "example_sentence_english": "What does this word mean?", + "pos": "verb", + "word_frequency": 1186 + }, + { + "word": "spectacle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "show;spectacle", + "example_sentence_native": "Le spectacle était magnifique.", + "example_sentence_english": "The show was magnificent.", + "pos": "noun", + "word_frequency": 1187 + }, + { + "word": "appareil", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device;apparatus", + "example_sentence_native": "J'ai acheté un nouvel appareil photo.", + "example_sentence_english": "I bought a new camera.", + "pos": "noun", + "word_frequency": 1189 + }, + { + "word": "britannique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "British", + "example_sentence_native": "Il est de nationalité britannique.", + "example_sentence_english": "He is of British nationality.", + "pos": "adjective", + "word_frequency": 1190 + }, + { + "word": "charger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to load;to charge", + "example_sentence_native": "N'oubliez pas de charger votre téléphone.", + "example_sentence_english": "Don't forget to charge your phone.", + "pos": "verb", + "word_frequency": 1191 + }, + { + "word": "château", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "castle", + "example_sentence_native": "Nous avons visité un vieux château.", + "example_sentence_english": "We visited an old castle.", + "pos": "noun", + "word_frequency": 1192 + }, + { + "word": "crédit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credit", + "example_sentence_native": "J'ai acheté la voiture à crédit.", + "example_sentence_english": "I bought the car on credit.", + "pos": "noun", + "word_frequency": 1193 + }, + { + "word": "don", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gift;donation", + "example_sentence_native": "Il a fait un don à l'association.", + "example_sentence_english": "He made a donation to the association.", + "pos": "noun", + "word_frequency": 1194 + }, + { + "word": "empêcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prevent", + "example_sentence_native": "La pluie nous a empêchés de sortir.", + "example_sentence_english": "The rain prevented us from going out.", + "pos": "verb", + "word_frequency": 1195 + }, + { + "word": "entretien", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interview;maintenance", + "example_sentence_native": "J'ai un entretien d'embauche demain.", + "example_sentence_english": "I have a job interview tomorrow.", + "pos": "noun", + "word_frequency": 1196 + }, + { + "word": "immédiat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediate", + "example_sentence_native": "Une réponse immédiate est nécessaire.", + "example_sentence_english": "An immediate response is necessary.", + "pos": "adverb", + "word_frequency": 1197 + }, + { + "word": "incroyable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incredible;unbelievable", + "example_sentence_native": "C'est une histoire incroyable.", + "example_sentence_english": "It's an incredible story.", + "pos": "adjective", + "word_frequency": 1198 + }, + { + "word": "jeunesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youth", + "example_sentence_native": "La jeunesse est l'avenir.", + "example_sentence_english": "Youth is the future.", + "pos": "noun", + "word_frequency": 1199 + }, + { + "word": "machine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "machine", + "example_sentence_native": "La machine à laver est en panne.", + "example_sentence_english": "The washing machine is broken.", + "pos": "noun", + "word_frequency": 1200 + }, + { + "word": "méthode", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "method", + "example_sentence_native": "Quelle est votre méthode de travail?", + "example_sentence_english": "What is your working method?", + "pos": "noun", + "word_frequency": 1201 + }, + { + "word": "naturel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "natural", + "example_sentence_native": "C'est un comportement tout à fait naturel.", + "example_sentence_english": "It's a completely natural behavior.", + "pos": "adjective", + "word_frequency": 1202 + }, + { + "word": "revue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magazine;review", + "example_sentence_native": "J'ai lu un article intéressant dans cette revue.", + "example_sentence_english": "I read an interesting article in this magazine.", + "pos": "noun", + "word_frequency": 1203 + }, + { + "word": "rose", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pink", + "example_sentence_native": "Elle porte une robe rose.", + "example_sentence_english": "She is wearing a pink dress.", + "pos": "adjective", + "word_frequency": 1204 + }, + { + "word": "salon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "living room;lounge", + "example_sentence_native": "Nous nous sommes assis dans le salon.", + "example_sentence_english": "We sat in the living room.", + "pos": "noun", + "word_frequency": 1205 + }, + { + "word": "silence", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silence", + "example_sentence_native": "Il y avait un profond silence dans la pièce.", + "example_sentence_english": "There was a deep silence in the room.", + "pos": "noun", + "word_frequency": 1206 + }, + { + "word": "sympa", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nice;friendly", + "example_sentence_native": "Il est vraiment sympa avec tout le monde.", + "example_sentence_english": "He is really nice to everyone.", + "pos": "adjective", + "word_frequency": 1207 + }, + { + "word": "traité", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treaty;treatise", + "example_sentence_native": "Les deux pays ont signé un traité de paix.", + "example_sentence_english": "The two countries signed a peace treaty.", + "pos": "noun", + "word_frequency": 1208 + }, + { + "word": "univers", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "universe;world", + "example_sentence_native": "L'univers est vaste et mystérieux.", + "example_sentence_english": "The universe is vast and mysterious.", + "pos": "noun", + "word_frequency": 1209 + }, + { + "word": "vice", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vice;flaw", + "example_sentence_native": "Le jeu est son seul vice.", + "example_sentence_english": "Gambling is his only vice.", + "pos": "noun", + "word_frequency": 1210 + }, + { + "word": "vision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vision;view", + "example_sentence_native": "Il a une vision claire de l'avenir.", + "example_sentence_english": "He has a clear vision of the future.", + "pos": "noun", + "word_frequency": 1211 + }, + { + "word": "écran", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screen", + "example_sentence_native": "L'écran de mon téléphone est cassé.", + "example_sentence_english": "My phone screen is broken.", + "pos": "noun", + "word_frequency": 1212 + }, + { + "word": "acteur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actor", + "example_sentence_native": "C'est un acteur très talentueux.", + "example_sentence_english": "He is a very talented actor.", + "pos": "noun", + "word_frequency": 1213 + }, + { + "word": "augmentation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "increase;rise", + "example_sentence_native": "Il y a eu une augmentation des prix.", + "example_sentence_english": "There has been an increase in prices.", + "pos": "noun", + "word_frequency": 1214 + }, + { + "word": "bruit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noise", + "example_sentence_native": "Fais moins de bruit, s'il te plaît.", + "example_sentence_english": "Make less noise, please.", + "pos": "noun", + "word_frequency": 1216 + }, + { + "word": "classement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranking;classification", + "example_sentence_native": "Son classement mondial s'est amélioré.", + "example_sentence_english": "His world ranking has improved.", + "pos": "noun", + "word_frequency": 1217 + }, + { + "word": "conseiller", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advisor;counselor", + "example_sentence_native": "J'ai parlé à mon conseiller d'orientation.", + "example_sentence_english": "I spoke to my career advisor.", + "pos": "noun", + "word_frequency": 1218 + }, + { + "word": "docteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor", + "example_sentence_native": "Le docteur a dit que je devais me reposer.", + "example_sentence_english": "The doctor said I needed to rest.", + "pos": "noun", + "word_frequency": 1219 + }, + { + "word": "franc", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frankly;openly", + "example_sentence_native": "Il faut parler franc pour résoudre ce problème.", + "example_sentence_english": "We must speak frankly to solve this problem.", + "pos": "adverb", + "word_frequency": 1220 + }, + { + "word": "génération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generation", + "example_sentence_native": "Chaque génération a ses propres défis.", + "example_sentence_english": "Each generation has its own challenges.", + "pos": "noun", + "word_frequency": 1221 + }, + { + "word": "héros", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hero", + "example_sentence_native": "Il est le héros de cette histoire.", + "example_sentence_english": "He is the hero of this story.", + "pos": "noun", + "word_frequency": 1222 + }, + { + "word": "raconter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tell;to recount", + "example_sentence_native": "Peux-tu me raconter une histoire?", + "example_sentence_english": "Can you tell me a story?", + "pos": "verb", + "word_frequency": 1223 + }, + { + "word": "reine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "queen", + "example_sentence_native": "La reine a salué la foule.", + "example_sentence_english": "The queen greeted the crowd.", + "pos": "noun", + "word_frequency": 1224 + }, + { + "word": "rejoindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to join;to meet up with", + "example_sentence_native": "Je vais les rejoindre plus tard.", + "example_sentence_english": "I will join them later.", + "pos": "verb", + "word_frequency": 1225 + }, + { + "word": "ressembler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resemble;to look like", + "example_sentence_native": "Elle ressemble beaucoup à sa mère.", + "example_sentence_english": "She looks a lot like her mother.", + "pos": "verb", + "word_frequency": 1226 + }, + { + "word": "roman", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novel", + "example_sentence_native": "J'ai lu un excellent roman récemment.", + "example_sentence_english": "I read an excellent novel recently.", + "pos": "noun", + "word_frequency": 1227 + }, + { + "word": "régulier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regularly", + "example_sentence_native": "Il fait du sport régulièrement.", + "example_sentence_english": "He exercises regularly.", + "pos": "adverb", + "word_frequency": 1228 + }, + { + "word": "star", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "star", + "example_sentence_native": "Elle est une star de cinéma.", + "example_sentence_english": "She is a movie star.", + "pos": "noun", + "word_frequency": 1229 + }, + { + "word": "structure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structure", + "example_sentence_native": "La structure du bâtiment est très solide.", + "example_sentence_english": "The building's structure is very solid.", + "pos": "noun", + "word_frequency": 1230 + }, + { + "word": "tiers", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "third (party);third (part)", + "example_sentence_native": "Un tiers des participants a voté contre.", + "example_sentence_english": "A third of the participants voted against.", + "pos": "adjective", + "word_frequency": 1231 + }, + { + "word": "écouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to listen", + "example_sentence_native": "J'aime écouter de la musique.", + "example_sentence_english": "I like to listen to music.", + "pos": "verb", + "word_frequency": 1232 + }, + { + "word": "étape", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "step;stage", + "example_sentence_native": "C'est une étape importante dans le processus.", + "example_sentence_english": "This is an important step in the process.", + "pos": "noun", + "word_frequency": 1233 + }, + { + "word": "ajouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to add", + "example_sentence_native": "Pouvez-vous ajouter du sucre, s'il vous plaît?", + "example_sentence_english": "Can you add some sugar, please?", + "pos": "verb", + "word_frequency": 1234 + }, + { + "word": "avantage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantage", + "example_sentence_native": "Quel est l'avantage de cette solution?", + "example_sentence_english": "What is the advantage of this solution?", + "pos": "noun", + "word_frequency": 1235 + }, + { + "word": "bataille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battle", + "example_sentence_native": "Ils ont gagné la bataille.", + "example_sentence_english": "They won the battle.", + "pos": "noun", + "word_frequency": 1236 + }, + { + "word": "boîte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box", + "example_sentence_native": "Mets les jouets dans la boîte.", + "example_sentence_english": "Put the toys in the box.", + "pos": "noun", + "word_frequency": 1237 + }, + { + "word": "capital", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital (money;city)", + "example_sentence_native": "Il a investi un capital important.", + "example_sentence_english": "He invested a significant capital.", + "pos": "noun", + "word_frequency": 1238 + }, + { + "word": "certes", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainly;indeed", + "example_sentence_native": "Certes, la tâche est difficile, mais pas impossible.", + "example_sentence_english": "Certainly, the task is difficult, but not impossible.", + "pos": "adverb", + "word_frequency": 1239 + }, + { + "word": "cheval", + "article_with_word": "le cheval", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "horse", + "example_sentence_native": "Le cheval galope dans le pré.", + "example_sentence_english": "The horse gallops in the meadow.", + "pos": "noun", + "word_frequency": 1240 + }, + { + "word": "conséquence", + "article_with_word": "la conséquence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consequence", + "example_sentence_native": "Chaque action a ses conséquences.", + "example_sentence_english": "Every action has its consequences.", + "pos": "noun", + "word_frequency": 1241 + }, + { + "word": "dangereux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dangerous", + "example_sentence_native": "C'est un animal dangereux.", + "example_sentence_english": "It's a dangerous animal.", + "pos": "adjective", + "word_frequency": 1242 + }, + { + "word": "danse", + "article_with_word": "la danse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dance", + "example_sentence_native": "J'aime la danse classique.", + "example_sentence_english": "I like classical dance.", + "pos": "noun", + "word_frequency": 1243 + }, + { + "word": "document", + "article_with_word": "le document", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "document", + "example_sentence_native": "Veuillez signer ce document.", + "example_sentence_english": "Please sign this document.", + "pos": "noun", + "word_frequency": 1244 + }, + { + "word": "défendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defend;to forbid", + "example_sentence_native": "Il faut défendre nos droits.", + "example_sentence_english": "We must defend our rights.", + "pos": "verb", + "word_frequency": 1245 + }, + { + "word": "exercice", + "article_with_word": "l'exercice", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "exercise", + "example_sentence_native": "Faites les exercices à la page 20.", + "example_sentence_english": "Do the exercises on page 20.", + "pos": "noun", + "word_frequency": 1246 + }, + { + "word": "institut", + "article_with_word": "l'institut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "institute", + "example_sentence_native": "Il travaille à l'institut de recherche.", + "example_sentence_english": "He works at the research institute.", + "pos": "noun", + "word_frequency": 1247 + }, + { + "word": "intervention", + "article_with_word": "l'intervention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervention", + "example_sentence_native": "L'intervention chirurgicale a été un succès.", + "example_sentence_english": "The surgical intervention was a success.", + "pos": "noun", + "word_frequency": 1248 + }, + { + "word": "local", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local", + "example_sentence_native": "Nous achetons des produits locaux.", + "example_sentence_english": "We buy local products.", + "pos": "adjective", + "word_frequency": 1249 + }, + { + "word": "logique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logical", + "example_sentence_native": "C'est une solution logique.", + "example_sentence_english": "It's a logical solution.", + "pos": "adjective", + "word_frequency": 1250 + }, + { + "word": "millier", + "article_with_word": "le millier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thousand (as a noun)", + "example_sentence_native": "Des milliers de personnes ont assisté au concert.", + "example_sentence_english": "Thousands of people attended the concert.", + "pos": "noun", + "word_frequency": 1251 + }, + { + "word": "monter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go up;to climb", + "example_sentence_native": "Il monte les escaliers.", + "example_sentence_english": "He goes up the stairs.", + "pos": "verb", + "word_frequency": 1252 + }, + { + "word": "palais", + "article_with_word": "le palais", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palace;palate", + "example_sentence_native": "Le roi habite dans un grand palais.", + "example_sentence_english": "The king lives in a large palace.", + "pos": "noun", + "word_frequency": 1253 + }, + { + "word": "passant", + "article_with_word": "le passant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passer-by", + "example_sentence_native": "Un passant m'a indiqué le chemin.", + "example_sentence_english": "A passer-by showed me the way.", + "pos": "noun", + "word_frequency": 1254 + }, + { + "word": "reprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take back;to resume", + "example_sentence_native": "Il a repris son travail après les vacances.", + "example_sentence_english": "He resumed his work after the holidays.", + "pos": "verb", + "word_frequency": 1255 + }, + { + "word": "revoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to see again;to review", + "example_sentence_native": "J'espère te revoir bientôt.", + "example_sentence_english": "I hope to see you again soon.", + "pos": "verb", + "word_frequency": 1256 + }, + { + "word": "récent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recent", + "example_sentence_native": "C'est un événement récent.", + "example_sentence_english": "It's a recent event.", + "pos": "adverb", + "word_frequency": 1258 + }, + { + "word": "sentiment", + "article_with_word": "le sentiment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling;sentiment", + "example_sentence_native": "J'ai un bon sentiment à ce sujet.", + "example_sentence_english": "I have a good feeling about this.", + "pos": "noun", + "word_frequency": 1259 + }, + { + "word": "soin", + "article_with_word": "le soin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "care;treatment", + "example_sentence_native": "Il prend grand soin de ses plantes.", + "example_sentence_english": "He takes great care of his plants.", + "pos": "noun", + "word_frequency": 1260 + }, + { + "word": "statistique", + "article_with_word": "la statistique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistic", + "example_sentence_native": "Les statistiques montrent une augmentation.", + "example_sentence_english": "The statistics show an increase.", + "pos": "noun", + "word_frequency": 1261 + }, + { + "word": "statut", + "article_with_word": "le statut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "status", + "example_sentence_native": "Quel est votre statut professionnel ?", + "example_sentence_english": "What is your professional status?", + "pos": "noun", + "word_frequency": 1262 + }, + { + "word": "sélection", + "article_with_word": "la sélection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selection", + "example_sentence_native": "Nous avons fait une bonne sélection de vins.", + "example_sentence_english": "We made a good selection of wines.", + "pos": "noun", + "word_frequency": 1263 + }, + { + "word": "tenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try;to attempt", + "example_sentence_native": "Je vais tenter ma chance.", + "example_sentence_english": "I'm going to try my luck.", + "pos": "verb", + "word_frequency": 1264 + }, + { + "word": "vivant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living;alive", + "example_sentence_native": "C'est un être vivant.", + "example_sentence_english": "It's a living being.", + "pos": "adjective", + "word_frequency": 1265 + }, + { + "word": "web", + "article_with_word": "le web", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "web", + "example_sentence_native": "J'ai trouvé l'information sur le web.", + "example_sentence_english": "I found the information on the web.", + "pos": "noun", + "word_frequency": 1266 + }, + { + "word": "baisse", + "article_with_word": "la baisse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decrease;fall", + "example_sentence_native": "On observe une baisse des prix.", + "example_sentence_english": "We observe a decrease in prices.", + "pos": "noun", + "word_frequency": 1267 + }, + { + "word": "collège", + "article_with_word": "le collège", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "middle school", + "example_sentence_native": "Mon fils va au collège.", + "example_sentence_english": "My son goes to middle school.", + "pos": "noun", + "word_frequency": 1269 + }, + { + "word": "construire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to build;to construct", + "example_sentence_native": "Ils vont construire une nouvelle maison.", + "example_sentence_english": "They are going to build a new house.", + "pos": "verb", + "word_frequency": 1270 + }, + { + "word": "domicile", + "article_with_word": "le domicile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home;residence", + "example_sentence_native": "Veuillez indiquer votre domicile.", + "example_sentence_english": "Please indicate your home address.", + "pos": "noun", + "word_frequency": 1271 + }, + { + "word": "effort", + "article_with_word": "l'effort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "effort", + "example_sentence_native": "Il a fait beaucoup d'efforts.", + "example_sentence_english": "He made a lot of effort.", + "pos": "noun", + "word_frequency": 1272 + }, + { + "word": "employé", + "article_with_word": "l'employé", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "employee", + "example_sentence_native": "L'employé est très compétent.", + "example_sentence_english": "The employee is very competent.", + "pos": "noun", + "word_frequency": 1273 + }, + { + "word": "examen", + "article_with_word": "l'examen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exam;test", + "example_sentence_native": "J'ai un examen demain.", + "example_sentence_english": "I have an exam tomorrow.", + "pos": "noun", + "word_frequency": 1274 + }, + { + "word": "moteur", + "article_with_word": "le moteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engine;motor", + "example_sentence_native": "Le moteur de la voiture est en panne.", + "example_sentence_english": "The car's engine is broken.", + "pos": "noun", + "word_frequency": 1276 + }, + { + "word": "officiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official", + "example_sentence_native": "C'est une déclaration officielle.", + "example_sentence_english": "It's an official statement.", + "pos": "adjective", + "word_frequency": 1277 + }, + { + "word": "ouvrage", + "article_with_word": "l'ouvrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work (e.g.;book;construction)", + "example_sentence_native": "Cet ouvrage est très intéressant.", + "example_sentence_english": "This work is very interesting.", + "pos": "noun", + "word_frequency": 1278 + }, + { + "word": "partager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to share", + "example_sentence_native": "Nous allons partager le gâteau.", + "example_sentence_english": "We are going to share the cake.", + "pos": "verb", + "word_frequency": 1279 + }, + { + "word": "participation", + "article_with_word": "la participation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "participation", + "example_sentence_native": "La participation à la réunion est obligatoire.", + "example_sentence_english": "Participation in the meeting is mandatory.", + "pos": "noun", + "word_frequency": 1280 + }, + { + "word": "patron", + "article_with_word": "le patron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boss", + "example_sentence_native": "Mon patron est très exigeant.", + "example_sentence_english": "My boss is very demanding.", + "pos": "noun", + "word_frequency": 1281 + }, + { + "word": "posséder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to possess", + "example_sentence_native": "Il possède une grande maison.", + "example_sentence_english": "He owns a big house.", + "pos": "verb", + "word_frequency": 1282 + }, + { + "word": "préparer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to prepare", + "example_sentence_native": "Je dois préparer le dîner.", + "example_sentence_english": "I need to prepare dinner.", + "pos": "verb", + "word_frequency": 1283 + }, + { + "word": "réduction", + "article_with_word": "la réduction", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reduction", + "example_sentence_native": "J'ai obtenu une réduction sur ce produit.", + "example_sentence_english": "I got a discount on this product.", + "pos": "noun", + "word_frequency": 1284 + }, + { + "word": "réel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "real", + "example_sentence_native": "C'est un problème réel.", + "example_sentence_english": "It's a real problem.", + "pos": "adjective", + "word_frequency": 1285 + }, + { + "word": "réforme", + "article_with_word": "la réforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reform", + "example_sentence_native": "Le gouvernement a annoncé une nouvelle réforme.", + "example_sentence_english": "The government announced a new reform.", + "pos": "noun", + "word_frequency": 1286 + }, + { + "word": "souvenir", + "article_with_word": "le souvenir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "memory", + "example_sentence_native": "J'ai de bons souvenirs de mon enfance.", + "example_sentence_english": "I have good memories of my childhood.", + "pos": "noun", + "word_frequency": 1287 + }, + { + "word": "test", + "article_with_word": "le test", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "test", + "example_sentence_native": "Nous allons passer un test demain.", + "example_sentence_english": "We are going to take a test tomorrow.", + "pos": "noun", + "word_frequency": 1288 + }, + { + "word": "utile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "useful", + "example_sentence_native": "Ce livre est très utile.", + "example_sentence_english": "This book is very useful.", + "pos": "adjective", + "word_frequency": 1289 + }, + { + "word": "achat", + "article_with_word": "l'achat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "purchase", + "example_sentence_native": "J'ai fait un achat important.", + "example_sentence_english": "I made a significant purchase.", + "pos": "noun", + "word_frequency": 1290 + }, + { + "word": "bâtiment", + "article_with_word": "le bâtiment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "building", + "example_sentence_native": "Ce bâtiment est très ancien.", + "example_sentence_english": "This building is very old.", + "pos": "noun", + "word_frequency": 1292 + }, + { + "word": "cerveau", + "article_with_word": "le cerveau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brain", + "example_sentence_native": "Le cerveau humain est complexe.", + "example_sentence_english": "The human brain is complex.", + "pos": "noun", + "word_frequency": 1293 + }, + { + "word": "civil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civil", + "example_sentence_native": "Il est important de maintenir la paix civile.", + "example_sentence_english": "It is important to maintain civil peace.", + "pos": "adjective", + "word_frequency": 1294 + }, + { + "word": "commentaire", + "article_with_word": "le commentaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comment", + "example_sentence_native": "J'ai lu votre commentaire en ligne.", + "example_sentence_english": "I read your comment online.", + "pos": "noun", + "word_frequency": 1295 + }, + { + "word": "concept", + "article_with_word": "le concept", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concept", + "example_sentence_native": "C'est un concept difficile à comprendre.", + "example_sentence_english": "It's a difficult concept to understand.", + "pos": "noun", + "word_frequency": 1296 + }, + { + "word": "disposition", + "article_with_word": "la disposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disposition", + "example_sentence_native": "Les documents sont à votre disposition.", + "example_sentence_english": "The documents are at your disposal.", + "pos": "noun", + "word_frequency": 1297 + }, + { + "word": "indépendance", + "article_with_word": "l'indépendance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence", + "example_sentence_native": "Le pays a célébré son indépendance.", + "example_sentence_english": "The country celebrated its independence.", + "pos": "noun", + "word_frequency": 1298 + }, + { + "word": "matériel", + "article_with_word": "le matériel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material", + "example_sentence_native": "Nous avons besoin de nouveau matériel.", + "example_sentence_english": "We need new equipment.", + "pos": "noun", + "word_frequency": 1300 + }, + { + "word": "montant", + "article_with_word": "le montant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amount", + "example_sentence_native": "Quel est le montant total ?", + "example_sentence_english": "What is the total amount?", + "pos": "noun", + "word_frequency": 1301 + }, + { + "word": "nation", + "article_with_word": "la nation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nation", + "example_sentence_native": "La nation est unie.", + "example_sentence_english": "The nation is united.", + "pos": "noun", + "word_frequency": 1302 + }, + { + "word": "nommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to name", + "example_sentence_native": "Ils vont le nommer directeur.", + "example_sentence_english": "They are going to appoint him director.", + "pos": "verb", + "word_frequency": 1303 + }, + { + "word": "paraître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appear", + "example_sentence_native": "Il paraît que le temps va changer.", + "example_sentence_english": "It seems that the weather will change.", + "pos": "verb", + "word_frequency": 1304 + }, + { + "word": "réaction", + "article_with_word": "la réaction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reaction", + "example_sentence_native": "Sa réaction a été surprenante.", + "example_sentence_english": "His reaction was surprising.", + "pos": "noun", + "word_frequency": 1306 + }, + { + "word": "réduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce", + "example_sentence_native": "Nous devons réduire nos dépenses.", + "example_sentence_english": "We must reduce our expenses.", + "pos": "verb", + "word_frequency": 1307 + }, + { + "word": "sourire", + "article_with_word": "le sourire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smile", + "example_sentence_native": "Son sourire est contagieux.", + "example_sentence_english": "Her smile is contagious.", + "pos": "noun", + "word_frequency": 1308 + }, + { + "word": "tourner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn", + "example_sentence_native": "Tournez à droite au prochain carrefour.", + "example_sentence_english": "Turn right at the next intersection.", + "pos": "verb", + "word_frequency": 1309 + }, + { + "word": "van", + "article_with_word": "le van", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "van", + "example_sentence_native": "Nous avons loué un van pour le déménagement.", + "example_sentence_english": "We rented a van for the move.", + "pos": "noun", + "word_frequency": 1310 + }, + { + "word": "alcool", + "article_with_word": "l'alcool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alcohol", + "example_sentence_native": "La consommation d'alcool est interdite ici.", + "example_sentence_english": "Alcohol consumption is prohibited here.", + "pos": "noun", + "word_frequency": 1311 + }, + { + "word": "autrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "otherwise", + "example_sentence_native": "Fais-le, autrement tu auras des problèmes.", + "example_sentence_english": "Do it, otherwise you'll have problems.", + "pos": "adverb", + "word_frequency": 1312 + }, + { + "word": "battre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to beat", + "example_sentence_native": "Son cœur battait très fort.", + "example_sentence_english": "His heart was beating very fast.", + "pos": "verb", + "word_frequency": 1313 + }, + { + "word": "coût", + "article_with_word": "le coût", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cost", + "example_sentence_native": "Le coût de la vie augmente.", + "example_sentence_english": "The cost of living is increasing.", + "pos": "noun", + "word_frequency": 1314 + }, + { + "word": "disponible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "available", + "example_sentence_native": "Je suis disponible demain matin.", + "example_sentence_english": "I am available tomorrow morning.", + "pos": "adjective", + "word_frequency": 1315 + }, + { + "word": "fleur", + "article_with_word": "la fleur", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "flower", + "example_sentence_native": "J'ai acheté des fleurs pour ma mère.", + "example_sentence_english": "I bought flowers for my mother.", + "pos": "noun", + "word_frequency": 1316 + }, + { + "word": "indiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to indicate", + "example_sentence_native": "Veuillez indiquer votre nom.", + "example_sentence_english": "Please indicate your name.", + "pos": "verb", + "word_frequency": 1318 + }, + { + "word": "intention", + "article_with_word": "l'intention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intention", + "example_sentence_native": "Il n'avait pas l'intention de vous blesser.", + "example_sentence_english": "He had no intention of hurting you.", + "pos": "noun", + "word_frequency": 1319 + }, + { + "word": "jardin", + "article_with_word": "le jardin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garden", + "example_sentence_native": "Le jardin est plein de fleurs.", + "example_sentence_english": "The garden is full of flowers.", + "pos": "noun", + "word_frequency": 1320 + }, + { + "word": "lac", + "article_with_word": "le lac", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lake", + "example_sentence_native": "Nous avons nagé dans le lac.", + "example_sentence_english": "We swam in the lake.", + "pos": "noun", + "word_frequency": 1321 + }, + { + "word": "obligé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obliged;forced", + "example_sentence_native": "Je me sens obligé de l'aider.", + "example_sentence_english": "I feel obliged to help him.", + "pos": "adjective", + "word_frequency": 1324 + }, + { + "word": "patrimoine", + "article_with_word": "le patrimoine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heritage;patrimony", + "example_sentence_native": "Le patrimoine culturel est très important.", + "example_sentence_english": "Cultural heritage is very important.", + "pos": "noun", + "word_frequency": 1325 + }, + { + "word": "phase", + "article_with_word": "la phase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phase;stage", + "example_sentence_native": "Nous entrons dans une nouvelle phase du projet.", + "example_sentence_english": "We are entering a new phase of the project.", + "pos": "noun", + "word_frequency": 1326 + }, + { + "word": "rare", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rare", + "example_sentence_native": "C'est une occasion rare.", + "example_sentence_english": "It's a rare opportunity.", + "pos": "adjective", + "word_frequency": 1327 + }, + { + "word": "séance", + "article_with_word": "la séance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "session;meeting", + "example_sentence_native": "La séance a duré deux heures.", + "example_sentence_english": "The session lasted two hours.", + "pos": "noun", + "word_frequency": 1328 + }, + { + "word": "tv", + "article_with_word": "la TV", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "TV;television", + "example_sentence_native": "J'ai regardé la TV hier soir.", + "example_sentence_english": "I watched TV last night.", + "pos": "noun", + "word_frequency": 1330 + }, + { + "word": "urgence", + "article_with_word": "l'urgence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency;urgency", + "example_sentence_native": "C'est une situation d'urgence.", + "example_sentence_english": "It's an emergency situation.", + "pos": "noun", + "word_frequency": 1331 + }, + { + "word": "accepter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to accept", + "example_sentence_native": "J'accepte votre proposition.", + "example_sentence_english": "I accept your proposal.", + "pos": "verb", + "word_frequency": 1333 + }, + { + "word": "agent", + "article_with_word": "l'agent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agent;officer", + "example_sentence_native": "L'agent de police est arrivé.", + "example_sentence_english": "The police officer arrived.", + "pos": "noun", + "word_frequency": 1334 + }, + { + "word": "agriculture", + "article_with_word": "l'agriculture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agriculture", + "example_sentence_native": "L'agriculture est un secteur clé.", + "example_sentence_english": "Agriculture is a key sector.", + "pos": "noun", + "word_frequency": 1335 + }, + { + "word": "améliorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to improve", + "example_sentence_native": "Nous devons améliorer nos compétences.", + "example_sentence_english": "We must improve our skills.", + "pos": "verb", + "word_frequency": 1336 + }, + { + "word": "auto", + "article_with_word": "l'auto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car;auto", + "example_sentence_native": "J'ai acheté une nouvelle auto.", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 1337 + }, + { + "word": "cancer", + "article_with_word": "le cancer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancer", + "example_sentence_native": "La recherche sur le cancer progresse.", + "example_sentence_english": "Cancer research is progressing.", + "pos": "noun", + "word_frequency": 1338 + }, + { + "word": "championnat", + "article_with_word": "le championnat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "championship", + "example_sentence_native": "Ils ont gagné le championnat national.", + "example_sentence_english": "They won the national championship.", + "pos": "noun", + "word_frequency": 1339 + }, + { + "word": "chasse", + "article_with_word": "la chasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunt;hunting", + "example_sentence_native": "La chasse est interdite dans ce parc.", + "example_sentence_english": "Hunting is forbidden in this park.", + "pos": "noun", + "word_frequency": 1340 + }, + { + "word": "complet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "complete;full", + "example_sentence_native": "Le restaurant est complet ce soir.", + "example_sentence_english": "The restaurant is full tonight.", + "pos": "adjective", + "word_frequency": 1341 + }, + { + "word": "complexe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complex", + "example_sentence_native": "C'est un problème très complexe.", + "example_sentence_english": "It's a very complex problem.", + "pos": "adjective", + "word_frequency": 1342 + }, + { + "word": "concert", + "article_with_word": "le concert", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "concert", + "example_sentence_native": "Nous allons au concert ce soir.", + "example_sentence_english": "We are going to the concert tonight.", + "pos": "noun", + "word_frequency": 1343 + }, + { + "word": "constitution", + "article_with_word": "la constitution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitution", + "example_sentence_native": "La constitution garantit nos droits.", + "example_sentence_english": "The constitution guarantees our rights.", + "pos": "noun", + "word_frequency": 1344 + }, + { + "word": "déclaration", + "article_with_word": "la déclaration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declaration;statement", + "example_sentence_native": "Il a fait une déclaration publique.", + "example_sentence_english": "He made a public statement.", + "pos": "noun", + "word_frequency": 1345 + }, + { + "word": "développer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to develop", + "example_sentence_native": "Nous devons développer de nouvelles stratégies.", + "example_sentence_english": "We must develop new strategies.", + "pos": "verb", + "word_frequency": 1346 + }, + { + "word": "gérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manage;to handle", + "example_sentence_native": "Il doit gérer son temps.", + "example_sentence_english": "He must manage his time.", + "pos": "verb", + "word_frequency": 1349 + }, + { + "word": "impact", + "article_with_word": "l'impact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impact", + "example_sentence_native": "L'impact du changement climatique est énorme.", + "example_sentence_english": "The impact of climate change is enormous.", + "pos": "noun", + "word_frequency": 1350 + }, + { + "word": "inscrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to register;to enroll;to inscribe", + "example_sentence_native": "Je vais m'inscrire à un cours.", + "example_sentence_english": "I am going to enroll in a course.", + "pos": "verb", + "word_frequency": 1351 + }, + { + "word": "joie", + "article_with_word": "la joie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joy", + "example_sentence_native": "Elle a ressenti une grande joie.", + "example_sentence_english": "She felt great joy.", + "pos": "noun", + "word_frequency": 1352 + }, + { + "word": "kilomètre", + "article_with_word": "le kilomètre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilometer", + "example_sentence_native": "La ville est à dix kilomètres.", + "example_sentence_english": "The city is ten kilometers away.", + "pos": "noun", + "word_frequency": 1353 + }, + { + "word": "métier", + "article_with_word": "le métier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "profession;trade", + "example_sentence_native": "Quel est votre métier ?", + "example_sentence_english": "What is your profession?", + "pos": "noun", + "word_frequency": 1356 + }, + { + "word": "nez", + "article_with_word": "le nez", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nose", + "example_sentence_native": "Il a un petit nez.", + "example_sentence_english": "He has a small nose.", + "pos": "noun", + "word_frequency": 1357 + }, + { + "word": "occuper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to occupy;to take up;to keep busy", + "example_sentence_native": "Il occupe un poste important.", + "example_sentence_english": "He holds an important position.", + "pos": "verb", + "word_frequency": 1358 + }, + { + "word": "profiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enjoy;to take advantage of", + "example_sentence_native": "Profitez bien de vos vacances !", + "example_sentence_english": "Enjoy your vacation!", + "pos": "verb", + "word_frequency": 1359 + }, + { + "word": "revanche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revenge;comeback", + "example_sentence_native": "Il a pris sa revanche après la défaite.", + "example_sentence_english": "He took his revenge after the defeat.", + "pos": "noun", + "word_frequency": 1360 + }, + { + "word": "sauver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to save", + "example_sentence_native": "Il faut sauver la planète.", + "example_sentence_english": "We must save the planet.", + "pos": "verb", + "word_frequency": 1361 + }, + { + "word": "scolaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "school (adj.);academic", + "example_sentence_native": "C'est une année scolaire importante.", + "example_sentence_english": "It's an important school year.", + "pos": "adjective", + "word_frequency": 1362 + }, + { + "word": "spécial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "special", + "example_sentence_native": "C'est un jour très spécial pour moi.", + "example_sentence_english": "It's a very special day for me.", + "pos": "adjective", + "word_frequency": 1363 + }, + { + "word": "troupe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troop;company (of actors)", + "example_sentence_native": "La troupe de théâtre a donné une excellente performance.", + "example_sentence_english": "The theater company gave an excellent performance.", + "pos": "noun", + "word_frequency": 1364 + }, + { + "word": "télévision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "television", + "example_sentence_native": "J'aime regarder la télévision le soir.", + "example_sentence_english": "I like to watch television in the evening.", + "pos": "noun", + "word_frequency": 1365 + }, + { + "word": "accueil", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welcome;reception", + "example_sentence_native": "L'accueil à l'hôtel était très chaleureux.", + "example_sentence_english": "The welcome at the hotel was very warm.", + "pos": "noun", + "word_frequency": 1366 + }, + { + "word": "bordel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess", + "example_sentence_native": "Quel bordel dans cette pièce!", + "example_sentence_english": "What a mess in this room!", + "pos": "noun", + "word_frequency": 1368 + }, + { + "word": "cadeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gift;present", + "example_sentence_native": "J'ai acheté un cadeau pour mon ami.", + "example_sentence_english": "I bought a gift for my friend.", + "pos": "noun", + "word_frequency": 1369 + }, + { + "word": "cent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hundred", + "example_sentence_native": "Il y a cent personnes dans la salle.", + "example_sentence_english": "There are a hundred people in the room.", + "pos": "numeral", + "word_frequency": 1370 + }, + { + "word": "colère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anger", + "example_sentence_native": "Sa colère était visible.", + "example_sentence_english": "His anger was visible.", + "pos": "noun", + "word_frequency": 1372 + }, + { + "word": "conduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drive;to lead", + "example_sentence_native": "Je dois conduire ma voiture au garage.", + "example_sentence_english": "I have to drive my car to the garage.", + "pos": "verb", + "word_frequency": 1373 + }, + { + "word": "dormir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sleep", + "example_sentence_native": "J'aime dormir tard le week-end.", + "example_sentence_english": "I like to sleep late on weekends.", + "pos": "verb", + "word_frequency": 1374 + }, + { + "word": "dépendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depend", + "example_sentence_native": "Tout dépend de la situation.", + "example_sentence_english": "Everything depends on the situation.", + "pos": "verb", + "word_frequency": 1375 + }, + { + "word": "excellent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excellent", + "example_sentence_native": "C'est une excellente idée.", + "example_sentence_english": "It's an excellent idea.", + "pos": "adjective", + "word_frequency": 1376 + }, + { + "word": "foutre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to give a damn;to put (vulgar)", + "example_sentence_native": "Je m'en fous.", + "example_sentence_english": "I don't give a damn.", + "pos": "verb", + "word_frequency": 1377 + }, + { + "word": "hasard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chance;random", + "example_sentence_native": "C'est le fruit du hasard.", + "example_sentence_english": "It's the result of chance.", + "pos": "noun", + "word_frequency": 1378 + }, + { + "word": "jaune", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yellow", + "example_sentence_native": "J'aime la couleur jaune.", + "example_sentence_english": "I like the color yellow.", + "pos": "adjective", + "word_frequency": 1380 + }, + { + "word": "joli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pretty;nice", + "example_sentence_native": "Elle porte une jolie robe.", + "example_sentence_english": "She is wearing a pretty dress.", + "pos": "adjective", + "word_frequency": 1381 + }, + { + "word": "longueur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "length", + "example_sentence_native": "La longueur de la table est de deux mètres.", + "example_sentence_english": "The length of the table is two meters.", + "pos": "noun", + "word_frequency": 1383 + }, + { + "word": "minimum", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimum", + "example_sentence_native": "Il faut un minimum de trois personnes.", + "example_sentence_english": "A minimum of three people is required.", + "pos": "noun", + "word_frequency": 1384 + }, + { + "word": "musulman", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Muslim", + "example_sentence_native": "C'est un musulman pratiquant.", + "example_sentence_english": "He is a practicing Muslim.", + "pos": "noun", + "word_frequency": 1385 + }, + { + "word": "numérique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digital;numeric", + "example_sentence_native": "La transition numérique est en cours.", + "example_sentence_english": "The digital transition is underway.", + "pos": "adjective", + "word_frequency": 1386 + }, + { + "word": "phrase", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sentence;phrase", + "example_sentence_native": "Peux-tu répéter cette phrase?", + "example_sentence_english": "Can you repeat this sentence?", + "pos": "noun", + "word_frequency": 1387 + }, + { + "word": "pointe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip;point;peak", + "example_sentence_native": "La pointe du crayon est cassée.", + "example_sentence_english": "The tip of the pencil is broken.", + "pos": "noun", + "word_frequency": 1388 + }, + { + "word": "professionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional", + "example_sentence_native": "Il a une attitude très professionnelle.", + "example_sentence_english": "He has a very professional attitude.", + "pos": "adjective", + "word_frequency": 1389 + }, + { + "word": "proposition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proposal;suggestion", + "example_sentence_native": "J'ai une proposition à vous faire.", + "example_sentence_english": "I have a proposal to make to you.", + "pos": "noun", + "word_frequency": 1390 + }, + { + "word": "publication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publication", + "example_sentence_native": "La publication de l'article est prévue pour demain.", + "example_sentence_english": "The publication of the article is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 1391 + }, + { + "word": "secours", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "help;aid;rescue", + "example_sentence_native": "Appelez les secours!", + "example_sentence_english": "Call for help!", + "pos": "noun", + "word_frequency": 1392 + }, + { + "word": "sommet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summit;peak;top", + "example_sentence_native": "Ils ont atteint le sommet de la montagne.", + "example_sentence_english": "They reached the summit of the mountain.", + "pos": "noun", + "word_frequency": 1393 + }, + { + "word": "électrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electric", + "example_sentence_native": "C'est une voiture électrique.", + "example_sentence_english": "It's an electric car.", + "pos": "adjective", + "word_frequency": 1395 + }, + { + "word": "œil", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eye", + "example_sentence_native": "Il a les yeux bleus.", + "example_sentence_english": "He has blue eyes.", + "pos": "noun", + "word_frequency": 1396 + }, + { + "word": "arabe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arab;Arabic", + "example_sentence_native": "Il parle arabe couramment.", + "example_sentence_english": "He speaks Arabic fluently.", + "pos": "adjective", + "word_frequency": 1397 + }, + { + "word": "augmenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to increase;to raise", + "example_sentence_native": "Les prix vont augmenter.", + "example_sentence_english": "Prices are going to increase.", + "pos": "verb", + "word_frequency": 1398 + }, + { + "word": "bar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bar;pub", + "example_sentence_native": "Allons prendre un verre au bar.", + "example_sentence_english": "Let's go have a drink at the bar.", + "pos": "noun", + "word_frequency": 1399 + }, + { + "word": "blague", + "article_with_word": "la blague", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joke", + "example_sentence_native": "Il a raconté une drôle de blague.", + "example_sentence_english": "He told a funny joke.", + "pos": "noun", + "word_frequency": 1400 + }, + { + "word": "champion", + "article_with_word": "le champion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champion", + "example_sentence_native": "Le champion a soulevé la coupe.", + "example_sentence_english": "The champion lifted the cup.", + "pos": "noun", + "word_frequency": 1401 + }, + { + "word": "chute", + "article_with_word": "la chute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fall;drop", + "example_sentence_native": "La chute des feuilles annonce l'automne.", + "example_sentence_english": "The fall of the leaves announces autumn.", + "pos": "noun", + "word_frequency": 1402 + }, + { + "word": "compétition", + "article_with_word": "la compétition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition", + "example_sentence_native": "Elle a gagné la compétition de natation.", + "example_sentence_english": "She won the swimming competition.", + "pos": "noun", + "word_frequency": 1403 + }, + { + "word": "crime", + "article_with_word": "le crime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crime", + "example_sentence_native": "Le détective enquête sur le crime.", + "example_sentence_english": "The detective is investigating the crime.", + "pos": "noun", + "word_frequency": 1404 + }, + { + "word": "croix", + "article_with_word": "la croix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cross", + "example_sentence_native": "Il portait une petite croix autour du cou.", + "example_sentence_english": "He wore a small cross around his neck.", + "pos": "noun", + "word_frequency": 1405 + }, + { + "word": "description", + "article_with_word": "la description", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "description", + "example_sentence_native": "Pouvez-vous me donner une description de la personne?", + "example_sentence_english": "Can you give me a description of the person?", + "pos": "noun", + "word_frequency": 1406 + }, + { + "word": "difficulté", + "article_with_word": "la difficulté", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difficulty", + "example_sentence_native": "Il a rencontré des difficultés à comprendre.", + "example_sentence_english": "He encountered difficulties in understanding.", + "pos": "noun", + "word_frequency": 1407 + }, + { + "word": "durer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to last", + "example_sentence_native": "Le film dure deux heures.", + "example_sentence_english": "The movie lasts two hours.", + "pos": "verb", + "word_frequency": 1408 + }, + { + "word": "dépense", + "article_with_word": "la dépense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expense", + "example_sentence_native": "Nous devons réduire nos dépenses.", + "example_sentence_english": "We must reduce our expenses.", + "pos": "noun", + "word_frequency": 1409 + }, + { + "word": "efficace", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effective;efficient", + "example_sentence_native": "Cette méthode est très efficace.", + "example_sentence_english": "This method is very effective.", + "pos": "adjective", + "word_frequency": 1410 + }, + { + "word": "fiche", + "article_with_word": "la fiche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "card;sheet", + "example_sentence_native": "Remplissez cette fiche d'inscription.", + "example_sentence_english": "Fill out this registration card.", + "pos": "noun", + "word_frequency": 1411 + }, + { + "word": "garçon", + "article_with_word": "le garçon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boy;waiter", + "example_sentence_native": "Le petit garçon joue dans le jardin.", + "example_sentence_english": "The little boy is playing in the garden.", + "pos": "noun", + "word_frequency": 1412 + }, + { + "word": "interdire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forbid;to prohibit", + "example_sentence_native": "Il est interdit de fumer ici.", + "example_sentence_english": "It is forbidden to smoke here.", + "pos": "verb", + "word_frequency": 1413 + }, + { + "word": "issue", + "article_with_word": "l'issue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exit;outcome", + "example_sentence_native": "Quelle est l'issue de cette situation?", + "example_sentence_english": "What is the outcome of this situation?", + "pos": "noun", + "word_frequency": 1414 + }, + { + "word": "juif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jewish", + "example_sentence_native": "Il a visité le quartier juif de la ville.", + "example_sentence_english": "He visited the Jewish quarter of the city.", + "pos": "adjective", + "word_frequency": 1415 + }, + { + "word": "mille", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thousand", + "example_sentence_native": "Il y a mille euros sur le compte.", + "example_sentence_english": "There are a thousand euros in the account.", + "pos": "numeral", + "word_frequency": 1416 + }, + { + "word": "pain", + "article_with_word": "le pain", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bread", + "example_sentence_native": "J'achète une baguette de pain.", + "example_sentence_english": "I am buying a loaf of bread.", + "pos": "noun", + "word_frequency": 1417 + }, + { + "word": "repas", + "article_with_word": "le repas", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meal", + "example_sentence_native": "Nous prenons le repas à 19h.", + "example_sentence_english": "We have dinner at 7 PM.", + "pos": "noun", + "word_frequency": 1418 + }, + { + "word": "résistance", + "article_with_word": "la résistance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance", + "example_sentence_native": "La résistance du matériau est élevée.", + "example_sentence_english": "The material's resistance is high.", + "pos": "noun", + "word_frequency": 1419 + }, + { + "word": "soutenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support;to sustain", + "example_sentence_native": "Je vais te soutenir dans tes projets.", + "example_sentence_english": "I will support you in your projects.", + "pos": "verb", + "word_frequency": 1420 + }, + { + "word": "terminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to finish;to end", + "example_sentence_native": "J'ai terminé mon travail.", + "example_sentence_english": "I have finished my work.", + "pos": "verb", + "word_frequency": 1421 + }, + { + "word": "vêtement", + "article_with_word": "le vêtement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garment;piece of clothing", + "example_sentence_native": "Elle a acheté un nouveau vêtement.", + "example_sentence_english": "She bought a new piece of clothing.", + "pos": "noun", + "word_frequency": 1422 + }, + { + "word": "échelle", + "article_with_word": "l'échelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ladder;scale", + "example_sentence_native": "Il a monté l'échelle pour atteindre le toit.", + "example_sentence_english": "He climbed the ladder to reach the roof.", + "pos": "noun", + "word_frequency": 1423 + }, + { + "word": "appartenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to belong to", + "example_sentence_native": "Ce livre appartient à ma sœur.", + "example_sentence_english": "This book belongs to my sister.", + "pos": "verb", + "word_frequency": 1424 + }, + { + "word": "aéroport", + "article_with_word": "l'aéroport", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airport", + "example_sentence_native": "Nous allons à l'aéroport.", + "example_sentence_english": "We are going to the airport.", + "pos": "noun", + "word_frequency": 1425 + }, + { + "word": "canal", + "article_with_word": "le canal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canal;channel", + "example_sentence_native": "Le bateau navigue sur le canal.", + "example_sentence_english": "The boat is sailing on the canal.", + "pos": "noun", + "word_frequency": 1426 + }, + { + "word": "chier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shit (vulgar)", + "example_sentence_native": "Il a dit \"Ça me fait chier!\"", + "example_sentence_english": "He said \"That pisses me off!\"", + "pos": "verb", + "word_frequency": 1427 + }, + { + "word": "comte", + "article_with_word": "le comte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "count (nobleman)", + "example_sentence_native": "Le comte Dracula vivait dans un château.", + "example_sentence_english": "Count Dracula lived in a castle.", + "pos": "noun", + "word_frequency": 1428 + }, + { + "word": "constituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to constitute;to form", + "example_sentence_native": "Ces éléments constituent la base du problème.", + "example_sentence_english": "These elements constitute the basis of the problem.", + "pos": "verb", + "word_frequency": 1429 + }, + { + "word": "contrairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrary to;unlike", + "example_sentence_native": "Contrairement à ce que tu penses, il est gentil.", + "example_sentence_english": "Contrary to what you think, he is kind.", + "pos": "adverb", + "word_frequency": 1430 + }, + { + "word": "défaut", + "article_with_word": "le défaut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defect;fault", + "example_sentence_native": "Ce produit a un défaut de fabrication.", + "example_sentence_english": "This product has a manufacturing defect.", + "pos": "noun", + "word_frequency": 1431 + }, + { + "word": "enfance", + "article_with_word": "l'enfance", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "childhood", + "example_sentence_native": "Il a passé son enfance à la campagne.", + "example_sentence_english": "He spent his childhood in the countryside.", + "pos": "noun", + "word_frequency": 1432 + }, + { + "word": "estime", + "article_with_word": "l'estime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esteem;regard", + "example_sentence_native": "Il a une grande estime pour son travail.", + "example_sentence_english": "He has great esteem for his work.", + "pos": "noun", + "word_frequency": 1433 + }, + { + "word": "gare", + "article_with_word": "la gare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "train station", + "example_sentence_native": "Je vais à la gare pour prendre le train.", + "example_sentence_english": "I am going to the train station to take the train.", + "pos": "noun", + "word_frequency": 1434 + }, + { + "word": "glace", + "article_with_word": "la glace", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ice;ice cream", + "example_sentence_native": "J'aimerais une glace à la vanille.", + "example_sentence_english": "I would like a vanilla ice cream.", + "pos": "noun", + "word_frequency": 1435 + }, + { + "word": "hommage", + "article_with_word": "l'hommage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homage;tribute", + "example_sentence_native": "Ils ont rendu hommage aux victimes.", + "example_sentence_english": "They paid tribute to the victims.", + "pos": "noun", + "word_frequency": 1436 + }, + { + "word": "humanité", + "article_with_word": "l'humanité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanity", + "example_sentence_native": "L'humanité doit protéger la planète.", + "example_sentence_english": "Humanity must protect the planet.", + "pos": "noun", + "word_frequency": 1437 + }, + { + "word": "info", + "article_with_word": "l'info", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "info (informal for information)", + "example_sentence_native": "J'ai une bonne info pour toi.", + "example_sentence_english": "I have some good info for you.", + "pos": "noun", + "word_frequency": 1438 + }, + { + "word": "intéresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to interest", + "example_sentence_native": "Ce sujet m'intéresse beaucoup.", + "example_sentence_english": "This topic interests me a lot.", + "pos": "verb", + "word_frequency": 1439 + }, + { + "word": "logement", + "article_with_word": "le logement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "housing;accommodation", + "example_sentence_native": "Le logement est une préoccupation majeure pour de nombreuses familles.", + "example_sentence_english": "Housing is a major concern for many families.", + "pos": "noun", + "word_frequency": 1440 + }, + { + "word": "maximum", + "article_with_word": "le maximum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maximum", + "example_sentence_native": "Il a atteint le maximum de ses capacités.", + "example_sentence_english": "He reached the maximum of his abilities.", + "pos": "noun", + "word_frequency": 1441 + }, + { + "word": "piste", + "article_with_word": "la piste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "track;trail;slope", + "example_sentence_native": "Les skieurs descendent la piste noire.", + "example_sentence_english": "The skiers are going down the black slope.", + "pos": "noun", + "word_frequency": 1443 + }, + { + "word": "plage", + "article_with_word": "la plage", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beach", + "example_sentence_native": "Nous allons à la plage tous les jours en été.", + "example_sentence_english": "We go to the beach every day in summer.", + "pos": "noun", + "word_frequency": 1444 + }, + { + "word": "policier", + "article_with_word": "le policier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police officer", + "example_sentence_native": "Le policier a arrêté le voleur.", + "example_sentence_english": "The police officer arrested the thief.", + "pos": "noun", + "word_frequency": 1445 + }, + { + "word": "post", + "article_with_word": "le post", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "post (e.g.;social media)", + "example_sentence_native": "J'ai vu votre post sur Facebook.", + "example_sentence_english": "I saw your post on Facebook.", + "pos": "noun", + "word_frequency": 1446 + }, + { + "word": "procédure", + "article_with_word": "la procédure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure", + "example_sentence_native": "Il faut suivre la procédure pour soumettre la demande.", + "example_sentence_english": "You must follow the procedure to submit the application.", + "pos": "noun", + "word_frequency": 1447 + }, + { + "word": "produire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce;to yield", + "example_sentence_native": "Cette usine produit des voitures électriques.", + "example_sentence_english": "This factory produces electric cars.", + "pos": "verb", + "word_frequency": 1448 + }, + { + "word": "proximité", + "article_with_word": "la proximité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proximity;closeness", + "example_sentence_native": "Nous apprécions la proximité des commerces.", + "example_sentence_english": "We appreciate the proximity of the shops.", + "pos": "noun", + "word_frequency": 1449 + }, + { + "word": "précis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precise;accurate", + "example_sentence_native": "Il a donné une réponse très précise.", + "example_sentence_english": "He gave a very precise answer.", + "pos": "adjective", + "word_frequency": 1450 + }, + { + "word": "signer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sign", + "example_sentence_native": "N'oubliez pas de signer le contrat.", + "example_sentence_english": "Don't forget to sign the contract.", + "pos": "verb", + "word_frequency": 1451 + }, + { + "word": "station", + "article_with_word": "la station", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "station;resort", + "example_sentence_native": "La gare est une grande station de train.", + "example_sentence_english": "The train station is a large train station.", + "pos": "noun", + "word_frequency": 1452 + }, + { + "word": "stratégie", + "article_with_word": "la stratégie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategy", + "example_sentence_native": "Ils ont développé une nouvelle stratégie marketing.", + "example_sentence_english": "They developed a new marketing strategy.", + "pos": "noun", + "word_frequency": 1453 + }, + { + "word": "volume", + "article_with_word": "le volume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volume", + "example_sentence_native": "Baisse le volume de la musique, s'il te plaît.", + "example_sentence_english": "Lower the volume of the music, please.", + "pos": "noun", + "word_frequency": 1454 + }, + { + "word": "égalité", + "article_with_word": "l'égalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equality", + "example_sentence_native": "L'égalité des chances est un principe fondamental.", + "example_sentence_english": "Equality of opportunity is a fundamental principle.", + "pos": "noun", + "word_frequency": 1455 + }, + { + "word": "boire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to drink", + "example_sentence_native": "Je voudrais boire un verre d'eau.", + "example_sentence_english": "I would like to drink a glass of water.", + "pos": "verb", + "word_frequency": 1456 + }, + { + "word": "chômage", + "article_with_word": "le chômage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment", + "example_sentence_native": "Le taux de chômage a diminué ce trimestre.", + "example_sentence_english": "The unemployment rate decreased this quarter.", + "pos": "noun", + "word_frequency": 1457 + }, + { + "word": "clé", + "article_with_word": "la clé", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "key", + "example_sentence_native": "J'ai perdu mes clés de voiture.", + "example_sentence_english": "I lost my car keys.", + "pos": "noun", + "word_frequency": 1458 + }, + { + "word": "comportement", + "article_with_word": "le comportement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behavior", + "example_sentence_native": "Son comportement était exemplaire.", + "example_sentence_english": "His behavior was exemplary.", + "pos": "noun", + "word_frequency": 1459 + }, + { + "word": "congrès", + "article_with_word": "le congrès", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congress;conference", + "example_sentence_native": "Le congrès annuel aura lieu à Paris.", + "example_sentence_english": "The annual congress will take place in Paris.", + "pos": "noun", + "word_frequency": 1460 + }, + { + "word": "demeure", + "article_with_word": "la demeure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "residence;dwelling", + "example_sentence_native": "C'est une magnifique demeure du 18ème siècle.", + "example_sentence_english": "It's a magnificent 18th-century residence.", + "pos": "noun", + "word_frequency": 1461 + }, + { + "word": "discussion", + "article_with_word": "la discussion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "discussion", + "example_sentence_native": "Nous avons eu une longue discussion sur le sujet.", + "example_sentence_english": "We had a long discussion on the topic.", + "pos": "noun", + "word_frequency": 1462 + }, + { + "word": "distribution", + "article_with_word": "la distribution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution", + "example_sentence_native": "La distribution des colis est assurée par un service de livraison.", + "example_sentence_english": "Parcel distribution is handled by a delivery service.", + "pos": "noun", + "word_frequency": 1463 + }, + { + "word": "division", + "article_with_word": "la division", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "division", + "example_sentence_native": "La division des tâches est essentielle pour l'efficacité.", + "example_sentence_english": "The division of tasks is essential for efficiency.", + "pos": "noun", + "word_frequency": 1464 + }, + { + "word": "définition", + "article_with_word": "la définition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definition", + "example_sentence_native": "Pouvez-vous me donner la définition de ce mot ?", + "example_sentence_english": "Can you give me the definition of this word?", + "pos": "noun", + "word_frequency": 1466 + }, + { + "word": "mandat", + "article_with_word": "le mandat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mandate;term (of office);money order", + "example_sentence_native": "Son mandat présidentiel se termine l'année prochaine.", + "example_sentence_english": "His presidential term ends next year.", + "pos": "noun", + "word_frequency": 1467 + }, + { + "word": "montagne", + "article_with_word": "la montagne", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mountain", + "example_sentence_native": "Nous aimons faire de la randonnée en montagne.", + "example_sentence_english": "We like to hike in the mountains.", + "pos": "noun", + "word_frequency": 1468 + }, + { + "word": "médecine", + "article_with_word": "la médecine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine", + "example_sentence_native": "Elle étudie la médecine à l'université.", + "example_sentence_english": "She studies medicine at the university.", + "pos": "noun", + "word_frequency": 1469 + }, + { + "word": "net", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clear;clean;net", + "example_sentence_native": "Le ciel est net aujourd'hui.", + "example_sentence_english": "The sky is clear today.", + "pos": "adjective", + "word_frequency": 1470 + }, + { + "word": "nourriture", + "article_with_word": "la nourriture", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "food", + "example_sentence_native": "La nourriture est délicieuse dans ce restaurant.", + "example_sentence_english": "The food is delicious in this restaurant.", + "pos": "noun", + "word_frequency": 1471 + }, + { + "word": "pape", + "article_with_word": "le pape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pope", + "example_sentence_native": "Le pape a visité plusieurs pays cette année.", + "example_sentence_english": "The Pope visited several countries this year.", + "pos": "noun", + "word_frequency": 1472 + }, + { + "word": "phénomène", + "article_with_word": "le phénomène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phenomenon", + "example_sentence_native": "Le réchauffement climatique est un phénomène mondial.", + "example_sentence_english": "Global warming is a global phenomenon.", + "pos": "noun", + "word_frequency": 1473 + }, + { + "word": "portée", + "article_with_word": "la portée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope;range;reach", + "example_sentence_native": "La portée de cette décision est considérable.", + "example_sentence_english": "The scope of this decision is considerable.", + "pos": "noun", + "word_frequency": 1474 + }, + { + "word": "précédent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous;preceding", + "example_sentence_native": "Nous avons examiné les résultats de l'année précédente.", + "example_sentence_english": "We examined the results from the previous year.", + "pos": "adjective", + "word_frequency": 1475 + }, + { + "word": "refuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to refuse;to decline", + "example_sentence_native": "Il a refusé de répondre à la question.", + "example_sentence_english": "He refused to answer the question.", + "pos": "verb", + "word_frequency": 1476 + }, + { + "word": "reprise", + "article_with_word": "la reprise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovery;resumption;take-over", + "example_sentence_native": "L'économie montre des signes de reprise.", + "example_sentence_english": "The economy is showing signs of recovery.", + "pos": "noun", + "word_frequency": 1477 + }, + { + "word": "représentant", + "article_with_word": "le représentant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representative", + "example_sentence_native": "Le représentant commercial a présenté le nouveau produit.", + "example_sentence_english": "The sales representative presented the new product.", + "pos": "noun", + "word_frequency": 1478 + }, + { + "word": "sale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dirty", + "example_sentence_native": "Tes mains sont sales, va les laver.", + "example_sentence_english": "Your hands are dirty, go wash them.", + "pos": "adjective", + "word_frequency": 1479 + }, + { + "word": "tenue", + "article_with_word": "la tenue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outfit", + "example_sentence_native": "Elle a choisi une tenue élégante pour la soirée.", + "example_sentence_english": "She chose an elegant outfit for the evening.", + "pos": "noun", + "word_frequency": 1480 + }, + { + "word": "amoureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in love", + "example_sentence_native": "Il est amoureux de sa femme.", + "example_sentence_english": "He is in love with his wife.", + "pos": "adjective", + "word_frequency": 1483 + }, + { + "word": "appartement", + "article_with_word": "l'appartement", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apartment", + "example_sentence_native": "J'habite dans un petit appartement au centre-ville.", + "example_sentence_english": "I live in a small apartment downtown.", + "pos": "noun", + "word_frequency": 1484 + }, + { + "word": "bateau", + "article_with_word": "le bateau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boat", + "example_sentence_native": "Nous avons fait une promenade en bateau sur le lac.", + "example_sentence_english": "We took a boat ride on the lake.", + "pos": "noun", + "word_frequency": 1485 + }, + { + "word": "bilan", + "article_with_word": "le bilan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assessment", + "example_sentence_native": "Le bilan de l'année est positif.", + "example_sentence_english": "The year's assessment is positive.", + "pos": "noun", + "word_frequency": 1486 + }, + { + "word": "cabinet", + "article_with_word": "le cabinet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "office", + "example_sentence_native": "Le médecin a son cabinet au rez-de-chaussée.", + "example_sentence_english": "The doctor has his office on the ground floor.", + "pos": "noun", + "word_frequency": 1487 + }, + { + "word": "cap", + "article_with_word": "le cap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heading", + "example_sentence_native": "Le navire a mis le cap sur le sud.", + "example_sentence_english": "The ship set its course south.", + "pos": "noun", + "word_frequency": 1488 + }, + { + "word": "considérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consider", + "example_sentence_native": "Je dois considérer toutes les options avant de décider.", + "example_sentence_english": "I must consider all options before deciding.", + "pos": "verb", + "word_frequency": 1489 + }, + { + "word": "disparaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappear", + "example_sentence_native": "Le soleil a disparu derrière les nuages.", + "example_sentence_english": "The sun disappeared behind the clouds.", + "pos": "verb", + "word_frequency": 1490 + }, + { + "word": "douleur", + "article_with_word": "la douleur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pain", + "example_sentence_native": "Elle ressent une forte douleur au dos.", + "example_sentence_english": "She feels a strong pain in her back.", + "pos": "noun", + "word_frequency": 1491 + }, + { + "word": "décès", + "article_with_word": "le décès", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death", + "example_sentence_native": "Nous avons appris le décès de son grand-père.", + "example_sentence_english": "We learned of his grandfather's death.", + "pos": "noun", + "word_frequency": 1492 + }, + { + "word": "démocratie", + "article_with_word": "la démocratie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democracy", + "example_sentence_native": "La démocratie est un système politique important.", + "example_sentence_english": "Democracy is an important political system.", + "pos": "noun", + "word_frequency": 1493 + }, + { + "word": "espagnol", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Spanish", + "example_sentence_native": "Il parle couramment l'espagnol.", + "example_sentence_english": "He speaks Spanish fluently.", + "pos": "adjective", + "word_frequency": 1494 + }, + { + "word": "faim", + "article_with_word": "la faim", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hunger", + "example_sentence_native": "J'ai faim, je voudrais manger quelque chose.", + "example_sentence_english": "I'm hungry, I'd like to eat something.", + "pos": "noun", + "word_frequency": 1495 + }, + { + "word": "formule", + "article_with_word": "la formule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formula", + "example_sentence_native": "La formule chimique de l'eau est H2O.", + "example_sentence_english": "The chemical formula for water is H2O.", + "pos": "noun", + "word_frequency": 1496 + }, + { + "word": "lait", + "article_with_word": "le lait", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "milk", + "example_sentence_native": "Je bois du lait tous les matins.", + "example_sentence_english": "I drink milk every morning.", + "pos": "noun", + "word_frequency": 1497 + }, + { + "word": "lune", + "article_with_word": "la lune", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moon", + "example_sentence_native": "La lune est pleine ce soir.", + "example_sentence_english": "The moon is full tonight.", + "pos": "noun", + "word_frequency": 1498 + }, + { + "word": "marquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mark", + "example_sentence_native": "Il a marqué un but important.", + "example_sentence_english": "He scored an important goal.", + "pos": "verb", + "word_frequency": 1499 + }, + { + "word": "office", + "article_with_word": "l'office", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "office", + "example_sentence_native": "Il est de son office de veiller à la sécurité.", + "example_sentence_english": "It is his duty to ensure safety.", + "pos": "noun", + "word_frequency": 1500 + }, + { + "word": "peinture", + "article_with_word": "la peinture", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painting", + "example_sentence_native": "J'aime beaucoup cette peinture abstraite.", + "example_sentence_english": "I really like this abstract painting.", + "pos": "noun", + "word_frequency": 1501 + }, + { + "word": "printemps", + "article_with_word": "le printemps", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spring", + "example_sentence_native": "Le printemps est ma saison préférée.", + "example_sentence_english": "Spring is my favorite season.", + "pos": "noun", + "word_frequency": 1502 + }, + { + "word": "profit", + "article_with_word": "le profit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profit", + "example_sentence_native": "L'entreprise a réalisé un grand profit cette année.", + "example_sentence_english": "The company made a large profit this year.", + "pos": "noun", + "word_frequency": 1503 + }, + { + "word": "restaurant", + "article_with_word": "le restaurant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "restaurant", + "example_sentence_native": "Nous allons dîner au restaurant ce soir.", + "example_sentence_english": "We are going to dinner at the restaurant tonight.", + "pos": "noun", + "word_frequency": 1504 + }, + { + "word": "retourner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to return", + "example_sentence_native": "Je dois retourner ce livre à la bibliothèque.", + "example_sentence_english": "I need to return this book to the library.", + "pos": "verb", + "word_frequency": 1505 + }, + { + "word": "température", + "article_with_word": "la température", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "temperature", + "example_sentence_native": "La température est agréable aujourd'hui.", + "example_sentence_english": "The temperature is pleasant today.", + "pos": "noun", + "word_frequency": 1507 + }, + { + "word": "véhicule", + "article_with_word": "le véhicule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vehicle", + "example_sentence_native": "Ce véhicule est très rapide.", + "example_sentence_english": "This vehicle is very fast.", + "pos": "noun", + "word_frequency": 1509 + }, + { + "word": "apporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to bring", + "example_sentence_native": "Peux-tu m'apporter un verre d'eau ?", + "example_sentence_english": "Can you bring me a glass of water?", + "pos": "verb", + "word_frequency": 1512 + }, + { + "word": "balle", + "article_with_word": "la balle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ball", + "example_sentence_native": "L'enfant joue avec sa balle.", + "example_sentence_english": "The child is playing with his ball.", + "pos": "noun", + "word_frequency": 1513 + }, + { + "word": "barre", + "article_with_word": "la barre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bar", + "example_sentence_native": "Il a soulevé la barre de fer.", + "example_sentence_english": "He lifted the iron bar.", + "pos": "noun", + "word_frequency": 1514 + }, + { + "word": "bibliothèque", + "article_with_word": "la bibliothèque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "library", + "example_sentence_native": "J'emprunte des livres à la bibliothèque.", + "example_sentence_english": "I borrow books from the library.", + "pos": "noun", + "word_frequency": 1515 + }, + { + "word": "climat", + "article_with_word": "le climat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climate", + "example_sentence_native": "Le climat de cette région est très agréable.", + "example_sentence_english": "The climate of this region is very pleasant.", + "pos": "noun", + "word_frequency": 1516 + }, + { + "word": "conflit", + "article_with_word": "le conflit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conflict", + "example_sentence_native": "Il y a eu un conflit entre les deux parties.", + "example_sentence_english": "There was a conflict between the two parties.", + "pos": "noun", + "word_frequency": 1517 + }, + { + "word": "essentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "essential", + "example_sentence_native": "C'est essentiel de bien manger pour rester en forme.", + "example_sentence_english": "It's essential to eat well to stay in shape.", + "pos": "adjective", + "word_frequency": 1518 + }, + { + "word": "exception", + "article_with_word": "l'exception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exception", + "example_sentence_native": "Il y a toujours une exception à la règle.", + "example_sentence_english": "There is always an exception to the rule.", + "pos": "noun", + "word_frequency": 1519 + }, + { + "word": "extrêmement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely", + "example_sentence_native": "C'est extrêmement important de comprendre cela.", + "example_sentence_english": "It's extremely important to understand that.", + "pos": "adverb", + "word_frequency": 1520 + }, + { + "word": "forêt", + "article_with_word": "la forêt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forest", + "example_sentence_native": "Nous nous sommes promenés dans la forêt.", + "example_sentence_english": "We walked in the forest.", + "pos": "noun", + "word_frequency": 1522 + }, + { + "word": "frontière", + "article_with_word": "la frontière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "border", + "example_sentence_native": "Ils ont traversé la frontière sans problème.", + "example_sentence_english": "They crossed the border without a problem.", + "pos": "noun", + "word_frequency": 1523 + }, + { + "word": "gratuit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "free (of charge)", + "example_sentence_native": "L'entrée au musée est gratuite le premier dimanche du mois.", + "example_sentence_english": "Admission to the museum is free on the first Sunday of the month.", + "pos": "adjective", + "word_frequency": 1524 + }, + { + "word": "génie", + "article_with_word": "le génie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genius;engineering", + "example_sentence_native": "Ce jeune homme a un génie incroyable pour les mathématiques.", + "example_sentence_english": "This young man has an incredible genius for mathematics.", + "pos": "noun", + "word_frequency": 1525 + }, + { + "word": "honte", + "article_with_word": "la honte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shame", + "example_sentence_native": "J'ai honte de mon comportement.", + "example_sentence_english": "I am ashamed of my behavior.", + "pos": "noun", + "word_frequency": 1527 + }, + { + "word": "inviter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to invite", + "example_sentence_native": "Je voudrais t'inviter à dîner ce soir.", + "example_sentence_english": "I would like to invite you to dinner tonight.", + "pos": "verb", + "word_frequency": 1528 + }, + { + "word": "menace", + "article_with_word": "la menace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threat", + "example_sentence_native": "La pollution est une menace pour l'environnement.", + "example_sentence_english": "Pollution is a threat to the environment.", + "pos": "noun", + "word_frequency": 1530 + }, + { + "word": "mobile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mobile", + "example_sentence_native": "Les téléphones mobiles sont devenus indispensables.", + "example_sentence_english": "Mobile phones have become indispensable.", + "pos": "adjective", + "word_frequency": 1531 + }, + { + "word": "orange", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "orange", + "example_sentence_native": "J'ai acheté une robe orange pour la fête.", + "example_sentence_english": "I bought an orange dress for the party.", + "pos": "adjective", + "word_frequency": 1532 + }, + { + "word": "présentation", + "article_with_word": "la présentation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presentation", + "example_sentence_native": "Sa présentation était très claire et informative.", + "example_sentence_english": "Her presentation was very clear and informative.", + "pos": "noun", + "word_frequency": 1533 + }, + { + "word": "présidentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidential", + "example_sentence_native": "La campagne présidentielle bat son plein.", + "example_sentence_english": "The presidential campaign is in full swing.", + "pos": "adjective", + "word_frequency": 1534 + }, + { + "word": "quantité", + "article_with_word": "la quantité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quantity", + "example_sentence_native": "Nous avons une grande quantité de travail à faire.", + "example_sentence_english": "We have a large quantity of work to do.", + "pos": "noun", + "word_frequency": 1535 + }, + { + "word": "race", + "article_with_word": "la race", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "race;breed", + "example_sentence_native": "Quelle est la race de ce chien ?", + "example_sentence_english": "What breed is this dog?", + "pos": "noun", + "word_frequency": 1536 + }, + { + "word": "reconnaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize", + "example_sentence_native": "Je n'ai pas reconnu mon ami avec sa nouvelle coupe de cheveux.", + "example_sentence_english": "I didn't recognize my friend with his new haircut.", + "pos": "verb", + "word_frequency": 1537 + }, + { + "word": "réellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "really;actually", + "example_sentence_native": "Est-ce que tu penses que c'est réellement possible ?", + "example_sentence_english": "Do you think it's really possible?", + "pos": "adverb", + "word_frequency": 1538 + }, + { + "word": "thème", + "article_with_word": "le thème", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theme", + "example_sentence_native": "Le thème de la conférence était le changement climatique.", + "example_sentence_english": "The theme of the conference was climate change.", + "pos": "noun", + "word_frequency": 1540 + }, + { + "word": "usine", + "article_with_word": "l'usine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "factory", + "example_sentence_native": "Mon grand-père travaillait dans une usine de voitures.", + "example_sentence_english": "My grandfather worked in a car factory.", + "pos": "noun", + "word_frequency": 1541 + }, + { + "word": "ambiance", + "article_with_word": "l'ambiance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atmosphere;mood", + "example_sentence_native": "L'ambiance de la soirée était très festive.", + "example_sentence_english": "The atmosphere of the evening was very festive.", + "pos": "noun", + "word_frequency": 1543 + }, + { + "word": "annoncer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to announce", + "example_sentence_native": "Le président va annoncer de nouvelles mesures.", + "example_sentence_english": "The president will announce new measures.", + "pos": "verb", + "word_frequency": 1545 + }, + { + "word": "aventure", + "article_with_word": "l'aventure", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adventure", + "example_sentence_native": "J'aime lire des livres d'aventure.", + "example_sentence_english": "I like to read adventure books.", + "pos": "noun", + "word_frequency": 1546 + }, + { + "word": "blesser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to injure;to hurt", + "example_sentence_native": "Il s'est blessé en tombant de son vélo.", + "example_sentence_english": "He injured himself falling off his bike.", + "pos": "verb", + "word_frequency": 1547 + }, + { + "word": "contenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contain", + "example_sentence_native": "Cette bouteille contient un litre d'eau.", + "example_sentence_english": "This bottle contains one liter of water.", + "pos": "verb", + "word_frequency": 1548 + }, + { + "word": "dessin", + "article_with_word": "le dessin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawing;design", + "example_sentence_native": "Elle a fait un beau dessin de fleurs.", + "example_sentence_english": "She made a beautiful drawing of flowers.", + "pos": "noun", + "word_frequency": 1550 + }, + { + "word": "duc", + "article_with_word": "le duc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duke", + "example_sentence_native": "Le duc de Normandie était un personnage historique important.", + "example_sentence_english": "The Duke of Normandy was an important historical figure.", + "pos": "noun", + "word_frequency": 1551 + }, + { + "word": "déclarer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to declare", + "example_sentence_native": "Il a déclaré son innocence devant le tribunal.", + "example_sentence_english": "He declared his innocence before the court.", + "pos": "verb", + "word_frequency": 1552 + }, + { + "word": "défaite", + "article_with_word": "la défaite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeat", + "example_sentence_native": "L'équipe a subi une lourde défaite.", + "example_sentence_english": "The team suffered a heavy defeat.", + "pos": "noun", + "word_frequency": 1553 + }, + { + "word": "finance", + "article_with_word": "la finance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finance", + "example_sentence_native": "Elle travaille dans le domaine de la finance.", + "example_sentence_english": "She works in the field of finance.", + "pos": "noun", + "word_frequency": 1554 + }, + { + "word": "fédération", + "article_with_word": "la fédération", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federation", + "example_sentence_native": "La fédération internationale de football a son siège à Zurich.", + "example_sentence_english": "The international football federation has its headquarters in Zurich.", + "pos": "noun", + "word_frequency": 1555 + }, + { + "word": "huile", + "article_with_word": "l'huile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oil", + "example_sentence_native": "J'ai besoin d'huile d'olive pour la cuisson.", + "example_sentence_english": "I need olive oil for cooking.", + "pos": "noun", + "word_frequency": 1556 + }, + { + "word": "inquiéter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worry", + "example_sentence_native": "Ne t'inquiète pas, tout ira bien.", + "example_sentence_english": "Don't worry, everything will be fine.", + "pos": "verb", + "word_frequency": 1557 + }, + { + "word": "k", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kilometer;thousand", + "example_sentence_native": "Il a couru 10 k.", + "example_sentence_english": "He ran 10 km.", + "pos": "noun", + "word_frequency": 1560 + }, + { + "word": "littérature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "literature", + "example_sentence_native": "J'étudie la littérature française.", + "example_sentence_english": "I study French literature.", + "pos": "noun", + "word_frequency": 1561 + }, + { + "word": "min", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute", + "example_sentence_native": "Attends une min.", + "example_sentence_english": "Wait a minute.", + "pos": "noun", + "word_frequency": 1562 + }, + { + "word": "métro", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "subway;metro", + "example_sentence_native": "Je prends le métro tous les jours.", + "example_sentence_english": "I take the subway every day.", + "pos": "noun", + "word_frequency": 1563 + }, + { + "word": "placer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to place;to put", + "example_sentence_native": "Peux-tu placer ce livre sur l'étagère ?", + "example_sentence_english": "Can you place this book on the shelf?", + "pos": "verb", + "word_frequency": 1564 + }, + { + "word": "relativement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relatively", + "example_sentence_native": "La tâche était relativement facile.", + "example_sentence_english": "The task was relatively easy.", + "pos": "adverb", + "word_frequency": 1566 + }, + { + "word": "rivière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "river", + "example_sentence_native": "Nous avons nagé dans la rivière.", + "example_sentence_english": "We swam in the river.", + "pos": "noun", + "word_frequency": 1567 + }, + { + "word": "robe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dress;robe", + "example_sentence_native": "Elle porte une belle robe rouge.", + "example_sentence_english": "She is wearing a beautiful red dress.", + "pos": "noun", + "word_frequency": 1568 + }, + { + "word": "réalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "achievement;realization;production", + "example_sentence_native": "C'est une grande réalisation pour notre équipe.", + "example_sentence_english": "This is a great achievement for our team.", + "pos": "noun", + "word_frequency": 1569 + }, + { + "word": "salaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salary;wage", + "example_sentence_native": "Son salaire est très bon.", + "example_sentence_english": "His salary is very good.", + "pos": "noun", + "word_frequency": 1570 + }, + { + "word": "soeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sister", + "example_sentence_native": "Ma soeur habite à Paris.", + "example_sentence_english": "My sister lives in Paris.", + "pos": "noun", + "word_frequency": 1571 + }, + { + "word": "traduction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translation", + "example_sentence_native": "J'ai besoin d'une traduction de ce document.", + "example_sentence_english": "I need a translation of this document.", + "pos": "noun", + "word_frequency": 1572 + }, + { + "word": "tranquille", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calm;quiet;peaceful", + "example_sentence_native": "Restez tranquille, s'il vous plaît.", + "example_sentence_english": "Stay calm, please.", + "pos": "adjective", + "word_frequency": 1573 + }, + { + "word": "trente", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty", + "example_sentence_native": "Il a trente ans.", + "example_sentence_english": "He is thirty years old.", + "pos": "numeral", + "word_frequency": 1574 + }, + { + "word": "vérifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to check;to verify", + "example_sentence_native": "Je dois vérifier mes emails.", + "example_sentence_english": "I need to check my emails.", + "pos": "verb", + "word_frequency": 1575 + }, + { + "word": "écriture", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing;handwriting", + "example_sentence_native": "Son écriture est très claire.", + "example_sentence_english": "His handwriting is very clear.", + "pos": "noun", + "word_frequency": 1576 + }, + { + "word": "épreuve", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "test;ordeal;proof", + "example_sentence_native": "Elle a réussi l'épreuve finale.", + "example_sentence_english": "She passed the final test.", + "pos": "noun", + "word_frequency": 1577 + }, + { + "word": "étoile", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "star", + "example_sentence_native": "Regarde les étoiles dans le ciel.", + "example_sentence_english": "Look at the stars in the sky.", + "pos": "noun", + "word_frequency": 1578 + }, + { + "word": "académie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academy", + "example_sentence_native": "Il étudie à l'académie des beaux-arts.", + "example_sentence_english": "He studies at the academy of fine arts.", + "pos": "noun", + "word_frequency": 1579 + }, + { + "word": "auparavant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "before;previously", + "example_sentence_native": "Je ne l'avais jamais vu auparavant.", + "example_sentence_english": "I had never seen him before.", + "pos": "adverb", + "word_frequency": 1580 + }, + { + "word": "black", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "black", + "example_sentence_native": "Il porte un costume black.", + "example_sentence_english": "He is wearing a black suit.", + "pos": "adjective", + "word_frequency": 1581 + }, + { + "word": "chaleur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heat;warmth", + "example_sentence_native": "La chaleur est insupportable aujourd'hui.", + "example_sentence_english": "The heat is unbearable today.", + "pos": "noun", + "word_frequency": 1583 + }, + { + "word": "commande", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "order;command", + "example_sentence_native": "J'ai passé une commande en ligne.", + "example_sentence_english": "I placed an order online.", + "pos": "noun", + "word_frequency": 1584 + }, + { + "word": "concurrence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition", + "example_sentence_native": "Il y a beaucoup de concurrence sur ce marché.", + "example_sentence_english": "There is a lot of competition in this market.", + "pos": "noun", + "word_frequency": 1585 + }, + { + "word": "conduite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driving;conduct;behavior", + "example_sentence_native": "Sa conduite est exemplaire.", + "example_sentence_english": "His conduct is exemplary.", + "pos": "noun", + "word_frequency": 1586 + }, + { + "word": "discuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to discuss;to chat", + "example_sentence_native": "Nous devons discuter de ce problème.", + "example_sentence_english": "We need to discuss this problem.", + "pos": "verb", + "word_frequency": 1588 + }, + { + "word": "doigt", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "finger", + "example_sentence_native": "Il s'est coupé le doigt.", + "example_sentence_english": "He cut his finger.", + "pos": "noun", + "word_frequency": 1589 + }, + { + "word": "fruit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fruit", + "example_sentence_native": "J'aime manger des fruits frais.", + "example_sentence_english": "I like to eat fresh fruit.", + "pos": "noun", + "word_frequency": 1590 + }, + { + "word": "haine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hatred", + "example_sentence_native": "La haine ne mène à rien.", + "example_sentence_english": "Hatred leads to nothing.", + "pos": "noun", + "word_frequency": 1591 + }, + { + "word": "humour", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humor", + "example_sentence_native": "Il a un bon sens de l'humour.", + "example_sentence_english": "He has a good sense of humor.", + "pos": "noun", + "word_frequency": 1592 + }, + { + "word": "informatique", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computer science;IT", + "example_sentence_native": "J'étudie l'informatique à l'université.", + "example_sentence_english": "I study computer science at university.", + "pos": "noun", + "word_frequency": 1593 + }, + { + "word": "interne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internal", + "example_sentence_native": "C'est un problème interne à l'entreprise.", + "example_sentence_english": "It's an internal problem for the company.", + "pos": "adjective", + "word_frequency": 1594 + }, + { + "word": "légende", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legend;caption", + "example_sentence_native": "C'est une légende urbaine.", + "example_sentence_english": "It's an urban legend.", + "pos": "noun", + "word_frequency": 1595 + }, + { + "word": "magasin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shop;store", + "example_sentence_native": "Je vais au magasin pour acheter du pain.", + "example_sentence_english": "I'm going to the store to buy some bread.", + "pos": "noun", + "word_frequency": 1596 + }, + { + "word": "organiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to organize", + "example_sentence_native": "Nous devons organiser une réunion.", + "example_sentence_english": "We need to organize a meeting.", + "pos": "verb", + "word_frequency": 1597 + }, + { + "word": "plaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to please", + "example_sentence_native": "Ce film me plaît beaucoup.", + "example_sentence_english": "I like this movie very much.", + "pos": "verb", + "word_frequency": 1599 + }, + { + "word": "rang", + "article_with_word": "le rang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rank", + "example_sentence_native": "Il a atteint un haut rang dans l'armée.", + "example_sentence_english": "He reached a high rank in the army.", + "pos": "noun", + "word_frequency": 1600 + }, + { + "word": "recours", + "article_with_word": "le recours", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recourse", + "example_sentence_native": "Il n'y a pas d'autre recours possible.", + "example_sentence_english": "There is no other possible recourse.", + "pos": "noun", + "word_frequency": 1601 + }, + { + "word": "réflexion", + "article_with_word": "la réflexion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection", + "example_sentence_native": "Après mûre réflexion, j'ai décidé de partir.", + "example_sentence_english": "After much reflection, I decided to leave.", + "pos": "noun", + "word_frequency": 1602 + }, + { + "word": "tradition", + "article_with_word": "la tradition", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tradition", + "example_sentence_native": "C'est une vieille tradition de notre famille.", + "example_sentence_english": "It's an old tradition in our family.", + "pos": "noun", + "word_frequency": 1603 + }, + { + "word": "travailleur", + "article_with_word": "le travailleur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worker", + "example_sentence_native": "Les travailleurs ont manifesté pour de meilleurs salaires.", + "example_sentence_english": "The workers demonstrated for better wages.", + "pos": "noun", + "word_frequency": 1604 + }, + { + "word": "veille", + "article_with_word": "la veille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eve", + "example_sentence_native": "La veille de Noël, les enfants sont très excités.", + "example_sentence_english": "On Christmas Eve, the children are very excited.", + "pos": "noun", + "word_frequency": 1605 + }, + { + "word": "vif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lively", + "example_sentence_native": "Il a un esprit très vif.", + "example_sentence_english": "He has a very sharp mind.", + "pos": "adjective", + "word_frequency": 1606 + }, + { + "word": "épouse", + "article_with_word": "l'épouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wife", + "example_sentence_native": "Son épouse est une femme très gentille.", + "example_sentence_english": "His wife is a very kind woman.", + "pos": "noun", + "word_frequency": 1607 + }, + { + "word": "alliance", + "article_with_word": "l'alliance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alliance", + "example_sentence_native": "Elle porte une alliance en or.", + "example_sentence_english": "She wears a gold wedding ring.", + "pos": "noun", + "word_frequency": 1608 + }, + { + "word": "apparemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apparently", + "example_sentence_native": "Apparemment, il a plu toute la nuit.", + "example_sentence_english": "Apparently, it rained all night.", + "pos": "adverb", + "word_frequency": 1609 + }, + { + "word": "arbre", + "article_with_word": "l'arbre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tree", + "example_sentence_native": "Il y a un grand arbre dans le jardin.", + "example_sentence_english": "There is a big tree in the garden.", + "pos": "noun", + "word_frequency": 1610 + }, + { + "word": "aspect", + "article_with_word": "l'aspect", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aspect", + "example_sentence_native": "L'aspect de la ville a beaucoup changé.", + "example_sentence_english": "The aspect of the city has changed a lot.", + "pos": "noun", + "word_frequency": 1611 + }, + { + "word": "bac", + "article_with_word": "le bac", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baccalaureate", + "example_sentence_native": "Il a réussi son bac avec mention.", + "example_sentence_english": "He passed his baccalaureate with honors.", + "pos": "noun", + "word_frequency": 1613 + }, + { + "word": "composer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compose", + "example_sentence_native": "Il aime composer de la musique.", + "example_sentence_english": "He likes to compose music.", + "pos": "verb", + "word_frequency": 1614 + }, + { + "word": "conception", + "article_with_word": "la conception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "design", + "example_sentence_native": "La conception de ce projet est très innovante.", + "example_sentence_english": "The design of this project is very innovative.", + "pos": "noun", + "word_frequency": 1615 + }, + { + "word": "engagement", + "article_with_word": "l'engagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commitment", + "example_sentence_native": "Son engagement envers la cause est admirable.", + "example_sentence_english": "His commitment to the cause is admirable.", + "pos": "noun", + "word_frequency": 1616 + }, + { + "word": "ennemi", + "article_with_word": "l'ennemi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enemy", + "example_sentence_native": "Ils ont combattu leur ennemi avec courage.", + "example_sentence_english": "They fought their enemy with courage.", + "pos": "noun", + "word_frequency": 1617 + }, + { + "word": "fonctionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to work", + "example_sentence_native": "L'ordinateur ne fonctionne plus.", + "example_sentence_english": "The computer no longer works.", + "pos": "verb", + "word_frequency": 1619 + }, + { + "word": "fonctionnement", + "article_with_word": "le fonctionnement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functioning", + "example_sentence_native": "Le bon fonctionnement du système est essentiel.", + "example_sentence_english": "The proper functioning of the system is essential.", + "pos": "noun", + "word_frequency": 1620 + }, + { + "word": "impôt", + "article_with_word": "l'impôt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tax", + "example_sentence_native": "Il doit payer ses impôts avant la fin du mois.", + "example_sentence_english": "He must pay his taxes before the end of the month.", + "pos": "noun", + "word_frequency": 1621 + }, + { + "word": "individu", + "article_with_word": "l'individu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual", + "example_sentence_native": "Chaque individu a des droits.", + "example_sentence_english": "Every individual has rights.", + "pos": "noun", + "word_frequency": 1622 + }, + { + "word": "initiative", + "article_with_word": "l'initiative", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initiative", + "example_sentence_native": "Il a pris l'initiative d'organiser la réunion.", + "example_sentence_english": "He took the initiative to organize the meeting.", + "pos": "noun", + "word_frequency": 1623 + }, + { + "word": "inutile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "useless", + "example_sentence_native": "C'est inutile de discuter avec lui.", + "example_sentence_english": "It's useless to argue with him.", + "pos": "adjective", + "word_frequency": 1624 + }, + { + "word": "investissement", + "article_with_word": "l'investissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "example_sentence_native": "Cet investissement a été très rentable.", + "example_sentence_english": "This investment was very profitable.", + "pos": "noun", + "word_frequency": 1625 + }, + { + "word": "maintenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to maintain", + "example_sentence_native": "Il faut maintenir la pression.", + "example_sentence_english": "We must maintain the pressure.", + "pos": "verb", + "word_frequency": 1626 + }, + { + "word": "papa", + "article_with_word": "le papa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dad", + "example_sentence_native": "Mon papa m'a acheté un nouveau jouet.", + "example_sentence_english": "My dad bought me a new toy.", + "pos": "noun", + "word_frequency": 1628 + }, + { + "word": "passion", + "article_with_word": "la passion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passion", + "example_sentence_native": "La musique est sa grande passion.", + "example_sentence_english": "Music is his great passion.", + "pos": "noun", + "word_frequency": 1629 + }, + { + "word": "profil", + "article_with_word": "le profil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profile", + "example_sentence_native": "Son profil sur les réseaux sociaux est très intéressant.", + "example_sentence_english": "His social media profile is very interesting.", + "pos": "noun", + "word_frequency": 1630 + }, + { + "word": "préparation", + "article_with_word": "la préparation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preparation", + "example_sentence_native": "La préparation du repas a pris du temps.", + "example_sentence_english": "The preparation of the meal took time.", + "pos": "noun", + "word_frequency": 1631 + }, + { + "word": "record", + "article_with_word": "le record", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "record", + "example_sentence_native": "Il a battu le record du monde.", + "example_sentence_english": "He broke the world record.", + "pos": "noun", + "word_frequency": 1632 + }, + { + "word": "remplacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to replace", + "example_sentence_native": "Il faut remplacer la batterie.", + "example_sentence_english": "The battery needs to be replaced.", + "pos": "verb", + "word_frequency": 1633 + }, + { + "word": "respecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to respect", + "example_sentence_native": "Il faut respecter les règles.", + "example_sentence_english": "One must respect the rules.", + "pos": "verb", + "word_frequency": 1634 + }, + { + "word": "royal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "royal", + "example_sentence_native": "La famille royale vit dans ce château.", + "example_sentence_english": "The royal family lives in this castle.", + "pos": "adjective", + "word_frequency": 1636 + }, + { + "word": "sérieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seriously", + "example_sentence_native": "Il prend son travail très sérieusement.", + "example_sentence_english": "He takes his work very seriously.", + "pos": "adverb", + "word_frequency": 1637 + }, + { + "word": "électricité", + "article_with_word": "l'électricité", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electricity", + "example_sentence_native": "Il y a eu une coupure d'électricité.", + "example_sentence_english": "There was a power cut.", + "pos": "noun", + "word_frequency": 1638 + }, + { + "word": "apparaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appear", + "example_sentence_native": "Une étoile a commencé à apparaître dans le ciel.", + "example_sentence_english": "A star began to appear in the sky.", + "pos": "verb", + "word_frequency": 1639 + }, + { + "word": "avouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admit", + "example_sentence_native": "Il a dû avouer la vérité.", + "example_sentence_english": "He had to admit the truth.", + "pos": "verb", + "word_frequency": 1640 + }, + { + "word": "belge", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Belgian", + "example_sentence_native": "Elle est d'origine belge.", + "example_sentence_english": "She is of Belgian origin.", + "pos": "adjective", + "word_frequency": 1641 + }, + { + "word": "blog", + "article_with_word": "le blog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blog", + "example_sentence_native": "J'ai lu un article intéressant sur son blog.", + "example_sentence_english": "I read an interesting article on his blog.", + "pos": "noun", + "word_frequency": 1642 + }, + { + "word": "canadien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Canadian", + "example_sentence_native": "Il est un joueur de hockey canadien.", + "example_sentence_english": "He is a Canadian hockey player.", + "pos": "adjective", + "word_frequency": 1643 + }, + { + "word": "centaine", + "article_with_word": "une centaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about a hundred", + "example_sentence_native": "Il y avait une centaine de personnes.", + "example_sentence_english": "There were about a hundred people.", + "pos": "noun", + "word_frequency": 1644 + }, + { + "word": "chapitre", + "article_with_word": "le chapitre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chapter", + "example_sentence_native": "Lisez le premier chapitre du livre.", + "example_sentence_english": "Read the first chapter of the book.", + "pos": "noun", + "word_frequency": 1645 + }, + { + "word": "circulation", + "article_with_word": "la circulation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic", + "example_sentence_native": "La circulation était dense ce matin.", + "example_sentence_english": "The traffic was heavy this morning.", + "pos": "noun", + "word_frequency": 1646 + }, + { + "word": "conversation", + "article_with_word": "la conversation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conversation", + "example_sentence_native": "Nous avons eu une longue conversation.", + "example_sentence_english": "We had a long conversation.", + "pos": "noun", + "word_frequency": 1647 + }, + { + "word": "correspondre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to correspond", + "example_sentence_native": "Leurs idées ne correspondent pas.", + "example_sentence_english": "Their ideas do not correspond.", + "pos": "verb", + "word_frequency": 1648 + }, + { + "word": "coucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to lie down;to put to bed", + "example_sentence_native": "Je vais me coucher tôt ce soir.", + "example_sentence_english": "I'm going to bed early tonight.", + "pos": "verb", + "word_frequency": 1649 + }, + { + "word": "entraîneur", + "article_with_word": "l'entraîneur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach", + "example_sentence_native": "L'entraîneur a donné de bons conseils.", + "example_sentence_english": "The coach gave good advice.", + "pos": "noun", + "word_frequency": 1651 + }, + { + "word": "essai", + "article_with_word": "l'essai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "essay;trial", + "example_sentence_native": "Il a écrit un essai sur l'histoire.", + "example_sentence_english": "He wrote an essay on history.", + "pos": "noun", + "word_frequency": 1652 + }, + { + "word": "financement", + "article_with_word": "le financement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funding", + "example_sentence_native": "Le projet a besoin de financement.", + "example_sentence_english": "The project needs funding.", + "pos": "noun", + "word_frequency": 1653 + }, + { + "word": "gentil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kind", + "example_sentence_native": "C'est un garçon très gentil.", + "example_sentence_english": "He is a very kind boy.", + "pos": "adjective", + "word_frequency": 1655 + }, + { + "word": "institution", + "article_with_word": "l'institution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institution", + "example_sentence_native": "C'est une institution respectée.", + "example_sentence_english": "It is a respected institution.", + "pos": "noun", + "word_frequency": 1656 + }, + { + "word": "japonais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Japanese", + "example_sentence_native": "Elle parle couramment le japonais.", + "example_sentence_english": "She speaks Japanese fluently.", + "pos": "adjective", + "word_frequency": 1657 + }, + { + "word": "jugement", + "article_with_word": "le jugement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judgment", + "example_sentence_native": "Son jugement est souvent bon.", + "example_sentence_english": "His judgment is often good.", + "pos": "noun", + "word_frequency": 1658 + }, + { + "word": "marcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to walk", + "example_sentence_native": "Nous aimons marcher dans le parc.", + "example_sentence_english": "We like to walk in the park.", + "pos": "verb", + "word_frequency": 1659 + }, + { + "word": "monnaie", + "article_with_word": "la monnaie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "currency;change", + "example_sentence_native": "Quelle est la monnaie de ce pays ?", + "example_sentence_english": "What is the currency of this country?", + "pos": "noun", + "word_frequency": 1660 + }, + { + "word": "neige", + "article_with_word": "la neige", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snow", + "example_sentence_native": "Il y a beaucoup de neige en hiver.", + "example_sentence_english": "There is a lot of snow in winter.", + "pos": "noun", + "word_frequency": 1662 + }, + { + "word": "nucléaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear", + "example_sentence_native": "L'énergie nucléaire est un sujet complexe.", + "example_sentence_english": "Nuclear energy is a complex subject.", + "pos": "adjective", + "word_frequency": 1663 + }, + { + "word": "pluie", + "article_with_word": "la pluie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rain", + "example_sentence_native": "J'aime le son de la pluie.", + "example_sentence_english": "I like the sound of the rain.", + "pos": "noun", + "word_frequency": 1665 + }, + { + "word": "pote", + "article_with_word": "le pote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mate;buddy", + "example_sentence_native": "Il est mon meilleur pote.", + "example_sentence_english": "He is my best mate.", + "pos": "noun", + "word_frequency": 1666 + }, + { + "word": "primaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primary", + "example_sentence_native": "C'est une école primaire.", + "example_sentence_english": "It's a primary school.", + "pos": "adjective", + "word_frequency": 1667 + }, + { + "word": "promettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to promise", + "example_sentence_native": "Je te promets de venir.", + "example_sentence_english": "I promise you I will come.", + "pos": "verb", + "word_frequency": 1668 + }, + { + "word": "reconnaissance", + "article_with_word": "la reconnaissance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognition;gratitude", + "example_sentence_native": "Elle a exprimé sa reconnaissance.", + "example_sentence_english": "She expressed her gratitude.", + "pos": "noun", + "word_frequency": 1669 + }, + { + "word": "rythme", + "article_with_word": "le rythme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhythm;pace", + "example_sentence_native": "Le rythme de la musique est entraînant.", + "example_sentence_english": "The rhythm of the music is catchy.", + "pos": "noun", + "word_frequency": 1670 + }, + { + "word": "vélo", + "article_with_word": "le vélo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bicycle", + "example_sentence_native": "J'aime faire du vélo le week-end.", + "example_sentence_english": "I like to ride my bike on weekends.", + "pos": "noun", + "word_frequency": 1673 + }, + { + "word": "échec", + "article_with_word": "l'échec", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "failure;chess", + "example_sentence_native": "L'échec est une partie de l'apprentissage.", + "example_sentence_english": "Failure is a part of learning.", + "pos": "noun", + "word_frequency": 1675 + }, + { + "word": "amitié", + "article_with_word": "l'amitié", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friendship", + "example_sentence_native": "Leur amitié est très forte.", + "example_sentence_english": "Their friendship is very strong.", + "pos": "noun", + "word_frequency": 1676 + }, + { + "word": "bain", + "article_with_word": "le bain", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bath", + "example_sentence_native": "Je prends un bain chaud.", + "example_sentence_english": "I'm taking a hot bath.", + "pos": "noun", + "word_frequency": 1677 + }, + { + "word": "dent", + "article_with_word": "la dent", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tooth", + "example_sentence_native": "J'ai mal à une dent.", + "example_sentence_english": "I have a toothache.", + "pos": "noun", + "word_frequency": 1678 + }, + { + "word": "doux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soft;sweet;mild", + "example_sentence_native": "Le temps est doux aujourd'hui.", + "example_sentence_english": "The weather is mild today.", + "pos": "adjective", + "word_frequency": 1679 + }, + { + "word": "enceinte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pregnant;enclosed;speaker", + "example_sentence_native": "Elle est enceinte de six mois.", + "example_sentence_english": "She is six months pregnant.", + "pos": "adjective", + "word_frequency": 1680 + }, + { + "word": "fan", + "article_with_word": "un fan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan", + "example_sentence_native": "C'est un grand fan de musique rock.", + "example_sentence_english": "He is a big fan of rock music.", + "pos": "noun", + "word_frequency": 1681 + }, + { + "word": "langage", + "article_with_word": "le langage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "language;speech", + "example_sentence_native": "Le langage corporel est très important.", + "example_sentence_english": "Body language is very important.", + "pos": "noun", + "word_frequency": 1682 + }, + { + "word": "légèrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slightly;lightly", + "example_sentence_native": "Il a légèrement modifié son plan.", + "example_sentence_english": "He slightly modified his plan.", + "pos": "adverb", + "word_frequency": 1684 + }, + { + "word": "original", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "original;unusual", + "example_sentence_native": "C'est une idée très originale.", + "example_sentence_english": "It's a very original idea.", + "pos": "adjective", + "word_frequency": 1685 + }, + { + "word": "perso", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personal (informal)", + "example_sentence_native": "C'est mon avis perso.", + "example_sentence_english": "That's my personal opinion.", + "pos": "adjective", + "word_frequency": 1687 + }, + { + "word": "philosophie", + "article_with_word": "la philosophie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophy", + "example_sentence_native": "Il étudie la philosophie à l'université.", + "example_sentence_english": "He studies philosophy at university.", + "pos": "noun", + "word_frequency": 1688 + }, + { + "word": "plateau", + "article_with_word": "le plateau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tray;plateau;set (TV;film)", + "example_sentence_native": "Le serveur a apporté les boissons sur un plateau.", + "example_sentence_english": "The waiter brought the drinks on a tray.", + "pos": "noun", + "word_frequency": 1689 + }, + { + "word": "quasi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almost;nearly", + "example_sentence_native": "Il a quasi terminé son travail.", + "example_sentence_english": "He has almost finished his work.", + "pos": "adverb", + "word_frequency": 1690 + }, + { + "word": "remise", + "article_with_word": "la remise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discount;delivery;shed", + "example_sentence_native": "Nous avons obtenu une remise de 10% sur le prix.", + "example_sentence_english": "We got a 10% discount on the price.", + "pos": "noun", + "word_frequency": 1691 + }, + { + "word": "récupérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recover;to retrieve;to pick up", + "example_sentence_native": "Je dois récupérer mes clés au bureau.", + "example_sentence_english": "I need to pick up my keys at the office.", + "pos": "verb", + "word_frequency": 1692 + }, + { + "word": "résidence", + "article_with_word": "la résidence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "residence;accommodation", + "example_sentence_native": "C'est une résidence étudiante.", + "example_sentence_english": "It's a student residence.", + "pos": "noun", + "word_frequency": 1693 + }, + { + "word": "salarié", + "article_with_word": "le salarié", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employee;salaried worker", + "example_sentence_native": "Les salariés ont manifesté pour de meilleures conditions.", + "example_sentence_english": "The employees demonstrated for better conditions.", + "pos": "noun", + "word_frequency": 1694 + }, + { + "word": "talent", + "article_with_word": "le talent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talent", + "example_sentence_native": "Il a un grand talent pour la musique.", + "example_sentence_english": "He has a great talent for music.", + "pos": "noun", + "word_frequency": 1695 + }, + { + "word": "tourisme", + "article_with_word": "le tourisme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tourism", + "example_sentence_native": "Le tourisme est une industrie importante dans cette région.", + "example_sentence_english": "Tourism is an important industry in this region.", + "pos": "noun", + "word_frequency": 1696 + }, + { + "word": "traiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat;to process;to deal with", + "example_sentence_native": "Il faut bien traiter les animaux.", + "example_sentence_english": "Animals must be treated well.", + "pos": "verb", + "word_frequency": 1697 + }, + { + "word": "archive", + "article_with_word": "l'archive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archive", + "example_sentence_native": "Les documents sont conservés dans les archives nationales.", + "example_sentence_english": "The documents are kept in the national archives.", + "pos": "noun", + "word_frequency": 1698 + }, + { + "word": "commandant", + "article_with_word": "le commandant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commander;captain (of a ship;plane)", + "example_sentence_native": "Le commandant de bord a annoncé l'atterrissage.", + "example_sentence_english": "The captain announced the landing.", + "pos": "noun", + "word_frequency": 1700 + }, + { + "word": "commercial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commercial;business", + "example_sentence_native": "C'est un centre commercial très grand.", + "example_sentence_english": "It's a very large shopping center.", + "pos": "adjective", + "word_frequency": 1701 + }, + { + "word": "convention", + "article_with_word": "la convention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convention;agreement", + "example_sentence_native": "Ils ont signé une nouvelle convention.", + "example_sentence_english": "They signed a new agreement.", + "pos": "noun", + "word_frequency": 1702 + }, + { + "word": "couche", + "article_with_word": "la couche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "layer;diaper;bed", + "example_sentence_native": "Il y a une fine couche de neige.", + "example_sentence_english": "There is a thin layer of snow.", + "pos": "noun", + "word_frequency": 1703 + }, + { + "word": "couverture", + "article_with_word": "la couverture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blanket;cover;coverage", + "example_sentence_native": "J'ai mis une couverture sur le lit.", + "example_sentence_english": "I put a blanket on the bed.", + "pos": "noun", + "word_frequency": 1704 + }, + { + "word": "disposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange;to have at one's disposal", + "example_sentence_native": "Vous disposez de tout le temps nécessaire.", + "example_sentence_english": "You have all the necessary time at your disposal.", + "pos": "verb", + "word_frequency": 1705 + }, + { + "word": "détester", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hate;to detest", + "example_sentence_native": "Je déteste le froid.", + "example_sentence_english": "I hate the cold.", + "pos": "verb", + "word_frequency": 1706 + }, + { + "word": "empereur", + "article_with_word": "l'empereur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emperor", + "example_sentence_native": "Napoléon était un empereur célèbre.", + "example_sentence_english": "Napoleon was a famous emperor.", + "pos": "noun", + "word_frequency": 1707 + }, + { + "word": "fier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proud", + "example_sentence_native": "Je suis fier de toi.", + "example_sentence_english": "I am proud of you.", + "pos": "adjective", + "word_frequency": 1708 + }, + { + "word": "italien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Italian", + "example_sentence_native": "J'apprends la langue italienne.", + "example_sentence_english": "I am learning the Italian language.", + "pos": "adjective", + "word_frequency": 1710 + }, + { + "word": "lever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to raise;to lift;to get up", + "example_sentence_native": "Je me lève tôt tous les jours.", + "example_sentence_english": "I get up early every day.", + "pos": "verb", + "word_frequency": 1711 + }, + { + "word": "mini", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mini;small", + "example_sentence_native": "Elle a acheté une mini-jupe.", + "example_sentence_english": "She bought a mini-skirt.", + "pos": "adjective", + "word_frequency": 1712 + }, + { + "word": "option", + "article_with_word": "l'option", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "option;choice", + "example_sentence_native": "Nous avons plusieurs options.", + "example_sentence_english": "We have several options.", + "pos": "noun", + "word_frequency": 1713 + }, + { + "word": "orient", + "article_with_word": "l'orient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "East;Orient", + "example_sentence_native": "Le soleil se lève à l'orient.", + "example_sentence_english": "The sun rises in the East.", + "pos": "noun", + "word_frequency": 1714 + }, + { + "word": "plante", + "article_with_word": "la plante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plant", + "example_sentence_native": "J'ai arrosé les plantes.", + "example_sentence_english": "I watered the plants.", + "pos": "noun", + "word_frequency": 1716 + }, + { + "word": "promotion", + "article_with_word": "la promotion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promotion;discount;graduating class", + "example_sentence_native": "Il a obtenu une promotion au travail.", + "example_sentence_english": "He got a promotion at work.", + "pos": "noun", + "word_frequency": 1718 + }, + { + "word": "remarque", + "article_with_word": "la remarque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remark;observation", + "example_sentence_native": "J'ai une remarque à faire.", + "example_sentence_english": "I have a remark to make.", + "pos": "noun", + "word_frequency": 1719 + }, + { + "word": "règlement", + "article_with_word": "le règlement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regulation;rule", + "example_sentence_native": "Le règlement intérieur doit être respecté par tous.", + "example_sentence_english": "The internal regulation must be respected by everyone.", + "pos": "noun", + "word_frequency": 1720 + }, + { + "word": "sacré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sacred;holy", + "example_sentence_native": "C'est un lieu sacré pour de nombreuses cultures.", + "example_sentence_english": "It is a sacred place for many cultures.", + "pos": "adjective", + "word_frequency": 1721 + }, + { + "word": "scénario", + "article_with_word": "le scénario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scenario;script", + "example_sentence_native": "Le scénario du film est très original.", + "example_sentence_english": "The film's script is very original.", + "pos": "noun", + "word_frequency": 1722 + }, + { + "word": "socialiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialist", + "example_sentence_native": "Il a des idées politiques socialistes.", + "example_sentence_english": "He has socialist political ideas.", + "pos": "adjective", + "word_frequency": 1723 + }, + { + "word": "surveillance", + "article_with_word": "la surveillance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surveillance;monitoring", + "example_sentence_native": "La surveillance des caméras est constante.", + "example_sentence_english": "Camera surveillance is constant.", + "pos": "noun", + "word_frequency": 1724 + }, + { + "word": "tas", + "article_with_word": "le tas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pile;heap;lot", + "example_sentence_native": "Il y a un tas de livres sur la table.", + "example_sentence_english": "There is a pile of books on the table.", + "pos": "noun", + "word_frequency": 1725 + }, + { + "word": "technologie", + "article_with_word": "la technologie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "technology", + "example_sentence_native": "La nouvelle technologie est impressionnante.", + "example_sentence_english": "The new technology is impressive.", + "pos": "noun", + "word_frequency": 1726 + }, + { + "word": "tort", + "article_with_word": "le tort", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wrong;harm", + "example_sentence_native": "Tu as tort de penser ça.", + "example_sentence_english": "You are wrong to think that.", + "pos": "noun", + "word_frequency": 1727 + }, + { + "word": "tournée", + "article_with_word": "la tournée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tour;round", + "example_sentence_native": "Le groupe de musique est en tournée mondiale.", + "example_sentence_english": "The music band is on a world tour.", + "pos": "noun", + "word_frequency": 1728 + }, + { + "word": "trou", + "article_with_word": "le trou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hole", + "example_sentence_native": "Il y a un trou dans mon pantalon.", + "example_sentence_english": "There is a hole in my pants.", + "pos": "noun", + "word_frequency": 1729 + }, + { + "word": "venue", + "article_with_word": "la venue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrival;coming", + "example_sentence_native": "Nous attendons la venue de nos amis.", + "example_sentence_english": "We are awaiting the arrival of our friends.", + "pos": "noun", + "word_frequency": 1730 + }, + { + "word": "voisin", + "article_with_word": "le voisin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "neighbor", + "example_sentence_native": "Mon voisin est très gentil.", + "example_sentence_english": "My neighbor is very kind.", + "pos": "noun", + "word_frequency": 1731 + }, + { + "word": "voter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to vote", + "example_sentence_native": "Il est important de voter aux élections.", + "example_sentence_english": "It is important to vote in elections.", + "pos": "verb", + "word_frequency": 1732 + }, + { + "word": "affiche", + "article_with_word": "l'affiche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster;sign", + "example_sentence_native": "L'affiche du concert est très colorée.", + "example_sentence_english": "The concert poster is very colorful.", + "pos": "noun", + "word_frequency": 1733 + }, + { + "word": "cache", + "article_with_word": "la cache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hiding place;cache", + "example_sentence_native": "La cache de données a été effacée.", + "example_sentence_english": "The data cache has been cleared.", + "pos": "noun", + "word_frequency": 1734 + }, + { + "word": "caisse", + "article_with_word": "la caisse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box;crate;cash register", + "example_sentence_native": "La caisse est pleine de fruits.", + "example_sentence_english": "The box is full of fruit.", + "pos": "noun", + "word_frequency": 1735 + }, + { + "word": "casse", + "article_with_word": "la casse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breakage;junkyard;damage", + "example_sentence_native": "Il y a eu de la casse après l'accident.", + "example_sentence_english": "There was some damage after the accident.", + "pos": "noun", + "word_frequency": 1736 + }, + { + "word": "cm", + "article_with_word": "le cm", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "centimeter", + "example_sentence_native": "La règle mesure 30 cm.", + "example_sentence_english": "The ruler measures 30 cm.", + "pos": "noun", + "word_frequency": 1737 + }, + { + "word": "collectif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collective", + "example_sentence_native": "C'est un effort collectif de toute l'équipe.", + "example_sentence_english": "It's a collective effort from the whole team.", + "pos": "adjective", + "word_frequency": 1738 + }, + { + "word": "compliqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "complicated", + "example_sentence_native": "La situation est devenue très compliquée.", + "example_sentence_english": "The situation has become very complicated.", + "pos": "adjective", + "word_frequency": 1739 + }, + { + "word": "condamner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to condemn;to sentence", + "example_sentence_native": "Le tribunal a condamné le coupable.", + "example_sentence_english": "The court condemned the culprit.", + "pos": "verb", + "word_frequency": 1740 + }, + { + "word": "consister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consist of", + "example_sentence_native": "Le projet consiste à construire une nouvelle école.", + "example_sentence_english": "The project consists of building a new school.", + "pos": "verb", + "word_frequency": 1741 + }, + { + "word": "couper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cut", + "example_sentence_native": "Peux-tu couper le pain, s'il te plaît ?", + "example_sentence_english": "Can you cut the bread, please?", + "pos": "verb", + "word_frequency": 1742 + }, + { + "word": "effectivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indeed;effectively", + "example_sentence_native": "Effectivement, c'est une bonne idée.", + "example_sentence_english": "Indeed, that's a good idea.", + "pos": "adverb", + "word_frequency": 1743 + }, + { + "word": "essentiellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essentially;mainly", + "example_sentence_native": "Le problème est essentiellement économique.", + "example_sentence_english": "The problem is essentially economic.", + "pos": "adverb", + "word_frequency": 1744 + }, + { + "word": "excuse", + "article_with_word": "l'excuse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excuse;apology", + "example_sentence_native": "Il a donné une bonne excuse pour son retard.", + "example_sentence_english": "He gave a good excuse for his lateness.", + "pos": "noun", + "word_frequency": 1745 + }, + { + "word": "exprimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express", + "example_sentence_native": "Il est difficile d'exprimer ses sentiments.", + "example_sentence_english": "It is difficult to express one's feelings.", + "pos": "verb", + "word_frequency": 1746 + }, + { + "word": "fermer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to close;to shut", + "example_sentence_native": "N'oublie pas de fermer la porte.", + "example_sentence_english": "Don't forget to close the door.", + "pos": "verb", + "word_frequency": 1747 + }, + { + "word": "hausse", + "article_with_word": "la hausse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rise;increase", + "example_sentence_native": "On observe une hausse des prix du carburant.", + "example_sentence_english": "We are observing a rise in fuel prices.", + "pos": "noun", + "word_frequency": 1748 + }, + { + "word": "judiciaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judicial;legal", + "example_sentence_native": "L'affaire est en cours de procédure judiciaire.", + "example_sentence_english": "The case is undergoing legal proceedings.", + "pos": "adjective", + "word_frequency": 1749 + }, + { + "word": "libération", + "article_with_word": "la libération", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liberation;release", + "example_sentence_native": "La libération des prisonniers est attendue.", + "example_sentence_english": "The release of the prisoners is expected.", + "pos": "noun", + "word_frequency": 1750 + }, + { + "word": "mairie", + "article_with_word": "la mairie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "town hall;city hall", + "example_sentence_native": "J'ai déposé mon dossier à la mairie.", + "example_sentence_english": "I submitted my application at the town hall.", + "pos": "noun", + "word_frequency": 1751 + }, + { + "word": "manuel", + "article_with_word": "le manuel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "manual;textbook", + "example_sentence_native": "Le manuel d'utilisation est très clair.", + "example_sentence_english": "The user manual is very clear.", + "pos": "noun", + "word_frequency": 1752 + }, + { + "word": "organisme", + "article_with_word": "l'organisme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organization;body;organism", + "example_sentence_native": "C'est un organisme public.", + "example_sentence_english": "It is a public organization.", + "pos": "noun", + "word_frequency": 1755 + }, + { + "word": "personnalité", + "article_with_word": "la personnalité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personality;public figure", + "example_sentence_native": "C'est une personnalité très connue.", + "example_sentence_english": "She is a very well-known public figure.", + "pos": "noun", + "word_frequency": 1756 + }, + { + "word": "princesse", + "article_with_word": "la princesse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "princess", + "example_sentence_native": "La princesse vivait dans un grand château.", + "example_sentence_english": "The princess lived in a large castle.", + "pos": "noun", + "word_frequency": 1757 + }, + { + "word": "progrès", + "article_with_word": "le progrès", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progress", + "example_sentence_native": "Nous avons fait de grands progrès.", + "example_sentence_english": "We have made great progress.", + "pos": "noun", + "word_frequency": 1758 + }, + { + "word": "prouver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prove", + "example_sentence_native": "Il doit prouver son innocence.", + "example_sentence_english": "He must prove his innocence.", + "pos": "verb", + "word_frequency": 1759 + }, + { + "word": "puissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powerful", + "example_sentence_native": "C'est un moteur très puissant.", + "example_sentence_english": "It's a very powerful engine.", + "pos": "adjective", + "word_frequency": 1760 + }, + { + "word": "retirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to withdraw", + "example_sentence_native": "Il a dû retirer de l'argent.", + "example_sentence_english": "He had to withdraw money.", + "pos": "verb", + "word_frequency": 1761 + }, + { + "word": "réfléchir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reflect;to think", + "example_sentence_native": "Je dois réfléchir à cette proposition.", + "example_sentence_english": "I need to think about this proposal.", + "pos": "verb", + "word_frequency": 1762 + }, + { + "word": "résumé", + "article_with_word": "le résumé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary", + "example_sentence_native": "Pouvez-vous me donner un bref résumé?", + "example_sentence_english": "Can you give me a brief summary?", + "pos": "noun", + "word_frequency": 1763 + }, + { + "word": "suffisamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sufficiently;enough", + "example_sentence_native": "Il n'y a pas suffisamment de temps.", + "example_sentence_english": "There isn't enough time.", + "pos": "adverb", + "word_frequency": 1764 + }, + { + "word": "vaste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vast;wide", + "example_sentence_native": "Le désert est un endroit vaste et vide.", + "example_sentence_english": "The desert is a vast and empty place.", + "pos": "adjective", + "word_frequency": 1765 + }, + { + "word": "équilibre", + "article_with_word": "l’équilibre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balance", + "example_sentence_native": "Il a perdu son équilibre.", + "example_sentence_english": "He lost his balance.", + "pos": "noun", + "word_frequency": 1767 + }, + { + "word": "attente", + "article_with_word": "l’attente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wait;expectation", + "example_sentence_native": "L'attente était longue.", + "example_sentence_english": "The wait was long.", + "pos": "noun", + "word_frequency": 1769 + }, + { + "word": "cercle", + "article_with_word": "le cercle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circle", + "example_sentence_native": "Dessine un cercle sur la feuille.", + "example_sentence_english": "Draw a circle on the paper.", + "pos": "noun", + "word_frequency": 1771 + }, + { + "word": "cesse", + "article_with_word": "la cesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cease;stop", + "example_sentence_native": "Il travaille sans cesse.", + "example_sentence_english": "He works without stopping.", + "pos": "noun", + "word_frequency": 1772 + }, + { + "word": "dette", + "article_with_word": "la dette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debt", + "example_sentence_native": "Il a une grosse dette.", + "example_sentence_english": "He has a large debt.", + "pos": "noun", + "word_frequency": 1773 + }, + { + "word": "démocratique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democratic", + "example_sentence_native": "C'est un pays démocratique.", + "example_sentence_english": "It is a democratic country.", + "pos": "adjective", + "word_frequency": 1775 + }, + { + "word": "fenêtre", + "article_with_word": "la fenêtre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "window", + "example_sentence_native": "Ouvre la fenêtre, s'il te plaît.", + "example_sentence_english": "Open the window, please.", + "pos": "noun", + "word_frequency": 1776 + }, + { + "word": "former", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to form;to train", + "example_sentence_native": "Nous devons former de nouveaux employés.", + "example_sentence_english": "We need to train new employees.", + "pos": "verb", + "word_frequency": 1777 + }, + { + "word": "fournir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide;to supply", + "example_sentence_native": "L'entreprise doit fournir des informations.", + "example_sentence_english": "The company must provide information.", + "pos": "verb", + "word_frequency": 1778 + }, + { + "word": "frapper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hit;to knock", + "example_sentence_native": "Il a frappé à la porte.", + "example_sentence_english": "He knocked on the door.", + "pos": "verb", + "word_frequency": 1779 + }, + { + "word": "grève", + "article_with_word": "la grève", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strike", + "example_sentence_native": "Les employés sont en grève.", + "example_sentence_english": "The employees are on strike.", + "pos": "noun", + "word_frequency": 1780 + }, + { + "word": "meurtre", + "article_with_word": "le meurtre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murder", + "example_sentence_native": "La police enquête sur le meurtre.", + "example_sentence_english": "The police are investigating the murder.", + "pos": "noun", + "word_frequency": 1784 + }, + { + "word": "mélange", + "article_with_word": "le mélange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixture;blend", + "example_sentence_native": "C'est un mélange intéressant de saveurs.", + "example_sentence_english": "It's an interesting mixture of flavors.", + "pos": "noun", + "word_frequency": 1785 + }, + { + "word": "normalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normally", + "example_sentence_native": "Normalement, je me lève tôt.", + "example_sentence_english": "Normally, I wake up early.", + "pos": "adverb", + "word_frequency": 1786 + }, + { + "word": "ombre", + "article_with_word": "l’ombre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shadow;shade", + "example_sentence_native": "Cherchons un peu d'ombre.", + "example_sentence_english": "Let's look for some shade.", + "pos": "noun", + "word_frequency": 1787 + }, + { + "word": "pilote", + "article_with_word": "le pilote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pilot", + "example_sentence_native": "Le pilote a atterri l'avion en toute sécurité.", + "example_sentence_english": "The pilot landed the plane safely.", + "pos": "noun", + "word_frequency": 1788 + }, + { + "word": "plat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flat", + "example_sentence_native": "La table est parfaitement plate.", + "example_sentence_english": "The table is perfectly flat.", + "pos": "adjective", + "word_frequency": 1789 + }, + { + "word": "surprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surprise", + "example_sentence_native": "Sa réaction m'a surpris.", + "example_sentence_english": "His reaction surprised me.", + "pos": "verb", + "word_frequency": 1791 + }, + { + "word": "terrible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrible;awful", + "example_sentence_native": "Le temps était terrible hier.", + "example_sentence_english": "The weather was terrible yesterday.", + "pos": "adjective", + "word_frequency": 1792 + }, + { + "word": "établir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to establish", + "example_sentence_native": "Ils ont établi une nouvelle règle.", + "example_sentence_english": "They established a new rule.", + "pos": "verb", + "word_frequency": 1793 + }, + { + "word": "étage", + "article_with_word": "l’étage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor;story", + "example_sentence_native": "Mon bureau est au troisième étage.", + "example_sentence_english": "My office is on the third floor.", + "pos": "noun", + "word_frequency": 1794 + }, + { + "word": "actualité", + "article_with_word": "l’actualité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current events;news", + "example_sentence_native": "Je suis les actualités tous les jours.", + "example_sentence_english": "I follow the news every day.", + "pos": "noun", + "word_frequency": 1795 + }, + { + "word": "agréable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pleasant;agreeable", + "example_sentence_native": "C'est une personne très agréable.", + "example_sentence_english": "She is a very pleasant person.", + "pos": "adjective", + "word_frequency": 1796 + }, + { + "word": "avancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to advance;to move forward", + "example_sentence_native": "Nous devons avancer dans le projet.", + "example_sentence_english": "We need to move forward with the project.", + "pos": "verb", + "word_frequency": 1798 + }, + { + "word": "bienvenue", + "article_with_word": "la bienvenue", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "welcome", + "example_sentence_native": "Souhaitez la bienvenue aux nouveaux arrivants.", + "example_sentence_english": "Welcome the new arrivals.", + "pos": "noun", + "word_frequency": 1799 + }, + { + "word": "bête", + "article_with_word": "la bête", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beast", + "example_sentence_native": "La bête sauvage s'est enfuie dans la forêt.", + "example_sentence_english": "The wild beast fled into the forest.", + "pos": "noun", + "word_frequency": 1800 + }, + { + "word": "catholique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catholic", + "example_sentence_native": "Il est de confession catholique.", + "example_sentence_english": "He is of Catholic faith.", + "pos": "adjective", + "word_frequency": 1801 + }, + { + "word": "chaussure", + "article_with_word": "la chaussure", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shoe", + "example_sentence_native": "J'ai acheté une nouvelle paire de chaussures.", + "example_sentence_english": "I bought a new pair of shoes.", + "pos": "noun", + "word_frequency": 1802 + }, + { + "word": "chrétien", + "article_with_word": "le chrétien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christian", + "example_sentence_native": "Beaucoup de chrétiens célèbrent Noël.", + "example_sentence_english": "Many Christians celebrate Christmas.", + "pos": "noun", + "word_frequency": 1803 + }, + { + "word": "cible", + "article_with_word": "la cible", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "target", + "example_sentence_native": "L'archer a atteint la cible.", + "example_sentence_english": "The archer hit the target.", + "pos": "noun", + "word_frequency": 1804 + }, + { + "word": "décrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to describe", + "example_sentence_native": "Pouvez-vous décrire la personne que vous avez vue?", + "example_sentence_english": "Can you describe the person you saw?", + "pos": "verb", + "word_frequency": 1806 + }, + { + "word": "format", + "article_with_word": "le format", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "format", + "example_sentence_native": "Quel est le format de ce fichier?", + "example_sentence_english": "What is the format of this file?", + "pos": "noun", + "word_frequency": 1807 + }, + { + "word": "génial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great", + "example_sentence_native": "Ce film est génial!", + "example_sentence_english": "This movie is great!", + "pos": "adjective", + "word_frequency": 1808 + }, + { + "word": "installer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to install", + "example_sentence_native": "Nous allons installer le nouveau logiciel.", + "example_sentence_english": "We are going to install the new software.", + "pos": "verb", + "word_frequency": 1809 + }, + { + "word": "jambe", + "article_with_word": "la jambe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "leg", + "example_sentence_native": "Il s'est cassé la jambe en jouant au football.", + "example_sentence_english": "He broke his leg playing football.", + "pos": "noun", + "word_frequency": 1811 + }, + { + "word": "lieutenant", + "article_with_word": "le lieutenant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lieutenant", + "example_sentence_native": "Le lieutenant a donné des ordres à ses soldats.", + "example_sentence_english": "The lieutenant gave orders to his soldiers.", + "pos": "noun", + "word_frequency": 1812 + }, + { + "word": "lié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "linked", + "example_sentence_native": "Ces deux événements sont étroitement liés.", + "example_sentence_english": "These two events are closely linked.", + "pos": "adjective", + "word_frequency": 1814 + }, + { + "word": "magazine", + "article_with_word": "le magazine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magazine", + "example_sentence_native": "J'ai lu un article intéressant dans ce magazine.", + "example_sentence_english": "I read an interesting article in this magazine.", + "pos": "noun", + "word_frequency": 1815 + }, + { + "word": "olivier", + "article_with_word": "l'olivier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "olive tree", + "example_sentence_native": "L'olivier est un arbre typique de la Méditerranée.", + "example_sentence_english": "The olive tree is a typical Mediterranean tree.", + "pos": "noun", + "word_frequency": 1816 + }, + { + "word": "partenaire", + "article_with_word": "le partenaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partner", + "example_sentence_native": "Elle cherche un partenaire pour son projet.", + "example_sentence_english": "She is looking for a partner for her project.", + "pos": "noun", + "word_frequency": 1817 + }, + { + "word": "patient", + "article_with_word": "le patient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patient", + "example_sentence_native": "Le médecin a examiné son patient.", + "example_sentence_english": "The doctor examined his patient.", + "pos": "noun", + "word_frequency": 1818 + }, + { + "word": "performance", + "article_with_word": "la performance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance", + "example_sentence_native": "Sa performance sur scène était incroyable.", + "example_sentence_english": "His stage performance was incredible.", + "pos": "noun", + "word_frequency": 1819 + }, + { + "word": "plainte", + "article_with_word": "la plainte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complaint", + "example_sentence_native": "Il a déposé une plainte contre l'entreprise.", + "example_sentence_english": "He filed a complaint against the company.", + "pos": "noun", + "word_frequency": 1820 + }, + { + "word": "portable", + "article_with_word": "le portable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mobile phone", + "example_sentence_native": "J'ai oublié mon portable à la maison.", + "example_sentence_english": "I forgot my mobile phone at home.", + "pos": "noun", + "word_frequency": 1821 + }, + { + "word": "portrait", + "article_with_word": "le portrait", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portrait", + "example_sentence_native": "Elle a peint un magnifique portrait de sa mère.", + "example_sentence_english": "She painted a magnificent portrait of her mother.", + "pos": "noun", + "word_frequency": 1822 + }, + { + "word": "score", + "article_with_word": "le score", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "score", + "example_sentence_native": "Quel est le score final du match?", + "example_sentence_english": "What is the final score of the match?", + "pos": "noun", + "word_frequency": 1823 + }, + { + "word": "superbe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superb", + "example_sentence_native": "La vue depuis la montagne est superbe.", + "example_sentence_english": "The view from the mountain is superb.", + "pos": "adjective", + "word_frequency": 1824 + }, + { + "word": "tournoi", + "article_with_word": "le tournoi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tournament", + "example_sentence_native": "Il a gagné le tournoi de tennis.", + "example_sentence_english": "He won the tennis tournament.", + "pos": "noun", + "word_frequency": 1825 + }, + { + "word": "viande", + "article_with_word": "la viande", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meat", + "example_sentence_native": "Je préfère manger de la viande blanche.", + "example_sentence_english": "I prefer to eat white meat.", + "pos": "noun", + "word_frequency": 1826 + }, + { + "word": "vierge", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virgin", + "example_sentence_native": "La page était vierge, prête à être écrite.", + "example_sentence_english": "The page was blank, ready to be written.", + "pos": "adjective", + "word_frequency": 1827 + }, + { + "word": "étrange", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strange", + "example_sentence_native": "C'est une histoire très étrange.", + "example_sentence_english": "It's a very strange story.", + "pos": "adjective", + "word_frequency": 1829 + }, + { + "word": "attitude", + "article_with_word": "l'attitude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attitude", + "example_sentence_native": "Son attitude a beaucoup changé.", + "example_sentence_english": "His attitude has changed a lot.", + "pos": "noun", + "word_frequency": 1831 + }, + { + "word": "batterie", + "article_with_word": "la batterie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "battery", + "example_sentence_native": "La batterie de mon téléphone est faible.", + "example_sentence_english": "My phone's battery is low.", + "pos": "noun", + "word_frequency": 1832 + }, + { + "word": "collaboration", + "article_with_word": "la collaboration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collaboration", + "example_sentence_native": "Ce projet est le fruit d'une étroite collaboration.", + "example_sentence_english": "This project is the result of close collaboration.", + "pos": "noun", + "word_frequency": 1835 + }, + { + "word": "colonel", + "article_with_word": "le colonel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonel", + "example_sentence_native": "Le colonel a dirigé l'opération militaire.", + "example_sentence_english": "The colonel led the military operation.", + "pos": "noun", + "word_frequency": 1836 + }, + { + "word": "commettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commit", + "example_sentence_native": "Il a commis une erreur grave.", + "example_sentence_english": "He committed a serious error.", + "pos": "verb", + "word_frequency": 1837 + }, + { + "word": "composition", + "article_with_word": "la composition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composition", + "example_sentence_native": "La composition de la musique est complexe.", + "example_sentence_english": "The composition of the music is complex.", + "pos": "noun", + "word_frequency": 1838 + }, + { + "word": "convaincre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convince", + "example_sentence_native": "J'ai essayé de le convaincre de venir.", + "example_sentence_english": "I tried to convince him to come.", + "pos": "verb", + "word_frequency": 1839 + }, + { + "word": "copine", + "article_with_word": "une copine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "girlfriend;female friend", + "example_sentence_native": "Ma copine et moi allons au cinéma ce soir.", + "example_sentence_english": "My girlfriend and I are going to the cinema tonight.", + "pos": "noun", + "word_frequency": 1840 + }, + { + "word": "diffusion", + "article_with_word": "la diffusion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broadcast;diffusion;spread", + "example_sentence_native": "La diffusion du programme est prévue pour 20h.", + "example_sentence_english": "The broadcast of the program is scheduled for 8 PM.", + "pos": "noun", + "word_frequency": 1841 + }, + { + "word": "dirigeant", + "article_with_word": "le dirigeant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader;director;executive", + "example_sentence_native": "Le dirigeant de l'entreprise a annoncé de nouvelles mesures.", + "example_sentence_english": "The company's leader announced new measures.", + "pos": "noun", + "word_frequency": 1842 + }, + { + "word": "essence", + "article_with_word": "l'essence", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gasoline;essence", + "example_sentence_native": "Il faut mettre de l'essence dans la voiture.", + "example_sentence_english": "We need to put gas in the car.", + "pos": "noun", + "word_frequency": 1844 + }, + { + "word": "fondation", + "article_with_word": "la fondation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foundation", + "example_sentence_native": "Cette fondation soutient la recherche médicale.", + "example_sentence_english": "This foundation supports medical research.", + "pos": "noun", + "word_frequency": 1845 + }, + { + "word": "guide", + "article_with_word": "le guide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guide", + "example_sentence_native": "Le guide nous a montré les monuments historiques.", + "example_sentence_english": "The guide showed us the historical monuments.", + "pos": "noun", + "word_frequency": 1846 + }, + { + "word": "immobilier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate;property (adj)", + "example_sentence_native": "Le marché immobilier est en pleine croissance.", + "example_sentence_english": "The real estate market is growing rapidly.", + "pos": "adjective", + "word_frequency": 1847 + }, + { + "word": "imposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to impose;to enforce", + "example_sentence_native": "Le gouvernement a décidé d'imposer de nouvelles taxes.", + "example_sentence_english": "The government decided to impose new taxes.", + "pos": "verb", + "word_frequency": 1848 + }, + { + "word": "jeter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to throw", + "example_sentence_native": "Ne jetez pas vos déchets par terre.", + "example_sentence_english": "Don't throw your trash on the ground.", + "pos": "verb", + "word_frequency": 1849 + }, + { + "word": "nécessité", + "article_with_word": "la nécessité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "necessity;need", + "example_sentence_native": "Il y a une nécessité urgente d'agir.", + "example_sentence_english": "There is an urgent necessity to act.", + "pos": "noun", + "word_frequency": 1851 + }, + { + "word": "officiellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officially", + "example_sentence_native": "La nouvelle a été annoncée officiellement.", + "example_sentence_english": "The news was officially announced.", + "pos": "adverb", + "word_frequency": 1852 + }, + { + "word": "poisson", + "article_with_word": "le poisson", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fish", + "example_sentence_native": "J'aime manger du poisson le vendredi.", + "example_sentence_english": "I like to eat fish on Fridays.", + "pos": "noun", + "word_frequency": 1853 + }, + { + "word": "représentation", + "article_with_word": "la représentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representation;performance", + "example_sentence_native": "La représentation théâtrale a été un succès.", + "example_sentence_english": "The theatrical performance was a success.", + "pos": "noun", + "word_frequency": 1854 + }, + { + "word": "régler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to settle;to adjust;to pay", + "example_sentence_native": "Il faut régler la facture avant la fin du mois.", + "example_sentence_english": "The bill must be paid before the end of the month.", + "pos": "verb", + "word_frequency": 1855 + }, + { + "word": "spécialiste", + "article_with_word": "un spécialiste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialist", + "example_sentence_native": "J'ai consulté un spécialiste pour mon problème.", + "example_sentence_english": "I consulted a specialist for my problem.", + "pos": "noun", + "word_frequency": 1856 + }, + { + "word": "stage", + "article_with_word": "le stage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internship;training course", + "example_sentence_native": "Elle fait un stage dans une grande entreprise.", + "example_sentence_english": "She is doing an internship in a large company.", + "pos": "noun", + "word_frequency": 1857 + }, + { + "word": "supposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suppose;to assume", + "example_sentence_native": "Je suppose qu'il viendra demain.", + "example_sentence_english": "I suppose he will come tomorrow.", + "pos": "verb", + "word_frequency": 1858 + }, + { + "word": "évident", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obvious;evident", + "example_sentence_native": "C'est évident que tu as raison.", + "example_sentence_english": "It's obvious that you are right.", + "pos": "adjective", + "word_frequency": 1861 + }, + { + "word": "acquis", + "article_with_word": "un acquis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquisition;achievement;knowledge", + "example_sentence_native": "Il a de solides acquis dans ce domaine.", + "example_sentence_english": "He has solid knowledge in this field.", + "pos": "noun", + "word_frequency": 1862 + }, + { + "word": "actif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "active", + "example_sentence_native": "Il est très actif dans son association.", + "example_sentence_english": "He is very active in his association.", + "pos": "adjective", + "word_frequency": 1863 + }, + { + "word": "automne", + "article_with_word": "l'automne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "autumn;fall", + "example_sentence_native": "J'adore les couleurs de l'automne.", + "example_sentence_english": "I love the colors of autumn.", + "pos": "noun", + "word_frequency": 1864 + }, + { + "word": "bloc", + "article_with_word": "le bloc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "block", + "example_sentence_native": "Il a soulevé un lourd bloc de pierre.", + "example_sentence_english": "He lifted a heavy stone block.", + "pos": "noun", + "word_frequency": 1865 + }, + { + "word": "chocolat", + "article_with_word": "le chocolat", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chocolate", + "example_sentence_native": "J'aime le chocolat noir.", + "example_sentence_english": "I like dark chocolate.", + "pos": "noun", + "word_frequency": 1866 + }, + { + "word": "collègue", + "article_with_word": "un collègue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colleague", + "example_sentence_native": "Mon collègue m'a aidé avec ce projet.", + "example_sentence_english": "My colleague helped me with this project.", + "pos": "noun", + "word_frequency": 1867 + }, + { + "word": "confirmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confirm", + "example_sentence_native": "Pouvez-vous confirmer votre présence ?", + "example_sentence_english": "Can you confirm your presence?", + "pos": "verb", + "word_frequency": 1868 + }, + { + "word": "extrait", + "article_with_word": "un extrait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extract;excerpt", + "example_sentence_native": "J'ai lu un extrait de son nouveau livre.", + "example_sentence_english": "I read an excerpt from his new book.", + "pos": "noun", + "word_frequency": 1869 + }, + { + "word": "financier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial", + "example_sentence_native": "La situation financière de l'entreprise est stable.", + "example_sentence_english": "The company's financial situation is stable.", + "pos": "adjective", + "word_frequency": 1870 + }, + { + "word": "fixe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed;stable", + "example_sentence_native": "Il a un salaire fixe chaque mois.", + "example_sentence_english": "He has a fixed salary every month.", + "pos": "adjective", + "word_frequency": 1871 + }, + { + "word": "foule", + "article_with_word": "la foule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowd", + "example_sentence_native": "La foule était immense lors du concert.", + "example_sentence_english": "The crowd was huge at the concert.", + "pos": "noun", + "word_frequency": 1872 + }, + { + "word": "fédéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal", + "example_sentence_native": "Le gouvernement fédéral a pris une décision.", + "example_sentence_english": "The federal government made a decision.", + "pos": "adjective", + "word_frequency": 1873 + }, + { + "word": "gay", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gay;cheerful", + "example_sentence_native": "Il est ouvertement gay.", + "example_sentence_english": "He is openly gay.", + "pos": "adjective", + "word_frequency": 1874 + }, + { + "word": "immense", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immense;huge", + "example_sentence_native": "La vue depuis la montagne était immense.", + "example_sentence_english": "The view from the mountain was immense.", + "pos": "adjective", + "word_frequency": 1877 + }, + { + "word": "immeuble", + "article_with_word": "l'immeuble", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "building;apartment building", + "example_sentence_native": "Il habite dans un vieil immeuble du centre-ville.", + "example_sentence_english": "He lives in an old building downtown.", + "pos": "noun", + "word_frequency": 1878 + }, + { + "word": "interview", + "article_with_word": "l'interview", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interview", + "example_sentence_native": "Elle a donné une interview à la télévision.", + "example_sentence_english": "She gave an interview on television.", + "pos": "noun", + "word_frequency": 1879 + }, + { + "word": "inverse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inverse;opposite", + "example_sentence_native": "L'effet inverse s'est produit.", + "example_sentence_english": "The inverse effect occurred.", + "pos": "adjective", + "word_frequency": 1880 + }, + { + "word": "léger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light (weight);slight", + "example_sentence_native": "Ce sac est très léger.", + "example_sentence_english": "This bag is very light.", + "pos": "adjective", + "word_frequency": 1882 + }, + { + "word": "ordinateur", + "article_with_word": "un ordinateur", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "computer", + "example_sentence_native": "J'ai acheté un nouvel ordinateur.", + "example_sentence_english": "I bought a new computer.", + "pos": "noun", + "word_frequency": 1883 + }, + { + "word": "os", + "article_with_word": "un os", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bone", + "example_sentence_native": "Le chien ronge un os.", + "example_sentence_english": "The dog is gnawing on a bone.", + "pos": "noun", + "word_frequency": 1884 + }, + { + "word": "outil", + "article_with_word": "un outil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tool", + "example_sentence_native": "Il utilise un outil spécial pour réparer ça.", + "example_sentence_english": "He uses a special tool to fix that.", + "pos": "noun", + "word_frequency": 1885 + }, + { + "word": "précisément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precisely;exactly", + "example_sentence_native": "C'est précisément ce que je voulais dire.", + "example_sentence_english": "That's precisely what I wanted to say.", + "pos": "adverb", + "word_frequency": 1886 + }, + { + "word": "pub", + "article_with_word": "la pub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ad;commercial", + "example_sentence_native": "Il y a trop de pubs à la télévision.", + "example_sentence_english": "There are too many ads on television.", + "pos": "noun", + "word_frequency": 1887 + }, + { + "word": "pêche", + "article_with_word": "la pêche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fishing", + "example_sentence_native": "J'adore la pêche en rivière.", + "example_sentence_english": "I love river fishing.", + "pos": "noun", + "word_frequency": 1888 + }, + { + "word": "rarement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rarely", + "example_sentence_native": "Il va rarement au cinéma.", + "example_sentence_english": "He rarely goes to the cinema.", + "pos": "adverb", + "word_frequency": 1889 + }, + { + "word": "recette", + "article_with_word": "la recette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recipe", + "example_sentence_native": "J'ai trouvé une nouvelle recette de gâteau.", + "example_sentence_english": "I found a new cake recipe.", + "pos": "noun", + "word_frequency": 1891 + }, + { + "word": "rentrée", + "article_with_word": "la rentrée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "return (to school;work);start of academic year", + "example_sentence_native": "La rentrée scolaire est en septembre.", + "example_sentence_english": "The start of the school year is in September.", + "pos": "noun", + "word_frequency": 1892 + }, + { + "word": "souci", + "article_with_word": "un souci", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worry;concern;problem", + "example_sentence_native": "Ne t'inquiète pas, il n'y a aucun souci.", + "example_sentence_english": "Don't worry, there's no problem.", + "pos": "noun", + "word_frequency": 1893 + }, + { + "word": "soumettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to submit;to subject", + "example_sentence_native": "Vous devez soumettre votre candidature avant la date limite.", + "example_sentence_english": "You must submit your application before the deadline.", + "pos": "verb", + "word_frequency": 1894 + }, + { + "word": "séjour", + "article_with_word": "un séjour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stay (visit);living room", + "example_sentence_native": "Nous avons passé un agréable séjour à Paris.", + "example_sentence_english": "We had a pleasant stay in Paris.", + "pos": "noun", + "word_frequency": 1895 + }, + { + "word": "taxe", + "article_with_word": "la taxe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tax", + "example_sentence_native": "Le prix inclut la taxe.", + "example_sentence_english": "The price includes the tax.", + "pos": "noun", + "word_frequency": 1896 + }, + { + "word": "transfert", + "article_with_word": "le transfert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer", + "example_sentence_native": "Le transfert des données est en cours.", + "example_sentence_english": "The data transfer is in progress.", + "pos": "noun", + "word_frequency": 1897 + }, + { + "word": "vigueur", + "article_with_word": "la vigueur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vigor;force;effectiveness", + "example_sentence_native": "La nouvelle loi entre en vigueur demain.", + "example_sentence_english": "The new law comes into force tomorrow.", + "pos": "noun", + "word_frequency": 1899 + }, + { + "word": "voile", + "article_with_word": "la voile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sail;sailing", + "example_sentence_native": "Nous avons fait de la voile cet été.", + "example_sentence_english": "We went sailing this summer.", + "pos": "noun", + "word_frequency": 1900 + }, + { + "word": "zéro", + "article_with_word": "le zéro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zero", + "example_sentence_native": "Il a obtenu zéro à l'examen.", + "example_sentence_english": "He got zero on the exam.", + "pos": "numeral", + "word_frequency": 1902 + }, + { + "word": "billet", + "article_with_word": "un billet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ticket;banknote", + "example_sentence_native": "J'ai acheté un billet de train.", + "example_sentence_english": "I bought a train ticket.", + "pos": "noun", + "word_frequency": 1904 + }, + { + "word": "calcul", + "article_with_word": "le calcul", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calculation", + "example_sentence_native": "Le calcul était très complexe.", + "example_sentence_english": "The calculation was very complex.", + "pos": "noun", + "word_frequency": 1905 + }, + { + "word": "caractéristique", + "article_with_word": "la caractéristique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characteristic;feature", + "example_sentence_native": "C'est une caractéristique importante de ce modèle.", + "example_sentence_english": "It's an important characteristic of this model.", + "pos": "noun", + "word_frequency": 1906 + }, + { + "word": "choc", + "article_with_word": "le choc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shock;impact", + "example_sentence_native": "L'annonce a provoqué un choc.", + "example_sentence_english": "The announcement caused a shock.", + "pos": "noun", + "word_frequency": 1907 + }, + { + "word": "disque", + "article_with_word": "le disque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disc;record", + "example_sentence_native": "J'ai écouté un vieux disque.", + "example_sentence_english": "I listened to an old record.", + "pos": "noun", + "word_frequency": 1908 + }, + { + "word": "décret", + "article_with_word": "le décret", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decree;order", + "example_sentence_native": "Le gouvernement a publié un nouveau décret.", + "example_sentence_english": "The government published a new decree.", + "pos": "noun", + "word_frequency": 1909 + }, + { + "word": "désir", + "article_with_word": "le désir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desire;wish", + "example_sentence_native": "Il a exprimé son désir de voyager.", + "example_sentence_english": "He expressed his desire to travel.", + "pos": "noun", + "word_frequency": 1910 + }, + { + "word": "déterminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to determine;to ascertain", + "example_sentence_native": "Il faut déterminer la cause du problème.", + "example_sentence_english": "We need to determine the cause of the problem.", + "pos": "verb", + "word_frequency": 1911 + }, + { + "word": "enlever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove;to take off", + "example_sentence_native": "Peux-tu enlever tes chaussures s'il te plaît ?", + "example_sentence_english": "Can you take off your shoes please?", + "pos": "verb", + "word_frequency": 1912 + }, + { + "word": "entraînement", + "article_with_word": "l'entraînement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;practice", + "example_sentence_native": "L'entraînement est essentiel pour les athlètes.", + "example_sentence_english": "Training is essential for athletes.", + "pos": "noun", + "word_frequency": 1913 + }, + { + "word": "fabrication", + "article_with_word": "la fabrication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing;production", + "example_sentence_native": "Le coût de fabrication est élevé.", + "example_sentence_english": "The manufacturing cost is high.", + "pos": "noun", + "word_frequency": 1914 + }, + { + "word": "fermé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "closed", + "example_sentence_native": "La boutique est fermée le dimanche.", + "example_sentence_english": "The shop is closed on Sunday.", + "pos": "adjective", + "word_frequency": 1915 + }, + { + "word": "lourd", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heavy", + "example_sentence_native": "Cette boîte est trop lourde.", + "example_sentence_english": "This box is too heavy.", + "pos": "adjective", + "word_frequency": 1919 + }, + { + "word": "mener", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lead", + "example_sentence_native": "Il doit mener l'équipe vers la victoire.", + "example_sentence_english": "He must lead the team to victory.", + "pos": "verb", + "word_frequency": 1920 + }, + { + "word": "micro", + "article_with_word": "le micro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "example_sentence_native": "Le chanteur a pris le micro.", + "example_sentence_english": "The singer took the microphone.", + "pos": "noun", + "word_frequency": 1921 + }, + { + "word": "mont", + "article_with_word": "le mont", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mount", + "example_sentence_native": "Ils ont escaladé le mont le plus haut.", + "example_sentence_english": "They climbed the highest mount.", + "pos": "noun", + "word_frequency": 1922 + }, + { + "word": "moral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moral", + "example_sentence_native": "C'est une question morale importante.", + "example_sentence_english": "It's an important moral question.", + "pos": "adjective", + "word_frequency": 1923 + }, + { + "word": "obligation", + "article_with_word": "l'obligation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obligation", + "example_sentence_native": "Il a une obligation de rendre des comptes.", + "example_sentence_english": "He has an obligation to report.", + "pos": "noun", + "word_frequency": 1924 + }, + { + "word": "officier", + "article_with_word": "l'officier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officer", + "example_sentence_native": "L'officier de police est arrivé rapidement.", + "example_sentence_english": "The police officer arrived quickly.", + "pos": "noun", + "word_frequency": 1925 + }, + { + "word": "poche", + "article_with_word": "la poche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pocket", + "example_sentence_native": "J'ai mis mes clés dans ma poche.", + "example_sentence_english": "I put my keys in my pocket.", + "pos": "noun", + "word_frequency": 1926 + }, + { + "word": "prénom", + "article_with_word": "le prénom", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "first name", + "example_sentence_native": "Quel est votre prénom?", + "example_sentence_english": "What is your first name?", + "pos": "noun", + "word_frequency": 1927 + }, + { + "word": "rock", + "article_with_word": "le rock", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rock (music)", + "example_sentence_native": "J'aime écouter de la musique rock.", + "example_sentence_english": "I like listening to rock music.", + "pos": "noun", + "word_frequency": 1928 + }, + { + "word": "solide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solid", + "example_sentence_native": "Cette table est très solide.", + "example_sentence_english": "This table is very solid.", + "pos": "adjective", + "word_frequency": 1929 + }, + { + "word": "tentative", + "article_with_word": "la tentative", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attempt", + "example_sentence_native": "C'était une première tentative réussie.", + "example_sentence_english": "It was a successful first attempt.", + "pos": "noun", + "word_frequency": 1930 + }, + { + "word": "vallée", + "article_with_word": "la vallée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valley", + "example_sentence_native": "Nous avons marché dans la vallée.", + "example_sentence_english": "We walked in the valley.", + "pos": "noun", + "word_frequency": 1931 + }, + { + "word": "égard", + "article_with_word": "l'égard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regard", + "example_sentence_native": "Il a beaucoup d'égards pour ses aînés.", + "example_sentence_english": "He has a lot of regard for his elders.", + "pos": "noun", + "word_frequency": 1932 + }, + { + "word": "agricole", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agricultural", + "example_sentence_native": "La région est principalement agricole.", + "example_sentence_english": "The region is mainly agricultural.", + "pos": "adjective", + "word_frequency": 1933 + }, + { + "word": "appliquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply", + "example_sentence_native": "Vous devez appliquer cette règle.", + "example_sentence_english": "You must apply this rule.", + "pos": "verb", + "word_frequency": 1934 + }, + { + "word": "attaquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attack", + "example_sentence_native": "L'armée a décidé d'attaquer à l'aube.", + "example_sentence_english": "The army decided to attack at dawn.", + "pos": "verb", + "word_frequency": 1935 + }, + { + "word": "autorisation", + "article_with_word": "l'autorisation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authorization", + "example_sentence_native": "Vous avez besoin d'une autorisation spéciale.", + "example_sentence_english": "You need special authorization.", + "pos": "noun", + "word_frequency": 1936 + }, + { + "word": "circuit", + "article_with_word": "le circuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circuit", + "example_sentence_native": "La voiture a fait plusieurs tours de circuit.", + "example_sentence_english": "The car did several laps of the circuit.", + "pos": "noun", + "word_frequency": 1937 + }, + { + "word": "courir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to run", + "example_sentence_native": "J'aime courir le matin.", + "example_sentence_english": "I like to run in the morning.", + "pos": "verb", + "word_frequency": 1938 + }, + { + "word": "déjeuner", + "article_with_word": "le déjeuner", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lunch", + "example_sentence_native": "Nous allons prendre le déjeuner à midi.", + "example_sentence_english": "We are going to have lunch at noon.", + "pos": "noun", + "word_frequency": 1939 + }, + { + "word": "délai", + "article_with_word": "le délai", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadline", + "example_sentence_native": "Le délai pour soumettre le rapport est demain.", + "example_sentence_english": "The deadline to submit the report is tomorrow.", + "pos": "noun", + "word_frequency": 1940 + }, + { + "word": "efficacité", + "article_with_word": "l'efficacité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficiency", + "example_sentence_native": "Nous devons améliorer l'efficacité de nos processus.", + "example_sentence_english": "We must improve the efficiency of our processes.", + "pos": "noun", + "word_frequency": 1941 + }, + { + "word": "expert", + "article_with_word": "l'expert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expert", + "example_sentence_native": "Il est un expert en la matière.", + "example_sentence_english": "He is an expert in the field.", + "pos": "noun", + "word_frequency": 1942 + }, + { + "word": "feuille", + "article_with_word": "la feuille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leaf", + "example_sentence_native": "Les feuilles tombent des arbres en automne.", + "example_sentence_english": "Leaves fall from trees in autumn.", + "pos": "noun", + "word_frequency": 1943 + }, + { + "word": "idéal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ideal", + "example_sentence_native": "C'est la solution idéale pour nous.", + "example_sentence_english": "It's the ideal solution for us.", + "pos": "adjective", + "word_frequency": 1945 + }, + { + "word": "intelligence", + "article_with_word": "l'intelligence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intelligence", + "example_sentence_native": "Elle a une grande intelligence émotionnelle.", + "example_sentence_english": "She has great emotional intelligence.", + "pos": "noun", + "word_frequency": 1946 + }, + { + "word": "mention", + "article_with_word": "la mention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mention", + "example_sentence_native": "Il a obtenu une mention très bien à son examen.", + "example_sentence_english": "He got a very good mention on his exam.", + "pos": "noun", + "word_frequency": 1949 + }, + { + "word": "né", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "born", + "example_sentence_native": "Je suis né en France.", + "example_sentence_english": "I was born in France.", + "pos": "adjective", + "word_frequency": 1950 + }, + { + "word": "pause", + "article_with_word": "la pause", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "break", + "example_sentence_native": "Faisons une petite pause café.", + "example_sentence_english": "Let's take a short coffee break.", + "pos": "noun", + "word_frequency": 1951 + }, + { + "word": "quart", + "article_with_word": "le quart", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quarter", + "example_sentence_native": "Il est huit heures et quart.", + "example_sentence_english": "It's a quarter past eight.", + "pos": "noun", + "word_frequency": 1952 + }, + { + "word": "ridicule", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ridiculous", + "example_sentence_native": "Son idée est complètement ridicule.", + "example_sentence_english": "His idea is completely ridiculous.", + "pos": "adjective", + "word_frequency": 1953 + }, + { + "word": "réputation", + "article_with_word": "la réputation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reputation", + "example_sentence_native": "Il a une excellente réputation dans son domaine.", + "example_sentence_english": "He has an excellent reputation in his field.", + "pos": "noun", + "word_frequency": 1954 + }, + { + "word": "secondaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondary", + "example_sentence_native": "C'est une question d'importance secondaire.", + "example_sentence_english": "It's a matter of secondary importance.", + "pos": "adjective", + "word_frequency": 1955 + }, + { + "word": "studio", + "article_with_word": "le studio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "studio", + "example_sentence_native": "J'habite dans un petit studio en ville.", + "example_sentence_english": "I live in a small studio in the city.", + "pos": "noun", + "word_frequency": 1956 + }, + { + "word": "sucre", + "article_with_word": "le sucre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sugar", + "example_sentence_native": "Voulez-vous du sucre dans votre café?", + "example_sentence_english": "Do you want sugar in your coffee?", + "pos": "noun", + "word_frequency": 1957 + }, + { + "word": "trafic", + "article_with_word": "le trafic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic", + "example_sentence_native": "Il y a beaucoup de trafic aux heures de pointe.", + "example_sentence_english": "There is a lot of traffic during rush hour.", + "pos": "noun", + "word_frequency": 1959 + }, + { + "word": "utilisateur", + "article_with_word": "l'utilisateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "user", + "example_sentence_native": "L'utilisateur a signalé un problème.", + "example_sentence_english": "The user reported a problem.", + "pos": "noun", + "word_frequency": 1960 + }, + { + "word": "électeur", + "article_with_word": "l'électeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voter", + "example_sentence_native": "Chaque électeur a le droit de voter.", + "example_sentence_english": "Every voter has the right to vote.", + "pos": "noun", + "word_frequency": 1961 + }, + { + "word": "étudier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to study", + "example_sentence_native": "J'aime étudier le français.", + "example_sentence_english": "I like to study French.", + "pos": "verb", + "word_frequency": 1962 + }, + { + "word": "affirmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to affirm;to state", + "example_sentence_native": "Il a affirmé son innocence.", + "example_sentence_english": "He affirmed his innocence.", + "pos": "verb", + "word_frequency": 1963 + }, + { + "word": "angle", + "article_with_word": "l'angle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angle;corner", + "example_sentence_native": "Regarde l'angle de cette pièce.", + "example_sentence_english": "Look at the angle of this room.", + "pos": "noun", + "word_frequency": 1964 + }, + { + "word": "appui", + "article_with_word": "l'appui", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support;backing", + "example_sentence_native": "Il a besoin de l'appui de sa famille.", + "example_sentence_english": "He needs his family's support.", + "pos": "noun", + "word_frequency": 1965 + }, + { + "word": "bière", + "article_with_word": "la bière", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beer", + "example_sentence_native": "Je voudrais une bière, s'il vous plaît.", + "example_sentence_english": "I would like a beer, please.", + "pos": "noun", + "word_frequency": 1968 + }, + { + "word": "cacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hide", + "example_sentence_native": "Il a caché le cadeau.", + "example_sentence_english": "He hid the gift.", + "pos": "verb", + "word_frequency": 1969 + }, + { + "word": "compétence", + "article_with_word": "la compétence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skill;competence", + "example_sentence_native": "Elle a de grandes compétences en informatique.", + "example_sentence_english": "She has great computer skills.", + "pos": "noun", + "word_frequency": 1970 + }, + { + "word": "coupable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guilty", + "example_sentence_native": "Le jury l'a déclaré coupable.", + "example_sentence_english": "The jury declared him guilty.", + "pos": "adjective", + "word_frequency": 1971 + }, + { + "word": "culturel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultural", + "example_sentence_native": "Nous avons visité de nombreux sites culturels.", + "example_sentence_english": "We visited many cultural sites.", + "pos": "adjective", + "word_frequency": 1972 + }, + { + "word": "cérémonie", + "article_with_word": "la cérémonie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceremony", + "example_sentence_native": "La cérémonie de mariage était magnifique.", + "example_sentence_english": "The wedding ceremony was beautiful.", + "pos": "noun", + "word_frequency": 1973 + }, + { + "word": "debout", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "standing;upright", + "example_sentence_native": "Il est resté debout pendant tout le concert.", + "example_sentence_english": "He remained standing throughout the concert.", + "pos": "adverb", + "word_frequency": 1974 + }, + { + "word": "drogue", + "article_with_word": "la drogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug", + "example_sentence_native": "La drogue est un problème de santé publique.", + "example_sentence_english": "Drug is a public health problem.", + "pos": "noun", + "word_frequency": 1975 + }, + { + "word": "détruire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to destroy", + "example_sentence_native": "Le tremblement de terre a détruit de nombreuses maisons.", + "example_sentence_english": "The earthquake destroyed many houses.", + "pos": "verb", + "word_frequency": 1976 + }, + { + "word": "enfer", + "article_with_word": "l'enfer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hell", + "example_sentence_native": "Il a vécu un véritable enfer.", + "example_sentence_english": "He lived through a real hell.", + "pos": "noun", + "word_frequency": 1977 + }, + { + "word": "gardien", + "article_with_word": "le gardien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guardian;keeper", + "example_sentence_native": "Le gardien a ouvert la porte.", + "example_sentence_english": "The guardian opened the door.", + "pos": "noun", + "word_frequency": 1978 + }, + { + "word": "geste", + "article_with_word": "le geste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gesture", + "example_sentence_native": "Il a fait un geste de la main.", + "example_sentence_english": "He made a gesture with his hand.", + "pos": "noun", + "word_frequency": 1980 + }, + { + "word": "juger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to judge", + "example_sentence_native": "Il est difficile de juger sans connaître les faits.", + "example_sentence_english": "It's difficult to judge without knowing the facts.", + "pos": "verb", + "word_frequency": 1983 + }, + { + "word": "majeur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "major;adult", + "example_sentence_native": "C'est un problème majeur.", + "example_sentence_english": "This is a major problem.", + "pos": "adjective", + "word_frequency": 1985 + }, + { + "word": "notion", + "article_with_word": "la notion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notion;concept", + "example_sentence_native": "Il a une bonne notion de la justice.", + "example_sentence_english": "He has a good notion of justice.", + "pos": "noun", + "word_frequency": 1986 + }, + { + "word": "pardon", + "article_with_word": "le pardon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forgiveness;pardon", + "example_sentence_native": "Je vous demande pardon.", + "example_sentence_english": "I ask for your forgiveness.", + "pos": "noun", + "word_frequency": 1987 + }, + { + "word": "poursuivre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pursue;to continue;to prosecute", + "example_sentence_native": "Il a décidé de poursuivre ses études.", + "example_sentence_english": "He decided to continue his studies.", + "pos": "verb", + "word_frequency": 1988 + }, + { + "word": "pousser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to push;to grow", + "example_sentence_native": "Il faut pousser la porte pour l'ouvrir.", + "example_sentence_english": "You have to push the door to open it.", + "pos": "verb", + "word_frequency": 1989 + }, + { + "word": "relever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise;to pick up;to note", + "example_sentence_native": "Il a relevé le défi.", + "example_sentence_english": "He rose to the challenge.", + "pos": "verb", + "word_frequency": 1990 + }, + { + "word": "règne", + "article_with_word": "le règne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reign;rule", + "example_sentence_native": "Le règne de la reine a duré longtemps.", + "example_sentence_english": "The queen's reign lasted a long time.", + "pos": "noun", + "word_frequency": 1991 + }, + { + "word": "récit", + "article_with_word": "le récit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrative;story;account", + "example_sentence_native": "Son récit était très émouvant.", + "example_sentence_english": "His account was very moving.", + "pos": "noun", + "word_frequency": 1992 + }, + { + "word": "sommeil", + "article_with_word": "le sommeil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleep", + "example_sentence_native": "J'ai besoin de plus de sommeil.", + "example_sentence_english": "I need more sleep.", + "pos": "noun", + "word_frequency": 1993 + }, + { + "word": "suicide", + "article_with_word": "le suicide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicide", + "example_sentence_native": "La prévention du suicide est cruciale.", + "example_sentence_english": "Suicide prevention is crucial.", + "pos": "noun", + "word_frequency": 1994 + }, + { + "word": "tome", + "article_with_word": "le tome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volume (of a book)", + "example_sentence_native": "C'est le premier tome de la série.", + "example_sentence_english": "This is the first volume of the series.", + "pos": "noun", + "word_frequency": 1995 + }, + { + "word": "trace", + "article_with_word": "la trace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trace;track;mark", + "example_sentence_native": "Nous avons trouvé des traces de pas dans la neige.", + "example_sentence_english": "We found footprints in the snow.", + "pos": "noun", + "word_frequency": 1996 + }, + { + "word": "tâche", + "article_with_word": "la tâche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "task;chore", + "example_sentence_native": "J'ai beaucoup de tâches à accomplir aujourd'hui.", + "example_sentence_english": "I have many tasks to complete today.", + "pos": "noun", + "word_frequency": 1997 + }, + { + "word": "ultra", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ultra;extreme", + "example_sentence_native": "C'est un film ultra-violent.", + "example_sentence_english": "It's an ultra-violent film.", + "pos": "adjective", + "word_frequency": 1998 + }, + { + "word": "accueillir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to welcome;to host", + "example_sentence_native": "Ils nous ont accueillis chaleureusement.", + "example_sentence_english": "They welcomed us warmly.", + "pos": "verb", + "word_frequency": 1999 + }, + { + "word": "associer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to associate", + "example_sentence_native": "Il est difficile d'associer ces deux idées.", + "example_sentence_english": "It is difficult to associate these two ideas.", + "pos": "verb", + "word_frequency": 2001 + }, + { + "word": "atelier", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "workshop", + "example_sentence_native": "L'artiste travaille dans son atelier.", + "example_sentence_english": "The artist works in his workshop.", + "pos": "noun", + "word_frequency": 2002 + }, + { + "word": "automobile", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car;automobile", + "example_sentence_native": "L'automobile est devenue indispensable pour beaucoup de gens.", + "example_sentence_english": "The automobile has become indispensable for many people.", + "pos": "noun", + "word_frequency": 2003 + }, + { + "word": "charte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charter", + "example_sentence_native": "La charte des droits de l'homme est un texte fondamental.", + "example_sentence_english": "The Human Rights Charter is a fundamental text.", + "pos": "noun", + "word_frequency": 2004 + }, + { + "word": "cinquième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fifth", + "example_sentence_native": "C'est la cinquième fois que je le vois.", + "example_sentence_english": "This is the fifth time I see him.", + "pos": "numeral", + "word_frequency": 2006 + }, + { + "word": "circonstance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circumstance", + "example_sentence_native": "Dans ces circonstances, il est préférable d'attendre.", + "example_sentence_english": "In these circumstances, it is better to wait.", + "pos": "noun", + "word_frequency": 2007 + }, + { + "word": "conserver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to preserve;to keep", + "example_sentence_native": "Il faut conserver les aliments au frais.", + "example_sentence_english": "Food must be kept cool.", + "pos": "verb", + "word_frequency": 2008 + }, + { + "word": "définitivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "definitively;permanently", + "example_sentence_native": "Il a décidé de partir définitivement.", + "example_sentence_english": "He decided to leave definitively.", + "pos": "adverb", + "word_frequency": 2010 + }, + { + "word": "démarche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach;step;process", + "example_sentence_native": "Sa démarche pour résoudre le problème était très logique.", + "example_sentence_english": "His approach to solving the problem was very logical.", + "pos": "noun", + "word_frequency": 2011 + }, + { + "word": "foot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soccer;football", + "example_sentence_native": "J'adore regarder les matchs de foot.", + "example_sentence_english": "I love watching soccer matches.", + "pos": "noun", + "word_frequency": 2012 + }, + { + "word": "gouverneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governor", + "example_sentence_native": "Le gouverneur a annoncé de nouvelles mesures.", + "example_sentence_english": "The governor announced new measures.", + "pos": "noun", + "word_frequency": 2013 + }, + { + "word": "gratuitement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for free;gratuitously", + "example_sentence_native": "Vous pouvez télécharger le logiciel gratuitement.", + "example_sentence_english": "You can download the software for free.", + "pos": "adverb", + "word_frequency": 2014 + }, + { + "word": "incendie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire (large;destructive)", + "example_sentence_native": "Les pompiers ont maîtrisé l'incendie.", + "example_sentence_english": "Firefighters brought the fire under control.", + "pos": "noun", + "word_frequency": 2015 + }, + { + "word": "interprétation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpretation", + "example_sentence_native": "Son interprétation de la loi est contestée.", + "example_sentence_english": "His interpretation of the law is disputed.", + "pos": "noun", + "word_frequency": 2016 + }, + { + "word": "juridique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal;juridical", + "example_sentence_native": "Il a besoin de conseils juridiques.", + "example_sentence_english": "He needs legal advice.", + "pos": "adjective", + "word_frequency": 2018 + }, + { + "word": "leader", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leader", + "example_sentence_native": "Il est le leader de son équipe.", + "example_sentence_english": "He is the leader of his team.", + "pos": "noun", + "word_frequency": 2019 + }, + { + "word": "luxe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luxury", + "example_sentence_native": "Ils vivent dans le luxe.", + "example_sentence_english": "They live in luxury.", + "pos": "noun", + "word_frequency": 2021 + }, + { + "word": "manifestation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstration;protest;manifestation", + "example_sentence_native": "Une grande manifestation a eu lieu dans la capitale.", + "example_sentence_english": "A large demonstration took place in the capital.", + "pos": "noun", + "word_frequency": 2023 + }, + { + "word": "multiple", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiple", + "example_sentence_native": "Il y a de multiples raisons à cela.", + "example_sentence_english": "There are multiple reasons for this.", + "pos": "adjective", + "word_frequency": 2024 + }, + { + "word": "municipal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal", + "example_sentence_native": "Le conseil municipal a voté la nouvelle loi.", + "example_sentence_english": "The municipal council voted on the new law.", + "pos": "adjective", + "word_frequency": 2025 + }, + { + "word": "noter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to note;to mark", + "example_sentence_native": "N'oubliez pas de noter cette information.", + "example_sentence_english": "Don't forget to note this information.", + "pos": "verb", + "word_frequency": 2026 + }, + { + "word": "positif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "positive", + "example_sentence_native": "Il a une attitude très positive.", + "example_sentence_english": "He has a very positive attitude.", + "pos": "adjective", + "word_frequency": 2027 + }, + { + "word": "procureur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosecutor;public prosecutor", + "example_sentence_native": "Le procureur a requis la peine maximale.", + "example_sentence_english": "The prosecutor requested the maximum sentence.", + "pos": "noun", + "word_frequency": 2028 + }, + { + "word": "prof", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teacher (informal)", + "example_sentence_native": "Mon prof de maths est très sympa.", + "example_sentence_english": "My math teacher is very nice.", + "pos": "noun", + "word_frequency": 2029 + }, + { + "word": "pré", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meadow;field", + "example_sentence_native": "Les vaches paissent dans le pré.", + "example_sentence_english": "The cows graze in the meadow.", + "pos": "noun", + "word_frequency": 2030 + }, + { + "word": "pétrole", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oil;petroleum", + "example_sentence_native": "Le prix du pétrole a augmenté.", + "example_sentence_english": "The price of oil has increased.", + "pos": "noun", + "word_frequency": 2031 + }, + { + "word": "reposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rest;to lie (on)", + "example_sentence_native": "J'ai besoin de me reposer après cette longue journée.", + "example_sentence_english": "I need to rest after this long day.", + "pos": "verb", + "word_frequency": 2032 + }, + { + "word": "show", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "show", + "example_sentence_native": "Le show a commencé à 20h.", + "example_sentence_english": "The show started at 8 PM.", + "pos": "noun", + "word_frequency": 2033 + }, + { + "word": "vague", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wave", + "example_sentence_native": "Les surfeurs attendent la bonne vague.", + "example_sentence_english": "Surfers are waiting for the right wave.", + "pos": "noun", + "word_frequency": 2036 + }, + { + "word": "abus", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abuse;misuse", + "example_sentence_native": "L'abus de pouvoir est inacceptable.", + "example_sentence_english": "The abuse of power is unacceptable.", + "pos": "noun", + "word_frequency": 2037 + }, + { + "word": "aise", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ease;comfort", + "example_sentence_native": "Il n'est pas à l'aise en public.", + "example_sentence_english": "He is not at ease in public.", + "pos": "noun", + "word_frequency": 2038 + }, + { + "word": "commissaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commissioner;superintendent (police)", + "example_sentence_native": "Le commissaire a ouvert une enquête.", + "example_sentence_english": "The commissioner opened an investigation.", + "pos": "noun", + "word_frequency": 2039 + }, + { + "word": "convenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suit;to agree", + "example_sentence_native": "Cette solution me convient parfaitement.", + "example_sentence_english": "This solution suits me perfectly.", + "pos": "verb", + "word_frequency": 2040 + }, + { + "word": "coopération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooperation", + "example_sentence_native": "La coopération est essentielle pour réussir.", + "example_sentence_english": "Cooperation is essential for success.", + "pos": "noun", + "word_frequency": 2041 + }, + { + "word": "degré", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "degree", + "example_sentence_native": "La température a baissé de plusieurs degrés.", + "example_sentence_english": "The temperature dropped by several degrees.", + "pos": "noun", + "word_frequency": 2042 + }, + { + "word": "drapeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flag", + "example_sentence_native": "Le drapeau français est bleu, blanc, rouge.", + "example_sentence_english": "The French flag is blue, white, red.", + "pos": "noun", + "word_frequency": 2043 + }, + { + "word": "fuite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leak;escape", + "example_sentence_native": "Il y a une fuite d'eau dans la salle de bain.", + "example_sentence_english": "There is a water leak in the bathroom.", + "pos": "noun", + "word_frequency": 2045 + }, + { + "word": "gamme", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "range;scale", + "example_sentence_native": "Cette entreprise propose une large gamme de produits.", + "example_sentence_english": "This company offers a wide range of products.", + "pos": "noun", + "word_frequency": 2046 + }, + { + "word": "invité", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guest", + "example_sentence_native": "Nous avons invité des amis à dîner.", + "example_sentence_english": "We invited some friends for dinner.", + "pos": "noun", + "word_frequency": 2047 + }, + { + "word": "lunette", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "telescope;lens", + "example_sentence_native": "J'ai regardé les étoiles avec une lunette.", + "example_sentence_english": "I looked at the stars with a telescope.", + "pos": "noun", + "word_frequency": 2048 + }, + { + "word": "mine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mine;appearance", + "example_sentence_native": "Elle a une bonne mine ce matin.", + "example_sentence_english": "She looks well this morning.", + "pos": "noun", + "word_frequency": 2049 + }, + { + "word": "obligatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obligatory;compulsory", + "example_sentence_native": "Le port du casque est obligatoire à vélo.", + "example_sentence_english": "Wearing a helmet is compulsory when cycling.", + "pos": "adjective", + "word_frequency": 2052 + }, + { + "word": "paradis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paradise", + "example_sentence_native": "Ce jardin est un vrai paradis.", + "example_sentence_english": "This garden is a true paradise.", + "pos": "noun", + "word_frequency": 2054 + }, + { + "word": "potentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potential", + "example_sentence_native": "Il a un potentiel énorme.", + "example_sentence_english": "He has enormous potential.", + "pos": "adjective", + "word_frequency": 2055 + }, + { + "word": "remarquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notice;to remark", + "example_sentence_native": "J'ai remarqué qu'il était absent.", + "example_sentence_english": "I noticed that he was absent.", + "pos": "verb", + "word_frequency": 2056 + }, + { + "word": "repos", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest", + "example_sentence_native": "J'ai besoin de repos après cette longue journée.", + "example_sentence_english": "I need rest after this long day.", + "pos": "noun", + "word_frequency": 2057 + }, + { + "word": "sec", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dry", + "example_sentence_native": "Le linge est sec.", + "example_sentence_english": "The laundry is dry.", + "pos": "adjective", + "word_frequency": 2058 + }, + { + "word": "sondage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poll;survey", + "example_sentence_native": "Un récent sondage montre une augmentation de la popularité.", + "example_sentence_english": "A recent poll shows an increase in popularity.", + "pos": "noun", + "word_frequency": 2059 + }, + { + "word": "standard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standard", + "example_sentence_native": "C'est la procédure standard.", + "example_sentence_english": "This is the standard procedure.", + "pos": "adjective", + "word_frequency": 2060 + }, + { + "word": "trésor", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treasure", + "example_sentence_native": "Les pirates ont cherché le trésor caché.", + "example_sentence_english": "The pirates looked for the hidden treasure.", + "pos": "noun", + "word_frequency": 2061 + }, + { + "word": "électronique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronic", + "example_sentence_native": "J'ai acheté un nouveau livre électronique.", + "example_sentence_english": "I bought a new electronic book.", + "pos": "adjective", + "word_frequency": 2063 + }, + { + "word": "évidence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evidence;obviousness", + "example_sentence_native": "C'est une évidence pour tout le monde.", + "example_sentence_english": "It's obvious to everyone.", + "pos": "noun", + "word_frequency": 2064 + }, + { + "word": "alerte", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alert", + "example_sentence_native": "Le système a déclenché une alerte.", + "example_sentence_english": "The system triggered an alert.", + "pos": "noun", + "word_frequency": 2065 + }, + { + "word": "architecture", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "architecture", + "example_sentence_native": "J'étudie l'architecture à l'université.", + "example_sentence_english": "I study architecture at university.", + "pos": "noun", + "word_frequency": 2066 + }, + { + "word": "baiser", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kiss", + "example_sentence_native": "Il lui a donné un doux baiser sur la joue.", + "example_sentence_english": "He gave her a soft kiss on the cheek.", + "pos": "noun", + "word_frequency": 2067 + }, + { + "word": "bourse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stock exchange;scholarship;purse", + "example_sentence_native": "Elle a obtenu une bourse pour ses études.", + "example_sentence_english": "She received a scholarship for her studies.", + "pos": "noun", + "word_frequency": 2068 + }, + { + "word": "comparaison", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparison", + "example_sentence_native": "La comparaison entre les deux produits est intéressante.", + "example_sentence_english": "The comparison between the two products is interesting.", + "pos": "noun", + "word_frequency": 2069 + }, + { + "word": "coûter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cost", + "example_sentence_native": "Combien coûte ce livre ?", + "example_sentence_english": "How much does this book cost?", + "pos": "verb", + "word_frequency": 2071 + }, + { + "word": "cycle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycle", + "example_sentence_native": "Le cycle de l'eau est essentiel à la vie.", + "example_sentence_english": "The water cycle is essential for life.", + "pos": "noun", + "word_frequency": 2072 + }, + { + "word": "destination", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "destination", + "example_sentence_native": "Quelle est votre destination finale ?", + "example_sentence_english": "What is your final destination?", + "pos": "noun", + "word_frequency": 2073 + }, + { + "word": "douche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shower", + "example_sentence_native": "Je prends une douche tous les matins.", + "example_sentence_english": "I take a shower every morning.", + "pos": "noun", + "word_frequency": 2074 + }, + { + "word": "explication", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "explanation", + "example_sentence_native": "Peux-tu me donner une explication ?", + "example_sentence_english": "Can you give me an explanation?", + "pos": "noun", + "word_frequency": 2075 + }, + { + "word": "exécution", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "execution;performance", + "example_sentence_native": "L'exécution du plan a été parfaite.", + "example_sentence_english": "The execution of the plan was perfect.", + "pos": "noun", + "word_frequency": 2076 + }, + { + "word": "fonctionnaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civil servant;public official", + "example_sentence_native": "Mon père est fonctionnaire.", + "example_sentence_english": "My father is a civil servant.", + "pos": "noun", + "word_frequency": 2077 + }, + { + "word": "franco", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frank;free of charge", + "example_sentence_native": "Il a été très franco avec moi.", + "example_sentence_english": "He was very frank with me.", + "pos": "adjective", + "word_frequency": 2078 + }, + { + "word": "inscription", + "article_with_word": "l'inscription", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registration", + "example_sentence_native": "L'inscription au cours est obligatoire.", + "example_sentence_english": "Registration for the course is mandatory.", + "pos": "noun", + "word_frequency": 2080 + }, + { + "word": "lèvre", + "article_with_word": "la lèvre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lip", + "example_sentence_native": "Elle a mis du rouge à lèvres.", + "example_sentence_english": "She put on lipstick.", + "pos": "noun", + "word_frequency": 2082 + }, + { + "word": "mail", + "article_with_word": "le mail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "email", + "example_sentence_native": "J'ai reçu un mail important ce matin.", + "example_sentence_english": "I received an important email this morning.", + "pos": "noun", + "word_frequency": 2084 + }, + { + "word": "oiseau", + "article_with_word": "l'oiseau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bird", + "example_sentence_native": "Un oiseau chante sur l'arbre.", + "example_sentence_english": "A bird is singing on the tree.", + "pos": "noun", + "word_frequency": 2086 + }, + { + "word": "oreille", + "article_with_word": "l'oreille", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ear", + "example_sentence_native": "J'ai mal à l'oreille.", + "example_sentence_english": "My ear hurts.", + "pos": "noun", + "word_frequency": 2087 + }, + { + "word": "paiement", + "article_with_word": "le paiement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "payment", + "example_sentence_native": "Le paiement doit être effectué avant la fin du mois.", + "example_sentence_english": "Payment must be made before the end of the month.", + "pos": "noun", + "word_frequency": 2088 + }, + { + "word": "parisien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Parisian", + "example_sentence_native": "Il aime la vie parisienne.", + "example_sentence_english": "He likes Parisian life.", + "pos": "adjective", + "word_frequency": 2089 + }, + { + "word": "profondeur", + "article_with_word": "la profondeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depth", + "example_sentence_native": "La profondeur de l'océan est immense.", + "example_sentence_english": "The depth of the ocean is immense.", + "pos": "noun", + "word_frequency": 2090 + }, + { + "word": "publicité", + "article_with_word": "la publicité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertising", + "example_sentence_native": "Il y a trop de publicité à la télévision.", + "example_sentence_english": "There is too much advertising on television.", + "pos": "noun", + "word_frequency": 2091 + }, + { + "word": "queue", + "article_with_word": "la queue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tail", + "example_sentence_native": "Le chien remue la queue.", + "example_sentence_english": "The dog wags its tail.", + "pos": "noun", + "word_frequency": 2093 + }, + { + "word": "quinze", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifteen", + "example_sentence_native": "J'ai quinze ans.", + "example_sentence_english": "I am fifteen years old.", + "pos": "numeral", + "word_frequency": 2094 + }, + { + "word": "régional", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regional", + "example_sentence_native": "C'est un plat régional typique.", + "example_sentence_english": "It's a typical regional dish.", + "pos": "adjective", + "word_frequency": 2095 + }, + { + "word": "résoudre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to solve", + "example_sentence_native": "Nous devons résoudre ce problème rapidement.", + "example_sentence_english": "We must solve this problem quickly.", + "pos": "verb", + "word_frequency": 2096 + }, + { + "word": "réussite", + "article_with_word": "la réussite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "success", + "example_sentence_native": "Sa réussite est le fruit de son travail acharné.", + "example_sentence_english": "His success is the result of his hard work.", + "pos": "noun", + "word_frequency": 2097 + }, + { + "word": "sexy", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sexy", + "example_sentence_native": "Elle portait une robe très sexy.", + "example_sentence_english": "She was wearing a very sexy dress.", + "pos": "adjective", + "word_frequency": 2098 + }, + { + "word": "souris", + "article_with_word": "la souris", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mouse", + "example_sentence_native": "La souris de l'ordinateur ne fonctionne pas.", + "example_sentence_english": "The computer mouse is not working.", + "pos": "noun", + "word_frequency": 2099 + }, + { + "word": "tir", + "article_with_word": "le tir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shot", + "example_sentence_native": "On a entendu un coup de tir.", + "example_sentence_english": "We heard a gunshot.", + "pos": "noun", + "word_frequency": 2100 + }, + { + "word": "tonne", + "article_with_word": "la tonne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ton", + "example_sentence_native": "Ce camion peut transporter plusieurs tonnes.", + "example_sentence_english": "This truck can carry several tons.", + "pos": "noun", + "word_frequency": 2101 + }, + { + "word": "traduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to translate", + "example_sentence_native": "Peux-tu traduire ce texte en anglais ?", + "example_sentence_english": "Can you translate this text into English?", + "pos": "verb", + "word_frequency": 2102 + }, + { + "word": "témoin", + "article_with_word": "le témoin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witness", + "example_sentence_native": "Le témoin a décrit l'accident.", + "example_sentence_english": "The witness described the accident.", + "pos": "noun", + "word_frequency": 2103 + }, + { + "word": "échapper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape", + "example_sentence_native": "Le prisonnier a réussi à s'échapper.", + "example_sentence_english": "The prisoner managed to escape.", + "pos": "verb", + "word_frequency": 2104 + }, + { + "word": "adulte", + "article_with_word": "l'adulte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adult", + "example_sentence_native": "Les adultes doivent payer plein tarif.", + "example_sentence_english": "Adults must pay full price.", + "pos": "noun", + "word_frequency": 2105 + }, + { + "word": "alimentation", + "article_with_word": "l'alimentation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food", + "example_sentence_native": "Une bonne alimentation est essentielle pour la santé.", + "example_sentence_english": "A good diet is essential for health.", + "pos": "noun", + "word_frequency": 2106 + }, + { + "word": "apparition", + "article_with_word": "l'apparition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance", + "example_sentence_native": "L'apparition du soleil a réchauffé l'atmosphère.", + "example_sentence_english": "The appearance of the sun warmed the atmosphere.", + "pos": "noun", + "word_frequency": 2107 + }, + { + "word": "arrondissement", + "article_with_word": "l'arrondissement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "district", + "example_sentence_native": "Paris est divisé en vingt arrondissements.", + "example_sentence_english": "Paris is divided into twenty districts.", + "pos": "noun", + "word_frequency": 2108 + }, + { + "word": "artistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artistic", + "example_sentence_native": "Il a un grand talent artistique.", + "example_sentence_english": "He has great artistic talent.", + "pos": "adjective", + "word_frequency": 2109 + }, + { + "word": "ballon", + "article_with_word": "le ballon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ball", + "example_sentence_native": "Les enfants jouent au ballon dans le parc.", + "example_sentence_english": "The children are playing with a ball in the park.", + "pos": "noun", + "word_frequency": 2110 + }, + { + "word": "bio", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organic", + "example_sentence_native": "J'achète des légumes bio au marché.", + "example_sentence_english": "I buy organic vegetables at the market.", + "pos": "adjective", + "word_frequency": 2111 + }, + { + "word": "branche", + "article_with_word": "la branche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "branch", + "example_sentence_native": "L'oiseau est posé sur une branche.", + "example_sentence_english": "The bird is perched on a branch.", + "pos": "noun", + "word_frequency": 2112 + }, + { + "word": "caméra", + "article_with_word": "la caméra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camera", + "example_sentence_native": "Il a filmé la scène avec sa caméra.", + "example_sentence_english": "He filmed the scene with his camera.", + "pos": "noun", + "word_frequency": 2113 + }, + { + "word": "chercheur", + "article_with_word": "le chercheur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "researcher", + "example_sentence_native": "Le chercheur a publié un nouvel article.", + "example_sentence_english": "The researcher published a new article.", + "pos": "noun", + "word_frequency": 2114 + }, + { + "word": "conclusion", + "article_with_word": "la conclusion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conclusion", + "example_sentence_native": "En conclusion, je dirais que le projet est un succès.", + "example_sentence_english": "In conclusion, I would say the project is a success.", + "pos": "noun", + "word_frequency": 2115 + }, + { + "word": "contrôler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to control", + "example_sentence_native": "Il faut contrôler la qualité des produits.", + "example_sentence_english": "We must control the quality of the products.", + "pos": "verb", + "word_frequency": 2116 + }, + { + "word": "couronne", + "article_with_word": "la couronne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crown", + "example_sentence_native": "Le roi portait une couronne d'or.", + "example_sentence_english": "The king wore a golden crown.", + "pos": "noun", + "word_frequency": 2118 + }, + { + "word": "curieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curious", + "example_sentence_native": "Il est très curieux de nature.", + "example_sentence_english": "He is very curious by nature.", + "pos": "adjective", + "word_frequency": 2119 + }, + { + "word": "dialogue", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialogue", + "example_sentence_native": "Le dialogue est essentiel pour résoudre les conflits.", + "example_sentence_english": "Dialogue is essential to resolve conflicts.", + "pos": "noun", + "word_frequency": 2120 + }, + { + "word": "dispositif", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "device;mechanism;system", + "example_sentence_native": "Ce nouveau dispositif de sécurité est très efficace.", + "example_sentence_english": "This new security device is very effective.", + "pos": "noun", + "word_frequency": 2121 + }, + { + "word": "engager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to engage;to commit;to hire", + "example_sentence_native": "Il s'est engagé à respecter ses promesses.", + "example_sentence_english": "He committed to keeping his promises.", + "pos": "verb", + "word_frequency": 2122 + }, + { + "word": "facteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "factor;postman", + "example_sentence_native": "Le facteur a livré le colis ce matin.", + "example_sentence_english": "The postman delivered the package this morning.", + "pos": "noun", + "word_frequency": 2123 + }, + { + "word": "fameux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "famous;renowned", + "example_sentence_native": "C'est un fameux tableau de la Renaissance.", + "example_sentence_english": "It's a famous Renaissance painting.", + "pos": "adjective", + "word_frequency": 2124 + }, + { + "word": "grec", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Greek", + "example_sentence_native": "J'aime la cuisine grecque.", + "example_sentence_english": "I like Greek cuisine.", + "pos": "adjective", + "word_frequency": 2126 + }, + { + "word": "habiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to live;to reside", + "example_sentence_native": "Nous habitons à Paris depuis cinq ans.", + "example_sentence_english": "We have lived in Paris for five years.", + "pos": "verb", + "word_frequency": 2127 + }, + { + "word": "ingénieur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "engineer", + "example_sentence_native": "Mon frère est ingénieur en informatique.", + "example_sentence_english": "My brother is a computer engineer.", + "pos": "noun", + "word_frequency": 2128 + }, + { + "word": "laboratoire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laboratory", + "example_sentence_native": "Les scientifiques travaillent dans le laboratoire.", + "example_sentence_english": "Scientists work in the laboratory.", + "pos": "noun", + "word_frequency": 2129 + }, + { + "word": "lancement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launch;release", + "example_sentence_native": "Le lancement du nouveau produit est prévu pour mars.", + "example_sentence_english": "The launch of the new product is scheduled for March.", + "pos": "noun", + "word_frequency": 2130 + }, + { + "word": "larme", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tear", + "example_sentence_native": "Une larme a coulé sur sa joue.", + "example_sentence_english": "A tear ran down her cheek.", + "pos": "noun", + "word_frequency": 2131 + }, + { + "word": "libéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberal", + "example_sentence_native": "Il a des idées très libérales sur l'économie.", + "example_sentence_english": "He has very liberal ideas about the economy.", + "pos": "adjective", + "word_frequency": 2132 + }, + { + "word": "liquide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liquid", + "example_sentence_native": "L'eau est un liquide essentiel à la vie.", + "example_sentence_english": "Water is a liquid essential for life.", + "pos": "adjective", + "word_frequency": 2133 + }, + { + "word": "lot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lot;batch;prize", + "example_sentence_native": "J'ai gagné le gros lot à la loterie.", + "example_sentence_english": "I won the big prize in the lottery.", + "pos": "noun", + "word_frequency": 2134 + }, + { + "word": "lutter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fight;to struggle", + "example_sentence_native": "Ils luttent contre l'injustice sociale.", + "example_sentence_english": "They fight against social injustice.", + "pos": "verb", + "word_frequency": 2135 + }, + { + "word": "manquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to miss;to lack", + "example_sentence_native": "Tu me manques beaucoup.", + "example_sentence_english": "I miss you a lot.", + "pos": "verb", + "word_frequency": 2136 + }, + { + "word": "médicament", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine;drug", + "example_sentence_native": "Ce médicament aide à soulager la douleur.", + "example_sentence_english": "This medicine helps relieve pain.", + "pos": "noun", + "word_frequency": 2138 + }, + { + "word": "olympique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympic", + "example_sentence_native": "Les Jeux olympiques ont lieu tous les quatre ans.", + "example_sentence_english": "The Olympic Games take place every four years.", + "pos": "adjective", + "word_frequency": 2139 + }, + { + "word": "prime", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bonus;premium;reward", + "example_sentence_native": "Elle a reçu une prime pour son excellent travail.", + "example_sentence_english": "She received a bonus for her excellent work.", + "pos": "noun", + "word_frequency": 2140 + }, + { + "word": "prévenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prevent;to warn", + "example_sentence_native": "Il faut prévenir les accidents de la route.", + "example_sentence_english": "Road accidents must be prevented.", + "pos": "verb", + "word_frequency": 2141 + }, + { + "word": "pur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pure", + "example_sentence_native": "L'eau de source est très pure.", + "example_sentence_english": "Spring water is very pure.", + "pos": "adjective", + "word_frequency": 2142 + }, + { + "word": "remplir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fill;to fulfill", + "example_sentence_native": "Veuillez remplir ce formulaire.", + "example_sentence_english": "Please fill out this form.", + "pos": "verb", + "word_frequency": 2143 + }, + { + "word": "rupture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break;rupture;breakup", + "example_sentence_native": "La rupture du contrat a causé des problèmes.", + "example_sentence_english": "The breach of contract caused problems.", + "pos": "noun", + "word_frequency": 2144 + }, + { + "word": "ski", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skiing;ski", + "example_sentence_native": "J'adore faire du ski en hiver.", + "example_sentence_english": "I love skiing in winter.", + "pos": "noun", + "word_frequency": 2145 + }, + { + "word": "solidarité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solidarity", + "example_sentence_native": "La solidarité est importante en période de crise.", + "example_sentence_english": "Solidarity is important in times of crisis.", + "pos": "noun", + "word_frequency": 2146 + }, + { + "word": "sombre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dark;gloomy", + "example_sentence_native": "La pièce était sombre sans lumière.", + "example_sentence_english": "The room was dark without light.", + "pos": "adjective", + "word_frequency": 2147 + }, + { + "word": "supporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support;to bear;to tolerate", + "example_sentence_native": "Je ne peux plus supporter ce bruit.", + "example_sentence_english": "I can't stand this noise anymore.", + "pos": "verb", + "word_frequency": 2148 + }, + { + "word": "supprimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delete;to remove;to suppress", + "example_sentence_native": "Il faut supprimer les fichiers inutiles.", + "example_sentence_english": "Unnecessary files must be deleted.", + "pos": "verb", + "word_frequency": 2149 + }, + { + "word": "temple", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple", + "example_sentence_native": "Nous avons visité un ancien temple grec.", + "example_sentence_english": "We visited an ancient Greek temple.", + "pos": "noun", + "word_frequency": 2150 + }, + { + "word": "transition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transition", + "example_sentence_native": "La transition vers les énergies renouvelables est cruciale.", + "example_sentence_english": "The transition to renewable energies is crucial.", + "pos": "noun", + "word_frequency": 2151 + }, + { + "word": "amélioration", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvement", + "example_sentence_native": "Nous constatons une nette amélioration de la situation.", + "example_sentence_english": "We see a clear improvement in the situation.", + "pos": "noun", + "word_frequency": 2152 + }, + { + "word": "ange", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angel", + "example_sentence_native": "Elle a un visage d'ange.", + "example_sentence_english": "She has an angel's face.", + "pos": "noun", + "word_frequency": 2153 + }, + { + "word": "bouger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move", + "example_sentence_native": "Ne bouge pas !", + "example_sentence_english": "Don't move!", + "pos": "verb", + "word_frequency": 2155 + }, + { + "word": "bouteille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bottle", + "example_sentence_native": "Passe-moi la bouteille d'eau, s'il te plaît.", + "example_sentence_english": "Pass me the water bottle, please.", + "pos": "noun", + "word_frequency": 2156 + }, + { + "word": "cou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neck", + "example_sentence_native": "J'ai mal au cou.", + "example_sentence_english": "My neck hurts.", + "pos": "noun", + "word_frequency": 2159 + }, + { + "word": "critère", + "article_with_word": "le critère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criterion", + "example_sentence_native": "Quel est le critère principal pour cette sélection?", + "example_sentence_english": "What is the main criterion for this selection?", + "pos": "noun", + "word_frequency": 2160 + }, + { + "word": "destiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to destine;to intend", + "example_sentence_native": "Ce livre est destiné aux étudiants.", + "example_sentence_english": "This book is intended for students.", + "pos": "verb", + "word_frequency": 2161 + }, + { + "word": "dizaine", + "article_with_word": "la dizaine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "about ten;a group of ten", + "example_sentence_native": "Il y a une dizaine de personnes dans la salle.", + "example_sentence_english": "There are about ten people in the room.", + "pos": "noun", + "word_frequency": 2162 + }, + { + "word": "favorable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favorable", + "example_sentence_native": "Les conditions météorologiques sont favorables.", + "example_sentence_english": "The weather conditions are favorable.", + "pos": "adjective", + "word_frequency": 2163 + }, + { + "word": "fortune", + "article_with_word": "la fortune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortune;luck", + "example_sentence_native": "Il a fait fortune dans les affaires.", + "example_sentence_english": "He made a fortune in business.", + "pos": "noun", + "word_frequency": 2164 + }, + { + "word": "horreur", + "article_with_word": "l’horreur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horror", + "example_sentence_native": "Le film était plein d'horreur.", + "example_sentence_english": "The movie was full of horror.", + "pos": "noun", + "word_frequency": 2165 + }, + { + "word": "introduction", + "article_with_word": "l’introduction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduction", + "example_sentence_native": "L'introduction du livre est très intéressante.", + "example_sentence_english": "The introduction of the book is very interesting.", + "pos": "noun", + "word_frequency": 2166 + }, + { + "word": "jurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swear;to vow", + "example_sentence_native": "Il a juré de dire la vérité.", + "example_sentence_english": "He swore to tell the truth.", + "pos": "verb", + "word_frequency": 2167 + }, + { + "word": "manche", + "article_with_word": "la manche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleeve;handle;game round", + "example_sentence_native": "La manche de sa chemise est déchirée.", + "example_sentence_english": "The sleeve of his shirt is torn.", + "pos": "noun", + "word_frequency": 2168 + }, + { + "word": "montage", + "article_with_word": "le montage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;editing;montage", + "example_sentence_native": "Le montage du film a pris beaucoup de temps.", + "example_sentence_english": "The editing of the film took a lot of time.", + "pos": "noun", + "word_frequency": 2170 + }, + { + "word": "montée", + "article_with_word": "la montée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climb;ascent;rise", + "example_sentence_native": "La montée vers le sommet était difficile.", + "example_sentence_english": "The climb to the summit was difficult.", + "pos": "noun", + "word_frequency": 2171 + }, + { + "word": "morceau", + "article_with_word": "le morceau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piece;bit", + "example_sentence_native": "Donne-moi un morceau de pain.", + "example_sentence_english": "Give me a piece of bread.", + "pos": "noun", + "word_frequency": 2172 + }, + { + "word": "navire", + "article_with_word": "le navire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ship;vessel", + "example_sentence_native": "Le navire a quitté le port ce matin.", + "example_sentence_english": "The ship left the port this morning.", + "pos": "noun", + "word_frequency": 2173 + }, + { + "word": "océan", + "article_with_word": "l’océan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ocean", + "example_sentence_native": "L'océan Atlantique est très vaste.", + "example_sentence_english": "The Atlantic Ocean is very vast.", + "pos": "noun", + "word_frequency": 2174 + }, + { + "word": "perspective", + "article_with_word": "la perspective", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perspective;outlook", + "example_sentence_native": "Il a une bonne perspective d'avenir.", + "example_sentence_english": "He has a good outlook for the future.", + "pos": "noun", + "word_frequency": 2175 + }, + { + "word": "piscine", + "article_with_word": "la piscine", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "swimming pool", + "example_sentence_native": "Nous allons nager à la piscine.", + "example_sentence_english": "We are going to swim at the pool.", + "pos": "noun", + "word_frequency": 2176 + }, + { + "word": "présidence", + "article_with_word": "la présidence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidency;chairmanship", + "example_sentence_native": "La présidence de la réunion a été difficile.", + "example_sentence_english": "The chairmanship of the meeting was difficult.", + "pos": "noun", + "word_frequency": 2177 + }, + { + "word": "rappel", + "article_with_word": "le rappel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reminder;recall", + "example_sentence_native": "J'ai reçu un rappel pour mon rendez-vous.", + "example_sentence_english": "I received a reminder for my appointment.", + "pos": "noun", + "word_frequency": 2178 + }, + { + "word": "rapporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bring back;to report", + "example_sentence_native": "Il a rapporté les documents au bureau.", + "example_sentence_english": "He brought the documents back to the office.", + "pos": "verb", + "word_frequency": 2179 + }, + { + "word": "résolution", + "article_with_word": "la résolution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolution", + "example_sentence_native": "Nous avons adopté une nouvelle résolution.", + "example_sentence_english": "We adopted a new resolution.", + "pos": "noun", + "word_frequency": 2180 + }, + { + "word": "signature", + "article_with_word": "la signature", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "signature", + "example_sentence_native": "Veuillez apposer votre signature ici.", + "example_sentence_english": "Please affix your signature here.", + "pos": "noun", + "word_frequency": 2181 + }, + { + "word": "symbole", + "article_with_word": "le symbole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symbol", + "example_sentence_native": "La colombe est un symbole de paix.", + "example_sentence_english": "The dove is a symbol of peace.", + "pos": "noun", + "word_frequency": 2183 + }, + { + "word": "tension", + "article_with_word": "la tension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tension", + "example_sentence_native": "Il y a une forte tension entre les deux pays.", + "example_sentence_english": "There is strong tension between the two countries.", + "pos": "noun", + "word_frequency": 2184 + }, + { + "word": "thèse", + "article_with_word": "la thèse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thesis", + "example_sentence_native": "Elle a soutenu sa thèse de doctorat.", + "example_sentence_english": "She defended her doctoral thesis.", + "pos": "noun", + "word_frequency": 2185 + }, + { + "word": "trouble", + "article_with_word": "le trouble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trouble;disorder", + "example_sentence_native": "Il y a eu des troubles dans la ville.", + "example_sentence_english": "There were disturbances in the city.", + "pos": "noun", + "word_frequency": 2186 + }, + { + "word": "ventre", + "article_with_word": "le ventre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belly;stomach", + "example_sentence_native": "Il a mal au ventre.", + "example_sentence_english": "He has a stomach ache.", + "pos": "noun", + "word_frequency": 2187 + }, + { + "word": "virus", + "article_with_word": "le virus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "virus", + "example_sentence_native": "Le virus se propage rapidement.", + "example_sentence_english": "The virus is spreading rapidly.", + "pos": "noun", + "word_frequency": 2188 + }, + { + "word": "voler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fly;to steal", + "example_sentence_native": "Les oiseaux volent dans le ciel.", + "example_sentence_english": "Birds fly in the sky.", + "pos": "verb", + "word_frequency": 2189 + }, + { + "word": "écrivain", + "article_with_word": "l’écrivain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writer", + "example_sentence_native": "Cet écrivain est très célèbre.", + "example_sentence_english": "This writer is very famous.", + "pos": "noun", + "word_frequency": 2190 + }, + { + "word": "équivalent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalent", + "example_sentence_native": "Ces deux sommes sont équivalentes.", + "example_sentence_english": "These two sums are equivalent.", + "pos": "adjective", + "word_frequency": 2191 + }, + { + "word": "abri", + "article_with_word": "l’abri", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shelter", + "example_sentence_native": "Nous avons trouvé un abri contre la pluie.", + "example_sentence_english": "We found shelter from the rain.", + "pos": "noun", + "word_frequency": 2192 + }, + { + "word": "accompagner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to accompany", + "example_sentence_native": "Je vais t'accompagner à la gare.", + "example_sentence_english": "I will accompany you to the station.", + "pos": "verb", + "word_frequency": 2193 + }, + { + "word": "accuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accuse", + "example_sentence_native": "Il a été accusé de vol.", + "example_sentence_english": "He was accused of theft.", + "pos": "verb", + "word_frequency": 2194 + }, + { + "word": "adopter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adopt", + "example_sentence_native": "Ils ont décidé d'adopter un enfant.", + "example_sentence_english": "They decided to adopt a child.", + "pos": "verb", + "word_frequency": 2195 + }, + { + "word": "cellule", + "article_with_word": "la cellule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cell", + "example_sentence_native": "Le corps humain est composé de millions de cellules.", + "example_sentence_english": "The human body is composed of millions of cells.", + "pos": "noun", + "word_frequency": 2197 + }, + { + "word": "combattre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fight;to combat", + "example_sentence_native": "Ils doivent combattre l'injustice.", + "example_sentence_english": "They must fight injustice.", + "pos": "verb", + "word_frequency": 2199 + }, + { + "word": "coter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quote;to rate", + "example_sentence_native": "L'entreprise est cotée en bourse.", + "example_sentence_english": "The company is listed on the stock exchange.", + "pos": "verb", + "word_frequency": 2200 + }, + { + "word": "couvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cover", + "example_sentence_native": "Il faut couvrir la nourriture.", + "example_sentence_english": "You must cover the food.", + "pos": "verb", + "word_frequency": 2201 + }, + { + "word": "culte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cult;worship", + "example_sentence_native": "Ce film est devenu un film culte.", + "example_sentence_english": "This film has become a cult film.", + "pos": "noun", + "word_frequency": 2202 + }, + { + "word": "digne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worthy;dignified", + "example_sentence_native": "Il a montré une attitude digne.", + "example_sentence_english": "He showed a dignified attitude.", + "pos": "adjective", + "word_frequency": 2203 + }, + { + "word": "disparition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappearance", + "example_sentence_native": "La disparition de l'espèce est préoccupante.", + "example_sentence_english": "The disappearance of the species is concerning.", + "pos": "noun", + "word_frequency": 2204 + }, + { + "word": "dépôt", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deposit;warehouse", + "example_sentence_native": "J'ai fait un dépôt à la banque.", + "example_sentence_english": "I made a deposit at the bank.", + "pos": "noun", + "word_frequency": 2205 + }, + { + "word": "fidèle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faithful;loyal", + "example_sentence_native": "C'est un ami très fidèle.", + "example_sentence_english": "He is a very loyal friend.", + "pos": "adjective", + "word_frequency": 2206 + }, + { + "word": "hâte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "haste;hurry", + "example_sentence_native": "J'ai hâte de te voir.", + "example_sentence_english": "I can't wait to see you.", + "pos": "noun", + "word_frequency": 2207 + }, + { + "word": "industriel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industrial", + "example_sentence_native": "C'est une zone industrielle.", + "example_sentence_english": "It's an industrial zone.", + "pos": "adjective", + "word_frequency": 2208 + }, + { + "word": "installation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installation;facility", + "example_sentence_native": "L'installation du nouveau système est terminée.", + "example_sentence_english": "The installation of the new system is complete.", + "pos": "noun", + "word_frequency": 2209 + }, + { + "word": "intégration", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integration", + "example_sentence_native": "L'intégration des nouveaux employés est importante.", + "example_sentence_english": "The integration of new employees is important.", + "pos": "noun", + "word_frequency": 2210 + }, + { + "word": "job", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "job", + "example_sentence_native": "J'ai trouvé un nouveau job.", + "example_sentence_english": "I found a new job.", + "pos": "noun", + "word_frequency": 2211 + }, + { + "word": "jury", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jury", + "example_sentence_native": "Le jury a rendu son verdict.", + "example_sentence_english": "The jury delivered its verdict.", + "pos": "noun", + "word_frequency": 2212 + }, + { + "word": "los", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "praise;commendation", + "example_sentence_native": "Il a reçu les los de ses pairs.", + "example_sentence_english": "He received the praise of his peers.", + "pos": "noun", + "word_frequency": 2213 + }, + { + "word": "lâche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cowardly;loose", + "example_sentence_native": "Son attitude était lâche.", + "example_sentence_english": "His attitude was cowardly.", + "pos": "adjective", + "word_frequency": 2214 + }, + { + "word": "médaille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medal", + "example_sentence_native": "Elle a gagné une médaille d'or.", + "example_sentence_english": "She won a gold medal.", + "pos": "noun", + "word_frequency": 2215 + }, + { + "word": "ménage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "household;cleaning", + "example_sentence_native": "Je dois faire le ménage.", + "example_sentence_english": "I have to do the cleaning.", + "pos": "noun", + "word_frequency": 2216 + }, + { + "word": "odeur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smell;odor", + "example_sentence_native": "Il y a une étrange odeur ici.", + "example_sentence_english": "There's a strange smell here.", + "pos": "noun", + "word_frequency": 2217 + }, + { + "word": "pitié", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pity;mercy", + "example_sentence_native": "Aie pitié de moi!", + "example_sentence_english": "Have pity on me!", + "pos": "noun", + "word_frequency": 2218 + }, + { + "word": "poésie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poetry", + "example_sentence_native": "J'aime lire de la poésie.", + "example_sentence_english": "I like to read poetry.", + "pos": "noun", + "word_frequency": 2220 + }, + { + "word": "priorité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priority", + "example_sentence_native": "La sécurité est notre priorité.", + "example_sentence_english": "Safety is our priority.", + "pos": "noun", + "word_frequency": 2221 + }, + { + "word": "probable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probable;likely", + "example_sentence_native": "C'est une solution probable.", + "example_sentence_english": "It's a probable solution.", + "pos": "adjective", + "word_frequency": 2222 + }, + { + "word": "ramener", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bring back;to take back", + "example_sentence_native": "Peux-tu me ramener à la maison?", + "example_sentence_english": "Can you take me home?", + "pos": "verb", + "word_frequency": 2223 + }, + { + "word": "refus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refusal", + "example_sentence_native": "Son refus a été catégorique.", + "example_sentence_english": "His refusal was categorical.", + "pos": "noun", + "word_frequency": 2224 + }, + { + "word": "richesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wealth;richness", + "example_sentence_native": "La richesse de la culture française est immense.", + "example_sentence_english": "The richness of French culture is immense.", + "pos": "noun", + "word_frequency": 2225 + }, + { + "word": "révéler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reveal;to disclose", + "example_sentence_native": "Il a révélé la vérité.", + "example_sentence_english": "He revealed the truth.", + "pos": "verb", + "word_frequency": 2226 + }, + { + "word": "sensible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensitive;sensible", + "example_sentence_native": "Elle est très sensible à la critique.", + "example_sentence_english": "She is very sensitive to criticism.", + "pos": "adjective", + "word_frequency": 2227 + }, + { + "word": "souffle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath;puff", + "example_sentence_native": "Il a repris son souffle.", + "example_sentence_english": "He caught his breath.", + "pos": "noun", + "word_frequency": 2228 + }, + { + "word": "totalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entirety;totality", + "example_sentence_native": "Il a lu la totalité du livre.", + "example_sentence_english": "He read the entirety of the book.", + "pos": "noun", + "word_frequency": 2229 + }, + { + "word": "viser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aim;to target", + "example_sentence_native": "Il vise la perfection.", + "example_sentence_english": "He aims for perfection.", + "pos": "verb", + "word_frequency": 2231 + }, + { + "word": "actrice", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "actress", + "example_sentence_native": "Elle est une actrice célèbre.", + "example_sentence_english": "She is a famous actress.", + "pos": "noun", + "word_frequency": 2233 + }, + { + "word": "arc", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bow;arch", + "example_sentence_native": "L'arc-en-ciel est magnifique.", + "example_sentence_english": "The rainbow is magnificent.", + "pos": "noun", + "word_frequency": 2234 + }, + { + "word": "balance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scale;balance", + "example_sentence_native": "La balance est utilisée pour peser.", + "example_sentence_english": "The scale is used for weighing.", + "pos": "noun", + "word_frequency": 2235 + }, + { + "word": "blessé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "injured;wounded", + "example_sentence_native": "Le joueur est blessé.", + "example_sentence_english": "The player is injured.", + "pos": "adjective", + "word_frequency": 2236 + }, + { + "word": "comédie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comedy", + "example_sentence_native": "J'aime regarder des comédies.", + "example_sentence_english": "I like watching comedies.", + "pos": "noun", + "word_frequency": 2238 + }, + { + "word": "corruption", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corruption", + "example_sentence_native": "La lutte contre la corruption est essentielle.", + "example_sentence_english": "The fight against corruption is essential.", + "pos": "noun", + "word_frequency": 2239 + }, + { + "word": "crème", + "article_with_word": "la crème", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream", + "example_sentence_native": "J'ai mis de la crème sur mon gâteau.", + "example_sentence_english": "I put cream on my cake.", + "pos": "noun", + "word_frequency": 2240 + }, + { + "word": "extension", + "article_with_word": "l'extension", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extension", + "example_sentence_native": "Nous avons demandé une extension de délai.", + "example_sentence_english": "We asked for a deadline extension.", + "pos": "noun", + "word_frequency": 2241 + }, + { + "word": "folie", + "article_with_word": "la folie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madness;folly", + "example_sentence_native": "C'était de la pure folie de faire ça.", + "example_sentence_english": "It was pure madness to do that.", + "pos": "noun", + "word_frequency": 2242 + }, + { + "word": "forum", + "article_with_word": "le forum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forum", + "example_sentence_native": "J'ai posté ma question sur le forum.", + "example_sentence_english": "I posted my question on the forum.", + "pos": "noun", + "word_frequency": 2243 + }, + { + "word": "féminin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feminine", + "example_sentence_native": "Elle a une voix très féminine.", + "example_sentence_english": "She has a very feminine voice.", + "pos": "adjective", + "word_frequency": 2244 + }, + { + "word": "garantie", + "article_with_word": "la garantie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guarantee;warranty", + "example_sentence_native": "Ce produit est sous garantie pendant deux ans.", + "example_sentence_english": "This product is under warranty for two years.", + "pos": "noun", + "word_frequency": 2245 + }, + { + "word": "honnête", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honest", + "example_sentence_native": "Il est toujours honnête avec moi.", + "example_sentence_english": "He is always honest with me.", + "pos": "adjective", + "word_frequency": 2246 + }, + { + "word": "hypothèse", + "article_with_word": "l'hypothèse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothesis", + "example_sentence_native": "Nous devons vérifier cette hypothèse.", + "example_sentence_english": "We need to verify this hypothesis.", + "pos": "noun", + "word_frequency": 2247 + }, + { + "word": "indépendant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "independent", + "example_sentence_native": "Elle est très indépendante.", + "example_sentence_english": "She is very independent.", + "pos": "adjective", + "word_frequency": 2248 + }, + { + "word": "licence", + "article_with_word": "la licence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "license;degree", + "example_sentence_native": "Il a obtenu sa licence en droit.", + "example_sentence_english": "He obtained his law degree.", + "pos": "noun", + "word_frequency": 2249 + }, + { + "word": "naturellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "naturally", + "example_sentence_native": "Naturellement, je suis d'accord.", + "example_sentence_english": "Naturally, I agree.", + "pos": "adverb", + "word_frequency": 2251 + }, + { + "word": "norme", + "article_with_word": "la norme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "norm;standard", + "example_sentence_native": "C'est la norme dans cette industrie.", + "example_sentence_english": "It's the norm in this industry.", + "pos": "noun", + "word_frequency": 2252 + }, + { + "word": "parallèle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parallel", + "example_sentence_native": "Les deux lignes sont parallèles.", + "example_sentence_english": "The two lines are parallel.", + "pos": "adjective", + "word_frequency": 2253 + }, + { + "word": "profondément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deeply", + "example_sentence_native": "Il a été profondément touché par la nouvelle.", + "example_sentence_english": "He was deeply touched by the news.", + "pos": "adverb", + "word_frequency": 2254 + }, + { + "word": "précision", + "article_with_word": "la précision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precision;accuracy", + "example_sentence_native": "Il a parlé avec une grande précision.", + "example_sentence_english": "He spoke with great precision.", + "pos": "noun", + "word_frequency": 2255 + }, + { + "word": "prêtre", + "article_with_word": "le prêtre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priest", + "example_sentence_native": "Le prêtre a célébré la messe.", + "example_sentence_english": "The priest celebrated the mass.", + "pos": "noun", + "word_frequency": 2256 + }, + { + "word": "rater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to miss;to fail", + "example_sentence_native": "J'ai raté mon bus ce matin.", + "example_sentence_english": "I missed my bus this morning.", + "pos": "verb", + "word_frequency": 2257 + }, + { + "word": "regretter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to regret", + "example_sentence_native": "Je regrette de ne pas être venu.", + "example_sentence_english": "I regret not coming.", + "pos": "verb", + "word_frequency": 2258 + }, + { + "word": "sexuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexual", + "example_sentence_native": "Il y a eu un débat sur l'éducation sexuelle.", + "example_sentence_english": "There was a debate about sexual education.", + "pos": "adjective", + "word_frequency": 2261 + }, + { + "word": "sportif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sporty;athletic", + "example_sentence_native": "Il est très sportif et aime courir.", + "example_sentence_english": "He is very sporty and loves to run.", + "pos": "adjective", + "word_frequency": 2262 + }, + { + "word": "spécialement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially;specially", + "example_sentence_native": "J'ai préparé ce plat spécialement pour toi.", + "example_sentence_english": "I prepared this dish especially for you.", + "pos": "adverb", + "word_frequency": 2263 + }, + { + "word": "spécifique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specific", + "example_sentence_native": "Nous avons besoin d'informations spécifiques.", + "example_sentence_english": "We need specific information.", + "pos": "adjective", + "word_frequency": 2264 + }, + { + "word": "toit", + "article_with_word": "le toit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roof", + "example_sentence_native": "Le chat est monté sur le toit.", + "example_sentence_english": "The cat climbed onto the roof.", + "pos": "noun", + "word_frequency": 2265 + }, + { + "word": "écart", + "article_with_word": "l'écart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gap;difference", + "example_sentence_native": "Il y a un grand écart entre leurs opinions.", + "example_sentence_english": "There is a big gap between their opinions.", + "pos": "noun", + "word_frequency": 2267 + }, + { + "word": "asseoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sit (down)", + "example_sentence_native": "Voulez-vous vous asseoir ?", + "example_sentence_english": "Do you want to sit down?", + "pos": "verb", + "word_frequency": 2268 + }, + { + "word": "chronique", + "article_with_word": "la chronique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "column;chronicle", + "example_sentence_native": "Elle écrit une chronique hebdomadaire dans le journal.", + "example_sentence_english": "She writes a weekly column in the newspaper.", + "pos": "noun", + "word_frequency": 2270 + }, + { + "word": "contribution", + "article_with_word": "la contribution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution", + "example_sentence_native": "Sa contribution a été essentielle au projet.", + "example_sentence_english": "His contribution was essential to the project.", + "pos": "noun", + "word_frequency": 2271 + }, + { + "word": "copie", + "article_with_word": "la copie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "copy", + "example_sentence_native": "J'ai fait une copie du document.", + "example_sentence_english": "I made a copy of the document.", + "pos": "noun", + "word_frequency": 2272 + }, + { + "word": "destruction", + "article_with_word": "la destruction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destruction", + "example_sentence_native": "La destruction de la forêt est préoccupante.", + "example_sentence_english": "The destruction of the forest is concerning.", + "pos": "noun", + "word_frequency": 2273 + }, + { + "word": "diplôme", + "article_with_word": "le diplôme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diploma;degree", + "example_sentence_native": "Il a reçu son diplôme l'année dernière.", + "example_sentence_english": "He received his diploma last year.", + "pos": "noun", + "word_frequency": 2274 + }, + { + "word": "enregistrement", + "article_with_word": "l'enregistrement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recording;registration", + "example_sentence_native": "Nous avons écouté l'enregistrement de la chanson.", + "example_sentence_english": "We listened to the recording of the song.", + "pos": "noun", + "word_frequency": 2275 + }, + { + "word": "envoi", + "article_with_word": "l'envoi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sending;dispatch", + "example_sentence_native": "L'envoi du colis a été retardé.", + "example_sentence_english": "The sending of the package was delayed.", + "pos": "noun", + "word_frequency": 2276 + }, + { + "word": "extraordinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extraordinary", + "example_sentence_native": "C'était une expérience extraordinaire.", + "example_sentence_english": "It was an extraordinary experience.", + "pos": "adjective", + "word_frequency": 2277 + }, + { + "word": "fonder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to found;to establish", + "example_sentence_native": "Ils ont fondé une nouvelle entreprise.", + "example_sentence_english": "They founded a new company.", + "pos": "verb", + "word_frequency": 2278 + }, + { + "word": "foyer", + "article_with_word": "le foyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home;household;hearth", + "example_sentence_native": "Le foyer est le cœur de la maison.", + "example_sentence_english": "The hearth is the heart of the home.", + "pos": "noun", + "word_frequency": 2279 + }, + { + "word": "horrible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "horrible", + "example_sentence_native": "Ce film est horrible.", + "example_sentence_english": "This movie is horrible.", + "pos": "adjective", + "word_frequency": 2281 + }, + { + "word": "humeur", + "article_with_word": "l'humeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mood", + "example_sentence_native": "Elle est de bonne humeur aujourd'hui.", + "example_sentence_english": "She is in a good mood today.", + "pos": "noun", + "word_frequency": 2282 + }, + { + "word": "immigration", + "article_with_word": "l'immigration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigration", + "example_sentence_native": "L'immigration est un sujet complexe.", + "example_sentence_english": "Immigration is a complex subject.", + "pos": "noun", + "word_frequency": 2283 + }, + { + "word": "inconnu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unknown", + "example_sentence_native": "C'est un numéro inconnu.", + "example_sentence_english": "It's an unknown number.", + "pos": "adjective", + "word_frequency": 2284 + }, + { + "word": "innovation", + "article_with_word": "l'innovation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovation", + "example_sentence_native": "L'entreprise est connue pour son innovation.", + "example_sentence_english": "The company is known for its innovation.", + "pos": "noun", + "word_frequency": 2285 + }, + { + "word": "littéraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literary", + "example_sentence_native": "Il a un style littéraire très riche.", + "example_sentence_english": "He has a very rich literary style.", + "pos": "adjective", + "word_frequency": 2286 + }, + { + "word": "magique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magical", + "example_sentence_native": "C'était un moment magique.", + "example_sentence_english": "It was a magical moment.", + "pos": "adjective", + "word_frequency": 2287 + }, + { + "word": "maintien", + "article_with_word": "le maintien", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maintenance;upkeep", + "example_sentence_native": "Le maintien de l'ordre est essentiel.", + "example_sentence_english": "The maintenance of order is essential.", + "pos": "noun", + "word_frequency": 2288 + }, + { + "word": "marrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funny;amusing", + "example_sentence_native": "Ce film est vraiment marrant.", + "example_sentence_english": "This movie is really funny.", + "pos": "adjective", + "word_frequency": 2289 + }, + { + "word": "maîtrise", + "article_with_word": "la maîtrise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastery;control", + "example_sentence_native": "Il a une excellente maîtrise du français.", + "example_sentence_english": "He has excellent mastery of French.", + "pos": "noun", + "word_frequency": 2290 + }, + { + "word": "mécanique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanical", + "example_sentence_native": "C'est un problème mécanique.", + "example_sentence_english": "It's a mechanical problem.", + "pos": "adjective", + "word_frequency": 2291 + }, + { + "word": "participant", + "article_with_word": "le participant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "participant", + "example_sentence_native": "Chaque participant a reçu un prix.", + "example_sentence_english": "Each participant received a prize.", + "pos": "noun", + "word_frequency": 2292 + }, + { + "word": "pute", + "article_with_word": "la pute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute (vulgar)", + "example_sentence_native": "Ce mot est une insulte.", + "example_sentence_english": "This word is an insult.", + "pos": "noun", + "word_frequency": 2293 + }, + { + "word": "remonter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go up;to reassemble", + "example_sentence_native": "Il faut remonter la pente.", + "example_sentence_english": "We need to get back on track.", + "pos": "verb", + "word_frequency": 2294 + }, + { + "word": "renseignement", + "article_with_word": "le renseignement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "information;intelligence", + "example_sentence_native": "J'ai besoin d'un renseignement.", + "example_sentence_english": "I need some information.", + "pos": "noun", + "word_frequency": 2295 + }, + { + "word": "restauration", + "article_with_word": "la restauration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restoration;catering", + "example_sentence_native": "La restauration du tableau a pris des mois.", + "example_sentence_english": "The restoration of the painting took months.", + "pos": "noun", + "word_frequency": 2296 + }, + { + "word": "romain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Roman", + "example_sentence_native": "C'est un empereur romain.", + "example_sentence_english": "He is a Roman emperor.", + "pos": "adjective", + "word_frequency": 2297 + }, + { + "word": "sable", + "article_with_word": "le sable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sand", + "example_sentence_native": "Les enfants jouent dans le sable.", + "example_sentence_english": "The children are playing in the sand.", + "pos": "noun", + "word_frequency": 2298 + }, + { + "word": "sel", + "article_with_word": "le sel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salt", + "example_sentence_native": "Passe-moi le sel, s'il te plaît.", + "example_sentence_english": "Pass me the salt, please.", + "pos": "noun", + "word_frequency": 2300 + }, + { + "word": "supplémentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additional;supplementary", + "example_sentence_native": "Nous avons besoin d'informations supplémentaires.", + "example_sentence_english": "We need additional information.", + "pos": "adjective", + "word_frequency": 2301 + }, + { + "word": "suprême", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supreme", + "example_sentence_native": "C'est la cour suprême.", + "example_sentence_english": "It is the supreme court.", + "pos": "adjective", + "word_frequency": 2302 + }, + { + "word": "syndicat", + "article_with_word": "le syndicat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade union;syndicate", + "example_sentence_native": "Le syndicat a appelé à la grève.", + "example_sentence_english": "The union called for a strike.", + "pos": "noun", + "word_frequency": 2303 + }, + { + "word": "toile", + "article_with_word": "la toile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canvas;web", + "example_sentence_native": "L'artiste a peint sur une grande toile.", + "example_sentence_english": "The artist painted on a large canvas.", + "pos": "noun", + "word_frequency": 2304 + }, + { + "word": "transformation", + "article_with_word": "la transformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformation", + "example_sentence_native": "La ville a subi une transformation majeure.", + "example_sentence_english": "The city underwent a major transformation.", + "pos": "noun", + "word_frequency": 2305 + }, + { + "word": "témoignage", + "article_with_word": "le témoignage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "testimony;evidence", + "example_sentence_native": "Son témoignage était très émouvant.", + "example_sentence_english": "His testimony was very moving.", + "pos": "noun", + "word_frequency": 2306 + }, + { + "word": "vainqueur", + "article_with_word": "le vainqueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winner;victor", + "example_sentence_native": "Le vainqueur de la course a été applaudi.", + "example_sentence_english": "The winner of the race was applauded.", + "pos": "noun", + "word_frequency": 2307 + }, + { + "word": "énormément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enormously;a lot", + "example_sentence_native": "Il a énormément travaillé.", + "example_sentence_english": "He worked enormously.", + "pos": "adverb", + "word_frequency": 2308 + }, + { + "word": "évaluation", + "article_with_word": "l'évaluation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluation;assessment", + "example_sentence_native": "L'évaluation du projet est en cours.", + "example_sentence_english": "The project evaluation is underway.", + "pos": "noun", + "word_frequency": 2309 + }, + { + "word": "évêque", + "article_with_word": "l'évêque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bishop", + "example_sentence_native": "L'évêque a prononcé un discours.", + "example_sentence_english": "The bishop gave a speech.", + "pos": "noun", + "word_frequency": 2310 + }, + { + "word": "abandonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to abandon;to give up", + "example_sentence_native": "Il ne faut jamais abandonner ses rêves.", + "example_sentence_english": "One must never abandon one's dreams.", + "pos": "verb", + "word_frequency": 2311 + }, + { + "word": "adaptation", + "article_with_word": "l'adaptation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adaptation", + "example_sentence_native": "L'adaptation du livre au film est réussie.", + "example_sentence_english": "The adaptation of the book to film is successful.", + "pos": "noun", + "word_frequency": 2312 + }, + { + "word": "adjoint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assistant;deputy", + "example_sentence_native": "Il est l'adjoint au directeur.", + "example_sentence_english": "He is the assistant to the director.", + "pos": "adjective", + "word_frequency": 2313 + }, + { + "word": "avenue", + "article_with_word": "l'avenue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avenue", + "example_sentence_native": "Nous marchons le long de l'avenue.", + "example_sentence_english": "We are walking along the avenue.", + "pos": "noun", + "word_frequency": 2315 + }, + { + "word": "axe", + "article_with_word": "l'axe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "axis;axle;main road", + "example_sentence_native": "C'est un axe routier important.", + "example_sentence_english": "It's an important road axis.", + "pos": "noun", + "word_frequency": 2316 + }, + { + "word": "boite", + "article_with_word": "la boîte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box;can", + "example_sentence_native": "Mets les jouets dans la boîte.", + "example_sentence_english": "Put the toys in the box.", + "pos": "noun", + "word_frequency": 2317 + }, + { + "word": "calendrier", + "article_with_word": "le calendrier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calendar", + "example_sentence_native": "Regarde la date sur le calendrier.", + "example_sentence_english": "Look at the date on the calendar.", + "pos": "noun", + "word_frequency": 2318 + }, + { + "word": "champagne", + "article_with_word": "le champagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champagne", + "example_sentence_native": "Nous avons bu du champagne pour fêter ça.", + "example_sentence_english": "We drank champagne to celebrate.", + "pos": "noun", + "word_frequency": 2319 + }, + { + "word": "consacrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dedicate;to devote", + "example_sentence_native": "Il a consacré sa vie à la science.", + "example_sentence_english": "He dedicated his life to science.", + "pos": "verb", + "word_frequency": 2320 + }, + { + "word": "concevoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceive;to design", + "example_sentence_native": "Elle a conçu un nouveau plan.", + "example_sentence_english": "She designed a new plan.", + "pos": "verb", + "word_frequency": 2321 + }, + { + "word": "cousin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cousin", + "example_sentence_native": "Mon cousin habite à Paris.", + "example_sentence_english": "My cousin lives in Paris.", + "pos": "noun", + "word_frequency": 2322 + }, + { + "word": "drame", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drama", + "example_sentence_native": "C'était un vrai drame.", + "example_sentence_english": "It was a real drama.", + "pos": "noun", + "word_frequency": 2323 + }, + { + "word": "durable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sustainable;durable", + "example_sentence_native": "Nous devons trouver des solutions durables.", + "example_sentence_english": "We must find sustainable solutions.", + "pos": "adjective", + "word_frequency": 2324 + }, + { + "word": "dynamique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamic", + "example_sentence_native": "C'est une équipe très dynamique.", + "example_sentence_english": "It's a very dynamic team.", + "pos": "adjective", + "word_frequency": 2325 + }, + { + "word": "déplacement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "displacement;travel;movement", + "example_sentence_native": "Il est en déplacement professionnel.", + "example_sentence_english": "He is on a business trip.", + "pos": "noun", + "word_frequency": 2326 + }, + { + "word": "fermeture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closing;closure", + "example_sentence_native": "La fermeture du magasin est prévue pour demain.", + "example_sentence_english": "The store's closure is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 2327 + }, + { + "word": "fondateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founder", + "example_sentence_native": "Il est le fondateur de cette entreprise.", + "example_sentence_english": "He is the founder of this company.", + "pos": "noun", + "word_frequency": 2328 + }, + { + "word": "galerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallery", + "example_sentence_native": "Nous avons visité une galerie d'art.", + "example_sentence_english": "We visited an art gallery.", + "pos": "noun", + "word_frequency": 2330 + }, + { + "word": "indice", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clue;index;indicator", + "example_sentence_native": "La police a trouvé un indice important.", + "example_sentence_english": "The police found an important clue.", + "pos": "noun", + "word_frequency": 2331 + }, + { + "word": "interdiction", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prohibition;ban", + "example_sentence_native": "Il y a une interdiction de fumer ici.", + "example_sentence_english": "There is a smoking ban here.", + "pos": "noun", + "word_frequency": 2332 + }, + { + "word": "major", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "major;main", + "example_sentence_native": "C'est un problème majeur.", + "example_sentence_english": "It's a major problem.", + "pos": "adjective", + "word_frequency": 2334 + }, + { + "word": "nécessairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "necessarily", + "example_sentence_native": "Ce n'est pas nécessairement vrai.", + "example_sentence_english": "That's not necessarily true.", + "pos": "adverb", + "word_frequency": 2335 + }, + { + "word": "pis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worse", + "example_sentence_native": "Le temps est de pis en pis.", + "example_sentence_english": "The weather is getting worse and worse.", + "pos": "adverb", + "word_frequency": 2337 + }, + { + "word": "plaque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plate;slab;plaque", + "example_sentence_native": "Il a une plaque d'immatriculation.", + "example_sentence_english": "He has a license plate.", + "pos": "noun", + "word_frequency": 2338 + }, + { + "word": "pop", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pop (music;culture)", + "example_sentence_native": "J'aime la musique pop.", + "example_sentence_english": "I like pop music.", + "pos": "noun", + "word_frequency": 2339 + }, + { + "word": "profond", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deep;profound", + "example_sentence_native": "Le lac est très profond.", + "example_sentence_english": "The lake is very deep.", + "pos": "adjective", + "word_frequency": 2340 + }, + { + "word": "refaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to redo;to remake", + "example_sentence_native": "Je dois refaire mon travail.", + "example_sentence_english": "I have to redo my work.", + "pos": "verb", + "word_frequency": 2341 + }, + { + "word": "réalisateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "director (film)", + "example_sentence_native": "Le réalisateur a gagné un prix.", + "example_sentence_english": "The director won an award.", + "pos": "noun", + "word_frequency": 2342 + }, + { + "word": "rédaction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing;drafting;editorial staff", + "example_sentence_native": "La rédaction de l'article a pris du temps.", + "example_sentence_english": "The writing of the article took time.", + "pos": "noun", + "word_frequency": 2343 + }, + { + "word": "sauvage", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild;savage", + "example_sentence_native": "C'est un animal sauvage.", + "example_sentence_english": "It's a wild animal.", + "pos": "adjective", + "word_frequency": 2344 + }, + { + "word": "seuil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threshold", + "example_sentence_native": "Il a franchi le seuil de la porte.", + "example_sentence_english": "He crossed the threshold of the door.", + "pos": "noun", + "word_frequency": 2345 + }, + { + "word": "solo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solo", + "example_sentence_native": "Il a joué un solo de guitare.", + "example_sentence_english": "He played a guitar solo.", + "pos": "noun", + "word_frequency": 2346 + }, + { + "word": "team", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "team", + "example_sentence_native": "Toute la team est là.", + "example_sentence_english": "The whole team is here.", + "pos": "noun", + "word_frequency": 2347 + }, + { + "word": "visible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visible", + "example_sentence_native": "Le problème est clairement visible.", + "example_sentence_english": "The problem is clearly visible.", + "pos": "adjective", + "word_frequency": 2348 + }, + { + "word": "visiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to visit", + "example_sentence_native": "Nous allons visiter Paris.", + "example_sentence_english": "We are going to visit Paris.", + "pos": "verb", + "word_frequency": 2349 + }, + { + "word": "accent", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accent", + "example_sentence_native": "Il a un fort accent.", + "example_sentence_english": "He has a strong accent.", + "pos": "noun", + "word_frequency": 2350 + }, + { + "word": "animation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animation;entertainment", + "example_sentence_native": "L'animation de la soirée était excellente.", + "example_sentence_english": "The entertainment for the evening was excellent.", + "pos": "noun", + "word_frequency": 2351 + }, + { + "word": "attirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attract", + "example_sentence_native": "Cette publicité attire l'attention.", + "example_sentence_english": "This advertisement attracts attention.", + "pos": "verb", + "word_frequency": 2352 + }, + { + "word": "bassin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basin;pool;pelvis", + "example_sentence_native": "Le bassin de natation est grand.", + "example_sentence_english": "The swimming pool is large.", + "pos": "noun", + "word_frequency": 2353 + }, + { + "word": "baser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to base", + "example_sentence_native": "Il a basé son argument sur des faits.", + "example_sentence_english": "He based his argument on facts.", + "pos": "verb", + "word_frequency": 2354 + }, + { + "word": "boutique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shop;boutique", + "example_sentence_native": "J'ai acheté ça dans une petite boutique.", + "example_sentence_english": "I bought that in a small shop.", + "pos": "noun", + "word_frequency": 2355 + }, + { + "word": "canon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cannon;barrel", + "example_sentence_native": "Le canon du fusil était chaud.", + "example_sentence_english": "The rifle barrel was hot.", + "pos": "noun", + "word_frequency": 2356 + }, + { + "word": "carré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "square", + "example_sentence_native": "La table est carrée.", + "example_sentence_english": "The table is square.", + "pos": "adjective", + "word_frequency": 2357 + }, + { + "word": "carrément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squarely;frankly;totally", + "example_sentence_native": "C'est carrément impossible.", + "example_sentence_english": "It's totally impossible.", + "pos": "adverb", + "word_frequency": 2358 + }, + { + "word": "casser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to break", + "example_sentence_native": "Il a cassé son verre.", + "example_sentence_english": "He broke his glass.", + "pos": "verb", + "word_frequency": 2359 + }, + { + "word": "chapeau", + "article_with_word": "le chapeau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hat", + "example_sentence_native": "Il porte un beau chapeau.", + "example_sentence_english": "He wears a beautiful hat.", + "pos": "noun", + "word_frequency": 2361 + }, + { + "word": "col", + "article_with_word": "le col", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "collar", + "example_sentence_native": "Le col de sa chemise est sale.", + "example_sentence_english": "The collar of his shirt is dirty.", + "pos": "noun", + "word_frequency": 2363 + }, + { + "word": "courrier", + "article_with_word": "le courrier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mail", + "example_sentence_native": "J'ai reçu beaucoup de courrier aujourd'hui.", + "example_sentence_english": "I received a lot of mail today.", + "pos": "noun", + "word_frequency": 2364 + }, + { + "word": "destin", + "article_with_word": "le destin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destiny", + "example_sentence_native": "Il croit au destin.", + "example_sentence_english": "He believes in destiny.", + "pos": "noun", + "word_frequency": 2365 + }, + { + "word": "diversité", + "article_with_word": "la diversité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversity", + "example_sentence_native": "La diversité culturelle est une richesse.", + "example_sentence_english": "Cultural diversity is a richness.", + "pos": "noun", + "word_frequency": 2366 + }, + { + "word": "déchet", + "article_with_word": "le déchet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waste", + "example_sentence_native": "Il faut trier les déchets.", + "example_sentence_english": "We must sort the waste.", + "pos": "noun", + "word_frequency": 2367 + }, + { + "word": "dépasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exceed;to overtake", + "example_sentence_native": "Il a dépassé la limite de vitesse.", + "example_sentence_english": "He exceeded the speed limit.", + "pos": "verb", + "word_frequency": 2368 + }, + { + "word": "hyper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "super;very", + "example_sentence_native": "C'est hyper intéressant.", + "example_sentence_english": "It's super interesting.", + "pos": "adjective", + "word_frequency": 2370 + }, + { + "word": "intermédiaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intermediate", + "example_sentence_native": "Il a un niveau intermédiaire en français.", + "example_sentence_english": "He has an intermediate level in French.", + "pos": "adjective", + "word_frequency": 2371 + }, + { + "word": "logiciel", + "article_with_word": "le logiciel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "software", + "example_sentence_native": "Ce logiciel est très utile.", + "example_sentence_english": "This software is very useful.", + "pos": "noun", + "word_frequency": 2372 + }, + { + "word": "loup", + "article_with_word": "le loup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wolf", + "example_sentence_native": "Le loup hurle à la lune.", + "example_sentence_english": "The wolf howls at the moon.", + "pos": "noun", + "word_frequency": 2373 + }, + { + "word": "marge", + "article_with_word": "la marge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "margin", + "example_sentence_native": "Écrivez dans la marge.", + "example_sentence_english": "Write in the margin.", + "pos": "noun", + "word_frequency": 2374 + }, + { + "word": "médical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medical", + "example_sentence_native": "Il a besoin d'une assistance médicale.", + "example_sentence_english": "He needs medical assistance.", + "pos": "adjective", + "word_frequency": 2377 + }, + { + "word": "oncle", + "article_with_word": "l'oncle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "uncle", + "example_sentence_native": "Mon oncle habite à Paris.", + "example_sentence_english": "My uncle lives in Paris.", + "pos": "noun", + "word_frequency": 2378 + }, + { + "word": "parlementaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parliamentary", + "example_sentence_native": "La session parlementaire est ouverte.", + "example_sentence_english": "The parliamentary session is open.", + "pos": "adjective", + "word_frequency": 2379 + }, + { + "word": "personnellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personally", + "example_sentence_native": "Personnellement, je ne suis pas d'accord.", + "example_sentence_english": "Personally, I don't agree.", + "pos": "adverb", + "word_frequency": 2380 + }, + { + "word": "poète", + "article_with_word": "le poète", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poet", + "example_sentence_native": "Victor Hugo était un grand poète.", + "example_sentence_english": "Victor Hugo was a great poet.", + "pos": "noun", + "word_frequency": 2381 + }, + { + "word": "préciser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to specify;to clarify", + "example_sentence_native": "Pouvez-vous préciser votre pensée ?", + "example_sentence_english": "Can you clarify your thought?", + "pos": "verb", + "word_frequency": 2382 + }, + { + "word": "réfugié", + "article_with_word": "le réfugié", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee", + "example_sentence_native": "De nombreux réfugiés cherchent asile.", + "example_sentence_english": "Many refugees seek asylum.", + "pos": "noun", + "word_frequency": 2383 + }, + { + "word": "stress", + "article_with_word": "le stress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stress", + "example_sentence_native": "Le stress est mauvais pour la santé.", + "example_sentence_english": "Stress is bad for health.", + "pos": "noun", + "word_frequency": 2385 + }, + { + "word": "équipement", + "article_with_word": "l'équipement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipment", + "example_sentence_native": "Nous avons besoin de nouvel équipement.", + "example_sentence_english": "We need new equipment.", + "pos": "noun", + "word_frequency": 2386 + }, + { + "word": "accéder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to access", + "example_sentence_native": "Vous pouvez accéder au site web.", + "example_sentence_english": "You can access the website.", + "pos": "verb", + "word_frequency": 2387 + }, + { + "word": "allié", + "article_with_word": "l'allié", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ally", + "example_sentence_native": "Ils sont devenus des alliés.", + "example_sentence_english": "They became allies.", + "pos": "noun", + "word_frequency": 2388 + }, + { + "word": "apprentissage", + "article_with_word": "l'apprentissage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "learning", + "example_sentence_native": "L'apprentissage des langues est important.", + "example_sentence_english": "Language learning is important.", + "pos": "noun", + "word_frequency": 2389 + }, + { + "word": "assistance", + "article_with_word": "l'assistance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assistance", + "example_sentence_native": "J'ai besoin d'assistance.", + "example_sentence_english": "I need assistance.", + "pos": "noun", + "word_frequency": 2390 + }, + { + "word": "atmosphère", + "article_with_word": "l'atmosphère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atmosphere", + "example_sentence_native": "L'atmosphère était tendue.", + "example_sentence_english": "The atmosphere was tense.", + "pos": "noun", + "word_frequency": 2391 + }, + { + "word": "attentat", + "article_with_word": "l'attentat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attack;bombing", + "example_sentence_native": "L'attentat a choqué le pays.", + "example_sentence_english": "The attack shocked the country.", + "pos": "noun", + "word_frequency": 2392 + }, + { + "word": "bombe", + "article_with_word": "la bombe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bomb", + "example_sentence_native": "Ils ont désamorcé la bombe.", + "example_sentence_english": "They defused the bomb.", + "pos": "noun", + "word_frequency": 2394 + }, + { + "word": "charme", + "article_with_word": "le charme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charm", + "example_sentence_native": "Il a beaucoup de charme.", + "example_sentence_english": "He has a lot of charm.", + "pos": "noun", + "word_frequency": 2395 + }, + { + "word": "citer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quote;to cite", + "example_sentence_native": "Il a cité un passage du livre.", + "example_sentence_english": "He quoted a passage from the book.", + "pos": "verb", + "word_frequency": 2396 + }, + { + "word": "comporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to include;to comprise;to behave", + "example_sentence_native": "Le document comporte dix pages.", + "example_sentence_english": "The document comprises ten pages.", + "pos": "verb", + "word_frequency": 2398 + }, + { + "word": "copain", + "article_with_word": "le copain", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "friend (informal);boyfriend", + "example_sentence_native": "Je vais voir mes copains ce soir.", + "example_sentence_english": "I'm going to see my friends tonight.", + "pos": "noun", + "word_frequency": 2399 + }, + { + "word": "dimension", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dimension", + "example_sentence_native": "La pièce a de grandes dimensions.", + "example_sentence_english": "The room has large dimensions.", + "pos": "noun", + "word_frequency": 2400 + }, + { + "word": "dingue", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy", + "example_sentence_native": "C'est une idée complètement dingue!", + "example_sentence_english": "That's a completely crazy idea!", + "pos": "adjective", + "word_frequency": 2401 + }, + { + "word": "discipline", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discipline", + "example_sentence_native": "La discipline est essentielle pour réussir.", + "example_sentence_english": "Discipline is essential for success.", + "pos": "noun", + "word_frequency": 2402 + }, + { + "word": "défi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "challenge", + "example_sentence_native": "Relever ce défi sera difficile.", + "example_sentence_english": "Taking on this challenge will be difficult.", + "pos": "noun", + "word_frequency": 2403 + }, + { + "word": "effectuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to carry out;to perform", + "example_sentence_native": "Il doit effectuer les réparations nécessaires.", + "example_sentence_english": "He must carry out the necessary repairs.", + "pos": "verb", + "word_frequency": 2404 + }, + { + "word": "gagnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winning", + "example_sentence_native": "C'est une stratégie gagnante.", + "example_sentence_english": "It's a winning strategy.", + "pos": "adjective", + "word_frequency": 2405 + }, + { + "word": "identifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to identify", + "example_sentence_native": "Il est difficile d'identifier la cause du problème.", + "example_sentence_english": "It's difficult to identify the cause of the problem.", + "pos": "verb", + "word_frequency": 2407 + }, + { + "word": "intelligent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intelligent", + "example_sentence_native": "C'est un enfant très intelligent.", + "example_sentence_english": "He is a very intelligent child.", + "pos": "adjective", + "word_frequency": 2408 + }, + { + "word": "justifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to justify", + "example_sentence_native": "Vous devez justifier votre absence.", + "example_sentence_english": "You must justify your absence.", + "pos": "verb", + "word_frequency": 2409 + }, + { + "word": "leçon", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lesson", + "example_sentence_native": "J'ai une leçon de français aujourd'hui.", + "example_sentence_english": "I have a French lesson today.", + "pos": "noun", + "word_frequency": 2411 + }, + { + "word": "limiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to limit", + "example_sentence_native": "Nous devons limiter nos dépenses.", + "example_sentence_english": "We must limit our expenses.", + "pos": "verb", + "word_frequency": 2412 + }, + { + "word": "marre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fed up", + "example_sentence_native": "J'en ai marre de la pluie.", + "example_sentence_english": "I'm fed up with the rain.", + "pos": "noun", + "word_frequency": 2415 + }, + { + "word": "mystère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mystery", + "example_sentence_native": "C'est un grand mystère pour moi.", + "example_sentence_english": "It's a great mystery to me.", + "pos": "noun", + "word_frequency": 2416 + }, + { + "word": "méchant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mean;wicked", + "example_sentence_native": "Le loup est très méchant dans ce conte.", + "example_sentence_english": "The wolf is very wicked in this tale.", + "pos": "adjective", + "word_frequency": 2417 + }, + { + "word": "opposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppose", + "example_sentence_native": "Ils s'opposent à cette décision.", + "example_sentence_english": "They oppose this decision.", + "pos": "verb", + "word_frequency": 2418 + }, + { + "word": "orientation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orientation;direction", + "example_sentence_native": "L'orientation professionnelle est importante.", + "example_sentence_english": "Career orientation is important.", + "pos": "noun", + "word_frequency": 2419 + }, + { + "word": "paquet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "package;packet", + "example_sentence_native": "J'ai reçu un paquet ce matin.", + "example_sentence_english": "I received a package this morning.", + "pos": "noun", + "word_frequency": 2420 + }, + { + "word": "passe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pass;period", + "example_sentence_native": "Nous traversons une mauvaise passe en ce moment.", + "example_sentence_english": "We are going through a bad patch right now.", + "pos": "noun", + "word_frequency": 2421 + }, + { + "word": "paysage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "landscape", + "example_sentence_native": "Le paysage de montagne est magnifique.", + "example_sentence_english": "The mountain landscape is magnificent.", + "pos": "noun", + "word_frequency": 2422 + }, + { + "word": "pleurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cry", + "example_sentence_native": "Le bébé a commencé à pleurer.", + "example_sentence_english": "The baby started to cry.", + "pos": "verb", + "word_frequency": 2423 + }, + { + "word": "prisonnier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prisoner", + "example_sentence_native": "Le prisonnier a tenté de s'échapper.", + "example_sentence_english": "The prisoner tried to escape.", + "pos": "noun", + "word_frequency": 2424 + }, + { + "word": "pôle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pole", + "example_sentence_native": "Le pôle Nord est très froid.", + "example_sentence_english": "The North Pole is very cold.", + "pos": "noun", + "word_frequency": 2426 + }, + { + "word": "quasiment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almost;virtually", + "example_sentence_native": "Il a quasiment terminé son travail.", + "example_sentence_english": "He has almost finished his work.", + "pos": "adverb", + "word_frequency": 2428 + }, + { + "word": "retrait", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "withdrawal;retreat", + "example_sentence_native": "J'ai fait un retrait d'argent à la banque.", + "example_sentence_english": "I made a cash withdrawal at the bank.", + "pos": "noun", + "word_frequency": 2430 + }, + { + "word": "réception", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reception", + "example_sentence_native": "La réception de l'hôtel est ouverte 24h/24.", + "example_sentence_english": "The hotel reception is open 24/7.", + "pos": "noun", + "word_frequency": 2432 + }, + { + "word": "visiteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visitor", + "example_sentence_native": "Le musée accueille de nombreux visiteurs.", + "example_sentence_english": "The museum welcomes many visitors.", + "pos": "noun", + "word_frequency": 2434 + }, + { + "word": "amende", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine;penalty", + "example_sentence_native": "Il a reçu une amende pour excès de vitesse.", + "example_sentence_english": "He received a fine for speeding.", + "pos": "noun", + "word_frequency": 2435 + }, + { + "word": "amener", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bring (a person;animal);to lead", + "example_sentence_native": "Peux-tu amener ton ami à la fête ?", + "example_sentence_english": "Can you bring your friend to the party?", + "pos": "verb", + "word_frequency": 2436 + }, + { + "word": "aménagement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrangement;layout;development", + "example_sentence_native": "L'aménagement du jardin a pris du temps.", + "example_sentence_english": "The garden layout took time.", + "pos": "noun", + "word_frequency": 2437 + }, + { + "word": "atlantique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Atlantic", + "example_sentence_native": "L'océan Atlantique est très vaste.", + "example_sentence_english": "The Atlantic Ocean is very vast.", + "pos": "adjective", + "word_frequency": 2438 + }, + { + "word": "atteinte", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harm;infringement;attack", + "example_sentence_native": "C'est une atteinte à la vie privée.", + "example_sentence_english": "It's an infringement of privacy.", + "pos": "noun", + "word_frequency": 2439 + }, + { + "word": "autonomie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomy", + "example_sentence_native": "L’autonomie est importante pour les jeunes adultes.", + "example_sentence_english": "Autonomy is important for young adults.", + "pos": "noun", + "word_frequency": 2440 + }, + { + "word": "autoroute", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorway;highway", + "example_sentence_native": "Nous avons pris l’autoroute pour aller plus vite.", + "example_sentence_english": "We took the motorway to go faster.", + "pos": "noun", + "word_frequency": 2441 + }, + { + "word": "chanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sing", + "example_sentence_native": "Elle aime chanter sous la douche.", + "example_sentence_english": "She likes to sing in the shower.", + "pos": "verb", + "word_frequency": 2442 + }, + { + "word": "chanteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singer", + "example_sentence_native": "Le chanteur a une voix magnifique.", + "example_sentence_english": "The singer has a magnificent voice.", + "pos": "noun", + "word_frequency": 2443 + }, + { + "word": "chevalier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knight", + "example_sentence_native": "Le chevalier a sauvé la princesse.", + "example_sentence_english": "The knight saved the princess.", + "pos": "noun", + "word_frequency": 2444 + }, + { + "word": "communiqué", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "communiqué;press release", + "example_sentence_native": "Le gouvernement a publié un communiqué officiel.", + "example_sentence_english": "The government published an official communiqué.", + "pos": "noun", + "word_frequency": 2445 + }, + { + "word": "constater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to note;to observe;to ascertain", + "example_sentence_native": "Il a constaté que la porte était ouverte.", + "example_sentence_english": "He noted that the door was open.", + "pos": "verb", + "word_frequency": 2446 + }, + { + "word": "continent", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "continent", + "example_sentence_native": "L’Europe est un continent.", + "example_sentence_english": "Europe is a continent.", + "pos": "noun", + "word_frequency": 2447 + }, + { + "word": "destinée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destiny;fate", + "example_sentence_native": "Elle croit en sa propre destinée.", + "example_sentence_english": "She believes in her own destiny.", + "pos": "noun", + "word_frequency": 2448 + }, + { + "word": "diable", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "devil", + "example_sentence_native": "On dit que le diable se cache dans les détails.", + "example_sentence_english": "They say the devil is in the details.", + "pos": "noun", + "word_frequency": 2449 + }, + { + "word": "diriger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to direct;to manage;to lead", + "example_sentence_native": "Il dirige une grande entreprise.", + "example_sentence_english": "He manages a large company.", + "pos": "verb", + "word_frequency": 2450 + }, + { + "word": "fusion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merger;fusion", + "example_sentence_native": "La fusion des deux entreprises est prévue pour l’année prochaine.", + "example_sentence_english": "The merger of the two companies is planned for next year.", + "pos": "noun", + "word_frequency": 2452 + }, + { + "word": "gris", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grey", + "example_sentence_native": "Le ciel est gris aujourd’hui.", + "example_sentence_english": "The sky is grey today.", + "pos": "adjective", + "word_frequency": 2453 + }, + { + "word": "lecteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reader;player (device)", + "example_sentence_native": "Ce lecteur de DVD est très ancien.", + "example_sentence_english": "This DVD player is very old.", + "pos": "noun", + "word_frequency": 2454 + }, + { + "word": "marin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailor;marine", + "example_sentence_native": "Le marin est parti en mer.", + "example_sentence_english": "The sailor went to sea.", + "pos": "noun", + "word_frequency": 2456 + }, + { + "word": "matériau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material", + "example_sentence_native": "Ce matériau est très résistant.", + "example_sentence_english": "This material is very resistant.", + "pos": "noun", + "word_frequency": 2457 + }, + { + "word": "militant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activist;militant", + "example_sentence_native": "Elle est une militante pour les droits de l’homme.", + "example_sentence_english": "She is an activist for human rights.", + "pos": "noun", + "word_frequency": 2458 + }, + { + "word": "motif", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reason;motive;pattern", + "example_sentence_native": "Quel est le motif de votre visite?", + "example_sentence_english": "What is the reason for your visit?", + "pos": "noun", + "word_frequency": 2459 + }, + { + "word": "métal", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "metal", + "example_sentence_native": "Ce bijou est fait en métal précieux.", + "example_sentence_english": "This jewel is made of precious metal.", + "pos": "noun", + "word_frequency": 2460 + }, + { + "word": "météo", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weather (forecast)", + "example_sentence_native": "La météo annonce de la pluie.", + "example_sentence_english": "The weather forecast announces rain.", + "pos": "noun", + "word_frequency": 2461 + }, + { + "word": "ouvrier", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worker;laborer", + "example_sentence_native": "L’ouvrier travaille à l’usine.", + "example_sentence_english": "The worker works at the factory.", + "pos": "noun", + "word_frequency": 2462 + }, + { + "word": "pauvreté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poverty", + "example_sentence_native": "La pauvreté est un problème mondial.", + "example_sentence_english": "Poverty is a global problem.", + "pos": "noun", + "word_frequency": 2463 + }, + { + "word": "possession", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possession", + "example_sentence_native": "Il a de nombreuses possessions.", + "example_sentence_english": "He has many possessions.", + "pos": "noun", + "word_frequency": 2464 + }, + { + "word": "pratiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practically;almost", + "example_sentence_native": "C’est pratiquement impossible.", + "example_sentence_english": "It’s practically impossible.", + "pos": "adverb", + "word_frequency": 2465 + }, + { + "word": "provenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come from;to originate from", + "example_sentence_native": "Ce vin provient de France.", + "example_sentence_english": "This wine comes from France.", + "pos": "verb", + "word_frequency": 2466 + }, + { + "word": "prévu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foreseen;planned;expected", + "example_sentence_native": "Le résultat était prévu.", + "example_sentence_english": "The result was expected.", + "pos": "adjective", + "word_frequency": 2467 + }, + { + "word": "remplacement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "replacement", + "example_sentence_native": "Nous cherchons un remplacement pour ce poste.", + "example_sentence_english": "We are looking for a replacement for this position.", + "pos": "noun", + "word_frequency": 2468 + }, + { + "word": "remporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to win;to carry off", + "example_sentence_native": "L’équipe a remporté la victoire.", + "example_sentence_english": "The team won the victory.", + "pos": "verb", + "word_frequency": 2469 + }, + { + "word": "retenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to retain;to remember;to hold back", + "example_sentence_native": "J’ai du mal à retenir les noms.", + "example_sentence_english": "I have trouble remembering names.", + "pos": "verb", + "word_frequency": 2470 + }, + { + "word": "répartition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution;allocation", + "example_sentence_native": "La répartition des tâches est claire.", + "example_sentence_english": "The distribution of tasks is clear.", + "pos": "noun", + "word_frequency": 2471 + }, + { + "word": "scandale", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandal", + "example_sentence_native": "Ce fut un grand scandale politique.", + "example_sentence_english": "It was a big political scandal.", + "pos": "noun", + "word_frequency": 2472 + }, + { + "word": "taper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to type;to hit;to tap", + "example_sentence_native": "Il tape vite sur son clavier.", + "example_sentence_english": "He types fast on his keyboard.", + "pos": "verb", + "word_frequency": 2475 + }, + { + "word": "terrorisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrorism", + "example_sentence_native": "Le terrorisme est une menace mondiale.", + "example_sentence_english": "Terrorism is a global threat.", + "pos": "noun", + "word_frequency": 2476 + }, + { + "word": "terroriste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terrorist", + "example_sentence_native": "Les autorités ont arrêté un terroriste présumé.", + "example_sentence_english": "The authorities arrested a suspected terrorist.", + "pos": "noun", + "word_frequency": 2477 + }, + { + "word": "thé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tea", + "example_sentence_native": "Je bois du thé tous les matins.", + "example_sentence_english": "I drink tea every morning.", + "pos": "noun", + "word_frequency": 2478 + }, + { + "word": "titulaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holder;incumbent;regular (player)", + "example_sentence_native": "Le titulaire du poste est en congé.", + "example_sentence_english": "The incumbent of the position is on leave.", + "pos": "noun", + "word_frequency": 2479 + }, + { + "word": "vivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eagerly", + "example_sentence_native": "Je l'attends vivement.", + "example_sentence_english": "I am eagerly awaiting it.", + "pos": "adverb", + "word_frequency": 2482 + }, + { + "word": "équipage", + "article_with_word": "l'équipage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crew", + "example_sentence_native": "L'équipage du navire était très professionnel.", + "example_sentence_english": "The ship's crew was very professional.", + "pos": "noun", + "word_frequency": 2483 + }, + { + "word": "absolu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absolute", + "example_sentence_native": "Il a une confiance absolue en ses capacités.", + "example_sentence_english": "He has absolute confidence in his abilities.", + "pos": "adjective", + "word_frequency": 2484 + }, + { + "word": "adversaire", + "article_with_word": "l'adversaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opponent", + "example_sentence_native": "Son adversaire était très fort.", + "example_sentence_english": "His opponent was very strong.", + "pos": "noun", + "word_frequency": 2486 + }, + { + "word": "associé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "associated", + "example_sentence_native": "Les coûts associés au projet sont élevés.", + "example_sentence_english": "The costs associated with the project are high.", + "pos": "adjective", + "word_frequency": 2490 + }, + { + "word": "audience", + "article_with_word": "l'audience", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audience", + "example_sentence_native": "L'audience était captivée par le discours.", + "example_sentence_english": "The audience was captivated by the speech.", + "pos": "noun", + "word_frequency": 2491 + }, + { + "word": "censé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supposed to", + "example_sentence_native": "Tu es censé arriver à l'heure.", + "example_sentence_english": "You are supposed to arrive on time.", + "pos": "adjective", + "word_frequency": 2493 + }, + { + "word": "composé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composed", + "example_sentence_native": "Ce plat est composé de plusieurs ingrédients.", + "example_sentence_english": "This dish is composed of several ingredients.", + "pos": "adjective", + "word_frequency": 2494 + }, + { + "word": "conséquent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequent", + "example_sentence_native": "Il a subi une perte conséquente.", + "example_sentence_english": "He suffered a substantial loss.", + "pos": "adjective", + "word_frequency": 2495 + }, + { + "word": "design", + "article_with_word": "le design", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "design", + "example_sentence_native": "J'aime le design de cette voiture.", + "example_sentence_english": "I like the design of this car.", + "pos": "noun", + "word_frequency": 2496 + }, + { + "word": "documentaire", + "article_with_word": "le documentaire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "documentary", + "example_sentence_native": "Nous avons regardé un documentaire sur les animaux.", + "example_sentence_english": "We watched a documentary about animals.", + "pos": "noun", + "word_frequency": 2497 + }, + { + "word": "enregistrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to record", + "example_sentence_native": "N'oubliez pas d'enregistrer votre nom.", + "example_sentence_english": "Don't forget to register your name.", + "pos": "verb", + "word_frequency": 2498 + }, + { + "word": "explosion", + "article_with_word": "l'explosion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explosion", + "example_sentence_native": "L'explosion a causé des dégâts importants.", + "example_sentence_english": "The explosion caused significant damage.", + "pos": "noun", + "word_frequency": 2499 + }, + { + "word": "fac", + "article_with_word": "la fac", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uni", + "example_sentence_native": "Je vais à la fac tous les jours.", + "example_sentence_english": "I go to uni every day.", + "pos": "noun", + "word_frequency": 2500 + }, + { + "word": "faculté", + "article_with_word": "la faculté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faculty", + "example_sentence_native": "Il a une grande faculté d'adaptation.", + "example_sentence_english": "He has a great ability to adapt.", + "pos": "noun", + "word_frequency": 2501 + }, + { + "word": "fiscal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiscal", + "example_sentence_native": "La réforme fiscale est en cours.", + "example_sentence_english": "The tax reform is underway.", + "pos": "adjective", + "word_frequency": 2502 + }, + { + "word": "gorge", + "article_with_word": "la gorge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "throat", + "example_sentence_native": "J'ai mal à la gorge.", + "example_sentence_english": "I have a sore throat.", + "pos": "noun", + "word_frequency": 2503 + }, + { + "word": "ignorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ignore", + "example_sentence_native": "Il a choisi d'ignorer mes conseils.", + "example_sentence_english": "He chose to ignore my advice.", + "pos": "verb", + "word_frequency": 2504 + }, + { + "word": "indispensable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indispensable", + "example_sentence_native": "Ce document est indispensable pour votre dossier.", + "example_sentence_english": "This document is essential for your file.", + "pos": "adjective", + "word_frequency": 2505 + }, + { + "word": "investir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invest", + "example_sentence_native": "Il veut investir dans l'immobilier.", + "example_sentence_english": "He wants to invest in real estate.", + "pos": "verb", + "word_frequency": 2506 + }, + { + "word": "joyeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joyful", + "example_sentence_native": "Nous avons passé un joyeux Noël.", + "example_sentence_english": "We had a merry Christmas.", + "pos": "adjective", + "word_frequency": 2507 + }, + { + "word": "magie", + "article_with_word": "la magie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magic", + "example_sentence_native": "Les enfants croient à la magie de Noël.", + "example_sentence_english": "Children believe in the magic of Christmas.", + "pos": "noun", + "word_frequency": 2508 + }, + { + "word": "modifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to modify", + "example_sentence_native": "Il faut modifier les paramètres.", + "example_sentence_english": "The settings need to be modified.", + "pos": "verb", + "word_frequency": 2509 + }, + { + "word": "nettement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearly", + "example_sentence_native": "La situation s'est nettement améliorée.", + "example_sentence_english": "The situation has significantly improved.", + "pos": "adverb", + "word_frequency": 2510 + }, + { + "word": "ordinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ordinary", + "example_sentence_native": "C'est une journée ordinaire.", + "example_sentence_english": "It's an ordinary day.", + "pos": "adjective", + "word_frequency": 2512 + }, + { + "word": "paire", + "article_with_word": "la paire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pair", + "example_sentence_native": "J'ai acheté une nouvelle paire de chaussures.", + "example_sentence_english": "I bought a new pair of shoes.", + "pos": "noun", + "word_frequency": 2513 + }, + { + "word": "poursuite", + "article_with_word": "la poursuite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pursuit", + "example_sentence_native": "La police est en poursuite du suspect.", + "example_sentence_english": "The police are in pursuit of the suspect.", + "pos": "noun", + "word_frequency": 2515 + }, + { + "word": "promesse", + "article_with_word": "la promesse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "promise", + "example_sentence_native": "Il a tenu sa promesse.", + "example_sentence_english": "He kept his promise.", + "pos": "noun", + "word_frequency": 2516 + }, + { + "word": "registre", + "article_with_word": "le registre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "register", + "example_sentence_native": "Veuillez signer le registre des visiteurs.", + "example_sentence_english": "Please sign the visitor register.", + "pos": "noun", + "word_frequency": 2517 + }, + { + "word": "relatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relative", + "example_sentence_native": "C'est une question relative à la sécurité.", + "example_sentence_english": "It's a question relative to security.", + "pos": "adjective", + "word_frequency": 2518 + }, + { + "word": "souffrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suffer", + "example_sentence_native": "Il souffre d'une maladie chronique.", + "example_sentence_english": "He suffers from a chronic illness.", + "pos": "verb", + "word_frequency": 2519 + }, + { + "word": "suppression", + "article_with_word": "la suppression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suppression", + "example_sentence_native": "La suppression des postes a été annoncée.", + "example_sentence_english": "The suppression of jobs was announced.", + "pos": "noun", + "word_frequency": 2520 + }, + { + "word": "tournage", + "article_with_word": "le tournage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filming;shooting", + "example_sentence_native": "Le tournage du film a duré trois mois.", + "example_sentence_english": "The filming of the movie lasted three months.", + "pos": "noun", + "word_frequency": 2521 + }, + { + "word": "transformer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to transform;to change", + "example_sentence_native": "Il faut transformer cette pièce en bureau.", + "example_sentence_english": "We need to transform this room into an office.", + "pos": "verb", + "word_frequency": 2522 + }, + { + "word": "tromper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deceive;to trick", + "example_sentence_native": "Il a essayé de me tromper avec de fausses informations.", + "example_sentence_english": "He tried to deceive me with false information.", + "pos": "verb", + "word_frequency": 2523 + }, + { + "word": "val", + "article_with_word": "la val", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valley", + "example_sentence_native": "La petite val était recouverte de neige.", + "example_sentence_english": "The small valley was covered in snow.", + "pos": "noun", + "word_frequency": 2524 + }, + { + "word": "voyageur", + "article_with_word": "le voyageur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traveler;passenger", + "example_sentence_native": "Le voyageur attendait son train sur le quai.", + "example_sentence_english": "The traveler was waiting for his train on the platform.", + "pos": "noun", + "word_frequency": 2526 + }, + { + "word": "écrit", + "article_with_word": "l'écrit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing;written document", + "example_sentence_native": "Il préfère la communication par écrit.", + "example_sentence_english": "He prefers communication in writing.", + "pos": "noun", + "word_frequency": 2527 + }, + { + "word": "émotion", + "article_with_word": "l'émotion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emotion", + "example_sentence_native": "Elle a ressenti une forte émotion en le voyant.", + "example_sentence_english": "She felt a strong emotion seeing him.", + "pos": "noun", + "word_frequency": 2528 + }, + { + "word": "alimentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food-related;dietary", + "example_sentence_native": "La sécurité alimentaire est une préoccupation majeure.", + "example_sentence_english": "Food safety is a major concern.", + "pos": "adjective", + "word_frequency": 2529 + }, + { + "word": "annuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "annual;yearly", + "example_sentence_native": "Le rapport annuel sera publié en mars.", + "example_sentence_english": "The annual report will be published in March.", + "pos": "adjective", + "word_frequency": 2530 + }, + { + "word": "apparence", + "article_with_word": "l'apparence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appearance", + "example_sentence_native": "Son apparence a beaucoup changé.", + "example_sentence_english": "His appearance has changed a lot.", + "pos": "noun", + "word_frequency": 2531 + }, + { + "word": "autrefois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formerly;in the past", + "example_sentence_native": "Autrefois, les gens vivaient sans téléphone portable.", + "example_sentence_english": "Formerly, people lived without mobile phones.", + "pos": "adverb", + "word_frequency": 2532 + }, + { + "word": "bénéfice", + "article_with_word": "le bénéfice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profit;benefit", + "example_sentence_native": "L'entreprise a réalisé un bénéfice important cette année.", + "example_sentence_english": "The company made a significant profit this year.", + "pos": "noun", + "word_frequency": 2536 + }, + { + "word": "clinique", + "article_with_word": "la clinique", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clinic", + "example_sentence_native": "Il a été soigné à la clinique.", + "example_sentence_english": "He was treated at the clinic.", + "pos": "noun", + "word_frequency": 2537 + }, + { + "word": "communiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communist", + "example_sentence_native": "Le parti communiste a perdu des voix.", + "example_sentence_english": "The communist party lost votes.", + "pos": "adjective", + "word_frequency": 2538 + }, + { + "word": "concentration", + "article_with_word": "la concentration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concentration", + "example_sentence_native": "La concentration est essentielle pour étudier.", + "example_sentence_english": "Concentration is essential for studying.", + "pos": "noun", + "word_frequency": 2539 + }, + { + "word": "couteau", + "article_with_word": "le couteau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "knife", + "example_sentence_native": "Passe-moi le couteau, s'il te plaît.", + "example_sentence_english": "Pass me the knife, please.", + "pos": "noun", + "word_frequency": 2540 + }, + { + "word": "doucement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gently;softly;slowly", + "example_sentence_native": "Parle doucement, le bébé dort.", + "example_sentence_english": "Speak softly, the baby is sleeping.", + "pos": "adverb", + "word_frequency": 2541 + }, + { + "word": "déranger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to disturb;to bother", + "example_sentence_native": "Ne me dérange pas pendant que je travaille.", + "example_sentence_english": "Don't disturb me while I'm working.", + "pos": "verb", + "word_frequency": 2542 + }, + { + "word": "file", + "article_with_word": "la file", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line;queue", + "example_sentence_native": "Il y avait une longue file d'attente.", + "example_sentence_english": "There was a long waiting line.", + "pos": "noun", + "word_frequency": 2545 + }, + { + "word": "fleuve", + "article_with_word": "le fleuve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "river (flowing into the sea)", + "example_sentence_native": "La Seine est un fleuve qui traverse Paris.", + "example_sentence_english": "The Seine is a river that flows through Paris.", + "pos": "noun", + "word_frequency": 2546 + }, + { + "word": "gras", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fat;greasy", + "example_sentence_native": "Ce plat est trop gras pour moi.", + "example_sentence_english": "This dish is too greasy for me.", + "pos": "adjective", + "word_frequency": 2547 + }, + { + "word": "hockey", + "article_with_word": "le hockey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hockey", + "example_sentence_native": "Le Canada est connu pour son amour du hockey.", + "example_sentence_english": "Canada is known for its love of hockey.", + "pos": "noun", + "word_frequency": 2549 + }, + { + "word": "instrument", + "article_with_word": "l'instrument", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "instrument", + "example_sentence_native": "Il joue de plusieurs instruments de musique.", + "example_sentence_english": "He plays several musical instruments.", + "pos": "noun", + "word_frequency": 2550 + }, + { + "word": "intervenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to intervene", + "example_sentence_native": "La police a dû intervenir pour calmer la situation.", + "example_sentence_english": "The police had to intervene to calm the situation.", + "pos": "verb", + "word_frequency": 2551 + }, + { + "word": "intégrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to integrate", + "example_sentence_native": "Il est difficile d'intégrer une nouvelle culture.", + "example_sentence_english": "It is difficult to integrate into a new culture.", + "pos": "verb", + "word_frequency": 2552 + }, + { + "word": "liaison", + "article_with_word": "la liaison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection;link;liaison", + "example_sentence_native": "Il y a une bonne liaison entre les deux villes.", + "example_sentence_english": "There is a good connection between the two cities.", + "pos": "noun", + "word_frequency": 2553 + }, + { + "word": "limité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limited", + "example_sentence_native": "Les ressources sont limitées.", + "example_sentence_english": "Resources are limited.", + "pos": "adjective", + "word_frequency": 2554 + }, + { + "word": "marketing", + "article_with_word": "le marketing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing", + "example_sentence_native": "Le marketing digital est en pleine croissance.", + "example_sentence_english": "Digital marketing is growing rapidly.", + "pos": "noun", + "word_frequency": 2555 + }, + { + "word": "migrant", + "article_with_word": "le migrant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migrant", + "example_sentence_native": "Les migrants cherchent une vie meilleure.", + "example_sentence_english": "Migrants are looking for a better life.", + "pos": "noun", + "word_frequency": 2556 + }, + { + "word": "miroir", + "article_with_word": "le miroir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mirror", + "example_sentence_native": "Elle se regarde dans le miroir.", + "example_sentence_english": "She looks at herself in the mirror.", + "pos": "noun", + "word_frequency": 2557 + }, + { + "word": "nu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "naked;bare", + "example_sentence_native": "Les arbres sont nus en hiver.", + "example_sentence_english": "The trees are bare in winter.", + "pos": "adjective", + "word_frequency": 2558 + }, + { + "word": "partenariat", + "article_with_word": "le partenariat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partnership", + "example_sentence_native": "Ils ont signé un nouveau partenariat commercial.", + "example_sentence_english": "They signed a new business partnership.", + "pos": "noun", + "word_frequency": 2559 + }, + { + "word": "plateforme", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platform", + "example_sentence_native": "La nouvelle plateforme de streaming est très populaire.", + "example_sentence_english": "The new streaming platform is very popular.", + "pos": "noun", + "word_frequency": 2560 + }, + { + "word": "procédé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "process", + "example_sentence_native": "Ce procédé de fabrication est très efficace.", + "example_sentence_english": "This manufacturing process is very efficient.", + "pos": "noun", + "word_frequency": 2561 + }, + { + "word": "préfecture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prefecture", + "example_sentence_native": "Nous devons aller à la préfecture pour renouveler notre passeport.", + "example_sentence_english": "We have to go to the prefecture to renew our passport.", + "pos": "noun", + "word_frequency": 2562 + }, + { + "word": "préfet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prefect", + "example_sentence_native": "Le préfet a annoncé de nouvelles mesures de sécurité.", + "example_sentence_english": "The prefect announced new security measures.", + "pos": "noun", + "word_frequency": 2563 + }, + { + "word": "renforcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strengthen", + "example_sentence_native": "Il faut renforcer les liens entre les pays.", + "example_sentence_english": "We must strengthen the ties between countries.", + "pos": "verb", + "word_frequency": 2564 + }, + { + "word": "référendum", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referendum", + "example_sentence_native": "Le gouvernement a décidé d'organiser un référendum sur cette question.", + "example_sentence_english": "The government decided to organize a referendum on this issue.", + "pos": "noun", + "word_frequency": 2567 + }, + { + "word": "réserver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reserve", + "example_sentence_native": "J'aimerais réserver une table pour deux personnes.", + "example_sentence_english": "I would like to reserve a table for two people.", + "pos": "verb", + "word_frequency": 2568 + }, + { + "word": "sensation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensation", + "example_sentence_native": "J'ai une étrange sensation dans le ventre.", + "example_sentence_english": "I have a strange sensation in my stomach.", + "pos": "noun", + "word_frequency": 2569 + }, + { + "word": "support", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support", + "example_sentence_native": "Le support technique est disponible 24h/24.", + "example_sentence_english": "Technical support is available 24/7.", + "pos": "noun", + "word_frequency": 2570 + }, + { + "word": "séparation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separation", + "example_sentence_native": "La séparation des pouvoirs est essentielle en démocratie.", + "example_sentence_english": "The separation of powers is essential in a democracy.", + "pos": "noun", + "word_frequency": 2571 + }, + { + "word": "étonnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astonishing", + "example_sentence_native": "C'est une histoire vraiment étonnante.", + "example_sentence_english": "It's a truly astonishing story.", + "pos": "adjective", + "word_frequency": 2572 + }, + { + "word": "acquisition", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquisition", + "example_sentence_native": "L'acquisition de nouvelles compétences est cruciale.", + "example_sentence_english": "The acquisition of new skills is crucial.", + "pos": "noun", + "word_frequency": 2573 + }, + { + "word": "africain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "African", + "example_sentence_native": "Il a visité plusieurs pays africains.", + "example_sentence_english": "He visited several African countries.", + "pos": "adjective", + "word_frequency": 2574 + }, + { + "word": "amateur", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amateur", + "example_sentence_native": "C'est un grand amateur de musique classique.", + "example_sentence_english": "He is a great fan of classical music.", + "pos": "noun", + "word_frequency": 2575 + }, + { + "word": "apprécier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to appreciate", + "example_sentence_native": "J'apprécie beaucoup votre aide.", + "example_sentence_english": "I really appreciate your help.", + "pos": "verb", + "word_frequency": 2576 + }, + { + "word": "désert", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desert", + "example_sentence_native": "Le Sahara est le plus grand désert chaud du monde.", + "example_sentence_english": "The Sahara is the largest hot desert in the world.", + "pos": "noun", + "word_frequency": 2578 + }, + { + "word": "déçu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointed", + "example_sentence_native": "Je suis très déçu par les résultats.", + "example_sentence_english": "I am very disappointed with the results.", + "pos": "adjective", + "word_frequency": 2579 + }, + { + "word": "enjeu", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stake", + "example_sentence_native": "Les enjeux de cette négociation sont importants.", + "example_sentence_english": "The stakes of this negotiation are high.", + "pos": "noun", + "word_frequency": 2580 + }, + { + "word": "enseigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to teach", + "example_sentence_native": "Elle enseigne le français au lycée.", + "example_sentence_english": "She teaches French at the high school.", + "pos": "verb", + "word_frequency": 2581 + }, + { + "word": "gloire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glory", + "example_sentence_native": "Il a connu la gloire après sa victoire.", + "example_sentence_english": "He knew glory after his victory.", + "pos": "noun", + "word_frequency": 2583 + }, + { + "word": "héritage", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heritage", + "example_sentence_native": "Ce château fait partie de notre héritage culturel.", + "example_sentence_english": "This castle is part of our cultural heritage.", + "pos": "noun", + "word_frequency": 2584 + }, + { + "word": "impliquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to involve", + "example_sentence_native": "Cette décision implique de grands changements.", + "example_sentence_english": "This decision involves big changes.", + "pos": "verb", + "word_frequency": 2585 + }, + { + "word": "inférieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inferior", + "example_sentence_native": "Le niveau de l'eau est inférieur à la normale.", + "example_sentence_english": "The water level is lower than normal.", + "pos": "adjective", + "word_frequency": 2586 + }, + { + "word": "instruction", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instruction", + "example_sentence_native": "Suivez les instructions attentivement.", + "example_sentence_english": "Follow the instructions carefully.", + "pos": "noun", + "word_frequency": 2587 + }, + { + "word": "jus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "juice", + "example_sentence_native": "Je voudrais un verre de jus d'orange.", + "example_sentence_english": "I would like a glass of orange juice.", + "pos": "noun", + "word_frequency": 2589 + }, + { + "word": "kg", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kg", + "example_sentence_native": "J'ai acheté deux kg de pommes.", + "example_sentence_english": "I bought two kg of apples.", + "pos": "noun", + "word_frequency": 2591 + }, + { + "word": "latin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latin", + "example_sentence_native": "Le français est une langue latine.", + "example_sentence_english": "French is a Latin language.", + "pos": "adjective", + "word_frequency": 2592 + }, + { + "word": "livraison", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delivery", + "example_sentence_native": "La livraison de votre commande est prévue demain.", + "example_sentence_english": "The delivery of your order is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 2593 + }, + { + "word": "maillot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimsuit", + "example_sentence_native": "J'ai acheté un nouveau maillot de bain pour l'été.", + "example_sentence_english": "I bought a new swimsuit for the summer.", + "pos": "noun", + "word_frequency": 2595 + }, + { + "word": "moto", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorcycle", + "example_sentence_native": "Il aime faire de la moto le week-end.", + "example_sentence_english": "He likes to ride his motorcycle on weekends.", + "pos": "noun", + "word_frequency": 2598 + }, + { + "word": "onze", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eleven", + "example_sentence_native": "Il est onze heures du matin.", + "example_sentence_english": "It is eleven o'clock in the morning.", + "pos": "numeral", + "word_frequency": 2599 + }, + { + "word": "plastique", + "article_with_word": "le plastique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plastic", + "example_sentence_native": "Le plastique est un matériau très utilisé.", + "example_sentence_english": "Plastic is a widely used material.", + "pos": "noun", + "word_frequency": 2600 + }, + { + "word": "prière", + "article_with_word": "la prière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prayer", + "example_sentence_native": "Elle a fait une prière avant de dormir.", + "example_sentence_english": "She said a prayer before sleeping.", + "pos": "noun", + "word_frequency": 2601 + }, + { + "word": "producteur", + "article_with_word": "le producteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "producer", + "example_sentence_native": "Le producteur de musique a découvert un nouveau talent.", + "example_sentence_english": "The music producer discovered a new talent.", + "pos": "noun", + "word_frequency": 2602 + }, + { + "word": "profession", + "article_with_word": "la profession", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "profession", + "example_sentence_native": "Quelle est votre profession?", + "example_sentence_english": "What is your profession?", + "pos": "noun", + "word_frequency": 2603 + }, + { + "word": "pseudo", + "article_with_word": "le pseudo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "username;nickname", + "example_sentence_native": "Il a choisi un pseudo original pour son compte en ligne.", + "example_sentence_english": "He chose an original username for his online account.", + "pos": "noun", + "word_frequency": 2604 + }, + { + "word": "recrutement", + "article_with_word": "le recrutement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruitment", + "example_sentence_native": "Le processus de recrutement est très sélectif.", + "example_sentence_english": "The recruitment process is very selective.", + "pos": "noun", + "word_frequency": 2605 + }, + { + "word": "réunir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gather;to reunite", + "example_sentence_native": "Nous allons réunir tous les documents nécessaires.", + "example_sentence_english": "We are going to gather all the necessary documents.", + "pos": "verb", + "word_frequency": 2606 + }, + { + "word": "salope", + "article_with_word": "la salope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bitch;slut (vulgar)", + "example_sentence_native": "Il a été choqué d'entendre quelqu'un utiliser le mot \"salope\".", + "example_sentence_english": "He was shocked to hear someone use the word \"salope\".", + "pos": "noun", + "word_frequency": 2607 + }, + { + "word": "sauter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to jump;to skip", + "example_sentence_native": "Le chien aime sauter par-dessus la clôture.", + "example_sentence_english": "The dog likes to jump over the fence.", + "pos": "verb", + "word_frequency": 2608 + }, + { + "word": "signal", + "article_with_word": "le signal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signal", + "example_sentence_native": "Le signal est faible ici.", + "example_sentence_english": "The signal is weak here.", + "pos": "noun", + "word_frequency": 2609 + }, + { + "word": "toilette", + "article_with_word": "les toilettes", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toilet;restroom", + "example_sentence_native": "Où sont les toilettes, s'il vous plaît?", + "example_sentence_english": "Where is the restroom, please?", + "pos": "noun", + "word_frequency": 2611 + }, + { + "word": "villa", + "article_with_word": "la villa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villa", + "example_sentence_native": "Ils ont loué une belle villa pour les vacances.", + "example_sentence_english": "They rented a beautiful villa for the holidays.", + "pos": "noun", + "word_frequency": 2614 + }, + { + "word": "volant", + "article_with_word": "le volant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steering wheel;shuttlecock", + "example_sentence_native": "Il a tenu fermement le volant de la voiture.", + "example_sentence_english": "He held the car's steering wheel firmly.", + "pos": "noun", + "word_frequency": 2615 + }, + { + "word": "ère", + "article_with_word": "l'ère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "era;age", + "example_sentence_native": "Nous vivons dans une nouvelle ère numérique.", + "example_sentence_english": "We live in a new digital era.", + "pos": "noun", + "word_frequency": 2616 + }, + { + "word": "éditeur", + "article_with_word": "l'éditeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "editor;publisher", + "example_sentence_native": "L'éditeur a accepté son manuscrit.", + "example_sentence_english": "The publisher accepted his manuscript.", + "pos": "noun", + "word_frequency": 2617 + }, + { + "word": "accessible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessible", + "example_sentence_native": "Le bâtiment est accessible aux personnes à mobilité réduite.", + "example_sentence_english": "The building is accessible to people with reduced mobility.", + "pos": "adjective", + "word_frequency": 2618 + }, + { + "word": "age", + "article_with_word": "l'âge", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "age", + "example_sentence_native": "Quel âge avez-vous?", + "example_sentence_english": "How old are you?", + "pos": "noun", + "word_frequency": 2619 + }, + { + "word": "ambassadeur", + "article_with_word": "l'ambassadeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambassador", + "example_sentence_native": "L'ambassadeur a présenté ses lettres de créance.", + "example_sentence_english": "The ambassador presented his credentials.", + "pos": "noun", + "word_frequency": 2621 + }, + { + "word": "autoriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to authorize;to allow", + "example_sentence_native": "Le règlement n'autorise pas les animaux.", + "example_sentence_english": "The regulations do not allow animals.", + "pos": "verb", + "word_frequency": 2622 + }, + { + "word": "carbone", + "article_with_word": "le carbone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbon", + "example_sentence_native": "Le dioxyde de carbone est un gaz à effet de serre.", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "noun", + "word_frequency": 2623 + }, + { + "word": "chantier", + "article_with_word": "le chantier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction site;worksite", + "example_sentence_native": "Le chantier est fermé au public.", + "example_sentence_english": "The construction site is closed to the public.", + "pos": "noun", + "word_frequency": 2624 + }, + { + "word": "chapelle", + "article_with_word": "la chapelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chapel", + "example_sentence_native": "La petite chapelle est très ancienne.", + "example_sentence_english": "The small chapel is very old.", + "pos": "noun", + "word_frequency": 2625 + }, + { + "word": "comparer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compare", + "example_sentence_native": "Il est difficile de comparer ces deux systèmes.", + "example_sentence_english": "It is difficult to compare these two systems.", + "pos": "verb", + "word_frequency": 2626 + }, + { + "word": "connard", + "article_with_word": "le connard", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asshole;jerk (vulgar)", + "example_sentence_native": "Il a traité son adversaire de \"connard\".", + "example_sentence_english": "He called his opponent an \"asshole\".", + "pos": "noun", + "word_frequency": 2627 + }, + { + "word": "conservateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservative", + "example_sentence_native": "Il a des opinions très conservatrices.", + "example_sentence_english": "He has very conservative opinions.", + "pos": "adjective", + "word_frequency": 2628 + }, + { + "word": "descendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go down;to descend", + "example_sentence_native": "Nous allons descendre au rez-de-chaussée.", + "example_sentence_english": "We are going down to the ground floor.", + "pos": "verb", + "word_frequency": 2629 + }, + { + "word": "dû", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "due;owed", + "example_sentence_native": "Le paiement est dû le premier du mois.", + "example_sentence_english": "The payment is due on the first of the month.", + "pos": "adjective", + "word_frequency": 2630 + }, + { + "word": "duo", + "article_with_word": "le duo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duo", + "example_sentence_native": "Le duo a chanté une belle chanson.", + "example_sentence_english": "The duo sang a beautiful song.", + "pos": "noun", + "word_frequency": 2631 + }, + { + "word": "entraîner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to train;to lead to;to cause", + "example_sentence_native": "L'exercice régulier peut entraîner une meilleure santé.", + "example_sentence_english": "Regular exercise can lead to better health.", + "pos": "verb", + "word_frequency": 2632 + }, + { + "word": "estimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to estimate;to consider", + "example_sentence_native": "Nous estimons le coût à environ 500 euros.", + "example_sentence_english": "We estimate the cost at around 500 euros.", + "pos": "verb", + "word_frequency": 2633 + }, + { + "word": "exclusivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusively", + "example_sentence_native": "Ce service est exclusivement réservé aux membres.", + "example_sentence_english": "This service is exclusively reserved for members.", + "pos": "adverb", + "word_frequency": 2634 + }, + { + "word": "familial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "family (adj.);familial", + "example_sentence_native": "C'est un problème familial.", + "example_sentence_english": "It's a family problem.", + "pos": "adjective", + "word_frequency": 2635 + }, + { + "word": "fixer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fix;to set;to stare", + "example_sentence_native": "Nous devons fixer une date pour la réunion.", + "example_sentence_english": "We need to set a date for the meeting.", + "pos": "verb", + "word_frequency": 2637 + }, + { + "word": "flic", + "article_with_word": "le flic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cop (slang)", + "example_sentence_native": "Attention, il y a des flics là-bas.", + "example_sentence_english": "Watch out, there are cops over there.", + "pos": "noun", + "word_frequency": 2638 + }, + { + "word": "forcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to force", + "example_sentence_native": "Il ne faut pas forcer la serrure.", + "example_sentence_english": "You shouldn't force the lock.", + "pos": "verb", + "word_frequency": 2639 + }, + { + "word": "gamin", + "article_with_word": "le gamin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid", + "example_sentence_native": "Le gamin jouait dans le jardin.", + "example_sentence_english": "The kid was playing in the garden.", + "pos": "noun", + "word_frequency": 2640 + }, + { + "word": "global", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "global", + "example_sentence_native": "Nous devons trouver une solution globale.", + "example_sentence_english": "We must find a global solution.", + "pos": "adjective", + "word_frequency": 2641 + }, + { + "word": "horizon", + "article_with_word": "l'horizon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizon", + "example_sentence_native": "Le soleil se couchait à l'horizon.", + "example_sentence_english": "The sun was setting on the horizon.", + "pos": "noun", + "word_frequency": 2643 + }, + { + "word": "hésiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hesitate", + "example_sentence_native": "N'hésitez pas à poser des questions.", + "example_sentence_english": "Don't hesitate to ask questions.", + "pos": "verb", + "word_frequency": 2644 + }, + { + "word": "inspirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inspire", + "example_sentence_native": "Son courage m'a beaucoup inspiré.", + "example_sentence_english": "His courage inspired me a lot.", + "pos": "verb", + "word_frequency": 2645 + }, + { + "word": "intituler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entitle", + "example_sentence_native": "Il a intitulé son livre 'Le Voyage'.", + "example_sentence_english": "He entitled his book 'The Journey'.", + "pos": "verb", + "word_frequency": 2646 + }, + { + "word": "maritime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maritime", + "example_sentence_native": "La région a une longue histoire maritime.", + "example_sentence_english": "The region has a long maritime history.", + "pos": "adjective", + "word_frequency": 2649 + }, + { + "word": "mignon", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cute", + "example_sentence_native": "Ce chaton est vraiment mignon.", + "example_sentence_english": "This kitten is really cute.", + "pos": "adjective", + "word_frequency": 2650 + }, + { + "word": "négociation", + "article_with_word": "la négociation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiation", + "example_sentence_native": "Les négociations ont été longues et difficiles.", + "example_sentence_english": "The negotiations were long and difficult.", + "pos": "noun", + "word_frequency": 2652 + }, + { + "word": "précieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precious", + "example_sentence_native": "Ce bijou est très précieux.", + "example_sentence_english": "This jewel is very precious.", + "pos": "adjective", + "word_frequency": 2653 + }, + { + "word": "quelconque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "any", + "example_sentence_native": "C'était une journée quelconque.", + "example_sentence_english": "It was an ordinary day.", + "pos": "adjective", + "word_frequency": 2654 + }, + { + "word": "rayon", + "article_with_word": "le rayon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shelf", + "example_sentence_native": "Le livre est sur le rayon des romans.", + "example_sentence_english": "The book is on the novel shelf.", + "pos": "noun", + "word_frequency": 2655 + }, + { + "word": "saisir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to seize", + "example_sentence_native": "Il a saisi l'occasion de voyager.", + "example_sentence_english": "He seized the opportunity to travel.", + "pos": "verb", + "word_frequency": 2656 + }, + { + "word": "semblant", + "article_with_word": "le semblant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretense", + "example_sentence_native": "Il a fait semblant de dormir.", + "example_sentence_english": "He pretended to sleep.", + "pos": "noun", + "word_frequency": 2657 + }, + { + "word": "similaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar", + "example_sentence_native": "Leurs opinions sont très similaires.", + "example_sentence_english": "Their opinions are very similar.", + "pos": "adjective", + "word_frequency": 2658 + }, + { + "word": "subir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undergo", + "example_sentence_native": "Ils ont dû subir de lourdes pertes.", + "example_sentence_english": "They had to suffer heavy losses.", + "pos": "verb", + "word_frequency": 2660 + }, + { + "word": "tester", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to test", + "example_sentence_native": "Nous allons tester le nouveau logiciel.", + "example_sentence_english": "We are going to test the new software.", + "pos": "verb", + "word_frequency": 2661 + }, + { + "word": "transmission", + "article_with_word": "la transmission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmission", + "example_sentence_native": "La transmission des données est rapide.", + "example_sentence_english": "Data transmission is fast.", + "pos": "noun", + "word_frequency": 2662 + }, + { + "word": "universitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university", + "example_sentence_native": "Il a une carrière universitaire brillante.", + "example_sentence_english": "He has a brilliant academic career.", + "pos": "adjective", + "word_frequency": 2663 + }, + { + "word": "vertu", + "article_with_word": "la vertu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtue", + "example_sentence_native": "La patience est une grande vertu.", + "example_sentence_english": "Patience is a great virtue.", + "pos": "noun", + "word_frequency": 2664 + }, + { + "word": "évoquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evoke", + "example_sentence_native": "Ce tableau évoque des souvenirs d'enfance.", + "example_sentence_english": "This painting evokes childhood memories.", + "pos": "verb", + "word_frequency": 2666 + }, + { + "word": "adoption", + "article_with_word": "l'adoption", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoption", + "example_sentence_native": "L'adoption de nouvelles lois est nécessaire.", + "example_sentence_english": "The adoption of new laws is necessary.", + "pos": "noun", + "word_frequency": 2667 + }, + { + "word": "assister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to attend", + "example_sentence_native": "J'ai assisté à la réunion hier.", + "example_sentence_english": "I attended the meeting yesterday.", + "pos": "verb", + "word_frequency": 2668 + }, + { + "word": "aveugle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blind", + "example_sentence_native": "Il est aveugle de naissance.", + "example_sentence_english": "He is blind from birth.", + "pos": "adjective", + "word_frequency": 2669 + }, + { + "word": "baisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lower", + "example_sentence_native": "Il a baissé la tête.", + "example_sentence_english": "He lowered his head.", + "pos": "verb", + "word_frequency": 2670 + }, + { + "word": "beurre", + "article_with_word": "le beurre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "butter", + "example_sentence_native": "J'ai besoin de beurre pour le gâteau.", + "example_sentence_english": "I need butter for the cake.", + "pos": "noun", + "word_frequency": 2672 + }, + { + "word": "biais", + "article_with_word": "le biais", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "means", + "example_sentence_native": "Il a obtenu l'information par le biais d'un ami.", + "example_sentence_english": "He got the information through a friend.", + "pos": "noun", + "word_frequency": 2673 + }, + { + "word": "blessure", + "article_with_word": "la blessure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injury", + "example_sentence_native": "Il a soigné sa blessure au genou.", + "example_sentence_english": "He treated his knee injury.", + "pos": "noun", + "word_frequency": 2674 + }, + { + "word": "boucle", + "article_with_word": "la boucle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loop", + "example_sentence_native": "Elle a attaché ses cheveux avec une boucle.", + "example_sentence_english": "She tied her hair with a loop.", + "pos": "noun", + "word_frequency": 2675 + }, + { + "word": "bulletin", + "article_with_word": "le bulletin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report", + "example_sentence_native": "J'ai reçu le bulletin scolaire de mon enfant.", + "example_sentence_english": "I received my child's school report.", + "pos": "noun", + "word_frequency": 2676 + }, + { + "word": "candidature", + "article_with_word": "la candidature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "application", + "example_sentence_native": "Sa candidature a été acceptée.", + "example_sentence_english": "His application was accepted.", + "pos": "noun", + "word_frequency": 2677 + }, + { + "word": "catalogue", + "article_with_word": "le catalogue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catalog", + "example_sentence_native": "J'ai commandé des articles du catalogue.", + "example_sentence_english": "I ordered items from the catalog.", + "pos": "noun", + "word_frequency": 2678 + }, + { + "word": "chant", + "article_with_word": "le chant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singing", + "example_sentence_native": "Le chant des oiseaux est magnifique.", + "example_sentence_english": "The singing of the birds is beautiful.", + "pos": "noun", + "word_frequency": 2679 + }, + { + "word": "coach", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach", + "example_sentence_native": "Le coach a motivé son équipe avant le match.", + "example_sentence_english": "The coach motivated his team before the match.", + "pos": "noun", + "word_frequency": 2680 + }, + { + "word": "consommateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consumer", + "example_sentence_native": "Le consommateur a le droit de choisir ses produits.", + "example_sentence_english": "The consumer has the right to choose their products.", + "pos": "noun", + "word_frequency": 2681 + }, + { + "word": "del", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "LED (Light Emitting Diode)", + "example_sentence_native": "J'ai acheté une lampe avec des DEL pour économiser l'énergie.", + "example_sentence_english": "I bought a lamp with LEDs to save energy.", + "pos": "noun", + "word_frequency": 2682 + }, + { + "word": "dîner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dine;to have dinner", + "example_sentence_native": "Nous allons dîner au restaurant ce soir.", + "example_sentence_english": "We are going to dine at the restaurant tonight.", + "pos": "verb", + "word_frequency": 2684 + }, + { + "word": "excuses", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apologies;excuses", + "example_sentence_native": "Il a présenté ses excuses pour son retard.", + "example_sentence_english": "He offered his apologies for his lateness.", + "pos": "nom", + "word_frequency": 2685 + }, + { + "word": "favoriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to favor;to promote", + "example_sentence_native": "Cette politique vise à favoriser l'emploi des jeunes.", + "example_sentence_english": "This policy aims to promote youth employment.", + "pos": "verb", + "word_frequency": 2686 + }, + { + "word": "fiction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fiction", + "example_sentence_native": "J'aime lire des romans de science-fiction.", + "example_sentence_english": "I like reading science fiction novels.", + "pos": "noun", + "word_frequency": 2687 + }, + { + "word": "financer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to finance", + "example_sentence_native": "L'entreprise a besoin de financer son nouveau projet.", + "example_sentence_english": "The company needs to finance its new project.", + "pos": "verb", + "word_frequency": 2688 + }, + { + "word": "flotte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleet", + "example_sentence_native": "La flotte de véhicules de l'entreprise est très moderne.", + "example_sentence_english": "The company's vehicle fleet is very modern.", + "pos": "noun", + "word_frequency": 2689 + }, + { + "word": "fromage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cheese", + "example_sentence_native": "J'adore le fromage français, surtout le brie.", + "example_sentence_english": "I love French cheese, especially brie.", + "pos": "noun", + "word_frequency": 2690 + }, + { + "word": "guère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardly;scarcely", + "example_sentence_native": "Il n'a guère de temps libre en ce moment.", + "example_sentence_english": "He hardly has any free time at the moment.", + "pos": "adverb", + "word_frequency": 2691 + }, + { + "word": "ile", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "island", + "example_sentence_native": "Nous avons passé nos vacances sur une belle île grecque.", + "example_sentence_english": "We spent our holidays on a beautiful Greek island.", + "pos": "noun", + "word_frequency": 2692 + }, + { + "word": "incapable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incapable;unable", + "example_sentence_native": "Il est incapable de mentir, c'est une personne honnête.", + "example_sentence_english": "He is incapable of lying, he is an honest person.", + "pos": "adjective", + "word_frequency": 2693 + }, + { + "word": "issu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stemming from;resulting from", + "example_sentence_native": "Ce projet est issu d'une collaboration internationale.", + "example_sentence_english": "This project stems from an international collaboration.", + "pos": "adjective", + "word_frequency": 2695 + }, + { + "word": "jusqu'ici", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "until now;so far", + "example_sentence_native": "Tout s'est bien passé jusqu'ici, sans aucun problème.", + "example_sentence_english": "Everything has gone well until now, without any problems.", + "pos": "adverb", + "word_frequency": 2697 + }, + { + "word": "lion", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lion", + "example_sentence_native": "Le lion est souvent appelé le roi de la jungle.", + "example_sentence_english": "The lion is often called the king of the jungle.", + "pos": "noun", + "word_frequency": 2698 + }, + { + "word": "masque", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mask", + "example_sentence_native": "Il portait un masque pour se protéger du virus.", + "example_sentence_english": "He wore a mask to protect himself from the virus.", + "pos": "noun", + "word_frequency": 2699 + }, + { + "word": "massif", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massif (mountain range);block", + "example_sentence_native": "Le Mont Blanc est le plus haut sommet du massif alpin.", + "example_sentence_english": "Mont Blanc is the highest peak in the Alpine massif.", + "pos": "noun", + "word_frequency": 2700 + }, + { + "word": "mentionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mention", + "example_sentence_native": "N'oubliez pas de mentionner votre nom sur le formulaire.", + "example_sentence_english": "Don't forget to mention your name on the form.", + "pos": "verb", + "word_frequency": 2701 + }, + { + "word": "nomination", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nomination;appointment", + "example_sentence_native": "Sa nomination au poste de directeur a été annoncée hier.", + "example_sentence_english": "His appointment to the position of director was announced yesterday.", + "pos": "noun", + "word_frequency": 2703 + }, + { + "word": "observer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to observe;to notice", + "example_sentence_native": "Il aime observer les oiseaux dans son jardin.", + "example_sentence_english": "He likes to observe birds in his garden.", + "pos": "verb", + "word_frequency": 2704 + }, + { + "word": "occupation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occupation;job;pastime", + "example_sentence_native": "Quelle est votre occupation principale dans la vie ?", + "example_sentence_english": "What is your main occupation in life?", + "pos": "noun", + "word_frequency": 2705 + }, + { + "word": "opéra", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "opera", + "example_sentence_native": "Nous avons assisté à un magnifique opéra à l'Opéra Garnier.", + "example_sentence_english": "We attended a magnificent opera at the Opéra Garnier.", + "pos": "noun", + "word_frequency": 2706 + }, + { + "word": "oser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dare", + "example_sentence_native": "Il n'ose pas lui dire la vérité sur ce qui s'est passé.", + "example_sentence_english": "He doesn't dare tell her the truth about what happened.", + "pos": "verb", + "word_frequency": 2707 + }, + { + "word": "partisan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporter;partisan", + "example_sentence_native": "Il est un fervent partisan de la protection de l'environnement.", + "example_sentence_english": "He is a fervent supporter of environmental protection.", + "pos": "noun", + "word_frequency": 2708 + }, + { + "word": "peintre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painter", + "example_sentence_native": "Mon voisin est un peintre talentueux, ses œuvres sont magnifiques.", + "example_sentence_english": "My neighbor is a talented painter, his works are magnificent.", + "pos": "noun", + "word_frequency": 2709 + }, + { + "word": "pot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pot;jar", + "example_sentence_native": "J'ai mis des fleurs dans un grand pot en terre cuite.", + "example_sentence_english": "I put flowers in a large terracotta pot.", + "pos": "noun", + "word_frequency": 2710 + }, + { + "word": "racisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racism", + "example_sentence_native": "Le racisme est un problème grave qui doit être combattu.", + "example_sentence_english": "Racism is a serious problem that must be fought.", + "pos": "noun", + "word_frequency": 2711 + }, + { + "word": "remercier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to thank", + "example_sentence_native": "Je voudrais vous remercier sincèrement pour votre aide.", + "example_sentence_english": "I would like to sincerely thank you for your help.", + "pos": "verb", + "word_frequency": 2712 + }, + { + "word": "répéter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to repeat", + "example_sentence_native": "Pouvez-vous répéter la question, s'il vous plaît ?", + "example_sentence_english": "Can you repeat the question, please?", + "pos": "verb", + "word_frequency": 2713 + }, + { + "word": "sage", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wise;well-behaved", + "example_sentence_native": "C'est une décision très sage de sa part.", + "example_sentence_english": "It's a very wise decision on his part.", + "pos": "adjective", + "word_frequency": 2714 + }, + { + "word": "session", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "session", + "example_sentence_native": "La session d'examens commence la semaine prochaine.", + "example_sentence_english": "The exam session starts next week.", + "pos": "noun", + "word_frequency": 2715 + }, + { + "word": "souffrance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffering", + "example_sentence_native": "La souffrance peut parfois mener à une grande force intérieure.", + "example_sentence_english": "Suffering can sometimes lead to great inner strength.", + "pos": "noun", + "word_frequency": 2717 + }, + { + "word": "tarif", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "price;rate;tariff", + "example_sentence_native": "Quel est le tarif pour l'entrée au musée ?", + "example_sentence_english": "What is the price for museum admission?", + "pos": "noun", + "word_frequency": 2718 + }, + { + "word": "tempête", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "storm", + "example_sentence_native": "Une forte tempête est annoncée pour demain après-midi.", + "example_sentence_english": "A strong storm is announced for tomorrow afternoon.", + "pos": "noun", + "word_frequency": 2719 + }, + { + "word": "tennis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tennis", + "example_sentence_native": "Il joue au tennis tous les samedis.", + "example_sentence_english": "He plays tennis every Saturday.", + "pos": "noun", + "word_frequency": 2720 + }, + { + "word": "violent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violent", + "example_sentence_native": "Le vent était très violent hier soir.", + "example_sentence_english": "The wind was very violent last night.", + "pos": "adjective", + "word_frequency": 2721 + }, + { + "word": "abbé", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbot", + "example_sentence_native": "L'abbé a prononcé un sermon émouvant.", + "example_sentence_english": "The abbot delivered a moving sermon.", + "pos": "noun", + "word_frequency": 2722 + }, + { + "word": "acier", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steel", + "example_sentence_native": "Ce pont est construit en acier.", + "example_sentence_english": "This bridge is built of steel.", + "pos": "noun", + "word_frequency": 2723 + }, + { + "word": "adapter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adapt", + "example_sentence_native": "Il faut s'adapter aux nouvelles règles.", + "example_sentence_english": "One must adapt to the new rules.", + "pos": "verb", + "word_frequency": 2724 + }, + { + "word": "allée", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;alleyway", + "example_sentence_native": "Nous avons marché le long de l'allée bordée d'arbres.", + "example_sentence_english": "We walked along the tree-lined path.", + "pos": "noun", + "word_frequency": 2725 + }, + { + "word": "argument", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "argument", + "example_sentence_native": "Son argument était très convaincant.", + "example_sentence_english": "His argument was very convincing.", + "pos": "noun", + "word_frequency": 2727 + }, + { + "word": "automatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatic", + "example_sentence_native": "La porte est automatique.", + "example_sentence_english": "The door is automatic.", + "pos": "adjective", + "word_frequency": 2728 + }, + { + "word": "cardinal", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardinal", + "example_sentence_native": "Le cardinal a assisté à la messe.", + "example_sentence_english": "The cardinal attended the mass.", + "pos": "noun", + "word_frequency": 2729 + }, + { + "word": "communiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to communicate", + "example_sentence_native": "Il est important de bien communiquer.", + "example_sentence_english": "It is important to communicate well.", + "pos": "verb", + "word_frequency": 2730 + }, + { + "word": "consulter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consult", + "example_sentence_native": "Vous devriez consulter un médecin.", + "example_sentence_english": "You should consult a doctor.", + "pos": "verb", + "word_frequency": 2731 + }, + { + "word": "définir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to define", + "example_sentence_native": "Pouvez-vous définir ce mot ?", + "example_sentence_english": "Can you define this word?", + "pos": "verb", + "word_frequency": 2732 + }, + { + "word": "enseignant", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teacher", + "example_sentence_native": "Mon enseignant est très patient.", + "example_sentence_english": "My teacher is very patient.", + "pos": "noun", + "word_frequency": 2733 + }, + { + "word": "exemplaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemplary", + "example_sentence_native": "Son comportement est exemplaire.", + "example_sentence_english": "His behavior is exemplary.", + "pos": "adjective", + "word_frequency": 2734 + }, + { + "word": "fantastique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fantastic", + "example_sentence_native": "Ce film est fantastique !", + "example_sentence_english": "This movie is fantastic!", + "pos": "adjective", + "word_frequency": 2735 + }, + { + "word": "game", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "game", + "example_sentence_native": "J'ai acheté un nouveau jeu vidéo, c'est un super game.", + "example_sentence_english": "I bought a new video game, it's a great game.", + "pos": "noun", + "word_frequency": 2736 + }, + { + "word": "géant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giant", + "example_sentence_native": "Il a vu un arbre géant dans la forêt.", + "example_sentence_english": "He saw a giant tree in the forest.", + "pos": "adjective", + "word_frequency": 2737 + }, + { + "word": "islamique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamic", + "example_sentence_native": "L'art islamique est très riche.", + "example_sentence_english": "Islamic art is very rich.", + "pos": "adjective", + "word_frequency": 2738 + }, + { + "word": "légitime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legitimate", + "example_sentence_native": "Sa demande est tout à fait légitime.", + "example_sentence_english": "His request is entirely legitimate.", + "pos": "adjective", + "word_frequency": 2739 + }, + { + "word": "mensonge", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lie", + "example_sentence_native": "Il a dit un mensonge.", + "example_sentence_english": "He told a lie.", + "pos": "noun", + "word_frequency": 2740 + }, + { + "word": "out", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "out (of fashion;order)", + "example_sentence_native": "Cette mode est complètement out.", + "example_sentence_english": "This fashion is completely out.", + "pos": "adjective", + "word_frequency": 2744 + }, + { + "word": "précédemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previously", + "example_sentence_native": "Comme mentionné précédemment, le projet est en cours.", + "example_sentence_english": "As mentioned previously, the project is underway.", + "pos": "adverb", + "word_frequency": 2745 + }, + { + "word": "prévention", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prevention", + "example_sentence_native": "La prévention est essentielle pour la santé.", + "example_sentence_english": "Prevention is essential for health.", + "pos": "noun", + "word_frequency": 2746 + }, + { + "word": "reportage", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report;documentary", + "example_sentence_native": "J'ai regardé un reportage intéressant à la télévision.", + "example_sentence_english": "I watched an interesting report on television.", + "pos": "noun", + "word_frequency": 2748 + }, + { + "word": "solaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solar", + "example_sentence_native": "Nous utilisons des panneaux solaires pour l'électricité.", + "example_sentence_english": "We use solar panels for electricity.", + "pos": "adjective", + "word_frequency": 2750 + }, + { + "word": "sénateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senator", + "example_sentence_native": "Le sénateur a voté la nouvelle loi.", + "example_sentence_english": "The senator voted for the new law.", + "pos": "noun", + "word_frequency": 2751 + }, + { + "word": "tapis", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rug;carpet", + "example_sentence_native": "Il y a un beau tapis dans le salon.", + "example_sentence_english": "There is a beautiful rug in the living room.", + "pos": "noun", + "word_frequency": 2752 + }, + { + "word": "viol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rape", + "example_sentence_native": "Le viol est un crime grave.", + "example_sentence_english": "Rape is a serious crime.", + "pos": "noun", + "word_frequency": 2753 + }, + { + "word": "affronter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confront;to face", + "example_sentence_native": "Il doit affronter ses peurs.", + "example_sentence_english": "He must face his fears.", + "pos": "verb", + "word_frequency": 2754 + }, + { + "word": "aile", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wing", + "example_sentence_native": "L'oiseau a une aile cassée.", + "example_sentence_english": "The bird has a broken wing.", + "pos": "noun", + "word_frequency": 2755 + }, + { + "word": "arbitre", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "referee;arbiter", + "example_sentence_native": "L'arbitre a sifflé la fin du match.", + "example_sentence_english": "The referee blew the whistle for the end of the match.", + "pos": "noun", + "word_frequency": 2757 + }, + { + "word": "banlieue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suburb", + "example_sentence_native": "Il habite en banlieue parisienne.", + "example_sentence_english": "He lives in the Parisian suburbs.", + "pos": "noun", + "word_frequency": 2759 + }, + { + "word": "bonus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bonus", + "example_sentence_native": "Il a reçu un bonus pour son excellent travail.", + "example_sentence_english": "He received a bonus for his excellent work.", + "pos": "noun", + "word_frequency": 2761 + }, + { + "word": "bouffe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food (slang)", + "example_sentence_native": "Cette bouffe est délicieuse !", + "example_sentence_english": "This food is delicious!", + "pos": "noun", + "word_frequency": 2762 + }, + { + "word": "camion", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truck", + "example_sentence_native": "Le camion transportait des marchandises lourdes.", + "example_sentence_english": "The truck was carrying heavy goods.", + "pos": "noun", + "word_frequency": 2763 + }, + { + "word": "ceinture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belt", + "example_sentence_native": "N'oubliez pas d'attacher votre ceinture de sécurité.", + "example_sentence_english": "Don't forget to fasten your seatbelt.", + "pos": "noun", + "word_frequency": 2764 + }, + { + "word": "charbon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coal", + "example_sentence_native": "Le charbon est une source d'énergie fossile.", + "example_sentence_english": "Coal is a fossil energy source.", + "pos": "noun", + "word_frequency": 2766 + }, + { + "word": "décéder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pass away", + "example_sentence_native": "Son grand-père est décédé l'année dernière.", + "example_sentence_english": "His grandfather passed away last year.", + "pos": "verb", + "word_frequency": 2769 + }, + { + "word": "déplacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move;to displace", + "example_sentence_native": "Il faut déplacer les meubles pour nettoyer.", + "example_sentence_english": "We need to move the furniture to clean.", + "pos": "verb", + "word_frequency": 2770 + }, + { + "word": "déposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deposit;to drop off", + "example_sentence_native": "Je vais déposer les enfants à l'école.", + "example_sentence_english": "I'm going to drop off the children at school.", + "pos": "verb", + "word_frequency": 2771 + }, + { + "word": "environs", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surroundings;vicinity", + "example_sentence_native": "Les environs du lac sont magnifiques.", + "example_sentence_english": "The surroundings of the lake are magnificent.", + "pos": "noun", + "word_frequency": 2772 + }, + { + "word": "express", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "express;fast", + "example_sentence_native": "C'est un service de livraison express.", + "example_sentence_english": "It's an express delivery service.", + "pos": "adjective", + "word_frequency": 2773 + }, + { + "word": "flux", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow;stream", + "example_sentence_native": "Le flux de données est très rapide.", + "example_sentence_english": "The data flow is very fast.", + "pos": "noun", + "word_frequency": 2774 + }, + { + "word": "fréquence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequency", + "example_sentence_native": "La fréquence des bus a augmenté.", + "example_sentence_english": "The bus frequency has increased.", + "pos": "noun", + "word_frequency": 2775 + }, + { + "word": "ivoire", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ivory", + "example_sentence_native": "L'ivoire est une matière précieuse.", + "example_sentence_english": "Ivory is a precious material.", + "pos": "noun", + "word_frequency": 2776 + }, + { + "word": "législatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislative", + "example_sentence_native": "Le pouvoir législatif est exercé par le Parlement.", + "example_sentence_english": "Legislative power is exercised by Parliament.", + "pos": "adjective", + "word_frequency": 2777 + }, + { + "word": "légume", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "vegetable", + "example_sentence_native": "Mangez vos légumes pour être en bonne santé.", + "example_sentence_english": "Eat your vegetables to be healthy.", + "pos": "noun", + "word_frequency": 2778 + }, + { + "word": "mineur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minor (person)", + "example_sentence_native": "Un mineur ne peut pas acheter d'alcool.", + "example_sentence_english": "A minor cannot buy alcohol.", + "pos": "noun", + "word_frequency": 2779 + }, + { + "word": "minuit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "midnight", + "example_sentence_native": "Le train part à minuit.", + "example_sentence_english": "The train leaves at midnight.", + "pos": "noun", + "word_frequency": 2780 + }, + { + "word": "nationalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nationality", + "example_sentence_native": "Quelle est votre nationalité ?", + "example_sentence_english": "What is your nationality?", + "pos": "noun", + "word_frequency": 2781 + }, + { + "word": "nourrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to feed", + "example_sentence_native": "Il faut nourrir les animaux tous les jours.", + "example_sentence_english": "You have to feed the animals every day.", + "pos": "verb", + "word_frequency": 2782 + }, + { + "word": "progressivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progressively;gradually", + "example_sentence_native": "La situation s'améliore progressivement.", + "example_sentence_english": "The situation is gradually improving.", + "pos": "adverb", + "word_frequency": 2783 + }, + { + "word": "relais", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relay;handover", + "example_sentence_native": "Ils ont passé le relais à la prochaine équipe.", + "example_sentence_english": "They handed over to the next team.", + "pos": "noun", + "word_frequency": 2784 + }, + { + "word": "rond", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "round", + "example_sentence_native": "La table est ronde.", + "example_sentence_english": "The table is round.", + "pos": "adjective", + "word_frequency": 2785 + }, + { + "word": "succession", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "succession;inheritance", + "example_sentence_native": "Il y a eu une succession d'événements étranges.", + "example_sentence_english": "There was a succession of strange events.", + "pos": "noun", + "word_frequency": 2786 + }, + { + "word": "vaisseau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vessel;ship", + "example_sentence_native": "Le vaisseau spatial a atterri sur la lune.", + "example_sentence_english": "The spaceship landed on the moon.", + "pos": "noun", + "word_frequency": 2788 + }, + { + "word": "visiblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visibly;apparently", + "example_sentence_native": "Il était visiblement fatigué après le long voyage.", + "example_sentence_english": "He was visibly tired after the long journey.", + "pos": "adverb", + "word_frequency": 2790 + }, + { + "word": "volontaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voluntary;volunteer", + "example_sentence_native": "Elle est une bénévole très volontaire.", + "example_sentence_english": "She is a very willing volunteer.", + "pos": "adjective", + "word_frequency": 2791 + }, + { + "word": "voyager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to travel", + "example_sentence_native": "J'aime voyager à travers le monde.", + "example_sentence_english": "I like to travel around the world.", + "pos": "verb", + "word_frequency": 2792 + }, + { + "word": "administratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrative", + "example_sentence_native": "Les tâches administratives peuvent être longues.", + "example_sentence_english": "Administrative tasks can be long.", + "pos": "adjective", + "word_frequency": 2794 + }, + { + "word": "admettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admit", + "example_sentence_native": "Il a dû admettre son erreur.", + "example_sentence_english": "He had to admit his mistake.", + "pos": "verb", + "word_frequency": 2795 + }, + { + "word": "argentine", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Argentine", + "example_sentence_native": "Elle est de nationalité argentine.", + "example_sentence_english": "She is of Argentine nationality.", + "pos": "adjective", + "word_frequency": 2796 + }, + { + "word": "bijou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jewel;piece of jewelry", + "example_sentence_native": "Elle porte un beau bijou.", + "example_sentence_english": "She is wearing a beautiful piece of jewelry.", + "pos": "noun", + "word_frequency": 2798 + }, + { + "word": "boulevard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boulevard", + "example_sentence_native": "Nous nous sommes promenés sur le boulevard.", + "example_sentence_english": "We walked along the boulevard.", + "pos": "noun", + "word_frequency": 2799 + }, + { + "word": "bénéficier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to benefit from", + "example_sentence_native": "Il a pu bénéficier d'une aide financière.", + "example_sentence_english": "He was able to benefit from financial aid.", + "pos": "verb", + "word_frequency": 2800 + }, + { + "word": "casque", + "article_with_word": "le casque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helmet", + "example_sentence_native": "Il porte un casque de vélo.", + "example_sentence_english": "He wears a bicycle helmet.", + "pos": "noun", + "word_frequency": 2801 + }, + { + "word": "chaise", + "article_with_word": "la chaise", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chair", + "example_sentence_native": "Asseyez-vous sur la chaise.", + "example_sentence_english": "Sit on the chair.", + "pos": "noun", + "word_frequency": 2802 + }, + { + "word": "commandement", + "article_with_word": "le commandement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "command;commandment", + "example_sentence_native": "Il a donné un commandement clair.", + "example_sentence_english": "He gave a clear command.", + "pos": "noun", + "word_frequency": 2803 + }, + { + "word": "conducteur", + "article_with_word": "le conducteur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driver", + "example_sentence_native": "Le conducteur a arrêté la voiture.", + "example_sentence_english": "The driver stopped the car.", + "pos": "noun", + "word_frequency": 2804 + }, + { + "word": "conservation", + "article_with_word": "la conservation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conservation;preservation", + "example_sentence_native": "La conservation de l'eau est importante.", + "example_sentence_english": "Water conservation is important.", + "pos": "noun", + "word_frequency": 2805 + }, + { + "word": "couille", + "article_with_word": "la couille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testicle (vulgar: ball)", + "example_sentence_native": "Il a eu les couilles de dire la vérité.", + "example_sentence_english": "He had the balls to tell the truth.", + "pos": "noun", + "word_frequency": 2806 + }, + { + "word": "douceur", + "article_with_word": "la douceur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "softness;sweetness;gentleness", + "example_sentence_native": "Elle parle avec douceur.", + "example_sentence_english": "She speaks with gentleness.", + "pos": "noun", + "word_frequency": 2807 + }, + { + "word": "décennie", + "article_with_word": "la décennie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decade", + "example_sentence_native": "La dernière décennie a été riche en événements.", + "example_sentence_english": "The last decade has been rich in events.", + "pos": "noun", + "word_frequency": 2808 + }, + { + "word": "emplacement", + "article_with_word": "l'emplacement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "location;site", + "example_sentence_native": "C'est un bon emplacement pour le nouveau magasin.", + "example_sentence_english": "It's a good location for the new store.", + "pos": "noun", + "word_frequency": 2809 + }, + { + "word": "exact", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exact;precise", + "example_sentence_native": "La réponse est exacte.", + "example_sentence_english": "The answer is exact.", + "pos": "adjective", + "word_frequency": 2810 + }, + { + "word": "exécutif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executive", + "example_sentence_native": "Le pouvoir exécutif est important.", + "example_sentence_english": "The executive power is important.", + "pos": "adjective", + "word_frequency": 2811 + }, + { + "word": "four", + "article_with_word": "le four", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oven", + "example_sentence_native": "Mettez le gâteau dans le four.", + "example_sentence_english": "Put the cake in the oven.", + "pos": "noun", + "word_frequency": 2812 + }, + { + "word": "francophone", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "French-speaking", + "example_sentence_native": "Il vit dans un pays francophone.", + "example_sentence_english": "He lives in a French-speaking country.", + "pos": "adjective", + "word_frequency": 2813 + }, + { + "word": "inspiration", + "article_with_word": "l'inspiration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspiration", + "example_sentence_native": "Il a trouvé l'inspiration dans la nature.", + "example_sentence_english": "He found inspiration in nature.", + "pos": "noun", + "word_frequency": 2816 + }, + { + "word": "livrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to deliver", + "example_sentence_native": "Le facteur va livrer le colis.", + "example_sentence_english": "The postman will deliver the package.", + "pos": "verb", + "word_frequency": 2818 + }, + { + "word": "métropole", + "article_with_word": "la métropole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolis;mainland (of France)", + "example_sentence_native": "Paris est la plus grande métropole de France.", + "example_sentence_english": "Paris is the largest metropolis in France.", + "pos": "noun", + "word_frequency": 2819 + }, + { + "word": "observation", + "article_with_word": "l'observation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observation", + "example_sentence_native": "L'observation des étoiles est fascinante.", + "example_sentence_english": "Star observation is fascinating.", + "pos": "noun", + "word_frequency": 2821 + }, + { + "word": "onde", + "article_with_word": "l'onde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wave", + "example_sentence_native": "Les ondes sonores se propagent dans l'air.", + "example_sentence_english": "Sound waves propagate in the air.", + "pos": "noun", + "word_frequency": 2822 + }, + { + "word": "pacifique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peaceful;pacific", + "example_sentence_native": "C'est un pays pacifique.", + "example_sentence_english": "It's a peaceful country.", + "pos": "adjective", + "word_frequency": 2823 + }, + { + "word": "patience", + "article_with_word": "la patience", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "patience", + "example_sentence_native": "Il faut de la patience pour apprendre une langue.", + "example_sentence_english": "You need patience to learn a language.", + "pos": "noun", + "word_frequency": 2825 + }, + { + "word": "piano", + "article_with_word": "le piano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "piano", + "example_sentence_native": "Elle joue du piano.", + "example_sentence_english": "She plays the piano.", + "pos": "noun", + "word_frequency": 2826 + }, + { + "word": "quête", + "article_with_word": "la quête", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quest;search", + "example_sentence_native": "Il est parti en quête de la vérité.", + "example_sentence_english": "He went on a quest for the truth.", + "pos": "noun", + "word_frequency": 2828 + }, + { + "word": "riz", + "article_with_word": "le riz", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rice", + "example_sentence_native": "J'aime manger du riz.", + "example_sentence_english": "I like to eat rice.", + "pos": "noun", + "word_frequency": 2829 + }, + { + "word": "récompense", + "article_with_word": "la récompense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reward", + "example_sentence_native": "Il a reçu une récompense pour son travail.", + "example_sentence_english": "He received a reward for his work.", + "pos": "noun", + "word_frequency": 2830 + }, + { + "word": "sauce", + "article_with_word": "la sauce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauce", + "example_sentence_native": "Cette sauce est délicieuse.", + "example_sentence_english": "This sauce is delicious.", + "pos": "noun", + "word_frequency": 2831 + }, + { + "word": "scrutin", + "article_with_word": "le scrutin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ballot;vote;poll", + "example_sentence_native": "Le scrutin aura lieu dimanche.", + "example_sentence_english": "The vote will take place on Sunday.", + "pos": "noun", + "word_frequency": 2832 + }, + { + "word": "stable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable", + "example_sentence_native": "La situation est stable.", + "example_sentence_english": "The situation is stable.", + "pos": "adjective", + "word_frequency": 2834 + }, + { + "word": "tabac", + "article_with_word": "le tabac", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tobacco;tobacconist's", + "example_sentence_native": "Il a acheté des cigarettes au tabac.", + "example_sentence_english": "He bought cigarettes at the tobacconist's.", + "pos": "noun", + "word_frequency": 2835 + }, + { + "word": "tissu", + "article_with_word": "le tissu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabric;tissue", + "example_sentence_native": "Ce tissu est doux.", + "example_sentence_english": "This fabric is soft.", + "pos": "noun", + "word_frequency": 2837 + }, + { + "word": "trône", + "article_with_word": "le trône", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "throne", + "example_sentence_native": "Le roi s'est assis sur le trône.", + "example_sentence_english": "The king sat on the throne.", + "pos": "noun", + "word_frequency": 2838 + }, + { + "word": "uniforme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uniform", + "example_sentence_native": "La couleur de leurs vêtements est uniforme.", + "example_sentence_english": "The color of their clothes is uniform.", + "pos": "adjective", + "word_frequency": 2839 + }, + { + "word": "variété", + "article_with_word": "la variété", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variety", + "example_sentence_native": "Il y a une grande variété de fruits ici.", + "example_sentence_english": "There is a great variety of fruits here.", + "pos": "noun", + "word_frequency": 2840 + }, + { + "word": "énergétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetic;energy-related", + "example_sentence_native": "La transition énergétique est un défi majeur.", + "example_sentence_english": "The energy transition is a major challenge.", + "pos": "adjective", + "word_frequency": 2843 + }, + { + "word": "éthique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethical", + "example_sentence_native": "C'est une question éthique complexe.", + "example_sentence_english": "It's a complex ethical question.", + "pos": "adjective", + "word_frequency": 2844 + }, + { + "word": "alternatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternative", + "example_sentence_native": "Nous cherchons des solutions alternatives.", + "example_sentence_english": "We are looking for alternative solutions.", + "pos": "adjective", + "word_frequency": 2845 + }, + { + "word": "baie", + "article_with_word": "la baie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "berry;bay", + "example_sentence_native": "Les baies sont délicieuses en été.", + "example_sentence_english": "Berries are delicious in summer.", + "pos": "noun", + "word_frequency": 2847 + }, + { + "word": "basket", + "article_with_word": "une basket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sneaker;basketball (sport)", + "example_sentence_native": "J'ai acheté une nouvelle paire de baskets.", + "example_sentence_english": "I bought a new pair of sneakers.", + "pos": "noun", + "word_frequency": 2848 + }, + { + "word": "carton", + "article_with_word": "le carton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardboard;box", + "example_sentence_native": "J'ai mis mes livres dans un carton.", + "example_sentence_english": "I put my books in a box.", + "pos": "noun", + "word_frequency": 2852 + }, + { + "word": "chauffeur", + "article_with_word": "le chauffeur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driver", + "example_sentence_native": "Le chauffeur de taxi est arrivé.", + "example_sentence_english": "The taxi driver has arrived.", + "pos": "noun", + "word_frequency": 2853 + }, + { + "word": "chimie", + "article_with_word": "la chimie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemistry", + "example_sentence_native": "J'étudie la chimie à l'université.", + "example_sentence_english": "I study chemistry at university.", + "pos": "noun", + "word_frequency": 2854 + }, + { + "word": "cinquante", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifty", + "example_sentence_native": "Il y a cinquante personnes dans la salle.", + "example_sentence_english": "There are fifty people in the room.", + "pos": "numeral", + "word_frequency": 2855 + }, + { + "word": "comté", + "article_with_word": "le comté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "county;Comté (cheese)", + "example_sentence_native": "Ce fromage est un Comté.", + "example_sentence_english": "This cheese is a Comté.", + "pos": "noun", + "word_frequency": 2856 + }, + { + "word": "correctement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "correctly", + "example_sentence_native": "Il faut écrire le mot correctement.", + "example_sentence_english": "You must write the word correctly.", + "pos": "adverb", + "word_frequency": 2858 + }, + { + "word": "diminuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decrease;to diminish", + "example_sentence_native": "Les prix ont commencé à diminuer.", + "example_sentence_english": "Prices have started to decrease.", + "pos": "verb", + "word_frequency": 2859 + }, + { + "word": "distinction", + "article_with_word": "la distinction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinction", + "example_sentence_native": "Il est important de faire la distinction entre les deux.", + "example_sentence_english": "It is important to make the distinction between the two.", + "pos": "noun", + "word_frequency": 2860 + }, + { + "word": "dégât", + "article_with_word": "le dégât", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damage", + "example_sentence_native": "Les inondations ont causé beaucoup de dégâts.", + "example_sentence_english": "The floods caused a lot of damage.", + "pos": "noun", + "word_frequency": 2861 + }, + { + "word": "excellence", + "article_with_word": "l'excellence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellence", + "example_sentence_native": "Il vise l'excellence dans tout ce qu'il fait.", + "example_sentence_english": "He aims for excellence in everything he does.", + "pos": "noun", + "word_frequency": 2862 + }, + { + "word": "exceptionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceptional", + "example_sentence_native": "C'était une performance exceptionnelle.", + "example_sentence_english": "It was an exceptional performance.", + "pos": "adjective", + "word_frequency": 2863 + }, + { + "word": "exercer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exercise;to practice;to exert", + "example_sentence_native": "Il doit exercer son droit de vote.", + "example_sentence_english": "He must exercise his right to vote.", + "pos": "verb", + "word_frequency": 2864 + }, + { + "word": "golf", + "article_with_word": "le golf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "golf", + "example_sentence_native": "Il aime jouer au golf le week-end.", + "example_sentence_english": "He likes to play golf on weekends.", + "pos": "noun", + "word_frequency": 2865 + }, + { + "word": "habituellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usually;habitually", + "example_sentence_native": "Il se lève habituellement tôt.", + "example_sentence_english": "He usually gets up early.", + "pos": "adverb", + "word_frequency": 2867 + }, + { + "word": "incident", + "article_with_word": "l'incident", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incident", + "example_sentence_native": "Il y a eu un petit incident.", + "example_sentence_english": "There was a small incident.", + "pos": "noun", + "word_frequency": 2869 + }, + { + "word": "lentement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slowly", + "example_sentence_native": "Il marche lentement.", + "example_sentence_english": "He walks slowly.", + "pos": "adverb", + "word_frequency": 2873 + }, + { + "word": "littéralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literally", + "example_sentence_native": "Il a pris ses mots littéralement.", + "example_sentence_english": "He took his words literally.", + "pos": "adverb", + "word_frequency": 2874 + }, + { + "word": "légal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legal", + "example_sentence_native": "C'est une procédure légale.", + "example_sentence_english": "It's a legal procedure.", + "pos": "adjective", + "word_frequency": 2875 + }, + { + "word": "municipalité", + "article_with_word": "la municipalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipality", + "example_sentence_native": "La municipalité a décidé de construire un nouveau parc.", + "example_sentence_english": "The municipality decided to build a new park.", + "pos": "noun", + "word_frequency": 2878 + }, + { + "word": "navigation", + "article_with_word": "la navigation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navigation", + "example_sentence_native": "La navigation sur internet est très rapide.", + "example_sentence_english": "Internet navigation is very fast.", + "pos": "noun", + "word_frequency": 2879 + }, + { + "word": "obliger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to oblige;to force", + "example_sentence_native": "La loi nous oblige à porter une ceinture de sécurité.", + "example_sentence_english": "The law obliges us to wear a seatbelt.", + "pos": "verb", + "word_frequency": 2880 + }, + { + "word": "occident", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the West", + "example_sentence_native": "Les cultures de l'Occident sont diverses.", + "example_sentence_english": "The cultures of the West are diverse.", + "pos": "noun", + "word_frequency": 2881 + }, + { + "word": "opportunité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opportunity", + "example_sentence_native": "C'est une excellente opportunité d'apprendre.", + "example_sentence_english": "This is an excellent opportunity to learn.", + "pos": "noun", + "word_frequency": 2883 + }, + { + "word": "parvenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reach;to achieve", + "example_sentence_native": "Il a réussi à parvenir à ses objectifs.", + "example_sentence_english": "He managed to achieve his goals.", + "pos": "verb", + "word_frequency": 2884 + }, + { + "word": "passager", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passenger", + "example_sentence_native": "Le train était plein de passagers.", + "example_sentence_english": "The train was full of passengers.", + "pos": "noun", + "word_frequency": 2885 + }, + { + "word": "photographe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photographer", + "example_sentence_native": "Elle est une photographe talentueuse.", + "example_sentence_english": "She is a talented photographer.", + "pos": "noun", + "word_frequency": 2886 + }, + { + "word": "plaindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pity;to complain (se plaindre)", + "example_sentence_native": "Il ne faut pas se plaindre sans agir.", + "example_sentence_english": "One should not complain without acting.", + "pos": "verb", + "word_frequency": 2887 + }, + { + "word": "poitrine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chest;breast", + "example_sentence_native": "Il a ressenti une douleur à la poitrine.", + "example_sentence_english": "He felt a pain in his chest.", + "pos": "noun", + "word_frequency": 2888 + }, + { + "word": "poudre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powder", + "example_sentence_native": "Elle a mis de la poudre sur son visage.", + "example_sentence_english": "She put powder on her face.", + "pos": "noun", + "word_frequency": 2889 + }, + { + "word": "prétexte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretext;excuse", + "example_sentence_native": "Il a utilisé un faux prétexte pour partir.", + "example_sentence_english": "He used a false pretext to leave.", + "pos": "noun", + "word_frequency": 2890 + }, + { + "word": "qualifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to qualify;to describe", + "example_sentence_native": "Comment qualifieriez-vous cette situation?", + "example_sentence_english": "How would you describe this situation?", + "pos": "verb", + "word_frequency": 2891 + }, + { + "word": "raisonnable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reasonable", + "example_sentence_native": "C'est une proposition raisonnable.", + "example_sentence_english": "It's a reasonable proposal.", + "pos": "adjective", + "word_frequency": 2892 + }, + { + "word": "rassemblement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathering;assembly", + "example_sentence_native": "Un grand rassemblement a eu lieu dans la ville.", + "example_sentence_english": "A large gathering took place in the city.", + "pos": "noun", + "word_frequency": 2893 + }, + { + "word": "recueil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collection (of poems;texts)", + "example_sentence_native": "Elle a publié un recueil de poèmes.", + "example_sentence_english": "She published a collection of poems.", + "pos": "noun", + "word_frequency": 2894 + }, + { + "word": "remarquable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remarkable;outstanding", + "example_sentence_native": "Son travail est vraiment remarquable.", + "example_sentence_english": "His work is truly remarkable.", + "pos": "adjective", + "word_frequency": 2895 + }, + { + "word": "respectivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectively", + "example_sentence_native": "Les prix sont 10 et 15 euros respectivement.", + "example_sentence_english": "The prices are 10 and 15 euros respectively.", + "pos": "adverb", + "word_frequency": 2896 + }, + { + "word": "ressort", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spring (mechanical);jurisdiction", + "example_sentence_native": "Ce problème relève de son ressort.", + "example_sentence_english": "This problem falls within his jurisdiction.", + "pos": "noun", + "word_frequency": 2897 + }, + { + "word": "rive", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank (of a river);shore", + "example_sentence_native": "Nous nous sommes promenés le long de la rive.", + "example_sentence_english": "We walked along the bank.", + "pos": "noun", + "word_frequency": 2898 + }, + { + "word": "réagir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to react", + "example_sentence_native": "Comment allez-vous réagir à cette nouvelle?", + "example_sentence_english": "How will you react to this news?", + "pos": "verb", + "word_frequency": 2899 + }, + { + "word": "stupide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stupid", + "example_sentence_native": "C'est une idée stupide.", + "example_sentence_english": "It's a stupid idea.", + "pos": "adjective", + "word_frequency": 2902 + }, + { + "word": "symptôme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symptom", + "example_sentence_native": "La fièvre est un symptôme courant.", + "example_sentence_english": "Fever is a common symptom.", + "pos": "noun", + "word_frequency": 2903 + }, + { + "word": "tape", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slap;pat", + "example_sentence_native": "Il lui a donné une tape sur l'épaule.", + "example_sentence_english": "He gave him a pat on the shoulder.", + "pos": "noun", + "word_frequency": 2904 + }, + { + "word": "touriste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tourist", + "example_sentence_native": "Les touristes visitent la Tour Eiffel.", + "example_sentence_english": "Tourists visit the Eiffel Tower.", + "pos": "noun", + "word_frequency": 2905 + }, + { + "word": "traverser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cross", + "example_sentence_native": "Il faut traverser la rue.", + "example_sentence_english": "You have to cross the street.", + "pos": "verb", + "word_frequency": 2906 + }, + { + "word": "urbain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban", + "example_sentence_native": "La vie urbaine est très différente de la vie rurale.", + "example_sentence_english": "Urban life is very different from rural life.", + "pos": "adjective", + "word_frequency": 2907 + }, + { + "word": "âgé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "old (referring to age)", + "example_sentence_native": "Mon grand-père est très âgé.", + "example_sentence_english": "My grandfather is very old.", + "pos": "adjective", + "word_frequency": 2908 + }, + { + "word": "électoral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electoral", + "example_sentence_native": "La campagne électorale a commencé.", + "example_sentence_english": "The electoral campaign has begun.", + "pos": "adjective", + "word_frequency": 2909 + }, + { + "word": "acide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acidic;sour", + "example_sentence_native": "Le citron a un goût acide.", + "example_sentence_english": "Lemon has a sour taste.", + "pos": "adjective", + "word_frequency": 2910 + }, + { + "word": "agression", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggression;assault", + "example_sentence_native": "La police enquête sur une agression.", + "example_sentence_english": "The police are investigating an assault.", + "pos": "noun", + "word_frequency": 2911 + }, + { + "word": "attacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attach;to tie", + "example_sentence_native": "N'oubliez pas d'attacher votre ceinture.", + "example_sentence_english": "Don't forget to fasten your seatbelt.", + "pos": "verb", + "word_frequency": 2912 + }, + { + "word": "aussitôt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediately;as soon as", + "example_sentence_native": "Il est parti aussitôt qu'il a reçu l'appel.", + "example_sentence_english": "He left as soon as he received the call.", + "pos": "adverb", + "word_frequency": 2913 + }, + { + "word": "box", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box;stall;garage", + "example_sentence_native": "J'ai garé ma voiture dans le box.", + "example_sentence_english": "I parked my car in the garage.", + "pos": "noun", + "word_frequency": 2916 + }, + { + "word": "conformément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in accordance with;conforming to", + "example_sentence_native": "Conformément à la loi, nous devons déclarer nos revenus.", + "example_sentence_english": "In accordance with the law, we must declare our income.", + "pos": "adverb", + "word_frequency": 2918 + }, + { + "word": "cote", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rating;quote;side (of a hill)", + "example_sentence_native": "La cote de popularité du président est en baisse.", + "example_sentence_english": "The president's popularity rating is falling.", + "pos": "noun", + "word_frequency": 2919 + }, + { + "word": "créateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creator", + "example_sentence_native": "Le créateur de cette œuvre est inconnu.", + "example_sentence_english": "The creator of this work is unknown.", + "pos": "noun", + "word_frequency": 2920 + }, + { + "word": "diffuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to broadcast;to spread", + "example_sentence_native": "La radio va diffuser le match en direct.", + "example_sentence_english": "The radio will broadcast the match live.", + "pos": "verb", + "word_frequency": 2921 + }, + { + "word": "dose", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dose", + "example_sentence_native": "Prenez une dose de ce médicament toutes les huit heures.", + "example_sentence_english": "Take a dose of this medicine every eight hours.", + "pos": "noun", + "word_frequency": 2922 + }, + { + "word": "débit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow;speed;debit", + "example_sentence_native": "Le débit de l'eau est très fort après la pluie.", + "example_sentence_english": "The water flow is very strong after the rain.", + "pos": "noun", + "word_frequency": 2923 + }, + { + "word": "défenseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defender;advocate", + "example_sentence_native": "Il est un ardent défenseur des droits de l'homme.", + "example_sentence_english": "He is a strong defender of human rights.", + "pos": "noun", + "word_frequency": 2924 + }, + { + "word": "effectif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effective;actual", + "example_sentence_native": "La mesure sera effective à partir de demain.", + "example_sentence_english": "The measure will be effective from tomorrow.", + "pos": "adjective", + "word_frequency": 2925 + }, + { + "word": "entourage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surroundings;entourage", + "example_sentence_native": "Il est important de bien choisir son entourage.", + "example_sentence_english": "It is important to choose your entourage well.", + "pos": "noun", + "word_frequency": 2926 + }, + { + "word": "expédition", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expedition;shipment", + "example_sentence_native": "L'expédition du colis prendra trois jours.", + "example_sentence_english": "The shipment of the package will take three days.", + "pos": "noun", + "word_frequency": 2927 + }, + { + "word": "faciliter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to facilitate;to make easier", + "example_sentence_native": "Ce nouveau système va faciliter notre travail.", + "example_sentence_english": "This new system will facilitate our work.", + "pos": "verb", + "word_frequency": 2928 + }, + { + "word": "fatigue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fatigue;tiredness", + "example_sentence_native": "Je ressens une grande fatigue après cette longue journée.", + "example_sentence_english": "I feel great fatigue after this long day.", + "pos": "noun", + "word_frequency": 2929 + }, + { + "word": "forfait", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "package;flat rate", + "example_sentence_native": "J'ai un forfait illimité pour mon téléphone.", + "example_sentence_english": "I have an unlimited package for my phone.", + "pos": "noun", + "word_frequency": 2930 + }, + { + "word": "formidable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great;wonderful;formidable", + "example_sentence_native": "C'était une soirée formidable !", + "example_sentence_english": "It was a wonderful evening!", + "pos": "adjective", + "word_frequency": 2931 + }, + { + "word": "fraude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraud", + "example_sentence_native": "Le gouvernement lutte contre la fraude fiscale.", + "example_sentence_english": "The government is fighting against tax fraud.", + "pos": "noun", + "word_frequency": 2932 + }, + { + "word": "fumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to smoke", + "example_sentence_native": "Il est interdit de fumer dans ce bâtiment.", + "example_sentence_english": "It is forbidden to smoke in this building.", + "pos": "verb", + "word_frequency": 2933 + }, + { + "word": "inspecteur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspector", + "example_sentence_native": "L'inspecteur a examiné la scène du crime.", + "example_sentence_english": "The inspector examined the crime scene.", + "pos": "noun", + "word_frequency": 2934 + }, + { + "word": "joindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to join;to reach", + "example_sentence_native": "J'essaie de le joindre par téléphone.", + "example_sentence_english": "I'm trying to reach him by phone.", + "pos": "verb", + "word_frequency": 2936 + }, + { + "word": "master", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "master's degree", + "example_sentence_native": "Elle prépare un master en économie.", + "example_sentence_english": "She is preparing a master's degree in economics.", + "pos": "noun", + "word_frequency": 2938 + }, + { + "word": "mentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lie", + "example_sentence_native": "Il ne faut jamais mentir à ses parents.", + "example_sentence_english": "You should never lie to your parents.", + "pos": "verb", + "word_frequency": 2939 + }, + { + "word": "merveilleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wonderful;marvelous", + "example_sentence_native": "Nous avons passé un week-end merveilleux.", + "example_sentence_english": "We had a wonderful weekend.", + "pos": "adjective", + "word_frequency": 2940 + }, + { + "word": "mince", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin;slim", + "example_sentence_native": "Elle est très mince et élégante.", + "example_sentence_english": "She is very thin and elegant.", + "pos": "adjective", + "word_frequency": 2941 + }, + { + "word": "misère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misery;poverty", + "example_sentence_native": "Beaucoup de gens vivent dans la misère.", + "example_sentence_english": "Many people live in misery.", + "pos": "noun", + "word_frequency": 2942 + }, + { + "word": "négatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "negative", + "example_sentence_native": "Son attitude est très négative.", + "example_sentence_english": "His attitude is very negative.", + "pos": "adjective", + "word_frequency": 2944 + }, + { + "word": "ours", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bear", + "example_sentence_native": "L'ours est un grand mammifère.", + "example_sentence_english": "The bear is a large mammal.", + "pos": "noun", + "word_frequency": 2945 + }, + { + "word": "permanent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "permanent", + "example_sentence_native": "Il a trouvé un emploi permanent.", + "example_sentence_english": "He found a permanent job.", + "pos": "adjective", + "word_frequency": 2946 + }, + { + "word": "pollution", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollution", + "example_sentence_native": "La pollution de l'air est un problème majeur.", + "example_sentence_english": "Air pollution is a major problem.", + "pos": "noun", + "word_frequency": 2947 + }, + { + "word": "poulet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chicken", + "example_sentence_native": "Nous allons manger du poulet ce soir.", + "example_sentence_english": "We are going to eat chicken tonight.", + "pos": "noun", + "word_frequency": 2948 + }, + { + "word": "programmation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "programming;scheduling", + "example_sentence_native": "La programmation de la chaîne est très variée.", + "example_sentence_english": "The channel's programming is very varied.", + "pos": "noun", + "word_frequency": 2949 + }, + { + "word": "provoquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provoke;to cause", + "example_sentence_native": "Son comportement a provoqué un scandale.", + "example_sentence_english": "His behavior caused a scandal.", + "pos": "verb", + "word_frequency": 2950 + }, + { + "word": "recul", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setback;recoil;hindsight", + "example_sentence_native": "Nous avons pris du recul pour analyser la situation.", + "example_sentence_english": "We took a step back to analyze the situation.", + "pos": "noun", + "word_frequency": 2951 + }, + { + "word": "réveiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wake up", + "example_sentence_native": "Je me réveille tôt tous les matins.", + "example_sentence_english": "I wake up early every morning.", + "pos": "verb", + "word_frequency": 2952 + }, + { + "word": "satisfait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "satisfied", + "example_sentence_native": "Je suis très satisfait de mon nouveau travail.", + "example_sentence_english": "I am very satisfied with my new job.", + "pos": "adjective", + "word_frequency": 2953 + }, + { + "word": "serveur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waiter;server", + "example_sentence_native": "Le serveur nous a apporté nos boissons.", + "example_sentence_english": "The waiter brought us our drinks.", + "pos": "noun", + "word_frequency": 2955 + }, + { + "word": "signaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to report;to signal", + "example_sentence_native": "Veuillez signaler tout problème à la réception.", + "example_sentence_english": "Please report any problems to the reception.", + "pos": "verb", + "word_frequency": 2956 + }, + { + "word": "suffisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sufficient;enough", + "example_sentence_native": "La quantité est suffisante pour tout le monde.", + "example_sentence_english": "The quantity is sufficient for everyone.", + "pos": "adjective", + "word_frequency": 2958 + }, + { + "word": "survie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survival", + "example_sentence_native": "La survie de l'espèce est menacée.", + "example_sentence_english": "The survival of the species is threatened.", + "pos": "noun", + "word_frequency": 2959 + }, + { + "word": "taxi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "taxi", + "example_sentence_native": "J'ai pris un taxi pour aller à l'aéroport.", + "example_sentence_english": "I took a taxi to go to the airport.", + "pos": "noun", + "word_frequency": 2960 + }, + { + "word": "traditionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traditional", + "example_sentence_native": "C'est une danse traditionnelle de la région.", + "example_sentence_english": "It's a traditional dance from the region.", + "pos": "adjective", + "word_frequency": 2961 + }, + { + "word": "trait", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feature;trait;line", + "example_sentence_native": "Il a un trait de caractère très particulier.", + "example_sentence_english": "He has a very particular character trait.", + "pos": "noun", + "word_frequency": 2962 + }, + { + "word": "tribune", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stand;platform;gallery", + "example_sentence_native": "Le président a prononcé son discours depuis la tribune.", + "example_sentence_english": "The president delivered his speech from the stand.", + "pos": "noun", + "word_frequency": 2963 + }, + { + "word": "we", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weekend (informal short form)", + "example_sentence_native": "On se voit ce we ?", + "example_sentence_english": "Shall we see each other this weekend?", + "pos": "noun", + "word_frequency": 2964 + }, + { + "word": "élite", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elite", + "example_sentence_native": "L'élite de la société était présente à la soirée.", + "example_sentence_english": "The elite of society was present at the party.", + "pos": "noun", + "word_frequency": 2965 + }, + { + "word": "éventuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possibly;eventually (if need be)", + "example_sentence_native": "Nous pourrions éventuellement reporter la réunion.", + "example_sentence_english": "We could possibly postpone the meeting.", + "pos": "adverb", + "word_frequency": 2966 + }, + { + "word": "abandon", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abandonment;giving up", + "example_sentence_native": "L'abandon du projet a causé beaucoup de déception.", + "example_sentence_english": "The abandonment of the project caused a lot of disappointment.", + "pos": "noun", + "word_frequency": 2967 + }, + { + "word": "abonné", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscriber", + "example_sentence_native": "Le nombre d'abonnés à la chaîne a augmenté.", + "example_sentence_english": "The number of subscribers to the channel has increased.", + "pos": "noun", + "word_frequency": 2968 + }, + { + "word": "accorder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grant;to accord;to tune", + "example_sentence_native": "Le gouvernement a décidé d'accorder une aide financière.", + "example_sentence_english": "The government decided to grant financial aid.", + "pos": "verb", + "word_frequency": 2969 + }, + { + "word": "ambition", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambition", + "example_sentence_native": "Son ambition est de devenir médecin.", + "example_sentence_english": "His ambition is to become a doctor.", + "pos": "noun", + "word_frequency": 2970 + }, + { + "word": "appuyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to press;to lean on;to support", + "example_sentence_native": "Appuyez sur le bouton pour démarrer la machine.", + "example_sentence_english": "Press the button to start the machine.", + "pos": "verb", + "word_frequency": 2971 + }, + { + "word": "aube", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dawn;daybreak", + "example_sentence_native": "Nous sommes partis à l'aube pour éviter le trafic.", + "example_sentence_english": "We left at dawn to avoid traffic.", + "pos": "noun", + "word_frequency": 2972 + }, + { + "word": "bouton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "button;bud;pimple", + "example_sentence_native": "Appuyez sur ce bouton pour allumer la lumière.", + "example_sentence_english": "Press this button to turn on the light.", + "pos": "noun", + "word_frequency": 2973 + }, + { + "word": "bronze", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bronze", + "example_sentence_native": "La statue est faite de bronze.", + "example_sentence_english": "The statue is made of bronze.", + "pos": "noun", + "word_frequency": 2974 + }, + { + "word": "canne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cane;stick;fishing rod", + "example_sentence_native": "Mon grand-père utilise une canne pour marcher.", + "example_sentence_english": "My grandfather uses a cane to walk.", + "pos": "noun", + "word_frequency": 2976 + }, + { + "word": "catastrophe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catastrophe;disaster", + "example_sentence_native": "L'inondation a été une véritable catastrophe pour la région.", + "example_sentence_english": "The flood was a real catastrophe for the region.", + "pos": "noun", + "word_frequency": 2977 + }, + { + "word": "chair", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flesh;meat (of fruit);skin", + "example_sentence_native": "La chair de ce fruit est très juteuse.", + "example_sentence_english": "The flesh of this fruit is very juicy.", + "pos": "noun", + "word_frequency": 2978 + }, + { + "word": "clan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clan", + "example_sentence_native": "Le chef du clan a pris une décision importante.", + "example_sentence_english": "The clan leader made an important decision.", + "pos": "noun", + "word_frequency": 2979 + }, + { + "word": "clip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clip (video;paperclip)", + "example_sentence_native": "J'ai regardé le nouveau clip de mon artiste préféré.", + "example_sentence_english": "I watched the new music video of my favorite artist.", + "pos": "noun", + "word_frequency": 2980 + }, + { + "word": "collectivité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "community;collectivity", + "example_sentence_native": "Les collectivités locales jouent un rôle important.", + "example_sentence_english": "Local communities play an important role.", + "pos": "noun", + "word_frequency": 2981 + }, + { + "word": "compromis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compromise", + "example_sentence_native": "Nous avons trouvé un bon compromis.", + "example_sentence_english": "We found a good compromise.", + "pos": "noun", + "word_frequency": 2982 + }, + { + "word": "compréhension", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comprehension;understanding", + "example_sentence_native": "Sa compréhension du problème est excellente.", + "example_sentence_english": "His understanding of the problem is excellent.", + "pos": "noun", + "word_frequency": 2983 + }, + { + "word": "diamètre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diameter", + "example_sentence_native": "Le diamètre du cercle est de dix centimètres.", + "example_sentence_english": "The diameter of the circle is ten centimeters.", + "pos": "noun", + "word_frequency": 2984 + }, + { + "word": "dénoncer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to denounce;to report", + "example_sentence_native": "Il a décidé de dénoncer les injustices.", + "example_sentence_english": "He decided to denounce the injustices.", + "pos": "verb", + "word_frequency": 2985 + }, + { + "word": "facture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invoice;bill", + "example_sentence_native": "J'ai reçu la facture par email.", + "example_sentence_english": "I received the invoice by email.", + "pos": "noun", + "word_frequency": 2986 + }, + { + "word": "félicitation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congratulation", + "example_sentence_native": "Toutes mes félicitations pour votre succès !", + "example_sentence_english": "All my congratulations on your success!", + "pos": "noun", + "word_frequency": 2987 + }, + { + "word": "maternel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maternal;motherly", + "example_sentence_native": "Elle a un instinct maternel très fort.", + "example_sentence_english": "She has a very strong maternal instinct.", + "pos": "adjective", + "word_frequency": 2989 + }, + { + "word": "modification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modification;change", + "example_sentence_native": "Nous avons apporté quelques modifications au plan.", + "example_sentence_english": "We made some modifications to the plan.", + "pos": "noun", + "word_frequency": 2990 + }, + { + "word": "poil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hair (animal);fur", + "example_sentence_native": "Mon chien perd beaucoup de poils.", + "example_sentence_english": "My dog sheds a lot of hair.", + "pos": "noun", + "word_frequency": 2992 + }, + { + "word": "poutine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "Unknown", + "english_translation": "poutine (Canadian dish)", + "example_sentence_native": "J'adore manger une bonne poutine au Québec.", + "example_sentence_english": "I love eating a good poutine in Quebec.", + "pos": "noun", + "word_frequency": 2993 + }, + { + "word": "prier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pray;to beg", + "example_sentence_native": "Elle prie tous les soirs avant de dormir.", + "example_sentence_english": "She prays every night before sleeping.", + "pos": "verb", + "word_frequency": 2994 + }, + { + "word": "rage", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rage;fury", + "example_sentence_native": "Il était rempli de rage après l'incident.", + "example_sentence_english": "He was filled with rage after the incident.", + "pos": "noun", + "word_frequency": 2995 + }, + { + "word": "souveraineté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereignty", + "example_sentence_native": "La souveraineté d'un État est essentielle.", + "example_sentence_english": "The sovereignty of a state is essential.", + "pos": "noun", + "word_frequency": 2998 + }, + { + "word": "universel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "universal", + "example_sentence_native": "C'est un problème universel.", + "example_sentence_english": "It's a universal problem.", + "pos": "adjective", + "word_frequency": 3001 + }, + { + "word": "utilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usefulness;utility", + "example_sentence_native": "Quelle est l'utilité de cette machine?", + "example_sentence_english": "What is the usefulness of this machine?", + "pos": "noun", + "word_frequency": 3002 + }, + { + "word": "vocation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocation;calling", + "example_sentence_native": "Il a trouvé sa vocation dans l'enseignement.", + "example_sentence_english": "He found his calling in teaching.", + "pos": "noun", + "word_frequency": 3003 + }, + { + "word": "égal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "equal;even", + "example_sentence_native": "Tous les citoyens sont égaux devant la loi.", + "example_sentence_english": "All citizens are equal before the law.", + "pos": "adjective", + "word_frequency": 3005 + }, + { + "word": "assumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assume;to take on;to bear", + "example_sentence_native": "Il doit assumer ses responsabilités.", + "example_sentence_english": "He must assume his responsibilities.", + "pos": "verb", + "word_frequency": 3007 + }, + { + "word": "bail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lease;tenancy agreement", + "example_sentence_native": "Nous avons signé un nouveau bail pour l'appartement.", + "example_sentence_english": "We signed a new lease for the apartment.", + "pos": "noun", + "word_frequency": 3008 + }, + { + "word": "banc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bench", + "example_sentence_native": "Asseyez-vous sur le banc.", + "example_sentence_english": "Sit on the bench.", + "pos": "noun", + "word_frequency": 3009 + }, + { + "word": "bosser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to work (informal)", + "example_sentence_native": "Je dois bosser dur pour cet examen.", + "example_sentence_english": "I have to work hard for this exam.", + "pos": "verb", + "word_frequency": 3010 + }, + { + "word": "chanteuse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singer (female)", + "example_sentence_native": "La chanteuse a une voix magnifique.", + "example_sentence_english": "The singer has a magnificent voice.", + "pos": "noun", + "word_frequency": 3011 + }, + { + "word": "chimique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemical", + "example_sentence_native": "Il y a eu une réaction chimique.", + "example_sentence_english": "There was a chemical reaction.", + "pos": "adjective", + "word_frequency": 3012 + }, + { + "word": "civilisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civilization", + "example_sentence_native": "L'ancienne civilisation égyptienne était très avancée.", + "example_sentence_english": "The ancient Egyptian civilization was very advanced.", + "pos": "noun", + "word_frequency": 3013 + }, + { + "word": "colonne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "column", + "example_sentence_native": "Les colonnes du temple sont impressionnantes.", + "example_sentence_english": "The temple's columns are impressive.", + "pos": "noun", + "word_frequency": 3014 + }, + { + "word": "constamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constantly", + "example_sentence_native": "Il se plaint constamment du bruit.", + "example_sentence_english": "He constantly complains about the noise.", + "pos": "adverb", + "word_frequency": 3015 + }, + { + "word": "constant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "constant", + "example_sentence_native": "Il fait preuve d'un effort constant.", + "example_sentence_english": "He shows constant effort.", + "pos": "adjective", + "word_frequency": 3016 + }, + { + "word": "craindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fear;to dread", + "example_sentence_native": "Je crains le pire.", + "example_sentence_english": "I fear the worst.", + "pos": "verb", + "word_frequency": 3017 + }, + { + "word": "crier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shout;to cry out", + "example_sentence_native": "Il a commencé à crier de joie.", + "example_sentence_english": "He started to shout with joy.", + "pos": "verb", + "word_frequency": 3018 + }, + { + "word": "criminel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal", + "example_sentence_native": "C'est un acte criminel.", + "example_sentence_english": "It's a criminal act.", + "pos": "adjective", + "word_frequency": 3019 + }, + { + "word": "danser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dance", + "example_sentence_native": "J'aime danser le rock.", + "example_sentence_english": "I like to dance rock.", + "pos": "verb", + "word_frequency": 3021 + }, + { + "word": "domination", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domination", + "example_sentence_native": "La domination économique est un sujet complexe.", + "example_sentence_english": "Economic domination is a complex subject.", + "pos": "noun", + "word_frequency": 3022 + }, + { + "word": "dépression", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depression", + "example_sentence_native": "Elle souffre de dépression.", + "example_sentence_english": "She suffers from depression.", + "pos": "noun", + "word_frequency": 3024 + }, + { + "word": "exposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expose;to exhibit", + "example_sentence_native": "L'artiste va exposer ses œuvres.", + "example_sentence_english": "The artist will exhibit his works.", + "pos": "verb", + "word_frequency": 3025 + }, + { + "word": "fesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buttock", + "example_sentence_native": "Il est tombé sur les fesses.", + "example_sentence_english": "He fell on his buttocks.", + "pos": "noun", + "word_frequency": 3026 + }, + { + "word": "gosse", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;child (informal)", + "example_sentence_native": "Les gosses jouent dans le jardin.", + "example_sentence_english": "The kids are playing in the garden.", + "pos": "noun", + "word_frequency": 3028 + }, + { + "word": "graphique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graphic", + "example_sentence_native": "Le design graphique est très important.", + "example_sentence_english": "Graphic design is very important.", + "pos": "adjective", + "word_frequency": 3029 + }, + { + "word": "gâteau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cake", + "example_sentence_native": "J'ai mangé un morceau de gâteau.", + "example_sentence_english": "I ate a piece of cake.", + "pos": "noun", + "word_frequency": 3030 + }, + { + "word": "infrastructure", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infrastructure", + "example_sentence_native": "Le pays a besoin de meilleures infrastructures.", + "example_sentence_english": "The country needs better infrastructure.", + "pos": "noun", + "word_frequency": 3031 + }, + { + "word": "intellectuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectual", + "example_sentence_native": "C'est un travail intellectuel exigeant.", + "example_sentence_english": "It's a demanding intellectual work.", + "pos": "adjective", + "word_frequency": 3032 + }, + { + "word": "intense", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intense", + "example_sentence_native": "La chaleur était intense.", + "example_sentence_english": "The heat was intense.", + "pos": "adjective", + "word_frequency": 3033 + }, + { + "word": "las", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weary;tired (literary)", + "example_sentence_native": "Il était las de cette longue attente.", + "example_sentence_english": "He was weary of this long wait.", + "pos": "adjective", + "word_frequency": 3034 + }, + { + "word": "libérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to free;to release", + "example_sentence_native": "Ils ont décidé de libérer les prisonniers.", + "example_sentence_english": "They decided to free the prisoners.", + "pos": "verb", + "word_frequency": 3036 + }, + { + "word": "malheur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misfortune;unhappiness", + "example_sentence_native": "Quel malheur !", + "example_sentence_english": "What a misfortune!", + "pos": "noun", + "word_frequency": 3037 + }, + { + "word": "manifestant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstrator;protester", + "example_sentence_native": "Les manifestants se sont rassemblés devant la mairie.", + "example_sentence_english": "The demonstrators gathered in front of the town hall.", + "pos": "noun", + "word_frequency": 3039 + }, + { + "word": "miracle", + "article_with_word": "le miracle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miracle", + "example_sentence_native": "C'était un vrai miracle qu'il ait survécu.", + "example_sentence_english": "It was a true miracle that he survived.", + "pos": "noun", + "word_frequency": 3043 + }, + { + "word": "motivation", + "article_with_word": "la motivation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivation", + "example_sentence_native": "Sa motivation est très forte.", + "example_sentence_english": "His motivation is very strong.", + "pos": "noun", + "word_frequency": 3044 + }, + { + "word": "noble", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noble", + "example_sentence_native": "Il a fait un geste noble.", + "example_sentence_english": "He made a noble gesture.", + "pos": "adjective", + "word_frequency": 3045 + }, + { + "word": "optique", + "article_with_word": "l'optique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optics;optical shop", + "example_sentence_native": "J'ai acheté mes lunettes chez l'opticien, spécialiste de l'optique.", + "example_sentence_english": "I bought my glasses at the optician's, an optics specialist.", + "pos": "noun", + "word_frequency": 3046 + }, + { + "word": "photographie", + "article_with_word": "la photographie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photography;photograph", + "example_sentence_native": "J'aime prendre des photographies.", + "example_sentence_english": "I like taking photographs.", + "pos": "noun", + "word_frequency": 3047 + }, + { + "word": "plafond", + "article_with_word": "le plafond", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ceiling", + "example_sentence_native": "Le plafond de la pièce est haut.", + "example_sentence_english": "The ceiling of the room is high.", + "pos": "noun", + "word_frequency": 3048 + }, + { + "word": "pomme", + "article_with_word": "la pomme", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apple", + "example_sentence_native": "Je mange une pomme chaque jour.", + "example_sentence_english": "I eat an apple every day.", + "pos": "noun", + "word_frequency": 3049 + }, + { + "word": "procéder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proceed", + "example_sentence_native": "Nous devons procéder avec prudence.", + "example_sentence_english": "We must proceed with caution.", + "pos": "verb", + "word_frequency": 3051 + }, + { + "word": "progression", + "article_with_word": "la progression", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progression;progress", + "example_sentence_native": "Sa progression en français est rapide.", + "example_sentence_english": "His progress in French is fast.", + "pos": "noun", + "word_frequency": 3052 + }, + { + "word": "proportion", + "article_with_word": "la proportion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportion", + "example_sentence_native": "Il y a une grande proportion d'étudiants étrangers.", + "example_sentence_english": "There is a large proportion of foreign students.", + "pos": "noun", + "word_frequency": 3053 + }, + { + "word": "recommander", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recommend", + "example_sentence_native": "Je peux vous recommander un bon restaurant.", + "example_sentence_english": "I can recommend a good restaurant to you.", + "pos": "verb", + "word_frequency": 3054 + }, + { + "word": "rendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rendered;returned", + "example_sentence_native": "Le document rendu était parfait.", + "example_sentence_english": "The rendered document was perfect.", + "pos": "adjective", + "word_frequency": 3055 + }, + { + "word": "roue", + "article_with_word": "la roue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheel", + "example_sentence_native": "La voiture a quatre roues.", + "example_sentence_english": "The car has four wheels.", + "pos": "noun", + "word_frequency": 3057 + }, + { + "word": "rêver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dream", + "example_sentence_native": "Je rêve souvent de voyager.", + "example_sentence_english": "I often dream of traveling.", + "pos": "verb", + "word_frequency": 3058 + }, + { + "word": "suspect", + "article_with_word": "le suspect", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspect", + "example_sentence_native": "La police a interrogé le suspect.", + "example_sentence_english": "The police questioned the suspect.", + "pos": "noun", + "word_frequency": 3060 + }, + { + "word": "trajet", + "article_with_word": "le trajet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journey;trip", + "example_sentence_native": "Le trajet jusqu'à Paris est long.", + "example_sentence_english": "The journey to Paris is long.", + "pos": "noun", + "word_frequency": 3062 + }, + { + "word": "ultime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ultimate", + "example_sentence_native": "C'est son ultime tentative.", + "example_sentence_english": "This is his ultimate attempt.", + "pos": "adjective", + "word_frequency": 3063 + }, + { + "word": "veste", + "article_with_word": "la veste", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "jacket", + "example_sentence_native": "J'ai mis ma veste car il fait froid.", + "example_sentence_english": "I put on my jacket because it's cold.", + "pos": "noun", + "word_frequency": 3064 + }, + { + "word": "vingtaine", + "article_with_word": "la vingtaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twenty (approximate age;quantity)", + "example_sentence_native": "Il a la vingtaine.", + "example_sentence_english": "He is in his twenties.", + "pos": "noun", + "word_frequency": 3065 + }, + { + "word": "écologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ecological;environmentally friendly", + "example_sentence_native": "C'est une voiture écologique.", + "example_sentence_english": "It's an environmentally friendly car.", + "pos": "adjective", + "word_frequency": 3066 + }, + { + "word": "éliminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eliminate", + "example_sentence_native": "Il faut éliminer les déchets.", + "example_sentence_english": "We must eliminate waste.", + "pos": "verb", + "word_frequency": 3067 + }, + { + "word": "épaule", + "article_with_word": "l'épaule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shoulder", + "example_sentence_native": "J'ai mal à l'épaule.", + "example_sentence_english": "My shoulder hurts.", + "pos": "noun", + "word_frequency": 3068 + }, + { + "word": "évoluer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to evolve;to develop", + "example_sentence_native": "La situation continue d'évoluer.", + "example_sentence_english": "The situation continues to evolve.", + "pos": "verb", + "word_frequency": 3069 + }, + { + "word": "agriculteur", + "article_with_word": "l'agriculteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmer", + "example_sentence_native": "L'agriculteur travaille la terre.", + "example_sentence_english": "The farmer works the land.", + "pos": "noun", + "word_frequency": 3070 + }, + { + "word": "armé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armed", + "example_sentence_native": "L'homme était armé.", + "example_sentence_english": "The man was armed.", + "pos": "adjective", + "word_frequency": 3071 + }, + { + "word": "bancaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banking;bank (adj.)", + "example_sentence_native": "J'ai un compte bancaire.", + "example_sentence_english": "I have a bank account.", + "pos": "adjective", + "word_frequency": 3074 + }, + { + "word": "centrale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "central", + "example_sentence_native": "La gare centrale est très grande.", + "example_sentence_english": "The central station is very large.", + "pos": "adjective", + "word_frequency": 3079 + }, + { + "word": "climatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climatic", + "example_sentence_native": "Le changement climatique est une préoccupation majeure.", + "example_sentence_english": "Climatic change is a major concern.", + "pos": "adjective", + "word_frequency": 3080 + }, + { + "word": "colle", + "article_with_word": "la colle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glue", + "example_sentence_native": "J'ai besoin de colle pour réparer ce vase.", + "example_sentence_english": "I need glue to fix this vase.", + "pos": "noun", + "word_frequency": 3081 + }, + { + "word": "conclure", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conclude", + "example_sentence_native": "Nous devons conclure cette réunion avant midi.", + "example_sentence_english": "We must conclude this meeting before noon.", + "pos": "verb", + "word_frequency": 3082 + }, + { + "word": "conserve", + "article_with_word": "la conserve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canned food;preserve", + "example_sentence_native": "J'ai acheté une boîte de conserve de thon.", + "example_sentence_english": "I bought a can of tuna.", + "pos": "noun", + "word_frequency": 3083 + }, + { + "word": "contemporain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemporary", + "example_sentence_native": "L'art contemporain est souvent sujet à débat.", + "example_sentence_english": "Contemporary art is often subject to debate.", + "pos": "adjective", + "word_frequency": 3084 + }, + { + "word": "dictionnaire", + "article_with_word": "le dictionnaire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dictionary", + "example_sentence_native": "J'utilise un dictionnaire pour chercher les mots inconnus.", + "example_sentence_english": "I use a dictionary to look up unknown words.", + "pos": "noun", + "word_frequency": 3085 + }, + { + "word": "décor", + "article_with_word": "le décor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decor;setting", + "example_sentence_native": "Le décor de la pièce était magnifique.", + "example_sentence_english": "The decor of the room was magnificent.", + "pos": "noun", + "word_frequency": 3087 + }, + { + "word": "dédié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedicated", + "example_sentence_native": "Ce livre est dédié à ma famille.", + "example_sentence_english": "This book is dedicated to my family.", + "pos": "adjective", + "word_frequency": 3088 + }, + { + "word": "délégation", + "article_with_word": "la délégation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegation", + "example_sentence_native": "Une délégation étrangère est arrivée ce matin.", + "example_sentence_english": "A foreign delegation arrived this morning.", + "pos": "noun", + "word_frequency": 3089 + }, + { + "word": "démission", + "article_with_word": "la démission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation", + "example_sentence_native": "Sa démission a surpris tout le monde.", + "example_sentence_english": "His resignation surprised everyone.", + "pos": "noun", + "word_frequency": 3090 + }, + { + "word": "ecole", + "article_with_word": "l'école", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "school", + "example_sentence_native": "Les enfants vont à l'école tous les jours.", + "example_sentence_english": "Children go to school every day.", + "pos": "noun", + "word_frequency": 3091 + }, + { + "word": "entouré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surrounded", + "example_sentence_native": "Il était entouré de ses amis.", + "example_sentence_english": "He was surrounded by his friends.", + "pos": "adjective", + "word_frequency": 3092 + }, + { + "word": "escalier", + "article_with_word": "l'escalier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stairs;staircase", + "example_sentence_native": "Monte les escaliers pour aller à l'étage.", + "example_sentence_english": "Go up the stairs to go upstairs.", + "pos": "noun", + "word_frequency": 3093 + }, + { + "word": "externe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "external", + "example_sentence_native": "La pression externe était forte.", + "example_sentence_english": "The external pressure was strong.", + "pos": "adjective", + "word_frequency": 3094 + }, + { + "word": "faiblesse", + "article_with_word": "la faiblesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weakness", + "example_sentence_native": "Chacun a ses forces et ses faiblesses.", + "example_sentence_english": "Everyone has their strengths and weaknesses.", + "pos": "noun", + "word_frequency": 3095 + }, + { + "word": "fierté", + "article_with_word": "la fierté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pride", + "example_sentence_native": "Elle a ressenti une grande fierté.", + "example_sentence_english": "She felt great pride.", + "pos": "noun", + "word_frequency": 3096 + }, + { + "word": "gardé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guarded;kept", + "example_sentence_native": "Le secret a été bien gardé.", + "example_sentence_english": "The secret was well kept.", + "pos": "adjective", + "word_frequency": 3097 + }, + { + "word": "grace", + "article_with_word": "la grâce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grace;thanks to", + "example_sentence_native": "Grâce à votre aide, nous avons réussi.", + "example_sentence_english": "Thanks to your help, we succeeded.", + "pos": "noun", + "word_frequency": 3098 + }, + { + "word": "indien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Indian", + "example_sentence_native": "La cuisine indienne est très épicée.", + "example_sentence_english": "Indian cuisine is very spicy.", + "pos": "adjective", + "word_frequency": 3099 + }, + { + "word": "informer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to inform", + "example_sentence_native": "Veuillez m'informer de votre décision.", + "example_sentence_english": "Please inform me of your decision.", + "pos": "verb", + "word_frequency": 3100 + }, + { + "word": "management", + "article_with_word": "le management", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "example_sentence_native": "Le management de projet est essentiel.", + "example_sentence_english": "Project management is essential.", + "pos": "noun", + "word_frequency": 3102 + }, + { + "word": "manager", + "article_with_word": "le manager", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manager", + "example_sentence_native": "Le manager a approuvé notre proposition.", + "example_sentence_english": "The manager approved our proposal.", + "pos": "noun", + "word_frequency": 3103 + }, + { + "word": "musical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musical", + "example_sentence_native": "J'aime écouter de la musique classique et des comédies musicales.", + "example_sentence_english": "I like listening to classical music and musicals.", + "pos": "adjective", + "word_frequency": 3104 + }, + { + "word": "ordonnance", + "article_with_word": "l'ordonnance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescription;ordinance", + "example_sentence_native": "Le médecin m'a donné une ordonnance pour des médicaments.", + "example_sentence_english": "The doctor gave me a prescription for medicine.", + "pos": "noun", + "word_frequency": 3106 + }, + { + "word": "originaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native;originally from", + "example_sentence_native": "Elle est originaire de Paris.", + "example_sentence_english": "She is originally from Paris.", + "pos": "adjective", + "word_frequency": 3107 + }, + { + "word": "parking", + "article_with_word": "le parking", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parking lot", + "example_sentence_native": "Le parking est complet.", + "example_sentence_english": "The parking lot is full.", + "pos": "noun", + "word_frequency": 3108 + }, + { + "word": "permanence", + "article_with_word": "la permanence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanence;on-call duty", + "example_sentence_native": "Il assure une permanence téléphonique le soir.", + "example_sentence_english": "He provides telephone on-call duty in the evening.", + "pos": "noun", + "word_frequency": 3109 + }, + { + "word": "portugais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Portuguese", + "example_sentence_native": "J'apprends le portugais.", + "example_sentence_english": "I am learning Portuguese.", + "pos": "adjective", + "word_frequency": 3110 + }, + { + "word": "poule", + "article_with_word": "la poule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hen", + "example_sentence_native": "La poule pond des œufs.", + "example_sentence_english": "The hen lays eggs.", + "pos": "noun", + "word_frequency": 3111 + }, + { + "word": "promouvoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to promote", + "example_sentence_native": "Nous devons promouvoir nos produits.", + "example_sentence_english": "We must promote our products.", + "pos": "verb", + "word_frequency": 3112 + }, + { + "word": "propagande", + "article_with_word": "la propagande", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propaganda", + "example_sentence_native": "La propagande est un outil puissant.", + "example_sentence_english": "Propaganda is a powerful tool.", + "pos": "noun", + "word_frequency": 3113 + }, + { + "word": "préserver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preserve", + "example_sentence_native": "Il est important de préserver l'environnement.", + "example_sentence_english": "It is important to preserve the environment.", + "pos": "verb", + "word_frequency": 3114 + }, + { + "word": "quai", + "article_with_word": "le quai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "platform;quay", + "example_sentence_native": "Le train arrive au quai numéro 3.", + "example_sentence_english": "The train arrives at platform number 3.", + "pos": "noun", + "word_frequency": 3115 + }, + { + "word": "raciste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racist", + "example_sentence_native": "Les propos racistes sont inacceptables.", + "example_sentence_english": "Racist remarks are unacceptable.", + "pos": "adjective", + "word_frequency": 3116 + }, + { + "word": "retenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retained;selected", + "example_sentence_native": "Sa candidature a été retenue.", + "example_sentence_english": "His application was selected.", + "pos": "adjective", + "word_frequency": 3118 + }, + { + "word": "robot", + "article_with_word": "le robot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "robot", + "example_sentence_native": "Les robots sont de plus en plus présents dans l'industrie.", + "example_sentence_english": "Robots are increasingly present in industry.", + "pos": "noun", + "word_frequency": 3119 + }, + { + "word": "résumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to summarize", + "example_sentence_native": "Pouvez-vous résumer les points principaux?", + "example_sentence_english": "Can you summarize the main points?", + "pos": "verb", + "word_frequency": 3120 + }, + { + "word": "soudain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suddenly", + "example_sentence_native": "Soudain, la lumière s'est éteinte.", + "example_sentence_english": "Suddenly, the light went out.", + "pos": "adverb", + "word_frequency": 3121 + }, + { + "word": "stratégique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategic", + "example_sentence_native": "C'est une position stratégique importante.", + "example_sentence_english": "It's an important strategic position.", + "pos": "adjective", + "word_frequency": 3122 + }, + { + "word": "tirage", + "article_with_word": "le tirage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "draw;print run", + "example_sentence_native": "Le tirage au sort aura lieu demain.", + "example_sentence_english": "The draw will take place tomorrow.", + "pos": "noun", + "word_frequency": 3123 + }, + { + "word": "tube", + "article_with_word": "le tube", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tube;pipe", + "example_sentence_native": "L'eau coule dans le tube.", + "example_sentence_english": "Water flows in the tube.", + "pos": "noun", + "word_frequency": 3124 + }, + { + "word": "épargne", + "article_with_word": "l’épargne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savings", + "example_sentence_native": "Il met de l'argent de côté pour son épargne.", + "example_sentence_english": "He puts money aside for his savings.", + "pos": "noun", + "word_frequency": 3128 + }, + { + "word": "abonnement", + "article_with_word": "l’abonnement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subscription", + "example_sentence_native": "J'ai pris un abonnement au journal.", + "example_sentence_english": "I took out a subscription to the newspaper.", + "pos": "noun", + "word_frequency": 3129 + }, + { + "word": "accusation", + "article_with_word": "l’accusation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accusation", + "example_sentence_native": "Il a nié toutes les accusations.", + "example_sentence_english": "He denied all the accusations.", + "pos": "noun", + "word_frequency": 3130 + }, + { + "word": "ampleur", + "article_with_word": "l’ampleur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extent;magnitude", + "example_sentence_native": "Nous ne mesurons pas encore l'ampleur du problème.", + "example_sentence_english": "We do not yet measure the extent of the problem.", + "pos": "noun", + "word_frequency": 3131 + }, + { + "word": "barbe", + "article_with_word": "la barbe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beard", + "example_sentence_native": "Il porte une longue barbe.", + "example_sentence_english": "He wears a long beard.", + "pos": "noun", + "word_frequency": 3132 + }, + { + "word": "blond", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blond", + "example_sentence_native": "Elle a les cheveux blonds.", + "example_sentence_english": "She has blond hair.", + "pos": "adjective", + "word_frequency": 3133 + }, + { + "word": "bloqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blocked;stuck", + "example_sentence_native": "La porte est bloquée.", + "example_sentence_english": "The door is blocked.", + "pos": "adjective", + "word_frequency": 3134 + }, + { + "word": "boule", + "article_with_word": "la boule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ball;sphere", + "example_sentence_native": "L'enfant joue avec une boule.", + "example_sentence_english": "The child plays with a ball.", + "pos": "noun", + "word_frequency": 3135 + }, + { + "word": "calmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to calm (down)", + "example_sentence_native": "Il faut calmer la situation.", + "example_sentence_english": "We need to calm the situation.", + "pos": "verb", + "word_frequency": 3136 + }, + { + "word": "camarade", + "article_with_word": "le/la camarade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comrade;friend;classmate", + "example_sentence_native": "C'est mon camarade de classe.", + "example_sentence_english": "This is my classmate.", + "pos": "noun", + "word_frequency": 3137 + }, + { + "word": "cassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broken", + "example_sentence_native": "Le verre est cassé.", + "example_sentence_english": "The glass is broken.", + "pos": "adjective", + "word_frequency": 3138 + }, + { + "word": "clientèle", + "article_with_word": "la clientèle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clientele;customers", + "example_sentence_native": "Le magasin a une clientèle fidèle.", + "example_sentence_english": "The store has a loyal clientele.", + "pos": "noun", + "word_frequency": 3140 + }, + { + "word": "conquête", + "article_with_word": "la conquête", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conquest", + "example_sentence_native": "La conquête de l'espace est fascinante.", + "example_sentence_english": "The conquest of space is fascinating.", + "pos": "noun", + "word_frequency": 3141 + }, + { + "word": "consultation", + "article_with_word": "la consultation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consultation", + "example_sentence_native": "J'ai rendez-vous pour une consultation médicale.", + "example_sentence_english": "I have an appointment for a medical consultation.", + "pos": "noun", + "word_frequency": 3142 + }, + { + "word": "costume", + "article_with_word": "le costume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suit;costume", + "example_sentence_native": "Il porte un élégant costume.", + "example_sentence_english": "He wears an elegant suit.", + "pos": "noun", + "word_frequency": 3143 + }, + { + "word": "crâne", + "article_with_word": "le crâne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skull", + "example_sentence_native": "Le crâne protège le cerveau.", + "example_sentence_english": "The skull protects the brain.", + "pos": "noun", + "word_frequency": 3144 + }, + { + "word": "curiosité", + "article_with_word": "la curiosité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curiosity", + "example_sentence_native": "Sa curiosité l'a poussé à explorer.", + "example_sentence_english": "His curiosity pushed him to explore.", + "pos": "noun", + "word_frequency": 3145 + }, + { + "word": "célibataire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "single;unmarried", + "example_sentence_native": "Il est célibataire.", + "example_sentence_english": "He is single.", + "pos": "adjective", + "word_frequency": 3146 + }, + { + "word": "descente", + "article_with_word": "la descente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "descent;going down", + "example_sentence_native": "La descente de la montagne était difficile.", + "example_sentence_english": "The descent from the mountain was difficult.", + "pos": "noun", + "word_frequency": 3147 + }, + { + "word": "distinguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distinguish", + "example_sentence_native": "Il est difficile de distinguer les deux couleurs.", + "example_sentence_english": "It is difficult to distinguish the two colors.", + "pos": "verb", + "word_frequency": 3148 + }, + { + "word": "doc", + "article_with_word": "le doc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doc (informal for document or doctor)", + "example_sentence_native": "Peux-tu m'envoyer le doc?", + "example_sentence_english": "Can you send me the doc?", + "pos": "noun", + "word_frequency": 3149 + }, + { + "word": "dépit", + "article_with_word": "le dépit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spite;vexation", + "example_sentence_native": "Il a agi par dépit.", + "example_sentence_english": "He acted out of spite.", + "pos": "noun", + "word_frequency": 3151 + }, + { + "word": "employeur", + "article_with_word": "l’employeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employer", + "example_sentence_native": "Mon employeur est très exigeant.", + "example_sentence_english": "My employer is very demanding.", + "pos": "noun", + "word_frequency": 3152 + }, + { + "word": "excès", + "article_with_word": "l’excès", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excess", + "example_sentence_native": "L'excès de sucre est mauvais pour la santé.", + "example_sentence_english": "Excess sugar is bad for health.", + "pos": "noun", + "word_frequency": 3153 + }, + { + "word": "faillir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to almost do;to fail", + "example_sentence_native": "J'ai failli tomber.", + "example_sentence_english": "I almost fell.", + "pos": "verb", + "word_frequency": 3154 + }, + { + "word": "fontaine", + "article_with_word": "la fontaine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fountain", + "example_sentence_native": "Il y a une belle fontaine sur la place.", + "example_sentence_english": "There is a beautiful fountain in the square.", + "pos": "noun", + "word_frequency": 3155 + }, + { + "word": "fuir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flee;to leak", + "example_sentence_native": "Le voleur a réussi à fuir.", + "example_sentence_english": "The thief managed to flee.", + "pos": "verb", + "word_frequency": 3156 + }, + { + "word": "fumée", + "article_with_word": "la fumée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smoke", + "example_sentence_native": "Il y a beaucoup de fumée.", + "example_sentence_english": "There is a lot of smoke.", + "pos": "noun", + "word_frequency": 3157 + }, + { + "word": "genou", + "article_with_word": "le genou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "knee", + "example_sentence_native": "Il s'est blessé au genou.", + "example_sentence_english": "He injured his knee.", + "pos": "noun", + "word_frequency": 3158 + }, + { + "word": "guitare", + "article_with_word": "la guitare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "guitar", + "example_sentence_native": "Elle joue de la guitare.", + "example_sentence_english": "She plays the guitar.", + "pos": "noun", + "word_frequency": 3159 + }, + { + "word": "habitation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dwelling", + "example_sentence_native": "Cette habitation est très ancienne.", + "example_sentence_english": "This dwelling is very old.", + "pos": "noun", + "word_frequency": 3160 + }, + { + "word": "hall", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hall", + "example_sentence_native": "Le hall de l'hôtel est spacieux.", + "example_sentence_english": "The hotel hall is spacious.", + "pos": "noun", + "word_frequency": 3161 + }, + { + "word": "impressionnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impressive", + "example_sentence_native": "C'est un spectacle vraiment impressionnant.", + "example_sentence_english": "It's a truly impressive show.", + "pos": "adjective", + "word_frequency": 3162 + }, + { + "word": "instance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instance", + "example_sentence_native": "L'instance dirigeante a pris une décision.", + "example_sentence_english": "The governing instance made a decision.", + "pos": "noun", + "word_frequency": 3163 + }, + { + "word": "livré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivered", + "example_sentence_native": "Le colis a été livré ce matin.", + "example_sentence_english": "The package was delivered this morning.", + "pos": "adjective", + "word_frequency": 3166 + }, + { + "word": "location", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rental", + "example_sentence_native": "Nous avons trouvé une bonne location pour les vacances.", + "example_sentence_english": "We found a good rental for the holidays.", + "pos": "noun", + "word_frequency": 3167 + }, + { + "word": "logo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "logo", + "example_sentence_native": "Le logo de l'entreprise est reconnaissable.", + "example_sentence_english": "The company's logo is recognizable.", + "pos": "noun", + "word_frequency": 3168 + }, + { + "word": "lâcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let go", + "example_sentence_native": "Il a lâché la corde.", + "example_sentence_english": "He let go of the rope.", + "pos": "verb", + "word_frequency": 3169 + }, + { + "word": "manifeste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manifesto", + "example_sentence_native": "Le parti a publié son manifeste politique.", + "example_sentence_english": "The party published its political manifesto.", + "pos": "noun", + "word_frequency": 3170 + }, + { + "word": "mathématique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mathematics", + "example_sentence_native": "La mathématique est une science exacte.", + "example_sentence_english": "Mathematics is an exact science.", + "pos": "noun", + "word_frequency": 3171 + }, + { + "word": "menu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "menu", + "example_sentence_native": "Pouvez-vous m'apporter le menu, s'il vous plaît?", + "example_sentence_english": "Can you bring me the menu, please?", + "pos": "noun", + "word_frequency": 3172 + }, + { + "word": "monument", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monument", + "example_sentence_native": "Ce monument historique attire de nombreux touristes.", + "example_sentence_english": "This historical monument attracts many tourists.", + "pos": "noun", + "word_frequency": 3173 + }, + { + "word": "moyenne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "average", + "example_sentence_native": "La température moyenne est de 20 degrés.", + "example_sentence_english": "The average temperature is 20 degrees.", + "pos": "adjective", + "word_frequency": 3174 + }, + { + "word": "mécanisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanism", + "example_sentence_native": "Le mécanisme de l'horloge est complexe.", + "example_sentence_english": "The clock's mechanism is complex.", + "pos": "noun", + "word_frequency": 3175 + }, + { + "word": "occidental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Western", + "example_sentence_native": "La culture occidentale est très diverse.", + "example_sentence_english": "Western culture is very diverse.", + "pos": "adjective", + "word_frequency": 3176 + }, + { + "word": "parfum", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfume", + "example_sentence_native": "J'adore le parfum de cette fleur.", + "example_sentence_english": "I love the perfume of this flower.", + "pos": "noun", + "word_frequency": 3177 + }, + { + "word": "pire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worse", + "example_sentence_native": "C'est la pire situation possible.", + "example_sentence_english": "This is the worst possible situation.", + "pos": "adjective", + "word_frequency": 3178 + }, + { + "word": "polémique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversy", + "example_sentence_native": "Cette décision a créé une vive polémique.", + "example_sentence_english": "This decision created a strong controversy.", + "pos": "noun", + "word_frequency": 3179 + }, + { + "word": "qualification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification", + "example_sentence_native": "Il a les qualifications requises pour ce poste.", + "example_sentence_english": "He has the necessary qualifications for this position.", + "pos": "noun", + "word_frequency": 3181 + }, + { + "word": "rendement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yield", + "example_sentence_native": "Le rendement de cette machine est excellent.", + "example_sentence_english": "The yield of this machine is excellent.", + "pos": "noun", + "word_frequency": 3182 + }, + { + "word": "réduit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduced", + "example_sentence_native": "L'espace de stockage est très réduit.", + "example_sentence_english": "The storage space is very reduced.", + "pos": "adjective", + "word_frequency": 3183 + }, + { + "word": "républicain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "republican", + "example_sentence_native": "Il a des idées républicaines.", + "example_sentence_english": "He has republican ideas.", + "pos": "adjective", + "word_frequency": 3184 + }, + { + "word": "révolutionnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolutionary", + "example_sentence_native": "C'est une idée vraiment révolutionnaire.", + "example_sentence_english": "It's a truly revolutionary idea.", + "pos": "adjective", + "word_frequency": 3185 + }, + { + "word": "serre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greenhouse", + "example_sentence_native": "Les tomates poussent bien dans la serre.", + "example_sentence_english": "Tomatoes grow well in the greenhouse.", + "pos": "noun", + "word_frequency": 3186 + }, + { + "word": "sms", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "text message", + "example_sentence_native": "J'ai envoyé un SMS à mon ami.", + "example_sentence_english": "I sent a text message to my friend.", + "pos": "noun", + "word_frequency": 3187 + }, + { + "word": "soigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat", + "example_sentence_native": "Le médecin va soigner sa blessure.", + "example_sentence_english": "The doctor will treat his injury.", + "pos": "verb", + "word_frequency": 3188 + }, + { + "word": "stabilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stability", + "example_sentence_native": "La stabilité économique est essentielle.", + "example_sentence_english": "Economic stability is essential.", + "pos": "noun", + "word_frequency": 3189 + }, + { + "word": "statue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "statue", + "example_sentence_native": "La statue est très ancienne.", + "example_sentence_english": "The statue is very old.", + "pos": "noun", + "word_frequency": 3190 + }, + { + "word": "suggérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suggest", + "example_sentence_native": "Je suggère que nous partions tôt.", + "example_sentence_english": "I suggest that we leave early.", + "pos": "verb", + "word_frequency": 3191 + }, + { + "word": "vapeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steam", + "example_sentence_native": "L'eau se transforme en vapeur quand elle bout.", + "example_sentence_english": "Water turns into steam when it boils.", + "pos": "noun", + "word_frequency": 3192 + }, + { + "word": "vendeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seller", + "example_sentence_native": "Le vendeur m'a bien conseillé.", + "example_sentence_english": "The seller advised me well.", + "pos": "noun", + "word_frequency": 3193 + }, + { + "word": "épée", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sword", + "example_sentence_native": "Le chevalier portait une épée.", + "example_sentence_english": "The knight carried a sword.", + "pos": "noun", + "word_frequency": 3194 + }, + { + "word": "architecte", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "architect", + "example_sentence_native": "L'architecte a conçu un beau bâtiment.", + "example_sentence_english": "The architect designed a beautiful building.", + "pos": "noun", + "word_frequency": 3199 + }, + { + "word": "bol", + "article_with_word": "le bol", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bowl", + "example_sentence_native": "Il a mangé sa soupe dans un grand bol.", + "example_sentence_english": "He ate his soup in a large bowl.", + "pos": "noun", + "word_frequency": 3201 + }, + { + "word": "coalition", + "article_with_word": "la coalition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coalition", + "example_sentence_native": "Une coalition de partis politiques a été formée.", + "example_sentence_english": "A coalition of political parties was formed.", + "pos": "noun", + "word_frequency": 3202 + }, + { + "word": "combinaison", + "article_with_word": "la combinaison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combination", + "example_sentence_native": "La combinaison de ces couleurs est très agréable.", + "example_sentence_english": "The combination of these colors is very pleasant.", + "pos": "noun", + "word_frequency": 3203 + }, + { + "word": "concentrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concentrate", + "example_sentence_native": "Il est difficile de se concentrer avec tout ce bruit.", + "example_sentence_english": "It's difficult to concentrate with all this noise.", + "pos": "verb", + "word_frequency": 3204 + }, + { + "word": "contacter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to contact", + "example_sentence_native": "N'hésitez pas à me contacter si vous avez des questions.", + "example_sentence_english": "Don't hesitate to contact me if you have any questions.", + "pos": "verb", + "word_frequency": 3205 + }, + { + "word": "conte", + "article_with_word": "le conte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tale", + "example_sentence_native": "Les enfants aiment écouter des contes de fées.", + "example_sentence_english": "Children like to listen to fairy tales.", + "pos": "noun", + "word_frequency": 3206 + }, + { + "word": "cri", + "article_with_word": "le cri", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cry", + "example_sentence_native": "On a entendu un cri dans la nuit.", + "example_sentence_english": "A cry was heard in the night.", + "pos": "noun", + "word_frequency": 3207 + }, + { + "word": "diagnostic", + "article_with_word": "le diagnostic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnosis", + "example_sentence_native": "Le médecin a posé un diagnostic précis.", + "example_sentence_english": "The doctor made an accurate diagnosis.", + "pos": "noun", + "word_frequency": 3208 + }, + { + "word": "dragon", + "article_with_word": "le dragon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dragon", + "example_sentence_native": "Dans les légendes, les dragons crachent du feu.", + "example_sentence_english": "In legends, dragons breathe fire.", + "pos": "noun", + "word_frequency": 3210 + }, + { + "word": "démontrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demonstrate", + "example_sentence_native": "Il a démontré sa théorie avec des preuves solides.", + "example_sentence_english": "He demonstrated his theory with solid evidence.", + "pos": "verb", + "word_frequency": 3211 + }, + { + "word": "esclave", + "article_with_word": "l'esclave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slave", + "example_sentence_native": "L'esclave a été libéré.", + "example_sentence_english": "The slave was freed.", + "pos": "noun", + "word_frequency": 3212 + }, + { + "word": "fabrique", + "article_with_word": "la fabrique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "factory", + "example_sentence_native": "Cette fabrique produit des voitures électriques.", + "example_sentence_english": "This factory produces electric cars.", + "pos": "noun", + "word_frequency": 3213 + }, + { + "word": "fatigué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tired", + "example_sentence_native": "Je suis très fatigué après cette longue journée.", + "example_sentence_english": "I am very tired after this long day.", + "pos": "adjective", + "word_frequency": 3214 + }, + { + "word": "flash", + "article_with_word": "le flash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flash", + "example_sentence_native": "Le flash de l'appareil photo a aveuglé tout le monde.", + "example_sentence_english": "The camera flash blinded everyone.", + "pos": "noun", + "word_frequency": 3216 + }, + { + "word": "gain", + "article_with_word": "le gain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gain", + "example_sentence_native": "Le gain de cette opération est significatif.", + "example_sentence_english": "The gain from this operation is significant.", + "pos": "noun", + "word_frequency": 3217 + }, + { + "word": "grandir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to grow (up)", + "example_sentence_native": "Les enfants grandissent vite.", + "example_sentence_english": "Children grow up fast.", + "pos": "verb", + "word_frequency": 3218 + }, + { + "word": "gêne", + "article_with_word": "la gêne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discomfort", + "example_sentence_native": "Il a ressenti une certaine gêne en parlant en public.", + "example_sentence_english": "He felt some discomfort speaking in public.", + "pos": "noun", + "word_frequency": 3219 + }, + { + "word": "imagination", + "article_with_word": "l'imagination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imagination", + "example_sentence_native": "Les enfants ont beaucoup d'imagination.", + "example_sentence_english": "Children have a lot of imagination.", + "pos": "noun", + "word_frequency": 3220 + }, + { + "word": "introduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to introduce", + "example_sentence_native": "Il a introduit un nouveau concept dans la discussion.", + "example_sentence_english": "He introduced a new concept into the discussion.", + "pos": "verb", + "word_frequency": 3221 + }, + { + "word": "inventer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invent", + "example_sentence_native": "Thomas Edison a inventé l'ampoule électrique.", + "example_sentence_english": "Thomas Edison invented the light bulb.", + "pos": "verb", + "word_frequency": 3222 + }, + { + "word": "législation", + "article_with_word": "la législation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislation", + "example_sentence_native": "La nouvelle législation est entrée en vigueur.", + "example_sentence_english": "The new legislation came into effect.", + "pos": "noun", + "word_frequency": 3226 + }, + { + "word": "mesurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to measure", + "example_sentence_native": "Il faut mesurer la pièce avant d'acheter les meubles.", + "example_sentence_english": "You need to measure the room before buying the furniture.", + "pos": "verb", + "word_frequency": 3227 + }, + { + "word": "musicien", + "article_with_word": "le musicien", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musician", + "example_sentence_native": "Mon frère est un excellent musicien.", + "example_sentence_english": "My brother is an excellent musician.", + "pos": "noun", + "word_frequency": 3229 + }, + { + "word": "pile", + "article_with_word": "la pile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "battery", + "example_sentence_native": "La télécommande a besoin d'une nouvelle pile.", + "example_sentence_english": "The remote control needs a new battery.", + "pos": "noun", + "word_frequency": 3230 + }, + { + "word": "placé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "placed", + "example_sentence_native": "Le livre est bien placé sur l'étagère.", + "example_sentence_english": "The book is well placed on the shelf.", + "pos": "adjective", + "word_frequency": 3231 + }, + { + "word": "prestation", + "article_with_word": "la prestation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "service", + "example_sentence_native": "La prestation de l'artiste était incroyable.", + "example_sentence_english": "The artist's performance was incredible.", + "pos": "noun", + "word_frequency": 3232 + }, + { + "word": "prononcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pronounce", + "example_sentence_native": "Il est difficile de prononcer ce mot.", + "example_sentence_english": "It's difficult to pronounce this word.", + "pos": "verb", + "word_frequency": 3233 + }, + { + "word": "provisoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisional", + "example_sentence_native": "C'est une solution provisoire.", + "example_sentence_english": "It's a provisional solution.", + "pos": "adjective", + "word_frequency": 3234 + }, + { + "word": "psychologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychological", + "example_sentence_native": "L'impact psychologique de l'événement était profond.", + "example_sentence_english": "The psychological impact of the event was profound.", + "pos": "adjective", + "word_frequency": 3235 + }, + { + "word": "purement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purely", + "example_sentence_native": "C'est une décision purement économique.", + "example_sentence_english": "It's a purely economic decision.", + "pos": "adverb", + "word_frequency": 3236 + }, + { + "word": "roche", + "article_with_word": "la roche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock", + "example_sentence_native": "Les montagnes sont faites de roche.", + "example_sentence_english": "Mountains are made of rock.", + "pos": "noun", + "word_frequency": 3237 + }, + { + "word": "satisfaction", + "article_with_word": "la satisfaction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satisfaction", + "example_sentence_native": "Il a exprimé sa satisfaction après le repas.", + "example_sentence_english": "He expressed his satisfaction after the meal.", + "pos": "noun", + "word_frequency": 3238 + }, + { + "word": "smartphone", + "article_with_word": "le smartphone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smartphone", + "example_sentence_native": "J'ai acheté un nouveau smartphone.", + "example_sentence_english": "I bought a new smartphone.", + "pos": "noun", + "word_frequency": 3239 + }, + { + "word": "souligner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to underline;to highlight", + "example_sentence_native": "Il faut souligner l'importance de cette décision.", + "example_sentence_english": "It is necessary to highlight the importance of this decision.", + "pos": "verb", + "word_frequency": 3240 + }, + { + "word": "surveiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to monitor;to watch over", + "example_sentence_native": "Les parents surveillent leurs enfants au parc.", + "example_sentence_english": "The parents watch over their children in the park.", + "pos": "verb", + "word_frequency": 3241 + }, + { + "word": "séparer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to separate", + "example_sentence_native": "Ils ont décidé de se séparer après des années de mariage.", + "example_sentence_english": "They decided to separate after years of marriage.", + "pos": "verb", + "word_frequency": 3243 + }, + { + "word": "époux", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spouse;husband", + "example_sentence_native": "Son époux l'attendait à la gare.", + "example_sentence_english": "Her husband was waiting for her at the station.", + "pos": "noun", + "word_frequency": 3245 + }, + { + "word": "évaluer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evaluate;to assess", + "example_sentence_native": "Nous devons évaluer les risques avant de prendre une décision.", + "example_sentence_english": "We must evaluate the risks before making a decision.", + "pos": "verb", + "word_frequency": 3246 + }, + { + "word": "altitude", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "altitude", + "example_sentence_native": "L'avion a atteint son altitude de croisière.", + "example_sentence_english": "The plane reached its cruising altitude.", + "pos": "noun", + "word_frequency": 3247 + }, + { + "word": "amuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to amuse;to entertain", + "example_sentence_native": "Ce film va vous amuser.", + "example_sentence_english": "This movie will amuse you.", + "pos": "verb", + "word_frequency": 3248 + }, + { + "word": "animé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lively;animated", + "example_sentence_native": "Le quartier est très animé le soir.", + "example_sentence_english": "The neighborhood is very lively in the evening.", + "pos": "adjective", + "word_frequency": 3249 + }, + { + "word": "anonyme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymous", + "example_sentence_native": "L'auteur de la lettre est resté anonyme.", + "example_sentence_english": "The author of the letter remained anonymous.", + "pos": "adjective", + "word_frequency": 3250 + }, + { + "word": "arrestation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrest", + "example_sentence_native": "L'arrestation du suspect a eu lieu ce matin.", + "example_sentence_english": "The suspect's arrest took place this morning.", + "pos": "noun", + "word_frequency": 3251 + }, + { + "word": "assis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seated;sitting", + "example_sentence_native": "Il est assis sur une chaise.", + "example_sentence_english": "He is sitting on a chair.", + "pos": "adjective", + "word_frequency": 3252 + }, + { + "word": "automatiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatically", + "example_sentence_native": "La porte s'ouvre automatiquement.", + "example_sentence_english": "The door opens automatically.", + "pos": "adverb", + "word_frequency": 3253 + }, + { + "word": "bloquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to block", + "example_sentence_native": "La neige a bloqué la route.", + "example_sentence_english": "The snow blocked the road.", + "pos": "verb", + "word_frequency": 3255 + }, + { + "word": "bosse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bump;hump;knack", + "example_sentence_native": "Il a une bosse sur la tête après être tombé.", + "example_sentence_english": "He has a bump on his head after falling.", + "pos": "noun", + "word_frequency": 3256 + }, + { + "word": "brut", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raw;crude;gross", + "example_sentence_native": "Le produit intérieur brut (PIB) a augmenté.", + "example_sentence_english": "The gross domestic product (GDP) increased.", + "pos": "adjective", + "word_frequency": 3257 + }, + { + "word": "cardiaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cardiac;heart-related", + "example_sentence_native": "Il souffre d'un problème cardiaque.", + "example_sentence_english": "He suffers from a heart problem.", + "pos": "adjective", + "word_frequency": 3258 + }, + { + "word": "carrefour", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intersection;crossroads", + "example_sentence_native": "Tournez à droite au prochain carrefour.", + "example_sentence_english": "Turn right at the next intersection.", + "pos": "noun", + "word_frequency": 3259 + }, + { + "word": "cesser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop;to cease", + "example_sentence_native": "La pluie a cessé de tomber.", + "example_sentence_english": "The rain stopped falling.", + "pos": "verb", + "word_frequency": 3260 + }, + { + "word": "citation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quote;citation;summons", + "example_sentence_native": "J'aime cette citation de Victor Hugo.", + "example_sentence_english": "I like this quote from Victor Hugo.", + "pos": "noun", + "word_frequency": 3261 + }, + { + "word": "confort", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfort", + "example_sentence_native": "Cette chaise offre un grand confort.", + "example_sentence_english": "This chair offers great comfort.", + "pos": "noun", + "word_frequency": 3262 + }, + { + "word": "congé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leave;day off;holiday", + "example_sentence_native": "Il est en congé maladie cette semaine.", + "example_sentence_english": "He is on sick leave this week.", + "pos": "noun", + "word_frequency": 3263 + }, + { + "word": "contrainte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constraint;compulsion", + "example_sentence_native": "Nous devons travailler sous de fortes contraintes de temps.", + "example_sentence_english": "We must work under strong time constraints.", + "pos": "noun", + "word_frequency": 3264 + }, + { + "word": "cuir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leather", + "example_sentence_native": "J'ai acheté un sac en cuir.", + "example_sentence_english": "I bought a leather bag.", + "pos": "noun", + "word_frequency": 3265 + }, + { + "word": "cv", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "CV;resume", + "example_sentence_native": "N'oubliez pas de joindre votre CV à la candidature.", + "example_sentence_english": "Don't forget to attach your CV to the application.", + "pos": "noun", + "word_frequency": 3266 + }, + { + "word": "câble", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cable", + "example_sentence_native": "Le câble d'alimentation est trop court.", + "example_sentence_english": "The power cable is too short.", + "pos": "noun", + "word_frequency": 3267 + }, + { + "word": "destiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destined;intended", + "example_sentence_native": "Ce livre est destiné aux étudiants.", + "example_sentence_english": "This book is intended for students.", + "pos": "adjective", + "word_frequency": 3268 + }, + { + "word": "encourager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to encourage", + "example_sentence_native": "Ses parents l'encouragent à poursuivre ses rêves.", + "example_sentence_english": "His parents encourage him to pursue his dreams.", + "pos": "verb", + "word_frequency": 3270 + }, + { + "word": "exiger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demand;to require", + "example_sentence_native": "Le client exige un remboursement immédiat.", + "example_sentence_english": "The customer demands an immediate refund.", + "pos": "verb", + "word_frequency": 3271 + }, + { + "word": "exigence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "requirement;demand;high standard", + "example_sentence_native": "Les exigences du poste sont élevées.", + "example_sentence_english": "The requirements for the position are high.", + "pos": "noun", + "word_frequency": 3272 + }, + { + "word": "herbe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grass;herb", + "example_sentence_native": "Les vaches mangent de l'herbe dans le pré.", + "example_sentence_english": "The cows eat grass in the meadow.", + "pos": "noun", + "word_frequency": 3273 + }, + { + "word": "invitation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invitation", + "example_sentence_native": "J'ai reçu une invitation à la fête.", + "example_sentence_english": "I received an invitation to the party.", + "pos": "noun", + "word_frequency": 3275 + }, + { + "word": "jazz", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jazz", + "example_sentence_native": "J'adore écouter du jazz le soir.", + "example_sentence_english": "I love listening to jazz in the evening.", + "pos": "noun", + "word_frequency": 3276 + }, + { + "word": "masculin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "masculine", + "example_sentence_native": "Le mot \"homme\" est masculin.", + "example_sentence_english": "The word \"homme\" is masculine.", + "pos": "adjective", + "word_frequency": 3279 + }, + { + "word": "monstre", + "article_with_word": "le monstre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monster", + "example_sentence_native": "Les enfants ont eu peur du monstre dans le film.", + "example_sentence_english": "The children were afraid of the monster in the movie.", + "pos": "noun", + "word_frequency": 3281 + }, + { + "word": "orchestre", + "article_with_word": "l’orchestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchestra", + "example_sentence_native": "L’orchestre a joué une magnifique symphonie.", + "example_sentence_english": "The orchestra played a magnificent symphony.", + "pos": "noun", + "word_frequency": 3284 + }, + { + "word": "patte", + "article_with_word": "la patte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paw", + "example_sentence_native": "Le chien a levé sa patte pour saluer.", + "example_sentence_english": "The dog raised its paw to greet.", + "pos": "noun", + "word_frequency": 3285 + }, + { + "word": "pleinement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fully;completely", + "example_sentence_native": "Il a pleinement conscience de ses responsabilités.", + "example_sentence_english": "He is fully aware of his responsibilities.", + "pos": "adverb", + "word_frequency": 3286 + }, + { + "word": "pompier", + "article_with_word": "le pompier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "firefighter", + "example_sentence_native": "Le pompier a éteint l’incendie rapidement.", + "example_sentence_english": "The firefighter extinguished the fire quickly.", + "pos": "noun", + "word_frequency": 3287 + }, + { + "word": "racine", + "article_with_word": "la racine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "root", + "example_sentence_native": "Les racines de l’arbre sont profondes.", + "example_sentence_english": "The roots of the tree are deep.", + "pos": "noun", + "word_frequency": 3288 + }, + { + "word": "romantique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "romantic", + "example_sentence_native": "C’était un dîner très romantique.", + "example_sentence_english": "It was a very romantic dinner.", + "pos": "adjective", + "word_frequency": 3290 + }, + { + "word": "rugby", + "article_with_word": "le rugby", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rugby", + "example_sentence_native": "Le rugby est un sport populaire en France.", + "example_sentence_english": "Rugby is a popular sport in France.", + "pos": "noun", + "word_frequency": 3291 + }, + { + "word": "soupe", + "article_with_word": "la soupe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soup", + "example_sentence_native": "J’ai mangé une délicieuse soupe aux légumes.", + "example_sentence_english": "I ate a delicious vegetable soup.", + "pos": "noun", + "word_frequency": 3292 + }, + { + "word": "spécialiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to specialize", + "example_sentence_native": "Il veut se spécialiser en informatique.", + "example_sentence_english": "He wants to specialize in computer science.", + "pos": "verb", + "word_frequency": 3293 + }, + { + "word": "survivre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to survive", + "example_sentence_native": "Ils ont réussi à survivre dans des conditions difficiles.", + "example_sentence_english": "They managed to survive in difficult conditions.", + "pos": "verb", + "word_frequency": 3294 + }, + { + "word": "symbolique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolic", + "example_sentence_native": "Ce geste a une valeur symbolique forte.", + "example_sentence_english": "This gesture has a strong symbolic value.", + "pos": "adjective", + "word_frequency": 3295 + }, + { + "word": "synthèse", + "article_with_word": "la synthèse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synthesis;summary", + "example_sentence_native": "Il a présenté une synthèse claire du rapport.", + "example_sentence_english": "He presented a clear summary of the report.", + "pos": "noun", + "word_frequency": 3296 + }, + { + "word": "tournant", + "article_with_word": "le tournant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turning point;bend", + "example_sentence_native": "C’était un tournant décisif dans sa carrière.", + "example_sentence_english": "It was a decisive turning point in his career.", + "pos": "noun", + "word_frequency": 3298 + }, + { + "word": "acquérir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquire", + "example_sentence_native": "Il souhaite acquérir de nouvelles compétences.", + "example_sentence_english": "He wishes to acquire new skills.", + "pos": "verb", + "word_frequency": 3299 + }, + { + "word": "apercevoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to glimpse;to perceive", + "example_sentence_native": "J’ai aperçu mon ami dans la foule.", + "example_sentence_english": "I glimpsed my friend in the crowd.", + "pos": "verb", + "word_frequency": 3300 + }, + { + "word": "assistant", + "article_with_word": "l’assistant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "assistant", + "example_sentence_native": "L’assistant a aidé le professeur.", + "example_sentence_english": "The assistant helped the professor.", + "pos": "noun", + "word_frequency": 3301 + }, + { + "word": "autonome", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomous;independent", + "example_sentence_native": "Elle est très autonome dans son travail.", + "example_sentence_english": "She is very independent in her work.", + "pos": "adjective", + "word_frequency": 3302 + }, + { + "word": "baron", + "article_with_word": "le baron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baron", + "example_sentence_native": "Le baron possédait un grand domaine.", + "example_sentence_english": "The baron owned a large estate.", + "pos": "noun", + "word_frequency": 3303 + }, + { + "word": "barrage", + "article_with_word": "le barrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dam;barrier", + "example_sentence_native": "Le barrage retient l’eau du lac.", + "example_sentence_english": "The dam holds back the lake water.", + "pos": "noun", + "word_frequency": 3304 + }, + { + "word": "brillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brilliant;shiny", + "example_sentence_native": "Il a eu une idée brillante pour le projet.", + "example_sentence_english": "He had a brilliant idea for the project.", + "pos": "adjective", + "word_frequency": 3305 + }, + { + "word": "béton", + "article_with_word": "le béton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concrete", + "example_sentence_native": "Le bâtiment est construit en béton armé.", + "example_sentence_english": "The building is constructed of reinforced concrete.", + "pos": "noun", + "word_frequency": 3306 + }, + { + "word": "canard", + "article_with_word": "le canard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duck", + "example_sentence_native": "Le canard nage sur l’étang.", + "example_sentence_english": "The duck swims on the pond.", + "pos": "noun", + "word_frequency": 3308 + }, + { + "word": "case", + "article_with_word": "la case", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box;square;hut", + "example_sentence_native": "Cochez la bonne case sur le formulaire.", + "example_sentence_english": "Check the correct box on the form.", + "pos": "noun", + "word_frequency": 3309 + }, + { + "word": "cathédrale", + "article_with_word": "la cathédrale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cathedral", + "example_sentence_native": "La cathédrale Notre-Dame est un monument célèbre.", + "example_sentence_english": "Notre-Dame Cathedral is a famous monument.", + "pos": "noun", + "word_frequency": 3310 + }, + { + "word": "causer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause;to chat", + "example_sentence_native": "Le vent a causé des dégâts importants.", + "example_sentence_english": "The wind caused significant damage.", + "pos": "verb", + "word_frequency": 3311 + }, + { + "word": "cave", + "article_with_word": "la cave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cellar;wine cellar", + "example_sentence_native": "Nous avons stocké le vin dans la cave.", + "example_sentence_english": "We stored the wine in the cellar.", + "pos": "noun", + "word_frequency": 3312 + }, + { + "word": "chéri", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dear;darling", + "example_sentence_native": "C’est mon livre chéri.", + "example_sentence_english": "It’s my dear book.", + "pos": "adjective", + "word_frequency": 3313 + }, + { + "word": "cirque", + "article_with_word": "le cirque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circus", + "example_sentence_native": "Les enfants ont adoré le spectacle du cirque.", + "example_sentence_english": "The children loved the circus show.", + "pos": "noun", + "word_frequency": 3314 + }, + { + "word": "commander", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to order;to command", + "example_sentence_native": "Je voudrais commander une pizza.", + "example_sentence_english": "I would like to order a pizza.", + "pos": "verb", + "word_frequency": 3315 + }, + { + "word": "compagnon", + "article_with_word": "le compagnon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "companion;partner", + "example_sentence_native": "Il est un fidèle compagnon de voyage.", + "example_sentence_english": "He is a faithful travel companion.", + "pos": "noun", + "word_frequency": 3316 + }, + { + "word": "confusion", + "article_with_word": "la confusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confusion", + "example_sentence_native": "Il y avait une grande confusion après l’annonce.", + "example_sentence_english": "There was great confusion after the announcement.", + "pos": "noun", + "word_frequency": 3317 + }, + { + "word": "contribuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contribute", + "example_sentence_native": "Chacun doit contribuer à la réussite du projet.", + "example_sentence_english": "Everyone must contribute to the success of the project.", + "pos": "verb", + "word_frequency": 3318 + }, + { + "word": "dignité", + "article_with_word": "la dignité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dignity", + "example_sentence_native": "Il a toujours agi avec dignité.", + "example_sentence_english": "He always acted with dignity.", + "pos": "noun", + "word_frequency": 3319 + }, + { + "word": "diminution", + "article_with_word": "la diminution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decrease;reduction", + "example_sentence_native": "Il y a eu une diminution significative des ventes.", + "example_sentence_english": "There has been a significant decrease in sales.", + "pos": "noun", + "word_frequency": 3320 + }, + { + "word": "délit", + "article_with_word": "le délit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offense;misdemeanor", + "example_sentence_native": "Le vol est un délit puni par la loi.", + "example_sentence_english": "Theft is an offense punishable by law.", + "pos": "noun", + "word_frequency": 3321 + }, + { + "word": "désigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to designate;to appoint;to indicate", + "example_sentence_native": "Il a été désigné pour diriger le projet.", + "example_sentence_english": "He was designated to lead the project.", + "pos": "verb", + "word_frequency": 3322 + }, + { + "word": "encontre", + "article_with_word": "l'encontre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "against;contrary to (in the expression 'à l'encontre de')", + "example_sentence_native": "Ses actions vont à l'encontre de nos principes.", + "example_sentence_english": "His actions go against our principles.", + "pos": "noun", + "word_frequency": 3323 + }, + { + "word": "esthétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aesthetic", + "example_sentence_native": "L'aspect esthétique du bâtiment est impressionnant.", + "example_sentence_english": "The aesthetic aspect of the building is impressive.", + "pos": "adjective", + "word_frequency": 3324 + }, + { + "word": "garantir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guarantee;to ensure", + "example_sentence_native": "Nous ne pouvons pas garantir le succès.", + "example_sentence_english": "We cannot guarantee success.", + "pos": "verb", + "word_frequency": 3327 + }, + { + "word": "germain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Germanic;(first) cousin (in 'cousin germain')", + "example_sentence_native": "C'est mon cousin germain.", + "example_sentence_english": "He is my first cousin.", + "pos": "adjective", + "word_frequency": 3328 + }, + { + "word": "identique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identical", + "example_sentence_native": "Les deux copies sont identiques.", + "example_sentence_english": "The two copies are identical.", + "pos": "adjective", + "word_frequency": 3329 + }, + { + "word": "individuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "individual", + "example_sentence_native": "Chaque étudiant a un plan individuel.", + "example_sentence_english": "Each student has an individual plan.", + "pos": "adjective", + "word_frequency": 3330 + }, + { + "word": "louer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rent;to praise", + "example_sentence_native": "Nous allons louer une voiture pour les vacances.", + "example_sentence_english": "We are going to rent a car for the holidays.", + "pos": "verb", + "word_frequency": 3335 + }, + { + "word": "marchand", + "article_with_word": "le marchand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merchant;dealer", + "example_sentence_native": "Le marchand de fruits est au marché.", + "example_sentence_english": "The fruit merchant is at the market.", + "pos": "noun", + "word_frequency": 3336 + }, + { + "word": "maréchal", + "article_with_word": "le maréchal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marshal;farrier", + "example_sentence_native": "Le maréchal-ferrant s'occupe des chevaux.", + "example_sentence_english": "The farrier takes care of the horses.", + "pos": "noun", + "word_frequency": 3337 + }, + { + "word": "mental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mental", + "example_sentence_native": "La santé mentale est très importante.", + "example_sentence_english": "Mental health is very important.", + "pos": "adjective", + "word_frequency": 3338 + }, + { + "word": "meuble", + "article_with_word": "le meuble", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piece of furniture", + "example_sentence_native": "J'ai acheté un nouveau meuble pour le salon.", + "example_sentence_english": "I bought a new piece of furniture for the living room.", + "pos": "noun", + "word_frequency": 3339 + }, + { + "word": "médiatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "media-related;media (adj.)", + "example_sentence_native": "L'événement a eu une grande couverture médiatique.", + "example_sentence_english": "The event had extensive media coverage.", + "pos": "adjective", + "word_frequency": 3340 + }, + { + "word": "mépris", + "article_with_word": "le mépris", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contempt;scorn", + "example_sentence_native": "Il a montré un profond mépris pour les règles.", + "example_sentence_english": "He showed deep contempt for the rules.", + "pos": "noun", + "word_frequency": 3341 + }, + { + "word": "panne", + "article_with_word": "la panne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breakdown;failure", + "example_sentence_native": "La voiture est tombée en panne sur l'autoroute.", + "example_sentence_english": "The car broke down on the highway.", + "pos": "noun", + "word_frequency": 3342 + }, + { + "word": "panneau", + "article_with_word": "le panneau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panel;sign", + "example_sentence_native": "Le panneau de signalisation était illisible.", + "example_sentence_english": "The road sign was unreadable.", + "pos": "noun", + "word_frequency": 3343 + }, + { + "word": "philosophe", + "article_with_word": "le philosophe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosopher", + "example_sentence_native": "Platon était un grand philosophe grec.", + "example_sentence_english": "Plato was a great Greek philosopher.", + "pos": "noun", + "word_frequency": 3344 + }, + { + "word": "reproche", + "article_with_word": "le reproche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproach;criticism", + "example_sentence_native": "Il n'a fait aucun reproche à son équipe.", + "example_sentence_english": "He made no criticism of his team.", + "pos": "noun", + "word_frequency": 3346 + }, + { + "word": "reproduction", + "article_with_word": "la reproduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproduction", + "example_sentence_native": "La reproduction de cette œuvre est interdite.", + "example_sentence_english": "The reproduction of this work is forbidden.", + "pos": "noun", + "word_frequency": 3347 + }, + { + "word": "rigueur", + "article_with_word": "la rigueur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rigor;strictness", + "example_sentence_native": "Il travaille avec une grande rigueur.", + "example_sentence_english": "He works with great rigor.", + "pos": "noun", + "word_frequency": 3348 + }, + { + "word": "réparer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to repair;to fix", + "example_sentence_native": "Il doit réparer sa voiture.", + "example_sentence_english": "He needs to repair his car.", + "pos": "verb", + "word_frequency": 3350 + }, + { + "word": "satisfaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to satisfy", + "example_sentence_native": "Ce résultat ne me satisfait pas.", + "example_sentence_english": "This result does not satisfy me.", + "pos": "verb", + "word_frequency": 3351 + }, + { + "word": "sonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ring;to sound", + "example_sentence_native": "Le téléphone a sonné.", + "example_sentence_english": "The phone rang.", + "pos": "verb", + "word_frequency": 3352 + }, + { + "word": "suspension", + "article_with_word": "la suspension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspension", + "example_sentence_native": "La suspension du permis de conduire est une sanction.", + "example_sentence_english": "The suspension of the driving license is a sanction.", + "pos": "noun", + "word_frequency": 3353 + }, + { + "word": "tendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stretch;to tend;to hand (over)", + "example_sentence_native": "Il a tendu la main pour la saluer.", + "example_sentence_english": "He held out his hand to greet her.", + "pos": "verb", + "word_frequency": 3355 + }, + { + "word": "étendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to extend;to spread", + "example_sentence_native": "Il faut étendre le linge.", + "example_sentence_english": "The laundry needs to be hung out.", + "pos": "verb", + "word_frequency": 3356 + }, + { + "word": "œuf", + "article_with_word": "l'œuf", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "egg", + "example_sentence_native": "Je mange un œuf au petit-déjeuner.", + "example_sentence_english": "I eat an egg for breakfast.", + "pos": "noun", + "word_frequency": 3357 + }, + { + "word": "asile", + "article_with_word": "l'asile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asylum;shelter", + "example_sentence_native": "Il a demandé l'asile politique.", + "example_sentence_english": "He requested political asylum.", + "pos": "noun", + "word_frequency": 3359 + }, + { + "word": "assaut", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assault", + "example_sentence_native": "L’assaut a été lancé à l’aube.", + "example_sentence_english": "The assault was launched at dawn.", + "pos": "noun", + "word_frequency": 3360 + }, + { + "word": "avancée", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advance", + "example_sentence_native": "C’est une avancée significative dans la recherche.", + "example_sentence_english": "This is a significant advance in research.", + "pos": "noun", + "word_frequency": 3361 + }, + { + "word": "bourgeois", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bourgeois", + "example_sentence_native": "Le bourgeois vivait confortablement dans sa grande maison.", + "example_sentence_english": "The bourgeois lived comfortably in his large house.", + "pos": "noun", + "word_frequency": 3362 + }, + { + "word": "canton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canton", + "example_sentence_native": "Chaque canton a son propre gouvernement local.", + "example_sentence_english": "Each canton has its own local government.", + "pos": "noun", + "word_frequency": 3364 + }, + { + "word": "condamnation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction", + "example_sentence_native": "La condamnation a été prononcée après un long procès.", + "example_sentence_english": "The conviction was pronounced after a long trial.", + "pos": "noun", + "word_frequency": 3366 + }, + { + "word": "connexion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "connection", + "example_sentence_native": "J’ai perdu ma connexion internet.", + "example_sentence_english": "I lost my internet connection.", + "pos": "noun", + "word_frequency": 3367 + }, + { + "word": "connu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "known", + "example_sentence_native": "C’est un acteur très connu.", + "example_sentence_english": "He is a very known actor.", + "pos": "adjective", + "word_frequency": 3368 + }, + { + "word": "consacré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedicated", + "example_sentence_native": "Il a consacré sa vie à la science.", + "example_sentence_english": "He dedicated his life to science.", + "pos": "adjective", + "word_frequency": 3369 + }, + { + "word": "crainte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fear", + "example_sentence_native": "Il a exprimé sa crainte de l’échec.", + "example_sentence_english": "He expressed his fear of failure.", + "pos": "noun", + "word_frequency": 3370 + }, + { + "word": "divorce", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divorce", + "example_sentence_native": "Leur divorce a été prononcé l’année dernière.", + "example_sentence_english": "Their divorce was pronounced last year.", + "pos": "noun", + "word_frequency": 3371 + }, + { + "word": "doublé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "double", + "example_sentence_native": "L’attaquant a réalisé un doublé dans le match.", + "example_sentence_english": "The striker scored a double in the match.", + "pos": "noun", + "word_frequency": 3372 + }, + { + "word": "dramatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dramatic", + "example_sentence_native": "La situation est devenue dramatique.", + "example_sentence_english": "The situation became dramatic.", + "pos": "adjective", + "word_frequency": 3373 + }, + { + "word": "délire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delirium", + "example_sentence_native": "Il était en plein délire à cause de la fièvre.", + "example_sentence_english": "He was in full delirium because of the fever.", + "pos": "noun", + "word_frequency": 3374 + }, + { + "word": "démonstration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstration", + "example_sentence_native": "La démonstration du produit a été très convaincante.", + "example_sentence_english": "The product demonstration was very convincing.", + "pos": "noun", + "word_frequency": 3375 + }, + { + "word": "dérouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unfold", + "example_sentence_native": "La cérémonie va se dérouler dans le jardin.", + "example_sentence_english": "The ceremony will unfold in the garden.", + "pos": "verb", + "word_frequency": 3376 + }, + { + "word": "expansion", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expansion", + "example_sentence_native": "L’entreprise est en pleine expansion.", + "example_sentence_english": "The company is in full expansion.", + "pos": "noun", + "word_frequency": 3377 + }, + { + "word": "facilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ease", + "example_sentence_native": "Il a appris le français avec une grande facilité.", + "example_sentence_english": "He learned French with great ease.", + "pos": "noun", + "word_frequency": 3378 + }, + { + "word": "foie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liver", + "example_sentence_native": "Le foie est un organe important.", + "example_sentence_english": "The liver is an important organ.", + "pos": "noun", + "word_frequency": 3379 + }, + { + "word": "imaginaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginary", + "example_sentence_native": "Il vit dans un monde imaginaire.", + "example_sentence_english": "He lives in an imaginary world.", + "pos": "adjective", + "word_frequency": 3381 + }, + { + "word": "intensité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intensity", + "example_sentence_native": "L’intensité de la lumière était trop forte.", + "example_sentence_english": "The intensity of the light was too strong.", + "pos": "noun", + "word_frequency": 3382 + }, + { + "word": "laver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wash", + "example_sentence_native": "Je dois laver mes vêtements.", + "example_sentence_english": "I need to wash my clothes.", + "pos": "verb", + "word_frequency": 3383 + }, + { + "word": "majesté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "majesty", + "example_sentence_native": "Sa Majesté la Reine a salué la foule.", + "example_sentence_english": "Her Majesty the Queen greeted the crowd.", + "pos": "noun", + "word_frequency": 3385 + }, + { + "word": "panique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panic", + "example_sentence_native": "La panique s’est emparée de la foule.", + "example_sentence_english": "Panic seized the crowd.", + "pos": "noun", + "word_frequency": 3388 + }, + { + "word": "perception", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perception", + "example_sentence_native": "Sa perception de la réalité est différente.", + "example_sentence_english": "His perception of reality is different.", + "pos": "noun", + "word_frequency": 3389 + }, + { + "word": "physiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physically", + "example_sentence_native": "Il se sentait physiquement épuisé.", + "example_sentence_english": "He felt physically exhausted.", + "pos": "adverb", + "word_frequency": 3390 + }, + { + "word": "pique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jibe", + "example_sentence_native": "Il a lancé une pique à son adversaire.", + "example_sentence_english": "He made a jibe at his opponent.", + "pos": "noun", + "word_frequency": 3391 + }, + { + "word": "protocole", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protocol", + "example_sentence_native": "Le protocole de sécurité doit être respecté.", + "example_sentence_english": "The security protocol must be respected.", + "pos": "noun", + "word_frequency": 3393 + }, + { + "word": "préférence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preference", + "example_sentence_native": "J’ai une préférence pour le café noir.", + "example_sentence_english": "I have a preference for black coffee.", + "pos": "noun", + "word_frequency": 3394 + }, + { + "word": "rouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to drive", + "example_sentence_native": "La voiture roule vite sur l’autoroute.", + "example_sentence_english": "The car drives fast on the highway.", + "pos": "verb", + "word_frequency": 3397 + }, + { + "word": "roux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "red-haired", + "example_sentence_native": "Elle a les cheveux roux.", + "example_sentence_english": "She has red hair.", + "pos": "adjective", + "word_frequency": 3398 + }, + { + "word": "soixante", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixty", + "example_sentence_native": "Il a soixante ans.", + "example_sentence_english": "He is sixty years old.", + "pos": "numeral", + "word_frequency": 3399 + }, + { + "word": "stock", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stock", + "example_sentence_native": "Le magasin a un grand stock de produits.", + "example_sentence_english": "The store has a large stock of products.", + "pos": "noun", + "word_frequency": 3400 + }, + { + "word": "susceptible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "susceptible;sensitive;likely", + "example_sentence_native": "Il est très susceptible aux critiques.", + "example_sentence_english": "He is very sensitive to criticism.", + "pos": "adjective", + "word_frequency": 3401 + }, + { + "word": "sévère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "severe;strict", + "example_sentence_native": "Le professeur est très sévère mais juste.", + "example_sentence_english": "The teacher is very strict but fair.", + "pos": "adjective", + "word_frequency": 3402 + }, + { + "word": "sûreté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safety;security", + "example_sentence_native": "La sûreté des passagers est primordiale.", + "example_sentence_english": "Passenger safety is paramount.", + "pos": "noun", + "word_frequency": 3403 + }, + { + "word": "touristique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "touristic", + "example_sentence_native": "C'est une région très touristique en été.", + "example_sentence_english": "It's a very touristic region in summer.", + "pos": "adjective", + "word_frequency": 3404 + }, + { + "word": "variable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variable", + "example_sentence_native": "Le temps est très variable aujourd'hui.", + "example_sentence_english": "The weather is very variable today.", + "pos": "adjective", + "word_frequency": 3405 + }, + { + "word": "vengeance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenge;vengeance", + "example_sentence_native": "Il a juré vengeance après cette trahison.", + "example_sentence_english": "He swore revenge after this betrayal.", + "pos": "noun", + "word_frequency": 3406 + }, + { + "word": "écologie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ecology", + "example_sentence_native": "L'écologie est un sujet important de nos jours.", + "example_sentence_english": "Ecology is an important topic nowadays.", + "pos": "noun", + "word_frequency": 3408 + }, + { + "word": "édifice", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building;edifice", + "example_sentence_native": "Cet édifice historique est magnifique.", + "example_sentence_english": "This historic building is magnificent.", + "pos": "noun", + "word_frequency": 3409 + }, + { + "word": "afficher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to display;to post", + "example_sentence_native": "Il faut afficher les résultats sur le tableau.", + "example_sentence_english": "The results must be displayed on the board.", + "pos": "verb", + "word_frequency": 3411 + }, + { + "word": "arsenal", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arsenal", + "example_sentence_native": "L'arsenal de la ville est bien gardé.", + "example_sentence_english": "The city's arsenal is well guarded.", + "pos": "noun", + "word_frequency": 3415 + }, + { + "word": "avancé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advanced", + "example_sentence_native": "Il a un niveau avancé en français.", + "example_sentence_english": "He has an advanced level in French.", + "pos": "adjective", + "word_frequency": 3416 + }, + { + "word": "canapé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sofa;couch", + "example_sentence_native": "Le chat dort sur le canapé.", + "example_sentence_english": "The cat is sleeping on the sofa.", + "pos": "noun", + "word_frequency": 3420 + }, + { + "word": "chiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoying;boring (vulgar)", + "example_sentence_native": "Ce travail est vraiment chiant.", + "example_sentence_english": "This work is really annoying.", + "pos": "adjective", + "word_frequency": 3421 + }, + { + "word": "cimetière", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cemetery", + "example_sentence_native": "Le cimetière est situé près de l'église.", + "example_sentence_english": "The cemetery is located near the church.", + "pos": "noun", + "word_frequency": 3422 + }, + { + "word": "constructeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "builder;manufacturer", + "example_sentence_native": "Ce constructeur automobile est très réputé.", + "example_sentence_english": "This car manufacturer is very renowned.", + "pos": "noun", + "word_frequency": 3423 + }, + { + "word": "district", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "district", + "example_sentence_native": "C'est un district résidentiel calme.", + "example_sentence_english": "It's a quiet residential district.", + "pos": "noun", + "word_frequency": 3424 + }, + { + "word": "déficit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficit", + "example_sentence_native": "Le pays fait face à un important déficit budgétaire.", + "example_sentence_english": "The country is facing a significant budget deficit.", + "pos": "noun", + "word_frequency": 3425 + }, + { + "word": "démocrate", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democratic;democrat", + "example_sentence_native": "Il a des idées très démocrates.", + "example_sentence_english": "He has very democratic ideas.", + "pos": "adjective", + "word_frequency": 3426 + }, + { + "word": "expertise", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expertise", + "example_sentence_native": "Son expertise dans ce domaine est reconnue.", + "example_sentence_english": "His expertise in this field is recognized.", + "pos": "noun", + "word_frequency": 3428 + }, + { + "word": "fauteuil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "armchair", + "example_sentence_native": "Il aime lire dans son fauteuil confortable.", + "example_sentence_english": "He likes to read in his comfortable armchair.", + "pos": "noun", + "word_frequency": 3429 + }, + { + "word": "fragile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fragile", + "example_sentence_native": "Ces verres sont très fragiles.", + "example_sentence_english": "These glasses are very fragile.", + "pos": "adjective", + "word_frequency": 3430 + }, + { + "word": "garage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garage", + "example_sentence_native": "La voiture est garée dans le garage.", + "example_sentence_english": "The car is parked in the garage.", + "pos": "noun", + "word_frequency": 3433 + }, + { + "word": "gravité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravity;seriousness", + "example_sentence_native": "La gravité de la situation est alarmante.", + "example_sentence_english": "The seriousness of the situation is alarming.", + "pos": "noun", + "word_frequency": 3434 + }, + { + "word": "géographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographical", + "example_sentence_native": "Nous étudions la carte géographique.", + "example_sentence_english": "We are studying the geographical map.", + "pos": "adjective", + "word_frequency": 3435 + }, + { + "word": "illustre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illustrious;famous", + "example_sentence_native": "C'est un écrivain illustre de notre époque.", + "example_sentence_english": "He is an illustrious writer of our time.", + "pos": "adjective", + "word_frequency": 3439 + }, + { + "word": "inclure", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to include", + "example_sentence_native": "Nous devons inclure tout le monde dans la discussion.", + "example_sentence_english": "We must include everyone in the discussion.", + "pos": "verb", + "word_frequency": 3440 + }, + { + "word": "junior", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junior", + "example_sentence_native": "Il est le membre junior de l'équipe.", + "example_sentence_english": "He is the junior member of the team.", + "pos": "adjective", + "word_frequency": 3441 + }, + { + "word": "largeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "width", + "example_sentence_native": "La largeur de la table est d'un mètre.", + "example_sentence_english": "The width of the table is one meter.", + "pos": "noun", + "word_frequency": 3442 + }, + { + "word": "malin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clever;cunning", + "example_sentence_native": "C'est une idée très maline.", + "example_sentence_english": "That's a very clever idea.", + "pos": "adjective", + "word_frequency": 3445 + }, + { + "word": "miel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "honey", + "example_sentence_native": "J'aime le miel dans mon thé.", + "example_sentence_english": "I like honey in my tea.", + "pos": "noun", + "word_frequency": 3446 + }, + { + "word": "mobilisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobilization", + "example_sentence_native": "La mobilisation des troupes a commencé.", + "example_sentence_english": "The mobilization of troops has begun.", + "pos": "noun", + "word_frequency": 3447 + }, + { + "word": "moche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ugly", + "example_sentence_native": "Ce pull est vraiment moche.", + "example_sentence_english": "This sweater is really ugly.", + "pos": "adjective", + "word_frequency": 3448 + }, + { + "word": "modeste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modest", + "example_sentence_native": "Il a une attitude très modeste malgré son succès.", + "example_sentence_english": "He has a very modest attitude despite his success.", + "pos": "adjective", + "word_frequency": 3449 + }, + { + "word": "négocier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to negotiate", + "example_sentence_native": "Ils essaient de négocier un accord de paix.", + "example_sentence_english": "They are trying to negotiate a peace agreement.", + "pos": "verb", + "word_frequency": 3450 + }, + { + "word": "opérateur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operator", + "example_sentence_native": "L'opérateur téléphonique m'a aidé.", + "example_sentence_english": "The telephone operator helped me.", + "pos": "noun", + "word_frequency": 3451 + }, + { + "word": "organe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organ", + "example_sentence_native": "Le cœur est un organe vital.", + "example_sentence_english": "The heart is a vital organ.", + "pos": "noun", + "word_frequency": 3452 + }, + { + "word": "pension", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pension;boarding house", + "example_sentence_native": "Elle vit dans une petite pension de famille.", + "example_sentence_english": "She lives in a small boarding house.", + "pos": "noun", + "word_frequency": 3453 + }, + { + "word": "pib", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "GDP (Gross Domestic Product)", + "example_sentence_native": "Le PIB du pays a augmenté cette année.", + "example_sentence_english": "The country's GDP increased this year.", + "pos": "noun", + "word_frequency": 3454 + }, + { + "word": "piège", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trap", + "example_sentence_native": "Attention, il y a un piège.", + "example_sentence_english": "Be careful, there's a trap.", + "pos": "noun", + "word_frequency": 3455 + }, + { + "word": "pratiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to practice;to perform", + "example_sentence_native": "Il pratique le piano tous les jours.", + "example_sentence_english": "He practices the piano every day.", + "pos": "verb", + "word_frequency": 3456 + }, + { + "word": "psychologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychology", + "example_sentence_native": "Elle étudie la psychologie à l'université.", + "example_sentence_english": "She studies psychology at university.", + "pos": "noun", + "word_frequency": 3457 + }, + { + "word": "remboursement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refund;reimbursement", + "example_sentence_native": "J'attends le remboursement de mes frais.", + "example_sentence_english": "I am waiting for the reimbursement of my expenses.", + "pos": "noun", + "word_frequency": 3459 + }, + { + "word": "rumeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rumor", + "example_sentence_native": "Une rumeur circule en ville.", + "example_sentence_english": "A rumor is circulating in town.", + "pos": "noun", + "word_frequency": 3460 + }, + { + "word": "répression", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repression", + "example_sentence_native": "Le gouvernement a exercé une forte répression.", + "example_sentence_english": "The government exercised strong repression.", + "pos": "noun", + "word_frequency": 3461 + }, + { + "word": "réveil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alarm clock;awakening", + "example_sentence_native": "Mon réveil sonne à 7 heures.", + "example_sentence_english": "My alarm clock rings at 7 o'clock.", + "pos": "noun", + "word_frequency": 3462 + }, + { + "word": "saut", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jump", + "example_sentence_native": "Il a fait un grand saut.", + "example_sentence_english": "He made a big jump.", + "pos": "noun", + "word_frequency": 3463 + }, + { + "word": "spectateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spectator", + "example_sentence_native": "Les spectateurs ont applaudi la performance.", + "example_sentence_english": "The spectators applauded the performance.", + "pos": "noun", + "word_frequency": 3466 + }, + { + "word": "tante", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "aunt", + "example_sentence_native": "Ma tante vient nous rendre visite.", + "example_sentence_english": "My aunt is coming to visit us.", + "pos": "noun", + "word_frequency": 3467 + }, + { + "word": "temporaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporary", + "example_sentence_native": "C'est une solution temporaire.", + "example_sentence_english": "It's a temporary solution.", + "pos": "adjective", + "word_frequency": 3468 + }, + { + "word": "trimestre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarter (of a year)", + "example_sentence_native": "Les résultats du premier trimestre sont bons.", + "example_sentence_english": "The first quarter's results are good.", + "pos": "noun", + "word_frequency": 3470 + }, + { + "word": "valable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valid", + "example_sentence_native": "Ce billet n'est plus valable.", + "example_sentence_english": "This ticket is no longer valid.", + "pos": "adjective", + "word_frequency": 3471 + }, + { + "word": "élevage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breeding;farming (livestock)", + "example_sentence_native": "L'élevage de bovins est important dans cette région.", + "example_sentence_english": "Cattle farming is important in this region.", + "pos": "noun", + "word_frequency": 3473 + }, + { + "word": "étonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to astonish;to surprise", + "example_sentence_native": "Sa réaction m'a étonné.", + "example_sentence_english": "His reaction astonished me.", + "pos": "verb", + "word_frequency": 3474 + }, + { + "word": "adn", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "DNA", + "example_sentence_native": "L'ADN contient notre information génétique.", + "example_sentence_english": "DNA contains our genetic information.", + "pos": "noun", + "word_frequency": 3475 + }, + { + "word": "ambassade", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embassy", + "example_sentence_native": "L'ambassade de France est située au centre-ville.", + "example_sentence_english": "The French embassy is located downtown.", + "pos": "noun", + "word_frequency": 3477 + }, + { + "word": "armer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arm", + "example_sentence_native": "Le gouvernement a décidé d'armer les troupes.", + "example_sentence_english": "The government decided to arm the troops.", + "pos": "verb", + "word_frequency": 3478 + }, + { + "word": "aérien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aerial;air (as in air transport)", + "example_sentence_native": "Le trafic aérien est perturbé.", + "example_sentence_english": "Air traffic is disrupted.", + "pos": "adjective", + "word_frequency": 3479 + }, + { + "word": "censure", + "article_with_word": "la censure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censorship", + "example_sentence_native": "La censure est souvent critiquée dans les démocraties.", + "example_sentence_english": "Censorship is often criticized in democracies.", + "pos": "noun", + "word_frequency": 3481 + }, + { + "word": "challenge", + "article_with_word": "le challenge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "challenge", + "example_sentence_native": "C'est un grand challenge pour notre équipe.", + "example_sentence_english": "It's a big challenge for our team.", + "pos": "noun", + "word_frequency": 3482 + }, + { + "word": "charlotte", + "article_with_word": "la charlotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charlotte (dessert)", + "example_sentence_native": "J'ai préparé une charlotte aux fraises pour le dessert.", + "example_sentence_english": "I prepared a strawberry charlotte for dessert.", + "pos": "noun", + "word_frequency": 3483 + }, + { + "word": "chasseur", + "article_with_word": "le chasseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunter", + "example_sentence_native": "Le chasseur a suivi les traces de l'animal.", + "example_sentence_english": "The hunter followed the animal's tracks.", + "pos": "noun", + "word_frequency": 3484 + }, + { + "word": "chaussée", + "article_with_word": "la chaussée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roadway", + "example_sentence_native": "La chaussée était glissante à cause de la pluie.", + "example_sentence_english": "The roadway was slippery because of the rain.", + "pos": "noun", + "word_frequency": 3485 + }, + { + "word": "chemise", + "article_with_word": "la chemise", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shirt", + "example_sentence_native": "Il porte une chemise bleue.", + "example_sentence_english": "He is wearing a blue shirt.", + "pos": "noun", + "word_frequency": 3486 + }, + { + "word": "chirurgie", + "article_with_word": "la chirurgie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgery", + "example_sentence_native": "Elle a dû subir une chirurgie d'urgence.", + "example_sentence_english": "She had to undergo emergency surgery.", + "pos": "noun", + "word_frequency": 3487 + }, + { + "word": "circonscription", + "article_with_word": "la circonscription", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constituency", + "example_sentence_native": "Le député représente sa circonscription au parlement.", + "example_sentence_english": "The deputy represents his constituency in parliament.", + "pos": "noun", + "word_frequency": 3489 + }, + { + "word": "colis", + "article_with_word": "le colis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "package", + "example_sentence_native": "J'ai reçu un colis ce matin.", + "example_sentence_english": "I received a package this morning.", + "pos": "noun", + "word_frequency": 3490 + }, + { + "word": "colonie", + "article_with_word": "la colonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colony", + "example_sentence_native": "La France a eu de nombreuses colonies par le passé.", + "example_sentence_english": "France had many colonies in the past.", + "pos": "noun", + "word_frequency": 3491 + }, + { + "word": "communautaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community-based", + "example_sentence_native": "Ils ont mis en place un projet communautaire.", + "example_sentence_english": "They set up a community-based project.", + "pos": "adjective", + "word_frequency": 3492 + }, + { + "word": "correspondance", + "article_with_word": "la correspondance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correspondence;connection", + "example_sentence_native": "J'ai une correspondance à Paris pour mon prochain vol.", + "example_sentence_english": "I have a connection in Paris for my next flight.", + "pos": "noun", + "word_frequency": 3493 + }, + { + "word": "eglise", + "article_with_word": "l'église", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "church", + "example_sentence_native": "L'église du village est très ancienne.", + "example_sentence_english": "The village church is very old.", + "pos": "noun", + "word_frequency": 3495 + }, + { + "word": "employer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to employ;to use", + "example_sentence_native": "Mon entreprise va employer de nouveaux stagiaires.", + "example_sentence_english": "My company will employ new interns.", + "pos": "verb", + "word_frequency": 3496 + }, + { + "word": "entrepreneur", + "article_with_word": "l'entrepreneur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrepreneur", + "example_sentence_native": "Il est devenu un entrepreneur à succès.", + "example_sentence_english": "He became a successful entrepreneur.", + "pos": "noun", + "word_frequency": 3497 + }, + { + "word": "enveloppe", + "article_with_word": "l'enveloppe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "envelope", + "example_sentence_native": "J'ai mis la lettre dans une enveloppe.", + "example_sentence_english": "I put the letter in an envelope.", + "pos": "noun", + "word_frequency": 3498 + }, + { + "word": "explorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explore", + "example_sentence_native": "Nous aimons explorer de nouveaux pays.", + "example_sentence_english": "We like to explore new countries.", + "pos": "verb", + "word_frequency": 3499 + }, + { + "word": "exploser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explode", + "example_sentence_native": "Le ballon a explosé avec un grand bruit.", + "example_sentence_english": "The balloon exploded with a loud noise.", + "pos": "verb", + "word_frequency": 3500 + }, + { + "word": "fièvre", + "article_with_word": "la fièvre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fever", + "example_sentence_native": "Il a de la fièvre depuis hier soir.", + "example_sentence_english": "He has had a fever since last night.", + "pos": "noun", + "word_frequency": 3501 + }, + { + "word": "grille", + "article_with_word": "la grille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grid;gate", + "example_sentence_native": "La grille du jardin était fermée.", + "example_sentence_english": "The garden gate was closed.", + "pos": "noun", + "word_frequency": 3503 + }, + { + "word": "horaire", + "article_with_word": "l'horaire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "schedule;timetable", + "example_sentence_native": "Quel est l'horaire du prochain train ?", + "example_sentence_english": "What is the schedule for the next train?", + "pos": "noun", + "word_frequency": 3504 + }, + { + "word": "insulte", + "article_with_word": "l'insulte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insult", + "example_sentence_native": "Il a proféré des insultes envers son adversaire.", + "example_sentence_english": "He uttered insults towards his opponent.", + "pos": "noun", + "word_frequency": 3505 + }, + { + "word": "interpréter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interpret", + "example_sentence_native": "Il est difficile d'interpréter ce rêve.", + "example_sentence_english": "It is difficult to interpret this dream.", + "pos": "verb", + "word_frequency": 3506 + }, + { + "word": "librairie", + "article_with_word": "la librairie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookstore", + "example_sentence_native": "J'ai acheté ce livre à la librairie.", + "example_sentence_english": "I bought this book at the bookstore.", + "pos": "noun", + "word_frequency": 3508 + }, + { + "word": "loyer", + "article_with_word": "le loyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rent", + "example_sentence_native": "Le loyer de mon appartement est élevé.", + "example_sentence_english": "The rent for my apartment is high.", + "pos": "noun", + "word_frequency": 3510 + }, + { + "word": "mobilité", + "article_with_word": "la mobilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mobility", + "example_sentence_native": "La mobilité urbaine est un enjeu majeur.", + "example_sentence_english": "Urban mobility is a major issue.", + "pos": "noun", + "word_frequency": 3511 + }, + { + "word": "noblesse", + "article_with_word": "la noblesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobility", + "example_sentence_native": "La noblesse jouait un rôle important dans l'histoire.", + "example_sentence_english": "Nobility played an important role in history.", + "pos": "noun", + "word_frequency": 3512 + }, + { + "word": "nuage", + "article_with_word": "le nuage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloud", + "example_sentence_native": "Il y a beaucoup de nuages dans le ciel aujourd'hui.", + "example_sentence_english": "There are many clouds in the sky today.", + "pos": "noun", + "word_frequency": 3513 + }, + { + "word": "nécessiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to require", + "example_sentence_native": "Ce travail nécessite beaucoup de concentration.", + "example_sentence_english": "This work requires a lot of concentration.", + "pos": "verb", + "word_frequency": 3514 + }, + { + "word": "peindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to paint", + "example_sentence_native": "Elle aime peindre des paysages.", + "example_sentence_english": "She likes to paint landscapes.", + "pos": "verb", + "word_frequency": 3515 + }, + { + "word": "porc", + "article_with_word": "le porc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pork", + "example_sentence_native": "Nous avons mangé du porc au dîner.", + "example_sentence_english": "We ate pork for dinner.", + "pos": "noun", + "word_frequency": 3516 + }, + { + "word": "portail", + "article_with_word": "le portail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gate;portal", + "example_sentence_native": "Le portail de la maison était ouvert.", + "example_sentence_english": "The house gate was open.", + "pos": "noun", + "word_frequency": 3517 + }, + { + "word": "pourcentage", + "article_with_word": "le pourcentage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "percentage", + "example_sentence_native": "Quel est le pourcentage de réussite ?", + "example_sentence_english": "What is the success percentage?", + "pos": "noun", + "word_frequency": 3518 + }, + { + "word": "poème", + "article_with_word": "le poème", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poem", + "example_sentence_native": "Elle a écrit un beau poème.", + "example_sentence_english": "She wrote a beautiful poem.", + "pos": "noun", + "word_frequency": 3519 + }, + { + "word": "préalable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preliminary", + "example_sentence_native": "Une discussion préalable est nécessaire avant de prendre une décision.", + "example_sentence_english": "A preliminary discussion is necessary before making a decision.", + "pos": "adjective", + "word_frequency": 3520 + }, + { + "word": "puits", + "article_with_word": "le puits", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well (water)", + "example_sentence_native": "Ils ont creusé un puits pour trouver de l'eau.", + "example_sentence_english": "They dug a well to find water.", + "pos": "noun", + "word_frequency": 3521 + }, + { + "word": "réglementation", + "article_with_word": "la réglementation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation", + "example_sentence_native": "La nouvelle réglementation est très stricte.", + "example_sentence_english": "The new regulation is very strict.", + "pos": "noun", + "word_frequency": 3525 + }, + { + "word": "résister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resist", + "example_sentence_native": "Il est difficile de résister à la tentation.", + "example_sentence_english": "It is difficult to resist temptation.", + "pos": "verb", + "word_frequency": 3526 + }, + { + "word": "révolte", + "article_with_word": "la révolte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolt", + "example_sentence_native": "La révolte a éclaté dans les rues.", + "example_sentence_english": "The revolt broke out in the streets.", + "pos": "noun", + "word_frequency": 3527 + }, + { + "word": "strictement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strictly", + "example_sentence_native": "C'est strictement interdit.", + "example_sentence_english": "It is strictly forbidden.", + "pos": "adverb", + "word_frequency": 3529 + }, + { + "word": "sécher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dry", + "example_sentence_native": "Laissez les vêtements sécher au soleil.", + "example_sentence_english": "Let the clothes dry in the sun.", + "pos": "verb", + "word_frequency": 3530 + }, + { + "word": "taire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to silence;to keep quiet", + "example_sentence_native": "Il a préféré se taire plutôt que de mentir.", + "example_sentence_english": "He preferred to keep quiet rather than lie.", + "pos": "verb", + "word_frequency": 3531 + }, + { + "word": "tranquillement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calmly;quietly", + "example_sentence_native": "Il travaille tranquillement dans son bureau.", + "example_sentence_english": "He works quietly in his office.", + "pos": "adverb", + "word_frequency": 3532 + }, + { + "word": "triple", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triple", + "example_sentence_native": "Il a réalisé un triple saut.", + "example_sentence_english": "He performed a triple jump.", + "pos": "adjective", + "word_frequency": 3533 + }, + { + "word": "vache", + "article_with_word": "la vache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cow", + "example_sentence_native": "La vache broute dans le pré.", + "example_sentence_english": "The cow grazes in the meadow.", + "pos": "noun", + "word_frequency": 3534 + }, + { + "word": "élever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise;to elevate", + "example_sentence_native": "Ils ont élevé leurs enfants avec amour.", + "example_sentence_english": "They raised their children with love.", + "pos": "verb", + "word_frequency": 3538 + }, + { + "word": "algérien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Algerian", + "example_sentence_native": "C'est un plat algérien traditionnel.", + "example_sentence_english": "It's a traditional Algerian dish.", + "pos": "adjective", + "word_frequency": 3540 + }, + { + "word": "aliment", + "article_with_word": "un aliment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food;foodstuff", + "example_sentence_native": "Les fruits sont des aliments sains.", + "example_sentence_english": "Fruits are healthy foods.", + "pos": "noun", + "word_frequency": 3541 + }, + { + "word": "assassinat", + "article_with_word": "l'assassinat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assassination", + "example_sentence_native": "L'assassinat du président a choqué le monde.", + "example_sentence_english": "The assassination of the president shocked the world.", + "pos": "noun", + "word_frequency": 3542 + }, + { + "word": "biologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organic;biological", + "example_sentence_native": "Je préfère acheter des produits biologiques.", + "example_sentence_english": "I prefer to buy organic products.", + "pos": "adjective", + "word_frequency": 3543 + }, + { + "word": "brevet", + "article_with_word": "le brevet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patent;certificate", + "example_sentence_native": "Il a déposé un brevet pour son invention.", + "example_sentence_english": "He filed a patent for his invention.", + "pos": "noun", + "word_frequency": 3544 + }, + { + "word": "brun", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brown", + "example_sentence_native": "Elle a les cheveux bruns.", + "example_sentence_english": "She has brown hair.", + "pos": "adjective", + "word_frequency": 3545 + }, + { + "word": "console", + "article_with_word": "la console", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "console (gaming;furniture)", + "example_sentence_native": "Il joue à des jeux vidéo sur sa console.", + "example_sentence_english": "He plays video games on his console.", + "pos": "noun", + "word_frequency": 3549 + }, + { + "word": "constitutionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional", + "example_sentence_native": "La décision est conforme au droit constitutionnel.", + "example_sentence_english": "The decision is in accordance with constitutional law.", + "pos": "adjective", + "word_frequency": 3550 + }, + { + "word": "continu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous", + "example_sentence_native": "Le bruit continu m'empêche de dormir.", + "example_sentence_english": "The continuous noise prevents me from sleeping.", + "pos": "adjective", + "word_frequency": 3551 + }, + { + "word": "difficilement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with difficulty;hardly", + "example_sentence_native": "Il a difficilement réussi l'examen.", + "example_sentence_english": "He hardly passed the exam.", + "pos": "adverb", + "word_frequency": 3553 + }, + { + "word": "débarrasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get rid of;to clear", + "example_sentence_native": "Il faut se débarrasser de ces vieilles affaires.", + "example_sentence_english": "We need to get rid of these old things.", + "pos": "verb", + "word_frequency": 3554 + }, + { + "word": "délégué", + "article_with_word": "le délégué", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegate;representative", + "example_sentence_native": "Le délégué a présenté le rapport.", + "example_sentence_english": "The delegate presented the report.", + "pos": "noun", + "word_frequency": 3555 + }, + { + "word": "emporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take away;to carry off", + "example_sentence_native": "N'oubliez pas d'emporter vos affaires.", + "example_sentence_english": "Don't forget to take your belongings.", + "pos": "verb", + "word_frequency": 3557 + }, + { + "word": "entretenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maintain;to keep up", + "example_sentence_native": "Il est important d'entretenir de bonnes relations.", + "example_sentence_english": "It is important to maintain good relationships.", + "pos": "verb", + "word_frequency": 3558 + }, + { + "word": "envisager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider;to envisage", + "example_sentence_native": "Nous devons envisager toutes les options.", + "example_sentence_english": "We must consider all options.", + "pos": "verb", + "word_frequency": 3559 + }, + { + "word": "esclavage", + "article_with_word": "l'esclavage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slavery", + "example_sentence_native": "L'esclavage a été aboli il y a longtemps.", + "example_sentence_english": "Slavery was abolished a long time ago.", + "pos": "noun", + "word_frequency": 3560 + }, + { + "word": "exprès", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on purpose;deliberately", + "example_sentence_native": "Il l'a fait exprès pour m'énerver.", + "example_sentence_english": "He did it on purpose to annoy me.", + "pos": "adverb", + "word_frequency": 3561 + }, + { + "word": "fréquemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequently", + "example_sentence_native": "Nous nous rencontrons fréquemment pour discuter.", + "example_sentence_english": "We meet frequently to discuss.", + "pos": "adverb", + "word_frequency": 3562 + }, + { + "word": "gang", + "article_with_word": "le gang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gang", + "example_sentence_native": "La police a démantelé un gang de trafiquants.", + "example_sentence_english": "The police dismantled a gang of traffickers.", + "pos": "noun", + "word_frequency": 3563 + }, + { + "word": "harcèlement", + "article_with_word": "le harcèlement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassment", + "example_sentence_native": "Le harcèlement au travail est inacceptable.", + "example_sentence_english": "Workplace harassment is unacceptable.", + "pos": "noun", + "word_frequency": 3564 + }, + { + "word": "initial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initial", + "example_sentence_native": "Quelle est la date initiale du projet ?", + "example_sentence_english": "What is the initial date of the project?", + "pos": "adjective", + "word_frequency": 3566 + }, + { + "word": "insecte", + "article_with_word": "un insecte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "insect", + "example_sentence_native": "Il y a un insecte sur la fenêtre.", + "example_sentence_english": "There is an insect on the window.", + "pos": "noun", + "word_frequency": 3567 + }, + { + "word": "liège", + "article_with_word": "le liège", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cork", + "example_sentence_native": "Le bouchon de la bouteille est en liège.", + "example_sentence_english": "The bottle stopper is made of cork.", + "pos": "noun", + "word_frequency": 3571 + }, + { + "word": "loisir", + "article_with_word": "le loisir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leisure;hobby", + "example_sentence_native": "J'ai beaucoup de loisirs pendant le week-end.", + "example_sentence_english": "I have many hobbies during the weekend.", + "pos": "noun", + "word_frequency": 3572 + }, + { + "word": "massacre", + "article_with_word": "le massacre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massacre", + "example_sentence_native": "L'histoire est pleine de récits de massacres.", + "example_sentence_english": "History is full of accounts of massacres.", + "pos": "noun", + "word_frequency": 3573 + }, + { + "word": "matinée", + "article_with_word": "la matinée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "morning (duration)", + "example_sentence_native": "Nous avons passé toute la matinée à étudier.", + "example_sentence_english": "We spent the whole morning studying.", + "pos": "noun", + "word_frequency": 3574 + }, + { + "word": "maxime", + "article_with_word": "la maxime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maxim;aphorism", + "example_sentence_native": "Sa maxime préférée est \"Connais-toi toi-même\".", + "example_sentence_english": "His favorite maxim is \"Know thyself\".", + "pos": "noun", + "word_frequency": 3575 + }, + { + "word": "maîtresse", + "article_with_word": "la maîtresse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mistress;female teacher", + "example_sentence_native": "La maîtresse d'école a donné des devoirs.", + "example_sentence_english": "The school teacher gave homework.", + "pos": "noun", + "word_frequency": 3576 + }, + { + "word": "nerveux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nervous", + "example_sentence_native": "Il était très nerveux avant l'examen.", + "example_sentence_english": "He was very nervous before the exam.", + "pos": "adjective", + "word_frequency": 3577 + }, + { + "word": "neutre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutral", + "example_sentence_native": "Le pays a déclaré sa position neutre dans le conflit.", + "example_sentence_english": "The country declared its neutral position in the conflict.", + "pos": "adjective", + "word_frequency": 3578 + }, + { + "word": "pantalon", + "article_with_word": "le pantalon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "trousers;pants", + "example_sentence_native": "J'ai acheté un nouveau pantalon.", + "example_sentence_english": "I bought new trousers.", + "pos": "noun", + "word_frequency": 3579 + }, + { + "word": "pasteur", + "article_with_word": "le pasteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pastor", + "example_sentence_native": "Le pasteur a prononcé un sermon inspirant.", + "example_sentence_english": "The pastor delivered an inspiring sermon.", + "pos": "noun", + "word_frequency": 3580 + }, + { + "word": "planche", + "article_with_word": "la planche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "board;plank", + "example_sentence_native": "Il a coupé une planche de bois.", + "example_sentence_english": "He cut a wooden board.", + "pos": "noun", + "word_frequency": 3581 + }, + { + "word": "pleuvoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to rain", + "example_sentence_native": "Il va pleuvoir cet après-midi.", + "example_sentence_english": "It's going to rain this afternoon.", + "pos": "verb", + "word_frequency": 3582 + }, + { + "word": "plume", + "article_with_word": "la plume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "feather;pen", + "example_sentence_native": "L'oiseau a perdu une plume.", + "example_sentence_english": "The bird lost a feather.", + "pos": "noun", + "word_frequency": 3583 + }, + { + "word": "poignée", + "article_with_word": "la poignée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handle;handful", + "example_sentence_native": "La poignée de la porte est cassée.", + "example_sentence_english": "The door handle is broken.", + "pos": "noun", + "word_frequency": 3584 + }, + { + "word": "popularité", + "article_with_word": "la popularité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "popularity", + "example_sentence_native": "Sa popularité a augmenté après le film.", + "example_sentence_english": "His popularity increased after the movie.", + "pos": "noun", + "word_frequency": 3585 + }, + { + "word": "portefeuille", + "article_with_word": "le portefeuille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet;portfolio", + "example_sentence_native": "J'ai oublié mon portefeuille à la maison.", + "example_sentence_english": "I forgot my wallet at home.", + "pos": "noun", + "word_frequency": 3586 + }, + { + "word": "poster", + "article_with_word": "le poster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster", + "example_sentence_native": "Il a accroché un poster de son groupe préféré.", + "example_sentence_english": "He hung a poster of his favorite band.", + "pos": "noun", + "word_frequency": 3587 + }, + { + "word": "pouce", + "article_with_word": "le pouce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thumb;inch", + "example_sentence_native": "Il a levé le pouce pour montrer son accord.", + "example_sentence_english": "He gave a thumbs up to show his agreement.", + "pos": "noun", + "word_frequency": 3588 + }, + { + "word": "provenance", + "article_with_word": "la provenance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "origin;source", + "example_sentence_native": "La provenance de ce produit est inconnue.", + "example_sentence_english": "The origin of this product is unknown.", + "pos": "noun", + "word_frequency": 3590 + }, + { + "word": "refuge", + "article_with_word": "le refuge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refuge;shelter", + "example_sentence_native": "Ils ont trouvé refuge dans une vieille cabane.", + "example_sentence_english": "They found refuge in an old cabin.", + "pos": "noun", + "word_frequency": 3591 + }, + { + "word": "révision", + "article_with_word": "la révision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revision;review", + "example_sentence_native": "Je dois faire mes révisions pour l'examen.", + "example_sentence_english": "I need to do my revisions for the exam.", + "pos": "noun", + "word_frequency": 3592 + }, + { + "word": "schéma", + "article_with_word": "le schéma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagram;scheme", + "example_sentence_native": "Le professeur a dessiné un schéma au tableau.", + "example_sentence_english": "The teacher drew a diagram on the board.", + "pos": "noun", + "word_frequency": 3593 + }, + { + "word": "sincère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincere", + "example_sentence_native": "Ses excuses étaient sincères.", + "example_sentence_english": "His apologies were sincere.", + "pos": "adjective", + "word_frequency": 3594 + }, + { + "word": "sincèrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincerely", + "example_sentence_native": "Je vous remercie sincèrement pour votre aide.", + "example_sentence_english": "I sincerely thank you for your help.", + "pos": "adverb", + "word_frequency": 3595 + }, + { + "word": "tranche", + "article_with_word": "la tranche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slice", + "example_sentence_native": "Je voudrais une tranche de pain.", + "example_sentence_english": "I would like a slice of bread.", + "pos": "noun", + "word_frequency": 3597 + }, + { + "word": "trio", + "article_with_word": "le trio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trio", + "example_sentence_native": "Le trio de musiciens a joué une belle mélodie.", + "example_sentence_english": "The trio of musicians played a beautiful melody.", + "pos": "noun", + "word_frequency": 3598 + }, + { + "word": "tristesse", + "article_with_word": "la tristesse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sadness", + "example_sentence_native": "La tristesse envahit son cœur.", + "example_sentence_english": "Sadness filled his heart.", + "pos": "noun", + "word_frequency": 3599 + }, + { + "word": "écho", + "article_with_word": "l'écho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "echo", + "example_sentence_native": "On entendait l'écho de nos voix dans la grotte.", + "example_sentence_english": "We could hear the echo of our voices in the cave.", + "pos": "noun", + "word_frequency": 3601 + }, + { + "word": "abbaye", + "article_with_word": "l'abbaye", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbey", + "example_sentence_native": "Ils ont visité une ancienne abbaye en Normandie.", + "example_sentence_english": "They visited an old abbey in Normandy.", + "pos": "noun", + "word_frequency": 3602 + }, + { + "word": "adieu", + "article_with_word": "l'adieu", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farewell", + "example_sentence_native": "Elle a dit un dernier adieu avant de partir.", + "example_sentence_english": "She said a final farewell before leaving.", + "pos": "noun", + "word_frequency": 3603 + }, + { + "word": "alentour", + "article_with_word": "les alentours", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surroundings", + "example_sentence_native": "Les alentours du château sont magnifiques.", + "example_sentence_english": "The surroundings of the castle are magnificent.", + "pos": "noun", + "word_frequency": 3604 + }, + { + "word": "analyser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to analyze", + "example_sentence_native": "Il faut analyser les données avant de prendre une décision.", + "example_sentence_english": "We need to analyze the data before making a decision.", + "pos": "verb", + "word_frequency": 3605 + }, + { + "word": "antenne", + "article_with_word": "l'antenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antenna;branch (office)", + "example_sentence_native": "La télévision capte le signal grâce à une antenne.", + "example_sentence_english": "The television receives the signal thanks to an antenna.", + "pos": "noun", + "word_frequency": 3606 + }, + { + "word": "artillerie", + "article_with_word": "l'artillerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artillery", + "example_sentence_native": "L'artillerie lourde a été déployée sur le front.", + "example_sentence_english": "Heavy artillery was deployed on the front.", + "pos": "noun", + "word_frequency": 3607 + }, + { + "word": "bal", + "article_with_word": "le bal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ball (dance)", + "example_sentence_native": "Ils ont organisé un grand bal pour célébrer la fin de l'année.", + "example_sentence_english": "They organized a big ball to celebrate the end of the year.", + "pos": "noun", + "word_frequency": 3608 + }, + { + "word": "blé", + "article_with_word": "le blé", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheat", + "example_sentence_native": "Les champs de blé sont prêts pour la moisson.", + "example_sentence_english": "The wheat fields are ready for harvest.", + "pos": "noun", + "word_frequency": 3609 + }, + { + "word": "breton", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Breton", + "example_sentence_native": "La culture bretonne est très riche.", + "example_sentence_english": "Breton culture is very rich.", + "pos": "adjective", + "word_frequency": 3610 + }, + { + "word": "brigade", + "article_with_word": "la brigade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brigade", + "example_sentence_native": "La brigade des sapeurs-pompiers est intervenue rapidement.", + "example_sentence_english": "The fire brigade intervened quickly.", + "pos": "noun", + "word_frequency": 3612 + }, + { + "word": "brise", + "article_with_word": "la brise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breeze", + "example_sentence_native": "Une douce brise soufflait sur la plage.", + "example_sentence_english": "A gentle breeze was blowing on the beach.", + "pos": "noun", + "word_frequency": 3613 + }, + { + "word": "clos", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closed;enclosed", + "example_sentence_native": "Le jardin est clos par un mur.", + "example_sentence_english": "The garden is enclosed by a wall.", + "pos": "adjective", + "word_frequency": 3614 + }, + { + "word": "clément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clement;merciful", + "example_sentence_native": "Le juge a été clément envers l'accusé.", + "example_sentence_english": "The judge was clement towards the accused.", + "pos": "adjective", + "word_frequency": 3615 + }, + { + "word": "compléter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to complete", + "example_sentence_native": "Veuillez compléter ce formulaire.", + "example_sentence_english": "Please complete this form.", + "pos": "verb", + "word_frequency": 3616 + }, + { + "word": "conscient", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscious;aware", + "example_sentence_native": "Il est conscient des risques.", + "example_sentence_english": "He is aware of the risks.", + "pos": "adjective", + "word_frequency": 3617 + }, + { + "word": "consentement", + "article_with_word": "le consentement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consent", + "example_sentence_native": "Le consentement des parents est nécessaire.", + "example_sentence_english": "Parental consent is necessary.", + "pos": "noun", + "word_frequency": 3618 + }, + { + "word": "constat", + "article_with_word": "le constat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finding;observation", + "example_sentence_native": "Le constat est clair : la situation s'améliore.", + "example_sentence_english": "The finding is clear: the situation is improving.", + "pos": "noun", + "word_frequency": 3619 + }, + { + "word": "coucou", + "article_with_word": "le coucou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cuckoo (bird);peek-a-boo", + "example_sentence_native": "On a entendu le chant du coucou ce matin.", + "example_sentence_english": "We heard the cuckoo's song this morning.", + "pos": "noun", + "word_frequency": 3620 + }, + { + "word": "critiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to criticize", + "example_sentence_native": "Il ne faut pas critiquer sans proposer de solutions.", + "example_sentence_english": "One should not criticize without offering solutions.", + "pos": "verb", + "word_frequency": 3621 + }, + { + "word": "douter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to doubt", + "example_sentence_native": "Je doute qu'il vienne.", + "example_sentence_english": "I doubt he will come.", + "pos": "verb", + "word_frequency": 3623 + }, + { + "word": "dégager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clear;to release", + "example_sentence_native": "Il faut dégager la route des débris.", + "example_sentence_english": "The road needs to be cleared of debris.", + "pos": "verb", + "word_frequency": 3624 + }, + { + "word": "enthousiasme", + "article_with_word": "l'enthousiasme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiasm", + "example_sentence_native": "Son enthousiasme est contagieux.", + "example_sentence_english": "His enthusiasm is contagious.", + "pos": "noun", + "word_frequency": 3626 + }, + { + "word": "extra", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "great;extra", + "example_sentence_native": "Ce film est extra !", + "example_sentence_english": "This movie is great!", + "pos": "adjective", + "word_frequency": 3627 + }, + { + "word": "gendarmerie", + "article_with_word": "la gendarmerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gendarmerie (police force)", + "example_sentence_native": "Il a signalé le vol à la gendarmerie.", + "example_sentence_english": "He reported the theft to the gendarmerie.", + "pos": "noun", + "word_frequency": 3629 + }, + { + "word": "généreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generous", + "example_sentence_native": "C'est une personne très généreuse.", + "example_sentence_english": "She is a very generous person.", + "pos": "adjective", + "word_frequency": 3630 + }, + { + "word": "géographie", + "article_with_word": "la géographie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "geography", + "example_sentence_native": "J'étudie la géographie à l'université.", + "example_sentence_english": "I study geography at university.", + "pos": "noun", + "word_frequency": 3631 + }, + { + "word": "idiot", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiotic;silly", + "example_sentence_native": "Ne sois pas idiot, c'est facile à comprendre.", + "example_sentence_english": "Don't be idiotic, it's easy to understand.", + "pos": "adjective", + "word_frequency": 3634 + }, + { + "word": "insister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insist", + "example_sentence_native": "Elle a insisté pour payer l'addition.", + "example_sentence_english": "She insisted on paying the bill.", + "pos": "verb", + "word_frequency": 3635 + }, + { + "word": "intime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimate;private", + "example_sentence_native": "Ils partagent une relation intime.", + "example_sentence_english": "They share an intimate relationship.", + "pos": "adjective", + "word_frequency": 3636 + }, + { + "word": "jaloux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jealous", + "example_sentence_native": "Il est jaloux de la réussite de son ami.", + "example_sentence_english": "He is jealous of his friend's success.", + "pos": "adjective", + "word_frequency": 3637 + }, + { + "word": "joue", + "article_with_word": "la joue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheek", + "example_sentence_native": "Elle a une fossette sur la joue.", + "example_sentence_english": "She has a dimple on her cheek.", + "pos": "noun", + "word_frequency": 3638 + }, + { + "word": "kilo", + "article_with_word": "le kilo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilo;kilogram", + "example_sentence_native": "J'aimerais un kilo de pommes, s'il vous plaît.", + "example_sentence_english": "I would like a kilo of apples, please.", + "pos": "noun", + "word_frequency": 3639 + }, + { + "word": "librement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freely", + "example_sentence_native": "Il peut s'exprimer librement.", + "example_sentence_english": "He can express himself freely.", + "pos": "adverb", + "word_frequency": 3640 + }, + { + "word": "look", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "look;appearance", + "example_sentence_native": "J'aime son nouveau look.", + "example_sentence_english": "I like his new look.", + "pos": "noun", + "word_frequency": 3641 + }, + { + "word": "manteau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coat", + "example_sentence_native": "J'ai acheté un nouveau manteau.", + "example_sentence_english": "I bought a new coat.", + "pos": "noun", + "word_frequency": 3643 + }, + { + "word": "messe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mass (religious service)", + "example_sentence_native": "Ils vont à la messe tous les dimanches.", + "example_sentence_english": "They go to mass every Sunday.", + "pos": "noun", + "word_frequency": 3645 + }, + { + "word": "mixte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed", + "example_sentence_native": "C'est une équipe mixte.", + "example_sentence_english": "It's a mixed team.", + "pos": "adjective", + "word_frequency": 3646 + }, + { + "word": "moulin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mill", + "example_sentence_native": "Le moulin à vent est très ancien.", + "example_sentence_english": "The windmill is very old.", + "pos": "noun", + "word_frequency": 3647 + }, + { + "word": "ordonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to order;to command", + "example_sentence_native": "Le juge a ordonné une enquête.", + "example_sentence_english": "The judge ordered an investigation.", + "pos": "verb", + "word_frequency": 3648 + }, + { + "word": "pari", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bet;wager", + "example_sentence_native": "Il a fait un pari risqué.", + "example_sentence_english": "He made a risky bet.", + "pos": "noun", + "word_frequency": 3650 + }, + { + "word": "plomb", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lead (metal)", + "example_sentence_native": "Ce tuyau est en plomb.", + "example_sentence_english": "This pipe is made of lead.", + "pos": "noun", + "word_frequency": 3651 + }, + { + "word": "prétendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to claim;to pretend", + "example_sentence_native": "Il prétend être innocent.", + "example_sentence_english": "He claims to be innocent.", + "pos": "verb", + "word_frequency": 3652 + }, + { + "word": "rapprocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring closer;to reconcile", + "example_sentence_native": "Cette expérience les a rapprochés.", + "example_sentence_english": "This experience brought them closer.", + "pos": "verb", + "word_frequency": 3653 + }, + { + "word": "rebelle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellious;rebel", + "example_sentence_native": "C'est un esprit rebelle.", + "example_sentence_english": "He has a rebellious spirit.", + "pos": "adjective", + "word_frequency": 3654 + }, + { + "word": "renoncer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give up;to renounce", + "example_sentence_native": "Il a dû renoncer à son rêve.", + "example_sentence_english": "He had to give up his dream.", + "pos": "verb", + "word_frequency": 3655 + }, + { + "word": "rémunération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remuneration;payment", + "example_sentence_native": "La rémunération est basée sur la performance.", + "example_sentence_english": "The remuneration is based on performance.", + "pos": "noun", + "word_frequency": 3656 + }, + { + "word": "souverain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereign", + "example_sentence_native": "C'est un État souverain.", + "example_sentence_english": "It is a sovereign state.", + "pos": "adjective", + "word_frequency": 3657 + }, + { + "word": "surprenant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surprising", + "example_sentence_native": "C'est une nouvelle surprenante.", + "example_sentence_english": "It's surprising news.", + "pos": "adjective", + "word_frequency": 3658 + }, + { + "word": "tragédie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragedy", + "example_sentence_native": "C'était une véritable tragédie.", + "example_sentence_english": "It was a real tragedy.", + "pos": "noun", + "word_frequency": 3660 + }, + { + "word": "transmettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transmit;to convey", + "example_sentence_native": "Il a transmis le message.", + "example_sentence_english": "He transmitted the message.", + "pos": "verb", + "word_frequency": 3661 + }, + { + "word": "transparence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transparency", + "example_sentence_native": "La transparence est essentielle en politique.", + "example_sentence_english": "Transparency is essential in politics.", + "pos": "noun", + "word_frequency": 3662 + }, + { + "word": "trophée", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trophy", + "example_sentence_native": "L'équipe a gagné le trophée.", + "example_sentence_english": "The team won the trophy.", + "pos": "noun", + "word_frequency": 3663 + }, + { + "word": "aborder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach;to tackle", + "example_sentence_native": "Il faut aborder ce problème.", + "example_sentence_english": "We must tackle this problem.", + "pos": "verb", + "word_frequency": 3664 + }, + { + "word": "administrateur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrator", + "example_sentence_native": "L'administrateur système a résolu le problème.", + "example_sentence_english": "The system administrator solved the problem.", + "pos": "noun", + "word_frequency": 3665 + }, + { + "word": "animer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to animate;to host;to liven up", + "example_sentence_native": "Elle anime une émission de radio.", + "example_sentence_english": "She hosts a radio show.", + "pos": "verb", + "word_frequency": 3666 + }, + { + "word": "briser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break", + "example_sentence_native": "Il a brisé la vitre.", + "example_sentence_english": "He broke the window.", + "pos": "verb", + "word_frequency": 3669 + }, + { + "word": "bulle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bubble", + "example_sentence_native": "Les enfants aiment faire des bulles de savon.", + "example_sentence_english": "Children like to make soap bubbles.", + "pos": "noun", + "word_frequency": 3670 + }, + { + "word": "chaos", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaos", + "example_sentence_native": "La ville était plongée dans le chaos.", + "example_sentence_english": "The city was plunged into chaos.", + "pos": "noun", + "word_frequency": 3671 + }, + { + "word": "classer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to classify;to rank;to file", + "example_sentence_native": "Il faut classer ces documents.", + "example_sentence_english": "These documents need to be filed.", + "pos": "verb", + "word_frequency": 3672 + }, + { + "word": "clavier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "keyboard", + "example_sentence_native": "J'ai un nouveau clavier pour mon ordinateur.", + "example_sentence_english": "I have a new keyboard for my computer.", + "pos": "noun", + "word_frequency": 3673 + }, + { + "word": "clôture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence;closure", + "example_sentence_native": "La clôture du jardin est cassée.", + "example_sentence_english": "The garden fence is broken.", + "pos": "noun", + "word_frequency": 3674 + }, + { + "word": "coffre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chest;trunk;safe", + "example_sentence_native": "Il a mis ses bijoux dans le coffre.", + "example_sentence_english": "He put his jewelry in the safe.", + "pos": "noun", + "word_frequency": 3675 + }, + { + "word": "collecte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection;gathering", + "example_sentence_native": "La collecte de fonds a été un succès.", + "example_sentence_english": "The fundraising was a success.", + "pos": "noun", + "word_frequency": 3676 + }, + { + "word": "colonisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonization", + "example_sentence_native": "L'histoire de la colonisation est complexe.", + "example_sentence_english": "The history of colonization is complex.", + "pos": "noun", + "word_frequency": 3677 + }, + { + "word": "complot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot;conspiracy", + "example_sentence_native": "Ils ont découvert un complot.", + "example_sentence_english": "They discovered a plot.", + "pos": "noun", + "word_frequency": 3678 + }, + { + "word": "conforme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compliant;in conformity with", + "example_sentence_native": "Le produit est conforme aux normes.", + "example_sentence_english": "The product is compliant with the standards.", + "pos": "adjective", + "word_frequency": 3679 + }, + { + "word": "contraindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compel;to force", + "example_sentence_native": "La loi peut contraindre les citoyens à payer des impôts.", + "example_sentence_english": "The law can compel citizens to pay taxes.", + "pos": "verb", + "word_frequency": 3680 + }, + { + "word": "corde", + "article_with_word": "la corde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rope", + "example_sentence_native": "Il a attaché le bateau avec une corde solide.", + "example_sentence_english": "He tied the boat with a strong rope.", + "pos": "noun", + "word_frequency": 3681 + }, + { + "word": "croissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "growing;increasing", + "example_sentence_native": "La demande pour ce produit est croissante.", + "example_sentence_english": "The demand for this product is growing.", + "pos": "adjective", + "word_frequency": 3682 + }, + { + "word": "densité", + "article_with_word": "la densité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "density", + "example_sentence_native": "La densité de population est très élevée dans cette ville.", + "example_sentence_english": "The population density is very high in this city.", + "pos": "noun", + "word_frequency": 3683 + }, + { + "word": "dispute", + "article_with_word": "la dispute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "argument;dispute", + "example_sentence_native": "Ils ont eu une petite dispute à propos de l'argent.", + "example_sentence_english": "They had a small argument about money.", + "pos": "noun", + "word_frequency": 3684 + }, + { + "word": "débile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weak;feeble;(informal) stupid", + "example_sentence_native": "C'est une idée débile de sortir sans parapluie sous la pluie.", + "example_sentence_english": "It's a stupid idea to go out without an umbrella in the rain.", + "pos": "adjective", + "word_frequency": 3685 + }, + { + "word": "détention", + "article_with_word": "la détention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detention;custody", + "example_sentence_native": "Il a été placé en détention provisoire.", + "example_sentence_english": "He was placed in provisional detention.", + "pos": "noun", + "word_frequency": 3686 + }, + { + "word": "détermination", + "article_with_word": "la détermination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determination", + "example_sentence_native": "Sa détermination à réussir est admirable.", + "example_sentence_english": "His determination to succeed is admirable.", + "pos": "noun", + "word_frequency": 3687 + }, + { + "word": "faillite", + "article_with_word": "la faillite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy", + "example_sentence_native": "L'entreprise a déclaré faillite après des années de pertes.", + "example_sentence_english": "The company declared bankruptcy after years of losses.", + "pos": "noun", + "word_frequency": 3689 + }, + { + "word": "globe", + "article_with_word": "le globe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "globe", + "example_sentence_native": "Les enfants ont étudié la géographie sur un globe terrestre.", + "example_sentence_english": "The children studied geography on a globe.", + "pos": "noun", + "word_frequency": 3691 + }, + { + "word": "génétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetic", + "example_sentence_native": "Ils étudient les maladies génétiques.", + "example_sentence_english": "They study genetic diseases.", + "pos": "adjective", + "word_frequency": 3693 + }, + { + "word": "habitat", + "article_with_word": "l'habitat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "habitat", + "example_sentence_native": "La destruction de l'habitat menace de nombreuses espèces.", + "example_sentence_english": "Habitat destruction threatens many species.", + "pos": "noun", + "word_frequency": 3694 + }, + { + "word": "hectare", + "article_with_word": "l'hectare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hectare", + "example_sentence_native": "Le champ mesure dix hectares.", + "example_sentence_english": "The field measures ten hectares.", + "pos": "noun", + "word_frequency": 3695 + }, + { + "word": "historien", + "article_with_word": "l'historien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "historian", + "example_sentence_native": "L'historien a publié un nouveau livre sur la Révolution française.", + "example_sentence_english": "The historian published a new book on the French Revolution.", + "pos": "noun", + "word_frequency": 3696 + }, + { + "word": "identification", + "article_with_word": "l'identification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identification", + "example_sentence_native": "La police a demandé une pièce d'identification.", + "example_sentence_english": "The police asked for a piece of identification.", + "pos": "noun", + "word_frequency": 3698 + }, + { + "word": "invasion", + "article_with_word": "l'invasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasion", + "example_sentence_native": "L'invasion du pays a provoqué une crise humanitaire.", + "example_sentence_english": "The invasion of the country caused a humanitarian crisis.", + "pos": "noun", + "word_frequency": 3699 + }, + { + "word": "lapin", + "article_with_word": "le lapin", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rabbit", + "example_sentence_native": "Le lapin mange des carottes.", + "example_sentence_english": "The rabbit eats carrots.", + "pos": "noun", + "word_frequency": 3702 + }, + { + "word": "marchandise", + "article_with_word": "la marchandise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merchandise;goods", + "example_sentence_native": "Le camion transportait des marchandises.", + "example_sentence_english": "The truck was transporting goods.", + "pos": "noun", + "word_frequency": 3704 + }, + { + "word": "marquis", + "article_with_word": "le marquis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marquis", + "example_sentence_native": "Le marquis vivait dans un grand château.", + "example_sentence_english": "The marquis lived in a large castle.", + "pos": "noun", + "word_frequency": 3705 + }, + { + "word": "mythe", + "article_with_word": "le mythe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myth", + "example_sentence_native": "C'est un mythe que les chats ont neuf vies.", + "example_sentence_english": "It's a myth that cats have nine lives.", + "pos": "noun", + "word_frequency": 3706 + }, + { + "word": "nettoyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to clean", + "example_sentence_native": "Je dois nettoyer ma chambre.", + "example_sentence_english": "I need to clean my room.", + "pos": "verb", + "word_frequency": 3707 + }, + { + "word": "pic", + "article_with_word": "le pic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peak;pick", + "example_sentence_native": "Nous avons atteint le pic de la montagne.", + "example_sentence_english": "We reached the peak of the mountain.", + "pos": "noun", + "word_frequency": 3708 + }, + { + "word": "poussière", + "article_with_word": "la poussière", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dust", + "example_sentence_native": "Il y a beaucoup de poussière sur les meubles.", + "example_sentence_english": "There is a lot of dust on the furniture.", + "pos": "noun", + "word_frequency": 3709 + }, + { + "word": "problématique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "problematic", + "example_sentence_native": "La situation est devenue très problématique.", + "example_sentence_english": "The situation has become very problematic.", + "pos": "adjective", + "word_frequency": 3710 + }, + { + "word": "pétition", + "article_with_word": "la pétition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petition", + "example_sentence_native": "Ils ont signé une pétition pour protester.", + "example_sentence_english": "They signed a petition to protest.", + "pos": "noun", + "word_frequency": 3711 + }, + { + "word": "ranger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to tidy up;to put away", + "example_sentence_native": "Peux-tu ranger tes affaires s'il te plaît ?", + "example_sentence_english": "Can you put your things away please?", + "pos": "verb", + "word_frequency": 3712 + }, + { + "word": "rechercher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to search for;to research", + "example_sentence_native": "Il recherche des informations pour son projet.", + "example_sentence_english": "He is researching information for his project.", + "pos": "verb", + "word_frequency": 3713 + }, + { + "word": "recommandation", + "article_with_word": "la recommandation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recommendation", + "example_sentence_native": "J'ai reçu une bonne recommandation pour ce restaurant.", + "example_sentence_english": "I received a good recommendation for this restaurant.", + "pos": "noun", + "word_frequency": 3714 + }, + { + "word": "ré", + "article_with_word": "le ré", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "D (musical note)", + "example_sentence_native": "La note de musique après le do est le ré.", + "example_sentence_english": "The musical note after C is D.", + "pos": "noun", + "word_frequency": 3717 + }, + { + "word": "réparation", + "article_with_word": "la réparation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repair", + "example_sentence_native": "La voiture a besoin d'une réparation.", + "example_sentence_english": "The car needs a repair.", + "pos": "noun", + "word_frequency": 3718 + }, + { + "word": "révélation", + "article_with_word": "la révélation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revelation", + "example_sentence_native": "La découverte a été une véritable révélation pour les scientifiques.", + "example_sentence_english": "The discovery was a true revelation for the scientists.", + "pos": "noun", + "word_frequency": 3719 + }, + { + "word": "solidaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supportive;united", + "example_sentence_native": "Nous devons être solidaires les uns des autres en ces temps difficiles.", + "example_sentence_english": "We must be supportive of each other in these difficult times.", + "pos": "adjective", + "word_frequency": 3721 + }, + { + "word": "thread", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thread (internet discussion)", + "example_sentence_native": "J'ai lu tout le thread sur ce sujet intéressant.", + "example_sentence_english": "I read the whole thread on this interesting topic.", + "pos": "noun", + "word_frequency": 3723 + }, + { + "word": "témoigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to testify;to bear witness", + "example_sentence_native": "Elle a témoigné de son expérience devant le tribunal.", + "example_sentence_english": "She testified about her experience in court.", + "pos": "verb", + "word_frequency": 3725 + }, + { + "word": "veuve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widow", + "example_sentence_native": "La veuve a hérité de tous les biens de son mari.", + "example_sentence_english": "The widow inherited all her husband's property.", + "pos": "noun", + "word_frequency": 3726 + }, + { + "word": "échantillon", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sample", + "example_sentence_native": "Nous avons besoin d'un échantillon pour l'analyse en laboratoire.", + "example_sentence_english": "We need a sample for laboratory analysis.", + "pos": "noun", + "word_frequency": 3728 + }, + { + "word": "actionnaire", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shareholder", + "example_sentence_native": "L'actionnaire a voté lors de l'assemblée générale annuelle.", + "example_sentence_english": "The shareholder voted at the annual general meeting.", + "pos": "noun", + "word_frequency": 3729 + }, + { + "word": "adhésion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "membership;adherence", + "example_sentence_native": "Son adhésion au club de sport a été acceptée.", + "example_sentence_english": "His membership to the sports club was accepted.", + "pos": "noun", + "word_frequency": 3730 + }, + { + "word": "agenda", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diary;agenda", + "example_sentence_native": "J'ai noté le rendez-vous important dans mon agenda.", + "example_sentence_english": "I noted the important appointment in my diary.", + "pos": "noun", + "word_frequency": 3731 + }, + { + "word": "aire", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area;surface", + "example_sentence_native": "L'aire de jeu pour enfants est très spacieuse.", + "example_sentence_english": "The children's play area is very spacious.", + "pos": "noun", + "word_frequency": 3732 + }, + { + "word": "antique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antique;ancient", + "example_sentence_native": "Elle a acheté une magnifique commode antique.", + "example_sentence_english": "She bought a magnificent antique chest of drawers.", + "pos": "adjective", + "word_frequency": 3733 + }, + { + "word": "brûler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to burn", + "example_sentence_native": "Le bois brûle lentement dans la cheminée.", + "example_sentence_english": "The wood burns slowly in the fireplace.", + "pos": "verb", + "word_frequency": 3736 + }, + { + "word": "bâton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stick;baton", + "example_sentence_native": "Le randonneur s'appuyait sur un bâton pour marcher.", + "example_sentence_english": "The hiker leaned on a stick to walk.", + "pos": "noun", + "word_frequency": 3737 + }, + { + "word": "cage", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cage", + "example_sentence_native": "L'oiseau chante joyeusement dans sa cage.", + "example_sentence_english": "The bird sings happily in its cage.", + "pos": "noun", + "word_frequency": 3738 + }, + { + "word": "chèque", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "check (bank)", + "example_sentence_native": "J'ai payé mes courses par chèque bancaire.", + "example_sentence_english": "I paid for my groceries by bank check.", + "pos": "noun", + "word_frequency": 3739 + }, + { + "word": "cigarette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cigarette", + "example_sentence_native": "Il a allumé une cigarette après le repas.", + "example_sentence_english": "He lit a cigarette after the meal.", + "pos": "noun", + "word_frequency": 3740 + }, + { + "word": "considérablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerably", + "example_sentence_native": "La qualité de l'air s'est considérablement améliorée.", + "example_sentence_english": "The air quality has considerably improved.", + "pos": "adverb", + "word_frequency": 3741 + }, + { + "word": "correct", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "correct;proper", + "example_sentence_native": "Sa prononciation est presque parfaite, très correcte.", + "example_sentence_english": "His pronunciation is almost perfect, very correct.", + "pos": "adjective", + "word_frequency": 3742 + }, + { + "word": "créature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creature", + "example_sentence_native": "C'est une étrange créature marine découverte récemment.", + "example_sentence_english": "It's a strange marine creature recently discovered.", + "pos": "noun", + "word_frequency": 3743 + }, + { + "word": "deuil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mourning;grief", + "example_sentence_native": "La famille est en période de deuil après cette perte.", + "example_sentence_english": "The family is in a period of mourning after this loss.", + "pos": "noun", + "word_frequency": 3744 + }, + { + "word": "dépendance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependence;addiction", + "example_sentence_native": "Il lutte contre sa dépendance au tabac.", + "example_sentence_english": "He is fighting his tobacco addiction.", + "pos": "noun", + "word_frequency": 3745 + }, + { + "word": "espérance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hope;expectation", + "example_sentence_native": "L'espérance de vie a augmenté dans de nombreux pays.", + "example_sentence_english": "Life expectancy has increased in many countries.", + "pos": "noun", + "word_frequency": 3746 + }, + { + "word": "façade", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facade;front", + "example_sentence_native": "La façade de l'immeuble a été récemment rénovée.", + "example_sentence_english": "The facade of the building was recently renovated.", + "pos": "noun", + "word_frequency": 3747 + }, + { + "word": "fichier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "file (computer)", + "example_sentence_native": "J'ai sauvegardé le fichier important sur mon disque dur.", + "example_sentence_english": "I saved the important file on my hard drive.", + "pos": "noun", + "word_frequency": 3748 + }, + { + "word": "fusil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rifle;shotgun", + "example_sentence_native": "Le chasseur portait son fusil sur l'épaule.", + "example_sentence_english": "The hunter carried his rifle on his shoulder.", + "pos": "noun", + "word_frequency": 3749 + }, + { + "word": "goûter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to taste;to snack", + "example_sentence_native": "Voulez-vous goûter ce délicieux gâteau au chocolat ?", + "example_sentence_english": "Do you want to taste this delicious chocolate cake?", + "pos": "verb", + "word_frequency": 3750 + }, + { + "word": "grandeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greatness;size", + "example_sentence_native": "La grandeur de l'œuvre d'art est impressionnante.", + "example_sentence_english": "The greatness of the artwork is impressive.", + "pos": "noun", + "word_frequency": 3751 + }, + { + "word": "grossesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pregnancy", + "example_sentence_native": "Sa grossesse se déroule sans aucune complication.", + "example_sentence_english": "Her pregnancy is proceeding without any complications.", + "pos": "noun", + "word_frequency": 3752 + }, + { + "word": "offensive", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive;attack", + "example_sentence_native": "L'armée a lancé une offensive majeure contre les forces ennemies.", + "example_sentence_english": "The army launched a major offensive against enemy forces.", + "pos": "noun", + "word_frequency": 3759 + }, + { + "word": "oxygène", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oxygen", + "example_sentence_native": "L’oxygène est essentiel à la vie.", + "example_sentence_english": "Oxygen is essential for life.", + "pos": "noun", + "word_frequency": 3760 + }, + { + "word": "pacte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pact;agreement", + "example_sentence_native": "Ils ont signé un pacte de non-agression.", + "example_sentence_english": "They signed a non-aggression pact.", + "pos": "noun", + "word_frequency": 3761 + }, + { + "word": "parquet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wooden floor;public prosecutor's office", + "example_sentence_native": "Le vieux parquet craque sous mes pas.", + "example_sentence_english": "The old wooden floor creaks under my steps.", + "pos": "noun", + "word_frequency": 3762 + }, + { + "word": "pizza", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pizza", + "example_sentence_native": "J’adore manger une bonne pizza.", + "example_sentence_english": "I love eating a good pizza.", + "pos": "noun", + "word_frequency": 3763 + }, + { + "word": "polonais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Polish", + "example_sentence_native": "Il parle couramment le polonais.", + "example_sentence_english": "He speaks Polish fluently.", + "pos": "adjective", + "word_frequency": 3764 + }, + { + "word": "pâte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dough;pasta;paste", + "example_sentence_native": "J’ai préparé une pâte à crêpes.", + "example_sentence_english": "I prepared pancake batter.", + "pos": "noun", + "word_frequency": 3765 + }, + { + "word": "rembourser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refund;to reimburse", + "example_sentence_native": "L’entreprise va me rembourser les frais de voyage.", + "example_sentence_english": "The company will reimburse me for travel expenses.", + "pos": "verb", + "word_frequency": 3766 + }, + { + "word": "renouvellement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewal", + "example_sentence_native": "Le renouvellement de mon passeport est nécessaire.", + "example_sentence_english": "The renewal of my passport is necessary.", + "pos": "noun", + "word_frequency": 3767 + }, + { + "word": "repartir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to leave again;to restart", + "example_sentence_native": "Nous devons repartir avant la nuit.", + "example_sentence_english": "We must leave again before night.", + "pos": "verb", + "word_frequency": 3768 + }, + { + "word": "sensibilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitivity;sensibility", + "example_sentence_native": "Elle a une grande sensibilité artistique.", + "example_sentence_english": "She has great artistic sensibility.", + "pos": "noun", + "word_frequency": 3769 + }, + { + "word": "signification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meaning;significance", + "example_sentence_native": "Quelle est la signification de ce mot ?", + "example_sentence_english": "What is the meaning of this word?", + "pos": "noun", + "word_frequency": 3770 + }, + { + "word": "soviétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Soviet", + "example_sentence_native": "L’Union soviétique a existé de 1922 à 1991.", + "example_sentence_english": "The Soviet Union existed from 1922 to 1991.", + "pos": "adjective", + "word_frequency": 3771 + }, + { + "word": "substance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "substance", + "example_sentence_native": "Cette substance est très toxique.", + "example_sentence_english": "This substance is very toxic.", + "pos": "noun", + "word_frequency": 3772 + }, + { + "word": "sûrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surely;certainly", + "example_sentence_native": "Il viendra sûrement demain.", + "example_sentence_english": "He will surely come tomorrow.", + "pos": "adverb", + "word_frequency": 3773 + }, + { + "word": "tunnel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tunnel", + "example_sentence_native": "La voiture est entrée dans le tunnel.", + "example_sentence_english": "The car entered the tunnel.", + "pos": "noun", + "word_frequency": 3776 + }, + { + "word": "virer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn;to fire (from a job);to transfer (money)", + "example_sentence_native": "Le bateau a viré de bord.", + "example_sentence_english": "The boat turned around.", + "pos": "verb", + "word_frequency": 3777 + }, + { + "word": "absent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "absent", + "example_sentence_native": "Il était absent de la réunion.", + "example_sentence_english": "He was absent from the meeting.", + "pos": "adjective", + "word_frequency": 3781 + }, + { + "word": "adresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to address;to send", + "example_sentence_native": "Il a adressé une lettre au président.", + "example_sentence_english": "He addressed a letter to the president.", + "pos": "verb", + "word_frequency": 3782 + }, + { + "word": "annuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cancel", + "example_sentence_native": "Nous devons annuler le rendez-vous.", + "example_sentence_english": "We must cancel the appointment.", + "pos": "verb", + "word_frequency": 3783 + }, + { + "word": "apport", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution;input;down payment", + "example_sentence_native": "Son apport au projet a été crucial.", + "example_sentence_english": "His contribution to the project was crucial.", + "pos": "noun", + "word_frequency": 3784 + }, + { + "word": "attache", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fastener;tie;attachment", + "example_sentence_native": "J’ai perdu l’attache de mon collier.", + "example_sentence_english": "I lost the clasp of my necklace.", + "pos": "noun", + "word_frequency": 3785 + }, + { + "word": "avérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prove to be;to turn out", + "example_sentence_native": "L’information s’est avérée exacte.", + "example_sentence_english": "The information proved to be accurate.", + "pos": "verb", + "word_frequency": 3786 + }, + { + "word": "azur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "azure;sky blue", + "example_sentence_native": "Le ciel était d’un bleu azur magnifique.", + "example_sentence_english": "The sky was a magnificent azure blue.", + "pos": "adjective", + "word_frequency": 3787 + }, + { + "word": "brésilien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Brazilian", + "example_sentence_native": "Elle est d’origine brésilienne.", + "example_sentence_english": "She is of Brazilian origin.", + "pos": "adjective", + "word_frequency": 3789 + }, + { + "word": "campus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "campus", + "example_sentence_native": "Le campus universitaire est très grand.", + "example_sentence_english": "The university campus is very large.", + "pos": "noun", + "word_frequency": 3790 + }, + { + "word": "chouette", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great;nice;cool", + "example_sentence_native": "C’est une idée chouette !", + "example_sentence_english": "That’s a great idea!", + "pos": "adjective", + "word_frequency": 3791 + }, + { + "word": "collier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "necklace;collar", + "example_sentence_native": "Elle porte un beau collier en or.", + "example_sentence_english": "She wears a beautiful gold necklace.", + "pos": "noun", + "word_frequency": 3792 + }, + { + "word": "confier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to entrust;to confide", + "example_sentence_native": "Je lui ai confié un secret.", + "example_sentence_english": "I confided a secret to him.", + "pos": "verb", + "word_frequency": 3793 + }, + { + "word": "corriger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to correct", + "example_sentence_native": "Le professeur a corrigé les copies.", + "example_sentence_english": "The teacher corrected the papers.", + "pos": "verb", + "word_frequency": 3794 + }, + { + "word": "courbe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curve", + "example_sentence_native": "La voiture a pris le virage en douceur dans la courbe.", + "example_sentence_english": "The car took the turn smoothly on the curve.", + "pos": "noun", + "word_frequency": 3795 + }, + { + "word": "embrasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to kiss;to embrace", + "example_sentence_native": "Il a embrassé sa mère avant de partir.", + "example_sentence_english": "He kissed his mother before leaving.", + "pos": "verb", + "word_frequency": 3796 + }, + { + "word": "entente", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understanding;agreement", + "example_sentence_native": "Il y a une bonne entente entre eux.", + "example_sentence_english": "There is a good understanding between them.", + "pos": "noun", + "word_frequency": 3797 + }, + { + "word": "examiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to examine", + "example_sentence_native": "Le médecin va examiner le patient.", + "example_sentence_english": "The doctor will examine the patient.", + "pos": "verb", + "word_frequency": 3798 + }, + { + "word": "fidélité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fidelity;loyalty", + "example_sentence_native": "La fidélité est une qualité importante.", + "example_sentence_english": "Loyalty is an important quality.", + "pos": "noun", + "word_frequency": 3799 + }, + { + "word": "filière", + "article_with_word": "la filière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sector;industry;channel", + "example_sentence_native": "La filière agricole est essentielle pour l'économie.", + "example_sentence_english": "The agricultural sector is essential for the economy.", + "pos": "noun", + "word_frequency": 3800 + }, + { + "word": "franchise", + "article_with_word": "la franchise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honesty;frankness;franchise", + "example_sentence_native": "J'apprécie sa franchise.", + "example_sentence_english": "I appreciate his honesty.", + "pos": "noun", + "word_frequency": 3801 + }, + { + "word": "fur", + "article_with_word": "le fur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course;progress (in 'au fur et à mesure')", + "example_sentence_native": "Au fur et à mesure, il a compris la situation.", + "example_sentence_english": "Gradually, he understood the situation.", + "pos": "noun", + "word_frequency": 3805 + }, + { + "word": "gaffe", + "article_with_word": "la gaffe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blunder;mistake;gaffe", + "example_sentence_native": "J'ai fait une grosse gaffe.", + "example_sentence_english": "I made a big blunder.", + "pos": "noun", + "word_frequency": 3806 + }, + { + "word": "globalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall;globally", + "example_sentence_native": "Globalement, le projet a été un succès.", + "example_sentence_english": "Overall, the project was a success.", + "pos": "adverb", + "word_frequency": 3807 + }, + { + "word": "gré", + "article_with_word": "le gré", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will;consent", + "example_sentence_native": "Il a agi contre son gré.", + "example_sentence_english": "He acted against his will.", + "pos": "noun", + "word_frequency": 3808 + }, + { + "word": "hebdomadaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekly", + "example_sentence_native": "Nous avons une réunion hebdomadaire.", + "example_sentence_english": "We have a weekly meeting.", + "pos": "adjective", + "word_frequency": 3809 + }, + { + "word": "hygiène", + "article_with_word": "l'hygiène", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygiene", + "example_sentence_native": "L'hygiène est importante pour la santé.", + "example_sentence_english": "Hygiene is important for health.", + "pos": "noun", + "word_frequency": 3810 + }, + { + "word": "initialement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initially", + "example_sentence_native": "Initialement, le plan était différent.", + "example_sentence_english": "Initially, the plan was different.", + "pos": "adverb", + "word_frequency": 3811 + }, + { + "word": "invention", + "article_with_word": "l'invention", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invention", + "example_sentence_native": "L'invention de l'imprimerie a changé le monde.", + "example_sentence_english": "The invention of printing changed the world.", + "pos": "noun", + "word_frequency": 3812 + }, + { + "word": "laïcité", + "article_with_word": "la laïcité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secularism;secularity", + "example_sentence_native": "La laïcité est un principe fondamental en France.", + "example_sentence_english": "Secularism is a fundamental principle in France.", + "pos": "noun", + "word_frequency": 3814 + }, + { + "word": "lyonnais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Lyon;Lyonnaise", + "example_sentence_native": "Il aime la cuisine lyonnaise.", + "example_sentence_english": "He likes Lyonnaise cuisine.", + "pos": "adjective", + "word_frequency": 3815 + }, + { + "word": "manga", + "article_with_word": "le manga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "manga", + "example_sentence_native": "J'adore lire des mangas.", + "example_sentence_english": "I love reading manga.", + "pos": "noun", + "word_frequency": 3816 + }, + { + "word": "manifester", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manifest;to demonstrate", + "example_sentence_native": "Les étudiants ont manifesté contre la réforme.", + "example_sentence_english": "The students demonstrated against the reform.", + "pos": "verb", + "word_frequency": 3817 + }, + { + "word": "maths", + "article_with_word": "les maths", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "math;maths", + "example_sentence_native": "J'ai un cours de maths cet après-midi.", + "example_sentence_english": "I have a math class this afternoon.", + "pos": "noun", + "word_frequency": 3818 + }, + { + "word": "monétaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monetary", + "example_sentence_native": "La politique monétaire est décidée par la banque centrale.", + "example_sentence_english": "Monetary policy is decided by the central bank.", + "pos": "adjective", + "word_frequency": 3819 + }, + { + "word": "mériter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deserve;to merit", + "example_sentence_native": "Tu mérites cette récompense.", + "example_sentence_english": "You deserve this reward.", + "pos": "verb", + "word_frequency": 3820 + }, + { + "word": "observatoire", + "article_with_word": "l'observatoire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observatory", + "example_sentence_native": "L'observatoire de Paris est très ancien.", + "example_sentence_english": "The Paris observatory is very old.", + "pos": "noun", + "word_frequency": 3821 + }, + { + "word": "partiellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partially", + "example_sentence_native": "Le projet est partiellement terminé.", + "example_sentence_english": "The project is partially completed.", + "pos": "adverb", + "word_frequency": 3822 + }, + { + "word": "pme", + "article_with_word": "la PME", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "SME (Small and Medium-sized Enterprise)", + "example_sentence_native": "Les PME sont le moteur de l'économie.", + "example_sentence_english": "SMEs are the engine of the economy.", + "pos": "noun", + "word_frequency": 3823 + }, + { + "word": "poussée", + "article_with_word": "la poussée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "push;thrust;surge", + "example_sentence_native": "Il y a eu une forte poussée de croissance économique.", + "example_sentence_english": "There was a strong surge in economic growth.", + "pos": "noun", + "word_frequency": 3825 + }, + { + "word": "ressentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel;to experience", + "example_sentence_native": "Je ressens une grande joie.", + "example_sentence_english": "I feel great joy.", + "pos": "verb", + "word_frequency": 3826 + }, + { + "word": "récolte", + "article_with_word": "la récolte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harvest;crop", + "example_sentence_native": "La récolte de blé a été bonne cette année.", + "example_sentence_english": "The wheat harvest was good this year.", + "pos": "noun", + "word_frequency": 3827 + }, + { + "word": "rénovation", + "article_with_word": "la rénovation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renovation", + "example_sentence_native": "La rénovation de la maison est terminée.", + "example_sentence_english": "The house renovation is finished.", + "pos": "noun", + "word_frequency": 3828 + }, + { + "word": "répertoire", + "article_with_word": "le répertoire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directory;repertoire;address book", + "example_sentence_native": "J'ai cherché son numéro dans mon répertoire.", + "example_sentence_english": "I looked for his number in my address book.", + "pos": "noun", + "word_frequency": 3829 + }, + { + "word": "résider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reside;to live", + "example_sentence_native": "Il réside actuellement à l'étranger.", + "example_sentence_english": "He currently resides abroad.", + "pos": "verb", + "word_frequency": 3830 + }, + { + "word": "semblable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar;alike", + "example_sentence_native": "Ils ont des opinions semblables.", + "example_sentence_english": "They have similar opinions.", + "pos": "adjective", + "word_frequency": 3831 + }, + { + "word": "sympathique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nice;friendly;likeable", + "example_sentence_native": "C'est une personne très sympathique.", + "example_sentence_english": "He/She is a very nice person.", + "pos": "adjective", + "word_frequency": 3832 + }, + { + "word": "séquence", + "article_with_word": "la séquence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequence", + "example_sentence_native": "La séquence des événements était inattendue.", + "example_sentence_english": "The sequence of events was unexpected.", + "pos": "noun", + "word_frequency": 3833 + }, + { + "word": "tech", + "article_with_word": "la tech", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tech;technology", + "example_sentence_native": "Le secteur de la tech est en pleine croissance.", + "example_sentence_english": "The tech sector is growing rapidly.", + "pos": "noun", + "word_frequency": 3834 + }, + { + "word": "terrasse", + "article_with_word": "la terrasse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrace;patio;outdoor seating area", + "example_sentence_native": "Nous avons déjeuné sur la terrasse.", + "example_sentence_english": "We had lunch on the terrace.", + "pos": "noun", + "word_frequency": 3835 + }, + { + "word": "terrestre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrestrial;earthly", + "example_sentence_native": "La vie terrestre est diverse.", + "example_sentence_english": "Terrestrial life is diverse.", + "pos": "adjective", + "word_frequency": 3836 + }, + { + "word": "variation", + "article_with_word": "la variation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variation", + "example_sentence_native": "Il y a eu une légère variation de température.", + "example_sentence_english": "There was a slight variation in temperature.", + "pos": "noun", + "word_frequency": 3837 + }, + { + "word": "varier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vary;to change", + "example_sentence_native": "Les prix peuvent varier selon la saison.", + "example_sentence_english": "Prices can vary according to the season.", + "pos": "verb", + "word_frequency": 3838 + }, + { + "word": "absurde", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absurd", + "example_sentence_native": "C'est une idée absurde.", + "example_sentence_english": "It's an absurd idea.", + "pos": "adjective", + "word_frequency": 3840 + }, + { + "word": "alarme", + "article_with_word": "l'alarme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alarm", + "example_sentence_native": "L'alarme a sonné à six heures du matin.", + "example_sentence_english": "The alarm rang at six in the morning.", + "pos": "noun", + "word_frequency": 3841 + }, + { + "word": "ancêtre", + "article_with_word": "l'ancêtre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestor", + "example_sentence_native": "Mes ancêtres venaient d'Italie.", + "example_sentence_english": "My ancestors came from Italy.", + "pos": "noun", + "word_frequency": 3842 + }, + { + "word": "barrière", + "article_with_word": "la barrière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrier", + "example_sentence_native": "La barrière était fermée.", + "example_sentence_english": "The barrier was closed.", + "pos": "noun", + "word_frequency": 3847 + }, + { + "word": "chauffage", + "article_with_word": "le chauffage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heating", + "example_sentence_native": "Le chauffage est en panne.", + "example_sentence_english": "The heating is broken.", + "pos": "noun", + "word_frequency": 3849 + }, + { + "word": "collaborateur", + "article_with_word": "le collaborateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collaborator;colleague", + "example_sentence_native": "Il est un collaborateur précieux pour notre équipe.", + "example_sentence_english": "He is a valuable collaborator for our team.", + "pos": "noun", + "word_frequency": 3850 + }, + { + "word": "considérable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerable", + "example_sentence_native": "Il y a eu une augmentation considérable des prix.", + "example_sentence_english": "There has been a considerable increase in prices.", + "pos": "adjective", + "word_frequency": 3851 + }, + { + "word": "céder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to yield;to give in;to cede", + "example_sentence_native": "Il a dû céder sous la pression.", + "example_sentence_english": "He had to yield under pressure.", + "pos": "verb", + "word_frequency": 3852 + }, + { + "word": "céréale", + "article_with_word": "la céréale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cereal", + "example_sentence_native": "Les céréales sont une bonne source d'énergie.", + "example_sentence_english": "Cereals are a good source of energy.", + "pos": "noun", + "word_frequency": 3853 + }, + { + "word": "décoration", + "article_with_word": "la décoration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decoration", + "example_sentence_native": "La décoration de la pièce est très moderne.", + "example_sentence_english": "The room's decoration is very modern.", + "pos": "noun", + "word_frequency": 3854 + }, + { + "word": "définitif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "definitive;final", + "example_sentence_native": "C'est ma décision définitive.", + "example_sentence_english": "This is my definitive decision.", + "pos": "adjective", + "word_frequency": 3855 + }, + { + "word": "flamme", + "article_with_word": "la flamme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flame", + "example_sentence_native": "La flamme de la bougie vacillait.", + "example_sentence_english": "The candle flame flickered.", + "pos": "noun", + "word_frequency": 3856 + }, + { + "word": "foire", + "article_with_word": "la foire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;trade show", + "example_sentence_native": "Nous allons à la foire du livre ce week-end.", + "example_sentence_english": "We are going to the book fair this weekend.", + "pos": "noun", + "word_frequency": 3857 + }, + { + "word": "fun", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fun", + "example_sentence_native": "C'était une soirée très fun.", + "example_sentence_english": "It was a very fun evening.", + "pos": "adjective", + "word_frequency": 3858 + }, + { + "word": "honnêtement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honestly", + "example_sentence_native": "Honnêtement, je ne sais pas quoi faire.", + "example_sentence_english": "Honestly, I don't know what to do.", + "pos": "adverb", + "word_frequency": 3860 + }, + { + "word": "huitième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eighth", + "example_sentence_native": "C'est la huitième fois que je te le dis.", + "example_sentence_english": "This is the eighth time I've told you.", + "pos": "numeral", + "word_frequency": 3861 + }, + { + "word": "injuste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfair;unjust", + "example_sentence_native": "C'est une situation très injuste.", + "example_sentence_english": "It's a very unfair situation.", + "pos": "adjective", + "word_frequency": 3863 + }, + { + "word": "inquiétude", + "article_with_word": "l'inquiétude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worry;concern", + "example_sentence_native": "Son inquiétude était palpable.", + "example_sentence_english": "His worry was palpable.", + "pos": "noun", + "word_frequency": 3864 + }, + { + "word": "inventaire", + "article_with_word": "l'inventaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventory", + "example_sentence_native": "Nous devons faire l'inventaire des stocks.", + "example_sentence_english": "We need to take stock of the inventory.", + "pos": "noun", + "word_frequency": 3865 + }, + { + "word": "invisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invisible", + "example_sentence_native": "Le vent est invisible.", + "example_sentence_english": "The wind is invisible.", + "pos": "adjective", + "word_frequency": 3866 + }, + { + "word": "label", + "article_with_word": "le label", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "label", + "example_sentence_native": "Ce produit a un label de qualité.", + "example_sentence_english": "This product has a quality label.", + "pos": "noun", + "word_frequency": 3870 + }, + { + "word": "linguistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "linguistic", + "example_sentence_native": "Il étudie la linguistique.", + "example_sentence_english": "He studies linguistics.", + "pos": "adjective", + "word_frequency": 3871 + }, + { + "word": "mademoiselle", + "article_with_word": "la mademoiselle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Miss", + "example_sentence_native": "Bonjour, Mademoiselle.", + "example_sentence_english": "Hello, Miss.", + "pos": "noun", + "word_frequency": 3872 + }, + { + "word": "majoritairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predominantly;mostly", + "example_sentence_native": "La population est majoritairement jeune.", + "example_sentence_english": "The population is predominantly young.", + "pos": "adverb", + "word_frequency": 3873 + }, + { + "word": "minorité", + "article_with_word": "la minorité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minority", + "example_sentence_native": "C'est une minorité visible.", + "example_sentence_english": "It's a visible minority.", + "pos": "noun", + "word_frequency": 3874 + }, + { + "word": "mosquée", + "article_with_word": "la mosquée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosque", + "example_sentence_native": "La mosquée est un lieu de culte.", + "example_sentence_english": "The mosque is a place of worship.", + "pos": "noun", + "word_frequency": 3875 + }, + { + "word": "mâle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "male", + "example_sentence_native": "C'est un animal mâle.", + "example_sentence_english": "It's a male animal.", + "pos": "adjective", + "word_frequency": 3876 + }, + { + "word": "néerlandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dutch", + "example_sentence_native": "Il parle néerlandais.", + "example_sentence_english": "He speaks Dutch.", + "pos": "adjective", + "word_frequency": 3878 + }, + { + "word": "particule", + "article_with_word": "une particule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particle", + "example_sentence_native": "Une particule élémentaire est une particule subatomique.", + "example_sentence_english": "An elementary particle is a subatomic particle.", + "pos": "noun", + "word_frequency": 3880 + }, + { + "word": "pavillon", + "article_with_word": "le pavillon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pavilion;flag;detached house", + "example_sentence_native": "Le pavillon de la France flotte sur le bâtiment.", + "example_sentence_english": "The flag of France flies on the building.", + "pos": "noun", + "word_frequency": 3881 + }, + { + "word": "plaine", + "article_with_word": "la plaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plain", + "example_sentence_native": "Les vaches paissent dans la vaste plaine.", + "example_sentence_english": "The cows graze in the vast plain.", + "pos": "noun", + "word_frequency": 3882 + }, + { + "word": "prêter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lend", + "example_sentence_native": "Peux-tu me prêter ton stylo s'il te plaît ?", + "example_sentence_english": "Can you lend me your pen please?", + "pos": "verb", + "word_frequency": 3883 + }, + { + "word": "rap", + "article_with_word": "le rap", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rap (music)", + "example_sentence_native": "J'écoute souvent du rap quand je fais du sport.", + "example_sentence_english": "I often listen to rap when I exercise.", + "pos": "noun", + "word_frequency": 3884 + }, + { + "word": "renaissance", + "article_with_word": "la renaissance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebirth;Renaissance", + "example_sentence_native": "La Renaissance fut une période de grand développement artistique.", + "example_sentence_english": "The Renaissance was a period of great artistic development.", + "pos": "noun", + "word_frequency": 3885 + }, + { + "word": "régiment", + "article_with_word": "le régiment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regiment", + "example_sentence_native": "Le régiment a défilé dans les rues de la ville.", + "example_sentence_english": "The regiment marched through the city streets.", + "pos": "noun", + "word_frequency": 3886 + }, + { + "word": "sagesse", + "article_with_word": "la sagesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wisdom", + "example_sentence_native": "La sagesse vient avec l'expérience.", + "example_sentence_english": "Wisdom comes with experience.", + "pos": "noun", + "word_frequency": 3887 + }, + { + "word": "saoudite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Saudi", + "example_sentence_native": "L'Arabie saoudite est un grand producteur de pétrole.", + "example_sentence_english": "Saudi Arabia is a major oil producer.", + "pos": "adjective", + "word_frequency": 3888 + }, + { + "word": "satellite", + "article_with_word": "le satellite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satellite", + "example_sentence_native": "Le satellite a envoyé des images de la Terre.", + "example_sentence_english": "The satellite sent images of Earth.", + "pos": "noun", + "word_frequency": 3889 + }, + { + "word": "solde", + "article_with_word": "le solde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balance;sale", + "example_sentence_native": "Vérifiez le solde de votre compte bancaire.", + "example_sentence_english": "Check your bank account balance.", + "pos": "noun", + "word_frequency": 3890 + }, + { + "word": "solitude", + "article_with_word": "la solitude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solitude;loneliness", + "example_sentence_native": "Il apprécie les moments de solitude pour lire.", + "example_sentence_english": "He appreciates moments of solitude to read.", + "pos": "noun", + "word_frequency": 3891 + }, + { + "word": "stockage", + "article_with_word": "le stockage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storage", + "example_sentence_native": "Le stockage des données est essentiel pour cette entreprise.", + "example_sentence_english": "Data storage is essential for this company.", + "pos": "noun", + "word_frequency": 3892 + }, + { + "word": "subvention", + "article_with_word": "la subvention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidy;grant", + "example_sentence_native": "Le gouvernement a accordé une subvention pour le projet.", + "example_sentence_english": "The government granted a subsidy for the project.", + "pos": "noun", + "word_frequency": 3893 + }, + { + "word": "suspendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suspend;to hang", + "example_sentence_native": "Ils ont décidé de suspendre les travaux.", + "example_sentence_english": "They decided to suspend the work.", + "pos": "verb", + "word_frequency": 3894 + }, + { + "word": "testament", + "article_with_word": "le testament", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will;testament", + "example_sentence_native": "Il a laissé un testament clair pour ses héritiers.", + "example_sentence_english": "He left a clear will for his heirs.", + "pos": "noun", + "word_frequency": 3895 + }, + { + "word": "transporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to transport;to carry", + "example_sentence_native": "Le camion peut transporter de lourdes charges.", + "example_sentence_english": "The truck can transport heavy loads.", + "pos": "verb", + "word_frequency": 3897 + }, + { + "word": "turc", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Turkish", + "example_sentence_native": "Il parle couramment le turc.", + "example_sentence_english": "He speaks Turkish fluently.", + "pos": "adjective", + "word_frequency": 3898 + }, + { + "word": "échanger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to exchange;to swap", + "example_sentence_native": "Nous avons échangé nos adresses e-mail.", + "example_sentence_english": "We exchanged our email addresses.", + "pos": "verb", + "word_frequency": 3899 + }, + { + "word": "accomplir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accomplish;to fulfill", + "example_sentence_native": "Il a réussi à accomplir tous ses objectifs.", + "example_sentence_english": "He managed to accomplish all his goals.", + "pos": "verb", + "word_frequency": 3900 + }, + { + "word": "amiral", + "article_with_word": "l'amiral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admiral", + "example_sentence_native": "L'amiral a donné l'ordre d'attaquer.", + "example_sentence_english": "The admiral gave the order to attack.", + "pos": "noun", + "word_frequency": 3902 + }, + { + "word": "artisan", + "article_with_word": "l'artisan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artisan;craftsman", + "example_sentence_native": "L'artisan fabrique des meubles sur mesure.", + "example_sentence_english": "The craftsman makes custom furniture.", + "pos": "noun", + "word_frequency": 3903 + }, + { + "word": "assiette", + "article_with_word": "l'assiette", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "plate", + "example_sentence_native": "Mets les assiettes sur la table.", + "example_sentence_english": "Put the plates on the table.", + "pos": "noun", + "word_frequency": 3904 + }, + { + "word": "audio", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audio", + "example_sentence_native": "Le fichier audio est trop grand.", + "example_sentence_english": "The audio file is too large.", + "pos": "adjective", + "word_frequency": 3905 + }, + { + "word": "auguste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "august;majestic", + "example_sentence_native": "Le spectacle était d'une beauté auguste.", + "example_sentence_english": "The show was of an august beauty.", + "pos": "adjective", + "word_frequency": 3906 + }, + { + "word": "borne", + "article_with_word": "la borne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boundary marker;terminal;milestone", + "example_sentence_native": "La borne kilométrique indique la distance.", + "example_sentence_english": "The kilometer marker indicates the distance.", + "pos": "noun", + "word_frequency": 3907 + }, + { + "word": "cahier", + "article_with_word": "le cahier", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "notebook;exercise book", + "example_sentence_native": "Écris tes notes dans ton cahier.", + "example_sentence_english": "Write your notes in your notebook.", + "pos": "noun", + "word_frequency": 3908 + }, + { + "word": "calculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to calculate", + "example_sentence_native": "Peux-tu calculer le prix total s'il te plaît ?", + "example_sentence_english": "Can you calculate the total price please?", + "pos": "verb", + "word_frequency": 3909 + }, + { + "word": "cannabis", + "article_with_word": "le cannabis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannabis", + "example_sentence_native": "La législation sur le cannabis varie selon les pays.", + "example_sentence_english": "Cannabis legislation varies by country.", + "pos": "noun", + "word_frequency": 3910 + }, + { + "word": "carburant", + "article_with_word": "le carburant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel", + "example_sentence_native": "Il faut faire le plein de carburant avant de partir.", + "example_sentence_english": "We need to fill up with fuel before leaving.", + "pos": "noun", + "word_frequency": 3911 + }, + { + "word": "certificat", + "article_with_word": "le certificat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certificate", + "example_sentence_native": "J'ai reçu mon certificat de fin de formation.", + "example_sentence_english": "I received my training completion certificate.", + "pos": "noun", + "word_frequency": 3912 + }, + { + "word": "circulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circular", + "example_sentence_native": "La table est de forme circulaire.", + "example_sentence_english": "The table is circular in shape.", + "pos": "adjective", + "word_frequency": 3913 + }, + { + "word": "confirmation", + "article_with_word": "la confirmation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmation", + "example_sentence_native": "J'attends la confirmation de ma réservation.", + "example_sentence_english": "I am waiting for confirmation of my reservation.", + "pos": "noun", + "word_frequency": 3914 + }, + { + "word": "continuité", + "article_with_word": "la continuité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuity", + "example_sentence_native": "Il est important d'assurer la continuité du service.", + "example_sentence_english": "It is important to ensure service continuity.", + "pos": "noun", + "word_frequency": 3915 + }, + { + "word": "croiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cross;to meet", + "example_sentence_native": "J'ai croisé un vieil ami dans la rue.", + "example_sentence_english": "I met an old friend in the street.", + "pos": "verb", + "word_frequency": 3916 + }, + { + "word": "cuivre", + "article_with_word": "le cuivre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copper", + "example_sentence_native": "Les fils électriques sont souvent en cuivre.", + "example_sentence_english": "Electrical wires are often made of copper.", + "pos": "noun", + "word_frequency": 3917 + }, + { + "word": "dessert", + "article_with_word": "le dessert", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dessert", + "example_sentence_native": "Quel dessert aimeriez-vous après le repas ?", + "example_sentence_english": "What dessert would you like after the meal?", + "pos": "noun", + "word_frequency": 3919 + }, + { + "word": "diplomatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomatic", + "example_sentence_native": "Sa réponse était très diplomatique.", + "example_sentence_english": "His answer was very diplomatic.", + "pos": "adjective", + "word_frequency": 3920 + }, + { + "word": "discret", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discreet", + "example_sentence_native": "Il est très discret sur sa vie privée.", + "example_sentence_english": "He is very discreet about his private life.", + "pos": "adjective", + "word_frequency": 3921 + }, + { + "word": "effacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to erase", + "example_sentence_native": "Peux-tu effacer le tableau, s'il te plaît ?", + "example_sentence_english": "Can you erase the board, please?", + "pos": "verb", + "word_frequency": 3923 + }, + { + "word": "excuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to excuse;to apologize", + "example_sentence_native": "Je dois m'excuser pour mon retard.", + "example_sentence_english": "I must apologize for my lateness.", + "pos": "verb", + "word_frequency": 3924 + }, + { + "word": "exploiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exploit;to operate", + "example_sentence_native": "L'entreprise exploite une nouvelle mine.", + "example_sentence_english": "The company operates a new mine.", + "pos": "verb", + "word_frequency": 3925 + }, + { + "word": "filiale", + "article_with_word": "la filiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidiary", + "example_sentence_native": "Cette entreprise est une filiale de Google.", + "example_sentence_english": "This company is a subsidiary of Google.", + "pos": "noun", + "word_frequency": 3926 + }, + { + "word": "fêter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to celebrate", + "example_sentence_native": "Nous allons fêter son anniversaire ce soir.", + "example_sentence_english": "We are going to celebrate his birthday tonight.", + "pos": "verb", + "word_frequency": 3928 + }, + { + "word": "golfe", + "article_with_word": "le golfe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gulf", + "example_sentence_native": "Le golfe du Mexique est très grand.", + "example_sentence_english": "The Gulf of Mexico is very large.", + "pos": "noun", + "word_frequency": 3929 + }, + { + "word": "green", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "green (eco-friendly)", + "example_sentence_native": "C'est une initiative très green.", + "example_sentence_english": "It's a very green initiative.", + "pos": "adjective", + "word_frequency": 3930 + }, + { + "word": "générique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generic", + "example_sentence_native": "C'est un terme générique.", + "example_sentence_english": "It's a generic term.", + "pos": "adjective", + "word_frequency": 3931 + }, + { + "word": "inflation", + "article_with_word": "l'inflation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflation", + "example_sentence_native": "L'inflation a augmenté cette année.", + "example_sentence_english": "Inflation has increased this year.", + "pos": "noun", + "word_frequency": 3934 + }, + { + "word": "interroger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to question;to interrogate", + "example_sentence_native": "Le professeur a interrogé l'élève.", + "example_sentence_english": "The teacher questioned the student.", + "pos": "verb", + "word_frequency": 3935 + }, + { + "word": "intégralité", + "article_with_word": "l'intégralité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirety;completeness", + "example_sentence_native": "Il a lu l'intégralité du rapport.", + "example_sentence_english": "He read the entirety of the report.", + "pos": "noun", + "word_frequency": 3936 + }, + { + "word": "lave", + "article_with_word": "la lave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lava", + "example_sentence_native": "La lave coule du volcan.", + "example_sentence_english": "Lava flows from the volcano.", + "pos": "noun", + "word_frequency": 3937 + }, + { + "word": "menacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to threaten", + "example_sentence_native": "Il a menacé de partir si rien ne changeait.", + "example_sentence_english": "He threatened to leave if nothing changed.", + "pos": "verb", + "word_frequency": 3938 + }, + { + "word": "nerf", + "article_with_word": "le nerf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nerve", + "example_sentence_native": "Le nerf optique est essentiel pour la vision.", + "example_sentence_english": "The optic nerve is essential for vision.", + "pos": "noun", + "word_frequency": 3939 + }, + { + "word": "neveu", + "article_with_word": "le neveu", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nephew", + "example_sentence_native": "Mon neveu vient me rendre visite ce week-end.", + "example_sentence_english": "My nephew is coming to visit me this weekend.", + "pos": "noun", + "word_frequency": 3940 + }, + { + "word": "notice", + "article_with_word": "la notice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instruction manual;notice", + "example_sentence_native": "J'ai lu la notice avant d'utiliser l'appareil.", + "example_sentence_english": "I read the instruction manual before using the device.", + "pos": "noun", + "word_frequency": 3941 + }, + { + "word": "osé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daring;risqué", + "example_sentence_native": "C'était une blague un peu osée.", + "example_sentence_english": "It was a slightly risqué joke.", + "pos": "adjective", + "word_frequency": 3942 + }, + { + "word": "paroisse", + "article_with_word": "la paroisse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parish", + "example_sentence_native": "L'église est le centre de la paroisse.", + "example_sentence_english": "The church is the center of the parish.", + "pos": "noun", + "word_frequency": 3943 + }, + { + "word": "pompe", + "article_with_word": "la pompe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pump;pomp;push-up", + "example_sentence_native": "La pompe à eau est cassée.", + "example_sentence_english": "The water pump is broken.", + "pos": "noun", + "word_frequency": 3944 + }, + { + "word": "poubelle", + "article_with_word": "la poubelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trash can;bin", + "example_sentence_native": "Jette ça à la poubelle.", + "example_sentence_english": "Throw that in the trash can.", + "pos": "noun", + "word_frequency": 3945 + }, + { + "word": "promo", + "article_with_word": "la promo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promotion;discount", + "example_sentence_native": "Il y a une super promo sur les chaussures.", + "example_sentence_english": "There's a great promotion on shoes.", + "pos": "noun", + "word_frequency": 3946 + }, + { + "word": "prophète", + "article_with_word": "le prophète", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophet", + "example_sentence_native": "Le prophète a annoncé l'avenir.", + "example_sentence_english": "The prophet announced the future.", + "pos": "noun", + "word_frequency": 3947 + }, + { + "word": "préféré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "favorite;preferred", + "example_sentence_native": "C'est ma couleur préférée.", + "example_sentence_english": "It's my favorite color.", + "pos": "adjective", + "word_frequency": 3948 + }, + { + "word": "publiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publicly", + "example_sentence_native": "Il s'est excusé publiquement.", + "example_sentence_english": "He apologized publicly.", + "pos": "adverb", + "word_frequency": 3949 + }, + { + "word": "radical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radical", + "example_sentence_native": "Il a pris une décision radicale.", + "example_sentence_english": "He made a radical decision.", + "pos": "adjective", + "word_frequency": 3950 + }, + { + "word": "rejet", + "article_with_word": "le rejet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rejection;discharge", + "example_sentence_native": "Le rejet de la proposition a été un choc.", + "example_sentence_english": "The rejection of the proposal was a shock.", + "pos": "noun", + "word_frequency": 3951 + }, + { + "word": "requête", + "article_with_word": "la requête", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "request;query", + "example_sentence_native": "J'ai envoyé une requête au service client.", + "example_sentence_english": "I sent a request to customer service.", + "pos": "noun", + "word_frequency": 3952 + }, + { + "word": "réclame", + "article_with_word": "la réclame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advertisement;claim", + "example_sentence_native": "La réclame pour ce produit est partout.", + "example_sentence_english": "The advertisement for this product is everywhere.", + "pos": "noun", + "word_frequency": 3953 + }, + { + "word": "répétition", + "article_with_word": "la répétition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repetition;rehearsal", + "example_sentence_native": "Nous avons une répétition pour la pièce de théâtre.", + "example_sentence_english": "We have a rehearsal for the play.", + "pos": "noun", + "word_frequency": 3954 + }, + { + "word": "sanction", + "article_with_word": "la sanction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanction;penalty", + "example_sentence_native": "Le gouvernement a imposé des sanctions économiques.", + "example_sentence_english": "The government imposed economic sanctions.", + "pos": "noun", + "word_frequency": 3956 + }, + { + "word": "solitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solitary;lonely", + "example_sentence_native": "Il mène une vie solitaire.", + "example_sentence_english": "He leads a solitary life.", + "pos": "adjective", + "word_frequency": 3957 + }, + { + "word": "suédois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Swedish", + "example_sentence_native": "C'est une voiture suédoise.", + "example_sentence_english": "It's a Swedish car.", + "pos": "adjective", + "word_frequency": 3959 + }, + { + "word": "systématique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "systematic", + "example_sentence_native": "Il a une approche systématique pour résoudre les problèmes.", + "example_sentence_english": "He has a systematic approach to problem-solving.", + "pos": "adjective", + "word_frequency": 3960 + }, + { + "word": "séparé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separate;separated", + "example_sentence_native": "Les deux pièces sont séparées par un mur.", + "example_sentence_english": "The two rooms are separated by a wall.", + "pos": "adjective", + "word_frequency": 3961 + }, + { + "word": "trentaine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about thirty;thirties (age)", + "example_sentence_native": "Il a la trentaine.", + "example_sentence_english": "He is in his thirties.", + "pos": "noun", + "word_frequency": 3962 + }, + { + "word": "trouvé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "found", + "example_sentence_native": "L'objet trouvé a été rendu à son propriétaire.", + "example_sentence_english": "The found object was returned to its owner.", + "pos": "adjective", + "word_frequency": 3963 + }, + { + "word": "typique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typical", + "example_sentence_native": "C'est un exemple typique de son travail.", + "example_sentence_english": "This is a typical example of his work.", + "pos": "adjective", + "word_frequency": 3964 + }, + { + "word": "verser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pour;to pay", + "example_sentence_native": "Il faut verser l'eau dans le verre.", + "example_sentence_english": "You need to pour the water into the glass.", + "pos": "verb", + "word_frequency": 3966 + }, + { + "word": "allure", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pace;look;appearance", + "example_sentence_native": "Elle a une allure élégante.", + "example_sentence_english": "She has an elegant appearance.", + "pos": "noun", + "word_frequency": 3968 + }, + { + "word": "animateur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "host;presenter;facilitator", + "example_sentence_native": "L'animateur a bien géré le débat.", + "example_sentence_english": "The host managed the debate well.", + "pos": "noun", + "word_frequency": 3970 + }, + { + "word": "asiatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Asian", + "example_sentence_native": "La cuisine asiatique est très variée.", + "example_sentence_english": "Asian cuisine is very varied.", + "pos": "adjective", + "word_frequency": 3971 + }, + { + "word": "assuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assured;confident;insured", + "example_sentence_native": "Il est très assuré de ses capacités.", + "example_sentence_english": "He is very confident in his abilities.", + "pos": "adjective", + "word_frequency": 3972 + }, + { + "word": "casino", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casino", + "example_sentence_native": "Ils ont passé la soirée au casino.", + "example_sentence_english": "They spent the evening at the casino.", + "pos": "noun", + "word_frequency": 3976 + }, + { + "word": "chaine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chain;channel (TV)", + "example_sentence_native": "La chaîne de télévision a diffusé un bon film.", + "example_sentence_english": "The TV channel broadcast a good movie.", + "pos": "noun", + "word_frequency": 3977 + }, + { + "word": "christianisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christianity", + "example_sentence_native": "Le christianisme est une religion monothéiste.", + "example_sentence_english": "Christianity is a monotheistic religion.", + "pos": "noun", + "word_frequency": 3978 + }, + { + "word": "clef", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "key", + "example_sentence_native": "J'ai perdu ma clef de maison.", + "example_sentence_english": "I lost my house key.", + "pos": "noun", + "word_frequency": 3979 + }, + { + "word": "combattant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighter;combatant", + "example_sentence_native": "Le combattant a montré un grand courage.", + "example_sentence_english": "The fighter showed great courage.", + "pos": "noun", + "word_frequency": 3980 + }, + { + "word": "confondre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse;to mix up", + "example_sentence_native": "Il ne faut pas confondre vitesse et précipitation.", + "example_sentence_english": "One must not confuse speed and haste.", + "pos": "verb", + "word_frequency": 3981 + }, + { + "word": "conviction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction;belief", + "example_sentence_native": "Il a parlé avec une grande conviction.", + "example_sentence_english": "He spoke with great conviction.", + "pos": "noun", + "word_frequency": 3982 + }, + { + "word": "correction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correction;accuracy", + "example_sentence_native": "Le professeur a fait des corrections sur mon devoir.", + "example_sentence_english": "The teacher made corrections on my homework.", + "pos": "noun", + "word_frequency": 3983 + }, + { + "word": "cotisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution;membership fee", + "example_sentence_native": "La cotisation annuelle est de 50 euros.", + "example_sentence_english": "The annual membership fee is 50 euros.", + "pos": "noun", + "word_frequency": 3984 + }, + { + "word": "coton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cotton", + "example_sentence_native": "Ce t-shirt est en coton.", + "example_sentence_english": "This t-shirt is made of cotton.", + "pos": "noun", + "word_frequency": 3985 + }, + { + "word": "deja", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "already", + "example_sentence_native": "J'ai déjà mangé.", + "example_sentence_english": "I have already eaten.", + "pos": "adverb", + "word_frequency": 3986 + }, + { + "word": "digital", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digital", + "example_sentence_native": "Nous vivons à l'ère digitale.", + "example_sentence_english": "We live in the digital age.", + "pos": "adjective", + "word_frequency": 3987 + }, + { + "word": "doté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endowed;equipped", + "example_sentence_native": "Il est doté d'un grand talent.", + "example_sentence_english": "He is endowed with great talent.", + "pos": "adjective", + "word_frequency": 3988 + }, + { + "word": "empreinte", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footprint;print;impression", + "example_sentence_native": "On a trouvé des empreintes de pas dans la neige.", + "example_sentence_english": "Footprints were found in the snow.", + "pos": "noun", + "word_frequency": 3989 + }, + { + "word": "exploration", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploration", + "example_sentence_native": "L'exploration spatiale est fascinante.", + "example_sentence_english": "Space exploration is fascinating.", + "pos": "noun", + "word_frequency": 3990 + }, + { + "word": "fabricant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufacturer;maker", + "example_sentence_native": "Le fabricant garantit la qualité de ses produits.", + "example_sentence_english": "The manufacturer guarantees the quality of its products.", + "pos": "noun", + "word_frequency": 3991 + }, + { + "word": "fabriquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to manufacture;to make", + "example_sentence_native": "Cette usine fabrique des voitures.", + "example_sentence_english": "This factory manufactures cars.", + "pos": "verb", + "word_frequency": 3992 + }, + { + "word": "faille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flaw;fault;loophole", + "example_sentence_native": "Il y a une faille dans le système de sécurité.", + "example_sentence_english": "There is a flaw in the security system.", + "pos": "noun", + "word_frequency": 3993 + }, + { + "word": "faune", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fauna;wildlife", + "example_sentence_native": "La faune de cette région est très riche.", + "example_sentence_english": "The fauna of this region is very rich.", + "pos": "noun", + "word_frequency": 3994 + }, + { + "word": "fibre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fiber", + "example_sentence_native": "Les légumes sont riches en fibres.", + "example_sentence_english": "Vegetables are rich in fiber.", + "pos": "noun", + "word_frequency": 3995 + }, + { + "word": "graine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seed", + "example_sentence_native": "Il a planté une graine dans le jardin.", + "example_sentence_english": "He planted a seed in the garden.", + "pos": "noun", + "word_frequency": 3997 + }, + { + "word": "havre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "haven;harbor", + "example_sentence_native": "Ce port est un havre de paix.", + "example_sentence_english": "This port is a haven of peace.", + "pos": "noun", + "word_frequency": 3998 + }, + { + "word": "hiérarchie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hierarchy", + "example_sentence_native": "Il y a une hiérarchie claire dans cette entreprise.", + "example_sentence_english": "There is a clear hierarchy in this company.", + "pos": "noun", + "word_frequency": 3999 + }, + { + "word": "héritier", + "article_with_word": "l'héritier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heir", + "example_sentence_native": "Il est l'héritier de la fortune familiale.", + "example_sentence_english": "He is the heir to the family fortune.", + "pos": "noun", + "word_frequency": 4001 + }, + { + "word": "hôte", + "article_with_word": "l'hôte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "host", + "example_sentence_native": "L'hôte a accueilli ses invités chaleureusement.", + "example_sentence_english": "The host welcomed his guests warmly.", + "pos": "noun", + "word_frequency": 4002 + }, + { + "word": "ia", + "article_with_word": "l'IA", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "AI (Artificial Intelligence)", + "example_sentence_native": "L'IA transforme de nombreux secteurs.", + "example_sentence_english": "AI is transforming many sectors.", + "pos": "noun", + "word_frequency": 4003 + }, + { + "word": "idéologie", + "article_with_word": "l'idéologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideology", + "example_sentence_native": "Chaque parti politique a son idéologie.", + "example_sentence_english": "Every political party has its ideology.", + "pos": "noun", + "word_frequency": 4004 + }, + { + "word": "illégal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illegal", + "example_sentence_native": "C'est une activité illégale.", + "example_sentence_english": "This is an illegal activity.", + "pos": "adjective", + "word_frequency": 4005 + }, + { + "word": "innocent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "innocent", + "example_sentence_native": "Il a été déclaré innocent.", + "example_sentence_english": "He was declared innocent.", + "pos": "adjective", + "word_frequency": 4006 + }, + { + "word": "inégalité", + "article_with_word": "l'inégalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inequality", + "example_sentence_native": "Les inégalités sociales persistent.", + "example_sentence_english": "Social inequalities persist.", + "pos": "noun", + "word_frequency": 4007 + }, + { + "word": "jet", + "article_with_word": "le jet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jet;stream", + "example_sentence_native": "Le jet d'eau de la fontaine est impressionnant.", + "example_sentence_english": "The fountain's water jet is impressive.", + "pos": "noun", + "word_frequency": 4008 + }, + { + "word": "litre", + "article_with_word": "le litre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "liter", + "example_sentence_native": "J'ai acheté un litre de lait.", + "example_sentence_english": "I bought a liter of milk.", + "pos": "noun", + "word_frequency": 4010 + }, + { + "word": "marbre", + "article_with_word": "le marbre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marble", + "example_sentence_native": "La statue est sculptée dans le marbre.", + "example_sentence_english": "The statue is carved in marble.", + "pos": "noun", + "word_frequency": 4011 + }, + { + "word": "maturité", + "article_with_word": "la maturité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maturity", + "example_sentence_native": "Il a fait preuve de grande maturité.", + "example_sentence_english": "He showed great maturity.", + "pos": "noun", + "word_frequency": 4012 + }, + { + "word": "métrage", + "article_with_word": "le métrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footage;measurement", + "example_sentence_native": "Le métrage du film est trop long.", + "example_sentence_english": "The film footage is too long.", + "pos": "noun", + "word_frequency": 4015 + }, + { + "word": "nana", + "article_with_word": "la nana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chick;girl (informal)", + "example_sentence_native": "C'est une nana sympa.", + "example_sentence_english": "She's a nice girl.", + "pos": "noun", + "word_frequency": 4016 + }, + { + "word": "noyau", + "article_with_word": "le noyau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "core;kernel;pit", + "example_sentence_native": "Le noyau de la Terre est très chaud.", + "example_sentence_english": "The Earth's core is very hot.", + "pos": "noun", + "word_frequency": 4018 + }, + { + "word": "paille", + "article_with_word": "la paille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "straw", + "example_sentence_native": "Elle boit avec une paille.", + "example_sentence_english": "She drinks with a straw.", + "pos": "noun", + "word_frequency": 4019 + }, + { + "word": "panier", + "article_with_word": "le panier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket", + "example_sentence_native": "J'ai mis les fruits dans le panier.", + "example_sentence_english": "I put the fruits in the basket.", + "pos": "noun", + "word_frequency": 4020 + }, + { + "word": "paysan", + "article_with_word": "le paysan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peasant;farmer", + "example_sentence_native": "Le paysan travaille la terre.", + "example_sentence_english": "The farmer works the land.", + "pos": "noun", + "word_frequency": 4021 + }, + { + "word": "promenade", + "article_with_word": "la promenade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "walk;stroll", + "example_sentence_native": "Nous avons fait une longue promenade.", + "example_sentence_english": "We took a long walk.", + "pos": "noun", + "word_frequency": 4024 + }, + { + "word": "publié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "published", + "example_sentence_native": "Le livre a été publié l'année dernière.", + "example_sentence_english": "The book was published last year.", + "pos": "adjective", + "word_frequency": 4025 + }, + { + "word": "peser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to weigh", + "example_sentence_native": "Combien pèse ce paquet ?", + "example_sentence_english": "How much does this package weigh?", + "pos": "verb", + "word_frequency": 4026 + }, + { + "word": "ressortir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stand out;to emerge", + "example_sentence_native": "Ce détail ressort bien sur la photo.", + "example_sentence_english": "This detail stands out well in the photo.", + "pos": "verb", + "word_frequency": 4027 + }, + { + "word": "réaliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "realistic", + "example_sentence_native": "Il faut être réaliste face à la situation.", + "example_sentence_english": "One must be realistic about the situation.", + "pos": "adjective", + "word_frequency": 4028 + }, + { + "word": "rétablir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-establish;to restore", + "example_sentence_native": "Ils ont réussi à rétablir la connexion.", + "example_sentence_english": "They managed to re-establish the connection.", + "pos": "verb", + "word_frequency": 4029 + }, + { + "word": "sain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "healthy;sound", + "example_sentence_native": "Manger des fruits est sain.", + "example_sentence_english": "Eating fruit is healthy.", + "pos": "adjective", + "word_frequency": 4030 + }, + { + "word": "successeur", + "article_with_word": "le successeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successor", + "example_sentence_native": "Son successeur sera nommé la semaine prochaine.", + "example_sentence_english": "His successor will be named next week.", + "pos": "noun", + "word_frequency": 4032 + }, + { + "word": "systématiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "systematically", + "example_sentence_native": "Il vérifie systématiquement tous les documents.", + "example_sentence_english": "He systematically checks all documents.", + "pos": "adverb", + "word_frequency": 4033 + }, + { + "word": "séminaire", + "article_with_word": "le séminaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seminar", + "example_sentence_native": "J'assiste à un séminaire sur l'économie.", + "example_sentence_english": "I am attending a seminar on economics.", + "pos": "noun", + "word_frequency": 4034 + }, + { + "word": "territorial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "territorial", + "example_sentence_native": "C'est un conflit territorial.", + "example_sentence_english": "It's a territorial conflict.", + "pos": "adjective", + "word_frequency": 4035 + }, + { + "word": "urgent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "urgent", + "example_sentence_native": "C'est une question urgente.", + "example_sentence_english": "It's an urgent matter.", + "pos": "adjective", + "word_frequency": 4036 + }, + { + "word": "verbe", + "article_with_word": "le verbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verb", + "example_sentence_native": "Le verbe est le cœur de la phrase.", + "example_sentence_english": "The verb is the heart of the sentence.", + "pos": "noun", + "word_frequency": 4038 + }, + { + "word": "visibilité", + "article_with_word": "la visibilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visibility", + "example_sentence_native": "La visibilité était faible à cause du brouillard.", + "example_sentence_english": "Visibility was low due to the fog.", + "pos": "noun", + "word_frequency": 4039 + }, + { + "word": "vocabulaire", + "article_with_word": "le vocabulaire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vocabulary", + "example_sentence_native": "J'apprends du nouveau vocabulaire chaque jour.", + "example_sentence_english": "I learn new vocabulary every day.", + "pos": "noun", + "word_frequency": 4040 + }, + { + "word": "éteint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extinguished;off", + "example_sentence_native": "La lumière est éteinte.", + "example_sentence_english": "The light is off.", + "pos": "adjective", + "word_frequency": 4042 + }, + { + "word": "évolué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolved;advanced", + "example_sentence_native": "C'est un système très évolué.", + "example_sentence_english": "It's a very evolved system.", + "pos": "adjective", + "word_frequency": 4043 + }, + { + "word": "adoré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adored;beloved", + "example_sentence_native": "C'est mon livre adoré.", + "example_sentence_english": "It's my beloved book.", + "pos": "adjective", + "word_frequency": 4044 + }, + { + "word": "amendement", + "article_with_word": "un amendement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amendment", + "example_sentence_native": "Ils ont proposé un amendement à la loi.", + "example_sentence_english": "They proposed an amendment to the law.", + "pos": "noun", + "word_frequency": 4045 + }, + { + "word": "amusant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "amusing;fun", + "example_sentence_native": "Ce film est très amusant.", + "example_sentence_english": "This movie is very amusing.", + "pos": "adjective", + "word_frequency": 4046 + }, + { + "word": "anneau", + "article_with_word": "un anneau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring", + "example_sentence_native": "Elle porte un anneau en or.", + "example_sentence_english": "She wears a gold ring.", + "pos": "noun", + "word_frequency": 4047 + }, + { + "word": "approcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach", + "example_sentence_native": "Le train approche de la gare.", + "example_sentence_english": "The train is approaching the station.", + "pos": "verb", + "word_frequency": 4048 + }, + { + "word": "are", + "article_with_word": "un are", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "are (unit of area)", + "example_sentence_native": "Un are équivaut à cent mètres carrés.", + "example_sentence_english": "One are is equivalent to one hundred square meters.", + "pos": "noun", + "word_frequency": 4049 + }, + { + "word": "arrivant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arriving;incoming", + "example_sentence_native": "Les passagers arrivants doivent se présenter au comptoir.", + "example_sentence_english": "Arriving passengers must report to the counter.", + "pos": "adjective", + "word_frequency": 4050 + }, + { + "word": "chou", + "article_with_word": "le chou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cabbage", + "example_sentence_native": "J'aime la soupe au chou.", + "example_sentence_english": "I like cabbage soup.", + "pos": "noun", + "word_frequency": 4051 + }, + { + "word": "coco", + "article_with_word": "le coco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coconut", + "example_sentence_native": "L'eau de coco est rafraîchissante.", + "example_sentence_english": "Coconut water is refreshing.", + "pos": "noun", + "word_frequency": 4052 + }, + { + "word": "comique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic;funny", + "example_sentence_native": "C'est une situation très comique.", + "example_sentence_english": "It's a very comic situation.", + "pos": "adjective", + "word_frequency": 4053 + }, + { + "word": "commerçant", + "article_with_word": "un commerçant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shopkeeper;merchant", + "example_sentence_native": "Le commerçant a ouvert son magasin tôt.", + "example_sentence_english": "The shopkeeper opened his store early.", + "pos": "noun", + "word_frequency": 4054 + }, + { + "word": "comparé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compared", + "example_sentence_native": "Le prix est élevé comparé à la qualité.", + "example_sentence_english": "The price is high compared to the quality.", + "pos": "adjective", + "word_frequency": 4055 + }, + { + "word": "couler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flow;to sink", + "example_sentence_native": "L'eau coule de la fontaine.", + "example_sentence_english": "Water flows from the fountain.", + "pos": "verb", + "word_frequency": 4056 + }, + { + "word": "célébrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to celebrate", + "example_sentence_native": "Nous allons célébrer son anniversaire.", + "example_sentence_english": "We are going to celebrate his birthday.", + "pos": "verb", + "word_frequency": 4057 + }, + { + "word": "diesel", + "article_with_word": "le diesel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diesel", + "example_sentence_native": "Ma voiture roule au diesel.", + "example_sentence_english": "My car runs on diesel.", + "pos": "noun", + "word_frequency": 4059 + }, + { + "word": "discrimination", + "article_with_word": "la discrimination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrimination", + "example_sentence_native": "La discrimination est inacceptable.", + "example_sentence_english": "Discrimination is unacceptable.", + "pos": "noun", + "word_frequency": 4060 + }, + { + "word": "débuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to begin;to start", + "example_sentence_native": "Le concert va débuter à 20h.", + "example_sentence_english": "The concert will begin at 8 PM.", + "pos": "verb", + "word_frequency": 4062 + }, + { + "word": "dé", + "article_with_word": "le dé", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "die (for games)", + "example_sentence_native": "Lance le dé pour avancer.", + "example_sentence_english": "Roll the die to move forward.", + "pos": "noun", + "word_frequency": 4063 + }, + { + "word": "figurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appear;to figure", + "example_sentence_native": "Son nom figure sur la liste.", + "example_sentence_english": "His name appears on the list.", + "pos": "verb", + "word_frequency": 4064 + }, + { + "word": "guise", + "article_with_word": "la guise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guise;manner", + "example_sentence_native": "Il a agi en guise de protestation.", + "example_sentence_english": "He acted as a form of protest.", + "pos": "noun", + "word_frequency": 4067 + }, + { + "word": "handicap", + "article_with_word": "le handicap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disability;handicap", + "example_sentence_native": "Le sport aide à surmonter le handicap.", + "example_sentence_english": "Sport helps overcome disability.", + "pos": "noun", + "word_frequency": 4068 + }, + { + "word": "harmonie", + "article_with_word": "l'harmonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmony", + "example_sentence_native": "Ils vivent en parfaite harmonie.", + "example_sentence_english": "They live in perfect harmony.", + "pos": "noun", + "word_frequency": 4069 + }, + { + "word": "ignorance", + "article_with_word": "l'ignorance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorance", + "example_sentence_native": "L'ignorance est la source de nombreux problèmes.", + "example_sentence_english": "Ignorance is the source of many problems.", + "pos": "noun", + "word_frequency": 4071 + }, + { + "word": "illusion", + "article_with_word": "l'illusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illusion", + "example_sentence_native": "Il vit dans l'illusion.", + "example_sentence_english": "He lives in illusion.", + "pos": "noun", + "word_frequency": 4072 + }, + { + "word": "index", + "article_with_word": "l'index", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "index (finger);index (list)", + "example_sentence_native": "Il a pointé du doigt avec son index.", + "example_sentence_english": "He pointed with his index finger.", + "pos": "noun", + "word_frequency": 4073 + }, + { + "word": "infection", + "article_with_word": "l'infection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infection", + "example_sentence_native": "Il a une infection à la gorge.", + "example_sentence_english": "He has a throat infection.", + "pos": "noun", + "word_frequency": 4074 + }, + { + "word": "inspection", + "article_with_word": "l'inspection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspection", + "example_sentence_native": "L'inspection a révélé des problèmes.", + "example_sentence_english": "The inspection revealed problems.", + "pos": "noun", + "word_frequency": 4075 + }, + { + "word": "installé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installed;settled", + "example_sentence_native": "Il est bien installé dans sa nouvelle maison.", + "example_sentence_english": "He is well settled in his new house.", + "pos": "adjective", + "word_frequency": 4076 + }, + { + "word": "investisseur", + "article_with_word": "un investisseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investor", + "example_sentence_native": "L'entreprise recherche des investisseurs.", + "example_sentence_english": "The company is looking for investors.", + "pos": "noun", + "word_frequency": 4077 + }, + { + "word": "isolé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "isolated", + "example_sentence_native": "Le village est très isolé.", + "example_sentence_english": "The village is very isolated.", + "pos": "adjective", + "word_frequency": 4078 + }, + { + "word": "malaise", + "article_with_word": "le malaise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unease;discomfort;malaise", + "example_sentence_native": "Il a ressenti un léger malaise.", + "example_sentence_english": "He felt a slight discomfort.", + "pos": "noun", + "word_frequency": 4079 + }, + { + "word": "modalité", + "article_with_word": "la modalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "modality;procedure", + "example_sentence_native": "Nous devons définir les modalités de paiement.", + "example_sentence_english": "We need to define the payment terms.", + "pos": "noun", + "word_frequency": 4080 + }, + { + "word": "mérité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deserved;merited", + "example_sentence_native": "Sa victoire est bien méritée.", + "example_sentence_english": "His victory is well deserved.", + "pos": "adjective", + "word_frequency": 4081 + }, + { + "word": "nommé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appointed;named", + "example_sentence_native": "Il a été nommé directeur.", + "example_sentence_english": "He was appointed director.", + "pos": "adjective", + "word_frequency": 4082 + }, + { + "word": "obtenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obtained;acquired", + "example_sentence_native": "Les résultats obtenus sont excellents.", + "example_sentence_english": "The results obtained are excellent.", + "pos": "adjective", + "word_frequency": 4083 + }, + { + "word": "patrie", + "article_with_word": "la patrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homeland;fatherland", + "example_sentence_native": "Il a défendu sa patrie avec courage.", + "example_sentence_english": "He defended his homeland with courage.", + "pos": "noun", + "word_frequency": 4084 + }, + { + "word": "payant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paying;chargeable", + "example_sentence_native": "Le parking est payant.", + "example_sentence_english": "The parking is chargeable.", + "pos": "adjective", + "word_frequency": 4085 + }, + { + "word": "porto", + "article_with_word": "le porto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "port wine", + "example_sentence_native": "Nous avons bu un verre de porto après le dîner.", + "example_sentence_english": "We drank a glass of port wine after dinner.", + "pos": "noun", + "word_frequency": 4086 + }, + { + "word": "pourri", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rotten;spoiled", + "example_sentence_native": "La pomme est pourrie.", + "example_sentence_english": "The apple is rotten.", + "pos": "adjective", + "word_frequency": 4087 + }, + { + "word": "renvoyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to send back;to dismiss", + "example_sentence_native": "Il a été renvoyé de son travail.", + "example_sentence_english": "He was dismissed from his job.", + "pos": "verb", + "word_frequency": 4088 + }, + { + "word": "salade", + "article_with_word": "la salade", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salad;lettuce", + "example_sentence_native": "Je voudrais une salade verte.", + "example_sentence_english": "I would like a green salad.", + "pos": "noun", + "word_frequency": 4089 + }, + { + "word": "serment", + "article_with_word": "le serment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oath;pledge", + "example_sentence_native": "Il a prêté serment devant le tribunal.", + "example_sentence_english": "He took an oath before the court.", + "pos": "noun", + "word_frequency": 4091 + }, + { + "word": "signé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signed", + "example_sentence_native": "Le contrat est signé.", + "example_sentence_english": "The contract is signed.", + "pos": "adjective", + "word_frequency": 4092 + }, + { + "word": "soif", + "article_with_word": "la soif", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirst", + "example_sentence_native": "J'ai soif.", + "example_sentence_english": "I am thirsty.", + "pos": "noun", + "word_frequency": 4093 + }, + { + "word": "technologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technological", + "example_sentence_native": "C'est une avancée technologique majeure.", + "example_sentence_english": "It's a major technological advance.", + "pos": "adjective", + "word_frequency": 4094 + }, + { + "word": "tendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tense;stretched", + "example_sentence_native": "L'atmosphère était tendue.", + "example_sentence_english": "The atmosphere was tense.", + "pos": "adjective", + "word_frequency": 4095 + }, + { + "word": "tolérance", + "article_with_word": "la tolérance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerance", + "example_sentence_native": "La tolérance est essentielle dans une société diverse.", + "example_sentence_english": "Tolerance is essential in a diverse society.", + "pos": "noun", + "word_frequency": 4096 + }, + { + "word": "torture", + "article_with_word": "la torture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torture", + "example_sentence_native": "La torture est interdite par la loi.", + "example_sentence_english": "Torture is forbidden by law.", + "pos": "noun", + "word_frequency": 4097 + }, + { + "word": "tueur", + "article_with_word": "le tueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "killer;murderer", + "example_sentence_native": "La police recherche le tueur.", + "example_sentence_english": "The police are looking for the killer.", + "pos": "noun", + "word_frequency": 4098 + }, + { + "word": "vieil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "old (masculine before vowel;h)", + "example_sentence_native": "C'est un vieil ami.", + "example_sentence_english": "He is an old friend.", + "pos": "adjective", + "word_frequency": 4099 + }, + { + "word": "volet", + "article_with_word": "le volet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shutter;panel;aspect", + "example_sentence_native": "Ferme les volets, il fait nuit.", + "example_sentence_english": "Close the shutters, it's night.", + "pos": "noun", + "word_frequency": 4100 + }, + { + "word": "volontairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voluntarily;intentionally", + "example_sentence_native": "Il a agi volontairement.", + "example_sentence_english": "He acted voluntarily.", + "pos": "adverb", + "word_frequency": 4101 + }, + { + "word": "véritablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truly;genuinely", + "example_sentence_native": "C'est véritablement un chef-d'œuvre.", + "example_sentence_english": "It is truly a masterpiece.", + "pos": "adverb", + "word_frequency": 4102 + }, + { + "word": "éclairage", + "article_with_word": "l'éclairage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighting;illumination", + "example_sentence_native": "L'éclairage de la pièce est excellent.", + "example_sentence_english": "The lighting in the room is excellent.", + "pos": "noun", + "word_frequency": 4103 + }, + { + "word": "éloigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move away;to distance", + "example_sentence_native": "Il faut éloigner les enfants du danger.", + "example_sentence_english": "We must keep the children away from danger.", + "pos": "verb", + "word_frequency": 4104 + }, + { + "word": "étiquette", + "article_with_word": "l'étiquette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "label;etiquette", + "example_sentence_native": "Lisez l'étiquette avant d'utiliser le produit.", + "example_sentence_english": "Read the label before using the product.", + "pos": "noun", + "word_frequency": 4105 + }, + { + "word": "adorable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adorable;lovely", + "example_sentence_native": "Ce chaton est adorable.", + "example_sentence_english": "This kitten is adorable.", + "pos": "adjective", + "word_frequency": 4106 + }, + { + "word": "alternance", + "article_with_word": "l'alternance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternation;work-study program", + "example_sentence_native": "Il fait ses études en alternance.", + "example_sentence_english": "He is doing his studies on a work-study program.", + "pos": "noun", + "word_frequency": 4108 + }, + { + "word": "antiquité", + "article_with_word": "l'Antiquité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiquity;antique", + "example_sentence_native": "Il étudie l'Antiquité romaine.", + "example_sentence_english": "He studies Roman antiquity.", + "pos": "noun", + "word_frequency": 4109 + }, + { + "word": "appliqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diligent;applied", + "example_sentence_native": "C'est un élève très appliqué.", + "example_sentence_english": "He is a very diligent student.", + "pos": "adjective", + "word_frequency": 4110 + }, + { + "word": "attribué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attributed;assigned", + "example_sentence_native": "Le prix a été attribué au meilleur projet.", + "example_sentence_english": "The prize was awarded to the best project.", + "pos": "adjective", + "word_frequency": 4111 + }, + { + "word": "boisson", + "article_with_word": "la boisson", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "drink;beverage", + "example_sentence_native": "Quelle boisson voulez-vous?", + "example_sentence_english": "What drink do you want?", + "pos": "noun", + "word_frequency": 4112 + }, + { + "word": "cash", + "article_with_word": "le cash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cash", + "example_sentence_native": "Je n'ai pas de cash sur moi.", + "example_sentence_english": "I don't have any cash on me.", + "pos": "noun", + "word_frequency": 4113 + }, + { + "word": "chatte", + "article_with_word": "la chatte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female cat", + "example_sentence_native": "Ma chatte dort sur le canapé.", + "example_sentence_english": "My female cat is sleeping on the sofa.", + "pos": "noun", + "word_frequency": 4114 + }, + { + "word": "choisi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chosen;selected", + "example_sentence_native": "C'est le chemin choisi.", + "example_sentence_english": "This is the chosen path.", + "pos": "adjective", + "word_frequency": 4115 + }, + { + "word": "commissariat", + "article_with_word": "le commissariat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police station", + "example_sentence_native": "Il est allé au commissariat pour porter plainte.", + "example_sentence_english": "He went to the police station to file a complaint.", + "pos": "noun", + "word_frequency": 4116 + }, + { + "word": "concurrent", + "article_with_word": "le concurrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitor;rival", + "example_sentence_native": "Notre principal concurrent a lancé un nouveau produit.", + "example_sentence_english": "Our main competitor launched a new product.", + "pos": "noun", + "word_frequency": 4117 + }, + { + "word": "consensus", + "article_with_word": "le consensus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consensus", + "example_sentence_native": "Ils sont parvenus à un consensus.", + "example_sentence_english": "They reached a consensus.", + "pos": "noun", + "word_frequency": 4118 + }, + { + "word": "coordination", + "article_with_word": "la coordination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordination", + "example_sentence_native": "La coordination des équipes est essentielle.", + "example_sentence_english": "Team coordination is essential.", + "pos": "noun", + "word_frequency": 4119 + }, + { + "word": "divin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divine", + "example_sentence_native": "La beauté de ce paysage est vraiment divine.", + "example_sentence_english": "The beauty of this landscape is truly divine.", + "pos": "adjective", + "word_frequency": 4120 + }, + { + "word": "donné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "given", + "example_sentence_native": "Étant donné les circonstances, nous devons agir rapidement.", + "example_sentence_english": "Given the circumstances, we must act quickly.", + "pos": "adjective", + "word_frequency": 4121 + }, + { + "word": "détriment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detriment", + "example_sentence_native": "Il a agi à son propre détriment.", + "example_sentence_english": "He acted to his own detriment.", + "pos": "noun", + "word_frequency": 4122 + }, + { + "word": "education", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "education", + "example_sentence_native": "L'éducation est essentielle pour l'avenir.", + "example_sentence_english": "Education is essential for the future.", + "pos": "noun", + "word_frequency": 4123 + }, + { + "word": "exclusion", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusion", + "example_sentence_native": "La société doit lutter contre l'exclusion sociale.", + "example_sentence_english": "Society must fight against social exclusion.", + "pos": "noun", + "word_frequency": 4124 + }, + { + "word": "fiable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reliable", + "example_sentence_native": "Cette source d'information est très fiable.", + "example_sentence_english": "This source of information is very reliable.", + "pos": "adjective", + "word_frequency": 4125 + }, + { + "word": "filtre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filter", + "example_sentence_native": "Le filtre à café doit être changé.", + "example_sentence_english": "The coffee filter needs to be changed.", + "pos": "noun", + "word_frequency": 4126 + }, + { + "word": "fiscalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taxation", + "example_sentence_native": "La fiscalité des entreprises est un sujet complexe.", + "example_sentence_english": "Corporate taxation is a complex subject.", + "pos": "noun", + "word_frequency": 4127 + }, + { + "word": "infirmière", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nurse", + "example_sentence_native": "L'infirmière a pris ma température.", + "example_sentence_english": "The nurse took my temperature.", + "pos": "noun", + "word_frequency": 4129 + }, + { + "word": "lampe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lamp", + "example_sentence_native": "J'ai allumé la lampe de chevet.", + "example_sentence_english": "I turned on the bedside lamp.", + "pos": "noun", + "word_frequency": 4133 + }, + { + "word": "livret", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "booklet", + "example_sentence_native": "J'ai rangé mon livret de famille.", + "example_sentence_english": "I put away my family record book.", + "pos": "noun", + "word_frequency": 4134 + }, + { + "word": "maquillage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "makeup", + "example_sentence_native": "Elle a mis du maquillage avant de sortir.", + "example_sentence_english": "She put on makeup before going out.", + "pos": "noun", + "word_frequency": 4136 + }, + { + "word": "mat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matte", + "example_sentence_native": "J'ai choisi une peinture murale avec une finition mate.", + "example_sentence_english": "I chose wall paint with a matte finish.", + "pos": "adjective", + "word_frequency": 4137 + }, + { + "word": "muscle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "muscle", + "example_sentence_native": "Il a des muscles bien développés.", + "example_sentence_english": "He has well-developed muscles.", + "pos": "noun", + "word_frequency": 4138 + }, + { + "word": "nouveauté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novelty", + "example_sentence_native": "Quelle est la dernière nouveauté ?", + "example_sentence_english": "What's the latest novelty?", + "pos": "noun", + "word_frequency": 4139 + }, + { + "word": "paragraphe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paragraph", + "example_sentence_native": "Lisez le premier paragraphe attentivement.", + "example_sentence_english": "Read the first paragraph carefully.", + "pos": "noun", + "word_frequency": 4141 + }, + { + "word": "parallèlement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in parallel", + "example_sentence_native": "Parallèlement à ses études, il travaille.", + "example_sentence_english": "In parallel with his studies, he works.", + "pos": "adverb", + "word_frequency": 4142 + }, + { + "word": "pente", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slope", + "example_sentence_native": "La voiture a du mal à monter la pente.", + "example_sentence_english": "The car has difficulty going up the slope.", + "pos": "noun", + "word_frequency": 4143 + }, + { + "word": "permission", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "permission", + "example_sentence_native": "J'ai demandé la permission de sortir.", + "example_sentence_english": "I asked for permission to go out.", + "pos": "noun", + "word_frequency": 4144 + }, + { + "word": "porteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carrier", + "example_sentence_native": "Le porteur a aidé avec les bagages.", + "example_sentence_english": "The porter helped with the luggage.", + "pos": "noun", + "word_frequency": 4145 + }, + { + "word": "proprement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "properly", + "example_sentence_native": "Il faut nettoyer la cuisine proprement.", + "example_sentence_english": "The kitchen must be cleaned properly.", + "pos": "adverb", + "word_frequency": 4146 + }, + { + "word": "prudence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prudence", + "example_sentence_native": "La prudence est de mise sur cette route.", + "example_sentence_english": "Caution is advised on this road.", + "pos": "noun", + "word_frequency": 4147 + }, + { + "word": "péché", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sin", + "example_sentence_native": "Le vol est considéré comme un péché.", + "example_sentence_english": "Theft is considered a sin.", + "pos": "noun", + "word_frequency": 4148 + }, + { + "word": "rattraper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch up", + "example_sentence_native": "Je dois rattraper mon retard au travail.", + "example_sentence_english": "I need to catch up on my work.", + "pos": "verb", + "word_frequency": 4149 + }, + { + "word": "respirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to breathe", + "example_sentence_native": "Il est important de bien respirer.", + "example_sentence_english": "It is important to breathe well.", + "pos": "verb", + "word_frequency": 4150 + }, + { + "word": "resto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "restaurant (informal)", + "example_sentence_native": "On va au resto ce soir ?", + "example_sentence_english": "Shall we go to the restaurant tonight?", + "pos": "noun", + "word_frequency": 4151 + }, + { + "word": "ruine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruin", + "example_sentence_native": "Le château est en ruine.", + "example_sentence_english": "The castle is in ruin.", + "pos": "noun", + "word_frequency": 4152 + }, + { + "word": "saisie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seizure", + "example_sentence_native": "La saisie des données prend du temps.", + "example_sentence_english": "Data entry takes time.", + "pos": "noun", + "word_frequency": 4153 + }, + { + "word": "tracé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "path", + "example_sentence_native": "Le tracé de la route est sinueux.", + "example_sentence_english": "The path of the road is winding.", + "pos": "noun", + "word_frequency": 4155 + }, + { + "word": "trahison", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "betrayal", + "example_sentence_native": "La trahison de son ami l'a profondément blessé.", + "example_sentence_english": "His friend's betrayal deeply hurt him.", + "pos": "noun", + "word_frequency": 4156 + }, + { + "word": "usager", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "user", + "example_sentence_native": "Les usagers des transports en commun se plaignent.", + "example_sentence_english": "Public transport users are complaining.", + "pos": "noun", + "word_frequency": 4157 + }, + { + "word": "wifi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Wi-Fi", + "example_sentence_native": "Avez-vous le mot de passe du wifi ?", + "example_sentence_english": "Do you have the Wi-Fi password?", + "pos": "noun", + "word_frequency": 4159 + }, + { + "word": "adolescent", + "article_with_word": "un adolescent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teenager", + "example_sentence_native": "Mon frère est un adolescent.", + "example_sentence_english": "My brother is a teenager.", + "pos": "noun", + "word_frequency": 4161 + }, + { + "word": "affection", + "article_with_word": "l'affection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affection", + "example_sentence_native": "Elle a beaucoup d'affection pour ses petits-enfants.", + "example_sentence_english": "She has a lot of affection for her grandchildren.", + "pos": "noun", + "word_frequency": 4162 + }, + { + "word": "affecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affected;assigned", + "example_sentence_native": "Son comportement semblait très affecté.", + "example_sentence_english": "His behavior seemed very affected.", + "pos": "adjective", + "word_frequency": 4163 + }, + { + "word": "annexe", + "article_with_word": "l'annexe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annex;appendix", + "example_sentence_native": "Veuillez consulter l'annexe pour plus de détails.", + "example_sentence_english": "Please consult the annex for more details.", + "pos": "noun", + "word_frequency": 4164 + }, + { + "word": "archevêque", + "article_with_word": "l'archevêque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archbishop", + "example_sentence_native": "L'archevêque a prononcé un discours.", + "example_sentence_english": "The archbishop delivered a speech.", + "pos": "noun", + "word_frequency": 4165 + }, + { + "word": "assassiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assassinate;to murder", + "example_sentence_native": "Il a été accusé d'avoir assassiné le roi.", + "example_sentence_english": "He was accused of having assassinated the king.", + "pos": "verb", + "word_frequency": 4166 + }, + { + "word": "attribution", + "article_with_word": "l'attribution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attribution;assignment", + "example_sentence_native": "L'attribution des rôles a été difficile.", + "example_sentence_english": "The assignment of roles was difficult.", + "pos": "noun", + "word_frequency": 4167 + }, + { + "word": "avertissement", + "article_with_word": "un avertissement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warning", + "example_sentence_native": "Il a reçu un avertissement pour son retard.", + "example_sentence_english": "He received a warning for his lateness.", + "pos": "noun", + "word_frequency": 4168 + }, + { + "word": "charité", + "article_with_word": "la charité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charity", + "example_sentence_native": "La charité est une vertu importante.", + "example_sentence_english": "Charity is an important virtue.", + "pos": "noun", + "word_frequency": 4172 + }, + { + "word": "coller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stick;to glue", + "example_sentence_native": "Peux-tu coller cette affiche au mur ?", + "example_sentence_english": "Can you stick this poster on the wall?", + "pos": "verb", + "word_frequency": 4173 + }, + { + "word": "colline", + "article_with_word": "la colline", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hill", + "example_sentence_native": "Nous avons marché jusqu'au sommet de la colline.", + "example_sentence_english": "We walked to the top of the hill.", + "pos": "noun", + "word_frequency": 4174 + }, + { + "word": "complément", + "article_with_word": "le complément", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complement;addition", + "example_sentence_native": "Ce dessert est un excellent complément au repas.", + "example_sentence_english": "This dessert is an excellent complement to the meal.", + "pos": "noun", + "word_frequency": 4175 + }, + { + "word": "conversion", + "article_with_word": "la conversion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conversion", + "example_sentence_native": "La conversion de l'énergie solaire est essentielle.", + "example_sentence_english": "The conversion of solar energy is essential.", + "pos": "noun", + "word_frequency": 4176 + }, + { + "word": "couloir", + "article_with_word": "le couloir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corridor;hallway", + "example_sentence_native": "La salle de bain est au bout du couloir.", + "example_sentence_english": "The bathroom is at the end of the hallway.", + "pos": "noun", + "word_frequency": 4178 + }, + { + "word": "doctrine", + "article_with_word": "la doctrine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctrine", + "example_sentence_native": "La doctrine de l'Église est très ancienne.", + "example_sentence_english": "The doctrine of the Church is very old.", + "pos": "noun", + "word_frequency": 4179 + }, + { + "word": "estimation", + "article_with_word": "l'estimation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "estimation", + "example_sentence_native": "Nous attendons l'estimation des coûts.", + "example_sentence_english": "We are waiting for the cost estimation.", + "pos": "noun", + "word_frequency": 4180 + }, + { + "word": "exclu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excluded", + "example_sentence_native": "Il se sentait exclu du groupe.", + "example_sentence_english": "He felt excluded from the group.", + "pos": "adjective", + "word_frequency": 4181 + }, + { + "word": "extrémité", + "article_with_word": "l'extrémité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremity;end", + "example_sentence_native": "Il a atteint l'extrémité de la corde.", + "example_sentence_english": "He reached the end of the rope.", + "pos": "noun", + "word_frequency": 4182 + }, + { + "word": "filet", + "article_with_word": "le filet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "net;fillet", + "example_sentence_native": "Le pêcheur a jeté son filet dans l'eau.", + "example_sentence_english": "The fisherman cast his net into the water.", + "pos": "noun", + "word_frequency": 4183 + }, + { + "word": "goutte", + "article_with_word": "la goutte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drop", + "example_sentence_native": "Il y a une goutte d'eau sur la table.", + "example_sentence_english": "There is a drop of water on the table.", + "pos": "noun", + "word_frequency": 4184 + }, + { + "word": "illustration", + "article_with_word": "l'illustration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustration", + "example_sentence_native": "Le livre contient de belles illustrations.", + "example_sentence_english": "The book contains beautiful illustrations.", + "pos": "noun", + "word_frequency": 4186 + }, + { + "word": "insulter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insult", + "example_sentence_native": "Il n'est pas poli d'insulter les gens.", + "example_sentence_english": "It is not polite to insult people.", + "pos": "verb", + "word_frequency": 4187 + }, + { + "word": "légion", + "article_with_word": "la légion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legion", + "example_sentence_native": "Une légion de fans attendait l'artiste.", + "example_sentence_english": "A legion of fans was waiting for the artist.", + "pos": "noun", + "word_frequency": 4190 + }, + { + "word": "majoritaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majority", + "example_sentence_native": "Le parti majoritaire a remporté les élections.", + "example_sentence_english": "The majority party won the elections.", + "pos": "adjective", + "word_frequency": 4191 + }, + { + "word": "merveille", + "article_with_word": "la merveille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonder;marvel", + "example_sentence_native": "C'est une merveille de la nature.", + "example_sentence_english": "It's a wonder of nature.", + "pos": "noun", + "word_frequency": 4192 + }, + { + "word": "nier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deny", + "example_sentence_native": "Il ne peut pas nier la vérité.", + "example_sentence_english": "He cannot deny the truth.", + "pos": "verb", + "word_frequency": 4195 + }, + { + "word": "obstacle", + "article_with_word": "l'obstacle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obstacle", + "example_sentence_native": "Nous avons surmonté tous les obstacles.", + "example_sentence_english": "We overcame all obstacles.", + "pos": "noun", + "word_frequency": 4196 + }, + { + "word": "oriental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eastern;oriental", + "example_sentence_native": "Le soleil se lève à l'horizon oriental.", + "example_sentence_english": "The sun rises on the eastern horizon.", + "pos": "adjective", + "word_frequency": 4197 + }, + { + "word": "pneu", + "article_with_word": "le pneu", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tire", + "example_sentence_native": "Mon pneu est à plat.", + "example_sentence_english": "My tire is flat.", + "pos": "noun", + "word_frequency": 4198 + }, + { + "word": "quinzaine", + "article_with_word": "la quinzaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortnight;about fifteen", + "example_sentence_native": "Je serai en vacances pendant une quinzaine de jours.", + "example_sentence_english": "I will be on vacation for about two weeks.", + "pos": "noun", + "word_frequency": 4199 + }, + { + "word": "rassurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reassure", + "example_sentence_native": "J'ai essayé de la rassurer après l'accident.", + "example_sentence_english": "I tried to reassure her after the accident.", + "pos": "verb", + "word_frequency": 4200 + }, + { + "word": "recommencer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to restart;to begin again", + "example_sentence_native": "Il faut recommencer le travail depuis le début.", + "example_sentence_english": "We need to restart the work from the beginning.", + "pos": "verb", + "word_frequency": 4201 + }, + { + "word": "relief", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relief", + "example_sentence_native": "J'ai ressenti un grand soulagement, un vrai relief.", + "example_sentence_english": "I felt a great sense of relief, a true relief.", + "pos": "noun", + "word_frequency": 4202 + }, + { + "word": "rocher", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock;boulder", + "example_sentence_native": "Le bateau a heurté un rocher caché sous l'eau.", + "example_sentence_english": "The boat hit a rock hidden under the water.", + "pos": "noun", + "word_frequency": 4203 + }, + { + "word": "sacrifice", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrifice", + "example_sentence_native": "Son sacrifice a permis de sauver de nombreuses vies.", + "example_sentence_english": "His sacrifice saved many lives.", + "pos": "noun", + "word_frequency": 4204 + }, + { + "word": "simplicité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simplicity", + "example_sentence_native": "J'apprécie la simplicité de son style de vie.", + "example_sentence_english": "I appreciate the simplicity of his lifestyle.", + "pos": "noun", + "word_frequency": 4205 + }, + { + "word": "soumis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submissive;subjected", + "example_sentence_native": "Il est toujours très soumis à l'autorité.", + "example_sentence_english": "He is always very submissive to authority.", + "pos": "adjective", + "word_frequency": 4206 + }, + { + "word": "terreur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terror", + "example_sentence_native": "La terreur s'est emparée de la foule.", + "example_sentence_english": "Terror seized the crowd.", + "pos": "noun", + "word_frequency": 4207 + }, + { + "word": "tragique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragic", + "example_sentence_native": "C'était un événement tragique pour toute la communauté.", + "example_sentence_english": "It was a tragic event for the entire community.", + "pos": "adjective", + "word_frequency": 4208 + }, + { + "word": "vain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vain;futile", + "example_sentence_native": "Tous ses efforts se sont avérés vains.", + "example_sentence_english": "All his efforts proved to be vain.", + "pos": "adjective", + "word_frequency": 4209 + }, + { + "word": "weekend", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "weekend", + "example_sentence_native": "Qu'est-ce que tu fais ce weekend ?", + "example_sentence_english": "What are you doing this weekend?", + "pos": "noun", + "word_frequency": 4210 + }, + { + "word": "échouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail;to run aground", + "example_sentence_native": "Il a échoué à son examen de conduite.", + "example_sentence_english": "He failed his driving test.", + "pos": "verb", + "word_frequency": 4211 + }, + { + "word": "élaboration", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elaboration;development", + "example_sentence_native": "L'élaboration du plan a pris plusieurs mois.", + "example_sentence_english": "The elaboration of the plan took several months.", + "pos": "noun", + "word_frequency": 4212 + }, + { + "word": "émettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emit;to issue", + "example_sentence_native": "La cheminée émet de la fumée.", + "example_sentence_english": "The chimney emits smoke.", + "pos": "verb", + "word_frequency": 4213 + }, + { + "word": "épaisseur", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thickness", + "example_sentence_native": "L'épaisseur de la glace est dangereuse.", + "example_sentence_english": "The thickness of the ice is dangerous.", + "pos": "noun", + "word_frequency": 4214 + }, + { + "word": "évasion", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escape;evasion", + "example_sentence_native": "Il rêve d'évasion et de voyages lointains.", + "example_sentence_english": "He dreams of escape and distant travels.", + "pos": "noun", + "word_frequency": 4215 + }, + { + "word": "évènement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "event", + "example_sentence_native": "C'était un évènement inoubliable.", + "example_sentence_english": "It was an unforgettable event.", + "pos": "noun", + "word_frequency": 4216 + }, + { + "word": "accordé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "granted;agreed;tuned", + "example_sentence_native": "Le délai supplémentaire a été accordé.", + "example_sentence_english": "The additional delay was granted.", + "pos": "adjective", + "word_frequency": 4217 + }, + { + "word": "angoisse", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anguish;anxiety", + "example_sentence_native": "Elle ressentait une profonde angoisse avant l'examen.", + "example_sentence_english": "She felt a deep anguish before the exam.", + "pos": "noun", + "word_frequency": 4219 + }, + { + "word": "appétit", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appetite", + "example_sentence_native": "J'ai un grand appétit après cette longue marche.", + "example_sentence_english": "I have a big appetite after this long walk.", + "pos": "noun", + "word_frequency": 4220 + }, + { + "word": "arracher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pull out;to snatch", + "example_sentence_native": "Il a dû arracher la mauvaise herbe du jardin.", + "example_sentence_english": "He had to pull out the weed from the garden.", + "pos": "verb", + "word_frequency": 4221 + }, + { + "word": "balade", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stroll;walk", + "example_sentence_native": "Nous avons fait une belle balade en forêt.", + "example_sentence_english": "We took a nice stroll in the forest.", + "pos": "noun", + "word_frequency": 4222 + }, + { + "word": "ban", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ban;prohibition", + "example_sentence_native": "Le gouvernement a imposé un ban sur les importations.", + "example_sentence_english": "The government imposed a ban on imports.", + "pos": "noun", + "word_frequency": 4223 + }, + { + "word": "bond", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jump;leap", + "example_sentence_native": "Le chat a fait un bond pour attraper la souris.", + "example_sentence_english": "The cat made a jump to catch the mouse.", + "pos": "noun", + "word_frequency": 4224 + }, + { + "word": "chômeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unemployed person", + "example_sentence_native": "Le nombre de chômeurs a augmenté ce mois-ci.", + "example_sentence_english": "The number of unemployed people increased this month.", + "pos": "noun", + "word_frequency": 4226 + }, + { + "word": "cliché", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cliché;stereotype", + "example_sentence_native": "Son discours était rempli de clichés.", + "example_sentence_english": "His speech was full of clichés.", + "pos": "noun", + "word_frequency": 4228 + }, + { + "word": "complexité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complexity", + "example_sentence_native": "La complexité du problème est décourageante.", + "example_sentence_english": "The complexity of the problem is discouraging.", + "pos": "noun", + "word_frequency": 4230 + }, + { + "word": "comptable", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accountant", + "example_sentence_native": "J'ai rendez-vous avec mon comptable demain.", + "example_sentence_english": "I have an appointment with my accountant tomorrow.", + "pos": "noun", + "word_frequency": 4231 + }, + { + "word": "confortable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comfortable", + "example_sentence_native": "Ce canapé est très confortable.", + "example_sentence_english": "This sofa is very comfortable.", + "pos": "adjective", + "word_frequency": 4232 + }, + { + "word": "coordonnée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coordinate;contact detail", + "example_sentence_native": "Veuillez me donner vos coordonnées.", + "example_sentence_english": "Please give me your contact details.", + "pos": "noun", + "word_frequency": 4233 + }, + { + "word": "data", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "data", + "example_sentence_native": "L'analyse de ces data est cruciale.", + "example_sentence_english": "The analysis of this data is crucial.", + "pos": "noun", + "word_frequency": 4234 + }, + { + "word": "duel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duel", + "example_sentence_native": "Les deux chevaliers se sont affrontés en duel.", + "example_sentence_english": "The two knights faced each other in a duel.", + "pos": "noun", + "word_frequency": 4236 + }, + { + "word": "défilé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parade;fashion show;defile", + "example_sentence_native": "Nous avons assisté au défilé de mode.", + "example_sentence_english": "We attended the fashion show.", + "pos": "noun", + "word_frequency": 4237 + }, + { + "word": "détenu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detainee;prisoner", + "example_sentence_native": "Le détenu a tenté de s'échapper de prison.", + "example_sentence_english": "The detainee tried to escape from prison.", + "pos": "noun", + "word_frequency": 4238 + }, + { + "word": "exclusif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive", + "example_sentence_native": "C'est une offre exclusive pour nos membres.", + "example_sentence_english": "This is an exclusive offer for our members.", + "pos": "adjective", + "word_frequency": 4239 + }, + { + "word": "exil", + "article_with_word": "l'exil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exile", + "example_sentence_native": "Il a vécu en exil pendant de nombreuses années.", + "example_sentence_english": "He lived in exile for many years.", + "pos": "noun", + "word_frequency": 4240 + }, + { + "word": "ferroviaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway", + "example_sentence_native": "Le réseau ferroviaire français est très développé.", + "example_sentence_english": "The French railway network is very developed.", + "pos": "adjective", + "word_frequency": 4241 + }, + { + "word": "floride", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flourishing", + "example_sentence_native": "Sa santé est floride malgré son âge avancé.", + "example_sentence_english": "His health is flourishing despite his advanced age.", + "pos": "adjective", + "word_frequency": 4242 + }, + { + "word": "fournisseur", + "article_with_word": "le fournisseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supplier", + "example_sentence_native": "Nous avons changé de fournisseur d'électricité.", + "example_sentence_english": "We changed electricity supplier.", + "pos": "noun", + "word_frequency": 4243 + }, + { + "word": "franchir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cross", + "example_sentence_native": "Il a franchi la ligne d'arrivée en premier.", + "example_sentence_english": "He crossed the finish line first.", + "pos": "verb", + "word_frequency": 4244 + }, + { + "word": "idem", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "likewise", + "example_sentence_native": "Je pense la même chose, idem pour moi.", + "example_sentence_english": "I think the same thing, likewise for me.", + "pos": "adverb", + "word_frequency": 4248 + }, + { + "word": "intègre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upright", + "example_sentence_native": "C'est une personne très intègre et honnête.", + "example_sentence_english": "He is a very upright and honest person.", + "pos": "adjective", + "word_frequency": 4250 + }, + { + "word": "islamiste", + "article_with_word": "un islamiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamist", + "example_sentence_native": "Le gouvernement a condamné les actions des groupes islamistes.", + "example_sentence_english": "The government condemned the actions of Islamist groups.", + "pos": "noun", + "word_frequency": 4251 + }, + { + "word": "lame", + "article_with_word": "la lame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blade", + "example_sentence_native": "La lame du couteau est très aiguisée.", + "example_sentence_english": "The knife blade is very sharp.", + "pos": "noun", + "word_frequency": 4253 + }, + { + "word": "localisation", + "article_with_word": "la localisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "location", + "example_sentence_native": "Nous avons activé la localisation sur notre téléphone.", + "example_sentence_english": "We activated location on our phone.", + "pos": "noun", + "word_frequency": 4254 + }, + { + "word": "maximal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maximum", + "example_sentence_native": "La vitesse maximale autorisée est de 130 km/h.", + "example_sentence_english": "The maximum authorized speed is 130 km/h.", + "pos": "adjective", + "word_frequency": 4256 + }, + { + "word": "mystérieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mysterious", + "example_sentence_native": "Il y a eu un événement mystérieux la nuit dernière.", + "example_sentence_english": "There was a mysterious event last night.", + "pos": "adjective", + "word_frequency": 4258 + }, + { + "word": "nazi", + "article_with_word": "un nazi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nazi", + "example_sentence_native": "Les crimes nazis ont marqué l'histoire.", + "example_sentence_english": "Nazi crimes marked history.", + "pos": "noun", + "word_frequency": 4260 + }, + { + "word": "partiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partial", + "example_sentence_native": "Il a un emploi à temps partiel.", + "example_sentence_english": "He has a part-time job.", + "pos": "adjective", + "word_frequency": 4265 + }, + { + "word": "podium", + "article_with_word": "le podium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "podium", + "example_sentence_native": "Il est monté sur le podium pour recevoir sa médaille.", + "example_sentence_english": "He went up on the podium to receive his medal.", + "pos": "noun", + "word_frequency": 4266 + }, + { + "word": "poing", + "article_with_word": "le poing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fist", + "example_sentence_native": "Il a serré le poing de colère.", + "example_sentence_english": "He clenched his fist in anger.", + "pos": "noun", + "word_frequency": 4267 + }, + { + "word": "psy", + "article_with_word": "le psy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shrink", + "example_sentence_native": "J'ai rendez-vous chez le psy la semaine prochaine.", + "example_sentence_english": "I have an appointment with the shrink next week.", + "pos": "noun", + "word_frequency": 4268 + }, + { + "word": "rapprochement", + "article_with_word": "le rapprochement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rapprochement", + "example_sentence_native": "Il y a eu un rapprochement entre les deux pays.", + "example_sentence_english": "There was a rapprochement between the two countries.", + "pos": "noun", + "word_frequency": 4269 + }, + { + "word": "ras", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short-cropped", + "example_sentence_native": "Les cheveux sont coupés ras.", + "example_sentence_english": "The hair is cut short-cropped.", + "pos": "adjective", + "word_frequency": 4270 + }, + { + "word": "rassembler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gather", + "example_sentence_native": "Nous devons rassembler toutes les informations.", + "example_sentence_english": "We must gather all the information.", + "pos": "verb", + "word_frequency": 4271 + }, + { + "word": "reproduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reproduce", + "example_sentence_native": "Il est interdit de reproduire ce document sans autorisation.", + "example_sentence_english": "It is forbidden to reproduce this document without authorization.", + "pos": "verb", + "word_frequency": 4272 + }, + { + "word": "requérir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to require", + "example_sentence_native": "Cette tâche requiert une grande concentration.", + "example_sentence_english": "This task requires great concentration.", + "pos": "verb", + "word_frequency": 4273 + }, + { + "word": "saga", + "article_with_word": "la saga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saga", + "example_sentence_native": "La saga Star Wars est très populaire.", + "example_sentence_english": "The Star Wars saga is very popular.", + "pos": "noun", + "word_frequency": 4274 + }, + { + "word": "serpent", + "article_with_word": "le serpent", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snake", + "example_sentence_native": "Le serpent se cache dans l'herbe.", + "example_sentence_english": "The snake hides in the grass.", + "pos": "noun", + "word_frequency": 4275 + }, + { + "word": "serrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tighten", + "example_sentence_native": "Il a serré la main de son ami.", + "example_sentence_english": "He shook his friend's hand.", + "pos": "verb", + "word_frequency": 4276 + }, + { + "word": "sida", + "article_with_word": "le sida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "AIDS", + "example_sentence_native": "La recherche sur le sida a fait de grands progrès.", + "example_sentence_english": "AIDS research has made great progress.", + "pos": "noun", + "word_frequency": 4277 + }, + { + "word": "spectre", + "article_with_word": "le spectre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spectrum", + "example_sentence_native": "Le spectre des prix est très large.", + "example_sentence_english": "The price spectrum is very wide.", + "pos": "noun", + "word_frequency": 4278 + }, + { + "word": "spécialité", + "article_with_word": "la spécialité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialty", + "example_sentence_native": "La cuisine locale est sa spécialité.", + "example_sentence_english": "Local cuisine is his specialty.", + "pos": "noun", + "word_frequency": 4279 + }, + { + "word": "stand", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stand", + "example_sentence_native": "Il y avait un stand de glaces au marché.", + "example_sentence_english": "There was an ice cream stand at the market.", + "pos": "noun", + "word_frequency": 4280 + }, + { + "word": "sublime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sublime", + "example_sentence_native": "Le paysage était absolument sublime.", + "example_sentence_english": "The landscape was absolutely sublime.", + "pos": "adjective", + "word_frequency": 4281 + }, + { + "word": "tactique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactic", + "example_sentence_native": "Ils ont élaboré une nouvelle tactique pour le match.", + "example_sentence_english": "They developed a new tactic for the match.", + "pos": "noun", + "word_frequency": 4282 + }, + { + "word": "trans", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trans", + "example_sentence_native": "La communauté trans est de plus en plus visible.", + "example_sentence_english": "The trans community is increasingly visible.", + "pos": "adjective", + "word_frequency": 4283 + }, + { + "word": "transaction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transaction", + "example_sentence_native": "La transaction a été effectuée en ligne.", + "example_sentence_english": "The transaction was completed online.", + "pos": "noun", + "word_frequency": 4284 + }, + { + "word": "triomphe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumph", + "example_sentence_native": "Sa victoire fut un véritable triomphe.", + "example_sentence_english": "His victory was a true triumph.", + "pos": "noun", + "word_frequency": 4286 + }, + { + "word": "télécharger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to download", + "example_sentence_native": "Je dois télécharger ce fichier.", + "example_sentence_english": "I need to download this file.", + "pos": "verb", + "word_frequency": 4287 + }, + { + "word": "violation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violation", + "example_sentence_native": "C'est une violation des règles.", + "example_sentence_english": "It's a violation of the rules.", + "pos": "noun", + "word_frequency": 4288 + }, + { + "word": "élimination", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elimination", + "example_sentence_native": "L'élimination de l'équipe a été une surprise.", + "example_sentence_english": "The team's elimination was a surprise.", + "pos": "noun", + "word_frequency": 4289 + }, + { + "word": "éternel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternal", + "example_sentence_native": "Il croit en l'amour éternel.", + "example_sentence_english": "He believes in eternal love.", + "pos": "adjective", + "word_frequency": 4290 + }, + { + "word": "agglomération", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urban area", + "example_sentence_native": "La circulation est dense dans l'agglomération parisienne.", + "example_sentence_english": "Traffic is heavy in the Parisian urban area.", + "pos": "noun", + "word_frequency": 4292 + }, + { + "word": "assise", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation", + "example_sentence_native": "Les assises de la démocratie sont fragiles.", + "example_sentence_english": "The foundations of democracy are fragile.", + "pos": "noun", + "word_frequency": 4293 + }, + { + "word": "aviation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aviation", + "example_sentence_native": "L'aviation civile est très réglementée.", + "example_sentence_english": "Civil aviation is highly regulated.", + "pos": "noun", + "word_frequency": 4294 + }, + { + "word": "botte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boot", + "example_sentence_native": "Elle porte des bottes en cuir.", + "example_sentence_english": "She is wearing leather boots.", + "pos": "noun", + "word_frequency": 4295 + }, + { + "word": "cauchemar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightmare", + "example_sentence_native": "J'ai fait un horrible cauchemar la nuit dernière.", + "example_sentence_english": "I had a horrible nightmare last night.", + "pos": "noun", + "word_frequency": 4296 + }, + { + "word": "certitude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certainty", + "example_sentence_native": "Il n'y a aucune certitude dans cette affaire.", + "example_sentence_english": "There is no certainty in this matter.", + "pos": "noun", + "word_frequency": 4297 + }, + { + "word": "chasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hunt", + "example_sentence_native": "Le chat aime chasser les souris.", + "example_sentence_english": "The cat likes to hunt mice.", + "pos": "verb", + "word_frequency": 4298 + }, + { + "word": "croyance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belief", + "example_sentence_native": "Ses croyances religieuses sont très fortes.", + "example_sentence_english": "His religious beliefs are very strong.", + "pos": "noun", + "word_frequency": 4299 + }, + { + "word": "dictature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictatorship", + "example_sentence_native": "Le pays a vécu sous une dictature pendant des décennies.", + "example_sentence_english": "The country lived under a dictatorship for decades.", + "pos": "noun", + "word_frequency": 4301 + }, + { + "word": "documentation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentation", + "example_sentence_native": "Veuillez lire la documentation avant d'utiliser l'appareil.", + "example_sentence_english": "Please read the documentation before using the device.", + "pos": "noun", + "word_frequency": 4303 + }, + { + "word": "délicieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delicious", + "example_sentence_native": "Ce gâteau est absolument délicieux.", + "example_sentence_english": "This cake is absolutely delicious.", + "pos": "adjective", + "word_frequency": 4304 + }, + { + "word": "dépenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to spend", + "example_sentence_native": "Il aime dépenser son argent en voyages.", + "example_sentence_english": "He likes to spend his money on travel.", + "pos": "verb", + "word_frequency": 4305 + }, + { + "word": "emprunter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to borrow", + "example_sentence_native": "Puis-je emprunter votre stylo ?", + "example_sentence_english": "Can I borrow your pen?", + "pos": "verb", + "word_frequency": 4306 + }, + { + "word": "estomac", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stomach", + "example_sentence_native": "J'ai mal à l'estomac.", + "example_sentence_english": "I have a stomach ache.", + "pos": "noun", + "word_frequency": 4307 + }, + { + "word": "favori", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "favorite", + "example_sentence_native": "C'est mon livre favori.", + "example_sentence_english": "This is my favorite book.", + "pos": "adjective", + "word_frequency": 4308 + }, + { + "word": "grain", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain", + "example_sentence_native": "Il y a un grain de sable dans mon œil.", + "example_sentence_english": "There's a grain of sand in my eye.", + "pos": "noun", + "word_frequency": 4309 + }, + { + "word": "humide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "humid", + "example_sentence_native": "Le temps est très humide aujourd'hui.", + "example_sentence_english": "The weather is very humid today.", + "pos": "adjective", + "word_frequency": 4310 + }, + { + "word": "intégrité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integrity", + "example_sentence_native": "Il est connu pour son intégrité.", + "example_sentence_english": "He is known for his integrity.", + "pos": "noun", + "word_frequency": 4311 + }, + { + "word": "irlandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Irish", + "example_sentence_native": "Elle est d'origine irlandaise.", + "example_sentence_english": "She is of Irish origin.", + "pos": "adjective", + "word_frequency": 4312 + }, + { + "word": "légitimité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimacy", + "example_sentence_native": "La légitimité de cette décision est contestée.", + "example_sentence_english": "The legitimacy of this decision is disputed.", + "pos": "noun", + "word_frequency": 4313 + }, + { + "word": "marathon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marathon", + "example_sentence_native": "Il s'entraîne pour le marathon de Paris.", + "example_sentence_english": "He is training for the Paris marathon.", + "pos": "noun", + "word_frequency": 4314 + }, + { + "word": "opposant", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opponent", + "example_sentence_native": "L'opposant politique a critiqué le gouvernement.", + "example_sentence_english": "The political opponent criticized the government.", + "pos": "noun", + "word_frequency": 4318 + }, + { + "word": "passeport", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passport", + "example_sentence_native": "N'oubliez pas votre passeport pour le voyage.", + "example_sentence_english": "Don't forget your passport for the trip.", + "pos": "noun", + "word_frequency": 4319 + }, + { + "word": "phare", + "article_with_word": "le phare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighthouse", + "example_sentence_native": "Le phare guide les bateaux la nuit.", + "example_sentence_english": "The lighthouse guides the boats at night.", + "pos": "noun", + "word_frequency": 4320 + }, + { + "word": "pharmacie", + "article_with_word": "la pharmacie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pharmacy", + "example_sentence_native": "Je dois aller à la pharmacie pour acheter des médicaments.", + "example_sentence_english": "I need to go to the pharmacy to buy some medicine.", + "pos": "noun", + "word_frequency": 4321 + }, + { + "word": "placement", + "article_with_word": "le placement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "example_sentence_native": "Il a fait un bon placement immobilier.", + "example_sentence_english": "He made a good real estate investment.", + "pos": "noun", + "word_frequency": 4322 + }, + { + "word": "presser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to press", + "example_sentence_native": "Il faut presser le pas si on veut arriver à l'heure.", + "example_sentence_english": "We need to hurry if we want to arrive on time.", + "pos": "verb", + "word_frequency": 4323 + }, + { + "word": "productivité", + "article_with_word": "la productivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productivity", + "example_sentence_native": "L'entreprise cherche à améliorer sa productivité.", + "example_sentence_english": "The company seeks to improve its productivity.", + "pos": "noun", + "word_frequency": 4324 + }, + { + "word": "projection", + "article_with_word": "la projection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projection", + "example_sentence_native": "La projection du film aura lieu ce soir.", + "example_sentence_english": "The film's screening will take place tonight.", + "pos": "noun", + "word_frequency": 4325 + }, + { + "word": "rachat", + "article_with_word": "le rachat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buyout", + "example_sentence_native": "Le rachat de l'entreprise a été annoncé hier.", + "example_sentence_english": "The company's buyout was announced yesterday.", + "pos": "noun", + "word_frequency": 4326 + }, + { + "word": "raisonnement", + "article_with_word": "le raisonnement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasoning", + "example_sentence_native": "Son raisonnement était logique et convaincant.", + "example_sentence_english": "His reasoning was logical and convincing.", + "pos": "noun", + "word_frequency": 4327 + }, + { + "word": "revers", + "article_with_word": "le revers", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setback", + "example_sentence_native": "Malgré ce revers, il a continué à travailler dur.", + "example_sentence_english": "Despite this setback, he continued to work hard.", + "pos": "noun", + "word_frequency": 4328 + }, + { + "word": "réclamer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to claim", + "example_sentence_native": "Il a réclamé son dû.", + "example_sentence_english": "He claimed what was due to him.", + "pos": "verb", + "word_frequency": 4329 + }, + { + "word": "sanitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanitary", + "example_sentence_native": "Les mesures sanitaires sont très strictes.", + "example_sentence_english": "The sanitary measures are very strict.", + "pos": "adjective", + "word_frequency": 4330 + }, + { + "word": "start", + "article_with_word": "le start", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start", + "example_sentence_native": "Le start de la course est à 10h.", + "example_sentence_english": "The start of the race is at 10 AM.", + "pos": "noun", + "word_frequency": 4333 + }, + { + "word": "ticket", + "article_with_word": "le ticket", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ticket", + "example_sentence_native": "N'oubliez pas votre ticket de caisse.", + "example_sentence_english": "Don't forget your receipt.", + "pos": "noun", + "word_frequency": 4335 + }, + { + "word": "timide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shy", + "example_sentence_native": "Elle est très timide avec les inconnus.", + "example_sentence_english": "She is very shy with strangers.", + "pos": "adjective", + "word_frequency": 4336 + }, + { + "word": "tribu", + "article_with_word": "la tribu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tribe", + "example_sentence_native": "Cette tribu vit dans la forêt amazonienne.", + "example_sentence_english": "This tribe lives in the Amazon rainforest.", + "pos": "noun", + "word_frequency": 4337 + }, + { + "word": "urbanisme", + "article_with_word": "l'urbanisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urban planning", + "example_sentence_native": "L'urbanisme est essentiel pour le développement des villes.", + "example_sentence_english": "Urban planning is essential for city development.", + "pos": "noun", + "word_frequency": 4338 + }, + { + "word": "vérification", + "article_with_word": "la vérification", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verification", + "example_sentence_native": "Une vérification des comptes est nécessaire.", + "example_sentence_english": "A check of the accounts is necessary.", + "pos": "noun", + "word_frequency": 4340 + }, + { + "word": "accessoire", + "article_with_word": "l'accessoire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessory", + "example_sentence_native": "Elle a acheté un nouvel accessoire pour son téléphone.", + "example_sentence_english": "She bought a new accessory for her phone.", + "pos": "noun", + "word_frequency": 4341 + }, + { + "word": "ado", + "article_with_word": "un ado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teenager", + "example_sentence_native": "Mon fils est un ado de 15 ans.", + "example_sentence_english": "My son is a 15-year-old teenager.", + "pos": "noun", + "word_frequency": 4342 + }, + { + "word": "blues", + "article_with_word": "le blues", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blues", + "example_sentence_native": "Il a le blues aujourd'hui.", + "example_sentence_english": "He has the blues today.", + "pos": "noun", + "word_frequency": 4344 + }, + { + "word": "bonhomme", + "article_with_word": "le bonhomme", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fellow", + "example_sentence_native": "C'est un drôle de bonhomme.", + "example_sentence_english": "He's a funny fellow.", + "pos": "noun", + "word_frequency": 4345 + }, + { + "word": "bourg", + "article_with_word": "le bourg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "market town", + "example_sentence_native": "Le bourg est animé le jour du marché.", + "example_sentence_english": "The market town is lively on market day.", + "pos": "noun", + "word_frequency": 4346 + }, + { + "word": "charmant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "charming", + "example_sentence_native": "C'est un homme très charmant.", + "example_sentence_english": "He is a very charming man.", + "pos": "adjective", + "word_frequency": 4349 + }, + { + "word": "cloche", + "article_with_word": "la cloche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell", + "example_sentence_native": "La cloche de l'église sonne midi.", + "example_sentence_english": "The church bell rings noon.", + "pos": "noun", + "word_frequency": 4351 + }, + { + "word": "comparable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparable", + "example_sentence_native": "Ces deux situations ne sont pas comparables.", + "example_sentence_english": "These two situations are not comparable.", + "pos": "adjective", + "word_frequency": 4352 + }, + { + "word": "conjoint", + "article_with_word": "le conjoint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spouse", + "example_sentence_native": "Mon conjoint et moi partons en vacances.", + "example_sentence_english": "My spouse and I are going on vacation.", + "pos": "noun", + "word_frequency": 4353 + }, + { + "word": "contenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to satisfy", + "example_sentence_native": "Il est difficile de contenter tout le monde.", + "example_sentence_english": "It's difficult to satisfy everyone.", + "pos": "verb", + "word_frequency": 4354 + }, + { + "word": "coréen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Korean", + "example_sentence_native": "J'apprends le coréen.", + "example_sentence_english": "I am learning Korean.", + "pos": "adjective", + "word_frequency": 4355 + }, + { + "word": "domestique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domestic", + "example_sentence_native": "Les animaux domestiques sont autorisés.", + "example_sentence_english": "Domestic animals are allowed.", + "pos": "adjective", + "word_frequency": 4356 + }, + { + "word": "dominer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dominate", + "example_sentence_native": "Cette équipe domine le championnat.", + "example_sentence_english": "This team dominates the championship.", + "pos": "verb", + "word_frequency": 4357 + }, + { + "word": "fa", + "article_with_word": "le fa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "F (musical note)", + "example_sentence_native": "La note fa est juste après le mi.", + "example_sentence_english": "The note F is just after E.", + "pos": "noun", + "word_frequency": 4359 + }, + { + "word": "fondamental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fundamental", + "example_sentence_native": "C'est une question fondamentale pour notre avenir.", + "example_sentence_english": "This is a fundamental question for our future.", + "pos": "adjective", + "word_frequency": 4360 + }, + { + "word": "frigo", + "article_with_word": "le frigo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fridge", + "example_sentence_native": "Mets le lait dans le frigo.", + "example_sentence_english": "Put the milk in the fridge.", + "pos": "noun", + "word_frequency": 4361 + }, + { + "word": "grade", + "article_with_word": "le grade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rank;grade", + "example_sentence_native": "Il a obtenu un nouveau grade dans l'armée.", + "example_sentence_english": "He obtained a new rank in the army.", + "pos": "noun", + "word_frequency": 4362 + }, + { + "word": "habituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accustom;to get used to", + "example_sentence_native": "Il faut s'habituer au nouveau système.", + "example_sentence_english": "One must get used to the new system.", + "pos": "verb", + "word_frequency": 4363 + }, + { + "word": "laine", + "article_with_word": "la laine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wool", + "example_sentence_native": "Ce pull est en pure laine.", + "example_sentence_english": "This sweater is made of pure wool.", + "pos": "noun", + "word_frequency": 4367 + }, + { + "word": "manuscrit", + "article_with_word": "le manuscrit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manuscript", + "example_sentence_native": "L'ancien manuscrit a été découvert dans la bibliothèque.", + "example_sentence_english": "The ancient manuscript was discovered in the library.", + "pos": "noun", + "word_frequency": 4370 + }, + { + "word": "mobilier", + "article_with_word": "le mobilier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furniture", + "example_sentence_native": "Nous avons acheté du nouveau mobilier pour le salon.", + "example_sentence_english": "We bought new furniture for the living room.", + "pos": "noun", + "word_frequency": 4371 + }, + { + "word": "munition", + "article_with_word": "la munition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammunition", + "example_sentence_native": "L'armée manquait de munitions.", + "example_sentence_english": "The army was short of ammunition.", + "pos": "noun", + "word_frequency": 4372 + }, + { + "word": "noix", + "article_with_word": "la noix", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nut", + "example_sentence_native": "J'aime manger des noix comme collation.", + "example_sentence_english": "I like to eat nuts as a snack.", + "pos": "noun", + "word_frequency": 4374 + }, + { + "word": "ongle", + "article_with_word": "l'ongle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nail (fingernail;toenail)", + "example_sentence_native": "Elle s'est cassé un ongle.", + "example_sentence_english": "She broke a nail.", + "pos": "noun", + "word_frequency": 4375 + }, + { + "word": "ouvertement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "openly", + "example_sentence_native": "Il a parlé ouvertement de ses problèmes.", + "example_sentence_english": "He spoke openly about his problems.", + "pos": "adverb", + "word_frequency": 4376 + }, + { + "word": "pan", + "article_with_word": "le pan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "section;part;flap", + "example_sentence_native": "Le pan de mur s'est effondré.", + "example_sentence_english": "The section of the wall collapsed.", + "pos": "noun", + "word_frequency": 4378 + }, + { + "word": "pdg", + "article_with_word": "le PDG", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "CEO (Président-Directeur Général)", + "example_sentence_native": "Le PDG a annoncé de nouvelles mesures.", + "example_sentence_english": "The CEO announced new measures.", + "pos": "noun", + "word_frequency": 4380 + }, + { + "word": "privilège", + "article_with_word": "le privilège", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "privilege", + "example_sentence_native": "C'est un privilège de travailler ici.", + "example_sentence_english": "It's a privilege to work here.", + "pos": "noun", + "word_frequency": 4382 + }, + { + "word": "pénal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penal;criminal", + "example_sentence_native": "Il a été condamné pour une infraction pénale.", + "example_sentence_english": "He was convicted of a criminal offense.", + "pos": "adjective", + "word_frequency": 4383 + }, + { + "word": "quarantaine", + "article_with_word": "la quarantaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarantine;about forty (age)", + "example_sentence_native": "Elle est en quarantaine depuis une semaine.", + "example_sentence_english": "She has been in quarantine for a week.", + "pos": "noun", + "word_frequency": 4384 + }, + { + "word": "quatorze", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fourteen", + "example_sentence_native": "Il y a quatorze livres sur l'étagère.", + "example_sentence_english": "There are fourteen books on the shelf.", + "pos": "numeral", + "word_frequency": 4385 + }, + { + "word": "regrouper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to regroup;to gather", + "example_sentence_native": "Nous devons regrouper toutes les informations.", + "example_sentence_english": "We need to gather all the information.", + "pos": "verb", + "word_frequency": 4386 + }, + { + "word": "reporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to postpone", + "example_sentence_native": "La réunion a été reportée à demain.", + "example_sentence_english": "The meeting was postponed until tomorrow.", + "pos": "verb", + "word_frequency": 4387 + }, + { + "word": "rural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural", + "example_sentence_native": "Ils vivent dans une zone rurale.", + "example_sentence_english": "They live in a rural area.", + "pos": "adjective", + "word_frequency": 4389 + }, + { + "word": "rédiger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draft;to write (a document)", + "example_sentence_native": "Il doit rédiger un rapport avant la fin de la semaine.", + "example_sentence_english": "He must draft a report before the end of the week.", + "pos": "verb", + "word_frequency": 4390 + }, + { + "word": "régulation", + "article_with_word": "la régulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation", + "example_sentence_native": "La nouvelle régulation est entrée en vigueur.", + "example_sentence_english": "The new regulation came into effect.", + "pos": "noun", + "word_frequency": 4391 + }, + { + "word": "réplique", + "article_with_word": "la réplique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replica;retort;line (in a play)", + "example_sentence_native": "C'est une réplique exacte de l'original.", + "example_sentence_english": "It's an exact replica of the original.", + "pos": "noun", + "word_frequency": 4392 + }, + { + "word": "scolarité", + "article_with_word": "la scolarité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schooling;education", + "example_sentence_native": "Sa scolarité s'est déroulée sans problème.", + "example_sentence_english": "His schooling went smoothly.", + "pos": "noun", + "word_frequency": 4393 + }, + { + "word": "sociologie", + "article_with_word": "la sociologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociology", + "example_sentence_native": "Elle étudie la sociologie à l'université.", + "example_sentence_english": "She studies sociology at university.", + "pos": "noun", + "word_frequency": 4395 + }, + { + "word": "théorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theoretical", + "example_sentence_native": "C'est une approche purement théorique.", + "example_sentence_english": "It's a purely theoretical approach.", + "pos": "adjective", + "word_frequency": 4396 + }, + { + "word": "tweet", + "article_with_word": "le tweet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tweet", + "example_sentence_native": "Il a publié un tweet sur l'actualité.", + "example_sentence_english": "He published a tweet about the news.", + "pos": "noun", + "word_frequency": 4397 + }, + { + "word": "vaincre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defeat;to overcome", + "example_sentence_native": "Il a réussi à vaincre ses peurs.", + "example_sentence_english": "He managed to overcome his fears.", + "pos": "verb", + "word_frequency": 4398 + }, + { + "word": "visa", + "article_with_word": "le visa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visa", + "example_sentence_native": "J'ai besoin d'un visa pour voyager dans ce pays.", + "example_sentence_english": "I need a visa to travel to this country.", + "pos": "noun", + "word_frequency": 4400 + }, + { + "word": "vraisemblablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probably;likely", + "example_sentence_native": "Il viendra vraisemblablement demain.", + "example_sentence_english": "He will probably come tomorrow.", + "pos": "adverb", + "word_frequency": 4401 + }, + { + "word": "accompagnement", + "article_with_word": "l'accompagnement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accompaniment;side dish;support", + "example_sentence_native": "Le plat principal est servi avec un accompagnement de légumes.", + "example_sentence_english": "The main dish is served with a side dish of vegetables.", + "pos": "noun", + "word_frequency": 4402 + }, + { + "word": "affirmation", + "article_with_word": "l'affirmation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affirmation;statement", + "example_sentence_native": "Son affirmation a surpris tout le monde.", + "example_sentence_english": "His statement surprised everyone.", + "pos": "noun", + "word_frequency": 4403 + }, + { + "word": "amant", + "article_with_word": "l'amant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lover", + "example_sentence_native": "Elle a découvert que son mari avait une amante.", + "example_sentence_english": "She discovered that her husband had a lover.", + "pos": "noun", + "word_frequency": 4405 + }, + { + "word": "approuver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approve", + "example_sentence_native": "Le conseil a approuvé la nouvelle proposition.", + "example_sentence_english": "The council approved the new proposal.", + "pos": "verb", + "word_frequency": 4407 + }, + { + "word": "autochtone", + "article_with_word": "l'autochtone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indigenous person;native", + "example_sentence_native": "Les peuples autochtones ont une riche culture.", + "example_sentence_english": "Indigenous peoples have a rich culture.", + "pos": "noun", + "word_frequency": 4408 + }, + { + "word": "bague", + "article_with_word": "la bague", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ring", + "example_sentence_native": "Elle porte une belle bague en argent.", + "example_sentence_english": "She wears a beautiful silver ring.", + "pos": "noun", + "word_frequency": 4409 + }, + { + "word": "bec", + "article_with_word": "le bec", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beak;kiss (slang)", + "example_sentence_native": "L'oiseau a un petit bec.", + "example_sentence_english": "The bird has a small beak.", + "pos": "noun", + "word_frequency": 4410 + }, + { + "word": "bisou", + "article_with_word": "le bisou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiss (informal)", + "example_sentence_native": "Fais un bisou à Maman.", + "example_sentence_english": "Give Mom a kiss.", + "pos": "noun", + "word_frequency": 4411 + }, + { + "word": "buteur", + "article_with_word": "le buteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goal scorer;striker", + "example_sentence_native": "Le buteur a marqué trois buts dans le match.", + "example_sentence_english": "The goal scorer scored three goals in the match.", + "pos": "noun", + "word_frequency": 4412 + }, + { + "word": "camping", + "article_with_word": "le camping", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camping;campsite", + "example_sentence_native": "Nous allons faire du camping cet été.", + "example_sentence_english": "We are going camping this summer.", + "pos": "noun", + "word_frequency": 4413 + }, + { + "word": "capture", + "article_with_word": "la capture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capture;screenshot", + "example_sentence_native": "La capture d'écran montre le problème.", + "example_sentence_english": "The screenshot shows the problem.", + "pos": "noun", + "word_frequency": 4414 + }, + { + "word": "caution", + "article_with_word": "la caution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposit;bail;caution", + "example_sentence_native": "Le locataire doit payer une caution de deux mois de loyer.", + "example_sentence_english": "The tenant must pay a deposit of two months' rent.", + "pos": "noun", + "word_frequency": 4415 + }, + { + "word": "chic", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stylish;elegant;chic", + "example_sentence_native": "Elle porte toujours des vêtements très chics.", + "example_sentence_english": "She always wears very chic clothes.", + "pos": "adjective", + "word_frequency": 4416 + }, + { + "word": "cohérence", + "article_with_word": "la cohérence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherence;consistency", + "example_sentence_native": "Il manque de cohérence dans ses arguments.", + "example_sentence_english": "There is a lack of consistency in his arguments.", + "pos": "noun", + "word_frequency": 4417 + }, + { + "word": "confédération", + "article_with_word": "la confédération", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confederation", + "example_sentence_native": "La Suisse est une confédération de cantons.", + "example_sentence_english": "Switzerland is a confederation of cantons.", + "pos": "noun", + "word_frequency": 4418 + }, + { + "word": "considération", + "article_with_word": "la considération", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration;regard", + "example_sentence_native": "Prenez cela en considération avant de décider.", + "example_sentence_english": "Take that into consideration before deciding.", + "pos": "noun", + "word_frequency": 4419 + }, + { + "word": "consommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consume;to use", + "example_sentence_native": "Nous consommons trop d'énergie.", + "example_sentence_english": "We consume too much energy.", + "pos": "verb", + "word_frequency": 4420 + }, + { + "word": "courageux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "courageous;brave", + "example_sentence_native": "C'est une personne très courageuse.", + "example_sentence_english": "She is a very courageous person.", + "pos": "adjective", + "word_frequency": 4421 + }, + { + "word": "crever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burst;to puncture;to die (slang)", + "example_sentence_native": "Le pneu a crevé sur l'autoroute.", + "example_sentence_english": "The tire burst on the highway.", + "pos": "verb", + "word_frequency": 4422 + }, + { + "word": "curé", + "article_with_word": "le curé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priest;parish priest", + "example_sentence_native": "Le curé a célébré la messe.", + "example_sentence_english": "The priest celebrated the mass.", + "pos": "noun", + "word_frequency": 4423 + }, + { + "word": "diviser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to divide", + "example_sentence_native": "Il faut diviser le gâteau en parts égales.", + "example_sentence_english": "We need to divide the cake into equal parts.", + "pos": "verb", + "word_frequency": 4424 + }, + { + "word": "douzaine", + "article_with_word": "la douzaine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dozen", + "example_sentence_native": "J'ai acheté une douzaine d'œufs.", + "example_sentence_english": "I bought a dozen eggs.", + "pos": "noun", + "word_frequency": 4425 + }, + { + "word": "démon", + "article_with_word": "le démon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demon", + "example_sentence_native": "Dans les légendes, les démons sont des créatures maléfiques.", + "example_sentence_english": "In legends, demons are evil creatures.", + "pos": "noun", + "word_frequency": 4426 + }, + { + "word": "désirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to desire;to wish", + "example_sentence_native": "Je désire voyager autour du monde.", + "example_sentence_english": "I desire to travel around the world.", + "pos": "verb", + "word_frequency": 4427 + }, + { + "word": "emmener", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to take (someone;something somewhere)", + "example_sentence_native": "Je vais emmener les enfants au parc.", + "example_sentence_english": "I'm going to take the children to the park.", + "pos": "verb", + "word_frequency": 4429 + }, + { + "word": "ennuyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bore;to annoy", + "example_sentence_native": "Ce film m'ennuie beaucoup.", + "example_sentence_english": "This movie bores me a lot.", + "pos": "verb", + "word_frequency": 4430 + }, + { + "word": "entité", + "article_with_word": "l'entité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entity", + "example_sentence_native": "L'entreprise est une entité juridique distincte.", + "example_sentence_english": "The company is a distinct legal entity.", + "pos": "noun", + "word_frequency": 4431 + }, + { + "word": "fantôme", + "article_with_word": "le fantôme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ghost", + "example_sentence_native": "On dit que des fantômes hantent ce vieux château.", + "example_sentence_english": "They say ghosts haunt this old castle.", + "pos": "noun", + "word_frequency": 4433 + }, + { + "word": "flèche", + "article_with_word": "la flèche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrow;dart", + "example_sentence_native": "Il a tiré une flèche avec son arc.", + "example_sentence_english": "He shot an arrow with his bow.", + "pos": "noun", + "word_frequency": 4434 + }, + { + "word": "fric", + "article_with_word": "le fric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money (slang)", + "example_sentence_native": "J'ai pas beaucoup de fric en ce moment.", + "example_sentence_english": "I don't have much money right now.", + "pos": "noun", + "word_frequency": 4435 + }, + { + "word": "fréquent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequent", + "example_sentence_native": "Les accidents sont plus fréquents en hiver.", + "example_sentence_english": "Accidents are more frequent in winter.", + "pos": "adjective", + "word_frequency": 4436 + }, + { + "word": "glisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to slide;to slip", + "example_sentence_native": "Attention, le sol est glissant, tu vas glisser.", + "example_sentence_english": "Be careful, the floor is slippery, you're going to slip.", + "pos": "verb", + "word_frequency": 4437 + }, + { + "word": "impatience", + "article_with_word": "l'impatience", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impatience", + "example_sentence_native": "Il attendait avec impatience les résultats.", + "example_sentence_english": "He was waiting impatiently for the results.", + "pos": "noun", + "word_frequency": 4439 + }, + { + "word": "internaute", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internet user", + "example_sentence_native": "L'internaute a passé des heures à naviguer sur le web.", + "example_sentence_english": "The internet user spent hours browsing the web.", + "pos": "noun", + "word_frequency": 4440 + }, + { + "word": "journalisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journalism", + "example_sentence_native": "Le journalisme est un métier exigeant.", + "example_sentence_english": "Journalism is a demanding profession.", + "pos": "noun", + "word_frequency": 4441 + }, + { + "word": "lent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "slow", + "example_sentence_native": "La tortue est un animal très lent.", + "example_sentence_english": "The turtle is a very slow animal.", + "pos": "adjective", + "word_frequency": 4442 + }, + { + "word": "linge", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundry;linen", + "example_sentence_native": "J'ai mis le linge à sécher dehors.", + "example_sentence_english": "I put the laundry out to dry.", + "pos": "noun", + "word_frequency": 4444 + }, + { + "word": "manipulation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulation", + "example_sentence_native": "Il y a eu une manipulation des données.", + "example_sentence_english": "There was a manipulation of the data.", + "pos": "noun", + "word_frequency": 4447 + }, + { + "word": "marais", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marsh;swamp", + "example_sentence_native": "Nous avons observé des oiseaux dans le marais.", + "example_sentence_english": "We observed birds in the marsh.", + "pos": "noun", + "word_frequency": 4448 + }, + { + "word": "marguerite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daisy", + "example_sentence_native": "Elle a cueilli une marguerite dans le jardin.", + "example_sentence_english": "She picked a daisy in the garden.", + "pos": "noun", + "word_frequency": 4449 + }, + { + "word": "maïs", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corn;maize", + "example_sentence_native": "J'aime manger du maïs grillé en été.", + "example_sentence_english": "I like to eat grilled corn in summer.", + "pos": "noun", + "word_frequency": 4450 + }, + { + "word": "monarchie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarchy", + "example_sentence_native": "La France a connu plusieurs périodes de monarchie.", + "example_sentence_english": "France has experienced several periods of monarchy.", + "pos": "noun", + "word_frequency": 4451 + }, + { + "word": "nuance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuance;shade", + "example_sentence_native": "Il faut saisir toutes les nuances de cette situation.", + "example_sentence_english": "One must grasp all the nuances of this situation.", + "pos": "noun", + "word_frequency": 4453 + }, + { + "word": "opérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to operate;to perform", + "example_sentence_native": "Le chirurgien va opérer le patient demain.", + "example_sentence_english": "The surgeon will operate on the patient tomorrow.", + "pos": "verb", + "word_frequency": 4456 + }, + { + "word": "orthographe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spelling;orthography", + "example_sentence_native": "Il faut améliorer son orthographe pour bien écrire.", + "example_sentence_english": "One must improve their spelling to write well.", + "pos": "noun", + "word_frequency": 4457 + }, + { + "word": "otage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostage", + "example_sentence_native": "Les négociations pour libérer l'otage sont en cours.", + "example_sentence_english": "Negotiations to free the hostage are underway.", + "pos": "noun", + "word_frequency": 4458 + }, + { + "word": "party", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "party", + "example_sentence_native": "On organise un party ce soir.", + "example_sentence_english": "We're organizing a party tonight.", + "pos": "noun", + "word_frequency": 4461 + }, + { + "word": "persuader", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to persuade", + "example_sentence_native": "J'ai réussi à le persuader de venir.", + "example_sentence_english": "I managed to persuade him to come.", + "pos": "verb", + "word_frequency": 4462 + }, + { + "word": "pirate", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pirate", + "example_sentence_native": "Le pirate a abordé le navire.", + "example_sentence_english": "The pirate boarded the ship.", + "pos": "noun", + "word_frequency": 4463 + }, + { + "word": "prochainement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soon;shortly", + "example_sentence_native": "Le film sortira prochainement au cinéma.", + "example_sentence_english": "The film will be released soon in cinemas.", + "pos": "adverb", + "word_frequency": 4464 + }, + { + "word": "proie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prey", + "example_sentence_native": "Le lion chasse sa proie dans la savane.", + "example_sentence_english": "The lion hunts its prey in the savanna.", + "pos": "noun", + "word_frequency": 4465 + }, + { + "word": "rejeter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reject;to throw back", + "example_sentence_native": "Il a rejeté la proposition.", + "example_sentence_english": "He rejected the proposal.", + "pos": "verb", + "word_frequency": 4467 + }, + { + "word": "revendication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claim;demand", + "example_sentence_native": "Les syndicats ont présenté leurs revendications.", + "example_sentence_english": "The unions presented their demands.", + "pos": "noun", + "word_frequency": 4468 + }, + { + "word": "soie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silk", + "example_sentence_native": "Cette écharpe est en soie.", + "example_sentence_english": "This scarf is made of silk.", + "pos": "noun", + "word_frequency": 4471 + }, + { + "word": "sonore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sound;acoustic;sonorous", + "example_sentence_native": "La qualité sonore de ce casque est excellente.", + "example_sentence_english": "The sound quality of these headphones is excellent.", + "pos": "adjective", + "word_frequency": 4472 + }, + { + "word": "sphère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sphere", + "example_sentence_native": "La Terre est une sphère.", + "example_sentence_english": "The Earth is a sphere.", + "pos": "noun", + "word_frequency": 4473 + }, + { + "word": "syndrome", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "syndrome", + "example_sentence_native": "Il souffre d'un syndrome rare.", + "example_sentence_english": "He suffers from a rare syndrome.", + "pos": "noun", + "word_frequency": 4475 + }, + { + "word": "séduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to seduce;to charm;to attract", + "example_sentence_native": "Il a essayé de la séduire avec des fleurs.", + "example_sentence_english": "He tried to charm her with flowers.", + "pos": "verb", + "word_frequency": 4476 + }, + { + "word": "sélectionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to select;to choose", + "example_sentence_native": "Vous devez sélectionner une option.", + "example_sentence_english": "You must select an option.", + "pos": "verb", + "word_frequency": 4477 + }, + { + "word": "tablette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablet;shelf;bar (of chocolate)", + "example_sentence_native": "J'ai acheté une nouvelle tablette numérique.", + "example_sentence_english": "I bought a new digital tablet.", + "pos": "noun", + "word_frequency": 4478 + }, + { + "word": "traversée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossing;passage", + "example_sentence_native": "La traversée de l'océan a duré plusieurs jours.", + "example_sentence_english": "The ocean crossing lasted several days.", + "pos": "noun", + "word_frequency": 4479 + }, + { + "word": "valise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "suitcase", + "example_sentence_native": "J'ai préparé ma valise pour le voyage.", + "example_sentence_english": "I packed my suitcase for the trip.", + "pos": "noun", + "word_frequency": 4481 + }, + { + "word": "veiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to watch over;to stay awake", + "example_sentence_native": "Il faut veiller à ce que tout soit prêt.", + "example_sentence_english": "We must ensure that everything is ready.", + "pos": "verb", + "word_frequency": 4482 + }, + { + "word": "volontiers", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gladly;willingly", + "example_sentence_native": "Je vous aiderais volontiers.", + "example_sentence_english": "I would gladly help you.", + "pos": "adverb", + "word_frequency": 4483 + }, + { + "word": "épouser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to marry", + "example_sentence_native": "Il va épouser sa petite amie l'année prochaine.", + "example_sentence_english": "He is going to marry his girlfriend next year.", + "pos": "verb", + "word_frequency": 4489 + }, + { + "word": "équiper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to equip", + "example_sentence_native": "L'entreprise doit équiper ses employés de nouveaux ordinateurs.", + "example_sentence_english": "The company must equip its employees with new computers.", + "pos": "verb", + "word_frequency": 4490 + }, + { + "word": "abattre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cut down;to knock down;to shoot down", + "example_sentence_native": "Ils ont dû abattre l'arbre malade.", + "example_sentence_english": "They had to cut down the sick tree.", + "pos": "verb", + "word_frequency": 4491 + }, + { + "word": "activement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actively", + "example_sentence_native": "Il participe activement aux discussions.", + "example_sentence_english": "He actively participates in the discussions.", + "pos": "adverb", + "word_frequency": 4492 + }, + { + "word": "amont", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upstream;upstream part", + "example_sentence_native": "Le village est situé en amont de la rivière.", + "example_sentence_english": "The village is located upstream of the river.", + "pos": "noun", + "word_frequency": 4494 + }, + { + "word": "ascenseur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elevator;lift", + "example_sentence_native": "Prenons l'ascenseur pour monter au dixième étage.", + "example_sentence_english": "Let's take the elevator to go up to the tenth floor.", + "pos": "noun", + "word_frequency": 4496 + }, + { + "word": "athlète", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athlete", + "example_sentence_native": "Cet athlète s'entraîne tous les jours.", + "example_sentence_english": "This athlete trains every day.", + "pos": "noun", + "word_frequency": 4497 + }, + { + "word": "aîné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elder;oldest", + "example_sentence_native": "Mon frère aîné habite à Paris.", + "example_sentence_english": "My elder brother lives in Paris.", + "pos": "adjective", + "word_frequency": 4498 + }, + { + "word": "biologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biology", + "example_sentence_native": "J'étudie la biologie à l'université.", + "example_sentence_english": "I study biology at university.", + "pos": "noun", + "word_frequency": 4499 + }, + { + "word": "bonnet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hat (beanie);cap", + "example_sentence_native": "Il fait froid, mets ton bonnet.", + "example_sentence_english": "It's cold, put on your hat.", + "pos": "noun", + "word_frequency": 4500 + }, + { + "word": "boucher", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher", + "example_sentence_native": "J'achète ma viande chez le boucher.", + "example_sentence_english": "I buy my meat at the butcher's.", + "pos": "noun", + "word_frequency": 4501 + }, + { + "word": "bouffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eat (informal);to gobble", + "example_sentence_native": "On va bouffer quoi ce soir ?", + "example_sentence_english": "What are we going to eat tonight?", + "pos": "verb", + "word_frequency": 4502 + }, + { + "word": "char", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tank (military);chariot", + "example_sentence_native": "Le défilé comprenait plusieurs chars militaires.", + "example_sentence_english": "The parade included several military tanks.", + "pos": "noun", + "word_frequency": 4503 + }, + { + "word": "chirurgien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgeon", + "example_sentence_native": "Le chirurgien a opéré le patient avec succès.", + "example_sentence_english": "The surgeon successfully operated on the patient.", + "pos": "noun", + "word_frequency": 4504 + }, + { + "word": "complicité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complicity;close bond", + "example_sentence_native": "Il y a une grande complicité entre les deux amis.", + "example_sentence_english": "There is a great bond between the two friends.", + "pos": "noun", + "word_frequency": 4505 + }, + { + "word": "complémentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complementary", + "example_sentence_native": "Leurs compétences sont très complémentaires.", + "example_sentence_english": "Their skills are very complementary.", + "pos": "adjective", + "word_frequency": 4506 + }, + { + "word": "concrètement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concretely;in concrete terms", + "example_sentence_native": "Concrètement, comment allons-nous résoudre ce problème ?", + "example_sentence_english": "Concretely, how are we going to solve this problem?", + "pos": "adverb", + "word_frequency": 4507 + }, + { + "word": "creux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hollow;empty;dull (time)", + "example_sentence_native": "Le tronc de l'arbre est creux.", + "example_sentence_english": "The tree trunk is hollow.", + "pos": "adjective", + "word_frequency": 4509 + }, + { + "word": "dalle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slab;tile;paving stone", + "example_sentence_native": "Ils ont posé des dalles de pierre dans le jardin.", + "example_sentence_english": "They laid stone slabs in the garden.", + "pos": "noun", + "word_frequency": 4510 + }, + { + "word": "déception", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointment", + "example_sentence_native": "Sa déception était visible sur son visage.", + "example_sentence_english": "His disappointment was visible on his face.", + "pos": "noun", + "word_frequency": 4511 + }, + { + "word": "déclin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decline;decay", + "example_sentence_native": "L'entreprise est en déclin depuis plusieurs années.", + "example_sentence_english": "The company has been in decline for several years.", + "pos": "noun", + "word_frequency": 4512 + }, + { + "word": "démarrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to start (engine;project);to begin", + "example_sentence_native": "La voiture ne veut pas démarrer ce matin.", + "example_sentence_english": "The car won't start this morning.", + "pos": "verb", + "word_frequency": 4513 + }, + { + "word": "embauche", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hiring;recruitment", + "example_sentence_native": "L'entreprise a annoncé de nouvelles embauches.", + "example_sentence_english": "The company announced new hirings.", + "pos": "noun", + "word_frequency": 4514 + }, + { + "word": "gel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frost;gel", + "example_sentence_native": "Le gel a endommagé les cultures.", + "example_sentence_english": "The frost damaged the crops.", + "pos": "noun", + "word_frequency": 4515 + }, + { + "word": "gendarme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gendarme (police officer in rural areas;military police)", + "example_sentence_native": "Un gendarme a arrêté la voiture.", + "example_sentence_english": "A gendarme stopped the car.", + "pos": "noun", + "word_frequency": 4516 + }, + { + "word": "grandement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greatly;largely", + "example_sentence_native": "Cela a grandement amélioré la situation.", + "example_sentence_english": "That greatly improved the situation.", + "pos": "adverb", + "word_frequency": 4517 + }, + { + "word": "héroïne", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heroine", + "example_sentence_native": "L'héroïne du film est très courageuse.", + "example_sentence_english": "The heroine of the film is very courageous.", + "pos": "noun", + "word_frequency": 4518 + }, + { + "word": "infini", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinite;endless", + "example_sentence_native": "L'univers est d'une taille infinie.", + "example_sentence_english": "The universe is of infinite size.", + "pos": "adjective", + "word_frequency": 4519 + }, + { + "word": "insupportable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unbearable", + "example_sentence_native": "Son comportement est devenu insupportable.", + "example_sentence_english": "His behavior has become unbearable.", + "pos": "adjective", + "word_frequency": 4521 + }, + { + "word": "intrigue", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plot;intrigue", + "example_sentence_native": "L'intrigue du roman est très complexe.", + "example_sentence_english": "The plot of the novel is very complex.", + "pos": "noun", + "word_frequency": 4522 + }, + { + "word": "juridiction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jurisdiction", + "example_sentence_native": "Cette affaire relève de la juridiction locale.", + "example_sentence_english": "This case falls under local jurisdiction.", + "pos": "noun", + "word_frequency": 4524 + }, + { + "word": "montre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "watch", + "example_sentence_native": "J'ai acheté une nouvelle montre.", + "example_sentence_english": "I bought a new watch.", + "pos": "noun", + "word_frequency": 4527 + }, + { + "word": "motion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motion", + "example_sentence_native": "Le conseil a voté une motion de censure.", + "example_sentence_english": "The council voted a motion of no confidence.", + "pos": "noun", + "word_frequency": 4528 + }, + { + "word": "périmètre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perimeter", + "example_sentence_native": "La police a établi un périmètre de sécurité.", + "example_sentence_english": "The police established a security perimeter.", + "pos": "noun", + "word_frequency": 4532 + }, + { + "word": "reconstruction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstruction", + "example_sentence_native": "La reconstruction de la ville a pris des années.", + "example_sentence_english": "The reconstruction of the city took years.", + "pos": "noun", + "word_frequency": 4533 + }, + { + "word": "sauvetage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescue;salvage", + "example_sentence_native": "L'opération de sauvetage a été difficile.", + "example_sentence_english": "The rescue operation was difficult.", + "pos": "noun", + "word_frequency": 4534 + }, + { + "word": "sexualité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexuality", + "example_sentence_native": "La sexualité est un aspect important de la vie humaine.", + "example_sentence_english": "Sexuality is an important aspect of human life.", + "pos": "noun", + "word_frequency": 4535 + }, + { + "word": "sien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "his;hers;its;theirs (possessive)", + "example_sentence_native": "Ce livre est le sien.", + "example_sentence_english": "This book is his/hers.", + "pos": "adjective", + "word_frequency": 4536 + }, + { + "word": "spatial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spatial;space-related", + "example_sentence_native": "L'exploration spatiale est fascinante.", + "example_sentence_english": "Space exploration is fascinating.", + "pos": "adjective", + "word_frequency": 4538 + }, + { + "word": "stationnement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parking", + "example_sentence_native": "Le stationnement est interdit ici.", + "example_sentence_english": "Parking is forbidden here.", + "pos": "noun", + "word_frequency": 4539 + }, + { + "word": "tombe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grave;tomb", + "example_sentence_native": "Ils ont visité la tombe de leurs ancêtres.", + "example_sentence_english": "They visited their ancestors' grave.", + "pos": "noun", + "word_frequency": 4540 + }, + { + "word": "tri", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sorting;selection", + "example_sentence_native": "Le tri des déchets est important pour l'environnement.", + "example_sentence_english": "Waste sorting is important for the environment.", + "pos": "noun", + "word_frequency": 4541 + }, + { + "word": "téléphonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "telephonic;phone-related", + "example_sentence_native": "J'ai reçu un appel téléphonique important.", + "example_sentence_english": "I received an important phone call.", + "pos": "adjective", + "word_frequency": 4542 + }, + { + "word": "vaisselle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dishes;crockery", + "example_sentence_native": "Il faut faire la vaisselle après le repas.", + "example_sentence_english": "We need to do the dishes after the meal.", + "pos": "noun", + "word_frequency": 4543 + }, + { + "word": "épais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thick", + "example_sentence_native": "Le livre est très épais.", + "example_sentence_english": "The book is very thick.", + "pos": "adjective", + "word_frequency": 4547 + }, + { + "word": "éteindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn off;to extinguish", + "example_sentence_native": "N'oubliez pas d'éteindre la lumière.", + "example_sentence_english": "Don't forget to turn off the light.", + "pos": "verb", + "word_frequency": 4548 + }, + { + "word": "évacuation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evacuation", + "example_sentence_native": "L'ordre d'évacuation a été donné.", + "example_sentence_english": "The evacuation order was given.", + "pos": "noun", + "word_frequency": 4549 + }, + { + "word": "annulation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cancellation", + "example_sentence_native": "Nous avons reçu l'annulation du vol.", + "example_sentence_english": "We received the flight cancellation.", + "pos": "noun", + "word_frequency": 4551 + }, + { + "word": "arbitrage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitration", + "example_sentence_native": "Le conflit a été résolu par arbitrage.", + "example_sentence_english": "The conflict was resolved by arbitration.", + "pos": "noun", + "word_frequency": 4553 + }, + { + "word": "autel", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altar", + "example_sentence_native": "Les mariés se sont tenus devant l'autel.", + "example_sentence_english": "The bride and groom stood before the altar.", + "pos": "noun", + "word_frequency": 4555 + }, + { + "word": "authentique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authentic", + "example_sentence_native": "C'est une œuvre d'art authentique.", + "example_sentence_english": "It's an authentic work of art.", + "pos": "adjective", + "word_frequency": 4556 + }, + { + "word": "autorisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authorized;permitted", + "example_sentence_native": "L'accès est autorisé uniquement au personnel.", + "example_sentence_english": "Access is authorized only for staff.", + "pos": "adjective", + "word_frequency": 4557 + }, + { + "word": "bourrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stuff;to cram", + "example_sentence_native": "Il a bourré ses valises de vêtements.", + "example_sentence_english": "He stuffed his suitcases with clothes.", + "pos": "verb", + "word_frequency": 4559 + }, + { + "word": "buzz", + "article_with_word": "le buzz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buzz;hype", + "example_sentence_native": "Le nouveau film a créé un énorme buzz.", + "example_sentence_english": "The new film created a huge buzz.", + "pos": "noun", + "word_frequency": 4560 + }, + { + "word": "carnet", + "article_with_word": "le carnet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "notebook;pad", + "example_sentence_native": "J'ai noté l'adresse dans mon carnet.", + "example_sentence_english": "I wrote down the address in my notebook.", + "pos": "noun", + "word_frequency": 4561 + }, + { + "word": "compagne", + "article_with_word": "la compagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "companion;partner (female)", + "example_sentence_native": "Il est parti en vacances avec sa compagne.", + "example_sentence_english": "He went on vacation with his partner.", + "pos": "noun", + "word_frequency": 4562 + }, + { + "word": "concession", + "article_with_word": "la concession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concession;compromise", + "example_sentence_native": "Nous avons dû faire une concession pour trouver un accord.", + "example_sentence_english": "We had to make a concession to reach an agreement.", + "pos": "noun", + "word_frequency": 4563 + }, + { + "word": "coque", + "article_with_word": "la coque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hull;shell;case (phone)", + "example_sentence_native": "J'ai acheté une nouvelle coque pour mon téléphone.", + "example_sentence_english": "I bought a new case for my phone.", + "pos": "noun", + "word_frequency": 4564 + }, + { + "word": "couvent", + "article_with_word": "le couvent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convent;monastery", + "example_sentence_native": "Les religieuses vivent dans ce couvent.", + "example_sentence_english": "The nuns live in this convent.", + "pos": "noun", + "word_frequency": 4565 + }, + { + "word": "crash", + "article_with_word": "le crash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crash", + "example_sentence_native": "Le crash de l'avion a fait de nombreuses victimes.", + "example_sentence_english": "The plane crash caused many casualties.", + "pos": "noun", + "word_frequency": 4566 + }, + { + "word": "cristal", + "article_with_word": "le cristal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crystal", + "example_sentence_native": "Les verres en cristal sont très fragiles.", + "example_sentence_english": "Crystal glasses are very fragile.", + "pos": "noun", + "word_frequency": 4567 + }, + { + "word": "cure", + "article_with_word": "la cure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cure;treatment;retreat", + "example_sentence_native": "Elle suit une cure de désintoxication.", + "example_sentence_english": "She is undergoing a detox treatment.", + "pos": "noun", + "word_frequency": 4568 + }, + { + "word": "dater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to date;to be from", + "example_sentence_native": "Ce bâtiment date du 18e siècle.", + "example_sentence_english": "This building dates from the 18th century.", + "pos": "verb", + "word_frequency": 4569 + }, + { + "word": "devise", + "article_with_word": "la devise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "currency;motto", + "example_sentence_native": "L'euro est la devise de plusieurs pays européens.", + "example_sentence_english": "The euro is the currency of several European countries.", + "pos": "noun", + "word_frequency": 4570 + }, + { + "word": "douloureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painful", + "example_sentence_native": "La piqûre était très douloureuse.", + "example_sentence_english": "The sting was very painful.", + "pos": "adjective", + "word_frequency": 4571 + }, + { + "word": "dérive", + "article_with_word": "la dérive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drift;deviation;decline", + "example_sentence_native": "Le bateau était en dérive après la tempête.", + "example_sentence_english": "The boat was adrift after the storm.", + "pos": "noun", + "word_frequency": 4572 + }, + { + "word": "encre", + "article_with_word": "l'encre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ink", + "example_sentence_native": "Il n'y a plus d'encre dans l'imprimante.", + "example_sentence_english": "There is no more ink in the printer.", + "pos": "noun", + "word_frequency": 4573 + }, + { + "word": "exécuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to execute;to perform", + "example_sentence_native": "Il doit exécuter les ordres de son supérieur.", + "example_sentence_english": "He must execute his superior's orders.", + "pos": "verb", + "word_frequency": 4574 + }, + { + "word": "foncé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dark (color)", + "example_sentence_native": "J'aime les couleurs foncées pour les vêtements.", + "example_sentence_english": "I like dark colors for clothes.", + "pos": "adjective", + "word_frequency": 4575 + }, + { + "word": "féministe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminist", + "example_sentence_native": "Elle est très engagée dans les causes féministes.", + "example_sentence_english": "She is very involved in feminist causes.", + "pos": "adjective", + "word_frequency": 4576 + }, + { + "word": "galère", + "article_with_word": "la galère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galley;struggle;hassle (informal)", + "example_sentence_native": "C'était une vraie galère de trouver un taxi.", + "example_sentence_english": "It was a real hassle to find a taxi.", + "pos": "noun", + "word_frequency": 4577 + }, + { + "word": "habiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dress;to clothe", + "example_sentence_native": "Elle s'habille toujours avec élégance.", + "example_sentence_english": "She always dresses elegantly.", + "pos": "verb", + "word_frequency": 4578 + }, + { + "word": "habituel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usual;habitual", + "example_sentence_native": "Il a pris son chemin habituel pour rentrer chez lui.", + "example_sentence_english": "He took his usual way home.", + "pos": "adjective", + "word_frequency": 4579 + }, + { + "word": "honorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to honor;to respect", + "example_sentence_native": "Nous devons honorer la mémoire des victimes.", + "example_sentence_english": "We must honor the memory of the victims.", + "pos": "verb", + "word_frequency": 4580 + }, + { + "word": "if", + "article_with_word": "l'if", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yew tree", + "example_sentence_native": "L'if est un arbre à feuilles persistantes.", + "example_sentence_english": "The yew is an evergreen tree.", + "pos": "noun", + "word_frequency": 4582 + }, + { + "word": "imposition", + "article_with_word": "l'imposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxation;imposition", + "example_sentence_native": "Le gouvernement a annoncé une nouvelle imposition sur les revenus.", + "example_sentence_english": "The government announced a new income tax.", + "pos": "noun", + "word_frequency": 4583 + }, + { + "word": "imprimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to print", + "example_sentence_native": "Peux-tu imprimer ce document s'il te plaît ?", + "example_sentence_english": "Can you print this document please?", + "pos": "verb", + "word_frequency": 4584 + }, + { + "word": "infraction", + "article_with_word": "l'infraction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infraction;violation", + "example_sentence_native": "Il a commis une infraction au code de la route.", + "example_sentence_english": "He committed a traffic violation.", + "pos": "noun", + "word_frequency": 4585 + }, + { + "word": "innocence", + "article_with_word": "l'innocence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "innocence", + "example_sentence_native": "Le jury a reconnu son innocence.", + "example_sentence_english": "The jury recognized his innocence.", + "pos": "noun", + "word_frequency": 4586 + }, + { + "word": "jalousie", + "article_with_word": "la jalousie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jealousy", + "example_sentence_native": "La jalousie peut détruire des relations.", + "example_sentence_english": "Jealousy can destroy relationships.", + "pos": "noun", + "word_frequency": 4587 + }, + { + "word": "jouet", + "article_with_word": "le jouet", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toy", + "example_sentence_native": "L'enfant joue avec son nouveau jouet.", + "example_sentence_english": "The child is playing with his new toy.", + "pos": "noun", + "word_frequency": 4588 + }, + { + "word": "manifestement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obviously;clearly", + "example_sentence_native": "Manifestement, il n'a pas compris la situation.", + "example_sentence_english": "Obviously, he didn't understand the situation.", + "pos": "adverb", + "word_frequency": 4591 + }, + { + "word": "mannequin", + "article_with_word": "le mannequin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model;dummy", + "example_sentence_native": "Elle rêve de devenir mannequin.", + "example_sentence_english": "She dreams of becoming a model.", + "pos": "noun", + "word_frequency": 4592 + }, + { + "word": "moine", + "article_with_word": "le moine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monk", + "example_sentence_native": "Le moine vit dans un monastère isolé.", + "example_sentence_english": "The monk lives in an isolated monastery.", + "pos": "noun", + "word_frequency": 4596 + }, + { + "word": "mouton", + "article_with_word": "le mouton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sheep", + "example_sentence_native": "Les moutons paissent dans le pré.", + "example_sentence_english": "The sheep are grazing in the meadow.", + "pos": "noun", + "word_frequency": 4597 + }, + { + "word": "organique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organic", + "example_sentence_native": "J'achète des légumes organiques au marché.", + "example_sentence_english": "I buy organic vegetables at the market.", + "pos": "adjective", + "word_frequency": 4599 + }, + { + "word": "oubli", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forgetfulness", + "example_sentence_native": "L'oubli est parfois une bénédiction.", + "example_sentence_english": "Forgetfulness is sometimes a blessing.", + "pos": "noun", + "word_frequency": 4600 + }, + { + "word": "pack", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pack;bundle", + "example_sentence_native": "J'ai acheté un pack de six bières.", + "example_sentence_english": "I bought a six-pack of beers.", + "pos": "noun", + "word_frequency": 4601 + }, + { + "word": "palmarès", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "list of winners;track record", + "example_sentence_native": "Le palmarès du festival a été annoncé hier.", + "example_sentence_english": "The festival's list of winners was announced yesterday.", + "pos": "noun", + "word_frequency": 4602 + }, + { + "word": "paramètre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parameter;setting", + "example_sentence_native": "Il faut ajuster les paramètres de l'imprimante.", + "example_sentence_english": "You need to adjust the printer settings.", + "pos": "noun", + "word_frequency": 4603 + }, + { + "word": "pardonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forgive;to pardon", + "example_sentence_native": "Je ne peux pas lui pardonner son mensonge.", + "example_sentence_english": "I cannot forgive him for his lie.", + "pos": "verb", + "word_frequency": 4604 + }, + { + "word": "portion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "portion;share", + "example_sentence_native": "Je voudrais une petite portion de frites.", + "example_sentence_english": "I would like a small portion of fries.", + "pos": "noun", + "word_frequency": 4606 + }, + { + "word": "procurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to procure;to obtain", + "example_sentence_native": "Il a réussi à se procurer les documents nécessaires.", + "example_sentence_english": "He managed to obtain the necessary documents.", + "pos": "verb", + "word_frequency": 4607 + }, + { + "word": "progresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to progress;to advance", + "example_sentence_native": "Les étudiants progressent rapidement en français.", + "example_sentence_english": "The students are progressing quickly in French.", + "pos": "verb", + "word_frequency": 4608 + }, + { + "word": "provincial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provincial;rural", + "example_sentence_native": "Il a un accent provincial très marqué.", + "example_sentence_english": "He has a very strong provincial accent.", + "pos": "adjective", + "word_frequency": 4609 + }, + { + "word": "prudent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prudent;cautious", + "example_sentence_native": "Il est toujours prudent avant de prendre une décision.", + "example_sentence_english": "He is always cautious before making a decision.", + "pos": "adjective", + "word_frequency": 4610 + }, + { + "word": "prévision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forecast;prediction", + "example_sentence_native": "Les prévisions météorologiques annoncent de la pluie.", + "example_sentence_english": "The weather forecast announces rain.", + "pos": "noun", + "word_frequency": 4611 + }, + { + "word": "renforcement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reinforcement;strengthening", + "example_sentence_native": "Le renforcement des mesures de sécurité est nécessaire.", + "example_sentence_english": "The strengthening of security measures is necessary.", + "pos": "noun", + "word_frequency": 4612 + }, + { + "word": "report", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postponement;carry-over", + "example_sentence_native": "Le report du match a été annoncé.", + "example_sentence_english": "The postponement of the match was announced.", + "pos": "noun", + "word_frequency": 4613 + }, + { + "word": "régie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "control room;public utility", + "example_sentence_native": "La régie des transports gère les bus de la ville.", + "example_sentence_english": "The transport authority manages the city buses.", + "pos": "noun", + "word_frequency": 4614 + }, + { + "word": "réservoir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reservoir;tank", + "example_sentence_native": "Le réservoir d'essence est presque vide.", + "example_sentence_english": "The gas tank is almost empty.", + "pos": "noun", + "word_frequency": 4615 + }, + { + "word": "souhait", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wish;desire", + "example_sentence_native": "J'ai un souhait pour ton anniversaire.", + "example_sentence_english": "I have a wish for your birthday.", + "pos": "noun", + "word_frequency": 4617 + }, + { + "word": "thermique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal", + "example_sentence_native": "C'est une isolation thermique très efficace.", + "example_sentence_english": "It's a very effective thermal insulation.", + "pos": "adjective", + "word_frequency": 4619 + }, + { + "word": "vedette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "star;celebrity", + "example_sentence_native": "Elle est la vedette du nouveau film.", + "example_sentence_english": "She is the star of the new movie.", + "pos": "noun", + "word_frequency": 4623 + }, + { + "word": "énerver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy;to irritate", + "example_sentence_native": "Ce bruit commence à m'énerver.", + "example_sentence_english": "This noise is starting to annoy me.", + "pos": "verb", + "word_frequency": 4628 + }, + { + "word": "épidémie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epidemic", + "example_sentence_native": "L'épidémie s'est propagée rapidement.", + "example_sentence_english": "The epidemic spread quickly.", + "pos": "noun", + "word_frequency": 4629 + }, + { + "word": "aluminium", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aluminum", + "example_sentence_native": "Cette canette est en aluminium.", + "example_sentence_english": "This can is made of aluminum.", + "pos": "noun", + "word_frequency": 4631 + }, + { + "word": "appartenance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belonging;membership", + "example_sentence_native": "Le sentiment d'appartenance est important.", + "example_sentence_english": "The feeling of belonging is important.", + "pos": "noun", + "word_frequency": 4633 + }, + { + "word": "approbation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approval;approbation", + "example_sentence_native": "Il a obtenu l'approbation de ses parents.", + "example_sentence_english": "He obtained his parents' approval.", + "pos": "noun", + "word_frequency": 4634 + }, + { + "word": "autobus", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "example_sentence_native": "L'autobus arrive dans cinq minutes.", + "example_sentence_english": "The bus arrives in five minutes.", + "pos": "noun", + "word_frequency": 4636 + }, + { + "word": "boxe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxing", + "example_sentence_native": "Il pratique la boxe depuis son adolescence.", + "example_sentence_english": "He has been practicing boxing since his adolescence.", + "pos": "noun", + "word_frequency": 4639 + }, + { + "word": "bâtir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to build", + "example_sentence_native": "Ils vont bâtir une nouvelle maison.", + "example_sentence_english": "They are going to build a new house.", + "pos": "verb", + "word_frequency": 4640 + }, + { + "word": "bénévole", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volunteer (adj);voluntary", + "example_sentence_native": "Elle est une travailleuse bénévole.", + "example_sentence_english": "She is a volunteer worker.", + "pos": "adjective", + "word_frequency": 4641 + }, + { + "word": "clause", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clause", + "example_sentence_native": "Cette clause est importante dans le contrat.", + "example_sentence_english": "This clause is important in the contract.", + "pos": "noun", + "word_frequency": 4643 + }, + { + "word": "cloud", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloud (computing)", + "example_sentence_native": "Nous stockons nos données sur le cloud.", + "example_sentence_english": "We store our data on the cloud.", + "pos": "noun", + "word_frequency": 4644 + }, + { + "word": "comble", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attic;height;peak", + "example_sentence_native": "Le grenier est aussi appelé le comble.", + "example_sentence_english": "The attic is also called the comble.", + "pos": "noun", + "word_frequency": 4645 + }, + { + "word": "commenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comment", + "example_sentence_native": "Il aime commenter les articles en ligne.", + "example_sentence_english": "He likes to comment on online articles.", + "pos": "verb", + "word_frequency": 4646 + }, + { + "word": "cousine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cousin (female)", + "example_sentence_native": "Ma cousine vient me rendre visite.", + "example_sentence_english": "My cousin is coming to visit me.", + "pos": "noun", + "word_frequency": 4647 + }, + { + "word": "crédible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credible", + "example_sentence_native": "Son témoignage n'est pas très crédible.", + "example_sentence_english": "His testimony is not very credible.", + "pos": "adjective", + "word_frequency": 4648 + }, + { + "word": "culpabilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guilt", + "example_sentence_native": "Il ressentait une profonde culpabilité.", + "example_sentence_english": "He felt a deep guilt.", + "pos": "noun", + "word_frequency": 4649 + }, + { + "word": "dominant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominant", + "example_sentence_native": "C'est la couleur dominante dans la pièce.", + "example_sentence_english": "It's the dominant color in the room.", + "pos": "adjective", + "word_frequency": 4650 + }, + { + "word": "dégueulasse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgusting;gross", + "example_sentence_native": "Ce plat est absolument dégueulasse.", + "example_sentence_english": "This dish is absolutely disgusting.", + "pos": "adjective", + "word_frequency": 4651 + }, + { + "word": "délicat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delicate;tricky", + "example_sentence_native": "C'est une situation très délicate.", + "example_sentence_english": "It's a very delicate situation.", + "pos": "adjective", + "word_frequency": 4652 + }, + { + "word": "dévoiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unveil;to reveal", + "example_sentence_native": "L'entreprise va dévoiler son nouveau produit.", + "example_sentence_english": "The company will unveil its new product.", + "pos": "verb", + "word_frequency": 4653 + }, + { + "word": "exportation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "export;exportation", + "example_sentence_native": "Les exportations ont augmenté cette année.", + "example_sentence_english": "Exports have increased this year.", + "pos": "noun", + "word_frequency": 4654 + }, + { + "word": "extraction", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraction", + "example_sentence_native": "L'extraction de pétrole est une activité majeure.", + "example_sentence_english": "Oil extraction is a major activity.", + "pos": "noun", + "word_frequency": 4655 + }, + { + "word": "femelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female (animal)", + "example_sentence_native": "C'est une lionne, donc une femelle.", + "example_sentence_english": "It's a lioness, so a female.", + "pos": "noun", + "word_frequency": 4656 + }, + { + "word": "génocide", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genocide", + "example_sentence_native": "Le génocide est un crime contre l'humanité.", + "example_sentence_english": "Genocide is a crime against humanity.", + "pos": "noun", + "word_frequency": 4657 + }, + { + "word": "hautement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highly", + "example_sentence_native": "C'est une question hautement sensible.", + "example_sentence_english": "It's a highly sensitive issue.", + "pos": "adverb", + "word_frequency": 4658 + }, + { + "word": "hébergement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accommodation;hosting", + "example_sentence_native": "Nous cherchons un hébergement pour la nuit.", + "example_sentence_english": "We are looking for accommodation for the night.", + "pos": "noun", + "word_frequency": 4659 + }, + { + "word": "implication", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involvement;implication", + "example_sentence_native": "Son implication dans le projet est cruciale.", + "example_sentence_english": "His involvement in the project is crucial.", + "pos": "noun", + "word_frequency": 4660 + }, + { + "word": "instinct", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinct", + "example_sentence_native": "Il a agi par instinct.", + "example_sentence_english": "He acted on instinct.", + "pos": "noun", + "word_frequency": 4661 + }, + { + "word": "intégral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integral;complete;full", + "example_sentence_native": "Le texte intégral est disponible en ligne.", + "example_sentence_english": "The full text is available online.", + "pos": "adjective", + "word_frequency": 4662 + }, + { + "word": "ironie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irony", + "example_sentence_native": "Il y a une certaine ironie dans cette situation.", + "example_sentence_english": "There is a certain irony in this situation.", + "pos": "noun", + "word_frequency": 4663 + }, + { + "word": "mensuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly", + "example_sentence_native": "Nous recevons un rapport mensuel.", + "example_sentence_english": "We receive a monthly report.", + "pos": "adjective", + "word_frequency": 4668 + }, + { + "word": "nettoyage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cleaning", + "example_sentence_native": "Le nettoyage de la maison prend du temps.", + "example_sentence_english": "Cleaning the house takes time.", + "pos": "noun", + "word_frequency": 4670 + }, + { + "word": "occupé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "busy;occupied", + "example_sentence_native": "Je suis très occupé en ce moment.", + "example_sentence_english": "I am very busy right now.", + "pos": "adjective", + "word_frequency": 4671 + }, + { + "word": "pair", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peer;even number", + "example_sentence_native": "Il est respecté par ses pairs.", + "example_sentence_english": "He is respected by his peers.", + "pos": "noun", + "word_frequency": 4672 + }, + { + "word": "passionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fascinate;to excite", + "example_sentence_native": "Ce sujet me passionne beaucoup.", + "example_sentence_english": "This subject fascinates me a lot.", + "pos": "verb", + "word_frequency": 4673 + }, + { + "word": "potable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drinkable;potable", + "example_sentence_native": "L'eau du robinet est potable ici.", + "example_sentence_english": "Tap water is drinkable here.", + "pos": "adjective", + "word_frequency": 4675 + }, + { + "word": "poteau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "post;pole", + "example_sentence_native": "Le chien est attaché au poteau.", + "example_sentence_english": "The dog is tied to the post.", + "pos": "noun", + "word_frequency": 4676 + }, + { + "word": "poétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poetic", + "example_sentence_native": "C'est une expression très poétique.", + "example_sentence_english": "It's a very poetic expression.", + "pos": "adjective", + "word_frequency": 4677 + }, + { + "word": "prestige", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prestige", + "example_sentence_native": "Cette université a un grand prestige.", + "example_sentence_english": "This university has great prestige.", + "pos": "noun", + "word_frequency": 4678 + }, + { + "word": "probabilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probability", + "example_sentence_native": "La probabilité de pluie est faible aujourd'hui.", + "example_sentence_english": "The probability of rain is low today.", + "pos": "noun", + "word_frequency": 4679 + }, + { + "word": "pédagogique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedagogical", + "example_sentence_native": "Son approche pédagogique est très efficace.", + "example_sentence_english": "His pedagogical approach is very effective.", + "pos": "adjective", + "word_frequency": 4680 + }, + { + "word": "péter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break (informal);to fart", + "example_sentence_native": "Le vase est tombé et a pétéquand il a touché le sol.", + "example_sentence_english": "The vase fell and broke when it hit the ground.", + "pos": "verb", + "word_frequency": 4681 + }, + { + "word": "racheter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to buy back;to redeem", + "example_sentence_native": "Il a décidé de racheter les actions de son entreprise.", + "example_sentence_english": "He decided to buy back his company's shares.", + "pos": "verb", + "word_frequency": 4682 + }, + { + "word": "recruter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recruit", + "example_sentence_native": "L'entreprise cherche à recruter de nouveaux talents.", + "example_sentence_english": "The company is looking to recruit new talents.", + "pos": "verb", + "word_frequency": 4683 + }, + { + "word": "relancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relaunch;to revive;to follow up", + "example_sentence_native": "Il faut relancer l'économie après cette crise.", + "example_sentence_english": "We need to revive the economy after this crisis.", + "pos": "verb", + "word_frequency": 4684 + }, + { + "word": "remède", + "article_with_word": "le remède", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remedy;cure", + "example_sentence_native": "Il n'y a pas de remède miracle pour cette maladie.", + "example_sentence_english": "There is no miracle cure for this disease.", + "pos": "noun", + "word_frequency": 4685 + }, + { + "word": "rigoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to laugh;to joke (informal)", + "example_sentence_native": "Les enfants aiment bien rigoler ensemble.", + "example_sentence_english": "The children like to laugh together.", + "pos": "verb", + "word_frequency": 4686 + }, + { + "word": "rotation", + "article_with_word": "la rotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotation", + "example_sentence_native": "La rotation des cultures est importante pour le sol.", + "example_sentence_english": "Crop rotation is important for the soil.", + "pos": "noun", + "word_frequency": 4687 + }, + { + "word": "routine", + "article_with_word": "la routine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "routine", + "example_sentence_native": "J'aime ma routine quotidienne.", + "example_sentence_english": "I like my daily routine.", + "pos": "noun", + "word_frequency": 4688 + }, + { + "word": "récupération", + "article_with_word": "la récupération", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovery;retrieval", + "example_sentence_native": "La récupération des données est essentielle après une panne.", + "example_sentence_english": "Data recovery is essential after a breakdown.", + "pos": "noun", + "word_frequency": 4689 + }, + { + "word": "sauveur", + "article_with_word": "le sauveur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savior;rescuer", + "example_sentence_native": "Il a été le sauveur de l'équipe.", + "example_sentence_english": "He was the team's savior.", + "pos": "noun", + "word_frequency": 4690 + }, + { + "word": "semestre", + "article_with_word": "le semestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semester;half-year", + "example_sentence_native": "Les examens de fin de semestre approchent.", + "example_sentence_english": "The end-of-semester exams are approaching.", + "pos": "noun", + "word_frequency": 4691 + }, + { + "word": "sergent", + "article_with_word": "le sergent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sergeant", + "example_sentence_native": "Le sergent a donné des ordres clairs.", + "example_sentence_english": "The sergeant gave clear orders.", + "pos": "noun", + "word_frequency": 4692 + }, + { + "word": "socialisme", + "article_with_word": "le socialisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "socialism", + "example_sentence_native": "Le socialisme est une idéologie politique.", + "example_sentence_english": "Socialism is a political ideology.", + "pos": "noun", + "word_frequency": 4693 + }, + { + "word": "superficie", + "article_with_word": "la superficie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "area;surface area", + "example_sentence_native": "La superficie de ce pays est immense.", + "example_sentence_english": "The area of this country is immense.", + "pos": "noun", + "word_frequency": 4694 + }, + { + "word": "tache", + "article_with_word": "la tache", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stain;spot", + "example_sentence_native": "Il y a une tache de café sur ma chemise.", + "example_sentence_english": "There's a coffee stain on my shirt.", + "pos": "noun", + "word_frequency": 4695 + }, + { + "word": "tchèque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Czech", + "example_sentence_native": "Elle parle la langue tchèque couramment.", + "example_sentence_english": "She speaks the Czech language fluently.", + "pos": "adjective", + "word_frequency": 4696 + }, + { + "word": "technicien", + "article_with_word": "le technicien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technician", + "example_sentence_native": "Le technicien est venu réparer l'ordinateur.", + "example_sentence_english": "The technician came to repair the computer.", + "pos": "noun", + "word_frequency": 4697 + }, + { + "word": "unanimité", + "article_with_word": "l'unanimité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unanimity", + "example_sentence_native": "La décision a été prise à l'unanimité.", + "example_sentence_english": "The decision was made unanimously.", + "pos": "noun", + "word_frequency": 4698 + }, + { + "word": "valider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to validate;to approve", + "example_sentence_native": "Vous devez valider votre billet avant de monter.", + "example_sentence_english": "You must validate your ticket before boarding.", + "pos": "verb", + "word_frequency": 4699 + }, + { + "word": "venger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avenge;to get revenge", + "example_sentence_native": "Il a juré de venger la mort de son ami.", + "example_sentence_english": "He swore to avenge his friend's death.", + "pos": "verb", + "word_frequency": 4700 + }, + { + "word": "zoo", + "article_with_word": "le zoo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zoo", + "example_sentence_native": "Nous sommes allés au zoo le week-end dernier.", + "example_sentence_english": "We went to the zoo last weekend.", + "pos": "noun", + "word_frequency": 4703 + }, + { + "word": "étroit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "narrow;tight", + "example_sentence_native": "La rue est très étroite.", + "example_sentence_english": "The street is very narrow.", + "pos": "adjective", + "word_frequency": 4704 + }, + { + "word": "achever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to complete;to finish", + "example_sentence_native": "Il a achevé son travail avant la date limite.", + "example_sentence_english": "He completed his work before the deadline.", + "pos": "verb", + "word_frequency": 4705 + }, + { + "word": "adolescence", + "article_with_word": "l'adolescence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adolescence", + "example_sentence_native": "L'adolescence est une période de grands changements.", + "example_sentence_english": "Adolescence is a period of great changes.", + "pos": "noun", + "word_frequency": 4706 + }, + { + "word": "alternative", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternative", + "example_sentence_native": "Nous cherchons une solution alternative.", + "example_sentence_english": "We are looking for an alternative solution.", + "pos": "adjective", + "word_frequency": 4707 + }, + { + "word": "ambitieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambitious", + "example_sentence_native": "C'est un jeune homme très ambitieux.", + "example_sentence_english": "He is a very ambitious young man.", + "pos": "adjective", + "word_frequency": 4708 + }, + { + "word": "approvisionnement", + "article_with_word": "l'approvisionnement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supply;provisioning", + "example_sentence_native": "L'approvisionnement en eau est crucial dans cette région.", + "example_sentence_english": "Water supply is crucial in this region.", + "pos": "noun", + "word_frequency": 4710 + }, + { + "word": "arranger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrange;to suit", + "example_sentence_native": "Cela m'arrange de te rencontrer demain.", + "example_sentence_english": "It suits me to meet you tomorrow.", + "pos": "verb", + "word_frequency": 4711 + }, + { + "word": "artificiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artificial", + "example_sentence_native": "Cette fleur est artificielle.", + "example_sentence_english": "This flower is artificial.", + "pos": "adjective", + "word_frequency": 4712 + }, + { + "word": "ascension", + "article_with_word": "l'ascension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascension;climb", + "example_sentence_native": "L'ascension de la montagne a été difficile.", + "example_sentence_english": "The ascent of the mountain was difficult.", + "pos": "noun", + "word_frequency": 4713 + }, + { + "word": "baseball", + "article_with_word": "le baseball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baseball", + "example_sentence_native": "Le baseball est un sport populaire aux États-Unis.", + "example_sentence_english": "Baseball is a popular sport in the United States.", + "pos": "noun", + "word_frequency": 4714 + }, + { + "word": "berger", + "article_with_word": "le berger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shepherd", + "example_sentence_native": "Le berger garde ses moutons.", + "example_sentence_english": "The shepherd guards his sheep.", + "pos": "noun", + "word_frequency": 4715 + }, + { + "word": "bi", + "article_with_word": "un bi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bisexual (person)", + "example_sentence_native": "Il s'identifie comme bi.", + "example_sentence_english": "He identifies as bi.", + "pos": "noun", + "word_frequency": 4716 + }, + { + "word": "candidate", + "article_with_word": "la candidate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candidate (female)", + "example_sentence_native": "La candidate a présenté son programme.", + "example_sentence_english": "The candidate presented her program.", + "pos": "noun", + "word_frequency": 4717 + }, + { + "word": "centimètre", + "article_with_word": "le centimètre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "centimeter", + "example_sentence_native": "Ce ruban mesure dix centimètres.", + "example_sentence_english": "This ribbon measures ten centimeters.", + "pos": "noun", + "word_frequency": 4718 + }, + { + "word": "choquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shock;to offend", + "example_sentence_native": "Ses paroles ont choqué l'audience.", + "example_sentence_english": "His words shocked the audience.", + "pos": "verb", + "word_frequency": 4719 + }, + { + "word": "compatible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compatible", + "example_sentence_native": "Ces deux systèmes ne sont pas compatibles.", + "example_sentence_english": "These two systems are not compatible.", + "pos": "adjective", + "word_frequency": 4720 + }, + { + "word": "complice", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complicit", + "example_sentence_native": "Il était complice de l'évasion.", + "example_sentence_english": "He was complicit in the escape.", + "pos": "adjective", + "word_frequency": 4721 + }, + { + "word": "cycliste", + "article_with_word": "le/la cycliste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cyclist", + "example_sentence_native": "Le cycliste portait un casque.", + "example_sentence_english": "The cyclist was wearing a helmet.", + "pos": "noun", + "word_frequency": 4722 + }, + { + "word": "dernièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently", + "example_sentence_native": "Je l'ai vu dernièrement au marché.", + "example_sentence_english": "I saw him recently at the market.", + "pos": "adverb", + "word_frequency": 4725 + }, + { + "word": "dessiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to draw", + "example_sentence_native": "Elle aime dessiner des paysages.", + "example_sentence_english": "She likes to draw landscapes.", + "pos": "verb", + "word_frequency": 4726 + }, + { + "word": "diamant", + "article_with_word": "le diamant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diamond", + "example_sentence_native": "Le diamant est une pierre précieuse.", + "example_sentence_english": "The diamond is a precious stone.", + "pos": "noun", + "word_frequency": 4727 + }, + { + "word": "différemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "differently", + "example_sentence_native": "Il pense différemment des autres.", + "example_sentence_english": "He thinks differently from others.", + "pos": "adverb", + "word_frequency": 4729 + }, + { + "word": "dissolution", + "article_with_word": "la dissolution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissolution", + "example_sentence_native": "La dissolution du parlement a été annoncée.", + "example_sentence_english": "The dissolution of parliament was announced.", + "pos": "noun", + "word_frequency": 4730 + }, + { + "word": "décharge", + "article_with_word": "la décharge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landfill", + "example_sentence_native": "La décharge est pleine.", + "example_sentence_english": "The landfill is full.", + "pos": "noun", + "word_frequency": 4732 + }, + { + "word": "détresse", + "article_with_word": "la détresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distress", + "example_sentence_native": "Elle était en grande détresse.", + "example_sentence_english": "She was in great distress.", + "pos": "noun", + "word_frequency": 4733 + }, + { + "word": "emprunt", + "article_with_word": "l'emprunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loan", + "example_sentence_native": "Il a contracté un emprunt pour acheter sa maison.", + "example_sentence_english": "He took out a loan to buy his house.", + "pos": "noun", + "word_frequency": 4734 + }, + { + "word": "encadrement", + "article_with_word": "l'encadrement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "framework", + "example_sentence_native": "L'encadrement des étudiants est essentiel.", + "example_sentence_english": "Student supervision is essential.", + "pos": "noun", + "word_frequency": 4735 + }, + { + "word": "essor", + "article_with_word": "l'essor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rise", + "example_sentence_native": "La ville connaît un essor économique.", + "example_sentence_english": "The city is experiencing an economic boom.", + "pos": "noun", + "word_frequency": 4736 + }, + { + "word": "farine", + "article_with_word": "la farine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flour", + "example_sentence_native": "J'ai besoin de farine pour faire un gâteau.", + "example_sentence_english": "I need flour to make a cake.", + "pos": "noun", + "word_frequency": 4737 + }, + { + "word": "filer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to streak", + "example_sentence_native": "Le chat a filé sous la table.", + "example_sentence_english": "The cat streaked under the table.", + "pos": "verb", + "word_frequency": 4738 + }, + { + "word": "fraternité", + "article_with_word": "la fraternité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraternity", + "example_sentence_native": "La fraternité est une valeur importante.", + "example_sentence_english": "Fraternity is an important value.", + "pos": "noun", + "word_frequency": 4739 + }, + { + "word": "gouvernance", + "article_with_word": "la gouvernance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governance", + "example_sentence_native": "La bonne gouvernance est essentielle pour la stabilité.", + "example_sentence_english": "Good governance is essential for stability.", + "pos": "noun", + "word_frequency": 4742 + }, + { + "word": "grotte", + "article_with_word": "la grotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cave", + "example_sentence_native": "Nous avons exploré une grotte.", + "example_sentence_english": "We explored a cave.", + "pos": "noun", + "word_frequency": 4743 + }, + { + "word": "humidité", + "article_with_word": "l'humidité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humidity", + "example_sentence_native": "L'humidité est très élevée aujourd'hui.", + "example_sentence_english": "The humidity is very high today.", + "pos": "noun", + "word_frequency": 4746 + }, + { + "word": "implantation", + "article_with_word": "l'implantation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment", + "example_sentence_native": "L'implantation de la nouvelle usine est prévue pour l'année prochaine.", + "example_sentence_english": "The establishment of the new factory is planned for next year.", + "pos": "noun", + "word_frequency": 4747 + }, + { + "word": "impulsion", + "article_with_word": "l'impulsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impulse", + "example_sentence_native": "Il a agi sur une impulsion.", + "example_sentence_english": "He acted on an impulse.", + "pos": "noun", + "word_frequency": 4748 + }, + { + "word": "incapacité", + "article_with_word": "l'incapacité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability", + "example_sentence_native": "Son incapacité à comprendre était évidente.", + "example_sentence_english": "His inability to understand was obvious.", + "pos": "noun", + "word_frequency": 4749 + }, + { + "word": "marocain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Moroccan", + "example_sentence_native": "J'ai goûté un plat marocain délicieux.", + "example_sentence_english": "I tasted a delicious Moroccan dish.", + "pos": "adjective", + "word_frequency": 4751 + }, + { + "word": "maîtriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to master", + "example_sentence_native": "Il maîtrise bien le français.", + "example_sentence_english": "He masters French well.", + "pos": "verb", + "word_frequency": 4752 + }, + { + "word": "missile", + "article_with_word": "le missile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missile", + "example_sentence_native": "Le missile a été lancé.", + "example_sentence_english": "The missile was launched.", + "pos": "noun", + "word_frequency": 4753 + }, + { + "word": "multitude", + "article_with_word": "la multitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multitude", + "example_sentence_native": "Une multitude de personnes s'est rassemblée.", + "example_sentence_english": "A multitude of people gathered.", + "pos": "noun", + "word_frequency": 4754 + }, + { + "word": "opposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposite", + "example_sentence_native": "Ils ont des opinions opposées.", + "example_sentence_english": "They have opposite opinions.", + "pos": "adjective", + "word_frequency": 4756 + }, + { + "word": "plancher", + "article_with_word": "le plancher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floor", + "example_sentence_native": "Le plancher de la cuisine est en bois.", + "example_sentence_english": "The kitchen floor is made of wood.", + "pos": "noun", + "word_frequency": 4757 + }, + { + "word": "préoccupation", + "article_with_word": "la préoccupation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concern", + "example_sentence_native": "Sa principale préoccupation est la santé de ses enfants.", + "example_sentence_english": "His main concern is the health of his children.", + "pos": "noun", + "word_frequency": 4758 + }, + { + "word": "rajouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to add (again);to add on", + "example_sentence_native": "N'oubliez pas de rajouter du sel à la soupe.", + "example_sentence_english": "Don't forget to add more salt to the soup.", + "pos": "verb", + "word_frequency": 4761 + }, + { + "word": "ravir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delight;to enchant", + "example_sentence_native": "Cette nouvelle a ravi tout le monde.", + "example_sentence_english": "This news delighted everyone.", + "pos": "verb", + "word_frequency": 4762 + }, + { + "word": "reconnaissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grateful;thankful", + "example_sentence_native": "Je suis très reconnaissant pour votre aide précieuse.", + "example_sentence_english": "I am very grateful for your valuable help.", + "pos": "adjective", + "word_frequency": 4763 + }, + { + "word": "renouveler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to renew;to refresh", + "example_sentence_native": "Il faut renouveler son passeport tous les dix ans.", + "example_sentence_english": "You have to renew your passport every ten years.", + "pos": "verb", + "word_frequency": 4764 + }, + { + "word": "réchauffement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warming;reheating", + "example_sentence_native": "Le réchauffement climatique est une préoccupation majeure.", + "example_sentence_english": "Global warming is a major concern.", + "pos": "noun", + "word_frequency": 4766 + }, + { + "word": "résident", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resident", + "example_sentence_native": "Les résidents de l'immeuble se sont plaints du bruit.", + "example_sentence_english": "The residents of the building complained about the noise.", + "pos": "noun", + "word_frequency": 4767 + }, + { + "word": "résulter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to result (from)", + "example_sentence_native": "Cette situation a résulté d'une série de mauvaises décisions.", + "example_sentence_english": "This situation resulted from a series of bad decisions.", + "pos": "verb", + "word_frequency": 4768 + }, + { + "word": "significatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significant;meaningful", + "example_sentence_native": "Il y a eu une augmentation significative des ventes.", + "example_sentence_english": "There has been a significant increase in sales.", + "pos": "adjective", + "word_frequency": 4769 + }, + { + "word": "spirituel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spiritual;witty", + "example_sentence_native": "Il a un sens de l'humour très spirituel.", + "example_sentence_english": "He has a very witty sense of humor.", + "pos": "adjective", + "word_frequency": 4770 + }, + { + "word": "surnom", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nickname", + "example_sentence_native": "Son surnom est 'Le Grand'.", + "example_sentence_english": "His nickname is 'The Great'.", + "pos": "noun", + "word_frequency": 4771 + }, + { + "word": "synonyme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synonym", + "example_sentence_native": "'Heureux' est un synonyme de 'content'.", + "example_sentence_english": "'Happy' is a synonym for 'content'.", + "pos": "noun", + "word_frequency": 4772 + }, + { + "word": "éclat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sparkle;burst;fragment", + "example_sentence_native": "On a entendu un éclat de rire dans la pièce.", + "example_sentence_english": "We heard a burst of laughter in the room.", + "pos": "noun", + "word_frequency": 4774 + }, + { + "word": "éclater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burst;to explode", + "example_sentence_native": "Le ballon a éclaté avec un grand bruit.", + "example_sentence_english": "The balloon burst with a loud noise.", + "pos": "verb", + "word_frequency": 4775 + }, + { + "word": "élan", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "momentum;surge;impulse;moose", + "example_sentence_native": "Il a pris son élan avant de sauter.", + "example_sentence_english": "He took his run-up before jumping.", + "pos": "noun", + "word_frequency": 4776 + }, + { + "word": "élire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to elect", + "example_sentence_native": "Les citoyens vont élire un nouveau président.", + "example_sentence_english": "The citizens are going to elect a new president.", + "pos": "verb", + "word_frequency": 4777 + }, + { + "word": "accroître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase;to enhance", + "example_sentence_native": "L'entreprise cherche à accroître sa production.", + "example_sentence_english": "The company seeks to increase its production.", + "pos": "verb", + "word_frequency": 4779 + }, + { + "word": "allusion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allusion;hint", + "example_sentence_native": "Il a fait une allusion à notre conversation précédente.", + "example_sentence_english": "He made an allusion to our previous conversation.", + "pos": "noun", + "word_frequency": 4781 + }, + { + "word": "blocage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blockage;deadlock", + "example_sentence_native": "Le blocage des routes a causé d'énormes embouteillages.", + "example_sentence_english": "The road blockage caused huge traffic jams.", + "pos": "noun", + "word_frequency": 4782 + }, + { + "word": "bracelet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bracelet", + "example_sentence_native": "Elle porte un joli bracelet en argent.", + "example_sentence_english": "She is wearing a pretty silver bracelet.", + "pos": "noun", + "word_frequency": 4783 + }, + { + "word": "cavalerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavalry", + "example_sentence_native": "La cavalerie est arrivée pour soutenir l'infanterie.", + "example_sentence_english": "The cavalry arrived to support the infantry.", + "pos": "noun", + "word_frequency": 4785 + }, + { + "word": "cellulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cellular", + "example_sentence_native": "La structure cellulaire est complexe et fascinante.", + "example_sentence_english": "The cellular structure is complex and fascinating.", + "pos": "adjective", + "word_frequency": 4786 + }, + { + "word": "cendre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ash", + "example_sentence_native": "Il ne reste que des cendres après l'incendie.", + "example_sentence_english": "Only ashes remain after the fire.", + "pos": "noun", + "word_frequency": 4787 + }, + { + "word": "compositeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composer", + "example_sentence_native": "Mozart était un compositeur de génie.", + "example_sentence_english": "Mozart was a genius composer.", + "pos": "noun", + "word_frequency": 4788 + }, + { + "word": "creuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dig;to hollow out", + "example_sentence_native": "Le chien a commencé à creuser un trou dans le jardin.", + "example_sentence_english": "The dog started to dig a hole in the garden.", + "pos": "verb", + "word_frequency": 4789 + }, + { + "word": "crédibilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credibility", + "example_sentence_native": "Son témoignage a perdu toute crédibilité.", + "example_sentence_english": "His testimony lost all credibility.", + "pos": "noun", + "word_frequency": 4790 + }, + { + "word": "deviner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to guess", + "example_sentence_native": "Peux-tu deviner ce que j'ai dans ma main?", + "example_sentence_english": "Can you guess what I have in my hand?", + "pos": "verb", + "word_frequency": 4791 + }, + { + "word": "diocèse", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocese", + "example_sentence_native": "L'évêque est responsable de son diocèse.", + "example_sentence_english": "The bishop is responsible for his diocese.", + "pos": "noun", + "word_frequency": 4792 + }, + { + "word": "doré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "golden", + "example_sentence_native": "Elle portait une robe dorée pour la soirée.", + "example_sentence_english": "She was wearing a golden dress for the evening.", + "pos": "adjective", + "word_frequency": 4794 + }, + { + "word": "décalage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shift;gap;discrepancy", + "example_sentence_native": "Il y a un décalage important entre la théorie et la pratique.", + "example_sentence_english": "There is a significant gap between theory and practice.", + "pos": "noun", + "word_frequency": 4796 + }, + { + "word": "décidément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "definitely;really;decidedly", + "example_sentence_native": "Décidément, il ne comprend rien à la situation.", + "example_sentence_english": "He really doesn't understand anything about the situation.", + "pos": "adverb", + "word_frequency": 4797 + }, + { + "word": "dégradation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "degradation;deterioration", + "example_sentence_native": "La dégradation de l'environnement est préoccupante.", + "example_sentence_english": "Environmental degradation is concerning.", + "pos": "noun", + "word_frequency": 4798 + }, + { + "word": "détenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold;to possess;to detain", + "example_sentence_native": "La police détient des informations importantes sur l'affaire.", + "example_sentence_english": "The police hold important information about the case.", + "pos": "verb", + "word_frequency": 4799 + }, + { + "word": "entreprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to undertake", + "example_sentence_native": "Il est temps d'entreprendre de nouvelles actions.", + "example_sentence_english": "It's time to undertake new actions.", + "pos": "verb", + "word_frequency": 4801 + }, + { + "word": "exploit", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feat", + "example_sentence_native": "Terminer ce marathon fut un véritable exploit.", + "example_sentence_english": "Finishing this marathon was a real feat.", + "pos": "noun", + "word_frequency": 4802 + }, + { + "word": "flou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blurry", + "example_sentence_native": "La photo est un peu floue.", + "example_sentence_english": "The photo is a bit blurry.", + "pos": "adjective", + "word_frequency": 4803 + }, + { + "word": "fluide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fluid", + "example_sentence_native": "Son français est très fluide.", + "example_sentence_english": "His French is very fluid.", + "pos": "adjective", + "word_frequency": 4804 + }, + { + "word": "gravement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriously", + "example_sentence_native": "Il a été gravement blessé dans l'accident.", + "example_sentence_english": "He was seriously injured in the accident.", + "pos": "adverb", + "word_frequency": 4806 + }, + { + "word": "hélicoptère", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helicopter", + "example_sentence_native": "Un hélicoptère a survolé la ville.", + "example_sentence_english": "A helicopter flew over the city.", + "pos": "noun", + "word_frequency": 4808 + }, + { + "word": "ier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "first", + "example_sentence_native": "C'est le 1er jour du mois.", + "example_sentence_english": "It's the first day of the month.", + "pos": "numeral", + "word_frequency": 4809 + }, + { + "word": "impérial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperial", + "example_sentence_native": "Le palais impérial est une merveille architecturale.", + "example_sentence_english": "The imperial palace is an architectural marvel.", + "pos": "adjective", + "word_frequency": 4810 + }, + { + "word": "injection", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injection", + "example_sentence_native": "L'infirmière lui a fait une injection.", + "example_sentence_english": "The nurse gave him an injection.", + "pos": "noun", + "word_frequency": 4811 + }, + { + "word": "intimité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimacy", + "example_sentence_native": "Il est important de respecter l'intimité des gens.", + "example_sentence_english": "It's important to respect people's privacy.", + "pos": "noun", + "word_frequency": 4812 + }, + { + "word": "isolement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolation", + "example_sentence_native": "L'isolement social peut avoir des conséquences négatives.", + "example_sentence_english": "Social isolation can have negative consequences.", + "pos": "noun", + "word_frequency": 4813 + }, + { + "word": "jersey", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jersey", + "example_sentence_native": "Elle porte un joli jersey en laine.", + "example_sentence_english": "She is wearing a nice wool jersey.", + "pos": "noun", + "word_frequency": 4814 + }, + { + "word": "locataire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenant", + "example_sentence_native": "Le locataire a signé le contrat de bail.", + "example_sentence_english": "The tenant signed the lease agreement.", + "pos": "noun", + "word_frequency": 4816 + }, + { + "word": "logistique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logistics", + "example_sentence_native": "La logistique de l'événement était très complexe.", + "example_sentence_english": "The event's logistics were very complex.", + "pos": "noun", + "word_frequency": 4817 + }, + { + "word": "légendaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legendary", + "example_sentence_native": "C'est un héros légendaire de notre histoire.", + "example_sentence_english": "He is a legendary hero of our history.", + "pos": "adjective", + "word_frequency": 4818 + }, + { + "word": "maintenance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maintenance", + "example_sentence_native": "La maintenance régulière est cruciale pour la machine.", + "example_sentence_english": "Regular maintenance is crucial for the machine.", + "pos": "noun", + "word_frequency": 4819 + }, + { + "word": "monastère", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monastery", + "example_sentence_native": "Ils ont visité un ancien monastère dans les montagnes.", + "example_sentence_english": "They visited an old monastery in the mountains.", + "pos": "noun", + "word_frequency": 4820 + }, + { + "word": "moquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mock", + "example_sentence_native": "Il ne faut pas se moquer des autres.", + "example_sentence_english": "One should not mock others.", + "pos": "verb", + "word_frequency": 4821 + }, + { + "word": "nuire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harm", + "example_sentence_native": "Le bruit excessif peut nuire à l'audition.", + "example_sentence_english": "Excessive noise can harm hearing.", + "pos": "verb", + "word_frequency": 4822 + }, + { + "word": "occurrence", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurrence", + "example_sentence_native": "C'est une occurrence rare dans ce type de situation.", + "example_sentence_english": "It's a rare occurrence in this type of situation.", + "pos": "noun", + "word_frequency": 4823 + }, + { + "word": "orage", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "storm", + "example_sentence_native": "Un orage violent a éclaté hier soir.", + "example_sentence_english": "A violent storm broke out last night.", + "pos": "noun", + "word_frequency": 4824 + }, + { + "word": "pervers", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perverse", + "example_sentence_native": "Il a un sens de l'humour un peu pervers.", + "example_sentence_english": "He has a somewhat perverse sense of humor.", + "pos": "adjective", + "word_frequency": 4826 + }, + { + "word": "peste", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plague", + "example_sentence_native": "La peste noire a marqué l'histoire.", + "example_sentence_english": "The Black Death marked history.", + "pos": "noun", + "word_frequency": 4827 + }, + { + "word": "politicien", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politician", + "example_sentence_native": "Le politicien a promis des réformes importantes.", + "example_sentence_english": "The politician promised important reforms.", + "pos": "noun", + "word_frequency": 4828 + }, + { + "word": "potentiellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potentially", + "example_sentence_native": "Ce projet est potentiellement très rentable.", + "example_sentence_english": "This project is potentially very profitable.", + "pos": "adverb", + "word_frequency": 4829 + }, + { + "word": "protéine", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protein", + "example_sentence_native": "Les viandes sont riches en protéines.", + "example_sentence_english": "Meats are rich in protein.", + "pos": "noun", + "word_frequency": 4830 + }, + { + "word": "préjugé", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudice", + "example_sentence_native": "Il faut combattre les préjugés.", + "example_sentence_english": "We must fight prejudices.", + "pos": "noun", + "word_frequency": 4831 + }, + { + "word": "pénible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painful", + "example_sentence_native": "C'était une expérience très pénible pour lui.", + "example_sentence_english": "It was a very painful experience for him.", + "pos": "adjective", + "word_frequency": 4832 + }, + { + "word": "péril", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peril", + "example_sentence_native": "Ils ont agi à leurs risques et périls.", + "example_sentence_english": "They acted at their own risk and peril.", + "pos": "noun", + "word_frequency": 4833 + }, + { + "word": "repousser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push back", + "example_sentence_native": "Nous devons repousser la réunion à la semaine prochaine.", + "example_sentence_english": "We need to push back the meeting to next week.", + "pos": "verb", + "word_frequency": 4835 + }, + { + "word": "rompre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break", + "example_sentence_native": "Ils ont décidé de rompre leur relation.", + "example_sentence_english": "They decided to break their relationship.", + "pos": "verb", + "word_frequency": 4836 + }, + { + "word": "routier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "road (adj.)", + "example_sentence_native": "Le réseau routier est très développé dans cette région.", + "example_sentence_english": "The road network is very developed in this region.", + "pos": "adjective", + "word_frequency": 4837 + }, + { + "word": "short", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shorts", + "example_sentence_native": "Il fait chaud, je vais mettre un short.", + "example_sentence_english": "It's hot, I'm going to put on shorts.", + "pos": "noun", + "word_frequency": 4838 + }, + { + "word": "spa", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spa", + "example_sentence_native": "Nous avons passé l'après-midi au spa.", + "example_sentence_english": "We spent the afternoon at the spa.", + "pos": "noun", + "word_frequency": 4839 + }, + { + "word": "tantôt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sometimes;soon", + "example_sentence_native": "Tantôt il pleut, tantôt il fait beau.", + "example_sentence_english": "Sometimes it rains, sometimes it's sunny.", + "pos": "adverb", + "word_frequency": 4840 + }, + { + "word": "théologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theology", + "example_sentence_native": "Il étudie la théologie à l'université.", + "example_sentence_english": "He studies theology at the university.", + "pos": "noun", + "word_frequency": 4842 + }, + { + "word": "abandonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abandoned", + "example_sentence_native": "La maison était complètement abandonnée.", + "example_sentence_english": "The house was completely abandoned.", + "pos": "adj", + "word_frequency": 4847 + }, + { + "word": "aisément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easily", + "example_sentence_native": "Il a résolu le problème aisément.", + "example_sentence_english": "He solved the problem easily.", + "pos": "adv", + "word_frequency": 4848 + }, + { + "word": "ajouté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "added", + "example_sentence_native": "Le sucre ajouté n'est pas bon pour la santé.", + "example_sentence_english": "Added sugar is not good for health.", + "pos": "adj", + "word_frequency": 4849 + }, + { + "word": "amical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friendly", + "example_sentence_native": "Il a toujours été très amical avec tout le monde.", + "example_sentence_english": "He has always been very friendly with everyone.", + "pos": "adj", + "word_frequency": 4850 + }, + { + "word": "appli", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "app", + "example_sentence_native": "J'ai téléchargé une nouvelle appli sur mon téléphone.", + "example_sentence_english": "I downloaded a new app on my phone.", + "pos": "noun", + "word_frequency": 4851 + }, + { + "word": "approprié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate", + "example_sentence_native": "C'est le moment approprié pour agir.", + "example_sentence_english": "It's the appropriate time to act.", + "pos": "adj", + "word_frequency": 4852 + }, + { + "word": "arnaque", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scam", + "example_sentence_native": "Attention, c'est une arnaque !", + "example_sentence_english": "Be careful, it's a scam!", + "pos": "noun", + "word_frequency": 4853 + }, + { + "word": "atteint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affected;reached", + "example_sentence_native": "Il est atteint d'une maladie rare.", + "example_sentence_english": "He is affected by a rare disease.", + "pos": "adj", + "word_frequency": 4854 + }, + { + "word": "attraper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to catch", + "example_sentence_native": "J'ai essayé d'attraper le ballon.", + "example_sentence_english": "I tried to catch the ball.", + "pos": "verb", + "word_frequency": 4855 + }, + { + "word": "audition", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audition;hearing", + "example_sentence_native": "Elle a passé une audition pour le rôle principal.", + "example_sentence_english": "She had an audition for the main role.", + "pos": "noun", + "word_frequency": 4856 + }, + { + "word": "bis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encore;second (in address)", + "example_sentence_native": "L'adresse est 12 bis, rue de la Paix.", + "example_sentence_english": "The address is 12 bis, Rue de la Paix.", + "pos": "adv", + "word_frequency": 4858 + }, + { + "word": "brûlé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "burnt", + "example_sentence_native": "Le pain est brûlé.", + "example_sentence_english": "The bread is burnt.", + "pos": "adj", + "word_frequency": 4860 + }, + { + "word": "bâti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "built;well-built", + "example_sentence_native": "C'est un homme bien bâti.", + "example_sentence_english": "He is a well-built man.", + "pos": "adj", + "word_frequency": 4861 + }, + { + "word": "cabine", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cabin;booth", + "example_sentence_native": "La cabine téléphonique est hors service.", + "example_sentence_english": "The phone booth is out of order.", + "pos": "noun", + "word_frequency": 4862 + }, + { + "word": "capitalisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitalism", + "example_sentence_native": "Le capitalisme est un système économique.", + "example_sentence_english": "Capitalism is an economic system.", + "pos": "noun", + "word_frequency": 4863 + }, + { + "word": "cassation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "annulment;quashing (legal)", + "example_sentence_native": "La Cour de cassation est la plus haute juridiction.", + "example_sentence_english": "The Court of Cassation is the highest court.", + "pos": "noun", + "word_frequency": 4864 + }, + { + "word": "casting", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casting;cast", + "example_sentence_native": "Le casting du film est excellent.", + "example_sentence_english": "The film's cast is excellent.", + "pos": "noun", + "word_frequency": 4865 + }, + { + "word": "champignon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mushroom", + "example_sentence_native": "J'aime les champignons à la crème.", + "example_sentence_english": "I like creamed mushrooms.", + "pos": "noun", + "word_frequency": 4867 + }, + { + "word": "combler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fill;to fulfill", + "example_sentence_native": "Il faut combler le fossé entre les deux parties.", + "example_sentence_english": "We must bridge the gap between the two parties.", + "pos": "verb", + "word_frequency": 4868 + }, + { + "word": "compenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate", + "example_sentence_native": "Son travail acharné a compensé son manque d'expérience.", + "example_sentence_english": "His hard work compensated for his lack of experience.", + "pos": "verb", + "word_frequency": 4869 + }, + { + "word": "conseillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommended;advisable", + "example_sentence_native": "Il est conseillé de réserver à l'avance.", + "example_sentence_english": "It is advisable to book in advance.", + "pos": "adj", + "word_frequency": 4870 + }, + { + "word": "couvert", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered;cloudy", + "example_sentence_native": "Le ciel est couvert aujourd'hui.", + "example_sentence_english": "The sky is cloudy today.", + "pos": "adj", + "word_frequency": 4872 + }, + { + "word": "croisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossed;mixed", + "example_sentence_native": "Il a les bras croisés.", + "example_sentence_english": "He has his arms crossed.", + "pos": "adj", + "word_frequency": 4873 + }, + { + "word": "dépendant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependent", + "example_sentence_native": "Il est dépendant de ses parents.", + "example_sentence_english": "He is dependent on his parents.", + "pos": "adj", + "word_frequency": 4874 + }, + { + "word": "enlèvement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "removal;kidnapping", + "example_sentence_native": "La police enquête sur l'enlèvement.", + "example_sentence_english": "The police are investigating the kidnapping.", + "pos": "noun", + "word_frequency": 4876 + }, + { + "word": "entrevue", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interview;meeting", + "example_sentence_native": "J'ai eu une entrevue avec le directeur.", + "example_sentence_english": "I had an interview with the director.", + "pos": "noun", + "word_frequency": 4877 + }, + { + "word": "evidemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obviously;evidently", + "example_sentence_native": "Évidemment, il a réussi son examen.", + "example_sentence_english": "Obviously, he passed his exam.", + "pos": "adv", + "word_frequency": 4878 + }, + { + "word": "financé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financed", + "example_sentence_native": "Le projet est entièrement financé par des fonds privés.", + "example_sentence_english": "The project is entirely financed by private funds.", + "pos": "adj", + "word_frequency": 4880 + }, + { + "word": "frein", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brake", + "example_sentence_native": "Il a appuyé sur le frein pour s'arrêter.", + "example_sentence_english": "He pressed the brake to stop.", + "pos": "noun", + "word_frequency": 4882 + }, + { + "word": "grammaire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grammar", + "example_sentence_native": "La grammaire française est parfois complexe.", + "example_sentence_english": "French grammar is sometimes complex.", + "pos": "noun", + "word_frequency": 4885 + }, + { + "word": "grenier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic", + "example_sentence_native": "Nous avons trouvé de vieilles photos dans le grenier.", + "example_sentence_english": "We found old photos in the attic.", + "pos": "noun", + "word_frequency": 4886 + }, + { + "word": "guérir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to heal;to cure", + "example_sentence_native": "Le médecin espère que le patient va guérir rapidement.", + "example_sentence_english": "The doctor hopes the patient will heal quickly.", + "pos": "verb", + "word_frequency": 4887 + }, + { + "word": "immigré", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigrant", + "example_sentence_native": "L'immigré a trouvé un nouveau travail dans la ville.", + "example_sentence_english": "The immigrant found a new job in the city.", + "pos": "noun", + "word_frequency": 4889 + }, + { + "word": "imposant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposing;impressive", + "example_sentence_native": "Le bâtiment était très imposant avec ses hautes colonnes.", + "example_sentence_english": "The building was very imposing with its high columns.", + "pos": "adj", + "word_frequency": 4890 + }, + { + "word": "infanterie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infantry", + "example_sentence_native": "L'infanterie a avancé sous le feu ennemi.", + "example_sentence_english": "The infantry advanced under enemy fire.", + "pos": "noun", + "word_frequency": 4891 + }, + { + "word": "injustice", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injustice", + "example_sentence_native": "C'est une grande injustice de ne pas le récompenser.", + "example_sentence_english": "It's a great injustice not to reward him.", + "pos": "noun", + "word_frequency": 4892 + }, + { + "word": "jungle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jungle", + "example_sentence_native": "Les explorateurs se sont aventurés dans la jungle dense.", + "example_sentence_english": "The explorers ventured into the dense jungle.", + "pos": "noun", + "word_frequency": 4894 + }, + { + "word": "kit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kit", + "example_sentence_native": "J'ai acheté un kit de premiers secours pour la voiture.", + "example_sentence_english": "I bought a first-aid kit for the car.", + "pos": "noun", + "word_frequency": 4896 + }, + { + "word": "magistrat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magistrate;judge", + "example_sentence_native": "Le magistrat a rendu son verdict après le procès.", + "example_sentence_english": "The magistrate delivered his verdict after the trial.", + "pos": "noun", + "word_frequency": 4897 + }, + { + "word": "manif", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demo;protest (short for 'manifestation')", + "example_sentence_native": "Il y a une manif prévue demain dans le centre-ville.", + "example_sentence_english": "There's a demo planned tomorrow in the city center.", + "pos": "noun", + "word_frequency": 4898 + }, + { + "word": "manœuvre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maneuver;operation", + "example_sentence_native": "La manœuvre pour garer la voiture était difficile.", + "example_sentence_english": "The maneuver to park the car was difficult.", + "pos": "noun", + "word_frequency": 4899 + }, + { + "word": "marié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "married", + "example_sentence_native": "Ils sont mariés depuis dix ans.", + "example_sentence_english": "They have been married for ten years.", + "pos": "adj", + "word_frequency": 4900 + }, + { + "word": "mentalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentality;mindset", + "example_sentence_native": "Il faut changer la mentalité pour progresser.", + "example_sentence_english": "We need to change the mentality to progress.", + "pos": "noun", + "word_frequency": 4901 + }, + { + "word": "modération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderation", + "example_sentence_native": "Il faut consommer avec modération.", + "example_sentence_english": "One must consume in moderation.", + "pos": "noun", + "word_frequency": 4903 + }, + { + "word": "monopole", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monopoly", + "example_sentence_native": "L'entreprise détient le monopole sur ce marché.", + "example_sentence_english": "The company holds the monopoly in this market.", + "pos": "noun", + "word_frequency": 4904 + }, + { + "word": "mortalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mortality", + "example_sentence_native": "Le taux de mortalité infantile a diminué.", + "example_sentence_english": "The infant mortality rate has decreased.", + "pos": "noun", + "word_frequency": 4905 + }, + { + "word": "mortel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortal;deadly", + "example_sentence_native": "C'est une maladie mortelle si elle n'est pas traitée.", + "example_sentence_english": "It's a deadly disease if not treated.", + "pos": "adj", + "word_frequency": 4906 + }, + { + "word": "motivé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivated", + "example_sentence_native": "Il est très motivé pour réussir son examen.", + "example_sentence_english": "He is very motivated to pass his exam.", + "pos": "adj", + "word_frequency": 4907 + }, + { + "word": "mutuelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutual insurance company (health insurance)", + "example_sentence_native": "J'ai souscrit à une nouvelle mutuelle pour ma santé.", + "example_sentence_english": "I subscribed to a new mutual health insurance for my health.", + "pos": "noun", + "word_frequency": 4908 + }, + { + "word": "métallique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metallic", + "example_sentence_native": "La porte avait une couleur métallique brillante.", + "example_sentence_english": "The door had a shiny metallic color.", + "pos": "adj", + "word_frequency": 4909 + }, + { + "word": "perçu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perceived;collected", + "example_sentence_native": "Le problème est perçu différemment par chacun.", + "example_sentence_english": "The problem is perceived differently by everyone.", + "pos": "adj", + "word_frequency": 4913 + }, + { + "word": "philosophique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophical", + "example_sentence_native": "Il a une approche très philosophique de la vie.", + "example_sentence_english": "He has a very philosophical approach to life.", + "pos": "adj", + "word_frequency": 4914 + }, + { + "word": "proposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proposed;offered", + "example_sentence_native": "La solution proposée n'a pas été acceptée.", + "example_sentence_english": "The proposed solution was not accepted.", + "pos": "adj", + "word_frequency": 4915 + }, + { + "word": "protégé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protected", + "example_sentence_native": "Les espèces rares sont protégées par la loi.", + "example_sentence_english": "Rare species are protected by law.", + "pos": "adj", + "word_frequency": 4916 + }, + { + "word": "préférable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preferable", + "example_sentence_native": "Il est préférable d'arriver tôt pour avoir une bonne place.", + "example_sentence_english": "It is preferable to arrive early to get a good seat.", + "pos": "adj", + "word_frequency": 4917 + }, + { + "word": "puce", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chip (microchip)", + "example_sentence_native": "Le téléphone contient une puce très puissante.", + "example_sentence_english": "The phone contains a very powerful chip.", + "pos": "noun", + "word_frequency": 4918 + }, + { + "word": "regret", + "article_with_word": "le regret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regret", + "example_sentence_native": "Il a exprimé son regret d'avoir manqué la réunion.", + "example_sentence_english": "He expressed his regret for having missed the meeting.", + "pos": "noun", + "word_frequency": 4920 + }, + { + "word": "renverser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to knock over;to spill;to overthrow", + "example_sentence_native": "Il a accidentellement renversé son café sur la table.", + "example_sentence_english": "He accidentally spilled his coffee on the table.", + "pos": "verb", + "word_frequency": 4922 + }, + { + "word": "risquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to risk", + "example_sentence_native": "Ne risquez pas votre santé pour ce travail.", + "example_sentence_english": "Don't risk your health for this job.", + "pos": "verb", + "word_frequency": 4923 + }, + { + "word": "sauvegarde", + "article_with_word": "la sauvegarde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backup;safeguard", + "example_sentence_native": "Faites une sauvegarde de vos données importantes.", + "example_sentence_english": "Make a backup of your important data.", + "pos": "noun", + "word_frequency": 4925 + }, + { + "word": "silencieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silent;quiet", + "example_sentence_native": "Le chat est entré dans la pièce de manière silencieuse.", + "example_sentence_english": "The cat entered the room silently.", + "pos": "adj", + "word_frequency": 4926 + }, + { + "word": "singe", + "article_with_word": "le singe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monkey;ape", + "example_sentence_native": "Le singe mangeait une banane dans l'arbre.", + "example_sentence_english": "The monkey was eating a banana in the tree.", + "pos": "noun", + "word_frequency": 4927 + }, + { + "word": "soumission", + "article_with_word": "la soumission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submission;tender", + "example_sentence_native": "La date limite pour la soumission des propositions est demain.", + "example_sentence_english": "The deadline for the submission of proposals is tomorrow.", + "pos": "noun", + "word_frequency": 4928 + }, + { + "word": "spécifiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifically", + "example_sentence_native": "Il a spécifiquement demandé de ne pas être dérangé.", + "example_sentence_english": "He specifically asked not to be disturbed.", + "pos": "adv", + "word_frequency": 4929 + }, + { + "word": "techniquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technically", + "example_sentence_native": "Techniquement, c'est possible, mais ce sera difficile.", + "example_sentence_english": "Technically, it's possible, but it will be difficult.", + "pos": "adv", + "word_frequency": 4930 + }, + { + "word": "vaccin", + "article_with_word": "le vaccin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaccine", + "example_sentence_native": "Le vaccin contre la grippe est recommandé chaque année.", + "example_sentence_english": "The flu vaccine is recommended every year.", + "pos": "noun", + "word_frequency": 4931 + }, + { + "word": "valence", + "article_with_word": "la valence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valence", + "example_sentence_native": "En chimie, la valence d'un élément détermine sa capacité à se lier.", + "example_sentence_english": "In chemistry, the valence of an element determines its bonding capacity.", + "pos": "noun", + "word_frequency": 4932 + }, + { + "word": "vendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sold", + "example_sentence_native": "Tous les billets pour le concert sont déjà vendus.", + "example_sentence_english": "All tickets for the concert are already sold.", + "pos": "adj", + "word_frequency": 4933 + }, + { + "word": "vulgaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulgar;crude", + "example_sentence_native": "Son langage était très vulgaire et inapproprié.", + "example_sentence_english": "His language was very vulgar and inappropriate.", + "pos": "adj", + "word_frequency": 4934 + }, + { + "word": "économiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to save (money;time)", + "example_sentence_native": "J'essaie d'économiser de l'argent pour mes vacances.", + "example_sentence_english": "I'm trying to save money for my vacation.", + "pos": "verb", + "word_frequency": 4935 + }, + { + "word": "éliminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eliminated", + "example_sentence_native": "L'équipe a été éliminée de la compétition.", + "example_sentence_english": "The team was eliminated from the competition.", + "pos": "adj", + "word_frequency": 4936 + }, + { + "word": "éloigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant;remote", + "example_sentence_native": "Ils vivent dans un village très éloigné de la ville.", + "example_sentence_english": "They live in a village very distant from the city.", + "pos": "adj", + "word_frequency": 4937 + }, + { + "word": "émergence", + "article_with_word": "l'émergence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emergence", + "example_sentence_native": "L'émergence de nouvelles technologies change le monde.", + "example_sentence_english": "The emergence of new technologies is changing the world.", + "pos": "noun", + "word_frequency": 4938 + }, + { + "word": "adressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addressed;directed", + "example_sentence_native": "La lettre était adressée à la directrice.", + "example_sentence_english": "The letter was addressed to the director.", + "pos": "adj", + "word_frequency": 4939 + }, + { + "word": "alimenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feed;to supply;to power", + "example_sentence_native": "Ce câble alimente l'ordinateur en électricité.", + "example_sentence_english": "This cable powers the computer with electricity.", + "pos": "verb", + "word_frequency": 4941 + }, + { + "word": "annoncé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announced", + "example_sentence_native": "Le résultat du match a été annoncé à la radio.", + "example_sentence_english": "The result of the match was announced on the radio.", + "pos": "adj", + "word_frequency": 4943 + }, + { + "word": "apparent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparent;obvious", + "example_sentence_native": "Le problème est devenu apparent après quelques jours.", + "example_sentence_english": "The problem became apparent after a few days.", + "pos": "adj", + "word_frequency": 4944 + }, + { + "word": "attraction", + "article_with_word": "l'attraction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attraction", + "example_sentence_native": "Le parc d'attractions est très populaire en été.", + "example_sentence_english": "The amusement park is very popular in summer.", + "pos": "noun", + "word_frequency": 4945 + }, + { + "word": "avortement", + "article_with_word": "l'avortement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abortion", + "example_sentence_native": "Le débat sur l'avortement est un sujet sensible.", + "example_sentence_english": "The debate on abortion is a sensitive topic.", + "pos": "noun", + "word_frequency": 4947 + }, + { + "word": "banquier", + "article_with_word": "le banquier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banker", + "example_sentence_native": "Mon banquier m'a conseillé sur mes investissements.", + "example_sentence_english": "My banker advised me on my investments.", + "pos": "noun", + "word_frequency": 4948 + }, + { + "word": "cadavre", + "article_with_word": "le cadavre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpse", + "example_sentence_native": "La police a découvert un cadavre dans la forêt.", + "example_sentence_english": "The police discovered a corpse in the forest.", + "pos": "noun", + "word_frequency": 4951 + }, + { + "word": "caractériser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to characterize", + "example_sentence_native": "Cette qualité caractérise bien son travail.", + "example_sentence_english": "This quality characterizes his work well.", + "pos": "verb", + "word_frequency": 4952 + }, + { + "word": "coiffure", + "article_with_word": "la coiffure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairstyle;hairdressing", + "example_sentence_native": "Elle a changé de coiffure pour l'occasion.", + "example_sentence_english": "She changed her hairstyle for the occasion.", + "pos": "noun", + "word_frequency": 4953 + }, + { + "word": "colloque", + "article_with_word": "le colloque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colloquium;conference", + "example_sentence_native": "Un colloque international sur le climat aura lieu la semaine prochaine.", + "example_sentence_english": "An international colloquium on climate will take place next week.", + "pos": "noun", + "word_frequency": 4954 + }, + { + "word": "compensation", + "article_with_word": "la compensation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation", + "example_sentence_native": "Il a reçu une compensation pour les dommages subis.", + "example_sentence_english": "He received compensation for the damages suffered.", + "pos": "noun", + "word_frequency": 4955 + }, + { + "word": "consultant", + "article_with_word": "le consultant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultant", + "example_sentence_native": "L'entreprise a engagé un consultant externe.", + "example_sentence_english": "The company hired an external consultant.", + "pos": "noun", + "word_frequency": 4956 + }, + { + "word": "contraste", + "article_with_word": "le contraste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrast", + "example_sentence_native": "Il y a un fort contraste entre les deux cultures.", + "example_sentence_english": "There is a strong contrast between the two cultures.", + "pos": "noun", + "word_frequency": 4957 + }, + { + "word": "coureur", + "article_with_word": "le coureur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "runner;racer", + "example_sentence_native": "Le coureur a franchi la ligne d'arrivée en premier.", + "example_sentence_english": "The runner crossed the finish line first.", + "pos": "noun", + "word_frequency": 4958 + }, + { + "word": "directive", + "article_with_word": "la directive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directive;instruction", + "example_sentence_native": "La nouvelle directive est claire pour tout le personnel.", + "example_sentence_english": "The new directive is clear for all staff.", + "pos": "noun", + "word_frequency": 4960 + }, + { + "word": "disputer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dispute;to argue;to compete", + "example_sentence_native": "Ils aiment se disputer pour des choses insignifiantes.", + "example_sentence_english": "They like to argue over insignificant things.", + "pos": "verb", + "word_frequency": 4961 + }, + { + "word": "doctorat", + "article_with_word": "le doctorat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctorate;PhD", + "example_sentence_native": "Il a obtenu son doctorat en physique l'année dernière.", + "example_sentence_english": "He obtained his doctorate in physics last year.", + "pos": "noun", + "word_frequency": 4962 + }, + { + "word": "déroulement", + "article_with_word": "le déroulement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progress;unfolding;course", + "example_sentence_native": "Le déroulement de la réunion s'est passé sans problème.", + "example_sentence_english": "The progress of the meeting went smoothly.", + "pos": "noun", + "word_frequency": 4963 + }, + { + "word": "effondrement", + "article_with_word": "l’effondrement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse;downfall", + "example_sentence_native": "L'effondrement du bâtiment a causé de nombreux dégâts.", + "example_sentence_english": "The collapse of the building caused a lot of damage.", + "pos": "noun", + "word_frequency": 4964 + }, + { + "word": "enchère", + "article_with_word": "l’enchère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bid;auction", + "example_sentence_native": "Il a fait une enchère très élevée pour ce tableau.", + "example_sentence_english": "He made a very high bid for this painting.", + "pos": "noun", + "word_frequency": 4965 + }, + { + "word": "ennui", + "article_with_word": "l’ennui", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boredom;annoyance;trouble", + "example_sentence_native": "Je ressens un grand ennui quand je n'ai rien à faire.", + "example_sentence_english": "I feel great boredom when I have nothing to do.", + "pos": "noun", + "word_frequency": 4966 + }, + { + "word": "enterrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bury", + "example_sentence_native": "Ils ont décidé d'enterrer le trésor dans le jardin.", + "example_sentence_english": "They decided to bury the treasure in the garden.", + "pos": "verb", + "word_frequency": 4967 + }, + { + "word": "ete", + "article_with_word": "l’été", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "summer", + "example_sentence_native": "J'adore passer l'été à la plage.", + "example_sentence_english": "I love spending the summer at the beach.", + "pos": "noun", + "word_frequency": 4968 + }, + { + "word": "fini", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "finished;over", + "example_sentence_native": "Le travail est enfin fini.", + "example_sentence_english": "The work is finally finished.", + "pos": "adj", + "word_frequency": 4969 + }, + { + "word": "frite", + "article_with_word": "la frite", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "french fry", + "example_sentence_native": "J'aimerais une portion de frites avec mon hamburger.", + "example_sentence_english": "I would like a portion of french fries with my hamburger.", + "pos": "noun", + "word_frequency": 4970 + }, + { + "word": "gant", + "article_with_word": "le gant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glove", + "example_sentence_native": "J'ai perdu un de mes gants.", + "example_sentence_english": "I lost one of my gloves.", + "pos": "noun", + "word_frequency": 4972 + }, + { + "word": "habit", + "article_with_word": "l’habit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garment;clothes;suit", + "example_sentence_native": "Il a mis son plus bel habit pour la cérémonie.", + "example_sentence_english": "He put on his finest garment for the ceremony.", + "pos": "noun", + "word_frequency": 4978 + }, + { + "word": "hostile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostile", + "example_sentence_native": "L'ambiance était très hostile lors de la réunion.", + "example_sentence_english": "The atmosphere was very hostile during the meeting.", + "pos": "adj", + "word_frequency": 4980 + }, + { + "word": "indicateur", + "article_with_word": "l’indicateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicator;gauge", + "example_sentence_native": "Cet indicateur montre une amélioration de la situation économique.", + "example_sentence_english": "This indicator shows an improvement in the economic situation.", + "pos": "noun", + "word_frequency": 4982 + }, + { + "word": "ingénierie", + "article_with_word": "l’ingénierie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "engineering", + "example_sentence_native": "Elle étudie l'ingénierie à l'université.", + "example_sentence_english": "She studies engineering at the university.", + "pos": "noun", + "word_frequency": 4983 + }, + { + "word": "inscrit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered;enrolled", + "example_sentence_native": "Il est inscrit au club de sport depuis un an.", + "example_sentence_english": "He has been registered at the sports club for a year.", + "pos": "adj", + "word_frequency": 4984 + }, + { + "word": "inédit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprecedented;unpublished;new", + "example_sentence_native": "C'est un événement inédit dans l'histoire de la ville.", + "example_sentence_english": "This is an unprecedented event in the city's history.", + "pos": "adj", + "word_frequency": 4985 + }, + { + "word": "jupe", + "article_with_word": "la jupe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "skirt", + "example_sentence_native": "Elle porte une jolie jupe bleue.", + "example_sentence_english": "She is wearing a pretty blue skirt.", + "pos": "noun", + "word_frequency": 4986 + }, + { + "word": "laser", + "article_with_word": "le laser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laser", + "example_sentence_native": "Le laser est utilisé dans de nombreuses technologies.", + "example_sentence_english": "The laser is used in many technologies.", + "pos": "noun", + "word_frequency": 4987 + }, + { + "word": "mafia", + "article_with_word": "la mafia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mafia", + "example_sentence_native": "La mafia est une organisation criminelle.", + "example_sentence_english": "The mafia is a criminal organization.", + "pos": "noun", + "word_frequency": 4989 + }, + { + "word": "mix", + "article_with_word": "le mix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mix", + "example_sentence_native": "J'ai préparé un bon mix de légumes pour le dîner.", + "example_sentence_english": "I prepared a good mix of vegetables for dinner.", + "pos": "noun", + "word_frequency": 4990 + }, + { + "word": "mutation", + "article_with_word": "la mutation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutation;transfer;change", + "example_sentence_native": "La mutation génétique peut avoir des conséquences importantes.", + "example_sentence_english": "Genetic mutation can have significant consequences.", + "pos": "noun", + "word_frequency": 4991 + }, + { + "word": "notoriété", + "article_with_word": "la notoriété", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notoriety;fame;reputation", + "example_sentence_native": "Son livre lui a apporté une grande notoriété.", + "example_sentence_english": "His book brought him great notoriety.", + "pos": "noun", + "word_frequency": 4992 + }, + { + "word": "observateur", + "article_with_word": "l’observateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observer", + "example_sentence_native": "Un observateur international a été envoyé pour suivre les élections.", + "example_sentence_english": "An international observer was sent to monitor the elections.", + "pos": "noun", + "word_frequency": 4993 + }, + { + "word": "obtention", + "article_with_word": "l’obtention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obtaining;acquisition", + "example_sentence_native": "L'obtention du diplôme est une étape importante.", + "example_sentence_english": "Obtaining the diploma is an important step.", + "pos": "noun", + "word_frequency": 4994 + }, + { + "word": "oral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oral;verbal", + "example_sentence_native": "J'ai un examen oral demain.", + "example_sentence_english": "I have an oral exam tomorrow.", + "pos": "adj", + "word_frequency": 4995 + }, + { + "word": "perfection", + "article_with_word": "la perfection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfection", + "example_sentence_native": "Il cherche toujours la perfection dans son travail.", + "example_sentence_english": "He always seeks perfection in his work.", + "pos": "noun", + "word_frequency": 4997 + }, + { + "word": "plongée", + "article_with_word": "la plongée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dive;diving", + "example_sentence_native": "Nous avons fait de la plongée sous-marine pendant nos vacances.", + "example_sentence_english": "We went scuba diving during our vacation.", + "pos": "noun", + "word_frequency": 4998 + }, + { + "word": "porté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "keen on;inclined", + "example_sentence_native": "Il est très porté sur la musique classique.", + "example_sentence_english": "He is very keen on classical music.", + "pos": "adj", + "word_frequency": 5000 + }, + { + "word": "promener", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to walk;to take for a walk", + "example_sentence_native": "Nous aimons promener notre chien dans le parc.", + "example_sentence_english": "We like to walk our dog in the park.", + "pos": "verb", + "word_frequency": 5001 + }, + { + "word": "prostitution", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitution", + "example_sentence_native": "La prostitution est un sujet complexe et controversé.", + "example_sentence_english": "Prostitution is a complex and controversial subject.", + "pos": "noun", + "word_frequency": 5002 + }, + { + "word": "puer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stink", + "example_sentence_native": "Ces vieilles chaussettes commencent à puer.", + "example_sentence_english": "These old socks are starting to stink.", + "pos": "verb", + "word_frequency": 5003 + }, + { + "word": "rate", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spleen", + "example_sentence_native": "La rate joue un rôle important dans le système immunitaire.", + "example_sentence_english": "The spleen plays an important role in the immune system.", + "pos": "noun", + "word_frequency": 5007 + }, + { + "word": "remplaçant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "substitute", + "example_sentence_native": "Le professeur a un remplaçant pour la semaine.", + "example_sentence_english": "The teacher has a substitute for the week.", + "pos": "noun", + "word_frequency": 5008 + }, + { + "word": "renommée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renown;fame", + "example_sentence_native": "Son talent lui a valu une grande renommée.", + "example_sentence_english": "His talent earned him great renown.", + "pos": "noun", + "word_frequency": 5009 + }, + { + "word": "renseigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inform;to inquire", + "example_sentence_native": "Pouvez-vous me renseigner sur les horaires d'ouverture ?", + "example_sentence_english": "Can you inform me about the opening hours?", + "pos": "verb", + "word_frequency": 5010 + }, + { + "word": "reprocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reproach;to blame", + "example_sentence_native": "Il n'y a rien à lui reprocher.", + "example_sentence_english": "There is nothing to blame him for.", + "pos": "verb", + "word_frequency": 5011 + }, + { + "word": "sculpture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sculpture", + "example_sentence_native": "Cette sculpture est une œuvre d'art moderne.", + "example_sentence_english": "This sculpture is a work of modern art.", + "pos": "noun", + "word_frequency": 5013 + }, + { + "word": "successivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successively", + "example_sentence_native": "Les événements se sont déroulés successivement.", + "example_sentence_english": "The events unfolded successively.", + "pos": "adv", + "word_frequency": 5014 + }, + { + "word": "suffrage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suffrage;vote", + "example_sentence_native": "Le suffrage universel est un droit fondamental.", + "example_sentence_english": "Universal suffrage is a fundamental right.", + "pos": "noun", + "word_frequency": 5015 + }, + { + "word": "tiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tired (looking);drawn", + "example_sentence_native": "Il avait l'air très tiré après une longue journée.", + "example_sentence_english": "He looked very tired after a long day.", + "pos": "adj", + "word_frequency": 5016 + }, + { + "word": "voleur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thief", + "example_sentence_native": "Le voleur s'est enfui avec le sac.", + "example_sentence_english": "The thief ran away with the bag.", + "pos": "noun", + "word_frequency": 5018 + }, + { + "word": "équation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equation", + "example_sentence_native": "Résoudre cette équation est un défi.", + "example_sentence_english": "Solving this equation is a challenge.", + "pos": "noun", + "word_frequency": 5019 + }, + { + "word": "étendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extended;vast", + "example_sentence_native": "Le désert s'étendait sur une vaste étendue.", + "example_sentence_english": "The desert stretched over a vast expanse.", + "pos": "adj", + "word_frequency": 5020 + }, + { + "word": "éternité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternity", + "example_sentence_native": "Il a attendu une éternité pour sa réponse.", + "example_sentence_english": "He waited an eternity for his answer.", + "pos": "noun", + "word_frequency": 5021 + }, + { + "word": "aboutir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lead to;to result in", + "example_sentence_native": "Le projet a abouti à un succès.", + "example_sentence_english": "The project resulted in success.", + "pos": "verb", + "word_frequency": 5022 + }, + { + "word": "accélérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accelerate", + "example_sentence_native": "Il faut accélérer le rythme.", + "example_sentence_english": "We need to accelerate the pace.", + "pos": "verb", + "word_frequency": 5023 + }, + { + "word": "ados", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teens;adolescents", + "example_sentence_native": "Les ados aiment passer du temps ensemble.", + "example_sentence_english": "Teens like to spend time together.", + "pos": "noun", + "word_frequency": 5024 + }, + { + "word": "bagage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luggage;baggage", + "example_sentence_native": "J'ai un seul bagage à main.", + "example_sentence_english": "I have only one carry-on bag.", + "pos": "noun", + "word_frequency": 5026 + }, + { + "word": "bibliographie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bibliography", + "example_sentence_native": "La bibliographie se trouve à la fin du livre.", + "example_sentence_english": "The bibliography is at the end of the book.", + "pos": "noun", + "word_frequency": 5027 + }, + { + "word": "biodiversité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biodiversity", + "example_sentence_native": "La protection de la biodiversité est essentielle.", + "example_sentence_english": "The protection of biodiversity is essential.", + "pos": "noun", + "word_frequency": 5029 + }, + { + "word": "brave", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brave;good;kind", + "example_sentence_native": "C'est un homme très brave.", + "example_sentence_english": "He is a very brave man.", + "pos": "adj", + "word_frequency": 5030 + }, + { + "word": "break", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break;station wagon", + "example_sentence_native": "Faisons une petite pause, un petit break.", + "example_sentence_english": "Let's take a short break.", + "pos": "noun", + "word_frequency": 5031 + }, + { + "word": "circuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to circulate;to move around", + "example_sentence_native": "La circulation est dense, il est difficile de circuler.", + "example_sentence_english": "Traffic is heavy, it's difficult to move around.", + "pos": "verb", + "word_frequency": 5034 + }, + { + "word": "classification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classification", + "example_sentence_native": "La classification des espèces est complexe.", + "example_sentence_english": "The classification of species is complex.", + "pos": "noun", + "word_frequency": 5035 + }, + { + "word": "cochon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pig", + "example_sentence_native": "Le cochon est un animal de ferme.", + "example_sentence_english": "The pig is a farm animal.", + "pos": "noun", + "word_frequency": 5037 + }, + { + "word": "compteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meter;counter", + "example_sentence_native": "Le compteur électrique est dans le garage.", + "example_sentence_english": "The electricity meter is in the garage.", + "pos": "noun", + "word_frequency": 5038 + }, + { + "word": "confirmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmed;experienced", + "example_sentence_native": "C'est un joueur confirmé.", + "example_sentence_english": "He is an experienced player.", + "pos": "adj", + "word_frequency": 5039 + }, + { + "word": "contestation", + "article_with_word": "la contestation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenge;dispute", + "example_sentence_native": "La contestation sociale a pris de l'ampleur.", + "example_sentence_english": "The social dispute gained momentum.", + "pos": "noun", + "word_frequency": 5040 + }, + { + "word": "contradiction", + "article_with_word": "la contradiction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contradiction", + "example_sentence_native": "Il y a une contradiction flagrante dans ses propos.", + "example_sentence_english": "There is a blatant contradiction in his words.", + "pos": "noun", + "word_frequency": 5041 + }, + { + "word": "dark", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark", + "example_sentence_native": "L'ambiance du film était très dark.", + "example_sentence_english": "The atmosphere of the film was very dark.", + "pos": "adj", + "word_frequency": 5042 + }, + { + "word": "diplômé", + "article_with_word": "le diplômé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graduate", + "example_sentence_native": "Le jeune diplômé cherchait son premier emploi.", + "example_sentence_english": "The young graduate was looking for his first job.", + "pos": "noun", + "word_frequency": 5043 + }, + { + "word": "doué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gifted;talented", + "example_sentence_native": "Elle est très douée en musique.", + "example_sentence_english": "She is very gifted in music.", + "pos": "adj", + "word_frequency": 5044 + }, + { + "word": "débattre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to debate;to discuss", + "example_sentence_native": "Ils vont débattre de la nouvelle loi.", + "example_sentence_english": "They are going to debate the new law.", + "pos": "verb", + "word_frequency": 5046 + }, + { + "word": "départemental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "departmental", + "example_sentence_native": "Le conseil départemental a voté le budget.", + "example_sentence_english": "The departmental council voted on the budget.", + "pos": "adj", + "word_frequency": 5047 + }, + { + "word": "détour", + "article_with_word": "le détour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detour;diversion", + "example_sentence_native": "Nous avons dû faire un détour à cause des travaux.", + "example_sentence_english": "We had to make a detour because of the roadworks.", + "pos": "noun", + "word_frequency": 5048 + }, + { + "word": "escalade", + "article_with_word": "l'escalade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climbing;escalation", + "example_sentence_native": "L'escalade est un sport exigeant.", + "example_sentence_english": "Climbing is a demanding sport.", + "pos": "noun", + "word_frequency": 5049 + }, + { + "word": "fondre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to melt", + "example_sentence_native": "La neige commence à fondre.", + "example_sentence_english": "The snow is starting to melt.", + "pos": "verb", + "word_frequency": 5051 + }, + { + "word": "foudre", + "article_with_word": "la foudre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightning;thunderbolt", + "example_sentence_native": "La foudre a frappé l'arbre.", + "example_sentence_english": "Lightning struck the tree.", + "pos": "noun", + "word_frequency": 5052 + }, + { + "word": "fourni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplied;provided;extensive", + "example_sentence_native": "Le rapport est très fourni en détails.", + "example_sentence_english": "The report is very extensive in details.", + "pos": "adj", + "word_frequency": 5053 + }, + { + "word": "fox", + "article_with_word": "le fox", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fox (terrier)", + "example_sentence_native": "Le fox est un chien vif et intelligent.", + "example_sentence_english": "The fox terrier is a lively and intelligent dog.", + "pos": "noun", + "word_frequency": 5054 + }, + { + "word": "gaulois", + "article_with_word": "le Gaulois", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gaul (person from Gaul)", + "example_sentence_native": "Les Gaulois étaient un peuple celte.", + "example_sentence_english": "The Gauls were a Celtic people.", + "pos": "noun", + "word_frequency": 5056 + }, + { + "word": "grippe", + "article_with_word": "la grippe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flu;influenza", + "example_sentence_native": "J'ai attrapé la grippe cette semaine.", + "example_sentence_english": "I caught the flu this week.", + "pos": "noun", + "word_frequency": 5057 + }, + { + "word": "gênant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embarrassing;awkward;bothersome", + "example_sentence_native": "Sa question était un peu gênante.", + "example_sentence_english": "His question was a bit embarrassing.", + "pos": "adj", + "word_frequency": 5058 + }, + { + "word": "hd", + "article_with_word": "la HD", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "HD (High Definition)", + "example_sentence_native": "Regardons ce film en HD.", + "example_sentence_english": "Let's watch this movie in HD.", + "pos": "noun", + "word_frequency": 5060 + }, + { + "word": "horloge", + "article_with_word": "l'horloge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clock", + "example_sentence_native": "L'horloge murale indique midi.", + "example_sentence_english": "The wall clock shows noon.", + "pos": "noun", + "word_frequency": 5062 + }, + { + "word": "inauguration", + "article_with_word": "l'inauguration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inauguration;opening", + "example_sentence_native": "L'inauguration du nouveau musée aura lieu demain.", + "example_sentence_english": "The inauguration of the new museum will take place tomorrow.", + "pos": "noun", + "word_frequency": 5063 + }, + { + "word": "indication", + "article_with_word": "l'indication", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indication;sign;direction", + "example_sentence_native": "Suivez les indications pour trouver la sortie.", + "example_sentence_english": "Follow the directions to find the exit.", + "pos": "noun", + "word_frequency": 5064 + }, + { + "word": "interdit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forbidden;prohibited", + "example_sentence_native": "Le stationnement est interdit ici.", + "example_sentence_english": "Parking is forbidden here.", + "pos": "adj", + "word_frequency": 5065 + }, + { + "word": "inévitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inevitable;unavoidable", + "example_sentence_native": "Le changement est inévitable.", + "example_sentence_english": "Change is inevitable.", + "pos": "adj", + "word_frequency": 5066 + }, + { + "word": "israélien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Israeli", + "example_sentence_native": "C'est un artiste israélien.", + "example_sentence_english": "He is an Israeli artist.", + "pos": "adj", + "word_frequency": 5067 + }, + { + "word": "itinéraire", + "article_with_word": "l'itinéraire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "itinerary;route", + "example_sentence_native": "Nous avons planifié notre itinéraire de voyage.", + "example_sentence_english": "We planned our travel itinerary.", + "pos": "noun", + "word_frequency": 5068 + }, + { + "word": "lier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to link;to bind;to tie", + "example_sentence_native": "Il faut lier ces deux idées.", + "example_sentence_english": "These two ideas must be linked.", + "pos": "verb", + "word_frequency": 5071 + }, + { + "word": "maudit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cursed;damned", + "example_sentence_native": "C'est un maudit problème.", + "example_sentence_english": "It's a cursed problem.", + "pos": "adj", + "word_frequency": 5076 + }, + { + "word": "mercure", + "article_with_word": "le mercure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mercury", + "example_sentence_native": "Le mercure est un métal liquide.", + "example_sentence_english": "Mercury is a liquid metal.", + "pos": "noun", + "word_frequency": 5077 + }, + { + "word": "mythique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythical;legendary", + "example_sentence_native": "C'est un lieu mythique pour les artistes.", + "example_sentence_english": "It's a mythical place for artists.", + "pos": "adj", + "word_frequency": 5078 + }, + { + "word": "mêler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix;to blend;to involve", + "example_sentence_native": "Il ne faut pas mêler les affaires personnelles et professionnelles.", + "example_sentence_english": "One should not mix personal and professional matters.", + "pos": "verb", + "word_frequency": 5079 + }, + { + "word": "nationaliste", + "article_with_word": "un nationaliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationalist", + "example_sentence_native": "Il est un nationaliste convaincu.", + "example_sentence_english": "He is a convinced nationalist.", + "pos": "noun", + "word_frequency": 5080 + }, + { + "word": "neutralité", + "article_with_word": "la neutralité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutrality", + "example_sentence_native": "La Suisse est connue pour sa neutralité.", + "example_sentence_english": "Switzerland is known for its neutrality.", + "pos": "noun", + "word_frequency": 5081 + }, + { + "word": "neuvième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ninth", + "example_sentence_native": "C'est la neuvième fois que je le vois.", + "example_sentence_english": "This is the ninth time I've seen him.", + "pos": "num", + "word_frequency": 5082 + }, + { + "word": "nid", + "article_with_word": "le nid", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nest", + "example_sentence_native": "L'oiseau a construit son nid dans l'arbre.", + "example_sentence_english": "The bird built its nest in the tree.", + "pos": "noun", + "word_frequency": 5083 + }, + { + "word": "notaire", + "article_with_word": "le notaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notary", + "example_sentence_native": "Nous avons rendez-vous chez le notaire pour signer les papiers.", + "example_sentence_english": "We have an appointment with the notary to sign the papers.", + "pos": "noun", + "word_frequency": 5084 + }, + { + "word": "originalité", + "article_with_word": "l'originalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originality", + "example_sentence_native": "Son œuvre manque d'originalité.", + "example_sentence_english": "His work lacks originality.", + "pos": "noun", + "word_frequency": 5085 + }, + { + "word": "parcourir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to travel through;to browse", + "example_sentence_native": "J'aime parcourir les sentiers de montagne.", + "example_sentence_english": "I like to travel through mountain trails.", + "pos": "verb", + "word_frequency": 5086 + }, + { + "word": "pelouse", + "article_with_word": "la pelouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lawn;grass", + "example_sentence_native": "Ne marchez pas sur la pelouse.", + "example_sentence_english": "Do not walk on the grass.", + "pos": "noun", + "word_frequency": 5087 + }, + { + "word": "placard", + "article_with_word": "le placard", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cupboard;closet", + "example_sentence_native": "Range tes vêtements dans le placard.", + "example_sentence_english": "Put your clothes in the closet.", + "pos": "noun", + "word_frequency": 5088 + }, + { + "word": "progressif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive", + "example_sentence_native": "Il y a eu une amélioration progressive de la situation.", + "example_sentence_english": "There has been a progressive improvement in the situation.", + "pos": "adj", + "word_frequency": 5089 + }, + { + "word": "préjudice", + "article_with_word": "le préjudice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harm;damage;prejudice", + "example_sentence_native": "Il a subi un grave préjudice moral.", + "example_sentence_english": "He suffered serious moral harm.", + "pos": "noun", + "word_frequency": 5090 + }, + { + "word": "publicitaire", + "article_with_word": "le publicitaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advertiser;advertising agent", + "example_sentence_native": "Le publicitaire a créé une nouvelle campagne.", + "example_sentence_english": "The advertiser created a new campaign.", + "pos": "noun", + "word_frequency": 5091 + }, + { + "word": "punir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to punish", + "example_sentence_native": "Les parents doivent parfois punir leurs enfants.", + "example_sentence_english": "Parents sometimes have to punish their children.", + "pos": "verb", + "word_frequency": 5092 + }, + { + "word": "radar", + "article_with_word": "le radar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radar", + "example_sentence_native": "Le radar a détecté un objet non identifié.", + "example_sentence_english": "The radar detected an unidentified object.", + "pos": "noun", + "word_frequency": 5093 + }, + { + "word": "représenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "represented", + "example_sentence_native": "Chaque groupe est représenté au conseil.", + "example_sentence_english": "Each group is represented on the council.", + "pos": "adj", + "word_frequency": 5094 + }, + { + "word": "retraité", + "article_with_word": "le retraité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retiree;pensioner", + "example_sentence_native": "Mon grand-père est un retraité heureux.", + "example_sentence_english": "My grandfather is a happy retiree.", + "pos": "noun", + "word_frequency": 5095 + }, + { + "word": "reçu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "received;accepted", + "example_sentence_native": "Le colis a été reçu hier.", + "example_sentence_english": "The package was received yesterday.", + "pos": "adj", + "word_frequency": 5096 + }, + { + "word": "rébellion", + "article_with_word": "la rébellion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellion", + "example_sentence_native": "La rébellion a éclaté dans la capitale.", + "example_sentence_english": "The rebellion broke out in the capital.", + "pos": "noun", + "word_frequency": 5097 + }, + { + "word": "rédacteur", + "article_with_word": "le rédacteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor;writer", + "example_sentence_native": "Le rédacteur a corrigé l'article.", + "example_sentence_english": "The editor corrected the article.", + "pos": "noun", + "word_frequency": 5098 + }, + { + "word": "simultanément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneously", + "example_sentence_native": "Ils ont parlé simultanément.", + "example_sentence_english": "They spoke simultaneously.", + "pos": "adv", + "word_frequency": 5099 + }, + { + "word": "slogan", + "article_with_word": "le slogan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan", + "example_sentence_native": "Le nouveau slogan publicitaire est très accrocheur.", + "example_sentence_english": "The new advertising slogan is very catchy.", + "pos": "noun", + "word_frequency": 5100 + }, + { + "word": "sonde", + "article_with_word": "la sonde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probe;sound", + "example_sentence_native": "La sonde spatiale a envoyé des données.", + "example_sentence_english": "The space probe sent data.", + "pos": "noun", + "word_frequency": 5101 + }, + { + "word": "talon", + "article_with_word": "le talon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heel", + "example_sentence_native": "Elle a cassé le talon de sa chaussure.", + "example_sentence_english": "She broke the heel of her shoe.", + "pos": "noun", + "word_frequency": 5102 + }, + { + "word": "tasse", + "article_with_word": "la tasse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cup", + "example_sentence_native": "Je voudrais une tasse de café.", + "example_sentence_english": "I would like a cup of coffee.", + "pos": "noun", + "word_frequency": 5103 + }, + { + "word": "tigre", + "article_with_word": "le tigre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiger", + "example_sentence_native": "Le tigre est un animal majestueux.", + "example_sentence_english": "The tiger is a majestic animal.", + "pos": "noun", + "word_frequency": 5104 + }, + { + "word": "touche", + "article_with_word": "la touche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "key (keyboard);touch;sideline (sports)", + "example_sentence_native": "Appuyez sur la touche Entrée.", + "example_sentence_english": "Press the Enter key.", + "pos": "noun", + "word_frequency": 5105 + }, + { + "word": "ténèbre", + "article_with_word": "les ténèbres", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "darkness;shadows", + "example_sentence_native": "Les ténèbres ont envahi la pièce.", + "example_sentence_english": "Darkness invaded the room.", + "pos": "noun", + "word_frequency": 5106 + }, + { + "word": "violemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violently", + "example_sentence_native": "Le vent soufflait violemment.", + "example_sentence_english": "The wind blew violently.", + "pos": "adv", + "word_frequency": 5107 + }, + { + "word": "violer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to violate;to rape", + "example_sentence_native": "Il ne faut pas violer les règles.", + "example_sentence_english": "One must not violate the rules.", + "pos": "verb", + "word_frequency": 5108 + }, + { + "word": "violet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "purple;violet", + "example_sentence_native": "J'aime la couleur violette.", + "example_sentence_english": "I like the color purple.", + "pos": "adj", + "word_frequency": 5109 + }, + { + "word": "virage", + "article_with_word": "le virage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turn;bend;corner", + "example_sentence_native": "Prenez le prochain virage à droite.", + "example_sentence_english": "Take the next turn on the right.", + "pos": "noun", + "word_frequency": 5110 + }, + { + "word": "écraser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crush;to run over", + "example_sentence_native": "Il a écrasé une araignée.", + "example_sentence_english": "He crushed a spider.", + "pos": "verb", + "word_frequency": 5111 + }, + { + "word": "éditer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to edit;to publish", + "example_sentence_native": "L'éditeur va éditer son nouveau livre.", + "example_sentence_english": "The publisher will publish his new book.", + "pos": "verb", + "word_frequency": 5112 + }, + { + "word": "abeille", + "article_with_word": "l'abeille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bee", + "example_sentence_native": "L'abeille butine les fleurs.", + "example_sentence_english": "The bee forages on the flowers.", + "pos": "noun", + "word_frequency": 5113 + }, + { + "word": "abolition", + "article_with_word": "l'abolition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abolition", + "example_sentence_native": "L'abolition de l'esclavage a été un grand pas.", + "example_sentence_english": "The abolition of slavery was a big step.", + "pos": "noun", + "word_frequency": 5114 + }, + { + "word": "admirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admire", + "example_sentence_native": "J'admire son courage.", + "example_sentence_english": "I admire his courage.", + "pos": "verb", + "word_frequency": 5115 + }, + { + "word": "affecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affect;to assign", + "example_sentence_native": "Le changement climatique affecte notre planète.", + "example_sentence_english": "Climate change affects our planet.", + "pos": "verb", + "word_frequency": 5116 + }, + { + "word": "aiguille", + "article_with_word": "l'aiguille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "needle;hand (of a clock)", + "example_sentence_native": "L'aiguille de l'horloge avance.", + "example_sentence_english": "The hand of the clock is moving forward.", + "pos": "noun", + "word_frequency": 5117 + }, + { + "word": "ajout", + "article_with_word": "l'ajout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addition;supplement", + "example_sentence_native": "C'est un ajout important au document.", + "example_sentence_english": "This is an important addition to the document.", + "pos": "noun", + "word_frequency": 5118 + }, + { + "word": "attribuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attribute;to assign", + "example_sentence_native": "On lui a attribué le prix.", + "example_sentence_english": "He was awarded the prize.", + "pos": "verb", + "word_frequency": 5119 + }, + { + "word": "auberge", + "article_with_word": "l'auberge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inn", + "example_sentence_native": "Nous avons passé la nuit dans une charmante auberge.", + "example_sentence_english": "We spent the night in a charming inn.", + "pos": "noun", + "word_frequency": 5120 + }, + { + "word": "australien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Australian", + "example_sentence_native": "Il a rencontré une femme australienne pendant ses vacances.", + "example_sentence_english": "He met an Australian woman during his vacation.", + "pos": "adj", + "word_frequency": 5121 + }, + { + "word": "boue", + "article_with_word": "la boue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mud", + "example_sentence_native": "Après la pluie, le chemin était plein de boue.", + "example_sentence_english": "After the rain, the path was full of mud.", + "pos": "noun", + "word_frequency": 5122 + }, + { + "word": "brute", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raw;crude;brutal", + "example_sentence_native": "Il a une force brute impressionnante.", + "example_sentence_english": "He has impressive brute strength.", + "pos": "adj", + "word_frequency": 5123 + }, + { + "word": "call", + "article_with_word": "le call", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "call (phone;meeting)", + "example_sentence_native": "J'ai un call avec l'équipe à 10h.", + "example_sentence_english": "I have a call with the team at 10 AM.", + "pos": "noun", + "word_frequency": 5125 + }, + { + "word": "ciné", + "article_with_word": "le ciné", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cinema;movies (colloquial)", + "example_sentence_native": "On va au ciné ce soir ?", + "example_sentence_english": "Shall we go to the movies tonight?", + "pos": "noun", + "word_frequency": 5127 + }, + { + "word": "claque", + "article_with_word": "la claque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slap;ovation", + "example_sentence_native": "Il a reçu une claque sur la joue.", + "example_sentence_english": "He received a slap on the cheek.", + "pos": "noun", + "word_frequency": 5128 + }, + { + "word": "configuration", + "article_with_word": "la configuration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "configuration", + "example_sentence_native": "La configuration du système est complexe.", + "example_sentence_english": "The system configuration is complex.", + "pos": "noun", + "word_frequency": 5131 + }, + { + "word": "cuire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cook;to bake", + "example_sentence_native": "Il faut cuire le gâteau pendant 30 minutes.", + "example_sentence_english": "You need to bake the cake for 30 minutes.", + "pos": "verb", + "word_frequency": 5132 + }, + { + "word": "célébration", + "article_with_word": "la célébration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebration", + "example_sentence_native": "La célébration de leur mariage était magnifique.", + "example_sentence_english": "Their wedding celebration was beautiful.", + "pos": "noun", + "word_frequency": 5133 + }, + { + "word": "discrétion", + "article_with_word": "la discrétion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discretion", + "example_sentence_native": "Il a agi avec beaucoup de discrétion.", + "example_sentence_english": "He acted with great discretion.", + "pos": "noun", + "word_frequency": 5134 + }, + { + "word": "disparu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappeared;missing", + "example_sentence_native": "L'objet disparu a été retrouvé.", + "example_sentence_english": "The missing object has been found.", + "pos": "adj", + "word_frequency": 5135 + }, + { + "word": "distributeur", + "article_with_word": "le distributeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dispenser;distributor;ATM", + "example_sentence_native": "J'ai retiré de l'argent au distributeur automatique.", + "example_sentence_english": "I withdrew money from the ATM.", + "pos": "noun", + "word_frequency": 5136 + }, + { + "word": "défini", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defined;definite", + "example_sentence_native": "Les objectifs sont clairement définis.", + "example_sentence_english": "The objectives are clearly defined.", + "pos": "adj", + "word_frequency": 5137 + }, + { + "word": "ecouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to listen", + "example_sentence_native": "J'aime écouter de la musique.", + "example_sentence_english": "I like to listen to music.", + "pos": "verb", + "word_frequency": 5138 + }, + { + "word": "emmerder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annoy;to piss off", + "example_sentence_native": "Arrête de m'emmerder avec tes questions !", + "example_sentence_english": "Stop annoying me with your questions!", + "pos": "verb", + "word_frequency": 5139 + }, + { + "word": "entourer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surround", + "example_sentence_native": "Les arbres entourent la maison.", + "example_sentence_english": "The trees surround the house.", + "pos": "verb", + "word_frequency": 5140 + }, + { + "word": "ep", + "article_with_word": "l'EP", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "EP (Extended Play)", + "example_sentence_native": "Son nouvel EP sortira le mois prochain.", + "example_sentence_english": "His new EP will be released next month.", + "pos": "noun", + "word_frequency": 5141 + }, + { + "word": "ethnique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethnic", + "example_sentence_native": "La diversité ethnique est une richesse.", + "example_sentence_english": "Ethnic diversity is a richness.", + "pos": "adj", + "word_frequency": 5142 + }, + { + "word": "filmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to film", + "example_sentence_native": "Il aime filmer des documentaires.", + "example_sentence_english": "He likes to film documentaries.", + "pos": "verb", + "word_frequency": 5143 + }, + { + "word": "fosse", + "article_with_word": "la fosse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pit;trench;grave", + "example_sentence_native": "Ils ont creusé une fosse pour planter l'arbre.", + "example_sentence_english": "They dug a pit to plant the tree.", + "pos": "noun", + "word_frequency": 5144 + }, + { + "word": "grenade", + "article_with_word": "la grenade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pomegranate;grenade", + "example_sentence_native": "J'ai mangé une grenade juteuse.", + "example_sentence_english": "I ate a juicy pomegranate.", + "pos": "noun", + "word_frequency": 5146 + }, + { + "word": "homosexualité", + "article_with_word": "l'homosexualité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homosexuality", + "example_sentence_native": "L'homosexualité est reconnue dans de nombreux pays.", + "example_sentence_english": "Homosexuality is recognized in many countries.", + "pos": "noun", + "word_frequency": 5148 + }, + { + "word": "humanitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanitarian", + "example_sentence_native": "Il travaille dans l'aide humanitaire.", + "example_sentence_english": "He works in humanitarian aid.", + "pos": "adj", + "word_frequency": 5149 + }, + { + "word": "humble", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humble", + "example_sentence_native": "Malgré son succès, il est resté humble.", + "example_sentence_english": "Despite his success, he remained humble.", + "pos": "adj", + "word_frequency": 5150 + }, + { + "word": "imposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposed;mandatory", + "example_sentence_native": "C'est un choix imposé par la situation.", + "example_sentence_english": "It's a choice imposed by the situation.", + "pos": "adj", + "word_frequency": 5152 + }, + { + "word": "inquiet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worried;anxious", + "example_sentence_native": "Elle est inquiète pour son examen.", + "example_sentence_english": "She is worried about her exam.", + "pos": "adj", + "word_frequency": 5153 + }, + { + "word": "inspiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspired", + "example_sentence_native": "Son discours était très inspiré.", + "example_sentence_english": "His speech was very inspired.", + "pos": "adj", + "word_frequency": 5154 + }, + { + "word": "interface", + "article_with_word": "l'interface", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interface", + "example_sentence_native": "L'interface utilisateur est très intuitive.", + "example_sentence_english": "The user interface is very intuitive.", + "pos": "noun", + "word_frequency": 5155 + }, + { + "word": "intitulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entitled;named", + "example_sentence_native": "L'article est intitulé \"La vie moderne\".", + "example_sentence_english": "The article is entitled \"Modern Life\".", + "pos": "adj", + "word_frequency": 5156 + }, + { + "word": "littoral", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coastline", + "example_sentence_native": "Le littoral français est très diversifié.", + "example_sentence_english": "The French coastline is very diverse.", + "pos": "noun", + "word_frequency": 5160 + }, + { + "word": "meeting", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meeting", + "example_sentence_native": "Nous avons un meeting important demain.", + "example_sentence_english": "We have an important meeting tomorrow.", + "pos": "noun", + "word_frequency": 5162 + }, + { + "word": "mouche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fly (insect)", + "example_sentence_native": "Une mouche s'est posée sur mon bras.", + "example_sentence_english": "A fly landed on my arm.", + "pos": "noun", + "word_frequency": 5164 + }, + { + "word": "online", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "online", + "example_sentence_native": "J'achète souvent des livres online.", + "example_sentence_english": "I often buy books online.", + "pos": "adv", + "word_frequency": 5170 + }, + { + "word": "orbite", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orbit", + "example_sentence_native": "La Lune est en orbite autour de la Terre.", + "example_sentence_english": "The Moon is in orbit around the Earth.", + "pos": "noun", + "word_frequency": 5171 + }, + { + "word": "particularité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particularity;specific feature", + "example_sentence_native": "Chaque région a ses propres particularités culturelles.", + "example_sentence_english": "Each region has its own cultural particularities.", + "pos": "noun", + "word_frequency": 5172 + }, + { + "word": "pathétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pathetic", + "example_sentence_native": "Son excuse était vraiment pathétique.", + "example_sentence_english": "His excuse was truly pathetic.", + "pos": "adjective", + "word_frequency": 5173 + }, + { + "word": "pere", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father", + "example_sentence_native": "Mon père travaille beaucoup.", + "example_sentence_english": "My father works a lot.", + "pos": "noun", + "word_frequency": 5174 + }, + { + "word": "pipe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pipe", + "example_sentence_native": "Il fumait sa pipe tranquillement.", + "example_sentence_english": "He was quietly smoking his pipe.", + "pos": "noun", + "word_frequency": 5176 + }, + { + "word": "planter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plant;to stick", + "example_sentence_native": "Nous allons planter des fleurs dans le jardin.", + "example_sentence_english": "We are going to plant flowers in the garden.", + "pos": "verb", + "word_frequency": 5177 + }, + { + "word": "politiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "politically", + "example_sentence_native": "C'est une décision politiquement difficile.", + "example_sentence_english": "It's a politically difficult decision.", + "pos": "adverb", + "word_frequency": 5178 + }, + { + "word": "prolonger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to extend;to prolong", + "example_sentence_native": "Nous devons prolonger notre séjour.", + "example_sentence_english": "We need to extend our stay.", + "pos": "verb", + "word_frequency": 5180 + }, + { + "word": "préface", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preface", + "example_sentence_native": "J'ai lu la préface du livre avant de commencer.", + "example_sentence_english": "I read the preface of the book before starting.", + "pos": "noun", + "word_frequency": 5181 + }, + { + "word": "péninsule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peninsula", + "example_sentence_native": "La péninsule Ibérique est située au sud-ouest de l'Europe.", + "example_sentence_english": "The Iberian Peninsula is located in southwestern Europe.", + "pos": "noun", + "word_frequency": 5182 + }, + { + "word": "pénétrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penetrate;to enter", + "example_sentence_native": "La lumière pénètre à travers la fenêtre.", + "example_sentence_english": "The light penetrates through the window.", + "pos": "verb", + "word_frequency": 5183 + }, + { + "word": "rat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rat", + "example_sentence_native": "Un rat s'est échappé de la cage.", + "example_sentence_english": "A rat escaped from the cage.", + "pos": "noun", + "word_frequency": 5184 + }, + { + "word": "rayonnement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiation;influence;glow", + "example_sentence_native": "Le rayonnement solaire est essentiel à la vie.", + "example_sentence_english": "Solar radiation is essential for life.", + "pos": "noun", + "word_frequency": 5185 + }, + { + "word": "refléter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reflect", + "example_sentence_native": "L'eau reflète le ciel bleu.", + "example_sentence_english": "The water reflects the blue sky.", + "pos": "verb", + "word_frequency": 5186 + }, + { + "word": "retrouvé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "found;rediscovered", + "example_sentence_native": "Le trésor retrouvé a fait la une des journaux.", + "example_sentence_english": "The rediscovered treasure made headlines.", + "pos": "adjective", + "word_frequency": 5187 + }, + { + "word": "risqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risky", + "example_sentence_native": "C'est une opération très risquée.", + "example_sentence_english": "It's a very risky operation.", + "pos": "adjective", + "word_frequency": 5188 + }, + { + "word": "rituel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ritual", + "example_sentence_native": "Le thé est un rituel quotidien pour beaucoup de gens.", + "example_sentence_english": "Tea is a daily ritual for many people.", + "pos": "noun", + "word_frequency": 5189 + }, + { + "word": "réfléchi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoughtful;reflective", + "example_sentence_native": "C'est une personne très réfléchie.", + "example_sentence_english": "She is a very thoughtful person.", + "pos": "adjective", + "word_frequency": 5190 + }, + { + "word": "sentier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;trail", + "example_sentence_native": "Nous avons suivi un petit sentier dans la forêt.", + "example_sentence_english": "We followed a small path in the forest.", + "pos": "noun", + "word_frequency": 5191 + }, + { + "word": "supplément", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supplement;extra", + "example_sentence_native": "Il y a un supplément pour la livraison rapide.", + "example_sentence_english": "There is an extra charge for express delivery.", + "pos": "noun", + "word_frequency": 5193 + }, + { + "word": "survivant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survivor", + "example_sentence_native": "Il est le seul survivant de l'accident.", + "example_sentence_english": "He is the only survivor of the accident.", + "pos": "noun", + "word_frequency": 5194 + }, + { + "word": "tarte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tart;pie", + "example_sentence_native": "J'ai préparé une tarte aux pommes.", + "example_sentence_english": "I made an apple pie.", + "pos": "noun", + "word_frequency": 5195 + }, + { + "word": "thérapie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "therapy", + "example_sentence_native": "Elle suit une thérapie pour gérer son stress.", + "example_sentence_english": "She is undergoing therapy to manage her stress.", + "pos": "noun", + "word_frequency": 5197 + }, + { + "word": "traîner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drag;to hang around;to linger", + "example_sentence_native": "Il aime traîner au lit le dimanche matin.", + "example_sentence_english": "He likes to linger in bed on Sunday mornings.", + "pos": "verb", + "word_frequency": 5198 + }, + { + "word": "triangle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "triangle", + "example_sentence_native": "Un triangle a trois côtés.", + "example_sentence_english": "A triangle has three sides.", + "pos": "noun", + "word_frequency": 5199 + }, + { + "word": "équitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;equitable", + "example_sentence_native": "Nous voulons une solution équitable pour tout le monde.", + "example_sentence_english": "We want a fair solution for everyone.", + "pos": "adjective", + "word_frequency": 5203 + }, + { + "word": "éventuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possible;eventual", + "example_sentence_native": "Il faut considérer les conséquences éventuelles.", + "example_sentence_english": "We must consider the possible consequences.", + "pos": "adjective", + "word_frequency": 5204 + }, + { + "word": "aimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "loved;liked", + "example_sentence_native": "C'est un livre très aimé des enfants.", + "example_sentence_english": "It's a book much loved by children.", + "pos": "adjective", + "word_frequency": 5205 + }, + { + "word": "bagarre", + "article_with_word": "la bagarre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fight;brawl", + "example_sentence_native": "Il y a eu une bagarre devant le bar.", + "example_sentence_english": "There was a fight in front of the bar.", + "pos": "noun", + "word_frequency": 5208 + }, + { + "word": "bataillon", + "article_with_word": "le bataillon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battalion", + "example_sentence_native": "Le bataillon a été déployé sur le terrain.", + "example_sentence_english": "The battalion was deployed in the field.", + "pos": "noun", + "word_frequency": 5209 + }, + { + "word": "bouquet", + "article_with_word": "le bouquet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bouquet", + "example_sentence_native": "Il a offert un beau bouquet de fleurs.", + "example_sentence_english": "He offered a beautiful bouquet of flowers.", + "pos": "noun", + "word_frequency": 5211 + }, + { + "word": "budgétaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "budgetary", + "example_sentence_native": "Nous devons respecter les contraintes budgétaires.", + "example_sentence_english": "We must respect the budgetary constraints.", + "pos": "adjective", + "word_frequency": 5212 + }, + { + "word": "cession", + "article_with_word": "la cession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfer;cession", + "example_sentence_native": "La cession des parts a été finalisée hier.", + "example_sentence_english": "The transfer of shares was finalized yesterday.", + "pos": "noun", + "word_frequency": 5215 + }, + { + "word": "coincé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stuck;trapped", + "example_sentence_native": "Je suis coincé dans les embouteillages.", + "example_sentence_english": "I am stuck in traffic.", + "pos": "adjective", + "word_frequency": 5216 + }, + { + "word": "comédien", + "article_with_word": "le comédien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actor;comedian", + "example_sentence_native": "Ce comédien est très talentueux.", + "example_sentence_english": "This actor is very talented.", + "pos": "noun", + "word_frequency": 5217 + }, + { + "word": "concerné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concerned;affected", + "example_sentence_native": "Toutes les personnes concernées ont été informées.", + "example_sentence_english": "All concerned people have been informed.", + "pos": "adjective", + "word_frequency": 5218 + }, + { + "word": "confié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrusted;confided", + "example_sentence_native": "La tâche lui a été confiée.", + "example_sentence_english": "The task was entrusted to him.", + "pos": "adjective", + "word_frequency": 5219 + }, + { + "word": "coude", + "article_with_word": "le coude", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elbow", + "example_sentence_native": "Il s'est cogné le coude contre la table.", + "example_sentence_english": "He hit his elbow on the table.", + "pos": "noun", + "word_frequency": 5220 + }, + { + "word": "couture", + "article_with_word": "la couture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sewing;seam", + "example_sentence_native": "Elle aime faire de la couture pendant son temps libre.", + "example_sentence_english": "She likes to do sewing in her free time.", + "pos": "noun", + "word_frequency": 5221 + }, + { + "word": "critiqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criticized", + "example_sentence_native": "Son travail a été très critiqué.", + "example_sentence_english": "His work was heavily criticized.", + "pos": "adjective", + "word_frequency": 5222 + }, + { + "word": "cuisiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cook", + "example_sentence_native": "J'aime cuisiner des plats italiens.", + "example_sentence_english": "I like to cook Italian dishes.", + "pos": "verb", + "word_frequency": 5223 + }, + { + "word": "demeurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remain;to dwell", + "example_sentence_native": "Il demeure optimiste malgré les difficultés.", + "example_sentence_english": "He remains optimistic despite the difficulties.", + "pos": "verb", + "word_frequency": 5224 + }, + { + "word": "dense", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dense", + "example_sentence_native": "La forêt est très dense à cet endroit.", + "example_sentence_english": "The forest is very dense at this spot.", + "pos": "adjective", + "word_frequency": 5225 + }, + { + "word": "descendant", + "article_with_word": "le descendant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descendant", + "example_sentence_native": "Il est un descendant direct du roi.", + "example_sentence_english": "He is a direct descendant of the king.", + "pos": "noun", + "word_frequency": 5226 + }, + { + "word": "diplomatie", + "article_with_word": "la diplomatie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomacy", + "example_sentence_native": "La diplomatie est essentielle pour résoudre les conflits.", + "example_sentence_english": "Diplomacy is essential for resolving conflicts.", + "pos": "noun", + "word_frequency": 5227 + }, + { + "word": "déesse", + "article_with_word": "la déesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goddess", + "example_sentence_native": "Athéna était la déesse de la sagesse.", + "example_sentence_english": "Athena was the goddess of wisdom.", + "pos": "noun", + "word_frequency": 5228 + }, + { + "word": "déménager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move (house)", + "example_sentence_native": "Nous allons déménager le mois prochain.", + "example_sentence_english": "We are going to move next month.", + "pos": "verb", + "word_frequency": 5229 + }, + { + "word": "déplacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "displaced;inappropriate", + "example_sentence_native": "Son commentaire était totalement déplacé.", + "example_sentence_english": "His comment was totally inappropriate.", + "pos": "adjective", + "word_frequency": 5230 + }, + { + "word": "désastre", + "article_with_word": "le désastre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disaster", + "example_sentence_native": "L'inondation a causé un véritable désastre.", + "example_sentence_english": "The flood caused a real disaster.", + "pos": "noun", + "word_frequency": 5231 + }, + { + "word": "désespoir", + "article_with_word": "le désespoir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despair", + "example_sentence_native": "Il était rempli de désespoir après la nouvelle.", + "example_sentence_english": "He was filled with despair after the news.", + "pos": "noun", + "word_frequency": 5232 + }, + { + "word": "détente", + "article_with_word": "la détente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relaxation;détente", + "example_sentence_native": "La détente est importante après une longue journée de travail.", + "example_sentence_english": "Relaxation is important after a long day of work.", + "pos": "noun", + "word_frequency": 5233 + }, + { + "word": "déterminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "determined", + "example_sentence_native": "Elle est très déterminée à réussir.", + "example_sentence_english": "She is very determined to succeed.", + "pos": "adjective", + "word_frequency": 5234 + }, + { + "word": "homosexuel", + "article_with_word": "un homosexuel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homosexual (person)", + "example_sentence_native": "Il est un homosexuel assumé.", + "example_sentence_english": "He is an openly homosexual man.", + "pos": "noun", + "word_frequency": 5238 + }, + { + "word": "impasse", + "article_with_word": "l'impasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dead end;stalemate", + "example_sentence_native": "Les négociations sont dans une impasse.", + "example_sentence_english": "The negotiations are at a dead end.", + "pos": "noun", + "word_frequency": 5239 + }, + { + "word": "insertion", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insertion", + "example_sentence_native": "L'insertion de ce nouveau paragraphe est nécessaire.", + "example_sentence_english": "The insertion of this new paragraph is necessary.", + "pos": "noun", + "word_frequency": 5240 + }, + { + "word": "jadis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formerly;in olden times", + "example_sentence_native": "Jadis, les chevaliers protégeaient le royaume.", + "example_sentence_english": "Formerly, knights protected the kingdom.", + "pos": "adverb", + "word_frequency": 5241 + }, + { + "word": "lin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "linen;flax", + "example_sentence_native": "Cette chemise est faite de lin pur.", + "example_sentence_english": "This shirt is made of pure linen.", + "pos": "noun", + "word_frequency": 5242 + }, + { + "word": "loge", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box (theatre);lodge;dressing room", + "example_sentence_native": "Nous avons réservé une loge pour le spectacle.", + "example_sentence_english": "We booked a box for the show.", + "pos": "noun", + "word_frequency": 5244 + }, + { + "word": "lumineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luminous;bright", + "example_sentence_native": "Le soleil est très lumineux aujourd'hui.", + "example_sentence_english": "The sun is very bright today.", + "pos": "adjective", + "word_frequency": 5245 + }, + { + "word": "légalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legally", + "example_sentence_native": "C'est légalement obligatoire de porter une ceinture de sécurité.", + "example_sentence_english": "It is legally mandatory to wear a seatbelt.", + "pos": "adverb", + "word_frequency": 5246 + }, + { + "word": "magnétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnetic", + "example_sentence_native": "L'aimant a un champ magnétique puissant.", + "example_sentence_english": "The magnet has a powerful magnetic field.", + "pos": "adjective", + "word_frequency": 5247 + }, + { + "word": "nocturne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nocturnal", + "example_sentence_native": "Les animaux nocturnes sont actifs la nuit.", + "example_sentence_english": "Nocturnal animals are active at night.", + "pos": "adjective", + "word_frequency": 5250 + }, + { + "word": "papillon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butterfly", + "example_sentence_native": "Un beau papillon s'est posé sur la fleur.", + "example_sentence_english": "A beautiful butterfly landed on the flower.", + "pos": "noun", + "word_frequency": 5251 + }, + { + "word": "planification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planning", + "example_sentence_native": "La planification du projet est essentielle pour sa réussite.", + "example_sentence_english": "Project planning is essential for its success.", + "pos": "noun", + "word_frequency": 5252 + }, + { + "word": "pull", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweater;pullover", + "example_sentence_native": "J'ai mis mon pull car il fait froid.", + "example_sentence_english": "I put on my sweater because it's cold.", + "pos": "noun", + "word_frequency": 5253 + }, + { + "word": "pêcheur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fisherman", + "example_sentence_native": "Le pêcheur a attrapé un gros poisson.", + "example_sentence_english": "The fisherman caught a big fish.", + "pos": "noun", + "word_frequency": 5254 + }, + { + "word": "quotidiennement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daily;on a daily basis", + "example_sentence_native": "Il lit le journal quotidiennement.", + "example_sentence_english": "He reads the newspaper daily.", + "pos": "adverb", + "word_frequency": 5255 + }, + { + "word": "raid", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid;endurance race", + "example_sentence_native": "La police a effectué un raid à l'aube.", + "example_sentence_english": "The police carried out a raid at dawn.", + "pos": "noun", + "word_frequency": 5256 + }, + { + "word": "recueillir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collect;to gather;to harvest", + "example_sentence_native": "Nous devons recueillir des informations pour notre rapport.", + "example_sentence_english": "We need to collect information for our report.", + "pos": "verb", + "word_frequency": 5257 + }, + { + "word": "reflet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection;glare", + "example_sentence_native": "J'ai vu mon reflet dans l'eau.", + "example_sentence_english": "I saw my reflection in the water.", + "pos": "noun", + "word_frequency": 5258 + }, + { + "word": "renard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fox", + "example_sentence_native": "Le renard est un animal rusé.", + "example_sentence_english": "The fox is a cunning animal.", + "pos": "noun", + "word_frequency": 5259 + }, + { + "word": "renouvelable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewable", + "example_sentence_native": "Les énergies renouvelables sont importantes pour l'avenir.", + "example_sentence_english": "Renewable energies are important for the future.", + "pos": "adjective", + "word_frequency": 5260 + }, + { + "word": "respiration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breathing;respiration", + "example_sentence_native": "Sa respiration était calme et régulière.", + "example_sentence_english": "His breathing was calm and regular.", + "pos": "noun", + "word_frequency": 5261 + }, + { + "word": "rideau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curtain", + "example_sentence_native": "J'ai fermé les rideaux pour bloquer la lumière.", + "example_sentence_english": "I closed the curtains to block the light.", + "pos": "noun", + "word_frequency": 5262 + }, + { + "word": "rude", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rude;harsh;rough", + "example_sentence_native": "Il a reçu une réponse très rude.", + "example_sentence_english": "He received a very rude answer.", + "pos": "adjective", + "word_frequency": 5264 + }, + { + "word": "sacrifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sacrifice", + "example_sentence_native": "Il a dû sacrifier son temps libre pour ce projet.", + "example_sentence_english": "He had to sacrifice his free time for this project.", + "pos": "verb", + "word_frequency": 5265 + }, + { + "word": "sanctuaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanctuary", + "example_sentence_native": "C'est un sanctuaire pour les oiseaux migrateurs.", + "example_sentence_english": "It's a sanctuary for migratory birds.", + "pos": "noun", + "word_frequency": 5266 + }, + { + "word": "segment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "segment", + "example_sentence_native": "Nous allons analyser ce segment du marché.", + "example_sentence_english": "We are going to analyze this market segment.", + "pos": "noun", + "word_frequency": 5268 + }, + { + "word": "shopping", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping", + "example_sentence_native": "J'adore faire du shopping le samedi.", + "example_sentence_english": "I love going shopping on Saturdays.", + "pos": "noun", + "word_frequency": 5269 + }, + { + "word": "terminal", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terminal", + "example_sentence_native": "Mon vol part du terminal 2.", + "example_sentence_english": "My flight departs from terminal 2.", + "pos": "noun", + "word_frequency": 5272 + }, + { + "word": "tombé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fallen", + "example_sentence_native": "La feuille tombée était jaune.", + "example_sentence_english": "The fallen leaf was yellow.", + "pos": "adjective", + "word_frequency": 5274 + }, + { + "word": "varié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "varied;diverse", + "example_sentence_native": "Le menu offre un choix varié de plats.", + "example_sentence_english": "The menu offers a varied choice of dishes.", + "pos": "adjective", + "word_frequency": 5275 + }, + { + "word": "vider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to empty;to clear", + "example_sentence_native": "Il faut vider la poubelle.", + "example_sentence_english": "The trash can needs to be emptied.", + "pos": "verb", + "word_frequency": 5277 + }, + { + "word": "virtuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtual", + "example_sentence_native": "Le monde virtuel offre de nouvelles possibilités.", + "example_sentence_english": "The virtual world offers new possibilities.", + "pos": "adjective", + "word_frequency": 5280 + }, + { + "word": "visuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visual", + "example_sentence_native": "L'impact visuel de cette publicité est fort.", + "example_sentence_english": "The visual impact of this advertisement is strong.", + "pos": "adjective", + "word_frequency": 5281 + }, + { + "word": "vœu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wish;vow", + "example_sentence_native": "Il a fait un vœu pour son anniversaire.", + "example_sentence_english": "He made a wish for his birthday.", + "pos": "noun", + "word_frequency": 5282 + }, + { + "word": "économiste", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economist", + "example_sentence_native": "L'économiste a présenté son analyse.", + "example_sentence_english": "The economist presented his analysis.", + "pos": "noun", + "word_frequency": 5284 + }, + { + "word": "établi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "established", + "example_sentence_native": "C'est une procédure bien établie.", + "example_sentence_english": "This is a well-established procedure.", + "pos": "adjective", + "word_frequency": 5285 + }, + { + "word": "académique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academic", + "example_sentence_native": "Il a une carrière académique brillante.", + "example_sentence_english": "He has a brilliant academic career.", + "pos": "adjective", + "word_frequency": 5286 + }, + { + "word": "acceptation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceptance", + "example_sentence_native": "L'acceptation de sa démission a été rapide.", + "example_sentence_english": "The acceptance of his resignation was quick.", + "pos": "noun", + "word_frequency": 5287 + }, + { + "word": "accrocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hang;to hook", + "example_sentence_native": "Peux-tu accrocher ce tableau au mur ?", + "example_sentence_english": "Can you hang this painting on the wall?", + "pos": "verb", + "word_frequency": 5288 + }, + { + "word": "accusé", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accused (person);defendant", + "example_sentence_native": "L'accusé a plaidé non coupable.", + "example_sentence_english": "The accused pleaded not guilty.", + "pos": "noun", + "word_frequency": 5289 + }, + { + "word": "acheteur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buyer;purchaser", + "example_sentence_native": "L'acheteur a signé le contrat.", + "example_sentence_english": "The buyer signed the contract.", + "pos": "noun", + "word_frequency": 5290 + }, + { + "word": "adhérent", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member;adherent", + "example_sentence_native": "Chaque adhérent reçoit une carte.", + "example_sentence_english": "Each member receives a card.", + "pos": "noun", + "word_frequency": 5291 + }, + { + "word": "armement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armament;weaponry", + "example_sentence_native": "Le pays a investi dans l'armement.", + "example_sentence_english": "The country invested in armament.", + "pos": "noun", + "word_frequency": 5292 + }, + { + "word": "audit", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "audit", + "example_sentence_native": "L'entreprise a subi un audit financier.", + "example_sentence_english": "The company underwent a financial audit.", + "pos": "noun", + "word_frequency": 5293 + }, + { + "word": "austérité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "austerity", + "example_sentence_native": "Les mesures d'austérité sont impopulaires.", + "example_sentence_english": "Austerity measures are unpopular.", + "pos": "noun", + "word_frequency": 5294 + }, + { + "word": "aéronautique", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aeronautics", + "example_sentence_native": "L'aéronautique est un secteur de pointe.", + "example_sentence_english": "Aeronautics is a cutting-edge sector.", + "pos": "noun", + "word_frequency": 5295 + }, + { + "word": "bannière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banner", + "example_sentence_native": "La bannière publicitaire est visible sur le site.", + "example_sentence_english": "The advertising banner is visible on the website.", + "pos": "noun", + "word_frequency": 5296 + }, + { + "word": "baptisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "named;baptized", + "example_sentence_native": "Le nouveau produit a été baptisé \"Alpha\".", + "example_sentence_english": "The new product was named \"Alpha\".", + "pos": "adjective", + "word_frequency": 5297 + }, + { + "word": "baptême", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baptism;christening", + "example_sentence_native": "Le baptême de l'enfant aura lieu dimanche.", + "example_sentence_english": "The child's baptism will take place on Sunday.", + "pos": "noun", + "word_frequency": 5298 + }, + { + "word": "bordure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "border;edge", + "example_sentence_native": "La bordure du chemin est fleurie.", + "example_sentence_english": "The edge of the path is flowery.", + "pos": "noun", + "word_frequency": 5300 + }, + { + "word": "bouclier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shield", + "example_sentence_native": "Le chevalier portait un bouclier.", + "example_sentence_english": "The knight carried a shield.", + "pos": "noun", + "word_frequency": 5301 + }, + { + "word": "cheville", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ankle;peg", + "example_sentence_native": "Elle s'est tordu la cheville en courant.", + "example_sentence_english": "She twisted her ankle while running.", + "pos": "noun", + "word_frequency": 5305 + }, + { + "word": "chèvre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goat", + "example_sentence_native": "La chèvre broute l'herbe.", + "example_sentence_english": "The goat grazes the grass.", + "pos": "noun", + "word_frequency": 5306 + }, + { + "word": "citron", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lemon", + "example_sentence_native": "J'aimerais un thé au citron.", + "example_sentence_english": "I would like a lemon tea.", + "pos": "noun", + "word_frequency": 5307 + }, + { + "word": "comptoir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counter;bar", + "example_sentence_native": "Le client attendait au comptoir.", + "example_sentence_english": "The customer was waiting at the counter.", + "pos": "noun", + "word_frequency": 5309 + }, + { + "word": "comtesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countess", + "example_sentence_native": "La comtesse vivait dans un grand château.", + "example_sentence_english": "The countess lived in a large castle.", + "pos": "noun", + "word_frequency": 5310 + }, + { + "word": "confrontation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confrontation", + "example_sentence_native": "La confrontation entre les deux parties était inévitable.", + "example_sentence_english": "The confrontation between the two parties was inevitable.", + "pos": "noun", + "word_frequency": 5311 + }, + { + "word": "croisière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruise", + "example_sentence_native": "Nous avons réservé une croisière en Méditerranée.", + "example_sentence_english": "We booked a cruise in the Mediterranean.", + "pos": "noun", + "word_frequency": 5312 + }, + { + "word": "cup", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cup", + "example_sentence_native": "L'équipe a remporté la Cup.", + "example_sentence_english": "The team won the Cup.", + "pos": "noun", + "word_frequency": 5313 + }, + { + "word": "dixième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tenth", + "example_sentence_native": "Il a terminé dixième de la course.", + "example_sentence_english": "He finished tenth in the race.", + "pos": "numeral", + "word_frequency": 5315 + }, + { + "word": "duchesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duchess", + "example_sentence_native": "La duchesse portait une robe magnifique.", + "example_sentence_english": "The duchess wore a magnificent dress.", + "pos": "noun", + "word_frequency": 5316 + }, + { + "word": "démographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demographic", + "example_sentence_native": "Les études démographiques sont importantes pour la planification.", + "example_sentence_english": "Demographic studies are important for planning.", + "pos": "adjective", + "word_frequency": 5317 + }, + { + "word": "désaccord", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagreement", + "example_sentence_native": "Il y a eu un désaccord sur le prix.", + "example_sentence_english": "There was a disagreement about the price.", + "pos": "noun", + "word_frequency": 5318 + }, + { + "word": "détaillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detailed", + "example_sentence_native": "Il a fourni un rapport détaillé.", + "example_sentence_english": "He provided a detailed report.", + "pos": "adjective", + "word_frequency": 5319 + }, + { + "word": "edition", + "article_with_word": "l'édition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edition;publishing", + "example_sentence_native": "C'est la première édition de ce livre.", + "example_sentence_english": "This is the first edition of this book.", + "pos": "noun", + "word_frequency": 5320 + }, + { + "word": "entrain", + "article_with_word": "l'entrain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enthusiasm;drive", + "example_sentence_native": "Il a beaucoup d'entrain pour son nouveau projet.", + "example_sentence_english": "He has a lot of enthusiasm for his new project.", + "pos": "noun", + "word_frequency": 5321 + }, + { + "word": "envergure", + "article_with_word": "l'envergure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope;scale;wingspan", + "example_sentence_native": "C'est un projet d'une grande envergure.", + "example_sentence_english": "It's a project of great scope.", + "pos": "noun", + "word_frequency": 5322 + }, + { + "word": "expo", + "article_with_word": "l'expo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibition;show (informal)", + "example_sentence_native": "On va à l'expo ce week-end.", + "example_sentence_english": "We're going to the exhibition this weekend.", + "pos": "noun", + "word_frequency": 5323 + }, + { + "word": "expulsion", + "article_with_word": "l'expulsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expulsion", + "example_sentence_native": "L'expulsion du locataire a été prononcée.", + "example_sentence_english": "The tenant's expulsion was pronounced.", + "pos": "noun", + "word_frequency": 5324 + }, + { + "word": "firme", + "article_with_word": "la firme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm;company", + "example_sentence_native": "C'est une grande firme internationale.", + "example_sentence_english": "It's a large international firm.", + "pos": "noun", + "word_frequency": 5325 + }, + { + "word": "fondement", + "article_with_word": "le fondement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation;basis", + "example_sentence_native": "Ses arguments manquent de fondement.", + "example_sentence_english": "His arguments lack foundation.", + "pos": "noun", + "word_frequency": 5326 + }, + { + "word": "fossile", + "article_with_word": "le fossile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fossil", + "example_sentence_native": "On a découvert un fossile de dinosaure.", + "example_sentence_english": "A dinosaur fossil was discovered.", + "pos": "noun", + "word_frequency": 5327 + }, + { + "word": "immunité", + "article_with_word": "l'immunité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immunity", + "example_sentence_native": "Le corps développe une immunité contre le virus.", + "example_sentence_english": "The body develops immunity against the virus.", + "pos": "noun", + "word_frequency": 5331 + }, + { + "word": "incarner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embody;to incarnate", + "example_sentence_native": "Il incarne parfaitement le rôle.", + "example_sentence_english": "He perfectly embodies the role.", + "pos": "verb", + "word_frequency": 5332 + }, + { + "word": "ingrédient", + "article_with_word": "l'ingrédient", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ingredient", + "example_sentence_native": "Quels sont les ingrédients de cette recette ?", + "example_sentence_english": "What are the ingredients for this recipe?", + "pos": "noun", + "word_frequency": 5333 + }, + { + "word": "intégré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "integrated;built-in", + "example_sentence_native": "Le système est entièrement intégré.", + "example_sentence_english": "The system is fully integrated.", + "pos": "adjective", + "word_frequency": 5334 + }, + { + "word": "laissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left (behind);abandoned", + "example_sentence_native": "Les objets laissés seront collectés.", + "example_sentence_english": "Left objects will be collected.", + "pos": "adjective", + "word_frequency": 5335 + }, + { + "word": "maitre", + "article_with_word": "le maître", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "master;teacher", + "example_sentence_native": "Le maître a expliqué la leçon.", + "example_sentence_english": "The master explained the lesson.", + "pos": "noun", + "word_frequency": 5339 + }, + { + "word": "marée", + "article_with_word": "la marée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tide", + "example_sentence_native": "La marée monte rapidement.", + "example_sentence_english": "The tide is rising quickly.", + "pos": "noun", + "word_frequency": 5340 + }, + { + "word": "meuf", + "article_with_word": "la meuf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "girl;woman (slang)", + "example_sentence_native": "C'est ma meuf.", + "example_sentence_english": "She's my girlfriend.", + "pos": "noun", + "word_frequency": 5342 + }, + { + "word": "mile", + "article_with_word": "le mile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mile", + "example_sentence_native": "La distance est d'un mile.", + "example_sentence_english": "The distance is one mile.", + "pos": "noun", + "word_frequency": 5343 + }, + { + "word": "module", + "article_with_word": "le module", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "module", + "example_sentence_native": "Ce module est facile à installer.", + "example_sentence_english": "This module is easy to install.", + "pos": "noun", + "word_frequency": 5344 + }, + { + "word": "molécule", + "article_with_word": "la molécule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molecule", + "example_sentence_native": "L'eau est composée de molécules.", + "example_sentence_english": "Water is composed of molecules.", + "pos": "noun", + "word_frequency": 5345 + }, + { + "word": "ordi", + "article_with_word": "l'ordi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "computer (informal)", + "example_sentence_native": "J'ai acheté un nouvel ordi.", + "example_sentence_english": "I bought a new computer.", + "pos": "noun", + "word_frequency": 5347 + }, + { + "word": "parrain", + "article_with_word": "le parrain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godfather;sponsor", + "example_sentence_native": "Il est le parrain de mon fils.", + "example_sentence_english": "He is my son's godfather.", + "pos": "noun", + "word_frequency": 5348 + }, + { + "word": "perle", + "article_with_word": "la perle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pearl", + "example_sentence_native": "Elle porte un collier de perles.", + "example_sentence_english": "She is wearing a pearl necklace.", + "pos": "noun", + "word_frequency": 5350 + }, + { + "word": "piquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sting;to prick;to steal (slang)", + "example_sentence_native": "L'abeille m'a piqué.", + "example_sentence_english": "The bee stung me.", + "pos": "verb", + "word_frequency": 5351 + }, + { + "word": "privilégié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privileged", + "example_sentence_native": "Il a une position privilégiée.", + "example_sentence_english": "He has a privileged position.", + "pos": "adjective", + "word_frequency": 5352 + }, + { + "word": "précaution", + "article_with_word": "la précaution", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precaution", + "example_sentence_native": "Prenez vos précautions.", + "example_sentence_english": "Take your precautions.", + "pos": "noun", + "word_frequency": 5353 + }, + { + "word": "présentement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "currently;at present", + "example_sentence_native": "Il est présentement en réunion.", + "example_sentence_english": "He is currently in a meeting.", + "pos": "adverb", + "word_frequency": 5354 + }, + { + "word": "punk", + "article_with_word": "le punk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punk", + "example_sentence_native": "Il écoutait de la musique punk.", + "example_sentence_english": "He was listening to punk music.", + "pos": "noun", + "word_frequency": 5355 + }, + { + "word": "récolter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to harvest;to collect", + "example_sentence_native": "Ils vont récolter le blé.", + "example_sentence_english": "They are going to harvest the wheat.", + "pos": "verb", + "word_frequency": 5358 + }, + { + "word": "réputé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renowned;reputed", + "example_sentence_native": "C'est un restaurant réputé.", + "example_sentence_english": "It's a renowned restaurant.", + "pos": "adjective", + "word_frequency": 5359 + }, + { + "word": "secrétariat", + "article_with_word": "le secrétariat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretariat;office", + "example_sentence_native": "Le secrétariat est ouvert de 9h à 17h.", + "example_sentence_english": "The secretariat is open from 9 AM to 5 PM.", + "pos": "noun", + "word_frequency": 5360 + }, + { + "word": "secte", + "article_with_word": "la secte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cult;sect", + "example_sentence_native": "Il a rejoint une secte dangereuse.", + "example_sentence_english": "He joined a dangerous cult.", + "pos": "noun", + "word_frequency": 5361 + }, + { + "word": "single", + "article_with_word": "le single", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "single (music)", + "example_sentence_native": "Son nouveau single est déjà un succès.", + "example_sentence_english": "His new single is already a success.", + "pos": "noun", + "word_frequency": 5363 + }, + { + "word": "soulever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lift;to raise", + "example_sentence_native": "Il a soulevé la lourde boîte sans effort.", + "example_sentence_english": "He lifted the heavy box effortlessly.", + "pos": "verb", + "word_frequency": 5364 + }, + { + "word": "spectaculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spectacular", + "example_sentence_native": "Le feu d'artifice était vraiment spectaculaire.", + "example_sentence_english": "The fireworks were truly spectacular.", + "pos": "adjective", + "word_frequency": 5365 + }, + { + "word": "trottoir", + "article_with_word": "le trottoir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sidewalk;pavement", + "example_sentence_native": "Marchez sur le trottoir pour votre sécurité.", + "example_sentence_english": "Walk on the sidewalk for your safety.", + "pos": "noun", + "word_frequency": 5366 + }, + { + "word": "tutelle", + "article_with_word": "la tutelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guardianship;tutelage", + "example_sentence_native": "L'enfant a été placé sous la tutelle de sa tante.", + "example_sentence_english": "The child was placed under the guardianship of his aunt.", + "pos": "noun", + "word_frequency": 5367 + }, + { + "word": "vampire", + "article_with_word": "le vampire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vampire", + "example_sentence_native": "Les histoires de vampires sont très populaires.", + "example_sentence_english": "Vampire stories are very popular.", + "pos": "noun", + "word_frequency": 5368 + }, + { + "word": "wall", + "article_with_word": "le wall", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wall (social media)", + "example_sentence_native": "J'ai posté une photo sur son wall.", + "example_sentence_english": "I posted a photo on his wall.", + "pos": "noun", + "word_frequency": 5369 + }, + { + "word": "éclair", + "article_with_word": "un éclair", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lightning;eclair (pastry)", + "example_sentence_native": "Un éclair a illuminé le ciel orageux.", + "example_sentence_english": "A flash of lightning lit up the stormy sky.", + "pos": "noun", + "word_frequency": 5371 + }, + { + "word": "allocation", + "article_with_word": "une allocation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allowance;benefit", + "example_sentence_native": "Elle reçoit une allocation chômage.", + "example_sentence_english": "She receives unemployment benefits.", + "pos": "noun", + "word_frequency": 5372 + }, + { + "word": "allumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn on;to light", + "example_sentence_native": "Peux-tu allumer la lumière s'il te plaît ?", + "example_sentence_english": "Can you turn on the light please?", + "pos": "verb", + "word_frequency": 5373 + }, + { + "word": "appellation", + "article_with_word": "une appellation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "name;designation;appellation", + "example_sentence_native": "Cette appellation d'origine est protégée.", + "example_sentence_english": "This designation of origin is protected.", + "pos": "noun", + "word_frequency": 5375 + }, + { + "word": "applicable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicable", + "example_sentence_native": "Cette règle n'est pas applicable dans ce cas.", + "example_sentence_english": "This rule is not applicable in this case.", + "pos": "adjective", + "word_frequency": 5376 + }, + { + "word": "bank", + "article_with_word": "la bank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bank (e.g.;data bank)", + "example_sentence_native": "Cette entreprise gère une grande data bank.", + "example_sentence_english": "This company manages a large data bank.", + "pos": "noun", + "word_frequency": 5377 + }, + { + "word": "battu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaten;defeated", + "example_sentence_native": "L'équipe était battue mais fière.", + "example_sentence_english": "The team was defeated but proud.", + "pos": "adjective", + "word_frequency": 5378 + }, + { + "word": "biographie", + "article_with_word": "la biographie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biography", + "example_sentence_native": "J'ai lu une biographie fascinante sur Marie Curie.", + "example_sentence_english": "I read a fascinating biography about Marie Curie.", + "pos": "noun", + "word_frequency": 5379 + }, + { + "word": "bizarrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bizarrely;strangely", + "example_sentence_native": "Bizarrement, il n'était pas surpris.", + "example_sentence_english": "Bizarrely, he was not surprised.", + "pos": "adverb", + "word_frequency": 5380 + }, + { + "word": "bonbon", + "article_with_word": "un bonbon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "candy;sweet", + "example_sentence_native": "Les enfants adorent les bonbons.", + "example_sentence_english": "Children love candy.", + "pos": "noun", + "word_frequency": 5382 + }, + { + "word": "calibre", + "article_with_word": "le calibre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caliber;gauge", + "example_sentence_native": "Le pistolet était d'un petit calibre.", + "example_sentence_english": "The pistol was of a small caliber.", + "pos": "noun", + "word_frequency": 5384 + }, + { + "word": "chauffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to heat;to warm up", + "example_sentence_native": "Il faut chauffer l'eau pour le thé.", + "example_sentence_english": "You need to heat the water for the tea.", + "pos": "verb", + "word_frequency": 5386 + }, + { + "word": "chauve", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bald", + "example_sentence_native": "Mon grand-père est devenu chauve.", + "example_sentence_english": "My grandfather became bald.", + "pos": "adjective", + "word_frequency": 5387 + }, + { + "word": "chêne", + "article_with_word": "le chêne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oak (tree)", + "example_sentence_native": "Un vieux chêne se dresse au milieu du champ.", + "example_sentence_english": "An old oak tree stands in the middle of the field.", + "pos": "noun", + "word_frequency": 5388 + }, + { + "word": "chœur", + "article_with_word": "le chœur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choir;chorus", + "example_sentence_native": "Le chœur a chanté magnifiquement.", + "example_sentence_english": "The choir sang beautifully.", + "pos": "noun", + "word_frequency": 5389 + }, + { + "word": "cinquantaine", + "article_with_word": "la cinquantaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "around fifty;fifties (age)", + "example_sentence_native": "Il a la cinquantaine.", + "example_sentence_english": "He is in his fifties.", + "pos": "noun", + "word_frequency": 5390 + }, + { + "word": "classé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classified;ranked", + "example_sentence_native": "Ce document est classé secret.", + "example_sentence_english": "This document is classified as secret.", + "pos": "adjective", + "word_frequency": 5391 + }, + { + "word": "comptabilité", + "article_with_word": "la comptabilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounting;bookkeeping", + "example_sentence_native": "Elle étudie la comptabilité à l'université.", + "example_sentence_english": "She studies accounting at university.", + "pos": "noun", + "word_frequency": 5392 + }, + { + "word": "concret", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concrete;tangible", + "example_sentence_native": "Nous avons besoin de résultats concrets.", + "example_sentence_english": "We need concrete results.", + "pos": "adjective", + "word_frequency": 5393 + }, + { + "word": "condamné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condemned;sentenced", + "example_sentence_native": "L'homme a été condamné à la prison.", + "example_sentence_english": "The man was sentenced to prison.", + "pos": "adjective", + "word_frequency": 5394 + }, + { + "word": "considéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considered;regarded", + "example_sentence_native": "Il est considéré comme un expert.", + "example_sentence_english": "He is considered an expert.", + "pos": "adjective", + "word_frequency": 5395 + }, + { + "word": "convoi", + "article_with_word": "le convoi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convoy", + "example_sentence_native": "Le convoi de camions a traversé la ville.", + "example_sentence_english": "The convoy of trucks crossed the city.", + "pos": "noun", + "word_frequency": 5396 + }, + { + "word": "copier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to copy", + "example_sentence_native": "Peux-tu copier ce document pour moi ?", + "example_sentence_english": "Can you copy this document for me?", + "pos": "verb", + "word_frequency": 5397 + }, + { + "word": "cross", + "article_with_word": "le cross", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross (country running;or type of motorcycle;bike)", + "example_sentence_native": "Il participe à une course de cross.", + "example_sentence_english": "He is participating in a cross-country race.", + "pos": "noun", + "word_frequency": 5398 + }, + { + "word": "dauphin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dolphin", + "example_sentence_native": "Le dauphin est un mammifère marin très intelligent.", + "example_sentence_english": "The dolphin is a very intelligent marine mammal.", + "pos": "noun", + "word_frequency": 5400 + }, + { + "word": "derby", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derby (match;race)", + "example_sentence_native": "Le derby local a attiré une foule immense.", + "example_sentence_english": "The local derby attracted a huge crowd.", + "pos": "noun", + "word_frequency": 5401 + }, + { + "word": "dessiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawn;sketched", + "example_sentence_native": "Le portrait était très bien dessiné.", + "example_sentence_english": "The portrait was very well drawn.", + "pos": "adjective", + "word_frequency": 5402 + }, + { + "word": "dispo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "available (colloquial)", + "example_sentence_native": "Es-tu dispo ce soir pour un café ?", + "example_sentence_english": "Are you available tonight for a coffee?", + "pos": "adjective", + "word_frequency": 5403 + }, + { + "word": "distribuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to distribute;to hand out", + "example_sentence_native": "Le professeur va distribuer les copies.", + "example_sentence_english": "The teacher is going to hand out the papers.", + "pos": "verb", + "word_frequency": 5404 + }, + { + "word": "divertissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entertainment", + "example_sentence_native": "Ce film est un excellent divertissement.", + "example_sentence_english": "This film is excellent entertainment.", + "pos": "noun", + "word_frequency": 5405 + }, + { + "word": "débris", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debris;wreckage", + "example_sentence_native": "Les débris de l'avion ont été retrouvés.", + "example_sentence_english": "The wreckage of the plane was found.", + "pos": "noun", + "word_frequency": 5406 + }, + { + "word": "désignation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designation;appointment", + "example_sentence_native": "La désignation du nouveau chef a été annoncée.", + "example_sentence_english": "The designation of the new leader was announced.", + "pos": "noun", + "word_frequency": 5407 + }, + { + "word": "ego", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ego", + "example_sentence_native": "Son ego est très développé.", + "example_sentence_english": "His ego is very developed.", + "pos": "noun", + "word_frequency": 5408 + }, + { + "word": "emprisonnement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprisonment", + "example_sentence_native": "Il a été condamné à un an d'emprisonnement.", + "example_sentence_english": "He was sentenced to one year of imprisonment.", + "pos": "noun", + "word_frequency": 5409 + }, + { + "word": "familier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "familiar;informal", + "example_sentence_native": "Ce visage m'est familier.", + "example_sentence_english": "This face is familiar to me.", + "pos": "adjective", + "word_frequency": 5411 + }, + { + "word": "flore", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flora", + "example_sentence_native": "La flore de cette région est très riche.", + "example_sentence_english": "The flora of this region is very rich.", + "pos": "noun", + "word_frequency": 5412 + }, + { + "word": "galaxie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "galaxy", + "example_sentence_native": "Notre système solaire fait partie de la galaxie de la Voie lactée.", + "example_sentence_english": "Our solar system is part of the Milky Way galaxy.", + "pos": "noun", + "word_frequency": 5413 + }, + { + "word": "garanti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guaranteed", + "example_sentence_native": "Le produit est garanti deux ans.", + "example_sentence_english": "The product is guaranteed for two years.", + "pos": "adjective", + "word_frequency": 5414 + }, + { + "word": "gestionnaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manager;administrator", + "example_sentence_native": "Le gestionnaire de projet a présenté les résultats.", + "example_sentence_english": "The project manager presented the results.", + "pos": "noun", + "word_frequency": 5415 + }, + { + "word": "gigantesque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gigantic;enormous", + "example_sentence_native": "Ils ont construit un bâtiment gigantesque.", + "example_sentence_english": "They built a gigantic building.", + "pos": "adjective", + "word_frequency": 5416 + }, + { + "word": "groupement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grouping;association", + "example_sentence_native": "Le groupement d'entreprises a signé un accord.", + "example_sentence_english": "The grouping of companies signed an agreement.", + "pos": "noun", + "word_frequency": 5418 + }, + { + "word": "guerrier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warrior", + "example_sentence_native": "Le guerrier portait une armure lourde.", + "example_sentence_english": "The warrior wore heavy armor.", + "pos": "noun", + "word_frequency": 5419 + }, + { + "word": "historiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "historically", + "example_sentence_native": "Historiquement, cette région a toujours été un carrefour commercial.", + "example_sentence_english": "Historically, this region has always been a trade crossroads.", + "pos": "adverb", + "word_frequency": 5421 + }, + { + "word": "inconscient", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconscious;unaware", + "example_sentence_native": "Il est resté inconscient après l'accident.", + "example_sentence_english": "He remained unconscious after the accident.", + "pos": "adjective", + "word_frequency": 5422 + }, + { + "word": "justifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justified;warranted", + "example_sentence_native": "Sa décision était parfaitement justifiée.", + "example_sentence_english": "His decision was perfectly justified.", + "pos": "adjective", + "word_frequency": 5424 + }, + { + "word": "levier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lever;leverage", + "example_sentence_native": "Il a utilisé un levier pour soulever la pierre.", + "example_sentence_english": "He used a lever to lift the stone.", + "pos": "noun", + "word_frequency": 5425 + }, + { + "word": "marteau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hammer", + "example_sentence_native": "J'ai besoin d'un marteau pour planter ce clou.", + "example_sentence_english": "I need a hammer to drive this nail.", + "pos": "noun", + "word_frequency": 5428 + }, + { + "word": "offert", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "offered;given", + "example_sentence_native": "Le cadeau était offert avec le sourire.", + "example_sentence_english": "The gift was offered with a smile.", + "pos": "adjective", + "word_frequency": 5432 + }, + { + "word": "poker", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poker", + "example_sentence_native": "Ils ont passé la soirée à jouer au poker.", + "example_sentence_english": "They spent the evening playing poker.", + "pos": "noun", + "word_frequency": 5434 + }, + { + "word": "protecteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protector;guardian", + "example_sentence_native": "Il agit comme un protecteur pour sa famille.", + "example_sentence_english": "He acts as a protector for his family.", + "pos": "noun", + "word_frequency": 5435 + }, + { + "word": "qualifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualified;skilled", + "example_sentence_native": "C'est un expert qualifié dans son domaine.", + "example_sentence_english": "He is a qualified expert in his field.", + "pos": "adjective", + "word_frequency": 5436 + }, + { + "word": "rappeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rapper", + "example_sentence_native": "Ce rappeur est très populaire auprès des jeunes.", + "example_sentence_english": "This rapper is very popular with young people.", + "pos": "noun", + "word_frequency": 5437 + }, + { + "word": "reculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move back;to retreat", + "example_sentence_native": "La voiture a reculé lentement.", + "example_sentence_english": "The car moved back slowly.", + "pos": "verb", + "word_frequency": 5438 + }, + { + "word": "repérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spot;to locate;to identify", + "example_sentence_native": "J'ai réussi à repérer l'erreur dans le code.", + "example_sentence_english": "I managed to spot the error in the code.", + "pos": "verb", + "word_frequency": 5439 + }, + { + "word": "restriction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restriction", + "example_sentence_native": "Il y a une restriction sur la quantité d'eau que nous pouvons utiliser.", + "example_sentence_english": "There is a restriction on the amount of water we can use.", + "pos": "noun", + "word_frequency": 5440 + }, + { + "word": "rez", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ground floor (as in 'rez-de-chaussée')", + "example_sentence_native": "L'appartement est au rez-de-chaussée.", + "example_sentence_english": "The apartment is on the ground floor.", + "pos": "noun", + "word_frequency": 5441 + }, + { + "word": "staff", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "staff", + "example_sentence_native": "Le staff de l'hôtel est très accueillant.", + "example_sentence_english": "The hotel staff is very welcoming.", + "pos": "noun", + "word_frequency": 5443 + }, + { + "word": "stopper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop", + "example_sentence_native": "Il faut stopper la voiture avant le feu rouge.", + "example_sentence_english": "You must stop the car before the red light.", + "pos": "verb", + "word_frequency": 5445 + }, + { + "word": "supermarché", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "supermarket", + "example_sentence_native": "Je vais au supermarché pour acheter du pain.", + "example_sentence_english": "I'm going to the supermarket to buy some bread.", + "pos": "noun", + "word_frequency": 5446 + }, + { + "word": "trajectoire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trajectory", + "example_sentence_native": "La trajectoire du missile a été calculée avec précision.", + "example_sentence_english": "The missile's trajectory was calculated precisely.", + "pos": "noun", + "word_frequency": 5449 + }, + { + "word": "venu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "come (as in 'having come')", + "example_sentence_native": "Les invités venus de loin étaient fatigués.", + "example_sentence_english": "The guests who came from afar were tired.", + "pos": "adjective", + "word_frequency": 5451 + }, + { + "word": "écossais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Scottish", + "example_sentence_native": "Il porte un kilt écossais.", + "example_sentence_english": "He is wearing a Scottish kilt.", + "pos": "adjective", + "word_frequency": 5454 + }, + { + "word": "équipé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipped", + "example_sentence_native": "La cuisine est entièrement équipée.", + "example_sentence_english": "The kitchen is fully equipped.", + "pos": "adjective", + "word_frequency": 5455 + }, + { + "word": "accompagné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accompanied", + "example_sentence_native": "Elle est venue accompagnée de son mari.", + "example_sentence_english": "She came accompanied by her husband.", + "pos": "adjective", + "word_frequency": 5457 + }, + { + "word": "admission", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admission", + "example_sentence_native": "L'admission au musée est gratuite pour les enfants.", + "example_sentence_english": "Admission to the museum is free for children.", + "pos": "noun", + "word_frequency": 5458 + }, + { + "word": "attachement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attachment", + "example_sentence_native": "Son attachement à sa famille est très fort.", + "example_sentence_english": "His attachment to his family is very strong.", + "pos": "noun", + "word_frequency": 5459 + }, + { + "word": "attaché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attached;fond of", + "example_sentence_native": "Il est très attaché à ses traditions.", + "example_sentence_english": "He is very attached to his traditions.", + "pos": "adjective", + "word_frequency": 5460 + }, + { + "word": "bang", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bang;explosion", + "example_sentence_native": "On a entendu un grand bang dans la rue.", + "example_sentence_english": "We heard a loud bang in the street.", + "pos": "noun", + "word_frequency": 5461 + }, + { + "word": "basque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Basque", + "example_sentence_native": "La culture basque est très riche.", + "example_sentence_english": "Basque culture is very rich.", + "pos": "adjective", + "word_frequency": 5463 + }, + { + "word": "bidon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "can;jerrycan;container", + "example_sentence_native": "Il a rempli son bidon d'eau.", + "example_sentence_english": "He filled his can with water.", + "pos": "noun", + "word_frequency": 5465 + }, + { + "word": "brique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brick", + "example_sentence_native": "La maison est construite en briques rouges.", + "example_sentence_english": "The house is built of red bricks.", + "pos": "noun", + "word_frequency": 5466 + }, + { + "word": "brièvement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefly", + "example_sentence_native": "Il a parlé brièvement de ses projets.", + "example_sentence_english": "He spoke briefly about his plans.", + "pos": "adverb", + "word_frequency": 5467 + }, + { + "word": "carnaval", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carnival", + "example_sentence_native": "Le carnaval de Nice est très célèbre.", + "example_sentence_english": "The Nice carnival is very famous.", + "pos": "noun", + "word_frequency": 5469 + }, + { + "word": "chanceux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lucky", + "example_sentence_native": "Tu es vraiment chanceux d'avoir gagné.", + "example_sentence_english": "You are really lucky to have won.", + "pos": "adjective", + "word_frequency": 5470 + }, + { + "word": "chauffe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heating;warming", + "example_sentence_native": "La chauffe de l'eau prend du temps.", + "example_sentence_english": "The heating of the water takes time.", + "pos": "noun", + "word_frequency": 5471 + }, + { + "word": "compassion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassion", + "example_sentence_native": "Elle a montré beaucoup de compassion envers les victimes.", + "example_sentence_english": "She showed a lot of compassion towards the victims.", + "pos": "noun", + "word_frequency": 5473 + }, + { + "word": "composant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "component", + "example_sentence_native": "Chaque composant est essentiel au bon fonctionnement de la machine.", + "example_sentence_english": "Each component is essential for the machine's proper functioning.", + "pos": "noun", + "word_frequency": 5474 + }, + { + "word": "cruel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruel", + "example_sentence_native": "C'est une histoire très cruelle.", + "example_sentence_english": "It's a very cruel story.", + "pos": "adjective", + "word_frequency": 5475 + }, + { + "word": "cuisson", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooking;baking", + "example_sentence_native": "Le temps de cuisson est de 20 minutes.", + "example_sentence_english": "The cooking time is 20 minutes.", + "pos": "noun", + "word_frequency": 5476 + }, + { + "word": "demoiselle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "young lady;dragonfly", + "example_sentence_native": "Une demoiselle s'est posée sur la fleur.", + "example_sentence_english": "A dragonfly landed on the flower.", + "pos": "noun", + "word_frequency": 5478 + }, + { + "word": "diffus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diffuse;vague;widespread", + "example_sentence_native": "La lumière était diffuse dans la pièce.", + "example_sentence_english": "The light was diffuse in the room.", + "pos": "adjective", + "word_frequency": 5479 + }, + { + "word": "débarquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disembark;to land", + "example_sentence_native": "Les passagers ont commencé à débarquer du navire.", + "example_sentence_english": "The passengers began to disembark from the ship.", + "pos": "verb", + "word_frequency": 5483 + }, + { + "word": "décisif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decisive", + "example_sentence_native": "C'était un moment décisif pour l'avenir de l'entreprise.", + "example_sentence_english": "It was a decisive moment for the future of the company.", + "pos": "adjective", + "word_frequency": 5484 + }, + { + "word": "déploiement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deployment;unfolding", + "example_sentence_native": "Le déploiement des troupes a été rapide.", + "example_sentence_english": "The deployment of troops was rapid.", + "pos": "noun", + "word_frequency": 5485 + }, + { + "word": "détendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relax;to loosen", + "example_sentence_native": "Après une longue journée, j'aime me détendre avec un bon livre.", + "example_sentence_english": "After a long day, I like to relax with a good book.", + "pos": "verb", + "word_frequency": 5486 + }, + { + "word": "détruit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destroyed", + "example_sentence_native": "Le bâtiment a été complètement détruit par l'incendie.", + "example_sentence_english": "The building was completely destroyed by the fire.", + "pos": "adjective", + "word_frequency": 5487 + }, + { + "word": "enrichir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enrich", + "example_sentence_native": "Voyager peut enrichir votre esprit et votre culture.", + "example_sentence_english": "Traveling can enrich your mind and your culture.", + "pos": "verb", + "word_frequency": 5489 + }, + { + "word": "entrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incoming;entering", + "example_sentence_native": "Nous avons reçu un appel entrant important.", + "example_sentence_english": "We received an important incoming call.", + "pos": "adjective", + "word_frequency": 5490 + }, + { + "word": "flanc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side;flank", + "example_sentence_native": "Le soldat a été blessé au flanc.", + "example_sentence_english": "The soldier was wounded in the flank.", + "pos": "noun", + "word_frequency": 5493 + }, + { + "word": "funéraille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral (rite)", + "example_sentence_native": "La funéraille a eu lieu dans l'intimité familiale.", + "example_sentence_english": "The funeral took place in family privacy.", + "pos": "noun", + "word_frequency": 5494 + }, + { + "word": "honteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ashamed;shameful", + "example_sentence_native": "Il était honteux de son comportement.", + "example_sentence_english": "He was ashamed of his behavior.", + "pos": "adjective", + "word_frequency": 5498 + }, + { + "word": "hydrogène", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydrogen", + "example_sentence_native": "L'hydrogène est l'élément le plus abondant dans l'univers.", + "example_sentence_english": "Hydrogen is the most abundant element in the universe.", + "pos": "noun", + "word_frequency": 5499 + }, + { + "word": "hymne", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthem;hymn", + "example_sentence_native": "La Marseillaise est l'hymne national français.", + "example_sentence_english": "La Marseillaise is the French national anthem.", + "pos": "noun", + "word_frequency": 5500 + }, + { + "word": "informe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shapeless;formless", + "example_sentence_native": "L'objet était informe et difficile à identifier.", + "example_sentence_english": "The object was shapeless and difficult to identify.", + "pos": "adjective", + "word_frequency": 5501 + }, + { + "word": "interruption", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interruption", + "example_sentence_native": "Nous avons eu une brève interruption de courant.", + "example_sentence_english": "We had a brief power interruption.", + "pos": "noun", + "word_frequency": 5502 + }, + { + "word": "jumeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twin", + "example_sentence_native": "Mon frère jumeau et moi sommes très différents.", + "example_sentence_english": "My twin brother and I are very different.", + "pos": "noun", + "word_frequency": 5503 + }, + { + "word": "lande", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heath;moorland", + "example_sentence_native": "Les landes de Bretagne sont célèbres pour leur beauté sauvage.", + "example_sentence_english": "The moors of Brittany are famous for their wild beauty.", + "pos": "noun", + "word_frequency": 5505 + }, + { + "word": "logiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logically", + "example_sentence_native": "Logiquement, il devrait arriver bientôt.", + "example_sentence_english": "Logically, he should arrive soon.", + "pos": "adverb", + "word_frequency": 5510 + }, + { + "word": "longuement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at length;for a long time", + "example_sentence_native": "Ils ont discuté longuement de leurs projets.", + "example_sentence_english": "They discussed their plans at length.", + "pos": "adverb", + "word_frequency": 5512 + }, + { + "word": "mamie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandma;granny", + "example_sentence_native": "Ma mamie prépare les meilleurs gâteaux.", + "example_sentence_english": "My grandma bakes the best cakes.", + "pos": "noun", + "word_frequency": 5513 + }, + { + "word": "marqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marked;noticeable;affected", + "example_sentence_native": "Son visage était marqué par la fatigue.", + "example_sentence_english": "His face was marked by fatigue.", + "pos": "adjective", + "word_frequency": 5514 + }, + { + "word": "modifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modified;changed", + "example_sentence_native": "Le plan a été modifié après la réunion.", + "example_sentence_english": "The plan was modified after the meeting.", + "pos": "adjective", + "word_frequency": 5515 + }, + { + "word": "multiplication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiplication", + "example_sentence_native": "La multiplication des bactéries est très rapide.", + "example_sentence_english": "The multiplication of bacteria is very rapid.", + "pos": "noun", + "word_frequency": 5518 + }, + { + "word": "nostalgie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nostalgia", + "example_sentence_native": "Elle ressentait une profonde nostalgie pour son enfance.", + "example_sentence_english": "She felt a deep nostalgia for her childhood.", + "pos": "noun", + "word_frequency": 5519 + }, + { + "word": "notable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notable", + "example_sentence_native": "C'est un progrès notable dans ce domaine.", + "example_sentence_english": "This is a notable progress in this field.", + "pos": "adjective", + "word_frequency": 5520 + }, + { + "word": "olive", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "olive", + "example_sentence_native": "J'aime manger des olives noires.", + "example_sentence_english": "I like to eat black olives.", + "pos": "noun", + "word_frequency": 5522 + }, + { + "word": "passif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passive", + "example_sentence_native": "Il a une attitude très passive face aux problèmes.", + "example_sentence_english": "He has a very passive attitude towards problems.", + "pos": "adjective", + "word_frequency": 5523 + }, + { + "word": "pie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magpie", + "example_sentence_native": "Une pie s'est posée sur le toit.", + "example_sentence_english": "A magpie landed on the roof.", + "pos": "noun", + "word_frequency": 5527 + }, + { + "word": "pistolet", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pistol", + "example_sentence_native": "Le policier a sorti son pistolet.", + "example_sentence_english": "The policeman took out his pistol.", + "pos": "noun", + "word_frequency": 5528 + }, + { + "word": "plonger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dive", + "example_sentence_native": "Il aime plonger dans la mer.", + "example_sentence_english": "He likes to dive into the sea.", + "pos": "verb", + "word_frequency": 5529 + }, + { + "word": "pourvoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to provide", + "example_sentence_native": "L'entreprise doit pourvoir aux besoins de ses employés.", + "example_sentence_english": "The company must provide for the needs of its employees.", + "pos": "verb", + "word_frequency": 5530 + }, + { + "word": "punition", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punishment", + "example_sentence_native": "Il a reçu une punition pour son mauvais comportement.", + "example_sentence_english": "He received a punishment for his bad behavior.", + "pos": "noun", + "word_frequency": 5531 + }, + { + "word": "ratio", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ratio", + "example_sentence_native": "Le ratio hommes-femmes est équilibré.", + "example_sentence_english": "The male-female ratio is balanced.", + "pos": "noun", + "word_frequency": 5532 + }, + { + "word": "recensement", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "census", + "example_sentence_native": "Le recensement de la population a lieu tous les dix ans.", + "example_sentence_english": "The population census takes place every ten years.", + "pos": "noun", + "word_frequency": 5533 + }, + { + "word": "résistant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistant", + "example_sentence_native": "Ce matériau est très résistant à la chaleur.", + "example_sentence_english": "This material is very resistant to heat.", + "pos": "adjective", + "word_frequency": 5535 + }, + { + "word": "sapin", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fir tree", + "example_sentence_native": "Nous avons décoré un sapin de Noël.", + "example_sentence_english": "We decorated a Christmas tree.", + "pos": "noun", + "word_frequency": 5536 + }, + { + "word": "saveur", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flavor", + "example_sentence_native": "Cette sauce a une saveur unique.", + "example_sentence_english": "This sauce has a unique flavor.", + "pos": "noun", + "word_frequency": 5538 + }, + { + "word": "sommaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brief", + "example_sentence_native": "Il a donné un aperçu sommaire du projet.", + "example_sentence_english": "He gave a brief overview of the project.", + "pos": "adjective", + "word_frequency": 5539 + }, + { + "word": "surplus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus", + "example_sentence_native": "Nous avons un surplus de stock.", + "example_sentence_english": "We have a surplus of stock.", + "pos": "noun", + "word_frequency": 5540 + }, + { + "word": "sympathie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sympathy", + "example_sentence_native": "J'ai beaucoup de sympathie pour elle.", + "example_sentence_english": "I have a lot of sympathy for her.", + "pos": "noun", + "word_frequency": 5541 + }, + { + "word": "tatouage", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "example_sentence_native": "Il a un nouveau tatouage sur le bras.", + "example_sentence_english": "He has a new tattoo on his arm.", + "pos": "noun", + "word_frequency": 5542 + }, + { + "word": "teint", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complexion", + "example_sentence_native": "Elle a un teint très pâle.", + "example_sentence_english": "She has a very pale complexion.", + "pos": "noun", + "word_frequency": 5543 + }, + { + "word": "touché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touched", + "example_sentence_native": "Il était très touché par les paroles de son ami.", + "example_sentence_english": "He was very touched by his friend's words.", + "pos": "adjective", + "word_frequency": 5544 + }, + { + "word": "tuyau", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pipe", + "example_sentence_native": "Le tuyau d'arrosage est percé.", + "example_sentence_english": "The garden hose is punctured.", + "pos": "noun", + "word_frequency": 5545 + }, + { + "word": "user", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wear out", + "example_sentence_native": "Le frottement a usé la surface.", + "example_sentence_english": "The friction wore out the surface.", + "pos": "verb", + "word_frequency": 5546 + }, + { + "word": "vigne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vine", + "example_sentence_native": "Les raisins poussent sur la vigne.", + "example_sentence_english": "Grapes grow on the vine.", + "pos": "noun", + "word_frequency": 5547 + }, + { + "word": "vital", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vital", + "example_sentence_native": "L'eau est vitale pour la vie.", + "example_sentence_english": "Water is vital for life.", + "pos": "adjective", + "word_frequency": 5548 + }, + { + "word": "vogue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vogue", + "example_sentence_native": "Cette mode est en pleine vogue.", + "example_sentence_english": "This fashion is currently in vogue.", + "pos": "noun", + "word_frequency": 5549 + }, + { + "word": "édit", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "edict", + "example_sentence_native": "Le roi a publié un édit.", + "example_sentence_english": "The king issued an edict.", + "pos": "noun", + "word_frequency": 5550 + }, + { + "word": "élégance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elegance", + "example_sentence_native": "Elle a une élégance naturelle.", + "example_sentence_english": "She has a natural elegance.", + "pos": "noun", + "word_frequency": 5551 + }, + { + "word": "évacuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evacuate", + "example_sentence_native": "Il faut évacuer le bâtiment immédiatement.", + "example_sentence_english": "The building must be evacuated immediately.", + "pos": "verb", + "word_frequency": 5552 + }, + { + "word": "acceptable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acceptable", + "example_sentence_native": "Cette solution est acceptable.", + "example_sentence_english": "This solution is acceptable.", + "pos": "adjective", + "word_frequency": 5553 + }, + { + "word": "affichage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "display", + "example_sentence_native": "L'affichage des résultats est prévu demain.", + "example_sentence_english": "The display of results is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 5555 + }, + { + "word": "affreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "awful", + "example_sentence_native": "Le temps est affreux aujourd'hui.", + "example_sentence_english": "The weather is awful today.", + "pos": "adjective", + "word_frequency": 5556 + }, + { + "word": "aléatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "random", + "example_sentence_native": "Le choix était complètement aléatoire.", + "example_sentence_english": "The choice was completely random.", + "pos": "adjective", + "word_frequency": 5557 + }, + { + "word": "appelant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calling", + "example_sentence_native": "Le numéro appelant est inconnu.", + "example_sentence_english": "The calling number is unknown.", + "pos": "adjective", + "word_frequency": 5559 + }, + { + "word": "argentin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Argentinian", + "example_sentence_native": "Il est argentin.", + "example_sentence_english": "He is Argentinian.", + "pos": "adjective", + "word_frequency": 5560 + }, + { + "word": "atout", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asset;trump card", + "example_sentence_native": "Son expérience est un atout majeur.", + "example_sentence_english": "His experience is a major asset.", + "pos": "noun", + "word_frequency": 5562 + }, + { + "word": "aval", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approval;endorsement", + "example_sentence_native": "Nous attendons l'aval de la direction.", + "example_sentence_english": "We are waiting for the management's approval.", + "pos": "noun", + "word_frequency": 5563 + }, + { + "word": "balcon", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balcony", + "example_sentence_native": "L'appartement a un grand balcon.", + "example_sentence_english": "The apartment has a large balcony.", + "pos": "noun", + "word_frequency": 5564 + }, + { + "word": "battant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighting;determined", + "example_sentence_native": "C'est une personne très battante.", + "example_sentence_english": "She is a very determined person.", + "pos": "adjective", + "word_frequency": 5565 + }, + { + "word": "boom", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boom", + "example_sentence_native": "L'économie connaît un boom.", + "example_sentence_english": "The economy is experiencing a boom.", + "pos": "noun", + "word_frequency": 5567 + }, + { + "word": "bêtise", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foolishness;silly mistake", + "example_sentence_native": "Ne dis pas de bêtises.", + "example_sentence_english": "Don't say silly things.", + "pos": "noun", + "word_frequency": 5570 + }, + { + "word": "caché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hidden", + "example_sentence_native": "Le trésor est bien caché.", + "example_sentence_english": "The treasure is well hidden.", + "pos": "adjective", + "word_frequency": 5571 + }, + { + "word": "centime", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cent", + "example_sentence_native": "Ça coûte dix centimes.", + "example_sentence_english": "It costs ten cents.", + "pos": "noun", + "word_frequency": 5572 + }, + { + "word": "chancelier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chancellor", + "example_sentence_native": "La chancelière allemande a visité Paris.", + "example_sentence_english": "The German chancellor visited Paris.", + "pos": "noun", + "word_frequency": 5573 + }, + { + "word": "chaussette", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sock", + "example_sentence_native": "J'ai perdu une chaussette.", + "example_sentence_english": "I lost a sock.", + "pos": "noun", + "word_frequency": 5574 + }, + { + "word": "cheminée", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chimney;fireplace", + "example_sentence_native": "Il y a une cheminée dans le salon.", + "example_sentence_english": "There is a fireplace in the living room.", + "pos": "noun", + "word_frequency": 5575 + }, + { + "word": "cliquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to click", + "example_sentence_native": "Cliquez ici pour continuer.", + "example_sentence_english": "Click here to continue.", + "pos": "verb", + "word_frequency": 5577 + }, + { + "word": "colon", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonist;settler", + "example_sentence_native": "Les premiers colons sont arrivés au 17e siècle.", + "example_sentence_english": "The first colonists arrived in the 17th century.", + "pos": "noun", + "word_frequency": 5578 + }, + { + "word": "confronter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confront", + "example_sentence_native": "Il a dû confronter ses peurs.", + "example_sentence_english": "He had to confront his fears.", + "pos": "verb", + "word_frequency": 5579 + }, + { + "word": "connecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connected;online", + "example_sentence_native": "Je suis toujours connecté à internet.", + "example_sentence_english": "I am always connected to the internet.", + "pos": "adjective", + "word_frequency": 5580 + }, + { + "word": "convertir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convert", + "example_sentence_native": "Il veut convertir ses euros en dollars.", + "example_sentence_english": "He wants to convert his euros into dollars.", + "pos": "verb", + "word_frequency": 5581 + }, + { + "word": "corporation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corporation", + "example_sentence_native": "C'est une grande corporation internationale.", + "example_sentence_english": "It's a large international corporation.", + "pos": "noun", + "word_frequency": 5582 + }, + { + "word": "créativité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creativity", + "example_sentence_native": "La créativité est essentielle pour ce poste.", + "example_sentence_english": "Creativity is essential for this position.", + "pos": "noun", + "word_frequency": 5584 + }, + { + "word": "cuit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cooked", + "example_sentence_native": "Le poulet est bien cuit.", + "example_sentence_english": "The chicken is well cooked.", + "pos": "adjective", + "word_frequency": 5585 + }, + { + "word": "céleste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "celestial;heavenly", + "example_sentence_native": "Les corps célestes sont fascinants.", + "example_sentence_english": "Celestial bodies are fascinating.", + "pos": "adjective", + "word_frequency": 5587 + }, + { + "word": "danois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Danish", + "example_sentence_native": "Elle parle danois.", + "example_sentence_english": "She speaks Danish.", + "pos": "adjective", + "word_frequency": 5588 + }, + { + "word": "déco", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decor;decoration (colloquial)", + "example_sentence_native": "J'adore la déco de ton appartement.", + "example_sentence_english": "I love the decor of your apartment.", + "pos": "noun", + "word_frequency": 5589 + }, + { + "word": "déménagement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move;relocation", + "example_sentence_native": "Le déménagement est prévu pour samedi.", + "example_sentence_english": "The move is scheduled for Saturday.", + "pos": "noun", + "word_frequency": 5590 + }, + { + "word": "dérivé", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derivative;byproduct", + "example_sentence_native": "Le pétrole est un dérivé du charbon.", + "example_sentence_english": "Petroleum is a derivative of coal.", + "pos": "noun", + "word_frequency": 5591 + }, + { + "word": "désagréable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unpleasant;disagreeable", + "example_sentence_native": "Le temps est désagréable aujourd'hui.", + "example_sentence_english": "The weather is unpleasant today.", + "pos": "adjective", + "word_frequency": 5592 + }, + { + "word": "détecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to detect", + "example_sentence_native": "Il est difficile de détecter la fraude.", + "example_sentence_english": "It is difficult to detect fraud.", + "pos": "verb", + "word_frequency": 5593 + }, + { + "word": "efficacement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficiently;effectively", + "example_sentence_native": "Il travaille très efficacement.", + "example_sentence_english": "He works very efficiently.", + "pos": "adverb", + "word_frequency": 5594 + }, + { + "word": "enfermer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lock up;to shut in", + "example_sentence_native": "N'oubliez pas d'enfermer la porte.", + "example_sentence_english": "Don't forget to lock the door.", + "pos": "verb", + "word_frequency": 5595 + }, + { + "word": "enregistré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered;recorded", + "example_sentence_native": "Le colis est enregistré.", + "example_sentence_english": "The package is registered.", + "pos": "adjective", + "word_frequency": 5596 + }, + { + "word": "entrainement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;practice", + "example_sentence_native": "L'entrainement est intense.", + "example_sentence_english": "The training is intense.", + "pos": "noun", + "word_frequency": 5597 + }, + { + "word": "equipe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "team", + "example_sentence_native": "Notre equipe a gagné le match.", + "example_sentence_english": "Our team won the match.", + "pos": "noun", + "word_frequency": 5598 + }, + { + "word": "espionnage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "espionage;spying", + "example_sentence_native": "L'espionnage industriel est un crime grave.", + "example_sentence_english": "Industrial espionage is a serious crime.", + "pos": "noun", + "word_frequency": 5599 + }, + { + "word": "fixation", + "article_with_word": "la fixation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fixation;attachment", + "example_sentence_native": "La fixation de cette étagère est très solide.", + "example_sentence_english": "The fixation of this shelf is very solid.", + "pos": "noun", + "word_frequency": 5600 + }, + { + "word": "fouille", + "article_with_word": "la fouille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "search;frisk", + "example_sentence_native": "La police a effectué une fouille minutieuse du véhicule.", + "example_sentence_english": "The police conducted a thorough search of the vehicle.", + "pos": "noun", + "word_frequency": 5601 + }, + { + "word": "fracture", + "article_with_word": "la fracture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fracture", + "example_sentence_native": "Il a subi une fracture du bras après sa chute.", + "example_sentence_english": "He suffered a fracture of the arm after his fall.", + "pos": "noun", + "word_frequency": 5602 + }, + { + "word": "fusillade", + "article_with_word": "la fusillade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooting;gunfire", + "example_sentence_native": "Une fusillade a éclaté près du centre-ville.", + "example_sentence_english": "A shooting broke out near the city center.", + "pos": "noun", + "word_frequency": 5603 + }, + { + "word": "gage", + "article_with_word": "le gage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pledge;token;security", + "example_sentence_native": "Il a donné sa montre en gage pour le prêt.", + "example_sentence_english": "He gave his watch as security for the loan.", + "pos": "noun", + "word_frequency": 5604 + }, + { + "word": "générer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to generate", + "example_sentence_native": "Ce programme peut générer des rapports détaillés.", + "example_sentence_english": "This program can generate detailed reports.", + "pos": "verb", + "word_frequency": 5605 + }, + { + "word": "générosité", + "article_with_word": "la générosité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generosity", + "example_sentence_native": "Sa générosité est bien connue de tous.", + "example_sentence_english": "His generosity is well known to everyone.", + "pos": "noun", + "word_frequency": 5606 + }, + { + "word": "hospitalier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitable;hospital (adj.)", + "example_sentence_native": "Le personnel hospitalier est très dévoué.", + "example_sentence_english": "The hospital staff is very dedicated.", + "pos": "adjective", + "word_frequency": 5607 + }, + { + "word": "illustrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illustrate", + "example_sentence_native": "L'artiste a illustré le livre avec de belles images.", + "example_sentence_english": "The artist illustrated the book with beautiful pictures.", + "pos": "verb", + "word_frequency": 5609 + }, + { + "word": "impliqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involved;implicated", + "example_sentence_native": "Il est très impliqué dans son travail.", + "example_sentence_english": "He is very involved in his work.", + "pos": "adjective", + "word_frequency": 5610 + }, + { + "word": "incertitude", + "article_with_word": "l'incertitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertainty", + "example_sentence_native": "L'incertitude économique pèse sur les marchés.", + "example_sentence_english": "Economic uncertainty weighs on the markets.", + "pos": "noun", + "word_frequency": 5611 + }, + { + "word": "inciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incite;to encourage", + "example_sentence_native": "Il a incité les étudiants à participer au débat.", + "example_sentence_english": "He encouraged the students to participate in the debate.", + "pos": "verb", + "word_frequency": 5612 + }, + { + "word": "incontournable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "essential;unavoidable;must-see", + "example_sentence_native": "Ce musée est une visite incontournable à Paris.", + "example_sentence_english": "This museum is a must-see visit in Paris.", + "pos": "adjective", + "word_frequency": 5613 + }, + { + "word": "indemnité", + "article_with_word": "l'indemnité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indemnity;compensation;allowance", + "example_sentence_native": "Il a reçu une indemnité pour le préjudice subi.", + "example_sentence_english": "He received compensation for the damage suffered.", + "pos": "noun", + "word_frequency": 5614 + }, + { + "word": "maigre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin;lean", + "example_sentence_native": "Il est devenu très maigre après sa maladie.", + "example_sentence_english": "He became very thin after his illness.", + "pos": "adjective", + "word_frequency": 5617 + }, + { + "word": "menton", + "article_with_word": "le menton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chin", + "example_sentence_native": "Il a une petite cicatrice sur le menton.", + "example_sentence_english": "He has a small scar on his chin.", + "pos": "noun", + "word_frequency": 5619 + }, + { + "word": "mou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft;weak", + "example_sentence_native": "Ce coussin est très mou et confortable.", + "example_sentence_english": "This cushion is very soft and comfortable.", + "pos": "adjective", + "word_frequency": 5621 + }, + { + "word": "natation", + "article_with_word": "la natation", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming", + "example_sentence_native": "Elle pratique la natation tous les jours.", + "example_sentence_english": "She practices swimming every day.", + "pos": "noun", + "word_frequency": 5622 + }, + { + "word": "obscurité", + "article_with_word": "l'obscurité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "darkness;obscurity", + "example_sentence_native": "La pièce était plongée dans l'obscurité totale.", + "example_sentence_english": "The room was plunged into total darkness.", + "pos": "noun", + "word_frequency": 5625 + }, + { + "word": "opus", + "article_with_word": "l'opus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opus;work", + "example_sentence_native": "C'est le dernier opus de ce compositeur.", + "example_sentence_english": "This is the latest opus by this composer.", + "pos": "noun", + "word_frequency": 5626 + }, + { + "word": "organisateur", + "article_with_word": "l'organisateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organizer", + "example_sentence_native": "L'organisateur de l'événement a fait un excellent travail.", + "example_sentence_english": "The organizer of the event did an excellent job.", + "pos": "noun", + "word_frequency": 5627 + }, + { + "word": "pertinence", + "article_with_word": "la pertinence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevance;pertinence", + "example_sentence_native": "La pertinence de ses arguments est indéniable.", + "example_sentence_english": "The relevance of his arguments is undeniable.", + "pos": "noun", + "word_frequency": 5628 + }, + { + "word": "posture", + "article_with_word": "la posture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "posture;stance", + "example_sentence_native": "Il a une bonne posture quand il est assis.", + "example_sentence_english": "He has good posture when he is sitting.", + "pos": "noun", + "word_frequency": 5630 + }, + { + "word": "prescription", + "article_with_word": "la prescription", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescription;statute of limitations", + "example_sentence_native": "Le médecin a écrit une prescription pour des antibiotiques.", + "example_sentence_english": "The doctor wrote a prescription for antibiotics.", + "pos": "noun", + "word_frequency": 5631 + }, + { + "word": "précoce", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precocious;early", + "example_sentence_native": "Il a montré des signes de talent précoce pour la musique.", + "example_sentence_english": "He showed signs of early talent for music.", + "pos": "adjective", + "word_frequency": 5632 + }, + { + "word": "prélèvement", + "article_with_word": "le prélèvement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduction;sample;direct debit", + "example_sentence_native": "Le prélèvement automatique sera effectué le 5 du mois.", + "example_sentence_english": "The direct debit will be made on the 5th of the month.", + "pos": "noun", + "word_frequency": 5633 + }, + { + "word": "purée", + "article_with_word": "la purée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mash;puree", + "example_sentence_native": "J'adore la purée de pommes de terre.", + "example_sentence_english": "I love mashed potatoes.", + "pos": "noun", + "word_frequency": 5634 + }, + { + "word": "pénis", + "article_with_word": "le pénis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penis", + "example_sentence_native": "Le pénis est un organe reproducteur masculin.", + "example_sentence_english": "The penis is a male reproductive organ.", + "pos": "noun", + "word_frequency": 5635 + }, + { + "word": "reconstruire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rebuild;to reconstruct", + "example_sentence_native": "Ils doivent reconstruire la maison après l'incendie.", + "example_sentence_english": "They must rebuild the house after the fire.", + "pos": "verb", + "word_frequency": 5637 + }, + { + "word": "regroupement", + "article_with_word": "le regroupement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regrouping;consolidation", + "example_sentence_native": "Le regroupement des forces a été nécessaire pour la mission.", + "example_sentence_english": "The regrouping of forces was necessary for the mission.", + "pos": "noun", + "word_frequency": 5638 + }, + { + "word": "restreint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restricted;limited", + "example_sentence_native": "L'accès à cette zone est restreint au personnel autorisé.", + "example_sentence_english": "Access to this area is restricted to authorized personnel.", + "pos": "adjective", + "word_frequency": 5639 + }, + { + "word": "revivre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relive;to revive", + "example_sentence_native": "Elle a pu revivre les moments de son enfance.", + "example_sentence_english": "She was able to relive the moments of her childhood.", + "pos": "verb", + "word_frequency": 5640 + }, + { + "word": "rhétorique", + "article_with_word": "la rhétorique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rhetoric", + "example_sentence_native": "Son discours était plein de rhétorique vide.", + "example_sentence_english": "His speech was full of empty rhetoric.", + "pos": "noun", + "word_frequency": 5641 + }, + { + "word": "rival", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rival", + "example_sentence_native": "Les deux équipes sont des rivales éternelles.", + "example_sentence_english": "The two teams are eternal rivals.", + "pos": "adjective", + "word_frequency": 5642 + }, + { + "word": "répandre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spread;to scatter", + "example_sentence_native": "Il a répandu la nouvelle dans tout le village.", + "example_sentence_english": "He spread the news throughout the village.", + "pos": "verb", + "word_frequency": 5643 + }, + { + "word": "réparti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distributed;allocated", + "example_sentence_native": "Les tâches sont bien réparties entre les membres de l'équipe.", + "example_sentence_english": "The tasks are well distributed among the team members.", + "pos": "adjective", + "word_frequency": 5644 + }, + { + "word": "sandwich", + "article_with_word": "un sandwich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sandwich", + "example_sentence_native": "Je voudrais un sandwich au jambon, s'il vous plaît.", + "example_sentence_english": "I would like a ham sandwich, please.", + "pos": "noun", + "word_frequency": 5645 + }, + { + "word": "sobre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sober;restrained", + "example_sentence_native": "Il est resté sobre toute la soirée.", + "example_sentence_english": "He remained sober all evening.", + "pos": "adjective", + "word_frequency": 5646 + }, + { + "word": "stylo", + "article_with_word": "un stylo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pen", + "example_sentence_native": "J'ai besoin d'un stylo pour écrire.", + "example_sentence_english": "I need a pen to write.", + "pos": "noun", + "word_frequency": 5647 + }, + { + "word": "toxique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toxic", + "example_sentence_native": "Ce produit est toxique, ne le touchez pas.", + "example_sentence_english": "This product is toxic, do not touch it.", + "pos": "adjective", + "word_frequency": 5648 + }, + { + "word": "transférer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transfer", + "example_sentence_native": "Vous devez transférer les fichiers sur le nouveau disque dur.", + "example_sentence_english": "You must transfer the files to the new hard drive.", + "pos": "verb", + "word_frequency": 5649 + }, + { + "word": "téléchargement", + "article_with_word": "le téléchargement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "download", + "example_sentence_native": "Le téléchargement du logiciel est terminé.", + "example_sentence_english": "The software download is complete.", + "pos": "noun", + "word_frequency": 5650 + }, + { + "word": "vitre", + "article_with_word": "la vitre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "window pane;glass", + "example_sentence_native": "La balle a cassé la vitre de la fenêtre.", + "example_sentence_english": "The ball broke the window pane.", + "pos": "noun", + "word_frequency": 5652 + }, + { + "word": "voisine", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neighboring;adjacent", + "example_sentence_native": "La maison voisine est à vendre.", + "example_sentence_english": "The neighboring house is for sale.", + "pos": "adjective", + "word_frequency": 5653 + }, + { + "word": "vomir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vomit", + "example_sentence_native": "Il a commencé à vomir après avoir mangé quelque chose de mauvais.", + "example_sentence_english": "He started to vomit after eating something bad.", + "pos": "verb", + "word_frequency": 5654 + }, + { + "word": "alias", + "article_with_word": "un alias", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alias", + "example_sentence_native": "Il est connu sous l'alias de 'Le Renard'.", + "example_sentence_english": "He is known by the alias 'The Fox'.", + "pos": "noun", + "word_frequency": 5658 + }, + { + "word": "allier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ally;to combine", + "example_sentence_native": "Ils ont décidé d'allier leurs forces.", + "example_sentence_english": "They decided to combine their forces.", + "pos": "verb", + "word_frequency": 5659 + }, + { + "word": "archipel", + "article_with_word": "un archipel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archipelago", + "example_sentence_native": "Le Japon est un archipel.", + "example_sentence_english": "Japan is an archipelago.", + "pos": "noun", + "word_frequency": 5661 + }, + { + "word": "bactérie", + "article_with_word": "une bactérie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bacterium", + "example_sentence_native": "Les bactéries sont des micro-organismes.", + "example_sentence_english": "Bacteria are microorganisms.", + "pos": "noun", + "word_frequency": 5662 + }, + { + "word": "balancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swing;to balance;to throw", + "example_sentence_native": "Il a balancé la balle au chien.", + "example_sentence_english": "He threw the ball to the dog.", + "pos": "verb", + "word_frequency": 5663 + }, + { + "word": "brosse", + "article_with_word": "une brosse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brush", + "example_sentence_native": "J'ai besoin d'une brosse pour nettoyer mes chaussures.", + "example_sentence_english": "I need a brush to clean my shoes.", + "pos": "noun", + "word_frequency": 5666 + }, + { + "word": "caca", + "article_with_word": "le caca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "poop", + "example_sentence_native": "Le bébé a fait caca dans sa couche.", + "example_sentence_english": "The baby pooped in his diaper.", + "pos": "noun", + "word_frequency": 5667 + }, + { + "word": "clergé", + "article_with_word": "le clergé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clergy", + "example_sentence_native": "Le clergé a joué un rôle important dans l'histoire.", + "example_sentence_english": "The clergy played an important role in history.", + "pos": "noun", + "word_frequency": 5668 + }, + { + "word": "colonial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonial", + "example_sentence_native": "L'architecture coloniale est très belle.", + "example_sentence_english": "Colonial architecture is very beautiful.", + "pos": "adjective", + "word_frequency": 5670 + }, + { + "word": "coma", + "article_with_word": "le coma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coma", + "example_sentence_native": "Après l'accident, il est tombé dans le coma.", + "example_sentence_english": "After the accident, he fell into a coma.", + "pos": "noun", + "word_frequency": 5671 + }, + { + "word": "confession", + "article_with_word": "la confession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confession", + "example_sentence_native": "Sa confession a surpris tout le monde.", + "example_sentence_english": "His confession surprised everyone.", + "pos": "noun", + "word_frequency": 5672 + }, + { + "word": "conquérir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conquer", + "example_sentence_native": "Il a réussi à conquérir le cœur de la princesse.", + "example_sentence_english": "He managed to conquer the princess's heart.", + "pos": "verb", + "word_frequency": 5673 + }, + { + "word": "conservatoire", + "article_with_word": "le conservatoire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservatory (music;arts school)", + "example_sentence_native": "Elle étudie la musique au conservatoire.", + "example_sentence_english": "She studies music at the conservatory.", + "pos": "noun", + "word_frequency": 5674 + }, + { + "word": "contrepartie", + "article_with_word": "la contrepartie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpart;compensation", + "example_sentence_native": "En contrepartie de son aide, il a demandé un service.", + "example_sentence_english": "In return for his help, he asked for a favor.", + "pos": "noun", + "word_frequency": 5675 + }, + { + "word": "controverse", + "article_with_word": "la controverse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversy", + "example_sentence_native": "Cette décision a suscité une vive controverse.", + "example_sentence_english": "This decision sparked a strong controversy.", + "pos": "noun", + "word_frequency": 5676 + }, + { + "word": "coutume", + "article_with_word": "la coutume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "custom;tradition", + "example_sentence_native": "C'est une vieille coutume de la région.", + "example_sentence_english": "It's an old custom of the region.", + "pos": "noun", + "word_frequency": 5678 + }, + { + "word": "crayon", + "article_with_word": "un crayon", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pencil", + "example_sentence_native": "J'ai besoin d'un crayon pour dessiner.", + "example_sentence_english": "I need a pencil to draw.", + "pos": "noun", + "word_frequency": 5679 + }, + { + "word": "demandeur", + "article_with_word": "le demandeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicant", + "example_sentence_native": "Le demandeur a présenté sa requête au tribunal.", + "example_sentence_english": "The applicant presented his request to the court.", + "pos": "noun", + "word_frequency": 5680 + }, + { + "word": "dorénavant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "henceforth", + "example_sentence_native": "Dorénavant, toutes les réunions auront lieu le lundi.", + "example_sentence_english": "Henceforth, all meetings will take place on Monday.", + "pos": "adverb", + "word_frequency": 5681 + }, + { + "word": "doubler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to double;to overtake", + "example_sentence_native": "Il a réussi à doubler la voiture devant lui.", + "example_sentence_english": "He managed to overtake the car in front of him.", + "pos": "verb", + "word_frequency": 5682 + }, + { + "word": "défunt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceased;late", + "example_sentence_native": "La défunte reine était très aimée.", + "example_sentence_english": "The late queen was much loved.", + "pos": "adjective", + "word_frequency": 5683 + }, + { + "word": "détourner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to divert;to hijack", + "example_sentence_native": "Ils ont tenté de détourner l'avion.", + "example_sentence_english": "They tried to hijack the plane.", + "pos": "verb", + "word_frequency": 5684 + }, + { + "word": "engin", + "article_with_word": "un engin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device;machine;craft", + "example_sentence_native": "Cet engin est utilisé pour la construction.", + "example_sentence_english": "This device is used for construction.", + "pos": "noun", + "word_frequency": 5685 + }, + { + "word": "existant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existing", + "example_sentence_native": "Nous devons évaluer les ressources existantes.", + "example_sentence_english": "We must evaluate the existing resources.", + "pos": "adjective", + "word_frequency": 5686 + }, + { + "word": "extinction", + "article_with_word": "l'extinction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extinction", + "example_sentence_native": "De nombreuses espèces sont menacées d'extinction.", + "example_sentence_english": "Many species are threatened with extinction.", + "pos": "noun", + "word_frequency": 5687 + }, + { + "word": "extraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extract", + "example_sentence_native": "Il faut extraire les données de ce fichier.", + "example_sentence_english": "We need to extract the data from this file.", + "pos": "verb", + "word_frequency": 5688 + }, + { + "word": "fair", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair", + "example_sentence_native": "C'est une décision fair pour tout le monde.", + "example_sentence_english": "It's a fair decision for everyone.", + "pos": "adjective", + "word_frequency": 5689 + }, + { + "word": "fake", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fake", + "example_sentence_native": "Ces informations sont complètement fake.", + "example_sentence_english": "This information is completely fake.", + "pos": "adjective", + "word_frequency": 5690 + }, + { + "word": "fonte", + "article_with_word": "la fonte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melting;cast iron", + "example_sentence_native": "La fonte des glaces est une préoccupation majeure.", + "example_sentence_english": "The melting of ice is a major concern.", + "pos": "noun", + "word_frequency": 5691 + }, + { + "word": "francophonie", + "article_with_word": "la Francophonie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Francophonie;French-speaking world", + "example_sentence_native": "La Francophonie promeut la langue française et la diversité culturelle.", + "example_sentence_english": "The Francophonie promotes the French language and cultural diversity.", + "pos": "noun", + "word_frequency": 5692 + }, + { + "word": "gramme", + "article_with_word": "un gramme", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gram", + "example_sentence_native": "J'ai besoin de cent grammes de farine.", + "example_sentence_english": "I need one hundred grams of flour.", + "pos": "noun", + "word_frequency": 5695 + }, + { + "word": "honorable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honorable;respectable", + "example_sentence_native": "C'est une personne très honorable.", + "example_sentence_english": "He is a very honorable person.", + "pos": "adjective", + "word_frequency": 5696 + }, + { + "word": "imprimerie", + "article_with_word": "l'imprimerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "printing house;printing industry", + "example_sentence_native": "L'imprimerie a révolutionné la diffusion du savoir.", + "example_sentence_english": "The printing press revolutionized the spread of knowledge.", + "pos": "noun", + "word_frequency": 5697 + }, + { + "word": "indépendamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independently", + "example_sentence_native": "Ils ont agi indépendamment les uns des autres.", + "example_sentence_english": "They acted independently of each other.", + "pos": "adverb", + "word_frequency": 5699 + }, + { + "word": "infiniment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infinitely;immensely", + "example_sentence_native": "Je vous remercie infiniment pour votre aide.", + "example_sentence_english": "I thank you immensely for your help.", + "pos": "adverb", + "word_frequency": 5700 + }, + { + "word": "inquiétant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worrying;disturbing", + "example_sentence_native": "La situation est de plus en plus inquiétante.", + "example_sentence_english": "The situation is becoming more and more worrying.", + "pos": "adjective", + "word_frequency": 5701 + }, + { + "word": "jurisprudence", + "article_with_word": "la jurisprudence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisprudence;case law", + "example_sentence_native": "La jurisprudence est essentielle pour l'interprétation des lois.", + "example_sentence_english": "Jurisprudence is essential for the interpretation of laws.", + "pos": "noun", + "word_frequency": 5704 + }, + { + "word": "lignée", + "article_with_word": "la lignée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lineage;bloodline", + "example_sentence_native": "Il est le dernier de sa lignée.", + "example_sentence_english": "He is the last of his lineage.", + "pos": "noun", + "word_frequency": 5707 + }, + { + "word": "limitation", + "article_with_word": "la limitation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limitation;restriction", + "example_sentence_native": "Il y a une limitation de vitesse sur cette route.", + "example_sentence_english": "There is a speed limit on this road.", + "pos": "noun", + "word_frequency": 5708 + }, + { + "word": "localité", + "article_with_word": "la localité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locality;place", + "example_sentence_native": "Cette localité est connue pour son marché.", + "example_sentence_english": "This locality is known for its market.", + "pos": "noun", + "word_frequency": 5709 + }, + { + "word": "lycéen", + "article_with_word": "un lycéen", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "high school student", + "example_sentence_native": "Mon frère est lycéen à Paris.", + "example_sentence_english": "My brother is a high school student in Paris.", + "pos": "noun", + "word_frequency": 5711 + }, + { + "word": "manipuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manipulate;to handle", + "example_sentence_native": "Il faut manipuler ces produits avec précaution.", + "example_sentence_english": "These products must be handled with care.", + "pos": "verb", + "word_frequency": 5713 + }, + { + "word": "matelas", + "article_with_word": "un matelas", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mattress", + "example_sentence_native": "J'ai acheté un nouveau matelas pour mon lit.", + "example_sentence_english": "I bought a new mattress for my bed.", + "pos": "noun", + "word_frequency": 5715 + }, + { + "word": "mousse", + "article_with_word": "la mousse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foam;mousse", + "example_sentence_native": "Il y a de la mousse sur la bière.", + "example_sentence_english": "There is foam on the beer.", + "pos": "noun", + "word_frequency": 5717 + }, + { + "word": "occupant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupying", + "example_sentence_native": "La force occupante a établi un couvre-feu.", + "example_sentence_english": "The occupying force established a curfew.", + "pos": "adjective", + "word_frequency": 5720 + }, + { + "word": "parade", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parade", + "example_sentence_native": "Nous avons regardé la parade dans la rue.", + "example_sentence_english": "We watched the parade in the street.", + "pos": "noun", + "word_frequency": 5721 + }, + { + "word": "pilule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pill", + "example_sentence_native": "Il doit prendre une pilule tous les jours.", + "example_sentence_english": "He has to take a pill every day.", + "pos": "noun", + "word_frequency": 5726 + }, + { + "word": "préliminaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preliminary", + "example_sentence_native": "Nous avons eu une discussion préliminaire sur le projet.", + "example_sentence_english": "We had a preliminary discussion about the project.", + "pos": "adjective", + "word_frequency": 5727 + }, + { + "word": "rail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rail", + "example_sentence_native": "Le train roule sur les rails.", + "example_sentence_english": "The train runs on the rails.", + "pos": "noun", + "word_frequency": 5728 + }, + { + "word": "randonnée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hike", + "example_sentence_native": "Nous avons fait une longue randonnée en montagne.", + "example_sentence_english": "We went on a long hike in the mountains.", + "pos": "noun", + "word_frequency": 5729 + }, + { + "word": "renouveau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewal", + "example_sentence_native": "La ville connaît un renouveau culturel.", + "example_sentence_english": "The city is experiencing a cultural revival.", + "pos": "noun", + "word_frequency": 5730 + }, + { + "word": "rentabilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profitability", + "example_sentence_native": "L'entreprise doit améliorer sa rentabilité.", + "example_sentence_english": "The company must improve its profitability.", + "pos": "noun", + "word_frequency": 5731 + }, + { + "word": "rentable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profitable", + "example_sentence_native": "Ce projet n'est pas très rentable.", + "example_sentence_english": "This project is not very profitable.", + "pos": "adjective", + "word_frequency": 5732 + }, + { + "word": "rétablissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recovery", + "example_sentence_native": "Son rétablissement après l'opération a été rapide.", + "example_sentence_english": "His recovery after the operation was quick.", + "pos": "noun", + "word_frequency": 5733 + }, + { + "word": "saluer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to greet", + "example_sentence_native": "Il a salué ses amis en entrant.", + "example_sentence_english": "He greeted his friends upon entering.", + "pos": "verb", + "word_frequency": 5734 + }, + { + "word": "savon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soap", + "example_sentence_native": "J'ai acheté un nouveau savon pour la douche.", + "example_sentence_english": "I bought a new soap for the shower.", + "pos": "noun", + "word_frequency": 5736 + }, + { + "word": "soudainement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suddenly", + "example_sentence_native": "Le chien a soudainement aboyé.", + "example_sentence_english": "The dog suddenly barked.", + "pos": "adverb", + "word_frequency": 5739 + }, + { + "word": "square", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "square (public)", + "example_sentence_native": "Les enfants jouent dans le square.", + "example_sentence_english": "The children are playing in the square.", + "pos": "noun", + "word_frequency": 5741 + }, + { + "word": "streaming", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "streaming", + "example_sentence_native": "Je regarde des films en streaming.", + "example_sentence_english": "I watch movies by streaming.", + "pos": "noun", + "word_frequency": 5743 + }, + { + "word": "surmonter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overcome", + "example_sentence_native": "Il a réussi à surmonter ses peurs.", + "example_sentence_english": "He managed to overcome his fears.", + "pos": "verb", + "word_frequency": 5744 + }, + { + "word": "tag", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tag (graffiti;label)", + "example_sentence_native": "Il y a un nouveau tag sur le mur.", + "example_sentence_english": "There's a new tag on the wall.", + "pos": "noun", + "word_frequency": 5745 + }, + { + "word": "tireur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooter", + "example_sentence_native": "Le tireur a visé la cible avec précision.", + "example_sentence_english": "The shooter aimed at the target with precision.", + "pos": "noun", + "word_frequency": 5746 + }, + { + "word": "trêve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truce", + "example_sentence_native": "Les deux parties ont déclaré une trêve.", + "example_sentence_english": "Both parties declared a truce.", + "pos": "noun", + "word_frequency": 5747 + }, + { + "word": "voisinage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighborhood", + "example_sentence_native": "Il y a un nouveau parc dans le voisinage.", + "example_sentence_english": "There is a new park in the neighborhood.", + "pos": "noun", + "word_frequency": 5750 + }, + { + "word": "accumulation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulation", + "example_sentence_native": "L'accumulation de déchets est un problème.", + "example_sentence_english": "The accumulation of waste is a problem.", + "pos": "noun", + "word_frequency": 5753 + }, + { + "word": "accélération", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceleration", + "example_sentence_native": "L'accélération du véhicule était impressionnante.", + "example_sentence_english": "The vehicle's acceleration was impressive.", + "pos": "noun", + "word_frequency": 5754 + }, + { + "word": "cavalier", + "article_with_word": "le cavalier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rider;knight (chess)", + "example_sentence_native": "Le cavalier a sauté par-dessus l'obstacle.", + "example_sentence_english": "The rider jumped over the obstacle.", + "pos": "noun", + "word_frequency": 5760 + }, + { + "word": "change", + "article_with_word": "le change", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "change;exchange", + "example_sentence_native": "Je dois faire du change pour des euros.", + "example_sentence_english": "I need to exchange for euros.", + "pos": "noun", + "word_frequency": 5761 + }, + { + "word": "citoyenneté", + "article_with_word": "la citoyenneté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citizenship", + "example_sentence_native": "Il a obtenu la citoyenneté française.", + "example_sentence_english": "He obtained French citizenship.", + "pos": "noun", + "word_frequency": 5763 + }, + { + "word": "clown", + "article_with_word": "le clown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clown", + "example_sentence_native": "Le clown a fait rire les enfants.", + "example_sentence_english": "The clown made the children laugh.", + "pos": "noun", + "word_frequency": 5764 + }, + { + "word": "combiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to combine", + "example_sentence_native": "Il faut combiner les ingrédients.", + "example_sentence_english": "You need to combine the ingredients.", + "pos": "verb", + "word_frequency": 5765 + }, + { + "word": "construit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "built;constructed", + "example_sentence_native": "Ce bâtiment est très bien construit.", + "example_sentence_english": "This building is very well built.", + "pos": "adjective", + "word_frequency": 5766 + }, + { + "word": "contrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to counter;to oppose", + "example_sentence_native": "Il a essayé de contrer l'attaque.", + "example_sentence_english": "He tried to counter the attack.", + "pos": "verb", + "word_frequency": 5767 + }, + { + "word": "coq", + "article_with_word": "le coq", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rooster", + "example_sentence_native": "Le coq chante au lever du soleil.", + "example_sentence_english": "The rooster crows at sunrise.", + "pos": "noun", + "word_frequency": 5768 + }, + { + "word": "deal", + "article_with_word": "le deal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deal;agreement", + "example_sentence_native": "Ils ont conclu un bon deal.", + "example_sentence_english": "They made a good deal.", + "pos": "noun", + "word_frequency": 5769 + }, + { + "word": "doter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to endow;to equip", + "example_sentence_native": "La nature l'a doté d'un grand talent.", + "example_sentence_english": "Nature endowed him with great talent.", + "pos": "verb", + "word_frequency": 5770 + }, + { + "word": "dresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to train;to set up;to draw up", + "example_sentence_native": "Il a dressé son chien à s'asseoir.", + "example_sentence_english": "He trained his dog to sit.", + "pos": "verb", + "word_frequency": 5771 + }, + { + "word": "déclencher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trigger;to unleash", + "example_sentence_native": "L'incident a déclenché une crise.", + "example_sentence_english": "The incident triggered a crisis.", + "pos": "verb", + "word_frequency": 5772 + }, + { + "word": "dépêche", + "article_with_word": "la dépêche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispatch;news report", + "example_sentence_native": "Nous avons reçu une dépêche urgente.", + "example_sentence_english": "We received an urgent dispatch.", + "pos": "noun", + "word_frequency": 5773 + }, + { + "word": "désordre", + "article_with_word": "le désordre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disorder;mess", + "example_sentence_native": "Sa chambre est toujours en désordre.", + "example_sentence_english": "His room is always in a mess.", + "pos": "noun", + "word_frequency": 5774 + }, + { + "word": "emprise", + "article_with_word": "l'emprise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grip;hold;influence", + "example_sentence_native": "Il est sous l'emprise de cette personne.", + "example_sentence_english": "He is under the influence of that person.", + "pos": "noun", + "word_frequency": 5775 + }, + { + "word": "environnemental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmental", + "example_sentence_native": "C'est un problème environnemental majeur.", + "example_sentence_english": "This is a major environmental problem.", + "pos": "adjective", + "word_frequency": 5776 + }, + { + "word": "exclure", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exclude", + "example_sentence_native": "Ils ont décidé de l'exclure du groupe.", + "example_sentence_english": "They decided to exclude him from the group.", + "pos": "verb", + "word_frequency": 5777 + }, + { + "word": "financièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financially", + "example_sentence_native": "Il est financièrement indépendant.", + "example_sentence_english": "He is financially independent.", + "pos": "adverb", + "word_frequency": 5778 + }, + { + "word": "fossé", + "article_with_word": "le fossé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ditch;gap", + "example_sentence_native": "Il y a un fossé entre les riches et les pauvres.", + "example_sentence_english": "There is a gap between the rich and the poor.", + "pos": "noun", + "word_frequency": 5780 + }, + { + "word": "fragment", + "article_with_word": "le fragment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragment", + "example_sentence_native": "Nous avons trouvé un fragment de poterie.", + "example_sentence_english": "We found a fragment of pottery.", + "pos": "noun", + "word_frequency": 5781 + }, + { + "word": "fréquentation", + "article_with_word": "la fréquentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attendance;frequenting;company", + "example_sentence_native": "La fréquentation de ce club a diminué.", + "example_sentence_english": "The attendance at this club has decreased.", + "pos": "noun", + "word_frequency": 5782 + }, + { + "word": "furieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furious", + "example_sentence_native": "Il était furieux de la décision.", + "example_sentence_english": "He was furious about the decision.", + "pos": "adjective", + "word_frequency": 5783 + }, + { + "word": "graisse", + "article_with_word": "la graisse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fat;grease", + "example_sentence_native": "Il faut éviter les aliments riches en graisse.", + "example_sentence_english": "You should avoid foods high in fat.", + "pos": "noun", + "word_frequency": 5784 + }, + { + "word": "gratter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scratch;to scrape", + "example_sentence_native": "Le chat aime gratter le canapé.", + "example_sentence_english": "The cat likes to scratch the sofa.", + "pos": "verb", + "word_frequency": 5785 + }, + { + "word": "guérison", + "article_with_word": "la guérison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healing;recovery;cure", + "example_sentence_native": "Sa guérison a été rapide.", + "example_sentence_english": "His recovery was quick.", + "pos": "noun", + "word_frequency": 5786 + }, + { + "word": "gène", + "article_with_word": "la gêne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discomfort;embarrassment", + "example_sentence_native": "Je ressens une légère gêne au genou.", + "example_sentence_english": "I feel a slight discomfort in my knee.", + "pos": "noun", + "word_frequency": 5787 + }, + { + "word": "habitué", + "article_with_word": "l'habitué", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regular;patron", + "example_sentence_native": "C'est un habitué de ce café.", + "example_sentence_english": "He's a regular at this cafe.", + "pos": "noun", + "word_frequency": 5788 + }, + { + "word": "honnêteté", + "article_with_word": "l'honnêteté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honesty", + "example_sentence_native": "L'honnêteté est une qualité importante.", + "example_sentence_english": "Honesty is an important quality.", + "pos": "noun", + "word_frequency": 5791 + }, + { + "word": "hypocrisie", + "article_with_word": "l'hypocrisie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypocrisy", + "example_sentence_native": "Son discours était plein d'hypocrisie.", + "example_sentence_english": "His speech was full of hypocrisy.", + "pos": "noun", + "word_frequency": 5792 + }, + { + "word": "indirectement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indirectly", + "example_sentence_native": "Il a été affecté indirectement par la crise.", + "example_sentence_english": "He was indirectly affected by the crisis.", + "pos": "adverb", + "word_frequency": 5793 + }, + { + "word": "insurrection", + "article_with_word": "l'insurrection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurrection", + "example_sentence_native": "L'insurrection a été violemment réprimée.", + "example_sentence_english": "The insurrection was violently suppressed.", + "pos": "noun", + "word_frequency": 5794 + }, + { + "word": "jusqu'alors", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "until then;up to that point", + "example_sentence_native": "Jusqu'alors, tout allait bien.", + "example_sentence_english": "Until then, everything was fine.", + "pos": "adverb", + "word_frequency": 5797 + }, + { + "word": "light", + "article_with_word": "le light", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light (low-calorie)", + "example_sentence_native": "Je préfère le soda light.", + "example_sentence_english": "I prefer light soda.", + "pos": "noun", + "word_frequency": 5799 + }, + { + "word": "marina", + "article_with_word": "la marina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marina", + "example_sentence_native": "Nous avons amarré notre bateau à la marina.", + "example_sentence_english": "We moored our boat at the marina.", + "pos": "noun", + "word_frequency": 5800 + }, + { + "word": "marquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striking", + "example_sentence_native": "Ce fut un événement marquant dans sa vie.", + "example_sentence_english": "It was a striking event in his life.", + "pos": "adjective", + "word_frequency": 5801 + }, + { + "word": "mature", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mature", + "example_sentence_native": "Elle est très mature pour son âge.", + "example_sentence_english": "She is very mature for her age.", + "pos": "adjective", + "word_frequency": 5803 + }, + { + "word": "metal", + "article_with_word": "le métal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "metal", + "example_sentence_native": "Ce pont est fait de métal.", + "example_sentence_english": "This bridge is made of metal.", + "pos": "noun", + "word_frequency": 5804 + }, + { + "word": "meurtrier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "murderous", + "example_sentence_native": "Il a commis un acte meurtrier.", + "example_sentence_english": "He committed a murderous act.", + "pos": "adjective", + "word_frequency": 5805 + }, + { + "word": "modérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to moderate", + "example_sentence_native": "Il faut modérer ses propos.", + "example_sentence_english": "One must moderate one's words.", + "pos": "verb", + "word_frequency": 5806 + }, + { + "word": "nièce", + "article_with_word": "la nièce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "niece", + "example_sentence_native": "Ma nièce vient nous rendre visite ce week-end.", + "example_sentence_english": "My niece is coming to visit us this weekend.", + "pos": "noun", + "word_frequency": 5807 + }, + { + "word": "optimiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimistic", + "example_sentence_native": "Elle est toujours très optimiste.", + "example_sentence_english": "She is always very optimistic.", + "pos": "adjective", + "word_frequency": 5808 + }, + { + "word": "percer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pierce", + "example_sentence_native": "Il a réussi à percer le mur.", + "example_sentence_english": "He managed to pierce the wall.", + "pos": "verb", + "word_frequency": 5809 + }, + { + "word": "pin", + "article_with_word": "le pin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pine tree", + "example_sentence_native": "La forêt est pleine de pins.", + "example_sentence_english": "The forest is full of pine trees.", + "pos": "noun", + "word_frequency": 5810 + }, + { + "word": "plaie", + "article_with_word": "la plaie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wound", + "example_sentence_native": "Il a une plaie ouverte au bras.", + "example_sentence_english": "He has an open wound on his arm.", + "pos": "noun", + "word_frequency": 5811 + }, + { + "word": "platine", + "article_with_word": "le platine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "platinum", + "example_sentence_native": "Le platine est un métal précieux.", + "example_sentence_english": "Platinum is a precious metal.", + "pos": "noun", + "word_frequency": 5812 + }, + { + "word": "polir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to polish", + "example_sentence_native": "Il faut polir l'argent pour le faire briller.", + "example_sentence_english": "You have to polish the silver to make it shine.", + "pos": "verb", + "word_frequency": 5814 + }, + { + "word": "priver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deprive", + "example_sentence_native": "On ne peut pas priver les enfants de nourriture.", + "example_sentence_english": "You cannot deprive children of food.", + "pos": "verb", + "word_frequency": 5815 + }, + { + "word": "ramasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pick up", + "example_sentence_native": "Peux-tu ramasser tes jouets s'il te plaît ?", + "example_sentence_english": "Can you pick up your toys please?", + "pos": "verb", + "word_frequency": 5816 + }, + { + "word": "rapidité", + "article_with_word": "la rapidité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed", + "example_sentence_native": "Il a été impressionné par la rapidité de sa réaction.", + "example_sentence_english": "He was impressed by the rapidity of his reaction.", + "pos": "noun", + "word_frequency": 5817 + }, + { + "word": "redonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give back", + "example_sentence_native": "Il faut lui redonner espoir.", + "example_sentence_english": "We must give him back hope.", + "pos": "verb", + "word_frequency": 5818 + }, + { + "word": "réalisme", + "article_with_word": "le réalisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realism", + "example_sentence_native": "Son œuvre est marquée par un grand réalisme.", + "example_sentence_english": "His work is marked by great realism.", + "pos": "noun", + "word_frequency": 5821 + }, + { + "word": "réuni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "united", + "example_sentence_native": "La famille était réunie pour Noël.", + "example_sentence_english": "The family was united for Christmas.", + "pos": "adjective", + "word_frequency": 5822 + }, + { + "word": "sensiblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significantly", + "example_sentence_native": "La situation s'est sensiblement améliorée.", + "example_sentence_english": "The situation has significantly improved.", + "pos": "adverb", + "word_frequency": 5824 + }, + { + "word": "supériorité", + "article_with_word": "la supériorité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superiority", + "example_sentence_native": "Il a démontré sa supériorité technique.", + "example_sentence_english": "He demonstrated his technical superiority.", + "pos": "noun", + "word_frequency": 5826 + }, + { + "word": "sursis", + "article_with_word": "le sursis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprieve", + "example_sentence_native": "Il a obtenu un sursis de sa peine.", + "example_sentence_english": "He obtained a suspended sentence for his penalty.", + "pos": "noun", + "word_frequency": 5827 + }, + { + "word": "taf", + "article_with_word": "le taf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work (slang)", + "example_sentence_native": "J'ai beaucoup de taf à faire aujourd'hui.", + "example_sentence_english": "I have a lot of work to do today.", + "pos": "noun", + "word_frequency": 5828 + }, + { + "word": "tarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to delay", + "example_sentence_native": "Il ne faut pas tarder à prendre une décision.", + "example_sentence_english": "One must not delay in making a decision.", + "pos": "verb", + "word_frequency": 5829 + }, + { + "word": "temporairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporarily", + "example_sentence_native": "Le magasin est fermé temporairement.", + "example_sentence_english": "The store is temporarily closed.", + "pos": "adverb", + "word_frequency": 5830 + }, + { + "word": "teneur", + "article_with_word": "la teneur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "content", + "example_sentence_native": "La teneur en sucre de ce produit est élevée.", + "example_sentence_english": "The sugar content of this product is high.", + "pos": "noun", + "word_frequency": 5831 + }, + { + "word": "traditionnellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traditionally", + "example_sentence_native": "Noël est traditionnellement fêté en famille.", + "example_sentence_english": "Christmas is traditionally celebrated with family.", + "pos": "adverb", + "word_frequency": 5833 + }, + { + "word": "vanne", + "article_with_word": "la vanne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valve", + "example_sentence_native": "Il a fermé la vanne d'eau.", + "example_sentence_english": "He closed the water valve.", + "pos": "noun", + "word_frequency": 5835 + }, + { + "word": "vernis", + "article_with_word": "le vernis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "varnish", + "example_sentence_native": "Elle a mis du vernis sur ses ongles.", + "example_sentence_english": "She put nail polish on her nails.", + "pos": "noun", + "word_frequency": 5836 + }, + { + "word": "écarter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move aside;to dismiss", + "example_sentence_native": "Il a écarté la chaise pour passer.", + "example_sentence_english": "He moved the chair aside to pass.", + "pos": "verb", + "word_frequency": 5841 + }, + { + "word": "épicerie", + "article_with_word": "une épicerie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grocery store", + "example_sentence_native": "Je vais à l'épicerie acheter du pain.", + "example_sentence_english": "I'm going to the grocery store to buy some bread.", + "pos": "noun", + "word_frequency": 5842 + }, + { + "word": "a", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "has (from avoir)", + "example_sentence_native": "Il a un nouveau livre.", + "example_sentence_english": "He has a new book.", + "pos": "verb", + "word_frequency": 5843 + }, + { + "word": "abriter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shelter;to house", + "example_sentence_native": "L'arbre nous a abrités de la pluie.", + "example_sentence_english": "The tree sheltered us from the rain.", + "pos": "verb", + "word_frequency": 5844 + }, + { + "word": "accouchement", + "article_with_word": "un accouchement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "childbirth;delivery", + "example_sentence_native": "L'accouchement s'est bien passé.", + "example_sentence_english": "The delivery went well.", + "pos": "noun", + "word_frequency": 5845 + }, + { + "word": "adapté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adapted;suitable", + "example_sentence_native": "Ce logiciel est adapté à nos besoins.", + "example_sentence_english": "This software is suitable for our needs.", + "pos": "adjective", + "word_frequency": 5846 + }, + { + "word": "admiration", + "article_with_word": "l'admiration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admiration", + "example_sentence_native": "Elle a une grande admiration pour son professeur.", + "example_sentence_english": "She has great admiration for her teacher.", + "pos": "noun", + "word_frequency": 5847 + }, + { + "word": "aigle", + "article_with_word": "un aigle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eagle", + "example_sentence_native": "Un aigle planait au-dessus des montagnes.", + "example_sentence_english": "An eagle was soaring above the mountains.", + "pos": "noun", + "word_frequency": 5848 + }, + { + "word": "antisémitisme", + "article_with_word": "l'antisémitisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemitism", + "example_sentence_native": "La lutte contre l'antisémitisme est essentielle.", + "example_sentence_english": "The fight against antisemitism is essential.", + "pos": "noun", + "word_frequency": 5849 + }, + { + "word": "archéologie", + "article_with_word": "l'archéologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeology", + "example_sentence_native": "Elle étudie l'archéologie à l'université.", + "example_sentence_english": "She studies archaeology at university.", + "pos": "noun", + "word_frequency": 5851 + }, + { + "word": "assassin", + "article_with_word": "un assassin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assassin;murderer", + "example_sentence_native": "La police recherche l'assassin.", + "example_sentence_english": "The police are looking for the murderer.", + "pos": "noun", + "word_frequency": 5852 + }, + { + "word": "bourgeoisie", + "article_with_word": "la bourgeoisie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bourgeoisie", + "example_sentence_native": "La bourgeoisie a joué un rôle clé dans l'histoire.", + "example_sentence_english": "The bourgeoisie played a key role in history.", + "pos": "noun", + "word_frequency": 5854 + }, + { + "word": "bétail", + "article_with_word": "le bétail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "livestock;cattle", + "example_sentence_native": "L'éleveur s'occupe de son bétail.", + "example_sentence_english": "The farmer takes care of his livestock.", + "pos": "noun", + "word_frequency": 5855 + }, + { + "word": "ciment", + "article_with_word": "le ciment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cement", + "example_sentence_native": "Ils ont utilisé du ciment pour construire le mur.", + "example_sentence_english": "They used cement to build the wall.", + "pos": "noun", + "word_frequency": 5859 + }, + { + "word": "cocktail", + "article_with_word": "un cocktail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cocktail", + "example_sentence_native": "J'ai commandé un cocktail au bar.", + "example_sentence_english": "I ordered a cocktail at the bar.", + "pos": "noun", + "word_frequency": 5860 + }, + { + "word": "commercialisation", + "article_with_word": "la commercialisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marketing;commercialization", + "example_sentence_native": "La commercialisation du produit est prévue pour l'année prochaine.", + "example_sentence_english": "The commercialization of the product is planned for next year.", + "pos": "noun", + "word_frequency": 5861 + }, + { + "word": "conformité", + "article_with_word": "la conformité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conformity;compliance", + "example_sentence_native": "Le produit est en conformité avec les normes européennes.", + "example_sentence_english": "The product is in conformity with European standards.", + "pos": "noun", + "word_frequency": 5862 + }, + { + "word": "constance", + "article_with_word": "la constance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constancy;steadfastness", + "example_sentence_native": "Il a fait preuve d'une grande constance dans son travail.", + "example_sentence_english": "He showed great constancy in his work.", + "pos": "noun", + "word_frequency": 5863 + }, + { + "word": "craquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crack;to snap;to give in", + "example_sentence_native": "Le vieux plancher a craqué sous ses pas.", + "example_sentence_english": "The old floor cracked under his steps.", + "pos": "verb", + "word_frequency": 5864 + }, + { + "word": "doyen", + "article_with_word": "le doyen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dean;elder", + "example_sentence_native": "Le doyen de la faculté a annoncé sa retraite.", + "example_sentence_english": "The dean of the faculty announced his retirement.", + "pos": "noun", + "word_frequency": 5867 + }, + { + "word": "démissionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resign", + "example_sentence_native": "Il a décidé de démissionner de son poste.", + "example_sentence_english": "He decided to resign from his position.", + "pos": "verb", + "word_frequency": 5869 + }, + { + "word": "fillette", + "article_with_word": "une fillette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little girl", + "example_sentence_native": "Une petite fillette jouait dans le parc.", + "example_sentence_english": "A little girl was playing in the park.", + "pos": "noun", + "word_frequency": 5871 + }, + { + "word": "foncier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "land-related;property-related", + "example_sentence_native": "Ils ont des problèmes fonciers.", + "example_sentence_english": "They have land-related problems.", + "pos": "adjective", + "word_frequency": 5872 + }, + { + "word": "formulaire", + "article_with_word": "un formulaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "form (document)", + "example_sentence_native": "Veuillez remplir ce formulaire.", + "example_sentence_english": "Please fill out this form.", + "pos": "noun", + "word_frequency": 5873 + }, + { + "word": "forteresse", + "article_with_word": "une forteresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortress", + "example_sentence_native": "L'ancienne forteresse domine la ville.", + "example_sentence_english": "The old fortress dominates the city.", + "pos": "noun", + "word_frequency": 5874 + }, + { + "word": "indigène", + "article_with_word": "un indigène", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indigenous person;native", + "example_sentence_native": "Les indigènes de cette région ont une culture riche.", + "example_sentence_english": "The indigenous people of this region have a rich culture.", + "pos": "noun", + "word_frequency": 5878 + }, + { + "word": "insécurité", + "article_with_word": "l'insécurité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insecurity", + "example_sentence_native": "Le sentiment d'insécurité a augmenté.", + "example_sentence_english": "The feeling of insecurity has increased.", + "pos": "noun", + "word_frequency": 5879 + }, + { + "word": "interaction", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interaction", + "example_sentence_native": "L'interaction entre les deux cultures est fascinante.", + "example_sentence_english": "The interaction between the two cultures is fascinating.", + "pos": "noun", + "word_frequency": 5880 + }, + { + "word": "intervenant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker;participant", + "example_sentence_native": "Chaque intervenant a présenté son point de vue.", + "example_sentence_english": "Each speaker presented their point of view.", + "pos": "noun", + "word_frequency": 5881 + }, + { + "word": "jambon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ham", + "example_sentence_native": "Je voudrais un sandwich au jambon.", + "example_sentence_english": "I would like a ham sandwich.", + "pos": "noun", + "word_frequency": 5882 + }, + { + "word": "justesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accuracy;fairness", + "example_sentence_native": "Il a répondu avec une grande justesse.", + "example_sentence_english": "He answered with great accuracy.", + "pos": "noun", + "word_frequency": 5883 + }, + { + "word": "lisse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smooth;flat", + "example_sentence_native": "La surface de la table est très lisse.", + "example_sentence_english": "The surface of the table is very smooth.", + "pos": "adjective", + "word_frequency": 5884 + }, + { + "word": "loger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to house;to lodge", + "example_sentence_native": "Nous avons logé chez des amis pendant les vacances.", + "example_sentence_english": "We stayed with friends during the holidays.", + "pos": "verb", + "word_frequency": 5885 + }, + { + "word": "massivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massively", + "example_sentence_native": "Les gens ont voté massivement pour ce candidat.", + "example_sentence_english": "People voted massively for this candidate.", + "pos": "adverb", + "word_frequency": 5887 + }, + { + "word": "modernisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernization", + "example_sentence_native": "La modernisation de l'usine est nécessaire.", + "example_sentence_english": "The modernization of the factory is necessary.", + "pos": "noun", + "word_frequency": 5889 + }, + { + "word": "mondialisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globalization", + "example_sentence_native": "La mondialisation a des effets complexes sur l'économie.", + "example_sentence_english": "Globalization has complex effects on the economy.", + "pos": "noun", + "word_frequency": 5890 + }, + { + "word": "mélanger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mix;to blend", + "example_sentence_native": "Il faut bien mélanger les ingrédients.", + "example_sentence_english": "You need to mix the ingredients well.", + "pos": "verb", + "word_frequency": 5893 + }, + { + "word": "noyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drown", + "example_sentence_native": "Il a failli se noyer dans la piscine.", + "example_sentence_english": "He almost drowned in the pool.", + "pos": "verb", + "word_frequency": 5894 + }, + { + "word": "obsession", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsession", + "example_sentence_native": "Son obsession pour la propreté est extrême.", + "example_sentence_english": "His obsession with cleanliness is extreme.", + "pos": "noun", + "word_frequency": 5895 + }, + { + "word": "pass", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pass;ticket", + "example_sentence_native": "J'ai acheté un pass pour le musée.", + "example_sentence_english": "I bought a pass for the museum.", + "pos": "noun", + "word_frequency": 5897 + }, + { + "word": "patriote", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriot", + "example_sentence_native": "C'est un vrai patriote qui aime son pays.", + "example_sentence_english": "He is a true patriot who loves his country.", + "pos": "noun", + "word_frequency": 5898 + }, + { + "word": "perdu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lost", + "example_sentence_native": "J'ai trouvé un chien perdu dans la rue.", + "example_sentence_english": "I found a lost dog in the street.", + "pos": "adjective", + "word_frequency": 5899 + }, + { + "word": "ping", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ping", + "example_sentence_native": "J'ai entendu un petit ping venant de l'ordinateur.", + "example_sentence_english": "I heard a small ping coming from the computer.", + "pos": "noun", + "word_frequency": 5900 + }, + { + "word": "plier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fold;to bend", + "example_sentence_native": "Peux-tu plier le linge s'il te plaît ?", + "example_sentence_english": "Can you fold the laundry please?", + "pos": "verb", + "word_frequency": 5901 + }, + { + "word": "poison", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poison", + "example_sentence_native": "Ce champignon est un poison mortel.", + "example_sentence_english": "This mushroom is a deadly poison.", + "pos": "noun", + "word_frequency": 5902 + }, + { + "word": "poumon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lung", + "example_sentence_native": "Fumer est mauvais pour les poumons.", + "example_sentence_english": "Smoking is bad for the lungs.", + "pos": "noun", + "word_frequency": 5903 + }, + { + "word": "prestigieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prestigious", + "example_sentence_native": "C'est une université très prestigieuse.", + "example_sentence_english": "It's a very prestigious university.", + "pos": "adjective", + "word_frequency": 5904 + }, + { + "word": "probleme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "problem", + "example_sentence_native": "Il y a un probleme avec ma voiture.", + "example_sentence_english": "There is a problem with my car.", + "pos": "noun", + "word_frequency": 5905 + }, + { + "word": "prospérité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosperity", + "example_sentence_native": "Le pays connaît une période de grande prospérité.", + "example_sentence_english": "The country is experiencing a period of great prosperity.", + "pos": "noun", + "word_frequency": 5906 + }, + { + "word": "psychologue", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychologist", + "example_sentence_native": "Elle a consulté un psychologue pour son stress.", + "example_sentence_english": "She consulted a psychologist for her stress.", + "pos": "noun", + "word_frequency": 5907 + }, + { + "word": "pédagogie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedagogy", + "example_sentence_native": "La pédagogie Montessori est très populaire.", + "example_sentence_english": "Montessori pedagogy is very popular.", + "pos": "noun", + "word_frequency": 5908 + }, + { + "word": "ralentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slow down", + "example_sentence_native": "Il faut ralentir avant le virage.", + "example_sentence_english": "You need to slow down before the turn.", + "pos": "verb", + "word_frequency": 5909 + }, + { + "word": "respectueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectful", + "example_sentence_native": "Il est toujours très respectueux envers les autres.", + "example_sentence_english": "He is always very respectful towards others.", + "pos": "adjective", + "word_frequency": 5910 + }, + { + "word": "rubrique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "section;column;heading", + "example_sentence_native": "Lisez la rubrique des faits divers.", + "example_sentence_english": "Read the news in brief section.", + "pos": "noun", + "word_frequency": 5911 + }, + { + "word": "sincérité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sincerity", + "example_sentence_native": "J'apprécie sa sincérité.", + "example_sentence_english": "I appreciate his sincerity.", + "pos": "noun", + "word_frequency": 5913 + }, + { + "word": "soigneusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefully;meticulously", + "example_sentence_native": "Il a préparé le rapport soigneusement.", + "example_sentence_english": "He carefully prepared the report.", + "pos": "adverb", + "word_frequency": 5914 + }, + { + "word": "sorcière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "witch", + "example_sentence_native": "Dans les contes de fées, la sorcière est souvent méchante.", + "example_sentence_english": "In fairy tales, the witch is often wicked.", + "pos": "noun", + "word_frequency": 5915 + }, + { + "word": "store", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blind;roller blind", + "example_sentence_native": "J'ai baissé le store pour bloquer le soleil.", + "example_sentence_english": "I lowered the blind to block the sun.", + "pos": "noun", + "word_frequency": 5916 + }, + { + "word": "system", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "system", + "example_sentence_native": "Le system informatique est en panne.", + "example_sentence_english": "The computer system is down.", + "pos": "noun", + "word_frequency": 5917 + }, + { + "word": "tentant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tempting", + "example_sentence_native": "Cette offre est très tentante.", + "example_sentence_english": "This offer is very tempting.", + "pos": "adjective", + "word_frequency": 5918 + }, + { + "word": "valorisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enhancement;valorization", + "example_sentence_native": "La valorisation des déchets est essentielle pour l'environnement.", + "example_sentence_english": "Waste valorization is essential for the environment.", + "pos": "noun", + "word_frequency": 5921 + }, + { + "word": "vigilance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vigilance", + "example_sentence_native": "Une vigilance constante est requise pour ce travail.", + "example_sentence_english": "Constant vigilance is required for this job.", + "pos": "noun", + "word_frequency": 5922 + }, + { + "word": "végétation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegetation", + "example_sentence_native": "La végétation luxuriante de la forêt est impressionnante.", + "example_sentence_english": "The lush vegetation of the forest is impressive.", + "pos": "noun", + "word_frequency": 5923 + }, + { + "word": "épuiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exhaust;to deplete", + "example_sentence_native": "Ce long voyage m'a épuisé.", + "example_sentence_english": "This long journey exhausted me.", + "pos": "verb", + "word_frequency": 5925 + }, + { + "word": "appréciation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appreciation;assessment", + "example_sentence_native": "Son appréciation de la situation était très juste.", + "example_sentence_english": "His assessment of the situation was very accurate.", + "pos": "noun", + "word_frequency": 5926 + }, + { + "word": "astuce", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip;trick", + "example_sentence_native": "J'ai une astuce pour résoudre ce problème rapidement.", + "example_sentence_english": "I have a tip to solve this problem quickly.", + "pos": "noun", + "word_frequency": 5928 + }, + { + "word": "atterrissage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing", + "example_sentence_native": "L'atterrissage de l'avion a été très doux.", + "example_sentence_english": "The plane's landing was very smooth.", + "pos": "noun", + "word_frequency": 5929 + }, + { + "word": "avaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to swallow", + "example_sentence_native": "Il a avalé son médicament avec de l'eau.", + "example_sentence_english": "He swallowed his medicine with water.", + "pos": "verb", + "word_frequency": 5931 + }, + { + "word": "avertir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to warn;to notify", + "example_sentence_native": "J'ai dû l'avertir du danger.", + "example_sentence_english": "I had to warn him of the danger.", + "pos": "verb", + "word_frequency": 5932 + }, + { + "word": "baguette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baguette;stick;wand", + "example_sentence_native": "J'ai acheté une baguette fraîche pour le dîner.", + "example_sentence_english": "I bought a fresh baguette for dinner.", + "pos": "noun", + "word_frequency": 5933 + }, + { + "word": "ballet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballet", + "example_sentence_native": "Nous sommes allés voir un magnifique ballet hier soir.", + "example_sentence_english": "We went to see a magnificent ballet last night.", + "pos": "noun", + "word_frequency": 5934 + }, + { + "word": "branler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shake;to wobble", + "example_sentence_native": "La table branle un peu, elle n'est pas stable.", + "example_sentence_english": "The table wobbles a bit, it's not stable.", + "pos": "verb", + "word_frequency": 5936 + }, + { + "word": "brouillard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fog;mist", + "example_sentence_native": "Le brouillard était si épais que nous ne voyions rien.", + "example_sentence_english": "The fog was so thick that we couldn't see anything.", + "pos": "noun", + "word_frequency": 5937 + }, + { + "word": "bénédiction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blessing", + "example_sentence_native": "Recevoir cette aide fut une véritable bénédiction.", + "example_sentence_english": "Receiving this help was a true blessing.", + "pos": "noun", + "word_frequency": 5938 + }, + { + "word": "chagrin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sorrow;grief", + "example_sentence_native": "Il a ressenti un profond chagrin après la nouvelle.", + "example_sentence_english": "He felt deep sorrow after the news.", + "pos": "noun", + "word_frequency": 5940 + }, + { + "word": "chaire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulpit;chair (academic)", + "example_sentence_native": "Le professeur a été nommé à la chaire de philosophie.", + "example_sentence_english": "The professor was appointed to the chair of philosophy.", + "pos": "noun", + "word_frequency": 5941 + }, + { + "word": "chargement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loading;cargo;shipment", + "example_sentence_native": "Le chargement des marchandises prendra plusieurs heures.", + "example_sentence_english": "The loading of the goods will take several hours.", + "pos": "noun", + "word_frequency": 5942 + }, + { + "word": "cohésion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohesion", + "example_sentence_native": "La cohésion de l'équipe est essentielle pour réussir.", + "example_sentence_english": "Team cohesion is essential for success.", + "pos": "noun", + "word_frequency": 5943 + }, + { + "word": "compatriote", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatriot", + "example_sentence_native": "Il a rencontré un compatriote lors de son voyage à l'étranger.", + "example_sentence_english": "He met a compatriot during his trip abroad.", + "pos": "noun", + "word_frequency": 5944 + }, + { + "word": "connecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to connect", + "example_sentence_native": "N'oubliez pas de connecter le câble.", + "example_sentence_english": "Don't forget to connect the cable.", + "pos": "verb", + "word_frequency": 5945 + }, + { + "word": "coulisse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wing (theatre);slide", + "example_sentence_native": "Les acteurs attendaient en coulisses avant d'entrer en scène.", + "example_sentence_english": "The actors were waiting in the wings before going on stage.", + "pos": "noun", + "word_frequency": 5946 + }, + { + "word": "coïncidence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coincidence", + "example_sentence_native": "Quelle coïncidence de vous rencontrer ici !", + "example_sentence_english": "What a coincidence to meet you here!", + "pos": "noun", + "word_frequency": 5948 + }, + { + "word": "cru", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raw;crude", + "example_sentence_native": "Je préfère les légumes crus.", + "example_sentence_english": "I prefer raw vegetables.", + "pos": "adjective", + "word_frequency": 5949 + }, + { + "word": "discrètement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discreetly", + "example_sentence_native": "Il est entré discrètement dans la pièce.", + "example_sentence_english": "He entered the room discreetly.", + "pos": "adverb", + "word_frequency": 5951 + }, + { + "word": "décrocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unhook;to pick up (phone);to get (a job)", + "example_sentence_native": "J'ai décroché le téléphone dès qu'il a sonné.", + "example_sentence_english": "I picked up the phone as soon as it rang.", + "pos": "verb", + "word_frequency": 5952 + }, + { + "word": "dépens", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expense;costs", + "example_sentence_native": "Il a agi à ses propres dépens.", + "example_sentence_english": "He acted at his own expense.", + "pos": "noun", + "word_frequency": 5953 + }, + { + "word": "endormir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put to sleep;to fall asleep", + "example_sentence_native": "Le bébé s'est endormi rapidement.", + "example_sentence_english": "The baby fell asleep quickly.", + "pos": "verb", + "word_frequency": 5955 + }, + { + "word": "gentiment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kindly;nicely", + "example_sentence_native": "Il m'a gentiment aidé à porter mes sacs.", + "example_sentence_english": "He kindly helped me carry my bags.", + "pos": "adverb", + "word_frequency": 5957 + }, + { + "word": "gouvernemental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governmental", + "example_sentence_native": "La décision gouvernementale a été annoncée hier.", + "example_sentence_english": "The governmental decision was announced yesterday.", + "pos": "adjective", + "word_frequency": 5958 + }, + { + "word": "gouverner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to govern;to rule", + "example_sentence_native": "Le président gouverne le pays avec sagesse.", + "example_sentence_english": "The president governs the country wisely.", + "pos": "verb", + "word_frequency": 5959 + }, + { + "word": "guider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to guide", + "example_sentence_native": "Il va nous guider à travers la forêt.", + "example_sentence_english": "He will guide us through the forest.", + "pos": "verb", + "word_frequency": 5961 + }, + { + "word": "haïr", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hate", + "example_sentence_native": "Elle hait l'injustice.", + "example_sentence_english": "She hates injustice.", + "pos": "verb", + "word_frequency": 5963 + }, + { + "word": "homicide", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homicide", + "example_sentence_native": "La police enquête sur un cas d'homicide.", + "example_sentence_english": "The police are investigating a case of homicide.", + "pos": "noun", + "word_frequency": 5965 + }, + { + "word": "hybride", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hybrid", + "example_sentence_native": "C'est une voiture hybride, elle utilise l'essence et l'électricité.", + "example_sentence_english": "It's a hybrid car, it uses gasoline and electricity.", + "pos": "adjective", + "word_frequency": 5966 + }, + { + "word": "idéologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideological", + "example_sentence_native": "Le débat a pris une tournure idéologique.", + "example_sentence_english": "The debate took an ideological turn.", + "pos": "adjective", + "word_frequency": 5967 + }, + { + "word": "inacceptable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unacceptable", + "example_sentence_native": "Son comportement est totalement inacceptable.", + "example_sentence_english": "His behavior is totally unacceptable.", + "pos": "adjective", + "word_frequency": 5968 + }, + { + "word": "indifférence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indifference", + "example_sentence_native": "Il a montré une totale indifférence à nos problèmes.", + "example_sentence_english": "He showed total indifference to our problems.", + "pos": "noun", + "word_frequency": 5969 + }, + { + "word": "intérim", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interim", + "example_sentence_native": "Elle travaille en intérim depuis un mois.", + "example_sentence_english": "She has been working on an interim basis for a month.", + "pos": "noun", + "word_frequency": 5970 + }, + { + "word": "justification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justification", + "example_sentence_native": "Il n'y a aucune justification pour un tel acte.", + "example_sentence_english": "There is no justification for such an act.", + "pos": "noun", + "word_frequency": 5972 + }, + { + "word": "massage", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "massage", + "example_sentence_native": "J'ai besoin d'un bon massage après cette longue journée.", + "example_sentence_english": "I need a good massage after this long day.", + "pos": "noun", + "word_frequency": 5974 + }, + { + "word": "multiplier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to multiply", + "example_sentence_native": "Il faut multiplier les efforts pour réussir.", + "example_sentence_english": "We must multiply our efforts to succeed.", + "pos": "verb", + "word_frequency": 5977 + }, + { + "word": "navigateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "browser", + "example_sentence_native": "J'utilise Google Chrome comme navigateur web.", + "example_sentence_english": "I use Google Chrome as my web browser.", + "pos": "noun", + "word_frequency": 5978 + }, + { + "word": "négligeable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligible", + "example_sentence_native": "L'impact de cette mesure est négligeable.", + "example_sentence_english": "The impact of this measure is negligible.", + "pos": "adjective", + "word_frequency": 5979 + }, + { + "word": "paradoxe", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paradox", + "example_sentence_native": "C'est un paradoxe intéressant.", + "example_sentence_english": "It's an interesting paradox.", + "pos": "noun", + "word_frequency": 5981 + }, + { + "word": "patrouille", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patrol", + "example_sentence_native": "La police est en patrouille dans le quartier.", + "example_sentence_english": "The police are on patrol in the neighborhood.", + "pos": "noun", + "word_frequency": 5982 + }, + { + "word": "pisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pee", + "example_sentence_native": "Le chien est sorti pour pisser.", + "example_sentence_english": "The dog went out to pee.", + "pos": "verb", + "word_frequency": 5983 + }, + { + "word": "propagation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propagation", + "example_sentence_native": "La propagation du virus est rapide.", + "example_sentence_english": "The propagation of the virus is rapid.", + "pos": "noun", + "word_frequency": 5984 + }, + { + "word": "pâle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pale", + "example_sentence_native": "Elle avait le visage très pâle.", + "example_sentence_english": "She had a very pale face.", + "pos": "adjective", + "word_frequency": 5987 + }, + { + "word": "relevé", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statement", + "example_sentence_native": "J'ai reçu mon relevé de compte bancaire.", + "example_sentence_english": "I received my bank account statement.", + "pos": "noun", + "word_frequency": 5989 + }, + { + "word": "relier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to link", + "example_sentence_native": "Ces deux villes sont reliées par une autoroute.", + "example_sentence_english": "These two cities are linked by a highway.", + "pos": "verb", + "word_frequency": 5990 + }, + { + "word": "revendiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to claim", + "example_sentence_native": "Le groupe a revendiqué l'attaque.", + "example_sentence_english": "The group claimed responsibility for the attack.", + "pos": "verb", + "word_frequency": 5991 + }, + { + "word": "réservé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reserved", + "example_sentence_native": "La table est réservée pour ce soir.", + "example_sentence_english": "The table is reserved for tonight.", + "pos": "adjective", + "word_frequency": 5993 + }, + { + "word": "simulation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulation", + "example_sentence_native": "Nous avons effectué une simulation de vol.", + "example_sentence_english": "We performed a flight simulation.", + "pos": "noun", + "word_frequency": 5994 + }, + { + "word": "souche", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stump", + "example_sentence_native": "Le virus a développé une nouvelle souche.", + "example_sentence_english": "The virus developed a new strain.", + "pos": "noun", + "word_frequency": 5995 + }, + { + "word": "strict", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strict", + "example_sentence_native": "Les règles sont très strictes ici.", + "example_sentence_english": "The rules are very strict here.", + "pos": "adjective", + "word_frequency": 5996 + }, + { + "word": "taureau", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bull", + "example_sentence_native": "Le taureau est un animal puissant.", + "example_sentence_english": "The bull is a powerful animal.", + "pos": "noun", + "word_frequency": 5997 + }, + { + "word": "thérapeutique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "therapeutic", + "example_sentence_native": "Ce traitement a un effet thérapeutique.", + "example_sentence_english": "This treatment has a therapeutic effect.", + "pos": "adjective", + "word_frequency": 5998 + }, + { + "word": "tomate", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tomato", + "example_sentence_native": "J'ai acheté une belle tomate rouge.", + "example_sentence_english": "I bought a beautiful red tomato.", + "pos": "noun", + "word_frequency": 5999 + }, + { + "word": "tonnerre", + "article_with_word": "le tonnerre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thunder", + "example_sentence_native": "Le tonnerre a grondé toute la nuit.", + "example_sentence_english": "The thunder rumbled all night.", + "pos": "noun", + "word_frequency": 6000 + }, + { + "word": "tumeur", + "article_with_word": "la tumeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tumor", + "example_sentence_native": "Les médecins ont découvert une tumeur bénigne.", + "example_sentence_english": "The doctors discovered a benign tumor.", + "pos": "noun", + "word_frequency": 6002 + }, + { + "word": "téléspectateur", + "article_with_word": "le téléspectateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viewer (TV)", + "example_sentence_native": "Le téléspectateur moyen passe plusieurs heures devant la télévision.", + "example_sentence_english": "The average viewer spends several hours in front of the television.", + "pos": "noun", + "word_frequency": 6003 + }, + { + "word": "versement", + "article_with_word": "le versement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "payment;installment", + "example_sentence_native": "J'ai effectué le versement mensuel de mon loyer.", + "example_sentence_english": "I made the monthly payment for my rent.", + "pos": "noun", + "word_frequency": 6004 + }, + { + "word": "végétal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plant (adj.);vegetable", + "example_sentence_native": "La vie végétale est essentielle à notre écosystème.", + "example_sentence_english": "Plant life is essential to our ecosystem.", + "pos": "adjective", + "word_frequency": 6006 + }, + { + "word": "vétérinaire", + "article_with_word": "le vétérinaire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "veterinarian", + "example_sentence_native": "Nous avons emmené notre chien chez le vétérinaire.", + "example_sentence_english": "We took our dog to the veterinarian.", + "pos": "noun", + "word_frequency": 6007 + }, + { + "word": "échéance", + "article_with_word": "l’échéance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadline;due date", + "example_sentence_native": "La date d'échéance pour le paiement est le 30 juin.", + "example_sentence_english": "The due date for the payment is June 30th.", + "pos": "noun", + "word_frequency": 6010 + }, + { + "word": "éclairer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to light up;to illuminate", + "example_sentence_native": "La lune éclaire le chemin dans l'obscurité.", + "example_sentence_english": "The moon lights up the path in the darkness.", + "pos": "verb", + "word_frequency": 6011 + }, + { + "word": "afro", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Afro-", + "example_sentence_native": "Elle a une coiffure afro très stylée.", + "example_sentence_english": "She has a very stylish Afro hairstyle.", + "pos": "adjective", + "word_frequency": 6012 + }, + { + "word": "ail", + "article_with_word": "l’ail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garlic", + "example_sentence_native": "J'adore le goût de l'ail dans la cuisine.", + "example_sentence_english": "I love the taste of garlic in cooking.", + "pos": "noun", + "word_frequency": 6013 + }, + { + "word": "aimable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kind;friendly", + "example_sentence_native": "C'est une personne très aimable et serviable.", + "example_sentence_english": "She is a very kind and helpful person.", + "pos": "adjective", + "word_frequency": 6014 + }, + { + "word": "arrangement", + "article_with_word": "l’arrangement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrangement;agreement", + "example_sentence_native": "Nous avons trouvé un bon arrangement pour le voyage.", + "example_sentence_english": "We found a good arrangement for the trip.", + "pos": "noun", + "word_frequency": 6016 + }, + { + "word": "banane", + "article_with_word": "la banane", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "banana", + "example_sentence_native": "J'ai mangé une banane pour le petit-déjeuner.", + "example_sentence_english": "I ate a banana for breakfast.", + "pos": "noun", + "word_frequency": 6017 + }, + { + "word": "bienfait", + "article_with_word": "le bienfait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefit;good deed", + "example_sentence_native": "Les bienfaits du sport sont nombreux.", + "example_sentence_english": "The benefits of sport are numerous.", + "pos": "noun", + "word_frequency": 6020 + }, + { + "word": "bénéficiaire", + "article_with_word": "le bénéficiaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficiary;recipient", + "example_sentence_native": "Il est le bénéficiaire de l'assurance-vie.", + "example_sentence_english": "He is the beneficiary of the life insurance.", + "pos": "noun", + "word_frequency": 6022 + }, + { + "word": "bœuf", + "article_with_word": "le bœuf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beef;ox", + "example_sentence_native": "Nous avons mangé du bœuf pour le dîner.", + "example_sentence_english": "We ate beef for dinner.", + "pos": "noun", + "word_frequency": 6023 + }, + { + "word": "cabane", + "article_with_word": "la cabane", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hut;cabin", + "example_sentence_native": "Les enfants ont construit une cabane dans les arbres.", + "example_sentence_english": "The children built a treehouse.", + "pos": "noun", + "word_frequency": 6024 + }, + { + "word": "calcaire", + "article_with_word": "le calcaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limestone;limescale", + "example_sentence_native": "L'eau de cette région est très calcaire.", + "example_sentence_english": "The water in this region is very hard (limestone-rich).", + "pos": "noun", + "word_frequency": 6025 + }, + { + "word": "caoutchouc", + "article_with_word": "le caoutchouc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rubber", + "example_sentence_native": "Ces bottes sont faites en caoutchouc.", + "example_sentence_english": "These boots are made of rubber.", + "pos": "noun", + "word_frequency": 6026 + }, + { + "word": "composante", + "article_with_word": "la composante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "component;element", + "example_sentence_native": "Chaque composante du système est essentielle.", + "example_sentence_english": "Each component of the system is essential.", + "pos": "noun", + "word_frequency": 6028 + }, + { + "word": "consul", + "article_with_word": "le consul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consul", + "example_sentence_native": "Le consul a aidé les citoyens à l'étranger.", + "example_sentence_english": "The consul helped citizens abroad.", + "pos": "noun", + "word_frequency": 6030 + }, + { + "word": "cordon", + "article_with_word": "le cordon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cord;string;lace", + "example_sentence_native": "Le cordon de ma chaussure est défait.", + "example_sentence_english": "My shoelace is untied.", + "pos": "noun", + "word_frequency": 6031 + }, + { + "word": "coûteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expensive;costly", + "example_sentence_native": "Cette voiture est très coûteuse.", + "example_sentence_english": "This car is very expensive.", + "pos": "adjective", + "word_frequency": 6032 + }, + { + "word": "cuisse", + "article_with_word": "la cuisse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thigh", + "example_sentence_native": "Il s'est blessé à la cuisse en courant.", + "example_sentence_english": "He injured his thigh while running.", + "pos": "noun", + "word_frequency": 6034 + }, + { + "word": "célébrité", + "article_with_word": "la célébrité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebrity;fame", + "example_sentence_native": "Elle est devenue une célébrité après son film.", + "example_sentence_english": "She became a celebrity after her movie.", + "pos": "noun", + "word_frequency": 6035 + }, + { + "word": "delta", + "article_with_word": "le delta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delta", + "example_sentence_native": "Le delta du Nil est très fertile.", + "example_sentence_english": "The Nile delta is very fertile.", + "pos": "noun", + "word_frequency": 6037 + }, + { + "word": "drone", + "article_with_word": "le drone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drone", + "example_sentence_native": "Il a acheté un nouveau drone pour filmer.", + "example_sentence_english": "He bought a new drone for filming.", + "pos": "noun", + "word_frequency": 6038 + }, + { + "word": "emparer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seize;to take hold of", + "example_sentence_native": "Les manifestants ont tenté de s'emparer du bâtiment.", + "example_sentence_english": "The protesters tried to seize the building.", + "pos": "verb", + "word_frequency": 6039 + }, + { + "word": "entamer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to begin;to start;to undertake", + "example_sentence_native": "Il a décidé d'entamer une nouvelle carrière.", + "example_sentence_english": "He decided to begin a new career.", + "pos": "verb", + "word_frequency": 6040 + }, + { + "word": "escorte", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escort", + "example_sentence_native": "La voiture a roulé sous escorte policière.", + "example_sentence_english": "The car drove under police escort.", + "pos": "noun", + "word_frequency": 6041 + }, + { + "word": "exposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exposed", + "example_sentence_native": "Le toit est exposé aux intempéries.", + "example_sentence_english": "The roof is exposed to the elements.", + "pos": "adjective", + "word_frequency": 6042 + }, + { + "word": "fantaisie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy;whim", + "example_sentence_native": "Elle a beaucoup de fantaisie dans ses créations.", + "example_sentence_english": "She has a lot of fantasy in her creations.", + "pos": "noun", + "word_frequency": 6043 + }, + { + "word": "formellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formally", + "example_sentence_native": "Il a été formellement accusé de vol.", + "example_sentence_english": "He was formally accused of theft.", + "pos": "adverb", + "word_frequency": 6045 + }, + { + "word": "gala", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gala", + "example_sentence_native": "Ils ont assisté à un grand gala de charité.", + "example_sentence_english": "They attended a big charity gala.", + "pos": "noun", + "word_frequency": 6046 + }, + { + "word": "gamine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;girl (informal)", + "example_sentence_native": "Cette petite gamine est très curieuse.", + "example_sentence_english": "This little kid is very curious.", + "pos": "noun", + "word_frequency": 6047 + }, + { + "word": "géométrie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "geometry", + "example_sentence_native": "Nous étudions la géométrie en mathématiques.", + "example_sentence_english": "We study geometry in mathematics.", + "pos": "noun", + "word_frequency": 6049 + }, + { + "word": "handicapé", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disabled person", + "example_sentence_native": "L'accès pour les personnes handicapées a été amélioré.", + "example_sentence_english": "Access for disabled people has been improved.", + "pos": "noun", + "word_frequency": 6050 + }, + { + "word": "hebdo", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weekly (magazine;newspaper)", + "example_sentence_native": "J'achète mon hebdo tous les vendredis.", + "example_sentence_english": "I buy my weekly every Friday.", + "pos": "noun", + "word_frequency": 6051 + }, + { + "word": "imbécile", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiot;fool", + "example_sentence_native": "Ne sois pas un imbécile.", + "example_sentence_english": "Don't be an idiot.", + "pos": "noun", + "word_frequency": 6052 + }, + { + "word": "immigrant", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immigrant", + "example_sentence_native": "De nombreux immigrants cherchent une nouvelle vie ici.", + "example_sentence_english": "Many immigrants are looking for a new life here.", + "pos": "noun", + "word_frequency": 6053 + }, + { + "word": "indignation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indignation", + "example_sentence_native": "Son discours a provoqué une vive indignation.", + "example_sentence_english": "His speech caused strong indignation.", + "pos": "noun", + "word_frequency": 6054 + }, + { + "word": "inondation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flood", + "example_sentence_native": "La ville a subi une grave inondation.", + "example_sentence_english": "The city suffered a severe flood.", + "pos": "noun", + "word_frequency": 6055 + }, + { + "word": "interlocuteur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interlocutor;speaker", + "example_sentence_native": "Il est un interlocuteur très agréable.", + "example_sentence_english": "He is a very pleasant interlocutor.", + "pos": "noun", + "word_frequency": 6056 + }, + { + "word": "intervalle", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interval", + "example_sentence_native": "Il y a un court intervalle entre les deux films.", + "example_sentence_english": "There is a short interval between the two films.", + "pos": "noun", + "word_frequency": 6057 + }, + { + "word": "iris", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iris", + "example_sentence_native": "La couleur de ses iris est magnifique.", + "example_sentence_english": "The color of her irises is magnificent.", + "pos": "noun", + "word_frequency": 6058 + }, + { + "word": "marron", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brown", + "example_sentence_native": "J'aime les chaussures marron.", + "example_sentence_english": "I like brown shoes.", + "pos": "adjective", + "word_frequency": 6061 + }, + { + "word": "maxi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maxi;maximum;very large", + "example_sentence_native": "C'est une robe maxi pour l'été.", + "example_sentence_english": "It's a maxi dress for summer.", + "pos": "adjective", + "word_frequency": 6062 + }, + { + "word": "migration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "migration", + "example_sentence_native": "La migration des oiseaux est un phénomène annuel.", + "example_sentence_english": "Bird migration is an annual phenomenon.", + "pos": "noun", + "word_frequency": 6065 + }, + { + "word": "médiation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediation", + "example_sentence_native": "Ils ont eu recours à la médiation pour résoudre le conflit.", + "example_sentence_english": "They resorted to mediation to resolve the conflict.", + "pos": "noun", + "word_frequency": 6066 + }, + { + "word": "métropolitain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolitan", + "example_sentence_native": "Paris est une ville métropolitaine.", + "example_sentence_english": "Paris is a metropolitan city.", + "pos": "adjective", + "word_frequency": 6067 + }, + { + "word": "natal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native;birth", + "example_sentence_native": "Il est retourné dans sa ville natale.", + "example_sentence_english": "He returned to his native town.", + "pos": "adjective", + "word_frequency": 6068 + }, + { + "word": "nickel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfect;spotless;great (informal)", + "example_sentence_native": "Tout est nickel, merci !", + "example_sentence_english": "Everything is perfect, thanks!", + "pos": "adjective", + "word_frequency": 6069 + }, + { + "word": "orienter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to orient;to guide", + "example_sentence_native": "Il faut orienter la carte vers le nord.", + "example_sentence_english": "You need to orient the map north.", + "pos": "verb", + "word_frequency": 6072 + }, + { + "word": "pilier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pillar;column", + "example_sentence_native": "Ce bâtiment est soutenu par de solides piliers.", + "example_sentence_english": "This building is supported by strong pillars.", + "pos": "noun", + "word_frequency": 6076 + }, + { + "word": "premièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firstly;first of all", + "example_sentence_native": "Premièrement, nous devons vérifier les faits.", + "example_sentence_english": "Firstly, we must check the facts.", + "pos": "adverb", + "word_frequency": 6077 + }, + { + "word": "prolongation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;extra time (sports)", + "example_sentence_native": "Le match est allé en prolongation.", + "example_sentence_english": "The match went into extra time.", + "pos": "noun", + "word_frequency": 6078 + }, + { + "word": "psychiatre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychiatrist", + "example_sentence_native": "Elle a consulté un psychiatre pour son anxiété.", + "example_sentence_english": "She consulted a psychiatrist for her anxiety.", + "pos": "noun", + "word_frequency": 6079 + }, + { + "word": "recourir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resort to", + "example_sentence_native": "Il a dû recourir à des mesures extrêmes.", + "example_sentence_english": "He had to resort to extreme measures.", + "pos": "verb", + "word_frequency": 6082 + }, + { + "word": "recyclage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycling", + "example_sentence_native": "Le recyclage est important pour l'environnement.", + "example_sentence_english": "Recycling is important for the environment.", + "pos": "noun", + "word_frequency": 6083 + }, + { + "word": "restaurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restore", + "example_sentence_native": "Ils vont restaurer l'ancien bâtiment.", + "example_sentence_english": "They are going to restore the old building.", + "pos": "verb", + "word_frequency": 6084 + }, + { + "word": "sdf", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homeless person", + "example_sentence_native": "Il y a de plus en plus de SDF dans les grandes villes.", + "example_sentence_english": "There are more and more homeless people in big cities.", + "pos": "noun", + "word_frequency": 6087 + }, + { + "word": "sirop", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "syrup", + "example_sentence_native": "J'ai mis du sirop d'érable sur mes crêpes.", + "example_sentence_english": "I put maple syrup on my pancakes.", + "pos": "noun", + "word_frequency": 6090 + }, + { + "word": "sorcier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wizard", + "example_sentence_native": "Le sorcier a jeté un sort puissant.", + "example_sentence_english": "The wizard cast a powerful spell.", + "pos": "noun", + "word_frequency": 6091 + }, + { + "word": "soulagement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief", + "example_sentence_native": "J'ai ressenti un grand soulagement après l'examen.", + "example_sentence_english": "I felt great relief after the exam.", + "pos": "noun", + "word_frequency": 6092 + }, + { + "word": "souriant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smiling", + "example_sentence_native": "Elle est toujours très souriante.", + "example_sentence_english": "She is always very smiling.", + "pos": "adjective", + "word_frequency": 6093 + }, + { + "word": "syrien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Syrian", + "example_sentence_native": "Il a rencontré un réfugié syrien.", + "example_sentence_english": "He met a Syrian refugee.", + "pos": "adjective", + "word_frequency": 6094 + }, + { + "word": "textile", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "textile", + "example_sentence_native": "L'industrie du textile est importante dans cette région.", + "example_sentence_english": "The textile industry is important in this region.", + "pos": "noun", + "word_frequency": 6095 + }, + { + "word": "timbre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stamp", + "example_sentence_native": "J'ai besoin d'un timbre pour cette lettre.", + "example_sentence_english": "I need a stamp for this letter.", + "pos": "noun", + "word_frequency": 6096 + }, + { + "word": "tombeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tomb", + "example_sentence_native": "Le pharaon a été enterré dans un grand tombeau.", + "example_sentence_english": "The pharaoh was buried in a large tomb.", + "pos": "noun", + "word_frequency": 6097 + }, + { + "word": "trame", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot", + "example_sentence_native": "La trame de l'histoire est très complexe.", + "example_sentence_english": "The plot of the story is very complex.", + "pos": "noun", + "word_frequency": 6098 + }, + { + "word": "transit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transit", + "example_sentence_native": "Nous sommes en transit à l'aéroport.", + "example_sentence_english": "We are in transit at the airport.", + "pos": "noun", + "word_frequency": 6099 + }, + { + "word": "télécommunication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telecommunication", + "example_sentence_native": "Les télécommunications ont révolutionné le monde.", + "example_sentence_english": "Telecommunications have revolutionized the world.", + "pos": "noun", + "word_frequency": 6101 + }, + { + "word": "validité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validity", + "example_sentence_native": "La validité de ce document est de six mois.", + "example_sentence_english": "The validity of this document is six months.", + "pos": "noun", + "word_frequency": 6102 + }, + { + "word": "veine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vein", + "example_sentence_native": "Il a une bonne veine, il a gagné à la loterie.", + "example_sentence_english": "He has good luck, he won the lottery.", + "pos": "noun", + "word_frequency": 6103 + }, + { + "word": "âne", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donkey", + "example_sentence_native": "L'âne porte de lourdes charges.", + "example_sentence_english": "The donkey carries heavy loads.", + "pos": "noun", + "word_frequency": 6104 + }, + { + "word": "éco", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eco", + "example_sentence_native": "Il s'intéresse à l'éco-responsabilité.", + "example_sentence_english": "He is interested in eco-responsibility.", + "pos": "noun", + "word_frequency": 6105 + }, + { + "word": "éducatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educational", + "example_sentence_native": "Ce jeu est très éducatif pour les enfants.", + "example_sentence_english": "This game is very educational for children.", + "pos": "adjective", + "word_frequency": 6106 + }, + { + "word": "élaborer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to elaborate", + "example_sentence_native": "Ils doivent élaborer un nouveau plan.", + "example_sentence_english": "They must develop a new plan.", + "pos": "verb", + "word_frequency": 6107 + }, + { + "word": "élargir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to widen", + "example_sentence_native": "Il faut élargir la route pour améliorer la circulation.", + "example_sentence_english": "The road must be widened to improve traffic flow.", + "pos": "verb", + "word_frequency": 6108 + }, + { + "word": "élémentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elementary", + "example_sentence_native": "C'est une question élémentaire de logique.", + "example_sentence_english": "It's an elementary question of logic.", + "pos": "adjective", + "word_frequency": 6109 + }, + { + "word": "adepte", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "follower", + "example_sentence_native": "Il est un adepte de cette philosophie.", + "example_sentence_english": "He is a follower of this philosophy.", + "pos": "noun", + "word_frequency": 6111 + }, + { + "word": "agressif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aggressive", + "example_sentence_native": "Son comportement était très agressif.", + "example_sentence_english": "His behavior was very aggressive.", + "pos": "adjective", + "word_frequency": 6112 + }, + { + "word": "anecdote", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anecdote", + "example_sentence_native": "Il a raconté une anecdote amusante.", + "example_sentence_english": "He told an amusing anecdote.", + "pos": "noun", + "word_frequency": 6116 + }, + { + "word": "apocalypse", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apocalypse", + "example_sentence_native": "Le film dépeint une scène d'apocalypse.", + "example_sentence_english": "The film depicts a scene of apocalypse.", + "pos": "noun", + "word_frequency": 6118 + }, + { + "word": "apprêter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prepare", + "example_sentence_native": "Elle s'apprête à sortir.", + "example_sentence_english": "She is getting ready to go out.", + "pos": "verb", + "word_frequency": 6119 + }, + { + "word": "assurément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surely;certainly", + "example_sentence_native": "Il a assurément raison sur ce point.", + "example_sentence_english": "He is surely right on this point.", + "pos": "adverb", + "word_frequency": 6120 + }, + { + "word": "barbecue", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barbecue", + "example_sentence_native": "Nous allons faire un barbecue ce week-end.", + "example_sentence_english": "We are going to have a barbecue this weekend.", + "pos": "noun", + "word_frequency": 6121 + }, + { + "word": "bonté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goodness;kindness", + "example_sentence_native": "Elle a montré beaucoup de bonté envers les animaux.", + "example_sentence_english": "She showed a lot of kindness towards animals.", + "pos": "noun", + "word_frequency": 6123 + }, + { + "word": "bouchon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cork;traffic jam", + "example_sentence_native": "Il y a un gros bouchon sur l'autoroute.", + "example_sentence_english": "There's a big traffic jam on the highway.", + "pos": "noun", + "word_frequency": 6124 + }, + { + "word": "cire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wax", + "example_sentence_native": "La bougie est faite de cire d'abeille.", + "example_sentence_english": "The candle is made of beeswax.", + "pos": "noun", + "word_frequency": 6126 + }, + { + "word": "clic", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "click", + "example_sentence_native": "Un simple clic suffit pour ouvrir le fichier.", + "example_sentence_english": "A simple click is enough to open the file.", + "pos": "noun", + "word_frequency": 6127 + }, + { + "word": "clin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wink (in \"clin d'œil\")", + "example_sentence_native": "Il m'a fait un clin d'œil.", + "example_sentence_english": "He gave me a wink.", + "pos": "noun", + "word_frequency": 6128 + }, + { + "word": "concile", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "council (ecclesiastical)", + "example_sentence_native": "Le concile a pris des décisions importantes pour l'Église.", + "example_sentence_english": "The council made important decisions for the Church.", + "pos": "noun", + "word_frequency": 6130 + }, + { + "word": "consécutif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consecutive", + "example_sentence_native": "C'est la troisième victoire consécutive de l'équipe.", + "example_sentence_english": "It's the team's third consecutive victory.", + "pos": "adjective", + "word_frequency": 6131 + }, + { + "word": "contribuable", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxpayer", + "example_sentence_native": "Les contribuables paient des impôts pour financer les services publics.", + "example_sentence_english": "Taxpayers pay taxes to fund public services.", + "pos": "noun", + "word_frequency": 6132 + }, + { + "word": "contrôleur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controller;inspector", + "example_sentence_native": "Le contrôleur a vérifié nos billets dans le train.", + "example_sentence_english": "The inspector checked our tickets on the train.", + "pos": "noun", + "word_frequency": 6133 + }, + { + "word": "coopérative", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperative", + "example_sentence_native": "Ils ont acheté leurs produits à la coopérative agricole locale.", + "example_sentence_english": "They bought their products from the local agricultural cooperative.", + "pos": "noun", + "word_frequency": 6134 + }, + { + "word": "coupure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut;power cut;banknote", + "example_sentence_native": "Il y a eu une coupure de courant pendant l'orage.", + "example_sentence_english": "There was a power cut during the storm.", + "pos": "noun", + "word_frequency": 6135 + }, + { + "word": "courriel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "email", + "example_sentence_native": "J'ai envoyé un courriel pour confirmer ma réservation.", + "example_sentence_english": "I sent an email to confirm my reservation.", + "pos": "noun", + "word_frequency": 6136 + }, + { + "word": "douteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubtful;dubious", + "example_sentence_native": "Ses motivations sont plutôt douteuses.", + "example_sentence_english": "His motivations are rather dubious.", + "pos": "adjective", + "word_frequency": 6139 + }, + { + "word": "drap", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sheet (bedding)", + "example_sentence_native": "J'ai changé les draps de mon lit.", + "example_sentence_english": "I changed the sheets on my bed.", + "pos": "noun", + "word_frequency": 6140 + }, + { + "word": "drive", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drive-through;click and collect service", + "example_sentence_native": "Je vais chercher mes courses au drive.", + "example_sentence_english": "I'm going to pick up my groceries at the drive-through.", + "pos": "noun", + "word_frequency": 6141 + }, + { + "word": "démarrage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "start-up;starting", + "example_sentence_native": "Le démarrage de l'ordinateur est très rapide.", + "example_sentence_english": "The computer's start-up is very fast.", + "pos": "noun", + "word_frequency": 6142 + }, + { + "word": "fabuleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabulous;amazing", + "example_sentence_native": "Ce voyage était absolument fabuleux.", + "example_sentence_english": "This trip was absolutely fabulous.", + "pos": "adjective", + "word_frequency": 6144 + }, + { + "word": "fermement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmly;strongly", + "example_sentence_native": "Il a refusé fermement leur proposition.", + "example_sentence_english": "He firmly refused their proposal.", + "pos": "adverb", + "word_frequency": 6145 + }, + { + "word": "frappe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strike;typing;minting", + "example_sentence_native": "La frappe aérienne a détruit la cible.", + "example_sentence_english": "The airstrike destroyed the target.", + "pos": "noun", + "word_frequency": 6147 + }, + { + "word": "fusée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocket", + "example_sentence_native": "La fusée a décollé vers l'espace.", + "example_sentence_english": "The rocket took off towards space.", + "pos": "noun", + "word_frequency": 6148 + }, + { + "word": "greffe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "graft;transplant;court registry", + "example_sentence_native": "Il a subi une greffe de rein.", + "example_sentence_english": "He underwent a kidney transplant.", + "pos": "noun", + "word_frequency": 6150 + }, + { + "word": "hollandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dutch", + "example_sentence_native": "Elle parle couramment le hollandais.", + "example_sentence_english": "She speaks Dutch fluently.", + "pos": "adjective", + "word_frequency": 6151 + }, + { + "word": "impossibilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossibility", + "example_sentence_native": "Il a reconnu l'impossibilité de réaliser ce projet.", + "example_sentence_english": "He recognized the impossibility of carrying out this project.", + "pos": "noun", + "word_frequency": 6154 + }, + { + "word": "improbable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improbable;unlikely", + "example_sentence_native": "C'est un scénario très improbable.", + "example_sentence_english": "It's a very improbable scenario.", + "pos": "adjective", + "word_frequency": 6155 + }, + { + "word": "indigne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unworthy;disgraceful", + "example_sentence_native": "Son comportement était indigne d'un professionnel.", + "example_sentence_english": "His behavior was unworthy of a professional.", + "pos": "adjective", + "word_frequency": 6156 + }, + { + "word": "investigation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigation", + "example_sentence_native": "La police a ouvert une investigation sur l'affaire.", + "example_sentence_english": "The police opened an investigation into the matter.", + "pos": "noun", + "word_frequency": 6157 + }, + { + "word": "ivre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk", + "example_sentence_native": "Il était complètement ivre après la fête.", + "example_sentence_english": "He was completely drunk after the party.", + "pos": "adjective", + "word_frequency": 6158 + }, + { + "word": "led", + "article_with_word": "la LED", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "LED", + "example_sentence_native": "La LED de l'appareil clignote.", + "example_sentence_english": "The device's LED is blinking.", + "pos": "noun", + "word_frequency": 6161 + }, + { + "word": "lesbienne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lesbian", + "example_sentence_native": "Elle est une femme lesbienne.", + "example_sentence_english": "She is a lesbian woman.", + "pos": "adjective", + "word_frequency": 6162 + }, + { + "word": "licenciement", + "article_with_word": "le licenciement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismissal;layoff", + "example_sentence_native": "Le licenciement économique a touché plusieurs employés.", + "example_sentence_english": "The economic dismissal affected several employees.", + "pos": "noun", + "word_frequency": 6163 + }, + { + "word": "mas", + "article_with_word": "le mas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditional farmhouse (in Provence)", + "example_sentence_native": "Nous avons loué un beau mas en Provence.", + "example_sentence_english": "We rented a beautiful farmhouse in Provence.", + "pos": "noun", + "word_frequency": 6165 + }, + { + "word": "maternité", + "article_with_word": "la maternité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maternity;maternity ward", + "example_sentence_native": "Elle est en congé de maternité.", + "example_sentence_english": "She is on maternity leave.", + "pos": "noun", + "word_frequency": 6166 + }, + { + "word": "mexicain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Mexican", + "example_sentence_native": "Il aime la cuisine mexicaine.", + "example_sentence_english": "He likes Mexican cuisine.", + "pos": "adjective", + "word_frequency": 6167 + }, + { + "word": "modem", + "article_with_word": "le modem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modem", + "example_sentence_native": "Le modem est connecté à Internet.", + "example_sentence_english": "The modem is connected to the Internet.", + "pos": "noun", + "word_frequency": 6168 + }, + { + "word": "moule", + "article_with_word": "la moule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mussel;mold", + "example_sentence_native": "J'adore les moules frites.", + "example_sentence_english": "I love mussels and fries.", + "pos": "noun", + "word_frequency": 6169 + }, + { + "word": "mystique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mystical", + "example_sentence_native": "Il a une approche très mystique de la vie.", + "example_sentence_english": "He has a very mystical approach to life.", + "pos": "adjective", + "word_frequency": 6170 + }, + { + "word": "médiocre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediocre;poor", + "example_sentence_native": "Sa performance était médiocre.", + "example_sentence_english": "His performance was mediocre.", + "pos": "adjective", + "word_frequency": 6171 + }, + { + "word": "mêlée", + "article_with_word": "la mêlée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrum;melee", + "example_sentence_native": "Le ballon est tombé dans la mêlée.", + "example_sentence_english": "The ball fell into the scrum.", + "pos": "noun", + "word_frequency": 6172 + }, + { + "word": "nage", + "article_with_word": "la nage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swim;stroke (swimming)", + "example_sentence_native": "Il pratique la nage libre.", + "example_sentence_english": "He practices freestyle swimming.", + "pos": "noun", + "word_frequency": 6173 + }, + { + "word": "naufrage", + "article_with_word": "le naufrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipwreck", + "example_sentence_native": "Le naufrage du Titanic est célèbre.", + "example_sentence_english": "The shipwreck of the Titanic is famous.", + "pos": "noun", + "word_frequency": 6174 + }, + { + "word": "noel", + "article_with_word": "Noël", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Christmas", + "example_sentence_native": "Nous fêtons Noël en famille.", + "example_sentence_english": "We celebrate Christmas with family.", + "pos": "noun", + "word_frequency": 6175 + }, + { + "word": "palme", + "article_with_word": "la palme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm (of hand;tree);fin (swimming);award", + "example_sentence_native": "Elle a reçu la Palme d'Or à Cannes.", + "example_sentence_english": "She received the Golden Palm at Cannes.", + "pos": "noun", + "word_frequency": 6178 + }, + { + "word": "penalty", + "article_with_word": "le penalty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty (kick)", + "example_sentence_native": "L'arbitre a sifflé un penalty.", + "example_sentence_english": "The referee whistled a penalty.", + "pos": "noun", + "word_frequency": 6179 + }, + { + "word": "plain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat;plain", + "example_sentence_native": "Le terrain est tout à fait plain.", + "example_sentence_english": "The ground is completely flat.", + "pos": "adjective", + "word_frequency": 6181 + }, + { + "word": "pleur", + "article_with_word": "le pleur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cry;weeping", + "example_sentence_native": "Ses pleurs ont cessé.", + "example_sentence_english": "His weeping stopped.", + "pos": "noun", + "word_frequency": 6182 + }, + { + "word": "poignet", + "article_with_word": "le poignet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wrist", + "example_sentence_native": "Il s'est tordu le poignet.", + "example_sentence_english": "He twisted his wrist.", + "pos": "noun", + "word_frequency": 6183 + }, + { + "word": "pénurie", + "article_with_word": "la pénurie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortage;scarcity", + "example_sentence_native": "Il y a une pénurie d'eau dans la région.", + "example_sentence_english": "There is a water shortage in the region.", + "pos": "noun", + "word_frequency": 6184 + }, + { + "word": "redoutable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formidable;fearsome", + "example_sentence_native": "C'est un adversaire redoutable.", + "example_sentence_english": "He is a formidable opponent.", + "pos": "adjective", + "word_frequency": 6185 + }, + { + "word": "relire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reread", + "example_sentence_native": "Je dois relire ce chapitre.", + "example_sentence_english": "I need to reread this chapter.", + "pos": "verb", + "word_frequency": 6186 + }, + { + "word": "rempart", + "article_with_word": "le rempart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rampart;bulwark", + "example_sentence_native": "Les remparts de la ville sont impressionnants.", + "example_sentence_english": "The city's ramparts are impressive.", + "pos": "noun", + "word_frequency": 6187 + }, + { + "word": "renfort", + "article_with_word": "le renfort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reinforcement;support", + "example_sentence_native": "Ils ont envoyé des renforts.", + "example_sentence_english": "They sent reinforcements.", + "pos": "noun", + "word_frequency": 6188 + }, + { + "word": "repère", + "article_with_word": "le repère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landmark;reference point", + "example_sentence_native": "Ce monument est un bon repère.", + "example_sentence_english": "This monument is a good landmark.", + "pos": "noun", + "word_frequency": 6189 + }, + { + "word": "réflexe", + "article_with_word": "le réflexe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflex", + "example_sentence_native": "C'est un réflexe naturel.", + "example_sentence_english": "It's a natural reflex.", + "pos": "noun", + "word_frequency": 6191 + }, + { + "word": "sabre", + "article_with_word": "le sabre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saber", + "example_sentence_native": "Le soldat tenait un sabre.", + "example_sentence_english": "The soldier held a saber.", + "pos": "noun", + "word_frequency": 6192 + }, + { + "word": "script", + "article_with_word": "le script", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "script", + "example_sentence_native": "Le script du film est excellent.", + "example_sentence_english": "The film's script is excellent.", + "pos": "noun", + "word_frequency": 6193 + }, + { + "word": "selle", + "article_with_word": "la selle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saddle;stool (feces)", + "example_sentence_native": "La selle du vélo est trop haute.", + "example_sentence_english": "The bicycle saddle is too high.", + "pos": "noun", + "word_frequency": 6194 + }, + { + "word": "sinistre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sinister;grim", + "example_sentence_native": "L'ambiance était sinistre.", + "example_sentence_english": "The atmosphere was grim.", + "pos": "adjective", + "word_frequency": 6195 + }, + { + "word": "successif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "successive", + "example_sentence_native": "Ils ont remporté trois victoires successives.", + "example_sentence_english": "They won three successive victories.", + "pos": "adjective", + "word_frequency": 6196 + }, + { + "word": "sueur", + "article_with_word": "la sueur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweat", + "example_sentence_native": "La sueur coulait sur son front.", + "example_sentence_english": "Sweat was running down his forehead.", + "pos": "noun", + "word_frequency": 6197 + }, + { + "word": "susciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arouse;to provoke;to generate", + "example_sentence_native": "Cette nouvelle a suscité beaucoup de questions.", + "example_sentence_english": "This news provoked many questions.", + "pos": "verb", + "word_frequency": 6198 + }, + { + "word": "syndical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade union;union-related", + "example_sentence_native": "Il est un représentant syndical.", + "example_sentence_english": "He is a trade union representative.", + "pos": "adjective", + "word_frequency": 6199 + }, + { + "word": "techno", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "techno music", + "example_sentence_native": "J'aime écouter de la techno quand je fais du sport.", + "example_sentence_english": "I like listening to techno when I exercise.", + "pos": "noun", + "word_frequency": 6200 + }, + { + "word": "tentation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temptation", + "example_sentence_native": "La tentation était trop forte.", + "example_sentence_english": "The temptation was too strong.", + "pos": "noun", + "word_frequency": 6201 + }, + { + "word": "terriblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terribly", + "example_sentence_native": "Il était terriblement fatigué après le voyage.", + "example_sentence_english": "He was terribly tired after the trip.", + "pos": "adverb", + "word_frequency": 6202 + }, + { + "word": "tranquillité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tranquility", + "example_sentence_native": "J'apprécie la tranquillité de la campagne.", + "example_sentence_english": "I appreciate the tranquility of the countryside.", + "pos": "noun", + "word_frequency": 6205 + }, + { + "word": "trip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trip", + "example_sentence_native": "On a fait un super trip en Asie.", + "example_sentence_english": "We had a great trip in Asia.", + "pos": "noun", + "word_frequency": 6206 + }, + { + "word": "tél", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "phone (abbreviation)", + "example_sentence_native": "Quel est ton numéro de tél ?", + "example_sentence_english": "What's your phone number?", + "pos": "noun", + "word_frequency": 6207 + }, + { + "word": "vachement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "really;very (informal)", + "example_sentence_native": "C'est vachement bien ce film !", + "example_sentence_english": "This movie is really good!", + "pos": "adverb", + "word_frequency": 6209 + }, + { + "word": "verdict", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verdict", + "example_sentence_native": "Le jury a rendu son verdict.", + "example_sentence_english": "The jury delivered its verdict.", + "pos": "noun", + "word_frequency": 6211 + }, + { + "word": "violon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violin", + "example_sentence_native": "Elle joue du violon depuis l'âge de cinq ans.", + "example_sentence_english": "She has been playing the violin since she was five.", + "pos": "noun", + "word_frequency": 6212 + }, + { + "word": "égyptien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Egyptian", + "example_sentence_native": "Il a visité les pyramides égyptiennes.", + "example_sentence_english": "He visited the Egyptian pyramids.", + "pos": "adjective", + "word_frequency": 6215 + }, + { + "word": "éphémère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ephemeral", + "example_sentence_native": "La beauté de la fleur est éphémère.", + "example_sentence_english": "The beauty of the flower is ephemeral.", + "pos": "adjective", + "word_frequency": 6216 + }, + { + "word": "abondance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abundance", + "example_sentence_native": "Il y a une abondance de fruits en été.", + "example_sentence_english": "There is an abundance of fruit in summer.", + "pos": "noun", + "word_frequency": 6217 + }, + { + "word": "addition", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bill;addition", + "example_sentence_native": "Pouvez-vous nous apporter l'addition, s'il vous plaît ?", + "example_sentence_english": "Could you bring us the bill, please?", + "pos": "noun", + "word_frequency": 6218 + }, + { + "word": "anxiété", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiety", + "example_sentence_native": "Il souffre d'anxiété.", + "example_sentence_english": "He suffers from anxiety.", + "pos": "noun", + "word_frequency": 6220 + }, + { + "word": "artifice", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artifice;firework", + "example_sentence_native": "Le feu d'artifice était magnifique.", + "example_sentence_english": "The firework display was magnificent.", + "pos": "noun", + "word_frequency": 6221 + }, + { + "word": "assemblage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;blend", + "example_sentence_native": "L'assemblage des pièces est complexe.", + "example_sentence_english": "The assembly of the parts is complex.", + "pos": "noun", + "word_frequency": 6222 + }, + { + "word": "atlas", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atlas", + "example_sentence_native": "J'ai consulté l'atlas pour trouver la ville.", + "example_sentence_english": "I consulted the atlas to find the city.", + "pos": "noun", + "word_frequency": 6223 + }, + { + "word": "atomique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atomic", + "example_sentence_native": "La bombe atomique a changé le monde.", + "example_sentence_english": "The atomic bomb changed the world.", + "pos": "adjective", + "word_frequency": 6224 + }, + { + "word": "attentif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attentive", + "example_sentence_native": "Il est toujours très attentif en classe.", + "example_sentence_english": "He is always very attentive in class.", + "pos": "adjective", + "word_frequency": 6225 + }, + { + "word": "audace", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "audacity;boldness", + "example_sentence_native": "Il a eu l'audace de lui dire la vérité.", + "example_sentence_english": "He had the audacity to tell her the truth.", + "pos": "noun", + "word_frequency": 6226 + }, + { + "word": "berceau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cradle", + "example_sentence_native": "Le bébé dort dans son berceau.", + "example_sentence_english": "The baby is sleeping in its cradle.", + "pos": "noun", + "word_frequency": 6227 + }, + { + "word": "catastrophique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catastrophic", + "example_sentence_native": "La situation économique est catastrophique.", + "example_sentence_english": "The economic situation is catastrophic.", + "pos": "adjective", + "word_frequency": 6229 + }, + { + "word": "centenaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centenarian;centenary", + "example_sentence_native": "La ville célèbre son centenaire.", + "example_sentence_english": "The city is celebrating its centenary.", + "pos": "noun", + "word_frequency": 6230 + }, + { + "word": "cerf", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deer;stag", + "example_sentence_native": "Nous avons vu un cerf dans la forêt.", + "example_sentence_english": "We saw a deer in the forest.", + "pos": "noun", + "word_frequency": 6231 + }, + { + "word": "clarté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarity", + "example_sentence_native": "Il a parlé avec beaucoup de clarté.", + "example_sentence_english": "He spoke with great clarity.", + "pos": "noun", + "word_frequency": 6232 + }, + { + "word": "cocaïne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cocaine", + "example_sentence_native": "La cocaïne est une drogue illégale.", + "example_sentence_english": "Cocaine is an illegal drug.", + "pos": "noun", + "word_frequency": 6233 + }, + { + "word": "compétent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competent", + "example_sentence_native": "C'est un employé très compétent.", + "example_sentence_english": "He is a very competent employee.", + "pos": "adjective", + "word_frequency": 6235 + }, + { + "word": "confrère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colleague;fellow member", + "example_sentence_native": "J'ai discuté avec un confrère de mon domaine.", + "example_sentence_english": "I discussed with a colleague from my field.", + "pos": "noun", + "word_frequency": 6236 + }, + { + "word": "contester", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispute;to challenge", + "example_sentence_native": "Il a décidé de contester la décision.", + "example_sentence_english": "He decided to challenge the decision.", + "pos": "verb", + "word_frequency": 6237 + }, + { + "word": "duché", + "article_with_word": "le duché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duchy", + "example_sentence_native": "Le duché était dirigé par un duc puissant.", + "example_sentence_english": "The duchy was ruled by a powerful duke.", + "pos": "noun", + "word_frequency": 6240 + }, + { + "word": "dénomination", + "article_with_word": "la dénomination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denomination;name", + "example_sentence_native": "La dénomination officielle de l'entreprise a changé.", + "example_sentence_english": "The official denomination of the company has changed.", + "pos": "noun", + "word_frequency": 6241 + }, + { + "word": "détective", + "article_with_word": "le détective", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detective", + "example_sentence_native": "Le détective a résolu l'affaire mystérieuse.", + "example_sentence_english": "The detective solved the mysterious case.", + "pos": "noun", + "word_frequency": 6242 + }, + { + "word": "embarquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embark;to board", + "example_sentence_native": "Nous allons embarquer dans l'avion dans une heure.", + "example_sentence_english": "We are going to board the plane in an hour.", + "pos": "verb", + "word_frequency": 6244 + }, + { + "word": "enterrement", + "article_with_word": "l'enterrement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral;burial", + "example_sentence_native": "L'enterrement aura lieu la semaine prochaine.", + "example_sentence_english": "The funeral will take place next week.", + "pos": "noun", + "word_frequency": 6245 + }, + { + "word": "exclus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excluded;exclusive", + "example_sentence_native": "Les membres non-inscrits sont exclus de la réunion.", + "example_sentence_english": "Non-registered members are excluded from the meeting.", + "pos": "adjective", + "word_frequency": 6247 + }, + { + "word": "exclusivité", + "article_with_word": "l'exclusivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusivity", + "example_sentence_native": "Le magasin a l'exclusivité de ce produit.", + "example_sentence_english": "The store has the exclusivity for this product.", + "pos": "noun", + "word_frequency": 6248 + }, + { + "word": "expérimentation", + "article_with_word": "l'expérimentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experimentation", + "example_sentence_native": "L'expérimentation animale est un sujet controversé.", + "example_sentence_english": "Animal experimentation is a controversial topic.", + "pos": "noun", + "word_frequency": 6249 + }, + { + "word": "fief", + "article_with_word": "le fief", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fief;stronghold", + "example_sentence_native": "Le chevalier a juré allégeance à son seigneur pour son fief.", + "example_sentence_english": "The knight swore allegiance to his lord for his fief.", + "pos": "noun", + "word_frequency": 6251 + }, + { + "word": "footballeur", + "article_with_word": "le footballeur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "footballer;soccer player", + "example_sentence_native": "Le jeune footballeur rêve de jouer en équipe nationale.", + "example_sentence_english": "The young footballer dreams of playing in the national team.", + "pos": "noun", + "word_frequency": 6252 + }, + { + "word": "fouet", + "article_with_word": "le fouet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whip;whisk", + "example_sentence_native": "Elle a utilisé un fouet pour battre les œufs en neige.", + "example_sentence_english": "She used a whisk to beat the egg whites.", + "pos": "noun", + "word_frequency": 6253 + }, + { + "word": "fraction", + "article_with_word": "la fraction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraction;portion", + "example_sentence_native": "Une petite fraction de la population est concernée.", + "example_sentence_english": "A small fraction of the population is concerned.", + "pos": "noun", + "word_frequency": 6254 + }, + { + "word": "féliciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to congratulate", + "example_sentence_native": "Je tiens à vous féliciter pour votre succès.", + "example_sentence_english": "I want to congratulate you on your success.", + "pos": "verb", + "word_frequency": 6255 + }, + { + "word": "féminisme", + "article_with_word": "le féminisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminism", + "example_sentence_native": "Le féminisme est un mouvement social important.", + "example_sentence_english": "Feminism is an important social movement.", + "pos": "noun", + "word_frequency": 6256 + }, + { + "word": "gentillesse", + "article_with_word": "la gentillesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kindness;niceness", + "example_sentence_native": "Sa gentillesse est très appréciée de tous.", + "example_sentence_english": "Her kindness is much appreciated by everyone.", + "pos": "noun", + "word_frequency": 6257 + }, + { + "word": "golden", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "golden", + "example_sentence_native": "C'est l'heure golden pour prendre des photos.", + "example_sentence_english": "It's the golden hour for taking photos.", + "pos": "adjective", + "word_frequency": 6259 + }, + { + "word": "halte", + "article_with_word": "la halte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stop;halt", + "example_sentence_native": "Faisons une halte pour nous reposer.", + "example_sentence_english": "Let's make a stop to rest.", + "pos": "noun", + "word_frequency": 6260 + }, + { + "word": "inconvénient", + "article_with_word": "l'inconvénient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disadvantage;drawback", + "example_sentence_native": "Quel est l'inconvénient de cette solution?", + "example_sentence_english": "What is the disadvantage of this solution?", + "pos": "noun", + "word_frequency": 6261 + }, + { + "word": "isoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to isolate;to insulate", + "example_sentence_native": "Il est important d'isoler la maison pour économiser l'énergie.", + "example_sentence_english": "It is important to insulate the house to save energy.", + "pos": "verb", + "word_frequency": 6264 + }, + { + "word": "joint", + "article_with_word": "le joint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint;seal;gasket", + "example_sentence_native": "Le plombier a remplacé le joint défectueux du robinet.", + "example_sentence_english": "The plumber replaced the faulty seal of the faucet.", + "pos": "noun", + "word_frequency": 6265 + }, + { + "word": "jouir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enjoy;to have pleasure", + "example_sentence_native": "Il jouit d'une excellente réputation dans son domaine.", + "example_sentence_english": "He enjoys an excellent reputation in his field.", + "pos": "verb", + "word_frequency": 6266 + }, + { + "word": "ko", + "article_with_word": "le KO", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "KO (knockout);kilobyte", + "example_sentence_native": "Le boxeur a mis son adversaire KO au troisième round.", + "example_sentence_english": "The boxer knocked out his opponent in the third round.", + "pos": "noun", + "word_frequency": 6268 + }, + { + "word": "laïque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secular;lay", + "example_sentence_native": "La France est une république laïque.", + "example_sentence_english": "France is a secular republic.", + "pos": "adjective", + "word_frequency": 6269 + }, + { + "word": "linéaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linear", + "example_sentence_native": "Le développement du projet n'est pas toujours linéaire.", + "example_sentence_english": "The project's development is not always linear.", + "pos": "adjective", + "word_frequency": 6271 + }, + { + "word": "mere", + "article_with_word": "la mère", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother", + "example_sentence_native": "Ma mère est une personne très gentille.", + "example_sentence_english": "My mother is a very kind person.", + "pos": "noun", + "word_frequency": 6275 + }, + { + "word": "modernité", + "article_with_word": "la modernité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernity", + "example_sentence_native": "La ville cherche à allier tradition et modernité.", + "example_sentence_english": "The city seeks to combine tradition and modernity.", + "pos": "noun", + "word_frequency": 6277 + }, + { + "word": "méditation", + "article_with_word": "la méditation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meditation", + "example_sentence_native": "La méditation peut aider à réduire le stress.", + "example_sentence_english": "Meditation can help reduce stress.", + "pos": "noun", + "word_frequency": 6278 + }, + { + "word": "méga", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mega;huge;great", + "example_sentence_native": "C'était une méga fête hier soir!", + "example_sentence_english": "It was a mega party last night!", + "pos": "adjective", + "word_frequency": 6279 + }, + { + "word": "navette", + "article_with_word": "la navette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shuttle", + "example_sentence_native": "La navette spatiale a décollé à l'heure.", + "example_sentence_english": "The space shuttle took off on time.", + "pos": "noun", + "word_frequency": 6280 + }, + { + "word": "opérationnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operational", + "example_sentence_native": "Le système est maintenant pleinement opérationnel.", + "example_sentence_english": "The system is now fully operational.", + "pos": "adjective", + "word_frequency": 6281 + }, + { + "word": "persister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persist", + "example_sentence_native": "Il faut persister pour atteindre ses objectifs.", + "example_sentence_english": "One must persist to achieve one's goals.", + "pos": "verb", + "word_frequency": 6283 + }, + { + "word": "pois", + "article_with_word": "le pois", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pea", + "example_sentence_native": "J'aime les petits pois avec ma viande.", + "example_sentence_english": "I like peas with my meat.", + "pos": "noun", + "word_frequency": 6285 + }, + { + "word": "prolongement", + "article_with_word": "le prolongement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;continuation", + "example_sentence_native": "Ce projet est un prolongement de nos efforts précédents.", + "example_sentence_english": "This project is an extension of our previous efforts.", + "pos": "noun", + "word_frequency": 6286 + }, + { + "word": "prostituée", + "article_with_word": "la prostituée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute", + "example_sentence_native": "Le film dépeint la vie d'une prostituée à Paris.", + "example_sentence_english": "The film depicts the life of a prostitute in Paris.", + "pos": "noun", + "word_frequency": 6287 + }, + { + "word": "prédécesseur", + "article_with_word": "le prédécesseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predecessor", + "example_sentence_native": "Son prédécesseur a laissé un héritage complexe.", + "example_sentence_english": "His predecessor left a complex legacy.", + "pos": "noun", + "word_frequency": 6288 + }, + { + "word": "périphérie", + "article_with_word": "la périphérie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "periphery;outskirts", + "example_sentence_native": "Ils habitent en périphérie de la ville.", + "example_sentence_english": "They live on the outskirts of the city.", + "pos": "noun", + "word_frequency": 6290 + }, + { + "word": "requin", + "article_with_word": "le requin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shark", + "example_sentence_native": "Le requin est un prédateur marin impressionnant.", + "example_sentence_english": "The shark is an impressive marine predator.", + "pos": "noun", + "word_frequency": 6291 + }, + { + "word": "soupçon", + "article_with_word": "le soupçon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicion;hint", + "example_sentence_native": "Il y avait un soupçon de vérité dans ses paroles.", + "example_sentence_english": "There was a hint of truth in his words.", + "pos": "noun", + "word_frequency": 6295 + }, + { + "word": "stagiaire", + "article_with_word": "le stagiaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intern;trainee", + "example_sentence_native": "La nouvelle stagiaire est très motivée.", + "example_sentence_english": "The new intern is very motivated.", + "pos": "noun", + "word_frequency": 6297 + }, + { + "word": "suggestion", + "article_with_word": "la suggestion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suggestion", + "example_sentence_native": "J'ai une suggestion pour améliorer le projet.", + "example_sentence_english": "I have a suggestion to improve the project.", + "pos": "noun", + "word_frequency": 6300 + }, + { + "word": "séduction", + "article_with_word": "la séduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seduction;charm", + "example_sentence_native": "Son charme opère une forte séduction sur les gens.", + "example_sentence_english": "His charm exerts a strong seduction on people.", + "pos": "noun", + "word_frequency": 6301 + }, + { + "word": "tabou", + "article_with_word": "le tabou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taboo", + "example_sentence_native": "Le sujet de la mort est souvent un tabou dans notre société.", + "example_sentence_english": "The subject of death is often a taboo in our society.", + "pos": "noun", + "word_frequency": 6302 + }, + { + "word": "teinte", + "article_with_word": "la teinte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tint;shade;hue", + "example_sentence_native": "La peinture a une belle teinte de bleu.", + "example_sentence_english": "The paint has a beautiful shade of blue.", + "pos": "noun", + "word_frequency": 6305 + }, + { + "word": "tendresse", + "article_with_word": "la tendresse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenderness;affection", + "example_sentence_native": "Elle a montré beaucoup de tendresse envers son enfant.", + "example_sentence_english": "She showed a lot of tenderness towards her child.", + "pos": "noun", + "word_frequency": 6306 + }, + { + "word": "tram", + "article_with_word": "le tram", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tram;streetcar", + "example_sentence_native": "Prenons le tram pour aller au centre-ville.", + "example_sentence_english": "Let's take the tram to go downtown.", + "pos": "noun", + "word_frequency": 6307 + }, + { + "word": "uranium", + "article_with_word": "l'uranium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uranium", + "example_sentence_native": "L'uranium est un élément radioactif.", + "example_sentence_english": "Uranium is a radioactive element.", + "pos": "noun", + "word_frequency": 6308 + }, + { + "word": "vilain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "naughty;ugly;villainous", + "example_sentence_native": "Ce vilain petit canard est devenu un beau cygne.", + "example_sentence_english": "This ugly duckling became a beautiful swan.", + "pos": "adjective", + "word_frequency": 6311 + }, + { + "word": "vitrine", + "article_with_word": "la vitrine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shop window;display case", + "example_sentence_native": "Les enfants regardaient les jouets dans la vitrine.", + "example_sentence_english": "The children were looking at the toys in the shop window.", + "pos": "noun", + "word_frequency": 6312 + }, + { + "word": "annale", + "article_with_word": "l'annale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annals;past exam papers", + "example_sentence_native": "J'étudie les annales pour préparer l'examen.", + "example_sentence_english": "I'm studying the past exam papers to prepare for the exam.", + "pos": "noun", + "word_frequency": 6316 + }, + { + "word": "arbitraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitrary", + "example_sentence_native": "La décision semblait totalement arbitraire.", + "example_sentence_english": "The decision seemed totally arbitrary.", + "pos": "adjective", + "word_frequency": 6317 + }, + { + "word": "banal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banal;commonplace", + "example_sentence_native": "C'était une conversation assez banale.", + "example_sentence_english": "It was a rather commonplace conversation.", + "pos": "adjective", + "word_frequency": 6318 + }, + { + "word": "bug", + "article_with_word": "le bug", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bug", + "example_sentence_native": "Il y a un bug dans le logiciel qui empêche l'application de fonctionner.", + "example_sentence_english": "There is a bug in the software that prevents the application from working.", + "pos": "noun", + "word_frequency": 6322 + }, + { + "word": "clique", + "article_with_word": "la clique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clique;gang", + "example_sentence_native": "Cette clique d'amis passe tout son temps ensemble.", + "example_sentence_english": "This clique of friends spends all their time together.", + "pos": "noun", + "word_frequency": 6323 + }, + { + "word": "commencement", + "article_with_word": "le commencement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beginning;start", + "example_sentence_native": "Le commencement des travaux est prévu pour le mois prochain.", + "example_sentence_english": "The beginning of the works is scheduled for next month.", + "pos": "noun", + "word_frequency": 6324 + }, + { + "word": "communisme", + "article_with_word": "le communisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communism", + "example_sentence_native": "Le communisme est une idéologie politique et économique.", + "example_sentence_english": "Communism is a political and economic ideology.", + "pos": "noun", + "word_frequency": 6325 + }, + { + "word": "complétement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely", + "example_sentence_native": "Il a complétement oublié son rendez-vous chez le dentiste.", + "example_sentence_english": "He completely forgot his dentist appointment.", + "pos": "adverb", + "word_frequency": 6326 + }, + { + "word": "cube", + "article_with_word": "le cube", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cube", + "example_sentence_native": "Le sucre est souvent vendu en petits cubes.", + "example_sentence_english": "Sugar is often sold in small cubes.", + "pos": "noun", + "word_frequency": 6327 + }, + { + "word": "culotte", + "article_with_word": "la culotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panties;knickers", + "example_sentence_native": "Elle a acheté une nouvelle culotte en dentelle.", + "example_sentence_english": "She bought new lace panties.", + "pos": "noun", + "word_frequency": 6328 + }, + { + "word": "directoire", + "article_with_word": "le directoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "directory;board of directors", + "example_sentence_native": "Le directoire de l'entreprise a approuvé le nouveau plan stratégique.", + "example_sentence_english": "The company's board of directors approved the new strategic plan.", + "pos": "noun", + "word_frequency": 6329 + }, + { + "word": "disponibilité", + "article_with_word": "la disponibilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "availability", + "example_sentence_native": "Nous devons vérifier la disponibilité des produits en stock.", + "example_sentence_english": "We need to check the availability of products in stock.", + "pos": "noun", + "word_frequency": 6330 + }, + { + "word": "dorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gild;to brown", + "example_sentence_native": "Il faut dorer les oignons dans une poêle avant d'ajouter les autres ingrédients.", + "example_sentence_english": "You need to brown the onions in a pan before adding the other ingredients.", + "pos": "verb", + "word_frequency": 6331 + }, + { + "word": "débarquement", + "article_with_word": "le débarquement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing;disembarkation", + "example_sentence_native": "Le débarquement des troupes a eu lieu sur la plage à l'aube.", + "example_sentence_english": "The landing of the troops took place on the beach at dawn.", + "pos": "noun", + "word_frequency": 6332 + }, + { + "word": "délinquance", + "article_with_word": "la délinquance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquency;crime", + "example_sentence_native": "La délinquance juvénile est un sujet de préoccupation pour la société.", + "example_sentence_english": "Juvenile delinquency is a matter of concern for society.", + "pos": "noun", + "word_frequency": 6333 + }, + { + "word": "détection", + "article_with_word": "la détection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detection", + "example_sentence_native": "La détection précoce de la maladie est essentielle pour un traitement efficace.", + "example_sentence_english": "Early detection of the disease is essential for effective treatment.", + "pos": "noun", + "word_frequency": 6334 + }, + { + "word": "enquêter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to investigate", + "example_sentence_native": "La police a décidé d'enquêter sur les causes de l'accident.", + "example_sentence_english": "The police decided to investigate the causes of the accident.", + "pos": "verb", + "word_frequency": 6336 + }, + { + "word": "exciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excite;to arouse", + "example_sentence_native": "Le spectacle a excité la foule avec ses effets spéciaux.", + "example_sentence_english": "The show excited the crowd with its special effects.", + "pos": "verb", + "word_frequency": 6337 + }, + { + "word": "exigeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanding;strict", + "example_sentence_native": "C'est un professeur très exigeant mais juste.", + "example_sentence_english": "He is a very demanding but fair teacher.", + "pos": "adjective", + "word_frequency": 6338 + }, + { + "word": "explicite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explicit", + "example_sentence_native": "Les instructions étaient claires et explicites.", + "example_sentence_english": "The instructions were clear and explicit.", + "pos": "adjective", + "word_frequency": 6339 + }, + { + "word": "fardeau", + "article_with_word": "le fardeau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burden", + "example_sentence_native": "Ce travail est devenu un lourd fardeau pour lui.", + "example_sentence_english": "This work has become a heavy burden for him.", + "pos": "noun", + "word_frequency": 6340 + }, + { + "word": "finesse", + "article_with_word": "la finesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finesse;subtlety", + "example_sentence_native": "Elle a répondu à la question avec beaucoup de finesse.", + "example_sentence_english": "She answered the question with great finesse.", + "pos": "noun", + "word_frequency": 6341 + }, + { + "word": "gilet", + "article_with_word": "le gilet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vest;waistcoat", + "example_sentence_native": "Il portait un gilet de sauvetage sur le bateau.", + "example_sentence_english": "He was wearing a life vest on the boat.", + "pos": "noun", + "word_frequency": 6342 + }, + { + "word": "grimper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb", + "example_sentence_native": "Les enfants adorent grimper aux arbres dans le jardin.", + "example_sentence_english": "Children love to climb trees in the garden.", + "pos": "verb", + "word_frequency": 6343 + }, + { + "word": "hurler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to howl;to scream", + "example_sentence_native": "Le chien a commencé à hurler à la pleine lune.", + "example_sentence_english": "The dog started to howl at the full moon.", + "pos": "verb", + "word_frequency": 6345 + }, + { + "word": "hypocrite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypocritical", + "example_sentence_native": "Son attitude est hypocrite, il dit une chose et fait le contraire.", + "example_sentence_english": "His attitude is hypocritical, he says one thing and does the opposite.", + "pos": "adjective", + "word_frequency": 6346 + }, + { + "word": "importation", + "article_with_word": "l'importation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "importation", + "example_sentence_native": "L'importation de certains produits est soumise à des taxes élevées.", + "example_sentence_english": "The importation of certain products is subject to high taxes.", + "pos": "noun", + "word_frequency": 6348 + }, + { + "word": "influencer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to influence", + "example_sentence_native": "Il essaie d'influencer les décisions du groupe.", + "example_sentence_english": "He tries to influence the group's decisions.", + "pos": "verb", + "word_frequency": 6349 + }, + { + "word": "initié", + "article_with_word": "un initié", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insider;initiated person", + "example_sentence_native": "Seuls les initiés connaissent les règles secrètes de ce club.", + "example_sentence_english": "Only insiders know the secret rules of this club.", + "pos": "noun", + "word_frequency": 6350 + }, + { + "word": "intuition", + "article_with_word": "l'intuition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuition", + "example_sentence_native": "J'ai eu l'intuition que quelque chose n'allait pas.", + "example_sentence_english": "I had an intuition that something was wrong.", + "pos": "noun", + "word_frequency": 6351 + }, + { + "word": "intégralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirely;fully", + "example_sentence_native": "Le texte a été traduit intégralement en plusieurs langues.", + "example_sentence_english": "The text was translated entirely into several languages.", + "pos": "adverb", + "word_frequency": 6352 + }, + { + "word": "lointain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant;far-off", + "example_sentence_native": "Ils ont voyagé vers des terres lointaines et inconnues.", + "example_sentence_english": "They traveled to distant and unknown lands.", + "pos": "adjective", + "word_frequency": 6355 + }, + { + "word": "menteur", + "article_with_word": "le menteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liar", + "example_sentence_native": "Il est connu pour être un grand menteur, personne ne le croit.", + "example_sentence_english": "He is known to be a big liar, no one believes him.", + "pos": "noun", + "word_frequency": 6358 + }, + { + "word": "muet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mute", + "example_sentence_native": "Il est resté muet après le choc.", + "example_sentence_english": "He remained mute after the shock.", + "pos": "adjective", + "word_frequency": 6361 + }, + { + "word": "musculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muscular", + "example_sentence_native": "Il a une forte douleur musculaire.", + "example_sentence_english": "He has a strong muscular pain.", + "pos": "adjective", + "word_frequency": 6362 + }, + { + "word": "oignon", + "article_with_word": "un oignon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "onion", + "example_sentence_native": "J'ai coupé un oignon pour la soupe.", + "example_sentence_english": "I cut an onion for the soup.", + "pos": "noun", + "word_frequency": 6363 + }, + { + "word": "optimisation", + "article_with_word": "l'optimisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "optimization", + "example_sentence_native": "L'optimisation des processus est essentielle.", + "example_sentence_english": "Process optimization is essential.", + "pos": "noun", + "word_frequency": 6364 + }, + { + "word": "paisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peaceful", + "example_sentence_native": "C'est un endroit très paisible.", + "example_sentence_english": "It's a very peaceful place.", + "pos": "adjective", + "word_frequency": 6365 + }, + { + "word": "partition", + "article_with_word": "la partition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "score (music);partition", + "example_sentence_native": "Le pianiste a lu la partition.", + "example_sentence_english": "The pianist read the score.", + "pos": "noun", + "word_frequency": 6366 + }, + { + "word": "pencher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lean;to tilt", + "example_sentence_native": "Il faut pencher la tête pour voir.", + "example_sentence_english": "You have to tilt your head to see.", + "pos": "verb", + "word_frequency": 6367 + }, + { + "word": "poupée", + "article_with_word": "la poupée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doll", + "example_sentence_native": "La petite fille joue avec sa poupée.", + "example_sentence_english": "The little girl is playing with her doll.", + "pos": "noun", + "word_frequency": 6368 + }, + { + "word": "productif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productive", + "example_sentence_native": "Il a eu une journée très productive.", + "example_sentence_english": "He had a very productive day.", + "pos": "adjective", + "word_frequency": 6370 + }, + { + "word": "provocation", + "article_with_word": "la provocation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocation", + "example_sentence_native": "Son geste était une pure provocation.", + "example_sentence_english": "His gesture was pure provocation.", + "pos": "noun", + "word_frequency": 6371 + }, + { + "word": "rein", + "article_with_word": "le rein", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kidney", + "example_sentence_native": "Les reins filtrent le sang.", + "example_sentence_english": "The kidneys filter the blood.", + "pos": "noun", + "word_frequency": 6372 + }, + { + "word": "repasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to iron;to pass again", + "example_sentence_native": "Je dois repasser ma chemise.", + "example_sentence_english": "I need to iron my shirt.", + "pos": "verb", + "word_frequency": 6373 + }, + { + "word": "rouleau", + "article_with_word": "le rouleau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roll;roller", + "example_sentence_native": "Elle a utilisé un rouleau à pâtisserie.", + "example_sentence_english": "She used a rolling pin.", + "pos": "noun", + "word_frequency": 6374 + }, + { + "word": "rousse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "red-haired (feminine)", + "example_sentence_native": "Ma sœur est rousse.", + "example_sentence_english": "My sister is red-haired.", + "pos": "adjective", + "word_frequency": 6375 + }, + { + "word": "réciproque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reciprocal", + "example_sentence_native": "Le respect doit être réciproque.", + "example_sentence_english": "Respect must be reciprocal.", + "pos": "adjective", + "word_frequency": 6376 + }, + { + "word": "réformer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reform", + "example_sentence_native": "Le gouvernement veut réformer le système.", + "example_sentence_english": "The government wants to reform the system.", + "pos": "verb", + "word_frequency": 6377 + }, + { + "word": "régulière", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "regular (feminine)", + "example_sentence_native": "Elle a une pratique régulière du sport.", + "example_sentence_english": "She has a regular sports practice.", + "pos": "adjective", + "word_frequency": 6378 + }, + { + "word": "serie", + "article_with_word": "la série", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "series", + "example_sentence_native": "J'ai regardé une nouvelle série à la télévision.", + "example_sentence_english": "I watched a new series on television.", + "pos": "noun", + "word_frequency": 6379 + }, + { + "word": "souple", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexible;supple", + "example_sentence_native": "Ce matériau est très souple.", + "example_sentence_english": "This material is very flexible.", + "pos": "adjective", + "word_frequency": 6381 + }, + { + "word": "sperme", + "article_with_word": "le sperme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sperm", + "example_sentence_native": "Le sperme contient les cellules reproductrices mâles.", + "example_sentence_english": "Sperm contains male reproductive cells.", + "pos": "noun", + "word_frequency": 6382 + }, + { + "word": "sultan", + "article_with_word": "le sultan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sultan", + "example_sentence_native": "Le sultan régnait sur un vaste empire.", + "example_sentence_english": "The sultan reigned over a vast empire.", + "pos": "noun", + "word_frequency": 6383 + }, + { + "word": "sénégalais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Senegalese", + "example_sentence_native": "Il a acheté un masque sénégalais.", + "example_sentence_english": "He bought a Senegalese mask.", + "pos": "adjective", + "word_frequency": 6385 + }, + { + "word": "thématique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thematic", + "example_sentence_native": "L'exposition a une approche thématique.", + "example_sentence_english": "The exhibition has a thematic approach.", + "pos": "adjective", + "word_frequency": 6386 + }, + { + "word": "trahir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to betray", + "example_sentence_native": "Il ne faut jamais trahir la confiance.", + "example_sentence_english": "One must never betray trust.", + "pos": "verb", + "word_frequency": 6387 + }, + { + "word": "tremblement", + "article_with_word": "le tremblement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tremor;shaking", + "example_sentence_native": "J'ai ressenti un léger tremblement de terre.", + "example_sentence_english": "I felt a slight earthquake tremor.", + "pos": "noun", + "word_frequency": 6388 + }, + { + "word": "troll", + "article_with_word": "le troll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troll", + "example_sentence_native": "Ne réponds pas au troll sur internet.", + "example_sentence_english": "Don't reply to the troll on the internet.", + "pos": "noun", + "word_frequency": 6389 + }, + { + "word": "vase", + "article_with_word": "le vase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vase", + "example_sentence_native": "Elle a mis des fleurs dans le vase.", + "example_sentence_english": "She put flowers in the vase.", + "pos": "noun", + "word_frequency": 6393 + }, + { + "word": "visuelle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visual (feminine)", + "example_sentence_native": "L'information visuelle est très importante.", + "example_sentence_english": "Visual information is very important.", + "pos": "adjective", + "word_frequency": 6394 + }, + { + "word": "yen", + "article_with_word": "le yen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yen", + "example_sentence_native": "Le yen est la monnaie du Japon.", + "example_sentence_english": "The yen is the currency of Japan.", + "pos": "noun", + "word_frequency": 6397 + }, + { + "word": "éléphant", + "article_with_word": "l'éléphant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elephant", + "example_sentence_native": "L'éléphant est un grand animal.", + "example_sentence_english": "The elephant is a large animal.", + "pos": "noun", + "word_frequency": 6398 + }, + { + "word": "émeute", + "article_with_word": "l'émeute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riot", + "example_sentence_native": "Il y a eu une émeute dans la ville.", + "example_sentence_english": "There was a riot in the city.", + "pos": "noun", + "word_frequency": 6399 + }, + { + "word": "avènement", + "article_with_word": "l’avènement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advent;arrival", + "example_sentence_native": "L'avènement de l'ère numérique a transformé nos vies.", + "example_sentence_english": "The advent of the digital age has transformed our lives.", + "pos": "noun", + "word_frequency": 6402 + }, + { + "word": "boulangerie", + "article_with_word": "la boulangerie", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bakery", + "example_sentence_native": "Je vais à la boulangerie acheter du pain.", + "example_sentence_english": "I'm going to the bakery to buy some bread.", + "pos": "noun", + "word_frequency": 6404 + }, + { + "word": "british", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "British", + "example_sentence_native": "Il a un accent britannique.", + "example_sentence_english": "He has a British accent.", + "pos": "adjective", + "word_frequency": 6405 + }, + { + "word": "burger", + "article_with_word": "le burger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "burger", + "example_sentence_native": "J'ai commandé un burger avec des frites.", + "example_sentence_english": "I ordered a burger with fries.", + "pos": "noun", + "word_frequency": 6406 + }, + { + "word": "civique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civic", + "example_sentence_native": "Il est important de participer à la vie civique.", + "example_sentence_english": "It is important to participate in civic life.", + "pos": "adjective", + "word_frequency": 6407 + }, + { + "word": "cortège", + "article_with_word": "le cortège", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procession;cortege", + "example_sentence_native": "Le cortège funèbre a traversé la ville.", + "example_sentence_english": "The funeral procession passed through the city.", + "pos": "noun", + "word_frequency": 6408 + }, + { + "word": "céramique", + "article_with_word": "la céramique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceramic", + "example_sentence_native": "Elle fabrique des objets en céramique.", + "example_sentence_english": "She makes ceramic objects.", + "pos": "noun", + "word_frequency": 6410 + }, + { + "word": "cérébral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cerebral", + "example_sentence_native": "Il a subi un accident vasculaire cérébral.", + "example_sentence_english": "He suffered a cerebral stroke.", + "pos": "adjective", + "word_frequency": 6411 + }, + { + "word": "diplomate", + "article_with_word": "le diplomate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diplomat", + "example_sentence_native": "Le diplomate a négocié un accord de paix.", + "example_sentence_english": "The diplomat negotiated a peace agreement.", + "pos": "noun", + "word_frequency": 6412 + }, + { + "word": "délivrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deliver;to free", + "example_sentence_native": "Le facteur va délivrer le colis.", + "example_sentence_english": "The postman will deliver the package.", + "pos": "verb", + "word_frequency": 6414 + }, + { + "word": "déterminant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determining;crucial", + "example_sentence_native": "Son rôle a été déterminant dans le succès du projet.", + "example_sentence_english": "His role was crucial in the project's success.", + "pos": "adjective", + "word_frequency": 6415 + }, + { + "word": "dôme", + "article_with_word": "le dôme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dome", + "example_sentence_native": "Le dôme de la basilique est impressionnant.", + "example_sentence_english": "The dome of the basilica is impressive.", + "pos": "noun", + "word_frequency": 6416 + }, + { + "word": "excessif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excessive", + "example_sentence_native": "Le prix était excessif.", + "example_sentence_english": "The price was excessive.", + "pos": "adjective", + "word_frequency": 6418 + }, + { + "word": "explicitement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explicitly", + "example_sentence_native": "Il a explicitement refusé l'offre.", + "example_sentence_english": "He explicitly refused the offer.", + "pos": "adverb", + "word_frequency": 6419 + }, + { + "word": "fascinant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinating", + "example_sentence_native": "Ce livre est vraiment fascinant.", + "example_sentence_english": "This book is truly fascinating.", + "pos": "adjective", + "word_frequency": 6420 + }, + { + "word": "fraîcheur", + "article_with_word": "la fraîcheur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freshness;coolness", + "example_sentence_native": "J'apprécie la fraîcheur de l'air le matin.", + "example_sentence_english": "I appreciate the coolness of the air in the morning.", + "pos": "noun", + "word_frequency": 6422 + }, + { + "word": "frustration", + "article_with_word": "la frustration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustration", + "example_sentence_native": "Il a ressenti une grande frustration.", + "example_sentence_english": "He felt great frustration.", + "pos": "noun", + "word_frequency": 6423 + }, + { + "word": "grange", + "article_with_word": "la grange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barn", + "example_sentence_native": "Les animaux sont dans la grange.", + "example_sentence_english": "The animals are in the barn.", + "pos": "noun", + "word_frequency": 6425 + }, + { + "word": "icône", + "article_with_word": "l’icône", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icon", + "example_sentence_native": "Cliquez sur l'icône pour ouvrir le programme.", + "example_sentence_english": "Click on the icon to open the program.", + "pos": "noun", + "word_frequency": 6428 + }, + { + "word": "impressionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to impress", + "example_sentence_native": "Son talent m'a beaucoup impressionné.", + "example_sentence_english": "His talent impressed me a lot.", + "pos": "verb", + "word_frequency": 6429 + }, + { + "word": "laisse", + "article_with_word": "la laisse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leash;lead", + "example_sentence_native": "Tiens ton chien en laisse.", + "example_sentence_english": "Keep your dog on a leash.", + "pos": "noun", + "word_frequency": 6432 + }, + { + "word": "latéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lateral;side", + "example_sentence_native": "Il a ressenti une douleur latérale.", + "example_sentence_english": "He felt a lateral pain.", + "pos": "adjective", + "word_frequency": 6433 + }, + { + "word": "lucratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lucrative", + "example_sentence_native": "C'est une affaire très lucrative.", + "example_sentence_english": "It's a very lucrative business.", + "pos": "adjective", + "word_frequency": 6436 + }, + { + "word": "metro", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "subway;metro", + "example_sentence_native": "Je prends le métro pour aller au travail.", + "example_sentence_english": "I take the subway to go to work.", + "pos": "noun", + "word_frequency": 6440 + }, + { + "word": "minuscule", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny;minuscule", + "example_sentence_native": "L'écriture était minuscule et difficile à lire.", + "example_sentence_english": "The writing was tiny and difficult to read.", + "pos": "adjective", + "word_frequency": 6441 + }, + { + "word": "minéral", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mineral", + "example_sentence_native": "Ce sol est riche en minéraux essentiels.", + "example_sentence_english": "This soil is rich in essential minerals.", + "pos": "noun", + "word_frequency": 6442 + }, + { + "word": "mobiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mobilize", + "example_sentence_native": "Le gouvernement a mobilisé des ressources pour l'aide humanitaire.", + "example_sentence_english": "The government mobilized resources for humanitarian aid.", + "pos": "verb", + "word_frequency": 6443 + }, + { + "word": "ordure", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garbage;trash", + "example_sentence_native": "Il faut jeter les ordures à la poubelle.", + "example_sentence_english": "You have to throw the garbage in the bin.", + "pos": "noun", + "word_frequency": 6445 + }, + { + "word": "pipi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pee (informal)", + "example_sentence_native": "Le chien a fait pipi sur le tapis.", + "example_sentence_english": "The dog peed on the carpet.", + "pos": "noun", + "word_frequency": 6447 + }, + { + "word": "poivre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pepper", + "example_sentence_native": "J'ai ajouté du poivre à ma soupe.", + "example_sentence_english": "I added pepper to my soup.", + "pos": "noun", + "word_frequency": 6448 + }, + { + "word": "protestation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protest;objection", + "example_sentence_native": "Il y a eu des protestations contre la nouvelle loi.", + "example_sentence_english": "There were protests against the new law.", + "pos": "noun", + "word_frequency": 6449 + }, + { + "word": "présider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preside over;to chair", + "example_sentence_native": "Le président va présider la réunion.", + "example_sentence_english": "The president will preside over the meeting.", + "pos": "verb", + "word_frequency": 6450 + }, + { + "word": "rdc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ground floor (RDC: rez-de-chaussée)", + "example_sentence_native": "L'appartement est situé au RDC.", + "example_sentence_english": "The apartment is located on the ground floor.", + "pos": "noun", + "word_frequency": 6452 + }, + { + "word": "refroidissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooling;chill;cold (illness)", + "example_sentence_native": "J'ai attrapé un refroidissement hier.", + "example_sentence_english": "I caught a cold yesterday.", + "pos": "noun", + "word_frequency": 6453 + }, + { + "word": "relâcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to release;to loosen", + "example_sentence_native": "La police a décidé de relâcher le suspect.", + "example_sentence_english": "The police decided to release the suspect.", + "pos": "verb", + "word_frequency": 6454 + }, + { + "word": "représentatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representative", + "example_sentence_native": "Ce sondage n'est pas représentatif de l'opinion publique.", + "example_sentence_english": "This survey is not representative of public opinion.", + "pos": "adjective", + "word_frequency": 6455 + }, + { + "word": "respectif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respective", + "example_sentence_native": "Ils sont retournés à leurs maisons respectives.", + "example_sentence_english": "They returned to their respective homes.", + "pos": "adjective", + "word_frequency": 6456 + }, + { + "word": "réacteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactor;jet engine", + "example_sentence_native": "L'avion est équipé de deux réacteurs puissants.", + "example_sentence_english": "The plane is equipped with two powerful jet engines.", + "pos": "noun", + "word_frequency": 6459 + }, + { + "word": "réconciliation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconciliation", + "example_sentence_native": "Ils ont travaillé à la réconciliation après leur dispute.", + "example_sentence_english": "They worked towards reconciliation after their argument.", + "pos": "noun", + "word_frequency": 6460 + }, + { + "word": "réglementaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regulatory;statutory", + "example_sentence_native": "Toutes les procédures réglementaires ont été suivies.", + "example_sentence_english": "All regulatory procedures were followed.", + "pos": "adjective", + "word_frequency": 6461 + }, + { + "word": "résultant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resulting", + "example_sentence_native": "Les problèmes résultant de cette décision sont nombreux.", + "example_sentence_english": "The problems resulting from this decision are numerous.", + "pos": "adjective", + "word_frequency": 6462 + }, + { + "word": "sensibilisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awareness;sensitization", + "example_sentence_native": "La campagne vise à la sensibilisation du public.", + "example_sentence_english": "The campaign aims at public awareness.", + "pos": "noun", + "word_frequency": 6463 + }, + { + "word": "singulier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "singular;peculiar", + "example_sentence_native": "C'est une situation assez singulière.", + "example_sentence_english": "It's quite a peculiar situation.", + "pos": "adjective", + "word_frequency": 6464 + }, + { + "word": "songe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dream (literary)", + "example_sentence_native": "Il a raconté un étrange songe qu'il avait fait.", + "example_sentence_english": "He recounted a strange dream he had.", + "pos": "noun", + "word_frequency": 6465 + }, + { + "word": "sou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penny;cent (old coin)", + "example_sentence_native": "Je n'ai pas un sou en poche.", + "example_sentence_english": "I don't have a penny in my pocket.", + "pos": "noun", + "word_frequency": 6466 + }, + { + "word": "talentueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "talented", + "example_sentence_native": "C'est un artiste très talentueux.", + "example_sentence_english": "He is a very talented artist.", + "pos": "adjective", + "word_frequency": 6469 + }, + { + "word": "tige", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stem;rod;stalk", + "example_sentence_native": "La fleur a une longue tige verte.", + "example_sentence_english": "The flower has a long green stem.", + "pos": "noun", + "word_frequency": 6470 + }, + { + "word": "électorat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electorate", + "example_sentence_native": "L'électorat a voté massivement pour le nouveau candidat.", + "example_sentence_english": "The electorate voted massively for the new candidate.", + "pos": "noun", + "word_frequency": 6472 + }, + { + "word": "avancement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advancement;progress", + "example_sentence_native": "Nous avons fait de grands avancements dans ce projet.", + "example_sentence_english": "We have made great advancements in this project.", + "pos": "noun", + "word_frequency": 6474 + }, + { + "word": "bienvenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "welcome", + "example_sentence_native": "Votre aide est la bienvenue.", + "example_sentence_english": "Your help is welcome.", + "pos": "adjective", + "word_frequency": 6477 + }, + { + "word": "bougie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "candle;spark plug", + "example_sentence_native": "J'ai allumé une bougie pour créer une ambiance.", + "example_sentence_english": "I lit a candle to create an atmosphere.", + "pos": "noun", + "word_frequency": 6479 + }, + { + "word": "bouillon", + "article_with_word": "le bouillon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broth;stock", + "example_sentence_native": "Le bouillon de poulet est bon pour la santé.", + "example_sentence_english": "Chicken broth is good for your health.", + "pos": "noun", + "word_frequency": 6480 + }, + { + "word": "bâtard", + "article_with_word": "le bâtard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bastard;mongrel", + "example_sentence_native": "C'est un bâtard, il n'a pas de famille connue.", + "example_sentence_english": "He is a bastard, he has no known family.", + "pos": "noun", + "word_frequency": 6482 + }, + { + "word": "bénéfique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beneficial", + "example_sentence_native": "Le sport est bénéfique pour la santé.", + "example_sentence_english": "Sport is beneficial for health.", + "pos": "adjective", + "word_frequency": 6483 + }, + { + "word": "casquette", + "article_with_word": "la casquette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cap", + "example_sentence_native": "Il porte une casquette rouge.", + "example_sentence_english": "He is wearing a red cap.", + "pos": "noun", + "word_frequency": 6486 + }, + { + "word": "certifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to certify;to attest", + "example_sentence_native": "Je peux certifier que c'est vrai.", + "example_sentence_english": "I can certify that it is true.", + "pos": "verb", + "word_frequency": 6487 + }, + { + "word": "compétitivité", + "article_with_word": "la compétitivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitiveness", + "example_sentence_native": "L'entreprise doit améliorer sa compétitivité.", + "example_sentence_english": "The company must improve its competitiveness.", + "pos": "noun", + "word_frequency": 6488 + }, + { + "word": "concitoyen", + "article_with_word": "le concitoyen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fellow citizen", + "example_sentence_native": "Mes chers concitoyens, nous devons agir ensemble.", + "example_sentence_english": "My dear fellow citizens, we must act together.", + "pos": "noun", + "word_frequency": 6489 + }, + { + "word": "confus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confused;unclear", + "example_sentence_native": "Je suis confus, je n'ai pas compris.", + "example_sentence_english": "I am confused, I didn't understand.", + "pos": "adjective", + "word_frequency": 6490 + }, + { + "word": "consistant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistent;substantial", + "example_sentence_native": "Ce repas est très consistant.", + "example_sentence_english": "This meal is very substantial.", + "pos": "adjective", + "word_frequency": 6491 + }, + { + "word": "consulat", + "article_with_word": "le consulat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consulate", + "example_sentence_native": "J'ai dû aller au consulat pour mon passeport.", + "example_sentence_english": "I had to go to the consulate for my passport.", + "pos": "noun", + "word_frequency": 6492 + }, + { + "word": "convergence", + "article_with_word": "la convergence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convergence", + "example_sentence_native": "Il y a une convergence d'opinions sur ce sujet.", + "example_sentence_english": "There is a convergence of opinions on this subject.", + "pos": "noun", + "word_frequency": 6493 + }, + { + "word": "convocation", + "article_with_word": "la convocation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summons;call-up;notice", + "example_sentence_native": "J'ai reçu une convocation pour un entretien.", + "example_sentence_english": "I received a summons for an interview.", + "pos": "noun", + "word_frequency": 6494 + }, + { + "word": "convoquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to summon;to convene", + "example_sentence_native": "Le directeur a convoqué une réunion.", + "example_sentence_english": "The director convened a meeting.", + "pos": "verb", + "word_frequency": 6495 + }, + { + "word": "couramment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fluently;commonly", + "example_sentence_native": "Il parle français couramment.", + "example_sentence_english": "He speaks French fluently.", + "pos": "adverb", + "word_frequency": 6496 + }, + { + "word": "cran", + "article_with_word": "le cran", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notch;courage;grit", + "example_sentence_native": "Il a fallu monter d'un cran pour réussir.", + "example_sentence_english": "We had to step it up a notch to succeed.", + "pos": "noun", + "word_frequency": 6497 + }, + { + "word": "crochet", + "article_with_word": "le crochet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hook;crochet", + "example_sentence_native": "Elle tricote au crochet.", + "example_sentence_english": "She crochets.", + "pos": "noun", + "word_frequency": 6498 + }, + { + "word": "dentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dental", + "example_sentence_native": "J'ai un rendez-vous chez le dentiste pour un soin dentaire.", + "example_sentence_english": "I have an appointment at the dentist for dental care.", + "pos": "adjective", + "word_frequency": 6499 + }, + { + "word": "djihadiste", + "article_with_word": "le djihadiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihadist", + "example_sentence_native": "Les forces de sécurité ont arrêté un groupe de djihadistes.", + "example_sentence_english": "Security forces arrested a group of jihadists.", + "pos": "noun", + "word_frequency": 6500 + }, + { + "word": "dynastie", + "article_with_word": "la dynastie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynasty", + "example_sentence_native": "La dynastie des Bourbons a régné sur la France.", + "example_sentence_english": "The Bourbon dynasty reigned over France.", + "pos": "noun", + "word_frequency": 6502 + }, + { + "word": "détournement", + "article_with_word": "le détournement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversion;hijacking;embezzlement", + "example_sentence_native": "Il y a eu un détournement de fonds.", + "example_sentence_english": "There was an embezzlement of funds.", + "pos": "noun", + "word_frequency": 6503 + }, + { + "word": "développeur", + "article_with_word": "le développeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "developer", + "example_sentence_native": "Il travaille comme développeur de logiciels.", + "example_sentence_english": "He works as a software developer.", + "pos": "noun", + "word_frequency": 6504 + }, + { + "word": "emblématique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emblematic;iconic", + "example_sentence_native": "La Tour Eiffel est un symbole emblématique de Paris.", + "example_sentence_english": "The Eiffel Tower is an emblematic symbol of Paris.", + "pos": "adjective", + "word_frequency": 6505 + }, + { + "word": "explosif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosive", + "example_sentence_native": "La situation est devenue explosive.", + "example_sentence_english": "The situation became explosive.", + "pos": "adjective", + "word_frequency": 6506 + }, + { + "word": "fantasme", + "article_with_word": "le fantasme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fantasy;daydream", + "example_sentence_native": "Il vit dans un monde de fantasmes.", + "example_sentence_english": "He lives in a world of fantasies.", + "pos": "noun", + "word_frequency": 6507 + }, + { + "word": "flemme", + "article_with_word": "la flemme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laziness;lack of motivation (informal)", + "example_sentence_native": "J'ai la flemme de faire mes devoirs.", + "example_sentence_english": "I'm too lazy to do my homework.", + "pos": "noun", + "word_frequency": 6509 + }, + { + "word": "fée", + "article_with_word": "la fée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fairy", + "example_sentence_native": "La fée Clochette est un personnage célèbre.", + "example_sentence_english": "Tinker Bell is a famous character.", + "pos": "noun", + "word_frequency": 6510 + }, + { + "word": "hydraulique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydraulic", + "example_sentence_native": "Le système hydraulique est en panne.", + "example_sentence_english": "The hydraulic system is broken.", + "pos": "adjective", + "word_frequency": 6512 + }, + { + "word": "incidence", + "article_with_word": "l'incidence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incidence;impact", + "example_sentence_native": "Cela aura une incidence sur nos plans.", + "example_sentence_english": "This will have an impact on our plans.", + "pos": "noun", + "word_frequency": 6513 + }, + { + "word": "insuffisance", + "article_with_word": "l'insuffisance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insufficiency;inadequacy", + "example_sentence_native": "Il souffre d'une insuffisance rénale.", + "example_sentence_english": "He suffers from kidney insufficiency.", + "pos": "noun", + "word_frequency": 6514 + }, + { + "word": "localement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locally", + "example_sentence_native": "Les produits sont vendus localement.", + "example_sentence_english": "The products are sold locally.", + "pos": "adverb", + "word_frequency": 6523 + }, + { + "word": "manoir", + "article_with_word": "le manoir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mansion;manor", + "example_sentence_native": "Ils vivent dans un vieux manoir à la campagne.", + "example_sentence_english": "They live in an old mansion in the countryside.", + "pos": "noun", + "word_frequency": 6524 + }, + { + "word": "mœurs", + "article_with_word": "les mœurs", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "customs;morals", + "example_sentence_native": "Les mœurs de cette époque étaient très différentes.", + "example_sentence_english": "The customs of that era were very different.", + "pos": "noun", + "word_frequency": 6525 + }, + { + "word": "noce", + "article_with_word": "la noce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedding (feast);nuptials", + "example_sentence_native": "La noce a eu lieu dans un beau château.", + "example_sentence_english": "The wedding feast took place in a beautiful castle.", + "pos": "noun", + "word_frequency": 6527 + }, + { + "word": "normand", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Norman", + "example_sentence_native": "Il a des origines normandes.", + "example_sentence_english": "He has Norman origins.", + "pos": "adjective", + "word_frequency": 6528 + }, + { + "word": "obéir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to obey", + "example_sentence_native": "Les enfants doivent obéir à leurs parents.", + "example_sentence_english": "Children must obey their parents.", + "pos": "verb", + "word_frequency": 6529 + }, + { + "word": "parier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bet;to wager", + "example_sentence_native": "Je parie qu'il va pleuvoir demain.", + "example_sentence_english": "I bet it will rain tomorrow.", + "pos": "verb", + "word_frequency": 6530 + }, + { + "word": "peloton", + "article_with_word": "le peloton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peloton;group;squad", + "example_sentence_native": "Le cycliste a été rattrapé par le peloton.", + "example_sentence_english": "The cyclist was caught by the peloton.", + "pos": "noun", + "word_frequency": 6532 + }, + { + "word": "pesticide", + "article_with_word": "le pesticide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pesticide", + "example_sentence_native": "L'utilisation des pesticides est controversée.", + "example_sentence_english": "The use of pesticides is controversial.", + "pos": "noun", + "word_frequency": 6533 + }, + { + "word": "pilotage", + "article_with_word": "le pilotage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piloting;steering;management", + "example_sentence_native": "Le pilotage de l'avion est une tâche complexe.", + "example_sentence_english": "Piloting the plane is a complex task.", + "pos": "noun", + "word_frequency": 6535 + }, + { + "word": "protestant", + "article_with_word": "le protestant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestant", + "example_sentence_native": "Il est de confession protestante.", + "example_sentence_english": "He is of Protestant faith.", + "pos": "noun", + "word_frequency": 6536 + }, + { + "word": "précéder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to precede;to come before", + "example_sentence_native": "Le discours du président a précédé la cérémonie.", + "example_sentence_english": "The president's speech preceded the ceremony.", + "pos": "verb", + "word_frequency": 6537 + }, + { + "word": "préservation", + "article_with_word": "la préservation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preservation", + "example_sentence_native": "La préservation de l'environnement est cruciale.", + "example_sentence_english": "Environmental preservation is crucial.", + "pos": "noun", + "word_frequency": 6538 + }, + { + "word": "pyramide", + "article_with_word": "la pyramide", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pyramid", + "example_sentence_native": "Les pyramides d'Égypte sont impressionnantes.", + "example_sentence_english": "The pyramids of Egypt are impressive.", + "pos": "noun", + "word_frequency": 6539 + }, + { + "word": "ravi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delighted;thrilled", + "example_sentence_native": "Je suis ravi de vous rencontrer.", + "example_sentence_english": "I am delighted to meet you.", + "pos": "adjective", + "word_frequency": 6541 + }, + { + "word": "robinet", + "article_with_word": "le robinet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tap;faucet", + "example_sentence_native": "Le robinet de la cuisine fuit.", + "example_sentence_english": "The kitchen tap is leaking.", + "pos": "noun", + "word_frequency": 6542 + }, + { + "word": "ruban", + "article_with_word": "le ruban", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ribbon;tape", + "example_sentence_native": "Elle a attaché ses cheveux avec un ruban.", + "example_sentence_english": "She tied her hair with a ribbon.", + "pos": "noun", + "word_frequency": 6544 + }, + { + "word": "régir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to govern;to regulate", + "example_sentence_native": "Ces règles régissent le comportement des employés.", + "example_sentence_english": "These rules govern employee behavior.", + "pos": "verb", + "word_frequency": 6545 + }, + { + "word": "salé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salty", + "example_sentence_native": "Ce plat est trop salé pour moi.", + "example_sentence_english": "This dish is too salty for me.", + "pos": "adjective", + "word_frequency": 6547 + }, + { + "word": "senior", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senior", + "example_sentence_native": "Il occupe un poste senior dans l'entreprise.", + "example_sentence_english": "He holds a senior position in the company.", + "pos": "adjective", + "word_frequency": 6548 + }, + { + "word": "sentence", + "article_with_word": "la sentence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentence (judicial);verdict", + "example_sentence_native": "Le juge a prononcé la sentence.", + "example_sentence_english": "The judge pronounced the sentence.", + "pos": "noun", + "word_frequency": 6549 + }, + { + "word": "soul", + "article_with_word": "la soul", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soul (music)", + "example_sentence_native": "J'adore écouter de la musique soul.", + "example_sentence_english": "I love listening to soul music.", + "pos": "noun", + "word_frequency": 6550 + }, + { + "word": "sourcil", + "article_with_word": "le sourcil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyebrow", + "example_sentence_native": "Elle a des sourcils bien dessinés.", + "example_sentence_english": "She has well-defined eyebrows.", + "pos": "noun", + "word_frequency": 6551 + }, + { + "word": "sourd", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deaf", + "example_sentence_native": "Mon grand-père est devenu sourd avec l'âge.", + "example_sentence_english": "My grandfather became deaf with age.", + "pos": "adjective", + "word_frequency": 6552 + }, + { + "word": "tramway", + "article_with_word": "le tramway", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tram;streetcar", + "example_sentence_native": "Le tramway est un moyen de transport pratique.", + "example_sentence_english": "The tram is a convenient mode of transport.", + "pos": "noun", + "word_frequency": 6556 + }, + { + "word": "égoïste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selfish", + "example_sentence_native": "Il est très égoïste et ne pense qu'à lui.", + "example_sentence_english": "He is very selfish and only thinks of himself.", + "pos": "adjective", + "word_frequency": 6558 + }, + { + "word": "abuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to abuse;to take advantage of", + "example_sentence_native": "Il ne faut pas abuser de la gentillesse des gens.", + "example_sentence_english": "One should not take advantage of people's kindness.", + "pos": "verb", + "word_frequency": 6559 + }, + { + "word": "act", + "article_with_word": "l'acte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act;deed", + "example_sentence_native": "C'était un acte de bravoure.", + "example_sentence_english": "It was an act of bravery.", + "pos": "noun", + "word_frequency": 6560 + }, + { + "word": "adverse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adverse;unfavorable", + "example_sentence_native": "Les conditions météorologiques étaient adverses.", + "example_sentence_english": "The weather conditions were adverse.", + "pos": "adjective", + "word_frequency": 6561 + }, + { + "word": "affrontement", + "article_with_word": "l'affrontement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confrontation;clash", + "example_sentence_native": "Il y a eu un affrontement entre les deux groupes.", + "example_sentence_english": "There was a confrontation between the two groups.", + "pos": "noun", + "word_frequency": 6562 + }, + { + "word": "agresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assault;to attack", + "example_sentence_native": "Il a été agressé dans la rue.", + "example_sentence_english": "He was assaulted in the street.", + "pos": "verb", + "word_frequency": 6563 + }, + { + "word": "alinéa", + "article_with_word": "l'alinéa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paragraph;clause", + "example_sentence_native": "Veuillez vous référer au troisième alinéa du texte.", + "example_sentence_english": "Please refer to the third paragraph of the text.", + "pos": "noun", + "word_frequency": 6564 + }, + { + "word": "annuaire", + "article_with_word": "l'annuaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directory", + "example_sentence_native": "J'ai cherché son numéro dans l'annuaire.", + "example_sentence_english": "I looked up his number in the directory.", + "pos": "noun", + "word_frequency": 6565 + }, + { + "word": "annuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annually;yearly", + "example_sentence_native": "Le rapport est publié annuellement.", + "example_sentence_english": "The report is published annually.", + "pos": "adverb", + "word_frequency": 6566 + }, + { + "word": "araignée", + "article_with_word": "l'araignée", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spider", + "example_sentence_native": "Il y a une araignée dans le coin de la pièce.", + "example_sentence_english": "There is a spider in the corner of the room.", + "pos": "noun", + "word_frequency": 6567 + }, + { + "word": "artisanat", + "article_with_word": "l'artisanat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "craftsmanship;handicraft", + "example_sentence_native": "Cette région est réputée pour son artisanat local.", + "example_sentence_english": "This region is renowned for its local craftsmanship.", + "pos": "noun", + "word_frequency": 6568 + }, + { + "word": "assainissement", + "article_with_word": "l'assainissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sanitation;purification", + "example_sentence_native": "Le projet vise l'amélioration de l'assainissement des eaux.", + "example_sentence_english": "The project aims to improve water sanitation.", + "pos": "noun", + "word_frequency": 6569 + }, + { + "word": "automobiliste", + "article_with_word": "l'automobiliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorist;driver", + "example_sentence_native": "L'automobiliste a respecté le code de la route.", + "example_sentence_english": "The motorist respected the highway code.", + "pos": "noun", + "word_frequency": 6570 + }, + { + "word": "barreau", + "article_with_word": "le barreau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bar (of a window;cage);legal profession", + "example_sentence_native": "Les prisonniers regardaient à travers les barreaux.", + "example_sentence_english": "The prisoners looked through the bars.", + "pos": "noun", + "word_frequency": 6571 + }, + { + "word": "book", + "article_with_word": "le book", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portfolio;lookbook", + "example_sentence_native": "Le mannequin a présenté son book à l'agence.", + "example_sentence_english": "The model presented her portfolio to the agency.", + "pos": "noun", + "word_frequency": 6574 + }, + { + "word": "botanique", + "article_with_word": "la botanique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botany", + "example_sentence_native": "Elle étudie la botanique à l'université.", + "example_sentence_english": "She studies botany at university.", + "pos": "noun", + "word_frequency": 6575 + }, + { + "word": "brin", + "article_with_word": "le brin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strand;bit;sprig", + "example_sentence_native": "J'ai trouvé un brin d'herbe dans mes cheveux.", + "example_sentence_english": "I found a strand of grass in my hair.", + "pos": "noun", + "word_frequency": 6577 + }, + { + "word": "brutal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brutal;sudden", + "example_sentence_native": "Le changement a été brutal.", + "example_sentence_english": "The change was brutal.", + "pos": "adjective", + "word_frequency": 6578 + }, + { + "word": "cape", + "article_with_word": "la cape", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cape;cloak", + "example_sentence_native": "Le super-héros portait une cape rouge.", + "example_sentence_english": "The superhero wore a red cape.", + "pos": "noun", + "word_frequency": 6579 + }, + { + "word": "cinéaste", + "article_with_word": "le cinéaste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filmmaker;director", + "example_sentence_native": "Ce cinéaste est connu pour ses films d'auteur.", + "example_sentence_english": "This filmmaker is known for his art-house films.", + "pos": "noun", + "word_frequency": 6580 + }, + { + "word": "contour", + "article_with_word": "le contour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outline;contour", + "example_sentence_native": "Elle a dessiné le contour du visage.", + "example_sentence_english": "She drew the outline of the face.", + "pos": "noun", + "word_frequency": 6581 + }, + { + "word": "cracher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spit", + "example_sentence_native": "Il est interdit de cracher par terre.", + "example_sentence_english": "It is forbidden to spit on the ground.", + "pos": "verb", + "word_frequency": 6582 + }, + { + "word": "cylindre", + "article_with_word": "le cylindre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cylinder", + "example_sentence_native": "Le moteur a quatre cylindres.", + "example_sentence_english": "The engine has four cylinders.", + "pos": "noun", + "word_frequency": 6583 + }, + { + "word": "disciple", + "article_with_word": "le disciple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disciple;follower", + "example_sentence_native": "Il était un disciple fidèle de son maître.", + "example_sentence_english": "He was a faithful disciple of his master.", + "pos": "noun", + "word_frequency": 6585 + }, + { + "word": "distinct", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinct;separate", + "example_sentence_native": "Les deux concepts sont distincts.", + "example_sentence_english": "The two concepts are distinct.", + "pos": "adjective", + "word_frequency": 6586 + }, + { + "word": "détachement", + "article_with_word": "le détachement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detachment;detachment (military unit)", + "example_sentence_native": "Il a montré un certain détachement face à la situation.", + "example_sentence_english": "He showed a certain detachment towards the situation.", + "pos": "noun", + "word_frequency": 6587 + }, + { + "word": "décevoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappoint", + "example_sentence_native": "Je ne veux pas te décevoir.", + "example_sentence_english": "I don't want to disappoint you.", + "pos": "verb", + "word_frequency": 6588 + }, + { + "word": "energie", + "article_with_word": "l'énergie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "energy", + "example_sentence_native": "Il a beaucoup d'énergie.", + "example_sentence_english": "He has a lot of energy.", + "pos": "noun", + "word_frequency": 6589 + }, + { + "word": "enfoncer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push in;to sink;to break down", + "example_sentence_native": "Il a dû enfoncer la porte pour entrer.", + "example_sentence_english": "He had to break down the door to enter.", + "pos": "verb", + "word_frequency": 6590 + }, + { + "word": "enquêteur", + "article_with_word": "l'enquêteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigator;inquirer", + "example_sentence_native": "L'enquêteur a interrogé les témoins.", + "example_sentence_english": "The investigator questioned the witnesses.", + "pos": "noun", + "word_frequency": 6591 + }, + { + "word": "famine", + "article_with_word": "la famine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "famine", + "example_sentence_native": "La région souffre d'une grave famine.", + "example_sentence_english": "The region is suffering from a severe famine.", + "pos": "noun", + "word_frequency": 6592 + }, + { + "word": "ferry", + "article_with_word": "le ferry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ferry", + "example_sentence_native": "Nous avons pris le ferry pour traverser la Manche.", + "example_sentence_english": "We took the ferry to cross the English Channel.", + "pos": "noun", + "word_frequency": 6593 + }, + { + "word": "fléau", + "article_with_word": "le fléau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scourge;plague;bane", + "example_sentence_native": "La drogue est un fléau pour la société.", + "example_sentence_english": "Drugs are a scourge on society.", + "pos": "noun", + "word_frequency": 6594 + }, + { + "word": "foulée", + "article_with_word": "la foulée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stride;pace", + "example_sentence_native": "Il a accéléré sa foulée pour rattraper le bus.", + "example_sentence_english": "He quickened his stride to catch the bus.", + "pos": "noun", + "word_frequency": 6595 + }, + { + "word": "fourchette", + "article_with_word": "la fourchette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fork;price range", + "example_sentence_native": "Passe-moi la fourchette, s'il te plaît.", + "example_sentence_english": "Pass me the fork, please.", + "pos": "noun", + "word_frequency": 6596 + }, + { + "word": "fréquenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to frequent;to hang out with;to attend", + "example_sentence_native": "Il fréquente souvent cette bibliothèque.", + "example_sentence_english": "He often frequents this library.", + "pos": "verb", + "word_frequency": 6597 + }, + { + "word": "graver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to engrave;to burn (CD;DVD)", + "example_sentence_native": "Il a fait graver son nom sur la médaille.", + "example_sentence_english": "He had his name engraved on the medal.", + "pos": "verb", + "word_frequency": 6600 + }, + { + "word": "gym", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gym", + "example_sentence_native": "Je vais à la gym trois fois par semaine.", + "example_sentence_english": "I go to the gym three times a week.", + "pos": "noun", + "word_frequency": 6602 + }, + { + "word": "gêner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bother;to disturb;to embarrass", + "example_sentence_native": "Est-ce que je vous gêne?", + "example_sentence_english": "Am I bothering you?", + "pos": "verb", + "word_frequency": 6603 + }, + { + "word": "hongrois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hungarian", + "example_sentence_native": "Il parle hongrois couramment.", + "example_sentence_english": "He speaks Hungarian fluently.", + "pos": "adjective", + "word_frequency": 6605 + }, + { + "word": "humoriste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comedian;humorist", + "example_sentence_native": "Cet humoriste est très drôle.", + "example_sentence_english": "This comedian is very funny.", + "pos": "noun", + "word_frequency": 6606 + }, + { + "word": "inattendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unexpected", + "example_sentence_native": "C'était un événement totalement inattendu.", + "example_sentence_english": "It was a totally unexpected event.", + "pos": "adjective", + "word_frequency": 6608 + }, + { + "word": "iranien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iranian", + "example_sentence_native": "Elle a des origines iraniennes.", + "example_sentence_english": "She has Iranian origins.", + "pos": "adjective", + "word_frequency": 6609 + }, + { + "word": "kurde", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Kurd", + "example_sentence_native": "Il a rencontré un Kurde en voyage.", + "example_sentence_english": "He met a Kurd while traveling.", + "pos": "noun", + "word_frequency": 6613 + }, + { + "word": "loyauté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loyalty", + "example_sentence_native": "La loyauté est une qualité importante.", + "example_sentence_english": "Loyalty is an important quality.", + "pos": "noun", + "word_frequency": 6614 + }, + { + "word": "matrice", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matrix", + "example_sentence_native": "Il étudie les propriétés de cette matrice.", + "example_sentence_english": "He is studying the properties of this matrix.", + "pos": "noun", + "word_frequency": 6618 + }, + { + "word": "nager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to swim", + "example_sentence_native": "J'aime nager dans la mer.", + "example_sentence_english": "I like to swim in the sea.", + "pos": "verb", + "word_frequency": 6620 + }, + { + "word": "nain", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dwarf", + "example_sentence_native": "Blanche-Neige et les sept nains.", + "example_sentence_english": "Snow White and the Seven Dwarfs.", + "pos": "noun", + "word_frequency": 6621 + }, + { + "word": "nationalisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nationalism", + "example_sentence_native": "Le nationalisme peut être une force puissante.", + "example_sentence_english": "Nationalism can be a powerful force.", + "pos": "noun", + "word_frequency": 6622 + }, + { + "word": "parution", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publication;appearance", + "example_sentence_native": "La parution du livre est prévue pour l'automne.", + "example_sentence_english": "The book's publication is scheduled for autumn.", + "pos": "noun", + "word_frequency": 6624 + }, + { + "word": "passionnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinating;exciting", + "example_sentence_native": "Ce film est vraiment passionnant.", + "example_sentence_english": "This film is really fascinating.", + "pos": "adjective", + "word_frequency": 6625 + }, + { + "word": "pavé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paving stone;block (of text)", + "example_sentence_native": "Les rues de Paris sont souvent faites de pavés.", + "example_sentence_english": "The streets of Paris are often made of paving stones.", + "pos": "noun", + "word_frequency": 6626 + }, + { + "word": "picard", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Picard (person from Picardy)", + "example_sentence_native": "Il est un Picard d'origine.", + "example_sentence_english": "He is of Picard origin.", + "pos": "noun", + "word_frequency": 6628 + }, + { + "word": "postal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "postal", + "example_sentence_native": "Quel est votre code postal?", + "example_sentence_english": "What is your postal code?", + "pos": "adjective", + "word_frequency": 6629 + }, + { + "word": "privilégier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to favor;to prioritize", + "example_sentence_native": "Il faut privilégier les solutions durables.", + "example_sentence_english": "We must prioritize sustainable solutions.", + "pos": "verb", + "word_frequency": 6630 + }, + { + "word": "progressiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "progressive", + "example_sentence_native": "C'est une approche très progressiste.", + "example_sentence_english": "It's a very progressive approach.", + "pos": "adjective", + "word_frequency": 6631 + }, + { + "word": "propice", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "favorable;conducive", + "example_sentence_native": "Les conditions sont propices à la croissance.", + "example_sentence_english": "The conditions are favorable for growth.", + "pos": "adjective", + "word_frequency": 6632 + }, + { + "word": "protagoniste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protagonist", + "example_sentence_native": "Le protagoniste du roman est un jeune détective.", + "example_sentence_english": "The protagonist of the novel is a young detective.", + "pos": "noun", + "word_frequency": 6633 + }, + { + "word": "provoquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provocative;challenging", + "example_sentence_native": "Ses paroles étaient très provoquantes.", + "example_sentence_english": "His words were very provocative.", + "pos": "adjective", + "word_frequency": 6634 + }, + { + "word": "préalablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beforehand;previously", + "example_sentence_native": "Le document doit être lu préalablement.", + "example_sentence_english": "The document must be read beforehand.", + "pos": "adverb", + "word_frequency": 6635 + }, + { + "word": "préparé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prepared", + "example_sentence_native": "Il était bien préparé pour l'examen.", + "example_sentence_english": "He was well prepared for the exam.", + "pos": "adjective", + "word_frequency": 6636 + }, + { + "word": "pénétration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penetration", + "example_sentence_native": "La pénétration du marché est difficile pour les nouvelles entreprises.", + "example_sentence_english": "Market penetration is difficult for new companies.", + "pos": "noun", + "word_frequency": 6637 + }, + { + "word": "qi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "IQ (Intelligence Quotient)", + "example_sentence_native": "Son QI est très élevé.", + "example_sentence_english": "His IQ is very high.", + "pos": "noun", + "word_frequency": 6638 + }, + { + "word": "rassurant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reassuring", + "example_sentence_native": "Ses paroles étaient très rassurantes.", + "example_sentence_english": "His words were very reassuring.", + "pos": "adjective", + "word_frequency": 6639 + }, + { + "word": "recouvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cover;to recover", + "example_sentence_native": "La neige a recouvert les toits.", + "example_sentence_english": "The snow covered the roofs.", + "pos": "verb", + "word_frequency": 6640 + }, + { + "word": "remplacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "replaced", + "example_sentence_native": "L'ancien système a été remplacé par un nouveau.", + "example_sentence_english": "The old system has been replaced by a new one.", + "pos": "adjective", + "word_frequency": 6641 + }, + { + "word": "renvoi", + "article_with_word": "le renvoi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismissal;reference;return", + "example_sentence_native": "Le renvoi de l'employé a causé des tensions.", + "example_sentence_english": "The employee's dismissal caused tensions.", + "pos": "noun", + "word_frequency": 6642 + }, + { + "word": "sas", + "article_with_word": "le sas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "airlock;vestibule", + "example_sentence_native": "Il faut passer par le sas de sécurité.", + "example_sentence_english": "You have to go through the security airlock.", + "pos": "noun", + "word_frequency": 6643 + }, + { + "word": "serbe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Serbian", + "example_sentence_native": "Elle parle la langue serbe couramment.", + "example_sentence_english": "She speaks the Serbian language fluently.", + "pos": "adjective", + "word_frequency": 6644 + }, + { + "word": "serviteur", + "article_with_word": "le serviteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "servant", + "example_sentence_native": "Le serviteur a apporté le thé.", + "example_sentence_english": "The servant brought the tea.", + "pos": "noun", + "word_frequency": 6645 + }, + { + "word": "sexuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexually", + "example_sentence_native": "Il est important de parler ouvertement des sujets sexuellement transmissibles.", + "example_sentence_english": "It is important to speak openly about sexually transmitted topics.", + "pos": "adverb", + "word_frequency": 6646 + }, + { + "word": "simplifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to simplify", + "example_sentence_native": "Nous devons simplifier le processus.", + "example_sentence_english": "We need to simplify the process.", + "pos": "verb", + "word_frequency": 6648 + }, + { + "word": "socle", + "article_with_word": "le socle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "base;pedestal", + "example_sentence_native": "La statue repose sur un socle en marbre.", + "example_sentence_english": "The statue rests on a marble pedestal.", + "pos": "noun", + "word_frequency": 6649 + }, + { + "word": "soulager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relieve;to ease", + "example_sentence_native": "Ce médicament peut soulager la douleur.", + "example_sentence_english": "This medicine can relieve pain.", + "pos": "verb", + "word_frequency": 6650 + }, + { + "word": "spot", + "article_with_word": "le spot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spot;spotlight", + "example_sentence_native": "Le spot lumineux éclaire la scène.", + "example_sentence_english": "The spotlight illuminates the stage.", + "pos": "noun", + "word_frequency": 6652 + }, + { + "word": "sprint", + "article_with_word": "le sprint", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sprint", + "example_sentence_native": "L'athlète a gagné le sprint final.", + "example_sentence_english": "The athlete won the final sprint.", + "pos": "noun", + "word_frequency": 6653 + }, + { + "word": "sucer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suck", + "example_sentence_native": "Le bébé aime sucer son pouce.", + "example_sentence_english": "The baby likes to suck his thumb.", + "pos": "verb", + "word_frequency": 6654 + }, + { + "word": "surnommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nickname", + "example_sentence_native": "On le surnomme \"le Géant\".", + "example_sentence_english": "He is nicknamed \"the Giant\".", + "pos": "verb", + "word_frequency": 6655 + }, + { + "word": "sérénité", + "article_with_word": "la sérénité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serenity", + "example_sentence_native": "Elle a trouvé la sérénité dans la nature.", + "example_sentence_english": "She found serenity in nature.", + "pos": "noun", + "word_frequency": 6656 + }, + { + "word": "sévèrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "severely", + "example_sentence_native": "Il a été sévèrement réprimandé.", + "example_sentence_english": "He was severely reprimanded.", + "pos": "adverb", + "word_frequency": 6657 + }, + { + "word": "tee", + "article_with_word": "le tee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tee (golf)", + "example_sentence_native": "Il a placé la balle sur le tee.", + "example_sentence_english": "He placed the ball on the tee.", + "pos": "noun", + "word_frequency": 6658 + }, + { + "word": "torse", + "article_with_word": "le torse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torso", + "example_sentence_native": "Il a un torse musclé.", + "example_sentence_english": "He has a muscular torso.", + "pos": "noun", + "word_frequency": 6659 + }, + { + "word": "traumatisme", + "article_with_word": "le traumatisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trauma", + "example_sentence_native": "L'accident a causé un traumatisme psychologique.", + "example_sentence_english": "The accident caused psychological trauma.", + "pos": "noun", + "word_frequency": 6660 + }, + { + "word": "typiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typically", + "example_sentence_native": "Typiquement, il arrive en retard.", + "example_sentence_english": "Typically, he arrives late.", + "pos": "adverb", + "word_frequency": 6661 + }, + { + "word": "vestige", + "article_with_word": "le vestige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vestige;remnant", + "example_sentence_native": "On a découvert des vestiges romains.", + "example_sentence_english": "Roman vestiges were discovered.", + "pos": "noun", + "word_frequency": 6663 + }, + { + "word": "western", + "article_with_word": "le western", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "western (film genre)", + "example_sentence_native": "C'est un grand classique du western.", + "example_sentence_english": "It's a great classic western.", + "pos": "noun", + "word_frequency": 6665 + }, + { + "word": "yoga", + "article_with_word": "le yoga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yoga", + "example_sentence_native": "Elle pratique le yoga tous les matins.", + "example_sentence_english": "She practices yoga every morning.", + "pos": "noun", + "word_frequency": 6667 + }, + { + "word": "épargner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to save;to spare", + "example_sentence_native": "Il faut épargner de l'argent pour l'avenir.", + "example_sentence_english": "You have to save money for the future.", + "pos": "verb", + "word_frequency": 6671 + }, + { + "word": "étroitement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "closely;narrowly", + "example_sentence_native": "Les deux événements sont étroitement liés.", + "example_sentence_english": "The two events are closely linked.", + "pos": "adverb", + "word_frequency": 6672 + }, + { + "word": "accroissement", + "article_with_word": "l'accroissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase;growth", + "example_sentence_native": "On observe un accroissement de la population.", + "example_sentence_english": "An increase in population is observed.", + "pos": "noun", + "word_frequency": 6673 + }, + { + "word": "alcoolique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alcoholic", + "example_sentence_native": "Il a une boisson alcoolique.", + "example_sentence_english": "He has an alcoholic drink.", + "pos": "adjective", + "word_frequency": 6675 + }, + { + "word": "amer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bitter", + "example_sentence_native": "Le café est très amer.", + "example_sentence_english": "The coffee is very bitter.", + "pos": "adjective", + "word_frequency": 6676 + }, + { + "word": "archéologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaeological", + "example_sentence_native": "Ils ont fait des fouilles archéologiques.", + "example_sentence_english": "They conducted archaeological excavations.", + "pos": "adjective", + "word_frequency": 6677 + }, + { + "word": "armure", + "article_with_word": "l'armure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor", + "example_sentence_native": "Le chevalier portait une lourde armure.", + "example_sentence_english": "The knight wore heavy armor.", + "pos": "noun", + "word_frequency": 6678 + }, + { + "word": "attentivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attentively", + "example_sentence_native": "Il a écouté attentivement les instructions.", + "example_sentence_english": "He listened attentively to the instructions.", + "pos": "adverb", + "word_frequency": 6679 + }, + { + "word": "authenticité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authenticity", + "example_sentence_native": "L'authenticité de cette œuvre d'art est incontestable.", + "example_sentence_english": "The authenticity of this artwork is undeniable.", + "pos": "noun", + "word_frequency": 6680 + }, + { + "word": "avantageux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advantageous", + "example_sentence_native": "C'est une offre très avantageuse pour les nouveaux clients.", + "example_sentence_english": "It's a very advantageous offer for new customers.", + "pos": "adjective", + "word_frequency": 6681 + }, + { + "word": "balader", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stroll;to walk around", + "example_sentence_native": "Nous aimons nous balader dans le parc le dimanche.", + "example_sentence_english": "We like to stroll in the park on Sundays.", + "pos": "verb", + "word_frequency": 6682 + }, + { + "word": "baleine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whale", + "example_sentence_native": "La baleine est le plus grand mammifère marin.", + "example_sentence_english": "The whale is the largest marine mammal.", + "pos": "noun", + "word_frequency": 6683 + }, + { + "word": "bilingue", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bilingual", + "example_sentence_native": "Elle est bilingue en français et en anglais.", + "example_sentence_english": "She is bilingual in French and English.", + "pos": "adjective", + "word_frequency": 6684 + }, + { + "word": "boulanger", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baker", + "example_sentence_native": "Le boulanger ouvre sa boutique très tôt le matin.", + "example_sentence_english": "The baker opens his shop very early in the morning.", + "pos": "noun", + "word_frequency": 6685 + }, + { + "word": "briller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shine;to sparkle", + "example_sentence_native": "Les étoiles brillent dans le ciel nocturne.", + "example_sentence_english": "The stars shine in the night sky.", + "pos": "verb", + "word_frequency": 6687 + }, + { + "word": "cantine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canteen;cafeteria", + "example_sentence_native": "Les élèves mangent à la cantine de l'école.", + "example_sentence_english": "The students eat in the school canteen.", + "pos": "noun", + "word_frequency": 6689 + }, + { + "word": "catholicisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catholicism", + "example_sentence_native": "Le catholicisme est une des principales religions du monde.", + "example_sentence_english": "Catholicism is one of the main religions in the world.", + "pos": "noun", + "word_frequency": 6690 + }, + { + "word": "chaudière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boiler", + "example_sentence_native": "La chaudière est tombée en panne ce matin.", + "example_sentence_english": "The boiler broke down this morning.", + "pos": "noun", + "word_frequency": 6691 + }, + { + "word": "cinématographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cinematographic;cinematic", + "example_sentence_native": "Ce film a une qualité cinématographique exceptionnelle.", + "example_sentence_english": "This film has exceptional cinematographic quality.", + "pos": "adjective", + "word_frequency": 6694 + }, + { + "word": "communal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communal;municipal", + "example_sentence_native": "Le conseil communal a voté le nouveau budget.", + "example_sentence_english": "The communal council voted on the new budget.", + "pos": "adjective", + "word_frequency": 6695 + }, + { + "word": "communément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commonly", + "example_sentence_native": "Ce terme est communément utilisé dans le jargon scientifique.", + "example_sentence_english": "This term is commonly used in scientific jargon.", + "pos": "adverb", + "word_frequency": 6696 + }, + { + "word": "concertation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consultation;concerted action", + "example_sentence_native": "Le projet a été élaboré après une longue phase de concertation.", + "example_sentence_english": "The project was developed after a long phase of consultation.", + "pos": "noun", + "word_frequency": 6697 + }, + { + "word": "confiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confident;trusting", + "example_sentence_native": "Il est très confiant en ses capacités.", + "example_sentence_english": "He is very confident in his abilities.", + "pos": "adjective", + "word_frequency": 6698 + }, + { + "word": "congolais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Congolese", + "example_sentence_native": "Elle a des origines congolaises.", + "example_sentence_english": "She has Congolese origins.", + "pos": "adjective", + "word_frequency": 6699 + }, + { + "word": "conjointement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jointly;together", + "example_sentence_native": "Ils ont travaillé conjointement sur ce rapport.", + "example_sentence_english": "They worked jointly on this report.", + "pos": "adverb", + "word_frequency": 6700 + }, + { + "word": "consigne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instruction;deposit;left-luggage office", + "example_sentence_native": "Veuillez suivre les consignes de sécurité.", + "example_sentence_english": "Please follow the safety instructions.", + "pos": "noun", + "word_frequency": 6701 + }, + { + "word": "constituant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constituent", + "example_sentence_native": "Chaque constituant est essentiel à l'équilibre du système.", + "example_sentence_english": "Each constituent is essential to the system's balance.", + "pos": "noun", + "word_frequency": 6702 + }, + { + "word": "contourner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bypass;to go around", + "example_sentence_native": "Nous avons dû contourner l'obstacle pour continuer notre chemin.", + "example_sentence_english": "We had to bypass the obstacle to continue our way.", + "pos": "verb", + "word_frequency": 6703 + }, + { + "word": "cookie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cookie", + "example_sentence_native": "J'ai mangé un délicieux cookie au chocolat.", + "example_sentence_english": "I ate a delicious chocolate cookie.", + "pos": "noun", + "word_frequency": 6704 + }, + { + "word": "criant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blatant;glaring", + "example_sentence_native": "L'injustice est criante dans cette affaire.", + "example_sentence_english": "The injustice is blatant in this case.", + "pos": "adjective", + "word_frequency": 6705 + }, + { + "word": "criminalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminality;crime rate", + "example_sentence_native": "La criminalité a diminué dans la région.", + "example_sentence_english": "Criminality has decreased in the region.", + "pos": "noun", + "word_frequency": 6706 + }, + { + "word": "cyclisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycling", + "example_sentence_native": "Le cyclisme est un sport populaire en France.", + "example_sentence_english": "Cycling is a popular sport in France.", + "pos": "noun", + "word_frequency": 6708 + }, + { + "word": "dictateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictator", + "example_sentence_native": "Le pays était dirigé par un dictateur impitoyable.", + "example_sentence_english": "The country was ruled by a ruthless dictator.", + "pos": "noun", + "word_frequency": 6709 + }, + { + "word": "défaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to undo;to unpack;to defeat", + "example_sentence_native": "Il a dû défaire sa valise après avoir changé d'avis.", + "example_sentence_english": "He had to unpack his suitcase after changing his mind.", + "pos": "verb", + "word_frequency": 6710 + }, + { + "word": "engagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "committed;engaged;involved", + "example_sentence_native": "C'est un artiste très engagé politiquement.", + "example_sentence_english": "He is a very politically committed artist.", + "pos": "adjective", + "word_frequency": 6711 + }, + { + "word": "entrepôt", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warehouse;depot", + "example_sentence_native": "Les marchandises sont stockées dans l'entrepôt.", + "example_sentence_english": "The goods are stored in the warehouse.", + "pos": "noun", + "word_frequency": 6713 + }, + { + "word": "exprimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expressed;stated", + "example_sentence_native": "Son opinion a été clairement exprimée.", + "example_sentence_english": "His opinion was clearly expressed.", + "pos": "adjective", + "word_frequency": 6716 + }, + { + "word": "extrémiste", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremist", + "example_sentence_native": "Le groupe est composé d'extrémistes.", + "example_sentence_english": "The group is composed of extremists.", + "pos": "noun", + "word_frequency": 6717 + }, + { + "word": "fiancé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fiancé", + "example_sentence_native": "Mon fiancé et moi allons nous marier l'année prochaine.", + "example_sentence_english": "My fiancé and I are getting married next year.", + "pos": "noun", + "word_frequency": 6718 + }, + { + "word": "garnison", + "article_with_word": "la garnison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garrison", + "example_sentence_native": "La garnison était prête à défendre la ville.", + "example_sentence_english": "The garrison was ready to defend the city.", + "pos": "noun", + "word_frequency": 6720 + }, + { + "word": "genèse", + "article_with_word": "la genèse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genesis;origin", + "example_sentence_native": "La genèse de ce projet est fascinante.", + "example_sentence_english": "The genesis of this project is fascinating.", + "pos": "noun", + "word_frequency": 6721 + }, + { + "word": "gâcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spoil;to waste", + "example_sentence_native": "Ne gâche pas cette belle opportunité.", + "example_sentence_english": "Don't spoil this great opportunity.", + "pos": "verb", + "word_frequency": 6723 + }, + { + "word": "homogène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homogeneous", + "example_sentence_native": "Le mélange doit être homogène.", + "example_sentence_english": "The mixture must be homogeneous.", + "pos": "adjective", + "word_frequency": 6725 + }, + { + "word": "humilité", + "article_with_word": "l'humilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humility", + "example_sentence_native": "L'humilité est une grande vertu.", + "example_sentence_english": "Humility is a great virtue.", + "pos": "noun", + "word_frequency": 6726 + }, + { + "word": "hériter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inherit", + "example_sentence_native": "Il a hérité d'une grande fortune.", + "example_sentence_english": "He inherited a large fortune.", + "pos": "verb", + "word_frequency": 6727 + }, + { + "word": "incroyablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incredibly", + "example_sentence_native": "C'était incroyablement difficile.", + "example_sentence_english": "It was incredibly difficult.", + "pos": "adverb", + "word_frequency": 6728 + }, + { + "word": "informé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informed", + "example_sentence_native": "Restez informé des dernières nouvelles.", + "example_sentence_english": "Stay informed about the latest news.", + "pos": "adjective", + "word_frequency": 6729 + }, + { + "word": "innombrable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countless;innumerable", + "example_sentence_native": "Il y a un nombre innombrable d'étoiles dans le ciel.", + "example_sentence_english": "There are countless stars in the sky.", + "pos": "adjective", + "word_frequency": 6730 + }, + { + "word": "ironique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ironic", + "example_sentence_native": "Sa remarque était très ironique.", + "example_sentence_english": "His remark was very ironic.", + "pos": "adjective", + "word_frequency": 6731 + }, + { + "word": "machin", + "article_with_word": "le machin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thingamajig;whatsit", + "example_sentence_native": "Passe-moi le machin là-bas.", + "example_sentence_english": "Pass me the thingamajig over there.", + "pos": "noun", + "word_frequency": 6736 + }, + { + "word": "martial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "martial", + "example_sentence_native": "Il pratique les arts martiaux.", + "example_sentence_english": "He practices martial arts.", + "pos": "adjective", + "word_frequency": 6737 + }, + { + "word": "mater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stare at;to check out (informal)", + "example_sentence_native": "Il n'arrêtait pas de mater la télévision.", + "example_sentence_english": "He kept staring at the television.", + "pos": "verb", + "word_frequency": 6738 + }, + { + "word": "milliardaire", + "article_with_word": "le milliardaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billionaire", + "example_sentence_native": "Il est devenu milliardaire grâce à la technologie.", + "example_sentence_english": "He became a billionaire thanks to technology.", + "pos": "noun", + "word_frequency": 6742 + }, + { + "word": "motiver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to motivate", + "example_sentence_native": "Son discours a motivé les troupes.", + "example_sentence_english": "His speech motivated the troops.", + "pos": "verb", + "word_frequency": 6744 + }, + { + "word": "métaphore", + "article_with_word": "la métaphore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metaphor", + "example_sentence_native": "C'est une belle métaphore pour décrire la vie.", + "example_sentence_english": "It's a beautiful metaphor to describe life.", + "pos": "noun", + "word_frequency": 6746 + }, + { + "word": "natif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native", + "example_sentence_native": "Il est un locuteur natif du français.", + "example_sentence_english": "He is a native French speaker.", + "pos": "adjective", + "word_frequency": 6747 + }, + { + "word": "notation", + "article_with_word": "la notation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notation;grading", + "example_sentence_native": "La notation des élèves est basée sur plusieurs critères.", + "example_sentence_english": "Student grading is based on several criteria.", + "pos": "noun", + "word_frequency": 6749 + }, + { + "word": "néant", + "article_with_word": "le néant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nothingness;oblivion", + "example_sentence_native": "Il a regardé le néant avec désespoir.", + "example_sentence_english": "He looked at nothingness with despair.", + "pos": "noun", + "word_frequency": 6750 + }, + { + "word": "obligatoirement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligatorily;necessarily", + "example_sentence_native": "Vous devez obligatoirement porter un casque.", + "example_sentence_english": "You must necessarily wear a helmet.", + "pos": "adverb", + "word_frequency": 6751 + }, + { + "word": "obscur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obscure;dark", + "example_sentence_native": "Le chemin était obscur et difficile.", + "example_sentence_english": "The path was obscure and difficult.", + "pos": "adjective", + "word_frequency": 6752 + }, + { + "word": "obus", + "article_with_word": "un obus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shell (artillery)", + "example_sentence_native": "Un obus a explosé près de la tranchée.", + "example_sentence_english": "A shell exploded near the trench.", + "pos": "noun", + "word_frequency": 6753 + }, + { + "word": "palace", + "article_with_word": "le palace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luxury hotel;palace", + "example_sentence_native": "Ils ont séjourné dans un palace à Paris.", + "example_sentence_english": "They stayed in a luxury hotel in Paris.", + "pos": "noun", + "word_frequency": 6754 + }, + { + "word": "parasite", + "article_with_word": "le parasite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parasite", + "example_sentence_native": "Ce logiciel est un véritable parasite.", + "example_sentence_english": "This software is a real parasite.", + "pos": "noun", + "word_frequency": 6755 + }, + { + "word": "percevoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perceive;to collect (money)", + "example_sentence_native": "Il a du mal à percevoir les nuances.", + "example_sentence_english": "He has difficulty perceiving the nuances.", + "pos": "verb", + "word_frequency": 6756 + }, + { + "word": "positionnement", + "article_with_word": "le positionnement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "positioning", + "example_sentence_native": "Le positionnement du produit est crucial pour le marketing.", + "example_sentence_english": "Product positioning is crucial for marketing.", + "pos": "noun", + "word_frequency": 6757 + }, + { + "word": "proportionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportional", + "example_sentence_native": "Le salaire est proportionnel à l'expérience.", + "example_sentence_english": "The salary is proportional to experience.", + "pos": "adjective", + "word_frequency": 6758 + }, + { + "word": "prostitué", + "article_with_word": "le prostitué", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute", + "example_sentence_native": "Le terme \"prostitué\" désigne une personne qui offre des services sexuels contre rémunération.", + "example_sentence_english": "The term \"prostitute\" refers to a person who offers sexual services for payment.", + "pos": "noun", + "word_frequency": 6759 + }, + { + "word": "périphérique", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ring road", + "example_sentence_native": "Le périphérique parisien est souvent embouteillé aux heures de pointe.", + "example_sentence_english": "The Parisian ring road is often congested during peak hours.", + "pos": "noun", + "word_frequency": 6760 + }, + { + "word": "radicalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radically", + "example_sentence_native": "La situation a changé radicalement après cette décision.", + "example_sentence_english": "The situation changed radically after this decision.", + "pos": "adverb", + "word_frequency": 6761 + }, + { + "word": "ramadan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ramadan", + "example_sentence_native": "Pendant le Ramadan, les musulmans jeûnent du lever au coucher du soleil.", + "example_sentence_english": "During Ramadan, Muslims fast from sunrise to sunset.", + "pos": "noun", + "word_frequency": 6762 + }, + { + "word": "rapporteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rapporteur;protractor", + "example_sentence_native": "Le rapporteur a présenté les conclusions de l'enquête.", + "example_sentence_english": "The rapporteur presented the findings of the investigation.", + "pos": "noun", + "word_frequency": 6763 + }, + { + "word": "remédier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remedy;to fix", + "example_sentence_native": "Il faut remédier à ce problème rapidement.", + "example_sentence_english": "This problem must be remedied quickly.", + "pos": "verb", + "word_frequency": 6764 + }, + { + "word": "représaille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprisal;retaliation", + "example_sentence_native": "En représailles, ils ont coupé l'approvisionnement en eau.", + "example_sentence_english": "In retaliation, they cut off the water supply.", + "pos": "noun", + "word_frequency": 6765 + }, + { + "word": "rhum", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rum", + "example_sentence_native": "Il a ajouté un peu de rhum à son cocktail.", + "example_sentence_english": "He added a little rum to his cocktail.", + "pos": "noun", + "word_frequency": 6766 + }, + { + "word": "rime", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhyme", + "example_sentence_native": "Ce poème a de belles rimes.", + "example_sentence_english": "This poem has beautiful rhymes.", + "pos": "noun", + "word_frequency": 6767 + }, + { + "word": "river", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rivet;to fix (one's gaze)", + "example_sentence_native": "Il a rivé son regard sur l'horizon.", + "example_sentence_english": "He fixed his gaze on the horizon.", + "pos": "verb", + "word_frequency": 6768 + }, + { + "word": "ruisseau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stream;brook", + "example_sentence_native": "Un petit ruisseau coule derrière la maison.", + "example_sentence_english": "A small stream flows behind the house.", + "pos": "noun", + "word_frequency": 6769 + }, + { + "word": "saumon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salmon", + "example_sentence_native": "J'aimerais du saumon fumé pour le dîner.", + "example_sentence_english": "I would like smoked salmon for dinner.", + "pos": "noun", + "word_frequency": 6770 + }, + { + "word": "sieste", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nap", + "example_sentence_native": "Après le déjeuner, j'aime faire une petite sieste.", + "example_sentence_english": "After lunch, I like to take a short nap.", + "pos": "noun", + "word_frequency": 6771 + }, + { + "word": "silhouette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silhouette;figure", + "example_sentence_native": "On pouvait voir sa silhouette se découper sur le ciel.", + "example_sentence_english": "We could see his silhouette outlined against the sky.", + "pos": "noun", + "word_frequency": 6772 + }, + { + "word": "splendide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splendid;magnificent", + "example_sentence_native": "Le paysage était absolument splendide.", + "example_sentence_english": "The landscape was absolutely splendid.", + "pos": "adjective", + "word_frequency": 6773 + }, + { + "word": "sterling", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterling (currency)", + "example_sentence_native": "La valeur du sterling a fluctué récemment.", + "example_sentence_english": "The value of sterling has fluctuated recently.", + "pos": "noun", + "word_frequency": 6774 + }, + { + "word": "suicider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit suicide", + "example_sentence_native": "Il est important de chercher de l'aide si l'on pense à se suicider.", + "example_sentence_english": "It is important to seek help if one thinks about committing suicide.", + "pos": "verb", + "word_frequency": 6775 + }, + { + "word": "sécuritaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "security-related;safe (in terms of security)", + "example_sentence_native": "La situation sécuritaire dans la région est préoccupante.", + "example_sentence_english": "The security situation in the region is worrying.", + "pos": "adjective", + "word_frequency": 6776 + }, + { + "word": "sélectionneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "national team coach;manager;selector", + "example_sentence_native": "Le sélectionneur a annoncé la liste des joueurs retenus.", + "example_sentence_english": "The national team coach announced the list of selected players.", + "pos": "noun", + "word_frequency": 6777 + }, + { + "word": "séparément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separately", + "example_sentence_native": "Ils ont décidé de voyager séparément.", + "example_sentence_english": "They decided to travel separately.", + "pos": "adverb", + "word_frequency": 6778 + }, + { + "word": "tic", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tic;twitch", + "example_sentence_native": "Il a un tic nerveux quand il est stressé.", + "example_sentence_english": "He has a nervous tic when he is stressed.", + "pos": "noun", + "word_frequency": 6780 + }, + { + "word": "tordre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to twist;to wring", + "example_sentence_native": "Elle a tordu le linge pour l'essorer.", + "example_sentence_english": "She wrung out the laundry to dry it.", + "pos": "verb", + "word_frequency": 6781 + }, + { + "word": "unir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unite;to join", + "example_sentence_native": "Ils ont décidé d'unir leurs forces.", + "example_sentence_english": "They decided to unite their forces.", + "pos": "verb", + "word_frequency": 6782 + }, + { + "word": "ver", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worm", + "example_sentence_native": "Le pêcheur a mis un ver au bout de son hameçon.", + "example_sentence_english": "The fisherman put a worm on his hook.", + "pos": "noun", + "word_frequency": 6784 + }, + { + "word": "vertical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vertical", + "example_sentence_native": "La ligne était parfaitement verticale.", + "example_sentence_english": "The line was perfectly vertical.", + "pos": "adjective", + "word_frequency": 6785 + }, + { + "word": "éleveur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breeder;farmer (livestock)", + "example_sentence_native": "L'éleveur s'occupe de ses vaches.", + "example_sentence_english": "The breeder takes care of his cows.", + "pos": "noun", + "word_frequency": 6787 + }, + { + "word": "éliminatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eliminatory;qualifying", + "example_sentence_native": "C'est une épreuve éliminatoire pour la finale.", + "example_sentence_english": "It's a qualifying round for the final.", + "pos": "adjective", + "word_frequency": 6788 + }, + { + "word": "élégant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elegant", + "example_sentence_native": "Elle portait une robe très élégante.", + "example_sentence_english": "She was wearing a very elegant dress.", + "pos": "adjective", + "word_frequency": 6789 + }, + { + "word": "éponge", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sponge", + "example_sentence_native": "Prends l'éponge pour nettoyer la table.", + "example_sentence_english": "Take the sponge to clean the table.", + "pos": "noun", + "word_frequency": 6790 + }, + { + "word": "accro", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addicted;hooked", + "example_sentence_native": "Il est accro aux jeux vidéo.", + "example_sentence_english": "He is hooked on video games.", + "pos": "adjective", + "word_frequency": 6792 + }, + { + "word": "agresseur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressor;attacker", + "example_sentence_native": "La victime a identifié son agresseur.", + "example_sentence_english": "The victim identified her aggressor.", + "pos": "noun", + "word_frequency": 6793 + }, + { + "word": "aimant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnet", + "example_sentence_native": "L'aimant attire les objets métalliques.", + "example_sentence_english": "The magnet attracts metal objects.", + "pos": "noun", + "word_frequency": 6795 + }, + { + "word": "allonger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lengthen;to stretch out;to lie down", + "example_sentence_native": "Il faut allonger la pâte avant de la couper.", + "example_sentence_english": "You need to stretch out the dough before cutting it.", + "pos": "verb", + "word_frequency": 6796 + }, + { + "word": "anonymat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymity", + "example_sentence_native": "Il préfère rester dans l'anonymat.", + "example_sentence_english": "He prefers to remain anonymous.", + "pos": "noun", + "word_frequency": 6797 + }, + { + "word": "aout", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "August", + "example_sentence_native": "Nous partons en vacances en août.", + "example_sentence_english": "We are going on vacation in August.", + "pos": "noun", + "word_frequency": 6798 + }, + { + "word": "apparaitre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to appear", + "example_sentence_native": "Une étoile a commencé à apparaître dans le ciel.", + "example_sentence_english": "A star began to appear in the sky.", + "pos": "verb", + "word_frequency": 6799 + }, + { + "word": "approfondir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deepen;to elaborate on", + "example_sentence_native": "Il faut approfondir nos connaissances sur ce sujet.", + "example_sentence_english": "We need to deepen our knowledge on this subject.", + "pos": "verb", + "word_frequency": 6800 + }, + { + "word": "athlétisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletics;track and field", + "example_sentence_native": "L'athlétisme est un sport exigeant.", + "example_sentence_english": "Athletics is a demanding sport.", + "pos": "noun", + "word_frequency": 6801 + }, + { + "word": "baccalauréat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baccalaureate (French high school diploma)", + "example_sentence_native": "Elle a obtenu son baccalauréat avec mention.", + "example_sentence_english": "She obtained her baccalaureate with honors.", + "pos": "noun", + "word_frequency": 6803 + }, + { + "word": "bouquin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "book (informal)", + "example_sentence_native": "J'ai lu un bon bouquin ce week-end.", + "example_sentence_english": "I read a good book this weekend.", + "pos": "noun", + "word_frequency": 6804 + }, + { + "word": "capturer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to capture", + "example_sentence_native": "Le photographe a réussi à capturer l'instant parfait.", + "example_sentence_english": "The photographer managed to capture the perfect moment.", + "pos": "verb", + "word_frequency": 6807 + }, + { + "word": "caraïbe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Caribbean", + "example_sentence_native": "La Caraïbe est connue pour ses plages magnifiques.", + "example_sentence_english": "The Caribbean is known for its beautiful beaches.", + "pos": "noun", + "word_frequency": 6808 + }, + { + "word": "chienne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female dog;bitch", + "example_sentence_native": "La chienne a eu des chiots.", + "example_sentence_english": "The female dog had puppies.", + "pos": "noun", + "word_frequency": 6810 + }, + { + "word": "close", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closed;shut", + "example_sentence_native": "La porte est close.", + "example_sentence_english": "The door is closed.", + "pos": "adjective", + "word_frequency": 6811 + }, + { + "word": "cohérent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherent;consistent", + "example_sentence_native": "Son discours était très cohérent et bien structuré.", + "example_sentence_english": "His speech was very coherent and well-structured.", + "pos": "adjective", + "word_frequency": 6812 + }, + { + "word": "combustion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combustion", + "example_sentence_native": "La combustion du bois produit de la chaleur.", + "example_sentence_english": "The combustion of wood produces heat.", + "pos": "noun", + "word_frequency": 6813 + }, + { + "word": "complication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complication", + "example_sentence_native": "Il y a eu une complication inattendue.", + "example_sentence_english": "There was an unexpected complication.", + "pos": "noun", + "word_frequency": 6814 + }, + { + "word": "compliment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "compliment", + "example_sentence_native": "Elle a reçu beaucoup de compliments sur sa nouvelle robe.", + "example_sentence_english": "She received many compliments on her new dress.", + "pos": "noun", + "word_frequency": 6815 + }, + { + "word": "coéquipier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teammate", + "example_sentence_native": "Mon coéquipier m'a aidé à marquer le but.", + "example_sentence_english": "My teammate helped me score the goal.", + "pos": "noun", + "word_frequency": 6816 + }, + { + "word": "croyant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "believer", + "example_sentence_native": "Il est un croyant fervent.", + "example_sentence_english": "He is a fervent believer.", + "pos": "noun", + "word_frequency": 6818 + }, + { + "word": "créancier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creditor", + "example_sentence_native": "La banque est le créancier principal de l'entreprise.", + "example_sentence_english": "The bank is the company's main creditor.", + "pos": "noun", + "word_frequency": 6819 + }, + { + "word": "cultiver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cultivate;to grow", + "example_sentence_native": "Ils cultivent des légumes dans leur jardin.", + "example_sentence_english": "They grow vegetables in their garden.", + "pos": "verb", + "word_frequency": 6820 + }, + { + "word": "danseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dancer (male)", + "example_sentence_native": "Le danseur étoile a fait une performance incroyable.", + "example_sentence_english": "The principal dancer gave an incredible performance.", + "pos": "noun", + "word_frequency": 6821 + }, + { + "word": "designer", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designer", + "example_sentence_native": "Elle travaille comme designer graphique.", + "example_sentence_english": "She works as a graphic designer.", + "pos": "noun", + "word_frequency": 6822 + }, + { + "word": "douane", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customs", + "example_sentence_native": "Nous avons dû passer par la douane à l'aéroport.", + "example_sentence_english": "We had to go through customs at the airport.", + "pos": "noun", + "word_frequency": 6823 + }, + { + "word": "débutant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beginner", + "example_sentence_native": "Ce cours est parfait pour les débutants.", + "example_sentence_english": "This course is perfect for beginners.", + "pos": "noun", + "word_frequency": 6824 + }, + { + "word": "envahir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invade;to overwhelm", + "example_sentence_native": "Les mauvaises herbes ont envahi le jardin.", + "example_sentence_english": "The weeds have invaded the garden.", + "pos": "verb", + "word_frequency": 6825 + }, + { + "word": "etude", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "study;research", + "example_sentence_native": "L'étude a montré des résultats prometteurs.", + "example_sentence_english": "The study showed promising results.", + "pos": "noun", + "word_frequency": 6827 + }, + { + "word": "figurant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extra (in a film;play)", + "example_sentence_native": "Il a commencé sa carrière comme figurant dans des films.", + "example_sentence_english": "He started his career as an extra in films.", + "pos": "noun", + "word_frequency": 6829 + }, + { + "word": "foncer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go for it;to rush;to darken", + "example_sentence_native": "Il a décidé de foncer et de saisir l'opportunité.", + "example_sentence_english": "He decided to go for it and seize the opportunity.", + "pos": "verb", + "word_frequency": 6832 + }, + { + "word": "fringue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piece of clothing;clothes (informal)", + "example_sentence_native": "J'ai acheté de nouvelles fringues pour l'été.", + "example_sentence_english": "I bought new clothes for the summer.", + "pos": "noun", + "word_frequency": 6833 + }, + { + "word": "gravure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engraving;etching", + "example_sentence_native": "Cette gravure ancienne est très détaillée.", + "example_sentence_english": "This old engraving is very detailed.", + "pos": "noun", + "word_frequency": 6836 + }, + { + "word": "humiliation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliation", + "example_sentence_native": "Elle a ressenti une profonde humiliation après l'échec.", + "example_sentence_english": "She felt deep humiliation after the failure.", + "pos": "noun", + "word_frequency": 6840 + }, + { + "word": "identifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identified", + "example_sentence_native": "Le problème a été clairement identifié.", + "example_sentence_english": "The problem has been clearly identified.", + "pos": "adjective", + "word_frequency": 6841 + }, + { + "word": "illimité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unlimited", + "example_sentence_native": "Il a un accès illimité à internet.", + "example_sentence_english": "He has unlimited internet access.", + "pos": "adjective", + "word_frequency": 6842 + }, + { + "word": "imprimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "printed", + "example_sentence_native": "Le document imprimé est sur la table.", + "example_sentence_english": "The printed document is on the table.", + "pos": "adjective", + "word_frequency": 6843 + }, + { + "word": "interrompre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interrupt", + "example_sentence_native": "Veuillez ne pas m'interrompre quand je parle.", + "example_sentence_english": "Please do not interrupt me when I speak.", + "pos": "verb", + "word_frequency": 6844 + }, + { + "word": "inversement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conversely", + "example_sentence_native": "Il est très rapide, et inversement, elle est très lente.", + "example_sentence_english": "He is very fast, and conversely, she is very slow.", + "pos": "adverb", + "word_frequency": 6845 + }, + { + "word": "jumelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twin (sister)", + "example_sentence_native": "Elle a une jumelle.", + "example_sentence_english": "She has a twin sister.", + "pos": "noun", + "word_frequency": 6847 + }, + { + "word": "libéralisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalism", + "example_sentence_native": "Le libéralisme est une idéologie politique.", + "example_sentence_english": "Liberalism is a political ideology.", + "pos": "noun", + "word_frequency": 6848 + }, + { + "word": "maçonnerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masonry", + "example_sentence_native": "La maçonnerie est un art ancien.", + "example_sentence_english": "Masonry is an ancient art.", + "pos": "noun", + "word_frequency": 6849 + }, + { + "word": "menaçant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatening", + "example_sentence_native": "Le ciel était menaçant avant l'orage.", + "example_sentence_english": "The sky was threatening before the storm.", + "pos": "adjective", + "word_frequency": 6850 + }, + { + "word": "milice", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militia", + "example_sentence_native": "La milice a été déployée pour maintenir l'ordre.", + "example_sentence_english": "The militia was deployed to maintain order.", + "pos": "noun", + "word_frequency": 6851 + }, + { + "word": "monseigneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monsignor", + "example_sentence_native": "Monseigneur l'évêque a prononcé un discours.", + "example_sentence_english": "Monsignor the bishop gave a speech.", + "pos": "noun", + "word_frequency": 6852 + }, + { + "word": "méfier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be wary of", + "example_sentence_native": "Il faut se méfier des apparences.", + "example_sentence_english": "One must be wary of appearances.", + "pos": "verb", + "word_frequency": 6854 + }, + { + "word": "mélodie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "melody", + "example_sentence_native": "J'aime la mélodie de cette chanson.", + "example_sentence_english": "I like the melody of this song.", + "pos": "noun", + "word_frequency": 6855 + }, + { + "word": "nutrition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutrition", + "example_sentence_native": "La bonne nutrition est essentielle pour la santé.", + "example_sentence_english": "Good nutrition is essential for health.", + "pos": "noun", + "word_frequency": 6857 + }, + { + "word": "polo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polo (shirt)", + "example_sentence_native": "Il porte un polo bleu.", + "example_sentence_english": "He is wearing a blue polo shirt.", + "pos": "noun", + "word_frequency": 6860 + }, + { + "word": "prétendant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claimant", + "example_sentence_native": "Il est le prétendant au trône.", + "example_sentence_english": "He is the claimant to the throne.", + "pos": "noun", + "word_frequency": 6861 + }, + { + "word": "questionnaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "questionnaire", + "example_sentence_native": "Veuillez remplir ce questionnaire.", + "example_sentence_english": "Please fill out this questionnaire.", + "pos": "noun", + "word_frequency": 6862 + }, + { + "word": "rente", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annuity", + "example_sentence_native": "Il vit de ses rentes.", + "example_sentence_english": "He lives off his annuities.", + "pos": "noun", + "word_frequency": 6863 + }, + { + "word": "ressemblance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resemblance", + "example_sentence_native": "Il y a une forte ressemblance entre les deux frères.", + "example_sentence_english": "There is a strong resemblance between the two brothers.", + "pos": "noun", + "word_frequency": 6864 + }, + { + "word": "roc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rock", + "example_sentence_native": "Le château est bâti sur un roc solide.", + "example_sentence_english": "The castle is built on a solid rock.", + "pos": "noun", + "word_frequency": 6866 + }, + { + "word": "ruiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ruin", + "example_sentence_native": "La pluie a ruiné nos plans.", + "example_sentence_english": "The rain ruined our plans.", + "pos": "verb", + "word_frequency": 6869 + }, + { + "word": "réhabilitation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rehabilitation", + "example_sentence_native": "Le projet de réhabilitation du quartier est en cours.", + "example_sentence_english": "The neighborhood rehabilitation project is underway.", + "pos": "noun", + "word_frequency": 6870 + }, + { + "word": "savant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scholar", + "example_sentence_native": "Ce savant a fait une découverte importante.", + "example_sentence_english": "This scholar made an important discovery.", + "pos": "noun", + "word_frequency": 6871 + }, + { + "word": "scooter", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scooter", + "example_sentence_native": "Il va au travail en scooter.", + "example_sentence_english": "He goes to work by scooter.", + "pos": "noun", + "word_frequency": 6872 + }, + { + "word": "serviette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "towel", + "example_sentence_native": "J'ai besoin d'une serviette pour la plage.", + "example_sentence_english": "I need a towel for the beach.", + "pos": "noun", + "word_frequency": 6874 + }, + { + "word": "soccer", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soccer", + "example_sentence_native": "Il joue au soccer tous les samedis.", + "example_sentence_english": "He plays soccer every Saturday.", + "pos": "noun", + "word_frequency": 6876 + }, + { + "word": "soucieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerned", + "example_sentence_native": "Il est très soucieux de l'avenir.", + "example_sentence_english": "He is very concerned about the future.", + "pos": "adjective", + "word_frequency": 6878 + }, + { + "word": "sécheresse", + "article_with_word": "la sécheresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drought", + "example_sentence_native": "La sécheresse a causé de graves problèmes agricoles.", + "example_sentence_english": "The drought caused serious agricultural problems.", + "pos": "noun", + "word_frequency": 6881 + }, + { + "word": "sécuriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to secure", + "example_sentence_native": "Il faut sécuriser le bâtiment avant de partir.", + "example_sentence_english": "We need to secure the building before leaving.", + "pos": "verb", + "word_frequency": 6882 + }, + { + "word": "tortue", + "article_with_word": "la tortue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turtle", + "example_sentence_native": "La tortue est un animal qui vit longtemps.", + "example_sentence_english": "The turtle is an animal that lives a long time.", + "pos": "noun", + "word_frequency": 6883 + }, + { + "word": "transparent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transparent", + "example_sentence_native": "Le verre est un matériau transparent.", + "example_sentence_english": "Glass is a transparent material.", + "pos": "adjective", + "word_frequency": 6884 + }, + { + "word": "variante", + "article_with_word": "la variante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variant", + "example_sentence_native": "Il existe plusieurs variantes de ce jeu.", + "example_sentence_english": "There are several variants of this game.", + "pos": "noun", + "word_frequency": 6885 + }, + { + "word": "voeu", + "article_with_word": "le voeu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wish", + "example_sentence_native": "J'ai fait un voeu pour mon anniversaire.", + "example_sentence_english": "I made a wish for my birthday.", + "pos": "noun", + "word_frequency": 6886 + }, + { + "word": "volcan", + "article_with_word": "le volcan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volcano", + "example_sentence_native": "Le volcan est entré en éruption.", + "example_sentence_english": "The volcano erupted.", + "pos": "noun", + "word_frequency": 6887 + }, + { + "word": "voûte", + "article_with_word": "la voûte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vault", + "example_sentence_native": "La voûte de la cathédrale est impressionnante.", + "example_sentence_english": "The cathedral's vault is impressive.", + "pos": "noun", + "word_frequency": 6888 + }, + { + "word": "écurie", + "article_with_word": "l'écurie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable", + "example_sentence_native": "Les chevaux sont dans l'écurie.", + "example_sentence_english": "The horses are in the stable.", + "pos": "noun", + "word_frequency": 6893 + }, + { + "word": "émouvoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move (emotionally)", + "example_sentence_native": "Son histoire a réussi à m'émouvoir.", + "example_sentence_english": "Her story managed to move me.", + "pos": "verb", + "word_frequency": 6894 + }, + { + "word": "équité", + "article_with_word": "l'équité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equity", + "example_sentence_native": "Nous devons garantir l'équité pour tous.", + "example_sentence_english": "We must ensure equity for all.", + "pos": "noun", + "word_frequency": 6895 + }, + { + "word": "abstention", + "article_with_word": "l'abstention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstention", + "example_sentence_native": "Le taux d'abstention était élevé lors des dernières élections.", + "example_sentence_english": "The abstention rate was high in the last elections.", + "pos": "noun", + "word_frequency": 6896 + }, + { + "word": "accessibilité", + "article_with_word": "l'accessibilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accessibility", + "example_sentence_native": "L'accessibilité des transports en commun est cruciale.", + "example_sentence_english": "The accessibility of public transport is crucial.", + "pos": "noun", + "word_frequency": 6897 + }, + { + "word": "accession", + "article_with_word": "l'accession", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accession", + "example_sentence_native": "L'accession à la propriété est un objectif pour beaucoup.", + "example_sentence_english": "Accession to property is a goal for many.", + "pos": "noun", + "word_frequency": 6898 + }, + { + "word": "alignement", + "article_with_word": "l'alignement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alignment", + "example_sentence_native": "Vérifiez l'alignement des roues de la voiture.", + "example_sentence_english": "Check the alignment of the car wheels.", + "pos": "noun", + "word_frequency": 6899 + }, + { + "word": "antérieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anterior", + "example_sentence_native": "Les événements antérieurs ont mené à cette situation.", + "example_sentence_english": "The anterior events led to this situation.", + "pos": "adjective", + "word_frequency": 6901 + }, + { + "word": "arche", + "article_with_word": "l'arche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arch", + "example_sentence_native": "L'arche de ce pont est très ancienne.", + "example_sentence_english": "The arch of this bridge is very old.", + "pos": "noun", + "word_frequency": 6902 + }, + { + "word": "argile", + "article_with_word": "l'argile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clay", + "example_sentence_native": "Les potiers travaillent l'argile pour créer des objets.", + "example_sentence_english": "Potters work with clay to create objects.", + "pos": "noun", + "word_frequency": 6903 + }, + { + "word": "arène", + "article_with_word": "l'arène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arena", + "example_sentence_native": "Les gladiateurs combattaient dans l'arène.", + "example_sentence_english": "Gladiators fought in the arena.", + "pos": "noun", + "word_frequency": 6905 + }, + { + "word": "autisme", + "article_with_word": "l'autisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autism", + "example_sentence_native": "La recherche sur l'autisme progresse.", + "example_sentence_english": "Research on autism is progressing.", + "pos": "noun", + "word_frequency": 6906 + }, + { + "word": "autopsie", + "article_with_word": "l'autopsie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autopsy", + "example_sentence_native": "Une autopsie a été pratiquée pour déterminer la cause du décès.", + "example_sentence_english": "An autopsy was performed to determine the cause of death.", + "pos": "noun", + "word_frequency": 6907 + }, + { + "word": "barbare", + "article_with_word": "le barbare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbarian", + "example_sentence_native": "Les Romains considéraient les tribus germaniques comme des barbares.", + "example_sentence_english": "The Romans considered the Germanic tribes as barbarians.", + "pos": "noun", + "word_frequency": 6908 + }, + { + "word": "barrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to block", + "example_sentence_native": "Il a barré la route avec sa voiture.", + "example_sentence_english": "He blocked the road with his car.", + "pos": "verb", + "word_frequency": 6909 + }, + { + "word": "bot", + "article_with_word": "le bot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bot", + "example_sentence_native": "Le site utilise des bots pour répondre aux questions fréquentes.", + "example_sentence_english": "The website uses bots to answer frequently asked questions.", + "pos": "noun", + "word_frequency": 6910 + }, + { + "word": "calvaire", + "article_with_word": "le calvaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordeal", + "example_sentence_native": "La maladie a été un véritable calvaire pour lui.", + "example_sentence_english": "The illness was a real ordeal for him.", + "pos": "noun", + "word_frequency": 6913 + }, + { + "word": "capsule", + "article_with_word": "la capsule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capsule", + "example_sentence_native": "Prenez une capsule de ce médicament chaque matin.", + "example_sentence_english": "Take one capsule of this medicine every morning.", + "pos": "noun", + "word_frequency": 6914 + }, + { + "word": "capter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capture", + "example_sentence_native": "L'antenne permet de capter les signaux radio.", + "example_sentence_english": "The antenna allows to capture radio signals.", + "pos": "verb", + "word_frequency": 6915 + }, + { + "word": "casier", + "article_with_word": "le casier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locker", + "example_sentence_native": "J'ai mis mes affaires dans le casier.", + "example_sentence_english": "I put my belongings in the locker.", + "pos": "noun", + "word_frequency": 6916 + }, + { + "word": "chargeur", + "article_with_word": "le chargeur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "charger", + "example_sentence_native": "J'ai oublié mon chargeur de téléphone.", + "example_sentence_english": "I forgot my phone charger.", + "pos": "noun", + "word_frequency": 6917 + }, + { + "word": "cl", + "article_with_word": "le cl", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "centilitre", + "example_sentence_native": "Cette bouteille contient 75 cl de vin.", + "example_sentence_english": "This bottle contains 75 cl of wine.", + "pos": "noun", + "word_frequency": 6919 + }, + { + "word": "clandestin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clandestine person", + "example_sentence_native": "Un clandestin a été arrêté à la frontière.", + "example_sentence_english": "A clandestine person was arrested at the border.", + "pos": "noun", + "word_frequency": 6920 + }, + { + "word": "collision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collision", + "example_sentence_native": "Il y a eu une collision entre deux voitures.", + "example_sentence_english": "There was a collision between two cars.", + "pos": "noun", + "word_frequency": 6921 + }, + { + "word": "combustible", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuel", + "example_sentence_native": "Le bois est un combustible naturel.", + "example_sentence_english": "Wood is a natural fuel.", + "pos": "noun", + "word_frequency": 6922 + }, + { + "word": "conduit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pipe", + "example_sentence_native": "Le conduit d'aération est bouché.", + "example_sentence_english": "The ventilation pipe is blocked.", + "pos": "noun", + "word_frequency": 6923 + }, + { + "word": "confondu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confused", + "example_sentence_native": "Il était confondu par la complexité de la situation.", + "example_sentence_english": "He was confused by the complexity of the situation.", + "pos": "adjective", + "word_frequency": 6924 + }, + { + "word": "congrégation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congregation", + "example_sentence_native": "La congrégation s'est réunie pour la messe.", + "example_sentence_english": "The congregation gathered for mass.", + "pos": "noun", + "word_frequency": 6925 + }, + { + "word": "continuation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuation", + "example_sentence_native": "Nous attendons la continuation des négociations.", + "example_sentence_english": "We are awaiting the continuation of the negotiations.", + "pos": "noun", + "word_frequency": 6926 + }, + { + "word": "courtois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courteous", + "example_sentence_native": "Il est toujours très courtois avec ses clients.", + "example_sentence_english": "He is always very courteous with his clients.", + "pos": "adjective", + "word_frequency": 6927 + }, + { + "word": "cravate", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tie", + "example_sentence_native": "Il porte une cravate bleue.", + "example_sentence_english": "He is wearing a blue tie.", + "pos": "noun", + "word_frequency": 6928 + }, + { + "word": "cuillère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spoon", + "example_sentence_native": "J'ai besoin d'une cuillère pour mon café.", + "example_sentence_english": "I need a spoon for my coffee.", + "pos": "noun", + "word_frequency": 6929 + }, + { + "word": "cursus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curriculum", + "example_sentence_native": "Son cursus universitaire est très impressionnant.", + "example_sentence_english": "His university curriculum is very impressive.", + "pos": "noun", + "word_frequency": 6930 + }, + { + "word": "daté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dated", + "example_sentence_native": "Ce style de musique est un peu daté.", + "example_sentence_english": "This music style is a bit dated.", + "pos": "adjective", + "word_frequency": 6932 + }, + { + "word": "diabète", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diabetes", + "example_sentence_native": "Le diabète est une maladie chronique.", + "example_sentence_english": "Diabetes is a chronic disease.", + "pos": "noun", + "word_frequency": 6933 + }, + { + "word": "dirigé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directed", + "example_sentence_native": "Le projet est dirigé par une équipe expérimentée.", + "example_sentence_english": "The project is directed by an experienced team.", + "pos": "adjective", + "word_frequency": 6934 + }, + { + "word": "drama", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drama", + "example_sentence_native": "J'aime regarder des séries de drama.", + "example_sentence_english": "I like watching drama series.", + "pos": "noun", + "word_frequency": 6936 + }, + { + "word": "déménagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moved (house)", + "example_sentence_native": "Ils sont déménagés dans une nouvelle ville.", + "example_sentence_english": "They have moved to a new city.", + "pos": "adjective", + "word_frequency": 6937 + }, + { + "word": "détroit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strait", + "example_sentence_native": "Le détroit de Gibraltar est très important.", + "example_sentence_english": "The Strait of Gibraltar is very important.", + "pos": "noun", + "word_frequency": 6938 + }, + { + "word": "développé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "developed", + "example_sentence_native": "C'est un pays très développé.", + "example_sentence_english": "It's a very developed country.", + "pos": "adjective", + "word_frequency": 6939 + }, + { + "word": "enchaîner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to chain;to link", + "example_sentence_native": "Il a enchaîné les succès.", + "example_sentence_english": "He followed one success after another.", + "pos": "verb", + "word_frequency": 6940 + }, + { + "word": "enchaîné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chained", + "example_sentence_native": "Le chien était enchaîné à l'arbre.", + "example_sentence_english": "The dog was chained to the tree.", + "pos": "adjective", + "word_frequency": 6941 + }, + { + "word": "fantasy", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy", + "example_sentence_native": "J'adore les romans de fantasy.", + "example_sentence_english": "I love fantasy novels.", + "pos": "noun", + "word_frequency": 6942 + }, + { + "word": "ferment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leaven;enzyme", + "example_sentence_native": "Le ferment est essentiel pour la fabrication du pain.", + "example_sentence_english": "Leaven is essential for bread making.", + "pos": "verb", + "word_frequency": 6944 + }, + { + "word": "fondu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "melted", + "example_sentence_native": "Le fromage fondu est délicieux.", + "example_sentence_english": "Melted cheese is delicious.", + "pos": "adjective", + "word_frequency": 6946 + }, + { + "word": "forestier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forestry;forest (adj)", + "example_sentence_native": "L'industrie forestière est importante dans cette région.", + "example_sentence_english": "The forestry industry is important in this region.", + "pos": "adjective", + "word_frequency": 6947 + }, + { + "word": "fragilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragility", + "example_sentence_native": "La fragilité de la porcelaine est connue.", + "example_sentence_english": "The fragility of porcelain is known.", + "pos": "noun", + "word_frequency": 6949 + }, + { + "word": "gastronomie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastronomy", + "example_sentence_native": "La gastronomie française est réputée mondialement.", + "example_sentence_english": "French gastronomy is world-renowned.", + "pos": "noun", + "word_frequency": 6951 + }, + { + "word": "hébreu", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hebrew", + "example_sentence_native": "Il étudie l'hébreu ancien.", + "example_sentence_english": "He studies ancient Hebrew.", + "pos": "noun", + "word_frequency": 6955 + }, + { + "word": "idole", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idol", + "example_sentence_native": "Elle est mon idole.", + "example_sentence_english": "She is my idol.", + "pos": "noun", + "word_frequency": 6957 + }, + { + "word": "ignorant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ignorant", + "example_sentence_native": "Il est ignorant des faits.", + "example_sentence_english": "He is ignorant of the facts.", + "pos": "adjective", + "word_frequency": 6958 + }, + { + "word": "impératif", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperative;necessity", + "example_sentence_native": "C'est un impératif de sécurité.", + "example_sentence_english": "It's a safety imperative.", + "pos": "noun", + "word_frequency": 6959 + }, + { + "word": "influencé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "influenced", + "example_sentence_native": "Il est très influencé par ses amis.", + "example_sentence_english": "He is very influenced by his friends.", + "pos": "adjective", + "word_frequency": 6960 + }, + { + "word": "instable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unstable", + "example_sentence_native": "La situation politique est instable.", + "example_sentence_english": "The political situation is unstable.", + "pos": "adjective", + "word_frequency": 6961 + }, + { + "word": "interrompu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrupted", + "example_sentence_native": "Le discours a été interrompu par des applaudissements.", + "example_sentence_english": "The speech was interrupted by applause.", + "pos": "adjective", + "word_frequency": 6962 + }, + { + "word": "liquidation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidation;sale", + "example_sentence_native": "Le magasin est en liquidation totale.", + "example_sentence_english": "The store is in total liquidation.", + "pos": "noun", + "word_frequency": 6964 + }, + { + "word": "modéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderate", + "example_sentence_native": "Il a des opinions politiques modérées.", + "example_sentence_english": "He has moderate political opinions.", + "pos": "adjective", + "word_frequency": 6966 + }, + { + "word": "moniteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monitor;instructor", + "example_sentence_native": "Le moniteur de ski nous a donné des conseils.", + "example_sentence_english": "The ski instructor gave us advice.", + "pos": "noun", + "word_frequency": 6967 + }, + { + "word": "moustache", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moustache", + "example_sentence_native": "Il porte une grande moustache.", + "example_sentence_english": "He wears a big moustache.", + "pos": "noun", + "word_frequency": 6968 + }, + { + "word": "niche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "niche;doghouse", + "example_sentence_native": "Le chien dort dans sa niche.", + "example_sentence_english": "The dog sleeps in its doghouse.", + "pos": "noun", + "word_frequency": 6970 + }, + { + "word": "palette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palette;range;pallet", + "example_sentence_native": "L'artiste a mélangé les couleurs sur sa palette.", + "example_sentence_english": "The artist mixed the colors on her palette.", + "pos": "noun", + "word_frequency": 6972 + }, + { + "word": "parodie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parody", + "example_sentence_native": "Ce film est une parodie des films d'horreur.", + "example_sentence_english": "This film is a parody of horror movies.", + "pos": "noun", + "word_frequency": 6973 + }, + { + "word": "passerelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footbridge;gangway;gateway", + "example_sentence_native": "Nous avons traversé la rivière par une petite passerelle.", + "example_sentence_english": "We crossed the river by a small footbridge.", + "pos": "noun", + "word_frequency": 6974 + }, + { + "word": "passionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passionate", + "example_sentence_native": "Il est passionné par la musique classique.", + "example_sentence_english": "He is passionate about classical music.", + "pos": "adjective", + "word_frequency": 6975 + }, + { + "word": "pesant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heavy;oppressive", + "example_sentence_native": "L'atmosphère était lourde et pesante.", + "example_sentence_english": "The atmosphere was heavy and oppressive.", + "pos": "adjective", + "word_frequency": 6976 + }, + { + "word": "piéton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pedestrian", + "example_sentence_native": "Les piétons doivent utiliser le passage clouté.", + "example_sentence_english": "Pedestrians must use the crosswalk.", + "pos": "noun", + "word_frequency": 6977 + }, + { + "word": "plongé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immersed;plunged", + "example_sentence_native": "Il était plongé dans ses pensées.", + "example_sentence_english": "He was immersed in his thoughts.", + "pos": "adjective", + "word_frequency": 6979 + }, + { + "word": "pointer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to point;to clock in", + "example_sentence_native": "Il a pointé du doigt la carte.", + "example_sentence_english": "He pointed his finger at the map.", + "pos": "verb", + "word_frequency": 6980 + }, + { + "word": "polaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polar;fleece", + "example_sentence_native": "Les régions polaires sont très froides.", + "example_sentence_english": "Polar regions are very cold.", + "pos": "adjective", + "word_frequency": 6981 + }, + { + "word": "prairie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meadow;prairie", + "example_sentence_native": "Les vaches paissent dans la prairie.", + "example_sentence_english": "The cows graze in the meadow.", + "pos": "noun", + "word_frequency": 6983 + }, + { + "word": "promu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promoted", + "example_sentence_native": "Il a été promu au poste de directeur.", + "example_sentence_english": "He was promoted to the position of director.", + "pos": "adjective", + "word_frequency": 6984 + }, + { + "word": "protester", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protest", + "example_sentence_native": "Les citoyens ont protesté contre la nouvelle loi.", + "example_sentence_english": "The citizens protested against the new law.", + "pos": "verb", + "word_frequency": 6985 + }, + { + "word": "précarité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precariousness;insecurity", + "example_sentence_native": "Beaucoup de jeunes vivent dans la précarité.", + "example_sentence_english": "Many young people live in precariousness.", + "pos": "noun", + "word_frequency": 6986 + }, + { + "word": "psychiatrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychiatric", + "example_sentence_native": "Il a été admis dans un hôpital psychiatrique.", + "example_sentence_english": "He was admitted to a psychiatric hospital.", + "pos": "adjective", + "word_frequency": 6987 + }, + { + "word": "quelquefois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sometimes", + "example_sentence_native": "Je vais quelquefois au cinéma.", + "example_sentence_english": "I sometimes go to the cinema.", + "pos": "adverb", + "word_frequency": 6988 + }, + { + "word": "ralenti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slowed down;in slow motion", + "example_sentence_native": "La vidéo est au ralenti.", + "example_sentence_english": "The video is in slow motion.", + "pos": "adjective", + "word_frequency": 6989 + }, + { + "word": "remboursé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refunded;reimbursed", + "example_sentence_native": "J'ai été remboursé pour mon achat.", + "example_sentence_english": "I was reimbursed for my purchase.", + "pos": "adjective", + "word_frequency": 6990 + }, + { + "word": "remontée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rise;climb;comeback", + "example_sentence_native": "Il y a eu une forte remontée des prix.", + "example_sentence_english": "There was a sharp rise in prices.", + "pos": "noun", + "word_frequency": 6991 + }, + { + "word": "renforcé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reinforced;strengthened", + "example_sentence_native": "Le pont a été renforcé pour plus de sécurité.", + "example_sentence_english": "The bridge was reinforced for more safety.", + "pos": "adjective", + "word_frequency": 6992 + }, + { + "word": "renouvelé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renewed", + "example_sentence_native": "Son contrat a été renouvelé pour un an.", + "example_sentence_english": "His contract was renewed for one year.", + "pos": "adjective", + "word_frequency": 6993 + }, + { + "word": "ring", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring (boxing)", + "example_sentence_native": "Les boxeurs sont montés sur le ring.", + "example_sentence_english": "The boxers got into the ring.", + "pos": "noun", + "word_frequency": 6994 + }, + { + "word": "réorganisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reorganization", + "example_sentence_native": "L'entreprise a subi une réorganisation majeure.", + "example_sentence_english": "The company underwent a major reorganization.", + "pos": "noun", + "word_frequency": 6998 + }, + { + "word": "résurrection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resurrection", + "example_sentence_native": "La résurrection est un thème central dans certaines religions.", + "example_sentence_english": "Resurrection is a central theme in some religions.", + "pos": "noun", + "word_frequency": 6999 + }, + { + "word": "réveillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "awake", + "example_sentence_native": "Il est complètement réveillé maintenant.", + "example_sentence_english": "He is completely awake now.", + "pos": "adjective", + "word_frequency": 7000 + }, + { + "word": "sceau", + "article_with_word": "le sceau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seal (official mark)", + "example_sentence_native": "Le document portait le sceau royal.", + "example_sentence_english": "The document bore the royal seal.", + "pos": "noun", + "word_frequency": 7001 + }, + { + "word": "smic", + "article_with_word": "le Smic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimum wage (acronym for Salaire Minimum Interprofessionnel de Croissance)", + "example_sentence_native": "Le Smic est réévalué chaque année.", + "example_sentence_english": "The minimum wage is re-evaluated every year.", + "pos": "noun", + "word_frequency": 7003 + }, + { + "word": "soucier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worry;to care", + "example_sentence_native": "Ne te soucie pas de ça.", + "example_sentence_english": "Don't worry about that.", + "pos": "verb", + "word_frequency": 7004 + }, + { + "word": "souper", + "article_with_word": "le souper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supper", + "example_sentence_native": "Nous avons pris un léger souper.", + "example_sentence_english": "We had a light supper.", + "pos": "noun", + "word_frequency": 7005 + }, + { + "word": "séisme", + "article_with_word": "le séisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthquake", + "example_sentence_native": "Un violent séisme a frappé la région.", + "example_sentence_english": "A violent earthquake struck the region.", + "pos": "noun", + "word_frequency": 7007 + }, + { + "word": "traducteur", + "article_with_word": "le traducteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translator", + "example_sentence_native": "J'ai besoin d'un bon traducteur pour ce texte.", + "example_sentence_english": "I need a good translator for this text.", + "pos": "noun", + "word_frequency": 7008 + }, + { + "word": "trancher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to slice;to decide", + "example_sentence_native": "Il faut trancher cette question rapidement.", + "example_sentence_english": "We need to decide this question quickly.", + "pos": "verb", + "word_frequency": 7009 + }, + { + "word": "troupeau", + "article_with_word": "le troupeau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herd;flock", + "example_sentence_native": "Le berger menait son troupeau.", + "example_sentence_english": "The shepherd led his flock.", + "pos": "noun", + "word_frequency": 7010 + }, + { + "word": "vaccination", + "article_with_word": "la vaccination", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaccination", + "example_sentence_native": "La vaccination est essentielle pour la santé publique.", + "example_sentence_english": "Vaccination is essential for public health.", + "pos": "noun", + "word_frequency": 7012 + }, + { + "word": "vagin", + "article_with_word": "le vagin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vagina", + "example_sentence_native": "Le vagin est une partie de l'appareil reproducteur féminin.", + "example_sentence_english": "The vagina is part of the female reproductive system.", + "pos": "noun", + "word_frequency": 7013 + }, + { + "word": "versant", + "article_with_word": "le versant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slope;side (of a mountain)", + "example_sentence_native": "Nous avons skié sur le versant nord de la montagne.", + "example_sentence_english": "We skied on the north slope of the mountain.", + "pos": "noun", + "word_frequency": 7014 + }, + { + "word": "vieillissement", + "article_with_word": "le vieillissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aging;senescence", + "example_sentence_native": "Le vieillissement de la population est un défi.", + "example_sentence_english": "Population aging is a challenge.", + "pos": "noun", + "word_frequency": 7015 + }, + { + "word": "écosystème", + "article_with_word": "l'écosystème", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecosystem", + "example_sentence_native": "La protection de l'écosystème est cruciale.", + "example_sentence_english": "Ecosystem protection is crucial.", + "pos": "noun", + "word_frequency": 7018 + }, + { + "word": "étang", + "article_with_word": "l'étang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pond", + "example_sentence_native": "Il y a un petit étang derrière la maison.", + "example_sentence_english": "There is a small pond behind the house.", + "pos": "noun", + "word_frequency": 7019 + }, + { + "word": "évangile", + "article_with_word": "l'Évangile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gospel", + "example_sentence_native": "Il a lu un passage de l'Évangile.", + "example_sentence_english": "He read a passage from the Gospel.", + "pos": "noun", + "word_frequency": 7020 + }, + { + "word": "acheté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bought;purchased", + "example_sentence_native": "La voiture est neuve, elle a été achetée hier.", + "example_sentence_english": "The car is new, it was bought yesterday.", + "pos": "adjective", + "word_frequency": 7021 + }, + { + "word": "allumé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lit;turned on", + "example_sentence_native": "La lumière est allumée.", + "example_sentence_english": "The light is on.", + "pos": "adjective", + "word_frequency": 7022 + }, + { + "word": "anatomie", + "article_with_word": "l'anatomie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anatomy", + "example_sentence_native": "L'anatomie humaine est complexe.", + "example_sentence_english": "Human anatomy is complex.", + "pos": "noun", + "word_frequency": 7024 + }, + { + "word": "apaiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to calm;to appease", + "example_sentence_native": "Il a essayé d'apaiser la situation.", + "example_sentence_english": "He tried to calm the situation.", + "pos": "verb", + "word_frequency": 7025 + }, + { + "word": "applaudissement", + "article_with_word": "l'applaudissement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "applause", + "example_sentence_native": "Les applaudissements ont éclaté à la fin du spectacle.", + "example_sentence_english": "Applause broke out at the end of the show.", + "pos": "noun", + "word_frequency": 7026 + }, + { + "word": "auditeur", + "article_with_word": "l'auditeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "listener;auditor", + "example_sentence_native": "L'auditeur a posé une question pertinente.", + "example_sentence_english": "The listener asked a relevant question.", + "pos": "noun", + "word_frequency": 7027 + }, + { + "word": "auxiliaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auxiliary", + "example_sentence_native": "Le verbe \"être\" est un auxiliaire.", + "example_sentence_english": "The verb \"to be\" is an auxiliary.", + "pos": "adjective", + "word_frequency": 7028 + }, + { + "word": "bacon", + "article_with_word": "le bacon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bacon", + "example_sentence_native": "J'aime les œufs et le bacon au petit-déjeuner.", + "example_sentence_english": "I like eggs and bacon for breakfast.", + "pos": "noun", + "word_frequency": 7029 + }, + { + "word": "blocus", + "article_with_word": "le blocus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blockade", + "example_sentence_native": "Le port est sous blocus.", + "example_sentence_english": "The port is under blockade.", + "pos": "noun", + "word_frequency": 7032 + }, + { + "word": "brutalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutally;abruptly", + "example_sentence_native": "Il a réagi brutalement à la nouvelle.", + "example_sentence_english": "He reacted brutally to the news.", + "pos": "adverb", + "word_frequency": 7033 + }, + { + "word": "châssis", + "article_with_word": "le châssis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame;chassis", + "example_sentence_native": "Le châssis de la voiture est endommagé.", + "example_sentence_english": "The car's chassis is damaged.", + "pos": "noun", + "word_frequency": 7036 + }, + { + "word": "coke", + "article_with_word": "le coke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coke (Coca-Cola or fuel)", + "example_sentence_native": "Je voudrais un verre de coke, s'il vous plaît.", + "example_sentence_english": "I would like a glass of coke, please.", + "pos": "noun", + "word_frequency": 7037 + }, + { + "word": "contradictoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contradictory", + "example_sentence_native": "Ses déclarations sont contradictoires.", + "example_sentence_english": "His statements are contradictory.", + "pos": "adjective", + "word_frequency": 7040 + }, + { + "word": "corrigé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corrected", + "example_sentence_native": "Le texte a été corrigé.", + "example_sentence_english": "The text has been corrected.", + "pos": "adjective", + "word_frequency": 7041 + }, + { + "word": "dentiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dentist", + "example_sentence_native": "J'ai rendez-vous chez le dentiste.", + "example_sentence_english": "I have an appointment at the dentist's.", + "pos": "noun", + "word_frequency": 7043 + }, + { + "word": "déni", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denial", + "example_sentence_native": "Il est dans le déni de la réalité.", + "example_sentence_english": "He is in denial of reality.", + "pos": "noun", + "word_frequency": 7044 + }, + { + "word": "dénonciation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denunciation;reporting", + "example_sentence_native": "La dénonciation anonyme est parfois difficile à prouver.", + "example_sentence_english": "Anonymous denunciation is sometimes difficult to prove.", + "pos": "noun", + "word_frequency": 7045 + }, + { + "word": "déposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registered;filed", + "example_sentence_native": "C'est une marque déposée.", + "example_sentence_english": "It's a registered trademark.", + "pos": "adjective", + "word_frequency": 7046 + }, + { + "word": "effacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "erased;faded", + "example_sentence_native": "Son nom a été effacé de la liste.", + "example_sentence_english": "His name was erased from the list.", + "pos": "adjective", + "word_frequency": 7048 + }, + { + "word": "email", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "email", + "example_sentence_native": "J'ai reçu un email important.", + "example_sentence_english": "I received an important email.", + "pos": "noun", + "word_frequency": 7049 + }, + { + "word": "enfuir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flee;to run away", + "example_sentence_native": "Le voleur a réussi à s'enfuir.", + "example_sentence_english": "The thief managed to flee.", + "pos": "verb", + "word_frequency": 7050 + }, + { + "word": "expérimenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experienced", + "example_sentence_native": "C'est un professionnel très expérimenté.", + "example_sentence_english": "He is a very experienced professional.", + "pos": "adjective", + "word_frequency": 7052 + }, + { + "word": "falaise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cliff", + "example_sentence_native": "Nous avons marché le long de la falaise.", + "example_sentence_english": "We walked along the cliff.", + "pos": "noun", + "word_frequency": 7053 + }, + { + "word": "flot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow;stream", + "example_sentence_native": "Le flot de la rivière était puissant.", + "example_sentence_english": "The flow of the river was powerful.", + "pos": "noun", + "word_frequency": 7054 + }, + { + "word": "gaule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Gaul (ancient region of France)", + "example_sentence_native": "La Gaule était habitée par les Celtes.", + "example_sentence_english": "Gaul was inhabited by the Celts.", + "pos": "noun", + "word_frequency": 7055 + }, + { + "word": "gazon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lawn;grass", + "example_sentence_native": "Le gazon a besoin d'être tondu.", + "example_sentence_english": "The lawn needs to be mowed.", + "pos": "noun", + "word_frequency": 7057 + }, + { + "word": "geek", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geek", + "example_sentence_native": "C'est un vrai geek d'informatique.", + "example_sentence_english": "He's a real computer geek.", + "pos": "noun", + "word_frequency": 7058 + }, + { + "word": "identitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "identity-related", + "example_sentence_native": "Il y a une crise identitaire dans ce pays.", + "example_sentence_english": "There is an identity crisis in this country.", + "pos": "adjective", + "word_frequency": 7061 + }, + { + "word": "immersion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immersion", + "example_sentence_native": "L'immersion totale est la meilleure méthode pour apprendre une langue.", + "example_sentence_english": "Total immersion is the best method to learn a language.", + "pos": "noun", + "word_frequency": 7062 + }, + { + "word": "instaurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to establish;to institute", + "example_sentence_native": "Le gouvernement veut instaurer de nouvelles lois.", + "example_sentence_english": "The government wants to establish new laws.", + "pos": "verb", + "word_frequency": 7063 + }, + { + "word": "insuffisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insufficient", + "example_sentence_native": "La quantité est insuffisante.", + "example_sentence_english": "The quantity is insufficient.", + "pos": "adjective", + "word_frequency": 7064 + }, + { + "word": "intersection", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intersection", + "example_sentence_native": "Tournez à droite à la prochaine intersection.", + "example_sentence_english": "Turn right at the next intersection.", + "pos": "noun", + "word_frequency": 7065 + }, + { + "word": "lavage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "washing;wash", + "example_sentence_native": "Le lavage des mains est essentiel.", + "example_sentence_english": "Hand washing is essential.", + "pos": "noun", + "word_frequency": 7069 + }, + { + "word": "leadership", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership", + "example_sentence_native": "Il a montré un grand leadership.", + "example_sentence_english": "He showed great leadership.", + "pos": "noun", + "word_frequency": 7071 + }, + { + "word": "libanais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lebanese", + "example_sentence_native": "C'est un restaurant libanais.", + "example_sentence_english": "It's a Lebanese restaurant.", + "pos": "adjective", + "word_frequency": 7072 + }, + { + "word": "litige", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute;litigation", + "example_sentence_native": "Il y a un litige entre les deux parties.", + "example_sentence_english": "There is a dispute between the two parties.", + "pos": "noun", + "word_frequency": 7073 + }, + { + "word": "louche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicious;shady", + "example_sentence_native": "Cette histoire est un peu louche.", + "example_sentence_english": "This story is a bit suspicious.", + "pos": "adjective", + "word_frequency": 7074 + }, + { + "word": "loupé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "missed;failed", + "example_sentence_native": "Son tir était loupé.", + "example_sentence_english": "His shot was missed.", + "pos": "adjective", + "word_frequency": 7075 + }, + { + "word": "lourdement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heavily;severely", + "example_sentence_native": "Il est tombé lourdement.", + "example_sentence_english": "He fell heavily.", + "pos": "adverb", + "word_frequency": 7076 + }, + { + "word": "lunaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lunar;eccentric", + "example_sentence_native": "C'est un paysage lunaire.", + "example_sentence_english": "It's a lunar landscape.", + "pos": "adjective", + "word_frequency": 7077 + }, + { + "word": "lésion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lesion;injury", + "example_sentence_native": "Il a une lésion au genou.", + "example_sentence_english": "He has a lesion on his knee.", + "pos": "noun", + "word_frequency": 7078 + }, + { + "word": "misérable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miserable", + "example_sentence_native": "Il se sentait misérable après la défaite.", + "example_sentence_english": "He felt miserable after the defeat.", + "pos": "adjective", + "word_frequency": 7081 + }, + { + "word": "méfiance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistrust", + "example_sentence_native": "La méfiance s'est installée entre eux.", + "example_sentence_english": "Mistrust settled between them.", + "pos": "noun", + "word_frequency": 7082 + }, + { + "word": "next", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "next", + "example_sentence_native": "On passe au next sujet.", + "example_sentence_english": "We're moving on to the next topic.", + "pos": "adjective", + "word_frequency": 7083 + }, + { + "word": "north", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "north", + "example_sentence_native": "Le vent vient du nord.", + "example_sentence_english": "The wind comes from the north.", + "pos": "noun", + "word_frequency": 7084 + }, + { + "word": "nouvellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newly", + "example_sentence_native": "L'entreprise a nouvellement embauché du personnel.", + "example_sentence_english": "The company has newly hired staff.", + "pos": "adverb", + "word_frequency": 7085 + }, + { + "word": "parité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parity", + "example_sentence_native": "Ils luttent pour la parité salariale.", + "example_sentence_english": "They are fighting for wage parity.", + "pos": "noun", + "word_frequency": 7087 + }, + { + "word": "partagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shared", + "example_sentence_native": "C'est un avis partagé par beaucoup.", + "example_sentence_english": "This is an opinion shared by many.", + "pos": "adjective", + "word_frequency": 7088 + }, + { + "word": "percé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pierced", + "example_sentence_native": "Le mur était percé de plusieurs trous.", + "example_sentence_english": "The wall was pierced with several holes.", + "pos": "adjective", + "word_frequency": 7089 + }, + { + "word": "planning", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "schedule", + "example_sentence_native": "J'ai un planning très chargé cette semaine.", + "example_sentence_english": "I have a very busy schedule this week.", + "pos": "noun", + "word_frequency": 7090 + }, + { + "word": "pluriel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plural", + "example_sentence_native": "Le pluriel de \"cheval\" est \"chevaux\".", + "example_sentence_english": "The plural of \"horse\" is \"horses\".", + "pos": "noun", + "word_frequency": 7091 + }, + { + "word": "promis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promised", + "example_sentence_native": "C'est une victoire promise.", + "example_sentence_english": "It's a promised victory.", + "pos": "adjective", + "word_frequency": 7092 + }, + { + "word": "prototype", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prototype", + "example_sentence_native": "Ils ont présenté le prototype de leur nouvelle voiture.", + "example_sentence_english": "They presented the prototype of their new car.", + "pos": "noun", + "word_frequency": 7093 + }, + { + "word": "racing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racing", + "example_sentence_native": "Il aime le racing automobile.", + "example_sentence_english": "He likes car racing.", + "pos": "noun", + "word_frequency": 7095 + }, + { + "word": "reconnu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recognized", + "example_sentence_native": "C'est un artiste reconnu internationalement.", + "example_sentence_english": "He is an internationally recognized artist.", + "pos": "adjective", + "word_frequency": 7096 + }, + { + "word": "repoussé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repelled", + "example_sentence_native": "L'attaque a été repoussée.", + "example_sentence_english": "The attack was repelled.", + "pos": "adjective", + "word_frequency": 7097 + }, + { + "word": "réviser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to revise", + "example_sentence_native": "Je dois réviser mes leçons pour l'examen.", + "example_sentence_english": "I need to revise my lessons for the exam.", + "pos": "verb", + "word_frequency": 7099 + }, + { + "word": "scandaleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandalous", + "example_sentence_native": "C'est une situation scandaleuse.", + "example_sentence_english": "It's a scandalous situation.", + "pos": "adjective", + "word_frequency": 7101 + }, + { + "word": "self", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "self-service restaurant", + "example_sentence_native": "On a mangé au self de l'université.", + "example_sentence_english": "We ate at the university's self-service restaurant.", + "pos": "noun", + "word_frequency": 7102 + }, + { + "word": "spirale", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spiral", + "example_sentence_native": "Le chemin monte en spirale.", + "example_sentence_english": "The path goes up in a spiral.", + "pos": "noun", + "word_frequency": 7105 + }, + { + "word": "stocker", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to store", + "example_sentence_native": "Il faut stocker ces produits au frais.", + "example_sentence_english": "These products must be stored in a cool place.", + "pos": "verb", + "word_frequency": 7107 + }, + { + "word": "surf", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surfing", + "example_sentence_native": "Il adore faire du surf.", + "example_sentence_english": "He loves surfing.", + "pos": "noun", + "word_frequency": 7109 + }, + { + "word": "survenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to occur", + "example_sentence_native": "Un problème inattendu est survenu.", + "example_sentence_english": "An unexpected problem occurred.", + "pos": "verb", + "word_frequency": 7110 + }, + { + "word": "tente", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tent", + "example_sentence_native": "Nous avons monté la tente dans le jardin.", + "example_sentence_english": "We set up the tent in the garden.", + "pos": "noun", + "word_frequency": 7111 + }, + { + "word": "trilogie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trilogy", + "example_sentence_native": "C'est le dernier livre de la trilogie.", + "example_sentence_english": "This is the last book of the trilogy.", + "pos": "noun", + "word_frequency": 7112 + }, + { + "word": "tronc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk", + "example_sentence_native": "Le tronc de l'arbre était très épais.", + "example_sentence_english": "The tree trunk was very thick.", + "pos": "noun", + "word_frequency": 7113 + }, + { + "word": "tunisien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Tunisian", + "example_sentence_native": "Il a des origines tunisiennes.", + "example_sentence_english": "He has Tunisian origins.", + "pos": "adjective", + "word_frequency": 7114 + }, + { + "word": "verbal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verbal", + "example_sentence_native": "Il a reçu un avertissement verbal.", + "example_sentence_english": "He received a verbal warning.", + "pos": "adjective", + "word_frequency": 7115 + }, + { + "word": "vestiaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloakroom", + "example_sentence_native": "Laissez vos manteaux au vestiaire.", + "example_sentence_english": "Leave your coats in the cloakroom.", + "pos": "noun", + "word_frequency": 7116 + }, + { + "word": "vieillesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old age", + "example_sentence_native": "La vieillesse est une étape de la vie.", + "example_sentence_english": "Old age is a stage of life.", + "pos": "noun", + "word_frequency": 7117 + }, + { + "word": "visé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "targeted", + "example_sentence_native": "Le public visé est jeune.", + "example_sentence_english": "The targeted audience is young.", + "pos": "adjective", + "word_frequency": 7118 + }, + { + "word": "électro", + "article_with_word": "l’électro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electro (music)", + "example_sentence_native": "J'aime écouter de l'électro quand je travaille.", + "example_sentence_english": "I like listening to electro when I work.", + "pos": "noun", + "word_frequency": 7121 + }, + { + "word": "étouffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suffocate;to stifle", + "example_sentence_native": "La fumée a commencé à l'étouffer.", + "example_sentence_english": "The smoke started to suffocate him.", + "pos": "verb", + "word_frequency": 7122 + }, + { + "word": "acoustique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acoustic", + "example_sentence_native": "La qualité acoustique de la salle est excellente.", + "example_sentence_english": "The acoustic quality of the room is excellent.", + "pos": "adjective", + "word_frequency": 7123 + }, + { + "word": "algorithme", + "article_with_word": "un algorithme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "algorithm", + "example_sentence_native": "L'algorithme de recherche a été mis à jour.", + "example_sentence_english": "The search algorithm has been updated.", + "pos": "noun", + "word_frequency": 7126 + }, + { + "word": "amené", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brought;led (to)", + "example_sentence_native": "La situation a amené des changements importants.", + "example_sentence_english": "The situation has led to significant changes.", + "pos": "adjective", + "word_frequency": 7127 + }, + { + "word": "armoire", + "article_with_word": "une armoire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wardrobe;cupboard", + "example_sentence_native": "J'ai rangé mes vêtements dans l'armoire.", + "example_sentence_english": "I put my clothes away in the wardrobe.", + "pos": "noun", + "word_frequency": 7128 + }, + { + "word": "attendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expected;awaited", + "example_sentence_native": "C'était le résultat attendu.", + "example_sentence_english": "It was the expected result.", + "pos": "adjective", + "word_frequency": 7129 + }, + { + "word": "aucunement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in no way;not at all", + "example_sentence_native": "Je ne suis aucunement d'accord avec cette décision.", + "example_sentence_english": "I am in no way in agreement with this decision.", + "pos": "adverb", + "word_frequency": 7130 + }, + { + "word": "audiovisuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audiovisual", + "example_sentence_native": "Le secteur audiovisuel est en pleine croissance.", + "example_sentence_english": "The audiovisual sector is growing rapidly.", + "pos": "adjective", + "word_frequency": 7131 + }, + { + "word": "avéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proven;confirmed", + "example_sentence_native": "Le fait s'est avéré exact.", + "example_sentence_english": "The fact proved to be accurate.", + "pos": "adjective", + "word_frequency": 7132 + }, + { + "word": "basé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "based", + "example_sentence_native": "Le film est basé sur une histoire vraie.", + "example_sentence_english": "The film is based on a true story.", + "pos": "adjective", + "word_frequency": 7133 + }, + { + "word": "boeuf", + "article_with_word": "le bœuf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beef;ox", + "example_sentence_native": "J'ai commandé un steak de bœuf.", + "example_sentence_english": "I ordered a beef steak.", + "pos": "noun", + "word_frequency": 7138 + }, + { + "word": "bombardement", + "article_with_word": "le bombardement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bombardment", + "example_sentence_native": "La ville a subi un bombardement intense.", + "example_sentence_english": "The city underwent an intense bombardment.", + "pos": "noun", + "word_frequency": 7139 + }, + { + "word": "buffet", + "article_with_word": "le buffet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "buffet (furniture or meal)", + "example_sentence_native": "Nous avons pris le petit-déjeuner au buffet de l'hôtel.", + "example_sentence_english": "We had breakfast at the hotel buffet.", + "pos": "noun", + "word_frequency": 7140 + }, + { + "word": "cadet", + "article_with_word": "le cadet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "younger sibling;junior", + "example_sentence_native": "Mon frère cadet est étudiant.", + "example_sentence_english": "My younger brother is a student.", + "pos": "noun", + "word_frequency": 7142 + }, + { + "word": "catalan", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catalan", + "example_sentence_native": "Il parle couramment le catalan.", + "example_sentence_english": "He speaks Catalan fluently.", + "pos": "adjective", + "word_frequency": 7143 + }, + { + "word": "cerise", + "article_with_word": "la cerise", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cherry", + "example_sentence_native": "J'adore les cerises en été.", + "example_sentence_english": "I love cherries in summer.", + "pos": "noun", + "word_frequency": 7144 + }, + { + "word": "chalet", + "article_with_word": "le chalet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chalet", + "example_sentence_native": "Nous avons loué un chalet à la montagne.", + "example_sentence_english": "We rented a chalet in the mountains.", + "pos": "noun", + "word_frequency": 7145 + }, + { + "word": "chantage", + "article_with_word": "le chantage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackmail", + "example_sentence_native": "Il a été accusé de chantage.", + "example_sentence_english": "He was accused of blackmail.", + "pos": "noun", + "word_frequency": 7146 + }, + { + "word": "chevet", + "article_with_word": "le chevet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bedside;headboard", + "example_sentence_native": "J'ai posé mon livre sur la table de chevet.", + "example_sentence_english": "I put my book on the bedside table.", + "pos": "noun", + "word_frequency": 7148 + }, + { + "word": "chips", + "article_with_word": "les chips", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chips;crisps", + "example_sentence_native": "J'ai acheté un paquet de chips pour l'apéritif.", + "example_sentence_english": "I bought a packet of chips for the aperitif.", + "pos": "noun", + "word_frequency": 7150 + }, + { + "word": "chrome", + "article_with_word": "le chrome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chrome", + "example_sentence_native": "Les pare-chocs de la voiture sont en chrome.", + "example_sentence_english": "The car's bumpers are made of chrome.", + "pos": "noun", + "word_frequency": 7151 + }, + { + "word": "chroniqueur", + "article_with_word": "le chroniqueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "columnist;commentator", + "example_sentence_native": "Le chroniqueur a donné son avis sur l'actualité.", + "example_sentence_english": "The columnist gave his opinion on current events.", + "pos": "noun", + "word_frequency": 7152 + }, + { + "word": "coiffeur", + "article_with_word": "le coiffeur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairdresser", + "example_sentence_native": "Je vais chez le coiffeur demain.", + "example_sentence_english": "I'm going to the hairdresser tomorrow.", + "pos": "noun", + "word_frequency": 7153 + }, + { + "word": "comic", + "article_with_word": "le comic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic (book;strip)", + "example_sentence_native": "J'ai lu un nouveau comic ce week-end.", + "example_sentence_english": "I read a new comic this weekend.", + "pos": "noun", + "word_frequency": 7155 + }, + { + "word": "commentateur", + "article_with_word": "le commentateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commentator", + "example_sentence_native": "Le commentateur sportif a analysé le match.", + "example_sentence_english": "The sports commentator analyzed the match.", + "pos": "noun", + "word_frequency": 7156 + }, + { + "word": "compilation", + "article_with_word": "la compilation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compilation", + "example_sentence_native": "J'écoute une compilation de mes chansons préférées.", + "example_sentence_english": "I'm listening to a compilation of my favorite songs.", + "pos": "noun", + "word_frequency": 7157 + }, + { + "word": "converti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "converted", + "example_sentence_native": "Il est devenu un converti à cette nouvelle religion.", + "example_sentence_english": "He became a convert to this new religion.", + "pos": "adjective", + "word_frequency": 7159 + }, + { + "word": "cordialement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cordially;sincerely", + "example_sentence_native": "Cordialement, je vous envoie mes meilleures salutations.", + "example_sentence_english": "Cordially, I send you my best regards.", + "pos": "adverb", + "word_frequency": 7160 + }, + { + "word": "coulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cast;sunk", + "example_sentence_native": "Le métal coulé est très résistant.", + "example_sentence_english": "The cast metal is very resistant.", + "pos": "adjective", + "word_frequency": 7161 + }, + { + "word": "décollage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "takeoff", + "example_sentence_native": "Le décollage de l'avion a été retardé.", + "example_sentence_english": "The plane's takeoff was delayed.", + "pos": "noun", + "word_frequency": 7165 + }, + { + "word": "décoré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorated", + "example_sentence_native": "La salle était magnifiquement décorée pour la fête.", + "example_sentence_english": "The room was beautifully decorated for the party.", + "pos": "adjective", + "word_frequency": 7166 + }, + { + "word": "découler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stem from;to result from", + "example_sentence_native": "Cette décision découle de nos discussions précédentes.", + "example_sentence_english": "This decision stems from our previous discussions.", + "pos": "verb", + "word_frequency": 7167 + }, + { + "word": "déduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deduce;to subtract", + "example_sentence_native": "On peut déduire cette conclusion des faits présentés.", + "example_sentence_english": "We can deduce this conclusion from the facts presented.", + "pos": "verb", + "word_frequency": 7168 + }, + { + "word": "défensif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defensive", + "example_sentence_native": "Son attitude était très défensive face aux critiques.", + "example_sentence_english": "His attitude was very defensive in the face of criticism.", + "pos": "adjective", + "word_frequency": 7169 + }, + { + "word": "déployer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deploy;to unfold", + "example_sentence_native": "L'armée va déployer de nouvelles troupes.", + "example_sentence_english": "The army will deploy new troops.", + "pos": "verb", + "word_frequency": 7170 + }, + { + "word": "embaucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hire;to employ", + "example_sentence_native": "L'entreprise prévoit d'embaucher de nouveaux employés.", + "example_sentence_english": "The company plans to hire new employees.", + "pos": "verb", + "word_frequency": 7174 + }, + { + "word": "enseigne", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign;brand", + "example_sentence_native": "L'enseigne du magasin est très visible.", + "example_sentence_english": "The shop sign is very visible.", + "pos": "noun", + "word_frequency": 7176 + }, + { + "word": "episode", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "episode", + "example_sentence_native": "J'ai regardé le dernier épisode de ma série préférée.", + "example_sentence_english": "I watched the last episode of my favorite series.", + "pos": "noun", + "word_frequency": 7177 + }, + { + "word": "fatal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatal;deadly", + "example_sentence_native": "L'accident a eu des conséquences fatales.", + "example_sentence_english": "The accident had fatal consequences.", + "pos": "adjective", + "word_frequency": 7178 + }, + { + "word": "fisc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax authorities;treasury", + "example_sentence_native": "Le fisc a envoyé un avis d'imposition.", + "example_sentence_english": "The tax authorities sent a tax notice.", + "pos": "noun", + "word_frequency": 7180 + }, + { + "word": "focus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focus", + "example_sentence_native": "Il faut garder le focus sur nos objectifs.", + "example_sentence_english": "We must keep the focus on our objectives.", + "pos": "noun", + "word_frequency": 7182 + }, + { + "word": "fourniture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supply;provision", + "example_sentence_native": "Nous avons besoin de nouvelles fournitures de bureau.", + "example_sentence_english": "We need new office supplies.", + "pos": "noun", + "word_frequency": 7183 + }, + { + "word": "félicité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bliss;felicity", + "example_sentence_native": "Elle a trouvé la félicité dans la nature.", + "example_sentence_english": "She found bliss in nature.", + "pos": "noun", + "word_frequency": 7184 + }, + { + "word": "gout", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taste;flavor", + "example_sentence_native": "J'aime le goût de ce chocolat.", + "example_sentence_english": "I like the taste of this chocolate.", + "pos": "noun", + "word_frequency": 7187 + }, + { + "word": "générateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generator", + "example_sentence_native": "Le générateur fournit de l'électricité en cas de panne.", + "example_sentence_english": "The generator provides electricity in case of a power outage.", + "pos": "noun", + "word_frequency": 7188 + }, + { + "word": "hache", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "axe;hatchet", + "example_sentence_native": "Il a coupé du bois avec une hache.", + "example_sentence_english": "He cut wood with an axe.", + "pos": "noun", + "word_frequency": 7189 + }, + { + "word": "hardcore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hardcore;extreme", + "example_sentence_native": "C'est un fan hardcore de ce groupe de musique.", + "example_sentence_english": "He is a hardcore fan of this music band.", + "pos": "adjective", + "word_frequency": 7190 + }, + { + "word": "impunité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impunity", + "example_sentence_native": "Il est important de lutter contre l'impunité des criminels.", + "example_sentence_english": "It is important to fight against the impunity of criminals.", + "pos": "noun", + "word_frequency": 7191 + }, + { + "word": "individuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individually", + "example_sentence_native": "Chaque élève doit travailler individuellement sur son projet.", + "example_sentence_english": "Each student must work individually on their project.", + "pos": "adverb", + "word_frequency": 7192 + }, + { + "word": "initiation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiation;introduction", + "example_sentence_native": "C'est une initiation au monde de la programmation.", + "example_sentence_english": "It's an initiation to the world of programming.", + "pos": "noun", + "word_frequency": 7193 + }, + { + "word": "insérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insert", + "example_sentence_native": "Veuillez insérer votre carte dans la fente.", + "example_sentence_english": "Please insert your card into the slot.", + "pos": "verb", + "word_frequency": 7194 + }, + { + "word": "juré", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "juror;sworn member", + "example_sentence_native": "Le juré a rendu son verdict.", + "example_sentence_english": "The juror delivered his verdict.", + "pos": "noun", + "word_frequency": 7195 + }, + { + "word": "magicien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magician", + "example_sentence_native": "Le magicien a fait disparaître la carte.", + "example_sentence_english": "The magician made the card disappear.", + "pos": "noun", + "word_frequency": 7198 + }, + { + "word": "mentionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentioned", + "example_sentence_native": "Le problème a été mentionné dans le rapport.", + "example_sentence_english": "The problem was mentioned in the report.", + "pos": "adjective", + "word_frequency": 7200 + }, + { + "word": "messager", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messenger", + "example_sentence_native": "Le messager a apporté de bonnes nouvelles.", + "example_sentence_english": "The messenger brought good news.", + "pos": "noun", + "word_frequency": 7202 + }, + { + "word": "minier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mining", + "example_sentence_native": "L'industrie minière est importante dans cette région.", + "example_sentence_english": "The mining industry is important in this region.", + "pos": "adjective", + "word_frequency": 7203 + }, + { + "word": "mutuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutually", + "example_sentence_native": "Ils se sont aidés mutuellement.", + "example_sentence_english": "They helped each other mutually.", + "pos": "adverb", + "word_frequency": 7205 + }, + { + "word": "nourri", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fed", + "example_sentence_native": "L'enfant est bien nourri.", + "example_sentence_english": "The child is well fed.", + "pos": "adjective", + "word_frequency": 7208 + }, + { + "word": "nœud", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knot", + "example_sentence_native": "Il a fait un nœud dans la corde.", + "example_sentence_english": "He made a knot in the rope.", + "pos": "noun", + "word_frequency": 7209 + }, + { + "word": "objection", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objection", + "example_sentence_native": "Il n'y a aucune objection à cette proposition.", + "example_sentence_english": "There is no objection to this proposal.", + "pos": "noun", + "word_frequency": 7210 + }, + { + "word": "orgue", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organ", + "example_sentence_native": "L'orgue de l'église est très ancien.", + "example_sentence_english": "The church organ is very old.", + "pos": "noun", + "word_frequency": 7211 + }, + { + "word": "orgueil", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pride", + "example_sentence_native": "Son orgueil l'a empêché de demander de l'aide.", + "example_sentence_english": "His pride prevented him from asking for help.", + "pos": "noun", + "word_frequency": 7212 + }, + { + "word": "oublié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forgotten", + "example_sentence_native": "C'est un souvenir oublié.", + "example_sentence_english": "It's a forgotten memory.", + "pos": "adjective", + "word_frequency": 7213 + }, + { + "word": "pertinent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevant", + "example_sentence_native": "Votre question est très pertinente.", + "example_sentence_english": "Your question is very pertinent.", + "pos": "adjective", + "word_frequency": 7215 + }, + { + "word": "posé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composed", + "example_sentence_native": "Il a une attitude très posée.", + "example_sentence_english": "He has a very composed attitude.", + "pos": "adjective", + "word_frequency": 7217 + }, + { + "word": "providence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providence", + "example_sentence_native": "C'est un coup de la providence.", + "example_sentence_english": "It's an act of providence.", + "pos": "noun", + "word_frequency": 7218 + }, + { + "word": "prévisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predictable", + "example_sentence_native": "La situation est devenue prévisible.", + "example_sentence_english": "The situation became predictable.", + "pos": "adjective", + "word_frequency": 7219 + }, + { + "word": "psychanalyse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychoanalysis", + "example_sentence_native": "La psychanalyse est une méthode thérapeutique.", + "example_sentence_english": "Psychoanalysis is a therapeutic method.", + "pos": "noun", + "word_frequency": 7220 + }, + { + "word": "pété", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broken", + "example_sentence_native": "Mon téléphone est pété.", + "example_sentence_english": "My phone is broken.", + "pos": "adjective", + "word_frequency": 7221 + }, + { + "word": "quinquennat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "five-year term", + "example_sentence_native": "Le président a terminé son quinquennat.", + "example_sentence_english": "The president finished his five-year term.", + "pos": "noun", + "word_frequency": 7222 + }, + { + "word": "redressement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recovery", + "example_sentence_native": "L'entreprise est en phase de redressement.", + "example_sentence_english": "The company is in a recovery phase.", + "pos": "noun", + "word_frequency": 7224 + }, + { + "word": "relié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "linked", + "example_sentence_native": "Ces deux événements sont étroitement reliés.", + "example_sentence_english": "These two events are closely linked.", + "pos": "adjective", + "word_frequency": 7225 + }, + { + "word": "retiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secluded", + "example_sentence_native": "Il vit dans un endroit très retiré.", + "example_sentence_english": "He lives in a very secluded place.", + "pos": "adjective", + "word_frequency": 7226 + }, + { + "word": "rigoureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigorous", + "example_sentence_native": "Il faut une analyse rigoureuse des données.", + "example_sentence_english": "A rigorous analysis of the data is needed.", + "pos": "adjective", + "word_frequency": 7227 + }, + { + "word": "rivalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rivalry", + "example_sentence_native": "Il y a une forte rivalité entre les deux équipes.", + "example_sentence_english": "There is a strong rivalry between the two teams.", + "pos": "noun", + "word_frequency": 7228 + }, + { + "word": "roulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rolled", + "example_sentence_native": "Le tapis était roulé.", + "example_sentence_english": "The carpet was rolled.", + "pos": "adjective", + "word_frequency": 7229 + }, + { + "word": "récompensé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rewarded", + "example_sentence_native": "Son travail a été récompensé.", + "example_sentence_english": "His work was rewarded.", + "pos": "adjective", + "word_frequency": 7230 + }, + { + "word": "surcroît", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess", + "example_sentence_native": "Cela a causé un surcroît de travail.", + "example_sentence_english": "This caused an excess of work.", + "pos": "noun", + "word_frequency": 7231 + }, + { + "word": "switch", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "switch", + "example_sentence_native": "J'ai acheté une nouvelle Nintendo Switch.", + "example_sentence_english": "I bought a new Nintendo Switch.", + "pos": "noun", + "word_frequency": 7232 + }, + { + "word": "tank", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tank", + "example_sentence_native": "Le char d'assaut, ou tank, est une machine de guerre.", + "example_sentence_english": "The tank is a war machine.", + "pos": "noun", + "word_frequency": 7233 + }, + { + "word": "traître", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traitor", + "example_sentence_native": "Il a été traité de traître.", + "example_sentence_english": "He was called a traitor.", + "pos": "noun", + "word_frequency": 7236 + }, + { + "word": "ultérieurement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsequently", + "example_sentence_native": "Nous discuterons de cela ultérieurement.", + "example_sentence_english": "We will discuss this subsequently.", + "pos": "adverb", + "word_frequency": 7238 + }, + { + "word": "usure", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wear and tear", + "example_sentence_native": "Il y a des signes d'usure sur les pneus.", + "example_sentence_english": "There are signs of wear and tear on the tires.", + "pos": "noun", + "word_frequency": 7239 + }, + { + "word": "zen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zen;calm", + "example_sentence_native": "Il est toujours très zen, même sous pression.", + "example_sentence_english": "He is always very calm, even under pressure.", + "pos": "adjective", + "word_frequency": 7244 + }, + { + "word": "échéant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "due;if applicable", + "example_sentence_native": "Le cas échéant, nous vous contacterons.", + "example_sentence_english": "If applicable, we will contact you.", + "pos": "adjective", + "word_frequency": 7246 + }, + { + "word": "éprouver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to feel;to experience", + "example_sentence_native": "Elle éprouve une grande joie.", + "example_sentence_english": "She feels great joy.", + "pos": "verb", + "word_frequency": 7247 + }, + { + "word": "agneau", + "article_with_word": "un agneau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lamb", + "example_sentence_native": "L'agneau est un animal doux.", + "example_sentence_english": "The lamb is a gentle animal.", + "pos": "noun", + "word_frequency": 7248 + }, + { + "word": "agrément", + "article_with_word": "un agrément", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approval;pleasure", + "example_sentence_native": "Nous avons obtenu l'agrément nécessaire pour le projet.", + "example_sentence_english": "We obtained the necessary approval for the project.", + "pos": "noun", + "word_frequency": 7249 + }, + { + "word": "amas", + "article_with_word": "un amas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heap;pile;cluster", + "example_sentence_native": "Il y avait un amas de livres sur la table.", + "example_sentence_english": "There was a heap of books on the table.", + "pos": "noun", + "word_frequency": 7250 + }, + { + "word": "analogie", + "article_with_word": "une analogie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analogy", + "example_sentence_native": "Il a fait une analogie intéressante entre les deux situations.", + "example_sentence_english": "He made an interesting analogy between the two situations.", + "pos": "noun", + "word_frequency": 7251 + }, + { + "word": "appelé", + "article_with_word": "un appelé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscript;draftee", + "example_sentence_native": "Les appelés devaient servir un an dans l'armée.", + "example_sentence_english": "The conscripts had to serve one year in the army.", + "pos": "noun", + "word_frequency": 7253 + }, + { + "word": "artère", + "article_with_word": "une artère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artery", + "example_sentence_native": "L'aorte est la plus grande artère du corps.", + "example_sentence_english": "The aorta is the largest artery in the body.", + "pos": "noun", + "word_frequency": 7254 + }, + { + "word": "aurore", + "article_with_word": "l'aurore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dawn;aurora", + "example_sentence_native": "Nous sommes partis à l'aurore.", + "example_sentence_english": "We left at dawn.", + "pos": "noun", + "word_frequency": 7255 + }, + { + "word": "autrichien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Austrian", + "example_sentence_native": "Il est de nationalité autrichienne.", + "example_sentence_english": "He is of Austrian nationality.", + "pos": "adjective", + "word_frequency": 7256 + }, + { + "word": "baignoire", + "article_with_word": "une baignoire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathtub", + "example_sentence_native": "J'aime me détendre dans ma baignoire.", + "example_sentence_english": "I like to relax in my bathtub.", + "pos": "noun", + "word_frequency": 7257 + }, + { + "word": "brasserie", + "article_with_word": "une brasserie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brewery;brasserie (restaurant)", + "example_sentence_native": "Nous avons déjeuné dans une brasserie typique.", + "example_sentence_english": "We had lunch in a typical brasserie.", + "pos": "noun", + "word_frequency": 7259 + }, + { + "word": "calorie", + "article_with_word": "une calorie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calorie", + "example_sentence_native": "Il faut compter les calories pour perdre du poids.", + "example_sentence_english": "You have to count calories to lose weight.", + "pos": "noun", + "word_frequency": 7260 + }, + { + "word": "capitaliste", + "article_with_word": "un capitaliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalist", + "example_sentence_native": "Les capitalistes investissent dans les entreprises.", + "example_sentence_english": "Capitalists invest in businesses.", + "pos": "noun", + "word_frequency": 7261 + }, + { + "word": "capteur", + "article_with_word": "un capteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensor;detector", + "example_sentence_native": "Le capteur de mouvement a détecté une présence.", + "example_sentence_english": "The motion sensor detected a presence.", + "pos": "noun", + "word_frequency": 7262 + }, + { + "word": "cdd", + "article_with_word": "un CDD", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fixed-term contract", + "example_sentence_native": "J'ai signé un CDD de six mois.", + "example_sentence_english": "I signed a six-month fixed-term contract.", + "pos": "noun", + "word_frequency": 7265 + }, + { + "word": "chronologie", + "article_with_word": "une chronologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronology", + "example_sentence_native": "La chronologie des événements est importante.", + "example_sentence_english": "The chronology of events is important.", + "pos": "noun", + "word_frequency": 7266 + }, + { + "word": "commis", + "article_with_word": "un commis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clerk;assistant;junior chef", + "example_sentence_native": "Il a commencé comme commis de cuisine.", + "example_sentence_english": "He started as a junior chef.", + "pos": "noun", + "word_frequency": 7267 + }, + { + "word": "communion", + "article_with_word": "une communion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communion;fellowship", + "example_sentence_native": "Ils ont célébré la première communion de leur enfant.", + "example_sentence_english": "They celebrated their child's first communion.", + "pos": "noun", + "word_frequency": 7268 + }, + { + "word": "condoléance", + "article_with_word": "une condoléance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condolence", + "example_sentence_native": "J'ai présenté mes sincères condoléances à la famille.", + "example_sentence_english": "I offered my sincere condolences to the family.", + "pos": "noun", + "word_frequency": 7269 + }, + { + "word": "conspiration", + "article_with_word": "une conspiration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspiracy", + "example_sentence_native": "Il croit à une grande conspiration mondiale.", + "example_sentence_english": "He believes in a great global conspiracy.", + "pos": "noun", + "word_frequency": 7270 + }, + { + "word": "coquille", + "article_with_word": "une coquille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shell;typo", + "example_sentence_native": "J'ai trouvé une coquille dans mon texte.", + "example_sentence_english": "I found a typo in my text.", + "pos": "noun", + "word_frequency": 7271 + }, + { + "word": "corpus", + "article_with_word": "un corpus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpus", + "example_sentence_native": "Le linguiste a analysé un grand corpus de textes.", + "example_sentence_english": "The linguist analyzed a large corpus of texts.", + "pos": "noun", + "word_frequency": 7272 + }, + { + "word": "créatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creative", + "example_sentence_native": "C'est une personne très créative.", + "example_sentence_english": "She is a very creative person.", + "pos": "adjective", + "word_frequency": 7273 + }, + { + "word": "cuisinier", + "article_with_word": "un cuisinier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cook;chef", + "example_sentence_native": "Le cuisinier prépare un délicieux repas.", + "example_sentence_english": "The cook is preparing a delicious meal.", + "pos": "noun", + "word_frequency": 7274 + }, + { + "word": "dynamisme", + "article_with_word": "le dynamisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamism;energy", + "example_sentence_native": "Son dynamisme est contagieux.", + "example_sentence_english": "His dynamism is contagious.", + "pos": "noun", + "word_frequency": 7278 + }, + { + "word": "déconner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess around;to joke;to screw up", + "example_sentence_native": "Arrête de déconner et sois sérieux !", + "example_sentence_english": "Stop messing around and be serious!", + "pos": "verb", + "word_frequency": 7279 + }, + { + "word": "délivrance", + "article_with_word": "la délivrance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliverance;release", + "example_sentence_native": "La délivrance est venue après des années de lutte.", + "example_sentence_english": "Deliverance came after years of struggle.", + "pos": "noun", + "word_frequency": 7280 + }, + { + "word": "désigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designated;appointed", + "example_sentence_native": "Il est le représentant désigné de l'équipe.", + "example_sentence_english": "He is the designated representative of the team.", + "pos": "adjective", + "word_frequency": 7281 + }, + { + "word": "effrayant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frightening;scary", + "example_sentence_native": "Ce film était vraiment effrayant.", + "example_sentence_english": "This movie was really frightening.", + "pos": "adjective", + "word_frequency": 7283 + }, + { + "word": "emballage", + "article_with_word": "l'emballage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "packaging;wrapping", + "example_sentence_native": "L'emballage du produit est recyclable.", + "example_sentence_english": "The product's packaging is recyclable.", + "pos": "noun", + "word_frequency": 7284 + }, + { + "word": "encadrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to frame;to supervise", + "example_sentence_native": "Il faut encadrer cette photo.", + "example_sentence_english": "This photo needs to be framed.", + "pos": "verb", + "word_frequency": 7285 + }, + { + "word": "engrais", + "article_with_word": "l'engrais", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertilizer", + "example_sentence_native": "L'agriculteur utilise de l'engrais pour ses cultures.", + "example_sentence_english": "The farmer uses fertilizer for his crops.", + "pos": "noun", + "word_frequency": 7286 + }, + { + "word": "escale", + "article_with_word": "l'escale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stopover;layover", + "example_sentence_native": "Nous avons fait une escale à Dubaï.", + "example_sentence_english": "We had a stopover in Dubai.", + "pos": "noun", + "word_frequency": 7287 + }, + { + "word": "fashion", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fashionable;trendy", + "example_sentence_native": "C'est une nouvelle tendance fashion.", + "example_sentence_english": "It's a new fashion trend.", + "pos": "adjective", + "word_frequency": 7288 + }, + { + "word": "fiabilité", + "article_with_word": "la fiabilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliability;trustworthiness", + "example_sentence_native": "La fiabilité de ce système est excellente.", + "example_sentence_english": "The reliability of this system is excellent.", + "pos": "noun", + "word_frequency": 7289 + }, + { + "word": "fictif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fictitious;fictional", + "example_sentence_native": "C'est un personnage fictif.", + "example_sentence_english": "It's a fictitious character.", + "pos": "adjective", + "word_frequency": 7290 + }, + { + "word": "flipper", + "article_with_word": "le flipper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pinball machine", + "example_sentence_native": "Il y a un vieux flipper dans le bar.", + "example_sentence_english": "There's an old pinball machine in the bar.", + "pos": "noun", + "word_frequency": 7291 + }, + { + "word": "fonctionnalité", + "article_with_word": "la fonctionnalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functionality;feature", + "example_sentence_native": "Cette nouvelle fonctionnalité est très utile.", + "example_sentence_english": "This new feature is very useful.", + "pos": "noun", + "word_frequency": 7293 + }, + { + "word": "formel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formal", + "example_sentence_native": "C'est une invitation formelle.", + "example_sentence_english": "It's a formal invitation.", + "pos": "adjective", + "word_frequency": 7294 + }, + { + "word": "fouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to search;to rummage", + "example_sentence_native": "Il a fouillé dans ses poches.", + "example_sentence_english": "He rummaged in his pockets.", + "pos": "verb", + "word_frequency": 7295 + }, + { + "word": "fourrure", + "article_with_word": "la fourrure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fur", + "example_sentence_native": "Le manteau est en fausse fourrure.", + "example_sentence_english": "The coat is made of fake fur.", + "pos": "noun", + "word_frequency": 7296 + }, + { + "word": "haleine", + "article_with_word": "l'haleine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath", + "example_sentence_native": "Il a une mauvaise haleine.", + "example_sentence_english": "He has bad breath.", + "pos": "noun", + "word_frequency": 7298 + }, + { + "word": "hostilité", + "article_with_word": "l'hostilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostility", + "example_sentence_native": "Il y avait une certaine hostilité dans l'air.", + "example_sentence_english": "There was a certain hostility in the air.", + "pos": "noun", + "word_frequency": 7301 + }, + { + "word": "karma", + "article_with_word": "le karma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "karma", + "example_sentence_native": "Je crois au bon karma.", + "example_sentence_english": "I believe in good karma.", + "pos": "noun", + "word_frequency": 7304 + }, + { + "word": "lanceur", + "article_with_word": "le lanceur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launcher;pitcher (baseball)", + "example_sentence_native": "Le lanceur a réussi un bon coup.", + "example_sentence_english": "The pitcher made a good throw.", + "pos": "noun", + "word_frequency": 7305 + }, + { + "word": "localiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to locate;to localize", + "example_sentence_native": "Nous devons localiser le problème.", + "example_sentence_english": "We need to locate the problem.", + "pos": "verb", + "word_frequency": 7306 + }, + { + "word": "logis", + "article_with_word": "le logis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dwelling;abode", + "example_sentence_native": "Il est rentré à son logis.", + "example_sentence_english": "He returned to his dwelling.", + "pos": "noun", + "word_frequency": 7307 + }, + { + "word": "martyr", + "article_with_word": "le martyr", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "martyr", + "example_sentence_native": "Il est mort en martyr pour sa foi.", + "example_sentence_english": "He died as a martyr for his faith.", + "pos": "noun", + "word_frequency": 7311 + }, + { + "word": "metteur", + "article_with_word": "le metteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setter;placer (often in compounds like 'director')", + "example_sentence_native": "Le metteur en scène a dirigé la pièce.", + "example_sentence_english": "The director directed the play.", + "pos": "noun", + "word_frequency": 7313 + }, + { + "word": "minimal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minimal", + "example_sentence_native": "Nous avons besoin d'un effort minimal.", + "example_sentence_english": "We need a minimal effort.", + "pos": "adjective", + "word_frequency": 7314 + }, + { + "word": "ml", + "article_with_word": "le ml", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ml (milliliter)", + "example_sentence_native": "Ajoutez 50 ml d'eau.", + "example_sentence_english": "Add 50 ml of water.", + "pos": "noun", + "word_frequency": 7315 + }, + { + "word": "muni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provided with;equipped with", + "example_sentence_native": "Il est muni d'un permis de conduire.", + "example_sentence_english": "He is provided with a driver's license.", + "pos": "adjective", + "word_frequency": 7317 + }, + { + "word": "naïf", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "naive", + "example_sentence_native": "Elle est un peu naïve.", + "example_sentence_english": "She is a bit naive.", + "pos": "adjective", + "word_frequency": 7318 + }, + { + "word": "nuque", + "article_with_word": "la nuque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nape of the neck", + "example_sentence_native": "Il a mal à la nuque.", + "example_sentence_english": "He has a pain in his nape.", + "pos": "noun", + "word_frequency": 7319 + }, + { + "word": "négligence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligence", + "example_sentence_native": "Sa négligence a causé de graves problèmes.", + "example_sentence_english": "His negligence caused serious problems.", + "pos": "noun", + "word_frequency": 7320 + }, + { + "word": "panama", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panama hat", + "example_sentence_native": "Il portait un élégant panama.", + "example_sentence_english": "He was wearing an elegant panama hat.", + "pos": "noun", + "word_frequency": 7321 + }, + { + "word": "pelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shovel", + "example_sentence_native": "J'ai besoin d'une pelle pour jardiner.", + "example_sentence_english": "I need a shovel for gardening.", + "pos": "noun", + "word_frequency": 7322 + }, + { + "word": "pigeon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pigeon", + "example_sentence_native": "Un pigeon s'est posé sur le rebord de la fenêtre.", + "example_sentence_english": "A pigeon landed on the windowsill.", + "pos": "noun", + "word_frequency": 7324 + }, + { + "word": "pince", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pliers", + "example_sentence_native": "J'ai utilisé une pince pour retirer le clou.", + "example_sentence_english": "I used pliers to remove the nail.", + "pos": "noun", + "word_frequency": 7325 + }, + { + "word": "politesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politeness", + "example_sentence_native": "La politesse est essentielle dans les interactions sociales.", + "example_sentence_english": "Politeness is essential in social interactions.", + "pos": "noun", + "word_frequency": 7326 + }, + { + "word": "prioritaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priority", + "example_sentence_native": "Cette tâche est prioritaire.", + "example_sentence_english": "This task is a priority.", + "pos": "adjective", + "word_frequency": 7327 + }, + { + "word": "prédire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to predict", + "example_sentence_native": "Il est difficile de prédire l'avenir.", + "example_sentence_english": "It is difficult to predict the future.", + "pos": "verb", + "word_frequency": 7328 + }, + { + "word": "pudeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "modesty", + "example_sentence_native": "Elle a parlé de ses sentiments avec pudeur.", + "example_sentence_english": "She spoke of her feelings with modesty.", + "pos": "noun", + "word_frequency": 7329 + }, + { + "word": "pureté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purity", + "example_sentence_native": "La pureté de l'eau est essentielle.", + "example_sentence_english": "The purity of the water is essential.", + "pos": "noun", + "word_frequency": 7330 + }, + { + "word": "raisin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grape", + "example_sentence_native": "J'aime manger du raisin.", + "example_sentence_english": "I like to eat grapes.", + "pos": "noun", + "word_frequency": 7332 + }, + { + "word": "rallier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rally", + "example_sentence_native": "Ils ont réussi à rallier les troupes.", + "example_sentence_english": "They managed to rally the troops.", + "pos": "verb", + "word_frequency": 7333 + }, + { + "word": "recteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rector", + "example_sentence_native": "Le recteur de l'université a prononcé un discours.", + "example_sentence_english": "The university rector gave a speech.", + "pos": "noun", + "word_frequency": 7335 + }, + { + "word": "round", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "round", + "example_sentence_native": "Le boxeur a gagné au premier round.", + "example_sentence_english": "The boxer won in the first round.", + "pos": "noun", + "word_frequency": 7337 + }, + { + "word": "réservation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reservation", + "example_sentence_native": "J'ai fait une réservation pour le dîner.", + "example_sentence_english": "I made a reservation for dinner.", + "pos": "noun", + "word_frequency": 7338 + }, + { + "word": "sacre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coronation", + "example_sentence_native": "Le sacre du roi a eu lieu dans la cathédrale.", + "example_sentence_english": "The king's coronation took place in the cathedral.", + "pos": "noun", + "word_frequency": 7339 + }, + { + "word": "saxon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saxon", + "example_sentence_native": "Les Saxons étaient un peuple germanique.", + "example_sentence_english": "The Saxons were a Germanic people.", + "pos": "noun", + "word_frequency": 7340 + }, + { + "word": "scénariste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screenwriter", + "example_sentence_native": "Le scénariste a écrit un excellent script.", + "example_sentence_english": "The screenwriter wrote an excellent script.", + "pos": "noun", + "word_frequency": 7341 + }, + { + "word": "sensibiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise awareness", + "example_sentence_native": "Il faut sensibiliser le public à ce problème.", + "example_sentence_english": "We need to raise public awareness about this issue.", + "pos": "verb", + "word_frequency": 7342 + }, + { + "word": "sensé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensible", + "example_sentence_native": "C'est une décision sensée.", + "example_sentence_english": "It's a sensible decision.", + "pos": "adjective", + "word_frequency": 7343 + }, + { + "word": "souffler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to blow", + "example_sentence_native": "Il a soufflé les bougies d'anniversaire.", + "example_sentence_english": "He blew out the birthday candles.", + "pos": "verb", + "word_frequency": 7346 + }, + { + "word": "succéder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to succeed", + "example_sentence_native": "Qui va succéder au président ?", + "example_sentence_english": "Who will succeed the president?", + "pos": "verb", + "word_frequency": 7348 + }, + { + "word": "sucré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweet", + "example_sentence_native": "J'aime le thé sucré.", + "example_sentence_english": "I like sweet tea.", + "pos": "adjective", + "word_frequency": 7349 + }, + { + "word": "suspendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspended", + "example_sentence_native": "Le pont suspendu offre une vue magnifique.", + "example_sentence_english": "The suspended bridge offers a magnificent view.", + "pos": "adjective", + "word_frequency": 7351 + }, + { + "word": "tardif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "late", + "example_sentence_native": "C'est un développement tardif.", + "example_sentence_english": "It's a late development.", + "pos": "adjective", + "word_frequency": 7352 + }, + { + "word": "terroir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terroir", + "example_sentence_native": "Ce vin exprime bien le terroir de la région.", + "example_sentence_english": "This wine truly expresses the terroir of the region.", + "pos": "noun", + "word_frequency": 7353 + }, + { + "word": "thriller", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thriller", + "example_sentence_native": "J'ai regardé un excellent thriller hier soir.", + "example_sentence_english": "I watched an excellent thriller last night.", + "pos": "noun", + "word_frequency": 7354 + }, + { + "word": "tiroir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawer", + "example_sentence_native": "Mets tes chaussettes dans le tiroir.", + "example_sentence_english": "Put your socks in the drawer.", + "pos": "noun", + "word_frequency": 7355 + }, + { + "word": "traction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traction", + "example_sentence_native": "La voiture a une bonne traction sur la neige.", + "example_sentence_english": "The car has good traction on snow.", + "pos": "noun", + "word_frequency": 7357 + }, + { + "word": "veau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calf", + "example_sentence_native": "Le veau est un jeune bovin.", + "example_sentence_english": "The calf is a young bovine.", + "pos": "noun", + "word_frequency": 7360 + }, + { + "word": "vulnérable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulnerable", + "example_sentence_native": "Il est très vulnérable aux critiques.", + "example_sentence_english": "He is very vulnerable to criticism.", + "pos": "adjective", + "word_frequency": 7361 + }, + { + "word": "wagon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wagon;carriage", + "example_sentence_native": "Le train a plusieurs wagons.", + "example_sentence_english": "The train has several carriages.", + "pos": "noun", + "word_frequency": 7362 + }, + { + "word": "équilibrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to balance", + "example_sentence_native": "Il faut équilibrer son alimentation.", + "example_sentence_english": "You need to balance your diet.", + "pos": "verb", + "word_frequency": 7363 + }, + { + "word": "éruption", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eruption;rash", + "example_sentence_native": "L'éruption volcanique a causé des dégâts.", + "example_sentence_english": "The volcanic eruption caused damage.", + "pos": "noun", + "word_frequency": 7364 + }, + { + "word": "absorber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to absorb", + "example_sentence_native": "L'éponge peut absorber beaucoup d'eau.", + "example_sentence_english": "The sponge can absorb a lot of water.", + "pos": "verb", + "word_frequency": 7365 + }, + { + "word": "activer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to activate", + "example_sentence_native": "Vous devez activer votre compte en ligne.", + "example_sentence_english": "You must activate your online account.", + "pos": "verb", + "word_frequency": 7366 + }, + { + "word": "after", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "after-party", + "example_sentence_native": "On va faire un after après le concert.", + "example_sentence_english": "We're going to have an after-party after the concert.", + "pos": "noun", + "word_frequency": 7367 + }, + { + "word": "agitation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agitation;unrest", + "example_sentence_native": "Il y a une certaine agitation dans la foule.", + "example_sentence_english": "There is some agitation in the crowd.", + "pos": "noun", + "word_frequency": 7368 + }, + { + "word": "anglophone", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "English-speaking", + "example_sentence_native": "C'est une région majoritairement anglophone.", + "example_sentence_english": "It's a predominantly English-speaking region.", + "pos": "adjective", + "word_frequency": 7370 + }, + { + "word": "autoritaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authoritarian", + "example_sentence_native": "Son style de gestion est très autoritaire.", + "example_sentence_english": "His management style is very authoritarian.", + "pos": "adjective", + "word_frequency": 7372 + }, + { + "word": "avatar", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avatar", + "example_sentence_native": "Créez votre avatar pour le jeu.", + "example_sentence_english": "Create your avatar for the game.", + "pos": "noun", + "word_frequency": 7373 + }, + { + "word": "aveu", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confession;admission", + "example_sentence_native": "Son aveu a surpris tout le monde.", + "example_sentence_english": "His confession surprised everyone.", + "pos": "noun", + "word_frequency": 7374 + }, + { + "word": "bombardier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bomber (aircraft);bombardier (person)", + "example_sentence_native": "Le bombardier a survolé la zone.", + "example_sentence_english": "The bomber flew over the area.", + "pos": "noun", + "word_frequency": 7377 + }, + { + "word": "boulet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannonball;burden (slang)", + "example_sentence_native": "Il traîne ce problème comme un boulet.", + "example_sentence_english": "He drags this problem around like a burden.", + "pos": "noun", + "word_frequency": 7378 + }, + { + "word": "brancher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plug in;to connect", + "example_sentence_native": "N'oubliez pas de brancher votre téléphone.", + "example_sentence_english": "Don't forget to plug in your phone.", + "pos": "verb", + "word_frequency": 7379 + }, + { + "word": "buisson", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bush", + "example_sentence_native": "L'oiseau s'est caché dans le buisson.", + "example_sentence_english": "The bird hid in the bush.", + "pos": "noun", + "word_frequency": 7380 + }, + { + "word": "carotte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "carrot", + "example_sentence_native": "J'aime manger des carottes crues.", + "example_sentence_english": "I like to eat raw carrots.", + "pos": "noun", + "word_frequency": 7382 + }, + { + "word": "coffret", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box set;small box", + "example_sentence_native": "J'ai acheté un coffret de DVD.", + "example_sentence_english": "I bought a DVD box set.", + "pos": "noun", + "word_frequency": 7386 + }, + { + "word": "cola", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cola", + "example_sentence_native": "Je voudrais un verre de cola, s'il vous plaît.", + "example_sentence_english": "I would like a glass of cola, please.", + "pos": "noun", + "word_frequency": 7387 + }, + { + "word": "compression", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compression", + "example_sentence_native": "La compression des données réduit la taille du fichier.", + "example_sentence_english": "Data compression reduces the file size.", + "pos": "noun", + "word_frequency": 7389 + }, + { + "word": "dessinateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designer;draftsman;cartoonist", + "example_sentence_native": "Le dessinateur a créé de beaux personnages.", + "example_sentence_english": "The designer created beautiful characters.", + "pos": "noun", + "word_frequency": 7391 + }, + { + "word": "dédicace", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedication;signing", + "example_sentence_native": "L'auteur a fait une dédicace sur mon livre.", + "example_sentence_english": "The author wrote a dedication in my book.", + "pos": "noun", + "word_frequency": 7392 + }, + { + "word": "désireux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desirous;eager", + "example_sentence_native": "Il est désireux d'apprendre de nouvelles choses.", + "example_sentence_english": "He is eager to learn new things.", + "pos": "adjective", + "word_frequency": 7393 + }, + { + "word": "engendrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to engender;to generate;to cause", + "example_sentence_native": "Cette situation peut engendrer des problèmes.", + "example_sentence_english": "This situation can engender problems.", + "pos": "verb", + "word_frequency": 7395 + }, + { + "word": "escroquerie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fraud;scam", + "example_sentence_native": "Il a été victime d'une escroquerie.", + "example_sentence_english": "He was a victim of a scam.", + "pos": "noun", + "word_frequency": 7396 + }, + { + "word": "excitation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excitement", + "example_sentence_native": "L'excitation était palpable avant le match.", + "example_sentence_english": "The excitement was palpable before the match.", + "pos": "noun", + "word_frequency": 7398 + }, + { + "word": "fumeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoker", + "example_sentence_native": "Le fumeur a allumé une cigarette.", + "example_sentence_english": "The smoker lit a cigarette.", + "pos": "noun", + "word_frequency": 7400 + }, + { + "word": "glorieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glorious", + "example_sentence_native": "Ce fut une victoire glorieuse pour l'équipe.", + "example_sentence_english": "It was a glorious victory for the team.", + "pos": "adjective", + "word_frequency": 7403 + }, + { + "word": "généraliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to generalize", + "example_sentence_native": "Il ne faut pas généraliser à partir d'un seul cas.", + "example_sentence_english": "One should not generalize from a single case.", + "pos": "verb", + "word_frequency": 7404 + }, + { + "word": "handball", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handball", + "example_sentence_native": "Le handball est un sport d'équipe populaire.", + "example_sentence_english": "Handball is a popular team sport.", + "pos": "noun", + "word_frequency": 7405 + }, + { + "word": "imiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to imitate", + "example_sentence_native": "Les enfants aiment imiter leurs parents.", + "example_sentence_english": "Children like to imitate their parents.", + "pos": "verb", + "word_frequency": 7408 + }, + { + "word": "inaugurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inaugurate", + "example_sentence_native": "Le président va inaugurer le nouveau musée.", + "example_sentence_english": "The president will inaugurate the new museum.", + "pos": "verb", + "word_frequency": 7409 + }, + { + "word": "incompréhensible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incomprehensible", + "example_sentence_native": "Son explication était totalement incompréhensible.", + "example_sentence_english": "His explanation was totally incomprehensible.", + "pos": "adjective", + "word_frequency": 7410 + }, + { + "word": "instabilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instability", + "example_sentence_native": "L'instabilité politique inquiète les marchés.", + "example_sentence_english": "Political instability worries the markets.", + "pos": "noun", + "word_frequency": 7411 + }, + { + "word": "inventeur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inventor", + "example_sentence_native": "Thomas Edison était un grand inventeur.", + "example_sentence_english": "Thomas Edison was a great inventor.", + "pos": "noun", + "word_frequency": 7412 + }, + { + "word": "légalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legality", + "example_sentence_native": "La légalité de cette action est remise en question.", + "example_sentence_english": "The legality of this action is being questioned.", + "pos": "noun", + "word_frequency": 7419 + }, + { + "word": "mercato", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer market (sports)", + "example_sentence_native": "Le mercato estival a été très animé cette année.", + "example_sentence_english": "The summer transfer market was very active this year.", + "pos": "noun", + "word_frequency": 7420 + }, + { + "word": "minerai", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ore", + "example_sentence_native": "Ce pays est riche en minerai de fer.", + "example_sentence_english": "This country is rich in iron ore.", + "pos": "noun", + "word_frequency": 7421 + }, + { + "word": "météorologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorological", + "example_sentence_native": "Les conditions météorologiques sont défavorables.", + "example_sentence_english": "The meteorological conditions are unfavorable.", + "pos": "adjective", + "word_frequency": 7423 + }, + { + "word": "once", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ounce", + "example_sentence_native": "Il a acheté une once d'or.", + "example_sentence_english": "He bought an ounce of gold.", + "pos": "noun", + "word_frequency": 7425 + }, + { + "word": "oppression", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oppression", + "example_sentence_native": "Ils ont lutté contre l'oppression.", + "example_sentence_english": "They fought against oppression.", + "pos": "noun", + "word_frequency": 7427 + }, + { + "word": "panorama", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panorama", + "example_sentence_native": "Le panorama depuis le sommet est magnifique.", + "example_sentence_english": "The panorama from the summit is magnificent.", + "pos": "noun", + "word_frequency": 7428 + }, + { + "word": "paroi", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wall (of a cavity;cliff)", + "example_sentence_native": "La paroi rocheuse était très abrupte.", + "example_sentence_english": "The rock wall was very steep.", + "pos": "noun", + "word_frequency": 7429 + }, + { + "word": "pianiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pianist", + "example_sentence_native": "Elle est une excellente pianiste.", + "example_sentence_english": "She is an excellent pianist.", + "pos": "noun", + "word_frequency": 7430 + }, + { + "word": "pochette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pouch;sleeve;clutch bag", + "example_sentence_native": "Elle a mis ses clés dans sa pochette.", + "example_sentence_english": "She put her keys in her pouch.", + "pos": "noun", + "word_frequency": 7432 + }, + { + "word": "prescrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prescribe", + "example_sentence_native": "Le médecin lui a prescrit des antibiotiques.", + "example_sentence_english": "The doctor prescribed him antibiotics.", + "pos": "verb", + "word_frequency": 7433 + }, + { + "word": "prononciation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pronunciation", + "example_sentence_native": "Sa prononciation est très claire.", + "example_sentence_english": "His pronunciation is very clear.", + "pos": "noun", + "word_frequency": 7434 + }, + { + "word": "précipitation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precipitation;haste", + "example_sentence_native": "Les prévisions annoncent des précipitations pour demain.", + "example_sentence_english": "The forecast announces precipitation for tomorrow.", + "pos": "noun", + "word_frequency": 7435 + }, + { + "word": "prôner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to advocate;to extol", + "example_sentence_native": "Il prône une approche plus écologique.", + "example_sentence_english": "He advocates a more ecological approach.", + "pos": "verb", + "word_frequency": 7436 + }, + { + "word": "pèlerinage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrimage", + "example_sentence_native": "Le pèlerinage à Saint-Jacques-de-Compostelle est célèbre.", + "example_sentence_english": "The pilgrimage to Santiago de Compostela is famous.", + "pos": "noun", + "word_frequency": 7437 + }, + { + "word": "rampe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ramp;handrail", + "example_sentence_native": "La rampe d'accès est trop raide.", + "example_sentence_english": "The access ramp is too steep.", + "pos": "noun", + "word_frequency": 7438 + }, + { + "word": "sanguin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanguine;blood-related", + "example_sentence_native": "Il a un tempérament sanguin.", + "example_sentence_english": "He has a sanguine temperament.", + "pos": "adjective", + "word_frequency": 7441 + }, + { + "word": "silver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silver", + "example_sentence_native": "Elle porte une bague silver.", + "example_sentence_english": "She wears a silver ring.", + "pos": "adjective", + "word_frequency": 7442 + }, + { + "word": "sociologue", + "article_with_word": "le sociologue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociologist", + "example_sentence_native": "Le sociologue étudie les comportements sociaux.", + "example_sentence_english": "The sociologist studies social behaviors.", + "pos": "noun", + "word_frequency": 7443 + }, + { + "word": "souplesse", + "article_with_word": "la souplesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexibility;suppleness", + "example_sentence_native": "La souplesse est importante pour la danse.", + "example_sentence_english": "Flexibility is important for dance.", + "pos": "noun", + "word_frequency": 7445 + }, + { + "word": "spontané", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spontaneous", + "example_sentence_native": "Sa réaction était spontanée.", + "example_sentence_english": "His reaction was spontaneous.", + "pos": "adjective", + "word_frequency": 7447 + }, + { + "word": "spécificité", + "article_with_word": "la spécificité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specificity", + "example_sentence_native": "Chaque région a sa propre spécificité culturelle.", + "example_sentence_english": "Each region has its own cultural specificity.", + "pos": "noun", + "word_frequency": 7448 + }, + { + "word": "subsister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subsist;to remain", + "example_sentence_native": "Il ne lui reste que quelques euros pour subsister.", + "example_sentence_english": "He only has a few euros left to subsist.", + "pos": "verb", + "word_frequency": 7451 + }, + { + "word": "tracer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trace;to draw;to track", + "example_sentence_native": "Il faut tracer une ligne droite.", + "example_sentence_english": "You need to draw a straight line.", + "pos": "verb", + "word_frequency": 7452 + }, + { + "word": "url", + "article_with_word": "une URL", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "URL", + "example_sentence_native": "Copiez l'URL de la page.", + "example_sentence_english": "Copy the URL of the page.", + "pos": "noun", + "word_frequency": 7454 + }, + { + "word": "vicieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vicious;perverse;tricky", + "example_sentence_native": "C'est un cercle vicieux.", + "example_sentence_english": "It's a vicious circle.", + "pos": "adjective", + "word_frequency": 7456 + }, + { + "word": "whisky", + "article_with_word": "le whisky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whisky", + "example_sentence_native": "Il a commandé un verre de whisky.", + "example_sentence_english": "He ordered a glass of whisky.", + "pos": "noun", + "word_frequency": 7458 + }, + { + "word": "échelon", + "article_with_word": "l'échelon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rung;step;level", + "example_sentence_native": "Il a gravi les échelons de l'entreprise.", + "example_sentence_english": "He climbed the ranks of the company.", + "pos": "noun", + "word_frequency": 7459 + }, + { + "word": "éloge", + "article_with_word": "l'éloge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise;eulogy", + "example_sentence_native": "Il a fait l'éloge de son travail.", + "example_sentence_english": "He praised his work.", + "pos": "noun", + "word_frequency": 7460 + }, + { + "word": "élévation", + "article_with_word": "l'élévation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elevation;rise", + "example_sentence_native": "L'élévation du niveau de la mer est une préoccupation.", + "example_sentence_english": "The rise in sea level is a concern.", + "pos": "noun", + "word_frequency": 7461 + }, + { + "word": "émancipation", + "article_with_word": "l'émancipation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emancipation", + "example_sentence_native": "L'émancipation des femmes est un processus continu.", + "example_sentence_english": "Women's emancipation is an ongoing process.", + "pos": "noun", + "word_frequency": 7462 + }, + { + "word": "abstenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abstain;to refrain", + "example_sentence_native": "Il a décidé de s'abstenir de voter.", + "example_sentence_english": "He decided to abstain from voting.", + "pos": "verb", + "word_frequency": 7464 + }, + { + "word": "adhérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adhere;to join;to stick", + "example_sentence_native": "J'adhère pleinement à cette idée.", + "example_sentence_english": "I fully adhere to this idea.", + "pos": "verb", + "word_frequency": 7465 + }, + { + "word": "alphabet", + "article_with_word": "l'alphabet", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "alphabet", + "example_sentence_native": "L'alphabet français a 26 lettres.", + "example_sentence_english": "The French alphabet has 26 letters.", + "pos": "noun", + "word_frequency": 7467 + }, + { + "word": "ambiguïté", + "article_with_word": "l'ambiguïté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambiguity", + "example_sentence_native": "Il y a une certaine ambiguïté dans sa réponse.", + "example_sentence_english": "There is some ambiguity in his answer.", + "pos": "noun", + "word_frequency": 7468 + }, + { + "word": "ambulance", + "article_with_word": "une ambulance", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ambulance", + "example_sentence_native": "L'ambulance est arrivée rapidement.", + "example_sentence_english": "The ambulance arrived quickly.", + "pos": "noun", + "word_frequency": 7469 + }, + { + "word": "ancienneté", + "article_with_word": "l'ancienneté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seniority;age;length of service", + "example_sentence_native": "Son ancienneté lui donne des avantages.", + "example_sentence_english": "His seniority gives him advantages.", + "pos": "noun", + "word_frequency": 7470 + }, + { + "word": "anomalie", + "article_with_word": "une anomalie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anomaly", + "example_sentence_native": "Il y a une anomalie dans les données.", + "example_sentence_english": "There is an anomaly in the data.", + "pos": "noun", + "word_frequency": 7471 + }, + { + "word": "antisémite", + "article_with_word": "un antisémite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemite", + "example_sentence_native": "L'antisémite propage la haine.", + "example_sentence_english": "The antisemite spreads hatred.", + "pos": "noun", + "word_frequency": 7472 + }, + { + "word": "attrait", + "article_with_word": "l'attrait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeal;attraction", + "example_sentence_native": "Cette ville a un grand attrait touristique.", + "example_sentence_english": "This city has a great tourist appeal.", + "pos": "noun", + "word_frequency": 7474 + }, + { + "word": "barbarie", + "article_with_word": "la barbarie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barbarity;savagery", + "example_sentence_native": "Les actes de barbarie sont inacceptables.", + "example_sentence_english": "Acts of barbarity are unacceptable.", + "pos": "noun", + "word_frequency": 7475 + }, + { + "word": "basilique", + "article_with_word": "la basilique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basilica", + "example_sentence_native": "Nous avons visité la basilique Notre-Dame.", + "example_sentence_english": "We visited Notre-Dame Basilica.", + "pos": "noun", + "word_frequency": 7476 + }, + { + "word": "biscuit", + "article_with_word": "le biscuit", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "biscuit;cookie", + "example_sentence_native": "J'aime manger des biscuits avec mon café.", + "example_sentence_english": "I like to eat biscuits with my coffee.", + "pos": "noun", + "word_frequency": 7477 + }, + { + "word": "bitcoin", + "article_with_word": "le bitcoin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bitcoin", + "example_sentence_native": "Le prix du bitcoin est très volatil.", + "example_sentence_english": "The price of Bitcoin is very volatile.", + "pos": "noun", + "word_frequency": 7478 + }, + { + "word": "caillou", + "article_with_word": "le caillou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pebble;stone", + "example_sentence_native": "J'ai trouvé un joli caillou sur la plage.", + "example_sentence_english": "I found a pretty pebble on the beach.", + "pos": "noun", + "word_frequency": 7479 + }, + { + "word": "caserne", + "article_with_word": "la caserne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barracks", + "example_sentence_native": "Les soldats sont retournés à la caserne après l'exercice.", + "example_sentence_english": "The soldiers returned to the barracks after the exercise.", + "pos": "noun", + "word_frequency": 7480 + }, + { + "word": "cercueil", + "article_with_word": "le cercueil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coffin", + "example_sentence_native": "Le cercueil était porté par six hommes.", + "example_sentence_english": "The coffin was carried by six men.", + "pos": "noun", + "word_frequency": 7481 + }, + { + "word": "clean", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clean", + "example_sentence_native": "Il a un style très clean.", + "example_sentence_english": "He has a very clean style.", + "pos": "adjective", + "word_frequency": 7483 + }, + { + "word": "cole", + "article_with_word": "la cole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glue (slang)", + "example_sentence_native": "J'ai de la cole sur les doigts.", + "example_sentence_english": "I have glue on my fingers.", + "pos": "noun", + "word_frequency": 7484 + }, + { + "word": "condé", + "article_with_word": "un condé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cop (slang)", + "example_sentence_native": "Attention, il y a des condés au coin de la rue.", + "example_sentence_english": "Watch out, there are cops around the corner.", + "pos": "noun", + "word_frequency": 7485 + }, + { + "word": "confrérie", + "article_with_word": "la confrérie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brotherhood", + "example_sentence_native": "Ils ont rejoint une ancienne confrérie.", + "example_sentence_english": "They joined an ancient brotherhood.", + "pos": "noun", + "word_frequency": 7486 + }, + { + "word": "conférer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to confer;to bestow", + "example_sentence_native": "Ce diplôme lui confère de nouvelles responsabilités.", + "example_sentence_english": "This diploma confers new responsibilities upon him.", + "pos": "verb", + "word_frequency": 7487 + }, + { + "word": "crack", + "article_with_word": "le crack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ace;expert (slang)", + "example_sentence_native": "C'est un crack en informatique.", + "example_sentence_english": "He's an ace in IT.", + "pos": "noun", + "word_frequency": 7488 + }, + { + "word": "croisade", + "article_with_word": "la croisade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crusade", + "example_sentence_native": "Il a lancé une croisade contre la corruption.", + "example_sentence_english": "He launched a crusade against corruption.", + "pos": "noun", + "word_frequency": 7489 + }, + { + "word": "crête", + "article_with_word": "la crête", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crest;ridge", + "example_sentence_native": "Le coq a une belle crête rouge.", + "example_sentence_english": "The rooster has a beautiful red comb.", + "pos": "noun", + "word_frequency": 7490 + }, + { + "word": "dog", + "article_with_word": "le dog", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dog (often Great Dane)", + "example_sentence_native": "Il a un grand dog allemand.", + "example_sentence_english": "He has a large Great Dane.", + "pos": "noun", + "word_frequency": 7493 + }, + { + "word": "drague", + "article_with_word": "la drague", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flirting", + "example_sentence_native": "Il est très doué pour la drague.", + "example_sentence_english": "He's very good at flirting.", + "pos": "noun", + "word_frequency": 7494 + }, + { + "word": "démolition", + "article_with_word": "la démolition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demolition", + "example_sentence_native": "Le bâtiment est en cours de démolition.", + "example_sentence_english": "The building is undergoing demolition.", + "pos": "noun", + "word_frequency": 7496 + }, + { + "word": "détecteur", + "article_with_word": "le détecteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detector", + "example_sentence_native": "Nous avons installé un détecteur de fumée.", + "example_sentence_english": "We installed a smoke detector.", + "pos": "noun", + "word_frequency": 7497 + }, + { + "word": "encyclopédie", + "article_with_word": "l'encyclopédie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encyclopedia", + "example_sentence_native": "J'ai cherché l'information dans l'encyclopédie.", + "example_sentence_english": "I looked up the information in the encyclopedia.", + "pos": "noun", + "word_frequency": 7499 + }, + { + "word": "farce", + "article_with_word": "la farce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prank;stuffing", + "example_sentence_native": "C'était une bonne farce.", + "example_sentence_english": "It was a good prank.", + "pos": "noun", + "word_frequency": 7501 + }, + { + "word": "feat", + "article_with_word": "le feat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feat (featuring;collaboration)", + "example_sentence_native": "Ce morceau est un feat avec un artiste connu.", + "example_sentence_english": "This track is a feat with a famous artist.", + "pos": "noun", + "word_frequency": 7502 + }, + { + "word": "fermier", + "article_with_word": "le fermier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farmer", + "example_sentence_native": "Le fermier travaille dur dans les champs.", + "example_sentence_english": "The farmer works hard in the fields.", + "pos": "noun", + "word_frequency": 7503 + }, + { + "word": "gratuité", + "article_with_word": "la gratuité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freeness;gratuity", + "example_sentence_native": "Nous offrons la gratuité des transports pour les enfants.", + "example_sentence_english": "We offer free transport for children.", + "pos": "noun", + "word_frequency": 7504 + }, + { + "word": "grenouille", + "article_with_word": "la grenouille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frog", + "example_sentence_native": "La grenouille saute dans l'étang.", + "example_sentence_english": "The frog jumps into the pond.", + "pos": "noun", + "word_frequency": 7505 + }, + { + "word": "hidalgo", + "article_with_word": "un hidalgo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hidalgo (Spanish nobleman)", + "example_sentence_native": "Don Quichotte était un hidalgo.", + "example_sentence_english": "Don Quixote was an hidalgo.", + "pos": "noun", + "word_frequency": 7507 + }, + { + "word": "hésitation", + "article_with_word": "l'hésitation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hesitation", + "example_sentence_native": "Il a parlé sans aucune hésitation.", + "example_sentence_english": "He spoke without any hesitation.", + "pos": "noun", + "word_frequency": 7509 + }, + { + "word": "imitation", + "article_with_word": "l'imitation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imitation", + "example_sentence_native": "Son imitation de l'oiseau était parfaite.", + "example_sentence_english": "His imitation of the bird was perfect.", + "pos": "noun", + "word_frequency": 7510 + }, + { + "word": "interprète", + "article_with_word": "l'interprète", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interpreter", + "example_sentence_native": "L'interprète a traduit le discours.", + "example_sentence_english": "The interpreter translated the speech.", + "pos": "noun", + "word_frequency": 7511 + }, + { + "word": "lacune", + "article_with_word": "la lacune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gap;shortcoming", + "example_sentence_native": "Il y a une lacune dans ses connaissances.", + "example_sentence_english": "There is a gap in his knowledge.", + "pos": "noun", + "word_frequency": 7514 + }, + { + "word": "lentille", + "article_with_word": "la lentille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lentil;lens", + "example_sentence_native": "J'ai mangé des lentilles ce soir.", + "example_sentence_english": "I ate lentils tonight.", + "pos": "noun", + "word_frequency": 7515 + }, + { + "word": "mare", + "article_with_word": "la mare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pond;puddle", + "example_sentence_native": "Les canards nagent dans la mare.", + "example_sentence_english": "The ducks swim in the pond.", + "pos": "noun", + "word_frequency": 7516 + }, + { + "word": "math", + "article_with_word": "les maths", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "math;maths", + "example_sentence_native": "J'adore les maths.", + "example_sentence_english": "I love math.", + "pos": "noun", + "word_frequency": 7517 + }, + { + "word": "millénaire", + "article_with_word": "le millénaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennium", + "example_sentence_native": "Nous célébrons le nouveau millénaire.", + "example_sentence_english": "We are celebrating the new millennium.", + "pos": "noun", + "word_frequency": 7519 + }, + { + "word": "mythologie", + "article_with_word": "la mythologie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mythology", + "example_sentence_native": "La mythologie grecque est très riche.", + "example_sentence_english": "Greek mythology is very rich.", + "pos": "noun", + "word_frequency": 7521 + }, + { + "word": "mâchoire", + "article_with_word": "la mâchoire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaw", + "example_sentence_native": "Il a mal à la mâchoire après avoir mangé.", + "example_sentence_english": "His jaw hurts after eating.", + "pos": "noun", + "word_frequency": 7522 + }, + { + "word": "mécontentement", + "article_with_word": "le mécontentement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discontent", + "example_sentence_native": "Le mécontentement général a conduit à des manifestations.", + "example_sentence_english": "General discontent led to demonstrations.", + "pos": "noun", + "word_frequency": 7523 + }, + { + "word": "médian", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "median", + "example_sentence_native": "La valeur médiane est de 50.", + "example_sentence_english": "The median value is 50.", + "pos": "adjective", + "word_frequency": 7524 + }, + { + "word": "méthodologie", + "article_with_word": "la méthodologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodology", + "example_sentence_native": "La méthodologie de cette étude est très rigoureuse.", + "example_sentence_english": "The methodology of this study is very rigorous.", + "pos": "noun", + "word_frequency": 7525 + }, + { + "word": "nullement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "not at all;by no means", + "example_sentence_native": "Je ne suis nullement d'accord avec cette décision.", + "example_sentence_english": "I am not at all in agreement with this decision.", + "pos": "adverb", + "word_frequency": 7527 + }, + { + "word": "orthodoxe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orthodox", + "example_sentence_native": "Il suit une approche très orthodoxe.", + "example_sentence_english": "He follows a very orthodox approach.", + "pos": "adjective", + "word_frequency": 7531 + }, + { + "word": "paradoxalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradoxically", + "example_sentence_native": "Paradoxalement, le silence était assourdissant.", + "example_sentence_english": "Paradoxically, the silence was deafening.", + "pos": "adverb", + "word_frequency": 7532 + }, + { + "word": "payé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paid", + "example_sentence_native": "Le travail est bien payé.", + "example_sentence_english": "The work is well paid.", + "pos": "adjective", + "word_frequency": 7533 + }, + { + "word": "perse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Persian", + "example_sentence_native": "L'Empire perse était vaste.", + "example_sentence_english": "The Persian Empire was vast.", + "pos": "adjective", + "word_frequency": 7534 + }, + { + "word": "pharmaceutique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pharmaceutical", + "example_sentence_native": "L'industrie pharmaceutique est très réglementée.", + "example_sentence_english": "The pharmaceutical industry is highly regulated.", + "pos": "adjective", + "word_frequency": 7535 + }, + { + "word": "pharmacien", + "article_with_word": "le pharmacien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pharmacist", + "example_sentence_native": "Le pharmacien m'a donné des conseils.", + "example_sentence_english": "The pharmacist gave me some advice.", + "pos": "noun", + "word_frequency": 7536 + }, + { + "word": "plaisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasant", + "example_sentence_native": "C'est une personne très plaisante.", + "example_sentence_english": "She is a very pleasant person.", + "pos": "adjective", + "word_frequency": 7538 + }, + { + "word": "postérité", + "article_with_word": "la postérité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "posterity", + "example_sentence_native": "Son œuvre restera pour la postérité.", + "example_sentence_english": "His work will remain for posterity.", + "pos": "noun", + "word_frequency": 7539 + }, + { + "word": "pratiquant", + "article_with_word": "le pratiquant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practitioner;worshipper", + "example_sentence_native": "C'est un pratiquant assidu de yoga.", + "example_sentence_english": "He is a diligent yoga practitioner.", + "pos": "noun", + "word_frequency": 7540 + }, + { + "word": "provisoirement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisionally;temporarily", + "example_sentence_native": "Le bureau est provisoirement fermé.", + "example_sentence_english": "The office is provisionally closed.", + "pos": "adverb", + "word_frequency": 7543 + }, + { + "word": "précaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precarious", + "example_sentence_native": "Sa situation financière est précaire.", + "example_sentence_english": "His financial situation is precarious.", + "pos": "adjective", + "word_frequency": 7544 + }, + { + "word": "présumé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presumed;alleged", + "example_sentence_native": "Le coupable présumé a été arrêté.", + "example_sentence_english": "The presumed culprit has been arrested.", + "pos": "adjective", + "word_frequency": 7545 + }, + { + "word": "rabais", + "article_with_word": "le rabais", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discount", + "example_sentence_native": "J'ai obtenu un rabais sur cet article.", + "example_sentence_english": "I got a discount on this item.", + "pos": "noun", + "word_frequency": 7547 + }, + { + "word": "rassuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reassured", + "example_sentence_native": "Je suis rassuré de te voir en bonne santé.", + "example_sentence_english": "I am reassured to see you in good health.", + "pos": "adjective", + "word_frequency": 7548 + }, + { + "word": "receveur", + "article_with_word": "le receveur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receiver;collector (e.g.;of taxes;tickets)", + "example_sentence_native": "Le receveur des impôts a traité ma demande.", + "example_sentence_english": "The tax collector processed my request.", + "pos": "noun", + "word_frequency": 7549 + }, + { + "word": "recrue", + "article_with_word": "la recrue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruit", + "example_sentence_native": "La nouvelle recrue est très motivée.", + "example_sentence_english": "The new recruit is very motivated.", + "pos": "noun", + "word_frequency": 7550 + }, + { + "word": "remonté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angry;re-energized", + "example_sentence_native": "Il était très remonté après la discussion.", + "example_sentence_english": "He was very angry after the discussion.", + "pos": "adjective", + "word_frequency": 7551 + }, + { + "word": "rigide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rigid", + "example_sentence_native": "Les règles sont trop rigides.", + "example_sentence_english": "The rules are too rigid.", + "pos": "adjective", + "word_frequency": 7552 + }, + { + "word": "réjouir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to delight;to rejoice", + "example_sentence_native": "Cette nouvelle va le réjouir.", + "example_sentence_english": "This news will delight him.", + "pos": "verb", + "word_frequency": 7553 + }, + { + "word": "réussi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successful", + "example_sentence_native": "Son examen est réussi.", + "example_sentence_english": "His exam is successful.", + "pos": "adjective", + "word_frequency": 7554 + }, + { + "word": "signataire", + "article_with_word": "le signataire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signer;signatory", + "example_sentence_native": "Le signataire du contrat doit être présent.", + "example_sentence_english": "The signatory of the contract must be present.", + "pos": "noun", + "word_frequency": 7556 + }, + { + "word": "sketch", + "article_with_word": "le sketch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sketch (comedy)", + "example_sentence_native": "Ils ont présenté un sketch hilarant.", + "example_sentence_english": "They presented a hilarious sketch.", + "pos": "sketch", + "word_frequency": 7557 + }, + { + "word": "slip", + "article_with_word": "le slip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "briefs;underwear", + "example_sentence_native": "Il a mis son slip de bain.", + "example_sentence_english": "He put on his swimming briefs.", + "pos": "noun", + "word_frequency": 7558 + }, + { + "word": "soft", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft (e.g.;non-alcoholic;gentle)", + "example_sentence_native": "Je préfère les boissons soft.", + "example_sentence_english": "I prefer soft drinks.", + "pos": "soft", + "word_frequency": 7559 + }, + { + "word": "soja", + "article_with_word": "le soja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soy", + "example_sentence_native": "Le soja est une légumineuse très nutritive.", + "example_sentence_english": "Soy is a very nutritious legume.", + "pos": "noun", + "word_frequency": 7560 + }, + { + "word": "soulevé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raised;lifted", + "example_sentence_native": "Le couvercle a été soulevé par le vent.", + "example_sentence_english": "The lid was lifted by the wind.", + "pos": "adjective", + "word_frequency": 7561 + }, + { + "word": "soupçonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suspect", + "example_sentence_native": "Je commence à soupçonner qu'il nous cache quelque chose.", + "example_sentence_english": "I'm starting to suspect he's hiding something from us.", + "pos": "verb", + "word_frequency": 7562 + }, + { + "word": "souscription", + "article_with_word": "la souscription", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subscription", + "example_sentence_native": "La souscription à ce service est annuelle.", + "example_sentence_english": "The subscription to this service is annual.", + "pos": "noun", + "word_frequency": 7563 + }, + { + "word": "spéculation", + "article_with_word": "la spéculation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculation", + "example_sentence_native": "Les spéculations sur l'avenir de l'entreprise sont nombreuses.", + "example_sentence_english": "There is much speculation about the company's future.", + "pos": "noun", + "word_frequency": 7564 + }, + { + "word": "stimuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stimulate", + "example_sentence_native": "Le café peut stimuler votre esprit le matin.", + "example_sentence_english": "Coffee can stimulate your mind in the morning.", + "pos": "verb", + "word_frequency": 7565 + }, + { + "word": "subtil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subtle", + "example_sentence_native": "Il y a une différence subtile entre les deux couleurs.", + "example_sentence_english": "There is a subtle difference between the two colors.", + "pos": "adjective", + "word_frequency": 7567 + }, + { + "word": "supprimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deleted;removed", + "example_sentence_native": "Le fichier a été supprimé par erreur.", + "example_sentence_english": "The file was deleted by mistake.", + "pos": "adjective", + "word_frequency": 7568 + }, + { + "word": "théoriquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theoretically", + "example_sentence_native": "Théoriquement, c'est possible, mais en pratique, c'est difficile.", + "example_sentence_english": "Theoretically, it's possible, but in practice, it's difficult.", + "pos": "adverb", + "word_frequency": 7569 + }, + { + "word": "tranchée", + "article_with_word": "la tranchée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trench", + "example_sentence_native": "Les soldats se sont cachés dans la tranchée.", + "example_sentence_english": "The soldiers hid in the trench.", + "pos": "noun", + "word_frequency": 7570 + }, + { + "word": "trinité", + "article_with_word": "la Trinité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trinity", + "example_sentence_native": "La Sainte Trinité est un concept central du christianisme.", + "example_sentence_english": "The Holy Trinity is a central concept of Christianity.", + "pos": "noun", + "word_frequency": 7571 + }, + { + "word": "trésorerie", + "article_with_word": "la trésorerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "treasury;cash flow", + "example_sentence_native": "La trésorerie de l'entreprise est saine.", + "example_sentence_english": "The company's cash flow is healthy.", + "pos": "noun", + "word_frequency": 7572 + }, + { + "word": "téléphonie", + "article_with_word": "la téléphonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telephony", + "example_sentence_native": "Le secteur de la téléphonie mobile est en constante évolution.", + "example_sentence_english": "The mobile telephony sector is constantly evolving.", + "pos": "noun", + "word_frequency": 7573 + }, + { + "word": "urine", + "article_with_word": "l'urine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urine", + "example_sentence_native": "L'analyse d'urine peut révéler des informations sur la santé.", + "example_sentence_english": "Urine analysis can reveal health information.", + "pos": "noun", + "word_frequency": 7574 + }, + { + "word": "valoriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to value;to enhance;to promote", + "example_sentence_native": "Il est important de valoriser le travail de chacun.", + "example_sentence_english": "It is important to value everyone's work.", + "pos": "verb", + "word_frequency": 7575 + }, + { + "word": "vecteur", + "article_with_word": "le vecteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vector", + "example_sentence_native": "Le moustique est un vecteur de maladies.", + "example_sentence_english": "The mosquito is a vector of diseases.", + "pos": "noun", + "word_frequency": 7576 + }, + { + "word": "énigme", + "article_with_word": "l'énigme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enigma;riddle", + "example_sentence_native": "Cette situation reste une énigme pour tout le monde.", + "example_sentence_english": "This situation remains an enigma for everyone.", + "pos": "noun", + "word_frequency": 7578 + }, + { + "word": "épice", + "article_with_word": "une épice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spice", + "example_sentence_native": "J'ai ajouté des épices pour donner plus de goût au plat.", + "example_sentence_english": "I added spices to give more flavor to the dish.", + "pos": "noun", + "word_frequency": 7579 + }, + { + "word": "absorption", + "article_with_word": "l'absorption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorption", + "example_sentence_native": "L'absorption de la lumière par les plantes est essentielle.", + "example_sentence_english": "The absorption of light by plants is essential.", + "pos": "noun", + "word_frequency": 7580 + }, + { + "word": "aidé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helped;assisted", + "example_sentence_native": "Les personnes âgées sont souvent aidées par des bénévoles.", + "example_sentence_english": "Elderly people are often helped by volunteers.", + "pos": "adjective", + "word_frequency": 7581 + }, + { + "word": "anticiper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to anticipate", + "example_sentence_native": "Il faut anticiper les problèmes pour mieux les résoudre.", + "example_sentence_english": "One must anticipate problems to better solve them.", + "pos": "verb", + "word_frequency": 7584 + }, + { + "word": "apologie", + "article_with_word": "l'apologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apology;defense (of an idea)", + "example_sentence_native": "Son discours était une apologie de la liberté d'expression.", + "example_sentence_english": "His speech was a defense of freedom of expression.", + "pos": "noun", + "word_frequency": 7585 + }, + { + "word": "assimilation", + "article_with_word": "l'assimilation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assimilation", + "example_sentence_native": "L'assimilation des nouvelles informations prend du temps.", + "example_sentence_english": "The assimilation of new information takes time.", + "pos": "noun", + "word_frequency": 7587 + }, + { + "word": "attaqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attacked", + "example_sentence_native": "Le château a été attaqué par les envahisseurs.", + "example_sentence_english": "The castle was attacked by the invaders.", + "pos": "adjective", + "word_frequency": 7588 + }, + { + "word": "basculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tip over;to switch;to fall", + "example_sentence_native": "Le pays a basculé dans la crise économique.", + "example_sentence_english": "The country tipped into economic crisis.", + "pos": "verb", + "word_frequency": 7589 + }, + { + "word": "bienveillance", + "article_with_word": "la bienveillance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benevolence;kindness", + "example_sentence_native": "Elle a toujours fait preuve de bienveillance envers ses collègues.", + "example_sentence_english": "She always showed kindness towards her colleagues.", + "pos": "noun", + "word_frequency": 7591 + }, + { + "word": "boycott", + "article_with_word": "le boycott", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boycott", + "example_sentence_native": "Un boycott des produits étrangers a été organisé.", + "example_sentence_english": "A boycott of foreign products was organized.", + "pos": "noun", + "word_frequency": 7592 + }, + { + "word": "caricature", + "article_with_word": "la caricature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caricature", + "example_sentence_native": "Le journal a publié une caricature du politicien.", + "example_sentence_english": "The newspaper published a caricature of the politician.", + "pos": "noun", + "word_frequency": 7596 + }, + { + "word": "cascade", + "article_with_word": "la cascade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterfall;cascade", + "example_sentence_native": "Nous avons visité une magnifique cascade en montagne.", + "example_sentence_english": "We visited a magnificent waterfall in the mountains.", + "pos": "noun", + "word_frequency": 7597 + }, + { + "word": "certification", + "article_with_word": "la certification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certification", + "example_sentence_native": "La certification ISO est un gage de qualité.", + "example_sentence_english": "ISO certification is a guarantee of quality.", + "pos": "noun", + "word_frequency": 7598 + }, + { + "word": "chargé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in charge of;loaded", + "example_sentence_native": "Il est chargé de ce projet important.", + "example_sentence_english": "He is in charge of this important project.", + "pos": "adjective", + "word_frequency": 7600 + }, + { + "word": "citadelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citadel", + "example_sentence_native": "La vieille citadelle domine la ville.", + "example_sentence_english": "The old citadel overlooks the city.", + "pos": "noun", + "word_frequency": 7601 + }, + { + "word": "clou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nail", + "example_sentence_native": "J'ai besoin d'un clou pour accrocher ce tableau.", + "example_sentence_english": "I need a nail to hang this painting.", + "pos": "noun", + "word_frequency": 7602 + }, + { + "word": "coloris", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "color scheme;hue", + "example_sentence_native": "Les coloris de ce tissu sont magnifiques.", + "example_sentence_english": "The color scheme of this fabric is magnificent.", + "pos": "noun", + "word_frequency": 7603 + }, + { + "word": "conservé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserved;kept", + "example_sentence_native": "Ce document ancien est très bien conservé.", + "example_sentence_english": "This ancient document is very well preserved.", + "pos": "adjective", + "word_frequency": 7604 + }, + { + "word": "contamination", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contamination", + "example_sentence_native": "Il y a un risque de contamination de l'eau.", + "example_sentence_english": "There is a risk of water contamination.", + "pos": "noun", + "word_frequency": 7605 + }, + { + "word": "contentieux", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute;litigation", + "example_sentence_native": "Le contentieux entre les deux parties a été résolu.", + "example_sentence_english": "The dispute between the two parties has been resolved.", + "pos": "noun", + "word_frequency": 7606 + }, + { + "word": "convaincu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convinced", + "example_sentence_native": "Je suis convaincu de son honnêteté.", + "example_sentence_english": "I am convinced of his honesty.", + "pos": "adjective", + "word_frequency": 7607 + }, + { + "word": "croître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grow;to increase", + "example_sentence_native": "L'économie mondiale continue de croître lentement.", + "example_sentence_english": "The global economy continues to grow slowly.", + "pos": "verb", + "word_frequency": 7608 + }, + { + "word": "croûte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crust;scab", + "example_sentence_native": "J'adore la croûte croustillante du pain.", + "example_sentence_english": "I love the crispy crust of the bread.", + "pos": "noun", + "word_frequency": 7609 + }, + { + "word": "différencier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to differentiate;to distinguish", + "example_sentence_native": "Il est difficile de différencier les jumeaux.", + "example_sentence_english": "It is difficult to differentiate the twins.", + "pos": "verb", + "word_frequency": 7610 + }, + { + "word": "déclaré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "declared;stated", + "example_sentence_native": "C'est un ennemi déclaré de la liberté.", + "example_sentence_english": "He is a declared enemy of freedom.", + "pos": "adjective", + "word_frequency": 7611 + }, + { + "word": "défoncer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to smash in;to break down", + "example_sentence_native": "Ils ont dû défoncer la porte pour entrer.", + "example_sentence_english": "They had to smash in the door to enter.", + "pos": "verb", + "word_frequency": 7612 + }, + { + "word": "ecclésiastique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecclesiastical", + "example_sentence_native": "Il étudie l'histoire ecclésiastique.", + "example_sentence_english": "He studies ecclesiastical history.", + "pos": "adjective", + "word_frequency": 7613 + }, + { + "word": "enrichissement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enrichment", + "example_sentence_native": "L'enrichissement culturel est très important.", + "example_sentence_english": "Cultural enrichment is very important.", + "pos": "noun", + "word_frequency": 7614 + }, + { + "word": "enthousiaste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiastic", + "example_sentence_native": "Elle est très enthousiaste à l'idée de ce voyage.", + "example_sentence_english": "She is very enthusiastic about the idea of this trip.", + "pos": "adjective", + "word_frequency": 7615 + }, + { + "word": "expérimental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experimental", + "example_sentence_native": "Ils ont mené une étude expérimentale sur le sujet.", + "example_sentence_english": "They conducted an experimental study on the subject.", + "pos": "adjective", + "word_frequency": 7617 + }, + { + "word": "flexibilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flexibility", + "example_sentence_native": "La flexibilité est une qualité essentielle pour ce poste.", + "example_sentence_english": "Flexibility is an essential quality for this position.", + "pos": "noun", + "word_frequency": 7620 + }, + { + "word": "flûte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flute;baguette (bread)", + "example_sentence_native": "Elle joue de la flûte traversière.", + "example_sentence_english": "She plays the transverse flute.", + "pos": "noun", + "word_frequency": 7621 + }, + { + "word": "fourmi", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ant", + "example_sentence_native": "Une fourmi transportait une miette de pain.", + "example_sentence_english": "An ant was carrying a breadcrumb.", + "pos": "noun", + "word_frequency": 7623 + }, + { + "word": "fureur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fury;rage", + "example_sentence_native": "Il est entré dans une fureur noire.", + "example_sentence_english": "He flew into a black rage.", + "pos": "noun", + "word_frequency": 7624 + }, + { + "word": "garant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guarantor;warrantor", + "example_sentence_native": "Il s'est porté garant pour le prêt de son ami.", + "example_sentence_english": "He acted as guarantor for his friend's loan.", + "pos": "noun", + "word_frequency": 7625 + }, + { + "word": "grillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grilled;toasted", + "example_sentence_native": "J'aime le poulet grillé avec des légumes.", + "example_sentence_english": "I like grilled chicken with vegetables.", + "pos": "adjective", + "word_frequency": 7628 + }, + { + "word": "généralisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generalization", + "example_sentence_native": "Il faut éviter les généralisations hâtives.", + "example_sentence_english": "One must avoid hasty generalizations.", + "pos": "noun", + "word_frequency": 7629 + }, + { + "word": "généraliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generalist;general practitioner", + "example_sentence_native": "Mon médecin généraliste est très compétent.", + "example_sentence_english": "My general practitioner is very competent.", + "pos": "adjective", + "word_frequency": 7630 + }, + { + "word": "habile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skillful;clever", + "example_sentence_native": "C'est un artisan très habile de ses mains.", + "example_sentence_english": "He is a very skillful craftsman with his hands.", + "pos": "adjective", + "word_frequency": 7631 + }, + { + "word": "honoraire", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fee (often plural: fees;honorarium)", + "example_sentence_native": "Les honoraires de l'avocat sont élevés.", + "example_sentence_english": "The lawyer's fees are high.", + "pos": "noun", + "word_frequency": 7632 + }, + { + "word": "hormone", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hormone", + "example_sentence_native": "Les hormones jouent un rôle crucial dans le corps.", + "example_sentence_english": "Hormones play a crucial role in the body.", + "pos": "noun", + "word_frequency": 7633 + }, + { + "word": "indemnisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensation;indemnification", + "example_sentence_native": "Il a demandé une indemnisation pour les dommages subis.", + "example_sentence_english": "He requested compensation for the damages suffered.", + "pos": "noun", + "word_frequency": 7635 + }, + { + "word": "induire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to induce;to infer;to lead to", + "example_sentence_native": "Ces données peuvent induire en erreur.", + "example_sentence_english": "This data can be misleading.", + "pos": "verb", + "word_frequency": 7636 + }, + { + "word": "interrogation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogation;question;query", + "example_sentence_native": "L'interrogation écrite aura lieu demain.", + "example_sentence_english": "The written test will take place tomorrow.", + "pos": "noun", + "word_frequency": 7637 + }, + { + "word": "interrogatoire", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interrogation (formal;police;legal)", + "example_sentence_native": "Le suspect a subi un long interrogatoire.", + "example_sentence_english": "The suspect underwent a long interrogation.", + "pos": "noun", + "word_frequency": 7638 + }, + { + "word": "latitude", + "article_with_word": "la latitude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "latitude", + "example_sentence_native": "La latitude est une coordonnée géographique.", + "example_sentence_english": "Latitude is a geographical coordinate.", + "pos": "noun", + "word_frequency": 7643 + }, + { + "word": "malédiction", + "article_with_word": "la malédiction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curse", + "example_sentence_native": "On dit que cette maison est sous une malédiction.", + "example_sentence_english": "They say this house is under a curse.", + "pos": "noun", + "word_frequency": 7650 + }, + { + "word": "miséricorde", + "article_with_word": "la miséricorde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercy", + "example_sentence_native": "Il a imploré la miséricorde du juge.", + "example_sentence_english": "He begged the judge's mercy.", + "pos": "noun", + "word_frequency": 7653 + }, + { + "word": "médiéval", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medieval", + "example_sentence_native": "Nous avons visité un château médiéval.", + "example_sentence_english": "We visited a medieval castle.", + "pos": "adjective", + "word_frequency": 7656 + }, + { + "word": "méridional", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "southern", + "example_sentence_native": "Le climat méridional est souvent ensoleillé.", + "example_sentence_english": "The southern climate is often sunny.", + "pos": "adjective", + "word_frequency": 7657 + }, + { + "word": "narration", + "article_with_word": "la narration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narration", + "example_sentence_native": "La narration de ce film est très captivante.", + "example_sentence_english": "The narration of this film is very captivating.", + "pos": "noun", + "word_frequency": 7658 + }, + { + "word": "optimiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to optimize", + "example_sentence_native": "Nous devons optimiser nos ressources.", + "example_sentence_english": "We must optimize our resources.", + "pos": "verb", + "word_frequency": 7661 + }, + { + "word": "patate", + "article_with_word": "la patate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "potato", + "example_sentence_native": "J'adore les frites de patate douce.", + "example_sentence_english": "I love sweet potato fries.", + "pos": "noun", + "word_frequency": 7662 + }, + { + "word": "pratiqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practiced", + "example_sentence_native": "C'est un sport très pratiqué dans la région.", + "example_sentence_english": "It's a sport widely practiced in the region.", + "pos": "adjective", + "word_frequency": 7663 + }, + { + "word": "prose", + "article_with_word": "la prose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prose", + "example_sentence_native": "Il écrit de la belle prose.", + "example_sentence_english": "He writes beautiful prose.", + "pos": "noun", + "word_frequency": 7664 + }, + { + "word": "présomption", + "article_with_word": "la présomption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumption", + "example_sentence_native": "Il y a une présomption d'innocence.", + "example_sentence_english": "There is a presumption of innocence.", + "pos": "noun", + "word_frequency": 7665 + }, + { + "word": "prétention", + "article_with_word": "la prétention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretension", + "example_sentence_native": "Ses prétentions sont excessives.", + "example_sentence_english": "His claims are excessive.", + "pos": "noun", + "word_frequency": 7666 + }, + { + "word": "prévenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warned", + "example_sentence_native": "Nous étions prévenus du danger.", + "example_sentence_english": "We were warned of the danger.", + "pos": "adjective", + "word_frequency": 7667 + }, + { + "word": "raser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shave", + "example_sentence_native": "Il doit se raser tous les matins.", + "example_sentence_english": "He has to shave every morning.", + "pos": "verb", + "word_frequency": 7668 + }, + { + "word": "rassemblé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathered", + "example_sentence_native": "La foule rassemblée attendait le discours.", + "example_sentence_english": "The gathered crowd was waiting for the speech.", + "pos": "adjective", + "word_frequency": 7669 + }, + { + "word": "recueilli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "composed", + "example_sentence_native": "Elle avait l'air calme et recueillie.", + "example_sentence_english": "She looked calm and composed.", + "pos": "adjective", + "word_frequency": 7670 + }, + { + "word": "respectable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respectable", + "example_sentence_native": "C'est une personne très respectable.", + "example_sentence_english": "He is a very respectable person.", + "pos": "adjective", + "word_frequency": 7672 + }, + { + "word": "ressortissant", + "article_with_word": "le ressortissant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "national", + "example_sentence_native": "Les ressortissants étrangers doivent s'enregistrer.", + "example_sentence_english": "Foreign nationals must register.", + "pos": "noun", + "word_frequency": 7673 + }, + { + "word": "référer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refer", + "example_sentence_native": "Vous pouvez vous référer au manuel.", + "example_sentence_english": "You can refer to the manual.", + "pos": "verb", + "word_frequency": 7678 + }, + { + "word": "rétro", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retro", + "example_sentence_native": "J'aime le style rétro des années 80.", + "example_sentence_english": "I like the retro style of the 80s.", + "pos": "rétro", + "word_frequency": 7679 + }, + { + "word": "réélire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-elect", + "example_sentence_native": "Le président a été réélu pour un second mandat.", + "example_sentence_english": "The president was re-elected for a second term.", + "pos": "verb", + "word_frequency": 7680 + }, + { + "word": "satisfaisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satisfactory;satisfying", + "example_sentence_native": "Les résultats de l'examen étaient satisfaisants.", + "example_sentence_english": "The exam results were satisfactory.", + "pos": "adjective", + "word_frequency": 7684 + }, + { + "word": "scanner", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scanner", + "example_sentence_native": "J'ai besoin d'un scanner pour numériser ces documents.", + "example_sentence_english": "I need a scanner to digitize these documents.", + "pos": "noun", + "word_frequency": 7685 + }, + { + "word": "synthétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synthetic", + "example_sentence_native": "Ce tissu est entièrement synthétique.", + "example_sentence_english": "This fabric is entirely synthetic.", + "pos": "adjective", + "word_frequency": 7687 + }, + { + "word": "tambour", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drum", + "example_sentence_native": "Il joue du tambour dans un groupe de musique.", + "example_sentence_english": "He plays the drum in a music band.", + "pos": "noun", + "word_frequency": 7688 + }, + { + "word": "théorème", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theorem", + "example_sentence_native": "Le théorème de Pythagore est fondamental en géométrie.", + "example_sentence_english": "Pythagoras' theorem is fundamental in geometry.", + "pos": "noun", + "word_frequency": 7690 + }, + { + "word": "transmis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmitted;passed on", + "example_sentence_native": "L'information a été transmise à toutes les équipes.", + "example_sentence_english": "The information was transmitted to all teams.", + "pos": "adjective", + "word_frequency": 7692 + }, + { + "word": "vanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boast;to praise", + "example_sentence_native": "Il aime se vanter de ses succès.", + "example_sentence_english": "He likes to boast about his successes.", + "pos": "verb", + "word_frequency": 7694 + }, + { + "word": "villageois", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villager", + "example_sentence_native": "Les villageois se sont réunis sur la place.", + "example_sentence_english": "The villagers gathered in the square.", + "pos": "noun", + "word_frequency": 7696 + }, + { + "word": "vinaigre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vinegar", + "example_sentence_native": "Ajoutez un peu de vinaigre à la salade.", + "example_sentence_english": "Add a little vinegar to the salad.", + "pos": "noun", + "word_frequency": 7697 + }, + { + "word": "violette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violet (flower)", + "example_sentence_native": "Elle a cueilli une jolie violette dans le jardin.", + "example_sentence_english": "She picked a pretty violet in the garden.", + "pos": "violette", + "word_frequency": 7698 + }, + { + "word": "zombie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zombie", + "example_sentence_native": "Le film parle d'une apocalypse zombie.", + "example_sentence_english": "The movie is about a zombie apocalypse.", + "pos": "noun", + "word_frequency": 7702 + }, + { + "word": "épique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epic", + "example_sentence_native": "C'était une bataille épique.", + "example_sentence_english": "It was an epic battle.", + "pos": "adjective", + "word_frequency": 7703 + }, + { + "word": "érection", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erection;construction", + "example_sentence_native": "L'érection de ce monument a pris des années.", + "example_sentence_english": "The erection of this monument took years.", + "pos": "noun", + "word_frequency": 7704 + }, + { + "word": "éternellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternally;forever", + "example_sentence_native": "Il l'aimera éternellement.", + "example_sentence_english": "He will love her eternally.", + "pos": "adverb", + "word_frequency": 7705 + }, + { + "word": "acharnement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relentlessness;determination;fierce effort", + "example_sentence_native": "Il a travaillé avec acharnement pour atteindre son objectif.", + "example_sentence_english": "He worked with fierce determination to achieve his goal.", + "pos": "noun", + "word_frequency": 7706 + }, + { + "word": "agressivité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressiveness", + "example_sentence_native": "Son agressivité au volant est dangereuse.", + "example_sentence_english": "His aggressiveness behind the wheel is dangerous.", + "pos": "noun", + "word_frequency": 7707 + }, + { + "word": "ailier", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winger (sports);flanker", + "example_sentence_native": "L'ailier a marqué un but magnifique.", + "example_sentence_english": "The winger scored a magnificent goal.", + "pos": "noun", + "word_frequency": 7708 + }, + { + "word": "algue", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seaweed;algae", + "example_sentence_native": "Les algues sont très présentes sur cette plage.", + "example_sentence_english": "Seaweed is very present on this beach.", + "pos": "noun", + "word_frequency": 7710 + }, + { + "word": "anthropologie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropology", + "example_sentence_native": "Elle étudie l'anthropologie à l'université.", + "example_sentence_english": "She studies anthropology at university.", + "pos": "noun", + "word_frequency": 7712 + }, + { + "word": "anus", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anus", + "example_sentence_native": "L'anus est l'ouverture terminale du tube digestif.", + "example_sentence_english": "The anus is the terminal opening of the digestive tract.", + "pos": "anus", + "word_frequency": 7713 + }, + { + "word": "aptitude", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aptitude;ability", + "example_sentence_native": "Il a une grande aptitude pour les langues.", + "example_sentence_english": "He has a great aptitude for languages.", + "pos": "noun", + "word_frequency": 7714 + }, + { + "word": "atmosphérique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atmospheric", + "example_sentence_native": "La pression atmosphérique est mesurée en hectopascals.", + "example_sentence_english": "Atmospheric pressure is measured in hectopascals.", + "pos": "adjective", + "word_frequency": 7716 + }, + { + "word": "atome", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atom", + "example_sentence_native": "L'atome est la plus petite unité de matière.", + "example_sentence_english": "The atom is the smallest unit of matter.", + "pos": "noun", + "word_frequency": 7717 + }, + { + "word": "audacieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audacious;daring", + "example_sentence_native": "C'était une décision audacieuse.", + "example_sentence_english": "It was an audacious decision.", + "pos": "adjective", + "word_frequency": 7718 + }, + { + "word": "azote", + "article_with_word": "l’azote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nitrogen", + "example_sentence_native": "L'azote est un gaz essentiel à la vie.", + "example_sentence_english": "Nitrogen is a gas essential for life.", + "pos": "noun", + "word_frequency": 7720 + }, + { + "word": "bagnole", + "article_with_word": "la bagnole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car (slang)", + "example_sentence_native": "Ma vieille bagnole a encore démarré ce matin.", + "example_sentence_english": "My old car started again this morning.", + "pos": "noun", + "word_frequency": 7721 + }, + { + "word": "baigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bathe", + "example_sentence_native": "J'aime me baigner dans la mer en été.", + "example_sentence_english": "I like to bathe in the sea in summer.", + "pos": "verb", + "word_frequency": 7722 + }, + { + "word": "caravane", + "article_with_word": "la caravane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caravan", + "example_sentence_native": "Nous avons passé nos vacances dans une caravane.", + "example_sentence_english": "We spent our holidays in a caravan.", + "pos": "noun", + "word_frequency": 7727 + }, + { + "word": "causé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caused", + "example_sentence_native": "Les dégâts causés par la tempête sont importants.", + "example_sentence_english": "The damage caused by the storm is significant.", + "pos": "adjective", + "word_frequency": 7728 + }, + { + "word": "chaleureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warm;friendly", + "example_sentence_native": "Ils nous ont réservé un accueil très chaleureux.", + "example_sentence_english": "They gave us a very warm welcome.", + "pos": "adjective", + "word_frequency": 7730 + }, + { + "word": "chariot", + "article_with_word": "le chariot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cart;trolley", + "example_sentence_native": "J'ai rempli mon chariot de courses au supermarché.", + "example_sentence_english": "I filled my shopping cart at the supermarket.", + "pos": "noun", + "word_frequency": 7731 + }, + { + "word": "cheikh", + "article_with_word": "le cheikh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheikh", + "example_sentence_native": "Le cheikh a prononcé un discours important.", + "example_sentence_english": "The sheikh delivered an important speech.", + "pos": "cheikh", + "word_frequency": 7733 + }, + { + "word": "compréhensible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "understandable", + "example_sentence_native": "Son explication était très claire et compréhensible.", + "example_sentence_english": "His explanation was very clear and understandable.", + "pos": "adjective", + "word_frequency": 7735 + }, + { + "word": "contredire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contradict", + "example_sentence_native": "Il n'aime pas qu'on le contredise.", + "example_sentence_english": "He doesn't like to be contradicted.", + "pos": "verb", + "word_frequency": 7737 + }, + { + "word": "crèche", + "article_with_word": "la crèche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nursery;daycare", + "example_sentence_native": "Mon enfant va à la crèche tous les jours.", + "example_sentence_english": "My child goes to daycare every day.", + "pos": "noun", + "word_frequency": 7739 + }, + { + "word": "cégep", + "article_with_word": "le cégep", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "CEGEP (General and Vocational College in Quebec)", + "example_sentence_native": "Après le secondaire, il est allé au cégep.", + "example_sentence_english": "After high school, he went to CEGEP.", + "pos": "cégep", + "word_frequency": 7740 + }, + { + "word": "différer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to differ;to postpone", + "example_sentence_native": "Leurs opinions diffèrent sur ce sujet.", + "example_sentence_english": "Their opinions differ on this subject.", + "pos": "verb", + "word_frequency": 7741 + }, + { + "word": "distribué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distributed", + "example_sentence_native": "Les tracts ont été distribués dans la rue.", + "example_sentence_english": "The leaflets were distributed in the street.", + "pos": "adjective", + "word_frequency": 7742 + }, + { + "word": "dividende", + "article_with_word": "le dividende", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dividend", + "example_sentence_native": "La société a versé un dividende à ses actionnaires.", + "example_sentence_english": "The company paid a dividend to its shareholders.", + "pos": "noun", + "word_frequency": 7743 + }, + { + "word": "divinité", + "article_with_word": "la divinité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divinity;deity", + "example_sentence_native": "Dans la mythologie grecque, Zeus est une divinité majeure.", + "example_sentence_english": "In Greek mythology, Zeus is a major deity.", + "pos": "noun", + "word_frequency": 7744 + }, + { + "word": "donation", + "article_with_word": "la donation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donation", + "example_sentence_native": "Il a fait une donation généreuse à l'association.", + "example_sentence_english": "He made a generous donation to the association.", + "pos": "noun", + "word_frequency": 7745 + }, + { + "word": "draguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flirt;to hit on", + "example_sentence_native": "Il essaie de draguer toutes les filles qu'il rencontre.", + "example_sentence_english": "He tries to flirt with every girl he meets.", + "pos": "verb", + "word_frequency": 7746 + }, + { + "word": "durement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hard;harshly", + "example_sentence_native": "Il a travaillé durement pour réussir son examen.", + "example_sentence_english": "He worked hard to pass his exam.", + "pos": "adverb", + "word_frequency": 7748 + }, + { + "word": "décerner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to award;to bestow", + "example_sentence_native": "Le jury a décidé de décerner le prix au jeune artiste.", + "example_sentence_english": "The jury decided to award the prize to the young artist.", + "pos": "verb", + "word_frequency": 7749 + }, + { + "word": "déclenchement", + "article_with_word": "le déclenchement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triggering;initiation", + "example_sentence_native": "Le déclenchement de l'alarme a surpris tout le monde.", + "example_sentence_english": "The triggering of the alarm surprised everyone.", + "pos": "noun", + "word_frequency": 7750 + }, + { + "word": "défiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to parade;to march;to scroll", + "example_sentence_native": "Les soldats ont défilé devant la foule.", + "example_sentence_english": "The soldiers paraded in front of the crowd.", + "pos": "verb", + "word_frequency": 7751 + }, + { + "word": "déguisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disguised", + "example_sentence_native": "Il est arrivé à la fête déguisé en super-héros.", + "example_sentence_english": "He arrived at the party disguised as a superhero.", + "pos": "adjective", + "word_frequency": 7752 + }, + { + "word": "délibérément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberately", + "example_sentence_native": "Il a délibérément ignoré mes conseils.", + "example_sentence_english": "He deliberately ignored my advice.", + "pos": "adverb", + "word_frequency": 7753 + }, + { + "word": "espion", + "article_with_word": "l'espion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spy", + "example_sentence_native": "L'espion a été capturé derrière les lignes ennemies.", + "example_sentence_english": "The spy was captured behind enemy lines.", + "pos": "noun", + "word_frequency": 7757 + }, + { + "word": "guitariste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guitarist", + "example_sentence_native": "Mon frère est un excellent guitariste.", + "example_sentence_english": "My brother is an excellent guitarist.", + "pos": "noun", + "word_frequency": 7762 + }, + { + "word": "gymnase", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gymnasium;gym", + "example_sentence_native": "Nous allons au gymnase pour faire du sport.", + "example_sentence_english": "We go to the gym to play sports.", + "pos": "noun", + "word_frequency": 7763 + }, + { + "word": "idéalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ideally", + "example_sentence_native": "Idéalement, nous devrions partir avant midi.", + "example_sentence_english": "Ideally, we should leave before noon.", + "pos": "adverb", + "word_frequency": 7765 + }, + { + "word": "immatriculation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registration (vehicle;student)", + "example_sentence_native": "Le numéro d'immatriculation est sur la plaque.", + "example_sentence_english": "The registration number is on the plate.", + "pos": "noun", + "word_frequency": 7767 + }, + { + "word": "impératrice", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empress", + "example_sentence_native": "L'impératrice régnait sur un vaste empire.", + "example_sentence_english": "The empress reigned over a vast empire.", + "pos": "noun", + "word_frequency": 7768 + }, + { + "word": "indiqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indicated;suitable", + "example_sentence_native": "Le chemin indiqué est le plus court.", + "example_sentence_english": "The indicated path is the shortest.", + "pos": "adjective", + "word_frequency": 7769 + }, + { + "word": "jésuite", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Jesuit", + "example_sentence_native": "Il a étudié dans un collège jésuite.", + "example_sentence_english": "He studied at a Jesuit college.", + "pos": "noun", + "word_frequency": 7774 + }, + { + "word": "lauréat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laureate;winner", + "example_sentence_native": "Le lauréat du prix Nobel sera annoncé demain.", + "example_sentence_english": "The Nobel Prize laureate will be announced tomorrow.", + "pos": "noun", + "word_frequency": 7777 + }, + { + "word": "libéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freed;released", + "example_sentence_native": "Le prisonnier a été libéré hier.", + "example_sentence_english": "The prisoner was freed yesterday.", + "pos": "adjective", + "word_frequency": 7778 + }, + { + "word": "légèreté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightness;frivolity", + "example_sentence_native": "Elle a abordé le sujet avec une certaine légèreté.", + "example_sentence_english": "She approached the subject with a certain lightness.", + "pos": "noun", + "word_frequency": 7781 + }, + { + "word": "messagerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messaging;mailbox;courier service", + "example_sentence_native": "J'ai un nouveau message dans ma messagerie vocale.", + "example_sentence_english": "I have a new message in my voicemail.", + "pos": "noun", + "word_frequency": 7782 + }, + { + "word": "minoritaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minority (adj.)", + "example_sentence_native": "Le parti minoritaire a exprimé son désaccord.", + "example_sentence_english": "The minority party expressed its disagreement.", + "pos": "adjective", + "word_frequency": 7783 + }, + { + "word": "multinationale", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multinational (company)", + "example_sentence_native": "Cette multinationale opère dans plusieurs pays.", + "example_sentence_english": "This multinational operates in several countries.", + "pos": "noun", + "word_frequency": 7786 + }, + { + "word": "mutuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutual", + "example_sentence_native": "Ils ont un respect mutuel.", + "example_sentence_english": "They have mutual respect.", + "pos": "adjective", + "word_frequency": 7787 + }, + { + "word": "narrateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrator", + "example_sentence_native": "Le narrateur de l'histoire est un enfant.", + "example_sentence_english": "The narrator of the story is a child.", + "pos": "noun", + "word_frequency": 7788 + }, + { + "word": "norvégien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Norwegian", + "example_sentence_native": "Il parle couramment le norvégien.", + "example_sentence_english": "He speaks Norwegian fluently.", + "pos": "adjective", + "word_frequency": 7791 + }, + { + "word": "obésité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obesity", + "example_sentence_native": "L'obésité est un problème de santé publique.", + "example_sentence_english": "Obesity is a public health problem.", + "pos": "noun", + "word_frequency": 7792 + }, + { + "word": "orge", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barley", + "example_sentence_native": "La bière est souvent brassée à partir d'orge.", + "example_sentence_english": "Beer is often brewed from barley.", + "pos": "noun", + "word_frequency": 7793 + }, + { + "word": "parvenu", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upstart;social climber", + "example_sentence_native": "Il est considéré comme un parvenu dans ce milieu.", + "example_sentence_english": "He is considered an upstart in this circle.", + "pos": "noun", + "word_frequency": 7794 + }, + { + "word": "peuplé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "populated;inhabited", + "example_sentence_native": "C'est une région densément peuplée.", + "example_sentence_english": "It's a densely populated region.", + "pos": "adjective", + "word_frequency": 7796 + }, + { + "word": "plâtre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster;cast", + "example_sentence_native": "Il a eu le bras dans le plâtre pendant six semaines.", + "example_sentence_english": "He had his arm in a cast for six weeks.", + "pos": "noun", + "word_frequency": 7797 + }, + { + "word": "pole", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pole", + "example_sentence_native": "Le pôle Nord est couvert de glace.", + "example_sentence_english": "The North Pole is covered in ice.", + "pos": "pole", + "word_frequency": 7799 + }, + { + "word": "polytechnique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polytechnic", + "example_sentence_native": "Il a étudié dans une école polytechnique.", + "example_sentence_english": "He studied at a polytechnic school.", + "pos": "adjective", + "word_frequency": 7800 + }, + { + "word": "programmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to program", + "example_sentence_native": "Je dois programmer mon réveil pour demain.", + "example_sentence_english": "I need to program my alarm for tomorrow.", + "pos": "verb", + "word_frequency": 7801 + }, + { + "word": "projeté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projected", + "example_sentence_native": "Le film a été projeté sur grand écran.", + "example_sentence_english": "The film was projected onto a large screen.", + "pos": "adjective", + "word_frequency": 7802 + }, + { + "word": "promoteur", + "article_with_word": "le promoteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developer;promoter", + "example_sentence_native": "Le promoteur immobilier a construit de nouveaux appartements.", + "example_sentence_english": "The real estate developer built new apartments.", + "pos": "noun", + "word_frequency": 7803 + }, + { + "word": "provision", + "article_with_word": "la provision", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "provision;supply", + "example_sentence_native": "Nous avons fait des provisions pour l'hiver.", + "example_sentence_english": "We stocked up provisions for the winter.", + "pos": "noun", + "word_frequency": 7804 + }, + { + "word": "préoccuper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worry;to concern", + "example_sentence_native": "Ce problème me préoccupe beaucoup.", + "example_sentence_english": "This problem worries me a lot.", + "pos": "verb", + "word_frequency": 7805 + }, + { + "word": "préparatif", + "article_with_word": "le préparatif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preparation", + "example_sentence_native": "Les préparatifs du mariage sont presque terminés.", + "example_sentence_english": "The wedding preparations are almost finished.", + "pos": "noun", + "word_frequency": 7806 + }, + { + "word": "rangé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tidy;put away", + "example_sentence_native": "Sa chambre est toujours très rangée.", + "example_sentence_english": "His room is always very tidy.", + "pos": "adjective", + "word_frequency": 7807 + }, + { + "word": "reconstitution", + "article_with_word": "la reconstitution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconstruction;re-enactment", + "example_sentence_native": "La police a demandé une reconstitution des faits.", + "example_sentence_english": "The police requested a re-enactment of the events.", + "pos": "noun", + "word_frequency": 7809 + }, + { + "word": "redouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dread;to fear", + "example_sentence_native": "Il redoute l'examen de demain.", + "example_sentence_english": "He dreads tomorrow's exam.", + "pos": "verb", + "word_frequency": 7810 + }, + { + "word": "repli", + "article_with_word": "le repli", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retreat;downturn", + "example_sentence_native": "On observe un repli des marchés financiers.", + "example_sentence_english": "We are observing a downturn in the financial markets.", + "pos": "noun", + "word_frequency": 7811 + }, + { + "word": "retarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to delay;to slow down", + "example_sentence_native": "Le mauvais temps a retardé notre vol.", + "example_sentence_english": "Bad weather delayed our flight.", + "pos": "verb", + "word_frequency": 7812 + }, + { + "word": "révélé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revealed;disclosed", + "example_sentence_native": "Le secret a été révélé au public.", + "example_sentence_english": "The secret was revealed to the public.", + "pos": "adjective", + "word_frequency": 7816 + }, + { + "word": "solliciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to solicit;to request", + "example_sentence_native": "Il a sollicité l'aide de ses collègues.", + "example_sentence_english": "He solicited the help of his colleagues.", + "pos": "verb", + "word_frequency": 7820 + }, + { + "word": "soutenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustained;supported;formal", + "example_sentence_native": "Il parle un français très soutenu.", + "example_sentence_english": "He speaks very formal French.", + "pos": "adjective", + "word_frequency": 7821 + }, + { + "word": "steak", + "article_with_word": "le steak", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "steak", + "example_sentence_native": "Je voudrais un steak bien cuit.", + "example_sentence_english": "I would like a well-done steak.", + "pos": "noun", + "word_frequency": 7823 + }, + { + "word": "velours", + "article_with_word": "le velours", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "velvet", + "example_sentence_native": "Elle portait une robe en velours.", + "example_sentence_english": "She was wearing a velvet dress.", + "pos": "noun", + "word_frequency": 7831 + }, + { + "word": "vignoble", + "article_with_word": "le vignoble", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vineyard", + "example_sentence_native": "La région est célèbre pour ses vignobles.", + "example_sentence_english": "The region is famous for its vineyards.", + "pos": "noun", + "word_frequency": 7833 + }, + { + "word": "vodka", + "article_with_word": "la vodka", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vodka", + "example_sentence_native": "Il a commandé une vodka-orange.", + "example_sentence_english": "He ordered a vodka-orange.", + "pos": "vodka", + "word_frequency": 7834 + }, + { + "word": "vécu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experienced;lived", + "example_sentence_native": "C'est une expérience très forte qu'il a vécue.", + "example_sentence_english": "It's a very strong experience that he lived.", + "pos": "adjective", + "word_frequency": 7835 + }, + { + "word": "élargissement", + "article_with_word": "l'élargissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "widening;enlargement", + "example_sentence_native": "L'élargissement de la route est nécessaire.", + "example_sentence_english": "The widening of the road is necessary.", + "pos": "noun", + "word_frequency": 7836 + }, + { + "word": "érosion", + "article_with_word": "l'érosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erosion", + "example_sentence_native": "L'érosion des sols est un problème environnemental.", + "example_sentence_english": "Soil erosion is an environmental problem.", + "pos": "noun", + "word_frequency": 7837 + }, + { + "word": "abstraction", + "article_with_word": "l'abstraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstraction", + "example_sentence_native": "Il est difficile de comprendre ce concept en abstraction.", + "example_sentence_english": "It is difficult to understand this concept in abstraction.", + "pos": "noun", + "word_frequency": 7838 + }, + { + "word": "adèle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Adèle (name)", + "example_sentence_native": "Adèle est ma meilleure amie.", + "example_sentence_english": "Adèle is my best friend.", + "pos": "noun", + "word_frequency": 7839 + }, + { + "word": "agrandir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enlarge", + "example_sentence_native": "Nous devons agrandir la pièce.", + "example_sentence_english": "We need to enlarge the room.", + "pos": "verb", + "word_frequency": 7840 + }, + { + "word": "antécédent", + "article_with_word": "un antécédent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antecedent", + "example_sentence_native": "Il a des antécédents judiciaires.", + "example_sentence_english": "He has a criminal record.", + "pos": "noun", + "word_frequency": 7841 + }, + { + "word": "approfondi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in-depth", + "example_sentence_native": "Il a fait une analyse approfondie du problème.", + "example_sentence_english": "He did an in-depth analysis of the problem.", + "pos": "adjective", + "word_frequency": 7842 + }, + { + "word": "apte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fit", + "example_sentence_native": "Il est apte à occuper ce poste.", + "example_sentence_english": "He is fit to hold this position.", + "pos": "adjective", + "word_frequency": 7843 + }, + { + "word": "blâme", + "article_with_word": "le blâme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blame", + "example_sentence_native": "Il a reçu un blâme pour son comportement.", + "example_sentence_english": "He received a reprimand for his behavior.", + "pos": "noun", + "word_frequency": 7844 + }, + { + "word": "bobo", + "article_with_word": "un bobo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boo-boo", + "example_sentence_native": "Le petit est tombé et s'est fait un bobo au genou.", + "example_sentence_english": "The little one fell and got a boo-boo on his knee.", + "pos": "noun", + "word_frequency": 7845 + }, + { + "word": "brèche", + "article_with_word": "la brèche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breach", + "example_sentence_native": "Ils ont créé une brèche dans le mur.", + "example_sentence_english": "They created a breach in the wall.", + "pos": "noun", + "word_frequency": 7846 + }, + { + "word": "chaux", + "article_with_word": "la chaux", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lime", + "example_sentence_native": "On utilise la chaux pour la construction.", + "example_sentence_english": "Lime is used for construction.", + "pos": "noun", + "word_frequency": 7848 + }, + { + "word": "coefficient", + "article_with_word": "le coefficient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coefficient", + "example_sentence_native": "Le coefficient de frottement est important.", + "example_sentence_english": "The friction coefficient is important.", + "pos": "noun", + "word_frequency": 7851 + }, + { + "word": "conformer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conform", + "example_sentence_native": "Il doit se conformer aux règles.", + "example_sentence_english": "He must conform to the rules.", + "pos": "verb", + "word_frequency": 7852 + }, + { + "word": "continuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuously", + "example_sentence_native": "Il pleut continuellement depuis ce matin.", + "example_sentence_english": "It has been raining continuously since this morning.", + "pos": "adverb", + "word_frequency": 7853 + }, + { + "word": "croisement", + "article_with_word": "le croisement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossing", + "example_sentence_native": "Le croisement des rues est dangereux.", + "example_sentence_english": "The street crossing is dangerous.", + "pos": "noun", + "word_frequency": 7854 + }, + { + "word": "cruauté", + "article_with_word": "la cruauté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruelty", + "example_sentence_native": "La cruauté envers les animaux est inacceptable.", + "example_sentence_english": "Cruelty to animals is unacceptable.", + "pos": "noun", + "word_frequency": 7855 + }, + { + "word": "cumul", + "article_with_word": "le cumul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accumulation", + "example_sentence_native": "Le cumul des mandats est interdit.", + "example_sentence_english": "The accumulation of mandates is forbidden.", + "pos": "noun", + "word_frequency": 7856 + }, + { + "word": "décevant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappointing", + "example_sentence_native": "Le résultat est très décevant.", + "example_sentence_english": "The result is very disappointing.", + "pos": "adjective", + "word_frequency": 7858 + }, + { + "word": "déchirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tear", + "example_sentence_native": "Il a déchiré la lettre.", + "example_sentence_english": "He tore the letter.", + "pos": "verb", + "word_frequency": 7859 + }, + { + "word": "défier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defy", + "example_sentence_native": "Il a défié l'autorité.", + "example_sentence_english": "He defied authority.", + "pos": "verb", + "word_frequency": 7860 + }, + { + "word": "dépassement", + "article_with_word": "le dépassement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overtaking", + "example_sentence_native": "Le dépassement de vitesse est dangereux.", + "example_sentence_english": "Speeding is dangerous.", + "pos": "noun", + "word_frequency": 7861 + }, + { + "word": "désespérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despair", + "example_sentence_native": "Il ne faut jamais désespérer.", + "example_sentence_english": "One must never despair.", + "pos": "verb", + "word_frequency": 7862 + }, + { + "word": "exagérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exaggerate", + "example_sentence_native": "Il a tendance à exagérer.", + "example_sentence_english": "He tends to exaggerate.", + "pos": "verb", + "word_frequency": 7865 + }, + { + "word": "fasciste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascist", + "example_sentence_native": "C'est une idéologie fasciste.", + "example_sentence_english": "It is a fascist ideology.", + "pos": "adjective", + "word_frequency": 7866 + }, + { + "word": "fermeté", + "article_with_word": "la fermeté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmness", + "example_sentence_native": "Il a montré une grande fermeté dans sa décision.", + "example_sentence_english": "He showed great firmness in his decision.", + "pos": "noun", + "word_frequency": 7867 + }, + { + "word": "flagrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flagrant", + "example_sentence_native": "Il a été pris en flagrant délit.", + "example_sentence_english": "He was caught in the act.", + "pos": "adjective", + "word_frequency": 7868 + }, + { + "word": "flamand", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Flemish", + "example_sentence_native": "Il parle le flamand.", + "example_sentence_english": "He speaks Flemish.", + "pos": "adjective", + "word_frequency": 7869 + }, + { + "word": "fondamentalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamentally", + "example_sentence_native": "Fondamentalement, nous sommes d'accord.", + "example_sentence_english": "Fundamentally, we agree.", + "pos": "adverb", + "word_frequency": 7870 + }, + { + "word": "formulation", + "article_with_word": "la formulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formulation", + "example_sentence_native": "La formulation de la question est importante.", + "example_sentence_english": "The wording of the question is important.", + "pos": "noun", + "word_frequency": 7871 + }, + { + "word": "fraise", + "article_with_word": "la fraise", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "strawberry", + "example_sentence_native": "J'adore les fraises.", + "example_sentence_english": "I love strawberries.", + "pos": "noun", + "word_frequency": 7872 + }, + { + "word": "frappant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striking", + "example_sentence_native": "C'est une ressemblance frappante.", + "example_sentence_english": "It's a striking resemblance.", + "pos": "adjective", + "word_frequency": 7873 + }, + { + "word": "frustrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrating", + "example_sentence_native": "C'est une situation très frustrante.", + "example_sentence_english": "It's a very frustrating situation.", + "pos": "adjective", + "word_frequency": 7874 + }, + { + "word": "gai", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheerful", + "example_sentence_native": "Elle est toujours très gaie.", + "example_sentence_english": "She is always very cheerful.", + "pos": "adjective", + "word_frequency": 7875 + }, + { + "word": "gif", + "article_with_word": "le GIF", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "GIF", + "example_sentence_native": "J'ai envoyé un GIF amusant.", + "example_sentence_english": "I sent a funny GIF.", + "pos": "noun", + "word_frequency": 7876 + }, + { + "word": "gothique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gothic", + "example_sentence_native": "La cathédrale est de style gothique.", + "example_sentence_english": "The cathedral is in Gothic style.", + "pos": "adjective", + "word_frequency": 7877 + }, + { + "word": "griffe", + "article_with_word": "la griffe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "claw", + "example_sentence_native": "Le chat a sorti ses griffes.", + "example_sentence_english": "The cat extended its claws.", + "pos": "noun", + "word_frequency": 7878 + }, + { + "word": "humaniste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanist", + "example_sentence_native": "C'est une approche très humaniste de l'éducation.", + "example_sentence_english": "It's a very humanist approach to education.", + "pos": "adjective", + "word_frequency": 7881 + }, + { + "word": "imagerie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imaging", + "example_sentence_native": "L'imagerie médicale a fait d'énormes progrès.", + "example_sentence_english": "Medical imaging has made enormous progress.", + "pos": "noun", + "word_frequency": 7882 + }, + { + "word": "implanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implant;to establish", + "example_sentence_native": "L'entreprise a décidé d'implanter une nouvelle usine dans la région.", + "example_sentence_english": "The company decided to establish a new factory in the region.", + "pos": "verb", + "word_frequency": 7883 + }, + { + "word": "insolite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unusual;strange", + "example_sentence_native": "Il a raconté une histoire vraiment insolite.", + "example_sentence_english": "He told a truly unusual story.", + "pos": "adjective", + "word_frequency": 7884 + }, + { + "word": "instantanément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instantly", + "example_sentence_native": "La porte s'est ouverte instantanément.", + "example_sentence_english": "The door opened instantly.", + "pos": "adverb", + "word_frequency": 7885 + }, + { + "word": "instauration", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment;institution", + "example_sentence_native": "L'instauration de nouvelles règles est nécessaire.", + "example_sentence_english": "The establishment of new rules is necessary.", + "pos": "noun", + "word_frequency": 7886 + }, + { + "word": "insultant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulting", + "example_sentence_native": "Ses propos étaient très insultants.", + "example_sentence_english": "His remarks were very insulting.", + "pos": "adjective", + "word_frequency": 7887 + }, + { + "word": "judo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "judo", + "example_sentence_native": "Il pratique le judo depuis son enfance.", + "example_sentence_english": "He has been practicing judo since his childhood.", + "pos": "noun", + "word_frequency": 7889 + }, + { + "word": "juriste", + "article_with_word": "le/la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jurist;legal expert", + "example_sentence_native": "Elle travaille comme juriste dans un grand cabinet.", + "example_sentence_english": "She works as a jurist in a large firm.", + "pos": "noun", + "word_frequency": 7890 + }, + { + "word": "labo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lab (laboratory)", + "example_sentence_native": "Nous allons au labo pour faire des expériences.", + "example_sentence_english": "We are going to the lab to do experiments.", + "pos": "noun", + "word_frequency": 7893 + }, + { + "word": "link", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "link", + "example_sentence_native": "Cliquez sur ce link pour plus d'informations.", + "example_sentence_english": "Click on this link for more information.", + "pos": "noun", + "word_frequency": 7894 + }, + { + "word": "loto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lottery;bingo", + "example_sentence_native": "Il a gagné au loto la semaine dernière.", + "example_sentence_english": "He won the lottery last week.", + "pos": "noun", + "word_frequency": 7895 + }, + { + "word": "minable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pathetic;miserable;shabby", + "example_sentence_native": "Son excuse était vraiment minable.", + "example_sentence_english": "His excuse was truly pathetic.", + "pos": "adjective", + "word_frequency": 7898 + }, + { + "word": "moelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marrow", + "example_sentence_native": "La moelle osseuse est essentielle pour la production de sang.", + "example_sentence_english": "Bone marrow is essential for blood production.", + "pos": "noun", + "word_frequency": 7899 + }, + { + "word": "mouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wet;to soak", + "example_sentence_native": "Attention, ne mouille pas tes chaussures.", + "example_sentence_english": "Be careful, don't wet your shoes.", + "pos": "verb", + "word_frequency": 7900 + }, + { + "word": "octroi", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grant;concession;municipal toll", + "example_sentence_native": "L'octroi de cette subvention a été approuvé.", + "example_sentence_english": "The grant of this subsidy has been approved.", + "pos": "noun", + "word_frequency": 7903 + }, + { + "word": "palier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landing (stairs);level;stage", + "example_sentence_native": "Nous nous sommes arrêtés au palier du troisième étage.", + "example_sentence_english": "We stopped at the third-floor landing.", + "pos": "noun", + "word_frequency": 7904 + }, + { + "word": "pathologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathology", + "example_sentence_native": "Il étudie la pathologie des maladies rares.", + "example_sentence_english": "He studies the pathology of rare diseases.", + "pos": "noun", + "word_frequency": 7906 + }, + { + "word": "piece", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room;piece;coin", + "example_sentence_native": "Cette pièce est très lumineuse.", + "example_sentence_english": "This room is very bright.", + "pos": "noun", + "word_frequency": 7908 + }, + { + "word": "plantation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plantation", + "example_sentence_native": "La plantation d'arbres est essentielle pour l'environnement.", + "example_sentence_english": "Tree planting is essential for the environment.", + "pos": "noun", + "word_frequency": 7909 + }, + { + "word": "principauté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "principality", + "example_sentence_native": "Monaco est une petite principauté.", + "example_sentence_english": "Monaco is a small principality.", + "pos": "noun", + "word_frequency": 7910 + }, + { + "word": "processeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processor", + "example_sentence_native": "Le processeur est le cerveau de l'ordinateur.", + "example_sentence_english": "The processor is the brain of the computer.", + "pos": "noun", + "word_frequency": 7911 + }, + { + "word": "préavis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notice (period)", + "example_sentence_native": "Il doit donner un mois de préavis avant de quitter son emploi.", + "example_sentence_english": "He must give one month's notice before leaving his job.", + "pos": "noun", + "word_frequency": 7912 + }, + { + "word": "rallye", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rally", + "example_sentence_native": "Ils ont participé à un rallye automobile.", + "example_sentence_english": "They participated in a car rally.", + "pos": "noun", + "word_frequency": 7915 + }, + { + "word": "rame", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oar;train car;ream (of paper)", + "example_sentence_native": "La rame de métro était bondée.", + "example_sentence_english": "The metro train car was crowded.", + "pos": "noun", + "word_frequency": 7916 + }, + { + "word": "redire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to say again;to repeat", + "example_sentence_native": "Peux-tu redire ce que tu as dit ?", + "example_sentence_english": "Can you repeat what you said?", + "pos": "verb", + "word_frequency": 7917 + }, + { + "word": "relater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relate;to recount", + "example_sentence_native": "Il a relaté les événements de la journée.", + "example_sentence_english": "He recounted the day's events.", + "pos": "verb", + "word_frequency": 7918 + }, + { + "word": "remix", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remix", + "example_sentence_native": "J'adore ce remix de la chanson originale.", + "example_sentence_english": "I love this remix of the original song.", + "pos": "noun", + "word_frequency": 7919 + }, + { + "word": "respiratoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respiratory", + "example_sentence_native": "Il a des problèmes respiratoires.", + "example_sentence_english": "He has respiratory problems.", + "pos": "adjective", + "word_frequency": 7920 + }, + { + "word": "revendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resell", + "example_sentence_native": "Je vais revendre ma vieille voiture.", + "example_sentence_english": "I am going to resell my old car.", + "pos": "verb", + "word_frequency": 7921 + }, + { + "word": "rigolo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "funny;amusing", + "example_sentence_native": "Ce film est vraiment rigolo.", + "example_sentence_english": "This movie is really funny.", + "pos": "adjective", + "word_frequency": 7922 + }, + { + "word": "robuste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "robust;sturdy", + "example_sentence_native": "Cette table est très robuste.", + "example_sentence_english": "This table is very sturdy.", + "pos": "adjective", + "word_frequency": 7923 + }, + { + "word": "secrètement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretly", + "example_sentence_native": "Il a agi secrètement.", + "example_sentence_english": "He acted secretly.", + "pos": "adverb", + "word_frequency": 7925 + }, + { + "word": "seigneurie", + "article_with_word": "la seigneurie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seigneury;lordship", + "example_sentence_native": "La seigneurie était un système féodal.", + "example_sentence_english": "The seigneury was a feudal system.", + "pos": "noun", + "word_frequency": 7926 + }, + { + "word": "souterrain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underground;subterranean", + "example_sentence_native": "Il y a un passage souterrain.", + "example_sentence_english": "There is an underground passage.", + "pos": "adjective", + "word_frequency": 7928 + }, + { + "word": "squelette", + "article_with_word": "le squelette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skeleton", + "example_sentence_native": "Le squelette humain est complexe.", + "example_sentence_english": "The human skeleton is complex.", + "pos": "noun", + "word_frequency": 7929 + }, + { + "word": "subitement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suddenly", + "example_sentence_native": "Il est parti subitement.", + "example_sentence_english": "He left suddenly.", + "pos": "adverb", + "word_frequency": 7930 + }, + { + "word": "tango", + "article_with_word": "le tango", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tango", + "example_sentence_native": "J'adore danser le tango.", + "example_sentence_english": "I love dancing the tango.", + "pos": "noun", + "word_frequency": 7931 + }, + { + "word": "toc", + "article_with_word": "le toc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "OCD;knock", + "example_sentence_native": "Il souffre de TOC.", + "example_sentence_english": "He suffers from OCD.", + "pos": "noun", + "word_frequency": 7933 + }, + { + "word": "tournure", + "article_with_word": "la tournure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn (of phrase);appearance", + "example_sentence_native": "J'aime la tournure de cette phrase.", + "example_sentence_english": "I like the turn of this phrase.", + "pos": "noun", + "word_frequency": 7934 + }, + { + "word": "tuerie", + "article_with_word": "la tuerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "massacre;slaughter;(slang) something amazing", + "example_sentence_native": "Ce concert était une vraie tuerie!", + "example_sentence_english": "This concert was absolutely amazing!", + "pos": "noun", + "word_frequency": 7937 + }, + { + "word": "wallon", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Walloon", + "example_sentence_native": "Le dialecte wallon est parlé en Belgique.", + "example_sentence_english": "The Walloon dialect is spoken in Belgium.", + "pos": "adjective", + "word_frequency": 7939 + }, + { + "word": "zoom", + "article_with_word": "le zoom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zoom (lens;meeting)", + "example_sentence_native": "Fais un zoom sur cette image.", + "example_sentence_english": "Zoom in on this image.", + "pos": "noun", + "word_frequency": 7943 + }, + { + "word": "équivaloir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be equivalent to", + "example_sentence_native": "Un euro équivaut à environ 1,08 dollar.", + "example_sentence_english": "One euro is equivalent to about 1.08 dollars.", + "pos": "verb", + "word_frequency": 7944 + }, + { + "word": "éventail", + "article_with_word": "un éventail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan (handheld);range;variety", + "example_sentence_native": "Il a présenté un large éventail de solutions.", + "example_sentence_english": "He presented a wide range of solutions.", + "pos": "noun", + "word_frequency": 7945 + }, + { + "word": "affectation", + "article_with_word": "l'affectation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assignment;allocation;affectation", + "example_sentence_native": "Son affectation à ce poste est temporaire.", + "example_sentence_english": "His assignment to this position is temporary.", + "pos": "noun", + "word_frequency": 7948 + }, + { + "word": "aisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easy;well-off;comfortable", + "example_sentence_native": "C'est une tâche aisée.", + "example_sentence_english": "It's an easy task.", + "pos": "adjective", + "word_frequency": 7950 + }, + { + "word": "aménager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrange;to fit out;to develop", + "example_sentence_native": "Nous allons aménager le jardin.", + "example_sentence_english": "We are going to arrange the garden.", + "pos": "verb", + "word_frequency": 7951 + }, + { + "word": "anormal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abnormal", + "example_sentence_native": "Ce comportement est anormal.", + "example_sentence_english": "This behavior is abnormal.", + "pos": "adjective", + "word_frequency": 7952 + }, + { + "word": "antibiotique", + "article_with_word": "un antibiotique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antibiotic", + "example_sentence_native": "Le médecin a prescrit un antibiotique.", + "example_sentence_english": "The doctor prescribed an antibiotic.", + "pos": "noun", + "word_frequency": 7953 + }, + { + "word": "apprenti", + "article_with_word": "un apprenti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprentice", + "example_sentence_native": "Il travaille comme apprenti mécanicien.", + "example_sentence_english": "He works as an apprentice mechanic.", + "pos": "noun", + "word_frequency": 7954 + }, + { + "word": "aspiration", + "article_with_word": "l'aspiration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspiration;suction", + "example_sentence_native": "Il a de grandes aspirations pour l'avenir.", + "example_sentence_english": "He has great aspirations for the future.", + "pos": "noun", + "word_frequency": 7956 + }, + { + "word": "assureur", + "article_with_word": "l'assureur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurer;insurance company", + "example_sentence_native": "L'assureur a remboursé les dégâts.", + "example_sentence_english": "The insurer reimbursed the damages.", + "pos": "noun", + "word_frequency": 7957 + }, + { + "word": "blâmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blame", + "example_sentence_native": "Il ne faut pas blâmer les autres pour ses propres erreurs.", + "example_sentence_english": "One should not blame others for one's own mistakes.", + "pos": "verb", + "word_frequency": 7961 + }, + { + "word": "boxeur", + "article_with_word": "le boxeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxer", + "example_sentence_native": "Le boxeur s'entraîne tous les jours pour le championnat.", + "example_sentence_english": "The boxer trains every day for the championship.", + "pos": "noun", + "word_frequency": 7962 + }, + { + "word": "butin", + "article_with_word": "le butin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loot;spoils", + "example_sentence_native": "Les voleurs ont partagé le butin après le cambriolage.", + "example_sentence_english": "The thieves shared the loot after the burglary.", + "pos": "noun", + "word_frequency": 7964 + }, + { + "word": "chrono", + "article_with_word": "le chrono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stopwatch;timer (informal)", + "example_sentence_native": "Il a battu le record au chrono.", + "example_sentence_english": "He broke the record on the stopwatch.", + "pos": "noun", + "word_frequency": 7968 + }, + { + "word": "clémence", + "article_with_word": "la clémence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clemency;leniency", + "example_sentence_native": "Le juge a fait preuve de clémence envers l'accusé.", + "example_sentence_english": "The judge showed clemency towards the accused.", + "pos": "noun", + "word_frequency": 7971 + }, + { + "word": "collaborer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collaborate", + "example_sentence_native": "Nous devons collaborer pour réussir ce projet.", + "example_sentence_english": "We must collaborate to succeed in this project.", + "pos": "verb", + "word_frequency": 7972 + }, + { + "word": "contraction", + "article_with_word": "la contraction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraction", + "example_sentence_native": "La contraction musculaire est un processus complexe.", + "example_sentence_english": "Muscle contraction is a complex process.", + "pos": "noun", + "word_frequency": 7973 + }, + { + "word": "convenable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitable;appropriate", + "example_sentence_native": "Cette tenue n'est pas convenable pour l'occasion.", + "example_sentence_english": "This outfit is not suitable for the occasion.", + "pos": "adjective", + "word_frequency": 7974 + }, + { + "word": "corrompre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to corrupt;to bribe", + "example_sentence_native": "Il est illégal de tenter de corrompre un fonctionnaire.", + "example_sentence_english": "It is illegal to try to corrupt an official.", + "pos": "verb", + "word_frequency": 7975 + }, + { + "word": "corrélation", + "article_with_word": "la corrélation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correlation", + "example_sentence_native": "Il existe une forte corrélation entre ces deux phénomènes.", + "example_sentence_english": "There is a strong correlation between these two phenomena.", + "pos": "noun", + "word_frequency": 7976 + }, + { + "word": "créneau", + "article_with_word": "le créneau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "niche;slot;time slot;parking space", + "example_sentence_native": "J'ai trouvé un créneau pour me garer.", + "example_sentence_english": "I found a parking space.", + "pos": "noun", + "word_frequency": 7977 + }, + { + "word": "crêpe", + "article_with_word": "la crêpe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crepe;pancake", + "example_sentence_native": "J'aimerais une crêpe au sucre, s'il vous plaît.", + "example_sentence_english": "I would like a sugar crepe, please.", + "pos": "noun", + "word_frequency": 7978 + }, + { + "word": "diffamation", + "article_with_word": "la diffamation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defamation;libel", + "example_sentence_native": "Il a porté plainte pour diffamation.", + "example_sentence_english": "He filed a complaint for defamation.", + "pos": "noun", + "word_frequency": 7983 + }, + { + "word": "doublement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubly;twice", + "example_sentence_native": "Il est doublement important de vérifier les faits.", + "example_sentence_english": "It is doubly important to check the facts.", + "pos": "adverb", + "word_frequency": 7984 + }, + { + "word": "débloquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unblock;to unlock;to release", + "example_sentence_native": "J'ai réussi à débloquer mon téléphone.", + "example_sentence_english": "I managed to unblock my phone.", + "pos": "verb", + "word_frequency": 7986 + }, + { + "word": "décoller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take off (plane);to unstick;to peel off", + "example_sentence_native": "L'avion va décoller dans dix minutes.", + "example_sentence_english": "The plane will take off in ten minutes.", + "pos": "verb", + "word_frequency": 7987 + }, + { + "word": "dégrader", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to degrade;to damage;to deteriorate", + "example_sentence_native": "La pollution peut dégrader l'environnement.", + "example_sentence_english": "Pollution can degrade the environment.", + "pos": "verb", + "word_frequency": 7988 + }, + { + "word": "délinquant", + "article_with_word": "le délinquant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquent;offender", + "example_sentence_native": "Le jeune délinquant a été arrêté par la police.", + "example_sentence_english": "The young delinquent was arrested by the police.", + "pos": "noun", + "word_frequency": 7989 + }, + { + "word": "encaisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cash (a check);to take (a blow);to absorb", + "example_sentence_native": "Il doit encaisser ce chèque avant la fin du mois.", + "example_sentence_english": "He must cash this check before the end of the month.", + "pos": "verb", + "word_frequency": 7993 + }, + { + "word": "endommager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to damage;to harm", + "example_sentence_native": "L'incendie a gravement endommagé le bâtiment.", + "example_sentence_english": "The fire severely damaged the building.", + "pos": "verb", + "word_frequency": 7994 + }, + { + "word": "endurance", + "article_with_word": "l'endurance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endurance;stamina", + "example_sentence_native": "La course exige beaucoup d'endurance.", + "example_sentence_english": "The race requires a lot of endurance.", + "pos": "noun", + "word_frequency": 7995 + }, + { + "word": "fonctionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functional;operational", + "example_sentence_native": "Le nouveau système est entièrement fonctionnel.", + "example_sentence_english": "The new system is fully functional.", + "pos": "adjective", + "word_frequency": 7996 + }, + { + "word": "formuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formulate;to express", + "example_sentence_native": "Il a formulé une question très pertinente.", + "example_sentence_english": "He formulated a very relevant question.", + "pos": "verb", + "word_frequency": 7997 + }, + { + "word": "germanique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Germanic", + "example_sentence_native": "L'anglais est une langue germanique.", + "example_sentence_english": "English is a Germanic language.", + "pos": "adjective", + "word_frequency": 7998 + }, + { + "word": "gouffre", + "article_with_word": "le gouffre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abyss;chasm;gulf", + "example_sentence_native": "Le gouffre financier s'est creusé.", + "example_sentence_english": "The financial abyss deepened.", + "pos": "noun", + "word_frequency": 7999 + }, + { + "word": "grossir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get fat;to grow larger", + "example_sentence_native": "Il a beaucoup grossi pendant les vacances.", + "example_sentence_english": "He gained a lot of weight during the holidays.", + "pos": "verb", + "word_frequency": 8000 + }, + { + "word": "guilde", + "article_with_word": "la guilde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guild", + "example_sentence_native": "La guilde des artisans protège leurs intérêts.", + "example_sentence_english": "The guild of artisans protects their interests.", + "pos": "noun", + "word_frequency": 8001 + }, + { + "word": "géopolitique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geopolitical", + "example_sentence_native": "Nous avons discuté des enjeux géopolitiques actuels.", + "example_sentence_english": "We discussed current geopolitical issues.", + "pos": "adjective", + "word_frequency": 8002 + }, + { + "word": "hydrocarbure", + "article_with_word": "un hydrocarbure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydrocarbon", + "example_sentence_native": "Les hydrocarbures sont une source d'énergie importante.", + "example_sentence_english": "Hydrocarbons are an important energy source.", + "pos": "noun", + "word_frequency": 8005 + }, + { + "word": "incertain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncertain", + "example_sentence_native": "L'avenir est incertain.", + "example_sentence_english": "The future is uncertain.", + "pos": "adjective", + "word_frequency": 8006 + }, + { + "word": "incitation", + "article_with_word": "une incitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incentive;incitement", + "example_sentence_native": "Le gouvernement offre des incitations fiscales.", + "example_sentence_english": "The government offers tax incentives.", + "pos": "noun", + "word_frequency": 8007 + }, + { + "word": "laid", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ugly", + "example_sentence_native": "Ce tableau est vraiment laid.", + "example_sentence_english": "This painting is really ugly.", + "pos": "adjective", + "word_frequency": 8012 + }, + { + "word": "loupe", + "article_with_word": "une loupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnifying glass", + "example_sentence_native": "J'ai utilisé une loupe pour lire les petits caractères.", + "example_sentence_english": "I used a magnifying glass to read the small print.", + "pos": "noun", + "word_frequency": 8013 + }, + { + "word": "lyrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lyrical", + "example_sentence_native": "Sa voix est très lyrique.", + "example_sentence_english": "Her voice is very lyrical.", + "pos": "adjective", + "word_frequency": 8014 + }, + { + "word": "mammifère", + "article_with_word": "un mammifère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mammal", + "example_sentence_native": "La baleine est un mammifère marin.", + "example_sentence_english": "The whale is a marine mammal.", + "pos": "noun", + "word_frequency": 8015 + }, + { + "word": "minimiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to minimize", + "example_sentence_native": "Il ne faut pas minimiser l'importance de ce problème.", + "example_sentence_english": "One must not minimize the importance of this problem.", + "pos": "verb", + "word_frequency": 8018 + }, + { + "word": "monstrueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monstrous", + "example_sentence_native": "C'était une erreur monstrueuse.", + "example_sentence_english": "It was a monstrous mistake.", + "pos": "adjective", + "word_frequency": 8019 + }, + { + "word": "méprise", + "article_with_word": "une méprise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding;mistake", + "example_sentence_native": "Il y a eu une méprise sur l'heure du rendez-vous.", + "example_sentence_english": "There was a misunderstanding about the appointment time.", + "pos": "noun", + "word_frequency": 8022 + }, + { + "word": "neurone", + "article_with_word": "un neurone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neuron", + "example_sentence_native": "Le cerveau est composé de milliards de neurones.", + "example_sentence_english": "The brain is composed of billions of neurons.", + "pos": "noun", + "word_frequency": 8025 + }, + { + "word": "notification", + "article_with_word": "une notification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notification", + "example_sentence_native": "J'ai reçu une notification sur mon téléphone.", + "example_sentence_english": "I received a notification on my phone.", + "pos": "noun", + "word_frequency": 8026 + }, + { + "word": "orphelin", + "article_with_word": "un orphelin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orphan", + "example_sentence_native": "Il a été élevé comme un orphelin.", + "example_sentence_english": "He was raised as an orphan.", + "pos": "noun", + "word_frequency": 8027 + }, + { + "word": "pivot", + "article_with_word": "un pivot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pivot;linchpin", + "example_sentence_native": "Il est le pivot de l'équipe.", + "example_sentence_english": "He is the linchpin of the team.", + "pos": "noun", + "word_frequency": 8031 + }, + { + "word": "planer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to glide;to hover;to daydream", + "example_sentence_native": "L'oiseau plane au-dessus des montagnes.", + "example_sentence_english": "The bird glides above the mountains.", + "pos": "verb", + "word_frequency": 8032 + }, + { + "word": "poêle", + "article_with_word": "une poêle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frying pan", + "example_sentence_native": "J'ai acheté une nouvelle poêle.", + "example_sentence_english": "I bought a new frying pan.", + "pos": "noun", + "word_frequency": 8033 + }, + { + "word": "prédilection", + "article_with_word": "une prédilection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predilection;preference", + "example_sentence_native": "Il a une prédilection pour les romans policiers.", + "example_sentence_english": "He has a predilection for detective novels.", + "pos": "noun", + "word_frequency": 8035 + }, + { + "word": "redevance", + "article_with_word": "une redevance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "royalty;fee;levy", + "example_sentence_native": "Ils doivent payer une redevance pour l'utilisation du logiciel.", + "example_sentence_english": "They must pay a royalty for the use of the software.", + "pos": "noun", + "word_frequency": 8038 + }, + { + "word": "retomber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall again;to fall back", + "example_sentence_native": "Après la pluie, le niveau de l'eau a commencé à retomber.", + "example_sentence_english": "After the rain, the water level started to fall again.", + "pos": "verb", + "word_frequency": 8040 + }, + { + "word": "romance", + "article_with_word": "la romance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "romance", + "example_sentence_native": "Ils ont vécu une belle romance pendant leurs vacances.", + "example_sentence_english": "They lived a beautiful romance during their vacation.", + "pos": "noun", + "word_frequency": 8041 + }, + { + "word": "récidive", + "article_with_word": "la récidive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relapse;recidivism", + "example_sentence_native": "Le patient a malheureusement fait une récidive de sa maladie.", + "example_sentence_english": "The patient unfortunately had a relapse of his illness.", + "pos": "noun", + "word_frequency": 8044 + }, + { + "word": "salarial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salary-related;wage-related", + "example_sentence_native": "Les négociations salariales sont en cours.", + "example_sentence_english": "Salary negotiations are ongoing.", + "pos": "adjective", + "word_frequency": 8045 + }, + { + "word": "scie", + "article_with_word": "la scie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saw", + "example_sentence_native": "Il a utilisé une scie pour couper le bois.", + "example_sentence_english": "He used a saw to cut the wood.", + "pos": "noun", + "word_frequency": 8046 + }, + { + "word": "semer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sow;to scatter", + "example_sentence_native": "Le fermier va semer les graines au printemps.", + "example_sentence_english": "The farmer will sow the seeds in spring.", + "pos": "verb", + "word_frequency": 8047 + }, + { + "word": "sirène", + "article_with_word": "la sirène", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mermaid;siren", + "example_sentence_native": "On a entendu la sirène des pompiers.", + "example_sentence_english": "We heard the fire truck's siren.", + "pos": "noun", + "word_frequency": 8048 + }, + { + "word": "tailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut;to prune;to carve", + "example_sentence_native": "Il faut tailler les rosiers chaque année.", + "example_sentence_english": "You have to prune the rose bushes every year.", + "pos": "verb", + "word_frequency": 8052 + }, + { + "word": "torrent", + "article_with_word": "le torrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torrent", + "example_sentence_native": "Après l'orage, un torrent d'eau a dévalé la montagne.", + "example_sentence_english": "After the storm, a torrent of water rushed down the mountain.", + "pos": "noun", + "word_frequency": 8055 + }, + { + "word": "trembler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tremble;to shake", + "example_sentence_native": "Il a commencé à trembler de froid.", + "example_sentence_english": "He started to tremble from the cold.", + "pos": "verb", + "word_frequency": 8056 + }, + { + "word": "trésorier", + "article_with_word": "le trésorier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treasurer", + "example_sentence_native": "Le trésorier de l'association gère les finances.", + "example_sentence_english": "The treasurer of the association manages the finances.", + "pos": "noun", + "word_frequency": 8057 + }, + { + "word": "vocal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vocal", + "example_sentence_native": "Elle a de grandes capacités vocales.", + "example_sentence_english": "She has great vocal abilities.", + "pos": "adjective", + "word_frequency": 8059 + }, + { + "word": "zinc", + "article_with_word": "le zinc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zinc", + "example_sentence_native": "Le toit est en zinc.", + "example_sentence_english": "The roof is made of zinc.", + "pos": "noun", + "word_frequency": 8060 + }, + { + "word": "abruti", + "article_with_word": "un abruti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot;moron", + "example_sentence_native": "Ne fais pas l'abruti.", + "example_sentence_english": "Don't be an idiot.", + "pos": "noun", + "word_frequency": 8061 + }, + { + "word": "accueillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welcoming;hospitable", + "example_sentence_native": "Les habitants de ce village sont très accueillants.", + "example_sentence_english": "The inhabitants of this village are very welcoming.", + "pos": "adjective", + "word_frequency": 8063 + }, + { + "word": "actu", + "article_with_word": "l'actu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "news (informal)", + "example_sentence_native": "Quoi de neuf dans l'actu ?", + "example_sentence_english": "What's new in the news?", + "pos": "noun", + "word_frequency": 8065 + }, + { + "word": "agrandissement", + "article_with_word": "l'agrandissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlargement;expansion", + "example_sentence_native": "Nous prévoyons l'agrandissement de notre maison.", + "example_sentence_english": "We are planning the enlargement of our house.", + "pos": "noun", + "word_frequency": 8066 + }, + { + "word": "amplement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amply;sufficiently", + "example_sentence_native": "Vous avez amplement le temps de finir.", + "example_sentence_english": "You have amply enough time to finish.", + "pos": "adverb", + "word_frequency": 8068 + }, + { + "word": "ampoule", + "article_with_word": "l'ampoule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light bulb;blister", + "example_sentence_native": "L'ampoule du salon est grillée.", + "example_sentence_english": "The living room light bulb is burnt out.", + "pos": "noun", + "word_frequency": 8069 + }, + { + "word": "approximativement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximately", + "example_sentence_native": "Le coût est approximativement de cent euros.", + "example_sentence_english": "The cost is approximately one hundred euros.", + "pos": "adverb", + "word_frequency": 8070 + }, + { + "word": "blinder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to armor;to reinforce;to cram (informal)", + "example_sentence_native": "Ils ont blindé la porte pour plus de sécurité.", + "example_sentence_english": "They armored the door for more security.", + "pos": "verb", + "word_frequency": 8074 + }, + { + "word": "brusquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abruptly;suddenly", + "example_sentence_native": "Il s'est arrêté brusquement.", + "example_sentence_english": "He stopped abruptly.", + "pos": "adverb", + "word_frequency": 8077 + }, + { + "word": "buste", + "article_with_word": "le buste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bust (sculpture);torso", + "example_sentence_native": "Le musée expose un buste de Napoléon.", + "example_sentence_english": "The museum exhibits a bust of Napoleon.", + "pos": "noun", + "word_frequency": 8078 + }, + { + "word": "captivité", + "article_with_word": "la captivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivity", + "example_sentence_native": "L'animal a été libéré après des années de captivité.", + "example_sentence_english": "The animal was released after years of captivity.", + "pos": "noun", + "word_frequency": 8079 + }, + { + "word": "cartouche", + "article_with_word": "la cartouche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartridge", + "example_sentence_native": "J'ai besoin d'une nouvelle cartouche d'encre pour mon imprimante.", + "example_sentence_english": "I need a new ink cartridge for my printer.", + "pos": "noun", + "word_frequency": 8080 + }, + { + "word": "clope", + "article_with_word": "la clope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cigarette (slang)", + "example_sentence_native": "Tu as une clope ?", + "example_sentence_english": "Do you have a cigarette?", + "pos": "noun", + "word_frequency": 8082 + }, + { + "word": "combine", + "article_with_word": "la combine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trick;scheme;dodge", + "example_sentence_native": "Il a trouvé une combine pour éviter les impôts.", + "example_sentence_english": "He found a trick to avoid taxes.", + "pos": "noun", + "word_frequency": 8083 + }, + { + "word": "comète", + "article_with_word": "la comète", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comet", + "example_sentence_native": "On peut observer la comète à l'œil nu ce soir.", + "example_sentence_english": "We can observe the comet with the naked eye tonight.", + "pos": "noun", + "word_frequency": 8084 + }, + { + "word": "consoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comfort;to console", + "example_sentence_native": "Elle a essayé de le consoler après la mauvaise nouvelle.", + "example_sentence_english": "She tried to comfort him after the bad news.", + "pos": "verb", + "word_frequency": 8085 + }, + { + "word": "corne", + "article_with_word": "la corne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn", + "example_sentence_native": "Les vaches ont des cornes.", + "example_sentence_english": "Cows have horns.", + "pos": "noun", + "word_frequency": 8087 + }, + { + "word": "crucial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucial", + "example_sentence_native": "C'est une étape cruciale pour le projet.", + "example_sentence_english": "This is a crucial step for the project.", + "pos": "adjective", + "word_frequency": 8088 + }, + { + "word": "dispersion", + "article_with_word": "la dispersion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispersion;scattering", + "example_sentence_native": "La dispersion des graines est essentielle pour la survie de l'espèce.", + "example_sentence_english": "The dispersion of seeds is essential for the survival of the species.", + "pos": "noun", + "word_frequency": 8090 + }, + { + "word": "dot", + "article_with_word": "la dot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dowry", + "example_sentence_native": "Dans certaines cultures, la dot est encore une tradition.", + "example_sentence_english": "In some cultures, the dowry is still a tradition.", + "pos": "noun", + "word_frequency": 8091 + }, + { + "word": "démographie", + "article_with_word": "la démographie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demography", + "example_sentence_native": "La démographie étudie les populations humaines.", + "example_sentence_english": "Demography studies human populations.", + "pos": "noun", + "word_frequency": 8092 + }, + { + "word": "edit", + "article_with_word": "l'édit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edict;decree", + "example_sentence_native": "L'édit royal a été proclamé dans tout le royaume.", + "example_sentence_english": "The royal edict was proclaimed throughout the kingdom.", + "pos": "noun", + "word_frequency": 8093 + }, + { + "word": "effondrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse;to crumble", + "example_sentence_native": "Le bâtiment menaçait de s'effondrer.", + "example_sentence_english": "The building threatened to collapse.", + "pos": "verb", + "word_frequency": 8094 + }, + { + "word": "enfoiré", + "article_with_word": "un enfoiré", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bastard;jerk (vulgar)", + "example_sentence_native": "Cet enfoiré m'a volé mon portefeuille !", + "example_sentence_english": "That bastard stole my wallet!", + "pos": "noun", + "word_frequency": 8095 + }, + { + "word": "engouement", + "article_with_word": "l'engouement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "craze;infatuation;enthusiasm", + "example_sentence_native": "Il y a un grand engouement pour ce nouveau jeu vidéo.", + "example_sentence_english": "There is a great craze for this new video game.", + "pos": "noun", + "word_frequency": 8096 + }, + { + "word": "estival", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summer (adj.);summery", + "example_sentence_native": "Nous avons passé de merveilleuses journées estivales.", + "example_sentence_english": "We spent wonderful summer days.", + "pos": "adjective", + "word_frequency": 8097 + }, + { + "word": "festivité", + "article_with_word": "la festivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "festivity;celebration", + "example_sentence_native": "Les festivités commenceront à 18h.", + "example_sentence_english": "The festivities will begin at 6 PM.", + "pos": "noun", + "word_frequency": 8098 + }, + { + "word": "gazette", + "article_with_word": "la gazette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gazette;newspaper (old-fashioned)", + "example_sentence_native": "La gazette locale a publié un article sur l'événement.", + "example_sentence_english": "The local gazette published an article about the event.", + "pos": "noun", + "word_frequency": 8100 + }, + { + "word": "grès", + "article_with_word": "le grès", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sandstone;stoneware", + "example_sentence_native": "Cette poterie est faite en grès.", + "example_sentence_english": "This pottery is made of stoneware.", + "pos": "noun", + "word_frequency": 8102 + }, + { + "word": "imam", + "article_with_word": "l'imam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imam", + "example_sentence_native": "L'imam a dirigé la prière à la mosquée.", + "example_sentence_english": "The imam led the prayer at the mosque.", + "pos": "noun", + "word_frequency": 8104 + }, + { + "word": "impatient", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "impatient", + "example_sentence_native": "Il est très impatient de partir en vacances.", + "example_sentence_english": "He is very impatient to go on vacation.", + "pos": "adjective", + "word_frequency": 8105 + }, + { + "word": "incarnation", + "article_with_word": "l'incarnation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incarnation", + "example_sentence_native": "Elle est l'incarnation de l'élégance.", + "example_sentence_english": "She is the incarnation of elegance.", + "pos": "noun", + "word_frequency": 8106 + }, + { + "word": "inspirant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspiring", + "example_sentence_native": "Son discours était vraiment inspirant.", + "example_sentence_english": "His speech was truly inspiring.", + "pos": "adjective", + "word_frequency": 8107 + }, + { + "word": "insu", + "article_with_word": "l'insu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unbeknownst (only in 'à l'insu de')", + "example_sentence_native": "Il a agi à l'insu de ses parents.", + "example_sentence_english": "He acted unbeknownst to his parents.", + "pos": "noun", + "word_frequency": 8108 + }, + { + "word": "insurgé", + "article_with_word": "l'insurgé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurgent;rebel", + "example_sentence_native": "Les insurgés ont pris le contrôle de la ville.", + "example_sentence_english": "The insurgents took control of the city.", + "pos": "noun", + "word_frequency": 8109 + }, + { + "word": "interactif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interactive", + "example_sentence_native": "Ce musée propose des expositions interactives.", + "example_sentence_english": "This museum offers interactive exhibits.", + "pos": "adjective", + "word_frequency": 8110 + }, + { + "word": "investiture", + "article_with_word": "l'investiture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investiture;inauguration", + "example_sentence_native": "La cérémonie d'investiture du nouveau président aura lieu demain.", + "example_sentence_english": "The inauguration ceremony of the new president will take place tomorrow.", + "pos": "noun", + "word_frequency": 8111 + }, + { + "word": "jusqu'où", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "how far", + "example_sentence_native": "Jusqu'où êtes-vous prêt à aller ?", + "example_sentence_english": "How far are you willing to go?", + "pos": "adverb", + "word_frequency": 8112 + }, + { + "word": "labyrinthe", + "article_with_word": "le labyrinthe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "labyrinth;maze", + "example_sentence_native": "Nous nous sommes perdus dans le labyrinthe du jardin.", + "example_sentence_english": "We got lost in the garden maze.", + "pos": "noun", + "word_frequency": 8114 + }, + { + "word": "lucide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lucid;clear-headed", + "example_sentence_native": "Malgré la fatigue, il est resté lucide.", + "example_sentence_english": "Despite the fatigue, he remained lucid.", + "pos": "adjective", + "word_frequency": 8116 + }, + { + "word": "mega", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mega;huge;great", + "example_sentence_native": "C'était une méga fête !", + "example_sentence_english": "It was a mega party!", + "pos": "adjective", + "word_frequency": 8118 + }, + { + "word": "merdique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crappy;shitty (vulgar)", + "example_sentence_native": "Cette situation est vraiment merdique.", + "example_sentence_english": "This situation is really crappy.", + "pos": "adjective", + "word_frequency": 8119 + }, + { + "word": "moralité", + "article_with_word": "la moralité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morality", + "example_sentence_native": "La moralité de cette histoire est claire.", + "example_sentence_english": "The morality of this story is clear.", + "pos": "noun", + "word_frequency": 8121 + }, + { + "word": "moustique", + "article_with_word": "le moustique", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mosquito", + "example_sentence_native": "Un moustique m'a piqué.", + "example_sentence_english": "A mosquito bit me.", + "pos": "noun", + "word_frequency": 8123 + }, + { + "word": "médiateur", + "article_with_word": "le médiateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediator", + "example_sentence_native": "Ils ont fait appel à un médiateur pour résoudre le conflit.", + "example_sentence_english": "They called upon a mediator to resolve the conflict.", + "pos": "noun", + "word_frequency": 8124 + }, + { + "word": "mêlé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed;confused", + "example_sentence_native": "Ses sentiments étaient mêlés.", + "example_sentence_english": "His feelings were mixed.", + "pos": "adjective", + "word_frequency": 8125 + }, + { + "word": "nova", + "article_with_word": "la nova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nova", + "example_sentence_native": "Une nova est une étoile qui connaît une augmentation soudaine de sa luminosité.", + "example_sentence_english": "A nova is a star that experiences a sudden increase in brightness.", + "pos": "noun", + "word_frequency": 8127 + }, + { + "word": "oreiller", + "article_with_word": "l'oreiller", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pillow", + "example_sentence_native": "J'ai besoin d'un nouvel oreiller.", + "example_sentence_english": "I need a new pillow.", + "pos": "noun", + "word_frequency": 8130 + }, + { + "word": "ouragan", + "article_with_word": "l'ouragan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurricane", + "example_sentence_native": "L'ouragan a causé beaucoup de dégâts.", + "example_sentence_english": "The hurricane caused a lot of damage.", + "pos": "noun", + "word_frequency": 8131 + }, + { + "word": "patienter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wait patiently", + "example_sentence_native": "Il faut patienter quelques minutes.", + "example_sentence_english": "You have to wait a few minutes.", + "pos": "verb", + "word_frequency": 8132 + }, + { + "word": "patriarche", + "article_with_word": "le patriarche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarch", + "example_sentence_native": "Le patriarche de la famille a pris la décision.", + "example_sentence_english": "The patriarch of the family made the decision.", + "pos": "noun", + "word_frequency": 8133 + }, + { + "word": "perturbé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbed;disrupted", + "example_sentence_native": "Le trafic a été perturbé par la neige.", + "example_sentence_english": "Traffic was disrupted by the snow.", + "pos": "adjective", + "word_frequency": 8134 + }, + { + "word": "planétaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planetary;global", + "example_sentence_native": "Le réchauffement climatique est un problème planétaire.", + "example_sentence_english": "Global warming is a planetary problem.", + "pos": "adjective", + "word_frequency": 8135 + }, + { + "word": "preneur", + "article_with_word": "le preneur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taker;recipient", + "example_sentence_native": "Le preneur de risques a réussi son pari.", + "example_sentence_english": "The risk-taker succeeded in his gamble.", + "pos": "noun", + "word_frequency": 8136 + }, + { + "word": "quota", + "article_with_word": "le quota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quota", + "example_sentence_native": "Nous avons atteint notre quota de ventes.", + "example_sentence_english": "We have reached our sales quota.", + "pos": "noun", + "word_frequency": 8139 + }, + { + "word": "repenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rethink", + "example_sentence_native": "Il faut repenser notre stratégie.", + "example_sentence_english": "We need to rethink our strategy.", + "pos": "verb", + "word_frequency": 8141 + }, + { + "word": "requis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "required;necessary", + "example_sentence_native": "Les documents requis sont sur la table.", + "example_sentence_english": "The required documents are on the table.", + "pos": "adjective", + "word_frequency": 8142 + }, + { + "word": "respecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respected", + "example_sentence_native": "C'est un homme très respecté dans sa communauté.", + "example_sentence_english": "He is a very respected man in his community.", + "pos": "adjective", + "word_frequency": 8143 + }, + { + "word": "rigole", + "article_with_word": "la rigole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gutter;ditch", + "example_sentence_native": "L'eau s'écoule dans la rigole.", + "example_sentence_english": "The water flows into the gutter.", + "pos": "noun", + "word_frequency": 8145 + }, + { + "word": "rite", + "article_with_word": "le rite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rite;ritual", + "example_sentence_native": "Ils ont observé un ancien rite.", + "example_sentence_english": "They observed an ancient rite.", + "pos": "noun", + "word_frequency": 8146 + }, + { + "word": "régulateur", + "article_with_word": "le régulateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulator", + "example_sentence_native": "Le régulateur a imposé de nouvelles règles.", + "example_sentence_english": "The regulator imposed new rules.", + "pos": "noun", + "word_frequency": 8148 + }, + { + "word": "répercussion", + "article_with_word": "la répercussion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repercussion", + "example_sentence_native": "Ses actions ont eu de graves répercussions.", + "example_sentence_english": "His actions had serious repercussions.", + "pos": "noun", + "word_frequency": 8149 + }, + { + "word": "résolument", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resolutely;determinedly", + "example_sentence_native": "Il a résolument refusé la proposition.", + "example_sentence_english": "He resolutely refused the proposal.", + "pos": "adverb", + "word_frequency": 8150 + }, + { + "word": "sculpteur", + "article_with_word": "le sculpteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sculptor", + "example_sentence_native": "Le sculpteur travaille le marbre.", + "example_sentence_english": "The sculptor works with marble.", + "pos": "noun", + "word_frequency": 8152 + }, + { + "word": "serein", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serene;calm", + "example_sentence_native": "Il est resté serein malgré la pression.", + "example_sentence_english": "He remained serene despite the pressure.", + "pos": "adjective", + "word_frequency": 8153 + }, + { + "word": "signalisation", + "article_with_word": "la signalisation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signaling;signage", + "example_sentence_native": "La signalisation routière est importante.", + "example_sentence_english": "Road signage is important.", + "pos": "noun", + "word_frequency": 8155 + }, + { + "word": "socialement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socially", + "example_sentence_native": "Il est très actif socialement.", + "example_sentence_english": "He is very active socially.", + "pos": "adverb", + "word_frequency": 8158 + }, + { + "word": "soupir", + "article_with_word": "le soupir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sigh", + "example_sentence_native": "Elle a poussé un profond soupir.", + "example_sentence_english": "She let out a deep sigh.", + "pos": "noun", + "word_frequency": 8159 + }, + { + "word": "substitution", + "article_with_word": "la substitution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitution", + "example_sentence_native": "La substitution de l'ancien système par le nouveau a été difficile.", + "example_sentence_english": "The substitution of the old system by the new one was difficult.", + "pos": "noun", + "word_frequency": 8161 + }, + { + "word": "suspense", + "article_with_word": "le suspense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspense", + "example_sentence_native": "Le film était plein de suspense jusqu'à la fin.", + "example_sentence_english": "The movie was full of suspense until the end.", + "pos": "noun", + "word_frequency": 8163 + }, + { + "word": "sémantique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semantic", + "example_sentence_native": "L'analyse sémantique des mots est complexe.", + "example_sentence_english": "The semantic analysis of words is complex.", + "pos": "adjective", + "word_frequency": 8164 + }, + { + "word": "transporteur", + "article_with_word": "le transporteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carrier", + "example_sentence_native": "Le transporteur a livré le colis à temps.", + "example_sentence_english": "The carrier delivered the package on time.", + "pos": "noun", + "word_frequency": 8167 + }, + { + "word": "urne", + "article_with_word": "l'urne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urn", + "example_sentence_native": "Les cendres ont été placées dans une urne funéraire.", + "example_sentence_english": "The ashes were placed in a funeral urn.", + "pos": "noun", + "word_frequency": 8169 + }, + { + "word": "vibration", + "article_with_word": "la vibration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibration", + "example_sentence_native": "Nous avons ressenti une forte vibration pendant le tremblement de terre.", + "example_sentence_english": "We felt a strong vibration during the earthquake.", + "pos": "noun", + "word_frequency": 8170 + }, + { + "word": "écharpe", + "article_with_word": "l'écharpe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scarf", + "example_sentence_native": "Elle porte une écharpe en laine.", + "example_sentence_english": "She is wearing a wool scarf.", + "pos": "noun", + "word_frequency": 8173 + }, + { + "word": "économiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economically", + "example_sentence_native": "Le pays se développe économiquement.", + "example_sentence_english": "The country is developing economically.", + "pos": "adverb", + "word_frequency": 8174 + }, + { + "word": "émetteur", + "article_with_word": "l'émetteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmitter", + "example_sentence_native": "L'émetteur radio a une portée limitée.", + "example_sentence_english": "The radio transmitter has a limited range.", + "pos": "noun", + "word_frequency": 8175 + }, + { + "word": "épopée", + "article_with_word": "l'épopée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epic", + "example_sentence_native": "L'Odyssée est une épopée grecque célèbre.", + "example_sentence_english": "The Odyssey is a famous Greek epic.", + "pos": "noun", + "word_frequency": 8176 + }, + { + "word": "adjectif", + "article_with_word": "l'adjectif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjective", + "example_sentence_native": "Un adjectif qualifie un nom.", + "example_sentence_english": "An adjective qualifies a noun.", + "pos": "noun", + "word_frequency": 8177 + }, + { + "word": "affilé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharp", + "example_sentence_native": "Le couteau est bien affilé.", + "example_sentence_english": "The knife is well sharpened.", + "pos": "adjective", + "word_frequency": 8178 + }, + { + "word": "ajustement", + "article_with_word": "l'ajustement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjustment", + "example_sentence_native": "Un petit ajustement est nécessaire pour que ça fonctionne.", + "example_sentence_english": "A small adjustment is needed for it to work.", + "pos": "noun", + "word_frequency": 8179 + }, + { + "word": "arctique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arctic", + "example_sentence_native": "La région arctique est très froide.", + "example_sentence_english": "The arctic region is very cold.", + "pos": "adjective", + "word_frequency": 8181 + }, + { + "word": "argumentation", + "article_with_word": "l'argumentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "argumentation", + "example_sentence_native": "Son argumentation était très convaincante.", + "example_sentence_english": "His argumentation was very convincing.", + "pos": "noun", + "word_frequency": 8182 + }, + { + "word": "assumé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-assured", + "example_sentence_native": "Il a un style très assumé.", + "example_sentence_english": "He has a very self-assured style.", + "pos": "adjective", + "word_frequency": 8183 + }, + { + "word": "atroce", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atrocious", + "example_sentence_native": "Le temps était atroce hier.", + "example_sentence_english": "The weather was atrocious yesterday.", + "pos": "adjective", + "word_frequency": 8185 + }, + { + "word": "bouc", + "article_with_word": "le bouc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goat (male)", + "example_sentence_native": "Le bouc a de grandes cornes.", + "example_sentence_english": "The goat has large horns.", + "pos": "noun", + "word_frequency": 8194 + }, + { + "word": "brebis", + "article_with_word": "la brebis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ewe", + "example_sentence_native": "La brebis a donné naissance à un agneau.", + "example_sentence_english": "The ewe gave birth to a lamb.", + "pos": "noun", + "word_frequency": 8196 + }, + { + "word": "cabaret", + "article_with_word": "le cabaret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabaret", + "example_sentence_native": "Nous avons passé la soirée dans un cabaret parisien.", + "example_sentence_english": "We spent the evening in a Parisian cabaret.", + "pos": "noun", + "word_frequency": 8198 + }, + { + "word": "cachet", + "article_with_word": "le cachet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tablet;stamp;fee", + "example_sentence_native": "Le médecin m'a prescrit un cachet pour la douleur.", + "example_sentence_english": "The doctor prescribed me a tablet for the pain.", + "pos": "noun", + "word_frequency": 8200 + }, + { + "word": "cale", + "article_with_word": "la cale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wedge;chocks;hold", + "example_sentence_native": "Il a utilisé une cale pour stabiliser la table bancale.", + "example_sentence_english": "He used a wedge to stabilize the wobbly table.", + "pos": "noun", + "word_frequency": 8201 + }, + { + "word": "chirurgical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgical", + "example_sentence_native": "L'intervention chirurgicale s'est bien passée.", + "example_sentence_english": "The surgical intervention went well.", + "pos": "adjective", + "word_frequency": 8202 + }, + { + "word": "choper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to catch;to nab (informal)", + "example_sentence_native": "Il s'est fait choper en train de voler des bonbons.", + "example_sentence_english": "He got caught stealing candy.", + "pos": "verb", + "word_frequency": 8203 + }, + { + "word": "compliquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complicate", + "example_sentence_native": "Ne complique pas les choses plus qu'elles ne le sont déjà.", + "example_sentence_english": "Don't complicate things more than they already are.", + "pos": "verb", + "word_frequency": 8204 + }, + { + "word": "compris", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "understood;included", + "example_sentence_native": "Le prix est tout compris.", + "example_sentence_english": "The price is all-inclusive.", + "pos": "adjective", + "word_frequency": 8205 + }, + { + "word": "coquin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischievous;naughty", + "example_sentence_native": "Il a un sourire coquin.", + "example_sentence_english": "He has a mischievous smile.", + "pos": "adjective", + "word_frequency": 8208 + }, + { + "word": "coté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rated;quoted;listed", + "example_sentence_native": "Cette entreprise est bien cotée en bourse.", + "example_sentence_english": "This company is well-rated on the stock market.", + "pos": "adjective", + "word_frequency": 8209 + }, + { + "word": "courtier", + "article_with_word": "le courtier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broker", + "example_sentence_native": "J'ai contacté un courtier immobilier pour trouver une maison.", + "example_sentence_english": "I contacted a real estate broker to find a house.", + "pos": "noun", + "word_frequency": 8210 + }, + { + "word": "dilemme", + "article_with_word": "le dilemme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dilemma", + "example_sentence_native": "Il est face à un dilemme difficile.", + "example_sentence_english": "He is facing a difficult dilemma.", + "pos": "noun", + "word_frequency": 8211 + }, + { + "word": "divergence", + "article_with_word": "la divergence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divergence;disagreement", + "example_sentence_native": "Il y a une divergence d'opinions sur ce sujet.", + "example_sentence_english": "There is a divergence of opinions on this subject.", + "pos": "noun", + "word_frequency": 8212 + }, + { + "word": "décentralisation", + "article_with_word": "la décentralisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decentralization", + "example_sentence_native": "La décentralisation est un processus politique important.", + "example_sentence_english": "Decentralization is an important political process.", + "pos": "noun", + "word_frequency": 8216 + }, + { + "word": "défendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forbidden;prohibited", + "example_sentence_native": "L'accès est strictement défendu.", + "example_sentence_english": "Access is strictly forbidden.", + "pos": "adjective", + "word_frequency": 8217 + }, + { + "word": "déplorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deplore;to regret", + "example_sentence_native": "Nous déplorons la perte de vies humaines.", + "example_sentence_english": "We deplore the loss of human lives.", + "pos": "verb", + "word_frequency": 8218 + }, + { + "word": "déséquilibre", + "article_with_word": "le déséquilibre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imbalance;disequilibrium", + "example_sentence_native": "Il y a un déséquilibre entre l'offre et la demande.", + "example_sentence_english": "There is an imbalance between supply and demand.", + "pos": "noun", + "word_frequency": 8219 + }, + { + "word": "endettement", + "article_with_word": "l'endettement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indebtedness;debt", + "example_sentence_native": "L'endettement des ménages est une préoccupation.", + "example_sentence_english": "Household indebtedness is a concern.", + "pos": "noun", + "word_frequency": 8220 + }, + { + "word": "fascisme", + "article_with_word": "le fascisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascism", + "example_sentence_native": "Le fascisme est une idéologie politique.", + "example_sentence_english": "Fascism is a political ideology.", + "pos": "noun", + "word_frequency": 8223 + }, + { + "word": "féroce", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fierce;ferocious", + "example_sentence_native": "Le lion est un animal féroce.", + "example_sentence_english": "The lion is a fierce animal.", + "pos": "adjective", + "word_frequency": 8224 + }, + { + "word": "gendre", + "article_with_word": "le gendre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "son-in-law", + "example_sentence_native": "Mon gendre est très gentil.", + "example_sentence_english": "My son-in-law is very kind.", + "pos": "noun", + "word_frequency": 8225 + }, + { + "word": "grossier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rude;crude;coarse", + "example_sentence_native": "Ses manières sont très grossières.", + "example_sentence_english": "His manners are very rude.", + "pos": "adjective", + "word_frequency": 8226 + }, + { + "word": "haineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hateful", + "example_sentence_native": "Il a prononcé des propos haineux.", + "example_sentence_english": "He made hateful remarks.", + "pos": "adjective", + "word_frequency": 8227 + }, + { + "word": "halle", + "article_with_word": "la halle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "market hall;covered market", + "example_sentence_native": "Nous avons acheté des légumes frais à la halle.", + "example_sentence_english": "We bought fresh vegetables at the market hall.", + "pos": "noun", + "word_frequency": 8228 + }, + { + "word": "hameau", + "article_with_word": "le hameau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hamlet", + "example_sentence_native": "Le hameau est isolé dans la campagne.", + "example_sentence_english": "The hamlet is isolated in the countryside.", + "pos": "noun", + "word_frequency": 8229 + }, + { + "word": "hospitalisation", + "article_with_word": "l'hospitalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospitalization", + "example_sentence_native": "Son état a nécessité une hospitalisation d'urgence.", + "example_sentence_english": "His condition required emergency hospitalization.", + "pos": "noun", + "word_frequency": 8230 + }, + { + "word": "impeccable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impeccable;flawless", + "example_sentence_native": "Son travail est toujours impeccable.", + "example_sentence_english": "His work is always impeccable.", + "pos": "adjective", + "word_frequency": 8231 + }, + { + "word": "indifférent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indifferent", + "example_sentence_native": "Il est resté indifférent à mes plaintes.", + "example_sentence_english": "He remained indifferent to my complaints.", + "pos": "adjective", + "word_frequency": 8232 + }, + { + "word": "intégrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrating;integral", + "example_sentence_native": "C'est un élément intégrant du système.", + "example_sentence_english": "It is an integral part of the system.", + "pos": "adjective", + "word_frequency": 8233 + }, + { + "word": "involontaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involuntary", + "example_sentence_native": "C'était un geste involontaire.", + "example_sentence_english": "It was an involuntary gesture.", + "pos": "adjective", + "word_frequency": 8234 + }, + { + "word": "isolation", + "article_with_word": "l'isolation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolation;insulation", + "example_sentence_native": "L'isolation thermique est importante pour économiser l'énergie.", + "example_sentence_english": "Thermal insulation is important to save energy.", + "pos": "noun", + "word_frequency": 8235 + }, + { + "word": "joué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "played", + "example_sentence_native": "Le match est joué.", + "example_sentence_english": "The game is played.", + "pos": "adjective", + "word_frequency": 8238 + }, + { + "word": "lanterne", + "article_with_word": "la lanterne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lantern", + "example_sentence_native": "Il a allumé la lanterne pour éclairer le chemin.", + "example_sentence_english": "He lit the lantern to light the way.", + "pos": "noun", + "word_frequency": 8241 + }, + { + "word": "masquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hide;to mask", + "example_sentence_native": "Il a essayé de masquer la vérité.", + "example_sentence_english": "He tried to hide the truth.", + "pos": "verb", + "word_frequency": 8247 + }, + { + "word": "menthe", + "article_with_word": "la menthe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mint", + "example_sentence_native": "J'aime le thé à la menthe.", + "example_sentence_english": "I like mint tea.", + "pos": "noun", + "word_frequency": 8251 + }, + { + "word": "missionnaire", + "article_with_word": "le missionnaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "missionary", + "example_sentence_native": "Le missionnaire est parti en Afrique.", + "example_sentence_english": "The missionary left for Africa.", + "pos": "noun", + "word_frequency": 8252 + }, + { + "word": "négliger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to neglect", + "example_sentence_native": "Il ne faut pas négliger ses études.", + "example_sentence_english": "One must not neglect one's studies.", + "pos": "verb", + "word_frequency": 8255 + }, + { + "word": "oasis", + "article_with_word": "une oasis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oasis", + "example_sentence_native": "Nous avons trouvé une oasis dans le désert.", + "example_sentence_english": "We found an oasis in the desert.", + "pos": "noun", + "word_frequency": 8256 + }, + { + "word": "obsèque", + "article_with_word": "les obsèques", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funeral (rites)", + "example_sentence_native": "Les obsèques auront lieu demain.", + "example_sentence_english": "The funeral will take place tomorrow.", + "pos": "noun", + "word_frequency": 8257 + }, + { + "word": "originel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "original;initial", + "example_sentence_native": "C'est la version originelle du texte.", + "example_sentence_english": "This is the original version of the text.", + "pos": "adjective", + "word_frequency": 8259 + }, + { + "word": "parcelle", + "article_with_word": "la parcelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plot;parcel (of land)", + "example_sentence_native": "Il a acheté une petite parcelle de terrain.", + "example_sentence_english": "He bought a small plot of land.", + "pos": "noun", + "word_frequency": 8261 + }, + { + "word": "performant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-performing;efficient", + "example_sentence_native": "Ce nouvel ordinateur est très performant.", + "example_sentence_english": "This new computer is very high-performing.", + "pos": "adjective", + "word_frequency": 8262 + }, + { + "word": "perpétuité", + "article_with_word": "la perpétuité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpetuity;life (sentence)", + "example_sentence_native": "Il a été condamné à la prison à perpétuité.", + "example_sentence_english": "He was sentenced to life in prison.", + "pos": "noun", + "word_frequency": 8263 + }, + { + "word": "pieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pious;devout", + "example_sentence_native": "C'est un homme très pieux.", + "example_sentence_english": "He is a very pious man.", + "pos": "adjective", + "word_frequency": 8264 + }, + { + "word": "piratage", + "article_with_word": "le piratage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacking;piracy", + "example_sentence_native": "Le piratage informatique est un crime.", + "example_sentence_english": "Computer hacking is a crime.", + "pos": "noun", + "word_frequency": 8265 + }, + { + "word": "plant", + "article_with_word": "le plant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plant (young plant;seedling)", + "example_sentence_native": "J'ai acheté des plants de tomates.", + "example_sentence_english": "I bought tomato plants.", + "pos": "noun", + "word_frequency": 8266 + }, + { + "word": "porcelaine", + "article_with_word": "la porcelaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porcelain", + "example_sentence_native": "Cette tasse est en porcelaine fine.", + "example_sentence_english": "This cup is made of fine porcelain.", + "pos": "noun", + "word_frequency": 8267 + }, + { + "word": "primordial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primordial;essential", + "example_sentence_native": "Il est primordial de bien comprendre les instructions.", + "example_sentence_english": "It is essential to fully understand the instructions.", + "pos": "adjective", + "word_frequency": 8268 + }, + { + "word": "privatisation", + "article_with_word": "la privatisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privatization", + "example_sentence_native": "La privatisation des services publics est un sujet controversé.", + "example_sentence_english": "The privatization of public services is a controversial topic.", + "pos": "noun", + "word_frequency": 8269 + }, + { + "word": "prospère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosperous;thriving", + "example_sentence_native": "C'est une entreprise très prospère.", + "example_sentence_english": "It is a very prosperous company.", + "pos": "adjective", + "word_frequency": 8270 + }, + { + "word": "psychiatrie", + "article_with_word": "la psychiatrie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychiatry", + "example_sentence_native": "Elle étudie la psychiatrie à l'université.", + "example_sentence_english": "She studies psychiatry at university.", + "pos": "noun", + "word_frequency": 8271 + }, + { + "word": "péage", + "article_with_word": "le péage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toll;toll booth", + "example_sentence_native": "Nous devons payer le péage sur l'autoroute.", + "example_sentence_english": "We have to pay the toll on the highway.", + "pos": "noun", + "word_frequency": 8272 + }, + { + "word": "pénalité", + "article_with_word": "la pénalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty", + "example_sentence_native": "L'équipe a reçu une pénalité.", + "example_sentence_english": "The team received a penalty.", + "pos": "noun", + "word_frequency": 8273 + }, + { + "word": "rafale", + "article_with_word": "la rafale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gust (of wind);burst (of gunfire)", + "example_sentence_native": "Une rafale de vent a fait tomber les feuilles.", + "example_sentence_english": "A gust of wind made the leaves fall.", + "pos": "noun", + "word_frequency": 8275 + }, + { + "word": "restitution", + "article_with_word": "la restitution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restitution;return", + "example_sentence_native": "Il a demandé la restitution de ses biens volés.", + "example_sentence_english": "He demanded the restitution of his stolen goods.", + "pos": "noun", + "word_frequency": 8276 + }, + { + "word": "régner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reign;to rule", + "example_sentence_native": "Le roi a régné pendant quarante ans.", + "example_sentence_english": "The king reigned for forty years.", + "pos": "verb", + "word_frequency": 8277 + }, + { + "word": "résidu", + "article_with_word": "le résidu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residue;remnant", + "example_sentence_native": "Il y avait des résidus de café au fond de la tasse.", + "example_sentence_english": "There were coffee residues at the bottom of the cup.", + "pos": "noun", + "word_frequency": 8278 + }, + { + "word": "serieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "serious", + "example_sentence_native": "C'est une question très sérieuse.", + "example_sentence_english": "It's a very serious question.", + "pos": "adjective", + "word_frequency": 8283 + }, + { + "word": "simplification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplification", + "example_sentence_native": "La simplification des procédures est nécessaire.", + "example_sentence_english": "The simplification of procedures is necessary.", + "pos": "noun", + "word_frequency": 8285 + }, + { + "word": "sodium", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sodium", + "example_sentence_native": "Le sodium est un élément chimique.", + "example_sentence_english": "Sodium is a chemical element.", + "pos": "noun", + "word_frequency": 8287 + }, + { + "word": "supervision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supervision", + "example_sentence_native": "Le projet est sous sa supervision directe.", + "example_sentence_english": "The project is under his direct supervision.", + "pos": "noun", + "word_frequency": 8290 + }, + { + "word": "supplier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to beg;to implore", + "example_sentence_native": "Il a dû supplier pour obtenir une seconde chance.", + "example_sentence_english": "He had to beg to get a second chance.", + "pos": "verb", + "word_frequency": 8291 + }, + { + "word": "suspens", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspense", + "example_sentence_native": "Le film était plein de suspens.", + "example_sentence_english": "The movie was full of suspense.", + "pos": "noun", + "word_frequency": 8292 + }, + { + "word": "tempérament", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temperament", + "example_sentence_native": "Elle a un tempérament très calme.", + "example_sentence_english": "She has a very calm temperament.", + "pos": "noun", + "word_frequency": 8293 + }, + { + "word": "texture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "texture", + "example_sentence_native": "J'aime la texture douce de ce tissu.", + "example_sentence_english": "I like the soft texture of this fabric.", + "pos": "noun", + "word_frequency": 8294 + }, + { + "word": "transformé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transformed", + "example_sentence_native": "Le quartier a été complètement transformé.", + "example_sentence_english": "The neighborhood has been completely transformed.", + "pos": "adjective", + "word_frequency": 8300 + }, + { + "word": "triplé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hat-trick;triple", + "example_sentence_native": "L'attaquant a réalisé un triplé.", + "example_sentence_english": "The striker scored a hat-trick.", + "pos": "noun", + "word_frequency": 8301 + }, + { + "word": "tuile", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tile;bad luck (informal)", + "example_sentence_native": "Une tuile est tombée du toit.", + "example_sentence_english": "A tile fell from the roof.", + "pos": "noun", + "word_frequency": 8303 + }, + { + "word": "ukrainien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ukrainian", + "example_sentence_native": "Il parle couramment l'ukrainien.", + "example_sentence_english": "He speaks Ukrainian fluently.", + "pos": "adjective", + "word_frequency": 8304 + }, + { + "word": "usé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worn out;used", + "example_sentence_native": "Ses chaussures sont très usées.", + "example_sentence_english": "His shoes are very worn out.", + "pos": "adjective", + "word_frequency": 8305 + }, + { + "word": "votant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voter", + "example_sentence_native": "Chaque votant a le droit de s'exprimer.", + "example_sentence_english": "Every voter has the right to express themselves.", + "pos": "noun", + "word_frequency": 8306 + }, + { + "word": "épuisement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhaustion;depletion", + "example_sentence_native": "Il souffre d'épuisement professionnel.", + "example_sentence_english": "He suffers from professional exhaustion.", + "pos": "noun", + "word_frequency": 8310 + }, + { + "word": "érotique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erotic", + "example_sentence_native": "C'est une œuvre d'art à caractère érotique.", + "example_sentence_english": "It's an erotic work of art.", + "pos": "adjective", + "word_frequency": 8311 + }, + { + "word": "ajuster", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adjust", + "example_sentence_native": "Il faut ajuster les paramètres.", + "example_sentence_english": "The settings need to be adjusted.", + "pos": "verb", + "word_frequency": 8312 + }, + { + "word": "aligner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to align", + "example_sentence_native": "Veuillez aligner les chaises.", + "example_sentence_english": "Please align the chairs.", + "pos": "verb", + "word_frequency": 8313 + }, + { + "word": "analyste", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analyst", + "example_sentence_native": "L'analyste financier a présenté son rapport.", + "example_sentence_english": "The financial analyst presented his report.", + "pos": "noun", + "word_frequency": 8314 + }, + { + "word": "anticipation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anticipation", + "example_sentence_native": "L'anticipation de l'événement était grande.", + "example_sentence_english": "The anticipation for the event was great.", + "pos": "noun", + "word_frequency": 8315 + }, + { + "word": "apostolique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apostolic", + "example_sentence_native": "Il a reçu une bénédiction apostolique.", + "example_sentence_english": "He received an apostolic blessing.", + "pos": "adjective", + "word_frequency": 8316 + }, + { + "word": "approprier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appropriate;to make suitable", + "example_sentence_native": "Il faut s'approprier les nouvelles méthodes.", + "example_sentence_english": "One must appropriate the new methods.", + "pos": "verb", + "word_frequency": 8317 + }, + { + "word": "apprécié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appreciated;valued", + "example_sentence_native": "Son travail est très apprécié.", + "example_sentence_english": "His work is highly appreciated.", + "pos": "adjective", + "word_frequency": 8318 + }, + { + "word": "apéro", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aperitif;pre-dinner drink", + "example_sentence_native": "On prend un apéro avant le dîner.", + "example_sentence_english": "We're having an aperitif before dinner.", + "pos": "noun", + "word_frequency": 8319 + }, + { + "word": "arcade", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arcade", + "example_sentence_native": "Les enfants aiment jouer dans la salle d'arcade.", + "example_sentence_english": "Children like to play in the arcade room.", + "pos": "noun", + "word_frequency": 8320 + }, + { + "word": "astronomie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomy", + "example_sentence_native": "L'astronomie est l'étude des corps célestes.", + "example_sentence_english": "Astronomy is the study of celestial bodies.", + "pos": "noun", + "word_frequency": 8321 + }, + { + "word": "baromètre", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barometer", + "example_sentence_native": "Le baromètre indique une baisse de pression.", + "example_sentence_english": "The barometer indicates a drop in pressure.", + "pos": "noun", + "word_frequency": 8323 + }, + { + "word": "boucherie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher shop", + "example_sentence_native": "J'achète ma viande à la boucherie du coin.", + "example_sentence_english": "I buy my meat at the local butcher shop.", + "pos": "noun", + "word_frequency": 8324 + }, + { + "word": "bémol", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flat (music);drawback", + "example_sentence_native": "Il y a un petit bémol à son plan.", + "example_sentence_english": "There's a small drawback to his plan.", + "pos": "noun", + "word_frequency": 8327 + }, + { + "word": "calcium", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calcium", + "example_sentence_native": "Le lait est une bonne source de calcium.", + "example_sentence_english": "Milk is a good source of calcium.", + "pos": "noun", + "word_frequency": 8328 + }, + { + "word": "charisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charisma", + "example_sentence_native": "Son charisme naturel attire les foules.", + "example_sentence_english": "His natural charisma attracts crowds.", + "pos": "noun", + "word_frequency": 8330 + }, + { + "word": "chronologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronological", + "example_sentence_native": "Nous avons classé les événements dans l'ordre chronologique.", + "example_sentence_english": "We classified the events in chronological order.", + "pos": "adjective", + "word_frequency": 8333 + }, + { + "word": "coloré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colorful", + "example_sentence_native": "Le marché était très coloré avec tous les fruits et légumes.", + "example_sentence_english": "The market was very colorful with all the fruits and vegetables.", + "pos": "adjective", + "word_frequency": 8334 + }, + { + "word": "compétitif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competitive", + "example_sentence_native": "Le marché du travail est très compétitif.", + "example_sentence_english": "The job market is very competitive.", + "pos": "adjective", + "word_frequency": 8335 + }, + { + "word": "couronné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowned;successful", + "example_sentence_native": "Ses efforts ont été couronnés de succès.", + "example_sentence_english": "His efforts were crowned with success.", + "pos": "adjective", + "word_frequency": 8337 + }, + { + "word": "câlin", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hug;cuddle", + "example_sentence_native": "J'ai besoin d'un gros câlin.", + "example_sentence_english": "I need a big hug.", + "pos": "noun", + "word_frequency": 8338 + }, + { + "word": "devis", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quote;estimate", + "example_sentence_native": "J'ai demandé un devis pour les travaux.", + "example_sentence_english": "I asked for a quote for the work.", + "pos": "noun", + "word_frequency": 8340 + }, + { + "word": "dune", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dune", + "example_sentence_native": "Les dunes de sable s'étendent à perte de vue.", + "example_sentence_english": "The sand dunes stretch as far as the eye can see.", + "pos": "noun", + "word_frequency": 8341 + }, + { + "word": "durablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustainably;durably", + "example_sentence_native": "Il faut agir durablement pour protéger l'environnement.", + "example_sentence_english": "We must act sustainably to protect the environment.", + "pos": "adverb", + "word_frequency": 8342 + }, + { + "word": "défaillance", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "failure;breakdown", + "example_sentence_native": "Le système a subi une défaillance technique.", + "example_sentence_english": "The system suffered a technical failure.", + "pos": "noun", + "word_frequency": 8343 + }, + { + "word": "dégoût", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgust", + "example_sentence_native": "Il a ressenti un profond dégoût pour cette injustice.", + "example_sentence_english": "He felt a deep disgust for this injustice.", + "pos": "noun", + "word_frequency": 8344 + }, + { + "word": "dégustation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasting", + "example_sentence_native": "Nous avons participé à une dégustation de vins.", + "example_sentence_english": "We participated in a wine tasting.", + "pos": "noun", + "word_frequency": 8345 + }, + { + "word": "démentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to contradict", + "example_sentence_native": "Le ministre a démenti les rumeurs.", + "example_sentence_english": "The minister denied the rumors.", + "pos": "verb", + "word_frequency": 8346 + }, + { + "word": "démonter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dismantle;to take apart", + "example_sentence_native": "Il a dû démonter le meuble pour le transporter.", + "example_sentence_english": "He had to dismantle the furniture to transport it.", + "pos": "verb", + "word_frequency": 8347 + }, + { + "word": "déprime", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blues;low spirits", + "example_sentence_native": "Elle a un peu la déprime en hiver.", + "example_sentence_english": "She gets a bit of the blues in winter.", + "pos": "noun", + "word_frequency": 8348 + }, + { + "word": "détacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to detach;to unfasten", + "example_sentence_native": "Peux-tu détacher cette étiquette ?", + "example_sentence_english": "Can you detach this label?", + "pos": "verb", + "word_frequency": 8349 + }, + { + "word": "embarras", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarrassment;difficulty", + "example_sentence_native": "J'étais dans l'embarras face à cette situation.", + "example_sentence_english": "I was in a difficult situation.", + "pos": "noun", + "word_frequency": 8350 + }, + { + "word": "evolution", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evolution", + "example_sentence_native": "L'évolution des technologies est rapide.", + "example_sentence_english": "The evolution of technologies is rapid.", + "pos": "noun", + "word_frequency": 8351 + }, + { + "word": "finaliste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finalist", + "example_sentence_native": "Il est l'un des finalistes du concours.", + "example_sentence_english": "He is one of the finalists of the competition.", + "pos": "noun", + "word_frequency": 8354 + }, + { + "word": "finalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "finality;purpose", + "example_sentence_native": "Quelle est la finalité de ce projet ?", + "example_sentence_english": "What is the ultimate goal of this project?", + "pos": "noun", + "word_frequency": 8355 + }, + { + "word": "finition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finish;finishing", + "example_sentence_native": "La finition de ce meuble est impeccable.", + "example_sentence_english": "The finish of this furniture is impeccable.", + "pos": "noun", + "word_frequency": 8356 + }, + { + "word": "fièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proudly", + "example_sentence_native": "Il a fièrement montré son diplôme.", + "example_sentence_english": "He proudly showed his diploma.", + "pos": "adverb", + "word_frequency": 8357 + }, + { + "word": "foin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hay", + "example_sentence_native": "Les chevaux mangent du foin.", + "example_sentence_english": "Horses eat hay.", + "pos": "noun", + "word_frequency": 8358 + }, + { + "word": "forge", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forge", + "example_sentence_native": "Le forgeron travaillait dans sa forge.", + "example_sentence_english": "The blacksmith worked in his forge.", + "pos": "noun", + "word_frequency": 8359 + }, + { + "word": "fret", + "article_with_word": "le fret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freight", + "example_sentence_native": "Le fret maritime est essentiel pour le commerce international.", + "example_sentence_english": "Sea freight is essential for international trade.", + "pos": "noun", + "word_frequency": 8360 + }, + { + "word": "gelé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frozen", + "example_sentence_native": "L'eau dans le tuyau est gelée.", + "example_sentence_english": "The water in the pipe is frozen.", + "pos": "adjective", + "word_frequency": 8361 + }, + { + "word": "ghetto", + "article_with_word": "le ghetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ghetto", + "example_sentence_native": "Le film dépeint la vie dans un ghetto urbain.", + "example_sentence_english": "The film depicts life in an urban ghetto.", + "pos": "noun", + "word_frequency": 8362 + }, + { + "word": "gonflé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inflated;swollen", + "example_sentence_native": "Le pneu de vélo est gonflé.", + "example_sentence_english": "The bicycle tire is inflated.", + "pos": "adjective", + "word_frequency": 8363 + }, + { + "word": "grandiose", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grandiose;magnificent", + "example_sentence_native": "Le projet était grandiose mais irréalisable.", + "example_sentence_english": "The project was grandiose but unfeasible.", + "pos": "adjective", + "word_frequency": 8364 + }, + { + "word": "géologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geological", + "example_sentence_native": "Ils étudient la formation géologique de la région.", + "example_sentence_english": "They are studying the geological formation of the region.", + "pos": "adjective", + "word_frequency": 8365 + }, + { + "word": "haricot", + "article_with_word": "le haricot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bean", + "example_sentence_native": "J'aime les haricots verts avec mon dîner.", + "example_sentence_english": "I like green beans with my dinner.", + "pos": "noun", + "word_frequency": 8367 + }, + { + "word": "humoristique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humorous", + "example_sentence_native": "Il a un style d'écriture très humoristique.", + "example_sentence_english": "He has a very humorous writing style.", + "pos": "adjective", + "word_frequency": 8369 + }, + { + "word": "infirmier", + "article_with_word": "l'infirmier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nurse (male)", + "example_sentence_native": "L'infirmier a pris ma tension artérielle.", + "example_sentence_english": "The nurse took my blood pressure.", + "pos": "noun", + "word_frequency": 8371 + }, + { + "word": "insigne", + "article_with_word": "l'insigne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "badge;emblem", + "example_sentence_native": "Il portait un insigne de police sur sa veste.", + "example_sentence_english": "He wore a police badge on his jacket.", + "pos": "noun", + "word_frequency": 8372 + }, + { + "word": "interpeller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to question;to challenge;to call out", + "example_sentence_native": "La police a interpellé le suspect.", + "example_sentence_english": "The police questioned the suspect.", + "pos": "verb", + "word_frequency": 8373 + }, + { + "word": "jonction", + "article_with_word": "la jonction", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junction", + "example_sentence_native": "Prenez la prochaine jonction à droite.", + "example_sentence_english": "Take the next junction on the right.", + "pos": "noun", + "word_frequency": 8375 + }, + { + "word": "laurier", + "article_with_word": "le laurier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laurel", + "example_sentence_native": "La couronne de laurier est un symbole de victoire.", + "example_sentence_english": "The laurel wreath is a symbol of victory.", + "pos": "noun", + "word_frequency": 8377 + }, + { + "word": "mentor", + "article_with_word": "le mentor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentor", + "example_sentence_native": "Il a trouvé un excellent mentor pour sa carrière.", + "example_sentence_english": "He found an excellent mentor for his career.", + "pos": "noun", + "word_frequency": 8381 + }, + { + "word": "ministériel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ministerial", + "example_sentence_native": "La décision ministérielle a été annoncée.", + "example_sentence_english": "The ministerial decision was announced.", + "pos": "adjective", + "word_frequency": 8382 + }, + { + "word": "mordre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bite", + "example_sentence_native": "Le chien a mordu le facteur.", + "example_sentence_english": "The dog bit the mailman.", + "pos": "verb", + "word_frequency": 8383 + }, + { + "word": "mémorable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorable", + "example_sentence_native": "Ce fut une soirée vraiment mémorable.", + "example_sentence_english": "It was a truly memorable evening.", + "pos": "adjective", + "word_frequency": 8386 + }, + { + "word": "nef", + "article_with_word": "la nef", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nave (of a church)", + "example_sentence_native": "La nef de la cathédrale est impressionnante.", + "example_sentence_english": "The nave of the cathedral is impressive.", + "pos": "noun", + "word_frequency": 8388 + }, + { + "word": "observé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observed", + "example_sentence_native": "Le phénomène observé est rare.", + "example_sentence_english": "The observed phenomenon is rare.", + "pos": "adjective", + "word_frequency": 8390 + }, + { + "word": "offensif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive", + "example_sentence_native": "L'équipe a adopté une stratégie offensive.", + "example_sentence_english": "The team adopted an offensive strategy.", + "pos": "adjective", + "word_frequency": 8391 + }, + { + "word": "pallier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to compensate for;to remedy", + "example_sentence_native": "Il faut pallier ce manque de ressources.", + "example_sentence_english": "We must compensate for this lack of resources.", + "pos": "verb", + "word_frequency": 8392 + }, + { + "word": "patriotisme", + "article_with_word": "le patriotisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotism", + "example_sentence_native": "Le patriotisme est un sentiment fort dans ce pays.", + "example_sentence_english": "Patriotism is a strong feeling in this country.", + "pos": "noun", + "word_frequency": 8393 + }, + { + "word": "patronat", + "article_with_word": "le patronat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "employers' association;management", + "example_sentence_native": "Le patronat et les syndicats négocient.", + "example_sentence_english": "The employers' association and the unions are negotiating.", + "pos": "noun", + "word_frequency": 8394 + }, + { + "word": "perche", + "article_with_word": "la perche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pole;perch", + "example_sentence_native": "Il a utilisé une longue perche pour atteindre le fruit.", + "example_sentence_english": "He used a long pole to reach the fruit.", + "pos": "noun", + "word_frequency": 8395 + }, + { + "word": "pragmatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pragmatic", + "example_sentence_native": "Son approche est très pragmatique.", + "example_sentence_english": "His approach is very pragmatic.", + "pos": "adjective", + "word_frequency": 8396 + }, + { + "word": "pronostic", + "article_with_word": "le pronostic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prognosis;prediction", + "example_sentence_native": "Le pronostic vital du patient est stable.", + "example_sentence_english": "The patient's vital prognosis is stable.", + "pos": "noun", + "word_frequency": 8397 + }, + { + "word": "pèlerin", + "article_with_word": "le pèlerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrim", + "example_sentence_native": "Les pèlerins se dirigent vers Saint-Jacques-de-Compostelle.", + "example_sentence_english": "The pilgrims are heading towards Santiago de Compostela.", + "pos": "noun", + "word_frequency": 8398 + }, + { + "word": "raide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stiff;steep;straight", + "example_sentence_native": "La pente est très raide.", + "example_sentence_english": "The slope is very steep.", + "pos": "adjective", + "word_frequency": 8399 + }, + { + "word": "rationnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rational", + "example_sentence_native": "Il a une approche très rationnelle des problèmes.", + "example_sentence_english": "He has a very rational approach to problems.", + "pos": "adjective", + "word_frequency": 8400 + }, + { + "word": "ravage", + "article_with_word": "le ravage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastation;havoc", + "example_sentence_native": "Les inondations ont causé des ravages dans la région.", + "example_sentence_english": "The floods caused devastation in the region.", + "pos": "noun", + "word_frequency": 8401 + }, + { + "word": "refrain", + "article_with_word": "le refrain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chorus;refrain", + "example_sentence_native": "J'aime le refrain de cette chanson.", + "example_sentence_english": "I like the chorus of this song.", + "pos": "noun", + "word_frequency": 8402 + }, + { + "word": "regagner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to regain;to return to", + "example_sentence_native": "Il a réussi à regagner sa confiance.", + "example_sentence_english": "He managed to regain his confidence.", + "pos": "verb", + "word_frequency": 8403 + }, + { + "word": "rhume", + "article_with_word": "le rhume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cold (illness)", + "example_sentence_native": "J'ai attrapé un gros rhume.", + "example_sentence_english": "I caught a bad cold.", + "pos": "noun", + "word_frequency": 8404 + }, + { + "word": "solidité", + "article_with_word": "la solidité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solidity;strength", + "example_sentence_native": "La solidité de la structure est essentielle.", + "example_sentence_english": "The solidity of the structure is essential.", + "pos": "noun", + "word_frequency": 8410 + }, + { + "word": "souhaitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desirable;advisable", + "example_sentence_native": "Il est souhaitable de prendre des précautions.", + "example_sentence_english": "It is desirable to take precautions.", + "pos": "adjective", + "word_frequency": 8411 + }, + { + "word": "soulèvement", + "article_with_word": "le soulèvement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uprising;lifting", + "example_sentence_native": "Le soulèvement populaire a surpris le gouvernement.", + "example_sentence_english": "The popular uprising surprised the government.", + "pos": "noun", + "word_frequency": 8412 + }, + { + "word": "spoiler", + "article_with_word": "le spoiler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spoiler", + "example_sentence_native": "Ne me donne pas de spoiler sur la fin du film!", + "example_sentence_english": "Don't give me any spoilers about the end of the movie!", + "pos": "numeral", + "word_frequency": 8413 + }, + { + "word": "transcription", + "article_with_word": "la transcription", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transcription", + "example_sentence_native": "La transcription de l'interview a pris du temps.", + "example_sentence_english": "The transcription of the interview took time.", + "pos": "noun", + "word_frequency": 8416 + }, + { + "word": "validation", + "article_with_word": "la validation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validation", + "example_sentence_native": "Nous attendons la validation du projet.", + "example_sentence_english": "We are awaiting the validation of the project.", + "pos": "noun", + "word_frequency": 8417 + }, + { + "word": "ventilation", + "article_with_word": "la ventilation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ventilation", + "example_sentence_native": "Le système de ventilation est en panne.", + "example_sentence_english": "The ventilation system is out of order.", + "pos": "noun", + "word_frequency": 8418 + }, + { + "word": "vtt", + "article_with_word": "le VTT", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mountain bike", + "example_sentence_native": "J'ai acheté un nouveau VTT pour les randonnées.", + "example_sentence_english": "I bought a new mountain bike for hikes.", + "pos": "numeral", + "word_frequency": 8419 + }, + { + "word": "écologiste", + "article_with_word": "un écologiste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmentalist", + "example_sentence_native": "Elle est une écologiste engagée.", + "example_sentence_english": "She is a committed environmentalist.", + "pos": "noun", + "word_frequency": 8420 + }, + { + "word": "élastique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elastic", + "example_sentence_native": "Ce tissu est très élastique.", + "example_sentence_english": "This fabric is very elastic.", + "pos": "adjective", + "word_frequency": 8421 + }, + { + "word": "émotionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emotional", + "example_sentence_native": "Il a un soutien émotionnel important.", + "example_sentence_english": "He has significant emotional support.", + "pos": "adjective", + "word_frequency": 8422 + }, + { + "word": "énoncé", + "article_with_word": "un énoncé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statement;utterance", + "example_sentence_native": "L'énoncé du problème était clair.", + "example_sentence_english": "The statement of the problem was clear.", + "pos": "noun", + "word_frequency": 8423 + }, + { + "word": "éolien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wind (adj.);wind-powered", + "example_sentence_native": "Les parcs éoliens produisent de l'énergie propre.", + "example_sentence_english": "Wind farms produce clean energy.", + "pos": "adjective", + "word_frequency": 8424 + }, + { + "word": "épave", + "article_with_word": "une épave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wreck;wreckage", + "example_sentence_native": "Ils ont découvert l'épave d'un ancien navire.", + "example_sentence_english": "They discovered the wreck of an old ship.", + "pos": "noun", + "word_frequency": 8425 + }, + { + "word": "érable", + "article_with_word": "l'érable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maple", + "example_sentence_native": "Le sirop d'érable est délicieux.", + "example_sentence_english": "Maple syrup is delicious.", + "pos": "noun", + "word_frequency": 8426 + }, + { + "word": "aspirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aspire;to suck in", + "example_sentence_native": "Il aspire à une vie meilleure.", + "example_sentence_english": "He aspires to a better life.", + "pos": "verb", + "word_frequency": 8430 + }, + { + "word": "barbier", + "article_with_word": "le barbier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barber", + "example_sentence_native": "Je vais chez le barbier pour me faire couper la barbe.", + "example_sentence_english": "I'm going to the barber to get my beard trimmed.", + "pos": "noun", + "word_frequency": 8433 + }, + { + "word": "baroque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baroque", + "example_sentence_native": "L'architecture baroque est très ornée.", + "example_sentence_english": "Baroque architecture is very ornate.", + "pos": "adjective", + "word_frequency": 8434 + }, + { + "word": "bourreau", + "article_with_word": "le bourreau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executioner;tormentor", + "example_sentence_native": "Le bourreau a exécuté sa sentence.", + "example_sentence_english": "The executioner carried out his sentence.", + "pos": "noun", + "word_frequency": 8436 + }, + { + "word": "braquage", + "article_with_word": "le braquage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heist;robbery", + "example_sentence_native": "La police enquête sur le braquage de la banque.", + "example_sentence_english": "The police are investigating the bank robbery.", + "pos": "noun", + "word_frequency": 8437 + }, + { + "word": "béni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blessed", + "example_sentence_native": "Il se sent béni d'avoir une telle famille.", + "example_sentence_english": "He feels blessed to have such a family.", + "pos": "adjective", + "word_frequency": 8438 + }, + { + "word": "bêtement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupidly;foolishly", + "example_sentence_native": "Il a bêtement oublié ses clés.", + "example_sentence_english": "He foolishly forgot his keys.", + "pos": "adverb", + "word_frequency": 8439 + }, + { + "word": "cacao", + "article_with_word": "le cacao", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cocoa", + "example_sentence_native": "J'aime le chocolat chaud au cacao.", + "example_sentence_english": "I like hot cocoa chocolate.", + "pos": "noun", + "word_frequency": 8440 + }, + { + "word": "caramel", + "article_with_word": "le caramel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "caramel", + "example_sentence_native": "J'adore les bonbons au caramel.", + "example_sentence_english": "I love caramel candies.", + "pos": "noun", + "word_frequency": 8442 + }, + { + "word": "cargo", + "article_with_word": "le cargo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cargo ship", + "example_sentence_native": "Le cargo a accosté au port.", + "example_sentence_english": "The cargo ship docked at the port.", + "pos": "noun", + "word_frequency": 8443 + }, + { + "word": "carreau", + "article_with_word": "le carreau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tile;pane", + "example_sentence_native": "Il a cassé un carreau de la fenêtre.", + "example_sentence_english": "He broke a window pane.", + "pos": "noun", + "word_frequency": 8444 + }, + { + "word": "cartographie", + "article_with_word": "la cartographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cartography", + "example_sentence_native": "La cartographie est l'art de faire des cartes.", + "example_sentence_english": "Cartography is the art of making maps.", + "pos": "noun", + "word_frequency": 8445 + }, + { + "word": "centré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "centered", + "example_sentence_native": "L'image est bien centrée sur l'écran.", + "example_sentence_english": "The image is well centered on the screen.", + "pos": "adjective", + "word_frequency": 8447 + }, + { + "word": "cognac", + "article_with_word": "le cognac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cognac", + "example_sentence_native": "Il a offert un verre de cognac.", + "example_sentence_english": "He offered a glass of cognac.", + "pos": "noun", + "word_frequency": 8450 + }, + { + "word": "collectivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collectively", + "example_sentence_native": "Ils ont décidé collectivement de la stratégie.", + "example_sentence_english": "They collectively decided on the strategy.", + "pos": "adverb", + "word_frequency": 8451 + }, + { + "word": "confidentialité", + "article_with_word": "la confidentialité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidentiality", + "example_sentence_native": "Nous devons respecter la confidentialité des données.", + "example_sentence_english": "We must respect data confidentiality.", + "pos": "noun", + "word_frequency": 8453 + }, + { + "word": "conjoncture", + "article_with_word": "la conjoncture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "economic situation;conjuncture", + "example_sentence_native": "La conjoncture économique est incertaine.", + "example_sentence_english": "The economic situation is uncertain.", + "pos": "noun", + "word_frequency": 8454 + }, + { + "word": "consolidation", + "article_with_word": "la consolidation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consolidation", + "example_sentence_native": "La consolidation des dettes est nécessaire.", + "example_sentence_english": "Debt consolidation is necessary.", + "pos": "noun", + "word_frequency": 8455 + }, + { + "word": "consolider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consolidate", + "example_sentence_native": "Il faut consolider les fondations du bâtiment.", + "example_sentence_english": "We need to consolidate the building's foundations.", + "pos": "verb", + "word_frequency": 8456 + }, + { + "word": "corner", + "article_with_word": "le corner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corner kick", + "example_sentence_native": "L'équipe a obtenu un corner.", + "example_sentence_english": "The team got a corner kick.", + "pos": "noun", + "word_frequency": 8457 + }, + { + "word": "croquis", + "article_with_word": "le croquis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sketch", + "example_sentence_native": "Il a fait un croquis rapide du paysage.", + "example_sentence_english": "He made a quick sketch of the landscape.", + "pos": "noun", + "word_frequency": 8458 + }, + { + "word": "défavorable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfavorable", + "example_sentence_native": "Les conditions météorologiques sont défavorables.", + "example_sentence_english": "The weather conditions are unfavorable.", + "pos": "adjective", + "word_frequency": 8464 + }, + { + "word": "défiance", + "article_with_word": "la défiance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distrust;defiance", + "example_sentence_native": "Il y a une grande défiance envers les politiciens.", + "example_sentence_english": "There is great distrust towards politicians.", + "pos": "noun", + "word_frequency": 8465 + }, + { + "word": "démo", + "article_with_word": "la démo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demo", + "example_sentence_native": "J'ai regardé la démo du nouveau jeu.", + "example_sentence_english": "I watched the demo of the new game.", + "pos": "noun", + "word_frequency": 8466 + }, + { + "word": "dépistage", + "article_with_word": "le dépistage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screening;testing", + "example_sentence_native": "Le dépistage précoce est crucial pour certaines maladies.", + "example_sentence_english": "Early screening is crucial for certain diseases.", + "pos": "noun", + "word_frequency": 8467 + }, + { + "word": "détenteur", + "article_with_word": "le détenteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holder;owner", + "example_sentence_native": "Le détenteur du record a été félicité.", + "example_sentence_english": "The record holder was congratulated.", + "pos": "noun", + "word_frequency": 8468 + }, + { + "word": "empathie", + "article_with_word": "l'empathie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empathy", + "example_sentence_native": "L'empathie est une qualité importante.", + "example_sentence_english": "Empathy is an important quality.", + "pos": "noun", + "word_frequency": 8470 + }, + { + "word": "enlevé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "removed;spirited;lively", + "example_sentence_native": "Le tableau a été enlevé du mur.", + "example_sentence_english": "The painting was removed from the wall.", + "pos": "adjective", + "word_frequency": 8471 + }, + { + "word": "excitant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exciting", + "example_sentence_native": "C'était un match très excitant.", + "example_sentence_english": "It was a very exciting match.", + "pos": "adjective", + "word_frequency": 8473 + }, + { + "word": "exode", + "article_with_word": "l'exode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exodus", + "example_sentence_native": "L'exode rural a vidé les campagnes.", + "example_sentence_english": "The rural exodus emptied the countryside.", + "pos": "noun", + "word_frequency": 8474 + }, + { + "word": "export", + "article_with_word": "l'export", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "export", + "example_sentence_native": "Les chiffres de l'export sont en hausse.", + "example_sentence_english": "Export figures are on the rise.", + "pos": "noun", + "word_frequency": 8475 + }, + { + "word": "faisceau", + "article_with_word": "le faisceau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beam;bundle", + "example_sentence_native": "Un faisceau de lumière traversait la pièce.", + "example_sentence_english": "A beam of light crossed the room.", + "pos": "noun", + "word_frequency": 8476 + }, + { + "word": "filiation", + "article_with_word": "la filiation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parentage;lineage", + "example_sentence_native": "La filiation est établie par l'acte de naissance.", + "example_sentence_english": "Parentage is established by the birth certificate.", + "pos": "noun", + "word_frequency": 8477 + }, + { + "word": "frotter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rub", + "example_sentence_native": "Il faut frotter la tache pour la faire partir.", + "example_sentence_english": "You have to rub the stain to make it go away.", + "pos": "verb", + "word_frequency": 8478 + }, + { + "word": "griller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grill;to burn;to skip", + "example_sentence_native": "Il aime griller des saucisses au barbecue.", + "example_sentence_english": "He likes to grill sausages on the barbecue.", + "pos": "verb", + "word_frequency": 8482 + }, + { + "word": "haram", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forbidden (in Islam)", + "example_sentence_native": "Manger du porc est haram pour les musulmans.", + "example_sentence_english": "Eating pork is forbidden for Muslims.", + "pos": "noun", + "word_frequency": 8483 + }, + { + "word": "homophobe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homophobic", + "example_sentence_native": "Ses propos étaient clairement homophobes.", + "example_sentence_english": "His remarks were clearly homophobic.", + "pos": "adjective", + "word_frequency": 8485 + }, + { + "word": "impuissance", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerlessness;impotence", + "example_sentence_native": "Il ressentait un sentiment d'impuissance face à la situation.", + "example_sentence_english": "He felt a sense of powerlessness in the face of the situation.", + "pos": "noun", + "word_frequency": 8486 + }, + { + "word": "incompétence", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompetence", + "example_sentence_native": "Son incompétence a causé de nombreux problèmes.", + "example_sentence_english": "His incompetence caused many problems.", + "pos": "noun", + "word_frequency": 8487 + }, + { + "word": "indéniable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeniable", + "example_sentence_native": "C'est un fait indéniable.", + "example_sentence_english": "It's an undeniable fact.", + "pos": "adjective", + "word_frequency": 8488 + }, + { + "word": "institute", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "institute", + "example_sentence_native": "Il travaille à l'institut de recherche.", + "example_sentence_english": "He works at the research institute.", + "pos": "noun", + "word_frequency": 8489 + }, + { + "word": "institutionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institutional", + "example_sentence_native": "C'est une question de protocole institutionnel.", + "example_sentence_english": "It's a matter of institutional protocol.", + "pos": "adjective", + "word_frequency": 8490 + }, + { + "word": "inévitablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inevitably", + "example_sentence_native": "La situation va inévitablement s'améliorer.", + "example_sentence_english": "The situation will inevitably improve.", + "pos": "adverb", + "word_frequency": 8491 + }, + { + "word": "jardinier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gardener", + "example_sentence_native": "Le jardinier s'occupe des fleurs.", + "example_sentence_english": "The gardener takes care of the flowers.", + "pos": "noun", + "word_frequency": 8492 + }, + { + "word": "marqueur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marker (pen)", + "example_sentence_native": "J'ai besoin d'un marqueur pour écrire sur le tableau blanc.", + "example_sentence_english": "I need a marker to write on the whiteboard.", + "pos": "noun", + "word_frequency": 8498 + }, + { + "word": "meute", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pack (of wolves);mob", + "example_sentence_native": "Une meute de loups a été aperçue dans la forêt.", + "example_sentence_english": "A pack of wolves was spotted in the forest.", + "pos": "noun", + "word_frequency": 8499 + }, + { + "word": "mortier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mortar (construction;cooking);trench mortar", + "example_sentence_native": "Les maçons préparent le mortier pour les briques.", + "example_sentence_english": "The masons are preparing the mortar for the bricks.", + "pos": "noun", + "word_frequency": 8502 + }, + { + "word": "mémorial", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memorial", + "example_sentence_native": "Ils ont visité le mémorial de la guerre.", + "example_sentence_english": "They visited the war memorial.", + "pos": "noun", + "word_frequency": 8503 + }, + { + "word": "naïveté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naivety", + "example_sentence_native": "Sa naïveté l'a rendu vulnérable.", + "example_sentence_english": "Her naivety made her vulnerable.", + "pos": "noun", + "word_frequency": 8504 + }, + { + "word": "newsletter", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "newsletter", + "example_sentence_native": "Je me suis abonné à leur newsletter.", + "example_sentence_english": "I subscribed to their newsletter.", + "pos": "noun", + "word_frequency": 8505 + }, + { + "word": "parano", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoid (colloquial)", + "example_sentence_native": "Il est un peu parano ces temps-ci.", + "example_sentence_english": "He's a bit paranoid these days.", + "pos": "adjective", + "word_frequency": 8506 + }, + { + "word": "patriotique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patriotic", + "example_sentence_native": "Il a un esprit très patriotique.", + "example_sentence_english": "He has a very patriotic spirit.", + "pos": "adjective", + "word_frequency": 8507 + }, + { + "word": "pitoyable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitiful;pathetic", + "example_sentence_native": "Sa performance était pitoyable.", + "example_sentence_english": "His performance was pitiful.", + "pos": "adjective", + "word_frequency": 8509 + }, + { + "word": "plasma", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plasma", + "example_sentence_native": "Le sang est composé de globules et de plasma.", + "example_sentence_english": "Blood is composed of cells and plasma.", + "pos": "noun", + "word_frequency": 8511 + }, + { + "word": "propreté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleanliness", + "example_sentence_native": "La propreté est essentielle dans un hôpital.", + "example_sentence_english": "Cleanliness is essential in a hospital.", + "pos": "noun", + "word_frequency": 8512 + }, + { + "word": "pâtisserie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastry;pastry shop", + "example_sentence_native": "J'ai acheté un croissant à la pâtisserie.", + "example_sentence_english": "I bought a croissant at the pastry shop.", + "pos": "noun", + "word_frequency": 8513 + }, + { + "word": "querelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarrel;dispute", + "example_sentence_native": "Ils ont eu une petite querelle à propos de l'argent.", + "example_sentence_english": "They had a small quarrel about money.", + "pos": "noun", + "word_frequency": 8514 + }, + { + "word": "relou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoying;heavy (colloquial)", + "example_sentence_native": "Ce type est vraiment relou.", + "example_sentence_english": "This guy is really annoying.", + "pos": "adjective", + "word_frequency": 8515 + }, + { + "word": "remords", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remorse", + "example_sentence_native": "Il n'a montré aucun remords pour ses actions.", + "example_sentence_english": "He showed no remorse for his actions.", + "pos": "noun", + "word_frequency": 8516 + }, + { + "word": "restant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remaining;leftover", + "example_sentence_native": "Nous avons mangé le restant du gâteau.", + "example_sentence_english": "We ate the remaining cake.", + "pos": "adjective", + "word_frequency": 8517 + }, + { + "word": "romancier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novelist", + "example_sentence_native": "Le romancier a publié son nouveau livre.", + "example_sentence_english": "The novelist published his new book.", + "pos": "noun", + "word_frequency": 8519 + }, + { + "word": "récompenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reward", + "example_sentence_native": "Il a décidé de récompenser ses employés pour leur travail acharné.", + "example_sentence_english": "He decided to reward his employees for their hard work.", + "pos": "verb", + "word_frequency": 8520 + }, + { + "word": "réfugier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take refuge", + "example_sentence_native": "Ils ont dû se réfugier dans un abri pendant la tempête.", + "example_sentence_english": "They had to take refuge in a shelter during the storm.", + "pos": "verb", + "word_frequency": 8521 + }, + { + "word": "répartir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distribute;to divide", + "example_sentence_native": "Le professeur a réparti les tâches entre les étudiants.", + "example_sentence_english": "The teacher distributed the tasks among the students.", + "pos": "verb", + "word_frequency": 8522 + }, + { + "word": "rétention", + "article_with_word": "la rétention", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retention", + "example_sentence_native": "La rétention d'eau peut être un problème de santé.", + "example_sentence_english": "Water retention can be a health problem.", + "pos": "noun", + "word_frequency": 8523 + }, + { + "word": "sauvegarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to save;to back up", + "example_sentence_native": "N'oubliez pas de sauvegarder votre travail avant de quitter l'ordinateur.", + "example_sentence_english": "Don't forget to save your work before leaving the computer.", + "pos": "verb", + "word_frequency": 8524 + }, + { + "word": "splendeur", + "article_with_word": "la splendeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "splendor;magnificence", + "example_sentence_native": "La splendeur du paysage était à couper le souffle.", + "example_sentence_english": "The splendor of the landscape was breathtaking.", + "pos": "noun", + "word_frequency": 8528 + }, + { + "word": "stérile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterile;barren", + "example_sentence_native": "Il est important d'utiliser des instruments stériles pour l'opération.", + "example_sentence_english": "It is important to use sterile instruments for the operation.", + "pos": "adjective", + "word_frequency": 8530 + }, + { + "word": "sympathisant", + "article_with_word": "le sympathisant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sympathizer;supporter", + "example_sentence_native": "Il est un sympathisant du parti écologiste.", + "example_sentence_english": "He is a sympathizer of the ecological party.", + "pos": "noun", + "word_frequency": 8531 + }, + { + "word": "syndic", + "article_with_word": "le syndic", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trustee;liquidator;property manager", + "example_sentence_native": "Le syndic de copropriété gère l'immeuble.", + "example_sentence_english": "The property manager manages the building.", + "pos": "noun", + "word_frequency": 8532 + }, + { + "word": "tailleur", + "article_with_word": "le tailleur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tailor;suit (women's)", + "example_sentence_native": "J'ai apporté ma veste chez le tailleur pour la faire ajuster.", + "example_sentence_english": "I took my jacket to the tailor to have it adjusted.", + "pos": "noun", + "word_frequency": 8533 + }, + { + "word": "thon", + "article_with_word": "le thon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tuna", + "example_sentence_native": "J'ai préparé une salade de thon pour le déjeuner.", + "example_sentence_english": "I made a tuna salad for lunch.", + "pos": "noun", + "word_frequency": 8535 + }, + { + "word": "toiture", + "article_with_word": "la toiture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roof;roofing", + "example_sentence_native": "La toiture de la maison a besoin d'être réparée.", + "example_sentence_english": "The roof of the house needs to be repaired.", + "pos": "noun", + "word_frequency": 8536 + }, + { + "word": "trek", + "article_with_word": "le trek", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trek;long journey", + "example_sentence_native": "Ils ont fait un long trek dans les montagnes.", + "example_sentence_english": "They went on a long trek in the mountains.", + "pos": "noun", + "word_frequency": 8537 + }, + { + "word": "turbo", + "article_with_word": "le turbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbo;turbocharger", + "example_sentence_native": "La voiture est équipée d'un moteur turbo.", + "example_sentence_english": "The car is equipped with a turbo engine.", + "pos": "noun", + "word_frequency": 8538 + }, + { + "word": "utopie", + "article_with_word": "l'utopie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utopia", + "example_sentence_native": "Créer une société parfaite est une utopie.", + "example_sentence_english": "Creating a perfect society is a utopia.", + "pos": "noun", + "word_frequency": 8539 + }, + { + "word": "vicomte", + "article_with_word": "le vicomte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viscount", + "example_sentence_native": "Le vicomte a hérité du château de son père.", + "example_sentence_english": "The viscount inherited his father's castle.", + "pos": "noun", + "word_frequency": 8540 + }, + { + "word": "victorieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victorious", + "example_sentence_native": "L'équipe est rentrée victorieuse du tournoi.", + "example_sentence_english": "The team returned victorious from the tournament.", + "pos": "adjective", + "word_frequency": 8541 + }, + { + "word": "éclipse", + "article_with_word": "l'éclipse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eclipse", + "example_sentence_native": "Nous avons observé une éclipse lunaire la nuit dernière.", + "example_sentence_english": "We observed a lunar eclipse last night.", + "pos": "noun", + "word_frequency": 8547 + }, + { + "word": "éditorial", + "article_with_word": "l'éditorial", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "editorial", + "example_sentence_native": "L'éditorial du journal critiquait la nouvelle loi.", + "example_sentence_english": "The newspaper's editorial criticized the new law.", + "pos": "noun", + "word_frequency": 8548 + }, + { + "word": "équitation", + "article_with_word": "l'équitation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horseback riding;equestrianism", + "example_sentence_native": "Elle pratique l'équitation depuis son enfance.", + "example_sentence_english": "She has been practicing horseback riding since her childhood.", + "pos": "noun", + "word_frequency": 8549 + }, + { + "word": "accomplissement", + "article_with_word": "l'accomplissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplishment;achievement", + "example_sentence_native": "C'est un grand accomplissement pour notre équipe.", + "example_sentence_english": "It's a great accomplishment for our team.", + "pos": "noun", + "word_frequency": 8550 + }, + { + "word": "alien", + "article_with_word": "l'alien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alien", + "example_sentence_native": "Le film parle d'un alien qui arrive sur Terre.", + "example_sentence_english": "The movie is about an alien who arrives on Earth.", + "pos": "noun", + "word_frequency": 8552 + }, + { + "word": "allongé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretched out;lying down", + "example_sentence_native": "Il était allongé sur le canapé en lisant un livre.", + "example_sentence_english": "He was lying stretched out on the sofa reading a book.", + "pos": "adjective", + "word_frequency": 8553 + }, + { + "word": "appréhender", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to apprehend;to grasp;to fear", + "example_sentence_native": "La police a réussi à appréhender le suspect.", + "example_sentence_english": "The police managed to apprehend the suspect.", + "pos": "verb", + "word_frequency": 8555 + }, + { + "word": "apôtre", + "article_with_word": "l'apôtre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apostle", + "example_sentence_native": "Saint Pierre était l'un des douze apôtres.", + "example_sentence_english": "Saint Peter was one of the twelve apostles.", + "pos": "noun", + "word_frequency": 8556 + }, + { + "word": "arrogance", + "article_with_word": "l'arrogance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogance", + "example_sentence_native": "Son arrogance l'empêche d'écouter les autres.", + "example_sentence_english": "His arrogance prevents him from listening to others.", + "pos": "noun", + "word_frequency": 8557 + }, + { + "word": "basique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basic", + "example_sentence_native": "C'est une connaissance basique pour comprendre le sujet.", + "example_sentence_english": "It's a basic knowledge to understand the subject.", + "pos": "adjective", + "word_frequency": 8559 + }, + { + "word": "batteur", + "article_with_word": "le batteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drummer", + "example_sentence_native": "Le batteur a un rythme incroyable.", + "example_sentence_english": "The drummer has an incredible rhythm.", + "pos": "noun", + "word_frequency": 8560 + }, + { + "word": "board", + "article_with_word": "le board", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "board", + "example_sentence_native": "Le board a pris une décision importante.", + "example_sentence_english": "The board made an important decision.", + "pos": "noun", + "word_frequency": 8562 + }, + { + "word": "bridge", + "article_with_word": "le bridge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bridge (card game)", + "example_sentence_native": "Ils jouent au bridge tous les jeudis.", + "example_sentence_english": "They play bridge every Thursday.", + "pos": "noun", + "word_frequency": 8563 + }, + { + "word": "camerounais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cameroonian", + "example_sentence_native": "Elle a des origines camerounaises.", + "example_sentence_english": "She has Cameroonian origins.", + "pos": "adjective", + "word_frequency": 8565 + }, + { + "word": "caresse", + "article_with_word": "la caresse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caress", + "example_sentence_native": "Une douce caresse sur sa joue l'a réconfortée.", + "example_sentence_english": "A soft caress on her cheek comforted her.", + "pos": "noun", + "word_frequency": 8566 + }, + { + "word": "coloration", + "article_with_word": "la coloration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coloring;dye", + "example_sentence_native": "Elle a fait une nouvelle coloration de cheveux.", + "example_sentence_english": "She got a new hair coloring.", + "pos": "noun", + "word_frequency": 8568 + }, + { + "word": "commode", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convenient;comfortable", + "example_sentence_native": "Cette chaise est très commode.", + "example_sentence_english": "This chair is very comfortable.", + "pos": "adjective", + "word_frequency": 8569 + }, + { + "word": "compact", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compact", + "example_sentence_native": "C'est une voiture très compacte.", + "example_sentence_english": "It's a very compact car.", + "pos": "adjective", + "word_frequency": 8570 + }, + { + "word": "comparativement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparatively", + "example_sentence_native": "Comparativement aux autres, il est très rapide.", + "example_sentence_english": "Comparatively to others, he is very fast.", + "pos": "adverb", + "word_frequency": 8571 + }, + { + "word": "conventionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conventional", + "example_sentence_native": "Il préfère les méthodes conventionnelles.", + "example_sentence_english": "He prefers conventional methods.", + "pos": "adjective", + "word_frequency": 8572 + }, + { + "word": "courtoisie", + "article_with_word": "la courtoisie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courtesy", + "example_sentence_native": "Il a répondu avec beaucoup de courtoisie.", + "example_sentence_english": "He replied with great courtesy.", + "pos": "noun", + "word_frequency": 8573 + }, + { + "word": "dealer", + "article_with_word": "le dealer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dealer", + "example_sentence_native": "La police a arrêté un dealer de drogue.", + "example_sentence_english": "The police arrested a drug dealer.", + "pos": "noun", + "word_frequency": 8575 + }, + { + "word": "dotation", + "article_with_word": "la dotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endowment;allocation", + "example_sentence_native": "La dotation annuelle de l'université a augmenté.", + "example_sentence_english": "The university's annual endowment has increased.", + "pos": "noun", + "word_frequency": 8578 + }, + { + "word": "embêter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bother;to annoy", + "example_sentence_native": "Arrête de m'embêter avec tes questions!", + "example_sentence_english": "Stop bothering me with your questions!", + "pos": "verb", + "word_frequency": 8582 + }, + { + "word": "escroc", + "article_with_word": "l'escroc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swindler;con artist", + "example_sentence_native": "L'escroc a été arrêté par la police.", + "example_sentence_english": "The swindler was arrested by the police.", + "pos": "noun", + "word_frequency": 8583 + }, + { + "word": "experience", + "article_with_word": "l'expérience", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "experience", + "example_sentence_native": "J'ai beaucoup d'expérience dans ce domaine.", + "example_sentence_english": "I have a lot of experience in this field.", + "pos": "noun", + "word_frequency": 8584 + }, + { + "word": "expiration", + "article_with_word": "l'expiration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expiration", + "example_sentence_native": "La date d'expiration est le mois prochain.", + "example_sentence_english": "The expiration date is next month.", + "pos": "noun", + "word_frequency": 8585 + }, + { + "word": "faubourg", + "article_with_word": "le faubourg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suburb;outskirt", + "example_sentence_native": "Ils habitent dans un faubourg de la ville.", + "example_sentence_english": "They live in a suburb of the city.", + "pos": "noun", + "word_frequency": 8586 + }, + { + "word": "feuilleton", + "article_with_word": "le feuilleton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soap opera;serial", + "example_sentence_native": "Elle regarde son feuilleton préféré tous les soirs.", + "example_sentence_english": "She watches her favorite soap opera every evening.", + "pos": "noun", + "word_frequency": 8587 + }, + { + "word": "finlandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Finnish", + "example_sentence_native": "Il parle couramment le finlandais.", + "example_sentence_english": "He speaks Finnish fluently.", + "pos": "adjective", + "word_frequency": 8588 + }, + { + "word": "folk", + "article_with_word": "le folk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folk (music)", + "example_sentence_native": "J'aime écouter de la musique folk.", + "example_sentence_english": "I like listening to folk music.", + "pos": "noun", + "word_frequency": 8590 + }, + { + "word": "férié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "public holiday (adj.);non-working", + "example_sentence_native": "Le 1er mai est un jour férié.", + "example_sentence_english": "May 1st is a public holiday.", + "pos": "adjective", + "word_frequency": 8592 + }, + { + "word": "gameplay", + "article_with_word": "le gameplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gameplay", + "example_sentence_native": "Le gameplay de ce jeu est très addictif.", + "example_sentence_english": "The gameplay of this game is very addictive.", + "pos": "noun", + "word_frequency": 8594 + }, + { + "word": "gomme", + "article_with_word": "la gomme", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eraser;gum", + "example_sentence_native": "J'ai besoin d'une gomme pour effacer mon erreur.", + "example_sentence_english": "I need an eraser to erase my mistake.", + "pos": "noun", + "word_frequency": 8596 + }, + { + "word": "gonfler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inflate;to swell", + "example_sentence_native": "Il faut gonfler les pneus de la voiture.", + "example_sentence_english": "You need to inflate the car tires.", + "pos": "verb", + "word_frequency": 8597 + }, + { + "word": "guichet", + "article_with_word": "le guichet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counter;ticket window", + "example_sentence_native": "Veuillez vous présenter au guichet numéro 3.", + "example_sentence_english": "Please go to counter number 3.", + "pos": "noun", + "word_frequency": 8598 + }, + { + "word": "gymnastique", + "article_with_word": "la gymnastique", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gymnastics", + "example_sentence_native": "Elle pratique la gymnastique depuis son enfance.", + "example_sentence_english": "She has been practicing gymnastics since her childhood.", + "pos": "noun", + "word_frequency": 8599 + }, + { + "word": "généralité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generality", + "example_sentence_native": "Il a parlé en généralités sans donner de détails.", + "example_sentence_english": "He spoke in generalities without giving details.", + "pos": "noun", + "word_frequency": 8600 + }, + { + "word": "hanche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hip", + "example_sentence_native": "Elle a mal à la hanche après sa chute.", + "example_sentence_english": "She has a sore hip after her fall.", + "pos": "noun", + "word_frequency": 8601 + }, + { + "word": "harceler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to harass", + "example_sentence_native": "Il ne faut jamais harceler quelqu'un.", + "example_sentence_english": "One must never harass someone.", + "pos": "verb", + "word_frequency": 8602 + }, + { + "word": "héroïque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heroic", + "example_sentence_native": "Son acte héroïque a sauvé des vies.", + "example_sentence_english": "His heroic act saved lives.", + "pos": "adjective", + "word_frequency": 8603 + }, + { + "word": "incompréhension", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding", + "example_sentence_native": "Il y a eu une incompréhension entre eux.", + "example_sentence_english": "There was a misunderstanding between them.", + "pos": "noun", + "word_frequency": 8604 + }, + { + "word": "influent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influential", + "example_sentence_native": "C'est une personne très influente dans ce domaine.", + "example_sentence_english": "He is a very influential person in this field.", + "pos": "adjective", + "word_frequency": 8605 + }, + { + "word": "inversion", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inversion", + "example_sentence_native": "L'inversion du sujet est courante en français.", + "example_sentence_english": "Subject inversion is common in French.", + "pos": "noun", + "word_frequency": 8606 + }, + { + "word": "irrésistible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irresistible", + "example_sentence_native": "Son charme est irrésistible.", + "example_sentence_english": "His charm is irresistible.", + "pos": "adjective", + "word_frequency": 8607 + }, + { + "word": "joker", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joker", + "example_sentence_native": "Le joker peut remplacer n'importe quelle carte.", + "example_sentence_english": "The joker can replace any card.", + "pos": "noun", + "word_frequency": 8610 + }, + { + "word": "lama", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "llama", + "example_sentence_native": "Le lama est un animal d'Amérique du Sud.", + "example_sentence_english": "The llama is an animal from South America.", + "pos": "noun", + "word_frequency": 8613 + }, + { + "word": "lamentable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lamentable", + "example_sentence_native": "Sa performance était lamentable.", + "example_sentence_english": "His performance was lamentable.", + "pos": "adjective", + "word_frequency": 8614 + }, + { + "word": "lotus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lotus", + "example_sentence_native": "La fleur de lotus est très belle.", + "example_sentence_english": "The lotus flower is very beautiful.", + "pos": "noun", + "word_frequency": 8615 + }, + { + "word": "législateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislator", + "example_sentence_native": "Le rôle du législateur est de créer des lois.", + "example_sentence_english": "The role of the legislator is to create laws.", + "pos": "noun", + "word_frequency": 8616 + }, + { + "word": "mate", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mate (drink)", + "example_sentence_native": "J'aime boire du maté le matin.", + "example_sentence_english": "I like to drink mate in the morning.", + "pos": "noun", + "word_frequency": 8621 + }, + { + "word": "meunier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miller", + "example_sentence_native": "Le meunier transforme le blé en farine.", + "example_sentence_english": "The miller transforms wheat into flour.", + "pos": "noun", + "word_frequency": 8622 + }, + { + "word": "minima", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "minimums", + "example_sentence_native": "Il faut respecter les minima sociaux.", + "example_sentence_english": "Social minimums must be respected.", + "pos": "noun", + "word_frequency": 8623 + }, + { + "word": "naval", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naval", + "example_sentence_native": "L'histoire navale est fascinante.", + "example_sentence_english": "Naval history is fascinating.", + "pos": "adjective", + "word_frequency": 8624 + }, + { + "word": "naze", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knackered;useless", + "example_sentence_native": "Je suis complètement naze après cette journée.", + "example_sentence_english": "I'm completely knackered after this day.", + "pos": "adjective", + "word_frequency": 8625 + }, + { + "word": "nazisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Nazism", + "example_sentence_native": "Le nazisme a causé des millions de morts.", + "example_sentence_english": "Nazism caused millions of deaths.", + "pos": "noun", + "word_frequency": 8626 + }, + { + "word": "optimisme", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimism", + "example_sentence_native": "Son optimisme est contagieux.", + "example_sentence_english": "His optimism is contagious.", + "pos": "noun", + "word_frequency": 8631 + }, + { + "word": "orner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adorn", + "example_sentence_native": "Ils ont orné la salle de fleurs.", + "example_sentence_english": "They adorned the room with flowers.", + "pos": "verb", + "word_frequency": 8633 + }, + { + "word": "paternité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paternity", + "example_sentence_native": "La paternité est une grande responsabilité.", + "example_sentence_english": "Paternity is a great responsibility.", + "pos": "noun", + "word_frequency": 8634 + }, + { + "word": "perturber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disturb", + "example_sentence_native": "Le bruit a perturbé ma concentration.", + "example_sentence_english": "The noise disturbed my concentration.", + "pos": "verb", + "word_frequency": 8636 + }, + { + "word": "piloter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pilot", + "example_sentence_native": "Il pilote l'avion avec expertise.", + "example_sentence_english": "He pilots the plane with expertise.", + "pos": "verb", + "word_frequency": 8637 + }, + { + "word": "podcast", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "podcast", + "example_sentence_native": "J'écoute un podcast tous les matins.", + "example_sentence_english": "I listen to a podcast every morning.", + "pos": "noun", + "word_frequency": 8639 + }, + { + "word": "positivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "positively", + "example_sentence_native": "Il a réagi positivement à la proposition.", + "example_sentence_english": "He reacted positively to the proposal.", + "pos": "adverb", + "word_frequency": 8640 + }, + { + "word": "pou", + "article_with_word": "le pou", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "louse", + "example_sentence_native": "Les poux sont de petits insectes parasites.", + "example_sentence_english": "Lice are small parasitic insects.", + "pos": "noun", + "word_frequency": 8641 + }, + { + "word": "pouls", + "article_with_word": "le pouls", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pulse", + "example_sentence_native": "L'infirmière a pris son pouls.", + "example_sentence_english": "The nurse took his pulse.", + "pos": "noun", + "word_frequency": 8642 + }, + { + "word": "pourrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rot;to decay", + "example_sentence_native": "Les fruits ont commencé à pourrir dans le panier.", + "example_sentence_english": "The fruits started to rot in the basket.", + "pos": "verb", + "word_frequency": 8643 + }, + { + "word": "projeter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to project;to plan", + "example_sentence_native": "Nous projetons de voyager en France l'année prochaine.", + "example_sentence_english": "We plan to travel to France next year.", + "pos": "verb", + "word_frequency": 8644 + }, + { + "word": "prometteur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promising", + "example_sentence_native": "C'est un jeune artiste très prometteur.", + "example_sentence_english": "He is a very promising young artist.", + "pos": "adjective", + "word_frequency": 8645 + }, + { + "word": "prépa", + "article_with_word": "la prépa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preparatory class (for Grandes Écoles)", + "example_sentence_native": "Il a passé deux ans en prépa avant d'intégrer une grande école.", + "example_sentence_english": "He spent two years in prep class before entering a Grande École.", + "pos": "noun", + "word_frequency": 8646 + }, + { + "word": "psychique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychic;mental", + "example_sentence_native": "Sa santé psychique est très importante.", + "example_sentence_english": "His mental health is very important.", + "pos": "adjective", + "word_frequency": 8647 + }, + { + "word": "pus", + "article_with_word": "le pus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pus", + "example_sentence_native": "L'infection a provoqué la formation de pus.", + "example_sentence_english": "The infection caused the formation of pus.", + "pos": "noun", + "word_frequency": 8648 + }, + { + "word": "pyjama", + "article_with_word": "le pyjama", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pajamas", + "example_sentence_native": "Il a mis son pyjama avant d'aller se coucher.", + "example_sentence_english": "He put on his pajamas before going to bed.", + "pos": "noun", + "word_frequency": 8649 + }, + { + "word": "pétrolier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil (adj.);petroleum", + "example_sentence_native": "La crise pétrolière a eu un impact mondial.", + "example_sentence_english": "The oil crisis had a global impact.", + "pos": "adjective", + "word_frequency": 8650 + }, + { + "word": "quantique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantum", + "example_sentence_native": "La physique quantique est un domaine complexe.", + "example_sentence_english": "Quantum physics is a complex field.", + "pos": "adjective", + "word_frequency": 8652 + }, + { + "word": "quatuor", + "article_with_word": "le quatuor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quartet", + "example_sentence_native": "Le quatuor a joué une magnifique symphonie.", + "example_sentence_english": "The quartet played a magnificent symphony.", + "pos": "noun", + "word_frequency": 8653 + }, + { + "word": "recharger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recharge;to reload", + "example_sentence_native": "J'ai besoin de recharger mon téléphone.", + "example_sentence_english": "I need to recharge my phone.", + "pos": "verb", + "word_frequency": 8655 + }, + { + "word": "redevenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to become again", + "example_sentence_native": "Il espère redevenir champion un jour.", + "example_sentence_english": "He hopes to become champion again one day.", + "pos": "verb", + "word_frequency": 8656 + }, + { + "word": "refonte", + "article_with_word": "la refonte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overhaul;redesign", + "example_sentence_native": "Le gouvernement a annoncé une refonte du système fiscal.", + "example_sentence_english": "The government announced an overhaul of the tax system.", + "pos": "noun", + "word_frequency": 8657 + }, + { + "word": "relique", + "article_with_word": "la relique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relic", + "example_sentence_native": "Cette vieille montre est une relique de famille.", + "example_sentence_english": "This old watch is a family relic.", + "pos": "noun", + "word_frequency": 8658 + }, + { + "word": "restructuration", + "article_with_word": "la restructuration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restructuring", + "example_sentence_native": "L'entreprise a subi une restructuration majeure.", + "example_sentence_english": "The company underwent a major restructuring.", + "pos": "noun", + "word_frequency": 8659 + }, + { + "word": "riverain", + "article_with_word": "le riverain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resident (along a river;road)", + "example_sentence_native": "Les riverains se sont plaints du bruit.", + "example_sentence_english": "The residents complained about the noise.", + "pos": "noun", + "word_frequency": 8661 + }, + { + "word": "réclamation", + "article_with_word": "la réclamation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complaint;claim", + "example_sentence_native": "J'ai déposé une réclamation pour le service.", + "example_sentence_english": "I filed a complaint about the service.", + "pos": "noun", + "word_frequency": 8663 + }, + { + "word": "serrure", + "article_with_word": "la serrure", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lock", + "example_sentence_native": "La clé est dans la serrure.", + "example_sentence_english": "The key is in the lock.", + "pos": "noun", + "word_frequency": 8664 + }, + { + "word": "special", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "special", + "example_sentence_native": "C'est un jour très special pour moi.", + "example_sentence_english": "It's a very special day for me.", + "pos": "adjective", + "word_frequency": 8667 + }, + { + "word": "spiritualité", + "article_with_word": "la spiritualité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirituality", + "example_sentence_native": "La spiritualité est importante pour beaucoup de gens.", + "example_sentence_english": "Spirituality is important for many people.", + "pos": "noun", + "word_frequency": 8668 + }, + { + "word": "stream", + "article_with_word": "le stream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stream (live broadcast)", + "example_sentence_native": "Il a regardé le stream du jeu vidéo.", + "example_sentence_english": "He watched the video game stream.", + "pos": "noun", + "word_frequency": 8670 + }, + { + "word": "surfer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surf", + "example_sentence_native": "J'aime surfer sur internet.", + "example_sentence_english": "I like to surf the internet.", + "pos": "verb", + "word_frequency": 8671 + }, + { + "word": "surréaliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surreal", + "example_sentence_native": "Le film avait une atmosphère surréaliste.", + "example_sentence_english": "The film had a surreal atmosphere.", + "pos": "adjective", + "word_frequency": 8672 + }, + { + "word": "tampon", + "article_with_word": "le tampon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stamp;buffer;tampon", + "example_sentence_native": "J'ai besoin d'un tampon pour ce document.", + "example_sentence_english": "I need a stamp for this document.", + "pos": "noun", + "word_frequency": 8673 + }, + { + "word": "timing", + "article_with_word": "le timing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timing", + "example_sentence_native": "Le timing de cette réunion était parfait.", + "example_sentence_english": "The timing of this meeting was perfect.", + "pos": "noun", + "word_frequency": 8675 + }, + { + "word": "tremper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to soak;to dip", + "example_sentence_native": "Il a trempé son biscuit dans le café.", + "example_sentence_english": "He dipped his cookie in the coffee.", + "pos": "verb", + "word_frequency": 8677 + }, + { + "word": "tuteur", + "article_with_word": "le tuteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tutor;guardian;stake (for plants)", + "example_sentence_native": "Mon tuteur m'a beaucoup aidé pour mes études.", + "example_sentence_english": "My tutor helped me a lot with my studies.", + "pos": "noun", + "word_frequency": 8678 + }, + { + "word": "téléviser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to televise", + "example_sentence_native": "L'événement sera télévisé en direct.", + "example_sentence_english": "The event will be televised live.", + "pos": "verb", + "word_frequency": 8679 + }, + { + "word": "unitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unitary", + "example_sentence_native": "La production unitaire de chaque pièce est essentielle.", + "example_sentence_english": "The unitary production of each part is essential.", + "pos": "adjective", + "word_frequency": 8680 + }, + { + "word": "utérus", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uterus", + "example_sentence_native": "L'utérus est un organe reproducteur féminin.", + "example_sentence_english": "The uterus is a female reproductive organ.", + "pos": "noun", + "word_frequency": 8681 + }, + { + "word": "valet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valet;jack (card)", + "example_sentence_native": "Le valet a garé la voiture devant l'hôtel.", + "example_sentence_english": "The valet parked the car in front of the hotel.", + "pos": "noun", + "word_frequency": 8682 + }, + { + "word": "vanille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vanilla", + "example_sentence_native": "J'adore la glace à la vanille.", + "example_sentence_english": "I love vanilla ice cream.", + "pos": "noun", + "word_frequency": 8683 + }, + { + "word": "vicaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vicar;curate", + "example_sentence_native": "Le vicaire a prononcé le sermon.", + "example_sentence_english": "The vicar delivered the sermon.", + "pos": "noun", + "word_frequency": 8684 + }, + { + "word": "violeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rapist", + "example_sentence_native": "Le violeur a été arrêté par la police.", + "example_sentence_english": "The rapist was arrested by the police.", + "pos": "noun", + "word_frequency": 8685 + }, + { + "word": "vêtir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dress;to clothe", + "example_sentence_native": "Elle aime vêtir ses enfants avec des vêtements confortables.", + "example_sentence_english": "She likes to dress her children in comfortable clothes.", + "pos": "verb", + "word_frequency": 8686 + }, + { + "word": "égide", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aegis;patronage", + "example_sentence_native": "Le projet a été réalisé sous l'égide de l'université.", + "example_sentence_english": "The project was carried out under the aegis of the university.", + "pos": "noun", + "word_frequency": 8688 + }, + { + "word": "énième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nth (as in;the nth time)", + "example_sentence_native": "C'est la énième fois qu'il fait la même erreur.", + "example_sentence_english": "It's the nth time he's made the same mistake.", + "pos": "adjective", + "word_frequency": 8689 + }, + { + "word": "abondant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abundant;plentiful", + "example_sentence_native": "La récolte de cette année est très abondante.", + "example_sentence_english": "This year's harvest is very abundant.", + "pos": "adjective", + "word_frequency": 8690 + }, + { + "word": "accidentellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accidentally", + "example_sentence_native": "J'ai accidentellement laissé tomber mon téléphone.", + "example_sentence_english": "I accidentally dropped my phone.", + "pos": "adverb", + "word_frequency": 8691 + }, + { + "word": "anal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anal", + "example_sentence_native": "Le terme \"anal\" est souvent utilisé en anatomie.", + "example_sentence_english": "The term \"anal\" is often used in anatomy.", + "pos": "adjective", + "word_frequency": 8692 + }, + { + "word": "anarchiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anarchist", + "example_sentence_native": "Il se décrit comme un anarchiste convaincu.", + "example_sentence_english": "He describes himself as a convinced anarchist.", + "pos": "noun", + "word_frequency": 8693 + }, + { + "word": "ancre", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anchor", + "example_sentence_native": "Le bateau a jeté l'ancre près de la côte.", + "example_sentence_english": "The boat dropped anchor near the coast.", + "pos": "noun", + "word_frequency": 8694 + }, + { + "word": "aquatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aquatic", + "example_sentence_native": "Les plantes aquatiques poussent dans l'eau.", + "example_sentence_english": "Aquatic plants grow in water.", + "pos": "adjective", + "word_frequency": 8695 + }, + { + "word": "ballade", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballad;stroll", + "example_sentence_native": "Nous avons fait une longue ballade dans la forêt.", + "example_sentence_english": "We took a long stroll in the forest.", + "pos": "noun", + "word_frequency": 8701 + }, + { + "word": "bascule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seesaw;switch;tipping point", + "example_sentence_native": "L'enfant jouait sur la bascule au parc.", + "example_sentence_english": "The child was playing on the seesaw at the park.", + "pos": "noun", + "word_frequency": 8703 + }, + { + "word": "biblique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biblical", + "example_sentence_native": "C'est une histoire d'une ampleur biblique.", + "example_sentence_english": "It's a story of biblical proportions.", + "pos": "adjective", + "word_frequency": 8705 + }, + { + "word": "blabla", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blah blah;chatter", + "example_sentence_native": "Arrête ton blabla et agis !", + "example_sentence_english": "Stop your blah blah and act!", + "pos": "noun", + "word_frequency": 8706 + }, + { + "word": "bouleverser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to upset;to disrupt;to overwhelm", + "example_sentence_native": "La nouvelle a bouleversé tout le monde.", + "example_sentence_english": "The news upset everyone.", + "pos": "verb", + "word_frequency": 8708 + }, + { + "word": "buter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stumble;to trip", + "example_sentence_native": "Il a buté contre une pierre et est tombé.", + "example_sentence_english": "He stumbled on a stone and fell.", + "pos": "verb", + "word_frequency": 8711 + }, + { + "word": "bêta", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beta;stupid (informal)", + "example_sentence_native": "C'est une version bêta du logiciel.", + "example_sentence_english": "It's a beta version of the software.", + "pos": "adjective", + "word_frequency": 8712 + }, + { + "word": "cachette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiding place", + "example_sentence_native": "Il a trouvé une bonne cachette pour jouer à cache-cache.", + "example_sentence_english": "He found a good hiding place to play hide-and-seek.", + "pos": "noun", + "word_frequency": 8713 + }, + { + "word": "cadence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cadence;rhythm;pace", + "example_sentence_native": "Le travail se fait à une bonne cadence.", + "example_sentence_english": "The work is being done at a good pace.", + "pos": "noun", + "word_frequency": 8714 + }, + { + "word": "calmement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calmly", + "example_sentence_native": "Il a répondu calmement à la question.", + "example_sentence_english": "He answered the question calmly.", + "pos": "adverb", + "word_frequency": 8715 + }, + { + "word": "chelem", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slam (grand slam in tennis;bridge)", + "example_sentence_native": "Elle a remporté le Grand Chelem.", + "example_sentence_english": "She won the Grand Slam.", + "pos": "noun", + "word_frequency": 8716 + }, + { + "word": "chialer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whine;to cry (informal;slang)", + "example_sentence_native": "Arrête de chialer pour si peu !", + "example_sentence_english": "Stop whining for so little!", + "pos": "verb", + "word_frequency": 8717 + }, + { + "word": "collecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collect", + "example_sentence_native": "Nous devons collecter des fonds pour l'association.", + "example_sentence_english": "We need to collect funds for the association.", + "pos": "verb", + "word_frequency": 8719 + }, + { + "word": "cor", + "article_with_word": "le cor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horn", + "example_sentence_native": "Le chasseur a sonné du cor.", + "example_sentence_english": "The hunter blew the horn.", + "pos": "noun", + "word_frequency": 8721 + }, + { + "word": "correspondant", + "article_with_word": "le correspondant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correspondent", + "example_sentence_native": "Notre correspondant à l'étranger nous a envoyé un rapport.", + "example_sentence_english": "Our correspondent abroad sent us a report.", + "pos": "noun", + "word_frequency": 8722 + }, + { + "word": "culinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culinary", + "example_sentence_native": "Il a un grand talent culinaire.", + "example_sentence_english": "He has great culinary talent.", + "pos": "adjective", + "word_frequency": 8723 + }, + { + "word": "cuve", + "article_with_word": "la cuve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vat", + "example_sentence_native": "Le vin fermente dans de grandes cuves en acier.", + "example_sentence_english": "The wine ferments in large steel vats.", + "pos": "noun", + "word_frequency": 8724 + }, + { + "word": "dinosaure", + "article_with_word": "le dinosaure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dinosaur", + "example_sentence_native": "Les dinosaures ont disparu il y a des millions d'années.", + "example_sentence_english": "Dinosaurs disappeared millions of years ago.", + "pos": "noun", + "word_frequency": 8727 + }, + { + "word": "dissimuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceal", + "example_sentence_native": "Il a essayé de dissimuler la vérité.", + "example_sentence_english": "He tried to conceal the truth.", + "pos": "verb", + "word_frequency": 8728 + }, + { + "word": "donjon", + "article_with_word": "le donjon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dungeon", + "example_sentence_native": "Le donjon du château était imprenable.", + "example_sentence_english": "The castle's keep was impregnable.", + "pos": "noun", + "word_frequency": 8729 + }, + { + "word": "débrouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manage", + "example_sentence_native": "Ne t'inquiète pas, je vais me débrouiller.", + "example_sentence_english": "Don't worry, I'll manage.", + "pos": "verb", + "word_frequency": 8732 + }, + { + "word": "décalé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offbeat", + "example_sentence_native": "Son humour est un peu décalé.", + "example_sentence_english": "His humor is a bit offbeat.", + "pos": "adjective", + "word_frequency": 8733 + }, + { + "word": "décliner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decline", + "example_sentence_native": "Elle a décliné l'invitation.", + "example_sentence_english": "She declined the invitation.", + "pos": "verb", + "word_frequency": 8734 + }, + { + "word": "décompte", + "article_with_word": "le décompte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countdown", + "example_sentence_native": "Le décompte avant le lancement a commencé.", + "example_sentence_english": "The countdown before the launch has begun.", + "pos": "noun", + "word_frequency": 8735 + }, + { + "word": "désespérément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desperately", + "example_sentence_native": "Il cherchait désespérément une solution.", + "example_sentence_english": "He was desperately looking for a solution.", + "pos": "adverb", + "word_frequency": 8736 + }, + { + "word": "emprisonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imprison", + "example_sentence_native": "Le criminel a été emprisonné pour dix ans.", + "example_sentence_english": "The criminal was imprisoned for ten years.", + "pos": "verb", + "word_frequency": 8739 + }, + { + "word": "ennuyeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boring", + "example_sentence_native": "Ce film est vraiment ennuyeux.", + "example_sentence_english": "This movie is really boring.", + "pos": "adjective", + "word_frequency": 8740 + }, + { + "word": "envoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fly away", + "example_sentence_native": "L'oiseau s'est envolé vers le ciel.", + "example_sentence_english": "The bird flew away towards the sky.", + "pos": "verb", + "word_frequency": 8741 + }, + { + "word": "excédent", + "article_with_word": "l'excédent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus", + "example_sentence_native": "L'entreprise a enregistré un excédent de bénéfices.", + "example_sentence_english": "The company recorded a surplus of profits.", + "pos": "noun", + "word_frequency": 8742 + }, + { + "word": "exhaustif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhaustive", + "example_sentence_native": "Nous avons fait une analyse exhaustive de la situation.", + "example_sentence_english": "We conducted an exhaustive analysis of the situation.", + "pos": "adjective", + "word_frequency": 8743 + }, + { + "word": "expulser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expel", + "example_sentence_native": "Ils ont été expulsés de leur logement.", + "example_sentence_english": "They were evicted from their housing.", + "pos": "verb", + "word_frequency": 8744 + }, + { + "word": "feeling", + "article_with_word": "le feeling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling", + "example_sentence_native": "J'ai un bon feeling pour ce projet.", + "example_sentence_english": "I have a good feeling about this project.", + "pos": "noun", + "word_frequency": 8745 + }, + { + "word": "foulard", + "article_with_word": "le foulard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scarf", + "example_sentence_native": "Elle portait un joli foulard en soie.", + "example_sentence_english": "She was wearing a pretty silk scarf.", + "pos": "noun", + "word_frequency": 8746 + }, + { + "word": "glissement", + "article_with_word": "le glissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slide", + "example_sentence_native": "Il y a eu un glissement de terrain après la pluie.", + "example_sentence_english": "There was a landslide after the rain.", + "pos": "noun", + "word_frequency": 8749 + }, + { + "word": "gâchis", + "article_with_word": "le gâchis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waste", + "example_sentence_native": "C'est du gâchis de jeter autant de nourriture.", + "example_sentence_english": "It's a waste to throw away so much food.", + "pos": "noun", + "word_frequency": 8750 + }, + { + "word": "généralisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widespread", + "example_sentence_native": "La panique était généralisée dans la foule.", + "example_sentence_english": "Panic was widespread in the crowd.", + "pos": "adjective", + "word_frequency": 8751 + }, + { + "word": "homophobie", + "article_with_word": "l'homophobie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homophobia", + "example_sentence_native": "La lutte contre l'homophobie est essentielle.", + "example_sentence_english": "The fight against homophobia is essential.", + "pos": "noun", + "word_frequency": 8753 + }, + { + "word": "indirect", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indirect", + "example_sentence_native": "C'est une conséquence indirecte de la décision.", + "example_sentence_english": "It's an indirect consequence of the decision.", + "pos": "adjective", + "word_frequency": 8754 + }, + { + "word": "inoubliable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unforgettable", + "example_sentence_native": "Ce voyage a été une expérience inoubliable.", + "example_sentence_english": "This trip was an unforgettable experience.", + "pos": "adjective", + "word_frequency": 8755 + }, + { + "word": "intrusion", + "article_with_word": "l'intrusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrusion", + "example_sentence_native": "Nous avons détecté une intrusion dans le système.", + "example_sentence_english": "We detected an intrusion into the system.", + "pos": "noun", + "word_frequency": 8756 + }, + { + "word": "ion", + "article_with_word": "l'ion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ion", + "example_sentence_native": "Un ion est un atome ou une molécule portant une charge électrique.", + "example_sentence_english": "An ion is an atom or molecule bearing an electric charge.", + "pos": "noun", + "word_frequency": 8757 + }, + { + "word": "ivresse", + "article_with_word": "l'ivresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkenness", + "example_sentence_native": "Il a été arrêté pour ivresse publique.", + "example_sentence_english": "He was arrested for public drunkenness.", + "pos": "noun", + "word_frequency": 8759 + }, + { + "word": "jeûne", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fast (abstinence from food)", + "example_sentence_native": "Le jeûne intermittent est devenu populaire.", + "example_sentence_english": "Intermittent fasting has become popular.", + "pos": "noun", + "word_frequency": 8763 + }, + { + "word": "judaïsme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Judaism", + "example_sentence_native": "Le judaïsme est une religion monothéiste.", + "example_sentence_english": "Judaism is a monotheistic religion.", + "pos": "noun", + "word_frequency": 8765 + }, + { + "word": "judicieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judicious;wise", + "example_sentence_native": "C'était une décision très judicieuse.", + "example_sentence_english": "It was a very judicious decision.", + "pos": "adjective", + "word_frequency": 8766 + }, + { + "word": "licencier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dismiss;to fire", + "example_sentence_native": "L'entreprise a dû licencier plusieurs employés.", + "example_sentence_english": "The company had to dismiss several employees.", + "pos": "verb", + "word_frequency": 8767 + }, + { + "word": "lys", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lily", + "example_sentence_native": "Le lys est une belle fleur.", + "example_sentence_english": "The lily is a beautiful flower.", + "pos": "noun", + "word_frequency": 8770 + }, + { + "word": "mama", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mom;mama", + "example_sentence_native": "Ma mama m'a préparé un bon repas.", + "example_sentence_english": "My mom prepared a good meal for me.", + "pos": "noun", + "word_frequency": 8772 + }, + { + "word": "miniature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miniature;model", + "example_sentence_native": "Il collectionne des voitures miniatures.", + "example_sentence_english": "He collects miniature cars.", + "pos": "noun", + "word_frequency": 8777 + }, + { + "word": "moléculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "molecular", + "example_sentence_native": "La biologie moléculaire est un domaine fascinant.", + "example_sentence_english": "Molecular biology is a fascinating field.", + "pos": "adjective", + "word_frequency": 8778 + }, + { + "word": "montréalais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Montrealer;from Montreal", + "example_sentence_native": "Il est un artiste montréalais.", + "example_sentence_english": "He is a Montrealer artist.", + "pos": "adjective", + "word_frequency": 8781 + }, + { + "word": "moutarde", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mustard", + "example_sentence_native": "J'aime la moutarde de Dijon.", + "example_sentence_english": "I like Dijon mustard.", + "pos": "noun", + "word_frequency": 8782 + }, + { + "word": "muse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muse", + "example_sentence_native": "Elle est sa muse et son inspiration.", + "example_sentence_english": "She is his muse and his inspiration.", + "pos": "noun", + "word_frequency": 8784 + }, + { + "word": "mèche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lock (of hair);wick", + "example_sentence_native": "Une mèche de cheveux tombait sur son front.", + "example_sentence_english": "A lock of hair fell on her forehead.", + "pos": "noun", + "word_frequency": 8785 + }, + { + "word": "môme", + "article_with_word": "le/la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kid;brat (informal)", + "example_sentence_native": "Ce môme est très intelligent pour son âge.", + "example_sentence_english": "This kid is very smart for his age.", + "pos": "noun", + "word_frequency": 8786 + }, + { + "word": "naviguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to navigate;to browse", + "example_sentence_native": "J'aime naviguer sur internet.", + "example_sentence_english": "I like to browse the internet.", + "pos": "verb", + "word_frequency": 8787 + }, + { + "word": "nordique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nordic;northern", + "example_sentence_native": "J'adore les paysages nordiques.", + "example_sentence_english": "I love Nordic landscapes.", + "pos": "adjective", + "word_frequency": 8789 + }, + { + "word": "odieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "odious;hateful", + "example_sentence_native": "Son comportement était odieux.", + "example_sentence_english": "His behavior was odious.", + "pos": "adjective", + "word_frequency": 8790 + }, + { + "word": "ovale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oval", + "example_sentence_native": "La table est de forme ovale.", + "example_sentence_english": "The table is oval-shaped.", + "pos": "adjective", + "word_frequency": 8793 + }, + { + "word": "papy", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandpa;granddad", + "example_sentence_native": "Mon papy me raconte toujours de belles histoires.", + "example_sentence_english": "My grandpa always tells me beautiful stories.", + "pos": "noun", + "word_frequency": 8794 + }, + { + "word": "pendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hang", + "example_sentence_native": "Il a pendu son manteau au portemanteau.", + "example_sentence_english": "He hung his coat on the coat rack.", + "pos": "verb", + "word_frequency": 8795 + }, + { + "word": "perquisition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "search (police);raid", + "example_sentence_native": "La police a effectué une perquisition à son domicile.", + "example_sentence_english": "The police conducted a search at his home.", + "pos": "noun", + "word_frequency": 8796 + }, + { + "word": "perturbation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbance;disruption", + "example_sentence_native": "Il y a eu des perturbations sur le réseau de transports.", + "example_sentence_english": "There were disruptions on the transport network.", + "pos": "noun", + "word_frequency": 8797 + }, + { + "word": "plaider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to plead;to argue", + "example_sentence_native": "L'avocat a plaidé non coupable pour son client.", + "example_sentence_english": "The lawyer pleaded not guilty for his client.", + "pos": "verb", + "word_frequency": 8798 + }, + { + "word": "poursuivi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pursued;prosecuted", + "example_sentence_native": "L'homme est poursuivi pour fraude.", + "example_sentence_english": "The man is prosecuted for fraud.", + "pos": "adjective", + "word_frequency": 8801 + }, + { + "word": "préparatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparatory", + "example_sentence_native": "Ils suivent un cours préparatoire avant l'examen.", + "example_sentence_english": "They are taking a preparatory course before the exam.", + "pos": "adjective", + "word_frequency": 8802 + }, + { + "word": "puzzle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puzzle", + "example_sentence_native": "J'ai acheté un nouveau puzzle de 1000 pièces.", + "example_sentence_english": "I bought a new 1000-piece puzzle.", + "pos": "noun", + "word_frequency": 8803 + }, + { + "word": "pédale", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pedal", + "example_sentence_native": "Appuie sur la pédale de frein.", + "example_sentence_english": "Press the brake pedal.", + "pos": "noun", + "word_frequency": 8804 + }, + { + "word": "périple", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "journey;odyssey", + "example_sentence_native": "Leur périple à travers le désert fut long et difficile.", + "example_sentence_english": "Their journey across the desert was long and difficult.", + "pos": "noun", + "word_frequency": 8805 + }, + { + "word": "racial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racial", + "example_sentence_native": "Il y a eu des tensions raciales dans la ville.", + "example_sentence_english": "There were racial tensions in the city.", + "pos": "adjective", + "word_frequency": 8806 + }, + { + "word": "rattacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reattach;to link", + "example_sentence_native": "Il faut rattacher ce câble au mur.", + "example_sentence_english": "This cable needs to be reattached to the wall.", + "pos": "verb", + "word_frequency": 8807 + }, + { + "word": "ravitaillement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resupply;provisioning", + "example_sentence_native": "L'avion a effectué une mission de ravitaillement.", + "example_sentence_english": "The plane carried out a resupply mission.", + "pos": "noun", + "word_frequency": 8808 + }, + { + "word": "reconstituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconstruct;to reconstitute", + "example_sentence_native": "La police a essayé de reconstituer les événements.", + "example_sentence_english": "The police tried to reconstruct the events.", + "pos": "verb", + "word_frequency": 8809 + }, + { + "word": "recouvert", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered", + "example_sentence_native": "La table était recouverte d'une nappe.", + "example_sentence_english": "The table was covered with a tablecloth.", + "pos": "adjective", + "word_frequency": 8810 + }, + { + "word": "recouvrement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recovery (of debts);covering", + "example_sentence_native": "Le service de recouvrement des dettes est très efficace.", + "example_sentence_english": "The debt recovery service is very efficient.", + "pos": "noun", + "word_frequency": 8811 + }, + { + "word": "retrouvaille", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reunion", + "example_sentence_native": "Leurs retrouvailles après tant d'années furent émouvantes.", + "example_sentence_english": "Their reunion after so many years was moving.", + "pos": "noun", + "word_frequency": 8812 + }, + { + "word": "réchauffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reheat;to warm up", + "example_sentence_native": "Peux-tu réchauffer la soupe, s'il te plaît ?", + "example_sentence_english": "Can you reheat the soup, please?", + "pos": "verb", + "word_frequency": 8815 + }, + { + "word": "résidentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residential", + "example_sentence_native": "C'est un quartier résidentiel calme.", + "example_sentence_english": "It's a quiet residential area.", + "pos": "adjective", + "word_frequency": 8816 + }, + { + "word": "sceptique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skeptical", + "example_sentence_native": "Je suis sceptique quant à cette nouvelle théorie.", + "example_sentence_english": "I am skeptical about this new theory.", + "pos": "adjective", + "word_frequency": 8819 + }, + { + "word": "scorpion", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scorpion", + "example_sentence_native": "Le scorpion est un arachnide venimeux.", + "example_sentence_english": "The scorpion is a venomous arachnid.", + "pos": "noun", + "word_frequency": 8820 + }, + { + "word": "shoah", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Shoah;Holocaust", + "example_sentence_native": "La Shoah est un événement tragique de l'histoire.", + "example_sentence_english": "The Shoah is a tragic event in history.", + "pos": "noun", + "word_frequency": 8823 + }, + { + "word": "significativement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significantly", + "example_sentence_native": "Les résultats ont significativement amélioré.", + "example_sentence_english": "The results significantly improved.", + "pos": "adverb", + "word_frequency": 8824 + }, + { + "word": "strip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strip (comic strip)", + "example_sentence_native": "J'ai lu un strip amusant dans le journal.", + "example_sentence_english": "I read a funny comic strip in the newspaper.", + "pos": "noun", + "word_frequency": 8825 + }, + { + "word": "texto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "text message", + "example_sentence_native": "Je t'envoie un texto pour te donner l'adresse.", + "example_sentence_english": "I'll send you a text message to give you the address.", + "pos": "noun", + "word_frequency": 8827 + }, + { + "word": "trade", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trade", + "example_sentence_native": "Il travaille dans le trade international.", + "example_sentence_english": "He works in international trade.", + "pos": "noun", + "word_frequency": 8828 + }, + { + "word": "trompe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trunk (elephant);horn (musical instrument)", + "example_sentence_native": "L'éléphant utilise sa trompe pour boire.", + "example_sentence_english": "The elephant uses its trunk to drink.", + "pos": "noun", + "word_frequency": 8829 + }, + { + "word": "verset", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verse (of a poem;song;or scripture)", + "example_sentence_native": "Elle a cité un verset de la Bible.", + "example_sentence_english": "She quoted a verse from the Bible.", + "pos": "noun", + "word_frequency": 8832 + }, + { + "word": "versé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knowledgeable;paid", + "example_sentence_native": "Il est très versé dans l'histoire romaine.", + "example_sentence_english": "He is very knowledgeable in Roman history.", + "pos": "adjective", + "word_frequency": 8833 + }, + { + "word": "émissaire", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emissary", + "example_sentence_native": "L'émissaire a été envoyé pour négocier la paix.", + "example_sentence_english": "The emissary was sent to negotiate peace.", + "pos": "noun", + "word_frequency": 8837 + }, + { + "word": "émouvant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moving;touching", + "example_sentence_native": "C'était un film très émouvant.", + "example_sentence_english": "It was a very moving film.", + "pos": "adjective", + "word_frequency": 8838 + }, + { + "word": "abc", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ABC;alphabet;basics", + "example_sentence_native": "Les enfants apprennent l'ABC à l'école.", + "example_sentence_english": "Children learn the ABCs at school.", + "pos": "noun", + "word_frequency": 8839 + }, + { + "word": "abstrait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstract", + "example_sentence_native": "L'art abstrait est souvent difficile à comprendre.", + "example_sentence_english": "Abstract art is often difficult to understand.", + "pos": "adjective", + "word_frequency": 8840 + }, + { + "word": "aigu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharp;acute", + "example_sentence_native": "Il ressent une douleur aiguë.", + "example_sentence_english": "He feels an acute pain.", + "pos": "adjective", + "word_frequency": 8842 + }, + { + "word": "analytique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analytical", + "example_sentence_native": "Il a un esprit très analytique.", + "example_sentence_english": "He has a very analytical mind.", + "pos": "adjective", + "word_frequency": 8844 + }, + { + "word": "ascendant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascending;upward;dominant", + "example_sentence_native": "Il a une influence ascendante sur le groupe.", + "example_sentence_english": "He has an ascending influence on the group.", + "pos": "adjective", + "word_frequency": 8846 + }, + { + "word": "attribut", + "article_with_word": "l'attribut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attribute", + "example_sentence_native": "La patience est un attribut important.", + "example_sentence_english": "Patience is an important attribute.", + "pos": "noun", + "word_frequency": 8847 + }, + { + "word": "bled", + "article_with_word": "le bled", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boondocks;middle of nowhere (informal)", + "example_sentence_native": "Il vit dans un petit bled perdu.", + "example_sentence_english": "He lives in a small lost village (boondocks).", + "pos": "noun", + "word_frequency": 8851 + }, + { + "word": "boucler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to buckle;to loop;to finish", + "example_sentence_native": "Il faut boucler sa ceinture.", + "example_sentence_english": "You must buckle your seatbelt.", + "pos": "verb", + "word_frequency": 8852 + }, + { + "word": "cerner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grasp;to define;to encircle", + "example_sentence_native": "Il est difficile de cerner le problème.", + "example_sentence_english": "It is difficult to grasp the problem.", + "pos": "verb", + "word_frequency": 8856 + }, + { + "word": "chanoine", + "article_with_word": "le chanoine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canon (clergyman)", + "example_sentence_native": "Le chanoine a célébré la messe.", + "example_sentence_english": "The canon celebrated the mass.", + "pos": "noun", + "word_frequency": 8857 + }, + { + "word": "cheminot", + "article_with_word": "le cheminot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "railway worker", + "example_sentence_native": "Le cheminot a vérifié les voies.", + "example_sentence_english": "The railway worker checked the tracks.", + "pos": "noun", + "word_frequency": 8858 + }, + { + "word": "clocher", + "article_with_word": "le clocher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bell tower;steeple", + "example_sentence_native": "Le clocher de l'église est très haut.", + "example_sentence_english": "The church bell tower is very high.", + "pos": "noun", + "word_frequency": 8859 + }, + { + "word": "concentré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concentrated;focused", + "example_sentence_native": "Il est très concentré sur son travail.", + "example_sentence_english": "He is very focused on his work.", + "pos": "adjective", + "word_frequency": 8861 + }, + { + "word": "concilier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconcile;to conciliate", + "example_sentence_native": "Il essaie de concilier travail et vie de famille.", + "example_sentence_english": "He tries to reconcile work and family life.", + "pos": "verb", + "word_frequency": 8862 + }, + { + "word": "consécration", + "article_with_word": "la consécration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consecration;dedication", + "example_sentence_native": "Ce prix est la consécration de sa carrière.", + "example_sentence_english": "This award is the consecration of his career.", + "pos": "noun", + "word_frequency": 8863 + }, + { + "word": "continental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continental", + "example_sentence_native": "Le climat continental est rude en hiver.", + "example_sentence_english": "The continental climate is harsh in winter.", + "pos": "adjective", + "word_frequency": 8864 + }, + { + "word": "covid", + "article_with_word": "la Covid", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Covid", + "example_sentence_native": "La Covid a changé nos vies.", + "example_sentence_english": "Covid has changed our lives.", + "pos": "noun", + "word_frequency": 8866 + }, + { + "word": "diffusé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broadcast;diffused", + "example_sentence_native": "Le programme est diffusé en direct.", + "example_sentence_english": "The program is broadcast live.", + "pos": "adjective", + "word_frequency": 8873 + }, + { + "word": "donneur", + "article_with_word": "le donneur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donor", + "example_sentence_native": "Il est un donneur de sang régulier.", + "example_sentence_english": "He is a regular blood donor.", + "pos": "noun", + "word_frequency": 8874 + }, + { + "word": "décomposition", + "article_with_word": "la décomposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decomposition;breakdown", + "example_sentence_native": "La décomposition des feuilles enrichit le sol.", + "example_sentence_english": "The decomposition of leaves enriches the soil.", + "pos": "noun", + "word_frequency": 8875 + }, + { + "word": "délibération", + "article_with_word": "la délibération", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberation", + "example_sentence_native": "La décision a été prise après une longue délibération.", + "example_sentence_english": "The decision was made after a long deliberation.", + "pos": "noun", + "word_frequency": 8876 + }, + { + "word": "désactiver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deactivate;to disable", + "example_sentence_native": "Il faut désactiver l'alarme.", + "example_sentence_english": "You must deactivate the alarm.", + "pos": "verb", + "word_frequency": 8877 + }, + { + "word": "exotique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exotic", + "example_sentence_native": "J'aime les fruits exotiques.", + "example_sentence_english": "I like exotic fruits.", + "pos": "adjective", + "word_frequency": 8880 + }, + { + "word": "flippant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creepy", + "example_sentence_native": "Ce film est vraiment flippant.", + "example_sentence_english": "This movie is really creepy.", + "pos": "adjective", + "word_frequency": 8881 + }, + { + "word": "foutu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruined", + "example_sentence_native": "Mon téléphone est foutu, il est tombé dans l'eau.", + "example_sentence_english": "My phone is ruined, it fell in the water.", + "pos": "adjective", + "word_frequency": 8882 + }, + { + "word": "frange", + "article_with_word": "la frange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fringe;bangs", + "example_sentence_native": "Elle a décidé de se faire une nouvelle frange.", + "example_sentence_english": "She decided to get new bangs.", + "pos": "noun", + "word_frequency": 8883 + }, + { + "word": "freinage", + "article_with_word": "le freinage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "braking", + "example_sentence_native": "Le freinage d'urgence a évité l'accident.", + "example_sentence_english": "Emergency braking avoided the accident.", + "pos": "noun", + "word_frequency": 8885 + }, + { + "word": "fâché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "angry", + "example_sentence_native": "Il est fâché contre son ami.", + "example_sentence_english": "He is angry with his friend.", + "pos": "adjective", + "word_frequency": 8886 + }, + { + "word": "garer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to park", + "example_sentence_native": "Je dois garer ma voiture ici.", + "example_sentence_english": "I need to park my car here.", + "pos": "verb", + "word_frequency": 8887 + }, + { + "word": "gaspillage", + "article_with_word": "le gaspillage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waste", + "example_sentence_native": "Le gaspillage alimentaire est un problème mondial.", + "example_sentence_english": "Food waste is a global problem.", + "pos": "noun", + "word_frequency": 8888 + }, + { + "word": "glacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icy;frozen", + "example_sentence_native": "La route est glacée ce matin.", + "example_sentence_english": "The road is icy this morning.", + "pos": "adjective", + "word_frequency": 8889 + }, + { + "word": "hlm", + "article_with_word": "un HLM", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "social housing", + "example_sentence_native": "Il habite dans un HLM en banlieue.", + "example_sentence_english": "He lives in social housing in the suburbs.", + "pos": "noun", + "word_frequency": 8893 + }, + { + "word": "horizontal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontal", + "example_sentence_native": "Tracez une ligne horizontale.", + "example_sentence_english": "Draw a horizontal line.", + "pos": "adjective", + "word_frequency": 8894 + }, + { + "word": "humilier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to humiliate", + "example_sentence_native": "Il n'aime pas humilier les autres.", + "example_sentence_english": "He doesn't like to humiliate others.", + "pos": "verb", + "word_frequency": 8895 + }, + { + "word": "inaccessible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaccessible", + "example_sentence_native": "La montagne est inaccessible en hiver.", + "example_sentence_english": "The mountain is inaccessible in winter.", + "pos": "adjective", + "word_frequency": 8897 + }, + { + "word": "inertie", + "article_with_word": "l'inertie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inertia", + "example_sentence_native": "Il y a une certaine inertie au changement.", + "example_sentence_english": "There is a certain inertia to change.", + "pos": "noun", + "word_frequency": 8899 + }, + { + "word": "internat", + "article_with_word": "l'internat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boarding school", + "example_sentence_native": "Il a passé son adolescence à l'internat.", + "example_sentence_english": "He spent his adolescence at boarding school.", + "pos": "noun", + "word_frequency": 8900 + }, + { + "word": "irresponsable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresponsible", + "example_sentence_native": "Son comportement est totalement irresponsable.", + "example_sentence_english": "His behavior is totally irresponsible.", + "pos": "adjective", + "word_frequency": 8901 + }, + { + "word": "irréprochable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreproachable;impeccable", + "example_sentence_native": "Sa conduite est irréprochable.", + "example_sentence_english": "His conduct is irreproachable.", + "pos": "adjective", + "word_frequency": 8902 + }, + { + "word": "jugé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judged;considered", + "example_sentence_native": "Il a été jugé coupable.", + "example_sentence_english": "He was judged guilty.", + "pos": "adjective", + "word_frequency": 8905 + }, + { + "word": "kids", + "article_with_word": "les kids", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kids", + "example_sentence_native": "Les kids jouent dans le parc.", + "example_sentence_english": "The kids are playing in the park.", + "pos": "noun", + "word_frequency": 8907 + }, + { + "word": "latino", + "article_with_word": "un Latino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Latino", + "example_sentence_native": "Il y a une grande communauté latino à Miami.", + "example_sentence_english": "There is a large Latino community in Miami.", + "pos": "noun", + "word_frequency": 8908 + }, + { + "word": "lingerie", + "article_with_word": "la lingerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lingerie", + "example_sentence_native": "Elle a acheté de la nouvelle lingerie.", + "example_sentence_english": "She bought some new lingerie.", + "pos": "noun", + "word_frequency": 8910 + }, + { + "word": "livreur", + "article_with_word": "le livreur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delivery person", + "example_sentence_native": "Le livreur est passé ce matin.", + "example_sentence_english": "The delivery person came this morning.", + "pos": "noun", + "word_frequency": 8911 + }, + { + "word": "maladroit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clumsy;awkward", + "example_sentence_native": "Il est très maladroit avec ses mains.", + "example_sentence_english": "He is very clumsy with his hands.", + "pos": "adjective", + "word_frequency": 8914 + }, + { + "word": "manie", + "article_with_word": "la manie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mania;obsession;habit", + "example_sentence_native": "Il a la manie de vérifier la porte trois fois.", + "example_sentence_english": "He has a habit of checking the door three times.", + "pos": "noun", + "word_frequency": 8915 + }, + { + "word": "militer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to campaign;to advocate", + "example_sentence_native": "Elle milite pour les droits des animaux.", + "example_sentence_english": "She campaigns for animal rights.", + "pos": "verb", + "word_frequency": 8918 + }, + { + "word": "minime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimal;very small", + "example_sentence_native": "L'impact a été minime.", + "example_sentence_english": "The impact was minimal.", + "pos": "adjective", + "word_frequency": 8919 + }, + { + "word": "médico", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medical", + "example_sentence_native": "Le personnel médico-social est essentiel.", + "example_sentence_english": "The medico-social staff is essential.", + "pos": "adjective", + "word_frequency": 8920 + }, + { + "word": "orgasme", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgasm", + "example_sentence_native": "L'orgasme est un phénomène physiologique complexe.", + "example_sentence_english": "Orgasm is a complex physiological phenomenon.", + "pos": "noun", + "word_frequency": 8923 + }, + { + "word": "photographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photographic", + "example_sentence_native": "Il a un excellent œil photographique.", + "example_sentence_english": "He has an excellent photographic eye.", + "pos": "adjective", + "word_frequency": 8926 + }, + { + "word": "pionnier", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pioneer", + "example_sentence_native": "Marie Curie fut une pionnière dans le domaine de la physique.", + "example_sentence_english": "Marie Curie was a pioneer in the field of physics.", + "pos": "noun", + "word_frequency": 8927 + }, + { + "word": "primo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "firstly", + "example_sentence_native": "Primo, nous devons évaluer la situation.", + "example_sentence_english": "Firstly, we must assess the situation.", + "pos": "adverb", + "word_frequency": 8928 + }, + { + "word": "proclamer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proclaim", + "example_sentence_native": "Le roi a proclamé un jour férié.", + "example_sentence_english": "The king proclaimed a public holiday.", + "pos": "verb", + "word_frequency": 8929 + }, + { + "word": "propager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spread", + "example_sentence_native": "La nouvelle s'est propagée rapidement.", + "example_sentence_english": "The news spread quickly.", + "pos": "verb", + "word_frequency": 8930 + }, + { + "word": "proverbe", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proverb", + "example_sentence_native": "Un vieux proverbe dit que le temps, c'est de l'argent.", + "example_sentence_english": "An old proverb says that time is money.", + "pos": "noun", + "word_frequency": 8931 + }, + { + "word": "prédateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predator", + "example_sentence_native": "Le lion est un prédateur redoutable.", + "example_sentence_english": "The lion is a formidable predator.", + "pos": "noun", + "word_frequency": 8932 + }, + { + "word": "qg", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "HQ (headquarters)", + "example_sentence_native": "Le QG de l'entreprise est à Paris.", + "example_sentence_english": "The company's HQ is in Paris.", + "pos": "noun", + "word_frequency": 8933 + }, + { + "word": "raccourci", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shortcut", + "example_sentence_native": "Prenons ce raccourci pour gagner du temps.", + "example_sentence_english": "Let's take this shortcut to save time.", + "pos": "noun", + "word_frequency": 8934 + }, + { + "word": "ralentissement", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slowdown", + "example_sentence_native": "L'économie connaît un léger ralentissement.", + "example_sentence_english": "The economy is experiencing a slight slowdown.", + "pos": "noun", + "word_frequency": 8935 + }, + { + "word": "redresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rectify", + "example_sentence_native": "Il a réussi à redresser la situation financière de l'entreprise.", + "example_sentence_english": "He managed to rectify the company's financial situation.", + "pos": "verb", + "word_frequency": 8936 + }, + { + "word": "restreindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restrict", + "example_sentence_native": "Il faut restreindre l'accès à ces informations.", + "example_sentence_english": "Access to this information must be restricted.", + "pos": "verb", + "word_frequency": 8939 + }, + { + "word": "retracer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retrace", + "example_sentence_native": "L'historien a retracé les événements de la guerre.", + "example_sentence_english": "The historian retraced the events of the war.", + "pos": "verb", + "word_frequency": 8940 + }, + { + "word": "réglé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "settled", + "example_sentence_native": "Le problème est enfin réglé.", + "example_sentence_english": "The problem is finally settled.", + "pos": "adjective", + "word_frequency": 8942 + }, + { + "word": "sanglant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bloody", + "example_sentence_native": "La bataille fut sanglante.", + "example_sentence_english": "The battle was bloody.", + "pos": "adjective", + "word_frequency": 8943 + }, + { + "word": "secouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake", + "example_sentence_native": "Secouez la bouteille avant d'utiliser.", + "example_sentence_english": "Shake the bottle before using.", + "pos": "verb", + "word_frequency": 8946 + }, + { + "word": "semence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seed", + "example_sentence_native": "Les agriculteurs plantent les semences au printemps.", + "example_sentence_english": "Farmers plant the seeds in spring.", + "pos": "noun", + "word_frequency": 8947 + }, + { + "word": "sorcellerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witchcraft", + "example_sentence_native": "L'accusation de sorcellerie était courante au Moyen Âge.", + "example_sentence_english": "The accusation of witchcraft was common in the Middle Ages.", + "pos": "noun", + "word_frequency": 8949 + }, + { + "word": "titan", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titan", + "example_sentence_native": "Il est considéré comme un titan de l'industrie.", + "example_sentence_english": "He is considered a titan of industry.", + "pos": "noun", + "word_frequency": 8952 + }, + { + "word": "tolérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tolerate", + "example_sentence_native": "Nous ne pouvons pas tolérer un tel comportement.", + "example_sentence_english": "We cannot tolerate such behavior.", + "pos": "verb", + "word_frequency": 8953 + }, + { + "word": "trail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trail (running)", + "example_sentence_native": "Il s'entraîne pour un trail en montagne.", + "example_sentence_english": "He is training for a mountain trail run.", + "pos": "noun", + "word_frequency": 8954 + }, + { + "word": "tuberculose", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tuberculosis", + "example_sentence_native": "La tuberculose est une maladie infectieuse.", + "example_sentence_english": "Tuberculosis is an infectious disease.", + "pos": "noun", + "word_frequency": 8955 + }, + { + "word": "télécommande", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "remote control", + "example_sentence_native": "Où est la télécommande de la télévision ?", + "example_sentence_english": "Where is the TV remote control?", + "pos": "noun", + "word_frequency": 8956 + }, + { + "word": "vaguement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaguely", + "example_sentence_native": "Je me souviens vaguement de son visage.", + "example_sentence_english": "I vaguely remember his face.", + "pos": "adverb", + "word_frequency": 8957 + }, + { + "word": "vitalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vitality", + "example_sentence_native": "Elle déborde de vitalité.", + "example_sentence_english": "She is full of vitality.", + "pos": "noun", + "word_frequency": 8959 + }, + { + "word": "vitamine", + "article_with_word": "la vitamine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vitamin", + "example_sentence_native": "Les fruits sont riches en vitamines.", + "example_sentence_english": "Fruits are rich in vitamins.", + "pos": "noun", + "word_frequency": 8960 + }, + { + "word": "wc", + "article_with_word": "les WC", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toilet(s)", + "example_sentence_native": "Où sont les WC, s'il vous plaît ?", + "example_sentence_english": "Where are the toilets, please?", + "pos": "noun", + "word_frequency": 8961 + }, + { + "word": "éduquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to educate", + "example_sentence_native": "Il est important d'éduquer les enfants.", + "example_sentence_english": "It is important to educate children.", + "pos": "verb", + "word_frequency": 8964 + }, + { + "word": "émerger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emerge", + "example_sentence_native": "Une nouvelle idée a émergé de la discussion.", + "example_sentence_english": "A new idea emerged from the discussion.", + "pos": "verb", + "word_frequency": 8965 + }, + { + "word": "abdomen", + "article_with_word": "l'abdomen", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abdomen", + "example_sentence_native": "Il ressent une douleur à l'abdomen.", + "example_sentence_english": "He feels a pain in his abdomen.", + "pos": "noun", + "word_frequency": 8966 + }, + { + "word": "abordable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affordable", + "example_sentence_native": "Ce prix est très abordable.", + "example_sentence_english": "This price is very affordable.", + "pos": "adjective", + "word_frequency": 8967 + }, + { + "word": "acquéreur", + "article_with_word": "l'acquéreur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buyer", + "example_sentence_native": "L'acquéreur a signé le contrat de vente.", + "example_sentence_english": "The buyer signed the sales contract.", + "pos": "noun", + "word_frequency": 8968 + }, + { + "word": "affluence", + "article_with_word": "l'affluence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowd;influx", + "example_sentence_native": "Il y avait une grande affluence au concert.", + "example_sentence_english": "There was a large crowd at the concert.", + "pos": "noun", + "word_frequency": 8970 + }, + { + "word": "allergique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allergic", + "example_sentence_native": "Je suis allergique aux arachides.", + "example_sentence_english": "I am allergic to peanuts.", + "pos": "adjective", + "word_frequency": 8971 + }, + { + "word": "amertume", + "article_with_word": "l'amertume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitterness", + "example_sentence_native": "Il a ressenti une profonde amertume après l'échec.", + "example_sentence_english": "He felt a deep bitterness after the failure.", + "pos": "noun", + "word_frequency": 8972 + }, + { + "word": "angélique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "angelic", + "example_sentence_native": "Elle avait un visage angélique.", + "example_sentence_english": "She had an angelic face.", + "pos": "adjective", + "word_frequency": 8973 + }, + { + "word": "aspirateur", + "article_with_word": "l'aspirateur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vacuum cleaner", + "example_sentence_native": "J'ai passé l'aspirateur ce matin.", + "example_sentence_english": "I vacuumed this morning.", + "pos": "noun", + "word_frequency": 8974 + }, + { + "word": "atténuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attenuate;to lessen", + "example_sentence_native": "Il faut atténuer les effets du réchauffement climatique.", + "example_sentence_english": "We must lessen the effects of global warming.", + "pos": "verb", + "word_frequency": 8975 + }, + { + "word": "baume", + "article_with_word": "le baume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balm", + "example_sentence_native": "Ce baume à lèvres est très hydratant.", + "example_sentence_english": "This lip balm is very moisturizing.", + "pos": "noun", + "word_frequency": 8978 + }, + { + "word": "binaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binary", + "example_sentence_native": "Le système binaire est utilisé en informatique.", + "example_sentence_english": "The binary system is used in computer science.", + "pos": "adjective", + "word_frequency": 8980 + }, + { + "word": "building", + "article_with_word": "le building", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building (loanword)", + "example_sentence_native": "Il y a un grand building en face de la gare.", + "example_sentence_english": "There is a large building in front of the station.", + "pos": "noun", + "word_frequency": 8981 + }, + { + "word": "ciseau", + "article_with_word": "le ciseau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chisel;(plural) scissors", + "example_sentence_native": "J'ai besoin d'une paire de ciseaux.", + "example_sentence_english": "I need a pair of scissors.", + "pos": "noun", + "word_frequency": 8984 + }, + { + "word": "clarifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clarify", + "example_sentence_native": "Pouvez-vous clarifier ce point, s'il vous plaît ?", + "example_sentence_english": "Can you clarify this point, please?", + "pos": "verb", + "word_frequency": 8985 + }, + { + "word": "commémoration", + "article_with_word": "la commémoration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commemoration", + "example_sentence_native": "La commémoration de l'événement aura lieu demain.", + "example_sentence_english": "The commemoration of the event will take place tomorrow.", + "pos": "noun", + "word_frequency": 8986 + }, + { + "word": "consultatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consultative", + "example_sentence_native": "Le comité a un rôle consultatif.", + "example_sentence_english": "The committee has a consultative role.", + "pos": "adjective", + "word_frequency": 8987 + }, + { + "word": "corporel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bodily;corporal", + "example_sentence_native": "Il a subi des dommages corporels.", + "example_sentence_english": "He suffered bodily harm.", + "pos": "adjective", + "word_frequency": 8988 + }, + { + "word": "crépuscule", + "article_with_word": "le crépuscule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twilight;dusk", + "example_sentence_native": "Nous avons marché jusqu'au crépuscule.", + "example_sentence_english": "We walked until twilight.", + "pos": "noun", + "word_frequency": 8989 + }, + { + "word": "curieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curiously", + "example_sentence_native": "Curieusement, personne n'était là.", + "example_sentence_english": "Curiously, no one was there.", + "pos": "adverb", + "word_frequency": 8990 + }, + { + "word": "denrée", + "article_with_word": "la denrée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commodity;foodstuff", + "example_sentence_native": "Les denrées alimentaires sont devenues plus chères.", + "example_sentence_english": "Foodstuffs have become more expensive.", + "pos": "noun", + "word_frequency": 8993 + }, + { + "word": "dentelle", + "article_with_word": "la dentelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lace", + "example_sentence_native": "Cette robe est ornée de dentelle.", + "example_sentence_english": "This dress is adorned with lace.", + "pos": "noun", + "word_frequency": 8994 + }, + { + "word": "disposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disposed;willing", + "example_sentence_native": "Je suis disposé à vous aider.", + "example_sentence_english": "I am willing to help you.", + "pos": "adjective", + "word_frequency": 8995 + }, + { + "word": "décideur", + "article_with_word": "le décideur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decision-maker", + "example_sentence_native": "Les décideurs doivent prendre des mesures urgentes.", + "example_sentence_english": "Decision-makers must take urgent action.", + "pos": "noun", + "word_frequency": 8999 + }, + { + "word": "décrit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "described", + "example_sentence_native": "Le paysage décrit dans le livre est magnifique.", + "example_sentence_english": "The landscape described in the book is magnificent.", + "pos": "adjective", + "word_frequency": 9000 + }, + { + "word": "déroute", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rout;defeat", + "example_sentence_native": "L'équipe a subi une déroute totale.", + "example_sentence_english": "The team suffered a total rout.", + "pos": "noun", + "word_frequency": 9001 + }, + { + "word": "désespéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desperate;hopeless", + "example_sentence_native": "Il se sentait désespéré après l'échec.", + "example_sentence_english": "He felt desperate after the failure.", + "pos": "adjective", + "word_frequency": 9002 + }, + { + "word": "dévouement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devotion;dedication", + "example_sentence_native": "Son dévouement à son travail est admirable.", + "example_sentence_english": "His dedication to his work is admirable.", + "pos": "noun", + "word_frequency": 9003 + }, + { + "word": "efforcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strive;to endeavor", + "example_sentence_native": "Il s'efforce toujours de faire de son mieux.", + "example_sentence_english": "He always strives to do his best.", + "pos": "verb", + "word_frequency": 9004 + }, + { + "word": "exporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to export", + "example_sentence_native": "La France exporte beaucoup de vin.", + "example_sentence_english": "France exports a lot of wine.", + "pos": "verb", + "word_frequency": 9007 + }, + { + "word": "faction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "faction", + "example_sentence_native": "Les différentes factions politiques se sont affrontées.", + "example_sentence_english": "The different political factions clashed.", + "pos": "noun", + "word_frequency": 9008 + }, + { + "word": "frustrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frustrate", + "example_sentence_native": "Ce problème commence à me frustrer.", + "example_sentence_english": "This problem is starting to frustrate me.", + "pos": "verb", + "word_frequency": 9009 + }, + { + "word": "gaillard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sturdy;hearty;cheerful", + "example_sentence_native": "C'est un homme gaillard et plein d'énergie.", + "example_sentence_english": "He is a sturdy and energetic man.", + "pos": "adjective", + "word_frequency": 9010 + }, + { + "word": "hexagone", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hexagon (also;France)", + "example_sentence_native": "La France est souvent appelée l'Hexagone.", + "example_sentence_english": "France is often called the Hexagon.", + "pos": "noun", + "word_frequency": 9012 + }, + { + "word": "incompatible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompatible", + "example_sentence_native": "Leurs idées sont totalement incompatibles.", + "example_sentence_english": "Their ideas are totally incompatible.", + "pos": "adjective", + "word_frequency": 9015 + }, + { + "word": "indicatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicative", + "example_sentence_native": "Le mode indicatif est le plus courant en français.", + "example_sentence_english": "The indicative mood is the most common in French.", + "pos": "adjective", + "word_frequency": 9016 + }, + { + "word": "infantile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infantile;childish", + "example_sentence_native": "Son comportement était un peu infantile.", + "example_sentence_english": "His behavior was a bit childish.", + "pos": "adjective", + "word_frequency": 9017 + }, + { + "word": "interpellation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "questioning;arrest;interpellation", + "example_sentence_native": "L'interpellation du suspect a eu lieu ce matin.", + "example_sentence_english": "The suspect's arrest took place this morning.", + "pos": "noun", + "word_frequency": 9018 + }, + { + "word": "ivoirien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ivorian (from Ivory Coast)", + "example_sentence_native": "Il est d'origine ivoirienne.", + "example_sentence_english": "He is of Ivorian origin.", + "pos": "adjective", + "word_frequency": 9020 + }, + { + "word": "loir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dormouse", + "example_sentence_native": "Le loir hiberne pendant l'hiver.", + "example_sentence_english": "The dormouse hibernates during winter.", + "pos": "noun", + "word_frequency": 9028 + }, + { + "word": "luxembourgeois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Luxembourgish", + "example_sentence_native": "Il parle luxembourgeois.", + "example_sentence_english": "He speaks Luxembourgish.", + "pos": "adjective", + "word_frequency": 9029 + }, + { + "word": "magistrature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judiciary;magistracy", + "example_sentence_native": "La magistrature est un pilier de la démocratie.", + "example_sentence_english": "The judiciary is a pillar of democracy.", + "pos": "noun", + "word_frequency": 9031 + }, + { + "word": "meneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader;ringleader", + "example_sentence_native": "Il est le meneur de l'équipe.", + "example_sentence_english": "He is the leader of the team.", + "pos": "noun", + "word_frequency": 9033 + }, + { + "word": "mimi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cute;sweet (informal)", + "example_sentence_native": "Ce chaton est vraiment mimi.", + "example_sentence_english": "This kitten is really cute.", + "pos": "adjective", + "word_frequency": 9034 + }, + { + "word": "mosaïque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mosaic", + "example_sentence_native": "La basilique est ornée d'une magnifique mosaïque.", + "example_sentence_english": "The basilica is adorned with a magnificent mosaic.", + "pos": "noun", + "word_frequency": 9035 + }, + { + "word": "méditerranéen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mediterranean", + "example_sentence_native": "Le climat méditerranéen est agréable.", + "example_sentence_english": "The Mediterranean climate is pleasant.", + "pos": "adjective", + "word_frequency": 9037 + }, + { + "word": "mélangé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed;blended", + "example_sentence_native": "C'est un groupe très mélangé.", + "example_sentence_english": "It's a very mixed group.", + "pos": "adjective", + "word_frequency": 9038 + }, + { + "word": "ménager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "household;domestic", + "example_sentence_native": "Les appareils ménagers sont essentiels.", + "example_sentence_english": "Household appliances are essential.", + "pos": "adjective", + "word_frequency": 9039 + }, + { + "word": "nappe", + "article_with_word": "la nappe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablecloth", + "example_sentence_native": "J'ai mis la nappe sur la table.", + "example_sentence_english": "I put the tablecloth on the table.", + "pos": "noun", + "word_frequency": 9040 + }, + { + "word": "obligeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obliging;helpful", + "example_sentence_native": "Il est toujours très obligeant avec ses voisins.", + "example_sentence_english": "He is always very obliging with his neighbors.", + "pos": "adjective", + "word_frequency": 9042 + }, + { + "word": "oracle", + "article_with_word": "l'oracle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oracle", + "example_sentence_native": "L'oracle a prédit un avenir incertain.", + "example_sentence_english": "The oracle predicted an uncertain future.", + "pos": "noun", + "word_frequency": 9043 + }, + { + "word": "persécution", + "article_with_word": "la persécution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persecution", + "example_sentence_native": "Ils ont fui la persécution dans leur pays.", + "example_sentence_english": "They fled persecution in their country.", + "pos": "noun", + "word_frequency": 9048 + }, + { + "word": "préconiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advocate;to recommend", + "example_sentence_native": "Le rapport préconise des mesures urgentes.", + "example_sentence_english": "The report advocates urgent measures.", + "pos": "verb", + "word_frequency": 9052 + }, + { + "word": "préoccupé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concerned;worried", + "example_sentence_native": "Il semblait très préoccupé par la situation.", + "example_sentence_english": "He seemed very concerned about the situation.", + "pos": "adjective", + "word_frequency": 9053 + }, + { + "word": "purge", + "article_with_word": "la purge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purge", + "example_sentence_native": "Le gouvernement a effectué une purge dans l'administration.", + "example_sentence_english": "The government carried out a purge in the administration.", + "pos": "noun", + "word_frequency": 9054 + }, + { + "word": "rançon", + "article_with_word": "la rançon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ransom", + "example_sentence_native": "Les ravisseurs ont exigé une rançon.", + "example_sentence_english": "The kidnappers demanded a ransom.", + "pos": "noun", + "word_frequency": 9056 + }, + { + "word": "recherché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sought-after;refined;wanted", + "example_sentence_native": "Ce style est très recherché en ce moment.", + "example_sentence_english": "This style is very sought-after right now.", + "pos": "adjective", + "word_frequency": 9058 + }, + { + "word": "remake", + "article_with_word": "le remake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remake", + "example_sentence_native": "Le remake du film original est sorti hier.", + "example_sentence_english": "The remake of the original film was released yesterday.", + "pos": "noun", + "word_frequency": 9059 + }, + { + "word": "resté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "remained;stayed", + "example_sentence_native": "Il est resté silencieux pendant toute la réunion.", + "example_sentence_english": "He remained silent throughout the meeting.", + "pos": "adjective", + "word_frequency": 9060 + }, + { + "word": "régression", + "article_with_word": "la régression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regression", + "example_sentence_native": "On observe une régression des droits sociaux.", + "example_sentence_english": "We are observing a regression of social rights.", + "pos": "noun", + "word_frequency": 9062 + }, + { + "word": "sacrément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damn;really;awfully", + "example_sentence_native": "C'est sacrément difficile à faire.", + "example_sentence_english": "It's damn difficult to do.", + "pos": "adverb", + "word_frequency": 9063 + }, + { + "word": "saisi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seized;grasped;stunned", + "example_sentence_native": "Il est resté saisi par la nouvelle.", + "example_sentence_english": "He remained stunned by the news.", + "pos": "adjective", + "word_frequency": 9064 + }, + { + "word": "sauvé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saved;rescued", + "example_sentence_native": "L'enfant a été retrouvé sain et sauf.", + "example_sentence_english": "The child was found safe and sound.", + "pos": "adjective", + "word_frequency": 9066 + }, + { + "word": "serré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tight;close;squeezed", + "example_sentence_native": "Ce pantalon est trop serré.", + "example_sentence_english": "These pants are too tight.", + "pos": "adjective", + "word_frequency": 9068 + }, + { + "word": "temporel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "temporal;worldly", + "example_sentence_native": "Il s'intéresse aux aspects temporels de l'existence.", + "example_sentence_english": "He is interested in the temporal aspects of existence.", + "pos": "adjective", + "word_frequency": 9072 + }, + { + "word": "tourné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turned;filmed;directed", + "example_sentence_native": "Le film a été tourné à Paris.", + "example_sentence_english": "The film was shot in Paris.", + "pos": "adjective", + "word_frequency": 9073 + }, + { + "word": "unanime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unanimous", + "example_sentence_native": "La décision a été unanime.", + "example_sentence_english": "The decision was unanimous.", + "pos": "adjective", + "word_frequency": 9074 + }, + { + "word": "vegan", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegan", + "example_sentence_native": "Elle suit un régime vegan.", + "example_sentence_english": "She follows a vegan diet.", + "pos": "adjective", + "word_frequency": 9075 + }, + { + "word": "voirie", + "article_with_word": "la voirie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "road system;public highway", + "example_sentence_native": "Les travaux de voirie perturbent la circulation.", + "example_sentence_english": "Roadworks are disrupting traffic.", + "pos": "noun", + "word_frequency": 9078 + }, + { + "word": "zénith", + "article_with_word": "le zénith", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zenith", + "example_sentence_native": "Le soleil était à son zénith à midi.", + "example_sentence_english": "The sun was at its zenith at noon.", + "pos": "noun", + "word_frequency": 9081 + }, + { + "word": "écoulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elapsed;expired;sold out", + "example_sentence_native": "Le temps écoulé depuis le début est de dix minutes.", + "example_sentence_english": "The time elapsed since the beginning is ten minutes.", + "pos": "adjective", + "word_frequency": 9082 + }, + { + "word": "étaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spread;to display", + "example_sentence_native": "Elle a étalé la carte sur la table.", + "example_sentence_english": "She spread the map on the table.", + "pos": "verb", + "word_frequency": 9083 + }, + { + "word": "évoqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evoked;mentioned", + "example_sentence_native": "Les souvenirs évoqués étaient très émouvants.", + "example_sentence_english": "The evoked memories were very moving.", + "pos": "adjective", + "word_frequency": 9084 + }, + { + "word": "abaisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lower;to humble", + "example_sentence_native": "Il faut abaisser le niveau de l'eau dans le réservoir.", + "example_sentence_english": "We need to lower the water level in the tank.", + "pos": "verb", + "word_frequency": 9085 + }, + { + "word": "abattu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "downcast;felled;shot down", + "example_sentence_native": "Il se sentait abattu après avoir perdu son emploi.", + "example_sentence_english": "He felt downcast after losing his job.", + "pos": "adjective", + "word_frequency": 9086 + }, + { + "word": "accompli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accomplished;completed", + "example_sentence_native": "C'est un travail bien accompli.", + "example_sentence_english": "It's a job well accomplished.", + "pos": "adjective", + "word_frequency": 9087 + }, + { + "word": "affaiblir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weaken", + "example_sentence_native": "La maladie a affaibli son système immunitaire.", + "example_sentence_english": "The illness weakened his immune system.", + "pos": "verb", + "word_frequency": 9088 + }, + { + "word": "agité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agitated;restless;shaken", + "example_sentence_native": "L'enfant était très agité avant le spectacle.", + "example_sentence_english": "The child was very agitated before the show.", + "pos": "adjective", + "word_frequency": 9089 + }, + { + "word": "amphithéâtre", + "article_with_word": "l'amphithéâtre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphitheater;lecture hall", + "example_sentence_native": "L'amphithéâtre était plein pour la conférence.", + "example_sentence_english": "The amphitheater was full for the conference.", + "pos": "noun", + "word_frequency": 9092 + }, + { + "word": "apporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brought;contributed", + "example_sentence_native": "Les modifications apportées ont amélioré le système.", + "example_sentence_english": "The changes brought have improved the system.", + "pos": "adjective", + "word_frequency": 9094 + }, + { + "word": "appropriation", + "article_with_word": "l'appropriation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appropriation", + "example_sentence_native": "L'appropriation culturelle est un sujet de débat.", + "example_sentence_english": "Cultural appropriation is a subject of debate.", + "pos": "noun", + "word_frequency": 9095 + }, + { + "word": "assigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assigned;allocated", + "example_sentence_native": "La tâche assignée était complexe mais intéressante.", + "example_sentence_english": "The assigned task was complex but interesting.", + "pos": "adjective", + "word_frequency": 9096 + }, + { + "word": "atterrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to land", + "example_sentence_native": "L'avion va atterrir dans quelques minutes.", + "example_sentence_english": "The plane will land in a few minutes.", + "pos": "verb", + "word_frequency": 9098 + }, + { + "word": "badge", + "article_with_word": "le badge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "badge", + "example_sentence_native": "Il a oublié son badge d'accès à la maison.", + "example_sentence_english": "He forgot his access badge at home.", + "pos": "noun", + "word_frequency": 9099 + }, + { + "word": "banquet", + "article_with_word": "le banquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banquet", + "example_sentence_native": "Un grand banquet a été organisé pour la cérémonie.", + "example_sentence_english": "A large banquet was organized for the ceremony.", + "pos": "noun", + "word_frequency": 9100 + }, + { + "word": "bastion", + "article_with_word": "le bastion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bastion;stronghold", + "example_sentence_native": "Cette forteresse était un bastion imprenable.", + "example_sentence_english": "This fortress was an impregnable bastion.", + "pos": "noun", + "word_frequency": 9101 + }, + { + "word": "bazar", + "article_with_word": "le bazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mess;bazaar", + "example_sentence_native": "Sa chambre est un vrai bazar, il doit la ranger.", + "example_sentence_english": "His room is a real mess, he needs to tidy it up.", + "pos": "noun", + "word_frequency": 9102 + }, + { + "word": "berge", + "article_with_word": "la berge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank (of a river);shore", + "example_sentence_native": "Nous avons pique-niqué sur la berge de la rivière.", + "example_sentence_english": "We picnicked on the river bank.", + "pos": "noun", + "word_frequency": 9103 + }, + { + "word": "bordelais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Bordeaux", + "example_sentence_native": "Le vin bordelais est mondialement connu.", + "example_sentence_english": "Bordeaux wine is world-renowned.", + "pos": "adjective", + "word_frequency": 9104 + }, + { + "word": "bricolage", + "article_with_word": "le bricolage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "DIY;odd jobs", + "example_sentence_native": "Il passe ses week-ends à faire du bricolage.", + "example_sentence_english": "He spends his weekends doing DIY.", + "pos": "noun", + "word_frequency": 9105 + }, + { + "word": "brûlant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burning;scorching;hot", + "example_sentence_native": "Le café était encore brûlant.", + "example_sentence_english": "The coffee was still burning hot.", + "pos": "adjective", + "word_frequency": 9106 + }, + { + "word": "camionnette", + "article_with_word": "la camionnette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "van;pickup truck", + "example_sentence_native": "Ils ont déménagé leurs affaires avec une camionnette.", + "example_sentence_english": "They moved their belongings with a van.", + "pos": "noun", + "word_frequency": 9108 + }, + { + "word": "carrosserie", + "article_with_word": "la carrosserie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "car body;coachwork", + "example_sentence_native": "La carrosserie de la voiture a été réparée après l'accident.", + "example_sentence_english": "The car body was repaired after the accident.", + "pos": "noun", + "word_frequency": 9111 + }, + { + "word": "cassette", + "article_with_word": "la cassette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cassette", + "example_sentence_native": "J'ai retrouvé de vieilles cassettes audio dans le grenier.", + "example_sentence_english": "I found old audio cassettes in the attic.", + "pos": "noun", + "word_frequency": 9112 + }, + { + "word": "charpente", + "article_with_word": "la charpente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framework;timberwork;roof structure", + "example_sentence_native": "La charpente de la maison est en bois massif.", + "example_sentence_english": "The framework of the house is made of solid wood.", + "pos": "noun", + "word_frequency": 9115 + }, + { + "word": "châtiment", + "article_with_word": "le châtiment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "punishment;chastisement", + "example_sentence_native": "Le châtiment pour ce crime était très sévère.", + "example_sentence_english": "The punishment for this crime was very severe.", + "pos": "noun", + "word_frequency": 9117 + }, + { + "word": "cicatrice", + "article_with_word": "la cicatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scar", + "example_sentence_native": "Il a une petite cicatrice sur le genou.", + "example_sentence_english": "He has a small scar on his knee.", + "pos": "noun", + "word_frequency": 9118 + }, + { + "word": "commando", + "article_with_word": "le commando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commando", + "example_sentence_native": "Le commando a mené une opération secrète.", + "example_sentence_english": "The commando led a secret operation.", + "pos": "noun", + "word_frequency": 9121 + }, + { + "word": "compartiment", + "article_with_word": "le compartiment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compartment", + "example_sentence_native": "J'ai rangé mes bagages dans le compartiment supérieur.", + "example_sentence_english": "I stored my luggage in the overhead compartment.", + "pos": "noun", + "word_frequency": 9122 + }, + { + "word": "compromettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compromise", + "example_sentence_native": "Ne compromettez pas votre réputation pour de l'argent.", + "example_sentence_english": "Don't compromise your reputation for money.", + "pos": "verb", + "word_frequency": 9123 + }, + { + "word": "conjugal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conjugal", + "example_sentence_native": "Ils ont célébré leurs noces d'or et leur bonheur conjugal.", + "example_sentence_english": "They celebrated their golden wedding anniversary and their conjugal happiness.", + "pos": "adjective", + "word_frequency": 9124 + }, + { + "word": "controversé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversial", + "example_sentence_native": "C'est un sujet très controversé dans la société actuelle.", + "example_sentence_english": "It's a very controversial topic in current society.", + "pos": "adjective", + "word_frequency": 9125 + }, + { + "word": "coordonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to coordinate", + "example_sentence_native": "Nous devons coordonner nos efforts pour réussir le projet.", + "example_sentence_english": "We must coordinate our efforts to succeed in the project.", + "pos": "verb", + "word_frequency": 9126 + }, + { + "word": "coupé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut", + "example_sentence_native": "Le fil est coupé, je ne peux pas l'utiliser.", + "example_sentence_english": "The wire is cut, I cannot use it.", + "pos": "adjective", + "word_frequency": 9127 + }, + { + "word": "coussin", + "article_with_word": "le coussin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cushion", + "example_sentence_native": "J'ai mis un coussin moelleux sur le canapé.", + "example_sentence_english": "I put a soft cushion on the sofa.", + "pos": "noun", + "word_frequency": 9128 + }, + { + "word": "couvercle", + "article_with_word": "le couvercle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lid", + "example_sentence_native": "N'oublie pas de remettre le couvercle sur la casserole.", + "example_sentence_english": "Don't forget to put the lid back on the pot.", + "pos": "noun", + "word_frequency": 9129 + }, + { + "word": "destinataire", + "article_with_word": "le destinataire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recipient", + "example_sentence_native": "Veuillez indiquer le nom du destinataire sur l'enveloppe.", + "example_sentence_english": "Please indicate the recipient's name on the envelope.", + "pos": "noun", + "word_frequency": 9131 + }, + { + "word": "deuxièmement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secondly", + "example_sentence_native": "Premièrement, c'est important. Deuxièmement, c'est urgent.", + "example_sentence_english": "Firstly, it's important. Secondly, it's urgent.", + "pos": "adverb", + "word_frequency": 9132 + }, + { + "word": "dogme", + "article_with_word": "le dogme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dogma", + "example_sentence_native": "Il refuse de suivre les dogmes établis sans les remettre en question.", + "example_sentence_english": "He refuses to follow established dogmas without questioning them.", + "pos": "noun", + "word_frequency": 9133 + }, + { + "word": "dopage", + "article_with_word": "le dopage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doping", + "example_sentence_native": "La lutte contre le dopage est une priorité dans le sport professionnel.", + "example_sentence_english": "The fight against doping is a priority in professional sports.", + "pos": "noun", + "word_frequency": 9134 + }, + { + "word": "déformation", + "article_with_word": "la déformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deformation", + "example_sentence_native": "Le choc a causé une déformation de la carrosserie.", + "example_sentence_english": "The impact caused a deformation of the car body.", + "pos": "noun", + "word_frequency": 9135 + }, + { + "word": "démantèlement", + "article_with_word": "le démantèlement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismantling", + "example_sentence_native": "Le démantèlement de l'ancienne usine prendra plusieurs mois.", + "example_sentence_english": "The dismantling of the old factory will take several months.", + "pos": "noun", + "word_frequency": 9136 + }, + { + "word": "déployé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deployed", + "example_sentence_native": "Les troupes ont été déployées dans la zone de conflit.", + "example_sentence_english": "The troops were deployed in the conflict zone.", + "pos": "adjective", + "word_frequency": 9137 + }, + { + "word": "détailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to detail", + "example_sentence_native": "Pouvez-vous détailler les étapes de ce processus ?", + "example_sentence_english": "Can you detail the steps of this process?", + "pos": "verb", + "word_frequency": 9138 + }, + { + "word": "embarquement", + "article_with_word": "l'embarquement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boarding", + "example_sentence_native": "L'heure d'embarquement est à 14h30.", + "example_sentence_english": "Boarding time is at 2:30 PM.", + "pos": "noun", + "word_frequency": 9139 + }, + { + "word": "emblème", + "article_with_word": "l'emblème", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emblem", + "example_sentence_native": "Le lion est l'emblème de ce pays.", + "example_sentence_english": "The lion is the emblem of this country.", + "pos": "noun", + "word_frequency": 9140 + }, + { + "word": "event", + "article_with_word": "l'event", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event", + "example_sentence_native": "Nous organisons un grand event pour le lancement du produit.", + "example_sentence_english": "We are organizing a big event for the product launch.", + "pos": "noun", + "word_frequency": 9141 + }, + { + "word": "finement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finely", + "example_sentence_native": "Il a finement analysé la situation.", + "example_sentence_english": "He finely analyzed the situation.", + "pos": "adverb", + "word_frequency": 9142 + }, + { + "word": "fondant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "melting", + "example_sentence_native": "Ce chocolat est délicieusement fondant.", + "example_sentence_english": "This chocolate is deliciously melting.", + "pos": "adjective", + "word_frequency": 9143 + }, + { + "word": "freiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to brake", + "example_sentence_native": "Il a dû freiner brusquement pour éviter l'accident.", + "example_sentence_english": "He had to brake suddenly to avoid the accident.", + "pos": "verb", + "word_frequency": 9146 + }, + { + "word": "gene", + "article_with_word": "le gène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gene", + "example_sentence_native": "La recherche sur les gènes est essentielle pour comprendre les maladies.", + "example_sentence_english": "Gene research is essential for understanding diseases.", + "pos": "noun", + "word_frequency": 9150 + }, + { + "word": "gibier", + "article_with_word": "le gibier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "game (meat;animal)", + "example_sentence_native": "Ce restaurant est réputé pour ses plats de gibier.", + "example_sentence_english": "This restaurant is renowned for its game dishes.", + "pos": "noun", + "word_frequency": 9151 + }, + { + "word": "granit", + "article_with_word": "le granit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "granite", + "example_sentence_native": "Le plan de travail de la cuisine est en granit.", + "example_sentence_english": "The kitchen countertop is made of granite.", + "pos": "noun", + "word_frequency": 9152 + }, + { + "word": "grièvement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriously", + "example_sentence_native": "Il a été grièvement blessé dans l'accident.", + "example_sentence_english": "He was seriously injured in the accident.", + "pos": "adverb", + "word_frequency": 9153 + }, + { + "word": "guidé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guided", + "example_sentence_native": "Nous avons fait une visite guidée du musée.", + "example_sentence_english": "We took a guided tour of the museum.", + "pos": "adjective", + "word_frequency": 9154 + }, + { + "word": "heurter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit", + "example_sentence_native": "La voiture a heurté un arbre.", + "example_sentence_english": "The car hit a tree.", + "pos": "verb", + "word_frequency": 9157 + }, + { + "word": "hit", + "article_with_word": "le hit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hit (song;success)", + "example_sentence_native": "Cette chanson est un véritable hit de l'été.", + "example_sentence_english": "This song is a real summer hit.", + "pos": "noun", + "word_frequency": 9158 + }, + { + "word": "hs", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "out of order", + "example_sentence_native": "Mon ordinateur est HS, je ne peux pas travailler.", + "example_sentence_english": "My computer is out of order, I can't work.", + "pos": "adjective", + "word_frequency": 9159 + }, + { + "word": "imminent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imminent", + "example_sentence_native": "Le danger d'une tempête est imminent.", + "example_sentence_english": "The danger of a storm is imminent.", + "pos": "adjective", + "word_frequency": 9161 + }, + { + "word": "immobile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motionless", + "example_sentence_native": "Il est resté immobile, sans bouger.", + "example_sentence_english": "He remained motionless, without moving.", + "pos": "adjective", + "word_frequency": 9162 + }, + { + "word": "indéterminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undetermined", + "example_sentence_native": "La cause de l'accident est encore indéterminée.", + "example_sentence_english": "The cause of the accident is still undetermined.", + "pos": "adjective", + "word_frequency": 9163 + }, + { + "word": "infirmerie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infirmary", + "example_sentence_native": "L'élève blessé a été conduit à l'infirmerie.", + "example_sentence_english": "The injured student was taken to the infirmary.", + "pos": "noun", + "word_frequency": 9164 + }, + { + "word": "injonction", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "injunction", + "example_sentence_native": "Le tribunal a émis une injonction contre la société.", + "example_sentence_english": "The court issued an injunction against the company.", + "pos": "noun", + "word_frequency": 9165 + }, + { + "word": "intolérance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerance", + "example_sentence_native": "L'intolérance religieuse est un problème grave.", + "example_sentence_english": "Religious intolerance is a serious problem.", + "pos": "noun", + "word_frequency": 9166 + }, + { + "word": "inverser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reverse", + "example_sentence_native": "Il faut inverser la tendance actuelle.", + "example_sentence_english": "We must reverse the current trend.", + "pos": "verb", + "word_frequency": 9167 + }, + { + "word": "libraire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookseller", + "example_sentence_native": "J'ai demandé conseil au libraire pour un nouveau roman.", + "example_sentence_english": "I asked the bookseller for advice on a new novel.", + "pos": "noun", + "word_frequency": 9174 + }, + { + "word": "loterie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lottery", + "example_sentence_native": "Elle a tenté sa chance à la loterie nationale.", + "example_sentence_english": "She tried her luck in the national lottery.", + "pos": "noun", + "word_frequency": 9175 + }, + { + "word": "lueur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gleam", + "example_sentence_native": "Une lueur d'espoir brillait dans ses yeux.", + "example_sentence_english": "A gleam of hope shone in her eyes.", + "pos": "noun", + "word_frequency": 9178 + }, + { + "word": "manufacture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "factory", + "example_sentence_native": "Cette manufacture produit des textiles de haute qualité.", + "example_sentence_english": "This factory produces high-quality textiles.", + "pos": "noun", + "word_frequency": 9179 + }, + { + "word": "marxiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxist", + "example_sentence_native": "Ses analyses sont basées sur une approche marxiste.", + "example_sentence_english": "His analyses are based on a Marxist approach.", + "pos": "adjective", + "word_frequency": 9182 + }, + { + "word": "matos", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gear (informal)", + "example_sentence_native": "N'oublie pas ton matos de ski pour le week-end.", + "example_sentence_english": "Don't forget your ski gear for the weekend.", + "pos": "noun", + "word_frequency": 9184 + }, + { + "word": "mercenaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercenary", + "example_sentence_native": "Il a été engagé comme mercenaire dans l'armée étrangère.", + "example_sentence_english": "He was hired as a mercenary in the foreign army.", + "pos": "noun", + "word_frequency": 9186 + }, + { + "word": "miette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crumb", + "example_sentence_native": "Il y a des miettes de pain sur la nappe.", + "example_sentence_english": "There are bread crumbs on the tablecloth.", + "pos": "noun", + "word_frequency": 9187 + }, + { + "word": "millimètre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "millimeter", + "example_sentence_native": "La mesure doit être précise au millimètre près.", + "example_sentence_english": "The measurement must be accurate to the nearest millimeter.", + "pos": "noun", + "word_frequency": 9188 + }, + { + "word": "mixité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversity;mixed-gender nature", + "example_sentence_native": "La mixité dans les écoles favorise l'égalité.", + "example_sentence_english": "Diversity in schools promotes equality.", + "pos": "noun", + "word_frequency": 9189 + }, + { + "word": "monarque", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarch", + "example_sentence_native": "Le monarque a prononcé un discours à la nation.", + "example_sentence_english": "The monarch delivered a speech to the nation.", + "pos": "noun", + "word_frequency": 9190 + }, + { + "word": "multiplié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiplied", + "example_sentence_native": "Les efforts ont été multipliés pour atteindre l'objectif.", + "example_sentence_english": "Efforts have been multiplied to achieve the goal.", + "pos": "adjective", + "word_frequency": 9191 + }, + { + "word": "métaphysique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphysics", + "example_sentence_native": "La métaphysique est une branche de la philosophie.", + "example_sentence_english": "Metaphysics is a branch of philosophy.", + "pos": "noun", + "word_frequency": 9192 + }, + { + "word": "opératoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "operative;surgical", + "example_sentence_native": "La phase opératoire de l'intervention est délicate.", + "example_sentence_english": "The operative phase of the intervention is delicate.", + "pos": "adjective", + "word_frequency": 9195 + }, + { + "word": "orné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decorated;ornate", + "example_sentence_native": "Le plafond était orné de fresques magnifiques.", + "example_sentence_english": "The ceiling was adorned with magnificent frescoes.", + "pos": "adjective", + "word_frequency": 9196 + }, + { + "word": "panel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panel", + "example_sentence_native": "Le panel d'experts a discuté des nouvelles mesures.", + "example_sentence_english": "The panel of experts discussed the new measures.", + "pos": "noun", + "word_frequency": 9197 + }, + { + "word": "parenté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kinship;relationship", + "example_sentence_native": "Il existe une forte parenté entre ces deux langues.", + "example_sentence_english": "There is a strong kinship between these two languages.", + "pos": "noun", + "word_frequency": 9198 + }, + { + "word": "peint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painted", + "example_sentence_native": "Le tableau est peint à l'huile.", + "example_sentence_english": "The painting is painted in oil.", + "pos": "adjective", + "word_frequency": 9199 + }, + { + "word": "pendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hanged;suspended", + "example_sentence_native": "Le tableau est pendu au mur.", + "example_sentence_english": "The painting is hung on the wall.", + "pos": "adjective", + "word_frequency": 9200 + }, + { + "word": "pinceau", + "article_with_word": "le pinceau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brush", + "example_sentence_native": "J'ai besoin d'un pinceau pour peindre.", + "example_sentence_english": "I need a brush to paint.", + "pos": "noun", + "word_frequency": 9201 + }, + { + "word": "plaisance", + "article_with_word": "la plaisance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasure;leisure (boating)", + "example_sentence_native": "Le port est rempli de bateaux de plaisance.", + "example_sentence_english": "The port is full of pleasure boats.", + "pos": "noun", + "word_frequency": 9203 + }, + { + "word": "plaisanterie", + "article_with_word": "la plaisanterie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joke;prank", + "example_sentence_native": "C'était juste une plaisanterie.", + "example_sentence_english": "It was just a joke.", + "pos": "noun", + "word_frequency": 9204 + }, + { + "word": "planifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plan", + "example_sentence_native": "Nous devons planifier nos vacances.", + "example_sentence_english": "We need to plan our vacation.", + "pos": "verb", + "word_frequency": 9205 + }, + { + "word": "postuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to apply (for a job);to postulate", + "example_sentence_native": "Il a décidé de postuler pour ce poste.", + "example_sentence_english": "He decided to apply for this position.", + "pos": "verb", + "word_frequency": 9206 + }, + { + "word": "prieur", + "article_with_word": "le prieur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prior (religious)", + "example_sentence_native": "Le prieur dirigeait la communauté monastique.", + "example_sentence_english": "The prior led the monastic community.", + "pos": "noun", + "word_frequency": 9207 + }, + { + "word": "primitif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primitive", + "example_sentence_native": "Ils ont découvert des outils primitifs.", + "example_sentence_english": "They discovered primitive tools.", + "pos": "adjective", + "word_frequency": 9208 + }, + { + "word": "prophétie", + "article_with_word": "la prophétie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophecy", + "example_sentence_native": "L'ancienne prophétie s'est réalisée.", + "example_sentence_english": "The ancient prophecy came true.", + "pos": "noun", + "word_frequency": 9209 + }, + { + "word": "présentateur", + "article_with_word": "le présentateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presenter;host", + "example_sentence_native": "Le présentateur a annoncé les nouvelles.", + "example_sentence_english": "The presenter announced the news.", + "pos": "noun", + "word_frequency": 9210 + }, + { + "word": "pulmonaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pulmonary", + "example_sentence_native": "Il souffre d'une maladie pulmonaire.", + "example_sentence_english": "He suffers from a pulmonary disease.", + "pos": "adjective", + "word_frequency": 9211 + }, + { + "word": "raisonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reason;to argue", + "example_sentence_native": "Il faut raisonner avec lui calmement.", + "example_sentence_english": "We need to reason with him calmly.", + "pos": "verb", + "word_frequency": 9212 + }, + { + "word": "rapproché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "close;near;brought closer", + "example_sentence_native": "Nous avons une relation très rapprochée.", + "example_sentence_english": "We have a very close relationship.", + "pos": "adjective", + "word_frequency": 9213 + }, + { + "word": "rasé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shaved;razed", + "example_sentence_native": "Il a le crâne rasé.", + "example_sentence_english": "He has a shaved head.", + "pos": "adjective", + "word_frequency": 9214 + }, + { + "word": "renfermer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contain;to enclose", + "example_sentence_native": "Cette boîte renferme de vieux souvenirs.", + "example_sentence_english": "This box contains old memories.", + "pos": "verb", + "word_frequency": 9215 + }, + { + "word": "ruelle", + "article_with_word": "la ruelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alley;narrow street", + "example_sentence_native": "Nous avons marché dans une petite ruelle.", + "example_sentence_english": "We walked down a small alley.", + "pos": "noun", + "word_frequency": 9217 + }, + { + "word": "régularité", + "article_with_word": "la régularité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regularity", + "example_sentence_native": "La régularité est importante pour l'apprentissage.", + "example_sentence_english": "Regularity is important for learning.", + "pos": "noun", + "word_frequency": 9218 + }, + { + "word": "schiste", + "article_with_word": "le schiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shale;schist", + "example_sentence_native": "Le sol est riche en schiste.", + "example_sentence_english": "The soil is rich in shale.", + "pos": "noun", + "word_frequency": 9219 + }, + { + "word": "sentimental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sentimental", + "example_sentence_native": "C'est une personne très sentimentale.", + "example_sentence_english": "She is a very sentimental person.", + "pos": "adjective", + "word_frequency": 9220 + }, + { + "word": "sexisme", + "article_with_word": "le sexisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexism", + "example_sentence_native": "Le sexisme est un problème social.", + "example_sentence_english": "Sexism is a social problem.", + "pos": "noun", + "word_frequency": 9221 + }, + { + "word": "shérif", + "article_with_word": "le shérif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheriff", + "example_sentence_native": "Le shérif a arrêté le bandit.", + "example_sentence_english": "The sheriff arrested the bandit.", + "pos": "noun", + "word_frequency": 9222 + }, + { + "word": "sitôt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "as soon as;immediately", + "example_sentence_native": "Sitôt arrivé, il a commencé à travailler.", + "example_sentence_english": "As soon as he arrived, he started working.", + "pos": "adverb", + "word_frequency": 9223 + }, + { + "word": "soufflé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puffed;blown;out of breath", + "example_sentence_native": "Il était tout soufflé après la course.", + "example_sentence_english": "He was all out of breath after the race.", + "pos": "adjective", + "word_frequency": 9224 + }, + { + "word": "stéréotype", + "article_with_word": "le stéréotype", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stereotype", + "example_sentence_native": "Il faut éviter les stéréotypes.", + "example_sentence_english": "We must avoid stereotypes.", + "pos": "noun", + "word_frequency": 9226 + }, + { + "word": "taule", + "article_with_word": "la taule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jail;prison (slang);sheet metal", + "example_sentence_native": "Il a passé cinq ans en taule.", + "example_sentence_english": "He spent five years in jail.", + "pos": "noun", + "word_frequency": 9228 + }, + { + "word": "taupe", + "article_with_word": "la taupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mole (animal or spy)", + "example_sentence_native": "Une taupe a creusé un tunnel dans le jardin.", + "example_sentence_english": "A mole dug a tunnel in the garden.", + "pos": "noun", + "word_frequency": 9229 + }, + { + "word": "telephone", + "article_with_word": "le téléphone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telephone;phone", + "example_sentence_native": "J'ai oublié mon téléphone à la maison.", + "example_sentence_english": "I forgot my phone at home.", + "pos": "noun", + "word_frequency": 9230 + }, + { + "word": "traduit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translated", + "example_sentence_native": "Le livre est traduit en plusieurs langues.", + "example_sentence_english": "The book is translated into several languages.", + "pos": "adjective", + "word_frequency": 9234 + }, + { + "word": "tricher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheat", + "example_sentence_native": "Il est interdit de tricher à l'examen.", + "example_sentence_english": "It is forbidden to cheat on the exam.", + "pos": "verb", + "word_frequency": 9235 + }, + { + "word": "tropical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tropical", + "example_sentence_native": "Nous aimons les fruits tropicaux.", + "example_sentence_english": "We like tropical fruits.", + "pos": "adjective", + "word_frequency": 9236 + }, + { + "word": "viable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viable", + "example_sentence_native": "Ce projet n'est pas viable économiquement.", + "example_sentence_english": "This project is not economically viable.", + "pos": "adjective", + "word_frequency": 9238 + }, + { + "word": "vieillir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to age;to grow old", + "example_sentence_native": "Il est normal de vieillir.", + "example_sentence_english": "It is normal to grow old.", + "pos": "verb", + "word_frequency": 9239 + }, + { + "word": "voyou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thug", + "example_sentence_native": "Le voyou a été arrêté par la police.", + "example_sentence_english": "The thug was arrested by the police.", + "pos": "noun", + "word_frequency": 9240 + }, + { + "word": "émaner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to emanate;to issue from", + "example_sentence_native": "Une odeur étrange émanait de la pièce.", + "example_sentence_english": "A strange smell emanated from the room.", + "pos": "verb", + "word_frequency": 9243 + }, + { + "word": "émis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "issued;emitted", + "example_sentence_native": "Le signal émis était très faible.", + "example_sentence_english": "The signal emitted was very weak.", + "pos": "adjective", + "word_frequency": 9244 + }, + { + "word": "éolienne", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wind turbine", + "example_sentence_native": "De nombreuses éoliennes produisent de l'énergie renouvelable.", + "example_sentence_english": "Many wind turbines produce renewable energy.", + "pos": "noun", + "word_frequency": 9245 + }, + { + "word": "épingle", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pin", + "example_sentence_native": "J'ai utilisé une épingle pour fixer le tissu.", + "example_sentence_english": "I used a pin to fasten the fabric.", + "pos": "noun", + "word_frequency": 9246 + }, + { + "word": "été", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "summer", + "example_sentence_native": "J'adore passer l'été à la plage.", + "example_sentence_english": "I love spending the summer at the beach.", + "pos": "noun", + "word_frequency": 9247 + }, + { + "word": "éveil", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awakening;arousal", + "example_sentence_native": "L'éveil des consciences est essentiel pour le changement.", + "example_sentence_english": "The awakening of consciousness is essential for change.", + "pos": "noun", + "word_frequency": 9248 + }, + { + "word": "éveillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "awake;alert", + "example_sentence_native": "Il est resté éveillé toute la nuit.", + "example_sentence_english": "He stayed awake all night.", + "pos": "adjective", + "word_frequency": 9249 + }, + { + "word": "éventualité", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eventuality;possibility", + "example_sentence_native": "Nous devons envisager toutes les éventualités.", + "example_sentence_english": "We must consider all eventualities.", + "pos": "noun", + "word_frequency": 9250 + }, + { + "word": "achèvement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completion;achievement", + "example_sentence_native": "L'achèvement du projet est prévu pour l'année prochaine.", + "example_sentence_english": "The completion of the project is planned for next year.", + "pos": "noun", + "word_frequency": 9252 + }, + { + "word": "addiction", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addiction", + "example_sentence_native": "L'addiction aux écrans est un problème croissant.", + "example_sentence_english": "Screen addiction is a growing problem.", + "pos": "noun", + "word_frequency": 9253 + }, + { + "word": "agissement", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "act;action;conduct", + "example_sentence_native": "Ses agissements ont soulevé des questions.", + "example_sentence_english": "His actions raised questions.", + "pos": "noun", + "word_frequency": 9254 + }, + { + "word": "allégation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegation", + "example_sentence_native": "Les allégations ont été niées par l'accusé.", + "example_sentence_english": "The allegations were denied by the accused.", + "pos": "noun", + "word_frequency": 9257 + }, + { + "word": "alphabétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alphabetical", + "example_sentence_native": "Rangez les livres par ordre alphabétique.", + "example_sentence_english": "Arrange the books in alphabetical order.", + "pos": "adjective", + "word_frequency": 9258 + }, + { + "word": "amiable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amicable;friendly", + "example_sentence_native": "Ils ont trouvé une solution amiable à leur différend.", + "example_sentence_english": "They found an amicable solution to their dispute.", + "pos": "adjective", + "word_frequency": 9259 + }, + { + "word": "ananas", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pineapple", + "example_sentence_native": "J'aimerais un jus d'ananas, s'il vous plaît.", + "example_sentence_english": "I would like a pineapple juice, please.", + "pos": "noun", + "word_frequency": 9260 + }, + { + "word": "anarchie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anarchy", + "example_sentence_native": "La situation a sombré dans l'anarchie.", + "example_sentence_english": "The situation descended into anarchy.", + "pos": "noun", + "word_frequency": 9261 + }, + { + "word": "annexion", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annexation", + "example_sentence_native": "L'annexion du territoire a provoqué des tensions.", + "example_sentence_english": "The annexation of the territory caused tensions.", + "pos": "noun", + "word_frequency": 9262 + }, + { + "word": "applaudir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to applaud;to clap", + "example_sentence_native": "Le public a commencé à applaudir après le spectacle.", + "example_sentence_english": "The audience started to applaud after the show.", + "pos": "verb", + "word_frequency": 9264 + }, + { + "word": "aquarium", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aquarium", + "example_sentence_native": "Il y a de nombreux poissons dans l'aquarium.", + "example_sentence_english": "There are many fish in the aquarium.", + "pos": "noun", + "word_frequency": 9265 + }, + { + "word": "articulation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint;articulation", + "example_sentence_native": "La douleur à l'articulation du genou est fréquente.", + "example_sentence_english": "Knee joint pain is common.", + "pos": "noun", + "word_frequency": 9266 + }, + { + "word": "avalanche", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avalanche", + "example_sentence_native": "Une avalanche a bloqué la route de montagne.", + "example_sentence_english": "An avalanche blocked the mountain road.", + "pos": "noun", + "word_frequency": 9267 + }, + { + "word": "baba", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baba (a type of cake)", + "example_sentence_native": "J'ai commandé un baba au rhum pour le dessert.", + "example_sentence_english": "I ordered a rum baba for dessert.", + "pos": "noun", + "word_frequency": 9268 + }, + { + "word": "balancé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balanced;swung", + "example_sentence_native": "Le budget est bien balancé cette année.", + "example_sentence_english": "The budget is well balanced this year.", + "pos": "adjective", + "word_frequency": 9269 + }, + { + "word": "billard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billiards;pool table", + "example_sentence_native": "Nous avons joué au billard toute la soirée.", + "example_sentence_english": "We played billiards all evening.", + "pos": "noun", + "word_frequency": 9272 + }, + { + "word": "bip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beep", + "example_sentence_native": "J'ai entendu un bip sonore.", + "example_sentence_english": "I heard a loud beep.", + "pos": "noun", + "word_frequency": 9273 + }, + { + "word": "blanchiment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laundering (e.g.;money laundering);bleaching", + "example_sentence_native": "Le blanchiment d'argent est un crime grave.", + "example_sentence_english": "Money laundering is a serious crime.", + "pos": "noun", + "word_frequency": 9274 + }, + { + "word": "brochure", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brochure;pamphlet", + "example_sentence_native": "J'ai pris une brochure sur les attractions locales.", + "example_sentence_english": "I took a brochure about the local attractions.", + "pos": "noun", + "word_frequency": 9276 + }, + { + "word": "brume", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mist;fog", + "example_sentence_native": "La brume matinale a rendu la visibilité difficile.", + "example_sentence_english": "The morning mist made visibility difficult.", + "pos": "noun", + "word_frequency": 9277 + }, + { + "word": "butte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hillock;mound", + "example_sentence_native": "Nous avons pique-niqué sur la butte.", + "example_sentence_english": "We picnicked on the hillock.", + "pos": "noun", + "word_frequency": 9279 + }, + { + "word": "campement", + "article_with_word": "le campement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encampment;camp", + "example_sentence_native": "Le campement était installé près de la rivière.", + "example_sentence_english": "The encampment was set up near the river.", + "pos": "noun", + "word_frequency": 9280 + }, + { + "word": "capote", + "article_with_word": "la capote", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hood (car);condom;rain cape", + "example_sentence_native": "Il a baissé la capote de sa voiture décapotable.", + "example_sentence_english": "He lowered the hood of his convertible car.", + "pos": "noun", + "word_frequency": 9281 + }, + { + "word": "capté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captured;grasped;understood", + "example_sentence_native": "Le signal radio a été bien capté.", + "example_sentence_english": "The radio signal was well captured.", + "pos": "adjective", + "word_frequency": 9282 + }, + { + "word": "cartel", + "article_with_word": "le cartel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartel", + "example_sentence_native": "Le cartel de la drogue a été démantelé.", + "example_sentence_english": "The drug cartel was dismantled.", + "pos": "noun", + "word_frequency": 9283 + }, + { + "word": "chaton", + "article_with_word": "le chaton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kitten", + "example_sentence_native": "Le petit chaton jouait avec une pelote de laine.", + "example_sentence_english": "The little kitten was playing with a ball of yarn.", + "pos": "noun", + "word_frequency": 9284 + }, + { + "word": "claquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slam;to snap;to blow (money)", + "example_sentence_native": "Il a claqué la porte en sortant.", + "example_sentence_english": "He slammed the door on his way out.", + "pos": "verb", + "word_frequency": 9285 + }, + { + "word": "confection", + "article_with_word": "la confection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "making;manufacturing;ready-made clothes", + "example_sentence_native": "La confection de ce gâteau demande beaucoup de temps.", + "example_sentence_english": "The making of this cake requires a lot of time.", + "pos": "noun", + "word_frequency": 9286 + }, + { + "word": "confiture", + "article_with_word": "la confiture", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jam", + "example_sentence_native": "J'aime manger de la confiture sur mes toasts le matin.", + "example_sentence_english": "I like to eat jam on my toast in the morning.", + "pos": "noun", + "word_frequency": 9287 + }, + { + "word": "consortium", + "article_with_word": "le consortium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consortium", + "example_sentence_native": "Un consortium d'entreprises a remporté l'appel d'offres.", + "example_sentence_english": "A consortium of companies won the tender.", + "pos": "noun", + "word_frequency": 9288 + }, + { + "word": "contingent", + "article_with_word": "le contingent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contingent;quota", + "example_sentence_native": "Un contingent de soldats a été envoyé en mission.", + "example_sentence_english": "A contingent of soldiers was sent on a mission.", + "pos": "noun", + "word_frequency": 9290 + }, + { + "word": "cosmétique", + "article_with_word": "le cosmétique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmetic (product)", + "example_sentence_native": "Elle utilise des produits cosmétiques naturels.", + "example_sentence_english": "She uses natural cosmetic products.", + "pos": "noun", + "word_frequency": 9291 + }, + { + "word": "cruellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruelly", + "example_sentence_native": "Il a été traité cruellement par ses ravisseurs.", + "example_sentence_english": "He was cruelly treated by his captors.", + "pos": "adverb", + "word_frequency": 9292 + }, + { + "word": "créance", + "article_with_word": "la créance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debt;claim;credit", + "example_sentence_native": "L'entreprise a des créances importantes à recouvrer.", + "example_sentence_english": "The company has significant debts to recover.", + "pos": "noun", + "word_frequency": 9293 + }, + { + "word": "culot", + "article_with_word": "le culot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nerve;cheek;audacity", + "example_sentence_native": "Il a eu le culot de me demander de l'argent après tout ça.", + "example_sentence_english": "He had the nerve to ask me for money after all that.", + "pos": "noun", + "word_frequency": 9294 + }, + { + "word": "curry", + "article_with_word": "le curry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curry", + "example_sentence_native": "J'ai préparé un délicieux poulet au curry.", + "example_sentence_english": "I prepared a delicious chicken curry.", + "pos": "noun", + "word_frequency": 9295 + }, + { + "word": "dam", + "article_with_word": "le dam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detriment;harm (often in \"au dam de\")", + "example_sentence_native": "Il a agi ainsi au dam de ses propres intérêts.", + "example_sentence_english": "He acted this way to the detriment of his own interests.", + "pos": "noun", + "word_frequency": 9297 + }, + { + "word": "découpage", + "article_with_word": "le découpage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cutting;division;breakdown;editing (film)", + "example_sentence_native": "Le découpage du film a pris beaucoup de temps.", + "example_sentence_english": "The editing of the film took a lot of time.", + "pos": "noun", + "word_frequency": 9302 + }, + { + "word": "décourager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discourage", + "example_sentence_native": "Ne te laisse pas décourager par les difficultés.", + "example_sentence_english": "Don't let yourself be discouraged by difficulties.", + "pos": "verb", + "word_frequency": 9303 + }, + { + "word": "dépourvu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deprived;devoid;lacking", + "example_sentence_native": "Il se sentait démuni et dépourvu de tout espoir.", + "example_sentence_english": "He felt helpless and devoid of all hope.", + "pos": "adjective", + "word_frequency": 9304 + }, + { + "word": "détracteur", + "article_with_word": "le détracteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detractor;critic", + "example_sentence_native": "Ses détracteurs n'ont pas manqué de critiquer sa décision.", + "example_sentence_english": "His detractors did not fail to criticize his decision.", + "pos": "noun", + "word_frequency": 9305 + }, + { + "word": "enclos", + "article_with_word": "l'enclos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enclosure;pen;paddock", + "example_sentence_native": "Les moutons étaient dans l'enclos.", + "example_sentence_english": "The sheep were in the enclosure.", + "pos": "noun", + "word_frequency": 9306 + }, + { + "word": "encouragement", + "article_with_word": "l'encouragement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouragement", + "example_sentence_native": "Ses paroles d'encouragement m'ont beaucoup aidé.", + "example_sentence_english": "His words of encouragement helped me a lot.", + "pos": "noun", + "word_frequency": 9307 + }, + { + "word": "endormi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "asleep;dormant", + "example_sentence_native": "Le bébé est profondément endormi.", + "example_sentence_english": "The baby is deeply asleep.", + "pos": "adjective", + "word_frequency": 9308 + }, + { + "word": "entrainer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to train;to lead to;to involve", + "example_sentence_native": "Le sport peut entraîner de nombreux bienfaits pour la santé.", + "example_sentence_english": "Sport can lead to many health benefits.", + "pos": "verb", + "word_frequency": 9311 + }, + { + "word": "exploitant", + "article_with_word": "l'exploitant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operator;farmer;exploiter", + "example_sentence_native": "L'exploitant agricole a modernisé ses équipements.", + "example_sentence_english": "The farmer modernized his equipment.", + "pos": "noun", + "word_frequency": 9312 + }, + { + "word": "fabriqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "manufactured;made", + "example_sentence_native": "Ce produit est fabriqué en France.", + "example_sentence_english": "This product is manufactured in France.", + "pos": "adjective", + "word_frequency": 9313 + }, + { + "word": "gaga", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gaga;senile;infatuated", + "example_sentence_native": "Il est complètement gaga de ses petits-enfants.", + "example_sentence_english": "He is completely gaga over his grandchildren.", + "pos": "adjective", + "word_frequency": 9314 + }, + { + "word": "gagné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "won;earned", + "example_sentence_native": "La partie est gagnée !", + "example_sentence_english": "The game is won!", + "pos": "adjective", + "word_frequency": 9315 + }, + { + "word": "gisement", + "article_with_word": "le gisement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deposit;seam;field (oil;gas)", + "example_sentence_native": "Un nouveau gisement de pétrole a été découvert.", + "example_sentence_english": "A new oil deposit was discovered.", + "pos": "noun", + "word_frequency": 9317 + }, + { + "word": "grandissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growing;increasing", + "example_sentence_native": "Il y a une inquiétude grandissante concernant le climat.", + "example_sentence_english": "There is a growing concern about the climate.", + "pos": "adjective", + "word_frequency": 9319 + }, + { + "word": "gratitude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gratitude", + "example_sentence_native": "Elle a exprimé sa gratitude pour l'aide reçue.", + "example_sentence_english": "She expressed her gratitude for the help received.", + "pos": "noun", + "word_frequency": 9320 + }, + { + "word": "géologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geology", + "example_sentence_native": "Il étudie la géologie des montagnes.", + "example_sentence_english": "He studies the geology of the mountains.", + "pos": "noun", + "word_frequency": 9321 + }, + { + "word": "hachette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hatchet", + "example_sentence_native": "Il a coupé du bois avec une petite hachette.", + "example_sentence_english": "He cut wood with a small hatchet.", + "pos": "noun", + "word_frequency": 9322 + }, + { + "word": "humanisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanism", + "example_sentence_native": "L'humanisme met l'accent sur la valeur et l'action des êtres humains.", + "example_sentence_english": "Humanism emphasizes the value and agency of human beings.", + "pos": "noun", + "word_frequency": 9323 + }, + { + "word": "hôtellerie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hotel industry", + "example_sentence_native": "Elle travaille dans le secteur de l'hôtellerie.", + "example_sentence_english": "She works in the hotel industry.", + "pos": "noun", + "word_frequency": 9324 + }, + { + "word": "imprimante", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "printer", + "example_sentence_native": "Mon imprimante est en panne.", + "example_sentence_english": "My printer is broken.", + "pos": "noun", + "word_frequency": 9325 + }, + { + "word": "imprévisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpredictable", + "example_sentence_native": "Le temps est très imprévisible en montagne.", + "example_sentence_english": "The weather is very unpredictable in the mountains.", + "pos": "adjective", + "word_frequency": 9326 + }, + { + "word": "irrégulier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irregular", + "example_sentence_native": "Son rythme cardiaque est irrégulier.", + "example_sentence_english": "His heartbeat is irregular.", + "pos": "adjective", + "word_frequency": 9328 + }, + { + "word": "islamisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamism", + "example_sentence_native": "L'islamisme est une idéologie politique et religieuse.", + "example_sentence_english": "Islamism is a political and religious ideology.", + "pos": "noun", + "word_frequency": 9329 + }, + { + "word": "jeté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thrown", + "example_sentence_native": "Il a trouvé un objet jeté dans la rue.", + "example_sentence_english": "He found a discarded object in the street.", + "pos": "adjective", + "word_frequency": 9331 + }, + { + "word": "lice", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female dog", + "example_sentence_native": "La lice a mis bas six chiots.", + "example_sentence_english": "The female dog gave birth to six puppies.", + "pos": "noun", + "word_frequency": 9333 + }, + { + "word": "licorne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unicorn", + "example_sentence_native": "Les enfants adorent les histoires de licornes.", + "example_sentence_english": "Children love unicorn stories.", + "pos": "noun", + "word_frequency": 9334 + }, + { + "word": "lucidité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lucidity", + "example_sentence_native": "Il a fait preuve d'une grande lucidité dans son analyse.", + "example_sentence_english": "He showed great lucidity in his analysis.", + "pos": "noun", + "word_frequency": 9336 + }, + { + "word": "ludique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playful", + "example_sentence_native": "Cette méthode d'apprentissage est très ludique.", + "example_sentence_english": "This learning method is very playful/fun.", + "pos": "adjective", + "word_frequency": 9337 + }, + { + "word": "luminosité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brightness", + "example_sentence_native": "La luminosité de l'écran est réglable.", + "example_sentence_english": "The screen brightness is adjustable.", + "pos": "noun", + "word_frequency": 9338 + }, + { + "word": "market", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "market", + "example_sentence_native": "Le 'market' des produits bio est en expansion.", + "example_sentence_english": "The organic products 'market' is expanding.", + "pos": "noun", + "word_frequency": 9341 + }, + { + "word": "mesuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measured", + "example_sentence_native": "Sa réaction était très mesurée.", + "example_sentence_english": "His reaction was very measured/restrained.", + "pos": "adjective", + "word_frequency": 9343 + }, + { + "word": "monté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mounted", + "example_sentence_native": "Le meuble est déjà monté.", + "example_sentence_english": "The furniture is already assembled.", + "pos": "adjective", + "word_frequency": 9346 + }, + { + "word": "mourant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dying", + "example_sentence_native": "Il a visité son ami mourant à l'hôpital.", + "example_sentence_english": "He visited his dying friend in the hospital.", + "pos": "adjective", + "word_frequency": 9347 + }, + { + "word": "mu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "driven", + "example_sentence_native": "Il était mu par une force intérieure.", + "example_sentence_english": "He was driven by an inner force.", + "pos": "adjective", + "word_frequency": 9348 + }, + { + "word": "objectivité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "objectivity", + "example_sentence_native": "Il est important de garder son objectivité.", + "example_sentence_english": "It is important to maintain one's objectivity.", + "pos": "noun", + "word_frequency": 9350 + }, + { + "word": "parapluie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "umbrella", + "example_sentence_native": "N'oublie pas ton parapluie, il va pleuvoir.", + "example_sentence_english": "Don't forget your umbrella, it's going to rain.", + "pos": "noun", + "word_frequency": 9351 + }, + { + "word": "perdant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loser", + "example_sentence_native": "Le perdant a serré la main du vainqueur.", + "example_sentence_english": "The loser shook the winner's hand.", + "pos": "noun", + "word_frequency": 9352 + }, + { + "word": "phone", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phone", + "example_sentence_native": "J'ai oublié mon phone à la maison.", + "example_sentence_english": "I forgot my phone at home.", + "pos": "noun", + "word_frequency": 9353 + }, + { + "word": "pige", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freelance article", + "example_sentence_native": "Elle écrit des piges pour plusieurs journaux.", + "example_sentence_english": "She writes freelance articles for several newspapers.", + "pos": "noun", + "word_frequency": 9354 + }, + { + "word": "piment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chili pepper", + "example_sentence_native": "J'aime ajouter du piment à mes plats.", + "example_sentence_english": "I like to add chili pepper to my dishes.", + "pos": "noun", + "word_frequency": 9355 + }, + { + "word": "politico", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "political", + "example_sentence_native": "Il a une vision politico-économique du problème.", + "example_sentence_english": "He has a politico-economic vision of the problem.", + "pos": "adjective", + "word_frequency": 9356 + }, + { + "word": "pornographie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pornography", + "example_sentence_native": "La pornographie est un sujet controversé.", + "example_sentence_english": "Pornography is a controversial topic.", + "pos": "noun", + "word_frequency": 9357 + }, + { + "word": "positionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to position", + "example_sentence_native": "Il faut bien positionner la caméra.", + "example_sentence_english": "You need to position the camera well.", + "pos": "verb", + "word_frequency": 9358 + }, + { + "word": "prod", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "production", + "example_sentence_native": "La prod du film a été difficile.", + "example_sentence_english": "The film's production was difficult.", + "pos": "noun", + "word_frequency": 9359 + }, + { + "word": "prolifération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proliferation", + "example_sentence_native": "La prolifération des armes nucléaires est une menace mondiale.", + "example_sentence_english": "The proliferation of nuclear weapons is a global threat.", + "pos": "noun", + "word_frequency": 9360 + }, + { + "word": "préventif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventive", + "example_sentence_native": "Il est important de prendre des mesures préventives.", + "example_sentence_english": "It is important to take preventive measures.", + "pos": "adjective", + "word_frequency": 9361 + }, + { + "word": "pseudonyme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pseudonym", + "example_sentence_native": "L'auteur a publié son livre sous un pseudonyme.", + "example_sentence_english": "The author published his book under a pseudonym.", + "pos": "noun", + "word_frequency": 9362 + }, + { + "word": "psychopathe", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychopath", + "example_sentence_native": "Le personnage principal du film est un psychopathe.", + "example_sentence_english": "The main character of the film is a psychopath.", + "pos": "noun", + "word_frequency": 9363 + }, + { + "word": "pépin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hitch;snag", + "example_sentence_native": "On a eu un petit pépin avec la voiture.", + "example_sentence_english": "We had a small hitch with the car.", + "pos": "noun", + "word_frequency": 9364 + }, + { + "word": "périodique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "periodic", + "example_sentence_native": "Les inspections sont périodiques.", + "example_sentence_english": "The inspections are periodic.", + "pos": "adjective", + "word_frequency": 9365 + }, + { + "word": "rattachement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attachment;affiliation", + "example_sentence_native": "Le rattachement de ce service à un autre département a été annoncé.", + "example_sentence_english": "The attachment of this department to another division has been announced.", + "pos": "noun", + "word_frequency": 9366 + }, + { + "word": "reconversion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retraining;reconversion", + "example_sentence_native": "Elle a décidé de faire une reconversion professionnelle.", + "example_sentence_english": "She decided to undergo professional retraining.", + "pos": "noun", + "word_frequency": 9368 + }, + { + "word": "renversement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overthrow;reversal", + "example_sentence_native": "Le renversement du régime a eu lieu pacifiquement.", + "example_sentence_english": "The overthrow of the regime took place peacefully.", + "pos": "noun", + "word_frequency": 9369 + }, + { + "word": "repêchage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "draft (sports);second chance", + "example_sentence_native": "L'équipe a eu une chance de repêchage après sa défaite.", + "example_sentence_english": "The team had a second chance after their defeat.", + "pos": "noun", + "word_frequency": 9370 + }, + { + "word": "revente", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resale", + "example_sentence_native": "La revente de billets est interdite.", + "example_sentence_english": "The resale of tickets is prohibited.", + "pos": "noun", + "word_frequency": 9372 + }, + { + "word": "réconfort", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comfort;solace", + "example_sentence_native": "Il a trouvé du réconfort dans les bras de sa famille.", + "example_sentence_english": "He found comfort in the arms of his family.", + "pos": "noun", + "word_frequency": 9374 + }, + { + "word": "résonance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resonance", + "example_sentence_native": "Le son a créé une forte résonance dans la pièce.", + "example_sentence_english": "The sound created a strong resonance in the room.", + "pos": "noun", + "word_frequency": 9376 + }, + { + "word": "rééducation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rehabilitation;re-education", + "example_sentence_native": "Il suit un programme de rééducation après son accident.", + "example_sentence_english": "He is following a rehabilitation program after his accident.", + "pos": "noun", + "word_frequency": 9377 + }, + { + "word": "sanctionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sanction;to punish", + "example_sentence_native": "Le gouvernement a décidé de sanctionner les entreprises frauduleuses.", + "example_sentence_english": "The government decided to sanction fraudulent companies.", + "pos": "verb", + "word_frequency": 9379 + }, + { + "word": "screen", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screen;screenshot", + "example_sentence_native": "J'ai pris un screen de la page web.", + "example_sentence_english": "I took a screenshot of the webpage.", + "pos": "noun", + "word_frequency": 9380 + }, + { + "word": "slim", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slim", + "example_sentence_native": "Il porte un jean slim.", + "example_sentence_english": "He is wearing slim-fit jeans.", + "pos": "adjective", + "word_frequency": 9381 + }, + { + "word": "soprano", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soprano", + "example_sentence_native": "La soprano a chanté un air magnifique.", + "example_sentence_english": "The soprano sang a magnificent aria.", + "pos": "noun", + "word_frequency": 9382 + }, + { + "word": "spécimen", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specimen", + "example_sentence_native": "Le musée expose un spécimen rare.", + "example_sentence_english": "The museum exhibits a rare specimen.", + "pos": "noun", + "word_frequency": 9383 + }, + { + "word": "statique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "static", + "example_sentence_native": "L'image est restée statique.", + "example_sentence_english": "The image remained static.", + "pos": "adjective", + "word_frequency": 9384 + }, + { + "word": "tenant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenant;holder", + "example_sentence_native": "Le nouveau tenant du titre est un jeune athlète.", + "example_sentence_english": "The new title holder is a young athlete.", + "pos": "noun", + "word_frequency": 9386 + }, + { + "word": "tertiaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tertiary", + "example_sentence_native": "Le secteur tertiaire est en pleine croissance.", + "example_sentence_english": "The tertiary sector is growing rapidly.", + "pos": "adjective", + "word_frequency": 9387 + }, + { + "word": "tonton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncle (informal)", + "example_sentence_native": "Mon tonton nous a rendu visite ce week-end.", + "example_sentence_english": "My uncle visited us this weekend.", + "pos": "noun", + "word_frequency": 9389 + }, + { + "word": "tracteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tractor", + "example_sentence_native": "Le fermier conduit son tracteur dans les champs.", + "example_sentence_english": "The farmer drives his tractor in the fields.", + "pos": "noun", + "word_frequency": 9390 + }, + { + "word": "trappe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trapdoor;hatch", + "example_sentence_native": "Il a ouvert la trappe pour descendre à la cave.", + "example_sentence_english": "He opened the trapdoor to go down to the cellar.", + "pos": "noun", + "word_frequency": 9391 + }, + { + "word": "tuto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutorial (informal)", + "example_sentence_native": "J'ai regardé un tuto pour apprendre à utiliser le logiciel.", + "example_sentence_english": "I watched a tutorial to learn how to use the software.", + "pos": "noun", + "word_frequency": 9392 + }, + { + "word": "vétéran", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veteran", + "example_sentence_native": "Il est un vétéran de la guerre.", + "example_sentence_english": "He is a war veteran.", + "pos": "noun", + "word_frequency": 9395 + }, + { + "word": "écoulement", + "article_with_word": "l’écoulement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow", + "example_sentence_native": "L'écoulement de l'eau était très rapide après la pluie.", + "example_sentence_english": "The flow of water was very fast after the rain.", + "pos": "noun", + "word_frequency": 9402 + }, + { + "word": "écouteur", + "article_with_word": "l’écouteur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "earphone", + "example_sentence_native": "J'ai perdu un de mes écouteurs.", + "example_sentence_english": "I lost one of my earphones.", + "pos": "noun", + "word_frequency": 9403 + }, + { + "word": "étalon", + "article_with_word": "l’étalon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standard", + "example_sentence_native": "Le mètre est l'étalon international de longueur.", + "example_sentence_english": "The meter is the international standard of length.", + "pos": "noun", + "word_frequency": 9405 + }, + { + "word": "évader", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to escape", + "example_sentence_native": "Il a réussi à s'évader de prison.", + "example_sentence_english": "He managed to escape from prison.", + "pos": "verb", + "word_frequency": 9406 + }, + { + "word": "abolir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abolish", + "example_sentence_native": "Le gouvernement a décidé d'abolir cette loi ancienne.", + "example_sentence_english": "The government decided to abolish this old law.", + "pos": "verb", + "word_frequency": 9407 + }, + { + "word": "acquitter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquit", + "example_sentence_native": "Le jury a décidé d'acquitter l'accusé.", + "example_sentence_english": "The jury decided to acquit the accused.", + "pos": "verb", + "word_frequency": 9408 + }, + { + "word": "admirable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admirable", + "example_sentence_native": "Son courage est vraiment admirable.", + "example_sentence_english": "His courage is truly admirable.", + "pos": "adjective", + "word_frequency": 9409 + }, + { + "word": "adultère", + "article_with_word": "l’adultère", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adultery", + "example_sentence_native": "L'adultère est considéré comme une faute grave dans de nombreuses cultures.", + "example_sentence_english": "Adultery is considered a serious offense in many cultures.", + "pos": "noun", + "word_frequency": 9410 + }, + { + "word": "agroalimentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agri-food", + "example_sentence_native": "L'industrie agroalimentaire est un secteur économique majeur.", + "example_sentence_english": "The agri-food industry is a major economic sector.", + "pos": "adjective", + "word_frequency": 9411 + }, + { + "word": "allégeance", + "article_with_word": "l’allégeance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegiance", + "example_sentence_native": "Il a prêté allégeance à son nouveau souverain.", + "example_sentence_english": "He swore allegiance to his new sovereign.", + "pos": "noun", + "word_frequency": 9413 + }, + { + "word": "anesthésie", + "article_with_word": "l’anesthésie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anesthesia", + "example_sentence_native": "Le patient a reçu une anesthésie locale avant l'opération.", + "example_sentence_english": "The patient received local anesthesia before the operation.", + "pos": "noun", + "word_frequency": 9414 + }, + { + "word": "apogée", + "article_with_word": "l’apogée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apogee", + "example_sentence_native": "Sa carrière a atteint son apogée l'année dernière.", + "example_sentence_english": "His career reached its apogee last year.", + "pos": "noun", + "word_frequency": 9416 + }, + { + "word": "armistice", + "article_with_word": "l’armistice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armistice", + "example_sentence_native": "L'armistice a été signé le 11 novembre 1918.", + "example_sentence_english": "The armistice was signed on November 11, 1918.", + "pos": "noun", + "word_frequency": 9418 + }, + { + "word": "barque", + "article_with_word": "la barque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boat", + "example_sentence_native": "Nous avons loué une petite barque pour pêcher sur le lac.", + "example_sentence_english": "We rented a small boat to fish on the lake.", + "pos": "noun", + "word_frequency": 9420 + }, + { + "word": "blindé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armored", + "example_sentence_native": "Le véhicule était blindé pour résister aux attaques.", + "example_sentence_english": "The vehicle was armored to withstand attacks.", + "pos": "adjective", + "word_frequency": 9421 + }, + { + "word": "bourgmestre", + "article_with_word": "le bourgmestre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mayor (Belgium;Luxembourg)", + "example_sentence_native": "Le bourgmestre a inauguré le nouveau parc communal.", + "example_sentence_english": "The mayor inaugurated the new communal park.", + "pos": "noun", + "word_frequency": 9423 + }, + { + "word": "cardio", + "article_with_word": "le cardio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardio", + "example_sentence_native": "Je fais du cardio trois fois par semaine à la salle de sport.", + "example_sentence_english": "I do cardio three times a week at the gym.", + "pos": "noun", + "word_frequency": 9425 + }, + { + "word": "casserole", + "article_with_word": "la casserole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saucepan", + "example_sentence_native": "Mets l'eau à bouillir dans la casserole.", + "example_sentence_english": "Put the water to boil in the saucepan.", + "pos": "noun", + "word_frequency": 9426 + }, + { + "word": "chevelure", + "article_with_word": "la chevelure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hair (mass of)", + "example_sentence_native": "Elle a une magnifique chevelure rousse.", + "example_sentence_english": "She has magnificent red hair.", + "pos": "noun", + "word_frequency": 9427 + }, + { + "word": "cil", + "article_with_word": "le cil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyelash", + "example_sentence_native": "Un cil est tombé dans mon œil.", + "example_sentence_english": "An eyelash fell into my eye.", + "pos": "noun", + "word_frequency": 9428 + }, + { + "word": "cohabitation", + "article_with_word": "la cohabitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohabitation", + "example_sentence_native": "La cohabitation entre les deux partis politiques a été difficile.", + "example_sentence_english": "The cohabitation between the two political parties was difficult.", + "pos": "noun", + "word_frequency": 9430 + }, + { + "word": "combo", + "article_with_word": "le combo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combo", + "example_sentence_native": "Ce restaurant propose un excellent combo burger-frites.", + "example_sentence_english": "This restaurant offers an excellent burger-fries combo.", + "pos": "noun", + "word_frequency": 9431 + }, + { + "word": "crevette", + "article_with_word": "la crevette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shrimp", + "example_sentence_native": "J'adore les salades de crevettes.", + "example_sentence_english": "I love shrimp salads.", + "pos": "noun", + "word_frequency": 9432 + }, + { + "word": "crue", + "article_with_word": "la crue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flood", + "example_sentence_native": "La crue de la rivière a causé des dégâts importants.", + "example_sentence_english": "The river flood caused significant damage.", + "pos": "noun", + "word_frequency": 9433 + }, + { + "word": "créole", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Creole", + "example_sentence_native": "Le créole est parlé dans plusieurs îles des Caraïbes.", + "example_sentence_english": "Creole is spoken on several Caribbean islands.", + "pos": "adjective", + "word_frequency": 9434 + }, + { + "word": "dissoudre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissolve", + "example_sentence_native": "Il faut dissoudre le sucre dans l'eau chaude.", + "example_sentence_english": "You need to dissolve the sugar in hot water.", + "pos": "verb", + "word_frequency": 9438 + }, + { + "word": "donateur", + "article_with_word": "le donateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "donor", + "example_sentence_native": "Les donateurs ont contribué généreusement à la cause.", + "example_sentence_english": "The donors contributed generously to the cause.", + "pos": "noun", + "word_frequency": 9439 + }, + { + "word": "dosage", + "article_with_word": "le dosage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dosage", + "example_sentence_native": "Le médecin a ajusté le dosage du médicament.", + "example_sentence_english": "The doctor adjusted the medication dosage.", + "pos": "noun", + "word_frequency": 9440 + }, + { + "word": "déchéance", + "article_with_word": "la déchéance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forfeiture;decline", + "example_sentence_native": "La déchéance de ses droits civiques a été prononcée.", + "example_sentence_english": "The forfeiture of his civil rights was pronounced.", + "pos": "noun", + "word_frequency": 9441 + }, + { + "word": "déduction", + "article_with_word": "la déduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduction", + "example_sentence_native": "J'ai fait une déduction logique de ses propos.", + "example_sentence_english": "I made a logical deduction from his words.", + "pos": "noun", + "word_frequency": 9442 + }, + { + "word": "délicatesse", + "article_with_word": "la délicatesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delicacy;tact", + "example_sentence_native": "Il a traité le sujet avec beaucoup de délicatesse.", + "example_sentence_english": "He handled the subject with great delicacy.", + "pos": "noun", + "word_frequency": 9443 + }, + { + "word": "déontologie", + "article_with_word": "la déontologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deontology;ethics", + "example_sentence_native": "Le code de déontologie régit la profession.", + "example_sentence_english": "The code of ethics governs the profession.", + "pos": "noun", + "word_frequency": 9444 + }, + { + "word": "déserter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to desert;to abandon", + "example_sentence_native": "Les spectateurs ont commencé à déserter la salle.", + "example_sentence_english": "The spectators began to desert the hall.", + "pos": "verb", + "word_frequency": 9445 + }, + { + "word": "embouchure", + "article_with_word": "l’embouchure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mouth (of a river);mouthpiece", + "example_sentence_native": "L'embouchure du fleuve est très large.", + "example_sentence_english": "The mouth of the river is very wide.", + "pos": "noun", + "word_frequency": 9447 + }, + { + "word": "entrave", + "article_with_word": "l’entrave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hindrance;impediment", + "example_sentence_native": "Le manque de fonds est une entrave au projet.", + "example_sentence_english": "Lack of funds is a hindrance to the project.", + "pos": "noun", + "word_frequency": 9448 + }, + { + "word": "envisageable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceivable;foreseeable", + "example_sentence_native": "Cette solution est tout à fait envisageable.", + "example_sentence_english": "This solution is entirely conceivable.", + "pos": "adjective", + "word_frequency": 9449 + }, + { + "word": "expressément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressly;explicitly", + "example_sentence_native": "Il a expressément demandé que cela soit fait.", + "example_sentence_english": "He expressly asked for this to be done.", + "pos": "adverb", + "word_frequency": 9450 + }, + { + "word": "fertilité", + "article_with_word": "la fertilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertility", + "example_sentence_native": "La fertilité du sol est essentielle pour l'agriculture.", + "example_sentence_english": "Soil fertility is essential for agriculture.", + "pos": "noun", + "word_frequency": 9451 + }, + { + "word": "forger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to forge;to shape", + "example_sentence_native": "Il faut forger le fer tant qu'il est chaud.", + "example_sentence_english": "You have to strike while the iron is hot.", + "pos": "verb", + "word_frequency": 9454 + }, + { + "word": "glacier", + "article_with_word": "le glacier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glacier", + "example_sentence_native": "Les glaciers fondent à cause du réchauffement climatique.", + "example_sentence_english": "Glaciers are melting due to global warming.", + "pos": "noun", + "word_frequency": 9457 + }, + { + "word": "grêle", + "article_with_word": "la grêle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hail", + "example_sentence_native": "Il est tombé de la grêle hier soir.", + "example_sentence_english": "It hailed last night.", + "pos": "noun", + "word_frequency": 9458 + }, + { + "word": "huissier", + "article_with_word": "l’huissier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bailiff;usher", + "example_sentence_native": "L'huissier a remis la convocation.", + "example_sentence_english": "The bailiff delivered the summons.", + "pos": "noun", + "word_frequency": 9463 + }, + { + "word": "immunitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immune", + "example_sentence_native": "Le système immunitaire protège le corps.", + "example_sentence_english": "The immune system protects the body.", + "pos": "adjective", + "word_frequency": 9465 + }, + { + "word": "improvisation", + "article_with_word": "l’improvisation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvisation", + "example_sentence_native": "Son discours était une pure improvisation.", + "example_sentence_english": "His speech was pure improvisation.", + "pos": "noun", + "word_frequency": 9466 + }, + { + "word": "inadmissible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unacceptable;inadmissible", + "example_sentence_native": "Ce comportement est inadmissible.", + "example_sentence_english": "This behavior is unacceptable.", + "pos": "adjective", + "word_frequency": 9467 + }, + { + "word": "infiltration", + "article_with_word": "l’infiltration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infiltration;leakage", + "example_sentence_native": "Il y a une infiltration d'eau dans le plafond.", + "example_sentence_english": "There is water infiltration in the ceiling.", + "pos": "noun", + "word_frequency": 9468 + }, + { + "word": "intimidation", + "article_with_word": "l’intimidation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidation", + "example_sentence_native": "Il a été victime d'intimidation à l'école.", + "example_sentence_english": "He was a victim of intimidation at school.", + "pos": "noun", + "word_frequency": 9470 + }, + { + "word": "jeton", + "article_with_word": "le jeton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "token;chip", + "example_sentence_native": "J'ai besoin d'un jeton pour le caddie.", + "example_sentence_english": "I need a token for the shopping cart.", + "pos": "noun", + "word_frequency": 9473 + }, + { + "word": "lécher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lick", + "example_sentence_native": "Le chien a léché ma main.", + "example_sentence_english": "The dog licked my hand.", + "pos": "verb", + "word_frequency": 9474 + }, + { + "word": "macro", + "article_with_word": "la macro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "macro", + "example_sentence_native": "J'ai créé une macro pour automatiser cette tâche.", + "example_sentence_english": "I created a macro to automate this task.", + "pos": "noun", + "word_frequency": 9475 + }, + { + "word": "manège", + "article_with_word": "le manège", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merry-go-round;riding arena", + "example_sentence_native": "Les enfants adorent faire un tour de manège.", + "example_sentence_english": "Children love to go for a ride on the merry-go-round.", + "pos": "noun", + "word_frequency": 9476 + }, + { + "word": "martyre", + "article_with_word": "le martyre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "martyrdom", + "example_sentence_native": "Il a subi le martyre pour ses convictions.", + "example_sentence_english": "He suffered martyrdom for his beliefs.", + "pos": "noun", + "word_frequency": 9477 + }, + { + "word": "matinal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "morning (adj.);early (person)", + "example_sentence_native": "Je suis une personne très matinale.", + "example_sentence_english": "I am a very early riser.", + "pos": "adjective", + "word_frequency": 9478 + }, + { + "word": "migratoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migratory", + "example_sentence_native": "Les oiseaux migrateurs voyagent sur de longues distances.", + "example_sentence_english": "Migratory birds travel long distances.", + "pos": "adjective", + "word_frequency": 9479 + }, + { + "word": "mistral", + "article_with_word": "le mistral", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistral (wind)", + "example_sentence_native": "Le mistral souffle fort en Provence.", + "example_sentence_english": "The mistral blows strongly in Provence.", + "pos": "noun", + "word_frequency": 9481 + }, + { + "word": "moralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "morally", + "example_sentence_native": "Il est moralement obligé de dire la vérité.", + "example_sentence_english": "He is morally obliged to tell the truth.", + "pos": "adverb", + "word_frequency": 9482 + }, + { + "word": "muséum", + "article_with_word": "le muséum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "museum (often natural history museum)", + "example_sentence_native": "Nous avons visité le Muséum national d'Histoire naturelle.", + "example_sentence_english": "We visited the National Museum of Natural History.", + "pos": "noun", + "word_frequency": 9484 + }, + { + "word": "mécanicien", + "article_with_word": "le mécanicien", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mechanic", + "example_sentence_native": "Le mécanicien a réparé ma voiture.", + "example_sentence_english": "The mechanic repaired my car.", + "pos": "noun", + "word_frequency": 9485 + }, + { + "word": "paresseux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lazy", + "example_sentence_native": "Il est trop paresseux pour faire ses devoirs.", + "example_sentence_english": "He is too lazy to do his homework.", + "pos": "adjective", + "word_frequency": 9487 + }, + { + "word": "polluant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polluting", + "example_sentence_native": "Les émissions de gaz polluants augmentent.", + "example_sentence_english": "Polluting gas emissions are increasing.", + "pos": "adjective", + "word_frequency": 9491 + }, + { + "word": "possiblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possibly", + "example_sentence_native": "Il est possiblement en retard.", + "example_sentence_english": "He is possibly late.", + "pos": "adverb", + "word_frequency": 9493 + }, + { + "word": "regrettable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regrettable;unfortunate", + "example_sentence_native": "C'est une situation très regrettable.", + "example_sentence_english": "It's a very regrettable situation.", + "pos": "adjective", + "word_frequency": 9497 + }, + { + "word": "renom", + "article_with_word": "le renom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renown;fame", + "example_sentence_native": "Il a acquis un grand renom dans son domaine.", + "example_sentence_english": "He gained great renown in his field.", + "pos": "noun", + "word_frequency": 9498 + }, + { + "word": "rivaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compete;to rival", + "example_sentence_native": "Ils rivalisent pour la première place.", + "example_sentence_english": "They compete for first place.", + "pos": "verb", + "word_frequency": 9500 + }, + { + "word": "roulement", + "article_with_word": "le roulement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rolling;rotation;bearing", + "example_sentence_native": "Le roulement de la machine est bruyant.", + "example_sentence_english": "The machine's bearing is noisy.", + "pos": "noun", + "word_frequency": 9503 + }, + { + "word": "roumain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Romanian", + "example_sentence_native": "Elle parle roumain couramment.", + "example_sentence_english": "She speaks Romanian fluently.", + "pos": "adjective", + "word_frequency": 9504 + }, + { + "word": "ruse", + "article_with_word": "la ruse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trick;cunning;stratagem", + "example_sentence_native": "Il a utilisé une ruse pour gagner.", + "example_sentence_english": "He used a trick to win.", + "pos": "noun", + "word_frequency": 9505 + }, + { + "word": "récepteur", + "article_with_word": "le récepteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receiver;receptor", + "example_sentence_native": "Le récepteur radio ne fonctionne plus.", + "example_sentence_english": "The radio receiver no longer works.", + "pos": "noun", + "word_frequency": 9506 + }, + { + "word": "réconcilier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconcile", + "example_sentence_native": "Ils ont réussi à se réconcilier après leur dispute.", + "example_sentence_english": "They managed to reconcile after their argument.", + "pos": "verb", + "word_frequency": 9507 + }, + { + "word": "récurrent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recurring", + "example_sentence_native": "C'est un problème récurrent dans cette région.", + "example_sentence_english": "It's a recurring problem in this region.", + "pos": "adjective", + "word_frequency": 9508 + }, + { + "word": "résine", + "article_with_word": "la résine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resin", + "example_sentence_native": "La résine est utilisée dans la fabrication de plastiques.", + "example_sentence_english": "Resin is used in plastic manufacturing.", + "pos": "noun", + "word_frequency": 9509 + }, + { + "word": "révélateur", + "article_with_word": "le révélateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "developer (photography);indicator;revealing element", + "example_sentence_native": "Ce détail est très révélateur de sa personnalité.", + "example_sentence_english": "This detail is very revealing of his personality.", + "pos": "noun", + "word_frequency": 9510 + }, + { + "word": "sociologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociological", + "example_sentence_native": "C'est une étude sociologique intéressante.", + "example_sentence_english": "It's an interesting sociological study.", + "pos": "adjective", + "word_frequency": 9513 + }, + { + "word": "soixantaine", + "article_with_word": "la soixantaine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "about sixty;sixties (age)", + "example_sentence_native": "Il a la soixantaine.", + "example_sentence_english": "He is about sixty years old.", + "pos": "noun", + "word_frequency": 9514 + }, + { + "word": "stipuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stipulate", + "example_sentence_native": "Le contrat stipule les conditions de vente.", + "example_sentence_english": "The contract stipulates the terms of sale.", + "pos": "verb", + "word_frequency": 9516 + }, + { + "word": "syndicaliste", + "article_with_word": "le syndicaliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade unionist;union member", + "example_sentence_native": "Le syndicaliste a défendu les droits des travailleurs.", + "example_sentence_english": "The trade unionist defended the workers' rights.", + "pos": "noun", + "word_frequency": 9518 + }, + { + "word": "sécu", + "article_with_word": "la sécu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social security (informal)", + "example_sentence_native": "J'ai envoyé mes papiers à la sécu.", + "example_sentence_english": "I sent my papers to social security.", + "pos": "noun", + "word_frequency": 9519 + }, + { + "word": "sérum", + "article_with_word": "le sérum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serum", + "example_sentence_native": "Le sérum est utilisé pour traiter certaines maladies.", + "example_sentence_english": "The serum is used to treat certain diseases.", + "pos": "noun", + "word_frequency": 9520 + }, + { + "word": "taxation", + "article_with_word": "la taxation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taxation", + "example_sentence_native": "La taxation des produits de luxe est souvent élevée.", + "example_sentence_english": "The taxation of luxury goods is often high.", + "pos": "noun", + "word_frequency": 9521 + }, + { + "word": "tousser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cough", + "example_sentence_native": "Il a commencé à tousser après avoir inhalé la fumée.", + "example_sentence_english": "He started to cough after inhaling the smoke.", + "pos": "verb", + "word_frequency": 9526 + }, + { + "word": "toux", + "article_with_word": "la toux", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cough", + "example_sentence_native": "Elle a une forte toux depuis hier.", + "example_sentence_english": "She has a bad cough since yesterday.", + "pos": "noun", + "word_frequency": 9527 + }, + { + "word": "traque", + "article_with_word": "la traque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hunt;pursuit", + "example_sentence_native": "La traque du fugitif a duré plusieurs jours.", + "example_sentence_english": "The hunt for the fugitive lasted several days.", + "pos": "noun", + "word_frequency": 9528 + }, + { + "word": "vestimentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clothing;sartorial", + "example_sentence_native": "Il a un style vestimentaire très original.", + "example_sentence_english": "He has a very original clothing style.", + "pos": "adjective", + "word_frequency": 9529 + }, + { + "word": "vibrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vibrate", + "example_sentence_native": "Mon téléphone a commencé à vibrer dans ma poche.", + "example_sentence_english": "My phone started to vibrate in my pocket.", + "pos": "verb", + "word_frequency": 9530 + }, + { + "word": "volley", + "article_with_word": "le volley", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volleyball", + "example_sentence_native": "Nous jouons au volley sur la plage chaque été.", + "example_sentence_english": "We play volleyball on the beach every summer.", + "pos": "noun", + "word_frequency": 9532 + }, + { + "word": "yaourt", + "article_with_word": "le yaourt", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yogurt", + "example_sentence_native": "J'aime manger un yaourt aux fruits le matin.", + "example_sentence_english": "I like to eat a fruit yogurt in the morning.", + "pos": "noun", + "word_frequency": 9534 + }, + { + "word": "ériger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to erect;to establish", + "example_sentence_native": "Ils ont décidé d'ériger un monument en son honneur.", + "example_sentence_english": "They decided to erect a monument in his honor.", + "pos": "verb", + "word_frequency": 9535 + }, + { + "word": "accumuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accumulate", + "example_sentence_native": "Il a réussi à accumuler une grande fortune.", + "example_sentence_english": "He managed to accumulate a large fortune.", + "pos": "verb", + "word_frequency": 9538 + }, + { + "word": "aggraver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to worsen;to aggravate", + "example_sentence_native": "Le manque de sommeil peut aggraver la situation.", + "example_sentence_english": "Lack of sleep can worsen the situation.", + "pos": "verb", + "word_frequency": 9539 + }, + { + "word": "altesse", + "article_with_word": "votre Altesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highness", + "example_sentence_native": "Votre Altesse est attendue au dîner.", + "example_sentence_english": "Your Highness is expected at dinner.", + "pos": "noun", + "word_frequency": 9541 + }, + { + "word": "atypique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atypical", + "example_sentence_native": "Son parcours professionnel est assez atypique.", + "example_sentence_english": "His professional background is quite atypical.", + "pos": "adjective", + "word_frequency": 9542 + }, + { + "word": "bannir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ban;to banish", + "example_sentence_native": "Il est interdit de bannir les discussions constructives.", + "example_sentence_english": "It is forbidden to ban constructive discussions.", + "pos": "verb", + "word_frequency": 9543 + }, + { + "word": "block", + "article_with_word": "le block", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "block", + "example_sentence_native": "Il a mis un block sur son compte pour éviter les spams.", + "example_sentence_english": "He put a block on his account to avoid spam.", + "pos": "noun", + "word_frequency": 9548 + }, + { + "word": "brutalité", + "article_with_word": "la brutalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutality", + "example_sentence_native": "La police a été accusée de brutalité excessive.", + "example_sentence_english": "The police were accused of excessive brutality.", + "pos": "noun", + "word_frequency": 9551 + }, + { + "word": "caporal", + "article_with_word": "le caporal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporal", + "example_sentence_native": "Le caporal a donné des ordres clairs à ses hommes.", + "example_sentence_english": "The corporal gave clear orders to his men.", + "pos": "noun", + "word_frequency": 9552 + }, + { + "word": "carnage", + "article_with_word": "le carnage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carnage;slaughter", + "example_sentence_native": "La bataille a entraîné un véritable carnage.", + "example_sentence_english": "The battle resulted in a real carnage.", + "pos": "noun", + "word_frequency": 9553 + }, + { + "word": "charismatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charismatic", + "example_sentence_native": "Le nouveau leader est très charismatique.", + "example_sentence_english": "The new leader is very charismatic.", + "pos": "adjective", + "word_frequency": 9555 + }, + { + "word": "chorale", + "article_with_word": "la chorale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choir", + "example_sentence_native": "Elle chante dans une chorale depuis son enfance.", + "example_sentence_english": "She has been singing in a choir since her childhood.", + "pos": "noun", + "word_frequency": 9556 + }, + { + "word": "contrebande", + "article_with_word": "la contrebande", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggling;contraband", + "example_sentence_native": "La police a démantelé un réseau de contrebande de cigarettes.", + "example_sentence_english": "The police dismantled a cigarette smuggling network.", + "pos": "noun", + "word_frequency": 9557 + }, + { + "word": "controle", + "article_with_word": "le contrôle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "control;check", + "example_sentence_native": "Le contrôle technique de la voiture est obligatoire.", + "example_sentence_english": "The technical inspection of the car is mandatory.", + "pos": "noun", + "word_frequency": 9558 + }, + { + "word": "copyright", + "article_with_word": "le copyright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "copyright", + "example_sentence_native": "Ce livre est protégé par le copyright.", + "example_sentence_english": "This book is protected by copyright.", + "pos": "noun", + "word_frequency": 9559 + }, + { + "word": "corneille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crow", + "example_sentence_native": "Une corneille s'est posée sur le toit.", + "example_sentence_english": "A crow landed on the roof.", + "pos": "noun", + "word_frequency": 9560 + }, + { + "word": "corrompu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrupt", + "example_sentence_native": "Le système était profondément corrompu.", + "example_sentence_english": "The system was deeply corrupt.", + "pos": "adjective", + "word_frequency": 9561 + }, + { + "word": "cosmique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmic", + "example_sentence_native": "Ils ont observé un phénomène cosmique rare.", + "example_sentence_english": "They observed a rare cosmic phenomenon.", + "pos": "adjective", + "word_frequency": 9562 + }, + { + "word": "couette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duvet", + "example_sentence_native": "J'ai acheté une nouvelle couette pour mon lit.", + "example_sentence_english": "I bought a new duvet for my bed.", + "pos": "noun", + "word_frequency": 9563 + }, + { + "word": "dessein", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purpose", + "example_sentence_native": "Il a agi à dessein.", + "example_sentence_english": "He acted on purpose.", + "pos": "noun", + "word_frequency": 9565 + }, + { + "word": "différend", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute", + "example_sentence_native": "Ils ont réglé leur différend à l'amiable.", + "example_sentence_english": "They settled their dispute amicably.", + "pos": "noun", + "word_frequency": 9566 + }, + { + "word": "diplômer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to graduate", + "example_sentence_native": "Elle va se diplômer l'année prochaine.", + "example_sentence_english": "She will graduate next year.", + "pos": "verb", + "word_frequency": 9567 + }, + { + "word": "diète", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diet", + "example_sentence_native": "Il suit une diète stricte pour sa santé.", + "example_sentence_english": "He follows a strict diet for his health.", + "pos": "noun", + "word_frequency": 9568 + }, + { + "word": "douer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to endow", + "example_sentence_native": "Il est doué pour la musique.", + "example_sentence_english": "He is gifted in music.", + "pos": "verb", + "word_frequency": 9569 + }, + { + "word": "découper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cut out", + "example_sentence_native": "Peux-tu découper le gâteau en parts égales ?", + "example_sentence_english": "Can you cut the cake into equal pieces?", + "pos": "verb", + "word_frequency": 9571 + }, + { + "word": "escrime", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fencing", + "example_sentence_native": "Elle pratique l'escrime depuis son enfance.", + "example_sentence_english": "She has been practicing fencing since her childhood.", + "pos": "noun", + "word_frequency": 9572 + }, + { + "word": "european", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "European", + "example_sentence_native": "C'est une ville européenne typique.", + "example_sentence_english": "It's a typical European city.", + "pos": "adjective", + "word_frequency": 9573 + }, + { + "word": "fax", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fax", + "example_sentence_native": "Envoyez-moi le document par fax.", + "example_sentence_english": "Send me the document by fax.", + "pos": "noun", + "word_frequency": 9575 + }, + { + "word": "formalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formality", + "example_sentence_native": "C'est juste une formalité administrative.", + "example_sentence_english": "It's just an administrative formality.", + "pos": "noun", + "word_frequency": 9577 + }, + { + "word": "fraîchement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freshly", + "example_sentence_native": "Le pain est fraîchement sorti du four.", + "example_sentence_english": "The bread is freshly out of the oven.", + "pos": "adverb", + "word_frequency": 9578 + }, + { + "word": "fresque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fresco", + "example_sentence_native": "La chapelle est ornée de magnifiques fresques.", + "example_sentence_english": "The chapel is adorned with magnificent frescoes.", + "pos": "noun", + "word_frequency": 9579 + }, + { + "word": "frontal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontal", + "example_sentence_native": "Il a subi un choc frontal.", + "example_sentence_english": "He suffered a head-on collision.", + "pos": "adjective", + "word_frequency": 9580 + }, + { + "word": "funéraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funerary", + "example_sentence_native": "Ils ont visité le monument funéraire.", + "example_sentence_english": "They visited the funerary monument.", + "pos": "adjective", + "word_frequency": 9581 + }, + { + "word": "gallois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Welsh", + "example_sentence_native": "Il parle gallois couramment.", + "example_sentence_english": "He speaks Welsh fluently.", + "pos": "adjective", + "word_frequency": 9582 + }, + { + "word": "garou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "werewolf (in 'loup-garou')", + "example_sentence_native": "Le loup-garou est une créature légendaire.", + "example_sentence_english": "The werewolf is a legendary creature.", + "pos": "noun", + "word_frequency": 9583 + }, + { + "word": "girondin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Girondin", + "example_sentence_native": "Les Girondins étaient un groupe politique pendant la Révolution française.", + "example_sentence_english": "The Girondins were a political group during the French Revolution.", + "pos": "noun", + "word_frequency": 9584 + }, + { + "word": "hacker", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacker", + "example_sentence_native": "Un hacker a réussi à pénétrer le système.", + "example_sentence_english": "A hacker managed to penetrate the system.", + "pos": "noun", + "word_frequency": 9585 + }, + { + "word": "hangar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hangar", + "example_sentence_native": "L'avion est garé dans le hangar.", + "example_sentence_english": "The plane is parked in the hangar.", + "pos": "noun", + "word_frequency": 9586 + }, + { + "word": "homologue", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpart", + "example_sentence_native": "Il a rencontré son homologue français.", + "example_sentence_english": "He met his French counterpart.", + "pos": "noun", + "word_frequency": 9588 + }, + { + "word": "hospitalité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitality", + "example_sentence_native": "Ils sont connus pour leur grande hospitalité.", + "example_sentence_english": "They are known for their great hospitality.", + "pos": "noun", + "word_frequency": 9589 + }, + { + "word": "hypothétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothetical", + "example_sentence_native": "C'est une situation purement hypothétique.", + "example_sentence_english": "It's a purely hypothetical situation.", + "pos": "adjective", + "word_frequency": 9591 + }, + { + "word": "identifiant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "username", + "example_sentence_native": "Entrez votre identifiant et votre mot de passe.", + "example_sentence_english": "Enter your username and password.", + "pos": "noun", + "word_frequency": 9592 + }, + { + "word": "ignoble", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despicable", + "example_sentence_native": "Son comportement était ignoble.", + "example_sentence_english": "His behavior was despicable.", + "pos": "adjective", + "word_frequency": 9593 + }, + { + "word": "indépendantiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separatist", + "example_sentence_native": "Le mouvement indépendantiste gagne du terrain.", + "example_sentence_english": "The separatist movement is gaining ground.", + "pos": "adjective", + "word_frequency": 9595 + }, + { + "word": "infographie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "computer graphics", + "example_sentence_native": "L'infographie est un domaine en pleine croissance.", + "example_sentence_english": "Computer graphics is a rapidly growing field.", + "pos": "noun", + "word_frequency": 9596 + }, + { + "word": "intensif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intensive", + "example_sentence_native": "Il suit un cours de français intensif.", + "example_sentence_english": "He is taking an intensive French course.", + "pos": "adjective", + "word_frequency": 9597 + }, + { + "word": "jouissance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enjoyment", + "example_sentence_native": "La jouissance de ce droit est garantie.", + "example_sentence_english": "The enjoyment of this right is guaranteed.", + "pos": "noun", + "word_frequency": 9598 + }, + { + "word": "kayak", + "article_with_word": "le kayak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kayak", + "example_sentence_native": "Nous avons loué un kayak pour explorer le lac.", + "example_sentence_english": "We rented a kayak to explore the lake.", + "pos": "noun", + "word_frequency": 9600 + }, + { + "word": "lenteur", + "article_with_word": "la lenteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slowness", + "example_sentence_native": "La lenteur du service était frustrante.", + "example_sentence_english": "The slowness of the service was frustrating.", + "pos": "noun", + "word_frequency": 9603 + }, + { + "word": "malgache", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Malagasy", + "example_sentence_native": "Elle parle couramment le malgache.", + "example_sentence_english": "She speaks Malagasy fluently.", + "pos": "adjective", + "word_frequency": 9608 + }, + { + "word": "maquette", + "article_with_word": "la maquette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model;mock-up", + "example_sentence_native": "L'architecte a présenté une maquette du bâtiment.", + "example_sentence_english": "The architect presented a model of the building.", + "pos": "noun", + "word_frequency": 9610 + }, + { + "word": "marraine", + "article_with_word": "la marraine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godmother", + "example_sentence_native": "Ma marraine m'a offert un beau cadeau.", + "example_sentence_english": "My godmother gave me a beautiful gift.", + "pos": "noun", + "word_frequency": 9611 + }, + { + "word": "maçon", + "article_with_word": "le maçon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bricklayer;mason", + "example_sentence_native": "Le maçon a construit le mur en pierre.", + "example_sentence_english": "The bricklayer built the stone wall.", + "pos": "noun", + "word_frequency": 9614 + }, + { + "word": "membrane", + "article_with_word": "la membrane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "membrane", + "example_sentence_native": "La cellule est entourée d'une membrane.", + "example_sentence_english": "The cell is surrounded by a membrane.", + "pos": "noun", + "word_frequency": 9615 + }, + { + "word": "millionnaire", + "article_with_word": "le millionnaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millionaire", + "example_sentence_native": "Il est devenu millionnaire grâce à son entreprise.", + "example_sentence_english": "He became a millionaire thanks to his business.", + "pos": "noun", + "word_frequency": 9616 + }, + { + "word": "méditer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to meditate;to ponder", + "example_sentence_native": "Elle aime méditer chaque matin.", + "example_sentence_english": "She likes to meditate every morning.", + "pos": "verb", + "word_frequency": 9618 + }, + { + "word": "oie", + "article_with_word": "l'oie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goose", + "example_sentence_native": "L'oie a traversé la route.", + "example_sentence_english": "The goose crossed the road.", + "pos": "noun", + "word_frequency": 9621 + }, + { + "word": "outrage", + "article_with_word": "l'outrage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outrage;insult", + "example_sentence_native": "Son discours a provoqué un outrage général.", + "example_sentence_english": "His speech caused general outrage.", + "pos": "noun", + "word_frequency": 9623 + }, + { + "word": "paralysie", + "article_with_word": "la paralysie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paralysis", + "example_sentence_native": "Il souffre d'une paralysie partielle.", + "example_sentence_english": "He suffers from partial paralysis.", + "pos": "noun", + "word_frequency": 9624 + }, + { + "word": "persévérance", + "article_with_word": "la persévérance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perseverance", + "example_sentence_native": "La persévérance est essentielle pour réussir.", + "example_sentence_english": "Perseverance is essential for success.", + "pos": "noun", + "word_frequency": 9625 + }, + { + "word": "plombier", + "article_with_word": "le plombier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plumber", + "example_sentence_native": "J'ai appelé le plombier pour réparer la fuite.", + "example_sentence_english": "I called the plumber to fix the leak.", + "pos": "noun", + "word_frequency": 9626 + }, + { + "word": "pognon", + "article_with_word": "le pognon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money (slang)", + "example_sentence_native": "Il a beaucoup de pognon.", + "example_sentence_english": "He has a lot of money.", + "pos": "noun", + "word_frequency": 9627 + }, + { + "word": "poney", + "article_with_word": "le poney", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pony", + "example_sentence_native": "Les enfants ont fait du poney.", + "example_sentence_english": "The children rode ponies.", + "pos": "noun", + "word_frequency": 9628 + }, + { + "word": "pret", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ready", + "example_sentence_native": "Je suis prêt à partir.", + "example_sentence_english": "I am ready to leave.", + "pos": "adjective", + "word_frequency": 9629 + }, + { + "word": "psychologiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychologically", + "example_sentence_native": "Il était psychologiquement affecté par l'événement.", + "example_sentence_english": "He was psychologically affected by the event.", + "pos": "adverb", + "word_frequency": 9631 + }, + { + "word": "pénitentiaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penitentiary;prison (adj.)", + "example_sentence_native": "L'administration pénitentiaire gère les prisons.", + "example_sentence_english": "The penitentiary administration manages prisons.", + "pos": "adjective", + "word_frequency": 9632 + }, + { + "word": "ralliement", + "article_with_word": "le ralliement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rallying;gathering", + "example_sentence_native": "Le point de ralliement est la place principale.", + "example_sentence_english": "The rallying point is the main square.", + "pos": "noun", + "word_frequency": 9633 + }, + { + "word": "retombée", + "article_with_word": "la retombée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fallout;repercussion", + "example_sentence_native": "Les retombées économiques de la crise sont importantes.", + "example_sentence_english": "The economic repercussions of the crisis are significant.", + "pos": "noun", + "word_frequency": 9634 + }, + { + "word": "retournement", + "article_with_word": "le retournement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reversal;turnaround", + "example_sentence_native": "Le retournement de situation était inattendu.", + "example_sentence_english": "The reversal of the situation was unexpected.", + "pos": "noun", + "word_frequency": 9635 + }, + { + "word": "romantisme", + "article_with_word": "le romantisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "romanticism", + "example_sentence_native": "Le romantisme est un mouvement artistique.", + "example_sentence_english": "Romanticism is an artistic movement.", + "pos": "noun", + "word_frequency": 9638 + }, + { + "word": "rosé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pinkish;rosé (wine)", + "example_sentence_native": "J'ai commandé un vin rosé.", + "example_sentence_english": "I ordered a rosé wine.", + "pos": "adjective", + "word_frequency": 9639 + }, + { + "word": "running", + "article_with_word": "le running", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "running (sport)", + "example_sentence_native": "Il fait du running tous les matins.", + "example_sentence_english": "He goes running every morning.", + "pos": "noun", + "word_frequency": 9641 + }, + { + "word": "sanglier", + "article_with_word": "le sanglier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild boar", + "example_sentence_native": "Nous avons vu un sanglier dans la forêt.", + "example_sentence_english": "We saw a wild boar in the forest.", + "pos": "noun", + "word_frequency": 9642 + }, + { + "word": "saucisse", + "article_with_word": "la saucisse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sausage", + "example_sentence_native": "J'ai mangé une saucisse grillée.", + "example_sentence_english": "I ate a grilled sausage.", + "pos": "noun", + "word_frequency": 9644 + }, + { + "word": "soda", + "article_with_word": "le soda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soda", + "example_sentence_native": "Je voudrais un soda, s'il vous plaît.", + "example_sentence_english": "I would like a soda, please.", + "pos": "noun", + "word_frequency": 9647 + }, + { + "word": "sonnerie", + "article_with_word": "la sonnerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ringtone;bell sound", + "example_sentence_native": "La sonnerie de mon téléphone est forte.", + "example_sentence_english": "My phone's ringtone is loud.", + "pos": "noun", + "word_frequency": 9648 + }, + { + "word": "spécialisation", + "article_with_word": "la spécialisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialization", + "example_sentence_native": "Sa spécialisation est la médecine.", + "example_sentence_english": "His specialization is medicine.", + "pos": "noun", + "word_frequency": 9649 + }, + { + "word": "stabilisation", + "article_with_word": "la stabilisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stabilization", + "example_sentence_native": "La stabilisation de l'économie est essentielle.", + "example_sentence_english": "The stabilization of the economy is essential.", + "pos": "noun", + "word_frequency": 9651 + }, + { + "word": "stabiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stabilize", + "example_sentence_native": "Il faut stabiliser la situation.", + "example_sentence_english": "We need to stabilize the situation.", + "pos": "verb", + "word_frequency": 9652 + }, + { + "word": "supposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supposed;alleged", + "example_sentence_native": "C'est le coupable supposé.", + "example_sentence_english": "He is the supposed culprit.", + "pos": "adjective", + "word_frequency": 9653 + }, + { + "word": "synopsis", + "article_with_word": "le synopsis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synopsis", + "example_sentence_native": "Le synopsis du film est intéressant.", + "example_sentence_english": "The film's synopsis is interesting.", + "pos": "noun", + "word_frequency": 9654 + }, + { + "word": "syntaxe", + "article_with_word": "la syntaxe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syntax", + "example_sentence_native": "La syntaxe française est complexe.", + "example_sentence_english": "French syntax is complex.", + "pos": "noun", + "word_frequency": 9655 + }, + { + "word": "taré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;nuts", + "example_sentence_native": "Il est complètement taré !", + "example_sentence_english": "He is completely nuts!", + "pos": "adjective", + "word_frequency": 9657 + }, + { + "word": "terminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "finished;over", + "example_sentence_native": "Le travail est terminé.", + "example_sentence_english": "The work is finished.", + "pos": "adjective", + "word_frequency": 9658 + }, + { + "word": "transporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transported;carried away", + "example_sentence_native": "Les marchandises ont été transportées par avion.", + "example_sentence_english": "The goods were transported by plane.", + "pos": "adjective", + "word_frequency": 9662 + }, + { + "word": "trier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sort;to select", + "example_sentence_native": "Il faut trier les déchets.", + "example_sentence_english": "We need to sort the waste.", + "pos": "verb", + "word_frequency": 9664 + }, + { + "word": "vasculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vascular", + "example_sentence_native": "Il a des problèmes vasculaires.", + "example_sentence_english": "He has vascular problems.", + "pos": "adjective", + "word_frequency": 9666 + }, + { + "word": "verdure", + "article_with_word": "la verdure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greenery;foliage", + "example_sentence_native": "Le jardin est plein de verdure.", + "example_sentence_english": "The garden is full of greenery.", + "pos": "noun", + "word_frequency": 9667 + }, + { + "word": "échappée", + "article_with_word": "l'échappée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escape;breakaway", + "example_sentence_native": "L'échappée a été rattrapée par le peloton.", + "example_sentence_english": "The breakaway was caught by the peloton.", + "pos": "noun", + "word_frequency": 9673 + }, + { + "word": "énergique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energetic", + "example_sentence_native": "Elle est très énergique le matin.", + "example_sentence_english": "She is very energetic in the morning.", + "pos": "adjective", + "word_frequency": 9674 + }, + { + "word": "épuration", + "article_with_word": "l'épuration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purification;purge", + "example_sentence_native": "Le processus d'épuration de l'eau est long.", + "example_sentence_english": "The water purification process is long.", + "pos": "noun", + "word_frequency": 9675 + }, + { + "word": "équilibré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balanced", + "example_sentence_native": "Il faut avoir une alimentation équilibrée.", + "example_sentence_english": "You need to have a balanced diet.", + "pos": "adjective", + "word_frequency": 9676 + }, + { + "word": "évocation", + "article_with_word": "l'évocation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evocation;recall", + "example_sentence_native": "L'évocation de ces souvenirs est douloureuse.", + "example_sentence_english": "The evocation of these memories is painful.", + "pos": "noun", + "word_frequency": 9677 + }, + { + "word": "abondamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abundantly", + "example_sentence_native": "Il a plu abondamment toute la nuit.", + "example_sentence_english": "It rained abundantly all night.", + "pos": "adverb", + "word_frequency": 9678 + }, + { + "word": "accepté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accepted", + "example_sentence_native": "Votre demande a été acceptée.", + "example_sentence_english": "Your request has been accepted.", + "pos": "adjective", + "word_frequency": 9679 + }, + { + "word": "aisance", + "article_with_word": "l'aisance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ease", + "example_sentence_native": "Il parle français avec une grande aisance.", + "example_sentence_english": "He speaks French with great ease.", + "pos": "noun", + "word_frequency": 9681 + }, + { + "word": "alpin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alpine", + "example_sentence_native": "Nous avons fait une randonnée en terrain alpin.", + "example_sentence_english": "We went hiking in alpine terrain.", + "pos": "adjective", + "word_frequency": 9682 + }, + { + "word": "amalgame", + "article_with_word": "un amalgame", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amalgam", + "example_sentence_native": "Il a fait un amalgame de plusieurs idées.", + "example_sentence_english": "He made an amalgam of several ideas.", + "pos": "noun", + "word_frequency": 9684 + }, + { + "word": "assimiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assimilate", + "example_sentence_native": "Il est difficile d'assimiler toutes ces nouvelles informations.", + "example_sentence_english": "It's difficult to assimilate all this new information.", + "pos": "verb", + "word_frequency": 9685 + }, + { + "word": "attiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attracted", + "example_sentence_native": "Il est très attiré par l'art moderne.", + "example_sentence_english": "He is very attracted to modern art.", + "pos": "adjective", + "word_frequency": 9686 + }, + { + "word": "avc", + "article_with_word": "un AVC", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stroke (CVA)", + "example_sentence_native": "Il a eu un AVC.", + "example_sentence_english": "He had a stroke.", + "pos": "noun", + "word_frequency": 9687 + }, + { + "word": "averti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informed", + "example_sentence_native": "C'est un public averti qui connaît bien le sujet.", + "example_sentence_english": "It's an informed audience that knows the subject well.", + "pos": "adjective", + "word_frequency": 9688 + }, + { + "word": "barème", + "article_with_word": "un barème", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scale", + "example_sentence_native": "Le barème de notation a été modifié.", + "example_sentence_english": "The grading scale has been modified.", + "pos": "noun", + "word_frequency": 9690 + }, + { + "word": "bebe", + "article_with_word": "un bébé", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baby", + "example_sentence_native": "Le bébé dort paisiblement.", + "example_sentence_english": "The baby is sleeping peacefully.", + "pos": "noun", + "word_frequency": 9691 + }, + { + "word": "bouddhisme", + "article_with_word": "le bouddhisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhism", + "example_sentence_native": "Le bouddhisme est une religion et une philosophie.", + "example_sentence_english": "Buddhism is a religion and a philosophy.", + "pos": "noun", + "word_frequency": 9695 + }, + { + "word": "canicule", + "article_with_word": "la canicule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heatwave", + "example_sentence_native": "La canicule a provoqué des températures record.", + "example_sentence_english": "The heatwave caused record temperatures.", + "pos": "noun", + "word_frequency": 9698 + }, + { + "word": "caresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to caress", + "example_sentence_native": "Elle aime caresser son chat.", + "example_sentence_english": "She likes to caress her cat.", + "pos": "verb", + "word_frequency": 9699 + }, + { + "word": "complaisance", + "article_with_word": "la complaisance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complacency", + "example_sentence_native": "Il y a une certaine complaisance dans son attitude.", + "example_sentence_english": "There is a certain complacency in his attitude.", + "pos": "noun", + "word_frequency": 9700 + }, + { + "word": "comprimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressed", + "example_sentence_native": "Le fichier est trop grand, il doit être comprimé.", + "example_sentence_english": "The file is too large, it needs to be compressed.", + "pos": "adjective", + "word_frequency": 9701 + }, + { + "word": "constitué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constituted", + "example_sentence_native": "Le groupe est constitué de cinq membres.", + "example_sentence_english": "The group is constituted of five members.", + "pos": "adjective", + "word_frequency": 9702 + }, + { + "word": "contracter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contract", + "example_sentence_native": "Les muscles se contractent pendant l'effort.", + "example_sentence_english": "Muscles contract during effort.", + "pos": "verb", + "word_frequency": 9703 + }, + { + "word": "coopérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cooperate", + "example_sentence_native": "Ils doivent coopérer pour atteindre leur objectif.", + "example_sentence_english": "They must cooperate to achieve their goal.", + "pos": "verb", + "word_frequency": 9705 + }, + { + "word": "credit", + "article_with_word": "le crédit", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "credit", + "example_sentence_native": "Il a demandé un crédit à la banque.", + "example_sentence_english": "He asked for credit from the bank.", + "pos": "noun", + "word_frequency": 9707 + }, + { + "word": "crétin", + "article_with_word": "un crétin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot", + "example_sentence_native": "Ne sois pas un crétin, réfléchis avant d'agir.", + "example_sentence_english": "Don't be an idiot, think before you act.", + "pos": "noun", + "word_frequency": 9708 + }, + { + "word": "déluge", + "article_with_word": "le déluge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deluge", + "example_sentence_native": "Après le déluge, le soleil est revenu.", + "example_sentence_english": "After the deluge, the sun returned.", + "pos": "noun", + "word_frequency": 9711 + }, + { + "word": "dépouille", + "article_with_word": "la dépouille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remains", + "example_sentence_native": "La dépouille mortelle a été retrouvée.", + "example_sentence_english": "The mortal remains were found.", + "pos": "noun", + "word_frequency": 9712 + }, + { + "word": "enfermé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locked in", + "example_sentence_native": "Il se sent enfermé dans cette situation.", + "example_sentence_english": "He feels locked in this situation.", + "pos": "adjective", + "word_frequency": 9715 + }, + { + "word": "ensuivre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ensue", + "example_sentence_native": "De cette décision, il s'ensuivra des conséquences importantes.", + "example_sentence_english": "From this decision, important consequences will ensue.", + "pos": "verb", + "word_frequency": 9716 + }, + { + "word": "fermentation", + "article_with_word": "la fermentation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fermentation", + "example_sentence_native": "La fermentation est un processus chimique important.", + "example_sentence_english": "Fermentation is an important chemical process.", + "pos": "noun", + "word_frequency": 9720 + }, + { + "word": "ferré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shod;iron-clad", + "example_sentence_native": "Le cheval était ferré pour la course.", + "example_sentence_english": "The horse was shod for the race.", + "pos": "adjective", + "word_frequency": 9721 + }, + { + "word": "ferveur", + "article_with_word": "la ferveur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fervor;passion", + "example_sentence_native": "Il a parlé avec une grande ferveur.", + "example_sentence_english": "He spoke with great fervor.", + "pos": "noun", + "word_frequency": 9722 + }, + { + "word": "flotter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to float", + "example_sentence_native": "Le bateau flotte sur l'eau.", + "example_sentence_english": "The boat floats on the water.", + "pos": "verb", + "word_frequency": 9723 + }, + { + "word": "formé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trained;formed", + "example_sentence_native": "Elle est très bien formée pour ce poste.", + "example_sentence_english": "She is very well trained for this position.", + "pos": "adjective", + "word_frequency": 9724 + }, + { + "word": "gréviste", + "article_with_word": "le/la gréviste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striker", + "example_sentence_native": "Les grévistes ont bloqué l'entrée de l'usine.", + "example_sentence_english": "The strikers blocked the factory entrance.", + "pos": "noun", + "word_frequency": 9728 + }, + { + "word": "haie", + "article_with_word": "la haie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hedge", + "example_sentence_native": "Nous avons planté une nouvelle haie dans le jardin.", + "example_sentence_english": "We planted a new hedge in the garden.", + "pos": "noun", + "word_frequency": 9729 + }, + { + "word": "hémorragie", + "article_with_word": "l'hémorragie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemorrhage", + "example_sentence_native": "Le médecin a arrêté l'hémorragie.", + "example_sentence_english": "The doctor stopped the hemorrhage.", + "pos": "noun", + "word_frequency": 9734 + }, + { + "word": "illicite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illicit;unlawful", + "example_sentence_native": "C'est une activité illicite.", + "example_sentence_english": "This is an illicit activity.", + "pos": "adjective", + "word_frequency": 9736 + }, + { + "word": "inflammation", + "article_with_word": "l'inflammation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammation", + "example_sentence_native": "Il souffre d'une inflammation de l'articulation.", + "example_sentence_english": "He suffers from inflammation of the joint.", + "pos": "noun", + "word_frequency": 9737 + }, + { + "word": "insistance", + "article_with_word": "l'insistance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insistence", + "example_sentence_native": "Malgré son insistance, je n'ai pas changé d'avis.", + "example_sentence_english": "Despite his insistence, I did not change my mind.", + "pos": "noun", + "word_frequency": 9738 + }, + { + "word": "intact", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intact", + "example_sentence_native": "Le vase est resté intact après la chute.", + "example_sentence_english": "The vase remained intact after the fall.", + "pos": "adjective", + "word_frequency": 9739 + }, + { + "word": "intéressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interested", + "example_sentence_native": "Es-tu intéressé par ce livre ?", + "example_sentence_english": "Are you interested in this book?", + "pos": "adjective", + "word_frequency": 9740 + }, + { + "word": "inutilement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uselessly;needlessly", + "example_sentence_native": "Il a attendu inutilement pendant des heures.", + "example_sentence_english": "He waited uselessly for hours.", + "pos": "adverb", + "word_frequency": 9741 + }, + { + "word": "invalide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invalid;disabled", + "example_sentence_native": "Son permis de conduire est invalide.", + "example_sentence_english": "His driving license is invalid.", + "pos": "adjective", + "word_frequency": 9742 + }, + { + "word": "invoquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to invoke;to call upon", + "example_sentence_native": "Il a invoqué son droit au silence.", + "example_sentence_english": "He invoked his right to silence.", + "pos": "verb", + "word_frequency": 9743 + }, + { + "word": "kiosque", + "article_with_word": "le kiosque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kiosk;newsstand", + "example_sentence_native": "J'ai acheté un journal au kiosque.", + "example_sentence_english": "I bought a newspaper at the newsstand.", + "pos": "noun", + "word_frequency": 9747 + }, + { + "word": "lessive", + "article_with_word": "la lessive", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundry;detergent", + "example_sentence_native": "Je dois faire la lessive ce soir.", + "example_sentence_english": "I have to do the laundry tonight.", + "pos": "noun", + "word_frequency": 9750 + }, + { + "word": "loyal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loyal", + "example_sentence_native": "C'est un ami très loyal.", + "example_sentence_english": "He is a very loyal friend.", + "pos": "adjective", + "word_frequency": 9752 + }, + { + "word": "légalisation", + "article_with_word": "la légalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legalization", + "example_sentence_native": "La légalisation de cette pratique est en débat.", + "example_sentence_english": "The legalization of this practice is under debate.", + "pos": "noun", + "word_frequency": 9754 + }, + { + "word": "macédoine", + "article_with_word": "la macédoine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "macédoine (mixed diced vegetables;fruit)", + "example_sentence_native": "J'ai préparé une macédoine de légumes pour le dîner.", + "example_sentence_english": "I prepared a macédoine of vegetables for dinner.", + "pos": "noun", + "word_frequency": 9755 + }, + { + "word": "maigrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lose weight;to get thinner", + "example_sentence_native": "Il essaie de maigrir avant l'été.", + "example_sentence_english": "He is trying to lose weight before summer.", + "pos": "verb", + "word_frequency": 9756 + }, + { + "word": "marionnette", + "article_with_word": "la marionnette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puppet", + "example_sentence_native": "Les enfants ont adoré le spectacle de marionnettes.", + "example_sentence_english": "The children loved the puppet show.", + "pos": "noun", + "word_frequency": 9757 + }, + { + "word": "marrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to laugh (informal)", + "example_sentence_native": "On s'est bien marré hier soir.", + "example_sentence_english": "We had a good laugh last night.", + "pos": "verb", + "word_frequency": 9758 + }, + { + "word": "motard", + "article_with_word": "le motard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biker", + "example_sentence_native": "Le motard portait un casque noir.", + "example_sentence_english": "The biker was wearing a black helmet.", + "pos": "noun", + "word_frequency": 9762 + }, + { + "word": "multimédia", + "article_with_word": "le multimédia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multimedia", + "example_sentence_native": "Le multimédia est essentiel dans l'éducation moderne.", + "example_sentence_english": "Multimedia is essential in modern education.", + "pos": "noun", + "word_frequency": 9763 + }, + { + "word": "médium", + "article_with_word": "le médium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medium", + "example_sentence_native": "Elle a consulté un médium pour parler à son défunt grand-père.", + "example_sentence_english": "She consulted a medium to speak to her deceased grandfather.", + "pos": "noun", + "word_frequency": 9764 + }, + { + "word": "neutraliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to neutralize", + "example_sentence_native": "Il faut neutraliser l'acide avec une base.", + "example_sentence_english": "You must neutralize the acid with a base.", + "pos": "verb", + "word_frequency": 9767 + }, + { + "word": "ocean", + "article_with_word": "l'océan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ocean", + "example_sentence_native": "L'océan Atlantique est très vaste.", + "example_sentence_english": "The Atlantic Ocean is very vast.", + "pos": "noun", + "word_frequency": 9770 + }, + { + "word": "octave", + "article_with_word": "l'octave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "octave", + "example_sentence_native": "Il a chanté la note une octave plus haut.", + "example_sentence_english": "He sang the note an octave higher.", + "pos": "noun", + "word_frequency": 9771 + }, + { + "word": "pastorale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pastoral", + "example_sentence_native": "La vie pastorale est souvent associée à la campagne.", + "example_sentence_english": "Pastoral life is often associated with the countryside.", + "pos": "adjective", + "word_frequency": 9776 + }, + { + "word": "patinage", + "article_with_word": "le patinage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skating", + "example_sentence_native": "Le patinage artistique est un sport élégant.", + "example_sentence_english": "Figure skating is an elegant sport.", + "pos": "noun", + "word_frequency": 9777 + }, + { + "word": "patinoire", + "article_with_word": "la patinoire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice rink", + "example_sentence_native": "Nous allons à la patinoire ce week-end.", + "example_sentence_english": "We are going to the ice rink this weekend.", + "pos": "noun", + "word_frequency": 9778 + }, + { + "word": "peluche", + "article_with_word": "la peluche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plush toy", + "example_sentence_native": "L'enfant dormait avec sa peluche préférée.", + "example_sentence_english": "The child slept with their favorite plush toy.", + "pos": "noun", + "word_frequency": 9780 + }, + { + "word": "perplexe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perplexed", + "example_sentence_native": "Il était perplexe face à cette décision inattendue.", + "example_sentence_english": "He was perplexed by this unexpected decision.", + "pos": "adjective", + "word_frequency": 9781 + }, + { + "word": "poire", + "article_with_word": "la poire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pear", + "example_sentence_native": "J'aime manger une poire juteuse.", + "example_sentence_english": "I like to eat a juicy pear.", + "pos": "noun", + "word_frequency": 9782 + }, + { + "word": "poussin", + "article_with_word": "le poussin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chick", + "example_sentence_native": "Le poussin est sorti de l'œuf.", + "example_sentence_english": "The chick came out of the egg.", + "pos": "noun", + "word_frequency": 9784 + }, + { + "word": "poutre", + "article_with_word": "la poutre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beam", + "example_sentence_native": "La poutre en bois soutenait le plafond.", + "example_sentence_english": "The wooden beam supported the ceiling.", + "pos": "noun", + "word_frequency": 9785 + }, + { + "word": "procession", + "article_with_word": "la procession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procession", + "example_sentence_native": "La procession a défilé lentement dans les rues.", + "example_sentence_english": "The procession marched slowly through the streets.", + "pos": "noun", + "word_frequency": 9786 + }, + { + "word": "proclamation", + "article_with_word": "la proclamation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proclamation", + "example_sentence_native": "La proclamation de l'indépendance a été célébrée.", + "example_sentence_english": "The proclamation of independence was celebrated.", + "pos": "noun", + "word_frequency": 9787 + }, + { + "word": "prévoyance", + "article_with_word": "la prévoyance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foresight", + "example_sentence_native": "Sa prévoyance lui a permis d'éviter de nombreux problèmes.", + "example_sentence_english": "His foresight allowed him to avoid many problems.", + "pos": "noun", + "word_frequency": 9788 + }, + { + "word": "questionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to question", + "example_sentence_native": "Il a commencé à questionner toutes les hypothèses.", + "example_sentence_english": "He began to question all assumptions.", + "pos": "verb", + "word_frequency": 9789 + }, + { + "word": "radiation", + "article_with_word": "la radiation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiation", + "example_sentence_native": "La radiation du soleil est essentielle pour la vie.", + "example_sentence_english": "Solar radiation is essential for life.", + "pos": "noun", + "word_frequency": 9790 + }, + { + "word": "rebours", + "article_with_word": "le rebours", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reverse", + "example_sentence_native": "Le compte à rebours avant le lancement a commencé.", + "example_sentence_english": "The countdown before the launch has begun.", + "pos": "noun", + "word_frequency": 9791 + }, + { + "word": "recréer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recreate", + "example_sentence_native": "Ils ont essayé de recréer l'ambiance de l'époque.", + "example_sentence_english": "They tried to recreate the atmosphere of the era.", + "pos": "verb", + "word_frequency": 9792 + }, + { + "word": "rectangulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rectangular", + "example_sentence_native": "La table était de forme rectangulaire.", + "example_sentence_english": "The table was rectangular in shape.", + "pos": "adjective", + "word_frequency": 9793 + }, + { + "word": "refroidir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cool down", + "example_sentence_native": "Laissez la soupe refroidir avant de la manger.", + "example_sentence_english": "Let the soup cool down before eating it.", + "pos": "verb", + "word_frequency": 9794 + }, + { + "word": "remerciement", + "article_with_word": "le remerciement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thanks", + "example_sentence_native": "Il a exprimé ses sincères remerciements.", + "example_sentence_english": "He expressed his sincere thanks.", + "pos": "noun", + "word_frequency": 9795 + }, + { + "word": "revêtement", + "article_with_word": "le revêtement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coating", + "example_sentence_native": "Le revêtement de sol est facile à nettoyer.", + "example_sentence_english": "The floor covering is easy to clean.", + "pos": "noun", + "word_frequency": 9796 + }, + { + "word": "romane", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Romanesque", + "example_sentence_native": "L'architecture romane est caractéristique du Moyen Âge.", + "example_sentence_english": "Romanesque architecture is characteristic of the Middle Ages.", + "pos": "adjective", + "word_frequency": 9798 + }, + { + "word": "rétrospective", + "article_with_word": "la rétrospective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrospective", + "example_sentence_native": "Le musée a organisé une rétrospective de son œuvre.", + "example_sentence_english": "The museum organized a retrospective of his work.", + "pos": "noun", + "word_frequency": 9799 + }, + { + "word": "salaud", + "article_with_word": "un salaud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bastard;scoundrel", + "example_sentence_native": "C'est un vrai salaud, il a volé son ami.", + "example_sentence_english": "He's a real bastard, he stole from his friend.", + "pos": "noun", + "word_frequency": 9800 + }, + { + "word": "saoul", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk", + "example_sentence_native": "Il était complètement saoul après la fête.", + "example_sentence_english": "He was completely drunk after the party.", + "pos": "adjective", + "word_frequency": 9801 + }, + { + "word": "saturation", + "article_with_word": "la saturation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturation", + "example_sentence_native": "La saturation du marché rend la vente difficile.", + "example_sentence_english": "Market saturation makes selling difficult.", + "pos": "noun", + "word_frequency": 9802 + }, + { + "word": "savourer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to savor;to enjoy", + "example_sentence_native": "Elle aime savourer chaque instant de ses vacances.", + "example_sentence_english": "She likes to savor every moment of her vacation.", + "pos": "verb", + "word_frequency": 9803 + }, + { + "word": "scoop", + "article_with_word": "le scoop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scoop (news)", + "example_sentence_native": "Le journaliste a obtenu un scoop exclusif.", + "example_sentence_english": "The journalist got an exclusive scoop.", + "pos": "noun", + "word_frequency": 9804 + }, + { + "word": "snow", + "article_with_word": "le snow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowboard", + "example_sentence_native": "Il adore faire du snow en hiver.", + "example_sentence_english": "He loves to go snowboarding in winter.", + "pos": "noun", + "word_frequency": 9808 + }, + { + "word": "soulier", + "article_with_word": "le soulier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoe", + "example_sentence_native": "Cendrillon a perdu son soulier de verre.", + "example_sentence_english": "Cinderella lost her glass slipper.", + "pos": "noun", + "word_frequency": 9809 + }, + { + "word": "souscrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subscribe;to underwrite", + "example_sentence_native": "Vous pouvez souscrire à notre newsletter.", + "example_sentence_english": "You can subscribe to our newsletter.", + "pos": "verb", + "word_frequency": 9810 + }, + { + "word": "symphonie", + "article_with_word": "la symphonie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symphony", + "example_sentence_native": "La neuvième symphonie de Beethoven est célèbre.", + "example_sentence_english": "Beethoven's Ninth Symphony is famous.", + "pos": "noun", + "word_frequency": 9813 + }, + { + "word": "tardivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belatedly;late", + "example_sentence_native": "Il a répondu tardivement à l'invitation.", + "example_sentence_english": "He responded belatedly to the invitation.", + "pos": "adverb", + "word_frequency": 9814 + }, + { + "word": "teen", + "article_with_word": "le teen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teen;teenager", + "example_sentence_native": "C'est un film pour les teens.", + "example_sentence_english": "It's a movie for teens.", + "pos": "noun", + "word_frequency": 9815 + }, + { + "word": "torche", + "article_with_word": "la torche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "torch;flashlight", + "example_sentence_native": "Nous avons utilisé une torche pour éclairer le chemin.", + "example_sentence_english": "We used a flashlight to light the way.", + "pos": "noun", + "word_frequency": 9816 + }, + { + "word": "vintage", + "article_with_word": "le vintage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vintage (style;item)", + "example_sentence_native": "Elle adore les vêtements vintage.", + "example_sentence_english": "She loves vintage clothes.", + "pos": "noun", + "word_frequency": 9819 + }, + { + "word": "écouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flow;to sell off;to pass (time)", + "example_sentence_native": "Les marchandises se sont écoulées rapidement.", + "example_sentence_english": "The goods sold quickly.", + "pos": "verb", + "word_frequency": 9821 + }, + { + "word": "éradiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to eradicate", + "example_sentence_native": "Il faut éradiquer la pauvreté.", + "example_sentence_english": "Poverty must be eradicated.", + "pos": "verb", + "word_frequency": 9822 + }, + { + "word": "ere", + "article_with_word": "l'ère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "era;age", + "example_sentence_native": "Nous vivons dans une nouvelle ère numérique.", + "example_sentence_english": "We live in a new digital era.", + "pos": "noun", + "word_frequency": 9823 + }, + { + "word": "abonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to subscribe", + "example_sentence_native": "Je vais m'abonner à ce service.", + "example_sentence_english": "I'm going to subscribe to this service.", + "pos": "verb", + "word_frequency": 9824 + }, + { + "word": "abordé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approached;tackled (as in a subject)", + "example_sentence_native": "Le sujet a été abordé en réunion.", + "example_sentence_english": "The subject was approached in the meeting.", + "pos": "adjective", + "word_frequency": 9825 + }, + { + "word": "adéquat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adequate;appropriate", + "example_sentence_native": "Il faut trouver une solution adéquate.", + "example_sentence_english": "We need to find an adequate solution.", + "pos": "adjective", + "word_frequency": 9826 + }, + { + "word": "affiché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "displayed;posted", + "example_sentence_native": "Le prix affiché est le prix final.", + "example_sentence_english": "The displayed price is the final price.", + "pos": "adjective", + "word_frequency": 9827 + }, + { + "word": "amnistie", + "article_with_word": "l'amnistie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amnesty", + "example_sentence_native": "Le gouvernement a accordé une amnistie générale.", + "example_sentence_english": "The government granted a general amnesty.", + "pos": "noun", + "word_frequency": 9829 + }, + { + "word": "amorce", + "article_with_word": "l'amorce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beginning;primer;fuse", + "example_sentence_native": "C'était l'amorce d'une longue discussion.", + "example_sentence_english": "It was the beginning of a long discussion.", + "pos": "noun", + "word_frequency": 9830 + }, + { + "word": "apparement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apparently", + "example_sentence_native": "Apparemment, il n'est pas venu.", + "example_sentence_english": "Apparently, he didn't come.", + "pos": "adverb", + "word_frequency": 9833 + }, + { + "word": "attester", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attest;to certify", + "example_sentence_native": "Je peux attester de son honnêteté.", + "example_sentence_english": "I can attest to his honesty.", + "pos": "verb", + "word_frequency": 9835 + }, + { + "word": "automatisation", + "article_with_word": "l'automatisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "automation", + "example_sentence_native": "L'automatisation des processus améliore l'efficacité.", + "example_sentence_english": "Process automation improves efficiency.", + "pos": "noun", + "word_frequency": 9836 + }, + { + "word": "balai", + "article_with_word": "le balai", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broom", + "example_sentence_native": "Prends le balai pour nettoyer le sol.", + "example_sentence_english": "Take the broom to clean the floor.", + "pos": "noun", + "word_frequency": 9837 + }, + { + "word": "bandeau", + "article_with_word": "le bandeau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headband;banner;blindfold", + "example_sentence_native": "Elle portait un bandeau dans les cheveux.", + "example_sentence_english": "She wore a headband in her hair.", + "pos": "noun", + "word_frequency": 9838 + }, + { + "word": "bandit", + "article_with_word": "le bandit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandit;gangster", + "example_sentence_native": "Le bandit a été arrêté par la police.", + "example_sentence_english": "The bandit was arrested by the police.", + "pos": "noun", + "word_frequency": 9839 + }, + { + "word": "baraque", + "article_with_word": "la baraque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shack;hut", + "example_sentence_native": "Ils vivent dans une petite baraque au bord de la rivière.", + "example_sentence_english": "They live in a small shack by the river.", + "pos": "noun", + "word_frequency": 9840 + }, + { + "word": "beta", + "article_with_word": "la bêta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beta (version)", + "example_sentence_native": "La version bêta du logiciel est disponible.", + "example_sentence_english": "The beta version of the software is available.", + "pos": "noun", + "word_frequency": 9842 + }, + { + "word": "bientot", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soon", + "example_sentence_native": "À bientôt !", + "example_sentence_english": "See you soon!", + "pos": "adverb", + "word_frequency": 9844 + }, + { + "word": "bille", + "article_with_word": "la bille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marble;ball", + "example_sentence_native": "Les enfants jouent aux billes dans la cour.", + "example_sentence_english": "The children are playing marbles in the yard.", + "pos": "noun", + "word_frequency": 9845 + }, + { + "word": "booster", + "article_with_word": "le booster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "booster", + "example_sentence_native": "J'ai besoin d'un booster d'énergie ce matin.", + "example_sentence_english": "I need an energy booster this morning.", + "pos": "noun", + "word_frequency": 9847 + }, + { + "word": "boursier", + "article_with_word": "le boursier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scholarship holder;stockbroker", + "example_sentence_native": "Il est boursier et étudie à l'étranger.", + "example_sentence_english": "He is a scholarship holder and studies abroad.", + "pos": "noun", + "word_frequency": 9849 + }, + { + "word": "calculé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calculated", + "example_sentence_native": "C'était un risque calculé.", + "example_sentence_english": "It was a calculated risk.", + "pos": "adjective", + "word_frequency": 9850 + }, + { + "word": "canyon", + "article_with_word": "le canyon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canyon", + "example_sentence_native": "Nous avons exploré un magnifique canyon.", + "example_sentence_english": "We explored a magnificent canyon.", + "pos": "noun", + "word_frequency": 9851 + }, + { + "word": "capot", + "article_with_word": "le capot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood (of a car)", + "example_sentence_native": "Le mécanicien a soulevé le capot de la voiture.", + "example_sentence_english": "The mechanic lifted the hood of the car.", + "pos": "noun", + "word_frequency": 9852 + }, + { + "word": "cavité", + "article_with_word": "la cavité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavity;hollow", + "example_sentence_native": "Le dentiste a trouvé une petite cavité.", + "example_sentence_english": "The dentist found a small cavity.", + "pos": "noun", + "word_frequency": 9853 + }, + { + "word": "cheminement", + "article_with_word": "le cheminement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "path;progression;journey", + "example_sentence_native": "Son cheminement professionnel a été remarquable.", + "example_sentence_english": "His professional journey has been remarkable.", + "pos": "noun", + "word_frequency": 9855 + }, + { + "word": "contrefaçon", + "article_with_word": "la contrefaçon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterfeit;forgery", + "example_sentence_native": "La vente de contrefaçons est illégale.", + "example_sentence_english": "The sale of counterfeits is illegal.", + "pos": "noun", + "word_frequency": 9856 + }, + { + "word": "convaincant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convincing", + "example_sentence_native": "Son argument était très convaincant.", + "example_sentence_english": "His argument was very convincing.", + "pos": "adjective", + "word_frequency": 9857 + }, + { + "word": "convenablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "properly;suitably", + "example_sentence_native": "Il a agi convenablement dans cette situation.", + "example_sentence_english": "He acted properly in this situation.", + "pos": "adverb", + "word_frequency": 9858 + }, + { + "word": "croate", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Croatian", + "example_sentence_native": "Elle parle couramment le croate.", + "example_sentence_english": "She speaks Croatian fluently.", + "pos": "adjective", + "word_frequency": 9859 + }, + { + "word": "cynique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cynical", + "example_sentence_native": "Il a une vision très cynique de la politique.", + "example_sentence_english": "He has a very cynical view of politics.", + "pos": "adjective", + "word_frequency": 9860 + }, + { + "word": "debut", + "article_with_word": "le début", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beginning;start", + "example_sentence_native": "Au début du film, tout était calme.", + "example_sentence_english": "At the beginning of the movie, everything was calm.", + "pos": "noun", + "word_frequency": 9861 + }, + { + "word": "diaspora", + "article_with_word": "la diaspora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diaspora", + "example_sentence_native": "La diaspora arménienne est très active.", + "example_sentence_english": "The Armenian diaspora is very active.", + "pos": "noun", + "word_frequency": 9862 + }, + { + "word": "dissuader", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissuade", + "example_sentence_native": "J'ai essayé de le dissuader de partir.", + "example_sentence_english": "I tried to dissuade him from leaving.", + "pos": "verb", + "word_frequency": 9863 + }, + { + "word": "distant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distant;remote", + "example_sentence_native": "Ils vivent dans un village distant.", + "example_sentence_english": "They live in a distant village.", + "pos": "adjective", + "word_frequency": 9864 + }, + { + "word": "distraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distract;to entertain", + "example_sentence_native": "Le bruit me distrait de mon travail.", + "example_sentence_english": "The noise distracts me from my work.", + "pos": "verb", + "word_frequency": 9865 + }, + { + "word": "dominé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominated;subdued", + "example_sentence_native": "Le paysage est dominé par les montagnes.", + "example_sentence_english": "The landscape is dominated by the mountains.", + "pos": "adjective", + "word_frequency": 9866 + }, + { + "word": "drole", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "funny;strange", + "example_sentence_native": "Ce film est vraiment drôle.", + "example_sentence_english": "This movie is really funny.", + "pos": "adjective", + "word_frequency": 9867 + }, + { + "word": "déborder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overflow;to spill over", + "example_sentence_native": "La rivière a débordé de son lit.", + "example_sentence_english": "The river overflowed its banks.", + "pos": "verb", + "word_frequency": 9869 + }, + { + "word": "déguisement", + "article_with_word": "le déguisement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disguise;costume", + "example_sentence_native": "Elle portait un drôle de déguisement pour la fête.", + "example_sentence_english": "She wore a funny costume for the party.", + "pos": "noun", + "word_frequency": 9870 + }, + { + "word": "démolir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demolish;to tear down", + "example_sentence_native": "Ils vont démolir l'ancien bâtiment.", + "example_sentence_english": "They are going to demolish the old building.", + "pos": "verb", + "word_frequency": 9871 + }, + { + "word": "dénouement", + "article_with_word": "le dénouement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outcome;resolution;denouement", + "example_sentence_native": "Le dénouement de l'histoire était inattendu.", + "example_sentence_english": "The outcome of the story was unexpected.", + "pos": "noun", + "word_frequency": 9872 + }, + { + "word": "déplorable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deplorable;regrettable", + "example_sentence_native": "La situation est déplorable.", + "example_sentence_english": "The situation is deplorable.", + "pos": "adjective", + "word_frequency": 9873 + }, + { + "word": "embuscade", + "article_with_word": "l'embuscade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambush", + "example_sentence_native": "Ils sont tombés dans une embuscade.", + "example_sentence_english": "They fell into an ambush.", + "pos": "noun", + "word_frequency": 9875 + }, + { + "word": "enchanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enchant;to delight", + "example_sentence_native": "Cette nouvelle m'enchante.", + "example_sentence_english": "This news delights me.", + "pos": "verb", + "word_frequency": 9876 + }, + { + "word": "entraineur", + "article_with_word": "l'entraîneur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach;trainer", + "example_sentence_native": "L'entraîneur a donné des instructions claires.", + "example_sentence_english": "The coach gave clear instructions.", + "pos": "noun", + "word_frequency": 9878 + }, + { + "word": "facette", + "article_with_word": "la facette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facet;aspect", + "example_sentence_native": "Chaque facette de son caractère est intéressante.", + "example_sentence_english": "Every facet of his character is interesting.", + "pos": "noun", + "word_frequency": 9879 + }, + { + "word": "fauve", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wild (animal);tawny", + "example_sentence_native": "Le lion est un animal fauve.", + "example_sentence_english": "The lion is a wild animal.", + "pos": "adjective", + "word_frequency": 9882 + }, + { + "word": "flexible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexible", + "example_sentence_native": "Ce matériau est très flexible.", + "example_sentence_english": "This material is very flexible.", + "pos": "adjective", + "word_frequency": 9884 + }, + { + "word": "frisson", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shiver;thrill", + "example_sentence_native": "J'ai eu un frisson en écoutant cette histoire.", + "example_sentence_english": "I got a shiver listening to that story.", + "pos": "noun", + "word_frequency": 9886 + }, + { + "word": "garderie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daycare;nursery", + "example_sentence_native": "Mon enfant va à la garderie tous les jours.", + "example_sentence_english": "My child goes to daycare every day.", + "pos": "noun", + "word_frequency": 9887 + }, + { + "word": "glamour", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glamorous", + "example_sentence_native": "Elle a un style très glamour.", + "example_sentence_english": "She has a very glamorous style.", + "pos": "adjective", + "word_frequency": 9890 + }, + { + "word": "gâche", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste;strike plate", + "example_sentence_native": "C'est une gâche de temps.", + "example_sentence_english": "It's a waste of time.", + "pos": "noun", + "word_frequency": 9891 + }, + { + "word": "hallucinant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hallucinatory;amazing", + "example_sentence_native": "C'est une histoire hallucinante.", + "example_sentence_english": "It's an amazing story.", + "pos": "adjective", + "word_frequency": 9893 + }, + { + "word": "hashtag", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hashtag", + "example_sentence_native": "Ajoutez un hashtag à votre publication.", + "example_sentence_english": "Add a hashtag to your post.", + "pos": "noun", + "word_frequency": 9894 + }, + { + "word": "hiérarchique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hierarchical", + "example_sentence_native": "L'organisation est très hiérarchique.", + "example_sentence_english": "The organization is very hierarchical.", + "pos": "adjective", + "word_frequency": 9895 + }, + { + "word": "inclinaison", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclination;tilt", + "example_sentence_native": "L'inclinaison du toit est forte.", + "example_sentence_english": "The inclination of the roof is steep.", + "pos": "noun", + "word_frequency": 9896 + }, + { + "word": "infliger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inflict", + "example_sentence_native": "Il a infligé une lourde peine.", + "example_sentence_english": "He inflicted a heavy penalty.", + "pos": "verb", + "word_frequency": 9897 + }, + { + "word": "insensible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insensitive;numb", + "example_sentence_native": "Il est insensible à la douleur.", + "example_sentence_english": "He is insensitive to pain.", + "pos": "adjective", + "word_frequency": 9898 + }, + { + "word": "interminable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interminable;endless", + "example_sentence_native": "La réunion semblait interminable.", + "example_sentence_english": "The meeting seemed interminable.", + "pos": "adjective", + "word_frequency": 9899 + }, + { + "word": "irrigation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrigation", + "example_sentence_native": "L'irrigation est essentielle pour l'agriculture.", + "example_sentence_english": "Irrigation is essential for agriculture.", + "pos": "noun", + "word_frequency": 9900 + }, + { + "word": "jogging", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jogging;tracksuit", + "example_sentence_native": "Je fais du jogging tous les matins.", + "example_sentence_english": "I go jogging every morning.", + "pos": "noun", + "word_frequency": 9902 + }, + { + "word": "labrador", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Labrador (dog breed)", + "example_sentence_native": "J'ai un chien labrador.", + "example_sentence_english": "I have a Labrador dog.", + "pos": "noun", + "word_frequency": 9905 + }, + { + "word": "laitier", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dairy farmer;milkman", + "example_sentence_native": "Le laitier passe tous les matins.", + "example_sentence_english": "The milkman comes every morning.", + "pos": "noun", + "word_frequency": 9906 + }, + { + "word": "lance", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spear;lance", + "example_sentence_native": "Le chevalier portait une lance.", + "example_sentence_english": "The knight carried a spear.", + "pos": "noun", + "word_frequency": 9907 + }, + { + "word": "larve", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "larva", + "example_sentence_native": "La chenille est une larve de papillon.", + "example_sentence_english": "The caterpillar is a butterfly larva.", + "pos": "noun", + "word_frequency": 9908 + }, + { + "word": "maléfique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evil;malevolent", + "example_sentence_native": "C'est une force maléfique.", + "example_sentence_english": "It's an evil force.", + "pos": "adjective", + "word_frequency": 9911 + }, + { + "word": "marijuana", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marijuana", + "example_sentence_native": "La marijuana est illégale dans de nombreux pays.", + "example_sentence_english": "Marijuana is illegal in many countries.", + "pos": "noun", + "word_frequency": 9912 + }, + { + "word": "massacrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to massacre;to slaughter", + "example_sentence_native": "Ils ont massacré les animaux.", + "example_sentence_english": "They massacred the animals.", + "pos": "verb", + "word_frequency": 9913 + }, + { + "word": "menacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "threatened;endangered", + "example_sentence_native": "Cette espèce est menacée d'extinction.", + "example_sentence_english": "This species is threatened with extinction.", + "pos": "adjective", + "word_frequency": 9916 + }, + { + "word": "miser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bet;to wager", + "example_sentence_native": "Il a misé tout son argent sur ce cheval.", + "example_sentence_english": "He bet all his money on this horse.", + "pos": "verb", + "word_frequency": 9918 + }, + { + "word": "mono", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mono (mononucleosis)", + "example_sentence_native": "Il a attrapé la mono.", + "example_sentence_english": "He caught mono.", + "pos": "noun", + "word_frequency": 9919 + }, + { + "word": "morphologie", + "article_with_word": "la morphologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morphology", + "example_sentence_native": "L'étude de la morphologie des plantes est fascinante.", + "example_sentence_english": "The study of plant morphology is fascinating.", + "pos": "noun", + "word_frequency": 9920 + }, + { + "word": "nuisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful", + "example_sentence_native": "Ces produits chimiques sont nuisibles à l'environnement.", + "example_sentence_english": "These chemicals are harmful to the environment.", + "pos": "adjective", + "word_frequency": 9922 + }, + { + "word": "opter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to opt", + "example_sentence_native": "Nous avons décidé d'opter pour la solution la plus simple.", + "example_sentence_english": "We decided to opt for the simplest solution.", + "pos": "verb", + "word_frequency": 9923 + }, + { + "word": "panda", + "article_with_word": "le panda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "panda", + "example_sentence_native": "Le panda est un animal emblématique de la Chine.", + "example_sentence_english": "The panda is an emblematic animal of China.", + "pos": "noun", + "word_frequency": 9924 + }, + { + "word": "parachute", + "article_with_word": "le parachute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parachute", + "example_sentence_native": "Il a sauté en parachute pour la première fois.", + "example_sentence_english": "He parachuted for the first time.", + "pos": "noun", + "word_frequency": 9925 + }, + { + "word": "participatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participatory", + "example_sentence_native": "Nous avons mis en place un budget participatif.", + "example_sentence_english": "We implemented a participatory budget.", + "pos": "adjective", + "word_frequency": 9926 + }, + { + "word": "perruque", + "article_with_word": "la perruque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wig", + "example_sentence_native": "Elle portait une perruque blonde pour le spectacle.", + "example_sentence_english": "She wore a blonde wig for the show.", + "pos": "noun", + "word_frequency": 9927 + }, + { + "word": "plausible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plausible", + "example_sentence_native": "Son explication semble tout à fait plausible.", + "example_sentence_english": "His explanation seems entirely plausible.", + "pos": "adjective", + "word_frequency": 9928 + }, + { + "word": "pousse", + "article_with_word": "la pousse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoot", + "example_sentence_native": "Les jeunes pousses de bambou sont comestibles.", + "example_sentence_english": "Young bamboo shoots are edible.", + "pos": "noun", + "word_frequency": 9930 + }, + { + "word": "pressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in a hurry", + "example_sentence_native": "Je suis très pressé, je dois partir.", + "example_sentence_english": "I'm very much in a hurry, I have to leave.", + "pos": "adjective", + "word_frequency": 9932 + }, + { + "word": "prisme", + "article_with_word": "le prisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prism", + "example_sentence_native": "La lumière se décompose en couleurs à travers un prisme.", + "example_sentence_english": "Light breaks down into colors through a prism.", + "pos": "noun", + "word_frequency": 9933 + }, + { + "word": "précipiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to precipitate", + "example_sentence_native": "Il ne faut pas précipiter les choses.", + "example_sentence_english": "One must not rush things.", + "pos": "verb", + "word_frequency": 9934 + }, + { + "word": "python", + "article_with_word": "le python", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "python", + "example_sentence_native": "Le python est un grand serpent constricteur.", + "example_sentence_english": "The python is a large constrictor snake.", + "pos": "noun", + "word_frequency": 9936 + }, + { + "word": "pêcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fish", + "example_sentence_native": "Nous allons pêcher des truites dans la rivière.", + "example_sentence_english": "We are going to fish for trout in the river.", + "pos": "verb", + "word_frequency": 9939 + }, + { + "word": "quartz", + "article_with_word": "le quartz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quartz", + "example_sentence_native": "Le quartz est un minéral très commun.", + "example_sentence_english": "Quartz is a very common mineral.", + "pos": "noun", + "word_frequency": 9940 + }, + { + "word": "raté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "failed", + "example_sentence_native": "Son coup était complètement raté.", + "example_sentence_english": "His shot was completely missed.", + "pos": "adjective", + "word_frequency": 9942 + }, + { + "word": "rechange", + "article_with_word": "la rechange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spare", + "example_sentence_native": "J'ai besoin d'une roue de rechange pour mon vélo.", + "example_sentence_english": "I need a spare wheel for my bike.", + "pos": "noun", + "word_frequency": 9944 + }, + { + "word": "renier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disown", + "example_sentence_native": "Il a renié ses origines.", + "example_sentence_english": "He disowned his origins.", + "pos": "verb", + "word_frequency": 9945 + }, + { + "word": "rivage", + "article_with_word": "le rivage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shore", + "example_sentence_native": "Nous avons marché le long du rivage.", + "example_sentence_english": "We walked along the shore.", + "pos": "noun", + "word_frequency": 9946 + }, + { + "word": "ruche", + "article_with_word": "la ruche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beehive", + "example_sentence_native": "Les abeilles vivent dans la ruche.", + "example_sentence_english": "Bees live in the beehive.", + "pos": "noun", + "word_frequency": 9947 + }, + { + "word": "régent", + "article_with_word": "le régent", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regent", + "example_sentence_native": "Le prince fut nommé régent pendant la minorité du roi.", + "example_sentence_english": "The prince was appointed regent during the king's minority.", + "pos": "noun", + "word_frequency": 9948 + }, + { + "word": "rénover", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to renovate", + "example_sentence_native": "Ils ont décidé de rénover leur vieille maison.", + "example_sentence_english": "They decided to renovate their old house.", + "pos": "verb", + "word_frequency": 9949 + }, + { + "word": "sainteté", + "article_with_word": "la sainteté", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holiness", + "example_sentence_native": "La sainteté est une qualité attribuée aux saints.", + "example_sentence_english": "Holiness is a quality attributed to saints.", + "pos": "noun", + "word_frequency": 9950 + }, + { + "word": "salir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dirty", + "example_sentence_native": "Fais attention à ne pas salir tes vêtements.", + "example_sentence_english": "Be careful not to dirty your clothes.", + "pos": "verb", + "word_frequency": 9951 + }, + { + "word": "seau", + "article_with_word": "le seau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bucket", + "example_sentence_native": "Il a rempli le seau d'eau.", + "example_sentence_english": "He filled the bucket with water.", + "pos": "noun", + "word_frequency": 9953 + }, + { + "word": "servante", + "article_with_word": "la servante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maid", + "example_sentence_native": "La servante a préparé le dîner.", + "example_sentence_english": "The maid prepared dinner.", + "pos": "noun", + "word_frequency": 9954 + }, + { + "word": "stressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stressed", + "example_sentence_native": "Il est très stressé par son travail.", + "example_sentence_english": "He is very stressed by his work.", + "pos": "adjective", + "word_frequency": 9958 + }, + { + "word": "tablier", + "article_with_word": "le tablier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apron", + "example_sentence_native": "Elle a mis son tablier avant de commencer à cuisiner.", + "example_sentence_english": "She put on her apron before starting to cook.", + "pos": "noun", + "word_frequency": 9960 + }, + { + "word": "théâtral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theatrical", + "example_sentence_native": "Son geste était très théâtral.", + "example_sentence_english": "His gesture was very theatrical.", + "pos": "adjective", + "word_frequency": 9964 + }, + { + "word": "trainer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drag", + "example_sentence_native": "Il a dû traîner la lourde valise.", + "example_sentence_english": "He had to drag the heavy suitcase.", + "pos": "verb", + "word_frequency": 9968 + }, + { + "word": "tranchant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharp", + "example_sentence_native": "Le couteau a une lame très tranchante.", + "example_sentence_english": "The knife has a very sharp blade.", + "pos": "adjective", + "word_frequency": 9969 + }, + { + "word": "tronçon", + "article_with_word": "le tronçon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "section", + "example_sentence_native": "Ce tronçon de route est en travaux.", + "example_sentence_english": "This section of road is under construction.", + "pos": "noun", + "word_frequency": 9970 + }, + { + "word": "trousse", + "article_with_word": "la trousse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pencil case", + "example_sentence_native": "J'ai oublié ma trousse à l'école.", + "example_sentence_english": "I forgot my pencil case at school.", + "pos": "noun", + "word_frequency": 9971 + }, + { + "word": "vertige", + "article_with_word": "le vertige", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dizziness", + "example_sentence_native": "Il a le vertige quand il regarde du haut.", + "example_sentence_english": "He gets dizzy when he looks down from a height.", + "pos": "noun", + "word_frequency": 9972 + }, + { + "word": "vieillard", + "article_with_word": "le vieillard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old man", + "example_sentence_native": "Un vieillard était assis sur le banc.", + "example_sentence_english": "An old man was sitting on the bench.", + "pos": "noun", + "word_frequency": 9973 + }, + { + "word": "vulnérabilité", + "article_with_word": "la vulnérabilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulnerability", + "example_sentence_native": "La vulnérabilité de l'écosystème est préoccupante.", + "example_sentence_english": "The vulnerability of the ecosystem is concerning.", + "pos": "noun", + "word_frequency": 9975 + }, + { + "word": "yacht", + "article_with_word": "le yacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yacht", + "example_sentence_native": "Ils ont passé leurs vacances sur un yacht de luxe.", + "example_sentence_english": "They spent their vacation on a luxury yacht.", + "pos": "noun", + "word_frequency": 9976 + }, + { + "word": "échiquier", + "article_with_word": "l'échiquier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chessboard", + "example_sentence_native": "Les pièces d'échecs sont sur l'échiquier.", + "example_sentence_english": "The chess pieces are on the chessboard.", + "pos": "noun", + "word_frequency": 9977 + }, + { + "word": "étonnement", + "article_with_word": "l'étonnement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astonishment", + "example_sentence_native": "Son étonnement était visible sur son visage.", + "example_sentence_english": "His astonishment was visible on his face.", + "pos": "noun", + "word_frequency": 9978 + }, + { + "word": "abîme", + "article_with_word": "l'abîme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abyss", + "example_sentence_native": "Il regardait dans l'abîme sans fond.", + "example_sentence_english": "He looked into the bottomless abyss.", + "pos": "noun", + "word_frequency": 9979 + }, + { + "word": "accoucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give birth", + "example_sentence_native": "Elle va accoucher le mois prochain.", + "example_sentence_english": "She is going to give birth next month.", + "pos": "verb", + "word_frequency": 9980 + }, + { + "word": "accéléré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accelerated", + "example_sentence_native": "Le film était en mode accéléré.", + "example_sentence_english": "The movie was in fast-forward mode.", + "pos": "adjective", + "word_frequency": 9981 + }, + { + "word": "admis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admitted", + "example_sentence_native": "Il a été admis à l'université.", + "example_sentence_english": "He was admitted to the university.", + "pos": "adjective", + "word_frequency": 9982 + }, + { + "word": "agonie", + "article_with_word": "l'agonie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agony", + "example_sentence_native": "Le patient était en pleine agonie.", + "example_sentence_english": "The patient was in agony.", + "pos": "noun", + "word_frequency": 9983 + }, + { + "word": "agréablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasantly", + "example_sentence_native": "Nous avons passé un moment agréablement.", + "example_sentence_english": "We had a pleasant time.", + "pos": "adverb", + "word_frequency": 9984 + }, + { + "word": "alliage", + "article_with_word": "l'alliage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alloy", + "example_sentence_native": "Cet anneau est fait d'un alliage d'or et de cuivre.", + "example_sentence_english": "This ring is made of an alloy of gold and copper.", + "pos": "noun", + "word_frequency": 9985 + }, + { + "word": "ambiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambient", + "example_sentence_native": "La température ambiante était agréable.", + "example_sentence_english": "The ambient temperature was pleasant.", + "pos": "adjective", + "word_frequency": 9986 + }, + { + "word": "amiante", + "article_with_word": "l'amiante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asbestos", + "example_sentence_native": "L'amiante est un matériau dangereux.", + "example_sentence_english": "Asbestos is a dangerous material.", + "pos": "noun", + "word_frequency": 9987 + }, + { + "word": "anse", + "article_with_word": "l'anse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handle", + "example_sentence_native": "La tasse a une anse cassée.", + "example_sentence_english": "The cup has a broken handle.", + "pos": "noun", + "word_frequency": 9988 + }, + { + "word": "apartheid", + "article_with_word": "l'apartheid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apartheid", + "example_sentence_native": "L'apartheid était un système de ségrégation raciale.", + "example_sentence_english": "Apartheid was a system of racial segregation.", + "pos": "noun", + "word_frequency": 9990 + }, + { + "word": "apparu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appeared", + "example_sentence_native": "Un nouveau problème est apparu.", + "example_sentence_english": "A new problem has appeared.", + "pos": "adjective", + "word_frequency": 9992 + }, + { + "word": "arrogant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogant", + "example_sentence_native": "Son attitude était très arrogante.", + "example_sentence_english": "His attitude was very arrogant.", + "pos": "adjective", + "word_frequency": 9995 + }, + { + "word": "attirance", + "article_with_word": "l'attirance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attraction", + "example_sentence_native": "Il y avait une forte attirance entre eux.", + "example_sentence_english": "There was a strong attraction between them.", + "pos": "noun", + "word_frequency": 9996 + }, + { + "word": "auditoire", + "article_with_word": "l'auditoire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audience", + "example_sentence_native": "L'orateur a captivé son auditoire.", + "example_sentence_english": "The speaker captivated his audience.", + "pos": "noun", + "word_frequency": 9998 + }, + { + "word": "berline", + "article_with_word": "la berline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sedan", + "example_sentence_native": "Il a acheté une nouvelle berline noire.", + "example_sentence_english": "He bought a new black sedan.", + "pos": "noun", + "word_frequency": 10001 + }, + { + "word": "bingo", + "article_with_word": "le bingo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bingo", + "example_sentence_native": "Nous avons joué au bingo hier soir.", + "example_sentence_english": "We played bingo last night.", + "pos": "noun", + "word_frequency": 10002 + }, + { + "word": "bouclé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curly", + "example_sentence_native": "Elle a les cheveux bouclés.", + "example_sentence_english": "She has curly hair.", + "pos": "adjective", + "word_frequency": 10004 + }, + { + "word": "bravoure", + "article_with_word": "la bravoure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bravery", + "example_sentence_native": "Sa bravoure sur le champ de bataille fut récompensée.", + "example_sentence_english": "His bravery on the battlefield was rewarded.", + "pos": "noun", + "word_frequency": 10005 + }, + { + "word": "bélier", + "article_with_word": "le bélier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ram;Aries", + "example_sentence_native": "Le bélier est un signe astrologique.", + "example_sentence_english": "Aries is an astrological sign.", + "pos": "noun", + "word_frequency": 10006 + }, + { + "word": "capitole", + "article_with_word": "le Capitole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitol", + "example_sentence_native": "Le Capitole de Toulouse est un bâtiment emblématique.", + "example_sentence_english": "The Capitol of Toulouse is an emblematic building.", + "pos": "noun", + "word_frequency": 10009 + }, + { + "word": "carence", + "article_with_word": "la carence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficiency;lack", + "example_sentence_native": "Une carence en vitamines peut entraîner des problèmes de santé.", + "example_sentence_english": "A vitamin deficiency can lead to health problems.", + "pos": "noun", + "word_frequency": 10010 + }, + { + "word": "chuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall;to drop", + "example_sentence_native": "Les prix ont commencé à chuter.", + "example_sentence_english": "Prices started to fall.", + "pos": "verb", + "word_frequency": 10011 + }, + { + "word": "chuté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fallen;dropped", + "example_sentence_native": "Les feuilles chutées recouvrent le sol.", + "example_sentence_english": "The fallen leaves cover the ground.", + "pos": "adjective", + "word_frequency": 10012 + }, + { + "word": "clerc", + "article_with_word": "le clerc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clerk;cleric", + "example_sentence_native": "Autrefois, le clerc était souvent le seul à savoir lire et écrire dans un village.", + "example_sentence_english": "In the past, the clerk was often the only one who could read and write in a village.", + "pos": "noun", + "word_frequency": 10013 + }, + { + "word": "constaté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observed;noted", + "example_sentence_native": "Le problème constaté a été rapidement résolu.", + "example_sentence_english": "The observed problem was quickly resolved.", + "pos": "adjective", + "word_frequency": 10016 + }, + { + "word": "contraception", + "article_with_word": "la contraception", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraception", + "example_sentence_native": "La contraception est un sujet important en santé publique.", + "example_sentence_english": "Contraception is an important topic in public health.", + "pos": "noun", + "word_frequency": 10017 + }, + { + "word": "descendance", + "article_with_word": "la descendance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descendants;offspring", + "example_sentence_native": "Il n'a pas de descendance directe.", + "example_sentence_english": "He has no direct descendants.", + "pos": "noun", + "word_frequency": 10024 + }, + { + "word": "discernement", + "article_with_word": "le discernement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discernment;judgment", + "example_sentence_native": "Il a fait preuve d'un grand discernement dans cette affaire.", + "example_sentence_english": "He showed great discernment in this matter.", + "pos": "noun", + "word_frequency": 10025 + }, + { + "word": "douzième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twelfth", + "example_sentence_native": "C'est la douzième fois que je te le dis.", + "example_sentence_english": "This is the twelfth time I've told you.", + "pos": "numeral", + "word_frequency": 10027 + }, + { + "word": "déguster", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to taste;to savor", + "example_sentence_native": "Nous allons déguster ce bon vin.", + "example_sentence_english": "We are going to taste this good wine.", + "pos": "verb", + "word_frequency": 10028 + }, + { + "word": "dénommé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "named;called", + "example_sentence_native": "L'individu dénommé Jean Dupont est recherché.", + "example_sentence_english": "The individual named Jean Dupont is wanted.", + "pos": "adjective", + "word_frequency": 10029 + }, + { + "word": "dérogation", + "article_with_word": "la dérogation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derogation;exemption", + "example_sentence_native": "Il a obtenu une dérogation pour ne pas assister à la réunion.", + "example_sentence_english": "He obtained an exemption not to attend the meeting.", + "pos": "noun", + "word_frequency": 10030 + }, + { + "word": "effigie", + "article_with_word": "l'effigie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effigy;likeness", + "example_sentence_native": "La pièce de monnaie porte l'effigie du roi.", + "example_sentence_english": "The coin bears the effigy of the king.", + "pos": "noun", + "word_frequency": 10031 + }, + { + "word": "entrepreneuriat", + "article_with_word": "l'entrepreneuriat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrepreneurship", + "example_sentence_native": "L'entrepreneuriat est essentiel pour la croissance économique.", + "example_sentence_english": "Entrepreneurship is essential for economic growth.", + "pos": "noun", + "word_frequency": 10032 + }, + { + "word": "entrevoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to glimpse;to foresee", + "example_sentence_native": "J'ai pu entrevoir la solution au problème.", + "example_sentence_english": "I was able to glimpse the solution to the problem.", + "pos": "verb", + "word_frequency": 10033 + }, + { + "word": "exaction", + "article_with_word": "l'exaction", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "exaction;abuse", + "example_sentence_native": "Les exactions commises par le régime ont été dénoncées.", + "example_sentence_english": "The abuses committed by the regime were denounced.", + "pos": "noun", + "word_frequency": 10034 + }, + { + "word": "exercé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exercised;practiced", + "example_sentence_native": "Il est un professionnel très exercé dans son domaine.", + "example_sentence_english": "He is a very practiced professional in his field.", + "pos": "adjective", + "word_frequency": 10035 + }, + { + "word": "exploité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploited;operated", + "example_sentence_native": "Les ressources naturelles sont exploitées de manière durable.", + "example_sentence_english": "Natural resources are exploited sustainably.", + "pos": "adjective", + "word_frequency": 10036 + }, + { + "word": "fable", + "article_with_word": "la fable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fable;myth", + "example_sentence_native": "Les fables de La Fontaine sont très connues.", + "example_sentence_english": "La Fontaine's fables are very well known.", + "pos": "noun", + "word_frequency": 10037 + }, + { + "word": "fertile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fertile;productive", + "example_sentence_native": "Cette terre est très fertile pour l'agriculture.", + "example_sentence_english": "This land is very fertile for agriculture.", + "pos": "adjective", + "word_frequency": 10038 + }, + { + "word": "figurine", + "article_with_word": "la figurine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figurine;statuette", + "example_sentence_native": "Il collectionne les figurines de super-héros.", + "example_sentence_english": "He collects superhero figurines.", + "pos": "noun", + "word_frequency": 10039 + }, + { + "word": "forcement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "necessarily", + "example_sentence_native": "Il doit forcément y avoir une solution.", + "example_sentence_english": "There must necessarily be a solution.", + "pos": "adverb", + "word_frequency": 10040 + }, + { + "word": "gastro", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stomach flu", + "example_sentence_native": "J'ai attrapé la gastro ce week-end.", + "example_sentence_english": "I caught the stomach flu this weekend.", + "pos": "noun", + "word_frequency": 10042 + }, + { + "word": "grotesque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grotesque", + "example_sentence_native": "La situation était absolument grotesque.", + "example_sentence_english": "The situation was absolutely grotesque.", + "pos": "adjective", + "word_frequency": 10043 + }, + { + "word": "gâché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wasted", + "example_sentence_native": "La pluie a gâché notre pique-nique.", + "example_sentence_english": "The rain spoiled our picnic.", + "pos": "adjective", + "word_frequency": 10044 + }, + { + "word": "généalogie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genealogy", + "example_sentence_native": "Il s'intéresse à la généalogie de sa famille.", + "example_sentence_english": "He is interested in his family's genealogy.", + "pos": "noun", + "word_frequency": 10045 + }, + { + "word": "hémisphère", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemisphere", + "example_sentence_native": "Le cerveau humain est divisé en deux hémisphères.", + "example_sentence_english": "The human brain is divided into two hemispheres.", + "pos": "noun", + "word_frequency": 10047 + }, + { + "word": "héréditaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hereditary", + "example_sentence_native": "Cette maladie est héréditaire.", + "example_sentence_english": "This disease is hereditary.", + "pos": "adjective", + "word_frequency": 10048 + }, + { + "word": "incliner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incline", + "example_sentence_native": "Il a incliné la tête en signe de respect.", + "example_sentence_english": "He bowed his head as a sign of respect.", + "pos": "verb", + "word_frequency": 10049 + }, + { + "word": "inclusion", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusion", + "example_sentence_native": "L'inclusion est un principe important dans l'éducation moderne.", + "example_sentence_english": "Inclusion is an important principle in modern education.", + "pos": "noun", + "word_frequency": 10050 + }, + { + "word": "industrialisation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "industrialization", + "example_sentence_native": "L'industrialisation a transformé la société.", + "example_sentence_english": "Industrialization transformed society.", + "pos": "noun", + "word_frequency": 10051 + }, + { + "word": "inhabituel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusual", + "example_sentence_native": "C'est une situation inhabituelle.", + "example_sentence_english": "It's an unusual situation.", + "pos": "adjective", + "word_frequency": 10052 + }, + { + "word": "instituteur", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "primary school teacher", + "example_sentence_native": "L'instituteur a expliqué la leçon.", + "example_sentence_english": "The primary school teacher explained the lesson.", + "pos": "noun", + "word_frequency": 10053 + }, + { + "word": "intérieurement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inwardly", + "example_sentence_native": "Il souriait intérieurement.", + "example_sentence_english": "He smiled inwardly.", + "pos": "adverb", + "word_frequency": 10054 + }, + { + "word": "locomotive", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locomotive", + "example_sentence_native": "La locomotive tirait les wagons.", + "example_sentence_english": "The locomotive pulled the wagons.", + "pos": "noun", + "word_frequency": 10059 + }, + { + "word": "malentendu", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding", + "example_sentence_native": "Il y a eu un malentendu entre eux.", + "example_sentence_english": "There was a misunderstanding between them.", + "pos": "noun", + "word_frequency": 10062 + }, + { + "word": "malien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Malian", + "example_sentence_native": "Il est d'origine malienne.", + "example_sentence_english": "He is of Malian origin.", + "pos": "adjective", + "word_frequency": 10063 + }, + { + "word": "melon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "melon", + "example_sentence_native": "J'adore manger du melon en été.", + "example_sentence_english": "I love eating melon in summer.", + "pos": "noun", + "word_frequency": 10066 + }, + { + "word": "mouvance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "movement", + "example_sentence_native": "Ce parti politique est dans une mouvance écologiste.", + "example_sentence_english": "This political party is in an ecological movement.", + "pos": "noun", + "word_frequency": 10067 + }, + { + "word": "normalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standardization", + "example_sentence_native": "La normalisation des procédures est essentielle.", + "example_sentence_english": "The standardization of procedures is essential.", + "pos": "noun", + "word_frequency": 10073 + }, + { + "word": "penchant", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a fondness", + "example_sentence_native": "Il a un penchant pour les arts.", + "example_sentence_english": "He has a fondness for the arts.", + "pos": "noun", + "word_frequency": 10076 + }, + { + "word": "pentagone", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pentagon", + "example_sentence_native": "Le Pentagone est le siège du département de la Défense des États-Unis.", + "example_sentence_english": "The Pentagon is the headquarters of the United States Department of Defense.", + "pos": "noun", + "word_frequency": 10077 + }, + { + "word": "physiologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiology", + "example_sentence_native": "L'étude de la physiologie humaine est complexe.", + "example_sentence_english": "The study of human physiology is complex.", + "pos": "noun", + "word_frequency": 10078 + }, + { + "word": "pillage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looting", + "example_sentence_native": "Le pillage des œuvres d'art est un crime.", + "example_sentence_english": "The looting of artworks is a crime.", + "pos": "noun", + "word_frequency": 10079 + }, + { + "word": "pion", + "article_with_word": "le pion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pawn;token", + "example_sentence_native": "Chaque joueur déplace ses pions sur l'échiquier.", + "example_sentence_english": "Each player moves their pawns on the chessboard.", + "pos": "noun", + "word_frequency": 10080 + }, + { + "word": "pittoresque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picturesque", + "example_sentence_native": "Ce village est très pittoresque avec ses maisons colorées.", + "example_sentence_english": "This village is very picturesque with its colorful houses.", + "pos": "adjective", + "word_frequency": 10081 + }, + { + "word": "plaqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plated;tackled", + "example_sentence_native": "Il portait une bague en argent plaqué or.", + "example_sentence_english": "He was wearing a gold-plated silver ring.", + "pos": "adjective", + "word_frequency": 10082 + }, + { + "word": "pli", + "article_with_word": "le pli", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fold;crease;envelope", + "example_sentence_native": "Fais attention à ne pas faire de pli sur cette carte.", + "example_sentence_english": "Be careful not to make a fold on this map.", + "pos": "noun", + "word_frequency": 10083 + }, + { + "word": "poussé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advanced;thorough;pushed", + "example_sentence_native": "Il a fait une analyse très poussée du problème.", + "example_sentence_english": "He conducted a very thorough analysis of the problem.", + "pos": "adjective", + "word_frequency": 10084 + }, + { + "word": "prodige", + "article_with_word": "le prodige", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prodigy;marvel", + "example_sentence_native": "Ce jeune musicien est un véritable prodige.", + "example_sentence_english": "This young musician is a true prodigy.", + "pos": "noun", + "word_frequency": 10086 + }, + { + "word": "projecteur", + "article_with_word": "le projecteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projector;spotlight", + "example_sentence_native": "Les projecteurs ont éclairé la scène.", + "example_sentence_english": "The spotlights illuminated the stage.", + "pos": "noun", + "word_frequency": 10087 + }, + { + "word": "rabbin", + "article_with_word": "le rabbin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabbi", + "example_sentence_native": "Le rabbin a prononcé un sermon inspirant.", + "example_sentence_english": "The rabbi delivered an inspiring sermon.", + "pos": "noun", + "word_frequency": 10088 + }, + { + "word": "raie", + "article_with_word": "la raie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stripe;ray (fish);parting (hair)", + "example_sentence_native": "J'ai vu une raie manta lors de ma plongée.", + "example_sentence_english": "I saw a manta ray during my dive.", + "pos": "noun", + "word_frequency": 10089 + }, + { + "word": "remorque", + "article_with_word": "la remorque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer", + "example_sentence_native": "Il a attaché la remorque à sa voiture.", + "example_sentence_english": "He attached the trailer to his car.", + "pos": "noun", + "word_frequency": 10090 + }, + { + "word": "riposte", + "article_with_word": "la riposte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "riposte;counter-attack;retort", + "example_sentence_native": "Sa riposte fut rapide et efficace.", + "example_sentence_english": "His riposte was quick and effective.", + "pos": "noun", + "word_frequency": 10091 + }, + { + "word": "réjoui", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joyful;delighted", + "example_sentence_native": "Il avait l'air très réjoui de la nouvelle.", + "example_sentence_english": "He looked very joyful about the news.", + "pos": "adjective", + "word_frequency": 10093 + }, + { + "word": "répit", + "article_with_word": "le répit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "respite;break", + "example_sentence_native": "Nous avons enfin eu un peu de répit après cette longue journée.", + "example_sentence_english": "We finally got some respite after this long day.", + "pos": "noun", + "word_frequency": 10094 + }, + { + "word": "semé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sown;scattered;fraught (with)", + "example_sentence_native": "Le chemin était semé d'obstacles.", + "example_sentence_english": "The path was fraught with obstacles.", + "pos": "adjective", + "word_frequency": 10096 + }, + { + "word": "soufre", + "article_with_word": "le soufre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sulfur", + "example_sentence_native": "Le soufre est un élément chimique.", + "example_sentence_english": "Sulfur is a chemical element.", + "pos": "noun", + "word_frequency": 10099 + }, + { + "word": "souscrit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subscribed;underwritten", + "example_sentence_native": "Les actions souscrites ont été vendues rapidement.", + "example_sentence_english": "The subscribed shares were sold quickly.", + "pos": "adjective", + "word_frequency": 10100 + }, + { + "word": "tourmente", + "article_with_word": "la tourmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "turmoil;blizzard;storm", + "example_sentence_native": "Le pays traverse une période de tourmente politique.", + "example_sentence_english": "The country is going through a period of political turmoil.", + "pos": "noun", + "word_frequency": 10103 + }, + { + "word": "transversal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transversal;cross-cutting", + "example_sentence_native": "C'est une approche transversale du problème.", + "example_sentence_english": "It's a transversal approach to the problem.", + "pos": "adjective", + "word_frequency": 10105 + }, + { + "word": "triangulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triangular", + "example_sentence_native": "La table a une forme triangulaire.", + "example_sentence_english": "The table has a triangular shape.", + "pos": "adjective", + "word_frequency": 10106 + }, + { + "word": "trompette", + "article_with_word": "la trompette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trumpet", + "example_sentence_native": "Il joue de la trompette dans un orchestre.", + "example_sentence_english": "He plays the trumpet in an orchestra.", + "pos": "noun", + "word_frequency": 10109 + }, + { + "word": "vaillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valiant;brave", + "example_sentence_native": "C'était un soldat vaillant et courageux.", + "example_sentence_english": "He was a valiant and courageous soldier.", + "pos": "adjective", + "word_frequency": 10112 + }, + { + "word": "vertueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virtuous", + "example_sentence_native": "Il est connu pour être un homme vertueux.", + "example_sentence_english": "He is known to be a virtuous man.", + "pos": "adjective", + "word_frequency": 10114 + }, + { + "word": "vertébral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vertebral", + "example_sentence_native": "La colonne vertébrale est essentielle pour le corps humain.", + "example_sentence_english": "The vertebral column is essential for the human body.", + "pos": "adjective", + "word_frequency": 10115 + }, + { + "word": "vinyle", + "article_with_word": "le vinyle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vinyl", + "example_sentence_native": "J'ai acheté un vieux disque en vinyle.", + "example_sentence_english": "I bought an old vinyl record.", + "pos": "noun", + "word_frequency": 10116 + }, + { + "word": "voilé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veiled;hazy;muffled", + "example_sentence_native": "Le ciel était voilé ce matin.", + "example_sentence_english": "The sky was hazy this morning.", + "pos": "adjective", + "word_frequency": 10117 + }, + { + "word": "voué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doomed;dedicated;destined", + "example_sentence_native": "Leur projet était voué à l'échec dès le début.", + "example_sentence_english": "Their project was doomed to failure from the start.", + "pos": "adjective", + "word_frequency": 10118 + }, + { + "word": "vrac", + "article_with_word": "le vrac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulk", + "example_sentence_native": "J'achète souvent des céréales en vrac pour réduire les déchets.", + "example_sentence_english": "I often buy cereals in bulk to reduce waste.", + "pos": "noun", + "word_frequency": 10119 + }, + { + "word": "échappement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhaust (system);escape", + "example_sentence_native": "Le mécanicien a réparé le système d'échappement de la voiture.", + "example_sentence_english": "The mechanic repaired the car's exhaust system.", + "pos": "noun", + "word_frequency": 10125 + }, + { + "word": "éclaircir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clarify;to thin out", + "example_sentence_native": "Pouvez-vous éclaircir ce point pour moi?", + "example_sentence_english": "Can you clarify this point for me?", + "pos": "verb", + "word_frequency": 10126 + }, + { + "word": "écrasant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelming;crushing", + "example_sentence_native": "La pression était écrasante.", + "example_sentence_english": "The pressure was overwhelming.", + "pos": "adjective", + "word_frequency": 10127 + }, + { + "word": "éloignement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remoteness;distance;estrangement", + "example_sentence_native": "L'éloignement de sa famille lui pesait.", + "example_sentence_english": "The distance from his family weighed on him.", + "pos": "noun", + "word_frequency": 10128 + }, + { + "word": "épouvantable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dreadful;terrible;appalling", + "example_sentence_native": "Le temps était épouvantable hier.", + "example_sentence_english": "The weather was dreadful yesterday.", + "pos": "adjective", + "word_frequency": 10129 + }, + { + "word": "activation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activation", + "example_sentence_native": "L'activation du système est automatique.", + "example_sentence_english": "The system's activation is automatic.", + "pos": "noun", + "word_frequency": 10130 + }, + { + "word": "activiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activist", + "example_sentence_native": "Elle est une activiste pour les droits des animaux.", + "example_sentence_english": "She is an animal rights activist.", + "pos": "noun", + "word_frequency": 10131 + }, + { + "word": "administré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administered;managed", + "example_sentence_native": "Le territoire est administré par le gouvernement local.", + "example_sentence_english": "The territory is administered by the local government.", + "pos": "adjective", + "word_frequency": 10132 + }, + { + "word": "adrénaline", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adrenaline", + "example_sentence_native": "La course a provoqué une montée d'adrénaline.", + "example_sentence_english": "The race caused an adrenaline rush.", + "pos": "noun", + "word_frequency": 10133 + }, + { + "word": "affinité", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affinity;kinship", + "example_sentence_native": "Ils ont une grande affinité pour la musique classique.", + "example_sentence_english": "They have a great affinity for classical music.", + "pos": "noun", + "word_frequency": 10134 + }, + { + "word": "amplitude", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amplitude;range;scope", + "example_sentence_native": "L'amplitude du mouvement était limitée.", + "example_sentence_english": "The amplitude of the movement was limited.", + "pos": "noun", + "word_frequency": 10135 + }, + { + "word": "aristocratie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aristocracy", + "example_sentence_native": "L'aristocratie jouait un rôle important dans la société d'autrefois.", + "example_sentence_english": "The aristocracy played an important role in society of old.", + "pos": "noun", + "word_frequency": 10136 + }, + { + "word": "asthme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asthma", + "example_sentence_native": "Il souffre d'asthme depuis son enfance.", + "example_sentence_english": "He has suffered from asthma since childhood.", + "pos": "noun", + "word_frequency": 10138 + }, + { + "word": "astronaute", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astronaut", + "example_sentence_native": "L'astronaute a marché sur la Lune.", + "example_sentence_english": "The astronaut walked on the Moon.", + "pos": "noun", + "word_frequency": 10139 + }, + { + "word": "athée", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atheist (adj);atheist (noun)", + "example_sentence_native": "Il se déclare athée.", + "example_sentence_english": "He declares himself an atheist.", + "pos": "adjective", + "word_frequency": 10140 + }, + { + "word": "balayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sweep", + "example_sentence_native": "Elle a balayé le sol de la cuisine.", + "example_sentence_english": "She swept the kitchen floor.", + "pos": "verb", + "word_frequency": 10142 + }, + { + "word": "bouchée", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mouthful;bite", + "example_sentence_native": "Prends une petite bouchée de ce gâteau.", + "example_sentence_english": "Take a small bite of this cake.", + "pos": "noun", + "word_frequency": 10147 + }, + { + "word": "bulgare", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bulgarian", + "example_sentence_native": "Elle parle bulgare couramment.", + "example_sentence_english": "She speaks Bulgarian fluently.", + "pos": "adjective", + "word_frequency": 10149 + }, + { + "word": "caste", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caste", + "example_sentence_native": "La société était divisée en castes.", + "example_sentence_english": "Society was divided into castes.", + "pos": "noun", + "word_frequency": 10151 + }, + { + "word": "changé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "changed", + "example_sentence_native": "Son attitude a beaucoup changé.", + "example_sentence_english": "His attitude has changed a lot.", + "pos": "adjective", + "word_frequency": 10153 + }, + { + "word": "charpentier", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpenter", + "example_sentence_native": "Le charpentier a construit la charpente du toit.", + "example_sentence_english": "The carpenter built the roof frame.", + "pos": "noun", + "word_frequency": 10154 + }, + { + "word": "cibler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to target;to aim at", + "example_sentence_native": "La campagne publicitaire cible les jeunes.", + "example_sentence_english": "The advertising campaign targets young people.", + "pos": "verb", + "word_frequency": 10156 + }, + { + "word": "combiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combined", + "example_sentence_native": "Les efforts combinés ont mené au succès.", + "example_sentence_english": "The combined efforts led to success.", + "pos": "adjective", + "word_frequency": 10157 + }, + { + "word": "concierge", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caretaker;doorman;concierge", + "example_sentence_native": "Le concierge nous a ouvert la porte.", + "example_sentence_english": "The concierge opened the door for us.", + "pos": "noun", + "word_frequency": 10159 + }, + { + "word": "conclu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concluded", + "example_sentence_native": "La décision est conclue.", + "example_sentence_english": "The decision is concluded.", + "pos": "adjective", + "word_frequency": 10160 + }, + { + "word": "corbeau", + "article_with_word": "le corbeau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crow;raven", + "example_sentence_native": "Un corbeau s'est posé sur la branche.", + "example_sentence_english": "A crow landed on the branch.", + "pos": "noun", + "word_frequency": 10162 + }, + { + "word": "couronnement", + "article_with_word": "le couronnement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coronation;crowning", + "example_sentence_native": "Le couronnement du roi fut un événement grandiose.", + "example_sentence_english": "The king's coronation was a grand event.", + "pos": "noun", + "word_frequency": 10163 + }, + { + "word": "crosse", + "article_with_word": "la crosse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butt (of a rifle);stick (hockey;lacrosse)", + "example_sentence_native": "Il tenait fermement la crosse de son fusil.", + "example_sentence_english": "He firmly held the butt of his rifle.", + "pos": "noun", + "word_frequency": 10164 + }, + { + "word": "cône", + "article_with_word": "le cône", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cone", + "example_sentence_native": "Le glacier a servi la glace dans un cône.", + "example_sentence_english": "The ice cream shop served the ice cream in a cone.", + "pos": "noun", + "word_frequency": 10166 + }, + { + "word": "dinde", + "article_with_word": "la dinde", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turkey (female bird or meat)", + "example_sentence_native": "Nous avons mangé de la dinde pour Noël.", + "example_sentence_english": "We ate turkey for Christmas.", + "pos": "noun", + "word_frequency": 10171 + }, + { + "word": "disciplinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disciplinary", + "example_sentence_native": "Il a reçu une sanction disciplinaire.", + "example_sentence_english": "He received a disciplinary sanction.", + "pos": "adjective", + "word_frequency": 10172 + }, + { + "word": "dispense", + "article_with_word": "la dispense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemption;dispensation", + "example_sentence_native": "Il a obtenu une dispense de cours.", + "example_sentence_english": "He obtained an exemption from classes.", + "pos": "noun", + "word_frequency": 10173 + }, + { + "word": "diversification", + "article_with_word": "la diversification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diversification", + "example_sentence_native": "L'entreprise vise la diversification de ses activités.", + "example_sentence_english": "The company aims for the diversification of its activities.", + "pos": "noun", + "word_frequency": 10174 + }, + { + "word": "débouché", + "article_with_word": "le débouché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outlet;opportunity;career prospect", + "example_sentence_native": "Ce diplôme offre de nombreux débouchés.", + "example_sentence_english": "This diploma offers many career opportunities.", + "pos": "noun", + "word_frequency": 10176 + }, + { + "word": "démenti", + "article_with_word": "le démenti", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denial;refutation", + "example_sentence_native": "Le gouvernement a publié un démenti officiel.", + "example_sentence_english": "The government issued an official denial.", + "pos": "noun", + "word_frequency": 10177 + }, + { + "word": "déposition", + "article_with_word": "la déposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deposition;testimony;statement", + "example_sentence_native": "Le témoin a fait une déposition devant le juge.", + "example_sentence_english": "The witness made a deposition before the judge.", + "pos": "noun", + "word_frequency": 10178 + }, + { + "word": "dévotion", + "article_with_word": "la dévotion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devotion", + "example_sentence_native": "Sa dévotion à sa famille est admirable.", + "example_sentence_english": "His devotion to his family is admirable.", + "pos": "noun", + "word_frequency": 10179 + }, + { + "word": "entraide", + "article_with_word": "l'entraide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutual aid;mutual assistance", + "example_sentence_native": "L'entraide est essentielle dans cette communauté.", + "example_sentence_english": "Mutual aid is essential in this community.", + "pos": "noun", + "word_frequency": 10180 + }, + { + "word": "ethnie", + "article_with_word": "l'ethnie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnic group;ethnicity", + "example_sentence_native": "Le pays est composé de plusieurs ethnies.", + "example_sentence_english": "The country is composed of several ethnic groups.", + "pos": "noun", + "word_frequency": 10181 + }, + { + "word": "facial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facial", + "example_sentence_native": "Elle a fait un masque facial.", + "example_sentence_english": "She did a facial mask.", + "pos": "adjective", + "word_frequency": 10182 + }, + { + "word": "faiblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakly;faintly", + "example_sentence_native": "Il a faiblement répondu à la question.", + "example_sentence_english": "He weakly answered the question.", + "pos": "adverb", + "word_frequency": 10183 + }, + { + "word": "fascination", + "article_with_word": "la fascination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fascination", + "example_sentence_native": "Sa fascination pour les étoiles est immense.", + "example_sentence_english": "His fascination with stars is immense.", + "pos": "noun", + "word_frequency": 10184 + }, + { + "word": "figuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "figurative;metaphorical", + "example_sentence_native": "C'est une expression au sens figuré.", + "example_sentence_english": "It's an expression with a figurative meaning.", + "pos": "adjective", + "word_frequency": 10185 + }, + { + "word": "flacon", + "article_with_word": "le flacon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottle;vial;flask", + "example_sentence_native": "Elle a acheté un petit flacon de parfum.", + "example_sentence_english": "She bought a small bottle of perfume.", + "pos": "noun", + "word_frequency": 10187 + }, + { + "word": "floraison", + "article_with_word": "la floraison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flowering;blooming;blossom", + "example_sentence_native": "La floraison des cerisiers est magnifique au printemps.", + "example_sentence_english": "The cherry blossom is magnificent in spring.", + "pos": "noun", + "word_frequency": 10188 + }, + { + "word": "fortification", + "article_with_word": "la fortification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortification", + "example_sentence_native": "Les anciennes fortifications protégeaient la ville.", + "example_sentence_english": "The old fortifications protected the city.", + "pos": "noun", + "word_frequency": 10190 + }, + { + "word": "géométrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geometric", + "example_sentence_native": "Il a dessiné des formes géométriques.", + "example_sentence_english": "He drew geometric shapes.", + "pos": "adjective", + "word_frequency": 10193 + }, + { + "word": "habillement", + "article_with_word": "l'habillement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clothing;apparel", + "example_sentence_native": "Le magasin propose un large choix d'habillement.", + "example_sentence_english": "The store offers a wide choice of clothing.", + "pos": "noun", + "word_frequency": 10194 + }, + { + "word": "halal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "halal (permissible in Islam)", + "example_sentence_native": "Cette viande est certifiée halal.", + "example_sentence_english": "This meat is certified halal.", + "pos": "adjective", + "word_frequency": 10195 + }, + { + "word": "illustré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illustrated", + "example_sentence_native": "Ce livre est magnifiquement illustré.", + "example_sentence_english": "This book is beautifully illustrated.", + "pos": "adjective", + "word_frequency": 10200 + }, + { + "word": "immonde", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "filthy;vile", + "example_sentence_native": "L'odeur était immonde.", + "example_sentence_english": "The smell was filthy.", + "pos": "adjective", + "word_frequency": 10201 + }, + { + "word": "impitoyable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merciless;ruthless", + "example_sentence_native": "Il a montré une détermination impitoyable.", + "example_sentence_english": "He showed a merciless determination.", + "pos": "adjective", + "word_frequency": 10202 + }, + { + "word": "imprimeur", + "article_with_word": "l'imprimeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "printer (person)", + "example_sentence_native": "L'imprimeur a livré les brochures à temps.", + "example_sentence_english": "The printer delivered the brochures on time.", + "pos": "noun", + "word_frequency": 10203 + }, + { + "word": "impuissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerless;helpless", + "example_sentence_native": "Il se sentait impuissant face à la situation.", + "example_sentence_english": "He felt powerless in the face of the situation.", + "pos": "adjective", + "word_frequency": 10204 + }, + { + "word": "incomparable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incomparable;unmatched", + "example_sentence_native": "Sa beauté est incomparable.", + "example_sentence_english": "Her beauty is incomparable.", + "pos": "adjective", + "word_frequency": 10205 + }, + { + "word": "ingérence", + "article_with_word": "l'ingérence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interference", + "example_sentence_native": "Toute ingérence étrangère est inacceptable.", + "example_sentence_english": "Any foreign interference is unacceptable.", + "pos": "noun", + "word_frequency": 10207 + }, + { + "word": "inversé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inverted;reversed", + "example_sentence_native": "L'ordre des mots est inversé.", + "example_sentence_english": "The word order is reversed.", + "pos": "adjective", + "word_frequency": 10208 + }, + { + "word": "irruption", + "article_with_word": "l'irruption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irruption;sudden entry", + "example_sentence_native": "L'irruption de la police a surpris tout le monde.", + "example_sentence_english": "The police's sudden entry surprised everyone.", + "pos": "noun", + "word_frequency": 10209 + }, + { + "word": "islamophobie", + "article_with_word": "l'islamophobie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamophobia", + "example_sentence_native": "La lutte contre l'islamophobie est essentielle.", + "example_sentence_english": "The fight against Islamophobia is essential.", + "pos": "noun", + "word_frequency": 10210 + }, + { + "word": "longévité", + "article_with_word": "la longévité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longevity", + "example_sentence_native": "Le secret de sa longévité est son mode de vie sain.", + "example_sentence_english": "The secret to his longevity is his healthy lifestyle.", + "pos": "noun", + "word_frequency": 10216 + }, + { + "word": "lâcheté", + "article_with_word": "la lâcheté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cowardice", + "example_sentence_native": "Son acte de lâcheté a choqué tout le monde.", + "example_sentence_english": "His act of cowardice shocked everyone.", + "pos": "noun", + "word_frequency": 10217 + }, + { + "word": "législature", + "article_with_word": "la législature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislature;parliamentary term", + "example_sentence_native": "La nouvelle législature a commencé ses travaux.", + "example_sentence_english": "The new legislature has begun its work.", + "pos": "noun", + "word_frequency": 10218 + }, + { + "word": "maitrise", + "article_with_word": "la maîtrise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastery;control", + "example_sentence_native": "Il a une parfaite maîtrise de la langue française.", + "example_sentence_english": "He has a perfect mastery of the French language.", + "pos": "noun", + "word_frequency": 10219 + }, + { + "word": "malsain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unhealthy;unwholesome", + "example_sentence_native": "Cette nourriture est malsaine.", + "example_sentence_english": "This food is unhealthy.", + "pos": "adjective", + "word_frequency": 10220 + }, + { + "word": "marquise", + "article_with_word": "la marquise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marquise (noblewoman);awning", + "example_sentence_native": "La marquise est arrivée au bal.", + "example_sentence_english": "The marquise arrived at the ball.", + "pos": "noun", + "word_frequency": 10222 + }, + { + "word": "muraille", + "article_with_word": "la muraille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wall (large;defensive)", + "example_sentence_native": "Les murailles de la ville sont très anciennes.", + "example_sentence_english": "The city walls are very old.", + "pos": "noun", + "word_frequency": 10227 + }, + { + "word": "médiathèque", + "article_with_word": "la médiathèque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "media library", + "example_sentence_native": "J'emprunte des livres à la médiathèque.", + "example_sentence_english": "I borrow books from the media library.", + "pos": "noun", + "word_frequency": 10228 + }, + { + "word": "nomade", + "article_with_word": "le nomade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nomad", + "example_sentence_native": "Les nomades voyagent constamment.", + "example_sentence_english": "Nomads travel constantly.", + "pos": "noun", + "word_frequency": 10229 + }, + { + "word": "néfaste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmful;detrimental", + "example_sentence_native": "Le tabagisme a des effets néfastes sur la santé.", + "example_sentence_english": "Smoking has harmful effects on health.", + "pos": "adjective", + "word_frequency": 10231 + }, + { + "word": "négociant", + "article_with_word": "le négociant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchant;dealer", + "example_sentence_native": "Le négociant en vins a fait une bonne affaire.", + "example_sentence_english": "The wine merchant made a good deal.", + "pos": "noun", + "word_frequency": 10232 + }, + { + "word": "obscure", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obscure;dark", + "example_sentence_native": "L'histoire est un peu obscure.", + "example_sentence_english": "The story is a bit obscure.", + "pos": "adjective", + "word_frequency": 10234 + }, + { + "word": "opportun", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opportune;timely", + "example_sentence_native": "C'était le moment opportun pour agir.", + "example_sentence_english": "It was the opportune moment to act.", + "pos": "adjective", + "word_frequency": 10235 + }, + { + "word": "optimal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimal", + "example_sentence_native": "Nous cherchons la solution optimale.", + "example_sentence_english": "We are looking for the optimal solution.", + "pos": "adjective", + "word_frequency": 10236 + }, + { + "word": "ottoman", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ottoman", + "example_sentence_native": "L'Empire ottoman a duré plusieurs siècles.", + "example_sentence_english": "The Ottoman Empire lasted several centuries.", + "pos": "adjective", + "word_frequency": 10237 + }, + { + "word": "photographier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to photograph", + "example_sentence_native": "J'aime photographier les paysages.", + "example_sentence_english": "I like to photograph landscapes.", + "pos": "verb", + "word_frequency": 10242 + }, + { + "word": "professionnalisme", + "article_with_word": "le professionnalisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professionalism", + "example_sentence_native": "Son professionnalisme est exemplaire.", + "example_sentence_english": "His professionalism is exemplary.", + "pos": "noun", + "word_frequency": 10244 + }, + { + "word": "préambule", + "article_with_word": "le préambule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preamble", + "example_sentence_native": "Le préambule de la Constitution est important.", + "example_sentence_english": "The preamble to the Constitution is important.", + "pos": "noun", + "word_frequency": 10245 + }, + { + "word": "précurseur", + "article_with_word": "le précurseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precursor", + "example_sentence_native": "Il était un précurseur dans son domaine.", + "example_sentence_english": "He was a precursor in his field.", + "pos": "noun", + "word_frequency": 10246 + }, + { + "word": "pulsion", + "article_with_word": "la pulsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drive;impulse", + "example_sentence_native": "Les pulsions humaines sont complexes.", + "example_sentence_english": "Human drives are complex.", + "pos": "noun", + "word_frequency": 10247 + }, + { + "word": "renseigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informed;knowledgeable", + "example_sentence_native": "Il est très renseigné sur le sujet.", + "example_sentence_english": "He is very informed on the subject.", + "pos": "adjective", + "word_frequency": 10250 + }, + { + "word": "rédigé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drafted;written", + "example_sentence_native": "Le rapport a été rédigé avec soin.", + "example_sentence_english": "The report was carefully drafted.", + "pos": "adjective", + "word_frequency": 10255 + }, + { + "word": "rémunéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paid;remunerated", + "example_sentence_native": "Ce travail est bien rémunéré.", + "example_sentence_english": "This job is well paid.", + "pos": "adjective", + "word_frequency": 10256 + }, + { + "word": "révisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revised;reviewed", + "example_sentence_native": "Le texte a été révisé plusieurs fois.", + "example_sentence_english": "The text has been revised several times.", + "pos": "adjective", + "word_frequency": 10257 + }, + { + "word": "sacrement", + "article_with_word": "le sacrement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacrament", + "example_sentence_native": "Le mariage est un sacrement important pour beaucoup.", + "example_sentence_english": "Marriage is an important sacrament for many.", + "pos": "noun", + "word_frequency": 10259 + }, + { + "word": "sanctionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanctioned;penalized", + "example_sentence_native": "Son comportement a été sanctionné.", + "example_sentence_english": "His behavior was sanctioned.", + "pos": "adjective", + "word_frequency": 10262 + }, + { + "word": "sillage", + "article_with_word": "le sillage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wake (of a boat);trail", + "example_sentence_native": "Le bateau laissait un long sillage derrière lui.", + "example_sentence_english": "The boat left a long wake behind it.", + "pos": "noun", + "word_frequency": 10265 + }, + { + "word": "soulagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relieved", + "example_sentence_native": "J'étais soulagé d'apprendre la bonne nouvelle.", + "example_sentence_english": "I was relieved to hear the good news.", + "pos": "adjective", + "word_frequency": 10266 + }, + { + "word": "stupéfiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stupefying;astonishing", + "example_sentence_native": "C'était un spectacle stupéfiant.", + "example_sentence_english": "It was an astonishing spectacle.", + "pos": "adjective", + "word_frequency": 10267 + }, + { + "word": "substitut", + "article_with_word": "le substitut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute", + "example_sentence_native": "Il a agi comme substitut du directeur.", + "example_sentence_english": "He acted as a substitute for the director.", + "pos": "noun", + "word_frequency": 10268 + }, + { + "word": "suicidaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicidal", + "example_sentence_native": "Il avait des pensées suicidaires.", + "example_sentence_english": "He had suicidal thoughts.", + "pos": "adjective", + "word_frequency": 10269 + }, + { + "word": "symboliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to symbolize", + "example_sentence_native": "La colombe symbolise la paix.", + "example_sentence_english": "The dove symbolizes peace.", + "pos": "verb", + "word_frequency": 10270 + }, + { + "word": "tactile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tactile;touch-sensitive", + "example_sentence_native": "L'écran tactile est très réactif.", + "example_sentence_english": "The touch screen is very responsive.", + "pos": "adjective", + "word_frequency": 10271 + }, + { + "word": "toulousain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Toulouse", + "example_sentence_native": "Il est d'origine toulousaine.", + "example_sentence_english": "He is of Toulousain origin.", + "pos": "adjective", + "word_frequency": 10274 + }, + { + "word": "trompé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deceived;mistaken", + "example_sentence_native": "Je me suis trompé de chemin.", + "example_sentence_english": "I took the wrong path.", + "pos": "adjective", + "word_frequency": 10275 + }, + { + "word": "turquoise", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turquoise", + "example_sentence_native": "La mer était d'un bleu turquoise.", + "example_sentence_english": "The sea was a turquoise blue.", + "pos": "adjective", + "word_frequency": 10276 + }, + { + "word": "ultérieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsequent;later", + "example_sentence_native": "Nous discuterons des détails ultérieurement.", + "example_sentence_english": "We will discuss the details later.", + "pos": "adjective", + "word_frequency": 10277 + }, + { + "word": "virement", + "article_with_word": "le virement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bank transfer", + "example_sentence_native": "J'ai effectué un virement bancaire.", + "example_sentence_english": "I made a bank transfer.", + "pos": "noun", + "word_frequency": 10279 + }, + { + "word": "élargi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enlarged", + "example_sentence_native": "Le champ de vision est élargi.", + "example_sentence_english": "The field of vision is enlarged.", + "pos": "adjective", + "word_frequency": 10286 + }, + { + "word": "émigration", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emigration", + "example_sentence_native": "L'émigration est un phénomène mondial.", + "example_sentence_english": "Emigration is a global phenomenon.", + "pos": "noun", + "word_frequency": 10288 + }, + { + "word": "ému", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moved (emotionally)", + "example_sentence_native": "Elle était très émue par le discours.", + "example_sentence_english": "She was very moved by the speech.", + "pos": "adjective", + "word_frequency": 10290 + }, + { + "word": "épanouissement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fulfillment", + "example_sentence_native": "Le travail contribue à son épanouissement personnel.", + "example_sentence_english": "Work contributes to his personal fulfillment.", + "pos": "noun", + "word_frequency": 10291 + }, + { + "word": "équivalence", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalence", + "example_sentence_native": "Il n'y a pas d'équivalence exacte entre les deux termes.", + "example_sentence_english": "There is no exact equivalence between the two terms.", + "pos": "noun", + "word_frequency": 10292 + }, + { + "word": "évidement", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hollowing out", + "example_sentence_native": "L'évidement dans le bois était parfait.", + "example_sentence_english": "The hollowing out in the wood was perfect.", + "pos": "noun", + "word_frequency": 10293 + }, + { + "word": "abattoir", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slaughterhouse", + "example_sentence_native": "La viande provient d'un abattoir local.", + "example_sentence_english": "The meat comes from a local slaughterhouse.", + "pos": "noun", + "word_frequency": 10294 + }, + { + "word": "aboutissement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outcome", + "example_sentence_native": "Ce projet est l'aboutissement de nombreuses années de travail.", + "example_sentence_english": "This project is the culmination of many years of work.", + "pos": "noun", + "word_frequency": 10295 + }, + { + "word": "additionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additional", + "example_sentence_native": "Nous avons besoin d'informations additionnelles.", + "example_sentence_english": "We need additional information.", + "pos": "adjective", + "word_frequency": 10296 + }, + { + "word": "administrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to administer", + "example_sentence_native": "Le médecin va administrer le traitement.", + "example_sentence_english": "The doctor will administer the treatment.", + "pos": "verb", + "word_frequency": 10297 + }, + { + "word": "adopté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adopted", + "example_sentence_native": "Le projet a été adopté à l'unanimité.", + "example_sentence_english": "The project was adopted unanimously.", + "pos": "adjective", + "word_frequency": 10298 + }, + { + "word": "archi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "very (prefix)", + "example_sentence_native": "C'est archi-faux ce que tu dis.", + "example_sentence_english": "What you're saying is absolutely false.", + "pos": "adjective", + "word_frequency": 10304 + }, + { + "word": "artisanal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artisanal", + "example_sentence_native": "Nous vendons des produits artisanaux.", + "example_sentence_english": "We sell handmade products.", + "pos": "adjective", + "word_frequency": 10305 + }, + { + "word": "assimilé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assimilated", + "example_sentence_native": "Il s'est bien assimilé à la culture locale.", + "example_sentence_english": "He has assimilated well into the local culture.", + "pos": "adjective", + "word_frequency": 10306 + }, + { + "word": "associatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "associative", + "example_sentence_native": "Il travaille dans le secteur associatif.", + "example_sentence_english": "He works in the community-based sector.", + "pos": "adjective", + "word_frequency": 10307 + }, + { + "word": "award", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "award", + "example_sentence_native": "Il a reçu un award pour son film.", + "example_sentence_english": "He received an award for his film.", + "pos": "noun", + "word_frequency": 10309 + }, + { + "word": "bise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kiss (on the cheek)", + "example_sentence_native": "On se fait la bise pour se saluer.", + "example_sentence_english": "We give each other a kiss on the cheek to greet.", + "pos": "noun", + "word_frequency": 10314 + }, + { + "word": "bouillir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to boil", + "example_sentence_native": "L'eau commence à bouillir.", + "example_sentence_english": "The water is starting to boil.", + "pos": "verb", + "word_frequency": 10316 + }, + { + "word": "bruyant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noisy", + "example_sentence_native": "Le quartier est très bruyant la nuit.", + "example_sentence_english": "The neighborhood is very noisy at night.", + "pos": "adjective", + "word_frequency": 10317 + }, + { + "word": "catch", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrestling", + "example_sentence_native": "Il aime regarder les matchs de catch.", + "example_sentence_english": "He likes to watch wrestling matches.", + "pos": "noun", + "word_frequency": 10318 + }, + { + "word": "caverne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cave", + "example_sentence_native": "Les explorateurs ont découvert une nouvelle caverne.", + "example_sentence_english": "The explorers discovered a new cave.", + "pos": "noun", + "word_frequency": 10319 + }, + { + "word": "chassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chased;driven out;expelled", + "example_sentence_native": "Les animaux chassés se sont cachés dans la forêt.", + "example_sentence_english": "The hunted animals hid in the forest.", + "pos": "adjective", + "word_frequency": 10321 + }, + { + "word": "chelou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weird;strange (slang)", + "example_sentence_native": "Ce film est vraiment chelou, je n'ai rien compris.", + "example_sentence_english": "This movie is really weird, I didn't understand anything.", + "pos": "adjective", + "word_frequency": 10322 + }, + { + "word": "choqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shocked", + "example_sentence_native": "J'étais choqué par la violence des images.", + "example_sentence_english": "I was shocked by the violence of the images.", + "pos": "adjective", + "word_frequency": 10324 + }, + { + "word": "collectionneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collector", + "example_sentence_native": "Mon oncle est un grand collectionneur de bandes dessinées.", + "example_sentence_english": "My uncle is a big comic book collector.", + "pos": "noun", + "word_frequency": 10326 + }, + { + "word": "colombe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dove;pigeon", + "example_sentence_native": "Une colombe s'est posée sur le rebord de la fenêtre.", + "example_sentence_english": "A dove landed on the windowsill.", + "pos": "noun", + "word_frequency": 10327 + }, + { + "word": "colombien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Colombian", + "example_sentence_native": "Elle a des origines colombiennes par sa mère.", + "example_sentence_english": "She has Colombian origins through her mother.", + "pos": "adjective", + "word_frequency": 10328 + }, + { + "word": "concessionnaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dealer (e.g.;car dealer);concessionaire", + "example_sentence_native": "Nous avons acheté notre nouvelle voiture chez un concessionnaire local.", + "example_sentence_english": "We bought our new car from a local dealer.", + "pos": "noun", + "word_frequency": 10329 + }, + { + "word": "conditionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conditional", + "example_sentence_native": "Le mode conditionnel est souvent utilisé pour exprimer la politesse.", + "example_sentence_english": "The conditional mood is often used to express politeness.", + "pos": "adjective", + "word_frequency": 10330 + }, + { + "word": "consenti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consented;agreed upon", + "example_sentence_native": "Le mariage doit être un acte libre et consenti.", + "example_sentence_english": "Marriage must be a free and consented act.", + "pos": "adjective", + "word_frequency": 10331 + }, + { + "word": "contrée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "region;land;country (often rural)", + "example_sentence_native": "Ils ont exploré des contrées lointaines et inconnues.", + "example_sentence_english": "They explored distant and unknown lands.", + "pos": "noun", + "word_frequency": 10332 + }, + { + "word": "cynisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cynicism", + "example_sentence_native": "Son cynisme est parfois difficile à supporter.", + "example_sentence_english": "His cynicism is sometimes hard to bear.", + "pos": "noun", + "word_frequency": 10333 + }, + { + "word": "devancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get ahead of;to outrun;to anticipate", + "example_sentence_native": "Il a réussi à devancer ses concurrents dans la course.", + "example_sentence_english": "He managed to get ahead of his competitors in the race.", + "pos": "verb", + "word_frequency": 10337 + }, + { + "word": "différentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "differential", + "example_sentence_native": "Le calcul différentiel est une branche importante des mathématiques.", + "example_sentence_english": "Differential calculus is an important branch of mathematics.", + "pos": "adjective", + "word_frequency": 10338 + }, + { + "word": "diversion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversion;distraction", + "example_sentence_native": "Ils ont créé une diversion pour s'échapper inaperçus.", + "example_sentence_english": "They created a diversion to escape unnoticed.", + "pos": "noun", + "word_frequency": 10339 + }, + { + "word": "dormant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleeping;dormant", + "example_sentence_native": "Le volcan est resté dormant pendant des siècles.", + "example_sentence_english": "The volcano remained dormant for centuries.", + "pos": "adjective", + "word_frequency": 10341 + }, + { + "word": "dégagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clear;unencumbered;relaxed", + "example_sentence_native": "Le ciel est dégagé et le soleil brille.", + "example_sentence_english": "The sky is clear and the sun is shining.", + "pos": "adjective", + "word_frequency": 10344 + }, + { + "word": "dégueu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgusting;gross (slang)", + "example_sentence_native": "Ce plat est vraiment dégueu, je ne peux pas le manger.", + "example_sentence_english": "This dish is really gross, I can't eat it.", + "pos": "adjective", + "word_frequency": 10345 + }, + { + "word": "démuni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destitute;deprived;helpless", + "example_sentence_native": "Les personnes démunies ont besoin de notre aide et de notre soutien.", + "example_sentence_english": "Destitute people need our help and support.", + "pos": "adjective", + "word_frequency": 10346 + }, + { + "word": "dépassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outdated;overwhelmed;surpassed", + "example_sentence_native": "Cette technologie est complètement dépassée de nos jours.", + "example_sentence_english": "This technology is completely outdated nowadays.", + "pos": "adjective", + "word_frequency": 10347 + }, + { + "word": "enfiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put on (clothes);to thread (a needle)", + "example_sentence_native": "Il a enfilé son manteau avant de sortir dans le froid.", + "example_sentence_english": "He put on his coat before going out in the cold.", + "pos": "verb", + "word_frequency": 10348 + }, + { + "word": "exactitude", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exactness;accuracy;precision", + "example_sentence_native": "Il a répondu à toutes les questions avec une grande exactitude.", + "example_sentence_english": "He answered all questions with great exactness.", + "pos": "noun", + "word_frequency": 10352 + }, + { + "word": "excursion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excursion;trip", + "example_sentence_native": "Nous avons fait une excursion mémorable à la campagne.", + "example_sentence_english": "We went on a memorable excursion to the countryside.", + "pos": "noun", + "word_frequency": 10353 + }, + { + "word": "extraterrestre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraterrestrial;alien", + "example_sentence_native": "Les scientifiques cherchent des signes de vie extraterrestre.", + "example_sentence_english": "Scientists are looking for signs of extraterrestrial life.", + "pos": "adjective", + "word_frequency": 10354 + }, + { + "word": "forage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drilling;boring (e.g.;for oil)", + "example_sentence_native": "Le forage pétrolier est une activité qui soulève des questions environnementales.", + "example_sentence_english": "Oil drilling is an activity that raises environmental concerns.", + "pos": "noun", + "word_frequency": 10358 + }, + { + "word": "formateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trainer;instructor", + "example_sentence_native": "Le formateur a expliqué les nouvelles procédures de sécurité.", + "example_sentence_english": "The trainer explained the new safety procedures.", + "pos": "noun", + "word_frequency": 10359 + }, + { + "word": "galette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pancake;flat cake", + "example_sentence_native": "J'ai mangé une délicieuse galette bretonne.", + "example_sentence_english": "I ate a delicious Breton pancake.", + "pos": "noun", + "word_frequency": 10361 + }, + { + "word": "gaming", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaming", + "example_sentence_native": "Le gaming est devenu une industrie énorme.", + "example_sentence_english": "Gaming has become a huge industry.", + "pos": "noun", + "word_frequency": 10362 + }, + { + "word": "grue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crane (bird or machine)", + "example_sentence_native": "Une grue est utilisée pour soulever des charges lourdes sur le chantier.", + "example_sentence_english": "A crane is used to lift heavy loads on the construction site.", + "pos": "noun", + "word_frequency": 10363 + }, + { + "word": "guet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watch;lookout", + "example_sentence_native": "Ils ont monté la garde et fait le guet toute la nuit.", + "example_sentence_english": "They stood guard and kept watch all night.", + "pos": "noun", + "word_frequency": 10364 + }, + { + "word": "hate", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "haste;hurry", + "example_sentence_native": "Il a fait son travail avec hâte.", + "example_sentence_english": "He did his work with haste.", + "pos": "noun", + "word_frequency": 10367 + }, + { + "word": "hopital", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hospital", + "example_sentence_native": "Il a été transporté à l'hôpital après l'accident.", + "example_sentence_english": "He was transported to the hospital after the accident.", + "pos": "noun", + "word_frequency": 10370 + }, + { + "word": "horde", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horde;crowd", + "example_sentence_native": "Une horde de touristes a envahi la place.", + "example_sentence_english": "A horde of tourists invaded the square.", + "pos": "noun", + "word_frequency": 10371 + }, + { + "word": "héberger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to host;to accommodate", + "example_sentence_native": "Nous pouvons vous héberger pour la nuit.", + "example_sentence_english": "We can host you for the night.", + "pos": "verb", + "word_frequency": 10372 + }, + { + "word": "importé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imported", + "example_sentence_native": "Ces produits sont importés d'Italie.", + "example_sentence_english": "These products are imported from Italy.", + "pos": "adjective", + "word_frequency": 10373 + }, + { + "word": "incontestable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeniable;indisputable", + "example_sentence_native": "Son talent est incontestable.", + "example_sentence_english": "His talent is undeniable.", + "pos": "adjective", + "word_frequency": 10374 + }, + { + "word": "indéfini", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indefinite;undefined", + "example_sentence_native": "L'article indéfini est 'un' ou 'une'.", + "example_sentence_english": "The indefinite article is 'un' or 'une'.", + "pos": "adjective", + "word_frequency": 10375 + }, + { + "word": "initier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to initiate;to introduce", + "example_sentence_native": "Il a initié le projet l'année dernière.", + "example_sentence_english": "He initiated the project last year.", + "pos": "verb", + "word_frequency": 10376 + }, + { + "word": "innover", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to innovate", + "example_sentence_native": "Les entreprises doivent innover pour rester compétitives.", + "example_sentence_english": "Companies must innovate to remain competitive.", + "pos": "verb", + "word_frequency": 10377 + }, + { + "word": "instauré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "established;instituted", + "example_sentence_native": "De nouvelles règles ont été instaurées.", + "example_sentence_english": "New rules have been established.", + "pos": "adjective", + "word_frequency": 10378 + }, + { + "word": "intempérie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad weather;inclement weather", + "example_sentence_native": "Les intempéries ont causé des retards.", + "example_sentence_english": "The bad weather caused delays.", + "pos": "noun", + "word_frequency": 10380 + }, + { + "word": "messie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "messiah;savior", + "example_sentence_native": "Beaucoup attendaient l'arrivée du Messie.", + "example_sentence_english": "Many awaited the arrival of the Messiah.", + "pos": "noun", + "word_frequency": 10386 + }, + { + "word": "modo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderator (online)", + "example_sentence_native": "Le modo a supprimé le commentaire inapproprié.", + "example_sentence_english": "The moderator deleted the inappropriate comment.", + "pos": "noun", + "word_frequency": 10387 + }, + { + "word": "médiocrité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mediocrity", + "example_sentence_native": "Il refuse de se contenter de la médiocrité.", + "example_sentence_english": "He refuses to settle for mediocrity.", + "pos": "noun", + "word_frequency": 10388 + }, + { + "word": "nudité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nudity", + "example_sentence_native": "L'artiste a exploré le thème de la nudité dans ses œuvres.", + "example_sentence_english": "The artist explored the theme of nudity in his works.", + "pos": "noun", + "word_frequency": 10393 + }, + { + "word": "négation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "negation;denial", + "example_sentence_native": "La négation est exprimée par 'ne...pas'.", + "example_sentence_english": "Negation is expressed by 'ne...pas'.", + "pos": "noun", + "word_frequency": 10394 + }, + { + "word": "opaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opaque", + "example_sentence_native": "Le verre est opaque, on ne peut pas voir à travers.", + "example_sentence_english": "The glass is opaque, you cannot see through it.", + "pos": "adjective", + "word_frequency": 10395 + }, + { + "word": "pacha", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pasha (historical title)", + "example_sentence_native": "Le pacha était un haut dignitaire de l'Empire ottoman.", + "example_sentence_english": "The pasha was a high dignitary of the Ottoman Empire.", + "pos": "noun", + "word_frequency": 10396 + }, + { + "word": "paradigme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradigm", + "example_sentence_native": "Ce nouveau modèle représente un changement de paradigme.", + "example_sentence_english": "This new model represents a paradigm shift.", + "pos": "noun", + "word_frequency": 10397 + }, + { + "word": "parme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Parma violet (color)", + "example_sentence_native": "Elle portait une robe de couleur parme.", + "example_sentence_english": "She wore a Parma violet colored dress.", + "pos": "noun", + "word_frequency": 10398 + }, + { + "word": "paré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adorned;ready;prepared", + "example_sentence_native": "Nous sommes parés pour le départ.", + "example_sentence_english": "We are ready for departure.", + "pos": "adjective", + "word_frequency": 10399 + }, + { + "word": "penseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinker", + "example_sentence_native": "C'est un grand penseur de notre époque.", + "example_sentence_english": "He is a great thinker of our time.", + "pos": "noun", + "word_frequency": 10400 + }, + { + "word": "perfect", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfect", + "example_sentence_native": "Cette solution est parfaite.", + "example_sentence_english": "This solution is perfect.", + "pos": "adjective", + "word_frequency": 10402 + }, + { + "word": "pignon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gable;pinion", + "example_sentence_native": "La maison a un pignon sur rue.", + "example_sentence_english": "The house has a gable on the street.", + "pos": "noun", + "word_frequency": 10403 + }, + { + "word": "proprio", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owner (informal)", + "example_sentence_native": "J'ai parlé avec le proprio de l'appartement.", + "example_sentence_english": "I spoke with the owner of the apartment.", + "pos": "noun", + "word_frequency": 10404 + }, + { + "word": "radicalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalization", + "example_sentence_native": "La radicalisation est un phénomène complexe.", + "example_sentence_english": "Radicalization is a complex phenomenon.", + "pos": "noun", + "word_frequency": 10405 + }, + { + "word": "rajouté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "added;extra", + "example_sentence_native": "Il y a un paragraphe rajouté à la fin.", + "example_sentence_english": "There is an added paragraph at the end.", + "pos": "adjective", + "word_frequency": 10406 + }, + { + "word": "rareté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rarity;scarcity", + "example_sentence_native": "La rareté de l'eau est un problème mondial.", + "example_sentence_english": "Water scarcity is a global problem.", + "pos": "noun", + "word_frequency": 10407 + }, + { + "word": "rasoir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "razor", + "example_sentence_native": "J'ai acheté un nouveau rasoir électrique.", + "example_sentence_english": "I bought a new electric razor.", + "pos": "noun", + "word_frequency": 10408 + }, + { + "word": "rattrapé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caught up;recovered", + "example_sentence_native": "Le temps perdu est rattrapé.", + "example_sentence_english": "The lost time is recovered.", + "pos": "adjective", + "word_frequency": 10409 + }, + { + "word": "recommandé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommended;registered (mail)", + "example_sentence_native": "Ce livre est fortement recommandé.", + "example_sentence_english": "This book is highly recommended.", + "pos": "adjective", + "word_frequency": 10410 + }, + { + "word": "reculé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remote;set back", + "example_sentence_native": "Ils vivent dans un village très reculé.", + "example_sentence_english": "They live in a very remote village.", + "pos": "adjective", + "word_frequency": 10411 + }, + { + "word": "redescendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go back down;to descend", + "example_sentence_native": "Nous devons redescendre la montagne avant la nuit.", + "example_sentence_english": "We must go back down the mountain before night.", + "pos": "verb", + "word_frequency": 10412 + }, + { + "word": "remarqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noticed;remarkable", + "example_sentence_native": "Son talent est très remarqué.", + "example_sentence_english": "His talent is very noticed.", + "pos": "adjective", + "word_frequency": 10413 + }, + { + "word": "remplissage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filling;padding", + "example_sentence_native": "Le remplissage du formulaire prend du temps.", + "example_sentence_english": "Filling out the form takes time.", + "pos": "noun", + "word_frequency": 10414 + }, + { + "word": "robotique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "robotics", + "example_sentence_native": "La robotique est un domaine en pleine expansion.", + "example_sentence_english": "Robotics is a rapidly expanding field.", + "pos": "noun", + "word_frequency": 10415 + }, + { + "word": "scene", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scene;stage", + "example_sentence_native": "La scène du crime était chaotique.", + "example_sentence_english": "The crime scene was chaotic.", + "pos": "noun", + "word_frequency": 10418 + }, + { + "word": "selfie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selfie", + "example_sentence_native": "Elle a posté un selfie sur Instagram.", + "example_sentence_english": "She posted a selfie on Instagram.", + "pos": "noun", + "word_frequency": 10419 + }, + { + "word": "serveuse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waitress", + "example_sentence_native": "La serveuse nous a apporté nos boissons.", + "example_sentence_english": "The waitress brought us our drinks.", + "pos": "noun", + "word_frequency": 10420 + }, + { + "word": "soigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neat;well-groomed;careful", + "example_sentence_native": "Il a une écriture très soignée.", + "example_sentence_english": "He has very neat handwriting.", + "pos": "adjective", + "word_frequency": 10422 + }, + { + "word": "songer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dream;to ponder;to think of", + "example_sentence_native": "Je songe à changer de carrière.", + "example_sentence_english": "I am thinking of changing careers.", + "pos": "verb", + "word_frequency": 10423 + }, + { + "word": "stadium", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stadium", + "example_sentence_native": "Le nouveau stadium est impressionnant.", + "example_sentence_english": "The new stadium is impressive.", + "pos": "noun", + "word_frequency": 10424 + }, + { + "word": "string", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "string;thong", + "example_sentence_native": "Elle portait un maillot de bain string.", + "example_sentence_english": "She was wearing a string swimsuit.", + "pos": "noun", + "word_frequency": 10425 + }, + { + "word": "subi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffered;undergone", + "example_sentence_native": "Les changements subis par l'entreprise sont importants.", + "example_sentence_english": "The changes undergone by the company are significant.", + "pos": "adjective", + "word_frequency": 10426 + }, + { + "word": "substituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to substitute;to replace", + "example_sentence_native": "Il faut substituer le sucre par un édulcorant.", + "example_sentence_english": "Sugar must be substituted with a sweetener.", + "pos": "verb", + "word_frequency": 10427 + }, + { + "word": "tata", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "auntie (informal)", + "example_sentence_native": "Ma tata vient nous rendre visite.", + "example_sentence_english": "My auntie is coming to visit us.", + "pos": "noun", + "word_frequency": 10429 + }, + { + "word": "torturé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tortured;tormented", + "example_sentence_native": "C'est un esprit torturé.", + "example_sentence_english": "He has a tormented mind.", + "pos": "adjective", + "word_frequency": 10430 + }, + { + "word": "town", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "town (often used in 'centre-ville')", + "example_sentence_native": "Le centre-ville est très animé.", + "example_sentence_english": "The town center is very lively.", + "pos": "noun", + "word_frequency": 10431 + }, + { + "word": "transféré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transferred", + "example_sentence_native": "Le joueur a été transféré dans une autre équipe.", + "example_sentence_english": "The player was transferred to another team.", + "pos": "adjective", + "word_frequency": 10432 + }, + { + "word": "tyran", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyrant", + "example_sentence_native": "Le peuple s'est révolté contre le tyran.", + "example_sentence_english": "The people revolted against the tyrant.", + "pos": "noun", + "word_frequency": 10433 + }, + { + "word": "tyrannie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyranny", + "example_sentence_native": "Ils ont lutté contre la tyrannie.", + "example_sentence_english": "They fought against tyranny.", + "pos": "noun", + "word_frequency": 10434 + }, + { + "word": "téléchargé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downloaded", + "example_sentence_native": "Le fichier téléchargé est corrompu.", + "example_sentence_english": "The downloaded file is corrupted.", + "pos": "adjective", + "word_frequency": 10435 + }, + { + "word": "télégramme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegram", + "example_sentence_native": "Il a reçu un télégramme urgent.", + "example_sentence_english": "He received an urgent telegram.", + "pos": "noun", + "word_frequency": 10436 + }, + { + "word": "tôle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheet metal;corrugated iron", + "example_sentence_native": "Le toit est fait de tôle ondulée.", + "example_sentence_english": "The roof is made of corrugated iron.", + "pos": "noun", + "word_frequency": 10437 + }, + { + "word": "vallon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valley;dale", + "example_sentence_native": "Le vallon était rempli de fleurs sauvages.", + "example_sentence_english": "The valley was filled with wild flowers.", + "pos": "noun", + "word_frequency": 10440 + }, + { + "word": "valve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valve", + "example_sentence_native": "La valve du pneu était défectueuse.", + "example_sentence_english": "The tire valve was defective.", + "pos": "noun", + "word_frequency": 10441 + }, + { + "word": "vigilant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vigilant;watchful", + "example_sentence_native": "Il est important de rester vigilant sur la route.", + "example_sentence_english": "It is important to remain vigilant on the road.", + "pos": "adjective", + "word_frequency": 10443 + }, + { + "word": "virée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outing;trip;spin", + "example_sentence_native": "On a fait une petite virée à la campagne ce week-end.", + "example_sentence_english": "We took a little trip to the countryside this weekend.", + "pos": "noun", + "word_frequency": 10444 + }, + { + "word": "watt", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watt", + "example_sentence_native": "Cette ampoule consomme 60 watts.", + "example_sentence_english": "This light bulb consumes 60 watts.", + "pos": "noun", + "word_frequency": 10445 + }, + { + "word": "zèle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zeal;enthusiasm", + "example_sentence_native": "Il a montré beaucoup de zèle dans son travail.", + "example_sentence_english": "He showed a lot of zeal in his work.", + "pos": "noun", + "word_frequency": 10449 + }, + { + "word": "éclairé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lit;enlightened;informed", + "example_sentence_native": "La pièce était bien éclairée.", + "example_sentence_english": "The room was well lit.", + "pos": "adjective", + "word_frequency": 10450 + }, + { + "word": "écolier", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "schoolboy;schoolgirl;pupil", + "example_sentence_native": "L'écolier a fait ses devoirs.", + "example_sentence_english": "The schoolboy did his homework.", + "pos": "noun", + "word_frequency": 10451 + }, + { + "word": "écolo", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmentalist (informal);greenie", + "example_sentence_native": "Mon voisin est un vrai écolo.", + "example_sentence_english": "My neighbor is a real environmentalist.", + "pos": "noun", + "word_frequency": 10452 + }, + { + "word": "égout", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sewer;drain", + "example_sentence_native": "Les égouts de la ville sont en bon état.", + "example_sentence_english": "The city's sewers are in good condition.", + "pos": "noun", + "word_frequency": 10453 + }, + { + "word": "abattage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slaughter;felling;demolition", + "example_sentence_native": "L'abattage des arbres est réglementé.", + "example_sentence_english": "The felling of trees is regulated.", + "pos": "noun", + "word_frequency": 10454 + }, + { + "word": "absorbé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorbed;engrossed", + "example_sentence_native": "Il était complètement absorbé par son livre.", + "example_sentence_english": "He was completely absorbed in his book.", + "pos": "adjective", + "word_frequency": 10456 + }, + { + "word": "academy", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "academy", + "example_sentence_native": "Il étudie à l'Académie des Beaux-Arts.", + "example_sentence_english": "He studies at the Academy of Fine Arts.", + "pos": "noun", + "word_frequency": 10457 + }, + { + "word": "accélérateur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accelerator", + "example_sentence_native": "Appuyez sur l'accélérateur pour aller plus vite.", + "example_sentence_english": "Press the accelerator to go faster.", + "pos": "noun", + "word_frequency": 10458 + }, + { + "word": "affilié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affiliated", + "example_sentence_native": "L'entreprise est affiliée à un grand groupe.", + "example_sentence_english": "The company is affiliated with a large group.", + "pos": "adjective", + "word_frequency": 10459 + }, + { + "word": "agiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake;to wave;to stir", + "example_sentence_native": "Il faut agiter la bouteille avant de servir.", + "example_sentence_english": "You must shake the bottle before serving.", + "pos": "verb", + "word_frequency": 10460 + }, + { + "word": "architectural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "architectural", + "example_sentence_native": "Ce bâtiment a une grande valeur architecturale.", + "example_sentence_english": "This building has great architectural value.", + "pos": "adjective", + "word_frequency": 10463 + }, + { + "word": "arménien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Armenian", + "example_sentence_native": "Il parle la langue arménienne.", + "example_sentence_english": "He speaks the Armenian language.", + "pos": "adjective", + "word_frequency": 10465 + }, + { + "word": "assomption", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assumption;Ascension (religious)", + "example_sentence_native": "L'Assomption est célébrée le 15 août.", + "example_sentence_english": "The Assumption is celebrated on August 15th.", + "pos": "noun", + "word_frequency": 10466 + }, + { + "word": "autographe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autograph", + "example_sentence_native": "J'ai demandé un autographe à mon acteur préféré.", + "example_sentence_english": "I asked my favorite actor for an autograph.", + "pos": "noun", + "word_frequency": 10467 + }, + { + "word": "bailleur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landlord;lessor", + "example_sentence_native": "Le bailleur a augmenté le loyer.", + "example_sentence_english": "The landlord increased the rent.", + "pos": "noun", + "word_frequency": 10468 + }, + { + "word": "beat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beat;rhythm", + "example_sentence_native": "J'aime le beat de cette chanson.", + "example_sentence_english": "I like the beat of this song.", + "pos": "noun", + "word_frequency": 10469 + }, + { + "word": "bit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bit (computing)", + "example_sentence_native": "Un octet est composé de huit bits.", + "example_sentence_english": "A byte is composed of eight bits.", + "pos": "noun", + "word_frequency": 10470 + }, + { + "word": "cargaison", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cargo;shipment", + "example_sentence_native": "La cargaison est arrivée au port.", + "example_sentence_english": "The cargo arrived at the port.", + "pos": "noun", + "word_frequency": 10471 + }, + { + "word": "caviar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caviar", + "example_sentence_native": "Le caviar est un mets de luxe.", + "example_sentence_english": "Caviar is a luxury food.", + "pos": "noun", + "word_frequency": 10473 + }, + { + "word": "cessation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cessation;stopping", + "example_sentence_native": "La cessation des hostilités a été annoncée.", + "example_sentence_english": "The cessation of hostilities was announced.", + "pos": "noun", + "word_frequency": 10475 + }, + { + "word": "charia", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sharia (Islamic law)", + "example_sentence_native": "La charia est un système de loi islamique.", + "example_sentence_english": "Sharia is a system of Islamic law.", + "pos": "noun", + "word_frequency": 10476 + }, + { + "word": "chateau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "castle;chateau", + "example_sentence_native": "Nous avons visité un magnifique château.", + "example_sentence_english": "We visited a magnificent castle.", + "pos": "noun", + "word_frequency": 10477 + }, + { + "word": "chimiste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemist", + "example_sentence_native": "Le chimiste travaille dans un laboratoire.", + "example_sentence_english": "The chemist works in a laboratory.", + "pos": "noun", + "word_frequency": 10478 + }, + { + "word": "cidre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cider", + "example_sentence_native": "J'aime boire du cidre en Normandie.", + "example_sentence_english": "I like to drink cider in Normandy.", + "pos": "noun", + "word_frequency": 10479 + }, + { + "word": "clim", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "air conditioning", + "example_sentence_native": "Il fait chaud, allume la clim.", + "example_sentence_english": "It's hot, turn on the air conditioning.", + "pos": "noun", + "word_frequency": 10480 + }, + { + "word": "cocher", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coachman", + "example_sentence_native": "Le cocher a arrêté la calèche devant le château.", + "example_sentence_english": "The coachman stopped the carriage in front of the castle.", + "pos": "noun", + "word_frequency": 10481 + }, + { + "word": "concepteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designer;creator", + "example_sentence_native": "Le concepteur du logiciel a présenté sa nouvelle version.", + "example_sentence_english": "The software designer presented his new version.", + "pos": "noun", + "word_frequency": 10483 + }, + { + "word": "conciliation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conciliation;reconciliation", + "example_sentence_native": "Ils ont cherché une conciliation pour résoudre leur différend.", + "example_sentence_english": "They sought conciliation to resolve their dispute.", + "pos": "noun", + "word_frequency": 10484 + }, + { + "word": "confidentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confidential", + "example_sentence_native": "C'est une information confidentielle.", + "example_sentence_english": "This is confidential information.", + "pos": "adjective", + "word_frequency": 10485 + }, + { + "word": "constante", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constant", + "example_sentence_native": "La vitesse de la lumière est une constante universelle.", + "example_sentence_english": "The speed of light is a universal constant.", + "pos": "noun", + "word_frequency": 10486 + }, + { + "word": "contempler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contemplate;to gaze at", + "example_sentence_native": "Il aimait contempler les étoiles la nuit.", + "example_sentence_english": "He liked to contemplate the stars at night.", + "pos": "verb", + "word_frequency": 10487 + }, + { + "word": "corail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coral", + "example_sentence_native": "Les récifs de corail sont menacés par le changement climatique.", + "example_sentence_english": "Coral reefs are threatened by climate change.", + "pos": "noun", + "word_frequency": 10488 + }, + { + "word": "cornet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cone;horn", + "example_sentence_native": "Je voudrais une glace dans un cornet, s'il vous plaît.", + "example_sentence_english": "I would like an ice cream in a cone, please.", + "pos": "noun", + "word_frequency": 10489 + }, + { + "word": "covoiturage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpooling", + "example_sentence_native": "Le covoiturage réduit les embouteillages et la pollution.", + "example_sentence_english": "Carpooling reduces traffic jams and pollution.", + "pos": "noun", + "word_frequency": 10490 + }, + { + "word": "crocodile", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crocodile", + "example_sentence_native": "Le crocodile est un reptile dangereux.", + "example_sentence_english": "The crocodile is a dangerous reptile.", + "pos": "noun", + "word_frequency": 10492 + }, + { + "word": "diarrhée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diarrhea", + "example_sentence_native": "Il a eu la diarrhée après avoir mangé quelque chose de mauvais.", + "example_sentence_english": "He had diarrhea after eating something bad.", + "pos": "noun", + "word_frequency": 10495 + }, + { + "word": "digérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to digest", + "example_sentence_native": "Il faut du temps pour digérer un repas lourd.", + "example_sentence_english": "It takes time to digest a heavy meal.", + "pos": "verb", + "word_frequency": 10496 + }, + { + "word": "doublure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lining;understudy;stunt double", + "example_sentence_native": "La doublure de cette veste est en soie.", + "example_sentence_english": "The lining of this jacket is silk.", + "pos": "noun", + "word_frequency": 10497 + }, + { + "word": "drop", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drop;fall", + "example_sentence_native": "Le drop de la balle était parfait.", + "example_sentence_english": "The drop of the ball was perfect.", + "pos": "noun", + "word_frequency": 10498 + }, + { + "word": "délibéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberate;intentional", + "example_sentence_native": "C'était une décision délibérée.", + "example_sentence_english": "It was a deliberate decision.", + "pos": "adjective", + "word_frequency": 10499 + }, + { + "word": "déprimant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressing", + "example_sentence_native": "Ce film est vraiment déprimant.", + "example_sentence_english": "This movie is really depressing.", + "pos": "adjective", + "word_frequency": 10500 + }, + { + "word": "détaché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detached;separate;aloof", + "example_sentence_native": "Il a une attitude très détachée face aux problèmes.", + "example_sentence_english": "He has a very detached attitude towards problems.", + "pos": "adjective", + "word_frequency": 10501 + }, + { + "word": "enchaînement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequence;chain;linking", + "example_sentence_native": "L'enchaînement des événements a été rapide.", + "example_sentence_english": "The sequence of events was rapid.", + "pos": "noun", + "word_frequency": 10504 + }, + { + "word": "englober", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to encompass;to include", + "example_sentence_native": "Ce projet englobe plusieurs aspects.", + "example_sentence_english": "This project encompasses several aspects.", + "pos": "verb", + "word_frequency": 10505 + }, + { + "word": "envol", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "take-off;flight", + "example_sentence_native": "L'envol de l'oiseau était majestueux.", + "example_sentence_english": "The bird's take-off was majestic.", + "pos": "noun", + "word_frequency": 10506 + }, + { + "word": "estimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estimated;respected", + "example_sentence_native": "Le coût estimé du projet est de 10 000 euros.", + "example_sentence_english": "The estimated cost of the project is 10,000 euros.", + "pos": "adjective", + "word_frequency": 10507 + }, + { + "word": "euthanasie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "euthanasia", + "example_sentence_native": "Le débat sur l'euthanasie est complexe.", + "example_sentence_english": "The debate on euthanasia is complex.", + "pos": "noun", + "word_frequency": 10508 + }, + { + "word": "faucon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "falcon", + "example_sentence_native": "Le faucon est un rapace rapide.", + "example_sentence_english": "The falcon is a fast bird of prey.", + "pos": "noun", + "word_frequency": 10510 + }, + { + "word": "fitness", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fitness", + "example_sentence_native": "Il va à la salle de fitness tous les jours.", + "example_sentence_english": "He goes to the fitness center every day.", + "pos": "noun", + "word_frequency": 10512 + }, + { + "word": "fumier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manure;scumbag (insult)", + "example_sentence_native": "L'agriculteur a épandu du fumier dans les champs.", + "example_sentence_english": "The farmer spread manure in the fields.", + "pos": "noun", + "word_frequency": 10515 + }, + { + "word": "fusionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to merge;to fuse", + "example_sentence_native": "Les deux entreprises ont décidé de fusionner.", + "example_sentence_english": "The two companies decided to merge.", + "pos": "verb", + "word_frequency": 10516 + }, + { + "word": "gastronomique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastronomic", + "example_sentence_native": "Paris est réputée pour sa cuisine gastronomique.", + "example_sentence_english": "Paris is renowned for its gastronomic cuisine.", + "pos": "adjective", + "word_frequency": 10518 + }, + { + "word": "gore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gory", + "example_sentence_native": "Ce film d'horreur est très gore.", + "example_sentence_english": "This horror movie is very gory.", + "pos": "adjective", + "word_frequency": 10519 + }, + { + "word": "gourmand", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greedy;fond of food", + "example_sentence_native": "Il est très gourmand et adore les desserts.", + "example_sentence_english": "He is very fond of food and loves desserts.", + "pos": "adjective", + "word_frequency": 10520 + }, + { + "word": "graal", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Grail", + "example_sentence_native": "La quête du Graal est un thème classique de la littérature médiévale.", + "example_sentence_english": "The quest for the Grail is a classic theme in medieval literature.", + "pos": "noun", + "word_frequency": 10521 + }, + { + "word": "gueuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to yell;to shout", + "example_sentence_native": "Il a commencé à gueuler après moi sans raison.", + "example_sentence_english": "He started yelling at me for no reason.", + "pos": "verb", + "word_frequency": 10522 + }, + { + "word": "immortel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immortal", + "example_sentence_native": "Les dieux grecs étaient considérés comme immortels.", + "example_sentence_english": "The Greek gods were considered immortal.", + "pos": "adjective", + "word_frequency": 10527 + }, + { + "word": "inaperçu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnoticed", + "example_sentence_native": "Il est entré dans la pièce inaperçu.", + "example_sentence_english": "He entered the room unnoticed.", + "pos": "adjective", + "word_frequency": 10529 + }, + { + "word": "inculpé", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accused;defendant", + "example_sentence_native": "L'inculpé a plaidé non coupable.", + "example_sentence_english": "The accused pleaded not guilty.", + "pos": "noun", + "word_frequency": 10530 + }, + { + "word": "innovant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovative", + "example_sentence_native": "C'est une approche très innovante.", + "example_sentence_english": "It's a very innovative approach.", + "pos": "adjective", + "word_frequency": 10532 + }, + { + "word": "inquiété", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worried;concerned", + "example_sentence_native": "Elle semblait très inquiète de la situation.", + "example_sentence_english": "She seemed very worried about the situation.", + "pos": "adjective", + "word_frequency": 10533 + }, + { + "word": "insistant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insistent;persistent", + "example_sentence_native": "Il a été très insistant pour que je vienne.", + "example_sentence_english": "He was very insistent that I come.", + "pos": "adjective", + "word_frequency": 10534 + }, + { + "word": "intendant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steward;intendant", + "example_sentence_native": "L'intendant gère les affaires financières du domaine.", + "example_sentence_english": "The steward manages the financial affairs of the estate.", + "pos": "noun", + "word_frequency": 10535 + }, + { + "word": "lard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bacon;lard", + "example_sentence_native": "J'aime les œufs au plat avec du lard.", + "example_sentence_english": "I like fried eggs with bacon.", + "pos": "noun", + "word_frequency": 10542 + }, + { + "word": "legs", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legacy;bequest", + "example_sentence_native": "Il a laissé un legs important à l'université.", + "example_sentence_english": "He left a significant legacy to the university.", + "pos": "noun", + "word_frequency": 10543 + }, + { + "word": "lexique", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lexicon;vocabulary", + "example_sentence_native": "Ce livre contient un lexique des termes techniques.", + "example_sentence_english": "This book contains a lexicon of technical terms.", + "pos": "noun", + "word_frequency": 10545 + }, + { + "word": "mafieux", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mafioso;gangster", + "example_sentence_native": "La police a arrêté un groupe de mafieux.", + "example_sentence_english": "The police arrested a group of mafiosos.", + "pos": "noun", + "word_frequency": 10548 + }, + { + "word": "mandataire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proxy;agent;mandatary", + "example_sentence_native": "Il a agi en tant que mandataire pour son client.", + "example_sentence_english": "He acted as an agent for his client.", + "pos": "noun", + "word_frequency": 10549 + }, + { + "word": "manette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handle;lever;controller (video game)", + "example_sentence_native": "La manette de jeu est cassée.", + "example_sentence_english": "The game controller is broken.", + "pos": "noun", + "word_frequency": 10550 + }, + { + "word": "marquage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marking;tagging", + "example_sentence_native": "Le marquage au sol est essentiel pour la sécurité.", + "example_sentence_english": "Ground marking is essential for safety.", + "pos": "noun", + "word_frequency": 10552 + }, + { + "word": "merdier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mess;shitshow (vulgar)", + "example_sentence_native": "C'est un vrai merdier ici, il faut ranger.", + "example_sentence_english": "It's a real mess here, we need to tidy up.", + "pos": "noun", + "word_frequency": 10553 + }, + { + "word": "modélisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "modeling;modelization", + "example_sentence_native": "La modélisation 3D est utilisée en architecture.", + "example_sentence_english": "3D modeling is used in architecture.", + "pos": "noun", + "word_frequency": 10556 + }, + { + "word": "monumental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monumental", + "example_sentence_native": "C'était une erreur monumentale.", + "example_sentence_english": "It was a monumental error.", + "pos": "adjective", + "word_frequency": 10558 + }, + { + "word": "méchanceté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "malice;wickedness", + "example_sentence_native": "Sa méchanceté était évidente dans ses paroles.", + "example_sentence_english": "Her wickedness was evident in her words.", + "pos": "noun", + "word_frequency": 10561 + }, + { + "word": "méconnu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrecognized;unknown", + "example_sentence_native": "C'est un artiste méconnu du grand public.", + "example_sentence_english": "He is an artist unknown to the general public.", + "pos": "adjective", + "word_frequency": 10562 + }, + { + "word": "métamorphose", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metamorphosis", + "example_sentence_native": "La chenille subit une métamorphose pour devenir papillon.", + "example_sentence_english": "The caterpillar undergoes a metamorphosis to become a butterfly.", + "pos": "noun", + "word_frequency": 10563 + }, + { + "word": "nostalgique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nostalgic", + "example_sentence_native": "Il est souvent nostalgique de son enfance.", + "example_sentence_english": "He is often nostalgic for his childhood.", + "pos": "adjective", + "word_frequency": 10564 + }, + { + "word": "odyssée", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "odyssey", + "example_sentence_native": "Ce voyage fut une véritable odyssée.", + "example_sentence_english": "This journey was a true odyssey.", + "pos": "noun", + "word_frequency": 10566 + }, + { + "word": "parenthèse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parenthesis;break", + "example_sentence_native": "Faisons une petite parenthèse avant de continuer.", + "example_sentence_english": "Let's take a short break before continuing.", + "pos": "noun", + "word_frequency": 10568 + }, + { + "word": "paternel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paternal;fatherly", + "example_sentence_native": "Il a un amour paternel pour ses enfants.", + "example_sentence_english": "He has a paternal love for his children.", + "pos": "adjective", + "word_frequency": 10569 + }, + { + "word": "paume", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm (of hand)", + "example_sentence_native": "Il tenait la pièce dans la paume de sa main.", + "example_sentence_english": "He held the coin in the palm of his hand.", + "pos": "noun", + "word_frequency": 10570 + }, + { + "word": "persuadé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convinced", + "example_sentence_native": "Je suis persuadé que tu as raison.", + "example_sentence_english": "I am convinced that you are right.", + "pos": "adjective", + "word_frequency": 10571 + }, + { + "word": "poirier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pear tree", + "example_sentence_native": "Le poirier de notre jardin donne de délicieuses poires.", + "example_sentence_english": "The pear tree in our garden yields delicious pears.", + "pos": "noun", + "word_frequency": 10573 + }, + { + "word": "polar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detective novel;crime fiction", + "example_sentence_native": "J'adore lire des polars le soir.", + "example_sentence_english": "I love reading detective novels in the evening.", + "pos": "noun", + "word_frequency": 10574 + }, + { + "word": "portier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doorman;porter", + "example_sentence_native": "Le portier nous a ouvert la porte de l'hôtel.", + "example_sentence_english": "The doorman opened the hotel door for us.", + "pos": "noun", + "word_frequency": 10575 + }, + { + "word": "présumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to presume;to assume", + "example_sentence_native": "On ne peut pas présumer de ses intentions.", + "example_sentence_english": "One cannot presume his intentions.", + "pos": "verb", + "word_frequency": 10577 + }, + { + "word": "pâté", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pâté;pie", + "example_sentence_native": "J'ai mangé un délicieux pâté de campagne.", + "example_sentence_english": "I ate a delicious country pâté.", + "pos": "noun", + "word_frequency": 10578 + }, + { + "word": "pénétré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penetrated;imbued", + "example_sentence_native": "Il était pénétré d'une profonde tristesse.", + "example_sentence_english": "He was imbued with a deep sadness.", + "pos": "adjective", + "word_frequency": 10579 + }, + { + "word": "pétale", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "petal", + "example_sentence_native": "Les pétales de la rose sont doux.", + "example_sentence_english": "The rose petals are soft.", + "pos": "noun", + "word_frequency": 10580 + }, + { + "word": "rayé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "striped;scratched", + "example_sentence_native": "Le chat a un pelage rayé.", + "example_sentence_english": "The cat has a striped coat.", + "pos": "adjective", + "word_frequency": 10582 + }, + { + "word": "rebondir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bounce;to rebound", + "example_sentence_native": "Le ballon a rebondi sur le mur.", + "example_sentence_english": "The ball bounced off the wall.", + "pos": "verb", + "word_frequency": 10584 + }, + { + "word": "réparé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "repaired;fixed", + "example_sentence_native": "La voiture est enfin réparée.", + "example_sentence_english": "The car is finally repaired.", + "pos": "adjective", + "word_frequency": 10588 + }, + { + "word": "résiliation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancellation;termination", + "example_sentence_native": "Il a demandé la résiliation de son contrat.", + "example_sentence_english": "He requested the termination of his contract.", + "pos": "noun", + "word_frequency": 10589 + }, + { + "word": "saigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bleed", + "example_sentence_native": "Son nez a commencé à saigner.", + "example_sentence_english": "His nose started to bleed.", + "pos": "verb", + "word_frequency": 10590 + }, + { + "word": "salive", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saliva", + "example_sentence_native": "La salive aide à la digestion.", + "example_sentence_english": "Saliva aids in digestion.", + "pos": "noun", + "word_frequency": 10591 + }, + { + "word": "sapeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sapper;firefighter (informal)", + "example_sentence_native": "Les sapeurs-pompiers sont intervenus rapidement.", + "example_sentence_english": "The firefighters intervened quickly.", + "pos": "noun", + "word_frequency": 10593 + }, + { + "word": "scandinave", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Scandinavian", + "example_sentence_native": "J'aime le design scandinave.", + "example_sentence_english": "I like Scandinavian design.", + "pos": "adjective", + "word_frequency": 10594 + }, + { + "word": "scellé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seal;sealed item", + "example_sentence_native": "La police a mis les preuves sous scellés.", + "example_sentence_english": "The police put the evidence under seal.", + "pos": "noun", + "word_frequency": 10595 + }, + { + "word": "signalement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "report;description", + "example_sentence_native": "La police a reçu un signalement de vol.", + "example_sentence_english": "The police received a report of theft.", + "pos": "noun", + "word_frequency": 10597 + }, + { + "word": "siéger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sit;to be seated;to be based", + "example_sentence_native": "Le parlement siège à Paris.", + "example_sentence_english": "The parliament is based in Paris.", + "pos": "verb", + "word_frequency": 10598 + }, + { + "word": "sombrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sink;to plunge;to fall into", + "example_sentence_native": "Le navire a sombré dans la tempête.", + "example_sentence_english": "The ship sank in the storm.", + "pos": "verb", + "word_frequency": 10599 + }, + { + "word": "stimulation", + "article_with_word": "la stimulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulation", + "example_sentence_native": "La stimulation intellectuelle est essentielle pour le développement.", + "example_sentence_english": "Intellectual stimulation is essential for development.", + "pos": "noun", + "word_frequency": 10600 + }, + { + "word": "surcharge", + "article_with_word": "la surcharge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overload", + "example_sentence_native": "Le système a subi une surcharge.", + "example_sentence_english": "The system experienced an overload.", + "pos": "noun", + "word_frequency": 10601 + }, + { + "word": "synagogue", + "article_with_word": "la synagogue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synagogue", + "example_sentence_native": "La synagogue est un lieu de culte.", + "example_sentence_english": "The synagogue is a place of worship.", + "pos": "noun", + "word_frequency": 10603 + }, + { + "word": "synode", + "article_with_word": "le synode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synod", + "example_sentence_native": "Le synode a discuté des questions importantes.", + "example_sentence_english": "The synod discussed important issues.", + "pos": "noun", + "word_frequency": 10604 + }, + { + "word": "tempo", + "article_with_word": "le tempo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tempo", + "example_sentence_native": "Le tempo de la musique était rapide.", + "example_sentence_english": "The tempo of the music was fast.", + "pos": "noun", + "word_frequency": 10605 + }, + { + "word": "tiède", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lukewarm;tepid", + "example_sentence_native": "L'eau du bain est tiède.", + "example_sentence_english": "The bath water is lukewarm.", + "pos": "adjective", + "word_frequency": 10607 + }, + { + "word": "toxicité", + "article_with_word": "la toxicité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toxicity", + "example_sentence_native": "La toxicité de ce produit est élevée.", + "example_sentence_english": "The toxicity of this product is high.", + "pos": "noun", + "word_frequency": 10609 + }, + { + "word": "trading", + "article_with_word": "le trading", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trading", + "example_sentence_native": "Il travaille dans le trading financier.", + "example_sentence_english": "He works in financial trading.", + "pos": "noun", + "word_frequency": 10610 + }, + { + "word": "tsunami", + "article_with_word": "le tsunami", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tsunami", + "example_sentence_native": "Le tsunami a causé beaucoup de dégâts.", + "example_sentence_english": "The tsunami caused a lot of damage.", + "pos": "noun", + "word_frequency": 10611 + }, + { + "word": "téléphoner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to call;to phone", + "example_sentence_native": "Je vais téléphoner à ma mère.", + "example_sentence_english": "I am going to call my mother.", + "pos": "verb", + "word_frequency": 10612 + }, + { + "word": "vielle", + "article_with_word": "la vielle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hurdy-gurdy", + "example_sentence_native": "Il joue de la vielle à roue.", + "example_sentence_english": "He plays the hurdy-gurdy.", + "pos": "noun", + "word_frequency": 10615 + }, + { + "word": "vulgarisation", + "article_with_word": "la vulgarisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "popularization;vulgarization", + "example_sentence_native": "La vulgarisation scientifique est importante.", + "example_sentence_english": "Scientific popularization is important.", + "pos": "noun", + "word_frequency": 10618 + }, + { + "word": "wiki", + "article_with_word": "le wiki", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wiki", + "example_sentence_native": "Nous utilisons un wiki pour partager des informations.", + "example_sentence_english": "We use a wiki to share information.", + "pos": "noun", + "word_frequency": 10619 + }, + { + "word": "ébullition", + "article_with_word": "l'ébullition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boiling;ebullition", + "example_sentence_native": "L'eau est en ébullition.", + "example_sentence_english": "The water is boiling.", + "pos": "noun", + "word_frequency": 10625 + }, + { + "word": "absurdité", + "article_with_word": "l'absurdité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absurdity", + "example_sentence_native": "C'est une pure absurdité.", + "example_sentence_english": "It's pure absurdity.", + "pos": "noun", + "word_frequency": 10626 + }, + { + "word": "afflux", + "article_with_word": "l'afflux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "influx;flow", + "example_sentence_native": "Il y a eu un afflux de touristes.", + "example_sentence_english": "There was an influx of tourists.", + "pos": "noun", + "word_frequency": 10627 + }, + { + "word": "alcoolisme", + "article_with_word": "l'alcoolisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholism", + "example_sentence_native": "L'alcoolisme est une maladie grave.", + "example_sentence_english": "Alcoholism is a serious disease.", + "pos": "noun", + "word_frequency": 10628 + }, + { + "word": "alsacien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Alsatian", + "example_sentence_native": "Il parle le dialecte alsacien.", + "example_sentence_english": "He speaks the Alsatian dialect.", + "pos": "adjective", + "word_frequency": 10630 + }, + { + "word": "aléa", + "article_with_word": "l'aléa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hazard;risk;random event", + "example_sentence_native": "Les aléas climatiques sont imprévisibles.", + "example_sentence_english": "Climatic hazards are unpredictable.", + "pos": "noun", + "word_frequency": 10631 + }, + { + "word": "ambre", + "article_with_word": "l'ambre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amber", + "example_sentence_native": "Elle porte un collier d'ambre.", + "example_sentence_english": "She wears an amber necklace.", + "pos": "noun", + "word_frequency": 10633 + }, + { + "word": "anticorps", + "article_with_word": "l'anticorps", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antibody", + "example_sentence_native": "Les anticorps protègent le corps.", + "example_sentence_english": "Antibodies protect the body.", + "pos": "noun", + "word_frequency": 10635 + }, + { + "word": "appréciable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciable;significant", + "example_sentence_native": "Il y a eu une amélioration appréciable.", + "example_sentence_english": "There was an appreciable improvement.", + "pos": "adjective", + "word_frequency": 10637 + }, + { + "word": "archer", + "article_with_word": "l'archer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "archer", + "example_sentence_native": "L'archer a tiré une flèche.", + "example_sentence_english": "The archer shot an arrow.", + "pos": "noun", + "word_frequency": 10638 + }, + { + "word": "ardoise", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slate", + "example_sentence_native": "L'élève a écrit sur l'ardoise.", + "example_sentence_english": "The student wrote on the slate.", + "pos": "noun", + "word_frequency": 10640 + }, + { + "word": "axer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to focus;to center", + "example_sentence_native": "Il faut axer nos efforts sur la qualité.", + "example_sentence_english": "We must focus our efforts on quality.", + "pos": "verb", + "word_frequency": 10642 + }, + { + "word": "baril", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrel", + "example_sentence_native": "Le pétrole est transporté dans des barils.", + "example_sentence_english": "Oil is transported in barrels.", + "pos": "noun", + "word_frequency": 10643 + }, + { + "word": "bicyclette", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bicycle", + "example_sentence_native": "Elle va au travail à bicyclette.", + "example_sentence_english": "She goes to work by bicycle.", + "pos": "noun", + "word_frequency": 10645 + }, + { + "word": "bienveillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benevolent;kind", + "example_sentence_native": "Il a toujours été très bienveillant envers moi.", + "example_sentence_english": "He has always been very kind to me.", + "pos": "adjective", + "word_frequency": 10646 + }, + { + "word": "cake", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cake", + "example_sentence_native": "J'ai mangé un morceau de cake au petit-déjeuner.", + "example_sentence_english": "I ate a piece of cake for breakfast.", + "pos": "noun", + "word_frequency": 10647 + }, + { + "word": "capitalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitalization", + "example_sentence_native": "La capitalisation boursière de l'entreprise a augmenté.", + "example_sentence_english": "The company's market capitalization increased.", + "pos": "noun", + "word_frequency": 10648 + }, + { + "word": "centriste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centrist", + "example_sentence_native": "Il se décrit comme un homme politique centriste.", + "example_sentence_english": "He describes himself as a centrist politician.", + "pos": "noun", + "word_frequency": 10649 + }, + { + "word": "controverser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dispute;to controvert", + "example_sentence_native": "Il est inutile de controverser ce point.", + "example_sentence_english": "It is useless to dispute this point.", + "pos": "verb", + "word_frequency": 10655 + }, + { + "word": "cosmos", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmos", + "example_sentence_native": "L'étude du cosmos est fascinante.", + "example_sentence_english": "The study of the cosmos is fascinating.", + "pos": "noun", + "word_frequency": 10656 + }, + { + "word": "denier", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denier (old coin);farthing", + "example_sentence_native": "Il n'avait pas un sou, pas un denier.", + "example_sentence_english": "He didn't have a penny, not a farthing.", + "pos": "noun", + "word_frequency": 10658 + }, + { + "word": "diagonale", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagonal", + "example_sentence_native": "Tracez une diagonale sur le carré.", + "example_sentence_english": "Draw a diagonal on the square.", + "pos": "noun", + "word_frequency": 10659 + }, + { + "word": "disco", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disco", + "example_sentence_native": "Nous avons dansé toute la nuit au son du disco.", + "example_sentence_english": "We danced all night to the sound of disco.", + "pos": "noun", + "word_frequency": 10661 + }, + { + "word": "distraction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distraction", + "example_sentence_native": "Les réseaux sociaux sont une source de distraction.", + "example_sentence_english": "Social media is a source of distraction.", + "pos": "noun", + "word_frequency": 10662 + }, + { + "word": "déportation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deportation", + "example_sentence_native": "La déportation des Juifs pendant la guerre est une tragédie.", + "example_sentence_english": "The deportation of Jews during the war is a tragedy.", + "pos": "noun", + "word_frequency": 10665 + }, + { + "word": "dérision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derision;mockery", + "example_sentence_native": "Il a traité ses propositions avec dérision.", + "example_sentence_english": "He treated his proposals with derision.", + "pos": "noun", + "word_frequency": 10666 + }, + { + "word": "désoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distress;to be sorry", + "example_sentence_native": "Je suis désolé pour le retard.", + "example_sentence_english": "I am sorry for the delay.", + "pos": "verb", + "word_frequency": 10667 + }, + { + "word": "engueuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tell off;to scold (informal)", + "example_sentence_native": "Le professeur a engueulé l'élève pour son comportement.", + "example_sentence_english": "The teacher told off the student for his behavior.", + "pos": "verb", + "word_frequency": 10669 + }, + { + "word": "escadron", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squadron", + "example_sentence_native": "Un escadron de chasseurs a survolé la ville.", + "example_sentence_english": "A squadron of fighter jets flew over the city.", + "pos": "noun", + "word_frequency": 10670 + }, + { + "word": "essuyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wipe;to dry", + "example_sentence_native": "Peux-tu essuyer la table s'il te plaît ?", + "example_sentence_english": "Can you wipe the table please?", + "pos": "verb", + "word_frequency": 10671 + }, + { + "word": "gland", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acorn;gland (anatomy);idiot (slang)", + "example_sentence_native": "Le gland est le fruit du chêne.", + "example_sentence_english": "The acorn is the fruit of the oak.", + "pos": "noun", + "word_frequency": 10681 + }, + { + "word": "guardian", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guardian;keeper", + "example_sentence_native": "Le gardien du musée surveille les œuvres d'art.", + "example_sentence_english": "The museum guardian watches over the artworks.", + "pos": "noun", + "word_frequency": 10682 + }, + { + "word": "gus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guy;fellow (informal)", + "example_sentence_native": "Ce gus est toujours en retard.", + "example_sentence_english": "This guy is always late.", + "pos": "noun", + "word_frequency": 10683 + }, + { + "word": "harmonisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmonization", + "example_sentence_native": "L'harmonisation des règles est nécessaire pour la coopération.", + "example_sentence_english": "The harmonization of rules is necessary for cooperation.", + "pos": "noun", + "word_frequency": 10686 + }, + { + "word": "hypothèque", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortgage", + "example_sentence_native": "Ils ont contracté une hypothèque pour acheter leur maison.", + "example_sentence_english": "They took out a mortgage to buy their house.", + "pos": "noun", + "word_frequency": 10688 + }, + { + "word": "hystérique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hysterical", + "example_sentence_native": "Elle est devenue hystérique en apprenant la nouvelle.", + "example_sentence_english": "She became hysterical upon hearing the news.", + "pos": "adjective", + "word_frequency": 10689 + }, + { + "word": "illégitime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegitimate", + "example_sentence_native": "Cette décision est considérée comme illégitime par beaucoup.", + "example_sentence_english": "This decision is considered illegitimate by many.", + "pos": "adjective", + "word_frequency": 10691 + }, + { + "word": "implicite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implicit", + "example_sentence_native": "Il y a un accord implicite entre eux.", + "example_sentence_english": "There is an implicit agreement between them.", + "pos": "adjective", + "word_frequency": 10692 + }, + { + "word": "indécis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indecisive", + "example_sentence_native": "Il est souvent indécis face aux choix importants.", + "example_sentence_english": "He is often indecisive when faced with important choices.", + "pos": "adjective", + "word_frequency": 10693 + }, + { + "word": "infidèle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfaithful", + "example_sentence_native": "Elle a découvert que son partenaire était infidèle.", + "example_sentence_english": "She discovered that her partner was unfaithful.", + "pos": "adjective", + "word_frequency": 10694 + }, + { + "word": "infime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tiny;minute;negligible", + "example_sentence_native": "Il y a une infime chance de succès.", + "example_sentence_english": "There is a tiny chance of success.", + "pos": "adjective", + "word_frequency": 10695 + }, + { + "word": "infériorité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inferiority", + "example_sentence_native": "Il souffre d'un complexe d'infériorité.", + "example_sentence_english": "He suffers from an inferiority complex.", + "pos": "noun", + "word_frequency": 10696 + }, + { + "word": "intestin", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intestine", + "example_sentence_native": "Les aliments sont digérés dans l'intestin.", + "example_sentence_english": "Food is digested in the intestine.", + "pos": "noun", + "word_frequency": 10698 + }, + { + "word": "intolérable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerable", + "example_sentence_native": "Cette situation est devenue intolérable.", + "example_sentence_english": "This situation has become intolerable.", + "pos": "adjective", + "word_frequency": 10699 + }, + { + "word": "intro", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intro (short for introduction)", + "example_sentence_native": "L'intro de la chanson est très entraînante.", + "example_sentence_english": "The intro of the song is very catchy.", + "pos": "noun", + "word_frequency": 10700 + }, + { + "word": "invincible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invincible", + "example_sentence_native": "Il se sentait invincible après sa victoire.", + "example_sentence_english": "He felt invincible after his victory.", + "pos": "adjective", + "word_frequency": 10701 + }, + { + "word": "judas", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peephole;Judas (biblical figure)", + "example_sentence_native": "Regarde par le judas avant d'ouvrir la porte.", + "example_sentence_english": "Look through the peephole before opening the door.", + "pos": "noun", + "word_frequency": 10704 + }, + { + "word": "liser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to smooth;to iron (rare;usually 'lisser')", + "example_sentence_native": "Il faut liser le tissu avant de le couper.", + "example_sentence_english": "You need to smooth the fabric before cutting it.", + "pos": "verb", + "word_frequency": 10708 + }, + { + "word": "louper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to miss;to mess up (informal)", + "example_sentence_native": "J'ai loupé mon bus ce matin.", + "example_sentence_english": "I missed my bus this morning.", + "pos": "verb", + "word_frequency": 10710 + }, + { + "word": "maniere", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "manner;way", + "example_sentence_native": "J'aime sa manière de parler.", + "example_sentence_english": "I like his way of speaking.", + "pos": "noun", + "word_frequency": 10712 + }, + { + "word": "mie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crumb;soft part of bread", + "example_sentence_native": "La mie du pain est très moelleuse.", + "example_sentence_english": "The soft part of the bread is very fluffy.", + "pos": "noun", + "word_frequency": 10715 + }, + { + "word": "monture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mount;frame (e.g.;glasses);setting (jewelry)", + "example_sentence_native": "La monture de ses lunettes est très élégante.", + "example_sentence_english": "The frame of his glasses is very elegant.", + "pos": "noun", + "word_frequency": 10718 + }, + { + "word": "munir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide;to equip (often 'to arm oneself with')", + "example_sentence_native": "Il faut se munir d'un parapluie en cas de pluie.", + "example_sentence_english": "You need to arm yourself with an umbrella in case of rain.", + "pos": "verb", + "word_frequency": 10719 + }, + { + "word": "muscler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strengthen;to build muscle", + "example_sentence_native": "Il faut muscler ses abdominaux pour avoir un ventre plat.", + "example_sentence_english": "You need to strengthen your abs to have a flat stomach.", + "pos": "verb", + "word_frequency": 10720 + }, + { + "word": "mûr", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ripe;mature", + "example_sentence_native": "Ces fruits sont mûrs et prêts à être mangés.", + "example_sentence_english": "These fruits are ripe and ready to be eaten.", + "pos": "adjective", + "word_frequency": 10722 + }, + { + "word": "numero", + "article_with_word": "le numéro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "number", + "example_sentence_native": "Quel est votre numéro de téléphone?", + "example_sentence_english": "What is your phone number?", + "pos": "noun", + "word_frequency": 10724 + }, + { + "word": "obéissance", + "article_with_word": "l'obéissance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obedience", + "example_sentence_native": "L'obéissance aux règles est essentielle.", + "example_sentence_english": "Obedience to rules is essential.", + "pos": "noun", + "word_frequency": 10725 + }, + { + "word": "opera", + "article_with_word": "l'opéra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opera", + "example_sentence_native": "Nous allons voir un opéra ce soir.", + "example_sentence_english": "We are going to see an opera tonight.", + "pos": "noun", + "word_frequency": 10726 + }, + { + "word": "overdose", + "article_with_word": "l'overdose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overdose", + "example_sentence_native": "Il a été hospitalisé après une overdose de médicaments.", + "example_sentence_english": "He was hospitalized after a drug overdose.", + "pos": "noun", + "word_frequency": 10727 + }, + { + "word": "pakistanais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pakistani", + "example_sentence_native": "Elle a des origines pakistanaises.", + "example_sentence_english": "She has Pakistani origins.", + "pos": "adjective", + "word_frequency": 10728 + }, + { + "word": "palmier", + "article_with_word": "le palmier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm tree", + "example_sentence_native": "Il y a de nombreux palmiers sur la plage.", + "example_sentence_english": "There are many palm trees on the beach.", + "pos": "noun", + "word_frequency": 10729 + }, + { + "word": "pancarte", + "article_with_word": "la pancarte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign;placard", + "example_sentence_native": "Ils tenaient des pancartes pendant la manifestation.", + "example_sentence_english": "They were holding signs during the demonstration.", + "pos": "noun", + "word_frequency": 10730 + }, + { + "word": "papi", + "article_with_word": "le papi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandpa;grandad", + "example_sentence_native": "Mon papi m'a raconté une histoire.", + "example_sentence_english": "My grandpa told me a story.", + "pos": "noun", + "word_frequency": 10731 + }, + { + "word": "paralympique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Paralympic", + "example_sentence_native": "Les Jeux paralympiques ont lieu après les Jeux olympiques.", + "example_sentence_english": "The Paralympic Games take place after the Olympic Games.", + "pos": "adjective", + "word_frequency": 10732 + }, + { + "word": "parrainage", + "article_with_word": "le parrainage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsorship;patronage", + "example_sentence_native": "Le programme de parrainage aide les jeunes entrepreneurs.", + "example_sentence_english": "The sponsorship program helps young entrepreneurs.", + "pos": "noun", + "word_frequency": 10733 + }, + { + "word": "parvis", + "article_with_word": "le parvis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forecourt;esplanade", + "example_sentence_native": "La foule s'est rassemblée sur le parvis de la cathédrale.", + "example_sentence_english": "The crowd gathered on the forecourt of the cathedral.", + "pos": "noun", + "word_frequency": 10734 + }, + { + "word": "passeur", + "article_with_word": "le passeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggler;ferryman", + "example_sentence_native": "Le passeur a aidé les réfugiés à traverser la frontière.", + "example_sentence_english": "The smuggler helped the refugees cross the border.", + "pos": "noun", + "word_frequency": 10735 + }, + { + "word": "personnaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to personalize;to customize", + "example_sentence_native": "Vous pouvez personnaliser votre profil en ligne.", + "example_sentence_english": "You can personalize your online profile.", + "pos": "verb", + "word_frequency": 10736 + }, + { + "word": "physicien", + "article_with_word": "le physicien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physicist", + "example_sentence_native": "Marie Curie était une physicienne célèbre.", + "example_sentence_english": "Marie Curie was a famous physicist.", + "pos": "noun", + "word_frequency": 10737 + }, + { + "word": "potassium", + "article_with_word": "le potassium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potassium", + "example_sentence_native": "Le potassium est un minéral essentiel pour le corps.", + "example_sentence_english": "Potassium is an essential mineral for the body.", + "pos": "noun", + "word_frequency": 10739 + }, + { + "word": "pourparler", + "article_with_word": "les pourparlers", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "negotiations;talks", + "example_sentence_native": "Les pourparlers de paix ont duré plusieurs semaines.", + "example_sentence_english": "The peace talks lasted several weeks.", + "pos": "noun", + "word_frequency": 10740 + }, + { + "word": "prostate", + "article_with_word": "la prostate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prostate", + "example_sentence_native": "La prostate est une glande masculine.", + "example_sentence_english": "The prostate is a male gland.", + "pos": "noun", + "word_frequency": 10741 + }, + { + "word": "prérogative", + "article_with_word": "la prérogative", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prerogative", + "example_sentence_native": "C'est une prérogative du président.", + "example_sentence_english": "It is a prerogative of the president.", + "pos": "noun", + "word_frequency": 10742 + }, + { + "word": "pérennité", + "article_with_word": "la pérennité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perenniality;durability;sustainability", + "example_sentence_native": "L'entreprise vise la pérennité de ses activités.", + "example_sentence_english": "The company aims for the sustainability of its activities.", + "pos": "noun", + "word_frequency": 10743 + }, + { + "word": "recenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to list;to enumerate;to count", + "example_sentence_native": "Il faut recenser tous les habitants de la ville.", + "example_sentence_english": "All city residents must be counted.", + "pos": "verb", + "word_frequency": 10745 + }, + { + "word": "rectifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rectify;to correct", + "example_sentence_native": "Veuillez rectifier l'erreur dans votre rapport.", + "example_sentence_english": "Please rectify the error in your report.", + "pos": "verb", + "word_frequency": 10746 + }, + { + "word": "remaniement", + "article_with_word": "le remaniement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reshuffle;reorganization", + "example_sentence_native": "Le gouvernement a annoncé un remaniement ministériel.", + "example_sentence_english": "The government announced a cabinet reshuffle.", + "pos": "noun", + "word_frequency": 10748 + }, + { + "word": "remuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stir;to move", + "example_sentence_native": "N'oubliez pas de remuer la sauce.", + "example_sentence_english": "Don't forget to stir the sauce.", + "pos": "verb", + "word_frequency": 10749 + }, + { + "word": "ressusciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resurrect;to revive", + "example_sentence_native": "Ils ont tenté de ressusciter le projet abandonné.", + "example_sentence_english": "They tried to revive the abandoned project.", + "pos": "verb", + "word_frequency": 10750 + }, + { + "word": "restituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to restore;to return;to give back", + "example_sentence_native": "Il a dû restituer les documents volés.", + "example_sentence_english": "He had to return the stolen documents.", + "pos": "verb", + "word_frequency": 10751 + }, + { + "word": "récession", + "article_with_word": "la récession", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recession", + "example_sentence_native": "Le pays est entré en récession économique.", + "example_sentence_english": "The country entered an economic recession.", + "pos": "noun", + "word_frequency": 10757 + }, + { + "word": "réouverture", + "article_with_word": "la réouverture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reopening", + "example_sentence_native": "La réouverture des commerces est prévue pour la semaine prochaine.", + "example_sentence_english": "The reopening of shops is scheduled for next week.", + "pos": "noun", + "word_frequency": 10758 + }, + { + "word": "répété", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repeated;repetitive", + "example_sentence_native": "Un geste répété peut devenir une habitude.", + "example_sentence_english": "A repeated gesture can become a habit.", + "pos": "adjective", + "word_frequency": 10759 + }, + { + "word": "scan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scan", + "example_sentence_native": "Le médecin a demandé un scan pour vérifier.", + "example_sentence_english": "The doctor requested a scan to check.", + "pos": "noun", + "word_frequency": 10761 + }, + { + "word": "scepticisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skepticism", + "example_sentence_native": "Son scepticisme était évident face à cette nouvelle.", + "example_sentence_english": "His skepticism was evident regarding this news.", + "pos": "noun", + "word_frequency": 10762 + }, + { + "word": "secourir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rescue;to help", + "example_sentence_native": "Il a couru pour secourir la victime de l'accident.", + "example_sentence_english": "He ran to rescue the accident victim.", + "pos": "verb", + "word_frequency": 10763 + }, + { + "word": "sioniste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zionist", + "example_sentence_native": "Le mouvement sioniste a joué un rôle majeur dans l'histoire.", + "example_sentence_english": "The Zionist movement played a major role in history.", + "pos": "adjective", + "word_frequency": 10764 + }, + { + "word": "sniper", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sniper", + "example_sentence_native": "Le sniper était positionné sur le toit.", + "example_sentence_english": "The sniper was positioned on the roof.", + "pos": "noun", + "word_frequency": 10765 + }, + { + "word": "spin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spin (political)", + "example_sentence_native": "Le gouvernement a tenté de donner un spin positif à la nouvelle.", + "example_sentence_english": "The government tried to put a positive spin on the news.", + "pos": "noun", + "word_frequency": 10766 + }, + { + "word": "sponsor", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sponsor", + "example_sentence_native": "L'événement a trouvé un nouveau sponsor.", + "example_sentence_english": "The event found a new sponsor.", + "pos": "noun", + "word_frequency": 10767 + }, + { + "word": "subvenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide for;to meet (needs)", + "example_sentence_native": "Il doit subvenir aux besoins de sa famille.", + "example_sentence_english": "He must provide for his family's needs.", + "pos": "verb", + "word_frequency": 10768 + }, + { + "word": "suprématie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supremacy", + "example_sentence_native": "La suprématie de cette équipe est incontestable.", + "example_sentence_english": "The supremacy of this team is undeniable.", + "pos": "noun", + "word_frequency": 10769 + }, + { + "word": "sweat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweatshirt", + "example_sentence_native": "J'ai mis mon sweat car il faisait frais.", + "example_sentence_english": "I put on my sweatshirt because it was cool.", + "pos": "noun", + "word_frequency": 10770 + }, + { + "word": "symphonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symphonic", + "example_sentence_native": "L'orchestre a joué une œuvre symphonique.", + "example_sentence_english": "The orchestra played a symphonic work.", + "pos": "adjective", + "word_frequency": 10771 + }, + { + "word": "symétrie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symmetry", + "example_sentence_native": "La symétrie de ce bâtiment est impressionnante.", + "example_sentence_english": "The symmetry of this building is impressive.", + "pos": "noun", + "word_frequency": 10772 + }, + { + "word": "séquelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "after-effect;lasting consequence", + "example_sentence_native": "Il souffre encore des séquelles de son accident.", + "example_sentence_english": "He still suffers from the after-effects of his accident.", + "pos": "noun", + "word_frequency": 10773 + }, + { + "word": "taxer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tax", + "example_sentence_native": "Le gouvernement a décidé de taxer davantage les produits de luxe.", + "example_sentence_english": "The government decided to tax luxury goods more.", + "pos": "verb", + "word_frequency": 10775 + }, + { + "word": "tonneau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barrel;cask", + "example_sentence_native": "Le vin est vieilli dans des tonneaux de chêne.", + "example_sentence_english": "Wine is aged in oak barrels.", + "pos": "noun", + "word_frequency": 10780 + }, + { + "word": "tremplin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "springboard;launching pad", + "example_sentence_native": "Ce poste a été un véritable tremplin pour sa carrière.", + "example_sentence_english": "This position was a real springboard for his career.", + "pos": "noun", + "word_frequency": 10781 + }, + { + "word": "tricolore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tricolor", + "example_sentence_native": "Le drapeau français est tricolore.", + "example_sentence_english": "The French flag is tricolor.", + "pos": "adjective", + "word_frequency": 10782 + }, + { + "word": "urbanisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urbanization", + "example_sentence_native": "L'urbanisation rapide pose de nombreux défis.", + "example_sentence_english": "Rapid urbanization poses many challenges.", + "pos": "noun", + "word_frequency": 10785 + }, + { + "word": "utilisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usable;exploitable", + "example_sentence_native": "Cette ressource n'est pas encore utilisable.", + "example_sentence_english": "This resource is not yet usable.", + "pos": "adjective", + "word_frequency": 10786 + }, + { + "word": "uv", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "UV (ultraviolet)", + "example_sentence_native": "Il est important de se protéger des UV.", + "example_sentence_english": "It is important to protect oneself from UV rays.", + "pos": "noun", + "word_frequency": 10787 + }, + { + "word": "veto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veto", + "example_sentence_native": "Le président a mis son veto sur la loi.", + "example_sentence_english": "The president vetoed the law.", + "pos": "noun", + "word_frequency": 10789 + }, + { + "word": "virginité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virginity", + "example_sentence_native": "Le concept de virginité a évolué au fil du temps.", + "example_sentence_english": "The concept of virginity has evolved over time.", + "pos": "noun", + "word_frequency": 10791 + }, + { + "word": "virgule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comma", + "example_sentence_native": "N'oubliez pas la virgule après l'introduction.", + "example_sentence_english": "Don't forget the comma after the introduction.", + "pos": "noun", + "word_frequency": 10792 + }, + { + "word": "végétarien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetarian", + "example_sentence_native": "Je suis végétarien depuis cinq ans.", + "example_sentence_english": "I have been vegetarian for five years.", + "pos": "adjective", + "word_frequency": 10794 + }, + { + "word": "yorkais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "New Yorker;from York", + "example_sentence_native": "Il est un artiste yorkais.", + "example_sentence_english": "He is a New York artist.", + "pos": "adjective", + "word_frequency": 10797 + }, + { + "word": "écorce", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bark (of a tree);peel (of fruit)", + "example_sentence_native": "L'écorce de cet arbre est très rugueuse.", + "example_sentence_english": "The bark of this tree is very rough.", + "pos": "noun", + "word_frequency": 10799 + }, + { + "word": "abréger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shorten;to abridge", + "example_sentence_native": "Il faut abréger cette réunion.", + "example_sentence_english": "We need to shorten this meeting.", + "pos": "verb", + "word_frequency": 10800 + }, + { + "word": "accentuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accentuate;to emphasize", + "example_sentence_native": "Il a accentué certains mots pour insister.", + "example_sentence_english": "He accentuated certain words to insist.", + "pos": "verb", + "word_frequency": 10801 + }, + { + "word": "adoration", + "article_with_word": "l'adoration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoration", + "example_sentence_native": "Elle voue une adoration à son chat.", + "example_sentence_english": "She has an adoration for her cat.", + "pos": "noun", + "word_frequency": 10803 + }, + { + "word": "affranchir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to free;to emancipate;to frank (a letter)", + "example_sentence_native": "Il a réussi à s'affranchir de ses dettes.", + "example_sentence_english": "He managed to free himself from his debts.", + "pos": "verb", + "word_frequency": 10805 + }, + { + "word": "alerter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alert;to warn", + "example_sentence_native": "La police a été alertée de la situation.", + "example_sentence_english": "The police were alerted to the situation.", + "pos": "verb", + "word_frequency": 10806 + }, + { + "word": "anthologie", + "article_with_word": "une anthologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthology", + "example_sentence_native": "Il a publié une anthologie de poèmes.", + "example_sentence_english": "He published an anthology of poems.", + "pos": "noun", + "word_frequency": 10807 + }, + { + "word": "anéantir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to annihilate;to destroy", + "example_sentence_native": "La tempête a anéanti le village.", + "example_sentence_english": "The storm annihilated the village.", + "pos": "verb", + "word_frequency": 10808 + }, + { + "word": "archaïque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archaic", + "example_sentence_native": "Ce système est devenu archaïque.", + "example_sentence_english": "This system has become archaic.", + "pos": "adjective", + "word_frequency": 10809 + }, + { + "word": "artériel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arterial", + "example_sentence_native": "La pression artérielle est importante à surveiller.", + "example_sentence_english": "Arterial pressure is important to monitor.", + "pos": "adjective", + "word_frequency": 10810 + }, + { + "word": "attractivité", + "article_with_word": "l'attractivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attractiveness", + "example_sentence_native": "La ville a perdu de son attractivité.", + "example_sentence_english": "The city has lost some of its attractiveness.", + "pos": "noun", + "word_frequency": 10811 + }, + { + "word": "aventurier", + "article_with_word": "un aventurier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adventurer", + "example_sentence_native": "Il rêve de devenir un grand aventurier.", + "example_sentence_english": "He dreams of becoming a great adventurer.", + "pos": "noun", + "word_frequency": 10813 + }, + { + "word": "aviser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advise;to notify;to consider", + "example_sentence_native": "Veuillez nous aviser de votre décision.", + "example_sentence_english": "Please advise us of your decision.", + "pos": "verb", + "word_frequency": 10814 + }, + { + "word": "bibliothécaire", + "article_with_word": "un bibliothécaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "librarian", + "example_sentence_native": "Le bibliothécaire m'a aidé à trouver le livre.", + "example_sentence_english": "The librarian helped me find the book.", + "pos": "noun", + "word_frequency": 10819 + }, + { + "word": "cactus", + "article_with_word": "un cactus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cactus", + "example_sentence_native": "J'ai un cactus sur mon bureau.", + "example_sentence_english": "I have a cactus on my desk.", + "pos": "noun", + "word_frequency": 10821 + }, + { + "word": "carême", + "article_with_word": "le Carême", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lent", + "example_sentence_native": "Le Carême est une période de jeûne.", + "example_sentence_english": "Lent is a period of fasting.", + "pos": "noun", + "word_frequency": 10825 + }, + { + "word": "castor", + "article_with_word": "un castor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaver", + "example_sentence_native": "Le castor construit des barrages.", + "example_sentence_english": "The beaver builds dams.", + "pos": "noun", + "word_frequency": 10826 + }, + { + "word": "chandelle", + "article_with_word": "une chandelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candle (taper);flare", + "example_sentence_native": "La chandelle éclairait la pièce.", + "example_sentence_english": "The candle lit up the room.", + "pos": "noun", + "word_frequency": 10827 + }, + { + "word": "charnière", + "article_with_word": "une charnière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hinge;turning point", + "example_sentence_native": "La porte a besoin d'une nouvelle charnière.", + "example_sentence_english": "The door needs a new hinge.", + "pos": "noun", + "word_frequency": 10829 + }, + { + "word": "chewing", + "article_with_word": "un chewing-gum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chewing gum", + "example_sentence_native": "J'ai acheté un paquet de chewing-gums.", + "example_sentence_english": "I bought a pack of chewing gums.", + "pos": "noun", + "word_frequency": 10830 + }, + { + "word": "choléra", + "article_with_word": "le choléra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cholera", + "example_sentence_native": "Le choléra est une maladie grave.", + "example_sentence_english": "Cholera is a serious disease.", + "pos": "noun", + "word_frequency": 10832 + }, + { + "word": "clash", + "article_with_word": "un clash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clash;conflict", + "example_sentence_native": "Il y a eu un clash entre les deux artistes.", + "example_sentence_english": "There was a clash between the two artists.", + "pos": "noun", + "word_frequency": 10834 + }, + { + "word": "climatisation", + "article_with_word": "la climatisation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "air conditioning", + "example_sentence_native": "La climatisation est essentielle en été.", + "example_sentence_english": "Air conditioning is essential in summer.", + "pos": "noun", + "word_frequency": 10835 + }, + { + "word": "collégien", + "article_with_word": "un collégien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "middle school student", + "example_sentence_native": "Mon fils est collégien cette année.", + "example_sentence_english": "My son is a middle school student this year.", + "pos": "noun", + "word_frequency": 10838 + }, + { + "word": "colorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to color", + "example_sentence_native": "L'enfant aime colorer ses dessins.", + "example_sentence_english": "The child likes to color his drawings.", + "pos": "verb", + "word_frequency": 10839 + }, + { + "word": "concrétiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to materialize;to make concrete", + "example_sentence_native": "Nous devons concrétiser nos idées en actions.", + "example_sentence_english": "We must materialize our ideas into actions.", + "pos": "verb", + "word_frequency": 10841 + }, + { + "word": "confinement", + "article_with_word": "le confinement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confinement;lockdown", + "example_sentence_native": "Le confinement a été une période difficile pour beaucoup.", + "example_sentence_english": "The lockdown was a difficult period for many.", + "pos": "noun", + "word_frequency": 10842 + }, + { + "word": "conjugaison", + "article_with_word": "la conjugaison", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conjugation", + "example_sentence_native": "La conjugaison des verbes français est complexe.", + "example_sentence_english": "The conjugation of French verbs is complex.", + "pos": "noun", + "word_frequency": 10843 + }, + { + "word": "consolation", + "article_with_word": "la consolation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consolation", + "example_sentence_native": "Elle a trouvé de la consolation dans la musique.", + "example_sentence_english": "She found consolation in music.", + "pos": "noun", + "word_frequency": 10844 + }, + { + "word": "conteneur", + "article_with_word": "le conteneur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container", + "example_sentence_native": "Les marchandises sont transportées dans des conteneurs.", + "example_sentence_english": "Goods are transported in containers.", + "pos": "noun", + "word_frequency": 10845 + }, + { + "word": "correctionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correctional;criminal (court)", + "example_sentence_native": "Il a été jugé par le tribunal correctionnel.", + "example_sentence_english": "He was judged by the criminal court.", + "pos": "adjective", + "word_frequency": 10847 + }, + { + "word": "cortex", + "article_with_word": "le cortex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cortex", + "example_sentence_native": "Le cortex cérébral est responsable de la pensée complexe.", + "example_sentence_english": "The cerebral cortex is responsible for complex thought.", + "pos": "noun", + "word_frequency": 10848 + }, + { + "word": "crucifix", + "article_with_word": "le crucifix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucifix", + "example_sentence_native": "Un crucifix était accroché au mur de l'église.", + "example_sentence_english": "A crucifix was hanging on the church wall.", + "pos": "noun", + "word_frequency": 10849 + }, + { + "word": "côtier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coastal", + "example_sentence_native": "Nous avons visité de nombreux villages côtiers.", + "example_sentence_english": "We visited many coastal villages.", + "pos": "adjective", + "word_frequency": 10851 + }, + { + "word": "dauphine", + "article_with_word": "la dauphine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dauphine (wife of the Dauphin)", + "example_sentence_native": "La dauphine était l'épouse du dauphin de France.", + "example_sentence_english": "The dauphine was the wife of the Dauphin of France.", + "pos": "noun", + "word_frequency": 10852 + }, + { + "word": "diabolique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diabolical;devilish", + "example_sentence_native": "Il a un rire diabolique.", + "example_sentence_english": "He has a diabolical laugh.", + "pos": "adjective", + "word_frequency": 10856 + }, + { + "word": "dialecte", + "article_with_word": "le dialecte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialect", + "example_sentence_native": "Certaines régions de France parlent encore un dialecte local.", + "example_sentence_english": "Some regions of France still speak a local dialect.", + "pos": "noun", + "word_frequency": 10857 + }, + { + "word": "décoratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorative", + "example_sentence_native": "Ce vase est purement décoratif.", + "example_sentence_english": "This vase is purely decorative.", + "pos": "adjective", + "word_frequency": 10859 + }, + { + "word": "esplanade", + "article_with_word": "l'esplanade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esplanade", + "example_sentence_native": "Nous nous sommes promenés sur l'esplanade face à la mer.", + "example_sentence_english": "We walked on the esplanade facing the sea.", + "pos": "noun", + "word_frequency": 10860 + }, + { + "word": "expérimenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to experiment;to experience", + "example_sentence_native": "Les scientifiques expérimentent de nouvelles théories.", + "example_sentence_english": "Scientists experiment with new theories.", + "pos": "verb", + "word_frequency": 10861 + }, + { + "word": "extermination", + "article_with_word": "l'extermination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extermination", + "example_sentence_native": "L'extermination des nuisibles est nécessaire pour la santé publique.", + "example_sentence_english": "The extermination of pests is necessary for public health.", + "pos": "noun", + "word_frequency": 10862 + }, + { + "word": "fiasco", + "article_with_word": "le fiasco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiasco", + "example_sentence_native": "La réunion s'est terminée en fiasco total.", + "example_sentence_english": "The meeting ended in a total fiasco.", + "pos": "noun", + "word_frequency": 10865 + }, + { + "word": "friser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to curl;to border on", + "example_sentence_native": "Ses cheveux frisent naturellement.", + "example_sentence_english": "Her hair curls naturally.", + "pos": "verb", + "word_frequency": 10867 + }, + { + "word": "gentleman", + "article_with_word": "le gentleman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gentleman", + "example_sentence_native": "C'est un vrai gentleman, toujours poli et respectueux.", + "example_sentence_english": "He is a true gentleman, always polite and respectful.", + "pos": "noun", + "word_frequency": 10868 + }, + { + "word": "gluten", + "article_with_word": "le gluten", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gluten", + "example_sentence_native": "De plus en plus de produits sont sans gluten.", + "example_sentence_english": "More and more products are gluten-free.", + "pos": "noun", + "word_frequency": 10871 + }, + { + "word": "guérilla", + "article_with_word": "la guérilla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guerrilla warfare", + "example_sentence_native": "Les forces de guérilla ont mené des attaques surprises.", + "example_sentence_english": "Guerrilla forces carried out surprise attacks.", + "pos": "noun", + "word_frequency": 10874 + }, + { + "word": "hôtesse", + "article_with_word": "l'hôtesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostess;flight attendant", + "example_sentence_native": "L'hôtesse de l'air a servi les boissons.", + "example_sentence_english": "The flight attendant served the drinks.", + "pos": "noun", + "word_frequency": 10877 + }, + { + "word": "impensable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unthinkable", + "example_sentence_native": "C'est une situation impensable.", + "example_sentence_english": "It's an unthinkable situation.", + "pos": "adjective", + "word_frequency": 10879 + }, + { + "word": "implacable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implacable;relentless", + "example_sentence_native": "Sa détermination était implacable.", + "example_sentence_english": "His determination was implacable.", + "pos": "adjective", + "word_frequency": 10880 + }, + { + "word": "impérialisme", + "article_with_word": "l'impérialisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialism", + "example_sentence_native": "L'impérialisme est un concept clé en histoire.", + "example_sentence_english": "Imperialism is a key concept in history.", + "pos": "noun", + "word_frequency": 10881 + }, + { + "word": "instantané", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instantaneous;instant", + "example_sentence_native": "La réaction fut instantanée.", + "example_sentence_english": "The reaction was instantaneous.", + "pos": "adjective", + "word_frequency": 10882 + }, + { + "word": "intoxication", + "article_with_word": "l'intoxication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoning;intoxication", + "example_sentence_native": "Elle a souffert d'une intoxication alimentaire.", + "example_sentence_english": "She suffered from food poisoning.", + "pos": "noun", + "word_frequency": 10883 + }, + { + "word": "longer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to walk along;to go along", + "example_sentence_native": "Nous avons longé la rivière.", + "example_sentence_english": "We walked along the river.", + "pos": "verb", + "word_frequency": 10890 + }, + { + "word": "lé", + "article_with_word": "le lé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strip (of wallpaper;fabric)", + "example_sentence_native": "Il a posé le premier lé de papier peint.", + "example_sentence_english": "He put up the first strip of wallpaper.", + "pos": "noun", + "word_frequency": 10892 + }, + { + "word": "majuscule", + "article_with_word": "la majuscule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "capital letter", + "example_sentence_native": "Commencez la phrase par une majuscule.", + "example_sentence_english": "Start the sentence with a capital letter.", + "pos": "noun", + "word_frequency": 10894 + }, + { + "word": "manier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to handle;to wield", + "example_sentence_native": "Il sait manier les outils avec dextérité.", + "example_sentence_english": "He knows how to handle tools with dexterity.", + "pos": "verb", + "word_frequency": 10895 + }, + { + "word": "marxisme", + "article_with_word": "le marxisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxism", + "example_sentence_native": "Le marxisme est une théorie politique et économique.", + "example_sentence_english": "Marxism is a political and economic theory.", + "pos": "noun", + "word_frequency": 10896 + }, + { + "word": "mirage", + "article_with_word": "le mirage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mirage", + "example_sentence_native": "Nous avons vu un mirage dans le désert.", + "example_sentence_english": "We saw a mirage in the desert.", + "pos": "noun", + "word_frequency": 10897 + }, + { + "word": "motte", + "article_with_word": "la motte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clump;mound;clod", + "example_sentence_native": "Il a ramassé une motte de terre.", + "example_sentence_english": "He picked up a clump of earth.", + "pos": "noun", + "word_frequency": 10900 + }, + { + "word": "mouchoir", + "article_with_word": "le mouchoir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handkerchief;tissue", + "example_sentence_native": "J'ai besoin d'un mouchoir.", + "example_sentence_english": "I need a handkerchief.", + "pos": "noun", + "word_frequency": 10901 + }, + { + "word": "mélancolie", + "article_with_word": "la mélancolie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melancholy", + "example_sentence_native": "Une douce mélancolie l'envahit.", + "example_sentence_english": "A sweet melancholy overcame him.", + "pos": "noun", + "word_frequency": 10902 + }, + { + "word": "métabolisme", + "article_with_word": "le métabolisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metabolism", + "example_sentence_native": "Le métabolisme est essentiel à la vie.", + "example_sentence_english": "Metabolism is essential for life.", + "pos": "noun", + "word_frequency": 10903 + }, + { + "word": "nautique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nautical", + "example_sentence_native": "Il pratique des activités nautiques.", + "example_sentence_english": "He practices nautical activities.", + "pos": "adjective", + "word_frequency": 10905 + }, + { + "word": "noeud", + "article_with_word": "le nœud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knot;node;bow", + "example_sentence_native": "Fais un nœud solide.", + "example_sentence_english": "Make a strong knot.", + "pos": "noun", + "word_frequency": 10907 + }, + { + "word": "nomenclature", + "article_with_word": "la nomenclature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nomenclature;list of names", + "example_sentence_native": "La nomenclature des espèces est complexe.", + "example_sentence_english": "The nomenclature of species is complex.", + "pos": "noun", + "word_frequency": 10908 + }, + { + "word": "nouille", + "article_with_word": "la nouille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noodle", + "example_sentence_native": "J'adore les nouilles chinoises.", + "example_sentence_english": "I love Chinese noodles.", + "pos": "noun", + "word_frequency": 10909 + }, + { + "word": "oratoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oratorical;rhetorical", + "example_sentence_native": "Son talent oratoire est impressionnant.", + "example_sentence_english": "His oratorical talent is impressive.", + "pos": "adjective", + "word_frequency": 10910 + }, + { + "word": "osseux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bony;osseous", + "example_sentence_native": "Le système osseux est le squelette.", + "example_sentence_english": "The osseous system is the skeleton.", + "pos": "adjective", + "word_frequency": 10911 + }, + { + "word": "passible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liable to;subject to", + "example_sentence_native": "Il est passible d'une amende.", + "example_sentence_english": "He is liable to a fine.", + "pos": "adjective", + "word_frequency": 10912 + }, + { + "word": "pellicule", + "article_with_word": "la pellicule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "film (photographic);thin layer", + "example_sentence_native": "Il a développé la pellicule de son appareil photo.", + "example_sentence_english": "He developed the film from his camera.", + "pos": "noun", + "word_frequency": 10914 + }, + { + "word": "perpétuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpetual;everlasting", + "example_sentence_native": "Il vit dans un état de mouvement perpétuel.", + "example_sentence_english": "He lives in a state of perpetual motion.", + "pos": "adjective", + "word_frequency": 10915 + }, + { + "word": "pessimiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pessimistic", + "example_sentence_native": "Ne sois pas si pessimiste.", + "example_sentence_english": "Don't be so pessimistic.", + "pos": "adjective", + "word_frequency": 10917 + }, + { + "word": "plaidoyer", + "article_with_word": "le plaidoyer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plea;advocacy;appeal", + "example_sentence_native": "Son plaidoyer pour la justice a été émouvant.", + "example_sentence_english": "His plea for justice was moving.", + "pos": "noun", + "word_frequency": 10919 + }, + { + "word": "plénier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plenary", + "example_sentence_native": "La session plénière a duré toute la journée.", + "example_sentence_english": "The plenary session lasted all day.", + "pos": "adjective", + "word_frequency": 10921 + }, + { + "word": "pneumonie", + "article_with_word": "la pneumonie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pneumonia", + "example_sentence_native": "Il a été hospitalisé pour une pneumonie.", + "example_sentence_english": "He was hospitalized for pneumonia.", + "pos": "noun", + "word_frequency": 10922 + }, + { + "word": "pong", + "article_with_word": "le pong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pong (as in table tennis)", + "example_sentence_native": "Nous avons joué au ping-pong hier soir.", + "example_sentence_english": "We played ping-pong last night.", + "pos": "noun", + "word_frequency": 10923 + }, + { + "word": "poulain", + "article_with_word": "le poulain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foal", + "example_sentence_native": "Le poulain a couru dans le pré.", + "example_sentence_english": "The foal ran in the meadow.", + "pos": "noun", + "word_frequency": 10924 + }, + { + "word": "pourpre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purple;crimson", + "example_sentence_native": "Elle portait une robe de couleur pourpre.", + "example_sentence_english": "She wore a purple-colored dress.", + "pos": "adjective", + "word_frequency": 10925 + }, + { + "word": "praticien", + "article_with_word": "le praticien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practitioner", + "example_sentence_native": "Le praticien a donné de bons conseils.", + "example_sentence_english": "The practitioner gave good advice.", + "pos": "noun", + "word_frequency": 10926 + }, + { + "word": "profiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to profile", + "example_sentence_native": "La police essaie de profiler le suspect.", + "example_sentence_english": "The police are trying to profile the suspect.", + "pos": "verb", + "word_frequency": 10927 + }, + { + "word": "projectile", + "article_with_word": "le projectile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projectile", + "example_sentence_native": "Le projectile a été lancé avec force.", + "example_sentence_english": "The projectile was launched with force.", + "pos": "noun", + "word_frequency": 10928 + }, + { + "word": "propulsion", + "article_with_word": "la propulsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propulsion", + "example_sentence_native": "Le système de propulsion du navire est très puissant.", + "example_sentence_english": "The ship's propulsion system is very powerful.", + "pos": "noun", + "word_frequency": 10929 + }, + { + "word": "péripétie", + "article_with_word": "la péripétie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peripeteia;unexpected turn of events", + "example_sentence_native": "Le roman est plein de péripéties inattendues.", + "example_sentence_english": "The novel is full of unexpected twists.", + "pos": "noun", + "word_frequency": 10930 + }, + { + "word": "ride", + "article_with_word": "la ride", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrinkle", + "example_sentence_native": "Elle a quelques rides autour des yeux.", + "example_sentence_english": "She has a few wrinkles around her eyes.", + "pos": "noun", + "word_frequency": 10932 + }, + { + "word": "réguler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regulate", + "example_sentence_native": "Le gouvernement doit réguler le marché.", + "example_sentence_english": "The government must regulate the market.", + "pos": "verb", + "word_frequency": 10933 + }, + { + "word": "satire", + "article_with_word": "la satire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satire", + "example_sentence_native": "Son nouveau livre est une satire politique.", + "example_sentence_english": "His new book is a political satire.", + "pos": "noun", + "word_frequency": 10937 + }, + { + "word": "satirique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satirical", + "example_sentence_native": "Il a un sens de l'humour très satirique.", + "example_sentence_english": "He has a very satirical sense of humor.", + "pos": "adjective", + "word_frequency": 10938 + }, + { + "word": "slave", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slavic", + "example_sentence_native": "Les langues slaves sont parlées en Europe de l'Est.", + "example_sentence_english": "Slavic languages are spoken in Eastern Europe.", + "pos": "adjective", + "word_frequency": 10939 + }, + { + "word": "sobriété", + "article_with_word": "la sobriété", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sobriety;moderation", + "example_sentence_native": "Il a fait preuve de sobriété dans ses propos.", + "example_sentence_english": "He showed moderation in his words.", + "pos": "noun", + "word_frequency": 10940 + }, + { + "word": "séparatiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separatist", + "example_sentence_native": "Le mouvement séparatiste a gagné en popularité.", + "example_sentence_english": "The separatist movement gained popularity.", + "pos": "adjective", + "word_frequency": 10941 + }, + { + "word": "sépulture", + "article_with_word": "la sépulture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burial;grave", + "example_sentence_native": "La sépulture a eu lieu au cimetière local.", + "example_sentence_english": "The burial took place at the local cemetery.", + "pos": "noun", + "word_frequency": 10942 + }, + { + "word": "terminologie", + "article_with_word": "la terminologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terminology", + "example_sentence_native": "La terminologie médicale est complexe.", + "example_sentence_english": "Medical terminology is complex.", + "pos": "noun", + "word_frequency": 10944 + }, + { + "word": "terrifiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrifying", + "example_sentence_native": "Le film était absolument terrifiant.", + "example_sentence_english": "The movie was absolutely terrifying.", + "pos": "adjective", + "word_frequency": 10945 + }, + { + "word": "tissage", + "article_with_word": "le tissage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weaving", + "example_sentence_native": "Le tissage de tapis est un art ancien.", + "example_sentence_english": "Carpet weaving is an ancient art.", + "pos": "noun", + "word_frequency": 10949 + }, + { + "word": "tourbillon", + "article_with_word": "le tourbillon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whirlwind;vortex", + "example_sentence_native": "Un tourbillon de feuilles a balayé la rue.", + "example_sentence_english": "A whirlwind of leaves swept through the street.", + "pos": "noun", + "word_frequency": 10951 + }, + { + "word": "trafiquant", + "article_with_word": "le trafiquant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trafficker", + "example_sentence_native": "Le trafiquant a été arrêté à la frontière.", + "example_sentence_english": "The trafficker was arrested at the border.", + "pos": "noun", + "word_frequency": 10952 + }, + { + "word": "transitoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transitory;temporary", + "example_sentence_native": "Cette phase est purement transitoire.", + "example_sentence_english": "This phase is purely transitory.", + "pos": "adjective", + "word_frequency": 10953 + }, + { + "word": "valide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valid;able-bodied", + "example_sentence_native": "Votre passeport est-il toujours valide?", + "example_sentence_english": "Is your passport still valid?", + "pos": "adjective", + "word_frequency": 10954 + }, + { + "word": "visionnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visionary", + "example_sentence_native": "C'était une idée très visionnaire pour l'époque.", + "example_sentence_english": "It was a very visionary idea for the time.", + "pos": "adjective", + "word_frequency": 10955 + }, + { + "word": "écuyer", + "article_with_word": "l'écuyer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squire;equestrian", + "example_sentence_native": "L'écuyer a préparé le cheval pour le tournoi.", + "example_sentence_english": "The squire prepared the horse for the tournament.", + "pos": "noun", + "word_frequency": 10960 + }, + { + "word": "étincelle", + "article_with_word": "une étincelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spark", + "example_sentence_native": "Une étincelle a jailli du feu.", + "example_sentence_english": "A spark flew from the fire.", + "pos": "noun", + "word_frequency": 10961 + }, + { + "word": "ôter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove;to take off", + "example_sentence_native": "Il faut ôter ses chaussures avant d'entrer.", + "example_sentence_english": "You must take off your shoes before entering.", + "pos": "verb", + "word_frequency": 10962 + }, + { + "word": "ample", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ample;wide;extensive", + "example_sentence_native": "Elle portait une robe ample et confortable.", + "example_sentence_english": "She wore a wide and comfortable dress.", + "pos": "adjective", + "word_frequency": 10965 + }, + { + "word": "ardeur", + "article_with_word": "l'ardeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ardor;passion", + "example_sentence_native": "Il a travaillé avec beaucoup d'ardeur.", + "example_sentence_english": "He worked with great ardor.", + "pos": "noun", + "word_frequency": 10969 + }, + { + "word": "barbu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bearded", + "example_sentence_native": "L'homme barbu lisait un livre.", + "example_sentence_english": "The bearded man was reading a book.", + "pos": "adjective", + "word_frequency": 10971 + }, + { + "word": "blouse", + "article_with_word": "une blouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blouse;lab coat", + "example_sentence_native": "Elle portait une blouse blanche pour travailler.", + "example_sentence_english": "She wore a white lab coat for work.", + "pos": "noun", + "word_frequency": 10975 + }, + { + "word": "bride", + "article_with_word": "une bride", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bridle;flange;clamp", + "example_sentence_native": "Le cavalier a ajusté la bride de son cheval.", + "example_sentence_english": "The rider adjusted his horse's bridle.", + "pos": "noun", + "word_frequency": 10977 + }, + { + "word": "brusque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abrupt;sudden;blunt", + "example_sentence_native": "Sa réponse fut brusque et inattendue.", + "example_sentence_english": "His answer was abrupt and unexpected.", + "pos": "adjective", + "word_frequency": 10978 + }, + { + "word": "bruxellois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Brussels (adj.);from Brussels", + "example_sentence_native": "Il est fier d'être bruxellois.", + "example_sentence_english": "He is proud to be from Brussels.", + "pos": "adjective", + "word_frequency": 10979 + }, + { + "word": "canot", + "article_with_word": "un canot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dinghy;small boat", + "example_sentence_native": "Ils ont traversé le lac dans un petit canot.", + "example_sentence_english": "They crossed the lake in a small dinghy.", + "pos": "noun", + "word_frequency": 10983 + }, + { + "word": "collant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticky;tight-fitting", + "example_sentence_native": "Ce ruban adhésif est très collant.", + "example_sentence_english": "This adhesive tape is very sticky.", + "pos": "adjective", + "word_frequency": 10985 + }, + { + "word": "collet", + "article_with_word": "le collet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collar (of a shirt);snare (for animals)", + "example_sentence_native": "Il a relevé le collet de sa veste.", + "example_sentence_english": "He turned up the collar of his jacket.", + "pos": "noun", + "word_frequency": 10986 + }, + { + "word": "coloc", + "article_with_word": "un coloc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flatmate (informal)", + "example_sentence_native": "Mon coloc est parti en vacances.", + "example_sentence_english": "My flatmate went on vacation.", + "pos": "noun", + "word_frequency": 10987 + }, + { + "word": "conditionnement", + "article_with_word": "le conditionnement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "packaging;conditioning", + "example_sentence_native": "Le conditionnement des produits est très important.", + "example_sentence_english": "Product packaging is very important.", + "pos": "noun", + "word_frequency": 10988 + }, + { + "word": "corridor", + "article_with_word": "le corridor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corridor;hallway", + "example_sentence_native": "Le bureau se trouve au bout du corridor.", + "example_sentence_english": "The office is at the end of the corridor.", + "pos": "noun", + "word_frequency": 10990 + }, + { + "word": "diagramme", + "article_with_word": "le diagramme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagram;chart", + "example_sentence_native": "Le professeur a dessiné un diagramme au tableau.", + "example_sentence_english": "The teacher drew a diagram on the board.", + "pos": "noun", + "word_frequency": 10993 + }, + { + "word": "disperser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disperse;to scatter", + "example_sentence_native": "La police a dispersé la foule.", + "example_sentence_english": "The police dispersed the crowd.", + "pos": "verb", + "word_frequency": 10994 + }, + { + "word": "diversifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diversify", + "example_sentence_native": "Il est important de diversifier ses investissements.", + "example_sentence_english": "It is important to diversify one's investments.", + "pos": "verb", + "word_frequency": 10995 + }, + { + "word": "décadence", + "article_with_word": "la décadence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decadence;decline", + "example_sentence_native": "L'empire était en pleine décadence.", + "example_sentence_english": "The empire was in full decadence.", + "pos": "noun", + "word_frequency": 10997 + }, + { + "word": "déprimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depress;to get depressed", + "example_sentence_native": "La pluie me déprime.", + "example_sentence_english": "The rain depresses me.", + "pos": "verb", + "word_frequency": 10999 + }, + { + "word": "déstabiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destabilize", + "example_sentence_native": "La crise économique pourrait déstabiliser la région.", + "example_sentence_english": "The economic crisis could destabilize the region.", + "pos": "verb", + "word_frequency": 11000 + }, + { + "word": "dévorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to devour", + "example_sentence_native": "Le loup a dévoré sa proie.", + "example_sentence_english": "The wolf devoured its prey.", + "pos": "verb", + "word_frequency": 11001 + }, + { + "word": "ecologie", + "article_with_word": "l’écologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecology", + "example_sentence_native": "L’écologie est une science importante pour l’avenir.", + "example_sentence_english": "Ecology is an important science for the future.", + "pos": "noun", + "word_frequency": 11002 + }, + { + "word": "economique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "economic", + "example_sentence_native": "La situation économique du pays est difficile.", + "example_sentence_english": "The economic situation of the country is difficult.", + "pos": "adjective", + "word_frequency": 11003 + }, + { + "word": "ecrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to write", + "example_sentence_native": "J’aime écrire des lettres à mes amis.", + "example_sentence_english": "I like to write letters to my friends.", + "pos": "verb", + "word_frequency": 11004 + }, + { + "word": "effrayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to frighten", + "example_sentence_native": "Le bruit a effrayé les oiseaux.", + "example_sentence_english": "The noise frightened the birds.", + "pos": "verb", + "word_frequency": 11005 + }, + { + "word": "espionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spy", + "example_sentence_native": "Il a été accusé d’espionner pour un pays étranger.", + "example_sentence_english": "He was accused of spying for a foreign country.", + "pos": "verb", + "word_frequency": 11008 + }, + { + "word": "fasciner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fascinate", + "example_sentence_native": "Cette histoire me fascine.", + "example_sentence_english": "This story fascinates me.", + "pos": "verb", + "word_frequency": 11009 + }, + { + "word": "fatalité", + "article_with_word": "la fatalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fate;inevitability", + "example_sentence_native": "Il a accepté la fatalité de son destin.", + "example_sentence_english": "He accepted the inevitability of his destiny.", + "pos": "noun", + "word_frequency": 11010 + }, + { + "word": "galop", + "article_with_word": "le galop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gallop", + "example_sentence_native": "Le cheval est parti au grand galop.", + "example_sentence_english": "The horse set off at a full gallop.", + "pos": "noun", + "word_frequency": 11013 + }, + { + "word": "gaucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left-handed", + "example_sentence_native": "Mon frère est gaucher.", + "example_sentence_english": "My brother is left-handed.", + "pos": "adjective", + "word_frequency": 11016 + }, + { + "word": "geler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze", + "example_sentence_native": "Il fait si froid que l’eau va geler.", + "example_sentence_english": "It’s so cold that the water will freeze.", + "pos": "verb", + "word_frequency": 11017 + }, + { + "word": "glissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slippery", + "example_sentence_native": "Attention, le sol est glissant.", + "example_sentence_english": "Be careful, the floor is slippery.", + "pos": "adjective", + "word_frequency": 11018 + }, + { + "word": "glucose", + "article_with_word": "le glucose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glucose", + "example_sentence_native": "Le glucose est un sucre simple.", + "example_sentence_english": "Glucose is a simple sugar.", + "pos": "noun", + "word_frequency": 11019 + }, + { + "word": "habileté", + "article_with_word": "l’habileté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill;ability", + "example_sentence_native": "Il a montré une grande habileté dans ce domaine.", + "example_sentence_english": "He showed great skill in this area.", + "pos": "noun", + "word_frequency": 11021 + }, + { + "word": "hivernal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wintry;hibernal", + "example_sentence_native": "Nous avons eu un temps hivernal très rigoureux.", + "example_sentence_english": "We had very harsh wintry weather.", + "pos": "adjective", + "word_frequency": 11025 + }, + { + "word": "huître", + "article_with_word": "l’huître", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oyster", + "example_sentence_native": "J’adore manger des huîtres fraîches.", + "example_sentence_english": "I love eating fresh oysters.", + "pos": "noun", + "word_frequency": 11026 + }, + { + "word": "inaction", + "article_with_word": "l’inaction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inaction", + "example_sentence_native": "Son inaction a eu des conséquences graves.", + "example_sentence_english": "His inaction had serious consequences.", + "pos": "noun", + "word_frequency": 11028 + }, + { + "word": "incomplet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incomplete", + "example_sentence_native": "Le rapport est incomplet.", + "example_sentence_english": "The report is incomplete.", + "pos": "adjective", + "word_frequency": 11029 + }, + { + "word": "indésirable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undesirable", + "example_sentence_native": "Nous avons reçu des courriers indésirables.", + "example_sentence_english": "We received undesirable mail (spam).", + "pos": "adjective", + "word_frequency": 11030 + }, + { + "word": "infâme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infamous;disgraceful", + "example_sentence_native": "C’était un acte infâme.", + "example_sentence_english": "It was an infamous act.", + "pos": "adjective", + "word_frequency": 11031 + }, + { + "word": "jaguar", + "article_with_word": "le jaguar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaguar", + "example_sentence_native": "Le jaguar est un grand félin d’Amérique.", + "example_sentence_english": "The jaguar is a large feline from America.", + "pos": "noun", + "word_frequency": 11032 + }, + { + "word": "jargon", + "article_with_word": "le jargon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jargon", + "example_sentence_native": "Il utilise un jargon technique que je ne comprends pas.", + "example_sentence_english": "He uses technical jargon that I don’t understand.", + "pos": "noun", + "word_frequency": 11033 + }, + { + "word": "lambda", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "average;standard;generic", + "example_sentence_native": "C’est un citoyen lambda, sans particularité.", + "example_sentence_english": "He’s an average citizen, without any particularity.", + "pos": "adjective", + "word_frequency": 11037 + }, + { + "word": "lisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "readable", + "example_sentence_native": "Ce texte est très lisible.", + "example_sentence_english": "This text is very readable.", + "pos": "adjective", + "word_frequency": 11040 + }, + { + "word": "lithium", + "article_with_word": "le lithium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lithium", + "example_sentence_native": "Le lithium est utilisé dans les batteries.", + "example_sentence_english": "Lithium is used in batteries.", + "pos": "noun", + "word_frequency": 11041 + }, + { + "word": "luxueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "luxurious", + "example_sentence_native": "Ils ont acheté une voiture luxueuse.", + "example_sentence_english": "They bought a luxurious car.", + "pos": "adjective", + "word_frequency": 11043 + }, + { + "word": "maltraitance", + "article_with_word": "la maltraitance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mistreatment;abuse", + "example_sentence_native": "La maltraitance des animaux est inacceptable.", + "example_sentence_english": "Animal mistreatment is unacceptable.", + "pos": "noun", + "word_frequency": 11045 + }, + { + "word": "marginal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marginal", + "example_sentence_native": "C'est une idée marginale mais intéressante.", + "example_sentence_english": "It's a marginal but interesting idea.", + "pos": "adjective", + "word_frequency": 11046 + }, + { + "word": "mire", + "article_with_word": "la mire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sight;aim", + "example_sentence_native": "Il a mis la cible en ligne de mire.", + "example_sentence_english": "He put the target in his sights.", + "pos": "noun", + "word_frequency": 11048 + }, + { + "word": "obséder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obsess", + "example_sentence_native": "Cette idée l'obsède.", + "example_sentence_english": "This idea obsesses him.", + "pos": "verb", + "word_frequency": 11052 + }, + { + "word": "offshore", + "article_with_word": "l’offshore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offshore (as in offshore activities)", + "example_sentence_native": "Les activités offshore sont souvent controversées.", + "example_sentence_english": "Offshore activities are often controversial.", + "pos": "noun", + "word_frequency": 11053 + }, + { + "word": "omega", + "article_with_word": "l’oméga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omega", + "example_sentence_native": "L'oméga est la dernière lettre de l'alphabet grec.", + "example_sentence_english": "Omega is the last letter of the Greek alphabet.", + "pos": "noun", + "word_frequency": 11054 + }, + { + "word": "opium", + "article_with_word": "l’opium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opium", + "example_sentence_native": "L'opium est une substance narcotique.", + "example_sentence_english": "Opium is a narcotic substance.", + "pos": "noun", + "word_frequency": 11055 + }, + { + "word": "oxyde", + "article_with_word": "l’oxyde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oxide", + "example_sentence_native": "L'oxyde de fer est de la rouille.", + "example_sentence_english": "Iron oxide is rust.", + "pos": "noun", + "word_frequency": 11057 + }, + { + "word": "parleur", + "article_with_word": "le parleur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker;talker", + "example_sentence_native": "C'est un grand parleur mais peu d'action.", + "example_sentence_english": "He's a big talker but little action.", + "pos": "noun", + "word_frequency": 11058 + }, + { + "word": "pipeline", + "article_with_word": "le pipeline", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pipeline", + "example_sentence_native": "La construction du pipeline a été retardée.", + "example_sentence_english": "The pipeline construction was delayed.", + "pos": "noun", + "word_frequency": 11062 + }, + { + "word": "pool", + "article_with_word": "le pool", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pool (e.g.;resource pool)", + "example_sentence_native": "Nous avons un pool de talents dans notre équipe.", + "example_sentence_english": "We have a talent pool in our team.", + "pos": "noun", + "word_frequency": 11064 + }, + { + "word": "profitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profitable", + "example_sentence_native": "C'est une entreprise très profitable.", + "example_sentence_english": "It's a very profitable business.", + "pos": "adjective", + "word_frequency": 11065 + }, + { + "word": "préservatif", + "article_with_word": "le préservatif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condom", + "example_sentence_native": "L'utilisation du préservatif est importante pour la prévention.", + "example_sentence_english": "Condom use is important for prevention.", + "pos": "noun", + "word_frequency": 11066 + }, + { + "word": "region", + "article_with_word": "la région", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "region", + "example_sentence_native": "Cette région est connue pour ses vins.", + "example_sentence_english": "This region is known for its wines.", + "pos": "noun", + "word_frequency": 11067 + }, + { + "word": "rédemption", + "article_with_word": "la rédemption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redemption", + "example_sentence_native": "Il cherchait la rédemption après ses erreurs.", + "example_sentence_english": "He sought redemption after his mistakes.", + "pos": "noun", + "word_frequency": 11069 + }, + { + "word": "rêne", + "article_with_word": "la rêne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rein (of a horse)", + "example_sentence_native": "Il tenait les rênes du cheval fermement.", + "example_sentence_english": "He held the horse's reins firmly.", + "pos": "noun", + "word_frequency": 11070 + }, + { + "word": "savoureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasty;savory", + "example_sentence_native": "Ce plat est vraiment savoureux.", + "example_sentence_english": "This dish is really tasty.", + "pos": "adjective", + "word_frequency": 11071 + }, + { + "word": "simuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to simulate;to feign", + "example_sentence_native": "Il a simulé une maladie pour ne pas aller à l'école.", + "example_sentence_english": "He simulated an illness to avoid going to school.", + "pos": "verb", + "word_frequency": 11072 + }, + { + "word": "software", + "article_with_word": "le software", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "software", + "example_sentence_native": "Ce software est très utile.", + "example_sentence_english": "This software is very useful.", + "pos": "noun", + "word_frequency": 11075 + }, + { + "word": "sonnette", + "article_with_word": "la sonnette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doorbell", + "example_sentence_native": "J'ai sonné à la sonnette.", + "example_sentence_english": "I rang the doorbell.", + "pos": "noun", + "word_frequency": 11076 + }, + { + "word": "soustraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subtract;to remove", + "example_sentence_native": "Il faut soustraire 5 de 10.", + "example_sentence_english": "You have to subtract 5 from 10.", + "pos": "verb", + "word_frequency": 11077 + }, + { + "word": "split", + "article_with_word": "le split", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "split (e.g.;stock split)", + "example_sentence_native": "La société a annoncé un split d'actions.", + "example_sentence_english": "The company announced a stock split.", + "pos": "noun", + "word_frequency": 11078 + }, + { + "word": "step", + "article_with_word": "le step", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "step (as in aerobics)", + "example_sentence_native": "Je fais du step à la salle de sport.", + "example_sentence_english": "I do step aerobics at the gym.", + "pos": "noun", + "word_frequency": 11079 + }, + { + "word": "stimulant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulating", + "example_sentence_native": "C'est une discussion très stimulante.", + "example_sentence_english": "It's a very stimulating discussion.", + "pos": "adjective", + "word_frequency": 11081 + }, + { + "word": "surgir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emerge", + "example_sentence_native": "Un problème inattendu a surgi.", + "example_sentence_english": "An unexpected problem emerged.", + "pos": "verb", + "word_frequency": 11084 + }, + { + "word": "suspicion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspicion", + "example_sentence_native": "Il y avait une forte suspicion de fraude.", + "example_sentence_english": "There was a strong suspicion of fraud.", + "pos": "noun", + "word_frequency": 11085 + }, + { + "word": "tierce", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "third party (feminine)", + "example_sentence_native": "L'intervention d'une tierce partie était nécessaire.", + "example_sentence_english": "The intervention of a third party was necessary.", + "pos": "adjective", + "word_frequency": 11086 + }, + { + "word": "troublant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbing", + "example_sentence_native": "Ce film est assez troublant.", + "example_sentence_english": "This film is quite disturbing.", + "pos": "adjective", + "word_frequency": 11087 + }, + { + "word": "tsar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tsar", + "example_sentence_native": "Le tsar régnait sur un vaste empire.", + "example_sentence_english": "The tsar reigned over a vast empire.", + "pos": "noun", + "word_frequency": 11089 + }, + { + "word": "voilier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sailboat", + "example_sentence_native": "Nous avons loué un voilier pour les vacances.", + "example_sentence_english": "We rented a sailboat for the holidays.", + "pos": "noun", + "word_frequency": 11090 + }, + { + "word": "vénérable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venerable", + "example_sentence_native": "C'est un vieil homme vénérable respecté de tous.", + "example_sentence_english": "He is a venerable old man respected by everyone.", + "pos": "adjective", + "word_frequency": 11091 + }, + { + "word": "évangélique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evangelical", + "example_sentence_native": "Il appartient à une église évangélique.", + "example_sentence_english": "He belongs to an evangelical church.", + "pos": "adjective", + "word_frequency": 11094 + }, + { + "word": "alléger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lighten", + "example_sentence_native": "Il faut alléger la charge de travail.", + "example_sentence_english": "We need to lighten the workload.", + "pos": "verb", + "word_frequency": 11095 + }, + { + "word": "amande", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "almond", + "example_sentence_native": "J'aime les gâteaux aux amandes.", + "example_sentence_english": "I like almond cakes.", + "pos": "noun", + "word_frequency": 11096 + }, + { + "word": "analogue", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analogous", + "example_sentence_native": "La situation est analogue à celle de l'année dernière.", + "example_sentence_english": "The situation is analogous to last year's.", + "pos": "adjective", + "word_frequency": 11098 + }, + { + "word": "arroser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to water", + "example_sentence_native": "N'oublie pas d'arroser les plantes.", + "example_sentence_english": "Don't forget to water the plants.", + "pos": "verb", + "word_frequency": 11100 + }, + { + "word": "arête", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fish bone;ridge", + "example_sentence_native": "Attention, il y a une arête dans le poisson.", + "example_sentence_english": "Be careful, there's a fish bone in the fish.", + "pos": "noun", + "word_frequency": 11101 + }, + { + "word": "assembler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assemble", + "example_sentence_native": "Il faut assembler les pièces du meuble.", + "example_sentence_english": "You need to assemble the furniture parts.", + "pos": "verb", + "word_frequency": 11103 + }, + { + "word": "attaquant", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attacker;forward (sports)", + "example_sentence_native": "L'attaquant a marqué un but magnifique.", + "example_sentence_english": "The forward scored a magnificent goal.", + "pos": "noun", + "word_frequency": 11104 + }, + { + "word": "autiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autistic", + "example_sentence_native": "Elle travaille avec des enfants autistes.", + "example_sentence_english": "She works with autistic children.", + "pos": "adjective", + "word_frequency": 11105 + }, + { + "word": "bikini", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bikini", + "example_sentence_native": "Elle a acheté un nouveau bikini pour l'été.", + "example_sentence_english": "She bought a new bikini for the summer.", + "pos": "noun", + "word_frequency": 11108 + }, + { + "word": "bouffon", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jester;buffoon", + "example_sentence_native": "Le roi avait un bouffon pour le divertir.", + "example_sentence_english": "The king had a jester to entertain him.", + "pos": "noun", + "word_frequency": 11109 + }, + { + "word": "bourre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wadding;fluff", + "example_sentence_native": "La bourre de coton est utilisée pour le rembourrage.", + "example_sentence_english": "Cotton wadding is used for padding.", + "pos": "noun", + "word_frequency": 11110 + }, + { + "word": "brunet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dark-haired (masculine)", + "example_sentence_native": "Il a les cheveux brunets.", + "example_sentence_english": "He has dark-brown hair.", + "pos": "adjective", + "word_frequency": 11112 + }, + { + "word": "bénévolat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volunteering", + "example_sentence_native": "Le bénévolat est important pour la communauté.", + "example_sentence_english": "Volunteering is important for the community.", + "pos": "noun", + "word_frequency": 11113 + }, + { + "word": "cadran", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dial;clock face", + "example_sentence_native": "Le cadran de l'horloge est ancien.", + "example_sentence_english": "The clock face is old.", + "pos": "noun", + "word_frequency": 11114 + }, + { + "word": "challenger", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenger", + "example_sentence_native": "Le challenger a bien résisté au champion.", + "example_sentence_english": "The challenger put up a good fight against the champion.", + "pos": "noun", + "word_frequency": 11118 + }, + { + "word": "chaotique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaotic", + "example_sentence_native": "La situation est devenue chaotique après l'accident.", + "example_sentence_english": "The situation became chaotic after the accident.", + "pos": "adjective", + "word_frequency": 11119 + }, + { + "word": "coincer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jam;to wedge;to trap", + "example_sentence_native": "La porte est coincée.", + "example_sentence_english": "The door is jammed.", + "pos": "verb", + "word_frequency": 11123 + }, + { + "word": "confidence", + "article_with_word": "la confidence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confidence;secret", + "example_sentence_native": "Elle m'a fait une confidence.", + "example_sentence_english": "She told me a secret.", + "pos": "noun", + "word_frequency": 11124 + }, + { + "word": "conquérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conquering;victorious", + "example_sentence_native": "Il avait un esprit conquérant.", + "example_sentence_english": "He had a conquering spirit.", + "pos": "adjective", + "word_frequency": 11126 + }, + { + "word": "contaminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contaminate", + "example_sentence_native": "Le virus peut contaminer l'eau.", + "example_sentence_english": "The virus can contaminate the water.", + "pos": "verb", + "word_frequency": 11127 + }, + { + "word": "crabe", + "article_with_word": "le crabe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crab", + "example_sentence_native": "J'ai mangé du crabe hier.", + "example_sentence_english": "I ate crab yesterday.", + "pos": "noun", + "word_frequency": 11128 + }, + { + "word": "cuisinière", + "article_with_word": "la cuisinière", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stove;cook (female)", + "example_sentence_native": "La nouvelle cuisinière est très moderne.", + "example_sentence_english": "The new stove is very modern.", + "pos": "noun", + "word_frequency": 11129 + }, + { + "word": "digestif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digestive", + "example_sentence_native": "Cette tisane est très digestive.", + "example_sentence_english": "This herbal tea is very digestive.", + "pos": "adjective", + "word_frequency": 11132 + }, + { + "word": "disparaitre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappear", + "example_sentence_native": "Le magicien a fait disparaître la pièce.", + "example_sentence_english": "The magician made the coin disappear.", + "pos": "verb", + "word_frequency": 11134 + }, + { + "word": "divertir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to entertain;to amuse", + "example_sentence_native": "Le spectacle a bien diverti les enfants.", + "example_sentence_english": "The show entertained the children well.", + "pos": "verb", + "word_frequency": 11135 + }, + { + "word": "dominicain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dominican", + "example_sentence_native": "Il est d'origine dominicaine.", + "example_sentence_english": "He is of Dominican origin.", + "pos": "adjective", + "word_frequency": 11137 + }, + { + "word": "dong", + "article_with_word": "le dong", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dong (Vietnamese currency)", + "example_sentence_native": "La monnaie vietnamienne est le dong.", + "example_sentence_english": "The Vietnamese currency is the dong.", + "pos": "noun", + "word_frequency": 11138 + }, + { + "word": "déchoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fall;to decline;to forfeit", + "example_sentence_native": "Il a déchu de son rang.", + "example_sentence_english": "He fell from his rank.", + "pos": "verb", + "word_frequency": 11139 + }, + { + "word": "défectueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defective;faulty", + "example_sentence_native": "Le produit était défectueux.", + "example_sentence_english": "The product was defective.", + "pos": "adjective", + "word_frequency": 11140 + }, + { + "word": "dégénérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to degenerate", + "example_sentence_native": "La situation risque de dégénérer.", + "example_sentence_english": "The situation risks degenerating.", + "pos": "verb", + "word_frequency": 11141 + }, + { + "word": "désastreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disastrous", + "example_sentence_native": "Les conséquences ont été désastreuses.", + "example_sentence_english": "The consequences were disastrous.", + "pos": "adjective", + "word_frequency": 11142 + }, + { + "word": "détérioration", + "article_with_word": "la détérioration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deterioration", + "example_sentence_native": "On observe une détérioration de la qualité.", + "example_sentence_english": "We observe a deterioration in quality.", + "pos": "noun", + "word_frequency": 11143 + }, + { + "word": "dévouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devote;to dedicate", + "example_sentence_native": "Il se dévoue à sa famille.", + "example_sentence_english": "He devotes himself to his family.", + "pos": "verb", + "word_frequency": 11144 + }, + { + "word": "exiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exile", + "example_sentence_native": "Le roi a été exilé.", + "example_sentence_english": "The king was exiled.", + "pos": "verb", + "word_frequency": 11148 + }, + { + "word": "flingue", + "article_with_word": "le flingue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gun (slang)", + "example_sentence_native": "Il a sorti son flingue.", + "example_sentence_english": "He pulled out his gun.", + "pos": "noun", + "word_frequency": 11149 + }, + { + "word": "fluctuation", + "article_with_word": "la fluctuation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluctuation", + "example_sentence_native": "On observe des fluctuations de prix.", + "example_sentence_english": "We observe price fluctuations.", + "pos": "noun", + "word_frequency": 11150 + }, + { + "word": "folklore", + "article_with_word": "le folklore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folklore", + "example_sentence_native": "Le folklore local est très riche.", + "example_sentence_english": "The local folklore is very rich.", + "pos": "noun", + "word_frequency": 11151 + }, + { + "word": "gaspiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to waste;to squander", + "example_sentence_native": "Il ne faut pas gaspiller l'eau.", + "example_sentence_english": "We must not waste water.", + "pos": "verb", + "word_frequency": 11152 + }, + { + "word": "irm", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "MRI (Magnetic Resonance Imaging)", + "example_sentence_native": "Le médecin a demandé une IRM du genou.", + "example_sentence_english": "The doctor requested an MRI of the knee.", + "pos": "noun", + "word_frequency": 11162 + }, + { + "word": "kw", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kilowatt", + "example_sentence_native": "La puissance du moteur est de 100 kW.", + "example_sentence_english": "The engine's power is 100 kW.", + "pos": "noun", + "word_frequency": 11166 + }, + { + "word": "libéralisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalization", + "example_sentence_native": "La libéralisation du marché a eu des conséquences importantes.", + "example_sentence_english": "The liberalization of the market had significant consequences.", + "pos": "noun", + "word_frequency": 11168 + }, + { + "word": "maille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mesh;stitch;link", + "example_sentence_native": "Ce pull est fait de grosses mailles.", + "example_sentence_english": "This sweater is made of large stitches.", + "pos": "noun", + "word_frequency": 11172 + }, + { + "word": "masturbation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masturbation", + "example_sentence_native": "La masturbation est une pratique sexuelle courante.", + "example_sentence_english": "Masturbation is a common sexual practice.", + "pos": "noun", + "word_frequency": 11173 + }, + { + "word": "meme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meme", + "example_sentence_native": "Ce mème est devenu viral sur internet.", + "example_sentence_english": "This meme went viral on the internet.", + "pos": "noun", + "word_frequency": 11174 + }, + { + "word": "murmurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to murmur;to whisper", + "example_sentence_native": "Elle a commencé à murmurer des mots doux.", + "example_sentence_english": "She started to murmur sweet words.", + "pos": "verb", + "word_frequency": 11176 + }, + { + "word": "méfait", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misdeed;mischief", + "example_sentence_native": "Les enfants ont commis quelques méfaits dans le jardin.", + "example_sentence_english": "The children committed some misdeeds in the garden.", + "pos": "noun", + "word_frequency": 11177 + }, + { + "word": "native", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native", + "example_sentence_native": "Il parle français comme un locuteur natif.", + "example_sentence_english": "He speaks French like a native speaker.", + "pos": "adjective", + "word_frequency": 11178 + }, + { + "word": "nounou", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nanny;babysitter", + "example_sentence_native": "La nounou s'occupe des enfants l'après-midi.", + "example_sentence_english": "The nanny takes care of the children in the afternoon.", + "pos": "noun", + "word_frequency": 11179 + }, + { + "word": "nullité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nullity;worthlessness", + "example_sentence_native": "Son argument était d'une nullité affligeante.", + "example_sentence_english": "His argument was of an appalling nullity.", + "pos": "noun", + "word_frequency": 11180 + }, + { + "word": "paillette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sequin;glitter;flake", + "example_sentence_native": "Sa robe était couverte de paillettes.", + "example_sentence_english": "Her dress was covered in sequins.", + "pos": "noun", + "word_frequency": 11184 + }, + { + "word": "paupière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyelid", + "example_sentence_native": "Elle a fermé les paupières pour dormir.", + "example_sentence_english": "She closed her eyelids to sleep.", + "pos": "noun", + "word_frequency": 11186 + }, + { + "word": "persistance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistence", + "example_sentence_native": "Sa persistance a finalement payé.", + "example_sentence_english": "His persistence finally paid off.", + "pos": "noun", + "word_frequency": 11187 + }, + { + "word": "pixel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pixel", + "example_sentence_native": "L'écran a une haute résolution avec beaucoup de pixels.", + "example_sentence_english": "The screen has a high resolution with many pixels.", + "pos": "noun", + "word_frequency": 11190 + }, + { + "word": "pointu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pointed;sharp", + "example_sentence_native": "Le crayon a une mine très pointue.", + "example_sentence_english": "The pencil has a very sharp lead.", + "pos": "adj", + "word_frequency": 11191 + }, + { + "word": "prononcé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pronounced;strong;marked", + "example_sentence_native": "Il a un accent très prononcé.", + "example_sentence_english": "He has a very pronounced accent.", + "pos": "adj", + "word_frequency": 11192 + }, + { + "word": "prédiction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prediction", + "example_sentence_native": "Sa prédiction s'est avérée exacte.", + "example_sentence_english": "His prediction turned out to be accurate.", + "pos": "noun", + "word_frequency": 11193 + }, + { + "word": "prétentieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretentious", + "example_sentence_native": "Il est souvent perçu comme prétentieux.", + "example_sentence_english": "He is often perceived as pretentious.", + "pos": "adj", + "word_frequency": 11194 + }, + { + "word": "rafraîchir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refresh;to cool down", + "example_sentence_native": "J'ai besoin de me rafraîchir après cette longue marche.", + "example_sentence_english": "I need to refresh myself after this long walk.", + "pos": "verb", + "word_frequency": 11196 + }, + { + "word": "rapporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reported;brought back", + "example_sentence_native": "C'est une information rapportée par les médias.", + "example_sentence_english": "This is information reported by the media.", + "pos": "adj", + "word_frequency": 11197 + }, + { + "word": "rattrapage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catch-up;remedial class", + "example_sentence_native": "Il doit faire du rattrapage en mathématiques.", + "example_sentence_english": "He has to do catch-up in mathematics.", + "pos": "noun", + "word_frequency": 11198 + }, + { + "word": "recruté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruited", + "example_sentence_native": "Les nouveaux employés recrutés sont très motivés.", + "example_sentence_english": "The newly recruited employees are very motivated.", + "pos": "adj", + "word_frequency": 11199 + }, + { + "word": "relax", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxed", + "example_sentence_native": "Je me sens très relax après cette séance de yoga.", + "example_sentence_english": "I feel very relaxed after this yoga session.", + "pos": "adj", + "word_frequency": 11200 + }, + { + "word": "relecture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proofreading", + "example_sentence_native": "La relecture du manuscrit est essentielle avant la publication.", + "example_sentence_english": "The proofreading of the manuscript is essential before publication.", + "pos": "noun", + "word_frequency": 11201 + }, + { + "word": "renvoyé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismissed", + "example_sentence_native": "Il a été renvoyé de son poste.", + "example_sentence_english": "He was dismissed from his position.", + "pos": "adj", + "word_frequency": 11203 + }, + { + "word": "revendiqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "claimed", + "example_sentence_native": "L'attaque a été revendiquée par un groupe terroriste.", + "example_sentence_english": "The attack was claimed by a terrorist group.", + "pos": "adj", + "word_frequency": 11205 + }, + { + "word": "revolver", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revolver", + "example_sentence_native": "Le détective a trouvé un vieux revolver sous le lit.", + "example_sentence_english": "The detective found an old revolver under the bed.", + "pos": "noun", + "word_frequency": 11206 + }, + { + "word": "revêtir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to put on;to assume", + "example_sentence_native": "Cette décision revêt une grande importance.", + "example_sentence_english": "This decision takes on great importance.", + "pos": "verb", + "word_frequency": 11207 + }, + { + "word": "royauté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royalty;monarchy", + "example_sentence_native": "La royauté a été abolie en France.", + "example_sentence_english": "Monarchy was abolished in France.", + "pos": "noun", + "word_frequency": 11209 + }, + { + "word": "rustique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rustic", + "example_sentence_native": "Ils ont acheté une petite maison rustique à la campagne.", + "example_sentence_english": "They bought a small rustic house in the countryside.", + "pos": "adj", + "word_frequency": 11210 + }, + { + "word": "râle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "death rattle;groan", + "example_sentence_native": "On entendait le râle du vieil homme.", + "example_sentence_english": "We could hear the old man's death rattle.", + "pos": "noun", + "word_frequency": 11211 + }, + { + "word": "réveillon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "New Year's Eve;Christmas Eve dinner", + "example_sentence_native": "Nous allons fêter le réveillon de Noël en famille.", + "example_sentence_english": "We are going to celebrate Christmas Eve dinner with family.", + "pos": "noun", + "word_frequency": 11212 + }, + { + "word": "saloperie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "filth;nasty thing", + "example_sentence_native": "C'est une vraie saloperie ce truc.", + "example_sentence_english": "This thing is a real piece of crap.", + "pos": "noun", + "word_frequency": 11214 + }, + { + "word": "scission", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "split;schism", + "example_sentence_native": "Une scission a eu lieu au sein du parti politique.", + "example_sentence_english": "A split occurred within the political party.", + "pos": "noun", + "word_frequency": 11216 + }, + { + "word": "secoué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaken;shocked", + "example_sentence_native": "Il était très secoué par la nouvelle.", + "example_sentence_english": "He was very shaken by the news.", + "pos": "adj", + "word_frequency": 11217 + }, + { + "word": "soupirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sigh", + "example_sentence_native": "Elle a soupiré de soulagement.", + "example_sentence_english": "She sighed with relief.", + "pos": "verb", + "word_frequency": 11221 + }, + { + "word": "subjectif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjective", + "example_sentence_native": "Son opinion est très subjective.", + "example_sentence_english": "His opinion is very subjective.", + "pos": "adj", + "word_frequency": 11223 + }, + { + "word": "subtilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subtlety", + "example_sentence_native": "Il a apprécié la subtilité de son humour.", + "example_sentence_english": "He appreciated the subtlety of her humor.", + "pos": "noun", + "word_frequency": 11224 + }, + { + "word": "suppléant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute;deputy", + "example_sentence_native": "Le député suppléant a pris la parole.", + "example_sentence_english": "The substitute deputy spoke.", + "pos": "noun", + "word_frequency": 11226 + }, + { + "word": "systémique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "systemic", + "example_sentence_native": "Il faut aborder le problème de manière systémique.", + "example_sentence_english": "We must approach the problem systemically.", + "pos": "adj", + "word_frequency": 11227 + }, + { + "word": "sécession", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secession", + "example_sentence_native": "La sécession de la région a été votée.", + "example_sentence_english": "The secession of the region was voted.", + "pos": "noun", + "word_frequency": 11228 + }, + { + "word": "ségrégation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "segregation", + "example_sentence_native": "La ségrégation raciale est une injustice.", + "example_sentence_english": "Racial segregation is an injustice.", + "pos": "noun", + "word_frequency": 11229 + }, + { + "word": "tabasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to beat up", + "example_sentence_native": "Il s'est fait tabasser dans la rue.", + "example_sentence_english": "He got beaten up in the street.", + "pos": "verb", + "word_frequency": 11230 + }, + { + "word": "tandem", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tandem", + "example_sentence_native": "Ils ont fait une balade à vélo en tandem.", + "example_sentence_english": "They went for a bike ride on a tandem.", + "pos": "noun", + "word_frequency": 11231 + }, + { + "word": "théologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theological", + "example_sentence_native": "Il étudie les questions théologiques.", + "example_sentence_english": "He studies theological questions.", + "pos": "adj", + "word_frequency": 11233 + }, + { + "word": "titré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titled;qualified", + "example_sentence_native": "C'est un athlète très titré.", + "example_sentence_english": "He is a highly titled athlete.", + "pos": "adj", + "word_frequency": 11235 + }, + { + "word": "unification", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unification", + "example_sentence_native": "L'unification de l'Allemagne a eu lieu en 1990.", + "example_sentence_english": "The unification of Germany took place in 1990.", + "pos": "noun", + "word_frequency": 11239 + }, + { + "word": "vingtième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twentieth", + "example_sentence_native": "C'est le vingtième jour du mois.", + "example_sentence_english": "It's the twentieth day of the month.", + "pos": "num", + "word_frequency": 11240 + }, + { + "word": "éclatement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bursting;explosion;fragmentation", + "example_sentence_native": "L'éclatement de la bulle immobilière a causé une crise.", + "example_sentence_english": "The bursting of the housing bubble caused a crisis.", + "pos": "noun", + "word_frequency": 11242 + }, + { + "word": "égoïsme", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "egoism;selfishness", + "example_sentence_native": "Son égoïsme l'empêche de penser aux autres.", + "example_sentence_english": "His selfishness prevents him from thinking about others.", + "pos": "noun", + "word_frequency": 11243 + }, + { + "word": "éponyme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eponymous", + "example_sentence_native": "Le personnage éponyme donne son nom à l'œuvre.", + "example_sentence_english": "The eponymous character gives his name to the work.", + "pos": "adj", + "word_frequency": 11244 + }, + { + "word": "étatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state (adj.);governmental", + "example_sentence_native": "Les entreprises étatiques jouent un rôle important dans l'économie.", + "example_sentence_english": "State-owned companies play an important role in the economy.", + "pos": "adj", + "word_frequency": 11245 + }, + { + "word": "étudié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studied;well-thought-out", + "example_sentence_native": "Son approche était très étudiée et méthodique.", + "example_sentence_english": "His approach was very studied and methodical.", + "pos": "adj", + "word_frequency": 11246 + }, + { + "word": "éveiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to awaken;to arouse", + "example_sentence_native": "Le bruit a éveillé le bébé.", + "example_sentence_english": "The noise awakened the baby.", + "pos": "verb", + "word_frequency": 11247 + }, + { + "word": "accumulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulated", + "example_sentence_native": "Il y a une quantité accumulée de poussière sous le lit.", + "example_sentence_english": "There is an accumulated amount of dust under the bed.", + "pos": "adj", + "word_frequency": 11249 + }, + { + "word": "altération", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alteration;deterioration", + "example_sentence_native": "L'altération des données peut avoir de graves conséquences.", + "example_sentence_english": "Data alteration can have serious consequences.", + "pos": "noun", + "word_frequency": 11251 + }, + { + "word": "ancrage", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchoring;embedment", + "example_sentence_native": "L'ancrage de cette idée dans la culture est profond.", + "example_sentence_english": "The anchoring of this idea in the culture is deep.", + "pos": "noun", + "word_frequency": 11252 + }, + { + "word": "anxieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anxious", + "example_sentence_native": "Il était très anxieux avant son examen.", + "example_sentence_english": "He was very anxious before his exam.", + "pos": "adj", + "word_frequency": 11254 + }, + { + "word": "appuyé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supported;emphasized;strong", + "example_sentence_native": "Il a fait un effort appuyé pour réussir.", + "example_sentence_english": "He made a strong effort to succeed.", + "pos": "adj", + "word_frequency": 11256 + }, + { + "word": "ardent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ardent;fervent;burning", + "example_sentence_native": "Il est un défenseur ardent de la liberté.", + "example_sentence_english": "He is an ardent defender of freedom.", + "pos": "adj", + "word_frequency": 11257 + }, + { + "word": "assassiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assassinated", + "example_sentence_native": "Le roi a été assassiné par un complot.", + "example_sentence_english": "The king was assassinated by a plot.", + "pos": "adj", + "word_frequency": 11259 + }, + { + "word": "atrocité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atrocity", + "example_sentence_native": "Les atrocités de la guerre sont inacceptables.", + "example_sentence_english": "The atrocities of war are unacceptable.", + "pos": "noun", + "word_frequency": 11260 + }, + { + "word": "attestation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certificate;attestation", + "example_sentence_native": "Vous devez présenter une attestation de domicile.", + "example_sentence_english": "You must present a proof of residence.", + "pos": "noun", + "word_frequency": 11261 + }, + { + "word": "autobiographie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autobiography", + "example_sentence_native": "Elle a écrit une autobiographie fascinante.", + "example_sentence_english": "She wrote a fascinating autobiography.", + "pos": "noun", + "word_frequency": 11262 + }, + { + "word": "balnéaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seaside;spa (adj.)", + "example_sentence_native": "Nous avons passé nos vacances dans une station balnéaire.", + "example_sentence_english": "We spent our holidays in a seaside resort.", + "pos": "adj", + "word_frequency": 11263 + }, + { + "word": "blason", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coat of arms;blazon", + "example_sentence_native": "Le blason de la famille est très ancien.", + "example_sentence_english": "The family's coat of arms is very old.", + "pos": "noun", + "word_frequency": 11268 + }, + { + "word": "bordée", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volley;squall;broadside", + "example_sentence_native": "Une forte bordée de neige a recouvert la ville.", + "example_sentence_english": "A heavy squall of snow covered the city.", + "pos": "noun", + "word_frequency": 11270 + }, + { + "word": "bowling", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowling", + "example_sentence_native": "Nous allons faire du bowling ce soir.", + "example_sentence_english": "We are going bowling tonight.", + "pos": "noun", + "word_frequency": 11271 + }, + { + "word": "boîtier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "case;housing;box", + "example_sentence_native": "Le boîtier de l'ordinateur est noir.", + "example_sentence_english": "The computer case is black.", + "pos": "noun", + "word_frequency": 11272 + }, + { + "word": "brousse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bush;scrubland", + "example_sentence_native": "Ils vivent dans la brousse, loin de la ville.", + "example_sentence_english": "They live in the bush, far from the city.", + "pos": "noun", + "word_frequency": 11273 + }, + { + "word": "cadenas", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "padlock", + "example_sentence_native": "J'ai mis un cadenas sur ma valise.", + "example_sentence_english": "I put a padlock on my suitcase.", + "pos": "noun", + "word_frequency": 11275 + }, + { + "word": "caprice", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whim;caprice", + "example_sentence_native": "Elle a eu un caprice et a refusé de manger.", + "example_sentence_english": "She had a whim and refused to eat.", + "pos": "noun", + "word_frequency": 11277 + }, + { + "word": "chapiteau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "big top;marquee;capital (of a column)", + "example_sentence_native": "Le cirque a installé son chapiteau sur la place.", + "example_sentence_english": "The circus set up its big top in the square.", + "pos": "noun", + "word_frequency": 11278 + }, + { + "word": "chlore", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chlorine", + "example_sentence_native": "L'eau de la piscine contient du chlore.", + "example_sentence_english": "The pool water contains chlorine.", + "pos": "noun", + "word_frequency": 11279 + }, + { + "word": "comparatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparative", + "example_sentence_native": "Il a fait une étude comparative des deux systèmes.", + "example_sentence_english": "He conducted a comparative study of the two systems.", + "pos": "adj", + "word_frequency": 11282 + }, + { + "word": "confronté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confronted;faced", + "example_sentence_native": "Il s'est retrouvé confronté à une situation difficile.", + "example_sentence_english": "He found himself confronted with a difficult situation.", + "pos": "adj", + "word_frequency": 11284 + }, + { + "word": "coïncider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coincide", + "example_sentence_native": "Nos opinions coïncident sur ce point.", + "example_sentence_english": "Our opinions coincide on this point.", + "pos": "verb", + "word_frequency": 11285 + }, + { + "word": "dangereusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dangerously", + "example_sentence_native": "Il conduit dangereusement vite.", + "example_sentence_english": "He drives dangerously fast.", + "pos": "adv", + "word_frequency": 11287 + }, + { + "word": "destructeur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destructive", + "example_sentence_native": "Les inondations ont eu un effet destructeur sur la ville.", + "example_sentence_english": "The floods had a destructive effect on the city.", + "pos": "adj", + "word_frequency": 11289 + }, + { + "word": "digue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dike;levee", + "example_sentence_native": "La digue protège la ville des inondations.", + "example_sentence_english": "The dike protects the city from floods.", + "pos": "noun", + "word_frequency": 11290 + }, + { + "word": "déboucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unblock;to lead to;to open (a bottle)", + "example_sentence_native": "Cette rue débouche sur la place principale.", + "example_sentence_english": "This street leads to the main square.", + "pos": "verb", + "word_frequency": 11294 + }, + { + "word": "décréter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decree", + "example_sentence_native": "Le gouvernement a décrété un jour de deuil national.", + "example_sentence_english": "The government decreed a day of national mourning.", + "pos": "verb", + "word_frequency": 11295 + }, + { + "word": "décédé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deceased", + "example_sentence_native": "La personne décédée était un artiste renommé.", + "example_sentence_english": "The deceased person was a renowned artist.", + "pos": "adj", + "word_frequency": 11296 + }, + { + "word": "démence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dementia;madness", + "example_sentence_native": "La démence est une maladie neurodégénérative.", + "example_sentence_english": "Dementia is a neurodegenerative disease.", + "pos": "noun", + "word_frequency": 11297 + }, + { + "word": "egalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "also;equally", + "example_sentence_native": "Je voudrais également un café, s'il vous plaît.", + "example_sentence_english": "I would also like a coffee, please.", + "pos": "adv", + "word_frequency": 11299 + }, + { + "word": "emballé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "packed;wrapped;enthusiastic", + "example_sentence_native": "Le cadeau était joliment emballé.", + "example_sentence_english": "The gift was beautifully wrapped.", + "pos": "adj", + "word_frequency": 11301 + }, + { + "word": "empirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worsen;to get worse", + "example_sentence_native": "La situation a empiré avec le temps.", + "example_sentence_english": "The situation worsened over time.", + "pos": "verb", + "word_frequency": 11303 + }, + { + "word": "empoisonnement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poisoning", + "example_sentence_native": "Il a été victime d'un empoisonnement alimentaire.", + "example_sentence_english": "He was a victim of food poisoning.", + "pos": "noun", + "word_frequency": 11304 + }, + { + "word": "entraîné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trained;caused", + "example_sentence_native": "L'athlète est très bien entraîné.", + "example_sentence_english": "The athlete is very well trained.", + "pos": "adj", + "word_frequency": 11305 + }, + { + "word": "envier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to envy", + "example_sentence_native": "J'envie sa capacité à apprendre si vite.", + "example_sentence_english": "I envy his ability to learn so quickly.", + "pos": "verb", + "word_frequency": 11306 + }, + { + "word": "erroné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erroneous;mistaken", + "example_sentence_native": "Cette information est complètement erronée.", + "example_sentence_english": "This information is completely erroneous.", + "pos": "adj", + "word_frequency": 11307 + }, + { + "word": "fade", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bland;tasteless;dull", + "example_sentence_native": "Ce plat est un peu fade.", + "example_sentence_english": "This dish is a bit bland.", + "pos": "adj", + "word_frequency": 11309 + }, + { + "word": "faisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible;doable", + "example_sentence_native": "Ce projet semble tout à fait faisable.", + "example_sentence_english": "This project seems entirely feasible.", + "pos": "adj", + "word_frequency": 11310 + }, + { + "word": "gêné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embarrassed;bothered;uncomfortable", + "example_sentence_native": "Je me sens un peu gêné de demander ça.", + "example_sentence_english": "I feel a bit embarrassed to ask that.", + "pos": "adj", + "word_frequency": 11319 + }, + { + "word": "habité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhabited", + "example_sentence_native": "Cette maison a l'air habitée.", + "example_sentence_english": "This house looks inhabited.", + "pos": "adj", + "word_frequency": 11320 + }, + { + "word": "hypnose", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypnosis", + "example_sentence_native": "Elle a suivi une séance d'hypnose pour arrêter de fumer.", + "example_sentence_english": "She had a hypnosis session to quit smoking.", + "pos": "noun", + "word_frequency": 11325 + }, + { + "word": "hérésie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heresy", + "example_sentence_native": "Dire que la Terre est plate est une hérésie scientifique.", + "example_sentence_english": "Saying the Earth is flat is a scientific heresy.", + "pos": "noun", + "word_frequency": 11327 + }, + { + "word": "inauguré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaugurated", + "example_sentence_native": "Le nouveau bâtiment a été inauguré hier.", + "example_sentence_english": "The new building was inaugurated yesterday.", + "pos": "adj", + "word_frequency": 11328 + }, + { + "word": "inefficace", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ineffective", + "example_sentence_native": "Cette méthode est inefficace pour résoudre le problème.", + "example_sentence_english": "This method is ineffective for solving the problem.", + "pos": "adj", + "word_frequency": 11330 + }, + { + "word": "inexistant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonexistent", + "example_sentence_native": "Le soutien du public était quasiment inexistant.", + "example_sentence_english": "Public support was almost nonexistent.", + "pos": "adj", + "word_frequency": 11331 + }, + { + "word": "insensé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senseless", + "example_sentence_native": "C'est une idée complètement insensée.", + "example_sentence_english": "It's a completely senseless idea.", + "pos": "adj", + "word_frequency": 11333 + }, + { + "word": "instructeur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instructor", + "example_sentence_native": "L'instructeur nous a montré comment utiliser l'équipement.", + "example_sentence_english": "The instructor showed us how to use the equipment.", + "pos": "noun", + "word_frequency": 11334 + }, + { + "word": "intimider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intimidate", + "example_sentence_native": "Il ne faut pas se laisser intimider par les difficultés.", + "example_sentence_english": "One must not be intimidated by difficulties.", + "pos": "verb", + "word_frequency": 11335 + }, + { + "word": "introuvable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nowhere to be found", + "example_sentence_native": "Mon portefeuille est introuvable.", + "example_sentence_english": "My wallet is nowhere to be found.", + "pos": "adj", + "word_frequency": 11336 + }, + { + "word": "kabyle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Kabyle", + "example_sentence_native": "Il parle le kabyle couramment.", + "example_sentence_english": "He speaks Kabyle fluently.", + "pos": "noun", + "word_frequency": 11339 + }, + { + "word": "libertaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libertarian", + "example_sentence_native": "Ses idées sont très libertaires.", + "example_sentence_english": "His ideas are very libertarian.", + "pos": "adj", + "word_frequency": 11342 + }, + { + "word": "liturgie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liturgy", + "example_sentence_native": "La liturgie de la messe a été modifiée.", + "example_sentence_english": "The liturgy of the mass has been modified.", + "pos": "noun", + "word_frequency": 11343 + }, + { + "word": "lux", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "lux", + "example_sentence_native": "L'éclairage est mesuré en lux.", + "example_sentence_english": "Lighting is measured in lux.", + "pos": "noun", + "word_frequency": 11344 + }, + { + "word": "léopard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leopard", + "example_sentence_native": "Le léopard est un animal majestueux.", + "example_sentence_english": "The leopard is a majestic animal.", + "pos": "noun", + "word_frequency": 11345 + }, + { + "word": "maîtrisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastered", + "example_sentence_native": "La situation est désormais maîtrisée.", + "example_sentence_english": "The situation is now under control.", + "pos": "adj", + "word_frequency": 11350 + }, + { + "word": "mécontent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unhappy", + "example_sentence_native": "Il était mécontent du service.", + "example_sentence_english": "He was unhappy with the service.", + "pos": "adj", + "word_frequency": 11353 + }, + { + "word": "naturaliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalist", + "example_sentence_native": "C'est une approche naturaliste de l'art.", + "example_sentence_english": "It's a naturalist approach to art.", + "pos": "adj", + "word_frequency": 11355 + }, + { + "word": "omis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omitted", + "example_sentence_native": "Certains détails ont été omis dans le rapport.", + "example_sentence_english": "Some details were omitted from the report.", + "pos": "adj", + "word_frequency": 11356 + }, + { + "word": "onéreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expensive", + "example_sentence_native": "L'entretien de cette voiture est très onéreux.", + "example_sentence_english": "The maintenance of this car is very expensive.", + "pos": "adj", + "word_frequency": 11357 + }, + { + "word": "opéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operated (on)", + "example_sentence_native": "Le patient a été opéré du genou.", + "example_sentence_english": "The patient had knee surgery.", + "pos": "adj", + "word_frequency": 11358 + }, + { + "word": "parlé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spoken", + "example_sentence_native": "Le français parlé est différent du français écrit.", + "example_sentence_english": "Spoken French is different from written French.", + "pos": "adj", + "word_frequency": 11360 + }, + { + "word": "patch", + "article_with_word": "le patch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patch", + "example_sentence_native": "Il a appliqué un patch sur son bras.", + "example_sentence_english": "He applied a patch to his arm.", + "pos": "noun", + "word_frequency": 11361 + }, + { + "word": "paye", + "article_with_word": "la paye", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pay;salary", + "example_sentence_native": "J'attends ma paye à la fin du mois.", + "example_sentence_english": "I'm waiting for my pay at the end of the month.", + "pos": "noun", + "word_frequency": 11362 + }, + { + "word": "perché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perched;high up", + "example_sentence_native": "L'oiseau était perché sur une branche.", + "example_sentence_english": "The bird was perched on a branch.", + "pos": "adj", + "word_frequency": 11363 + }, + { + "word": "piqûre", + "article_with_word": "la piqûre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sting;injection", + "example_sentence_native": "J'ai eu une piqûre de moustique.", + "example_sentence_english": "I got a mosquito sting.", + "pos": "noun", + "word_frequency": 11365 + }, + { + "word": "piégé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trapped;booby-trapped", + "example_sentence_native": "Le coffre était piégé.", + "example_sentence_english": "The safe was booby-trapped.", + "pos": "adj", + "word_frequency": 11366 + }, + { + "word": "poignarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stab", + "example_sentence_native": "Il a été accusé d'avoir poignardé sa victime.", + "example_sentence_english": "He was accused of having stabbed his victim.", + "pos": "verb", + "word_frequency": 11367 + }, + { + "word": "poli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polite;polished", + "example_sentence_native": "Il est toujours très poli avec tout le monde.", + "example_sentence_english": "He is always very polite with everyone.", + "pos": "adj", + "word_frequency": 11368 + }, + { + "word": "portuaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "port (adj.);harbor", + "example_sentence_native": "L'activité portuaire est essentielle pour l'économie locale.", + "example_sentence_english": "Port activity is essential for the local economy.", + "pos": "adj", + "word_frequency": 11369 + }, + { + "word": "prieuré", + "article_with_word": "le prieuré", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priory", + "example_sentence_native": "Le vieux prieuré a été transformé en hôtel.", + "example_sentence_english": "The old priory was converted into a hotel.", + "pos": "noun", + "word_frequency": 11370 + }, + { + "word": "protestantisme", + "article_with_word": "le protestantisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Protestantism", + "example_sentence_native": "Le protestantisme est une branche du christianisme.", + "example_sentence_english": "Protestantism is a branch of Christianity.", + "pos": "noun", + "word_frequency": 11371 + }, + { + "word": "prud'homme", + "article_with_word": "le prud'homme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labor court judge;councilor", + "example_sentence_native": "Il a porté son affaire devant les prud'hommes.", + "example_sentence_english": "He took his case to the labor court.", + "pos": "noun", + "word_frequency": 11372 + }, + { + "word": "prélever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deduct;to collect;to sample", + "example_sentence_native": "La banque va prélever les frais directement sur votre compte.", + "example_sentence_english": "The bank will deduct the fees directly from your account.", + "pos": "verb", + "word_frequency": 11373 + }, + { + "word": "qualificatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualifying;descriptive", + "example_sentence_native": "Un adjectif qualificatif décrit un nom.", + "example_sentence_english": "A qualifying adjective describes a noun.", + "pos": "adj", + "word_frequency": 11374 + }, + { + "word": "rade", + "article_with_word": "la rade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "roadstead;harbor", + "example_sentence_native": "Les navires attendaient dans la rade.", + "example_sentence_english": "The ships were waiting in the roadstead.", + "pos": "noun", + "word_frequency": 11375 + }, + { + "word": "recensé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counted;surveyed;listed", + "example_sentence_native": "Toutes les espèces rares ont été recensées.", + "example_sentence_english": "All rare species have been listed.", + "pos": "adj", + "word_frequency": 11377 + }, + { + "word": "rectangle", + "article_with_word": "le rectangle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rectangle", + "example_sentence_native": "Dessine un rectangle sur la feuille.", + "example_sentence_english": "Draw a rectangle on the sheet.", + "pos": "noun", + "word_frequency": 11378 + }, + { + "word": "redistribution", + "article_with_word": "la redistribution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redistribution", + "example_sentence_native": "La redistribution des richesses est un sujet de débat.", + "example_sentence_english": "The redistribution of wealth is a subject of debate.", + "pos": "noun", + "word_frequency": 11379 + }, + { + "word": "renouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to renew;to re-establish", + "example_sentence_native": "Ils ont renoué le dialogue après des années.", + "example_sentence_english": "They re-established dialogue after years.", + "pos": "verb", + "word_frequency": 11380 + }, + { + "word": "rhinocéros", + "article_with_word": "le rhinocéros", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhinoceros", + "example_sentence_native": "Le rhinocéros est un animal en voie de disparition.", + "example_sentence_english": "The rhinoceros is an endangered animal.", + "pos": "noun", + "word_frequency": 11381 + }, + { + "word": "role", + "article_with_word": "le rôle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "role;part", + "example_sentence_native": "Il a joué un rôle important dans le film.", + "example_sentence_english": "He played an important role in the film.", + "pos": "noun", + "word_frequency": 11382 + }, + { + "word": "régence", + "article_with_word": "la régence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regency", + "example_sentence_native": "La période de la Régence fut une époque de grands changements.", + "example_sentence_english": "The Regency period was a time of great changes.", + "pos": "noun", + "word_frequency": 11383 + }, + { + "word": "sav", + "article_with_word": "le SAV", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customer service (after-sales)", + "example_sentence_native": "J'ai contacté le SAV pour mon problème de téléphone.", + "example_sentence_english": "I contacted customer service for my phone problem.", + "pos": "noun", + "word_frequency": 11384 + }, + { + "word": "save", + "article_with_word": "la save", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "save (game)", + "example_sentence_native": "N'oublie pas de faire une save avant de quitter le jeu.", + "example_sentence_english": "Don't forget to make a save before quitting the game.", + "pos": "noun", + "word_frequency": 11385 + }, + { + "word": "septentrional", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "northern", + "example_sentence_native": "Les régions septentrionales sont souvent plus froides.", + "example_sentence_english": "Northern regions are often colder.", + "pos": "adj", + "word_frequency": 11386 + }, + { + "word": "sifflet", + "article_with_word": "le sifflet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whistle", + "example_sentence_native": "L'arbitre a soufflé dans son sifflet.", + "example_sentence_english": "The referee blew his whistle.", + "pos": "noun", + "word_frequency": 11388 + }, + { + "word": "skate", + "article_with_word": "le skate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skateboard", + "example_sentence_native": "Il fait du skate tous les jours au parc.", + "example_sentence_english": "He skateboards every day at the park.", + "pos": "noun", + "word_frequency": 11389 + }, + { + "word": "sodomie", + "article_with_word": "la sodomie", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "sodomy", + "example_sentence_native": "Le terme 'sodomie' est souvent utilisé dans un contexte juridique ou historique.", + "example_sentence_english": "The term 'sodomy' is often used in a legal or historical context.", + "pos": "noun", + "word_frequency": 11390 + }, + { + "word": "superficiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superficial;shallow", + "example_sentence_native": "Ne juge pas les gens sur des impressions superficielles.", + "example_sentence_english": "Don't judge people based on superficial impressions.", + "pos": "adj", + "word_frequency": 11393 + }, + { + "word": "sylvestre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sylvan;forest (adj.)", + "example_sentence_native": "La faune sylvestre est riche dans cette région.", + "example_sentence_english": "The sylvan wildlife is rich in this region.", + "pos": "adj", + "word_frequency": 11394 + }, + { + "word": "syndicalisme", + "article_with_word": "le syndicalisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trade unionism", + "example_sentence_native": "Le syndicalisme joue un rôle important dans la vie politique française.", + "example_sentence_english": "Trade unionism plays an important role in French political life.", + "pos": "noun", + "word_frequency": 11395 + }, + { + "word": "séduisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attractive;charming;seductive", + "example_sentence_native": "Son sourire était très séduisant.", + "example_sentence_english": "His smile was very charming.", + "pos": "adj", + "word_frequency": 11396 + }, + { + "word": "séjourner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stay;to reside", + "example_sentence_native": "Nous avons séjourné dans un bel hôtel à Paris.", + "example_sentence_english": "We stayed in a beautiful hotel in Paris.", + "pos": "verb", + "word_frequency": 11397 + }, + { + "word": "sélectif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selective", + "example_sentence_native": "Ce filtre est très sélectif.", + "example_sentence_english": "This filter is very selective.", + "pos": "adj", + "word_frequency": 11398 + }, + { + "word": "tam", + "article_with_word": "le tam", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tam-tam;gong", + "example_sentence_native": "Le musicien a frappé le tam avec force.", + "example_sentence_english": "The musician struck the tam-tam with force.", + "pos": "noun", + "word_frequency": 11399 + }, + { + "word": "teinture", + "article_with_word": "la teinture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dye;tint", + "example_sentence_native": "Elle a fait une teinture rousse pour changer de look.", + "example_sentence_english": "She got a red dye to change her look.", + "pos": "noun", + "word_frequency": 11400 + }, + { + "word": "traitant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treating;attending (doctor)", + "example_sentence_native": "Le médecin traitant a prescrit un nouveau médicament.", + "example_sentence_english": "The attending physician prescribed a new medication.", + "pos": "adj", + "word_frequency": 11403 + }, + { + "word": "traite", + "article_with_word": "la traite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treaty;trade", + "example_sentence_native": "Les deux pays ont signé un traité de paix.", + "example_sentence_english": "The two countries signed a peace treaty.", + "pos": "noun", + "word_frequency": 11404 + }, + { + "word": "trempe", + "article_with_word": "la trempe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "temper;hardening;soaking", + "example_sentence_native": "Il a montré une trempe d'acier face à l'adversité.", + "example_sentence_english": "He showed a steel temper in the face of adversity.", + "pos": "noun", + "word_frequency": 11405 + }, + { + "word": "venin", + "article_with_word": "le venin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "venom;poison", + "example_sentence_native": "Le serpent a injecté son venin dans sa proie.", + "example_sentence_english": "The snake injected its venom into its prey.", + "pos": "noun", + "word_frequency": 11407 + }, + { + "word": "verso", + "article_with_word": "le verso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back (of a page);reverse side", + "example_sentence_native": "Veuillez écrire votre nom au verso de la feuille.", + "example_sentence_english": "Please write your name on the back of the sheet.", + "pos": "noun", + "word_frequency": 11408 + }, + { + "word": "vigneron", + "article_with_word": "le vigneron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winemaker;vine grower", + "example_sentence_native": "Le vigneron s'occupe de ses vignes toute l'année.", + "example_sentence_english": "The winemaker takes care of his vines all year round.", + "pos": "noun", + "word_frequency": 11409 + }, + { + "word": "étendard", + "article_with_word": "l'étendard", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standard;banner", + "example_sentence_native": "Le régiment marchait sous son étendard.", + "example_sentence_english": "The regiment marched under its standard.", + "pos": "noun", + "word_frequency": 11416 + }, + { + "word": "étymologie", + "article_with_word": "l'étymologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "etymology", + "example_sentence_native": "L'étymologie du mot \"ordinateur\" est intéressante.", + "example_sentence_english": "The etymology of the word \"computer\" is interesting.", + "pos": "noun", + "word_frequency": 11417 + }, + { + "word": "acharné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relentless;fierce;determined", + "example_sentence_native": "Il a mené un combat acharné contre la maladie.", + "example_sentence_english": "He waged a relentless fight against the disease.", + "pos": "adj", + "word_frequency": 11418 + }, + { + "word": "adjudant", + "article_with_word": "l'adjudant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warrant officer;adjutant", + "example_sentence_native": "L'adjudant a donné les ordres.", + "example_sentence_english": "The warrant officer gave the orders.", + "pos": "noun", + "word_frequency": 11419 + }, + { + "word": "affût", + "article_with_word": "l'affût", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lookout;ambush;gun carriage", + "example_sentence_native": "Le chasseur était à l'affût de sa proie.", + "example_sentence_english": "The hunter was on the lookout for his prey.", + "pos": "noun", + "word_frequency": 11420 + }, + { + "word": "aligné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aligned;lined up", + "example_sentence_native": "Les chaises étaient parfaitement alignées.", + "example_sentence_english": "The chairs were perfectly aligned.", + "pos": "adj", + "word_frequency": 11422 + }, + { + "word": "allergie", + "article_with_word": "l'allergie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "allergy", + "example_sentence_native": "J'ai une allergie aux arachides.", + "example_sentence_english": "I have a peanut allergy.", + "pos": "noun", + "word_frequency": 11423 + }, + { + "word": "ancré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchored;deeply rooted", + "example_sentence_native": "Cette tradition est profondément ancrée dans la culture.", + "example_sentence_english": "This tradition is deeply rooted in the culture.", + "pos": "adj", + "word_frequency": 11425 + }, + { + "word": "apaisement", + "article_with_word": "l'apaisement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeasement;calming;relief", + "example_sentence_native": "Il a cherché l'apaisement dans la nature.", + "example_sentence_english": "He sought relief in nature.", + "pos": "noun", + "word_frequency": 11427 + }, + { + "word": "assisté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assisted;aided", + "example_sentence_native": "Les personnes âgées peuvent bénéficier d'une aide assistée.", + "example_sentence_english": "Elderly people can benefit from assisted help.", + "pos": "adj", + "word_frequency": 11428 + }, + { + "word": "aveuglement", + "article_with_word": "l'aveuglement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blindness;delusion", + "example_sentence_native": "Son aveuglement l'a empêché de voir la vérité.", + "example_sentence_english": "His blindness prevented him from seeing the truth.", + "pos": "noun", + "word_frequency": 11431 + }, + { + "word": "avoine", + "article_with_word": "l'avoine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oats", + "example_sentence_native": "Le petit-déjeuner était composé de flocons d'avoine.", + "example_sentence_english": "Breakfast consisted of oatmeal.", + "pos": "noun", + "word_frequency": 11432 + }, + { + "word": "baignade", + "article_with_word": "la baignade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming;bathing", + "example_sentence_native": "La baignade est interdite après 18h.", + "example_sentence_english": "Swimming is forbidden after 6 PM.", + "pos": "noun", + "word_frequency": 11435 + }, + { + "word": "beige", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beige", + "example_sentence_native": "J'ai acheté un pull beige.", + "example_sentence_english": "I bought a beige sweater.", + "pos": "adj", + "word_frequency": 11437 + }, + { + "word": "bitume", + "article_with_word": "le bitume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitumen;asphalt", + "example_sentence_native": "Les routes sont recouvertes de bitume.", + "example_sentence_english": "Roads are covered with asphalt.", + "pos": "noun", + "word_frequency": 11438 + }, + { + "word": "blessant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurtful;offensive;wounding", + "example_sentence_native": "Ses paroles étaient très blessantes.", + "example_sentence_english": "His words were very hurtful.", + "pos": "adj", + "word_frequency": 11439 + }, + { + "word": "bluff", + "article_with_word": "le bluff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bluff", + "example_sentence_native": "Son bluff n'a pas fonctionné.", + "example_sentence_english": "His bluff didn't work.", + "pos": "noun", + "word_frequency": 11440 + }, + { + "word": "bourré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunk;stuffed", + "example_sentence_native": "Il était complètement bourré après la fête.", + "example_sentence_english": "He was completely drunk after the party.", + "pos": "adj", + "word_frequency": 11442 + }, + { + "word": "brie", + "article_with_word": "le brie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Brie (cheese)", + "example_sentence_native": "J'adore le brie avec du pain.", + "example_sentence_english": "I love Brie with bread.", + "pos": "noun", + "word_frequency": 11443 + }, + { + "word": "brûlure", + "article_with_word": "la brûlure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burn", + "example_sentence_native": "Il a une petite brûlure sur la main.", + "example_sentence_english": "He has a small burn on his hand.", + "pos": "noun", + "word_frequency": 11445 + }, + { + "word": "bureaucratie", + "article_with_word": "la bureaucratie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucracy", + "example_sentence_native": "La bureaucratie peut ralentir les processus.", + "example_sentence_english": "Bureaucracy can slow down processes.", + "pos": "noun", + "word_frequency": 11446 + }, + { + "word": "butler", + "article_with_word": "le butler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butler", + "example_sentence_native": "Le butler a servi le thé.", + "example_sentence_english": "The butler served the tea.", + "pos": "noun", + "word_frequency": 11447 + }, + { + "word": "bûcher", + "article_with_word": "le bûcher", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyre;woodpile", + "example_sentence_native": "Le bûcher était prêt pour la cérémonie.", + "example_sentence_english": "The pyre was ready for the ceremony.", + "pos": "noun", + "word_frequency": 11448 + }, + { + "word": "causalité", + "article_with_word": "la causalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causality", + "example_sentence_native": "Il étudie la causalité des événements historiques.", + "example_sentence_english": "He studies the causality of historical events.", + "pos": "noun", + "word_frequency": 11452 + }, + { + "word": "chiot", + "article_with_word": "le chiot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puppy", + "example_sentence_native": "Le chiot joue dans le jardin.", + "example_sentence_english": "The puppy is playing in the garden.", + "pos": "noun", + "word_frequency": 11454 + }, + { + "word": "chorégraphie", + "article_with_word": "la chorégraphie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choreography", + "example_sentence_native": "La chorégraphie du spectacle était magnifique.", + "example_sentence_english": "The choreography of the show was magnificent.", + "pos": "noun", + "word_frequency": 11455 + }, + { + "word": "commandeur", + "article_with_word": "le commandeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commander (title)", + "example_sentence_native": "Il a été nommé commandeur de l'ordre.", + "example_sentence_english": "He was named commander of the order.", + "pos": "noun", + "word_frequency": 11457 + }, + { + "word": "concurrencer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compete with", + "example_sentence_native": "Cette entreprise essaie de concurrencer les leaders du marché.", + "example_sentence_english": "This company is trying to compete with the market leaders.", + "pos": "verb", + "word_frequency": 11458 + }, + { + "word": "concéder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concede;to grant", + "example_sentence_native": "Il a dû concéder la défaite.", + "example_sentence_english": "He had to concede defeat.", + "pos": "verb", + "word_frequency": 11459 + }, + { + "word": "connaisseur", + "article_with_word": "le connaisseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connoisseur;expert", + "example_sentence_native": "C'est un vrai connaisseur en vins.", + "example_sentence_english": "He is a true wine connoisseur.", + "pos": "noun", + "word_frequency": 11460 + }, + { + "word": "consistent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistent;coherent", + "example_sentence_native": "Son argument est très consistent.", + "example_sentence_english": "His argument is very consistent.", + "pos": "adj", + "word_frequency": 11461 + }, + { + "word": "contrôlé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controlled;checked", + "example_sentence_native": "Le processus est bien contrôlé.", + "example_sentence_english": "The process is well controlled.", + "pos": "adj", + "word_frequency": 11462 + }, + { + "word": "convive", + "article_with_word": "le convive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guest (at a meal)", + "example_sentence_native": "Les convives ont apprécié le repas.", + "example_sentence_english": "The guests enjoyed the meal.", + "pos": "noun", + "word_frequency": 11463 + }, + { + "word": "costaud", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strong;sturdy", + "example_sentence_native": "Il est très costaud, il peut soulever des poids lourds.", + "example_sentence_english": "He is very strong, he can lift heavy weights.", + "pos": "adj", + "word_frequency": 11465 + }, + { + "word": "coudre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sew", + "example_sentence_native": "Ma grand-mère aime coudre des vêtements.", + "example_sentence_english": "My grandmother likes to sew clothes.", + "pos": "verb", + "word_frequency": 11466 + }, + { + "word": "cyclable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyclable;suitable for cycling", + "example_sentence_native": "Cette piste est cyclable.", + "example_sentence_english": "This path is cyclable.", + "pos": "adj", + "word_frequency": 11469 + }, + { + "word": "cyclone", + "article_with_word": "le cyclone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyclone", + "example_sentence_native": "Un cyclone a frappé la côte.", + "example_sentence_english": "A cyclone hit the coast.", + "pos": "noun", + "word_frequency": 11470 + }, + { + "word": "demandé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "requested;in demand", + "example_sentence_native": "Ce produit est très demandé.", + "example_sentence_english": "This product is highly requested.", + "pos": "adj", + "word_frequency": 11472 + }, + { + "word": "dureté", + "article_with_word": "la dureté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardness;toughness", + "example_sentence_native": "La dureté de ce matériau est impressionnante.", + "example_sentence_english": "The hardness of this material is impressive.", + "pos": "noun", + "word_frequency": 11475 + }, + { + "word": "dépeindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to depict;to portray", + "example_sentence_native": "L'artiste a su dépeindre la scène avec réalisme.", + "example_sentence_english": "The artist was able to depict the scene with realism.", + "pos": "verb", + "word_frequency": 11476 + }, + { + "word": "désinformation", + "article_with_word": "la désinformation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinformation", + "example_sentence_native": "La désinformation est un problème majeur aujourd'hui.", + "example_sentence_english": "Disinformation is a major problem today.", + "pos": "noun", + "word_frequency": 11477 + }, + { + "word": "enterré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buried", + "example_sentence_native": "Le trésor était enterré sous l'arbre.", + "example_sentence_english": "The treasure was buried under the tree.", + "pos": "adj", + "word_frequency": 11481 + }, + { + "word": "entremise", + "article_with_word": "l'entremise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mediation;intercession", + "example_sentence_native": "Grâce à l'entremise de son avocat, il a obtenu un accord.", + "example_sentence_english": "Thanks to his lawyer's mediation, he reached an agreement.", + "pos": "noun", + "word_frequency": 11482 + }, + { + "word": "exilé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exiled", + "example_sentence_native": "Le poète vivait une vie exilée loin de sa patrie.", + "example_sentence_english": "The poet lived an exiled life far from his homeland.", + "pos": "adj", + "word_frequency": 11483 + }, + { + "word": "festin", + "article_with_word": "le festin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feast", + "example_sentence_native": "Ils ont préparé un grand festin pour la célébration.", + "example_sentence_english": "They prepared a great feast for the celebration.", + "pos": "noun", + "word_frequency": 11486 + }, + { + "word": "feuillage", + "article_with_word": "le feuillage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foliage", + "example_sentence_native": "Le feuillage des arbres change de couleur en automne.", + "example_sentence_english": "The foliage of the trees changes color in autumn.", + "pos": "noun", + "word_frequency": 11487 + }, + { + "word": "fluidité", + "article_with_word": "la fluidité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluidity", + "example_sentence_native": "La fluidité de son discours était impressionnante.", + "example_sentence_english": "The fluidity of his speech was impressive.", + "pos": "noun", + "word_frequency": 11488 + }, + { + "word": "fronde", + "article_with_word": "la fronde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slingshot;sling;rebellion", + "example_sentence_native": "David a utilisé une fronde pour vaincre Goliath.", + "example_sentence_english": "David used a slingshot to defeat Goliath.", + "pos": "noun", + "word_frequency": 11490 + }, + { + "word": "funk", + "article_with_word": "le funk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funk (music genre)", + "example_sentence_native": "J'adore écouter de la musique funk.", + "example_sentence_english": "I love listening to funk music.", + "pos": "noun", + "word_frequency": 11491 + }, + { + "word": "gradin", + "article_with_word": "le gradin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tier;step;bleacher", + "example_sentence_native": "Les spectateurs étaient assis dans les gradins du stade.", + "example_sentence_english": "The spectators were seated in the bleachers of the stadium.", + "pos": "noun", + "word_frequency": 11494 + }, + { + "word": "graphiste", + "article_with_word": "le/la graphiste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graphic designer", + "example_sentence_native": "Elle travaille comme graphiste dans une agence de publicité.", + "example_sentence_english": "She works as a graphic designer in an advertising agency.", + "pos": "noun", + "word_frequency": 11496 + }, + { + "word": "heurté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hit;struck;bumpy", + "example_sentence_native": "Le chemin était heurté et difficile à parcourir.", + "example_sentence_english": "The path was bumpy and difficult to travel.", + "pos": "adjective", + "word_frequency": 11497 + }, + { + "word": "hilarant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hilarious", + "example_sentence_native": "Ce film est absolument hilarant.", + "example_sentence_english": "This movie is absolutely hilarious.", + "pos": "adjective", + "word_frequency": 11498 + }, + { + "word": "hospitalisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitalized", + "example_sentence_native": "Il a été hospitalisé après l'accident.", + "example_sentence_english": "He was hospitalized after the accident.", + "pos": "adjective", + "word_frequency": 11500 + }, + { + "word": "hystérie", + "article_with_word": "l'hystérie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hysteria", + "example_sentence_native": "La foule était en proie à l'hystérie.", + "example_sentence_english": "The crowd was in a state of hysteria.", + "pos": "noun", + "word_frequency": 11501 + }, + { + "word": "jam", + "article_with_word": "le jam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jam (session)", + "example_sentence_native": "Les musiciens ont organisé un jam session improvisé.", + "example_sentence_english": "The musicians organized an improvised jam session.", + "pos": "noun", + "word_frequency": 11509 + }, + { + "word": "kick", + "article_with_word": "le kick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kick (in sports;music)", + "example_sentence_native": "Il a donné un bon kick dans le ballon.", + "example_sentence_english": "He gave a good kick to the ball.", + "pos": "noun", + "word_frequency": 11512 + }, + { + "word": "lièvre", + "article_with_word": "le lièvre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hare", + "example_sentence_native": "Le lièvre est plus rapide que la tortue.", + "example_sentence_english": "The hare is faster than the tortoise.", + "pos": "noun", + "word_frequency": 11517 + }, + { + "word": "malle", + "article_with_word": "la malle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk;chest", + "example_sentence_native": "Elle a rangé ses vieux souvenirs dans une malle.", + "example_sentence_english": "She stored her old memories in a trunk.", + "pos": "noun", + "word_frequency": 11518 + }, + { + "word": "maximiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maximize", + "example_sentence_native": "Nous devons maximiser nos efforts pour atteindre cet objectif.", + "example_sentence_english": "We must maximize our efforts to reach this goal.", + "pos": "verb", + "word_frequency": 11520 + }, + { + "word": "moderniser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to modernize", + "example_sentence_native": "Ils ont décidé de moderniser l'ancien système.", + "example_sentence_english": "They decided to modernize the old system.", + "pos": "verb", + "word_frequency": 11522 + }, + { + "word": "modestie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modesty", + "example_sentence_native": "Sa modestie est une qualité admirable.", + "example_sentence_english": "Her modesty is an admirable quality.", + "pos": "noun", + "word_frequency": 11523 + }, + { + "word": "mondialement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globally", + "example_sentence_native": "Ce produit est connu mondialement.", + "example_sentence_english": "This product is known worldwide.", + "pos": "adverb", + "word_frequency": 11524 + }, + { + "word": "outrance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess", + "example_sentence_native": "Il a poussé la critique à l'outrance.", + "example_sentence_english": "He pushed the criticism to excess.", + "pos": "noun", + "word_frequency": 11531 + }, + { + "word": "pantin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puppet", + "example_sentence_native": "Ce politicien n'est qu'un pantin entre les mains des lobbys.", + "example_sentence_english": "This politician is just a puppet in the hands of the lobbies.", + "pos": "noun", + "word_frequency": 11532 + }, + { + "word": "paumé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lost", + "example_sentence_native": "Il se sentait complètement paumé dans cette grande ville.", + "example_sentence_english": "He felt completely lost in this big city.", + "pos": "adjective", + "word_frequency": 11533 + }, + { + "word": "perron", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steps", + "example_sentence_native": "Elle l'attendait sur le perron de la maison.", + "example_sentence_english": "She was waiting for him on the steps of the house.", + "pos": "noun", + "word_frequency": 11536 + }, + { + "word": "phobie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phobia", + "example_sentence_native": "Il a une phobie des araignées.", + "example_sentence_english": "He has a phobia of spiders.", + "pos": "noun", + "word_frequency": 11537 + }, + { + "word": "piston", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piston", + "example_sentence_native": "Il a obtenu ce poste grâce à un coup de piston.", + "example_sentence_english": "He got this job thanks to some influence.", + "pos": "noun", + "word_frequency": 11538 + }, + { + "word": "playlist", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playlist", + "example_sentence_native": "J'ai créé une nouvelle playlist pour la fête.", + "example_sentence_english": "I created a new playlist for the party.", + "pos": "noun", + "word_frequency": 11539 + }, + { + "word": "potager", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetable garden", + "example_sentence_native": "Nous cultivons nos propres légumes dans le potager.", + "example_sentence_english": "We grow our own vegetables in the vegetable garden.", + "pos": "noun", + "word_frequency": 11540 + }, + { + "word": "pourriture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rot", + "example_sentence_native": "La pourriture des fruits était visible.", + "example_sentence_english": "The rot of the fruits was visible.", + "pos": "noun", + "word_frequency": 11541 + }, + { + "word": "prologue", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prologue", + "example_sentence_native": "Le prologue du roman introduit les personnages principaux.", + "example_sentence_english": "The prologue of the novel introduces the main characters.", + "pos": "noun", + "word_frequency": 11542 + }, + { + "word": "prospectus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leaflet", + "example_sentence_native": "J'ai pris un prospectus à l'entrée du musée.", + "example_sentence_english": "I took a leaflet at the museum entrance.", + "pos": "noun", + "word_frequency": 11543 + }, + { + "word": "préhistoire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prehistory", + "example_sentence_native": "Nous avons étudié la préhistoire en classe.", + "example_sentence_english": "We studied prehistory in class.", + "pos": "noun", + "word_frequency": 11544 + }, + { + "word": "prélude", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prelude", + "example_sentence_native": "Ce petit incident fut le prélude à de plus grands problèmes.", + "example_sentence_english": "This small incident was the prelude to bigger problems.", + "pos": "noun", + "word_frequency": 11545 + }, + { + "word": "prévaloir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prevail", + "example_sentence_native": "La justice doit prévaloir sur l'injustice.", + "example_sentence_english": "Justice must prevail over injustice.", + "pos": "verb", + "word_frequency": 11546 + }, + { + "word": "regain", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resurgence", + "example_sentence_native": "Il y a eu un regain d'intérêt pour ce sujet.", + "example_sentence_english": "There was a resurgence of interest in this topic.", + "pos": "noun", + "word_frequency": 11547 + }, + { + "word": "réglage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "setting", + "example_sentence_native": "Le réglage de l'appareil est très simple.", + "example_sentence_english": "The setting of the device is very simple.", + "pos": "noun", + "word_frequency": 11550 + }, + { + "word": "résolu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determined", + "example_sentence_native": "Il était résolu à réussir son examen.", + "example_sentence_english": "He was determined to pass his exam.", + "pos": "adjective", + "word_frequency": 11551 + }, + { + "word": "réélection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-election", + "example_sentence_native": "Le président a annoncé sa candidature à la réélection.", + "example_sentence_english": "The president announced his candidacy for re-election.", + "pos": "noun", + "word_frequency": 11552 + }, + { + "word": "sabotage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sabotage", + "example_sentence_native": "La police enquête sur un acte de sabotage.", + "example_sentence_english": "The police are investigating an act of sabotage.", + "pos": "noun", + "word_frequency": 11553 + }, + { + "word": "safran", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saffron", + "example_sentence_native": "Le safran est une épice très chère.", + "example_sentence_english": "Saffron is a very expensive spice.", + "pos": "noun", + "word_frequency": 11554 + }, + { + "word": "singularité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "singularity", + "example_sentence_native": "Chaque personne a sa propre singularité.", + "example_sentence_english": "Each person has their own singularity.", + "pos": "noun", + "word_frequency": 11557 + }, + { + "word": "slalom", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slalom", + "example_sentence_native": "Le skieur a réussi un excellent slalom.", + "example_sentence_english": "The skier performed an excellent slalom.", + "pos": "noun", + "word_frequency": 11558 + }, + { + "word": "soc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plowshare", + "example_sentence_native": "Le soc de la charrue laboure la terre.", + "example_sentence_english": "The plowshare of the plow tills the earth.", + "pos": "noun", + "word_frequency": 11559 + }, + { + "word": "sursaut", + "article_with_word": "le sursaut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start;jolt", + "example_sentence_native": "Elle a eu un sursaut en entendant le bruit.", + "example_sentence_english": "She had a start when she heard the noise.", + "pos": "noun", + "word_frequency": 11561 + }, + { + "word": "swing", + "article_with_word": "le swing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swing (music;golf)", + "example_sentence_native": "Ce groupe a un excellent swing.", + "example_sentence_english": "This band has excellent swing.", + "pos": "noun", + "word_frequency": 11562 + }, + { + "word": "sécurisation", + "article_with_word": "la sécurisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "securing;safeguarding", + "example_sentence_native": "La sécurisation des données est primordiale.", + "example_sentence_english": "Data securing is paramount.", + "pos": "noun", + "word_frequency": 11563 + }, + { + "word": "thorax", + "article_with_word": "le thorax", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorax;chest", + "example_sentence_native": "Le médecin a examiné son thorax.", + "example_sentence_english": "The doctor examined his chest.", + "pos": "noun", + "word_frequency": 11567 + }, + { + "word": "tonalité", + "article_with_word": "la tonalité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tonality;tone", + "example_sentence_native": "La tonalité de sa voix a changé.", + "example_sentence_english": "The tone of her voice changed.", + "pos": "noun", + "word_frequency": 11568 + }, + { + "word": "topic", + "article_with_word": "le topic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "topic (forum)", + "example_sentence_native": "J'ai créé un nouveau topic sur le forum.", + "example_sentence_english": "I created a new topic on the forum.", + "pos": "noun", + "word_frequency": 11569 + }, + { + "word": "tract", + "article_with_word": "le tract", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leaflet;pamphlet", + "example_sentence_native": "Ils ont distribué des tracts dans la rue.", + "example_sentence_english": "They distributed leaflets in the street.", + "pos": "noun", + "word_frequency": 11570 + }, + { + "word": "traquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to track;to hunt down", + "example_sentence_native": "La police traque les criminels.", + "example_sentence_english": "The police track down criminals.", + "pos": "verb", + "word_frequency": 11571 + }, + { + "word": "troubler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disturb;to trouble", + "example_sentence_native": "Ne le trouble pas pendant qu'il travaille.", + "example_sentence_english": "Don't disturb him while he's working.", + "pos": "verb", + "word_frequency": 11572 + }, + { + "word": "télescope", + "article_with_word": "le télescope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telescope", + "example_sentence_native": "J'ai acheté un nouveau télescope pour observer les étoiles.", + "example_sentence_english": "I bought a new telescope to observe the stars.", + "pos": "noun", + "word_frequency": 11573 + }, + { + "word": "verger", + "article_with_word": "le verger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchard", + "example_sentence_native": "Il y a un beau verger derrière la maison.", + "example_sentence_english": "There is a beautiful orchard behind the house.", + "pos": "noun", + "word_frequency": 11575 + }, + { + "word": "virilité", + "article_with_word": "la virilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virility;manliness", + "example_sentence_native": "Il associait la force à la virilité.", + "example_sentence_english": "He associated strength with virility.", + "pos": "noun", + "word_frequency": 11576 + }, + { + "word": "viseur", + "article_with_word": "le viseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewfinder;sight", + "example_sentence_native": "Il a mis l'ennemi dans son viseur.", + "example_sentence_english": "He put the enemy in his sights.", + "pos": "noun", + "word_frequency": 11577 + }, + { + "word": "vêtu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressed;clothed", + "example_sentence_native": "Il était vêtu d'un costume élégant.", + "example_sentence_english": "He was dressed in an elegant suit.", + "pos": "adjective", + "word_frequency": 11578 + }, + { + "word": "équivoque", + "article_with_word": "l'équivoque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ambiguity;equivocation", + "example_sentence_native": "Il y avait une certaine équivoque dans ses propos.", + "example_sentence_english": "There was a certain ambiguity in his words.", + "pos": "noun", + "word_frequency": 11580 + }, + { + "word": "étoffe", + "article_with_word": "l'étoffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fabric;material", + "example_sentence_native": "Cette robe est faite d'une belle étoffe.", + "example_sentence_english": "This dress is made of a beautiful fabric.", + "pos": "noun", + "word_frequency": 11581 + }, + { + "word": "îlot", + "article_with_word": "l'îlot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "islet;small island", + "example_sentence_native": "Nous avons visité un petit îlot près de la côte.", + "example_sentence_english": "We visited a small islet near the coast.", + "pos": "noun", + "word_frequency": 11582 + }, + { + "word": "accidentel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accidental", + "example_sentence_native": "C'était un événement accidentel.", + "example_sentence_english": "It was an accidental event.", + "pos": "adjective", + "word_frequency": 11584 + }, + { + "word": "affectif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affective;emotional", + "example_sentence_native": "Il a des problèmes affectifs.", + "example_sentence_english": "He has emotional problems.", + "pos": "adjective", + "word_frequency": 11585 + }, + { + "word": "affiliation", + "article_with_word": "l'affiliation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affiliation", + "example_sentence_native": "Son affiliation politique est claire.", + "example_sentence_english": "His political affiliation is clear.", + "pos": "noun", + "word_frequency": 11586 + }, + { + "word": "agacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy;to irritate", + "example_sentence_native": "Arrête de m'agacer avec tes questions.", + "example_sentence_english": "Stop annoying me with your questions.", + "pos": "verb", + "word_frequency": 11587 + }, + { + "word": "allongement", + "article_with_word": "l'allongement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lengthening;extension", + "example_sentence_native": "L'allongement de la durée de vie est une bonne nouvelle.", + "example_sentence_english": "The lengthening of life expectancy is good news.", + "pos": "noun", + "word_frequency": 11591 + }, + { + "word": "amusement", + "article_with_word": "l'amusement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amusement;entertainment", + "example_sentence_native": "Ce film est une source d'amusement.", + "example_sentence_english": "This movie is a source of amusement.", + "pos": "noun", + "word_frequency": 11592 + }, + { + "word": "anticipé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anticipated;early", + "example_sentence_native": "Le départ anticipé a surpris tout le monde.", + "example_sentence_english": "The early departure surprised everyone.", + "pos": "adjective", + "word_frequency": 11593 + }, + { + "word": "arrondi", + "article_with_word": "l'arrondi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rounding;rounded shape", + "example_sentence_native": "Faites un arrondi au chiffre le plus proche.", + "example_sentence_english": "Round to the nearest number.", + "pos": "noun", + "word_frequency": 11594 + }, + { + "word": "assorti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matching;assorted", + "example_sentence_native": "Ses chaussures sont assorties à sa robe.", + "example_sentence_english": "Her shoes match her dress.", + "pos": "adjective", + "word_frequency": 11595 + }, + { + "word": "attachant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endearing;charming", + "example_sentence_native": "C'est un personnage très attachant.", + "example_sentence_english": "He is a very endearing character.", + "pos": "adjective", + "word_frequency": 11596 + }, + { + "word": "avorter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to abort;to miscarry", + "example_sentence_native": "Le projet a dû avorter faute de fonds.", + "example_sentence_english": "The project had to be aborted due to lack of funds.", + "pos": "verb", + "word_frequency": 11597 + }, + { + "word": "bambou", + "article_with_word": "le bambou", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bamboo", + "example_sentence_native": "Les pandas mangent du bambou.", + "example_sentence_english": "Pandas eat bamboo.", + "pos": "noun", + "word_frequency": 11598 + }, + { + "word": "basketball", + "article_with_word": "le basketball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "example_sentence_native": "Il joue au basketball tous les samedis.", + "example_sentence_english": "He plays basketball every Saturday.", + "pos": "noun", + "word_frequency": 11599 + }, + { + "word": "batte", + "article_with_word": "la batte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bat", + "example_sentence_native": "Il a frappé la balle avec une batte de baseball.", + "example_sentence_english": "He hit the ball with a baseball bat.", + "pos": "noun", + "word_frequency": 11600 + }, + { + "word": "blasphème", + "article_with_word": "le blasphème", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blasphemy", + "example_sentence_native": "Le blasphème est considéré comme un péché dans certaines religions.", + "example_sentence_english": "Blasphemy is considered a sin in some religions.", + "pos": "noun", + "word_frequency": 11601 + }, + { + "word": "bohème", + "article_with_word": "la bohème", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bohemian", + "example_sentence_native": "Elle a toujours mené une vie de bohème, libre et artistique.", + "example_sentence_english": "She has always led a bohemian life, free and artistic.", + "pos": "noun", + "word_frequency": 11602 + }, + { + "word": "boudin", + "article_with_word": "le boudin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood sausage", + "example_sentence_native": "Le boudin noir est une spécialité française.", + "example_sentence_english": "Black pudding is a French specialty.", + "pos": "noun", + "word_frequency": 11604 + }, + { + "word": "braquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to point (a weapon);to rob", + "example_sentence_native": "Le voleur a braqué son arme sur le caissier.", + "example_sentence_english": "The thief pointed his weapon at the cashier.", + "pos": "verb", + "word_frequency": 11605 + }, + { + "word": "cagnotte", + "article_with_word": "la cagnotte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kitty;prize pool", + "example_sentence_native": "La cagnotte du loto a atteint un montant record.", + "example_sentence_english": "The lottery prize pool reached a record amount.", + "pos": "noun", + "word_frequency": 11606 + }, + { + "word": "chancellerie", + "article_with_word": "la chancellerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chancellery", + "example_sentence_native": "La chancellerie est le bureau du chancelier.", + "example_sentence_english": "The chancellery is the chancellor's office.", + "pos": "noun", + "word_frequency": 11611 + }, + { + "word": "clore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to close;to conclude", + "example_sentence_native": "Il est temps de clore cette discussion.", + "example_sentence_english": "It's time to close this discussion.", + "pos": "verb", + "word_frequency": 11612 + }, + { + "word": "collégial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collegiate;collective", + "example_sentence_native": "La décision a été prise de manière collégiale.", + "example_sentence_english": "The decision was made collectively.", + "pos": "adjective", + "word_frequency": 11613 + }, + { + "word": "compatibilité", + "article_with_word": "la compatibilité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compatibility", + "example_sentence_native": "Nous devons vérifier la compatibilité des logiciels.", + "example_sentence_english": "We need to check the software compatibility.", + "pos": "noun", + "word_frequency": 11614 + }, + { + "word": "completement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "completely", + "example_sentence_native": "J'ai complètement oublié notre rendez-vous.", + "example_sentence_english": "I completely forgot our appointment.", + "pos": "adverb", + "word_frequency": 11615 + }, + { + "word": "conditionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condition;to package", + "example_sentence_native": "Les produits sont conditionnés dans des emballages recyclables.", + "example_sentence_english": "The products are packaged in recyclable packaging.", + "pos": "verb", + "word_frequency": 11616 + }, + { + "word": "consistance", + "article_with_word": "la consistance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistency", + "example_sentence_native": "La sauce a une bonne consistance.", + "example_sentence_english": "The sauce has a good consistency.", + "pos": "noun", + "word_frequency": 11618 + }, + { + "word": "coopératif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooperative", + "example_sentence_native": "Il est très coopératif et aide toujours ses collègues.", + "example_sentence_english": "He is very cooperative and always helps his colleagues.", + "pos": "adjective", + "word_frequency": 11619 + }, + { + "word": "cowboy", + "article_with_word": "le cowboy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cowboy", + "example_sentence_native": "Le film raconte l'histoire d'un vieux cowboy.", + "example_sentence_english": "The film tells the story of an old cowboy.", + "pos": "noun", + "word_frequency": 11620 + }, + { + "word": "croquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crunch;to sketch", + "example_sentence_native": "J'aime croquer une pomme bien croquante.", + "example_sentence_english": "I like to crunch a very crispy apple.", + "pos": "verb", + "word_frequency": 11622 + }, + { + "word": "danseuse", + "article_with_word": "la danseuse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dancer (female)", + "example_sentence_native": "La danseuse étoile a reçu une ovation.", + "example_sentence_english": "The prima ballerina received a standing ovation.", + "pos": "noun", + "word_frequency": 11625 + }, + { + "word": "digestion", + "article_with_word": "la digestion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digestion", + "example_sentence_native": "Une bonne digestion est essentielle pour la santé.", + "example_sentence_english": "Good digestion is essential for health.", + "pos": "noun", + "word_frequency": 11627 + }, + { + "word": "divorcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to divorce", + "example_sentence_native": "Ils ont décidé de divorcer après vingt ans de mariage.", + "example_sentence_english": "They decided to divorce after twenty years of marriage.", + "pos": "verb", + "word_frequency": 11628 + }, + { + "word": "djihad", + "article_with_word": "le djihad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihad", + "example_sentence_native": "Le concept de djihad est souvent mal interprété.", + "example_sentence_english": "The concept of jihad is often misinterpreted.", + "pos": "noun", + "word_frequency": 11629 + }, + { + "word": "doublage", + "article_with_word": "le doublage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dubbing", + "example_sentence_native": "Je préfère regarder les films en version originale sous-titrée plutôt qu'avec le doublage.", + "example_sentence_english": "I prefer watching films in original version with subtitles rather than with dubbing.", + "pos": "noun", + "word_frequency": 11631 + }, + { + "word": "débiteur", + "article_with_word": "le débiteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debtor", + "example_sentence_native": "Le débiteur doit rembourser sa dette à temps.", + "example_sentence_english": "The debtor must repay his debt on time.", + "pos": "noun", + "word_frequency": 11633 + }, + { + "word": "déceler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detect;to uncover", + "example_sentence_native": "Il est difficile de déceler la vérité dans cette affaire.", + "example_sentence_english": "It is difficult to detect the truth in this matter.", + "pos": "verb", + "word_frequency": 11634 + }, + { + "word": "décence", + "article_with_word": "la décence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decency", + "example_sentence_native": "Il a agi avec décence malgré la situation difficile.", + "example_sentence_english": "He acted with decency despite the difficult situation.", + "pos": "noun", + "word_frequency": 11635 + }, + { + "word": "déclinaison", + "article_with_word": "la déclinaison", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "declension;variation", + "example_sentence_native": "En latin, les noms ont des déclinaisons.", + "example_sentence_english": "In Latin, nouns have declensions.", + "pos": "noun", + "word_frequency": 11636 + }, + { + "word": "décorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to decorate", + "example_sentence_native": "Nous allons décorer le sapin de Noël.", + "example_sentence_english": "We are going to decorate the Christmas tree.", + "pos": "verb", + "word_frequency": 11637 + }, + { + "word": "dégagement", + "article_with_word": "le dégagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearing;release;space", + "example_sentence_native": "Il y a un dégagement de fumée suspect.", + "example_sentence_english": "There is a suspicious release of smoke.", + "pos": "noun", + "word_frequency": 11638 + }, + { + "word": "dépressif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depressive", + "example_sentence_native": "Il se sentait dépressif après la mauvaise nouvelle.", + "example_sentence_english": "He felt depressive after the bad news.", + "pos": "adjective", + "word_frequency": 11639 + }, + { + "word": "désarroi", + "article_with_word": "le désarroi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disarray;distress", + "example_sentence_native": "Son départ a plongé l'équipe dans le désarroi.", + "example_sentence_english": "His departure plunged the team into disarray.", + "pos": "noun", + "word_frequency": 11640 + }, + { + "word": "déviation", + "article_with_word": "la déviation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detour;deviation", + "example_sentence_native": "Suivez la déviation pour éviter les travaux.", + "example_sentence_english": "Follow the detour to avoid the roadworks.", + "pos": "noun", + "word_frequency": 11641 + }, + { + "word": "effraction", + "article_with_word": "l'effraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breaking and entering;burglary", + "example_sentence_native": "La police enquête sur une effraction dans le magasin.", + "example_sentence_english": "The police are investigating a breaking and entering at the store.", + "pos": "noun", + "word_frequency": 11642 + }, + { + "word": "elfe", + "article_with_word": "un elfe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elf", + "example_sentence_native": "Dans les contes, les elfes vivent souvent dans les forêts.", + "example_sentence_english": "In tales, elves often live in forests.", + "pos": "noun", + "word_frequency": 11643 + }, + { + "word": "enfreindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to infringe;to violate", + "example_sentence_native": "Il est interdit d'enfreindre la loi.", + "example_sentence_english": "It is forbidden to infringe the law.", + "pos": "verb", + "word_frequency": 11646 + }, + { + "word": "esquisse", + "article_with_word": "une esquisse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sketch;outline", + "example_sentence_native": "L'artiste a fait une esquisse rapide du paysage.", + "example_sentence_english": "The artist made a quick sketch of the landscape.", + "pos": "noun", + "word_frequency": 11647 + }, + { + "word": "explorateur", + "article_with_word": "un explorateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explorer", + "example_sentence_native": "Jacques Cartier était un célèbre explorateur français.", + "example_sentence_english": "Jacques Cartier was a famous French explorer.", + "pos": "noun", + "word_frequency": 11649 + }, + { + "word": "facho", + "article_with_word": "un facho", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascist (derogatory)", + "example_sentence_native": "Il a été traité de facho pour ses opinions extrêmes.", + "example_sentence_english": "He was called a fascist for his extreme views.", + "pos": "noun", + "word_frequency": 11650 + }, + { + "word": "fanatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fanatic;fanatical", + "example_sentence_native": "C'est un fanatique de football.", + "example_sentence_english": "He is a football fanatic.", + "pos": "adjective", + "word_frequency": 11651 + }, + { + "word": "fervent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fervent;ardent", + "example_sentence_native": "Il est un fervent défenseur de l'environnement.", + "example_sentence_english": "He is a fervent defender of the environment.", + "pos": "adjective", + "word_frequency": 11652 + }, + { + "word": "ficelle", + "article_with_word": "la ficelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "string;twine", + "example_sentence_native": "J'ai attaché le paquet avec une ficelle.", + "example_sentence_english": "I tied the package with a string.", + "pos": "noun", + "word_frequency": 11653 + }, + { + "word": "filtrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to filter", + "example_sentence_native": "L'eau doit être filtrée avant d'être bue.", + "example_sentence_english": "The water must be filtered before being drunk.", + "pos": "verb", + "word_frequency": 11654 + }, + { + "word": "flambeau", + "article_with_word": "le flambeau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torch", + "example_sentence_native": "Le coureur portait le flambeau olympique.", + "example_sentence_english": "The runner carried the Olympic torch.", + "pos": "noun", + "word_frequency": 11657 + }, + { + "word": "funèbre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "funereal;mournful", + "example_sentence_native": "L'ambiance était funèbre lors des obsèques.", + "example_sentence_english": "The atmosphere was funereal during the funeral.", + "pos": "adjective", + "word_frequency": 11658 + }, + { + "word": "gauchiste", + "article_with_word": "un gauchiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leftist (political term)", + "example_sentence_native": "Il est souvent qualifié de gauchiste par ses opposants.", + "example_sentence_english": "He is often called a leftist by his opponents.", + "pos": "noun", + "word_frequency": 11659 + }, + { + "word": "gaver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to force-feed;to stuff (oneself)", + "example_sentence_native": "Il se gave de sucreries.", + "example_sentence_english": "He stuffs himself with sweets.", + "pos": "verb", + "word_frequency": 11660 + }, + { + "word": "gifle", + "article_with_word": "la gifle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slap", + "example_sentence_native": "Il lui a donné une gifle.", + "example_sentence_english": "He gave him a slap.", + "pos": "noun", + "word_frequency": 11661 + }, + { + "word": "holocauste", + "article_with_word": "l'Holocauste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Holocaust", + "example_sentence_native": "L'Holocauste est une période sombre de l'histoire.", + "example_sentence_english": "The Holocaust is a dark period in history.", + "pos": "noun", + "word_frequency": 11667 + }, + { + "word": "hégémonie", + "article_with_word": "l'hégémonie", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "hegemony", + "example_sentence_native": "La fin de l'hégémonie d'une puissance.", + "example_sentence_english": "The end of a power's hegemony.", + "pos": "noun", + "word_frequency": 11669 + }, + { + "word": "implicitement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implicitly", + "example_sentence_native": "Il a implicitement accepté la proposition.", + "example_sentence_english": "He implicitly accepted the proposal.", + "pos": "adverb", + "word_frequency": 11671 + }, + { + "word": "inquisition", + "article_with_word": "l'Inquisition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Inquisition", + "example_sentence_native": "L'Inquisition était une institution religieuse.", + "example_sentence_english": "The Inquisition was a religious institution.", + "pos": "noun", + "word_frequency": 11672 + }, + { + "word": "juvénile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "juvenile", + "example_sentence_native": "Il a un comportement juvénile pour son âge.", + "example_sentence_english": "He has juvenile behavior for his age.", + "pos": "adjective", + "word_frequency": 11675 + }, + { + "word": "laps", + "article_with_word": "le laps", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lapse (of time)", + "example_sentence_native": "Un court laps de temps s'est écoulé.", + "example_sentence_english": "A short lapse of time passed.", + "pos": "noun", + "word_frequency": 11676 + }, + { + "word": "londonien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Londoner;from London", + "example_sentence_native": "Il a un accent londonien très prononcé.", + "example_sentence_english": "He has a very strong London accent.", + "pos": "adjective", + "word_frequency": 11680 + }, + { + "word": "malchance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bad luck;misfortune", + "example_sentence_native": "Il a eu de la malchance toute la journée.", + "example_sentence_english": "He had bad luck all day.", + "pos": "noun", + "word_frequency": 11682 + }, + { + "word": "mandarin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mandarin (fruit or language)", + "example_sentence_native": "J'aime manger une mandarine après le repas.", + "example_sentence_english": "I like to eat a mandarin after the meal.", + "pos": "noun", + "word_frequency": 11683 + }, + { + "word": "mascotte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mascot", + "example_sentence_native": "Le lion est la mascotte de notre équipe sportive.", + "example_sentence_english": "The lion is the mascot of our sports team.", + "pos": "noun", + "word_frequency": 11684 + }, + { + "word": "multinational", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multinational", + "example_sentence_native": "C'est une entreprise multinationale avec des bureaux partout dans le monde.", + "example_sentence_english": "It's a multinational company with offices all over the world.", + "pos": "adjective", + "word_frequency": 11686 + }, + { + "word": "museau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muzzle;snout", + "example_sentence_native": "Le chien a un museau humide et froid.", + "example_sentence_english": "The dog has a wet and cold muzzle.", + "pos": "noun", + "word_frequency": 11687 + }, + { + "word": "mélancolique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melancholic;gloomy", + "example_sentence_native": "Sa musique est souvent très mélancolique.", + "example_sentence_english": "His music is often very melancholic.", + "pos": "adjective", + "word_frequency": 11688 + }, + { + "word": "métis", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mixed-race person;métis", + "example_sentence_native": "Il est métis, avec des origines française et africaine.", + "example_sentence_english": "He is mixed-race, with French and African origins.", + "pos": "noun", + "word_frequency": 11689 + }, + { + "word": "nombril", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly button;navel", + "example_sentence_native": "Le bébé a un petit nombril.", + "example_sentence_english": "The baby has a small belly button.", + "pos": "noun", + "word_frequency": 11691 + }, + { + "word": "notoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notorious;well-known", + "example_sentence_native": "C'est un menteur notoire.", + "example_sentence_english": "He is a notorious liar.", + "pos": "adjective", + "word_frequency": 11692 + }, + { + "word": "offense", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offense;insult", + "example_sentence_native": "Ses paroles ont été perçues comme une offense.", + "example_sentence_english": "His words were perceived as an offense.", + "pos": "noun", + "word_frequency": 11694 + }, + { + "word": "omelette", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "omelette", + "example_sentence_native": "Je voudrais une omelette au fromage.", + "example_sentence_english": "I would like a cheese omelette.", + "pos": "noun", + "word_frequency": 11695 + }, + { + "word": "orteil", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toe", + "example_sentence_native": "Je me suis cogné l'orteil contre la table.", + "example_sentence_english": "I stubbed my toe on the table.", + "pos": "noun", + "word_frequency": 11697 + }, + { + "word": "paniquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to panic", + "example_sentence_native": "Il ne faut pas paniquer en cas d'urgence.", + "example_sentence_english": "You must not panic in an emergency.", + "pos": "verb", + "word_frequency": 11698 + }, + { + "word": "paradoxal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paradoxical", + "example_sentence_native": "C'est une situation paradoxale.", + "example_sentence_english": "It's a paradoxical situation.", + "pos": "adjective", + "word_frequency": 11699 + }, + { + "word": "paralyser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to paralyze", + "example_sentence_native": "La peur peut paralyser les gens.", + "example_sentence_english": "Fear can paralyze people.", + "pos": "verb", + "word_frequency": 11700 + }, + { + "word": "parental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parental", + "example_sentence_native": "Ils ont besoin d'une autorisation parentale.", + "example_sentence_english": "They need parental authorization.", + "pos": "adjective", + "word_frequency": 11701 + }, + { + "word": "piètre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poor;mediocre;paltry", + "example_sentence_native": "Il a fait une piètre performance.", + "example_sentence_english": "He gave a poor performance.", + "pos": "adjective", + "word_frequency": 11702 + }, + { + "word": "ponte", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "big shot;expert", + "example_sentence_native": "C'est une ponte dans son domaine.", + "example_sentence_english": "She's a big shot in her field.", + "pos": "noun", + "word_frequency": 11703 + }, + { + "word": "prolétariat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proletariat", + "example_sentence_native": "Le prolétariat est une classe sociale.", + "example_sentence_english": "The proletariat is a social class.", + "pos": "noun", + "word_frequency": 11705 + }, + { + "word": "prétendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so-called;alleged", + "example_sentence_native": "Son prétendu ami l'a trahi.", + "example_sentence_english": "His so-called friend betrayed him.", + "pos": "adjective", + "word_frequency": 11706 + }, + { + "word": "punaise", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thumbtack;bedbug", + "example_sentence_native": "J'ai accroché l'affiche avec une punaise.", + "example_sentence_english": "I hung the poster with a thumbtack.", + "pos": "noun", + "word_frequency": 11707 + }, + { + "word": "racaille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scum;riff-raff (derogatory)", + "example_sentence_native": "Le politicien a utilisé le mot 'racaille' pour décrire certains jeunes.", + "example_sentence_english": "The politician used the word 'scum' to describe some young people.", + "pos": "noun", + "word_frequency": 11708 + }, + { + "word": "renommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rename", + "example_sentence_native": "Ils ont décidé de renommer la rue.", + "example_sentence_english": "They decided to rename the street.", + "pos": "verb", + "word_frequency": 11712 + }, + { + "word": "rossignol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nightingale", + "example_sentence_native": "Le chant du rossignol est magnifique.", + "example_sentence_english": "The nightingale's song is beautiful.", + "pos": "noun", + "word_frequency": 11714 + }, + { + "word": "râler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grumble;to complain", + "example_sentence_native": "Il passe son temps à râler.", + "example_sentence_english": "He spends his time grumbling.", + "pos": "verb", + "word_frequency": 11715 + }, + { + "word": "réactif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reactive;responsive", + "example_sentence_native": "L'entreprise est très réactive aux demandes des clients.", + "example_sentence_english": "The company is very responsive to customer requests.", + "pos": "adjective", + "word_frequency": 11716 + }, + { + "word": "rémunérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to remunerate;to pay", + "example_sentence_native": "L'entreprise doit rémunérer ses employés équitablement.", + "example_sentence_english": "The company must remunerate its employees fairly.", + "pos": "verb", + "word_frequency": 11717 + }, + { + "word": "réprimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repress;to suppress", + "example_sentence_native": "Le gouvernement a tenté de réprimer la révolte.", + "example_sentence_english": "The government tried to repress the revolt.", + "pos": "verb", + "word_frequency": 11718 + }, + { + "word": "sachet", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sachet;small bag", + "example_sentence_native": "J'ai acheté un sachet de thé.", + "example_sentence_english": "I bought a sachet of tea.", + "pos": "noun", + "word_frequency": 11719 + }, + { + "word": "samba", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "samba", + "example_sentence_native": "La samba est une danse brésilienne très populaire.", + "example_sentence_english": "Samba is a very popular Brazilian dance.", + "pos": "noun", + "word_frequency": 11720 + }, + { + "word": "saoudien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Saudi", + "example_sentence_native": "Il a visité la capitale saoudienne.", + "example_sentence_english": "He visited the Saudi capital.", + "pos": "adjective", + "word_frequency": 11721 + }, + { + "word": "saturer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to saturate", + "example_sentence_native": "L'eau peut saturer le sol après de fortes pluies.", + "example_sentence_english": "Water can saturate the soil after heavy rains.", + "pos": "verb", + "word_frequency": 11722 + }, + { + "word": "sereinement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serenely;calmly", + "example_sentence_native": "Elle a accepté la nouvelle sereinement.", + "example_sentence_english": "She accepted the news serenely.", + "pos": "adverb", + "word_frequency": 11723 + }, + { + "word": "shampoing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shampoo", + "example_sentence_native": "J'ai besoin d'acheter un nouveau shampoing.", + "example_sentence_english": "I need to buy a new shampoo.", + "pos": "noun", + "word_frequency": 11724 + }, + { + "word": "somptueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sumptuous;lavish", + "example_sentence_native": "Le dîner était somptueux, avec de nombreux plats.", + "example_sentence_english": "The dinner was sumptuous, with many dishes.", + "pos": "adjective", + "word_frequency": 11725 + }, + { + "word": "terminus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terminus;end of the line", + "example_sentence_native": "Le bus arrive au terminus dans cinq minutes.", + "example_sentence_english": "The bus arrives at the terminus in five minutes.", + "pos": "noun", + "word_frequency": 11729 + }, + { + "word": "trailer", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer (movie)", + "example_sentence_native": "J'ai vu le nouveau trailer du film hier soir.", + "example_sentence_english": "I saw the new movie trailer last night.", + "pos": "noun", + "word_frequency": 11731 + }, + { + "word": "update", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "update", + "example_sentence_native": "J'ai installé la dernière update du logiciel.", + "example_sentence_english": "I installed the latest software update.", + "pos": "noun", + "word_frequency": 11735 + }, + { + "word": "ventilateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fan (for air)", + "example_sentence_native": "Il fait chaud, allume le ventilateur.", + "example_sentence_english": "It's hot, turn on the fan.", + "pos": "noun", + "word_frequency": 11736 + }, + { + "word": "vista", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vista;view", + "example_sentence_native": "La villa offre une magnifique vista sur la mer.", + "example_sentence_english": "The villa offers a magnificent vista of the sea.", + "pos": "noun", + "word_frequency": 11738 + }, + { + "word": "éligible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eligible", + "example_sentence_native": "Vous êtes éligible à cette bourse d'études.", + "example_sentence_english": "You are eligible for this scholarship.", + "pos": "adjective", + "word_frequency": 11746 + }, + { + "word": "affaiblissement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakening;debilitation", + "example_sentence_native": "On observe un affaiblissement de l'économie.", + "example_sentence_english": "We observe a weakening of the economy.", + "pos": "noun", + "word_frequency": 11749 + }, + { + "word": "alchimie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alchemy", + "example_sentence_native": "L'alchimie était une pratique ancienne.", + "example_sentence_english": "Alchemy was an ancient practice.", + "pos": "noun", + "word_frequency": 11750 + }, + { + "word": "archéologue", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "archaeologist", + "example_sentence_native": "L'archéologue a découvert des ruines anciennes.", + "example_sentence_english": "The archaeologist discovered ancient ruins.", + "pos": "noun", + "word_frequency": 11752 + }, + { + "word": "arôme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aroma;flavor", + "example_sentence_native": "Cet arôme de café est délicieux.", + "example_sentence_english": "This coffee aroma is delicious.", + "pos": "noun", + "word_frequency": 11753 + }, + { + "word": "astrologie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astrology", + "example_sentence_native": "L'astrologie étudie l'influence des astres.", + "example_sentence_english": "Astrology studies the influence of stars.", + "pos": "noun", + "word_frequency": 11754 + }, + { + "word": "banquette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bench;banquette (car seat)", + "example_sentence_native": "Nous nous sommes assis sur la banquette arrière de la voiture.", + "example_sentence_english": "We sat on the back seat of the car.", + "pos": "noun", + "word_frequency": 11756 + }, + { + "word": "biche", + "article_with_word": "la biche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doe;hind", + "example_sentence_native": "La biche a traversé la forêt.", + "example_sentence_english": "The doe crossed the forest.", + "pos": "noun", + "word_frequency": 11760 + }, + { + "word": "bunker", + "article_with_word": "le bunker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bunker", + "example_sentence_native": "Ils se sont réfugiés dans le bunker pendant l'attaque.", + "example_sentence_english": "They took refuge in the bunker during the attack.", + "pos": "noun", + "word_frequency": 11762 + }, + { + "word": "cambriolage", + "article_with_word": "le cambriolage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burglary", + "example_sentence_native": "Le cambriolage a eu lieu la nuit dernière.", + "example_sentence_english": "The burglary happened last night.", + "pos": "noun", + "word_frequency": 11763 + }, + { + "word": "catégorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "categorical;emphatic", + "example_sentence_native": "Sa réponse était catégorique, sans aucune hésitation.", + "example_sentence_english": "His answer was categorical, without any hesitation.", + "pos": "adjective", + "word_frequency": 11764 + }, + { + "word": "clivage", + "article_with_word": "le clivage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "division;split", + "example_sentence_native": "Il existe un clivage profond entre les deux partis politiques.", + "example_sentence_english": "There is a deep division between the two political parties.", + "pos": "noun", + "word_frequency": 11767 + }, + { + "word": "cofondateur", + "article_with_word": "le cofondateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-founder", + "example_sentence_native": "Le cofondateur de l'entreprise a annoncé sa démission.", + "example_sentence_english": "The co-founder of the company announced his resignation.", + "pos": "noun", + "word_frequency": 11768 + }, + { + "word": "cogner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit;to knock", + "example_sentence_native": "Il a cogné à la porte avant d'entrer.", + "example_sentence_english": "He knocked on the door before entering.", + "pos": "verb", + "word_frequency": 11769 + }, + { + "word": "coiffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to style (hair);to do (hair)", + "example_sentence_native": "Elle aime se coiffer tous les matins.", + "example_sentence_english": "She likes to do her hair every morning.", + "pos": "verb", + "word_frequency": 11770 + }, + { + "word": "composite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composite", + "example_sentence_native": "Le matériau composite est léger et résistant.", + "example_sentence_english": "The composite material is light and strong.", + "pos": "adjective", + "word_frequency": 11771 + }, + { + "word": "connexe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "related;connected", + "example_sentence_native": "Les problèmes économiques sont souvent connexes aux problèmes sociaux.", + "example_sentence_english": "Economic problems are often related to social problems.", + "pos": "adjective", + "word_frequency": 11772 + }, + { + "word": "constructif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constructive", + "example_sentence_native": "Nous avons eu une discussion très constructive.", + "example_sentence_english": "We had a very constructive discussion.", + "pos": "adjective", + "word_frequency": 11773 + }, + { + "word": "convalescence", + "article_with_word": "la convalescence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convalescence;recovery", + "example_sentence_native": "Il est en période de convalescence après son opération.", + "example_sentence_english": "He is in a period of convalescence after his operation.", + "pos": "noun", + "word_frequency": 11774 + }, + { + "word": "coordinateur", + "article_with_word": "le coordinateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordinator", + "example_sentence_native": "Le coordinateur du projet est responsable de l'équipe.", + "example_sentence_english": "The project coordinator is responsible for the team.", + "pos": "noun", + "word_frequency": 11775 + }, + { + "word": "costard", + "article_with_word": "le costard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suit (informal)", + "example_sentence_native": "Il a mis son plus beau costard pour le mariage.", + "example_sentence_english": "He put on his best suit for the wedding.", + "pos": "noun", + "word_frequency": 11776 + }, + { + "word": "dialoguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dialogue;to converse", + "example_sentence_native": "Il est important de dialoguer pour résoudre les conflits.", + "example_sentence_english": "It is important to dialogue to resolve conflicts.", + "pos": "verb", + "word_frequency": 11777 + }, + { + "word": "didactique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "didactic;educational", + "example_sentence_native": "Ce livre a une approche très didactique.", + "example_sentence_english": "This book has a very didactic approach.", + "pos": "adjective", + "word_frequency": 11779 + }, + { + "word": "dignement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with dignity;honorably", + "example_sentence_native": "Il a accepté sa défaite dignement.", + "example_sentence_english": "He accepted his defeat with dignity.", + "pos": "adverb", + "word_frequency": 11780 + }, + { + "word": "discount", + "article_with_word": "le discount", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discount (store;price)", + "example_sentence_native": "J'ai acheté ces chaussures dans un magasin discount.", + "example_sentence_english": "I bought these shoes at a discount store.", + "pos": "noun", + "word_frequency": 11781 + }, + { + "word": "dissertation", + "article_with_word": "la dissertation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essay;dissertation", + "example_sentence_native": "L'étudiant doit rédiger une dissertation sur ce sujet.", + "example_sentence_english": "The student must write an essay on this topic.", + "pos": "noun", + "word_frequency": 11782 + }, + { + "word": "diva", + "article_with_word": "la diva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diva", + "example_sentence_native": "La diva a refusé de chanter sans ses fleurs préférées.", + "example_sentence_english": "The diva refused to sing without her favorite flowers.", + "pos": "noun", + "word_frequency": 11783 + }, + { + "word": "dupe", + "article_with_word": "la dupe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dupe;fool", + "example_sentence_native": "Il a été la dupe de cette arnaque.", + "example_sentence_english": "He was the dupe of this scam.", + "pos": "noun", + "word_frequency": 11785 + }, + { + "word": "déchiffrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decipher;to decode", + "example_sentence_native": "J'ai eu du mal à déchiffrer son écriture.", + "example_sentence_english": "I had trouble deciphering his handwriting.", + "pos": "verb", + "word_frequency": 11786 + }, + { + "word": "déguiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disguise;to dress up", + "example_sentence_native": "Les enfants aiment se déguiser pour Halloween.", + "example_sentence_english": "Children like to dress up for Halloween.", + "pos": "verb", + "word_frequency": 11787 + }, + { + "word": "démarquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stand out;to distinguish oneself", + "example_sentence_native": "Il a réussi à se démarquer de ses concurrents.", + "example_sentence_english": "He managed to stand out from his competitors.", + "pos": "verb", + "word_frequency": 11788 + }, + { + "word": "détestable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detestable;hateful", + "example_sentence_native": "Son comportement était absolument détestable.", + "example_sentence_english": "His behavior was absolutely detestable.", + "pos": "adjective", + "word_frequency": 11789 + }, + { + "word": "embryon", + "article_with_word": "l'embryon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embryo", + "example_sentence_native": "La recherche sur l'embryon est un sujet délicat.", + "example_sentence_english": "Embryo research is a delicate subject.", + "pos": "noun", + "word_frequency": 11791 + }, + { + "word": "empoisonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to poison", + "example_sentence_native": "Il a tenté d'empoisonner son ennemi.", + "example_sentence_english": "He tried to poison his enemy.", + "pos": "verb", + "word_frequency": 11792 + }, + { + "word": "entraille", + "article_with_word": "l'entraille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrails;guts", + "example_sentence_native": "Les entrailles de la terre cachent des trésors.", + "example_sentence_english": "The entrails of the earth hide treasures.", + "pos": "noun", + "word_frequency": 11794 + }, + { + "word": "excentrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eccentric", + "example_sentence_native": "Son style vestimentaire est très excentrique.", + "example_sentence_english": "His clothing style is very eccentric.", + "pos": "adjective", + "word_frequency": 11797 + }, + { + "word": "extradition", + "article_with_word": "l'extradition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extradition", + "example_sentence_native": "La demande d'extradition a été acceptée.", + "example_sentence_english": "The extradition request was accepted.", + "pos": "noun", + "word_frequency": 11798 + }, + { + "word": "fanfare", + "article_with_word": "la fanfare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brass band;fanfare", + "example_sentence_native": "La fanfare a joué de la musique joyeuse.", + "example_sentence_english": "The brass band played joyful music.", + "pos": "noun", + "word_frequency": 11799 + }, + { + "word": "folio", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "folio", + "example_sentence_native": "Ce livre est un grand folio.", + "example_sentence_english": "This book is a large folio.", + "pos": "noun", + "word_frequency": 11801 + }, + { + "word": "fécondité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertility;fecundity", + "example_sentence_native": "La fécondité du sol est essentielle pour l'agriculture.", + "example_sentence_english": "Soil fertility is essential for agriculture.", + "pos": "noun", + "word_frequency": 11806 + }, + { + "word": "gadget", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gadget", + "example_sentence_native": "Il a acheté un nouveau gadget technologique.", + "example_sentence_english": "He bought a new technological gadget.", + "pos": "noun", + "word_frequency": 11807 + }, + { + "word": "gentilhomme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gentleman;nobleman", + "example_sentence_native": "Le gentilhomme salua la dame avec courtoisie.", + "example_sentence_english": "The gentleman greeted the lady courteously.", + "pos": "noun", + "word_frequency": 11808 + }, + { + "word": "gourou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guru", + "example_sentence_native": "Le gourou a beaucoup d'adeptes.", + "example_sentence_english": "The guru has many followers.", + "pos": "noun", + "word_frequency": 11811 + }, + { + "word": "gîte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lodging;cottage;gite", + "example_sentence_native": "Nous avons loué un gîte à la campagne.", + "example_sentence_english": "We rented a gite in the countryside.", + "pos": "noun", + "word_frequency": 11813 + }, + { + "word": "inconsciemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconsciously", + "example_sentence_native": "Il a agi inconsciemment.", + "example_sentence_english": "He acted unconsciously.", + "pos": "adverb", + "word_frequency": 11814 + }, + { + "word": "infidélité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infidelity", + "example_sentence_native": "L'infidélité peut détruire un couple.", + "example_sentence_english": "Infidelity can destroy a couple.", + "pos": "noun", + "word_frequency": 11815 + }, + { + "word": "instruire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instruct;to educate", + "example_sentence_native": "Il est important d'instruire les jeunes générations.", + "example_sentence_english": "It is important to educate the younger generations.", + "pos": "verb", + "word_frequency": 11816 + }, + { + "word": "item", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "item", + "example_sentence_native": "Veuillez vérifier chaque item de la liste.", + "example_sentence_english": "Please check each item on the list.", + "pos": "noun", + "word_frequency": 11818 + }, + { + "word": "journalistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journalistic", + "example_sentence_native": "Il a un style journalistique très clair.", + "example_sentence_english": "He has a very clear journalistic style.", + "pos": "adjective", + "word_frequency": 11819 + }, + { + "word": "kebab", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kebab", + "example_sentence_native": "J'ai mangé un délicieux kebab hier soir.", + "example_sentence_english": "I ate a delicious kebab last night.", + "pos": "noun", + "word_frequency": 11821 + }, + { + "word": "lacet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shoelace;lace", + "example_sentence_native": "Mon lacet est défait.", + "example_sentence_english": "My shoelace is untied.", + "pos": "noun", + "word_frequency": 11822 + }, + { + "word": "laïc", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secular;lay", + "example_sentence_native": "La France est un État laïc.", + "example_sentence_english": "France is a secular state.", + "pos": "adjective", + "word_frequency": 11823 + }, + { + "word": "leu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leu (Romanian;Moldovan currency)", + "example_sentence_native": "La monnaie roumaine est le leu.", + "example_sentence_english": "The Romanian currency is the leu.", + "pos": "noun", + "word_frequency": 11824 + }, + { + "word": "levure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yeast", + "example_sentence_native": "Il faut de la levure pour faire du pain.", + "example_sentence_english": "You need yeast to make bread.", + "pos": "noun", + "word_frequency": 11825 + }, + { + "word": "lorrain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lorraine (adj.);from Lorraine", + "example_sentence_native": "C'est une spécialité lorraine.", + "example_sentence_english": "It's a Lorraine specialty.", + "pos": "adjective", + "word_frequency": 11826 + }, + { + "word": "mitigé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixed;mitigated", + "example_sentence_native": "J'ai un avis mitigé sur cette question.", + "example_sentence_english": "I have a mixed opinion on this issue.", + "pos": "adjective", + "word_frequency": 11830 + }, + { + "word": "métallurgie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metallurgy", + "example_sentence_native": "La métallurgie est une science des métaux.", + "example_sentence_english": "Metallurgy is a science of metals.", + "pos": "noun", + "word_frequency": 11832 + }, + { + "word": "méthane", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methane", + "example_sentence_native": "Le méthane est un gaz à effet de serre.", + "example_sentence_english": "Methane is a greenhouse gas.", + "pos": "noun", + "word_frequency": 11833 + }, + { + "word": "narcissique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narcissistic", + "example_sentence_native": "Il a une personnalité très narcissique.", + "example_sentence_english": "He has a very narcissistic personality.", + "pos": "adjective", + "word_frequency": 11834 + }, + { + "word": "nuisance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuisance;harm", + "example_sentence_native": "Le bruit est une nuisance pour les voisins.", + "example_sentence_english": "Noise is a nuisance for the neighbors.", + "pos": "noun", + "word_frequency": 11836 + }, + { + "word": "obstruction", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstruction", + "example_sentence_native": "Il y a eu une obstruction à la justice.", + "example_sentence_english": "There was an obstruction of justice.", + "pos": "noun", + "word_frequency": 11837 + }, + { + "word": "obèse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obese", + "example_sentence_native": "Le patient est cliniquement obèse.", + "example_sentence_english": "The patient is clinically obese.", + "pos": "adjective", + "word_frequency": 11838 + }, + { + "word": "orateur", + "article_with_word": "l'orateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker", + "example_sentence_native": "L'orateur a captivé l'audience avec son discours.", + "example_sentence_english": "The speaker captivated the audience with his speech.", + "pos": "noun", + "word_frequency": 11840 + }, + { + "word": "outillage", + "article_with_word": "l'outillage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tooling;equipment", + "example_sentence_native": "Il a acheté tout l'outillage nécessaire pour son atelier.", + "example_sentence_english": "He bought all the necessary tooling for his workshop.", + "pos": "noun", + "word_frequency": 11843 + }, + { + "word": "perfectionnement", + "article_with_word": "le perfectionnement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvement;professional development", + "example_sentence_native": "Ce stage est destiné au perfectionnement des compétences.", + "example_sentence_english": "This internship is for skill improvement.", + "pos": "noun", + "word_frequency": 11845 + }, + { + "word": "perfectionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to perfect;to improve", + "example_sentence_native": "Il veut perfectionner son français.", + "example_sentence_english": "He wants to perfect his French.", + "pos": "verb", + "word_frequency": 11846 + }, + { + "word": "pharaon", + "article_with_word": "le pharaon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pharaoh", + "example_sentence_native": "Les pharaons régnaient sur l'Égypte ancienne.", + "example_sentence_english": "The pharaohs ruled ancient Egypt.", + "pos": "noun", + "word_frequency": 11848 + }, + { + "word": "pharma", + "article_with_word": "la pharma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pharmaceuticals (industry)", + "example_sentence_native": "L'industrie de la pharma est en pleine croissance.", + "example_sentence_english": "The pharmaceutical industry is growing rapidly.", + "pos": "noun", + "word_frequency": 11849 + }, + { + "word": "piller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to loot;to plunder", + "example_sentence_native": "Les envahisseurs ont pillé la ville.", + "example_sentence_english": "The invaders looted the city.", + "pos": "verb", + "word_frequency": 11851 + }, + { + "word": "pirater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hack;to pirate", + "example_sentence_native": "Son compte a été piraté la nuit dernière.", + "example_sentence_english": "His account was hacked last night.", + "pos": "verb", + "word_frequency": 11852 + }, + { + "word": "piéger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trap;to trick", + "example_sentence_native": "Ils ont essayé de le piéger avec une fausse information.", + "example_sentence_english": "They tried to trap him with false information.", + "pos": "verb", + "word_frequency": 11853 + }, + { + "word": "porche", + "article_with_word": "le porche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porch;portico", + "example_sentence_native": "Ils se sont abrités sous le porche pendant l'orage.", + "example_sentence_english": "They took shelter under the porch during the storm.", + "pos": "noun", + "word_frequency": 11855 + }, + { + "word": "portique", + "article_with_word": "le portique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gantry;portico;archway", + "example_sentence_native": "Le portique de sécurité a sonné à son passage.", + "example_sentence_english": "The security gantry beeped as he passed.", + "pos": "noun", + "word_frequency": 11856 + }, + { + "word": "procuration", + "article_with_word": "la procuration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power of attorney;proxy", + "example_sentence_native": "J'ai donné procuration à ma sœur pour voter à ma place.", + "example_sentence_english": "I gave my sister power of attorney to vote for me.", + "pos": "noun", + "word_frequency": 11858 + }, + { + "word": "prohibition", + "article_with_word": "la prohibition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prohibition", + "example_sentence_native": "La prohibition de l'alcool a eu lieu aux États-Unis.", + "example_sentence_english": "Alcohol prohibition took place in the United States.", + "pos": "noun", + "word_frequency": 11859 + }, + { + "word": "prématuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premature", + "example_sentence_native": "Sa décision était un peu prématurée.", + "example_sentence_english": "His decision was a bit premature.", + "pos": "adjective", + "word_frequency": 11860 + }, + { + "word": "puiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw (water;inspiration);to tap into", + "example_sentence_native": "Il a puisé de l'eau au puits.", + "example_sentence_english": "He drew water from the well.", + "pos": "verb", + "word_frequency": 11861 + }, + { + "word": "pépite", + "article_with_word": "la pépite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nugget (gold);gem;little treasure", + "example_sentence_native": "Cette entreprise est une vraie pépite.", + "example_sentence_english": "This company is a real gem.", + "pos": "noun", + "word_frequency": 11862 + }, + { + "word": "rebond", + "article_with_word": "le rebond", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebound;bounce", + "example_sentence_native": "L'économie a montré un léger rebond.", + "example_sentence_english": "The economy showed a slight rebound.", + "pos": "noun", + "word_frequency": 11864 + }, + { + "word": "reconquérir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconquer;to win back", + "example_sentence_native": "Il a réussi à reconquérir la confiance de son équipe.", + "example_sentence_english": "He managed to win back his team's trust.", + "pos": "verb", + "word_frequency": 11865 + }, + { + "word": "redevable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indebted;accountable", + "example_sentence_native": "Je lui suis redevable pour son aide.", + "example_sentence_english": "I am indebted to him for his help.", + "pos": "adjective", + "word_frequency": 11866 + }, + { + "word": "ref", + "article_with_word": "le ref", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference (colloquial)", + "example_sentence_native": "Peux-tu me donner la ref de ce produit ?", + "example_sentence_english": "Can you give me the reference for this product?", + "pos": "noun", + "word_frequency": 11867 + }, + { + "word": "renaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be reborn;to revive", + "example_sentence_native": "Après la crise, la ville a su renaître de ses cendres.", + "example_sentence_english": "After the crisis, the city was able to be reborn from its ashes.", + "pos": "verb", + "word_frequency": 11868 + }, + { + "word": "replay", + "article_with_word": "le replay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "replay", + "example_sentence_native": "J'ai regardé le replay du match hier soir.", + "example_sentence_english": "I watched the replay of the match last night.", + "pos": "noun", + "word_frequency": 11869 + }, + { + "word": "ressentiment", + "article_with_word": "le ressentiment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment", + "example_sentence_native": "Il gardait un profond ressentiment envers son ancien collègue.", + "example_sentence_english": "He held deep resentment towards his former colleague.", + "pos": "noun", + "word_frequency": 11870 + }, + { + "word": "rigidité", + "article_with_word": "la rigidité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigidity;stiffness", + "example_sentence_native": "La rigidité de ses muscles était due à l'exercice.", + "example_sentence_english": "The stiffness of his muscles was due to exercise.", + "pos": "noun", + "word_frequency": 11872 + }, + { + "word": "rubis", + "article_with_word": "le rubis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruby", + "example_sentence_native": "Elle portait un collier orné de rubis.", + "example_sentence_english": "She wore a necklace adorned with rubies.", + "pos": "noun", + "word_frequency": 11874 + }, + { + "word": "russo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Russian (as in Italo-Russian;often in compounds)", + "example_sentence_native": "Il s'intéresse à la culture russo-américaine.", + "example_sentence_english": "He is interested in Russian-American culture.", + "pos": "adjective", + "word_frequency": 11875 + }, + { + "word": "réfection", + "article_with_word": "la réfection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repair;renovation", + "example_sentence_native": "La réfection du toit est prévue pour l'été.", + "example_sentence_english": "The roof repair is scheduled for the summer.", + "pos": "noun", + "word_frequency": 11876 + }, + { + "word": "référentiel", + "article_with_word": "le référentiel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "framework;reference system", + "example_sentence_native": "Ce document sert de référentiel pour l'évaluation.", + "example_sentence_english": "This document serves as a framework for evaluation.", + "pos": "noun", + "word_frequency": 11877 + }, + { + "word": "régal", + "article_with_word": "le régal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treat;delight", + "example_sentence_native": "Ce dessert est un vrai régal.", + "example_sentence_english": "This dessert is a real treat.", + "pos": "noun", + "word_frequency": 11878 + }, + { + "word": "scientifiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scientifically", + "example_sentence_native": "Il a prouvé sa théorie scientifiquement.", + "example_sentence_english": "He proved his theory scientifically.", + "pos": "adverb", + "word_frequency": 11880 + }, + { + "word": "scout", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scout", + "example_sentence_native": "Le scout a allumé le feu de camp.", + "example_sentence_english": "The scout lit the campfire.", + "pos": "noun", + "word_frequency": 11881 + }, + { + "word": "shoot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shot (sports;photography)", + "example_sentence_native": "Il a marqué un beau shoot au basket.", + "example_sentence_english": "He scored a nice shot in basketball.", + "pos": "noun", + "word_frequency": 11882 + }, + { + "word": "souverainiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereigntist", + "example_sentence_native": "Le parti souverainiste a gagné les élections.", + "example_sentence_english": "The sovereigntist party won the elections.", + "pos": "adjective", + "word_frequency": 11886 + }, + { + "word": "spirit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirit (e.g.;alcoholic spirit)", + "example_sentence_native": "Le spirit de cette boisson est très fort.", + "example_sentence_english": "The spirit of this drink is very strong.", + "pos": "noun", + "word_frequency": 11887 + }, + { + "word": "stéréo", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stereo", + "example_sentence_native": "J'ai acheté une nouvelle chaîne stéréo.", + "example_sentence_english": "I bought a new stereo system.", + "pos": "noun", + "word_frequency": 11889 + }, + { + "word": "succursale", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch (office)", + "example_sentence_native": "La banque a ouvert une nouvelle succursale en ville.", + "example_sentence_english": "The bank opened a new branch in town.", + "pos": "noun", + "word_frequency": 11890 + }, + { + "word": "tarification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pricing;tariffication", + "example_sentence_native": "La nouvelle tarification des services est en vigueur.", + "example_sentence_english": "The new pricing of services is in effect.", + "pos": "noun", + "word_frequency": 11893 + }, + { + "word": "testicule", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testicle", + "example_sentence_native": "Le testicule est une glande reproductive.", + "example_sentence_english": "The testicle is a reproductive gland.", + "pos": "noun", + "word_frequency": 11895 + }, + { + "word": "thermomètre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thermometer", + "example_sentence_native": "J'ai pris ma température avec un thermomètre.", + "example_sentence_english": "I took my temperature with a thermometer.", + "pos": "noun", + "word_frequency": 11896 + }, + { + "word": "traumatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traumatic", + "example_sentence_native": "L'accident a été une expérience traumatique.", + "example_sentence_english": "The accident was a traumatic experience.", + "pos": "adjective", + "word_frequency": 11899 + }, + { + "word": "tripe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tripe;guts (informal)", + "example_sentence_native": "Les tripes à la mode de Caen sont un plat traditionnel.", + "example_sentence_english": "Caen-style tripe is a traditional dish.", + "pos": "noun", + "word_frequency": 11900 + }, + { + "word": "tunique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tunic", + "example_sentence_native": "Elle portait une longue tunique bleue.", + "example_sentence_english": "She was wearing a long blue tunic.", + "pos": "noun", + "word_frequency": 11901 + }, + { + "word": "valse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waltz", + "example_sentence_native": "Ils ont dansé une belle valse.", + "example_sentence_english": "They danced a beautiful waltz.", + "pos": "noun", + "word_frequency": 11903 + }, + { + "word": "viral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viral", + "example_sentence_native": "Cette vidéo est devenue virale sur internet.", + "example_sentence_english": "This video went viral on the internet.", + "pos": "adjective", + "word_frequency": 11905 + }, + { + "word": "volaille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poultry", + "example_sentence_native": "Nous avons mangé de la volaille rôtie.", + "example_sentence_english": "We ate roasted poultry.", + "pos": "noun", + "word_frequency": 11906 + }, + { + "word": "vélodrome", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "velodrome", + "example_sentence_native": "Le vélodrome est plein pour la course.", + "example_sentence_english": "The velodrome is full for the race.", + "pos": "noun", + "word_frequency": 11907 + }, + { + "word": "échauffement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warm-up", + "example_sentence_native": "Faites un bon échauffement avant de courir.", + "example_sentence_english": "Do a good warm-up before running.", + "pos": "noun", + "word_frequency": 11911 + }, + { + "word": "électron", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electron", + "example_sentence_native": "L'électron est une particule subatomique.", + "example_sentence_english": "The electron is a subatomic particle.", + "pos": "noun", + "word_frequency": 11912 + }, + { + "word": "allocution", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "address;speech", + "example_sentence_native": "Le président a prononcé une allocution télévisée.", + "example_sentence_english": "The president delivered a televised address.", + "pos": "noun", + "word_frequency": 11914 + }, + { + "word": "allégorie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegory", + "example_sentence_native": "La caverne de Platon est une célèbre allégorie.", + "example_sentence_english": "Plato's cave is a famous allegory.", + "pos": "noun", + "word_frequency": 11915 + }, + { + "word": "ambigu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambiguous", + "example_sentence_native": "Sa réponse était très ambiguë.", + "example_sentence_english": "His answer was very ambiguous.", + "pos": "adjective", + "word_frequency": 11917 + }, + { + "word": "avide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greedy;eager", + "example_sentence_native": "Il est avide de connaissances et lit beaucoup.", + "example_sentence_english": "He is eager for knowledge and reads a lot.", + "pos": "adjective", + "word_frequency": 11921 + }, + { + "word": "balise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beacon;marker;tag", + "example_sentence_native": "La balise lumineuse guide les bateaux la nuit.", + "example_sentence_english": "The light beacon guides boats at night.", + "pos": "noun", + "word_frequency": 11922 + }, + { + "word": "bavarois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bavarian", + "example_sentence_native": "J'ai goûté une spécialité bavaroise lors de mon voyage.", + "example_sentence_english": "I tasted a Bavarian specialty during my trip.", + "pos": "adjective", + "word_frequency": 11923 + }, + { + "word": "bide", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flop (informal);belly (informal)", + "example_sentence_native": "Le film a fait un bide au box-office.", + "example_sentence_english": "The movie was a flop at the box office.", + "pos": "noun", + "word_frequency": 11925 + }, + { + "word": "bijouterie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jewelry store;jewelry", + "example_sentence_native": "Elle a acheté une bague magnifique à la bijouterie.", + "example_sentence_english": "She bought a magnificent ring at the jewelry store.", + "pos": "noun", + "word_frequency": 11926 + }, + { + "word": "boussole", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass", + "example_sentence_native": "Nous avons utilisé une boussole pour nous orienter dans la forêt.", + "example_sentence_english": "We used a compass to find our way in the forest.", + "pos": "noun", + "word_frequency": 11928 + }, + { + "word": "capitulation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitulation;surrender", + "example_sentence_native": "La capitulation de l'armée a mis fin au conflit.", + "example_sentence_english": "The army's capitulation ended the conflict.", + "pos": "noun", + "word_frequency": 11933 + }, + { + "word": "chorégraphe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choreographer", + "example_sentence_native": "Le chorégraphe a mis en scène un spectacle de danse moderne.", + "example_sentence_english": "The choreographer staged a modern dance show.", + "pos": "noun", + "word_frequency": 11937 + }, + { + "word": "cloître", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cloister", + "example_sentence_native": "Les moines se promenaient en silence dans le cloître de l'abbaye.", + "example_sentence_english": "The monks walked silently in the abbey's cloister.", + "pos": "noun", + "word_frequency": 11938 + }, + { + "word": "coaching", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coaching", + "example_sentence_native": "Il a suivi un programme de coaching pour améliorer ses performances.", + "example_sentence_english": "He followed a coaching program to improve his performance.", + "pos": "noun", + "word_frequency": 11939 + }, + { + "word": "cockpit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cockpit", + "example_sentence_native": "Le pilote a vérifié les instruments dans le cockpit.", + "example_sentence_english": "The pilot checked the instruments in the cockpit.", + "pos": "noun", + "word_frequency": 11940 + }, + { + "word": "cognitive", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cognitive", + "example_sentence_native": "Elle étudie les fonctions cognitives du cerveau humain.", + "example_sentence_english": "She studies the cognitive functions of the human brain.", + "pos": "adjective", + "word_frequency": 11941 + }, + { + "word": "commercialiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commercialize;to market", + "example_sentence_native": "L'entreprise prévoit de commercialiser ce nouveau produit l'année prochaine.", + "example_sentence_english": "The company plans to commercialize this new product next year.", + "pos": "verb", + "word_frequency": 11942 + }, + { + "word": "concluant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conclusive;decisive", + "example_sentence_native": "Les preuves présentées n'étaient pas suffisamment concluantes.", + "example_sentence_english": "The evidence presented was not conclusive enough.", + "pos": "adjective", + "word_frequency": 11943 + }, + { + "word": "contravention", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fine;violation;infraction", + "example_sentence_native": "Il a reçu une contravention pour stationnement interdit.", + "example_sentence_english": "He received a fine for illegal parking.", + "pos": "noun", + "word_frequency": 11944 + }, + { + "word": "couplet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verse;stanza;couplet", + "example_sentence_native": "Le deuxième couplet de la chanson est très émouvant.", + "example_sentence_english": "The second verse of the song is very moving.", + "pos": "noun", + "word_frequency": 11945 + }, + { + "word": "cubain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cuban", + "example_sentence_native": "J'adore la musique cubaine et ses rythmes entraînants.", + "example_sentence_english": "I love Cuban music and its catchy rhythms.", + "pos": "adjective", + "word_frequency": 11946 + }, + { + "word": "cueillir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pick;to gather", + "example_sentence_native": "Nous sommes allés cueillir des champignons dans la forêt.", + "example_sentence_english": "We went to pick mushrooms in the forest.", + "pos": "verb", + "word_frequency": 11947 + }, + { + "word": "cuvette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basin;bowl;toilet bowl", + "example_sentence_native": "La cuvette des toilettes doit être nettoyée régulièrement.", + "example_sentence_english": "The toilet bowl must be cleaned regularly.", + "pos": "noun", + "word_frequency": 11948 + }, + { + "word": "cygne", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swan", + "example_sentence_native": "Un cygne blanc nageait gracieusement sur le lac.", + "example_sentence_english": "A white swan was swimming gracefully on the lake.", + "pos": "noun", + "word_frequency": 11949 + }, + { + "word": "destitution", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impeachment;removal from office", + "example_sentence_native": "La procédure de destitution du président a été lancée.", + "example_sentence_english": "The impeachment procedure against the president has been initiated.", + "pos": "noun", + "word_frequency": 11950 + }, + { + "word": "diffuseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broadcaster;diffuser", + "example_sentence_native": "Le diffuseur a annoncé la programmation de la soirée.", + "example_sentence_english": "The broadcaster announced the evening's programming.", + "pos": "noun", + "word_frequency": 11951 + }, + { + "word": "dignitaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dignitary", + "example_sentence_native": "Plusieurs dignitaires étrangers ont assisté à la cérémonie.", + "example_sentence_english": "Several foreign dignitaries attended the ceremony.", + "pos": "noun", + "word_frequency": 11952 + }, + { + "word": "délice", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delight;treat", + "example_sentence_native": "Ce dessert est un vrai délice pour les papilles.", + "example_sentence_english": "This dessert is a real delight for the taste buds.", + "pos": "noun", + "word_frequency": 11953 + }, + { + "word": "dépouillement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counting (of votes);stripping;analysis", + "example_sentence_native": "Le dépouillement des votes a duré toute la nuit.", + "example_sentence_english": "The counting of votes lasted all night.", + "pos": "noun", + "word_frequency": 11954 + }, + { + "word": "electro", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electro (electronic music)", + "example_sentence_native": "J'aime danser sur de la musique électro.", + "example_sentence_english": "I like dancing to electro music.", + "pos": "noun", + "word_frequency": 11956 + }, + { + "word": "enchanté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "delighted;pleased to meet you", + "example_sentence_native": "Enchanté de faire votre connaissance, Madame Dubois.", + "example_sentence_english": "Pleased to meet you, Mrs. Dubois.", + "pos": "adjective", + "word_frequency": 11957 + }, + { + "word": "escadre", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squadron;fleet", + "example_sentence_native": "L'escadre de navires a levé l'ancre au lever du soleil.", + "example_sentence_english": "The squadron of ships weighed anchor at sunrise.", + "pos": "noun", + "word_frequency": 11959 + }, + { + "word": "exonération", + "article_with_word": "l'exonération", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemption", + "example_sentence_native": "L'exonération fiscale est une mesure pour alléger les impôts.", + "example_sentence_english": "Tax exemption is a measure to lighten taxes.", + "pos": "noun", + "word_frequency": 11960 + }, + { + "word": "foutage", + "article_with_word": "le foutage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mockery;fooling around", + "example_sentence_native": "C'est du pur foutage de gueule !", + "example_sentence_english": "This is pure mockery!", + "pos": "noun", + "word_frequency": 11963 + }, + { + "word": "fœtus", + "article_with_word": "le fœtus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetus", + "example_sentence_native": "Le développement du fœtus est surveillé de près.", + "example_sentence_english": "The development of the fetus is closely monitored.", + "pos": "noun", + "word_frequency": 11965 + }, + { + "word": "gestation", + "article_with_word": "la gestation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gestation", + "example_sentence_native": "La période de gestation chez les humains est d'environ neuf mois.", + "example_sentence_english": "The gestation period in humans is about nine months.", + "pos": "noun", + "word_frequency": 11967 + }, + { + "word": "glacial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glacial;icy;freezing", + "example_sentence_native": "Le vent était glacial ce matin.", + "example_sentence_english": "The wind was freezing this morning.", + "pos": "adjective", + "word_frequency": 11969 + }, + { + "word": "gouvernant", + "article_with_word": "le gouvernant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruler;governor;housekeeper", + "example_sentence_native": "Le gouvernant a pris des décisions importantes.", + "example_sentence_english": "The ruler made important decisions.", + "pos": "noun", + "word_frequency": 11971 + }, + { + "word": "graphisme", + "article_with_word": "le graphisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphic design;graphics", + "example_sentence_native": "Il étudie le graphisme à l'université.", + "example_sentence_english": "He studies graphic design at university.", + "pos": "noun", + "word_frequency": 11972 + }, + { + "word": "grossièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roughly;coarsely;rudely", + "example_sentence_native": "Il a grossièrement estimé le coût des travaux.", + "example_sentence_english": "He roughly estimated the cost of the work.", + "pos": "adverb", + "word_frequency": 11974 + }, + { + "word": "halo", + "article_with_word": "le halo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "halo", + "example_sentence_native": "On voyait un halo autour de la lune.", + "example_sentence_english": "We could see a halo around the moon.", + "pos": "noun", + "word_frequency": 11975 + }, + { + "word": "immortalité", + "article_with_word": "l'immortalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immortality", + "example_sentence_native": "La quête de l'immortalité est un thème ancien.", + "example_sentence_english": "The quest for immortality is an ancient theme.", + "pos": "noun", + "word_frequency": 11976 + }, + { + "word": "imparfait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imperfect;flawed", + "example_sentence_native": "Son travail est imparfait mais prometteur.", + "example_sentence_english": "His work is imperfect but promising.", + "pos": "adjective", + "word_frequency": 11977 + }, + { + "word": "imposable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxable", + "example_sentence_native": "Ce revenu est imposable.", + "example_sentence_english": "This income is taxable.", + "pos": "adjective", + "word_frequency": 11978 + }, + { + "word": "imprévu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unforeseen;unexpected", + "example_sentence_native": "Nous avons dû faire face à des dépenses imprévues.", + "example_sentence_english": "We had to face unforeseen expenses.", + "pos": "adjective", + "word_frequency": 11979 + }, + { + "word": "injecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inject", + "example_sentence_native": "Le médecin va injecter le vaccin.", + "example_sentence_english": "The doctor will inject the vaccine.", + "pos": "verb", + "word_frequency": 11980 + }, + { + "word": "injure", + "article_with_word": "l'injure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insult;injury", + "example_sentence_native": "Il a proféré des injures.", + "example_sentence_english": "He uttered insults.", + "pos": "noun", + "word_frequency": 11981 + }, + { + "word": "institutrice", + "article_with_word": "l'institutrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "primary school teacher (female)", + "example_sentence_native": "L'institutrice a expliqué la leçon.", + "example_sentence_english": "The primary school teacher explained the lesson.", + "pos": "noun", + "word_frequency": 11982 + }, + { + "word": "intérimaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporary;interim", + "example_sentence_native": "Elle occupe un poste intérimaire.", + "example_sentence_english": "She holds a temporary position.", + "pos": "adjective", + "word_frequency": 11983 + }, + { + "word": "irakien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iraqi", + "example_sentence_native": "Il a rencontré un journaliste irakien.", + "example_sentence_english": "He met an Iraqi journalist.", + "pos": "adjective", + "word_frequency": 11984 + }, + { + "word": "irrégularité", + "article_with_word": "l'irrégularité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irregularity", + "example_sentence_native": "Des irrégularités ont été découvertes dans les comptes.", + "example_sentence_english": "Irregularities were discovered in the accounts.", + "pos": "noun", + "word_frequency": 11985 + }, + { + "word": "jihad", + "article_with_word": "le jihad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihad", + "example_sentence_native": "Le concept de jihad est souvent mal compris.", + "example_sentence_english": "The concept of jihad is often misunderstood.", + "pos": "noun", + "word_frequency": 11986 + }, + { + "word": "jouable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playable;feasible", + "example_sentence_native": "Cette stratégie semble jouable.", + "example_sentence_english": "This strategy seems feasible.", + "pos": "adjective", + "word_frequency": 11987 + }, + { + "word": "ketchup", + "article_with_word": "le ketchup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ketchup", + "example_sentence_native": "Les enfants adorent le ketchup avec leurs frites.", + "example_sentence_english": "Children love ketchup with their fries.", + "pos": "noun", + "word_frequency": 11992 + }, + { + "word": "lustre", + "article_with_word": "le lustre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chandelier;luster;shine", + "example_sentence_native": "Le grand lustre illumine la salle.", + "example_sentence_english": "The large chandelier illuminates the room.", + "pos": "noun", + "word_frequency": 11998 + }, + { + "word": "malhonnête", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dishonest;unfair", + "example_sentence_native": "C'est une personne malhonnête.", + "example_sentence_english": "He is a dishonest person.", + "pos": "adjective", + "word_frequency": 11999 + }, + { + "word": "mât", + "article_with_word": "le mât", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mast", + "example_sentence_native": "Le bateau avait un grand mât.", + "example_sentence_english": "The boat had a tall mast.", + "pos": "noun", + "word_frequency": 12002 + }, + { + "word": "mémé", + "article_with_word": "la mémé", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "granny", + "example_sentence_native": "Ma mémé fait les meilleurs gâteaux.", + "example_sentence_english": "My granny makes the best cakes.", + "pos": "noun", + "word_frequency": 12003 + }, + { + "word": "nicotine", + "article_with_word": "la nicotine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nicotine", + "example_sentence_native": "La nicotine est une substance addictive.", + "example_sentence_english": "Nicotine is an addictive substance.", + "pos": "noun", + "word_frequency": 12007 + }, + { + "word": "obsolète", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsolete", + "example_sentence_native": "Ce logiciel est devenu obsolète.", + "example_sentence_english": "This software has become obsolete.", + "pos": "adjective", + "word_frequency": 12008 + }, + { + "word": "ornement", + "article_with_word": "un ornement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ornament", + "example_sentence_native": "L'arbre de Noël était rempli d'ornements.", + "example_sentence_english": "The Christmas tree was full of ornaments.", + "pos": "noun", + "word_frequency": 12010 + }, + { + "word": "peigne", + "article_with_word": "un peigne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comb", + "example_sentence_native": "J'ai besoin d'un peigne pour mes cheveux.", + "example_sentence_english": "I need a comb for my hair.", + "pos": "noun", + "word_frequency": 12013 + }, + { + "word": "plaignant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plaintive", + "example_sentence_native": "Sa voix était plaignante.", + "example_sentence_english": "His voice was plaintive.", + "pos": "adjective", + "word_frequency": 12015 + }, + { + "word": "pluralité", + "article_with_word": "la pluralité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plurality", + "example_sentence_native": "La pluralité des opinions est essentielle en démocratie.", + "example_sentence_english": "The plurality of opinions is essential in a democracy.", + "pos": "noun", + "word_frequency": 12016 + }, + { + "word": "pollen", + "article_with_word": "le pollen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollen", + "example_sentence_native": "Le pollen provoque des allergies chez certaines personnes.", + "example_sentence_english": "Pollen causes allergies in some people.", + "pos": "noun", + "word_frequency": 12018 + }, + { + "word": "polyvalent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "versatile", + "example_sentence_native": "C'est un outil très polyvalent.", + "example_sentence_english": "It's a very versatile tool.", + "pos": "adjective", + "word_frequency": 12019 + }, + { + "word": "portage", + "article_with_word": "le portage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carrying", + "example_sentence_native": "Le portage de l'eau est difficile en montagne.", + "example_sentence_english": "Carrying water is difficult in the mountains.", + "pos": "noun", + "word_frequency": 12020 + }, + { + "word": "prestataire", + "article_with_word": "le prestataire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "service provider", + "example_sentence_native": "Nous avons engagé un prestataire de services informatiques.", + "example_sentence_english": "We hired an IT service provider.", + "pos": "noun", + "word_frequency": 12021 + }, + { + "word": "psychose", + "article_with_word": "la psychose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychosis", + "example_sentence_native": "Une psychose collective s'est installée après l'annonce.", + "example_sentence_english": "A collective psychosis set in after the announcement.", + "pos": "noun", + "word_frequency": 12022 + }, + { + "word": "questionnement", + "article_with_word": "le questionnement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questioning", + "example_sentence_native": "Son livre explore le questionnement de l'identité.", + "example_sentence_english": "His book explores the questioning of identity.", + "pos": "noun", + "word_frequency": 12023 + }, + { + "word": "ratification", + "article_with_word": "la ratification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ratification", + "example_sentence_native": "La ratification du traité est prévue pour demain.", + "example_sentence_english": "The ratification of the treaty is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 12024 + }, + { + "word": "ravin", + "article_with_word": "le ravin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ravine", + "example_sentence_native": "Ils ont trouvé le chemin au fond du ravin.", + "example_sentence_english": "They found the path at the bottom of the ravine.", + "pos": "noun", + "word_frequency": 12025 + }, + { + "word": "recruteur", + "article_with_word": "le recruteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recruiter", + "example_sentence_native": "Le recruteur m'a posé de nombreuses questions.", + "example_sentence_english": "The recruiter asked me many questions.", + "pos": "noun", + "word_frequency": 12026 + }, + { + "word": "reddition", + "article_with_word": "la reddition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surrender", + "example_sentence_native": "La reddition des troupes a eu lieu à l'aube.", + "example_sentence_english": "The surrender of the troops took place at dawn.", + "pos": "noun", + "word_frequency": 12027 + }, + { + "word": "rejouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to replay", + "example_sentence_native": "Nous allons rejouer le match demain.", + "example_sentence_english": "We are going to replay the match tomorrow.", + "pos": "verb", + "word_frequency": 12028 + }, + { + "word": "reponse", + "article_with_word": "la réponse", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "answer", + "example_sentence_native": "J'attends ta réponse.", + "example_sentence_english": "I'm waiting for your answer.", + "pos": "noun", + "word_frequency": 12029 + }, + { + "word": "rougir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blush", + "example_sentence_native": "Elle a rougi quand il lui a fait un compliment.", + "example_sentence_english": "She blushed when he complimented her.", + "pos": "verb", + "word_frequency": 12032 + }, + { + "word": "résonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resonate", + "example_sentence_native": "Sa voix résonnait dans la pièce vide.", + "example_sentence_english": "His voice resonated in the empty room.", + "pos": "verb", + "word_frequency": 12033 + }, + { + "word": "safari", + "article_with_word": "un safari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safari", + "example_sentence_native": "Nous avons fait un safari en Afrique.", + "example_sentence_english": "We went on a safari in Africa.", + "pos": "noun", + "word_frequency": 12035 + }, + { + "word": "saisissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "striking", + "example_sentence_native": "Le tableau avait une beauté saisissante.", + "example_sentence_english": "The painting had a striking beauty.", + "pos": "adjective", + "word_frequency": 12036 + }, + { + "word": "sante", + "article_with_word": "la santé", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "health", + "example_sentence_native": "La santé est très importante.", + "example_sentence_english": "Health is very important.", + "pos": "noun", + "word_frequency": 12037 + }, + { + "word": "schizophrénie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schizophrenia", + "example_sentence_native": "La schizophrénie est une maladie mentale complexe.", + "example_sentence_english": "Schizophrenia is a complex mental illness.", + "pos": "noun", + "word_frequency": 12040 + }, + { + "word": "sermon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sermon", + "example_sentence_native": "Le prêtre a prononcé un long sermon.", + "example_sentence_english": "The priest delivered a long sermon.", + "pos": "noun", + "word_frequency": 12041 + }, + { + "word": "sexiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexist", + "example_sentence_native": "Ses commentaires étaient clairement sexistes.", + "example_sentence_english": "His comments were clearly sexist.", + "pos": "adjective", + "word_frequency": 12042 + }, + { + "word": "soignant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caregiver", + "example_sentence_native": "Le soignant a pris soin du patient avec dévouement.", + "example_sentence_english": "The caregiver took care of the patient with dedication.", + "pos": "noun", + "word_frequency": 12044 + }, + { + "word": "standing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standing;reputation", + "example_sentence_native": "Cet hôtel a un standing élevé.", + "example_sentence_english": "This hotel has a high standing.", + "pos": "noun", + "word_frequency": 12045 + }, + { + "word": "stressant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stressful", + "example_sentence_native": "Ce travail est très stressant.", + "example_sentence_english": "This job is very stressful.", + "pos": "adjective", + "word_frequency": 12046 + }, + { + "word": "structurel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structural", + "example_sentence_native": "Il y a un problème structurel dans l'entreprise.", + "example_sentence_english": "There is a structural problem in the company.", + "pos": "adjective", + "word_frequency": 12047 + }, + { + "word": "tromperie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deception;fraud", + "example_sentence_native": "Il a été accusé de tromperie.", + "example_sentence_english": "He was accused of deception.", + "pos": "noun", + "word_frequency": 12053 + }, + { + "word": "utilitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utilitarian;utility", + "example_sentence_native": "C'est un véhicule utilitaire.", + "example_sentence_english": "It's a utility vehicle.", + "pos": "adjective", + "word_frequency": 12054 + }, + { + "word": "vandalisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandalism", + "example_sentence_native": "Le vandalisme est un problème dans cette ville.", + "example_sentence_english": "Vandalism is a problem in this city.", + "pos": "noun", + "word_frequency": 12055 + }, + { + "word": "vignette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticker;vignette;thumbnail", + "example_sentence_native": "J'ai collé la vignette sur mon pare-brise.", + "example_sentence_english": "I stuck the sticker on my windshield.", + "pos": "noun", + "word_frequency": 12056 + }, + { + "word": "écrouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse;to crumble", + "example_sentence_native": "Le vieux bâtiment menace de s'écrouler.", + "example_sentence_english": "The old building threatens to collapse.", + "pos": "verb", + "word_frequency": 12059 + }, + { + "word": "équestre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equestrian", + "example_sentence_native": "Il pratique l'équitation équestre.", + "example_sentence_english": "He practices equestrian riding.", + "pos": "adjective", + "word_frequency": 12060 + }, + { + "word": "albanais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Albanian", + "example_sentence_native": "Il parle la langue albanaise.", + "example_sentence_english": "He speaks the Albanian language.", + "pos": "adjective", + "word_frequency": 12062 + }, + { + "word": "allumage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignition", + "example_sentence_native": "Le système d'allumage de la voiture est défectueux.", + "example_sentence_english": "The car's ignition system is faulty.", + "pos": "noun", + "word_frequency": 12063 + }, + { + "word": "annonceur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advertiser", + "example_sentence_native": "L'annonceur a payé cher pour cette publicité.", + "example_sentence_english": "The advertiser paid a lot for this advertisement.", + "pos": "noun", + "word_frequency": 12066 + }, + { + "word": "approximatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximate", + "example_sentence_native": "Le calcul est approximatif.", + "example_sentence_english": "The calculation is approximate.", + "pos": "adjective", + "word_frequency": 12068 + }, + { + "word": "astronomique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomical", + "example_sentence_native": "Les distances dans l'espace sont astronomiques.", + "example_sentence_english": "Distances in space are astronomical.", + "pos": "adjective", + "word_frequency": 12070 + }, + { + "word": "attractif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attractive", + "example_sentence_native": "Cette offre est très attractive.", + "example_sentence_english": "This offer is very attractive.", + "pos": "adjective", + "word_frequency": 12071 + }, + { + "word": "bienheureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blessed;blissful", + "example_sentence_native": "Les bienheureux sont ceux qui ont la foi.", + "example_sentence_english": "The blessed are those who have faith.", + "pos": "adjective", + "word_frequency": 12075 + }, + { + "word": "blogue", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blog", + "example_sentence_native": "J'écris un article pour mon blogue.", + "example_sentence_english": "I'm writing an article for my blog.", + "pos": "noun", + "word_frequency": 12076 + }, + { + "word": "bouillie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "porridge;mush", + "example_sentence_native": "Le bébé mange de la bouillie de céréales.", + "example_sentence_english": "The baby is eating cereal porridge.", + "pos": "noun", + "word_frequency": 12078 + }, + { + "word": "bovin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bovine;cattle-related", + "example_sentence_native": "L'élevage bovin est important dans cette région.", + "example_sentence_english": "Cattle farming is important in this region.", + "pos": "adjective", + "word_frequency": 12079 + }, + { + "word": "brassard", + "article_with_word": "le brassard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armband", + "example_sentence_native": "Il portait un brassard noir en signe de deuil.", + "example_sentence_english": "He wore a black armband as a sign of mourning.", + "pos": "noun", + "word_frequency": 12080 + }, + { + "word": "bâtisse", + "article_with_word": "la bâtisse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large building;edifice", + "example_sentence_native": "L'ancienne bâtisse a été transformée en musée.", + "example_sentence_english": "The old building was transformed into a museum.", + "pos": "noun", + "word_frequency": 12083 + }, + { + "word": "capuche", + "article_with_word": "la capuche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood", + "example_sentence_native": "Il a mis sa capuche pour se protéger de la pluie.", + "example_sentence_english": "He put on his hood to protect himself from the rain.", + "pos": "noun", + "word_frequency": 12084 + }, + { + "word": "carapace", + "article_with_word": "la carapace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shell;carapace", + "example_sentence_native": "La tortue a une carapace dure pour se défendre.", + "example_sentence_english": "The turtle has a hard shell to defend itself.", + "pos": "noun", + "word_frequency": 12085 + }, + { + "word": "casseur", + "article_with_word": "le casseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breaker;rioter;vandal", + "example_sentence_native": "Les casseurs ont brisé des vitrines pendant la manifestation.", + "example_sentence_english": "The rioters broke windows during the demonstration.", + "pos": "noun", + "word_frequency": 12087 + }, + { + "word": "celtique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Celtic", + "example_sentence_native": "La culture celtique est riche en mythes et légendes.", + "example_sentence_english": "Celtic culture is rich in myths and legends.", + "pos": "adjective", + "word_frequency": 12089 + }, + { + "word": "charcuterie", + "article_with_word": "la charcuterie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delicatessen;cold cuts", + "example_sentence_native": "Nous avons acheté de la charcuterie pour le pique-nique.", + "example_sentence_english": "We bought some cold cuts for the picnic.", + "pos": "noun", + "word_frequency": 12090 + }, + { + "word": "choeur", + "article_with_word": "le chœur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choir;chorus", + "example_sentence_native": "Le chœur de l'église a chanté magnifiquement.", + "example_sentence_english": "The church choir sang beautifully.", + "pos": "noun", + "word_frequency": 12091 + }, + { + "word": "clone", + "article_with_word": "le clone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clone", + "example_sentence_native": "Le scientifique a réussi à créer un clone de la plante.", + "example_sentence_english": "The scientist succeeded in creating a clone of the plant.", + "pos": "noun", + "word_frequency": 12092 + }, + { + "word": "connotation", + "article_with_word": "la connotation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connotation", + "example_sentence_native": "Ce mot a une connotation négative dans ce contexte.", + "example_sentence_english": "This word has a negative connotation in this context.", + "pos": "noun", + "word_frequency": 12093 + }, + { + "word": "constellation", + "article_with_word": "la constellation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constellation", + "example_sentence_native": "On peut observer de nombreuses constellations la nuit.", + "example_sentence_english": "Many constellations can be observed at night.", + "pos": "noun", + "word_frequency": 12094 + }, + { + "word": "copropriété", + "article_with_word": "la copropriété", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-ownership;condominium", + "example_sentence_native": "L'appartement fait partie d'une grande copropriété.", + "example_sentence_english": "The apartment is part of a large co-ownership.", + "pos": "noun", + "word_frequency": 12095 + }, + { + "word": "correcteur", + "article_with_word": "le correcteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corrector;proofreader;concealer", + "example_sentence_native": "Le correcteur d'orthographe m'a aidé à éviter les fautes.", + "example_sentence_english": "The spell checker helped me avoid mistakes.", + "pos": "noun", + "word_frequency": 12096 + }, + { + "word": "cratère", + "article_with_word": "le cratère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crater", + "example_sentence_native": "Le volcan a un grand cratère au sommet.", + "example_sentence_english": "The volcano has a large crater at the summit.", + "pos": "noun", + "word_frequency": 12098 + }, + { + "word": "célibat", + "article_with_word": "le célibat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celibacy;single status", + "example_sentence_native": "Il a choisi le célibat pour se consacrer à sa carrière.", + "example_sentence_english": "He chose celibacy to dedicate himself to his career.", + "pos": "noun", + "word_frequency": 12101 + }, + { + "word": "différenciation", + "article_with_word": "la différenciation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "differentiation", + "example_sentence_native": "La différenciation des produits est essentielle sur ce marché.", + "example_sentence_english": "Product differentiation is essential in this market.", + "pos": "noun", + "word_frequency": 12105 + }, + { + "word": "divan", + "article_with_word": "le divan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sofa;couch;divan", + "example_sentence_native": "Elle s'est allongée sur le divan pour lire.", + "example_sentence_english": "She lay down on the sofa to read.", + "pos": "noun", + "word_frequency": 12106 + }, + { + "word": "documenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "documented;well-researched", + "example_sentence_native": "Son rapport était très documenté et précis.", + "example_sentence_english": "His report was very well-documented and precise.", + "pos": "adjective", + "word_frequency": 12108 + }, + { + "word": "décapité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decapitated", + "example_sentence_native": "Le roi a été décapité en place publique.", + "example_sentence_english": "The king was decapitated in the public square.", + "pos": "adjective", + "word_frequency": 12111 + }, + { + "word": "déclencheur", + "article_with_word": "le déclencheur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger;initiator", + "example_sentence_native": "Le stress peut être un déclencheur de migraines.", + "example_sentence_english": "Stress can be a trigger for migraines.", + "pos": "noun", + "word_frequency": 12112 + }, + { + "word": "défavorisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disadvantaged", + "example_sentence_native": "Il faut aider les populations défavorisées.", + "example_sentence_english": "We must help disadvantaged populations.", + "pos": "adjective", + "word_frequency": 12113 + }, + { + "word": "démocratisation", + "article_with_word": "la démocratisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "democratization", + "example_sentence_native": "La démocratisation de l'accès à l'éducation est un objectif clé.", + "example_sentence_english": "The democratization of access to education is a key objective.", + "pos": "noun", + "word_frequency": 12114 + }, + { + "word": "désiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desired;wished for", + "example_sentence_native": "C'était le résultat tant désiré par l'équipe.", + "example_sentence_english": "It was the result so desired by the team.", + "pos": "adjective", + "word_frequency": 12115 + }, + { + "word": "détendu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxed;calm", + "example_sentence_native": "Après le yoga, je me sens très détendu.", + "example_sentence_english": "After yoga, I feel very relaxed.", + "pos": "adjective", + "word_frequency": 12116 + }, + { + "word": "dûment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duly", + "example_sentence_native": "Le formulaire doit être dûment rempli et signé.", + "example_sentence_english": "The form must be duly completed and signed.", + "pos": "adverbs", + "word_frequency": 12117 + }, + { + "word": "elite", + "article_with_word": "l'élite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elite", + "example_sentence_native": "L'élite du pays s'est réunie pour discuter.", + "example_sentence_english": "The country's elite met to discuss.", + "pos": "noun", + "word_frequency": 12118 + }, + { + "word": "embargo", + "article_with_word": "l'embargo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embargo", + "example_sentence_native": "Un embargo commercial a été imposé sur le pays.", + "example_sentence_english": "A trade embargo was imposed on the country.", + "pos": "noun", + "word_frequency": 12119 + }, + { + "word": "emmené", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taken;brought", + "example_sentence_native": "La voiture emmenée au garage est réparée.", + "example_sentence_english": "The car taken to the garage is repaired.", + "pos": "adjective", + "word_frequency": 12120 + }, + { + "word": "enclin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inclined;prone", + "example_sentence_native": "Il est enclin à la mélancolie.", + "example_sentence_english": "He is prone to melancholy.", + "pos": "adjective", + "word_frequency": 12121 + }, + { + "word": "excité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excited", + "example_sentence_native": "Les enfants étaient très excités par l'idée du voyage.", + "example_sentence_english": "The children were very excited by the idea of the trip.", + "pos": "adjective", + "word_frequency": 12123 + }, + { + "word": "expédié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispatched;shipped", + "example_sentence_native": "Le colis expédié hier devrait arriver demain.", + "example_sentence_english": "The package dispatched yesterday should arrive tomorrow.", + "pos": "adjective", + "word_frequency": 12124 + }, + { + "word": "exterminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exterminate", + "example_sentence_native": "Il faut exterminer les nuisibles.", + "example_sentence_english": "We must exterminate the pests.", + "pos": "verbs", + "word_frequency": 12125 + }, + { + "word": "faisabilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feasibility", + "example_sentence_native": "Nous étudions la faisabilité du projet.", + "example_sentence_english": "We are studying the feasibility of the project.", + "pos": "noun", + "word_frequency": 12126 + }, + { + "word": "fatiguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tire", + "example_sentence_native": "Cette longue marche va me fatiguer.", + "example_sentence_english": "This long walk will tire me.", + "pos": "verbs", + "word_frequency": 12127 + }, + { + "word": "fellation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "fellatio", + "example_sentence_native": "Le terme \"fellation\" désigne un acte sexuel oral.", + "example_sentence_english": "The term \"fellatio\" refers to an oral sex act.", + "pos": "noun", + "word_frequency": 12128 + }, + { + "word": "fissure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack;fissure", + "example_sentence_native": "Il y a une fissure dans le mur.", + "example_sentence_english": "There is a crack in the wall.", + "pos": "noun", + "word_frequency": 12130 + }, + { + "word": "focaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to focus", + "example_sentence_native": "Il faut focaliser son attention sur l'objectif.", + "example_sentence_english": "One must focus one's attention on the objective.", + "pos": "verbs", + "word_frequency": 12132 + }, + { + "word": "foundation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation", + "example_sentence_native": "La fondation de ce bâtiment est très solide.", + "example_sentence_english": "The foundation of this building is very solid.", + "pos": "noun", + "word_frequency": 12133 + }, + { + "word": "gabarit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "template;gauge;build", + "example_sentence_native": "Ce gabarit est parfait pour découper le tissu.", + "example_sentence_english": "This template is perfect for cutting the fabric.", + "pos": "noun", + "word_frequency": 12134 + }, + { + "word": "gag", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gag;joke", + "example_sentence_native": "C'était un gag amusant.", + "example_sentence_english": "It was a funny gag.", + "pos": "noun", + "word_frequency": 12135 + }, + { + "word": "harpe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harp", + "example_sentence_native": "Elle joue de la harpe depuis son enfance.", + "example_sentence_english": "She has been playing the harp since her childhood.", + "pos": "noun", + "word_frequency": 12137 + }, + { + "word": "hub", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hub", + "example_sentence_native": "Cet aéroport est un hub international.", + "example_sentence_english": "This airport is an international hub.", + "pos": "noun", + "word_frequency": 12140 + }, + { + "word": "hépatite", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hepatitis", + "example_sentence_native": "L'hépatite est une inflammation du foie.", + "example_sentence_english": "Hepatitis is an inflammation of the liver.", + "pos": "noun", + "word_frequency": 12141 + }, + { + "word": "import", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "import", + "example_sentence_native": "Les imports de pétrole ont augmenté.", + "example_sentence_english": "Oil imports have increased.", + "pos": "noun", + "word_frequency": 12142 + }, + { + "word": "induction", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "induction", + "example_sentence_native": "La cuisinière à induction est très efficace.", + "example_sentence_english": "The induction cooker is very efficient.", + "pos": "noun", + "word_frequency": 12143 + }, + { + "word": "infrarouge", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infrared", + "example_sentence_native": "Nous utilisons une caméra infrarouge pour la vision nocturne.", + "example_sentence_english": "We use an infrared camera for night vision.", + "pos": "adjective", + "word_frequency": 12144 + }, + { + "word": "interviewé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interviewed", + "example_sentence_native": "La personne interviewée a donné des réponses claires.", + "example_sentence_english": "The interviewed person gave clear answers.", + "pos": "adjective", + "word_frequency": 12145 + }, + { + "word": "invalidité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disability;invalidity", + "example_sentence_native": "Il a obtenu une pension d'invalidité.", + "example_sentence_english": "He received a disability pension.", + "pos": "noun", + "word_frequency": 12146 + }, + { + "word": "joug", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "yoke", + "example_sentence_native": "Les paysans travaillaient sous le joug du seigneur.", + "example_sentence_english": "The peasants worked under the yoke of the lord.", + "pos": "noun", + "word_frequency": 12148 + }, + { + "word": "karaté", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "karate", + "example_sentence_native": "Il pratique le karaté depuis l'âge de dix ans.", + "example_sentence_english": "He has been practicing karate since the age of ten.", + "pos": "noun", + "word_frequency": 12149 + }, + { + "word": "kiki", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "willy;birdie (colloquial for penis or small bird)", + "example_sentence_native": "Le petit oiseau a fait un kiki sur la fenêtre.", + "example_sentence_english": "The little bird made a mark on the window.", + "pos": "noun", + "word_frequency": 12151 + }, + { + "word": "killer", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "killer", + "example_sentence_native": "La police recherche le killer.", + "example_sentence_english": "The police are looking for the killer.", + "pos": "noun", + "word_frequency": 12152 + }, + { + "word": "lasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tire;to bore", + "example_sentence_native": "Ce travail commence à me lasser.", + "example_sentence_english": "This work is starting to bore me.", + "pos": "verbs", + "word_frequency": 12157 + }, + { + "word": "left", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the left (political)", + "example_sentence_native": "La gauche et la droite sont des concepts politiques.", + "example_sentence_english": "The left and the right are political concepts.", + "pos": "noun", + "word_frequency": 12158 + }, + { + "word": "lex", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "law;lexicon (from Latin)", + "example_sentence_native": "Le terme \"lex\" est souvent utilisé dans le jargon juridique.", + "example_sentence_english": "The term \"lex\" is often used in legal jargon.", + "pos": "noun", + "word_frequency": 12159 + }, + { + "word": "maghrébin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "North African", + "example_sentence_native": "La cuisine maghrébine est très riche en saveurs.", + "example_sentence_english": "North African cuisine is very rich in flavors.", + "pos": "adjective", + "word_frequency": 12161 + }, + { + "word": "magnifiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnificently", + "example_sentence_native": "Elle a chanté magnifiquement bien.", + "example_sentence_english": "She sang magnificently well.", + "pos": "adverbs", + "word_frequency": 12162 + }, + { + "word": "magnitude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnitude", + "example_sentence_native": "L'échelle de Richter mesure la magnitude des tremblements de terre.", + "example_sentence_english": "The Richter scale measures the magnitude of earthquakes.", + "pos": "noun", + "word_frequency": 12163 + }, + { + "word": "mathématicien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mathematician", + "example_sentence_native": "Mon professeur de mathématiques est un excellent mathématicien.", + "example_sentence_english": "My math teacher is an excellent mathematician.", + "pos": "noun", + "word_frequency": 12166 + }, + { + "word": "medical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medical", + "example_sentence_native": "Il a besoin d'une assistance médicale urgente.", + "example_sentence_english": "He needs urgent medical assistance.", + "pos": "adjective", + "word_frequency": 12167 + }, + { + "word": "migraine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "migraine", + "example_sentence_native": "J'ai une terrible migraine depuis ce matin.", + "example_sentence_english": "I've had a terrible migraine since this morning.", + "pos": "noun", + "word_frequency": 12171 + }, + { + "word": "mollet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calf (of leg)", + "example_sentence_native": "J'ai mal au mollet après la course.", + "example_sentence_english": "My calf hurts after the run.", + "pos": "noun", + "word_frequency": 12174 + }, + { + "word": "métrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metric", + "example_sentence_native": "Le système métrique est utilisé dans la plupart des pays.", + "example_sentence_english": "The metric system is used in most countries.", + "pos": "adjective", + "word_frequency": 12175 + }, + { + "word": "narratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrative", + "example_sentence_native": "Ce film a une structure narrative complexe.", + "example_sentence_english": "This film has a complex narrative structure.", + "pos": "adjective", + "word_frequency": 12176 + }, + { + "word": "novice", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novice", + "example_sentence_native": "C'est un novice en matière de programmation.", + "example_sentence_english": "He is a novice in programming.", + "pos": "noun", + "word_frequency": 12177 + }, + { + "word": "négativement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negatively", + "example_sentence_native": "Il a réagi négativement à la nouvelle.", + "example_sentence_english": "He reacted negatively to the news.", + "pos": "adverbs", + "word_frequency": 12178 + }, + { + "word": "occulte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occult", + "example_sentence_native": "Ils étudient les sciences occultes.", + "example_sentence_english": "They study the occult sciences.", + "pos": "adjective", + "word_frequency": 12179 + }, + { + "word": "ode", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ode", + "example_sentence_native": "Le poète a écrit une ode à la nature.", + "example_sentence_english": "The poet wrote an ode to nature.", + "pos": "noun", + "word_frequency": 12180 + }, + { + "word": "paie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pay", + "example_sentence_native": "J'attends ma paie à la fin du mois.", + "example_sentence_english": "I'm waiting for my pay at the end of the month.", + "pos": "noun", + "word_frequency": 12183 + }, + { + "word": "pansement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bandage", + "example_sentence_native": "Il faut changer le pansement tous les jours.", + "example_sentence_english": "The bandage needs to be changed every day.", + "pos": "noun", + "word_frequency": 12184 + }, + { + "word": "paresse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laziness", + "example_sentence_native": "La paresse est un défaut courant.", + "example_sentence_english": "Laziness is a common fault.", + "pos": "noun", + "word_frequency": 12186 + }, + { + "word": "patriarcat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarchy", + "example_sentence_native": "Le patriarcat est un système social ancien.", + "example_sentence_english": "Patriarchy is an ancient social system.", + "pos": "noun", + "word_frequency": 12187 + }, + { + "word": "patronage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patronage", + "example_sentence_native": "L'artiste a bénéficié du patronage d'un riche mécène.", + "example_sentence_english": "The artist benefited from the patronage of a rich patron.", + "pos": "noun", + "word_frequency": 12188 + }, + { + "word": "persistent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistent", + "example_sentence_native": "Il a fait preuve d'un effort persistant.", + "example_sentence_english": "He showed persistent effort.", + "pos": "adjective", + "word_frequency": 12189 + }, + { + "word": "piloté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piloted", + "example_sentence_native": "Le drone est piloté à distance.", + "example_sentence_english": "The drone is remotely piloted.", + "pos": "adjective", + "word_frequency": 12190 + }, + { + "word": "piraté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacked", + "example_sentence_native": "Son compte en ligne a été piraté.", + "example_sentence_english": "His online account was hacked.", + "pos": "adjective", + "word_frequency": 12191 + }, + { + "word": "poignard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dagger", + "example_sentence_native": "Il portait un petit poignard à sa ceinture.", + "example_sentence_english": "He carried a small dagger at his belt.", + "pos": "noun", + "word_frequency": 12192 + }, + { + "word": "prélevé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collected", + "example_sentence_native": "Un échantillon a été prélevé pour analyse.", + "example_sentence_english": "A sample was collected for analysis.", + "pos": "adjective", + "word_frequency": 12194 + }, + { + "word": "puma", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puma", + "example_sentence_native": "Le puma est un grand félin d'Amérique.", + "example_sentence_english": "The puma is a large American feline.", + "pos": "noun", + "word_frequency": 12195 + }, + { + "word": "péquiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Péquiste (Parti Québécois supporter)", + "example_sentence_native": "Un péquiste est un membre ou un sympathisant du Parti Québécois.", + "example_sentence_english": "A Péquiste is a member or supporter of the Parti Québécois.", + "pos": "noun", + "word_frequency": 12196 + }, + { + "word": "pétanque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pétanque (French bowling game)", + "example_sentence_native": "Nous avons joué à la pétanque cet après-midi.", + "example_sentence_english": "We played pétanque this afternoon.", + "pos": "noun", + "word_frequency": 12197 + }, + { + "word": "qualifiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualifying", + "example_sentence_native": "Il a obtenu un score qualifiant pour la finale.", + "example_sentence_english": "He achieved a qualifying score for the final.", + "pos": "adjective", + "word_frequency": 12198 + }, + { + "word": "raffiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refined", + "example_sentence_native": "Son goût est très raffiné.", + "example_sentence_english": "His taste is very refined.", + "pos": "adjective", + "word_frequency": 12199 + }, + { + "word": "rameau", + "article_with_word": "le rameau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "branch;bough", + "example_sentence_native": "Un petit rameau est tombé de l'arbre.", + "example_sentence_english": "A small branch fell from the tree.", + "pos": "noun", + "word_frequency": 12200 + }, + { + "word": "ration", + "article_with_word": "la ration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ration", + "example_sentence_native": "Chaque soldat a reçu sa ration quotidienne.", + "example_sentence_english": "Each soldier received his daily ration.", + "pos": "noun", + "word_frequency": 12201 + }, + { + "word": "reconnaissable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recognizable", + "example_sentence_native": "Sa voix est immédiatement reconnaissable.", + "example_sentence_english": "His voice is immediately recognizable.", + "pos": "adjective", + "word_frequency": 12202 + }, + { + "word": "reconquête", + "article_with_word": "la reconquête", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconquest", + "example_sentence_native": "La reconquête du territoire a été difficile.", + "example_sentence_english": "The reconquest of the territory was difficult.", + "pos": "noun", + "word_frequency": 12203 + }, + { + "word": "redoubler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repeat (a year);to redouble", + "example_sentence_native": "Il a dû redoubler sa deuxième année de lycée.", + "example_sentence_english": "He had to repeat his second year of high school.", + "pos": "verbs", + "word_frequency": 12204 + }, + { + "word": "rejeté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rejected;cast out", + "example_sentence_native": "Son idée a été rejetée par le comité.", + "example_sentence_english": "His idea was rejected by the committee.", + "pos": "adjective", + "word_frequency": 12205 + }, + { + "word": "relégué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relegated;demoted", + "example_sentence_native": "L'équipe a été reléguée en deuxième division.", + "example_sentence_english": "The team was relegated to the second division.", + "pos": "adjective", + "word_frequency": 12206 + }, + { + "word": "remous", + "article_with_word": "le remous", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eddy;swirl;turmoil", + "example_sentence_native": "Les remous dans l'eau rendaient la navigation difficile.", + "example_sentence_english": "The eddies in the water made navigation difficult.", + "pos": "noun", + "word_frequency": 12207 + }, + { + "word": "reptile", + "article_with_word": "le reptile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reptile", + "example_sentence_native": "Les serpents sont des reptiles.", + "example_sentence_english": "Snakes are reptiles.", + "pos": "noun", + "word_frequency": 12208 + }, + { + "word": "rouille", + "article_with_word": "la rouille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rust", + "example_sentence_native": "La vieille voiture était couverte de rouille.", + "example_sentence_english": "The old car was covered in rust.", + "pos": "noun", + "word_frequency": 12216 + }, + { + "word": "rouvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reopen", + "example_sentence_native": "Le magasin va rouvrir ses portes demain.", + "example_sentence_english": "The store will reopen its doors tomorrow.", + "pos": "verbs", + "word_frequency": 12217 + }, + { + "word": "récipient", + "article_with_word": "le récipient", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container;receptacle", + "example_sentence_native": "Versez l'eau dans le récipient.", + "example_sentence_english": "Pour the water into the container.", + "pos": "noun", + "word_frequency": 12221 + }, + { + "word": "saleté", + "article_with_word": "la saleté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dirt;filth", + "example_sentence_native": "Il y avait de la saleté partout sur le sol.", + "example_sentence_english": "There was dirt all over the floor.", + "pos": "noun", + "word_frequency": 12224 + }, + { + "word": "sandale", + "article_with_word": "la sandale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sandal", + "example_sentence_native": "Elle porte des sandales en été.", + "example_sentence_english": "She wears sandals in summer.", + "pos": "noun", + "word_frequency": 12225 + }, + { + "word": "signalé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reported;indicated", + "example_sentence_native": "Le problème a été signalé aux autorités.", + "example_sentence_english": "The problem was reported to the authorities.", + "pos": "adjective", + "word_frequency": 12226 + }, + { + "word": "similitude", + "article_with_word": "la similitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "similarity", + "example_sentence_native": "Il y a une grande similitude entre les deux cas.", + "example_sentence_english": "There is a great similarity between the two cases.", + "pos": "noun", + "word_frequency": 12227 + }, + { + "word": "simulateur", + "article_with_word": "le simulateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulator", + "example_sentence_native": "Les pilotes s'entraînent sur un simulateur de vol.", + "example_sentence_english": "Pilots train on a flight simulator.", + "pos": "noun", + "word_frequency": 12228 + }, + { + "word": "slovaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovak", + "example_sentence_native": "La langue slovaque est parlée en Slovaquie.", + "example_sentence_english": "The Slovak language is spoken in Slovakia.", + "pos": "adjective", + "word_frequency": 12229 + }, + { + "word": "superstar", + "article_with_word": "la superstar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superstar", + "example_sentence_native": "Elle est devenue une superstar mondiale.", + "example_sentence_english": "She became a global superstar.", + "pos": "noun", + "word_frequency": 12235 + }, + { + "word": "sénatrice", + "article_with_word": "la sénatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senator (female)", + "example_sentence_native": "La sénatrice a voté en faveur de la loi.", + "example_sentence_english": "The senator voted in favor of the law.", + "pos": "noun", + "word_frequency": 12236 + }, + { + "word": "tapisserie", + "article_with_word": "la tapisserie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tapestry;wallpaper", + "example_sentence_native": "La tapisserie murale est très ancienne.", + "example_sentence_english": "The wall tapestry is very old.", + "pos": "noun", + "word_frequency": 12237 + }, + { + "word": "tenace", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenacious;persistent", + "example_sentence_native": "Il a fait preuve d'une volonté tenace.", + "example_sentence_english": "He showed a tenacious will.", + "pos": "adjective", + "word_frequency": 12238 + }, + { + "word": "tornade", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tornado", + "example_sentence_native": "Une tornade a dévasté la région.", + "example_sentence_english": "A tornado devastated the region.", + "pos": "noun", + "word_frequency": 12240 + }, + { + "word": "tribut", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tribute", + "example_sentence_native": "Il a rendu un dernier tribut à son ami.", + "example_sentence_english": "He paid a final tribute to his friend.", + "pos": "noun", + "word_frequency": 12241 + }, + { + "word": "vendange", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grape harvest;vintage", + "example_sentence_native": "Les vendanges commencent en septembre.", + "example_sentence_english": "The grape harvest begins in September.", + "pos": "noun", + "word_frequency": 12244 + }, + { + "word": "yuan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yuan (Chinese currency)", + "example_sentence_native": "Le yuan est la monnaie chinoise.", + "example_sentence_english": "The yuan is the Chinese currency.", + "pos": "noun", + "word_frequency": 12250 + }, + { + "word": "épine", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thorn;spine", + "example_sentence_native": "Attention, cette rose a des épines.", + "example_sentence_english": "Be careful, this rose has thorns.", + "pos": "noun", + "word_frequency": 12253 + }, + { + "word": "abusif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abusive;excessive", + "example_sentence_native": "C'est un usage abusif de son pouvoir.", + "example_sentence_english": "It's an abusive use of his power.", + "pos": "adjective", + "word_frequency": 12254 + }, + { + "word": "accessoirement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incidentally;as a side note", + "example_sentence_native": "Accessoirement, il est aussi un excellent cuisinier.", + "example_sentence_english": "Incidentally, he is also an excellent cook.", + "pos": "adverbs", + "word_frequency": 12255 + }, + { + "word": "acidité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acidity", + "example_sentence_native": "Le vin a une bonne acidité.", + "example_sentence_english": "The wine has good acidity.", + "pos": "noun", + "word_frequency": 12256 + }, + { + "word": "affluent", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tributary (river)", + "example_sentence_native": "La Loire a de nombreux affluents.", + "example_sentence_english": "The Loire has many tributaries.", + "pos": "noun", + "word_frequency": 12258 + }, + { + "word": "alto", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alto;viola", + "example_sentence_native": "Elle joue de l'alto dans l'orchestre.", + "example_sentence_english": "She plays the viola in the orchestra.", + "pos": "noun", + "word_frequency": 12261 + }, + { + "word": "anodin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmless;trivial;insignificant", + "example_sentence_native": "C'est un détail anodin.", + "example_sentence_english": "It's an insignificant detail.", + "pos": "adjective", + "word_frequency": 12262 + }, + { + "word": "aquarelle", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watercolor", + "example_sentence_native": "Elle peint à l'aquarelle.", + "example_sentence_english": "She paints with watercolor.", + "pos": "noun", + "word_frequency": 12263 + }, + { + "word": "augure", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omen;augury", + "example_sentence_native": "C'est un bon augure pour l'avenir.", + "example_sentence_english": "It's a good omen for the future.", + "pos": "noun", + "word_frequency": 12266 + }, + { + "word": "bander", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tie;to bind;(vulgar) to get an erection", + "example_sentence_native": "Il faut bander la plaie.", + "example_sentence_english": "The wound needs to be bandaged.", + "pos": "verbs", + "word_frequency": 12270 + }, + { + "word": "blizzard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blizzard", + "example_sentence_native": "Un violent blizzard a frappé la région.", + "example_sentence_english": "A violent blizzard hit the region.", + "pos": "noun", + "word_frequency": 12276 + }, + { + "word": "bouffée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puff;gust;flush", + "example_sentence_native": "Une bouffée d'air frais.", + "example_sentence_english": "A breath of fresh air.", + "pos": "noun", + "word_frequency": 12278 + }, + { + "word": "bouillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boiling;scalding", + "example_sentence_native": "L'eau est bouillante.", + "example_sentence_english": "The water is boiling.", + "pos": "adjective", + "word_frequency": 12279 + }, + { + "word": "boulette", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meatball;blunder", + "example_sentence_native": "J'ai fait une boulette en oubliant mon portefeuille.", + "example_sentence_english": "I made a blunder by forgetting my wallet.", + "pos": "noun", + "word_frequency": 12280 + }, + { + "word": "bourdon", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bumblebee;drone (sound)", + "example_sentence_native": "Un gros bourdon volait autour des fleurs.", + "example_sentence_english": "A large bumblebee was flying around the flowers.", + "pos": "noun", + "word_frequency": 12281 + }, + { + "word": "briquet", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lighter", + "example_sentence_native": "Peux-tu me prêter ton briquet, s'il te plaît?", + "example_sentence_english": "Can you lend me your lighter, please?", + "pos": "noun", + "word_frequency": 12283 + }, + { + "word": "brisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broken", + "example_sentence_native": "Le vase est tombé et il est brisé.", + "example_sentence_english": "The vase fell and it is broken.", + "pos": "adjective", + "word_frequency": 12284 + }, + { + "word": "broche", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brooch;spit (for roasting)", + "example_sentence_native": "Elle portait une belle broche sur sa veste.", + "example_sentence_english": "She wore a beautiful brooch on her jacket.", + "pos": "noun", + "word_frequency": 12285 + }, + { + "word": "calice", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chalice", + "example_sentence_native": "Le prêtre a levé le calice pendant la messe.", + "example_sentence_english": "The priest raised the chalice during the mass.", + "pos": "noun", + "word_frequency": 12287 + }, + { + "word": "calé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knowledgeable;stuck", + "example_sentence_native": "Il est très calé en informatique.", + "example_sentence_english": "He is very knowledgeable in computer science.", + "pos": "adjective", + "word_frequency": 12288 + }, + { + "word": "censuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censored", + "example_sentence_native": "Le film a été censuré dans certains pays.", + "example_sentence_english": "The film was censored in some countries.", + "pos": "adjective", + "word_frequency": 12290 + }, + { + "word": "chouchou", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "darling;favorite", + "example_sentence_native": "C'est le chouchou de la maîtresse.", + "example_sentence_english": "He is the teacher's pet.", + "pos": "noun", + "word_frequency": 12291 + }, + { + "word": "civilisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civilized", + "example_sentence_native": "Les manières civilisées sont importantes en société.", + "example_sentence_english": "Civilized manners are important in society.", + "pos": "adjective", + "word_frequency": 12292 + }, + { + "word": "coiffé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "styled (hair);wearing a hat", + "example_sentence_native": "Elle est toujours bien coiffée.", + "example_sentence_english": "Her hair is always well-styled.", + "pos": "adjective", + "word_frequency": 12293 + }, + { + "word": "comparaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appear (in court)", + "example_sentence_native": "Il devra comparaître devant le juge.", + "example_sentence_english": "He will have to appear before the judge.", + "pos": "verbs", + "word_frequency": 12295 + }, + { + "word": "connection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection", + "example_sentence_native": "La connexion internet est très lente aujourd'hui.", + "example_sentence_english": "The internet connection is very slow today.", + "pos": "noun", + "word_frequency": 12296 + }, + { + "word": "dictée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dictation", + "example_sentence_native": "Nous avons eu une dictée de mots difficiles.", + "example_sentence_english": "We had a dictation of difficult words.", + "pos": "noun", + "word_frequency": 12305 + }, + { + "word": "diligence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligence;stagecoach", + "example_sentence_native": "Il a fait preuve de grande diligence dans son travail.", + "example_sentence_english": "He showed great diligence in his work.", + "pos": "noun", + "word_frequency": 12306 + }, + { + "word": "douanier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customs officer", + "example_sentence_native": "Le douanier a vérifié nos passeports.", + "example_sentence_english": "The customs officer checked our passports.", + "pos": "noun", + "word_frequency": 12307 + }, + { + "word": "driver", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "driver (computer;golf)", + "example_sentence_native": "Il faut installer le bon driver pour cette imprimante.", + "example_sentence_english": "You need to install the correct driver for this printer.", + "pos": "noun", + "word_frequency": 12308 + }, + { + "word": "débauche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debauchery;excess", + "example_sentence_native": "Sa vie était marquée par la débauche.", + "example_sentence_english": "His life was marked by debauchery.", + "pos": "noun", + "word_frequency": 12309 + }, + { + "word": "débordement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overflow;outburst", + "example_sentence_native": "Il y a eu un débordement de la rivière.", + "example_sentence_english": "There was an overflow of the river.", + "pos": "noun", + "word_frequency": 12310 + }, + { + "word": "déforestation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deforestation", + "example_sentence_native": "La déforestation est un problème environnemental majeur.", + "example_sentence_english": "Deforestation is a major environmental problem.", + "pos": "noun", + "word_frequency": 12311 + }, + { + "word": "déporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deported;displaced", + "example_sentence_native": "Les déportés ont souffert pendant la guerre.", + "example_sentence_english": "The deported people suffered during the war.", + "pos": "adjective", + "word_frequency": 12312 + }, + { + "word": "effervescence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effervescence;excitement", + "example_sentence_native": "Il y avait une grande effervescence avant le concert.", + "example_sentence_english": "There was great excitement before the concert.", + "pos": "noun", + "word_frequency": 12313 + }, + { + "word": "envi", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "desire;envy", + "example_sentence_native": "J'ai envie de voyager.", + "example_sentence_english": "I want to travel.", + "pos": "noun", + "word_frequency": 12316 + }, + { + "word": "expatrié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expatriate;exiled", + "example_sentence_native": "Il vit comme un expatrié à Londres.", + "example_sentence_english": "He lives as an expatriate in London.", + "pos": "adjective", + "word_frequency": 12317 + }, + { + "word": "flop", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flop;failure", + "example_sentence_native": "Le film a été un vrai flop au box-office.", + "example_sentence_english": "The film was a real flop at the box office.", + "pos": "noun", + "word_frequency": 12319 + }, + { + "word": "foiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screwed up", + "example_sentence_native": "Mon examen était complètement foiré.", + "example_sentence_english": "My exam was completely screwed up.", + "pos": "adjective", + "word_frequency": 12320 + }, + { + "word": "gazeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaseous;fizzy", + "example_sentence_native": "J'aime les boissons gazeuses.", + "example_sentence_english": "I like fizzy drinks.", + "pos": "adjective", + "word_frequency": 12322 + }, + { + "word": "genevois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Genevan", + "example_sentence_native": "Il est d'origine genevoise.", + "example_sentence_english": "He is of Genevan origin.", + "pos": "adjective", + "word_frequency": 12323 + }, + { + "word": "glande", + "article_with_word": "la glande", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gland", + "example_sentence_native": "La glande thyroïde produit des hormones.", + "example_sentence_english": "The thyroid gland produces hormones.", + "pos": "noun", + "word_frequency": 12325 + }, + { + "word": "gravier", + "article_with_word": "le gravier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gravel", + "example_sentence_native": "Le chemin est couvert de gravier.", + "example_sentence_english": "The path is covered with gravel.", + "pos": "noun", + "word_frequency": 12326 + }, + { + "word": "génome", + "article_with_word": "le génome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genome", + "example_sentence_native": "Le séquençage du génome humain a révolutionné la médecine.", + "example_sentence_english": "Human genome sequencing has revolutionized medicine.", + "pos": "noun", + "word_frequency": 12327 + }, + { + "word": "haïtien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Haitian", + "example_sentence_native": "La culture haïtienne est très riche.", + "example_sentence_english": "Haitian culture is very rich.", + "pos": "adjective", + "word_frequency": 12330 + }, + { + "word": "hospice", + "article_with_word": "l'hospice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospice", + "example_sentence_native": "Il a passé ses derniers jours à l'hospice.", + "example_sentence_english": "He spent his last days at the hospice.", + "pos": "noun", + "word_frequency": 12332 + }, + { + "word": "hébergé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hosted;accommodated", + "example_sentence_native": "Les réfugiés ont été hébergés dans un centre d'accueil.", + "example_sentence_english": "The refugees were accommodated in a reception center.", + "pos": "adjective", + "word_frequency": 12334 + }, + { + "word": "impérativement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperatively;absolutely necessary", + "example_sentence_native": "Vous devez impérativement terminer ce travail avant ce soir.", + "example_sentence_english": "You must absolutely finish this work before tonight.", + "pos": "adverbs", + "word_frequency": 12335 + }, + { + "word": "incarcéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incarcerated;imprisoned", + "example_sentence_native": "Le suspect a été incarcéré après son arrestation.", + "example_sentence_english": "The suspect was incarcerated after his arrest.", + "pos": "adjective", + "word_frequency": 12336 + }, + { + "word": "incarné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incarnate;embodied", + "example_sentence_native": "Il est l'exemple incarné de la gentillesse.", + "example_sentence_english": "He is the embodied example of kindness.", + "pos": "adjective", + "word_frequency": 12337 + }, + { + "word": "incité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incited;encouraged", + "example_sentence_native": "Les manifestants ont été incités à la violence.", + "example_sentence_english": "The protesters were incited to violence.", + "pos": "adjective", + "word_frequency": 12338 + }, + { + "word": "incomber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be incumbent upon;to fall to", + "example_sentence_native": "Il incombe à chacun de protéger l'environnement.", + "example_sentence_english": "It is incumbent upon everyone to protect the environment.", + "pos": "verbs", + "word_frequency": 12339 + }, + { + "word": "indiscutable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indisputable;undeniable", + "example_sentence_native": "Son talent est indiscutable.", + "example_sentence_english": "His talent is indisputable.", + "pos": "adjective", + "word_frequency": 12340 + }, + { + "word": "individualisme", + "article_with_word": "l'individualisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "individualism", + "example_sentence_native": "L'individualisme est une caractéristique de notre société.", + "example_sentence_english": "Individualism is a characteristic of our society.", + "pos": "noun", + "word_frequency": 12341 + }, + { + "word": "infarctus", + "article_with_word": "l'infarctus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infarction;heart attack", + "example_sentence_native": "Il a été victime d'un infarctus du myocarde.", + "example_sentence_english": "He suffered a myocardial infarction (heart attack).", + "pos": "noun", + "word_frequency": 12342 + }, + { + "word": "infecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infected", + "example_sentence_native": "La plaie était infectée.", + "example_sentence_english": "The wound was infected.", + "pos": "adjective", + "word_frequency": 12343 + }, + { + "word": "infernal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infernal;hellish", + "example_sentence_native": "Le bruit était infernal.", + "example_sentence_english": "The noise was hellish.", + "pos": "adjective", + "word_frequency": 12344 + }, + { + "word": "insuline", + "article_with_word": "l'insuline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulin", + "example_sentence_native": "Les diabétiques ont besoin d'insuline.", + "example_sentence_english": "Diabetics need insulin.", + "pos": "noun", + "word_frequency": 12345 + }, + { + "word": "interagir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interact", + "example_sentence_native": "Les enfants apprennent à interagir avec les autres.", + "example_sentence_english": "Children learn to interact with others.", + "pos": "verbs", + "word_frequency": 12346 + }, + { + "word": "irréversible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irreversible", + "example_sentence_native": "Les dommages sont irréversibles.", + "example_sentence_english": "The damage is irreversible.", + "pos": "adjective", + "word_frequency": 12347 + }, + { + "word": "jardinage", + "article_with_word": "le jardinage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gardening", + "example_sentence_native": "Le jardinage est mon passe-temps préféré.", + "example_sentence_english": "Gardening is my favorite hobby.", + "pos": "noun", + "word_frequency": 12349 + }, + { + "word": "jument", + "article_with_word": "la jument", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mare", + "example_sentence_native": "La jument a donné naissance à un poulain.", + "example_sentence_english": "The mare gave birth to a foal.", + "pos": "noun", + "word_frequency": 12351 + }, + { + "word": "larguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drop;to ditch", + "example_sentence_native": "Il a décidé de larguer son ancien téléphone.", + "example_sentence_english": "He decided to ditch his old phone.", + "pos": "verbs", + "word_frequency": 12354 + }, + { + "word": "latex", + "article_with_word": "le latex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "latex", + "example_sentence_native": "Certaines personnes sont allergiques au latex.", + "example_sentence_english": "Some people are allergic to latex.", + "pos": "noun", + "word_frequency": 12355 + }, + { + "word": "lobbying", + "article_with_word": "le lobbying", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lobbying", + "example_sentence_native": "Le lobbying est une pratique courante dans la politique.", + "example_sentence_english": "Lobbying is a common practice in politics.", + "pos": "noun", + "word_frequency": 12359 + }, + { + "word": "locatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rental;locative", + "example_sentence_native": "Le marché locatif est très tendu dans cette ville.", + "example_sentence_english": "The rental market is very tight in this city.", + "pos": "adjective", + "word_frequency": 12360 + }, + { + "word": "magnésium", + "article_with_word": "le magnésium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnesium", + "example_sentence_native": "Le magnésium est essentiel pour la santé.", + "example_sentence_english": "Magnesium is essential for health.", + "pos": "noun", + "word_frequency": 12363 + }, + { + "word": "mayo", + "article_with_word": "la mayo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mayo;mayonnaise", + "example_sentence_native": "J'ai mis de la mayo sur mes frites.", + "example_sentence_english": "I put mayo on my fries.", + "pos": "noun", + "word_frequency": 12365 + }, + { + "word": "motor", + "article_with_word": "le motor", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "motor", + "example_sentence_native": "Le motor de cette machine est très puissant.", + "example_sentence_english": "The motor of this machine is very powerful.", + "pos": "noun", + "word_frequency": 12371 + }, + { + "word": "muer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shed;to molt;to change (voice)", + "example_sentence_native": "Le serpent va muer sa peau.", + "example_sentence_english": "The snake is going to shed its skin.", + "pos": "verbs", + "word_frequency": 12374 + }, + { + "word": "méconnaissance", + "article_with_word": "la méconnaissance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ignorance;lack of knowledge", + "example_sentence_native": "Sa méconnaissance du dossier a causé des problèmes.", + "example_sentence_english": "His ignorance of the file caused problems.", + "pos": "noun", + "word_frequency": 12375 + }, + { + "word": "niçois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Nice;Niçois", + "example_sentence_native": "La cuisine niçoise est délicieuse.", + "example_sentence_english": "Niçois cuisine is delicious.", + "pos": "adjective", + "word_frequency": 12379 + }, + { + "word": "ossement", + "article_with_word": "un ossement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bone (remains);ossicle", + "example_sentence_native": "On a découvert des ossements anciens sur le site.", + "example_sentence_english": "Ancient bone remains were discovered on the site.", + "pos": "noun", + "word_frequency": 12380 + }, + { + "word": "p'tite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little (informal)", + "example_sentence_native": "C'est une p'tite maison sympa.", + "example_sentence_english": "It's a nice little house.", + "pos": "adjective", + "word_frequency": 12381 + }, + { + "word": "pandémie", + "article_with_word": "la pandémie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pandemic", + "example_sentence_native": "La pandémie a changé nos vies.", + "example_sentence_english": "The pandemic changed our lives.", + "pos": "noun", + "word_frequency": 12383 + }, + { + "word": "panthère", + "article_with_word": "la panthère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panther", + "example_sentence_native": "La panthère noire est un animal majestueux.", + "example_sentence_english": "The black panther is a majestic animal.", + "pos": "noun", + "word_frequency": 12384 + }, + { + "word": "parage", + "article_with_word": "le parage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trimming;vicinity (often plural)", + "example_sentence_native": "Il y a un bateau dans les parages.", + "example_sentence_english": "There's a boat in the vicinity.", + "pos": "noun", + "word_frequency": 12385 + }, + { + "word": "paranoïa", + "article_with_word": "la paranoïa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoia", + "example_sentence_native": "Il souffre de paranoïa.", + "example_sentence_english": "He suffers from paranoia.", + "pos": "noun", + "word_frequency": 12386 + }, + { + "word": "pendule", + "article_with_word": "la pendule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clock;pendulum", + "example_sentence_native": "La pendule murale indique midi.", + "example_sentence_english": "The wall clock shows noon.", + "pos": "noun", + "word_frequency": 12389 + }, + { + "word": "piété", + "article_with_word": "la piété", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "piety;devoutness", + "example_sentence_native": "Sa piété est sincère.", + "example_sentence_english": "His piety is sincere.", + "pos": "noun", + "word_frequency": 12391 + }, + { + "word": "plagiat", + "article_with_word": "le plagiat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plagiarism", + "example_sentence_native": "Le plagiat est une faute grave.", + "example_sentence_english": "Plagiarism is a serious offense.", + "pos": "noun", + "word_frequency": 12392 + }, + { + "word": "populiste", + "article_with_word": "le populiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "populist", + "example_sentence_native": "Le discours du populiste a séduit une partie de l'électorat.", + "example_sentence_english": "The populist's speech appealed to a part of the electorate.", + "pos": "noun", + "word_frequency": 12394 + }, + { + "word": "posté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "posted;stationed", + "example_sentence_native": "Le garde était posté à l'entrée.", + "example_sentence_english": "The guard was stationed at the entrance.", + "pos": "adjective", + "word_frequency": 12395 + }, + { + "word": "presqu'île", + "article_with_word": "la presqu'île", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peninsula", + "example_sentence_native": "La Bretagne est une grande presqu'île.", + "example_sentence_english": "Brittany is a large peninsula.", + "pos": "noun", + "word_frequency": 12396 + }, + { + "word": "progéniture", + "article_with_word": "la progéniture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offspring;progeny", + "example_sentence_native": "Il est fier de sa progéniture.", + "example_sentence_english": "He is proud of his offspring.", + "pos": "noun", + "word_frequency": 12397 + }, + { + "word": "propulsé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propelled;powered", + "example_sentence_native": "Le véhicule est propulsé par un moteur électrique.", + "example_sentence_english": "The vehicle is propelled by an electric motor.", + "pos": "adjective", + "word_frequency": 12398 + }, + { + "word": "quint", + "article_with_word": "le quint", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "fifth (as a noun);quint", + "example_sentence_native": "Le quint de cette série de mesures est crucial.", + "example_sentence_english": "The fifth element of this series of measures is crucial.", + "pos": "noun", + "word_frequency": 12399 + }, + { + "word": "quiz", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiz", + "example_sentence_native": "Le professeur a préparé un quiz pour la fin du cours.", + "example_sentence_english": "The teacher prepared a quiz for the end of the class.", + "pos": "noun", + "word_frequency": 12400 + }, + { + "word": "rancune", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment;grudge", + "example_sentence_native": "Il garde une rancune contre son ancien collègue.", + "example_sentence_english": "He holds a grudge against his former colleague.", + "pos": "noun", + "word_frequency": 12401 + }, + { + "word": "ravagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastated;ravaged", + "example_sentence_native": "Le paysage était ravagé par l'incendie.", + "example_sentence_english": "The landscape was ravaged by the fire.", + "pos": "adjective", + "word_frequency": 12402 + }, + { + "word": "reconduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to escort back;to renew", + "example_sentence_native": "Je vais te reconduire à la gare.", + "example_sentence_english": "I will drive you back to the station.", + "pos": "verbs", + "word_frequency": 12403 + }, + { + "word": "rectification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rectification;correction", + "example_sentence_native": "Une rectification a été apportée au document.", + "example_sentence_english": "A rectification was made to the document.", + "pos": "noun", + "word_frequency": 12404 + }, + { + "word": "reggae", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reggae", + "example_sentence_native": "J'aime écouter du reggae le week-end.", + "example_sentence_english": "I like listening to reggae on the weekend.", + "pos": "noun", + "word_frequency": 12405 + }, + { + "word": "roller", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rollerblade;roller skate", + "example_sentence_native": "Il fait du roller tous les dimanches au parc.", + "example_sentence_english": "He goes rollerblading every Sunday in the park.", + "pos": "noun", + "word_frequency": 12408 + }, + { + "word": "roulette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wheel;roulette (game)", + "example_sentence_native": "La petite voiture a perdu une roulette.", + "example_sentence_english": "The small car lost a wheel.", + "pos": "noun", + "word_frequency": 12409 + }, + { + "word": "régénération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regeneration", + "example_sentence_native": "La régénération des tissus est un processus complexe.", + "example_sentence_english": "Tissue regeneration is a complex process.", + "pos": "noun", + "word_frequency": 12411 + }, + { + "word": "rétabli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovered;re-established", + "example_sentence_native": "Après sa maladie, il est maintenant complètement rétabli.", + "example_sentence_english": "After his illness, he is now completely recovered.", + "pos": "adjective", + "word_frequency": 12412 + }, + { + "word": "réédition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-release;re-edition", + "example_sentence_native": "La réédition de ce livre est très attendue.", + "example_sentence_english": "The re-release of this book is highly anticipated.", + "pos": "noun", + "word_frequency": 12413 + }, + { + "word": "sagement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wisely;sensibly", + "example_sentence_native": "Les enfants ont attendu sagement leurs parents.", + "example_sentence_english": "The children wisely waited for their parents.", + "pos": "adverbs", + "word_frequency": 12414 + }, + { + "word": "sentinelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentinel;guard", + "example_sentence_native": "La sentinelle veillait à l'entrée du camp.", + "example_sentence_english": "The sentinel was guarding the entrance to the camp.", + "pos": "noun", + "word_frequency": 12416 + }, + { + "word": "simplifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simplified", + "example_sentence_native": "Le processus a été simplifié pour être plus rapide.", + "example_sentence_english": "The process has been simplified to be faster.", + "pos": "adjective", + "word_frequency": 12418 + }, + { + "word": "structuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structured", + "example_sentence_native": "Le rapport est très bien structuré.", + "example_sentence_english": "The report is very well structured.", + "pos": "adjective", + "word_frequency": 12422 + }, + { + "word": "stupidité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupidity", + "example_sentence_native": "Sa stupidité l'a conduit à faire des erreurs.", + "example_sentence_english": "His stupidity led him to make mistakes.", + "pos": "noun", + "word_frequency": 12423 + }, + { + "word": "subsistance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsistence;livelihood", + "example_sentence_native": "Ils luttent pour leur subsistance quotidienne.", + "example_sentence_english": "They struggle for their daily subsistence.", + "pos": "noun", + "word_frequency": 12424 + }, + { + "word": "surpoids", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overweight", + "example_sentence_native": "Le surpoids est un facteur de risque pour la santé.", + "example_sentence_english": "Being overweight is a health risk factor.", + "pos": "noun", + "word_frequency": 12425 + }, + { + "word": "taverne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tavern;inn", + "example_sentence_native": "Les voyageurs se sont arrêtés à la taverne pour la nuit.", + "example_sentence_english": "The travelers stopped at the tavern for the night.", + "pos": "noun", + "word_frequency": 12428 + }, + { + "word": "text", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "text (message)", + "example_sentence_native": "Je t'envoie un text pour te donner les détails.", + "example_sentence_english": "I'll send you a text to give you the details.", + "pos": "noun", + "word_frequency": 12429 + }, + { + "word": "timidité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shyness;timidity", + "example_sentence_native": "Sa timidité l'empêche de parler en public.", + "example_sentence_english": "Her shyness prevents her from speaking in public.", + "pos": "noun", + "word_frequency": 12430 + }, + { + "word": "traducteurs", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translators", + "example_sentence_native": "Les traducteurs ont travaillé toute la nuit sur le document.", + "example_sentence_english": "The translators worked all night on the document.", + "pos": "noun", + "word_frequency": 12431 + }, + { + "word": "treizième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirteenth", + "example_sentence_native": "C'est la treizième fois que je te le dis.", + "example_sentence_english": "This is the thirteenth time I've told you.", + "pos": "adjective", + "word_frequency": 12432 + }, + { + "word": "té", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "T (letter);T-joint", + "example_sentence_native": "Il a utilisé un raccord en té pour la plomberie.", + "example_sentence_english": "He used a T-joint for the plumbing.", + "pos": "noun", + "word_frequency": 12433 + }, + { + "word": "ukrainiens", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Ukrainian (plural)", + "example_sentence_native": "Les réfugiés ukrainiens ont besoin d'aide.", + "example_sentence_english": "Ukrainian refugees need help.", + "pos": "adjective", + "word_frequency": 12434 + }, + { + "word": "unanimement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unanimously", + "example_sentence_native": "La proposition a été acceptée unanimement.", + "example_sentence_english": "The proposal was unanimously accepted.", + "pos": "adverb", + "word_frequency": 12435 + }, + { + "word": "vessie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bladder", + "example_sentence_native": "La vessie stocke l'urine avant son élimination.", + "example_sentence_english": "The bladder stores urine before its elimination.", + "pos": "noun", + "word_frequency": 12438 + }, + { + "word": "vitrail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stained glass window", + "example_sentence_native": "Les vitraux de la cathédrale sont magnifiques.", + "example_sentence_english": "The stained glass windows of the cathedral are magnificent.", + "pos": "noun", + "word_frequency": 12439 + }, + { + "word": "vomissement", + "article_with_word": "le vomissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vomiting", + "example_sentence_native": "Le vomissement est un symptôme courant de la grippe.", + "example_sentence_english": "Vomiting is a common symptom of the flu.", + "pos": "noun", + "word_frequency": 12440 + }, + { + "word": "édification", + "article_with_word": "l'édification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edification;construction", + "example_sentence_native": "L'édification de ce nouveau bâtiment a pris deux ans.", + "example_sentence_english": "The construction of this new building took two years.", + "pos": "noun", + "word_frequency": 12443 + }, + { + "word": "épanouir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blossom;to flourish", + "example_sentence_native": "Les fleurs commencent à s'épanouir au printemps.", + "example_sentence_english": "The flowers begin to blossom in spring.", + "pos": "verb", + "word_frequency": 12444 + }, + { + "word": "évier", + "article_with_word": "l'évier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink", + "example_sentence_native": "La vaisselle sale est dans l'évier.", + "example_sentence_english": "The dirty dishes are in the sink.", + "pos": "noun", + "word_frequency": 12445 + }, + { + "word": "évêché", + "article_with_word": "l'évêché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bishopric;bishop's palace", + "example_sentence_native": "L'évêché est un bâtiment historique au centre-ville.", + "example_sentence_english": "The bishopric is a historic building in the city center.", + "pos": "noun", + "word_frequency": 12446 + }, + { + "word": "abattement", + "article_with_word": "l'abattement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dejection;reduction", + "example_sentence_native": "Il ressentait un profond abattement après la nouvelle.", + "example_sentence_english": "He felt a deep dejection after the news.", + "pos": "noun", + "word_frequency": 12447 + }, + { + "word": "abominable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abominable;dreadful", + "example_sentence_native": "Le temps était abominable hier.", + "example_sentence_english": "The weather was abominable yesterday.", + "pos": "adjective", + "word_frequency": 12448 + }, + { + "word": "abrogation", + "article_with_word": "l'abrogation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repeal;abrogation", + "example_sentence_native": "L'abrogation de cette loi est très attendue.", + "example_sentence_english": "The repeal of this law is highly anticipated.", + "pos": "noun", + "word_frequency": 12449 + }, + { + "word": "agrégation", + "article_with_word": "l'agrégation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aggregation;competitive examination for teaching", + "example_sentence_native": "Elle a réussi l'agrégation de lettres modernes.", + "example_sentence_english": "She passed the competitive examination for teaching modern literature.", + "pos": "noun", + "word_frequency": 12450 + }, + { + "word": "agréger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to aggregate;to admit (to a body)", + "example_sentence_native": "Les données ont été agrégées pour l'analyse.", + "example_sentence_english": "The data was aggregated for analysis.", + "pos": "verb", + "word_frequency": 12451 + }, + { + "word": "ancrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to anchor", + "example_sentence_native": "Le bateau a ancré près de la côte.", + "example_sentence_english": "The boat anchored near the coast.", + "pos": "verb", + "word_frequency": 12452 + }, + { + "word": "appréhension", + "article_with_word": "l'appréhension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apprehension;understanding", + "example_sentence_native": "Il ressentait une certaine appréhension avant l'examen.", + "example_sentence_english": "He felt some apprehension before the exam.", + "pos": "noun", + "word_frequency": 12453 + }, + { + "word": "assignation", + "article_with_word": "l'assignation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "summons;assignment", + "example_sentence_native": "Il a reçu une assignation à comparaître devant le tribunal.", + "example_sentence_english": "He received a summons to appear before the court.", + "pos": "noun", + "word_frequency": 12456 + }, + { + "word": "baronne", + "article_with_word": "la baronne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baroness", + "example_sentence_native": "La baronne a organisé une réception somptueuse.", + "example_sentence_english": "The baroness hosted a lavish reception.", + "pos": "noun", + "word_frequency": 12458 + }, + { + "word": "barrette", + "article_with_word": "la barrette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hair clip;bar (of chocolate;memory)", + "example_sentence_native": "Elle a mis une barrette dans ses cheveux.", + "example_sentence_english": "She put a hair clip in her hair.", + "pos": "noun", + "word_frequency": 12459 + }, + { + "word": "bienfaisance", + "article_with_word": "la bienfaisance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benevolence;charity", + "example_sentence_native": "Elle est connue pour ses œuvres de bienfaisance.", + "example_sentence_english": "She is known for her charitable works.", + "pos": "noun", + "word_frequency": 12462 + }, + { + "word": "biennale", + "article_with_word": "la biennale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biennial (event)", + "example_sentence_native": "La Biennale de Venise est un événement artistique majeur.", + "example_sentence_english": "The Venice Biennale is a major art event.", + "pos": "noun", + "word_frequency": 12463 + }, + { + "word": "biologiste", + "article_with_word": "le biologiste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biologist", + "example_sentence_native": "Mon ami est un biologiste marin.", + "example_sentence_english": "My friend is a marine biologist.", + "pos": "noun", + "word_frequency": 12464 + }, + { + "word": "blanchir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to whiten;to bleach", + "example_sentence_native": "Il faut blanchir le linge blanc.", + "example_sentence_english": "You need to whiten the white laundry.", + "pos": "verb", + "word_frequency": 12466 + }, + { + "word": "bouddhiste", + "article_with_word": "le bouddhiste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Buddhist", + "example_sentence_native": "Elle est bouddhiste et pratique la méditation.", + "example_sentence_english": "She is Buddhist and practices meditation.", + "pos": "noun", + "word_frequency": 12467 + }, + { + "word": "boycotter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boycott", + "example_sentence_native": "Ils ont décidé de boycotter les produits de cette entreprise.", + "example_sentence_english": "They decided to boycott the products of this company.", + "pos": "verb", + "word_frequency": 12468 + }, + { + "word": "brosser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to brush", + "example_sentence_native": "N'oublie pas de te brosser les dents.", + "example_sentence_english": "Don't forget to brush your teeth.", + "pos": "verb", + "word_frequency": 12471 + }, + { + "word": "brouillon", + "article_with_word": "le brouillon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draft;rough copy", + "example_sentence_native": "J'ai écrit un brouillon de ma lettre.", + "example_sentence_english": "I wrote a draft of my letter.", + "pos": "noun", + "word_frequency": 12472 + }, + { + "word": "caleçon", + "article_with_word": "le caleçon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boxer shorts;underpants", + "example_sentence_native": "Il porte un caleçon de bain pour nager.", + "example_sentence_english": "He wears swimming trunks to swim.", + "pos": "noun", + "word_frequency": 12473 + }, + { + "word": "camper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to camp", + "example_sentence_native": "Nous aimons camper en pleine nature.", + "example_sentence_english": "We like to camp in the wilderness.", + "pos": "verb", + "word_frequency": 12474 + }, + { + "word": "cannelle", + "article_with_word": "la cannelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cinnamon", + "example_sentence_native": "J'adore le parfum de la cannelle dans les gâteaux.", + "example_sentence_english": "I love the smell of cinnamon in cakes.", + "pos": "noun", + "word_frequency": 12475 + }, + { + "word": "cantal", + "article_with_word": "le Cantal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cantal (a type of cheese;a French department)", + "example_sentence_native": "Le Cantal est un fromage français très apprécié.", + "example_sentence_english": "Cantal is a very popular French cheese.", + "pos": "noun", + "word_frequency": 12476 + }, + { + "word": "cavale", + "article_with_word": "la cavale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escape;flight", + "example_sentence_native": "Le criminel est en cavale depuis hier.", + "example_sentence_english": "The criminal has been on the run since yesterday.", + "pos": "noun", + "word_frequency": 12477 + }, + { + "word": "chameau", + "article_with_word": "le chameau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camel", + "example_sentence_native": "Le chameau peut survivre longtemps sans eau.", + "example_sentence_english": "The camel can survive a long time without water.", + "pos": "noun", + "word_frequency": 12479 + }, + { + "word": "chiite", + "article_with_word": "un chiite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Shiite", + "example_sentence_native": "Un chiite est un adepte de l'islam chiite.", + "example_sentence_english": "A Shiite is a follower of Shiite Islam.", + "pos": "noun", + "word_frequency": 12480 + }, + { + "word": "cholestérol", + "article_with_word": "le cholestérol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cholesterol", + "example_sentence_native": "Il faut surveiller son taux de cholestérol.", + "example_sentence_english": "You need to monitor your cholesterol level.", + "pos": "noun", + "word_frequency": 12481 + }, + { + "word": "collector", + "article_with_word": "un collector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collector's item", + "example_sentence_native": "Cette édition limitée est un véritable collector.", + "example_sentence_english": "This limited edition is a true collector's item.", + "pos": "noun", + "word_frequency": 12484 + }, + { + "word": "concourir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compete;to contribute", + "example_sentence_native": "Il va concourir pour le prix.", + "example_sentence_english": "He will compete for the prize.", + "pos": "verb", + "word_frequency": 12485 + }, + { + "word": "conference", + "article_with_word": "la conférence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conference;lecture", + "example_sentence_native": "J'ai assisté à une conférence intéressante.", + "example_sentence_english": "I attended an interesting conference.", + "pos": "noun", + "word_frequency": 12486 + }, + { + "word": "confortablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortably", + "example_sentence_native": "Il était assis confortablement dans le fauteuil.", + "example_sentence_english": "He was sitting comfortably in the armchair.", + "pos": "adverb", + "word_frequency": 12487 + }, + { + "word": "contributeur", + "article_with_word": "un contributeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contributor", + "example_sentence_native": "Il est un contributeur régulier à ce projet.", + "example_sentence_english": "He is a regular contributor to this project.", + "pos": "noun", + "word_frequency": 12488 + }, + { + "word": "coquillage", + "article_with_word": "un coquillage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seashell;shellfish", + "example_sentence_native": "Nous avons ramassé des coquillages sur la plage.", + "example_sentence_english": "We collected seashells on the beach.", + "pos": "noun", + "word_frequency": 12489 + }, + { + "word": "couronner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crown;to top off", + "example_sentence_native": "Le succès a couronné ses efforts.", + "example_sentence_english": "Success crowned his efforts.", + "pos": "verb", + "word_frequency": 12490 + }, + { + "word": "couturier", + "article_with_word": "un couturier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fashion designer;dressmaker", + "example_sentence_native": "Le couturier a présenté sa nouvelle collection.", + "example_sentence_english": "The fashion designer presented his new collection.", + "pos": "noun", + "word_frequency": 12491 + }, + { + "word": "craie", + "article_with_word": "la craie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chalk", + "example_sentence_native": "L'enseignant a écrit au tableau avec de la craie.", + "example_sentence_english": "The teacher wrote on the board with chalk.", + "pos": "noun", + "word_frequency": 12492 + }, + { + "word": "crasse", + "article_with_word": "la crasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grime;filth", + "example_sentence_native": "Il y avait de la crasse sous ses ongles.", + "example_sentence_english": "There was grime under his fingernails.", + "pos": "noun", + "word_frequency": 12493 + }, + { + "word": "croquette", + "article_with_word": "la croquette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "croquette;kibble", + "example_sentence_native": "Le chien mange ses croquettes.", + "example_sentence_english": "The dog is eating its kibble.", + "pos": "noun", + "word_frequency": 12494 + }, + { + "word": "côtoyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rub shoulders with;to border", + "example_sentence_native": "Il aime côtoyer des artistes.", + "example_sentence_english": "He likes to rub shoulders with artists.", + "pos": "verb", + "word_frequency": 12495 + }, + { + "word": "daddy", + "article_with_word": "le daddy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daddy", + "example_sentence_native": "Mon daddy m'a acheté un cadeau.", + "example_sentence_english": "My daddy bought me a gift.", + "pos": "noun", + "word_frequency": 12496 + }, + { + "word": "deuxieme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "second", + "example_sentence_native": "C'est la deuxième fois que je viens ici.", + "example_sentence_english": "This is the second time I've come here.", + "pos": "numeral", + "word_frequency": 12497 + }, + { + "word": "dia", + "article_with_word": "la dia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slide (photographic)", + "example_sentence_native": "J'ai retrouvé de vieilles dias de vacances.", + "example_sentence_english": "I found old vacation slides.", + "pos": "noun", + "word_frequency": 12498 + }, + { + "word": "dicter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dictate", + "example_sentence_native": "Le professeur a dicté la leçon.", + "example_sentence_english": "The teacher dictated the lesson.", + "pos": "verb", + "word_frequency": 12499 + }, + { + "word": "dioxyde", + "article_with_word": "le dioxyde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dioxide", + "example_sentence_native": "Le dioxyde de carbone est un gaz à effet de serre.", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "noun", + "word_frequency": 12500 + }, + { + "word": "distrait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distracted;absent-minded", + "example_sentence_native": "Il est souvent distrait en classe.", + "example_sentence_english": "He is often distracted in class.", + "pos": "adjective", + "word_frequency": 12501 + }, + { + "word": "dortoir", + "article_with_word": "le dortoir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dormitory", + "example_sentence_native": "Les élèves dorment dans le dortoir.", + "example_sentence_english": "The students sleep in the dormitory.", + "pos": "noun", + "word_frequency": 12502 + }, + { + "word": "dynamite", + "article_with_word": "la dynamite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamite", + "example_sentence_native": "La dynamite est un explosif puissant.", + "example_sentence_english": "Dynamite is a powerful explosive.", + "pos": "noun", + "word_frequency": 12503 + }, + { + "word": "déboire", + "article_with_word": "un déboire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "setback;disappointment", + "example_sentence_native": "Il a connu de nombreux déboires dans sa carrière.", + "example_sentence_english": "He experienced many setbacks in his career.", + "pos": "noun", + "word_frequency": 12504 + }, + { + "word": "effect", + "article_with_word": "l'effet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "effect;impact", + "example_sentence_native": "Ce médicament a des effets secondaires.", + "example_sentence_english": "This medicine has side effects.", + "pos": "noun", + "word_frequency": 12506 + }, + { + "word": "embouteillage", + "article_with_word": "l'embouteillage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "traffic jam;bottleneck", + "example_sentence_native": "Il y avait un gros embouteillage sur l'autoroute.", + "example_sentence_english": "There was a big traffic jam on the highway.", + "pos": "noun", + "word_frequency": 12507 + }, + { + "word": "enterprise", + "article_with_word": "l'entreprise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company;enterprise", + "example_sentence_native": "Il travaille dans une grande entreprise.", + "example_sentence_english": "He works in a large company.", + "pos": "noun", + "word_frequency": 12508 + }, + { + "word": "eviter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to avoid", + "example_sentence_native": "Il faut éviter les embouteillages.", + "example_sentence_english": "You must avoid traffic jams.", + "pos": "verb", + "word_frequency": 12510 + }, + { + "word": "exergue", + "article_with_word": "l'exergue", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "exergue;epigraph", + "example_sentence_native": "Le livre commence par une citation en exergue.", + "example_sentence_english": "The book begins with a quote as an epigraph.", + "pos": "noun", + "word_frequency": 12511 + }, + { + "word": "farouche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fierce;shy;wild", + "example_sentence_native": "C'est un animal farouche.", + "example_sentence_english": "It's a wild animal.", + "pos": "adjective", + "word_frequency": 12512 + }, + { + "word": "ferrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shoe (a horse);to hook (a fish)", + "example_sentence_native": "Le maréchal-ferrant va ferrer le cheval.", + "example_sentence_english": "The farrier will shoe the horse.", + "pos": "verb", + "word_frequency": 12513 + }, + { + "word": "flatteur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flattering;complimentary", + "example_sentence_native": "C'est un compliment très flatteur.", + "example_sentence_english": "That's a very flattering compliment.", + "pos": "adjective", + "word_frequency": 12515 + }, + { + "word": "flyer", + "article_with_word": "le flyer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flyer;leaflet", + "example_sentence_native": "Ils ont distribué des flyers pour l'événement.", + "example_sentence_english": "They distributed flyers for the event.", + "pos": "noun", + "word_frequency": 12516 + }, + { + "word": "fortin", + "article_with_word": "le fortin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small fort;blockhouse", + "example_sentence_native": "Les soldats se sont réfugiés dans le fortin.", + "example_sentence_english": "The soldiers took refuge in the small fort.", + "pos": "noun", + "word_frequency": 12517 + }, + { + "word": "fétiche", + "article_with_word": "le fétiche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fetish;charm", + "example_sentence_native": "Il a un fétiche porte-bonheur.", + "example_sentence_english": "He has a lucky charm.", + "pos": "noun", + "word_frequency": 12518 + }, + { + "word": "gâter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spoil", + "example_sentence_native": "Il aime gâter ses petits-enfants avec des cadeaux.", + "example_sentence_english": "He likes to spoil his grandchildren with gifts.", + "pos": "verb", + "word_frequency": 12521 + }, + { + "word": "habilement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skillfully", + "example_sentence_native": "Elle a habilement évité la question difficile.", + "example_sentence_english": "She skillfully avoided the difficult question.", + "pos": "adverb", + "word_frequency": 12522 + }, + { + "word": "hype", + "article_with_word": "la hype", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hype", + "example_sentence_native": "Il y a beaucoup de hype autour de ce nouveau jeu vidéo.", + "example_sentence_english": "There's a lot of hype around this new video game.", + "pos": "noun", + "word_frequency": 12527 + }, + { + "word": "hélice", + "article_with_word": "l'hélice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "propeller", + "example_sentence_native": "L'hélice de l'avion tournait à pleine vitesse.", + "example_sentence_english": "The airplane's propeller was spinning at full speed.", + "pos": "noun", + "word_frequency": 12528 + }, + { + "word": "iceberg", + "article_with_word": "un iceberg", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iceberg", + "example_sentence_native": "Seule la pointe de l'iceberg était visible au-dessus de l'eau.", + "example_sentence_english": "Only the tip of the iceberg was visible above the water.", + "pos": "noun", + "word_frequency": 12529 + }, + { + "word": "impartialité", + "article_with_word": "l'impartialité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impartiality", + "example_sentence_native": "Le juge doit faire preuve d'une totale impartialité.", + "example_sentence_english": "The judge must show complete impartiality.", + "pos": "noun", + "word_frequency": 12530 + }, + { + "word": "inceste", + "article_with_word": "l'inceste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incest", + "example_sentence_native": "L'inceste est un sujet délicat et un crime grave.", + "example_sentence_english": "Incest is a sensitive topic and a serious crime.", + "pos": "noun", + "word_frequency": 12531 + }, + { + "word": "infecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to infect", + "example_sentence_native": "Le virus peut infecter les systèmes informatiques.", + "example_sentence_english": "The virus can infect computer systems.", + "pos": "verb", + "word_frequency": 12532 + }, + { + "word": "informaticien", + "article_with_word": "un informaticien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "computer scientist", + "example_sentence_native": "J'ai demandé à un informaticien de m'aider avec mon logiciel.", + "example_sentence_english": "I asked a computer scientist to help me with my software.", + "pos": "noun", + "word_frequency": 12533 + }, + { + "word": "insoutenable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unbearable", + "example_sentence_native": "La pression était devenue insoutenable pour l'équipe.", + "example_sentence_english": "The pressure had become unbearable for the team.", + "pos": "adjective", + "word_frequency": 12534 + }, + { + "word": "intrinsèque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrinsic", + "example_sentence_native": "La beauté intrinsèque de l'œuvre est indéniable.", + "example_sentence_english": "The intrinsic beauty of the work is undeniable.", + "pos": "adjective", + "word_frequency": 12535 + }, + { + "word": "inéluctable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unavoidable", + "example_sentence_native": "Le changement climatique semble inéluctable.", + "example_sentence_english": "Climate change seems unavoidable.", + "pos": "adjective", + "word_frequency": 12536 + }, + { + "word": "isbn", + "article_with_word": "l'ISBN", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ISBN", + "example_sentence_native": "Chaque livre publié possède un numéro ISBN unique.", + "example_sentence_english": "Every published book has a unique ISBN number.", + "pos": "noun", + "word_frequency": 12537 + }, + { + "word": "jeep", + "article_with_word": "une jeep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jeep", + "example_sentence_native": "Ils ont exploré la jungle à bord d'une vieille jeep.", + "example_sentence_english": "They explored the jungle in an old jeep.", + "pos": "noun", + "word_frequency": 12541 + }, + { + "word": "labeur", + "article_with_word": "le labeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "toil", + "example_sentence_native": "Après des années de labeur, il a enfin vu le fruit de ses efforts.", + "example_sentence_english": "After years of toil, he finally saw the fruit of his efforts.", + "pos": "noun", + "word_frequency": 12543 + }, + { + "word": "labour", + "article_with_word": "le labour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plowing", + "example_sentence_native": "Le labour des champs est une étape cruciale avant les semailles.", + "example_sentence_english": "Plowing the fields is a crucial step before sowing.", + "pos": "noun", + "word_frequency": 12544 + }, + { + "word": "leurre", + "article_with_word": "le leurre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lure", + "example_sentence_native": "Le détective a utilisé un leurre pour piéger le suspect.", + "example_sentence_english": "The detective used a lure to trap the suspect.", + "pos": "noun", + "word_frequency": 12545 + }, + { + "word": "limpide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clear", + "example_sentence_native": "L'eau de la source était limpide et fraîche.", + "example_sentence_english": "The spring water was clear and fresh.", + "pos": "adjective", + "word_frequency": 12546 + }, + { + "word": "louable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "praiseworthy", + "example_sentence_native": "Son dévouement à la cause est tout à fait louable.", + "example_sentence_english": "His dedication to the cause is entirely praiseworthy.", + "pos": "adjective", + "word_frequency": 12547 + }, + { + "word": "maladresse", + "article_with_word": "la maladresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clumsiness", + "example_sentence_native": "Sa maladresse a provoqué la chute de la pile de livres.", + "example_sentence_english": "His clumsiness caused the stack of books to fall.", + "pos": "noun", + "word_frequency": 12549 + }, + { + "word": "manquement", + "article_with_word": "le manquement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "failure", + "example_sentence_native": "Il a été réprimandé pour un manquement à ses devoirs.", + "example_sentence_english": "He was reprimanded for a failure in his duties.", + "pos": "noun", + "word_frequency": 12550 + }, + { + "word": "maquis", + "article_with_word": "le maquis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maquis", + "example_sentence_native": "Les résistants se sont cachés dans le maquis corse.", + "example_sentence_english": "The resistance fighters hid in the Corsican maquis.", + "pos": "noun", + "word_frequency": 12551 + }, + { + "word": "memorial", + "article_with_word": "le mémorial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial", + "example_sentence_native": "Ils ont visité le mémorial des victimes de la guerre.", + "example_sentence_english": "They visited the memorial to the war victims.", + "pos": "noun", + "word_frequency": 12554 + }, + { + "word": "millésime", + "article_with_word": "le millésime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vintage", + "example_sentence_native": "Ce vin est un excellent millésime de 2010.", + "example_sentence_english": "This wine is an excellent 2010 vintage.", + "pos": "noun", + "word_frequency": 12556 + }, + { + "word": "modérateur", + "article_with_word": "le modérateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderator", + "example_sentence_native": "Le modérateur a veillé au bon déroulement du débat.", + "example_sentence_english": "The moderator ensured the smooth running of the debate.", + "pos": "noun", + "word_frequency": 12557 + }, + { + "word": "moyennement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderately", + "example_sentence_native": "Il a moyennement apprécié le film.", + "example_sentence_english": "He moderately enjoyed the movie.", + "pos": "adverb", + "word_frequency": 12559 + }, + { + "word": "mécaniquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanically", + "example_sentence_native": "La machine fonctionne mécaniquement.", + "example_sentence_english": "The machine operates mechanically.", + "pos": "adverb", + "word_frequency": 12560 + }, + { + "word": "nageur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimmer", + "example_sentence_native": "Le nageur a gagné la course.", + "example_sentence_english": "The swimmer won the race.", + "pos": "noun", + "word_frequency": 12561 + }, + { + "word": "narine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nostril", + "example_sentence_native": "Il a une petite coupure sur la narine.", + "example_sentence_english": "He has a small cut on his nostril.", + "pos": "noun", + "word_frequency": 12562 + }, + { + "word": "natalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "birth rate", + "example_sentence_native": "Le taux de natalité est en baisse dans ce pays.", + "example_sentence_english": "The birth rate is decreasing in this country.", + "pos": "noun", + "word_frequency": 12563 + }, + { + "word": "nausée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nausea", + "example_sentence_native": "Elle a ressenti une forte nausée après le voyage.", + "example_sentence_english": "She felt strong nausea after the trip.", + "pos": "noun", + "word_frequency": 12564 + }, + { + "word": "noyade", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drowning", + "example_sentence_native": "La noyade est une cause fréquente d'accidents en été.", + "example_sentence_english": "Drowning is a common cause of accidents in summer.", + "pos": "noun", + "word_frequency": 12567 + }, + { + "word": "objectivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objectively", + "example_sentence_native": "Il faut évaluer la situation objectivement.", + "example_sentence_english": "We must evaluate the situation objectively.", + "pos": "adverb", + "word_frequency": 12568 + }, + { + "word": "occasionnellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasionally", + "example_sentence_native": "Il visite ses parents occasionnellement.", + "example_sentence_english": "He visits his parents occasionally.", + "pos": "adverb", + "word_frequency": 12569 + }, + { + "word": "offrande", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offering", + "example_sentence_native": "Ils ont déposé une offrande sur l'autel.", + "example_sentence_english": "They placed an offering on the altar.", + "pos": "noun", + "word_frequency": 12570 + }, + { + "word": "onglet", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tab (browser);hanger steak", + "example_sentence_native": "J'ai ouvert un nouvel onglet dans mon navigateur.", + "example_sentence_english": "I opened a new tab in my browser.", + "pos": "noun", + "word_frequency": 12573 + }, + { + "word": "orphelinat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orphanage", + "example_sentence_native": "Il a passé son enfance à l'orphelinat.", + "example_sentence_english": "He spent his childhood at the orphanage.", + "pos": "noun", + "word_frequency": 12574 + }, + { + "word": "ovni", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "UFO", + "example_sentence_native": "Il prétend avoir vu un OVNI la nuit dernière.", + "example_sentence_english": "He claims to have seen a UFO last night.", + "pos": "noun", + "word_frequency": 12576 + }, + { + "word": "ozone", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ozone", + "example_sentence_native": "La couche d'ozone protège la Terre des rayons UV.", + "example_sentence_english": "The ozone layer protects Earth from UV rays.", + "pos": "noun", + "word_frequency": 12577 + }, + { + "word": "patiemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patiently", + "example_sentence_native": "Il attend patiemment son tour.", + "example_sentence_english": "He waits patiently for his turn.", + "pos": "adverb", + "word_frequency": 12578 + }, + { + "word": "patois", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dialect;patois", + "example_sentence_native": "Les habitants de cette région parlent un ancien patois.", + "example_sentence_english": "The inhabitants of this region speak an old dialect.", + "pos": "noun", + "word_frequency": 12579 + }, + { + "word": "physiologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiological", + "example_sentence_native": "C'est une réaction physiologique normale.", + "example_sentence_english": "It's a normal physiological reaction.", + "pos": "adjective", + "word_frequency": 12581 + }, + { + "word": "pioche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pickaxe", + "example_sentence_native": "Il a utilisé une pioche pour creuser le sol.", + "example_sentence_english": "He used a pickaxe to dig the ground.", + "pos": "noun", + "word_frequency": 12583 + }, + { + "word": "portière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "car door", + "example_sentence_native": "La portière de la voiture était ouverte.", + "example_sentence_english": "The car door was open.", + "pos": "noun", + "word_frequency": 12587 + }, + { + "word": "posthume", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "posthumous", + "example_sentence_native": "Son œuvre a connu un succès posthume.", + "example_sentence_english": "His work achieved posthumous success.", + "pos": "adjective", + "word_frequency": 12588 + }, + { + "word": "potion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potion", + "example_sentence_native": "Le magicien a préparé une potion mystérieuse.", + "example_sentence_english": "The magician prepared a mysterious potion.", + "pos": "noun", + "word_frequency": 12589 + }, + { + "word": "pouf", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ottoman;pouf", + "example_sentence_native": "Asseyez-vous sur le pouf, c'est confortable.", + "example_sentence_english": "Sit on the pouf, it's comfortable.", + "pos": "noun", + "word_frequency": 12590 + }, + { + "word": "poussette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stroller;pram", + "example_sentence_native": "Elle a mis le bébé dans la poussette.", + "example_sentence_english": "She put the baby in the stroller.", + "pos": "noun", + "word_frequency": 12591 + }, + { + "word": "privation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deprivation", + "example_sentence_native": "Ils ont souffert de nombreuses privations pendant la guerre.", + "example_sentence_english": "They suffered many deprivations during the war.", + "pos": "noun", + "word_frequency": 12593 + }, + { + "word": "puberté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puberty", + "example_sentence_native": "La puberté est une période de grands changements.", + "example_sentence_english": "Puberty is a period of great changes.", + "pos": "noun", + "word_frequency": 12594 + }, + { + "word": "quadruple", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadruple", + "example_sentence_native": "Il a réalisé un quadruple saut.", + "example_sentence_english": "He performed a quadruple jump.", + "pos": "adjective", + "word_frequency": 12595 + }, + { + "word": "quinzième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fifteenth", + "example_sentence_native": "C'est le quinzième jour du mois.", + "example_sentence_english": "It's the fifteenth day of the month.", + "pos": "numeral", + "word_frequency": 12596 + }, + { + "word": "raquette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "racket (sports);snowshoe", + "example_sentence_native": "J'ai acheté une nouvelle raquette de tennis.", + "example_sentence_english": "I bought a new tennis racket.", + "pos": "noun", + "word_frequency": 12597 + }, + { + "word": "rebondissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "twist (plot);rebound;new development", + "example_sentence_native": "L'histoire a pris un rebondissement inattendu.", + "example_sentence_english": "The story took an unexpected twist.", + "pos": "noun", + "word_frequency": 12598 + }, + { + "word": "reparler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to talk again;to speak again", + "example_sentence_native": "Nous devrons en reparler demain.", + "example_sentence_english": "We will have to talk about it again tomorrow.", + "pos": "verb", + "word_frequency": 12599 + }, + { + "word": "romanesque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Romanesque", + "example_sentence_native": "L'architecture romanesque est très belle et historique.", + "example_sentence_english": "Romanesque architecture is very beautiful and historical.", + "pos": "adjective", + "word_frequency": 12600 + }, + { + "word": "réalisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feasible", + "example_sentence_native": "Ce projet semble tout à fait réalisable dans les délais impartis.", + "example_sentence_english": "This project seems entirely feasible within the given timeframe.", + "pos": "adjective", + "word_frequency": 12601 + }, + { + "word": "référencement", + "article_with_word": "le référencement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "SEO (Search Engine Optimization)", + "example_sentence_native": "Le référencement est essentiel pour la visibilité d'un site web.", + "example_sentence_english": "SEO is essential for a website's visibility.", + "pos": "noun", + "word_frequency": 12602 + }, + { + "word": "réinventer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reinvent", + "example_sentence_native": "Il est parfois nécessaire de se réinventer pour s'adapter aux changements.", + "example_sentence_english": "It is sometimes necessary to reinvent oneself to adapt to changes.", + "pos": "verb", + "word_frequency": 12603 + }, + { + "word": "rêveur", + "article_with_word": "le rêveur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dreamer", + "example_sentence_native": "C'est un grand rêveur, toujours la tête dans les nuages.", + "example_sentence_english": "He is a big dreamer, always with his head in the clouds.", + "pos": "noun", + "word_frequency": 12604 + }, + { + "word": "saouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get drunk;to annoy (slang)", + "example_sentence_native": "Cette musique répétitive commence à me saouler.", + "example_sentence_english": "This repetitive music is starting to annoy me.", + "pos": "verb", + "word_frequency": 12605 + }, + { + "word": "semis", + "article_with_word": "le semis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sowing;seedling", + "example_sentence_native": "Le semis des légumes se fait au début du printemps.", + "example_sentence_english": "The sowing of vegetables is done in early spring.", + "pos": "noun", + "word_frequency": 12607 + }, + { + "word": "styliste", + "article_with_word": "le styliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stylist;designer", + "example_sentence_native": "Elle travaille comme styliste pour une grande maison de couture.", + "example_sentence_english": "She works as a stylist for a major fashion house.", + "pos": "noun", + "word_frequency": 12611 + }, + { + "word": "succomber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to succumb;to give in", + "example_sentence_native": "Il a succombé à la tentation de manger un autre gâteau.", + "example_sentence_english": "He succumbed to the temptation to eat another cake.", + "pos": "verb", + "word_frequency": 12612 + }, + { + "word": "symboliquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolically", + "example_sentence_native": "Ce geste est symboliquement très fort pour la communauté.", + "example_sentence_english": "This gesture is symbolically very strong for the community.", + "pos": "adverb", + "word_frequency": 12613 + }, + { + "word": "theatre", + "article_with_word": "le théâtre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "theater", + "example_sentence_native": "Nous allons voir une pièce de théâtre ce soir.", + "example_sentence_english": "We are going to see a play at the theater tonight.", + "pos": "noun", + "word_frequency": 12616 + }, + { + "word": "thune", + "article_with_word": "la thune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money (slang)", + "example_sentence_native": "Désolé, je n'ai pas de thune sur moi en ce moment.", + "example_sentence_english": "Sorry, I don't have any money on me right now.", + "pos": "noun", + "word_frequency": 12617 + }, + { + "word": "thérapeute", + "article_with_word": "le thérapeute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therapist", + "example_sentence_native": "Elle consulte un thérapeute pour gérer son stress.", + "example_sentence_english": "She consults a therapist to manage her stress.", + "pos": "noun", + "word_frequency": 12618 + }, + { + "word": "tisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weave;to build (figurative)", + "example_sentence_native": "Il est important de tisser des liens sociaux forts.", + "example_sentence_english": "It is important to build strong social ties.", + "pos": "verb", + "word_frequency": 12619 + }, + { + "word": "topographie", + "article_with_word": "la topographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "topography", + "example_sentence_native": "La topographie de la région est très montagneuse.", + "example_sentence_english": "The topography of the region is very mountainous.", + "pos": "noun", + "word_frequency": 12620 + }, + { + "word": "ustensile", + "article_with_word": "un ustensile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "utensil", + "example_sentence_native": "J'ai besoin d'un ustensile pour mélanger la pâte.", + "example_sentence_english": "I need a utensil to mix the dough.", + "pos": "noun", + "word_frequency": 12622 + }, + { + "word": "vacant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vacant;empty", + "example_sentence_native": "Le poste de directeur est vacant depuis le mois dernier.", + "example_sentence_english": "The director's position has been vacant since last month.", + "pos": "adjective", + "word_frequency": 12623 + }, + { + "word": "verrou", + "article_with_word": "le verrou", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bolt;lock", + "example_sentence_native": "N'oublie pas de mettre le verrou avant de partir.", + "example_sentence_english": "Don't forget to put the bolt on before leaving.", + "pos": "noun", + "word_frequency": 12624 + }, + { + "word": "volcanique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volcanic", + "example_sentence_native": "Cette île est d'origine volcanique.", + "example_sentence_english": "This island is of volcanic origin.", + "pos": "adjective", + "word_frequency": 12625 + }, + { + "word": "voyelle", + "article_with_word": "la voyelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vowel", + "example_sentence_native": "En français, 'e' est une voyelle très courante.", + "example_sentence_english": "In French, 'e' is a very common vowel.", + "pos": "noun", + "word_frequency": 12626 + }, + { + "word": "zodiaque", + "article_with_word": "le zodiaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zodiac", + "example_sentence_native": "Quel est votre signe du zodiaque ?", + "example_sentence_english": "What is your zodiac sign?", + "pos": "noun", + "word_frequency": 12630 + }, + { + "word": "ébauche", + "article_with_word": "une ébauche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sketch;draft;outline", + "example_sentence_native": "Ceci n'est qu'une ébauche du plan final.", + "example_sentence_english": "This is just a draft of the final plan.", + "pos": "noun", + "word_frequency": 12631 + }, + { + "word": "éclosion", + "article_with_word": "l'éclosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hatching;blooming;emergence", + "example_sentence_native": "L'éclosion des œufs de tortue est un événement fascinant.", + "example_sentence_english": "The hatching of turtle eggs is a fascinating event.", + "pos": "noun", + "word_frequency": 12632 + }, + { + "word": "électricien", + "article_with_word": "l'électricien", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electrician", + "example_sentence_native": "Nous avons appelé l'électricien pour réparer la panne de courant.", + "example_sentence_english": "We called the electrician to fix the power outage.", + "pos": "noun", + "word_frequency": 12633 + }, + { + "word": "éminent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eminent;distinguished", + "example_sentence_native": "C'est un professeur éminent dans le domaine de la physique.", + "example_sentence_english": "He is an eminent professor in the field of physics.", + "pos": "adjective", + "word_frequency": 12634 + }, + { + "word": "émotionnellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emotionally", + "example_sentence_native": "Il était émotionnellement affecté par la nouvelle.", + "example_sentence_english": "He was emotionally affected by the news.", + "pos": "adverb", + "word_frequency": 12635 + }, + { + "word": "érudit", + "article_with_word": "l'érudit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scholar;erudite person", + "example_sentence_native": "C'est un érudit en littérature classique.", + "example_sentence_english": "He is a scholar in classical literature.", + "pos": "noun", + "word_frequency": 12636 + }, + { + "word": "abs", + "article_with_word": "l'ABS", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ABS (Anti-lock Braking System)", + "example_sentence_native": "La plupart des voitures modernes sont équipées de l'ABS.", + "example_sentence_english": "Most modern cars are equipped with ABS.", + "pos": "noun", + "word_frequency": 12637 + }, + { + "word": "acronyme", + "article_with_word": "un acronyme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acronym", + "example_sentence_native": "ONU est l'acronyme de l'Organisation des Nations Unies.", + "example_sentence_english": "UN is the acronym for the United Nations Organization.", + "pos": "noun", + "word_frequency": 12638 + }, + { + "word": "aliénation", + "article_with_word": "l'aliénation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alienation", + "example_sentence_native": "L'aliénation sociale peut conduire à l'isolement.", + "example_sentence_english": "Social alienation can lead to isolation.", + "pos": "noun", + "word_frequency": 12644 + }, + { + "word": "amortissement", + "article_with_word": "l'amortissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amortization;depreciation", + "example_sentence_native": "L'amortissement des dettes est un processus long.", + "example_sentence_english": "Debt amortization is a long process.", + "pos": "noun", + "word_frequency": 12645 + }, + { + "word": "amplifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to amplify;to magnify", + "example_sentence_native": "Il faut amplifier le son pour que tout le monde entende.", + "example_sentence_english": "We need to amplify the sound so everyone can hear.", + "pos": "verb", + "word_frequency": 12646 + }, + { + "word": "angulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angular;cornerstone", + "example_sentence_native": "C'est un point angulaire de notre stratégie.", + "example_sentence_english": "This is a cornerstone of our strategy.", + "pos": "adjective", + "word_frequency": 12647 + }, + { + "word": "arbuste", + "article_with_word": "un arbuste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shrub;bush", + "example_sentence_native": "Nous avons planté un petit arbuste dans le jardin.", + "example_sentence_english": "We planted a small shrub in the garden.", + "pos": "noun", + "word_frequency": 12652 + }, + { + "word": "armoirie", + "article_with_word": "une armoirie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coat of arms", + "example_sentence_native": "Chaque famille noble avait ses propres armoiries.", + "example_sentence_english": "Each noble family had its own coat of arms.", + "pos": "noun", + "word_frequency": 12654 + }, + { + "word": "astronome", + "article_with_word": "un astronome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomer", + "example_sentence_native": "L'astronome a découvert une nouvelle étoile.", + "example_sentence_english": "The astronomer discovered a new star.", + "pos": "noun", + "word_frequency": 12656 + }, + { + "word": "attarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delay;to linger", + "example_sentence_native": "Ne t'attarde pas trop, nous devons partir.", + "example_sentence_english": "Don't linger too long, we have to leave.", + "pos": "verb", + "word_frequency": 12657 + }, + { + "word": "aumônier", + "article_with_word": "un aumônier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chaplain", + "example_sentence_native": "L'aumônier a visité les malades à l'hôpital.", + "example_sentence_english": "The chaplain visited the sick in the hospital.", + "pos": "noun", + "word_frequency": 12659 + }, + { + "word": "biathlon", + "article_with_word": "le biathlon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biathlon", + "example_sentence_native": "Le biathlon combine le ski de fond et le tir.", + "example_sentence_english": "Biathlon combines cross-country skiing and shooting.", + "pos": "noun", + "word_frequency": 12667 + }, + { + "word": "boost", + "article_with_word": "un boost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boost", + "example_sentence_native": "Ce café me donne un bon boost d'énergie.", + "example_sentence_english": "This coffee gives me a good energy boost.", + "pos": "noun", + "word_frequency": 12670 + }, + { + "word": "bouleversement", + "article_with_word": "un bouleversement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upheaval;disruption", + "example_sentence_native": "La révolution a entraîné un bouleversement social majeur.", + "example_sentence_english": "The revolution led to a major social upheaval.", + "pos": "noun", + "word_frequency": 12671 + }, + { + "word": "bousculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jostle;to rush;to upset", + "example_sentence_native": "Ne me bouscule pas, je vais tomber !", + "example_sentence_english": "Don't jostle me, I'm going to fall!", + "pos": "verb", + "word_frequency": 12672 + }, + { + "word": "canoë", + "article_with_word": "un canoë", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canoe", + "example_sentence_native": "Nous avons fait du canoë sur la rivière.", + "example_sentence_english": "We went canoeing on the river.", + "pos": "noun", + "word_frequency": 12674 + }, + { + "word": "castel", + "article_with_word": "un castel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "castle;small castle", + "example_sentence_native": "Le vieux castel dominait la vallée.", + "example_sentence_english": "The old castle dominated the valley.", + "pos": "noun", + "word_frequency": 12676 + }, + { + "word": "centrafricain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Central African", + "example_sentence_native": "La République centrafricaine est un pays d'Afrique.", + "example_sentence_english": "The Central African Republic is a country in Africa.", + "pos": "adjective", + "word_frequency": 12677 + }, + { + "word": "cervelle", + "article_with_word": "la cervelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brain (animal);brains (figurative)", + "example_sentence_native": "Il a une bonne cervelle pour les maths.", + "example_sentence_english": "He has a good brain for math.", + "pos": "noun", + "word_frequency": 12678 + }, + { + "word": "chanvre", + "article_with_word": "le chanvre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemp", + "example_sentence_native": "Le chanvre est utilisé pour fabriquer des textiles et du papier.", + "example_sentence_english": "Hemp is used to make textiles and paper.", + "pos": "noun", + "word_frequency": 12679 + }, + { + "word": "chopper", + "article_with_word": "le chopper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chopper (motorcycle;helicopter)", + "example_sentence_native": "Il a acheté un nouveau chopper pour ses balades.", + "example_sentence_english": "He bought a new chopper for his rides.", + "pos": "noun", + "word_frequency": 12680 + }, + { + "word": "cocotte", + "article_with_word": "la cocotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casserole dish;darling", + "example_sentence_native": "Elle a préparé un bon plat dans sa cocotte en fonte.", + "example_sentence_english": "She prepared a good dish in her cast iron casserole dish.", + "pos": "noun", + "word_frequency": 12682 + }, + { + "word": "cognitif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cognitive", + "example_sentence_native": "Les fonctions cognitives sont essentielles pour l'apprentissage.", + "example_sentence_english": "Cognitive functions are essential for learning.", + "pos": "adjective", + "word_frequency": 12683 + }, + { + "word": "congestion", + "article_with_word": "la congestion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congestion", + "example_sentence_native": "Il y a beaucoup de congestion sur les routes ce matin.", + "example_sentence_english": "There is a lot of congestion on the roads this morning.", + "pos": "noun", + "word_frequency": 12684 + }, + { + "word": "conjonction", + "article_with_word": "la conjonction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conjunction", + "example_sentence_native": "La conjonction 'mais' introduit une opposition.", + "example_sentence_english": "The conjunction 'but' introduces an opposition.", + "pos": "noun", + "word_frequency": 12685 + }, + { + "word": "contagieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contagious", + "example_sentence_native": "Cette maladie est très contagieuse.", + "example_sentence_english": "This disease is very contagious.", + "pos": "adjective", + "word_frequency": 12687 + }, + { + "word": "county", + "article_with_word": "le county", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "county", + "example_sentence_native": "Le shérif du county est arrivé sur les lieux.", + "example_sentence_english": "The county sheriff arrived on the scene.", + "pos": "noun", + "word_frequency": 12688 + }, + { + "word": "culminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to culminate", + "example_sentence_native": "Leur effort a culminé par un succès retentissant.", + "example_sentence_english": "Their effort culminated in a resounding success.", + "pos": "verb", + "word_frequency": 12690 + }, + { + "word": "descriptif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descriptive", + "example_sentence_native": "Le rapport contient une analyse descriptive des données.", + "example_sentence_english": "The report contains a descriptive analysis of the data.", + "pos": "adjective", + "word_frequency": 12693 + }, + { + "word": "desserte", + "article_with_word": "la desserte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "service;side table;access road", + "example_sentence_native": "La desserte de cette zone est difficile.", + "example_sentence_english": "The service to this area is difficult.", + "pos": "noun", + "word_frequency": 12694 + }, + { + "word": "dialectique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dialectical", + "example_sentence_native": "Il a présenté une approche dialectique du problème.", + "example_sentence_english": "He presented a dialectical approach to the problem.", + "pos": "adjective", + "word_frequency": 12695 + }, + { + "word": "dorsal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dorsal", + "example_sentence_native": "Il a une douleur dorsale.", + "example_sentence_english": "He has a dorsal pain.", + "pos": "adjective", + "word_frequency": 12699 + }, + { + "word": "décharger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unload;to discharge", + "example_sentence_native": "Nous devons décharger le camion.", + "example_sentence_english": "We need to unload the truck.", + "pos": "verb", + "word_frequency": 12701 + }, + { + "word": "déclic", + "article_with_word": "le déclic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "click;trigger;realization", + "example_sentence_native": "J'ai eu un déclic et j'ai compris le problème.", + "example_sentence_english": "I had a realization and understood the problem.", + "pos": "noun", + "word_frequency": 12702 + }, + { + "word": "décroissance", + "article_with_word": "la décroissance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decrease;degrowth", + "example_sentence_native": "La décroissance économique est un sujet de débat.", + "example_sentence_english": "Economic degrowth is a subject of debate.", + "pos": "noun", + "word_frequency": 12703 + }, + { + "word": "dénicher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unearth;to find", + "example_sentence_native": "J'ai déniché une vieille carte au trésor.", + "example_sentence_english": "I unearthed an old treasure map.", + "pos": "verb", + "word_frequency": 12704 + }, + { + "word": "déplaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to displease", + "example_sentence_native": "Son attitude a déplu à tout le monde.", + "example_sentence_english": "His attitude displeased everyone.", + "pos": "verb", + "word_frequency": 12705 + }, + { + "word": "dérisoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derisory;negligible", + "example_sentence_native": "Le montant de l'amende était dérisoire.", + "example_sentence_english": "The amount of the fine was derisory.", + "pos": "adjective", + "word_frequency": 12706 + }, + { + "word": "désarmement", + "article_with_word": "le désarmement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disarmament", + "example_sentence_native": "Les négociations sur le désarmement ont échoué.", + "example_sentence_english": "Disarmament negotiations failed.", + "pos": "noun", + "word_frequency": 12707 + }, + { + "word": "désobéissance", + "article_with_word": "la désobéissance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disobedience", + "example_sentence_native": "La désobéissance civile est une forme de protestation.", + "example_sentence_english": "Civil disobedience is a form of protest.", + "pos": "noun", + "word_frequency": 12708 + }, + { + "word": "ensoleillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunny", + "example_sentence_native": "Il fait un temps magnifique et ensoleillé aujourd'hui.", + "example_sentence_english": "The weather is beautiful and sunny today.", + "pos": "adjective", + "word_frequency": 12710 + }, + { + "word": "exagération", + "article_with_word": "l'exagération", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaggeration", + "example_sentence_native": "Il y a souvent de l'exagération dans les récits de voyage.", + "example_sentence_english": "There is often exaggeration in travel stories.", + "pos": "noun", + "word_frequency": 12711 + }, + { + "word": "exchange", + "article_with_word": "l'exchange", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exchange", + "example_sentence_native": "Il a investi sur un exchange de cryptomonnaies.", + "example_sentence_english": "He invested on a cryptocurrency exchange.", + "pos": "noun", + "word_frequency": 12712 + }, + { + "word": "extase", + "article_with_word": "l'extase", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecstasy", + "example_sentence_native": "Elle était en extase devant le paysage.", + "example_sentence_english": "She was in ecstasy before the landscape.", + "pos": "noun", + "word_frequency": 12713 + }, + { + "word": "fleurir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bloom;to flourish", + "example_sentence_native": "Les roses commencent à fleurir au printemps.", + "example_sentence_english": "Roses begin to bloom in spring.", + "pos": "verb", + "word_frequency": 12714 + }, + { + "word": "gale", + "article_with_word": "la gale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scabies;strong wind (old usage)", + "example_sentence_native": "Le chien a attrapé la gale.", + "example_sentence_english": "The dog caught scabies.", + "pos": "noun", + "word_frequency": 12716 + }, + { + "word": "gratos", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "free (informal)", + "example_sentence_native": "Le concert était gratos, on a bien profité.", + "example_sentence_english": "The concert was free, we really enjoyed it.", + "pos": "adjective", + "word_frequency": 12722 + }, + { + "word": "généalogique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genealogical", + "example_sentence_native": "Elle a fait des recherches généalogiques sur sa famille.", + "example_sentence_english": "She did genealogical research on her family.", + "pos": "adjective", + "word_frequency": 12723 + }, + { + "word": "homard", + "article_with_word": "le homard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lobster", + "example_sentence_native": "Nous avons commandé du homard pour le dîner.", + "example_sentence_english": "We ordered lobster for dinner.", + "pos": "noun", + "word_frequency": 12724 + }, + { + "word": "illusoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illusory", + "example_sentence_native": "Son espoir de gagner était illusoire.", + "example_sentence_english": "His hope of winning was illusory.", + "pos": "adjective", + "word_frequency": 12727 + }, + { + "word": "immigrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to immigrate", + "example_sentence_native": "Beaucoup de gens choisissent d'immigrer pour une vie meilleure.", + "example_sentence_english": "Many people choose to immigrate for a better life.", + "pos": "verb", + "word_frequency": 12728 + }, + { + "word": "indexation", + "article_with_word": "l'indexation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indexing", + "example_sentence_native": "L'indexation des prix est un sujet économique important.", + "example_sentence_english": "Price indexing is an important economic topic.", + "pos": "noun", + "word_frequency": 12729 + }, + { + "word": "influer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to influence", + "example_sentence_native": "Ses décisions peuvent influer sur l'avenir de l'entreprise.", + "example_sentence_english": "His decisions can influence the future of the company.", + "pos": "verb", + "word_frequency": 12730 + }, + { + "word": "ingrat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ungrateful;thankless", + "example_sentence_native": "C'est un travail ingrat mais nécessaire.", + "example_sentence_english": "It's a thankless but necessary job.", + "pos": "adjective", + "word_frequency": 12731 + }, + { + "word": "insomnie", + "article_with_word": "l'insomnie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insomnia", + "example_sentence_native": "Elle souffre d'insomnie depuis plusieurs mois.", + "example_sentence_english": "She has been suffering from insomnia for several months.", + "pos": "noun", + "word_frequency": 12732 + }, + { + "word": "instructif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instructive", + "example_sentence_native": "Ce documentaire était très instructif.", + "example_sentence_english": "This documentary was very instructive.", + "pos": "adjective", + "word_frequency": 12733 + }, + { + "word": "intrus", + "article_with_word": "l'intrus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intruder", + "example_sentence_native": "La police a arrêté l'intrus qui s'était introduit dans la maison.", + "example_sentence_english": "The police arrested the intruder who had broken into the house.", + "pos": "noun", + "word_frequency": 12734 + }, + { + "word": "jihadiste", + "article_with_word": "le jihadiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihadist", + "example_sentence_native": "Les autorités ont déjoué un complot jihadiste.", + "example_sentence_english": "Authorities foiled a jihadist plot.", + "pos": "noun", + "word_frequency": 12735 + }, + { + "word": "limousine", + "article_with_word": "la limousine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limousine", + "example_sentence_native": "Ils sont arrivés à la fête dans une limousine noire.", + "example_sentence_english": "They arrived at the party in a black limousine.", + "pos": "noun", + "word_frequency": 12740 + }, + { + "word": "louange", + "article_with_word": "la louange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise", + "example_sentence_native": "Il a reçu beaucoup de louanges pour son travail.", + "example_sentence_english": "He received a lot of praise for his work.", + "pos": "noun", + "word_frequency": 12742 + }, + { + "word": "maestro", + "article_with_word": "le maestro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maestro", + "example_sentence_native": "Le maestro a dirigé l'orchestre avec passion.", + "example_sentence_english": "The maestro conducted the orchestra with passion.", + "pos": "noun", + "word_frequency": 12743 + }, + { + "word": "mage", + "article_with_word": "le mage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magus;wise man", + "example_sentence_native": "Les Rois Mages ont apporté des cadeaux à l'enfant Jésus.", + "example_sentence_english": "The Magi brought gifts to the infant Jesus.", + "pos": "noun", + "word_frequency": 12744 + }, + { + "word": "majoration", + "article_with_word": "la majoration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "increase;surcharge", + "example_sentence_native": "Il y aura une majoration de prix pour les livraisons urgentes.", + "example_sentence_english": "There will be a price increase for urgent deliveries.", + "pos": "noun", + "word_frequency": 12745 + }, + { + "word": "manuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manually", + "example_sentence_native": "Cette tâche doit être effectuée manuellement.", + "example_sentence_english": "This task must be performed manually.", + "pos": "adverb", + "word_frequency": 12746 + }, + { + "word": "matraque", + "article_with_word": "la matraque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baton;truncheon", + "example_sentence_native": "La police a utilisé des matraques pour disperser la foule.", + "example_sentence_english": "The police used batons to disperse the crowd.", + "pos": "noun", + "word_frequency": 12747 + }, + { + "word": "microbe", + "article_with_word": "le microbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microbe;germ", + "example_sentence_native": "Lavez-vous les mains pour éviter les microbes.", + "example_sentence_english": "Wash your hands to avoid germs.", + "pos": "noun", + "word_frequency": 12751 + }, + { + "word": "moisson", + "article_with_word": "la moisson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harvest", + "example_sentence_native": "La moisson du blé a commencé plus tôt cette année.", + "example_sentence_english": "The wheat harvest started earlier this year.", + "pos": "noun", + "word_frequency": 12752 + }, + { + "word": "momentanément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "momentarily;temporarily", + "example_sentence_native": "Le service est momentanément interrompu.", + "example_sentence_english": "The service is momentarily interrupted.", + "pos": "adverb", + "word_frequency": 12753 + }, + { + "word": "musculation", + "article_with_word": "la musculation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bodybuilding;weight training", + "example_sentence_native": "Il fait de la musculation trois fois par semaine.", + "example_sentence_english": "He does weight training three times a week.", + "pos": "noun", + "word_frequency": 12754 + }, + { + "word": "mème", + "article_with_word": "le mème", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meme", + "example_sentence_native": "Ce mème est devenu viral sur les réseaux sociaux.", + "example_sentence_english": "This meme went viral on social media.", + "pos": "noun", + "word_frequency": 12755 + }, + { + "word": "négoce", + "article_with_word": "le négoce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trade;commerce", + "example_sentence_native": "Il travaille dans le négoce international.", + "example_sentence_english": "He works in international trade.", + "pos": "noun", + "word_frequency": 12757 + }, + { + "word": "oxydation", + "article_with_word": "l'oxydation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oxidation", + "example_sentence_native": "L'oxydation du fer provoque la rouille.", + "example_sentence_english": "The oxidation of iron causes rust.", + "pos": "noun", + "word_frequency": 12758 + }, + { + "word": "panoramique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panoramic", + "example_sentence_native": "La vue panoramique depuis le sommet de la montagne était incroyable.", + "example_sentence_english": "The panoramic view from the top of the mountain was incredible.", + "pos": "adjective", + "word_frequency": 12759 + }, + { + "word": "parchemin", + "article_with_word": "le parchemin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parchment", + "example_sentence_native": "Le vieux parchemin contenait des secrets oubliés.", + "example_sentence_english": "The old parchment contained forgotten secrets.", + "pos": "noun", + "word_frequency": 12760 + }, + { + "word": "parterre", + "article_with_word": "le parterre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flowerbed", + "example_sentence_native": "Le parterre de fleurs était magnifique au printemps.", + "example_sentence_english": "The flowerbed was magnificent in spring.", + "pos": "noun", + "word_frequency": 12761 + }, + { + "word": "phosphore", + "article_with_word": "le phosphore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phosphorus", + "example_sentence_native": "Le phosphore est un élément chimique essentiel à la vie.", + "example_sentence_english": "Phosphorus is a chemical element essential for life.", + "pos": "noun", + "word_frequency": 12762 + }, + { + "word": "piper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cheat (at cards);to pipe", + "example_sentence_native": "Il a été accusé de piper les dés.", + "example_sentence_english": "He was accused of cheating with the dice.", + "pos": "verb", + "word_frequency": 12763 + }, + { + "word": "playoffs", + "article_with_word": "les playoffs", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playoffs", + "example_sentence_native": "L'équipe s'est qualifiée pour les playoffs.", + "example_sentence_english": "The team qualified for the playoffs.", + "pos": "noun", + "word_frequency": 12764 + }, + { + "word": "plongeon", + "article_with_word": "le plongeon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dive;plunge", + "example_sentence_native": "Il a fait un beau plongeon dans la piscine.", + "example_sentence_english": "He made a beautiful dive into the pool.", + "pos": "noun", + "word_frequency": 12765 + }, + { + "word": "posteriori", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a posteriori", + "example_sentence_native": "Il est facile de juger a posteriori.", + "example_sentence_english": "It's easy to judge a posteriori.", + "pos": "adverb", + "word_frequency": 12766 + }, + { + "word": "postérieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "posterior;rear", + "example_sentence_native": "La partie postérieure du bâtiment est en rénovation.", + "example_sentence_english": "The posterior part of the building is under renovation.", + "pos": "adjective", + "word_frequency": 12767 + }, + { + "word": "pourboire", + "article_with_word": "le pourboire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tip;gratuity", + "example_sentence_native": "N'oubliez pas de laisser un pourboire au serveur.", + "example_sentence_english": "Don't forget to leave a tip for the waiter.", + "pos": "noun", + "word_frequency": 12768 + }, + { + "word": "prothèse", + "article_with_word": "la prothèse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosthesis", + "example_sentence_native": "Elle a dû porter une prothèse après son accident.", + "example_sentence_english": "She had to wear a prosthesis after her accident.", + "pos": "noun", + "word_frequency": 12769 + }, + { + "word": "proue", + "article_with_word": "la proue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prow;bow (of a ship)", + "example_sentence_native": "La proue du navire fendait les vagues.", + "example_sentence_english": "The prow of the ship cut through the waves.", + "pos": "noun", + "word_frequency": 12770 + }, + { + "word": "provençal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Provençal", + "example_sentence_native": "Nous avons dégusté des herbes provençales.", + "example_sentence_english": "We tasted Provençal herbs.", + "pos": "adjective", + "word_frequency": 12771 + }, + { + "word": "prématurément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prematurely", + "example_sentence_native": "Le projet a été abandonné prématurément.", + "example_sentence_english": "The project was abandoned prematurely.", + "pos": "adverb", + "word_frequency": 12772 + }, + { + "word": "prêcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preach", + "example_sentence_native": "Le pasteur a prêché un sermon inspirant.", + "example_sentence_english": "The pastor preached an inspiring sermon.", + "pos": "verb", + "word_frequency": 12773 + }, + { + "word": "radioactivité", + "article_with_word": "la radioactivité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radioactivity", + "example_sentence_native": "La radioactivité est utilisée en médecine nucléaire.", + "example_sentence_english": "Radioactivity is used in nuclear medicine.", + "pos": "noun", + "word_frequency": 12774 + }, + { + "word": "ranch", + "article_with_word": "le ranch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ranch", + "example_sentence_native": "Ils ont passé leurs vacances dans un ranch au Texas.", + "example_sentence_english": "They spent their vacation on a ranch in Texas.", + "pos": "noun", + "word_frequency": 12775 + }, + { + "word": "rayure", + "article_with_word": "la rayure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scratch;stripe", + "example_sentence_native": "Il y a une rayure sur la carrosserie de ma voiture.", + "example_sentence_english": "There's a scratch on the bodywork of my car.", + "pos": "noun", + "word_frequency": 12776 + }, + { + "word": "refermer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to close again;to reclose", + "example_sentence_native": "N'oubliez pas de refermer la porte à clé.", + "example_sentence_english": "Don't forget to close the door again with the key.", + "pos": "verb", + "word_frequency": 12777 + }, + { + "word": "relayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relay;to take over", + "example_sentence_native": "Les coureurs vont se relayer pour terminer la course.", + "example_sentence_english": "The runners will relay each other to finish the race.", + "pos": "verb", + "word_frequency": 12778 + }, + { + "word": "relèvement", + "article_with_word": "le relèvement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recovery;rise;bearing", + "example_sentence_native": "Le relèvement économique du pays est attendu.", + "example_sentence_english": "The economic recovery of the country is expected.", + "pos": "noun", + "word_frequency": 12779 + }, + { + "word": "repaire", + "article_with_word": "le repaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lair;den;hideout", + "example_sentence_native": "Le bandit s'est caché dans son repaire secret.", + "example_sentence_english": "The bandit hid in his secret lair.", + "pos": "noun", + "word_frequency": 12780 + }, + { + "word": "retourné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turned over;flipped", + "example_sentence_native": "La page était retournée, cachant le texte.", + "example_sentence_english": "The page was turned over, hiding the text.", + "pos": "adjective", + "word_frequency": 12781 + }, + { + "word": "rigoureusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigorously;strictly", + "example_sentence_native": "Les règles doivent être suivies rigoureusement.", + "example_sentence_english": "The rules must be followed rigorously.", + "pos": "adverb", + "word_frequency": 12782 + }, + { + "word": "roquette", + "article_with_word": "la roquette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocket (plant);arugula;rocket (weapon)", + "example_sentence_native": "J'ai ajouté de la roquette à ma salade.", + "example_sentence_english": "I added arugula to my salad.", + "pos": "noun", + "word_frequency": 12784 + }, + { + "word": "réconforter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comfort;to console", + "example_sentence_native": "Elle a essayé de le réconforter après la mauvaise nouvelle.", + "example_sentence_english": "She tried to comfort him after the bad news.", + "pos": "verb", + "word_frequency": 12785 + }, + { + "word": "régaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat;to feast;to delight", + "example_sentence_native": "Nous allons nous régaler avec ce délicieux repas.", + "example_sentence_english": "We are going to feast on this delicious meal.", + "pos": "verb", + "word_frequency": 12786 + }, + { + "word": "régularisation", + "article_with_word": "la régularisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regularization;adjustment", + "example_sentence_native": "La régularisation de sa situation administrative est en cours.", + "example_sentence_english": "The regularization of his administrative situation is ongoing.", + "pos": "noun", + "word_frequency": 12787 + }, + { + "word": "rénal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renal;kidney-related", + "example_sentence_native": "Il souffre d'une insuffisance rénale.", + "example_sentence_english": "He suffers from renal insufficiency.", + "pos": "adjective", + "word_frequency": 12788 + }, + { + "word": "résilience", + "article_with_word": "la résilience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resilience", + "example_sentence_native": "Sa résilience face à l'adversité est admirable.", + "example_sentence_english": "Her resilience in the face of adversity is admirable.", + "pos": "noun", + "word_frequency": 12789 + }, + { + "word": "sabot", + "article_with_word": "le sabot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoof;clog", + "example_sentence_native": "Le cheval a un sabot cassé.", + "example_sentence_english": "The horse has a broken hoof.", + "pos": "noun", + "word_frequency": 12790 + }, + { + "word": "scrupule", + "article_with_word": "le scrupule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scruple", + "example_sentence_native": "Il n'a eu aucun scrupule à mentir.", + "example_sentence_english": "He had no scruple about lying.", + "pos": "noun", + "word_frequency": 12794 + }, + { + "word": "semelle", + "article_with_word": "la semelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sole (of a shoe)", + "example_sentence_native": "La semelle de mes chaussures est usée.", + "example_sentence_english": "The sole of my shoes is worn out.", + "pos": "noun", + "word_frequency": 12796 + }, + { + "word": "servitude", + "article_with_word": "la servitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "servitude;slavery;easement", + "example_sentence_native": "La servitude est une condition de dépendance.", + "example_sentence_english": "Servitude is a condition of dependence.", + "pos": "noun", + "word_frequency": 12797 + }, + { + "word": "stagnation", + "article_with_word": "la stagnation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stagnation", + "example_sentence_native": "L'économie est en période de stagnation.", + "example_sentence_english": "The economy is in a period of stagnation.", + "pos": "noun", + "word_frequency": 12801 + }, + { + "word": "suspecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suspect", + "example_sentence_native": "La police suspecte un acte criminel.", + "example_sentence_english": "The police suspect a criminal act.", + "pos": "verb", + "word_frequency": 12802 + }, + { + "word": "symétrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symmetrical", + "example_sentence_native": "Le dessin est parfaitement symétrique.", + "example_sentence_english": "The drawing is perfectly symmetrical.", + "pos": "adjective", + "word_frequency": 12803 + }, + { + "word": "tacite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tacit;unspoken", + "example_sentence_native": "Il y a un accord tacite entre eux.", + "example_sentence_english": "There is a tacit agreement between them.", + "pos": "adjective", + "word_frequency": 12805 + }, + { + "word": "totalitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "totalitarian", + "example_sentence_native": "Le régime totalitaire contrôle tous les aspects de la vie.", + "example_sentence_english": "The totalitarian regime controls all aspects of life.", + "pos": "adjective", + "word_frequency": 12806 + }, + { + "word": "turbine", + "article_with_word": "la turbine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbine", + "example_sentence_native": "L'énergie éolienne utilise de grandes turbines.", + "example_sentence_english": "Wind energy uses large turbines.", + "pos": "noun", + "word_frequency": 12807 + }, + { + "word": "ultimatum", + "article_with_word": "l'ultimatum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimatum", + "example_sentence_native": "Le gouvernement a lancé un ultimatum aux rebelles.", + "example_sentence_english": "The government issued an ultimatum to the rebels.", + "pos": "noun", + "word_frequency": 12809 + }, + { + "word": "ut", + "article_with_word": "l'ut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "C (musical note)", + "example_sentence_native": "La première note de la gamme est l'ut.", + "example_sentence_english": "The first note of the scale is C.", + "pos": "noun", + "word_frequency": 12811 + }, + { + "word": "violoncelle", + "article_with_word": "le violoncelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cello", + "example_sentence_native": "Elle joue du violoncelle depuis son enfance.", + "example_sentence_english": "She has been playing the cello since her childhood.", + "pos": "noun", + "word_frequency": 12813 + }, + { + "word": "véridique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truthful;veridical", + "example_sentence_native": "Son témoignage était véridique et précis.", + "example_sentence_english": "His testimony was truthful and precise.", + "pos": "adjective", + "word_frequency": 12814 + }, + { + "word": "webcam", + "article_with_word": "la webcam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "webcam", + "example_sentence_native": "J'ai acheté une nouvelle webcam pour mes appels vidéo.", + "example_sentence_english": "I bought a new webcam for my video calls.", + "pos": "noun", + "word_frequency": 12815 + }, + { + "word": "éducateur", + "article_with_word": "l'éducateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educator;teacher", + "example_sentence_native": "L'éducateur aide les enfants à développer leurs compétences.", + "example_sentence_english": "The educator helps children develop their skills.", + "pos": "noun", + "word_frequency": 12820 + }, + { + "word": "égarer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mislead;to lose (one's way)", + "example_sentence_native": "Il a égaré ses clés dans la maison.", + "example_sentence_english": "He lost his keys in the house.", + "pos": "verb", + "word_frequency": 12821 + }, + { + "word": "énoncer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to state;to declare", + "example_sentence_native": "Le professeur a énoncé les règles clairement.", + "example_sentence_english": "The professor stated the rules clearly.", + "pos": "verb", + "word_frequency": 12822 + }, + { + "word": "étagère", + "article_with_word": "l'étagère", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shelf", + "example_sentence_native": "J'ai mis les livres sur l'étagère.", + "example_sentence_english": "I put the books on the shelf.", + "pos": "noun", + "word_frequency": 12823 + }, + { + "word": "étanche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterproof;airtight", + "example_sentence_native": "Cette montre est étanche jusqu'à 50 mètres.", + "example_sentence_english": "This watch is waterproof up to 50 meters.", + "pos": "adjective", + "word_frequency": 12824 + }, + { + "word": "admirateur", + "article_with_word": "l'admirateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admirer", + "example_sentence_native": "Elle a de nombreux admirateurs.", + "example_sentence_english": "She has many admirers.", + "pos": "noun", + "word_frequency": 12826 + }, + { + "word": "admissible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admissible;acceptable", + "example_sentence_native": "Sa candidature est admissible au concours.", + "example_sentence_english": "His application is admissible to the competition.", + "pos": "adjective", + "word_frequency": 12827 + }, + { + "word": "banderole", + "article_with_word": "la banderole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banner;streamer", + "example_sentence_native": "Les manifestants portaient des banderoles.", + "example_sentence_english": "The protesters carried banners.", + "pos": "noun", + "word_frequency": 12833 + }, + { + "word": "barricade", + "article_with_word": "la barricade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barricade", + "example_sentence_native": "Les rues étaient bloquées par des barricades.", + "example_sentence_english": "The streets were blocked by barricades.", + "pos": "noun", + "word_frequency": 12834 + }, + { + "word": "battement", + "article_with_word": "le battement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beat;flap;pulsation", + "example_sentence_native": "On entendait le battement de son cœur.", + "example_sentence_english": "We could hear the beat of his heart.", + "pos": "noun", + "word_frequency": 12835 + }, + { + "word": "bobine", + "article_with_word": "la bobine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spool;reel", + "example_sentence_native": "La bobine de fil est vide.", + "example_sentence_english": "The spool of thread is empty.", + "pos": "noun", + "word_frequency": 12840 + }, + { + "word": "boisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wooded;woody", + "example_sentence_native": "Nous avons marché dans une région boisée.", + "example_sentence_english": "We walked in a wooded area.", + "pos": "adjective", + "word_frequency": 12841 + }, + { + "word": "brasse", + "article_with_word": "la brasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breaststroke;fathom", + "example_sentence_native": "Elle nage la brasse très bien.", + "example_sentence_english": "She swims the breaststroke very well.", + "pos": "noun", + "word_frequency": 12842 + }, + { + "word": "cachemire", + "article_with_word": "le cachemire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cashmere", + "example_sentence_native": "J'ai acheté un pull en cachemire.", + "example_sentence_english": "I bought a cashmere sweater.", + "pos": "noun", + "word_frequency": 12845 + }, + { + "word": "camouflage", + "article_with_word": "le camouflage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camouflage", + "example_sentence_native": "Les soldats portaient des uniformes de camouflage.", + "example_sentence_english": "The soldiers wore camouflage uniforms.", + "pos": "noun", + "word_frequency": 12847 + }, + { + "word": "carcasse", + "article_with_word": "la carcasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carcass;frame", + "example_sentence_native": "On a trouvé la carcasse d'un animal dans la forêt.", + "example_sentence_english": "We found the carcass of an animal in the forest.", + "pos": "noun", + "word_frequency": 12848 + }, + { + "word": "carpe", + "article_with_word": "la carpe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carp", + "example_sentence_native": "Le pêcheur a attrapé une grosse carpe.", + "example_sentence_english": "The fisherman caught a big carp.", + "pos": "noun", + "word_frequency": 12849 + }, + { + "word": "chenille", + "article_with_word": "la chenille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caterpillar", + "example_sentence_native": "La chenille se transforme en papillon.", + "example_sentence_english": "The caterpillar transforms into a butterfly.", + "pos": "noun", + "word_frequency": 12852 + }, + { + "word": "clémentine", + "article_with_word": "la clémentine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clementine", + "example_sentence_native": "J'aime manger une clémentine après le repas.", + "example_sentence_english": "I like to eat a clementine after the meal.", + "pos": "noun", + "word_frequency": 12855 + }, + { + "word": "colonialisme", + "article_with_word": "le colonialisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonialism", + "example_sentence_native": "Le colonialisme a eu un impact profond sur de nombreuses cultures.", + "example_sentence_english": "Colonialism had a profound impact on many cultures.", + "pos": "noun", + "word_frequency": 12856 + }, + { + "word": "concerto", + "article_with_word": "le concerto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerto", + "example_sentence_native": "Le concerto pour piano de Rachmaninov est magnifique.", + "example_sentence_english": "Rachmaninov's piano concerto is magnificent.", + "pos": "noun", + "word_frequency": 12857 + }, + { + "word": "condo", + "article_with_word": "le condo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condo;condominium", + "example_sentence_native": "Ils ont acheté un nouveau condo en ville.", + "example_sentence_english": "They bought a new condo in the city.", + "pos": "noun", + "word_frequency": 12858 + }, + { + "word": "creative", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creative", + "example_sentence_native": "Elle est très créative dans son travail.", + "example_sentence_english": "She is very creative in her work.", + "pos": "adjective", + "word_frequency": 12859 + }, + { + "word": "cumuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to accumulate;to combine", + "example_sentence_native": "Il cumule plusieurs emplois pour joindre les deux bouts.", + "example_sentence_english": "He combines several jobs to make ends meet.", + "pos": "verb", + "word_frequency": 12861 + }, + { + "word": "datation", + "article_with_word": "la datation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dating (e.g.;carbon dating)", + "example_sentence_native": "La datation au carbone 14 est une méthode fiable.", + "example_sentence_english": "Carbon-14 dating is a reliable method.", + "pos": "noun", + "word_frequency": 12863 + }, + { + "word": "difference", + "article_with_word": "la différence", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difference", + "example_sentence_native": "Quelle est la différence entre ces deux mots ?", + "example_sentence_english": "What is the difference between these two words?", + "pos": "noun", + "word_frequency": 12866 + }, + { + "word": "douille", + "article_with_word": "la douille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socket;casing (bullet)", + "example_sentence_native": "Il a trouvé une douille de balle sur le sol.", + "example_sentence_english": "He found a bullet casing on the ground.", + "pos": "noun", + "word_frequency": 12867 + }, + { + "word": "drainage", + "article_with_word": "le drainage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drainage", + "example_sentence_native": "Le drainage du terrain est essentiel pour éviter les inondations.", + "example_sentence_english": "Land drainage is essential to prevent floods.", + "pos": "noun", + "word_frequency": 12868 + }, + { + "word": "dévaster", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devastate;to ravage", + "example_sentence_native": "L'ouragan a dévasté la côte.", + "example_sentence_english": "The hurricane devastated the coast.", + "pos": "verb", + "word_frequency": 12870 + }, + { + "word": "esquiver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dodge;to evade", + "example_sentence_native": "Il a réussi à esquiver le coup.", + "example_sentence_english": "He managed to dodge the blow.", + "pos": "verb", + "word_frequency": 12872 + }, + { + "word": "etranger", + "article_with_word": "l'étranger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "foreigner;stranger;abroad", + "example_sentence_native": "Il voyage souvent à l'étranger.", + "example_sentence_english": "He often travels abroad.", + "pos": "noun", + "word_frequency": 12873 + }, + { + "word": "falcon", + "article_with_word": "le faucon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "falcon", + "example_sentence_native": "Le faucon est un oiseau de proie rapide.", + "example_sentence_english": "The falcon is a fast bird of prey.", + "pos": "noun", + "word_frequency": 12874 + }, + { + "word": "fiesta", + "article_with_word": "la fiesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "party;celebration", + "example_sentence_native": "On a organisé une grande fiesta pour son anniversaire.", + "example_sentence_english": "We organized a big party for his birthday.", + "pos": "noun", + "word_frequency": 12876 + }, + { + "word": "figer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to freeze;to solidify", + "example_sentence_native": "Le froid a figé l'eau dans les tuyaux.", + "example_sentence_english": "The cold froze the water in the pipes.", + "pos": "verb", + "word_frequency": 12877 + }, + { + "word": "financial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial", + "example_sentence_native": "La situation financière de l'entreprise est stable.", + "example_sentence_english": "The company's financial situation is stable.", + "pos": "adjective", + "word_frequency": 12878 + }, + { + "word": "fouetter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whip;to lash", + "example_sentence_native": "Le vent fouettait son visage.", + "example_sentence_english": "The wind lashed his face.", + "pos": "verb", + "word_frequency": 12879 + }, + { + "word": "fourche", + "article_with_word": "la fourche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pitchfork;fork", + "example_sentence_native": "Le jardinier a utilisé une fourche pour retourner la terre.", + "example_sentence_english": "The gardener used a pitchfork to turn the soil.", + "pos": "noun", + "word_frequency": 12880 + }, + { + "word": "fourneau", + "article_with_word": "le fourneau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furnace;stove", + "example_sentence_native": "Le pain cuit dans un grand fourneau traditionnel.", + "example_sentence_english": "The bread bakes in a large traditional oven.", + "pos": "noun", + "word_frequency": 12881 + }, + { + "word": "frégate", + "article_with_word": "la frégate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frigate", + "example_sentence_native": "La frégate a patrouillé les eaux internationales.", + "example_sentence_english": "The frigate patrolled the international waters.", + "pos": "noun", + "word_frequency": 12882 + }, + { + "word": "féminité", + "article_with_word": "la féminité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "femininity", + "example_sentence_native": "Elle exprime sa féminité à travers son style vestimentaire.", + "example_sentence_english": "She expresses her femininity through her clothing style.", + "pos": "noun", + "word_frequency": 12883 + }, + { + "word": "galet", + "article_with_word": "le galet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pebble", + "example_sentence_native": "Nous avons trouvé de beaux galets sur la plage.", + "example_sentence_english": "We found beautiful pebbles on the beach.", + "pos": "noun", + "word_frequency": 12886 + }, + { + "word": "gateau", + "article_with_word": "le gâteau", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cake", + "example_sentence_native": "J'ai préparé un délicieux gâteau au chocolat.", + "example_sentence_english": "I prepared a delicious chocolate cake.", + "pos": "noun", + "word_frequency": 12887 + }, + { + "word": "gerbe", + "article_with_word": "la gerbe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sheaf;spray", + "example_sentence_native": "Une gerbe de fleurs a été déposée sur le monument.", + "example_sentence_english": "A spray of flowers was laid on the monument.", + "pos": "noun", + "word_frequency": 12888 + }, + { + "word": "gerber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stack;to vomit (slang)", + "example_sentence_native": "Il faut gerber les cartons dans l'entrepôt.", + "example_sentence_english": "We need to stack the boxes in the warehouse.", + "pos": "verb", + "word_frequency": 12889 + }, + { + "word": "glauque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gloomy;murky;dismal", + "example_sentence_native": "L'ambiance du film était particulièrement glauque.", + "example_sentence_english": "The atmosphere of the film was particularly gloomy.", + "pos": "adjective", + "word_frequency": 12890 + }, + { + "word": "gratis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free (of charge)", + "example_sentence_native": "L'entrée au musée est gratis le premier dimanche du mois.", + "example_sentence_english": "Admission to the museum is free on the first Sunday of the month.", + "pos": "adverb", + "word_frequency": 12891 + }, + { + "word": "généreusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generously", + "example_sentence_native": "Il a généreusement donné de son temps pour la cause.", + "example_sentence_english": "He generously gave his time for the cause.", + "pos": "adverb", + "word_frequency": 12892 + }, + { + "word": "incompétent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompetent", + "example_sentence_native": "Il a été jugé incompétent pour ce poste.", + "example_sentence_english": "He was deemed incompetent for this position.", + "pos": "adjective", + "word_frequency": 12899 + }, + { + "word": "insignifiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insignificant", + "example_sentence_native": "Son rôle dans l'affaire était insignifiant.", + "example_sentence_english": "His role in the matter was insignificant.", + "pos": "adjective", + "word_frequency": 12901 + }, + { + "word": "instituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to institute;to establish", + "example_sentence_native": "Le gouvernement a décidé d'instituer de nouvelles lois.", + "example_sentence_english": "The government decided to institute new laws.", + "pos": "verb", + "word_frequency": 12902 + }, + { + "word": "ironiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ironically", + "example_sentence_native": "Ironiquement, il a plu le jour de notre pique-nique.", + "example_sentence_english": "Ironically, it rained on the day of our picnic.", + "pos": "adverb", + "word_frequency": 12903 + }, + { + "word": "journalier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily;day laborer (adj)", + "example_sentence_native": "Il effectue un travail journalier à la ferme.", + "example_sentence_english": "He performs daily work on the farm.", + "pos": "adjective", + "word_frequency": 12905 + }, + { + "word": "laxisme", + "article_with_word": "le laxisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laxity;leniency", + "example_sentence_native": "Le laxisme des règles a conduit à des abus.", + "example_sentence_english": "The laxity of the rules led to abuses.", + "pos": "noun", + "word_frequency": 12907 + }, + { + "word": "lieue", + "article_with_word": "la lieue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "league (unit of distance)", + "example_sentence_native": "Vingt mille lieues sous les mers est un roman célèbre.", + "example_sentence_english": "Twenty Thousand Leagues Under the Seas is a famous novel.", + "pos": "noun", + "word_frequency": 12910 + }, + { + "word": "lilas", + "article_with_word": "le lilas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lilac", + "example_sentence_native": "Le jardin est rempli de lilas en fleurs.", + "example_sentence_english": "The garden is full of blooming lilacs.", + "pos": "noun", + "word_frequency": 12911 + }, + { + "word": "living", + "article_with_word": "le living", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living room", + "example_sentence_native": "Nous avons acheté un nouveau canapé pour le living.", + "example_sentence_english": "We bought a new sofa for the living room.", + "pos": "noun", + "word_frequency": 12912 + }, + { + "word": "longitude", + "article_with_word": "la longitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "longitude", + "example_sentence_native": "La longitude de Paris est de 2 degrés Est.", + "example_sentence_english": "The longitude of Paris is 2 degrees East.", + "pos": "noun", + "word_frequency": 12913 + }, + { + "word": "lézard", + "article_with_word": "le lézard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lizard", + "example_sentence_native": "Un lézard se chauffait au soleil sur le mur.", + "example_sentence_english": "A lizard was warming itself in the sun on the wall.", + "pos": "noun", + "word_frequency": 12916 + }, + { + "word": "mascarade", + "article_with_word": "la mascarade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masquerade;charade", + "example_sentence_native": "Toute cette histoire n'était qu'une mascarade.", + "example_sentence_english": "This whole story was just a charade.", + "pos": "noun", + "word_frequency": 12918 + }, + { + "word": "medecin", + "article_with_word": "le médecin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor", + "example_sentence_native": "J'ai rendez-vous chez le médecin demain.", + "example_sentence_english": "I have an appointment with the doctor tomorrow.", + "pos": "noun", + "word_frequency": 12919 + }, + { + "word": "monologue", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monologue", + "example_sentence_native": "L'acteur a livré un monologue puissant.", + "example_sentence_english": "The actor delivered a powerful monologue.", + "pos": "noun", + "word_frequency": 12921 + }, + { + "word": "médaillon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locket;medallion", + "example_sentence_native": "Elle portait un vieux médaillon autour du cou.", + "example_sentence_english": "She wore an old locket around her neck.", + "pos": "noun", + "word_frequency": 12923 + }, + { + "word": "médailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to award a medal to", + "example_sentence_native": "Ils vont médailler les meilleurs athlètes.", + "example_sentence_english": "They are going to award medals to the best athletes.", + "pos": "verb", + "word_frequency": 12924 + }, + { + "word": "méta", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meta", + "example_sentence_native": "Il faut analyser les méta-données pour comprendre le contexte.", + "example_sentence_english": "We need to analyze the meta-data to understand the context.", + "pos": "noun", + "word_frequency": 12925 + }, + { + "word": "nationalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationalization", + "example_sentence_native": "La nationalisation de l'entreprise a été un sujet de débat.", + "example_sentence_english": "The nationalization of the company was a subject of debate.", + "pos": "noun", + "word_frequency": 12926 + }, + { + "word": "noisette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hazelnut", + "example_sentence_native": "J'aime le chocolat aux noisettes.", + "example_sentence_english": "I like hazelnut chocolate.", + "pos": "noun", + "word_frequency": 12927 + }, + { + "word": "nourrisson", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infant;baby", + "example_sentence_native": "Le nourrisson dormait paisiblement dans son berceau.", + "example_sentence_english": "The infant was sleeping peacefully in its crib.", + "pos": "noun", + "word_frequency": 12928 + }, + { + "word": "oculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ocular", + "example_sentence_native": "L'examen oculaire est important pour la santé des yeux.", + "example_sentence_english": "The ocular examination is important for eye health.", + "pos": "adjective", + "word_frequency": 12930 + }, + { + "word": "ouïe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hearing (sense)", + "example_sentence_native": "Son ouïe est très fine.", + "example_sentence_english": "Her hearing is very sharp.", + "pos": "noun", + "word_frequency": 12931 + }, + { + "word": "paisiblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peacefully", + "example_sentence_native": "Le bébé dormait paisiblement.", + "example_sentence_english": "The baby was sleeping peacefully.", + "pos": "adverb", + "word_frequency": 12932 + }, + { + "word": "paludisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malaria", + "example_sentence_native": "Le paludisme est une maladie grave transmise par les moustiques.", + "example_sentence_english": "Malaria is a serious disease transmitted by mosquitoes.", + "pos": "noun", + "word_frequency": 12933 + }, + { + "word": "parer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ward off;to adorn", + "example_sentence_native": "Il a réussi à parer le coup.", + "example_sentence_english": "He managed to ward off the blow.", + "pos": "verb", + "word_frequency": 12935 + }, + { + "word": "paritaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equal;parity-based", + "example_sentence_native": "Ils ont mis en place une commission paritaire.", + "example_sentence_english": "They set up a parity-based committee.", + "pos": "adjective", + "word_frequency": 12936 + }, + { + "word": "patronal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "employer's;management's", + "example_sentence_native": "Les négociations patronales ont échoué.", + "example_sentence_english": "The employer-side negotiations failed.", + "pos": "adjective", + "word_frequency": 12937 + }, + { + "word": "pensionnaire", + "article_with_word": "un/une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boarder;resident", + "example_sentence_native": "Le nouveau pensionnaire s'est bien adapté à la maison de retraite.", + "example_sentence_english": "The new resident adapted well to the retirement home.", + "pos": "noun", + "word_frequency": 12938 + }, + { + "word": "percuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hit;to strike", + "example_sentence_native": "La voiture a percuté un arbre.", + "example_sentence_english": "The car hit a tree.", + "pos": "verb", + "word_frequency": 12939 + }, + { + "word": "perpétuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perpetuate", + "example_sentence_native": "Il faut éviter de perpétuer les stéréotypes.", + "example_sentence_english": "We must avoid perpetuating stereotypes.", + "pos": "verb", + "word_frequency": 12940 + }, + { + "word": "phoque", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seal (animal)", + "example_sentence_native": "On a vu un phoque sur la plage.", + "example_sentence_english": "We saw a seal on the beach.", + "pos": "noun", + "word_frequency": 12941 + }, + { + "word": "prompt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prompt;quick", + "example_sentence_native": "Il a donné une réponse prompte.", + "example_sentence_english": "He gave a prompt answer.", + "pos": "adjective", + "word_frequency": 12942 + }, + { + "word": "prudemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carefully;cautiously", + "example_sentence_native": "Il a conduit prudemment sur la route verglacée.", + "example_sentence_english": "He drove carefully on the icy road.", + "pos": "adverb", + "word_frequency": 12943 + }, + { + "word": "prélat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prelate", + "example_sentence_native": "Le prélat a prononcé un discours inspirant.", + "example_sentence_english": "The prelate delivered an inspiring speech.", + "pos": "noun", + "word_frequency": 12944 + }, + { + "word": "périodiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "periodically", + "example_sentence_native": "Il vérifie périodiquement l'état de son moteur.", + "example_sentence_english": "He periodically checks the condition of his engine.", + "pos": "adverb", + "word_frequency": 12945 + }, + { + "word": "raccrocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hang up (phone)", + "example_sentence_native": "N'oublie pas de raccrocher après l'appel.", + "example_sentence_english": "Don't forget to hang up after the call.", + "pos": "verb", + "word_frequency": 12947 + }, + { + "word": "raclette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raclette (dish;cheese)", + "example_sentence_native": "Nous avons mangé une délicieuse raclette hier soir.", + "example_sentence_english": "We ate a delicious raclette last night.", + "pos": "noun", + "word_frequency": 12948 + }, + { + "word": "radiateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "radiator", + "example_sentence_native": "Le radiateur est chaud en hiver.", + "example_sentence_english": "The radiator is hot in winter.", + "pos": "noun", + "word_frequency": 12949 + }, + { + "word": "relativiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put into perspective", + "example_sentence_native": "Il faut apprendre à relativiser les problèmes.", + "example_sentence_english": "One must learn to put problems into perspective.", + "pos": "verb", + "word_frequency": 12950 + }, + { + "word": "richards", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rich people", + "example_sentence_native": "Les richards vivent souvent dans de grandes maisons.", + "example_sentence_english": "Rich people often live in big houses.", + "pos": "noun", + "word_frequency": 12951 + }, + { + "word": "rogue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "roe (fish eggs)", + "example_sentence_native": "La rogue de poisson est un mets délicat.", + "example_sentence_english": "Fish roe is a delicacy.", + "pos": "noun", + "word_frequency": 12953 + }, + { + "word": "royaliste", + "article_with_word": "un/une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royalist", + "example_sentence_native": "Il est un fervent royaliste.", + "example_sentence_english": "He is a fervent royalist.", + "pos": "noun", + "word_frequency": 12954 + }, + { + "word": "récréation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recess;break", + "example_sentence_native": "Les enfants jouent dans la cour pendant la récréation.", + "example_sentence_english": "The children play in the yard during recess.", + "pos": "noun", + "word_frequency": 12955 + }, + { + "word": "sciemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "knowingly;deliberately", + "example_sentence_native": "Il a sciemment ignoré les avertissements.", + "example_sentence_english": "He knowingly ignored the warnings.", + "pos": "adverb", + "word_frequency": 12957 + }, + { + "word": "silex", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flint", + "example_sentence_native": "Les hommes préhistoriques utilisaient le silex pour fabriquer des outils.", + "example_sentence_english": "Prehistoric humans used flint to make tools.", + "pos": "noun", + "word_frequency": 12959 + }, + { + "word": "sophistiqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sophisticated", + "example_sentence_native": "Elle a un goût très sophistiqué pour l'art.", + "example_sentence_english": "She has a very sophisticated taste in art.", + "pos": "adjective", + "word_frequency": 12961 + }, + { + "word": "stratège", + "article_with_word": "le stratège", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategist", + "example_sentence_native": "C'est un excellent stratège militaire.", + "example_sentence_english": "He is an excellent military strategist.", + "pos": "noun", + "word_frequency": 12962 + }, + { + "word": "surnaturel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supernatural", + "example_sentence_native": "Ils croient aux phénomènes surnaturels.", + "example_sentence_english": "They believe in supernatural phenomena.", + "pos": "adjective", + "word_frequency": 12963 + }, + { + "word": "sushi", + "article_with_word": "le sushi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sushi", + "example_sentence_native": "Nous avons mangé des sushis pour le dîner.", + "example_sentence_english": "We ate sushi for dinner.", + "pos": "noun", + "word_frequency": 12964 + }, + { + "word": "théologien", + "article_with_word": "le théologien", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theologian", + "example_sentence_native": "Il est devenu un théologien respecté.", + "example_sentence_english": "He became a respected theologian.", + "pos": "noun", + "word_frequency": 12966 + }, + { + "word": "touchant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touching;moving", + "example_sentence_native": "C'était un film très touchant.", + "example_sentence_english": "It was a very touching film.", + "pos": "adjective", + "word_frequency": 12967 + }, + { + "word": "trader", + "article_with_word": "le trader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trader", + "example_sentence_native": "Le trader a réalisé un gros profit.", + "example_sentence_english": "The trader made a large profit.", + "pos": "noun", + "word_frequency": 12968 + }, + { + "word": "transat", + "article_with_word": "le transat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deckchair", + "example_sentence_native": "J'ai lu un livre sur le transat au bord de la piscine.", + "example_sentence_english": "I read a book on the deckchair by the pool.", + "pos": "noun", + "word_frequency": 12969 + }, + { + "word": "tulle", + "article_with_word": "le tulle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tulle", + "example_sentence_native": "La robe de mariée était faite de tulle délicat.", + "example_sentence_english": "The wedding dress was made of delicate tulle.", + "pos": "noun", + "word_frequency": 12970 + }, + { + "word": "tweeter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tweet", + "example_sentence_native": "Il a tweeté la nouvelle immédiatement.", + "example_sentence_english": "He tweeted the news immediately.", + "pos": "verb", + "word_frequency": 12971 + }, + { + "word": "vanité", + "article_with_word": "la vanité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vanity", + "example_sentence_native": "Sa vanité l'empêche de voir ses propres défauts.", + "example_sentence_english": "His vanity prevents him from seeing his own flaws.", + "pos": "noun", + "word_frequency": 12976 + }, + { + "word": "viaduc", + "article_with_word": "le viaduc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viaduct", + "example_sentence_native": "Le train a traversé un long viaduc.", + "example_sentence_english": "The train crossed a long viaduct.", + "pos": "noun", + "word_frequency": 12977 + }, + { + "word": "vigile", + "article_with_word": "le vigile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "security guard", + "example_sentence_native": "Le vigile a ouvert la porte.", + "example_sentence_english": "The security guard opened the door.", + "pos": "noun", + "word_frequency": 12978 + }, + { + "word": "viril", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virile;manly", + "example_sentence_native": "Il a une allure très virile.", + "example_sentence_english": "He has a very virile appearance.", + "pos": "adjective", + "word_frequency": 12979 + }, + { + "word": "visionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to view;to watch", + "example_sentence_native": "Nous allons visionner le film ce soir.", + "example_sentence_english": "We are going to watch the movie tonight.", + "pos": "verb", + "word_frequency": 12980 + }, + { + "word": "viticole", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wine-growing;viticultural", + "example_sentence_native": "La région est connue pour son activité viticole.", + "example_sentence_english": "The region is known for its wine-growing activity.", + "pos": "adjective", + "word_frequency": 12981 + }, + { + "word": "véracité", + "article_with_word": "la véracité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "veracity;truthfulness", + "example_sentence_native": "Il a mis en doute la véracité de son témoignage.", + "example_sentence_english": "He questioned the veracity of his testimony.", + "pos": "noun", + "word_frequency": 12982 + }, + { + "word": "écureuil", + "article_with_word": "l'écureuil", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "squirrel", + "example_sentence_native": "Un écureuil a grimpé à l'arbre.", + "example_sentence_english": "A squirrel climbed the tree.", + "pos": "noun", + "word_frequency": 12983 + }, + { + "word": "émirat", + "article_with_word": "l'émirat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emirate", + "example_sentence_native": "Dubaï est un émirat des Émirats arabes unis.", + "example_sentence_english": "Dubai is an emirate of the United Arab Emirates.", + "pos": "noun", + "word_frequency": 12984 + }, + { + "word": "étoilé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starry;star-studded", + "example_sentence_native": "Nous avons admiré le ciel étoilé.", + "example_sentence_english": "We admired the starry sky.", + "pos": "adjective", + "word_frequency": 12985 + }, + { + "word": "étui", + "article_with_word": "l'étui", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "case;cover", + "example_sentence_native": "J'ai mis mes lunettes dans leur étui.", + "example_sentence_english": "I put my glasses in their case.", + "pos": "noun", + "word_frequency": 12986 + }, + { + "word": "adéquation", + "article_with_word": "l'adéquation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adequacy;suitability", + "example_sentence_native": "Il faut vérifier l'adéquation des moyens aux objectifs.", + "example_sentence_english": "We must check the adequacy of the means to the objectives.", + "pos": "noun", + "word_frequency": 12989 + }, + { + "word": "analogique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analog", + "example_sentence_native": "Cette montre a un affichage analogique.", + "example_sentence_english": "This watch has an analog display.", + "pos": "adjective", + "word_frequency": 12992 + }, + { + "word": "appoint", + "article_with_word": "l'appoint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exact change;supplementary", + "example_sentence_native": "J'ai fait l'appoint pour le bus.", + "example_sentence_english": "I made the exact change for the bus.", + "pos": "noun", + "word_frequency": 12994 + }, + { + "word": "athéisme", + "article_with_word": "l'athéisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atheism", + "example_sentence_native": "L'athéisme est la non-croyance en l'existence de Dieu.", + "example_sentence_english": "Atheism is the non-belief in the existence of God.", + "pos": "noun", + "word_frequency": 12995 + }, + { + "word": "bave", + "article_with_word": "la bave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drool;slime", + "example_sentence_native": "L'escargot laissait une trace de bave.", + "example_sentence_english": "The snail left a trail of slime.", + "pos": "noun", + "word_frequency": 12998 + }, + { + "word": "canonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canonical", + "example_sentence_native": "C'est la version canonique du texte.", + "example_sentence_english": "This is the canonical version of the text.", + "pos": "adjective", + "word_frequency": 13006 + }, + { + "word": "catéchisme", + "article_with_word": "le catéchisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catechism", + "example_sentence_native": "Les enfants étudient le catéchisme pour leur première communion.", + "example_sentence_english": "The children study the catechism for their first communion.", + "pos": "noun", + "word_frequency": 13007 + }, + { + "word": "centralisation", + "article_with_word": "la centralisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centralization", + "example_sentence_native": "La centralisation du pouvoir est un sujet de débat.", + "example_sentence_english": "The centralization of power is a subject of debate.", + "pos": "noun", + "word_frequency": 13008 + }, + { + "word": "collatéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collateral", + "example_sentence_native": "Les dommages collatéraux étaient importants.", + "example_sentence_english": "The collateral damage was significant.", + "pos": "adjective", + "word_frequency": 13013 + }, + { + "word": "devin", + "article_with_word": "le devin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soothsayer;diviner", + "example_sentence_native": "Le devin a prédit l'avenir du royaume.", + "example_sentence_english": "The soothsayer predicted the future of the kingdom.", + "pos": "noun", + "word_frequency": 13018 + }, + { + "word": "dissident", + "article_with_word": "le dissident", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissident", + "example_sentence_native": "Le dissident a été emprisonné pour ses opinions.", + "example_sentence_english": "The dissident was imprisoned for his opinions.", + "pos": "noun", + "word_frequency": 13021 + }, + { + "word": "domino", + "article_with_word": "le domino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "domino", + "example_sentence_native": "Nous avons joué aux dominos toute la soirée.", + "example_sentence_english": "We played dominoes all evening.", + "pos": "noun", + "word_frequency": 13022 + }, + { + "word": "dysfonctionnement", + "article_with_word": "le dysfonctionnement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malfunction;dysfunction", + "example_sentence_native": "Un dysfonctionnement du système a causé l'arrêt.", + "example_sentence_english": "A system malfunction caused the shutdown.", + "pos": "noun", + "word_frequency": 13027 + }, + { + "word": "désavantage", + "article_with_word": "le désavantage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disadvantage", + "example_sentence_native": "Son manque d'expérience est un désavantage.", + "example_sentence_english": "His lack of experience is a disadvantage.", + "pos": "noun", + "word_frequency": 13028 + }, + { + "word": "enduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coat;to spread;to plaster", + "example_sentence_native": "Il faut enduire le mur avant de peindre.", + "example_sentence_english": "You need to coat the wall before painting.", + "pos": "verb", + "word_frequency": 13029 + }, + { + "word": "entorse", + "article_with_word": "une entorse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprain;breach", + "example_sentence_native": "Elle s'est fait une entorse à la cheville.", + "example_sentence_english": "She sprained her ankle.", + "pos": "noun", + "word_frequency": 13030 + }, + { + "word": "envahisseur", + "article_with_word": "l'envahisseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invader", + "example_sentence_native": "Les envahisseurs ont été repoussés.", + "example_sentence_english": "The invaders were repelled.", + "pos": "noun", + "word_frequency": 13031 + }, + { + "word": "estampe", + "article_with_word": "l'estampe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "print;engraving", + "example_sentence_native": "Cette estampe japonaise est très ancienne.", + "example_sentence_english": "This Japanese print is very old.", + "pos": "noun", + "word_frequency": 13032 + }, + { + "word": "fichu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruined;done for;damn (informal)", + "example_sentence_native": "Mon téléphone est fichu, il est tombé dans l'eau.", + "example_sentence_english": "My phone is ruined, it fell in the water.", + "pos": "adjective", + "word_frequency": 13034 + }, + { + "word": "flocon", + "article_with_word": "le flocon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flake", + "example_sentence_native": "Un flocon de neige est tombé sur ma main.", + "example_sentence_english": "A snowflake fell on my hand.", + "pos": "noun", + "word_frequency": 13036 + }, + { + "word": "gamer", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gamer", + "example_sentence_native": "Le gamer a passé la nuit à jouer à son jeu préféré.", + "example_sentence_english": "The gamer spent the night playing his favorite game.", + "pos": "noun", + "word_frequency": 13040 + }, + { + "word": "graffiti", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graffiti", + "example_sentence_native": "Le mur était couvert de graffitis colorés.", + "example_sentence_english": "The wall was covered with colorful graffiti.", + "pos": "noun", + "word_frequency": 13043 + }, + { + "word": "gratin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gratin (dish)", + "example_sentence_native": "J'ai préparé un délicieux gratin dauphinois pour le dîner.", + "example_sentence_english": "I prepared a delicious potato gratin for dinner.", + "pos": "noun", + "word_frequency": 13044 + }, + { + "word": "gravé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engraved;etched", + "example_sentence_native": "Son nom est gravé sur la pierre tombale.", + "example_sentence_english": "His name is engraved on the tombstone.", + "pos": "adjective", + "word_frequency": 13045 + }, + { + "word": "hamburger", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hamburger", + "example_sentence_native": "J'ai commandé un hamburger avec des frites pour le déjeuner.", + "example_sentence_english": "I ordered a hamburger with fries for lunch.", + "pos": "noun", + "word_frequency": 13050 + }, + { + "word": "hanté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "haunted", + "example_sentence_native": "C'est une vieille maison hantée par des esprits.", + "example_sentence_english": "It's an old house haunted by spirits.", + "pos": "adjective", + "word_frequency": 13051 + }, + { + "word": "héro", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hero", + "example_sentence_native": "Le héros a sauvé la ville d'une catastrophe imminente.", + "example_sentence_english": "The hero saved the city from an imminent catastrophe.", + "pos": "noun", + "word_frequency": 13054 + }, + { + "word": "imposture", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposture;deception", + "example_sentence_native": "Toute cette histoire n'était qu'une imposture bien orchestrée.", + "example_sentence_english": "This whole story was nothing but a well-orchestrated imposture.", + "pos": "noun", + "word_frequency": 13055 + }, + { + "word": "inclus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included", + "example_sentence_native": "Le petit déjeuner est inclus dans le prix de la chambre.", + "example_sentence_english": "Breakfast is included in the room price.", + "pos": "adjective", + "word_frequency": 13056 + }, + { + "word": "inconcevable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inconceivable", + "example_sentence_native": "C'est une idée totalement inconcevable pour la plupart des gens.", + "example_sentence_english": "It's a totally inconceivable idea for most people.", + "pos": "adjective", + "word_frequency": 13057 + }, + { + "word": "infiltrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to infiltrate", + "example_sentence_native": "L'espion a réussi à infiltrer l'organisation secrète.", + "example_sentence_english": "The spy managed to infiltrate the secret organization.", + "pos": "verb", + "word_frequency": 13058 + }, + { + "word": "ingénieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingenious", + "example_sentence_native": "Il a trouvé une solution très ingénieuse à ce problème complexe.", + "example_sentence_english": "He found a very ingenious solution to this complex problem.", + "pos": "adjective", + "word_frequency": 13059 + }, + { + "word": "injecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injected", + "example_sentence_native": "Le vaccin a été injecté dans le bras du patient.", + "example_sentence_english": "The vaccine was injected into the patient's arm.", + "pos": "adjective", + "word_frequency": 13060 + }, + { + "word": "insistent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insistent;persistent", + "example_sentence_native": "Il a été très insistant pour obtenir une réponse rapide.", + "example_sentence_english": "He was very insistent on getting a quick answer.", + "pos": "adjective", + "word_frequency": 13061 + }, + { + "word": "insoumis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unsubmissive;rebellious", + "example_sentence_native": "C'est un esprit libre et insoumis qui refuse les conventions.", + "example_sentence_english": "He is a free and unsubmissive spirit who rejects conventions.", + "pos": "adjective", + "word_frequency": 13062 + }, + { + "word": "largué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dumped;left behind;out of touch", + "example_sentence_native": "Elle s'est sentie complètement larguée après la rupture.", + "example_sentence_english": "She felt completely dumped after the breakup.", + "pos": "adjective", + "word_frequency": 13068 + }, + { + "word": "lillois", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person from Lille;Lillois", + "example_sentence_native": "C'est un Lillois, il est très fier de sa ville.", + "example_sentence_english": "He's a Lillois, he's very proud of his city.", + "pos": "noun", + "word_frequency": 13070 + }, + { + "word": "liqueur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liqueur", + "example_sentence_native": "Il a offert une liqueur aux herbes après le dîner.", + "example_sentence_english": "He offered an herbal liqueur after dinner.", + "pos": "noun", + "word_frequency": 13071 + }, + { + "word": "liégeois", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person from Liège;Liégeois", + "example_sentence_native": "C'est un Liégeois, il connaît bien la ville de Liège.", + "example_sentence_english": "He's a Liégeois, he knows the city of Liège well.", + "pos": "noun", + "word_frequency": 13072 + }, + { + "word": "microscope", + "article_with_word": "le microscope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microscope", + "example_sentence_native": "Nous avons observé les cellules au microscope.", + "example_sentence_english": "We observed the cells under the microscope.", + "pos": "noun", + "word_frequency": 13083 + }, + { + "word": "militairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militarily", + "example_sentence_native": "La situation est militairement stable.", + "example_sentence_english": "The situation is militarily stable.", + "pos": "adverb", + "word_frequency": 13084 + }, + { + "word": "morphine", + "article_with_word": "la morphine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morphine", + "example_sentence_native": "La morphine est un puissant analgésique.", + "example_sentence_english": "Morphine is a powerful analgesic.", + "pos": "noun", + "word_frequency": 13088 + }, + { + "word": "morsure", + "article_with_word": "la morsure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite (wound);sting", + "example_sentence_native": "Il a reçu une morsure de chien.", + "example_sentence_english": "He received a dog bite.", + "pos": "noun", + "word_frequency": 13089 + }, + { + "word": "mortellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortally;fatally", + "example_sentence_native": "Il a été mortellement blessé dans l'accident.", + "example_sentence_english": "He was mortally wounded in the accident.", + "pos": "adverb", + "word_frequency": 13090 + }, + { + "word": "nouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie;to knot", + "example_sentence_native": "Elle a noué ses lacets avant de partir.", + "example_sentence_english": "She tied her shoelaces before leaving.", + "pos": "verb", + "word_frequency": 13092 + }, + { + "word": "orienté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oriented;directed", + "example_sentence_native": "Le bâtiment est orienté vers le sud.", + "example_sentence_english": "The building is oriented towards the south.", + "pos": "adjective", + "word_frequency": 13093 + }, + { + "word": "parure", + "article_with_word": "la parure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set (of jewelry);adornment", + "example_sentence_native": "Elle portait une magnifique parure de diamants.", + "example_sentence_english": "She wore a magnificent diamond set.", + "pos": "noun", + "word_frequency": 13097 + }, + { + "word": "perdurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to last;to persist", + "example_sentence_native": "Cette tradition continue de perdurer à travers les générations.", + "example_sentence_english": "This tradition continues to persist through generations.", + "pos": "verb", + "word_frequency": 13098 + }, + { + "word": "perroquet", + "article_with_word": "le perroquet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parrot", + "example_sentence_native": "Le perroquet peut imiter la voix humaine.", + "example_sentence_english": "The parrot can imitate the human voice.", + "pos": "noun", + "word_frequency": 13099 + }, + { + "word": "phonétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phonetic", + "example_sentence_native": "L'alphabet phonétique international est très utile pour apprendre les langues.", + "example_sentence_english": "The International Phonetic Alphabet is very useful for learning languages.", + "pos": "adjective", + "word_frequency": 13100 + }, + { + "word": "ponctuation", + "article_with_word": "la ponctuation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuation", + "example_sentence_native": "La ponctuation est essentielle pour la clarté d'un texte.", + "example_sentence_english": "Punctuation is essential for text clarity.", + "pos": "noun", + "word_frequency": 13102 + }, + { + "word": "poterie", + "article_with_word": "la poterie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pottery", + "example_sentence_native": "Elle aime faire de la poterie pendant son temps libre.", + "example_sentence_english": "She likes to do pottery in her free time.", + "pos": "noun", + "word_frequency": 13103 + }, + { + "word": "poupe", + "article_with_word": "la poupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stern (of a boat)", + "example_sentence_native": "Le drapeau flottait à la poupe du navire.", + "example_sentence_english": "The flag was flying at the stern of the ship.", + "pos": "noun", + "word_frequency": 13104 + }, + { + "word": "proportionnellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proportionally", + "example_sentence_native": "Les salaires ont augmenté proportionnellement à l'inflation.", + "example_sentence_english": "Salaries increased proportionally to inflation.", + "pos": "adverb", + "word_frequency": 13105 + }, + { + "word": "prospection", + "article_with_word": "la prospection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prospecting;exploration", + "example_sentence_native": "La prospection pétrolière est une activité coûteuse.", + "example_sentence_english": "Oil prospecting is an expensive activity.", + "pos": "noun", + "word_frequency": 13106 + }, + { + "word": "purger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to purge;to cleanse;to serve (a sentence)", + "example_sentence_native": "Il doit purger sa peine de prison.", + "example_sentence_english": "He must serve his prison sentence.", + "pos": "verb", + "word_frequency": 13109 + }, + { + "word": "quotient", + "article_with_word": "le quotient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quotient;ratio", + "example_sentence_native": "Le quotient intellectuel est une mesure de l'intelligence.", + "example_sentence_english": "The intelligence quotient is a measure of intelligence.", + "pos": "noun", + "word_frequency": 13110 + }, + { + "word": "redevenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "become again;returned to (a state)", + "example_sentence_native": "Il est redevenu calme après la tempête.", + "example_sentence_english": "He became calm again after the storm.", + "pos": "adjective", + "word_frequency": 13113 + }, + { + "word": "relancé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relaunched;revived", + "example_sentence_native": "Le projet a été relancé avec succès.", + "example_sentence_english": "The project was successfully relaunched.", + "pos": "adjective", + "word_frequency": 13114 + }, + { + "word": "relayé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relayed;passed on", + "example_sentence_native": "L'information a été relayée par les médias.", + "example_sentence_english": "The information was relayed by the media.", + "pos": "adjective", + "word_frequency": 13115 + }, + { + "word": "renoncement", + "article_with_word": "le renoncement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renunciation;abandonment", + "example_sentence_native": "Son renoncement au pouvoir a surpris tout le monde.", + "example_sentence_english": "His renunciation of power surprised everyone.", + "pos": "noun", + "word_frequency": 13116 + }, + { + "word": "replier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fold back;to withdraw", + "example_sentence_native": "Il a dû replier ses troupes face à l'ennemi.", + "example_sentence_english": "He had to withdraw his troops in front of the enemy.", + "pos": "verb", + "word_frequency": 13117 + }, + { + "word": "restaurateur", + "article_with_word": "le restaurateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restaurant owner;restorer (of art)", + "example_sentence_native": "Le restaurateur a préparé un excellent repas.", + "example_sentence_english": "The restaurant owner prepared an excellent meal.", + "pos": "noun", + "word_frequency": 13118 + }, + { + "word": "rouage", + "article_with_word": "le rouage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gear;cog;mechanism", + "example_sentence_native": "Chaque rouage est essentiel au bon fonctionnement de la machine.", + "example_sentence_english": "Every gear is essential for the machine's proper functioning.", + "pos": "noun", + "word_frequency": 13122 + }, + { + "word": "réactivité", + "article_with_word": "la réactivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reactivity;responsiveness", + "example_sentence_native": "La réactivité de l'équipe a été impressionnante face à l'urgence.", + "example_sentence_english": "The team's responsiveness was impressive in the face of the emergency.", + "pos": "noun", + "word_frequency": 13123 + }, + { + "word": "réanimation", + "article_with_word": "la réanimation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resuscitation;intensive care", + "example_sentence_native": "Le patient a été transféré en service de réanimation.", + "example_sentence_english": "The patient was transferred to the intensive care unit.", + "pos": "noun", + "word_frequency": 13124 + }, + { + "word": "réclusion", + "article_with_word": "la réclusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprisonment;solitary confinement", + "example_sentence_native": "Il a été condamné à la réclusion criminelle à perpétuité.", + "example_sentence_english": "He was sentenced to life imprisonment.", + "pos": "noun", + "word_frequency": 13125 + }, + { + "word": "réinsertion", + "article_with_word": "la réinsertion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reintegration;rehabilitation", + "example_sentence_native": "Le programme vise la réinsertion sociale des anciens détenus.", + "example_sentence_english": "The program aims at the social reintegration of former inmates.", + "pos": "noun", + "word_frequency": 13126 + }, + { + "word": "sadique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sadistic", + "example_sentence_native": "Son comportement sadique a choqué tout le monde.", + "example_sentence_english": "His sadistic behavior shocked everyone.", + "pos": "adjective", + "word_frequency": 13127 + }, + { + "word": "scotch", + "article_with_word": "le scotch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scotch tape;Scotch whisky", + "example_sentence_native": "Peux-tu me passer le rouleau de scotch, s'il te plaît ?", + "example_sentence_english": "Can you pass me the roll of scotch tape, please?", + "pos": "noun", + "word_frequency": 13130 + }, + { + "word": "siffler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to whistle", + "example_sentence_native": "Il aime siffler en travaillant.", + "example_sentence_english": "He likes to whistle while working.", + "pos": "verb", + "word_frequency": 13132 + }, + { + "word": "signifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signified;meaning (linguistics)", + "example_sentence_native": "Le document signifié a été remis au destinataire.", + "example_sentence_english": "The signified document was delivered to the recipient.", + "pos": "adjective", + "word_frequency": 13133 + }, + { + "word": "smash", + "article_with_word": "le smash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smash (in sports)", + "example_sentence_native": "Il a réussi un smash puissant qui a laissé son adversaire sans voix.", + "example_sentence_english": "He hit a powerful smash that left his opponent speechless.", + "pos": "noun", + "word_frequency": 13135 + }, + { + "word": "substantiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substantial", + "example_sentence_native": "Il a fait des progrès substantiels dans son apprentissage.", + "example_sentence_english": "He made substantial progress in his learning.", + "pos": "adjective", + "word_frequency": 13140 + }, + { + "word": "supplice", + "article_with_word": "le supplice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torture;torment;ordeal", + "example_sentence_native": "Attendre les résultats fut un véritable supplice.", + "example_sentence_english": "Waiting for the results was a real torment.", + "pos": "noun", + "word_frequency": 13142 + }, + { + "word": "suture", + "article_with_word": "la suture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suture;stitch", + "example_sentence_native": "Le chirurgien a fait une suture parfaite.", + "example_sentence_english": "The surgeon made a perfect suture.", + "pos": "noun", + "word_frequency": 13143 + }, + { + "word": "sévir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to crack down;to rage (disease;epidemic)", + "example_sentence_native": "Le gouvernement a promis de sévir contre la fraude fiscale.", + "example_sentence_english": "The government promised to crack down on tax fraud.", + "pos": "verb", + "word_frequency": 13145 + }, + { + "word": "sévérité", + "article_with_word": "la sévérité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severity;strictness", + "example_sentence_native": "La sévérité de la peine a surpris tout le monde.", + "example_sentence_english": "The severity of the sentence surprised everyone.", + "pos": "noun", + "word_frequency": 13146 + }, + { + "word": "testostérone", + "article_with_word": "la testostérone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testosterone", + "example_sentence_native": "La testostérone est une hormone importante.", + "example_sentence_english": "Testosterone is an important hormone.", + "pos": "noun", + "word_frequency": 13148 + }, + { + "word": "testé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tested", + "example_sentence_native": "Le nouveau logiciel a été testé et approuvé.", + "example_sentence_english": "The new software has been tested and approved.", + "pos": "adjective", + "word_frequency": 13149 + }, + { + "word": "thoracique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thoracic", + "example_sentence_native": "Il a subi une intervention chirurgicale thoracique.", + "example_sentence_english": "He underwent thoracic surgery.", + "pos": "adjective", + "word_frequency": 13150 + }, + { + "word": "torchon", + "article_with_word": "le torchon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dishcloth;rag", + "example_sentence_native": "Prends un torchon propre pour essuyer la table.", + "example_sentence_english": "Take a clean dishcloth to wipe the table.", + "pos": "noun", + "word_frequency": 13152 + }, + { + "word": "torturer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torture", + "example_sentence_native": "Il est interdit de torturer des prisonniers.", + "example_sentence_english": "It is forbidden to torture prisoners.", + "pos": "verb", + "word_frequency": 13153 + }, + { + "word": "training", + "article_with_word": "le training", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training (sports;professional)", + "example_sentence_native": "Il suit un training intensif pour la compétition.", + "example_sentence_english": "He is undergoing intensive training for the competition.", + "pos": "noun", + "word_frequency": 13156 + }, + { + "word": "triathlon", + "article_with_word": "le triathlon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triathlon", + "example_sentence_native": "Elle s'entraîne pour son premier triathlon.", + "example_sentence_english": "She is training for her first triathlon.", + "pos": "noun", + "word_frequency": 13157 + }, + { + "word": "téméraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reckless;daring", + "example_sentence_native": "Son comportement téméraire l'a mis en danger.", + "example_sentence_english": "His reckless behavior put him in danger.", + "pos": "adjective", + "word_frequency": 13160 + }, + { + "word": "visuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visually", + "example_sentence_native": "Le film était visuellement impressionnant.", + "example_sentence_english": "The film was visually impressive.", + "pos": "adverb", + "word_frequency": 13166 + }, + { + "word": "écarté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolated;set apart", + "example_sentence_native": "La maison est un peu écartée du village.", + "example_sentence_english": "The house is a bit isolated from the village.", + "pos": "adjective", + "word_frequency": 13170 + }, + { + "word": "émigrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to emigrate", + "example_sentence_native": "Beaucoup de gens décident d'émigrer pour trouver du travail.", + "example_sentence_english": "Many people decide to emigrate to find work.", + "pos": "verb", + "word_frequency": 13171 + }, + { + "word": "émir", + "article_with_word": "un émir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emir", + "example_sentence_native": "L'émir a visité la capitale.", + "example_sentence_english": "The emir visited the capital.", + "pos": "noun", + "word_frequency": 13172 + }, + { + "word": "accroché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hooked;attached;hanging", + "example_sentence_native": "Le tableau est accroché au mur.", + "example_sentence_english": "The painting is hanging on the wall.", + "pos": "adjective", + "word_frequency": 13174 + }, + { + "word": "affamé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starving;famished", + "example_sentence_native": "Après la randonnée, nous étions tous affamés.", + "example_sentence_english": "After the hike, we were all starving.", + "pos": "adjective", + "word_frequency": 13175 + }, + { + "word": "affectueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affectionate;loving", + "example_sentence_native": "C'est un chien très affectueux.", + "example_sentence_english": "It's a very affectionate dog.", + "pos": "adjective", + "word_frequency": 13176 + }, + { + "word": "aggravation", + "article_with_word": "une aggravation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worsening;aggravation", + "example_sentence_native": "L'aggravation de la situation a nécessité une intervention rapide.", + "example_sentence_english": "The worsening of the situation required rapid intervention.", + "pos": "noun", + "word_frequency": 13177 + }, + { + "word": "agile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agile;nimble", + "example_sentence_native": "Le chat est très agile et peut sauter haut.", + "example_sentence_english": "The cat is very agile and can jump high.", + "pos": "adjective", + "word_frequency": 13178 + }, + { + "word": "allaitement", + "article_with_word": "l'allaitement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breastfeeding;nursing", + "example_sentence_native": "L'allaitement maternel est recommandé pour les bébés.", + "example_sentence_english": "Breastfeeding is recommended for babies.", + "pos": "noun", + "word_frequency": 13180 + }, + { + "word": "alloué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allocated;granted", + "example_sentence_native": "Les fonds alloués au projet sont insuffisants.", + "example_sentence_english": "The funds allocated to the project are insufficient.", + "pos": "adjective", + "word_frequency": 13181 + }, + { + "word": "anecdotique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anecdotal", + "example_sentence_native": "Ce n'est qu'un détail anecdotique.", + "example_sentence_english": "It's just an anecdotal detail.", + "pos": "adjective", + "word_frequency": 13182 + }, + { + "word": "apanage", + "article_with_word": "l'apanage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prerogative;exclusive right", + "example_sentence_native": "La diplomatie est l'apanage des États.", + "example_sentence_english": "Diplomacy is the prerogative of states.", + "pos": "noun", + "word_frequency": 13184 + }, + { + "word": "appât", + "article_with_word": "un appât", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bait;lure", + "example_sentence_native": "Il a mis un ver comme appât pour pêcher.", + "example_sentence_english": "He put a worm as bait to fish.", + "pos": "noun", + "word_frequency": 13185 + }, + { + "word": "aprem", + "article_with_word": "l'aprem", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "afternoon (informal)", + "example_sentence_native": "On se voit cet aprem ?", + "example_sentence_english": "Shall we meet this afternoon?", + "pos": "noun", + "word_frequency": 13186 + }, + { + "word": "articuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to articulate;to pronounce clearly", + "example_sentence_native": "Il faut bien articuler pour être compris.", + "example_sentence_english": "You must articulate well to be understood.", + "pos": "verb", + "word_frequency": 13188 + }, + { + "word": "austère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "austere;severe;strict", + "example_sentence_native": "Son style de vie est très austère.", + "example_sentence_english": "His lifestyle is very austere.", + "pos": "adjective", + "word_frequency": 13189 + }, + { + "word": "barman", + "article_with_word": "un barman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bartender", + "example_sentence_native": "Le barman nous a servi des cocktails.", + "example_sentence_english": "The bartender served us cocktails.", + "pos": "noun", + "word_frequency": 13190 + }, + { + "word": "bibi", + "article_with_word": "un bibi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fascinator (hat)", + "example_sentence_native": "Elle portait un joli bibi à la cérémonie.", + "example_sentence_english": "She wore a pretty fascinator to the ceremony.", + "pos": "noun", + "word_frequency": 13192 + }, + { + "word": "biomasse", + "article_with_word": "la biomasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biomass", + "example_sentence_native": "La biomasse est une source d'énergie renouvelable.", + "example_sentence_english": "Biomass is a renewable energy source.", + "pos": "noun", + "word_frequency": 13193 + }, + { + "word": "bonnement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "simply;purely;just", + "example_sentence_native": "Il a tout bonnement refusé.", + "example_sentence_english": "He simply refused.", + "pos": "adverb", + "word_frequency": 13195 + }, + { + "word": "boxer", + "article_with_word": "un boxer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxer (dog breed)", + "example_sentence_native": "Mon chien est un boxer.", + "example_sentence_english": "My dog is a boxer.", + "pos": "noun", + "word_frequency": 13197 + }, + { + "word": "brio", + "article_with_word": "le brio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flair;brilliance;verve", + "example_sentence_native": "Il a joué du piano avec brio.", + "example_sentence_english": "He played the piano with flair.", + "pos": "noun", + "word_frequency": 13199 + }, + { + "word": "brouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blur;to scramble", + "example_sentence_native": "La pluie a brouillé la vue.", + "example_sentence_english": "The rain blurred the view.", + "pos": "verb", + "word_frequency": 13200 + }, + { + "word": "collecteur", + "article_with_word": "le collecteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collector;manifold", + "example_sentence_native": "Le collecteur de données est essentiel pour l'analyse.", + "example_sentence_english": "The data collector is essential for analysis.", + "pos": "noun", + "word_frequency": 13203 + }, + { + "word": "collusion", + "article_with_word": "la collusion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collusion", + "example_sentence_native": "Ils ont été accusés de collusion.", + "example_sentence_english": "They were accused of collusion.", + "pos": "noun", + "word_frequency": 13204 + }, + { + "word": "consommé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplished;skilled", + "example_sentence_native": "C'est un artiste consommé.", + "example_sentence_english": "He is an accomplished artist.", + "pos": "adjective", + "word_frequency": 13206 + }, + { + "word": "consort", + "article_with_word": "le consort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consort;associate", + "example_sentence_native": "Le prince consort a assisté à la cérémonie.", + "example_sentence_english": "The prince consort attended the ceremony.", + "pos": "noun", + "word_frequency": 13207 + }, + { + "word": "convoqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summoned;convened", + "example_sentence_native": "Il a été convoqué pour une réunion.", + "example_sentence_english": "He was summoned for a meeting.", + "pos": "adjective", + "word_frequency": 13208 + }, + { + "word": "coteau", + "article_with_word": "le coteau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hillside;slope", + "example_sentence_native": "Les vignes poussent sur le coteau.", + "example_sentence_english": "The vines grow on the hillside.", + "pos": "noun", + "word_frequency": 13209 + }, + { + "word": "cout", + "article_with_word": "le coût", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cost", + "example_sentence_native": "Quel est le coût total de ce projet?", + "example_sentence_english": "What is the total cost of this project?", + "pos": "noun", + "word_frequency": 13210 + }, + { + "word": "diagnostiqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnosed", + "example_sentence_native": "La maladie a été diagnostiquée tôt.", + "example_sentence_english": "The disease was diagnosed early.", + "pos": "adjective", + "word_frequency": 13211 + }, + { + "word": "discorde", + "article_with_word": "la discorde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discord;strife", + "example_sentence_native": "La discorde règne entre les deux partis.", + "example_sentence_english": "Discord reigns between the two parties.", + "pos": "noun", + "word_frequency": 13212 + }, + { + "word": "discothèque", + "article_with_word": "la discothèque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nightclub;disco", + "example_sentence_native": "Nous sommes allés à la discothèque hier soir.", + "example_sentence_english": "We went to the nightclub last night.", + "pos": "noun", + "word_frequency": 13213 + }, + { + "word": "décolleté", + "article_with_word": "le décolleté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "low neckline;cleavage", + "example_sentence_native": "Elle portait une robe avec un beau décolleté.", + "example_sentence_english": "She wore a dress with a beautiful low neckline.", + "pos": "noun", + "word_frequency": 13215 + }, + { + "word": "décombre", + "article_with_word": "les décombres", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubble;debris", + "example_sentence_native": "Les décombres de l'ancien bâtiment ont été enlevés.", + "example_sentence_english": "The rubble of the old building was removed.", + "pos": "noun", + "word_frequency": 13216 + }, + { + "word": "dégoûté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusted;fed up", + "example_sentence_native": "Il était dégoûté par le comportement.", + "example_sentence_english": "He was disgusted by the behavior.", + "pos": "adjective", + "word_frequency": 13217 + }, + { + "word": "délaissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abandoned;neglected", + "example_sentence_native": "Le jardin semblait délaissé.", + "example_sentence_english": "The garden seemed abandoned.", + "pos": "adjective", + "word_frequency": 13218 + }, + { + "word": "délivré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delivered;issued;freed", + "example_sentence_native": "Le colis a été délivré ce matin.", + "example_sentence_english": "The package was delivered this morning.", + "pos": "adjective", + "word_frequency": 13219 + }, + { + "word": "ecran", + "article_with_word": "l'écran", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screen", + "example_sentence_native": "L'écran de mon téléphone est cassé.", + "example_sentence_english": "My phone screen is broken.", + "pos": "noun", + "word_frequency": 13220 + }, + { + "word": "emballer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pack;to wrap", + "example_sentence_native": "Il faut emballer les cadeaux.", + "example_sentence_english": "We need to wrap the presents.", + "pos": "verb", + "word_frequency": 13221 + }, + { + "word": "emission", + "article_with_word": "l'émission", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broadcast;emission", + "example_sentence_native": "J'ai regardé une émission intéressante à la télévision.", + "example_sentence_english": "I watched an interesting broadcast on television.", + "pos": "noun", + "word_frequency": 13222 + }, + { + "word": "enclave", + "article_with_word": "l'enclave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enclave", + "example_sentence_native": "Cette ville est une enclave dans le territoire voisin.", + "example_sentence_english": "This city is an enclave in the neighboring territory.", + "pos": "noun", + "word_frequency": 13223 + }, + { + "word": "endurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to endure;to bear", + "example_sentence_native": "Il a dû endurer beaucoup de souffrance.", + "example_sentence_english": "He had to endure a lot of suffering.", + "pos": "verb", + "word_frequency": 13224 + }, + { + "word": "envisagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "envisioned;considered", + "example_sentence_native": "La solution envisagée est complexe.", + "example_sentence_english": "The envisioned solution is complex.", + "pos": "adjective", + "word_frequency": 13225 + }, + { + "word": "errant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wandering;errant", + "example_sentence_native": "Un cheval errant a été trouvé dans le champ.", + "example_sentence_english": "A wandering horse was found in the field.", + "pos": "adjective", + "word_frequency": 13226 + }, + { + "word": "escargot", + "article_with_word": "l'escargot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snail", + "example_sentence_native": "Les escargots sont une spécialité française.", + "example_sentence_english": "Snails are a French specialty.", + "pos": "noun", + "word_frequency": 13227 + }, + { + "word": "euphorie", + "article_with_word": "l'euphorie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "euphoria", + "example_sentence_native": "Elle était dans un état d'euphorie.", + "example_sentence_english": "She was in a state of euphoria.", + "pos": "noun", + "word_frequency": 13228 + }, + { + "word": "exponentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exponential", + "example_sentence_native": "La croissance a été exponentielle.", + "example_sentence_english": "The growth was exponential.", + "pos": "adjective", + "word_frequency": 13230 + }, + { + "word": "fatiguant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiring;exhausting", + "example_sentence_native": "Ce travail est très fatiguant.", + "example_sentence_english": "This work is very tiring.", + "pos": "adjective", + "word_frequency": 13232 + }, + { + "word": "filature", + "article_with_word": "la filature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spinning mill;tailing", + "example_sentence_native": "La police a mis en place une filature.", + "example_sentence_english": "The police set up a tailing operation.", + "pos": "noun", + "word_frequency": 13233 + }, + { + "word": "foret", + "article_with_word": "la forêt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forest", + "example_sentence_native": "Nous nous sommes promenés dans la forêt.", + "example_sentence_english": "We walked in the forest.", + "pos": "noun", + "word_frequency": 13235 + }, + { + "word": "forfaitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flat-rate;lump-sum", + "example_sentence_native": "Le prix est un montant forfaitaire.", + "example_sentence_english": "The price is a flat-rate amount.", + "pos": "adjective", + "word_frequency": 13236 + }, + { + "word": "fédéralisme", + "article_with_word": "le fédéralisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federalism", + "example_sentence_native": "Le fédéralisme est un système politique.", + "example_sentence_english": "Federalism is a political system.", + "pos": "noun", + "word_frequency": 13239 + }, + { + "word": "graveur", + "article_with_word": "le graveur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engraver;burner (CD;DVD)", + "example_sentence_native": "Le graveur a réalisé une belle inscription sur la bague.", + "example_sentence_english": "The engraver made a beautiful inscription on the ring.", + "pos": "noun", + "word_frequency": 13241 + }, + { + "word": "grimace", + "article_with_word": "la grimace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grimace", + "example_sentence_native": "Elle a fait une grimace en goûtant le citron.", + "example_sentence_english": "She made a grimace when tasting the lemon.", + "pos": "noun", + "word_frequency": 13242 + }, + { + "word": "grogne", + "article_with_word": "la grogne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grumbling;discontent", + "example_sentence_native": "La grogne monte parmi les employés face aux nouvelles mesures.", + "example_sentence_english": "Discontent is rising among employees regarding the new measures.", + "pos": "noun", + "word_frequency": 13243 + }, + { + "word": "gui", + "article_with_word": "le gui", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mistletoe", + "example_sentence_native": "On s'embrasse sous le gui à Noël.", + "example_sentence_english": "We kiss under the mistletoe at Christmas.", + "pos": "noun", + "word_frequency": 13244 + }, + { + "word": "guignol", + "article_with_word": "le guignol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Guignol (puppet);clown;idiot", + "example_sentence_native": "Le spectacle de guignol a amusé les enfants.", + "example_sentence_english": "The Guignol show amused the children.", + "pos": "noun", + "word_frequency": 13245 + }, + { + "word": "géographiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geographically", + "example_sentence_native": "Géographiquement, la ville est très bien située.", + "example_sentence_english": "Geographically, the city is very well located.", + "pos": "adverb", + "word_frequency": 13246 + }, + { + "word": "géolocalisation", + "article_with_word": "la géolocalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geolocation", + "example_sentence_native": "La géolocalisation permet de retrouver son téléphone perdu.", + "example_sentence_english": "Geolocation allows you to find your lost phone.", + "pos": "noun", + "word_frequency": 13247 + }, + { + "word": "hallucination", + "article_with_word": "l'hallucination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hallucination", + "example_sentence_native": "Il a eu une hallucination due à la fièvre.", + "example_sentence_english": "He had an hallucination due to the fever.", + "pos": "noun", + "word_frequency": 13248 + }, + { + "word": "hanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to haunt", + "example_sentence_native": "Cette vieille maison est réputée hanter.", + "example_sentence_english": "This old house is reputed to be haunted.", + "pos": "verb", + "word_frequency": 13250 + }, + { + "word": "hijab", + "article_with_word": "le hijab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hijab", + "example_sentence_native": "Elle porte un hijab par conviction religieuse.", + "example_sentence_english": "She wears a hijab out of religious conviction.", + "pos": "noun", + "word_frequency": 13251 + }, + { + "word": "housse", + "article_with_word": "la housse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cover;slipcover", + "example_sentence_native": "J'ai acheté une nouvelle housse pour mon téléphone.", + "example_sentence_english": "I bought a new cover for my phone.", + "pos": "noun", + "word_frequency": 13253 + }, + { + "word": "hypertension", + "article_with_word": "l'hypertension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypertension;high blood pressure", + "example_sentence_native": "L'hypertension artérielle est un problème de santé courant.", + "example_sentence_english": "Arterial hypertension is a common health problem.", + "pos": "noun", + "word_frequency": 13254 + }, + { + "word": "illuminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illuminated;enlightened;delusional", + "example_sentence_native": "Le visage de l'enfant était illuminé de joie.", + "example_sentence_english": "The child's face was illuminated with joy.", + "pos": "adjective", + "word_frequency": 13255 + }, + { + "word": "imperfection", + "article_with_word": "l'imperfection", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imperfection", + "example_sentence_native": "Chaque imperfection rend l'œuvre unique.", + "example_sentence_english": "Every imperfection makes the work unique.", + "pos": "noun", + "word_frequency": 13256 + }, + { + "word": "indemne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unharmed;safe and sound", + "example_sentence_native": "Malgré l'accident, il est sorti indemne.", + "example_sentence_english": "Despite the accident, he came out unharmed.", + "pos": "adjective", + "word_frequency": 13257 + }, + { + "word": "infaillible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infallible;unfailing", + "example_sentence_native": "Sa logique est infaillible, il ne se trompe jamais.", + "example_sentence_english": "His logic is infallible, he never makes a mistake.", + "pos": "adjective", + "word_frequency": 13258 + }, + { + "word": "inhumain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhumane;inhuman", + "example_sentence_native": "Les conditions de travail étaient inhumaines.", + "example_sentence_english": "The working conditions were inhumane.", + "pos": "adjective", + "word_frequency": 13259 + }, + { + "word": "intercepter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intercept", + "example_sentence_native": "La police a intercepté le colis suspect.", + "example_sentence_english": "The police intercepted the suspicious package.", + "pos": "verb", + "word_frequency": 13261 + }, + { + "word": "interviewer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interview", + "example_sentence_native": "Le journaliste va interviewer le président.", + "example_sentence_english": "The journalist will interview the president.", + "pos": "verb", + "word_frequency": 13262 + }, + { + "word": "intouchable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untouchable", + "example_sentence_native": "Ce sujet est intouchable pour le moment.", + "example_sentence_english": "This subject is untouchable for now.", + "pos": "adjective", + "word_frequency": 13263 + }, + { + "word": "involontairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involuntarily;unintentionally", + "example_sentence_native": "Il a involontairement révélé le secret.", + "example_sentence_english": "He involuntarily revealed the secret.", + "pos": "adverb", + "word_frequency": 13264 + }, + { + "word": "joliment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nicely;prettily", + "example_sentence_native": "Elle a décoré la pièce joliment.", + "example_sentence_english": "She decorated the room nicely.", + "pos": "adverb", + "word_frequency": 13268 + }, + { + "word": "libido", + "article_with_word": "la libido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libido", + "example_sentence_native": "Le stress peut affecter la libido.", + "example_sentence_english": "Stress can affect libido.", + "pos": "noun", + "word_frequency": 13275 + }, + { + "word": "litière", + "article_with_word": "la litière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "litter (for pets);bedding;leaf litter", + "example_sentence_native": "Il faut changer la litière du chat régulièrement.", + "example_sentence_english": "The cat's litter needs to be changed regularly.", + "pos": "noun", + "word_frequency": 13277 + }, + { + "word": "localisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "localized;located", + "example_sentence_native": "La douleur est localisée dans le bas du dos.", + "example_sentence_english": "The pain is localized in the lower back.", + "pos": "adjective", + "word_frequency": 13278 + }, + { + "word": "majestueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majestic", + "example_sentence_native": "Le château offre une vue majestueuse sur la vallée.", + "example_sentence_english": "The castle offers a majestic view of the valley.", + "pos": "adjective", + "word_frequency": 13279 + }, + { + "word": "male", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "male", + "example_sentence_native": "C'est un chien mâle.", + "example_sentence_english": "It's a male dog.", + "pos": "adjective", + "word_frequency": 13281 + }, + { + "word": "mayonnaise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mayonnaise", + "example_sentence_native": "J'aime les frites avec de la mayonnaise.", + "example_sentence_english": "I like fries with mayonnaise.", + "pos": "noun", + "word_frequency": 13282 + }, + { + "word": "merveilleusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonderfully", + "example_sentence_native": "Elle chante merveilleusement bien.", + "example_sentence_english": "She sings wonderfully well.", + "pos": "adverb", + "word_frequency": 13284 + }, + { + "word": "milicien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militiaman", + "example_sentence_native": "Le milicien portait un uniforme vert.", + "example_sentence_english": "The militiaman wore a green uniform.", + "pos": "noun", + "word_frequency": 13285 + }, + { + "word": "millet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millet", + "example_sentence_native": "Le millet est une céréale nutritive.", + "example_sentence_english": "Millet is a nutritious cereal.", + "pos": "noun", + "word_frequency": 13286 + }, + { + "word": "mépriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despise", + "example_sentence_native": "Il ne faut jamais mépriser les autres.", + "example_sentence_english": "One should never despise others.", + "pos": "verb", + "word_frequency": 13292 + }, + { + "word": "offensé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offended", + "example_sentence_native": "Il s'est senti offensé par ses paroles.", + "example_sentence_english": "He felt offended by her words.", + "pos": "adjective", + "word_frequency": 13297 + }, + { + "word": "osciller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oscillate;to waver", + "example_sentence_native": "La balance a commencé à osciller.", + "example_sentence_english": "The scale began to oscillate.", + "pos": "verb", + "word_frequency": 13300 + }, + { + "word": "paquebot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ocean liner;cruise ship", + "example_sentence_native": "Le paquebot a quitté le port ce matin.", + "example_sentence_english": "The ocean liner left the port this morning.", + "pos": "noun", + "word_frequency": 13302 + }, + { + "word": "pathologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathological", + "example_sentence_native": "Son mensonge était presque pathologique.", + "example_sentence_english": "His lying was almost pathological.", + "pos": "adjective", + "word_frequency": 13303 + }, + { + "word": "pluvieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rainy", + "example_sentence_native": "Nous avons eu un été très pluvieux.", + "example_sentence_english": "We had a very rainy summer.", + "pos": "adjective", + "word_frequency": 13307 + }, + { + "word": "ponctuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punctually;occasionally", + "example_sentence_native": "Il arrive toujours ponctuellement à ses rendez-vous.", + "example_sentence_english": "He always arrives punctually for his appointments.", + "pos": "adverb", + "word_frequency": 13309 + }, + { + "word": "quantitatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantitative", + "example_sentence_native": "Nous avons besoin d'une analyse quantitative des données.", + "example_sentence_english": "We need a quantitative analysis of the data.", + "pos": "adjective", + "word_frequency": 13314 + }, + { + "word": "quitte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quits;even;free (from obligation)", + "example_sentence_native": "Nous sommes quittes maintenant.", + "example_sentence_english": "We are quits now.", + "pos": "adjective", + "word_frequency": 13315 + }, + { + "word": "radieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiant;beaming", + "example_sentence_native": "Elle avait un sourire radieux.", + "example_sentence_english": "She had a radiant smile.", + "pos": "adjective", + "word_frequency": 13316 + }, + { + "word": "reporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "postponed", + "example_sentence_native": "Le match a été reporté à cause de la pluie.", + "example_sentence_english": "The match was postponed due to the rain.", + "pos": "adjective", + "word_frequency": 13317 + }, + { + "word": "rescapé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survivor", + "example_sentence_native": "Il était le seul rescapé de l'accident.", + "example_sentence_english": "He was the only survivor of the accident.", + "pos": "noun", + "word_frequency": 13318 + }, + { + "word": "restauré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restored", + "example_sentence_native": "Le tableau a été entièrement restauré.", + "example_sentence_english": "The painting has been fully restored.", + "pos": "adjective", + "word_frequency": 13319 + }, + { + "word": "rongeur", + "article_with_word": "le rongeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rodent", + "example_sentence_native": "Une souris est un petit rongeur.", + "example_sentence_english": "A mouse is a small rodent.", + "pos": "noun", + "word_frequency": 13322 + }, + { + "word": "récolté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harvested", + "example_sentence_native": "Les fruits récoltés sont très frais.", + "example_sentence_english": "The harvested fruits are very fresh.", + "pos": "adjective", + "word_frequency": 13325 + }, + { + "word": "récré", + "article_with_word": "la récré", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recess;break", + "example_sentence_native": "Les enfants jouent dans la cour pendant la récré.", + "example_sentence_english": "The children play in the yard during recess.", + "pos": "noun", + "word_frequency": 13326 + }, + { + "word": "réécrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rewrite", + "example_sentence_native": "Je dois réécrire mon essai pour améliorer ma note.", + "example_sentence_english": "I have to rewrite my essay to improve my grade.", + "pos": "verb", + "word_frequency": 13327 + }, + { + "word": "saumur", + "article_with_word": "la saumur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brine", + "example_sentence_native": "Les cornichons sont conservés dans de la saumur.", + "example_sentence_english": "Pickles are preserved in brine.", + "pos": "noun", + "word_frequency": 13329 + }, + { + "word": "shield", + "article_with_word": "le shield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shield", + "example_sentence_native": "Le joueur a activé son shield pour se protéger.", + "example_sentence_english": "The player activated his shield to protect himself.", + "pos": "noun", + "word_frequency": 13330 + }, + { + "word": "solennel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemn", + "example_sentence_native": "La cérémonie était très solennelle.", + "example_sentence_english": "The ceremony was very solemn.", + "pos": "adjective", + "word_frequency": 13331 + }, + { + "word": "soude", + "article_with_word": "la soude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soda;lye", + "example_sentence_native": "La soude caustique est utilisée pour fabriquer du savon.", + "example_sentence_english": "Caustic soda is used to make soap.", + "pos": "noun", + "word_frequency": 13332 + }, + { + "word": "spike", + "article_with_word": "le spike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spike", + "example_sentence_native": "Le joueur a fait un spike puissant au volleyball.", + "example_sentence_english": "The player made a powerful spike in volleyball.", + "pos": "noun", + "word_frequency": 13334 + }, + { + "word": "statuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rule;to decide", + "example_sentence_native": "Le juge doit statuer sur cette affaire complexe.", + "example_sentence_english": "The judge must rule on this complex case.", + "pos": "verb", + "word_frequency": 13335 + }, + { + "word": "tangible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangible", + "example_sentence_native": "Nous avons besoin de preuves tangibles.", + "example_sentence_english": "We need tangible proof.", + "pos": "adjective", + "word_frequency": 13337 + }, + { + "word": "tapir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hide;to crouch", + "example_sentence_native": "Le chat se tapit dans l'herbe avant de bondir.", + "example_sentence_english": "The cat crouches in the grass before pouncing.", + "pos": "verb", + "word_frequency": 13339 + }, + { + "word": "thaï", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai", + "example_sentence_native": "J'adore la cuisine thaïlandaise.", + "example_sentence_english": "I love Thai cuisine.", + "pos": "adjective", + "word_frequency": 13340 + }, + { + "word": "tondeuse", + "article_with_word": "la tondeuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lawnmower;clippers", + "example_sentence_native": "Il faut passer la tondeuse à gazon ce week-end.", + "example_sentence_english": "We need to mow the lawn this weekend.", + "pos": "noun", + "word_frequency": 13341 + }, + { + "word": "transatlantique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transatlantic", + "example_sentence_native": "Le vol transatlantique a duré huit heures.", + "example_sentence_english": "The transatlantic flight lasted eight hours.", + "pos": "adjective", + "word_frequency": 13342 + }, + { + "word": "tuilerie", + "article_with_word": "la tuilerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tile factory;tile works", + "example_sentence_native": "La tuilerie produit des tuiles pour les toits.", + "example_sentence_english": "The tile factory produces tiles for roofs.", + "pos": "noun", + "word_frequency": 13343 + }, + { + "word": "unilatéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unilateral", + "example_sentence_native": "La décision a été prise de manière unilatérale.", + "example_sentence_english": "The decision was made unilaterally.", + "pos": "adjective", + "word_frequency": 13344 + }, + { + "word": "vidéosurveillance", + "article_with_word": "la vidéosurveillance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "video surveillance", + "example_sentence_native": "La vidéosurveillance est de plus en plus courante dans les villes.", + "example_sentence_english": "Video surveillance is becoming more common in cities.", + "pos": "noun", + "word_frequency": 13345 + }, + { + "word": "virtuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtually", + "example_sentence_native": "Le projet est virtuellement terminé.", + "example_sentence_english": "The project is virtually finished.", + "pos": "adverb", + "word_frequency": 13346 + }, + { + "word": "visualiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to visualize", + "example_sentence_native": "Il est important de visualiser ses objectifs.", + "example_sentence_english": "It is important to visualize one's goals.", + "pos": "verb", + "word_frequency": 13347 + }, + { + "word": "volumineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voluminous;bulky", + "example_sentence_native": "Ce livre est très volumineux.", + "example_sentence_english": "This book is very voluminous.", + "pos": "adjective", + "word_frequency": 13348 + }, + { + "word": "weed", + "article_with_word": "la weed", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weed (cannabis)", + "example_sentence_native": "La consommation de weed est illégale dans de nombreux pays.", + "example_sentence_english": "Weed consumption is illegal in many countries.", + "pos": "noun", + "word_frequency": 13350 + }, + { + "word": "émérite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emeritus", + "example_sentence_native": "Il est professeur émérite à l'université.", + "example_sentence_english": "He is a professor emeritus at the university.", + "pos": "adjective", + "word_frequency": 13355 + }, + { + "word": "énigmatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enigmatic", + "example_sentence_native": "Son sourire était énigmatique.", + "example_sentence_english": "His smile was enigmatic.", + "pos": "adjective", + "word_frequency": 13356 + }, + { + "word": "épilepsie", + "article_with_word": "l'épilepsie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epilepsy", + "example_sentence_native": "L'épilepsie est une maladie neurologique.", + "example_sentence_english": "Epilepsy is a neurological disease.", + "pos": "noun", + "word_frequency": 13357 + }, + { + "word": "étalage", + "article_with_word": "l'étalage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "display;stall;show-off", + "example_sentence_native": "Les produits étaient bien présentés sur l'étalage.", + "example_sentence_english": "The products were well displayed on the stall.", + "pos": "noun", + "word_frequency": 13358 + }, + { + "word": "affront", + "article_with_word": "l'affront", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affront;insult", + "example_sentence_native": "Il a ressenti son commentaire comme un affront personnel.", + "example_sentence_english": "He felt her comment as a personal affront.", + "pos": "noun", + "word_frequency": 13359 + }, + { + "word": "antre", + "article_with_word": "l'antre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lair;den", + "example_sentence_native": "Le lion se reposait dans son antre.", + "example_sentence_english": "The lion was resting in its lair.", + "pos": "noun", + "word_frequency": 13361 + }, + { + "word": "aplomb", + "article_with_word": "l'aplomb", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-possession;poise", + "example_sentence_native": "Elle a répondu avec un aplomb remarquable.", + "example_sentence_english": "She answered with remarkable self-possession.", + "pos": "noun", + "word_frequency": 13362 + }, + { + "word": "approvisionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supply;to provision", + "example_sentence_native": "Il faut approvisionner le magasin en produits frais.", + "example_sentence_english": "We need to supply the store with fresh produce.", + "pos": "verb", + "word_frequency": 13363 + }, + { + "word": "aubaine", + "article_with_word": "l'aubaine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bargain;godsend", + "example_sentence_native": "Cette promotion est une véritable aubaine.", + "example_sentence_english": "This promotion is a real bargain.", + "pos": "noun", + "word_frequency": 13364 + }, + { + "word": "aversion", + "article_with_word": "l'aversion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aversion;dislike", + "example_sentence_native": "Elle a une aversion pour les serpents.", + "example_sentence_english": "She has an aversion to snakes.", + "pos": "noun", + "word_frequency": 13366 + }, + { + "word": "blanchet", + "article_with_word": "le blanchet", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blanket (printing);flannel", + "example_sentence_native": "Le technicien a remplacé le blanchet de l'imprimante.", + "example_sentence_english": "The technician replaced the printer's blanket.", + "pos": "noun", + "word_frequency": 13369 + }, + { + "word": "bocal", + "article_with_word": "le bocal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jar;fishbowl", + "example_sentence_native": "Mets les confitures dans un bocal en verre.", + "example_sentence_english": "Put the jams in a glass jar.", + "pos": "noun", + "word_frequency": 13370 + }, + { + "word": "bombarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bomb;to bombard", + "example_sentence_native": "L'avion a bombardé la cible ennemie.", + "example_sentence_english": "The plane bombed the enemy target.", + "pos": "verb", + "word_frequency": 13371 + }, + { + "word": "bourguignon", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Burgundian", + "example_sentence_native": "Le bœuf bourguignon est un plat traditionnel.", + "example_sentence_english": "Beef bourguignon is a traditional dish.", + "pos": "adjective", + "word_frequency": 13372 + }, + { + "word": "brigadier", + "article_with_word": "le brigadier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporal;police sergeant;traffic warden", + "example_sentence_native": "Le brigadier a donné une amende pour stationnement illégal.", + "example_sentence_english": "The traffic warden issued a fine for illegal parking.", + "pos": "noun", + "word_frequency": 13375 + }, + { + "word": "brioche", + "article_with_word": "la brioche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brioche (sweet bread)", + "example_sentence_native": "J'adore manger une brioche avec mon café.", + "example_sentence_english": "I love eating a brioche with my coffee.", + "pos": "noun", + "word_frequency": 13376 + }, + { + "word": "canalisation", + "article_with_word": "la canalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piping;drainage system", + "example_sentence_native": "Il y a une fuite dans la canalisation d'eau.", + "example_sentence_english": "There is a leak in the water piping.", + "pos": "noun", + "word_frequency": 13379 + }, + { + "word": "cigare", + "article_with_word": "le cigare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cigar", + "example_sentence_native": "Il a allumé un cigare après le repas.", + "example_sentence_english": "He lit a cigar after the meal.", + "pos": "noun", + "word_frequency": 13383 + }, + { + "word": "citadin", + "article_with_word": "le citadin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "city dweller;urbanite", + "example_sentence_native": "Les citadins aiment la vie trépidante de la ville.", + "example_sentence_english": "City dwellers love the bustling city life.", + "pos": "noun", + "word_frequency": 13384 + }, + { + "word": "compresseur", + "article_with_word": "le compresseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressor", + "example_sentence_native": "Le mécanicien a réparé le compresseur d'air.", + "example_sentence_english": "The mechanic repaired the air compressor.", + "pos": "noun", + "word_frequency": 13385 + }, + { + "word": "concurrentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitive", + "example_sentence_native": "Le marché du travail est très concurrentiel.", + "example_sentence_english": "The job market is very competitive.", + "pos": "adjective", + "word_frequency": 13386 + }, + { + "word": "corniche", + "article_with_word": "la corniche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornice;coastal road", + "example_sentence_native": "La route de la corniche offre une vue magnifique sur la mer.", + "example_sentence_english": "The coastal road offers a magnificent view of the sea.", + "pos": "noun", + "word_frequency": 13388 + }, + { + "word": "corvée", + "article_with_word": "la corvée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chore;drudgery", + "example_sentence_native": "Faire le ménage est une corvée pour beaucoup de gens.", + "example_sentence_english": "Doing housework is a chore for many people.", + "pos": "noun", + "word_frequency": 13389 + }, + { + "word": "coupon", + "article_with_word": "le coupon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coupon;voucher", + "example_sentence_native": "J'ai utilisé un coupon de réduction pour acheter ce livre.", + "example_sentence_english": "I used a discount coupon to buy this book.", + "pos": "noun", + "word_frequency": 13390 + }, + { + "word": "croc", + "article_with_word": "le croc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fang;hook;claw", + "example_sentence_native": "Le chien a montré ses crocs en grognant.", + "example_sentence_english": "The dog showed its fangs while growling.", + "pos": "noun", + "word_frequency": 13391 + }, + { + "word": "cylindrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cylindrical", + "example_sentence_native": "L'objet avait une forme cylindrique parfaite.", + "example_sentence_english": "The object had a perfect cylindrical shape.", + "pos": "adjective", + "word_frequency": 13392 + }, + { + "word": "desservir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to serve (a place);to clear (a table);to disserve", + "example_sentence_native": "Cette ligne de bus dessert plusieurs quartiers de la ville.", + "example_sentence_english": "This bus line serves several districts of the city.", + "pos": "verb", + "word_frequency": 13394 + }, + { + "word": "diagnostique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diagnostic", + "example_sentence_native": "Le processus diagnostique est essentiel pour identifier la maladie.", + "example_sentence_english": "The diagnostic process is essential to identify the disease.", + "pos": "adjective", + "word_frequency": 13395 + }, + { + "word": "discutable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debatable;questionable", + "example_sentence_native": "Son comportement est très discutable.", + "example_sentence_english": "His behavior is very questionable.", + "pos": "adjective", + "word_frequency": 13396 + }, + { + "word": "distorsion", + "article_with_word": "la distorsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distortion", + "example_sentence_native": "Il y a une distorsion de l'image sur l'écran.", + "example_sentence_english": "There is a distortion of the image on the screen.", + "pos": "noun", + "word_frequency": 13397 + }, + { + "word": "doudou", + "article_with_word": "le doudou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comforter;security blanket;cuddly toy", + "example_sentence_native": "Le petit garçon ne quitte jamais son doudou.", + "example_sentence_english": "The little boy never leaves his comforter.", + "pos": "noun", + "word_frequency": 13399 + }, + { + "word": "dualité", + "article_with_word": "la dualité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duality", + "example_sentence_native": "Il y a une dualité intéressante dans ce personnage.", + "example_sentence_english": "There is an interesting duality in this character.", + "pos": "noun", + "word_frequency": 13401 + }, + { + "word": "décent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decent", + "example_sentence_native": "C'est une offre décente.", + "example_sentence_english": "It's a decent offer.", + "pos": "adjective", + "word_frequency": 13402 + }, + { + "word": "dérapage", + "article_with_word": "le dérapage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skid;slip;blunder", + "example_sentence_native": "La voiture a fait un dérapage sur la glace.", + "example_sentence_english": "The car skidded on the ice.", + "pos": "noun", + "word_frequency": 13403 + }, + { + "word": "embrouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confuse;to tangle", + "example_sentence_native": "Ces explications m'embrouillent.", + "example_sentence_english": "These explanations confuse me.", + "pos": "verb", + "word_frequency": 13404 + }, + { + "word": "emprunteur", + "article_with_word": "l'emprunteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "borrower", + "example_sentence_native": "L'emprunteur doit rembourser le prêt.", + "example_sentence_english": "The borrower must repay the loan.", + "pos": "noun", + "word_frequency": 13405 + }, + { + "word": "exhibition", + "article_with_word": "l'exhibition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibition;display", + "example_sentence_native": "L'exposition présente une nouvelle exhibition d'art moderne.", + "example_sentence_english": "The exhibition features a new display of modern art.", + "pos": "noun", + "word_frequency": 13408 + }, + { + "word": "exposant", + "article_with_word": "l'exposant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibitor;exponent", + "example_sentence_native": "Chaque exposant avait son propre stand.", + "example_sentence_english": "Each exhibitor had their own stand.", + "pos": "noun", + "word_frequency": 13409 + }, + { + "word": "fente", + "article_with_word": "la fente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slit;slot;crack", + "example_sentence_native": "Il y a une petite fente dans le mur.", + "example_sentence_english": "There is a small crack in the wall.", + "pos": "noun", + "word_frequency": 13411 + }, + { + "word": "fourgon", + "article_with_word": "le fourgon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "van;delivery van", + "example_sentence_native": "Le fourgon de livraison est arrivé.", + "example_sentence_english": "The delivery van has arrived.", + "pos": "noun", + "word_frequency": 13414 + }, + { + "word": "gamma", + "article_with_word": "le gamma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gamma", + "example_sentence_native": "Les rayons gamma sont très énergétiques.", + "example_sentence_english": "Gamma rays are very energetic.", + "pos": "noun", + "word_frequency": 13416 + }, + { + "word": "gangster", + "article_with_word": "le gangster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gangster", + "example_sentence_native": "Le gangster a été arrêté par la police.", + "example_sentence_english": "The gangster was arrested by the police.", + "pos": "noun", + "word_frequency": 13417 + }, + { + "word": "glaçon", + "article_with_word": "le glaçon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice cube", + "example_sentence_native": "Je voudrais des glaçons dans mon verre.", + "example_sentence_english": "I would like some ice cubes in my glass.", + "pos": "noun", + "word_frequency": 13419 + }, + { + "word": "gogo", + "article_with_word": "le gogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gullible person", + "example_sentence_native": "Il est un peu gogo, il croit tout ce qu'on lui dit.", + "example_sentence_english": "He's a bit gullible, he believes everything he's told.", + "pos": "noun", + "word_frequency": 13420 + }, + { + "word": "gorgée", + "article_with_word": "la gorgée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sip;mouthful", + "example_sentence_native": "Il a bu une gorgée d'eau.", + "example_sentence_english": "He took a sip of water.", + "pos": "noun", + "word_frequency": 13421 + }, + { + "word": "greffier", + "article_with_word": "le greffier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clerk (of court);registrar", + "example_sentence_native": "Le greffier a enregistré la décision du juge.", + "example_sentence_english": "The clerk recorded the judge's decision.", + "pos": "noun", + "word_frequency": 13422 + }, + { + "word": "guetter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to watch out for;to lie in wait for", + "example_sentence_native": "Il guette le facteur tous les matins.", + "example_sentence_english": "He watches out for the postman every morning.", + "pos": "verb", + "word_frequency": 13425 + }, + { + "word": "harmonieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmonious", + "example_sentence_native": "Leurs voix formaient un chœur harmonieux.", + "example_sentence_english": "Their voices formed a harmonious choir.", + "pos": "adjective", + "word_frequency": 13426 + }, + { + "word": "horlogerie", + "article_with_word": "l'horlogerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "watchmaking;clockmaking", + "example_sentence_native": "La Suisse est réputée pour son horlogerie de précision.", + "example_sentence_english": "Switzerland is renowned for its precision watchmaking.", + "pos": "noun", + "word_frequency": 13431 + }, + { + "word": "hyacinthe", + "article_with_word": "l'hyacinthe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hyacinth (gemstone)", + "example_sentence_native": "L'hyacinthe est une pierre précieuse.", + "example_sentence_english": "Hyacinth is a precious stone.", + "pos": "noun", + "word_frequency": 13432 + }, + { + "word": "implant", + "article_with_word": "l'implant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implant", + "example_sentence_native": "Le dentiste a posé un implant dentaire.", + "example_sentence_english": "The dentist placed a dental implant.", + "pos": "noun", + "word_frequency": 13434 + }, + { + "word": "incarcération", + "article_with_word": "l'incarcération", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incarceration;imprisonment", + "example_sentence_native": "L'incarcération du suspect a été ordonnée.", + "example_sentence_english": "The suspect's incarceration was ordered.", + "pos": "noun", + "word_frequency": 13435 + }, + { + "word": "inconfortable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncomfortable", + "example_sentence_native": "Ce siège est très inconfortable.", + "example_sentence_english": "This seat is very uncomfortable.", + "pos": "adjective", + "word_frequency": 13436 + }, + { + "word": "inimaginable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unimaginable", + "example_sentence_native": "Les conséquences pourraient être inimaginables.", + "example_sentence_english": "The consequences could be unimaginable.", + "pos": "adjective", + "word_frequency": 13438 + }, + { + "word": "jackpot", + "article_with_word": "le jackpot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jackpot", + "example_sentence_native": "Il a gagné le jackpot à la loterie.", + "example_sentence_english": "He won the jackpot in the lottery.", + "pos": "noun", + "word_frequency": 13442 + }, + { + "word": "jasmin", + "article_with_word": "le jasmin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jasmine", + "example_sentence_native": "Le jasmin a un parfum très agréable.", + "example_sentence_english": "Jasmine has a very pleasant scent.", + "pos": "noun", + "word_frequency": 13443 + }, + { + "word": "judéo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Judeo-", + "example_sentence_native": "Il étudie l'histoire judéo-chrétienne.", + "example_sentence_english": "He studies Judeo-Christian history.", + "pos": "adjective", + "word_frequency": 13445 + }, + { + "word": "junte", + "article_with_word": "la junte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "junta", + "example_sentence_native": "La junte militaire a pris le pouvoir.", + "example_sentence_english": "The military junta seized power.", + "pos": "noun", + "word_frequency": 13446 + }, + { + "word": "log", + "article_with_word": "le log", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "log (computer)", + "example_sentence_native": "Vérifiez le fichier de log pour les erreurs.", + "example_sentence_english": "Check the log file for errors.", + "pos": "noun", + "word_frequency": 13451 + }, + { + "word": "making", + "article_with_word": "le making-of", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "making (as in 'making-of')", + "example_sentence_native": "Nous avons regardé le making-of du film.", + "example_sentence_english": "We watched the making-of of the film.", + "pos": "noun", + "word_frequency": 13453 + }, + { + "word": "malfaiteur", + "article_with_word": "le malfaiteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrongdoer", + "example_sentence_native": "La police a arrêté le malfaiteur.", + "example_sentence_english": "The police arrested the wrongdoer.", + "pos": "noun", + "word_frequency": 13454 + }, + { + "word": "manipulateur", + "article_with_word": "le manipulateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulator", + "example_sentence_native": "Il est un manipulateur très habile.", + "example_sentence_english": "He is a very skilled manipulator.", + "pos": "noun", + "word_frequency": 13455 + }, + { + "word": "mante", + "article_with_word": "la mante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mantis;cloak", + "example_sentence_native": "La mante religieuse est un insecte fascinant.", + "example_sentence_english": "The praying mantis is a fascinating insect.", + "pos": "noun", + "word_frequency": 13456 + }, + { + "word": "martini", + "article_with_word": "le martini", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "martini", + "example_sentence_native": "Il a commandé un martini sec.", + "example_sentence_english": "He ordered a dry martini.", + "pos": "noun", + "word_frequency": 13457 + }, + { + "word": "modern", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modern", + "example_sentence_native": "C'est un style très modern.", + "example_sentence_english": "It's a very modern style.", + "pos": "adjective", + "word_frequency": 13460 + }, + { + "word": "moquette", + "article_with_word": "la moquette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carpet", + "example_sentence_native": "La moquette est douce sous les pieds.", + "example_sentence_english": "The carpet is soft underfoot.", + "pos": "noun", + "word_frequency": 13461 + }, + { + "word": "motorisation", + "article_with_word": "la motorisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motorization", + "example_sentence_native": "La motorisation de ce véhicule est puissante.", + "example_sentence_english": "The motorization of this vehicle is powerful.", + "pos": "noun", + "word_frequency": 13463 + }, + { + "word": "move", + "article_with_word": "le move", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "move", + "example_sentence_native": "Il a fait un bon move aux échecs.", + "example_sentence_english": "He made a good move in chess.", + "pos": "noun", + "word_frequency": 13464 + }, + { + "word": "nexus", + "article_with_word": "le nexus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nexus", + "example_sentence_native": "Ce point est le nexus de plusieurs théories.", + "example_sentence_english": "This point is the nexus of several theories.", + "pos": "noun", + "word_frequency": 13466 + }, + { + "word": "officialiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formalize;to make official", + "example_sentence_native": "Ils vont officialiser leur relation.", + "example_sentence_english": "They are going to formalize their relationship.", + "pos": "verb", + "word_frequency": 13468 + }, + { + "word": "opportuniste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunistic", + "example_sentence_native": "Il a une attitude très opportuniste.", + "example_sentence_english": "He has a very opportunistic attitude.", + "pos": "adjective", + "word_frequency": 13471 + }, + { + "word": "order", + "article_with_word": "l'order", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "order", + "example_sentence_native": "Il a passé un order pour la livraison.", + "example_sentence_english": "He placed an order for delivery.", + "pos": "noun", + "word_frequency": 13472 + }, + { + "word": "pacific", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pacific", + "example_sentence_native": "C'est une région pacific.", + "example_sentence_english": "It's a pacific region.", + "pos": "adjective", + "word_frequency": 13473 + }, + { + "word": "panoplie", + "article_with_word": "la panoplie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panoply;range;set", + "example_sentence_native": "Il a toute la panoplie du parfait campeur.", + "example_sentence_english": "He has the full panoply of the perfect camper.", + "pos": "noun", + "word_frequency": 13474 + }, + { + "word": "paraitre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to appear;to seem", + "example_sentence_native": "Le livre va paraître en septembre.", + "example_sentence_english": "The book will appear in September.", + "pos": "verb", + "word_frequency": 13475 + }, + { + "word": "pence", + "article_with_word": "le pence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pence", + "example_sentence_native": "Il a payé quelques pence pour le journal.", + "example_sentence_english": "He paid a few pence for the newspaper.", + "pos": "noun", + "word_frequency": 13476 + }, + { + "word": "persécuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persecute", + "example_sentence_native": "Ils ont été persécutés pour leurs croyances.", + "example_sentence_english": "They were persecuted for their beliefs.", + "pos": "verb", + "word_frequency": 13477 + }, + { + "word": "pornographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pornographic", + "example_sentence_native": "Le contenu pornographique est interdit sur cette plateforme.", + "example_sentence_english": "Pornographic content is forbidden on this platform.", + "pos": "adjective", + "word_frequency": 13480 + }, + { + "word": "pronom", + "article_with_word": "le pronom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pronoun", + "example_sentence_native": "Un pronom remplace un nom.", + "example_sentence_english": "A pronoun replaces a noun.", + "pos": "noun", + "word_frequency": 13482 + }, + { + "word": "propension", + "article_with_word": "la propension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propensity;tendency", + "example_sentence_native": "Il a une propension naturelle à l'optimisme.", + "example_sentence_english": "He has a natural propensity for optimism.", + "pos": "noun", + "word_frequency": 13483 + }, + { + "word": "prospérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prosper;to thrive", + "example_sentence_native": "L'entreprise continue de prospérer malgré la crise.", + "example_sentence_english": "The company continues to prosper despite the crisis.", + "pos": "verb", + "word_frequency": 13484 + }, + { + "word": "pâtissier", + "article_with_word": "le pâtissier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastry chef;baker", + "example_sentence_native": "Le pâtissier a préparé un délicieux gâteau.", + "example_sentence_english": "The pastry chef prepared a delicious cake.", + "pos": "noun", + "word_frequency": 13485 + }, + { + "word": "pâturage", + "article_with_word": "le pâturage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pasture;grazing land", + "example_sentence_native": "Les vaches paissent dans le pâturage.", + "example_sentence_english": "The cows are grazing in the pasture.", + "pos": "noun", + "word_frequency": 13486 + }, + { + "word": "rabaisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to belittle;to put down", + "example_sentence_native": "Il ne faut jamais rabaisser les autres.", + "example_sentence_english": "One should never belittle others.", + "pos": "verb", + "word_frequency": 13489 + }, + { + "word": "raccordement", + "article_with_word": "le raccordement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection;linking", + "example_sentence_native": "Le raccordement au réseau électrique est terminé.", + "example_sentence_english": "The connection to the electrical grid is complete.", + "pos": "noun", + "word_frequency": 13490 + }, + { + "word": "radioactif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radioactive", + "example_sentence_native": "Ce matériau est radioactif et doit être manipulé avec précaution.", + "example_sentence_english": "This material is radioactive and must be handled with care.", + "pos": "adjective", + "word_frequency": 13491 + }, + { + "word": "rando", + "article_with_word": "la rando", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hike;trekking (informal)", + "example_sentence_native": "On a fait une super rando ce week-end.", + "example_sentence_english": "We went on a great hike this weekend.", + "pos": "noun", + "word_frequency": 13492 + }, + { + "word": "rangement", + "article_with_word": "le rangement", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "storage;tidying up", + "example_sentence_native": "J'ai besoin de plus d'espace de rangement dans ma cuisine.", + "example_sentence_english": "I need more storage space in my kitchen.", + "pos": "noun", + "word_frequency": 13493 + }, + { + "word": "rapatriement", + "article_with_word": "le rapatriement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repatriation", + "example_sentence_native": "Le rapatriement des citoyens a été organisé.", + "example_sentence_english": "The repatriation of citizens was organized.", + "pos": "noun", + "word_frequency": 13494 + }, + { + "word": "raz", + "article_with_word": "le raz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tidal race;strong current", + "example_sentence_native": "Un raz de marée a dévasté la côte.", + "example_sentence_english": "A tidal wave devastated the coast.", + "pos": "noun", + "word_frequency": 13495 + }, + { + "word": "ready", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ready", + "example_sentence_native": "Tu es ready pour partir ?", + "example_sentence_english": "Are you ready to leave?", + "pos": "adjective", + "word_frequency": 13496 + }, + { + "word": "redémarrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to restart;to reboot", + "example_sentence_native": "Il faut redémarrer l'ordinateur.", + "example_sentence_english": "You need to restart the computer.", + "pos": "verb", + "word_frequency": 13497 + }, + { + "word": "rythmique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhythmic", + "example_sentence_native": "La gymnastique rythmique est un sport élégant.", + "example_sentence_english": "Rhythmic gymnastics is an elegant sport.", + "pos": "adjective", + "word_frequency": 13499 + }, + { + "word": "réfrigérateur", + "article_with_word": "le réfrigérateur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator;fridge", + "example_sentence_native": "Mettez le lait dans le réfrigérateur.", + "example_sentence_english": "Put the milk in the refrigerator.", + "pos": "noun", + "word_frequency": 13500 + }, + { + "word": "réticence", + "article_with_word": "la réticence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reluctance;hesitation", + "example_sentence_native": "Il a montré une certaine réticence à accepter la proposition.", + "example_sentence_english": "He showed some reluctance to accept the proposal.", + "pos": "noun", + "word_frequency": 13501 + }, + { + "word": "sclérose", + "article_with_word": "la sclérose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sclerosis", + "example_sentence_native": "La sclérose en plaques est une maladie neurologique.", + "example_sentence_english": "Multiple sclerosis is a neurological disease.", + "pos": "noun", + "word_frequency": 13504 + }, + { + "word": "search", + "article_with_word": "le search", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "search (engine;function)", + "example_sentence_native": "Fais une search sur Google pour trouver l'information.", + "example_sentence_english": "Do a search on Google to find the information.", + "pos": "noun", + "word_frequency": 13505 + }, + { + "word": "socialisation", + "article_with_word": "la socialisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialization", + "example_sentence_native": "La socialisation est essentielle au développement de l'enfant.", + "example_sentence_english": "Socialization is essential for child development.", + "pos": "noun", + "word_frequency": 13508 + }, + { + "word": "sollicitation", + "article_with_word": "la sollicitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solicitation;request", + "example_sentence_native": "Nous avons reçu de nombreuses sollicitations pour ce poste.", + "example_sentence_english": "We received many solicitations for this position.", + "pos": "noun", + "word_frequency": 13509 + }, + { + "word": "soudure", + "article_with_word": "la soudure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welding;solder", + "example_sentence_native": "Il a appris la soudure à l'école technique.", + "example_sentence_english": "He learned welding at the technical school.", + "pos": "noun", + "word_frequency": 13510 + }, + { + "word": "spécification", + "article_with_word": "la spécification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specification", + "example_sentence_native": "Les spécifications techniques du produit sont détaillées.", + "example_sentence_english": "The product's technical specifications are detailed.", + "pos": "noun", + "word_frequency": 13511 + }, + { + "word": "storm", + "article_with_word": "la storm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storm (informal anglicism)", + "example_sentence_native": "Il y a une grosse storm qui arrive.", + "example_sentence_english": "There's a big storm coming.", + "pos": "noun", + "word_frequency": 13513 + }, + { + "word": "sunnite", + "article_with_word": "le sunnite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sunni", + "example_sentence_native": "La majorité des musulmans sont sunnites.", + "example_sentence_english": "The majority of Muslims are Sunni.", + "pos": "noun", + "word_frequency": 13514 + }, + { + "word": "superviseur", + "article_with_word": "le superviseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supervisor", + "example_sentence_native": "Mon superviseur m'a donné de bons conseils.", + "example_sentence_english": "My supervisor gave me good advice.", + "pos": "noun", + "word_frequency": 13515 + }, + { + "word": "surpasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surpass;to exceed", + "example_sentence_native": "Il a réussi à se surpasser lors de la compétition.", + "example_sentence_english": "He managed to surpass himself during the competition.", + "pos": "verb", + "word_frequency": 13516 + }, + { + "word": "sésame", + "article_with_word": "le sésame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sesame", + "example_sentence_native": "Les graines de sésame sont souvent utilisées en cuisine.", + "example_sentence_english": "Sesame seeds are often used in cooking.", + "pos": "noun", + "word_frequency": 13518 + }, + { + "word": "tact", + "article_with_word": "le tact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tact;discretion", + "example_sentence_native": "Il a toujours beaucoup de tact dans ses relations.", + "example_sentence_english": "He always shows a lot of tact in his relationships.", + "pos": "noun", + "word_frequency": 13519 + }, + { + "word": "thaïlandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai", + "example_sentence_native": "La cuisine thaïlandaise est très appréciée.", + "example_sentence_english": "Thai cuisine is very appreciated.", + "pos": "adjective", + "word_frequency": 13524 + }, + { + "word": "tonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tonic;invigorating", + "example_sentence_native": "Cette boisson est très tonique après l'effort.", + "example_sentence_english": "This drink is very invigorating after exercise.", + "pos": "adjective", + "word_frequency": 13526 + }, + { + "word": "traitance", + "article_with_word": "la traitance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "processing;outsourcing", + "example_sentence_native": "La traitance des données est un enjeu majeur.", + "example_sentence_english": "Data processing is a major issue.", + "pos": "noun", + "word_frequency": 13527 + }, + { + "word": "téléréalité", + "article_with_word": "la téléréalité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reality TV", + "example_sentence_native": "Beaucoup de jeunes regardent la téléréalité.", + "example_sentence_english": "Many young people watch reality TV.", + "pos": "noun", + "word_frequency": 13529 + }, + { + "word": "ténor", + "article_with_word": "le ténor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenor", + "example_sentence_native": "Le ténor a chanté un air magnifique.", + "example_sentence_english": "The tenor sang a magnificent aria.", + "pos": "noun", + "word_frequency": 13530 + }, + { + "word": "vietnamien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Vietnamese", + "example_sentence_native": "La cuisine vietnamienne est très savoureuse.", + "example_sentence_english": "Vietnamese cuisine is very tasty.", + "pos": "adjective", + "word_frequency": 13533 + }, + { + "word": "vigoureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigorous", + "example_sentence_native": "Il a fait un effort vigoureux pour soulever la boîte.", + "example_sentence_english": "He made a vigorous effort to lift the box.", + "pos": "adverb", + "word_frequency": 13534 + }, + { + "word": "vivacité", + "article_with_word": "la vivacité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vivacity;liveliness", + "example_sentence_native": "Sa vivacité d'esprit est impressionnante.", + "example_sentence_english": "His quick wit is impressive.", + "pos": "noun", + "word_frequency": 13535 + }, + { + "word": "voiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to veil;to hide", + "example_sentence_native": "Elle a voilé son visage avec un foulard.", + "example_sentence_english": "She veiled her face with a scarf.", + "pos": "verb", + "word_frequency": 13536 + }, + { + "word": "volt", + "article_with_word": "le volt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volt", + "example_sentence_native": "La tension de cette batterie est de 12 volts.", + "example_sentence_english": "The voltage of this battery is 12 volts.", + "pos": "noun", + "word_frequency": 13537 + }, + { + "word": "écaille", + "article_with_word": "l'écaille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scale (fish;reptile)", + "example_sentence_native": "Les poissons sont recouverts d'écailles.", + "example_sentence_english": "Fish are covered in scales.", + "pos": "noun", + "word_frequency": 13540 + }, + { + "word": "équipier", + "article_with_word": "l'équipier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teammate;crew member", + "example_sentence_native": "Chaque équipier a un rôle important dans l'équipe.", + "example_sentence_english": "Each teammate has an important role in the team.", + "pos": "noun", + "word_frequency": 13541 + }, + { + "word": "étain", + "article_with_word": "l'étain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tin", + "example_sentence_native": "L'étain est un métal malléable.", + "example_sentence_english": "Tin is a malleable metal.", + "pos": "noun", + "word_frequency": 13542 + }, + { + "word": "adhérence", + "article_with_word": "l'adhérence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adhesion;grip", + "example_sentence_native": "Les pneus assurent une bonne adhérence sur la route.", + "example_sentence_english": "The tires ensure good grip on the road.", + "pos": "noun", + "word_frequency": 13543 + }, + { + "word": "algèbre", + "article_with_word": "l'algèbre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "algebra", + "example_sentence_native": "J'étudie l'algèbre au lycée.", + "example_sentence_english": "I study algebra in high school.", + "pos": "noun", + "word_frequency": 13545 + }, + { + "word": "anarchisme", + "article_with_word": "l'anarchisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchism", + "example_sentence_native": "L'anarchisme est une philosophie politique.", + "example_sentence_english": "Anarchism is a political philosophy.", + "pos": "noun", + "word_frequency": 13547 + }, + { + "word": "approximation", + "article_with_word": "l'approximation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximation", + "example_sentence_native": "C'est une approximation, pas un chiffre exact.", + "example_sentence_english": "It's an approximation, not an exact figure.", + "pos": "noun", + "word_frequency": 13550 + }, + { + "word": "argenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silvery;silver-plated", + "example_sentence_native": "Elle portait une robe argentée pour la fête.", + "example_sentence_english": "She wore a silvery dress for the party.", + "pos": "adjective", + "word_frequency": 13551 + }, + { + "word": "asphalte", + "article_with_word": "l'asphalte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asphalt", + "example_sentence_native": "La route est recouverte d'asphalte.", + "example_sentence_english": "The road is covered with asphalt.", + "pos": "noun", + "word_frequency": 13554 + }, + { + "word": "automatiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to automate", + "example_sentence_native": "Il faut automatiser ce processus pour gagner du temps.", + "example_sentence_english": "We need to automate this process to save time.", + "pos": "verb", + "word_frequency": 13556 + }, + { + "word": "aération", + "article_with_word": "l'aération", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ventilation;aeration", + "example_sentence_native": "Une bonne aération est essentielle dans la cuisine.", + "example_sentence_english": "Good ventilation is essential in the kitchen.", + "pos": "noun", + "word_frequency": 13559 + }, + { + "word": "balayage", + "article_with_word": "le balayage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweeping;highlights (hair)", + "example_sentence_native": "Le balayage des feuilles est une tâche d'automne.", + "example_sentence_english": "The sweeping of leaves is an autumn task.", + "pos": "noun", + "word_frequency": 13560 + }, + { + "word": "bale", + "article_with_word": "une bale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bale", + "example_sentence_native": "Les agriculteurs ont empilé les bales de foin.", + "example_sentence_english": "The farmers stacked the bales of hay.", + "pos": "noun", + "word_frequency": 13561 + }, + { + "word": "beauf", + "article_with_word": "le beauf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redneck;boor (colloquial)", + "example_sentence_native": "Son beauf a fait une blague de mauvais goût.", + "example_sentence_english": "His brother-in-law (redneck) made a tasteless joke.", + "pos": "noun", + "word_frequency": 13563 + }, + { + "word": "billetterie", + "article_with_word": "la billetterie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ticket office;ticketing", + "example_sentence_native": "La billetterie ouvre une heure avant le spectacle.", + "example_sentence_english": "The ticket office opens an hour before the show.", + "pos": "noun", + "word_frequency": 13564 + }, + { + "word": "binôme", + "article_with_word": "le binôme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pair;duo;partner", + "example_sentence_native": "Nous avons travaillé en binôme sur ce projet.", + "example_sentence_english": "We worked in pairs on this project.", + "pos": "noun", + "word_frequency": 13565 + }, + { + "word": "bistrot", + "article_with_word": "le bistrot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bistro;small restaurant", + "example_sentence_native": "On a déjeuné dans un petit bistrot sympa.", + "example_sentence_english": "We had lunch in a nice little bistro.", + "pos": "noun", + "word_frequency": 13566 + }, + { + "word": "bloquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blocking;prohibitive", + "example_sentence_native": "C'est un problème bloquant pour l'avancement du projet.", + "example_sentence_english": "It's a blocking issue for the project's progress.", + "pos": "adjective", + "word_frequency": 13567 + }, + { + "word": "bris", + "article_with_word": "le bris", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breakage;damage", + "example_sentence_native": "Le bris de glace a été causé par la tempête.", + "example_sentence_english": "The glass breakage was caused by the storm.", + "pos": "noun", + "word_frequency": 13571 + }, + { + "word": "bronzage", + "article_with_word": "le bronzage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tanning;tan", + "example_sentence_native": "J'ai pris un bon bronzage pendant les vacances.", + "example_sentence_english": "I got a good tan during the holidays.", + "pos": "noun", + "word_frequency": 13573 + }, + { + "word": "caféine", + "article_with_word": "la caféine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caffeine", + "example_sentence_native": "Je ne peux pas dormir si je bois de la caféine le soir.", + "example_sentence_english": "I can't sleep if I drink caffeine in the evening.", + "pos": "noun", + "word_frequency": 13574 + }, + { + "word": "caissier", + "article_with_word": "le caissier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cashier", + "example_sentence_native": "Le caissier m'a rendu la monnaie.", + "example_sentence_english": "The cashier gave me the change.", + "pos": "noun", + "word_frequency": 13575 + }, + { + "word": "catalyseur", + "article_with_word": "le catalyseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catalyst", + "example_sentence_native": "Ce facteur a agi comme un catalyseur pour le changement.", + "example_sentence_english": "This factor acted as a catalyst for change.", + "pos": "noun", + "word_frequency": 13577 + }, + { + "word": "complete", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "complete;full", + "example_sentence_native": "La liste est complète.", + "example_sentence_english": "The list is complete.", + "pos": "adjective", + "word_frequency": 13581 + }, + { + "word": "complémentarité", + "article_with_word": "la complémentarité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "complementarity", + "example_sentence_native": "La complémentarité des compétences est essentielle pour l'équipe.", + "example_sentence_english": "The complementarity of skills is essential for the team.", + "pos": "noun", + "word_frequency": 13582 + }, + { + "word": "conforter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to comfort;to strengthen", + "example_sentence_native": "Ces résultats confortent notre position.", + "example_sentence_english": "These results strengthen our position.", + "pos": "verb", + "word_frequency": 13583 + }, + { + "word": "consentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consent;to agree", + "example_sentence_native": "Il a consenti à la proposition.", + "example_sentence_english": "He consented to the proposal.", + "pos": "verb", + "word_frequency": 13584 + }, + { + "word": "contagion", + "article_with_word": "la contagion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contagion", + "example_sentence_native": "Il faut éviter la contagion du virus.", + "example_sentence_english": "We must avoid the contagion of the virus.", + "pos": "noun", + "word_frequency": 13585 + }, + { + "word": "cosmopolite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmopolitan", + "example_sentence_native": "Paris est une ville très cosmopolite.", + "example_sentence_english": "Paris is a very cosmopolitan city.", + "pos": "adjective", + "word_frequency": 13586 + }, + { + "word": "coupler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to couple;to combine", + "example_sentence_native": "Il faut coupler ces deux systèmes.", + "example_sentence_english": "These two systems need to be coupled.", + "pos": "verb", + "word_frequency": 13588 + }, + { + "word": "culpabiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make feel guilty;to feel guilty", + "example_sentence_native": "Elle se sent coupable et culpabilise beaucoup.", + "example_sentence_english": "She feels guilty and blames herself a lot.", + "pos": "verb", + "word_frequency": 13590 + }, + { + "word": "cuvée", + "article_with_word": "la cuvée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vintage;batch (wine)", + "example_sentence_native": "Cette cuvée est excellente.", + "example_sentence_english": "This vintage is excellent.", + "pos": "noun", + "word_frequency": 13591 + }, + { + "word": "dentifrice", + "article_with_word": "le dentifrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toothpaste", + "example_sentence_native": "N'oublie pas d'acheter du dentifrice.", + "example_sentence_english": "Don't forget to buy toothpaste.", + "pos": "noun", + "word_frequency": 13593 + }, + { + "word": "dissiper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissipate;to dispel", + "example_sentence_native": "Le vent a dissipé les nuages.", + "example_sentence_english": "The wind dissipated the clouds.", + "pos": "verb", + "word_frequency": 13595 + }, + { + "word": "divergent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divergent", + "example_sentence_native": "Leurs opinions sont très divergentes.", + "example_sentence_english": "Their opinions are very divergent.", + "pos": "adjective", + "word_frequency": 13596 + }, + { + "word": "divulguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disclose;to reveal", + "example_sentence_native": "Il est interdit de divulguer des informations confidentielles.", + "example_sentence_english": "It is forbidden to disclose confidential information.", + "pos": "verb", + "word_frequency": 13597 + }, + { + "word": "dynamo", + "article_with_word": "la dynamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamo;generator", + "example_sentence_native": "La dynamo de son vélo est cassée.", + "example_sentence_english": "The dynamo on his bike is broken.", + "pos": "noun", + "word_frequency": 13599 + }, + { + "word": "déchirure", + "article_with_word": "la déchirure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tear;rip", + "example_sentence_native": "Il y a une déchirure dans mon pantalon.", + "example_sentence_english": "There is a tear in my pants.", + "pos": "noun", + "word_frequency": 13600 + }, + { + "word": "dédommagement", + "article_with_word": "le dédommagement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensation;damages", + "example_sentence_native": "Il a reçu un dédommagement pour le préjudice subi.", + "example_sentence_english": "He received compensation for the damage suffered.", + "pos": "noun", + "word_frequency": 13601 + }, + { + "word": "egalité", + "article_with_word": "l'égalité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equality", + "example_sentence_native": "L'égalité des chances est importante.", + "example_sentence_english": "Equality of opportunity is important.", + "pos": "noun", + "word_frequency": 13603 + }, + { + "word": "embarcation", + "article_with_word": "l'embarcation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small boat;craft", + "example_sentence_native": "Ils ont utilisé une petite embarcation pour traverser la rivière.", + "example_sentence_english": "They used a small boat to cross the river.", + "pos": "noun", + "word_frequency": 13604 + }, + { + "word": "enflammer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ignite;to inflame", + "example_sentence_native": "Le bois sec s'est rapidement enflammé.", + "example_sentence_english": "The dry wood quickly ignited.", + "pos": "verb", + "word_frequency": 13605 + }, + { + "word": "epargne", + "article_with_word": "l'épargne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savings", + "example_sentence_native": "Il met de l'épargne de côté chaque mois.", + "example_sentence_english": "He puts savings aside every month.", + "pos": "noun", + "word_frequency": 13606 + }, + { + "word": "eternel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternal", + "example_sentence_native": "L'amour éternel est un beau rêve.", + "example_sentence_english": "Eternal love is a beautiful dream.", + "pos": "adjective", + "word_frequency": 13608 + }, + { + "word": "exquis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exquisite;delicious", + "example_sentence_native": "Ce plat est absolument exquis.", + "example_sentence_english": "This dish is absolutely exquisite.", + "pos": "adjective", + "word_frequency": 13611 + }, + { + "word": "flirt", + "article_with_word": "le flirt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flirtation;flirt", + "example_sentence_native": "C'était juste un petit flirt innocent.", + "example_sentence_english": "It was just a little innocent flirtation.", + "pos": "noun", + "word_frequency": 13613 + }, + { + "word": "fonderie", + "article_with_word": "la fonderie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundry", + "example_sentence_native": "La fonderie produit des pièces métalliques.", + "example_sentence_english": "The foundry produces metal parts.", + "pos": "noun", + "word_frequency": 13614 + }, + { + "word": "fortiori", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a fortiori;all the more so", + "example_sentence_native": "Si c'est vrai pour lui, a fortiori c'est vrai pour moi.", + "example_sentence_english": "If it's true for him, all the more so it's true for me.", + "pos": "adverb", + "word_frequency": 13617 + }, + { + "word": "fût", + "article_with_word": "le fût", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barrel;cask;shaft", + "example_sentence_native": "Le vin est stocké dans des fûts de chêne.", + "example_sentence_english": "The wine is stored in oak barrels.", + "pos": "noun", + "word_frequency": 13618 + }, + { + "word": "garnir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to garnish;to furnish;to fill", + "example_sentence_native": "Il faut garnir le plat de persil frais.", + "example_sentence_english": "You need to garnish the dish with fresh parsley.", + "pos": "verb", + "word_frequency": 13620 + }, + { + "word": "gouvernante", + "article_with_word": "la gouvernante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governess;housekeeper", + "example_sentence_native": "La gouvernante s'occupe de la maison.", + "example_sentence_english": "The housekeeper takes care of the house.", + "pos": "noun", + "word_frequency": 13623 + }, + { + "word": "guidon", + "article_with_word": "le guidon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handlebar", + "example_sentence_native": "Il tient fermement le guidon de son vélo.", + "example_sentence_english": "He holds the handlebars of his bike firmly.", + "pos": "noun", + "word_frequency": 13624 + }, + { + "word": "handicaper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to handicap;to hinder", + "example_sentence_native": "Le manque de sommeil peut handicaper vos performances.", + "example_sentence_english": "Lack of sleep can hinder your performance.", + "pos": "verb", + "word_frequency": 13626 + }, + { + "word": "hôtelier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hotel (adj.)", + "example_sentence_native": "Le secteur hôtelier est en pleine croissance.", + "example_sentence_english": "The hotel sector is growing rapidly.", + "pos": "adjective", + "word_frequency": 13630 + }, + { + "word": "imperméable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterproof;impermeable", + "example_sentence_native": "J'ai acheté un manteau imperméable pour la pluie.", + "example_sentence_english": "I bought a waterproof coat for the rain.", + "pos": "adjective", + "word_frequency": 13632 + }, + { + "word": "imposteur", + "article_with_word": "l'imposteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impostor", + "example_sentence_native": "Il s'est avéré être un imposteur.", + "example_sentence_english": "He turned out to be an impostor.", + "pos": "noun", + "word_frequency": 13633 + }, + { + "word": "inexplicable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexplicable", + "example_sentence_native": "Son comportement était inexplicable.", + "example_sentence_english": "His behavior was inexplicable.", + "pos": "adjective", + "word_frequency": 13634 + }, + { + "word": "kiffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to like;to enjoy (slang)", + "example_sentence_native": "Je kiffe trop cette chanson !", + "example_sentence_english": "I really like this song!", + "pos": "verb", + "word_frequency": 13638 + }, + { + "word": "leucémie", + "article_with_word": "la leucémie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leukemia", + "example_sentence_native": "La leucémie est une maladie grave du sang.", + "example_sentence_english": "Leukemia is a serious blood disease.", + "pos": "noun", + "word_frequency": 13644 + }, + { + "word": "lucarne", + "article_with_word": "la lucarne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dormer window;top corner (of a goal)", + "example_sentence_native": "Le footballeur a tiré le ballon en pleine lucarne.", + "example_sentence_english": "The footballer shot the ball right into the top corner.", + "pos": "noun", + "word_frequency": 13645 + }, + { + "word": "magnum", + "article_with_word": "un magnum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnum (bottle);magnum (gun)", + "example_sentence_native": "Ils ont célébré avec un magnum de champagne.", + "example_sentence_english": "They celebrated with a magnum of champagne.", + "pos": "noun", + "word_frequency": 13647 + }, + { + "word": "malice", + "article_with_word": "la malice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "malice;mischief", + "example_sentence_native": "Il y avait une pointe de malice dans son regard.", + "example_sentence_english": "There was a hint of mischief in his gaze.", + "pos": "noun", + "word_frequency": 13648 + }, + { + "word": "masser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to massage", + "example_sentence_native": "Elle aime se faire masser le cou après le travail.", + "example_sentence_english": "She likes to have her neck massaged after work.", + "pos": "verb", + "word_frequency": 13649 + }, + { + "word": "modulation", + "article_with_word": "la modulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modulation", + "example_sentence_native": "La modulation de la voix est essentielle pour un bon orateur.", + "example_sentence_english": "Voice modulation is essential for a good speaker.", + "pos": "noun", + "word_frequency": 13652 + }, + { + "word": "morbide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morbid", + "example_sentence_native": "Il a un humour un peu morbide.", + "example_sentence_english": "He has a somewhat morbid sense of humor.", + "pos": "adjective", + "word_frequency": 13654 + }, + { + "word": "mural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mural;wall (adj.)", + "example_sentence_native": "Ils ont peint une fresque murale sur le mur extérieur.", + "example_sentence_english": "They painted a mural fresco on the exterior wall.", + "pos": "adjective", + "word_frequency": 13658 + }, + { + "word": "novateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "innovative;pioneering", + "example_sentence_native": "Son idée est très novatrice et prometteuse.", + "example_sentence_english": "His idea is very innovative and promising.", + "pos": "adjective", + "word_frequency": 13662 + }, + { + "word": "ogre", + "article_with_word": "un ogre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ogre", + "example_sentence_native": "Dans les contes de fées, l'ogre est souvent méchant.", + "example_sentence_english": "In fairy tales, the ogre is often wicked.", + "pos": "noun", + "word_frequency": 13663 + }, + { + "word": "oligarchie", + "article_with_word": "une oligarchie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oligarchy", + "example_sentence_native": "Le pays est dirigé par une petite oligarchie.", + "example_sentence_english": "The country is ruled by a small oligarchy.", + "pos": "noun", + "word_frequency": 13664 + }, + { + "word": "oued", + "article_with_word": "un oued", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wadi;dry riverbed", + "example_sentence_native": "L'oued est à sec pendant la saison chaude.", + "example_sentence_english": "The wadi is dry during the hot season.", + "pos": "noun", + "word_frequency": 13666 + }, + { + "word": "paperasse", + "article_with_word": "la paperasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paperwork;red tape", + "example_sentence_native": "Il y a beaucoup de paperasse à remplir pour cette demande.", + "example_sentence_english": "There's a lot of paperwork to fill out for this application.", + "pos": "noun", + "word_frequency": 13667 + }, + { + "word": "pastel", + "article_with_word": "le pastel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastel (color;medium)", + "example_sentence_native": "Elle a peint le paysage avec des couleurs pastel.", + "example_sentence_english": "She painted the landscape with pastel colors.", + "pos": "noun", + "word_frequency": 13668 + }, + { + "word": "penny", + "article_with_word": "un penny", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penny", + "example_sentence_native": "Je n'ai pas un seul penny sur moi.", + "example_sentence_english": "I don't have a single penny on me.", + "pos": "noun", + "word_frequency": 13669 + }, + { + "word": "percussion", + "article_with_word": "la percussion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percussion", + "example_sentence_native": "Il joue des instruments à percussion dans un groupe de jazz.", + "example_sentence_english": "He plays percussion instruments in a jazz band.", + "pos": "noun", + "word_frequency": 13670 + }, + { + "word": "persistant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistent", + "example_sentence_native": "Il a fait preuve d'une toux persistante pendant des jours.", + "example_sentence_english": "He had a persistent cough for days.", + "pos": "adjective", + "word_frequency": 13671 + }, + { + "word": "person", + "article_with_word": "une personne", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "person", + "example_sentence_native": "C'est une personne très gentille et serviable.", + "example_sentence_english": "She is a very kind and helpful person.", + "pos": "noun", + "word_frequency": 13672 + }, + { + "word": "personnalisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personalized;customized", + "example_sentence_native": "Nous offrons un service personnalisé à chaque client.", + "example_sentence_english": "We offer a personalized service to each client.", + "pos": "adjective", + "word_frequency": 13673 + }, + { + "word": "piquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spicy;pungent;witty", + "example_sentence_native": "Ce plat est un peu piquant, mais délicieux.", + "example_sentence_english": "This dish is a bit spicy, but delicious.", + "pos": "adjective", + "word_frequency": 13674 + }, + { + "word": "placebo", + "article_with_word": "un placebo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "placebo", + "example_sentence_native": "L'effet placebo est un phénomène fascinant en médecine.", + "example_sentence_english": "The placebo effect is a fascinating phenomenon in medicine.", + "pos": "noun", + "word_frequency": 13675 + }, + { + "word": "plongeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plunging;diving", + "example_sentence_native": "Elle portait une robe au décolleté plongeant.", + "example_sentence_english": "She wore a dress with a plunging neckline.", + "pos": "adjective", + "word_frequency": 13676 + }, + { + "word": "pléiade", + "article_with_word": "la Pléiade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Pleiades (constellation;literary group)", + "example_sentence_native": "La Pléiade est un groupe d'étoiles visible dans le ciel nocturne.", + "example_sentence_english": "The Pleiades is a group of stars visible in the night sky.", + "pos": "noun", + "word_frequency": 13677 + }, + { + "word": "pondre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lay (eggs);to churn out (figurative)", + "example_sentence_native": "La poule va pondre un œuf ce matin.", + "example_sentence_english": "The hen is going to lay an egg this morning.", + "pos": "verb", + "word_frequency": 13678 + }, + { + "word": "popcorn", + "article_with_word": "le popcorn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "popcorn", + "example_sentence_native": "Nous avons mangé du popcorn en regardant le film.", + "example_sentence_english": "We ate popcorn while watching the movie.", + "pos": "noun", + "word_frequency": 13679 + }, + { + "word": "postulat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "postulate", + "example_sentence_native": "Le postulat de base de cette théorie est que tout est énergie.", + "example_sentence_english": "The basic postulate of this theory is that everything is energy.", + "pos": "noun", + "word_frequency": 13680 + }, + { + "word": "pressing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressing (sports)", + "example_sentence_native": "L'équipe a exercé un pressing intense sur l'adversaire.", + "example_sentence_english": "The team exerted intense pressing on the opponent.", + "pos": "noun", + "word_frequency": 13681 + }, + { + "word": "prospective", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foresight", + "example_sentence_native": "La prospective est essentielle pour anticiper les défis futurs.", + "example_sentence_english": "Foresight is essential for anticipating future challenges.", + "pos": "noun", + "word_frequency": 13682 + }, + { + "word": "proviseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headmaster", + "example_sentence_native": "Le proviseur a annoncé les nouvelles règles de l'école.", + "example_sentence_english": "The headmaster announced the new school rules.", + "pos": "noun", + "word_frequency": 13683 + }, + { + "word": "prédominance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predominance", + "example_sentence_native": "Il y a une nette prédominance des énergies renouvelables dans ce projet.", + "example_sentence_english": "There is a clear predominance of renewable energies in this project.", + "pos": "noun", + "word_frequency": 13684 + }, + { + "word": "psaume", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psalm", + "example_sentence_native": "Elle a lu un psaume lors de la cérémonie.", + "example_sentence_english": "She read a psalm during the ceremony.", + "pos": "noun", + "word_frequency": 13685 + }, + { + "word": "psychanalyste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychoanalyst", + "example_sentence_native": "Le psychanalyste l'a aidée à comprendre ses rêves.", + "example_sentence_english": "The psychoanalyst helped her understand her dreams.", + "pos": "noun", + "word_frequency": 13686 + }, + { + "word": "purification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purification", + "example_sentence_native": "La purification de l'eau est un processus essentiel.", + "example_sentence_english": "Water purification is an essential process.", + "pos": "noun", + "word_frequency": 13687 + }, + { + "word": "putsch", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coup", + "example_sentence_native": "Le putsch a échoué grâce à la résistance populaire.", + "example_sentence_english": "The coup failed thanks to popular resistance.", + "pos": "noun", + "word_frequency": 13688 + }, + { + "word": "pétard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firecracker", + "example_sentence_native": "Les enfants ont allumé des pétards pour le Nouvel An.", + "example_sentence_english": "The children lit firecrackers for New Year's.", + "pos": "noun", + "word_frequency": 13689 + }, + { + "word": "rai", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ray (of light)", + "example_sentence_native": "Un rai de lumière traversait les nuages.", + "example_sentence_english": "A ray of light pierced through the clouds.", + "pos": "noun", + "word_frequency": 13690 + }, + { + "word": "rance", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rancid", + "example_sentence_native": "Le beurre est devenu rance.", + "example_sentence_english": "The butter has gone rancid.", + "pos": "adjective", + "word_frequency": 13692 + }, + { + "word": "ratifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ratify", + "example_sentence_native": "Le parlement doit ratifier le traité international.", + "example_sentence_english": "The parliament must ratify the international treaty.", + "pos": "verb", + "word_frequency": 13693 + }, + { + "word": "relativité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relativity", + "example_sentence_native": "La théorie de la relativité a révolutionné la physique.", + "example_sentence_english": "The theory of relativity revolutionized physics.", + "pos": "noun", + "word_frequency": 13694 + }, + { + "word": "replacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put back", + "example_sentence_native": "Peux-tu replacer le livre sur l'étagère ?", + "example_sentence_english": "Can you put the book back on the shelf?", + "pos": "verb", + "word_frequency": 13695 + }, + { + "word": "repérage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spotting;locating", + "example_sentence_native": "Le repérage des lieux est crucial avant le tournage.", + "example_sentence_english": "Locating the sites is crucial before filming.", + "pos": "noun", + "word_frequency": 13696 + }, + { + "word": "ridiculiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ridicule", + "example_sentence_native": "Il n'aime pas qu'on le ridiculise en public.", + "example_sentence_english": "He doesn't like being ridiculed in public.", + "pos": "verb", + "word_frequency": 13697 + }, + { + "word": "rosée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dew", + "example_sentence_native": "La rosée du matin brillait sur l'herbe.", + "example_sentence_english": "The morning dew sparkled on the grass.", + "pos": "noun", + "word_frequency": 13699 + }, + { + "word": "rwandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Rwandan", + "example_sentence_native": "Elle a rencontré un artiste rwandais.", + "example_sentence_english": "She met a Rwandan artist.", + "pos": "adjective", + "word_frequency": 13701 + }, + { + "word": "réunification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reunification", + "example_sentence_native": "La réunification de l'Allemagne a eu lieu en 1990.", + "example_sentence_english": "The reunification of Germany took place in 1990.", + "pos": "noun", + "word_frequency": 13702 + }, + { + "word": "révocation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revocation", + "example_sentence_native": "La révocation de son permis de conduire a été confirmée.", + "example_sentence_english": "The revocation of his driving license was confirmed.", + "pos": "noun", + "word_frequency": 13703 + }, + { + "word": "rôti", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roast (meat)", + "example_sentence_native": "Nous avons mangé un délicieux rôti de bœuf.", + "example_sentence_english": "We ate a delicious roast beef.", + "pos": "noun", + "word_frequency": 13704 + }, + { + "word": "safe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safe", + "example_sentence_native": "C'est un endroit safe pour les enfants.", + "example_sentence_english": "It's a safe place for children.", + "pos": "adjective", + "word_frequency": 13705 + }, + { + "word": "salutation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greeting", + "example_sentence_native": "Il a fait une brève salutation avant de partir.", + "example_sentence_english": "He made a brief greeting before leaving.", + "pos": "noun", + "word_frequency": 13706 + }, + { + "word": "sami", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sami (person;language)", + "example_sentence_native": "Le peuple Sami vit dans le nord de la Scandinavie.", + "example_sentence_english": "The Sami people live in northern Scandinavia.", + "pos": "noun", + "word_frequency": 13707 + }, + { + "word": "samouraï", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "samurai", + "example_sentence_native": "Le samouraï était un guerrier japonais.", + "example_sentence_english": "The samurai was a Japanese warrior.", + "pos": "noun", + "word_frequency": 13708 + }, + { + "word": "sculpter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sculpt", + "example_sentence_native": "L'artiste a sculpté une statue en marbre.", + "example_sentence_english": "The artist sculpted a marble statue.", + "pos": "verb", + "word_frequency": 13709 + }, + { + "word": "seller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to saddle", + "example_sentence_native": "Il faut seller le cheval avant de partir.", + "example_sentence_english": "We need to saddle the horse before leaving.", + "pos": "verb", + "word_frequency": 13710 + }, + { + "word": "serrurier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locksmith", + "example_sentence_native": "J'ai appelé le serrurier pour réparer la serrure.", + "example_sentence_english": "I called the locksmith to repair the lock.", + "pos": "noun", + "word_frequency": 13711 + }, + { + "word": "sillon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furrow", + "example_sentence_native": "Le tracteur a laissé un profond sillon dans le champ.", + "example_sentence_english": "The tractor left a deep furrow in the field.", + "pos": "noun", + "word_frequency": 13714 + }, + { + "word": "simultané", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneous", + "example_sentence_native": "Les deux événements étaient simultanés.", + "example_sentence_english": "The two events were simultaneous.", + "pos": "adjective", + "word_frequency": 13715 + }, + { + "word": "singer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ape;to mimic", + "example_sentence_native": "Il aime singer les gestes de son professeur.", + "example_sentence_english": "He likes to ape his teacher's gestures.", + "pos": "verb", + "word_frequency": 13716 + }, + { + "word": "sociable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sociable", + "example_sentence_native": "C'est une personne très sociable et ouverte.", + "example_sentence_english": "She is a very sociable and open person.", + "pos": "adjective", + "word_frequency": 13717 + }, + { + "word": "subsaharien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sub-Saharan", + "example_sentence_native": "La région subsaharienne fait face à de nombreux défis.", + "example_sentence_english": "The sub-Saharan region faces many challenges.", + "pos": "adjective", + "word_frequency": 13719 + }, + { + "word": "sédiment", + "article_with_word": "le sédiment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sediment", + "example_sentence_native": "Le sédiment au fond du lac est très fin.", + "example_sentence_english": "The sediment at the bottom of the lake is very fine.", + "pos": "noun", + "word_frequency": 13720 + }, + { + "word": "sélectionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selected", + "example_sentence_native": "Les candidats sélectionnés passeront un entretien.", + "example_sentence_english": "The selected candidates will have an interview.", + "pos": "adjective", + "word_frequency": 13721 + }, + { + "word": "terrien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthling;terrestrial", + "example_sentence_native": "Les explorateurs ont rencontré une civilisation terrienne.", + "example_sentence_english": "The explorers met an earthling civilization.", + "pos": "adjective", + "word_frequency": 13722 + }, + { + "word": "terrier", + "article_with_word": "le terrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burrow;den", + "example_sentence_native": "Le lapin a creusé un terrier profond.", + "example_sentence_english": "The rabbit dug a deep burrow.", + "pos": "noun", + "word_frequency": 13723 + }, + { + "word": "traiteur", + "article_with_word": "le traiteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caterer", + "example_sentence_native": "Nous avons engagé un traiteur pour la fête.", + "example_sentence_english": "We hired a caterer for the party.", + "pos": "noun", + "word_frequency": 13726 + }, + { + "word": "tremblant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trembling;shaking", + "example_sentence_native": "Il avait les mains tremblantes de froid.", + "example_sentence_english": "He had hands trembling from the cold.", + "pos": "adjective", + "word_frequency": 13727 + }, + { + "word": "téton", + "article_with_word": "le téton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nipple", + "example_sentence_native": "Le bébé a cherché le téton de sa mère.", + "example_sentence_english": "The baby looked for its mother's nipple.", + "pos": "noun", + "word_frequency": 13728 + }, + { + "word": "veillée", + "article_with_word": "la veillée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigil;evening gathering", + "example_sentence_native": "Nous avons passé la veillée à raconter des histoires.", + "example_sentence_english": "We spent the evening gathering telling stories.", + "pos": "noun", + "word_frequency": 13730 + }, + { + "word": "veuf", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widowed (male)", + "example_sentence_native": "Après la guerre, il est devenu veuf.", + "example_sentence_english": "After the war, he became widowed.", + "pos": "adjective", + "word_frequency": 13732 + }, + { + "word": "visionnage", + "article_with_word": "le visionnage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewing;watching", + "example_sentence_native": "Le visionnage de ce film est déconseillé aux jeunes enfants.", + "example_sentence_english": "The viewing of this film is not recommended for young children.", + "pos": "noun", + "word_frequency": 13733 + }, + { + "word": "vivier", + "article_with_word": "le vivier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fishpond;breeding ground;talent pool", + "example_sentence_native": "Cette école est un vivier de jeunes talents.", + "example_sentence_english": "This school is a breeding ground for young talents.", + "pos": "noun", + "word_frequency": 13735 + }, + { + "word": "abaissement", + "article_with_word": "l'abaissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lowering;reduction", + "example_sentence_native": "L'abaissement des températures est attendu.", + "example_sentence_english": "The lowering of temperatures is expected.", + "pos": "noun", + "word_frequency": 13737 + }, + { + "word": "abîmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to damage;to spoil", + "example_sentence_native": "Fais attention à ne pas abîmer le livre.", + "example_sentence_english": "Be careful not to damage the book.", + "pos": "verb", + "word_frequency": 13738 + }, + { + "word": "accommoder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accommodate;to adapt;to prepare (food)", + "example_sentence_native": "Il faut s'accommoder des circonstances.", + "example_sentence_english": "One must adapt to the circumstances.", + "pos": "verb", + "word_frequency": 13739 + }, + { + "word": "accordéon", + "article_with_word": "l'accordéon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accordion", + "example_sentence_native": "Mon grand-père joue de l'accordéon.", + "example_sentence_english": "My grandfather plays the accordion.", + "pos": "noun", + "word_frequency": 13740 + }, + { + "word": "alternant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternating;apprentice (as noun)", + "example_sentence_native": "Il suit un rythme alternant travail et études.", + "example_sentence_english": "He follows an alternating rhythm of work and study.", + "pos": "adjective", + "word_frequency": 13742 + }, + { + "word": "alternativement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternatively", + "example_sentence_native": "Ils se relaient alternativement pour la garde.", + "example_sentence_english": "They take turns alternatively for childcare.", + "pos": "adverb", + "word_frequency": 13743 + }, + { + "word": "altérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to alter;to impair", + "example_sentence_native": "Le temps peut altérer la qualité du bois.", + "example_sentence_english": "Time can alter the quality of wood.", + "pos": "verb", + "word_frequency": 13744 + }, + { + "word": "antérieurement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "previously;formerly", + "example_sentence_native": "Le document avait été signé antérieurement.", + "example_sentence_english": "The document had been signed previously.", + "pos": "adverb", + "word_frequency": 13746 + }, + { + "word": "apocalyptique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apocalyptic", + "example_sentence_native": "Le film dépeint un scénario apocalyptique.", + "example_sentence_english": "The film depicts an apocalyptic scenario.", + "pos": "adjective", + "word_frequency": 13747 + }, + { + "word": "arab", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arab;Arabic", + "example_sentence_native": "La langue arabe est parlée dans de nombreux pays.", + "example_sentence_english": "The Arabic language is spoken in many countries.", + "pos": "adjective", + "word_frequency": 13749 + }, + { + "word": "arithmétique", + "article_with_word": "l'arithmétique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arithmetic", + "example_sentence_native": "L'arithmétique est la base des mathématiques.", + "example_sentence_english": "Arithmetic is the basis of mathematics.", + "pos": "noun", + "word_frequency": 13750 + }, + { + "word": "assaillant", + "article_with_word": "l'assaillant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assailant;attacker", + "example_sentence_native": "L'assaillant a été maîtrisé par la police.", + "example_sentence_english": "The assailant was apprehended by the police.", + "pos": "noun", + "word_frequency": 13752 + }, + { + "word": "biographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biographical", + "example_sentence_native": "Ce film est une œuvre biographique sur sa vie.", + "example_sentence_english": "This film is a biographical work about his life.", + "pos": "adjective", + "word_frequency": 13755 + }, + { + "word": "blouson", + "article_with_word": "le blouson", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jacket;bomber jacket", + "example_sentence_native": "Il a mis son blouson avant de sortir.", + "example_sentence_english": "He put on his jacket before going out.", + "pos": "noun", + "word_frequency": 13756 + }, + { + "word": "bongo", + "article_with_word": "le bongo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bongo (drum)", + "example_sentence_native": "Elle joue du bongo dans un groupe de jazz.", + "example_sentence_english": "She plays the bongo in a jazz band.", + "pos": "noun", + "word_frequency": 13757 + }, + { + "word": "cacahuète", + "article_with_word": "la cacahuète", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peanut", + "example_sentence_native": "J'aime manger des cacahuètes salées.", + "example_sentence_english": "I like to eat salted peanuts.", + "pos": "noun", + "word_frequency": 13760 + }, + { + "word": "capillaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capillary;hair-related", + "example_sentence_native": "Elle a des problèmes capillaires.", + "example_sentence_english": "She has hair problems.", + "pos": "adjective", + "word_frequency": 13763 + }, + { + "word": "carabine", + "article_with_word": "la carabine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rifle;carbine", + "example_sentence_native": "Le chasseur portait une carabine sur son épaule.", + "example_sentence_english": "The hunter carried a rifle on his shoulder.", + "pos": "noun", + "word_frequency": 13764 + }, + { + "word": "caser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fit in;to place", + "example_sentence_native": "J'ai réussi à caser toutes mes affaires dans la valise.", + "example_sentence_english": "I managed to fit all my things into the suitcase.", + "pos": "verb", + "word_frequency": 13765 + }, + { + "word": "chaleureusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warmly", + "example_sentence_native": "Il a été accueilli chaleureusement.", + "example_sentence_english": "He was warmly welcomed.", + "pos": "adverb", + "word_frequency": 13767 + }, + { + "word": "chaudron", + "article_with_word": "le chaudron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cauldron", + "example_sentence_native": "La sorcière remuait son chaudron.", + "example_sentence_english": "The witch stirred her cauldron.", + "pos": "noun", + "word_frequency": 13768 + }, + { + "word": "click", + "article_with_word": "le click", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "click", + "example_sentence_native": "Un simple click suffit pour ouvrir le fichier.", + "example_sentence_english": "A simple click is enough to open the file.", + "pos": "noun", + "word_frequency": 13772 + }, + { + "word": "coast", + "article_with_word": "la coast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coast (often in 'West Coast')", + "example_sentence_native": "Il aime la musique de la West Coast.", + "example_sentence_english": "He likes West Coast music.", + "pos": "noun", + "word_frequency": 13773 + }, + { + "word": "cohorte", + "article_with_word": "la cohorte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cohort", + "example_sentence_native": "Une cohorte d'étudiants a visité le musée.", + "example_sentence_english": "A cohort of students visited the museum.", + "pos": "noun", + "word_frequency": 13774 + }, + { + "word": "congélateur", + "article_with_word": "le congélateur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "freezer", + "example_sentence_native": "Mettez la glace dans le congélateur.", + "example_sentence_english": "Put the ice cream in the freezer.", + "pos": "noun", + "word_frequency": 13775 + }, + { + "word": "constatation", + "article_with_word": "la constatation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observation;finding", + "example_sentence_native": "La constatation des faits est essentielle.", + "example_sentence_english": "The observation of facts is essential.", + "pos": "noun", + "word_frequency": 13776 + }, + { + "word": "corbeille", + "article_with_word": "la corbeille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basket;wastebasket", + "example_sentence_native": "Jetez les papiers dans la corbeille.", + "example_sentence_english": "Throw the papers in the wastebasket.", + "pos": "noun", + "word_frequency": 13777 + }, + { + "word": "couchant", + "article_with_word": "le couchant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sunset;west (as in 'setting sun')", + "example_sentence_native": "Nous avons admiré le soleil couchant sur la mer.", + "example_sentence_english": "We admired the setting sun over the sea.", + "pos": "noun", + "word_frequency": 13778 + }, + { + "word": "crotte", + "article_with_word": "la crotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "droppings;poop (animal)", + "example_sentence_native": "Attention aux crottes de chien sur le trottoir.", + "example_sentence_english": "Watch out for dog droppings on the sidewalk.", + "pos": "noun", + "word_frequency": 13779 + }, + { + "word": "cutané", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cutaneous;skin-related", + "example_sentence_native": "Il a une réaction cutanée à ce produit.", + "example_sentence_english": "He has a cutaneous reaction to this product.", + "pos": "adjective", + "word_frequency": 13780 + }, + { + "word": "disparité", + "article_with_word": "la disparité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disparity", + "example_sentence_native": "Il existe une grande disparité entre les revenus.", + "example_sentence_english": "There is a great disparity between incomes.", + "pos": "noun", + "word_frequency": 13783 + }, + { + "word": "dissous", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissolved;disbanded", + "example_sentence_native": "Le sucre est complètement dissous dans l'eau.", + "example_sentence_english": "The sugar is completely dissolved in the water.", + "pos": "adjective", + "word_frequency": 13784 + }, + { + "word": "dogmatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dogmatic", + "example_sentence_native": "Son approche est trop dogmatique.", + "example_sentence_english": "His approach is too dogmatic.", + "pos": "adjective", + "word_frequency": 13785 + }, + { + "word": "dote", + "article_with_word": "la dot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dowry", + "example_sentence_native": "La dot était une tradition ancienne.", + "example_sentence_english": "The dowry was an ancient tradition.", + "pos": "noun", + "word_frequency": 13786 + }, + { + "word": "dramaturge", + "article_with_word": "le dramaturge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "playwright", + "example_sentence_native": "Le dramaturge a écrit une nouvelle pièce.", + "example_sentence_english": "The playwright wrote a new play.", + "pos": "noun", + "word_frequency": 13788 + }, + { + "word": "décomposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decompose;to break down", + "example_sentence_native": "Les feuilles mortes se décomposent en humus.", + "example_sentence_english": "Dead leaves decompose into humus.", + "pos": "verb", + "word_frequency": 13789 + }, + { + "word": "décryptage", + "article_with_word": "le décryptage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decryption;decoding", + "example_sentence_native": "Le décryptage des données est en cours.", + "example_sentence_english": "The data decryption is in progress.", + "pos": "noun", + "word_frequency": 13790 + }, + { + "word": "dégoûter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disgust;to put off", + "example_sentence_native": "Cette odeur me dégoûte.", + "example_sentence_english": "This smell disgusts me.", + "pos": "verb", + "word_frequency": 13791 + }, + { + "word": "dévier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deviate;to swerve", + "example_sentence_native": "La voiture a dévié de sa trajectoire.", + "example_sentence_english": "The car swerved from its trajectory.", + "pos": "verb", + "word_frequency": 13792 + }, + { + "word": "dévolu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devolved;assigned", + "example_sentence_native": "Cette tâche lui est dévolue.", + "example_sentence_english": "This task is assigned to him.", + "pos": "adjective", + "word_frequency": 13793 + }, + { + "word": "effacement", + "article_with_word": "l'effacement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erasure;fading", + "example_sentence_native": "L'effacement des données est irréversible.", + "example_sentence_english": "Data erasure is irreversible.", + "pos": "noun", + "word_frequency": 13794 + }, + { + "word": "effraie", + "article_with_word": "l'effraie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barn owl", + "example_sentence_native": "On a vu une effraie des clochers dans le grenier.", + "example_sentence_english": "We saw a barn owl in the attic.", + "pos": "noun", + "word_frequency": 13795 + }, + { + "word": "encens", + "article_with_word": "l'encens", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incense", + "example_sentence_native": "L'odeur de l'encens remplissait la pièce.", + "example_sentence_english": "The smell of incense filled the room.", + "pos": "noun", + "word_frequency": 13796 + }, + { + "word": "entraver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hinder;to impede", + "example_sentence_native": "Le manque de fonds peut entraver le projet.", + "example_sentence_english": "Lack of funds can hinder the project.", + "pos": "verb", + "word_frequency": 13797 + }, + { + "word": "finaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to finalize", + "example_sentence_native": "Nous devons finaliser le projet avant la date limite.", + "example_sentence_english": "We must finalize the project before the deadline.", + "pos": "verb", + "word_frequency": 13801 + }, + { + "word": "flag", + "article_with_word": "le flag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flag (computing;sports)", + "example_sentence_native": "Le programme utilise un flag pour indiquer l'état de la tâche.", + "example_sentence_english": "The program uses a flag to indicate the task's status.", + "pos": "noun", + "word_frequency": 13803 + }, + { + "word": "flair", + "article_with_word": "le flair", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flair;instinct", + "example_sentence_native": "Elle a un flair incroyable pour dénicher les bonnes affaires.", + "example_sentence_english": "She has an incredible flair for finding good deals.", + "pos": "noun", + "word_frequency": 13804 + }, + { + "word": "fluo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fluorescent", + "example_sentence_native": "Il porte un gilet jaune fluo pour sa sécurité.", + "example_sentence_english": "He wears a fluorescent yellow vest for his safety.", + "pos": "adjective", + "word_frequency": 13805 + }, + { + "word": "fougère", + "article_with_word": "la fougère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fern", + "example_sentence_native": "Les fougères poussent abondamment dans cette forêt humide.", + "example_sentence_english": "Ferns grow abundantly in this humid forest.", + "pos": "noun", + "word_frequency": 13807 + }, + { + "word": "fourrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stuff;to shove", + "example_sentence_native": "Il a fourré ses mains dans ses poches pour se réchauffer.", + "example_sentence_english": "He shoved his hands into his pockets to warm up.", + "pos": "verb", + "word_frequency": 13808 + }, + { + "word": "fraudeur", + "article_with_word": "le fraudeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraudster;cheater", + "example_sentence_native": "Le fraudeur a été démasqué et arrêté par les autorités.", + "example_sentence_english": "The fraudster was unmasked and arrested by the authorities.", + "pos": "noun", + "word_frequency": 13809 + }, + { + "word": "frontalier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross-border (adj.)", + "example_sentence_native": "De nombreux travailleurs frontaliers vivent en France et travaillent en Suisse.", + "example_sentence_english": "Many cross-border workers live in France and work in Switzerland.", + "pos": "adjective", + "word_frequency": 13810 + }, + { + "word": "galant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chivalrous;gallant", + "example_sentence_native": "Il a été très galant en lui offrant sa veste.", + "example_sentence_english": "He was very gallant in offering her his jacket.", + "pos": "adjective", + "word_frequency": 13811 + }, + { + "word": "globule", + "article_with_word": "le globule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globule", + "example_sentence_native": "Les globules blancs jouent un rôle essentiel dans le système immunitaire.", + "example_sentence_english": "White globules play an essential role in the immune system.", + "pos": "noun", + "word_frequency": 13813 + }, + { + "word": "gnu", + "article_with_word": "le gnou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gnu;wildebeest", + "example_sentence_native": "Les gnous migrent en masse à travers la savane africaine.", + "example_sentence_english": "Gnus migrate in large numbers across the African savanna.", + "pos": "noun", + "word_frequency": 13814 + }, + { + "word": "hémicycle", + "article_with_word": "l'hémicycle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemicycle;chamber (of parliament)", + "example_sentence_native": "Les députés se sont réunis dans l'hémicycle pour le débat.", + "example_sentence_english": "The deputies gathered in the chamber for the debate.", + "pos": "noun", + "word_frequency": 13819 + }, + { + "word": "idéaliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idealistic", + "example_sentence_native": "Elle est une personne très idéaliste, toujours pleine d'espoir.", + "example_sentence_english": "She is a very idealistic person, always full of hope.", + "pos": "adjective", + "word_frequency": 13820 + }, + { + "word": "inconditionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconditional", + "example_sentence_native": "Son amour pour ses enfants est inconditionnel.", + "example_sentence_english": "His love for his children is unconditional.", + "pos": "adjective", + "word_frequency": 13821 + }, + { + "word": "invariablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invariably", + "example_sentence_native": "Il arrive invariablement en retard à tous les rendez-vous.", + "example_sentence_english": "He invariably arrives late for all appointments.", + "pos": "adverb", + "word_frequency": 13822 + }, + { + "word": "lisière", + "article_with_word": "la lisière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edge;border (of a forest;fabric)", + "example_sentence_native": "Nous avons marché le long de la lisière de la forêt.", + "example_sentence_english": "We walked along the edge of the forest.", + "pos": "noun", + "word_frequency": 13836 + }, + { + "word": "loulou", + "article_with_word": "le loulou", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweetie;darling (informal);small dog", + "example_sentence_native": "Viens ici, mon petit loulou, je vais te faire un câlin !", + "example_sentence_english": "Come here, my little sweetie, I'm going to give you a hug!", + "pos": "noun", + "word_frequency": 13839 + }, + { + "word": "lourdeur", + "article_with_word": "la lourdeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heaviness;sluggishness", + "example_sentence_native": "Je ressens une lourdeur dans les jambes après cette longue marche.", + "example_sentence_english": "I feel a heaviness in my legs after this long walk.", + "pos": "noun", + "word_frequency": 13840 + }, + { + "word": "marcheur", + "article_with_word": "le marcheur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walker;hiker", + "example_sentence_native": "Le marcheur a terminé son parcours en trois heures.", + "example_sentence_english": "The walker finished his route in three hours.", + "pos": "noun", + "word_frequency": 13845 + }, + { + "word": "masturber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to masturbate", + "example_sentence_native": "Des études montrent que certains animaux peuvent se masturber.", + "example_sentence_english": "Studies show that some animals can masturbate.", + "pos": "verb", + "word_frequency": 13847 + }, + { + "word": "militantisme", + "article_with_word": "le militantisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activism;militancy", + "example_sentence_native": "Son militantisme pour l'environnement est admirable.", + "example_sentence_english": "His environmental activism is admirable.", + "pos": "noun", + "word_frequency": 13850 + }, + { + "word": "morue", + "article_with_word": "la morue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cod (fish)", + "example_sentence_native": "J'ai commandé de la morue avec des légumes.", + "example_sentence_english": "I ordered cod with vegetables.", + "pos": "noun", + "word_frequency": 13854 + }, + { + "word": "nominal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nominal;in name only", + "example_sentence_native": "Il a un rôle nominal dans l'entreprise.", + "example_sentence_english": "He has a nominal role in the company.", + "pos": "adjective", + "word_frequency": 13862 + }, + { + "word": "nébuleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nebulous;vague;hazy", + "example_sentence_native": "Ses explications étaient un peu nébuleuses.", + "example_sentence_english": "His explanations were a bit nebulous.", + "pos": "adjective", + "word_frequency": 13866 + }, + { + "word": "offenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to offend", + "example_sentence_native": "Je ne voulais pas t'offenser avec mes paroles.", + "example_sentence_english": "I didn't mean to offend you with my words.", + "pos": "verb", + "word_frequency": 13867 + }, + { + "word": "omnibus", + "article_with_word": "l'omnibus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnibus (collection of works;or old-fashioned bus)", + "example_sentence_native": "Cet omnibus contient toutes les nouvelles de l'auteur.", + "example_sentence_english": "This omnibus contains all the author's short stories.", + "pos": "noun", + "word_frequency": 13869 + }, + { + "word": "opacité", + "article_with_word": "l'opacité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opacity", + "example_sentence_native": "L'opacité de la vitre empêche de voir à travers.", + "example_sentence_english": "The opacity of the glass prevents seeing through.", + "pos": "noun", + "word_frequency": 13870 + }, + { + "word": "panache", + "article_with_word": "le panache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plume (on a helmet);flair;dash;swagger", + "example_sentence_native": "Il a répondu avec beaucoup de panache.", + "example_sentence_english": "He replied with great flair.", + "pos": "noun", + "word_frequency": 13872 + }, + { + "word": "pancréas", + "article_with_word": "le pancréas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pancreas", + "example_sentence_native": "Le pancréas joue un rôle essentiel dans la digestion.", + "example_sentence_english": "The pancreas plays an essential role in digestion.", + "pos": "noun", + "word_frequency": 13873 + }, + { + "word": "pendaison", + "article_with_word": "la pendaison", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hanging (execution)", + "example_sentence_native": "La pendaison était une méthode d'exécution courante autrefois.", + "example_sentence_english": "Hanging was a common method of execution in the past.", + "pos": "noun", + "word_frequency": 13874 + }, + { + "word": "peuplement", + "article_with_word": "le peuplement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settlement;population (of an area);stocking (of fish)", + "example_sentence_native": "Le peuplement de cette région est très ancien.", + "example_sentence_english": "The settlement of this region is very old.", + "pos": "noun", + "word_frequency": 13875 + }, + { + "word": "plaquette", + "article_with_word": "la plaquette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leaflet;brochure;plate;(blood) platelet", + "example_sentence_native": "J'ai pris une plaquette d'information à l'office de tourisme.", + "example_sentence_english": "I took an information leaflet at the tourist office.", + "pos": "noun", + "word_frequency": 13877 + }, + { + "word": "polarisation", + "article_with_word": "la polarisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polarization", + "example_sentence_native": "La polarisation des opinions est un défi pour la démocratie.", + "example_sentence_english": "The polarization of opinions is a challenge for democracy.", + "pos": "noun", + "word_frequency": 13878 + }, + { + "word": "profane", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profane;secular", + "example_sentence_native": "Il a utilisé un langage profane.", + "example_sentence_english": "He used profane language.", + "pos": "adjective", + "word_frequency": 13880 + }, + { + "word": "précepte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precept;maxim", + "example_sentence_native": "Les préceptes moraux guident nos actions.", + "example_sentence_english": "Moral precepts guide our actions.", + "pos": "noun", + "word_frequency": 13881 + }, + { + "word": "prêche", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sermon;preaching", + "example_sentence_native": "Le prêche du pasteur était très inspirant.", + "example_sentence_english": "The pastor's sermon was very inspiring.", + "pos": "noun", + "word_frequency": 13882 + }, + { + "word": "rallonge", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extension cord;extension", + "example_sentence_native": "J'ai besoin d'une rallonge pour brancher la lampe.", + "example_sentence_english": "I need an extension cord to plug in the lamp.", + "pos": "noun", + "word_frequency": 13885 + }, + { + "word": "recycler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to recycle", + "example_sentence_native": "Nous devons recycler nos déchets.", + "example_sentence_english": "We must recycle our waste.", + "pos": "verb", + "word_frequency": 13886 + }, + { + "word": "redécouvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rediscover", + "example_sentence_native": "J'aime redécouvrir de vieux livres.", + "example_sentence_english": "I like to rediscover old books.", + "pos": "verb", + "word_frequency": 13887 + }, + { + "word": "remarquablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remarkably", + "example_sentence_native": "Il a remarquablement bien joué.", + "example_sentence_english": "He played remarkably well.", + "pos": "adverb", + "word_frequency": 13888 + }, + { + "word": "représentativité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representativeness", + "example_sentence_native": "La représentativité des syndicats est essentielle.", + "example_sentence_english": "The representativeness of trade unions is essential.", + "pos": "noun", + "word_frequency": 13889 + }, + { + "word": "revirement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "U-turn;reversal", + "example_sentence_native": "Le gouvernement a fait un revirement sur cette question.", + "example_sentence_english": "The government made a U-turn on this issue.", + "pos": "noun", + "word_frequency": 13890 + }, + { + "word": "rocheux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocky", + "example_sentence_native": "Le terrain était très rocheux.", + "example_sentence_english": "The terrain was very rocky.", + "pos": "adjective", + "word_frequency": 13891 + }, + { + "word": "ronger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gnaw;to corrode", + "example_sentence_native": "Le doute le rongeait.", + "example_sentence_english": "Doubt was gnawing at him.", + "pos": "verb", + "word_frequency": 13892 + }, + { + "word": "réaménagement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reorganization;redevelopment", + "example_sentence_native": "Le réaménagement du quartier est en cours.", + "example_sentence_english": "The redevelopment of the neighborhood is underway.", + "pos": "noun", + "word_frequency": 13894 + }, + { + "word": "résilier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cancel;to terminate (a contract)", + "example_sentence_native": "Il a décidé de résilier son contrat.", + "example_sentence_english": "He decided to terminate his contract.", + "pos": "verb", + "word_frequency": 13895 + }, + { + "word": "salafiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Salafist", + "example_sentence_native": "Le mouvement salafiste est une branche de l'islam sunnite.", + "example_sentence_english": "The Salafist movement is a branch of Sunni Islam.", + "pos": "adjective", + "word_frequency": 13896 + }, + { + "word": "satin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satin", + "example_sentence_native": "Elle portait une robe en satin.", + "example_sentence_english": "She wore a satin dress.", + "pos": "noun", + "word_frequency": 13897 + }, + { + "word": "sensualité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensuality", + "example_sentence_native": "Sa danse exprimait une grande sensualité.", + "example_sentence_english": "Her dance expressed great sensuality.", + "pos": "noun", + "word_frequency": 13898 + }, + { + "word": "serial", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serial (as in a series;or a serial killer)", + "example_sentence_native": "C'est un serial entrepreneur.", + "example_sentence_english": "He is a serial entrepreneur.", + "pos": "noun", + "word_frequency": 13899 + }, + { + "word": "solennellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemnly", + "example_sentence_native": "Il a solennellement promis de dire la vérité.", + "example_sentence_english": "He solemnly promised to tell the truth.", + "pos": "adverb", + "word_frequency": 13900 + }, + { + "word": "spaghetti", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spaghetti", + "example_sentence_native": "J'adore manger des spaghettis à la bolognaise.", + "example_sentence_english": "I love eating spaghetti bolognese.", + "pos": "noun", + "word_frequency": 13901 + }, + { + "word": "stature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stature;height", + "example_sentence_native": "Il a une grande stature dans le monde politique.", + "example_sentence_english": "He has great stature in the political world.", + "pos": "noun", + "word_frequency": 13903 + }, + { + "word": "stresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stress;to get stressed", + "example_sentence_native": "Ne te stresse pas pour l'examen.", + "example_sentence_english": "Don't stress about the exam.", + "pos": "verb", + "word_frequency": 13905 + }, + { + "word": "survol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overview;flyover", + "example_sentence_native": "J'ai fait un survol rapide du rapport.", + "example_sentence_english": "I did a quick overview of the report.", + "pos": "noun", + "word_frequency": 13906 + }, + { + "word": "tacle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tackle (in sports)", + "example_sentence_native": "Le défenseur a fait un tacle parfait.", + "example_sentence_english": "The defender made a perfect tackle.", + "pos": "noun", + "word_frequency": 13909 + }, + { + "word": "templier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Templar", + "example_sentence_native": "Les Templiers étaient un ordre militaire religieux.", + "example_sentence_english": "The Templars were a religious military order.", + "pos": "noun", + "word_frequency": 13910 + }, + { + "word": "terne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dull;lackluster", + "example_sentence_native": "La couleur de ce mur est un peu terne.", + "example_sentence_english": "The color of this wall is a bit dull.", + "pos": "adjective", + "word_frequency": 13911 + }, + { + "word": "terreau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potting soil;compost", + "example_sentence_native": "J'ai acheté du terreau pour mes plantes.", + "example_sentence_english": "I bought potting soil for my plants.", + "pos": "noun", + "word_frequency": 13912 + }, + { + "word": "tournesol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunflower", + "example_sentence_native": "Les champs de tournesols sont magnifiques en été.", + "example_sentence_english": "Sunflower fields are beautiful in summer.", + "pos": "noun", + "word_frequency": 13917 + }, + { + "word": "traumatiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to traumatize", + "example_sentence_native": "L'accident l'a beaucoup traumatisé.", + "example_sentence_english": "The accident traumatized him a lot.", + "pos": "verb", + "word_frequency": 13919 + }, + { + "word": "trouvaille", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "find;discovery", + "example_sentence_native": "Cette vieille carte est une vraie trouvaille.", + "example_sentence_english": "This old map is a real find.", + "pos": "noun", + "word_frequency": 13920 + }, + { + "word": "truck", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck", + "example_sentence_native": "Il a acheté un nouveau truck pour transporter ses marchandises.", + "example_sentence_english": "He bought a new truck to transport his goods.", + "pos": "noun", + "word_frequency": 13921 + }, + { + "word": "truite", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trout", + "example_sentence_native": "J'ai pêché une belle truite dans la rivière.", + "example_sentence_english": "I caught a beautiful trout in the river.", + "pos": "noun", + "word_frequency": 13922 + }, + { + "word": "trèfle", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clover;club (suit)", + "example_sentence_native": "J'ai trouvé un trèfle à quatre feuilles.", + "example_sentence_english": "I found a four-leaf clover.", + "pos": "noun", + "word_frequency": 13923 + }, + { + "word": "tune", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money (slang)", + "example_sentence_native": "Il n'a pas beaucoup de tunes en ce moment.", + "example_sentence_english": "He doesn't have much money right now.", + "pos": "noun", + "word_frequency": 13924 + }, + { + "word": "xxl", + "article_with_word": "du", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "XXL (extra extra large)", + "example_sentence_native": "Je cherche un t-shirt en taille XXL.", + "example_sentence_english": "I'm looking for an XXL size t-shirt.", + "pos": "noun", + "word_frequency": 13930 + }, + { + "word": "zizi", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "willy;pee-pee (childish for penis)", + "example_sentence_native": "Le petit garçon a montré son zizi.", + "example_sentence_english": "The little boy showed his willy.", + "pos": "noun", + "word_frequency": 13931 + }, + { + "word": "échographie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultrasound;sonogram", + "example_sentence_native": "Elle a eu une échographie pour voir le bébé.", + "example_sentence_english": "She had an ultrasound to see the baby.", + "pos": "noun", + "word_frequency": 13933 + }, + { + "word": "éclatant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brilliant;dazzling;striking", + "example_sentence_native": "Ses yeux avaient un éclatant bleu.", + "example_sentence_english": "Her eyes had a dazzling blue.", + "pos": "adjective", + "word_frequency": 13934 + }, + { + "word": "accrochage", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minor collision;skirmish;hanging (of pictures)", + "example_sentence_native": "Il y a eu un léger accrochage sur la route.", + "example_sentence_english": "There was a minor collision on the road.", + "pos": "noun", + "word_frequency": 13938 + }, + { + "word": "acheminement", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "routing;dispatch;delivery", + "example_sentence_native": "L'acheminement des colis prendra deux jours.", + "example_sentence_english": "The delivery of the packages will take two days.", + "pos": "noun", + "word_frequency": 13939 + }, + { + "word": "altercation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altercation;dispute", + "example_sentence_native": "Une altercation a éclaté entre les deux voisins.", + "example_sentence_english": "An altercation broke out between the two neighbors.", + "pos": "noun", + "word_frequency": 13940 + }, + { + "word": "aqueduc", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aqueduct", + "example_sentence_native": "Le Pont du Gard est un ancien aqueduc romain.", + "example_sentence_english": "The Pont du Gard is an ancient Roman aqueduct.", + "pos": "noun", + "word_frequency": 13942 + }, + { + "word": "argumentaire", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "set of arguments;sales pitch;brief", + "example_sentence_native": "Il a préparé un argumentaire solide pour sa présentation.", + "example_sentence_english": "He prepared a solid set of arguments for his presentation.", + "pos": "noun", + "word_frequency": 13943 + }, + { + "word": "attentionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thoughtful;considerate", + "example_sentence_native": "C'est un homme très attentionné envers sa famille.", + "example_sentence_english": "He is a very thoughtful man towards his family.", + "pos": "adjective", + "word_frequency": 13944 + }, + { + "word": "baltique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Baltic", + "example_sentence_native": "La mer Baltique est située en Europe du Nord.", + "example_sentence_english": "The Baltic Sea is located in Northern Europe.", + "pos": "adjective", + "word_frequency": 13945 + }, + { + "word": "border", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to border;to edge;to line", + "example_sentence_native": "La rivière borde la forêt.", + "example_sentence_english": "The river borders the forest.", + "pos": "verb", + "word_frequency": 13947 + }, + { + "word": "burkini", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burkini", + "example_sentence_native": "Le port du burkini a suscité des débats.", + "example_sentence_english": "Wearing the burkini has sparked debates.", + "pos": "noun", + "word_frequency": 13948 + }, + { + "word": "burlesque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burlesque;farcical", + "example_sentence_native": "Le spectacle était très burlesque et amusant.", + "example_sentence_english": "The show was very burlesque and amusing.", + "pos": "adjective", + "word_frequency": 13949 + }, + { + "word": "cab", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cab;taxi;cabin", + "example_sentence_native": "On a pris un cab pour rentrer à la maison.", + "example_sentence_english": "We took a cab to go home.", + "pos": "noun", + "word_frequency": 13950 + }, + { + "word": "caler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stall (engine);to wedge;to prop up;to settle", + "example_sentence_native": "La voiture a calé au feu rouge.", + "example_sentence_english": "The car stalled at the red light.", + "pos": "verb", + "word_frequency": 13951 + }, + { + "word": "canular", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hoax;prank;practical joke", + "example_sentence_native": "C'était juste un canular téléphonique.", + "example_sentence_english": "It was just a phone prank.", + "pos": "noun", + "word_frequency": 13952 + }, + { + "word": "catégoriquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "categorically", + "example_sentence_native": "Il a catégoriquement nié les accusations.", + "example_sentence_english": "He categorically denied the accusations.", + "pos": "adverb", + "word_frequency": 13953 + }, + { + "word": "chiffrement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encryption;ciphering", + "example_sentence_native": "Le chiffrement des données est essentiel pour la sécurité.", + "example_sentence_english": "Data encryption is essential for security.", + "pos": "noun", + "word_frequency": 13954 + }, + { + "word": "chiffrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to encrypt;to estimate;to quantify", + "example_sentence_native": "Il faut chiffrer le coût du projet.", + "example_sentence_english": "We need to estimate the cost of the project.", + "pos": "verb", + "word_frequency": 13955 + }, + { + "word": "cobalt", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cobalt", + "example_sentence_native": "Le cobalt est un métal utilisé dans les batteries.", + "example_sentence_english": "Cobalt is a metal used in batteries.", + "pos": "noun", + "word_frequency": 13958 + }, + { + "word": "coffee", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coffee", + "example_sentence_native": "Le coffee shop propose différentes sortes de coffee.", + "example_sentence_english": "The coffee shop offers different kinds of coffee.", + "pos": "noun", + "word_frequency": 13959 + }, + { + "word": "colo", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summer camp", + "example_sentence_native": "Les enfants sont partis en colo pour deux semaines.", + "example_sentence_english": "The children went to summer camp for two weeks.", + "pos": "noun", + "word_frequency": 13960 + }, + { + "word": "condensation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condensation", + "example_sentence_native": "Il y a de la condensation sur les fenêtres le matin.", + "example_sentence_english": "There is condensation on the windows in the morning.", + "pos": "noun", + "word_frequency": 13962 + }, + { + "word": "confiscation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confiscation", + "example_sentence_native": "La confiscation des biens a été ordonnée par le tribunal.", + "example_sentence_english": "The confiscation of goods was ordered by the court.", + "pos": "noun", + "word_frequency": 13963 + }, + { + "word": "conquis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conquered;won over", + "example_sentence_native": "Le public était conquis par sa performance.", + "example_sentence_english": "The audience was won over by his performance.", + "pos": "adjective", + "word_frequency": 13964 + }, + { + "word": "cougar", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cougar", + "example_sentence_native": "Le cougar est un grand félin d'Amérique.", + "example_sentence_english": "The cougar is a large American feline.", + "pos": "noun", + "word_frequency": 13965 + }, + { + "word": "coupole", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dome", + "example_sentence_native": "La coupole du Panthéon est impressionnante.", + "example_sentence_english": "The dome of the Pantheon is impressive.", + "pos": "noun", + "word_frequency": 13966 + }, + { + "word": "cueillette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "picking;gathering", + "example_sentence_native": "Nous avons fait une cueillette de champignons en forêt.", + "example_sentence_english": "We went mushroom picking in the forest.", + "pos": "noun", + "word_frequency": 13967 + }, + { + "word": "dej", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lunch (informal)", + "example_sentence_native": "On se voit pour le déj demain ?", + "example_sentence_english": "Shall we meet for lunch tomorrow?", + "pos": "noun", + "word_frequency": 13968 + }, + { + "word": "diacre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deacon", + "example_sentence_native": "Le diacre a assisté le prêtre pendant la messe.", + "example_sentence_english": "The deacon assisted the priest during the mass.", + "pos": "noun", + "word_frequency": 13969 + }, + { + "word": "discréditer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discredit", + "example_sentence_native": "Ils ont essayé de discréditer son témoignage.", + "example_sentence_english": "They tried to discredit his testimony.", + "pos": "verb", + "word_frequency": 13970 + }, + { + "word": "débourser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disburse;to spend", + "example_sentence_native": "Il a dû débourser une grosse somme pour les réparations.", + "example_sentence_english": "He had to disburse a large sum for the repairs.", + "pos": "verb", + "word_frequency": 13973 + }, + { + "word": "déchiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torn;ripped", + "example_sentence_native": "Son pantalon était déchiré au genou.", + "example_sentence_english": "His pants were torn at the knee.", + "pos": "adjective", + "word_frequency": 13974 + }, + { + "word": "déjouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to thwart;to foil", + "example_sentence_native": "La police a réussi à déjouer le complot.", + "example_sentence_english": "The police managed to thwart the plot.", + "pos": "verb", + "word_frequency": 13975 + }, + { + "word": "empirique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "empirical", + "example_sentence_native": "Cette conclusion est basée sur des preuves empiriques.", + "example_sentence_english": "This conclusion is based on empirical evidence.", + "pos": "adjective", + "word_frequency": 13976 + }, + { + "word": "endommagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damaged", + "example_sentence_native": "Le bâtiment a été gravement endommagé par l'incendie.", + "example_sentence_english": "The building was severely damaged by the fire.", + "pos": "adjective", + "word_frequency": 13977 + }, + { + "word": "ermite", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermit", + "example_sentence_native": "Il a choisi de vivre comme un ermite dans les montagnes.", + "example_sentence_english": "He chose to live as a hermit in the mountains.", + "pos": "noun", + "word_frequency": 13978 + }, + { + "word": "escapade", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escapade;getaway", + "example_sentence_native": "Ils ont fait une petite escapade à la campagne ce week-end.", + "example_sentence_english": "They took a short getaway to the countryside this weekend.", + "pos": "noun", + "word_frequency": 13979 + }, + { + "word": "escouade", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squad", + "example_sentence_native": "Une escouade de policiers est arrivée sur les lieux.", + "example_sentence_english": "A squad of police officers arrived on the scene.", + "pos": "noun", + "word_frequency": 13980 + }, + { + "word": "faciès", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "facies;appearance", + "example_sentence_native": "Le faciès de cette roche indique son origine volcanique.", + "example_sentence_english": "The facies of this rock indicates its volcanic origin.", + "pos": "noun", + "word_frequency": 13981 + }, + { + "word": "forgeron", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blacksmith", + "example_sentence_native": "Le forgeron a fabriqué une nouvelle grille en fer forgé.", + "example_sentence_english": "The blacksmith made a new wrought iron gate.", + "pos": "noun", + "word_frequency": 13984 + }, + { + "word": "frayeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fright;terror", + "example_sentence_native": "Elle a eu une grande frayeur en voyant l'araignée.", + "example_sentence_english": "She got a great fright when she saw the spider.", + "pos": "noun", + "word_frequency": 13985 + }, + { + "word": "futuriste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "futuristic", + "example_sentence_native": "L'architecture de ce bâtiment est très futuriste.", + "example_sentence_english": "The architecture of this building is very futuristic.", + "pos": "adjective", + "word_frequency": 13986 + }, + { + "word": "hippie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hippie", + "example_sentence_native": "Les hippies prônaient la paix et l'amour.", + "example_sentence_english": "Hippies advocated peace and love.", + "pos": "noun", + "word_frequency": 13993 + }, + { + "word": "hisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hoist;to raise", + "example_sentence_native": "Ils ont hissé le drapeau au sommet du mât.", + "example_sentence_english": "They hoisted the flag to the top of the mast.", + "pos": "verb", + "word_frequency": 13994 + }, + { + "word": "incohérence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incoherence;inconsistency", + "example_sentence_native": "Il y a une incohérence dans son témoignage.", + "example_sentence_english": "There is an inconsistency in his testimony.", + "pos": "noun", + "word_frequency": 13997 + }, + { + "word": "inspecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inspect", + "example_sentence_native": "L'ingénieur est venu inspecter les travaux.", + "example_sentence_english": "The engineer came to inspect the works.", + "pos": "verb", + "word_frequency": 13998 + }, + { + "word": "interrogé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogated;questioned", + "example_sentence_native": "Le suspect a été interrogé pendant des heures.", + "example_sentence_english": "The suspect was interrogated for hours.", + "pos": "adjective", + "word_frequency": 13999 + }, + { + "word": "jacuzzi", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jacuzzi", + "example_sentence_native": "Nous avons un jacuzzi dans le jardin.", + "example_sentence_english": "We have a jacuzzi in the garden.", + "pos": "noun", + "word_frequency": 14001 + }, + { + "word": "javel", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bleach", + "example_sentence_native": "Attention, l'eau de Javel est corrosive.", + "example_sentence_english": "Be careful, bleach is corrosive.", + "pos": "noun", + "word_frequency": 14002 + }, + { + "word": "joyau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jewel;gem", + "example_sentence_native": "Ce collier est orné de magnifiques joyaux.", + "example_sentence_english": "This necklace is adorned with magnificent jewels.", + "pos": "noun", + "word_frequency": 14003 + }, + { + "word": "kiné", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physiotherapist (informal)", + "example_sentence_native": "Je dois aller voir le kiné pour mon dos.", + "example_sentence_english": "I need to go see the physiotherapist for my back.", + "pos": "noun", + "word_frequency": 14005 + }, + { + "word": "libyen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Libyan", + "example_sentence_native": "Le drapeau libyen est vert, noir et rouge.", + "example_sentence_english": "The Libyan flag is green, black, and red.", + "pos": "adjective", + "word_frequency": 14008 + }, + { + "word": "ligament", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ligament", + "example_sentence_native": "Il s'est déchiré un ligament au genou.", + "example_sentence_english": "He tore a ligament in his knee.", + "pos": "noun", + "word_frequency": 14009 + }, + { + "word": "limitrophe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bordering;adjacent", + "example_sentence_native": "La France a plusieurs pays limitrophes.", + "example_sentence_english": "France has several bordering countries.", + "pos": "adjective", + "word_frequency": 14010 + }, + { + "word": "locuteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker (of a language)", + "example_sentence_native": "Il est un locuteur natif du français.", + "example_sentence_english": "He is a native speaker of French.", + "pos": "noun", + "word_frequency": 14011 + }, + { + "word": "loft", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loft", + "example_sentence_native": "Ils ont transformé l'ancien entrepôt en un magnifique loft.", + "example_sentence_english": "They transformed the old warehouse into a magnificent loft.", + "pos": "noun", + "word_frequency": 14012 + }, + { + "word": "maniaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous;obsessive", + "example_sentence_native": "Elle est très maniaque avec la propreté de sa maison.", + "example_sentence_english": "She is very meticulous about the cleanliness of her house.", + "pos": "adjective", + "word_frequency": 14014 + }, + { + "word": "marabout", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marabou (stork);spiritual leader", + "example_sentence_native": "Le marabout est un grand oiseau charognard.", + "example_sentence_english": "The marabou is a large scavenging bird.", + "pos": "noun", + "word_frequency": 14015 + }, + { + "word": "marmite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cooking pot;stewpot", + "example_sentence_native": "Elle a préparé une soupe dans une grande marmite.", + "example_sentence_english": "She prepared a soup in a large cooking pot.", + "pos": "noun", + "word_frequency": 14016 + }, + { + "word": "matricule", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registration number;employee number", + "example_sentence_native": "Veuillez indiquer votre numéro de matricule sur le formulaire.", + "example_sentence_english": "Please indicate your registration number on the form.", + "pos": "noun", + "word_frequency": 14018 + }, + { + "word": "mauve", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mauve;purple", + "example_sentence_native": "Elle portait une robe mauve.", + "example_sentence_english": "She was wearing a mauve dress.", + "pos": "adjective", + "word_frequency": 14019 + }, + { + "word": "motel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motel", + "example_sentence_native": "Nous avons passé la nuit dans un petit motel au bord de la route.", + "example_sentence_english": "We spent the night in a small motel by the roadside.", + "pos": "noun", + "word_frequency": 14022 + }, + { + "word": "mécénat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patronage;sponsorship", + "example_sentence_native": "L'entreprise soutient l'art par le mécénat.", + "example_sentence_english": "The company supports art through patronage.", + "pos": "noun", + "word_frequency": 14026 + }, + { + "word": "niais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naive;silly;foolish", + "example_sentence_native": "Il a posé une question un peu niaise.", + "example_sentence_english": "He asked a somewhat silly question.", + "pos": "adjective", + "word_frequency": 14028 + }, + { + "word": "noirceur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "darkness;blackness", + "example_sentence_native": "La noirceur de la nuit était totale.", + "example_sentence_english": "The blackness of the night was total.", + "pos": "noun", + "word_frequency": 14029 + }, + { + "word": "omniprésent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipresent;ubiquitous", + "example_sentence_native": "La technologie est devenue omniprésente dans nos vies.", + "example_sentence_english": "Technology has become omnipresent in our lives.", + "pos": "adjective", + "word_frequency": 14032 + }, + { + "word": "omnium", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnium (multi-discipline event;or a type of insurance)", + "example_sentence_native": "Il a remporté l'omnium cycliste.", + "example_sentence_english": "He won the cycling omnium.", + "pos": "noun", + "word_frequency": 14033 + }, + { + "word": "passablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerably;fairly;reasonably", + "example_sentence_native": "Il parle passablement bien le français.", + "example_sentence_english": "He speaks French tolerably well.", + "pos": "adverb", + "word_frequency": 14038 + }, + { + "word": "patin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skate (ice skate;roller skate);slipper (for furniture)", + "example_sentence_native": "J'ai acheté de nouveaux patins à glace.", + "example_sentence_english": "I bought new ice skates.", + "pos": "noun", + "word_frequency": 14039 + }, + { + "word": "païen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pagan", + "example_sentence_native": "Les rites païens étaient courants avant le christianisme.", + "example_sentence_english": "Pagan rites were common before Christianity.", + "pos": "adjective", + "word_frequency": 14040 + }, + { + "word": "perceptible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perceptible", + "example_sentence_native": "Le changement était à peine perceptible.", + "example_sentence_english": "The change was barely perceptible.", + "pos": "adjective", + "word_frequency": 14041 + }, + { + "word": "persan", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Persian", + "example_sentence_native": "Elle a un chat persan.", + "example_sentence_english": "She has a Persian cat.", + "pos": "adjective", + "word_frequency": 14042 + }, + { + "word": "poilu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairy", + "example_sentence_native": "Ce chien est très poilu.", + "example_sentence_english": "This dog is very hairy.", + "pos": "adjective", + "word_frequency": 14043 + }, + { + "word": "pomper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pump", + "example_sentence_native": "Il faut pomper l'eau du sous-sol.", + "example_sentence_english": "We need to pump the water from the basement.", + "pos": "verb", + "word_frequency": 14044 + }, + { + "word": "prédicateur", + "article_with_word": "le prédicateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preacher", + "example_sentence_native": "Le prédicateur a prononcé un sermon inspirant.", + "example_sentence_english": "The preacher delivered an inspiring sermon.", + "pos": "noun", + "word_frequency": 14045 + }, + { + "word": "périlleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perilous", + "example_sentence_native": "C'était une mission périlleuse.", + "example_sentence_english": "It was a perilous mission.", + "pos": "adjective", + "word_frequency": 14046 + }, + { + "word": "rationalité", + "article_with_word": "la rationalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rationality", + "example_sentence_native": "Il a toujours fait preuve de rationalité dans ses décisions.", + "example_sentence_english": "He always showed rationality in his decisions.", + "pos": "noun", + "word_frequency": 14048 + }, + { + "word": "repentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repent", + "example_sentence_native": "Il s'est repenti de ses erreurs.", + "example_sentence_english": "He repented of his mistakes.", + "pos": "verb", + "word_frequency": 14050 + }, + { + "word": "rouble", + "article_with_word": "le rouble", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruble", + "example_sentence_native": "La monnaie russe est le rouble.", + "example_sentence_english": "The Russian currency is the ruble.", + "pos": "noun", + "word_frequency": 14052 + }, + { + "word": "réfractaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refractory;resistant", + "example_sentence_native": "Il est réfractaire à toute forme d'autorité.", + "example_sentence_english": "He is resistant to any form of authority.", + "pos": "adjective", + "word_frequency": 14055 + }, + { + "word": "sacoche", + "article_with_word": "la sacoche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satchel;small bag", + "example_sentence_native": "Il portait une sacoche en cuir.", + "example_sentence_english": "He was carrying a leather satchel.", + "pos": "noun", + "word_frequency": 14056 + }, + { + "word": "saisonnier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seasonal", + "example_sentence_native": "Le travail saisonnier est courant dans l'agriculture.", + "example_sentence_english": "Seasonal work is common in agriculture.", + "pos": "adjective", + "word_frequency": 14057 + }, + { + "word": "salsa", + "article_with_word": "la salsa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salsa", + "example_sentence_native": "J'adore danser la salsa.", + "example_sentence_english": "I love dancing salsa.", + "pos": "noun", + "word_frequency": 14058 + }, + { + "word": "sauna", + "article_with_word": "le sauna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sauna", + "example_sentence_native": "Nous allons au sauna après le sport.", + "example_sentence_english": "We go to the sauna after sports.", + "pos": "noun", + "word_frequency": 14060 + }, + { + "word": "sensuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensual", + "example_sentence_native": "Sa voix était très sensuelle.", + "example_sentence_english": "Her voice was very sensual.", + "pos": "adjective", + "word_frequency": 14062 + }, + { + "word": "sordide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sordid", + "example_sentence_native": "Il vivait dans des conditions sordides.", + "example_sentence_english": "He lived in sordid conditions.", + "pos": "adjective", + "word_frequency": 14065 + }, + { + "word": "statuette", + "article_with_word": "la statuette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statuette;figurine", + "example_sentence_native": "Elle a acheté une petite statuette en bois.", + "example_sentence_english": "She bought a small wooden statuette.", + "pos": "noun", + "word_frequency": 14066 + }, + { + "word": "superviser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supervise", + "example_sentence_native": "Il doit superviser l'équipe.", + "example_sentence_english": "He has to supervise the team.", + "pos": "verb", + "word_frequency": 14067 + }, + { + "word": "syllabe", + "article_with_word": "la syllabe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syllable", + "example_sentence_native": "Le mot \"bonjour\" a deux syllabes.", + "example_sentence_english": "The word \"bonjour\" has two syllables.", + "pos": "noun", + "word_frequency": 14068 + }, + { + "word": "symbolisme", + "article_with_word": "le symbolisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolism", + "example_sentence_native": "Le symbolisme est un mouvement artistique.", + "example_sentence_english": "Symbolism is an artistic movement.", + "pos": "noun", + "word_frequency": 14069 + }, + { + "word": "synchronisation", + "article_with_word": "la synchronisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronization", + "example_sentence_native": "La synchronisation des données est essentielle.", + "example_sentence_english": "Data synchronization is essential.", + "pos": "noun", + "word_frequency": 14070 + }, + { + "word": "tabagisme", + "article_with_word": "le tabagisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smoking (as a habit;addiction)", + "example_sentence_native": "Le tabagisme est nocif pour la santé.", + "example_sentence_english": "Smoking is harmful to health.", + "pos": "noun", + "word_frequency": 14071 + }, + { + "word": "ténacité", + "article_with_word": "la ténacité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenacity", + "example_sentence_native": "Sa ténacité lui a permis de réussir.", + "example_sentence_english": "His tenacity allowed him to succeed.", + "pos": "noun", + "word_frequency": 14075 + }, + { + "word": "vacciner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vaccinate", + "example_sentence_native": "Il faut se faire vacciner contre la grippe.", + "example_sentence_english": "You need to get vaccinated against the flu.", + "pos": "verb", + "word_frequency": 14076 + }, + { + "word": "vassal", + "article_with_word": "le vassal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vassal", + "example_sentence_native": "Le vassal devait allégeance à son seigneur.", + "example_sentence_english": "The vassal owed allegiance to his lord.", + "pos": "noun", + "word_frequency": 14077 + }, + { + "word": "verve", + "article_with_word": "la verve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "verve;enthusiasm;spirit", + "example_sentence_native": "Il a parlé avec beaucoup de verve.", + "example_sentence_english": "He spoke with great verve.", + "pos": "noun", + "word_frequency": 14078 + }, + { + "word": "vexer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to vex;to offend;to annoy", + "example_sentence_native": "Ne te vexe pas pour si peu.", + "example_sentence_english": "Don't get offended for so little.", + "pos": "verb", + "word_frequency": 14079 + }, + { + "word": "vivace", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perennial;lively", + "example_sentence_native": "Cette plante est vivace et fleurit chaque année.", + "example_sentence_english": "This plant is perennial and flowers every year.", + "pos": "adjective", + "word_frequency": 14080 + }, + { + "word": "vraisemblable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plausible;likely", + "example_sentence_native": "Son explication semble vraisemblable.", + "example_sentence_english": "His explanation seems plausible.", + "pos": "adjective", + "word_frequency": 14081 + }, + { + "word": "véto", + "article_with_word": "un véto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vet (informal)", + "example_sentence_native": "Nous devons emmener le chien chez le véto.", + "example_sentence_english": "We need to take the dog to the vet.", + "pos": "noun", + "word_frequency": 14083 + }, + { + "word": "égaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to equal;to match", + "example_sentence_native": "Personne ne peut égaler son talent.", + "example_sentence_english": "No one can equal his talent.", + "pos": "verb", + "word_frequency": 14086 + }, + { + "word": "égalisation", + "article_with_word": "l'égalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equalization;equalizer", + "example_sentence_native": "L'égalisation est arrivée à la dernière minute du match.", + "example_sentence_english": "The equalizer came in the last minute of the match.", + "pos": "noun", + "word_frequency": 14087 + }, + { + "word": "épineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorny;tricky", + "example_sentence_native": "C'est une question épineuse à résoudre.", + "example_sentence_english": "It's a thorny question to resolve.", + "pos": "adjective", + "word_frequency": 14088 + }, + { + "word": "éviction", + "article_with_word": "l'éviction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eviction;removal", + "example_sentence_native": "Le locataire a reçu un avis d'éviction.", + "example_sentence_english": "The tenant received an eviction notice.", + "pos": "noun", + "word_frequency": 14090 + }, + { + "word": "abdominal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abdominal", + "example_sentence_native": "Il ressent une douleur abdominale.", + "example_sentence_english": "He feels an abdominal pain.", + "pos": "adjective", + "word_frequency": 14091 + }, + { + "word": "aberration", + "article_with_word": "une aberration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aberration", + "example_sentence_native": "C'est une aberration de la nature.", + "example_sentence_english": "It's an aberration of nature.", + "pos": "noun", + "word_frequency": 14092 + }, + { + "word": "affiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refine;to sharpen", + "example_sentence_native": "Il faut affiner les détails du projet.", + "example_sentence_english": "We need to refine the details of the project.", + "pos": "verb", + "word_frequency": 14093 + }, + { + "word": "agréer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to agree to;to accept", + "example_sentence_native": "Veuillez agréer, Madame, Monsieur, l'expression de mes salutations distinguées.", + "example_sentence_english": "Please accept, Madam, Sir, the expression of my distinguished regards.", + "pos": "verb", + "word_frequency": 14094 + }, + { + "word": "alibi", + "article_with_word": "un alibi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alibi", + "example_sentence_native": "Il a un alibi solide pour la nuit du crime.", + "example_sentence_english": "He has a solid alibi for the night of the crime.", + "pos": "noun", + "word_frequency": 14096 + }, + { + "word": "allumette", + "article_with_word": "une allumette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "match (for lighting)", + "example_sentence_native": "Peux-tu me passer une allumette, s'il te plaît ?", + "example_sentence_english": "Can you pass me a match, please?", + "pos": "noun", + "word_frequency": 14097 + }, + { + "word": "argot", + "article_with_word": "l'argot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slang;argot", + "example_sentence_native": "Il parle souvent en argot.", + "example_sentence_english": "He often speaks in slang.", + "pos": "noun", + "word_frequency": 14099 + }, + { + "word": "astre", + "article_with_word": "un astre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celestial body;star", + "example_sentence_native": "Les astres brillent dans le ciel nocturne.", + "example_sentence_english": "The celestial bodies shine in the night sky.", + "pos": "noun", + "word_frequency": 14100 + }, + { + "word": "auditorium", + "article_with_word": "un auditorium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auditorium", + "example_sentence_native": "La conférence aura lieu dans l'auditorium principal.", + "example_sentence_english": "The conference will take place in the main auditorium.", + "pos": "noun", + "word_frequency": 14101 + }, + { + "word": "aérodrome", + "article_with_word": "un aérodrome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aerodrome;airfield", + "example_sentence_native": "L'avion a atterri sur un petit aérodrome.", + "example_sentence_english": "The plane landed on a small aerodrome.", + "pos": "noun", + "word_frequency": 14102 + }, + { + "word": "califat", + "article_with_word": "un califat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caliphate", + "example_sentence_native": "Le califat était une forme de gouvernement islamique.", + "example_sentence_english": "The caliphate was a form of Islamic government.", + "pos": "noun", + "word_frequency": 14109 + }, + { + "word": "chiffon", + "article_with_word": "un chiffon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rag;cloth", + "example_sentence_native": "Prends un chiffon pour nettoyer la table.", + "example_sentence_english": "Take a rag to clean the table.", + "pos": "noun", + "word_frequency": 14112 + }, + { + "word": "chlorure", + "article_with_word": "le chlorure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chloride", + "example_sentence_native": "Le chlorure de sodium est le sel de table.", + "example_sentence_english": "Sodium chloride is table salt.", + "pos": "noun", + "word_frequency": 14113 + }, + { + "word": "citerne", + "article_with_word": "une citerne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cistern;tank", + "example_sentence_native": "L'eau de pluie est collectée dans une citerne.", + "example_sentence_english": "Rainwater is collected in a cistern.", + "pos": "noun", + "word_frequency": 14116 + }, + { + "word": "cobra", + "article_with_word": "un cobra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cobra", + "example_sentence_native": "Le cobra est un serpent venimeux.", + "example_sentence_english": "The cobra is a venomous snake.", + "pos": "noun", + "word_frequency": 14118 + }, + { + "word": "comparution", + "article_with_word": "la comparution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appearance (in court);summons", + "example_sentence_native": "Il a été convoqué pour une comparution devant le tribunal.", + "example_sentence_english": "He was summoned for an appearance before the court.", + "pos": "noun", + "word_frequency": 14119 + }, + { + "word": "confesser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confess", + "example_sentence_native": "Il a dû confesser ses crimes.", + "example_sentence_english": "He had to confess his crimes.", + "pos": "verb", + "word_frequency": 14120 + }, + { + "word": "consulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consular", + "example_sentence_native": "L'ambassade offre des services consulaires.", + "example_sentence_english": "The embassy offers consular services.", + "pos": "adjective", + "word_frequency": 14121 + }, + { + "word": "corporate", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporate", + "example_sentence_native": "La culture corporate est très forte dans cette entreprise.", + "example_sentence_english": "The corporate culture is very strong in this company.", + "pos": "adjective", + "word_frequency": 14122 + }, + { + "word": "crapaud", + "article_with_word": "le crapaud", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toad", + "example_sentence_native": "Un crapaud a sauté sur le chemin.", + "example_sentence_english": "A toad jumped onto the path.", + "pos": "noun", + "word_frequency": 14124 + }, + { + "word": "credo", + "article_with_word": "le credo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "credo;belief", + "example_sentence_native": "Son credo est de toujours dire la vérité.", + "example_sentence_english": "His credo is to always tell the truth.", + "pos": "noun", + "word_frequency": 14125 + }, + { + "word": "crustacé", + "article_with_word": "le crustacé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crustacean", + "example_sentence_native": "Les crevettes sont des crustacés.", + "example_sentence_english": "Shrimps are crustaceans.", + "pos": "noun", + "word_frequency": 14127 + }, + { + "word": "divisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divided", + "example_sentence_native": "La population est divisée sur cette question.", + "example_sentence_english": "The population is divided on this issue.", + "pos": "adjective", + "word_frequency": 14132 + }, + { + "word": "désarmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disarm", + "example_sentence_native": "Il a réussi à désarmer son adversaire.", + "example_sentence_english": "He managed to disarm his opponent.", + "pos": "verb", + "word_frequency": 14133 + }, + { + "word": "encouragé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouraged", + "example_sentence_native": "Il se sent encouragé par les résultats.", + "example_sentence_english": "He feels encouraged by the results.", + "pos": "adjective", + "word_frequency": 14134 + }, + { + "word": "encours", + "article_with_word": "l'encours", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outstanding amount;work in progress", + "example_sentence_native": "Les encours de crédit ont augmenté.", + "example_sentence_english": "Outstanding loans have increased.", + "pos": "noun", + "word_frequency": 14135 + }, + { + "word": "enrayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to curb;to stop;to jam", + "example_sentence_native": "Il faut enrayer la propagation du virus.", + "example_sentence_english": "We must curb the spread of the virus.", + "pos": "verb", + "word_frequency": 14136 + }, + { + "word": "fautif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faulty;guilty", + "example_sentence_native": "L'erreur est due à un élément fautif.", + "example_sentence_english": "The error is due to a faulty element.", + "pos": "adjective", + "word_frequency": 14141 + }, + { + "word": "feinte", + "article_with_word": "la feinte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feint;dodge", + "example_sentence_native": "Il a fait une feinte pour tromper son adversaire.", + "example_sentence_english": "He made a feint to deceive his opponent.", + "pos": "noun", + "word_frequency": 14142 + }, + { + "word": "festif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festive", + "example_sentence_native": "L'ambiance était très festive.", + "example_sentence_english": "The atmosphere was very festive.", + "pos": "adjective", + "word_frequency": 14143 + }, + { + "word": "feuillet", + "article_with_word": "le feuillet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leaflet;sheet (of paper);folio", + "example_sentence_native": "Il a distribué des feuillets d'information.", + "example_sentence_english": "He distributed information leaflets.", + "pos": "noun", + "word_frequency": 14144 + }, + { + "word": "filtrage", + "article_with_word": "le filtrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filtering", + "example_sentence_native": "Le filtrage de l'eau est essentiel.", + "example_sentence_english": "Water filtering is essential.", + "pos": "noun", + "word_frequency": 14145 + }, + { + "word": "flirter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flirt", + "example_sentence_native": "Il aime flirter avec les filles.", + "example_sentence_english": "He likes to flirt with girls.", + "pos": "verb", + "word_frequency": 14146 + }, + { + "word": "florentin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Florentine", + "example_sentence_native": "L'art florentin est très riche.", + "example_sentence_english": "Florentine art is very rich.", + "pos": "adjective", + "word_frequency": 14147 + }, + { + "word": "freelance", + "article_with_word": "un freelance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freelancer", + "example_sentence_native": "Il travaille comme freelance depuis un an.", + "example_sentence_english": "He has been working as a freelancer for a year.", + "pos": "noun", + "word_frequency": 14149 + }, + { + "word": "fugue", + "article_with_word": "la fugue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugue (music);runaway", + "example_sentence_native": "Le jeune homme a fait une fugue.", + "example_sentence_english": "The young man ran away (had a fugue).", + "pos": "noun", + "word_frequency": 14151 + }, + { + "word": "germe", + "article_with_word": "le germe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "germ;sprout;seed", + "example_sentence_native": "Le germe de l'idée est né ici.", + "example_sentence_english": "The seed of the idea was born here.", + "pos": "noun", + "word_frequency": 14153 + }, + { + "word": "graphe", + "article_with_word": "le graphe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "graph", + "example_sentence_native": "Il a dessiné un graphe pour représenter les données.", + "example_sentence_english": "He drew a graph to represent the data.", + "pos": "noun", + "word_frequency": 14157 + }, + { + "word": "gérant", + "article_with_word": "le gérant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manager;director", + "example_sentence_native": "Le gérant du magasin est très aimable.", + "example_sentence_english": "The store manager is very friendly.", + "pos": "noun", + "word_frequency": 14159 + }, + { + "word": "habitacle", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cockpit;passenger compartment", + "example_sentence_native": "L'habitacle de la voiture est spacieux.", + "example_sentence_english": "The car's passenger compartment is spacious.", + "pos": "noun", + "word_frequency": 14160 + }, + { + "word": "hibou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owl", + "example_sentence_native": "Le hibou chasse la nuit.", + "example_sentence_english": "The owl hunts at night.", + "pos": "noun", + "word_frequency": 14161 + }, + { + "word": "hippodrome", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racecourse;hippodrome", + "example_sentence_native": "Les courses de chevaux ont lieu à l'hippodrome.", + "example_sentence_english": "Horse races take place at the racecourse.", + "pos": "noun", + "word_frequency": 14163 + }, + { + "word": "hépatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hepatic;liver-related", + "example_sentence_native": "Il souffre d'une maladie hépatique.", + "example_sentence_english": "He suffers from a hepatic disease.", + "pos": "adjective", + "word_frequency": 14165 + }, + { + "word": "illégalité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegality", + "example_sentence_native": "L'illégalité de ses actions a été prouvée.", + "example_sentence_english": "The illegality of his actions was proven.", + "pos": "noun", + "word_frequency": 14167 + }, + { + "word": "improviser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to improvise", + "example_sentence_native": "Il a dû improviser un discours.", + "example_sentence_english": "He had to improvise a speech.", + "pos": "verb", + "word_frequency": 14168 + }, + { + "word": "incendier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set fire to;to burn down", + "example_sentence_native": "Les vandales ont incendié la voiture.", + "example_sentence_english": "The vandals set fire to the car.", + "pos": "verb", + "word_frequency": 14169 + }, + { + "word": "inclusif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusive", + "example_sentence_native": "Nous voulons créer un environnement inclusif.", + "example_sentence_english": "We want to create an inclusive environment.", + "pos": "adjective", + "word_frequency": 14170 + }, + { + "word": "incontrôlable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrollable", + "example_sentence_native": "La situation est devenue incontrôlable.", + "example_sentence_english": "The situation became uncontrollable.", + "pos": "adjective", + "word_frequency": 14171 + }, + { + "word": "indisponible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unavailable", + "example_sentence_native": "Le produit est actuellement indisponible.", + "example_sentence_english": "The product is currently unavailable.", + "pos": "adjective", + "word_frequency": 14172 + }, + { + "word": "indécent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indecent;inappropriate", + "example_sentence_native": "Son comportement était indécent.", + "example_sentence_english": "His behavior was indecent.", + "pos": "adjective", + "word_frequency": 14173 + }, + { + "word": "informel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informal", + "example_sentence_native": "C'était une réunion informelle.", + "example_sentence_english": "It was an informal meeting.", + "pos": "adjective", + "word_frequency": 14174 + }, + { + "word": "insolence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insolence", + "example_sentence_native": "Son insolence a choqué tout le monde.", + "example_sentence_english": "His insolence shocked everyone.", + "pos": "noun", + "word_frequency": 14175 + }, + { + "word": "interception", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interception", + "example_sentence_native": "L'interception du ballon a changé le cours du match.", + "example_sentence_english": "The interception of the ball changed the course of the game.", + "pos": "noun", + "word_frequency": 14176 + }, + { + "word": "interieur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interior;inside", + "example_sentence_native": "L'intérieur de la maison est très lumineux.", + "example_sentence_english": "The interior of the house is very bright.", + "pos": "noun", + "word_frequency": 14177 + }, + { + "word": "interrupteur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "switch (light switch)", + "example_sentence_native": "Appuie sur l'interrupteur pour allumer la lumière.", + "example_sentence_english": "Press the switch to turn on the light.", + "pos": "noun", + "word_frequency": 14178 + }, + { + "word": "islandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Icelandic", + "example_sentence_native": "Elle parle islandais couramment.", + "example_sentence_english": "She speaks Icelandic fluently.", + "pos": "adjective", + "word_frequency": 14179 + }, + { + "word": "kart", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kart;go-kart", + "example_sentence_native": "Il aime faire du kart le week-end.", + "example_sentence_english": "He likes to go karting on weekends.", + "pos": "noun", + "word_frequency": 14181 + }, + { + "word": "lobe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lobe", + "example_sentence_native": "Le lobe de l'oreille est doux.", + "example_sentence_english": "The earlobe is soft.", + "pos": "noun", + "word_frequency": 14189 + }, + { + "word": "lumiere", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "light", + "example_sentence_native": "Allume la lumière s'il te plaît.", + "example_sentence_english": "Turn on the light please.", + "pos": "noun", + "word_frequency": 14192 + }, + { + "word": "légitimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legitimize;to justify", + "example_sentence_native": "Le gouvernement a cherché à légitimer ses actions.", + "example_sentence_english": "The government sought to legitimize its actions.", + "pos": "verb", + "word_frequency": 14193 + }, + { + "word": "manne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manna;windfall", + "example_sentence_native": "Cette subvention est une véritable manne pour l'association.", + "example_sentence_english": "This grant is a real windfall for the association.", + "pos": "noun", + "word_frequency": 14194 + }, + { + "word": "mascara", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mascara", + "example_sentence_native": "Elle a mis du mascara pour ses cils.", + "example_sentence_english": "She put on mascara for her eyelashes.", + "pos": "noun", + "word_frequency": 14198 + }, + { + "word": "merle", + "article_with_word": "le merle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blackbird", + "example_sentence_native": "Le merle chante tôt le matin.", + "example_sentence_english": "The blackbird sings early in the morning.", + "pos": "noun", + "word_frequency": 14201 + }, + { + "word": "mooc", + "article_with_word": "le MOOC", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "MOOC (Massive Open Online Course)", + "example_sentence_native": "J'ai suivi un MOOC sur l'intelligence artificielle.", + "example_sentence_english": "I took a MOOC on artificial intelligence.", + "pos": "noun", + "word_frequency": 14203 + }, + { + "word": "morgue", + "article_with_word": "la morgue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "morgue", + "example_sentence_native": "Le corps a été transporté à la morgue.", + "example_sentence_english": "The body was transported to the morgue.", + "pos": "noun", + "word_frequency": 14204 + }, + { + "word": "mousquetaire", + "article_with_word": "le mousquetaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musketeer", + "example_sentence_native": "Les trois mousquetaires sont des personnages célèbres.", + "example_sentence_english": "The three musketeers are famous characters.", + "pos": "noun", + "word_frequency": 14205 + }, + { + "word": "nourrice", + "article_with_word": "la nourrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nanny;wet nurse", + "example_sentence_native": "La nourrice s'occupe bien des enfants.", + "example_sentence_english": "The nanny takes good care of the children.", + "pos": "noun", + "word_frequency": 14211 + }, + { + "word": "omc", + "article_with_word": "l'OMC", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "WTO (World Trade Organization)", + "example_sentence_native": "L'OMC régule le commerce international.", + "example_sentence_english": "The WTO regulates international trade.", + "pos": "noun", + "word_frequency": 14213 + }, + { + "word": "palpable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palpable;tangible", + "example_sentence_native": "La tension était palpable dans la pièce.", + "example_sentence_english": "The tension was palpable in the room.", + "pos": "adjective", + "word_frequency": 14215 + }, + { + "word": "parfaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perfect;to complete", + "example_sentence_native": "Il cherche à parfaire ses connaissances en art.", + "example_sentence_english": "He seeks to perfect his knowledge of art.", + "pos": "verb", + "word_frequency": 14216 + }, + { + "word": "patrimonial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patrimonial;heritage", + "example_sentence_native": "Le site est classé au patrimoine mondial.", + "example_sentence_english": "The site is classified as a world heritage site.", + "pos": "adjective", + "word_frequency": 14218 + }, + { + "word": "perturbateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disruptive;disturbing", + "example_sentence_native": "Son comportement était très perturbateur en classe.", + "example_sentence_english": "His behavior was very disruptive in class.", + "pos": "adjective", + "word_frequency": 14223 + }, + { + "word": "piaf", + "article_with_word": "le piaf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sparrow (informal);birdy", + "example_sentence_native": "Un petit piaf s'est posé sur la fenêtre.", + "example_sentence_english": "A little birdy landed on the window.", + "pos": "noun", + "word_frequency": 14225 + }, + { + "word": "plongeur", + "article_with_word": "le plongeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diver", + "example_sentence_native": "Le plongeur a exploré les fonds marins.", + "example_sentence_english": "The diver explored the seabed.", + "pos": "noun", + "word_frequency": 14227 + }, + { + "word": "pluralisme", + "article_with_word": "le pluralisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pluralism", + "example_sentence_native": "Le pluralisme est essentiel à une démocratie saine.", + "example_sentence_english": "Pluralism is essential for a healthy democracy.", + "pos": "noun", + "word_frequency": 14228 + }, + { + "word": "pragmatisme", + "article_with_word": "le pragmatisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pragmatism", + "example_sentence_native": "Son approche est basée sur le pragmatisme.", + "example_sentence_english": "His approach is based on pragmatism.", + "pos": "noun", + "word_frequency": 14230 + }, + { + "word": "prenant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivating;engaging;demanding", + "example_sentence_native": "Ce film est vraiment prenant.", + "example_sentence_english": "This film is really captivating.", + "pos": "adjective", + "word_frequency": 14231 + }, + { + "word": "probité", + "article_with_word": "la probité", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "probity;integrity", + "example_sentence_native": "Il est connu pour sa probité irréprochable.", + "example_sentence_english": "He is known for his irreproachable probity.", + "pos": "noun", + "word_frequency": 14233 + }, + { + "word": "protectorat", + "article_with_word": "le protectorat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protectorate", + "example_sentence_native": "Le pays était sous protectorat étranger.", + "example_sentence_english": "The country was under foreign protectorate.", + "pos": "noun", + "word_frequency": 14234 + }, + { + "word": "prouvé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proven", + "example_sentence_native": "C'est une théorie prouvée scientifiquement.", + "example_sentence_english": "It's a scientifically proven theory.", + "pos": "adjective", + "word_frequency": 14235 + }, + { + "word": "préhistorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prehistoric", + "example_sentence_native": "On a découvert des outils préhistoriques.", + "example_sentence_english": "Prehistoric tools were discovered.", + "pos": "adjective", + "word_frequency": 14236 + }, + { + "word": "pépinière", + "article_with_word": "la pépinière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nursery (for plants or talent)", + "example_sentence_native": "Cette entreprise est une véritable pépinière de talents.", + "example_sentence_english": "This company is a real nursery for talent.", + "pos": "noun", + "word_frequency": 14237 + }, + { + "word": "pérenne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perennial;lasting;sustainable", + "example_sentence_native": "Nous cherchons des solutions pérennes pour l'environnement.", + "example_sentence_english": "We are looking for lasting solutions for the environment.", + "pos": "adjective", + "word_frequency": 14238 + }, + { + "word": "raffinerie", + "article_with_word": "la raffinerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refinery", + "example_sentence_native": "La raffinerie traite le pétrole brut.", + "example_sentence_english": "The refinery processes crude oil.", + "pos": "noun", + "word_frequency": 14239 + }, + { + "word": "rec", + "article_with_word": "le rec", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recording (button)", + "example_sentence_native": "Appuyez sur le bouton rec pour commencer l'enregistrement.", + "example_sentence_english": "Press the rec button to start recording.", + "pos": "noun", + "word_frequency": 14241 + }, + { + "word": "recevable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admissible;acceptable", + "example_sentence_native": "Cette proposition n'est pas recevable.", + "example_sentence_english": "This proposal is not admissible.", + "pos": "adjective", + "word_frequency": 14242 + }, + { + "word": "reference", + "article_with_word": "la référence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reference", + "example_sentence_native": "Veuillez indiquer la référence de votre commande.", + "example_sentence_english": "Please indicate your order reference.", + "pos": "noun", + "word_frequency": 14243 + }, + { + "word": "relaxe", + "article_with_word": "la relaxe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquittal;release", + "example_sentence_native": "Le tribunal a prononcé la relaxe du prévenu.", + "example_sentence_english": "The court pronounced the acquittal of the defendant.", + "pos": "noun", + "word_frequency": 14244 + }, + { + "word": "republique", + "article_with_word": "la République", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "republic", + "example_sentence_native": "La France est une République.", + "example_sentence_english": "France is a Republic.", + "pos": "noun", + "word_frequency": 14245 + }, + { + "word": "revalorisation", + "article_with_word": "la revalorisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revaluation;upgrading", + "example_sentence_native": "Le gouvernement a annoncé la revalorisation des salaires.", + "example_sentence_english": "The government announced the revaluation of salaries.", + "pos": "noun", + "word_frequency": 14246 + }, + { + "word": "réintégrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reintegrate", + "example_sentence_native": "Il a pu réintégrer son poste après son congé.", + "example_sentence_english": "He was able to reintegrate his position after his leave.", + "pos": "verb", + "word_frequency": 14249 + }, + { + "word": "saucisson", + "article_with_word": "le saucisson", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dry sausage;salami", + "example_sentence_native": "Nous avons mangé du saucisson à l'apéritif.", + "example_sentence_english": "We ate dry sausage as an appetizer.", + "pos": "noun", + "word_frequency": 14251 + }, + { + "word": "scolarisation", + "article_with_word": "la scolarisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "schooling;education", + "example_sentence_native": "La scolarisation est obligatoire jusqu'à 16 ans en France.", + "example_sentence_english": "Schooling is compulsory until 16 in France.", + "pos": "noun", + "word_frequency": 14253 + }, + { + "word": "sharp", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharp;stylish", + "example_sentence_native": "Il a un style très sharp.", + "example_sentence_english": "He has a very sharp style.", + "pos": "adjective", + "word_frequency": 14254 + }, + { + "word": "shooting", + "article_with_word": "le shooting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "photo shoot;filming", + "example_sentence_native": "Le shooting photo a duré toute la journée.", + "example_sentence_english": "The photo shoot lasted all day.", + "pos": "noun", + "word_frequency": 14255 + }, + { + "word": "silicium", + "article_with_word": "le silicium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silicon", + "example_sentence_native": "Le silicium est un élément chimique.", + "example_sentence_english": "Silicon is a chemical element.", + "pos": "noun", + "word_frequency": 14256 + }, + { + "word": "sionisme", + "article_with_word": "le sionisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zionism", + "example_sentence_native": "Le sionisme est un mouvement politique.", + "example_sentence_english": "Zionism is a political movement.", + "pos": "noun", + "word_frequency": 14258 + }, + { + "word": "sonorité", + "article_with_word": "la sonorité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonority;sound quality", + "example_sentence_native": "J'aime la sonorité de cette langue.", + "example_sentence_english": "I like the sound quality of this language.", + "pos": "noun", + "word_frequency": 14259 + }, + { + "word": "spontanéité", + "article_with_word": "la spontanéité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spontaneity", + "example_sentence_native": "J'apprécie sa spontanéité.", + "example_sentence_english": "I appreciate his spontaneity.", + "pos": "noun", + "word_frequency": 14261 + }, + { + "word": "stérilisation", + "article_with_word": "la stérilisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sterilization", + "example_sentence_native": "La stérilisation des instruments est essentielle en chirurgie.", + "example_sentence_english": "The sterilization of instruments is essential in surgery.", + "pos": "noun", + "word_frequency": 14262 + }, + { + "word": "supporteur", + "article_with_word": "le supporteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supporter;fan", + "example_sentence_native": "Les supporteurs ont acclamé leur équipe.", + "example_sentence_english": "The supporters cheered their team.", + "pos": "noun", + "word_frequency": 14264 + }, + { + "word": "supposition", + "article_with_word": "la supposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supposition;assumption", + "example_sentence_native": "C'est juste une supposition de ma part.", + "example_sentence_english": "It's just a supposition on my part.", + "pos": "noun", + "word_frequency": 14265 + }, + { + "word": "surveillant", + "article_with_word": "le surveillant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supervisor;monitor", + "example_sentence_native": "Le surveillant a demandé le silence.", + "example_sentence_english": "The supervisor asked for silence.", + "pos": "noun", + "word_frequency": 14266 + }, + { + "word": "sève", + "article_with_word": "la sève", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sap", + "example_sentence_native": "La sève monte dans les arbres au printemps.", + "example_sentence_english": "Sap rises in trees in spring.", + "pos": "noun", + "word_frequency": 14267 + }, + { + "word": "tabouret", + "article_with_word": "le tabouret", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stool", + "example_sentence_native": "Asseyez-vous sur ce tabouret.", + "example_sentence_english": "Sit on this stool.", + "pos": "noun", + "word_frequency": 14268 + }, + { + "word": "theme", + "article_with_word": "le thème", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theme;topic", + "example_sentence_native": "Le thème de la conférence était l'environnement.", + "example_sentence_english": "The theme of the conference was the environment.", + "pos": "noun", + "word_frequency": 14270 + }, + { + "word": "tie", + "article_with_word": "la tie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tie (necktie)", + "example_sentence_native": "Il portait une belle tie rouge.", + "example_sentence_english": "He was wearing a beautiful red tie.", + "pos": "noun", + "word_frequency": 14271 + }, + { + "word": "transposition", + "article_with_word": "la transposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transposition", + "example_sentence_native": "La transposition de cette loi est complexe.", + "example_sentence_english": "The transposition of this law is complex.", + "pos": "noun", + "word_frequency": 14272 + }, + { + "word": "typologie", + "article_with_word": "la typologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "typology", + "example_sentence_native": "Nous avons étudié la typologie des sols.", + "example_sentence_english": "We studied the typology of soils.", + "pos": "noun", + "word_frequency": 14273 + }, + { + "word": "télévisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "televised", + "example_sentence_native": "Le débat était télévisé en direct.", + "example_sentence_english": "The debate was televised live.", + "pos": "adjective", + "word_frequency": 14274 + }, + { + "word": "têtu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stubborn", + "example_sentence_native": "Il est très têtu et ne change jamais d'avis.", + "example_sentence_english": "He is very stubborn and never changes his mind.", + "pos": "adjective", + "word_frequency": 14275 + }, + { + "word": "vod", + "article_with_word": "la VOD", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "VOD (Video On Demand)", + "example_sentence_native": "Je regarde des films en VOD.", + "example_sentence_english": "I watch movies on VOD.", + "pos": "noun", + "word_frequency": 14279 + }, + { + "word": "échangeur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interchange;exchanger", + "example_sentence_native": "Prenez le prochain échangeur pour sortir de l'autoroute.", + "example_sentence_english": "Take the next interchange to exit the highway.", + "pos": "noun", + "word_frequency": 14284 + }, + { + "word": "électromagnétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electromagnetic", + "example_sentence_native": "Les ondes électromagnétiques sont invisibles.", + "example_sentence_english": "Electromagnetic waves are invisible.", + "pos": "adjective", + "word_frequency": 14285 + }, + { + "word": "étrangler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strangle;to choke", + "example_sentence_native": "Il a essayé d'étrangler le serpent.", + "example_sentence_english": "He tried to strangle the snake.", + "pos": "verb", + "word_frequency": 14286 + }, + { + "word": "acné", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acne", + "example_sentence_native": "L'acné est un problème de peau courant chez les adolescents.", + "example_sentence_english": "Acne is a common skin problem among teenagers.", + "pos": "noun", + "word_frequency": 14288 + }, + { + "word": "adage", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adage;proverb", + "example_sentence_native": "Comme le dit l'adage, 'mieux vaut prévenir que guérir'.", + "example_sentence_english": "As the adage says, 'prevention is better than cure'.", + "pos": "noun", + "word_frequency": 14289 + }, + { + "word": "agilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agility", + "example_sentence_native": "Son agilité lui permet de se déplacer rapidement.", + "example_sentence_english": "His agility allows him to move quickly.", + "pos": "noun", + "word_frequency": 14290 + }, + { + "word": "annexer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annex", + "example_sentence_native": "Le pays a décidé d'annexer le territoire voisin.", + "example_sentence_english": "The country decided to annex the neighboring territory.", + "pos": "verb", + "word_frequency": 14293 + }, + { + "word": "autodidacte", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-taught person", + "example_sentence_native": "C'est un autodidacte qui a appris à coder seul.", + "example_sentence_english": "He is a self-taught person who learned to code by himself.", + "pos": "noun", + "word_frequency": 14296 + }, + { + "word": "autruche", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ostrich", + "example_sentence_native": "L'autruche est le plus grand oiseau du monde.", + "example_sentence_english": "The ostrich is the largest bird in the world.", + "pos": "noun", + "word_frequency": 14297 + }, + { + "word": "aventurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to venture;to dare", + "example_sentence_native": "Il n'ose pas s'aventurer dans la forêt la nuit.", + "example_sentence_english": "He doesn't dare to venture into the forest at night.", + "pos": "verb", + "word_frequency": 14298 + }, + { + "word": "badminton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "badminton", + "example_sentence_native": "Nous jouons au badminton tous les week-ends.", + "example_sentence_english": "We play badminton every weekend.", + "pos": "noun", + "word_frequency": 14299 + }, + { + "word": "blogueur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blogger", + "example_sentence_native": "Mon ami est un blogueur de voyage très populaire.", + "example_sentence_english": "My friend is a very popular travel blogger.", + "pos": "noun", + "word_frequency": 14306 + }, + { + "word": "brunch", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brunch", + "example_sentence_native": "Nous avons un brunch tous les dimanches.", + "example_sentence_english": "We have brunch every Sunday.", + "pos": "noun", + "word_frequency": 14310 + }, + { + "word": "cabriolet", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convertible (car)", + "example_sentence_native": "Il a acheté un nouveau cabriolet rouge.", + "example_sentence_english": "He bought a new red convertible.", + "pos": "noun", + "word_frequency": 14311 + }, + { + "word": "caille", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quail", + "example_sentence_native": "La caille est un petit oiseau.", + "example_sentence_english": "The quail is a small bird.", + "pos": "noun", + "word_frequency": 14312 + }, + { + "word": "calculatrice", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calculator", + "example_sentence_native": "J'ai besoin de ma calculatrice pour les maths.", + "example_sentence_english": "I need my calculator for math.", + "pos": "noun", + "word_frequency": 14313 + }, + { + "word": "casanova", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "casanova;womanizer", + "example_sentence_native": "Il est connu pour être un vrai casanova.", + "example_sentence_english": "He is known for being a real casanova.", + "pos": "noun", + "word_frequency": 14316 + }, + { + "word": "chabot", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sculpin (fish)", + "example_sentence_native": "Le chabot est un poisson d'eau douce.", + "example_sentence_english": "The sculpin is a freshwater fish.", + "pos": "noun", + "word_frequency": 14317 + }, + { + "word": "commotion", + "article_with_word": "la commotion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commotion;disturbance", + "example_sentence_native": "Il y a eu une grande commotion dans la rue.", + "example_sentence_english": "There was a great commotion in the street.", + "pos": "noun", + "word_frequency": 14323 + }, + { + "word": "compas", + "article_with_word": "le compas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass (for drawing circles);pair of compasses", + "example_sentence_native": "J'ai besoin d'un compas pour dessiner un cercle parfait.", + "example_sentence_english": "I need a compass to draw a perfect circle.", + "pos": "noun", + "word_frequency": 14325 + }, + { + "word": "comptage", + "article_with_word": "le comptage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counting;tallying", + "example_sentence_native": "Le comptage des voix est en cours.", + "example_sentence_english": "The counting of votes is underway.", + "pos": "noun", + "word_frequency": 14326 + }, + { + "word": "confisquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confiscate", + "example_sentence_native": "La police a confisqué les biens volés.", + "example_sentence_english": "The police confiscated the stolen goods.", + "pos": "verb", + "word_frequency": 14328 + }, + { + "word": "conteur", + "article_with_word": "le conteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storyteller;narrator", + "example_sentence_native": "Le vieux conteur a captivé l'audience avec ses histoires.", + "example_sentence_english": "The old storyteller captivated the audience with his stories.", + "pos": "noun", + "word_frequency": 14329 + }, + { + "word": "contournement", + "article_with_word": "le contournement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bypass;circumvention", + "example_sentence_native": "Ils ont construit un contournement pour éviter le centre-ville.", + "example_sentence_english": "They built a bypass to avoid the city center.", + "pos": "noun", + "word_frequency": 14330 + }, + { + "word": "contractuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contractual", + "example_sentence_native": "C'est une obligation contractuelle.", + "example_sentence_english": "It is a contractual obligation.", + "pos": "adjective", + "word_frequency": 14331 + }, + { + "word": "crampon", + "article_with_word": "le crampon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crampon (for shoes);stud (on a boot)", + "example_sentence_native": "Les crampons de ses chaussures de football sont usés.", + "example_sentence_english": "The studs on his football boots are worn out.", + "pos": "noun", + "word_frequency": 14332 + }, + { + "word": "crypte", + "article_with_word": "la crypte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crypt", + "example_sentence_native": "Nous avons visité la crypte sous l'église.", + "example_sentence_english": "We visited the crypt under the church.", + "pos": "noun", + "word_frequency": 14333 + }, + { + "word": "créditer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to credit", + "example_sentence_native": "Veuillez créditer cette somme sur mon compte.", + "example_sentence_english": "Please credit this amount to my account.", + "pos": "verb", + "word_frequency": 14335 + }, + { + "word": "cépage", + "article_with_word": "le cépage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grape variety", + "example_sentence_native": "Le Cabernet Sauvignon est un cépage rouge populaire.", + "example_sentence_english": "Cabernet Sauvignon is a popular red grape variety.", + "pos": "noun", + "word_frequency": 14337 + }, + { + "word": "dicton", + "article_with_word": "le dicton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saying;proverb;adage", + "example_sentence_native": "Un vieux dicton dit que 'mieux vaut prévenir que guérir'.", + "example_sentence_english": "An old saying goes that 'prevention is better than cure'.", + "pos": "noun", + "word_frequency": 14339 + }, + { + "word": "directrice", + "article_with_word": "la directrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "director (female);principal (female)", + "example_sentence_native": "La directrice de l'école a annoncé les nouvelles règles.", + "example_sentence_english": "The school principal announced the new rules.", + "pos": "noun", + "word_frequency": 14340 + }, + { + "word": "dispenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispense;to give;to exempt", + "example_sentence_native": "L'infirmière dispense les médicaments aux patients.", + "example_sentence_english": "The nurse dispenses medication to patients.", + "pos": "verb", + "word_frequency": 14341 + }, + { + "word": "dressage", + "article_with_word": "le dressage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "training (of animals);dressage (equestrian sport)", + "example_sentence_native": "Le dressage du chien demande de la patience.", + "example_sentence_english": "Dog training requires patience.", + "pos": "noun", + "word_frequency": 14345 + }, + { + "word": "déconnecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disconnect;to log off", + "example_sentence_native": "N'oubliez pas de vous déconnecter avant de partir.", + "example_sentence_english": "Don't forget to log off before leaving.", + "pos": "verb", + "word_frequency": 14346 + }, + { + "word": "déficience", + "article_with_word": "la déficience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficiency;impairment", + "example_sentence_native": "Il souffre d'une déficience visuelle.", + "example_sentence_english": "He suffers from a visual impairment.", + "pos": "noun", + "word_frequency": 14347 + }, + { + "word": "délimitation", + "article_with_word": "la délimitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delimitation;demarcation", + "example_sentence_native": "La délimitation des frontières est un sujet complexe.", + "example_sentence_english": "The delimitation of borders is a complex subject.", + "pos": "noun", + "word_frequency": 14348 + }, + { + "word": "dénigrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to denigrate;to disparage", + "example_sentence_native": "Il est inacceptable de dénigrer le travail des autres.", + "example_sentence_english": "It is unacceptable to denigrate the work of others.", + "pos": "verb", + "word_frequency": 14349 + }, + { + "word": "dénué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devoid (of);lacking (in)", + "example_sentence_native": "Son discours était dénué de sens.", + "example_sentence_english": "His speech was devoid of meaning.", + "pos": "adjective", + "word_frequency": 14350 + }, + { + "word": "dépositaire", + "article_with_word": "le dépositaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depositary;custodian", + "example_sentence_native": "La banque est le dépositaire de nos fonds.", + "example_sentence_english": "The bank is the depositary of our funds.", + "pos": "noun", + "word_frequency": 14351 + }, + { + "word": "ehpad", + "article_with_word": "un EHPAD", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nursing home (for dependent elderly people)", + "example_sentence_native": "Ma grand-mère vit dans un EHPAD.", + "example_sentence_english": "My grandmother lives in a nursing home.", + "pos": "noun", + "word_frequency": 14353 + }, + { + "word": "environnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrounding;environmental", + "example_sentence_native": "Nous avons exploré la nature environnante.", + "example_sentence_english": "We explored the surrounding nature.", + "pos": "adjective", + "word_frequency": 14354 + }, + { + "word": "estuaire", + "article_with_word": "l'estuaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estuary", + "example_sentence_native": "La ville est située à l'embouchure de l'estuaire.", + "example_sentence_english": "The city is located at the mouth of the estuary.", + "pos": "noun", + "word_frequency": 14355 + }, + { + "word": "expirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expire;to breathe out", + "example_sentence_native": "Mon passeport va expirer le mois prochain.", + "example_sentence_english": "My passport will expire next month.", + "pos": "verb", + "word_frequency": 14358 + }, + { + "word": "fiston", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sonny;kiddo", + "example_sentence_native": "Mon fiston a eu de bonnes notes à l'école.", + "example_sentence_english": "My sonny got good grades at school.", + "pos": "noun", + "word_frequency": 14360 + }, + { + "word": "flan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flan;custard tart", + "example_sentence_native": "J'ai acheté un délicieux flan pour le dessert.", + "example_sentence_english": "I bought a delicious flan for dessert.", + "pos": "noun", + "word_frequency": 14361 + }, + { + "word": "fortuné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortunate;wealthy", + "example_sentence_native": "Il est devenu très fortuné après avoir gagné à la loterie.", + "example_sentence_english": "He became very wealthy after winning the lottery.", + "pos": "adjective", + "word_frequency": 14363 + }, + { + "word": "fougue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ardor;passion;spirit", + "example_sentence_native": "Sa fougue juvénile était contagieuse.", + "example_sentence_english": "His youthful ardor was contagious.", + "pos": "noun", + "word_frequency": 14364 + }, + { + "word": "frondeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rebel;dissident", + "example_sentence_native": "Le député frondeur a voté contre son propre parti.", + "example_sentence_english": "The rebellious deputy voted against his own party.", + "pos": "noun", + "word_frequency": 14365 + }, + { + "word": "frérot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bro;little brother", + "example_sentence_native": "Salut, frérot, comment ça va ?", + "example_sentence_english": "Hey, bro, how's it going?", + "pos": "noun", + "word_frequency": 14366 + }, + { + "word": "fâcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to anger;to make angry", + "example_sentence_native": "Ne le fâche pas, il est de mauvaise humeur.", + "example_sentence_english": "Don't anger him, he's in a bad mood.", + "pos": "verb", + "word_frequency": 14367 + }, + { + "word": "goal", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goal (in sports);goalkeeper", + "example_sentence_native": "L'attaquant a marqué un magnifique goal.", + "example_sentence_english": "The forward scored a magnificent goal.", + "pos": "noun", + "word_frequency": 14368 + }, + { + "word": "goudron", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tar;asphalt", + "example_sentence_native": "Les ouvriers ont étalé du goudron sur la route.", + "example_sentence_english": "The workers spread tar on the road.", + "pos": "noun", + "word_frequency": 14370 + }, + { + "word": "guillotine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guillotine", + "example_sentence_native": "La guillotine a été utilisée pendant la Révolution française.", + "example_sentence_english": "The guillotine was used during the French Revolution.", + "pos": "noun", + "word_frequency": 14372 + }, + { + "word": "hair", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hate", + "example_sentence_native": "Je hais les injustices.", + "example_sentence_english": "I hate injustices.", + "pos": "verb", + "word_frequency": 14373 + }, + { + "word": "harmattan", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmattan (dry;dusty wind)", + "example_sentence_native": "L'harmattan souffle sur l'Afrique de l'Ouest.", + "example_sentence_english": "The harmattan blows over West Africa.", + "pos": "noun", + "word_frequency": 14374 + }, + { + "word": "homologation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "approval;certification;homologation", + "example_sentence_native": "Le produit a reçu son homologation officielle.", + "example_sentence_english": "The product received its official approval.", + "pos": "noun", + "word_frequency": 14376 + }, + { + "word": "immature", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immature", + "example_sentence_native": "Son comportement est parfois très immature.", + "example_sentence_english": "His behavior is sometimes very immature.", + "pos": "adjective", + "word_frequency": 14379 + }, + { + "word": "incorporer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incorporate;to include", + "example_sentence_native": "Il faut incorporer les ingrédients secs petit à petit.", + "example_sentence_english": "You need to incorporate the dry ingredients little by little.", + "pos": "verb", + "word_frequency": 14380 + }, + { + "word": "inoffensif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inoffensive;harmless", + "example_sentence_native": "Malgré son apparence, le serpent est inoffensif.", + "example_sentence_english": "Despite its appearance, the snake is harmless.", + "pos": "adjective", + "word_frequency": 14382 + }, + { + "word": "inouï", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unheard of;incredible", + "example_sentence_native": "C'est une histoire inouïe !", + "example_sentence_english": "It's an unheard-of story!", + "pos": "adjective", + "word_frequency": 14383 + }, + { + "word": "inséparable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inseparable", + "example_sentence_native": "Elles sont amies inséparables depuis l'enfance.", + "example_sentence_english": "They have been inseparable friends since childhood.", + "pos": "adjective", + "word_frequency": 14384 + }, + { + "word": "intellect", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intellect", + "example_sentence_native": "Il possède un intellect remarquable.", + "example_sentence_english": "He possesses a remarkable intellect.", + "pos": "noun", + "word_frequency": 14385 + }, + { + "word": "interet", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interest", + "example_sentence_native": "J'ai beaucoup d'intérêt pour l'histoire.", + "example_sentence_english": "I have a lot of interest in history.", + "pos": "noun", + "word_frequency": 14386 + }, + { + "word": "intestinal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intestinal", + "example_sentence_native": "Il souffre de troubles intestinaux.", + "example_sentence_english": "He suffers from intestinal disorders.", + "pos": "adjective", + "word_frequency": 14387 + }, + { + "word": "intégriste", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamentalist", + "example_sentence_native": "Le mouvement est dirigé par des intégristes.", + "example_sentence_english": "The movement is led by fundamentalists.", + "pos": "noun", + "word_frequency": 14388 + }, + { + "word": "irriter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to irritate;to annoy", + "example_sentence_native": "Son attitude m'irrite.", + "example_sentence_english": "His attitude irritates me.", + "pos": "verb", + "word_frequency": 14389 + }, + { + "word": "laborieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laborious;hard-working", + "example_sentence_native": "C'était une tâche très laborieuse.", + "example_sentence_english": "It was a very laborious task.", + "pos": "adjective", + "word_frequency": 14394 + }, + { + "word": "lavabo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink;washbasin", + "example_sentence_native": "Lave tes mains dans le lavabo.", + "example_sentence_english": "Wash your hands in the sink.", + "pos": "noun", + "word_frequency": 14395 + }, + { + "word": "littéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literal", + "example_sentence_native": "Il a pris ses mots au sens littéral.", + "example_sentence_english": "He took his words in the literal sense.", + "pos": "adjective", + "word_frequency": 14397 + }, + { + "word": "légiste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forensic pathologist;legal expert", + "example_sentence_native": "Le médecin légiste a examiné le corps.", + "example_sentence_english": "The forensic pathologist examined the body.", + "pos": "noun", + "word_frequency": 14399 + }, + { + "word": "macabre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "macabre;gruesome", + "example_sentence_native": "L'ambiance du vieux château était plutôt macabre.", + "example_sentence_english": "The atmosphere of the old castle was rather macabre.", + "pos": "adjective", + "word_frequency": 14400 + }, + { + "word": "maquiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put on makeup;to disguise", + "example_sentence_native": "Elle aime se maquiller avant de sortir.", + "example_sentence_english": "She likes to put on makeup before going out.", + "pos": "verb", + "word_frequency": 14401 + }, + { + "word": "miraculeusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miraculously", + "example_sentence_native": "Il a miraculeusement survécu à l'accident.", + "example_sentence_english": "He miraculously survived the accident.", + "pos": "adverb", + "word_frequency": 14406 + }, + { + "word": "mitrailleuse", + "article_with_word": "la mitrailleuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machine gun", + "example_sentence_native": "Le soldat tenait une mitrailleuse lourde.", + "example_sentence_english": "The soldier was holding a heavy machine gun.", + "pos": "noun", + "word_frequency": 14407 + }, + { + "word": "monographie", + "article_with_word": "la monographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monograph", + "example_sentence_native": "Elle a publié une monographie sur l'histoire de l'art.", + "example_sentence_english": "She published a monograph on art history.", + "pos": "noun", + "word_frequency": 14408 + }, + { + "word": "méfiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distrustful;wary", + "example_sentence_native": "Il est toujours méfiant envers les inconnus.", + "example_sentence_english": "He is always wary of strangers.", + "pos": "adjective", + "word_frequency": 14410 + }, + { + "word": "méthodique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodical", + "example_sentence_native": "Son approche du problème est très méthodique.", + "example_sentence_english": "His approach to the problem is very methodical.", + "pos": "adjective", + "word_frequency": 14411 + }, + { + "word": "métissage", + "article_with_word": "le métissage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crossbreeding;mixing (of races;cultures)", + "example_sentence_native": "Le métissage culturel est une richesse pour la société.", + "example_sentence_english": "Cultural mixing is a richness for society.", + "pos": "noun", + "word_frequency": 14412 + }, + { + "word": "natural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "natural", + "example_sentence_native": "C'est un talent naturel.", + "example_sentence_english": "It's a natural talent.", + "pos": "adjective", + "word_frequency": 14415 + }, + { + "word": "nirvana", + "article_with_word": "le nirvana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nirvana", + "example_sentence_native": "Atteindre le nirvana est le but de certaines philosophies.", + "example_sentence_english": "Reaching nirvana is the goal of some philosophies.", + "pos": "noun", + "word_frequency": 14416 + }, + { + "word": "oreillette", + "article_with_word": "l'oreillette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earpiece;headset", + "example_sentence_native": "Il parle dans son oreillette Bluetooth.", + "example_sentence_english": "He's talking into his Bluetooth earpiece.", + "pos": "noun", + "word_frequency": 14421 + }, + { + "word": "orgie", + "article_with_word": "l'orgie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgy", + "example_sentence_native": "Le film dépeint une scène d'orgie romaine.", + "example_sentence_english": "The film depicts a scene of Roman orgy.", + "pos": "noun", + "word_frequency": 14422 + }, + { + "word": "oú", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where", + "example_sentence_native": "Où vas-tu ce soir?", + "example_sentence_english": "Where are you going tonight?", + "pos": "adverb", + "word_frequency": 14423 + }, + { + "word": "pacifiste", + "article_with_word": "le/la pacifiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pacifist", + "example_sentence_native": "C'est un fervent pacifiste.", + "example_sentence_english": "He is a fervent pacifist.", + "pos": "noun", + "word_frequency": 14424 + }, + { + "word": "parabole", + "article_with_word": "la parabole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parabola;parable", + "example_sentence_native": "La parabole du semeur est bien connue.", + "example_sentence_english": "The parable of the sower is well known.", + "pos": "noun", + "word_frequency": 14425 + }, + { + "word": "pentecôte", + "article_with_word": "la Pentecôte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pentecost", + "example_sentence_native": "La Pentecôte est célébrée cinquante jours après Pâques.", + "example_sentence_english": "Pentecost is celebrated fifty days after Easter.", + "pos": "noun", + "word_frequency": 14426 + }, + { + "word": "phénix", + "article_with_word": "le phénix", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phoenix", + "example_sentence_native": "Le phénix renaît de ses cendres.", + "example_sentence_english": "The phoenix rises from its ashes.", + "pos": "noun", + "word_frequency": 14427 + }, + { + "word": "plomberie", + "article_with_word": "la plomberie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plumbing", + "example_sentence_native": "Il faut réparer la plomberie de la salle de bain.", + "example_sentence_english": "The bathroom plumbing needs to be repaired.", + "pos": "noun", + "word_frequency": 14429 + }, + { + "word": "populisme", + "article_with_word": "le populisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "populism", + "example_sentence_native": "Le populisme est un phénomène politique complexe.", + "example_sentence_english": "Populism is a complex political phenomenon.", + "pos": "noun", + "word_frequency": 14432 + }, + { + "word": "procréation", + "article_with_word": "la procréation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "procreation", + "example_sentence_native": "La procréation est essentielle à la survie de l'espèce.", + "example_sentence_english": "Procreation is essential for the survival of the species.", + "pos": "noun", + "word_frequency": 14434 + }, + { + "word": "psyché", + "article_with_word": "la psyché", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psyche", + "example_sentence_native": "L'étude de la psyché humaine est fascinante.", + "example_sentence_english": "The study of the human psyche is fascinating.", + "pos": "noun", + "word_frequency": 14435 + }, + { + "word": "pénitence", + "article_with_word": "la pénitence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penance;penitence", + "example_sentence_native": "Il a fait pénitence pour ses péchés.", + "example_sentence_english": "He did penance for his sins.", + "pos": "noun", + "word_frequency": 14436 + }, + { + "word": "quad", + "article_with_word": "le quad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quad bike;ATV", + "example_sentence_native": "Ils ont fait une balade en quad dans la forêt.", + "example_sentence_english": "They went for a quad bike ride in the forest.", + "pos": "noun", + "word_frequency": 14438 + }, + { + "word": "relégation", + "article_with_word": "la relégation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relegation", + "example_sentence_native": "L'équipe a évité la relégation de justesse cette saison.", + "example_sentence_english": "The team narrowly avoided relegation this season.", + "pos": "noun", + "word_frequency": 14443 + }, + { + "word": "resort", + "article_with_word": "le resort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resort", + "example_sentence_native": "Nous avons séjourné dans un magnifique resort en bord de mer.", + "example_sentence_english": "We stayed in a beautiful seaside resort.", + "pos": "noun", + "word_frequency": 14446 + }, + { + "word": "resserrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tighten;to strengthen", + "example_sentence_native": "Il faut resserrer les liens familiaux.", + "example_sentence_english": "We need to strengthen family ties.", + "pos": "verb", + "word_frequency": 14447 + }, + { + "word": "rigolade", + "article_with_word": "la rigolade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fun;laugh", + "example_sentence_native": "C'était une vraie rigolade de passer la soirée ensemble.", + "example_sentence_english": "It was a real laugh spending the evening together.", + "pos": "noun", + "word_frequency": 14448 + }, + { + "word": "romand", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Romand (relating to French-speaking Switzerland)", + "example_sentence_native": "La Suisse romande est la partie francophone de la Suisse.", + "example_sentence_english": "Romand Switzerland is the French-speaking part of Switzerland.", + "pos": "adjective", + "word_frequency": 14450 + }, + { + "word": "révérence", + "article_with_word": "la révérence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bow;curtsy;reverence", + "example_sentence_native": "Elle fit une profonde révérence devant la reine.", + "example_sentence_english": "She made a deep curtsy before the queen.", + "pos": "noun", + "word_frequency": 14453 + }, + { + "word": "salutaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "salutary;beneficial", + "example_sentence_native": "Cette expérience fut salutaire pour son développement personnel.", + "example_sentence_english": "This experience was salutary for his personal development.", + "pos": "adjective", + "word_frequency": 14454 + }, + { + "word": "spray", + "article_with_word": "le spray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spray", + "example_sentence_native": "J'utilise un spray nasal pour mes allergies.", + "example_sentence_english": "I use a nasal spray for my allergies.", + "pos": "noun", + "word_frequency": 14462 + }, + { + "word": "spécifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to specify", + "example_sentence_native": "Veuillez spécifier vos besoins exacts.", + "example_sentence_english": "Please specify your exact needs.", + "pos": "verb", + "word_frequency": 14464 + }, + { + "word": "surenchère", + "article_with_word": "la surenchère", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overbidding;escalation", + "example_sentence_native": "Il y a eu une surenchère lors de la vente aux enchères.", + "example_sentence_english": "There was an overbidding during the auction.", + "pos": "noun", + "word_frequency": 14467 + }, + { + "word": "tarifaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tariff;pricing (adj.)", + "example_sentence_native": "Nous devons revoir notre politique tarifaire.", + "example_sentence_english": "We need to review our pricing policy.", + "pos": "adjective", + "word_frequency": 14469 + }, + { + "word": "titane", + "article_with_word": "le titane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titanium", + "example_sentence_native": "Le titane est un métal léger et résistant.", + "example_sentence_english": "Titanium is a light and strong metal.", + "pos": "noun", + "word_frequency": 14472 + }, + { + "word": "transpiration", + "article_with_word": "la transpiration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perspiration;sweat", + "example_sentence_native": "La transpiration aide à réguler la température du corps.", + "example_sentence_english": "Perspiration helps regulate body temperature.", + "pos": "noun", + "word_frequency": 14474 + }, + { + "word": "transpirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to perspire;to sweat", + "example_sentence_native": "Il commence à transpirer après l'effort.", + "example_sentence_english": "He starts to sweat after the effort.", + "pos": "verb", + "word_frequency": 14475 + }, + { + "word": "travailliste", + "article_with_word": "le travailliste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Labour (party member);labourist", + "example_sentence_native": "Le parti travailliste a remporté les élections.", + "example_sentence_english": "The Labour party won the elections.", + "pos": "noun", + "word_frequency": 14476 + }, + { + "word": "trot", + "article_with_word": "le trot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trot", + "example_sentence_native": "Le cheval est passé du pas au trot.", + "example_sentence_english": "The horse went from a walk to a trot.", + "pos": "noun", + "word_frequency": 14477 + }, + { + "word": "télétravail", + "article_with_word": "le télétravail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teleworking;remote work", + "example_sentence_native": "Le télétravail est devenu la norme pour beaucoup.", + "example_sentence_english": "Teleworking has become the norm for many.", + "pos": "noun", + "word_frequency": 14478 + }, + { + "word": "ulm", + "article_with_word": "un ULM", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ULM (ultralight motorized aircraft)", + "example_sentence_native": "Il a appris à piloter un ULM.", + "example_sentence_english": "He learned to fly an ULM.", + "pos": "noun", + "word_frequency": 14479 + }, + { + "word": "vautour", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulture", + "example_sentence_native": "Le vautour planait au-dessus des montagnes.", + "example_sentence_english": "The vulture soared above the mountains.", + "pos": "noun", + "word_frequency": 14481 + }, + { + "word": "vidange", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drain;oil change", + "example_sentence_native": "Il est temps de faire la vidange de la voiture.", + "example_sentence_english": "It's time to do the car's oil change.", + "pos": "noun", + "word_frequency": 14484 + }, + { + "word": "zélandais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "New Zealander;New Zealand (adj.)", + "example_sentence_native": "Elle a rencontré un homme zélandais en voyage.", + "example_sentence_english": "She met a New Zealander man while traveling.", + "pos": "adjective", + "word_frequency": 14492 + }, + { + "word": "égo", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ego", + "example_sentence_native": "Son égo est parfois trop grand.", + "example_sentence_english": "His ego is sometimes too big.", + "pos": "noun", + "word_frequency": 14493 + }, + { + "word": "émeraude", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerald", + "example_sentence_native": "Elle portait un collier avec une belle émeraude.", + "example_sentence_english": "She wore a necklace with a beautiful emerald.", + "pos": "noun", + "word_frequency": 14495 + }, + { + "word": "éminemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eminently;highly", + "example_sentence_native": "C'est une question éminemment importante.", + "example_sentence_english": "This is an eminently important question.", + "pos": "adverb", + "word_frequency": 14496 + }, + { + "word": "émulation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emulation;rivalry", + "example_sentence_native": "Il y avait une saine émulation entre les étudiants.", + "example_sentence_english": "There was a healthy emulation among the students.", + "pos": "noun", + "word_frequency": 14497 + }, + { + "word": "acrobatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acrobatic", + "example_sentence_native": "Le spectacle comprenait des numéros acrobatiques impressionnants.", + "example_sentence_english": "The show included impressive acrobatic acts.", + "pos": "adjective", + "word_frequency": 14498 + }, + { + "word": "afghan", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Afghan", + "example_sentence_native": "Il a rencontré un réfugié afghan.", + "example_sentence_english": "He met an Afghan refugee.", + "pos": "adjective", + "word_frequency": 14500 + }, + { + "word": "antidote", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antidote", + "example_sentence_native": "Il n'y a pas d'antidote connu pour ce poison.", + "example_sentence_english": "There is no known antidote for this poison.", + "pos": "noun", + "word_frequency": 14502 + }, + { + "word": "apéritif", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aperitif;pre-dinner drink", + "example_sentence_native": "Nous avons pris un apéritif avant le dîner.", + "example_sentence_english": "We had an aperitif before dinner.", + "pos": "noun", + "word_frequency": 14503 + }, + { + "word": "argumenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to argue;to reason", + "example_sentence_native": "Il aime argumenter sur tous les sujets.", + "example_sentence_english": "He likes to argue about all subjects.", + "pos": "verb", + "word_frequency": 14504 + }, + { + "word": "aria", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aria", + "example_sentence_native": "La soprano a chanté une magnifique aria.", + "example_sentence_english": "The soprano sang a magnificent aria.", + "pos": "noun", + "word_frequency": 14505 + }, + { + "word": "aride", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arid;dry", + "example_sentence_native": "Le désert est une région aride.", + "example_sentence_english": "The desert is an arid region.", + "pos": "adjective", + "word_frequency": 14506 + }, + { + "word": "astéroïde", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asteroid", + "example_sentence_native": "Un astéroïde a frôlé la Terre hier.", + "example_sentence_english": "An asteroid grazed Earth yesterday.", + "pos": "noun", + "word_frequency": 14507 + }, + { + "word": "autocar", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach;bus", + "example_sentence_native": "Nous avons voyagé en autocar jusqu'à la côte.", + "example_sentence_english": "We traveled by coach to the coast.", + "pos": "noun", + "word_frequency": 14510 + }, + { + "word": "avare", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greedy;stingy", + "example_sentence_native": "Il est trop avare pour dépenser de l'argent.", + "example_sentence_english": "He is too stingy to spend money.", + "pos": "adjective", + "word_frequency": 14511 + }, + { + "word": "avenant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pleasant;amiable;rider (legal)", + "example_sentence_native": "C'est une personne très avenante et souriante.", + "example_sentence_english": "She is a very pleasant and smiling person.", + "pos": "adjective", + "word_frequency": 14512 + }, + { + "word": "basilic", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basil", + "example_sentence_native": "J'adore le parfum du basilic frais dans ma cuisine.", + "example_sentence_english": "I love the smell of fresh basil in my kitchen.", + "pos": "noun", + "word_frequency": 14515 + }, + { + "word": "bassiste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bassist", + "example_sentence_native": "Le bassiste joue un rôle essentiel dans le groupe.", + "example_sentence_english": "The bassist plays an essential role in the band.", + "pos": "noun", + "word_frequency": 14516 + }, + { + "word": "bic", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ballpoint pen (informal)", + "example_sentence_native": "Peux-tu me prêter un bic, s'il te plaît ?", + "example_sentence_english": "Can you lend me a pen, please?", + "pos": "noun", + "word_frequency": 14519 + }, + { + "word": "blockchain", + "article_with_word": "la blockchain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blockchain", + "example_sentence_native": "La blockchain est une technologie de stockage et de transmission d'informations.", + "example_sentence_english": "Blockchain is a technology for storing and transmitting information.", + "pos": "noun", + "word_frequency": 14520 + }, + { + "word": "borné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrow-minded;limited", + "example_sentence_native": "Son esprit est un peu borné sur ce sujet.", + "example_sentence_english": "His mind is a bit narrow-minded on this subject.", + "pos": "adjective", + "word_frequency": 14522 + }, + { + "word": "canette", + "article_with_word": "une canette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "can (drink)", + "example_sentence_native": "J'ai bu une canette de soda.", + "example_sentence_english": "I drank a can of soda.", + "pos": "noun", + "word_frequency": 14524 + }, + { + "word": "caïd", + "article_with_word": "un caïd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gang leader;big shot", + "example_sentence_native": "Le caïd du quartier a été arrêté.", + "example_sentence_english": "The neighborhood gang leader was arrested.", + "pos": "noun", + "word_frequency": 14525 + }, + { + "word": "chrétienté", + "article_with_word": "la chrétienté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christendom", + "example_sentence_native": "La chrétienté médiévale a connu de nombreux bouleversements.", + "example_sentence_english": "Medieval Christendom experienced many upheavals.", + "pos": "noun", + "word_frequency": 14528 + }, + { + "word": "circoncision", + "article_with_word": "la circoncision", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circumcision", + "example_sentence_native": "La circoncision est une pratique ancienne dans de nombreuses cultures.", + "example_sentence_english": "Circumcision is an ancient practice in many cultures.", + "pos": "noun", + "word_frequency": 14531 + }, + { + "word": "coder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to code", + "example_sentence_native": "J'apprends à coder en Python.", + "example_sentence_english": "I am learning to code in Python.", + "pos": "verb", + "word_frequency": 14535 + }, + { + "word": "communautarisme", + "article_with_word": "le communautarisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "communitarianism", + "example_sentence_native": "Le débat sur le communautarisme est fréquent en France.", + "example_sentence_english": "The debate on communitarianism is frequent in France.", + "pos": "noun", + "word_frequency": 14536 + }, + { + "word": "crampe", + "article_with_word": "une crampe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cramp", + "example_sentence_native": "J'ai eu une crampe au mollet pendant la course.", + "example_sentence_english": "I got a calf cramp during the run.", + "pos": "noun", + "word_frequency": 14537 + }, + { + "word": "divulgation", + "article_with_word": "la divulgation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disclosure;revelation", + "example_sentence_native": "La divulgation d'informations confidentielles est interdite.", + "example_sentence_english": "The disclosure of confidential information is prohibited.", + "pos": "noun", + "word_frequency": 14543 + }, + { + "word": "doléance", + "article_with_word": "une doléance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grievance;complaint", + "example_sentence_native": "Les employés ont présenté leurs doléances à la direction.", + "example_sentence_english": "The employees presented their grievances to the management.", + "pos": "noun", + "word_frequency": 14544 + }, + { + "word": "drastique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drastic", + "example_sentence_native": "Il faut prendre des mesures drastiques pour résoudre ce problème.", + "example_sentence_english": "Drastic measures must be taken to solve this problem.", + "pos": "adjective", + "word_frequency": 14546 + }, + { + "word": "décrochage", + "article_with_word": "le décrochage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dropping out;disengagement", + "example_sentence_native": "Le décrochage scolaire est une préoccupation majeure.", + "example_sentence_english": "School dropping out is a major concern.", + "pos": "noun", + "word_frequency": 14547 + }, + { + "word": "défection", + "article_with_word": "la défection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defection;desertion", + "example_sentence_native": "La défection de plusieurs membres a affaibli le parti.", + "example_sentence_english": "The defection of several members weakened the party.", + "pos": "noun", + "word_frequency": 14548 + }, + { + "word": "déloyal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disloyal;unfair", + "example_sentence_native": "Son comportement était déloyal envers ses collègues.", + "example_sentence_english": "His behavior was disloyal towards his colleagues.", + "pos": "adjective", + "word_frequency": 14549 + }, + { + "word": "dérober", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to steal;to escape (from view)", + "example_sentence_native": "Le voleur a réussi à dérober les bijoux.", + "example_sentence_english": "The thief managed to steal the jewels.", + "pos": "verb", + "word_frequency": 14550 + }, + { + "word": "effroyable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dreadful;terrible", + "example_sentence_native": "Les conditions de vie étaient effroyables.", + "example_sentence_english": "The living conditions were dreadful.", + "pos": "adjective", + "word_frequency": 14552 + }, + { + "word": "electricité", + "article_with_word": "l'électricité", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electricity", + "example_sentence_native": "Nous avons eu une coupure d'électricité ce matin.", + "example_sentence_english": "We had a power cut this morning.", + "pos": "noun", + "word_frequency": 14553 + }, + { + "word": "emprunté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "borrowed;awkward;strained", + "example_sentence_native": "Son sourire semblait un peu emprunté.", + "example_sentence_english": "His smile seemed a little strained.", + "pos": "adjective", + "word_frequency": 14554 + }, + { + "word": "engrenage", + "article_with_word": "l'engrenage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gearing;vicious circle;spiral", + "example_sentence_native": "Il est tombé dans un engrenage de dettes.", + "example_sentence_english": "He fell into a spiral of debt.", + "pos": "noun", + "word_frequency": 14556 + }, + { + "word": "enseigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taught", + "example_sentence_native": "C'est une matière enseignée à l'université.", + "example_sentence_english": "It's a subject taught at the university.", + "pos": "adjective", + "word_frequency": 14557 + }, + { + "word": "entamé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "started;begun;cut into", + "example_sentence_native": "Le gâteau est déjà entamé.", + "example_sentence_english": "The cake is already cut into.", + "pos": "adjective", + "word_frequency": 14558 + }, + { + "word": "excrément", + "article_with_word": "un excrément", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excrement", + "example_sentence_native": "On a trouvé des excréments d'animaux dans le jardin.", + "example_sentence_english": "Animal excrement was found in the garden.", + "pos": "noun", + "word_frequency": 14562 + }, + { + "word": "excéder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exceed", + "example_sentence_native": "Le coût ne doit pas excéder le budget.", + "example_sentence_english": "The cost must not exceed the budget.", + "pos": "verb", + "word_frequency": 14563 + }, + { + "word": "exemption", + "article_with_word": "une exemption", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemption", + "example_sentence_native": "Il a demandé une exemption de taxe.", + "example_sentence_english": "He requested a tax exemption.", + "pos": "noun", + "word_frequency": 14564 + }, + { + "word": "expédier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dispatch;to send", + "example_sentence_native": "Nous devons expédier ce colis avant midi.", + "example_sentence_english": "We must dispatch this package before noon.", + "pos": "verb", + "word_frequency": 14565 + }, + { + "word": "facturation", + "article_with_word": "la facturation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billing;invoicing", + "example_sentence_native": "Le service de facturation est fermé le week-end.", + "example_sentence_english": "The billing department is closed on weekends.", + "pos": "noun", + "word_frequency": 14567 + }, + { + "word": "faste", + "article_with_word": "le faste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pomp;splendor", + "example_sentence_native": "La cérémonie s'est déroulée avec beaucoup de faste.", + "example_sentence_english": "The ceremony took place with great pomp.", + "pos": "noun", + "word_frequency": 14569 + }, + { + "word": "fessée", + "article_with_word": "une fessée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spanking", + "example_sentence_native": "Il a reçu une fessée pour sa bêtise.", + "example_sentence_english": "He received a spanking for his foolishness.", + "pos": "noun", + "word_frequency": 14570 + }, + { + "word": "flamboyant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flamboyant;brilliant", + "example_sentence_native": "Elle portait une robe aux couleurs flamboyantes.", + "example_sentence_english": "She wore a dress with flamboyant colors.", + "pos": "adjective", + "word_frequency": 14572 + }, + { + "word": "fragmentation", + "article_with_word": "la fragmentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fragmentation", + "example_sentence_native": "La fragmentation du disque dur peut ralentir l'ordinateur.", + "example_sentence_english": "Hard drive fragmentation can slow down the computer.", + "pos": "noun", + "word_frequency": 14575 + }, + { + "word": "frôler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to brush against;to graze", + "example_sentence_native": "La voiture a frôlé le mur.", + "example_sentence_english": "The car brushed against the wall.", + "pos": "verb", + "word_frequency": 14576 + }, + { + "word": "féodal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feudal", + "example_sentence_native": "Le système féodal a dominé l'Europe médiévale.", + "example_sentence_english": "The feudal system dominated medieval Europe.", + "pos": "adjective", + "word_frequency": 14577 + }, + { + "word": "giron", + "article_with_word": "le giron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lap;bosom (figurative: fold)", + "example_sentence_native": "Il est revenu au giron familial après des années d'absence.", + "example_sentence_english": "He returned to the family fold after years of absence.", + "pos": "noun", + "word_frequency": 14580 + }, + { + "word": "gravir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to climb;to ascend", + "example_sentence_native": "Ils ont décidé de gravir la montagne.", + "example_sentence_english": "They decided to climb the mountain.", + "pos": "verb", + "word_frequency": 14582 + }, + { + "word": "grillage", + "article_with_word": "le grillage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wire mesh;fence", + "example_sentence_native": "Le jardin est entouré d'un grillage.", + "example_sentence_english": "The garden is surrounded by a wire fence.", + "pos": "noun", + "word_frequency": 14583 + }, + { + "word": "gémeau", + "article_with_word": "un gémeau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twin (male);Gemini", + "example_sentence_native": "Mon frère est mon gémeau.", + "example_sentence_english": "My brother is my twin.", + "pos": "noun", + "word_frequency": 14584 + }, + { + "word": "heurt", + "article_with_word": "un heurt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clash;impact;bump", + "example_sentence_native": "Le véhicule a subi un léger heurt.", + "example_sentence_english": "The vehicle sustained a slight bump.", + "pos": "noun", + "word_frequency": 14588 + }, + { + "word": "humiliant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliating", + "example_sentence_native": "C'était une expérience très humiliante.", + "example_sentence_english": "It was a very humiliating experience.", + "pos": "adjective", + "word_frequency": 14589 + }, + { + "word": "implanté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implanted;established", + "example_sentence_native": "L'entreprise est bien implantée sur le marché.", + "example_sentence_english": "The company is well established in the market.", + "pos": "adjective", + "word_frequency": 14593 + }, + { + "word": "inflammatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflammatory", + "example_sentence_native": "Il souffre d'une maladie inflammatoire.", + "example_sentence_english": "He suffers from an inflammatory disease.", + "pos": "adjective", + "word_frequency": 14594 + }, + { + "word": "inondé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flooded", + "example_sentence_native": "La cave était complètement inondée après la pluie.", + "example_sentence_english": "The cellar was completely flooded after the rain.", + "pos": "adjective", + "word_frequency": 14595 + }, + { + "word": "intensément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensely", + "example_sentence_native": "Il a travaillé intensément pour finir le projet.", + "example_sentence_english": "He worked intensely to finish the project.", + "pos": "adverb", + "word_frequency": 14596 + }, + { + "word": "ire", + "article_with_word": "l'ire", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "wrath;anger", + "example_sentence_native": "L'ire divine s'est abattue sur la ville.", + "example_sentence_english": "Divine wrath fell upon the city.", + "pos": "noun", + "word_frequency": 14598 + }, + { + "word": "irrespectueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disrespectful", + "example_sentence_native": "Son comportement était irrespectueux envers les aînés.", + "example_sentence_english": "His behavior was disrespectful towards the elders.", + "pos": "adjective", + "word_frequency": 14599 + }, + { + "word": "jauge", + "article_with_word": "la jauge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gauge", + "example_sentence_native": "La jauge de carburant indique que le réservoir est presque vide.", + "example_sentence_english": "The fuel gauge indicates that the tank is almost empty.", + "pos": "noun", + "word_frequency": 14601 + }, + { + "word": "liquider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to liquidate;to sell off", + "example_sentence_native": "Ils ont dû liquider toutes leurs marchandises avant la fermeture.", + "example_sentence_english": "They had to sell off all their goods before closing.", + "pos": "verb", + "word_frequency": 14604 + }, + { + "word": "maltais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Maltese", + "example_sentence_native": "Il parle couramment le maltais et l'anglais.", + "example_sentence_english": "He speaks Maltese and English fluently.", + "pos": "adjective", + "word_frequency": 14606 + }, + { + "word": "maturation", + "article_with_word": "la maturation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maturation", + "example_sentence_native": "Le processus de maturation du fromage prend plusieurs mois.", + "example_sentence_english": "The cheese maturation process takes several months.", + "pos": "noun", + "word_frequency": 14608 + }, + { + "word": "menotte", + "article_with_word": "la menotte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handcuff", + "example_sentence_native": "Les policiers lui ont mis les menottes.", + "example_sentence_english": "The police officers put handcuffs on him.", + "pos": "noun", + "word_frequency": 14611 + }, + { + "word": "mystérieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mysteriously", + "example_sentence_native": "La porte s'est ouverte mystérieusement.", + "example_sentence_english": "The door opened mysteriously.", + "pos": "adverb", + "word_frequency": 14615 + }, + { + "word": "négociateur", + "article_with_word": "le négociateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiator", + "example_sentence_native": "Le négociateur a réussi à trouver un accord.", + "example_sentence_english": "The negotiator managed to find an agreement.", + "pos": "noun", + "word_frequency": 14618 + }, + { + "word": "oméga", + "article_with_word": "l'oméga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omega", + "example_sentence_native": "Les acides gras oméga-3 sont bons pour la santé.", + "example_sentence_english": "Omega-3 fatty acids are good for health.", + "pos": "noun", + "word_frequency": 14619 + }, + { + "word": "patente", + "article_with_word": "la patente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patent;license", + "example_sentence_native": "Il a déposé une patente pour son invention.", + "example_sentence_english": "He filed a patent for his invention.", + "pos": "noun", + "word_frequency": 14621 + }, + { + "word": "pessimisme", + "article_with_word": "le pessimisme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pessimism", + "example_sentence_native": "Son pessimisme l'empêche de voir le bon côté des choses.", + "example_sentence_english": "His pessimism prevents him from seeing the good side of things.", + "pos": "noun", + "word_frequency": 14622 + }, + { + "word": "photovoltaïque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "photovoltaic", + "example_sentence_native": "Ils ont installé des panneaux photovoltaïques sur le toit.", + "example_sentence_english": "They installed photovoltaic panels on the roof.", + "pos": "adjective", + "word_frequency": 14624 + }, + { + "word": "plaquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coat;to tackle;to dump", + "example_sentence_native": "Il a décidé de plaquer son travail pour voyager.", + "example_sentence_english": "He decided to quit his job to travel.", + "pos": "verb", + "word_frequency": 14627 + }, + { + "word": "pneumatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pneumatic", + "example_sentence_native": "Le système de freinage pneumatique est très efficace.", + "example_sentence_english": "The pneumatic braking system is very efficient.", + "pos": "adjective", + "word_frequency": 14629 + }, + { + "word": "présage", + "article_with_word": "le présage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omen;premonition", + "example_sentence_native": "Ce ciel rouge est un mauvais présage.", + "example_sentence_english": "This red sky is a bad omen.", + "pos": "noun", + "word_frequency": 14631 + }, + { + "word": "présentatrice", + "article_with_word": "la présentatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presenter (female)", + "example_sentence_native": "La présentatrice a annoncé les nouvelles du soir.", + "example_sentence_english": "The female presenter announced the evening news.", + "pos": "noun", + "word_frequency": 14632 + }, + { + "word": "ravissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delightful;charming", + "example_sentence_native": "Elle portait une robe ravissante.", + "example_sentence_english": "She was wearing a delightful dress.", + "pos": "adjective", + "word_frequency": 14633 + }, + { + "word": "rebord", + "article_with_word": "le rebord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edge;rim;ledge", + "example_sentence_native": "Le chat était assis sur le rebord de la fenêtre.", + "example_sentence_english": "The cat was sitting on the window ledge.", + "pos": "noun", + "word_frequency": 14634 + }, + { + "word": "rondelle", + "article_with_word": "la rondelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "washer;slice (of fruit;vegetable)", + "example_sentence_native": "Ajoutez une rondelle de citron à votre boisson.", + "example_sentence_english": "Add a slice of lemon to your drink.", + "pos": "noun", + "word_frequency": 14637 + }, + { + "word": "réciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recite", + "example_sentence_native": "Il aime réciter des poèmes.", + "example_sentence_english": "He likes to recite poems.", + "pos": "verb", + "word_frequency": 14640 + }, + { + "word": "réducteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reducer", + "example_sentence_native": "Le réducteur de vitesse est cassé.", + "example_sentence_english": "The speed reducer is broken.", + "pos": "noun", + "word_frequency": 14641 + }, + { + "word": "rénové", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renovated", + "example_sentence_native": "L'appartement est entièrement rénové.", + "example_sentence_english": "The apartment is completely renovated.", + "pos": "adjective", + "word_frequency": 14642 + }, + { + "word": "réorganiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reorganize", + "example_sentence_native": "Nous devons réorganiser le bureau.", + "example_sentence_english": "We need to reorganize the office.", + "pos": "verb", + "word_frequency": 14643 + }, + { + "word": "saisine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referral", + "example_sentence_native": "La saisine du tribunal a été effectuée.", + "example_sentence_english": "The referral to the court has been made.", + "pos": "noun", + "word_frequency": 14644 + }, + { + "word": "sanglot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sob", + "example_sentence_native": "On entendait ses sanglots dans la pièce.", + "example_sentence_english": "We could hear her sobs in the room.", + "pos": "noun", + "word_frequency": 14645 + }, + { + "word": "sardine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sardine", + "example_sentence_native": "J'ai acheté une boîte de sardines.", + "example_sentence_english": "I bought a can of sardines.", + "pos": "noun", + "word_frequency": 14646 + }, + { + "word": "statistiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistically", + "example_sentence_native": "Statistiquement, c'est une anomalie.", + "example_sentence_english": "Statistically, it's an anomaly.", + "pos": "adverb", + "word_frequency": 14653 + }, + { + "word": "substrat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "substrate", + "example_sentence_native": "Le substrat est essentiel pour la croissance des plantes.", + "example_sentence_english": "The substrate is essential for plant growth.", + "pos": "noun", + "word_frequency": 14655 + }, + { + "word": "superflu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superfluous", + "example_sentence_native": "Il faut éliminer le superflu.", + "example_sentence_english": "We must eliminate the superfluous.", + "pos": "noun", + "word_frequency": 14656 + }, + { + "word": "supportable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bearable", + "example_sentence_native": "La douleur est à peine supportable.", + "example_sentence_english": "The pain is barely bearable.", + "pos": "adjective", + "word_frequency": 14657 + }, + { + "word": "tempe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple (of the head)", + "example_sentence_native": "Il a une douleur à la tempe.", + "example_sentence_english": "He has a pain in his temple.", + "pos": "noun", + "word_frequency": 14658 + }, + { + "word": "tibia", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tibia", + "example_sentence_native": "Il s'est fracturé le tibia.", + "example_sentence_english": "He fractured his tibia.", + "pos": "noun", + "word_frequency": 14660 + }, + { + "word": "tofu", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tofu", + "example_sentence_native": "J'aime le tofu grillé.", + "example_sentence_english": "I like grilled tofu.", + "pos": "noun", + "word_frequency": 14663 + }, + { + "word": "totem", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "totem", + "example_sentence_native": "Le totem représente l'esprit du clan.", + "example_sentence_english": "The totem represents the spirit of the clan.", + "pos": "noun", + "word_frequency": 14664 + }, + { + "word": "traverse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossbeam", + "example_sentence_native": "Les traverses de chemin de fer sont en bois.", + "example_sentence_english": "The railway sleepers are made of wood.", + "pos": "noun", + "word_frequency": 14666 + }, + { + "word": "trottinette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scooter", + "example_sentence_native": "Il va au travail en trottinette.", + "example_sentence_english": "He goes to work by scooter.", + "pos": "noun", + "word_frequency": 14667 + }, + { + "word": "utopique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utopian", + "example_sentence_native": "Son idée est un peu utopique.", + "example_sentence_english": "His idea is a bit utopian.", + "pos": "adjective", + "word_frequency": 14669 + }, + { + "word": "vil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vile", + "example_sentence_native": "C'est un acte vil et méprisable.", + "example_sentence_english": "It's a vile and despicable act.", + "pos": "adjective", + "word_frequency": 14670 + }, + { + "word": "violoniste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violinist", + "example_sentence_native": "La violoniste a joué un morceau magnifique.", + "example_sentence_english": "The violinist played a magnificent piece.", + "pos": "noun", + "word_frequency": 14671 + }, + { + "word": "éclectique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eclectic", + "example_sentence_native": "Ses goûts musicaux sont très éclectiques.", + "example_sentence_english": "His musical tastes are very eclectic.", + "pos": "adjective", + "word_frequency": 14674 + }, + { + "word": "émail", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enamel", + "example_sentence_native": "L'émail de cette baignoire est abîmé.", + "example_sentence_english": "The enamel of this bathtub is damaged.", + "pos": "noun", + "word_frequency": 14675 + }, + { + "word": "épinard", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spinach", + "example_sentence_native": "J'adore les épinards à la crème.", + "example_sentence_english": "I love creamed spinach.", + "pos": "noun", + "word_frequency": 14676 + }, + { + "word": "étayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to support", + "example_sentence_native": "Il a utilisé des arguments solides pour étayer sa thèse.", + "example_sentence_english": "He used strong arguments to support his thesis.", + "pos": "verb", + "word_frequency": 14677 + }, + { + "word": "abdos", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abs", + "example_sentence_native": "Je fais des abdos tous les matins.", + "example_sentence_english": "I do abs every morning.", + "pos": "none", + "word_frequency": 14678 + }, + { + "word": "acquittement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acquittal", + "example_sentence_native": "L'acquittement de l'accusé a surpris tout le monde.", + "example_sentence_english": "The acquittal of the accused surprised everyone.", + "pos": "noun", + "word_frequency": 14679 + }, + { + "word": "ameublement", + "article_with_word": "l'ameublement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furniture", + "example_sentence_native": "Le magasin propose un large choix d'ameublement pour la maison.", + "example_sentence_english": "The store offers a wide selection of furniture for the home.", + "pos": "noun", + "word_frequency": 14685 + }, + { + "word": "assemblé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembled", + "example_sentence_native": "Les pièces sont assemblées avec soin.", + "example_sentence_english": "The parts are assembled with care.", + "pos": "adjective", + "word_frequency": 14689 + }, + { + "word": "attelage", + "article_with_word": "l'attelage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hitch;team (of horses)", + "example_sentence_native": "Il a installé un attelage sur sa voiture pour tirer la caravane.", + "example_sentence_english": "He installed a hitch on his car to pull the caravan.", + "pos": "noun", + "word_frequency": 14690 + }, + { + "word": "autodétermination", + "article_with_word": "l'autodétermination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-determination", + "example_sentence_native": "Le droit à l'autodétermination est un principe fondamental.", + "example_sentence_english": "The right to self-determination is a fundamental principle.", + "pos": "noun", + "word_frequency": 14691 + }, + { + "word": "blanchi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whitened;bleached", + "example_sentence_native": "Le linge est sorti tout blanchi de la machine.", + "example_sentence_english": "The laundry came out all whitened from the machine.", + "pos": "adjective", + "word_frequency": 14699 + }, + { + "word": "bondir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leap;to bound", + "example_sentence_native": "Le chat a bondi sur la souris.", + "example_sentence_english": "The cat leaped onto the mouse.", + "pos": "verb", + "word_frequency": 14701 + }, + { + "word": "bouée", + "article_with_word": "la bouée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buoy;lifebuoy", + "example_sentence_native": "Le nageur s'est accroché à la bouée de sauvetage.", + "example_sentence_english": "The swimmer clung to the lifebuoy.", + "pos": "noun", + "word_frequency": 14703 + }, + { + "word": "branché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trendy;connected (tech)", + "example_sentence_native": "Ce quartier est très branché avec ses nouveaux cafés.", + "example_sentence_english": "This neighborhood is very trendy with its new cafes.", + "pos": "adjective", + "word_frequency": 14704 + }, + { + "word": "bénir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bless", + "example_sentence_native": "Le prêtre a béni le mariage.", + "example_sentence_english": "The priest blessed the marriage.", + "pos": "verb", + "word_frequency": 14705 + }, + { + "word": "cadastre", + "article_with_word": "le cadastre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "land registry", + "example_sentence_native": "Il a consulté le cadastre pour vérifier les limites de la propriété.", + "example_sentence_english": "He consulted the land registry to check the property boundaries.", + "pos": "noun", + "word_frequency": 14706 + }, + { + "word": "cagoule", + "article_with_word": "la cagoule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balaclava;hood", + "example_sentence_native": "Il portait une cagoule pour se protéger du froid.", + "example_sentence_english": "He wore a balaclava to protect himself from the cold.", + "pos": "noun", + "word_frequency": 14707 + }, + { + "word": "celte", + "article_with_word": "le Celte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Celt", + "example_sentence_native": "Les Celtes habitaient une grande partie de l'Europe.", + "example_sentence_english": "The Celts inhabited a large part of Europe.", + "pos": "noun", + "word_frequency": 14710 + }, + { + "word": "centième", + "article_with_word": "le centième", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hundredth", + "example_sentence_native": "Il a terminé la course au centième de seconde près.", + "example_sentence_english": "He finished the race to the hundredth of a second.", + "pos": "noun", + "word_frequency": 14711 + }, + { + "word": "collaborative", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collaborative", + "example_sentence_native": "Ils ont adopté une approche collaborative pour le projet.", + "example_sentence_english": "They adopted a collaborative approach for the project.", + "pos": "adjective", + "word_frequency": 14716 + }, + { + "word": "colossal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colossal;enormous", + "example_sentence_native": "Le projet représente un investissement colossal.", + "example_sentence_english": "The project represents a colossal investment.", + "pos": "adjective", + "word_frequency": 14717 + }, + { + "word": "commémorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commemorate", + "example_sentence_native": "Nous commémorons la fin de la guerre chaque année.", + "example_sentence_english": "We commemorate the end of the war every year.", + "pos": "verb", + "word_frequency": 14719 + }, + { + "word": "concombre", + "article_with_word": "le concombre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cucumber", + "example_sentence_native": "J'ai acheté un concombre pour ma salade.", + "example_sentence_english": "I bought a cucumber for my salad.", + "pos": "noun", + "word_frequency": 14720 + }, + { + "word": "copilote", + "article_with_word": "le copilote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copilot", + "example_sentence_native": "Le copilote a vérifié les instruments avant le décollage.", + "example_sentence_english": "The copilot checked the instruments before takeoff.", + "pos": "noun", + "word_frequency": 14721 + }, + { + "word": "corrida", + "article_with_word": "la corrida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullfight", + "example_sentence_native": "La corrida est une tradition controversée en Espagne.", + "example_sentence_english": "Bullfighting is a controversial tradition in Spain.", + "pos": "noun", + "word_frequency": 14722 + }, + { + "word": "corrosion", + "article_with_word": "la corrosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrosion", + "example_sentence_native": "La corrosion a endommagé la structure métallique.", + "example_sentence_english": "Corrosion damaged the metal structure.", + "pos": "noun", + "word_frequency": 14723 + }, + { + "word": "couscous", + "article_with_word": "le couscous", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "couscous", + "example_sentence_native": "Nous avons mangé du couscous pour le dîner.", + "example_sentence_english": "We ate couscous for dinner.", + "pos": "noun", + "word_frequency": 14724 + }, + { + "word": "cricket", + "article_with_word": "le cricket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cricket", + "example_sentence_native": "Le cricket est un sport populaire au Royaume-Uni.", + "example_sentence_english": "Cricket is a popular sport in the United Kingdom.", + "pos": "noun", + "word_frequency": 14727 + }, + { + "word": "descriptive", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "descriptive", + "example_sentence_native": "Son style d'écriture est très descriptif.", + "example_sentence_english": "His writing style is very descriptive.", + "pos": "adjective", + "word_frequency": 14732 + }, + { + "word": "distingué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinguished;elegant", + "example_sentence_native": "Il a une allure très distinguée.", + "example_sentence_english": "He has a very distinguished appearance.", + "pos": "adjective", + "word_frequency": 14734 + }, + { + "word": "déconseiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advise against", + "example_sentence_native": "Je vous déconseille de sortir par ce temps.", + "example_sentence_english": "I advise you against going out in this weather.", + "pos": "verb", + "word_frequency": 14739 + }, + { + "word": "démoniaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demonic", + "example_sentence_native": "Il avait un rire démoniaque.", + "example_sentence_english": "He had a demonic laugh.", + "pos": "adjective", + "word_frequency": 14740 + }, + { + "word": "dérangeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbing;unsettling", + "example_sentence_native": "Ce film est assez dérangeant.", + "example_sentence_english": "This film is quite disturbing.", + "pos": "adjective", + "word_frequency": 14741 + }, + { + "word": "déséquilibré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbalanced;unstable", + "example_sentence_native": "Son régime alimentaire est déséquilibré.", + "example_sentence_english": "His diet is unbalanced.", + "pos": "adjective", + "word_frequency": 14742 + }, + { + "word": "dévaluation", + "article_with_word": "la dévaluation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devaluation", + "example_sentence_native": "La dévaluation de la monnaie a eu des conséquences économiques.", + "example_sentence_english": "The currency devaluation had economic consequences.", + "pos": "noun", + "word_frequency": 14743 + }, + { + "word": "embellir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to beautify;to embellish", + "example_sentence_native": "Ils ont décidé d'embellir leur jardin.", + "example_sentence_english": "They decided to beautify their garden.", + "pos": "verb", + "word_frequency": 14745 + }, + { + "word": "exceller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to excel", + "example_sentence_native": "Il excelle dans toutes les matières.", + "example_sentence_english": "He excels in all subjects.", + "pos": "verb", + "word_frequency": 14748 + }, + { + "word": "extrémisme", + "article_with_word": "l'extrémisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremism", + "example_sentence_native": "L'extrémisme est une menace pour la démocratie.", + "example_sentence_english": "Extremism is a threat to democracy.", + "pos": "noun", + "word_frequency": 14749 + }, + { + "word": "fanatisme", + "article_with_word": "le fanatisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fanaticism", + "example_sentence_native": "Le fanatisme religieux peut mener à la violence.", + "example_sentence_english": "Religious fanaticism can lead to violence.", + "pos": "noun", + "word_frequency": 14751 + }, + { + "word": "favoritisme", + "article_with_word": "le favoritisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "favoritism", + "example_sentence_native": "Le favoritisme est souvent perçu comme injuste.", + "example_sentence_english": "Favoritism is often perceived as unfair.", + "pos": "noun", + "word_frequency": 14752 + }, + { + "word": "furie", + "article_with_word": "la furie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fury;rage", + "example_sentence_native": "Elle a éclaté en furie après avoir appris la nouvelle.", + "example_sentence_english": "She erupted in fury after hearing the news.", + "pos": "noun", + "word_frequency": 14760 + }, + { + "word": "gingembre", + "article_with_word": "le gingembre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ginger", + "example_sentence_native": "J'aime ajouter du gingembre frais à mon thé.", + "example_sentence_english": "I like to add fresh ginger to my tea.", + "pos": "noun", + "word_frequency": 14763 + }, + { + "word": "grappe", + "article_with_word": "la grappe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bunch;cluster", + "example_sentence_native": "Il a cueilli une grappe de raisins.", + "example_sentence_english": "He picked a bunch of grapes.", + "pos": "noun", + "word_frequency": 14764 + }, + { + "word": "grief", + "article_with_word": "le grief", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grievance;complaint", + "example_sentence_native": "Les employés ont exprimé leurs griefs à la direction.", + "example_sentence_english": "The employees expressed their grievances to the management.", + "pos": "noun", + "word_frequency": 14766 + }, + { + "word": "gueux", + "article_with_word": "le gueux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beggar;pauper", + "example_sentence_native": "Il vivait comme un gueux, sans abri ni ressources.", + "example_sentence_english": "He lived like a beggar, without shelter or resources.", + "pos": "noun", + "word_frequency": 14767 + }, + { + "word": "habilité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authorized;qualified;skilled", + "example_sentence_native": "Seul le personnel habilité a accès à cette zone.", + "example_sentence_english": "Only authorized personnel have access to this area.", + "pos": "adjective", + "word_frequency": 14769 + }, + { + "word": "hammam", + "article_with_word": "le hammam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hammam;Turkish bath", + "example_sentence_native": "Nous avons passé l'après-midi au hammam pour nous détendre.", + "example_sentence_english": "We spent the afternoon at the hammam to relax.", + "pos": "noun", + "word_frequency": 14770 + }, + { + "word": "hobbit", + "article_with_word": "le hobbit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hobbit", + "example_sentence_native": "Les hobbits sont des créatures imaginaires de petite taille.", + "example_sentence_english": "Hobbits are imaginary small creatures.", + "pos": "noun", + "word_frequency": 14771 + }, + { + "word": "iconographie", + "article_with_word": "l'iconographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iconography", + "example_sentence_native": "L'iconographie médiévale est riche en symboles.", + "example_sentence_english": "Medieval iconography is rich in symbols.", + "pos": "noun", + "word_frequency": 14773 + }, + { + "word": "immaculé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immaculate;spotless", + "example_sentence_native": "Sa réputation est restée immaculée malgré les rumeurs.", + "example_sentence_english": "His reputation remained immaculate despite the rumors.", + "pos": "adjective", + "word_frequency": 14775 + }, + { + "word": "immuable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immutable;unchangeable", + "example_sentence_native": "Les lois de la physique sont considérées comme immuables.", + "example_sentence_english": "The laws of physics are considered immutable.", + "pos": "adjective", + "word_frequency": 14776 + }, + { + "word": "impartial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impartial;unbiased", + "example_sentence_native": "Un juge doit être impartial pour rendre la justice.", + "example_sentence_english": "A judge must be impartial to administer justice.", + "pos": "adjective", + "word_frequency": 14777 + }, + { + "word": "incliné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclined;tilted;sloped", + "example_sentence_native": "La tour de Pise est célèbre pour être inclinée.", + "example_sentence_english": "The Leaning Tower of Pisa is famous for being inclined.", + "pos": "adjective", + "word_frequency": 14778 + }, + { + "word": "indigo", + "article_with_word": "l'indigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indigo", + "example_sentence_native": "Elle portait une robe d'un bleu indigo profond.", + "example_sentence_english": "She wore a deep indigo blue dress.", + "pos": "noun", + "word_frequency": 14779 + }, + { + "word": "inestimable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inestimable;priceless", + "example_sentence_native": "L'aide qu'il a apportée est d'une valeur inestimable.", + "example_sentence_english": "The help he provided is of inestimable value.", + "pos": "adjective", + "word_frequency": 14780 + }, + { + "word": "infectieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infectious", + "example_sentence_native": "La grippe est une maladie très infectieuse.", + "example_sentence_english": "Flu is a very infectious disease.", + "pos": "adjective", + "word_frequency": 14781 + }, + { + "word": "initiateur", + "article_with_word": "l'initiateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "initiator;originator", + "example_sentence_native": "Il a été l'initiateur de ce projet ambitieux.", + "example_sentence_english": "He was the initiator of this ambitious project.", + "pos": "noun", + "word_frequency": 14782 + }, + { + "word": "insolent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insolent;disrespectful", + "example_sentence_native": "Son comportement insolent lui a valu une réprimande.", + "example_sentence_english": "His insolent behavior earned him a reprimand.", + "pos": "adjective", + "word_frequency": 14783 + }, + { + "word": "intenable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "untenable;unbearable;unmanageable", + "example_sentence_native": "La situation est devenue intenable, il a dû démissionner.", + "example_sentence_english": "The situation became untenable, he had to resign.", + "pos": "adjective", + "word_frequency": 14784 + }, + { + "word": "islamophobe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamophobic", + "example_sentence_native": "Les discours islamophobes sont inacceptables.", + "example_sentence_english": "Islamophobic speeches are unacceptable.", + "pos": "adjective", + "word_frequency": 14788 + }, + { + "word": "isolant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulating", + "example_sentence_native": "Ce matériau est très isolant contre le froid.", + "example_sentence_english": "This material is very insulating against the cold.", + "pos": "adjective", + "word_frequency": 14789 + }, + { + "word": "lassitude", + "article_with_word": "la lassitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lassitude;weariness", + "example_sentence_native": "Une profonde lassitude l'envahit après cette longue journée.", + "example_sentence_english": "A deep lassitude overcame him after this long day.", + "pos": "noun", + "word_frequency": 14797 + }, + { + "word": "lister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to list", + "example_sentence_native": "Veuillez lister tous les articles que vous souhaitez acheter.", + "example_sentence_english": "Please list all the items you wish to buy.", + "pos": "verb", + "word_frequency": 14799 + }, + { + "word": "lynx", + "article_with_word": "le lynx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lynx", + "example_sentence_native": "Le lynx est un félin sauvage.", + "example_sentence_english": "The lynx is a wild feline.", + "pos": "noun", + "word_frequency": 14800 + }, + { + "word": "légiférer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to legislate", + "example_sentence_native": "Le parlement a le pouvoir de légiférer.", + "example_sentence_english": "Parliament has the power to legislate.", + "pos": "verb", + "word_frequency": 14801 + }, + { + "word": "léguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bequeath", + "example_sentence_native": "Il a décidé de léguer sa fortune à une œuvre de charité.", + "example_sentence_english": "He decided to bequeath his fortune to a charity.", + "pos": "verb", + "word_frequency": 14802 + }, + { + "word": "maillon", + "article_with_word": "le maillon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "link (of a chain)", + "example_sentence_native": "Chaque maillon de la chaîne est important.", + "example_sentence_english": "Each link in the chain is important.", + "pos": "noun", + "word_frequency": 14803 + }, + { + "word": "menuiserie", + "article_with_word": "la menuiserie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpentry;joinery", + "example_sentence_native": "Il travaille dans la menuiserie depuis vingt ans.", + "example_sentence_english": "He has been working in carpentry for twenty years.", + "pos": "noun", + "word_frequency": 14807 + }, + { + "word": "minimaliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimalist", + "example_sentence_native": "Son appartement a un style très minimaliste.", + "example_sentence_english": "His apartment has a very minimalist style.", + "pos": "adjective", + "word_frequency": 14809 + }, + { + "word": "minutieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulously", + "example_sentence_native": "Il a examiné le document minutieusement.", + "example_sentence_english": "He examined the document meticulously.", + "pos": "adverb", + "word_frequency": 14810 + }, + { + "word": "moelleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft;mellow;moist", + "example_sentence_native": "Ce gâteau est très moelleux.", + "example_sentence_english": "This cake is very moist.", + "pos": "adjective", + "word_frequency": 14812 + }, + { + "word": "mollusque", + "article_with_word": "le mollusque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mollusk", + "example_sentence_native": "Les huîtres sont des mollusques.", + "example_sentence_english": "Oysters are mollusks.", + "pos": "noun", + "word_frequency": 14813 + }, + { + "word": "momie", + "article_with_word": "la momie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mummy", + "example_sentence_native": "Les archéologues ont découvert une ancienne momie égyptienne.", + "example_sentence_english": "Archaeologists discovered an ancient Egyptian mummy.", + "pos": "noun", + "word_frequency": 14814 + }, + { + "word": "mordant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biting;sharp;incisive", + "example_sentence_native": "Son humour est souvent très mordant.", + "example_sentence_english": "His humor is often very biting.", + "pos": "adjective", + "word_frequency": 14816 + }, + { + "word": "morne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy;dismal;bleak", + "example_sentence_native": "Le temps était morne et pluvieux.", + "example_sentence_english": "The weather was gloomy and rainy.", + "pos": "adjective", + "word_frequency": 14817 + }, + { + "word": "mouillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wet", + "example_sentence_native": "Mes chaussures sont toutes mouillées.", + "example_sentence_english": "My shoes are all wet.", + "pos": "adjective", + "word_frequency": 14818 + }, + { + "word": "muret", + "article_with_word": "le muret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "low wall", + "example_sentence_native": "Il y a un petit muret autour du jardin.", + "example_sentence_english": "There is a small low wall around the garden.", + "pos": "noun", + "word_frequency": 14820 + }, + { + "word": "naturalisation", + "article_with_word": "la naturalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalization", + "example_sentence_native": "Il a demandé sa naturalisation après plusieurs années de résidence.", + "example_sentence_english": "He applied for naturalization after several years of residency.", + "pos": "noun", + "word_frequency": 14824 + }, + { + "word": "nuageux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloudy", + "example_sentence_native": "Le ciel est très nuageux aujourd'hui.", + "example_sentence_english": "The sky is very cloudy today.", + "pos": "adjective", + "word_frequency": 14829 + }, + { + "word": "nuancé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuanced;subtle", + "example_sentence_native": "Son opinion est très nuancée sur le sujet.", + "example_sentence_english": "His opinion is very nuanced on the subject.", + "pos": "adjective", + "word_frequency": 14830 + }, + { + "word": "nutriment", + "article_with_word": "le nutriment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nutrient", + "example_sentence_native": "Les légumes sont riches en nutriments essentiels.", + "example_sentence_english": "Vegetables are rich in essential nutrients.", + "pos": "noun", + "word_frequency": 14831 + }, + { + "word": "négociable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "negotiable", + "example_sentence_native": "Le prix est négociable.", + "example_sentence_english": "The price is negotiable.", + "pos": "adjective", + "word_frequency": 14832 + }, + { + "word": "omission", + "article_with_word": "l’omission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omission", + "example_sentence_native": "Il s’agit d’une omission regrettable dans le rapport.", + "example_sentence_english": "It is a regrettable omission in the report.", + "pos": "noun", + "word_frequency": 14833 + }, + { + "word": "ovaire", + "article_with_word": "l’ovaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ovary", + "example_sentence_native": "L’ovaire est un organe reproducteur féminin.", + "example_sentence_english": "The ovary is a female reproductive organ.", + "pos": "noun", + "word_frequency": 14835 + }, + { + "word": "paroissial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parochial", + "example_sentence_native": "Il participe activement à la vie paroissiale.", + "example_sentence_english": "He actively participates in parochial life.", + "pos": "adjective", + "word_frequency": 14836 + }, + { + "word": "pertinemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pertinently;relevantly;knowingly", + "example_sentence_native": "Il a répondu pertinemment à toutes les questions.", + "example_sentence_english": "He answered all questions pertinently.", + "pos": "adverb", + "word_frequency": 14837 + }, + { + "word": "pingouin", + "article_with_word": "le pingouin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penguin", + "example_sentence_native": "Le pingouin vit dans les régions froides.", + "example_sentence_english": "The penguin lives in cold regions.", + "pos": "noun", + "word_frequency": 14838 + }, + { + "word": "piédestal", + "article_with_word": "le piédestal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedestal", + "example_sentence_native": "La statue est placée sur un piédestal.", + "example_sentence_english": "The statue is placed on a pedestal.", + "pos": "noun", + "word_frequency": 14839 + }, + { + "word": "presbytère", + "article_with_word": "le presbytère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presbytery", + "example_sentence_native": "Le prêtre habite au presbytère à côté de l'église.", + "example_sentence_english": "The priest lives in the presbytery next to the church.", + "pos": "noun", + "word_frequency": 14843 + }, + { + "word": "prescrit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescribed", + "example_sentence_native": "Le médicament prescrit a soulagé sa douleur.", + "example_sentence_english": "The prescribed medication relieved his pain.", + "pos": "adjective", + "word_frequency": 14844 + }, + { + "word": "programmeur", + "article_with_word": "le programmeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programmer", + "example_sentence_native": "Le programmeur a passé la nuit à corriger les bugs.", + "example_sentence_english": "The programmer spent the night fixing the bugs.", + "pos": "noun", + "word_frequency": 14846 + }, + { + "word": "provocateur", + "article_with_word": "le provocateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocateur", + "example_sentence_native": "Le provocateur a été expulsé de la réunion.", + "example_sentence_english": "The provocateur was expelled from the meeting.", + "pos": "noun", + "word_frequency": 14847 + }, + { + "word": "prémice", + "article_with_word": "la prémice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "premise", + "example_sentence_native": "Les premières prémices de l'automne sont déjà visibles.", + "example_sentence_english": "The first beginnings of autumn are already visible.", + "pos": "noun", + "word_frequency": 14848 + }, + { + "word": "préservé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserved", + "example_sentence_native": "Ce site historique est bien préservé.", + "example_sentence_english": "This historical site is well preserved.", + "pos": "adjective", + "word_frequency": 14849 + }, + { + "word": "prévalence", + "article_with_word": "la prévalence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevalence", + "example_sentence_native": "La prévalence de cette maladie est en augmentation.", + "example_sentence_english": "The prevalence of this disease is increasing.", + "pos": "noun", + "word_frequency": 14850 + }, + { + "word": "purifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to purify", + "example_sentence_native": "Il faut purifier l'eau avant de la boire.", + "example_sentence_english": "You must purify the water before drinking it.", + "pos": "verb", + "word_frequency": 14851 + }, + { + "word": "rattaché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attached", + "example_sentence_native": "Le service est rattaché à la direction générale.", + "example_sentence_english": "The department is attached to the general management.", + "pos": "adjective", + "word_frequency": 14853 + }, + { + "word": "rayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scratch", + "example_sentence_native": "Fais attention à ne pas rayer la voiture.", + "example_sentence_english": "Be careful not to scratch the car.", + "pos": "verb", + "word_frequency": 14855 + }, + { + "word": "repêcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fish out", + "example_sentence_native": "Le sauveteur a réussi à repêcher l'enfant de l'eau.", + "example_sentence_english": "The rescuer managed to fish the child out of the water.", + "pos": "verb", + "word_frequency": 14856 + }, + { + "word": "ruiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruined", + "example_sentence_native": "Après la crise, son entreprise était ruinée.", + "example_sentence_english": "After the crisis, his company was ruined.", + "pos": "adjective", + "word_frequency": 14857 + }, + { + "word": "répertorier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to list", + "example_sentence_native": "Il faut répertorier tous les documents importants.", + "example_sentence_english": "All important documents must be listed.", + "pos": "verb", + "word_frequency": 14859 + }, + { + "word": "répondeur", + "article_with_word": "le répondeur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "answering machine", + "example_sentence_native": "Laissez un message sur le répondeur après le bip.", + "example_sentence_english": "Leave a message on the answering machine after the beep.", + "pos": "noun", + "word_frequency": 14860 + }, + { + "word": "réquisition", + "article_with_word": "la réquisition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "requisition", + "example_sentence_native": "La police a fait une réquisition de documents.", + "example_sentence_english": "The police made a requisition for documents.", + "pos": "noun", + "word_frequency": 14861 + }, + { + "word": "rétrograde", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrograde", + "example_sentence_native": "Ses idées sont considérées comme rétrogrades par beaucoup.", + "example_sentence_english": "His ideas are considered retrograde by many.", + "pos": "adjective", + "word_frequency": 14862 + }, + { + "word": "réversible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reversible", + "example_sentence_native": "Ce processus est-il réversible ?", + "example_sentence_english": "Is this process reversible?", + "pos": "adjective", + "word_frequency": 14863 + }, + { + "word": "sevrage", + "article_with_word": "le sevrage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weaning", + "example_sentence_native": "Le sevrage du bébé est une étape importante.", + "example_sentence_english": "The baby's weaning is an important step.", + "pos": "noun", + "word_frequency": 14865 + }, + { + "word": "simpliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplistic", + "example_sentence_native": "Son analyse du problème est un peu simpliste.", + "example_sentence_english": "His analysis of the problem is a bit simplistic.", + "pos": "adjective", + "word_frequency": 14868 + }, + { + "word": "smiley", + "article_with_word": "un smiley", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smiley", + "example_sentence_native": "Elle a ajouté un smiley à la fin de son message.", + "example_sentence_english": "She added a smiley at the end of her message.", + "pos": "noun", + "word_frequency": 14869 + }, + { + "word": "sole", + "article_with_word": "la sole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sole (fish)", + "example_sentence_native": "J'ai commandé une sole meunière au restaurant.", + "example_sentence_english": "I ordered a sole meunière at the restaurant.", + "pos": "noun", + "word_frequency": 14870 + }, + { + "word": "ssd", + "article_with_word": "un SSD", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "SSD", + "example_sentence_native": "J'ai remplacé mon ancien disque dur par un SSD.", + "example_sentence_english": "I replaced my old hard drive with an SSD.", + "pos": "noun", + "word_frequency": 14872 + }, + { + "word": "stigmatisation", + "article_with_word": "la stigmatisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stigmatization", + "example_sentence_native": "La stigmatisation des minorités est un problème social.", + "example_sentence_english": "The stigmatization of minorities is a social problem.", + "pos": "noun", + "word_frequency": 14873 + }, + { + "word": "stylé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stylish", + "example_sentence_native": "Il a un nouveau manteau très stylé.", + "example_sentence_english": "He has a new very stylish coat.", + "pos": "adjective", + "word_frequency": 14875 + }, + { + "word": "séchage", + "article_with_word": "le séchage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drying", + "example_sentence_native": "Le temps de séchage de la peinture est de deux heures.", + "example_sentence_english": "The drying time for the paint is two hours.", + "pos": "noun", + "word_frequency": 14876 + }, + { + "word": "tempérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to temper", + "example_sentence_native": "Il a essayé de tempérer les ardeurs de la foule.", + "example_sentence_english": "He tried to temper the enthusiasm of the crowd.", + "pos": "verb", + "word_frequency": 14877 + }, + { + "word": "therme", + "article_with_word": "la therme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal bath", + "example_sentence_native": "Les thermes romains étaient des lieux de baignade publics.", + "example_sentence_english": "Roman baths were public bathing places.", + "pos": "noun", + "word_frequency": 14879 + }, + { + "word": "triompher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to triumph", + "example_sentence_native": "L'équipe a réussi à triompher de ses adversaires.", + "example_sentence_english": "The team managed to triumph over its opponents.", + "pos": "verb", + "word_frequency": 14881 + }, + { + "word": "trompeur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deceptive", + "example_sentence_native": "Son apparence peut être trompeuse.", + "example_sentence_english": "His appearance can be deceptive.", + "pos": "adjective", + "word_frequency": 14882 + }, + { + "word": "tropique", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tropic", + "example_sentence_native": "Les tropiques sont connus pour leur climat chaud.", + "example_sentence_english": "The tropics are known for their warm climate.", + "pos": "noun", + "word_frequency": 14883 + }, + { + "word": "téléfilm", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "TV movie", + "example_sentence_native": "Nous avons regardé un téléfilm hier soir.", + "example_sentence_english": "We watched a TV movie last night.", + "pos": "noun", + "word_frequency": 14884 + }, + { + "word": "urinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urinary", + "example_sentence_native": "Il souffre d'une infection urinaire.", + "example_sentence_english": "He suffers from a urinary infection.", + "pos": "adjective", + "word_frequency": 14885 + }, + { + "word": "usurpation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usurpation", + "example_sentence_native": "L'usurpation d'identité est un crime grave.", + "example_sentence_english": "Identity theft is a serious crime.", + "pos": "noun", + "word_frequency": 14886 + }, + { + "word": "vibrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibrant", + "example_sentence_native": "La ville a une scène artistique vibrante.", + "example_sentence_english": "The city has a vibrant art scene.", + "pos": "adjective", + "word_frequency": 14888 + }, + { + "word": "vocable", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "term;word", + "example_sentence_native": "C'est un vocable peu courant dans le langage quotidien.", + "example_sentence_english": "It's an uncommon term in everyday language.", + "pos": "noun", + "word_frequency": 14889 + }, + { + "word": "vrille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drill;spin", + "example_sentence_native": "L'avion est entré en vrille.", + "example_sentence_english": "The plane went into a spin.", + "pos": "noun", + "word_frequency": 14890 + }, + { + "word": "vénérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to venerate;to worship", + "example_sentence_native": "Beaucoup de cultures vénèrent leurs ancêtres.", + "example_sentence_english": "Many cultures venerate their ancestors.", + "pos": "verb", + "word_frequency": 14891 + }, + { + "word": "zonage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "zoning", + "example_sentence_native": "Le plan de zonage de la ville a été modifié.", + "example_sentence_english": "The city's zoning plan has been modified.", + "pos": "noun", + "word_frequency": 14896 + }, + { + "word": "écrasement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crushing;crash", + "example_sentence_native": "L'écrasement de l'avion a causé de nombreuses victimes.", + "example_sentence_english": "The plane crash caused many casualties.", + "pos": "noun", + "word_frequency": 14897 + }, + { + "word": "égorger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to slit the throat;to slaughter", + "example_sentence_native": "Le boucher a égorgé l'animal.", + "example_sentence_english": "The butcher slaughtered the animal.", + "pos": "verb", + "word_frequency": 14898 + }, + { + "word": "électroménager", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home appliance", + "example_sentence_native": "Nous avons acheté de nouveaux appareils électroménagers.", + "example_sentence_english": "We bought new home appliances.", + "pos": "noun", + "word_frequency": 14899 + }, + { + "word": "éprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fall in love (with)", + "example_sentence_native": "Il s'est épris d'elle au premier regard.", + "example_sentence_english": "He fell in love with her at first sight.", + "pos": "verb", + "word_frequency": 14900 + }, + { + "word": "affamer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to starve", + "example_sentence_native": "La guerre a affamé la population.", + "example_sentence_english": "The war starved the population.", + "pos": "verb", + "word_frequency": 14901 + }, + { + "word": "allouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allocate", + "example_sentence_native": "Le gouvernement a alloué des fonds pour le projet.", + "example_sentence_english": "The government allocated funds for the project.", + "pos": "verb", + "word_frequency": 14903 + }, + { + "word": "alu", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aluminum (informal)", + "example_sentence_native": "Il a emballé le sandwich dans du papier alu.", + "example_sentence_english": "He wrapped the sandwich in aluminum foil.", + "pos": "noun", + "word_frequency": 14904 + }, + { + "word": "apache", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Apache (helicopter;ruffian)", + "example_sentence_native": "L'hélicoptère Apache est très puissant.", + "example_sentence_english": "The Apache helicopter is very powerful.", + "pos": "noun", + "word_frequency": 14908 + }, + { + "word": "archiduc", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archduke", + "example_sentence_native": "L'assassinat de l'archiduc a déclenché la guerre.", + "example_sentence_english": "The assassination of the archduke triggered the war.", + "pos": "noun", + "word_frequency": 14909 + }, + { + "word": "arsenic", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arsenic", + "example_sentence_native": "L'arsenic est un poison dangereux.", + "example_sentence_english": "Arsenic is a dangerous poison.", + "pos": "noun", + "word_frequency": 14910 + }, + { + "word": "asphyxie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asphyxia", + "example_sentence_native": "La victime est morte par asphyxie.", + "example_sentence_english": "The victim died of asphyxia.", + "pos": "noun", + "word_frequency": 14911 + }, + { + "word": "athlétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletic", + "example_sentence_native": "Il a une carrure athlétique.", + "example_sentence_english": "He has an athletic build.", + "pos": "adjective", + "word_frequency": 14912 + }, + { + "word": "attrayant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attractive;appealing", + "example_sentence_native": "Cette offre est très attrayante.", + "example_sentence_english": "This offer is very attractive.", + "pos": "adjective", + "word_frequency": 14913 + }, + { + "word": "aujourdhui", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "today", + "example_sentence_native": "Je vais au cinéma aujourd'hui.", + "example_sentence_english": "I'm going to the cinema today.", + "pos": "adverb", + "word_frequency": 14914 + }, + { + "word": "aune", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alder (tree);ell (measure)", + "example_sentence_native": "Il faut mesurer à l'aune de ses propres expériences.", + "example_sentence_english": "One must measure by the yardstick of one's own experiences.", + "pos": "noun", + "word_frequency": 14915 + }, + { + "word": "balte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Baltic", + "example_sentence_native": "Les pays baltes sont situés en Europe du Nord.", + "example_sentence_english": "The Baltic countries are located in Northern Europe.", + "pos": "adjective", + "word_frequency": 14918 + }, + { + "word": "baston", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fight;brawl", + "example_sentence_native": "Il y a eu une grosse baston devant le bar.", + "example_sentence_english": "There was a big fight in front of the bar.", + "pos": "noun", + "word_frequency": 14919 + }, + { + "word": "batiment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "building", + "example_sentence_native": "Le bâtiment est très grand.", + "example_sentence_english": "The building is very large.", + "pos": "noun", + "word_frequency": 14920 + }, + { + "word": "bavard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talkative", + "example_sentence_native": "Elle est très bavarde.", + "example_sentence_english": "She is very talkative.", + "pos": "adjective", + "word_frequency": 14921 + }, + { + "word": "betterave", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beetroot", + "example_sentence_native": "J'aime la salade de betterave.", + "example_sentence_english": "I like beetroot salad.", + "pos": "noun", + "word_frequency": 14925 + }, + { + "word": "biberon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby bottle", + "example_sentence_native": "Le bébé boit son lait au biberon.", + "example_sentence_english": "The baby drinks his milk from the bottle.", + "pos": "noun", + "word_frequency": 14926 + }, + { + "word": "bilinguisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bilingualism", + "example_sentence_native": "Le bilinguisme est un atout majeur.", + "example_sentence_english": "Bilingualism is a major asset.", + "pos": "noun", + "word_frequency": 14927 + }, + { + "word": "bison", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bison", + "example_sentence_native": "On peut voir des bisons dans ce parc.", + "example_sentence_english": "You can see bison in this park.", + "pos": "noun", + "word_frequency": 14929 + }, + { + "word": "bruyère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heather", + "example_sentence_native": "La bruyère fleurit en automne.", + "example_sentence_english": "Heather blooms in autumn.", + "pos": "noun", + "word_frequency": 14934 + }, + { + "word": "cafard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cockroach;blues (melancholy)", + "example_sentence_native": "J'ai le cafard aujourd'hui.", + "example_sentence_english": "I have the blues today.", + "pos": "noun", + "word_frequency": 14937 + }, + { + "word": "champêtre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rustic;rural", + "example_sentence_native": "Nous avons fait un pique-nique champêtre.", + "example_sentence_english": "We had a rustic picnic.", + "pos": "adjective", + "word_frequency": 14941 + }, + { + "word": "chilien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Chilean", + "example_sentence_native": "Il a des amis chiliens.", + "example_sentence_english": "He has Chilean friends.", + "pos": "adjective", + "word_frequency": 14943 + }, + { + "word": "clochard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homeless person;tramp", + "example_sentence_native": "Un clochard dormait sur un banc.", + "example_sentence_english": "A homeless person was sleeping on a bench.", + "pos": "noun", + "word_frequency": 14946 + }, + { + "word": "coche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "check mark;tick", + "example_sentence_native": "Mettez une coche dans la case appropriée.", + "example_sentence_english": "Put a check mark in the appropriate box.", + "pos": "noun", + "word_frequency": 14947 + }, + { + "word": "cohabiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cohabit;to live together", + "example_sentence_native": "Ils ont décidé de cohabiter.", + "example_sentence_english": "They decided to live together.", + "pos": "verb", + "word_frequency": 14948 + }, + { + "word": "coloniser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to colonize", + "example_sentence_native": "Les Européens ont colonisé de nombreux territoires.", + "example_sentence_english": "Europeans colonized many territories.", + "pos": "verb", + "word_frequency": 14950 + }, + { + "word": "comestible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edible", + "example_sentence_native": "Ces champignons sont comestibles.", + "example_sentence_english": "These mushrooms are edible.", + "pos": "adjective", + "word_frequency": 14952 + }, + { + "word": "consciemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consciously", + "example_sentence_native": "Il a agi consciemment.", + "example_sentence_english": "He acted consciously.", + "pos": "adverb", + "word_frequency": 14954 + }, + { + "word": "crush", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crush (romantic)", + "example_sentence_native": "J'ai un crush sur mon voisin.", + "example_sentence_english": "I have a crush on my neighbor.", + "pos": "noun", + "word_frequency": 14956 + }, + { + "word": "dangerosité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dangerousness", + "example_sentence_native": "La dangerosité de la situation est évidente.", + "example_sentence_english": "The dangerousness of the situation is obvious.", + "pos": "noun", + "word_frequency": 14957 + }, + { + "word": "droguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drug", + "example_sentence_native": "Il a été accusé d'avoir drogué sa victime.", + "example_sentence_english": "He was accused of having drugged his victim.", + "pos": "verb", + "word_frequency": 14963 + }, + { + "word": "duplex", + "article_with_word": "un duplex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duplex apartment", + "example_sentence_native": "Ils ont acheté un duplex avec vue sur la ville.", + "example_sentence_english": "They bought a duplex apartment with a view of the city.", + "pos": "noun", + "word_frequency": 14965 + }, + { + "word": "débâcle", + "article_with_word": "la débâcle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debacle;collapse", + "example_sentence_native": "La débâcle financière a eu des conséquences mondiales.", + "example_sentence_english": "The financial debacle had global consequences.", + "pos": "noun", + "word_frequency": 14966 + }, + { + "word": "dédier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dedicate", + "example_sentence_native": "Il a dédié son livre à ses parents.", + "example_sentence_english": "He dedicated his book to his parents.", + "pos": "verb", + "word_frequency": 14967 + }, + { + "word": "déficitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficit;loss-making", + "example_sentence_native": "L'entreprise est restée déficitaire pendant trois ans.", + "example_sentence_english": "The company remained loss-making for three years.", + "pos": "adjective", + "word_frequency": 14968 + }, + { + "word": "délirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be delirious;to rave", + "example_sentence_native": "Avec la fièvre, il a commencé à délirer.", + "example_sentence_english": "With the fever, he started to be delirious.", + "pos": "verb", + "word_frequency": 14969 + }, + { + "word": "déléguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to delegate", + "example_sentence_native": "Il est important de savoir déléguer des tâches.", + "example_sentence_english": "It is important to know how to delegate tasks.", + "pos": "verb", + "word_frequency": 14970 + }, + { + "word": "démagogie", + "article_with_word": "la démagogie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demagogy", + "example_sentence_native": "Les politiciens sont souvent accusés de démagogie.", + "example_sentence_english": "Politicians are often accused of demagogy.", + "pos": "noun", + "word_frequency": 14971 + }, + { + "word": "démanteler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismantle", + "example_sentence_native": "Le gouvernement a décidé de démanteler le réseau criminel.", + "example_sentence_english": "The government decided to dismantle the criminal network.", + "pos": "verb", + "word_frequency": 14972 + }, + { + "word": "démocratiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democratically", + "example_sentence_native": "Les décisions ont été prises démocratiquement.", + "example_sentence_english": "The decisions were made democratically.", + "pos": "adverb", + "word_frequency": 14973 + }, + { + "word": "dépanneur", + "article_with_word": "le dépanneur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repairman;convenience store (QC)", + "example_sentence_native": "J'ai appelé le dépanneur pour ma voiture en panne.", + "example_sentence_english": "I called the repairman for my broken-down car.", + "pos": "noun", + "word_frequency": 14974 + }, + { + "word": "départager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to separate;to decide between", + "example_sentence_native": "Le vote a été nécessaire pour départager les candidats.", + "example_sentence_english": "The vote was necessary to decide between the candidates.", + "pos": "verb", + "word_frequency": 14975 + }, + { + "word": "déraisonnable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unreasonable", + "example_sentence_native": "Ses exigences sont déraisonnables.", + "example_sentence_english": "His demands are unreasonable.", + "pos": "adjective", + "word_frequency": 14976 + }, + { + "word": "dériver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drift;to derive", + "example_sentence_native": "Le bateau a commencé à dériver vers le large.", + "example_sentence_english": "The boat started to drift offshore.", + "pos": "verb", + "word_frequency": 14977 + }, + { + "word": "enzyme", + "article_with_word": "une enzyme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enzyme", + "example_sentence_native": "Les enzymes jouent un rôle crucial dans la digestion.", + "example_sentence_english": "Enzymes play a crucial role in digestion.", + "pos": "noun", + "word_frequency": 14978 + }, + { + "word": "gin", + "article_with_word": "le gin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gin", + "example_sentence_native": "Il a commandé un gin tonic au bar.", + "example_sentence_english": "He ordered a gin and tonic at the bar.", + "pos": "noun", + "word_frequency": 14986 + }, + { + "word": "gitan", + "article_with_word": "le gitan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gypsy;Romani person", + "example_sentence_native": "Les gitans ont une culture riche et une longue histoire.", + "example_sentence_english": "Romani people have a rich culture and a long history.", + "pos": "noun", + "word_frequency": 14987 + }, + { + "word": "glucide", + "article_with_word": "un glucide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbohydrate", + "example_sentence_native": "Les pâtes sont une bonne source de glucides.", + "example_sentence_english": "Pasta is a good source of carbohydrates.", + "pos": "noun", + "word_frequency": 14988 + }, + { + "word": "gonflement", + "article_with_word": "le gonflement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swelling", + "example_sentence_native": "Après la piqûre, il y a eu un léger gonflement.", + "example_sentence_english": "After the sting, there was a slight swelling.", + "pos": "noun", + "word_frequency": 14989 + }, + { + "word": "grignoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nibble;to snack", + "example_sentence_native": "Elle aime grignoter des biscuits devant la télévision.", + "example_sentence_english": "She likes to nibble on cookies in front of the television.", + "pos": "verb", + "word_frequency": 14990 + }, + { + "word": "guidage", + "article_with_word": "le guidage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guidance;guiding", + "example_sentence_native": "Le système de guidage GPS est très précis.", + "example_sentence_english": "The GPS guidance system is very precise.", + "pos": "noun", + "word_frequency": 14991 + }, + { + "word": "hack", + "article_with_word": "un hack", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hack", + "example_sentence_native": "Le site web a subi un hack majeur la nuit dernière.", + "example_sentence_english": "The website suffered a major hack last night.", + "pos": "noun", + "word_frequency": 14992 + }, + { + "word": "houle", + "article_with_word": "la houle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swell (of the sea)", + "example_sentence_native": "La houle était forte, rendant la navigation difficile.", + "example_sentence_english": "The swell was strong, making navigation difficult.", + "pos": "noun", + "word_frequency": 14995 + }, + { + "word": "houlette", + "article_with_word": "la houlette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shepherd's crook", + "example_sentence_native": "Le berger guidait son troupeau avec sa houlette.", + "example_sentence_english": "The shepherd guided his flock with his crook.", + "pos": "noun", + "word_frequency": 14996 + }, + { + "word": "impopulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpopular", + "example_sentence_native": "La nouvelle mesure est très impopulaire auprès du public.", + "example_sentence_english": "The new measure is very unpopular with the public.", + "pos": "adjective", + "word_frequency": 14998 + }, + { + "word": "inactif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inactive", + "example_sentence_native": "Il est resté inactif pendant plusieurs mois après son accident.", + "example_sentence_english": "He remained inactive for several months after his accident.", + "pos": "adjective", + "word_frequency": 14999 + }, + { + "word": "inapproprié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inappropriate", + "example_sentence_native": "Son comportement était totalement inapproprié pour la situation.", + "example_sentence_english": "His behavior was totally inappropriate for the situation.", + "pos": "adjective", + "word_frequency": 15000 + }, + { + "word": "incursion", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incursion;raid", + "example_sentence_native": "L'armée a mené une incursion rapide en territoire ennemi.", + "example_sentence_english": "The army conducted a rapid incursion into enemy territory.", + "pos": "noun", + "word_frequency": 15001 + }, + { + "word": "indemniser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate;to indemnify", + "example_sentence_native": "L'assurance doit indemniser les victimes de l'accident.", + "example_sentence_english": "The insurance must compensate the victims of the accident.", + "pos": "verb", + "word_frequency": 15002 + }, + { + "word": "indigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outrage;to anger", + "example_sentence_native": "Cette injustice l'a indigné profondément.", + "example_sentence_english": "This injustice deeply outraged him.", + "pos": "verb", + "word_frequency": 15003 + }, + { + "word": "indulgence", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indulgence;leniency", + "example_sentence_native": "Il a demandé de l'indulgence pour son erreur.", + "example_sentence_english": "He asked for indulgence for his mistake.", + "pos": "noun", + "word_frequency": 15004 + }, + { + "word": "insulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insular;islander (adj)", + "example_sentence_native": "La culture insulaire est souvent très distincte.", + "example_sentence_english": "Island culture is often very distinct.", + "pos": "adjective", + "word_frequency": 15005 + }, + { + "word": "intello", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectual (informal)", + "example_sentence_native": "C'est un intello qui passe tout son temps à lire des livres complexes.", + "example_sentence_english": "He's an egghead who spends all his time reading complex books.", + "pos": "noun", + "word_frequency": 15006 + }, + { + "word": "invocation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invocation", + "example_sentence_native": "L'invocation des esprits est une pratique ancienne dans certaines cultures.", + "example_sentence_english": "The invocation of spirits is an ancient practice in some cultures.", + "pos": "noun", + "word_frequency": 15007 + }, + { + "word": "jasper", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jasper", + "example_sentence_native": "Le bracelet était orné de perles de jaspe rouge.", + "example_sentence_english": "The bracelet was adorned with red jasper beads.", + "pos": "noun", + "word_frequency": 15008 + }, + { + "word": "justicier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vigilante", + "example_sentence_native": "Le justicier masqué a combattu le crime dans la ville.", + "example_sentence_english": "The masked vigilante fought crime in the city.", + "pos": "noun", + "word_frequency": 15009 + }, + { + "word": "kamikaze", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kamikaze (pilot;person)", + "example_sentence_native": "Il a fait une descente kamikaze sur la piste de ski.", + "example_sentence_english": "He made a kamikaze descent on the ski slope.", + "pos": "noun", + "word_frequency": 15011 + }, + { + "word": "lime", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lime (fruit or tool)", + "example_sentence_native": "J'ai acheté une lime pour faire de la limonade maison.", + "example_sentence_english": "I bought a lime to make homemade lemonade.", + "pos": "noun", + "word_frequency": 15016 + }, + { + "word": "loco", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazily (informal)", + "example_sentence_native": "Il a agi complètement loco pendant la fête.", + "example_sentence_english": "He acted completely crazily during the party.", + "pos": "adverb", + "word_frequency": 15017 + }, + { + "word": "lotissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "housing development;subdivision", + "example_sentence_native": "Un nouveau lotissement est en construction à la périphérie de la ville.", + "example_sentence_english": "A new housing development is under construction on the outskirts of the city.", + "pos": "noun", + "word_frequency": 15018 + }, + { + "word": "manutention", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "handling;material handling", + "example_sentence_native": "La manutention des marchandises lourdes nécessite un équipement spécial.", + "example_sentence_english": "The handling of heavy goods requires special equipment.", + "pos": "noun", + "word_frequency": 15022 + }, + { + "word": "minutieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous;thorough", + "example_sentence_native": "Il est très minutieux dans son travail et ne laisse rien au hasard.", + "example_sentence_english": "He is very meticulous in his work and leaves nothing to chance.", + "pos": "adjective", + "word_frequency": 15028 + }, + { + "word": "monastique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monastic", + "example_sentence_native": "La vie monastique est dédiée à la prière et à la contemplation.", + "example_sentence_english": "Monastic life is dedicated to prayer and contemplation.", + "pos": "adjective", + "word_frequency": 15030 + }, + { + "word": "mouvementer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enliven;to make lively;agitated", + "example_sentence_native": "Il a essayé de mouvementer la discussion avec des idées nouvelles.", + "example_sentence_english": "He tried to enliven the discussion with new ideas.", + "pos": "verb", + "word_frequency": 15031 + }, + { + "word": "muter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transfer (work);to mutate (biology)", + "example_sentence_native": "Il a été muté à un autre service de l'entreprise.", + "example_sentence_english": "He was transferred to another department of the company.", + "pos": "verb", + "word_frequency": 15032 + }, + { + "word": "mémo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memo;memorandum", + "example_sentence_native": "J'ai envoyé un mémo à toute l'équipe pour la réunion de demain.", + "example_sentence_english": "I sent a memo to the whole team for tomorrow's meeting.", + "pos": "noun", + "word_frequency": 15034 + }, + { + "word": "méridien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meridian", + "example_sentence_native": "Le méridien de Greenwich est la référence mondiale pour les fuseaux horaires.", + "example_sentence_english": "The Greenwich Meridian is the global reference for time zones.", + "pos": "noun", + "word_frequency": 15035 + }, + { + "word": "météorite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorite", + "example_sentence_native": "Une météorite est tombée dans le désert, créant un grand cratère.", + "example_sentence_english": "A meteorite fell in the desert, creating a large crater.", + "pos": "noun", + "word_frequency": 15036 + }, + { + "word": "narcisse", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narcissus (flower);narcissist (person)", + "example_sentence_native": "Le narcisse est une belle fleur printanière souvent associée à l'égoïsme.", + "example_sentence_english": "The narcissus is a beautiful spring flower often associated with selfishness.", + "pos": "noun", + "word_frequency": 15037 + }, + { + "word": "nippon", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Japanese (formal;literary)", + "example_sentence_native": "L'art nippon est très apprécié pour sa finesse et sa tradition.", + "example_sentence_english": "Japanese art is highly appreciated for its finesse and tradition.", + "pos": "adjective", + "word_frequency": 15039 + }, + { + "word": "nominer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nominate", + "example_sentence_native": "Le comité a décidé de nominer trois candidats pour le prix.", + "example_sentence_english": "The committee decided to nominate three candidates for the prize.", + "pos": "verb", + "word_frequency": 15041 + }, + { + "word": "opprimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppress", + "example_sentence_native": "Le régime cherchait à opprimer toute forme de dissidence.", + "example_sentence_english": "The regime sought to oppress all forms of dissent.", + "pos": "verb", + "word_frequency": 15045 + }, + { + "word": "paroissien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parishioner", + "example_sentence_native": "Le prêtre a salué chaque paroissien après la messe.", + "example_sentence_english": "The priest greeted each parishioner after the mass.", + "pos": "noun", + "word_frequency": 15048 + }, + { + "word": "passation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfer;handover", + "example_sentence_native": "La passation de pouvoir s'est déroulée sans incident.", + "example_sentence_english": "The transfer of power took place without incident.", + "pos": "noun", + "word_frequency": 15049 + }, + { + "word": "pitre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clown;buffoon", + "example_sentence_native": "Il aime faire le pitre pour amuser ses amis.", + "example_sentence_english": "He likes to play the clown to amuse his friends.", + "pos": "noun", + "word_frequency": 15051 + }, + { + "word": "pizzeria", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pizzeria", + "example_sentence_native": "Nous avons dîné dans une petite pizzeria du quartier.", + "example_sentence_english": "We had dinner at a small pizzeria in the neighborhood.", + "pos": "noun", + "word_frequency": 15052 + }, + { + "word": "pressentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sense;to foresee", + "example_sentence_native": "Il pressentait que quelque chose d'important allait se produire.", + "example_sentence_english": "He sensed that something important was about to happen.", + "pos": "verb", + "word_frequency": 15054 + }, + { + "word": "priser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to value;to prize", + "example_sentence_native": "Il prise beaucoup son indépendance.", + "example_sentence_english": "He values his independence greatly.", + "pos": "verb", + "word_frequency": 15055 + }, + { + "word": "professionnellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professionally", + "example_sentence_native": "Elle gère ses affaires professionnellement.", + "example_sentence_english": "She manages her affairs professionally.", + "pos": "adverb", + "word_frequency": 15056 + }, + { + "word": "prolifique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prolific", + "example_sentence_native": "Cet auteur est très prolifique, il publie un livre par an.", + "example_sentence_english": "This author is very prolific, he publishes a book every year.", + "pos": "adjective", + "word_frequency": 15057 + }, + { + "word": "promulgation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "promulgation;enactment", + "example_sentence_native": "La promulgation de la nouvelle loi est prévue pour le mois prochain.", + "example_sentence_english": "The promulgation of the new law is scheduled for next month.", + "pos": "noun", + "word_frequency": 15058 + }, + { + "word": "prémunir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to protect;to guard against", + "example_sentence_native": "Il faut se prémunir contre les risques d'infection.", + "example_sentence_english": "One must guard against the risks of infection.", + "pos": "verb", + "word_frequency": 15059 + }, + { + "word": "prétendument", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegedly;supposedly", + "example_sentence_native": "Il a prétendument volé des documents secrets.", + "example_sentence_english": "He allegedly stole secret documents.", + "pos": "adverb", + "word_frequency": 15060 + }, + { + "word": "prêteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lender", + "example_sentence_native": "La banque est le prêteur principal pour ce projet.", + "example_sentence_english": "The bank is the main lender for this project.", + "pos": "noun", + "word_frequency": 15061 + }, + { + "word": "pupille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pupil (of the eye)", + "example_sentence_native": "La pupille se dilate dans l'obscurité.", + "example_sentence_english": "The pupil dilates in the dark.", + "pos": "noun", + "word_frequency": 15062 + }, + { + "word": "pécheur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sinner", + "example_sentence_native": "Selon la religion, tout homme est un pécheur.", + "example_sentence_english": "According to religion, every man is a sinner.", + "pos": "noun", + "word_frequency": 15063 + }, + { + "word": "qualitatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualitative", + "example_sentence_native": "Nous avons besoin d'une analyse qualitative des données.", + "example_sentence_english": "We need a qualitative analysis of the data.", + "pos": "adjective", + "word_frequency": 15064 + }, + { + "word": "quatorzième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fourteenth", + "example_sentence_native": "C'est le quatorzième chapitre du livre.", + "example_sentence_english": "It's the fourteenth chapter of the book.", + "pos": "numeral", + "word_frequency": 15065 + }, + { + "word": "raffinement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refinement;sophistication", + "example_sentence_native": "Son style est d'un grand raffinement.", + "example_sentence_english": "His style is of great refinement.", + "pos": "noun", + "word_frequency": 15067 + }, + { + "word": "recto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front side;recto", + "example_sentence_native": "Veuillez imprimer sur le recto et le verso.", + "example_sentence_english": "Please print on the front and back.", + "pos": "noun", + "word_frequency": 15070 + }, + { + "word": "regorger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to overflow;to teem (with)", + "example_sentence_native": "Le marché regorge de produits frais.", + "example_sentence_english": "The market is teeming with fresh produce.", + "pos": "verb", + "word_frequency": 15071 + }, + { + "word": "retouche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retouch;alteration", + "example_sentence_native": "Elle a fait quelques retouches à sa robe.", + "example_sentence_english": "She made a few alterations to her dress.", + "pos": "noun", + "word_frequency": 15074 + }, + { + "word": "retrancher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cut off;to subtract;to entrench (oneself)", + "example_sentence_native": "Il a dû retrancher une partie de son discours.", + "example_sentence_english": "He had to cut off a part of his speech.", + "pos": "verb", + "word_frequency": 15075 + }, + { + "word": "réfuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refute", + "example_sentence_native": "Il a essayé de réfuter les accusations.", + "example_sentence_english": "He tried to refute the accusations.", + "pos": "verb", + "word_frequency": 15082 + }, + { + "word": "réglementer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regulate", + "example_sentence_native": "Le gouvernement doit réglementer le marché.", + "example_sentence_english": "The government must regulate the market.", + "pos": "verb", + "word_frequency": 15083 + }, + { + "word": "salam", + "article_with_word": "le salam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peace;greeting", + "example_sentence_native": "Il a dit salam à tout le monde.", + "example_sentence_english": "He said hello to everyone.", + "pos": "noun", + "word_frequency": 15084 + }, + { + "word": "shooter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shoot", + "example_sentence_native": "Le joueur a bien shooté au but.", + "example_sentence_english": "The player shot well at the goal.", + "pos": "verb", + "word_frequency": 15085 + }, + { + "word": "sigle", + "article_with_word": "le sigle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acronym;initialism", + "example_sentence_native": "L'ONU est un sigle pour l'Organisation des Nations Unies.", + "example_sentence_english": "UN is an acronym for the United Nations Organization.", + "pos": "noun", + "word_frequency": 15087 + }, + { + "word": "skieur", + "article_with_word": "le skieur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skier", + "example_sentence_native": "Le skieur a dévalé la pente à toute vitesse.", + "example_sentence_english": "The skier sped down the slope.", + "pos": "noun", + "word_frequency": 15088 + }, + { + "word": "spiritueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholic;spirituous", + "example_sentence_native": "Les boissons spiritueuses sont interdites aux mineurs.", + "example_sentence_english": "Alcoholic beverages are forbidden to minors.", + "pos": "adjective", + "word_frequency": 15091 + }, + { + "word": "structurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to structure", + "example_sentence_native": "Il faut bien structurer votre présentation.", + "example_sentence_english": "You need to structure your presentation well.", + "pos": "verb", + "word_frequency": 15092 + }, + { + "word": "subit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sudden;unexpected", + "example_sentence_native": "Il a ressenti une douleur subite.", + "example_sentence_english": "He felt a sudden pain.", + "pos": "adjective", + "word_frequency": 15093 + }, + { + "word": "subjectivité", + "article_with_word": "la subjectivité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subjectivity", + "example_sentence_native": "La subjectivité est inhérente à l'art.", + "example_sentence_english": "Subjectivity is inherent in art.", + "pos": "noun", + "word_frequency": 15094 + }, + { + "word": "summum", + "article_with_word": "le summum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pinnacle;peak;height", + "example_sentence_native": "Atteindre ce niveau est le summum de sa carrière.", + "example_sentence_english": "Reaching this level is the pinnacle of his career.", + "pos": "noun", + "word_frequency": 15095 + }, + { + "word": "tele", + "article_with_word": "la télé", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "TV;television", + "example_sentence_native": "J'ai regardé la télé hier soir.", + "example_sentence_english": "I watched TV last night.", + "pos": "noun", + "word_frequency": 15096 + }, + { + "word": "traitre", + "article_with_word": "le traître", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traitor", + "example_sentence_native": "Il a été qualifié de traître à la nation.", + "example_sentence_english": "He was called a traitor to the nation.", + "pos": "noun", + "word_frequency": 15100 + }, + { + "word": "tronçonneuse", + "article_with_word": "la tronçonneuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chainsaw", + "example_sentence_native": "Il a utilisé une tronçonneuse pour couper l'arbre.", + "example_sentence_english": "He used a chainsaw to cut the tree.", + "pos": "noun", + "word_frequency": 15101 + }, + { + "word": "universalité", + "article_with_word": "l'universalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "universality", + "example_sentence_native": "L'universalité des droits de l'homme est un principe fondamental.", + "example_sentence_english": "The universality of human rights is a fundamental principle.", + "pos": "noun", + "word_frequency": 15104 + }, + { + "word": "vagabond", + "article_with_word": "le vagabond", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vagabond;tramp", + "example_sentence_native": "Un vieux vagabond dormait sur un banc.", + "example_sentence_english": "An old vagabond was sleeping on a bench.", + "pos": "noun", + "word_frequency": 15105 + }, + { + "word": "variabilité", + "article_with_word": "la variabilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variability", + "example_sentence_native": "La variabilité des données rend l'analyse difficile.", + "example_sentence_english": "The variability of the data makes analysis difficult.", + "pos": "noun", + "word_frequency": 15107 + }, + { + "word": "viabilité", + "article_with_word": "la viabilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viability;feasibility", + "example_sentence_native": "Nous devons évaluer la viabilité du projet.", + "example_sentence_english": "We must assess the viability of the project.", + "pos": "noun", + "word_frequency": 15109 + }, + { + "word": "égérie", + "article_with_word": "l'égérie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "muse;icon;figurehead", + "example_sentence_native": "Elle est l'égérie de cette marque de luxe.", + "example_sentence_english": "She is the muse of this luxury brand.", + "pos": "noun", + "word_frequency": 15117 + }, + { + "word": "émotif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emotional;sensitive", + "example_sentence_native": "Il est très émotif et réagit fortement.", + "example_sentence_english": "He is very emotional and reacts strongly.", + "pos": "adjective", + "word_frequency": 15118 + }, + { + "word": "épiscopal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "episcopal", + "example_sentence_native": "Il a assisté à la conférence épiscopale.", + "example_sentence_english": "He attended the episcopal conference.", + "pos": "adjective", + "word_frequency": 15119 + }, + { + "word": "étalement", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spread;staggering;deferral", + "example_sentence_native": "L'étalement des paiements peut aider à gérer le budget.", + "example_sentence_english": "The staggering of payments can help manage the budget.", + "pos": "noun", + "word_frequency": 15120 + }, + { + "word": "abomination", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abomination", + "example_sentence_native": "La guerre est une abomination.", + "example_sentence_english": "War is an abomination.", + "pos": "noun", + "word_frequency": 15123 + }, + { + "word": "agora", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agora", + "example_sentence_native": "L'agora était le centre de la vie publique dans la Grèce antique.", + "example_sentence_english": "The agora was the center of public life in ancient Greece.", + "pos": "noun", + "word_frequency": 15124 + }, + { + "word": "alcoolémie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blood alcohol level", + "example_sentence_native": "La police a vérifié son alcoolémie.", + "example_sentence_english": "The police checked his blood alcohol level.", + "pos": "noun", + "word_frequency": 15126 + }, + { + "word": "amazone", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Amazon (river;warrior)", + "example_sentence_native": "L'Amazone est le plus grand fleuve du monde.", + "example_sentence_english": "The Amazon is the largest river in the world.", + "pos": "noun", + "word_frequency": 15128 + }, + { + "word": "aminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amine (related to)", + "example_sentence_native": "Les acides aminés sont les constituants des protéines.", + "example_sentence_english": "Amino acids are the building blocks of proteins.", + "pos": "adjective", + "word_frequency": 15129 + }, + { + "word": "anatomy", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anatomy", + "example_sentence_native": "L'étude de l'anatomie humaine est fascinante.", + "example_sentence_english": "The study of human anatomy is fascinating.", + "pos": "noun", + "word_frequency": 15130 + }, + { + "word": "animosité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animosity", + "example_sentence_native": "Il y avait une forte animosité entre les deux groupes.", + "example_sentence_english": "There was strong animosity between the two groups.", + "pos": "noun", + "word_frequency": 15131 + }, + { + "word": "arbitrairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitrarily", + "example_sentence_native": "La décision a été prise arbitrairement.", + "example_sentence_english": "The decision was made arbitrarily.", + "pos": "adverb", + "word_frequency": 15135 + }, + { + "word": "archiviste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archivist", + "example_sentence_native": "L'archiviste a trouvé le document manquant.", + "example_sentence_english": "The archivist found the missing document.", + "pos": "noun", + "word_frequency": 15136 + }, + { + "word": "aromatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aromatic", + "example_sentence_native": "Cette plante a un parfum très aromatique.", + "example_sentence_english": "This plant has a very aromatic scent.", + "pos": "adjective", + "word_frequency": 15137 + }, + { + "word": "arret", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stop;arrest;decree", + "example_sentence_native": "L'arrêt de bus est juste là.", + "example_sentence_english": "The bus stop is right there.", + "pos": "noun", + "word_frequency": 15138 + }, + { + "word": "arrosage", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watering;irrigation", + "example_sentence_native": "L'arrosage des plantes est essentiel en été.", + "example_sentence_english": "Watering the plants is essential in summer.", + "pos": "noun", + "word_frequency": 15139 + }, + { + "word": "autobiographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autobiographical", + "example_sentence_native": "Ce roman a un caractère fortement autobiographique.", + "example_sentence_english": "This novel has a strongly autobiographical character.", + "pos": "adjective", + "word_frequency": 15140 + }, + { + "word": "autocollant", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticker", + "example_sentence_native": "J'ai mis un autocollant sur mon ordinateur portable.", + "example_sentence_english": "I put a sticker on my laptop.", + "pos": "noun", + "word_frequency": 15141 + }, + { + "word": "bretelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strap;suspender;slip road", + "example_sentence_native": "La bretelle d'accès à l'autoroute est juste après le pont.", + "example_sentence_english": "The slip road to the motorway is just after the bridge.", + "pos": "noun", + "word_frequency": 15151 + }, + { + "word": "brigand", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bandit;rogue", + "example_sentence_native": "Le brigand a été capturé par les villageois.", + "example_sentence_english": "The bandit was captured by the villagers.", + "pos": "noun", + "word_frequency": 15152 + }, + { + "word": "brouille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarrel;estrangement", + "example_sentence_native": "Leur brouille a duré plusieurs mois.", + "example_sentence_english": "Their quarrel lasted several months.", + "pos": "noun", + "word_frequency": 15154 + }, + { + "word": "cafe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coffee;cafe", + "example_sentence_native": "Je prends un café tous les matins.", + "example_sentence_english": "I have a coffee every morning.", + "pos": "noun", + "word_frequency": 15157 + }, + { + "word": "californien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Californian", + "example_sentence_native": "Il aime le style de vie californien.", + "example_sentence_english": "He likes the Californian lifestyle.", + "pos": "adjective", + "word_frequency": 15158 + }, + { + "word": "candide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candid;naive;innocent", + "example_sentence_native": "Sa réaction était très candide et sincère.", + "example_sentence_english": "His reaction was very candid and sincere.", + "pos": "adjective", + "word_frequency": 15159 + }, + { + "word": "censurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to censor", + "example_sentence_native": "Le gouvernement a décidé de censurer certaines informations.", + "example_sentence_english": "The government decided to censor certain information.", + "pos": "verb", + "word_frequency": 15160 + }, + { + "word": "charitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charitable", + "example_sentence_native": "Elle est très charitable envers les personnes dans le besoin.", + "example_sentence_english": "She is very charitable towards people in need.", + "pos": "adjective", + "word_frequency": 15161 + }, + { + "word": "chefferie", + "article_with_word": "la chefferie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chieftaincy;leadership", + "example_sentence_native": "La chefferie est un système traditionnel dans cette région.", + "example_sentence_english": "Chieftaincy is a traditional system in this region.", + "pos": "noun", + "word_frequency": 15162 + }, + { + "word": "cloison", + "article_with_word": "la cloison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partition;dividing wall", + "example_sentence_native": "Ils ont ajouté une cloison pour créer une pièce supplémentaire.", + "example_sentence_english": "They added a partition to create an extra room.", + "pos": "noun", + "word_frequency": 15164 + }, + { + "word": "codage", + "article_with_word": "le codage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coding;encoding", + "example_sentence_native": "Le codage est une compétence essentielle de nos jours.", + "example_sentence_english": "Coding is an essential skill nowadays.", + "pos": "noun", + "word_frequency": 15165 + }, + { + "word": "commanditaire", + "article_with_word": "le commanditaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sponsor;backer", + "example_sentence_native": "Le commanditaire a financé une grande partie du projet.", + "example_sentence_english": "The sponsor financed a large part of the project.", + "pos": "noun", + "word_frequency": 15166 + }, + { + "word": "compote", + "article_with_word": "la compote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "compote;fruit purée", + "example_sentence_native": "J'aime manger de la compote de pommes au petit-déjeuner.", + "example_sentence_english": "I like to eat apple compote for breakfast.", + "pos": "noun", + "word_frequency": 15167 + }, + { + "word": "convivialité", + "article_with_word": "la convivialité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviviality;friendliness", + "example_sentence_native": "L'ambiance de la soirée était pleine de convivialité.", + "example_sentence_english": "The atmosphere of the evening was full of conviviality.", + "pos": "noun", + "word_frequency": 15168 + }, + { + "word": "discriminatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discriminatory", + "example_sentence_native": "Toute pratique discriminatoire est interdite par la loi.", + "example_sentence_english": "Any discriminatory practice is forbidden by law.", + "pos": "adjective", + "word_frequency": 15175 + }, + { + "word": "disgrâce", + "article_with_word": "la disgrâce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disgrace;disfavor", + "example_sentence_native": "Il est tombé en disgrâce après le scandale.", + "example_sentence_english": "He fell into disgrace after the scandal.", + "pos": "noun", + "word_frequency": 15176 + }, + { + "word": "dissimulation", + "article_with_word": "la dissimulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissimulation;concealment", + "example_sentence_native": "La dissimulation de preuves est un délit grave.", + "example_sentence_english": "The concealment of evidence is a serious offense.", + "pos": "noun", + "word_frequency": 15177 + }, + { + "word": "distinctif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinctive", + "example_sentence_native": "Son style est très distinctif et reconnaissable.", + "example_sentence_english": "His style is very distinctive and recognizable.", + "pos": "adjective", + "word_frequency": 15178 + }, + { + "word": "documenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to document", + "example_sentence_native": "Il est important de bien documenter toutes les étapes du projet.", + "example_sentence_english": "It is important to properly document all steps of the project.", + "pos": "verb", + "word_frequency": 15179 + }, + { + "word": "droitier", + "article_with_word": "le droitier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "right-hander", + "example_sentence_native": "La plupart des gens sont droitiers.", + "example_sentence_english": "Most people are right-handers.", + "pos": "noun", + "word_frequency": 15183 + }, + { + "word": "dénivelé", + "article_with_word": "le dénivelé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elevation gain;loss;difference in height", + "example_sentence_native": "La randonnée avait un dénivelé important.", + "example_sentence_english": "The hike had a significant elevation gain.", + "pos": "noun", + "word_frequency": 15184 + }, + { + "word": "dénombrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to count;to enumerate", + "example_sentence_native": "Il est difficile de dénombrer toutes les espèces présentes.", + "example_sentence_english": "It is difficult to count all the species present.", + "pos": "verb", + "word_frequency": 15185 + }, + { + "word": "déporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deport;to displace", + "example_sentence_native": "Le régime a déporté des milliers de personnes.", + "example_sentence_english": "The regime deported thousands of people.", + "pos": "verb", + "word_frequency": 15186 + }, + { + "word": "echange", + "article_with_word": "l'échange", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exchange;trade", + "example_sentence_native": "Nous avons eu un bon échange d'idées.", + "example_sentence_english": "We had a good exchange of ideas.", + "pos": "noun", + "word_frequency": 15187 + }, + { + "word": "effroi", + "article_with_word": "l'effroi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dread;terror;fright", + "example_sentence_native": "La nouvelle a semé l'effroi dans la population.", + "example_sentence_english": "The news spread terror among the population.", + "pos": "noun", + "word_frequency": 15188 + }, + { + "word": "enfantin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childish;infantile", + "example_sentence_native": "Son comportement était un peu enfantin.", + "example_sentence_english": "His behavior was a bit childish.", + "pos": "adjective", + "word_frequency": 15191 + }, + { + "word": "etrange", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strange;odd", + "example_sentence_native": "C'est une histoire très étrange.", + "example_sentence_english": "It's a very strange story.", + "pos": "adjective", + "word_frequency": 15192 + }, + { + "word": "fantaisiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whimsical;fanciful", + "example_sentence_native": "Il a des idées très fantaisistes.", + "example_sentence_english": "He has very whimsical ideas.", + "pos": "adjective", + "word_frequency": 15197 + }, + { + "word": "feutre", + "article_with_word": "le feutre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "felt;felt-tip pen", + "example_sentence_native": "J'ai besoin d'un feutre noir pour dessiner.", + "example_sentence_english": "I need a black felt-tip pen to draw.", + "pos": "noun", + "word_frequency": 15198 + }, + { + "word": "flottant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floating;buoyant", + "example_sentence_native": "Le bois flottant a été emporté par la rivière.", + "example_sentence_english": "The floating wood was carried away by the river.", + "pos": "adjective", + "word_frequency": 15199 + }, + { + "word": "fourré", + "article_with_word": "le fourré", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thicket", + "example_sentence_native": "Le chasseur s'est caché dans le fourré.", + "example_sentence_english": "The hunter hid in the thicket.", + "pos": "noun", + "word_frequency": 15200 + }, + { + "word": "frénésie", + "article_with_word": "la frénésie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frenzy", + "example_sentence_native": "Il y avait une frénésie d'achats avant Noël.", + "example_sentence_english": "There was a shopping frenzy before Christmas.", + "pos": "noun", + "word_frequency": 15202 + }, + { + "word": "funeste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fatal;disastrous", + "example_sentence_native": "Cette décision a eu des conséquences funestes.", + "example_sentence_english": "This decision had disastrous consequences.", + "pos": "adjective", + "word_frequency": 15203 + }, + { + "word": "futé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clever;shrewd", + "example_sentence_native": "C'est un enfant très futé.", + "example_sentence_english": "He is a very clever child.", + "pos": "adjective", + "word_frequency": 15204 + }, + { + "word": "fâcheux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoying;regrettable", + "example_sentence_native": "C'est une situation fâcheuse.", + "example_sentence_english": "It's an awkward situation.", + "pos": "adjective", + "word_frequency": 15205 + }, + { + "word": "fédérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to federate;to unite", + "example_sentence_native": "Le projet vise à fédérer les différentes associations.", + "example_sentence_english": "The project aims to unite the different associations.", + "pos": "verb", + "word_frequency": 15206 + }, + { + "word": "gabonais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Gabonese", + "example_sentence_native": "Il a rencontré une délégation gabonaise.", + "example_sentence_english": "He met a Gabonese delegation.", + "pos": "adjective", + "word_frequency": 15208 + }, + { + "word": "gaulliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Gaullist", + "example_sentence_native": "Il est connu pour ses idées gaullistes.", + "example_sentence_english": "He is known for his Gaullist ideas.", + "pos": "adjective", + "word_frequency": 15210 + }, + { + "word": "gonflable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inflatable", + "example_sentence_native": "Nous avons acheté une piscine gonflable pour l'été.", + "example_sentence_english": "We bought an inflatable pool for the summer.", + "pos": "adjective", + "word_frequency": 15213 + }, + { + "word": "gracieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graceful;gracious", + "example_sentence_native": "Elle a des mouvements très gracieux.", + "example_sentence_english": "She has very graceful movements.", + "pos": "adjective", + "word_frequency": 15214 + }, + { + "word": "grill", + "article_with_word": "le grill", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grill;barbecue", + "example_sentence_native": "Nous allons faire un barbecue sur le grill.", + "example_sentence_english": "We are going to barbecue on the grill.", + "pos": "noun", + "word_frequency": 15215 + }, + { + "word": "gréco", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Greco-", + "example_sentence_native": "Il étudie l'histoire gréco-romaine.", + "example_sentence_english": "He studies Greco-Roman history.", + "pos": "adjective", + "word_frequency": 15216 + }, + { + "word": "gué", + "article_with_word": "le gué", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ford", + "example_sentence_native": "Ils ont traversé la rivière à gué.", + "example_sentence_english": "They crossed the river at the ford.", + "pos": "noun", + "word_frequency": 15217 + }, + { + "word": "habitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "habitable;livable", + "example_sentence_native": "La maison est petite mais habitable.", + "example_sentence_english": "The house is small but habitable.", + "pos": "adjective", + "word_frequency": 15218 + }, + { + "word": "illico", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediately;right away", + "example_sentence_native": "Fais ça illico!", + "example_sentence_english": "Do that right away!", + "pos": "adverb", + "word_frequency": 15222 + }, + { + "word": "illumination", + "article_with_word": "l'illumination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illumination;enlightenment", + "example_sentence_native": "Les illuminations de Noël sont magnifiques.", + "example_sentence_english": "The Christmas lights are beautiful.", + "pos": "noun", + "word_frequency": 15223 + }, + { + "word": "illuminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to illuminate;to light up", + "example_sentence_native": "Le soleil illumine la pièce.", + "example_sentence_english": "The sun illuminates the room.", + "pos": "verb", + "word_frequency": 15224 + }, + { + "word": "immatériel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immaterial;intangible", + "example_sentence_native": "Les biens immatériels sont difficiles à évaluer.", + "example_sentence_english": "Intangible assets are difficult to evaluate.", + "pos": "adjective", + "word_frequency": 15225 + }, + { + "word": "incorporation", + "article_with_word": "l'incorporation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incorporation;enlistment", + "example_sentence_native": "L'incorporation de nouvelles technologies est essentielle.", + "example_sentence_english": "The incorporation of new technologies is essential.", + "pos": "noun", + "word_frequency": 15227 + }, + { + "word": "ingestion", + "article_with_word": "l'ingestion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ingestion", + "example_sentence_native": "L'ingestion de ce produit est dangereuse.", + "example_sentence_english": "The ingestion of this product is dangerous.", + "pos": "noun", + "word_frequency": 15228 + }, + { + "word": "insurmontable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurmountable", + "example_sentence_native": "Le défi semblait insurmontable.", + "example_sentence_english": "The challenge seemed insurmountable.", + "pos": "adjective", + "word_frequency": 15229 + }, + { + "word": "intentionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentional", + "example_sentence_native": "Son geste était intentionnel.", + "example_sentence_english": "His gesture was intentional.", + "pos": "adverb", + "word_frequency": 15230 + }, + { + "word": "invraisemblable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbelievable;improbable", + "example_sentence_native": "Son histoire est totalement invraisemblable.", + "example_sentence_english": "His story is totally unbelievable.", + "pos": "adjective", + "word_frequency": 15231 + }, + { + "word": "journee", + "article_with_word": "la journée", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day (duration)", + "example_sentence_native": "J'ai passé une bonne journée.", + "example_sentence_english": "I had a good day.", + "pos": "noun", + "word_frequency": 15234 + }, + { + "word": "juteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "juicy;lucrative", + "example_sentence_native": "Cette pomme est très juteuse.", + "example_sentence_english": "This apple is very juicy.", + "pos": "adjective", + "word_frequency": 15235 + }, + { + "word": "karaoké", + "article_with_word": "le karaoké", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "karaoke", + "example_sentence_native": "Nous sommes allés à une soirée karaoké.", + "example_sentence_english": "We went to a karaoke night.", + "pos": "noun", + "word_frequency": 15236 + }, + { + "word": "latina", + "article_with_word": "la Latina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latina", + "example_sentence_native": "Elle est une Latina fière de ses origines.", + "example_sentence_english": "She is a Latina proud of her origins.", + "pos": "noun", + "word_frequency": 15239 + }, + { + "word": "liquidité", + "article_with_word": "la liquidité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidity", + "example_sentence_native": "L'entreprise a des problèmes de liquidité.", + "example_sentence_english": "The company has liquidity problems.", + "pos": "noun", + "word_frequency": 15245 + }, + { + "word": "magouille", + "article_with_word": "la magouille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shady deal;scam", + "example_sentence_native": "Il y a eu des magouilles dans cette affaire.", + "example_sentence_english": "There were some shady deals in this matter.", + "pos": "noun", + "word_frequency": 15247 + }, + { + "word": "malus", + "article_with_word": "le malus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty;surcharge", + "example_sentence_native": "Son assurance auto a un malus élevé.", + "example_sentence_english": "His car insurance has a high penalty.", + "pos": "noun", + "word_frequency": 15249 + }, + { + "word": "menuisier", + "article_with_word": "le menuisier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpenter;joiner", + "example_sentence_native": "Le menuisier a fabriqué une belle table en bois.", + "example_sentence_english": "The carpenter made a beautiful wooden table.", + "pos": "noun", + "word_frequency": 15252 + }, + { + "word": "médiatisation", + "article_with_word": "la médiatisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "media coverage", + "example_sentence_native": "La médiatisation de l'affaire a été énorme.", + "example_sentence_english": "The media coverage of the case was enormous.", + "pos": "noun", + "word_frequency": 15260 + }, + { + "word": "nada", + "article_with_word": "le nada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nothing;zero", + "example_sentence_native": "Après tout ce travail, j'ai eu nada.", + "example_sentence_english": "After all that work, I got nothing.", + "pos": "noun", + "word_frequency": 15261 + }, + { + "word": "normalité", + "article_with_word": "la normalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "normality", + "example_sentence_native": "Nous aspirons tous à un retour à la normalité.", + "example_sentence_english": "We all aspire to a return to normality.", + "pos": "noun", + "word_frequency": 15266 + }, + { + "word": "orthodoxie", + "article_with_word": "l'orthodoxie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orthodoxy", + "example_sentence_native": "Il défend l'orthodoxie de la doctrine.", + "example_sentence_english": "He defends the orthodoxy of the doctrine.", + "pos": "noun", + "word_frequency": 15271 + }, + { + "word": "passivité", + "article_with_word": "la passivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passivity", + "example_sentence_native": "Sa passivité face au problème est inquiétante.", + "example_sentence_english": "His passivity in the face of the problem is worrying.", + "pos": "noun", + "word_frequency": 15272 + }, + { + "word": "payeur", + "article_with_word": "le payeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "payer", + "example_sentence_native": "Le payeur doit signer le chèque.", + "example_sentence_english": "The payer must sign the check.", + "pos": "noun", + "word_frequency": 15273 + }, + { + "word": "pensionnat", + "article_with_word": "le pensionnat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boarding school", + "example_sentence_native": "Elle a passé son adolescence dans un pensionnat.", + "example_sentence_english": "She spent her adolescence in a boarding school.", + "pos": "noun", + "word_frequency": 15275 + }, + { + "word": "perfusion", + "article_with_word": "la perfusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfusion;IV drip", + "example_sentence_native": "Le patient a besoin d'une perfusion de sérum.", + "example_sentence_english": "The patient needs a serum perfusion.", + "pos": "noun", + "word_frequency": 15276 + }, + { + "word": "phosphate", + "article_with_word": "le phosphate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phosphate", + "example_sentence_native": "Les phosphates sont utilisés comme engrais.", + "example_sentence_english": "Phosphates are used as fertilizers.", + "pos": "noun", + "word_frequency": 15277 + }, + { + "word": "pilon", + "article_with_word": "le pilon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pestle;drumstick", + "example_sentence_native": "Elle a écrasé les épices avec un pilon.", + "example_sentence_english": "She crushed the spices with a pestle.", + "pos": "noun", + "word_frequency": 15279 + }, + { + "word": "piquet", + "article_with_word": "le piquet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stake;picket", + "example_sentence_native": "Il a planté un piquet dans le sol.", + "example_sentence_english": "He planted a stake in the ground.", + "pos": "noun", + "word_frequency": 15280 + }, + { + "word": "pitch", + "article_with_word": "le pitch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitch (presentation)", + "example_sentence_native": "Son pitch pour le projet était très convaincant.", + "example_sentence_english": "His pitch for the project was very convincing.", + "pos": "noun", + "word_frequency": 15281 + }, + { + "word": "poisse", + "article_with_word": "la poisse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad luck;jinx", + "example_sentence_native": "J'ai la poisse aujourd'hui, tout va de travers.", + "example_sentence_english": "I have bad luck today, everything is going wrong.", + "pos": "noun", + "word_frequency": 15283 + }, + { + "word": "polygamie", + "article_with_word": "la polygamie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polygamy", + "example_sentence_native": "La polygamie est illégale dans de nombreux pays.", + "example_sentence_english": "Polygamy is illegal in many countries.", + "pos": "noun", + "word_frequency": 15284 + }, + { + "word": "pourtour", + "article_with_word": "le pourtour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perimeter;circumference", + "example_sentence_native": "Le pourtour du lac est idéal pour une promenade.", + "example_sentence_english": "The perimeter of the lake is ideal for a walk.", + "pos": "noun", + "word_frequency": 15285 + }, + { + "word": "primauté", + "article_with_word": "la primauté", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primacy;supremacy", + "example_sentence_native": "Il a insisté sur la primauté du droit.", + "example_sentence_english": "He insisted on the primacy of law.", + "pos": "noun", + "word_frequency": 15287 + }, + { + "word": "purgatoire", + "article_with_word": "le purgatoire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purgatory", + "example_sentence_native": "Selon la doctrine, les âmes vont au purgatoire.", + "example_sentence_english": "According to doctrine, souls go to purgatory.", + "pos": "noun", + "word_frequency": 15288 + }, + { + "word": "rabattre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fold down;to bring down;to reduce", + "example_sentence_native": "Il faut rabattre les sièges arrière pour plus d'espace.", + "example_sentence_english": "You need to fold down the back seats for more space.", + "pos": "verb", + "word_frequency": 15290 + }, + { + "word": "rationalisation", + "article_with_word": "la rationalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalization", + "example_sentence_native": "La rationalisation des coûts est essentielle pour l'entreprise.", + "example_sentence_english": "Cost rationalization is essential for the company.", + "pos": "noun", + "word_frequency": 15291 + }, + { + "word": "rechute", + "article_with_word": "la rechute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relapse", + "example_sentence_native": "Il a fait une rechute après plusieurs mois de sobriété.", + "example_sentence_english": "He had a relapse after several months of sobriety.", + "pos": "noun", + "word_frequency": 15292 + }, + { + "word": "relaxation", + "article_with_word": "la relaxation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxation", + "example_sentence_native": "La relaxation est importante pour gérer le stress.", + "example_sentence_english": "Relaxation is important for managing stress.", + "pos": "noun", + "word_frequency": 15293 + }, + { + "word": "rescousse", + "article_with_word": "la rescousse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rescue;help", + "example_sentence_native": "Les pompiers sont venus à la rescousse.", + "example_sentence_english": "The firefighters came to the rescue.", + "pos": "noun", + "word_frequency": 15294 + }, + { + "word": "rougeole", + "article_with_word": "la rougeole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measles", + "example_sentence_native": "La rougeole est une maladie infantile contagieuse.", + "example_sentence_english": "Measles is a contagious childhood disease.", + "pos": "noun", + "word_frequency": 15300 + }, + { + "word": "réactionnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactionary", + "example_sentence_native": "Ses idées sont considérées comme très réactionnaires.", + "example_sentence_english": "His ideas are considered very reactionary.", + "pos": "adjective", + "word_frequency": 15301 + }, + { + "word": "réadaptation", + "article_with_word": "la réadaptation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rehabilitation;readjustment", + "example_sentence_native": "Il suit un programme de réadaptation après son accident.", + "example_sentence_english": "He is following a rehabilitation program after his accident.", + "pos": "noun", + "word_frequency": 15302 + }, + { + "word": "réciprocité", + "article_with_word": "la réciprocité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reciprocity", + "example_sentence_native": "Le principe de réciprocité est important en diplomatie.", + "example_sentence_english": "The principle of reciprocity is important in diplomacy.", + "pos": "noun", + "word_frequency": 15303 + }, + { + "word": "référendaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referendary;relating to a referendum", + "example_sentence_native": "La question référendaire sera soumise au vote.", + "example_sentence_english": "The referendary question will be put to a vote.", + "pos": "adjective", + "word_frequency": 15304 + }, + { + "word": "réitérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reiterate;to repeat", + "example_sentence_native": "Je dois réitérer ma demande.", + "example_sentence_english": "I must reiterate my request.", + "pos": "verb", + "word_frequency": 15305 + }, + { + "word": "révolter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revolt;to outrage;to disgust", + "example_sentence_native": "Cette injustice me révolte.", + "example_sentence_english": "This injustice revolts me.", + "pos": "verb", + "word_frequency": 15306 + }, + { + "word": "sarcastique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcastic", + "example_sentence_native": "Son commentaire était très sarcastique.", + "example_sentence_english": "His comment was very sarcastic.", + "pos": "adjective", + "word_frequency": 15308 + }, + { + "word": "scolariser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to send to school;to educate", + "example_sentence_native": "Tous les enfants doivent être scolarisés.", + "example_sentence_english": "All children must be sent to school.", + "pos": "verb", + "word_frequency": 15309 + }, + { + "word": "shake", + "article_with_word": "le shake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shake (milkshake;protein shake)", + "example_sentence_native": "J'ai commandé un shake à la vanille.", + "example_sentence_english": "I ordered a vanilla shake.", + "pos": "noun", + "word_frequency": 15313 + }, + { + "word": "skipper", + "article_with_word": "le skipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skipper", + "example_sentence_native": "Le skipper a dirigé le bateau avec habileté.", + "example_sentence_english": "The skipper skillfully steered the boat.", + "pos": "noun", + "word_frequency": 15314 + }, + { + "word": "sonder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to probe;to sound out;to survey", + "example_sentence_native": "Il a sondé l'opinion publique sur la question.", + "example_sentence_english": "He surveyed public opinion on the matter.", + "pos": "verb", + "word_frequency": 15315 + }, + { + "word": "sosie", + "article_with_word": "le sosie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "look-alike;double", + "example_sentence_native": "Il est le sosie de son père.", + "example_sentence_english": "He is his father's look-alike.", + "pos": "noun", + "word_frequency": 15316 + }, + { + "word": "stratagème", + "article_with_word": "le stratagème", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratagem;ploy", + "example_sentence_native": "Il a utilisé un stratagème pour gagner la partie.", + "example_sentence_english": "He used a stratagem to win the game.", + "pos": "noun", + "word_frequency": 15318 + }, + { + "word": "structuration", + "article_with_word": "la structuration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "structuring;organization", + "example_sentence_native": "La structuration du projet est essentielle pour sa réussite.", + "example_sentence_english": "The structuring of the project is essential for its success.", + "pos": "noun", + "word_frequency": 15319 + }, + { + "word": "symptomatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symptomatic", + "example_sentence_native": "Sa toux est symptomatique d'une infection.", + "example_sentence_english": "His cough is symptomatic of an infection.", + "pos": "adjective", + "word_frequency": 15320 + }, + { + "word": "syndiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unionize;to syndicate", + "example_sentence_native": "Les employés ont décidé de se syndiquer pour défendre leurs droits.", + "example_sentence_english": "The employees decided to unionize to defend their rights.", + "pos": "verb", + "word_frequency": 15321 + }, + { + "word": "tourment", + "article_with_word": "le tourment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torment;anguish", + "example_sentence_native": "Il vivait dans un tourment constant.", + "example_sentence_english": "He lived in constant torment.", + "pos": "noun", + "word_frequency": 15323 + }, + { + "word": "tournevis", + "article_with_word": "le tournevis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screwdriver", + "example_sentence_native": "J'ai besoin d'un tournevis pour réparer cela.", + "example_sentence_english": "I need a screwdriver to fix that.", + "pos": "noun", + "word_frequency": 15324 + }, + { + "word": "toxine", + "article_with_word": "la toxine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toxin", + "example_sentence_native": "Cette plante produit une toxine dangereuse.", + "example_sentence_english": "This plant produces a dangerous toxin.", + "pos": "noun", + "word_frequency": 15325 + }, + { + "word": "verge", + "article_with_word": "la verge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rod;stick;verge", + "example_sentence_native": "Il a coupé une verge de bois pour le jardin.", + "example_sentence_english": "He cut a wooden rod for the garden.", + "pos": "noun", + "word_frequency": 15329 + }, + { + "word": "verrouillage", + "article_with_word": "le verrouillage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locking;lock-down", + "example_sentence_native": "Le verrouillage de l'écran est automatique.", + "example_sentence_english": "The screen locking is automatic.", + "pos": "noun", + "word_frequency": 15330 + }, + { + "word": "virtuose", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtuoso;masterful", + "example_sentence_native": "C'est un pianiste virtuose.", + "example_sentence_english": "He is a virtuoso pianist.", + "pos": "adjective", + "word_frequency": 15332 + }, + { + "word": "voyance", + "article_with_word": "la voyance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clairvoyance;fortune-telling", + "example_sentence_native": "Elle prétend avoir des dons de voyance.", + "example_sentence_english": "She claims to have clairvoyance abilities.", + "pos": "noun", + "word_frequency": 15334 + }, + { + "word": "vulgarité", + "article_with_word": "la vulgarité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulgarity;coarseness", + "example_sentence_native": "Sa vulgarité était choquante pour l'auditoire.", + "example_sentence_english": "His vulgarity was shocking to the audience.", + "pos": "noun", + "word_frequency": 15335 + }, + { + "word": "économe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economical;thrifty", + "example_sentence_native": "Elle est très économe avec son argent.", + "example_sentence_english": "She is very thrifty with her money.", + "pos": "adjective", + "word_frequency": 15340 + }, + { + "word": "égalitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egalitarian", + "example_sentence_native": "Ils défendent une société égalitaire.", + "example_sentence_english": "They advocate for an egalitarian society.", + "pos": "adjective", + "word_frequency": 15341 + }, + { + "word": "éloquence", + "article_with_word": "l'éloquence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eloquence", + "example_sentence_native": "Son éloquence a impressionné l'auditoire.", + "example_sentence_english": "His eloquence impressed the audience.", + "pos": "noun", + "word_frequency": 15342 + }, + { + "word": "émoi", + "article_with_word": "l'émoi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emotion;stir;agitation", + "example_sentence_native": "La nouvelle a causé un grand émoi dans la ville.", + "example_sentence_english": "The news caused a great stir in the city.", + "pos": "noun", + "word_frequency": 15343 + }, + { + "word": "épilogue", + "article_with_word": "l'épilogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epilogue", + "example_sentence_native": "L'épilogue du roman était surprenant.", + "example_sentence_english": "The epilogue of the novel was surprising.", + "pos": "noun", + "word_frequency": 15344 + }, + { + "word": "équatorial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equatorial", + "example_sentence_native": "Le climat équatorial est chaud et humide.", + "example_sentence_english": "The equatorial climate is hot and humid.", + "pos": "adjective", + "word_frequency": 15345 + }, + { + "word": "abstinence", + "article_with_word": "l'abstinence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstinence", + "example_sentence_native": "L'abstinence est une pratique difficile pour certains.", + "example_sentence_english": "Abstinence is a difficult practice for some.", + "pos": "noun", + "word_frequency": 15346 + }, + { + "word": "adversité", + "article_with_word": "l'adversité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adversity", + "example_sentence_native": "Il a fait preuve de courage face à l'adversité.", + "example_sentence_english": "He showed courage in the face of adversity.", + "pos": "noun", + "word_frequency": 15350 + }, + { + "word": "alarmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alarm;to worry", + "example_sentence_native": "La situation a commencé à l'alarmer.", + "example_sentence_english": "The situation began to alarm him.", + "pos": "verb", + "word_frequency": 15352 + }, + { + "word": "allègre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheerful;brisk", + "example_sentence_native": "Il marchait d'un pas allègre.", + "example_sentence_english": "He walked with a brisk step.", + "pos": "adverb", + "word_frequency": 15353 + }, + { + "word": "alterner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to alternate", + "example_sentence_native": "Ils alternent entre le travail et les études.", + "example_sentence_english": "They alternate between work and studies.", + "pos": "verb", + "word_frequency": 15354 + }, + { + "word": "amadou", + "article_with_word": "l'amadou", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tinder;touchwood", + "example_sentence_native": "Il a utilisé de l'amadou pour allumer le feu.", + "example_sentence_english": "He used tinder to light the fire.", + "pos": "noun", + "word_frequency": 15355 + }, + { + "word": "americain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "American", + "example_sentence_native": "C'est un film américain très populaire.", + "example_sentence_english": "It's a very popular American film.", + "pos": "adjective", + "word_frequency": 15356 + }, + { + "word": "anthropologue", + "article_with_word": "l'anthropologue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropologist", + "example_sentence_native": "Elle est une anthropologue spécialisée dans les cultures anciennes.", + "example_sentence_english": "She is an anthropologist specializing in ancient cultures.", + "pos": "noun", + "word_frequency": 15359 + }, + { + "word": "arborer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to display;to hoist", + "example_sentence_native": "Il aime arborer des cravates originales.", + "example_sentence_english": "He likes to wear original ties.", + "pos": "verb", + "word_frequency": 15360 + }, + { + "word": "armada", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armada;fleet", + "example_sentence_native": "L'armada de navires était impressionnante.", + "example_sentence_english": "The armada of ships was impressive.", + "pos": "noun", + "word_frequency": 15363 + }, + { + "word": "asperger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sprinkle;to spray", + "example_sentence_native": "Il faut asperger les plantes d'eau.", + "example_sentence_english": "You need to sprinkle the plants with water.", + "pos": "verb", + "word_frequency": 15365 + }, + { + "word": "assouvir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to satisfy;to appease", + "example_sentence_native": "Il a enfin pu assouvir sa soif de connaissances.", + "example_sentence_english": "He was finally able to satisfy his thirst for knowledge.", + "pos": "verb", + "word_frequency": 15366 + }, + { + "word": "bastide", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bastide (fortified country house)", + "example_sentence_native": "Ils ont acheté une belle bastide en Provence.", + "example_sentence_english": "They bought a beautiful bastide in Provence.", + "pos": "noun", + "word_frequency": 15369 + }, + { + "word": "berbère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Berber", + "example_sentence_native": "La culture berbère est très riche.", + "example_sentence_english": "Berber culture is very rich.", + "pos": "adjective", + "word_frequency": 15371 + }, + { + "word": "bipolaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bipolar", + "example_sentence_native": "Il a été diagnostiqué bipolaire.", + "example_sentence_english": "He was diagnosed as bipolar.", + "pos": "adjective", + "word_frequency": 15373 + }, + { + "word": "bourgade", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small town;hamlet", + "example_sentence_native": "C'est une charmante petite bourgade.", + "example_sentence_english": "It's a charming small town.", + "pos": "noun", + "word_frequency": 15376 + }, + { + "word": "brick", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brick", + "example_sentence_native": "La maison est construite en briques rouges.", + "example_sentence_english": "The house is built of red bricks.", + "pos": "noun", + "word_frequency": 15378 + }, + { + "word": "caisson", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caisson;box;cabinet", + "example_sentence_native": "Le caisson de basses améliore le son.", + "example_sentence_english": "The subwoofer improves the sound.", + "pos": "noun", + "word_frequency": 15379 + }, + { + "word": "chantre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "singer (in a choir);advocate;champion", + "example_sentence_native": "Il est le chantre de la liberté d'expression.", + "example_sentence_english": "He is the champion of freedom of expression.", + "pos": "noun", + "word_frequency": 15383 + }, + { + "word": "chaperon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaperone;hood (of a cloak)", + "example_sentence_native": "Le chaperon accompagnait les jeunes filles au bal.", + "example_sentence_english": "The chaperone accompanied the young girls to the ball.", + "pos": "noun", + "word_frequency": 15384 + }, + { + "word": "charrette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cart;wagon", + "example_sentence_native": "Le paysan tirait sa charrette remplie de foin.", + "example_sentence_english": "The farmer was pulling his cart full of hay.", + "pos": "noun", + "word_frequency": 15385 + }, + { + "word": "chope", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beer mug;tankard", + "example_sentence_native": "Il a commandé une grande chope de bière.", + "example_sentence_english": "He ordered a large mug of beer.", + "pos": "noun", + "word_frequency": 15387 + }, + { + "word": "clap", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clap (film slate);applause", + "example_sentence_native": "Le réalisateur a demandé le clap avant de tourner.", + "example_sentence_english": "The director asked for the clapboard before shooting.", + "pos": "noun", + "word_frequency": 15389 + }, + { + "word": "collaboratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collaborative", + "example_sentence_native": "C'est un projet très collaboratif.", + "example_sentence_english": "It's a very collaborative project.", + "pos": "adjective", + "word_frequency": 15391 + }, + { + "word": "collage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collage;gluing", + "example_sentence_native": "Elle a réalisé un magnifique collage.", + "example_sentence_english": "She made a magnificent collage.", + "pos": "noun", + "word_frequency": 15392 + }, + { + "word": "conférencier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker;lecturer", + "example_sentence_native": "Le conférencier a captivé son auditoire.", + "example_sentence_english": "The speaker captivated his audience.", + "pos": "noun", + "word_frequency": 15394 + }, + { + "word": "connivence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connivance;complicity", + "example_sentence_native": "Il y avait une certaine connivence entre eux.", + "example_sentence_english": "There was a certain connivance between them.", + "pos": "noun", + "word_frequency": 15395 + }, + { + "word": "contemplation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemplation", + "example_sentence_native": "Il était plongé dans la contemplation du paysage.", + "example_sentence_english": "He was immersed in the contemplation of the landscape.", + "pos": "noun", + "word_frequency": 15396 + }, + { + "word": "convenance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suitability;propriety", + "example_sentence_native": "Il a agi selon les règles de la convenance.", + "example_sentence_english": "He acted according to the rules of propriety.", + "pos": "noun", + "word_frequency": 15397 + }, + { + "word": "convivial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convivial;friendly", + "example_sentence_native": "L'ambiance était très conviviale.", + "example_sentence_english": "The atmosphere was very convivial.", + "pos": "adjective", + "word_frequency": 15398 + }, + { + "word": "dada", + "article_with_word": "le dada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hobby;pet subject", + "example_sentence_native": "Le jardinage est son dada.", + "example_sentence_english": "Gardening is his hobby.", + "pos": "noun", + "word_frequency": 15400 + }, + { + "word": "discerner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discern;to distinguish", + "example_sentence_native": "Il est difficile de discerner la vérité dans cette affaire.", + "example_sentence_english": "It is difficult to discern the truth in this matter.", + "pos": "verb", + "word_frequency": 15403 + }, + { + "word": "dissuasion", + "article_with_word": "la dissuasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deterrence;dissuasion", + "example_sentence_native": "La dissuasion nucléaire est un concept clé.", + "example_sentence_english": "Nuclear deterrence is a key concept.", + "pos": "noun", + "word_frequency": 15404 + }, + { + "word": "docile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "docile;obedient", + "example_sentence_native": "Ce chien est très docile et facile à dresser.", + "example_sentence_english": "This dog is very docile and easy to train.", + "pos": "adjective", + "word_frequency": 15405 + }, + { + "word": "débrancher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to unplug;to disconnect", + "example_sentence_native": "N'oubliez pas de débrancher l'appareil après utilisation.", + "example_sentence_english": "Don't forget to unplug the device after use.", + "pos": "verb", + "word_frequency": 15406 + }, + { + "word": "décrypter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decrypt;to decipher", + "example_sentence_native": "Il a réussi à décrypter le message secret.", + "example_sentence_english": "He managed to decrypt the secret message.", + "pos": "verb", + "word_frequency": 15407 + }, + { + "word": "dérangement", + "article_with_word": "le dérangement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disturbance;inconvenience", + "example_sentence_native": "Excusez-moi pour le dérangement.", + "example_sentence_english": "Excuse me for the disturbance.", + "pos": "noun", + "word_frequency": 15408 + }, + { + "word": "désolation", + "article_with_word": "la désolation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desolation;distress", + "example_sentence_native": "Le paysage après l'incendie était un spectacle de désolation.", + "example_sentence_english": "The landscape after the fire was a sight of desolation.", + "pos": "noun", + "word_frequency": 15409 + }, + { + "word": "ecolo", + "article_with_word": "un écolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmentalist (colloquial)", + "example_sentence_native": "C'est un écolo convaincu.", + "example_sentence_english": "He's a convinced environmentalist.", + "pos": "noun", + "word_frequency": 15410 + }, + { + "word": "encombrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clutter;to encumber", + "example_sentence_native": "Ne pas encombrer les issues de secours.", + "example_sentence_english": "Do not obstruct the emergency exits.", + "pos": "verb", + "word_frequency": 15412 + }, + { + "word": "ensoleiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to brighten with sun;to make sunny", + "example_sentence_native": "Le soleil a commencé à ensoleiller la pièce.", + "example_sentence_english": "The sun began to brighten the room.", + "pos": "verb", + "word_frequency": 15413 + }, + { + "word": "equateur", + "article_with_word": "l'équateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equator", + "example_sentence_native": "La ligne de l'équateur traverse plusieurs pays.", + "example_sentence_english": "The equator line crosses several countries.", + "pos": "noun", + "word_frequency": 15414 + }, + { + "word": "etudiant", + "article_with_word": "un étudiant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student", + "example_sentence_native": "Il est un étudiant en première année.", + "example_sentence_english": "He is a first-year student.", + "pos": "noun", + "word_frequency": 15416 + }, + { + "word": "euphémisme", + "article_with_word": "un euphémisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "euphemism", + "example_sentence_native": "C'est un euphémisme de dire qu'il était en colère.", + "example_sentence_english": "It's an euphemism to say he was angry.", + "pos": "noun", + "word_frequency": 15417 + }, + { + "word": "exhorter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exhort;to urge", + "example_sentence_native": "Il a exhorté ses troupes à ne pas abandonner.", + "example_sentence_english": "He exhorted his troops not to give up.", + "pos": "verb", + "word_frequency": 15418 + }, + { + "word": "exterieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exterior;outside", + "example_sentence_native": "La porte extérieure est fermée.", + "example_sentence_english": "The exterior door is closed.", + "pos": "adjective", + "word_frequency": 15419 + }, + { + "word": "faucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mow;to scythe", + "example_sentence_native": "Il faut faucher l'herbe avant l'hiver.", + "example_sentence_english": "The grass must be mowed before winter.", + "pos": "verb", + "word_frequency": 15421 + }, + { + "word": "filon", + "article_with_word": "le filon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vein;lode;good deal", + "example_sentence_native": "Ils ont trouvé un bon filon pour leur entreprise.", + "example_sentence_english": "They found a good vein for their business.", + "pos": "noun", + "word_frequency": 15424 + }, + { + "word": "filtration", + "article_with_word": "la filtration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filtration", + "example_sentence_native": "Le système de filtration de l'eau est essentiel.", + "example_sentence_english": "The water filtration system is essential.", + "pos": "noun", + "word_frequency": 15425 + }, + { + "word": "fugitif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugitive;fleeting", + "example_sentence_native": "Il a mené une vie fugitive pendant des années.", + "example_sentence_english": "He led a fugitive life for years.", + "pos": "adjective", + "word_frequency": 15427 + }, + { + "word": "fécondation", + "article_with_word": "la fécondation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertilization;fecundation", + "example_sentence_native": "La fécondation in vitro est une technique médicale.", + "example_sentence_english": "In vitro fertilization is a medical technique.", + "pos": "noun", + "word_frequency": 15428 + }, + { + "word": "gaine", + "article_with_word": "la gaine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheath;casing", + "example_sentence_native": "Le câble est protégé par une gaine isolante.", + "example_sentence_english": "The cable is protected by an insulating sheath.", + "pos": "noun", + "word_frequency": 15429 + }, + { + "word": "gorille", + "article_with_word": "le gorille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gorilla", + "example_sentence_native": "Le gorille est un grand primate.", + "example_sentence_english": "The gorilla is a large primate.", + "pos": "noun", + "word_frequency": 15432 + }, + { + "word": "grouper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to group;to gather", + "example_sentence_native": "Il faut grouper les documents par catégorie.", + "example_sentence_english": "The documents must be grouped by category.", + "pos": "verb", + "word_frequency": 15433 + }, + { + "word": "géographe", + "article_with_word": "le géographe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographer", + "example_sentence_native": "Un géographe étudie la surface de la Terre.", + "example_sentence_english": "A geographer studies the Earth's surface.", + "pos": "noun", + "word_frequency": 15434 + }, + { + "word": "hamster", + "article_with_word": "le hamster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hamster", + "example_sentence_native": "Mon hamster adore courir dans sa roue.", + "example_sentence_english": "My hamster loves running in its wheel.", + "pos": "noun", + "word_frequency": 15436 + }, + { + "word": "hobby", + "article_with_word": "le hobby", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hobby", + "example_sentence_native": "Mon hobby est la lecture.", + "example_sentence_english": "My hobby is reading.", + "pos": "noun", + "word_frequency": 15440 + }, + { + "word": "hérétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heretical", + "example_sentence_native": "Ses idées étaient considérées comme hérétiques par l'Église.", + "example_sentence_english": "His ideas were considered heretical by the Church.", + "pos": "adjective", + "word_frequency": 15443 + }, + { + "word": "improviste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unannounced;unexpectedly", + "example_sentence_native": "Il est arrivé à l'improviste.", + "example_sentence_english": "He arrived unannounced.", + "pos": "adjective", + "word_frequency": 15445 + }, + { + "word": "inefficacité", + "article_with_word": "l'inefficacité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inefficiency", + "example_sentence_native": "L'inefficacité du système est évidente.", + "example_sentence_english": "The inefficiency of the system is obvious.", + "pos": "noun", + "word_frequency": 15447 + }, + { + "word": "interesser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to interest", + "example_sentence_native": "Ce livre m'intéresse beaucoup.", + "example_sentence_english": "This book interests me a lot.", + "pos": "verb", + "word_frequency": 15448 + }, + { + "word": "intrépide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrepid;fearless", + "example_sentence_native": "Le jeune explorateur était intrépide face au danger.", + "example_sentence_english": "The young explorer was intrepid in the face of danger.", + "pos": "adjective", + "word_frequency": 15449 + }, + { + "word": "inégal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unequal;uneven", + "example_sentence_native": "La répartition des richesses est très inégale.", + "example_sentence_english": "The distribution of wealth is very unequal.", + "pos": "adjective", + "word_frequency": 15450 + }, + { + "word": "iode", + "article_with_word": "l'iode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iodine", + "example_sentence_native": "L'iode est essentiel pour la thyroïde.", + "example_sentence_english": "Iodine is essential for the thyroid.", + "pos": "noun", + "word_frequency": 15451 + }, + { + "word": "irritation", + "article_with_word": "l'irritation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritation", + "example_sentence_native": "Il a ressenti une légère irritation à la gorge.", + "example_sentence_english": "He felt a slight irritation in his throat.", + "pos": "noun", + "word_frequency": 15453 + }, + { + "word": "lacté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "milky", + "example_sentence_native": "La Voie lactée est notre galaxie.", + "example_sentence_english": "The Milky Way is our galaxy.", + "pos": "adjective", + "word_frequency": 15456 + }, + { + "word": "lavande", + "article_with_word": "la lavande", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lavender", + "example_sentence_native": "J'adore l'odeur de la lavande.", + "example_sentence_english": "I love the smell of lavender.", + "pos": "noun", + "word_frequency": 15457 + }, + { + "word": "macho", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "macho", + "example_sentence_native": "Il a une attitude très macho.", + "example_sentence_english": "He has a very macho attitude.", + "pos": "adjective", + "word_frequency": 15459 + }, + { + "word": "matte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matte;dull", + "example_sentence_native": "Elle préfère un fini matte pour son rouge à lèvres.", + "example_sentence_english": "She prefers a matte finish for her lipstick.", + "pos": "adjective", + "word_frequency": 15463 + }, + { + "word": "mausolée", + "article_with_word": "le mausolée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mausoleum", + "example_sentence_native": "Le mausolée abrite les restes de l'empereur.", + "example_sentence_english": "The mausoleum houses the emperor's remains.", + "pos": "noun", + "word_frequency": 15465 + }, + { + "word": "mime", + "article_with_word": "le mime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mime", + "example_sentence_native": "Le mime a diverti la foule sans un mot.", + "example_sentence_english": "The mime entertained the crowd without a word.", + "pos": "noun", + "word_frequency": 15467 + }, + { + "word": "minceur", + "article_with_word": "la minceur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinness;slenderness", + "example_sentence_native": "Elle admire la minceur de la silhouette du mannequin.", + "example_sentence_english": "She admires the slenderness of the model's figure.", + "pos": "noun", + "word_frequency": 15468 + }, + { + "word": "miner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mine;to undermine", + "example_sentence_native": "Le scandale a miné sa réputation.", + "example_sentence_english": "The scandal undermined his reputation.", + "pos": "verb", + "word_frequency": 15469 + }, + { + "word": "morse", + "article_with_word": "le morse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "walrus;Morse code", + "example_sentence_native": "Le morse a de longues défenses.", + "example_sentence_english": "The walrus has long tusks.", + "pos": "noun", + "word_frequency": 15471 + }, + { + "word": "mule", + "article_with_word": "la mule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mule", + "example_sentence_native": "La mule est un animal hybride.", + "example_sentence_english": "The mule is a hybrid animal.", + "pos": "noun", + "word_frequency": 15472 + }, + { + "word": "multiplicité", + "article_with_word": "la multiplicité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multiplicity", + "example_sentence_native": "La multiplicité des facteurs rend l'analyse complexe.", + "example_sentence_english": "The multiplicity of factors makes the analysis complex.", + "pos": "noun", + "word_frequency": 15473 + }, + { + "word": "nano", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nano", + "example_sentence_native": "La nanotechnologie utilise des matériaux nano.", + "example_sentence_english": "Nanotechnology uses nano materials.", + "pos": "adjective", + "word_frequency": 15474 + }, + { + "word": "octroyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to grant;to accord", + "example_sentence_native": "Le gouvernement a décidé d'octroyer une subvention.", + "example_sentence_english": "The government decided to grant a subsidy.", + "pos": "verb", + "word_frequency": 15479 + }, + { + "word": "odorat", + "article_with_word": "l'odorat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sense of smell", + "example_sentence_native": "L'odorat est un sens très développé chez les chiens.", + "example_sentence_english": "The sense of smell is a very developed sense in dogs.", + "pos": "noun", + "word_frequency": 15481 + }, + { + "word": "pamphlet", + "article_with_word": "le pamphlet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pamphlet", + "example_sentence_native": "Il a écrit un pamphlet contre le gouvernement.", + "example_sentence_english": "He wrote a pamphlet against the government.", + "pos": "noun", + "word_frequency": 15483 + }, + { + "word": "papille", + "article_with_word": "la papille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papilla (e.g.;taste bud)", + "example_sentence_native": "Les papilles gustatives sont responsables de la perception des saveurs.", + "example_sentence_english": "Taste buds are responsible for the perception of flavors.", + "pos": "noun", + "word_frequency": 15484 + }, + { + "word": "paroxysme", + "article_with_word": "le paroxysme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paroxysm;peak", + "example_sentence_native": "La tension a atteint son paroxysme avant l'annonce des résultats.", + "example_sentence_english": "The tension reached its peak before the announcement of the results.", + "pos": "noun", + "word_frequency": 15485 + }, + { + "word": "piraterie", + "article_with_word": "la piraterie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piracy", + "example_sentence_native": "La piraterie est un problème persistant dans certaines régions maritimes.", + "example_sentence_english": "Piracy is a persistent problem in certain maritime regions.", + "pos": "noun", + "word_frequency": 15487 + }, + { + "word": "plénitude", + "article_with_word": "la plénitude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plenitude;fullness", + "example_sentence_native": "Il a atteint un état de plénitude et de sérénité.", + "example_sentence_english": "He reached a state of plenitude and serenity.", + "pos": "noun", + "word_frequency": 15490 + }, + { + "word": "pompage", + "article_with_word": "le pompage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pumping", + "example_sentence_native": "Le pompage de l'eau est essentiel pour l'irrigation.", + "example_sentence_english": "Water pumping is essential for irrigation.", + "pos": "noun", + "word_frequency": 15492 + }, + { + "word": "pore", + "article_with_word": "le pore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pore", + "example_sentence_native": "Les pores de la peau permettent à celle-ci de respirer.", + "example_sentence_english": "The pores of the skin allow it to breathe.", + "pos": "noun", + "word_frequency": 15493 + }, + { + "word": "prouesse", + "article_with_word": "la prouesse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prowess;feat", + "example_sentence_native": "Son exploit était une véritable prouesse technique.", + "example_sentence_english": "His achievement was a true technical feat.", + "pos": "noun", + "word_frequency": 15495 + }, + { + "word": "préfectoral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prefectural", + "example_sentence_native": "Il a reçu un arrêté préfectoral.", + "example_sentence_english": "He received a prefectural order.", + "pos": "adjective", + "word_frequency": 15496 + }, + { + "word": "préparateur", + "article_with_word": "le préparateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preparer;technician", + "example_sentence_native": "Le préparateur en pharmacie a préparé les médicaments.", + "example_sentence_english": "The pharmacy technician prepared the medications.", + "pos": "noun", + "word_frequency": 15497 + }, + { + "word": "psychothérapie", + "article_with_word": "la psychothérapie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotherapy", + "example_sentence_native": "Elle suit une psychothérapie pour gérer son anxiété.", + "example_sentence_english": "She is undergoing psychotherapy to manage her anxiety.", + "pos": "noun", + "word_frequency": 15498 + }, + { + "word": "pédagogue", + "article_with_word": "le pédagogue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedagogue;educator", + "example_sentence_native": "C'est un excellent pédagogue, très apprécié de ses élèves.", + "example_sentence_english": "He is an excellent educator, very appreciated by his students.", + "pos": "noun", + "word_frequency": 15500 + }, + { + "word": "pénitencier", + "article_with_word": "le pénitencier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penitentiary;prison", + "example_sentence_native": "Il a été transféré dans un pénitencier de haute sécurité.", + "example_sentence_english": "He was transferred to a high-security penitentiary.", + "pos": "noun", + "word_frequency": 15501 + }, + { + "word": "receler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to conceal;to harbor (stolen goods)", + "example_sentence_native": "Il est accusé de receler des objets volés.", + "example_sentence_english": "He is accused of concealing stolen goods.", + "pos": "verb", + "word_frequency": 15503 + }, + { + "word": "relaxer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relax;to acquit", + "example_sentence_native": "Après une longue journée, il aime se relaxer.", + "example_sentence_english": "After a long day, he likes to relax.", + "pos": "verb", + "word_frequency": 15505 + }, + { + "word": "relâchement", + "article_with_word": "le relâchement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relaxation;loosening", + "example_sentence_native": "Le relâchement de la tension était palpable.", + "example_sentence_english": "The slackening of tension was palpable.", + "pos": "noun", + "word_frequency": 15506 + }, + { + "word": "restrictif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restrictive", + "example_sentence_native": "Les nouvelles règles sont très restrictives.", + "example_sentence_english": "The new rules are very restrictive.", + "pos": "adjective", + "word_frequency": 15508 + }, + { + "word": "retardement", + "article_with_word": "le retardement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delay;retardation", + "example_sentence_native": "Le retardement du projet a causé des problèmes.", + "example_sentence_english": "The delay of the project caused problems.", + "pos": "noun", + "word_frequency": 15509 + }, + { + "word": "ruée", + "article_with_word": "la ruée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rush;stampede", + "example_sentence_native": "Il y a eu une ruée vers les magasins avant Noël.", + "example_sentence_english": "There was a rush to the stores before Christmas.", + "pos": "noun", + "word_frequency": 15514 + }, + { + "word": "récital", + "article_with_word": "le récital", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recital", + "example_sentence_native": "Le pianiste a donné un magnifique récital.", + "example_sentence_english": "The pianist gave a magnificent recital.", + "pos": "noun", + "word_frequency": 15515 + }, + { + "word": "sapiens", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sapiens (wise;knowing)", + "example_sentence_native": "L'Homo sapiens est l'espèce humaine actuelle.", + "example_sentence_english": "Homo sapiens is the current human species.", + "pos": "adjective", + "word_frequency": 15516 + }, + { + "word": "solar", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solar", + "example_sentence_native": "L'énergie solaire est essentielle pour l'avenir.", + "example_sentence_english": "Solar energy is essential for the future.", + "pos": "adjective", + "word_frequency": 15520 + }, + { + "word": "sortant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outgoing;leaving", + "example_sentence_native": "Le président sortant a prononcé son dernier discours.", + "example_sentence_english": "The outgoing president delivered his last speech.", + "pos": "adjective", + "word_frequency": 15521 + }, + { + "word": "sponsoriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sponsor", + "example_sentence_native": "L'entreprise a décidé de sponsoriser l'événement.", + "example_sentence_english": "The company decided to sponsor the event.", + "pos": "verb", + "word_frequency": 15523 + }, + { + "word": "stèle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stele;commemorative slab", + "example_sentence_native": "Une ancienne stèle a été découverte sur le site archéologique.", + "example_sentence_english": "An ancient stele was discovered at the archaeological site.", + "pos": "noun", + "word_frequency": 15524 + }, + { + "word": "symposium", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symposium", + "example_sentence_native": "Ils ont organisé un symposium sur l'intelligence artificielle.", + "example_sentence_english": "They organized a symposium on artificial intelligence.", + "pos": "noun", + "word_frequency": 15525 + }, + { + "word": "séducteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seducer;charmer", + "example_sentence_native": "Il a la réputation d'être un grand séducteur.", + "example_sentence_english": "He has a reputation for being a great charmer.", + "pos": "noun", + "word_frequency": 15526 + }, + { + "word": "taco", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taco", + "example_sentence_native": "J'adore manger des tacos le mardi.", + "example_sentence_english": "I love eating tacos on Tuesdays.", + "pos": "noun", + "word_frequency": 15527 + }, + { + "word": "target", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "target", + "example_sentence_native": "Nous devons atteindre nos targets de vente ce mois-ci.", + "example_sentence_english": "We must reach our sales targets this month.", + "pos": "noun", + "word_frequency": 15528 + }, + { + "word": "tartine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slice of bread (with spread);open-faced sandwich", + "example_sentence_native": "J'ai mangé une tartine de confiture pour le petit-déjeuner.", + "example_sentence_english": "I ate a slice of bread with jam for breakfast.", + "pos": "noun", + "word_frequency": 15529 + }, + { + "word": "tease", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tease;teaser (e.g.;for a film)", + "example_sentence_native": "Le nouveau film a un bon tease.", + "example_sentence_english": "The new film has a good tease.", + "pos": "noun", + "word_frequency": 15530 + }, + { + "word": "tip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip;advice;gratuity", + "example_sentence_native": "Voici un bon tip pour apprendre le français.", + "example_sentence_english": "Here's a good tip for learning French.", + "pos": "noun", + "word_frequency": 15531 + }, + { + "word": "tong", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flip-flop", + "example_sentence_native": "J'ai acheté une nouvelle paire de tongs pour les vacances.", + "example_sentence_english": "I bought a new pair of flip-flops for the holidays.", + "pos": "noun", + "word_frequency": 15533 + }, + { + "word": "transplantation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transplantation", + "example_sentence_native": "La transplantation d'organes sauve des vies.", + "example_sentence_english": "Organ transplantation saves lives.", + "pos": "noun", + "word_frequency": 15535 + }, + { + "word": "trap", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trap (music genre);trap (as in a snare)", + "example_sentence_native": "Il écoute beaucoup de musique trap.", + "example_sentence_english": "He listens to a lot of trap music.", + "pos": "noun", + "word_frequency": 15536 + }, + { + "word": "truquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rig;to fake;to tamper with", + "example_sentence_native": "Les résultats de l'élection ont été truqués.", + "example_sentence_english": "The election results were rigged.", + "pos": "verb", + "word_frequency": 15537 + }, + { + "word": "téléviseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "television set", + "example_sentence_native": "Nous avons acheté un nouveau téléviseur pour le salon.", + "example_sentence_english": "We bought a new television set for the living room.", + "pos": "noun", + "word_frequency": 15538 + }, + { + "word": "volontariat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volunteering;volunteer work", + "example_sentence_native": "Elle fait du volontariat dans une association.", + "example_sentence_english": "She does volunteer work for an association.", + "pos": "noun", + "word_frequency": 15539 + }, + { + "word": "voyant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conspicuous;flashy;bright", + "example_sentence_native": "Elle portait une robe très voyante.", + "example_sentence_english": "She was wearing a very flashy dress.", + "pos": "adjective", + "word_frequency": 15540 + }, + { + "word": "voyeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voyeur;peeping tom", + "example_sentence_native": "Le voyeur a été arrêté par la police.", + "example_sentence_english": "The voyeur was arrested by the police.", + "pos": "noun", + "word_frequency": 15541 + }, + { + "word": "édifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to build;to edify;to uplift", + "example_sentence_native": "Son discours a édifié l'assemblée.", + "example_sentence_english": "His speech edified the assembly.", + "pos": "verb", + "word_frequency": 15546 + }, + { + "word": "élasticité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elasticity", + "example_sentence_native": "Le caoutchouc a une grande élasticité.", + "example_sentence_english": "Rubber has great elasticity.", + "pos": "noun", + "word_frequency": 15547 + }, + { + "word": "énumérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enumerate;to list", + "example_sentence_native": "Il a énuméré toutes les raisons de son départ.", + "example_sentence_english": "He enumerated all the reasons for his departure.", + "pos": "verb", + "word_frequency": 15548 + }, + { + "word": "abréviation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abbreviation", + "example_sentence_native": "\"SVP\" est une abréviation de \"s'il vous plaît\".", + "example_sentence_english": "\"SVP\" is an abbreviation for \"please\".", + "pos": "noun", + "word_frequency": 15549 + }, + { + "word": "acadien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Acadian", + "example_sentence_native": "La culture acadienne est riche et unique.", + "example_sentence_english": "Acadian culture is rich and unique.", + "pos": "adjective", + "word_frequency": 15550 + }, + { + "word": "activisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activism", + "example_sentence_native": "Son activisme a eu un impact significatif.", + "example_sentence_english": "His activism had a significant impact.", + "pos": "noun", + "word_frequency": 15551 + }, + { + "word": "adoucir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to soften;to sweeten;to soothe", + "example_sentence_native": "Il a essayé d'adoucir la situation.", + "example_sentence_english": "He tried to soften the situation.", + "pos": "verb", + "word_frequency": 15552 + }, + { + "word": "arriéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backward", + "example_sentence_native": "Ce pays est considéré comme économiquement arriéré.", + "example_sentence_english": "This country is considered economically backward.", + "pos": "adjective", + "word_frequency": 15560 + }, + { + "word": "banquise", + "article_with_word": "la banquise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ice floe;pack ice", + "example_sentence_native": "La banquise arctique fond à un rythme alarmant.", + "example_sentence_english": "The Arctic pack ice is melting at an alarming rate.", + "pos": "noun", + "word_frequency": 15564 + }, + { + "word": "boiteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lame;limping;flawed", + "example_sentence_native": "Il a donné une excuse boiteuse pour son absence.", + "example_sentence_english": "He gave a lame excuse for his absence.", + "pos": "adjective", + "word_frequency": 15570 + }, + { + "word": "bondé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowded;packed", + "example_sentence_native": "Le bus était bondé ce matin, impossible de trouver une place.", + "example_sentence_english": "The bus was crowded this morning, impossible to find a seat.", + "pos": "adjective", + "word_frequency": 15571 + }, + { + "word": "burqa", + "article_with_word": "la burqa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burqa", + "example_sentence_native": "Le port de la burqa est un sujet de débat dans de nombreux pays.", + "example_sentence_english": "Wearing the burqa is a subject of debate in many countries.", + "pos": "noun", + "word_frequency": 15578 + }, + { + "word": "cambrioleur", + "article_with_word": "le cambrioleur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burglar", + "example_sentence_native": "Le cambrioleur a été arrêté par la police hier soir.", + "example_sentence_english": "The burglar was arrested by the police last night.", + "pos": "noun", + "word_frequency": 15579 + }, + { + "word": "canarie", + "article_with_word": "le canarie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canary", + "example_sentence_native": "Le canarie est un petit oiseau chanteur.", + "example_sentence_english": "The canary is a small singing bird.", + "pos": "noun", + "word_frequency": 15580 + }, + { + "word": "cassis", + "article_with_word": "le cassis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blackcurrant", + "example_sentence_native": "J'adore la confiture de cassis sur mes toasts.", + "example_sentence_english": "I love blackcurrant jam on my toast.", + "pos": "noun", + "word_frequency": 15581 + }, + { + "word": "caveau", + "article_with_word": "le caveau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vault;cellar;burial vault", + "example_sentence_native": "Les vins précieux sont conservés dans un caveau frais et sombre.", + "example_sentence_english": "Precious wines are kept in a cool, dark cellar.", + "pos": "noun", + "word_frequency": 15582 + }, + { + "word": "centraliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to centralize", + "example_sentence_native": "Le gouvernement a décidé de centraliser les services administratifs.", + "example_sentence_english": "The government decided to centralize administrative services.", + "pos": "verb", + "word_frequency": 15583 + }, + { + "word": "chimiothérapie", + "article_with_word": "la chimiothérapie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemotherapy", + "example_sentence_native": "Elle suit un traitement de chimiothérapie pour son cancer.", + "example_sentence_english": "She is undergoing chemotherapy treatment for her cancer.", + "pos": "noun", + "word_frequency": 15585 + }, + { + "word": "chomage", + "article_with_word": "le chômage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unemployment", + "example_sentence_native": "Le taux de chômage a légèrement diminué ce trimestre.", + "example_sentence_english": "The unemployment rate slightly decreased this quarter.", + "pos": "noun", + "word_frequency": 15586 + }, + { + "word": "clarification", + "article_with_word": "la clarification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarification", + "example_sentence_native": "Nous attendons une clarification de la situation avant de prendre une décision.", + "example_sentence_english": "We are awaiting a clarification of the situation before making a decision.", + "pos": "noun", + "word_frequency": 15587 + }, + { + "word": "convergent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convergent", + "example_sentence_native": "Les preuves sont convergentes et pointent vers la même conclusion.", + "example_sentence_english": "The evidence is convergent and points to the same conclusion.", + "pos": "adjective", + "word_frequency": 15589 + }, + { + "word": "coronavirus", + "article_with_word": "le coronavirus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coronavirus", + "example_sentence_native": "Le coronavirus a eu un impact majeur sur l'économie mondiale.", + "example_sentence_english": "The coronavirus had a major impact on the global economy.", + "pos": "noun", + "word_frequency": 15591 + }, + { + "word": "courbure", + "article_with_word": "la courbure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curvature;bend", + "example_sentence_native": "La courbure de la route rend la visibilité difficile.", + "example_sentence_english": "The curvature of the road makes visibility difficult.", + "pos": "noun", + "word_frequency": 15593 + }, + { + "word": "curseur", + "article_with_word": "le curseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cursor;slider", + "example_sentence_native": "Déplacez le curseur pour ajuster la luminosité de l'écran.", + "example_sentence_english": "Move the slider to adjust the screen brightness.", + "pos": "noun", + "word_frequency": 15595 + }, + { + "word": "dilution", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dilution", + "example_sentence_native": "La dilution du produit est nécessaire avant utilisation.", + "example_sentence_english": "The dilution of the product is necessary before use.", + "pos": "noun", + "word_frequency": 15601 + }, + { + "word": "diy", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "DIY (Do It Yourself)", + "example_sentence_native": "Il aime faire du DIY le week-end.", + "example_sentence_english": "He likes to do DIY on weekends.", + "pos": "noun", + "word_frequency": 15603 + }, + { + "word": "duvet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down (feathers)", + "example_sentence_native": "Ce manteau est rempli de duvet d'oie.", + "example_sentence_english": "This coat is filled with goose down.", + "pos": "noun", + "word_frequency": 15604 + }, + { + "word": "débarras", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storage room;junk room", + "example_sentence_native": "Nous avons transformé le débarras en petit bureau.", + "example_sentence_english": "We transformed the storage room into a small office.", + "pos": "noun", + "word_frequency": 15605 + }, + { + "word": "décaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shift;to postpone", + "example_sentence_native": "Nous devons décaler la réunion à demain.", + "example_sentence_english": "We need to postpone the meeting until tomorrow.", + "pos": "verb", + "word_frequency": 15606 + }, + { + "word": "défouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to let off steam;to unwind", + "example_sentence_native": "Après une longue journée, il aime se défouler à la salle de sport.", + "example_sentence_english": "After a long day, he likes to let off steam at the gym.", + "pos": "verb", + "word_frequency": 15607 + }, + { + "word": "dévoué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devoted;dedicated", + "example_sentence_native": "C'est une personne très dévouée à son travail.", + "example_sentence_english": "She is a person very devoted to her work.", + "pos": "adjective", + "word_frequency": 15608 + }, + { + "word": "endémique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endemic", + "example_sentence_native": "Cette espèce est endémique à cette région.", + "example_sentence_english": "This species is endemic to this region.", + "pos": "adjective", + "word_frequency": 15610 + }, + { + "word": "estrade", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platform;stage", + "example_sentence_native": "L'orateur est monté sur l'estrade pour commencer son discours.", + "example_sentence_english": "The speaker went up onto the platform to begin his speech.", + "pos": "noun", + "word_frequency": 15612 + }, + { + "word": "facultatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optional", + "example_sentence_native": "La participation à cette activité est facultative.", + "example_sentence_english": "Participation in this activity is optional.", + "pos": "adjective", + "word_frequency": 15615 + }, + { + "word": "figuration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extra (in a film);representation", + "example_sentence_native": "Elle a fait de la figuration dans un film.", + "example_sentence_english": "She was an extra in a film.", + "pos": "noun", + "word_frequency": 15617 + }, + { + "word": "flatter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flatter", + "example_sentence_native": "Il aime flatter les gens pour obtenir ce qu'il veut.", + "example_sentence_english": "He likes to flatter people to get what he wants.", + "pos": "verb", + "word_frequency": 15618 + }, + { + "word": "flip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fright (informal);flip (as in a trick)", + "example_sentence_native": "J'ai eu un gros flip quand j'ai vu l'araignée.", + "example_sentence_english": "I got a big fright when I saw the spider.", + "pos": "noun", + "word_frequency": 15619 + }, + { + "word": "foetus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetus", + "example_sentence_native": "Le développement du fœtus est rapide au cours du premier trimestre.", + "example_sentence_english": "The development of the fetus is rapid during the first trimester.", + "pos": "noun", + "word_frequency": 15620 + }, + { + "word": "foirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess up;to screw up (informal)", + "example_sentence_native": "J'ai complètement foiré mon examen.", + "example_sentence_english": "I completely messed up my exam.", + "pos": "verb", + "word_frequency": 15621 + }, + { + "word": "frottement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friction;rubbing", + "example_sentence_native": "Le frottement des pneus sur la route est essentiel pour l'adhérence.", + "example_sentence_english": "The friction of the tires on the road is essential for grip.", + "pos": "noun", + "word_frequency": 15625 + }, + { + "word": "fruitier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fruity;fruit-bearing", + "example_sentence_native": "Cet arbre fruitier donne de délicieuses pommes.", + "example_sentence_english": "This fruit-bearing tree produces delicious apples.", + "pos": "adjective", + "word_frequency": 15626 + }, + { + "word": "futile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "futile;pointless", + "example_sentence_native": "Il est futile de discuter avec lui quand il a pris sa décision.", + "example_sentence_english": "It is futile to argue with him when he has made his decision.", + "pos": "adjective", + "word_frequency": 15627 + }, + { + "word": "gazelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gazelle", + "example_sentence_native": "La gazelle est connue pour sa rapidité.", + "example_sentence_english": "The gazelle is known for its speed.", + "pos": "noun", + "word_frequency": 15630 + }, + { + "word": "glaciaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glacial", + "example_sentence_native": "L'ère glaciaire a profondément modifié le paysage.", + "example_sentence_english": "The glacial era profoundly modified the landscape.", + "pos": "adjective", + "word_frequency": 15632 + }, + { + "word": "gong", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gong", + "example_sentence_native": "Le son du gong a marqué la fin de la méditation.", + "example_sentence_english": "The sound of the gong marked the end of the meditation.", + "pos": "noun", + "word_frequency": 15633 + }, + { + "word": "gronder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scold;to rumble", + "example_sentence_native": "Les parents ont dû gronder leur enfant pour son comportement.", + "example_sentence_english": "The parents had to scold their child for his behavior.", + "pos": "verb", + "word_frequency": 15635 + }, + { + "word": "gruyère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Gruyère cheese", + "example_sentence_native": "J'aime mettre du gruyère râpé sur mes pâtes.", + "example_sentence_english": "I like to put grated Gruyère cheese on my pasta.", + "pos": "noun", + "word_frequency": 15636 + }, + { + "word": "génital", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genital", + "example_sentence_native": "Les organes génitaux sont essentiels à la reproduction.", + "example_sentence_english": "The genital organs are essential for reproduction.", + "pos": "adjective", + "word_frequency": 15637 + }, + { + "word": "harnais", + "article_with_word": "le harnais", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harness", + "example_sentence_native": "Le cheval portait un harnais en cuir.", + "example_sentence_english": "The horse wore a leather harness.", + "pos": "noun", + "word_frequency": 15640 + }, + { + "word": "hocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nod", + "example_sentence_native": "Il a hoché la tête en signe d'accord.", + "example_sentence_english": "He nodded his head in agreement.", + "pos": "verb", + "word_frequency": 15643 + }, + { + "word": "hélium", + "article_with_word": "l’hélium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helium", + "example_sentence_native": "Les ballons sont souvent remplis d'hélium.", + "example_sentence_english": "Balloons are often filled with helium.", + "pos": "noun", + "word_frequency": 15647 + }, + { + "word": "hérisson", + "article_with_word": "le hérisson", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hedgehog", + "example_sentence_native": "Un hérisson a traversé le jardin.", + "example_sentence_english": "A hedgehog crossed the garden.", + "pos": "noun", + "word_frequency": 15648 + }, + { + "word": "immensité", + "article_with_word": "l’immensité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immensity", + "example_sentence_native": "L'immensité de l'océan est impressionnante.", + "example_sentence_english": "The immensity of the ocean is impressive.", + "pos": "noun", + "word_frequency": 15651 + }, + { + "word": "imputable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attributable", + "example_sentence_native": "Cette erreur est imputable à une mauvaise communication.", + "example_sentence_english": "This error is attributable to poor communication.", + "pos": "adjective", + "word_frequency": 15652 + }, + { + "word": "inachevé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfinished", + "example_sentence_native": "Le projet est resté inachevé.", + "example_sentence_english": "The project remained unfinished.", + "pos": "adjective", + "word_frequency": 15653 + }, + { + "word": "inactivité", + "article_with_word": "l’inactivité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inactivity", + "example_sentence_native": "L'inactivité physique est mauvaise pour la santé.", + "example_sentence_english": "Physical inactivity is bad for health.", + "pos": "noun", + "word_frequency": 15654 + }, + { + "word": "inculte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncultivated", + "example_sentence_native": "Ce terrain est inculte depuis des années.", + "example_sentence_english": "This land has been uncultivated for years.", + "pos": "adjective", + "word_frequency": 15655 + }, + { + "word": "incurable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incurable", + "example_sentence_native": "C'est une maladie incurable.", + "example_sentence_english": "It's an incurable disease.", + "pos": "adjective", + "word_frequency": 15656 + }, + { + "word": "interférence", + "article_with_word": "l’interférence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interference", + "example_sentence_native": "Il y a eu des interférences sur la ligne téléphonique.", + "example_sentence_english": "There was interference on the phone line.", + "pos": "noun", + "word_frequency": 15657 + }, + { + "word": "liturgique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liturgical", + "example_sentence_native": "La musique liturgique est souvent jouée à l'église.", + "example_sentence_english": "Liturgical music is often played in church.", + "pos": "adjective", + "word_frequency": 15665 + }, + { + "word": "lubrifiant", + "article_with_word": "le lubrifiant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lubricant", + "example_sentence_native": "Il faut ajouter du lubrifiant au moteur.", + "example_sentence_english": "You need to add lubricant to the engine.", + "pos": "noun", + "word_frequency": 15666 + }, + { + "word": "magnétisme", + "article_with_word": "le magnétisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnetism", + "example_sentence_native": "Le magnétisme est une force naturelle.", + "example_sentence_english": "Magnetism is a natural force.", + "pos": "noun", + "word_frequency": 15668 + }, + { + "word": "majordome", + "article_with_word": "le majordome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butler", + "example_sentence_native": "Le majordome a servi le thé.", + "example_sentence_english": "The butler served the tea.", + "pos": "noun", + "word_frequency": 15669 + }, + { + "word": "maniement", + "article_with_word": "le maniement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handling", + "example_sentence_native": "Le maniement de cet outil demande de la précision.", + "example_sentence_english": "The handling of this tool requires precision.", + "pos": "noun", + "word_frequency": 15671 + }, + { + "word": "monégasque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Monegasque", + "example_sentence_native": "Il est de nationalité monégasque.", + "example_sentence_english": "He is of Monegasque nationality.", + "pos": "adjective", + "word_frequency": 15675 + }, + { + "word": "moqueur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mocking", + "example_sentence_native": "Son sourire était moqueur.", + "example_sentence_english": "His smile was mocking.", + "pos": "adjective", + "word_frequency": 15676 + }, + { + "word": "moratoire", + "article_with_word": "le moratoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moratorium", + "example_sentence_native": "Le gouvernement a décrété un moratoire sur la pêche.", + "example_sentence_english": "The government declared a moratorium on fishing.", + "pos": "noun", + "word_frequency": 15677 + }, + { + "word": "muscu", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bodybuilding;gym (informal)", + "example_sentence_native": "Je vais à la muscu trois fois par semaine.", + "example_sentence_english": "I go to the gym three times a week.", + "pos": "noun", + "word_frequency": 15681 + }, + { + "word": "navrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to grieve;to distress", + "example_sentence_native": "Je suis navré d'apprendre cette triste nouvelle.", + "example_sentence_english": "I am sorry to hear this sad news.", + "pos": "verb", + "word_frequency": 15683 + }, + { + "word": "nigérian", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nigerian", + "example_sentence_native": "Il a rencontré un étudiant nigérian à l'université.", + "example_sentence_english": "He met a Nigerian student at the university.", + "pos": "adjective", + "word_frequency": 15685 + }, + { + "word": "oblique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oblique;slanted", + "example_sentence_native": "La lumière du soleil entrait par une fenêtre oblique.", + "example_sentence_english": "The sunlight entered through a slanted window.", + "pos": "adjective", + "word_frequency": 15687 + }, + { + "word": "ontarien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ontarian", + "example_sentence_native": "Elle a visité une petite ville ontarienne.", + "example_sentence_english": "She visited a small Ontarian town.", + "pos": "adjective", + "word_frequency": 15689 + }, + { + "word": "orchidée", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchid", + "example_sentence_native": "J'ai acheté une belle orchidée pour ma mère.", + "example_sentence_english": "I bought a beautiful orchid for my mother.", + "pos": "noun", + "word_frequency": 15690 + }, + { + "word": "ourson", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bear cub;teddy bear", + "example_sentence_native": "L'ourson jouait avec sa mère dans la forêt.", + "example_sentence_english": "The bear cub was playing with its mother in the forest.", + "pos": "noun", + "word_frequency": 15691 + }, + { + "word": "outrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to outrage;to exasperate", + "example_sentence_native": "Son comportement a outré tout le monde.", + "example_sentence_english": "His behavior outraged everyone.", + "pos": "verb", + "word_frequency": 15692 + }, + { + "word": "pad", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pad (e.g.;mouse pad;game controller)", + "example_sentence_native": "J'ai besoin d'un nouveau pad pour ma souris.", + "example_sentence_english": "I need a new pad for my mouse.", + "pos": "noun", + "word_frequency": 15693 + }, + { + "word": "pagaille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mess;chaos", + "example_sentence_native": "C'était la pagaille après la fête.", + "example_sentence_english": "It was a mess after the party.", + "pos": "noun", + "word_frequency": 15694 + }, + { + "word": "pale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pale", + "example_sentence_native": "Elle avait le visage pâle après la mauvaise nouvelle.", + "example_sentence_english": "She had a pale face after the bad news.", + "pos": "adjective", + "word_frequency": 15695 + }, + { + "word": "papeterie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stationery;stationery shop", + "example_sentence_native": "J'ai acheté des stylos à la papeterie du coin.", + "example_sentence_english": "I bought pens at the local stationery shop.", + "pos": "noun", + "word_frequency": 15696 + }, + { + "word": "parodique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parodic;satirical", + "example_sentence_native": "C'était une émission de télévision parodique.", + "example_sentence_english": "It was a parodic television show.", + "pos": "adjective", + "word_frequency": 15697 + }, + { + "word": "paysagiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landscape designer;gardener", + "example_sentence_native": "Nous avons engagé un paysagiste pour aménager notre jardin.", + "example_sentence_english": "We hired a landscape designer to design our garden.", + "pos": "noun", + "word_frequency": 15698 + }, + { + "word": "pendentif", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pendant", + "example_sentence_native": "Elle portait un joli pendentif en argent.", + "example_sentence_english": "She was wearing a pretty silver pendant.", + "pos": "noun", + "word_frequency": 15699 + }, + { + "word": "perpendiculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpendicular", + "example_sentence_native": "Les deux lignes sont perpendiculaires.", + "example_sentence_english": "The two lines are perpendicular.", + "pos": "adjective", + "word_frequency": 15700 + }, + { + "word": "persil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parsley", + "example_sentence_native": "Ajoutez un peu de persil frais à la sauce.", + "example_sentence_english": "Add some fresh parsley to the sauce.", + "pos": "noun", + "word_frequency": 15701 + }, + { + "word": "ponctuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctual", + "example_sentence_native": "Il est toujours très ponctuel à ses rendez-vous.", + "example_sentence_english": "He is always very punctual for his appointments.", + "pos": "adjective", + "word_frequency": 15705 + }, + { + "word": "print", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "print (e.g.;printout;print media)", + "example_sentence_native": "J'ai besoin d'un print de ce document.", + "example_sentence_english": "I need a printout of this document.", + "pos": "noun", + "word_frequency": 15706 + }, + { + "word": "protectionnisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protectionism", + "example_sentence_native": "Le protectionnisme peut avoir des conséquences sur le commerce mondial.", + "example_sentence_english": "Protectionism can have consequences for global trade.", + "pos": "noun", + "word_frequency": 15707 + }, + { + "word": "pédiatre", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pediatrician", + "example_sentence_native": "Nous avons rendez-vous chez le pédiatre pour notre bébé.", + "example_sentence_english": "We have an appointment with the pediatrician for our baby.", + "pos": "noun", + "word_frequency": 15710 + }, + { + "word": "racket", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racket;extortion", + "example_sentence_native": "La police enquête sur une affaire de racket.", + "example_sentence_english": "The police are investigating an extortion case.", + "pos": "noun", + "word_frequency": 15713 + }, + { + "word": "rafle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "roundup;raid", + "example_sentence_native": "La rafle du Vél' d'Hiv est un événement tragique de l'histoire.", + "example_sentence_english": "The Vel' d'Hiv roundup is a tragic event in history.", + "pos": "noun", + "word_frequency": 15714 + }, + { + "word": "ramassage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection;gathering", + "example_sentence_native": "Le ramassage des ordures a lieu le mardi.", + "example_sentence_english": "Garbage collection takes place on Tuesday.", + "pos": "noun", + "word_frequency": 15715 + }, + { + "word": "randonneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiker", + "example_sentence_native": "Les randonneurs ont exploré les sentiers de montagne.", + "example_sentence_english": "The hikers explored the mountain trails.", + "pos": "noun", + "word_frequency": 15716 + }, + { + "word": "resource", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resource", + "example_sentence_native": "Il faut gérer les resources de l'entreprise.", + "example_sentence_english": "Company resources must be managed.", + "pos": "noun", + "word_frequency": 15718 + }, + { + "word": "reve", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dream", + "example_sentence_native": "J'ai fait un beau rêve cette nuit.", + "example_sentence_english": "I had a beautiful dream last night.", + "pos": "noun", + "word_frequency": 15719 + }, + { + "word": "réhabiliter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rehabilitate", + "example_sentence_native": "Ils ont décidé de réhabiliter l'ancien bâtiment.", + "example_sentence_english": "They decided to rehabilitate the old building.", + "pos": "verb", + "word_frequency": 15723 + }, + { + "word": "réintégration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reintegration", + "example_sentence_native": "La réintégration professionnelle est un défi pour beaucoup.", + "example_sentence_english": "Professional reintegration is a challenge for many.", + "pos": "noun", + "word_frequency": 15724 + }, + { + "word": "répliquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reply;to retort", + "example_sentence_native": "Il n'a pas hésité à répliquer à l'accusation.", + "example_sentence_english": "He did not hesitate to retort to the accusation.", + "pos": "verb", + "word_frequency": 15725 + }, + { + "word": "sanguinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bloodthirsty;sanguinary", + "example_sentence_native": "Le tyran était connu pour ses méthodes sanguinaires.", + "example_sentence_english": "The tyrant was known for his bloodthirsty methods.", + "pos": "adjective", + "word_frequency": 15726 + }, + { + "word": "savane", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savanna", + "example_sentence_native": "Les lions chassent dans la savane africaine.", + "example_sentence_english": "Lions hunt in the African savanna.", + "pos": "noun", + "word_frequency": 15727 + }, + { + "word": "sectaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sectarian;narrow-minded", + "example_sentence_native": "Son approche était trop sectaire pour être acceptée par tous.", + "example_sentence_english": "His approach was too sectarian to be accepted by everyone.", + "pos": "adjective", + "word_frequency": 15728 + }, + { + "word": "sphinx", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sphinx", + "example_sentence_native": "Le Sphinx de Gizeh est une statue emblématique de l'Égypte.", + "example_sentence_english": "The Sphinx of Giza is an iconic statue of Egypt.", + "pos": "noun", + "word_frequency": 15729 + }, + { + "word": "supercherie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deception;trickery", + "example_sentence_native": "Il a découvert que toute l'histoire n'était qu'une supercherie.", + "example_sentence_english": "He discovered that the whole story was just a deception.", + "pos": "noun", + "word_frequency": 15730 + }, + { + "word": "talus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embankment;slope", + "example_sentence_native": "La voiture a dérapé et a fini dans le talus.", + "example_sentence_english": "The car skidded and ended up in the embankment.", + "pos": "noun", + "word_frequency": 15733 + }, + { + "word": "teinter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tint;to dye", + "example_sentence_native": "Elle a décidé de teinter ses cheveux en rouge.", + "example_sentence_english": "She decided to dye her hair red.", + "pos": "verb", + "word_frequency": 15735 + }, + { + "word": "travée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bay;span (architecture)", + "example_sentence_native": "Chaque travée du pont est soutenue par des piliers robustes.", + "example_sentence_english": "Each bay of the bridge is supported by robust pillars.", + "pos": "noun", + "word_frequency": 15737 + }, + { + "word": "triage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorting;triage", + "example_sentence_native": "Le triage des patients est essentiel aux urgences.", + "example_sentence_english": "Patient triage is essential in the emergency room.", + "pos": "noun", + "word_frequency": 15738 + }, + { + "word": "typographie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typography", + "example_sentence_native": "La typographie joue un rôle clé dans la lisibilité d'un texte.", + "example_sentence_english": "Typography plays a key role in the readability of a text.", + "pos": "noun", + "word_frequency": 15739 + }, + { + "word": "unifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unified", + "example_sentence_native": "Le pays est resté unifié malgré les défis.", + "example_sentence_english": "The country remained unified despite the challenges.", + "pos": "adjective", + "word_frequency": 15740 + }, + { + "word": "vacancier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holidaymaker;vacationer", + "example_sentence_native": "Les vacanciers affluent sur la côte en été.", + "example_sentence_english": "Holidaymakers flock to the coast in summer.", + "pos": "noun", + "word_frequency": 15741 + }, + { + "word": "vénézuélien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Venezuelan", + "example_sentence_native": "Il a rencontré un artiste vénézuélien talentueux.", + "example_sentence_english": "He met a talented Venezuelan artist.", + "pos": "adjective", + "word_frequency": 15743 + }, + { + "word": "wilaya", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wilaya (administrative division in Algeria)", + "example_sentence_native": "La wilaya d'Alger est la plus peuplée.", + "example_sentence_english": "The wilaya of Algiers is the most populated.", + "pos": "noun", + "word_frequency": 15744 + }, + { + "word": "étanchéité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waterproofing;sealing", + "example_sentence_native": "L'étanchéité du toit est essentielle pour éviter les fuites.", + "example_sentence_english": "The waterproofing of the roof is essential to prevent leaks.", + "pos": "noun", + "word_frequency": 15747 + }, + { + "word": "étiquetage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labeling", + "example_sentence_native": "L'étiquetage des produits alimentaires est strictement réglementé.", + "example_sentence_english": "The labeling of food products is strictly regulated.", + "pos": "noun", + "word_frequency": 15748 + }, + { + "word": "abonder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abound;to be plentiful", + "example_sentence_native": "Les idées abondent dans cette équipe créative.", + "example_sentence_english": "Ideas abound in this creative team.", + "pos": "verb", + "word_frequency": 15749 + }, + { + "word": "acre", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acre", + "example_sentence_native": "Le terrain s'étend sur plusieurs acres.", + "example_sentence_english": "The land extends over several acres.", + "pos": "noun", + "word_frequency": 15750 + }, + { + "word": "affligeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distressing;deplorable", + "example_sentence_native": "La situation est affligeante pour les habitants.", + "example_sentence_english": "The situation is distressing for the inhabitants.", + "pos": "adjective", + "word_frequency": 15751 + }, + { + "word": "antidépresseur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antidepressant", + "example_sentence_native": "Les antidépresseurs sont parfois prescrits pour traiter la dépression.", + "example_sentence_english": "Antidepressants are sometimes prescribed to treat depression.", + "pos": "noun", + "word_frequency": 15757 + }, + { + "word": "archétype", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archetype", + "example_sentence_native": "Il est l'archétype du héros romantique.", + "example_sentence_english": "He is the archetype of the romantic hero.", + "pos": "noun", + "word_frequency": 15758 + }, + { + "word": "arnaquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rip off;to swindle", + "example_sentence_native": "Il s'est fait arnaquer en achetant cette fausse montre.", + "example_sentence_english": "He got ripped off buying that fake watch.", + "pos": "verb", + "word_frequency": 15759 + }, + { + "word": "assigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assign", + "example_sentence_native": "Le professeur va assigner des devoirs aux étudiants.", + "example_sentence_english": "The professor will assign homework to the students.", + "pos": "verb", + "word_frequency": 15761 + }, + { + "word": "baver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drool", + "example_sentence_native": "Le chien a commencé à baver en voyant la nourriture.", + "example_sentence_english": "The dog started to drool when it saw the food.", + "pos": "verb", + "word_frequency": 15763 + }, + { + "word": "bijoutier", + "article_with_word": "le bijoutier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jeweler", + "example_sentence_native": "Le bijoutier a réparé ma montre.", + "example_sentence_english": "The jeweler repaired my watch.", + "pos": "noun", + "word_frequency": 15768 + }, + { + "word": "cafétéria", + "article_with_word": "la cafétéria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cafeteria", + "example_sentence_native": "Nous avons déjeuné à la cafétéria de l'école.", + "example_sentence_english": "We had lunch at the school cafeteria.", + "pos": "noun", + "word_frequency": 15770 + }, + { + "word": "calife", + "article_with_word": "le calife", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caliph", + "example_sentence_native": "Le calife était le chef spirituel et politique de l'Islam.", + "example_sentence_english": "The caliph was the spiritual and political leader of Islam.", + "pos": "noun", + "word_frequency": 15771 + }, + { + "word": "caractérisation", + "article_with_word": "la caractérisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterization", + "example_sentence_native": "La caractérisation des personnages est essentielle dans un roman.", + "example_sentence_english": "Characterization of the characters is essential in a novel.", + "pos": "noun", + "word_frequency": 15773 + }, + { + "word": "carat", + "article_with_word": "le carat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carat", + "example_sentence_native": "Ce diamant pèse deux carats.", + "example_sentence_english": "This diamond weighs two carats.", + "pos": "noun", + "word_frequency": 15774 + }, + { + "word": "chimère", + "article_with_word": "la chimère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chimera", + "example_sentence_native": "Poursuivre ce rêve est une pure chimère.", + "example_sentence_english": "Pursuing this dream is a pure chimera.", + "pos": "noun", + "word_frequency": 15777 + }, + { + "word": "choquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shocking", + "example_sentence_native": "Ses propos étaient vraiment choquants.", + "example_sentence_english": "His remarks were truly shocking.", + "pos": "adjective", + "word_frequency": 15779 + }, + { + "word": "châtelain", + "article_with_word": "le châtelain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lord of the castle", + "example_sentence_native": "Le châtelain a organisé une grande fête médiévale.", + "example_sentence_english": "The lord of the castle organized a big medieval feast.", + "pos": "noun", + "word_frequency": 15780 + }, + { + "word": "cinétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kinetic", + "example_sentence_native": "L'énergie cinétique est l'énergie du mouvement.", + "example_sentence_english": "Kinetic energy is the energy of motion.", + "pos": "adjective", + "word_frequency": 15781 + }, + { + "word": "clitoris", + "article_with_word": "le clitoris", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clitoris", + "example_sentence_native": "Le clitoris est un organe sexuel féminin.", + "example_sentence_english": "The clitoris is a female sexual organ.", + "pos": "noun", + "word_frequency": 15782 + }, + { + "word": "colorant", + "article_with_word": "le colorant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dye", + "example_sentence_native": "Ce gâteau contient des colorants artificiels.", + "example_sentence_english": "This cake contains artificial colorings.", + "pos": "noun", + "word_frequency": 15783 + }, + { + "word": "compost", + "article_with_word": "le compost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compost", + "example_sentence_native": "Nous mettons nos déchets organiques dans le compost.", + "example_sentence_english": "We put our organic waste in the compost.", + "pos": "noun", + "word_frequency": 15784 + }, + { + "word": "congénère", + "article_with_word": "le congénère", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congener", + "example_sentence_native": "Les humains et leurs congénères partagent de nombreux traits.", + "example_sentence_english": "Humans and their fellow creatures share many traits.", + "pos": "noun", + "word_frequency": 15785 + }, + { + "word": "conservatisme", + "article_with_word": "le conservatisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservatism", + "example_sentence_native": "Le conservatisme est une idéologie politique.", + "example_sentence_english": "Conservatism is a political ideology.", + "pos": "noun", + "word_frequency": 15786 + }, + { + "word": "couché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lying down", + "example_sentence_native": "Le chien est couché sur le tapis.", + "example_sentence_english": "The dog is lying on the rug.", + "pos": "adjective", + "word_frequency": 15788 + }, + { + "word": "cupidité", + "article_with_word": "la cupidité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greed", + "example_sentence_native": "La cupidité peut mener à des actions regrettables.", + "example_sentence_english": "Greed can lead to regrettable actions.", + "pos": "noun", + "word_frequency": 15789 + }, + { + "word": "dock", + "article_with_word": "le dock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dock", + "example_sentence_native": "Le navire est arrivé au dock.", + "example_sentence_english": "The ship arrived at the dock.", + "pos": "noun", + "word_frequency": 15792 + }, + { + "word": "domicilier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to domicile", + "example_sentence_native": "L'entreprise est domiciliée à Paris.", + "example_sentence_english": "The company is domiciled in Paris.", + "pos": "verb", + "word_frequency": 15793 + }, + { + "word": "dual", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dual", + "example_sentence_native": "Ce système a une fonction duale.", + "example_sentence_english": "This system has a dual function.", + "pos": "adjective", + "word_frequency": 15796 + }, + { + "word": "décathlon", + "article_with_word": "le décathlon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decathlon", + "example_sentence_native": "Le décathlon est une épreuve d'athlétisme.", + "example_sentence_english": "The decathlon is an athletics event.", + "pos": "noun", + "word_frequency": 15798 + }, + { + "word": "dépanner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help out", + "example_sentence_native": "Peux-tu me dépanner avec ma voiture en panne ?", + "example_sentence_english": "Can you help me out with my broken-down car?", + "pos": "verb", + "word_frequency": 15799 + }, + { + "word": "dépréciation", + "article_with_word": "la dépréciation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depreciation", + "example_sentence_native": "La dépréciation de la monnaie a affecté l'économie.", + "example_sentence_english": "The depreciation of the currency affected the economy.", + "pos": "noun", + "word_frequency": 15800 + }, + { + "word": "détaillant", + "article_with_word": "le détaillant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retailer", + "example_sentence_native": "Le détaillant a annoncé des soldes.", + "example_sentence_english": "The retailer announced sales.", + "pos": "noun", + "word_frequency": 15801 + }, + { + "word": "efficience", + "article_with_word": "l'efficience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficiency", + "example_sentence_native": "L'efficience énergétique est cruciale pour l'environnement.", + "example_sentence_english": "Energy efficiency is crucial for the environment.", + "pos": "noun", + "word_frequency": 15802 + }, + { + "word": "embrayage", + "article_with_word": "l'embrayage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clutch (car)", + "example_sentence_native": "L'embrayage de la voiture est usé.", + "example_sentence_english": "The car's clutch is worn out.", + "pos": "noun", + "word_frequency": 15804 + }, + { + "word": "enfermement", + "article_with_word": "l'enfermement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confinement", + "example_sentence_native": "L'enfermement prolongé peut avoir des effets négatifs.", + "example_sentence_english": "Prolonged confinement can have negative effects.", + "pos": "noun", + "word_frequency": 15805 + }, + { + "word": "enflure", + "article_with_word": "l'enflure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swelling", + "example_sentence_native": "Il y a une enflure au niveau de la cheville.", + "example_sentence_english": "There is a swelling around the ankle.", + "pos": "noun", + "word_frequency": 15806 + }, + { + "word": "exempt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exempt", + "example_sentence_native": "Il est exempt de taxes.", + "example_sentence_english": "He is exempt from taxes.", + "pos": "adjective", + "word_frequency": 15808 + }, + { + "word": "expropriation", + "article_with_word": "l'expropriation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expropriation", + "example_sentence_native": "Le gouvernement a procédé à l'expropriation des terrains.", + "example_sentence_english": "The government proceeded with the expropriation of the land.", + "pos": "noun", + "word_frequency": 15809 + }, + { + "word": "familiariser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to familiarize", + "example_sentence_native": "Il faut se familiariser avec le nouveau système.", + "example_sentence_english": "One must familiarize oneself with the new system.", + "pos": "verb", + "word_frequency": 15810 + }, + { + "word": "filmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filmed", + "example_sentence_native": "La scène a été filmée en direct.", + "example_sentence_english": "The scene was filmed live.", + "pos": "adjective", + "word_frequency": 15811 + }, + { + "word": "fleuriste", + "article_with_word": "le fleuriste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "florist", + "example_sentence_native": "J'ai acheté des fleurs chez le fleuriste.", + "example_sentence_english": "I bought flowers at the florist's.", + "pos": "noun", + "word_frequency": 15813 + }, + { + "word": "fortifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fortify", + "example_sentence_native": "Ils ont décidé de fortifier les défenses de la ville.", + "example_sentence_english": "They decided to fortify the city's defenses.", + "pos": "verb", + "word_frequency": 15814 + }, + { + "word": "fracas", + "article_with_word": "le fracas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crash;clatter", + "example_sentence_native": "Le fracas des assiettes brisées a réveillé tout le monde.", + "example_sentence_english": "The crash of broken plates woke everyone up.", + "pos": "noun", + "word_frequency": 15815 + }, + { + "word": "framboise", + "article_with_word": "la framboise", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raspberry", + "example_sentence_native": "J'adore les tartes à la framboise.", + "example_sentence_english": "I love raspberry tarts.", + "pos": "noun", + "word_frequency": 15816 + }, + { + "word": "freestyle", + "article_with_word": "le freestyle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freestyle", + "example_sentence_native": "Il est champion de freestyle en ski.", + "example_sentence_english": "He is a freestyle skiing champion.", + "pos": "noun", + "word_frequency": 15818 + }, + { + "word": "fructueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fruitful;successful", + "example_sentence_native": "Leurs négociations ont été très fructueuses.", + "example_sentence_english": "Their negotiations were very fruitful.", + "pos": "adjective", + "word_frequency": 15819 + }, + { + "word": "fund", + "article_with_word": "le fund", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fund", + "example_sentence_native": "Le nouveau fund d'investissement a attiré de nombreux capitaux.", + "example_sentence_english": "The new investment fund attracted a lot of capital.", + "pos": "noun", + "word_frequency": 15820 + }, + { + "word": "gobelet", + "article_with_word": "le gobelet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cup;tumbler", + "example_sentence_native": "Prends un gobelet pour boire.", + "example_sentence_english": "Take a cup to drink.", + "pos": "noun", + "word_frequency": 15824 + }, + { + "word": "gourmandise", + "article_with_word": "la gourmandise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gluttony;love of good food", + "example_sentence_native": "Sa gourmandise est légendaire.", + "example_sentence_english": "His love of good food is legendary.", + "pos": "noun", + "word_frequency": 15825 + }, + { + "word": "haché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minced;chopped", + "example_sentence_native": "J'ai acheté de la viande hachée.", + "example_sentence_english": "I bought minced meat.", + "pos": "adjective", + "word_frequency": 15827 + }, + { + "word": "homogénéité", + "article_with_word": "l'homogénéité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homogeneity", + "example_sentence_native": "L'homogénéité du mélange est essentielle pour la réaction.", + "example_sentence_english": "The homogeneity of the mixture is essential for the reaction.", + "pos": "noun", + "word_frequency": 15832 + }, + { + "word": "hurlement", + "article_with_word": "le hurlement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "howl;scream", + "example_sentence_native": "On a entendu un hurlement dans la nuit.", + "example_sentence_english": "We heard a howl in the night.", + "pos": "noun", + "word_frequency": 15833 + }, + { + "word": "héroïsme", + "article_with_word": "l'héroïsme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heroism", + "example_sentence_native": "Son acte de pur héroïsme a sauvé des vies.", + "example_sentence_english": "His act of pure heroism saved lives.", + "pos": "noun", + "word_frequency": 15834 + }, + { + "word": "ibérique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Iberian", + "example_sentence_native": "La péninsule ibérique est située au sud-ouest de l'Europe.", + "example_sentence_english": "The Iberian Peninsula is located in southwestern Europe.", + "pos": "adjective", + "word_frequency": 15835 + }, + { + "word": "impair", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "odd (number);uneven", + "example_sentence_native": "Le chiffre trois est un nombre impair.", + "example_sentence_english": "The number three is an odd number.", + "pos": "adjective", + "word_frequency": 15836 + }, + { + "word": "impardonnable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unforgivable", + "example_sentence_native": "Son erreur était impardonnable.", + "example_sentence_english": "His mistake was unforgivable.", + "pos": "adjective", + "word_frequency": 15837 + }, + { + "word": "incognito", + "article_with_word": "l'incognito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incognito (state of being)", + "example_sentence_native": "Il a voyagé incognito pour éviter les journalistes.", + "example_sentence_english": "He traveled incognito to avoid journalists.", + "pos": "noun", + "word_frequency": 15838 + }, + { + "word": "incompatibilité", + "article_with_word": "l'incompatibilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incompatibility", + "example_sentence_native": "Il y a une incompatibilité entre leurs caractères.", + "example_sentence_english": "There is an incompatibility between their characters.", + "pos": "noun", + "word_frequency": 15839 + }, + { + "word": "infinité", + "article_with_word": "l'infinité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infinity", + "example_sentence_native": "L'infinité de l'univers est fascinante.", + "example_sentence_english": "The infinity of the universe is fascinating.", + "pos": "noun", + "word_frequency": 15840 + }, + { + "word": "intox", + "article_with_word": "l'intox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misinformation;fake news", + "example_sentence_native": "C'est de l'intox, ne crois pas tout ce que tu lis.", + "example_sentence_english": "It's misinformation, don't believe everything you read.", + "pos": "noun", + "word_frequency": 15842 + }, + { + "word": "intriguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to intrigue;to puzzle", + "example_sentence_native": "Cette histoire commence à m'intriguer.", + "example_sentence_english": "This story is starting to intrigue me.", + "pos": "verb", + "word_frequency": 15843 + }, + { + "word": "invite", + "article_with_word": "une invite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invitation (informal);prompt (computing)", + "example_sentence_native": "J'ai reçu une invite pour la soirée.", + "example_sentence_english": "I received an invite for the party.", + "pos": "noun", + "word_frequency": 15844 + }, + { + "word": "jaser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gossip;to chatter", + "example_sentence_native": "Les voisins aiment bien jaser sur tout le monde.", + "example_sentence_english": "The neighbors really like to gossip about everyone.", + "pos": "verb", + "word_frequency": 15846 + }, + { + "word": "laiton", + "article_with_word": "le laiton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brass", + "example_sentence_native": "La poignée de porte est en laiton.", + "example_sentence_english": "The door handle is made of brass.", + "pos": "noun", + "word_frequency": 15851 + }, + { + "word": "lange", + "article_with_word": "le lange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diaper;swaddling cloth", + "example_sentence_native": "Il faut changer le lange du bébé.", + "example_sentence_english": "We need to change the baby's diaper.", + "pos": "noun", + "word_frequency": 15853 + }, + { + "word": "lasagne", + "article_with_word": "la lasagne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lasagna", + "example_sentence_native": "J'adore manger de la lasagne.", + "example_sentence_english": "I love eating lasagna.", + "pos": "noun", + "word_frequency": 15854 + }, + { + "word": "lino", + "article_with_word": "le lino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "linoleum (informal)", + "example_sentence_native": "Le sol de la cuisine est en lino.", + "example_sentence_english": "The kitchen floor is made of linoleum.", + "pos": "noun", + "word_frequency": 15857 + }, + { + "word": "lira", + "article_with_word": "la lire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lira (currency)", + "example_sentence_native": "La lire était l'ancienne monnaie italienne.", + "example_sentence_english": "The lira was the former Italian currency.", + "pos": "noun", + "word_frequency": 15858 + }, + { + "word": "mendiant", + "article_with_word": "le mendiant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beggar", + "example_sentence_native": "Un mendiant demandait l'aumône dans la rue.", + "example_sentence_english": "A beggar was asking for alms in the street.", + "pos": "noun", + "word_frequency": 15863 + }, + { + "word": "mess", + "article_with_word": "le mess", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess hall;dining hall", + "example_sentence_native": "Nous avons déjeuné au mess des officiers.", + "example_sentence_english": "We had lunch at the officers' mess hall.", + "pos": "noun", + "word_frequency": 15864 + }, + { + "word": "miraculeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miraculous", + "example_sentence_native": "Sa guérison fut un événement miraculeux.", + "example_sentence_english": "His recovery was a miraculous event.", + "pos": "adjective", + "word_frequency": 15865 + }, + { + "word": "mob", + "article_with_word": "la mob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moped (informal)", + "example_sentence_native": "Il roulait sur sa vieille mob.", + "example_sentence_english": "He was riding his old moped.", + "pos": "noun", + "word_frequency": 15867 + }, + { + "word": "montagneux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountainous", + "example_sentence_native": "La région est très montagneuse.", + "example_sentence_english": "The region is very mountainous.", + "pos": "adjective", + "word_frequency": 15870 + }, + { + "word": "mutant", + "article_with_word": "le mutant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutant", + "example_sentence_native": "Ce personnage est un mutant avec des pouvoirs spéciaux.", + "example_sentence_english": "This character is a mutant with special powers.", + "pos": "noun", + "word_frequency": 15874 + }, + { + "word": "mutualité", + "article_with_word": "la mutualité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutuality;mutual insurance company", + "example_sentence_native": "La mutualité offre des services de santé complémentaires.", + "example_sentence_english": "The mutual insurance company offers complementary health services.", + "pos": "noun", + "word_frequency": 15875 + }, + { + "word": "météorologie", + "article_with_word": "la météorologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorology", + "example_sentence_native": "La météorologie est l'étude de l'atmosphère.", + "example_sentence_english": "Meteorology is the study of the atmosphere.", + "pos": "noun", + "word_frequency": 15876 + }, + { + "word": "ossature", + "article_with_word": "l'ossature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "framework;skeleton (structure)", + "example_sentence_native": "L'ossature du bâtiment est en acier.", + "example_sentence_english": "The framework of the building is made of steel.", + "pos": "noun", + "word_frequency": 15878 + }, + { + "word": "paranoïaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paranoid", + "example_sentence_native": "Il est devenu paranoïaque après l'incident.", + "example_sentence_english": "He became paranoid after the incident.", + "pos": "adjective", + "word_frequency": 15879 + }, + { + "word": "persuasion", + "article_with_word": "la persuasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persuasion", + "example_sentence_native": "La persuasion est une compétence clé en négociation.", + "example_sentence_english": "Persuasion is a key skill in negotiation.", + "pos": "noun", + "word_frequency": 15882 + }, + { + "word": "pigment", + "article_with_word": "le pigment", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pigment", + "example_sentence_native": "Les artistes utilisent différents pigments pour créer leurs couleurs.", + "example_sentence_english": "Artists use different pigments to create their colors.", + "pos": "noun", + "word_frequency": 15883 + }, + { + "word": "pontife", + "article_with_word": "le pontife", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontiff", + "example_sentence_native": "Le pontife a prononcé un discours devant la foule.", + "example_sentence_english": "The pontiff delivered a speech to the crowd.", + "pos": "noun", + "word_frequency": 15884 + }, + { + "word": "possesseur", + "article_with_word": "le possesseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owner;possessor", + "example_sentence_native": "Le possesseur de la voiture est responsable de son entretien.", + "example_sentence_english": "The owner of the car is responsible for its maintenance.", + "pos": "noun", + "word_frequency": 15885 + }, + { + "word": "pressant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urgent;pressing", + "example_sentence_native": "J'ai un besoin pressant de parler avec vous.", + "example_sentence_english": "I have an urgent need to speak with you.", + "pos": "adjective", + "word_frequency": 15886 + }, + { + "word": "primer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take precedence;to prime", + "example_sentence_native": "La sécurité doit toujours primer sur la vitesse.", + "example_sentence_english": "Safety must always take precedence over speed.", + "pos": "verb", + "word_frequency": 15887 + }, + { + "word": "prussien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Prussian", + "example_sentence_native": "L'armée prussienne était réputée pour sa discipline.", + "example_sentence_english": "The Prussian army was renowned for its discipline.", + "pos": "adjective", + "word_frequency": 15888 + }, + { + "word": "pédiatrie", + "article_with_word": "la pédiatrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pediatrics", + "example_sentence_native": "Elle a choisi de se spécialiser en pédiatrie.", + "example_sentence_english": "She chose to specialize in pediatrics.", + "pos": "noun", + "word_frequency": 15890 + }, + { + "word": "pénibilité", + "article_with_word": "la pénibilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arduousness;hardship", + "example_sentence_native": "La pénibilité du travail a été reconnue par la loi.", + "example_sentence_english": "The arduousness of the work has been recognized by law.", + "pos": "noun", + "word_frequency": 15892 + }, + { + "word": "rectorat", + "article_with_word": "le rectorat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rectorate;dean's office", + "example_sentence_native": "Le rectorat a publié les résultats des examens.", + "example_sentence_english": "The rectorate published the exam results.", + "pos": "noun", + "word_frequency": 15896 + }, + { + "word": "rincer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rinse", + "example_sentence_native": "N'oubliez pas de rincer la vaisselle après l'avoir lavée.", + "example_sentence_english": "Don't forget to rinse the dishes after washing them.", + "pos": "verb", + "word_frequency": 15899 + }, + { + "word": "réformateur", + "article_with_word": "le réformateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reformer", + "example_sentence_native": "Il est considéré comme un grand réformateur social.", + "example_sentence_english": "He is considered a great social reformer.", + "pos": "noun", + "word_frequency": 15901 + }, + { + "word": "régulariser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regularize;to legalize", + "example_sentence_native": "Il doit régulariser sa situation administrative.", + "example_sentence_english": "He must regularize his administrative situation.", + "pos": "verb", + "word_frequency": 15902 + }, + { + "word": "révolutionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to revolutionize", + "example_sentence_native": "Internet a révolutionné la façon dont nous communiquons.", + "example_sentence_english": "The internet revolutionized the way we communicate.", + "pos": "verb", + "word_frequency": 15903 + }, + { + "word": "sarcasme", + "article_with_word": "le sarcasme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcasm", + "example_sentence_native": "Son commentaire était plein de sarcasme.", + "example_sentence_english": "His comment was full of sarcasm.", + "pos": "noun", + "word_frequency": 15904 + }, + { + "word": "sceller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seal", + "example_sentence_native": "Ils ont scellé l'accord avec une poignée de main.", + "example_sentence_english": "They sealed the agreement with a handshake.", + "pos": "verb", + "word_frequency": 15906 + }, + { + "word": "silicone", + "article_with_word": "le silicone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silicone", + "example_sentence_native": "Ce moule est fait en silicone alimentaire.", + "example_sentence_english": "This mold is made of food-grade silicone.", + "pos": "noun", + "word_frequency": 15907 + }, + { + "word": "soute", + "article_with_word": "la soute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hold (of a ship;plane);bunker", + "example_sentence_native": "Les bagages sont chargés dans la soute de l'avion.", + "example_sentence_english": "Luggage is loaded into the hold of the plane.", + "pos": "noun", + "word_frequency": 15908 + }, + { + "word": "status", + "article_with_word": "le status", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "status", + "example_sentence_native": "Quel est le status de votre commande ?", + "example_sentence_english": "What is the status of your order?", + "pos": "noun", + "word_frequency": 15911 + }, + { + "word": "stick", + "article_with_word": "le stick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stick;deodorant stick", + "example_sentence_native": "J'ai acheté un nouveau stick à lèvres.", + "example_sentence_english": "I bought a new lip balm (stick).", + "pos": "noun", + "word_frequency": 15914 + }, + { + "word": "stupeur", + "article_with_word": "la stupeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stupefaction;astonishment", + "example_sentence_native": "La nouvelle a été accueillie avec stupeur.", + "example_sentence_english": "The news was met with stupefaction.", + "pos": "noun", + "word_frequency": 15916 + }, + { + "word": "submerger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to submerge;to overwhelm", + "example_sentence_native": "La pluie a submergé les rues de la ville.", + "example_sentence_english": "The rain submerged the city streets.", + "pos": "verb", + "word_frequency": 15917 + }, + { + "word": "sucette", + "article_with_word": "la sucette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lollipop;pacifier", + "example_sentence_native": "Le bébé a une sucette pour se calmer.", + "example_sentence_english": "The baby has a pacifier to calm down.", + "pos": "noun", + "word_frequency": 15918 + }, + { + "word": "superstition", + "article_with_word": "la superstition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superstition", + "example_sentence_native": "Beaucoup de gens croient aux superstitions.", + "example_sentence_english": "Many people believe in superstitions.", + "pos": "noun", + "word_frequency": 15919 + }, + { + "word": "tapage", + "article_with_word": "le tapage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racket;din", + "example_sentence_native": "Le tapage nocturne est interdit dans cet immeuble.", + "example_sentence_english": "Night noise is forbidden in this building.", + "pos": "noun", + "word_frequency": 15921 + }, + { + "word": "tatouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tattoo", + "example_sentence_native": "Elle a décidé de se faire tatouer un petit cœur.", + "example_sentence_english": "She decided to get a small heart tattooed.", + "pos": "verb", + "word_frequency": 15922 + }, + { + "word": "tirailleur", + "article_with_word": "le tirailleur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skirmisher;rifleman", + "example_sentence_native": "Les tirailleurs sénégalais ont marqué l'histoire.", + "example_sentence_english": "The Senegalese riflemen made history.", + "pos": "noun", + "word_frequency": 15924 + }, + { + "word": "tolérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tolerant", + "example_sentence_native": "Il est très tolérant envers les opinions différentes.", + "example_sentence_english": "He is very tolerant of different opinions.", + "pos": "adjective", + "word_frequency": 15927 + }, + { + "word": "transe", + "article_with_word": "la transe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trance", + "example_sentence_native": "Elle est entrée en transe pendant la cérémonie.", + "example_sentence_english": "She entered a trance during the ceremony.", + "pos": "noun", + "word_frequency": 15928 + }, + { + "word": "tricot", + "article_with_word": "le tricot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knitting;knitwear", + "example_sentence_native": "Elle aime faire du tricot le soir devant la télévision.", + "example_sentence_english": "She likes to knit in the evening in front of the television.", + "pos": "noun", + "word_frequency": 15929 + }, + { + "word": "trimestriel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarterly", + "example_sentence_native": "Le rapport financier est publié sur une base trimestrielle.", + "example_sentence_english": "The financial report is published on a quarterly basis.", + "pos": "adjective", + "word_frequency": 15930 + }, + { + "word": "volatile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volatile", + "example_sentence_native": "Les prix du marché sont très volatils en ce moment.", + "example_sentence_english": "Market prices are very volatile right now.", + "pos": "adjective", + "word_frequency": 15931 + }, + { + "word": "ébranler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shake;to undermine", + "example_sentence_native": "La crise a ébranlé la confiance des investisseurs.", + "example_sentence_english": "The crisis shook investors' confidence.", + "pos": "verb", + "word_frequency": 15942 + }, + { + "word": "épicer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spice", + "example_sentence_native": "N'oubliez pas d'épicer le poulet avant de le cuire.", + "example_sentence_english": "Don't forget to spice the chicken before cooking it.", + "pos": "verb", + "word_frequency": 15943 + }, + { + "word": "accroc", + "article_with_word": "un accroc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snag;hitch;tear", + "example_sentence_native": "Il y a eu un petit accroc dans le tissu de ma chemise.", + "example_sentence_english": "There was a small snag in the fabric of my shirt.", + "pos": "noun", + "word_frequency": 15944 + }, + { + "word": "acheminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to forward;to dispatch", + "example_sentence_native": "Nous devons acheminer ces documents au plus vite.", + "example_sentence_english": "We must dispatch these documents as quickly as possible.", + "pos": "verb", + "word_frequency": 15945 + }, + { + "word": "acolyte", + "article_with_word": "un acolyte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accomplice;sidekick", + "example_sentence_native": "Le détective a interrogé le criminel et son acolyte.", + "example_sentence_english": "The detective questioned the criminal and his accomplice.", + "pos": "noun", + "word_frequency": 15946 + }, + { + "word": "agencement", + "article_with_word": "l'agencement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrangement;layout", + "example_sentence_native": "L'agencement de la cuisine est très fonctionnel.", + "example_sentence_english": "The kitchen layout is very functional.", + "pos": "noun", + "word_frequency": 15948 + }, + { + "word": "animalier", + "article_with_word": "l'animalier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal artist;photographer", + "example_sentence_native": "Ce photographe animalier est spécialisé dans les oiseaux.", + "example_sentence_english": "This animal photographer specializes in birds.", + "pos": "noun", + "word_frequency": 15950 + }, + { + "word": "asymétrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asymmetrical", + "example_sentence_native": "La conception de ce bâtiment est délibérément asymétrique.", + "example_sentence_english": "The design of this building is deliberately asymmetrical.", + "pos": "adjective", + "word_frequency": 15955 + }, + { + "word": "baptiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to baptize;to name", + "example_sentence_native": "Ils ont décidé de baptiser leur enfant Marie.", + "example_sentence_english": "They decided to name their child Marie.", + "pos": "verb", + "word_frequency": 15961 + }, + { + "word": "bavure", + "article_with_word": "une bavure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blunder;mistake (often police blunder)", + "example_sentence_native": "La police a commis une bavure lors de l'arrestation.", + "example_sentence_english": "The police made a blunder during the arrest.", + "pos": "noun", + "word_frequency": 15962 + }, + { + "word": "bestiole", + "article_with_word": "une bestiole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "critter;bug", + "example_sentence_native": "Il y a une petite bestiole qui court sur le mur.", + "example_sentence_english": "There's a little critter running on the wall.", + "pos": "noun", + "word_frequency": 15964 + }, + { + "word": "bile", + "article_with_word": "la bile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bile", + "example_sentence_native": "La bile aide à la digestion des graisses.", + "example_sentence_english": "Bile helps in the digestion of fats.", + "pos": "noun", + "word_frequency": 15966 + }, + { + "word": "bitumineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bituminous", + "example_sentence_native": "Les sables bitumineux sont une source d'énergie controversée.", + "example_sentence_english": "Bituminous sands are a controversial energy source.", + "pos": "adjective", + "word_frequency": 15967 + }, + { + "word": "blaireau", + "article_with_word": "un blaireau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "badger;idiot (slang)", + "example_sentence_native": "Un blaireau a creusé un terrier dans le jardin.", + "example_sentence_english": "A badger dug a burrow in the garden.", + "pos": "noun", + "word_frequency": 15968 + }, + { + "word": "borgne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "one-eyed", + "example_sentence_native": "Le pirate borgne avait un cache-œil.", + "example_sentence_english": "The one-eyed pirate had an eye patch.", + "pos": "adjective", + "word_frequency": 15972 + }, + { + "word": "calotte", + "article_with_word": "la calotte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skullcap;slap (on the head)", + "example_sentence_native": "Il portait une petite calotte sur la tête.", + "example_sentence_english": "He wore a small skullcap on his head.", + "pos": "noun", + "word_frequency": 15976 + }, + { + "word": "caméléon", + "article_with_word": "un caméléon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chameleon", + "example_sentence_native": "Le caméléon peut changer de couleur pour se camoufler.", + "example_sentence_english": "The chameleon can change color to camouflage itself.", + "pos": "noun", + "word_frequency": 15977 + }, + { + "word": "championne", + "article_with_word": "la championne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "champion (female)", + "example_sentence_native": "Elle est la championne du monde de tennis.", + "example_sentence_english": "She is the world tennis champion.", + "pos": "noun", + "word_frequency": 15978 + }, + { + "word": "charmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to charm;to enchant", + "example_sentence_native": "Il a réussi à charmer tout le public avec son discours.", + "example_sentence_english": "He managed to charm the entire audience with his speech.", + "pos": "verb", + "word_frequency": 15979 + }, + { + "word": "chromosome", + "article_with_word": "un chromosome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chromosome", + "example_sentence_native": "Les chromosomes contiennent notre information génétique.", + "example_sentence_english": "Chromosomes contain our genetic information.", + "pos": "noun", + "word_frequency": 15980 + }, + { + "word": "cocon", + "article_with_word": "un cocon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cocoon", + "example_sentence_native": "La chenille se transforme en papillon à l'intérieur de son cocon.", + "example_sentence_english": "The caterpillar transforms into a butterfly inside its cocoon.", + "pos": "noun", + "word_frequency": 15983 + }, + { + "word": "cocu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cuckolded", + "example_sentence_native": "Il a découvert qu'il était cocu.", + "example_sentence_english": "He discovered he was cuckolded.", + "pos": "adjective", + "word_frequency": 15984 + }, + { + "word": "collation", + "article_with_word": "une collation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snack;light meal", + "example_sentence_native": "Les enfants prennent une collation après l'école.", + "example_sentence_english": "The children have a snack after school.", + "pos": "noun", + "word_frequency": 15985 + }, + { + "word": "consistoire", + "article_with_word": "un consistoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consistory", + "example_sentence_native": "Le consistoire est une assemblée ecclésiastique.", + "example_sentence_english": "The consistory is an ecclesiastical assembly.", + "pos": "noun", + "word_frequency": 15988 + }, + { + "word": "contrarier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annoy;to thwart;to upset", + "example_sentence_native": "Ses remarques ont eu tendance à me contrarier.", + "example_sentence_english": "His remarks tended to annoy me.", + "pos": "verb", + "word_frequency": 15989 + }, + { + "word": "contrebas", + "article_with_word": "le contrebas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "below;down below (often in 'en contrebas')", + "example_sentence_native": "La maison est située en contrebas de la colline.", + "example_sentence_english": "The house is located down below the hill.", + "pos": "noun", + "word_frequency": 15990 + }, + { + "word": "coordonnateur", + "article_with_word": "un coordonnateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordinator", + "example_sentence_native": "Il a été nommé coordonnateur du projet.", + "example_sentence_english": "He was appointed project coordinator.", + "pos": "noun", + "word_frequency": 15991 + }, + { + "word": "croustillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crispy;crunchy;juicy (informal;for news)", + "example_sentence_native": "Les frites étaient délicieusement croustillantes.", + "example_sentence_english": "The fries were deliciously crispy.", + "pos": "adjective", + "word_frequency": 15995 + }, + { + "word": "custom", + "article_with_word": "le custom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custom (as in custom-made;or a custom motorcycle)", + "example_sentence_native": "Il a acheté une moto custom.", + "example_sentence_english": "He bought a custom motorcycle.", + "pos": "noun", + "word_frequency": 15996 + }, + { + "word": "destituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismiss;to depose", + "example_sentence_native": "Le conseil a voté pour destituer le président.", + "example_sentence_english": "The council voted to dismiss the president.", + "pos": "verb", + "word_frequency": 16000 + }, + { + "word": "detective", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detective", + "example_sentence_native": "Le détective a résolu l'affaire.", + "example_sentence_english": "The detective solved the case.", + "pos": "noun", + "word_frequency": 16001 + }, + { + "word": "dilatation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilation", + "example_sentence_native": "La dilatation des pupilles est un signe.", + "example_sentence_english": "Pupil dilation is a sign.", + "pos": "noun", + "word_frequency": 16004 + }, + { + "word": "dissocier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissociate;to separate", + "example_sentence_native": "Il est difficile de dissocier les faits des opinions.", + "example_sentence_english": "It is difficult to dissociate facts from opinions.", + "pos": "verb", + "word_frequency": 16007 + }, + { + "word": "douillet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cozy;snug;soft", + "example_sentence_native": "Ce canapé est très douillet.", + "example_sentence_english": "This sofa is very cozy.", + "pos": "adjective", + "word_frequency": 16009 + }, + { + "word": "déformer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deform;to distort", + "example_sentence_native": "La chaleur peut déformer le plastique.", + "example_sentence_english": "Heat can deform plastic.", + "pos": "verb", + "word_frequency": 16012 + }, + { + "word": "dépouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strip;to count (votes);to plunder", + "example_sentence_native": "Ils ont dépouillé les votes après l'élection.", + "example_sentence_english": "They counted the votes after the election.", + "pos": "verb", + "word_frequency": 16013 + }, + { + "word": "dépêcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dispatch;to hurry (se dépêcher)", + "example_sentence_native": "Il faut se dépêcher si on veut arriver à l'heure.", + "example_sentence_english": "We must hurry if we want to arrive on time.", + "pos": "verb", + "word_frequency": 16014 + }, + { + "word": "désillusion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disillusionment", + "example_sentence_native": "La désillusion était grande après l'échec du projet.", + "example_sentence_english": "The disillusionment was great after the project's failure.", + "pos": "noun", + "word_frequency": 16015 + }, + { + "word": "désirable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desirable", + "example_sentence_native": "C'est une qualité très désirable.", + "example_sentence_english": "It's a very desirable quality.", + "pos": "adjective", + "word_frequency": 16016 + }, + { + "word": "fabriquant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manufacturer;maker", + "example_sentence_native": "Le fabriquant de voitures a annoncé de nouveaux modèles.", + "example_sentence_english": "The car manufacturer announced new models.", + "pos": "noun", + "word_frequency": 16019 + }, + { + "word": "ferraille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrap metal;junk", + "example_sentence_native": "Il a vendu sa vieille voiture à la ferraille.", + "example_sentence_english": "He sold his old car for scrap metal.", + "pos": "noun", + "word_frequency": 16021 + }, + { + "word": "fourbe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deceitful;treacherous", + "example_sentence_native": "C'est un homme fourbe, ne lui fais pas confiance.", + "example_sentence_english": "He is a deceitful man, don't trust him.", + "pos": "adjective", + "word_frequency": 16023 + }, + { + "word": "friction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friction", + "example_sentence_native": "Il y a eu des frictions entre les deux équipes.", + "example_sentence_english": "There was friction between the two teams.", + "pos": "noun", + "word_frequency": 16025 + }, + { + "word": "fuel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel", + "example_sentence_native": "Le prix du fuel a augmenté.", + "example_sentence_english": "The price of fuel has increased.", + "pos": "noun", + "word_frequency": 16026 + }, + { + "word": "fulgurant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dazzling;lightning-fast;sudden", + "example_sentence_native": "Son ascension a été fulgurante.", + "example_sentence_english": "His rise was dazzling.", + "pos": "adjective", + "word_frequency": 16027 + }, + { + "word": "fève", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bean (broad bean);charm (in galette des rois)", + "example_sentence_native": "J'ai trouvé la fève dans la galette des rois.", + "example_sentence_english": "I found the charm in the king's cake.", + "pos": "noun", + "word_frequency": 16028 + }, + { + "word": "fédéraliste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federalist", + "example_sentence_native": "Il est un ardent fédéraliste.", + "example_sentence_english": "He is an ardent federalist.", + "pos": "noun", + "word_frequency": 16029 + }, + { + "word": "garniture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garnish;trim;filling", + "example_sentence_native": "La garniture de cette tarte est délicieuse.", + "example_sentence_english": "The filling of this tart is delicious.", + "pos": "noun", + "word_frequency": 16030 + }, + { + "word": "girafe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "giraffe", + "example_sentence_native": "La girafe a un très long cou.", + "example_sentence_english": "The giraffe has a very long neck.", + "pos": "noun", + "word_frequency": 16032 + }, + { + "word": "granite", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "granite", + "example_sentence_native": "Le plan de travail est en granite.", + "example_sentence_english": "The countertop is made of granite.", + "pos": "noun", + "word_frequency": 16035 + }, + { + "word": "gynécologue", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gynecologist", + "example_sentence_native": "Elle a rendez-vous chez le gynécologue.", + "example_sentence_english": "She has an appointment with the gynecologist.", + "pos": "noun", + "word_frequency": 16038 + }, + { + "word": "harmoniser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harmonize;to reconcile", + "example_sentence_native": "Il faut harmoniser les différentes approches.", + "example_sentence_english": "We need to harmonize the different approaches.", + "pos": "verb", + "word_frequency": 16039 + }, + { + "word": "helvétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Swiss", + "example_sentence_native": "La Confédération helvétique est le nom officiel de la Suisse.", + "example_sentence_english": "The Helvetic Confederation is the official name of Switzerland.", + "pos": "adjective", + "word_frequency": 16042 + }, + { + "word": "hétérogène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterogeneous", + "example_sentence_native": "Le groupe était très hétérogène, avec des personnes de tous âges.", + "example_sentence_english": "The group was very heterogeneous, with people of all ages.", + "pos": "adjective", + "word_frequency": 16045 + }, + { + "word": "immoral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immoral", + "example_sentence_native": "Ses actions étaient considérées comme immorales par la communauté.", + "example_sentence_english": "His actions were considered immoral by the community.", + "pos": "adjective", + "word_frequency": 16047 + }, + { + "word": "inculpation", + "article_with_word": "l'inculpation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indictment;charge", + "example_sentence_native": "L'inculpation a été prononcée après des mois d'enquête.", + "example_sentence_english": "The indictment was pronounced after months of investigation.", + "pos": "noun", + "word_frequency": 16048 + }, + { + "word": "infirme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infirm;disabled", + "example_sentence_native": "Il a aidé la personne infirme à traverser la rue.", + "example_sentence_english": "He helped the disabled person cross the street.", + "pos": "adjective", + "word_frequency": 16049 + }, + { + "word": "infusion", + "article_with_word": "une infusion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infusion;herbal tea", + "example_sentence_native": "Je prends une infusion de camomille avant de dormir.", + "example_sentence_english": "I drink a chamomile infusion before sleeping.", + "pos": "noun", + "word_frequency": 16050 + }, + { + "word": "ingéniosité", + "article_with_word": "l'ingéniosité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ingenuity", + "example_sentence_native": "Son ingéniosité lui a permis de résoudre le problème complexe.", + "example_sentence_english": "His ingenuity allowed him to solve the complex problem.", + "pos": "noun", + "word_frequency": 16051 + }, + { + "word": "inhumé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buried;interred", + "example_sentence_native": "Le corps a été inhumé dans le cimetière familial.", + "example_sentence_english": "The body was interred in the family cemetery.", + "pos": "adjective", + "word_frequency": 16052 + }, + { + "word": "inlassablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tirelessly", + "example_sentence_native": "Il a travaillé inlassablement pour atteindre son objectif.", + "example_sentence_english": "He worked tirelessly to achieve his goal.", + "pos": "adverb", + "word_frequency": 16053 + }, + { + "word": "inox", + "article_with_word": "l'inox", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stainless steel", + "example_sentence_native": "La cuisine est équipée d'appareils en inox.", + "example_sentence_english": "The kitchen is equipped with stainless steel appliances.", + "pos": "noun", + "word_frequency": 16054 + }, + { + "word": "insaisissable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elusive;intangible", + "example_sentence_native": "La vérité semblait insaisissable malgré toutes les recherches.", + "example_sentence_english": "The truth seemed elusive despite all the research.", + "pos": "adjective", + "word_frequency": 16055 + }, + { + "word": "insouciance", + "article_with_word": "l'insouciance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefreeness;heedlessness", + "example_sentence_native": "Son insouciance face au danger était surprenante.", + "example_sentence_english": "His heedlessness in the face of danger was surprising.", + "pos": "noun", + "word_frequency": 16056 + }, + { + "word": "intellectuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectually", + "example_sentence_native": "Il est très stimulé intellectuellement par son nouveau travail.", + "example_sentence_english": "He is very stimulated intellectually by his new job.", + "pos": "adverb", + "word_frequency": 16057 + }, + { + "word": "intuitif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuitive", + "example_sentence_native": "Son approche du problème était très intuitive.", + "example_sentence_english": "His approach to the problem was very intuitive.", + "pos": "adjective", + "word_frequency": 16058 + }, + { + "word": "irrationnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrational", + "example_sentence_native": "Il a eu une peur irrationnelle des araignées.", + "example_sentence_english": "He had an irrational fear of spiders.", + "pos": "adjective", + "word_frequency": 16059 + }, + { + "word": "jante", + "article_with_word": "une jante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rim (of a wheel)", + "example_sentence_native": "La jante de la roue est endommagée.", + "example_sentence_english": "The wheel rim is damaged.", + "pos": "noun", + "word_frequency": 16062 + }, + { + "word": "lunch", + "article_with_word": "le lunch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lunch", + "example_sentence_native": "Nous avons pris un rapide lunch au bureau.", + "example_sentence_english": "We had a quick lunch at the office.", + "pos": "noun", + "word_frequency": 16071 + }, + { + "word": "maintenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintained;kept", + "example_sentence_native": "Le niveau de sécurité a été maintenu élevé.", + "example_sentence_english": "The security level has been maintained high.", + "pos": "adjective", + "word_frequency": 16073 + }, + { + "word": "maçonnique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Masonic", + "example_sentence_native": "Il a étudié les symboles maçonniques.", + "example_sentence_english": "He studied the Masonic symbols.", + "pos": "adjective", + "word_frequency": 16075 + }, + { + "word": "monoprix", + "article_with_word": "un Monoprix", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Monoprix (supermarket chain)", + "example_sentence_native": "Je dois aller faire des courses à Monoprix.", + "example_sentence_english": "I need to go grocery shopping at Monoprix.", + "pos": "noun", + "word_frequency": 16079 + }, + { + "word": "médicinal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medicinal", + "example_sentence_native": "Cette plante a des propriétés médicinales.", + "example_sentence_english": "This plant has medicinal properties.", + "pos": "adjective", + "word_frequency": 16081 + }, + { + "word": "méduse", + "article_with_word": "la méduse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jellyfish", + "example_sentence_native": "Attention aux méduses quand vous nagez dans la mer.", + "example_sentence_english": "Beware of jellyfish when you swim in the sea.", + "pos": "noun", + "word_frequency": 16082 + }, + { + "word": "nectar", + "article_with_word": "le nectar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nectar", + "example_sentence_native": "Les abeilles récoltent le nectar des fleurs.", + "example_sentence_english": "Bees collect nectar from flowers.", + "pos": "noun", + "word_frequency": 16083 + }, + { + "word": "niqab", + "article_with_word": "le niqab", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "niqab", + "example_sentence_native": "Le port du niqab est un sujet de débat dans certains pays.", + "example_sentence_english": "Wearing the niqab is a subject of debate in some countries.", + "pos": "noun", + "word_frequency": 16085 + }, + { + "word": "nonce", + "article_with_word": "le nonce", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "nonce (papal nuncio)", + "example_sentence_native": "Le nonce apostolique est le représentant diplomatique du Pape.", + "example_sentence_english": "The apostolic nuncio is the diplomatic representative of the Pope.", + "pos": "noun", + "word_frequency": 16086 + }, + { + "word": "ocre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ocher", + "example_sentence_native": "Les maisons de cette région sont souvent de couleur ocre.", + "example_sentence_english": "The houses in this region are often ocher in color.", + "pos": "adjective", + "word_frequency": 16090 + }, + { + "word": "orchestrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to orchestrate", + "example_sentence_native": "Il a orchestré toute la campagne publicitaire.", + "example_sentence_english": "He orchestrated the entire advertising campaign.", + "pos": "verb", + "word_frequency": 16091 + }, + { + "word": "ovation", + "article_with_word": "une ovation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ovation", + "example_sentence_native": "L'artiste a reçu une ovation debout après sa performance.", + "example_sentence_english": "The artist received a standing ovation after his performance.", + "pos": "noun", + "word_frequency": 16092 + }, + { + "word": "pacifiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peacefully", + "example_sentence_native": "Ils ont manifesté pacifiquement dans les rues.", + "example_sentence_english": "They demonstrated peacefully in the streets.", + "pos": "adverb", + "word_frequency": 16094 + }, + { + "word": "palliatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palliative", + "example_sentence_native": "Ce traitement est seulement palliatif, pas curatif.", + "example_sentence_english": "This treatment is only palliative, not curative.", + "pos": "adjective", + "word_frequency": 16095 + }, + { + "word": "parachutiste", + "article_with_word": "le parachutiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parachutist", + "example_sentence_native": "Le parachutiste a atterri en toute sécurité.", + "example_sentence_english": "The parachutist landed safely.", + "pos": "noun", + "word_frequency": 16096 + }, + { + "word": "passionnément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionately", + "example_sentence_native": "Il joue du piano passionnément.", + "example_sentence_english": "He plays the piano passionately.", + "pos": "adverb", + "word_frequency": 16097 + }, + { + "word": "pellerin", + "article_with_word": "le pèlerin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrim", + "example_sentence_native": "Les pèlerins se dirigent vers Saint-Jacques-de-Compostelle.", + "example_sentence_english": "The pilgrims are heading towards Santiago de Compostela.", + "pos": "noun", + "word_frequency": 16098 + }, + { + "word": "penché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leaning;tilted", + "example_sentence_native": "La Tour de Pise est penchée.", + "example_sentence_english": "The Leaning Tower of Pisa is tilted.", + "pos": "adjective", + "word_frequency": 16099 + }, + { + "word": "perfide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perfidious;treacherous", + "example_sentence_native": "Ses paroles étaient perfides et trompeuses.", + "example_sentence_english": "His words were perfidious and deceitful.", + "pos": "adjective", + "word_frequency": 16100 + }, + { + "word": "personnalisation", + "article_with_word": "la personnalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "personalization", + "example_sentence_native": "La personnalisation des produits est très demandée.", + "example_sentence_english": "Product personalization is highly demanded.", + "pos": "noun", + "word_frequency": 16102 + }, + { + "word": "persévérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persevere", + "example_sentence_native": "Il faut persévérer pour atteindre ses objectifs.", + "example_sentence_english": "One must persevere to achieve one's goals.", + "pos": "verb", + "word_frequency": 16103 + }, + { + "word": "piger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get it;to understand (slang)", + "example_sentence_native": "Tu as pigé ce que je voulais dire ?", + "example_sentence_english": "Did you get what I meant?", + "pos": "verb", + "word_frequency": 16104 + }, + { + "word": "poignant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poignant;moving", + "example_sentence_native": "C'était un film poignant qui m'a beaucoup touché.", + "example_sentence_english": "It was a poignant film that deeply moved me.", + "pos": "adjective", + "word_frequency": 16106 + }, + { + "word": "probation", + "article_with_word": "la probation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probation", + "example_sentence_native": "Il a été libéré sous probation après sa peine.", + "example_sentence_english": "He was released on probation after his sentence.", + "pos": "noun", + "word_frequency": 16107 + }, + { + "word": "prévôt", + "article_with_word": "le prévôt", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "provost;warden", + "example_sentence_native": "Le prévôt était responsable de l'ordre dans la ville médiévale.", + "example_sentence_english": "The provost was responsible for order in the medieval city.", + "pos": "noun", + "word_frequency": 16109 + }, + { + "word": "quiétude", + "article_with_word": "la quiétude", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tranquility;peacefulness", + "example_sentence_native": "Elle cherchait la quiétude de la campagne.", + "example_sentence_english": "She sought the tranquility of the countryside.", + "pos": "noun", + "word_frequency": 16110 + }, + { + "word": "raisonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasoned;rational", + "example_sentence_native": "Il a présenté une analyse raisonnée de la situation.", + "example_sentence_english": "He presented a reasoned analysis of the situation.", + "pos": "adjective", + "word_frequency": 16111 + }, + { + "word": "replonger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dive back in;to plunge back", + "example_sentence_native": "Après les vacances, il a dû replonger dans le travail.", + "example_sentence_english": "After the holidays, he had to dive back into work.", + "pos": "verb", + "word_frequency": 16115 + }, + { + "word": "root", + "article_with_word": "la root", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "root (computing)", + "example_sentence_native": "L'utilisateur 'root' a tous les droits sur le système.", + "example_sentence_english": "The 'root' user has all rights on the system.", + "pos": "noun", + "word_frequency": 16116 + }, + { + "word": "récapitulatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summary;recapitulative", + "example_sentence_native": "Veuillez trouver ci-joint le tableau récapitulatif des dépenses.", + "example_sentence_english": "Please find attached the summary table of expenses.", + "pos": "adjective", + "word_frequency": 16118 + }, + { + "word": "référent", + "article_with_word": "le référent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referent;contact person", + "example_sentence_native": "Votre référent pédagogique peut vous aider avec vos questions.", + "example_sentence_english": "Your pedagogical referent can help you with your questions.", + "pos": "noun", + "word_frequency": 16119 + }, + { + "word": "répondant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respondent", + "example_sentence_native": "Le répondant a fourni toutes les informations nécessaires.", + "example_sentence_english": "The respondent provided all the necessary information.", + "pos": "noun", + "word_frequency": 16120 + }, + { + "word": "réunionnais", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Réunion Islander", + "example_sentence_native": "Un Réunionnais est fier de sa culture.", + "example_sentence_english": "A Réunion Islander is proud of their culture.", + "pos": "noun", + "word_frequency": 16121 + }, + { + "word": "salve", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volley;salvo", + "example_sentence_native": "Une salve d'applaudissements a retenti dans la salle.", + "example_sentence_english": "A round of applause echoed in the hall.", + "pos": "noun", + "word_frequency": 16123 + }, + { + "word": "scrupuleusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scrupulously", + "example_sentence_native": "Il a suivi les instructions scrupuleusement.", + "example_sentence_english": "He followed the instructions scrupulously.", + "pos": "adverb", + "word_frequency": 16124 + }, + { + "word": "secousse", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jolt;shock", + "example_sentence_native": "Nous avons ressenti une forte secousse.", + "example_sentence_english": "We felt a strong jolt.", + "pos": "noun", + "word_frequency": 16125 + }, + { + "word": "selection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selection", + "example_sentence_native": "La sélection des candidats est rigoureuse.", + "example_sentence_english": "The selection of candidates is rigorous.", + "pos": "noun", + "word_frequency": 16126 + }, + { + "word": "seringue", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syringe", + "example_sentence_native": "L'infirmière a préparé la seringue.", + "example_sentence_english": "The nurse prepared the syringe.", + "pos": "noun", + "word_frequency": 16127 + }, + { + "word": "sinus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sinus", + "example_sentence_native": "J'ai une infection des sinus.", + "example_sentence_english": "I have a sinus infection.", + "pos": "noun", + "word_frequency": 16129 + }, + { + "word": "slovène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovenian", + "example_sentence_native": "La cuisine slovène est délicieuse.", + "example_sentence_english": "Slovenian cuisine is delicious.", + "pos": "adjective", + "word_frequency": 16130 + }, + { + "word": "snap", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snap (photo;message)", + "example_sentence_native": "Il a envoyé un snap à ses amis.", + "example_sentence_english": "He sent a snap to his friends.", + "pos": "noun", + "word_frequency": 16131 + }, + { + "word": "soudé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welded;close-knit", + "example_sentence_native": "C'est une équipe très soudée.", + "example_sentence_english": "It's a very close-knit team.", + "pos": "adjective", + "word_frequency": 16132 + }, + { + "word": "stellaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stellar", + "example_sentence_native": "On observe des phénomènes stellaires.", + "example_sentence_english": "We observe stellar phenomena.", + "pos": "adjective", + "word_frequency": 16135 + }, + { + "word": "surplomber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overlook;to overhang", + "example_sentence_native": "La falaise surplombe la mer.", + "example_sentence_english": "The cliff overlooks the sea.", + "pos": "verb", + "word_frequency": 16138 + }, + { + "word": "tinter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tinkle;to chime", + "example_sentence_native": "Les cloches ont commencé à tinter.", + "example_sentence_english": "The bells began to tinkle.", + "pos": "verb", + "word_frequency": 16142 + }, + { + "word": "tique", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tick (insect)", + "example_sentence_native": "Attention aux tiques dans la forêt.", + "example_sentence_english": "Beware of ticks in the forest.", + "pos": "noun", + "word_frequency": 16143 + }, + { + "word": "torride", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torrid;scorching", + "example_sentence_native": "Le climat est torride en été.", + "example_sentence_english": "The climate is torrid in summer.", + "pos": "adjective", + "word_frequency": 16144 + }, + { + "word": "totaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to total;to amount to", + "example_sentence_native": "Les ventes ont totalisé un million d'euros.", + "example_sentence_english": "Sales totaled one million euros.", + "pos": "verb", + "word_frequency": 16145 + }, + { + "word": "travesti", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transvestite;person in disguise", + "example_sentence_native": "Il est apparu en travesti pour la fête.", + "example_sentence_english": "He appeared as a transvestite for the party.", + "pos": "noun", + "word_frequency": 16146 + }, + { + "word": "truffe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truffle;snout", + "example_sentence_native": "J'adore les pâtes à la truffe.", + "example_sentence_english": "I love truffle pasta.", + "pos": "noun", + "word_frequency": 16148 + }, + { + "word": "unilatéralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unilaterally", + "example_sentence_native": "La décision a été prise unilatéralement.", + "example_sentence_english": "The decision was made unilaterally.", + "pos": "adverb", + "word_frequency": 16149 + }, + { + "word": "uruguayen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Uruguayan", + "example_sentence_native": "Le football uruguayen est très populaire.", + "example_sentence_english": "Uruguayan football is very popular.", + "pos": "adjective", + "word_frequency": 16150 + }, + { + "word": "viola", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viola", + "example_sentence_native": "Elle joue de la viola dans l'orchestre.", + "example_sentence_english": "She plays the viola in the orchestra.", + "pos": "noun", + "word_frequency": 16151 + }, + { + "word": "violé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violated", + "example_sentence_native": "Les droits de l'homme ont été violés.", + "example_sentence_english": "Human rights have been violated.", + "pos": "adjective", + "word_frequency": 16152 + }, + { + "word": "vraisemblance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "likelihood;plausibility", + "example_sentence_native": "L'histoire manque de vraisemblance.", + "example_sentence_english": "The story lacks plausibility.", + "pos": "noun", + "word_frequency": 16155 + }, + { + "word": "xénophobie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "xenophobia", + "example_sentence_native": "La xénophobie est un problème social.", + "example_sentence_english": "Xenophobia is a social problem.", + "pos": "noun", + "word_frequency": 16159 + }, + { + "word": "écume", + "article_with_word": "l’écume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foam;froth", + "example_sentence_native": "L'écume des vagues s'écrasait sur le rivage.", + "example_sentence_english": "The foam of the waves crashed on the shore.", + "pos": "noun", + "word_frequency": 16161 + }, + { + "word": "édité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edited;published", + "example_sentence_native": "Le livre a été édité l'année dernière.", + "example_sentence_english": "The book was published last year.", + "pos": "adjective", + "word_frequency": 16162 + }, + { + "word": "épi", + "article_with_word": "l’épi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ear (of corn;wheat);spike", + "example_sentence_native": "Les épis de blé étaient dorés sous le soleil.", + "example_sentence_english": "The ears of wheat were golden under the sun.", + "pos": "noun", + "word_frequency": 16163 + }, + { + "word": "épicier", + "article_with_word": "l’épicier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grocer", + "example_sentence_native": "J'ai acheté du pain chez l'épicier du coin.", + "example_sentence_english": "I bought bread at the corner grocer's.", + "pos": "noun", + "word_frequency": 16164 + }, + { + "word": "épiderme", + "article_with_word": "l’épiderme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epidermis", + "example_sentence_native": "L'épiderme est la couche externe de la peau.", + "example_sentence_english": "The epidermis is the outer layer of the skin.", + "pos": "noun", + "word_frequency": 16165 + }, + { + "word": "étirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stretch", + "example_sentence_native": "Il faut s'étirer avant de faire du sport.", + "example_sentence_english": "You should stretch before exercising.", + "pos": "verb", + "word_frequency": 16166 + }, + { + "word": "étouffé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stifled;muffled", + "example_sentence_native": "Le son était étouffé par les murs épais.", + "example_sentence_english": "The sound was muffled by the thick walls.", + "pos": "adjective", + "word_frequency": 16167 + }, + { + "word": "évaporation", + "article_with_word": "l’évaporation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaporation", + "example_sentence_native": "L'évaporation de l'eau est un phénomène naturel.", + "example_sentence_english": "The evaporation of water is a natural phenomenon.", + "pos": "noun", + "word_frequency": 16168 + }, + { + "word": "ablation", + "article_with_word": "l’ablation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ablation;removal", + "example_sentence_native": "Le patient a subi une ablation de la tumeur.", + "example_sentence_english": "The patient underwent an ablation of the tumor.", + "pos": "noun", + "word_frequency": 16169 + }, + { + "word": "acompte", + "article_with_word": "l’acompte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down payment;deposit", + "example_sentence_native": "Nous avons versé un acompte pour la réservation.", + "example_sentence_english": "We paid a deposit for the reservation.", + "pos": "noun", + "word_frequency": 16170 + }, + { + "word": "addict", + "article_with_word": "un addict", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addict", + "example_sentence_native": "Il est devenu un addict aux jeux vidéo.", + "example_sentence_english": "He became a video game addict.", + "pos": "noun", + "word_frequency": 16171 + }, + { + "word": "aid", + "article_with_word": "l’Aïd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eid (Islamic festival)", + "example_sentence_native": "Les musulmans célèbrent l'Aïd après le Ramadan.", + "example_sentence_english": "Muslims celebrate Eid after Ramadan.", + "pos": "noun", + "word_frequency": 16174 + }, + { + "word": "amidon", + "article_with_word": "l’amidon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starch", + "example_sentence_native": "Les pommes de terre sont riches en amidon.", + "example_sentence_english": "Potatoes are rich in starch.", + "pos": "noun", + "word_frequency": 16180 + }, + { + "word": "amnésie", + "article_with_word": "l’amnésie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amnesia", + "example_sentence_native": "Après l'accident, il a souffert d'amnésie temporaire.", + "example_sentence_english": "After the accident, he suffered from temporary amnesia.", + "pos": "noun", + "word_frequency": 16181 + }, + { + "word": "amusé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "amused", + "example_sentence_native": "Elle avait l'air amusée par la blague.", + "example_sentence_english": "She looked amused by the joke.", + "pos": "adjective", + "word_frequency": 16182 + }, + { + "word": "ancestral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestral", + "example_sentence_native": "C'est une tradition ancestrale de la région.", + "example_sentence_english": "It's an ancestral tradition of the region.", + "pos": "adjective", + "word_frequency": 16183 + }, + { + "word": "annexé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annexed", + "example_sentence_native": "Le territoire a été annexé après la guerre.", + "example_sentence_english": "The territory was annexed after the war.", + "pos": "adjective", + "word_frequency": 16185 + }, + { + "word": "appendice", + "article_with_word": "l’appendice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appendix", + "example_sentence_native": "L'appendice est une petite excroissance de l'intestin.", + "example_sentence_english": "The appendix is a small outgrowth of the intestine.", + "pos": "noun", + "word_frequency": 16186 + }, + { + "word": "arriere", + "article_with_word": "l’arrière", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back;rear", + "example_sentence_native": "Il est monté à l'arrière de la voiture.", + "example_sentence_english": "He got in the back of the car.", + "pos": "noun", + "word_frequency": 16188 + }, + { + "word": "bachelor", + "article_with_word": "le bachelor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bachelor's degree", + "example_sentence_native": "Il prépare un bachelor en commerce international.", + "example_sentence_english": "He is preparing a bachelor's degree in international business.", + "pos": "noun", + "word_frequency": 16191 + }, + { + "word": "balistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ballistic", + "example_sentence_native": "Les experts ont analysé la trajectoire balistique du projectile.", + "example_sentence_english": "Experts analyzed the ballistic trajectory of the projectile.", + "pos": "adjective", + "word_frequency": 16192 + }, + { + "word": "bergère", + "article_with_word": "la bergère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armchair", + "example_sentence_native": "Elle s'est assise confortablement dans la bergère.", + "example_sentence_english": "She sat comfortably in the armchair.", + "pos": "noun", + "word_frequency": 16194 + }, + { + "word": "bouleau", + "article_with_word": "le bouleau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birch (tree)", + "example_sentence_native": "Le bouleau a une écorce blanche caractéristique.", + "example_sentence_english": "The birch has a characteristic white bark.", + "pos": "noun", + "word_frequency": 16198 + }, + { + "word": "breveter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to patent", + "example_sentence_native": "Il a décidé de breveter son invention pour la protéger.", + "example_sentence_english": "He decided to patent his invention to protect it.", + "pos": "verb", + "word_frequency": 16201 + }, + { + "word": "catho", + "article_with_word": "un catho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catholic (informal)", + "example_sentence_native": "Il est un peu catho, mais très ouvert d'esprit.", + "example_sentence_english": "He's a bit Catholic, but very open-minded.", + "pos": "noun", + "word_frequency": 16208 + }, + { + "word": "chapelet", + "article_with_word": "un chapelet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosary;string of beads", + "example_sentence_native": "Elle priait avec son chapelet tous les soirs.", + "example_sentence_english": "She prayed with her rosary every evening.", + "pos": "noun", + "word_frequency": 16209 + }, + { + "word": "chausson", + "article_with_word": "un chausson", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slipper;pastry turnover", + "example_sentence_native": "J'ai mis mes chaussons pour me détendre à la maison.", + "example_sentence_english": "I put on my slippers to relax at home.", + "pos": "noun", + "word_frequency": 16210 + }, + { + "word": "cintre", + "article_with_word": "un cintre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hanger", + "example_sentence_native": "Accroche ta chemise sur un cintre pour éviter les plis.", + "example_sentence_english": "Hang your shirt on a hanger to avoid wrinkles.", + "pos": "noun", + "word_frequency": 16211 + }, + { + "word": "claquement", + "article_with_word": "un claquement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clapping;slamming;clicking", + "example_sentence_native": "J'ai entendu un claquement de porte dans le couloir.", + "example_sentence_english": "I heard a door slamming in the hallway.", + "pos": "noun", + "word_frequency": 16213 + }, + { + "word": "codex", + "article_with_word": "un codex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "codex", + "example_sentence_native": "Le codex médiéval était magnifiquement enluminé.", + "example_sentence_english": "The medieval codex was beautifully illuminated.", + "pos": "noun", + "word_frequency": 16215 + }, + { + "word": "compatir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sympathize", + "example_sentence_native": "Je compatis sincèrement à votre douleur.", + "example_sentence_english": "I sincerely sympathize with your pain.", + "pos": "verb", + "word_frequency": 16217 + }, + { + "word": "condescendance", + "article_with_word": "la condescendance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "condescension", + "example_sentence_native": "Son attitude de condescendance était très agaçante.", + "example_sentence_english": "His condescending attitude was very annoying.", + "pos": "noun", + "word_frequency": 16218 + }, + { + "word": "confident", + "article_with_word": "un confident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidant", + "example_sentence_native": "Elle est ma meilleure amie et ma confidente.", + "example_sentence_english": "She is my best friend and my confidant.", + "pos": "noun", + "word_frequency": 16219 + }, + { + "word": "contenance", + "article_with_word": "la contenance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capacity;composure;demeanor", + "example_sentence_native": "Il a gardé sa contenance malgré la mauvaise nouvelle.", + "example_sentence_english": "He kept his composure despite the bad news.", + "pos": "noun", + "word_frequency": 16220 + }, + { + "word": "creer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to create", + "example_sentence_native": "Nous allons créer un nouveau site web.", + "example_sentence_english": "We are going to create a new website.", + "pos": "verb", + "word_frequency": 16221 + }, + { + "word": "cyclique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyclic", + "example_sentence_native": "Les saisons suivent un mouvement cyclique.", + "example_sentence_english": "Seasons follow a cyclic movement.", + "pos": "adjective", + "word_frequency": 16222 + }, + { + "word": "debat", + "article_with_word": "un débat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debate", + "example_sentence_native": "Le débat sur l'environnement est très animé.", + "example_sentence_english": "The debate on the environment is very lively.", + "pos": "noun", + "word_frequency": 16223 + }, + { + "word": "deco", + "article_with_word": "la déco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decoration (informal)", + "example_sentence_native": "J'adore la déco de ton appartement, c'est très moderne.", + "example_sentence_english": "I love the decoration of your apartment, it's very modern.", + "pos": "noun", + "word_frequency": 16224 + }, + { + "word": "dissension", + "article_with_word": "la dissension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissension", + "example_sentence_native": "Des dissensions sont apparues au sein de l'équipe.", + "example_sentence_english": "Dissensions appeared within the team.", + "pos": "noun", + "word_frequency": 16225 + }, + { + "word": "drag", + "article_with_word": "le drag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drag (as in drag queen;king)", + "example_sentence_native": "Le spectacle de drag était plein d'énergie et de créativité.", + "example_sentence_english": "The drag show was full of energy and creativity.", + "pos": "noun", + "word_frequency": 16227 + }, + { + "word": "décorateur", + "article_with_word": "un décorateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorator", + "example_sentence_native": "Nous avons engagé un décorateur pour refaire notre salon.", + "example_sentence_english": "We hired a decorator to redecorate our living room.", + "pos": "noun", + "word_frequency": 16229 + }, + { + "word": "déloger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dislodge;to evict", + "example_sentence_native": "Il a fallu déloger l'oiseau du conduit de cheminée.", + "example_sentence_english": "We had to dislodge the bird from the chimney flue.", + "pos": "verb", + "word_frequency": 16230 + }, + { + "word": "démasquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unmask;to expose", + "example_sentence_native": "La police a réussi à démasquer le réseau de fraude.", + "example_sentence_english": "The police managed to unmask the fraud network.", + "pos": "verb", + "word_frequency": 16231 + }, + { + "word": "démissionnaire", + "article_with_word": "un démissionnaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resigning person;resignee", + "example_sentence_native": "Le ministre démissionnaire a fait une déclaration publique.", + "example_sentence_english": "The resigning minister made a public statement.", + "pos": "noun", + "word_frequency": 16232 + }, + { + "word": "désolant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismal;disheartening;regrettable", + "example_sentence_native": "C'est une situation désolante pour toutes les parties.", + "example_sentence_english": "It's a disheartening situation for all parties.", + "pos": "adjective", + "word_frequency": 16233 + }, + { + "word": "effrayé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frightened;scared", + "example_sentence_native": "L'enfant était effrayé par le tonnerre.", + "example_sentence_english": "The child was frightened by the thunder.", + "pos": "adjective", + "word_frequency": 16234 + }, + { + "word": "elliptique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elliptical", + "example_sentence_native": "L'orbite de la Terre autour du soleil est elliptique.", + "example_sentence_english": "The Earth's orbit around the sun is elliptical.", + "pos": "adjective", + "word_frequency": 16236 + }, + { + "word": "empecher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prevent;to hinder", + "example_sentence_native": "Il faut empêcher la propagation de fausses informations.", + "example_sentence_english": "We must prevent the spread of false information.", + "pos": "verb", + "word_frequency": 16237 + }, + { + "word": "engineering", + "article_with_word": "l'engineering", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engineering", + "example_sentence_native": "Il travaille dans le domaine de l'engineering logiciel.", + "example_sentence_english": "He works in the field of software engineering.", + "pos": "noun", + "word_frequency": 16238 + }, + { + "word": "ergonomie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ergonomics", + "example_sentence_native": "L'ergonomie est essentielle pour un bon poste de travail.", + "example_sentence_english": "Ergonomics is essential for a good workstation.", + "pos": "noun", + "word_frequency": 16240 + }, + { + "word": "errance", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wandering;aimless roaming", + "example_sentence_native": "Son errance l'a mené à travers plusieurs pays.", + "example_sentence_english": "His wandering led him through several countries.", + "pos": "noun", + "word_frequency": 16241 + }, + { + "word": "eucharistie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eucharist", + "example_sentence_native": "L'eucharistie est un sacrement chrétien.", + "example_sentence_english": "The Eucharist is a Christian sacrament.", + "pos": "noun", + "word_frequency": 16244 + }, + { + "word": "existentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existential", + "example_sentence_native": "Il se posait des questions existentielles sur le sens de la vie.", + "example_sentence_english": "He was asking existential questions about the meaning of life.", + "pos": "adjective", + "word_frequency": 16246 + }, + { + "word": "exportateur", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exporter", + "example_sentence_native": "La France est un grand exportateur de vin.", + "example_sentence_english": "France is a major wine exporter.", + "pos": "noun", + "word_frequency": 16247 + }, + { + "word": "façonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shape;to mold;to fashion", + "example_sentence_native": "L'artiste a façonné l'argile avec soin.", + "example_sentence_english": "The artist carefully shaped the clay.", + "pos": "verb", + "word_frequency": 16248 + }, + { + "word": "franchissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossing;overcoming", + "example_sentence_native": "Le franchissement de la rivière a été difficile.", + "example_sentence_english": "The crossing of the river was difficult.", + "pos": "noun", + "word_frequency": 16253 + }, + { + "word": "frauduleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraudulent", + "example_sentence_native": "Il a été accusé d'actes frauduleux.", + "example_sentence_english": "He was accused of fraudulent acts.", + "pos": "adjective", + "word_frequency": 16254 + }, + { + "word": "galactique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galactic", + "example_sentence_native": "Nous observons des phénomènes galactiques lointains.", + "example_sentence_english": "We observe distant galactic phenomena.", + "pos": "adjective", + "word_frequency": 16255 + }, + { + "word": "glossaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glossary", + "example_sentence_native": "Le livre contient un glossaire des termes techniques.", + "example_sentence_english": "The book contains a glossary of technical terms.", + "pos": "noun", + "word_frequency": 16262 + }, + { + "word": "gone", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kid;boy (Lyon regionalism)", + "example_sentence_native": "Les gones de Lyon sont fiers de leur ville.", + "example_sentence_english": "The kids from Lyon are proud of their city.", + "pos": "noun", + "word_frequency": 16263 + }, + { + "word": "grenadier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grenadier (soldier or pomegranate tree)", + "example_sentence_native": "Le grenadier est un arbre fruitier.", + "example_sentence_english": "The pomegranate tree is a fruit tree.", + "pos": "noun", + "word_frequency": 16264 + }, + { + "word": "guillemet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quotation mark", + "example_sentence_native": "N'oubliez pas d'ajouter les guillemets.", + "example_sentence_english": "Don't forget to add the quotation marks.", + "pos": "noun", + "word_frequency": 16266 + }, + { + "word": "habilitation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authorization;accreditation", + "example_sentence_native": "Il a obtenu son habilitation à diriger des recherches.", + "example_sentence_english": "He obtained his accreditation to supervise research.", + "pos": "noun", + "word_frequency": 16268 + }, + { + "word": "horoscope", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horoscope", + "example_sentence_native": "Elle lit son horoscope tous les matins.", + "example_sentence_english": "She reads her horoscope every morning.", + "pos": "noun", + "word_frequency": 16271 + }, + { + "word": "humainement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanly;humanely", + "example_sentence_native": "Humainement parlant, c'est une situation difficile.", + "example_sentence_english": "Humanly speaking, it's a difficult situation.", + "pos": "adverb", + "word_frequency": 16272 + }, + { + "word": "humilié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humiliated", + "example_sentence_native": "Il s'est senti humilié après l'échec.", + "example_sentence_english": "He felt humiliated after the failure.", + "pos": "adjective", + "word_frequency": 16274 + }, + { + "word": "imbattable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbeatable", + "example_sentence_native": "Son offre est imbattable.", + "example_sentence_english": "His offer is unbeatable.", + "pos": "adjective", + "word_frequency": 16276 + }, + { + "word": "implémentation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implementation", + "example_sentence_native": "L'implémentation du nouveau système prendra du temps.", + "example_sentence_english": "The implementation of the new system will take time.", + "pos": "noun", + "word_frequency": 16277 + }, + { + "word": "incorrect", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incorrect", + "example_sentence_native": "La réponse est incorrecte.", + "example_sentence_english": "The answer is incorrect.", + "pos": "adjective", + "word_frequency": 16278 + }, + { + "word": "individualiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individualistic", + "example_sentence_native": "Il a une approche très individualiste.", + "example_sentence_english": "He has a very individualistic approach.", + "pos": "adjective", + "word_frequency": 16279 + }, + { + "word": "industrialiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to industrialize", + "example_sentence_native": "Le pays a cherché à industrialiser son économie.", + "example_sentence_english": "The country sought to industrialize its economy.", + "pos": "verb", + "word_frequency": 16280 + }, + { + "word": "inné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innate", + "example_sentence_native": "Il a un talent inné pour la musique.", + "example_sentence_english": "He has an innate talent for music.", + "pos": "adjective", + "word_frequency": 16281 + }, + { + "word": "intensification", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensification", + "example_sentence_native": "On observe une intensification des phénomènes météorologiques extrêmes.", + "example_sentence_english": "We are observing an intensification of extreme weather phenomena.", + "pos": "noun", + "word_frequency": 16283 + }, + { + "word": "jeun", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fasting;on an empty stomach", + "example_sentence_native": "Il faut être à jeun pour cette analyse de sang.", + "example_sentence_english": "You must be fasting for this blood test.", + "pos": "adjective", + "word_frequency": 16285 + }, + { + "word": "laye", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forest path;clearing", + "example_sentence_native": "Nous avons suivi la laye à travers la forêt.", + "example_sentence_english": "We followed the forest path through the forest.", + "pos": "noun", + "word_frequency": 16290 + }, + { + "word": "lodge", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lodge", + "example_sentence_native": "Nous avons réservé un lodge dans le parc national.", + "example_sentence_english": "We booked a lodge in the national park.", + "pos": "noun", + "word_frequency": 16295 + }, + { + "word": "luge", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sled;luge", + "example_sentence_native": "Les enfants ont fait de la luge sur la colline enneigée.", + "example_sentence_english": "The children went sledding down the snowy hill.", + "pos": "noun", + "word_frequency": 16296 + }, + { + "word": "magistral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masterful;authoritative;grand", + "example_sentence_native": "Le professeur a donné une leçon magistrale.", + "example_sentence_english": "The professor gave a masterful lesson.", + "pos": "adjective", + "word_frequency": 16297 + }, + { + "word": "malt", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malt", + "example_sentence_native": "La bière est fabriquée à partir de malt d'orge.", + "example_sentence_english": "Beer is made from barley malt.", + "pos": "noun", + "word_frequency": 16298 + }, + { + "word": "matérialiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "materialistic", + "example_sentence_native": "Il a une vision très matérialiste de la vie.", + "example_sentence_english": "He has a very materialistic view of life.", + "pos": "adjective", + "word_frequency": 16301 + }, + { + "word": "minou", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kitty;pussycat", + "example_sentence_native": "Regarde ce petit minou qui joue.", + "example_sentence_english": "Look at that little kitty playing.", + "pos": "noun", + "word_frequency": 16304 + }, + { + "word": "mixer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix;to blend", + "example_sentence_native": "Il faut mixer tous les ingrédients pour la soupe.", + "example_sentence_english": "You need to mix all the ingredients for the soup.", + "pos": "verb", + "word_frequency": 16305 + }, + { + "word": "modique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "modest;small;paltry", + "example_sentence_native": "Le prix était modique pour une telle qualité.", + "example_sentence_english": "The price was modest for such quality.", + "pos": "adjective", + "word_frequency": 16306 + }, + { + "word": "monotone", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monotonous", + "example_sentence_native": "Sa voix était monotone, ce qui rendait le discours ennuyeux.", + "example_sentence_english": "His voice was monotonous, which made the speech boring.", + "pos": "adjective", + "word_frequency": 16307 + }, + { + "word": "multiculturalisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multiculturalism", + "example_sentence_native": "Le multiculturalisme est un sujet de débat important dans de nombreux pays.", + "example_sentence_english": "Multiculturalism is an important topic of debate in many countries.", + "pos": "noun", + "word_frequency": 16309 + }, + { + "word": "musicalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musically", + "example_sentence_native": "Il est très doué musicalement.", + "example_sentence_english": "He is very gifted musically.", + "pos": "adverb", + "word_frequency": 16311 + }, + { + "word": "méthodologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "methodological", + "example_sentence_native": "Son approche méthodologique est très rigoureuse.", + "example_sentence_english": "His methodological approach is very rigorous.", + "pos": "adjective", + "word_frequency": 16312 + }, + { + "word": "néolithique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Neolithic", + "example_sentence_native": "L'ère néolithique a vu l'apparition de l'agriculture.", + "example_sentence_english": "The Neolithic era saw the advent of agriculture.", + "pos": "adjective", + "word_frequency": 16314 + }, + { + "word": "package", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "package", + "example_sentence_native": "Nous avons acheté un package vacances tout compris.", + "example_sentence_english": "We bought an all-inclusive holiday package.", + "pos": "noun", + "word_frequency": 16315 + }, + { + "word": "phénoménal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phenomenal", + "example_sentence_native": "Sa performance était phénoménale.", + "example_sentence_english": "His performance was phenomenal.", + "pos": "adjective", + "word_frequency": 16321 + }, + { + "word": "pieu", + "article_with_word": "le pieu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stake;pile (also slang for bed)", + "example_sentence_native": "Il a planté un pieu dans le sol.", + "example_sentence_english": "He planted a stake in the ground.", + "pos": "noun", + "word_frequency": 16322 + }, + { + "word": "plutonium", + "article_with_word": "le plutonium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plutonium", + "example_sentence_native": "Le plutonium est un élément radioactif.", + "example_sentence_english": "Plutonium is a radioactive element.", + "pos": "noun", + "word_frequency": 16323 + }, + { + "word": "pointeur", + "article_with_word": "le pointeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pointer;marker", + "example_sentence_native": "Utilisez le pointeur laser pour indiquer l'écran.", + "example_sentence_english": "Use the laser pointer to indicate the screen.", + "pos": "noun", + "word_frequency": 16324 + }, + { + "word": "ponctuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to punctuate;to intersperse", + "example_sentence_native": "Il faut ponctuer correctement cette phrase.", + "example_sentence_english": "You must punctuate this sentence correctly.", + "pos": "verb", + "word_frequency": 16325 + }, + { + "word": "pourvoi", + "article_with_word": "le pourvoi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appeal (legal)", + "example_sentence_native": "L'avocat a déposé un pourvoi en cassation.", + "example_sentence_english": "The lawyer filed an appeal to the Court of Cassation.", + "pos": "noun", + "word_frequency": 16326 + }, + { + "word": "prodigue", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prodigal;wasteful", + "example_sentence_native": "Il était prodigue de son argent.", + "example_sentence_english": "He was wasteful with his money.", + "pos": "adjective", + "word_frequency": 16327 + }, + { + "word": "promulguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to promulgate;to enact", + "example_sentence_native": "Le président a promulgué la nouvelle loi.", + "example_sentence_english": "The president promulgated the new law.", + "pos": "verb", + "word_frequency": 16328 + }, + { + "word": "prévenant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoughtful;considerate", + "example_sentence_native": "Il est toujours très prévenant envers les autres.", + "example_sentence_english": "He is always very thoughtful towards others.", + "pos": "adjective", + "word_frequency": 16329 + }, + { + "word": "puceau", + "article_with_word": "le puceau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virgin (male;informal)", + "example_sentence_native": "C'est un terme familier pour désigner un puceau.", + "example_sentence_english": "It's a familiar term to refer to a virgin.", + "pos": "noun", + "word_frequency": 16330 + }, + { + "word": "pulpe", + "article_with_word": "la pulpe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pulp", + "example_sentence_native": "Le jus d'orange avec pulpe est mon préféré.", + "example_sentence_english": "Orange juice with pulp is my favorite.", + "pos": "noun", + "word_frequency": 16331 + }, + { + "word": "push", + "article_with_word": "le push", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "push (notification;marketing push)", + "example_sentence_native": "Nous avons envoyé un push notification à tous les utilisateurs.", + "example_sentence_english": "We sent a push notification to all users.", + "pos": "noun", + "word_frequency": 16332 + }, + { + "word": "pécho", + "article_with_word": "le pécho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a catch;a score (slang)", + "example_sentence_native": "Il a fait un bon pécho hier soir.", + "example_sentence_english": "He made a good score last night.", + "pos": "noun", + "word_frequency": 16335 + }, + { + "word": "pénaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penalize", + "example_sentence_native": "L'arbitre a décidé de pénaliser l'équipe.", + "example_sentence_english": "The referee decided to penalize the team.", + "pos": "verb", + "word_frequency": 16336 + }, + { + "word": "péniblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painfully;with difficulty", + "example_sentence_native": "Il a péniblement gravi la montagne.", + "example_sentence_english": "He painfully climbed the mountain.", + "pos": "adverb", + "word_frequency": 16337 + }, + { + "word": "pépère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cozy;quiet;easygoing (informal)", + "example_sentence_native": "On passe une soirée pépère à la maison.", + "example_sentence_english": "We're having a cozy evening at home.", + "pos": "adjective", + "word_frequency": 16338 + }, + { + "word": "recrudescence", + "article_with_word": "la recrudescence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resurgence;new outbreak", + "example_sentence_native": "Il y a eu une recrudescence des cas de grippe.", + "example_sentence_english": "There has been a resurgence of flu cases.", + "pos": "noun", + "word_frequency": 16339 + }, + { + "word": "regler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to settle;to adjust;to pay", + "example_sentence_native": "Il faut régler la facture avant de partir.", + "example_sentence_english": "You must settle the bill before leaving.", + "pos": "verb", + "word_frequency": 16340 + }, + { + "word": "rentabiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make profitable;to monetize", + "example_sentence_native": "L'entreprise cherche à rentabiliser ses investissements.", + "example_sentence_english": "The company seeks to make its investments profitable.", + "pos": "verb", + "word_frequency": 16341 + }, + { + "word": "ressaisir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regain control;to pull oneself together", + "example_sentence_native": "Après la chute, il a réussi à se ressaisir.", + "example_sentence_english": "After the fall, he managed to pull himself together.", + "pos": "verb", + "word_frequency": 16342 + }, + { + "word": "retro", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retro;vintage", + "example_sentence_native": "J'adore le style rétro des années 80.", + "example_sentence_english": "I love the retro style of the 80s.", + "pos": "adjective", + "word_frequency": 16343 + }, + { + "word": "rider", + "article_with_word": "le rider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rider (cyclist;skateboarder;etc.)", + "example_sentence_native": "Les riders se préparent pour la compétition.", + "example_sentence_english": "The riders are preparing for the competition.", + "pos": "noun", + "word_frequency": 16344 + }, + { + "word": "riot", + "article_with_word": "le riot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riot;disturbance", + "example_sentence_native": "La police est intervenue pour calmer le riot.", + "example_sentence_english": "The police intervened to calm the riot.", + "pos": "noun", + "word_frequency": 16345 + }, + { + "word": "réaffirmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reaffirm", + "example_sentence_native": "Le gouvernement a réaffirmé son engagement.", + "example_sentence_english": "The government reaffirmed its commitment.", + "pos": "verb", + "word_frequency": 16346 + }, + { + "word": "réquisitoire", + "article_with_word": "le réquisitoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indictment;strong condemnation (legal: prosecutor's address)", + "example_sentence_native": "Le procureur a prononcé un réquisitoire sévère.", + "example_sentence_english": "The prosecutor delivered a severe indictment.", + "pos": "noun", + "word_frequency": 16347 + }, + { + "word": "saboter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sabotage", + "example_sentence_native": "Quelqu'un a essayé de saboter le projet.", + "example_sentence_english": "Someone tried to sabotage the project.", + "pos": "verb", + "word_frequency": 16348 + }, + { + "word": "saphir", + "article_with_word": "le saphir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sapphire", + "example_sentence_native": "Elle portait une bague avec un grand saphir.", + "example_sentence_english": "She wore a ring with a large sapphire.", + "pos": "noun", + "word_frequency": 16353 + }, + { + "word": "schizophrène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schizophrenic", + "example_sentence_native": "Le patient a été diagnostiqué schizophrène.", + "example_sentence_english": "The patient was diagnosed schizophrenic.", + "pos": "adjective", + "word_frequency": 16354 + }, + { + "word": "scénographie", + "article_with_word": "la scénographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scenography;stage design", + "example_sentence_native": "La scénographie du spectacle était impressionnante.", + "example_sentence_english": "The scenography of the show was impressive.", + "pos": "noun", + "word_frequency": 16355 + }, + { + "word": "shah", + "article_with_word": "le shah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shah", + "example_sentence_native": "Le shah d'Iran a été renversé en 1979.", + "example_sentence_english": "The Shah of Iran was overthrown in 1979.", + "pos": "noun", + "word_frequency": 16356 + }, + { + "word": "sino", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sino- (Chinese;prefix)", + "example_sentence_native": "Les relations sino-américaines sont complexes.", + "example_sentence_english": "Sino-American relations are complex.", + "pos": "adjective", + "word_frequency": 16358 + }, + { + "word": "snowboard", + "article_with_word": "le snowboard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowboard", + "example_sentence_native": "Il adore faire du snowboard en hiver.", + "example_sentence_english": "He loves to snowboard in winter.", + "pos": "noun", + "word_frequency": 16361 + }, + { + "word": "surchauffe", + "article_with_word": "la surchauffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overheating", + "example_sentence_native": "Le moteur a subi une surchauffe.", + "example_sentence_english": "The engine suffered from overheating.", + "pos": "noun", + "word_frequency": 16366 + }, + { + "word": "tapette", + "article_with_word": "la tapette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fly swatter", + "example_sentence_native": "J'ai acheté une tapette à mouches.", + "example_sentence_english": "I bought a fly swatter.", + "pos": "noun", + "word_frequency": 16369 + }, + { + "word": "teaser", + "article_with_word": "le teaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaser", + "example_sentence_native": "Le teaser du film est sorti hier.", + "example_sentence_english": "The film's teaser was released yesterday.", + "pos": "noun", + "word_frequency": 16372 + }, + { + "word": "totalitarisme", + "article_with_word": "le totalitarisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "totalitarianism", + "example_sentence_native": "Le totalitarisme est une forme de gouvernement autoritaire.", + "example_sentence_english": "Totalitarianism is a form of authoritarian government.", + "pos": "noun", + "word_frequency": 16374 + }, + { + "word": "treillis", + "article_with_word": "le treillis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trellis", + "example_sentence_native": "Le jardinier a installé un treillis pour les plantes grimpantes.", + "example_sentence_english": "The gardener installed a trellis for the climbing plants.", + "pos": "noun", + "word_frequency": 16375 + }, + { + "word": "turban", + "article_with_word": "le turban", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turban", + "example_sentence_native": "Elle portait un élégant turban.", + "example_sentence_english": "She wore an elegant turban.", + "pos": "noun", + "word_frequency": 16376 + }, + { + "word": "vermine", + "article_with_word": "la vermine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vermin", + "example_sentence_native": "Ces rats sont de la vermine.", + "example_sentence_english": "These rats are vermin.", + "pos": "noun", + "word_frequency": 16379 + }, + { + "word": "vénitien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Venetian", + "example_sentence_native": "Les gondoles sont typiquement vénitiennes.", + "example_sentence_english": "Gondolas are typically Venetian.", + "pos": "adjective", + "word_frequency": 16380 + }, + { + "word": "éligibilité", + "article_with_word": "l'éligibilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eligibility", + "example_sentence_native": "Veuillez vérifier les critères d'éligibilité.", + "example_sentence_english": "Please check the eligibility criteria.", + "pos": "noun", + "word_frequency": 16383 + }, + { + "word": "épilation", + "article_with_word": "l'épilation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hair removal", + "example_sentence_native": "L'épilation au laser est très populaire.", + "example_sentence_english": "Laser hair removal is very popular.", + "pos": "noun", + "word_frequency": 16384 + }, + { + "word": "épouvantail", + "article_with_word": "l'épouvantail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scarecrow", + "example_sentence_native": "Un épouvantail se tenait au milieu du champ.", + "example_sentence_english": "A scarecrow stood in the middle of the field.", + "pos": "noun", + "word_frequency": 16385 + }, + { + "word": "évitement", + "article_with_word": "l'évitement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avoidance", + "example_sentence_native": "Il pratique l'évitement des conflits.", + "example_sentence_english": "He practices conflict avoidance.", + "pos": "noun", + "word_frequency": 16386 + }, + { + "word": "abdication", + "article_with_word": "l'abdication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abdication", + "example_sentence_native": "L'abdication du roi a choqué le pays.", + "example_sentence_english": "The king's abdication shocked the country.", + "pos": "noun", + "word_frequency": 16388 + }, + { + "word": "agrume", + "article_with_word": "un agrume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citrus fruit", + "example_sentence_native": "Les oranges et les citrons sont des agrumes.", + "example_sentence_english": "Oranges and lemons are citrus fruits.", + "pos": "noun", + "word_frequency": 16391 + }, + { + "word": "alphabétisation", + "article_with_word": "l'alphabétisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "literacy", + "example_sentence_native": "Le taux d'alphabétisation a augmenté dans la région.", + "example_sentence_english": "The literacy rate has increased in the region.", + "pos": "noun", + "word_frequency": 16392 + }, + { + "word": "amorcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to initiate;to prime", + "example_sentence_native": "Il faut amorcer la pompe avant de l'utiliser.", + "example_sentence_english": "You need to prime the pump before using it.", + "pos": "verb", + "word_frequency": 16393 + }, + { + "word": "amortir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cushion;to absorb", + "example_sentence_native": "Les amortisseurs de la voiture absorbent les chocs.", + "example_sentence_english": "The car's shock absorbers cushion the impacts.", + "pos": "verb", + "word_frequency": 16394 + }, + { + "word": "anguille", + "article_with_word": "l'anguille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eel", + "example_sentence_native": "L'anguille est un poisson long et glissant.", + "example_sentence_english": "The eel is a long and slippery fish.", + "pos": "noun", + "word_frequency": 16395 + }, + { + "word": "antagoniste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antagonistic", + "example_sentence_native": "Leurs points de vue sont complètement antagonistes.", + "example_sentence_english": "Their viewpoints are completely antagonistic.", + "pos": "adjective", + "word_frequency": 16396 + }, + { + "word": "antipode", + "article_with_word": "l'antipode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antipode", + "example_sentence_native": "Leurs opinions sont aux antipodes l'une de l'autre.", + "example_sentence_english": "Their opinions are at antipodes to each other.", + "pos": "noun", + "word_frequency": 16397 + }, + { + "word": "antiterroriste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiterrorist", + "example_sentence_native": "Une opération antiterroriste a été menée.", + "example_sentence_english": "An antiterrorist operation was carried out.", + "pos": "adjective", + "word_frequency": 16398 + }, + { + "word": "anémie", + "article_with_word": "l'anémie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anemia", + "example_sentence_native": "Elle souffre d'anémie ferriprive.", + "example_sentence_english": "She suffers from iron deficiency anemia.", + "pos": "noun", + "word_frequency": 16399 + }, + { + "word": "ardemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ardently;fervently", + "example_sentence_native": "Il défendait ardemment ses convictions.", + "example_sentence_english": "He ardently defended his convictions.", + "pos": "adverb", + "word_frequency": 16401 + }, + { + "word": "aristocrate", + "article_with_word": "un aristocrate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aristocrat", + "example_sentence_native": "L'aristocrate vivait dans un grand château.", + "example_sentence_english": "The aristocrat lived in a large castle.", + "pos": "noun", + "word_frequency": 16402 + }, + { + "word": "armateur", + "article_with_word": "un armateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipowner", + "example_sentence_native": "L'armateur a commandé un nouveau navire de fret.", + "example_sentence_english": "The shipowner ordered a new cargo ship.", + "pos": "noun", + "word_frequency": 16403 + }, + { + "word": "arrondir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to round;to make round", + "example_sentence_native": "Il faut arrondir les angles de cette table.", + "example_sentence_english": "We need to round the corners of this table.", + "pos": "verb", + "word_frequency": 16404 + }, + { + "word": "authentification", + "article_with_word": "l'authentification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authentication", + "example_sentence_native": "Le système nécessite une authentification à deux facteurs.", + "example_sentence_english": "The system requires two-factor authentication.", + "pos": "noun", + "word_frequency": 16406 + }, + { + "word": "bachelier", + "article_with_word": "un bachelier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school graduate", + "example_sentence_native": "Mon frère est devenu bachelier l'année dernière.", + "example_sentence_english": "My brother became a high school graduate last year.", + "pos": "noun", + "word_frequency": 16408 + }, + { + "word": "banalité", + "article_with_word": "une banalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banality;triviality", + "example_sentence_native": "Il a dit une banalité évidente que tout le monde savait.", + "example_sentence_english": "He said an obvious banality that everyone knew.", + "pos": "noun", + "word_frequency": 16409 + }, + { + "word": "bannissement", + "article_with_word": "le bannissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "banishment;exile", + "example_sentence_native": "Le bannissement était une peine sévère au Moyen Âge.", + "example_sentence_english": "Banishment was a severe punishment in the Middle Ages.", + "pos": "noun", + "word_frequency": 16411 + }, + { + "word": "belligérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "belligerent", + "example_sentence_native": "Les parties belligérantes ont signé un accord de paix.", + "example_sentence_english": "The belligerent parties signed a peace agreement.", + "pos": "adjective", + "word_frequency": 16413 + }, + { + "word": "benne", + "article_with_word": "une benne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skip;dump truck body", + "example_sentence_native": "La benne du camion était pleine de gravats.", + "example_sentence_english": "The truck's skip was full of rubble.", + "pos": "noun", + "word_frequency": 16414 + }, + { + "word": "bibliographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bibliographical", + "example_sentence_native": "Il a effectué une recherche bibliographique approfondie.", + "example_sentence_english": "He conducted a thorough bibliographical search.", + "pos": "adjective", + "word_frequency": 16418 + }, + { + "word": "bombarde", + "article_with_word": "une bombarde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bombard (instrument;weapon)", + "example_sentence_native": "Le musicien jouait de la bombarde lors du festival.", + "example_sentence_english": "The musician played the bombard at the festival.", + "pos": "noun", + "word_frequency": 16421 + }, + { + "word": "brassage", + "article_with_word": "le brassage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixing;brewing;blending", + "example_sentence_native": "Le brassage de la bière est un processus complexe.", + "example_sentence_english": "Beer brewing is a complex process.", + "pos": "noun", + "word_frequency": 16422 + }, + { + "word": "brochette", + "article_with_word": "une brochette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skewer;kebab", + "example_sentence_native": "Nous avons commandé des brochettes de poulet.", + "example_sentence_english": "We ordered chicken skewers.", + "pos": "noun", + "word_frequency": 16423 + }, + { + "word": "broderie", + "article_with_word": "la broderie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embroidery", + "example_sentence_native": "Elle est passionnée par la broderie et crée de belles œuvres.", + "example_sentence_english": "She is passionate about embroidery and creates beautiful works.", + "pos": "noun", + "word_frequency": 16424 + }, + { + "word": "calorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caloric;heat-related", + "example_sentence_native": "La valeur calorique de cet aliment est très élevée.", + "example_sentence_english": "The caloric value of this food is very high.", + "pos": "adjective", + "word_frequency": 16426 + }, + { + "word": "carrelage", + "article_with_word": "le carrelage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiling;tiles", + "example_sentence_native": "Le carrelage de la cuisine est facile à nettoyer.", + "example_sentence_english": "The kitchen tiling is easy to clean.", + "pos": "noun", + "word_frequency": 16428 + }, + { + "word": "chambellan", + "article_with_word": "un chambellan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chamberlain", + "example_sentence_native": "Le chambellan était un officier important à la cour royale.", + "example_sentence_english": "The chamberlain was an important officer at the royal court.", + "pos": "noun", + "word_frequency": 16433 + }, + { + "word": "chevron", + "article_with_word": "un chevron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chevron;rafter", + "example_sentence_native": "Les chevrons soutiennent la charpente du toit.", + "example_sentence_english": "The rafters support the roof framework.", + "pos": "noun", + "word_frequency": 16434 + }, + { + "word": "cle", + "article_with_word": "une cle", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "key", + "example_sentence_native": "J'ai perdu ma cle de voiture.", + "example_sentence_english": "I lost my car key.", + "pos": "noun", + "word_frequency": 16438 + }, + { + "word": "clôturer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to close;to fence off", + "example_sentence_native": "Il faut clôturer le jardin pour empêcher les animaux d'entrer.", + "example_sentence_english": "We need to fence off the garden to prevent animals from entering.", + "pos": "verb", + "word_frequency": 16440 + }, + { + "word": "conjuguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conjugate", + "example_sentence_native": "Les étudiants apprennent à conjuguer les verbes irréguliers.", + "example_sentence_english": "Students learn to conjugate irregular verbs.", + "pos": "verb", + "word_frequency": 16441 + }, + { + "word": "consumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consume;to use up", + "example_sentence_native": "La voiture consomme beaucoup d'essence.", + "example_sentence_english": "The car consumes a lot of gasoline.", + "pos": "verb", + "word_frequency": 16442 + }, + { + "word": "coquette", + "article_with_word": "une coquette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flirtatious woman;coquette", + "example_sentence_native": "Elle est connue pour être une coquette, toujours à charmer les hommes.", + "example_sentence_english": "She is known for being a coquette, always charming men.", + "pos": "noun", + "word_frequency": 16443 + }, + { + "word": "couillon", + "article_with_word": "un couillon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idiot;fool (informal)", + "example_sentence_native": "Ne sois pas un couillon, réfléchis avant d'agir.", + "example_sentence_english": "Don't be an idiot, think before you act.", + "pos": "noun", + "word_frequency": 16444 + }, + { + "word": "damner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to damn;to condemn", + "example_sentence_native": "Il se damnerait pour un bon repas.", + "example_sentence_english": "He would damn himself for a good meal.", + "pos": "verb", + "word_frequency": 16446 + }, + { + "word": "diagnostiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diagnose", + "example_sentence_native": "Le médecin a diagnostiqué une grippe.", + "example_sentence_english": "The doctor diagnosed the flu.", + "pos": "verb", + "word_frequency": 16452 + }, + { + "word": "disette", + "article_with_word": "la disette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shortage;famine", + "example_sentence_native": "Le pays a souffert d'une grave disette alimentaire.", + "example_sentence_english": "The country suffered from a severe food shortage.", + "pos": "noun", + "word_frequency": 16454 + }, + { + "word": "décolonisation", + "article_with_word": "la décolonisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decolonization", + "example_sentence_native": "La décolonisation a marqué la fin de nombreux empires.", + "example_sentence_english": "Decolonization marked the end of many empires.", + "pos": "noun", + "word_frequency": 16457 + }, + { + "word": "démêler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to untangle;to unravel", + "example_sentence_native": "Elle a passé du temps à démêler ses cheveux longs.", + "example_sentence_english": "She spent time untangling her long hair.", + "pos": "verb", + "word_frequency": 16458 + }, + { + "word": "dérivation", + "article_with_word": "la dérivation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derivation;diversion", + "example_sentence_native": "En linguistique, la dérivation est un processus de formation de mots.", + "example_sentence_english": "In linguistics, derivation is a word formation process.", + "pos": "noun", + "word_frequency": 16459 + }, + { + "word": "déshydratation", + "article_with_word": "la déshydratation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dehydration", + "example_sentence_native": "Il est important de boire beaucoup d'eau pour éviter la déshydratation.", + "example_sentence_english": "It is important to drink a lot of water to avoid dehydration.", + "pos": "noun", + "word_frequency": 16460 + }, + { + "word": "déverser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pour out;to discharge", + "example_sentence_native": "L'usine a déversé des produits chimiques dans la rivière.", + "example_sentence_english": "The factory discharged chemicals into the river.", + "pos": "verb", + "word_frequency": 16461 + }, + { + "word": "eldorado", + "article_with_word": "un eldorado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "El Dorado;a place of great wealth or opportunity", + "example_sentence_native": "Beaucoup rêvent de trouver leur eldorado dans cette nouvelle ville.", + "example_sentence_english": "Many dream of finding their El Dorado in this new city.", + "pos": "noun", + "word_frequency": 16464 + }, + { + "word": "emménager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move in", + "example_sentence_native": "Nous allons emménager dans notre nouvelle maison le mois prochain.", + "example_sentence_english": "We are going to move into our new house next month.", + "pos": "verb", + "word_frequency": 16465 + }, + { + "word": "emphase", + "article_with_word": "l'emphase", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emphasis", + "example_sentence_native": "Il a mis l'emphase sur l'importance de la sécurité.", + "example_sentence_english": "He placed emphasis on the importance of safety.", + "pos": "noun", + "word_frequency": 16466 + }, + { + "word": "encombrement", + "article_with_word": "l'encombrement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congestion;clutter;obstruction", + "example_sentence_native": "L'encombrement de la circulation est un problème majeur en ville.", + "example_sentence_english": "Traffic congestion is a major problem in the city.", + "pos": "noun", + "word_frequency": 16467 + }, + { + "word": "envelopper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wrap;to envelop", + "example_sentence_native": "Elle a enveloppé le cadeau dans du papier coloré.", + "example_sentence_english": "She wrapped the gift in colorful paper.", + "pos": "verb", + "word_frequency": 16469 + }, + { + "word": "escalader", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb;to scale", + "example_sentence_native": "Les alpinistes ont réussi à escalader la montagne.", + "example_sentence_english": "The climbers managed to scale the mountain.", + "pos": "verb", + "word_frequency": 16471 + }, + { + "word": "ficher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to file;to stick;to give (informal)", + "example_sentence_native": "Il a fichu le camp sans dire un mot.", + "example_sentence_english": "He cleared off without saying a word.", + "pos": "verb", + "word_frequency": 16475 + }, + { + "word": "fouine", + "article_with_word": "une fouine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marten;weasel;nosy person (figurative)", + "example_sentence_native": "La fouine est un animal nocturne.", + "example_sentence_english": "The marten is a nocturnal animal.", + "pos": "noun", + "word_frequency": 16476 + }, + { + "word": "frangin", + "article_with_word": "un frangin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brother (informal;bro)", + "example_sentence_native": "Mon frangin vient me voir ce week-end.", + "example_sentence_english": "My brother is coming to see me this weekend.", + "pos": "noun", + "word_frequency": 16478 + }, + { + "word": "fratrie", + "article_with_word": "la fratrie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sibling group;brotherhood;sisterhood", + "example_sentence_native": "La fratrie est un lien familial très fort.", + "example_sentence_english": "The sibling group is a very strong family bond.", + "pos": "noun", + "word_frequency": 16479 + }, + { + "word": "friche", + "article_with_word": "la friche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wasteland;fallow land", + "example_sentence_native": "Le terrain est en friche depuis des années.", + "example_sentence_english": "The land has been fallow for years.", + "pos": "noun", + "word_frequency": 16480 + }, + { + "word": "friendly", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friendly", + "example_sentence_native": "C'est un environnement très friendly.", + "example_sentence_english": "It's a very friendly environment.", + "pos": "adjective", + "word_frequency": 16481 + }, + { + "word": "fronton", + "article_with_word": "le fronton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pediment;facade", + "example_sentence_native": "Le fronton du temple était orné de sculptures.", + "example_sentence_english": "The temple's pediment was adorned with sculptures.", + "pos": "noun", + "word_frequency": 16482 + }, + { + "word": "galérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to struggle;to have a hard time", + "example_sentence_native": "Je galère avec mes devoirs de maths.", + "example_sentence_english": "I'm struggling with my math homework.", + "pos": "verb", + "word_frequency": 16483 + }, + { + "word": "generale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "general", + "example_sentence_native": "C'est une règle générale.", + "example_sentence_english": "It's a general rule.", + "pos": "adjective", + "word_frequency": 16485 + }, + { + "word": "gourde", + "article_with_word": "la gourde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water bottle;(informal) idiot", + "example_sentence_native": "N'oublie pas ta gourde pour la randonnée.", + "example_sentence_english": "Don't forget your water bottle for the hike.", + "pos": "noun", + "word_frequency": 16487 + }, + { + "word": "hadj", + "article_with_word": "le hadj", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hajj (pilgrimage to Mecca)", + "example_sentence_native": "Il a accompli le hadj l'année dernière.", + "example_sentence_english": "He completed the Hajj last year.", + "pos": "noun", + "word_frequency": 16488 + }, + { + "word": "hermétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "airtight;hermetic;obscure", + "example_sentence_native": "Le couvercle est hermétique.", + "example_sentence_english": "The lid is airtight.", + "pos": "adjective", + "word_frequency": 16489 + }, + { + "word": "idylle", + "article_with_word": "une idylle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idyll;romance", + "example_sentence_native": "Ils ont vécu une courte idylle.", + "example_sentence_english": "They had a short romance.", + "pos": "noun", + "word_frequency": 16490 + }, + { + "word": "impayé", + "article_with_word": "un impayé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpaid bill;outstanding payment", + "example_sentence_native": "Nous avons plusieurs impayés ce mois-ci.", + "example_sentence_english": "We have several unpaid bills this month.", + "pos": "noun", + "word_frequency": 16491 + }, + { + "word": "imprenable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impregnable;unassailable", + "example_sentence_native": "La forteresse était imprenable.", + "example_sentence_english": "The fortress was impregnable.", + "pos": "adjective", + "word_frequency": 16492 + }, + { + "word": "imprégner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impregnate;to soak;to permeate", + "example_sentence_native": "L'odeur de fumée a imprégné les rideaux.", + "example_sentence_english": "The smell of smoke permeated the curtains.", + "pos": "verb", + "word_frequency": 16493 + }, + { + "word": "incubation", + "article_with_word": "l'incubation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incubation", + "example_sentence_native": "La période d'incubation du virus est de deux semaines.", + "example_sentence_english": "The incubation period of the virus is two weeks.", + "pos": "noun", + "word_frequency": 16494 + }, + { + "word": "indéniablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undeniably", + "example_sentence_native": "Il est indéniablement le meilleur candidat.", + "example_sentence_english": "He is undeniably the best candidate.", + "pos": "adverb", + "word_frequency": 16495 + }, + { + "word": "informateur", + "article_with_word": "l'informateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informant;source", + "example_sentence_native": "La police a reçu des informations d'un informateur anonyme.", + "example_sentence_english": "The police received information from an anonymous informant.", + "pos": "noun", + "word_frequency": 16496 + }, + { + "word": "insuffisamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insufficiently", + "example_sentence_native": "Le travail a été fait insuffisamment.", + "example_sentence_english": "The work was done insufficiently.", + "pos": "adverb", + "word_frequency": 16497 + }, + { + "word": "intensifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intensify", + "example_sentence_native": "Il faut intensifier nos efforts.", + "example_sentence_english": "We need to intensify our efforts.", + "pos": "verb", + "word_frequency": 16498 + }, + { + "word": "invaincu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undefeated;unbeaten", + "example_sentence_native": "L'équipe est restée invaincue toute la saison.", + "example_sentence_english": "The team remained undefeated all season.", + "pos": "adjective", + "word_frequency": 16499 + }, + { + "word": "lamelle", + "article_with_word": "la lamelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lamella;thin plate;slide (microscope)", + "example_sentence_native": "Observez l'échantillon sous la lamelle.", + "example_sentence_english": "Observe the sample under the slide.", + "pos": "noun", + "word_frequency": 16507 + }, + { + "word": "maltraiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mistreat;to abuse", + "example_sentence_native": "Il ne faut jamais maltraiter les animaux.", + "example_sentence_english": "One must never mistreat animals.", + "pos": "verb", + "word_frequency": 16513 + }, + { + "word": "manucure", + "article_with_word": "la manucure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manicure;manicurist", + "example_sentence_native": "Elle a pris rendez-vous pour une manucure.", + "example_sentence_english": "She made an appointment for a manicure.", + "pos": "noun", + "word_frequency": 16514 + }, + { + "word": "modele", + "article_with_word": "le modèle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "model;pattern;example", + "example_sentence_native": "C'est un excellent modèle à suivre.", + "example_sentence_english": "It's an excellent model to follow.", + "pos": "noun", + "word_frequency": 16519 + }, + { + "word": "mongol", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mongolian", + "example_sentence_native": "La culture mongole est très riche.", + "example_sentence_english": "Mongolian culture is very rich.", + "pos": "adjective", + "word_frequency": 16520 + }, + { + "word": "moquerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mockery", + "example_sentence_native": "Ses paroles étaient pleines de moquerie.", + "example_sentence_english": "His words were full of mockery.", + "pos": "noun", + "word_frequency": 16521 + }, + { + "word": "mouture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grinding;version", + "example_sentence_native": "Cette nouvelle mouture du logiciel est plus stable.", + "example_sentence_english": "This new version of the software is more stable.", + "pos": "noun", + "word_frequency": 16522 + }, + { + "word": "mécène", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patron (of arts)", + "example_sentence_native": "Il est devenu le mécène de jeunes artistes.", + "example_sentence_english": "He became the patron of young artists.", + "pos": "noun", + "word_frequency": 16525 + }, + { + "word": "médicalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medically", + "example_sentence_native": "Il est médicalement apte à reprendre le travail.", + "example_sentence_english": "He is medically fit to return to work.", + "pos": "adverb", + "word_frequency": 16526 + }, + { + "word": "obstination", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstinacy;stubbornness", + "example_sentence_native": "Son obstination l'a mené au succès.", + "example_sentence_english": "His obstinacy led him to success.", + "pos": "noun", + "word_frequency": 16531 + }, + { + "word": "obéissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obedient", + "example_sentence_native": "Le chien est très obéissant.", + "example_sentence_english": "The dog is very obedient.", + "pos": "adjective", + "word_frequency": 16532 + }, + { + "word": "padre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "padre;priest", + "example_sentence_native": "Le padre a donné la bénédiction.", + "example_sentence_english": "The padre gave the blessing.", + "pos": "noun", + "word_frequency": 16534 + }, + { + "word": "physionomie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiognomy;appearance", + "example_sentence_native": "Sa physionomie trahissait son inquiétude.", + "example_sentence_english": "His physiognomy betrayed his worry.", + "pos": "noun", + "word_frequency": 16538 + }, + { + "word": "planque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hideout;stash", + "example_sentence_native": "La police a découvert leur planque.", + "example_sentence_english": "The police discovered their hideout.", + "pos": "noun", + "word_frequency": 16540 + }, + { + "word": "profusion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profusion;abundance", + "example_sentence_native": "Il y avait une profusion de fleurs dans le jardin.", + "example_sentence_english": "There was a profusion of flowers in the garden.", + "pos": "noun", + "word_frequency": 16542 + }, + { + "word": "préjudiciable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detrimental;prejudicial", + "example_sentence_native": "Cette décision pourrait être préjudiciable à l'entreprise.", + "example_sentence_english": "This decision could be detrimental to the company.", + "pos": "adjective", + "word_frequency": 16543 + }, + { + "word": "reliure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding (of a book)", + "example_sentence_native": "La reliure de ce vieux livre est abîmée.", + "example_sentence_english": "The binding of this old book is damaged.", + "pos": "noun", + "word_frequency": 16547 + }, + { + "word": "revoilà", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "here... again;here he;she;it is again", + "example_sentence_native": "Ah, te revoilà enfin !", + "example_sentence_english": "Ah, here you are again at last!", + "pos": "verb", + "word_frequency": 16548 + }, + { + "word": "royalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "royally;splendidly", + "example_sentence_native": "Ils ont été reçus royalement.", + "example_sentence_english": "They were royally received.", + "pos": "adverb", + "word_frequency": 16552 + }, + { + "word": "rémission", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remission;pardon", + "example_sentence_native": "Le patient est en rémission complète.", + "example_sentence_english": "The patient is in complete remission.", + "pos": "noun", + "word_frequency": 16553 + }, + { + "word": "réparateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restorative;repairing", + "example_sentence_native": "J'ai eu un sommeil très réparateur.", + "example_sentence_english": "I had a very restorative sleep.", + "pos": "adjective", + "word_frequency": 16554 + }, + { + "word": "scénique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scenic;theatrical", + "example_sentence_native": "La performance scénique était impressionnante.", + "example_sentence_english": "The scenic performance was impressive.", + "pos": "adjective", + "word_frequency": 16559 + }, + { + "word": "singulièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "singularly;particularly", + "example_sentence_native": "Il a agi singulièrement dans cette situation.", + "example_sentence_english": "He acted singularly in this situation.", + "pos": "adverb", + "word_frequency": 16560 + }, + { + "word": "slam", + "article_with_word": "le slam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slam (poetry)", + "example_sentence_native": "Le slam est une forme de poésie orale.", + "example_sentence_english": "Slam is a form of oral poetry.", + "pos": "noun", + "word_frequency": 16561 + }, + { + "word": "synchro", + "article_with_word": "la synchro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sync;synchronization", + "example_sentence_native": "La synchro audio-vidéo est parfaite.", + "example_sentence_english": "The audio-video sync is perfect.", + "pos": "noun", + "word_frequency": 16564 + }, + { + "word": "synergie", + "article_with_word": "la synergie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synergy", + "example_sentence_native": "Il y a une bonne synergie entre les membres de l'équipe.", + "example_sentence_english": "There is good synergy between the team members.", + "pos": "noun", + "word_frequency": 16565 + }, + { + "word": "tendon", + "article_with_word": "le tendon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tendon", + "example_sentence_native": "Il s'est blessé au tendon d'Achille.", + "example_sentence_english": "He injured his Achilles tendon.", + "pos": "noun", + "word_frequency": 16569 + }, + { + "word": "thermodynamique", + "article_with_word": "la thermodynamique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thermodynamics", + "example_sentence_native": "La thermodynamique est une branche de la physique.", + "example_sentence_english": "Thermodynamics is a branch of physics.", + "pos": "noun", + "word_frequency": 16570 + }, + { + "word": "thyroïde", + "article_with_word": "la thyroïde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thyroid", + "example_sentence_native": "La thyroïde régule le métabolisme.", + "example_sentence_english": "The thyroid regulates metabolism.", + "pos": "noun", + "word_frequency": 16571 + }, + { + "word": "toison", + "article_with_word": "la toison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleece;wool", + "example_sentence_native": "La toison du mouton est très épaisse.", + "example_sentence_english": "The sheep's fleece is very thick.", + "pos": "noun", + "word_frequency": 16574 + }, + { + "word": "toutou", + "article_with_word": "le toutou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doggy;pooch", + "example_sentence_native": "Mon petit toutou adore jouer dans le jardin.", + "example_sentence_english": "My little doggy loves to play in the garden.", + "pos": "noun", + "word_frequency": 16576 + }, + { + "word": "traîneau", + "article_with_word": "le traîneau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleigh;sled", + "example_sentence_native": "Le Père Noël voyage en traîneau.", + "example_sentence_english": "Santa Claus travels by sleigh.", + "pos": "noun", + "word_frequency": 16577 + }, + { + "word": "typhon", + "article_with_word": "le typhon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typhoon", + "example_sentence_native": "Un typhon a frappé la côte.", + "example_sentence_english": "A typhoon hit the coast.", + "pos": "noun", + "word_frequency": 16579 + }, + { + "word": "vainement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in vain;uselessly", + "example_sentence_native": "Il a essayé vainement de la convaincre.", + "example_sentence_english": "He tried in vain to convince her.", + "pos": "adverb", + "word_frequency": 16582 + }, + { + "word": "variole", + "article_with_word": "la variole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "smallpox", + "example_sentence_native": "La variole a été éradiquée.", + "example_sentence_english": "Smallpox has been eradicated.", + "pos": "noun", + "word_frequency": 16584 + }, + { + "word": "verrouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lock", + "example_sentence_native": "N'oubliez pas de verrouiller la porte.", + "example_sentence_english": "Don't forget to lock the door.", + "pos": "verb", + "word_frequency": 16585 + }, + { + "word": "visual", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visual", + "example_sentence_native": "Les arts visuels sont très variés.", + "example_sentence_english": "Visual arts are very diverse.", + "pos": "adjective", + "word_frequency": 16586 + }, + { + "word": "vitrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to glaze;to fit with glass", + "example_sentence_native": "Il faut vitrer cette fenêtre.", + "example_sentence_english": "This window needs to be glazed.", + "pos": "verb", + "word_frequency": 16587 + }, + { + "word": "volatilité", + "article_with_word": "la volatilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "volatility", + "example_sentence_native": "La volatilité des marchés financiers est élevée.", + "example_sentence_english": "The volatility of financial markets is high.", + "pos": "noun", + "word_frequency": 16588 + }, + { + "word": "zoologie", + "article_with_word": "la zoologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zoology", + "example_sentence_native": "La zoologie est l'étude des animaux.", + "example_sentence_english": "Zoology is the study of animals.", + "pos": "noun", + "word_frequency": 16593 + }, + { + "word": "échantillonnage", + "article_with_word": "l'échantillonnage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sampling", + "example_sentence_native": "L'échantillonnage est crucial en statistique.", + "example_sentence_english": "Sampling is crucial in statistics.", + "pos": "noun", + "word_frequency": 16594 + }, + { + "word": "élancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dart;to spring forward;to make slender", + "example_sentence_native": "Le coureur s'est élancé au signal.", + "example_sentence_english": "The runner darted forward at the signal.", + "pos": "verb", + "word_frequency": 16595 + }, + { + "word": "épingler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pin;to highlight", + "example_sentence_native": "Elle a épinglé la broche sur sa robe.", + "example_sentence_english": "She pinned the brooch on her dress.", + "pos": "verb", + "word_frequency": 16596 + }, + { + "word": "érotisme", + "article_with_word": "l'érotisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eroticism", + "example_sentence_native": "L'érotisme est un thème récurrent dans son œuvre.", + "example_sentence_english": "Eroticism is a recurring theme in his work.", + "pos": "noun", + "word_frequency": 16597 + }, + { + "word": "étable", + "article_with_word": "l'étable", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable;cowshed", + "example_sentence_native": "Les vaches sont rentrées à l'étable.", + "example_sentence_english": "The cows returned to the stable.", + "pos": "noun", + "word_frequency": 16598 + }, + { + "word": "évanouir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to faint;to vanish", + "example_sentence_native": "Elle s'est évanouie à cause de la chaleur.", + "example_sentence_english": "She fainted because of the heat.", + "pos": "verb", + "word_frequency": 16599 + }, + { + "word": "évolutif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolutionary;evolving", + "example_sentence_native": "Ce système est très évolutif.", + "example_sentence_english": "This system is very evolutionary.", + "pos": "adjective", + "word_frequency": 16600 + }, + { + "word": "abnégation", + "article_with_word": "l'abnégation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-sacrifice;self-denial", + "example_sentence_native": "Son abnégation pour la cause était admirable.", + "example_sentence_english": "Her self-sacrifice for the cause was admirable.", + "pos": "noun", + "word_frequency": 16601 + }, + { + "word": "accidenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to injure (in an accident);to damage", + "example_sentence_native": "Il s'est accidenté en moto.", + "example_sentence_english": "He injured himself in a motorcycle accident.", + "pos": "verb", + "word_frequency": 16602 + }, + { + "word": "adaptateur", + "article_with_word": "un adaptateur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adapter", + "example_sentence_native": "J'ai besoin d'un adaptateur pour mon chargeur.", + "example_sentence_english": "I need an adapter for my charger.", + "pos": "noun", + "word_frequency": 16604 + }, + { + "word": "adonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to indulge in;to devote oneself to", + "example_sentence_native": "Il s'adonne à la lecture tous les soirs.", + "example_sentence_english": "He devotes himself to reading every evening.", + "pos": "verb", + "word_frequency": 16606 + }, + { + "word": "agraire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agrarian", + "example_sentence_native": "La réforme agraire a changé le paysage rural.", + "example_sentence_english": "The agrarian reform changed the rural landscape.", + "pos": "adjective", + "word_frequency": 16607 + }, + { + "word": "aisselle", + "article_with_word": "l'aisselle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armpit", + "example_sentence_native": "Il a une piqûre sous l'aisselle.", + "example_sentence_english": "He has a sting under his armpit.", + "pos": "noun", + "word_frequency": 16608 + }, + { + "word": "amputer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to amputate", + "example_sentence_native": "Le médecin a dû amputer sa jambe.", + "example_sentence_english": "The doctor had to amputate his leg.", + "pos": "verb", + "word_frequency": 16610 + }, + { + "word": "antillais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Antillean;from the Antilles", + "example_sentence_native": "Elle a des origines antillaises.", + "example_sentence_english": "She has Antillean origins.", + "pos": "adjective", + "word_frequency": 16612 + }, + { + "word": "arguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to argue;to contend", + "example_sentence_native": "Il a argué de son innocence.", + "example_sentence_english": "He argued for his innocence.", + "pos": "verb", + "word_frequency": 16614 + }, + { + "word": "atténuation", + "article_with_word": "l'atténuation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attenuation;mitigation;reduction", + "example_sentence_native": "Nous cherchons une atténuation des risques.", + "example_sentence_english": "We are looking for a reduction of risks.", + "pos": "noun", + "word_frequency": 16616 + }, + { + "word": "austral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "austral;southern", + "example_sentence_native": "Les régions australes sont très froides.", + "example_sentence_english": "The southern regions are very cold.", + "pos": "adjective", + "word_frequency": 16618 + }, + { + "word": "averse", + "article_with_word": "une averse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shower (rain)", + "example_sentence_native": "Nous avons eu une forte averse ce matin.", + "example_sentence_english": "We had a heavy shower this morning.", + "pos": "noun", + "word_frequency": 16619 + }, + { + "word": "aviron", + "article_with_word": "l'aviron", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rowing;oar", + "example_sentence_native": "Il pratique l'aviron sur le lac.", + "example_sentence_english": "He practices rowing on the lake.", + "pos": "noun", + "word_frequency": 16620 + }, + { + "word": "beignet", + "article_with_word": "un beignet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doughnut;fritter", + "example_sentence_native": "J'ai mangé un délicieux beignet à la pomme.", + "example_sentence_english": "I ate a delicious apple fritter.", + "pos": "noun", + "word_frequency": 16625 + }, + { + "word": "belvédère", + "article_with_word": "un belvédère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belvedere;viewpoint", + "example_sentence_native": "Le belvédère offre une vue imprenable sur la ville.", + "example_sentence_english": "The belvedere offers a breathtaking view of the city.", + "pos": "noun", + "word_frequency": 16626 + }, + { + "word": "berner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trick;to fool", + "example_sentence_native": "Il a essayé de me berner avec une fausse histoire.", + "example_sentence_english": "He tried to trick me with a false story.", + "pos": "verb", + "word_frequency": 16629 + }, + { + "word": "bicarbonate", + "article_with_word": "le bicarbonate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bicarbonate (e.g.;baking soda)", + "example_sentence_native": "J'utilise du bicarbonate de soude pour nettoyer.", + "example_sentence_english": "I use baking soda to clean.", + "pos": "noun", + "word_frequency": 16632 + }, + { + "word": "cachot", + "article_with_word": "un cachot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dungeon;cell", + "example_sentence_native": "Il a été jeté au cachot.", + "example_sentence_english": "He was thrown into the dungeon.", + "pos": "noun", + "word_frequency": 16635 + }, + { + "word": "canaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to channel;to direct", + "example_sentence_native": "Il faut canaliser son énergie.", + "example_sentence_english": "One must channel one's energy.", + "pos": "verb", + "word_frequency": 16636 + }, + { + "word": "carrure", + "article_with_word": "la carrure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "build;physique (shoulders)", + "example_sentence_native": "Il a une carrure imposante.", + "example_sentence_english": "He has an imposing build.", + "pos": "noun", + "word_frequency": 16637 + }, + { + "word": "chai", + "article_with_word": "le chai", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wine cellar;wine storehouse", + "example_sentence_native": "Le vin vieillit dans le chai.", + "example_sentence_english": "The wine ages in the wine cellar.", + "pos": "noun", + "word_frequency": 16639 + }, + { + "word": "chevelu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hairy", + "example_sentence_native": "Il a un torse très chevelu.", + "example_sentence_english": "He has a very hairy chest.", + "pos": "adjective", + "word_frequency": 16641 + }, + { + "word": "colosse", + "article_with_word": "le colosse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colossus;giant", + "example_sentence_native": "C'était un colosse, grand et fort.", + "example_sentence_english": "He was a colossus, tall and strong.", + "pos": "noun", + "word_frequency": 16644 + }, + { + "word": "commodité", + "article_with_word": "la commodité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convenience", + "example_sentence_native": "Pour votre commodité, nous avons ajouté un ascenseur.", + "example_sentence_english": "For your convenience, we have added an elevator.", + "pos": "noun", + "word_frequency": 16645 + }, + { + "word": "compétiteur", + "article_with_word": "le compétiteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitor", + "example_sentence_native": "Il est un compétiteur acharné.", + "example_sentence_english": "He is a fierce competitor.", + "pos": "noun", + "word_frequency": 16646 + }, + { + "word": "conceptuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conceptual", + "example_sentence_native": "C'est une approche très conceptuelle du problème.", + "example_sentence_english": "It's a very conceptual approach to the problem.", + "pos": "adjective", + "word_frequency": 16647 + }, + { + "word": "condenser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condense", + "example_sentence_native": "Il faut condenser ce rapport pour le rendre plus court.", + "example_sentence_english": "We need to condense this report to make it shorter.", + "pos": "verb", + "word_frequency": 16648 + }, + { + "word": "confiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confine;to border on", + "example_sentence_native": "La maladie l'a confiné au lit.", + "example_sentence_english": "The illness confined him to bed.", + "pos": "verb", + "word_frequency": 16649 + }, + { + "word": "conique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conical", + "example_sentence_native": "La forme de ce chapeau est conique.", + "example_sentence_english": "The shape of this hat is conical.", + "pos": "adjective", + "word_frequency": 16650 + }, + { + "word": "corollaire", + "article_with_word": "le corollaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corollary", + "example_sentence_native": "La pauvreté est souvent un corollaire du manque d'éducation.", + "example_sentence_english": "Poverty is often a corollary of lack of education.", + "pos": "noun", + "word_frequency": 16651 + }, + { + "word": "courtage", + "article_with_word": "le courtage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brokerage", + "example_sentence_native": "Il travaille dans le secteur du courtage immobilier.", + "example_sentence_english": "He works in the real estate brokerage sector.", + "pos": "noun", + "word_frequency": 16652 + }, + { + "word": "coyote", + "article_with_word": "le coyote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coyote", + "example_sentence_native": "Le coyote est un animal sauvage d'Amérique du Nord.", + "example_sentence_english": "The coyote is a wild animal from North America.", + "pos": "noun", + "word_frequency": 16653 + }, + { + "word": "crânien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cranial", + "example_sentence_native": "Il a subi une blessure crânienne.", + "example_sentence_english": "He suffered a cranial injury.", + "pos": "adjective", + "word_frequency": 16655 + }, + { + "word": "cyanure", + "article_with_word": "le cyanure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyanide", + "example_sentence_native": "Le cyanure est un poison mortel.", + "example_sentence_english": "Cyanide is a deadly poison.", + "pos": "noun", + "word_frequency": 16657 + }, + { + "word": "diabétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diabetic", + "example_sentence_native": "Mon grand-père est diabétique.", + "example_sentence_english": "My grandfather is diabetic.", + "pos": "adjective", + "word_frequency": 16661 + }, + { + "word": "durcissement", + "article_with_word": "le durcissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardening;toughening", + "example_sentence_native": "Le durcissement des règles est nécessaire.", + "example_sentence_english": "The toughening of the rules is necessary.", + "pos": "noun", + "word_frequency": 16663 + }, + { + "word": "dégradé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "degraded;faded;graduated (haircut)", + "example_sentence_native": "Elle a opté pour une coupe de cheveux dégradée.", + "example_sentence_english": "She opted for a graduated haircut.", + "pos": "adjective", + "word_frequency": 16664 + }, + { + "word": "dévoilé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unveiled;revealed", + "example_sentence_native": "Le nouveau modèle de voiture a été dévoilé hier.", + "example_sentence_english": "The new car model was unveiled yesterday.", + "pos": "adjective", + "word_frequency": 16665 + }, + { + "word": "embarrasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embarrass;to clutter", + "example_sentence_native": "Sa question l'a beaucoup embarrassé.", + "example_sentence_english": "His question embarrassed him a lot.", + "pos": "verb", + "word_frequency": 16668 + }, + { + "word": "escient", + "article_with_word": "l'escient", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "knowledge;discretion (in 'à bon escient')", + "example_sentence_native": "Il utilise ses compétences à bon escient.", + "example_sentence_english": "He uses his skills wisely.", + "pos": "noun", + "word_frequency": 16670 + }, + { + "word": "expressif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressive", + "example_sentence_native": "Son visage est très expressif.", + "example_sentence_english": "His face is very expressive.", + "pos": "adjective", + "word_frequency": 16672 + }, + { + "word": "faïence", + "article_with_word": "la faïence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faience;earthenware", + "example_sentence_native": "La salle de bain est décorée de carreaux de faïence.", + "example_sentence_english": "The bathroom is decorated with faience tiles.", + "pos": "noun", + "word_frequency": 16673 + }, + { + "word": "fioul", + "article_with_word": "le fioul", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel oil;heating oil", + "example_sentence_native": "Nous chauffons notre maison au fioul.", + "example_sentence_english": "We heat our house with fuel oil.", + "pos": "noun", + "word_frequency": 16676 + }, + { + "word": "forain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairground;itinerant", + "example_sentence_native": "Les attractions foraines sont très populaires.", + "example_sentence_english": "Fairground attractions are very popular.", + "pos": "adjective", + "word_frequency": 16677 + }, + { + "word": "fourrière", + "article_with_word": "la fourrière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pound (for vehicles;animals);impound lot", + "example_sentence_native": "Ma voiture a été emmenée à la fourrière.", + "example_sentence_english": "My car was taken to the impound lot.", + "pos": "noun", + "word_frequency": 16679 + }, + { + "word": "garagiste", + "article_with_word": "le garagiste", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mechanic", + "example_sentence_native": "J'ai emmené ma voiture chez le garagiste.", + "example_sentence_english": "I took my car to the mechanic.", + "pos": "noun", + "word_frequency": 16684 + }, + { + "word": "gaze", + "article_with_word": "la gaze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gauze", + "example_sentence_native": "L'infirmière a appliqué de la gaze sur la blessure.", + "example_sentence_english": "The nurse applied gauze to the wound.", + "pos": "noun", + "word_frequency": 16685 + }, + { + "word": "gobelin", + "article_with_word": "le gobelin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goblin", + "example_sentence_native": "Dans les contes de fées, les gobelins sont souvent maléfiques.", + "example_sentence_english": "In fairy tales, goblins are often evil.", + "pos": "noun", + "word_frequency": 16687 + }, + { + "word": "haras", + "article_with_word": "le haras", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stud farm", + "example_sentence_native": "Le haras élève des chevaux de course.", + "example_sentence_english": "The stud farm breeds racehorses.", + "pos": "noun", + "word_frequency": 16690 + }, + { + "word": "hausser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise;to shrug", + "example_sentence_native": "Il a haussé les épaules en signe d'indifférence.", + "example_sentence_english": "He shrugged his shoulders as a sign of indifference.", + "pos": "verb", + "word_frequency": 16691 + }, + { + "word": "identifiable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identifiable", + "example_sentence_native": "Les causes de l'accident ne sont pas encore clairement identifiables.", + "example_sentence_english": "The causes of the accident are not yet clearly identifiable.", + "pos": "adjective", + "word_frequency": 16697 + }, + { + "word": "ignoré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ignored;unknown", + "example_sentence_native": "Son appel est resté ignoré.", + "example_sentence_english": "His call remained ignored.", + "pos": "adjective", + "word_frequency": 16698 + }, + { + "word": "indiscret", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indiscreet;nosy", + "example_sentence_native": "Il est très indiscret et pose beaucoup de questions personnelles.", + "example_sentence_english": "He is very indiscreet and asks a lot of personal questions.", + "pos": "adjective", + "word_frequency": 16699 + }, + { + "word": "interministériel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interministerial", + "example_sentence_native": "Une réunion interministérielle a été organisée pour discuter de la crise.", + "example_sentence_english": "An interministerial meeting was organized to discuss the crisis.", + "pos": "adjective", + "word_frequency": 16700 + }, + { + "word": "jacobin", + "article_with_word": "le jacobin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Jacobin", + "example_sentence_native": "Les Jacobins ont joué un rôle clé pendant la Révolution française.", + "example_sentence_english": "The Jacobins played a key role during the French Revolution.", + "pos": "noun", + "word_frequency": 16701 + }, + { + "word": "lipide", + "article_with_word": "le lipide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lipid", + "example_sentence_native": "Les lipides sont essentiels pour le bon fonctionnement de l'organisme.", + "example_sentence_english": "Lipids are essential for the proper functioning of the body.", + "pos": "noun", + "word_frequency": 16704 + }, + { + "word": "lisibilité", + "article_with_word": "la lisibilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "readability", + "example_sentence_native": "La lisibilité du texte est cruciale pour une bonne compréhension.", + "example_sentence_english": "The readability of the text is crucial for good comprehension.", + "pos": "noun", + "word_frequency": 16705 + }, + { + "word": "lynchage", + "article_with_word": "le lynchage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lynching", + "example_sentence_native": "Le lynchage est un acte de violence collective inacceptable.", + "example_sentence_english": "Lynching is an unacceptable act of collective violence.", + "pos": "noun", + "word_frequency": 16707 + }, + { + "word": "légaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legalize", + "example_sentence_native": "De nombreux pays ont choisi de légaliser le cannabis à des fins médicales.", + "example_sentence_english": "Many countries have chosen to legalize cannabis for medical purposes.", + "pos": "verb", + "word_frequency": 16708 + }, + { + "word": "maitriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to master;to control", + "example_sentence_native": "Il faut maîtriser la grammaire pour bien parler une langue.", + "example_sentence_english": "One must master grammar to speak a language well.", + "pos": "verb", + "word_frequency": 16710 + }, + { + "word": "mallette", + "article_with_word": "la mallette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefcase;small case", + "example_sentence_native": "Il a apporté tous ses documents dans une mallette en cuir.", + "example_sentence_english": "He brought all his documents in a leather briefcase.", + "pos": "noun", + "word_frequency": 16712 + }, + { + "word": "mangue", + "article_with_word": "la mangue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mango", + "example_sentence_native": "J'adore le goût sucré de la mangue.", + "example_sentence_english": "I love the sweet taste of mango.", + "pos": "noun", + "word_frequency": 16713 + }, + { + "word": "matelot", + "article_with_word": "le matelot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sailor", + "example_sentence_native": "Le matelot a jeté l'ancre.", + "example_sentence_english": "The sailor dropped anchor.", + "pos": "noun", + "word_frequency": 16715 + }, + { + "word": "migrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to migrate", + "example_sentence_native": "Les oiseaux migrent vers le sud en hiver.", + "example_sentence_english": "Birds migrate south in winter.", + "pos": "verb", + "word_frequency": 16718 + }, + { + "word": "misogyne", + "article_with_word": "un misogyne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misogynist", + "example_sentence_native": "Il a été accusé d'être un misogyne.", + "example_sentence_english": "He was accused of being a misogynist.", + "pos": "noun", + "word_frequency": 16720 + }, + { + "word": "mixage", + "article_with_word": "le mixage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixing (audio;sound)", + "example_sentence_native": "Le mixage de l'album a pris plusieurs semaines.", + "example_sentence_english": "The mixing of the album took several weeks.", + "pos": "noun", + "word_frequency": 16721 + }, + { + "word": "moulage", + "article_with_word": "le moulage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "molding;casting", + "example_sentence_native": "Le moulage de la statue a été réalisé avec précision.", + "example_sentence_english": "The molding of the statue was done with precision.", + "pos": "noun", + "word_frequency": 16725 + }, + { + "word": "mst", + "article_with_word": "une MST", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "STD (Sexually Transmitted Disease)", + "example_sentence_native": "Il est important de se protéger contre les MST.", + "example_sentence_english": "It is important to protect oneself against STDs.", + "pos": "noun", + "word_frequency": 16726 + }, + { + "word": "mutilation", + "article_with_word": "la mutilation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutilation", + "example_sentence_native": "La mutilation est un acte de violence grave.", + "example_sentence_english": "Mutilation is a serious act of violence.", + "pos": "noun", + "word_frequency": 16728 + }, + { + "word": "mvp", + "article_with_word": "le MVP", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "MVP (Most Valuable Player)", + "example_sentence_native": "Il a été nommé MVP de la saison.", + "example_sentence_english": "He was named MVP of the season.", + "pos": "noun", + "word_frequency": 16729 + }, + { + "word": "médiatiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to publicize;to mediate", + "example_sentence_native": "L'affaire a été largement médiatisée.", + "example_sentence_english": "The affair was widely publicized.", + "pos": "verb", + "word_frequency": 16730 + }, + { + "word": "nacelle", + "article_with_word": "la nacelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gondola;basket (of a hot air balloon)", + "example_sentence_native": "La nacelle du ballon s'est élevée dans le ciel.", + "example_sentence_english": "The balloon's gondola rose into the sky.", + "pos": "noun", + "word_frequency": 16731 + }, + { + "word": "naguère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formerly;not long ago (archaic)", + "example_sentence_native": "Naguère, cette rue était très animée.", + "example_sentence_english": "Not long ago, this street was very lively.", + "pos": "adverb", + "word_frequency": 16732 + }, + { + "word": "nivellement", + "article_with_word": "le nivellement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leveling;equalization", + "example_sentence_native": "Le nivellement du terrain est nécessaire avant la construction.", + "example_sentence_english": "The leveling of the ground is necessary before construction.", + "pos": "noun", + "word_frequency": 16737 + }, + { + "word": "nounours", + "article_with_word": "un nounours", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teddy bear", + "example_sentence_native": "L'enfant dormait avec son nounours préféré.", + "example_sentence_english": "The child slept with his favorite teddy bear.", + "pos": "noun", + "word_frequency": 16738 + }, + { + "word": "nouvelliste", + "article_with_word": "un nouvelliste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "short story writer", + "example_sentence_native": "Elle est une nouvelliste talentueuse.", + "example_sentence_english": "She is a talented short story writer.", + "pos": "noun", + "word_frequency": 16739 + }, + { + "word": "numérisation", + "article_with_word": "la numérisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digitization;scanning", + "example_sentence_native": "La numérisation des archives est un projet important.", + "example_sentence_english": "The digitization of the archives is an important project.", + "pos": "noun", + "word_frequency": 16740 + }, + { + "word": "obscène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obscene", + "example_sentence_native": "Ses propos étaient considérés comme obscènes.", + "example_sentence_english": "His remarks were considered obscene.", + "pos": "adjective", + "word_frequency": 16742 + }, + { + "word": "officieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unofficial;informal", + "example_sentence_native": "C'est une information officieuse.", + "example_sentence_english": "This is unofficial information.", + "pos": "adjective", + "word_frequency": 16744 + }, + { + "word": "officine", + "article_with_word": "l'officine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pharmacy (shop);dispensary", + "example_sentence_native": "Le pharmacien travaille dans son officine.", + "example_sentence_english": "The pharmacist works in his pharmacy.", + "pos": "noun", + "word_frequency": 16745 + }, + { + "word": "operation", + "article_with_word": "l'opération", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "operation", + "example_sentence_native": "Elle a subi une opération chirurgicale.", + "example_sentence_english": "She underwent a surgical operation.", + "pos": "noun", + "word_frequency": 16747 + }, + { + "word": "papyrus", + "article_with_word": "le papyrus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papyrus", + "example_sentence_native": "Les anciens Égyptiens écrivaient sur du papyrus.", + "example_sentence_english": "Ancient Egyptians wrote on papyrus.", + "pos": "noun", + "word_frequency": 16752 + }, + { + "word": "pastèque", + "article_with_word": "la pastèque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "watermelon", + "example_sentence_native": "J'adore manger de la pastèque en été.", + "example_sentence_english": "I love eating watermelon in summer.", + "pos": "noun", + "word_frequency": 16753 + }, + { + "word": "patronyme", + "article_with_word": "le patronyme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surname;family name", + "example_sentence_native": "Son patronyme est très courant en France.", + "example_sentence_english": "His surname is very common in France.", + "pos": "noun", + "word_frequency": 16754 + }, + { + "word": "pelage", + "article_with_word": "le pelage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coat;fur (of an animal)", + "example_sentence_native": "Le chat a un pelage doux et soyeux.", + "example_sentence_english": "The cat has a soft and silky coat.", + "pos": "noun", + "word_frequency": 16758 + }, + { + "word": "pitbull", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pitbull", + "example_sentence_native": "Le pitbull est une race de chien puissante.", + "example_sentence_english": "The pitbull is a powerful dog breed.", + "pos": "noun", + "word_frequency": 16763 + }, + { + "word": "plumage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plumage", + "example_sentence_native": "Le plumage coloré de l'oiseau est magnifique.", + "example_sentence_english": "The bird's colorful plumage is magnificent.", + "pos": "noun", + "word_frequency": 16765 + }, + { + "word": "plébiscite", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plebiscite", + "example_sentence_native": "Le gouvernement a organisé un plébiscite sur la nouvelle constitution.", + "example_sentence_english": "The government organized a plebiscite on the new constitution.", + "pos": "noun", + "word_frequency": 16767 + }, + { + "word": "politologue", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "political scientist", + "example_sentence_native": "La politologue a analysé les résultats des élections.", + "example_sentence_english": "The political scientist analyzed the election results.", + "pos": "noun", + "word_frequency": 16768 + }, + { + "word": "pontifical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontifical", + "example_sentence_native": "Le discours pontifical a été diffusé dans le monde entier.", + "example_sentence_english": "The pontifical speech was broadcast worldwide.", + "pos": "adjective", + "word_frequency": 16769 + }, + { + "word": "pressentiment", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premonition;hunch", + "example_sentence_native": "J'ai eu un étrange pressentiment avant l'accident.", + "example_sentence_english": "I had a strange premonition before the accident.", + "pos": "noun", + "word_frequency": 16771 + }, + { + "word": "prune", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plum", + "example_sentence_native": "J'adore manger des prunes en été.", + "example_sentence_english": "I love eating plums in summer.", + "pos": "noun", + "word_frequency": 16773 + }, + { + "word": "prépondérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preponderant;dominant", + "example_sentence_native": "Son rôle dans le projet était prépondérant.", + "example_sentence_english": "His role in the project was preponderant.", + "pos": "adjective", + "word_frequency": 16774 + }, + { + "word": "présager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to foreshadow;to portend", + "example_sentence_native": "Ces signes ne présagent rien de bon.", + "example_sentence_english": "These signs do not foreshadow anything good.", + "pos": "verb", + "word_frequency": 16775 + }, + { + "word": "périr", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perish", + "example_sentence_native": "Beaucoup de marins ont péri dans la tempête.", + "example_sentence_english": "Many sailors perished in the storm.", + "pos": "verb", + "word_frequency": 16776 + }, + { + "word": "péréquation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "equalization;redistribution", + "example_sentence_native": "Le système de péréquation vise à réduire les inégalités régionales.", + "example_sentence_english": "The equalization system aims to reduce regional inequalities.", + "pos": "noun", + "word_frequency": 16777 + }, + { + "word": "radeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raft", + "example_sentence_native": "Ils ont construit un radeau pour traverser la rivière.", + "example_sentence_english": "They built a raft to cross the river.", + "pos": "noun", + "word_frequency": 16779 + }, + { + "word": "radiodiffusion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "broadcasting (radio)", + "example_sentence_native": "La radiodiffusion a joué un rôle clé dans la diffusion de l'information.", + "example_sentence_english": "Radio broadcasting played a key role in disseminating information.", + "pos": "noun", + "word_frequency": 16780 + }, + { + "word": "rayonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shine;to radiate", + "example_sentence_native": "Le soleil commence à rayonner après la pluie.", + "example_sentence_english": "The sun begins to shine after the rain.", + "pos": "verb", + "word_frequency": 16781 + }, + { + "word": "recel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "receiving stolen goods;concealment", + "example_sentence_native": "Il a été accusé de recel de biens volés.", + "example_sentence_english": "He was accused of receiving stolen goods.", + "pos": "noun", + "word_frequency": 16782 + }, + { + "word": "reclus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recluse", + "example_sentence_native": "Il vivait comme un reclus dans sa grande maison.", + "example_sentence_english": "He lived like a recluse in his large house.", + "pos": "noun", + "word_frequency": 16783 + }, + { + "word": "recoin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nook;corner", + "example_sentence_native": "Elle a trouvé un petit recoin tranquille pour lire.", + "example_sentence_english": "She found a quiet little nook to read.", + "pos": "noun", + "word_frequency": 16784 + }, + { + "word": "reflux", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reflux;ebb", + "example_sentence_native": "Le reflux de la marée a laissé des coquillages sur la plage.", + "example_sentence_english": "The ebb tide left shells on the beach.", + "pos": "noun", + "word_frequency": 16785 + }, + { + "word": "relationnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relational", + "example_sentence_native": "Ses compétences relationnelles sont excellentes.", + "example_sentence_english": "His relational skills are excellent.", + "pos": "adjective", + "word_frequency": 16786 + }, + { + "word": "reseau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "network", + "example_sentence_native": "Le reseau de transports en commun est très développé ici.", + "example_sentence_english": "The public transport network is very developed here.", + "pos": "noun", + "word_frequency": 16787 + }, + { + "word": "resserre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storeroom;pantry", + "example_sentence_native": "Nous gardons les conserves dans la resserre.", + "example_sentence_english": "We keep the canned goods in the storeroom.", + "pos": "noun", + "word_frequency": 16788 + }, + { + "word": "retentissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repercussion;impact", + "example_sentence_native": "La décision a eu un grand retentissement sur l'économie.", + "example_sentence_english": "The decision had a great impact on the economy.", + "pos": "noun", + "word_frequency": 16789 + }, + { + "word": "rosier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosebush", + "example_sentence_native": "Le rosier dans le jardin est plein de fleurs.", + "example_sentence_english": "The rosebush in the garden is full of flowers.", + "pos": "noun", + "word_frequency": 16791 + }, + { + "word": "révolu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "past;bygone;elapsed", + "example_sentence_native": "Cette époque est révolue.", + "example_sentence_english": "That era is bygone.", + "pos": "adjective", + "word_frequency": 16792 + }, + { + "word": "skier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ski", + "example_sentence_native": "Nous allons skier à la montagne cet hiver.", + "example_sentence_english": "We are going to ski in the mountains this winter.", + "pos": "verb", + "word_frequency": 16794 + }, + { + "word": "smile", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smile (emoji)", + "example_sentence_native": "Elle a envoyé un message avec un smile.", + "example_sentence_english": "She sent a message with a smile (emoji).", + "pos": "noun", + "word_frequency": 16795 + }, + { + "word": "snack", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack", + "example_sentence_native": "Prenons un snack rapide avant le film.", + "example_sentence_english": "Let's grab a quick snack before the movie.", + "pos": "noun", + "word_frequency": 16796 + }, + { + "word": "soudanais", + "article_with_word": "un Soudanais", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sudanese person", + "example_sentence_native": "Un Soudanais a remporté la course de marathon.", + "example_sentence_english": "A Sudanese person won the marathon race.", + "pos": "noun", + "word_frequency": 16800 + }, + { + "word": "sphérique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spherical", + "example_sentence_native": "La Terre n'est pas parfaitement sphérique.", + "example_sentence_english": "The Earth is not perfectly spherical.", + "pos": "adjective", + "word_frequency": 16801 + }, + { + "word": "spéculatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "speculative", + "example_sentence_native": "Ses théories sont purement spéculatives et manquent de preuves.", + "example_sentence_english": "His theories are purely speculative and lack evidence.", + "pos": "adjective", + "word_frequency": 16802 + }, + { + "word": "stagner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stagnate", + "example_sentence_native": "L'économie a commencé à stagner après plusieurs années de croissance.", + "example_sentence_english": "The economy began to stagnate after several years of growth.", + "pos": "verb", + "word_frequency": 16803 + }, + { + "word": "stocké", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stored", + "example_sentence_native": "Les marchandises sont stockées dans un entrepôt climatisé.", + "example_sentence_english": "The goods are stored in an air-conditioned warehouse.", + "pos": "adjective", + "word_frequency": 16804 + }, + { + "word": "stéphanois", + "article_with_word": "un Stéphanois", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person from Saint-Étienne", + "example_sentence_native": "Un Stéphanois a remporté le concours de pétanque local.", + "example_sentence_english": "A person from Saint-Étienne won the local pétanque competition.", + "pos": "noun", + "word_frequency": 16805 + }, + { + "word": "sulfate", + "article_with_word": "le sulfate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sulfate", + "example_sentence_native": "Le sulfate de cuivre est souvent utilisé comme fongicide.", + "example_sentence_english": "Copper sulfate is often used as a fungicide.", + "pos": "noun", + "word_frequency": 16806 + }, + { + "word": "surpopulation", + "article_with_word": "la surpopulation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overpopulation", + "example_sentence_native": "La surpopulation urbaine pose de nombreux défis sociaux.", + "example_sentence_english": "Urban overpopulation poses many social challenges.", + "pos": "noun", + "word_frequency": 16808 + }, + { + "word": "sénéchal", + "article_with_word": "le sénéchal", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seneschal", + "example_sentence_native": "Le sénéchal était un officier important dans l'administration médiévale.", + "example_sentence_english": "The seneschal was an important officer in medieval administration.", + "pos": "noun", + "word_frequency": 16812 + }, + { + "word": "tisane", + "article_with_word": "la tisane", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "herbal tea", + "example_sentence_native": "Je bois une tisane à la camomille pour me détendre le soir.", + "example_sentence_english": "I drink chamomile herbal tea to relax in the evening.", + "pos": "noun", + "word_frequency": 16816 + }, + { + "word": "tollé", + "article_with_word": "le tollé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outcry", + "example_sentence_native": "La nouvelle décision a provoqué un tollé général parmi la population.", + "example_sentence_english": "The new decision caused a general outcry among the population.", + "pos": "noun", + "word_frequency": 16817 + }, + { + "word": "topo", + "article_with_word": "le topo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "briefing;rundown", + "example_sentence_native": "Fais-moi un rapide topo sur les dernières avancées du projet.", + "example_sentence_english": "Give me a quick rundown on the latest project advancements.", + "pos": "noun", + "word_frequency": 16818 + }, + { + "word": "torpille", + "article_with_word": "la torpille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torpedo", + "example_sentence_native": "Le sous-marin a lancé une torpille sur la cible ennemie.", + "example_sentence_english": "The submarine launched a torpedo at the enemy target.", + "pos": "noun", + "word_frequency": 16820 + }, + { + "word": "trampoline", + "article_with_word": "le trampoline", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trampoline", + "example_sentence_native": "Les enfants adorent sauter sur le trampoline dans le jardin.", + "example_sentence_english": "Children love jumping on the trampoline in the garden.", + "pos": "noun", + "word_frequency": 16821 + }, + { + "word": "unifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unify", + "example_sentence_native": "Le nouveau gouvernement a promis d'unifier le pays après la crise.", + "example_sentence_english": "The new government promised to unify the country after the crisis.", + "pos": "verb", + "word_frequency": 16825 + }, + { + "word": "unisson", + "article_with_word": "l'unisson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unison", + "example_sentence_native": "Les choristes ont chanté à l'unisson, créant une harmonie parfaite.", + "example_sentence_english": "The choristers sang in unison, creating perfect harmony.", + "pos": "noun", + "word_frequency": 16826 + }, + { + "word": "valeureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valiant;courageous", + "example_sentence_native": "Le chevalier valeureux a défendu le royaume avec honneur.", + "example_sentence_english": "The valiant knight defended the kingdom with honor.", + "pos": "adjective", + "word_frequency": 16829 + }, + { + "word": "verdier", + "article_with_word": "le verdier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greenfinch", + "example_sentence_native": "Le verdier est un petit oiseau commun dans les jardins européens.", + "example_sentence_english": "The greenfinch is a small bird common in European gardens.", + "pos": "noun", + "word_frequency": 16830 + }, + { + "word": "vertèbre", + "article_with_word": "la vertèbre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vertebra", + "example_sentence_native": "Il s'est blessé à une vertèbre lors de sa chute.", + "example_sentence_english": "He injured a vertebra during his fall.", + "pos": "noun", + "word_frequency": 16831 + }, + { + "word": "visualisation", + "article_with_word": "la visualisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visualization", + "example_sentence_native": "La visualisation des données aide à comprendre des informations complexes.", + "example_sentence_english": "Data visualization helps to understand complex information.", + "pos": "noun", + "word_frequency": 16835 + }, + { + "word": "viticulture", + "article_with_word": "la viticulture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viticulture", + "example_sentence_native": "La viticulture est une tradition ancestrale dans cette région.", + "example_sentence_english": "Viticulture is an ancestral tradition in this region.", + "pos": "noun", + "word_frequency": 16836 + }, + { + "word": "volte", + "article_with_word": "la volte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turn;volte (in fencing;riding)", + "example_sentence_native": "Le cavalier a exécuté une volte parfaite autour du pilier.", + "example_sentence_english": "The rider executed a perfect volte around the pillar.", + "pos": "noun", + "word_frequency": 16838 + }, + { + "word": "édito", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editorial", + "example_sentence_native": "L'édito du journal critiquait la nouvelle loi.", + "example_sentence_english": "The newspaper's editorial criticized the new law.", + "pos": "noun", + "word_frequency": 16840 + }, + { + "word": "électrification", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electrification", + "example_sentence_native": "L'électrification des zones rurales est un projet majeur.", + "example_sentence_english": "The electrification of rural areas is a major project.", + "pos": "noun", + "word_frequency": 16841 + }, + { + "word": "électrode", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electrode", + "example_sentence_native": "Il a placé les électrodes sur la peau du patient.", + "example_sentence_english": "He placed the electrodes on the patient's skin.", + "pos": "noun", + "word_frequency": 16842 + }, + { + "word": "épiscopat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "episcopate", + "example_sentence_native": "L'épiscopat français a publié une déclaration.", + "example_sentence_english": "The French episcopate published a statement.", + "pos": "noun", + "word_frequency": 16843 + }, + { + "word": "evacuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to evacuate", + "example_sentence_native": "Il faut évacuer le bâtiment immédiatement.", + "example_sentence_english": "We must evacuate the building immediately.", + "pos": "verb", + "word_frequency": 16844 + }, + { + "word": "académicien", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academician", + "example_sentence_native": "Il est devenu académicien à l'âge de 50 ans.", + "example_sentence_english": "He became an academician at the age of 50.", + "pos": "noun", + "word_frequency": 16845 + }, + { + "word": "acces", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "access", + "example_sentence_native": "L'accès au parc est gratuit.", + "example_sentence_english": "Access to the park is free.", + "pos": "noun", + "word_frequency": 16846 + }, + { + "word": "amasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accumulate;to gather", + "example_sentence_native": "Il a amassé une fortune considérable.", + "example_sentence_english": "He accumulated a considerable fortune.", + "pos": "verb", + "word_frequency": 16850 + }, + { + "word": "ambulant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "itinerant;mobile", + "example_sentence_native": "Les vendeurs ambulants sont nombreux sur le marché.", + "example_sentence_english": "There are many itinerant vendors at the market.", + "pos": "adjective", + "word_frequency": 16851 + }, + { + "word": "aménagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fitted out;converted;developed", + "example_sentence_native": "L'appartement est bien aménagé.", + "example_sentence_english": "The apartment is well fitted out.", + "pos": "adjective", + "word_frequency": 16853 + }, + { + "word": "apnée", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apnea;freediving", + "example_sentence_native": "Il pratique l'apnée en mer.", + "example_sentence_english": "He practices freediving in the sea.", + "pos": "noun", + "word_frequency": 16855 + }, + { + "word": "aristocratique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aristocratic", + "example_sentence_native": "Il a des manières très aristocratiques.", + "example_sentence_english": "He has very aristocratic manners.", + "pos": "adjective", + "word_frequency": 16856 + }, + { + "word": "assiéger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to besiege", + "example_sentence_native": "Les troupes ont assiégé la ville pendant des mois.", + "example_sentence_english": "The troops besieged the city for months.", + "pos": "verb", + "word_frequency": 16858 + }, + { + "word": "astrologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astrological", + "example_sentence_native": "Elle consulte souvent son horoscope astrologique.", + "example_sentence_english": "She often consults her astrological horoscope.", + "pos": "adjective", + "word_frequency": 16860 + }, + { + "word": "attirant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attractive;appealing", + "example_sentence_native": "Ce paysage est très attirant.", + "example_sentence_english": "This landscape is very attractive.", + "pos": "adjective", + "word_frequency": 16861 + }, + { + "word": "attiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stir up;to fuel", + "example_sentence_native": "Ses paroles ont attisé la colère de la foule.", + "example_sentence_english": "His words stirred up the crowd's anger.", + "pos": "verb", + "word_frequency": 16862 + }, + { + "word": "aumône", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alms;charity", + "example_sentence_native": "Il a fait l'aumône à un mendiant.", + "example_sentence_english": "He gave alms to a beggar.", + "pos": "noun", + "word_frequency": 16863 + }, + { + "word": "aéronef", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aircraft", + "example_sentence_native": "L'aéronef a décollé à l'heure prévue.", + "example_sentence_english": "The aircraft took off on schedule.", + "pos": "noun", + "word_frequency": 16865 + }, + { + "word": "aïeul", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestor;forefather", + "example_sentence_native": "Ses aïeuls venaient de cette région.", + "example_sentence_english": "His ancestors came from this region.", + "pos": "noun", + "word_frequency": 16866 + }, + { + "word": "basculement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tipping;shift;swing", + "example_sentence_native": "Le basculement de l'opinion publique a été rapide.", + "example_sentence_english": "The shift in public opinion was rapid.", + "pos": "noun", + "word_frequency": 16868 + }, + { + "word": "bilatéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bilateral", + "example_sentence_native": "Ils ont signé un accord bilatéral.", + "example_sentence_english": "They signed a bilateral agreement.", + "pos": "adjective", + "word_frequency": 16874 + }, + { + "word": "bocage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bocage;hedgerow landscape", + "example_sentence_native": "La Normandie est connue pour son bocage.", + "example_sentence_english": "Normandy is known for its hedgerow landscape.", + "pos": "noun", + "word_frequency": 16875 + }, + { + "word": "boomerang", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boomerang", + "example_sentence_native": "Le boomerang est revenu vers lui.", + "example_sentence_english": "The boomerang came back to him.", + "pos": "noun", + "word_frequency": 16876 + }, + { + "word": "boulon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bolt", + "example_sentence_native": "Il faut serrer ce boulon.", + "example_sentence_english": "This bolt needs to be tightened.", + "pos": "noun", + "word_frequency": 16878 + }, + { + "word": "braqueur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robber;hold-up man", + "example_sentence_native": "Le braqueur a été arrêté par la police.", + "example_sentence_english": "The robber was arrested by the police.", + "pos": "noun", + "word_frequency": 16879 + }, + { + "word": "brunir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to brown;to tan", + "example_sentence_native": "Le soleil a fait brunir sa peau.", + "example_sentence_english": "The sun browned his skin.", + "pos": "verb", + "word_frequency": 16883 + }, + { + "word": "cantonal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cantonal", + "example_sentence_native": "Les élections cantonales auront lieu en mars.", + "example_sentence_english": "The cantonal elections will take place in March.", + "pos": "adjective", + "word_frequency": 16887 + }, + { + "word": "caritatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charitable", + "example_sentence_native": "Il participe à des actions caritatives.", + "example_sentence_english": "He participates in charitable actions.", + "pos": "adjective", + "word_frequency": 16888 + }, + { + "word": "chevalerie", + "article_with_word": "la chevalerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chivalry", + "example_sentence_native": "La chevalerie est un code d'honneur.", + "example_sentence_english": "Chivalry is a code of honor.", + "pos": "noun", + "word_frequency": 16892 + }, + { + "word": "chevreuil", + "article_with_word": "le chevreuil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roe deer", + "example_sentence_native": "Nous avons vu un chevreuil dans la forêt.", + "example_sentence_english": "We saw a roe deer in the forest.", + "pos": "noun", + "word_frequency": 16893 + }, + { + "word": "chiche", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stingy;meager", + "example_sentence_native": "Il est très chiche avec son argent.", + "example_sentence_english": "He is very stingy with his money.", + "pos": "adjective", + "word_frequency": 16894 + }, + { + "word": "chignon", + "article_with_word": "le chignon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bun (hair)", + "example_sentence_native": "Elle a attaché ses cheveux en chignon.", + "example_sentence_english": "She tied her hair in a bun.", + "pos": "noun", + "word_frequency": 16895 + }, + { + "word": "citrouille", + "article_with_word": "la citrouille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pumpkin", + "example_sentence_native": "Nous avons sculpté une citrouille pour Halloween.", + "example_sentence_english": "We carved a pumpkin for Halloween.", + "pos": "noun", + "word_frequency": 16898 + }, + { + "word": "clandestinité", + "article_with_word": "la clandestinité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clandestinity;secrecy", + "example_sentence_native": "Il a vécu dans la clandestinité pendant des années.", + "example_sentence_english": "He lived in clandestinity for years.", + "pos": "noun", + "word_frequency": 16899 + }, + { + "word": "colocation", + "article_with_word": "la colocation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flatshare;shared accommodation", + "example_sentence_native": "La colocation est une bonne solution pour les étudiants.", + "example_sentence_english": "Flatsharing is a good solution for students.", + "pos": "noun", + "word_frequency": 16901 + }, + { + "word": "colza", + "article_with_word": "le colza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rapeseed", + "example_sentence_native": "L'huile de colza est utilisée en cuisine.", + "example_sentence_english": "Rapeseed oil is used in cooking.", + "pos": "noun", + "word_frequency": 16902 + }, + { + "word": "confluent", + "article_with_word": "le confluent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confluence", + "example_sentence_native": "Lyon est située au confluent du Rhône et de la Saône.", + "example_sentence_english": "Lyon is located at the confluence of the Rhône and Saône.", + "pos": "noun", + "word_frequency": 16904 + }, + { + "word": "contestable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disputable;questionable", + "example_sentence_native": "Son argumentation est contestable.", + "example_sentence_english": "His argumentation is questionable.", + "pos": "adjective", + "word_frequency": 16905 + }, + { + "word": "continuum", + "article_with_word": "le continuum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuum", + "example_sentence_native": "Il existe un continuum entre ces deux concepts.", + "example_sentence_english": "There is a continuum between these two concepts.", + "pos": "noun", + "word_frequency": 16906 + }, + { + "word": "convulsion", + "article_with_word": "la convulsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convulsion", + "example_sentence_native": "Le patient a eu des convulsions.", + "example_sentence_english": "The patient had convulsions.", + "pos": "noun", + "word_frequency": 16907 + }, + { + "word": "cordonnier", + "article_with_word": "le cordonnier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoemaker;cobbler", + "example_sentence_native": "J'ai apporté mes chaussures chez le cordonnier.", + "example_sentence_english": "I took my shoes to the shoemaker.", + "pos": "noun", + "word_frequency": 16908 + }, + { + "word": "coutumier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "customary", + "example_sentence_native": "C'est une pratique coutumière dans cette région.", + "example_sentence_english": "It's a customary practice in this region.", + "pos": "adjective", + "word_frequency": 16911 + }, + { + "word": "crible", + "article_with_word": "le crible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sieve;screen", + "example_sentence_native": "Il a passé les données au crible.", + "example_sentence_english": "He sifted through the data.", + "pos": "noun", + "word_frequency": 16912 + }, + { + "word": "cruche", + "article_with_word": "la cruche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jug;pitcher", + "example_sentence_native": "Remplis la cruche d'eau.", + "example_sentence_english": "Fill the jug with water.", + "pos": "noun", + "word_frequency": 16913 + }, + { + "word": "cécité", + "article_with_word": "la cécité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blindness", + "example_sentence_native": "La cécité peut être causée par diverses maladies.", + "example_sentence_english": "Blindness can be caused by various diseases.", + "pos": "noun", + "word_frequency": 16916 + }, + { + "word": "diapason", + "article_with_word": "le diapason", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuning fork;pitch", + "example_sentence_native": "Le musicien a utilisé un diapason pour accorder son instrument.", + "example_sentence_english": "The musician used a tuning fork to tune his instrument.", + "pos": "noun", + "word_frequency": 16919 + }, + { + "word": "diaporama", + "article_with_word": "le diaporama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slideshow", + "example_sentence_native": "Le diaporama a duré une heure.", + "example_sentence_english": "The slideshow lasted an hour.", + "pos": "noun", + "word_frequency": 16920 + }, + { + "word": "doucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shower", + "example_sentence_native": "Je vais me doucher avant de sortir.", + "example_sentence_english": "I'm going to shower before going out.", + "pos": "verb", + "word_frequency": 16922 + }, + { + "word": "dumping", + "article_with_word": "le dumping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dumping", + "example_sentence_native": "Le dumping est une pratique commerciale déloyale.", + "example_sentence_english": "Dumping is an unfair trade practice.", + "pos": "noun", + "word_frequency": 16923 + }, + { + "word": "durabilité", + "article_with_word": "la durabilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustainability;durability", + "example_sentence_native": "La durabilité des matériaux est essentielle.", + "example_sentence_english": "The durability of materials is essential.", + "pos": "noun", + "word_frequency": 16924 + }, + { + "word": "dérèglement", + "article_with_word": "le dérèglement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deregulation;disruption;imbalance", + "example_sentence_native": "Le dérèglement climatique est une préoccupation majeure.", + "example_sentence_english": "Climate disruption is a major concern.", + "pos": "noun", + "word_frequency": 16925 + }, + { + "word": "détritus", + "article_with_word": "les détritus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rubbish;debris", + "example_sentence_native": "Ne jetez pas vos détritus par terre.", + "example_sentence_english": "Don't throw your rubbish on the ground.", + "pos": "noun", + "word_frequency": 16926 + }, + { + "word": "electronic", + "article_with_word": "l'électronique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronics", + "example_sentence_native": "Il étudie l'électronique à l'université.", + "example_sentence_english": "He studies electronics at university.", + "pos": "noun", + "word_frequency": 16927 + }, + { + "word": "enchanteur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enchanting;charming", + "example_sentence_native": "C'était un spectacle enchanteur.", + "example_sentence_english": "It was an enchanting show.", + "pos": "adjective", + "word_frequency": 16928 + }, + { + "word": "enfouir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bury;to inter", + "example_sentence_native": "Ils ont décidé d'enfouir les déchets.", + "example_sentence_english": "They decided to bury the waste.", + "pos": "verb", + "word_frequency": 16929 + }, + { + "word": "errer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wander;to roam", + "example_sentence_native": "Il aime errer dans les rues de la ville.", + "example_sentence_english": "He likes to wander in the city streets.", + "pos": "verb", + "word_frequency": 16931 + }, + { + "word": "expéditeur", + "article_with_word": "l'expéditeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sender", + "example_sentence_native": "Le nom de l'expéditeur n'était pas lisible.", + "example_sentence_english": "The sender's name was not legible.", + "pos": "noun", + "word_frequency": 16933 + }, + { + "word": "facturer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invoice;to bill", + "example_sentence_native": "Nous allons vous facturer les services.", + "example_sentence_english": "We will bill you for the services.", + "pos": "verb", + "word_frequency": 16934 + }, + { + "word": "fendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to split;to crack", + "example_sentence_native": "Il a fendu le bois pour le feu.", + "example_sentence_english": "He split the wood for the fire.", + "pos": "verb", + "word_frequency": 16936 + }, + { + "word": "flaque", + "article_with_word": "la flaque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puddle", + "example_sentence_native": "Attention, il y a une flaque d'eau.", + "example_sentence_english": "Be careful, there's a puddle of water.", + "pos": "noun", + "word_frequency": 16937 + }, + { + "word": "florissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flourishing;thriving", + "example_sentence_native": "Son entreprise est très florissante.", + "example_sentence_english": "His business is very flourishing.", + "pos": "adjective", + "word_frequency": 16938 + }, + { + "word": "foireux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crappy;messed up (colloquial)", + "example_sentence_native": "Ce plan est complètement foireux.", + "example_sentence_english": "This plan is completely messed up.", + "pos": "adjective", + "word_frequency": 16939 + }, + { + "word": "folklorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folkloric;traditional", + "example_sentence_native": "Ils ont assisté à un spectacle folklorique.", + "example_sentence_english": "They attended a folkloric show.", + "pos": "adjective", + "word_frequency": 16941 + }, + { + "word": "frere", + "article_with_word": "le frère", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brother", + "example_sentence_native": "Mon frère habite à Paris.", + "example_sentence_english": "My brother lives in Paris.", + "pos": "noun", + "word_frequency": 16944 + }, + { + "word": "froisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crease;to wrinkle;to offend", + "example_sentence_native": "Ne froissez pas cette chemise.", + "example_sentence_english": "Don't wrinkle this shirt.", + "pos": "verb", + "word_frequency": 16945 + }, + { + "word": "globalité", + "article_with_word": "la globalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globality;entirety;overall nature", + "example_sentence_native": "Il faut considérer la globalité du problème.", + "example_sentence_english": "We must consider the entirety of the problem.", + "pos": "noun", + "word_frequency": 16949 + }, + { + "word": "gnome", + "article_with_word": "le gnome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gnome", + "example_sentence_native": "Le gnome vivait sous la terre.", + "example_sentence_english": "The gnome lived underground.", + "pos": "noun", + "word_frequency": 16950 + }, + { + "word": "gospel", + "article_with_word": "le gospel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gospel (music)", + "example_sentence_native": "J'adore écouter du gospel.", + "example_sentence_english": "I love listening to gospel music.", + "pos": "noun", + "word_frequency": 16951 + }, + { + "word": "hygiénique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygienic", + "example_sentence_native": "Il est important d'avoir des habitudes hygiéniques.", + "example_sentence_english": "It is important to have hygienic habits.", + "pos": "adjective", + "word_frequency": 16957 + }, + { + "word": "illustrateur", + "article_with_word": "l'illustrateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustrator", + "example_sentence_native": "L'illustrateur a créé de belles images pour le livre.", + "example_sentence_english": "The illustrator created beautiful images for the book.", + "pos": "noun", + "word_frequency": 16958 + }, + { + "word": "immiscer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to interfere;to meddle", + "example_sentence_native": "Il ne faut pas s'immiscer dans les affaires des autres.", + "example_sentence_english": "One should not interfere in other people's business.", + "pos": "verb", + "word_frequency": 16959 + }, + { + "word": "impérialiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialist", + "example_sentence_native": "Ses idées impérialistes sont dépassées.", + "example_sentence_english": "His imperialist ideas are outdated.", + "pos": "adjective", + "word_frequency": 16960 + }, + { + "word": "inchangé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unchanged", + "example_sentence_native": "La situation est restée inchangée.", + "example_sentence_english": "The situation remained unchanged.", + "pos": "adjective", + "word_frequency": 16961 + }, + { + "word": "indus", + "article_with_word": "l'indus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undue payment", + "example_sentence_native": "Il a dû rembourser l'indus perçu.", + "example_sentence_english": "He had to repay the undue payment received.", + "pos": "noun", + "word_frequency": 16962 + }, + { + "word": "instrumentalisation", + "article_with_word": "l'instrumentalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instrumentalization", + "example_sentence_native": "L'instrumentalisation de la peur est une tactique politique.", + "example_sentence_english": "The instrumentalization of fear is a political tactic.", + "pos": "noun", + "word_frequency": 16963 + }, + { + "word": "intercommunal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inter-municipal", + "example_sentence_native": "Le projet est géré par une structure intercommunale.", + "example_sentence_english": "The project is managed by an inter-municipal structure.", + "pos": "adjective", + "word_frequency": 16964 + }, + { + "word": "intégrisme", + "article_with_word": "l'intégrisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamentalism", + "example_sentence_native": "L'intégrisme religieux est une menace pour la liberté.", + "example_sentence_english": "Religious fundamentalism is a threat to freedom.", + "pos": "noun", + "word_frequency": 16965 + }, + { + "word": "inépuisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexhaustible", + "example_sentence_native": "Son énergie semble inépuisable.", + "example_sentence_english": "His energy seems inexhaustible.", + "pos": "adjective", + "word_frequency": 16966 + }, + { + "word": "lacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let go;to release", + "example_sentence_native": "Il a lâché la corde.", + "example_sentence_english": "He let go of the rope.", + "pos": "verb", + "word_frequency": 16971 + }, + { + "word": "laque", + "article_with_word": "la laque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacquer;hairspray", + "example_sentence_native": "Elle a mis de la laque sur ses cheveux.", + "example_sentence_english": "She put hairspray on her hair.", + "pos": "noun", + "word_frequency": 16973 + }, + { + "word": "libérateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberating", + "example_sentence_native": "Ce fut un discours libérateur.", + "example_sentence_english": "It was a liberating speech.", + "pos": "adjective", + "word_frequency": 16979 + }, + { + "word": "lisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to smooth;to straighten", + "example_sentence_native": "Elle aime lisser ses cheveux.", + "example_sentence_english": "She likes to straighten her hair.", + "pos": "verb", + "word_frequency": 16980 + }, + { + "word": "louve", + "article_with_word": "la louve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "she-wolf", + "example_sentence_native": "La louve protège ses petits.", + "example_sentence_english": "The she-wolf protects her young.", + "pos": "noun", + "word_frequency": 16982 + }, + { + "word": "maillage", + "article_with_word": "le maillage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mesh;network coverage", + "example_sentence_native": "Le maillage du réseau est excellent.", + "example_sentence_english": "The network coverage is excellent.", + "pos": "noun", + "word_frequency": 16985 + }, + { + "word": "mainmise", + "article_with_word": "la mainmise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grip;control", + "example_sentence_native": "Il a une mainmise totale sur l'entreprise.", + "example_sentence_english": "He has total control over the company.", + "pos": "noun", + "word_frequency": 16986 + }, + { + "word": "mammouth", + "article_with_word": "le mammouth", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mammoth", + "example_sentence_native": "Le mammouth est un animal préhistorique.", + "example_sentence_english": "The mammoth is a prehistoric animal.", + "pos": "noun", + "word_frequency": 16988 + }, + { + "word": "matérialisme", + "article_with_word": "le matérialisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "materialism", + "example_sentence_native": "Le matérialisme est une doctrine philosophique.", + "example_sentence_english": "Materialism is a philosophical doctrine.", + "pos": "noun", + "word_frequency": 16991 + }, + { + "word": "mutinerie", + "article_with_word": "la mutinerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutiny", + "example_sentence_native": "La mutinerie a éclaté à bord du navire.", + "example_sentence_english": "The mutiny broke out aboard the ship.", + "pos": "noun", + "word_frequency": 16997 + }, + { + "word": "mutualisation", + "article_with_word": "la mutualisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutualization;pooling", + "example_sentence_native": "La mutualisation des ressources est essentielle.", + "example_sentence_english": "The pooling of resources is essential.", + "pos": "noun", + "word_frequency": 16998 + }, + { + "word": "méandre", + "article_with_word": "un méandre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meander", + "example_sentence_native": "La rivière forme de nombreux méandres à travers la plaine.", + "example_sentence_english": "The river forms many meanders across the plain.", + "pos": "noun", + "word_frequency": 17000 + }, + { + "word": "méningite", + "article_with_word": "la méningite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meningitis", + "example_sentence_native": "La méningite est une inflammation des méninges.", + "example_sentence_english": "Meningitis is an inflammation of the meninges.", + "pos": "noun", + "word_frequency": 17001 + }, + { + "word": "neurologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurological", + "example_sentence_native": "Il souffre d'un trouble neurologique rare.", + "example_sentence_english": "He suffers from a rare neurological disorder.", + "pos": "adjective", + "word_frequency": 17004 + }, + { + "word": "neuroscience", + "article_with_word": "la neuroscience", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neuroscience", + "example_sentence_native": "La neuroscience étudie le système nerveux.", + "example_sentence_english": "Neuroscience studies the nervous system.", + "pos": "noun", + "word_frequency": 17005 + }, + { + "word": "orangé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orange (color)", + "example_sentence_native": "Le ciel était d'un beau orangé au coucher du soleil.", + "example_sentence_english": "The sky was a beautiful orange at sunset.", + "pos": "adjective", + "word_frequency": 17013 + }, + { + "word": "pantoufle", + "article_with_word": "la pantoufle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slipper", + "example_sentence_native": "J'ai mis mes pantoufles en rentrant à la maison.", + "example_sentence_english": "I put on my slippers when I got home.", + "pos": "noun", + "word_frequency": 17017 + }, + { + "word": "pathogène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathogenic", + "example_sentence_native": "Certaines bactéries sont pathogènes pour l'homme.", + "example_sentence_english": "Some bacteria are pathogenic to humans.", + "pos": "adjective", + "word_frequency": 17018 + }, + { + "word": "perversion", + "article_with_word": "la perversion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perversion", + "example_sentence_native": "L'étude de la perversion est complexe en psychologie.", + "example_sentence_english": "The study of perversion is complex in psychology.", + "pos": "noun", + "word_frequency": 17022 + }, + { + "word": "philologie", + "article_with_word": "la philologie", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "philology", + "example_sentence_native": "La philologie est l'étude des langues dans leurs sources historiques.", + "example_sentence_english": "Philology is the study of languages in their historical sources.", + "pos": "noun", + "word_frequency": 17024 + }, + { + "word": "pointage", + "article_with_word": "le pointage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scoring;clocking in", + "example_sentence_native": "Le pointage des heures de travail est obligatoire.", + "example_sentence_english": "Clocking in for work hours is mandatory.", + "pos": "noun", + "word_frequency": 17025 + }, + { + "word": "prédication", + "article_with_word": "la prédication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preaching;predication", + "example_sentence_native": "La prédication du pasteur a duré une heure.", + "example_sentence_english": "The pastor's preaching lasted an hour.", + "pos": "noun", + "word_frequency": 17028 + }, + { + "word": "prétexter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to use as a pretext;to pretend", + "example_sentence_native": "Il a prétexté une maladie pour ne pas venir.", + "example_sentence_english": "He pretended to be sick so as not to come.", + "pos": "verb", + "word_frequency": 17029 + }, + { + "word": "quantum", + "article_with_word": "le quantum", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "quantum", + "example_sentence_native": "La physique quantique étudie les phénomènes au niveau du quantum.", + "example_sentence_english": "Quantum physics studies phenomena at the quantum level.", + "pos": "noun", + "word_frequency": 17032 + }, + { + "word": "raccord", + "article_with_word": "le raccord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection;fitting;continuity", + "example_sentence_native": "Il faut vérifier le raccord des tuyaux.", + "example_sentence_english": "You need to check the connection of the pipes.", + "pos": "noun", + "word_frequency": 17033 + }, + { + "word": "rapatrier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repatriate", + "example_sentence_native": "Le gouvernement a décidé de rapatrier ses citoyens.", + "example_sentence_english": "The government decided to repatriate its citizens.", + "pos": "verb", + "word_frequency": 17035 + }, + { + "word": "refait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redone;remade", + "example_sentence_native": "Le pont a été entièrement refait après l'inondation.", + "example_sentence_english": "The bridge was completely redone after the flood.", + "pos": "adjective", + "word_frequency": 17037 + }, + { + "word": "refusé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refused;rejected", + "example_sentence_native": "Sa demande de visa a été refusée.", + "example_sentence_english": "His visa application was refused.", + "pos": "adjective", + "word_frequency": 17038 + }, + { + "word": "revu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reviewed;seen again", + "example_sentence_native": "Le rapport a été revu et corrigé.", + "example_sentence_english": "The report has been reviewed and corrected.", + "pos": "adjective", + "word_frequency": 17039 + }, + { + "word": "routeur", + "article_with_word": "le routeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "router", + "example_sentence_native": "Le routeur Wi-Fi est dans le salon.", + "example_sentence_english": "The Wi-Fi router is in the living room.", + "pos": "noun", + "word_frequency": 17042 + }, + { + "word": "réécriture", + "article_with_word": "la réécriture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rewriting", + "example_sentence_native": "La réécriture du scénario a pris plusieurs mois.", + "example_sentence_english": "The rewriting of the script took several months.", + "pos": "noun", + "word_frequency": 17046 + }, + { + "word": "sacrifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrificed", + "example_sentence_native": "Il se sentait sacrifié pour la cause.", + "example_sentence_english": "He felt sacrificed for the cause.", + "pos": "adjective", + "word_frequency": 17047 + }, + { + "word": "sbire", + "article_with_word": "un sbire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "henchman;minion", + "example_sentence_native": "Le méchant était toujours accompagné de ses sbires.", + "example_sentence_english": "The villain was always accompanied by his henchmen.", + "pos": "noun", + "word_frequency": 17052 + }, + { + "word": "sot", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foolish;stupid", + "example_sentence_native": "Il a fait un commentaire sot.", + "example_sentence_english": "He made a foolish comment.", + "pos": "adjective", + "word_frequency": 17056 + }, + { + "word": "suffisance", + "article_with_word": "la suffisance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sufficiency;smugness", + "example_sentence_native": "Sa suffisance était insupportable.", + "example_sentence_english": "His smugness was unbearable.", + "pos": "noun", + "word_frequency": 17058 + }, + { + "word": "supervisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supervised", + "example_sentence_native": "Le projet est supervisé par un expert.", + "example_sentence_english": "The project is supervised by an expert.", + "pos": "adjective", + "word_frequency": 17059 + }, + { + "word": "taillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cut;carved;suited", + "example_sentence_native": "Il est taillé pour ce rôle.", + "example_sentence_english": "He is suited for this role.", + "pos": "adjective", + "word_frequency": 17060 + }, + { + "word": "thermal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thermal", + "example_sentence_native": "Nous avons installé un système de chauffage thermal.", + "example_sentence_english": "We installed a thermal heating system.", + "pos": "adjective", + "word_frequency": 17062 + }, + { + "word": "tourmenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tormented;troubled", + "example_sentence_native": "Il avait l'air tourmenté par ses pensées.", + "example_sentence_english": "He looked tormented by his thoughts.", + "pos": "adjective", + "word_frequency": 17065 + }, + { + "word": "trahi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "betrayed", + "example_sentence_native": "Elle se sentait trahie par son ami.", + "example_sentence_english": "She felt betrayed by her friend.", + "pos": "adjective", + "word_frequency": 17066 + }, + { + "word": "trentenaire", + "article_with_word": "un trentenaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person in their thirties", + "example_sentence_native": "Ce trentenaire cherche un nouvel emploi.", + "example_sentence_english": "This person in their thirties is looking for a new job.", + "pos": "noun", + "word_frequency": 17067 + }, + { + "word": "turbulence", + "article_with_word": "la turbulence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbulence", + "example_sentence_native": "L'avion a traversé une zone de forte turbulence.", + "example_sentence_english": "The plane went through an area of strong turbulence.", + "pos": "noun", + "word_frequency": 17068 + }, + { + "word": "vaudou", + "article_with_word": "le vaudou", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voodoo", + "example_sentence_native": "Le vaudou est une religion pratiquée dans certaines régions.", + "example_sentence_english": "Voodoo is a religion practiced in certain regions.", + "pos": "noun", + "word_frequency": 17069 + }, + { + "word": "virtuosité", + "article_with_word": "la virtuosité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virtuosity", + "example_sentence_native": "Sa virtuosité au piano est impressionnante.", + "example_sentence_english": "His virtuosity on the piano is impressive.", + "pos": "noun", + "word_frequency": 17071 + }, + { + "word": "voté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voted;approved", + "example_sentence_native": "La loi a été votée à l'unanimité.", + "example_sentence_english": "The law was voted unanimously.", + "pos": "adjective", + "word_frequency": 17072 + }, + { + "word": "échevin", + "article_with_word": "un échevin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alderman;municipal councillor", + "example_sentence_native": "L'échevin est responsable des affaires culturelles de la ville.", + "example_sentence_english": "The alderman is responsible for the city's cultural affairs.", + "pos": "noun", + "word_frequency": 17077 + }, + { + "word": "écusson", + "article_with_word": "un écusson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "badge;emblem;crest", + "example_sentence_native": "Il portait un écusson sur sa veste.", + "example_sentence_english": "He wore a badge on his jacket.", + "pos": "noun", + "word_frequency": 17078 + }, + { + "word": "éditorialiste", + "article_with_word": "un éditorialiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "columnist;editorial writer", + "example_sentence_native": "L'éditorialiste a exprimé son opinion sur l'actualité.", + "example_sentence_english": "The columnist expressed his opinion on current events.", + "pos": "noun", + "word_frequency": 17079 + }, + { + "word": "éther", + "article_with_word": "l'éther", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ether", + "example_sentence_native": "L'éther est un composé organique volatil.", + "example_sentence_english": "Ether is a volatile organic compound.", + "pos": "noun", + "word_frequency": 17080 + }, + { + "word": "étreinte", + "article_with_word": "l'étreinte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embrace;hug", + "example_sentence_native": "Elle lui donna une étreinte chaleureuse.", + "example_sentence_english": "She gave him a warm embrace.", + "pos": "noun", + "word_frequency": 17081 + }, + { + "word": "évangélisation", + "article_with_word": "l'évangélisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evangelization", + "example_sentence_native": "Le processus d'évangélisation a duré des siècles.", + "example_sentence_english": "The process of evangelization lasted for centuries.", + "pos": "noun", + "word_frequency": 17082 + }, + { + "word": "abcès", + "article_with_word": "l'abcès", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abcess", + "example_sentence_native": "Il a dû consulter un médecin pour un abcès dentaire.", + "example_sentence_english": "He had to see a doctor for a dental abscess.", + "pos": "noun", + "word_frequency": 17083 + }, + { + "word": "aboli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abolished", + "example_sentence_native": "L'esclavage a été aboli dans de nombreux pays.", + "example_sentence_english": "Slavery has been abolished in many countries.", + "pos": "adjective", + "word_frequency": 17084 + }, + { + "word": "acuité", + "article_with_word": "l'acuité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acuity;sharpness", + "example_sentence_native": "Il a une grande acuité visuelle.", + "example_sentence_english": "He has great visual acuity.", + "pos": "noun", + "word_frequency": 17085 + }, + { + "word": "agréé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approved;accredited", + "example_sentence_native": "Ce centre de formation est agréé par l'État.", + "example_sentence_english": "This training center is approved by the state.", + "pos": "adjective", + "word_frequency": 17087 + }, + { + "word": "amphi", + "article_with_word": "l'amphi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lecture hall (informal)", + "example_sentence_native": "Le cours aura lieu dans le grand amphi.", + "example_sentence_english": "The lecture will take place in the large lecture hall.", + "pos": "noun", + "word_frequency": 17089 + }, + { + "word": "américano", + "article_with_word": "un américano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Americano (cocktail)", + "example_sentence_native": "Je voudrais un américano, s'il vous plaît.", + "example_sentence_english": "I would like an Americano, please.", + "pos": "noun", + "word_frequency": 17090 + }, + { + "word": "anis", + "article_with_word": "l'anis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anise", + "example_sentence_native": "Le pastis est une boisson à base d'anis.", + "example_sentence_english": "Pastis is an anise-based drink.", + "pos": "noun", + "word_frequency": 17091 + }, + { + "word": "apothéose", + "article_with_word": "l'apothéose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apotheosis;climax", + "example_sentence_native": "Le concert s'est terminé en apothéose.", + "example_sentence_english": "The concert ended in a grand climax.", + "pos": "noun", + "word_frequency": 17092 + }, + { + "word": "archange", + "article_with_word": "l'archange", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archangel", + "example_sentence_native": "L'archange Gabriel est mentionné dans plusieurs textes sacrés.", + "example_sentence_english": "The Archangel Gabriel is mentioned in several sacred texts.", + "pos": "noun", + "word_frequency": 17093 + }, + { + "word": "archevêché", + "article_with_word": "l'archevêché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archbishopric;archbishop's palace", + "example_sentence_native": "L'archevêché est un bâtiment historique.", + "example_sentence_english": "The archbishopric is a historic building.", + "pos": "noun", + "word_frequency": 17094 + }, + { + "word": "armature", + "article_with_word": "l'armature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framework;reinforcement", + "example_sentence_native": "L'armature en acier renforce la structure du bâtiment.", + "example_sentence_english": "The steel framework reinforces the building's structure.", + "pos": "noun", + "word_frequency": 17095 + }, + { + "word": "arrosé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watered;sprinkled", + "example_sentence_native": "Le jardin est bien arrosé après la pluie.", + "example_sentence_english": "The garden is well watered after the rain.", + "pos": "adjective", + "word_frequency": 17096 + }, + { + "word": "astral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astral", + "example_sentence_native": "Il étudie les corps astraux.", + "example_sentence_english": "He studies astral bodies.", + "pos": "adjective", + "word_frequency": 17097 + }, + { + "word": "autodéfense", + "article_with_word": "l'autodéfense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-defense", + "example_sentence_native": "Elle a suivi des cours d'autodéfense.", + "example_sentence_english": "She took self-defense classes.", + "pos": "noun", + "word_frequency": 17098 + }, + { + "word": "aviaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avian", + "example_sentence_native": "La grippe aviaire est une maladie des oiseaux.", + "example_sentence_english": "Avian flu is a bird disease.", + "pos": "adjective", + "word_frequency": 17100 + }, + { + "word": "banco", + "article_with_word": "banco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banco (in gambling);jackpot", + "example_sentence_native": "Il a crié \"banco\" après avoir gagné.", + "example_sentence_english": "He shouted \"banco\" after winning.", + "pos": "noun", + "word_frequency": 17101 + }, + { + "word": "béquille", + "article_with_word": "la béquille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crutch;kickstand", + "example_sentence_native": "Il marche avec des béquilles depuis son accident.", + "example_sentence_english": "He has been walking with crutches since his accident.", + "pos": "noun", + "word_frequency": 17103 + }, + { + "word": "calculateur", + "article_with_word": "le calculateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calculator (person or device);calculating (adjective)", + "example_sentence_native": "Il est un excellent calculateur mental.", + "example_sentence_english": "He is an excellent mental calculator.", + "pos": "noun", + "word_frequency": 17106 + }, + { + "word": "captation", + "article_with_word": "la captation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capture;recording", + "example_sentence_native": "La captation vidéo de l'événement est disponible en ligne.", + "example_sentence_english": "The video recording of the event is available online.", + "pos": "noun", + "word_frequency": 17107 + }, + { + "word": "certifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certified", + "example_sentence_native": "Ce produit est certifié bio.", + "example_sentence_english": "This product is organically certified.", + "pos": "adjective", + "word_frequency": 17111 + }, + { + "word": "championship", + "article_with_word": "le championship", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "championship", + "example_sentence_native": "L'équipe a remporté le championship la saison dernière.", + "example_sentence_english": "The team won the championship last season.", + "pos": "noun", + "word_frequency": 17112 + }, + { + "word": "chandail", + "article_with_word": "le chandail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweater;jumper", + "example_sentence_native": "Il porte un chandail chaud en hiver.", + "example_sentence_english": "He wears a warm sweater in winter.", + "pos": "noun", + "word_frequency": 17113 + }, + { + "word": "charleston", + "article_with_word": "le charleston", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Charleston (dance)", + "example_sentence_native": "Le charleston était une danse populaire dans les années 20.", + "example_sentence_english": "The Charleston was a popular dance in the 1920s.", + "pos": "noun", + "word_frequency": 17114 + }, + { + "word": "chasteté", + "article_with_word": "la chasteté", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chastity", + "example_sentence_native": "La chasteté est une vertu dans certaines religions.", + "example_sentence_english": "Chastity is a virtue in some religions.", + "pos": "noun", + "word_frequency": 17115 + }, + { + "word": "chauvin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chauvinistic", + "example_sentence_native": "Son attitude chauvine est parfois agaçante.", + "example_sentence_english": "His chauvinistic attitude is sometimes annoying.", + "pos": "adjective", + "word_frequency": 17116 + }, + { + "word": "chill", + "article_with_word": "le chill", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chill;relaxation", + "example_sentence_native": "On va passer un bon chill ce soir.", + "example_sentence_english": "We're going to have a good chill tonight.", + "pos": "noun", + "word_frequency": 17117 + }, + { + "word": "coexistence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coexistence", + "example_sentence_native": "La coexistence pacifique est essentielle pour la stabilité mondiale.", + "example_sentence_english": "Peaceful coexistence is essential for global stability.", + "pos": "noun", + "word_frequency": 17121 + }, + { + "word": "collectionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collect", + "example_sentence_native": "Elle aime collectionner les timbres rares.", + "example_sentence_english": "She likes to collect rare stamps.", + "pos": "verb", + "word_frequency": 17122 + }, + { + "word": "colocataire", + "article_with_word": "un/une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roommate", + "example_sentence_native": "Mon colocataire est très propre.", + "example_sentence_english": "My roommate is very clean.", + "pos": "noun", + "word_frequency": 17123 + }, + { + "word": "commémoratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commemorative", + "example_sentence_native": "Ils ont émis un timbre commémoratif pour l'événement.", + "example_sentence_english": "They issued a commemorative stamp for the event.", + "pos": "adjective", + "word_frequency": 17124 + }, + { + "word": "complété", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completed", + "example_sentence_native": "Le rapport est maintenant complété.", + "example_sentence_english": "The report is now completed.", + "pos": "adjective", + "word_frequency": 17125 + }, + { + "word": "concordat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concordat", + "example_sentence_native": "Le concordat de 1801 a défini les relations entre l'État et l'Église.", + "example_sentence_english": "The Concordat of 1801 defined the relations between the State and the Church.", + "pos": "noun", + "word_frequency": 17126 + }, + { + "word": "conjecture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conjecture", + "example_sentence_native": "Ce n'est qu'une conjecture, nous n'avons pas de preuves.", + "example_sentence_english": "It's just a conjecture, we have no proof.", + "pos": "noun", + "word_frequency": 17127 + }, + { + "word": "conscription", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscription", + "example_sentence_native": "La conscription a été abolie dans de nombreux pays.", + "example_sentence_english": "Conscription has been abolished in many countries.", + "pos": "noun", + "word_frequency": 17128 + }, + { + "word": "corvette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corvette", + "example_sentence_native": "La corvette est un navire de guerre plus petit qu'une frégate.", + "example_sentence_english": "The corvette is a warship smaller than a frigate.", + "pos": "noun", + "word_frequency": 17131 + }, + { + "word": "cotation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quotation (stock market);rating", + "example_sentence_native": "La cotation des actions a chuté aujourd'hui.", + "example_sentence_english": "The stock quotation fell today.", + "pos": "noun", + "word_frequency": 17132 + }, + { + "word": "césarienne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "C-section", + "example_sentence_native": "Elle a dû subir une césarienne pour la naissance de son bébé.", + "example_sentence_english": "She had to undergo a C-section for the birth of her baby.", + "pos": "noun", + "word_frequency": 17134 + }, + { + "word": "dancing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dance hall", + "example_sentence_native": "Ils ont passé la soirée au dancing.", + "example_sentence_english": "They spent the evening at the dance hall.", + "pos": "noun", + "word_frequency": 17135 + }, + { + "word": "deck", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deck", + "example_sentence_native": "Nous avons construit un nouveau deck derrière la maison.", + "example_sentence_english": "We built a new deck behind the house.", + "pos": "noun", + "word_frequency": 17136 + }, + { + "word": "disproportionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disproportionate", + "example_sentence_native": "La réaction était disproportionnée par rapport à la situation.", + "example_sentence_english": "The reaction was disproportionate to the situation.", + "pos": "adjective", + "word_frequency": 17139 + }, + { + "word": "disputé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contested;disputed", + "example_sentence_native": "Le match était très disputé jusqu'à la dernière minute.", + "example_sentence_english": "The match was very contested until the last minute.", + "pos": "adjective", + "word_frequency": 17140 + }, + { + "word": "dissidence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissidence", + "example_sentence_native": "Le gouvernement a réprimé toute forme de dissidence.", + "example_sentence_english": "The government suppressed all forms of dissidence.", + "pos": "noun", + "word_frequency": 17141 + }, + { + "word": "dol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fraud;deceit (legal)", + "example_sentence_native": "Le contrat a été annulé pour cause de dol.", + "example_sentence_english": "The contract was annulled due to fraud.", + "pos": "noun", + "word_frequency": 17143 + }, + { + "word": "dédain", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disdain", + "example_sentence_native": "Il a regardé la proposition avec dédain.", + "example_sentence_english": "He looked at the proposal with disdain.", + "pos": "noun", + "word_frequency": 17151 + }, + { + "word": "dégénérescence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degeneration", + "example_sentence_native": "La dégénérescence des tissus est un signe de vieillissement.", + "example_sentence_english": "Tissue degeneration is a sign of aging.", + "pos": "noun", + "word_frequency": 17152 + }, + { + "word": "dénoncé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denounced;reported", + "example_sentence_native": "Les faits dénoncés sont graves.", + "example_sentence_english": "The denounced facts are serious.", + "pos": "adjective", + "word_frequency": 17153 + }, + { + "word": "déraper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to skid;to slip", + "example_sentence_native": "La voiture a dérapé sur la glace.", + "example_sentence_english": "The car skidded on the ice.", + "pos": "verb", + "word_frequency": 17154 + }, + { + "word": "désamorcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to defuse;to disarm", + "example_sentence_native": "Les négociations visent à désamorcer la crise.", + "example_sentence_english": "The negotiations aim to defuse the crisis.", + "pos": "verb", + "word_frequency": 17155 + }, + { + "word": "déshabiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to undress", + "example_sentence_native": "Il s'est déshabillé avant de prendre sa douche.", + "example_sentence_english": "He undressed before taking his shower.", + "pos": "verb", + "word_frequency": 17156 + }, + { + "word": "empreint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marked by;imprinted with", + "example_sentence_native": "Son discours était empreint d'une grande émotion.", + "example_sentence_english": "His speech was marked by great emotion.", + "pos": "adjective", + "word_frequency": 17159 + }, + { + "word": "enchantement", + "article_with_word": "l'enchantement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enchantment", + "example_sentence_native": "L'enchantement de la forêt était palpable.", + "example_sentence_english": "The enchantment of the forest was palpable.", + "pos": "noun", + "word_frequency": 17160 + }, + { + "word": "endosser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to endorse;to take on", + "example_sentence_native": "Il a dû endosser la responsabilité de ses actes.", + "example_sentence_english": "He had to take on the responsibility for his actions.", + "pos": "verb", + "word_frequency": 17161 + }, + { + "word": "enragé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enraged;furious", + "example_sentence_native": "Le chien enragé a mordu le facteur.", + "example_sentence_english": "The enraged dog bit the postman.", + "pos": "adjective", + "word_frequency": 17162 + }, + { + "word": "factice", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artificial;fake", + "example_sentence_native": "Elle portait des fleurs factices dans ses cheveux.", + "example_sentence_english": "She wore artificial flowers in her hair.", + "pos": "adjective", + "word_frequency": 17164 + }, + { + "word": "figé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frozen;fixed;rigid", + "example_sentence_native": "Son expression était figée par la surprise.", + "example_sentence_english": "His expression was frozen by surprise.", + "pos": "adjective", + "word_frequency": 17166 + }, + { + "word": "filigrane", + "article_with_word": "le filigrane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "watermark;filigree", + "example_sentence_native": "On peut voir le filigrane sur le billet de banque.", + "example_sentence_english": "You can see the watermark on the banknote.", + "pos": "noun", + "word_frequency": 17167 + }, + { + "word": "fleuri", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flowery;blooming", + "example_sentence_native": "Le jardin était fleuri de roses.", + "example_sentence_english": "The garden was blooming with roses.", + "pos": "adjective", + "word_frequency": 17168 + }, + { + "word": "fleuron", + "article_with_word": "le fleuron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jewel;flagship", + "example_sentence_native": "Cette entreprise est le fleuron de l'industrie locale.", + "example_sentence_english": "This company is the flagship of the local industry.", + "pos": "noun", + "word_frequency": 17169 + }, + { + "word": "fuseau", + "article_with_word": "le fuseau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spindle;tapered shape;time zone", + "example_sentence_native": "Le fuseau horaire de Paris est GMT+1.", + "example_sentence_english": "Paris's time zone is GMT+1.", + "pos": "noun", + "word_frequency": 17171 + }, + { + "word": "félin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feline;cat-like", + "example_sentence_native": "Elle avait une démarche féline et élégante.", + "example_sentence_english": "She had a feline and elegant gait.", + "pos": "adjective", + "word_frequency": 17172 + }, + { + "word": "gaufre", + "article_with_word": "la gaufre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waffle", + "example_sentence_native": "J'ai mangé une délicieuse gaufre au petit-déjeuner.", + "example_sentence_english": "I ate a delicious waffle for breakfast.", + "pos": "noun", + "word_frequency": 17174 + }, + { + "word": "guirlande", + "article_with_word": "la guirlande", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garland;string of lights", + "example_sentence_native": "Nous avons accroché des guirlandes pour Noël.", + "example_sentence_english": "We hung garlands for Christmas.", + "pos": "noun", + "word_frequency": 17178 + }, + { + "word": "guêpe", + "article_with_word": "la guêpe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wasp", + "example_sentence_native": "Une guêpe m'a piqué le bras.", + "example_sentence_english": "A wasp stung my arm.", + "pos": "noun", + "word_frequency": 17179 + }, + { + "word": "gâté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spoiled;rotten", + "example_sentence_native": "L'enfant est très gâté par ses grands-parents.", + "example_sentence_english": "The child is very spoiled by his grandparents.", + "pos": "adjective", + "word_frequency": 17180 + }, + { + "word": "halluciner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hallucinate;to be amazed", + "example_sentence_native": "J'hallucine, c'est incroyable !", + "example_sentence_english": "I'm amazed, it's incredible!", + "pos": "verb", + "word_frequency": 17181 + }, + { + "word": "harmonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmonic", + "example_sentence_native": "Les sons harmoniques créent une belle mélodie.", + "example_sentence_english": "Harmonic sounds create a beautiful melody.", + "pos": "adjective", + "word_frequency": 17182 + }, + { + "word": "homéopathie", + "article_with_word": "l'homéopathie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homeopathy", + "example_sentence_native": "L'homéopathie est une médecine alternative.", + "example_sentence_english": "Homeopathy is an alternative medicine.", + "pos": "noun", + "word_frequency": 17185 + }, + { + "word": "induit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "induced;implied", + "example_sentence_native": "Il y a eu un effet induit par cette décision.", + "example_sentence_english": "There was an induced effect by this decision.", + "pos": "adjective", + "word_frequency": 17187 + }, + { + "word": "infatigable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tireless;indefatigable", + "example_sentence_native": "C'est un travailleur infatigable.", + "example_sentence_english": "He is a tireless worker.", + "pos": "adjective", + "word_frequency": 17188 + }, + { + "word": "inhumation", + "article_with_word": "l'inhumation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burial;interment", + "example_sentence_native": "L'inhumation aura lieu demain matin.", + "example_sentence_english": "The burial will take place tomorrow morning.", + "pos": "noun", + "word_frequency": 17189 + }, + { + "word": "instinctif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinctive", + "example_sentence_native": "Sa réaction était purement instinctive.", + "example_sentence_english": "His reaction was purely instinctive.", + "pos": "adverb", + "word_frequency": 17190 + }, + { + "word": "instrumental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instrumental", + "example_sentence_native": "Son aide a été instrumentale dans notre succès.", + "example_sentence_english": "His help was instrumental in our success.", + "pos": "adjective", + "word_frequency": 17191 + }, + { + "word": "intendance", + "article_with_word": "l'intendance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administration;stewardship", + "example_sentence_native": "Il est responsable de l'intendance du lycée.", + "example_sentence_english": "He is responsible for the administration of the high school.", + "pos": "noun", + "word_frequency": 17192 + }, + { + "word": "internement", + "article_with_word": "l'internement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internment;confinement", + "example_sentence_native": "L'internement des civils a été une mesure controversée.", + "example_sentence_english": "The internment of civilians was a controversial measure.", + "pos": "noun", + "word_frequency": 17193 + }, + { + "word": "irréel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unreal;surreal", + "example_sentence_native": "L'atmosphère de ce lieu était irréelle.", + "example_sentence_english": "The atmosphere of this place was unreal.", + "pos": "adjective", + "word_frequency": 17194 + }, + { + "word": "lectorat", + "article_with_word": "le lectorat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "readership", + "example_sentence_native": "Le journal a un large lectorat.", + "example_sentence_english": "The newspaper has a large readership.", + "pos": "noun", + "word_frequency": 17197 + }, + { + "word": "lest", + "article_with_word": "le lest", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ballast;weight", + "example_sentence_native": "Le bateau avait besoin de lest pour rester stable.", + "example_sentence_english": "The boat needed ballast to remain stable.", + "pos": "noun", + "word_frequency": 17198 + }, + { + "word": "lingot", + "article_with_word": "le lingot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingot", + "example_sentence_native": "Il a trouvé un lingot d'or dans la mine.", + "example_sentence_english": "He found a gold ingot in the mine.", + "pos": "noun", + "word_frequency": 17200 + }, + { + "word": "magnat", + "article_with_word": "le magnat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnate", + "example_sentence_native": "Le magnat de l'immobilier a acheté un nouveau gratte-ciel.", + "example_sentence_english": "The real estate magnate bought a new skyscraper.", + "pos": "noun", + "word_frequency": 17202 + }, + { + "word": "mana", + "article_with_word": "le mana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mana", + "example_sentence_native": "Le sorcier a utilisé tout son mana pour lancer le sort.", + "example_sentence_english": "The wizard used all his mana to cast the spell.", + "pos": "noun", + "word_frequency": 17204 + }, + { + "word": "manufacturier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing", + "example_sentence_native": "Le secteur manufacturier est en pleine croissance.", + "example_sentence_english": "The manufacturing sector is growing rapidly.", + "pos": "adjective", + "word_frequency": 17205 + }, + { + "word": "milanais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Milanese", + "example_sentence_native": "Il a mangé un risotto milanais.", + "example_sentence_english": "He ate a Milanese risotto.", + "pos": "adjective", + "word_frequency": 17209 + }, + { + "word": "mixtape", + "article_with_word": "la mixtape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixtape", + "example_sentence_native": "Il a sorti une nouvelle mixtape la semaine dernière.", + "example_sentence_english": "He released a new mixtape last week.", + "pos": "noun", + "word_frequency": 17211 + }, + { + "word": "motorisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorized", + "example_sentence_native": "Le portail est motorisé pour plus de confort.", + "example_sentence_english": "The gate is motorized for more comfort.", + "pos": "adjective", + "word_frequency": 17212 + }, + { + "word": "mousson", + "article_with_word": "la mousson", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monsoon", + "example_sentence_native": "La mousson apporte des pluies abondantes.", + "example_sentence_english": "The monsoon brings abundant rains.", + "pos": "noun", + "word_frequency": 17213 + }, + { + "word": "numéraire", + "article_with_word": "le numéraire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cash;specie", + "example_sentence_native": "Le paiement en numéraire est de moins en moins courant.", + "example_sentence_english": "Cash payment is becoming less common.", + "pos": "noun", + "word_frequency": 17219 + }, + { + "word": "paysanne", + "article_with_word": "la paysanne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peasant woman", + "example_sentence_native": "La paysanne travaillait dur dans les champs.", + "example_sentence_english": "The peasant woman worked hard in the fields.", + "pos": "noun", + "word_frequency": 17223 + }, + { + "word": "planquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hide;to stash", + "example_sentence_native": "Il a planqué l'argent sous son matelas.", + "example_sentence_english": "He hid the money under his mattress.", + "pos": "verb", + "word_frequency": 17226 + }, + { + "word": "planqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hidden;stashed;cushy (job)", + "example_sentence_native": "C'est un travail bien planqué.", + "example_sentence_english": "It's a cushy job.", + "pos": "adjective", + "word_frequency": 17227 + }, + { + "word": "pointure", + "article_with_word": "la pointure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoe size;big shot (figurative)", + "example_sentence_native": "Quelle est votre pointure ?", + "example_sentence_english": "What's your shoe size?", + "pos": "noun", + "word_frequency": 17228 + }, + { + "word": "pourvu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provided;supplied;(as 'pourvu que') provided that;as long as", + "example_sentence_native": "Il est bien pourvu en matériel.", + "example_sentence_english": "He is well supplied with equipment.", + "pos": "adjective", + "word_frequency": 17229 + }, + { + "word": "prosélytisme", + "article_with_word": "le prosélytisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proselytism", + "example_sentence_native": "Le prosélytisme est interdit dans certains lieux publics.", + "example_sentence_english": "Proselytism is forbidden in some public places.", + "pos": "noun", + "word_frequency": 17230 + }, + { + "word": "quincaillerie", + "article_with_word": "la quincaillerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardware store;hardware", + "example_sentence_native": "J'ai acheté des clous à la quincaillerie du coin.", + "example_sentence_english": "I bought nails at the local hardware store.", + "pos": "noun", + "word_frequency": 17233 + }, + { + "word": "raccourcir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shorten", + "example_sentence_native": "Il faut raccourcir cette jupe.", + "example_sentence_english": "This skirt needs to be shortened.", + "pos": "verb", + "word_frequency": 17234 + }, + { + "word": "ravisseur", + "article_with_word": "le ravisseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kidnapper;abductor", + "example_sentence_native": "Le ravisseur a été arrêté par la police.", + "example_sentence_english": "The kidnapper was arrested by the police.", + "pos": "noun", + "word_frequency": 17235 + }, + { + "word": "rebaptiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-baptize;to rename", + "example_sentence_native": "Ils ont décidé de rebaptiser la rue.", + "example_sentence_english": "They decided to rename the street.", + "pos": "verb", + "word_frequency": 17236 + }, + { + "word": "recouvrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to recover (debts;health;rights)", + "example_sentence_native": "L'entreprise tente de recouvrer ses dettes.", + "example_sentence_english": "The company is trying to recover its debts.", + "pos": "verb", + "word_frequency": 17237 + }, + { + "word": "recueillement", + "article_with_word": "le recueillement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contemplation;meditation;solemn reflection", + "example_sentence_native": "Un moment de recueillement a été observé en mémoire des victimes.", + "example_sentence_english": "A moment of solemn reflection was observed in memory of the victims.", + "pos": "noun", + "word_frequency": 17238 + }, + { + "word": "rencard", + "article_with_word": "le rencard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "date;appointment;tip-off", + "example_sentence_native": "J'ai un rencard ce soir.", + "example_sentence_english": "I have a date tonight.", + "pos": "noun", + "word_frequency": 17239 + }, + { + "word": "resident", + "article_with_word": "le résident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resident", + "example_sentence_native": "Le résident de l'immeuble s'est plaint du bruit.", + "example_sentence_english": "The building's resident complained about the noise.", + "pos": "noun", + "word_frequency": 17240 + }, + { + "word": "ringard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corny;old-fashioned;dorky", + "example_sentence_native": "Ses blagues sont un peu ringardes.", + "example_sentence_english": "His jokes are a bit corny.", + "pos": "adjective", + "word_frequency": 17242 + }, + { + "word": "rock'n'roll", + "article_with_word": "le rock'n'roll", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock'n'roll", + "example_sentence_native": "Le rock'n'roll est un genre musical populaire.", + "example_sentence_english": "Rock'n'roll is a popular music genre.", + "pos": "noun", + "word_frequency": 17243 + }, + { + "word": "ruissellement", + "article_with_word": "le ruissellement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "runoff;trickling", + "example_sentence_native": "Le ruissellement des eaux de pluie peut provoquer des inondations.", + "example_sentence_english": "Rainwater runoff can cause floods.", + "pos": "noun", + "word_frequency": 17244 + }, + { + "word": "récif", + "article_with_word": "le récif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reef", + "example_sentence_native": "Les plongeurs ont exploré le récif corallien.", + "example_sentence_english": "The divers explored the coral reef.", + "pos": "noun", + "word_frequency": 17245 + }, + { + "word": "récup", + "article_with_word": "la récup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovery;recycling (informal)", + "example_sentence_native": "On fait de la récup pour fabriquer de nouveaux objets.", + "example_sentence_english": "We do recycling to make new objects.", + "pos": "noun", + "word_frequency": 17246 + }, + { + "word": "récupéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recovered;salvaged", + "example_sentence_native": "Les objets récupérés ont été transformés en œuvres d'art.", + "example_sentence_english": "The salvaged objects were transformed into works of art.", + "pos": "adjective", + "word_frequency": 17247 + }, + { + "word": "réincarnation", + "article_with_word": "la réincarnation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reincarnation", + "example_sentence_native": "La réincarnation est une croyance présente dans plusieurs religions.", + "example_sentence_english": "Reincarnation is a belief present in several religions.", + "pos": "noun", + "word_frequency": 17248 + }, + { + "word": "rétine", + "article_with_word": "la rétine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retina", + "example_sentence_native": "La rétine est une partie essentielle de l'œil.", + "example_sentence_english": "The retina is an essential part of the eye.", + "pos": "noun", + "word_frequency": 17249 + }, + { + "word": "saillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salient;prominent;protruding", + "example_sentence_native": "Il a fait des remarques très saillantes sur le sujet.", + "example_sentence_english": "He made very salient remarks on the subject.", + "pos": "adjective", + "word_frequency": 17251 + }, + { + "word": "saillie", + "article_with_word": "la saillie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protrusion;projection;sally;outburst", + "example_sentence_native": "La saillie du rocher offrait un bon point de vue.", + "example_sentence_english": "The protrusion of the rock offered a good viewpoint.", + "pos": "noun", + "word_frequency": 17252 + }, + { + "word": "saute", + "article_with_word": "la saute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden change;gust (of wind);fit (of temper)", + "example_sentence_native": "Elle a eu une saute d'humeur inattendue.", + "example_sentence_english": "She had an unexpected mood swing.", + "pos": "noun", + "word_frequency": 17253 + }, + { + "word": "schisme", + "article_with_word": "le schisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schism", + "example_sentence_native": "Le Grand Schisme d'Occident a divisé l'Église.", + "example_sentence_english": "The Great Western Schism divided the Church.", + "pos": "noun", + "word_frequency": 17254 + }, + { + "word": "silo", + "article_with_word": "le silo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silo", + "example_sentence_native": "Le grain est stocké dans de grands silos.", + "example_sentence_english": "Grain is stored in large silos.", + "pos": "noun", + "word_frequency": 17256 + }, + { + "word": "smoking", + "article_with_word": "le smoking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuxedo;dinner jacket", + "example_sentence_native": "Il portait un smoking élégant pour la soirée.", + "example_sentence_english": "He wore an elegant tuxedo for the evening.", + "pos": "noun", + "word_frequency": 17258 + }, + { + "word": "sociétal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "societal", + "example_sentence_native": "Nous devons aborder les défis sociétaux de notre époque.", + "example_sentence_english": "We must address the societal challenges of our time.", + "pos": "adjective", + "word_frequency": 17259 + }, + { + "word": "spermatozoïde", + "article_with_word": "le spermatozoïde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spermatozoon;sperm cell", + "example_sentence_native": "Le spermatozoïde est la cellule reproductrice mâle.", + "example_sentence_english": "The spermatozoon is the male reproductive cell.", + "pos": "noun", + "word_frequency": 17260 + }, + { + "word": "sulfureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfurous;scandalous;controversial", + "example_sentence_native": "Il a une réputation sulfureuse.", + "example_sentence_english": "He has a scandalous reputation.", + "pos": "adjective", + "word_frequency": 17261 + }, + { + "word": "séculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secular;centuries-old", + "example_sentence_native": "Cet arbre est un chêne séculaire.", + "example_sentence_english": "This tree is a centuries-old oak.", + "pos": "adjective", + "word_frequency": 17262 + }, + { + "word": "tanner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tan (leather;skin);(informal) to annoy;to bore", + "example_sentence_native": "Le soleil a bien tanné sa peau.", + "example_sentence_english": "The sun really tanned his skin.", + "pos": "verb", + "word_frequency": 17263 + }, + { + "word": "tentacule", + "article_with_word": "le tentacule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tentacle", + "example_sentence_native": "Le poulpe a huit tentacules.", + "example_sentence_english": "The octopus has eight tentacles.", + "pos": "noun", + "word_frequency": 17264 + }, + { + "word": "théatre", + "article_with_word": "le théâtre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "theater;theatre", + "example_sentence_native": "Nous allons au théâtre ce soir.", + "example_sentence_english": "We are going to the theater tonight.", + "pos": "noun", + "word_frequency": 17268 + }, + { + "word": "théoricien", + "article_with_word": "le théoricien", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theoretician;theorist", + "example_sentence_native": "C'est un théoricien reconnu dans son domaine.", + "example_sentence_english": "He is a recognized theoretician in his field.", + "pos": "noun", + "word_frequency": 17269 + }, + { + "word": "transformateur", + "article_with_word": "le transformateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformer", + "example_sentence_native": "Le transformateur convertit la tension électrique.", + "example_sentence_english": "The transformer converts the electrical voltage.", + "pos": "noun", + "word_frequency": 17271 + }, + { + "word": "transgenre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transgender", + "example_sentence_native": "Elle est une personne transgenre.", + "example_sentence_english": "She is a transgender person.", + "pos": "adjective", + "word_frequency": 17272 + }, + { + "word": "traçabilité", + "article_with_word": "la traçabilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traceability", + "example_sentence_native": "La traçabilité des produits alimentaires est essentielle.", + "example_sentence_english": "The traceability of food products is essential.", + "pos": "noun", + "word_frequency": 17273 + }, + { + "word": "tresse", + "article_with_word": "la tresse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "braid;plait", + "example_sentence_native": "Elle a fait une belle tresse dans ses cheveux.", + "example_sentence_english": "She made a beautiful braid in her hair.", + "pos": "noun", + "word_frequency": 17274 + }, + { + "word": "unicité", + "article_with_word": "l'unicité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uniqueness;singularity", + "example_sentence_native": "L'unicité de cette œuvre d'art est remarquable.", + "example_sentence_english": "The uniqueness of this work of art is remarkable.", + "pos": "noun", + "word_frequency": 17277 + }, + { + "word": "validé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "validated;approved", + "example_sentence_native": "Le projet a été validé par la direction.", + "example_sentence_english": "The project was validated by the management.", + "pos": "adjective", + "word_frequency": 17282 + }, + { + "word": "villégiature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holiday resort;vacation spot", + "example_sentence_native": "Ils ont passé l'été dans une charmante villégiature au bord de la mer.", + "example_sentence_english": "They spent the summer in a charming holiday resort by the sea.", + "pos": "noun", + "word_frequency": 17285 + }, + { + "word": "vouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dedicate;to vow", + "example_sentence_native": "Il a voué sa vie à la recherche scientifique.", + "example_sentence_english": "He dedicated his life to scientific research.", + "pos": "verb", + "word_frequency": 17286 + }, + { + "word": "won", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "won (Korean currency)", + "example_sentence_native": "Le won est la monnaie officielle de la Corée du Sud.", + "example_sentence_english": "The won is the official currency of South Korea.", + "pos": "noun", + "word_frequency": 17289 + }, + { + "word": "écrin", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jewelry box;case;setting", + "example_sentence_native": "Elle a ouvert l'écrin pour admirer le collier.", + "example_sentence_english": "She opened the jewelry box to admire the necklace.", + "pos": "noun", + "word_frequency": 17290 + }, + { + "word": "égaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to equalize;to level;to draw", + "example_sentence_native": "L'équipe a réussi à égaliser le score à la dernière minute.", + "example_sentence_english": "The team managed to equalize the score in the last minute.", + "pos": "verb", + "word_frequency": 17292 + }, + { + "word": "équitablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairly;equitably", + "example_sentence_native": "Les ressources doivent être distribuées équitablement entre tous.", + "example_sentence_english": "Resources must be distributed fairly among everyone.", + "pos": "adverb", + "word_frequency": 17293 + }, + { + "word": "abbesse", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbess", + "example_sentence_native": "L'abbesse dirige la communauté monastique.", + "example_sentence_english": "The abbess leads the monastic community.", + "pos": "noun", + "word_frequency": 17294 + }, + { + "word": "absentéisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absenteeism", + "example_sentence_native": "L'absentéisme au travail peut affecter la productivité.", + "example_sentence_english": "Absenteeism at work can affect productivity.", + "pos": "noun", + "word_frequency": 17298 + }, + { + "word": "accentué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accentuated;emphasized;strong", + "example_sentence_native": "Son accent est très accentué quand il parle anglais.", + "example_sentence_english": "His accent is very strong when he speaks English.", + "pos": "adjective", + "word_frequency": 17299 + }, + { + "word": "accouplement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mating;coupling", + "example_sentence_native": "L'accouplement des oiseaux a lieu au printemps.", + "example_sentence_english": "Bird mating takes place in spring.", + "pos": "noun", + "word_frequency": 17300 + }, + { + "word": "alcoolisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intoxicated;alcoholic", + "example_sentence_native": "Le conducteur a été arrêté car il était alcoolisé.", + "example_sentence_english": "The driver was arrested because he was intoxicated.", + "pos": "adjective", + "word_frequency": 17304 + }, + { + "word": "annulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cancelled", + "example_sentence_native": "Le concert a été annulé à cause de la pluie.", + "example_sentence_english": "The concert was cancelled due to the rain.", + "pos": "adjective", + "word_frequency": 17308 + }, + { + "word": "apathie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apathy", + "example_sentence_native": "L'apathie des citoyens face aux élections est préoccupante.", + "example_sentence_english": "The apathy of citizens towards the elections is concerning.", + "pos": "noun", + "word_frequency": 17309 + }, + { + "word": "attesté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attested;confirmed", + "example_sentence_native": "Son talent est attesté par de nombreux prix.", + "example_sentence_english": "His talent is attested by numerous awards.", + "pos": "adjective", + "word_frequency": 17311 + }, + { + "word": "auspice", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auspice;omen;patronage", + "example_sentence_native": "Le projet a été lancé sous les meilleurs auspices.", + "example_sentence_english": "The project was launched under the best auspices.", + "pos": "noun", + "word_frequency": 17312 + }, + { + "word": "bagne", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penal colony;galley", + "example_sentence_native": "Les criminels étaient envoyés au bagne pour purger leur peine.", + "example_sentence_english": "Criminals were sent to the penal colony to serve their sentence.", + "pos": "noun", + "word_frequency": 17314 + }, + { + "word": "barbelé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbed wire", + "example_sentence_native": "Le champ était entouré de fils barbelés.", + "example_sentence_english": "The field was surrounded by barbed wire.", + "pos": "noun", + "word_frequency": 17315 + }, + { + "word": "barge", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barge", + "example_sentence_native": "Une barge transportait du sable sur le canal.", + "example_sentence_english": "A barge was transporting sand on the canal.", + "pos": "noun", + "word_frequency": 17317 + }, + { + "word": "bienfaiteur", + "article_with_word": "le bienfaiteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benefactor", + "example_sentence_native": "Le bienfaiteur a fait un don généreux à l'hôpital.", + "example_sentence_english": "The benefactor made a generous donation to the hospital.", + "pos": "noun", + "word_frequency": 17320 + }, + { + "word": "brasseur", + "article_with_word": "le brasseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brewer", + "example_sentence_native": "Le brasseur prépare de la bière artisanale.", + "example_sentence_english": "The brewer prepares craft beer.", + "pos": "noun", + "word_frequency": 17322 + }, + { + "word": "bribe", + "article_with_word": "la bribe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrap;fragment", + "example_sentence_native": "Je n'ai entendu que des bribes de leur conversation.", + "example_sentence_english": "I only heard scraps of their conversation.", + "pos": "noun", + "word_frequency": 17323 + }, + { + "word": "broyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crush;to grind", + "example_sentence_native": "Il faut broyer les grains de café avant de les infuser.", + "example_sentence_english": "You have to grind the coffee beans before brewing them.", + "pos": "verb", + "word_frequency": 17324 + }, + { + "word": "byzantin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Byzantine (complex;intricate)", + "example_sentence_native": "La procédure était tellement byzantine que personne ne la comprenait.", + "example_sentence_english": "The procedure was so Byzantine that no one understood it.", + "pos": "adjective", + "word_frequency": 17325 + }, + { + "word": "capricieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capricious;whimsical", + "example_sentence_native": "Le temps est très capricieux en ce moment.", + "example_sentence_english": "The weather is very capricious right now.", + "pos": "adjective", + "word_frequency": 17327 + }, + { + "word": "captif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captive", + "example_sentence_native": "L'animal était gardé captif dans une petite cage.", + "example_sentence_english": "The animal was kept captive in a small cage.", + "pos": "adjective", + "word_frequency": 17328 + }, + { + "word": "carrosse", + "article_with_word": "le carrosse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carriage;coach", + "example_sentence_native": "La princesse est arrivée dans un magnifique carrosse doré.", + "example_sentence_english": "The princess arrived in a magnificent golden carriage.", + "pos": "noun", + "word_frequency": 17329 + }, + { + "word": "celeste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "celestial;heavenly", + "example_sentence_native": "Les étoiles brillent dans la voûte céleste.", + "example_sentence_english": "The stars shine in the celestial vault.", + "pos": "adjective", + "word_frequency": 17330 + }, + { + "word": "cellulose", + "article_with_word": "la cellulose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cellulose", + "example_sentence_native": "La cellulose est le principal composant des parois cellulaires végétales.", + "example_sentence_english": "Cellulose is the main component of plant cell walls.", + "pos": "noun", + "word_frequency": 17331 + }, + { + "word": "chocolatine", + "article_with_word": "la chocolatine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chocolate croissant (Southwest France)", + "example_sentence_native": "Pour le petit-déjeuner, je prends une chocolatine et un café.", + "example_sentence_english": "For breakfast, I have a chocolate croissant and a coffee.", + "pos": "noun", + "word_frequency": 17332 + }, + { + "word": "circonférence", + "article_with_word": "la circonférence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circumference", + "example_sentence_native": "Calculez la circonférence du cercle.", + "example_sentence_english": "Calculate the circumference of the circle.", + "pos": "noun", + "word_frequency": 17333 + }, + { + "word": "clairière", + "article_with_word": "la clairière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clearing;glade", + "example_sentence_native": "Nous avons pique-niqué dans une jolie clairière au milieu de la forêt.", + "example_sentence_english": "We picnicked in a pretty clearing in the middle of the forest.", + "pos": "noun", + "word_frequency": 17334 + }, + { + "word": "clouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nail", + "example_sentence_native": "Il a cloué la planche au mur.", + "example_sentence_english": "He nailed the board to the wall.", + "pos": "verb", + "word_frequency": 17335 + }, + { + "word": "comblé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fulfilled;delighted", + "example_sentence_native": "Elle se sentait comblée après avoir réalisé son rêve.", + "example_sentence_english": "She felt fulfilled after realizing her dream.", + "pos": "adjective", + "word_frequency": 17336 + }, + { + "word": "concordance", + "article_with_word": "la concordance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concordance;agreement", + "example_sentence_native": "Il y a une parfaite concordance entre les deux témoignages.", + "example_sentence_english": "There is perfect concordance between the two testimonies.", + "pos": "noun", + "word_frequency": 17337 + }, + { + "word": "conglomérat", + "article_with_word": "le conglomérat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conglomerate", + "example_sentence_native": "Le nouveau conglomérat a acquis plusieurs petites entreprises.", + "example_sentence_english": "The new conglomerate acquired several small businesses.", + "pos": "noun", + "word_frequency": 17338 + }, + { + "word": "consonne", + "article_with_word": "la consonne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "consonant", + "example_sentence_native": "Le mot 'table' commence par une consonne.", + "example_sentence_english": "The word 'table' starts with a consonant.", + "pos": "noun", + "word_frequency": 17339 + }, + { + "word": "contrecarrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to thwart;to counteract", + "example_sentence_native": "Il a essayé de contrecarrer nos plans.", + "example_sentence_english": "He tried to thwart our plans.", + "pos": "verb", + "word_frequency": 17340 + }, + { + "word": "crinière", + "article_with_word": "la crinière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mane", + "example_sentence_native": "Le lion a une magnifique crinière.", + "example_sentence_english": "The lion has a magnificent mane.", + "pos": "noun", + "word_frequency": 17344 + }, + { + "word": "cultivateur", + "article_with_word": "le cultivateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmer;cultivator", + "example_sentence_native": "Le cultivateur travaille dur dans ses champs.", + "example_sentence_english": "The farmer works hard in his fields.", + "pos": "noun", + "word_frequency": 17345 + }, + { + "word": "decembre", + "article_with_word": "le décembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "December", + "example_sentence_native": "Noël est en décembre.", + "example_sentence_english": "Christmas is in December.", + "pos": "noun", + "word_frequency": 17348 + }, + { + "word": "decision", + "article_with_word": "la décision", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "decision", + "example_sentence_native": "J'ai pris ma décision.", + "example_sentence_english": "I made my decision.", + "pos": "noun", + "word_frequency": 17349 + }, + { + "word": "desire", + "article_with_word": "le désir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desire;wish", + "example_sentence_native": "Il a un fort désir de voyager.", + "example_sentence_english": "He has a strong desire to travel.", + "pos": "noun", + "word_frequency": 17351 + }, + { + "word": "diluer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dilute", + "example_sentence_native": "Il faut diluer le sirop avec de l'eau.", + "example_sentence_english": "You need to dilute the syrup with water.", + "pos": "verb", + "word_frequency": 17353 + }, + { + "word": "doctorant", + "article_with_word": "le doctorant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "PhD student;doctoral candidate", + "example_sentence_native": "Le doctorant présente sa thèse la semaine prochaine.", + "example_sentence_english": "The PhD student is presenting his thesis next week.", + "pos": "noun", + "word_frequency": 17354 + }, + { + "word": "durcir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to harden;to toughen", + "example_sentence_native": "Le ciment commence à durcir rapidement.", + "example_sentence_english": "The cement starts to harden quickly.", + "pos": "verb", + "word_frequency": 17356 + }, + { + "word": "dynamiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to energize;to boost", + "example_sentence_native": "Le nouveau manager a réussi à dynamiser l'équipe.", + "example_sentence_english": "The new manager succeeded in energizing the team.", + "pos": "verb", + "word_frequency": 17357 + }, + { + "word": "décapitation", + "article_with_word": "la décapitation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decapitation", + "example_sentence_native": "L'histoire mentionne la décapitation de plusieurs rois.", + "example_sentence_english": "History mentions the decapitation of several kings.", + "pos": "noun", + "word_frequency": 17358 + }, + { + "word": "délaisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abandon;to neglect", + "example_sentence_native": "Il a délaissé ses études pour voyager.", + "example_sentence_english": "He abandoned his studies to travel.", + "pos": "verb", + "word_frequency": 17359 + }, + { + "word": "démesuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disproportionate;excessive", + "example_sentence_native": "Son ambition était démesurée.", + "example_sentence_english": "His ambition was disproportionate.", + "pos": "adjective", + "word_frequency": 17360 + }, + { + "word": "dénoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to denote;to indicate", + "example_sentence_native": "Son silence dénotait un certain malaise.", + "example_sentence_english": "His silence denoted a certain unease.", + "pos": "verb", + "word_frequency": 17361 + }, + { + "word": "déstabilisation", + "article_with_word": "la déstabilisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "destabilization", + "example_sentence_native": "La déstabilisation de la région est préoccupante.", + "example_sentence_english": "The destabilization of the region is concerning.", + "pos": "noun", + "word_frequency": 17362 + }, + { + "word": "déterminisme", + "article_with_word": "le déterminisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "determinism", + "example_sentence_native": "Le déterminisme est une théorie philosophique.", + "example_sentence_english": "Determinism is a philosophical theory.", + "pos": "noun", + "word_frequency": 17363 + }, + { + "word": "eclipse", + "article_with_word": "une éclipse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eclipse", + "example_sentence_native": "Nous avons observé une éclipse lunaire hier soir.", + "example_sentence_english": "We observed a lunar eclipse last night.", + "pos": "noun", + "word_frequency": 17364 + }, + { + "word": "embrouille", + "article_with_word": "une embrouille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess;dispute;mix-up", + "example_sentence_native": "Il y a eu une embrouille avec les horaires.", + "example_sentence_english": "There was a mix-up with the schedules.", + "pos": "noun", + "word_frequency": 17365 + }, + { + "word": "embêtant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoying;bothersome", + "example_sentence_native": "C'est vraiment embêtant de ne pas trouver ses clés.", + "example_sentence_english": "It's really annoying not to find your keys.", + "pos": "adjective", + "word_frequency": 17366 + }, + { + "word": "endiguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stem;to curb;to dam", + "example_sentence_native": "Il faut endiguer la propagation du virus.", + "example_sentence_english": "We must stem the spread of the virus.", + "pos": "verb", + "word_frequency": 17367 + }, + { + "word": "envahi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invaded;overgrown", + "example_sentence_native": "Le jardin était envahi par les mauvaises herbes.", + "example_sentence_english": "The garden was overgrown with weeds.", + "pos": "adjective", + "word_frequency": 17368 + }, + { + "word": "escompter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to expect;to count on", + "example_sentence_native": "Il escompte obtenir de bons résultats.", + "example_sentence_english": "He expects to get good results.", + "pos": "verb", + "word_frequency": 17370 + }, + { + "word": "fatigant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiring;exhausting", + "example_sentence_native": "Cette journée a été très fatigante.", + "example_sentence_english": "This day was very tiring.", + "pos": "adjective", + "word_frequency": 17373 + }, + { + "word": "fest", + "article_with_word": "le fest", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "festival (informal)", + "example_sentence_native": "On va au fest ce week-end.", + "example_sentence_english": "We're going to the festival this weekend.", + "pos": "noun", + "word_frequency": 17374 + }, + { + "word": "flambée", + "article_with_word": "la flambée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flare-up;surge;outbreak", + "example_sentence_native": "Il y a eu une flambée des prix du pétrole.", + "example_sentence_english": "There was a surge in oil prices.", + "pos": "noun", + "word_frequency": 17375 + }, + { + "word": "foutais", + "article_with_word": "les foutaises", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;rubbish", + "example_sentence_native": "Ce ne sont que des foutaises !", + "example_sentence_english": "That's just nonsense!", + "pos": "noun", + "word_frequency": 17376 + }, + { + "word": "fébrile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feverish;agitated", + "example_sentence_native": "L'attente rendait l'atmosphère fébrile.", + "example_sentence_english": "The wait made the atmosphere feverish.", + "pos": "adjective", + "word_frequency": 17378 + }, + { + "word": "globalisation", + "article_with_word": "la globalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globalization", + "example_sentence_native": "La globalisation a des effets complexes.", + "example_sentence_english": "Globalization has complex effects.", + "pos": "noun", + "word_frequency": 17379 + }, + { + "word": "graphie", + "article_with_word": "la graphie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spelling;graphic form", + "example_sentence_native": "La graphie d'un mot peut varier.", + "example_sentence_english": "The spelling of a word can vary.", + "pos": "noun", + "word_frequency": 17381 + }, + { + "word": "gélatine", + "article_with_word": "la gélatine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gelatin", + "example_sentence_native": "On utilise la gélatine pour faire des desserts.", + "example_sentence_english": "Gelatin is used to make desserts.", + "pos": "noun", + "word_frequency": 17382 + }, + { + "word": "génois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Genoese", + "example_sentence_native": "Le port de Gênes est un port génois.", + "example_sentence_english": "The port of Genoa is a Genoese port.", + "pos": "adjective", + "word_frequency": 17383 + }, + { + "word": "hess", + "article_with_word": "la hess", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misery;poverty (slang)", + "example_sentence_native": "Il vit dans la hess depuis des mois.", + "example_sentence_english": "He's been living in misery for months.", + "pos": "noun", + "word_frequency": 17386 + }, + { + "word": "honorifique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honorary;honorific", + "example_sentence_native": "Il a reçu un titre honorifique.", + "example_sentence_english": "He received an honorary title.", + "pos": "adjective", + "word_frequency": 17388 + }, + { + "word": "horticulture", + "article_with_word": "l'horticulture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horticulture", + "example_sentence_native": "L'horticulture est l'art de cultiver les jardins.", + "example_sentence_english": "Horticulture is the art of cultivating gardens.", + "pos": "noun", + "word_frequency": 17389 + }, + { + "word": "hosto", + "article_with_word": "l'hosto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospital (slang)", + "example_sentence_native": "Il est parti à l'hosto après sa chute.", + "example_sentence_english": "He went to the hospital after his fall.", + "pos": "noun", + "word_frequency": 17390 + }, + { + "word": "illogique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illogical", + "example_sentence_native": "Son raisonnement est totalement illogique.", + "example_sentence_english": "His reasoning is totally illogical.", + "pos": "adjective", + "word_frequency": 17392 + }, + { + "word": "immobilisation", + "article_with_word": "l'immobilisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immobilization;fixed asset", + "example_sentence_native": "L'immobilisation de la jambe est nécessaire.", + "example_sentence_english": "Immobilization of the leg is necessary.", + "pos": "noun", + "word_frequency": 17393 + }, + { + "word": "imprudent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprudent;reckless", + "example_sentence_native": "C'était imprudent de traverser sans regarder.", + "example_sentence_english": "It was imprudent to cross without looking.", + "pos": "adjective", + "word_frequency": 17394 + }, + { + "word": "impulsif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impulsive", + "example_sentence_native": "Il est très impulsif dans ses décisions.", + "example_sentence_english": "He is very impulsive in his decisions.", + "pos": "adjective", + "word_frequency": 17395 + }, + { + "word": "incessant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incessant;constant", + "example_sentence_native": "Le bruit incessant le rendait fou.", + "example_sentence_english": "The incessant noise was driving him crazy.", + "pos": "adjective", + "word_frequency": 17396 + }, + { + "word": "inerte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inert;lifeless", + "example_sentence_native": "Le corps gisait inerte sur le sol.", + "example_sentence_english": "The body lay inert on the ground.", + "pos": "adjective", + "word_frequency": 17397 + }, + { + "word": "introspection", + "article_with_word": "l'introspection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "introspection", + "example_sentence_native": "L'introspection est importante pour la connaissance de soi.", + "example_sentence_english": "Introspection is important for self-knowledge.", + "pos": "noun", + "word_frequency": 17398 + }, + { + "word": "irresponsabilité", + "article_with_word": "l'irresponsabilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresponsibility", + "example_sentence_native": "Son irresponsabilité a causé de nombreux problèmes.", + "example_sentence_english": "His irresponsibility caused many problems.", + "pos": "noun", + "word_frequency": 17399 + }, + { + "word": "jarre", + "article_with_word": "la jarre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jar", + "example_sentence_native": "Elle a rempli la jarre d'eau.", + "example_sentence_english": "She filled the jar with water.", + "pos": "noun", + "word_frequency": 17402 + }, + { + "word": "jubilé", + "article_with_word": "le jubilé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jubilee", + "example_sentence_native": "L'entreprise a célébré son jubilé d'or.", + "example_sentence_english": "The company celebrated its golden jubilee.", + "pos": "noun", + "word_frequency": 17404 + }, + { + "word": "k.o", + "article_with_word": "le K.O.", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knockout", + "example_sentence_native": "Le boxeur a mis son adversaire K.O. au premier round.", + "example_sentence_english": "The boxer knocked out his opponent in the first round.", + "pos": "noun", + "word_frequency": 17406 + }, + { + "word": "kangourou", + "article_with_word": "le kangourou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kangaroo", + "example_sentence_native": "Le kangourou est un animal originaire d'Australie.", + "example_sentence_english": "The kangaroo is an animal native to Australia.", + "pos": "noun", + "word_frequency": 17407 + }, + { + "word": "légumineuse", + "article_with_word": "la légumineuse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legume (plant)", + "example_sentence_native": "Les lentilles sont des légumineuses riches en protéines.", + "example_sentence_english": "Lentils are legumes rich in protein.", + "pos": "noun", + "word_frequency": 17422 + }, + { + "word": "maladroitement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clumsily;awkwardly", + "example_sentence_native": "Il a maladroitement laissé tomber le verre.", + "example_sentence_english": "He clumsily dropped the glass.", + "pos": "adverb", + "word_frequency": 17423 + }, + { + "word": "malnutrition", + "article_with_word": "la malnutrition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malnutrition", + "example_sentence_native": "La malnutrition est un problème mondial.", + "example_sentence_english": "Malnutrition is a global problem.", + "pos": "noun", + "word_frequency": 17425 + }, + { + "word": "manquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "missing;lacking", + "example_sentence_native": "Il y a une pièce manquante dans le puzzle.", + "example_sentence_english": "There is a missing piece in the puzzle.", + "pos": "adjective", + "word_frequency": 17426 + }, + { + "word": "massue", + "article_with_word": "la massue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "club;mace", + "example_sentence_native": "Le géant brandissait une énorme massue.", + "example_sentence_english": "The giant wielded an enormous club.", + "pos": "noun", + "word_frequency": 17429 + }, + { + "word": "mathématiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mathematically", + "example_sentence_native": "C'est mathématiquement impossible.", + "example_sentence_english": "It is mathematically impossible.", + "pos": "adverb", + "word_frequency": 17430 + }, + { + "word": "meubler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to furnish", + "example_sentence_native": "Nous devons meubler notre nouvel appartement.", + "example_sentence_english": "We need to furnish our new apartment.", + "pos": "verb", + "word_frequency": 17431 + }, + { + "word": "modestement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modestly", + "example_sentence_native": "Il a modestement accepté les compliments.", + "example_sentence_english": "He modestly accepted the compliments.", + "pos": "adverb", + "word_frequency": 17433 + }, + { + "word": "musclé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscular;toned", + "example_sentence_native": "Il est très musclé grâce à l'entraînement.", + "example_sentence_english": "He is very muscular thanks to training.", + "pos": "adjective", + "word_frequency": 17435 + }, + { + "word": "nanti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wealthy;well-off", + "example_sentence_native": "Il est issu d'une famille nantie.", + "example_sentence_english": "He comes from a wealthy family.", + "pos": "adjective", + "word_frequency": 17436 + }, + { + "word": "nocif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful;noxious", + "example_sentence_native": "Ce produit est nocif pour l'environnement.", + "example_sentence_english": "This product is harmful to the environment.", + "pos": "adjective", + "word_frequency": 17439 + }, + { + "word": "occitan", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Occitan (language)", + "example_sentence_native": "L’occitan est une langue romane parlée dans le sud de la France.", + "example_sentence_english": "Occitan is a Romance language spoken in the south of France.", + "pos": "noun", + "word_frequency": 17440 + }, + { + "word": "océanique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oceanic", + "example_sentence_native": "Le climat océanique est doux et humide.", + "example_sentence_english": "The oceanic climate is mild and humid.", + "pos": "adjective", + "word_frequency": 17441 + }, + { + "word": "opportunisme", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunism", + "example_sentence_native": "Son opportunisme lui a permis de saisir de nombreuses occasions.", + "example_sentence_english": "His opportunism allowed him to seize many opportunities.", + "pos": "noun", + "word_frequency": 17443 + }, + { + "word": "paon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peacock", + "example_sentence_native": "Le paon a de magnifiques plumes.", + "example_sentence_english": "The peacock has magnificent feathers.", + "pos": "noun", + "word_frequency": 17446 + }, + { + "word": "paralysé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paralyzed", + "example_sentence_native": "Il est resté paralysé après l’accident.", + "example_sentence_english": "He remained paralyzed after the accident.", + "pos": "adjective", + "word_frequency": 17447 + }, + { + "word": "parmesan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Parmesan (cheese)", + "example_sentence_native": "J’ai râpé du parmesan sur mes pâtes.", + "example_sentence_english": "I grated some Parmesan on my pasta.", + "pos": "noun", + "word_frequency": 17448 + }, + { + "word": "perdition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perdition;ruin", + "example_sentence_native": "Il a mené une vie de perdition.", + "example_sentence_english": "He led a life of perdition.", + "pos": "noun", + "word_frequency": 17451 + }, + { + "word": "préférentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preferential", + "example_sentence_native": "Nous avons obtenu un tarif préférentiel.", + "example_sentence_english": "We obtained a preferential rate.", + "pos": "adjective", + "word_frequency": 17455 + }, + { + "word": "quinte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quint;fit (e.g.;of coughing)", + "example_sentence_native": "Il a eu une forte quinte de toux.", + "example_sentence_english": "He had a severe fit of coughing.", + "pos": "noun", + "word_frequency": 17457 + }, + { + "word": "rapatrié", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repatriate", + "example_sentence_native": "Les rapatriés ont été accueillis à l’aéroport.", + "example_sentence_english": "The repatriates were welcomed at the airport.", + "pos": "noun", + "word_frequency": 17458 + }, + { + "word": "redéfinir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redefine", + "example_sentence_native": "Il est temps de redéfinir nos objectifs.", + "example_sentence_english": "It’s time to redefine our objectives.", + "pos": "verb", + "word_frequency": 17460 + }, + { + "word": "refouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repress;to push back", + "example_sentence_native": "Il a essayé de refouler ses émotions.", + "example_sentence_english": "He tried to repress his emotions.", + "pos": "verb", + "word_frequency": 17462 + }, + { + "word": "roquefort", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Roquefort (cheese)", + "example_sentence_native": "Le roquefort est un fromage bleu français.", + "example_sentence_english": "Roquefort is a French blue cheese.", + "pos": "noun", + "word_frequency": 17465 + }, + { + "word": "rosaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rosary", + "example_sentence_native": "Elle priait avec son rosaire.", + "example_sentence_english": "She prayed with her rosary.", + "pos": "noun", + "word_frequency": 17466 + }, + { + "word": "réclamé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claimed;demanded", + "example_sentence_native": "Le colis non réclamé a été renvoyé.", + "example_sentence_english": "The unclaimed package was sent back.", + "pos": "adjective", + "word_frequency": 17468 + }, + { + "word": "réformiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reformist", + "example_sentence_native": "Il a des idées réformistes.", + "example_sentence_english": "He has reformist ideas.", + "pos": "adjective", + "word_frequency": 17469 + }, + { + "word": "scierie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sawmill", + "example_sentence_native": "Le bois est transformé à la scierie.", + "example_sentence_english": "The wood is processed at the sawmill.", + "pos": "noun", + "word_frequency": 17471 + }, + { + "word": "sise", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "located;situated (feminine)", + "example_sentence_native": "La propriété est sise au cœur de la ville.", + "example_sentence_english": "The property is located in the heart of the city.", + "pos": "adjective", + "word_frequency": 17475 + }, + { + "word": "souder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to weld;to solder", + "example_sentence_native": "Il faut souder ces deux pièces ensemble.", + "example_sentence_english": "These two pieces need to be welded together.", + "pos": "verb", + "word_frequency": 17476 + }, + { + "word": "sourate", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surah (chapter of the Quran)", + "example_sentence_native": "Chaque sourate du Coran a un sens profond.", + "example_sentence_english": "Each surah of the Quran has a deep meaning.", + "pos": "noun", + "word_frequency": 17477 + }, + { + "word": "strate", + "article_with_word": "la strate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layer", + "example_sentence_native": "La strate supérieure du sol est très fertile.", + "example_sentence_english": "The upper layer of the soil is very fertile.", + "pos": "noun", + "word_frequency": 17480 + }, + { + "word": "superposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superimposed", + "example_sentence_native": "Les images étaient superposées pour créer un effet spécial.", + "example_sentence_english": "The images were superimposed to create a special effect.", + "pos": "adjective", + "word_frequency": 17482 + }, + { + "word": "survenue", + "article_with_word": "la survenue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occurrence", + "example_sentence_native": "La survenue de l'événement a surpris tout le monde.", + "example_sentence_english": "The occurrence of the event surprised everyone.", + "pos": "noun", + "word_frequency": 17483 + }, + { + "word": "talisman", + "article_with_word": "le talisman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talisman", + "example_sentence_native": "Il portait un talisman autour du cou pour se protéger.", + "example_sentence_english": "He wore a talisman around his neck for protection.", + "pos": "noun", + "word_frequency": 17484 + }, + { + "word": "tartare", + "article_with_word": "le tartare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tartare", + "example_sentence_native": "J'ai commandé un steak tartare au restaurant.", + "example_sentence_english": "I ordered a steak tartare at the restaurant.", + "pos": "noun", + "word_frequency": 17486 + }, + { + "word": "tordu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twisted", + "example_sentence_native": "Le fil de fer était complètement tordu.", + "example_sentence_english": "The wire was completely twisted.", + "pos": "adjective", + "word_frequency": 17488 + }, + { + "word": "touffe", + "article_with_word": "la touffe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuft", + "example_sentence_native": "Une touffe d'herbe poussait au milieu du chemin.", + "example_sentence_english": "A tuft of grass was growing in the middle of the path.", + "pos": "noun", + "word_frequency": 17489 + }, + { + "word": "tracking", + "article_with_word": "le tracking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracking", + "example_sentence_native": "Le tracking des colis est devenu très précis.", + "example_sentence_english": "Parcel tracking has become very precise.", + "pos": "noun", + "word_frequency": 17490 + }, + { + "word": "tributaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dependent", + "example_sentence_native": "L'économie du pays est tributaire du tourisme.", + "example_sentence_english": "The country's economy is dependent on tourism.", + "pos": "adjective", + "word_frequency": 17491 + }, + { + "word": "triptyque", + "article_with_word": "le triptyque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triptych", + "example_sentence_native": "Le musée expose un magnifique triptyque médiéval.", + "example_sentence_english": "The museum exhibits a magnificent medieval triptych.", + "pos": "noun", + "word_frequency": 17492 + }, + { + "word": "trouille", + "article_with_word": "la trouille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fear", + "example_sentence_native": "J'ai eu la trouille de ma vie en voyant ce film.", + "example_sentence_english": "I got the fright of my life watching that movie.", + "pos": "noun", + "word_frequency": 17493 + }, + { + "word": "ulcère", + "article_with_word": "un ulcère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ulcer", + "example_sentence_native": "Il souffre d'un ulcère à l'estomac.", + "example_sentence_english": "He suffers from a stomach ulcer.", + "pos": "noun", + "word_frequency": 17497 + }, + { + "word": "vendetta", + "article_with_word": "une vendetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vendetta", + "example_sentence_native": "La famille a juré une vendetta contre ses ennemis.", + "example_sentence_english": "The family swore a vendetta against its enemies.", + "pos": "noun", + "word_frequency": 17501 + }, + { + "word": "verbalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verbally", + "example_sentence_native": "Il a exprimé son accord verbalement.", + "example_sentence_english": "He expressed his agreement verbally.", + "pos": "adverb", + "word_frequency": 17503 + }, + { + "word": "verité", + "article_with_word": "la vérité", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truth", + "example_sentence_native": "Dis-moi la vérité, s'il te plaît.", + "example_sentence_english": "Tell me the truth, please.", + "pos": "noun", + "word_frequency": 17504 + }, + { + "word": "verrière", + "article_with_word": "la verrière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glass roof", + "example_sentence_native": "La lumière entrait par la grande verrière du salon.", + "example_sentence_english": "Light entered through the large glass roof of the living room.", + "pos": "noun", + "word_frequency": 17505 + }, + { + "word": "vomi", + "article_with_word": "le vomi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vomit", + "example_sentence_native": "Il y avait du vomi sur le trottoir.", + "example_sentence_english": "There was vomit on the sidewalk.", + "pos": "noun", + "word_frequency": 17508 + }, + { + "word": "vérifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verified", + "example_sentence_native": "L'information a été vérifiée par plusieurs sources.", + "example_sentence_english": "The information has been verified by several sources.", + "pos": "adjective", + "word_frequency": 17509 + }, + { + "word": "édifiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edifying", + "example_sentence_native": "Son discours était très édifiant.", + "example_sentence_english": "His speech was very edifying.", + "pos": "adjective", + "word_frequency": 17516 + }, + { + "word": "épinière", + "article_with_word": "l'épinière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spinal", + "example_sentence_native": "La moelle épinière est une partie essentielle du système nerveux.", + "example_sentence_english": "The spinal cord is an essential part of the nervous system.", + "pos": "noun", + "word_frequency": 17517 + }, + { + "word": "éradication", + "article_with_word": "l'éradication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eradication", + "example_sentence_native": "L'éradication de la maladie est l'objectif principal.", + "example_sentence_english": "The eradication of the disease is the main objective.", + "pos": "noun", + "word_frequency": 17518 + }, + { + "word": "étau", + "article_with_word": "l'étau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vise", + "example_sentence_native": "Il a serré la pièce dans l'étau.", + "example_sentence_english": "He clamped the piece in the vise.", + "pos": "noun", + "word_frequency": 17519 + }, + { + "word": "œuvrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work;to strive", + "example_sentence_native": "Il œuvre pour la paix dans le monde.", + "example_sentence_english": "He strives for peace in the world.", + "pos": "verb", + "word_frequency": 17520 + }, + { + "word": "accréditation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accreditation", + "example_sentence_native": "L'accréditation est nécessaire pour participer à la conférence.", + "example_sentence_english": "Accreditation is necessary to participate in the conference.", + "pos": "noun", + "word_frequency": 17522 + }, + { + "word": "accueilli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welcomed;received", + "example_sentence_native": "Il s'est senti très bien accueilli.", + "example_sentence_english": "He felt very well welcomed.", + "pos": "adjective", + "word_frequency": 17523 + }, + { + "word": "additif", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additive", + "example_sentence_native": "Ce produit contient des additifs alimentaires.", + "example_sentence_english": "This product contains food additives.", + "pos": "noun", + "word_frequency": 17524 + }, + { + "word": "affirmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asserted;confident", + "example_sentence_native": "Il a une personnalité très affirmée.", + "example_sentence_english": "He has a very confident personality.", + "pos": "adjective", + "word_frequency": 17526 + }, + { + "word": "aggravé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggravated;worsened", + "example_sentence_native": "Sa condition s'est aggravée.", + "example_sentence_english": "His condition worsened.", + "pos": "adjective", + "word_frequency": 17527 + }, + { + "word": "amender", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to amend;to improve", + "example_sentence_native": "Le gouvernement a décidé d'amender la loi.", + "example_sentence_english": "The government decided to amend the law.", + "pos": "verb", + "word_frequency": 17529 + }, + { + "word": "amplification", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amplification", + "example_sentence_native": "L'amplification du son est nécessaire pour le concert.", + "example_sentence_english": "Sound amplification is necessary for the concert.", + "pos": "noun", + "word_frequency": 17530 + }, + { + "word": "apex", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apex", + "example_sentence_native": "L'apex de la montagne est difficile à atteindre.", + "example_sentence_english": "The apex of the mountain is difficult to reach.", + "pos": "noun", + "word_frequency": 17532 + }, + { + "word": "approché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approached;close", + "example_sentence_native": "La date limite est approchée.", + "example_sentence_english": "The deadline is approached.", + "pos": "adjective", + "word_frequency": 17533 + }, + { + "word": "aveugler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blind", + "example_sentence_native": "La lumière du soleil peut aveugler le conducteur.", + "example_sentence_english": "The sunlight can blind the driver.", + "pos": "verb", + "word_frequency": 17536 + }, + { + "word": "bai", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bay (horse color)", + "example_sentence_native": "Le cheval est un bai magnifique.", + "example_sentence_english": "The horse is a magnificent bay.", + "pos": "noun", + "word_frequency": 17537 + }, + { + "word": "bistro", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bistro;small restaurant", + "example_sentence_native": "Nous avons dîné dans un petit bistro sympa.", + "example_sentence_english": "We had dinner in a nice little bistro.", + "pos": "noun", + "word_frequency": 17544 + }, + { + "word": "bruler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to burn", + "example_sentence_native": "Attention, ne te bruler pas !", + "example_sentence_english": "Be careful, don't burn yourself!", + "pos": "verb", + "word_frequency": 17547 + }, + { + "word": "bâche", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tarp;cover", + "example_sentence_native": "Nous avons mis une bâche sur le bois pour le protéger de la pluie.", + "example_sentence_english": "We put a tarp over the wood to protect it from the rain.", + "pos": "noun", + "word_frequency": 17548 + }, + { + "word": "béret", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beret", + "example_sentence_native": "Il portait un béret noir.", + "example_sentence_english": "He was wearing a black beret.", + "pos": "noun", + "word_frequency": 17549 + }, + { + "word": "cafetière", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coffee maker;coffeepot", + "example_sentence_native": "J'ai acheté une nouvelle cafetière.", + "example_sentence_english": "I bought a new coffee maker.", + "pos": "noun", + "word_frequency": 17550 + }, + { + "word": "cardiovasculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cardiovascular", + "example_sentence_native": "L'exercice est bon pour la santé cardiovasculaire.", + "example_sentence_english": "Exercise is good for cardiovascular health.", + "pos": "adjective", + "word_frequency": 17551 + }, + { + "word": "carnivore", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carnivore", + "example_sentence_native": "Le lion est un carnivore.", + "example_sentence_english": "The lion is a carnivore.", + "pos": "noun", + "word_frequency": 17554 + }, + { + "word": "charrue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plow", + "example_sentence_native": "L'agriculteur utilise une charrue pour labourer le champ.", + "example_sentence_english": "The farmer uses a plow to till the field.", + "pos": "noun", + "word_frequency": 17559 + }, + { + "word": "cinémathèque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "film library", + "example_sentence_native": "La cinémathèque propose une rétrospective des films classiques.", + "example_sentence_english": "The film library offers a retrospective of classic films.", + "pos": "noun", + "word_frequency": 17562 + }, + { + "word": "cobaye", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guinea pig", + "example_sentence_native": "Le cobaye est un petit rongeur domestique.", + "example_sentence_english": "The guinea pig is a small domestic rodent.", + "pos": "noun", + "word_frequency": 17563 + }, + { + "word": "compiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compile", + "example_sentence_native": "Il faut compiler le code avant de l'exécuter.", + "example_sentence_english": "You need to compile the code before executing it.", + "pos": "verb", + "word_frequency": 17564 + }, + { + "word": "congélation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freezing", + "example_sentence_native": "La congélation permet de conserver les aliments plus longtemps.", + "example_sentence_english": "Freezing allows food to be preserved longer.", + "pos": "noun", + "word_frequency": 17565 + }, + { + "word": "contaminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contaminated", + "example_sentence_native": "L'eau de la rivière est contaminée par des produits chimiques.", + "example_sentence_english": "The river water is contaminated with chemicals.", + "pos": "adjective", + "word_frequency": 17567 + }, + { + "word": "copropriétaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-owner", + "example_sentence_native": "Chaque copropriétaire a des droits et des devoirs.", + "example_sentence_english": "Each co-owner has rights and duties.", + "pos": "noun", + "word_frequency": 17568 + }, + { + "word": "courgette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zucchini", + "example_sentence_native": "J'ai préparé une soupe de courgettes pour le dîner.", + "example_sentence_english": "I made zucchini soup for dinner.", + "pos": "noun", + "word_frequency": 17569 + }, + { + "word": "creation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creation", + "example_sentence_native": "La création de cette œuvre a demandé beaucoup de temps.", + "example_sentence_english": "The creation of this work took a lot of time.", + "pos": "noun", + "word_frequency": 17570 + }, + { + "word": "creusé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hollowed out;dug", + "example_sentence_native": "Le chemin était creusé par le passage répété des charrettes.", + "example_sentence_english": "The path was hollowed out by the repeated passage of carts.", + "pos": "adjective", + "word_frequency": 17571 + }, + { + "word": "crucifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to crucify", + "example_sentence_native": "Dans l'Antiquité, il était courant de crucifier les criminels.", + "example_sentence_english": "In antiquity, it was common to crucify criminals.", + "pos": "verb", + "word_frequency": 17572 + }, + { + "word": "crémaillère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "housewarming party (idiom: pendre la crémaillère)", + "example_sentence_native": "Nous allons pendre la crémaillère le mois prochain dans notre nouvelle maison.", + "example_sentence_english": "We are having a housewarming party next month in our new house.", + "pos": "noun", + "word_frequency": 17573 + }, + { + "word": "cèdre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cedar", + "example_sentence_native": "Le cèdre est un arbre majestueux avec un parfum agréable.", + "example_sentence_english": "Cedar is a majestic tree with a pleasant scent.", + "pos": "noun", + "word_frequency": 17574 + }, + { + "word": "dandy", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dandy", + "example_sentence_native": "Il se comportait comme un dandy, toujours élégant et raffiné.", + "example_sentence_english": "He behaved like a dandy, always elegant and refined.", + "pos": "noun", + "word_frequency": 17575 + }, + { + "word": "definition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "definition", + "example_sentence_native": "Pouvez-vous me donner la définition de ce mot?", + "example_sentence_english": "Can you give me the definition of this word?", + "pos": "noun", + "word_frequency": 17576 + }, + { + "word": "detail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "detail", + "example_sentence_native": "Il est important de prêter attention à chaque détail.", + "example_sentence_english": "It is important to pay attention to every detail.", + "pos": "noun", + "word_frequency": 17577 + }, + { + "word": "developpement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "development", + "example_sentence_native": "Le développement durable est crucial pour l'avenir de la planète.", + "example_sentence_english": "Sustainable development is crucial for the future of the planet.", + "pos": "noun", + "word_frequency": 17578 + }, + { + "word": "divertissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entertaining", + "example_sentence_native": "Ce film est très divertissant, je le recommande.", + "example_sentence_english": "This movie is very entertaining, I recommend it.", + "pos": "adjective", + "word_frequency": 17579 + }, + { + "word": "doser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dose;to measure out", + "example_sentence_native": "Il faut bien doser les ingrédients pour réussir la recette.", + "example_sentence_english": "You have to measure out the ingredients well to succeed with the recipe.", + "pos": "verb", + "word_frequency": 17580 + }, + { + "word": "débardeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tank top", + "example_sentence_native": "J'ai acheté un nouveau débardeur pour l'été.", + "example_sentence_english": "I bought a new tank top for the summer.", + "pos": "noun", + "word_frequency": 17582 + }, + { + "word": "dégoûtant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusting", + "example_sentence_native": "L'odeur de cette poubelle est vraiment dégoûtante.", + "example_sentence_english": "The smell from this trash can is really disgusting.", + "pos": "adjective", + "word_frequency": 17583 + }, + { + "word": "désagrément", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconvenience;unpleasantness", + "example_sentence_native": "Nous sommes désolés pour le désagrément causé par les travaux.", + "example_sentence_english": "We apologize for the inconvenience caused by the works.", + "pos": "noun", + "word_frequency": 17584 + }, + { + "word": "désespérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despairing;disheartening", + "example_sentence_native": "La situation économique actuelle est désespérante pour beaucoup de jeunes.", + "example_sentence_english": "The current economic situation is disheartening for many young people.", + "pos": "adjective", + "word_frequency": 17585 + }, + { + "word": "ecriture", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "writing", + "example_sentence_native": "Son écriture est très lisible et élégante.", + "example_sentence_english": "Her writing is very legible and elegant.", + "pos": "noun", + "word_frequency": 17587 + }, + { + "word": "element", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "element", + "example_sentence_native": "Chaque élément de ce projet est important.", + "example_sentence_english": "Every element of this project is important.", + "pos": "noun", + "word_frequency": 17588 + }, + { + "word": "encombrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulky;cumbersome", + "example_sentence_native": "Ce meuble est trop encombrant pour notre petit appartement.", + "example_sentence_english": "This furniture is too bulky for our small apartment.", + "pos": "adjective", + "word_frequency": 17590 + }, + { + "word": "ensoleillement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sunshine;sun exposure", + "example_sentence_native": "La région bénéficie d'un excellent ensoleillement toute l'année.", + "example_sentence_english": "The region benefits from excellent sunshine all year round.", + "pos": "noun", + "word_frequency": 17591 + }, + { + "word": "esport", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esport", + "example_sentence_native": "L'esport est devenu une industrie mondiale majeure.", + "example_sentence_english": "Esport has become a major global industry.", + "pos": "noun", + "word_frequency": 17593 + }, + { + "word": "ethnologie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnology", + "example_sentence_native": "L'ethnologie étudie les cultures et les sociétés humaines.", + "example_sentence_english": "Ethnology studies human cultures and societies.", + "pos": "noun", + "word_frequency": 17594 + }, + { + "word": "exam", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exam (informal for examen)", + "example_sentence_native": "J'ai un examen important la semaine prochaine.", + "example_sentence_english": "I have an important exam next week.", + "pos": "noun", + "word_frequency": 17595 + }, + { + "word": "exhiber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exhibit;to display", + "example_sentence_native": "Il aime exhiber ses trophées à tous ses visiteurs.", + "example_sentence_english": "He likes to exhibit his trophies to all his visitors.", + "pos": "verb", + "word_frequency": 17596 + }, + { + "word": "extirper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to extirpate;to root out", + "example_sentence_native": "Il a fallu extirper la dent de sagesse qui causait tant de douleur.", + "example_sentence_english": "It was necessary to extirpate the wisdom tooth that was causing so much pain.", + "pos": "verb", + "word_frequency": 17597 + }, + { + "word": "exécutant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performer;executor", + "example_sentence_native": "L'exécutant principal de l'orchestre a reçu des applaudissements nourris.", + "example_sentence_english": "The main performer of the orchestra received hearty applause.", + "pos": "noun", + "word_frequency": 17598 + }, + { + "word": "favorisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favored;privileged", + "example_sentence_native": "Les quartiers favorisés bénéficient de plus de services.", + "example_sentence_english": "The favored neighborhoods benefit from more services.", + "pos": "adjective", + "word_frequency": 17601 + }, + { + "word": "figue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fig", + "example_sentence_native": "J'ai cueilli une figue mûre dans le jardin.", + "example_sentence_english": "I picked a ripe fig in the garden.", + "pos": "noun", + "word_frequency": 17604 + }, + { + "word": "flanqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flanked;accompanied", + "example_sentence_native": "Le président est arrivé flanqué de ses conseillers.", + "example_sentence_english": "The president arrived flanked by his advisors.", + "pos": "adjective", + "word_frequency": 17605 + }, + { + "word": "furet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ferret", + "example_sentence_native": "Le furet est un animal agile et curieux.", + "example_sentence_english": "The ferret is an agile and curious animal.", + "pos": "noun", + "word_frequency": 17608 + }, + { + "word": "gangrène", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gangrene", + "example_sentence_native": "La gangrène est une complication grave du diabète.", + "example_sentence_english": "Gangrene is a serious complication of diabetes.", + "pos": "noun", + "word_frequency": 17609 + }, + { + "word": "gastrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastric", + "example_sentence_native": "Il a des problèmes gastriques chroniques.", + "example_sentence_english": "He has chronic gastric problems.", + "pos": "adjective", + "word_frequency": 17610 + }, + { + "word": "greffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to graft;to transplant", + "example_sentence_native": "Ils ont dû lui greffer un nouveau rein.", + "example_sentence_english": "They had to graft a new kidney onto him.", + "pos": "verb", + "word_frequency": 17613 + }, + { + "word": "groove", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "groove;rhythm", + "example_sentence_native": "Ce groupe de jazz a un groove incroyable.", + "example_sentence_english": "This jazz band has an incredible groove.", + "pos": "noun", + "word_frequency": 17614 + }, + { + "word": "guinéen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Guinean", + "example_sentence_native": "Il est d'origine guinéenne et fier de sa culture.", + "example_sentence_english": "He is of Guinean origin and proud of his culture.", + "pos": "adjective", + "word_frequency": 17616 + }, + { + "word": "homologué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "approved;certified", + "example_sentence_native": "Ce siège auto est homologué selon les dernières normes de sécurité.", + "example_sentence_english": "This car seat is approved according to the latest safety standards.", + "pos": "adjective", + "word_frequency": 17620 + }, + { + "word": "hypothécaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortgage (adj.)", + "example_sentence_native": "Ils ont obtenu un prêt hypothécaire pour acheter leur maison.", + "example_sentence_english": "They obtained a mortgage loan to buy their house.", + "pos": "adjective", + "word_frequency": 17621 + }, + { + "word": "hêtre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beech (tree)", + "example_sentence_native": "Le hêtre est un arbre commun dans les forêts européennes.", + "example_sentence_english": "The beech is a common tree in European forests.", + "pos": "noun", + "word_frequency": 17623 + }, + { + "word": "idéalisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idealism", + "example_sentence_native": "Son idéalisme l'a souvent conduit à des déceptions.", + "example_sentence_english": "His idealism often led him to disappointments.", + "pos": "noun", + "word_frequency": 17624 + }, + { + "word": "inhérent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inherent", + "example_sentence_native": "Le risque est inhérent à toute entreprise.", + "example_sentence_english": "Risk is inherent in any undertaking.", + "pos": "adjective", + "word_frequency": 17626 + }, + { + "word": "injurieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulting;abusive", + "example_sentence_native": "Il a été accusé de propos injurieux envers son collègue.", + "example_sentence_english": "He was accused of insulting remarks towards his colleague.", + "pos": "adjective", + "word_frequency": 17627 + }, + { + "word": "insecticide", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insecticide", + "example_sentence_native": "L'utilisation excessive d'insecticides peut nuire à l'environnement.", + "example_sentence_english": "Excessive use of insecticides can harm the environment.", + "pos": "noun", + "word_frequency": 17628 + }, + { + "word": "institué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "established;instituted", + "example_sentence_native": "C'est un comité institué pour examiner la question.", + "example_sentence_english": "It is a committee established to examine the issue.", + "pos": "adjective", + "word_frequency": 17629 + }, + { + "word": "intermittence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intermittence", + "example_sentence_native": "Le signal radio présentait des intermittences.", + "example_sentence_english": "The radio signal showed intermittences.", + "pos": "noun", + "word_frequency": 17630 + }, + { + "word": "inutilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uselessness", + "example_sentence_native": "Il a déploré l'inutilité de tous ses efforts.", + "example_sentence_english": "He deplored the uselessness of all his efforts.", + "pos": "noun", + "word_frequency": 17631 + }, + { + "word": "irrémédiable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irremediable;irreparable", + "example_sentence_native": "Les conséquences de cette décision sont irrémédiables.", + "example_sentence_english": "The consequences of this decision are irremediable.", + "pos": "adverb", + "word_frequency": 17633 + }, + { + "word": "italique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "italic", + "example_sentence_native": "Le titre du livre est écrit en italique.", + "example_sentence_english": "The book title is written in italic.", + "pos": "adjective", + "word_frequency": 17634 + }, + { + "word": "liner", + "article_with_word": "le liner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liner (eyeliner;ship)", + "example_sentence_native": "Elle a appliqué un trait de liner parfait sur ses paupières.", + "example_sentence_english": "She applied a perfect line of liner on her eyelids.", + "pos": "noun", + "word_frequency": 17648 + }, + { + "word": "lupus", + "article_with_word": "le lupus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lupus", + "example_sentence_native": "Le lupus est une maladie auto-immune chronique.", + "example_sentence_english": "Lupus is a chronic autoimmune disease.", + "pos": "noun", + "word_frequency": 17651 + }, + { + "word": "lyric", + "article_with_word": "le lyric", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lyric (of a song)", + "example_sentence_native": "Les lyrics de cette chanson sont très poétiques.", + "example_sentence_english": "The lyrics of this song are very poetic.", + "pos": "noun", + "word_frequency": 17652 + }, + { + "word": "légat", + "article_with_word": "le légat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legate", + "example_sentence_native": "Le légat du pape a visité la ville.", + "example_sentence_english": "The Pope's legate visited the city.", + "pos": "noun", + "word_frequency": 17653 + }, + { + "word": "machette", + "article_with_word": "la machette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "machete", + "example_sentence_native": "Il a utilisé une machette pour couper les broussailles.", + "example_sentence_english": "He used a machete to cut the brush.", + "pos": "noun", + "word_frequency": 17654 + }, + { + "word": "machinerie", + "article_with_word": "la machinerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machinery", + "example_sentence_native": "La machinerie lourde est utilisée sur le chantier.", + "example_sentence_english": "Heavy machinery is used on the construction site.", + "pos": "noun", + "word_frequency": 17655 + }, + { + "word": "mandaté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mandated;commissioned", + "example_sentence_native": "Il a été mandaté pour mener l'enquête.", + "example_sentence_english": "He was mandated to conduct the investigation.", + "pos": "adjective", + "word_frequency": 17657 + }, + { + "word": "mano", + "article_with_word": "la mano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hand (in specific expressions)", + "example_sentence_native": "Ils se sont affrontés en mano a mano.", + "example_sentence_english": "They confronted each other mano a mano.", + "pos": "noun", + "word_frequency": 17658 + }, + { + "word": "maté", + "article_with_word": "le maté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mate (drink)", + "example_sentence_native": "Le maté est une boisson traditionnelle en Amérique du Sud.", + "example_sentence_english": "Mate is a traditional drink in South America.", + "pos": "noun", + "word_frequency": 17659 + }, + { + "word": "medicine", + "article_with_word": "la médecine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "medicine", + "example_sentence_native": "Elle étudie la médecine à l'université.", + "example_sentence_english": "She studies medicine at the university.", + "pos": "noun", + "word_frequency": 17660 + }, + { + "word": "mensonger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceitful;misleading", + "example_sentence_native": "Ses promesses se sont avérées mensongères.", + "example_sentence_english": "His promises turned out to be misleading.", + "pos": "adjective", + "word_frequency": 17661 + }, + { + "word": "miné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undermined;worn out", + "example_sentence_native": "Sa santé est minée par le stress.", + "example_sentence_english": "His health is undermined by stress.", + "pos": "adjective", + "word_frequency": 17663 + }, + { + "word": "mol", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "soft;weak (rare)", + "example_sentence_native": "Le tissu était mol et agréable au toucher.", + "example_sentence_english": "The fabric was soft and pleasant to the touch.", + "pos": "adjective", + "word_frequency": 17666 + }, + { + "word": "monoxyde", + "article_with_word": "le monoxyde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monoxide", + "example_sentence_native": "Le monoxyde de carbone est un gaz dangereux.", + "example_sentence_english": "Carbon monoxide is a dangerous gas.", + "pos": "noun", + "word_frequency": 17667 + }, + { + "word": "muffin", + "article_with_word": "le muffin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "muffin", + "example_sentence_native": "J'ai mangé un muffin aux myrtilles pour le petit-déjeuner.", + "example_sentence_english": "I ate a blueberry muffin for breakfast.", + "pos": "noun", + "word_frequency": 17671 + }, + { + "word": "nervosité", + "article_with_word": "la nervosité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nervousness", + "example_sentence_native": "Sa nervosité était palpable avant l'examen.", + "example_sentence_english": "His nervousness was palpable before the exam.", + "pos": "noun", + "word_frequency": 17674 + }, + { + "word": "noyé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drowned;submerged", + "example_sentence_native": "Le village a été noyé sous les eaux de l'inondation.", + "example_sentence_english": "The village was submerged under the floodwaters.", + "pos": "adjective", + "word_frequency": 17675 + }, + { + "word": "occasionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occasional", + "example_sentence_native": "Il fait des travaux occasionnels pour arrondir ses fins de mois.", + "example_sentence_english": "He does occasional jobs to make ends meet.", + "pos": "adjective", + "word_frequency": 17676 + }, + { + "word": "orée", + "article_with_word": "l'orée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edge (of a forest)", + "example_sentence_native": "Nous nous sommes promenés à l'orée du bois.", + "example_sentence_english": "We walked at the edge of the woods.", + "pos": "noun", + "word_frequency": 17678 + }, + { + "word": "persona", + "article_with_word": "la persona", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "persona", + "example_sentence_native": "Il a créé une persona publique très différente de sa vraie personnalité.", + "example_sentence_english": "He created a public persona very different from his true personality.", + "pos": "noun", + "word_frequency": 17685 + }, + { + "word": "pinte", + "article_with_word": "une pinte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pint", + "example_sentence_native": "Je voudrais une pinte de bière, s'il vous plaît.", + "example_sentence_english": "I would like a pint of beer, please.", + "pos": "noun", + "word_frequency": 17688 + }, + { + "word": "poivron", + "article_with_word": "un poivron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell pepper", + "example_sentence_native": "J'ai acheté des poivrons rouges pour la salade.", + "example_sentence_english": "I bought red bell peppers for the salad.", + "pos": "noun", + "word_frequency": 17690 + }, + { + "word": "ponction", + "article_with_word": "une ponction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puncture;levy;withdrawal", + "example_sentence_native": "Le médecin a effectué une ponction lombaire.", + "example_sentence_english": "The doctor performed a lumbar puncture.", + "pos": "noun", + "word_frequency": 17692 + }, + { + "word": "ponctué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punctuated;marked", + "example_sentence_native": "Son discours était ponctué de pauses dramatiques.", + "example_sentence_english": "His speech was punctuated by dramatic pauses.", + "pos": "adjective", + "word_frequency": 17693 + }, + { + "word": "prisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valued;popular;prized", + "example_sentence_native": "Ce restaurant est très prisé des habitants.", + "example_sentence_english": "This restaurant is very popular with the locals.", + "pos": "adjective", + "word_frequency": 17694 + }, + { + "word": "prémédité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "premeditated", + "example_sentence_native": "Le crime a été jugé comme étant prémédité.", + "example_sentence_english": "The crime was judged to be premeditated.", + "pos": "adjective", + "word_frequency": 17695 + }, + { + "word": "pupitre", + "article_with_word": "un pupitre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desk (school);music stand;lectern", + "example_sentence_native": "L'élève s'est assis à son pupitre.", + "example_sentence_english": "The student sat at his desk.", + "pos": "noun", + "word_frequency": 17696 + }, + { + "word": "quenelle", + "article_with_word": "une quenelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quenelle (dumpling);quenelle (gesture)", + "example_sentence_native": "Nous avons mangé des quenelles de brochet à Lyon.", + "example_sentence_english": "We ate pike quenelles in Lyon.", + "pos": "noun", + "word_frequency": 17697 + }, + { + "word": "quiche", + "article_with_word": "une quiche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiche", + "example_sentence_native": "J'ai préparé une quiche lorraine pour le dîner.", + "example_sentence_english": "I prepared a quiche lorraine for dinner.", + "pos": "noun", + "word_frequency": 17698 + }, + { + "word": "rad", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broke;out of money (slang)", + "example_sentence_native": "Je suis complètement rad ce mois-ci.", + "example_sentence_english": "I'm completely broke this month.", + "pos": "adjective", + "word_frequency": 17699 + }, + { + "word": "radin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stingy;cheap", + "example_sentence_native": "Il est trop radin pour acheter un cadeau.", + "example_sentence_english": "He is too stingy to buy a gift.", + "pos": "adjective", + "word_frequency": 17700 + }, + { + "word": "rager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rage;to fume", + "example_sentence_native": "Il a commencé à rager contre l'injustice.", + "example_sentence_english": "He started to rage against the injustice.", + "pos": "verb", + "word_frequency": 17701 + }, + { + "word": "rampant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creeping;rampant", + "example_sentence_native": "L'inflation rampante est une préoccupation économique.", + "example_sentence_english": "Creeping inflation is an economic concern.", + "pos": "adjective", + "word_frequency": 17702 + }, + { + "word": "reconsidérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconsider", + "example_sentence_native": "Nous devons reconsidérer notre stratégie.", + "example_sentence_english": "We must reconsider our strategy.", + "pos": "verb", + "word_frequency": 17703 + }, + { + "word": "regroupé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regrouped;gathered", + "example_sentence_native": "Les données ont été regroupées par catégorie.", + "example_sentence_english": "The data has been regrouped by category.", + "pos": "adjective", + "word_frequency": 17704 + }, + { + "word": "renommé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renowned;famous", + "example_sentence_native": "C'est un artiste renommé dans le monde entier.", + "example_sentence_english": "He is a renowned artist worldwide.", + "pos": "adjective", + "word_frequency": 17705 + }, + { + "word": "retentir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resound;to echo", + "example_sentence_native": "Le coup de feu a retenti dans la vallée.", + "example_sentence_english": "The gunshot resounded in the valley.", + "pos": "verb", + "word_frequency": 17706 + }, + { + "word": "reussir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to succeed;to pass (an exam)", + "example_sentence_native": "J'espère réussir mon examen de français.", + "example_sentence_english": "I hope to pass my French exam.", + "pos": "verb", + "word_frequency": 17707 + }, + { + "word": "risée", + "article_with_word": "la risée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laughingstock;ripple (of wind)", + "example_sentence_native": "Il est devenu la risée de toute la classe.", + "example_sentence_english": "He became the laughingstock of the whole class.", + "pos": "noun", + "word_frequency": 17709 + }, + { + "word": "rixe", + "article_with_word": "une rixe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brawl;fight", + "example_sentence_native": "Une rixe a éclaté devant le bar.", + "example_sentence_english": "A brawl broke out in front of the bar.", + "pos": "noun", + "word_frequency": 17710 + }, + { + "word": "rouvert", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reopened", + "example_sentence_native": "Le magasin est enfin rouvert après les travaux.", + "example_sentence_english": "The store is finally reopened after the renovations.", + "pos": "adjective", + "word_frequency": 17711 + }, + { + "word": "rusé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cunning;sly;crafty", + "example_sentence_native": "Le renard est un animal très rusé.", + "example_sentence_english": "The fox is a very cunning animal.", + "pos": "adjective", + "word_frequency": 17712 + }, + { + "word": "régénérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to regenerate", + "example_sentence_native": "Certains animaux peuvent régénérer leurs membres perdus.", + "example_sentence_english": "Some animals can regenerate their lost limbs.", + "pos": "verb", + "word_frequency": 17713 + }, + { + "word": "sarrasin", + "article_with_word": "le sarrasin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buckwheat", + "example_sentence_native": "Les crêpes de sarrasin sont une spécialité bretonne.", + "example_sentence_english": "Buckwheat pancakes are a Breton specialty.", + "pos": "noun", + "word_frequency": 17716 + }, + { + "word": "seigle", + "article_with_word": "le seigle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rye", + "example_sentence_native": "Le pain de seigle est très nutritif.", + "example_sentence_english": "Rye bread is very nutritious.", + "pos": "noun", + "word_frequency": 17717 + }, + { + "word": "shampooing", + "article_with_word": "le shampooing", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shampoo", + "example_sentence_native": "J'ai besoin d'acheter du shampooing pour mes cheveux.", + "example_sentence_english": "I need to buy some shampoo for my hair.", + "pos": "noun", + "word_frequency": 17718 + }, + { + "word": "silice", + "article_with_word": "la silice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silica", + "example_sentence_native": "Le sable est principalement composé de silice.", + "example_sentence_english": "Sand is mainly composed of silica.", + "pos": "noun", + "word_frequency": 17719 + }, + { + "word": "sismique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seismic", + "example_sentence_native": "L'activité sismique a augmenté dans la région.", + "example_sentence_english": "Seismic activity has increased in the region.", + "pos": "adjective", + "word_frequency": 17721 + }, + { + "word": "sono", + "article_with_word": "la sono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sound system", + "example_sentence_native": "La sono de la salle de concert est excellente.", + "example_sentence_english": "The sound system in the concert hall is excellent.", + "pos": "noun", + "word_frequency": 17724 + }, + { + "word": "spéculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speculate", + "example_sentence_native": "Il est inutile de spéculer sur l'avenir.", + "example_sentence_english": "It's useless to speculate about the future.", + "pos": "verb", + "word_frequency": 17725 + }, + { + "word": "stationnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stationary", + "example_sentence_native": "Le vélo d'appartement est un équipement stationnaire.", + "example_sentence_english": "The exercise bike is a stationary piece of equipment.", + "pos": "adjective", + "word_frequency": 17726 + }, + { + "word": "subjonctif", + "article_with_word": "le subjonctif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjunctive", + "example_sentence_native": "Il est important de maîtriser le subjonctif en français.", + "example_sentence_english": "It is important to master the subjunctive in French.", + "pos": "noun", + "word_frequency": 17728 + }, + { + "word": "subordonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subordinate", + "example_sentence_native": "Le personnel subordonné doit suivre les instructions.", + "example_sentence_english": "Subordinate staff must follow instructions.", + "pos": "adjective", + "word_frequency": 17729 + }, + { + "word": "suer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sweat", + "example_sentence_native": "Il a commencé à suer après l'effort physique.", + "example_sentence_english": "He started to sweat after the physical exertion.", + "pos": "verb", + "word_frequency": 17730 + }, + { + "word": "surgelé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frozen (deep-frozen)", + "example_sentence_native": "Les légumes surgelés sont pratiques pour les repas rapides.", + "example_sentence_english": "Frozen vegetables are convenient for quick meals.", + "pos": "adjective", + "word_frequency": 17731 + }, + { + "word": "surréalisme", + "article_with_word": "le surréalisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surrealism", + "example_sentence_native": "Le surréalisme est un mouvement artistique du XXe siècle.", + "example_sentence_english": "Surrealism is an artistic movement of the 20th century.", + "pos": "noun", + "word_frequency": 17732 + }, + { + "word": "taxé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxed", + "example_sentence_native": "Les produits de luxe sont fortement taxés.", + "example_sentence_english": "Luxury goods are heavily taxed.", + "pos": "adjective", + "word_frequency": 17734 + }, + { + "word": "titularisation", + "article_with_word": "la titularisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenure (official appointment)", + "example_sentence_native": "Sa titularisation au poste a été confirmée.", + "example_sentence_english": "His official appointment to the position has been confirmed.", + "pos": "noun", + "word_frequency": 17737 + }, + { + "word": "transfusion", + "article_with_word": "la transfusion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfusion", + "example_sentence_native": "Le patient a eu besoin d'une transfusion sanguine.", + "example_sentence_english": "The patient needed a blood transfusion.", + "pos": "noun", + "word_frequency": 17738 + }, + { + "word": "vernissage", + "article_with_word": "le vernissage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "private viewing (art exhibition)", + "example_sentence_native": "Nous sommes invités au vernissage de l'exposition.", + "example_sentence_english": "We are invited to the private viewing of the exhibition.", + "pos": "noun", + "word_frequency": 17742 + }, + { + "word": "vortex", + "article_with_word": "le vortex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vortex", + "example_sentence_native": "Un vortex s'est formé dans l'eau.", + "example_sentence_english": "A vortex formed in the water.", + "pos": "noun", + "word_frequency": 17743 + }, + { + "word": "vénéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venerated", + "example_sentence_native": "Ce saint est vénéré par de nombreux fidèles.", + "example_sentence_english": "This saint is venerated by many believers.", + "pos": "adjective", + "word_frequency": 17744 + }, + { + "word": "éduqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educated", + "example_sentence_native": "C'est une personne très éduquée et cultivée.", + "example_sentence_english": "She is a very educated and cultured person.", + "pos": "adjective", + "word_frequency": 17752 + }, + { + "word": "acquit", + "article_with_word": "l'acquit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "receipt (of payment)", + "example_sentence_native": "Veuillez signer l'acquit pour confirmer la réception.", + "example_sentence_english": "Please sign the receipt to confirm reception.", + "pos": "noun", + "word_frequency": 17755 + }, + { + "word": "actualisation", + "article_with_word": "l'actualisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "update;actualization", + "example_sentence_native": "L'actualisation des données est nécessaire chaque mois.", + "example_sentence_english": "The data update is necessary every month.", + "pos": "noun", + "word_frequency": 17756 + }, + { + "word": "adoptif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adoptive", + "example_sentence_native": "Il a été élevé par ses parents adoptifs.", + "example_sentence_english": "He was raised by his adoptive parents.", + "pos": "adjective", + "word_frequency": 17757 + }, + { + "word": "alimenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powered;supplied;fed", + "example_sentence_native": "Le moteur est alimenté par l'électricité.", + "example_sentence_english": "The engine is powered by electricity.", + "pos": "adjective", + "word_frequency": 17762 + }, + { + "word": "anéanti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annihilated;devastated", + "example_sentence_native": "Il était anéanti par la nouvelle.", + "example_sentence_english": "He was devastated by the news.", + "pos": "adjective", + "word_frequency": 17766 + }, + { + "word": "appauvrissement", + "article_with_word": "l'appauvrissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impoverishment;depletion", + "example_sentence_native": "L'appauvrissement des sols est une préoccupation majeure.", + "example_sentence_english": "Soil depletion is a major concern.", + "pos": "noun", + "word_frequency": 17767 + }, + { + "word": "approfondissement", + "article_with_word": "l'approfondissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deepening;further study", + "example_sentence_native": "Cet article permet un approfondissement du sujet.", + "example_sentence_english": "This article allows for a deepening of the subject.", + "pos": "noun", + "word_frequency": 17768 + }, + { + "word": "approuvé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approved", + "example_sentence_native": "Le plan a été approuvé par la direction.", + "example_sentence_english": "The plan was approved by the management.", + "pos": "adjective", + "word_frequency": 17769 + }, + { + "word": "artefact", + "article_with_word": "un artefact", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artifact", + "example_sentence_native": "Les archéologues ont découvert un ancien artefact.", + "example_sentence_english": "Archaeologists discovered an ancient artifact.", + "pos": "noun", + "word_frequency": 17770 + }, + { + "word": "avorté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aborted;failed", + "example_sentence_native": "Le projet a été avorté avant son lancement.", + "example_sentence_english": "The project was aborted before its launch.", + "pos": "adjective", + "word_frequency": 17773 + }, + { + "word": "baigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bathed;immersed", + "example_sentence_native": "La pièce était baignée de lumière naturelle.", + "example_sentence_english": "The room was bathed in natural light.", + "pos": "adjective", + "word_frequency": 17775 + }, + { + "word": "besogne", + "article_with_word": "la besogne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "task;chore;work", + "example_sentence_native": "Il a accompli sa besogne avec diligence.", + "example_sentence_english": "He accomplished his task diligently.", + "pos": "noun", + "word_frequency": 17777 + }, + { + "word": "bigot", + "article_with_word": "un bigot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bigot", + "example_sentence_native": "Son attitude bigote était difficile à supporter.", + "example_sentence_english": "His bigoted attitude was difficult to bear.", + "pos": "noun", + "word_frequency": 17778 + }, + { + "word": "botaniste", + "article_with_word": "un botaniste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botanist", + "example_sentence_native": "Le botaniste étudie les plantes.", + "example_sentence_english": "The botanist studies plants.", + "pos": "noun", + "word_frequency": 17780 + }, + { + "word": "bourde", + "article_with_word": "une bourde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blunder;gaffe", + "example_sentence_native": "Il a commis une grosse bourde lors de la réunion.", + "example_sentence_english": "He made a big blunder during the meeting.", + "pos": "noun", + "word_frequency": 17781 + }, + { + "word": "bousculé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rushed;jostled;shaken up", + "example_sentence_native": "Je me suis senti un peu bousculé par les événements.", + "example_sentence_english": "I felt a bit shaken up by the events.", + "pos": "adjective", + "word_frequency": 17782 + }, + { + "word": "buis", + "article_with_word": "le buis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxwood", + "example_sentence_native": "Le jardin est bordé de buis taillés.", + "example_sentence_english": "The garden is bordered with trimmed boxwood.", + "pos": "noun", + "word_frequency": 17785 + }, + { + "word": "bulbe", + "article_with_word": "un bulbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulb", + "example_sentence_native": "Les tulipes poussent à partir de bulbes.", + "example_sentence_english": "Tulips grow from bulbs.", + "pos": "noun", + "word_frequency": 17786 + }, + { + "word": "bureaucratique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucratic", + "example_sentence_native": "Les procédures bureaucratiques peuvent être lentes.", + "example_sentence_english": "Bureaucratic procedures can be slow.", + "pos": "adjective", + "word_frequency": 17787 + }, + { + "word": "calomnie", + "article_with_word": "la calomnie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slander;calumny", + "example_sentence_native": "Il a été victime de calomnie.", + "example_sentence_english": "He was a victim of slander.", + "pos": "noun", + "word_frequency": 17788 + }, + { + "word": "capucin", + "article_with_word": "un capucin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Capuchin (monk;monkey)", + "example_sentence_native": "Le moine capucin vivait simplement.", + "example_sentence_english": "The Capuchin monk lived simply.", + "pos": "noun", + "word_frequency": 17789 + }, + { + "word": "charlot", + "article_with_word": "un charlot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fool;clown (also Charlie Chaplin's character)", + "example_sentence_native": "Ne fais pas le charlot.", + "example_sentence_english": "Don't act like a fool.", + "pos": "noun", + "word_frequency": 17793 + }, + { + "word": "cheptel", + "article_with_word": "le cheptel", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "livestock;herd", + "example_sentence_native": "Le cheptel bovin a augmenté cette année.", + "example_sentence_english": "The cattle herd increased this year.", + "pos": "noun", + "word_frequency": 17796 + }, + { + "word": "clavicule", + "article_with_word": "la clavicule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collarbone", + "example_sentence_native": "Il s'est cassé la clavicule en tombant.", + "example_sentence_english": "He broke his collarbone falling.", + "pos": "noun", + "word_frequency": 17797 + }, + { + "word": "concocté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concocted;devised", + "example_sentence_native": "Il a concocté un plan ingénieux.", + "example_sentence_english": "He concocted an ingenious plan.", + "pos": "adjective", + "word_frequency": 17799 + }, + { + "word": "contraignant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constraining;restrictive", + "example_sentence_native": "Les nouvelles règles sont très contraignantes.", + "example_sentence_english": "The new rules are very restrictive.", + "pos": "adjective", + "word_frequency": 17800 + }, + { + "word": "convoité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coveted;sought-after", + "example_sentence_native": "Ce poste est très convoité.", + "example_sentence_english": "This position is highly coveted.", + "pos": "adjective", + "word_frequency": 17801 + }, + { + "word": "coriace", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tough;resilient", + "example_sentence_native": "Il est un adversaire coriace.", + "example_sentence_english": "He is a tough opponent.", + "pos": "adjective", + "word_frequency": 17802 + }, + { + "word": "couchage", + "article_with_word": "le couchage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bedding;sleeping arrangements", + "example_sentence_native": "Nous avons besoin de couchage pour la nuit.", + "example_sentence_english": "We need bedding for the night.", + "pos": "noun", + "word_frequency": 17803 + }, + { + "word": "courroie", + "article_with_word": "la courroie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belt;strap", + "example_sentence_native": "La courroie du moteur est cassée.", + "example_sentence_english": "The engine belt is broken.", + "pos": "noun", + "word_frequency": 17804 + }, + { + "word": "cuisiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cooked", + "example_sentence_native": "Le poulet est bien cuisiné.", + "example_sentence_english": "The chicken is well cooked.", + "pos": "adjective", + "word_frequency": 17806 + }, + { + "word": "dard", + "article_with_word": "le dard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sting (of an insect);dart", + "example_sentence_native": "L'abeille a laissé son dard.", + "example_sentence_english": "The bee left its sting.", + "pos": "noun", + "word_frequency": 17807 + }, + { + "word": "dating", + "article_with_word": "le dating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dating", + "example_sentence_native": "Le dating en ligne est devenu populaire.", + "example_sentence_english": "Online dating has become popular.", + "pos": "noun", + "word_frequency": 17808 + }, + { + "word": "depart", + "article_with_word": "le départ", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "departure", + "example_sentence_native": "L'heure du départ est fixée à 10h.", + "example_sentence_english": "The departure time is set for 10 AM.", + "pos": "noun", + "word_frequency": 17809 + }, + { + "word": "dico", + "article_with_word": "le dico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dictionary (informal)", + "example_sentence_native": "J'ai cherché le mot dans mon dico.", + "example_sentence_english": "I looked up the word in my dictionary.", + "pos": "noun", + "word_frequency": 17811 + }, + { + "word": "dissimulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hidden;concealed", + "example_sentence_native": "L'entrée était dissimulée derrière les buissons.", + "example_sentence_english": "The entrance was hidden behind the bushes.", + "pos": "adjective", + "word_frequency": 17812 + }, + { + "word": "distillation", + "article_with_word": "la distillation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distillation", + "example_sentence_native": "La distillation est un processus chimique.", + "example_sentence_english": "Distillation is a chemical process.", + "pos": "noun", + "word_frequency": 17813 + }, + { + "word": "docu", + "article_with_word": "le docu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentary (informal)", + "example_sentence_native": "On a regardé un bon docu hier soir.", + "example_sentence_english": "We watched a good documentary last night.", + "pos": "noun", + "word_frequency": 17814 + }, + { + "word": "dommageable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmful;detrimental", + "example_sentence_native": "Cette décision pourrait être dommageable pour l'entreprise.", + "example_sentence_english": "This decision could be detrimental to the company.", + "pos": "adjective", + "word_frequency": 17815 + }, + { + "word": "débattu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debated;discussed", + "example_sentence_native": "C'est un sujet très débattu.", + "example_sentence_english": "It's a highly debated topic.", + "pos": "adjective", + "word_frequency": 17816 + }, + { + "word": "dépannage", + "article_with_word": "le dépannage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "troubleshooting;repair service", + "example_sentence_native": "J'ai appelé le service de dépannage pour ma voiture.", + "example_sentence_english": "I called the repair service for my car.", + "pos": "noun", + "word_frequency": 17817 + }, + { + "word": "députation", + "article_with_word": "la députation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deputation;delegation", + "example_sentence_native": "La députation a rencontré le ministre.", + "example_sentence_english": "The deputation met the minister.", + "pos": "noun", + "word_frequency": 17818 + }, + { + "word": "empresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hasten;to be eager to", + "example_sentence_native": "Il s'est empressé de répondre.", + "example_sentence_english": "He hastened to reply.", + "pos": "verb", + "word_frequency": 17822 + }, + { + "word": "emprisonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprisoned", + "example_sentence_native": "L'homme a été emprisonné pour ses crimes.", + "example_sentence_english": "The man was imprisoned for his crimes.", + "pos": "adjective", + "word_frequency": 17823 + }, + { + "word": "enfouissement", + "article_with_word": "l’enfouissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burial;landfilling", + "example_sentence_native": "L'enfouissement des déchets est un problème environnemental.", + "example_sentence_english": "Waste landfilling is an environmental problem.", + "pos": "noun", + "word_frequency": 17824 + }, + { + "word": "engendré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "generated;caused", + "example_sentence_native": "Les problèmes engendrés par la crise sont nombreux.", + "example_sentence_english": "The problems caused by the crisis are numerous.", + "pos": "adjective", + "word_frequency": 17825 + }, + { + "word": "enjoindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enjoin;to order", + "example_sentence_native": "Le juge lui a enjoint de payer l'amende.", + "example_sentence_english": "The judge enjoined him to pay the fine.", + "pos": "verb", + "word_frequency": 17826 + }, + { + "word": "enregistreur", + "article_with_word": "l’enregistreur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recorder", + "example_sentence_native": "J'ai acheté un nouvel enregistreur vocal.", + "example_sentence_english": "I bought a new voice recorder.", + "pos": "noun", + "word_frequency": 17827 + }, + { + "word": "entendement", + "article_with_word": "l’entendement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "understanding;intellect", + "example_sentence_native": "Cela dépasse mon entendement.", + "example_sentence_english": "That is beyond my understanding.", + "pos": "noun", + "word_frequency": 17828 + }, + { + "word": "essayiste", + "article_with_word": "l’essayiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "essayist", + "example_sentence_native": "Michel de Montaigne était un célèbre essayiste.", + "example_sentence_english": "Michel de Montaigne was a famous essayist.", + "pos": "noun", + "word_frequency": 17830 + }, + { + "word": "extorsion", + "article_with_word": "l’extorsion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extortion", + "example_sentence_native": "Il a été accusé d'extorsion.", + "example_sentence_english": "He was accused of extortion.", + "pos": "noun", + "word_frequency": 17831 + }, + { + "word": "fenetre", + "article_with_word": "la fenêtre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "window", + "example_sentence_native": "J'ai ouvert la fenêtre pour laisser entrer l'air frais.", + "example_sentence_english": "I opened the window to let in the fresh air.", + "pos": "noun", + "word_frequency": 17833 + }, + { + "word": "flamenco", + "article_with_word": "le flamenco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flamenco", + "example_sentence_native": "J'adore regarder un spectacle de flamenco.", + "example_sentence_english": "I love watching a flamenco show.", + "pos": "noun", + "word_frequency": 17834 + }, + { + "word": "fluvial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "river;fluvial", + "example_sentence_native": "Le transport fluvial est important pour l'économie.", + "example_sentence_english": "River transport is important for the economy.", + "pos": "adjective", + "word_frequency": 17835 + }, + { + "word": "framework", + "article_with_word": "le framework", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framework", + "example_sentence_native": "Ce nouveau framework simplifie le développement.", + "example_sentence_english": "This new framework simplifies development.", + "pos": "noun", + "word_frequency": 17837 + }, + { + "word": "frayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to clear a path;to spawn (fish)", + "example_sentence_native": "Les poissons frayent dans la rivière.", + "example_sentence_english": "The fish spawn in the river.", + "pos": "verb", + "word_frequency": 17838 + }, + { + "word": "gaieté", + "article_with_word": "la gaieté", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaiety;cheerfulness", + "example_sentence_native": "Sa gaieté est contagieuse.", + "example_sentence_english": "Her cheerfulness is contagious.", + "pos": "noun", + "word_frequency": 17840 + }, + { + "word": "garé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parked", + "example_sentence_native": "La voiture est garée devant la maison.", + "example_sentence_english": "The car is parked in front of the house.", + "pos": "adjective", + "word_frequency": 17841 + }, + { + "word": "glas", + "article_with_word": "le glas", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "death knell;tolling bell", + "example_sentence_native": "Le glas a sonné pour leurs espoirs.", + "example_sentence_english": "The death knell has sounded for their hopes.", + "pos": "noun", + "word_frequency": 17844 + }, + { + "word": "goulag", + "article_with_word": "le goulag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gulag", + "example_sentence_native": "Des millions de personnes ont souffert dans les goulags.", + "example_sentence_english": "Millions of people suffered in the gulags.", + "pos": "noun", + "word_frequency": 17847 + }, + { + "word": "gynéco", + "article_with_word": "le gynéco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gynecologist (informal)", + "example_sentence_native": "J'ai rendez-vous chez le gynéco demain.", + "example_sentence_english": "I have an appointment with the gynecologist tomorrow.", + "pos": "noun", + "word_frequency": 17851 + }, + { + "word": "gémissement", + "article_with_word": "le gémissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groan;moan;whimper", + "example_sentence_native": "On entendait des gémissements de douleur.", + "example_sentence_english": "We could hear groans of pain.", + "pos": "noun", + "word_frequency": 17852 + }, + { + "word": "généré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generated", + "example_sentence_native": "Le rapport généré automatiquement est très détaillé.", + "example_sentence_english": "The automatically generated report is very detailed.", + "pos": "adjective", + "word_frequency": 17853 + }, + { + "word": "habillage", + "article_with_word": "l'habillage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressing;covering;packaging;branding", + "example_sentence_native": "L'habillage de la nouvelle émission est très moderne.", + "example_sentence_english": "The branding of the new show is very modern.", + "pos": "noun", + "word_frequency": 17854 + }, + { + "word": "hostie", + "article_with_word": "l'hostie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "host (communion wafer)", + "example_sentence_native": "Le prêtre a distribué l'hostie aux fidèles.", + "example_sentence_english": "The priest distributed the host to the faithful.", + "pos": "noun", + "word_frequency": 17861 + }, + { + "word": "hébraïque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hebrew", + "example_sentence_native": "Il étudie la langue hébraïque.", + "example_sentence_english": "He is studying the Hebrew language.", + "pos": "adjective", + "word_frequency": 17862 + }, + { + "word": "hélico", + "article_with_word": "l'hélico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heli;helicopter (informal)", + "example_sentence_native": "On a vu un hélico survoler la ville.", + "example_sentence_english": "We saw a heli flying over the city.", + "pos": "noun", + "word_frequency": 17863 + }, + { + "word": "illisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illegible;unreadable", + "example_sentence_native": "Son écriture est presque illisible.", + "example_sentence_english": "His handwriting is almost illegible.", + "pos": "adjective", + "word_frequency": 17864 + }, + { + "word": "indissociable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inseparable;indissociable", + "example_sentence_native": "Le bonheur et la liberté sont indissociables.", + "example_sentence_english": "Happiness and freedom are inseparable.", + "pos": "adjective", + "word_frequency": 17865 + }, + { + "word": "itinérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "itinerant;traveling;nomadic", + "example_sentence_native": "Il mène une vie itinérante.", + "example_sentence_english": "He leads an itinerant life.", + "pos": "adjective", + "word_frequency": 17868 + }, + { + "word": "justificatif", + "article_with_word": "le justificatif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporting document;proof", + "example_sentence_native": "Veuillez fournir un justificatif de domicile.", + "example_sentence_english": "Please provide proof of address.", + "pos": "noun", + "word_frequency": 17873 + }, + { + "word": "kidnappé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapped", + "example_sentence_native": "L'enfant kidnappé a été retrouvé sain et sauf.", + "example_sentence_english": "The kidnapped child was found safe and sound.", + "pos": "adjective", + "word_frequency": 17874 + }, + { + "word": "kiff", + "article_with_word": "le kiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pleasure;enjoyment;crush (slang)", + "example_sentence_native": "C'est le kiff de ma vie de voyager.", + "example_sentence_english": "Traveling is the joy of my life.", + "pos": "noun", + "word_frequency": 17875 + }, + { + "word": "kiwi", + "article_with_word": "le kiwi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiwi (fruit)", + "example_sentence_native": "J'adore manger des kiwis au petit-déjeuner.", + "example_sentence_english": "I love eating kiwis for breakfast.", + "pos": "noun", + "word_frequency": 17878 + }, + { + "word": "lacrymogène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tear gas;tear-inducing", + "example_sentence_native": "La police a utilisé du gaz lacrymogène.", + "example_sentence_english": "The police used tear gas.", + "pos": "adjective", + "word_frequency": 17879 + }, + { + "word": "laideur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ugliness", + "example_sentence_native": "La laideur de l'édifice était frappante.", + "example_sentence_english": "The ugliness of the building was striking.", + "pos": "noun", + "word_frequency": 17880 + }, + { + "word": "lambeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shred", + "example_sentence_native": "Il ne restait qu'un lambeau de tissu.", + "example_sentence_english": "Only a shred of fabric remained.", + "pos": "noun", + "word_frequency": 17881 + }, + { + "word": "latte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slat", + "example_sentence_native": "Il a fixé les lattes au mur.", + "example_sentence_english": "He fixed the slats to the wall.", + "pos": "noun", + "word_frequency": 17882 + }, + { + "word": "locative", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "locative", + "example_sentence_native": "C'est un cas locatif en grammaire.", + "example_sentence_english": "It's a locative case in grammar.", + "pos": "adjective", + "word_frequency": 17884 + }, + { + "word": "lutin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imp", + "example_sentence_native": "Les enfants croient aux lutins de Noël.", + "example_sentence_english": "Children believe in Christmas elves.", + "pos": "noun", + "word_frequency": 17887 + }, + { + "word": "magma", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magma", + "example_sentence_native": "Le volcan a craché du magma.", + "example_sentence_english": "The volcano spewed magma.", + "pos": "noun", + "word_frequency": 17889 + }, + { + "word": "manchette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cuff", + "example_sentence_native": "La manchette de sa chemise était déchirée.", + "example_sentence_english": "The cuff of his shirt was torn.", + "pos": "noun", + "word_frequency": 17890 + }, + { + "word": "monceau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heap", + "example_sentence_native": "Il y avait un monceau de feuilles mortes dans le jardin.", + "example_sentence_english": "There was a heap of dead leaves in the garden.", + "pos": "noun", + "word_frequency": 17899 + }, + { + "word": "monteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "editor", + "example_sentence_native": "Le monteur a passé des heures sur le film.", + "example_sentence_english": "The editor spent hours on the film.", + "pos": "noun", + "word_frequency": 17900 + }, + { + "word": "motivant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivating", + "example_sentence_native": "C'est un discours très motivant.", + "example_sentence_english": "It's a very motivating speech.", + "pos": "adjective", + "word_frequency": 17902 + }, + { + "word": "médaillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medalist", + "example_sentence_native": "C'est un athlète médaillé olympique.", + "example_sentence_english": "He is an Olympic medalist athlete.", + "pos": "adjective", + "word_frequency": 17905 + }, + { + "word": "navet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turnip", + "example_sentence_native": "J'ai planté des navets dans mon jardin.", + "example_sentence_english": "I planted turnips in my garden.", + "pos": "noun", + "word_frequency": 17907 + }, + { + "word": "ombrage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shade", + "example_sentence_native": "L'arbre offre un bel ombrage en été.", + "example_sentence_english": "The tree offers nice shade in summer.", + "pos": "noun", + "word_frequency": 17913 + }, + { + "word": "orfèvre", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "goldsmith", + "example_sentence_native": "L'orfèvre a créé un bijou magnifique.", + "example_sentence_english": "The goldsmith created a magnificent piece of jewelry.", + "pos": "noun", + "word_frequency": 17914 + }, + { + "word": "peiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to struggle", + "example_sentence_native": "Il peine à comprendre la leçon.", + "example_sentence_english": "He struggles to understand the lesson.", + "pos": "verb", + "word_frequency": 17918 + }, + { + "word": "perpétrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perpetrate", + "example_sentence_native": "Il a perpétré un crime horrible.", + "example_sentence_english": "He perpetrated a horrible crime.", + "pos": "verb", + "word_frequency": 17920 + }, + { + "word": "pincée", + "article_with_word": "une pincée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pinch", + "example_sentence_native": "Ajoutez une pincée de sel à la soupe.", + "example_sentence_english": "Add a pinch of salt to the soup.", + "pos": "noun", + "word_frequency": 17921 + }, + { + "word": "polluer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pollute", + "example_sentence_native": "Les usines peuvent polluer l'environnement.", + "example_sentence_english": "Factories can pollute the environment.", + "pos": "verb", + "word_frequency": 17923 + }, + { + "word": "pontificat", + "article_with_word": "le pontificat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontificate", + "example_sentence_native": "Le pontificat du pape a duré de nombreuses années.", + "example_sentence_english": "The pontificate of the Pope lasted many years.", + "pos": "noun", + "word_frequency": 17924 + }, + { + "word": "professionnalisation", + "article_with_word": "la professionnalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "professionalization", + "example_sentence_native": "La professionnalisation des métiers est essentielle.", + "example_sentence_english": "The professionalization of trades is essential.", + "pos": "noun", + "word_frequency": 17926 + }, + { + "word": "promotionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promotional", + "example_sentence_native": "Ils ont lancé une offre promotionnelle.", + "example_sentence_english": "They launched a promotional offer.", + "pos": "adjective", + "word_frequency": 17927 + }, + { + "word": "précepteur", + "article_with_word": "le précepteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tutor", + "example_sentence_native": "Le jeune prince avait un précepteur personnel.", + "example_sentence_english": "The young prince had a personal tutor.", + "pos": "noun", + "word_frequency": 17928 + }, + { + "word": "précipitamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hastily", + "example_sentence_native": "Il est parti précipitamment sans dire au revoir.", + "example_sentence_english": "He left hastily without saying goodbye.", + "pos": "adverb", + "word_frequency": 17929 + }, + { + "word": "préposé", + "article_with_word": "le préposé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attendant", + "example_sentence_native": "Le préposé à l'accueil nous a donné les informations.", + "example_sentence_english": "The attendant at the reception gave us the information.", + "pos": "noun", + "word_frequency": 17930 + }, + { + "word": "pénétrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penetrating", + "example_sentence_native": "Il avait un regard pénétrant qui lisait dans les âmes.", + "example_sentence_english": "He had a penetrating gaze that read into souls.", + "pos": "adjective", + "word_frequency": 17932 + }, + { + "word": "quantifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quantify", + "example_sentence_native": "Il est difficile de quantifier l'impact de cette décision.", + "example_sentence_english": "It is difficult to quantify the impact of this decision.", + "pos": "verb", + "word_frequency": 17933 + }, + { + "word": "radis", + "article_with_word": "le radis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "radish", + "example_sentence_native": "J'aime manger des radis avec du beurre.", + "example_sentence_english": "I like to eat radishes with butter.", + "pos": "noun", + "word_frequency": 17934 + }, + { + "word": "reboot", + "article_with_word": "le reboot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reboot", + "example_sentence_native": "Un simple reboot a résolu le problème.", + "example_sentence_english": "A simple reboot solved the problem.", + "pos": "noun", + "word_frequency": 17937 + }, + { + "word": "reconvertir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retrain", + "example_sentence_native": "Beaucoup de gens choisissent de se reconvertir professionnellement.", + "example_sentence_english": "Many people choose to retrain professionally.", + "pos": "verb", + "word_frequency": 17938 + }, + { + "word": "renonciation", + "article_with_word": "la renonciation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renunciation", + "example_sentence_native": "La renonciation à ses droits est un acte grave.", + "example_sentence_english": "The renunciation of one's rights is a serious act.", + "pos": "noun", + "word_frequency": 17940 + }, + { + "word": "repeindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to repaint", + "example_sentence_native": "Nous devons repeindre le salon ce week-end.", + "example_sentence_english": "We need to repaint the living room this weekend.", + "pos": "verb", + "word_frequency": 17941 + }, + { + "word": "reproduit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproduced", + "example_sentence_native": "Cette œuvre d'art est une copie reproduite.", + "example_sentence_english": "This artwork is a reproduced copy.", + "pos": "adjective", + "word_frequency": 17942 + }, + { + "word": "requiem", + "article_with_word": "le requiem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requiem", + "example_sentence_native": "Le Requiem de Mozart est une œuvre magnifique.", + "example_sentence_english": "Mozart's Requiem is a magnificent work.", + "pos": "noun", + "word_frequency": 17943 + }, + { + "word": "retransmission", + "article_with_word": "la retransmission", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retransmission", + "example_sentence_native": "La retransmission du match a été un succès.", + "example_sentence_english": "The retransmission of the match was a success.", + "pos": "noun", + "word_frequency": 17944 + }, + { + "word": "rouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rust", + "example_sentence_native": "Le vieux vélo a commencé à rouiller.", + "example_sentence_english": "The old bicycle started to rust.", + "pos": "verb", + "word_frequency": 17950 + }, + { + "word": "répétitif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repetitive", + "example_sentence_native": "Son travail est très répétitif et ennuyeux.", + "example_sentence_english": "His work is very repetitive and boring.", + "pos": "adjective", + "word_frequency": 17952 + }, + { + "word": "résignation", + "article_with_word": "la résignation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resignation", + "example_sentence_native": "Il a accepté la situation avec résignation.", + "example_sentence_english": "He accepted the situation with resignation.", + "pos": "noun", + "word_frequency": 17953 + }, + { + "word": "résigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to resign oneself", + "example_sentence_native": "Il a dû se résigner à la défaite.", + "example_sentence_english": "He had to resign himself to defeat.", + "pos": "verb", + "word_frequency": 17954 + }, + { + "word": "réticent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reluctant", + "example_sentence_native": "Elle était réticente à partager ses secrets.", + "example_sentence_english": "She was reluctant to share her secrets.", + "pos": "adjective", + "word_frequency": 17955 + }, + { + "word": "sabbat", + "article_with_word": "le sabbat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sabbath", + "example_sentence_native": "Le sabbat est un jour de repos dans certaines religions.", + "example_sentence_english": "The Sabbath is a day of rest in some religions.", + "pos": "noun", + "word_frequency": 17956 + }, + { + "word": "saturé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturated", + "example_sentence_native": "Le marché est saturé de nouveaux produits.", + "example_sentence_english": "The market is saturated with new products.", + "pos": "adjective", + "word_frequency": 17958 + }, + { + "word": "savannah", + "article_with_word": "la savannah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "savannah", + "example_sentence_native": "Les lions vivent dans la savannah africaine.", + "example_sentence_english": "Lions live in the African savannah.", + "pos": "noun", + "word_frequency": 17959 + }, + { + "word": "sceptre", + "article_with_word": "le sceptre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scepter", + "example_sentence_native": "Le roi tenait un sceptre d'or.", + "example_sentence_english": "The king held a golden scepter.", + "pos": "noun", + "word_frequency": 17960 + }, + { + "word": "sculpté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sculpted", + "example_sentence_native": "La statue était magnifiquement sculptée.", + "example_sentence_english": "The statue was beautifully sculpted.", + "pos": "adjective", + "word_frequency": 17962 + }, + { + "word": "sociétaire", + "article_with_word": "un sociétaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member (of a society;company);shareholder", + "example_sentence_native": "Chaque sociétaire a droit à une part des bénéfices.", + "example_sentence_english": "Each member is entitled to a share of the profits.", + "pos": "noun", + "word_frequency": 17968 + }, + { + "word": "solvabilité", + "article_with_word": "la solvabilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solvency", + "example_sentence_native": "La solvabilité de l'entreprise est essentielle pour obtenir un prêt.", + "example_sentence_english": "The company's solvency is essential to obtain a loan.", + "pos": "noun", + "word_frequency": 17971 + }, + { + "word": "stigmatiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stigmatize", + "example_sentence_native": "Il ne faut pas stigmatiser les personnes en difficulté.", + "example_sentence_english": "One must not stigmatize people in difficulty.", + "pos": "verb", + "word_frequency": 17974 + }, + { + "word": "symbiose", + "article_with_word": "la symbiose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbiosis", + "example_sentence_native": "Il existe une symbiose parfaite entre ces deux espèces.", + "example_sentence_english": "There is a perfect symbiosis between these two species.", + "pos": "noun", + "word_frequency": 17975 + }, + { + "word": "syphilis", + "article_with_word": "la syphilis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syphilis", + "example_sentence_native": "La syphilis est une infection sexuellement transmissible.", + "example_sentence_english": "Syphilis is a sexually transmitted infection.", + "pos": "noun", + "word_frequency": 17976 + }, + { + "word": "trempé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soaked;drenched", + "example_sentence_native": "Après la pluie, j'étais complètement trempé.", + "example_sentence_english": "After the rain, I was completely drenched.", + "pos": "adjective", + "word_frequency": 17982 + }, + { + "word": "vaudeville", + "article_with_word": "le vaudeville", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vaudeville", + "example_sentence_native": "Ce spectacle était un véritable vaudeville, plein de quiproquos.", + "example_sentence_english": "This show was a true vaudeville, full of misunderstandings.", + "pos": "noun", + "word_frequency": 17988 + }, + { + "word": "vertébré", + "article_with_word": "un vertébré", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertebrate", + "example_sentence_native": "Les poissons sont des vertébrés aquatiques.", + "example_sentence_english": "Fish are aquatic vertebrates.", + "pos": "noun", + "word_frequency": 17990 + }, + { + "word": "zapper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to zap;to channel surf", + "example_sentence_native": "J'aime zapper entre les chaînes de télévision.", + "example_sentence_english": "I like to zap between TV channels.", + "pos": "verb", + "word_frequency": 17994 + }, + { + "word": "éclipser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eclipse;to overshadow", + "example_sentence_native": "La lune va éclipser le soleil demain.", + "example_sentence_english": "The moon will eclipse the sun tomorrow.", + "pos": "verb", + "word_frequency": 17995 + }, + { + "word": "élucider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to elucidate;to clarify", + "example_sentence_native": "La police a réussi à élucider le mystère.", + "example_sentence_english": "The police managed to elucidate the mystery.", + "pos": "verb", + "word_frequency": 17996 + }, + { + "word": "éplucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to peel", + "example_sentence_native": "Peux-tu m'aider à éplucher les pommes de terre ?", + "example_sentence_english": "Can you help me peel the potatoes?", + "pos": "verb", + "word_frequency": 17997 + }, + { + "word": "érudition", + "article_with_word": "l'érudition", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "erudition;scholarship", + "example_sentence_native": "Son érudition en histoire est impressionnante.", + "example_sentence_english": "His erudition in history is impressive.", + "pos": "noun", + "word_frequency": 17998 + }, + { + "word": "étranglement", + "article_with_word": "l'étranglement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strangulation;choking;bottleneck", + "example_sentence_native": "L'étranglement de la circulation a causé de longs retards.", + "example_sentence_english": "The bottleneck in traffic caused long delays.", + "pos": "noun", + "word_frequency": 17999 + }, + { + "word": "accablant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelming", + "example_sentence_native": "La chaleur était accablante.", + "example_sentence_english": "The heat was overwhelming.", + "pos": "adjective", + "word_frequency": 18001 + }, + { + "word": "affectionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be fond of", + "example_sentence_native": "Il affectionne particulièrement les romans policiers.", + "example_sentence_english": "He is particularly fond of detective novels.", + "pos": "verb", + "word_frequency": 18004 + }, + { + "word": "anorexie", + "article_with_word": "l'anorexie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anorexia", + "example_sentence_native": "L'anorexie est un trouble alimentaire grave.", + "example_sentence_english": "Anorexia is a serious eating disorder.", + "pos": "noun", + "word_frequency": 18005 + }, + { + "word": "antiquaire", + "article_with_word": "l'antiquaire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antique dealer", + "example_sentence_native": "Nous avons acheté cette horloge chez un antiquaire.", + "example_sentence_english": "We bought this clock from an antique dealer.", + "pos": "noun", + "word_frequency": 18006 + }, + { + "word": "apprivoiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tame", + "example_sentence_native": "Il a réussi à apprivoiser l'oiseau.", + "example_sentence_english": "He managed to tame the bird.", + "pos": "verb", + "word_frequency": 18007 + }, + { + "word": "ara", + "article_with_word": "l'ara", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "macaw", + "example_sentence_native": "L'ara est un perroquet aux couleurs vives.", + "example_sentence_english": "The macaw is a brightly colored parrot.", + "pos": "noun", + "word_frequency": 18008 + }, + { + "word": "astreinte", + "article_with_word": "l'astreinte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on-call duty", + "example_sentence_native": "Il est en astreinte ce week-end.", + "example_sentence_english": "He is on call this weekend.", + "pos": "noun", + "word_frequency": 18010 + }, + { + "word": "astucieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clever", + "example_sentence_native": "C'est une solution très astucieuse.", + "example_sentence_english": "That's a very clever solution.", + "pos": "adjective", + "word_frequency": 18011 + }, + { + "word": "auditif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auditory", + "example_sentence_native": "Il a une excellente mémoire auditive.", + "example_sentence_english": "He has an excellent auditory memory.", + "pos": "adjective", + "word_frequency": 18012 + }, + { + "word": "auger", + "article_with_word": "l'auger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auger", + "example_sentence_native": "Il a utilisé un auger pour percer le bois.", + "example_sentence_english": "He used an auger to drill the wood.", + "pos": "noun", + "word_frequency": 18013 + }, + { + "word": "autoritarisme", + "article_with_word": "l'autoritarisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authoritarianism", + "example_sentence_native": "L'autoritarisme est une forme de gouvernement.", + "example_sentence_english": "Authoritarianism is a form of government.", + "pos": "noun", + "word_frequency": 18014 + }, + { + "word": "bactérien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bacterial", + "example_sentence_native": "C'est une infection bactérienne.", + "example_sentence_english": "It's a bacterial infection.", + "pos": "adjective", + "word_frequency": 18016 + }, + { + "word": "bagatelle", + "article_with_word": "la bagatelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trifle", + "example_sentence_native": "Ne t'inquiète pas, ce n'est qu'une bagatelle.", + "example_sentence_english": "Don't worry, it's just a trifle.", + "pos": "noun", + "word_frequency": 18017 + }, + { + "word": "bandage", + "article_with_word": "le bandage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bandage", + "example_sentence_native": "L'infirmière a mis un bandage sur sa blessure.", + "example_sentence_english": "The nurse put a bandage on his wound.", + "pos": "noun", + "word_frequency": 18019 + }, + { + "word": "biographe", + "article_with_word": "le biographe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biographer", + "example_sentence_native": "Le biographe a passé des années à rechercher sa vie.", + "example_sentence_english": "The biographer spent years researching his life.", + "pos": "noun", + "word_frequency": 18024 + }, + { + "word": "blockbuster", + "article_with_word": "le blockbuster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blockbuster", + "example_sentence_native": "Ce film est un véritable blockbuster.", + "example_sentence_english": "This film is a real blockbuster.", + "pos": "noun", + "word_frequency": 18026 + }, + { + "word": "bolide", + "article_with_word": "le bolide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fast car", + "example_sentence_native": "Il a acheté un nouveau bolide rouge.", + "example_sentence_english": "He bought a new red sports car.", + "pos": "noun", + "word_frequency": 18027 + }, + { + "word": "bouder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sulk", + "example_sentence_native": "L'enfant boude parce qu'il n'a pas eu de bonbons.", + "example_sentence_english": "The child is sulking because he didn't get any candy.", + "pos": "verb", + "word_frequency": 18028 + }, + { + "word": "boutade", + "article_with_word": "la boutade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witty remark", + "example_sentence_native": "Il a lancé une boutade qui a fait rire tout le monde.", + "example_sentence_english": "He made a witty remark that made everyone laugh.", + "pos": "noun", + "word_frequency": 18030 + }, + { + "word": "brisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breaking", + "example_sentence_native": "Les vagues étaient brisantes aujourd'hui.", + "example_sentence_english": "The waves were breaking today.", + "pos": "adjective", + "word_frequency": 18032 + }, + { + "word": "bronzer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tan", + "example_sentence_native": "J'adore bronzer au soleil.", + "example_sentence_english": "I love to tan in the sun.", + "pos": "verb", + "word_frequency": 18033 + }, + { + "word": "bure", + "article_with_word": "la bure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coarse cloth", + "example_sentence_native": "Les moines portaient des habits de bure.", + "example_sentence_english": "The monks wore habits of coarse cloth.", + "pos": "noun", + "word_frequency": 18034 + }, + { + "word": "cabernet", + "article_with_word": "le cabernet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cabernet", + "example_sentence_native": "Nous avons commandé une bouteille de Cabernet Sauvignon.", + "example_sentence_english": "We ordered a bottle of Cabernet Sauvignon.", + "pos": "noun", + "word_frequency": 18035 + }, + { + "word": "caddie", + "article_with_word": "le caddie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping cart", + "example_sentence_native": "J'ai pris un caddie pour faire mes courses.", + "example_sentence_english": "I took a shopping cart to do my groceries.", + "pos": "noun", + "word_frequency": 18036 + }, + { + "word": "cadrage", + "article_with_word": "le cadrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framing", + "example_sentence_native": "Le cadrage de la photo est parfait.", + "example_sentence_english": "The framing of the photo is perfect.", + "pos": "noun", + "word_frequency": 18037 + }, + { + "word": "camoufler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to camouflage;to disguise", + "example_sentence_native": "Il a essayé de camoufler ses intentions.", + "example_sentence_english": "He tried to camouflage his intentions.", + "pos": "verb", + "word_frequency": 18040 + }, + { + "word": "caractérisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterized;typical", + "example_sentence_native": "Son comportement est caractérisé par une grande prudence.", + "example_sentence_english": "His behavior is characterized by great caution.", + "pos": "adjective", + "word_frequency": 18041 + }, + { + "word": "cellier", + "article_with_word": "le cellier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pantry;cellar", + "example_sentence_native": "Nous avons rangé les conserves dans le cellier.", + "example_sentence_english": "We stored the preserves in the pantry.", + "pos": "noun", + "word_frequency": 18044 + }, + { + "word": "cerne", + "article_with_word": "le cerne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark circle (under eye);ring", + "example_sentence_native": "Elle avait de profonds cernes sous les yeux après une nuit blanche.", + "example_sentence_english": "She had deep dark circles under her eyes after a sleepless night.", + "pos": "noun", + "word_frequency": 18045 + }, + { + "word": "chicane", + "article_with_word": "la chicane", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarrel;dispute", + "example_sentence_native": "Il y a eu une chicane entre les voisins à propos du bruit.", + "example_sentence_english": "There was a quarrel between the neighbors about the noise.", + "pos": "noun", + "word_frequency": 18047 + }, + { + "word": "choucroute", + "article_with_word": "la choucroute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sauerkraut", + "example_sentence_native": "La choucroute garnie est un plat traditionnel alsacien.", + "example_sentence_english": "Sauerkraut with meat is a traditional Alsatian dish.", + "pos": "noun", + "word_frequency": 18048 + }, + { + "word": "cirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wax;to polish", + "example_sentence_native": "Il faut cirer les chaussures pour qu'elles brillent.", + "example_sentence_english": "You have to polish the shoes so they shine.", + "pos": "verb", + "word_frequency": 18051 + }, + { + "word": "combe", + "article_with_word": "la combe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valley;hollow (geographical)", + "example_sentence_native": "La combe est un type de vallée étroite et profonde.", + "example_sentence_english": "A combe is a type of narrow and deep valley.", + "pos": "noun", + "word_frequency": 18052 + }, + { + "word": "compréhensif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understanding;comprehensive", + "example_sentence_native": "Elle est très compréhensive face à mes problèmes.", + "example_sentence_english": "She is very understanding of my problems.", + "pos": "adjective", + "word_frequency": 18055 + }, + { + "word": "confédéré", + "article_with_word": "le confédéré", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confederate", + "example_sentence_native": "Les confédérés se sont réunis pour discuter de l'alliance.", + "example_sentence_english": "The confederates gathered to discuss the alliance.", + "pos": "noun", + "word_frequency": 18056 + }, + { + "word": "consultable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultable;available for consultation", + "example_sentence_native": "Le document est consultable à la bibliothèque.", + "example_sentence_english": "The document is available for consultation at the library.", + "pos": "adjective", + "word_frequency": 18057 + }, + { + "word": "convier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invite;to urge", + "example_sentence_native": "Il a convié tous ses amis à sa fête d'anniversaire.", + "example_sentence_english": "He invited all his friends to his birthday party.", + "pos": "verb", + "word_frequency": 18058 + }, + { + "word": "couter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cost", + "example_sentence_native": "Combien coûte ce livre ?", + "example_sentence_english": "How much does this book cost?", + "pos": "verb", + "word_frequency": 18060 + }, + { + "word": "cupidon", + "article_with_word": "Cupidon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cupid", + "example_sentence_native": "Cupidon est souvent représenté avec un arc et des flèches.", + "example_sentence_english": "Cupid is often depicted with a bow and arrows.", + "pos": "noun", + "word_frequency": 18061 + }, + { + "word": "cybersécurité", + "article_with_word": "la cybersécurité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cybersecurity", + "example_sentence_native": "La cybersécurité est un enjeu majeur pour les entreprises.", + "example_sentence_english": "Cybersecurity is a major issue for businesses.", + "pos": "noun", + "word_frequency": 18062 + }, + { + "word": "cyborg", + "article_with_word": "le cyborg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyborg", + "example_sentence_native": "Le film met en scène un cyborg venu du futur.", + "example_sentence_english": "The film features a cyborg from the future.", + "pos": "noun", + "word_frequency": 18063 + }, + { + "word": "drastiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drastically", + "example_sentence_native": "Les mesures ont réduit les dépenses drastiquement.", + "example_sentence_english": "The measures drastically reduced expenses.", + "pos": "adverb", + "word_frequency": 18067 + }, + { + "word": "dressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trained;erected", + "example_sentence_native": "Le chien est très bien dressé.", + "example_sentence_english": "The dog is very well trained.", + "pos": "adjective", + "word_frequency": 18068 + }, + { + "word": "drogué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drugged;addicted", + "example_sentence_native": "Il semblait complètement drogué.", + "example_sentence_english": "He seemed completely drugged.", + "pos": "adjective", + "word_frequency": 18070 + }, + { + "word": "déclassement", + "article_with_word": "le déclassement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "downgrading;reclassification", + "example_sentence_native": "Le déclassement social est une préoccupation croissante.", + "example_sentence_english": "Social downgrading is a growing concern.", + "pos": "noun", + "word_frequency": 18072 + }, + { + "word": "déconstruction", + "article_with_word": "la déconstruction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deconstruction", + "example_sentence_native": "La déconstruction d'un mythe est souvent difficile.", + "example_sentence_english": "The deconstruction of a myth is often difficult.", + "pos": "noun", + "word_frequency": 18073 + }, + { + "word": "décontracté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxed;casual", + "example_sentence_native": "Il a une attitude très décontractée.", + "example_sentence_english": "He has a very relaxed attitude.", + "pos": "adjective", + "word_frequency": 18074 + }, + { + "word": "découpé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cut out;carved", + "example_sentence_native": "Le papier est découpé en formes géométriques.", + "example_sentence_english": "The paper is cut into geometric shapes.", + "pos": "adjective", + "word_frequency": 18075 + }, + { + "word": "défaillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "failing;defective", + "example_sentence_native": "Le système de freinage était défaillant.", + "example_sentence_english": "The braking system was defective.", + "pos": "adjective", + "word_frequency": 18076 + }, + { + "word": "démarcation", + "article_with_word": "la démarcation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demarcation;boundary", + "example_sentence_native": "Il est important de tracer une ligne de démarcation claire.", + "example_sentence_english": "It is important to draw a clear line of demarcation.", + "pos": "noun", + "word_frequency": 18077 + }, + { + "word": "dépensé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spent;exhausted", + "example_sentence_native": "L'argent dépensé pour ce projet était considérable.", + "example_sentence_english": "The money spent on this project was considerable.", + "pos": "adjective", + "word_frequency": 18078 + }, + { + "word": "désintéressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinterested;unselfish", + "example_sentence_native": "Son aide était totalement désintéressée.", + "example_sentence_english": "His help was totally unselfish.", + "pos": "adjective", + "word_frequency": 18079 + }, + { + "word": "encadré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "framed;boxed", + "example_sentence_native": "Le texte important est encadré en rouge.", + "example_sentence_english": "The important text is boxed in red.", + "pos": "adjective", + "word_frequency": 18081 + }, + { + "word": "ermitage", + "article_with_word": "l'ermitage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermitage;retreat", + "example_sentence_native": "Il a trouvé la paix dans son ermitage isolé.", + "example_sentence_english": "He found peace in his isolated hermitage.", + "pos": "noun", + "word_frequency": 18083 + }, + { + "word": "etablissement", + "article_with_word": "l'établissement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "establishment;institution", + "example_sentence_native": "C'est un établissement scolaire réputé.", + "example_sentence_english": "It's a renowned educational establishment.", + "pos": "noun", + "word_frequency": 18084 + }, + { + "word": "excision", + "article_with_word": "l'excision", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excision", + "example_sentence_native": "L'excision de la tumeur a été un succès.", + "example_sentence_english": "The excision of the tumor was a success.", + "pos": "noun", + "word_frequency": 18086 + }, + { + "word": "exclamation", + "article_with_word": "l'exclamation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exclamation", + "example_sentence_native": "Une exclamation de surprise a retenti.", + "example_sentence_english": "An exclamation of surprise rang out.", + "pos": "noun", + "word_frequency": 18087 + }, + { + "word": "exorbitant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exorbitant;excessive", + "example_sentence_native": "Le prix était absolument exorbitant.", + "example_sentence_english": "The price was absolutely exorbitant.", + "pos": "adjective", + "word_frequency": 18088 + }, + { + "word": "frêne", + "article_with_word": "le frêne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ash tree", + "example_sentence_native": "Un grand frêne se dresse dans le jardin.", + "example_sentence_english": "A large ash tree stands in the garden.", + "pos": "noun", + "word_frequency": 18092 + }, + { + "word": "fusible", + "article_with_word": "le fusible", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuse (electrical)", + "example_sentence_native": "Le fusible a sauté, il faut le remplacer.", + "example_sentence_english": "The fuse blew, it needs to be replaced.", + "pos": "noun", + "word_frequency": 18093 + }, + { + "word": "gamelle", + "article_with_word": "la gamelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess tin;lunchbox", + "example_sentence_native": "Il a mangé son repas dans sa gamelle.", + "example_sentence_english": "He ate his meal from his mess tin.", + "pos": "noun", + "word_frequency": 18095 + }, + { + "word": "grosseur", + "article_with_word": "la grosseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "size;thickness;lump", + "example_sentence_native": "La grosseur de la corde est importante.", + "example_sentence_english": "The thickness of the rope is important.", + "pos": "noun", + "word_frequency": 18098 + }, + { + "word": "hernie", + "article_with_word": "la hernie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hernia", + "example_sentence_native": "Il a dû se faire opérer d'une hernie.", + "example_sentence_english": "He had to have surgery for a hernia.", + "pos": "noun", + "word_frequency": 18101 + }, + { + "word": "hideux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hideous;ugly", + "example_sentence_native": "Ce masque est vraiment hideux.", + "example_sentence_english": "This mask is truly hideous.", + "pos": "adjective", + "word_frequency": 18103 + }, + { + "word": "horloger", + "article_with_word": "l'horloger", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watchmaker;clockmaker", + "example_sentence_native": "L'horloger a réparé ma montre ancienne.", + "example_sentence_english": "The watchmaker repaired my old watch.", + "pos": "noun", + "word_frequency": 18104 + }, + { + "word": "hydroélectrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydroelectric", + "example_sentence_native": "La centrale hydroélectrique produit de l'électricité.", + "example_sentence_english": "The hydroelectric power plant produces electricity.", + "pos": "adjective", + "word_frequency": 18105 + }, + { + "word": "immobilisme", + "article_with_word": "l'immobilisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immobility;stagnation;inaction", + "example_sentence_native": "Le pays souffre d'un certain immobilisme politique.", + "example_sentence_english": "The country suffers from a certain political stagnation.", + "pos": "noun", + "word_frequency": 18106 + }, + { + "word": "immobiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to immobilize;to fix", + "example_sentence_native": "Il a fallu immobiliser la jambe blessée.", + "example_sentence_english": "It was necessary to immobilize the injured leg.", + "pos": "verb", + "word_frequency": 18107 + }, + { + "word": "impro", + "article_with_word": "l'impro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improv (short for improvisation)", + "example_sentence_native": "Ils ont fait une séance d'improvisation théâtrale, ou 'impro'.", + "example_sentence_english": "They did a theatrical improvisation session, or 'improv'.", + "pos": "noun", + "word_frequency": 18108 + }, + { + "word": "incinération", + "article_with_word": "l'incinération", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incineration;cremation", + "example_sentence_native": "L'incinération des déchets réduit leur volume.", + "example_sentence_english": "The incineration of waste reduces its volume.", + "pos": "noun", + "word_frequency": 18109 + }, + { + "word": "incision", + "article_with_word": "l'incision", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incision", + "example_sentence_native": "Le chirurgien a pratiqué une petite incision.", + "example_sentence_english": "The surgeon made a small incision.", + "pos": "noun", + "word_frequency": 18110 + }, + { + "word": "incubateur", + "article_with_word": "l'incubateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incubator", + "example_sentence_native": "Cette startup a été lancée dans un incubateur.", + "example_sentence_english": "This startup was launched in an incubator.", + "pos": "noun", + "word_frequency": 18111 + }, + { + "word": "indigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indignant;outraged", + "example_sentence_native": "Il était indigné par l'injustice.", + "example_sentence_english": "He was indignant at the injustice.", + "pos": "adjective", + "word_frequency": 18112 + }, + { + "word": "individualité", + "article_with_word": "l'individualité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "individuality", + "example_sentence_native": "Chaque personne a son individualité propre.", + "example_sentence_english": "Each person has their own individuality.", + "pos": "noun", + "word_frequency": 18113 + }, + { + "word": "infante", + "article_with_word": "l'infante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infanta (Spanish;Portuguese princess)", + "example_sentence_native": "L'infante d'Espagne a assisté à la cérémonie.", + "example_sentence_english": "The Infanta of Spain attended the ceremony.", + "pos": "noun", + "word_frequency": 18114 + }, + { + "word": "insatiable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insatiable", + "example_sentence_native": "Il a une soif insatiable de connaissances.", + "example_sentence_english": "He has an insatiable thirst for knowledge.", + "pos": "adjective", + "word_frequency": 18115 + }, + { + "word": "insinuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to insinuate;to creep in", + "example_sentence_native": "Il a essayé d'insinuer le doute dans mon esprit.", + "example_sentence_english": "He tried to insinuate doubt into my mind.", + "pos": "verb", + "word_frequency": 18116 + }, + { + "word": "instrumentation", + "article_with_word": "l'instrumentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instrumentation", + "example_sentence_native": "L'instrumentation du laboratoire est très sophistiquée.", + "example_sentence_english": "The laboratory instrumentation is very sophisticated.", + "pos": "noun", + "word_frequency": 18117 + }, + { + "word": "internationalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internationally", + "example_sentence_native": "Ce problème est reconnu internationalement.", + "example_sentence_english": "This problem is recognized internationally.", + "pos": "adverb", + "word_frequency": 18118 + }, + { + "word": "inébranlable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unshakeable;unwavering", + "example_sentence_native": "Sa foi est inébranlable.", + "example_sentence_english": "His faith is unshakeable.", + "pos": "adjective", + "word_frequency": 18119 + }, + { + "word": "jetable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disposable", + "example_sentence_native": "Nous utilisons des assiettes jetables pour le pique-nique.", + "example_sentence_english": "We use disposable plates for the picnic.", + "pos": "adjective", + "word_frequency": 18121 + }, + { + "word": "jockey", + "article_with_word": "le jockey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jockey", + "example_sentence_native": "Le jockey a monté son cheval vers la victoire.", + "example_sentence_english": "The jockey rode his horse to victory.", + "pos": "noun", + "word_frequency": 18123 + }, + { + "word": "kaiser", + "article_with_word": "le kaiser", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kaiser (emperor)", + "example_sentence_native": "Le kaiser Guillaume II a régné sur l'Empire allemand.", + "example_sentence_english": "Kaiser Wilhelm II reigned over the German Empire.", + "pos": "noun", + "word_frequency": 18126 + }, + { + "word": "kappa", + "article_with_word": "le kappa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kappa", + "example_sentence_native": "La lettre grecque kappa est la dixième de l'alphabet.", + "example_sentence_english": "The Greek letter kappa is the tenth letter of the alphabet.", + "pos": "noun", + "word_frequency": 18127 + }, + { + "word": "liber", + "article_with_word": "le liber", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "phloem;bast", + "example_sentence_native": "Le liber est essentiel pour le transport des nutriments dans les plantes.", + "example_sentence_english": "Phloem is essential for nutrient transport in plants.", + "pos": "noun", + "word_frequency": 18132 + }, + { + "word": "losange", + "article_with_word": "le losange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhombus;diamond shape", + "example_sentence_native": "Le logo de la marque est un losange rouge.", + "example_sentence_english": "The brand's logo is a red rhombus.", + "pos": "noun", + "word_frequency": 18134 + }, + { + "word": "lotto", + "article_with_word": "le loto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lottery;bingo", + "example_sentence_native": "Il joue au loto chaque semaine dans l'espoir de gagner.", + "example_sentence_english": "He plays the lottery every week hoping to win.", + "pos": "noun", + "word_frequency": 18135 + }, + { + "word": "macaron", + "article_with_word": "le macaron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "macaron", + "example_sentence_native": "Les macarons français sont célèbres pour leurs couleurs vives et leurs saveurs variées.", + "example_sentence_english": "French macarons are famous for their bright colors and varied flavors.", + "pos": "noun", + "word_frequency": 18136 + }, + { + "word": "mach", + "article_with_word": "le mach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Mach (number)", + "example_sentence_native": "Un avion supersonique peut dépasser Mach 1.", + "example_sentence_english": "A supersonic plane can exceed Mach 1.", + "pos": "noun", + "word_frequency": 18137 + }, + { + "word": "mala", + "article_with_word": "le mala", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mala (prayer beads)", + "example_sentence_native": "Elle utilise un mala pour compter ses mantras pendant la méditation.", + "example_sentence_english": "She uses a mala to count her mantras during meditation.", + "pos": "noun", + "word_frequency": 18138 + }, + { + "word": "martien", + "article_with_word": "le martien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Martian", + "example_sentence_native": "Les films de science-fiction imaginent souvent des martiens verts.", + "example_sentence_english": "Science fiction films often imagine green Martians.", + "pos": "noun", + "word_frequency": 18141 + }, + { + "word": "maxim", + "article_with_word": "la maxime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maxim;principle", + "example_sentence_native": "Sa maxime de vie est de toujours apprendre et grandir.", + "example_sentence_english": "His life's maxim is to always learn and grow.", + "pos": "noun", + "word_frequency": 18142 + }, + { + "word": "maxima", + "article_with_word": "les maxima", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maxima", + "example_sentence_native": "Le graphique montre les maxima et les minima de la température quotidienne.", + "example_sentence_english": "The graph shows the maxima and minima of the daily temperature.", + "pos": "noun", + "word_frequency": 18143 + }, + { + "word": "miséricordieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merciful;compassionate", + "example_sentence_native": "Un cœur miséricordieux est capable de pardonner les erreurs des autres.", + "example_sentence_english": "A merciful heart is capable of forgiving the mistakes of others.", + "pos": "adjective", + "word_frequency": 18150 + }, + { + "word": "modernisme", + "article_with_word": "le modernisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernism", + "example_sentence_native": "Le modernisme a révolutionné l'art et la littérature au début du 20e siècle.", + "example_sentence_english": "Modernism revolutionized art and literature at the beginning of the 20th century.", + "pos": "noun", + "word_frequency": 18151 + }, + { + "word": "morose", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morose;gloomy", + "example_sentence_native": "Après la défaite, l'équipe était d'humeur morose.", + "example_sentence_english": "After the defeat, the team was in a morose mood.", + "pos": "adjective", + "word_frequency": 18152 + }, + { + "word": "moue", + "article_with_word": "la moue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pout;grimace", + "example_sentence_native": "Elle a fait une petite moue quand il a refusé de l'aider.", + "example_sentence_english": "She made a little pout when he refused to help her.", + "pos": "noun", + "word_frequency": 18153 + }, + { + "word": "mouillage", + "article_with_word": "le mouillage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchorage;mooring", + "example_sentence_native": "Le bateau a trouvé un bon mouillage à l'abri du vent.", + "example_sentence_english": "The boat found a good anchorage sheltered from the wind.", + "pos": "noun", + "word_frequency": 18154 + }, + { + "word": "mâche", + "article_with_word": "la mâche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lamb's lettuce;corn salad", + "example_sentence_native": "J'aime la mâche avec une vinaigrette simple.", + "example_sentence_english": "I like lamb's lettuce with a simple vinaigrette.", + "pos": "noun", + "word_frequency": 18155 + }, + { + "word": "métadonnée", + "article_with_word": "la métadonnée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metadata", + "example_sentence_native": "Les métadonnées d'une photo incluent la date et le lieu de la prise de vue.", + "example_sentence_english": "A photo's metadata includes the date and location it was taken.", + "pos": "noun", + "word_frequency": 18156 + }, + { + "word": "neutron", + "article_with_word": "le neutron", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutron", + "example_sentence_native": "Un neutron est une particule subatomique présente dans le noyau atomique.", + "example_sentence_english": "A neutron is a subatomic particle found in the atomic nucleus.", + "pos": "noun", + "word_frequency": 18158 + }, + { + "word": "négligent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligent;careless", + "example_sentence_native": "Son attitude négligente a causé de nombreux problèmes.", + "example_sentence_english": "His negligent attitude caused many problems.", + "pos": "adjective", + "word_frequency": 18159 + }, + { + "word": "optimum", + "article_with_word": "l'optimum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimum", + "example_sentence_native": "Nous cherchons l'optimum entre coût et qualité.", + "example_sentence_english": "We are looking for the optimum between cost and quality.", + "pos": "noun", + "word_frequency": 18161 + }, + { + "word": "outremer", + "article_with_word": "l'outremer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overseas;ultramarine (color)", + "example_sentence_native": "Le bleu outremer est une couleur intense.", + "example_sentence_english": "Ultramarine blue is an intense color.", + "pos": "noun", + "word_frequency": 18163 + }, + { + "word": "paranormal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranormal", + "example_sentence_native": "Ils enquêtent sur des phénomènes paranormaux.", + "example_sentence_english": "They investigate paranormal phenomena.", + "pos": "adjective", + "word_frequency": 18165 + }, + { + "word": "parsemer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sprinkle;to strew", + "example_sentence_native": "Elle a parsemé le gâteau de sucre glace.", + "example_sentence_english": "She sprinkled the cake with icing sugar.", + "pos": "verb", + "word_frequency": 18167 + }, + { + "word": "peignoir", + "article_with_word": "le peignoir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bathrobe;dressing gown", + "example_sentence_native": "Il a mis son peignoir après la douche.", + "example_sentence_english": "He put on his bathrobe after the shower.", + "pos": "noun", + "word_frequency": 18169 + }, + { + "word": "pommade", + "article_with_word": "la pommade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ointment;pomade", + "example_sentence_native": "Appliquez cette pommade sur la piqûre.", + "example_sentence_english": "Apply this ointment to the sting.", + "pos": "noun", + "word_frequency": 18171 + }, + { + "word": "populace", + "article_with_word": "la populace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "populace;common people (often derogatory)", + "example_sentence_native": "Le discours a été bien reçu par la populace.", + "example_sentence_english": "The speech was well received by the populace.", + "pos": "noun", + "word_frequency": 18172 + }, + { + "word": "primate", + "article_with_word": "le primate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primate", + "example_sentence_native": "Les singes sont des primates.", + "example_sentence_english": "Monkeys are primates.", + "pos": "noun", + "word_frequency": 18173 + }, + { + "word": "prodigieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prodigious;extraordinary", + "example_sentence_native": "Il a accompli un travail prodigieux.", + "example_sentence_english": "He accomplished a prodigious amount of work.", + "pos": "adjective", + "word_frequency": 18175 + }, + { + "word": "programmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programmed;scheduled", + "example_sentence_native": "La réunion est programmée pour demain.", + "example_sentence_english": "The meeting is scheduled for tomorrow.", + "pos": "adjective", + "word_frequency": 18176 + }, + { + "word": "préméditation", + "article_with_word": "la préméditation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "premeditation", + "example_sentence_native": "Le crime a été commis avec préméditation.", + "example_sentence_english": "The crime was committed with premeditation.", + "pos": "noun", + "word_frequency": 18178 + }, + { + "word": "puéril", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puerile;childish", + "example_sentence_native": "Son comportement était puéril et immature.", + "example_sentence_english": "His behavior was puerile and immature.", + "pos": "adjective", + "word_frequency": 18179 + }, + { + "word": "pâture", + "article_with_word": "la pâture", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pasture;fodder", + "example_sentence_native": "Les vaches paissent dans la pâture.", + "example_sentence_english": "The cows graze in the pasture.", + "pos": "noun", + "word_frequency": 18180 + }, + { + "word": "péjoratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pejorative;derogatory", + "example_sentence_native": "Ce terme a une connotation péjorative.", + "example_sentence_english": "This term has a pejorative connotation.", + "pos": "adjective", + "word_frequency": 18181 + }, + { + "word": "queer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "queer", + "example_sentence_native": "La communauté queer est très active.", + "example_sentence_english": "The queer community is very active.", + "pos": "adjective", + "word_frequency": 18182 + }, + { + "word": "quizz", + "article_with_word": "le quizz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiz", + "example_sentence_native": "Nous avons fait un quizz de culture générale.", + "example_sentence_english": "We did a general knowledge quiz.", + "pos": "noun", + "word_frequency": 18183 + }, + { + "word": "raffinage", + "article_with_word": "le raffinage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refining;refinement", + "example_sentence_native": "Le raffinage du pétrole est un processus complexe.", + "example_sentence_english": "Oil refining is a complex process.", + "pos": "noun", + "word_frequency": 18185 + }, + { + "word": "rave", + "article_with_word": "la rave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rave (party);turnip (vegetable)", + "example_sentence_native": "Ils ont organisé une rave party dans la forêt.", + "example_sentence_english": "They organized a rave party in the forest.", + "pos": "noun", + "word_frequency": 18186 + }, + { + "word": "raviver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revive;to rekindle", + "example_sentence_native": "Il faut raviver la flamme de l'espoir.", + "example_sentence_english": "We must rekindle the flame of hope.", + "pos": "verb", + "word_frequency": 18187 + }, + { + "word": "recentrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recenter;to refocus", + "example_sentence_native": "Il est important de se recentrer sur les objectifs principaux.", + "example_sentence_english": "It is important to refocus on the main objectives.", + "pos": "verb", + "word_frequency": 18188 + }, + { + "word": "recoller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to re-glue;to stick back together", + "example_sentence_native": "J'ai réussi à recoller les morceaux du vase cassé.", + "example_sentence_english": "I managed to glue the pieces of the broken vase back together.", + "pos": "verb", + "word_frequency": 18189 + }, + { + "word": "revendeur", + "article_with_word": "le revendeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reseller;dealer", + "example_sentence_native": "Nous achetons nos produits auprès d'un revendeur agréé.", + "example_sentence_english": "We buy our products from an authorized reseller.", + "pos": "noun", + "word_frequency": 18192 + }, + { + "word": "réfectoire", + "article_with_word": "le réfectoire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refectory;dining hall", + "example_sentence_native": "Les élèves déjeunent au réfectoire.", + "example_sentence_english": "The students have lunch in the refectory.", + "pos": "noun", + "word_frequency": 18196 + }, + { + "word": "régnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reigning;ruling", + "example_sentence_native": "Le roi régnant a visité la ville.", + "example_sentence_english": "The reigning king visited the city.", + "pos": "adjective", + "word_frequency": 18198 + }, + { + "word": "réutiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reuse", + "example_sentence_native": "Nous devons apprendre à réutiliser nos déchets.", + "example_sentence_english": "We must learn to reuse our waste.", + "pos": "verb", + "word_frequency": 18199 + }, + { + "word": "révoquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revoke;to dismiss", + "example_sentence_native": "Le conseil a décidé de révoquer son mandat.", + "example_sentence_english": "The council decided to revoke his mandate.", + "pos": "verb", + "word_frequency": 18200 + }, + { + "word": "sacerdoce", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priesthood;ministry", + "example_sentence_native": "Il a consacré sa vie au sacerdoce.", + "example_sentence_english": "He dedicated his life to the priesthood.", + "pos": "noun", + "word_frequency": 18201 + }, + { + "word": "sape", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undermining;(slang) clothes", + "example_sentence_native": "La sape de la fondation a causé l'effondrement.", + "example_sentence_english": "The undermining of the foundation caused the collapse.", + "pos": "noun", + "word_frequency": 18202 + }, + { + "word": "solstice", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solstice", + "example_sentence_native": "Le solstice d'été est le jour le plus long de l'année.", + "example_sentence_english": "The summer solstice is the longest day of the year.", + "pos": "noun", + "word_frequency": 18207 + }, + { + "word": "sonate", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonata", + "example_sentence_native": "Il a composé une belle sonate pour piano.", + "example_sentence_english": "He composed a beautiful piano sonata.", + "pos": "noun", + "word_frequency": 18208 + }, + { + "word": "sottise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolishness;nonsense;silly remark", + "example_sentence_native": "Ne dis pas de sottises.", + "example_sentence_english": "Don't say silly things.", + "pos": "noun", + "word_frequency": 18209 + }, + { + "word": "souk", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "souk;market (North African;Middle Eastern)", + "example_sentence_native": "Nous avons acheté des épices au souk.", + "example_sentence_english": "We bought spices at the souk.", + "pos": "noun", + "word_frequency": 18210 + }, + { + "word": "soyeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silky", + "example_sentence_native": "Ses cheveux sont doux et soyeux.", + "example_sentence_english": "Her hair is soft and silky.", + "pos": "adjective", + "word_frequency": 18211 + }, + { + "word": "speech", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speech (public address)", + "example_sentence_native": "Le président a prononcé un long speech.", + "example_sentence_english": "The president delivered a long speech.", + "pos": "noun", + "word_frequency": 18212 + }, + { + "word": "sticker", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sticker", + "example_sentence_native": "J'ai collé un sticker sur mon ordinateur portable.", + "example_sentence_english": "I stuck a sticker on my laptop.", + "pos": "noun", + "word_frequency": 18213 + }, + { + "word": "stoppe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "darn;darning", + "example_sentence_native": "Elle a fait une stoppe invisible sur le pull.", + "example_sentence_english": "She made an invisible darn on the sweater.", + "pos": "noun", + "word_frequency": 18214 + }, + { + "word": "stylistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stylistic", + "example_sentence_native": "L'analyse stylistique du texte est complexe.", + "example_sentence_english": "The stylistic analysis of the text is complex.", + "pos": "adjective", + "word_frequency": 18216 + }, + { + "word": "subdivision", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subdivision", + "example_sentence_native": "Le quartier est divisé en plusieurs subdivisions.", + "example_sentence_english": "The neighborhood is divided into several subdivisions.", + "pos": "noun", + "word_frequency": 18217 + }, + { + "word": "surdité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deafness", + "example_sentence_native": "La surdité peut être partielle ou totale.", + "example_sentence_english": "Deafness can be partial or total.", + "pos": "noun", + "word_frequency": 18219 + }, + { + "word": "sécrétion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretion", + "example_sentence_native": "La glande produit une sécrétion hormonale.", + "example_sentence_english": "The gland produces a hormonal secretion.", + "pos": "noun", + "word_frequency": 18220 + }, + { + "word": "tarot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tarot", + "example_sentence_native": "Nous avons joué au tarot toute la soirée.", + "example_sentence_english": "We played tarot all evening.", + "pos": "noun", + "word_frequency": 18223 + }, + { + "word": "toast", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toast (a celebratory drink)", + "example_sentence_native": "Il a porté un toast à la mariée.", + "example_sentence_english": "He made a toast to the bride.", + "pos": "noun", + "word_frequency": 18227 + }, + { + "word": "toboggan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slide;toboggan", + "example_sentence_native": "Les enfants aiment jouer sur le toboggan.", + "example_sentence_english": "Children love to play on the slide.", + "pos": "noun", + "word_frequency": 18228 + }, + { + "word": "torsion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torsion;twisting", + "example_sentence_native": "Il a subi une torsion du genou.", + "example_sentence_english": "He suffered a knee torsion.", + "pos": "noun", + "word_frequency": 18229 + }, + { + "word": "tracas", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hassle;trouble;worry", + "example_sentence_native": "J'ai eu beaucoup de tracas cette semaine.", + "example_sentence_english": "I had a lot of troubles this week.", + "pos": "noun", + "word_frequency": 18230 + }, + { + "word": "transposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transpose;to transfer", + "example_sentence_native": "Il faut transposer cette mélodie dans une autre tonalité.", + "example_sentence_english": "This melody needs to be transposed to another key.", + "pos": "verb", + "word_frequency": 18231 + }, + { + "word": "tribun", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tribune (ancient Roman official);orator;champion", + "example_sentence_native": "C'était un grand tribun, capable de soulever les foules.", + "example_sentence_english": "He was a great orator, capable of rousing the crowds.", + "pos": "noun", + "word_frequency": 18232 + }, + { + "word": "troisièmement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thirdly", + "example_sentence_native": "Premièrement, deuxièmement, et troisièmement, nous devons agir.", + "example_sentence_english": "Firstly, secondly, and thirdly, we must act.", + "pos": "adverb", + "word_frequency": 18234 + }, + { + "word": "télégraphe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegraph", + "example_sentence_native": "Le télégraphe a révolutionné la communication.", + "example_sentence_english": "The telegraph revolutionized communication.", + "pos": "noun", + "word_frequency": 18235 + }, + { + "word": "ténébreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dark;gloomy;shadowy;mysterious", + "example_sentence_native": "Il a un passé ténébreux.", + "example_sentence_english": "He has a dark past.", + "pos": "adjective", + "word_frequency": 18237 + }, + { + "word": "vacarme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "din;racket;uproar", + "example_sentence_native": "Le vacarme de la rue m'empêchait de dormir.", + "example_sentence_english": "The street noise prevented me from sleeping.", + "pos": "noun", + "word_frequency": 18238 + }, + { + "word": "vergogne", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shame;disgrace (mostly in \"sans vergogne\" - shamelessly)", + "example_sentence_native": "Il a menti sans vergogne.", + "example_sentence_english": "He lied shamelessly.", + "pos": "noun", + "word_frequency": 18239 + }, + { + "word": "xénophobe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "xenophobic", + "example_sentence_native": "Son attitude xénophobe a choqué tout le monde.", + "example_sentence_english": "His xenophobic attitude shocked everyone.", + "pos": "adjective", + "word_frequency": 18243 + }, + { + "word": "zodiac", + "article_with_word": "le zodiac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflatable boat", + "example_sentence_native": "Nous avons traversé la rivière en zodiac.", + "example_sentence_english": "We crossed the river in an inflatable boat.", + "pos": "noun", + "word_frequency": 18248 + }, + { + "word": "zoologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zoological", + "example_sentence_native": "Le parc zoologique abrite de nombreux animaux.", + "example_sentence_english": "The zoological park houses many animals.", + "pos": "adjective", + "word_frequency": 18249 + }, + { + "word": "âpre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harsh", + "example_sentence_native": "Le goût de ce fruit est âpre.", + "example_sentence_english": "The taste of this fruit is harsh.", + "pos": "adjective", + "word_frequency": 18250 + }, + { + "word": "écarlate", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarlet", + "example_sentence_native": "Elle portait une robe écarlate.", + "example_sentence_english": "She was wearing a scarlet dress.", + "pos": "adjective", + "word_frequency": 18251 + }, + { + "word": "échappatoire", + "article_with_word": "une échappatoire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loophole", + "example_sentence_native": "Il a trouvé une échappatoire pour éviter le problème.", + "example_sentence_english": "He found a loophole to avoid the problem.", + "pos": "noun", + "word_frequency": 18252 + }, + { + "word": "écluse", + "article_with_word": "une écluse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lock (canal)", + "example_sentence_native": "Le bateau est passé par l'écluse.", + "example_sentence_english": "The boat went through the lock.", + "pos": "noun", + "word_frequency": 18253 + }, + { + "word": "égocentrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egocentric", + "example_sentence_native": "Son comportement égocentrique agace tout le monde.", + "example_sentence_english": "His egocentric behavior annoys everyone.", + "pos": "adjective", + "word_frequency": 18254 + }, + { + "word": "éloquent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eloquent", + "example_sentence_native": "Il a prononcé un discours très éloquent.", + "example_sentence_english": "He delivered a very eloquent speech.", + "pos": "adjective", + "word_frequency": 18255 + }, + { + "word": "altruisme", + "article_with_word": "l'altruisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "altruism", + "example_sentence_native": "Son altruisme est admirable.", + "example_sentence_english": "His altruism is admirable.", + "pos": "noun", + "word_frequency": 18260 + }, + { + "word": "amputation", + "article_with_word": "l'amputation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amputation", + "example_sentence_native": "L'amputation de sa jambe fut nécessaire.", + "example_sentence_english": "The amputation of his leg was necessary.", + "pos": "noun", + "word_frequency": 18263 + }, + { + "word": "apposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affix", + "example_sentence_native": "Il faut apposer le timbre sur l'enveloppe.", + "example_sentence_english": "You must affix the stamp to the envelope.", + "pos": "verb", + "word_frequency": 18266 + }, + { + "word": "aspirine", + "article_with_word": "l'aspirine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aspirin", + "example_sentence_native": "J'ai pris de l'aspirine pour mon mal de tête.", + "example_sentence_english": "I took aspirin for my headache.", + "pos": "noun", + "word_frequency": 18268 + }, + { + "word": "assiduité", + "article_with_word": "l'assiduité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diligence", + "example_sentence_native": "Son assiduité au travail est remarquable.", + "example_sentence_english": "His diligence at work is remarkable.", + "pos": "noun", + "word_frequency": 18269 + }, + { + "word": "attrister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sadden", + "example_sentence_native": "Cette nouvelle m'attriste beaucoup.", + "example_sentence_english": "This news saddens me greatly.", + "pos": "verb", + "word_frequency": 18270 + }, + { + "word": "avent", + "article_with_word": "l'Avent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Advent", + "example_sentence_native": "Nous préparons le calendrier de l'Avent.", + "example_sentence_english": "We are preparing the Advent calendar.", + "pos": "noun", + "word_frequency": 18271 + }, + { + "word": "avidité", + "article_with_word": "l'avidité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "greed", + "example_sentence_native": "Son avidité pour l'argent est sans limite.", + "example_sentence_english": "His greed for money is limitless.", + "pos": "noun", + "word_frequency": 18272 + }, + { + "word": "baffe", + "article_with_word": "une baffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slap", + "example_sentence_native": "Il lui a donné une baffe.", + "example_sentence_english": "He gave him a slap.", + "pos": "noun", + "word_frequency": 18274 + }, + { + "word": "banalisation", + "article_with_word": "la banalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trivialization", + "example_sentence_native": "La banalisation de la violence est préoccupante.", + "example_sentence_english": "The trivialization of violence is concerning.", + "pos": "noun", + "word_frequency": 18275 + }, + { + "word": "banqueroute", + "article_with_word": "la banqueroute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy", + "example_sentence_native": "L'entreprise a déclaré banqueroute.", + "example_sentence_english": "The company declared bankruptcy.", + "pos": "noun", + "word_frequency": 18276 + }, + { + "word": "bidonville", + "article_with_word": "un bidonville", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shantytown", + "example_sentence_native": "De nombreuses familles vivent dans des bidonvilles.", + "example_sentence_english": "Many families live in shantytowns.", + "pos": "noun", + "word_frequency": 18279 + }, + { + "word": "blasé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jaded;blasé", + "example_sentence_native": "Il est devenu blasé par la vie mondaine.", + "example_sentence_english": "He became jaded by high society life.", + "pos": "adjective", + "word_frequency": 18281 + }, + { + "word": "blindage", + "article_with_word": "le blindage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor;shielding", + "example_sentence_native": "Le blindage du véhicule a été renforcé.", + "example_sentence_english": "The vehicle's armor was reinforced.", + "pos": "noun", + "word_frequency": 18282 + }, + { + "word": "boa", + "article_with_word": "le boa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boa", + "example_sentence_native": "Le boa constrictor est un grand serpent.", + "example_sentence_english": "The boa constrictor is a large snake.", + "pos": "noun", + "word_frequency": 18284 + }, + { + "word": "braconnage", + "article_with_word": "le braconnage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poaching", + "example_sentence_native": "Le braconnage est un crime grave.", + "example_sentence_english": "Poaching is a serious crime.", + "pos": "noun", + "word_frequency": 18287 + }, + { + "word": "braille", + "article_with_word": "le braille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Braille", + "example_sentence_native": "Les personnes aveugles lisent en braille.", + "example_sentence_english": "Blind people read in Braille.", + "pos": "noun", + "word_frequency": 18288 + }, + { + "word": "brouhaha", + "article_with_word": "le brouhaha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commotion;hubbub", + "example_sentence_native": "Il y avait un grand brouhaha dans la salle.", + "example_sentence_english": "There was a great hubbub in the room.", + "pos": "noun", + "word_frequency": 18291 + }, + { + "word": "bûche", + "article_with_word": "la bûche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "log (wood);Yule log", + "example_sentence_native": "Nous avons mis une bûche dans la cheminée.", + "example_sentence_english": "We put a log in the fireplace.", + "pos": "noun", + "word_frequency": 18294 + }, + { + "word": "calligraphie", + "article_with_word": "la calligraphie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calligraphy", + "example_sentence_native": "Elle étudie la calligraphie japonaise.", + "example_sentence_english": "She studies Japanese calligraphy.", + "pos": "noun", + "word_frequency": 18295 + }, + { + "word": "capuchon", + "article_with_word": "le capuchon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood;cap", + "example_sentence_native": "Mets ton capuchon, il fait froid.", + "example_sentence_english": "Put on your hood, it's cold.", + "pos": "noun", + "word_frequency": 18297 + }, + { + "word": "cartulaire", + "article_with_word": "le cartulaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cartulary", + "example_sentence_native": "Le moine a copié les chartes dans le cartulaire.", + "example_sentence_english": "The monk copied the charters into the cartulary.", + "pos": "noun", + "word_frequency": 18298 + }, + { + "word": "catacombe", + "article_with_word": "la catacombe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catacomb", + "example_sentence_native": "Les catacombes de Paris sont célèbres.", + "example_sentence_english": "The Catacombs of Paris are famous.", + "pos": "noun", + "word_frequency": 18299 + }, + { + "word": "chenal", + "article_with_word": "le chenal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "channel;fairway", + "example_sentence_native": "Le bateau a suivi le chenal pour entrer au port.", + "example_sentence_english": "The boat followed the channel to enter the port.", + "pos": "noun", + "word_frequency": 18301 + }, + { + "word": "clientélisme", + "article_with_word": "le clientélisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clientelism", + "example_sentence_native": "Le clientélisme est une pratique politique.", + "example_sentence_english": "Clientelism is a political practice.", + "pos": "noun", + "word_frequency": 18304 + }, + { + "word": "colisée", + "article_with_word": "le Colisée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Colosseum", + "example_sentence_native": "Le Colisée de Rome est un monument antique.", + "example_sentence_english": "The Colosseum in Rome is an ancient monument.", + "pos": "noun", + "word_frequency": 18305 + }, + { + "word": "comparateur", + "article_with_word": "le comparateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparator;comparison tool", + "example_sentence_native": "J'ai utilisé un comparateur de prix pour trouver la meilleure offre.", + "example_sentence_english": "I used a price comparison tool to find the best offer.", + "pos": "noun", + "word_frequency": 18306 + }, + { + "word": "compère", + "article_with_word": "le compère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplice;fellow;master of ceremonies", + "example_sentence_native": "Le compère a aidé le magicien dans son tour.", + "example_sentence_english": "The accomplice helped the magician with his trick.", + "pos": "noun", + "word_frequency": 18307 + }, + { + "word": "constitutionnalité", + "article_with_word": "la constitutionnalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutionality", + "example_sentence_native": "La Cour a examiné la constitutionnalité de la loi.", + "example_sentence_english": "The Court examined the constitutionality of the law.", + "pos": "noun", + "word_frequency": 18308 + }, + { + "word": "crétacé", + "article_with_word": "le Crétacé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cretaceous", + "example_sentence_native": "Les dinosaures ont disparu à la fin du Crétacé.", + "example_sentence_english": "Dinosaurs disappeared at the end of the Cretaceous period.", + "pos": "noun", + "word_frequency": 18310 + }, + { + "word": "côlon", + "article_with_word": "le côlon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colon", + "example_sentence_native": "Le côlon fait partie du système digestif.", + "example_sentence_english": "The colon is part of the digestive system.", + "pos": "noun", + "word_frequency": 18311 + }, + { + "word": "daube", + "article_with_word": "la daube", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stew (especially beef stew);rubbish (informal)", + "example_sentence_native": "J'ai préparé une délicieuse daube de bœuf.", + "example_sentence_english": "I prepared a delicious beef stew.", + "pos": "noun", + "word_frequency": 18314 + }, + { + "word": "disqualifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disqualify", + "example_sentence_native": "L'arbitre a dû le disqualifier pour faute grave.", + "example_sentence_english": "The referee had to disqualify him for a serious foul.", + "pos": "verb", + "word_frequency": 18316 + }, + { + "word": "déchaîner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unleash;to unchain", + "example_sentence_native": "Le vent a commencé à se déchaîner avec force.", + "example_sentence_english": "The wind began to unleash itself with force.", + "pos": "verb", + "word_frequency": 18321 + }, + { + "word": "découdre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unpick;to undo (sewing)", + "example_sentence_native": "Elle a dû découdre la couture pour la refaire correctement.", + "example_sentence_english": "She had to unpick the seam to redo it correctly.", + "pos": "verb", + "word_frequency": 18322 + }, + { + "word": "dégainer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draw (a weapon);to unsheathe", + "example_sentence_native": "Le shérif a dégainé son arme rapidement face au danger.", + "example_sentence_english": "The sheriff drew his weapon quickly in the face of danger.", + "pos": "verb", + "word_frequency": 18323 + }, + { + "word": "dégénéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degenerate", + "example_sentence_native": "Il a décrit la situation comme étant complètement dégénérée.", + "example_sentence_english": "He described the situation as completely degenerate.", + "pos": "adjective", + "word_frequency": 18324 + }, + { + "word": "délocalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offshoring;delocalization", + "example_sentence_native": "La délocalisation des usines a causé des pertes d'emplois importantes.", + "example_sentence_english": "The offshoring of factories caused significant job losses.", + "pos": "noun", + "word_frequency": 18325 + }, + { + "word": "délétère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deleterious;harmful", + "example_sentence_native": "Les effets de cette substance sont délétères pour la santé humaine.", + "example_sentence_english": "The effects of this substance are deleterious to human health.", + "pos": "adjective", + "word_frequency": 18326 + }, + { + "word": "dénominateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denominator", + "example_sentence_native": "Ils ont trouvé un dénominateur commun à leurs problèmes.", + "example_sentence_english": "They found a common denominator to their problems.", + "pos": "noun", + "word_frequency": 18327 + }, + { + "word": "déroger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to derogate from;to deviate from", + "example_sentence_native": "Il est interdit de déroger à la règle établie.", + "example_sentence_english": "It is forbidden to derogate from the established rule.", + "pos": "verb", + "word_frequency": 18328 + }, + { + "word": "dérouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to divert;to reroute;to disconcert", + "example_sentence_native": "L'avion a dû dérouter à cause du mauvais temps inattendu.", + "example_sentence_english": "The plane had to divert due to unexpected bad weather.", + "pos": "verb", + "word_frequency": 18329 + }, + { + "word": "déshonneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonor;disgrace", + "example_sentence_native": "Il a agi avec déshonneur, ce qui a choqué tout le monde.", + "example_sentence_english": "He acted with dishonor, which shocked everyone.", + "pos": "noun", + "word_frequency": 18330 + }, + { + "word": "désintégration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disintegration", + "example_sentence_native": "La désintégration du noyau atomique libère une grande quantité d'énergie.", + "example_sentence_english": "The disintegration of the atomic nucleus releases a large amount of energy.", + "pos": "noun", + "word_frequency": 18331 + }, + { + "word": "dévastateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastating", + "example_sentence_native": "L'incendie a eu un effet dévastateur sur la forêt environnante.", + "example_sentence_english": "The fire had a devastating effect on the surrounding forest.", + "pos": "adjective", + "word_frequency": 18332 + }, + { + "word": "ellipse", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ellipse", + "example_sentence_native": "L'orbite de la Terre autour du soleil est une ellipse.", + "example_sentence_english": "The Earth's orbit around the sun is an ellipse.", + "pos": "noun", + "word_frequency": 18335 + }, + { + "word": "encercler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to encircle;to surround", + "example_sentence_native": "Les soldats ont encerclé le bâtiment suspect.", + "example_sentence_english": "The soldiers encircled the suspicious building.", + "pos": "verb", + "word_frequency": 18336 + }, + { + "word": "essieu", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "axle", + "example_sentence_native": "L'essieu de la voiture était cassé après l'accident.", + "example_sentence_english": "The car's axle was broken after the accident.", + "pos": "noun", + "word_frequency": 18338 + }, + { + "word": "eucalyptus", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eucalyptus", + "example_sentence_native": "L'eucalyptus est connu pour son odeur forte et ses propriétés médicinales.", + "example_sentence_english": "Eucalyptus is known for its strong smell and medicinal properties.", + "pos": "noun", + "word_frequency": 18340 + }, + { + "word": "exo", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exercise (informal)", + "example_sentence_native": "J'ai beaucoup d'exos à faire pour demain matin.", + "example_sentence_english": "I have a lot of exercises to do for tomorrow morning.", + "pos": "noun", + "word_frequency": 18341 + }, + { + "word": "forcené", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frenzied;desperate", + "example_sentence_native": "Il a fait une tentative forcenée pour s'échapper de prison.", + "example_sentence_english": "He made a frenzied attempt to escape from prison.", + "pos": "adjective", + "word_frequency": 18347 + }, + { + "word": "fouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sprain;to tread on;to trample", + "example_sentence_native": "Elle s'est foulé la cheville en courant dans les escaliers.", + "example_sentence_english": "She sprained her ankle while running down the stairs.", + "pos": "verb", + "word_frequency": 18348 + }, + { + "word": "francilien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Île-de-France;Parisian region", + "example_sentence_native": "Les transports franciliens sont très développés et efficaces.", + "example_sentence_english": "The Île-de-France transports are very developed and efficient.", + "pos": "adjective", + "word_frequency": 18349 + }, + { + "word": "froideur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coldness;chill;aloofness", + "example_sentence_native": "Sa froideur m'a surpris lors de notre première rencontre.", + "example_sentence_english": "Her coldness surprised me during our first meeting.", + "pos": "noun", + "word_frequency": 18350 + }, + { + "word": "gestuelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gestures;body language", + "example_sentence_native": "Sa gestuelle était très expressive pendant sa présentation.", + "example_sentence_english": "His body language was very expressive during his presentation.", + "pos": "noun", + "word_frequency": 18356 + }, + { + "word": "hospitaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hospitalize", + "example_sentence_native": "Ils ont dû l'hospitaliser après l'accident.", + "example_sentence_english": "They had to hospitalize him after the accident.", + "pos": "verb", + "word_frequency": 18365 + }, + { + "word": "huguenot", + "article_with_word": "un huguenot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Huguenot", + "example_sentence_native": "Les huguenots étaient des protestants français.", + "example_sentence_english": "The Huguenots were French Protestants.", + "pos": "noun", + "word_frequency": 18367 + }, + { + "word": "hypnotique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypnotic", + "example_sentence_native": "Sa voix avait un effet hypnotique sur l'audience.", + "example_sentence_english": "Her voice had a hypnotic effect on the audience.", + "pos": "adjective", + "word_frequency": 18368 + }, + { + "word": "impureté", + "article_with_word": "une impureté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impurity", + "example_sentence_native": "Il y avait une impureté dans l'eau.", + "example_sentence_english": "There was an impurity in the water.", + "pos": "noun", + "word_frequency": 18371 + }, + { + "word": "inaugural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaugural", + "example_sentence_native": "Le discours inaugural a été très applaudi.", + "example_sentence_english": "The inaugural speech was highly applauded.", + "pos": "adjective", + "word_frequency": 18372 + }, + { + "word": "incalculable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incalculable", + "example_sentence_native": "Les conséquences de cette décision sont incalculables.", + "example_sentence_english": "The consequences of this decision are incalculable.", + "pos": "adjective", + "word_frequency": 18373 + }, + { + "word": "incomprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to misunderstand", + "example_sentence_native": "Il a incompris mes intentions.", + "example_sentence_english": "He misunderstood my intentions.", + "pos": "verb", + "word_frequency": 18374 + }, + { + "word": "inconscience", + "article_with_word": "l'inconscience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconsciousness;recklessness", + "example_sentence_native": "Il est tombé dans l'inconscience après le choc.", + "example_sentence_english": "He fell into unconsciousness after the shock.", + "pos": "noun", + "word_frequency": 18375 + }, + { + "word": "initiatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "initiatory", + "example_sentence_native": "C'était un voyage initiatique pour le jeune homme.", + "example_sentence_english": "It was an initiatory journey for the young man.", + "pos": "adjective", + "word_frequency": 18376 + }, + { + "word": "intercommunalité", + "article_with_word": "l'intercommunalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intercommunality", + "example_sentence_native": "L'intercommunalité favorise la coopération entre les communes.", + "example_sentence_english": "Intercommunality promotes cooperation between municipalities.", + "pos": "noun", + "word_frequency": 18377 + }, + { + "word": "irréductible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreducible", + "example_sentence_native": "Il a une volonté irréductible.", + "example_sentence_english": "He has an irreducible will.", + "pos": "adjective", + "word_frequency": 18379 + }, + { + "word": "irréparable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irreparable", + "example_sentence_native": "Les dégâts étaient irréparables.", + "example_sentence_english": "The damage was irreparable.", + "pos": "adjective", + "word_frequency": 18380 + }, + { + "word": "itinérance", + "article_with_word": "l'itinérance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "itinerancy;homelessness", + "example_sentence_native": "Le problème de l'itinérance est complexe.", + "example_sentence_english": "The problem of homelessness is complex.", + "pos": "noun", + "word_frequency": 18381 + }, + { + "word": "karting", + "article_with_word": "le karting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "karting", + "example_sentence_native": "Nous avons fait du karting ce week-end.", + "example_sentence_english": "We went karting this weekend.", + "pos": "noun", + "word_frequency": 18384 + }, + { + "word": "kidnapper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kidnap", + "example_sentence_native": "La police a arrêté l'homme qui a tenté de kidnapper l'enfant.", + "example_sentence_english": "The police arrested the man who tried to kidnap the child.", + "pos": "verb", + "word_frequency": 18385 + }, + { + "word": "koi", + "article_with_word": "un koi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "koi (fish)", + "example_sentence_native": "Il y a de beaux koïs dans l'étang.", + "example_sentence_english": "There are beautiful koi in the pond.", + "pos": "noun", + "word_frequency": 18387 + }, + { + "word": "lagon", + "article_with_word": "le lagon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lagoon", + "example_sentence_native": "Le lagon était d'un bleu turquoise magnifique.", + "example_sentence_english": "The lagoon was a magnificent turquoise blue.", + "pos": "noun", + "word_frequency": 18389 + }, + { + "word": "lampadaire", + "article_with_word": "le lampadaire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "street lamp;floor lamp", + "example_sentence_native": "Le lampadaire éclaire la rue la nuit.", + "example_sentence_english": "The street lamp lights up the street at night.", + "pos": "noun", + "word_frequency": 18390 + }, + { + "word": "lapsus", + "article_with_word": "un lapsus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slip of the tongue;pen;lapse", + "example_sentence_native": "Il a fait un lapsus en parlant.", + "example_sentence_english": "He made a slip of the tongue while speaking.", + "pos": "noun", + "word_frequency": 18391 + }, + { + "word": "limonade", + "article_with_word": "la limonade", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lemonade", + "example_sentence_native": "J'aimerais un verre de limonade, s'il vous plaît.", + "example_sentence_english": "I would like a glass of lemonade, please.", + "pos": "noun", + "word_frequency": 18393 + }, + { + "word": "lionne", + "article_with_word": "une lionne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lioness", + "example_sentence_native": "La lionne protège ses petits.", + "example_sentence_english": "The lioness protects her cubs.", + "pos": "noun", + "word_frequency": 18394 + }, + { + "word": "madone", + "article_with_word": "une madone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "madonna", + "example_sentence_native": "Le tableau représente une madone à l'enfant.", + "example_sentence_english": "The painting depicts a madonna and child.", + "pos": "noun", + "word_frequency": 18397 + }, + { + "word": "manganèse", + "article_with_word": "le manganèse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manganese", + "example_sentence_native": "Le manganèse est un élément chimique.", + "example_sentence_english": "Manganese is a chemical element.", + "pos": "noun", + "word_frequency": 18399 + }, + { + "word": "margarita", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "margarita", + "example_sentence_native": "Elle a commandé une margarita au bar.", + "example_sentence_english": "She ordered a margarita at the bar.", + "pos": "noun", + "word_frequency": 18400 + }, + { + "word": "mendier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to beg", + "example_sentence_native": "Il a dû mendier pour survivre.", + "example_sentence_english": "He had to beg to survive.", + "pos": "verb", + "word_frequency": 18403 + }, + { + "word": "meule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grindstone;hayrick;wheel (of cheese)", + "example_sentence_native": "Le fromage est vendu en meule.", + "example_sentence_english": "The cheese is sold in a wheel.", + "pos": "noun", + "word_frequency": 18404 + }, + { + "word": "modeler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to model;to shape", + "example_sentence_native": "L'artiste aime modeler l'argile.", + "example_sentence_english": "The artist likes to model clay.", + "pos": "verb", + "word_frequency": 18406 + }, + { + "word": "multicolore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multicolored", + "example_sentence_native": "Le drapeau est multicolore.", + "example_sentence_english": "The flag is multicolored.", + "pos": "adjective", + "word_frequency": 18410 + }, + { + "word": "mâcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chew", + "example_sentence_native": "Il faut bien mâcher sa nourriture.", + "example_sentence_english": "You must chew your food well.", + "pos": "verb", + "word_frequency": 18411 + }, + { + "word": "médication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medication", + "example_sentence_native": "Le médecin a prescrit une nouvelle médication.", + "example_sentence_english": "The doctor prescribed new medication.", + "pos": "noun", + "word_frequency": 18412 + }, + { + "word": "mémoriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to memorize", + "example_sentence_native": "Il doit mémoriser de longues listes de mots.", + "example_sentence_english": "He has to memorize long lists of words.", + "pos": "verb", + "word_frequency": 18413 + }, + { + "word": "méprisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despicable;contemptible", + "example_sentence_native": "Son comportement était absolument méprisable.", + "example_sentence_english": "His behavior was absolutely despicable.", + "pos": "adjective", + "word_frequency": 18414 + }, + { + "word": "nervure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vein (of a leaf);rib (of a structure)", + "example_sentence_native": "On peut voir les nervures sur la feuille.", + "example_sentence_english": "You can see the veins on the leaf.", + "pos": "noun", + "word_frequency": 18416 + }, + { + "word": "nuancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nuance;to shade;to qualify", + "example_sentence_native": "Il est important de nuancer ses propos.", + "example_sentence_english": "It is important to nuance one's remarks.", + "pos": "verb", + "word_frequency": 18417 + }, + { + "word": "nugget", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nugget", + "example_sentence_native": "Les enfants adorent les nuggets de poulet.", + "example_sentence_english": "Children love chicken nuggets.", + "pos": "noun", + "word_frequency": 18418 + }, + { + "word": "oléoduc", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oil pipeline", + "example_sentence_native": "La construction de l'oléoduc a soulevé des controverses.", + "example_sentence_english": "The construction of the oil pipeline raised controversies.", + "pos": "noun", + "word_frequency": 18422 + }, + { + "word": "omniprésence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipresence", + "example_sentence_native": "L'omniprésence des écrans est une réalité moderne.", + "example_sentence_english": "The omnipresence of screens is a modern reality.", + "pos": "noun", + "word_frequency": 18423 + }, + { + "word": "ordination", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ordination", + "example_sentence_native": "Son ordination comme prêtre a eu lieu dimanche.", + "example_sentence_english": "His ordination as a priest took place on Sunday.", + "pos": "noun", + "word_frequency": 18424 + }, + { + "word": "orifice", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orifice;opening", + "example_sentence_native": "Il y a un petit orifice dans le mur.", + "example_sentence_english": "There is a small opening in the wall.", + "pos": "noun", + "word_frequency": 18425 + }, + { + "word": "papauté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "papacy", + "example_sentence_native": "La papauté a joué un rôle central dans l'histoire européenne.", + "example_sentence_english": "The papacy played a central role in European history.", + "pos": "noun", + "word_frequency": 18428 + }, + { + "word": "piazza", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piazza;public square", + "example_sentence_native": "Nous avons bu un café sur la piazza principale.", + "example_sentence_english": "We drank coffee in the main piazza.", + "pos": "noun", + "word_frequency": 18429 + }, + { + "word": "plaid", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaid;throw blanket", + "example_sentence_native": "Elle s'est enveloppée dans un plaid chaud.", + "example_sentence_english": "She wrapped herself in a warm throw blanket.", + "pos": "noun", + "word_frequency": 18430 + }, + { + "word": "plèbe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plebs;common people", + "example_sentence_native": "Dans la Rome antique, la plèbe avait peu de droits.", + "example_sentence_english": "In ancient Rome, the plebs had few rights.", + "pos": "noun", + "word_frequency": 18431 + }, + { + "word": "polymère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polymer", + "example_sentence_native": "Le plastique est un type de polymère.", + "example_sentence_english": "Plastic is a type of polymer.", + "pos": "noun", + "word_frequency": 18432 + }, + { + "word": "polyvalence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "versatility", + "example_sentence_native": "Sa polyvalence est un atout majeur pour l'équipe.", + "example_sentence_english": "His versatility is a major asset for the team.", + "pos": "noun", + "word_frequency": 18433 + }, + { + "word": "pommier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apple tree", + "example_sentence_native": "Le pommier du jardin donne de belles pommes.", + "example_sentence_english": "The apple tree in the garden yields beautiful apples.", + "pos": "noun", + "word_frequency": 18434 + }, + { + "word": "pompon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pom-pom", + "example_sentence_native": "Elle a un bonnet avec un gros pompon.", + "example_sentence_english": "She has a hat with a big pom-pom.", + "pos": "noun", + "word_frequency": 18435 + }, + { + "word": "ponctualité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuality", + "example_sentence_native": "La ponctualité est essentielle dans ce travail.", + "example_sentence_english": "Punctuality is essential in this job.", + "pos": "noun", + "word_frequency": 18436 + }, + { + "word": "poulpe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "octopus", + "example_sentence_native": "Le poulpe est un plat populaire en Méditerranée.", + "example_sentence_english": "Octopus is a popular dish in the Mediterranean.", + "pos": "noun", + "word_frequency": 18437 + }, + { + "word": "rab", + "article_with_word": "le rab", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extra", + "example_sentence_native": "Tu veux du rab de frites?", + "example_sentence_english": "Do you want some extra fries?", + "pos": "noun", + "word_frequency": 18440 + }, + { + "word": "rabbi", + "article_with_word": "le rabbi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabbi", + "example_sentence_native": "Le rabbi a prononcé un sermon inspirant.", + "example_sentence_english": "The rabbi delivered an inspiring sermon.", + "pos": "noun", + "word_frequency": 18441 + }, + { + "word": "radioactive", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radioactive", + "example_sentence_native": "Cette substance est hautement radioactive.", + "example_sentence_english": "This substance is highly radioactive.", + "pos": "adjective", + "word_frequency": 18442 + }, + { + "word": "radiologie", + "article_with_word": "la radiologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiology", + "example_sentence_native": "Elle étudie la radiologie à l'université.", + "example_sentence_english": "She studies radiology at university.", + "pos": "noun", + "word_frequency": 18443 + }, + { + "word": "rasage", + "article_with_word": "le rasage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shaving", + "example_sentence_native": "Le rasage quotidien irrite sa peau.", + "example_sentence_english": "Daily shaving irritates his skin.", + "pos": "noun", + "word_frequency": 18446 + }, + { + "word": "redoublement", + "article_with_word": "le redoublement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repeating a year (at school)", + "example_sentence_native": "Le redoublement est parfois nécessaire pour mieux assimiler les connaissances.", + "example_sentence_english": "Repeating a year is sometimes necessary to better assimilate knowledge.", + "pos": "noun", + "word_frequency": 18447 + }, + { + "word": "renégocier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to renegotiate", + "example_sentence_native": "Nous devons renégocier les termes du contrat.", + "example_sentence_english": "We need to renegotiate the terms of the contract.", + "pos": "verb", + "word_frequency": 18448 + }, + { + "word": "retail", + "article_with_word": "le retail", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retail", + "example_sentence_native": "Le secteur du retail est en pleine mutation.", + "example_sentence_english": "The retail sector is undergoing major changes.", + "pos": "noun", + "word_frequency": 18449 + }, + { + "word": "robustesse", + "article_with_word": "la robustesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robustness", + "example_sentence_native": "La robustesse de ce matériau est impressionnante.", + "example_sentence_english": "The robustness of this material is impressive.", + "pos": "noun", + "word_frequency": 18452 + }, + { + "word": "rocade", + "article_with_word": "la rocade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring road", + "example_sentence_native": "Prenez la rocade pour éviter le centre-ville.", + "example_sentence_english": "Take the ring road to avoid the city center.", + "pos": "noun", + "word_frequency": 18453 + }, + { + "word": "rouvre", + "article_with_word": "le rouvre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sessile oak", + "example_sentence_native": "Le rouvre est un arbre majestueux des forêts européennes.", + "example_sentence_english": "The sessile oak is a majestic tree of European forests.", + "pos": "noun", + "word_frequency": 18455 + }, + { + "word": "règlementation", + "article_with_word": "la réglementation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation", + "example_sentence_native": "La nouvelle réglementation est très stricte.", + "example_sentence_english": "The new regulation is very strict.", + "pos": "noun", + "word_frequency": 18456 + }, + { + "word": "régisseur", + "article_with_word": "le régisseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stage manager", + "example_sentence_native": "Le régisseur s'occupe de l'organisation technique du spectacle.", + "example_sentence_english": "The stage manager handles the technical organization of the show.", + "pos": "noun", + "word_frequency": 18457 + }, + { + "word": "réorienter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reorient", + "example_sentence_native": "Il a décidé de se réorienter professionnellement.", + "example_sentence_english": "He decided to reorient himself professionally.", + "pos": "verb", + "word_frequency": 18458 + }, + { + "word": "répressif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repressive", + "example_sentence_native": "Le gouvernement a adopté des mesures répressives.", + "example_sentence_english": "The government adopted repressive measures.", + "pos": "adjective", + "word_frequency": 18459 + }, + { + "word": "sacrilège", + "article_with_word": "le sacrilège", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacrilege", + "example_sentence_native": "Détruire cette œuvre d'art serait un sacrilège.", + "example_sentence_english": "Destroying this work of art would be a sacrilege.", + "pos": "noun", + "word_frequency": 18460 + }, + { + "word": "sarcophage", + "article_with_word": "le sarcophage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sarcophagus", + "example_sentence_native": "Le sarcophage du pharaon était orné d'or.", + "example_sentence_english": "The pharaoh's sarcophagus was adorned with gold.", + "pos": "noun", + "word_frequency": 18461 + }, + { + "word": "scribe", + "article_with_word": "le scribe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scribe", + "example_sentence_native": "Dans l'Égypte ancienne, le scribe jouait un rôle important.", + "example_sentence_english": "In ancient Egypt, the scribe played an important role.", + "pos": "noun", + "word_frequency": 18463 + }, + { + "word": "securite", + "article_with_word": "la sécurité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "security", + "example_sentence_native": "La sécurité est une priorité absolue.", + "example_sentence_english": "Security is an absolute priority.", + "pos": "noun", + "word_frequency": 18464 + }, + { + "word": "seoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to suit", + "example_sentence_native": "Cette couleur vous sied à merveille.", + "example_sentence_english": "This color suits you wonderfully.", + "pos": "verb", + "word_frequency": 18465 + }, + { + "word": "sitting", + "article_with_word": "le sitting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sit-in", + "example_sentence_native": "Les étudiants ont organisé un sitting devant la préfecture.", + "example_sentence_english": "The students organized a sit-in in front of the prefecture.", + "pos": "noun", + "word_frequency": 18466 + }, + { + "word": "snob", + "article_with_word": "le snob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snob", + "example_sentence_native": "Il se comporte comme un vrai snob.", + "example_sentence_english": "He behaves like a real snob.", + "pos": "noun", + "word_frequency": 18468 + }, + { + "word": "soluble", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soluble", + "example_sentence_native": "Le sucre est soluble dans l'eau.", + "example_sentence_english": "Sugar is soluble in water.", + "pos": "adjective", + "word_frequency": 18469 + }, + { + "word": "sommation", + "article_with_word": "la sommation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "summons", + "example_sentence_native": "La police a fait une sommation avant d'intervenir.", + "example_sentence_english": "The police issued a summons before intervening.", + "pos": "noun", + "word_frequency": 18470 + }, + { + "word": "sortilège", + "article_with_word": "le sortilège", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spell", + "example_sentence_native": "La sorcière a jeté un sortilège sur le prince.", + "example_sentence_english": "The witch cast a spell on the prince.", + "pos": "noun", + "word_frequency": 18471 + }, + { + "word": "speaker", + "article_with_word": "le speaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announcer", + "example_sentence_native": "Le speaker a annoncé les résultats du match.", + "example_sentence_english": "The announcer declared the match results.", + "pos": "noun", + "word_frequency": 18472 + }, + { + "word": "spore", + "article_with_word": "la spore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spore", + "example_sentence_native": "Les champignons se reproduisent par des spores.", + "example_sentence_english": "Mushrooms reproduce by spores.", + "pos": "noun", + "word_frequency": 18473 + }, + { + "word": "squatter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to squat", + "example_sentence_native": "Ils ont décidé de squatter l'immeuble abandonné.", + "example_sentence_english": "They decided to squat in the abandoned building.", + "pos": "verb", + "word_frequency": 18474 + }, + { + "word": "stationner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to park", + "example_sentence_native": "Il est interdit de stationner ici.", + "example_sentence_english": "It is forbidden to park here.", + "pos": "verb", + "word_frequency": 18475 + }, + { + "word": "subordonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to subordinate", + "example_sentence_native": "Il faut subordonner les intérêts individuels au bien commun.", + "example_sentence_english": "Individual interests must be subordinated to the common good.", + "pos": "verb", + "word_frequency": 18476 + }, + { + "word": "sucrerie", + "article_with_word": "la sucrerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweet", + "example_sentence_native": "Les enfants adorent les sucreries.", + "example_sentence_english": "Children love sweets.", + "pos": "noun", + "word_frequency": 18477 + }, + { + "word": "surcoût", + "article_with_word": "le surcoût", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additional cost", + "example_sentence_native": "Le projet a entraîné un surcoût imprévu.", + "example_sentence_english": "The project resulted in an unforeseen additional cost.", + "pos": "noun", + "word_frequency": 18478 + }, + { + "word": "taquiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tease", + "example_sentence_native": "Il aime taquiner sa petite sœur.", + "example_sentence_english": "He likes to tease his little sister.", + "pos": "verb", + "word_frequency": 18479 + }, + { + "word": "terminaison", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ending", + "example_sentence_native": "La terminaison du verbe change selon le sujet.", + "example_sentence_english": "The verb ending changes according to the subject.", + "pos": "noun", + "word_frequency": 18480 + }, + { + "word": "titi", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Parisian kid (informal)", + "example_sentence_native": "Les titis parisiens sont souvent pleins d'esprit.", + "example_sentence_english": "Parisian kids are often witty.", + "pos": "noun", + "word_frequency": 18482 + }, + { + "word": "titrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to title", + "example_sentence_native": "Le film est titré \"Le Grand Bleu\".", + "example_sentence_english": "The film is titled \"The Big Blue\".", + "pos": "verb", + "word_frequency": 18483 + }, + { + "word": "topographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "topographic", + "example_sentence_native": "Nous avons utilisé une carte topographique pour notre randonnée.", + "example_sentence_english": "We used a topographic map for our hike.", + "pos": "adjective", + "word_frequency": 18484 + }, + { + "word": "tympan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eardrum", + "example_sentence_native": "Il a eu une perforation du tympan.", + "example_sentence_english": "He had a perforated eardrum.", + "pos": "noun", + "word_frequency": 18487 + }, + { + "word": "veilleuse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "night light", + "example_sentence_native": "J'ai laissé une veilleuse allumée pour l'enfant.", + "example_sentence_english": "I left a night light on for the child.", + "pos": "noun", + "word_frequency": 18490 + }, + { + "word": "vipère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viper", + "example_sentence_native": "Attention, il y a une vipère dans l'herbe.", + "example_sentence_english": "Be careful, there's a viper in the grass.", + "pos": "noun", + "word_frequency": 18495 + }, + { + "word": "éclaireur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scout", + "example_sentence_native": "L'éclaireur est parti en reconnaissance.", + "example_sentence_english": "The scout went on reconnaissance.", + "pos": "noun", + "word_frequency": 18501 + }, + { + "word": "éjaculation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ejaculation", + "example_sentence_native": "L'éjaculation est un processus biologique.", + "example_sentence_english": "Ejaculation is a biological process.", + "pos": "noun", + "word_frequency": 18502 + }, + { + "word": "énervé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoyed;irritated", + "example_sentence_native": "Il est très énervé par cette situation.", + "example_sentence_english": "He is very annoyed by this situation.", + "pos": "adjective", + "word_frequency": 18503 + }, + { + "word": "épanoui", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fulfilled;blooming", + "example_sentence_native": "Elle semble très épanouie dans son nouveau travail.", + "example_sentence_english": "She seems very fulfilled in her new job.", + "pos": "adjective", + "word_frequency": 18504 + }, + { + "word": "évangéliste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evangelist", + "example_sentence_native": "Les évangélistes prêchent la bonne parole.", + "example_sentence_english": "Evangelists preach the good word.", + "pos": "noun", + "word_frequency": 18505 + }, + { + "word": "abo", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscription (informal)", + "example_sentence_native": "J'ai pris un abo pour la salle de sport.", + "example_sentence_english": "I took a subscription for the gym.", + "pos": "noun", + "word_frequency": 18507 + }, + { + "word": "actualiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to update;to refresh", + "example_sentence_native": "N'oubliez pas d'actualiser la page.", + "example_sentence_english": "Don't forget to refresh the page.", + "pos": "verb", + "word_frequency": 18508 + }, + { + "word": "aine", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groin", + "example_sentence_native": "Il a ressenti une douleur à l'aine.", + "example_sentence_english": "He felt a pain in his groin.", + "pos": "noun", + "word_frequency": 18510 + }, + { + "word": "almanach", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almanac", + "example_sentence_native": "L'almanach contient des informations sur l'année.", + "example_sentence_english": "The almanac contains information about the year.", + "pos": "noun", + "word_frequency": 18511 + }, + { + "word": "amateurisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amateurism", + "example_sentence_native": "Son amateurisme a causé des problèmes.", + "example_sentence_english": "His amateurism caused problems.", + "pos": "noun", + "word_frequency": 18513 + }, + { + "word": "arn", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "RNA", + "example_sentence_native": "L'ARN joue un rôle crucial dans la biologie cellulaire.", + "example_sentence_english": "RNA plays a crucial role in cell biology.", + "pos": "noun", + "word_frequency": 18517 + }, + { + "word": "automate", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automaton;vending machine", + "example_sentence_native": "L'automate a distribué les billets.", + "example_sentence_english": "The vending machine dispensed the tickets.", + "pos": "noun", + "word_frequency": 18518 + }, + { + "word": "automatisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "automatism", + "example_sentence_native": "Il a agi par automatisme.", + "example_sentence_english": "He acted out of automatism.", + "pos": "noun", + "word_frequency": 18519 + }, + { + "word": "aérodynamique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aerodynamic", + "example_sentence_native": "La forme aérodynamique de la voiture réduit la résistance à l'air.", + "example_sentence_english": "The aerodynamic shape of the car reduces air resistance.", + "pos": "adjective", + "word_frequency": 18520 + }, + { + "word": "aïd", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Eid", + "example_sentence_native": "Les musulmans célèbrent l'Aïd après le Ramadan.", + "example_sentence_english": "Muslims celebrate Eid after Ramadan.", + "pos": "noun", + "word_frequency": 18521 + }, + { + "word": "beaupré", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bowsprit", + "example_sentence_native": "Le beaupré est une longue pièce de bois qui s'étend à l'avant d'un voilier.", + "example_sentence_english": "The bowsprit is a long piece of wood that extends from the front of a sailboat.", + "pos": "noun", + "word_frequency": 18523 + }, + { + "word": "boréal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boreal;northern", + "example_sentence_native": "Les forêts boréales couvrent de vastes régions du Canada.", + "example_sentence_english": "Boreal forests cover vast regions of Canada.", + "pos": "adjective", + "word_frequency": 18527 + }, + { + "word": "brocante", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flea market;second-hand goods", + "example_sentence_native": "Nous avons trouvé de vieux livres intéressants à la brocante.", + "example_sentence_english": "We found interesting old books at the flea market.", + "pos": "noun", + "word_frequency": 18531 + }, + { + "word": "brunette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brunette", + "example_sentence_native": "La jeune femme aux cheveux bruns est une jolie brunette.", + "example_sentence_english": "The young woman with brown hair is a pretty brunette.", + "pos": "noun", + "word_frequency": 18532 + }, + { + "word": "camembert", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Camembert (cheese)", + "example_sentence_native": "J'adore manger du camembert avec du pain.", + "example_sentence_english": "I love eating Camembert with bread.", + "pos": "noun", + "word_frequency": 18535 + }, + { + "word": "carbonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbonic", + "example_sentence_native": "Le dioxyde carbonique est un gaz à effet de serre.", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "adjective", + "word_frequency": 18537 + }, + { + "word": "carcan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yoke;shackles;straitjacket (figurative)", + "example_sentence_native": "Il se sentait pris dans le carcan des conventions sociales.", + "example_sentence_english": "He felt trapped in the straitjacket of social conventions.", + "pos": "noun", + "word_frequency": 18538 + }, + { + "word": "carme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Carmelite (friar)", + "example_sentence_native": "Le carme est un membre de l'ordre religieux des Carmes.", + "example_sentence_english": "The Carmelite is a member of the Carmelite religious order.", + "pos": "noun", + "word_frequency": 18539 + }, + { + "word": "carrousel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carousel;merry-go-round", + "example_sentence_native": "Les enfants aiment faire un tour sur le carrousel.", + "example_sentence_english": "Children like to take a ride on the carousel.", + "pos": "noun", + "word_frequency": 18540 + }, + { + "word": "choriste", + "article_with_word": "le/la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chorister;choir member", + "example_sentence_native": "La choriste a une voix magnifique.", + "example_sentence_english": "The chorister has a magnificent voice.", + "pos": "noun", + "word_frequency": 18543 + }, + { + "word": "civisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civic-mindedness;civic spirit", + "example_sentence_native": "Le civisme est essentiel pour une société démocratique.", + "example_sentence_english": "Civic-mindedness is essential for a democratic society.", + "pos": "noun", + "word_frequency": 18545 + }, + { + "word": "clipper", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clipper (ship or tool)", + "example_sentence_native": "Les clippers étaient des navires rapides au XIXe siècle.", + "example_sentence_english": "Clippers were fast ships in the 19th century.", + "pos": "noun", + "word_frequency": 18546 + }, + { + "word": "colt", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colt (young male horse)", + "example_sentence_native": "Le jeune colt galopait dans le pré.", + "example_sentence_english": "The young colt galloped in the meadow.", + "pos": "noun", + "word_frequency": 18547 + }, + { + "word": "conditionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conditioned;packaged", + "example_sentence_native": "L'air conditionné est indispensable en été.", + "example_sentence_english": "Air conditioning is essential in summer.", + "pos": "adjective", + "word_frequency": 18548 + }, + { + "word": "confisqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confiscated", + "example_sentence_native": "Les biens confisqués ont été vendus aux enchères.", + "example_sentence_english": "The confiscated goods were sold at auction.", + "pos": "adjective", + "word_frequency": 18549 + }, + { + "word": "container", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container", + "example_sentence_native": "Les marchandises sont transportées dans de grands containers.", + "example_sentence_english": "Goods are transported in large containers.", + "pos": "noun", + "word_frequency": 18550 + }, + { + "word": "contrepoids", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterweight", + "example_sentence_native": "Le contrepoids assure l'équilibre de la grue.", + "example_sentence_english": "The counterweight ensures the crane's balance.", + "pos": "noun", + "word_frequency": 18551 + }, + { + "word": "corsaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privateer;corsair", + "example_sentence_native": "Le corsaire a attaqué le navire marchand.", + "example_sentence_english": "The privateer attacked the merchant ship.", + "pos": "noun", + "word_frequency": 18552 + }, + { + "word": "corset", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corset", + "example_sentence_native": "Elle portait un corset sous sa robe de soirée.", + "example_sentence_english": "She wore a corset under her evening gown.", + "pos": "noun", + "word_frequency": 18553 + }, + { + "word": "cosaque", + "article_with_word": "le/la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cossack", + "example_sentence_native": "Les cosaques étaient des guerriers redoutables.", + "example_sentence_english": "The Cossacks were formidable warriors.", + "pos": "noun", + "word_frequency": 18554 + }, + { + "word": "courageusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courageously", + "example_sentence_native": "Il a courageusement affronté le danger.", + "example_sentence_english": "He courageously faced the danger.", + "pos": "adverb", + "word_frequency": 18555 + }, + { + "word": "doudoune", + "article_with_word": "la doudoune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down jacket", + "example_sentence_native": "Elle a mis sa doudoune pour sortir dans le froid.", + "example_sentence_english": "She put on her down jacket to go out in the cold.", + "pos": "noun", + "word_frequency": 18561 + }, + { + "word": "démêlé", + "article_with_word": "un démêlé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute;altercation", + "example_sentence_native": "Il a eu des démêlés avec la justice.", + "example_sentence_english": "He had altercations with the law.", + "pos": "noun", + "word_frequency": 18565 + }, + { + "word": "embarrassant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embarrassing", + "example_sentence_native": "C'était une situation très embarrassante.", + "example_sentence_english": "It was a very embarrassing situation.", + "pos": "adjective", + "word_frequency": 18568 + }, + { + "word": "endetté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indebted", + "example_sentence_native": "L'entreprise est fortement endettée.", + "example_sentence_english": "The company is heavily indebted.", + "pos": "adjective", + "word_frequency": 18569 + }, + { + "word": "enrouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to roll up;to wind", + "example_sentence_native": "Il faut enrouler le câble avant de le ranger.", + "example_sentence_english": "You need to roll up the cable before putting it away.", + "pos": "verb", + "word_frequency": 18570 + }, + { + "word": "entretenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintained;well-kept", + "example_sentence_native": "Le jardin est très bien entretenu.", + "example_sentence_english": "The garden is very well maintained.", + "pos": "adjective", + "word_frequency": 18571 + }, + { + "word": "exotisme", + "article_with_word": "l’exotisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exoticism", + "example_sentence_native": "Il recherche l'exotisme dans ses voyages.", + "example_sentence_english": "He seeks exoticism in his travels.", + "pos": "noun", + "word_frequency": 18572 + }, + { + "word": "extravagant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extravagant", + "example_sentence_native": "Ses dépenses sont souvent extravagantes.", + "example_sentence_english": "His expenses are often extravagant.", + "pos": "adjective", + "word_frequency": 18573 + }, + { + "word": "exécrable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execrable;dreadful", + "example_sentence_native": "Le temps était exécrable toute la journée.", + "example_sentence_english": "The weather was dreadful all day.", + "pos": "adjective", + "word_frequency": 18574 + }, + { + "word": "falsification", + "article_with_word": "la falsification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "falsification;forgery", + "example_sentence_native": "Il a été accusé de falsification de documents.", + "example_sentence_english": "He was accused of document falsification.", + "pos": "noun", + "word_frequency": 18575 + }, + { + "word": "fantassin", + "article_with_word": "le fantassin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infantryman", + "example_sentence_native": "Le fantassin était en première ligne.", + "example_sentence_english": "The infantryman was on the front line.", + "pos": "noun", + "word_frequency": 18576 + }, + { + "word": "fourrage", + "article_with_word": "le fourrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fodder;forage", + "example_sentence_native": "Les agriculteurs préparent le fourrage pour l'hiver.", + "example_sentence_english": "Farmers prepare the fodder for winter.", + "pos": "noun", + "word_frequency": 18577 + }, + { + "word": "friandise", + "article_with_word": "la friandise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweet;candy;treat", + "example_sentence_native": "Les enfants adorent les friandises.", + "example_sentence_english": "Children love sweets.", + "pos": "noun", + "word_frequency": 18579 + }, + { + "word": "frit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fried", + "example_sentence_native": "J'aime les pommes de terre frites.", + "example_sentence_english": "I like fried potatoes.", + "pos": "adjective", + "word_frequency": 18580 + }, + { + "word": "fréquenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frequented;busy (place)", + "example_sentence_native": "Ce restaurant est très fréquenté le week-end.", + "example_sentence_english": "This restaurant is very busy on weekends.", + "pos": "adjective", + "word_frequency": 18582 + }, + { + "word": "furieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "furiously;extremely", + "example_sentence_native": "Il était furieusement en colère.", + "example_sentence_english": "He was furiously angry.", + "pos": "adverb", + "word_frequency": 18584 + }, + { + "word": "fusiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shoot (with a rifle);to execute by firing squad", + "example_sentence_native": "Le soldat a été fusillé pour trahison.", + "example_sentence_english": "The soldier was shot for treason.", + "pos": "verb", + "word_frequency": 18586 + }, + { + "word": "garenne", + "article_with_word": "la garenne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warren (for rabbits);game park", + "example_sentence_native": "Les lapins vivent dans la garenne.", + "example_sentence_english": "Rabbits live in the warren.", + "pos": "noun", + "word_frequency": 18588 + }, + { + "word": "gourmet", + "article_with_word": "le gourmet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gourmet;food lover", + "example_sentence_native": "C'est un vrai gourmet, il apprécie la bonne cuisine.", + "example_sentence_english": "He's a true gourmet, he appreciates good food.", + "pos": "noun", + "word_frequency": 18593 + }, + { + "word": "gouttière", + "article_with_word": "la gouttière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gutter;downspout", + "example_sentence_native": "La gouttière est bouchée par les feuilles.", + "example_sentence_english": "The gutter is blocked by leaves.", + "pos": "noun", + "word_frequency": 18594 + }, + { + "word": "granule", + "article_with_word": "le granule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granule;pellet", + "example_sentence_native": "Ce médicament se présente sous forme de granules.", + "example_sentence_english": "This medicine comes in the form of granules.", + "pos": "noun", + "word_frequency": 18595 + }, + { + "word": "grincer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to creak;to grind;to squeak", + "example_sentence_native": "La porte a grincé quand il l'a ouverte.", + "example_sentence_english": "The door creaked when he opened it.", + "pos": "verb", + "word_frequency": 18597 + }, + { + "word": "géologue", + "article_with_word": "un géologue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geologist", + "example_sentence_native": "Le géologue a étudié les roches de la région.", + "example_sentence_english": "The geologist studied the rocks of the region.", + "pos": "noun", + "word_frequency": 18600 + }, + { + "word": "historiographie", + "article_with_word": "l'historiographie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "historiography", + "example_sentence_native": "L'historiographie moderne a remis en question de nombreuses idées reçues.", + "example_sentence_english": "Modern historiography has challenged many received ideas.", + "pos": "noun", + "word_frequency": 18605 + }, + { + "word": "houille", + "article_with_word": "la houille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coal", + "example_sentence_native": "L'extraction de la houille était une industrie majeure dans cette région.", + "example_sentence_english": "Coal mining was a major industry in this region.", + "pos": "noun", + "word_frequency": 18609 + }, + { + "word": "humer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sniff;to inhale", + "example_sentence_native": "Il a humé le parfum des roses.", + "example_sentence_english": "He sniffed the scent of the roses.", + "pos": "verb", + "word_frequency": 18610 + }, + { + "word": "impie", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impious;ungodly", + "example_sentence_native": "Ses paroles étaient considérées comme impies par la communauté religieuse.", + "example_sentence_english": "His words were considered impious by the religious community.", + "pos": "adjective", + "word_frequency": 18611 + }, + { + "word": "incendiaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incendiary", + "example_sentence_native": "La police a arrêté un suspect pour un acte incendiaire.", + "example_sentence_english": "The police arrested a suspect for an incendiary act.", + "pos": "adjective", + "word_frequency": 18613 + }, + { + "word": "infirmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to invalidate;to refute", + "example_sentence_native": "De nouvelles preuves ont infirmé la théorie précédente.", + "example_sentence_english": "New evidence invalidated the previous theory.", + "pos": "verb", + "word_frequency": 18615 + }, + { + "word": "interférer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interfere", + "example_sentence_native": "Il ne faut pas interférer dans les affaires des autres.", + "example_sentence_english": "One should not interfere in other people's business.", + "pos": "verb", + "word_frequency": 18616 + }, + { + "word": "irritant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritating", + "example_sentence_native": "Ce bruit constant est très irritant.", + "example_sentence_english": "This constant noise is very irritating.", + "pos": "adjective", + "word_frequency": 18619 + }, + { + "word": "irréaliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrealistic", + "example_sentence_native": "Ses attentes sont totalement irréalistes.", + "example_sentence_english": "His expectations are totally unrealistic.", + "pos": "adjective", + "word_frequency": 18620 + }, + { + "word": "khmer", + "article_with_word": "le khmer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Khmer", + "example_sentence_native": "Le khmer est la langue officielle du Cambodge.", + "example_sentence_english": "Khmer is the official language of Cambodia.", + "pos": "noun", + "word_frequency": 18626 + }, + { + "word": "kidnapping", + "article_with_word": "le kidnapping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapping", + "example_sentence_native": "La police enquête sur un cas de kidnapping.", + "example_sentence_english": "The police are investigating a case of kidnapping.", + "pos": "noun", + "word_frequency": 18627 + }, + { + "word": "kilogramme", + "article_with_word": "le kilogramme", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram", + "example_sentence_native": "J'aimerais un kilogramme de pommes, s'il vous plaît.", + "example_sentence_english": "I would like one kilogram of apples, please.", + "pos": "noun", + "word_frequency": 18628 + }, + { + "word": "lagune", + "article_with_word": "la lagune", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lagoon", + "example_sentence_native": "Nous avons nagé dans une magnifique lagune aux eaux claires.", + "example_sentence_english": "We swam in a beautiful lagoon with clear waters.", + "pos": "noun", + "word_frequency": 18632 + }, + { + "word": "lardon", + "article_with_word": "le lardon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bacon bit;lardons", + "example_sentence_native": "J'ai ajouté des lardons à ma salade.", + "example_sentence_english": "I added bacon bits to my salad.", + "pos": "noun", + "word_frequency": 18633 + }, + { + "word": "lavoir", + "article_with_word": "le lavoir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wash house", + "example_sentence_native": "Autrefois, les femmes se réunissaient au lavoir pour faire la lessive.", + "example_sentence_english": "In the past, women gathered at the wash house to do laundry.", + "pos": "noun", + "word_frequency": 18634 + }, + { + "word": "levrette", + "article_with_word": "la levrette", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "female greyhound", + "example_sentence_native": "La levrette est un chien très rapide.", + "example_sentence_english": "The female greyhound is a very fast dog.", + "pos": "noun", + "word_frequency": 18637 + }, + { + "word": "linguiste", + "article_with_word": "un linguiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguist", + "example_sentence_native": "Le linguiste étudie la structure des langues.", + "example_sentence_english": "The linguist studies the structure of languages.", + "pos": "noun", + "word_frequency": 18639 + }, + { + "word": "lounge", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lounge", + "example_sentence_native": "Nous avons attendu dans le lounge de l'aéroport.", + "example_sentence_english": "We waited in the airport lounge.", + "pos": "noun", + "word_frequency": 18640 + }, + { + "word": "lyre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lyre", + "example_sentence_native": "La lyre est un instrument de musique ancien.", + "example_sentence_english": "The lyre is an ancient musical instrument.", + "pos": "noun", + "word_frequency": 18641 + }, + { + "word": "lépreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leprous", + "example_sentence_native": "Il a décrit une colonie de lépreux dans son livre.", + "example_sentence_english": "He described a leper colony in his book.", + "pos": "adjective", + "word_frequency": 18642 + }, + { + "word": "mainstream", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mainstream", + "example_sentence_native": "Ce film est trop mainstream pour certains critiques.", + "example_sentence_english": "This film is too mainstream for some critics.", + "pos": "noun", + "word_frequency": 18646 + }, + { + "word": "manioc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cassava;manioc", + "example_sentence_native": "Le manioc est une plante tropicale dont on extrait le tapioca.", + "example_sentence_english": "Cassava is a tropical plant from which tapioca is extracted.", + "pos": "noun", + "word_frequency": 18649 + }, + { + "word": "meriter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deserve;to merit", + "example_sentence_native": "Tu mérites une récompense pour ton travail.", + "example_sentence_english": "You deserve a reward for your work.", + "pos": "verb", + "word_frequency": 18650 + }, + { + "word": "mondain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worldly;socialite", + "example_sentence_native": "Il fréquente les cercles mondains de la capitale.", + "example_sentence_english": "He frequents the worldly circles of the capital.", + "pos": "adjective", + "word_frequency": 18651 + }, + { + "word": "monticule", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mound;hillock", + "example_sentence_native": "Les enfants jouaient sur un petit monticule de terre.", + "example_sentence_english": "The children were playing on a small mound of earth.", + "pos": "noun", + "word_frequency": 18652 + }, + { + "word": "mutiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to mutilate", + "example_sentence_native": "Le document a été mutilé et est illisible.", + "example_sentence_english": "The document was mutilated and is unreadable.", + "pos": "verb", + "word_frequency": 18654 + }, + { + "word": "mésaventure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misadventure;mishap", + "example_sentence_native": "Nous avons eu quelques mésaventures pendant notre voyage.", + "example_sentence_english": "We had a few mishaps during our trip.", + "pos": "noun", + "word_frequency": 18655 + }, + { + "word": "nécropole", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necropolis", + "example_sentence_native": "Les archéologues ont découvert une ancienne nécropole romaine.", + "example_sentence_english": "Archaeologists discovered an ancient Roman necropolis.", + "pos": "noun", + "word_frequency": 18660 + }, + { + "word": "obsédé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsessed", + "example_sentence_native": "Il est obsédé par les jeux vidéo.", + "example_sentence_english": "He is obsessed with video games.", + "pos": "adjective", + "word_frequency": 18662 + }, + { + "word": "officieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unofficially", + "example_sentence_native": "Officieusement, le projet a été approuvé.", + "example_sentence_english": "Unofficially, the project has been approved.", + "pos": "adverb", + "word_frequency": 18664 + }, + { + "word": "organigramme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organizational chart;organigram", + "example_sentence_native": "L'organigramme de l'entreprise est affiché dans le couloir.", + "example_sentence_english": "The company's organizational chart is displayed in the hallway.", + "pos": "noun", + "word_frequency": 18666 + }, + { + "word": "ortie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nettle", + "example_sentence_native": "Attention, les orties ça pique!", + "example_sentence_english": "Be careful, nettles sting!", + "pos": "noun", + "word_frequency": 18667 + }, + { + "word": "pamplemousse", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grapefruit", + "example_sentence_native": "J'aime manger un pamplemousse au petit-déjeuner.", + "example_sentence_english": "I like to eat a grapefruit for breakfast.", + "pos": "noun", + "word_frequency": 18671 + }, + { + "word": "parfumerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfumery;perfume shop", + "example_sentence_native": "Elle a acheté un nouveau parfum à la parfumerie.", + "example_sentence_english": "She bought a new perfume at the perfumery.", + "pos": "noun", + "word_frequency": 18672 + }, + { + "word": "patiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to skate;to slide", + "example_sentence_native": "Les enfants aiment patiner sur la glace en hiver.", + "example_sentence_english": "Children like to skate on the ice in winter.", + "pos": "verb", + "word_frequency": 18674 + }, + { + "word": "perpétré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perpetrated;committed", + "example_sentence_native": "Le crime perpétré a choqué la communauté.", + "example_sentence_english": "The perpetrated crime shocked the community.", + "pos": "adjective", + "word_frequency": 18676 + }, + { + "word": "peupler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to populate;to inhabit", + "example_sentence_native": "Les humains ont commencé à peupler cette région il y a des milliers d'années.", + "example_sentence_english": "Humans began to populate this region thousands of years ago.", + "pos": "verb", + "word_frequency": 18677 + }, + { + "word": "philippin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Filipino", + "example_sentence_native": "La cuisine philippine est très variée.", + "example_sentence_english": "Filipino cuisine is very varied.", + "pos": "adjective", + "word_frequency": 18678 + }, + { + "word": "piercing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piercing", + "example_sentence_native": "Elle a un nouveau piercing au nez.", + "example_sentence_english": "She has a new nose piercing.", + "pos": "noun", + "word_frequency": 18679 + }, + { + "word": "plaidoirie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plea;pleading", + "example_sentence_native": "L'avocat a présenté une plaidoirie passionnée devant le tribunal.", + "example_sentence_english": "The lawyer presented a passionate plea before the court.", + "pos": "noun", + "word_frequency": 18680 + }, + { + "word": "ponce", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pumice", + "example_sentence_native": "Elle a utilisé une pierre ponce pour adoucir sa peau.", + "example_sentence_english": "She used a pumice stone to soften her skin.", + "pos": "noun", + "word_frequency": 18681 + }, + { + "word": "portfolio", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portfolio", + "example_sentence_native": "Le designer a montré son portfolio de projets créatifs.", + "example_sentence_english": "The designer showed his portfolio of creative projects.", + "pos": "noun", + "word_frequency": 18682 + }, + { + "word": "proportionnalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportionality", + "example_sentence_native": "Le principe de proportionnalité est fondamental en droit administratif.", + "example_sentence_english": "The principle of proportionality is fundamental in administrative law.", + "pos": "noun", + "word_frequency": 18684 + }, + { + "word": "psychanalytique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychoanalytic", + "example_sentence_native": "Il a une approche psychanalytique de l'interprétation des rêves.", + "example_sentence_english": "He has a psychoanalytic approach to dream interpretation.", + "pos": "adjective", + "word_frequency": 18685 + }, + { + "word": "puant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stinking;foul-smelling", + "example_sentence_native": "L'odeur puante venait des égouts de la rue.", + "example_sentence_english": "The stinking smell came from the street sewers.", + "pos": "adjective", + "word_frequency": 18686 + }, + { + "word": "pédestre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pedestrian", + "example_sentence_native": "La randonnée pédestre est une excellente façon d'explorer la nature.", + "example_sentence_english": "Pedestrian hiking is an excellent way to explore nature.", + "pos": "adjective", + "word_frequency": 18688 + }, + { + "word": "radiophonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radio (adj.);broadcast", + "example_sentence_native": "C'était une émission radiophonique très populaire dans les années 80.", + "example_sentence_english": "It was a very popular radio broadcast in the 80s.", + "pos": "adjective", + "word_frequency": 18689 + }, + { + "word": "radiothérapie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiotherapy", + "example_sentence_native": "Le patient a commencé un cycle de radiothérapie pour son traitement.", + "example_sentence_english": "The patient started a course of radiotherapy for his treatment.", + "pos": "noun", + "word_frequency": 18690 + }, + { + "word": "ramification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ramification;branching", + "example_sentence_native": "Les ramifications de cette décision politique sont complexes.", + "example_sentence_english": "The ramifications of this political decision are complex.", + "pos": "noun", + "word_frequency": 18691 + }, + { + "word": "ratatouille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ratatouille", + "example_sentence_native": "J'ai préparé une délicieuse ratatouille avec les légumes du jardin.", + "example_sentence_english": "I prepared a delicious ratatouille with vegetables from the garden.", + "pos": "noun", + "word_frequency": 18692 + }, + { + "word": "rediffusion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rerun;rebroadcast", + "example_sentence_native": "La série télévisée sera en rediffusion la semaine prochaine.", + "example_sentence_english": "The TV series will be rebroadcast next week.", + "pos": "noun", + "word_frequency": 18693 + }, + { + "word": "redémarrage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restart;reboot", + "example_sentence_native": "Un redémarrage du système est nécessaire pour appliquer les mises à jour.", + "example_sentence_english": "A system restart is necessary to apply the updates.", + "pos": "noun", + "word_frequency": 18694 + }, + { + "word": "refiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pass on;to give (informal)", + "example_sentence_native": "Il m'a refilé son vieux vélo, il est encore en bon état.", + "example_sentence_english": "He passed on his old bike to me, it's still in good condition.", + "pos": "verb", + "word_frequency": 18695 + }, + { + "word": "remanier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rework;to reshuffle;to revise", + "example_sentence_native": "Le ministre a décidé de remanier son équipe après les élections.", + "example_sentence_english": "The minister decided to reshuffle his team after the elections.", + "pos": "verb", + "word_frequency": 18696 + }, + { + "word": "roulant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rolling;moving", + "example_sentence_native": "Le tapis roulant de l'aéroport est en panne.", + "example_sentence_english": "The airport's moving walkway is out of order.", + "pos": "adjective", + "word_frequency": 18701 + }, + { + "word": "rythmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to punctuate;to give rhythm to", + "example_sentence_native": "La musique entraînante rythme la danse des participants.", + "example_sentence_english": "The lively music gives rhythm to the dancers' movements.", + "pos": "verb", + "word_frequency": 18703 + }, + { + "word": "réceptionniste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receptionist", + "example_sentence_native": "La réceptionniste de l'hôtel nous a donné les clés de notre chambre.", + "example_sentence_english": "The hotel receptionist gave us the keys to our room.", + "pos": "noun", + "word_frequency": 18704 + }, + { + "word": "récidiviste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repeat offender", + "example_sentence_native": "Le juge a prononcé une peine sévère contre le récidiviste.", + "example_sentence_english": "The judge handed down a severe sentence against the repeat offender.", + "pos": "noun", + "word_frequency": 18705 + }, + { + "word": "sabler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sandblast;to drink quickly (champagne)", + "example_sentence_native": "Ils ont sablé le champagne pour célébrer la nouvelle année.", + "example_sentence_english": "They quickly drank the champagne to celebrate the New Year.", + "pos": "verb", + "word_frequency": 18706 + }, + { + "word": "saule", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willow", + "example_sentence_native": "Un grand saule pleureur se dresse au bord de la rivière.", + "example_sentence_english": "A large weeping willow stands by the river.", + "pos": "noun", + "word_frequency": 18708 + }, + { + "word": "sensationnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensational", + "example_sentence_native": "Le spectacle de cirque était absolument sensationnel et a émerveillé le public.", + "example_sentence_english": "The circus show was absolutely sensational and amazed the audience.", + "pos": "adjective", + "word_frequency": 18711 + }, + { + "word": "sponsoring", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsorship", + "example_sentence_native": "L'entreprise a augmenté son budget de sponsoring pour les événements sportifs.", + "example_sentence_english": "The company increased its sponsorship budget for sports events.", + "pos": "noun", + "word_frequency": 18718 + }, + { + "word": "subventionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subsidize", + "example_sentence_native": "Le gouvernement a décidé de subventionner les énergies renouvelables.", + "example_sentence_english": "The government decided to subsidize renewable energies.", + "pos": "verb", + "word_frequency": 18720 + }, + { + "word": "suffixe", + "article_with_word": "le suffixe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffix", + "example_sentence_native": "Le suffixe '-tion' est très courant en français.", + "example_sentence_english": "The suffix '-tion' is very common in French.", + "pos": "noun", + "word_frequency": 18721 + }, + { + "word": "superposition", + "article_with_word": "la superposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superposition", + "example_sentence_native": "La superposition des couches crée un effet visuel intéressant.", + "example_sentence_english": "The superposition of layers creates an interesting visual effect.", + "pos": "noun", + "word_frequency": 18723 + }, + { + "word": "sénatorial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senatorial", + "example_sentence_native": "Il a été élu pour son mandat sénatorial.", + "example_sentence_english": "He was elected for his senatorial term.", + "pos": "adjective", + "word_frequency": 18725 + }, + { + "word": "sévices", + "article_with_word": "les sévices", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abuse;ill-treatment", + "example_sentence_native": "La loi protège les enfants contre les sévices.", + "example_sentence_english": "The law protects children against abuse.", + "pos": "noun", + "word_frequency": 18726 + }, + { + "word": "tibétain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tibetan", + "example_sentence_native": "Le bouddhisme tibétain est une forme unique de bouddhisme.", + "example_sentence_english": "Tibetan Buddhism is a unique form of Buddhism.", + "pos": "adjective", + "word_frequency": 18730 + }, + { + "word": "tondre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mow;to shear", + "example_sentence_native": "Il faut tondre la pelouse chaque semaine en été.", + "example_sentence_english": "The lawn needs to be mowed every week in summer.", + "pos": "verb", + "word_frequency": 18733 + }, + { + "word": "trauma", + "article_with_word": "le trauma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trauma", + "example_sentence_native": "Il a subi un grave trauma après l'accident.", + "example_sentence_english": "He suffered a severe trauma after the accident.", + "pos": "noun", + "word_frequency": 18734 + }, + { + "word": "tribal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribal", + "example_sentence_native": "Les coutumes tribales varient beaucoup d'une région à l'autre.", + "example_sentence_english": "Tribal customs vary greatly from one region to another.", + "pos": "adjective", + "word_frequency": 18735 + }, + { + "word": "troc", + "article_with_word": "le troc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barter", + "example_sentence_native": "Le troc était une forme d'échange courante avant l'invention de la monnaie.", + "example_sentence_english": "Barter was a common form of exchange before the invention of money.", + "pos": "noun", + "word_frequency": 18736 + }, + { + "word": "troisieme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "third", + "example_sentence_native": "C'est la troisieme fois que je visite Paris.", + "example_sentence_english": "This is the third time I visit Paris.", + "pos": "numeral", + "word_frequency": 18737 + }, + { + "word": "uriner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to urinate", + "example_sentence_native": "Il est important d'uriner régulièrement pour la santé.", + "example_sentence_english": "It is important to urinate regularly for health.", + "pos": "verb", + "word_frequency": 18740 + }, + { + "word": "vandale", + "article_with_word": "le vandale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandal", + "example_sentence_native": "Les vandales ont causé beaucoup de dégâts.", + "example_sentence_english": "The vandals caused a lot of damage.", + "pos": "noun", + "word_frequency": 18741 + }, + { + "word": "vestibule", + "article_with_word": "le vestibule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vestibule;entrance hall", + "example_sentence_native": "Le vestibule mène au salon principal.", + "example_sentence_english": "The vestibule leads to the main living room.", + "pos": "noun", + "word_frequency": 18745 + }, + { + "word": "virulent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virulent", + "example_sentence_native": "Le virus est très virulent et se propage rapidement.", + "example_sentence_english": "The virus is very virulent and spreads quickly.", + "pos": "adjective", + "word_frequency": 18746 + }, + { + "word": "viticulteur", + "article_with_word": "le viticulteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winegrower", + "example_sentence_native": "Le viticulteur s'occupe de la vigne et de la production de vin.", + "example_sentence_english": "The winegrower takes care of the vineyard and wine production.", + "pos": "noun", + "word_frequency": 18747 + }, + { + "word": "vizir", + "article_with_word": "le vizir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vizier", + "example_sentence_native": "Le vizir était un haut fonctionnaire dans les empires musulmans.", + "example_sentence_english": "The vizier was a high official in Muslim empires.", + "pos": "noun", + "word_frequency": 18748 + }, + { + "word": "véhiculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to convey;to transport", + "example_sentence_native": "Ce discours véhicule un message d'espoir.", + "example_sentence_english": "This speech conveys a message of hope.", + "pos": "verb", + "word_frequency": 18749 + }, + { + "word": "véranda", + "article_with_word": "la véranda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veranda;sunroom", + "example_sentence_native": "Nous prenons le petit-déjeuner dans la véranda en été.", + "example_sentence_english": "We have breakfast in the veranda in summer.", + "pos": "noun", + "word_frequency": 18750 + }, + { + "word": "youtubeur", + "article_with_word": "le youtubeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "YouTuber", + "example_sentence_native": "Mon fils rêve de devenir un youtubeur célèbre.", + "example_sentence_english": "My son dreams of becoming a famous YouTuber.", + "pos": "noun", + "word_frequency": 18753 + }, + { + "word": "zèbre", + "article_with_word": "le zèbre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zebra", + "example_sentence_native": "Le zèbre est connu pour ses rayures noires et blanches.", + "example_sentence_english": "The zebra is known for its black and white stripes.", + "pos": "noun", + "word_frequency": 18755 + }, + { + "word": "ébène", + "article_with_word": "l'ébène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ebony", + "example_sentence_native": "Le piano était fait en bois d'ébène.", + "example_sentence_english": "The piano was made of ebony wood.", + "pos": "noun", + "word_frequency": 18756 + }, + { + "word": "écartement", + "article_with_word": "l'écartement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spacing;gap;spread", + "example_sentence_native": "L'écartement des rails doit être précis pour la sécurité.", + "example_sentence_english": "The spacing of the rails must be precise for safety.", + "pos": "noun", + "word_frequency": 18757 + }, + { + "word": "éparpillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scattered;dispersed", + "example_sentence_native": "Les jouets étaient éparpillés sur le sol.", + "example_sentence_english": "The toys were scattered on the floor.", + "pos": "adjective", + "word_frequency": 18758 + }, + { + "word": "épithète", + "article_with_word": "l'épithète", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epithet", + "example_sentence_native": "L'épithète 'verte' dans 'herbe verte' est un adjectif qualificatif.", + "example_sentence_english": "The epithet 'green' in 'green grass' is a qualifying adjective.", + "pos": "noun", + "word_frequency": 18759 + }, + { + "word": "aberrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aberrant;abnormal", + "example_sentence_native": "Son comportement était aberrant et choquant.", + "example_sentence_english": "His behavior was aberrant and shocking.", + "pos": "adjective", + "word_frequency": 18760 + }, + { + "word": "abroger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to repeal;to revoke", + "example_sentence_native": "Le gouvernement a décidé d'abroger cette loi.", + "example_sentence_english": "The government decided to repeal this law.", + "pos": "verb", + "word_frequency": 18761 + }, + { + "word": "absenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be absent;to absent oneself", + "example_sentence_native": "Il s'est absenté du bureau toute la journée.", + "example_sentence_english": "He was absent from the office all day.", + "pos": "verb", + "word_frequency": 18762 + }, + { + "word": "acception", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meaning;sense (of a word)", + "example_sentence_native": "Ce mot a plusieurs acceptions selon le contexte.", + "example_sentence_english": "This word has several meanings depending on the context.", + "pos": "noun", + "word_frequency": 18763 + }, + { + "word": "adhésif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adhesive;sticky", + "example_sentence_native": "Le ruban adhésif est très utile pour emballer.", + "example_sentence_english": "Adhesive tape is very useful for packaging.", + "pos": "adjective", + "word_frequency": 18765 + }, + { + "word": "angine", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tonsillitis;angina", + "example_sentence_native": "J'ai une angine et j'ai mal à la gorge.", + "example_sentence_english": "I have tonsillitis and my throat hurts.", + "pos": "noun", + "word_frequency": 18769 + }, + { + "word": "antichambre", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antechamber;waiting room", + "example_sentence_native": "Nous avons attendu dans l'antichambre avant d'être reçus.", + "example_sentence_english": "We waited in the antechamber before being received.", + "pos": "noun", + "word_frequency": 18770 + }, + { + "word": "arbitrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arbitrate;to referee", + "example_sentence_native": "L'arbitre a dû arbitrer un match difficile.", + "example_sentence_english": "The referee had to officiate a difficult match.", + "pos": "verb", + "word_frequency": 18772 + }, + { + "word": "articulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "articular;joint-related", + "example_sentence_native": "Il souffre de douleurs articulaires.", + "example_sentence_english": "He suffers from joint pain.", + "pos": "adjective", + "word_frequency": 18774 + }, + { + "word": "assentiment", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assent;approval", + "example_sentence_native": "Il a donné son assentiment à la proposition.", + "example_sentence_english": "He gave his assent to the proposal.", + "pos": "noun", + "word_frequency": 18776 + }, + { + "word": "astro", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astro (prefix);astronaut (informal);astronomy (informal)", + "example_sentence_native": "Il est passionné par l'astro.", + "example_sentence_english": "He is passionate about astronomy.", + "pos": "noun", + "word_frequency": 18777 + }, + { + "word": "autoportrait", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-portrait", + "example_sentence_native": "L'artiste a peint un autoportrait.", + "example_sentence_english": "The artist painted a self-portrait.", + "pos": "noun", + "word_frequency": 18779 + }, + { + "word": "aviateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aviator;pilot", + "example_sentence_native": "Le jeune aviateur rêvait de voler autour du monde.", + "example_sentence_english": "The young aviator dreamed of flying around the world.", + "pos": "noun", + "word_frequency": 18780 + }, + { + "word": "botter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kick (with a boot);to fit (boots)", + "example_sentence_native": "Il a botté le ballon très fort.", + "example_sentence_english": "He kicked the ball very hard.", + "pos": "verb", + "word_frequency": 18786 + }, + { + "word": "bricoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tinker;to do DIY", + "example_sentence_native": "Mon père aime bricoler dans le garage le week-end.", + "example_sentence_english": "My father likes to tinker in the garage on weekends.", + "pos": "verb", + "word_frequency": 18788 + }, + { + "word": "bâtisseur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "builder;constructor", + "example_sentence_native": "Les bâtisseurs de cathédrales étaient des artisans talentueux.", + "example_sentence_english": "The cathedral builders were talented craftsmen.", + "pos": "noun", + "word_frequency": 18793 + }, + { + "word": "cabale", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cabal;conspiracy", + "example_sentence_native": "Il y a eu une cabale contre le nouveau directeur.", + "example_sentence_english": "There was a cabal against the new director.", + "pos": "noun", + "word_frequency": 18795 + }, + { + "word": "caniveau", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gutter;drain", + "example_sentence_native": "L'eau de pluie s'écoule dans le caniveau.", + "example_sentence_english": "Rainwater flows into the gutter.", + "pos": "noun", + "word_frequency": 18797 + }, + { + "word": "cata", + "article_with_word": "la cata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disaster (colloquial)", + "example_sentence_native": "C'est la cata, j'ai oublié mes clés!", + "example_sentence_english": "It's a disaster, I forgot my keys!", + "pos": "noun", + "word_frequency": 18800 + }, + { + "word": "caucus", + "article_with_word": "le caucus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caucus", + "example_sentence_native": "Le caucus du parti s'est réuni pour discuter de la stratégie.", + "example_sentence_english": "The party caucus met to discuss the strategy.", + "pos": "noun", + "word_frequency": 18801 + }, + { + "word": "chiffré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encrypted;coded", + "example_sentence_native": "Les données sont chiffrées pour des raisons de sécurité.", + "example_sentence_english": "The data is encrypted for security reasons.", + "pos": "adjective", + "word_frequency": 18804 + }, + { + "word": "cinglé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;nuts (colloquial)", + "example_sentence_native": "Il est complètement cinglé de faire ça!", + "example_sentence_english": "He's completely crazy to do that!", + "pos": "adjective", + "word_frequency": 18807 + }, + { + "word": "clignotant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flashing;blinking", + "example_sentence_native": "Le voyant clignotant indique un problème.", + "example_sentence_english": "The flashing light indicates a problem.", + "pos": "adjective", + "word_frequency": 18809 + }, + { + "word": "conter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tell;to recount", + "example_sentence_native": "Il aimait conter des histoires à ses petits-enfants.", + "example_sentence_english": "He liked to tell stories to his grandchildren.", + "pos": "verb", + "word_frequency": 18811 + }, + { + "word": "contresens", + "article_with_word": "le contresens", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misinterpretation;wrong meaning", + "example_sentence_native": "Cette traduction est un contresens total.", + "example_sentence_english": "This translation is a complete misinterpretation.", + "pos": "noun", + "word_frequency": 18812 + }, + { + "word": "convexe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convex", + "example_sentence_native": "Le miroir convexe offre un champ de vision plus large.", + "example_sentence_english": "The convex mirror offers a wider field of vision.", + "pos": "adjective", + "word_frequency": 18813 + }, + { + "word": "couplé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coupled;paired", + "example_sentence_native": "Le système est couplé à un capteur de mouvement.", + "example_sentence_english": "The system is coupled with a motion sensor.", + "pos": "adjective", + "word_frequency": 18814 + }, + { + "word": "courge", + "article_with_word": "la courge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "squash;gourd", + "example_sentence_native": "J'ai préparé une soupe à la courge pour le dîner.", + "example_sentence_english": "I made a squash soup for dinner.", + "pos": "noun", + "word_frequency": 18815 + }, + { + "word": "cristallin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crystalline;crystal clear", + "example_sentence_native": "L'eau de la source était cristalline.", + "example_sentence_english": "The spring water was crystal clear.", + "pos": "adjective", + "word_frequency": 18817 + }, + { + "word": "dextérité", + "article_with_word": "la dextérité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dexterity", + "example_sentence_native": "Il a montré une grande dextérité manuelle.", + "example_sentence_english": "He showed great manual dexterity.", + "pos": "noun", + "word_frequency": 18825 + }, + { + "word": "dinar", + "article_with_word": "le dinar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dinar (currency)", + "example_sentence_native": "La monnaie locale est le dinar.", + "example_sentence_english": "The local currency is the dinar.", + "pos": "noun", + "word_frequency": 18826 + }, + { + "word": "duper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deceive;to trick", + "example_sentence_native": "Il a essayé de me duper avec une fausse promesse.", + "example_sentence_english": "He tried to trick me with a false promise.", + "pos": "verb", + "word_frequency": 18830 + }, + { + "word": "débilité", + "article_with_word": "la débilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imbecility;stupidity", + "example_sentence_native": "La débilité de son argument était évidente.", + "example_sentence_english": "The stupidity of his argument was obvious.", + "pos": "noun", + "word_frequency": 18831 + }, + { + "word": "débordant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overflowing;bursting;exuberant", + "example_sentence_native": "Il est débordant d'énergie.", + "example_sentence_english": "He is bursting with energy.", + "pos": "adjective", + "word_frequency": 18832 + }, + { + "word": "déconnexion", + "article_with_word": "la déconnexion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disconnection;logout", + "example_sentence_native": "Une déconnexion inattendue a interrompu la session.", + "example_sentence_english": "An unexpected disconnection interrupted the session.", + "pos": "noun", + "word_frequency": 18833 + }, + { + "word": "déformé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deformed;distorted", + "example_sentence_native": "L'image était déformée par le mauvais réglage.", + "example_sentence_english": "The image was distorted by the wrong setting.", + "pos": "adjective", + "word_frequency": 18834 + }, + { + "word": "démembrement", + "article_with_word": "le démembrement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismemberment;break-up;dismantling", + "example_sentence_native": "Le démembrement de l'entreprise a été annoncé.", + "example_sentence_english": "The break-up of the company was announced.", + "pos": "noun", + "word_frequency": 18835 + }, + { + "word": "désintoxication", + "article_with_word": "la désintoxication", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detoxification;rehab", + "example_sentence_native": "Il a suivi un programme de désintoxication.", + "example_sentence_english": "He followed a detoxification program.", + "pos": "noun", + "word_frequency": 18836 + }, + { + "word": "emparé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seized;taken possession of", + "example_sentence_native": "Il s'est emparé du micro pour parler.", + "example_sentence_english": "He seized the microphone to speak.", + "pos": "adjective", + "word_frequency": 18837 + }, + { + "word": "empressement", + "article_with_word": "l'empressement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eagerness;haste;alacrity", + "example_sentence_native": "Il a répondu avec beaucoup d'empressement.", + "example_sentence_english": "He replied with great eagerness.", + "pos": "noun", + "word_frequency": 18838 + }, + { + "word": "empêché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevented;hindered;unavailable", + "example_sentence_native": "Je suis désolé, je suis empêché ce soir.", + "example_sentence_english": "I'm sorry, I'm unavailable tonight.", + "pos": "adjective", + "word_frequency": 18839 + }, + { + "word": "endocrinien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endocrine", + "example_sentence_native": "Le système endocrinien régule les hormones dans le corps.", + "example_sentence_english": "The endocrine system regulates hormones in the body.", + "pos": "adjective", + "word_frequency": 18840 + }, + { + "word": "entêtement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubbornness", + "example_sentence_native": "Son entêtement l'empêche d'admettre ses erreurs.", + "example_sentence_english": "His stubbornness prevents him from admitting his mistakes.", + "pos": "noun", + "word_frequency": 18841 + }, + { + "word": "envieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "envious", + "example_sentence_native": "Il était envieux de la réussite de son ami.", + "example_sentence_english": "He was envious of his friend's success.", + "pos": "adjective", + "word_frequency": 18842 + }, + { + "word": "exaspération", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exasperation", + "example_sentence_native": "Son exaspération était palpable.", + "example_sentence_english": "His exasperation was palpable.", + "pos": "noun", + "word_frequency": 18845 + }, + { + "word": "expulsé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expelled;deported", + "example_sentence_native": "Le joueur a été expulsé du match.", + "example_sentence_english": "The player was expelled from the match.", + "pos": "adjective", + "word_frequency": 18846 + }, + { + "word": "fainéant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lazy;idle", + "example_sentence_native": "Il est trop fainéant pour faire ses devoirs.", + "example_sentence_english": "He is too lazy to do his homework.", + "pos": "adjective", + "word_frequency": 18848 + }, + { + "word": "fard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "makeup;blush", + "example_sentence_native": "Elle a mis du fard sur ses joues.", + "example_sentence_english": "She put blush on her cheeks.", + "pos": "noun", + "word_frequency": 18850 + }, + { + "word": "feignant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lazy;idle (colloquial)", + "example_sentence_native": "Arrête d'être si feignant et aide-moi!", + "example_sentence_english": "Stop being so lazy and help me!", + "pos": "adjective", + "word_frequency": 18851 + }, + { + "word": "filleul", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godson", + "example_sentence_native": "Mon filleul vient me rendre visite ce week-end.", + "example_sentence_english": "My godson is coming to visit me this weekend.", + "pos": "noun", + "word_frequency": 18852 + }, + { + "word": "floral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floral", + "example_sentence_native": "J'aime les motifs floraux sur les tissus.", + "example_sentence_english": "I like floral patterns on fabrics.", + "pos": "adjective", + "word_frequency": 18854 + }, + { + "word": "fortuit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fortuitous;accidental", + "example_sentence_native": "Leur rencontre fut purement fortuite.", + "example_sentence_english": "Their meeting was purely fortuitous.", + "pos": "adjective", + "word_frequency": 18855 + }, + { + "word": "fraternel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraternal;brotherly", + "example_sentence_native": "Ils entretiennent une relation fraternelle.", + "example_sentence_english": "They maintain a fraternal relationship.", + "pos": "adjective", + "word_frequency": 18856 + }, + { + "word": "fromagerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheese shop", + "example_sentence_native": "J'ai acheté du fromage à la fromagerie du coin.", + "example_sentence_english": "I bought some cheese at the local cheese shop.", + "pos": "noun", + "word_frequency": 18857 + }, + { + "word": "glacière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooler;ice chest", + "example_sentence_native": "Nous avons mis les boissons dans la glacière.", + "example_sentence_english": "We put the drinks in the cooler.", + "pos": "noun", + "word_frequency": 18861 + }, + { + "word": "gladiateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gladiator", + "example_sentence_native": "Les gladiateurs combattaient dans l'arène romaine.", + "example_sentence_english": "Gladiators fought in the Roman arena.", + "pos": "noun", + "word_frequency": 18862 + }, + { + "word": "glaive", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sword;broadsword", + "example_sentence_native": "Le chevalier brandissait son glaive.", + "example_sentence_english": "The knight brandished his broadsword.", + "pos": "noun", + "word_frequency": 18863 + }, + { + "word": "gradé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranked;graded", + "example_sentence_native": "C'est un officier gradé.", + "example_sentence_english": "He is a ranked officer.", + "pos": "adjective", + "word_frequency": 18865 + }, + { + "word": "harem", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harem", + "example_sentence_native": "Le sultan vivait dans son harem.", + "example_sentence_english": "The sultan lived in his harem.", + "pos": "noun", + "word_frequency": 18871 + }, + { + "word": "hautain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "haughty;arrogant", + "example_sentence_native": "Son attitude hautaine ne plaît à personne.", + "example_sentence_english": "His haughty attitude pleases no one.", + "pos": "adjective", + "word_frequency": 18872 + }, + { + "word": "importateur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "importer", + "example_sentence_native": "L'importateur a reçu la nouvelle cargaison.", + "example_sentence_english": "The importer received the new cargo.", + "pos": "noun", + "word_frequency": 18877 + }, + { + "word": "impur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impure", + "example_sentence_native": "L'eau était impure et non potable.", + "example_sentence_english": "The water was impure and undrinkable.", + "pos": "adjective", + "word_frequency": 18878 + }, + { + "word": "inca", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Inca", + "example_sentence_native": "Les Incas ont construit des cités impressionnantes.", + "example_sentence_english": "The Incas built impressive cities.", + "pos": "noun", + "word_frequency": 18879 + }, + { + "word": "inconfort", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discomfort", + "example_sentence_native": "L'inconfort de la chaise rendait la réunion difficile.", + "example_sentence_english": "The discomfort of the chair made the meeting difficult.", + "pos": "noun", + "word_frequency": 18880 + }, + { + "word": "indulgent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indulgent;lenient", + "example_sentence_native": "Il est très indulgent envers ses enfants.", + "example_sentence_english": "He is very lenient with his children.", + "pos": "adjective", + "word_frequency": 18881 + }, + { + "word": "industrial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industrial", + "example_sentence_native": "La zone industrielle est en pleine expansion.", + "example_sentence_english": "The industrial zone is expanding rapidly.", + "pos": "adjective", + "word_frequency": 18882 + }, + { + "word": "infiltré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infiltrated", + "example_sentence_native": "L'agent infiltré a découvert le complot.", + "example_sentence_english": "The infiltrated agent discovered the plot.", + "pos": "adjective", + "word_frequency": 18883 + }, + { + "word": "infligé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflicted", + "example_sentence_native": "Les dommages infligés étaient considérables.", + "example_sentence_english": "The inflicted damage was considerable.", + "pos": "adjective", + "word_frequency": 18884 + }, + { + "word": "inoxydable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stainless", + "example_sentence_native": "Cette casserole est en acier inoxydable.", + "example_sentence_english": "This pan is made of stainless steel.", + "pos": "adjective", + "word_frequency": 18885 + }, + { + "word": "insipide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insipid;tasteless", + "example_sentence_native": "Le plat était si insipide que personne n'a voulu le finir.", + "example_sentence_english": "The dish was so tasteless that no one wanted to finish it.", + "pos": "adjective", + "word_frequency": 18886 + }, + { + "word": "intransigeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uncompromising;intransigent", + "example_sentence_native": "Il est connu pour son attitude intransigeante.", + "example_sentence_english": "He is known for his uncompromising attitude.", + "pos": "adjective", + "word_frequency": 18887 + }, + { + "word": "intrinsèquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrinsically", + "example_sentence_native": "La valeur de l'œuvre est intrinsèquement liée à son histoire.", + "example_sentence_english": "The value of the work is intrinsically linked to its history.", + "pos": "adverb", + "word_frequency": 18888 + }, + { + "word": "israélite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Israelite;Israeli (adj.)", + "example_sentence_native": "La culture israélite est très riche.", + "example_sentence_english": "Israelite culture is very rich.", + "pos": "adjective", + "word_frequency": 18889 + }, + { + "word": "jongler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to juggle", + "example_sentence_native": "Il sait jongler avec trois balles.", + "example_sentence_english": "He can juggle with three balls.", + "pos": "verb", + "word_frequency": 18893 + }, + { + "word": "lactose", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lactose", + "example_sentence_native": "Certaines personnes sont intolérantes au lactose.", + "example_sentence_english": "Some people are lactose intolerant.", + "pos": "noun", + "word_frequency": 18901 + }, + { + "word": "légionnaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legionnaire", + "example_sentence_native": "Le légionnaire a servi dans l'armée.", + "example_sentence_english": "The legionnaire served in the army.", + "pos": "noun", + "word_frequency": 18909 + }, + { + "word": "malaria", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malaria", + "example_sentence_native": "La malaria est une maladie transmise par les moustiques.", + "example_sentence_english": "Malaria is a disease transmitted by mosquitoes.", + "pos": "noun", + "word_frequency": 18910 + }, + { + "word": "mander", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to send for;to summon", + "example_sentence_native": "Le juge a mandé le témoin.", + "example_sentence_english": "The judge summoned the witness.", + "pos": "verb", + "word_frequency": 18911 + }, + { + "word": "marmotte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marmot;groundhog", + "example_sentence_native": "La marmotte hiberne pendant l'hiver.", + "example_sentence_english": "The marmot hibernates during winter.", + "pos": "noun", + "word_frequency": 18912 + }, + { + "word": "matrimonial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matrimonial", + "example_sentence_native": "Ils ont des problèmes matrimoniaux.", + "example_sentence_english": "They have matrimonial problems.", + "pos": "adjective", + "word_frequency": 18913 + }, + { + "word": "merdeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shitty;bratty (vulgar)", + "example_sentence_native": "Ce gamin est vraiment merdeux.", + "example_sentence_english": "This kid is really bratty.", + "pos": "adjective", + "word_frequency": 18917 + }, + { + "word": "multijoueur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiplayer", + "example_sentence_native": "C'est un jeu vidéo multijoueur.", + "example_sentence_english": "It's a multiplayer video game.", + "pos": "adjective", + "word_frequency": 18918 + }, + { + "word": "murmure", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "murmur;whisper", + "example_sentence_native": "On entendait un murmure dans la foule.", + "example_sentence_english": "A murmur could be heard in the crowd.", + "pos": "noun", + "word_frequency": 18919 + }, + { + "word": "narcissisme", + "article_with_word": "le narcissisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcissism", + "example_sentence_native": "Son narcissisme l'empêche de voir ses propres défauts.", + "example_sentence_english": "His narcissism prevents him from seeing his own flaws.", + "pos": "noun", + "word_frequency": 18920 + }, + { + "word": "nativité", + "article_with_word": "la nativité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nativity", + "example_sentence_native": "La crèche représente la Nativité.", + "example_sentence_english": "The nativity scene represents the Nativity.", + "pos": "noun", + "word_frequency": 18921 + }, + { + "word": "nitrate", + "article_with_word": "le nitrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nitrate", + "example_sentence_native": "Les nitrates sont souvent utilisés comme engrais.", + "example_sentence_english": "Nitrates are often used as fertilizers.", + "pos": "noun", + "word_frequency": 18923 + }, + { + "word": "noté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noted;graded", + "example_sentence_native": "Son travail a été bien noté par le professeur.", + "example_sentence_english": "His work was well graded by the teacher.", + "pos": "adjective", + "word_frequency": 18924 + }, + { + "word": "nymphe", + "article_with_word": "la nymphe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nymph", + "example_sentence_native": "Dans la mythologie grecque, les nymphes sont des divinités mineures.", + "example_sentence_english": "In Greek mythology, nymphs are minor deities.", + "pos": "noun", + "word_frequency": 18925 + }, + { + "word": "négligé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neglected;sloppy", + "example_sentence_native": "Son apparence était un peu négligée.", + "example_sentence_english": "His appearance was a bit sloppy.", + "pos": "adjective", + "word_frequency": 18926 + }, + { + "word": "oubliette", + "article_with_word": "une oubliette", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oubliette", + "example_sentence_native": "Le prisonnier fut jeté dans l'oubliette.", + "example_sentence_english": "The prisoner was thrown into the oubliette.", + "pos": "noun", + "word_frequency": 18929 + }, + { + "word": "ouzou", + "article_with_word": "l'ouzou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ouzo (anise-flavored aperitif)", + "example_sentence_native": "En Grèce, on boit souvent de l'ouzou avec des mezzes.", + "example_sentence_english": "In Greece, ouzo is often drunk with mezzes.", + "pos": "noun", + "word_frequency": 18930 + }, + { + "word": "pastoral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pastoral", + "example_sentence_native": "Le paysage pastoral était très apaisant.", + "example_sentence_english": "The pastoral landscape was very soothing.", + "pos": "adjective", + "word_frequency": 18932 + }, + { + "word": "patio", + "article_with_word": "le patio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patio", + "example_sentence_native": "Nous avons dîné sur le patio hier soir.", + "example_sentence_english": "We had dinner on the patio last night.", + "pos": "noun", + "word_frequency": 18933 + }, + { + "word": "perpétuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perpetually", + "example_sentence_native": "Il se plaint perpétuellement de tout.", + "example_sentence_english": "He perpetually complains about everything.", + "pos": "adverb", + "word_frequency": 18934 + }, + { + "word": "pincer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pinch", + "example_sentence_native": "Le crabe m'a pincé le doigt.", + "example_sentence_english": "The crab pinched my finger.", + "pos": "verb", + "word_frequency": 18936 + }, + { + "word": "plié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folded", + "example_sentence_native": "La feuille était pliée en deux.", + "example_sentence_english": "The sheet was folded in half.", + "pos": "adjective", + "word_frequency": 18939 + }, + { + "word": "pléthore", + "article_with_word": "une pléthore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plethora", + "example_sentence_native": "Il y a une pléthore d'informations disponibles en ligne.", + "example_sentence_english": "There is a plethora of information available online.", + "pos": "noun", + "word_frequency": 18940 + }, + { + "word": "pondération", + "article_with_word": "la pondération", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "weighting;deliberation;balance", + "example_sentence_native": "Sa décision a été prise avec beaucoup de pondération.", + "example_sentence_english": "His decision was made with much deliberation.", + "pos": "noun", + "word_frequency": 18941 + }, + { + "word": "potier", + "article_with_word": "le potier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potter", + "example_sentence_native": "Le potier a façonné l'argile avec habileté.", + "example_sentence_english": "The potter skillfully shaped the clay.", + "pos": "noun", + "word_frequency": 18942 + }, + { + "word": "promptement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promptly", + "example_sentence_native": "Il a réagi promptement à la situation.", + "example_sentence_english": "He reacted promptly to the situation.", + "pos": "adverb", + "word_frequency": 18946 + }, + { + "word": "proxy", + "article_with_word": "le proxy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proxy", + "example_sentence_native": "J'utilise un serveur proxy pour naviguer anonymement.", + "example_sentence_english": "I use a proxy server to browse anonymously.", + "pos": "noun", + "word_frequency": 18947 + }, + { + "word": "prêté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lent", + "example_sentence_native": "Le livre prêté doit être rendu demain.", + "example_sentence_english": "The lent book must be returned tomorrow.", + "pos": "adjective", + "word_frequency": 18948 + }, + { + "word": "pénombre", + "article_with_word": "la pénombre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penumbra;semi-darkness", + "example_sentence_native": "La pièce était plongée dans la pénombre.", + "example_sentence_english": "The room was plunged into semi-darkness.", + "pos": "noun", + "word_frequency": 18949 + }, + { + "word": "pépé", + "article_with_word": "le pépé", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandpa (informal)", + "example_sentence_native": "Mon pépé aime raconter des histoires.", + "example_sentence_english": "My grandpa likes to tell stories.", + "pos": "noun", + "word_frequency": 18950 + }, + { + "word": "quorum", + "article_with_word": "le quorum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quorum", + "example_sentence_native": "Le vote n'a pas pu avoir lieu faute de quorum.", + "example_sentence_english": "The vote could not take place due to lack of a quorum.", + "pos": "noun", + "word_frequency": 18952 + }, + { + "word": "redemander", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ask again;to ask back", + "example_sentence_native": "Il a redemandé une part de gâteau.", + "example_sentence_english": "He asked for another slice of cake again.", + "pos": "verb", + "word_frequency": 18956 + }, + { + "word": "ria", + "article_with_word": "la ria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ria (a submerged river valley)", + "example_sentence_native": "Les rias de Galice sont célèbres pour leur beauté.", + "example_sentence_english": "The rias of Galicia are famous for their beauty.", + "pos": "noun", + "word_frequency": 18958 + }, + { + "word": "ricochet", + "article_with_word": "le ricochet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ricochet", + "example_sentence_native": "La pierre a fait un ricochet sur l'eau.", + "example_sentence_english": "The stone made a ricochet on the water.", + "pos": "noun", + "word_frequency": 18959 + }, + { + "word": "réapparaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reappear", + "example_sentence_native": "Le soleil a commencé à réapparaître après la pluie.", + "example_sentence_english": "The sun began to reappear after the rain.", + "pos": "verb", + "word_frequency": 18964 + }, + { + "word": "réglisse", + "article_with_word": "la réglisse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "licorice", + "example_sentence_native": "J'aime le goût de la réglisse noire.", + "example_sentence_english": "I like the taste of black licorice.", + "pos": "noun", + "word_frequency": 18965 + }, + { + "word": "saccage", + "article_with_word": "le saccage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ransacking;devastation", + "example_sentence_native": "Le saccage du magasin a causé d'énormes dégâts.", + "example_sentence_english": "The ransacking of the store caused enormous damage.", + "pos": "noun", + "word_frequency": 18966 + }, + { + "word": "saccager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ransack;to devastate", + "example_sentence_native": "Les vandales ont saccagé le parc public.", + "example_sentence_english": "The vandals ransacked the public park.", + "pos": "verb", + "word_frequency": 18967 + }, + { + "word": "saper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to undermine;to sap", + "example_sentence_native": "Les critiques ont commencé à saper sa confiance.", + "example_sentence_english": "The criticisms began to undermine his confidence.", + "pos": "verb", + "word_frequency": 18970 + }, + { + "word": "savoyard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Savoyard (from Savoy)", + "example_sentence_native": "La fondue savoyarde est un plat traditionnel.", + "example_sentence_english": "Savoyard fondue is a traditional dish.", + "pos": "adjective", + "word_frequency": 18972 + }, + { + "word": "saxophone", + "article_with_word": "le saxophone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saxophone", + "example_sentence_native": "Il joue du saxophone dans un groupe de jazz.", + "example_sentence_english": "He plays the saxophone in a jazz band.", + "pos": "noun", + "word_frequency": 18973 + }, + { + "word": "servi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "served;waited on", + "example_sentence_native": "Le plat est servi chaud.", + "example_sentence_english": "The dish is served hot.", + "pos": "adjective", + "word_frequency": 18978 + }, + { + "word": "silencieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silently", + "example_sentence_native": "Il est entré dans la pièce silencieusement.", + "example_sentence_english": "He entered the room silently.", + "pos": "adverb", + "word_frequency": 18980 + }, + { + "word": "sneaker", + "article_with_word": "une sneaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sneaker", + "example_sentence_native": "J'ai acheté une nouvelle paire de sneakers.", + "example_sentence_english": "I bought a new pair of sneakers.", + "pos": "noun", + "word_frequency": 18983 + }, + { + "word": "soliste", + "article_with_word": "un soliste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soloist", + "example_sentence_native": "Le soliste a reçu une ovation debout.", + "example_sentence_english": "The soloist received a standing ovation.", + "pos": "noun", + "word_frequency": 18985 + }, + { + "word": "solvant", + "article_with_word": "le solvant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solvent", + "example_sentence_native": "Ce produit contient un solvant puissant.", + "example_sentence_english": "This product contains a powerful solvent.", + "pos": "noun", + "word_frequency": 18986 + }, + { + "word": "sournois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sly;cunning", + "example_sentence_native": "Il a un sourire sournois.", + "example_sentence_english": "He has a sly smile.", + "pos": "adjective", + "word_frequency": 18987 + }, + { + "word": "stupéfait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stupefied;astonished", + "example_sentence_native": "Elle était stupéfaite par la nouvelle.", + "example_sentence_english": "She was stupefied by the news.", + "pos": "adjective", + "word_frequency": 18989 + }, + { + "word": "stéroïde", + "article_with_word": "le stéroïde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steroid", + "example_sentence_native": "Les stéroïdes peuvent avoir des effets secondaires.", + "example_sentence_english": "Steroids can have side effects.", + "pos": "noun", + "word_frequency": 18990 + }, + { + "word": "supercoupe", + "article_with_word": "la supercoupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supercup", + "example_sentence_native": "L'équipe a remporté la Supercoupe cette année.", + "example_sentence_english": "The team won the Supercup this year.", + "pos": "noun", + "word_frequency": 18993 + }, + { + "word": "surchargé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overloaded;overcharged", + "example_sentence_native": "Le serveur est surchargé de requêtes.", + "example_sentence_english": "The server is overloaded with requests.", + "pos": "adjective", + "word_frequency": 18994 + }, + { + "word": "séquestration", + "article_with_word": "la séquestration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kidnapping;sequestration", + "example_sentence_native": "La police enquête sur un cas de séquestration.", + "example_sentence_english": "The police are investigating a case of kidnapping.", + "pos": "noun", + "word_frequency": 18995 + }, + { + "word": "tabernacle", + "article_with_word": "le tabernacle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tabernacle", + "example_sentence_native": "Le prêtre a placé l'hostie dans le tabernacle.", + "example_sentence_english": "The priest placed the host in the tabernacle.", + "pos": "noun", + "word_frequency": 18996 + }, + { + "word": "tourelle", + "article_with_word": "la tourelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turret", + "example_sentence_native": "La tourelle du château offrait une vue imprenable.", + "example_sentence_english": "The castle's turret offered a breathtaking view.", + "pos": "noun", + "word_frequency": 19003 + }, + { + "word": "traversé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossed;traversed", + "example_sentence_native": "Le pont traversé était très ancien.", + "example_sentence_english": "The bridge crossed was very old.", + "pos": "adjective", + "word_frequency": 19005 + }, + { + "word": "velléité", + "article_with_word": "la velléité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "velleity;faint desire", + "example_sentence_native": "Il a montré une velléité de changer, mais sans conviction.", + "example_sentence_english": "He showed a faint desire to change, but without conviction.", + "pos": "noun", + "word_frequency": 19009 + }, + { + "word": "voilure", + "article_with_word": "la voilure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sail area;wing area", + "example_sentence_native": "Le bateau a déployé toute sa voilure.", + "example_sentence_english": "The boat unfurled all its sail area.", + "pos": "noun", + "word_frequency": 19011 + }, + { + "word": "éclore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hatch;to bloom", + "example_sentence_native": "Les œufs vont bientôt éclore.", + "example_sentence_english": "The eggs will soon hatch.", + "pos": "verb", + "word_frequency": 19023 + }, + { + "word": "égaré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lost;astray", + "example_sentence_native": "Le chien égaré a été retrouvé.", + "example_sentence_english": "The lost dog was found.", + "pos": "adjective", + "word_frequency": 19024 + }, + { + "word": "éminence", + "article_with_word": "l'éminence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eminence;prominence", + "example_sentence_native": "Il est une éminence grise dans le monde politique.", + "example_sentence_english": "He is a grey eminence in the political world.", + "pos": "noun", + "word_frequency": 19025 + }, + { + "word": "épargnant", + "article_with_word": "l'épargnant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saver (person)", + "example_sentence_native": "Les épargnants cherchent des placements sûrs.", + "example_sentence_english": "Savers are looking for safe investments.", + "pos": "noun", + "word_frequency": 19026 + }, + { + "word": "épouvante", + "article_with_word": "l'épouvante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terror;dread", + "example_sentence_native": "Le film d'épouvante m'a fait frissonner.", + "example_sentence_english": "The horror film made me shiver.", + "pos": "noun", + "word_frequency": 19027 + }, + { + "word": "équipementier", + "article_with_word": "l'équipementier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equipment manufacturer;supplier", + "example_sentence_native": "Cet équipementier automobile fournit des pièces à de grandes marques.", + "example_sentence_english": "This automotive equipment supplier provides parts to major brands.", + "pos": "noun", + "word_frequency": 19028 + }, + { + "word": "affranchi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "freed;emancipated", + "example_sentence_native": "Il se sentait affranchi de ses anciennes contraintes.", + "example_sentence_english": "He felt freed from his old constraints.", + "pos": "adjective", + "word_frequency": 19031 + }, + { + "word": "allaiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to breastfeed", + "example_sentence_native": "Elle a choisi d'allaiter son bébé.", + "example_sentence_english": "She chose to breastfeed her baby.", + "pos": "verb", + "word_frequency": 19032 + }, + { + "word": "alterné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternating;staggered", + "example_sentence_native": "Le rythme alterné des cours permet de travailler en entreprise.", + "example_sentence_english": "The alternating rhythm of classes allows for working in a company.", + "pos": "adjective", + "word_frequency": 19033 + }, + { + "word": "amabilité", + "article_with_word": "l'amabilité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kindness;amiability", + "example_sentence_native": "Son amabilité est très appréciée.", + "example_sentence_english": "Her kindness is much appreciated.", + "pos": "noun", + "word_frequency": 19034 + }, + { + "word": "anatomique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anatomical", + "example_sentence_native": "Le modèle anatomique aide à comprendre le corps humain.", + "example_sentence_english": "The anatomical model helps to understand the human body.", + "pos": "adjective", + "word_frequency": 19035 + }, + { + "word": "apaisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soothing;calming", + "example_sentence_native": "La musique douce est très apaisante.", + "example_sentence_english": "Soft music is very soothing.", + "pos": "adjective", + "word_frequency": 19037 + }, + { + "word": "apostasie", + "article_with_word": "l'apostasie", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "apostasy", + "example_sentence_native": "L'apostasie est l'abandon d'une religion.", + "example_sentence_english": "Apostasy is the abandonment of a religion.", + "pos": "noun", + "word_frequency": 19038 + }, + { + "word": "arthrite", + "article_with_word": "l'arthrite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arthritis", + "example_sentence_native": "Elle souffre d'arthrite dans les genoux.", + "example_sentence_english": "She suffers from arthritis in her knees.", + "pos": "noun", + "word_frequency": 19039 + }, + { + "word": "ascendance", + "article_with_word": "l'ascendance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestry;lineage", + "example_sentence_native": "Son ascendance est noble.", + "example_sentence_english": "His ancestry is noble.", + "pos": "noun", + "word_frequency": 19040 + }, + { + "word": "assistante", + "article_with_word": "l'assistante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "assistant (female)", + "example_sentence_native": "L'assistante a préparé le dossier.", + "example_sentence_english": "The assistant prepared the file.", + "pos": "noun", + "word_frequency": 19041 + }, + { + "word": "assiégé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "besieged", + "example_sentence_native": "La ville assiégée a résisté longtemps.", + "example_sentence_english": "The besieged city resisted for a long time.", + "pos": "adjective", + "word_frequency": 19042 + }, + { + "word": "attenant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjoining;contiguous", + "example_sentence_native": "La salle attenante est utilisée pour les réunions.", + "example_sentence_english": "The adjoining room is used for meetings.", + "pos": "adjective", + "word_frequency": 19043 + }, + { + "word": "audible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audible", + "example_sentence_native": "Le son n'était pas audible de loin.", + "example_sentence_english": "The sound was not audible from afar.", + "pos": "adjective", + "word_frequency": 19044 + }, + { + "word": "biceps", + "article_with_word": "le biceps", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biceps", + "example_sentence_native": "Il a de gros biceps.", + "example_sentence_english": "He has big biceps.", + "pos": "noun", + "word_frequency": 19046 + }, + { + "word": "bosquet", + "article_with_word": "le bosquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grove;thicket", + "example_sentence_native": "Nous nous sommes promenés dans le bosquet.", + "example_sentence_english": "We walked in the grove.", + "pos": "noun", + "word_frequency": 19048 + }, + { + "word": "brandir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to brandish;to wave", + "example_sentence_native": "Il a brandi son épée.", + "example_sentence_english": "He brandished his sword.", + "pos": "verb", + "word_frequency": 19050 + }, + { + "word": "bûcheron", + "article_with_word": "le bûcheron", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lumberjack;woodcutter", + "example_sentence_native": "Le bûcheron coupe du bois dans la forêt.", + "example_sentence_english": "The lumberjack cuts wood in the forest.", + "pos": "noun", + "word_frequency": 19052 + }, + { + "word": "cancéreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cancerous", + "example_sentence_native": "Les cellules cancéreuses se sont propagées.", + "example_sentence_english": "The cancerous cells spread.", + "pos": "adjective", + "word_frequency": 19053 + }, + { + "word": "canine", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canine", + "example_sentence_native": "La population canine est en augmentation.", + "example_sentence_english": "The canine population is increasing.", + "pos": "adjective", + "word_frequency": 19054 + }, + { + "word": "caribou", + "article_with_word": "le caribou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caribou", + "example_sentence_native": "Le caribou est un animal du Grand Nord.", + "example_sentence_english": "The caribou is an animal of the Far North.", + "pos": "noun", + "word_frequency": 19056 + }, + { + "word": "castration", + "article_with_word": "la castration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "castration", + "example_sentence_native": "La castration est une procédure chirurgicale.", + "example_sentence_english": "Castration is a surgical procedure.", + "pos": "noun", + "word_frequency": 19058 + }, + { + "word": "cel", + "article_with_word": "le cel", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "cel (animation term)", + "example_sentence_native": "Les dessins étaient transférés sur des cels.", + "example_sentence_english": "The drawings were transferred onto cels.", + "pos": "noun", + "word_frequency": 19060 + }, + { + "word": "chemisier", + "article_with_word": "le chemisier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blouse (women's shirt)", + "example_sentence_native": "Elle a acheté un nouveau chemisier.", + "example_sentence_english": "She bought a new blouse.", + "pos": "noun", + "word_frequency": 19064 + }, + { + "word": "clamer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proclaim;to declare;to shout", + "example_sentence_native": "Il a clamé son innocence.", + "example_sentence_english": "He proclaimed his innocence.", + "pos": "verb", + "word_frequency": 19068 + }, + { + "word": "coccinelle", + "article_with_word": "la coccinelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ladybug;ladybird", + "example_sentence_native": "Une coccinelle s'est posée sur ma main.", + "example_sentence_english": "A ladybug landed on my hand.", + "pos": "noun", + "word_frequency": 19070 + }, + { + "word": "colombier", + "article_with_word": "le colombier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dovecote;pigeon loft", + "example_sentence_native": "Le château avait un grand colombier.", + "example_sentence_english": "The castle had a large dovecote.", + "pos": "noun", + "word_frequency": 19071 + }, + { + "word": "comportemental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "behavioral", + "example_sentence_native": "Il suit une thérapie comportementale.", + "example_sentence_english": "He is undergoing behavioral therapy.", + "pos": "adjective", + "word_frequency": 19072 + }, + { + "word": "comptabilisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounted for;recorded", + "example_sentence_native": "Tous les coûts ont été comptabilisés.", + "example_sentence_english": "All costs have been accounted for.", + "pos": "adjective", + "word_frequency": 19073 + }, + { + "word": "confectionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make;to produce;to craft", + "example_sentence_native": "Elle aime confectionner ses propres vêtements.", + "example_sentence_english": "She likes to make her own clothes.", + "pos": "verb", + "word_frequency": 19074 + }, + { + "word": "confesseur", + "article_with_word": "le confesseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confessor", + "example_sentence_native": "Le prêtre est son confesseur.", + "example_sentence_english": "The priest is his confessor.", + "pos": "noun", + "word_frequency": 19075 + }, + { + "word": "contrefort", + "article_with_word": "le contrefort", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "buttress (architecture);spur (geology)", + "example_sentence_native": "L'église est soutenue par des contreforts.", + "example_sentence_english": "The church is supported by buttresses.", + "pos": "noun", + "word_frequency": 19076 + }, + { + "word": "contrepoint", + "article_with_word": "le contrepoint", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpoint", + "example_sentence_native": "Le contrepoint est une technique de composition musicale.", + "example_sentence_english": "Counterpoint is a musical composition technique.", + "pos": "noun", + "word_frequency": 19077 + }, + { + "word": "convié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invited (as in;a guest)", + "example_sentence_native": "Les invités conviés sont arrivés.", + "example_sentence_english": "The invited guests have arrived.", + "pos": "adjective", + "word_frequency": 19078 + }, + { + "word": "critérium", + "article_with_word": "le critérium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criterium (cycling race)", + "example_sentence_native": "Il a remporté le critérium de la ville.", + "example_sentence_english": "He won the city criterium.", + "pos": "noun", + "word_frequency": 19079 + }, + { + "word": "croiseur", + "article_with_word": "le croiseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruiser", + "example_sentence_native": "Le croiseur a jeté l'ancre dans le port.", + "example_sentence_english": "The cruiser dropped anchor in the port.", + "pos": "noun", + "word_frequency": 19080 + }, + { + "word": "cyprès", + "article_with_word": "le cyprès", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cypress", + "example_sentence_native": "Les cyprès bordent l'allée du jardin.", + "example_sentence_english": "Cypress trees line the garden path.", + "pos": "noun", + "word_frequency": 19081 + }, + { + "word": "daim", + "article_with_word": "le daim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fallow deer", + "example_sentence_native": "Nous avons aperçu un daim dans la forêt.", + "example_sentence_english": "We spotted a fallow deer in the forest.", + "pos": "noun", + "word_frequency": 19082 + }, + { + "word": "densément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "densely", + "example_sentence_native": "La forêt est densément peuplée d'arbres.", + "example_sentence_english": "The forest is densely populated with trees.", + "pos": "adverb", + "word_frequency": 19084 + }, + { + "word": "dingo", + "article_with_word": "le dingo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dingo", + "example_sentence_native": "Le dingo est un chien sauvage d'Australie.", + "example_sentence_english": "The dingo is a wild dog from Australia.", + "pos": "noun", + "word_frequency": 19087 + }, + { + "word": "dispensaire", + "article_with_word": "le dispensaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispensary", + "example_sentence_native": "Elle travaille comme infirmière au dispensaire local.", + "example_sentence_english": "She works as a nurse at the local dispensary.", + "pos": "noun", + "word_frequency": 19088 + }, + { + "word": "dressing", + "article_with_word": "le dressing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walk-in closet", + "example_sentence_native": "Elle a un grand dressing pour tous ses vêtements.", + "example_sentence_english": "She has a large walk-in closet for all her clothes.", + "pos": "noun", + "word_frequency": 19091 + }, + { + "word": "débarrassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rid of", + "example_sentence_native": "Je suis enfin débarrassé de ce problème.", + "example_sentence_english": "I am finally rid of this problem.", + "pos": "adjective", + "word_frequency": 19093 + }, + { + "word": "décemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decently", + "example_sentence_native": "Il devrait se comporter plus décemment en public.", + "example_sentence_english": "He should behave more decently in public.", + "pos": "adverb", + "word_frequency": 19094 + }, + { + "word": "dédale", + "article_with_word": "le dédale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maze", + "example_sentence_native": "Nous nous sommes perdus dans le dédale des rues étroites.", + "example_sentence_english": "We got lost in the maze of narrow streets.", + "pos": "noun", + "word_frequency": 19095 + }, + { + "word": "dédommager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate", + "example_sentence_native": "L'assurance a accepté de le dédommager pour les dégâts.", + "example_sentence_english": "The insurance agreed to compensate him for the damages.", + "pos": "verb", + "word_frequency": 19096 + }, + { + "word": "défaveur", + "article_with_word": "la défaveur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disfavor", + "example_sentence_native": "Sa proposition est tombée en défaveur.", + "example_sentence_english": "His proposal fell into disfavor.", + "pos": "noun", + "word_frequency": 19097 + }, + { + "word": "délirant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outrageous", + "example_sentence_native": "Il a eu une idée complètement délirante.", + "example_sentence_english": "He had a completely outrageous idea.", + "pos": "adjective", + "word_frequency": 19098 + }, + { + "word": "dénigrement", + "article_with_word": "le dénigrement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denigration", + "example_sentence_native": "Le dénigrement de ses concurrents est une mauvaise stratégie.", + "example_sentence_english": "The denigration of his competitors is a bad strategy.", + "pos": "noun", + "word_frequency": 19099 + }, + { + "word": "désinfection", + "article_with_word": "la désinfection", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinfection", + "example_sentence_native": "La désinfection des mains est essentielle pour éviter la propagation des germes.", + "example_sentence_english": "Hand disinfection is essential to prevent the spread of germs.", + "pos": "noun", + "word_frequency": 19100 + }, + { + "word": "désintérêt", + "article_with_word": "le désintérêt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinterest", + "example_sentence_native": "Son désintérêt pour le sujet était évident.", + "example_sentence_english": "His disinterest in the subject was obvious.", + "pos": "noun", + "word_frequency": 19101 + }, + { + "word": "ebook", + "article_with_word": "un ebook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ebook", + "example_sentence_native": "J'ai lu un ebook passionnant sur ma tablette.", + "example_sentence_english": "I read a fascinating ebook on my tablet.", + "pos": "noun", + "word_frequency": 19102 + }, + { + "word": "echelle", + "article_with_word": "l'échelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ladder", + "example_sentence_native": "Il a utilisé une échelle pour atteindre le toit.", + "example_sentence_english": "He used a ladder to reach the roof.", + "pos": "noun", + "word_frequency": 19103 + }, + { + "word": "embûche", + "article_with_word": "une embûche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pitfall", + "example_sentence_native": "Le chemin était semé d'embûches.", + "example_sentence_english": "The path was full of pitfalls.", + "pos": "noun", + "word_frequency": 19104 + }, + { + "word": "entassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piled up", + "example_sentence_native": "Les livres étaient entassés sur l'étagère.", + "example_sentence_english": "The books were piled up on the shelf.", + "pos": "adjective", + "word_frequency": 19107 + }, + { + "word": "entreposage", + "article_with_word": "l'entreposage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storage", + "example_sentence_native": "Le coût de l'entreposage des marchandises est élevé.", + "example_sentence_english": "The cost of goods storage is high.", + "pos": "noun", + "word_frequency": 19108 + }, + { + "word": "entretemps", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the meantime", + "example_sentence_native": "Je vais préparer le dîner, entretemps tu peux mettre la table.", + "example_sentence_english": "I'll prepare dinner, meanwhile you can set the table.", + "pos": "adverb", + "word_frequency": 19109 + }, + { + "word": "envahissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasive", + "example_sentence_native": "Cette plante est très envahissante dans le jardin.", + "example_sentence_english": "This plant is very invasive in the garden.", + "pos": "adjective", + "word_frequency": 19110 + }, + { + "word": "enviable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enviable", + "example_sentence_native": "Il a une position enviable dans l'entreprise.", + "example_sentence_english": "He has an enviable position in the company.", + "pos": "adjective", + "word_frequency": 19111 + }, + { + "word": "escorter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escort", + "example_sentence_native": "La police a escorté le convoi jusqu'à la frontière.", + "example_sentence_english": "The police escorted the convoy to the border.", + "pos": "verb", + "word_frequency": 19114 + }, + { + "word": "exemplarité", + "article_with_word": "l'exemplarité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemplariness", + "example_sentence_native": "Son exemplarité est une source d'inspiration pour tous.", + "example_sentence_english": "His exemplariness is a source of inspiration for everyone.", + "pos": "noun", + "word_frequency": 19115 + }, + { + "word": "faîte", + "article_with_word": "le faîte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "summit", + "example_sentence_native": "Ils ont atteint le faîte de la montagne au lever du soleil.", + "example_sentence_english": "They reached the summit of the mountain at sunrise.", + "pos": "noun", + "word_frequency": 19116 + }, + { + "word": "fission", + "article_with_word": "la fission", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fission", + "example_sentence_native": "La fission nucléaire libère une énorme quantité d'énergie.", + "example_sentence_english": "Nuclear fission releases an enormous amount of energy.", + "pos": "noun", + "word_frequency": 19119 + }, + { + "word": "flex", + "article_with_word": "le flex", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flex;hose;cable", + "example_sentence_native": "Le flex de la douche est cassé.", + "example_sentence_english": "The shower hose is broken.", + "pos": "noun", + "word_frequency": 19120 + }, + { + "word": "frileux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensitive to cold;chilly", + "example_sentence_native": "Elle est très frileuse et porte toujours un pull.", + "example_sentence_english": "She is very sensitive to cold and always wears a sweater.", + "pos": "adjective", + "word_frequency": 19123 + }, + { + "word": "fructifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bear fruit;to yield;to make profitable", + "example_sentence_native": "Leurs efforts ont commencé à fructifier.", + "example_sentence_english": "Their efforts began to bear fruit.", + "pos": "verb", + "word_frequency": 19124 + }, + { + "word": "frustré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrated", + "example_sentence_native": "Il se sentait frustré par le manque de progrès.", + "example_sentence_english": "He felt frustrated by the lack of progress.", + "pos": "adjective", + "word_frequency": 19125 + }, + { + "word": "garni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furnished;garnished;filled", + "example_sentence_native": "L'appartement est loué meublé et garni.", + "example_sentence_english": "The apartment is rented furnished and equipped.", + "pos": "adjective", + "word_frequency": 19128 + }, + { + "word": "germano", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Germano- (Germanic;related to Germany)", + "example_sentence_native": "Les relations germano-françaises sont essentielles.", + "example_sentence_english": "Franco-German relations are essential.", + "pos": "adjective", + "word_frequency": 19129 + }, + { + "word": "grimpeur", + "article_with_word": "le grimpeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climber", + "example_sentence_native": "Le grimpeur a atteint le sommet de la montagne.", + "example_sentence_english": "The climber reached the top of the mountain.", + "pos": "noun", + "word_frequency": 19134 + }, + { + "word": "gâchette", + "article_with_word": "la gâchette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger (of a gun);latch", + "example_sentence_native": "Il a appuyé sur la gâchette du pistolet.", + "example_sentence_english": "He pulled the trigger of the pistol.", + "pos": "noun", + "word_frequency": 19136 + }, + { + "word": "habillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dressed;well-dressed", + "example_sentence_native": "Elle était très bien habillée pour la soirée.", + "example_sentence_english": "She was very well dressed for the evening.", + "pos": "adjective", + "word_frequency": 19137 + }, + { + "word": "hectolitre", + "article_with_word": "l'hectolitre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hectoliter", + "example_sentence_native": "La production de vin est mesurée en hectolitres.", + "example_sentence_english": "Wine production is measured in hectoliters.", + "pos": "noun", + "word_frequency": 19139 + }, + { + "word": "hirondelle", + "article_with_word": "l'hirondelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swallow (bird)", + "example_sentence_native": "Les hirondelles reviennent au printemps.", + "example_sentence_english": "Swallows return in spring.", + "pos": "noun", + "word_frequency": 19141 + }, + { + "word": "houblon", + "article_with_word": "le houblon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hop (plant)", + "example_sentence_native": "Le houblon est un ingrédient essentiel de la bière.", + "example_sentence_english": "Hops are an essential ingredient in beer.", + "pos": "noun", + "word_frequency": 19144 + }, + { + "word": "hétérosexuel", + "article_with_word": "un hétérosexuel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterosexual (person)", + "example_sentence_native": "Il se définit comme hétérosexuel.", + "example_sentence_english": "He defines himself as heterosexual.", + "pos": "noun", + "word_frequency": 19147 + }, + { + "word": "ibis", + "article_with_word": "l'ibis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ibis", + "example_sentence_native": "L'ibis sacré est un oiseau migrateur.", + "example_sentence_english": "The sacred ibis is a migratory bird.", + "pos": "noun", + "word_frequency": 19148 + }, + { + "word": "incohérent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incoherent;inconsistent", + "example_sentence_native": "Ses propos étaient totalement incohérents.", + "example_sentence_english": "His remarks were totally incoherent.", + "pos": "adjective", + "word_frequency": 19149 + }, + { + "word": "indonésien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Indonesian", + "example_sentence_native": "Elle parle la langue indonésienne couramment.", + "example_sentence_english": "She speaks the Indonesian language fluently.", + "pos": "adjective", + "word_frequency": 19151 + }, + { + "word": "informatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informative", + "example_sentence_native": "Ce document est très informatif et utile.", + "example_sentence_english": "This document is very informative and useful.", + "pos": "adjective", + "word_frequency": 19152 + }, + { + "word": "inonder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flood;to inundate", + "example_sentence_native": "La pluie a inondé les rues de la ville.", + "example_sentence_english": "The rain flooded the city streets.", + "pos": "verb", + "word_frequency": 19153 + }, + { + "word": "interné", + "article_with_word": "un interné", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internee;confined person", + "example_sentence_native": "L'interné a été transféré dans un autre établissement.", + "example_sentence_english": "The internee was transferred to another facility.", + "pos": "noun", + "word_frequency": 19154 + }, + { + "word": "interphone", + "article_with_word": "l'interphone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intercom", + "example_sentence_native": "J'ai sonné à l'interphone mais personne n'a répondu.", + "example_sentence_english": "I rang the intercom but no one answered.", + "pos": "noun", + "word_frequency": 19155 + }, + { + "word": "intransigeance", + "article_with_word": "l'intransigeance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intransigence;uncompromising attitude", + "example_sentence_native": "Son intransigeance a rendu la négociation difficile.", + "example_sentence_english": "His intransigence made the negotiation difficult.", + "pos": "noun", + "word_frequency": 19156 + }, + { + "word": "irremplaçable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreplaceable", + "example_sentence_native": "Cette personne est irremplaçable dans notre équipe.", + "example_sentence_english": "This person is irreplaceable in our team.", + "pos": "adjective", + "word_frequency": 19157 + }, + { + "word": "islamisation", + "article_with_word": "l'islamisation", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Islamization", + "example_sentence_native": "Le débat sur l'islamisation est un sujet complexe.", + "example_sentence_english": "The debate on Islamization is a complex topic.", + "pos": "noun", + "word_frequency": 19158 + }, + { + "word": "italo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "Unknown", + "english_translation": "Italic (style)", + "example_sentence_native": "Le style italo est très reconnaissable dans cette architecture.", + "example_sentence_english": "The Italic style is very recognizable in this architecture.", + "pos": "adjective", + "word_frequency": 19160 + }, + { + "word": "jaquette", + "article_with_word": "la jaquette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dust jacket;jacket (of a book)", + "example_sentence_native": "La jaquette du livre est très colorée.", + "example_sentence_english": "The book's dust jacket is very colorful.", + "pos": "noun", + "word_frequency": 19162 + }, + { + "word": "klaxon", + "article_with_word": "le klaxon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn (vehicle)", + "example_sentence_native": "Le conducteur a donné un coup de klaxon.", + "example_sentence_english": "The driver honked the horn.", + "pos": "noun", + "word_frequency": 19169 + }, + { + "word": "latence", + "article_with_word": "la latence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "latency", + "example_sentence_native": "La latence de la connexion internet est un problème.", + "example_sentence_english": "The internet connection's latency is a problem.", + "pos": "noun", + "word_frequency": 19174 + }, + { + "word": "laveur", + "article_with_word": "le laveur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "washer;cleaner", + "example_sentence_native": "Le laveur de vitres a fait un excellent travail.", + "example_sentence_english": "The window cleaner did an excellent job.", + "pos": "noun", + "word_frequency": 19175 + }, + { + "word": "libertin", + "article_with_word": "le libertin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libertine", + "example_sentence_native": "Il était réputé pour être un grand libertin.", + "example_sentence_english": "He was known for being a great libertine.", + "pos": "noun", + "word_frequency": 19178 + }, + { + "word": "liesse", + "article_with_word": "la liesse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jubilation;exultation", + "example_sentence_native": "La liesse populaire a éclaté après la victoire.", + "example_sentence_english": "Popular jubilation erupted after the victory.", + "pos": "noun", + "word_frequency": 19179 + }, + { + "word": "loufoque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wacky;zany", + "example_sentence_native": "C'est une idée complètement loufoque!", + "example_sentence_english": "That's a completely wacky idea!", + "pos": "adjective", + "word_frequency": 19180 + }, + { + "word": "maker", + "article_with_word": "le maker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maker (person who makes things)", + "example_sentence_native": "Le mouvement des makers est très actif dans cette ville.", + "example_sentence_english": "The maker movement is very active in this city.", + "pos": "noun", + "word_frequency": 19184 + }, + { + "word": "mangeur", + "article_with_word": "le mangeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eater", + "example_sentence_native": "C'est un grand mangeur de chocolat.", + "example_sentence_english": "He's a big chocolate eater.", + "pos": "noun", + "word_frequency": 19186 + }, + { + "word": "microcosme", + "article_with_word": "le microcosme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microcosm", + "example_sentence_native": "Ce petit village est un microcosme de la société rurale.", + "example_sentence_english": "This small village is a microcosm of rural society.", + "pos": "noun", + "word_frequency": 19190 + }, + { + "word": "mélodique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melodic", + "example_sentence_native": "Cette chanson a une structure très mélodique.", + "example_sentence_english": "This song has a very melodic structure.", + "pos": "adjective", + "word_frequency": 19198 + }, + { + "word": "numérotation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numbering", + "example_sentence_native": "La numérotation des pages est incorrecte.", + "example_sentence_english": "The page numbering is incorrect.", + "pos": "noun", + "word_frequency": 19201 + }, + { + "word": "obsolescence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsolescence", + "example_sentence_native": "L'obsolescence programmée est un sujet de débat.", + "example_sentence_english": "Planned obsolescence is a subject of debate.", + "pos": "noun", + "word_frequency": 19205 + }, + { + "word": "occulter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to obscure;to hide", + "example_sentence_native": "Les nuages ont occulté la vue sur les montagnes.", + "example_sentence_english": "The clouds obscured the view of the mountains.", + "pos": "verb", + "word_frequency": 19206 + }, + { + "word": "ogive", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ogive;warhead", + "example_sentence_native": "L'ogive gothique est une caractéristique architecturale.", + "example_sentence_english": "The Gothic ogive is an architectural feature.", + "pos": "noun", + "word_frequency": 19207 + }, + { + "word": "pelote", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ball (of yarn;wool);bundle", + "example_sentence_native": "Elle a acheté une pelote de laine pour tricoter.", + "example_sentence_english": "She bought a ball of wool for knitting.", + "pos": "noun", + "word_frequency": 19213 + }, + { + "word": "perceuse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drill (tool)", + "example_sentence_native": "J'ai besoin d'une perceuse pour accrocher ce tableau.", + "example_sentence_english": "I need a drill to hang this painting.", + "pos": "noun", + "word_frequency": 19214 + }, + { + "word": "percutant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striking;impactful;hard-hitting", + "example_sentence_native": "Son discours était très percutant.", + "example_sentence_english": "His speech was very striking.", + "pos": "adjective", + "word_frequency": 19215 + }, + { + "word": "plaisanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to joke;to kid", + "example_sentence_native": "Il aime plaisanter avec ses amis.", + "example_sentence_english": "He likes to joke with his friends.", + "pos": "verb", + "word_frequency": 19219 + }, + { + "word": "poulailler", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chicken coop;hen house", + "example_sentence_native": "Les poules rentrent au poulailler le soir.", + "example_sentence_english": "The chickens go back to the chicken coop in the evening.", + "pos": "noun", + "word_frequency": 19221 + }, + { + "word": "prolétaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proletarian", + "example_sentence_native": "Le prolétaire est un terme issu de la théorie marxiste.", + "example_sentence_english": "The proletarian is a term from Marxist theory.", + "pos": "noun", + "word_frequency": 19223 + }, + { + "word": "promontoire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promontory;headland", + "example_sentence_native": "Le phare est situé sur un promontoire rocheux.", + "example_sentence_english": "The lighthouse is located on a rocky promontory.", + "pos": "noun", + "word_frequency": 19224 + }, + { + "word": "préfixe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prefix", + "example_sentence_native": "\"Dé-\" est un préfixe qui indique la suppression.", + "example_sentence_english": "\"De-\" is a prefix that indicates removal.", + "pos": "noun", + "word_frequency": 19226 + }, + { + "word": "pudique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modest;reserved;chaste", + "example_sentence_native": "Elle est très pudique et n'aime pas parler de sa vie privée.", + "example_sentence_english": "She is very modest and doesn't like to talk about her private life.", + "pos": "adjective", + "word_frequency": 19227 + }, + { + "word": "péremption", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expiry;expiration (date)", + "example_sentence_native": "Vérifiez la date de péremption avant de consommer.", + "example_sentence_english": "Check the expiry date before consuming.", + "pos": "noun", + "word_frequency": 19228 + }, + { + "word": "radiographie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "X-ray;radiography", + "example_sentence_native": "Le médecin a demandé une radiographie du poumon.", + "example_sentence_english": "The doctor requested an X-ray of the lung.", + "pos": "noun", + "word_frequency": 19231 + }, + { + "word": "raptor", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raptor (bird of prey or dinosaur)", + "example_sentence_native": "Le faucon est un type de raptor.", + "example_sentence_english": "The falcon is a type of raptor.", + "pos": "noun", + "word_frequency": 19232 + }, + { + "word": "rationaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rationalize;to streamline", + "example_sentence_native": "Il faut rationaliser les processus pour gagner du temps.", + "example_sentence_english": "We need to rationalize the processes to save time.", + "pos": "verb", + "word_frequency": 19233 + }, + { + "word": "ravitailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resupply;to refuel", + "example_sentence_native": "Le navire doit ravitailler en carburant.", + "example_sentence_english": "The ship needs to refuel.", + "pos": "verb", + "word_frequency": 19234 + }, + { + "word": "refondation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refoundation;rebuilding", + "example_sentence_native": "Le parti politique a appelé à la refondation de la société.", + "example_sentence_english": "The political party called for the refoundation of society.", + "pos": "noun", + "word_frequency": 19236 + }, + { + "word": "religieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "religiously;scrupulously", + "example_sentence_native": "Il suit les règles religieusement.", + "example_sentence_english": "He follows the rules religiously.", + "pos": "adverb", + "word_frequency": 19237 + }, + { + "word": "renflouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to refloat;to bail out (financially)", + "example_sentence_native": "Le gouvernement a dû renflouer la banque en difficulté.", + "example_sentence_english": "The government had to bail out the struggling bank.", + "pos": "verb", + "word_frequency": 19238 + }, + { + "word": "retentissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resounding;sensational;impactful", + "example_sentence_native": "Le scandale a eu un effet retentissant.", + "example_sentence_english": "The scandal had a resounding effect.", + "pos": "adjective", + "word_frequency": 19239 + }, + { + "word": "rosette", + "article_with_word": "la rosette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosette", + "example_sentence_native": "Elle portait une rosette sur sa veste.", + "example_sentence_english": "She wore a rosette on her jacket.", + "pos": "noun", + "word_frequency": 19245 + }, + { + "word": "réconfortant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comforting", + "example_sentence_native": "Sa présence était très réconfortante.", + "example_sentence_english": "Her presence was very comforting.", + "pos": "adjective", + "word_frequency": 19247 + }, + { + "word": "répréhensible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprehensible", + "example_sentence_native": "Son comportement était jugé répréhensible.", + "example_sentence_english": "His behavior was judged reprehensible.", + "pos": "adjective", + "word_frequency": 19248 + }, + { + "word": "répugnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repugnant", + "example_sentence_native": "L'odeur était absolument répugnante.", + "example_sentence_english": "The smell was absolutely repugnant.", + "pos": "adjective", + "word_frequency": 19249 + }, + { + "word": "sidérurgie", + "article_with_word": "la sidérurgie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steel industry", + "example_sentence_native": "La sidérurgie est un secteur industriel important.", + "example_sentence_english": "The steel industry is an important industrial sector.", + "pos": "noun", + "word_frequency": 19255 + }, + { + "word": "sociabilité", + "article_with_word": "la sociabilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociability", + "example_sentence_native": "Sa sociabilité est très appréciée.", + "example_sentence_english": "His sociability is much appreciated.", + "pos": "noun", + "word_frequency": 19259 + }, + { + "word": "sofa", + "article_with_word": "le sofa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sofa", + "example_sentence_native": "Nous avons acheté un nouveau sofa pour le salon.", + "example_sentence_english": "We bought a new sofa for the living room.", + "pos": "noun", + "word_frequency": 19261 + }, + { + "word": "spacieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spacious", + "example_sentence_native": "L'appartement est très spacieux.", + "example_sentence_english": "The apartment is very spacious.", + "pos": "adjective", + "word_frequency": 19263 + }, + { + "word": "stigmate", + "article_with_word": "le stigmate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stigma", + "example_sentence_native": "Le chômage peut laisser un stigmate social.", + "example_sentence_english": "Unemployment can leave a social stigma.", + "pos": "noun", + "word_frequency": 19266 + }, + { + "word": "strasbourgeois", + "article_with_word": "le Strasbourgeois", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Strasbourg inhabitant", + "example_sentence_native": "Un Strasbourgeois est fier de sa ville.", + "example_sentence_english": "A Strasbourg inhabitant is proud of his city.", + "pos": "noun", + "word_frequency": 19268 + }, + { + "word": "tavernier", + "article_with_word": "le tavernier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innkeeper", + "example_sentence_native": "Le tavernier a servi de la bière fraîche.", + "example_sentence_english": "The innkeeper served fresh beer.", + "pos": "noun", + "word_frequency": 19270 + }, + { + "word": "teinté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tinted", + "example_sentence_native": "Les vitres de la voiture sont teintées.", + "example_sentence_english": "The car windows are tinted.", + "pos": "adjective", + "word_frequency": 19271 + }, + { + "word": "tilleul", + "article_with_word": "le tilleul", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lime tree", + "example_sentence_native": "Le tilleul est un arbre majestueux.", + "example_sentence_english": "The lime tree is a majestic tree.", + "pos": "noun", + "word_frequency": 19273 + }, + { + "word": "titulariser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make permanent (job);to make a starter (sports)", + "example_sentence_native": "L'entraîneur a décidé de titulariser le jeune joueur.", + "example_sentence_english": "The coach decided to make the young player a starter.", + "pos": "verb", + "word_frequency": 19274 + }, + { + "word": "transcrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transcribe", + "example_sentence_native": "Il faut transcrire cette interview.", + "example_sentence_english": "This interview needs to be transcribed.", + "pos": "verb", + "word_frequency": 19276 + }, + { + "word": "transgression", + "article_with_word": "la transgression", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transgression", + "example_sentence_native": "Toute transgression sera punie.", + "example_sentence_english": "Any transgression will be punished.", + "pos": "noun", + "word_frequency": 19277 + }, + { + "word": "écueil", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitfall;reef;obstacle", + "example_sentence_native": "Il a évité l'écueil de la faillite.", + "example_sentence_english": "He avoided the pitfall of bankruptcy.", + "pos": "noun", + "word_frequency": 19285 + }, + { + "word": "élitiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elitist", + "example_sentence_native": "Cette politique est considérée comme élitiste.", + "example_sentence_english": "This policy is considered elitist.", + "pos": "adjective", + "word_frequency": 19286 + }, + { + "word": "épurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to purify;to refine", + "example_sentence_native": "Il faut épurer l'eau avant de la boire.", + "example_sentence_english": "One must purify the water before drinking it.", + "pos": "verb", + "word_frequency": 19287 + }, + { + "word": "éthanol", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethanol", + "example_sentence_native": "L'éthanol est un type d'alcool.", + "example_sentence_english": "Ethanol is a type of alcohol.", + "pos": "noun", + "word_frequency": 19288 + }, + { + "word": "acacia", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acacia", + "example_sentence_native": "L'acacia est un arbre avec des fleurs parfumées.", + "example_sentence_english": "The acacia is a tree with fragrant flowers.", + "pos": "noun", + "word_frequency": 19291 + }, + { + "word": "acharner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to strive;to persist;to be relentless", + "example_sentence_native": "Il s'acharne au travail pour réussir.", + "example_sentence_english": "He strives relentlessly at work to succeed.", + "pos": "verb", + "word_frequency": 19292 + }, + { + "word": "adjonction", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "addition;adjunction", + "example_sentence_native": "L'adjonction de sel améliore le goût.", + "example_sentence_english": "The addition of salt improves the taste.", + "pos": "noun", + "word_frequency": 19293 + }, + { + "word": "adjuger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to award;to adjudge", + "example_sentence_native": "Le juge a adjugé la propriété au plaignant.", + "example_sentence_english": "The judge awarded the property to the plaintiff.", + "pos": "verb", + "word_frequency": 19294 + }, + { + "word": "admirablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admirably", + "example_sentence_native": "Elle a admirablement géré la situation.", + "example_sentence_english": "She admirably handled the situation.", + "pos": "adverb", + "word_frequency": 19295 + }, + { + "word": "agrémenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embellish;to adorn;to make more pleasant", + "example_sentence_native": "Il a agrémenté son discours d'anecdotes amusantes.", + "example_sentence_english": "He embellished his speech with amusing anecdotes.", + "pos": "verb", + "word_frequency": 19296 + }, + { + "word": "ammoniac", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammonia", + "example_sentence_native": "L'ammoniac a une odeur forte.", + "example_sentence_english": "Ammonia has a strong smell.", + "pos": "noun", + "word_frequency": 19299 + }, + { + "word": "anthropologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropological", + "example_sentence_native": "Il étudie les aspects anthropologiques de la culture.", + "example_sentence_english": "He studies the anthropological aspects of culture.", + "pos": "adjective", + "word_frequency": 19302 + }, + { + "word": "assujettir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to subject;to subjugate", + "example_sentence_native": "Ils ont tenté d'assujettir la population.", + "example_sentence_english": "They tried to subjugate the population.", + "pos": "verb", + "word_frequency": 19305 + }, + { + "word": "baïonnette", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bayonet", + "example_sentence_native": "Le soldat a fixé sa baïonnette au fusil.", + "example_sentence_english": "The soldier fixed his bayonet to the rifle.", + "pos": "noun", + "word_frequency": 19310 + }, + { + "word": "bercail", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fold;home (figurative)", + "example_sentence_native": "Après un long voyage, il est enfin de retour au bercail.", + "example_sentence_english": "After a long journey, he is finally back home.", + "pos": "noun", + "word_frequency": 19313 + }, + { + "word": "berlinois", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Berliner (person from Berlin)", + "example_sentence_native": "Un Berlinois connaît bien sa ville.", + "example_sentence_english": "A Berliner knows his city well.", + "pos": "noun", + "word_frequency": 19314 + }, + { + "word": "bestial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bestial;brutal", + "example_sentence_native": "Il a montré une force bestiale.", + "example_sentence_english": "He showed a bestial strength.", + "pos": "noun", + "word_frequency": 19316 + }, + { + "word": "bourgeon", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bud", + "example_sentence_native": "Les bourgeons apparaissent au printemps.", + "example_sentence_english": "The buds appear in spring.", + "pos": "noun", + "word_frequency": 19319 + }, + { + "word": "brasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to brew;to stir", + "example_sentence_native": "Il aime brasser sa propre bière artisanale.", + "example_sentence_english": "He likes to brew his own craft beer.", + "pos": "verb", + "word_frequency": 19320 + }, + { + "word": "bruyamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loudly;noisily", + "example_sentence_native": "Les enfants jouaient bruyamment dans le jardin.", + "example_sentence_english": "The children were playing loudly in the garden.", + "pos": "adverb", + "word_frequency": 19324 + }, + { + "word": "bénédictin", + "article_with_word": "un bénédictin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Benedictine (monk or liqueur)", + "example_sentence_native": "Il a visité une abbaye bénédictine en Normandie.", + "example_sentence_english": "He visited a Benedictine abbey in Normandy.", + "pos": "noun", + "word_frequency": 19329 + }, + { + "word": "caillot", + "article_with_word": "un caillot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clot", + "example_sentence_native": "Le médecin a détecté un caillot de sang.", + "example_sentence_english": "The doctor detected a blood clot.", + "pos": "noun", + "word_frequency": 19331 + }, + { + "word": "canap", + "article_with_word": "un canap'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sofa;couch (informal)", + "example_sentence_native": "On va se poser sur le canap' pour regarder un film.", + "example_sentence_english": "We're going to chill on the couch to watch a movie.", + "pos": "noun", + "word_frequency": 19332 + }, + { + "word": "carbure", + "article_with_word": "le carbure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbide", + "example_sentence_native": "Cet outil est fabriqué en carbure de tungstène.", + "example_sentence_english": "This tool is made of tungsten carbide.", + "pos": "noun", + "word_frequency": 19333 + }, + { + "word": "carcéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carceral;prison-related", + "example_sentence_native": "Il a étudié le système carcéral français.", + "example_sentence_english": "He studied the French carceral system.", + "pos": "adjective", + "word_frequency": 19334 + }, + { + "word": "chamois", + "article_with_word": "un chamois", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chamois (animal or leather)", + "example_sentence_native": "Le chamois est un animal agile des montagnes.", + "example_sentence_english": "The chamois is an agile mountain animal.", + "pos": "noun", + "word_frequency": 19339 + }, + { + "word": "ciblage", + "article_with_word": "le ciblage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "targeting", + "example_sentence_native": "Le ciblage publicitaire est devenu très précis.", + "example_sentence_english": "Advertising targeting has become very precise.", + "pos": "noun", + "word_frequency": 19341 + }, + { + "word": "cicatrisation", + "article_with_word": "la cicatrisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "healing;scarring", + "example_sentence_native": "La cicatrisation de la plaie prendra du temps.", + "example_sentence_english": "The healing of the wound will take time.", + "pos": "noun", + "word_frequency": 19342 + }, + { + "word": "civière", + "article_with_word": "une civière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stretcher", + "example_sentence_native": "Les ambulanciers ont transporté le blessé sur une civière.", + "example_sentence_english": "The paramedics transported the injured person on a stretcher.", + "pos": "noun", + "word_frequency": 19344 + }, + { + "word": "clarinette", + "article_with_word": "la clarinette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarinet", + "example_sentence_native": "Elle joue de la clarinette dans un orchestre de jazz.", + "example_sentence_english": "She plays the clarinet in a jazz orchestra.", + "pos": "noun", + "word_frequency": 19345 + }, + { + "word": "classicisme", + "article_with_word": "le classicisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "classicism", + "example_sentence_native": "Le classicisme est un mouvement artistique du XVIIe siècle.", + "example_sentence_english": "Classicism is an artistic movement of the 17th century.", + "pos": "noun", + "word_frequency": 19347 + }, + { + "word": "cluster", + "article_with_word": "le cluster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cluster", + "example_sentence_native": "Un cluster de cas a été identifié dans la région.", + "example_sentence_english": "A cluster of cases has been identified in the region.", + "pos": "noun", + "word_frequency": 19349 + }, + { + "word": "competition", + "article_with_word": "la compétition", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition", + "example_sentence_native": "La compétition pour les places était très rude.", + "example_sentence_english": "The competition for places was very tough.", + "pos": "noun", + "word_frequency": 19351 + }, + { + "word": "concerter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concert;to consult;to coordinate", + "example_sentence_native": "Ils doivent se concerter avant de prendre une décision finale.", + "example_sentence_english": "They must consult each other before making a final decision.", + "pos": "verb", + "word_frequency": 19352 + }, + { + "word": "conformisme", + "article_with_word": "le conformisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conformism", + "example_sentence_native": "Le conformisme social peut étouffer l'individualité.", + "example_sentence_english": "Social conformism can stifle individuality.", + "pos": "noun", + "word_frequency": 19353 + }, + { + "word": "connectivité", + "article_with_word": "la connectivité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connectivity", + "example_sentence_native": "La connectivité internet est essentielle pour le télétravail.", + "example_sentence_english": "Internet connectivity is essential for remote work.", + "pos": "noun", + "word_frequency": 19354 + }, + { + "word": "consternation", + "article_with_word": "la consternation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consternation;dismay", + "example_sentence_native": "La nouvelle de l'accident a provoqué la consternation générale.", + "example_sentence_english": "The news of the accident caused general consternation.", + "pos": "noun", + "word_frequency": 19355 + }, + { + "word": "constitutif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutive;constituent", + "example_sentence_native": "C'est un élément constitutif de notre culture.", + "example_sentence_english": "It is a constitutive element of our culture.", + "pos": "adjective", + "word_frequency": 19356 + }, + { + "word": "cottage", + "article_with_word": "le cottage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cottage", + "example_sentence_native": "Ils ont loué un charmant cottage à la campagne pour les vacances.", + "example_sentence_english": "They rented a charming cottage in the countryside for the holidays.", + "pos": "noun", + "word_frequency": 19359 + }, + { + "word": "croyable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "believable;credible", + "example_sentence_native": "Son histoire n'est pas très croyable.", + "example_sentence_english": "His story is not very believable.", + "pos": "adjective", + "word_frequency": 19362 + }, + { + "word": "curling", + "article_with_word": "le curling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curling", + "example_sentence_native": "Le curling est un sport d'hiver.", + "example_sentence_english": "Curling is a winter sport.", + "pos": "noun", + "word_frequency": 19363 + }, + { + "word": "cutter", + "article_with_word": "le cutter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box cutter;utility knife", + "example_sentence_native": "J'ai besoin d'un cutter pour ouvrir le carton.", + "example_sentence_english": "I need a cutter to open the box.", + "pos": "noun", + "word_frequency": 19364 + }, + { + "word": "diaphragme", + "article_with_word": "le diaphragme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diaphragm", + "example_sentence_native": "Le diaphragme est essentiel pour la respiration.", + "example_sentence_english": "The diaphragm is essential for breathing.", + "pos": "noun", + "word_frequency": 19370 + }, + { + "word": "diminutif", + "article_with_word": "le diminutif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diminutive", + "example_sentence_native": "Petit est un diminutif de petit.", + "example_sentence_english": "Petit is a diminutive of small.", + "pos": "noun", + "word_frequency": 19372 + }, + { + "word": "distillerie", + "article_with_word": "la distillerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distillery", + "example_sentence_native": "Cette région est connue pour ses distilleries de whisky.", + "example_sentence_english": "This region is known for its whisky distilleries.", + "pos": "noun", + "word_frequency": 19373 + }, + { + "word": "doublon", + "article_with_word": "le doublon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duplicate;doubloon", + "example_sentence_native": "Il y a un doublon dans cette liste.", + "example_sentence_english": "There is a duplicate in this list.", + "pos": "noun", + "word_frequency": 19376 + }, + { + "word": "déblocage", + "article_with_word": "le déblocage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unblocking;unlocking;release", + "example_sentence_native": "Le déblocage du téléphone a pris du temps.", + "example_sentence_english": "The unblocking of the phone took time.", + "pos": "noun", + "word_frequency": 19377 + }, + { + "word": "décapiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decapitate;to behead", + "example_sentence_native": "Dans les contes, le dragon a été décapité.", + "example_sentence_english": "In the tales, the dragon was decapitated.", + "pos": "verb", + "word_frequency": 19378 + }, + { + "word": "emirat", + "article_with_word": "l'émirat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emirate", + "example_sentence_native": "Dubaï est un émirat des Émirats arabes unis.", + "example_sentence_english": "Dubai is an emirate of the United Arab Emirates.", + "pos": "noun", + "word_frequency": 19382 + }, + { + "word": "enrôler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enlist;to enroll", + "example_sentence_native": "Il a décidé de s'enrôler dans l'armée.", + "example_sentence_english": "He decided to enlist in the army.", + "pos": "verb", + "word_frequency": 19384 + }, + { + "word": "entierement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entirely;completely", + "example_sentence_native": "Je suis entièrement d'accord avec vous.", + "example_sentence_english": "I entirely agree with you.", + "pos": "adverb", + "word_frequency": 19385 + }, + { + "word": "evaluation", + "article_with_word": "l'évaluation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evaluation;assessment", + "example_sentence_native": "L'évaluation des élèves aura lieu la semaine prochaine.", + "example_sentence_english": "The students' evaluation will take place next week.", + "pos": "noun", + "word_frequency": 19386 + }, + { + "word": "feindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feign;to pretend", + "example_sentence_native": "Il a feint l'ignorance pour éviter la question.", + "example_sentence_english": "He feigned ignorance to avoid the question.", + "pos": "verb", + "word_frequency": 19389 + }, + { + "word": "flexion", + "article_with_word": "la flexion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flexion;bending;inflection", + "example_sentence_native": "La flexion du genou est importante pour la marche.", + "example_sentence_english": "Knee flexion is important for walking.", + "pos": "noun", + "word_frequency": 19391 + }, + { + "word": "fougueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiery;spirited;impetuous", + "example_sentence_native": "C'est un cheval fougueux et rapide.", + "example_sentence_english": "It's a fiery and fast horse.", + "pos": "adjective", + "word_frequency": 19392 + }, + { + "word": "fournaise", + "article_with_word": "la fournaise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furnace;inferno", + "example_sentence_native": "Il faisait une chaleur de fournaise dans le désert.", + "example_sentence_english": "It was an inferno-like heat in the desert.", + "pos": "noun", + "word_frequency": 19394 + }, + { + "word": "frêle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frail;fragile;delicate", + "example_sentence_native": "Elle avait une constitution frêle.", + "example_sentence_english": "She had a frail constitution.", + "pos": "adjective", + "word_frequency": 19397 + }, + { + "word": "fémur", + "article_with_word": "le fémur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "femur;thigh bone", + "example_sentence_native": "Le fémur est l'os le plus long du corps humain.", + "example_sentence_english": "The femur is the longest bone in the human body.", + "pos": "noun", + "word_frequency": 19399 + }, + { + "word": "gemme", + "article_with_word": "la gemme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gem", + "example_sentence_native": "Cette bague est ornée d'une magnifique gemme.", + "example_sentence_english": "This ring is adorned with a magnificent gem.", + "pos": "noun", + "word_frequency": 19405 + }, + { + "word": "genial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great;brilliant", + "example_sentence_native": "C'est une idée géniale !", + "example_sentence_english": "That's a great idea!", + "pos": "adjective", + "word_frequency": 19406 + }, + { + "word": "genie", + "article_with_word": "le génie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "genius;genie", + "example_sentence_native": "Il a un génie pour les mathématiques.", + "example_sentence_english": "He has a genius for mathematics.", + "pos": "noun", + "word_frequency": 19407 + }, + { + "word": "glander", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to laze around;to do nothing", + "example_sentence_native": "Il passe ses week-ends à glander devant la télé.", + "example_sentence_english": "He spends his weekends lazing around in front of the TV.", + "pos": "verb", + "word_frequency": 19409 + }, + { + "word": "gouvernail", + "article_with_word": "le gouvernail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudder;helm", + "example_sentence_native": "Le capitaine tenait fermement le gouvernail.", + "example_sentence_english": "The captain held the rudder firmly.", + "pos": "noun", + "word_frequency": 19410 + }, + { + "word": "gravitation", + "article_with_word": "la gravitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravitation", + "example_sentence_native": "La loi de la gravitation universelle a été formulée par Newton.", + "example_sentence_english": "The law of universal gravitation was formulated by Newton.", + "pos": "noun", + "word_frequency": 19411 + }, + { + "word": "grisaille", + "article_with_word": "la grisaille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grayness;dullness", + "example_sentence_native": "Le ciel était d'une grisaille déprimante toute la journée.", + "example_sentence_english": "The sky was a depressing grayness all day.", + "pos": "noun", + "word_frequency": 19413 + }, + { + "word": "homonyme", + "article_with_word": "un homonyme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homonym", + "example_sentence_native": "Le mot 'verre' et 'vert' sont des homonymes.", + "example_sentence_english": "The words 'verre' and 'vert' are homonyms.", + "pos": "noun", + "word_frequency": 19421 + }, + { + "word": "hoquet", + "article_with_word": "le hoquet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiccup", + "example_sentence_native": "J'ai le hoquet depuis cinq minutes.", + "example_sentence_english": "I've had the hiccups for five minutes.", + "pos": "noun", + "word_frequency": 19422 + }, + { + "word": "horizontalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontally", + "example_sentence_native": "Le tableau est accroché horizontalement.", + "example_sentence_english": "The painting is hung horizontally.", + "pos": "adverb", + "word_frequency": 19423 + }, + { + "word": "idol", + "article_with_word": "une idole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idol", + "example_sentence_native": "Elle est l'idole de millions de fans.", + "example_sentence_english": "She is the idol of millions of fans.", + "pos": "noun", + "word_frequency": 19426 + }, + { + "word": "indescriptible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indescribable", + "example_sentence_native": "La beauté du paysage était indescriptible.", + "example_sentence_english": "The beauty of the landscape was indescribable.", + "pos": "adjective", + "word_frequency": 19427 + }, + { + "word": "indie", + "article_with_word": "l'indie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indie", + "example_sentence_native": "J'écoute beaucoup de musique indie.", + "example_sentence_english": "I listen to a lot of indie music.", + "pos": "noun", + "word_frequency": 19428 + }, + { + "word": "indivisible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indivisible", + "example_sentence_native": "La République française est une et indivisible.", + "example_sentence_english": "The French Republic is one and indivisible.", + "pos": "adjective", + "word_frequency": 19429 + }, + { + "word": "inflexible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflexible", + "example_sentence_native": "Il a une volonté inflexible.", + "example_sentence_english": "He has an inflexible will.", + "pos": "adjective", + "word_frequency": 19430 + }, + { + "word": "inhibition", + "article_with_word": "l'inhibition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhibition", + "example_sentence_native": "Il souffre d'une forte inhibition sociale.", + "example_sentence_english": "He suffers from strong social inhibition.", + "pos": "noun", + "word_frequency": 19431 + }, + { + "word": "ininterrompu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uninterrupted", + "example_sentence_native": "Nous avons eu trois heures de travail ininterrompu.", + "example_sentence_english": "We had three hours of uninterrupted work.", + "pos": "adjective", + "word_frequency": 19432 + }, + { + "word": "intermittent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intermittent", + "example_sentence_native": "La pluie était intermittente toute la journée.", + "example_sentence_english": "The rain was intermittent all day.", + "pos": "adjective", + "word_frequency": 19433 + }, + { + "word": "joaillerie", + "article_with_word": "la joaillerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jewelry;jewelery making", + "example_sentence_native": "Elle travaille dans la haute joaillerie.", + "example_sentence_english": "She works in high jewelry.", + "pos": "noun", + "word_frequency": 19437 + }, + { + "word": "joute", + "article_with_word": "la joute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joust;contest", + "example_sentence_native": "Les chevaliers participaient à une joute médiévale.", + "example_sentence_english": "The knights participated in a medieval joust.", + "pos": "noun", + "word_frequency": 19439 + }, + { + "word": "jurassique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jurassic", + "example_sentence_native": "Les dinosaures vivaient à l'ère jurassique.", + "example_sentence_english": "Dinosaurs lived in the Jurassic era.", + "pos": "adjective", + "word_frequency": 19441 + }, + { + "word": "kaki", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "persimmon;khaki", + "example_sentence_native": "J'ai acheté un pantalon kaki.", + "example_sentence_english": "I bought a pair of khaki trousers.", + "pos": "noun", + "word_frequency": 19442 + }, + { + "word": "liasse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bundle;wad (of papers;notes)", + "example_sentence_native": "Il a sorti une liasse de billets de sa poche.", + "example_sentence_english": "He pulled a wad of banknotes from his pocket.", + "pos": "noun", + "word_frequency": 19446 + }, + { + "word": "lombaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lumbar", + "example_sentence_native": "Il souffre de douleurs lombaires.", + "example_sentence_english": "He suffers from lumbar pain.", + "pos": "adjective", + "word_frequency": 19449 + }, + { + "word": "luxure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lust;lechery", + "example_sentence_native": "La luxure est considérée comme l'un des sept péchés capitaux.", + "example_sentence_english": "Lust is considered one of the seven deadly sins.", + "pos": "noun", + "word_frequency": 19452 + }, + { + "word": "mairesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mayoress", + "example_sentence_native": "La mairesse a inauguré le nouveau parc.", + "example_sentence_english": "The mayoress inaugurated the new park.", + "pos": "noun", + "word_frequency": 19455 + }, + { + "word": "malicieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mischievous;playful", + "example_sentence_native": "Il a un sourire malicieux.", + "example_sentence_english": "He has a mischievous smile.", + "pos": "adjective", + "word_frequency": 19456 + }, + { + "word": "malveillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malicious;malevolent", + "example_sentence_native": "Il a été victime d'un acte malveillant.", + "example_sentence_english": "He was the victim of a malicious act.", + "pos": "adjective", + "word_frequency": 19457 + }, + { + "word": "manivelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crank;handle", + "example_sentence_native": "Tournez la manivelle pour ouvrir la fenêtre.", + "example_sentence_english": "Turn the crank to open the window.", + "pos": "noun", + "word_frequency": 19458 + }, + { + "word": "mdp", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "password (abbreviation for \"mot de passe\")", + "example_sentence_native": "N'oubliez pas votre mdp pour vous connecter.", + "example_sentence_english": "Don't forget your password to log in.", + "pos": "noun", + "word_frequency": 19465 + }, + { + "word": "mouette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seagull", + "example_sentence_native": "Les mouettes volent au-dessus de la mer.", + "example_sentence_english": "Seagulls fly over the sea.", + "pos": "noun", + "word_frequency": 19471 + }, + { + "word": "mug", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mug", + "example_sentence_native": "Je bois mon café dans un grand mug.", + "example_sentence_english": "I drink my coffee in a large mug.", + "pos": "noun", + "word_frequency": 19473 + }, + { + "word": "mythologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythological", + "example_sentence_native": "Les récits mythologiques sont fascinants.", + "example_sentence_english": "Mythological tales are fascinating.", + "pos": "adjective", + "word_frequency": 19474 + }, + { + "word": "mécréant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unbeliever;infidel", + "example_sentence_native": "Dans certains textes anciens, il est qualifié de mécréant.", + "example_sentence_english": "In some ancient texts, he is described as an unbeliever.", + "pos": "noun", + "word_frequency": 19475 + }, + { + "word": "naufragé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipwreck survivor;castaway", + "example_sentence_native": "Le naufragé a été secouru après plusieurs jours.", + "example_sentence_english": "The castaway was rescued after several days.", + "pos": "noun", + "word_frequency": 19478 + }, + { + "word": "neurologue", + "article_with_word": "le neurologue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neurologist", + "example_sentence_native": "J'ai rendez-vous avec le neurologue demain.", + "example_sentence_english": "I have an appointment with the neurologist tomorrow.", + "pos": "noun", + "word_frequency": 19481 + }, + { + "word": "nonne", + "article_with_word": "la nonne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nun", + "example_sentence_native": "La nonne portait une robe noire.", + "example_sentence_english": "The nun wore a black habit.", + "pos": "noun", + "word_frequency": 19482 + }, + { + "word": "notifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to notify", + "example_sentence_native": "Nous devons notifier les changements à tous les employés.", + "example_sentence_english": "We must notify all employees of the changes.", + "pos": "verb", + "word_frequency": 19483 + }, + { + "word": "obscurantisme", + "article_with_word": "l'obscurantisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obscurantism", + "example_sentence_native": "L'obscurantisme est un obstacle au progrès.", + "example_sentence_english": "Obscurantism is an obstacle to progress.", + "pos": "noun", + "word_frequency": 19485 + }, + { + "word": "obédience", + "article_with_word": "l'obédience", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obedience;allegiance", + "example_sentence_native": "Il a montré une obédience totale à son chef.", + "example_sentence_english": "He showed total obedience to his leader.", + "pos": "noun", + "word_frequency": 19486 + }, + { + "word": "opa", + "article_with_word": "une OPA", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "takeover bid", + "example_sentence_native": "La société a lancé une OPA sur son concurrent.", + "example_sentence_english": "The company launched a takeover bid for its competitor.", + "pos": "noun", + "word_frequency": 19488 + }, + { + "word": "paradisiaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paradisiacal;heavenly", + "example_sentence_native": "Les plages des Caraïbes sont vraiment paradisiaques.", + "example_sentence_english": "The Caribbean beaches are truly paradisiacal.", + "pos": "adjective", + "word_frequency": 19491 + }, + { + "word": "parfumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to perfume;to scent", + "example_sentence_native": "Elle aime parfumer sa maison avec des bougies.", + "example_sentence_english": "She likes to perfume her house with candles.", + "pos": "verb", + "word_frequency": 19492 + }, + { + "word": "pastille", + "article_with_word": "la pastille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lozenge;tablet", + "example_sentence_native": "J'ai pris une pastille pour la gorge.", + "example_sentence_english": "I took a lozenge for my throat.", + "pos": "noun", + "word_frequency": 19493 + }, + { + "word": "pincement", + "article_with_word": "le pincement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pinch;pang", + "example_sentence_native": "J'ai ressenti un pincement au cœur en la voyant partir.", + "example_sentence_english": "I felt a pang in my heart seeing her leave.", + "pos": "noun", + "word_frequency": 19494 + }, + { + "word": "polygone", + "article_with_word": "le polygone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polygon", + "example_sentence_native": "Un carré est un polygone à quatre côtés.", + "example_sentence_english": "A square is a four-sided polygon.", + "pos": "noun", + "word_frequency": 19497 + }, + { + "word": "profilage", + "article_with_word": "le profilage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profiling", + "example_sentence_native": "Le profilage racial est une pratique controversée.", + "example_sentence_english": "Racial profiling is a controversial practice.", + "pos": "noun", + "word_frequency": 19499 + }, + { + "word": "propulser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to propel;to launch", + "example_sentence_native": "La fusée a été propulsée dans l'espace.", + "example_sentence_english": "The rocket was propelled into space.", + "pos": "verb", + "word_frequency": 19500 + }, + { + "word": "pucelle", + "article_with_word": "la pucelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virgin;maiden", + "example_sentence_native": "Jeanne d'Arc est souvent appelée la Pucelle d'Orléans.", + "example_sentence_english": "Joan of Arc is often called the Maid of Orléans.", + "pos": "noun", + "word_frequency": 19502 + }, + { + "word": "pâque", + "article_with_word": "la Pâque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Passover", + "example_sentence_native": "La Pâque est une fête importante dans le judaïsme.", + "example_sentence_english": "Passover is an important holiday in Judaism.", + "pos": "noun", + "word_frequency": 19503 + }, + { + "word": "pétillant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparkling;bubbly", + "example_sentence_native": "J'aime les vins pétillants.", + "example_sentence_english": "I like sparkling wines.", + "pos": "adjective", + "word_frequency": 19504 + }, + { + "word": "raider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raid;to plunder", + "example_sentence_native": "Les pirates ont raider le navire.", + "example_sentence_english": "The pirates raided the ship.", + "pos": "verb", + "word_frequency": 19506 + }, + { + "word": "rapace", + "article_with_word": "le rapace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bird of prey;raptor", + "example_sentence_native": "L'aigle est un rapace majestueux.", + "example_sentence_english": "The eagle is a majestic bird of prey.", + "pos": "noun", + "word_frequency": 19507 + }, + { + "word": "raton", + "article_with_word": "le raton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raccoon", + "example_sentence_native": "Le raton laveur est un animal nocturne.", + "example_sentence_english": "The raccoon is a nocturnal animal.", + "pos": "noun", + "word_frequency": 19508 + }, + { + "word": "reclassement", + "article_with_word": "le reclassement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reclassification;redeployment", + "example_sentence_native": "L'entreprise propose un plan de reclassement pour les employés licenciés.", + "example_sentence_english": "The company offers a redeployment plan for laid-off employees.", + "pos": "noun", + "word_frequency": 19509 + }, + { + "word": "recopier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to copy (by hand);to transcribe", + "example_sentence_native": "Il a dû recopier toutes ses notes.", + "example_sentence_english": "He had to copy all his notes.", + "pos": "verb", + "word_frequency": 19510 + }, + { + "word": "retravailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rework;to revise", + "example_sentence_native": "Je dois retravailler ce rapport avant de le soumettre.", + "example_sentence_english": "I need to rework this report before submitting it.", + "pos": "verb", + "word_frequency": 19512 + }, + { + "word": "rudimentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudimentary;basic", + "example_sentence_native": "Ses connaissances en informatique sont encore rudimentaires.", + "example_sentence_english": "His computer knowledge is still rudimentary.", + "pos": "adjective", + "word_frequency": 19519 + }, + { + "word": "rugueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough;coarse", + "example_sentence_native": "La surface de cette pierre est très rugueuse.", + "example_sentence_english": "The surface of this stone is very rough.", + "pos": "adjective", + "word_frequency": 19521 + }, + { + "word": "régente", + "article_with_word": "la régente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regent (female)", + "example_sentence_native": "La reine mère a agi comme régente pendant la minorité de son fils.", + "example_sentence_english": "The queen mother acted as regent during her son's minority.", + "pos": "noun", + "word_frequency": 19524 + }, + { + "word": "réjouissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delightful;joyful", + "example_sentence_native": "C'est une nouvelle très réjouissante.", + "example_sentence_english": "This is very delightful news.", + "pos": "adjective", + "word_frequency": 19525 + }, + { + "word": "résurgence", + "article_with_word": "la résurgence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resurgence;reappearance", + "example_sentence_native": "On observe une résurgence de l'intérêt pour les vinyles.", + "example_sentence_english": "There is a resurgence of interest in vinyl records.", + "pos": "noun", + "word_frequency": 19526 + }, + { + "word": "rétorquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retort;to snap back", + "example_sentence_native": "Il n'a pas hésité à rétorquer à l'accusation.", + "example_sentence_english": "He did not hesitate to retort to the accusation.", + "pos": "verb", + "word_frequency": 19527 + }, + { + "word": "rétracter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retract;to withdraw", + "example_sentence_native": "L'entreprise a dû rétracter son offre.", + "example_sentence_english": "The company had to retract its offer.", + "pos": "verb", + "word_frequency": 19528 + }, + { + "word": "rétribution", + "article_with_word": "la rétribution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remuneration;payment", + "example_sentence_native": "La rétribution pour ce travail est très juste.", + "example_sentence_english": "The remuneration for this work is very fair.", + "pos": "noun", + "word_frequency": 19529 + }, + { + "word": "réutilisation", + "article_with_word": "la réutilisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reuse;recycling", + "example_sentence_native": "La réutilisation des matériaux est essentielle pour l'environnement.", + "example_sentence_english": "The reuse of materials is essential for the environment.", + "pos": "noun", + "word_frequency": 19530 + }, + { + "word": "rééquilibrage", + "article_with_word": "le rééquilibrage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rebalancing;readjustment", + "example_sentence_native": "Un rééquilibrage budgétaire est nécessaire.", + "example_sentence_english": "A budgetary rebalancing is necessary.", + "pos": "noun", + "word_frequency": 19531 + }, + { + "word": "sabbatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sabbatical", + "example_sentence_native": "Elle a pris une année sabbatique pour voyager.", + "example_sentence_english": "She took a sabbatical year to travel.", + "pos": "adjective", + "word_frequency": 19532 + }, + { + "word": "saline", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saline;salty", + "example_sentence_native": "L'eau de mer est une solution saline.", + "example_sentence_english": "Seawater is a saline solution.", + "pos": "adjective", + "word_frequency": 19533 + }, + { + "word": "salin", + "article_with_word": "le salin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salt marsh;saltworks", + "example_sentence_native": "Les salins de Camargue sont célèbres.", + "example_sentence_english": "The salt marshes of Camargue are famous.", + "pos": "noun", + "word_frequency": 19534 + }, + { + "word": "seconder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to second;to assist", + "example_sentence_native": "Il a été choisi pour seconder le directeur.", + "example_sentence_english": "He was chosen to second the director.", + "pos": "verb", + "word_frequency": 19538 + }, + { + "word": "sigma", + "article_with_word": "le sigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sigma", + "example_sentence_native": "Le sigma est la dix-huitième lettre de l'alphabet grec.", + "example_sentence_english": "Sigma is the eighteenth letter of the Greek alphabet.", + "pos": "noun", + "word_frequency": 19542 + }, + { + "word": "sinistré", + "article_with_word": "un sinistré", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disaster victim;affected person", + "example_sentence_native": "Les sinistrés ont reçu de l'aide humanitaire.", + "example_sentence_english": "The disaster victims received humanitarian aid.", + "pos": "noun", + "word_frequency": 19544 + }, + { + "word": "soupape", + "article_with_word": "la soupape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valve", + "example_sentence_native": "La soupape de sécurité s'est ouverte.", + "example_sentence_english": "The safety valve opened.", + "pos": "noun", + "word_frequency": 19547 + }, + { + "word": "steppe", + "article_with_word": "la steppe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steppe", + "example_sentence_native": "Les vastes steppes d'Asie centrale.", + "example_sentence_english": "The vast steppes of Central Asia.", + "pos": "noun", + "word_frequency": 19549 + }, + { + "word": "stupéfaction", + "article_with_word": "la stupéfaction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stupefaction;astonishment", + "example_sentence_native": "Il a regardé la scène avec stupéfaction.", + "example_sentence_english": "He watched the scene with stupefaction.", + "pos": "noun", + "word_frequency": 19550 + }, + { + "word": "subordination", + "article_with_word": "la subordination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subordination", + "example_sentence_native": "La subordination hiérarchique est claire dans cette entreprise.", + "example_sentence_english": "Hierarchical subordination is clear in this company.", + "pos": "noun", + "word_frequency": 19551 + }, + { + "word": "surdoué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gifted;highly intelligent", + "example_sentence_native": "Cet enfant est surdoué en mathématiques.", + "example_sentence_english": "This child is gifted in mathematics.", + "pos": "adjective", + "word_frequency": 19553 + }, + { + "word": "survoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fly over;to skim (a text)", + "example_sentence_native": "L'avion a survolé la ville.", + "example_sentence_english": "The plane flew over the city.", + "pos": "verb", + "word_frequency": 19554 + }, + { + "word": "sédentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sedentary", + "example_sentence_native": "Un mode de vie sédentaire est mauvais pour la santé.", + "example_sentence_english": "A sedentary lifestyle is bad for health.", + "pos": "adjective", + "word_frequency": 19555 + }, + { + "word": "sépulcre", + "article_with_word": "le sépulcre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sepulchre;tomb", + "example_sentence_native": "Le sépulcre était creusé dans la roche.", + "example_sentence_english": "The sepulchre was carved into the rock.", + "pos": "noun", + "word_frequency": 19557 + }, + { + "word": "taquet", + "article_with_word": "le taquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cleat;peg;(idiom) full throttle", + "example_sentence_native": "Il faut mettre le taquet pour finir à temps.", + "example_sentence_english": "We need to go full throttle to finish on time.", + "pos": "noun", + "word_frequency": 19559 + }, + { + "word": "tyrannique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyrannical", + "example_sentence_native": "Le régime était tyrannique et opprimait le peuple.", + "example_sentence_english": "The regime was tyrannical and oppressed the people.", + "pos": "adjective", + "word_frequency": 19566 + }, + { + "word": "upload", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upload", + "example_sentence_native": "L'upload du fichier prendra quelques minutes.", + "example_sentence_english": "The upload of the file will take a few minutes.", + "pos": "noun", + "word_frequency": 19568 + }, + { + "word": "usuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usual;customary", + "example_sentence_native": "C'est la procédure usuelle pour ce type de demande.", + "example_sentence_english": "This is the usual procedure for this type of request.", + "pos": "adjective", + "word_frequency": 19569 + }, + { + "word": "vaginal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vaginal", + "example_sentence_native": "L'examen vaginal est une partie de la consultation gynécologique.", + "example_sentence_english": "The vaginal examination is part of the gynecological consultation.", + "pos": "adjective", + "word_frequency": 19570 + }, + { + "word": "vengeur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avenging;vengeful", + "example_sentence_native": "Il avait un regard vengeur après l'injustice subie.", + "example_sentence_english": "He had an avenging look after the injustice suffered.", + "pos": "adjective", + "word_frequency": 19571 + }, + { + "word": "verrerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glassworks;glassware", + "example_sentence_native": "La verrerie de Murano est célèbre dans le monde entier.", + "example_sentence_english": "Murano glassware is famous worldwide.", + "pos": "noun", + "word_frequency": 19573 + }, + { + "word": "émanation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emanation;outflow", + "example_sentence_native": "L'émanation de gaz toxiques est dangereuse pour la santé.", + "example_sentence_english": "The emanation of toxic gases is dangerous for health.", + "pos": "noun", + "word_frequency": 19582 + }, + { + "word": "époustouflant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breathtaking;astounding", + "example_sentence_native": "Le spectacle était absolument époustouflant.", + "example_sentence_english": "The show was absolutely breathtaking.", + "pos": "adjective", + "word_frequency": 19583 + }, + { + "word": "épître", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epistle;letter", + "example_sentence_native": "Les épîtres de Saint Paul sont des textes importants.", + "example_sentence_english": "The epistles of Saint Paul are important texts.", + "pos": "noun", + "word_frequency": 19584 + }, + { + "word": "œcuménique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecumenical", + "example_sentence_native": "Le dialogue œcuménique vise à l'unité des chrétiens.", + "example_sentence_english": "Ecumenical dialogue aims at Christian unity.", + "pos": "adjective", + "word_frequency": 19585 + }, + { + "word": "acajou", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mahogany", + "example_sentence_native": "La table est faite en bois d'acajou.", + "example_sentence_english": "The table is made of mahogany wood.", + "pos": "noun", + "word_frequency": 19586 + }, + { + "word": "accompagnateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escort;companion;accompanist", + "example_sentence_native": "L'accompagnateur de montagne nous a guidés sur le sentier.", + "example_sentence_english": "The mountain guide accompanied us on the trail.", + "pos": "noun", + "word_frequency": 19587 + }, + { + "word": "addictif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addictive", + "example_sentence_native": "Ce jeu vidéo est très addictif.", + "example_sentence_english": "This video game is very addictive.", + "pos": "adjective", + "word_frequency": 19588 + }, + { + "word": "affreusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awfully;dreadfully", + "example_sentence_native": "Il faisait affreusement froid dehors.", + "example_sentence_english": "It was awfully cold outside.", + "pos": "adverb", + "word_frequency": 19589 + }, + { + "word": "agripper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grip;to seize", + "example_sentence_native": "Le singe s'est agrippé à la branche.", + "example_sentence_english": "The monkey gripped the branch.", + "pos": "verb", + "word_frequency": 19590 + }, + { + "word": "aigre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sour;tart;shrill", + "example_sentence_native": "Le citron a un goût aigre.", + "example_sentence_english": "Lemon has a sour taste.", + "pos": "adjective", + "word_frequency": 19591 + }, + { + "word": "alouette", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lark", + "example_sentence_native": "L'alouette chante au lever du soleil.", + "example_sentence_english": "The lark sings at sunrise.", + "pos": "noun", + "word_frequency": 19592 + }, + { + "word": "alpinisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountaineering;alpinism", + "example_sentence_native": "L'alpinisme est un sport exigeant.", + "example_sentence_english": "Mountaineering is a demanding sport.", + "pos": "noun", + "word_frequency": 19593 + }, + { + "word": "altruiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altruistic", + "example_sentence_native": "Elle est très altruiste et aide toujours les autres.", + "example_sentence_english": "She is very altruistic and always helps others.", + "pos": "adjective", + "word_frequency": 19594 + }, + { + "word": "antivirus", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antivirus", + "example_sentence_native": "Il est important d'installer un bon antivirus sur son ordinateur.", + "example_sentence_english": "It is important to install a good antivirus on your computer.", + "pos": "noun", + "word_frequency": 19598 + }, + { + "word": "apparat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pomp;display;regalia", + "example_sentence_native": "La cérémonie s'est déroulée avec beaucoup d'apparat.", + "example_sentence_english": "The ceremony took place with great pomp.", + "pos": "noun", + "word_frequency": 19599 + }, + { + "word": "appareillage", + "article_with_word": "l'appareillage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipment", + "example_sentence_native": "L'appareillage médical est très sophistiqué.", + "example_sentence_english": "The medical equipment is very sophisticated.", + "pos": "noun", + "word_frequency": 19600 + }, + { + "word": "arabique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arabic", + "example_sentence_native": "La gomme arabique est utilisée en confiserie.", + "example_sentence_english": "Gum arabic is used in confectionery.", + "pos": "adjective", + "word_frequency": 19601 + }, + { + "word": "asperge", + "article_with_word": "l'asperge", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "asparagus", + "example_sentence_native": "J'adore les asperges vertes au printemps.", + "example_sentence_english": "I love green asparagus in spring.", + "pos": "noun", + "word_frequency": 19603 + }, + { + "word": "attelle", + "article_with_word": "une attelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splint", + "example_sentence_native": "Il a dû porter une attelle après sa blessure.", + "example_sentence_english": "He had to wear a splint after his injury.", + "pos": "noun", + "word_frequency": 19606 + }, + { + "word": "axiome", + "article_with_word": "un axiome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "axiom", + "example_sentence_native": "C'est un axiome fondamental en mathématiques.", + "example_sentence_english": "It's a fundamental axiom in mathematics.", + "pos": "noun", + "word_frequency": 19608 + }, + { + "word": "aérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to air out", + "example_sentence_native": "Il faut aérer la pièce tous les jours.", + "example_sentence_english": "You have to air out the room every day.", + "pos": "verb", + "word_frequency": 19610 + }, + { + "word": "banditisme", + "article_with_word": "le banditisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banditry", + "example_sentence_native": "Le gouvernement lutte contre le banditisme organisé.", + "example_sentence_english": "The government fights against organized banditry.", + "pos": "noun", + "word_frequency": 19612 + }, + { + "word": "bavarder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chat", + "example_sentence_native": "Elles aiment bavarder pendant des heures.", + "example_sentence_english": "They like to chat for hours.", + "pos": "verb", + "word_frequency": 19616 + }, + { + "word": "bergerie", + "article_with_word": "une bergerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheepfold", + "example_sentence_native": "Les moutons rentrent à la bergerie le soir.", + "example_sentence_english": "The sheep return to the sheepfold in the evening.", + "pos": "noun", + "word_frequency": 19617 + }, + { + "word": "bmx", + "article_with_word": "un BMX", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "BMX", + "example_sentence_native": "Il fait du BMX dans le parc.", + "example_sentence_english": "He rides BMX in the park.", + "pos": "noun", + "word_frequency": 19621 + }, + { + "word": "bossu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hunchbacked", + "example_sentence_native": "Le personnage du roman était un homme bossu.", + "example_sentence_english": "The character in the novel was a hunchbacked man.", + "pos": "adjective", + "word_frequency": 19623 + }, + { + "word": "bouille", + "article_with_word": "une bouille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "face", + "example_sentence_native": "Quelque chose dans sa bouille me fait rire.", + "example_sentence_english": "Something about his face makes me laugh.", + "pos": "noun", + "word_frequency": 19624 + }, + { + "word": "broder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embroider", + "example_sentence_native": "Ma grand-mère aime broder des motifs sur les tissus.", + "example_sentence_english": "My grandmother likes to embroider patterns on fabrics.", + "pos": "verb", + "word_frequency": 19628 + }, + { + "word": "brome", + "article_with_word": "le brome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bromine", + "example_sentence_native": "Le brome est un élément chimique halogène.", + "example_sentence_english": "Bromine is a halogen chemical element.", + "pos": "noun", + "word_frequency": 19629 + }, + { + "word": "caméraman", + "article_with_word": "le caméraman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cameraman", + "example_sentence_native": "Le caméraman a filmé toute la scène.", + "example_sentence_english": "The cameraman filmed the entire scene.", + "pos": "noun", + "word_frequency": 19631 + }, + { + "word": "canonisation", + "article_with_word": "la canonisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canonization", + "example_sentence_native": "La canonisation du nouveau saint a eu lieu au Vatican.", + "example_sentence_english": "The canonization of the new saint took place at the Vatican.", + "pos": "noun", + "word_frequency": 19632 + }, + { + "word": "cataclysme", + "article_with_word": "un cataclysme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cataclysm", + "example_sentence_native": "Le tremblement de terre a provoqué un véritable cataclysme.", + "example_sentence_english": "The earthquake caused a real cataclysm.", + "pos": "noun", + "word_frequency": 19634 + }, + { + "word": "cerisier", + "article_with_word": "un cerisier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cherry tree", + "example_sentence_native": "Le cerisier est en fleurs au printemps.", + "example_sentence_english": "The cherry tree is in bloom in spring.", + "pos": "noun", + "word_frequency": 19636 + }, + { + "word": "cheffe", + "article_with_word": "la cheffe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female chief;boss", + "example_sentence_native": "La cheffe de projet a présenté les résultats.", + "example_sentence_english": "The project manager (female) presented the results.", + "pos": "noun", + "word_frequency": 19638 + }, + { + "word": "chiffrage", + "article_with_word": "le chiffrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "costing", + "example_sentence_native": "Le chiffrage du projet est en cours.", + "example_sentence_english": "The costing of the project is underway.", + "pos": "noun", + "word_frequency": 19639 + }, + { + "word": "cinquantenaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiftieth anniversary", + "example_sentence_native": "L'entreprise célèbre son cinquantenaire cette année.", + "example_sentence_english": "The company is celebrating its fiftieth anniversary this year.", + "pos": "noun", + "word_frequency": 19640 + }, + { + "word": "clairvoyance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clairvoyance", + "example_sentence_native": "Sa clairvoyance l'a aidé à prendre la bonne décision.", + "example_sentence_english": "His clairvoyance helped him make the right decision.", + "pos": "noun", + "word_frequency": 19642 + }, + { + "word": "claquette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flip-flop", + "example_sentence_native": "J'ai acheté une nouvelle paire de claquettes pour la plage.", + "example_sentence_english": "I bought a new pair of flip-flops for the beach.", + "pos": "noun", + "word_frequency": 19643 + }, + { + "word": "classeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "binder", + "example_sentence_native": "Range tes documents dans le classeur.", + "example_sentence_english": "Put your documents in the binder.", + "pos": "noun", + "word_frequency": 19644 + }, + { + "word": "clavecin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harpsichord", + "example_sentence_native": "Le clavecin est un instrument de musique ancien.", + "example_sentence_english": "The harpsichord is an ancient musical instrument.", + "pos": "noun", + "word_frequency": 19645 + }, + { + "word": "clochette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small bell", + "example_sentence_native": "Le chat porte une clochette à son collier.", + "example_sentence_english": "The cat wears a small bell on its collar.", + "pos": "noun", + "word_frequency": 19646 + }, + { + "word": "commanditer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sponsor", + "example_sentence_native": "L'entreprise a décidé de commanditer le festival de musique.", + "example_sentence_english": "The company decided to sponsor the music festival.", + "pos": "verb", + "word_frequency": 19647 + }, + { + "word": "conciliant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conciliatory", + "example_sentence_native": "Il est toujours très conciliant et cherche le compromis.", + "example_sentence_english": "He is always very conciliatory and seeks compromise.", + "pos": "adjective", + "word_frequency": 19648 + }, + { + "word": "concis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concise", + "example_sentence_native": "Son discours était bref et concis.", + "example_sentence_english": "His speech was brief and concise.", + "pos": "adjective", + "word_frequency": 19649 + }, + { + "word": "constipation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constipation", + "example_sentence_native": "La constipation peut être un effet secondaire de certains médicaments.", + "example_sentence_english": "Constipation can be a side effect of some medications.", + "pos": "noun", + "word_frequency": 19650 + }, + { + "word": "coursier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courier", + "example_sentence_native": "Le coursier a livré le colis ce matin.", + "example_sentence_english": "The courier delivered the package this morning.", + "pos": "noun", + "word_frequency": 19654 + }, + { + "word": "dague", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dagger", + "example_sentence_native": "Il portait une dague à sa ceinture.", + "example_sentence_english": "He wore a dagger at his belt.", + "pos": "noun", + "word_frequency": 19656 + }, + { + "word": "diction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diction", + "example_sentence_native": "Son excellente diction rend ses discours très clairs.", + "example_sentence_english": "His excellent diction makes his speeches very clear.", + "pos": "noun", + "word_frequency": 19661 + }, + { + "word": "dispendieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expensive", + "example_sentence_native": "L'achat de cette voiture était très dispendieux.", + "example_sentence_english": "The purchase of this car was very expensive.", + "pos": "adjective", + "word_frequency": 19662 + }, + { + "word": "dispos", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "available (informal)", + "example_sentence_native": "Je suis dispos pour t'aider cet après-midi.", + "example_sentence_english": "I'm available to help you this afternoon.", + "pos": "adjective", + "word_frequency": 19663 + }, + { + "word": "disséminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disseminate", + "example_sentence_native": "Les graines se sont disséminées avec le vent.", + "example_sentence_english": "The seeds scattered with the wind.", + "pos": "verb", + "word_frequency": 19664 + }, + { + "word": "dominion", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dominion", + "example_sentence_native": "Le pays a retrouvé son dominion après des années de colonisation.", + "example_sentence_english": "The country regained its dominion after years of colonization.", + "pos": "noun", + "word_frequency": 19666 + }, + { + "word": "dompter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tame", + "example_sentence_native": "Il a réussi à dompter le cheval sauvage.", + "example_sentence_english": "He managed to tame the wild horse.", + "pos": "verb", + "word_frequency": 19667 + }, + { + "word": "droiture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrity", + "example_sentence_native": "Il est connu pour sa droiture et son honnêteté.", + "example_sentence_english": "He is known for his integrity and honesty.", + "pos": "noun", + "word_frequency": 19669 + }, + { + "word": "décroissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decreasing", + "example_sentence_native": "Le nombre d'inscriptions est en décroissant.", + "example_sentence_english": "The number of registrations is decreasing.", + "pos": "adjective", + "word_frequency": 19673 + }, + { + "word": "démettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dislocate", + "example_sentence_native": "Il s'est démis l'épaule en tombant.", + "example_sentence_english": "He dislocated his shoulder when he fell.", + "pos": "verb", + "word_frequency": 19675 + }, + { + "word": "désertique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desert-like", + "example_sentence_native": "Le paysage était aride et désertique.", + "example_sentence_english": "The landscape was arid and desert-like.", + "pos": "adjective", + "word_frequency": 19676 + }, + { + "word": "embranchement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "junction", + "example_sentence_native": "Prenez l'embranchement à droite.", + "example_sentence_english": "Take the right junction.", + "pos": "noun", + "word_frequency": 19678 + }, + { + "word": "empêchement", + "article_with_word": "un empêchement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hindrance", + "example_sentence_native": "J'ai eu un empêchement de dernière minute.", + "example_sentence_english": "I had a last-minute hindrance.", + "pos": "noun", + "word_frequency": 19680 + }, + { + "word": "enchainer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to chain;to link", + "example_sentence_native": "Il a enchaîné les victoires.", + "example_sentence_english": "He chained victories (He had a string of victories).", + "pos": "verb", + "word_frequency": 19681 + }, + { + "word": "encyclopédique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encyclopedic", + "example_sentence_native": "Ses connaissances sont encyclopédiques.", + "example_sentence_english": "His knowledge is encyclopedic.", + "pos": "adjective", + "word_frequency": 19682 + }, + { + "word": "exaltation", + "article_with_word": "l'exaltation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exaltation;excitement", + "example_sentence_native": "Il y avait une grande exaltation dans la foule.", + "example_sentence_english": "There was great exaltation in the crowd.", + "pos": "noun", + "word_frequency": 19684 + }, + { + "word": "explicatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explanatory", + "example_sentence_native": "Il a fourni un document explicatif.", + "example_sentence_english": "He provided an explanatory document.", + "pos": "adjective", + "word_frequency": 19685 + }, + { + "word": "exégèse", + "article_with_word": "l'exégèse", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "exegesis;interpretation", + "example_sentence_native": "L'exégèse de ce texte est complexe.", + "example_sentence_english": "The exegesis of this text is complex.", + "pos": "noun", + "word_frequency": 19686 + }, + { + "word": "fatidique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fateful", + "example_sentence_native": "Ce fut le jour fatidique.", + "example_sentence_english": "It was the fateful day.", + "pos": "adjective", + "word_frequency": 19688 + }, + { + "word": "flambant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blazing;brand new (in 'flambant neuf')", + "example_sentence_native": "Il a acheté une voiture flambant neuve.", + "example_sentence_english": "He bought a brand new car.", + "pos": "adjective", + "word_frequency": 19689 + }, + { + "word": "flashback", + "article_with_word": "un flashback", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flashback", + "example_sentence_native": "Le film contient de nombreux flashbacks.", + "example_sentence_english": "The film contains many flashbacks.", + "pos": "noun", + "word_frequency": 19690 + }, + { + "word": "focale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "focal", + "example_sentence_native": "La distance focale de l'objectif est importante.", + "example_sentence_english": "The focal length of the lens is important.", + "pos": "adjective", + "word_frequency": 19691 + }, + { + "word": "froc", + "article_with_word": "le froc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "habit (monk's);trousers (slang)", + "example_sentence_native": "Le moine portait son froc.", + "example_sentence_english": "The monk wore his habit.", + "pos": "noun", + "word_frequency": 19692 + }, + { + "word": "froment", + "article_with_word": "le froment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wheat (common wheat)", + "example_sentence_native": "Le pain est fait à partir de froment.", + "example_sentence_english": "Bread is made from wheat.", + "pos": "noun", + "word_frequency": 19693 + }, + { + "word": "fustiger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to castigate;to lambaste", + "example_sentence_native": "Le critique a fustigé la pièce.", + "example_sentence_english": "The critic castigated the play.", + "pos": "verb", + "word_frequency": 19694 + }, + { + "word": "galon", + "article_with_word": "le galon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stripe;braid;rank (military)", + "example_sentence_native": "Il a un galon de sergent.", + "example_sentence_english": "He has a sergeant's stripe.", + "pos": "noun", + "word_frequency": 19695 + }, + { + "word": "gisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recumbent;lying (especially for a statue)", + "example_sentence_native": "On a découvert une statue gisante.", + "example_sentence_english": "A recumbent statue was discovered.", + "pos": "adjective", + "word_frequency": 19699 + }, + { + "word": "hermine", + "article_with_word": "l'hermine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ermine", + "example_sentence_native": "L'hermine a un pelage blanc en hiver.", + "example_sentence_english": "The ermine has white fur in winter.", + "pos": "noun", + "word_frequency": 19709 + }, + { + "word": "hologramme", + "article_with_word": "un hologramme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hologram", + "example_sentence_native": "On a vu un hologramme de l'artiste.", + "example_sentence_english": "We saw a hologram of the artist.", + "pos": "noun", + "word_frequency": 19711 + }, + { + "word": "hormonal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hormonal", + "example_sentence_native": "Il a un déséquilibre hormonal.", + "example_sentence_english": "He has a hormonal imbalance.", + "pos": "adjective", + "word_frequency": 19712 + }, + { + "word": "hydrate", + "article_with_word": "un hydrate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydrate", + "example_sentence_native": "L'hydrate de carbone est essentiel.", + "example_sentence_english": "Carbohydrate is essential.", + "pos": "noun", + "word_frequency": 19714 + }, + { + "word": "hémoglobine", + "article_with_word": "l'hémoglobine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemoglobin", + "example_sentence_native": "L'hémoglobine transporte l'oxygène dans le sang.", + "example_sentence_english": "Hemoglobin transports oxygen in the blood.", + "pos": "noun", + "word_frequency": 19715 + }, + { + "word": "idyllique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idyllic", + "example_sentence_native": "Ils ont passé des vacances idylliques.", + "example_sentence_english": "They spent an idyllic vacation.", + "pos": "adjective", + "word_frequency": 19716 + }, + { + "word": "imaginable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginable", + "example_sentence_native": "C'est la meilleure solution imaginable.", + "example_sentence_english": "It's the best imaginable solution.", + "pos": "adjective", + "word_frequency": 19718 + }, + { + "word": "immanquablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unfailingly;inevitably", + "example_sentence_native": "Il arrive immanquablement en retard.", + "example_sentence_english": "He unfailingly arrives late.", + "pos": "adverb", + "word_frequency": 19719 + }, + { + "word": "imparable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unstoppable;unassailable", + "example_sentence_native": "Son argument était imparable.", + "example_sentence_english": "His argument was unassailable.", + "pos": "adjective", + "word_frequency": 19720 + }, + { + "word": "impatiemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impatiently", + "example_sentence_native": "Il attendait impatiemment les résultats.", + "example_sentence_english": "He was impatiently waiting for the results.", + "pos": "adverb", + "word_frequency": 19721 + }, + { + "word": "imperial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperial", + "example_sentence_native": "Le palais impérial est magnifique.", + "example_sentence_english": "The imperial palace is magnificent.", + "pos": "adjective", + "word_frequency": 19722 + }, + { + "word": "impoli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "impolite;rude", + "example_sentence_native": "C'est impoli de parler la bouche pleine.", + "example_sentence_english": "It's impolite to talk with your mouth full.", + "pos": "adjective", + "word_frequency": 19723 + }, + { + "word": "imprudence", + "article_with_word": "l'imprudence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprudence;carelessness", + "example_sentence_native": "Son imprudence a causé l'accident.", + "example_sentence_english": "His carelessness caused the accident.", + "pos": "noun", + "word_frequency": 19724 + }, + { + "word": "incontesté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undisputed;unchallenged", + "example_sentence_native": "Il est le champion incontesté de la catégorie.", + "example_sentence_english": "He is the undisputed champion of the category.", + "pos": "adjective", + "word_frequency": 19725 + }, + { + "word": "inculquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instill;to inculcate", + "example_sentence_native": "Les parents doivent inculquer de bonnes valeurs à leurs enfants.", + "example_sentence_english": "Parents must instill good values in their children.", + "pos": "verb", + "word_frequency": 19726 + }, + { + "word": "indisponibilité", + "article_with_word": "l'indisponibilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unavailability", + "example_sentence_native": "Nous regrettons l'indisponibilité de ce produit.", + "example_sentence_english": "We regret the unavailability of this product.", + "pos": "noun", + "word_frequency": 19727 + }, + { + "word": "inexorablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexorably;relentlessly", + "example_sentence_native": "Le temps passe inexorablement.", + "example_sentence_english": "Time passes inexorably.", + "pos": "adverb", + "word_frequency": 19728 + }, + { + "word": "inhalation", + "article_with_word": "l'inhalation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhalation", + "example_sentence_native": "L'inhalation de fumée est dangereuse.", + "example_sentence_english": "Smoke inhalation is dangerous.", + "pos": "noun", + "word_frequency": 19729 + }, + { + "word": "insatisfaction", + "article_with_word": "l'insatisfaction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissatisfaction", + "example_sentence_native": "Il a exprimé son insatisfaction face au service.", + "example_sentence_english": "He expressed his dissatisfaction with the service.", + "pos": "noun", + "word_frequency": 19730 + }, + { + "word": "interconnexion", + "article_with_word": "l'interconnexion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interconnection", + "example_sentence_native": "L'interconnexion des réseaux est essentielle.", + "example_sentence_english": "Network interconnection is essential.", + "pos": "noun", + "word_frequency": 19731 + }, + { + "word": "interim", + "article_with_word": "l'intérim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interim;temporary work", + "example_sentence_native": "Elle travaille en intérim depuis un mois.", + "example_sentence_english": "She has been working on an interim basis for a month.", + "pos": "noun", + "word_frequency": 19732 + }, + { + "word": "internationalisation", + "article_with_word": "l'internationalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internationalization", + "example_sentence_native": "L'internationalisation des marchés est une tendance forte.", + "example_sentence_english": "The internationalization of markets is a strong trend.", + "pos": "noun", + "word_frequency": 19733 + }, + { + "word": "inutilisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusable", + "example_sentence_native": "Le document est endommagé et inutilisable.", + "example_sentence_english": "The document is damaged and unusable.", + "pos": "adjective", + "word_frequency": 19734 + }, + { + "word": "ivrogne", + "article_with_word": "l'ivrogne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkard", + "example_sentence_native": "L'ivrogne titubait dans la rue.", + "example_sentence_english": "The drunkard staggered down the street.", + "pos": "noun", + "word_frequency": 19736 + }, + { + "word": "jaunâtre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yellowish", + "example_sentence_native": "La vieille photo avait une teinte jaunâtre.", + "example_sentence_english": "The old photo had a yellowish tint.", + "pos": "adjective", + "word_frequency": 19737 + }, + { + "word": "kérosène", + "article_with_word": "le kérosène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kerosene;jet fuel", + "example_sentence_native": "Les avions utilisent du kérosène comme carburant.", + "example_sentence_english": "Airplanes use kerosene as fuel.", + "pos": "noun", + "word_frequency": 19744 + }, + { + "word": "lettré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literate;educated;scholarly", + "example_sentence_native": "C'est une personne très lettrée.", + "example_sentence_english": "She is a very educated person.", + "pos": "adjective", + "word_frequency": 19748 + }, + { + "word": "lierre", + "article_with_word": "le lierre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ivy", + "example_sentence_native": "Le mur était couvert de lierre.", + "example_sentence_english": "The wall was covered with ivy.", + "pos": "noun", + "word_frequency": 19749 + }, + { + "word": "limbe", + "article_with_word": "le limbe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "limb (of a celestial body);limbo (theological)", + "example_sentence_native": "Le soleil disparaissait derrière le limbe de la Terre.", + "example_sentence_english": "The sun was disappearing behind the limb of the Earth.", + "pos": "noun", + "word_frequency": 19750 + }, + { + "word": "liseuse", + "article_with_word": "la liseuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "e-reader;reading lamp", + "example_sentence_native": "J'ai acheté une nouvelle liseuse pour mes vacances.", + "example_sentence_english": "I bought a new e-reader for my vacation.", + "pos": "noun", + "word_frequency": 19751 + }, + { + "word": "litigieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "litigious;disputed;contentious", + "example_sentence_native": "C'est un point litigieux dans le contrat.", + "example_sentence_english": "This is a contentious point in the contract.", + "pos": "adjective", + "word_frequency": 19752 + }, + { + "word": "loutre", + "article_with_word": "la loutre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "otter", + "example_sentence_native": "La loutre est un animal aquatique.", + "example_sentence_english": "The otter is an aquatic animal.", + "pos": "noun", + "word_frequency": 19756 + }, + { + "word": "lugubre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy;dismal;mournful", + "example_sentence_native": "L'ambiance était lugubre dans la vieille maison.", + "example_sentence_english": "The atmosphere was gloomy in the old house.", + "pos": "adjective", + "word_frequency": 19758 + }, + { + "word": "magenta", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magenta", + "example_sentence_native": "Le magenta est une couleur vive.", + "example_sentence_english": "Magenta is a bright color.", + "pos": "noun", + "word_frequency": 19760 + }, + { + "word": "maillet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mallet", + "example_sentence_native": "Il a utilisé un maillet pour enfoncer le piquet.", + "example_sentence_english": "He used a mallet to drive in the stake.", + "pos": "noun", + "word_frequency": 19761 + }, + { + "word": "malformation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malformation", + "example_sentence_native": "Le bébé est né avec une malformation cardiaque.", + "example_sentence_english": "The baby was born with a heart malformation.", + "pos": "noun", + "word_frequency": 19763 + }, + { + "word": "manchot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penguin", + "example_sentence_native": "Le manchot est un oiseau qui ne vole pas.", + "example_sentence_english": "The penguin is a bird that does not fly.", + "pos": "noun", + "word_frequency": 19764 + }, + { + "word": "mesquin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petty;mean", + "example_sentence_native": "Son comportement était vraiment mesquin.", + "example_sentence_english": "His behavior was truly petty.", + "pos": "adjective", + "word_frequency": 19766 + }, + { + "word": "minibus", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minibus", + "example_sentence_native": "Nous avons loué un minibus pour le voyage.", + "example_sentence_english": "We rented a minibus for the trip.", + "pos": "noun", + "word_frequency": 19768 + }, + { + "word": "minus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tiny;minuscule (informal)", + "example_sentence_native": "C'est un tout petit minus.", + "example_sentence_english": "It's a tiny little thing.", + "pos": "adjective", + "word_frequency": 19769 + }, + { + "word": "moineau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparrow", + "example_sentence_native": "Un moineau s'est posé sur le rebord de la fenêtre.", + "example_sentence_english": "A sparrow landed on the windowsill.", + "pos": "noun", + "word_frequency": 19770 + }, + { + "word": "montagnard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountaineer;mountain dweller", + "example_sentence_native": "Les montagnards sont habitués aux hivers rigoureux.", + "example_sentence_english": "Mountain dwellers are used to harsh winters.", + "pos": "noun", + "word_frequency": 19771 + }, + { + "word": "mousseux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparkling;foamy", + "example_sentence_native": "J'aime le vin mousseux.", + "example_sentence_english": "I like sparkling wine.", + "pos": "adjective", + "word_frequency": 19775 + }, + { + "word": "muslim", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Muslim", + "example_sentence_native": "Un musulman pratique l'islam.", + "example_sentence_english": "A Muslim practices Islam.", + "pos": "noun", + "word_frequency": 19776 + }, + { + "word": "nylon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nylon", + "example_sentence_native": "Cette corde est faite en nylon.", + "example_sentence_english": "This rope is made of nylon.", + "pos": "noun", + "word_frequency": 19783 + }, + { + "word": "oligarque", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oligarch", + "example_sentence_native": "Les oligarques contrôlent une grande partie de l'économie.", + "example_sentence_english": "The oligarchs control a large part of the economy.", + "pos": "noun", + "word_frequency": 19785 + }, + { + "word": "optionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optional", + "example_sentence_native": "Ce cours est optionnel.", + "example_sentence_english": "This course is optional.", + "pos": "adjective", + "word_frequency": 19787 + }, + { + "word": "orageux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stormy", + "example_sentence_native": "Le temps est orageux aujourd'hui.", + "example_sentence_english": "The weather is stormy today.", + "pos": "adjective", + "word_frequency": 19788 + }, + { + "word": "ostentatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ostentatious", + "example_sentence_native": "Il a un style de vie très ostentatoire.", + "example_sentence_english": "He has a very ostentatious lifestyle.", + "pos": "adjective", + "word_frequency": 19791 + }, + { + "word": "palatin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palatine (as in Palatine Hill)", + "example_sentence_native": "Le mont Palatin est l'une des sept collines de Rome.", + "example_sentence_english": "The Palatine Hill is one of the seven hills of Rome.", + "pos": "noun", + "word_frequency": 19792 + }, + { + "word": "partant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starter;participant (in a race)", + "example_sentence_native": "Il y a dix partants dans cette course.", + "example_sentence_english": "There are ten starters in this race.", + "pos": "noun", + "word_frequency": 19794 + }, + { + "word": "passoire", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colander;sieve", + "example_sentence_native": "J'ai égoutté les pâtes dans la passoire.", + "example_sentence_english": "I drained the pasta in the colander.", + "pos": "noun", + "word_frequency": 19797 + }, + { + "word": "patineur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skater", + "example_sentence_native": "Le patineur a glissé élégamment sur la glace.", + "example_sentence_english": "The skater glided elegantly on the ice.", + "pos": "noun", + "word_frequency": 19800 + }, + { + "word": "penis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penis", + "example_sentence_native": "Le pénis est un organe reproducteur masculin.", + "example_sentence_english": "The penis is a male reproductive organ.", + "pos": "noun", + "word_frequency": 19801 + }, + { + "word": "peureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fearful;timid", + "example_sentence_native": "Il est un peu peureux face aux chiens.", + "example_sentence_english": "He is a bit fearful of dogs.", + "pos": "adjective", + "word_frequency": 19802 + }, + { + "word": "pip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pip (seed);spot (on dice;cards)", + "example_sentence_native": "Il y a un petit pip dans cette pomme.", + "example_sentence_english": "There is a small pip in this apple.", + "pos": "noun", + "word_frequency": 19804 + }, + { + "word": "piton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peak;piton (climbing)", + "example_sentence_native": "Les alpinistes ont planté un piton dans la roche.", + "example_sentence_english": "The climbers hammered a piton into the rock.", + "pos": "noun", + "word_frequency": 19805 + }, + { + "word": "pluridisciplinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multidisciplinary", + "example_sentence_native": "Ce projet de recherche est pluridisciplinaire.", + "example_sentence_english": "This research project is multidisciplinary.", + "pos": "adjective", + "word_frequency": 19807 + }, + { + "word": "poid", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weight", + "example_sentence_native": "Quel est le poids de cette valise ?", + "example_sentence_english": "What is the weight of this suitcase?", + "pos": "noun", + "word_frequency": 19808 + }, + { + "word": "populariser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to popularize", + "example_sentence_native": "Il a aidé à populariser cette nouvelle tendance.", + "example_sentence_english": "He helped to popularize this new trend.", + "pos": "verb", + "word_frequency": 19809 + }, + { + "word": "potin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gossip;rumor", + "example_sentence_native": "J'ai entendu un potin intéressant sur notre voisin.", + "example_sentence_english": "I heard an interesting piece of gossip about our neighbor.", + "pos": "noun", + "word_frequency": 19810 + }, + { + "word": "promeneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walker;stroller", + "example_sentence_native": "Les promeneurs apprécient le calme de la forêt.", + "example_sentence_english": "The walkers appreciate the calm of the forest.", + "pos": "noun", + "word_frequency": 19811 + }, + { + "word": "préoccupant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worrying;concerning", + "example_sentence_native": "La situation est de plus en plus préoccupante.", + "example_sentence_english": "The situation is becoming increasingly worrying.", + "pos": "adjective", + "word_frequency": 19812 + }, + { + "word": "prêtresse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priestess", + "example_sentence_native": "La prêtresse a mené la cérémonie antique.", + "example_sentence_english": "The priestess led the ancient ceremony.", + "pos": "noun", + "word_frequency": 19813 + }, + { + "word": "péniche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barge;houseboat", + "example_sentence_native": "Ils vivent sur une péniche amarrée sur la Seine.", + "example_sentence_english": "They live on a houseboat moored on the Seine.", + "pos": "noun", + "word_frequency": 19815 + }, + { + "word": "pérenniser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perpetuate;to make lasting", + "example_sentence_native": "Il faut pérenniser ces traditions ancestrales.", + "example_sentence_english": "We must perpetuate these ancestral traditions.", + "pos": "verb", + "word_frequency": 19816 + }, + { + "word": "qcm", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiple-choice questionnaire (MCQ)", + "example_sentence_native": "L'examen était un QCM de 50 questions.", + "example_sentence_english": "The exam was a 50-question MCQ.", + "pos": "noun", + "word_frequency": 19817 + }, + { + "word": "quinoa", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quinoa", + "example_sentence_native": "Le quinoa est une céréale riche en protéines.", + "example_sentence_english": "Quinoa is a protein-rich grain.", + "pos": "noun", + "word_frequency": 19818 + }, + { + "word": "rarissime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremely rare", + "example_sentence_native": "Ce timbre est rarissime et très recherché.", + "example_sentence_english": "This stamp is extremely rare and highly sought after.", + "pos": "adjective", + "word_frequency": 19820 + }, + { + "word": "rayonnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiant;beaming", + "example_sentence_native": "Elle avait un sourire rayonnant.", + "example_sentence_english": "She had a radiant smile.", + "pos": "adjective", + "word_frequency": 19821 + }, + { + "word": "reformer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reform;to reshape", + "example_sentence_native": "Le gouvernement a décidé de reformer le système éducatif.", + "example_sentence_english": "The government decided to reform the education system.", + "pos": "verb", + "word_frequency": 19822 + }, + { + "word": "rehausser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enhance;to raise;to elevate", + "example_sentence_native": "Elle a utilisé du maquillage pour rehausser ses yeux.", + "example_sentence_english": "She used makeup to enhance her eyes.", + "pos": "verb", + "word_frequency": 19823 + }, + { + "word": "retransmettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retransmit;to broadcast", + "example_sentence_native": "Le match sera retransmis en direct à la télévision.", + "example_sentence_english": "The match will be broadcast live on television.", + "pos": "verb", + "word_frequency": 19824 + }, + { + "word": "rhino", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhino (short for rhinoceros or rhinitis)", + "example_sentence_native": "Nous avons vu un rhino au zoo.", + "example_sentence_english": "We saw a rhino at the zoo.", + "pos": "noun", + "word_frequency": 19825 + }, + { + "word": "révoltant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolting;outrageous", + "example_sentence_native": "C'est une injustice révoltante.", + "example_sentence_english": "It's a revolting injustice.", + "pos": "adjective", + "word_frequency": 19830 + }, + { + "word": "sauvagerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "savagery;wildness", + "example_sentence_native": "La sauvagerie de la nature peut être impressionnante.", + "example_sentence_english": "The wildness of nature can be impressive.", + "pos": "noun", + "word_frequency": 19832 + }, + { + "word": "sauveteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescuer;lifeguard", + "example_sentence_native": "Le sauveteur a plongé pour aider la personne en difficulté.", + "example_sentence_english": "The rescuer dived in to help the person in distress.", + "pos": "noun", + "word_frequency": 19833 + }, + { + "word": "sauvignon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sauvignon (grape variety;wine)", + "example_sentence_native": "J'aimerais un verre de Sauvignon Blanc, s'il vous plaît.", + "example_sentence_english": "I would like a glass of Sauvignon Blanc, please.", + "pos": "noun", + "word_frequency": 19834 + }, + { + "word": "scientologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Scientology", + "example_sentence_native": "La Scientologie est un ensemble de croyances et de pratiques.", + "example_sentence_english": "Scientology is a set of beliefs and practices.", + "pos": "noun", + "word_frequency": 19837 + }, + { + "word": "scrupuleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scrupulous;meticulous", + "example_sentence_native": "Il est très scrupuleux dans son travail.", + "example_sentence_english": "He is very scrupulous in his work.", + "pos": "adjective", + "word_frequency": 19839 + }, + { + "word": "sheikh", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheikh", + "example_sentence_native": "Le cheikh a accueilli les visiteurs dans son palais.", + "example_sentence_english": "The sheikh welcomed the visitors to his palace.", + "pos": "noun", + "word_frequency": 19844 + }, + { + "word": "sifflement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whistling;hiss", + "example_sentence_native": "On a entendu un sifflement aigu venant de la bouilloire.", + "example_sentence_english": "We heard a sharp whistling sound coming from the kettle.", + "pos": "noun", + "word_frequency": 19846 + }, + { + "word": "signalétique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "signage;signposting", + "example_sentence_native": "La signalétique de l'aéroport est très claire.", + "example_sentence_english": "The airport signage is very clear.", + "pos": "noun", + "word_frequency": 19847 + }, + { + "word": "spéculateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculator", + "example_sentence_native": "Les spéculateurs ont profité de la crise économique.", + "example_sentence_english": "The speculators took advantage of the economic crisis.", + "pos": "noun", + "word_frequency": 19851 + }, + { + "word": "séduit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seduced;charmed;attracted", + "example_sentence_native": "Elle était séduite par son charme.", + "example_sentence_english": "She was charmed by his charisma.", + "pos": "adjective", + "word_frequency": 19853 + }, + { + "word": "tartiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spread (on bread);to butter", + "example_sentence_native": "Il aime tartiner du beurre sur son pain.", + "example_sentence_english": "He likes to spread butter on his bread.", + "pos": "verb", + "word_frequency": 19856 + }, + { + "word": "technico", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "technical (as in \"technico-commercial\")", + "example_sentence_native": "Il occupe un poste technico-commercial.", + "example_sentence_english": "He holds a technical sales position.", + "pos": "adjective", + "word_frequency": 19857 + }, + { + "word": "thym", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thyme", + "example_sentence_native": "J'ai ajouté du thym à la sauce.", + "example_sentence_english": "I added thyme to the sauce.", + "pos": "noun", + "word_frequency": 19859 + }, + { + "word": "togolais", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Togolese (person)", + "example_sentence_native": "Il a rencontré un Togolais à Paris.", + "example_sentence_english": "He met a Togolese person in Paris.", + "pos": "noun", + "word_frequency": 19862 + }, + { + "word": "tourbe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peat", + "example_sentence_native": "La tourbe est utilisée comme combustible.", + "example_sentence_english": "Peat is used as fuel.", + "pos": "noun", + "word_frequency": 19863 + }, + { + "word": "toxicomanie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug addiction", + "example_sentence_native": "La toxicomanie est un problème de santé publique.", + "example_sentence_english": "Drug addiction is a public health problem.", + "pos": "noun", + "word_frequency": 19864 + }, + { + "word": "télévisuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "television (adj.);televisual", + "example_sentence_native": "Il a une carrière télévisuelle réussie.", + "example_sentence_english": "He has a successful television career.", + "pos": "adjective", + "word_frequency": 19868 + }, + { + "word": "vetement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clothing;garment", + "example_sentence_native": "J'ai acheté un nouveau vêtement.", + "example_sentence_english": "I bought a new piece of clothing.", + "pos": "noun", + "word_frequency": 19869 + }, + { + "word": "vénération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "veneration;reverence", + "example_sentence_native": "Il a une profonde vénération pour ses ancêtres.", + "example_sentence_english": "He has a deep veneration for his ancestors.", + "pos": "noun", + "word_frequency": 19874 + }, + { + "word": "véreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worm-eaten;shady;dodgy", + "example_sentence_native": "C'est une affaire véreuse.", + "example_sentence_english": "It's a shady business.", + "pos": "adjective", + "word_frequency": 19875 + }, + { + "word": "zip", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zip;zipper", + "example_sentence_native": "Le zip de ma veste est cassé.", + "example_sentence_english": "The zip on my jacket is broken.", + "pos": "noun", + "word_frequency": 19879 + }, + { + "word": "échine", + "article_with_word": "l'échine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spine;backbone", + "example_sentence_native": "Le chat a arqué l'échine.", + "example_sentence_english": "The cat arched its back.", + "pos": "noun", + "word_frequency": 19880 + }, + { + "word": "égayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheer up;to brighten", + "example_sentence_native": "Les fleurs égayent la pièce.", + "example_sentence_english": "The flowers brighten the room.", + "pos": "verb", + "word_frequency": 19881 + }, + { + "word": "éjecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to eject;to throw out", + "example_sentence_native": "Le pilote a dû s'éjecter de l'avion.", + "example_sentence_english": "The pilot had to eject from the plane.", + "pos": "verb", + "word_frequency": 19882 + }, + { + "word": "émanciper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to emancipate;to free", + "example_sentence_native": "Elle a lutté pour s'émanciper de l'influence de ses parents.", + "example_sentence_english": "She struggled to emancipate herself from her parents' influence.", + "pos": "verb", + "word_frequency": 19883 + }, + { + "word": "émergent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerging", + "example_sentence_native": "Les marchés émergents offrent de nouvelles opportunités.", + "example_sentence_english": "Emerging markets offer new opportunities.", + "pos": "adjective", + "word_frequency": 19884 + }, + { + "word": "épiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to epilate;to remove hair", + "example_sentence_native": "Elle va s'épiler les jambes avant l'été.", + "example_sentence_english": "She's going to epilate her legs before summer.", + "pos": "verb", + "word_frequency": 19885 + }, + { + "word": "événementiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "event-related;experiential", + "example_sentence_native": "Il travaille dans le secteur événementiel.", + "example_sentence_english": "He works in the event industry.", + "pos": "adjective", + "word_frequency": 19886 + }, + { + "word": "abside", + "article_with_word": "l'abside", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apse", + "example_sentence_native": "L'abside de la cathédrale est magnifique.", + "example_sentence_english": "The apse of the cathedral is magnificent.", + "pos": "noun", + "word_frequency": 19887 + }, + { + "word": "absolution", + "article_with_word": "l'absolution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "absolution", + "example_sentence_native": "Il a demandé l'absolution pour ses péchés.", + "example_sentence_english": "He asked for absolution for his sins.", + "pos": "noun", + "word_frequency": 19888 + }, + { + "word": "affirmative", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affirmative;positive", + "example_sentence_native": "Sa réponse était affirmative.", + "example_sentence_english": "Her answer was affirmative.", + "pos": "adjective", + "word_frequency": 19890 + }, + { + "word": "agronomique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agronomic", + "example_sentence_native": "Il étudie les sciences agronomiques.", + "example_sentence_english": "He studies agronomic sciences.", + "pos": "adjective", + "word_frequency": 19891 + }, + { + "word": "aidant", + "article_with_word": "un aidant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caregiver;helper", + "example_sentence_native": "Les aidants familiaux jouent un rôle essentiel.", + "example_sentence_english": "Family caregivers play an essential role.", + "pos": "noun", + "word_frequency": 19892 + }, + { + "word": "aigri", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embittered;soured", + "example_sentence_native": "Après sa défaite, il est devenu aigri.", + "example_sentence_english": "After his defeat, he became embittered.", + "pos": "adjective", + "word_frequency": 19893 + }, + { + "word": "amplificateur", + "article_with_word": "un amplificateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amplifier", + "example_sentence_native": "Il a acheté un nouvel amplificateur pour sa guitare.", + "example_sentence_english": "He bought a new amplifier for his guitar.", + "pos": "noun", + "word_frequency": 19897 + }, + { + "word": "arachide", + "article_with_word": "l'arachide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peanut", + "example_sentence_native": "Elle est allergique aux arachides.", + "example_sentence_english": "She is allergic to peanuts.", + "pos": "noun", + "word_frequency": 19901 + }, + { + "word": "asservissement", + "article_with_word": "l'asservissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enslavement;subjugation", + "example_sentence_native": "L'asservissement d'un peuple est une tragédie.", + "example_sentence_english": "The enslavement of a people is a tragedy.", + "pos": "noun", + "word_frequency": 19903 + }, + { + "word": "assouplissement", + "article_with_word": "l'assouplissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loosening;softening;relaxation (of rules)", + "example_sentence_native": "Le gouvernement a annoncé un assouplissement des restrictions.", + "example_sentence_english": "The government announced a loosening of restrictions.", + "pos": "noun", + "word_frequency": 19904 + }, + { + "word": "athénée", + "article_with_word": "l'athénée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "athenaeum;(in Belgium) high school", + "example_sentence_native": "Il a étudié à l'athénée royal.", + "example_sentence_english": "He studied at the royal athenaeum.", + "pos": "noun", + "word_frequency": 19905 + }, + { + "word": "barré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blocked;crossed out;crazy (informal)", + "example_sentence_native": "Le passage est barré.", + "example_sentence_english": "The passage is blocked.", + "pos": "adjective", + "word_frequency": 19908 + }, + { + "word": "bleuet", + "article_with_word": "le bleuet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornflower;blueberry (Canadian French)", + "example_sentence_native": "Les champs étaient remplis de bleuets.", + "example_sentence_english": "The fields were full of cornflowers.", + "pos": "noun", + "word_frequency": 19915 + }, + { + "word": "bolduc", + "article_with_word": "le bolduc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curling ribbon", + "example_sentence_native": "Elle a décoré le cadeau avec du bolduc.", + "example_sentence_english": "She decorated the gift with curling ribbon.", + "pos": "noun", + "word_frequency": 19918 + }, + { + "word": "bougre", + "article_with_word": "le bougre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fellow;chap;rascal", + "example_sentence_native": "Ce bougre est toujours en retard.", + "example_sentence_english": "This fellow is always late.", + "pos": "noun", + "word_frequency": 19919 + }, + { + "word": "bouse", + "article_with_word": "la bouse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dung;cowpat", + "example_sentence_native": "Il y avait de la bouse de vache partout dans le champ.", + "example_sentence_english": "There was cow dung everywhere in the field.", + "pos": "noun", + "word_frequency": 19920 + }, + { + "word": "buse", + "article_with_word": "la buse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buzzard;dunce", + "example_sentence_native": "Une buse planait au-dessus des champs.", + "example_sentence_english": "A buzzard was circling above the fields.", + "pos": "noun", + "word_frequency": 19926 + }, + { + "word": "bâtonnier", + "article_with_word": "le bâtonnier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "head of the bar association", + "example_sentence_native": "Le bâtonnier a prononcé un discours.", + "example_sentence_english": "The head of the bar association gave a speech.", + "pos": "noun", + "word_frequency": 19927 + }, + { + "word": "cadrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frame;to fit in", + "example_sentence_native": "Cette photo ne cadre pas bien avec le mur.", + "example_sentence_english": "This photo doesn't fit well with the wall.", + "pos": "verb", + "word_frequency": 19928 + }, + { + "word": "calque", + "article_with_word": "le calque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tracing;calque (linguistics)", + "example_sentence_native": "Ce mot est un calque de l'anglais.", + "example_sentence_english": "This word is a calque from English.", + "pos": "noun", + "word_frequency": 19931 + }, + { + "word": "cambrioler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burgle;to rob", + "example_sentence_native": "Des voleurs ont cambriolé la maison voisine.", + "example_sentence_english": "Thieves burgled the neighboring house.", + "pos": "verb", + "word_frequency": 19932 + }, + { + "word": "cantique", + "article_with_word": "le cantique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hymn;canticle", + "example_sentence_native": "Ils ont chanté un vieux cantique à l'église.", + "example_sentence_english": "They sang an old hymn at church.", + "pos": "noun", + "word_frequency": 19933 + }, + { + "word": "cartable", + "article_with_word": "le cartable", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "satchel;school bag", + "example_sentence_native": "L'enfant a mis ses livres dans son cartable.", + "example_sentence_english": "The child put his books in his school bag.", + "pos": "noun", + "word_frequency": 19934 + }, + { + "word": "cartilage", + "article_with_word": "le cartilage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartilage", + "example_sentence_native": "Le cartilage protège les articulations.", + "example_sentence_english": "Cartilage protects the joints.", + "pos": "noun", + "word_frequency": 19935 + }, + { + "word": "cendrier", + "article_with_word": "le cendrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ashtray", + "example_sentence_native": "Il a vidé le cendrier plein de mégots.", + "example_sentence_english": "He emptied the ashtray full of cigarette butts.", + "pos": "noun", + "word_frequency": 19937 + }, + { + "word": "chacal", + "article_with_word": "le chacal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jackal", + "example_sentence_native": "Le chacal est un animal nocturne.", + "example_sentence_english": "The jackal is a nocturnal animal.", + "pos": "noun", + "word_frequency": 19938 + }, + { + "word": "chauffard", + "article_with_word": "le chauffard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reckless driver;road hog", + "example_sentence_native": "Le chauffard a été arrêté par la police.", + "example_sentence_english": "The reckless driver was arrested by the police.", + "pos": "noun", + "word_frequency": 19939 + }, + { + "word": "chevalet", + "article_with_word": "le chevalet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easel;bridge (of a violin)", + "example_sentence_native": "L'artiste a posé sa toile sur le chevalet.", + "example_sentence_english": "The artist placed his canvas on the easel.", + "pos": "noun", + "word_frequency": 19940 + }, + { + "word": "comptabiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to account for;to record", + "example_sentence_native": "Il faut comptabiliser toutes les dépenses.", + "example_sentence_english": "All expenses must be accounted for.", + "pos": "verb", + "word_frequency": 19942 + }, + { + "word": "concrétisation", + "article_with_word": "la concrétisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concretization;realization", + "example_sentence_native": "Ce projet est la concrétisation de nos efforts.", + "example_sentence_english": "This project is the concretization of our efforts.", + "pos": "noun", + "word_frequency": 19944 + }, + { + "word": "confiserie", + "article_with_word": "la confiserie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confectionery;sweet shop", + "example_sentence_native": "Les enfants adorent aller à la confiserie.", + "example_sentence_english": "Children love going to the sweet shop.", + "pos": "noun", + "word_frequency": 19945 + }, + { + "word": "contestataire", + "article_with_word": "le contestataire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protester;dissident", + "example_sentence_native": "Le mouvement contestataire a pris de l'ampleur.", + "example_sentence_english": "The protest movement gained momentum.", + "pos": "noun", + "word_frequency": 19946 + }, + { + "word": "copieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heartily;copiously", + "example_sentence_native": "Il a mangé copieux après sa longue journée.", + "example_sentence_english": "He ate heartily after his long day.", + "pos": "adverb", + "word_frequency": 19948 + }, + { + "word": "coqueluche", + "article_with_word": "la coqueluche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whooping cough;darling;fad", + "example_sentence_native": "La coqueluche est une maladie contagieuse.", + "example_sentence_english": "Whooping cough is a contagious disease.", + "pos": "noun", + "word_frequency": 19949 + }, + { + "word": "cornichon", + "article_with_word": "le cornichon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gherkin;pickle", + "example_sentence_native": "J'aime les cornichons avec mon sandwich.", + "example_sentence_english": "I like pickles with my sandwich.", + "pos": "noun", + "word_frequency": 19951 + }, + { + "word": "cosplay", + "article_with_word": "le cosplay", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosplay", + "example_sentence_native": "Elle a préparé son costume de cosplay pour la convention.", + "example_sentence_english": "She prepared her cosplay costume for the convention.", + "pos": "noun", + "word_frequency": 19952 + }, + { + "word": "couver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hatch;to brood;to be brewing", + "example_sentence_native": "La poule couve ses œufs.", + "example_sentence_english": "The hen is hatching her eggs.", + "pos": "verb", + "word_frequency": 19953 + }, + { + "word": "crique", + "article_with_word": "la crique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cove;creek", + "example_sentence_native": "Nous avons trouvé une petite crique isolée.", + "example_sentence_english": "We found a small isolated cove.", + "pos": "noun", + "word_frequency": 19954 + }, + { + "word": "culasse", + "article_with_word": "la culasse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cylinder head;breech (of a firearm)", + "example_sentence_native": "Le mécanicien a remplacé la culasse du moteur.", + "example_sentence_english": "The mechanic replaced the engine's cylinder head.", + "pos": "noun", + "word_frequency": 19957 + }, + { + "word": "curriculum", + "article_with_word": "le curriculum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curriculum;CV", + "example_sentence_native": "Son curriculum vitae est très impressionnant.", + "example_sentence_english": "His curriculum vitae is very impressive.", + "pos": "noun", + "word_frequency": 19958 + }, + { + "word": "cylindrée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engine displacement", + "example_sentence_native": "La cylindrée du moteur est un facteur clé de sa puissance.", + "example_sentence_english": "The engine displacement is a key factor in its power.", + "pos": "noun", + "word_frequency": 19960 + }, + { + "word": "discrédit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discredit", + "example_sentence_native": "Ses actions ont jeté le discrédit sur toute l'organisation.", + "example_sentence_english": "His actions brought discredit upon the entire organization.", + "pos": "noun", + "word_frequency": 19963 + }, + { + "word": "disquette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floppy disk", + "example_sentence_native": "J'ai trouvé une vieille disquette dans le tiroir.", + "example_sentence_english": "I found an old floppy disk in the drawer.", + "pos": "noun", + "word_frequency": 19964 + }, + { + "word": "dresseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trainer (animal)", + "example_sentence_native": "Le dresseur a appris au chien à s'asseoir.", + "example_sentence_english": "The trainer taught the dog to sit.", + "pos": "noun", + "word_frequency": 19965 + }, + { + "word": "décentraliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decentralize", + "example_sentence_native": "Le gouvernement a décidé de décentraliser certains services.", + "example_sentence_english": "The government decided to decentralize certain services.", + "pos": "verb", + "word_frequency": 19967 + }, + { + "word": "décisionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decision-making (adj.)", + "example_sentence_native": "Il occupe un poste décisionnel au sein de l'entreprise.", + "example_sentence_english": "He holds a decision-making position within the company.", + "pos": "adjective", + "word_frequency": 19968 + }, + { + "word": "décompresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decompress;to relax", + "example_sentence_native": "Après une longue journée, j'aime décompresser en lisant.", + "example_sentence_english": "After a long day, I like to decompress by reading.", + "pos": "verb", + "word_frequency": 19969 + }, + { + "word": "dégouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disgust", + "example_sentence_native": "L'odeur de ce plat me dégoûte.", + "example_sentence_english": "The smell of this dish disgusts me.", + "pos": "verb", + "word_frequency": 19970 + }, + { + "word": "délimiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delimit;to define boundaries", + "example_sentence_native": "Il faut délimiter clairement les zones de construction.", + "example_sentence_english": "We need to clearly delimit the construction zones.", + "pos": "verb", + "word_frequency": 19971 + }, + { + "word": "déserteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserter", + "example_sentence_native": "Le soldat a été accusé d'être un déserteur.", + "example_sentence_english": "The soldier was accused of being a deserter.", + "pos": "noun", + "word_frequency": 19972 + }, + { + "word": "détonation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detonation;explosion", + "example_sentence_native": "Nous avons entendu une forte détonation au loin.", + "example_sentence_english": "We heard a loud detonation in the distance.", + "pos": "noun", + "word_frequency": 19973 + }, + { + "word": "détériorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deteriorate;to damage", + "example_sentence_native": "La qualité de l'air continue de se détériorer.", + "example_sentence_english": "The air quality continues to deteriorate.", + "pos": "verb", + "word_frequency": 19974 + }, + { + "word": "déverrouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unlock", + "example_sentence_native": "J'ai oublié comment déverrouiller mon téléphone.", + "example_sentence_english": "I forgot how to unlock my phone.", + "pos": "verb", + "word_frequency": 19975 + }, + { + "word": "emir", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emir", + "example_sentence_native": "L'émir a visité plusieurs pays européens.", + "example_sentence_english": "The emir visited several European countries.", + "pos": "noun", + "word_frequency": 19978 + }, + { + "word": "establishment", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment (social;political power structure)", + "example_sentence_native": "Il critique souvent l'establishment politique.", + "example_sentence_english": "He often criticizes the political establishment.", + "pos": "noun", + "word_frequency": 19979 + }, + { + "word": "evidence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obviousness;self-evidence", + "example_sentence_native": "L'évidence de sa culpabilité était frappante.", + "example_sentence_english": "The obviousness of his guilt was striking.", + "pos": "noun", + "word_frequency": 19981 + }, + { + "word": "exclamer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exclaim", + "example_sentence_native": "Elle s'est exclamée de joie en voyant le cadeau.", + "example_sentence_english": "She exclaimed with joy upon seeing the gift.", + "pos": "verb", + "word_frequency": 19982 + }, + { + "word": "executive", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executive", + "example_sentence_native": "Il est un executive dans une grande entreprise.", + "example_sentence_english": "He is an executive in a large company.", + "pos": "noun", + "word_frequency": 19983 + }, + { + "word": "faiseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maker;doer (often with a sense of 'schemer' or 'influencer')", + "example_sentence_native": "C'est un faiseur d'opinions dans son domaine.", + "example_sentence_english": "He is an opinion maker in his field.", + "pos": "noun", + "word_frequency": 19984 + }, + { + "word": "fantasque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whimsical;fanciful", + "example_sentence_native": "Elle a un esprit très fantasque et créatif.", + "example_sentence_english": "She has a very whimsical and creative mind.", + "pos": "adjective", + "word_frequency": 19986 + }, + { + "word": "fjord", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fjord", + "example_sentence_native": "Les fjords norvégiens sont magnifiques.", + "example_sentence_english": "The Norwegian fjords are magnificent.", + "pos": "noun", + "word_frequency": 19988 + }, + { + "word": "furtif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furtive;stealthy", + "example_sentence_native": "Il a jeté un regard furtif vers la porte.", + "example_sentence_english": "He cast a furtive glance towards the door.", + "pos": "adjective", + "word_frequency": 19989 + }, + { + "word": "graphite", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphite", + "example_sentence_native": "Le crayon contient une mine en graphite.", + "example_sentence_english": "The pencil contains a graphite lead.", + "pos": "noun", + "word_frequency": 19995 + }, + { + "word": "guérisseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "healer", + "example_sentence_native": "Le guérisseur a utilisé des herbes médicinales.", + "example_sentence_english": "The healer used medicinal herbs.", + "pos": "noun", + "word_frequency": 19997 + }, + { + "word": "hellénique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hellenic;Greek", + "example_sentence_native": "L'art hellénique est très influent.", + "example_sentence_english": "Hellenic art is very influential.", + "pos": "adjective", + "word_frequency": 19998 + }, + { + "word": "herpès", + "article_with_word": "l'herpès", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "herpes", + "example_sentence_native": "L'herpès est une infection virale courante.", + "example_sentence_english": "Herpes is a common viral infection.", + "pos": "noun", + "word_frequency": 20001 + }, + { + "word": "hussard", + "article_with_word": "le hussard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hussar", + "example_sentence_native": "Le hussard portait un uniforme distinctif.", + "example_sentence_english": "The hussar wore a distinctive uniform.", + "pos": "noun", + "word_frequency": 20005 + }, + { + "word": "huer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boo;to jeer", + "example_sentence_native": "La foule a commencé à huer l'orateur.", + "example_sentence_english": "The crowd started to boo the speaker.", + "pos": "verb", + "word_frequency": 20006 + }, + { + "word": "immatriculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to register (a vehicle);to matriculate", + "example_sentence_native": "Vous devez immatriculer votre nouvelle voiture.", + "example_sentence_english": "You must register your new car.", + "pos": "verb", + "word_frequency": 20007 + }, + { + "word": "immerger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to immerse", + "example_sentence_native": "Il faut immerger le tissu dans l'eau froide.", + "example_sentence_english": "You must immerse the fabric in cold water.", + "pos": "verb", + "word_frequency": 20008 + }, + { + "word": "inapte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfit;unsuitable", + "example_sentence_native": "Il a été déclaré inapte au service militaire.", + "example_sentence_english": "He was declared unfit for military service.", + "pos": "adjective", + "word_frequency": 20009 + }, + { + "word": "instigateur", + "article_with_word": "l'instigateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instigator", + "example_sentence_native": "L'instigateur de la révolte a été arrêté.", + "example_sentence_english": "The instigator of the revolt was arrested.", + "pos": "noun", + "word_frequency": 20012 + }, + { + "word": "intraveineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intravenous", + "example_sentence_native": "Le patient a reçu une injection intraveineuse.", + "example_sentence_english": "The patient received an intravenous injection.", + "pos": "adjective", + "word_frequency": 20013 + }, + { + "word": "irréfutable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrefutable", + "example_sentence_native": "La preuve était irréfutable.", + "example_sentence_english": "The proof was irrefutable.", + "pos": "adjective", + "word_frequency": 20014 + }, + { + "word": "jaillir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gush;to spurt;to spring forth", + "example_sentence_native": "L'eau a jailli de la fontaine.", + "example_sentence_english": "Water gushed from the fountain.", + "pos": "verb", + "word_frequency": 20016 + }, + { + "word": "jumelage", + "article_with_word": "le jumelage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twinning (of towns);pairing", + "example_sentence_native": "Le jumelage entre les deux villes a été célébré.", + "example_sentence_english": "The twinning between the two cities was celebrated.", + "pos": "noun", + "word_frequency": 20018 + }, + { + "word": "laitue", + "article_with_word": "la laitue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lettuce", + "example_sentence_native": "J'ai acheté une laitue pour la salade.", + "example_sentence_english": "I bought a lettuce for the salad.", + "pos": "noun", + "word_frequency": 20021 + }, + { + "word": "limoger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismiss;to sack (from a position)", + "example_sentence_native": "Le directeur a été limogé après le scandale.", + "example_sentence_english": "The director was dismissed after the scandal.", + "pos": "verb", + "word_frequency": 20026 + }, + { + "word": "madrilène", + "article_with_word": "le Madrilène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Madrilenian (person from Madrid)", + "example_sentence_native": "Un Madrilène est fier de sa ville.", + "example_sentence_english": "A Madrilenian is proud of their city.", + "pos": "noun", + "word_frequency": 20029 + }, + { + "word": "malhonnêteté", + "article_with_word": "la malhonnêteté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonesty", + "example_sentence_native": "Sa malhonnêteté a été révélée au grand jour.", + "example_sentence_english": "His dishonesty was brought to light.", + "pos": "noun", + "word_frequency": 20030 + }, + { + "word": "marécage", + "article_with_word": "le marécage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swamp;marsh", + "example_sentence_native": "Le chemin traversait un vaste marécage.", + "example_sentence_english": "The path crossed a vast swamp.", + "pos": "noun", + "word_frequency": 20033 + }, + { + "word": "minerve", + "article_with_word": "la minerve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Minerva (goddess);neck brace;cervical collar", + "example_sentence_native": "Après l'accident, il a dû porter une minerve.", + "example_sentence_english": "After the accident, he had to wear a neck brace.", + "pos": "noun", + "word_frequency": 20038 + }, + { + "word": "modulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modular", + "example_sentence_native": "Ce système est entièrement modulaire.", + "example_sentence_english": "This system is entirely modular.", + "pos": "adjective", + "word_frequency": 20039 + }, + { + "word": "moisissure", + "article_with_word": "la moisissure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mold;mildew", + "example_sentence_native": "Il y a de la moisissure sur le vieux pain.", + "example_sentence_english": "There is mold on the old bread.", + "pos": "noun", + "word_frequency": 20040 + }, + { + "word": "muqueuse", + "article_with_word": "la muqueuse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mucous membrane", + "example_sentence_native": "La muqueuse nasale protège les voies respiratoires.", + "example_sentence_english": "The nasal mucous membrane protects the respiratory tract.", + "pos": "noun", + "word_frequency": 20042 + }, + { + "word": "méconnaissable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrecognizable", + "example_sentence_native": "Après l'accident, il était méconnaissable.", + "example_sentence_english": "After the accident, he was unrecognizable.", + "pos": "adjective", + "word_frequency": 20043 + }, + { + "word": "mémorandum", + "article_with_word": "le mémorandum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "memorandum;memo", + "example_sentence_native": "Le mémorandum a été envoyé à tous les employés.", + "example_sentence_english": "The memorandum was sent to all employees.", + "pos": "noun", + "word_frequency": 20044 + }, + { + "word": "nordiste", + "article_with_word": "le nordiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "northerner", + "example_sentence_native": "Les nordistes ont une culture différente des sudistes.", + "example_sentence_english": "Northerners have a different culture from southerners.", + "pos": "noun", + "word_frequency": 20047 + }, + { + "word": "numéroter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to number", + "example_sentence_native": "N'oubliez pas de numéroter les pages.", + "example_sentence_english": "Don't forget to number the pages.", + "pos": "verb", + "word_frequency": 20049 + }, + { + "word": "occasionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause;to occasion", + "example_sentence_native": "Cette décision pourrait occasionner des problèmes.", + "example_sentence_english": "This decision could cause problems.", + "pos": "verb", + "word_frequency": 20050 + }, + { + "word": "organiste", + "article_with_word": "l'organiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organist", + "example_sentence_native": "L'organiste a joué un morceau magnifique à l'église.", + "example_sentence_english": "The organist played a magnificent piece at the church.", + "pos": "noun", + "word_frequency": 20053 + }, + { + "word": "outsider", + "article_with_word": "l'outsider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outsider", + "example_sentence_native": "Il est considéré comme un outsider dans cette compétition.", + "example_sentence_english": "He is considered an outsider in this competition.", + "pos": "noun", + "word_frequency": 20055 + }, + { + "word": "percent", + "article_with_word": "le percent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "percent", + "example_sentence_native": "Le taux d'intérêt est de deux percent.", + "example_sentence_english": "The interest rate is two percent.", + "pos": "noun", + "word_frequency": 20058 + }, + { + "word": "peso", + "article_with_word": "le peso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peso", + "example_sentence_native": "J'ai échangé mes euros contre des pesos.", + "example_sentence_english": "I exchanged my euros for pesos.", + "pos": "noun", + "word_frequency": 20059 + }, + { + "word": "piétiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trample;to stomp", + "example_sentence_native": "Il a piétiné les fleurs dans le jardin.", + "example_sentence_english": "He trampled the flowers in the garden.", + "pos": "verb", + "word_frequency": 20060 + }, + { + "word": "pointé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pointed;marked;clocked in", + "example_sentence_native": "Il est arrivé en retard et a été pointé du doigt.", + "example_sentence_english": "He arrived late and was singled out.", + "pos": "adjective", + "word_frequency": 20062 + }, + { + "word": "ponton", + "article_with_word": "le ponton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pontoon;jetty", + "example_sentence_native": "Le bateau est amarré au ponton.", + "example_sentence_english": "The boat is moored to the pontoon.", + "pos": "noun", + "word_frequency": 20064 + }, + { + "word": "portal", + "article_with_word": "le portal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portal", + "example_sentence_native": "Le nouveau portal web facilite l'accès aux informations.", + "example_sentence_english": "The new web portal facilitates access to information.", + "pos": "noun", + "word_frequency": 20065 + }, + { + "word": "potence", + "article_with_word": "la potence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gallows;gibbet;(bike) stem", + "example_sentence_native": "Le vélo a une potence réglable.", + "example_sentence_english": "The bike has an adjustable stem.", + "pos": "noun", + "word_frequency": 20066 + }, + { + "word": "prolongé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prolonged;extended", + "example_sentence_native": "Nous avons eu un week-end prolongé.", + "example_sentence_english": "We had an extended weekend.", + "pos": "adjective", + "word_frequency": 20068 + }, + { + "word": "publi", + "article_with_word": "la publi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ad;advert", + "example_sentence_native": "La chaîne diffuse trop de publis.", + "example_sentence_english": "The channel broadcasts too many ads.", + "pos": "noun", + "word_frequency": 20069 + }, + { + "word": "pvc", + "article_with_word": "le PVC", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "PVC", + "example_sentence_native": "Les fenêtres sont en PVC.", + "example_sentence_english": "The windows are made of PVC.", + "pos": "noun", + "word_frequency": 20071 + }, + { + "word": "pénalty", + "article_with_word": "le pénalty", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penalty (kick)", + "example_sentence_native": "L'arbitre a sifflé un pénalty.", + "example_sentence_english": "The referee whistled a penalty.", + "pos": "noun", + "word_frequency": 20072 + }, + { + "word": "raclée", + "article_with_word": "la raclée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beating;thrashing", + "example_sentence_native": "L'équipe a pris une raclée au match.", + "example_sentence_english": "The team took a beating in the match.", + "pos": "noun", + "word_frequency": 20075 + }, + { + "word": "rajeunir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rejuvenate;to make younger", + "example_sentence_native": "Cette coupe de cheveux te rajeunit.", + "example_sentence_english": "This haircut makes you look younger.", + "pos": "verb", + "word_frequency": 20078 + }, + { + "word": "rancœur", + "article_with_word": "la rancœur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resentment;bitterness;grudge", + "example_sentence_native": "Il garde une rancœur contre son ancien collègue.", + "example_sentence_english": "He holds a grudge against his former colleague.", + "pos": "noun", + "word_frequency": 20079 + }, + { + "word": "rectiligne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rectilinear;straight", + "example_sentence_native": "Le chemin était parfaitement rectiligne.", + "example_sentence_english": "The path was perfectly straight.", + "pos": "adjective", + "word_frequency": 20080 + }, + { + "word": "relai", + "article_with_word": "le relai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relay;handover", + "example_sentence_native": "Il a passé le relai à son coéquipier.", + "example_sentence_english": "He passed the baton to his teammate.", + "pos": "noun", + "word_frequency": 20081 + }, + { + "word": "relaté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "related;recounted", + "example_sentence_native": "Les faits relatés dans le rapport sont exacts.", + "example_sentence_english": "The facts recounted in the report are accurate.", + "pos": "adjective", + "word_frequency": 20082 + }, + { + "word": "renne", + "article_with_word": "le renne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reindeer", + "example_sentence_native": "Le Père Noël voyage avec ses rennes.", + "example_sentence_english": "Santa Claus travels with his reindeer.", + "pos": "noun", + "word_frequency": 20083 + }, + { + "word": "riposter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retaliate;to retort", + "example_sentence_native": "Il a dû riposter à l'attaque.", + "example_sentence_english": "He had to retaliate against the attack.", + "pos": "verb", + "word_frequency": 20086 + }, + { + "word": "rythmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhythmic;paced", + "example_sentence_native": "La musique était très rythmée.", + "example_sentence_english": "The music was very rhythmic.", + "pos": "adjective", + "word_frequency": 20088 + }, + { + "word": "réchauffé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reheated;warmed up", + "example_sentence_native": "Je n'aime pas les plats réchauffés.", + "example_sentence_english": "I don't like reheated dishes.", + "pos": "adjective", + "word_frequency": 20089 + }, + { + "word": "réorientation", + "article_with_word": "la réorientation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reorientation;redirection", + "example_sentence_native": "Une réorientation professionnelle peut être nécessaire.", + "example_sentence_english": "A professional reorientation may be necessary.", + "pos": "noun", + "word_frequency": 20090 + }, + { + "word": "réserviste", + "article_with_word": "le réserviste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reservist", + "example_sentence_native": "Il est réserviste dans l'armée.", + "example_sentence_english": "He is a reservist in the army.", + "pos": "noun", + "word_frequency": 20091 + }, + { + "word": "résiduel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "residual", + "example_sentence_native": "Il y a un risque résiduel.", + "example_sentence_english": "There is a residual risk.", + "pos": "adjective", + "word_frequency": 20092 + }, + { + "word": "rétroviseur", + "article_with_word": "le rétroviseur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rearview mirror", + "example_sentence_native": "Regarde dans le rétroviseur avant de changer de voie.", + "example_sentence_english": "Look in the rearview mirror before changing lanes.", + "pos": "noun", + "word_frequency": 20093 + }, + { + "word": "réédité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-edited;reissued", + "example_sentence_native": "Ce livre a été réédité avec une nouvelle préface.", + "example_sentence_english": "This book has been reissued with a new preface.", + "pos": "adjective", + "word_frequency": 20094 + }, + { + "word": "sacristie", + "article_with_word": "la sacristie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacristy", + "example_sentence_native": "Le prêtre se prépare dans la sacristie.", + "example_sentence_english": "The priest prepares in the sacristy.", + "pos": "noun", + "word_frequency": 20095 + }, + { + "word": "scandalisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandalized;shocked", + "example_sentence_native": "Elle était scandalisée par son comportement.", + "example_sentence_english": "She was scandalized by his behavior.", + "pos": "adjective", + "word_frequency": 20098 + }, + { + "word": "soutirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extract;to wring out", + "example_sentence_native": "Il a essayé de lui soutirer des informations.", + "example_sentence_english": "He tried to extract information from him.", + "pos": "verb", + "word_frequency": 20105 + }, + { + "word": "supreme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supreme;ultimate", + "example_sentence_native": "C'est la décision suprême.", + "example_sentence_english": "It's the supreme decision.", + "pos": "adjective", + "word_frequency": 20108 + }, + { + "word": "survolé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flown over;skimmed (over)", + "example_sentence_native": "Le paysage survolé était magnifique.", + "example_sentence_english": "The landscape flown over was magnificent.", + "pos": "adjective", + "word_frequency": 20109 + }, + { + "word": "séquestre", + "article_with_word": "le séquestre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sequestration;deposit", + "example_sentence_native": "Les biens ont été placés sous séquestre.", + "example_sentence_english": "The assets were placed under sequestration.", + "pos": "noun", + "word_frequency": 20111 + }, + { + "word": "taudis", + "article_with_word": "le taudis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slum;hovel", + "example_sentence_native": "Ils vivaient dans un petit taudis.", + "example_sentence_english": "They lived in a small hovel.", + "pos": "noun", + "word_frequency": 20113 + }, + { + "word": "trac", + "article_with_word": "le trac", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage fright;jitters", + "example_sentence_native": "Il a toujours le trac avant de monter sur scène.", + "example_sentence_english": "He always has stage fright before going on stage.", + "pos": "noun", + "word_frequency": 20117 + }, + { + "word": "traumatisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traumatized", + "example_sentence_native": "L'enfant était traumatisé par l'accident.", + "example_sentence_english": "The child was traumatized by the accident.", + "pos": "adjective", + "word_frequency": 20118 + }, + { + "word": "truie", + "article_with_word": "la truie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sow (female pig)", + "example_sentence_native": "La truie a eu une portée de porcelets.", + "example_sentence_english": "The sow had a litter of piglets.", + "pos": "noun", + "word_frequency": 20119 + }, + { + "word": "trépied", + "article_with_word": "un trépied", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tripod", + "example_sentence_native": "J'ai besoin d'un trépied pour stabiliser mon appareil photo.", + "example_sentence_english": "I need a tripod to stabilize my camera.", + "pos": "noun", + "word_frequency": 20120 + }, + { + "word": "tuque", + "article_with_word": "une tuque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beanie", + "example_sentence_native": "Il fait froid, mets ta tuque.", + "example_sentence_english": "It's cold, put on your beanie.", + "pos": "noun", + "word_frequency": 20121 + }, + { + "word": "téléchargeable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downloadable", + "example_sentence_native": "Ce document est téléchargeable gratuitement sur le site web.", + "example_sentence_english": "This document is freely downloadable from the website.", + "pos": "adjective", + "word_frequency": 20122 + }, + { + "word": "ébat", + "article_with_word": "un ébat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frolic;romp", + "example_sentence_native": "Les jeunes chiots s'amusaient dans leurs ébats.", + "example_sentence_english": "The young puppies were enjoying their frolics.", + "pos": "noun", + "word_frequency": 20129 + }, + { + "word": "éblouissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dazzling;blinding", + "example_sentence_native": "Le soleil était éblouissant ce matin.", + "example_sentence_english": "The sun was dazzling this morning.", + "pos": "adjective", + "word_frequency": 20130 + }, + { + "word": "énervement", + "article_with_word": "un énervement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritation;annoyance", + "example_sentence_native": "Son énervement était palpable.", + "example_sentence_english": "His irritation was palpable.", + "pos": "noun", + "word_frequency": 20131 + }, + { + "word": "aboyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bark", + "example_sentence_native": "Le chien a commencé à aboyer très fort.", + "example_sentence_english": "The dog started to bark very loudly.", + "pos": "verb", + "word_frequency": 20132 + }, + { + "word": "acclamé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acclaimed;cheered", + "example_sentence_native": "L'artiste a été acclamé par la foule.", + "example_sentence_english": "The artist was acclaimed by the crowd.", + "pos": "adjective", + "word_frequency": 20133 + }, + { + "word": "accru", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased;accrued", + "example_sentence_native": "Il y a eu un intérêt accru pour ce sujet.", + "example_sentence_english": "There has been an increased interest in this topic.", + "pos": "adjective", + "word_frequency": 20134 + }, + { + "word": "ainé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elder;eldest", + "example_sentence_native": "Mon frère aîné est médecin.", + "example_sentence_english": "My elder brother is a doctor.", + "pos": "adjective", + "word_frequency": 20139 + }, + { + "word": "albinos", + "article_with_word": "un albinos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "albino", + "example_sentence_native": "L'animal était un albinos rare.", + "example_sentence_english": "The animal was a rare albino.", + "pos": "noun", + "word_frequency": 20140 + }, + { + "word": "allégé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light;reduced-fat", + "example_sentence_native": "J'achète du lait allégé.", + "example_sentence_english": "I buy reduced-fat milk.", + "pos": "adjective", + "word_frequency": 20142 + }, + { + "word": "altérité", + "article_with_word": "l'altérité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "otherness", + "example_sentence_native": "La reconnaissance de l'altérité est essentielle pour la tolérance.", + "example_sentence_english": "The recognition of otherness is essential for tolerance.", + "pos": "noun", + "word_frequency": 20143 + }, + { + "word": "amazonien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Amazonian", + "example_sentence_native": "La forêt amazonienne est très vaste.", + "example_sentence_english": "The Amazonian forest is very vast.", + "pos": "adjective", + "word_frequency": 20146 + }, + { + "word": "apens", + "article_with_word": "un apens", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ambush;trap (as in 'guet-apens')", + "example_sentence_native": "Il est tombé dans un guet-apens.", + "example_sentence_english": "He fell into an ambush.", + "pos": "noun", + "word_frequency": 20150 + }, + { + "word": "appréhendé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apprehended;understood", + "example_sentence_native": "Le suspect a été appréhendé par la police.", + "example_sentence_english": "The suspect was apprehended by the police.", + "pos": "adjective", + "word_frequency": 20151 + }, + { + "word": "arbalète", + "article_with_word": "une arbalète", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossbow", + "example_sentence_native": "L'arbalète était une arme médiévale.", + "example_sentence_english": "The crossbow was a medieval weapon.", + "pos": "noun", + "word_frequency": 20152 + }, + { + "word": "aspirant", + "article_with_word": "un aspirant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspirant;candidate", + "example_sentence_native": "Il est un aspirant écrivain.", + "example_sentence_english": "He is an aspiring writer.", + "pos": "noun", + "word_frequency": 20153 + }, + { + "word": "astrophysique", + "article_with_word": "l'astrophysique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astrophysics", + "example_sentence_native": "Elle étudie l'astrophysique à l'université.", + "example_sentence_english": "She studies astrophysics at the university.", + "pos": "noun", + "word_frequency": 20155 + }, + { + "word": "attique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Attic;Athenian", + "example_sentence_native": "L'architecture attique est très influente.", + "example_sentence_english": "Attic architecture is very influential.", + "pos": "adjective", + "word_frequency": 20156 + }, + { + "word": "autoroutier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorway;highway (adj.)", + "example_sentence_native": "Le réseau autoroutier français est bien développé.", + "example_sentence_english": "The French motorway network is well developed.", + "pos": "adjective", + "word_frequency": 20157 + }, + { + "word": "badass", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "badass", + "example_sentence_native": "C'est un personnage vraiment badass dans le film.", + "example_sentence_english": "He's a really badass character in the movie.", + "pos": "adjective", + "word_frequency": 20158 + }, + { + "word": "bahut", + "article_with_word": "un bahut", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high school (slang);chest", + "example_sentence_native": "Je vais au bahut tous les jours.", + "example_sentence_english": "I go to high school every day.", + "pos": "noun", + "word_frequency": 20159 + }, + { + "word": "biensur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "of course", + "example_sentence_native": "Bien sûr, je peux vous aider avec ça.", + "example_sentence_english": "Of course, I can help you with that.", + "pos": "adverb", + "word_frequency": 20164 + }, + { + "word": "biochimie", + "article_with_word": "la biochimie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biochemistry", + "example_sentence_native": "Elle étudie la biochimie à l'université.", + "example_sentence_english": "She studies biochemistry at the university.", + "pos": "noun", + "word_frequency": 20165 + }, + { + "word": "boni", + "article_with_word": "le boni", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bonus;surplus", + "example_sentence_native": "Les employés ont reçu un boni à la fin de l'année.", + "example_sentence_english": "The employees received a bonus at the end of the year.", + "pos": "noun", + "word_frequency": 20167 + }, + { + "word": "bottine", + "article_with_word": "la bottine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ankle boot", + "example_sentence_native": "Elle a acheté une nouvelle paire de bottines en cuir.", + "example_sentence_english": "She bought a new pair of leather ankle boots.", + "pos": "noun", + "word_frequency": 20168 + }, + { + "word": "brasier", + "article_with_word": "le brasier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blaze;inferno", + "example_sentence_native": "Le brasier a ravagé la forêt en quelques heures.", + "example_sentence_english": "The blaze ravaged the forest in a few hours.", + "pos": "noun", + "word_frequency": 20169 + }, + { + "word": "buffle", + "article_with_word": "le buffle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buffalo", + "example_sentence_native": "Le buffle d'eau est un animal puissant.", + "example_sentence_english": "The water buffalo is a powerful animal.", + "pos": "noun", + "word_frequency": 20172 + }, + { + "word": "bureautique", + "article_with_word": "la bureautique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "office automation;office software", + "example_sentence_native": "Il suit une formation en bureautique pour améliorer ses compétences.", + "example_sentence_english": "He is taking an office automation course to improve his skills.", + "pos": "noun", + "word_frequency": 20173 + }, + { + "word": "bât", + "article_with_word": "le bât", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pack saddle", + "example_sentence_native": "L'âne portait un lourd bât rempli de provisions.", + "example_sentence_english": "The donkey carried a heavy pack saddle full of provisions.", + "pos": "noun", + "word_frequency": 20174 + }, + { + "word": "cane", + "article_with_word": "la cane", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duck (female)", + "example_sentence_native": "La cane nageait tranquillement sur l'étang.", + "example_sentence_english": "The duck was swimming peacefully on the pond.", + "pos": "noun", + "word_frequency": 20179 + }, + { + "word": "cautionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to guarantee;to endorse", + "example_sentence_native": "La banque a refusé de cautionner son prêt.", + "example_sentence_english": "The bank refused to guarantee his loan.", + "pos": "verb", + "word_frequency": 20180 + }, + { + "word": "charlatan", + "article_with_word": "le charlatan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charlatan;quack", + "example_sentence_native": "Il a été démasqué comme un charlatan vendant de fausses promesses.", + "example_sentence_english": "He was exposed as a charlatan selling false promises.", + "pos": "noun", + "word_frequency": 20183 + }, + { + "word": "charmeur", + "article_with_word": "le charmeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charmer", + "example_sentence_native": "C'est un vrai charmeur, il sait comment parler aux gens.", + "example_sentence_english": "He's a real charmer, he knows how to talk to people.", + "pos": "noun", + "word_frequency": 20184 + }, + { + "word": "chauffant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heating;heated", + "example_sentence_native": "Nous avons installé un plancher chauffant dans la salle de bain.", + "example_sentence_english": "We installed a heated floor in the bathroom.", + "pos": "adjective", + "word_frequency": 20187 + }, + { + "word": "chérif", + "article_with_word": "le chérif", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sheriff;sharif", + "example_sentence_native": "Le chérif a arrêté le suspect après une longue poursuite.", + "example_sentence_english": "The sheriff arrested the suspect after a long chase.", + "pos": "noun", + "word_frequency": 20192 + }, + { + "word": "cigale", + "article_with_word": "la cigale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cicada", + "example_sentence_native": "En été, on entend le chant des cigales dans le sud de la France.", + "example_sentence_english": "In summer, you can hear the song of cicadas in the south of France.", + "pos": "noun", + "word_frequency": 20193 + }, + { + "word": "cime", + "article_with_word": "la cime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summit;peak", + "example_sentence_native": "Les alpinistes ont atteint la cime de la montagne au lever du soleil.", + "example_sentence_english": "The climbers reached the summit of the mountain at sunrise.", + "pos": "noun", + "word_frequency": 20194 + }, + { + "word": "cocasse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comical;funny", + "example_sentence_native": "La situation était tellement cocasse que tout le monde a éclaté de rire.", + "example_sentence_english": "The situation was so comical that everyone burst out laughing.", + "pos": "adjective", + "word_frequency": 20195 + }, + { + "word": "colonisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonized", + "example_sentence_native": "Le pays a été colonisé pendant plusieurs siècles.", + "example_sentence_english": "The country was colonized for several centuries.", + "pos": "adjective", + "word_frequency": 20196 + }, + { + "word": "comtois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "from Franche-Comté", + "example_sentence_native": "Le cheval comtois est une race de cheval de trait originaire de Franche-Comté.", + "example_sentence_english": "The Comtois horse is a breed of draft horse originating from Franche-Comté.", + "pos": "adjective", + "word_frequency": 20198 + }, + { + "word": "configurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to configure;to set up", + "example_sentence_native": "Vous devez configurer les paramètres de votre nouveau téléphone.", + "example_sentence_english": "You need to configure the settings of your new phone.", + "pos": "verb", + "word_frequency": 20199 + }, + { + "word": "confit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candied;preserved", + "example_sentence_native": "Le canard confit est une spécialité du Sud-Ouest.", + "example_sentence_english": "Confit duck is a specialty of the Southwest.", + "pos": "adjective", + "word_frequency": 20200 + }, + { + "word": "creusement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digging;excavation", + "example_sentence_native": "Le creusement du tunnel a pris des mois.", + "example_sentence_english": "The digging of the tunnel took months.", + "pos": "noun", + "word_frequency": 20206 + }, + { + "word": "cui", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chirp;tweet", + "example_sentence_native": "On entendait le cui-cui des oiseaux le matin.", + "example_sentence_english": "We could hear the chirping of the birds in the morning.", + "pos": "noun", + "word_frequency": 20208 + }, + { + "word": "défait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeated;undone;disheveled", + "example_sentence_native": "Après la longue marche, il avait l'air défait.", + "example_sentence_english": "After the long walk, he looked disheveled.", + "pos": "adjective", + "word_frequency": 20217 + }, + { + "word": "défié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defied;challenged", + "example_sentence_native": "Son attitude défiée montrait sa détermination.", + "example_sentence_english": "His defiant attitude showed his determination.", + "pos": "adjective", + "word_frequency": 20218 + }, + { + "word": "démontage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disassembly;dismantling", + "example_sentence_native": "Le démontage du moteur a pris plusieurs heures.", + "example_sentence_english": "The disassembly of the engine took several hours.", + "pos": "noun", + "word_frequency": 20219 + }, + { + "word": "désuétude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disuse;obsolescence", + "example_sentence_native": "Beaucoup de vieilles traditions tombent en désuétude.", + "example_sentence_english": "Many old traditions are falling into disuse.", + "pos": "noun", + "word_frequency": 20220 + }, + { + "word": "embryonnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embryonic;rudimentary", + "example_sentence_native": "Le projet est encore au stade embryonnaire.", + "example_sentence_english": "The project is still at an embryonic stage.", + "pos": "adjective", + "word_frequency": 20223 + }, + { + "word": "enclenché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engaged;triggered;started", + "example_sentence_native": "Le processus est maintenant enclenché.", + "example_sentence_english": "The process is now engaged.", + "pos": "adjective", + "word_frequency": 20224 + }, + { + "word": "englobant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encompassing;inclusive", + "example_sentence_native": "C'est une approche englobante de la question.", + "example_sentence_english": "It's an all-encompassing approach to the issue.", + "pos": "adjective", + "word_frequency": 20225 + }, + { + "word": "englouti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swallowed;engulfed;submerged", + "example_sentence_native": "La ville a été engloutie par les eaux.", + "example_sentence_english": "The city was engulfed by the waters.", + "pos": "adjective", + "word_frequency": 20226 + }, + { + "word": "entreprenant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enterprising;resourceful", + "example_sentence_native": "C'est une personne très entreprenante et dynamique.", + "example_sentence_english": "She is a very enterprising and dynamic person.", + "pos": "adjective", + "word_frequency": 20227 + }, + { + "word": "exempte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exempt;free from", + "example_sentence_native": "Elle est exempte de tout reproche.", + "example_sentence_english": "She is free from all blame.", + "pos": "adjective", + "word_frequency": 20230 + }, + { + "word": "exporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exported", + "example_sentence_native": "Le produit est exporté dans le monde entier.", + "example_sentence_english": "The product is exported worldwide.", + "pos": "adjective", + "word_frequency": 20231 + }, + { + "word": "expresso", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "espresso", + "example_sentence_native": "Je prends un expresso après le repas.", + "example_sentence_english": "I have an espresso after the meal.", + "pos": "noun", + "word_frequency": 20232 + }, + { + "word": "fastidieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tedious;boring;cumbersome", + "example_sentence_native": "La tâche était longue et fastidieuse.", + "example_sentence_english": "The task was long and tedious.", + "pos": "adjective", + "word_frequency": 20233 + }, + { + "word": "florilège", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthology;selection;collection", + "example_sentence_native": "Ce livre est un florilège de poèmes classiques.", + "example_sentence_english": "This book is an anthology of classic poems.", + "pos": "noun", + "word_frequency": 20236 + }, + { + "word": "footing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jogging", + "example_sentence_native": "Je fais du footing tous les matins.", + "example_sentence_english": "I go jogging every morning.", + "pos": "noun", + "word_frequency": 20237 + }, + { + "word": "fétichisme", + "article_with_word": "le fétichisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetishism", + "example_sentence_native": "Le fétichisme est une forme d'adoration ou d'attachement excessif à un objet.", + "example_sentence_english": "Fetishism is a form of worship or excessive attachment to an object.", + "pos": "noun", + "word_frequency": 20241 + }, + { + "word": "grenoblois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Grenoble;Grenoblois", + "example_sentence_native": "Il est d'origine grenobloise.", + "example_sentence_english": "He is of Grenoblois origin.", + "pos": "adjective", + "word_frequency": 20245 + }, + { + "word": "hardi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bold;daring", + "example_sentence_native": "C'était une décision très hardie de sa part.", + "example_sentence_english": "It was a very bold decision on his part.", + "pos": "adjective", + "word_frequency": 20249 + }, + { + "word": "hasardeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hazardous;risky", + "example_sentence_native": "Ce projet est un peu hasardeux.", + "example_sentence_english": "This project is a bit risky.", + "pos": "adjective", + "word_frequency": 20250 + }, + { + "word": "hibernation", + "article_with_word": "l'hibernation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hibernation", + "example_sentence_native": "L'ours se prépare pour l'hibernation hivernale.", + "example_sentence_english": "The bear is preparing for winter hibernation.", + "pos": "noun", + "word_frequency": 20254 + }, + { + "word": "hindi", + "article_with_word": "le hindi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hindi", + "example_sentence_native": "Le hindi est parlé en Inde.", + "example_sentence_english": "Hindi is spoken in India.", + "pos": "noun", + "word_frequency": 20255 + }, + { + "word": "hyperbole", + "article_with_word": "l'hyperbole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hyperbole", + "example_sentence_native": "Son discours était plein d'hyperboles.", + "example_sentence_english": "His speech was full of hyperboles.", + "pos": "noun", + "word_frequency": 20257 + }, + { + "word": "indécence", + "article_with_word": "l'indécence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indecency", + "example_sentence_native": "Son comportement était d'une indécence choquante.", + "example_sentence_english": "His behavior was shockingly indecent.", + "pos": "noun", + "word_frequency": 20260 + }, + { + "word": "infinitif", + "article_with_word": "l'infinitif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infinitive", + "example_sentence_native": "Le verbe 'être' est à l'infinitif.", + "example_sentence_english": "The verb 'to be' is in the infinitive.", + "pos": "noun", + "word_frequency": 20261 + }, + { + "word": "inflammable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flammable", + "example_sentence_native": "Ce produit est hautement inflammable.", + "example_sentence_english": "This product is highly flammable.", + "pos": "adjective", + "word_frequency": 20262 + }, + { + "word": "injustifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustified", + "example_sentence_native": "Sa colère était totalement injustifiée.", + "example_sentence_english": "His anger was totally unjustified.", + "pos": "adjective", + "word_frequency": 20263 + }, + { + "word": "interchangeable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interchangeable", + "example_sentence_native": "Les pièces de ce modèle sont interchangeables.", + "example_sentence_english": "The parts of this model are interchangeable.", + "pos": "adjective", + "word_frequency": 20264 + }, + { + "word": "intonation", + "article_with_word": "l'intonation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intonation", + "example_sentence_native": "Son intonation révélait sa surprise.", + "example_sentence_english": "Her intonation revealed her surprise.", + "pos": "noun", + "word_frequency": 20265 + }, + { + "word": "irradiation", + "article_with_word": "l'irradiation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irradiation", + "example_sentence_native": "L'irradiation des aliments est une méthode de conservation.", + "example_sentence_english": "Food irradiation is a preservation method.", + "pos": "noun", + "word_frequency": 20266 + }, + { + "word": "leger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "light (in weight);slight", + "example_sentence_native": "Ce sac est très léger.", + "example_sentence_english": "This bag is very light.", + "pos": "adjective", + "word_frequency": 20278 + }, + { + "word": "mania", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mania", + "example_sentence_native": "Il souffre d'une certaine mania pour la propreté.", + "example_sentence_english": "He suffers from a certain mania for cleanliness.", + "pos": "noun", + "word_frequency": 20282 + }, + { + "word": "martinet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swift (bird)", + "example_sentence_native": "Le martinet est un oiseau rapide qui vole en groupe.", + "example_sentence_english": "The swift is a fast bird that flies in groups.", + "pos": "noun", + "word_frequency": 20286 + }, + { + "word": "maso", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masochist", + "example_sentence_native": "Il a été décrit comme un maso par ses amis.", + "example_sentence_english": "He was described as a masochist by his friends.", + "pos": "noun", + "word_frequency": 20287 + }, + { + "word": "masseur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masseur", + "example_sentence_native": "Le masseur a soulagé mes douleurs au dos.", + "example_sentence_english": "The masseur relieved my back pain.", + "pos": "noun", + "word_frequency": 20288 + }, + { + "word": "mazout", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuel oil", + "example_sentence_native": "Le prix du mazout a augmenté.", + "example_sentence_english": "The price of fuel oil has increased.", + "pos": "noun", + "word_frequency": 20292 + }, + { + "word": "metier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "profession;trade", + "example_sentence_native": "Quel est votre métier ?", + "example_sentence_english": "What is your profession?", + "pos": "noun", + "word_frequency": 20293 + }, + { + "word": "microphone", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "example_sentence_native": "Le chanteur a parlé dans le microphone.", + "example_sentence_english": "The singer spoke into the microphone.", + "pos": "noun", + "word_frequency": 20294 + }, + { + "word": "moisi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moldy;musty", + "example_sentence_native": "Le pain est devenu moisi.", + "example_sentence_english": "The bread has become moldy.", + "pos": "adjective", + "word_frequency": 20296 + }, + { + "word": "monarchique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarchical", + "example_sentence_native": "Le système monarchique a été aboli.", + "example_sentence_english": "The monarchical system was abolished.", + "pos": "adjective", + "word_frequency": 20298 + }, + { + "word": "moudre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grind", + "example_sentence_native": "Il faut moudre le café avant de le préparer.", + "example_sentence_english": "You have to grind the coffee before preparing it.", + "pos": "verb", + "word_frequency": 20301 + }, + { + "word": "moulure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molding;trim", + "example_sentence_native": "Les moulures du plafond sont très élégantes.", + "example_sentence_english": "The ceiling moldings are very elegant.", + "pos": "noun", + "word_frequency": 20302 + }, + { + "word": "mulet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mule", + "example_sentence_native": "Le mulet est un animal hybride.", + "example_sentence_english": "The mule is a hybrid animal.", + "pos": "noun", + "word_frequency": 20303 + }, + { + "word": "méme", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "same;even", + "example_sentence_native": "Nous avons le même avis.", + "example_sentence_english": "We have the same opinion.", + "pos": "adjective", + "word_frequency": 20305 + }, + { + "word": "neutralisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutralization", + "example_sentence_native": "La neutralisation de l'acide est une réaction chimique.", + "example_sentence_english": "The neutralization of the acid is a chemical reaction.", + "pos": "noun", + "word_frequency": 20306 + }, + { + "word": "numismatique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "numismatics", + "example_sentence_native": "La numismatique est l'étude des monnaies et médailles.", + "example_sentence_english": "Numismatics is the study of coins and medals.", + "pos": "noun", + "word_frequency": 20311 + }, + { + "word": "nuptial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuptial;wedding", + "example_sentence_native": "Ils ont échangé leurs vœux nuptiaux.", + "example_sentence_english": "They exchanged their nuptial vows.", + "pos": "adjective", + "word_frequency": 20312 + }, + { + "word": "nuée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swarm;cloud (of insects;birds)", + "example_sentence_native": "Une nuée d'oiseaux s'est envolée.", + "example_sentence_english": "A swarm of birds flew away.", + "pos": "noun", + "word_frequency": 20313 + }, + { + "word": "néon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neon", + "example_sentence_native": "L'enseigne lumineuse est faite de néon.", + "example_sentence_english": "The illuminated sign is made of neon.", + "pos": "noun", + "word_frequency": 20314 + }, + { + "word": "oraison", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prayer;oration", + "example_sentence_native": "Il a prononcé une oraison funèbre émouvante.", + "example_sentence_english": "He delivered a moving funeral oration.", + "pos": "noun", + "word_frequency": 20316 + }, + { + "word": "originellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originally", + "example_sentence_native": "Le bâtiment était originellement une église.", + "example_sentence_english": "The building was originally a church.", + "pos": "adverb", + "word_frequency": 20317 + }, + { + "word": "orque", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orca;killer whale", + "example_sentence_native": "L'orque est un grand mammifère marin.", + "example_sentence_english": "The orca is a large marine mammal.", + "pos": "noun", + "word_frequency": 20318 + }, + { + "word": "palpitant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thrilling;exciting;pulsating", + "example_sentence_native": "C'était un récit palpitant du début à la fin.", + "example_sentence_english": "It was a thrilling account from beginning to end.", + "pos": "adjective", + "word_frequency": 20319 + }, + { + "word": "parfumé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfumed", + "example_sentence_native": "La rose est très parfumée.", + "example_sentence_english": "The rose is very perfumed.", + "pos": "adjective", + "word_frequency": 20320 + }, + { + "word": "parrainé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsored", + "example_sentence_native": "L'événement est parrainé par une grande entreprise.", + "example_sentence_english": "The event is sponsored by a large company.", + "pos": "adjective", + "word_frequency": 20321 + }, + { + "word": "paru", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "published", + "example_sentence_native": "Le nouvel article est paru hier.", + "example_sentence_english": "The new article was published yesterday.", + "pos": "adjective", + "word_frequency": 20322 + }, + { + "word": "persique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Persian", + "example_sentence_native": "Le Golfe Persique est une région stratégique.", + "example_sentence_english": "The Persian Gulf is a strategic region.", + "pos": "adjective", + "word_frequency": 20326 + }, + { + "word": "pesanteur", + "article_with_word": "la pesanteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravity", + "example_sentence_native": "La pesanteur nous maintient au sol.", + "example_sentence_english": "Gravity keeps us on the ground.", + "pos": "noun", + "word_frequency": 20327 + }, + { + "word": "plane", + "article_with_word": "la plane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drawknife", + "example_sentence_native": "Le menuisier utilise une plane pour travailler le bois.", + "example_sentence_english": "The carpenter uses a drawknife to work the wood.", + "pos": "noun", + "word_frequency": 20329 + }, + { + "word": "quille", + "article_with_word": "la quille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skittle", + "example_sentence_native": "Il a fait tomber toutes les quilles au bowling.", + "example_sentence_english": "He knocked down all the skittles in bowling.", + "pos": "noun", + "word_frequency": 20336 + }, + { + "word": "raccroché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hung up", + "example_sentence_native": "Le téléphone est raccroché.", + "example_sentence_english": "The phone is hung up.", + "pos": "adjective", + "word_frequency": 20337 + }, + { + "word": "radicalisme", + "article_with_word": "le radicalisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalism", + "example_sentence_native": "Le radicalisme peut mener à des extrêmes.", + "example_sentence_english": "Radicalism can lead to extremes.", + "pos": "noun", + "word_frequency": 20338 + }, + { + "word": "rallumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to relight", + "example_sentence_native": "Peux-tu rallumer la lumière s'il te plaît ?", + "example_sentence_english": "Can you turn the light back on, please?", + "pos": "verb", + "word_frequency": 20339 + }, + { + "word": "reconstitué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstituted", + "example_sentence_native": "Le dossier a été reconstitué après l'incendie.", + "example_sentence_english": "The file was reconstituted after the fire.", + "pos": "adjective", + "word_frequency": 20340 + }, + { + "word": "reflexion", + "article_with_word": "la réflexion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection", + "example_sentence_native": "Cela demande une profonde réflexion.", + "example_sentence_english": "This requires deep thought.", + "pos": "noun", + "word_frequency": 20341 + }, + { + "word": "remorquage", + "article_with_word": "le remorquage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "towing", + "example_sentence_native": "Le service de remorquage est arrivé rapidement.", + "example_sentence_english": "The towing service arrived quickly.", + "pos": "noun", + "word_frequency": 20342 + }, + { + "word": "remuant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restless", + "example_sentence_native": "C'est un enfant très remuant.", + "example_sentence_english": "He is a very restless child.", + "pos": "adjective", + "word_frequency": 20343 + }, + { + "word": "remémorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to recall", + "example_sentence_native": "Il aime se remémorer ses souvenirs d'enfance.", + "example_sentence_english": "He likes to recall his childhood memories.", + "pos": "verb", + "word_frequency": 20344 + }, + { + "word": "renversant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stunning", + "example_sentence_native": "La vue depuis le sommet est renversante.", + "example_sentence_english": "The view from the summit is stunning.", + "pos": "adjective", + "word_frequency": 20345 + }, + { + "word": "repentance", + "article_with_word": "la repentance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repentance", + "example_sentence_native": "Il a montré des signes de repentance.", + "example_sentence_english": "He showed signs of repentance.", + "pos": "noun", + "word_frequency": 20346 + }, + { + "word": "reversé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paid back", + "example_sentence_native": "Le montant a été reversé sur son compte.", + "example_sentence_english": "The amount was paid back into his account.", + "pos": "adjective", + "word_frequency": 20347 + }, + { + "word": "risible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laughable", + "example_sentence_native": "Son excuse était risible.", + "example_sentence_english": "His excuse was laughable.", + "pos": "adjective", + "word_frequency": 20348 + }, + { + "word": "rodéo", + "article_with_word": "le rodéo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rodeo", + "example_sentence_native": "Nous avons assisté à un rodéo spectaculaire.", + "example_sentence_english": "We attended a spectacular rodeo.", + "pos": "noun", + "word_frequency": 20349 + }, + { + "word": "roupie", + "article_with_word": "la roupie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rupee", + "example_sentence_native": "La roupie indienne est la monnaie de l'Inde.", + "example_sentence_english": "The Indian rupee is the currency of India.", + "pos": "noun", + "word_frequency": 20350 + }, + { + "word": "réinstaller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reinstall", + "example_sentence_native": "J'ai dû réinstaller le logiciel.", + "example_sentence_english": "I had to reinstall the software.", + "pos": "verb", + "word_frequency": 20352 + }, + { + "word": "rééquilibrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rebalance", + "example_sentence_native": "Il faut rééquilibrer le budget.", + "example_sentence_english": "The budget needs to be rebalanced.", + "pos": "verb", + "word_frequency": 20353 + }, + { + "word": "saharien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saharan", + "example_sentence_native": "Le climat saharien est très sec.", + "example_sentence_english": "The Saharan climate is very dry.", + "pos": "adjective", + "word_frequency": 20355 + }, + { + "word": "salubrité", + "article_with_word": "la salubrité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "healthiness", + "example_sentence_native": "La salubrité publique est essentielle.", + "example_sentence_english": "Public healthiness is essential.", + "pos": "noun", + "word_frequency": 20357 + }, + { + "word": "scenario", + "article_with_word": "le scénario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scenario", + "example_sentence_native": "Le scénario du film est excellent.", + "example_sentence_english": "The film's script is excellent.", + "pos": "noun", + "word_frequency": 20358 + }, + { + "word": "segmentation", + "article_with_word": "la segmentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "segmentation", + "example_sentence_native": "La segmentation du marché est cruciale pour le marketing.", + "example_sentence_english": "Market segmentation is crucial for marketing.", + "pos": "noun", + "word_frequency": 20359 + }, + { + "word": "semoule", + "article_with_word": "la semoule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semolina", + "example_sentence_native": "J'ai préparé un couscous avec de la semoule fine.", + "example_sentence_english": "I prepared a couscous with fine semolina.", + "pos": "noun", + "word_frequency": 20360 + }, + { + "word": "septique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skeptical", + "example_sentence_native": "Il est resté septique face à ses explications.", + "example_sentence_english": "He remained skeptical of his explanations.", + "pos": "adjective", + "word_frequency": 20361 + }, + { + "word": "sommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to summon;to order", + "example_sentence_native": "La police l'a sommé de s'arrêter.", + "example_sentence_english": "The police ordered him to stop.", + "pos": "verb", + "word_frequency": 20368 + }, + { + "word": "souillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soiled;tainted", + "example_sentence_native": "Sa réputation a été souillée par le scandale.", + "example_sentence_english": "His reputation was tainted by the scandal.", + "pos": "adjective", + "word_frequency": 20371 + }, + { + "word": "soutenance", + "article_with_word": "la soutenance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defense (of a thesis;dissertation)", + "example_sentence_native": "La soutenance de sa thèse est prévue pour la semaine prochaine.", + "example_sentence_english": "The defense of his thesis is scheduled for next week.", + "pos": "noun", + "word_frequency": 20372 + }, + { + "word": "starter", + "article_with_word": "le starter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starter (car engine part or appetizer)", + "example_sentence_native": "Le starter de la voiture est cassé.", + "example_sentence_english": "The car's starter is broken.", + "pos": "noun", + "word_frequency": 20375 + }, + { + "word": "stimulus", + "article_with_word": "le stimulus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stimulus", + "example_sentence_native": "Le gouvernement a annoncé un plan de stimulus économique.", + "example_sentence_english": "The government announced an economic stimulus plan.", + "pos": "noun", + "word_frequency": 20377 + }, + { + "word": "subside", + "article_with_word": "le subside", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsidy;grant", + "example_sentence_native": "L'association a reçu un subside de la ville.", + "example_sentence_english": "The association received a grant from the city.", + "pos": "noun", + "word_frequency": 20378 + }, + { + "word": "surintendant", + "article_with_word": "le surintendant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendent", + "example_sentence_native": "Le surintendant est responsable de la gestion des bâtiments.", + "example_sentence_english": "The superintendent is responsible for building management.", + "pos": "noun", + "word_frequency": 20380 + }, + { + "word": "sécurisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secured;safe", + "example_sentence_native": "Le site web est entièrement sécurisé.", + "example_sentence_english": "The website is fully secured.", + "pos": "adjective", + "word_frequency": 20383 + }, + { + "word": "tonnage", + "article_with_word": "le tonnage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tonnage", + "example_sentence_native": "Le tonnage du navire est impressionnant.", + "example_sentence_english": "The ship's tonnage is impressive.", + "pos": "noun", + "word_frequency": 20388 + }, + { + "word": "tractation", + "article_with_word": "la tractation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "negotiation;dealing", + "example_sentence_native": "Les tractations pour l'accord ont duré des mois.", + "example_sentence_english": "The negotiations for the agreement lasted for months.", + "pos": "noun", + "word_frequency": 20389 + }, + { + "word": "trapèze", + "article_with_word": "le trapèze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trapezoid;trapeze", + "example_sentence_native": "L'acrobate a exécuté un numéro spectaculaire sur le trapèze.", + "example_sentence_english": "The acrobat performed a spectacular act on the trapeze.", + "pos": "noun", + "word_frequency": 20390 + }, + { + "word": "tripartite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tripartite", + "example_sentence_native": "Un accord tripartite a été signé entre les trois parties.", + "example_sentence_english": "A tripartite agreement was signed between the three parties.", + "pos": "adjective", + "word_frequency": 20391 + }, + { + "word": "turbulent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbulent", + "example_sentence_native": "L'avion a traversé une zone de turbulences.", + "example_sentence_english": "The plane went through a turbulent zone.", + "pos": "adjective", + "word_frequency": 20392 + }, + { + "word": "tète", + "article_with_word": "la tête", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "head", + "example_sentence_native": "Il a mal à la tête.", + "example_sentence_english": "He has a headache.", + "pos": "noun", + "word_frequency": 20393 + }, + { + "word": "usufruit", + "article_with_word": "l'usufruit", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "usufruct", + "example_sentence_native": "Elle a l'usufruit de la maison.", + "example_sentence_english": "She has the usufruct of the house.", + "pos": "noun", + "word_frequency": 20397 + }, + { + "word": "viennois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Viennese", + "example_sentence_native": "J'adore les pâtisseries viennoises.", + "example_sentence_english": "I love Viennese pastries.", + "pos": "adjective", + "word_frequency": 20400 + }, + { + "word": "virulence", + "article_with_word": "la virulence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virulence", + "example_sentence_native": "La virulence du virus a surpris les scientifiques.", + "example_sentence_english": "The virulence of the virus surprised the scientists.", + "pos": "noun", + "word_frequency": 20401 + }, + { + "word": "votation", + "article_with_word": "la votation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vote;ballot", + "example_sentence_native": "La votation populaire aura lieu dimanche prochain.", + "example_sentence_english": "The popular vote will take place next Sunday.", + "pos": "noun", + "word_frequency": 20403 + }, + { + "word": "yougoslave", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Yugoslav", + "example_sentence_native": "Il a des origines yougoslaves.", + "example_sentence_english": "He has Yugoslav origins.", + "pos": "adjective", + "word_frequency": 20409 + }, + { + "word": "échauffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to warm up;to heat up", + "example_sentence_native": "Il faut s'échauffer avant de faire du sport.", + "example_sentence_english": "You need to warm up before doing sports.", + "pos": "verb", + "word_frequency": 20411 + }, + { + "word": "épauler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to support;to back up", + "example_sentence_native": "Ses collègues l'ont épaulé dans ce projet difficile.", + "example_sentence_english": "His colleagues supported him in this difficult project.", + "pos": "verb", + "word_frequency": 20412 + }, + { + "word": "éperdument", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "madly;desperately;passionately", + "example_sentence_native": "Il est tombé éperdument amoureux d'elle.", + "example_sentence_english": "He fell madly in love with her.", + "pos": "adverb", + "word_frequency": 20413 + }, + { + "word": "accolade", + "article_with_word": "une accolade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hug;embrace", + "example_sentence_native": "Elle lui a donné une chaleureuse accolade.", + "example_sentence_english": "She gave him a warm hug.", + "pos": "noun", + "word_frequency": 20414 + }, + { + "word": "admissibilité", + "article_with_word": "l'admissibilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eligibility;admissibility", + "example_sentence_native": "Les critères d'admissibilité sont stricts.", + "example_sentence_english": "The eligibility criteria are strict.", + "pos": "noun", + "word_frequency": 20415 + }, + { + "word": "adosser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lean against;to back", + "example_sentence_native": "Il s'est adossé au mur pour se reposer.", + "example_sentence_english": "He leaned against the wall to rest.", + "pos": "verb", + "word_frequency": 20416 + }, + { + "word": "affilier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affiliate;to join", + "example_sentence_native": "L'association a décidé d'affilier de nouveaux membres.", + "example_sentence_english": "The association decided to affiliate new members.", + "pos": "verb", + "word_frequency": 20418 + }, + { + "word": "affoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to panic;to alarm", + "example_sentence_native": "La nouvelle a affolé la population.", + "example_sentence_english": "The news alarmed the population.", + "pos": "verb", + "word_frequency": 20419 + }, + { + "word": "agreable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pleasant;agreeable", + "example_sentence_native": "C'est une personne très agréable.", + "example_sentence_english": "She is a very pleasant person.", + "pos": "adjective", + "word_frequency": 20420 + }, + { + "word": "ambulancier", + "article_with_word": "un ambulancier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paramedic;ambulance driver", + "example_sentence_native": "L'ambulancier est arrivé rapidement sur les lieux.", + "example_sentence_english": "The paramedic arrived quickly on the scene.", + "pos": "noun", + "word_frequency": 20423 + }, + { + "word": "amirauté", + "article_with_word": "l'amirauté", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "admiralty", + "example_sentence_native": "Le bâtiment de l'amirauté est historique.", + "example_sentence_english": "The admiralty building is historic.", + "pos": "noun", + "word_frequency": 20424 + }, + { + "word": "ampli", + "article_with_word": "un ampli", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amp (amplifier)", + "example_sentence_native": "J'ai acheté un nouvel ampli pour ma guitare.", + "example_sentence_english": "I bought a new amp for my guitar.", + "pos": "noun", + "word_frequency": 20425 + }, + { + "word": "apparenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "related;akin", + "example_sentence_native": "Ces deux langues sont apparentées.", + "example_sentence_english": "These two languages are related.", + "pos": "adjective", + "word_frequency": 20427 + }, + { + "word": "argenterie", + "article_with_word": "l'argenterie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silverware;silver plate", + "example_sentence_native": "Elle a sorti la belle argenterie pour le dîner.", + "example_sentence_english": "She took out the beautiful silverware for dinner.", + "pos": "noun", + "word_frequency": 20430 + }, + { + "word": "assainir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sanitize;to clean up", + "example_sentence_native": "Il est nécessaire d'assainir les finances publiques.", + "example_sentence_english": "It is necessary to clean up public finances.", + "pos": "verb", + "word_frequency": 20435 + }, + { + "word": "auditionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to audition;to interview", + "example_sentence_native": "Le jury va auditionner les candidats demain.", + "example_sentence_english": "The jury will audition the candidates tomorrow.", + "pos": "verb", + "word_frequency": 20436 + }, + { + "word": "balancier", + "article_with_word": "le balancier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pendulum;balance wheel", + "example_sentence_native": "Le balancier de l'horloge oscillait lentement.", + "example_sentence_english": "The clock's pendulum swung slowly.", + "pos": "noun", + "word_frequency": 20437 + }, + { + "word": "balançoire", + "article_with_word": "la balançoire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swing", + "example_sentence_native": "Les enfants aiment jouer sur la balançoire.", + "example_sentence_english": "Children like to play on the swing.", + "pos": "noun", + "word_frequency": 20438 + }, + { + "word": "bercer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rock;to lull", + "example_sentence_native": "Elle berce son bébé pour l'endormir doucement.", + "example_sentence_english": "She rocks her baby to gently put him to sleep.", + "pos": "verb", + "word_frequency": 20442 + }, + { + "word": "bock", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a pint glass;a bock (beer)", + "example_sentence_native": "Je voudrais un bock de bière, s'il vous plaît.", + "example_sentence_english": "I would like a pint of beer, please.", + "pos": "noun", + "word_frequency": 20446 + }, + { + "word": "boucan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racket;din;mess (informal)", + "example_sentence_native": "Quel boucan ils font avec leur musique!", + "example_sentence_english": "What a racket they're making with their music!", + "pos": "noun", + "word_frequency": 20448 + }, + { + "word": "braver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to brave;to defy", + "example_sentence_native": "Il a bravé la tempête pour rentrer chez lui.", + "example_sentence_english": "He braved the storm to go home.", + "pos": "verb", + "word_frequency": 20450 + }, + { + "word": "breuvage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beverage;drink", + "example_sentence_native": "Ce breuvage chaud est parfait pour l'hiver.", + "example_sentence_english": "This hot beverage is perfect for winter.", + "pos": "noun", + "word_frequency": 20451 + }, + { + "word": "brillance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brilliance;shine", + "example_sentence_native": "La brillance de ses cheveux est remarquable.", + "example_sentence_english": "The brilliance of her hair is remarkable.", + "pos": "noun", + "word_frequency": 20452 + }, + { + "word": "canaille", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rascal;scoundrel;rabble", + "example_sentence_native": "C'est une vraie canaille, toujours à faire des bêtises.", + "example_sentence_english": "He's a real rascal, always doing silly things.", + "pos": "noun", + "word_frequency": 20453 + }, + { + "word": "casual", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casual;relaxed", + "example_sentence_native": "Son style est très casual et confortable.", + "example_sentence_english": "His style is very casual and comfortable.", + "pos": "adjective", + "word_frequency": 20454 + }, + { + "word": "centrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to center", + "example_sentence_native": "Il faut centrer l'image sur l'écran pour une meilleure vue.", + "example_sentence_english": "You need to center the image on the screen for a better view.", + "pos": "verb", + "word_frequency": 20455 + }, + { + "word": "chimio", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemo (chemotherapy)", + "example_sentence_native": "Elle suit une chimio pour son traitement contre le cancer.", + "example_sentence_english": "She is undergoing chemo for her cancer treatment.", + "pos": "noun", + "word_frequency": 20458 + }, + { + "word": "châle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shawl", + "example_sentence_native": "Elle a mis un châle élégant sur ses épaules.", + "example_sentence_english": "She put an elegant shawl on her shoulders.", + "pos": "noun", + "word_frequency": 20460 + }, + { + "word": "communicant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communicative;communicating", + "example_sentence_native": "Il est très communicant et aime échanger des idées.", + "example_sentence_english": "He is very communicative and likes to exchange ideas.", + "pos": "adjective", + "word_frequency": 20464 + }, + { + "word": "congress", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congress;conference", + "example_sentence_native": "Le prochain congress aura lieu à Paris en juin.", + "example_sentence_english": "The next congress will take place in Paris in June.", + "pos": "noun", + "word_frequency": 20465 + }, + { + "word": "coranique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Quranic", + "example_sentence_native": "Il étudie les textes coraniques pour mieux comprendre la religion.", + "example_sentence_english": "He studies Quranic texts to better understand the religion.", + "pos": "adjective", + "word_frequency": 20466 + }, + { + "word": "cordelier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cordelier (Franciscan friar;or member of a revolutionary club)", + "example_sentence_native": "Les Cordeliers étaient un club politique influent pendant la Révolution française.", + "example_sentence_english": "The Cordeliers were an influential political club during the French Revolution.", + "pos": "noun", + "word_frequency": 20468 + }, + { + "word": "coriandre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coriander", + "example_sentence_native": "J'ajoute de la coriandre fraîche à ma salade pour plus de saveur.", + "example_sentence_english": "I add fresh coriander to my salad for more flavor.", + "pos": "noun", + "word_frequency": 20469 + }, + { + "word": "cornée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornea", + "example_sentence_native": "La cornée est la partie transparente de l'œil.", + "example_sentence_english": "The cornea is the transparent part of the eye.", + "pos": "noun", + "word_frequency": 20470 + }, + { + "word": "cosse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pod;husk", + "example_sentence_native": "Les petits pois sont encore dans leur cosse.", + "example_sentence_english": "The peas are still in their pod.", + "pos": "noun", + "word_frequency": 20471 + }, + { + "word": "cultural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultural", + "example_sentence_native": "Nous avons visité de nombreux sites culturels pendant notre voyage.", + "example_sentence_english": "We visited many cultural sites during our trip.", + "pos": "adjective", + "word_frequency": 20474 + }, + { + "word": "cyclo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bike;cyclist (informal)", + "example_sentence_native": "J'ai pris mon cyclo pour aller au travail ce matin.", + "example_sentence_english": "I took my bike to go to work this morning.", + "pos": "noun", + "word_frequency": 20475 + }, + { + "word": "cédé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "CD (compact disc)", + "example_sentence_native": "J'ai écouté mon nouveau cédé dans la voiture.", + "example_sentence_english": "I listened to my new CD in the car.", + "pos": "noun", + "word_frequency": 20476 + }, + { + "word": "diamétralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diametrically", + "example_sentence_native": "Leurs opinions sont diamétralement opposées sur ce sujet.", + "example_sentence_english": "Their opinions are diametrically opposed on this subject.", + "pos": "adverb", + "word_frequency": 20479 + }, + { + "word": "divination", + "article_with_word": "la divination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divination", + "example_sentence_native": "Elle a consulté un oracle pour la divination.", + "example_sentence_english": "She consulted an oracle for divination.", + "pos": "noun", + "word_frequency": 20480 + }, + { + "word": "diététique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dietary;dietetic", + "example_sentence_native": "Il suit un régime diététique strict.", + "example_sentence_english": "He follows a strict dietary regimen.", + "pos": "adjective", + "word_frequency": 20481 + }, + { + "word": "dome", + "article_with_word": "le dôme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dome", + "example_sentence_native": "La cathédrale a un grand dôme.", + "example_sentence_english": "The cathedral has a large dome.", + "pos": "noun", + "word_frequency": 20483 + }, + { + "word": "dopamine", + "article_with_word": "la dopamine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dopamine", + "example_sentence_native": "La dopamine est un neurotransmetteur important.", + "example_sentence_english": "Dopamine is an important neurotransmitter.", + "pos": "noun", + "word_frequency": 20484 + }, + { + "word": "download", + "article_with_word": "le download", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "download", + "example_sentence_native": "Le download du fichier a pris du temps.", + "example_sentence_english": "The download of the file took time.", + "pos": "noun", + "word_frequency": 20485 + }, + { + "word": "drain", + "article_with_word": "le drain", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drain", + "example_sentence_native": "Le drain de l'évier est bouché.", + "example_sentence_english": "The sink drain is clogged.", + "pos": "noun", + "word_frequency": 20487 + }, + { + "word": "druide", + "article_with_word": "le druide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "druid", + "example_sentence_native": "Les druides étaient des figures importantes chez les Celtes.", + "example_sentence_english": "Druids were important figures among the Celts.", + "pos": "noun", + "word_frequency": 20488 + }, + { + "word": "décoder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decode", + "example_sentence_native": "Il a réussi à décoder le message secret.", + "example_sentence_english": "He managed to decode the secret message.", + "pos": "verb", + "word_frequency": 20492 + }, + { + "word": "décodeur", + "article_with_word": "le décodeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decoder;set-top box", + "example_sentence_native": "J'ai besoin d'un nouveau décodeur pour la télévision.", + "example_sentence_english": "I need a new decoder for the television.", + "pos": "noun", + "word_frequency": 20493 + }, + { + "word": "défiscalisation", + "article_with_word": "la défiscalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax exemption;relief", + "example_sentence_native": "La défiscalisation immobilière est un sujet complexe.", + "example_sentence_english": "Real estate tax exemption is a complex subject.", + "pos": "noun", + "word_frequency": 20494 + }, + { + "word": "déversement", + "article_with_word": "le déversement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spill;discharge", + "example_sentence_native": "Le déversement de pétrole a causé des dégâts.", + "example_sentence_english": "The oil spill caused damage.", + "pos": "noun", + "word_frequency": 20495 + }, + { + "word": "escadrille", + "article_with_word": "l'escadrille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squadron (small)", + "example_sentence_native": "L'escadrille a décollé pour sa mission.", + "example_sentence_english": "The squadron took off for its mission.", + "pos": "noun", + "word_frequency": 20499 + }, + { + "word": "essaim", + "article_with_word": "l'essaim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swarm", + "example_sentence_native": "Un essaim d'abeilles s'est posé sur l'arbre.", + "example_sentence_english": "A swarm of bees landed on the tree.", + "pos": "noun", + "word_frequency": 20500 + }, + { + "word": "excavation", + "article_with_word": "l'excavation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excavation", + "example_sentence_native": "Le site archéologique est en pleine excavation.", + "example_sentence_english": "The archaeological site is undergoing excavation.", + "pos": "noun", + "word_frequency": 20504 + }, + { + "word": "fausser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distort;to falsify;to sprain", + "example_sentence_native": "Il ne faut pas fausser les faits.", + "example_sentence_english": "One must not distort the facts.", + "pos": "verb", + "word_frequency": 20507 + }, + { + "word": "flottille", + "article_with_word": "la flottille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flotilla", + "example_sentence_native": "Une petite flottille de bateaux de pêche est rentrée au port.", + "example_sentence_english": "A small flotilla of fishing boats returned to port.", + "pos": "noun", + "word_frequency": 20509 + }, + { + "word": "gaîté", + "article_with_word": "la gaîté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gaiety;cheerfulness", + "example_sentence_native": "Sa gaîté est contagieuse.", + "example_sentence_english": "Her gaiety is contagious.", + "pos": "noun", + "word_frequency": 20513 + }, + { + "word": "gerer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to manage;to handle", + "example_sentence_native": "Il doit gerer son temps efficacement.", + "example_sentence_english": "He must manage his time efficiently.", + "pos": "verb", + "word_frequency": 20514 + }, + { + "word": "glacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze;to chill;to glaze", + "example_sentence_native": "Le froid a commencé à glacer l'eau.", + "example_sentence_english": "The cold began to freeze the water.", + "pos": "verb", + "word_frequency": 20517 + }, + { + "word": "goulet", + "article_with_word": "le goulet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bottleneck;narrows;channel", + "example_sentence_native": "Le goulet d'étranglement a ralenti le trafic.", + "example_sentence_english": "The bottleneck slowed down traffic.", + "pos": "noun", + "word_frequency": 20518 + }, + { + "word": "graph", + "article_with_word": "le graph", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graph", + "example_sentence_native": "Ce graph montre l'évolution des ventes.", + "example_sentence_english": "This graph shows the evolution of sales.", + "pos": "noun", + "word_frequency": 20519 + }, + { + "word": "groupuscule", + "article_with_word": "le groupuscule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "small group;splinter group", + "example_sentence_native": "Un groupuscule politique a organisé une manifestation devant la mairie.", + "example_sentence_english": "A small political group organized a demonstration in front of the town hall.", + "pos": "noun", + "word_frequency": 20521 + }, + { + "word": "harceleur", + "article_with_word": "le harceleur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harasser;stalker;bully", + "example_sentence_native": "Le harceleur a été identifié et arrêté par la police.", + "example_sentence_english": "The harasser was identified and arrested by the police.", + "pos": "noun", + "word_frequency": 20523 + }, + { + "word": "hispanique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hispanic", + "example_sentence_native": "La culture hispanique est très présente en Floride.", + "example_sentence_english": "Hispanic culture is very present in Florida.", + "pos": "adjective", + "word_frequency": 20524 + }, + { + "word": "hutte", + "article_with_word": "la hutte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hut", + "example_sentence_native": "Ils ont passé la nuit dans une petite hutte au bord du lac.", + "example_sentence_english": "They spent the night in a small hut by the lake.", + "pos": "noun", + "word_frequency": 20526 + }, + { + "word": "impartir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to impart;to grant", + "example_sentence_native": "Le professeur a le devoir d'impartir ses connaissances à ses élèves.", + "example_sentence_english": "The teacher has the duty to impart his knowledge to his students.", + "pos": "verb", + "word_frequency": 20528 + }, + { + "word": "implorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implore;to beg", + "example_sentence_native": "Elle a imploré son aide pour sortir de cette situation difficile.", + "example_sentence_english": "She implored his help to get out of this difficult situation.", + "pos": "verb", + "word_frequency": 20529 + }, + { + "word": "impropre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improper;unsuitable", + "example_sentence_native": "Ce comportement est impropre à un environnement professionnel.", + "example_sentence_english": "This behavior is unsuitable for a professional environment.", + "pos": "adjective", + "word_frequency": 20530 + }, + { + "word": "imprécis", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imprecise;vague", + "example_sentence_native": "Ses explications étaient trop imprécises pour être comprises.", + "example_sentence_english": "His explanations were too imprecise to be understood.", + "pos": "adjective", + "word_frequency": 20531 + }, + { + "word": "influenceur", + "article_with_word": "l'influenceur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influencer", + "example_sentence_native": "L'influenceur a partagé son avis sur le nouveau produit.", + "example_sentence_english": "The influencer shared his opinion on the new product.", + "pos": "noun", + "word_frequency": 20532 + }, + { + "word": "irrévocable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrevocable", + "example_sentence_native": "La décision du tribunal est irrévocable.", + "example_sentence_english": "The court's decision is irrevocable.", + "pos": "adjective", + "word_frequency": 20534 + }, + { + "word": "jouissif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enjoyable;gratifying;exhilarating", + "example_sentence_native": "C'était un moment vraiment jouissif de voir l'équipe gagner.", + "example_sentence_english": "It was a truly exhilarating moment to see the team win.", + "pos": "adjective", + "word_frequency": 20538 + }, + { + "word": "kitsch", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kitsch;tacky", + "example_sentence_native": "Sa collection de bibelots est un peu kitsch.", + "example_sentence_english": "Her collection of trinkets is a bit kitsch.", + "pos": "adjective", + "word_frequency": 20540 + }, + { + "word": "libellé", + "article_with_word": "le libellé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wording;phrasing;description", + "example_sentence_native": "Le libellé de la clause doit être clair et précis.", + "example_sentence_english": "The wording of the clause must be clear and precise.", + "pos": "noun", + "word_frequency": 20549 + }, + { + "word": "martiniquais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Martinican", + "example_sentence_native": "Elle a des racines martiniquaises et est fière de sa culture.", + "example_sentence_english": "She has Martinican roots and is proud of her culture.", + "pos": "adjective", + "word_frequency": 20552 + }, + { + "word": "misanthrope", + "article_with_word": "le misanthrope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misanthrope", + "example_sentence_native": "Après tant de déceptions, il est devenu un véritable misanthrope.", + "example_sentence_english": "After so many disappointments, he became a true misanthrope.", + "pos": "noun", + "word_frequency": 20553 + }, + { + "word": "missive", + "article_with_word": "la missive", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "missive;letter", + "example_sentence_native": "Il a envoyé une missive urgente au directeur.", + "example_sentence_english": "He sent an urgent missive to the director.", + "pos": "noun", + "word_frequency": 20554 + }, + { + "word": "mitraillette", + "article_with_word": "la mitraillette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submachine gun;machine gun", + "example_sentence_native": "Le soldat portait une mitraillette lors de la patrouille.", + "example_sentence_english": "The soldier carried a submachine gun during the patrol.", + "pos": "noun", + "word_frequency": 20555 + }, + { + "word": "mousser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to foam;to lather;to bubble up", + "example_sentence_native": "Le savon fait bien mousser l'eau du bain.", + "example_sentence_english": "The soap makes the bath water foam well.", + "pos": "verb", + "word_frequency": 20559 + }, + { + "word": "mécano", + "article_with_word": "le mécano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mechanic (informal)", + "example_sentence_native": "Le mécano a réparé ma voiture.", + "example_sentence_english": "The mechanic repaired my car.", + "pos": "noun", + "word_frequency": 20562 + }, + { + "word": "ménopause", + "article_with_word": "la ménopause", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "menopause", + "example_sentence_native": "La ménopause est une étape naturelle dans la vie d'une femme.", + "example_sentence_english": "Menopause is a natural stage in a woman's life.", + "pos": "noun", + "word_frequency": 20564 + }, + { + "word": "méritant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserving;meritorious", + "example_sentence_native": "C'est un élève très méritant.", + "example_sentence_english": "He is a very deserving student.", + "pos": "adjective", + "word_frequency": 20565 + }, + { + "word": "naitre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be born", + "example_sentence_native": "Il est né en 1990.", + "example_sentence_english": "He was born in 1990.", + "pos": "verb", + "word_frequency": 20566 + }, + { + "word": "napolitain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Neapolitan", + "example_sentence_native": "J'adore la pizza napolitaine.", + "example_sentence_english": "I love Neapolitan pizza.", + "pos": "adjective", + "word_frequency": 20567 + }, + { + "word": "naturaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to naturalize", + "example_sentence_native": "Il a été naturalisé citoyen français.", + "example_sentence_english": "He was naturalized as a French citizen.", + "pos": "verb", + "word_frequency": 20568 + }, + { + "word": "néophyte", + "article_with_word": "le néophyte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neophyte;beginner", + "example_sentence_native": "En tant que néophyte, il a beaucoup à apprendre.", + "example_sentence_english": "As a neophyte, he has a lot to learn.", + "pos": "noun", + "word_frequency": 20572 + }, + { + "word": "obstiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubborn;obstinate", + "example_sentence_native": "Il est très obstiné quand il veut quelque chose.", + "example_sentence_english": "He is very stubborn when he wants something.", + "pos": "adjective", + "word_frequency": 20573 + }, + { + "word": "ornementation", + "article_with_word": "l'ornementation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ornamentation", + "example_sentence_native": "L'ornementation de ce bâtiment est magnifique.", + "example_sentence_english": "The ornamentation of this building is magnificent.", + "pos": "noun", + "word_frequency": 20575 + }, + { + "word": "oseille", + "article_with_word": "l'oseille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorrel;(slang) money", + "example_sentence_native": "J'ai cueilli de l'oseille pour la soupe.", + "example_sentence_english": "I picked some sorrel for the soup.", + "pos": "noun", + "word_frequency": 20577 + }, + { + "word": "payement", + "article_with_word": "le payement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "payment", + "example_sentence_native": "Le payement doit être effectué avant la fin du mois.", + "example_sentence_english": "The payment must be made before the end of the month.", + "pos": "noun", + "word_frequency": 20581 + }, + { + "word": "placenta", + "article_with_word": "le placenta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "placenta", + "example_sentence_native": "Le placenta nourrit le fœtus pendant la grossesse.", + "example_sentence_english": "The placenta nourishes the fetus during pregnancy.", + "pos": "noun", + "word_frequency": 20584 + }, + { + "word": "prophétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prophetic", + "example_sentence_native": "Ses paroles se sont avérées prophétiques.", + "example_sentence_english": "His words turned out to be prophetic.", + "pos": "adjective", + "word_frequency": 20589 + }, + { + "word": "prédominer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to predominate", + "example_sentence_native": "Le rouge prédomine dans ce tableau.", + "example_sentence_english": "Red predominates in this painting.", + "pos": "verb", + "word_frequency": 20590 + }, + { + "word": "présentable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presentable", + "example_sentence_native": "Assurez-vous d'être présentable pour l'entretien.", + "example_sentence_english": "Make sure you are presentable for the interview.", + "pos": "adjective", + "word_frequency": 20591 + }, + { + "word": "puriste", + "article_with_word": "le puriste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purist", + "example_sentence_native": "C'est un puriste de la langue française.", + "example_sentence_english": "He is a purist of the French language.", + "pos": "noun", + "word_frequency": 20595 + }, + { + "word": "radier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to strike off;to remove from a list", + "example_sentence_native": "Il a été radié de l'ordre des avocats.", + "example_sentence_english": "He was struck off the bar association.", + "pos": "verb", + "word_frequency": 20596 + }, + { + "word": "ramper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crawl;to creep", + "example_sentence_native": "Le bébé commence à ramper.", + "example_sentence_english": "The baby is starting to crawl.", + "pos": "verb", + "word_frequency": 20598 + }, + { + "word": "revenant", + "article_with_word": "le revenant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ghost;revenant", + "example_sentence_native": "On raconte que le château est hanté par un revenant.", + "example_sentence_english": "It is said that the castle is haunted by a ghost.", + "pos": "noun", + "word_frequency": 20599 + }, + { + "word": "rizière", + "article_with_word": "la rizière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rice field", + "example_sentence_native": "Les rizières s'étendent à perte de vue en Asie.", + "example_sentence_english": "The rice fields stretch as far as the eye can see in Asia.", + "pos": "noun", + "word_frequency": 20601 + }, + { + "word": "roseau", + "article_with_word": "le roseau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reed", + "example_sentence_native": "Le vent faisait plier les roseaux au bord de l'étang.", + "example_sentence_english": "The wind made the reeds bend at the edge of the pond.", + "pos": "noun", + "word_frequency": 20603 + }, + { + "word": "rotor", + "article_with_word": "le rotor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotor", + "example_sentence_native": "Le rotor de l'hélicoptère tournait rapidement.", + "example_sentence_english": "The helicopter's rotor was spinning rapidly.", + "pos": "noun", + "word_frequency": 20606 + }, + { + "word": "rousseur", + "article_with_word": "la rousseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reddishness;freckles", + "example_sentence_native": "Elle avait une belle rousseur naturelle dans ses cheveux.", + "example_sentence_english": "She had a beautiful natural reddishness in her hair.", + "pos": "noun", + "word_frequency": 20607 + }, + { + "word": "râteau", + "article_with_word": "le râteau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rake", + "example_sentence_native": "J'ai utilisé le râteau pour ramasser les feuilles mortes.", + "example_sentence_english": "I used the rake to gather the dead leaves.", + "pos": "noun", + "word_frequency": 20609 + }, + { + "word": "réglement", + "article_with_word": "le règlement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regulation;rule;settlement", + "example_sentence_native": "Le règlement intérieur doit être respecté par tous.", + "example_sentence_english": "The internal regulation must be respected by everyone.", + "pos": "noun", + "word_frequency": 20610 + }, + { + "word": "siphon", + "article_with_word": "le siphon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "siphon;trap (plumbing)", + "example_sentence_native": "Le siphon de l'évier était bouché.", + "example_sentence_english": "The sink's trap was clogged.", + "pos": "noun", + "word_frequency": 20616 + }, + { + "word": "soûl", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunk;tipsy", + "example_sentence_native": "Il était complètement soûl après la fête.", + "example_sentence_english": "He was completely drunk after the party.", + "pos": "adjective", + "word_frequency": 20622 + }, + { + "word": "synthétiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to synthesize;to summarize", + "example_sentence_native": "Il est important de synthétiser les informations clés.", + "example_sentence_english": "It is important to synthesize the key information.", + "pos": "verb", + "word_frequency": 20624 + }, + { + "word": "tacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stain;to spot", + "example_sentence_native": "Fais attention à ne pas tacher ta chemise.", + "example_sentence_english": "Be careful not to stain your shirt.", + "pos": "verb", + "word_frequency": 20625 + }, + { + "word": "tangente", + "article_with_word": "la tangente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangent", + "example_sentence_native": "La droite est tangente au cercle en un point.", + "example_sentence_english": "The line is tangent to the circle at one point.", + "pos": "noun", + "word_frequency": 20626 + }, + { + "word": "tartuffe", + "article_with_word": "un tartuffe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a hypocrite;a Tartuffe", + "example_sentence_native": "Il se comporte comme un vrai tartuffe, plein de fausse piété.", + "example_sentence_english": "He behaves like a true hypocrite, full of false piety.", + "pos": "noun", + "word_frequency": 20627 + }, + { + "word": "taïwanais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Taiwanese", + "example_sentence_native": "Elle a acheté du thé taïwanais.", + "example_sentence_english": "She bought some Taiwanese tea.", + "pos": "adjective", + "word_frequency": 20628 + }, + { + "word": "tribulation", + "article_with_word": "la tribulation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tribulation;ordeal", + "example_sentence_native": "Ils ont traversé de nombreuses tribulations avant d'atteindre leur but.", + "example_sentence_english": "They went through many tribulations before reaching their goal.", + "pos": "noun", + "word_frequency": 20632 + }, + { + "word": "tricoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to knit", + "example_sentence_native": "Ma grand-mère aime tricoter des pulls pour l'hiver.", + "example_sentence_english": "My grandmother likes to knit sweaters for winter.", + "pos": "verb", + "word_frequency": 20633 + }, + { + "word": "trousseau", + "article_with_word": "le trousseau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trousseau;bunch (of keys)", + "example_sentence_native": "Elle a préparé son trousseau de mariée.", + "example_sentence_english": "She prepared her bridal trousseau.", + "pos": "noun", + "word_frequency": 20634 + }, + { + "word": "tumulte", + "article_with_word": "le tumulte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tumult;commotion", + "example_sentence_native": "Le tumulte de la foule était assourdissant.", + "example_sentence_english": "The tumult of the crowd was deafening.", + "pos": "noun", + "word_frequency": 20636 + }, + { + "word": "téléphérique", + "article_with_word": "le téléphérique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cable car;aerial tramway", + "example_sentence_native": "Nous avons pris le téléphérique pour monter au sommet de la montagne.", + "example_sentence_english": "We took the cable car to go up to the top of the mountain.", + "pos": "noun", + "word_frequency": 20639 + }, + { + "word": "téléportation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "teleportation", + "example_sentence_native": "La téléportation est un concept de science-fiction.", + "example_sentence_english": "Teleportation is a science fiction concept.", + "pos": "noun", + "word_frequency": 20640 + }, + { + "word": "usinage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machining", + "example_sentence_native": "L'usinage de précision est essentiel pour cette pièce.", + "example_sentence_english": "Precision machining is essential for this part.", + "pos": "noun", + "word_frequency": 20642 + }, + { + "word": "vacuité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emptiness;vacuity", + "example_sentence_native": "Il ressentait une profonde vacuité après la perte.", + "example_sentence_english": "He felt a deep emptiness after the loss.", + "pos": "noun", + "word_frequency": 20643 + }, + { + "word": "vanity", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vanity case", + "example_sentence_native": "Elle a rangé son maquillage dans un vanity.", + "example_sentence_english": "She put her makeup in a vanity case.", + "pos": "noun", + "word_frequency": 20646 + }, + { + "word": "viscosité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viscosity", + "example_sentence_native": "La viscosité de l'huile diminue avec la chaleur.", + "example_sentence_english": "The viscosity of oil decreases with heat.", + "pos": "noun", + "word_frequency": 20649 + }, + { + "word": "élogieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laudatory;complimentary", + "example_sentence_native": "Il a reçu des commentaires très élogieux sur son travail.", + "example_sentence_english": "He received very complimentary comments on his work.", + "pos": "adjective", + "word_frequency": 20658 + }, + { + "word": "étoffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flesh out;to expand;to elaborate", + "example_sentence_native": "Vous devriez étoffer cette section de votre rapport.", + "example_sentence_english": "You should flesh out this section of your report.", + "pos": "verb", + "word_frequency": 20659 + }, + { + "word": "évincer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to evict;to oust;to dislodge", + "example_sentence_native": "L'entreprise a cherché à évincer son concurrent du marché.", + "example_sentence_english": "The company sought to oust its competitor from the market.", + "pos": "verb", + "word_frequency": 20660 + }, + { + "word": "acclamation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acclamation;cheer", + "example_sentence_native": "Il a été accueilli par des acclamations de la foule.", + "example_sentence_english": "He was greeted by cheers from the crowd.", + "pos": "noun", + "word_frequency": 20661 + }, + { + "word": "actionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to activate;to operate;to trigger", + "example_sentence_native": "Il faut actionner le levier pour démarrer la machine.", + "example_sentence_english": "You have to activate the lever to start the machine.", + "pos": "verb", + "word_frequency": 20662 + }, + { + "word": "adjacent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjacent;neighboring", + "example_sentence_native": "Les deux maisons sont adjacentes.", + "example_sentence_english": "The two houses are adjacent.", + "pos": "adjective", + "word_frequency": 20663 + }, + { + "word": "adjudication", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adjudication;award (of a contract)", + "example_sentence_native": "L'adjudication du contrat aura lieu la semaine prochaine.", + "example_sentence_english": "The award of the contract will take place next week.", + "pos": "noun", + "word_frequency": 20664 + }, + { + "word": "agacement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoyance;irritation", + "example_sentence_native": "Son agacement était palpable.", + "example_sentence_english": "His annoyance was palpable.", + "pos": "noun", + "word_frequency": 20665 + }, + { + "word": "allègement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief;lightening;reduction", + "example_sentence_native": "Nous espérons un allègement des restrictions bientôt.", + "example_sentence_english": "We hope for a lightening of restrictions soon.", + "pos": "noun", + "word_frequency": 20666 + }, + { + "word": "argus", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "argus (watchful person;publication)", + "example_sentence_native": "L'Argus est une publication de référence pour les prix des voitures d'occasion.", + "example_sentence_english": "The Argus is a reference publication for used car prices.", + "pos": "noun", + "word_frequency": 20671 + }, + { + "word": "assidu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assiduous;diligent", + "example_sentence_native": "Il est un étudiant très assidu.", + "example_sentence_english": "He is a very diligent student.", + "pos": "adjective", + "word_frequency": 20673 + }, + { + "word": "assortiment", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assortment;selection", + "example_sentence_native": "Le magasin propose un large assortiment de produits.", + "example_sentence_english": "The store offers a wide assortment of products.", + "pos": "noun", + "word_frequency": 20674 + }, + { + "word": "assourdissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deafening", + "example_sentence_native": "Le bruit était assourdissant.", + "example_sentence_english": "The noise was deafening.", + "pos": "adjective", + "word_frequency": 20675 + }, + { + "word": "avoisinant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neighboring;surrounding", + "example_sentence_native": "Les villages avoisinants ont été touchés par la tempête.", + "example_sentence_english": "The neighboring villages were affected by the storm.", + "pos": "adjective", + "word_frequency": 20676 + }, + { + "word": "ballot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bale;bundle;ballot", + "example_sentence_native": "Il a transporté un lourd ballot de foin.", + "example_sentence_english": "He carried a heavy bale of hay.", + "pos": "noun", + "word_frequency": 20679 + }, + { + "word": "bassine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basin;tub", + "example_sentence_native": "Elle a rempli la bassine d'eau chaude pour laver les légumes.", + "example_sentence_english": "She filled the basin with hot water to wash the vegetables.", + "pos": "noun", + "word_frequency": 20681 + }, + { + "word": "bismuth", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bismuth", + "example_sentence_native": "Le bismuth est un métal lourd et cassant.", + "example_sentence_english": "Bismuth is a heavy and brittle metal.", + "pos": "noun", + "word_frequency": 20685 + }, + { + "word": "blancheur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whiteness;pallor", + "example_sentence_native": "La blancheur de la neige était éblouissante.", + "example_sentence_english": "The whiteness of the snow was dazzling.", + "pos": "noun", + "word_frequency": 20686 + }, + { + "word": "boiserie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wood paneling;woodwork", + "example_sentence_native": "Les boiseries anciennes ajoutent du caractère à la pièce.", + "example_sentence_english": "The old wood paneling adds character to the room.", + "pos": "noun", + "word_frequency": 20688 + }, + { + "word": "broncher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flinch;to stumble", + "example_sentence_native": "Il n'a pas bronché face à la critique.", + "example_sentence_english": "He didn't flinch in the face of criticism.", + "pos": "verb", + "word_frequency": 20693 + }, + { + "word": "bru", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daughter-in-law", + "example_sentence_native": "Ma bru est une personne très gentille.", + "example_sentence_english": "My daughter-in-law is a very kind person.", + "pos": "noun", + "word_frequency": 20694 + }, + { + "word": "calvitie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baldness", + "example_sentence_native": "La calvitie est souvent héréditaire.", + "example_sentence_english": "Baldness is often hereditary.", + "pos": "noun", + "word_frequency": 20698 + }, + { + "word": "calèche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horse-drawn carriage", + "example_sentence_native": "Nous avons fait une promenade en calèche dans le parc.", + "example_sentence_english": "We took a ride in a horse-drawn carriage in the park.", + "pos": "noun", + "word_frequency": 20699 + }, + { + "word": "camaraderie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "camaraderie;fellowship", + "example_sentence_native": "Il y avait une grande camaraderie entre les membres de l'équipe.", + "example_sentence_english": "There was great camaraderie among the team members.", + "pos": "noun", + "word_frequency": 20700 + }, + { + "word": "cardiologue", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cardiologist", + "example_sentence_native": "Mon cardiologue m'a conseillé de faire plus d'exercice.", + "example_sentence_english": "My cardiologist advised me to exercise more.", + "pos": "noun", + "word_frequency": 20701 + }, + { + "word": "carillon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chime;carillon", + "example_sentence_native": "Le doux carillon des cloches de l'église résonnait dans la vallée.", + "example_sentence_english": "The soft chime of the church bells echoed in the valley.", + "pos": "noun", + "word_frequency": 20702 + }, + { + "word": "cervicale", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cervical vertebrae;neck (pain)", + "example_sentence_native": "J'ai des douleurs aux cervicales après avoir dormi dans une mauvaise position.", + "example_sentence_english": "I have neck pain after sleeping in a bad position.", + "pos": "noun", + "word_frequency": 20706 + }, + { + "word": "chimpanzé", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chimpanzee", + "example_sentence_native": "Le chimpanzé est un primate très intelligent.", + "example_sentence_english": "The chimpanzee is a very intelligent primate.", + "pos": "noun", + "word_frequency": 20708 + }, + { + "word": "chromatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chromatic", + "example_sentence_native": "L'échelle chromatique contient tous les demi-tons.", + "example_sentence_english": "The chromatic scale contains all semitones.", + "pos": "adjective", + "word_frequency": 20712 + }, + { + "word": "clapet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flap;valve", + "example_sentence_native": "Le clapet de la boîte aux lettres était cassé.", + "example_sentence_english": "The flap of the mailbox was broken.", + "pos": "noun", + "word_frequency": 20713 + }, + { + "word": "coproduction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-production", + "example_sentence_native": "Ce film est une coproduction franco-allemande.", + "example_sentence_english": "This film is a French-German co-production.", + "pos": "noun", + "word_frequency": 20716 + }, + { + "word": "courbature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscle soreness;ache", + "example_sentence_native": "J'ai des courbatures après ma séance de sport.", + "example_sentence_english": "I have muscle soreness after my workout.", + "pos": "noun", + "word_frequency": 20717 + }, + { + "word": "cristalliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crystallize", + "example_sentence_native": "Le sucre a commencé à cristalliser dans le sirop.", + "example_sentence_english": "The sugar began to crystallize in the syrup.", + "pos": "verb", + "word_frequency": 20719 + }, + { + "word": "dièse", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharp (music);hash symbol", + "example_sentence_native": "Le dièse indique que la note doit être augmentée d'un demi-ton.", + "example_sentence_english": "The sharp indicates that the note must be raised by a semitone.", + "pos": "noun", + "word_frequency": 20727 + }, + { + "word": "ducasse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regional fair (Northern France;Belgium)", + "example_sentence_native": "Nous allons à la ducasse du village ce week-end.", + "example_sentence_english": "We are going to the village fair this weekend.", + "pos": "noun", + "word_frequency": 20730 + }, + { + "word": "déchargement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unloading;discharge", + "example_sentence_native": "Le déchargement des marchandises prendra plusieurs heures.", + "example_sentence_english": "The unloading of the goods will take several hours.", + "pos": "noun", + "word_frequency": 20732 + }, + { + "word": "découragement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discouragement", + "example_sentence_native": "Malgré le découragement, il a continué à travailler dur.", + "example_sentence_english": "Despite the discouragement, he continued to work hard.", + "pos": "noun", + "word_frequency": 20733 + }, + { + "word": "déflation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deflation", + "example_sentence_native": "La déflation peut entraîner une baisse des prix et des salaires.", + "example_sentence_english": "Deflation can lead to a decrease in prices and wages.", + "pos": "noun", + "word_frequency": 20734 + }, + { + "word": "départir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deviate from;to abandon (usually reflexive)", + "example_sentence_native": "Il ne faut pas se départir de ses principes.", + "example_sentence_english": "One must not deviate from one's principles.", + "pos": "verb", + "word_frequency": 20735 + }, + { + "word": "désapprouver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disapprove", + "example_sentence_native": "Ses parents désapprouvent son choix de carrière.", + "example_sentence_english": "His parents disapprove of his career choice.", + "pos": "verb", + "word_frequency": 20736 + }, + { + "word": "désertification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desertification", + "example_sentence_native": "La désertification est un problème environnemental majeur.", + "example_sentence_english": "Desertification is a major environmental problem.", + "pos": "noun", + "word_frequency": 20737 + }, + { + "word": "désertion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desertion", + "example_sentence_native": "La désertion est un crime grave dans l'armée.", + "example_sentence_english": "Desertion is a serious crime in the army.", + "pos": "noun", + "word_frequency": 20738 + }, + { + "word": "ecoute", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "listening;earphone", + "example_sentence_native": "L'écoute active est essentielle pour une bonne communication.", + "example_sentence_english": "Active listening is essential for good communication.", + "pos": "noun", + "word_frequency": 20740 + }, + { + "word": "encyclique", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encyclical", + "example_sentence_native": "Le Pape a publié une nouvelle encyclique sur l'environnement.", + "example_sentence_english": "The Pope published a new encyclical on the environment.", + "pos": "noun", + "word_frequency": 20743 + }, + { + "word": "equipement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipment", + "example_sentence_native": "Nous avons besoin de nouvel équipement pour le laboratoire.", + "example_sentence_english": "We need new equipment for the laboratory.", + "pos": "noun", + "word_frequency": 20744 + }, + { + "word": "etonnant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astonishing;surprising", + "example_sentence_native": "C'est une histoire vraiment étonnante.", + "example_sentence_english": "It's a truly astonishing story.", + "pos": "adjective", + "word_frequency": 20746 + }, + { + "word": "faufiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sneak;to thread (oneself)", + "example_sentence_native": "Il a réussi à se faufiler dans la foule.", + "example_sentence_english": "He managed to sneak through the crowd.", + "pos": "verb", + "word_frequency": 20749 + }, + { + "word": "fiduciaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fiduciary;trust (adj.)", + "example_sentence_native": "Une monnaie fiduciaire n'a pas de valeur intrinsèque.", + "example_sentence_english": "A fiduciary currency has no intrinsic value.", + "pos": "adjective", + "word_frequency": 20752 + }, + { + "word": "fiole", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vial;phial", + "example_sentence_native": "Le scientifique a versé le liquide dans une petite fiole.", + "example_sentence_english": "The scientist poured the liquid into a small vial.", + "pos": "noun", + "word_frequency": 20754 + }, + { + "word": "fourreau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheath;scabbard;slipcover", + "example_sentence_native": "L'épée était rangée dans son fourreau.", + "example_sentence_english": "The sword was kept in its scabbard.", + "pos": "noun", + "word_frequency": 20757 + }, + { + "word": "fumigène", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smoke bomb;smoke grenade", + "example_sentence_native": "Les supporters ont allumé des fumigènes dans le stade.", + "example_sentence_english": "The supporters lit smoke bombs in the stadium.", + "pos": "noun", + "word_frequency": 20758 + }, + { + "word": "gardiste", + "article_with_word": "le gardiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guardsman", + "example_sentence_native": "Le gardiste montait la garde devant le palais.", + "example_sentence_english": "The guardsman stood guard in front of the palace.", + "pos": "noun", + "word_frequency": 20762 + }, + { + "word": "gaucho", + "article_with_word": "le gaucho", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaucho", + "example_sentence_native": "Le gaucho est un cavalier des plaines d'Amérique du Sud.", + "example_sentence_english": "The gaucho is a horseman from the plains of South America.", + "pos": "noun", + "word_frequency": 20763 + }, + { + "word": "giga", + "article_with_word": "le giga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giga (prefix);gigabyte (informal)", + "example_sentence_native": "Ce disque dur a une capacité de plusieurs gigas.", + "example_sentence_english": "This hard drive has a capacity of several gigabytes.", + "pos": "noun", + "word_frequency": 20769 + }, + { + "word": "gitane", + "article_with_word": "la gitane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gypsy woman", + "example_sentence_native": "La gitane lisait l'avenir dans les lignes de la main.", + "example_sentence_english": "The gypsy woman read the future in the palm of the hand.", + "pos": "noun", + "word_frequency": 20770 + }, + { + "word": "glaçage", + "article_with_word": "le glaçage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icing;frosting", + "example_sentence_native": "Le gâteau était recouvert d'un délicieux glaçage au chocolat.", + "example_sentence_english": "The cake was covered with a delicious chocolate frosting.", + "pos": "noun", + "word_frequency": 20771 + }, + { + "word": "glorifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to glorify", + "example_sentence_native": "Il cherchait à glorifier les héros de son pays.", + "example_sentence_english": "He sought to glorify the heroes of his country.", + "pos": "verb", + "word_frequency": 20772 + }, + { + "word": "gober", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swallow;to fall for (a lie)", + "example_sentence_native": "Il a gobé toute l'histoire sans poser de questions.", + "example_sentence_english": "He swallowed the whole story without asking questions.", + "pos": "verb", + "word_frequency": 20773 + }, + { + "word": "gratifiant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratifying;rewarding", + "example_sentence_native": "C'est un travail très gratifiant de pouvoir aider les autres.", + "example_sentence_english": "It's a very gratifying job to be able to help others.", + "pos": "adjective", + "word_frequency": 20774 + }, + { + "word": "hantise", + "article_with_word": "la hantise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsession;haunting fear", + "example_sentence_native": "La peur de l'échec était sa hantise.", + "example_sentence_english": "The fear of failure was his haunting fear.", + "pos": "noun", + "word_frequency": 20776 + }, + { + "word": "hydratation", + "article_with_word": "l'hydratation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hydration", + "example_sentence_native": "Une bonne hydratation est essentielle pour la santé.", + "example_sentence_english": "Good hydration is essential for health.", + "pos": "noun", + "word_frequency": 20783 + }, + { + "word": "hérédité", + "article_with_word": "l'hérédité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heredity", + "example_sentence_native": "La couleur des yeux est souvent déterminée par l'hérédité.", + "example_sentence_english": "Eye color is often determined by heredity.", + "pos": "noun", + "word_frequency": 20785 + }, + { + "word": "impassible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impassive;unperturbed", + "example_sentence_native": "Il est resté impassible face aux critiques.", + "example_sentence_english": "He remained impassive in the face of criticism.", + "pos": "adjective", + "word_frequency": 20786 + }, + { + "word": "interdisciplinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interdisciplinary", + "example_sentence_native": "Ce projet de recherche est résolument interdisciplinaire.", + "example_sentence_english": "This research project is resolutely interdisciplinary.", + "pos": "adjective", + "word_frequency": 20787 + }, + { + "word": "jalon", + "article_with_word": "le jalon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "milestone;marker", + "example_sentence_native": "Cette découverte marque un jalon important dans l'histoire de la science.", + "example_sentence_english": "This discovery marks an important milestone in the history of science.", + "pos": "noun", + "word_frequency": 20790 + }, + { + "word": "kimono", + "article_with_word": "le kimono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kimono", + "example_sentence_native": "Elle portait un magnifique kimono en soie.", + "example_sentence_english": "She wore a magnificent silk kimono.", + "pos": "noun", + "word_frequency": 20794 + }, + { + "word": "lamentation", + "article_with_word": "la lamentation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lamentation;wailing", + "example_sentence_native": "Ses lamentations emplissaient la pièce.", + "example_sentence_english": "His lamentations filled the room.", + "pos": "noun", + "word_frequency": 20797 + }, + { + "word": "landau", + "article_with_word": "le landau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pram;stroller", + "example_sentence_native": "Le bébé dormait paisiblement dans son landau.", + "example_sentence_english": "The baby slept peacefully in his pram.", + "pos": "noun", + "word_frequency": 20798 + }, + { + "word": "leitmotiv", + "article_with_word": "le leitmotiv", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leitmotif", + "example_sentence_native": "La liberté est un leitmotiv récurrent dans son œuvre.", + "example_sentence_english": "Freedom is a recurring leitmotif in his work.", + "pos": "noun", + "word_frequency": 20799 + }, + { + "word": "lemon", + "article_with_word": "le citron", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lemon", + "example_sentence_native": "J'ai acheté un citron pour faire de la limonade.", + "example_sentence_english": "I bought a lemon to make lemonade.", + "pos": "noun", + "word_frequency": 20800 + }, + { + "word": "lobbyiste", + "article_with_word": "le lobbyiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lobbyist", + "example_sentence_native": "Le lobbyiste a rencontré les députés pour discuter de la nouvelle loi.", + "example_sentence_english": "The lobbyist met with the deputies to discuss the new law.", + "pos": "noun", + "word_frequency": 20802 + }, + { + "word": "locomotion", + "article_with_word": "la locomotion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "locomotion", + "example_sentence_native": "La locomotion est la capacité de se déplacer.", + "example_sentence_english": "Locomotion is the ability to move.", + "pos": "noun", + "word_frequency": 20803 + }, + { + "word": "lyrisme", + "article_with_word": "le lyrisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lyricism", + "example_sentence_native": "Le poète a exprimé son lyrisme à travers ses vers.", + "example_sentence_english": "The poet expressed his lyricism through his verses.", + "pos": "noun", + "word_frequency": 20807 + }, + { + "word": "malveillance", + "article_with_word": "la malveillance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malevolence;malice", + "example_sentence_native": "Il n'y avait aucune malveillance dans ses intentions.", + "example_sentence_english": "There was no malevolence in his intentions.", + "pos": "noun", + "word_frequency": 20810 + }, + { + "word": "manœuvrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maneuver;to operate", + "example_sentence_native": "Il a dû manœuvrer la voiture avec précaution dans l'espace étroit.", + "example_sentence_english": "He had to maneuver the car carefully in the narrow space.", + "pos": "verb", + "word_frequency": 20812 + }, + { + "word": "marasme", + "article_with_word": "le marasme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stagnation;slump;decline", + "example_sentence_native": "L'économie est tombée dans un marasme profond.", + "example_sentence_english": "The economy fell into a deep slump.", + "pos": "noun", + "word_frequency": 20813 + }, + { + "word": "moduler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to modulate;to adjust", + "example_sentence_native": "Il faut moduler le volume de la musique.", + "example_sentence_english": "You need to modulate the volume of the music.", + "pos": "verb", + "word_frequency": 20823 + }, + { + "word": "mouvoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to move;to set in motion", + "example_sentence_native": "La force du vent peut mouvoir les éoliennes.", + "example_sentence_english": "The force of the wind can move the wind turbines.", + "pos": "verb", + "word_frequency": 20825 + }, + { + "word": "mutisme", + "article_with_word": "le mutisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutism;silence", + "example_sentence_native": "Son mutisme était inquiétant.", + "example_sentence_english": "His mutism was worrying.", + "pos": "noun", + "word_frequency": 20827 + }, + { + "word": "mûrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ripen;to mature", + "example_sentence_native": "Les fruits doivent mûrir au soleil.", + "example_sentence_english": "The fruits must ripen in the sun.", + "pos": "verb", + "word_frequency": 20829 + }, + { + "word": "nageoire", + "article_with_word": "la nageoire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fin (of a fish);flipper (for swimming)", + "example_sentence_native": "Le poisson utilise ses nageoires pour se déplacer dans l'eau.", + "example_sentence_english": "The fish uses its fins to move in the water.", + "pos": "noun", + "word_frequency": 20831 + }, + { + "word": "nasal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nasal", + "example_sentence_native": "Il a une voix nasale.", + "example_sentence_english": "He has a nasal voice.", + "pos": "adjective", + "word_frequency": 20832 + }, + { + "word": "obstétrique", + "article_with_word": "l’obstétrique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obstetrics", + "example_sentence_native": "Elle étudie l'obstétrique à l'université.", + "example_sentence_english": "She studies obstetrics at the university.", + "pos": "noun", + "word_frequency": 20835 + }, + { + "word": "omettre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to omit;to leave out", + "example_sentence_native": "Il a omis de mentionner un détail important.", + "example_sentence_english": "He omitted to mention an important detail.", + "pos": "verb", + "word_frequency": 20839 + }, + { + "word": "ordinairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ordinarily;usually", + "example_sentence_native": "Il arrive ordinairement en retard.", + "example_sentence_english": "He ordinarily arrives late.", + "pos": "adverb", + "word_frequency": 20840 + }, + { + "word": "orgueilleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proud;arrogant", + "example_sentence_native": "Son attitude orgueilleuse le rend impopulaire.", + "example_sentence_english": "His proud attitude makes him unpopular.", + "pos": "adjective", + "word_frequency": 20841 + }, + { + "word": "pacification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pacification", + "example_sentence_native": "La pacification de la région est un objectif majeur.", + "example_sentence_english": "The pacification of the region is a major objective.", + "pos": "noun", + "word_frequency": 20843 + }, + { + "word": "packaging", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "packaging", + "example_sentence_native": "Le packaging du produit est très attrayant.", + "example_sentence_english": "The product's packaging is very attractive.", + "pos": "noun", + "word_frequency": 20844 + }, + { + "word": "pactole", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "windfall;treasure", + "example_sentence_native": "Il a touché le pactole à la loterie.", + "example_sentence_english": "He hit the jackpot in the lottery.", + "pos": "noun", + "word_frequency": 20846 + }, + { + "word": "paparazzi", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paparazzi", + "example_sentence_native": "Les paparazzi suivaient la star.", + "example_sentence_english": "The paparazzi were following the star.", + "pos": "noun", + "word_frequency": 20847 + }, + { + "word": "perdrix", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partridge", + "example_sentence_native": "Une perdrix s'est envolée du champ.", + "example_sentence_english": "A partridge flew out of the field.", + "pos": "noun", + "word_frequency": 20852 + }, + { + "word": "pesée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weighing;weight-in", + "example_sentence_native": "La pesée des ingrédients est essentielle pour cette recette.", + "example_sentence_english": "The weighing of ingredients is essential for this recipe.", + "pos": "noun", + "word_frequency": 20854 + }, + { + "word": "phalange", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phalanx (finger bone or military formation)", + "example_sentence_native": "Il s'est cassé une phalange du doigt.", + "example_sentence_english": "He broke a phalanx in his finger.", + "pos": "noun", + "word_frequency": 20855 + }, + { + "word": "piocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dig;to draw (cards);to cram (study)", + "example_sentence_native": "Il a dû piocher dans ses économies.", + "example_sentence_english": "He had to dip into his savings.", + "pos": "verb", + "word_frequency": 20859 + }, + { + "word": "plot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stake;post;plot (of land;story)", + "example_sentence_native": "Le chien était attaché à un plot.", + "example_sentence_english": "The dog was tied to a post.", + "pos": "noun", + "word_frequency": 20860 + }, + { + "word": "prodiguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to lavish;to bestow;to give (advice;care)", + "example_sentence_native": "Il prodigue de bons conseils à ses élèves.", + "example_sentence_english": "He gives good advice to his students.", + "pos": "verb", + "word_frequency": 20861 + }, + { + "word": "providentiel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providential;timely", + "example_sentence_native": "Son aide fut providentielle dans cette situation difficile.", + "example_sentence_english": "His help was providential in this difficult situation.", + "pos": "adjective", + "word_frequency": 20864 + }, + { + "word": "précieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preciously;carefully", + "example_sentence_native": "Elle garde précieusement ses souvenirs.", + "example_sentence_english": "She carefully keeps her memories.", + "pos": "adverb", + "word_frequency": 20865 + }, + { + "word": "pèche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peach;fishing", + "example_sentence_native": "J'adore manger une pêche juteuse en été.", + "example_sentence_english": "I love eating a juicy peach in summer.", + "pos": "noun", + "word_frequency": 20866 + }, + { + "word": "rassembleur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unifying;rallying", + "example_sentence_native": "C'est un discours rassembleur qui a plu à tous.", + "example_sentence_english": "It's a unifying speech that pleased everyone.", + "pos": "adjective", + "word_frequency": 20870 + }, + { + "word": "reconduction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renewal;extension;re-election", + "example_sentence_native": "La reconduction du contrat sera discutée.", + "example_sentence_english": "The renewal of the contract will be discussed.", + "pos": "noun", + "word_frequency": 20872 + }, + { + "word": "retaper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fix up;to retype;to restore", + "example_sentence_native": "Il a passé le week-end à retaper sa vieille voiture.", + "example_sentence_english": "He spent the weekend fixing up his old car.", + "pos": "verb", + "word_frequency": 20873 + }, + { + "word": "rtt", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "RTT (reduction of working time;compensatory time off)", + "example_sentence_native": "J'ai pris deux jours de RTT la semaine dernière.", + "example_sentence_english": "I took two days of compensatory time off last week.", + "pos": "noun", + "word_frequency": 20875 + }, + { + "word": "réactiver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reactivate", + "example_sentence_native": "Nous devons réactiver notre compte.", + "example_sentence_english": "We need to reactivate our account.", + "pos": "verb", + "word_frequency": 20876 + }, + { + "word": "saladier", + "article_with_word": "le saladier", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salad bowl", + "example_sentence_native": "Passe-moi le saladier, s'il te plaît.", + "example_sentence_english": "Pass me the salad bowl, please.", + "pos": "noun", + "word_frequency": 20880 + }, + { + "word": "salariat", + "article_with_word": "le salariat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wage-earning system", + "example_sentence_native": "Le salariat est la forme d'emploi la plus répandue.", + "example_sentence_english": "Salaried employment is the most common form of employment.", + "pos": "noun", + "word_frequency": 20881 + }, + { + "word": "scruter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scrutinize", + "example_sentence_native": "Il scrutait l'horizon à la recherche d'un signe.", + "example_sentence_english": "He was scrutinizing the horizon, looking for a sign.", + "pos": "verb", + "word_frequency": 20886 + }, + { + "word": "skateboard", + "article_with_word": "le skateboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skateboard", + "example_sentence_native": "Il a acheté un nouveau skateboard.", + "example_sentence_english": "He bought a new skateboard.", + "pos": "noun", + "word_frequency": 20890 + }, + { + "word": "soviet", + "article_with_word": "le soviet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soviet", + "example_sentence_native": "Les soviets étaient des conseils ouvriers et paysans.", + "example_sentence_english": "Soviets were workers' and peasants' councils.", + "pos": "noun", + "word_frequency": 20893 + }, + { + "word": "statutaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statutory", + "example_sentence_native": "Les obligations statutaires doivent être respectées.", + "example_sentence_english": "Statutory obligations must be respected.", + "pos": "adjective", + "word_frequency": 20894 + }, + { + "word": "subconscient", + "article_with_word": "le subconscient", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subconscious", + "example_sentence_native": "Nos rêves sont souvent le reflet de notre subconscient.", + "example_sentence_english": "Our dreams are often a reflection of our subconscious.", + "pos": "noun", + "word_frequency": 20895 + }, + { + "word": "tirade", + "article_with_word": "la tirade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tirade", + "example_sentence_native": "L'acteur a prononcé une longue tirade.", + "example_sentence_english": "The actor delivered a long tirade.", + "pos": "noun", + "word_frequency": 20900 + }, + { + "word": "titiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tickle", + "example_sentence_native": "Il aime titiller son chat avec une plume.", + "example_sentence_english": "He likes to tickle his cat with a feather.", + "pos": "verb", + "word_frequency": 20901 + }, + { + "word": "toubib", + "article_with_word": "le toubib", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doc (informal)", + "example_sentence_native": "Je dois aller voir le toubib pour mon rhume.", + "example_sentence_english": "I need to go see the doc for my cold.", + "pos": "noun", + "word_frequency": 20905 + }, + { + "word": "tricherie", + "article_with_word": "la tricherie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheating", + "example_sentence_native": "La tricherie est interdite aux examens.", + "example_sentence_english": "Cheating is forbidden during exams.", + "pos": "noun", + "word_frequency": 20907 + }, + { + "word": "triomphant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumphant", + "example_sentence_native": "Il affichait un sourire triomphant après sa victoire.", + "example_sentence_english": "He displayed a triumphant smile after his victory.", + "pos": "adjective", + "word_frequency": 20908 + }, + { + "word": "tuba", + "article_with_word": "le tuba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tuba", + "example_sentence_native": "Il joue du tuba dans l'orchestre.", + "example_sentence_english": "He plays the tuba in the orchestra.", + "pos": "noun", + "word_frequency": 20909 + }, + { + "word": "tutoriel", + "article_with_word": "le tutoriel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutorial", + "example_sentence_native": "J'ai regardé un tutoriel pour apprendre à utiliser ce logiciel.", + "example_sentence_english": "I watched a tutorial to learn how to use this software.", + "pos": "noun", + "word_frequency": 20910 + }, + { + "word": "verglas", + "article_with_word": "le verglas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "black ice", + "example_sentence_native": "Attention, il y a du verglas sur la route ce matin.", + "example_sentence_english": "Be careful, there's black ice on the road this morning.", + "pos": "noun", + "word_frequency": 20912 + }, + { + "word": "vertigineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dizzying", + "example_sentence_native": "La vue depuis le sommet de la montagne était vertigineuse.", + "example_sentence_english": "The view from the top of the mountain was dizzying.", + "pos": "adjective", + "word_frequency": 20913 + }, + { + "word": "ânerie", + "article_with_word": "une ânerie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonsense", + "example_sentence_native": "Il a dit une ânerie complète.", + "example_sentence_english": "He said complete nonsense.", + "pos": "noun", + "word_frequency": 20919 + }, + { + "word": "épitaphe", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epitaph", + "example_sentence_native": "L'épitaphe sur sa tombe était très émouvante.", + "example_sentence_english": "The epitaph on his tomb was very moving.", + "pos": "noun", + "word_frequency": 20920 + }, + { + "word": "éthiopien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ethiopian", + "example_sentence_native": "Elle a acheté du café éthiopien.", + "example_sentence_english": "She bought some Ethiopian coffee.", + "pos": "adjective", + "word_frequency": 20921 + }, + { + "word": "étouffant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stifling;suffocating", + "example_sentence_native": "L'atmosphère dans la pièce était étouffante.", + "example_sentence_english": "The atmosphere in the room was stifling.", + "pos": "adjective", + "word_frequency": 20922 + }, + { + "word": "abject", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abject;despicable", + "example_sentence_native": "Son comportement était absolument abject.", + "example_sentence_english": "His behavior was absolutely abject.", + "pos": "adjective", + "word_frequency": 20924 + }, + { + "word": "abrupt", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abrupt;steep", + "example_sentence_native": "La route était abrupte et difficile à monter.", + "example_sentence_english": "The road was abrupt and difficult to climb.", + "pos": "adjective", + "word_frequency": 20925 + }, + { + "word": "accaparer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to monopolize;to engross", + "example_sentence_native": "Il a tendance à accaparer la conversation.", + "example_sentence_english": "He tends to monopolize the conversation.", + "pos": "verb", + "word_frequency": 20926 + }, + { + "word": "affectueusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affectionately", + "example_sentence_native": "Il lui a écrit affectueusement.", + "example_sentence_english": "He wrote to her affectionately.", + "pos": "adverb", + "word_frequency": 20928 + }, + { + "word": "agronome", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agronomist", + "example_sentence_native": "L'agronome a étudié les sols de la ferme.", + "example_sentence_english": "The agronomist studied the farm's soils.", + "pos": "noun", + "word_frequency": 20929 + }, + { + "word": "amnésique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amnesiac", + "example_sentence_native": "Le patient était amnésique après l'accident.", + "example_sentence_english": "The patient was amnesiac after the accident.", + "pos": "adjective", + "word_frequency": 20933 + }, + { + "word": "anarchique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchic", + "example_sentence_native": "La situation est devenue complètement anarchique.", + "example_sentence_english": "The situation became completely anarchic.", + "pos": "adjective", + "word_frequency": 20935 + }, + { + "word": "anglican", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Anglican", + "example_sentence_native": "Il appartient à l'Église anglicane.", + "example_sentence_english": "He belongs to the Anglican Church.", + "pos": "adjective", + "word_frequency": 20936 + }, + { + "word": "assertion", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assertion;claim", + "example_sentence_native": "Il a fait une assertion audacieuse.", + "example_sentence_english": "He made a bold assertion.", + "pos": "noun", + "word_frequency": 20940 + }, + { + "word": "atteler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harness;to set to work", + "example_sentence_native": "Il faut s'atteler à la tâche sans tarder.", + "example_sentence_english": "We must set to work without delay.", + "pos": "verb", + "word_frequency": 20942 + }, + { + "word": "batard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bastard;illegitimate;hybrid", + "example_sentence_native": "C'est un mot bâtard, un mélange de deux langues.", + "example_sentence_english": "It's a hybrid word, a mix of two languages.", + "pos": "adjective", + "word_frequency": 20944 + }, + { + "word": "berceuse", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lullaby", + "example_sentence_native": "Elle a chanté une douce berceuse à son enfant.", + "example_sentence_english": "She sang a sweet lullaby to her child.", + "pos": "noun", + "word_frequency": 20946 + }, + { + "word": "biere", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beer", + "example_sentence_native": "Je voudrais une bière, s'il vous plaît.", + "example_sentence_english": "I would like a beer, please.", + "pos": "noun", + "word_frequency": 20948 + }, + { + "word": "blitz", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blitz;sudden attack", + "example_sentence_native": "Le blitz de questions l'a pris au dépourvu.", + "example_sentence_english": "The blitz of questions caught him off guard.", + "pos": "noun", + "word_frequency": 20951 + }, + { + "word": "braguette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fly (of trousers)", + "example_sentence_native": "N'oublie pas de fermer ta braguette.", + "example_sentence_english": "Don't forget to close your fly.", + "pos": "noun", + "word_frequency": 20954 + }, + { + "word": "béer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to gape;to stand open", + "example_sentence_native": "Il restait là, la bouche bée.", + "example_sentence_english": "He stood there, gaping.", + "pos": "verb", + "word_frequency": 20956 + }, + { + "word": "béguin", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crush;infatuation", + "example_sentence_native": "Elle a un béguin pour son collègue.", + "example_sentence_english": "She has a crush on her colleague.", + "pos": "noun", + "word_frequency": 20957 + }, + { + "word": "calandre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grille (of a car);calender (machine)", + "example_sentence_native": "La calandre de la voiture était endommagée.", + "example_sentence_english": "The car's grille was damaged.", + "pos": "noun", + "word_frequency": 20958 + }, + { + "word": "calypso", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calypso (music);Calypso (mythological figure)", + "example_sentence_native": "J'aime écouter de la musique calypso.", + "example_sentence_english": "I like listening to calypso music.", + "pos": "noun", + "word_frequency": 20959 + }, + { + "word": "cartoon", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartoon", + "example_sentence_native": "Les enfants aiment regarder des cartoons.", + "example_sentence_english": "Children like watching cartoons.", + "pos": "noun", + "word_frequency": 20964 + }, + { + "word": "chambouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to upset;to turn upside down", + "example_sentence_native": "Cette nouvelle a chamboulé tous ses plans.", + "example_sentence_english": "This news turned all his plans upside down.", + "pos": "verb", + "word_frequency": 20966 + }, + { + "word": "chartreux", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Chartreux (cat breed;monk)", + "example_sentence_native": "Mon chat est un magnifique Chartreux.", + "example_sentence_english": "My cat is a magnificent Chartreux.", + "pos": "noun", + "word_frequency": 20967 + }, + { + "word": "choco", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chocolate (informal)", + "example_sentence_native": "Je prends un choco chaud pour le petit-déjeuner.", + "example_sentence_english": "I'm having a hot chocolate for breakfast.", + "pos": "noun", + "word_frequency": 20969 + }, + { + "word": "coli", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "package;parcel;E. coli", + "example_sentence_native": "J'ai reçu un colis ce matin.", + "example_sentence_english": "I received a package this morning.", + "pos": "noun", + "word_frequency": 20971 + }, + { + "word": "consciencieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscientious", + "example_sentence_native": "Il est très consciencieux dans son travail.", + "example_sentence_english": "He is very conscientious in his work.", + "pos": "adjective", + "word_frequency": 20973 + }, + { + "word": "contenant", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container", + "example_sentence_native": "Le contenant est vide.", + "example_sentence_english": "The container is empty.", + "pos": "noun", + "word_frequency": 20974 + }, + { + "word": "convenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreed;conventional", + "example_sentence_native": "C'était l'heure convenue pour le rendez-vous.", + "example_sentence_english": "It was the agreed time for the appointment.", + "pos": "adjective", + "word_frequency": 20975 + }, + { + "word": "corinthien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Corinthian", + "example_sentence_native": "Les colonnes corinthiennes sont très ornées.", + "example_sentence_english": "Corinthian columns are very ornate.", + "pos": "noun", + "word_frequency": 20977 + }, + { + "word": "couplage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coupling;pairing", + "example_sentence_native": "Le couplage des systèmes a amélioré l'efficacité.", + "example_sentence_english": "The coupling of the systems improved efficiency.", + "pos": "noun", + "word_frequency": 20979 + }, + { + "word": "courtisane", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courtesan", + "example_sentence_native": "La courtisane était une figure importante à la cour royale.", + "example_sentence_english": "The courtesan was an important figure at the royal court.", + "pos": "noun", + "word_frequency": 20980 + }, + { + "word": "crescendo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crescendo;increasingly", + "example_sentence_native": "Le bruit augmentait crescendo.", + "example_sentence_english": "The noise increased crescendo.", + "pos": "adverb", + "word_frequency": 20982 + }, + { + "word": "croche", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eighth note (music);hook", + "example_sentence_native": "Il a joué une série de croches rapides.", + "example_sentence_english": "He played a series of fast eighth notes.", + "pos": "noun", + "word_frequency": 20983 + }, + { + "word": "cryptage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "encryption", + "example_sentence_native": "Le cryptage des données est essentiel pour la sécurité.", + "example_sentence_english": "Data encryption is essential for security.", + "pos": "noun", + "word_frequency": 20984 + }, + { + "word": "cène", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Last Supper", + "example_sentence_native": "La Cène de Léonard de Vinci est une œuvre célèbre.", + "example_sentence_english": "Leonardo da Vinci's Last Supper is a famous work.", + "pos": "noun", + "word_frequency": 20987 + }, + { + "word": "datte", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "date (fruit)", + "example_sentence_native": "J'aime manger des dattes séchées.", + "example_sentence_english": "I like to eat dried dates.", + "pos": "noun", + "word_frequency": 20989 + }, + { + "word": "diner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dine;to have dinner", + "example_sentence_native": "Nous allons dîner au restaurant ce soir.", + "example_sentence_english": "We are going to dine at the restaurant tonight.", + "pos": "verb", + "word_frequency": 20992 + }, + { + "word": "discographie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discography", + "example_sentence_native": "Sa discographie comprend de nombreux albums classiques.", + "example_sentence_english": "His discography includes many classic albums.", + "pos": "noun", + "word_frequency": 20993 + }, + { + "word": "dislocation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dislocation", + "example_sentence_native": "Il a souffert d'une dislocation de l'épaule.", + "example_sentence_english": "He suffered a shoulder dislocation.", + "pos": "noun", + "word_frequency": 20994 + }, + { + "word": "diurne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diurnal;daytime", + "example_sentence_native": "Les animaux diurnes sont actifs pendant la journée.", + "example_sentence_english": "Diurnal animals are active during the day.", + "pos": "adjective", + "word_frequency": 20995 + }, + { + "word": "défensivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defensively", + "example_sentence_native": "L'équipe a joué très défensivement.", + "example_sentence_english": "The team played very defensively.", + "pos": "adverb", + "word_frequency": 20999 + }, + { + "word": "dégel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thaw;defrosting", + "example_sentence_native": "Le dégel des glaces polaires est une préoccupation majeure.", + "example_sentence_english": "The thawing of polar ice is a major concern.", + "pos": "noun", + "word_frequency": 21000 + }, + { + "word": "désengagement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disengagement;withdrawal", + "example_sentence_native": "Le désengagement des troupes a été annoncé.", + "example_sentence_english": "The withdrawal of troops has been announced.", + "pos": "noun", + "word_frequency": 21001 + }, + { + "word": "désuet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsolete;outdated", + "example_sentence_native": "Ce mot est devenu désuet dans le langage courant.", + "example_sentence_english": "This word has become obsolete in everyday language.", + "pos": "adjective", + "word_frequency": 21002 + }, + { + "word": "dîme", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tithe", + "example_sentence_native": "Autrefois, les paysans devaient payer la dîme à l'Église.", + "example_sentence_english": "In the past, peasants had to pay the tithe to the Church.", + "pos": "noun", + "word_frequency": 21003 + }, + { + "word": "editeur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publisher;editor", + "example_sentence_native": "L'éditeur a accepté son manuscrit.", + "example_sentence_english": "The publisher accepted his manuscript.", + "pos": "noun", + "word_frequency": 21004 + }, + { + "word": "empoisonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoned", + "example_sentence_native": "Il a bu de l'eau empoisonnée.", + "example_sentence_english": "He drank poisoned water.", + "pos": "adjective", + "word_frequency": 21006 + }, + { + "word": "enquete", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inquiry;investigation;survey", + "example_sentence_native": "La police a ouvert une enquête.", + "example_sentence_english": "The police opened an investigation.", + "pos": "noun", + "word_frequency": 21008 + }, + { + "word": "entonnoir", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funnel", + "example_sentence_native": "Utilisez un entonnoir pour verser le liquide.", + "example_sentence_english": "Use a funnel to pour the liquid.", + "pos": "noun", + "word_frequency": 21009 + }, + { + "word": "entropie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "entropy", + "example_sentence_native": "L'entropie est une mesure du désordre dans un système.", + "example_sentence_english": "Entropy is a measure of disorder in a system.", + "pos": "noun", + "word_frequency": 21010 + }, + { + "word": "esclavagiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slave-owning;pro-slavery", + "example_sentence_native": "Les pratiques esclavagistes ont été abolies.", + "example_sentence_english": "Slave-owning practices have been abolished.", + "pos": "adjective", + "word_frequency": 21011 + }, + { + "word": "filmographie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filmography", + "example_sentence_native": "Sa filmographie est impressionnante.", + "example_sentence_english": "His filmography is impressive.", + "pos": "noun", + "word_frequency": 21015 + }, + { + "word": "frémir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shiver;to tremble;to simmer", + "example_sentence_native": "L'eau commence à frémir.", + "example_sentence_english": "The water is starting to simmer.", + "pos": "verb", + "word_frequency": 21017 + }, + { + "word": "girouette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weather vane;weathervane", + "example_sentence_native": "La girouette indique la direction du vent.", + "example_sentence_english": "The weather vane indicates the wind direction.", + "pos": "noun", + "word_frequency": 21019 + }, + { + "word": "glycémie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blood sugar;glycemia", + "example_sentence_native": "Il doit surveiller sa glycémie.", + "example_sentence_english": "He must monitor his blood sugar.", + "pos": "noun", + "word_frequency": 21021 + }, + { + "word": "glyphosate", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "glyphosate", + "example_sentence_native": "Le glyphosate est un herbicide controversé.", + "example_sentence_english": "Glyphosate is a controversial herbicide.", + "pos": "noun", + "word_frequency": 21022 + }, + { + "word": "grincheux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grumpy;surly", + "example_sentence_native": "Il est toujours un peu grincheux le matin.", + "example_sentence_english": "He's always a bit grumpy in the morning.", + "pos": "adjective", + "word_frequency": 21024 + }, + { + "word": "groupé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grouped;clustered", + "example_sentence_native": "Ils ont fait un achat groupé pour obtenir une réduction.", + "example_sentence_english": "They made a grouped purchase to get a discount.", + "pos": "adjective", + "word_frequency": 21025 + }, + { + "word": "haletant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breathless;panting;gripping (for a story)", + "example_sentence_native": "Le coureur était haletant après la course.", + "example_sentence_english": "The runner was breathless after the race.", + "pos": "adjective", + "word_frequency": 21026 + }, + { + "word": "hippopotame", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hippopotamus", + "example_sentence_native": "L'hippopotame vit en Afrique.", + "example_sentence_english": "The hippopotamus lives in Africa.", + "pos": "noun", + "word_frequency": 21031 + }, + { + "word": "hongkongais", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hong Konger;person from Hong Kong", + "example_sentence_native": "Un Hongkongais a remporté la médaille.", + "example_sentence_english": "A Hong Konger won the medal.", + "pos": "noun", + "word_frequency": 21032 + }, + { + "word": "hébergeur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "host;web host", + "example_sentence_native": "J'ai choisi un nouvel hébergeur pour mon site web.", + "example_sentence_english": "I chose a new host for my website.", + "pos": "noun", + "word_frequency": 21037 + }, + { + "word": "hétéroclite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heterogeneous;motley;diverse", + "example_sentence_native": "Le groupe était composé de personnes hétéroclites.", + "example_sentence_english": "The group was composed of heterogeneous people.", + "pos": "adjective", + "word_frequency": 21038 + }, + { + "word": "indestructible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indestructible", + "example_sentence_native": "Ce matériau est pratiquement indestructible.", + "example_sentence_english": "This material is practically indestructible.", + "pos": "adjective", + "word_frequency": 21041 + }, + { + "word": "indéfectible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "unfailing;unwavering", + "example_sentence_native": "Son soutien indéfectible m'a beaucoup aidé.", + "example_sentence_english": "His unfailing support helped me a lot.", + "pos": "adjective", + "word_frequency": 21042 + }, + { + "word": "indûment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unduly;improperly", + "example_sentence_native": "Il a été accusé d'avoir perçu des fonds indûment.", + "example_sentence_english": "He was accused of having unduly received funds.", + "pos": "adverb", + "word_frequency": 21043 + }, + { + "word": "infructueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfruitful;unsuccessful", + "example_sentence_native": "Toutes nos tentatives pour le joindre ont été infructueuses.", + "example_sentence_english": "All our attempts to reach him were unsuccessful.", + "pos": "adjective", + "word_frequency": 21044 + }, + { + "word": "intenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bring (a lawsuit);to institute", + "example_sentence_native": "Ils ont décidé d'intenter une action en justice.", + "example_sentence_english": "They decided to bring a lawsuit.", + "pos": "verb", + "word_frequency": 21045 + }, + { + "word": "joignable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reachable;contactable", + "example_sentence_native": "Je ne suis pas joignable avant 10h.", + "example_sentence_english": "I am not reachable before 10 AM.", + "pos": "adjective", + "word_frequency": 21048 + }, + { + "word": "jouvence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "youth;rejuvenation", + "example_sentence_native": "Il cherche la fontaine de jouvence.", + "example_sentence_english": "He is looking for the fountain of youth.", + "pos": "noun", + "word_frequency": 21051 + }, + { + "word": "judicieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judiciously;wisely", + "example_sentence_native": "Il a judicieusement investi son argent.", + "example_sentence_english": "He judiciously invested his money.", + "pos": "adverb", + "word_frequency": 21052 + }, + { + "word": "lassant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tiring;tedious;boring", + "example_sentence_native": "Ce travail est vraiment lassant à la longue.", + "example_sentence_english": "This work is really tiring in the long run.", + "pos": "adjective", + "word_frequency": 21061 + }, + { + "word": "levain", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sourdough starter;leaven", + "example_sentence_native": "Le pain au levain est très populaire.", + "example_sentence_english": "Sourdough bread is very popular.", + "pos": "noun", + "word_frequency": 21063 + }, + { + "word": "lâchement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cowardly", + "example_sentence_native": "Il a agi lâchement en abandonnant ses amis.", + "example_sentence_english": "He acted cowardly by abandoning his friends.", + "pos": "adverb", + "word_frequency": 21071 + }, + { + "word": "malchanceux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unlucky", + "example_sentence_native": "Il est très malchanceux aux jeux de hasard.", + "example_sentence_english": "He is very unlucky at games of chance.", + "pos": "adjective", + "word_frequency": 21074 + }, + { + "word": "masculinité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masculinity", + "example_sentence_native": "La masculinité est un concept complexe.", + "example_sentence_english": "Masculinity is a complex concept.", + "pos": "noun", + "word_frequency": 21078 + }, + { + "word": "matériellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "materially;physically;financially", + "example_sentence_native": "Matériellement, nous ne pouvons pas nous permettre ce luxe.", + "example_sentence_english": "Materially, we cannot afford this luxury.", + "pos": "adverb", + "word_frequency": 21079 + }, + { + "word": "mendicité", + "article_with_word": "la mendicité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "begging;mendicancy", + "example_sentence_native": "La mendicité est un problème social complexe.", + "example_sentence_english": "Begging is a complex social problem.", + "pos": "noun", + "word_frequency": 21080 + }, + { + "word": "menotter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to handcuff", + "example_sentence_native": "La police a dû menotter le suspect.", + "example_sentence_english": "The police had to handcuff the suspect.", + "pos": "verb", + "word_frequency": 21082 + }, + { + "word": "meurtrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bruise;to hurt deeply", + "example_sentence_native": "La chute a meurtri son bras.", + "example_sentence_english": "The fall bruised his arm.", + "pos": "verb", + "word_frequency": 21084 + }, + { + "word": "microscopique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microscopic", + "example_sentence_native": "Nous avons observé des organismes microscopiques.", + "example_sentence_english": "We observed microscopic organisms.", + "pos": "adjective", + "word_frequency": 21085 + }, + { + "word": "miroiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shimmer;to glint;to reflect", + "example_sentence_native": "Le soleil faisait miroiter l'eau du lac.", + "example_sentence_english": "The sun made the lake water shimmer.", + "pos": "verb", + "word_frequency": 21088 + }, + { + "word": "modus", + "article_with_word": "le modus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "method;way (often in 'modus operandi')", + "example_sentence_native": "Le modus operandi du criminel était toujours le même.", + "example_sentence_english": "The criminal's modus operandi was always the same.", + "pos": "noun", + "word_frequency": 21089 + }, + { + "word": "mors", + "article_with_word": "le mors", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bit (for a horse);mouth (of a vice)", + "example_sentence_native": "Le cavalier a ajusté le mors du cheval.", + "example_sentence_english": "The rider adjusted the horse's bit.", + "pos": "noun", + "word_frequency": 21093 + }, + { + "word": "mortuaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortuary;funereal", + "example_sentence_native": "La chambre mortuaire était silencieuse.", + "example_sentence_english": "The mortuary room was silent.", + "pos": "adjective", + "word_frequency": 21094 + }, + { + "word": "multifonction", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multifunction;all-in-one", + "example_sentence_native": "J'ai acheté une imprimante multifonction.", + "example_sentence_english": "I bought a multifunction printer.", + "pos": "adjective", + "word_frequency": 21095 + }, + { + "word": "myope", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short-sighted;nearsighted", + "example_sentence_native": "Elle est myope et porte des lunettes.", + "example_sentence_english": "She is short-sighted and wears glasses.", + "pos": "adjective", + "word_frequency": 21097 + }, + { + "word": "mytho", + "article_with_word": "un mytho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liar (colloquial;short for mythomaniac)", + "example_sentence_native": "Ne crois pas ce qu'il dit, c'est un vrai mytho.", + "example_sentence_english": "Don't believe what he says, he's a real liar.", + "pos": "noun", + "word_frequency": 21098 + }, + { + "word": "médiatisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediatized;highly publicized", + "example_sentence_native": "L'affaire a été très médiatisée.", + "example_sentence_english": "The case was highly publicized.", + "pos": "adjective", + "word_frequency": 21099 + }, + { + "word": "navigable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navigable", + "example_sentence_native": "Le fleuve est navigable sur plusieurs kilomètres.", + "example_sentence_english": "The river is navigable for several kilometers.", + "pos": "adjective", + "word_frequency": 21102 + }, + { + "word": "nommément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "namely;specifically", + "example_sentence_native": "Il a cité plusieurs exemples, nommément la France et l'Allemagne.", + "example_sentence_english": "He cited several examples, namely France and Germany.", + "pos": "adverb", + "word_frequency": 21104 + }, + { + "word": "numériquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "numerically;digitally", + "example_sentence_native": "Les données ont été traitées numériquement.", + "example_sentence_english": "The data was processed numerically.", + "pos": "adverb", + "word_frequency": 21106 + }, + { + "word": "observable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observable", + "example_sentence_native": "Les changements sont clairement observables.", + "example_sentence_english": "The changes are clearly observable.", + "pos": "adjective", + "word_frequency": 21107 + }, + { + "word": "obstiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persist;to be stubborn (often 's'obstiner')", + "example_sentence_native": "Il s'obstine à refuser toute aide.", + "example_sentence_english": "He persists in refusing all help.", + "pos": "verb", + "word_frequency": 21108 + }, + { + "word": "opale", + "article_with_word": "une opale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opal", + "example_sentence_native": "Elle portait un collier avec une belle opale.", + "example_sentence_english": "She wore a necklace with a beautiful opal.", + "pos": "noun", + "word_frequency": 21110 + }, + { + "word": "oranger", + "article_with_word": "un oranger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orange tree", + "example_sentence_native": "L'oranger est un arbre fruitier.", + "example_sentence_english": "The orange tree is a fruit tree.", + "pos": "noun", + "word_frequency": 21111 + }, + { + "word": "orbe", + "article_with_word": "l'orbe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orb;sphere", + "example_sentence_native": "L'orbe terrestre tourne autour du soleil.", + "example_sentence_english": "The terrestrial orb revolves around the sun.", + "pos": "noun", + "word_frequency": 21112 + }, + { + "word": "orme", + "article_with_word": "l'orme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elm tree", + "example_sentence_native": "Un vieil orme se tenait au milieu du champ.", + "example_sentence_english": "An old elm tree stood in the middle of the field.", + "pos": "noun", + "word_frequency": 21113 + }, + { + "word": "ostensiblement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ostensibly;seemingly", + "example_sentence_native": "Il a ostensiblement ignoré mes questions.", + "example_sentence_english": "He ostensibly ignored my questions.", + "pos": "adverb", + "word_frequency": 21115 + }, + { + "word": "panini", + "article_with_word": "un panini", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "panini (grilled sandwich)", + "example_sentence_native": "J'ai commandé un panini au jambon et au fromage.", + "example_sentence_english": "I ordered a ham and cheese panini.", + "pos": "noun", + "word_frequency": 21117 + }, + { + "word": "partance", + "article_with_word": "la partance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "departure", + "example_sentence_native": "L'heure de la partance approche.", + "example_sentence_english": "The time of departure is approaching.", + "pos": "noun", + "word_frequency": 21120 + }, + { + "word": "patriarcal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriarchal", + "example_sentence_native": "Il vit dans une société patriarcale.", + "example_sentence_english": "He lives in a patriarchal society.", + "pos": "adjective", + "word_frequency": 21121 + }, + { + "word": "paysager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landscape (adj.);scenic", + "example_sentence_native": "Le jardin a un aspect très paysager.", + "example_sentence_english": "The garden has a very scenic appearance.", + "pos": "adjective", + "word_frequency": 21122 + }, + { + "word": "photocopie", + "article_with_word": "la photocopie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photocopy", + "example_sentence_native": "J'ai besoin d'une photocopie de ce document.", + "example_sentence_english": "I need a photocopy of this document.", + "pos": "noun", + "word_frequency": 21126 + }, + { + "word": "pluvial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pluvial;rainy", + "example_sentence_native": "Les inondations sont dues à un épisode pluvial intense.", + "example_sentence_english": "The floods are due to an intense pluvial episode.", + "pos": "adjective", + "word_frequency": 21130 + }, + { + "word": "poigne", + "article_with_word": "la poigne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grip;firm hand;authority", + "example_sentence_native": "Il a une forte poigne.", + "example_sentence_english": "He has a strong grip.", + "pos": "noun", + "word_frequency": 21131 + }, + { + "word": "poireau", + "article_with_word": "le poireau", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leek", + "example_sentence_native": "J'ai acheté des poireaux pour la soupe.", + "example_sentence_english": "I bought leeks for the soup.", + "pos": "noun", + "word_frequency": 21132 + }, + { + "word": "primat", + "article_with_word": "le primat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primacy;primate", + "example_sentence_native": "Le respect de la vie privée a le primat.", + "example_sentence_english": "Respect for privacy has primacy.", + "pos": "noun", + "word_frequency": 21138 + }, + { + "word": "primeur", + "article_with_word": "la primeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freshness;first fruits;exclusivity", + "example_sentence_native": "J'ai eu la primeur de l'information.", + "example_sentence_english": "I had the exclusivity of the information.", + "pos": "noun", + "word_frequency": 21139 + }, + { + "word": "probant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conclusive;convincing", + "example_sentence_native": "Il n'y a pas de preuve probante.", + "example_sentence_english": "There is no conclusive proof.", + "pos": "adjective", + "word_frequency": 21140 + }, + { + "word": "propane", + "article_with_word": "le propane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "propane", + "example_sentence_native": "Nous utilisons du propane pour le barbecue.", + "example_sentence_english": "We use propane for the barbecue.", + "pos": "noun", + "word_frequency": 21142 + }, + { + "word": "périmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expire;to become obsolete", + "example_sentence_native": "Ce produit va périmer bientôt.", + "example_sentence_english": "This product will expire soon.", + "pos": "verb", + "word_frequency": 21144 + }, + { + "word": "quarterback", + "article_with_word": "le quarterback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarterback", + "example_sentence_native": "Le quarterback a lancé une passe décisive.", + "example_sentence_english": "The quarterback threw a decisive pass.", + "pos": "noun", + "word_frequency": 21145 + }, + { + "word": "ramassis", + "article_with_word": "le ramassis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collection;motley crew;rabble", + "example_sentence_native": "C'est un ramassis de mensonges.", + "example_sentence_english": "It's a collection of lies.", + "pos": "noun", + "word_frequency": 21147 + }, + { + "word": "recomposition", + "article_with_word": "la recomposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recomposition;restructuring", + "example_sentence_native": "La recomposition politique est en cours.", + "example_sentence_english": "Political recomposition is underway.", + "pos": "noun", + "word_frequency": 21148 + }, + { + "word": "rectum", + "article_with_word": "le rectum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectum", + "example_sentence_native": "Le rectum est la dernière partie du gros intestin.", + "example_sentence_english": "The rectum is the last part of the large intestine.", + "pos": "noun", + "word_frequency": 21149 + }, + { + "word": "recyclé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycled", + "example_sentence_native": "Ce papier est recyclé.", + "example_sentence_english": "This paper is recycled.", + "pos": "adjective", + "word_frequency": 21150 + }, + { + "word": "redistribuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redistribute", + "example_sentence_native": "Il faut redistribuer les richesses.", + "example_sentence_english": "Wealth must be redistributed.", + "pos": "verb", + "word_frequency": 21151 + }, + { + "word": "reporting", + "article_with_word": "le reporting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reporting", + "example_sentence_native": "Le reporting financier est crucial pour l'entreprise.", + "example_sentence_english": "Financial reporting is crucial for the company.", + "pos": "noun", + "word_frequency": 21153 + }, + { + "word": "roulotte", + "article_with_word": "la roulotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caravan;trailer", + "example_sentence_native": "Ils vivent dans une roulotte.", + "example_sentence_english": "They live in a caravan.", + "pos": "noun", + "word_frequency": 21157 + }, + { + "word": "réapprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relearn", + "example_sentence_native": "Il doit réapprendre à marcher après son accident.", + "example_sentence_english": "He must relearn to walk after his accident.", + "pos": "verb", + "word_frequency": 21160 + }, + { + "word": "réformé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reformed", + "example_sentence_native": "L'église réformée a une longue histoire.", + "example_sentence_english": "The reformed church has a long history.", + "pos": "adjective", + "word_frequency": 21161 + }, + { + "word": "réglementé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulated", + "example_sentence_native": "Le marché est fortement réglementé.", + "example_sentence_english": "The market is heavily regulated.", + "pos": "adjective", + "word_frequency": 21162 + }, + { + "word": "répertorié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "listed;indexed", + "example_sentence_native": "Tous les documents ont été répertoriés.", + "example_sentence_english": "All documents have been listed.", + "pos": "adjective", + "word_frequency": 21163 + }, + { + "word": "répugner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disgust;to be repugnant to", + "example_sentence_native": "La violence lui répugne.", + "example_sentence_english": "Violence disgusts him.", + "pos": "verb", + "word_frequency": 21164 + }, + { + "word": "rétractation", + "article_with_word": "la rétractation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retraction", + "example_sentence_native": "Il a fait une rétractation publique de ses propos.", + "example_sentence_english": "He made a public retraction of his statements.", + "pos": "noun", + "word_frequency": 21165 + }, + { + "word": "satanique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satanic", + "example_sentence_native": "Le groupe a été accusé de pratiques sataniques.", + "example_sentence_english": "The group was accused of satanic practices.", + "pos": "adjective", + "word_frequency": 21167 + }, + { + "word": "sensoriel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensory", + "example_sentence_native": "L'expérience sensorielle était très intense.", + "example_sentence_english": "The sensory experience was very intense.", + "pos": "adjective", + "word_frequency": 21168 + }, + { + "word": "share", + "article_with_word": "le share", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "share (social media)", + "example_sentence_native": "Le nombre de shares sur cette publication est énorme.", + "example_sentence_english": "The number of shares on this post is huge.", + "pos": "noun", + "word_frequency": 21170 + }, + { + "word": "simulacre", + "article_with_word": "le simulacre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sham;pretense;simulacrum", + "example_sentence_native": "Leur mariage n'était qu'un simulacre.", + "example_sentence_english": "Their marriage was nothing but a sham.", + "pos": "noun", + "word_frequency": 21171 + }, + { + "word": "souligné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underlined;highlighted;emphasized", + "example_sentence_native": "Le mot important est souligné en rouge.", + "example_sentence_english": "The important word is underlined in red.", + "pos": "adjective", + "word_frequency": 21174 + }, + { + "word": "subversion", + "article_with_word": "la subversion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subversion", + "example_sentence_native": "Le gouvernement a dénoncé les actes de subversion.", + "example_sentence_english": "The government denounced the acts of subversion.", + "pos": "noun", + "word_frequency": 21175 + }, + { + "word": "suede", + "article_with_word": "le suède", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suede", + "example_sentence_native": "J'ai acheté des chaussures en suède.", + "example_sentence_english": "I bought suede shoes.", + "pos": "noun", + "word_frequency": 21176 + }, + { + "word": "superbement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superbly", + "example_sentence_native": "Elle a superbement joué son rôle.", + "example_sentence_english": "She played her role superbly.", + "pos": "adverb", + "word_frequency": 21177 + }, + { + "word": "supporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supported;endured", + "example_sentence_native": "Le poids n'est pas supporté par cette étagère.", + "example_sentence_english": "The weight is not supported by this shelf.", + "pos": "adjective", + "word_frequency": 21178 + }, + { + "word": "supérette", + "article_with_word": "la supérette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mini-supermarket;convenience store", + "example_sentence_native": "Je vais à la supérette acheter du pain.", + "example_sentence_english": "I'm going to the convenience store to buy bread.", + "pos": "noun", + "word_frequency": 21179 + }, + { + "word": "survey", + "article_with_word": "le survey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey", + "example_sentence_native": "Nous avons lancé un survey pour recueillir des avis.", + "example_sentence_english": "We launched a survey to gather opinions.", + "pos": "noun", + "word_frequency": 21180 + }, + { + "word": "tantinet", + "article_with_word": "un tantinet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a little bit;a tiny bit", + "example_sentence_native": "Il est un tantinet fatigué.", + "example_sentence_english": "He is a little bit tired.", + "pos": "noun", + "word_frequency": 21181 + }, + { + "word": "teuf", + "article_with_word": "la teuf", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party (slang)", + "example_sentence_native": "On va faire la teuf ce soir.", + "example_sentence_english": "We're going to party tonight.", + "pos": "noun", + "word_frequency": 21182 + }, + { + "word": "tilt", + "article_with_word": "le tilt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tilt (as in 'to click' mentally)", + "example_sentence_native": "Quand il a compris, ça a fait tilt dans sa tête.", + "example_sentence_english": "When he understood, it clicked in his head.", + "pos": "noun", + "word_frequency": 21186 + }, + { + "word": "tirelire", + "article_with_word": "la tirelire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piggy bank", + "example_sentence_native": "J'ai mis toutes mes pièces dans ma tirelire.", + "example_sentence_english": "I put all my coins in my piggy bank.", + "pos": "noun", + "word_frequency": 21187 + }, + { + "word": "titrage", + "article_with_word": "le titrage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "titration (chemistry);subtitling (film)", + "example_sentence_native": "Le titrage des films est un art.", + "example_sentence_english": "Film subtitling is an art.", + "pos": "noun", + "word_frequency": 21188 + }, + { + "word": "tombal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "funereal;sepulchral", + "example_sentence_native": "Le silence tombal régnait dans la pièce.", + "example_sentence_english": "A deathly silence reigned in the room.", + "pos": "adjective", + "word_frequency": 21189 + }, + { + "word": "tombeur", + "article_with_word": "le tombeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ladies' man;heartbreaker", + "example_sentence_native": "Il a la réputation d'être un grand tombeur.", + "example_sentence_english": "He has a reputation for being a great ladies' man.", + "pos": "noun", + "word_frequency": 21190 + }, + { + "word": "toque", + "article_with_word": "la toque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toque (chef's hat);cap", + "example_sentence_native": "Le chef portait une toque blanche.", + "example_sentence_english": "The chef wore a white toque.", + "pos": "noun", + "word_frequency": 21191 + }, + { + "word": "transcender", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to transcend", + "example_sentence_native": "L'art peut transcender les frontières culturelles.", + "example_sentence_english": "Art can transcend cultural boundaries.", + "pos": "verb", + "word_frequency": 21193 + }, + { + "word": "trébucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stumble;to trip", + "example_sentence_native": "Il a trébuché sur une racine.", + "example_sentence_english": "He stumbled on a root.", + "pos": "verb", + "word_frequency": 21196 + }, + { + "word": "tâter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel;to touch (tentatively);to sound out", + "example_sentence_native": "Il a tâté le terrain avant de proposer son idée.", + "example_sentence_english": "He sounded out the ground before proposing his idea.", + "pos": "verb", + "word_frequency": 21198 + }, + { + "word": "usurpateur", + "article_with_word": "l'usurpateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usurper", + "example_sentence_native": "L'usurpateur a pris le trône par la force.", + "example_sentence_english": "The usurper took the throne by force.", + "pos": "noun", + "word_frequency": 21199 + }, + { + "word": "verrier", + "article_with_word": "un verrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glassmaker", + "example_sentence_native": "Le verrier a soufflé une magnifique carafe.", + "example_sentence_english": "The glassmaker blew a magnificent carafe.", + "pos": "noun", + "word_frequency": 21203 + }, + { + "word": "voltige", + "article_with_word": "la voltige", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acrobatics;aerobatics", + "example_sentence_native": "La voltige équestre est un sport impressionnant.", + "example_sentence_english": "Equestrian vaulting is an impressive sport.", + "pos": "noun", + "word_frequency": 21205 + }, + { + "word": "voyer", + "article_with_word": "un voyer", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "road surveyor;road inspector", + "example_sentence_native": "Autrefois, le grand voyer était responsable de l'entretien des routes.", + "example_sentence_english": "In the past, the chief road surveyor was responsible for road maintenance.", + "pos": "noun", + "word_frequency": 21206 + }, + { + "word": "végétatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vegetative", + "example_sentence_native": "La croissance végétative de la plante est rapide au printemps.", + "example_sentence_english": "The vegetative growth of the plant is rapid in spring.", + "pos": "adjective", + "word_frequency": 21207 + }, + { + "word": "émailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enamel;to stud", + "example_sentence_native": "L'artisan a émaillé le vase de motifs colorés.", + "example_sentence_english": "The artisan enameled the vase with colorful patterns.", + "pos": "verb", + "word_frequency": 21209 + }, + { + "word": "émerveillement", + "article_with_word": "l'émerveillement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wonder;amazement", + "example_sentence_native": "Les enfants regardaient le spectacle avec émerveillement.", + "example_sentence_english": "The children watched the show with wonder.", + "pos": "noun", + "word_frequency": 21210 + }, + { + "word": "énergiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energetically", + "example_sentence_native": "Il a frappé à la porte énergiquement.", + "example_sentence_english": "He knocked on the door energetically.", + "pos": "adverb", + "word_frequency": 21211 + }, + { + "word": "aboi", + "article_with_word": "un aboi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bark (of a dog)", + "example_sentence_native": "On a entendu les abois du chien dans le lointain.", + "example_sentence_english": "We heard the barks of the dog in the distance.", + "pos": "noun", + "word_frequency": 21213 + }, + { + "word": "accommodement", + "article_with_word": "un accommodement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arrangement;compromise", + "example_sentence_native": "Ils ont trouvé un accommodement pour résoudre leur différend.", + "example_sentence_english": "They found an arrangement to resolve their dispute.", + "pos": "noun", + "word_frequency": 21214 + }, + { + "word": "accoutumé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accustomed;usual", + "example_sentence_native": "Il a pris son chemin accoutumé pour rentrer chez lui.", + "example_sentence_english": "He took his usual path to go home.", + "pos": "adjective", + "word_frequency": 21215 + }, + { + "word": "actionnariat", + "article_with_word": "l'actionnariat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shareholding;shareholder base", + "example_sentence_native": "L'actionnariat de l'entreprise est très diversifié.", + "example_sentence_english": "The company's shareholding is very diversified.", + "pos": "noun", + "word_frequency": 21216 + }, + { + "word": "aiguiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sharpen", + "example_sentence_native": "Il faut aiguiser les couteaux régulièrement.", + "example_sentence_english": "Knives need to be sharpened regularly.", + "pos": "verb", + "word_frequency": 21217 + }, + { + "word": "alchimiste", + "article_with_word": "un alchimiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alchemist", + "example_sentence_native": "L'alchimiste cherchait à transformer le plomb en or.", + "example_sentence_english": "The alchemist sought to transform lead into gold.", + "pos": "noun", + "word_frequency": 21218 + }, + { + "word": "aléatoirement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "randomly", + "example_sentence_native": "Les cartes ont été distribuées aléatoirement.", + "example_sentence_english": "The cards were dealt randomly.", + "pos": "adverb", + "word_frequency": 21220 + }, + { + "word": "ambitionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to aspire to;to aim for", + "example_sentence_native": "Il ambitionne de devenir un grand artiste.", + "example_sentence_english": "He aspires to become a great artist.", + "pos": "verb", + "word_frequency": 21221 + }, + { + "word": "anchois", + "article_with_word": "un anchois", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anchovy", + "example_sentence_native": "J'aime les anchois sur ma pizza.", + "example_sentence_english": "I like anchovies on my pizza.", + "pos": "noun", + "word_frequency": 21223 + }, + { + "word": "annotation", + "article_with_word": "une annotation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annotation;note", + "example_sentence_native": "J'ai ajouté des annotations dans la marge du livre.", + "example_sentence_english": "I added annotations in the margin of the book.", + "pos": "noun", + "word_frequency": 21226 + }, + { + "word": "annulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ring (finger);annular", + "example_sentence_native": "L'annulaire est le doigt où l'on porte souvent une bague.", + "example_sentence_english": "The ring finger is the finger where one often wears a ring.", + "pos": "adjective", + "word_frequency": 21227 + }, + { + "word": "antithèse", + "article_with_word": "l'antithèse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antithesis", + "example_sentence_native": "Leurs opinions sont l'antithèse l'une de l'autre.", + "example_sentence_english": "Their opinions are the antithesis of each other.", + "pos": "noun", + "word_frequency": 21228 + }, + { + "word": "apolitique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apolitical", + "example_sentence_native": "Il se déclare apolitique et ne vote jamais.", + "example_sentence_english": "He declares himself apolitical and never votes.", + "pos": "adjective", + "word_frequency": 21230 + }, + { + "word": "appendicite", + "article_with_word": "l'appendicite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appendicitis", + "example_sentence_native": "Elle a dû être opérée d'urgence pour une appendicite.", + "example_sentence_english": "She had to undergo emergency surgery for appendicitis.", + "pos": "noun", + "word_frequency": 21231 + }, + { + "word": "arbitral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitral", + "example_sentence_native": "La décision arbitrale est contraignante pour les deux parties.", + "example_sentence_english": "The arbitral decision is binding on both parties.", + "pos": "adjective", + "word_frequency": 21232 + }, + { + "word": "ardu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arduous;difficult", + "example_sentence_native": "C'était une tâche ardue, mais il a réussi.", + "example_sentence_english": "It was an arduous task, but he succeeded.", + "pos": "adjective", + "word_frequency": 21233 + }, + { + "word": "argileux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clayey;argillaceous", + "example_sentence_native": "Le sol de ce jardin est très argileux.", + "example_sentence_english": "The soil in this garden is very clayey.", + "pos": "adjective", + "word_frequency": 21235 + }, + { + "word": "attardé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delayed", + "example_sentence_native": "Le train est attardé de vingt minutes.", + "example_sentence_english": "The train is twenty minutes delayed.", + "pos": "adjective", + "word_frequency": 21238 + }, + { + "word": "attitré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "official;designated", + "example_sentence_native": "C'est son avocat attitré pour toutes les affaires.", + "example_sentence_english": "He is his designated lawyer for all matters.", + "pos": "adjective", + "word_frequency": 21239 + }, + { + "word": "automatisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automated", + "example_sentence_native": "Le processus est entièrement automatisé.", + "example_sentence_english": "The process is entirely automated.", + "pos": "adjective", + "word_frequency": 21241 + }, + { + "word": "ballerine", + "article_with_word": "une ballerine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballerina;ballet flat", + "example_sentence_native": "La ballerine a dansé avec grâce.", + "example_sentence_english": "The ballerina danced gracefully.", + "pos": "noun", + "word_frequency": 21243 + }, + { + "word": "barde", + "article_with_word": "un barde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bard", + "example_sentence_native": "Le barde chantait des histoires anciennes.", + "example_sentence_english": "The bard sang ancient stories.", + "pos": "noun", + "word_frequency": 21244 + }, + { + "word": "bete", + "article_with_word": "une bête", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beast;animal", + "example_sentence_native": "C'est une petite bête sauvage.", + "example_sentence_english": "It's a small wild animal.", + "pos": "noun", + "word_frequency": 21245 + }, + { + "word": "bivouac", + "article_with_word": "un bivouac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bivouac;temporary camp", + "example_sentence_native": "Ils ont établi un bivouac pour la nuit.", + "example_sentence_english": "They set up a bivouac for the night.", + "pos": "noun", + "word_frequency": 21246 + }, + { + "word": "braderie", + "article_with_word": "une braderie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearance sale;street market", + "example_sentence_native": "Nous avons trouvé de bonnes affaires à la braderie.", + "example_sentence_english": "We found good deals at the clearance sale.", + "pos": "noun", + "word_frequency": 21250 + }, + { + "word": "braise", + "article_with_word": "une braise", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ember;glowing coal", + "example_sentence_native": "Les braises du feu étaient encore chaudes.", + "example_sentence_english": "The embers of the fire were still hot.", + "pos": "noun", + "word_frequency": 21251 + }, + { + "word": "bungalow", + "article_with_word": "un bungalow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bungalow", + "example_sentence_native": "Ils ont loué un bungalow près de la plage.", + "example_sentence_english": "They rented a bungalow near the beach.", + "pos": "noun", + "word_frequency": 21253 + }, + { + "word": "capitaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capitalize on;to accumulate capital", + "example_sentence_native": "Il faut capitaliser sur nos forces.", + "example_sentence_english": "We must capitalize on our strengths.", + "pos": "verb", + "word_frequency": 21257 + }, + { + "word": "caractere", + "article_with_word": "un caractère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character;personality", + "example_sentence_native": "Il a un fort caractère.", + "example_sentence_english": "He has a strong character.", + "pos": "noun", + "word_frequency": 21259 + }, + { + "word": "carbonate", + "article_with_word": "un carbonate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carbonate", + "example_sentence_native": "Le carbonate de calcium est un minéral commun.", + "example_sentence_english": "Calcium carbonate is a common mineral.", + "pos": "noun", + "word_frequency": 21260 + }, + { + "word": "carie", + "article_with_word": "une carie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cavity;tooth decay", + "example_sentence_native": "Le dentiste a trouvé une carie.", + "example_sentence_english": "The dentist found a cavity.", + "pos": "noun", + "word_frequency": 21261 + }, + { + "word": "cartonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be a hit;to do very well", + "example_sentence_native": "Le nouveau film a cartonné au box-office.", + "example_sentence_english": "The new movie was a hit at the box office.", + "pos": "verb", + "word_frequency": 21264 + }, + { + "word": "cassure", + "article_with_word": "une cassure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "break;fracture", + "example_sentence_native": "Il y a une cassure dans le tuyau.", + "example_sentence_english": "There is a break in the pipe.", + "pos": "noun", + "word_frequency": 21265 + }, + { + "word": "celibataire", + "article_with_word": "un célibataire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "single person;bachelor;bachelorette", + "example_sentence_native": "Elle est célibataire.", + "example_sentence_english": "She is single.", + "pos": "noun", + "word_frequency": 21267 + }, + { + "word": "chihuahua", + "article_with_word": "un chihuahua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Chihuahua", + "example_sentence_native": "Mon chien est un petit chihuahua.", + "example_sentence_english": "My dog is a small Chihuahua.", + "pos": "noun", + "word_frequency": 21268 + }, + { + "word": "clonage", + "article_with_word": "le clonage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cloning", + "example_sentence_native": "Le clonage est un sujet de débat éthique.", + "example_sentence_english": "Cloning is a subject of ethical debate.", + "pos": "noun", + "word_frequency": 21271 + }, + { + "word": "colérique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choleric;easily angered", + "example_sentence_native": "Il est souvent colérique quand il est fatigué.", + "example_sentence_english": "He is often easily angered when he is tired.", + "pos": "adjective", + "word_frequency": 21273 + }, + { + "word": "conclave", + "article_with_word": "un conclave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conclave", + "example_sentence_native": "Le conclave a élu un nouveau pape.", + "example_sentence_english": "The conclave elected a new pope.", + "pos": "noun", + "word_frequency": 21275 + }, + { + "word": "condensateur", + "article_with_word": "un condensateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capacitor", + "example_sentence_native": "Le condensateur stocke l'énergie électrique.", + "example_sentence_english": "The capacitor stores electrical energy.", + "pos": "noun", + "word_frequency": 21276 + }, + { + "word": "converger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to converge", + "example_sentence_native": "Les chemins convergent vers le centre.", + "example_sentence_english": "The paths converge towards the center.", + "pos": "verb", + "word_frequency": 21277 + }, + { + "word": "converser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to converse;to chat", + "example_sentence_native": "Ils aiment converser pendant des heures.", + "example_sentence_english": "They like to converse for hours.", + "pos": "verb", + "word_frequency": 21278 + }, + { + "word": "cubique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cubic", + "example_sentence_native": "La forme de cette boîte est cubique.", + "example_sentence_english": "The shape of this box is cubic.", + "pos": "adjective", + "word_frequency": 21282 + }, + { + "word": "céleri", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "celery", + "example_sentence_native": "J'ai ajouté du céleri à ma salade.", + "example_sentence_english": "I added celery to my salad.", + "pos": "noun", + "word_frequency": 21283 + }, + { + "word": "damnation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "damnation", + "example_sentence_native": "Dans certaines croyances, la damnation est une punition éternelle.", + "example_sentence_english": "In some beliefs, damnation is an eternal punishment.", + "pos": "noun", + "word_frequency": 21285 + }, + { + "word": "desolé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sorry", + "example_sentence_native": "Je suis desolé pour le dérangement.", + "example_sentence_english": "I am sorry for the inconvenience.", + "pos": "adjective", + "word_frequency": 21287 + }, + { + "word": "disparate", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disparate", + "example_sentence_native": "Leurs idées sont très disparates et difficiles à concilier.", + "example_sentence_english": "Their ideas are very disparate and difficult to reconcile.", + "pos": "adjective", + "word_frequency": 21288 + }, + { + "word": "divisionnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divisional", + "example_sentence_native": "Il a été nommé général divisionnaire.", + "example_sentence_english": "He was appointed divisional general.", + "pos": "adjective", + "word_frequency": 21289 + }, + { + "word": "décerné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awarded;granted", + "example_sentence_native": "Le prix a été décerné à l'équipe gagnante.", + "example_sentence_english": "The prize was awarded to the winning team.", + "pos": "adjective", + "word_frequency": 21292 + }, + { + "word": "dédicacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dedicate;to sign (a book)", + "example_sentence_native": "L'auteur va dédicacer son nouveau roman.", + "example_sentence_english": "The author is going to sign his new novel.", + "pos": "verb", + "word_frequency": 21293 + }, + { + "word": "désabusé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disillusioned", + "example_sentence_native": "Il est devenu désabusé par les promesses politiques.", + "example_sentence_english": "He became disillusioned by political promises.", + "pos": "adjective", + "word_frequency": 21294 + }, + { + "word": "effréné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unrestrained;frantic", + "example_sentence_native": "Il a une soif effrénée de connaissances.", + "example_sentence_english": "He has an unrestrained thirst for knowledge.", + "pos": "adjective", + "word_frequency": 21296 + }, + { + "word": "embellissement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embellishment;beautification", + "example_sentence_native": "La ville a entrepris des travaux d'embellissement du parc.", + "example_sentence_english": "The city undertook beautification works in the park.", + "pos": "noun", + "word_frequency": 21297 + }, + { + "word": "estompe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stump (for drawing);blur", + "example_sentence_native": "L'artiste a utilisé une estompe pour adoucir les ombres.", + "example_sentence_english": "The artist used a stump to soften the shadows.", + "pos": "noun", + "word_frequency": 21301 + }, + { + "word": "eurodéputé", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "MEP (Member of European Parliament)", + "example_sentence_native": "Chaque pays envoie des eurodéputés au Parlement européen.", + "example_sentence_english": "Each country sends MEPs to the European Parliament.", + "pos": "noun", + "word_frequency": 21302 + }, + { + "word": "excommunication", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excommunication", + "example_sentence_native": "L'excommunication est une sanction religieuse grave.", + "example_sentence_english": "Excommunication is a serious religious sanction.", + "pos": "noun", + "word_frequency": 21303 + }, + { + "word": "fantasmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fantasize;to dream about", + "example_sentence_native": "Il aime fantasmer sur une vie meilleure.", + "example_sentence_english": "He likes to fantasize about a better life.", + "pos": "verb", + "word_frequency": 21305 + }, + { + "word": "formalisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formalism", + "example_sentence_native": "Le formalisme excessif peut ralentir les procédures administratives.", + "example_sentence_english": "Excessive formalism can slow down administrative procedures.", + "pos": "noun", + "word_frequency": 21310 + }, + { + "word": "féminisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feminization", + "example_sentence_native": "La féminisation des noms de métiers est un enjeu linguistique.", + "example_sentence_english": "The feminization of job titles is a linguistic issue.", + "pos": "noun", + "word_frequency": 21313 + }, + { + "word": "gifler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slap", + "example_sentence_native": "Il a été tenté de le gifler après son insulte.", + "example_sentence_english": "He was tempted to slap him after his insult.", + "pos": "verb", + "word_frequency": 21314 + }, + { + "word": "gommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to erase;to rub out", + "example_sentence_native": "N'oublie pas de gommer tes erreurs au crayon.", + "example_sentence_english": "Don't forget to erase your pencil mistakes.", + "pos": "verb", + "word_frequency": 21315 + }, + { + "word": "gradient", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gradient", + "example_sentence_native": "Le gradient de température est important dans cette zone.", + "example_sentence_english": "The temperature gradient is significant in this area.", + "pos": "noun", + "word_frequency": 21316 + }, + { + "word": "géorgien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Georgian", + "example_sentence_native": "Il a visité la capitale géorgienne, Tbilissi.", + "example_sentence_english": "He visited the Georgian capital, Tbilisi.", + "pos": "adjective", + "word_frequency": 21318 + }, + { + "word": "gérance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management;stewardship", + "example_sentence_native": "La gérance de l'immeuble est assurée par une agence spécialisée.", + "example_sentence_english": "The management of the building is handled by a specialized agency.", + "pos": "noun", + "word_frequency": 21319 + }, + { + "word": "hameçon", + "article_with_word": "l'hameçon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishhook", + "example_sentence_native": "Le pêcheur a mis un ver sur l'hameçon.", + "example_sentence_english": "The fisherman put a worm on the fishhook.", + "pos": "noun", + "word_frequency": 21321 + }, + { + "word": "harmonica", + "article_with_word": "l'harmonica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "harmonica", + "example_sentence_native": "Il joue de l'harmonica depuis son enfance.", + "example_sentence_english": "He has been playing the harmonica since his childhood.", + "pos": "noun", + "word_frequency": 21322 + }, + { + "word": "hétérogénéité", + "article_with_word": "l'hétérogénéité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heterogeneity", + "example_sentence_native": "L'hétérogénéité des données rend l'analyse complexe.", + "example_sentence_english": "The heterogeneity of the data makes the analysis complex.", + "pos": "noun", + "word_frequency": 21328 + }, + { + "word": "illettré", + "article_with_word": "l'illettré", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illiterate person", + "example_sentence_native": "Il est difficile pour un illettré de trouver un emploi.", + "example_sentence_english": "It is difficult for an illiterate person to find a job.", + "pos": "noun", + "word_frequency": 21329 + }, + { + "word": "impopularité", + "article_with_word": "l'impopularité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpopularity", + "example_sentence_native": "Son impopularité a conduit à sa démission.", + "example_sentence_english": "His unpopularity led to his resignation.", + "pos": "noun", + "word_frequency": 21330 + }, + { + "word": "importuner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bother", + "example_sentence_native": "Je ne voulais pas vous importuner avec mes problèmes.", + "example_sentence_english": "I didn't want to bother you with my problems.", + "pos": "verb", + "word_frequency": 21331 + }, + { + "word": "imputer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to attribute", + "example_sentence_native": "On ne peut pas lui imputer cette erreur.", + "example_sentence_english": "We cannot attribute this error to him.", + "pos": "verb", + "word_frequency": 21332 + }, + { + "word": "inaptitude", + "article_with_word": "l'inaptitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inability", + "example_sentence_native": "Son inaptitude au travail a été confirmée.", + "example_sentence_english": "His inability to work was confirmed.", + "pos": "noun", + "word_frequency": 21333 + }, + { + "word": "incrédulité", + "article_with_word": "l'incrédulité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incredulity", + "example_sentence_native": "Il a écouté l'histoire avec incrédulité.", + "example_sentence_english": "He listened to the story with incredulity.", + "pos": "noun", + "word_frequency": 21334 + }, + { + "word": "indignité", + "article_with_word": "l'indignité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unworthiness", + "example_sentence_native": "L'indignité de ses actes est choquante.", + "example_sentence_english": "The unworthiness of his actions is shocking.", + "pos": "noun", + "word_frequency": 21335 + }, + { + "word": "ingérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ingest", + "example_sentence_native": "Il est dangereux d'ingérer ce produit.", + "example_sentence_english": "It is dangerous to ingest this product.", + "pos": "verb", + "word_frequency": 21336 + }, + { + "word": "inquisiteur", + "article_with_word": "l'inquisiteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inquisitor", + "example_sentence_native": "Son regard inquisiteur me mettait mal à l'aise.", + "example_sentence_english": "His inquisitorial gaze made me uncomfortable.", + "pos": "noun", + "word_frequency": 21337 + }, + { + "word": "insalubre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unhealthy", + "example_sentence_native": "Ils vivent dans un logement insalubre.", + "example_sentence_english": "They live in unhealthy housing.", + "pos": "adjective", + "word_frequency": 21339 + }, + { + "word": "intéressement", + "article_with_word": "l'intéressement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profit-sharing", + "example_sentence_native": "L'entreprise propose un plan d'intéressement à ses employés.", + "example_sentence_english": "The company offers a profit-sharing plan to its employees.", + "pos": "noun", + "word_frequency": 21340 + }, + { + "word": "invendu", + "article_with_word": "l'invendu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsold item", + "example_sentence_native": "Les invendus sont souvent donnés à des associations.", + "example_sentence_english": "Unsold items are often given to associations.", + "pos": "noun", + "word_frequency": 21341 + }, + { + "word": "juridictionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisdictional", + "example_sentence_native": "C'est un problème de compétence juridictionnelle.", + "example_sentence_english": "It's a problem of jurisdictional competence.", + "pos": "adjective", + "word_frequency": 21345 + }, + { + "word": "laxiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lax", + "example_sentence_native": "Ses parents sont trop laxistes avec lui.", + "example_sentence_english": "His parents are too lax with him.", + "pos": "adjective", + "word_frequency": 21348 + }, + { + "word": "legion", + "article_with_word": "la légion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legion", + "example_sentence_native": "La Légion étrangère est une unité de l'armée française.", + "example_sentence_english": "The Foreign Legion is a unit of the French army.", + "pos": "noun", + "word_frequency": 21350 + }, + { + "word": "lutteur", + "article_with_word": "le lutteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrestler", + "example_sentence_native": "Le lutteur s'entraîne tous les jours.", + "example_sentence_english": "The wrestler trains every day.", + "pos": "noun", + "word_frequency": 21356 + }, + { + "word": "machiavélique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Machiavellian", + "example_sentence_native": "C'est un plan machiavélique pour prendre le pouvoir.", + "example_sentence_english": "It's a Machiavellian plan to seize power.", + "pos": "adjective", + "word_frequency": 21357 + }, + { + "word": "mam", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mom;mum", + "example_sentence_native": "Ma mam est la meilleure.", + "example_sentence_english": "My mom is the best.", + "pos": "noun", + "word_frequency": 21360 + }, + { + "word": "mantra", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mantra", + "example_sentence_native": "Son mantra quotidien l'aide à rester calme.", + "example_sentence_english": "His daily mantra helps him stay calm.", + "pos": "noun", + "word_frequency": 21361 + }, + { + "word": "manufacturé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufactured", + "example_sentence_native": "Ce produit manufacturé est de haute qualité.", + "example_sentence_english": "This manufactured product is of high quality.", + "pos": "adjective", + "word_frequency": 21362 + }, + { + "word": "mariner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to marinate", + "example_sentence_native": "Il faut laisser la viande mariner pendant au moins deux heures.", + "example_sentence_english": "You need to let the meat marinate for at least two hours.", + "pos": "verb", + "word_frequency": 21364 + }, + { + "word": "maussade", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy;sullen", + "example_sentence_native": "Le temps était maussade toute la journée.", + "example_sentence_english": "The weather was gloomy all day.", + "pos": "adjective", + "word_frequency": 21368 + }, + { + "word": "mensualité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monthly payment;installment", + "example_sentence_native": "Il doit payer sa mensualité de prêt immobilier.", + "example_sentence_english": "He has to pay his mortgage installment.", + "pos": "noun", + "word_frequency": 21369 + }, + { + "word": "neurologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurology", + "example_sentence_native": "Il étudie la neurologie à l'université.", + "example_sentence_english": "He studies neurology at university.", + "pos": "noun", + "word_frequency": 21374 + }, + { + "word": "observance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "observance;compliance", + "example_sentence_native": "L'observance des règles est essentielle.", + "example_sentence_english": "Observance of the rules is essential.", + "pos": "noun", + "word_frequency": 21377 + }, + { + "word": "oncologie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oncology", + "example_sentence_native": "Elle travaille dans le service d'oncologie.", + "example_sentence_english": "She works in the oncology department.", + "pos": "noun", + "word_frequency": 21381 + }, + { + "word": "oralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orally", + "example_sentence_native": "Il a répondu oralement à la question.", + "example_sentence_english": "He answered the question orally.", + "pos": "adverb", + "word_frequency": 21383 + }, + { + "word": "paléontologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paleontology", + "example_sentence_native": "La paléontologie étudie les fossiles.", + "example_sentence_english": "Paleontology studies fossils.", + "pos": "noun", + "word_frequency": 21388 + }, + { + "word": "partialité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partiality;bias", + "example_sentence_native": "Le juge a été accusé de partialité.", + "example_sentence_english": "The judge was accused of partiality.", + "pos": "noun", + "word_frequency": 21389 + }, + { + "word": "photon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "photon", + "example_sentence_native": "Un photon est une particule élémentaire de lumière.", + "example_sentence_english": "A photon is an elementary particle of light.", + "pos": "noun", + "word_frequency": 21394 + }, + { + "word": "picot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "picot (small loop;point)", + "example_sentence_native": "Elle a ajouté un picot décoratif au bord du tissu.", + "example_sentence_english": "She added a decorative picot to the edge of the fabric.", + "pos": "noun", + "word_frequency": 21395 + }, + { + "word": "pillard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looter;plunderer", + "example_sentence_native": "Les pillards ont été arrêtés par la police.", + "example_sentence_english": "The looters were arrested by the police.", + "pos": "noun", + "word_frequency": 21397 + }, + { + "word": "plafonnement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capping;ceiling;limitation", + "example_sentence_native": "Le plafonnement des loyers vise à réguler le marché.", + "example_sentence_english": "Rent capping aims to regulate the market.", + "pos": "noun", + "word_frequency": 21398 + }, + { + "word": "pluviométrie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rainfall;pluviometry", + "example_sentence_native": "La pluviométrie annuelle est en baisse dans cette région.", + "example_sentence_english": "Annual rainfall is decreasing in this region.", + "pos": "noun", + "word_frequency": 21399 + }, + { + "word": "pompeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pompous", + "example_sentence_native": "Son discours était pompeux et ennuyeux.", + "example_sentence_english": "His speech was pompous and boring.", + "pos": "adjective", + "word_frequency": 21400 + }, + { + "word": "poursuivant", + "article_with_word": "le poursuivant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pursuer;plaintiff", + "example_sentence_native": "Le poursuivant a présenté de nouvelles preuves.", + "example_sentence_english": "The pursuer presented new evidence.", + "pos": "noun", + "word_frequency": 21401 + }, + { + "word": "princier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "princely", + "example_sentence_native": "Ils ont mené une vie princière.", + "example_sentence_english": "They led a princely life.", + "pos": "adjective", + "word_frequency": 21403 + }, + { + "word": "prorata", + "article_with_word": "le prorata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pro rata", + "example_sentence_native": "Le paiement sera calculé au prorata du temps travaillé.", + "example_sentence_english": "The payment will be calculated pro rata to the time worked.", + "pos": "noun", + "word_frequency": 21404 + }, + { + "word": "proscrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to proscribe;to forbid", + "example_sentence_native": "Il est proscrit de fumer dans ce bâtiment.", + "example_sentence_english": "Smoking is forbidden in this building.", + "pos": "verb", + "word_frequency": 21405 + }, + { + "word": "pédiatrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pediatric", + "example_sentence_native": "Elle travaille dans un service pédiatrique.", + "example_sentence_english": "She works in a pediatric department.", + "pos": "adjective", + "word_frequency": 21410 + }, + { + "word": "péruvien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Peruvian", + "example_sentence_native": "J'ai goûté de la cuisine péruvienne.", + "example_sentence_english": "I tasted Peruvian cuisine.", + "pos": "adjective", + "word_frequency": 21411 + }, + { + "word": "pétrin", + "article_with_word": "le pétrin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kneading trough;mess;predicament", + "example_sentence_native": "Il est dans un sacré pétrin.", + "example_sentence_english": "He's in a real mess.", + "pos": "noun", + "word_frequency": 21412 + }, + { + "word": "qatari", + "article_with_word": "le Qatari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Qatari (person)", + "example_sentence_native": "Un Qatari a remporté la course.", + "example_sentence_english": "A Qatari won the race.", + "pos": "noun", + "word_frequency": 21413 + }, + { + "word": "qualite", + "article_with_word": "la qualité", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "quality", + "example_sentence_native": "Ce produit est de bonne qualité.", + "example_sentence_english": "This product is of good quality.", + "pos": "noun", + "word_frequency": 21414 + }, + { + "word": "radicaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to radicalize", + "example_sentence_native": "Il ne faut pas laisser les jeunes se radicaliser.", + "example_sentence_english": "We must not let young people become radicalized.", + "pos": "verb", + "word_frequency": 21415 + }, + { + "word": "ragot", + "article_with_word": "le ragot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gossip;rumor", + "example_sentence_native": "Je n'aime pas les ragots.", + "example_sentence_english": "I don't like gossip.", + "pos": "noun", + "word_frequency": 21416 + }, + { + "word": "ranimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revive;to reanimate", + "example_sentence_native": "Les secouristes ont tenté de le ranimer.", + "example_sentence_english": "The rescuers tried to revive him.", + "pos": "verb", + "word_frequency": 21418 + }, + { + "word": "ravioli", + "article_with_word": "le ravioli", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ravioli", + "example_sentence_native": "J'ai mangé des raviolis pour le dîner.", + "example_sentence_english": "I ate ravioli for dinner.", + "pos": "noun", + "word_frequency": 21419 + }, + { + "word": "rebel", + "article_with_word": "le rebelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebel", + "example_sentence_native": "Le rebelle a refusé de se soumettre.", + "example_sentence_english": "The rebel refused to submit.", + "pos": "noun", + "word_frequency": 21420 + }, + { + "word": "rebeller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rebel", + "example_sentence_native": "Les citoyens ont décidé de se rebeller contre le régime.", + "example_sentence_english": "The citizens decided to rebel against the regime.", + "pos": "verb", + "word_frequency": 21421 + }, + { + "word": "rebellion", + "article_with_word": "la rébellion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellion", + "example_sentence_native": "La rébellion a été violemment réprimée.", + "example_sentence_english": "The rebellion was violently suppressed.", + "pos": "noun", + "word_frequency": 21422 + }, + { + "word": "rebut", + "article_with_word": "le rebut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refuse;scrap;reject", + "example_sentence_native": "Ces pièces sont considérées comme du rebut.", + "example_sentence_english": "These parts are considered scrap.", + "pos": "noun", + "word_frequency": 21423 + }, + { + "word": "ressourcer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recharge;to revitalize", + "example_sentence_native": "J'ai besoin de me ressourcer à la campagne.", + "example_sentence_english": "I need to recharge in the countryside.", + "pos": "verb", + "word_frequency": 21425 + }, + { + "word": "retranché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrenched;fortified;withdrawn", + "example_sentence_native": "Les soldats étaient retranchés derrière leurs défenses.", + "example_sentence_english": "The soldiers were entrenched behind their defenses.", + "pos": "adjective", + "word_frequency": 21426 + }, + { + "word": "rompu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broken;experienced;skilled", + "example_sentence_native": "Il est rompu à l'exercice.", + "example_sentence_english": "He is skilled at the exercise.", + "pos": "adjective", + "word_frequency": 21429 + }, + { + "word": "rot", + "article_with_word": "le rot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burp;belch", + "example_sentence_native": "Le bébé a fait un petit rot.", + "example_sentence_english": "The baby let out a little burp.", + "pos": "noun", + "word_frequency": 21430 + }, + { + "word": "réceptif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receptive", + "example_sentence_native": "Il est très réceptif aux nouvelles idées.", + "example_sentence_english": "He is very receptive to new ideas.", + "pos": "adjective", + "word_frequency": 21431 + }, + { + "word": "rêverie", + "article_with_word": "la rêverie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daydream;reverie", + "example_sentence_native": "Elle était plongée dans une douce rêverie.", + "example_sentence_english": "She was lost in a sweet daydream.", + "pos": "noun", + "word_frequency": 21432 + }, + { + "word": "sensei", + "article_with_word": "le sensei", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensei (teacher;master in martial arts)", + "example_sentence_native": "Le sensei a démontré la technique.", + "example_sentence_english": "The sensei demonstrated the technique.", + "pos": "noun", + "word_frequency": 21437 + }, + { + "word": "skinny", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skinny", + "example_sentence_native": "Elle porte un jean skinny.", + "example_sentence_english": "She is wearing skinny jeans.", + "pos": "adjective", + "word_frequency": 21442 + }, + { + "word": "sommeiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to doze;to slumber", + "example_sentence_native": "Il aime sommeiller sur le canapé après le déjeuner.", + "example_sentence_english": "He likes to doze on the sofa after lunch.", + "pos": "verb", + "word_frequency": 21444 + }, + { + "word": "soufflet", + "article_with_word": "le soufflet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bellows;slap;puff", + "example_sentence_native": "Il a donné un soufflet à son adversaire.", + "example_sentence_english": "He gave his opponent a slap.", + "pos": "noun", + "word_frequency": 21445 + }, + { + "word": "souscripteur", + "article_with_word": "le souscripteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subscriber;policyholder;underwriter", + "example_sentence_native": "Le souscripteur a signé le contrat d'assurance.", + "example_sentence_english": "The policyholder signed the insurance contract.", + "pos": "noun", + "word_frequency": 21446 + }, + { + "word": "spirituellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritually", + "example_sentence_native": "Elle se sentait connectée spirituellement à la nature.", + "example_sentence_english": "She felt spiritually connected to nature.", + "pos": "adverb", + "word_frequency": 21447 + }, + { + "word": "squash", + "article_with_word": "le squash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squash (sport)", + "example_sentence_native": "Il joue au squash tous les mardis.", + "example_sentence_english": "He plays squash every Tuesday.", + "pos": "noun", + "word_frequency": 21448 + }, + { + "word": "stratégiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategically", + "example_sentence_native": "L'armée s'est positionnée stratégiquement.", + "example_sentence_english": "The army positioned itself strategically.", + "pos": "adverb", + "word_frequency": 21449 + }, + { + "word": "stérilité", + "article_with_word": "la stérilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sterility;infertility", + "example_sentence_native": "La stérilité peut être une cause de grande souffrance.", + "example_sentence_english": "Infertility can be a cause of great suffering.", + "pos": "noun", + "word_frequency": 21450 + }, + { + "word": "suave", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suave;smooth;mild", + "example_sentence_native": "Il a une voix suave et apaisante.", + "example_sentence_english": "He has a suave and soothing voice.", + "pos": "adjective", + "word_frequency": 21451 + }, + { + "word": "sudiste", + "article_with_word": "le sudiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "southerner", + "example_sentence_native": "Les Sudistes ont une culture distincte.", + "example_sentence_english": "Southerners have a distinct culture.", + "pos": "noun", + "word_frequency": 21452 + }, + { + "word": "surfeur", + "article_with_word": "le surfeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surfer", + "example_sentence_native": "Les surfeurs attendaient la bonne vague.", + "example_sentence_english": "The surfers were waiting for the right wave.", + "pos": "noun", + "word_frequency": 21455 + }, + { + "word": "tare", + "article_with_word": "la tare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defect;flaw;tare (weight)", + "example_sentence_native": "Ce produit a une tare de fabrication.", + "example_sentence_english": "This product has a manufacturing defect.", + "pos": "noun", + "word_frequency": 21457 + }, + { + "word": "tectonique", + "article_with_word": "la tectonique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tectonics", + "example_sentence_native": "La tectonique des plaques explique les tremblements de terre.", + "example_sentence_english": "Plate tectonics explains earthquakes.", + "pos": "noun", + "word_frequency": 21458 + }, + { + "word": "teindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dye;to stain", + "example_sentence_native": "Elle a décidé de teindre ses cheveux en bleu.", + "example_sentence_english": "She decided to dye her hair blue.", + "pos": "verb", + "word_frequency": 21459 + }, + { + "word": "torpeur", + "article_with_word": "la torpeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torpor;lethargy", + "example_sentence_native": "La chaleur de l'après-midi l'a plongé dans une torpeur.", + "example_sentence_english": "The afternoon heat plunged him into a torpor.", + "pos": "noun", + "word_frequency": 21462 + }, + { + "word": "transcendance", + "article_with_word": "la transcendance", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "transcendence", + "example_sentence_native": "La philosophie explore la notion de transcendance.", + "example_sentence_english": "Philosophy explores the notion of transcendence.", + "pos": "noun", + "word_frequency": 21463 + }, + { + "word": "tripler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to triple", + "example_sentence_native": "Les ventes ont triplé cette année.", + "example_sentence_english": "Sales have tripled this year.", + "pos": "verb", + "word_frequency": 21466 + }, + { + "word": "trivial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trivial", + "example_sentence_native": "C'est un problème trivial, facile à résoudre.", + "example_sentence_english": "It's a trivial problem, easy to solve.", + "pos": "adjective", + "word_frequency": 21467 + }, + { + "word": "trombe", + "article_with_word": "la trombe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waterspout;whirlwind;deluge", + "example_sentence_native": "Une trombe marine s'est formée au large.", + "example_sentence_english": "A waterspout formed offshore.", + "pos": "noun", + "word_frequency": 21468 + }, + { + "word": "tronquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to truncate;to cut short", + "example_sentence_native": "Il a dû tronquer son discours par manque de temps.", + "example_sentence_english": "He had to truncate his speech due to lack of time.", + "pos": "verb", + "word_frequency": 21469 + }, + { + "word": "trouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make a hole in;to pierce", + "example_sentence_native": "Le clou a troué le mur.", + "example_sentence_english": "The nail made a hole in the wall.", + "pos": "verb", + "word_frequency": 21470 + }, + { + "word": "tuyauterie", + "article_with_word": "la tuyauterie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piping;plumbing", + "example_sentence_native": "La tuyauterie de la salle de bain est ancienne.", + "example_sentence_english": "The bathroom plumbing is old.", + "pos": "noun", + "word_frequency": 21471 + }, + { + "word": "usagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "used;worn out", + "example_sentence_native": "J'ai acheté une voiture usagée.", + "example_sentence_english": "I bought a used car.", + "pos": "adjective", + "word_frequency": 21473 + }, + { + "word": "volupté", + "article_with_word": "la volupté", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voluptuousness;delight;sensual pleasure", + "example_sentence_native": "Elle a ressenti une grande volupté à se détendre.", + "example_sentence_english": "She felt great delight in relaxing.", + "pos": "noun", + "word_frequency": 21477 + }, + { + "word": "vérificateur", + "article_with_word": "le vérificateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auditor;verifier;inspector", + "example_sentence_native": "Le vérificateur a examiné les comptes de l'entreprise.", + "example_sentence_english": "The auditor examined the company's accounts.", + "pos": "noun", + "word_frequency": 21478 + }, + { + "word": "wahou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wow", + "example_sentence_native": "Wahou, cette vue est incroyable!", + "example_sentence_english": "Wow, this view is incredible!", + "pos": "interjection", + "word_frequency": 21479 + }, + { + "word": "weird", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weird;strange", + "example_sentence_native": "C'est une situation bizarre et un peu weird.", + "example_sentence_english": "It's a strange and a bit weird situation.", + "pos": "adjective", + "word_frequency": 21480 + }, + { + "word": "écrou", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nut (for a bolt)", + "example_sentence_native": "Il faut serrer l'écrou pour que ça tienne.", + "example_sentence_english": "The nut needs to be tightened for it to hold.", + "pos": "noun", + "word_frequency": 21485 + }, + { + "word": "épistémologie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epistemology", + "example_sentence_native": "L'épistémologie est l'étude de la connaissance.", + "example_sentence_english": "Epistemology is the study of knowledge.", + "pos": "noun", + "word_frequency": 21486 + }, + { + "word": "ésotérique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "esoteric", + "example_sentence_native": "Ses connaissances ésotériques étaient impressionnantes.", + "example_sentence_english": "His esoteric knowledge was impressive.", + "pos": "adjective", + "word_frequency": 21487 + }, + { + "word": "étal", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stall;stand (market)", + "example_sentence_native": "Le marchand a installé son étal au marché.", + "example_sentence_english": "The merchant set up his stall at the market.", + "pos": "noun", + "word_frequency": 21488 + }, + { + "word": "étoiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to star;to crack (like a star)", + "example_sentence_native": "Le choc a étoilé le pare-brise de la voiture.", + "example_sentence_english": "The impact cracked the car's windshield.", + "pos": "verb", + "word_frequency": 21489 + }, + { + "word": "étrangeté", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strangeness;oddity", + "example_sentence_native": "Il y avait une certaine étrangeté dans son comportement.", + "example_sentence_english": "There was a certain strangeness in his behavior.", + "pos": "noun", + "word_frequency": 21490 + }, + { + "word": "étymologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "etymological", + "example_sentence_native": "L'étude étymologique des mots est fascinante.", + "example_sentence_english": "The etymological study of words is fascinating.", + "pos": "adjective", + "word_frequency": 21491 + }, + { + "word": "œdème", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edema;swelling", + "example_sentence_native": "Le patient souffre d'un œdème à la cheville.", + "example_sentence_english": "The patient is suffering from ankle edema.", + "pos": "noun", + "word_frequency": 21492 + }, + { + "word": "abbatial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abbatial;of an abbey", + "example_sentence_native": "L'église abbatiale est un chef-d'œuvre architectural.", + "example_sentence_english": "The abbatial church is an architectural masterpiece.", + "pos": "adjective", + "word_frequency": 21494 + }, + { + "word": "abdiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abdicate", + "example_sentence_native": "Le roi a décidé d'abdiquer en faveur de son fils.", + "example_sentence_english": "The king decided to abdicate in favor of his son.", + "pos": "verb", + "word_frequency": 21495 + }, + { + "word": "aborigène", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Aborigine;indigenous person", + "example_sentence_native": "Les Aborigènes sont les premiers habitants de l'Australie.", + "example_sentence_english": "Aborigines are the first inhabitants of Australia.", + "pos": "noun", + "word_frequency": 21496 + }, + { + "word": "abstenu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstained (from voting);refrained", + "example_sentence_native": "Il est resté abstenu lors du vote important.", + "example_sentence_english": "He abstained during the important vote.", + "pos": "adjective", + "word_frequency": 21497 + }, + { + "word": "acter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to acknowledge;to record;to take note of", + "example_sentence_native": "Il faut acter cette décision pour qu'elle soit officielle.", + "example_sentence_english": "This decision must be acknowledged for it to be official.", + "pos": "verb", + "word_frequency": 21498 + }, + { + "word": "angoissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distressing;anxiety-inducing", + "example_sentence_native": "C'est une situation très angoissante pour tout le monde.", + "example_sentence_english": "It's a very distressing situation for everyone.", + "pos": "adjective", + "word_frequency": 21506 + }, + { + "word": "ante", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ante (poker)", + "example_sentence_native": "Chaque joueur doit mettre l'ante avant de distribuer les cartes.", + "example_sentence_english": "Each player must put in the ante before dealing the cards.", + "pos": "noun", + "word_frequency": 21507 + }, + { + "word": "anéantissement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annihilation;destruction", + "example_sentence_native": "La guerre a conduit à l'anéantissement de la ville.", + "example_sentence_english": "The war led to the annihilation of the city.", + "pos": "noun", + "word_frequency": 21508 + }, + { + "word": "arlequin", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harlequin", + "example_sentence_native": "L'arlequin est un personnage de la Commedia dell'arte.", + "example_sentence_english": "The harlequin is a character from the Commedia dell'arte.", + "pos": "noun", + "word_frequency": 21511 + }, + { + "word": "assistanat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "welfare dependency;excessive reliance on state aid", + "example_sentence_native": "Le débat sur l'assistanat est complexe et souvent controversé.", + "example_sentence_english": "The debate on welfare dependency is complex and often controversial.", + "pos": "noun", + "word_frequency": 21514 + }, + { + "word": "auge", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trough;manger", + "example_sentence_native": "Les cochons mangent dans l'auge.", + "example_sentence_english": "The pigs eat from the trough.", + "pos": "noun", + "word_frequency": 21516 + }, + { + "word": "auriculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auricular;little (finger)", + "example_sentence_native": "Le doigt auriculaire est le plus petit de la main.", + "example_sentence_english": "The little finger is the smallest on the hand.", + "pos": "adjective", + "word_frequency": 21517 + }, + { + "word": "avoisiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to border;to be near;to be around (a number)", + "example_sentence_native": "La température avoisine les 25 degrés aujourd'hui.", + "example_sentence_english": "The temperature is around 25 degrees today.", + "pos": "verb", + "word_frequency": 21519 + }, + { + "word": "aérospatial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aerospace", + "example_sentence_native": "L'industrie aérospatiale est en pleine croissance.", + "example_sentence_english": "The aerospace industry is growing rapidly.", + "pos": "adjective", + "word_frequency": 21520 + }, + { + "word": "bastiais", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhabitant of Bastia", + "example_sentence_native": "Un Bastiais typique aime le football.", + "example_sentence_english": "A typical Bastiais loves football.", + "pos": "noun", + "word_frequency": 21523 + }, + { + "word": "biotechnologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biotechnology", + "example_sentence_native": "La biotechnologie offre de nouvelles solutions médicales.", + "example_sentence_english": "Biotechnology offers new medical solutions.", + "pos": "noun", + "word_frequency": 21525 + }, + { + "word": "boyard", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boyar", + "example_sentence_native": "Les boyards étaient des membres de l'aristocratie russe.", + "example_sentence_english": "Boyars were members of the Russian aristocracy.", + "pos": "noun", + "word_frequency": 21531 + }, + { + "word": "boyau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gut;hose;tube", + "example_sentence_native": "Le boyau de l'aspirateur est bouché.", + "example_sentence_english": "The vacuum cleaner hose is blocked.", + "pos": "noun", + "word_frequency": 21532 + }, + { + "word": "bran", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bran", + "example_sentence_native": "Le son de blé est riche en fibres.", + "example_sentence_english": "Wheat bran is rich in fiber.", + "pos": "noun", + "word_frequency": 21533 + }, + { + "word": "briefing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "briefing", + "example_sentence_native": "Nous avons un briefing important ce matin.", + "example_sentence_english": "We have an important briefing this morning.", + "pos": "noun", + "word_frequency": 21534 + }, + { + "word": "bâtonnet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stick;rod", + "example_sentence_native": "Les enfants aiment manger des bâtonnets de poisson.", + "example_sentence_english": "Children like to eat fish sticks.", + "pos": "noun", + "word_frequency": 21536 + }, + { + "word": "béninois", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Beninese (person)", + "example_sentence_native": "Un Béninois est fier de sa culture.", + "example_sentence_english": "A Beninese person is proud of their culture.", + "pos": "noun", + "word_frequency": 21538 + }, + { + "word": "caduc", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsolete;null and void", + "example_sentence_native": "Cette loi est devenue caduque.", + "example_sentence_english": "This law has become obsolete.", + "pos": "adjective", + "word_frequency": 21539 + }, + { + "word": "calin", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hug;cuddle", + "example_sentence_native": "J'ai besoin d'un câlin.", + "example_sentence_english": "I need a hug.", + "pos": "noun", + "word_frequency": 21540 + }, + { + "word": "caniche", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poodle", + "example_sentence_native": "Mon voisin a un caniche noir.", + "example_sentence_english": "My neighbor has a black poodle.", + "pos": "noun", + "word_frequency": 21541 + }, + { + "word": "cantonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confine;to quarter", + "example_sentence_native": "Il faut cantonner les discussions aux faits.", + "example_sentence_english": "We must confine discussions to the facts.", + "pos": "verb", + "word_frequency": 21542 + }, + { + "word": "chalumeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blowtorch;pipe", + "example_sentence_native": "Il a utilisé un chalumeau pour souder le métal.", + "example_sentence_english": "He used a blowtorch to weld the metal.", + "pos": "noun", + "word_frequency": 21546 + }, + { + "word": "chapelain", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chaplain", + "example_sentence_native": "Le chapelain a célébré la messe.", + "example_sentence_english": "The chaplain celebrated mass.", + "pos": "noun", + "word_frequency": 21547 + }, + { + "word": "cherie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "darling;dear", + "example_sentence_native": "Ma chérie, tu es magnifique.", + "example_sentence_english": "My darling, you are beautiful.", + "pos": "noun", + "word_frequency": 21549 + }, + { + "word": "chocolaterie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chocolate factory;shop", + "example_sentence_native": "Nous avons visité une chocolaterie artisanale.", + "example_sentence_english": "We visited an artisanal chocolate factory.", + "pos": "noun", + "word_frequency": 21550 + }, + { + "word": "chronomètre", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stopwatch;chronometer", + "example_sentence_native": "L'athlète a démarré son chronomètre.", + "example_sentence_english": "The athlete started his stopwatch.", + "pos": "noun", + "word_frequency": 21551 + }, + { + "word": "collimateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collimator;crosshairs", + "example_sentence_native": "Il est dans le collimateur de la police.", + "example_sentence_english": "He is in the police's crosshairs.", + "pos": "noun", + "word_frequency": 21555 + }, + { + "word": "combativité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighting spirit;combativeness", + "example_sentence_native": "Son équipe a montré une grande combativité.", + "example_sentence_english": "His team showed great fighting spirit.", + "pos": "noun", + "word_frequency": 21557 + }, + { + "word": "commanderie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commandery", + "example_sentence_native": "La commanderie des Templiers était un lieu stratégique.", + "example_sentence_english": "The Templar commandery was a strategic location.", + "pos": "noun", + "word_frequency": 21558 + }, + { + "word": "complainte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lament;complaint", + "example_sentence_native": "Elle a chanté une vieille complainte triste.", + "example_sentence_english": "She sang a sad old lament.", + "pos": "noun", + "word_frequency": 21559 + }, + { + "word": "computing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "computing", + "example_sentence_native": "Le computing est un domaine en constante évolution.", + "example_sentence_english": "Computing is a constantly evolving field.", + "pos": "noun", + "word_frequency": 21560 + }, + { + "word": "congédier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dismiss;to fire", + "example_sentence_native": "L'entreprise a dû congédier plusieurs employés.", + "example_sentence_english": "The company had to dismiss several employees.", + "pos": "verb", + "word_frequency": 21561 + }, + { + "word": "connecteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connector", + "example_sentence_native": "Vérifiez le connecteur USB pour vous assurer qu'il est bien branché.", + "example_sentence_english": "Check the USB connector to make sure it's properly plugged in.", + "pos": "noun", + "word_frequency": 21562 + }, + { + "word": "contrebalancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to counterbalance;to offset", + "example_sentence_native": "Il a essayé de contrebalancer les effets négatifs par des actions positives.", + "example_sentence_english": "He tried to counterbalance the negative effects with positive actions.", + "pos": "verb", + "word_frequency": 21563 + }, + { + "word": "convoitise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "covetousness;greed", + "example_sentence_native": "La convoitise des richesses peut mener à des actes répréhensibles.", + "example_sentence_english": "The covetousness of wealth can lead to reprehensible acts.", + "pos": "noun", + "word_frequency": 21564 + }, + { + "word": "copeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wood chip;shaving", + "example_sentence_native": "Il y avait des copeaux de bois partout sur le sol de l'atelier.", + "example_sentence_english": "There were wood chips all over the workshop floor.", + "pos": "noun", + "word_frequency": 21565 + }, + { + "word": "cordier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tailpiece (music);rope maker", + "example_sentence_native": "Le cordier de la guitare est cassé.", + "example_sentence_english": "The guitar's tailpiece is broken.", + "pos": "noun", + "word_frequency": 21566 + }, + { + "word": "cornu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horned;angular;absurd (figurative)", + "example_sentence_native": "Il a donné une explication un peu cornue à son absence.", + "example_sentence_english": "He gave a somewhat absurd explanation for his absence.", + "pos": "adjective", + "word_frequency": 21567 + }, + { + "word": "cot", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "quotation;listing (stock market)", + "example_sentence_native": "La cot de l'action a chuté après l'annonce.", + "example_sentence_english": "The stock's quotation dropped after the announcement.", + "pos": "noun", + "word_frequency": 21568 + }, + { + "word": "crasseux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filthy;grubby", + "example_sentence_native": "Ses vêtements étaient crasseux après une journée de travail manuel.", + "example_sentence_english": "His clothes were filthy after a day of manual labor.", + "pos": "adjective", + "word_frequency": 21569 + }, + { + "word": "crossover", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossover (vehicle;music genre)", + "example_sentence_native": "Le nouveau modèle est un crossover très populaire.", + "example_sentence_english": "The new model is a very popular crossover.", + "pos": "noun", + "word_frequency": 21570 + }, + { + "word": "crunch", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crunch (period of intense work)", + "example_sentence_native": "L'équipe est en plein crunch pour finir le projet à temps.", + "example_sentence_english": "The team is in the middle of a crunch to finish the project on time.", + "pos": "noun", + "word_frequency": 21571 + }, + { + "word": "decouvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to discover;to uncover", + "example_sentence_native": "J'aimerais découvrir de nouvelles cultures.", + "example_sentence_english": "I would like to discover new cultures.", + "pos": "verb", + "word_frequency": 21574 + }, + { + "word": "dichotomie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dichotomy", + "example_sentence_native": "Il existe une dichotomie entre la théorie et la pratique.", + "example_sentence_english": "There is a dichotomy between theory and practice.", + "pos": "noun", + "word_frequency": 21579 + }, + { + "word": "dindon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turkey (male)", + "example_sentence_native": "Le dindon glougloute dans la basse-cour.", + "example_sentence_english": "The turkey gobbles in the farmyard.", + "pos": "noun", + "word_frequency": 21582 + }, + { + "word": "doge", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doge", + "example_sentence_native": "Le doge était le chef de la République de Venise.", + "example_sentence_english": "The doge was the head of the Republic of Venice.", + "pos": "noun", + "word_frequency": 21584 + }, + { + "word": "dojo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dojo", + "example_sentence_native": "Les élèves s'entraînent au judo dans le dojo.", + "example_sentence_english": "The students train in judo in the dojo.", + "pos": "noun", + "word_frequency": 21585 + }, + { + "word": "dominateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominator;domineering person", + "example_sentence_native": "Il a une personnalité de dominateur.", + "example_sentence_english": "He has a domineering personality.", + "pos": "noun", + "word_frequency": 21586 + }, + { + "word": "dominical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sunday (adjective);pertaining to the Lord's Day", + "example_sentence_native": "La messe dominicale est célébrée chaque semaine.", + "example_sentence_english": "The Sunday mass is celebrated every week.", + "pos": "adjective", + "word_frequency": 21587 + }, + { + "word": "ducal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ducal", + "example_sentence_native": "Le palais ducal est une attraction touristique majeure.", + "example_sentence_english": "The ducal palace is a major tourist attraction.", + "pos": "adjective", + "word_frequency": 21590 + }, + { + "word": "démoder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make unfashionable;to go out of fashion", + "example_sentence_native": "Cette tendance va vite se démoder.", + "example_sentence_english": "This trend will quickly go out of fashion.", + "pos": "verb", + "word_frequency": 21591 + }, + { + "word": "détrôner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dethrone;to unseat", + "example_sentence_native": "Le nouveau champion a réussi à détrôner l'ancien.", + "example_sentence_english": "The new champion managed to dethrone the old one.", + "pos": "verb", + "word_frequency": 21592 + }, + { + "word": "dévoilement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unveiling;disclosure", + "example_sentence_native": "Le dévoilement de la statue aura lieu demain.", + "example_sentence_english": "The unveiling of the statue will take place tomorrow.", + "pos": "noun", + "word_frequency": 21593 + }, + { + "word": "effusion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effusion;outpouring", + "example_sentence_native": "Il y a eu une effusion de joie après la victoire.", + "example_sentence_english": "There was an outpouring of joy after the victory.", + "pos": "noun", + "word_frequency": 21595 + }, + { + "word": "embellie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improvement;bright spell (weather)", + "example_sentence_native": "On espère une embellie économique pour le prochain trimestre.", + "example_sentence_english": "We hope for an economic improvement for the next quarter.", + "pos": "noun", + "word_frequency": 21597 + }, + { + "word": "entièreté", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirety;wholeness", + "example_sentence_native": "Il a lu le livre dans son entièreté.", + "example_sentence_english": "He read the book in its entirety.", + "pos": "noun", + "word_frequency": 21598 + }, + { + "word": "entracte", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intermission;interval", + "example_sentence_native": "Nous avons pris un café pendant l'entracte.", + "example_sentence_english": "We had a coffee during the intermission.", + "pos": "noun", + "word_frequency": 21599 + }, + { + "word": "examinateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "examiner", + "example_sentence_native": "L'examinateur a posé des questions difficiles.", + "example_sentence_english": "The examiner asked difficult questions.", + "pos": "noun", + "word_frequency": 21605 + }, + { + "word": "exaspérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exasperate", + "example_sentence_native": "Son comportement commence à m'exaspérer.", + "example_sentence_english": "His behavior is starting to exasperate me.", + "pos": "verb", + "word_frequency": 21606 + }, + { + "word": "expliciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make explicit", + "example_sentence_native": "Vous devez expliciter vos intentions.", + "example_sentence_english": "You must make your intentions explicit.", + "pos": "verb", + "word_frequency": 21608 + }, + { + "word": "exécuteur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executor", + "example_sentence_native": "L'exécuteur testamentaire est responsable de la succession.", + "example_sentence_english": "The testamentary executor is responsible for the estate.", + "pos": "noun", + "word_frequency": 21609 + }, + { + "word": "fascicule", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "booklet", + "example_sentence_native": "J'ai lu le dernier fascicule de cette revue.", + "example_sentence_english": "I read the latest booklet of this journal.", + "pos": "noun", + "word_frequency": 21610 + }, + { + "word": "fiché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on file", + "example_sentence_native": "Il est fiché à la police.", + "example_sentence_english": "He is on file with the police.", + "pos": "adjective", + "word_frequency": 21613 + }, + { + "word": "flamber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blaze", + "example_sentence_native": "Le bois a commencé à flamber dans la cheminée.", + "example_sentence_english": "The wood started to blaze in the fireplace.", + "pos": "verb", + "word_frequency": 21614 + }, + { + "word": "flingué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ruined (slang)", + "example_sentence_native": "Mon téléphone est complètement flingué.", + "example_sentence_english": "My phone is completely ruined.", + "pos": "adjective", + "word_frequency": 21615 + }, + { + "word": "fracturé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fractured", + "example_sentence_native": "Il a le bras fracturé.", + "example_sentence_english": "He has a fractured arm.", + "pos": "adjective", + "word_frequency": 21618 + }, + { + "word": "friture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fried food", + "example_sentence_native": "J'adore la friture, mais ce n'est pas très sain.", + "example_sentence_english": "I love fried food, but it's not very healthy.", + "pos": "noun", + "word_frequency": 21619 + }, + { + "word": "froissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creased", + "example_sentence_native": "Ma chemise est toute froissée.", + "example_sentence_english": "My shirt is all creased.", + "pos": "adjective", + "word_frequency": 21620 + }, + { + "word": "fruité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fruity", + "example_sentence_native": "Ce vin a un goût très fruité.", + "example_sentence_english": "This wine has a very fruity taste.", + "pos": "adjective", + "word_frequency": 21622 + }, + { + "word": "frénétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frenetic", + "example_sentence_native": "Il y avait une activité frénétique avant le lancement.", + "example_sentence_english": "There was frantic activity before the launch.", + "pos": "adjective", + "word_frequency": 21623 + }, + { + "word": "fuselage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuselage", + "example_sentence_native": "Le fuselage de l'avion est en aluminium.", + "example_sentence_english": "The aircraft's fuselage is made of aluminum.", + "pos": "noun", + "word_frequency": 21624 + }, + { + "word": "gencive", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gum (of the mouth)", + "example_sentence_native": "Il a une inflammation des gencives.", + "example_sentence_english": "He has inflammation of the gums.", + "pos": "noun", + "word_frequency": 21626 + }, + { + "word": "germer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to germinate", + "example_sentence_native": "Les graines commencent à germer au printemps.", + "example_sentence_english": "The seeds begin to germinate in spring.", + "pos": "verb", + "word_frequency": 21627 + }, + { + "word": "géomètre", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surveyor", + "example_sentence_native": "Le géomètre a mesuré le terrain.", + "example_sentence_english": "The surveyor measured the land.", + "pos": "noun", + "word_frequency": 21636 + }, + { + "word": "hacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chop", + "example_sentence_native": "Il faut hacher les oignons finement.", + "example_sentence_english": "You need to chop the onions finely.", + "pos": "verb", + "word_frequency": 21637 + }, + { + "word": "hollywoodien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hollywoodian", + "example_sentence_native": "Il a un style hollywoodien très reconnaissable.", + "example_sentence_english": "He has a very recognizable Hollywoodian style.", + "pos": "adjective", + "word_frequency": 21640 + }, + { + "word": "hypermarché", + "article_with_word": "l'hypermarché", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hypermarket", + "example_sentence_native": "Nous allons faire les courses à l'hypermarché.", + "example_sentence_english": "We are going grocery shopping at the hypermarket.", + "pos": "noun", + "word_frequency": 21641 + }, + { + "word": "hécatombe", + "article_with_word": "l'hécatombe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hecatomb;massive loss", + "example_sentence_native": "La maladie a provoqué une hécatombe dans le troupeau.", + "example_sentence_english": "The disease caused a massive loss in the herd.", + "pos": "noun", + "word_frequency": 21643 + }, + { + "word": "hématome", + "article_with_word": "l'hématome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hematoma;bruise", + "example_sentence_native": "Après la chute, il avait un gros hématome sur la jambe.", + "example_sentence_english": "After the fall, he had a large hematoma on his leg.", + "pos": "noun", + "word_frequency": 21644 + }, + { + "word": "héron", + "article_with_word": "le héron", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heron", + "example_sentence_native": "Un héron se tenait immobile au bord de l'eau.", + "example_sentence_english": "A heron stood motionless at the water's edge.", + "pos": "noun", + "word_frequency": 21645 + }, + { + "word": "implosion", + "article_with_word": "l'implosion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implosion", + "example_sentence_native": "L'implosion du bâtiment a été spectaculaire.", + "example_sentence_english": "The implosion of the building was spectacular.", + "pos": "noun", + "word_frequency": 21647 + }, + { + "word": "inadapté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsuitable;ill-adapted", + "example_sentence_native": "Ce comportement est totalement inadapté à la situation.", + "example_sentence_english": "This behavior is totally unsuitable for the situation.", + "pos": "adjective", + "word_frequency": 21648 + }, + { + "word": "inadvertance", + "article_with_word": "l'inadvertance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inadvertence;oversight", + "example_sentence_native": "Par inadvertance, j'ai envoyé le message à la mauvaise personne.", + "example_sentence_english": "Through inadvertence, I sent the message to the wrong person.", + "pos": "noun", + "word_frequency": 21649 + }, + { + "word": "inaudible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaudible", + "example_sentence_native": "Sa voix était presque inaudible à cause du bruit.", + "example_sentence_english": "His voice was almost inaudible because of the noise.", + "pos": "adjective", + "word_frequency": 21650 + }, + { + "word": "incorporé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incorporated;integrated", + "example_sentence_native": "Le nouveau module est maintenant incorporé au système.", + "example_sentence_english": "The new module is now incorporated into the system.", + "pos": "adjective", + "word_frequency": 21652 + }, + { + "word": "independent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "independent", + "example_sentence_native": "Elle est une personne très indépendante.", + "example_sentence_english": "She is a very independent person.", + "pos": "adjective", + "word_frequency": 21653 + }, + { + "word": "infamie", + "article_with_word": "l'infamie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infamy;disgrace", + "example_sentence_native": "Cet acte est une véritable infamie.", + "example_sentence_english": "This act is a true infamy.", + "pos": "noun", + "word_frequency": 21654 + }, + { + "word": "inhibiteur", + "article_with_word": "l'inhibiteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhibitor", + "example_sentence_native": "Ce produit agit comme un inhibiteur de corrosion.", + "example_sentence_english": "This product acts as a corrosion inhibitor.", + "pos": "noun", + "word_frequency": 21655 + }, + { + "word": "inuit", + "article_with_word": "un Inuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Inuit", + "example_sentence_native": "Les Inuits vivent dans les régions arctiques.", + "example_sentence_english": "The Inuit live in the Arctic regions.", + "pos": "noun", + "word_frequency": 21656 + }, + { + "word": "inéligibilité", + "article_with_word": "l'inéligibilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ineligibility", + "example_sentence_native": "Son inéligibilité a été confirmée par le tribunal.", + "example_sentence_english": "His ineligibility was confirmed by the court.", + "pos": "noun", + "word_frequency": 21657 + }, + { + "word": "jacquard", + "article_with_word": "le jacquard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jacquard", + "example_sentence_native": "La robe était faite d'un magnifique tissu jacquard.", + "example_sentence_english": "The dress was made of a magnificent jacquard fabric.", + "pos": "noun", + "word_frequency": 21658 + }, + { + "word": "julienne", + "article_with_word": "la julienne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "julienne (cut)", + "example_sentence_native": "Coupez les carottes en julienne.", + "example_sentence_english": "Cut the carrots into julienne strips.", + "pos": "noun", + "word_frequency": 21660 + }, + { + "word": "krach", + "article_with_word": "le krach", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crash (financial)", + "example_sentence_native": "Le krach boursier a eu des conséquences mondiales.", + "example_sentence_english": "The stock market crash had global consequences.", + "pos": "noun", + "word_frequency": 21664 + }, + { + "word": "laiterie", + "article_with_word": "la laiterie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dairy;dairy farm", + "example_sentence_native": "Nous achetons notre lait directement à la laiterie.", + "example_sentence_english": "We buy our milk directly from the dairy.", + "pos": "noun", + "word_frequency": 21666 + }, + { + "word": "latent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "latent", + "example_sentence_native": "Le problème était latent depuis des mois avant d'éclater.", + "example_sentence_english": "The problem had been latent for months before it erupted.", + "pos": "adjective", + "word_frequency": 21668 + }, + { + "word": "lesbien", + "article_with_word": "une lesbienne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesbian", + "example_sentence_native": "Elle a écrit un livre sur les expériences des femmes lesbiennes.", + "example_sentence_english": "She wrote a book about the experiences of lesbian women.", + "pos": "noun", + "word_frequency": 21671 + }, + { + "word": "liane", + "article_with_word": "la liane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liana;vine", + "example_sentence_native": "Des lianes pendaient des arbres de la forêt tropicale.", + "example_sentence_english": "Lianas hung from the trees in the rainforest.", + "pos": "noun", + "word_frequency": 21672 + }, + { + "word": "libertinage", + "article_with_word": "le libertinage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libertinism;debauchery", + "example_sentence_native": "Le XVIIIe siècle est parfois associé au libertinage.", + "example_sentence_english": "The 18th century is sometimes associated with libertinism.", + "pos": "noun", + "word_frequency": 21673 + }, + { + "word": "license", + "article_with_word": "la licence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "license;degree (bachelor's)", + "example_sentence_native": "Il a obtenu sa licence en droit l'année dernière.", + "example_sentence_english": "He obtained his bachelor's degree in law last year.", + "pos": "noun", + "word_frequency": 21674 + }, + { + "word": "locution", + "article_with_word": "la locution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "locution;phrase", + "example_sentence_native": "\"Tout à coup\" est une locution adverbiale.", + "example_sentence_english": "\"Suddenly\" is an adverbial locution.", + "pos": "noun", + "word_frequency": 21677 + }, + { + "word": "logic", + "article_with_word": "la logique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logic", + "example_sentence_native": "Il y a une certaine logique dans son raisonnement.", + "example_sentence_english": "There is a certain logic in his reasoning.", + "pos": "noun", + "word_frequency": 21678 + }, + { + "word": "loyaliste", + "article_with_word": "un loyaliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loyalist", + "example_sentence_native": "Il était un loyaliste du roi pendant la révolution.", + "example_sentence_english": "He was a loyalist of the king during the revolution.", + "pos": "noun", + "word_frequency": 21680 + }, + { + "word": "mall", + "article_with_word": "le mall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shopping mall", + "example_sentence_native": "Nous allons au mall ce week-end.", + "example_sentence_english": "We are going to the mall this weekend.", + "pos": "noun", + "word_frequency": 21682 + }, + { + "word": "malversation", + "article_with_word": "la malversation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embezzlement", + "example_sentence_native": "Il a été accusé de malversation de fonds publics.", + "example_sentence_english": "He was accused of embezzlement of public funds.", + "pos": "noun", + "word_frequency": 21683 + }, + { + "word": "maroquinerie", + "article_with_word": "la maroquinerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leather goods", + "example_sentence_native": "Elle a acheté un sac dans une boutique de maroquinerie.", + "example_sentence_english": "She bought a bag in a leather goods shop.", + "pos": "noun", + "word_frequency": 21687 + }, + { + "word": "menage", + "article_with_word": "le ménage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "housework", + "example_sentence_native": "Je dois faire le ménage ce week-end.", + "example_sentence_english": "I have to do the housework this weekend.", + "pos": "noun", + "word_frequency": 21692 + }, + { + "word": "merlot", + "article_with_word": "le merlot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Merlot (grape;wine)", + "example_sentence_native": "J'ai commandé un verre de merlot.", + "example_sentence_english": "I ordered a glass of Merlot.", + "pos": "noun", + "word_frequency": 21693 + }, + { + "word": "mesurable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measurable", + "example_sentence_native": "Les progrès doivent être mesurables.", + "example_sentence_english": "Progress must be measurable.", + "pos": "adjective", + "word_frequency": 21694 + }, + { + "word": "methode", + "article_with_word": "la méthode", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "method", + "example_sentence_native": "Quelle est votre méthode de travail?", + "example_sentence_english": "What is your working method?", + "pos": "noun", + "word_frequency": 21695 + }, + { + "word": "mirabel", + "article_with_word": "la mirabelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mirabelle plum", + "example_sentence_native": "J'adore les tartes à la mirabelle.", + "example_sentence_english": "I love mirabelle plum tarts.", + "pos": "noun", + "word_frequency": 21697 + }, + { + "word": "misogynie", + "article_with_word": "la misogynie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misogyny", + "example_sentence_native": "La misogynie est un problème social grave.", + "example_sentence_english": "Misogyny is a serious social problem.", + "pos": "noun", + "word_frequency": 21698 + }, + { + "word": "modéliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to model;to simulate", + "example_sentence_native": "Il faut modéliser le système avant de le construire.", + "example_sentence_english": "We need to model the system before building it.", + "pos": "verb", + "word_frequency": 21700 + }, + { + "word": "multiplicateur", + "article_with_word": "le multiplicateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiplier", + "example_sentence_native": "Le multiplicateur de cette opération est deux.", + "example_sentence_english": "The multiplier for this operation is two.", + "pos": "noun", + "word_frequency": 21702 + }, + { + "word": "mute", + "article_with_word": "le mute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mute (button)", + "example_sentence_native": "Appuyez sur le bouton mute.", + "example_sentence_english": "Press the mute button.", + "pos": "noun", + "word_frequency": 21703 + }, + { + "word": "mélo", + "article_with_word": "le mélo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melodrama;tearjerker", + "example_sentence_native": "Ce film est un vrai mélo.", + "example_sentence_english": "This film is a real tearjerker.", + "pos": "noun", + "word_frequency": 21704 + }, + { + "word": "méthodiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodically", + "example_sentence_native": "Il travaille toujours méthodiquement.", + "example_sentence_english": "He always works methodically.", + "pos": "adverb", + "word_frequency": 21705 + }, + { + "word": "navrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distressing;regrettable", + "example_sentence_native": "C'est une situation vraiment navrante.", + "example_sentence_english": "It's a truly distressing situation.", + "pos": "adjective", + "word_frequency": 21707 + }, + { + "word": "noob", + "article_with_word": "le noob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noob;newbie", + "example_sentence_native": "Ne sois pas un noob, lis le tutoriel.", + "example_sentence_english": "Don't be a noob, read the tutorial.", + "pos": "noun", + "word_frequency": 21709 + }, + { + "word": "nutritionniste", + "article_with_word": "le/la nutritionniste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutritionist", + "example_sentence_native": "J'ai pris rendez-vous avec une nutritionniste.", + "example_sentence_english": "I made an appointment with a nutritionist.", + "pos": "noun", + "word_frequency": 21710 + }, + { + "word": "néologisme", + "article_with_word": "le néologisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neologism", + "example_sentence_native": "Ce mot est un néologisme récent.", + "example_sentence_english": "This word is a recent neologism.", + "pos": "noun", + "word_frequency": 21711 + }, + { + "word": "osier", + "article_with_word": "l'osier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wicker;osier", + "example_sentence_native": "Le panier est fait en osier.", + "example_sentence_english": "The basket is made of wicker.", + "pos": "noun", + "word_frequency": 21714 + }, + { + "word": "ourse", + "article_with_word": "l'ourse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female bear;she-bear", + "example_sentence_native": "L'ourse protège ses petits.", + "example_sentence_english": "The she-bear protects her cubs.", + "pos": "noun", + "word_frequency": 21716 + }, + { + "word": "ovule", + "article_with_word": "l'ovule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ovule;egg cell", + "example_sentence_native": "La fécondation a lieu après la libération de l'ovule.", + "example_sentence_english": "Fertilization occurs after the release of the ovule.", + "pos": "noun", + "word_frequency": 21718 + }, + { + "word": "paléolithique", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Paleolithic", + "example_sentence_native": "Le Paléolithique est la première période de la Préhistoire.", + "example_sentence_english": "The Paleolithic is the first period of Prehistory.", + "pos": "noun", + "word_frequency": 21722 + }, + { + "word": "paria", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pariah;outcast", + "example_sentence_native": "Il se sentait comme un paria dans la société.", + "example_sentence_english": "He felt like an outcast in society.", + "pos": "noun", + "word_frequency": 21724 + }, + { + "word": "patriot", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patriot", + "example_sentence_native": "C'est un vrai patriote qui aime son pays.", + "example_sentence_english": "He is a true patriot who loves his country.", + "pos": "noun", + "word_frequency": 21727 + }, + { + "word": "peche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fishing;peach", + "example_sentence_native": "La pêche est une activité relaxante.", + "example_sentence_english": "Fishing is a relaxing activity.", + "pos": "noun", + "word_frequency": 21729 + }, + { + "word": "philharmonique", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philharmonic (orchestra)", + "example_sentence_native": "Le philharmonique a donné un concert magnifique.", + "example_sentence_english": "The philharmonic gave a magnificent concert.", + "pos": "noun", + "word_frequency": 21731 + }, + { + "word": "pleurnicher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to whine;to whimper", + "example_sentence_native": "Arrête de pleurnicher pour des choses insignifiantes.", + "example_sentence_english": "Stop whining about insignificant things.", + "pos": "verb", + "word_frequency": 21732 + }, + { + "word": "plébisciter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to elect by plebiscite;to approve overwhelmingly", + "example_sentence_native": "Le public a plébiscité sa performance.", + "example_sentence_english": "The public overwhelmingly approved of his performance.", + "pos": "verb", + "word_frequency": 21735 + }, + { + "word": "possessif", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possessive (person;grammar)", + "example_sentence_native": "En grammaire, \"mon\" est un adjectif possessif, mais on parle aussi des possessifs.", + "example_sentence_english": "In grammar, \"my\" is a possessive adjective, but we also talk about possessives.", + "pos": "noun", + "word_frequency": 21736 + }, + { + "word": "potentialité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "potentiality;potential", + "example_sentence_native": "Ce projet a de grandes potentialités.", + "example_sentence_english": "This project has great potential.", + "pos": "noun", + "word_frequency": 21737 + }, + { + "word": "printanier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spring-like;vernal", + "example_sentence_native": "Nous avons eu un temps printanier ce week-end.", + "example_sentence_english": "We had spring-like weather this weekend.", + "pos": "adjective", + "word_frequency": 21738 + }, + { + "word": "privatiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to privatize", + "example_sentence_native": "Le gouvernement a décidé de privatiser l'entreprise publique.", + "example_sentence_english": "The government decided to privatize the public company.", + "pos": "verb", + "word_frequency": 21739 + }, + { + "word": "prostituer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prostitute", + "example_sentence_native": "Il est illégal de prostituer des mineurs.", + "example_sentence_english": "It is illegal to prostitute minors.", + "pos": "verb", + "word_frequency": 21740 + }, + { + "word": "prémisse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "premise", + "example_sentence_native": "Ses conclusions reposent sur une fausse prémisse.", + "example_sentence_english": "His conclusions are based on a false premise.", + "pos": "noun", + "word_frequency": 21741 + }, + { + "word": "pégase", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pegasus", + "example_sentence_native": "Pégase est le cheval ailé de la mythologie grecque.", + "example_sentence_english": "Pegasus is the winged horse of Greek mythology.", + "pos": "noun", + "word_frequency": 21743 + }, + { + "word": "rapt", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abduction;kidnapping", + "example_sentence_native": "La police enquête sur le rapt de l'enfant.", + "example_sentence_english": "The police are investigating the child's abduction.", + "pos": "noun", + "word_frequency": 21746 + }, + { + "word": "rationnement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rationing", + "example_sentence_native": "Le rationnement de l'eau est nécessaire en période de sécheresse.", + "example_sentence_english": "Water rationing is necessary during drought periods.", + "pos": "noun", + "word_frequency": 21747 + }, + { + "word": "rebâtir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rebuild", + "example_sentence_native": "Ils ont dû rebâtir leur maison après l'incendie.", + "example_sentence_english": "They had to rebuild their house after the fire.", + "pos": "verb", + "word_frequency": 21749 + }, + { + "word": "recyclable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recyclable", + "example_sentence_native": "Ce matériau est entièrement recyclable.", + "example_sentence_english": "This material is entirely recyclable.", + "pos": "adjective", + "word_frequency": 21750 + }, + { + "word": "relance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovery;relaunch;boost", + "example_sentence_native": "Le gouvernement vise la relance économique.", + "example_sentence_english": "The government aims for economic recovery.", + "pos": "noun", + "word_frequency": 21751 + }, + { + "word": "relaxant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxing", + "example_sentence_native": "Un bain chaud est très relaxant.", + "example_sentence_english": "A hot bath is very relaxing.", + "pos": "adjective", + "word_frequency": 21752 + }, + { + "word": "requérant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "applicant;petitioner", + "example_sentence_native": "Le requérant doit remplir ce formulaire.", + "example_sentence_english": "The applicant must fill out this form.", + "pos": "noun", + "word_frequency": 21754 + }, + { + "word": "respectueusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectfully", + "example_sentence_native": "Il a salué son supérieur respectueusement.", + "example_sentence_english": "He greeted his superior respectfully.", + "pos": "adverb", + "word_frequency": 21755 + }, + { + "word": "retranchement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrenchment;withdrawal;deduction", + "example_sentence_native": "Les soldats ont construit des retranchements.", + "example_sentence_english": "The soldiers built entrenchments.", + "pos": "noun", + "word_frequency": 21756 + }, + { + "word": "rogne", + "article_with_word": "la rogne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grumpiness;bad temper", + "example_sentence_native": "Il était de mauvaise rogne ce matin.", + "example_sentence_english": "He was in a bad temper this morning.", + "pos": "noun", + "word_frequency": 21760 + }, + { + "word": "ruralité", + "article_with_word": "la ruralité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rurality;rural character", + "example_sentence_native": "La ruralité française est riche de traditions.", + "example_sentence_english": "French rurality is rich in traditions.", + "pos": "noun", + "word_frequency": 21761 + }, + { + "word": "réévaluation", + "article_with_word": "la réévaluation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-evaluation;reassessment", + "example_sentence_native": "Une réévaluation des risques est nécessaire.", + "example_sentence_english": "A re-evaluation of the risks is necessary.", + "pos": "noun", + "word_frequency": 21762 + }, + { + "word": "scotcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tape;to rivet (colloquial)", + "example_sentence_native": "Le film m'a scotché à mon siège.", + "example_sentence_english": "The film riveted me to my seat.", + "pos": "verb", + "word_frequency": 21765 + }, + { + "word": "sommier", + "article_with_word": "le sommier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bed base;box spring", + "example_sentence_native": "Le matelas repose sur le sommier.", + "example_sentence_english": "The mattress rests on the bed base.", + "pos": "noun", + "word_frequency": 21771 + }, + { + "word": "soucoupe", + "article_with_word": "la soucoupe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saucer", + "example_sentence_native": "Mets la tasse sur la soucoupe.", + "example_sentence_english": "Put the cup on the saucer.", + "pos": "noun", + "word_frequency": 21772 + }, + { + "word": "soutenable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustainable;bearable", + "example_sentence_native": "C'est une solution soutenable à long terme.", + "example_sentence_english": "It's a sustainable long-term solution.", + "pos": "adjective", + "word_frequency": 21773 + }, + { + "word": "spartiate", + "article_with_word": "le spartiate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Spartan (person from Sparta)", + "example_sentence_native": "Les Spartiates étaient des guerriers redoutables.", + "example_sentence_english": "The Spartans were formidable warriors.", + "pos": "noun", + "word_frequency": 21775 + }, + { + "word": "stylet", + "article_with_word": "le stylet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stylus;stiletto (weapon)", + "example_sentence_native": "J'utilise un stylet pour dessiner sur ma tablette.", + "example_sentence_english": "I use a stylus to draw on my tablet.", + "pos": "noun", + "word_frequency": 21777 + }, + { + "word": "tertre", + "article_with_word": "le tertre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mound;hillock", + "example_sentence_native": "Ils ont gravi le petit tertre pour admirer la vue.", + "example_sentence_english": "They climbed the small mound to admire the view.", + "pos": "noun", + "word_frequency": 21782 + }, + { + "word": "transept", + "article_with_word": "le transept", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transept (part of a church)", + "example_sentence_native": "Le transept de la cathédrale est impressionnant.", + "example_sentence_english": "The transept of the cathedral is impressive.", + "pos": "noun", + "word_frequency": 21784 + }, + { + "word": "tribord", + "article_with_word": "le tribord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starboard", + "example_sentence_native": "Le bateau vire à tribord.", + "example_sentence_english": "The boat turns to starboard.", + "pos": "noun", + "word_frequency": 21785 + }, + { + "word": "trident", + "article_with_word": "le trident", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trident", + "example_sentence_native": "Poséidon est souvent représenté avec un trident.", + "example_sentence_english": "Poseidon is often depicted with a trident.", + "pos": "noun", + "word_frequency": 21786 + }, + { + "word": "troller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to troll (internet)", + "example_sentence_native": "Il aime troller les forums en ligne.", + "example_sentence_english": "He likes to troll online forums.", + "pos": "verb", + "word_frequency": 21787 + }, + { + "word": "tshirt", + "article_with_word": "le tshirt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "T-shirt", + "example_sentence_native": "J'ai acheté un nouveau tshirt.", + "example_sentence_english": "I bought a new T-shirt.", + "pos": "noun", + "word_frequency": 21788 + }, + { + "word": "typhus", + "article_with_word": "le typhus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "typhus", + "example_sentence_native": "Le typhus est une maladie infectieuse.", + "example_sentence_english": "Typhus is an infectious disease.", + "pos": "noun", + "word_frequency": 21789 + }, + { + "word": "typographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "typographic", + "example_sentence_native": "Il y a une erreur typographique dans le texte.", + "example_sentence_english": "There is a typographic error in the text.", + "pos": "adjective", + "word_frequency": 21790 + }, + { + "word": "victimisation", + "article_with_word": "la victimisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "victimization", + "example_sentence_native": "La victimisation peut avoir des effets profonds.", + "example_sentence_english": "Victimization can have profound effects.", + "pos": "noun", + "word_frequency": 21793 + }, + { + "word": "vinification", + "article_with_word": "la vinification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "winemaking;vinification", + "example_sentence_native": "La vinification est un art délicat.", + "example_sentence_english": "Winemaking is a delicate art.", + "pos": "noun", + "word_frequency": 21794 + }, + { + "word": "viscéral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visceral", + "example_sentence_native": "Il a une réaction viscérale à l'injustice.", + "example_sentence_english": "He has a visceral reaction to injustice.", + "pos": "adjective", + "word_frequency": 21795 + }, + { + "word": "zeppelin", + "article_with_word": "un zeppelin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zeppelin", + "example_sentence_native": "Le zeppelin a survolé la ville.", + "example_sentence_english": "The zeppelin flew over the city.", + "pos": "noun", + "word_frequency": 21805 + }, + { + "word": "éclaircissement", + "article_with_word": "un éclaircissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarification;explanation", + "example_sentence_native": "J'attends un éclaircissement sur cette situation.", + "example_sentence_english": "I am waiting for a clarification on this situation.", + "pos": "noun", + "word_frequency": 21806 + }, + { + "word": "écope", + "article_with_word": "une écope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scoop;bailer", + "example_sentence_native": "Il a utilisé une écope pour vider l'eau du bateau.", + "example_sentence_english": "He used a bailer to empty the water from the boat.", + "pos": "noun", + "word_frequency": 21807 + }, + { + "word": "émeutier", + "article_with_word": "un émeutier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rioter", + "example_sentence_native": "La police a arrêté plusieurs émeutiers.", + "example_sentence_english": "The police arrested several rioters.", + "pos": "noun", + "word_frequency": 21808 + }, + { + "word": "épicentre", + "article_with_word": "l'épicentre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epicenter", + "example_sentence_native": "L'épicentre du tremblement de terre était près de la côte.", + "example_sentence_english": "The earthquake's epicenter was near the coast.", + "pos": "noun", + "word_frequency": 21809 + }, + { + "word": "abricot", + "article_with_word": "un abricot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apricot", + "example_sentence_native": "J'adore les confitures d'abricots.", + "example_sentence_english": "I love apricot jams.", + "pos": "noun", + "word_frequency": 21810 + }, + { + "word": "absinthe", + "article_with_word": "l'absinthe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absinthe", + "example_sentence_native": "L'absinthe était une boisson populaire au 19e siècle.", + "example_sentence_english": "Absinthe was a popular drink in the 19th century.", + "pos": "noun", + "word_frequency": 21811 + }, + { + "word": "aiguillon", + "article_with_word": "un aiguillon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sting;goad;spur", + "example_sentence_native": "La critique a servi d'aiguillon pour améliorer son travail.", + "example_sentence_english": "The criticism served as a spur to improve his work.", + "pos": "noun", + "word_frequency": 21814 + }, + { + "word": "allégresse", + "article_with_word": "l'allégresse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joy;elation;cheerfulness", + "example_sentence_native": "Elle a annoncé la nouvelle avec une grande allégresse.", + "example_sentence_english": "She announced the news with great joy.", + "pos": "noun", + "word_frequency": 21819 + }, + { + "word": "amèrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitterly", + "example_sentence_native": "Il a amèrement regretté ses paroles.", + "example_sentence_english": "He bitterly regretted his words.", + "pos": "adverb", + "word_frequency": 21822 + }, + { + "word": "antidopage", + "article_with_word": "l'antidopage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-doping", + "example_sentence_native": "La lutte antidopage est essentielle dans le sport.", + "example_sentence_english": "The anti-doping fight is essential in sport.", + "pos": "noun", + "word_frequency": 21825 + }, + { + "word": "aorte", + "article_with_word": "l'aorte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aorta", + "example_sentence_native": "L'aorte est la plus grande artère du corps.", + "example_sentence_english": "The aorta is the largest artery in the body.", + "pos": "noun", + "word_frequency": 21827 + }, + { + "word": "aréna", + "article_with_word": "une aréna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arena", + "example_sentence_native": "Le concert aura lieu dans la nouvelle aréna.", + "example_sentence_english": "The concert will take place in the new arena.", + "pos": "noun", + "word_frequency": 21831 + }, + { + "word": "asymétrie", + "article_with_word": "l'asymétrie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asymmetry", + "example_sentence_native": "Il y a une asymétrie notable entre les deux côtés.", + "example_sentence_english": "There is a notable asymmetry between the two sides.", + "pos": "noun", + "word_frequency": 21832 + }, + { + "word": "aubergine", + "article_with_word": "une aubergine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eggplant;aubergine", + "example_sentence_native": "J'ai acheté des aubergines pour faire une moussaka.", + "example_sentence_english": "I bought eggplants to make a moussaka.", + "pos": "noun", + "word_frequency": 21833 + }, + { + "word": "bancal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wobbly;shaky;unsound", + "example_sentence_native": "Cette table est bancale, elle a besoin d'être réparée.", + "example_sentence_english": "This table is wobbly, it needs to be repaired.", + "pos": "adjective", + "word_frequency": 21836 + }, + { + "word": "buccal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buccal;oral", + "example_sentence_native": "L'hygiène buccale est très importante pour la santé.", + "example_sentence_english": "Oral hygiene is very important for health.", + "pos": "adjective", + "word_frequency": 21846 + }, + { + "word": "cardiologie", + "article_with_word": "la cardiologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiology", + "example_sentence_native": "Il étudie la cardiologie à l'université.", + "example_sentence_english": "He studies cardiology at the university.", + "pos": "noun", + "word_frequency": 21850 + }, + { + "word": "carre", + "article_with_word": "le carré", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "square", + "example_sentence_native": "Dessine un carré avec quatre côtés égaux.", + "example_sentence_english": "Draw a square with four equal sides.", + "pos": "noun", + "word_frequency": 21851 + }, + { + "word": "cep", + "article_with_word": "le cep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vine stock;vine", + "example_sentence_native": "Le cep de vigne produit de délicieux raisins.", + "example_sentence_english": "The vine stock produces delicious grapes.", + "pos": "noun", + "word_frequency": 21854 + }, + { + "word": "chape", + "article_with_word": "la chape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screed;cap", + "example_sentence_native": "Il faut couler une chape de béton avant de poser le carrelage.", + "example_sentence_english": "A concrete screed must be poured before laying the tiles.", + "pos": "noun", + "word_frequency": 21855 + }, + { + "word": "charrier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cart;to carry;to tease (colloquial)", + "example_sentence_native": "Arrête de me charrier, je suis sérieux !", + "example_sentence_english": "Stop teasing me, I'm serious!", + "pos": "verb", + "word_frequency": 21856 + }, + { + "word": "chaume", + "article_with_word": "le chaume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thatch;stubble", + "example_sentence_native": "Le toit de la cabane était fait de chaume.", + "example_sentence_english": "The roof of the hut was made of thatch.", + "pos": "noun", + "word_frequency": 21857 + }, + { + "word": "circoncire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to circumcise", + "example_sentence_native": "Dans certaines cultures, il est courant de circoncire les garçons.", + "example_sentence_english": "In some cultures, it is common to circumcise boys.", + "pos": "verb", + "word_frequency": 21859 + }, + { + "word": "commercialement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commercially", + "example_sentence_native": "Le produit n'est pas encore viable commercialement.", + "example_sentence_english": "The product is not yet commercially viable.", + "pos": "adverb", + "word_frequency": 21861 + }, + { + "word": "compulsif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsive", + "example_sentence_native": "Il a un besoin compulsif de vérifier ses emails.", + "example_sentence_english": "He has a compulsive need to check his emails.", + "pos": "adjective", + "word_frequency": 21862 + }, + { + "word": "confluence", + "article_with_word": "la confluence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confluence", + "example_sentence_native": "La confluence du Rhône et de la Saône est à Lyon.", + "example_sentence_english": "The confluence of the Rhône and Saône is in Lyon.", + "pos": "noun", + "word_frequency": 21863 + }, + { + "word": "congeler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to freeze", + "example_sentence_native": "N'oubliez pas de congeler les restes.", + "example_sentence_english": "Don't forget to freeze the leftovers.", + "pos": "verb", + "word_frequency": 21864 + }, + { + "word": "congénital", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congenital", + "example_sentence_native": "Il souffre d'une malformation congénitale.", + "example_sentence_english": "He suffers from a congenital malformation.", + "pos": "adjective", + "word_frequency": 21865 + }, + { + "word": "contrebasse", + "article_with_word": "la contrebasse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "double bass", + "example_sentence_native": "Elle joue de la contrebasse dans un orchestre de jazz.", + "example_sentence_english": "She plays the double bass in a jazz orchestra.", + "pos": "noun", + "word_frequency": 21866 + }, + { + "word": "contretemps", + "article_with_word": "le contretemps", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hitch;setback;mishap", + "example_sentence_native": "Nous avons eu un petit contretemps avec le train.", + "example_sentence_english": "We had a small hitch with the train.", + "pos": "noun", + "word_frequency": 21867 + }, + { + "word": "convertisseur", + "article_with_word": "le convertisseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "converter", + "example_sentence_native": "J'ai besoin d'un convertisseur de tension pour cet appareil.", + "example_sentence_english": "I need a voltage converter for this device.", + "pos": "noun", + "word_frequency": 21868 + }, + { + "word": "cordage", + "article_with_word": "le cordage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rope;cordage", + "example_sentence_native": "Le marin a vérifié le cordage du bateau.", + "example_sentence_english": "The sailor checked the boat's rope.", + "pos": "noun", + "word_frequency": 21870 + }, + { + "word": "courroux", + "article_with_word": "le courroux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wrath;anger", + "example_sentence_native": "Le roi exprima son courroux face à la trahison.", + "example_sentence_english": "The king expressed his wrath at the betrayal.", + "pos": "noun", + "word_frequency": 21873 + }, + { + "word": "croupe", + "article_with_word": "la croupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rump;crupper", + "example_sentence_native": "Le cavalier caressa la croupe de son cheval.", + "example_sentence_english": "The rider stroked the rump of his horse.", + "pos": "noun", + "word_frequency": 21874 + }, + { + "word": "cupcake", + "article_with_word": "le cupcake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cupcake", + "example_sentence_native": "J'ai acheté un délicieux cupcake au chocolat.", + "example_sentence_english": "I bought a delicious chocolate cupcake.", + "pos": "noun", + "word_frequency": 21875 + }, + { + "word": "cétacé", + "article_with_word": "le cétacé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cetacean", + "example_sentence_native": "La baleine est un grand cétacé marin.", + "example_sentence_english": "The whale is a large marine cetacean.", + "pos": "noun", + "word_frequency": 21876 + }, + { + "word": "dialyse", + "article_with_word": "la dialyse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialysis", + "example_sentence_native": "Le patient a besoin de dialyse rénale.", + "example_sentence_english": "The patient needs kidney dialysis.", + "pos": "noun", + "word_frequency": 21880 + }, + { + "word": "dissémination", + "article_with_word": "la dissémination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissemination", + "example_sentence_native": "La dissémination des informations est rapide à l'ère numérique.", + "example_sentence_english": "The dissemination of information is fast in the digital age.", + "pos": "noun", + "word_frequency": 21881 + }, + { + "word": "distinctement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinctly", + "example_sentence_native": "Il a parlé distinctement pour que tout le monde l'entende.", + "example_sentence_english": "He spoke distinctly so that everyone could hear him.", + "pos": "adverb", + "word_frequency": 21882 + }, + { + "word": "dogmatisme", + "article_with_word": "le dogmatisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dogmatism", + "example_sentence_native": "Son dogmatisme l'empêche d'accepter de nouvelles idées.", + "example_sentence_english": "His dogmatism prevents him from accepting new ideas.", + "pos": "noun", + "word_frequency": 21883 + }, + { + "word": "dominance", + "article_with_word": "la dominance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominance", + "example_sentence_native": "La dominance de cette espèce est visible dans l'écosystème.", + "example_sentence_english": "The dominance of this species is visible in the ecosystem.", + "pos": "noun", + "word_frequency": 21884 + }, + { + "word": "doper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dope;to boost", + "example_sentence_native": "Les athlètes ne devraient pas se doper pour gagner.", + "example_sentence_english": "Athletes should not dope to win.", + "pos": "verb", + "word_frequency": 21885 + }, + { + "word": "décortiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shell;to dissect;to analyze", + "example_sentence_native": "Il faut décortiquer les crevettes avant de les manger.", + "example_sentence_english": "You have to shell the shrimp before eating them.", + "pos": "verb", + "word_frequency": 21890 + }, + { + "word": "déminage", + "article_with_word": "le déminage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mine clearance", + "example_sentence_native": "Le déminage est une opération dangereuse.", + "example_sentence_english": "Mine clearance is a dangerous operation.", + "pos": "noun", + "word_frequency": 21891 + }, + { + "word": "dépister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detect;to screen;to track down", + "example_sentence_native": "Il est important de dépister les maladies tôt.", + "example_sentence_english": "It is important to detect diseases early.", + "pos": "verb", + "word_frequency": 21892 + }, + { + "word": "dépité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappointed;vexed", + "example_sentence_native": "Il était dépité par le résultat du match.", + "example_sentence_english": "He was disappointed by the match result.", + "pos": "adjective", + "word_frequency": 21893 + }, + { + "word": "désaveu", + "article_with_word": "le désaveu", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disavowal;repudiation", + "example_sentence_native": "Le gouvernement a publié un désaveu de ces actions.", + "example_sentence_english": "The government issued a disavowal of these actions.", + "pos": "noun", + "word_frequency": 21894 + }, + { + "word": "dévastation", + "article_with_word": "la dévastation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastation", + "example_sentence_native": "La tempête a causé une dévastation immense.", + "example_sentence_english": "The storm caused immense devastation.", + "pos": "noun", + "word_frequency": 21895 + }, + { + "word": "electronique", + "article_with_word": "l'électronique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronics", + "example_sentence_native": "Il étudie l'électronique à l'université.", + "example_sentence_english": "He studies electronics at university.", + "pos": "noun", + "word_frequency": 21898 + }, + { + "word": "encourir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incur;to run (a risk)", + "example_sentence_native": "Il risque d'encourir une lourde peine.", + "example_sentence_english": "He risks incurring a heavy penalty.", + "pos": "verb", + "word_frequency": 21901 + }, + { + "word": "entaille", + "article_with_word": "une entaille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notch;gash;cut", + "example_sentence_native": "Il y a une entaille profonde dans le bois.", + "example_sentence_english": "There is a deep gash in the wood.", + "pos": "noun", + "word_frequency": 21902 + }, + { + "word": "entraider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help each other", + "example_sentence_native": "Ils aiment s'entraider dans les moments difficiles.", + "example_sentence_english": "They like to help each other in difficult times.", + "pos": "verb", + "word_frequency": 21903 + }, + { + "word": "errement", + "article_with_word": "un errement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "error;deviation;past mistakes (often plural)", + "example_sentence_native": "Il a reconnu les errements de sa politique passée.", + "example_sentence_english": "He acknowledged the errors of his past policy.", + "pos": "noun", + "word_frequency": 21904 + }, + { + "word": "ester", + "article_with_word": "un ester", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ester (chemistry)", + "example_sentence_native": "Les esters sont des composés organiques.", + "example_sentence_english": "Esters are organic compounds.", + "pos": "noun", + "word_frequency": 21905 + }, + { + "word": "fidéliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build loyalty;to retain (customers)", + "example_sentence_native": "Les entreprises cherchent à fidéliser leurs clients.", + "example_sentence_english": "Companies seek to build customer loyalty.", + "pos": "verb", + "word_frequency": 21906 + }, + { + "word": "finissez", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "you finish (present;imperative)", + "example_sentence_native": "Finissez votre travail avant de partir.", + "example_sentence_english": "Finish your work before leaving.", + "pos": "verb", + "word_frequency": 21907 + }, + { + "word": "flashé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flashed;caught (by camera)", + "example_sentence_native": "J'ai été flashé par un radar.", + "example_sentence_english": "I was caught by a speed camera.", + "pos": "adjective", + "word_frequency": 21908 + }, + { + "word": "fonctionnaient", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "they were functioning;working", + "example_sentence_native": "Les machines fonctionnaient parfaitement hier.", + "example_sentence_english": "The machines were working perfectly yesterday.", + "pos": "verb", + "word_frequency": 21909 + }, + { + "word": "forçait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "he;she;it was forcing", + "example_sentence_native": "Il forçait la porte pour entrer.", + "example_sentence_english": "He was forcing the door to enter.", + "pos": "verb", + "word_frequency": 21910 + }, + { + "word": "frac", + "article_with_word": "un frac", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tailcoat;dress coat", + "example_sentence_native": "Il portait un frac pour la soirée de gala.", + "example_sentence_english": "He wore a tailcoat for the gala evening.", + "pos": "noun", + "word_frequency": 21911 + }, + { + "word": "fréquentant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequenting;attending", + "example_sentence_native": "Il est souvent vu fréquentant les bibliothèques.", + "example_sentence_english": "He is often seen frequenting libraries.", + "pos": "verb", + "word_frequency": 21915 + }, + { + "word": "fêtera", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "he;she;it will celebrate", + "example_sentence_native": "Elle fêtera son anniversaire le mois prochain.", + "example_sentence_english": "She will celebrate her birthday next month.", + "pos": "verb", + "word_frequency": 21916 + }, + { + "word": "golfeur", + "article_with_word": "le golfeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "golfer", + "example_sentence_native": "Le golfeur a réussi un excellent coup.", + "example_sentence_english": "The golfer made an excellent shot.", + "pos": "noun", + "word_frequency": 21921 + }, + { + "word": "graminée", + "article_with_word": "la graminée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grass (botanical term)", + "example_sentence_native": "Les graminées sont des plantes très répandues dans le monde.", + "example_sentence_english": "Grasses are very widespread plants in the world.", + "pos": "noun", + "word_frequency": 21923 + }, + { + "word": "gésir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to lie (dead;ill;in ruins)", + "example_sentence_native": "Le corps du soldat gisait sur le champ de bataille.", + "example_sentence_english": "The soldier's body lay on the battlefield.", + "pos": "verb", + "word_frequency": 21927 + }, + { + "word": "herbier", + "article_with_word": "un herbier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herbarium", + "example_sentence_native": "Elle a commencé à collectionner des plantes pour son herbier.", + "example_sentence_english": "She started collecting plants for her herbarium.", + "pos": "noun", + "word_frequency": 21929 + }, + { + "word": "hissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoisted;raised", + "example_sentence_native": "Le drapeau hissé flottait au vent.", + "example_sentence_english": "The hoisted flag was fluttering in the wind.", + "pos": "adjective", + "word_frequency": 21931 + }, + { + "word": "inattention", + "article_with_word": "l'inattention", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inattention;carelessness", + "example_sentence_native": "Une simple inattention peut causer des erreurs.", + "example_sentence_english": "Simple inattention can cause errors.", + "pos": "noun", + "word_frequency": 21934 + }, + { + "word": "indélébile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indelible", + "example_sentence_native": "Ce souvenir est resté indélébile dans sa mémoire.", + "example_sentence_english": "This memory remained indelible in his mind.", + "pos": "adjective", + "word_frequency": 21935 + }, + { + "word": "inflexion", + "article_with_word": "une inflexion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflection;change (of voice;direction)", + "example_sentence_native": "On a remarqué une légère inflexion dans sa voix.", + "example_sentence_english": "A slight inflection was noticed in her voice.", + "pos": "noun", + "word_frequency": 21936 + }, + { + "word": "insinuation", + "article_with_word": "une insinuation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insinuation", + "example_sentence_native": "Je n'apprécie pas ces insinuations.", + "example_sentence_english": "I don't appreciate these insinuations.", + "pos": "noun", + "word_frequency": 21937 + }, + { + "word": "intimiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimate;personal (style;atmosphere)", + "example_sentence_native": "L'ambiance du café était très intimiste.", + "example_sentence_english": "The atmosphere of the cafe was very intimate.", + "pos": "adjective", + "word_frequency": 21940 + }, + { + "word": "joujou", + "article_with_word": "un joujou", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toy (child's word)", + "example_sentence_native": "Le bébé joue avec son nouveau joujou.", + "example_sentence_english": "The baby is playing with his new toy.", + "pos": "noun", + "word_frequency": 21945 + }, + { + "word": "jute", + "article_with_word": "le jute", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jute", + "example_sentence_native": "Le sac est fait de toile de jute.", + "example_sentence_english": "The bag is made of jute fabric.", + "pos": "noun", + "word_frequency": 21946 + }, + { + "word": "lectrice", + "article_with_word": "la lectrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reader (female)", + "example_sentence_native": "La lectrice a apprécié le roman.", + "example_sentence_english": "The reader enjoyed the novel.", + "pos": "noun", + "word_frequency": 21950 + }, + { + "word": "limace", + "article_with_word": "la limace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slug", + "example_sentence_native": "Les limaces mangent les feuilles de salade.", + "example_sentence_english": "Slugs eat lettuce leaves.", + "pos": "noun", + "word_frequency": 21955 + }, + { + "word": "létal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lethal", + "example_sentence_native": "Le poison était létal.", + "example_sentence_english": "The poison was lethal.", + "pos": "adjective", + "word_frequency": 21959 + }, + { + "word": "malfrat", + "article_with_word": "le malfrat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thug;gangster", + "example_sentence_native": "Le malfrat a été arrêté par la police.", + "example_sentence_english": "The thug was arrested by the police.", + "pos": "noun", + "word_frequency": 21960 + }, + { + "word": "mandoline", + "article_with_word": "la mandoline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mandoline", + "example_sentence_native": "Elle a utilisé une mandoline pour couper les légumes finement.", + "example_sentence_english": "She used a mandoline to slice the vegetables thinly.", + "pos": "noun", + "word_frequency": 21961 + }, + { + "word": "manifesté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manifested;demonstrated", + "example_sentence_native": "Son mécontentement était clairement manifesté.", + "example_sentence_english": "His dissatisfaction was clearly manifested.", + "pos": "adjective", + "word_frequency": 21962 + }, + { + "word": "manipulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulated", + "example_sentence_native": "Il se sentait manipulé par ses collègues.", + "example_sentence_english": "He felt manipulated by his colleagues.", + "pos": "adjective", + "word_frequency": 21963 + }, + { + "word": "matiere", + "article_with_word": "la matière", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "matter;subject;material", + "example_sentence_native": "Quelle est ta matière préférée à l'école ?", + "example_sentence_english": "What is your favorite subject at school?", + "pos": "noun", + "word_frequency": 21966 + }, + { + "word": "meteo", + "article_with_word": "la météo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "weather forecast", + "example_sentence_native": "La météo annonce de la pluie pour demain.", + "example_sentence_english": "The weather forecast announces rain for tomorrow.", + "pos": "noun", + "word_frequency": 21967 + }, + { + "word": "metropolis", + "article_with_word": "la métropole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolis", + "example_sentence_native": "Paris est une grande métropole européenne.", + "example_sentence_english": "Paris is a large European metropolis.", + "pos": "noun", + "word_frequency": 21968 + }, + { + "word": "minette", + "article_with_word": "la minette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kitten;little girl (affectionate)", + "example_sentence_native": "Regarde cette petite minette, elle est adorable.", + "example_sentence_english": "Look at that little kitten, she's adorable.", + "pos": "noun", + "word_frequency": 21970 + }, + { + "word": "morphologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morphological", + "example_sentence_native": "L'analyse morphologique des mots est importante en linguistique.", + "example_sentence_english": "The morphological analysis of words is important in linguistics.", + "pos": "adjective", + "word_frequency": 21976 + }, + { + "word": "médina", + "article_with_word": "la médina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medina (old quarter of a North African city)", + "example_sentence_native": "Nous nous sommes perdus dans les ruelles étroites de la médina.", + "example_sentence_english": "We got lost in the narrow streets of the medina.", + "pos": "noun", + "word_frequency": 21977 + }, + { + "word": "méninge", + "article_with_word": "la méninge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meninge (often plural: meninges)", + "example_sentence_native": "L'inflammation des méninges est appelée méningite.", + "example_sentence_english": "Inflammation of the meninges is called meningitis.", + "pos": "noun", + "word_frequency": 21978 + }, + { + "word": "opprimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppressed", + "example_sentence_native": "Les peuples opprimés luttent pour leur liberté.", + "example_sentence_english": "Oppressed peoples fight for their freedom.", + "pos": "adjective", + "word_frequency": 21987 + }, + { + "word": "opticien", + "article_with_word": "l'opticien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optician", + "example_sentence_native": "J'ai rendez-vous chez l'opticien pour mes nouvelles lunettes.", + "example_sentence_english": "I have an appointment at the optician's for my new glasses.", + "pos": "noun", + "word_frequency": 21988 + }, + { + "word": "paillasson", + "article_with_word": "le paillasson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doormat", + "example_sentence_native": "Essuie tes pieds sur le paillasson avant d'entrer.", + "example_sentence_english": "Wipe your feet on the doormat before entering.", + "pos": "noun", + "word_frequency": 21990 + }, + { + "word": "palladium", + "article_with_word": "le palladium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palladium", + "example_sentence_native": "Le palladium est un métal précieux.", + "example_sentence_english": "Palladium is a precious metal.", + "pos": "noun", + "word_frequency": 21992 + }, + { + "word": "pastis", + "article_with_word": "le pastis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastis (anise-flavored aperitif)", + "example_sentence_native": "En Provence, on boit souvent un verre de pastis.", + "example_sentence_english": "In Provence, people often drink a glass of pastis.", + "pos": "noun", + "word_frequency": 21993 + }, + { + "word": "pieuvre", + "article_with_word": "la pieuvre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "octopus", + "example_sentence_native": "La pieuvre a huit bras.", + "example_sentence_english": "The octopus has eight arms.", + "pos": "noun", + "word_frequency": 21995 + }, + { + "word": "pineau", + "article_with_word": "le pineau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pineau (a fortified wine from Charente)", + "example_sentence_native": "Le Pineau des Charentes est un apéritif régional.", + "example_sentence_english": "Pineau des Charentes is a regional aperitif.", + "pos": "noun", + "word_frequency": 21996 + }, + { + "word": "piteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitiful;pathetic", + "example_sentence_native": "Il était dans un état piteux après l'accident.", + "example_sentence_english": "He was in a pitiful state after the accident.", + "pos": "adjective", + "word_frequency": 21997 + }, + { + "word": "plombé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leaded;ruined;weighed down", + "example_sentence_native": "L'ambiance était plombée par la mauvaise nouvelle.", + "example_sentence_english": "The atmosphere was weighed down by the bad news.", + "pos": "adjective", + "word_frequency": 21999 + }, + { + "word": "polio", + "article_with_word": "la polio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polio", + "example_sentence_native": "La polio est une maladie virale grave.", + "example_sentence_english": "Polio is a serious viral disease.", + "pos": "noun", + "word_frequency": 22000 + }, + { + "word": "pollué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polluted", + "example_sentence_native": "L'air de la ville est très pollué.", + "example_sentence_english": "The city air is very polluted.", + "pos": "adjective", + "word_frequency": 22001 + }, + { + "word": "porcin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "porcine;pig (adj.)", + "example_sentence_native": "L'élevage porcin est une activité importante dans cette région.", + "example_sentence_english": "Pig farming is an important activity in this region.", + "pos": "adjective", + "word_frequency": 22002 + }, + { + "word": "potage", + "article_with_word": "le potage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soup;thick soup", + "example_sentence_native": "J'ai préparé un délicieux potage aux légumes pour le dîner.", + "example_sentence_english": "I prepared a delicious vegetable soup for dinner.", + "pos": "noun", + "word_frequency": 22003 + }, + { + "word": "précipice", + "article_with_word": "le précipice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precipice;cliff", + "example_sentence_native": "Il se tenait au bord du précipice, regardant la vallée en contrebas.", + "example_sentence_english": "He stood on the edge of the precipice, looking at the valley below.", + "pos": "noun", + "word_frequency": 22005 + }, + { + "word": "psychédélique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychedelic", + "example_sentence_native": "Les années 60 ont été marquées par l'art psychédélique.", + "example_sentence_english": "The 60s were marked by psychedelic art.", + "pos": "adjective", + "word_frequency": 22006 + }, + { + "word": "pulluler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to proliferate;to swarm", + "example_sentence_native": "Les lapins pullulent dans ce champ.", + "example_sentence_english": "Rabbits are swarming in this field.", + "pos": "verb", + "word_frequency": 22007 + }, + { + "word": "pénalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminally;legally", + "example_sentence_native": "Il est pénalement responsable de ses actes.", + "example_sentence_english": "He is criminally responsible for his actions.", + "pos": "adverb", + "word_frequency": 22009 + }, + { + "word": "quintessence", + "article_with_word": "la quintessence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quintessence;essence", + "example_sentence_native": "Ce plat est la quintessence de la cuisine française.", + "example_sentence_english": "This dish is the quintessence of French cuisine.", + "pos": "noun", + "word_frequency": 22011 + }, + { + "word": "raréfaction", + "article_with_word": "la raréfaction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rarefaction;scarcity", + "example_sentence_native": "La raréfaction de l'eau est un problème mondial.", + "example_sentence_english": "Water scarcity is a global problem.", + "pos": "noun", + "word_frequency": 22012 + }, + { + "word": "rebaptisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renamed;rebaptized", + "example_sentence_native": "L'ancien stade a été rebaptisé en l'honneur du joueur.", + "example_sentence_english": "The old stadium was renamed in honor of the player.", + "pos": "adjective", + "word_frequency": 22016 + }, + { + "word": "remboursable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refundable", + "example_sentence_native": "Ce billet n'est pas remboursable.", + "example_sentence_english": "This ticket is not refundable.", + "pos": "adjective", + "word_frequency": 22019 + }, + { + "word": "retardataire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "late;behind schedule (adj.)", + "example_sentence_native": "Les paiements retardataires entraîneront des frais supplémentaires.", + "example_sentence_english": "Late payments will incur additional fees.", + "pos": "adjective", + "word_frequency": 22021 + }, + { + "word": "reverser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay back;to transfer;to pour back", + "example_sentence_native": "L'entreprise doit reverser les bénéfices aux actionnaires.", + "example_sentence_english": "The company must pay back the profits to the shareholders.", + "pos": "verb", + "word_frequency": 22023 + }, + { + "word": "ronce", + "article_with_word": "la ronce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bramble;blackberry bush", + "example_sentence_native": "Les ronces ont envahi le jardin.", + "example_sentence_english": "The brambles have invaded the garden.", + "pos": "noun", + "word_frequency": 22026 + }, + { + "word": "rougeâtre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reddish", + "example_sentence_native": "Le ciel avait une teinte rougeâtre au coucher du soleil.", + "example_sentence_english": "The sky had a reddish tint at sunset.", + "pos": "adjective", + "word_frequency": 22027 + }, + { + "word": "roulage", + "article_with_word": "le roulage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rolling;transport;taxiing (aviation)", + "example_sentence_native": "Le roulage des avions sur la piste est une étape cruciale.", + "example_sentence_english": "The taxiing of planes on the runway is a crucial step.", + "pos": "noun", + "word_frequency": 22028 + }, + { + "word": "réapparition", + "article_with_word": "la réapparition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reappearance", + "example_sentence_native": "La réapparition de l'espèce a surpris les scientifiques.", + "example_sentence_english": "The reappearance of the species surprised the scientists.", + "pos": "noun", + "word_frequency": 22032 + }, + { + "word": "récurrence", + "article_with_word": "la récurrence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recurrence;recursion", + "example_sentence_native": "La récurrence des symptômes est préoccupante.", + "example_sentence_english": "The recurrence of symptoms is concerning.", + "pos": "noun", + "word_frequency": 22033 + }, + { + "word": "référencer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reference;to list;to index", + "example_sentence_native": "Il faut référencer toutes les sources utilisées dans votre travail.", + "example_sentence_english": "You must reference all sources used in your work.", + "pos": "verb", + "word_frequency": 22034 + }, + { + "word": "sablier", + "article_with_word": "le sablier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hourglass", + "example_sentence_native": "Le temps s'écoule comme le sable dans un sablier.", + "example_sentence_english": "Time flows like sand in an hourglass.", + "pos": "noun", + "word_frequency": 22035 + }, + { + "word": "sauterelle", + "article_with_word": "la sauterelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grasshopper;locust", + "example_sentence_native": "Une sauterelle a sauté sur ma main.", + "example_sentence_english": "A grasshopper jumped onto my hand.", + "pos": "noun", + "word_frequency": 22037 + }, + { + "word": "secouriste", + "article_with_word": "un secouriste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paramedic;rescuer", + "example_sentence_native": "Le secouriste a rapidement soigné la blessure.", + "example_sentence_english": "The paramedic quickly treated the injury.", + "pos": "noun", + "word_frequency": 22040 + }, + { + "word": "shea", + "article_with_word": "le shea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shea (as in shea butter)", + "example_sentence_native": "Le beurre de karité (shea) est excellent pour la peau.", + "example_sentence_english": "Shea butter is excellent for the skin.", + "pos": "noun", + "word_frequency": 22041 + }, + { + "word": "siamois", + "article_with_word": "le siamois", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Siamese (cat)", + "example_sentence_native": "Mon chat est un beau siamois aux yeux bleus.", + "example_sentence_english": "My cat is a beautiful Siamese with blue eyes.", + "pos": "noun", + "word_frequency": 22044 + }, + { + "word": "sixte", + "article_with_word": "la sixte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sixth (music interval)", + "example_sentence_native": "La sixte est un intervalle musical.", + "example_sentence_english": "The sixth is a musical interval.", + "pos": "noun", + "word_frequency": 22046 + }, + { + "word": "solder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sell off;to clear out (stock);to settle (an account)", + "example_sentence_native": "Le magasin va solder tous ses articles avant de fermer.", + "example_sentence_english": "The store will sell off all its items before closing.", + "pos": "verb", + "word_frequency": 22047 + }, + { + "word": "sommairement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summarily;briefly", + "example_sentence_native": "Il a été jugé sommairement.", + "example_sentence_english": "He was judged summarily.", + "pos": "adverb", + "word_frequency": 22048 + }, + { + "word": "spasme", + "article_with_word": "le spasme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spasm", + "example_sentence_native": "Il a eu un spasme musculaire douloureux.", + "example_sentence_english": "He had a painful muscle spasm.", + "pos": "noun", + "word_frequency": 22051 + }, + { + "word": "standardisation", + "article_with_word": "la standardisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standardization", + "example_sentence_native": "La standardisation des processus améliore l'efficacité.", + "example_sentence_english": "The standardization of processes improves efficiency.", + "pos": "noun", + "word_frequency": 22052 + }, + { + "word": "suzerain", + "article_with_word": "le suzerain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suzerain;overlord", + "example_sentence_native": "Le suzerain exerçait son autorité sur ses vassaux.", + "example_sentence_english": "The suzerain exercised his authority over his vassals.", + "pos": "noun", + "word_frequency": 22056 + }, + { + "word": "tapa", + "article_with_word": "la tapa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tapa (Spanish appetizer)", + "example_sentence_native": "Nous avons commandé plusieurs tapas pour le dîner.", + "example_sentence_english": "We ordered several tapas for dinner.", + "pos": "noun", + "word_frequency": 22060 + }, + { + "word": "thermostat", + "article_with_word": "le thermostat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thermostat", + "example_sentence_native": "J'ai réglé le thermostat à 20 degrés.", + "example_sentence_english": "I set the thermostat to 20 degrees.", + "pos": "noun", + "word_frequency": 22062 + }, + { + "word": "tonus", + "article_with_word": "le tonus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tone;vigor;energy", + "example_sentence_native": "Il a retrouvé tout son tonus après les vacances.", + "example_sentence_english": "He regained all his energy after the holidays.", + "pos": "noun", + "word_frequency": 22063 + }, + { + "word": "translucide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "translucent", + "example_sentence_native": "Le verre dépoli est translucide.", + "example_sentence_english": "Frosted glass is translucent.", + "pos": "adjective", + "word_frequency": 22064 + }, + { + "word": "tricheur", + "article_with_word": "un tricheur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheater", + "example_sentence_native": "Le professeur a attrapé un tricheur pendant l'examen.", + "example_sentence_english": "The teacher caught a cheater during the exam.", + "pos": "noun", + "word_frequency": 22065 + }, + { + "word": "triton", + "article_with_word": "le triton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newt (amphibian);triton (mythology)", + "example_sentence_native": "On a vu un triton dans la mare.", + "example_sentence_english": "We saw a newt in the pond.", + "pos": "noun", + "word_frequency": 22066 + }, + { + "word": "trombone", + "article_with_word": "le trombone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paperclip;trombone (musical instrument)", + "example_sentence_native": "J'ai utilisé un trombone pour tenir les feuilles ensemble.", + "example_sentence_english": "I used a paperclip to hold the sheets together.", + "pos": "noun", + "word_frequency": 22067 + }, + { + "word": "truand", + "article_with_word": "le truand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thug;crook;gangster", + "example_sentence_native": "La police a arrêté un truand recherché.", + "example_sentence_english": "The police arrested a wanted crook.", + "pos": "noun", + "word_frequency": 22068 + }, + { + "word": "télépathie", + "article_with_word": "la télépathie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "telepathy", + "example_sentence_native": "La télépathie est la communication de pensée à pensée.", + "example_sentence_english": "Telepathy is communication from mind to mind.", + "pos": "noun", + "word_frequency": 22069 + }, + { + "word": "vitré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glazed;glassed", + "example_sentence_native": "La porte vitrée laisse entrer beaucoup de lumière.", + "example_sentence_english": "The glazed door lets in a lot of light.", + "pos": "adjective", + "word_frequency": 22073 + }, + { + "word": "y avoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be (there is;are)", + "example_sentence_native": "Il y a un livre sur la table.", + "example_sentence_english": "There is a book on the table.", + "pos": "verb", + "word_frequency": 22077 + }, + { + "word": "éperon", + "article_with_word": "l'éperon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spur", + "example_sentence_native": "Le cavalier a mis ses éperons pour faire avancer le cheval.", + "example_sentence_english": "The rider put on his spurs to make the horse go forward.", + "pos": "noun", + "word_frequency": 22080 + }, + { + "word": "équerre", + "article_with_word": "l'équerre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "set square", + "example_sentence_native": "J'ai utilisé une équerre pour tracer un angle droit.", + "example_sentence_english": "I used a set square to draw a right angle.", + "pos": "noun", + "word_frequency": 22081 + }, + { + "word": "abordage", + "article_with_word": "l'abordage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boarding;collision", + "example_sentence_native": "Le navire a subi un abordage violent pendant la tempête.", + "example_sentence_english": "The ship suffered a violent collision during the storm.", + "pos": "noun", + "word_frequency": 22082 + }, + { + "word": "accoster", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dock;to moor;to accost", + "example_sentence_native": "Le bateau a accosté au quai.", + "example_sentence_english": "The boat docked at the quay.", + "pos": "verb", + "word_frequency": 22083 + }, + { + "word": "accréditer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accredit;to authorize", + "example_sentence_native": "L'université a accrédité le nouveau programme d'études.", + "example_sentence_english": "The university accredited the new study program.", + "pos": "verb", + "word_frequency": 22084 + }, + { + "word": "acrylique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acrylic", + "example_sentence_native": "Elle a peint un tableau avec de la peinture acrylique.", + "example_sentence_english": "She painted a picture with acrylic paint.", + "pos": "adjective", + "word_frequency": 22085 + }, + { + "word": "admiratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admiring", + "example_sentence_native": "Il était admiratif devant son talent.", + "example_sentence_english": "He was admiring of her talent.", + "pos": "adjective", + "word_frequency": 22086 + }, + { + "word": "adéquatement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adequately", + "example_sentence_native": "Il faut répondre adéquatement à toutes les questions.", + "example_sentence_english": "One must answer all questions adequately.", + "pos": "adverb", + "word_frequency": 22087 + }, + { + "word": "apostrophe", + "article_with_word": "l'apostrophe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apostrophe", + "example_sentence_native": "L'apostrophe est utilisée pour indiquer une élision.", + "example_sentence_english": "The apostrophe is used to indicate an elision.", + "pos": "noun", + "word_frequency": 22091 + }, + { + "word": "appris", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "learned;acquired", + "example_sentence_native": "C'est une leçon bien apprise.", + "example_sentence_english": "It's a well-learned lesson.", + "pos": "adjective", + "word_frequency": 22092 + }, + { + "word": "assouplir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to soften;to make flexible;to relax", + "example_sentence_native": "Il faut assouplir les règles pour faciliter l'accès.", + "example_sentence_english": "The rules must be relaxed to facilitate access.", + "pos": "verb", + "word_frequency": 22093 + }, + { + "word": "autours", + "article_with_word": "les autours", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "goshawks", + "example_sentence_native": "Les autours sont des rapaces agiles.", + "example_sentence_english": "Goshawks are agile birds of prey.", + "pos": "noun", + "word_frequency": 22096 + }, + { + "word": "aéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airy;well-ventilated", + "example_sentence_native": "Cette pièce est très aérée et lumineuse.", + "example_sentence_english": "This room is very airy and bright.", + "pos": "adjective", + "word_frequency": 22097 + }, + { + "word": "battage", + "article_with_word": "le battage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threshing;hype;beating", + "example_sentence_native": "Le battage du blé est une étape importante.", + "example_sentence_english": "The threshing of wheat is an important step.", + "pos": "noun", + "word_frequency": 22101 + }, + { + "word": "bette", + "article_with_word": "la bette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chard;Swiss chard", + "example_sentence_native": "J'ai planté des bettes dans mon jardin.", + "example_sentence_english": "I planted chard in my garden.", + "pos": "noun", + "word_frequency": 22103 + }, + { + "word": "biopsie", + "article_with_word": "la biopsie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biopsy", + "example_sentence_native": "Le médecin a recommandé une biopsie pour analyser le tissu.", + "example_sentence_english": "The doctor recommended a biopsy to analyze the tissue.", + "pos": "noun", + "word_frequency": 22104 + }, + { + "word": "biosphère", + "article_with_word": "la biosphère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biosphere", + "example_sentence_native": "La biosphère est l'ensemble des écosystèmes de la Terre.", + "example_sentence_english": "The biosphere is the set of Earth's ecosystems.", + "pos": "noun", + "word_frequency": 22105 + }, + { + "word": "bourbier", + "article_with_word": "le bourbier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quagmire;mire;mess", + "example_sentence_native": "La voiture s'est enlisée dans le bourbier.", + "example_sentence_english": "The car got stuck in the quagmire.", + "pos": "noun", + "word_frequency": 22108 + }, + { + "word": "buveur", + "article_with_word": "le buveur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drinker", + "example_sentence_native": "C'est un grand buveur de café.", + "example_sentence_english": "He's a big coffee drinker.", + "pos": "noun", + "word_frequency": 22113 + }, + { + "word": "cadré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framed;well-structured;disciplined", + "example_sentence_native": "La photo est parfaitement cadrée.", + "example_sentence_english": "The photo is perfectly framed.", + "pos": "adjective", + "word_frequency": 22115 + }, + { + "word": "cameraman", + "article_with_word": "le cameraman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cameraman", + "example_sentence_native": "Le cameraman a filmé toute la scène.", + "example_sentence_english": "The cameraman filmed the entire scene.", + "pos": "noun", + "word_frequency": 22116 + }, + { + "word": "canari", + "article_with_word": "le canari", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canary", + "example_sentence_native": "Mon grand-père a un joli canari jaune.", + "example_sentence_english": "My grandfather has a pretty yellow canary.", + "pos": "noun", + "word_frequency": 22117 + }, + { + "word": "candeur", + "article_with_word": "la candeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candor;innocence", + "example_sentence_native": "Sa candeur était désarmante.", + "example_sentence_english": "Her candor was disarming.", + "pos": "noun", + "word_frequency": 22118 + }, + { + "word": "cannibalisme", + "article_with_word": "le cannibalisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cannibalism", + "example_sentence_native": "Le cannibalisme est une pratique rare et taboue.", + "example_sentence_english": "Cannibalism is a rare and taboo practice.", + "pos": "noun", + "word_frequency": 22119 + }, + { + "word": "cannon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannon", + "example_sentence_native": "Le canon a tiré un coup puissant.", + "example_sentence_english": "The cannon fired a powerful shot.", + "pos": "noun", + "word_frequency": 22120 + }, + { + "word": "captivant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captivating", + "example_sentence_native": "Ce film est vraiment captivant du début à la fin.", + "example_sentence_english": "This film is truly captivating from beginning to end.", + "pos": "adjective", + "word_frequency": 22121 + }, + { + "word": "carafe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carafe", + "example_sentence_native": "Veuillez remplir la carafe d'eau, s'il vous plaît.", + "example_sentence_english": "Please fill the carafe with water.", + "pos": "noun", + "word_frequency": 22122 + }, + { + "word": "chimiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemically", + "example_sentence_native": "Ce produit est chimiquement stable.", + "example_sentence_english": "This product is chemically stable.", + "pos": "adverb", + "word_frequency": 22127 + }, + { + "word": "coagulation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coagulation", + "example_sentence_native": "La coagulation du sang est un processus vital.", + "example_sentence_english": "Blood coagulation is a vital process.", + "pos": "noun", + "word_frequency": 22128 + }, + { + "word": "complaisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complacent", + "example_sentence_native": "Il a une attitude trop complaisante face aux problèmes.", + "example_sentence_english": "He has too complacent an attitude towards problems.", + "pos": "adjective", + "word_frequency": 22131 + }, + { + "word": "conciergerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concierge service", + "example_sentence_native": "La conciergerie de l'hôtel est ouverte 24h/24.", + "example_sentence_english": "The hotel's concierge service is open 24/7.", + "pos": "noun", + "word_frequency": 22132 + }, + { + "word": "condamnable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condemnable", + "example_sentence_native": "Son comportement est absolument condamnable.", + "example_sentence_english": "His behavior is absolutely reprehensible.", + "pos": "adjective", + "word_frequency": 22133 + }, + { + "word": "consignation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consignment", + "example_sentence_native": "Les bagages sont en consignation à la gare.", + "example_sentence_english": "The luggage is in storage at the station.", + "pos": "noun", + "word_frequency": 22135 + }, + { + "word": "consulté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consulted", + "example_sentence_native": "Le document consulté est très ancien.", + "example_sentence_english": "The consulted document is very old.", + "pos": "adjective", + "word_frequency": 22136 + }, + { + "word": "contremaître", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foreman", + "example_sentence_native": "Le contremaître a donné les instructions pour la journée.", + "example_sentence_english": "The foreman gave the instructions for the day.", + "pos": "noun", + "word_frequency": 22137 + }, + { + "word": "contumace", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "contumacy", + "example_sentence_native": "Il a été jugé par contumace.", + "example_sentence_english": "He was tried in absentia.", + "pos": "noun", + "word_frequency": 22138 + }, + { + "word": "coroner", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coroner", + "example_sentence_native": "Le coroner a examiné les preuves.", + "example_sentence_english": "The coroner examined the evidence.", + "pos": "noun", + "word_frequency": 22139 + }, + { + "word": "dissection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissection", + "example_sentence_native": "La dissection d'une grenouille est courante en biologie.", + "example_sentence_english": "Frog dissection is common in biology.", + "pos": "noun", + "word_frequency": 22146 + }, + { + "word": "déballer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unwrap", + "example_sentence_native": "Il est temps de déballer les cadeaux.", + "example_sentence_english": "It's time to unwrap the presents.", + "pos": "verb", + "word_frequency": 22149 + }, + { + "word": "débusquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flush out", + "example_sentence_native": "Les policiers ont réussi à débusquer le suspect.", + "example_sentence_english": "The police managed to flush out the suspect.", + "pos": "verb", + "word_frequency": 22151 + }, + { + "word": "déchirant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heart-rending", + "example_sentence_native": "C'était une scène déchirante.", + "example_sentence_english": "It was a heart-rending scene.", + "pos": "adjective", + "word_frequency": 22152 + }, + { + "word": "décrier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decry", + "example_sentence_native": "Il n'a cessé de décrier les nouvelles mesures.", + "example_sentence_english": "He kept decrying the new measures.", + "pos": "verb", + "word_frequency": 22153 + }, + { + "word": "dématérialisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dematerialization", + "example_sentence_native": "La dématérialisation des documents est en cours.", + "example_sentence_english": "The digitization of documents is underway.", + "pos": "noun", + "word_frequency": 22154 + }, + { + "word": "démesure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess", + "example_sentence_native": "Son ambition était d'une démesure effrayante.", + "example_sentence_english": "His ambition was of frightening excess.", + "pos": "noun", + "word_frequency": 22155 + }, + { + "word": "dérailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to derail", + "example_sentence_native": "Le train a déraillé à cause de la neige.", + "example_sentence_english": "The train derailed because of the snow.", + "pos": "verb", + "word_frequency": 22156 + }, + { + "word": "désapprobation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disapproval", + "example_sentence_native": "Elle a exprimé sa désapprobation par un soupir.", + "example_sentence_english": "She expressed her disapproval with a sigh.", + "pos": "noun", + "word_frequency": 22157 + }, + { + "word": "désistement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "withdrawal", + "example_sentence_native": "Le désistement de sa candidature a surpris tout le monde.", + "example_sentence_english": "The withdrawal of his candidacy surprised everyone.", + "pos": "noun", + "word_frequency": 22158 + }, + { + "word": "effleurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to brush lightly;to graze", + "example_sentence_native": "Il a effleuré sa main en passant.", + "example_sentence_english": "He lightly brushed her hand as he passed.", + "pos": "verb", + "word_frequency": 22160 + }, + { + "word": "embolie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embolism", + "example_sentence_native": "Il a été hospitalisé pour une embolie pulmonaire.", + "example_sentence_english": "He was hospitalized for a pulmonary embolism.", + "pos": "noun", + "word_frequency": 22164 + }, + { + "word": "encourageant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouraging", + "example_sentence_native": "Ses résultats sont très encourageants.", + "example_sentence_english": "His results are very encouraging.", + "pos": "adjective", + "word_frequency": 22166 + }, + { + "word": "exempté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exempted;excused", + "example_sentence_native": "Il a été exempté de service militaire.", + "example_sentence_english": "He was exempted from military service.", + "pos": "adjective", + "word_frequency": 22168 + }, + { + "word": "exorciste", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exorcist", + "example_sentence_native": "Le film parle d'un exorciste célèbre.", + "example_sentence_english": "The film is about a famous exorcist.", + "pos": "noun", + "word_frequency": 22169 + }, + { + "word": "exutoire", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outlet;vent", + "example_sentence_native": "Le sport est un bon exutoire pour le stress.", + "example_sentence_english": "Sport is a good outlet for stress.", + "pos": "noun", + "word_frequency": 22170 + }, + { + "word": "fiducie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "trust (legal;financial)", + "example_sentence_native": "La fiducie est un instrument juridique complexe.", + "example_sentence_english": "The trust is a complex legal instrument.", + "pos": "noun", + "word_frequency": 22171 + }, + { + "word": "filament", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filament", + "example_sentence_native": "Le filament de l'ampoule est cassé.", + "example_sentence_english": "The light bulb's filament is broken.", + "pos": "noun", + "word_frequency": 22173 + }, + { + "word": "filant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "streaking;shooting (as in a star)", + "example_sentence_native": "Nous avons vu une étoile filante la nuit dernière.", + "example_sentence_english": "We saw a shooting star last night.", + "pos": "adjective", + "word_frequency": 22174 + }, + { + "word": "finalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finalization;completion", + "example_sentence_native": "La finalisation du projet est prévue pour la semaine prochaine.", + "example_sentence_english": "The finalization of the project is scheduled for next week.", + "pos": "noun", + "word_frequency": 22175 + }, + { + "word": "fluor", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluorine", + "example_sentence_native": "Le fluor est utilisé dans le dentifrice.", + "example_sentence_english": "Fluorine is used in toothpaste.", + "pos": "noun", + "word_frequency": 22178 + }, + { + "word": "fracasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smash;to shatter", + "example_sentence_native": "Il a fracassé la vitre avec une pierre.", + "example_sentence_english": "He smashed the window with a stone.", + "pos": "verb", + "word_frequency": 22179 + }, + { + "word": "frire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fry", + "example_sentence_native": "J'aime frire les pommes de terre.", + "example_sentence_english": "I like to fry potatoes.", + "pos": "verb", + "word_frequency": 22180 + }, + { + "word": "garrot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tourniquet", + "example_sentence_native": "Il a appliqué un garrot pour arrêter le saignement.", + "example_sentence_english": "He applied a tourniquet to stop the bleeding.", + "pos": "noun", + "word_frequency": 22182 + }, + { + "word": "gazole", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diesel fuel", + "example_sentence_native": "Ma voiture roule au gazole.", + "example_sentence_english": "My car runs on diesel fuel.", + "pos": "noun", + "word_frequency": 22183 + }, + { + "word": "grammatical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grammatical", + "example_sentence_native": "C'est une erreur grammaticale courante.", + "example_sentence_english": "It's a common grammatical error.", + "pos": "adjective", + "word_frequency": 22192 + }, + { + "word": "gravat", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubble;debris", + "example_sentence_native": "Les gravats ont été retirés du chantier.", + "example_sentence_english": "The rubble was removed from the construction site.", + "pos": "noun", + "word_frequency": 22193 + }, + { + "word": "griffon", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "griffin (mythical creature);griffon (dog breed)", + "example_sentence_native": "Le griffon est une créature mythologique.", + "example_sentence_english": "The griffin is a mythological creature.", + "pos": "noun", + "word_frequency": 22195 + }, + { + "word": "gémir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to groan;to moan", + "example_sentence_native": "Le patient a commencé à gémir de douleur.", + "example_sentence_english": "The patient started to groan in pain.", + "pos": "verb", + "word_frequency": 22197 + }, + { + "word": "hipster", + "article_with_word": "le hipster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hipster", + "example_sentence_native": "Il y a beaucoup de hipsters dans ce quartier branché.", + "example_sentence_english": "There are many hipsters in this trendy neighborhood.", + "pos": "noun", + "word_frequency": 22206 + }, + { + "word": "homélie", + "article_with_word": "l'homélie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homily;sermon", + "example_sentence_native": "Le prêtre a prononcé une longue homélie.", + "example_sentence_english": "The priest delivered a long homily.", + "pos": "noun", + "word_frequency": 22207 + }, + { + "word": "hublot", + "article_with_word": "le hublot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porthole;window (on a plane;ship)", + "example_sentence_native": "Regardez par le hublot, la vue est magnifique.", + "example_sentence_english": "Look through the porthole, the view is magnificent.", + "pos": "noun", + "word_frequency": 22209 + }, + { + "word": "hâtif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hasty;premature;early", + "example_sentence_native": "Il a pris une décision hâtive sans réfléchir.", + "example_sentence_english": "He made a hasty decision without thinking.", + "pos": "adjective", + "word_frequency": 22210 + }, + { + "word": "impacter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impact;to affect", + "example_sentence_native": "Cette nouvelle loi va impacter de nombreuses entreprises.", + "example_sentence_english": "This new law will impact many businesses.", + "pos": "verb", + "word_frequency": 22212 + }, + { + "word": "indubitablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undoubtedly;unquestionably", + "example_sentence_native": "Il est indubitablement le meilleur candidat pour ce poste.", + "example_sentence_english": "He is undoubtedly the best candidate for this position.", + "pos": "adverb", + "word_frequency": 22214 + }, + { + "word": "inexact", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inexact;inaccurate", + "example_sentence_native": "Ces informations sont inexactes, il faut les vérifier.", + "example_sentence_english": "This information is inaccurate, it needs to be checked.", + "pos": "adjective", + "word_frequency": 22215 + }, + { + "word": "inspectrice", + "article_with_word": "l'inspectrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspectress;female inspector", + "example_sentence_native": "L'inspectrice a vérifié tous les documents.", + "example_sentence_english": "The inspectress checked all the documents.", + "pos": "noun", + "word_frequency": 22216 + }, + { + "word": "instigation", + "article_with_word": "l'instigation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instigation;prompting", + "example_sentence_native": "Il a agi à l'instigation de son ami.", + "example_sentence_english": "He acted at the instigation of his friend.", + "pos": "noun", + "word_frequency": 22217 + }, + { + "word": "interposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interpose;to insert", + "example_sentence_native": "Il a dû interposer son corps pour protéger l'enfant.", + "example_sentence_english": "He had to interpose his body to protect the child.", + "pos": "verb", + "word_frequency": 22218 + }, + { + "word": "ionique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ionic", + "example_sentence_native": "La liaison ionique est un type de liaison chimique.", + "example_sentence_english": "Ionic bonding is a type of chemical bond.", + "pos": "adjective", + "word_frequency": 22220 + }, + { + "word": "irrecevable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inadmissible;unacceptable", + "example_sentence_native": "Son argument a été jugé irrecevable par le tribunal.", + "example_sentence_english": "His argument was deemed inadmissible by the court.", + "pos": "adjective", + "word_frequency": 22222 + }, + { + "word": "lag", + "article_with_word": "le lag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lag;delay", + "example_sentence_native": "Il y a un gros lag sur la connexion internet.", + "example_sentence_english": "There's a lot of lag on the internet connection.", + "pos": "noun", + "word_frequency": 22232 + }, + { + "word": "lambris", + "article_with_word": "le lambris", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wood paneling;wainscoting", + "example_sentence_native": "Le salon est décoré avec du lambris en bois clair.", + "example_sentence_english": "The living room is decorated with light wood paneling.", + "pos": "noun", + "word_frequency": 22233 + }, + { + "word": "lexical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lexical", + "example_sentence_native": "Il a une grande richesse lexicale.", + "example_sentence_english": "He has a great lexical richness.", + "pos": "adjective", + "word_frequency": 22234 + }, + { + "word": "liberte", + "article_with_word": "la liberté", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "freedom;liberty", + "example_sentence_native": "La liberté est un droit fondamental.", + "example_sentence_english": "Freedom is a fundamental right.", + "pos": "noun", + "word_frequency": 22235 + }, + { + "word": "lymphocyte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lymphocyte", + "example_sentence_native": "Les lymphocytes jouent un rôle clé dans le système immunitaire.", + "example_sentence_english": "Lymphocytes play a key role in the immune system.", + "pos": "noun", + "word_frequency": 22241 + }, + { + "word": "maladif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sickly;unhealthy", + "example_sentence_native": "Son teint maladif inquiétait ses parents.", + "example_sentence_english": "His sickly complexion worried his parents.", + "pos": "adjective", + "word_frequency": 22243 + }, + { + "word": "matador", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matador", + "example_sentence_native": "Le matador a affronté le taureau avec courage.", + "example_sentence_english": "The matador faced the bull with courage.", + "pos": "noun", + "word_frequency": 22246 + }, + { + "word": "millionaire", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millionaire", + "example_sentence_native": "Il est devenu millionnaire grâce à son entreprise.", + "example_sentence_english": "He became a millionaire thanks to his business.", + "pos": "noun", + "word_frequency": 22248 + }, + { + "word": "mixeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blender;mixer", + "example_sentence_native": "J'utilise le mixeur pour faire des smoothies.", + "example_sentence_english": "I use the blender to make smoothies.", + "pos": "noun", + "word_frequency": 22251 + }, + { + "word": "molette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scroll wheel;knob", + "example_sentence_native": "La molette de ma souris est cassée.", + "example_sentence_english": "My mouse's scroll wheel is broken.", + "pos": "noun", + "word_frequency": 22252 + }, + { + "word": "monotonie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monotony", + "example_sentence_native": "La monotonie de son travail le déprimait.", + "example_sentence_english": "The monotony of his work depressed him.", + "pos": "noun", + "word_frequency": 22254 + }, + { + "word": "mouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mold;to cast", + "example_sentence_native": "Il faut mouler l'argile avant de la cuire.", + "example_sentence_english": "You have to mold the clay before firing it.", + "pos": "verb", + "word_frequency": 22256 + }, + { + "word": "myopie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myopia;nearsightedness", + "example_sentence_native": "Sa myopie l'oblige à porter des lunettes.", + "example_sentence_english": "His myopia forces him to wear glasses.", + "pos": "noun", + "word_frequency": 22257 + }, + { + "word": "mélodrame", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melodrama", + "example_sentence_native": "Ce film est un véritable mélodrame avec beaucoup de rebondissements.", + "example_sentence_english": "This film is a true melodrama with many twists.", + "pos": "noun", + "word_frequency": 22259 + }, + { + "word": "nacre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mother-of-pearl", + "example_sentence_native": "Le bouton était fait de nacre irisée.", + "example_sentence_english": "The button was made of iridescent mother-of-pearl.", + "pos": "noun", + "word_frequency": 22260 + }, + { + "word": "nitro", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nitro (short for nitroglycerin;nitrous oxide;etc.)", + "example_sentence_native": "Il a ajouté du nitro à sa voiture de course pour plus de vitesse.", + "example_sentence_english": "He added nitro to his race car for more speed.", + "pos": "noun", + "word_frequency": 22262 + }, + { + "word": "normaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to normalize;to standardize", + "example_sentence_native": "Il faut normaliser les procédures pour plus d'efficacité.", + "example_sentence_english": "We need to normalize procedures for more efficiency.", + "pos": "verb", + "word_frequency": 22264 + }, + { + "word": "notablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notably;significantly", + "example_sentence_native": "La situation s'est améliorée notablement depuis l'année dernière.", + "example_sentence_english": "The situation has improved notably since last year.", + "pos": "adverb", + "word_frequency": 22266 + }, + { + "word": "obtempérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to obey;to comply", + "example_sentence_native": "Il a refusé d'obtempérer aux ordres de la police.", + "example_sentence_english": "He refused to obey the police orders.", + "pos": "verb", + "word_frequency": 22267 + }, + { + "word": "onirique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dreamlike;oneiric", + "example_sentence_native": "L'ambiance du film était très onirique et poétique.", + "example_sentence_english": "The atmosphere of the film was very dreamlike and poetic.", + "pos": "adjective", + "word_frequency": 22270 + }, + { + "word": "pancake", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pancake", + "example_sentence_native": "J'ai mangé des pancakes avec du sirop d'érable au petit-déjeuner.", + "example_sentence_english": "I ate pancakes with maple syrup for breakfast.", + "pos": "noun", + "word_frequency": 22272 + }, + { + "word": "papoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chat;to gossip", + "example_sentence_native": "Elles aiment papoter pendant des heures au café.", + "example_sentence_english": "They like to chat for hours at the cafe.", + "pos": "verb", + "word_frequency": 22273 + }, + { + "word": "parjure", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perjury;perjurer", + "example_sentence_native": "Il a été accusé de parjure devant le tribunal.", + "example_sentence_english": "He was accused of perjury in court.", + "pos": "noun", + "word_frequency": 22274 + }, + { + "word": "patelin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small town;village (informal)", + "example_sentence_native": "Il vient d'un petit patelin perdu dans la campagne.", + "example_sentence_english": "He comes from a small town lost in the countryside.", + "pos": "noun", + "word_frequency": 22275 + }, + { + "word": "peaufiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perfect;to fine-tune", + "example_sentence_native": "Il doit peaufiner les détails de son projet avant la présentation.", + "example_sentence_english": "He needs to fine-tune the details of his project before the presentation.", + "pos": "verb", + "word_frequency": 22277 + }, + { + "word": "pensant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinking;thoughtful", + "example_sentence_native": "C'est une personne très pensante, toujours en train de réfléchir.", + "example_sentence_english": "She is a very thoughtful person, always thinking.", + "pos": "adjective", + "word_frequency": 22278 + }, + { + "word": "peña", + "article_with_word": "la peña", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peña (club;group)", + "example_sentence_native": "La peña flamenca organise des soirées tous les vendredis.", + "example_sentence_english": "The flamenco club organizes evenings every Friday.", + "pos": "noun", + "word_frequency": 22280 + }, + { + "word": "philanthrope", + "article_with_word": "le philanthrope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philanthropist", + "example_sentence_native": "C'est un grand philanthrope qui a fait beaucoup pour la ville.", + "example_sentence_english": "He is a great philanthropist who has done a lot for the city.", + "pos": "noun", + "word_frequency": 22281 + }, + { + "word": "plomber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weigh down;to ruin", + "example_sentence_native": "Les mauvaises nouvelles ont plombé l'ambiance.", + "example_sentence_english": "The bad news weighed down the atmosphere.", + "pos": "verb", + "word_frequency": 22283 + }, + { + "word": "polémiste", + "article_with_word": "le polémiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polemicist", + "example_sentence_native": "Ce journaliste est un polémiste reconnu pour ses prises de position tranchées.", + "example_sentence_english": "This journalist is a polemicist known for his strong stances.", + "pos": "noun", + "word_frequency": 22284 + }, + { + "word": "proportionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proportion;to adjust", + "example_sentence_native": "Il faut proportionner les efforts aux résultats attendus.", + "example_sentence_english": "Efforts must be proportioned to the expected results.", + "pos": "verb", + "word_frequency": 22285 + }, + { + "word": "préconisation", + "article_with_word": "la préconisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recommendation;advice", + "example_sentence_native": "Le rapport contient des préconisations pour améliorer la sécurité.", + "example_sentence_english": "The report contains recommendations for improving safety.", + "pos": "noun", + "word_frequency": 22287 + }, + { + "word": "puissamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerfully", + "example_sentence_native": "Il a frappé le ballon puissamment.", + "example_sentence_english": "He hit the ball powerfully.", + "pos": "adverb", + "word_frequency": 22289 + }, + { + "word": "pénalisation", + "article_with_word": "la pénalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penalization;punishment", + "example_sentence_native": "La pénalisation de certains actes est nécessaire pour maintenir l'ordre.", + "example_sentence_english": "The penalization of certain acts is necessary to maintain order.", + "pos": "noun", + "word_frequency": 22291 + }, + { + "word": "quadruplé", + "article_with_word": "le quadruplé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadruple;four-goal haul (sports)", + "example_sentence_native": "L'attaquant a réalisé un quadruplé lors du match.", + "example_sentence_english": "The striker scored a quadruple (four goals) during the match.", + "pos": "noun", + "word_frequency": 22292 + }, + { + "word": "ramer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to row;to struggle (slang)", + "example_sentence_native": "Nous avons ramé pendant des heures pour atteindre l'île.", + "example_sentence_english": "We rowed for hours to reach the island.", + "pos": "verb", + "word_frequency": 22295 + }, + { + "word": "rendormir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall asleep again;to put back to sleep", + "example_sentence_native": "Après s'être réveillé, il a eu du mal à se rendormir.", + "example_sentence_english": "After waking up, he had trouble falling back asleep.", + "pos": "verb", + "word_frequency": 22297 + }, + { + "word": "rentier", + "article_with_word": "le rentier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rentier;person living on unearned income", + "example_sentence_native": "Il a vécu toute sa vie en rentier grâce à ses investissements.", + "example_sentence_english": "He lived his whole life as a rentier thanks to his investments.", + "pos": "noun", + "word_frequency": 22298 + }, + { + "word": "rétrospectivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrospectively", + "example_sentence_native": "Rétrospectivement, je n'aurais pas dû prendre cette décision.", + "example_sentence_english": "Retrospectively, I should not have made that decision.", + "pos": "adverb", + "word_frequency": 22303 + }, + { + "word": "saunier", + "article_with_word": "le saunier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "salt worker", + "example_sentence_native": "Le saunier récolte le sel dans les marais salants.", + "example_sentence_english": "The salt worker harvests salt in the salt marshes.", + "pos": "noun", + "word_frequency": 22307 + }, + { + "word": "soutif", + "article_with_word": "le soutif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bra (slang)", + "example_sentence_native": "Elle a acheté un nouveau soutif.", + "example_sentence_english": "She bought a new bra.", + "pos": "noun", + "word_frequency": 22312 + }, + { + "word": "spire", + "article_with_word": "la spire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spire;coil;turn", + "example_sentence_native": "La tour de l'église se termine par une fine spire.", + "example_sentence_english": "The church tower ends in a thin spire.", + "pos": "noun", + "word_frequency": 22313 + }, + { + "word": "subprime", + "article_with_word": "le subprime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subprime (loan)", + "example_sentence_native": "La crise des subprimes a eu un impact mondial.", + "example_sentence_english": "The subprime crisis had a global impact.", + "pos": "noun", + "word_frequency": 22314 + }, + { + "word": "substantif", + "article_with_word": "le substantif", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "noun (grammatical term)", + "example_sentence_native": "En grammaire, un substantif est un nom commun ou propre.", + "example_sentence_english": "In grammar, a noun is a common or proper name.", + "pos": "noun", + "word_frequency": 22315 + }, + { + "word": "swap", + "article_with_word": "le swap", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "swap (finance)", + "example_sentence_native": "Ils ont conclu un accord de swap de devises.", + "example_sentence_english": "They concluded a currency swap agreement.", + "pos": "noun", + "word_frequency": 22316 + }, + { + "word": "termite", + "article_with_word": "la termite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "termite", + "example_sentence_native": "Les termites peuvent causer de graves dommages aux structures en bois.", + "example_sentence_english": "Termites can cause serious damage to wooden structures.", + "pos": "noun", + "word_frequency": 22319 + }, + { + "word": "thermidor", + "article_with_word": "le thermidor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Thermidor (month;dish)", + "example_sentence_native": "Le coup d'État de Thermidor a mis fin à la Terreur.", + "example_sentence_english": "The Thermidorian coup d'état ended the Reign of Terror.", + "pos": "noun", + "word_frequency": 22320 + }, + { + "word": "tian", + "article_with_word": "le tian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tian (Provençal gratin)", + "example_sentence_native": "Nous avons préparé un délicieux tian de légumes du soleil.", + "example_sentence_english": "We prepared a delicious Provençal vegetable gratin.", + "pos": "noun", + "word_frequency": 22321 + }, + { + "word": "tragiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tragically", + "example_sentence_native": "L'histoire s'est terminée tragiquement.", + "example_sentence_english": "The story ended tragically.", + "pos": "adverb", + "word_frequency": 22322 + }, + { + "word": "triade", + "article_with_word": "la triade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triad", + "example_sentence_native": "La triade est un groupe de trois éléments liés.", + "example_sentence_english": "The triad is a group of three related elements.", + "pos": "noun", + "word_frequency": 22323 + }, + { + "word": "tutu", + "article_with_word": "le tutu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutu", + "example_sentence_native": "La danseuse portait un magnifique tutu blanc.", + "example_sentence_english": "The dancer wore a beautiful white tutu.", + "pos": "noun", + "word_frequency": 22327 + }, + { + "word": "vison", + "article_with_word": "le vison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mink", + "example_sentence_native": "Le vison est un petit mammifère carnivore.", + "example_sentence_english": "The mink is a small carnivorous mammal.", + "pos": "noun", + "word_frequency": 22330 + }, + { + "word": "zapping", + "article_with_word": "le zapping", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "channel surfing", + "example_sentence_native": "Le zapping est une activité courante devant la télévision.", + "example_sentence_english": "Channel surfing is a common activity in front of the television.", + "pos": "noun", + "word_frequency": 22333 + }, + { + "word": "zenith", + "article_with_word": "le zénith", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zenith", + "example_sentence_native": "Le soleil était à son zénith à midi.", + "example_sentence_english": "The sun was at its zenith at noon.", + "pos": "noun", + "word_frequency": 22334 + }, + { + "word": "ébriété", + "article_with_word": "l'ébriété", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drunkenness", + "example_sentence_native": "L'ébriété au volant est dangereuse.", + "example_sentence_english": "Drunkenness while driving is dangerous.", + "pos": "noun", + "word_frequency": 22336 + }, + { + "word": "éclaircie", + "article_with_word": "l'éclaircie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clearing (in weather);bright spell", + "example_sentence_native": "Après la pluie, il y a eu une belle éclaircie.", + "example_sentence_english": "After the rain, there was a beautiful bright spell.", + "pos": "noun", + "word_frequency": 22337 + }, + { + "word": "émerveiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to amaze;to marvel", + "example_sentence_native": "Le spectacle a émerveillé les enfants.", + "example_sentence_english": "The show amazed the children.", + "pos": "verb", + "word_frequency": 22338 + }, + { + "word": "épars", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scattered;sparse", + "example_sentence_native": "Les nuages étaient épars dans le ciel.", + "example_sentence_english": "The clouds were scattered in the sky.", + "pos": "adjective", + "word_frequency": 22340 + }, + { + "word": "abusivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abusively;improperly", + "example_sentence_native": "Il a utilisé son pouvoir abusivement.", + "example_sentence_english": "He used his power improperly.", + "pos": "adverb", + "word_frequency": 22342 + }, + { + "word": "affre", + "article_with_word": "l'affre", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dread;anguish", + "example_sentence_native": "Il a traversé les affres de la maladie.", + "example_sentence_english": "He went through the throes of illness.", + "pos": "noun", + "word_frequency": 22343 + }, + { + "word": "aguerrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to harden;to toughen;to make battle-hardened", + "example_sentence_native": "L'expérience l'a aguerri face aux difficultés.", + "example_sentence_english": "Experience has toughened him against difficulties.", + "pos": "verb", + "word_frequency": 22344 + }, + { + "word": "aliéner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to alienate;to transfer (property)", + "example_sentence_native": "Son comportement risque d'aliéner ses amis.", + "example_sentence_english": "His behavior risks alienating his friends.", + "pos": "verb", + "word_frequency": 22346 + }, + { + "word": "allégorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegorical", + "example_sentence_native": "Le roman a une signification allégorique profonde.", + "example_sentence_english": "The novel has a deep allegorical meaning.", + "pos": "adjective", + "word_frequency": 22347 + }, + { + "word": "alourdir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make heavier;to weigh down;to make cumbersome", + "example_sentence_native": "La neige a alourdi les branches des arbres.", + "example_sentence_english": "The snow weighed down the tree branches.", + "pos": "verb", + "word_frequency": 22348 + }, + { + "word": "ammonium", + "article_with_word": "l'ammonium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammonium", + "example_sentence_native": "Le chlorure d'ammonium est un sel.", + "example_sentence_english": "Ammonium chloride is a salt.", + "pos": "noun", + "word_frequency": 22350 + }, + { + "word": "assommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to knock out;to bore to death", + "example_sentence_native": "La chaleur m'a complètement assommé.", + "example_sentence_english": "The heat completely knocked me out.", + "pos": "verb", + "word_frequency": 22354 + }, + { + "word": "atrium", + "article_with_word": "l'atrium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atrium", + "example_sentence_native": "L'atrium de l'hôtel était très spacieux.", + "example_sentence_english": "The hotel's atrium was very spacious.", + "pos": "noun", + "word_frequency": 22357 + }, + { + "word": "attribuable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attributable", + "example_sentence_native": "Cette erreur est attribuable à un manque d'attention.", + "example_sentence_english": "This error is attributable to a lack of attention.", + "pos": "adjective", + "word_frequency": 22358 + }, + { + "word": "banaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trivialize", + "example_sentence_native": "Il ne faut pas banaliser la violence.", + "example_sentence_english": "We must not trivialize violence.", + "pos": "verb", + "word_frequency": 22362 + }, + { + "word": "banjo", + "article_with_word": "le banjo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "banjo", + "example_sentence_native": "Il joue du banjo dans un groupe de musique country.", + "example_sentence_english": "He plays the banjo in a country music band.", + "pos": "noun", + "word_frequency": 22363 + }, + { + "word": "basketteur", + "article_with_word": "le basketteur", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball player", + "example_sentence_native": "Le basketteur a marqué un panier à la dernière seconde.", + "example_sentence_english": "The basketball player scored a basket in the last second.", + "pos": "noun", + "word_frequency": 22367 + }, + { + "word": "bavardage", + "article_with_word": "le bavardage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chatter", + "example_sentence_native": "Le bavardage incessant de mes voisins m'agace.", + "example_sentence_english": "My neighbors' incessant chatter annoys me.", + "pos": "noun", + "word_frequency": 22368 + }, + { + "word": "belliqueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bellicose", + "example_sentence_native": "Son attitude belliqueuse a surpris tout le monde.", + "example_sentence_english": "His bellicose attitude surprised everyone.", + "pos": "adjective", + "word_frequency": 22369 + }, + { + "word": "bidule", + "article_with_word": "le bidule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thingamajig", + "example_sentence_native": "Passe-moi le bidule là-bas, s'il te plaît.", + "example_sentence_english": "Pass me that thingamajig over there, please.", + "pos": "noun", + "word_frequency": 22372 + }, + { + "word": "blazer", + "article_with_word": "le blazer", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blazer", + "example_sentence_native": "Il portait un élégant blazer bleu marine.", + "example_sentence_english": "He was wearing an elegant navy blue blazer.", + "pos": "noun", + "word_frequency": 22374 + }, + { + "word": "boomer", + "article_with_word": "le boomer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boomer", + "example_sentence_native": "Les jeunes utilisent souvent le terme 'boomer' pour désigner les générations plus âgées.", + "example_sentence_english": "Young people often use the term 'boomer' to refer to older generations.", + "pos": "noun", + "word_frequency": 22376 + }, + { + "word": "briguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to seek", + "example_sentence_native": "Il brigue un poste important au sein de l'entreprise.", + "example_sentence_english": "He is seeking an important position within the company.", + "pos": "verb", + "word_frequency": 22378 + }, + { + "word": "brocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bind (a book)", + "example_sentence_native": "Le livre est broché, pas relié.", + "example_sentence_english": "The book is paperback, not hardcover.", + "pos": "verb", + "word_frequency": 22379 + }, + { + "word": "bulldog", + "article_with_word": "le bulldog", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bulldog", + "example_sentence_native": "Mon voisin a un bulldog anglais très mignon.", + "example_sentence_english": "My neighbor has a very cute English bulldog.", + "pos": "noun", + "word_frequency": 22380 + }, + { + "word": "bécane", + "article_with_word": "la bécane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bike (slang)", + "example_sentence_native": "J'ai acheté une nouvelle bécane pour aller au travail.", + "example_sentence_english": "I bought a new bike to go to work.", + "pos": "noun", + "word_frequency": 22382 + }, + { + "word": "cannibale", + "article_with_word": "un cannibale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannibal", + "example_sentence_native": "Dans certains récits, on parle de tribus cannibales.", + "example_sentence_english": "In some stories, there is talk of cannibal tribes.", + "pos": "noun", + "word_frequency": 22384 + }, + { + "word": "caricatural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caricatural", + "example_sentence_native": "Son portrait était tellement caricatural qu'il en était méconnaissable.", + "example_sentence_english": "His portrait was so caricatural that he was unrecognizable.", + "pos": "adjective", + "word_frequency": 22386 + }, + { + "word": "cellulite", + "article_with_word": "la cellulite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cellulite", + "example_sentence_native": "Beaucoup de femmes cherchent des solutions contre la cellulite.", + "example_sentence_english": "Many women look for solutions against cellulite.", + "pos": "noun", + "word_frequency": 22389 + }, + { + "word": "chandelier", + "article_with_word": "le chandelier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chandelier", + "example_sentence_native": "Un magnifique chandelier pendait au centre de la pièce.", + "example_sentence_english": "A magnificent chandelier hung in the center of the room.", + "pos": "noun", + "word_frequency": 22391 + }, + { + "word": "chausser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put on (shoes)", + "example_sentence_native": "Il faut chausser ses bottes avant de sortir.", + "example_sentence_english": "You need to put on your boots before going out.", + "pos": "verb", + "word_frequency": 22392 + }, + { + "word": "chevauchée", + "article_with_word": "la chevauchée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ride", + "example_sentence_native": "La longue chevauchée à travers la forêt était épuisante.", + "example_sentence_english": "The long ride through the forest was exhausting.", + "pos": "noun", + "word_frequency": 22394 + }, + { + "word": "coexister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coexist", + "example_sentence_native": "Il est important que différentes cultures puissent coexister pacifiquement.", + "example_sentence_english": "It is important that different cultures can coexist peacefully.", + "pos": "verb", + "word_frequency": 22398 + }, + { + "word": "collabo", + "article_with_word": "le collabo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collaborator (derogatory)", + "example_sentence_native": "Pendant la guerre, le terme 'collabo' désignait ceux qui coopéraient avec l'ennemi.", + "example_sentence_english": "During the war, the term 'collabo' referred to those who cooperated with the enemy.", + "pos": "noun", + "word_frequency": 22399 + }, + { + "word": "commutation", + "article_with_word": "la commutation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commutation;switching", + "example_sentence_native": "La commutation de peine a été accordée au prisonnier.", + "example_sentence_english": "The commutation of sentence was granted to the prisoner.", + "pos": "noun", + "word_frequency": 22401 + }, + { + "word": "compostage", + "article_with_word": "le compostage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composting", + "example_sentence_native": "Le compostage des déchets organiques est bon pour l'environnement.", + "example_sentence_english": "Composting organic waste is good for the environment.", + "pos": "noun", + "word_frequency": 22402 + }, + { + "word": "concubine", + "article_with_word": "la concubine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concubine", + "example_sentence_native": "Dans certaines cultures anciennes, un homme pouvait avoir une concubine.", + "example_sentence_english": "In some ancient cultures, a man could have a concubine.", + "pos": "noun", + "word_frequency": 22403 + }, + { + "word": "consanguinité", + "article_with_word": "la consanguinité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consanguinity;inbreeding", + "example_sentence_native": "La consanguinité peut entraîner des problèmes génétiques.", + "example_sentence_english": "Consanguinity can lead to genetic problems.", + "pos": "noun", + "word_frequency": 22404 + }, + { + "word": "crade", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filthy;dirty (slang)", + "example_sentence_native": "Tes chaussures sont toutes crades après la randonnée.", + "example_sentence_english": "Your shoes are all filthy after the hike.", + "pos": "adjective", + "word_frequency": 22407 + }, + { + "word": "creuset", + "article_with_word": "le creuset", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crucible;melting pot", + "example_sentence_native": "Cette ville est un véritable creuset de cultures différentes.", + "example_sentence_english": "This city is a true melting pot of different cultures.", + "pos": "noun", + "word_frequency": 22408 + }, + { + "word": "crucifixion", + "article_with_word": "la crucifixion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucifixion", + "example_sentence_native": "La crucifixion est une méthode d'exécution ancienne.", + "example_sentence_english": "Crucifixion is an ancient method of execution.", + "pos": "noun", + "word_frequency": 22409 + }, + { + "word": "domotique", + "article_with_word": "la domotique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "home automation;smart home technology", + "example_sentence_native": "La domotique permet de contrôler sa maison à distance.", + "example_sentence_english": "Home automation allows you to control your house remotely.", + "pos": "noun", + "word_frequency": 22412 + }, + { + "word": "déconcertant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disconcerting;baffling", + "example_sentence_native": "Son silence était déconcertant.", + "example_sentence_english": "His silence was disconcerting.", + "pos": "adjective", + "word_frequency": 22415 + }, + { + "word": "dédoublement", + "article_with_word": "le dédoublement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "splitting;doubling;dissociation", + "example_sentence_native": "Le dédoublement de personnalité est un trouble psychologique.", + "example_sentence_english": "Dissociative identity disorder is a psychological disorder.", + "pos": "noun", + "word_frequency": 22416 + }, + { + "word": "démocratiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to democratize", + "example_sentence_native": "Il faut démocratiser l'accès à l'éducation.", + "example_sentence_english": "We must democratize access to education.", + "pos": "verb", + "word_frequency": 22417 + }, + { + "word": "engloutir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to engulf;to swallow up", + "example_sentence_native": "La mer a englouti le petit bateau.", + "example_sentence_english": "The sea engulfed the small boat.", + "pos": "verb", + "word_frequency": 22419 + }, + { + "word": "exaucer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant (a wish;prayer)", + "example_sentence_native": "J'espère que mon vœu sera exaucé.", + "example_sentence_english": "I hope my wish will be granted.", + "pos": "verb", + "word_frequency": 22423 + }, + { + "word": "exoplanète", + "article_with_word": "l'exoplanète", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exoplanet", + "example_sentence_native": "Les astronomes découvrent de nouvelles exoplanètes chaque année.", + "example_sentence_english": "Astronomers discover new exoplanets every year.", + "pos": "noun", + "word_frequency": 22424 + }, + { + "word": "feature", + "article_with_word": "le feature", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feature (as in a characteristic or function)", + "example_sentence_native": "Cette nouvelle application a des features très intéressantes.", + "example_sentence_english": "This new application has very interesting features.", + "pos": "noun", + "word_frequency": 22426 + }, + { + "word": "feedback", + "article_with_word": "le feedback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feedback", + "example_sentence_native": "J'attends votre feedback sur ma présentation.", + "example_sentence_english": "I'm waiting for your feedback on my presentation.", + "pos": "noun", + "word_frequency": 22427 + }, + { + "word": "flood", + "article_with_word": "le flood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flood (of messages;in online context)", + "example_sentence_native": "Arrête le flood sur le chat, s'il te plaît.", + "example_sentence_english": "Please stop flooding the chat.", + "pos": "noun", + "word_frequency": 22430 + }, + { + "word": "fourmilière", + "article_with_word": "la fourmilière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anthill;beehive (figurative for busy place)", + "example_sentence_native": "Le parc était une véritable fourmilière de monde.", + "example_sentence_english": "The park was a real anthill of people (a hive of activity).", + "pos": "noun", + "word_frequency": 22432 + }, + { + "word": "foutoir", + "article_with_word": "le foutoir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess;chaos (slang)", + "example_sentence_native": "Quelle foutoir dans ta chambre !", + "example_sentence_english": "What a mess in your room!", + "pos": "noun", + "word_frequency": 22433 + }, + { + "word": "franciscain", + "article_with_word": "le franciscain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Franciscan (friar)", + "example_sentence_native": "Un moine franciscain vit une vie de simplicité.", + "example_sentence_english": "A Franciscan monk lives a life of simplicity.", + "pos": "noun", + "word_frequency": 22434 + }, + { + "word": "frappeur", + "article_with_word": "le frappeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "batter;hitter", + "example_sentence_native": "Le frappeur a réussi un coup de circuit.", + "example_sentence_english": "The batter hit a home run.", + "pos": "noun", + "word_frequency": 22435 + }, + { + "word": "frauder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defraud;to cheat;to commit fraud", + "example_sentence_native": "Il a été accusé de frauder le fisc.", + "example_sentence_english": "He was accused of defrauding the tax authorities.", + "pos": "verb", + "word_frequency": 22436 + }, + { + "word": "friand", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fond (of);keen (on);gourmet (for food)", + "example_sentence_native": "Je suis très friand de chocolat noir.", + "example_sentence_english": "I am very fond of dark chocolate.", + "pos": "adjective", + "word_frequency": 22437 + }, + { + "word": "fuiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leak", + "example_sentence_native": "L'information a fuité dans la presse.", + "example_sentence_english": "The information leaked to the press.", + "pos": "verb", + "word_frequency": 22438 + }, + { + "word": "ganglion", + "article_with_word": "le ganglion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ganglion;lymph node", + "example_sentence_native": "Le médecin a palpé les ganglions du cou.", + "example_sentence_english": "The doctor palpated the lymph nodes in the neck.", + "pos": "noun", + "word_frequency": 22439 + }, + { + "word": "gantois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ghent (adjective);from Ghent", + "example_sentence_native": "La bière gantoise est très appréciée.", + "example_sentence_english": "Ghent beer is very popular.", + "pos": "adjective", + "word_frequency": 22440 + }, + { + "word": "habiliter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enable;to authorize;to qualify", + "example_sentence_native": "La loi habilite le gouvernement à prendre des mesures d'urgence.", + "example_sentence_english": "The law authorizes the government to take emergency measures.", + "pos": "verb", + "word_frequency": 22449 + }, + { + "word": "impressionniste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Impressionist", + "example_sentence_native": "Monet était un grand impressionniste.", + "example_sentence_english": "Monet was a great Impressionist.", + "pos": "noun", + "word_frequency": 22457 + }, + { + "word": "incivilité", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incivility;rudeness", + "example_sentence_native": "Les incivilités sont en augmentation dans les transports en commun.", + "example_sentence_english": "Incivilities are increasing in public transport.", + "pos": "noun", + "word_frequency": 22458 + }, + { + "word": "inexorable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexorable;relentless", + "example_sentence_native": "Le temps passe de manière inexorable.", + "example_sentence_english": "Time passes inexorably.", + "pos": "adjective", + "word_frequency": 22459 + }, + { + "word": "inventivité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventiveness;ingenuity", + "example_sentence_native": "Son inventivité est remarquable pour résoudre les problèmes.", + "example_sentence_english": "His inventiveness is remarkable for solving problems.", + "pos": "noun", + "word_frequency": 22460 + }, + { + "word": "juron", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swear word;oath", + "example_sentence_native": "Il a laissé échapper un juron après s'être cogné le pied.", + "example_sentence_english": "He let out a swear word after hitting his foot.", + "pos": "noun", + "word_frequency": 22465 + }, + { + "word": "kermesse", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fete;fair;carnival", + "example_sentence_native": "L'école organise une kermesse chaque année.", + "example_sentence_english": "The school organizes a fete every year.", + "pos": "noun", + "word_frequency": 22469 + }, + { + "word": "kippa", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kippah;yarmulke", + "example_sentence_native": "Il portait une kippa lors de la cérémonie.", + "example_sentence_english": "He wore a kippah during the ceremony.", + "pos": "noun", + "word_frequency": 22470 + }, + { + "word": "letton", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latvian (person);Latvian (language)", + "example_sentence_native": "Il parle letton couramment.", + "example_sentence_english": "He speaks Latvian fluently.", + "pos": "noun", + "word_frequency": 22476 + }, + { + "word": "lotte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monkfish;anglerfish", + "example_sentence_native": "J'ai commandé de la lotte au restaurant.", + "example_sentence_english": "I ordered monkfish at the restaurant.", + "pos": "noun", + "word_frequency": 22477 + }, + { + "word": "luth", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lute", + "example_sentence_native": "Le luth est un instrument à cordes ancien.", + "example_sentence_english": "The lute is an ancient string instrument.", + "pos": "noun", + "word_frequency": 22479 + }, + { + "word": "lèpre", + "article_with_word": "la lèpre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leprosy", + "example_sentence_native": "La lèpre est une maladie infectieuse chronique.", + "example_sentence_english": "Leprosy is a chronic infectious disease.", + "pos": "noun", + "word_frequency": 22481 + }, + { + "word": "machination", + "article_with_word": "la machination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machination", + "example_sentence_native": "Ils ont découvert une machination complexe derrière l'affaire.", + "example_sentence_english": "They discovered a complex machination behind the affair.", + "pos": "noun", + "word_frequency": 22482 + }, + { + "word": "malbouffe", + "article_with_word": "la malbouffe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junk food", + "example_sentence_native": "La malbouffe est mauvaise pour la santé.", + "example_sentence_english": "Junk food is bad for your health.", + "pos": "noun", + "word_frequency": 22484 + }, + { + "word": "manip", + "article_with_word": "la manip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulation (informal)", + "example_sentence_native": "C'est une grosse manip pour nous faire croire ça.", + "example_sentence_english": "It's a big manipulation to make us believe that.", + "pos": "noun", + "word_frequency": 22486 + }, + { + "word": "mensuellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly", + "example_sentence_native": "Il reçoit son salaire mensuellement.", + "example_sentence_english": "He receives his salary monthly.", + "pos": "adverb", + "word_frequency": 22492 + }, + { + "word": "mic", + "article_with_word": "le mic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mic (microphone)", + "example_sentence_native": "Passe-moi le mic, je veux parler.", + "example_sentence_english": "Pass me the mic, I want to speak.", + "pos": "noun", + "word_frequency": 22494 + }, + { + "word": "minutie", + "article_with_word": "la minutie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulousness;thoroughness", + "example_sentence_native": "Il travaille avec une grande minutie.", + "example_sentence_english": "He works with great meticulousness.", + "pos": "noun", + "word_frequency": 22495 + }, + { + "word": "moralisation", + "article_with_word": "la moralisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moralization", + "example_sentence_native": "La moralisation de la vie publique est un enjeu important.", + "example_sentence_english": "The moralization of public life is an important issue.", + "pos": "noun", + "word_frequency": 22497 + }, + { + "word": "myocarde", + "article_with_word": "le myocarde", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "myocardium", + "example_sentence_native": "L'infarctus du myocarde est une urgence médicale.", + "example_sentence_english": "Myocardial infarction is a medical emergency.", + "pos": "noun", + "word_frequency": 22499 + }, + { + "word": "méprendre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be mistaken;to misunderstand", + "example_sentence_native": "Ne vous méprenez pas sur mes intentions.", + "example_sentence_english": "Don't be mistaken about my intentions.", + "pos": "verb", + "word_frequency": 22501 + }, + { + "word": "méticuleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous", + "example_sentence_native": "Il est très méticuleux dans son travail.", + "example_sentence_english": "He is very meticulous in his work.", + "pos": "adjective", + "word_frequency": 22503 + }, + { + "word": "netteté", + "article_with_word": "la netteté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharpness;clarity", + "example_sentence_native": "La netteté de l'image est impressionnante.", + "example_sentence_english": "The sharpness of the image is impressive.", + "pos": "noun", + "word_frequency": 22505 + }, + { + "word": "ordonnée", + "article_with_word": "l'ordonnée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordinate;y-coordinate", + "example_sentence_native": "L'ordonnée du point A est 5.", + "example_sentence_english": "The ordinate of point A is 5.", + "pos": "noun", + "word_frequency": 22509 + }, + { + "word": "orfèvrerie", + "article_with_word": "l'orfèvrerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "goldsmithing;silverware", + "example_sentence_native": "Cette pièce d'orfèvrerie est magnifique.", + "example_sentence_english": "This piece of goldsmithing is magnificent.", + "pos": "noun", + "word_frequency": 22510 + }, + { + "word": "pagode", + "article_with_word": "la pagode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pagoda", + "example_sentence_native": "Nous avons visité une ancienne pagode au Japon.", + "example_sentence_english": "We visited an ancient pagoda in Japan.", + "pos": "noun", + "word_frequency": 22512 + }, + { + "word": "pavot", + "article_with_word": "le pavot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poppy", + "example_sentence_native": "Les champs de pavot sont très colorés en été.", + "example_sentence_english": "Poppy fields are very colorful in summer.", + "pos": "noun", + "word_frequency": 22515 + }, + { + "word": "paver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pave", + "example_sentence_native": "Ils vont paver l'allée du jardin.", + "example_sentence_english": "They are going to pave the garden path.", + "pos": "verb", + "word_frequency": 22516 + }, + { + "word": "perfectionniste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfectionist", + "example_sentence_native": "Elle est très perfectionniste dans tout ce qu'elle fait.", + "example_sentence_english": "She is very perfectionist in everything she does.", + "pos": "adjective", + "word_frequency": 22517 + }, + { + "word": "perforé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perforated", + "example_sentence_native": "Le papier est perforé pour être rangé dans un classeur.", + "example_sentence_english": "The paper is perforated to be stored in a binder.", + "pos": "adjective", + "word_frequency": 22518 + }, + { + "word": "phénoménologie", + "article_with_word": "la phénoménologie", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "phenomenology", + "example_sentence_native": "La phénoménologie est une branche de la philosophie.", + "example_sentence_english": "Phenomenology is a branch of philosophy.", + "pos": "noun", + "word_frequency": 22519 + }, + { + "word": "polyester", + "article_with_word": "le polyester", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polyester", + "example_sentence_native": "Cette chemise est faite en polyester.", + "example_sentence_english": "This shirt is made of polyester.", + "pos": "noun", + "word_frequency": 22520 + }, + { + "word": "portatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portable", + "example_sentence_native": "J'ai acheté un ordinateur portable.", + "example_sentence_english": "I bought a portable computer.", + "pos": "adjective", + "word_frequency": 22521 + }, + { + "word": "poulie", + "article_with_word": "la poulie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulley", + "example_sentence_native": "La poulie aide à soulever des charges lourdes.", + "example_sentence_english": "The pulley helps to lift heavy loads.", + "pos": "noun", + "word_frequency": 22522 + }, + { + "word": "presto", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quickly;presto", + "example_sentence_native": "Le magicien a fait disparaître la carte presto.", + "example_sentence_english": "The magician made the card disappear presto.", + "pos": "adverb", + "word_frequency": 22526 + }, + { + "word": "prédation", + "article_with_word": "la prédation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predation", + "example_sentence_native": "La prédation est un élément clé de l'équilibre écologique.", + "example_sentence_english": "Predation is a key element of ecological balance.", + "pos": "noun", + "word_frequency": 22527 + }, + { + "word": "prédisposition", + "article_with_word": "la prédisposition", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predisposition", + "example_sentence_native": "Il a une prédisposition génétique à cette maladie.", + "example_sentence_english": "He has a genetic predisposition to this disease.", + "pos": "noun", + "word_frequency": 22528 + }, + { + "word": "psychotique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotic", + "example_sentence_native": "Le patient présentait des symptômes psychotiques.", + "example_sentence_english": "The patient presented psychotic symptoms.", + "pos": "adjective", + "word_frequency": 22529 + }, + { + "word": "pédaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pedal", + "example_sentence_native": "Il aime pédaler le long de la rivière.", + "example_sentence_english": "He likes to pedal along the river.", + "pos": "verb", + "word_frequency": 22530 + }, + { + "word": "pêcherie", + "article_with_word": "la pêcherie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fishery", + "example_sentence_native": "La pêcherie locale est une source importante de revenus.", + "example_sentence_english": "The local fishery is an important source of income.", + "pos": "noun", + "word_frequency": 22531 + }, + { + "word": "ragoût", + "article_with_word": "le ragoût", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stew", + "example_sentence_native": "J'ai préparé un délicieux ragoût de bœuf.", + "example_sentence_english": "I prepared a delicious beef stew.", + "pos": "noun", + "word_frequency": 22533 + }, + { + "word": "redorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to re-gild;to restore (reputation)", + "example_sentence_native": "Il a essayé de redorer son blason après le scandale.", + "example_sentence_english": "He tried to restore his reputation after the scandal.", + "pos": "verb", + "word_frequency": 22534 + }, + { + "word": "relativisme", + "article_with_word": "le relativisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relativism", + "example_sentence_native": "Le relativisme moral est un sujet de débat.", + "example_sentence_english": "Moral relativism is a subject of debate.", + "pos": "noun", + "word_frequency": 22535 + }, + { + "word": "relâché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relaxed;loose;slack", + "example_sentence_native": "Son attitude était très relâchée.", + "example_sentence_english": "His attitude was very relaxed.", + "pos": "adjective", + "word_frequency": 22536 + }, + { + "word": "rengaine", + "article_with_word": "la rengaine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old tune;same old story", + "example_sentence_native": "C'est toujours la même rengaine avec lui.", + "example_sentence_english": "It's always the same old story with him.", + "pos": "noun", + "word_frequency": 22537 + }, + { + "word": "râpé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grated;worn out", + "example_sentence_native": "J'ai ajouté du fromage râpé sur mes pâtes.", + "example_sentence_english": "I added grated cheese to my pasta.", + "pos": "adjective", + "word_frequency": 22539 + }, + { + "word": "réglo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "by the book;fair and square (informal)", + "example_sentence_native": "Il est toujours réglo dans ses affaires.", + "example_sentence_english": "He's always by the book in his dealings.", + "pos": "adjective", + "word_frequency": 22540 + }, + { + "word": "réinvestir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reinvest", + "example_sentence_native": "Ils ont décidé de réinvestir leurs bénéfices.", + "example_sentence_english": "They decided to reinvest their profits.", + "pos": "verb", + "word_frequency": 22541 + }, + { + "word": "saignement", + "article_with_word": "le saignement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bleeding", + "example_sentence_native": "Il faut arrêter le saignement rapidement.", + "example_sentence_english": "The bleeding must be stopped quickly.", + "pos": "noun", + "word_frequency": 22542 + }, + { + "word": "simili", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imitation;synthetic", + "example_sentence_native": "J'ai acheté un sac en simili-cuir.", + "example_sentence_english": "I bought a faux leather bag.", + "pos": "adjective", + "word_frequency": 22547 + }, + { + "word": "sonar", + "article_with_word": "le sonar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonar", + "example_sentence_native": "Le sous-marin utilise un sonar pour détecter les objets.", + "example_sentence_english": "The submarine uses sonar to detect objects.", + "pos": "noun", + "word_frequency": 22550 + }, + { + "word": "sourciller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bat an eyelid;to flinch", + "example_sentence_native": "Il n'a pas sourcillé face au danger.", + "example_sentence_english": "He didn't bat an eyelid in the face of danger.", + "pos": "verb", + "word_frequency": 22551 + }, + { + "word": "succes", + "article_with_word": "le succès", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "success", + "example_sentence_native": "Son nouveau livre est un grand succès.", + "example_sentence_english": "His new book is a great success.", + "pos": "noun", + "word_frequency": 22554 + }, + { + "word": "sulfurique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfuric", + "example_sentence_native": "L'acide sulfurique est très corrosif.", + "example_sentence_english": "Sulfuric acid is very corrosive.", + "pos": "adjective", + "word_frequency": 22555 + }, + { + "word": "technicité", + "article_with_word": "la technicité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "technicality;technical expertise", + "example_sentence_native": "Ce projet demande une grande technicité.", + "example_sentence_english": "This project requires great technical expertise.", + "pos": "noun", + "word_frequency": 22559 + }, + { + "word": "tempéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temperate", + "example_sentence_native": "Le climat de cette région est tempéré.", + "example_sentence_english": "The climate of this region is temperate.", + "pos": "adjective", + "word_frequency": 22560 + }, + { + "word": "tequila", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tequila", + "example_sentence_native": "Elle a commandé une tequila avec du citron vert.", + "example_sentence_english": "She ordered a tequila with lime.", + "pos": "noun", + "word_frequency": 22561 + }, + { + "word": "ternir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tarnish", + "example_sentence_native": "Le temps peut ternir les métaux.", + "example_sentence_english": "Time can tarnish metals.", + "pos": "verb", + "word_frequency": 22562 + }, + { + "word": "toléré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerated", + "example_sentence_native": "Ce comportement n'est pas toléré ici.", + "example_sentence_english": "This behavior is not tolerated here.", + "pos": "adjective", + "word_frequency": 22566 + }, + { + "word": "toxicologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "toxicology", + "example_sentence_native": "La toxicologie étudie les effets des substances toxiques.", + "example_sentence_english": "Toxicology studies the effects of toxic substances.", + "pos": "noun", + "word_frequency": 22568 + }, + { + "word": "trend", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trend", + "example_sentence_native": "Cette nouvelle mode est un trend sur les réseaux sociaux.", + "example_sentence_english": "This new fashion is a trend on social media.", + "pos": "noun", + "word_frequency": 22570 + }, + { + "word": "tulipe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tulip", + "example_sentence_native": "Les tulipes fleurissent au printemps.", + "example_sentence_english": "Tulips bloom in spring.", + "pos": "noun", + "word_frequency": 22573 + }, + { + "word": "tumultueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tumultuous", + "example_sentence_native": "La foule était tumultueuse après le match.", + "example_sentence_english": "The crowd was tumultuous after the match.", + "pos": "adjective", + "word_frequency": 22574 + }, + { + "word": "ultimement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ultimately", + "example_sentence_native": "Ultimement, la décision lui appartient.", + "example_sentence_english": "Ultimately, the decision is his.", + "pos": "adverb", + "word_frequency": 22576 + }, + { + "word": "ultrason", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultrasound", + "example_sentence_native": "Elle a passé un ultrason pour vérifier le bébé.", + "example_sentence_english": "She had an ultrasound to check the baby.", + "pos": "noun", + "word_frequency": 22577 + }, + { + "word": "vadrouille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mop", + "example_sentence_native": "J'ai nettoyé le sol avec une vadrouille.", + "example_sentence_english": "I cleaned the floor with a mop.", + "pos": "noun", + "word_frequency": 22579 + }, + { + "word": "variance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variance", + "example_sentence_native": "La variance est une mesure de la dispersion des données.", + "example_sentence_english": "Variance is a measure of data dispersion.", + "pos": "noun", + "word_frequency": 22580 + }, + { + "word": "verdâtre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greenish", + "example_sentence_native": "L'eau du lac avait une couleur verdâtre.", + "example_sentence_english": "The lake water had a greenish color.", + "pos": "adjective", + "word_frequency": 22581 + }, + { + "word": "veston", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jacket", + "example_sentence_native": "Il portait un élégant veston gris.", + "example_sentence_english": "He was wearing an elegant grey jacket.", + "pos": "noun", + "word_frequency": 22585 + }, + { + "word": "vétusté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilapidation;decrepitude", + "example_sentence_native": "Le bâtiment montrait des signes de vétusté.", + "example_sentence_english": "The building showed signs of dilapidation.", + "pos": "noun", + "word_frequency": 22589 + }, + { + "word": "warning", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warning", + "example_sentence_native": "J'ai mis les warnings pour signaler un danger.", + "example_sentence_english": "I put on the hazard lights to signal a danger.", + "pos": "noun", + "word_frequency": 22591 + }, + { + "word": "zeste", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zest", + "example_sentence_native": "Ajoutez un zeste de citron à la recette.", + "example_sentence_english": "Add a lemon zest to the recipe.", + "pos": "noun", + "word_frequency": 22599 + }, + { + "word": "éblouir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dazzle;to blind", + "example_sentence_native": "Le soleil couchant peut éblouir les conducteurs.", + "example_sentence_english": "The setting sun can dazzle drivers.", + "pos": "verb", + "word_frequency": 22600 + }, + { + "word": "éclipsé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eclipsed;overshadowed", + "example_sentence_native": "Son talent a été éclipsé par la nouvelle star.", + "example_sentence_english": "His talent was eclipsed by the new star.", + "pos": "adjective", + "word_frequency": 22601 + }, + { + "word": "élixir", + "article_with_word": "l'élixir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elixir", + "example_sentence_native": "Il cherchait un élixir de longue vie.", + "example_sentence_english": "He was looking for an elixir of long life.", + "pos": "noun", + "word_frequency": 22602 + }, + { + "word": "émule", + "article_with_word": "un émule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emulator;rival", + "example_sentence_native": "Le jeune artiste est un émule de son maître.", + "example_sentence_english": "The young artist is an emulator of his master.", + "pos": "noun", + "word_frequency": 22603 + }, + { + "word": "énumération", + "article_with_word": "une énumération", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enumeration;list", + "example_sentence_native": "L'énumération des faits était très longue.", + "example_sentence_english": "The enumeration of facts was very long.", + "pos": "noun", + "word_frequency": 22604 + }, + { + "word": "épuisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhausted;out of stock", + "example_sentence_native": "Après la course, il était complètement épuisé.", + "example_sentence_english": "After the race, he was completely exhausted.", + "pos": "adjective", + "word_frequency": 22605 + }, + { + "word": "œsophage", + "article_with_word": "l'œsophage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "esophagus", + "example_sentence_native": "La nourriture passe par l'œsophage avant d'atteindre l'estomac.", + "example_sentence_english": "Food passes through the esophagus before reaching the stomach.", + "pos": "noun", + "word_frequency": 22606 + }, + { + "word": "accusateur", + "article_with_word": "l'accusateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accuser", + "example_sentence_native": "L'accusateur a présenté de nouvelles preuves.", + "example_sentence_english": "The accuser presented new evidence.", + "pos": "noun", + "word_frequency": 22609 + }, + { + "word": "acquitté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acquitted", + "example_sentence_native": "Le suspect a été acquitté faute de preuves.", + "example_sentence_english": "The suspect was acquitted due to lack of evidence.", + "pos": "adjective", + "word_frequency": 22611 + }, + { + "word": "adorateur", + "article_with_word": "un adorateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worshipper;adorer", + "example_sentence_native": "Il était un fervent adorateur de la nature.", + "example_sentence_english": "He was a fervent worshipper of nature.", + "pos": "noun", + "word_frequency": 22612 + }, + { + "word": "afférent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "afferent;relating to", + "example_sentence_native": "Les nerfs afférents transmettent les informations sensorielles au cerveau.", + "example_sentence_english": "Afferent nerves transmit sensory information to the brain.", + "pos": "adjective", + "word_frequency": 22614 + }, + { + "word": "albatros", + "article_with_word": "un albatros", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "albatross", + "example_sentence_native": "L'albatros est un grand oiseau marin.", + "example_sentence_english": "The albatross is a large seabird.", + "pos": "noun", + "word_frequency": 22615 + }, + { + "word": "aliéné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alienated;insane", + "example_sentence_native": "Il a été déclaré aliéné et incapable de gérer ses affaires.", + "example_sentence_english": "He was declared insane and unable to manage his affairs.", + "pos": "adjective", + "word_frequency": 22617 + }, + { + "word": "apiculture", + "article_with_word": "l'apiculture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beekeeping", + "example_sentence_native": "L'apiculture est une activité essentielle pour la pollinisation.", + "example_sentence_english": "Beekeeping is an essential activity for pollination.", + "pos": "noun", + "word_frequency": 22620 + }, + { + "word": "assujetti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subject to;liable to", + "example_sentence_native": "Toute personne résidant dans le pays est assujettie à ses lois.", + "example_sentence_english": "Everyone residing in the country is subject to its laws.", + "pos": "adjective", + "word_frequency": 22621 + }, + { + "word": "attouchement", + "article_with_word": "un attouchement", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "touch;fondling (often inappropriate)", + "example_sentence_native": "Il a été accusé d'attouchements.", + "example_sentence_english": "He was accused of inappropriate touching.", + "pos": "noun", + "word_frequency": 22623 + }, + { + "word": "atténuant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mitigating", + "example_sentence_native": "Les circonstances atténuantes ont été prises en compte par le juge.", + "example_sentence_english": "Mitigating circumstances were taken into account by the judge.", + "pos": "adjective", + "word_frequency": 22624 + }, + { + "word": "aventureux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adventurous", + "example_sentence_native": "C'est une personne très aventureuse qui aime voyager.", + "example_sentence_english": "He is a very adventurous person who loves to travel.", + "pos": "adjective", + "word_frequency": 22625 + }, + { + "word": "baryton", + "article_with_word": "un baryton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baritone", + "example_sentence_native": "Le baryton a une voix profonde et puissante.", + "example_sentence_english": "The baritone has a deep and powerful voice.", + "pos": "noun", + "word_frequency": 22630 + }, + { + "word": "beur", + "article_with_word": "un beur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "(French person of North African descent)", + "example_sentence_native": "Le terme \"beur\" est apparu dans les années 1980 pour désigner les jeunes issus de l'immigration maghrébine.", + "example_sentence_english": "The term \"beur\" appeared in the 1980s to designate young people of Maghrebi immigration.", + "pos": "noun", + "word_frequency": 22631 + }, + { + "word": "bienséance", + "article_with_word": "la bienséance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propriety;decorum", + "example_sentence_native": "Il a agi avec une grande bienséance.", + "example_sentence_english": "He acted with great propriety.", + "pos": "noun", + "word_frequency": 22632 + }, + { + "word": "billboard", + "article_with_word": "un billboard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billboard", + "example_sentence_native": "La publicité était affichée sur un grand billboard.", + "example_sentence_english": "The advertisement was displayed on a large billboard.", + "pos": "noun", + "word_frequency": 22633 + }, + { + "word": "biélorusse", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Belarusian", + "example_sentence_native": "Elle parle la langue biélorusse.", + "example_sentence_english": "She speaks the Belarusian language.", + "pos": "adjective", + "word_frequency": 22634 + }, + { + "word": "blanchâtre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whitish", + "example_sentence_native": "La lumière était d'une couleur un peu blanchâtre.", + "example_sentence_english": "The light was a bit whitish in color.", + "pos": "adjective", + "word_frequency": 22636 + }, + { + "word": "bomber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bulge", + "example_sentence_native": "Ses muscles bombent sous sa chemise.", + "example_sentence_english": "His muscles bulge under his shirt.", + "pos": "verb", + "word_frequency": 22637 + }, + { + "word": "boudoir", + "article_with_word": "un boudoir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boudoir", + "example_sentence_native": "Elle se retira dans son boudoir pour lire.", + "example_sentence_english": "She retired to her boudoir to read.", + "pos": "noun", + "word_frequency": 22639 + }, + { + "word": "brac", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulk;mess (often in 'en vrac')", + "example_sentence_native": "Les marchandises sont vendues en vrac pour réduire les emballages.", + "example_sentence_english": "Goods are sold in bulk to reduce packaging.", + "pos": "noun", + "word_frequency": 22640 + }, + { + "word": "brief", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brief;briefing", + "example_sentence_native": "Le chef de projet a donné un brief détaillé à l'équipe.", + "example_sentence_english": "The project manager gave a detailed brief to the team.", + "pos": "noun", + "word_frequency": 22642 + }, + { + "word": "brouette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheelbarrow", + "example_sentence_native": "Il a transporté la terre avec une brouette.", + "example_sentence_english": "He transported the soil with a wheelbarrow.", + "pos": "noun", + "word_frequency": 22644 + }, + { + "word": "bulldozer", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulldozer", + "example_sentence_native": "Un bulldozer a été utilisé pour démolir l'ancien bâtiment.", + "example_sentence_english": "A bulldozer was used to demolish the old building.", + "pos": "noun", + "word_frequency": 22646 + }, + { + "word": "capturé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captured", + "example_sentence_native": "L'animal capturé a été relâché dans la nature.", + "example_sentence_english": "The captured animal was released into the wild.", + "pos": "adjective", + "word_frequency": 22648 + }, + { + "word": "casher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kosher", + "example_sentence_native": "Ce restaurant propose des plats casher.", + "example_sentence_english": "This restaurant offers kosher dishes.", + "pos": "adjective", + "word_frequency": 22650 + }, + { + "word": "centurion", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centurion", + "example_sentence_native": "Le centurion romain menait ses troupes au combat.", + "example_sentence_english": "The Roman centurion led his troops into battle.", + "pos": "noun", + "word_frequency": 22653 + }, + { + "word": "charter", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charter (flight;agreement)", + "example_sentence_native": "Nous avons pris un vol charter pour nos vacances.", + "example_sentence_english": "We took a charter flight for our vacation.", + "pos": "noun", + "word_frequency": 22655 + }, + { + "word": "chevaleresque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chivalrous;knightly", + "example_sentence_native": "Son comportement chevaleresque a impressionné tout le monde.", + "example_sentence_english": "His chivalrous behavior impressed everyone.", + "pos": "adjective", + "word_frequency": 22656 + }, + { + "word": "chuchoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to whisper", + "example_sentence_native": "Ils ont commencé à chuchoter pendant la conférence.", + "example_sentence_english": "They started to whisper during the conference.", + "pos": "verb", + "word_frequency": 22658 + }, + { + "word": "cinématique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cutscene;cinematic", + "example_sentence_native": "La cinématique d'introduction du jeu était très impressionnante.", + "example_sentence_english": "The game's introductory cinematic was very impressive.", + "pos": "noun", + "word_frequency": 22659 + }, + { + "word": "coléoptère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beetle", + "example_sentence_native": "Le coléoptère est un insecte avec des ailes dures.", + "example_sentence_english": "The beetle is an insect with hard wings.", + "pos": "noun", + "word_frequency": 22662 + }, + { + "word": "commenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commented;annotated", + "example_sentence_native": "Le texte commenté aide à mieux comprendre l'œuvre.", + "example_sentence_english": "The commented text helps to better understand the work.", + "pos": "adjective", + "word_frequency": 22663 + }, + { + "word": "commutateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "switch (electrical;network)", + "example_sentence_native": "Le commutateur réseau permet de connecter plusieurs ordinateurs.", + "example_sentence_english": "The network switch allows connecting multiple computers.", + "pos": "noun", + "word_frequency": 22664 + }, + { + "word": "conjugué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conjugated (verb);combined", + "example_sentence_native": "Le verbe \"être\" est souvent conjugué de manière irrégulière.", + "example_sentence_english": "The verb \"to be\" is often conjugated irregularly.", + "pos": "adjective", + "word_frequency": 22665 + }, + { + "word": "correctif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrective", + "example_sentence_native": "Des mesures correctives ont été mises en place.", + "example_sentence_english": "Corrective measures have been put in place.", + "pos": "adjective", + "word_frequency": 22667 + }, + { + "word": "criminologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminology", + "example_sentence_native": "Elle étudie la criminologie à l'université.", + "example_sentence_english": "She studies criminology at university.", + "pos": "noun", + "word_frequency": 22669 + }, + { + "word": "desservi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "served (by transport);disadvantaged", + "example_sentence_native": "Ce quartier est bien desservi par les transports en commun.", + "example_sentence_english": "This neighborhood is well served by public transport.", + "pos": "adjective", + "word_frequency": 22675 + }, + { + "word": "disqualification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disqualification", + "example_sentence_native": "La disqualification de l'athlète a été très controversée.", + "example_sentence_english": "The athlete's disqualification was very controversial.", + "pos": "noun", + "word_frequency": 22681 + }, + { + "word": "dosé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dosed;measured;balanced", + "example_sentence_native": "Le plat était parfaitement dosé en épices.", + "example_sentence_english": "The dish was perfectly dosed with spices.", + "pos": "adjective", + "word_frequency": 22682 + }, + { + "word": "débiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cut up;to debit;to reel off", + "example_sentence_native": "Le boucher va débiter la viande en morceaux.", + "example_sentence_english": "The butcher will cut up the meat into pieces.", + "pos": "verb", + "word_frequency": 22686 + }, + { + "word": "défendeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defendant", + "example_sentence_native": "Le défendeur a plaidé non coupable devant le tribunal.", + "example_sentence_english": "The defendant pleaded not guilty in court.", + "pos": "noun", + "word_frequency": 22687 + }, + { + "word": "désarmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disarmed;helpless", + "example_sentence_native": "Face à cette nouvelle, il s'est senti complètement désarmé.", + "example_sentence_english": "Faced with this news, he felt completely helpless.", + "pos": "adjective", + "word_frequency": 22688 + }, + { + "word": "engraisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fatten;to get fat", + "example_sentence_native": "Il faut bien nourrir les animaux pour les engraisser.", + "example_sentence_english": "You have to feed the animals well to fatten them.", + "pos": "verb", + "word_frequency": 22689 + }, + { + "word": "espiègle", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischievous;impish", + "example_sentence_native": "Le regard espiègle de l'enfant amusait tout le monde.", + "example_sentence_english": "The child's mischievous look amused everyone.", + "pos": "adjective", + "word_frequency": 22690 + }, + { + "word": "exacerber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exacerbate;to worsen", + "example_sentence_native": "Le manque de sommeil peut exacerber le stress.", + "example_sentence_english": "Lack of sleep can exacerbate stress.", + "pos": "verb", + "word_frequency": 22692 + }, + { + "word": "exploitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploitable;usable", + "example_sentence_native": "Les données recueillies sont facilement exploitables pour l'analyse.", + "example_sentence_english": "The collected data is easily exploitable for analysis.", + "pos": "adjective", + "word_frequency": 22693 + }, + { + "word": "facturé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invoiced;billed", + "example_sentence_native": "Le montant total a été facturé sur votre compte.", + "example_sentence_english": "The total amount has been invoiced to your account.", + "pos": "adjective", + "word_frequency": 22696 + }, + { + "word": "faiblir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to weaken;to fade", + "example_sentence_native": "Sa détermination a commencé à faiblir face aux obstacles.", + "example_sentence_english": "His determination began to weaken in the face of obstacles.", + "pos": "verb", + "word_frequency": 22697 + }, + { + "word": "fiel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gall;bitterness", + "example_sentence_native": "Il a craché tout son fiel sur ses adversaires politiques.", + "example_sentence_english": "He spat all his bitterness at his political opponents.", + "pos": "noun", + "word_frequency": 22698 + }, + { + "word": "flâner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stroll;to wander", + "example_sentence_native": "J'aime flâner dans les rues de la vieille ville.", + "example_sentence_english": "I like to stroll through the streets of the old town.", + "pos": "verb", + "word_frequency": 22699 + }, + { + "word": "fossoyeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravedigger", + "example_sentence_native": "Le fossoyeur a préparé la tombe avec soin.", + "example_sentence_english": "The gravedigger prepared the grave carefully.", + "pos": "noun", + "word_frequency": 22700 + }, + { + "word": "fouillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorough;detailed;searched", + "example_sentence_native": "Il a mené une enquête très fouillée sur l'affaire.", + "example_sentence_english": "He conducted a very thorough investigation into the matter.", + "pos": "adjective", + "word_frequency": 22701 + }, + { + "word": "fournée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "batch (of baked goods)", + "example_sentence_native": "La première fournée de croissants est sortie du four.", + "example_sentence_english": "The first batch of croissants came out of the oven.", + "pos": "noun", + "word_frequency": 22702 + }, + { + "word": "foutaise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonsense;rubbish", + "example_sentence_native": "Ce qu'il raconte n'est que pure foutaise.", + "example_sentence_english": "What he's saying is just pure nonsense.", + "pos": "noun", + "word_frequency": 22703 + }, + { + "word": "fracturation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fracturing;fracking", + "example_sentence_native": "La fracturation hydraulique est une technique controversée.", + "example_sentence_english": "Hydraulic fracturing is a controversial technique.", + "pos": "noun", + "word_frequency": 22705 + }, + { + "word": "francisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Frenchification;francization", + "example_sentence_native": "La francisation des termes techniques est encouragée.", + "example_sentence_english": "The francization of technical terms is encouraged.", + "pos": "noun", + "word_frequency": 22706 + }, + { + "word": "fécond", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertile;fruitful", + "example_sentence_native": "Cette période a été très féconde en nouvelles idées.", + "example_sentence_english": "This period was very fruitful in new ideas.", + "pos": "adjective", + "word_frequency": 22707 + }, + { + "word": "gosier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "throat;gullet", + "example_sentence_native": "Il avait le gosier sec après avoir chanté toute la nuit.", + "example_sentence_english": "He had a dry throat after singing all night.", + "pos": "noun", + "word_frequency": 22714 + }, + { + "word": "goth", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Goth", + "example_sentence_native": "Elle a adopté un style vestimentaire très goth.", + "example_sentence_english": "She adopted a very Goth clothing style.", + "pos": "noun", + "word_frequency": 22715 + }, + { + "word": "graphiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphically", + "example_sentence_native": "Les données sont présentées graphiquement pour une meilleure compréhension.", + "example_sentence_english": "The data is presented graphically for better understanding.", + "pos": "adverb", + "word_frequency": 22716 + }, + { + "word": "guimauve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marshmallow", + "example_sentence_native": "Les enfants aiment faire griller des guimauves au feu de camp.", + "example_sentence_english": "Children like to roast marshmallows over the campfire.", + "pos": "noun", + "word_frequency": 22717 + }, + { + "word": "guyanais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Guyanese", + "example_sentence_native": "La cuisine guyanaise est riche en saveurs exotiques.", + "example_sentence_english": "Guyanese cuisine is rich in exotic flavors.", + "pos": "adjective", + "word_frequency": 22718 + }, + { + "word": "gypse", + "article_with_word": "le gypse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gypsum", + "example_sentence_native": "Le gypse est un minéral mou utilisé dans la construction.", + "example_sentence_english": "Gypsum is a soft mineral used in construction.", + "pos": "noun", + "word_frequency": 22720 + }, + { + "word": "hadith", + "article_with_word": "le hadith", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hadith", + "example_sentence_native": "Les hadiths sont des récits des paroles et actions du prophète Mahomet.", + "example_sentence_english": "Hadiths are accounts of the sayings and actions of the Prophet Muhammad.", + "pos": "noun", + "word_frequency": 22721 + }, + { + "word": "hadji", + "article_with_word": "le hadji", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hajji (pilgrim to Mecca)", + "example_sentence_native": "Le hadji est revenu de son pèlerinage à La Mecque.", + "example_sentence_english": "The hajji returned from his pilgrimage to Mecca.", + "pos": "noun", + "word_frequency": 22722 + }, + { + "word": "halluciné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hallucinating;amazed", + "example_sentence_native": "Il était complètement halluciné par la beauté du paysage.", + "example_sentence_english": "He was completely amazed by the beauty of the landscape.", + "pos": "adjective", + "word_frequency": 22723 + }, + { + "word": "hare", + "article_with_word": "le hare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hare", + "example_sentence_native": "Le lièvre (hare) est plus grand que le lapin.", + "example_sentence_english": "The hare is larger than the rabbit.", + "pos": "noun", + "word_frequency": 22724 + }, + { + "word": "hareng", + "article_with_word": "le hareng", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "herring", + "example_sentence_native": "J'aime manger du hareng fumé.", + "example_sentence_english": "I like to eat smoked herring.", + "pos": "noun", + "word_frequency": 22725 + }, + { + "word": "hargne", + "article_with_word": "la hargne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aggressiveness;spite", + "example_sentence_native": "Il a montré une hargne incroyable pour gagner le match.", + "example_sentence_english": "He showed incredible aggressiveness to win the match.", + "pos": "noun", + "word_frequency": 22726 + }, + { + "word": "hentai", + "article_with_word": "le hentai", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "hentai", + "example_sentence_native": "Le hentai est un genre d'anime et de manga.", + "example_sentence_english": "Hentai is a genre of anime and manga.", + "pos": "noun", + "word_frequency": 22727 + }, + { + "word": "hexagonal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hexagonal", + "example_sentence_native": "La France est souvent appelée l'Hexagone en raison de sa forme hexagonale.", + "example_sentence_english": "France is often called the Hexagon because of its hexagonal shape.", + "pos": "adjective", + "word_frequency": 22728 + }, + { + "word": "hockeyeur", + "article_with_word": "le hockeyeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hockey player", + "example_sentence_native": "Le jeune hockeyeur a marqué un but décisif.", + "example_sentence_english": "The young hockey player scored a decisive goal.", + "pos": "noun", + "word_frequency": 22730 + }, + { + "word": "holstein", + "article_with_word": "la Holstein", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Holstein (cow)", + "example_sentence_native": "La vache Holstein est connue pour sa production laitière.", + "example_sentence_english": "The Holstein cow is known for its milk production.", + "pos": "noun", + "word_frequency": 22731 + }, + { + "word": "honteusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shamefully", + "example_sentence_native": "Il a honteusement avoué son erreur.", + "example_sentence_english": "He shamefully admitted his mistake.", + "pos": "adverb", + "word_frequency": 22732 + }, + { + "word": "humus", + "article_with_word": "l'humus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humus", + "example_sentence_native": "L'humus est essentiel pour la fertilité du sol.", + "example_sentence_english": "Humus is essential for soil fertility.", + "pos": "noun", + "word_frequency": 22734 + }, + { + "word": "hémorragique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemorrhagic", + "example_sentence_native": "Il a subi un choc hémorragique après l'accident.", + "example_sentence_english": "He suffered a hemorrhagic shock after the accident.", + "pos": "adjective", + "word_frequency": 22736 + }, + { + "word": "iconique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iconic", + "example_sentence_native": "La Tour Eiffel est un monument iconique de Paris.", + "example_sentence_english": "The Eiffel Tower is an iconic monument of Paris.", + "pos": "adjective", + "word_frequency": 22738 + }, + { + "word": "ideal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ideal", + "example_sentence_native": "C'est la solution idéale pour notre problème.", + "example_sentence_english": "This is the ideal solution for our problem.", + "pos": "adjective", + "word_frequency": 22740 + }, + { + "word": "idiotie", + "article_with_word": "l'idiotie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiocy;foolishness", + "example_sentence_native": "Son commentaire était une pure idiotie.", + "example_sentence_english": "His comment was pure idiocy.", + "pos": "noun", + "word_frequency": 22741 + }, + { + "word": "idéologiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideologically", + "example_sentence_native": "Ils sont idéologiquement opposés sur cette question.", + "example_sentence_english": "They are ideologically opposed on this issue.", + "pos": "adverb", + "word_frequency": 22742 + }, + { + "word": "incessamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortly;imminently", + "example_sentence_native": "Le train arrivera incessamment.", + "example_sentence_english": "The train will arrive shortly.", + "pos": "adverb", + "word_frequency": 22743 + }, + { + "word": "incolore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colorless", + "example_sentence_native": "L'eau pure est incolore et inodore.", + "example_sentence_english": "Pure water is colorless and odorless.", + "pos": "adjective", + "word_frequency": 22744 + }, + { + "word": "incriminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to incriminate;to accuse", + "example_sentence_native": "Les preuves ont incriminé le suspect.", + "example_sentence_english": "The evidence incriminated the suspect.", + "pos": "verb", + "word_frequency": 22745 + }, + { + "word": "incruster", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embed;to inlay;to crash (a party)", + "example_sentence_native": "Il a réussi à s'incruster à la fête sans invitation.", + "example_sentence_english": "He managed to crash the party without an invitation.", + "pos": "verb", + "word_frequency": 22746 + }, + { + "word": "inexcusable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexcusable", + "example_sentence_native": "Son comportement était absolument inexcusable.", + "example_sentence_english": "His behavior was absolutely inexcusable.", + "pos": "adjective", + "word_frequency": 22747 + }, + { + "word": "interprofessionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interprofessional", + "example_sentence_native": "Une réunion interprofessionnelle a été organisée pour discuter des salaires.", + "example_sentence_english": "An interprofessional meeting was organized to discuss wages.", + "pos": "adjective", + "word_frequency": 22750 + }, + { + "word": "isthme", + "article_with_word": "l'isthme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "isthmus", + "example_sentence_native": "L'isthme de Panama relie l'Amérique du Nord et l'Amérique du Sud.", + "example_sentence_english": "The Isthmus of Panama connects North and South America.", + "pos": "noun", + "word_frequency": 22751 + }, + { + "word": "jingle", + "article_with_word": "le jingle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jingle", + "example_sentence_native": "Le jingle publicitaire est très accrocheur.", + "example_sentence_english": "The advertising jingle is very catchy.", + "pos": "noun", + "word_frequency": 22752 + }, + { + "word": "kyste", + "article_with_word": "le kyste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cyst", + "example_sentence_native": "Le médecin a diagnostiqué un petit kyste.", + "example_sentence_english": "The doctor diagnosed a small cyst.", + "pos": "noun", + "word_frequency": 22758 + }, + { + "word": "lapidation", + "article_with_word": "la lapidation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stoning", + "example_sentence_native": "La lapidation est une pratique ancienne et barbare.", + "example_sentence_english": "Stoning is an ancient and barbaric practice.", + "pos": "noun", + "word_frequency": 22762 + }, + { + "word": "lavé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "washed", + "example_sentence_native": "Les vêtements sont propres et lavés.", + "example_sentence_english": "The clothes are clean and washed.", + "pos": "adjective", + "word_frequency": 22765 + }, + { + "word": "lifting", + "article_with_word": "le lifting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facelift", + "example_sentence_native": "Elle a subi un lifting pour rajeunir son visage.", + "example_sentence_english": "She had a facelift to rejuvenate her face.", + "pos": "noun", + "word_frequency": 22767 + }, + { + "word": "lissage", + "article_with_word": "le lissage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smoothing", + "example_sentence_native": "Le lissage des cheveux prend du temps.", + "example_sentence_english": "Hair smoothing takes time.", + "pos": "noun", + "word_frequency": 22770 + }, + { + "word": "lithographie", + "article_with_word": "la lithographie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lithography", + "example_sentence_native": "Cette exposition présente des lithographies du XIXe siècle.", + "example_sentence_english": "This exhibition features 19th-century lithographs.", + "pos": "noun", + "word_frequency": 22771 + }, + { + "word": "lésé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmed;wronged", + "example_sentence_native": "La victime se sentait lésée par le jugement.", + "example_sentence_english": "The victim felt wronged by the judgment.", + "pos": "adjective", + "word_frequency": 22775 + }, + { + "word": "léthargie", + "article_with_word": "la léthargie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lethargy", + "example_sentence_native": "Après le repas, une léthargie s'est emparée de lui.", + "example_sentence_english": "After the meal, a lethargy took hold of him.", + "pos": "noun", + "word_frequency": 22776 + }, + { + "word": "malencontreusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unfortunately;inadvertently", + "example_sentence_native": "Il a malencontreusement effacé le fichier.", + "example_sentence_english": "He inadvertently deleted the file.", + "pos": "adverb", + "word_frequency": 22778 + }, + { + "word": "minet", + "article_with_word": "le minet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kitten;pussycat (informal)", + "example_sentence_native": "Le petit minet jouait avec la pelote de laine.", + "example_sentence_english": "The little kitten was playing with the ball of yarn.", + "pos": "noun", + "word_frequency": 22783 + }, + { + "word": "mortifère", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deadly;lethal", + "example_sentence_native": "Il a contracté une maladie mortifère.", + "example_sentence_english": "He contracted a deadly disease.", + "pos": "adjective", + "word_frequency": 22788 + }, + { + "word": "mure", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ripe;mature", + "example_sentence_native": "Les cerises sont mûres et prêtes à être cueillies.", + "example_sentence_english": "The cherries are ripe and ready to be picked.", + "pos": "adjective", + "word_frequency": 22789 + }, + { + "word": "médicamenteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medicinal;drug-related", + "example_sentence_native": "Il y a des effets secondaires médicamenteux.", + "example_sentence_english": "There are drug-related side effects.", + "pos": "adjective", + "word_frequency": 22790 + }, + { + "word": "nihilisme", + "article_with_word": "le nihilisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nihilism", + "example_sentence_native": "Le nihilisme est une doctrine philosophique.", + "example_sentence_english": "Nihilism is a philosophical doctrine.", + "pos": "noun", + "word_frequency": 22792 + }, + { + "word": "négocié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiated", + "example_sentence_native": "Le prix a été négocié à la baisse.", + "example_sentence_english": "The price was negotiated downwards.", + "pos": "adjective", + "word_frequency": 22795 + }, + { + "word": "opprobre", + "article_with_word": "l'opprobre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ignominy;disgrace", + "example_sentence_native": "Il a couvert sa famille d'opprobre.", + "example_sentence_english": "He brought disgrace upon his family.", + "pos": "noun", + "word_frequency": 22799 + }, + { + "word": "orthographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orthographic", + "example_sentence_native": "Il a fait une erreur orthographique dans son devoir.", + "example_sentence_english": "He made an orthographic error in his homework.", + "pos": "adjective", + "word_frequency": 22801 + }, + { + "word": "panse", + "article_with_word": "la panse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly", + "example_sentence_native": "Le cheval avait une grosse panse après avoir mangé.", + "example_sentence_english": "The horse had a big belly after eating.", + "pos": "noun", + "word_frequency": 22803 + }, + { + "word": "parement", + "article_with_word": "le parement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facing", + "example_sentence_native": "Le parement de la cheminée était en pierre naturelle.", + "example_sentence_english": "The fireplace facing was made of natural stone.", + "pos": "noun", + "word_frequency": 22804 + }, + { + "word": "pilotis", + "article_with_word": "les pilotis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stilts", + "example_sentence_native": "La maison sur pilotis offre une vue imprenable sur la mer.", + "example_sentence_english": "The house on stilts offers a breathtaking view of the sea.", + "pos": "noun", + "word_frequency": 22806 + }, + { + "word": "placide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placid", + "example_sentence_native": "Son expression placide ne trahissait aucune émotion.", + "example_sentence_english": "His placid expression betrayed no emotion.", + "pos": "adjective", + "word_frequency": 22808 + }, + { + "word": "positionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "positioned", + "example_sentence_native": "Le capteur est bien positionné pour détecter le mouvement.", + "example_sentence_english": "The sensor is well positioned to detect movement.", + "pos": "adjective", + "word_frequency": 22810 + }, + { + "word": "proton", + "article_with_word": "le proton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proton", + "example_sentence_native": "Un proton est une particule subatomique chargée positivement.", + "example_sentence_english": "A proton is a positively charged subatomic particle.", + "pos": "noun", + "word_frequency": 22812 + }, + { + "word": "prévisionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisional", + "example_sentence_native": "Le budget prévisionnel sera présenté la semaine prochaine.", + "example_sentence_english": "The provisional budget will be presented next week.", + "pos": "adjective", + "word_frequency": 22813 + }, + { + "word": "quadrature", + "article_with_word": "la quadrature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quadrature", + "example_sentence_native": "La quadrature du cercle est un problème mathématique célèbre.", + "example_sentence_english": "The squaring of the circle is a famous mathematical problem.", + "pos": "noun", + "word_frequency": 22816 + }, + { + "word": "racheté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bought back", + "example_sentence_native": "L'entreprise a été rachetée par un grand groupe international.", + "example_sentence_english": "The company was bought back by a large international group.", + "pos": "adjective", + "word_frequency": 22818 + }, + { + "word": "rationnellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rationally", + "example_sentence_native": "Il a agi rationnellement face à la situation difficile.", + "example_sentence_english": "He acted rationally in the difficult situation.", + "pos": "adverb", + "word_frequency": 22820 + }, + { + "word": "rechargeable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rechargeable", + "example_sentence_native": "Cette batterie est rechargeable et dure longtemps.", + "example_sentence_english": "This battery is rechargeable and lasts a long time.", + "pos": "adjective", + "word_frequency": 22821 + }, + { + "word": "rejeton", + "article_with_word": "le rejeton", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offshoot", + "example_sentence_native": "Il était le dernier rejeton d'une noble famille.", + "example_sentence_english": "He was the last offshoot of a noble family.", + "pos": "noun", + "word_frequency": 22823 + }, + { + "word": "retoucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to touch up", + "example_sentence_native": "Elle a dû retoucher la photo pour améliorer les couleurs.", + "example_sentence_english": "She had to touch up the photo to improve the colors.", + "pos": "verb", + "word_frequency": 22826 + }, + { + "word": "retranscrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retranscribe", + "example_sentence_native": "Il est nécessaire de retranscrire l'intégralité de l'interview.", + "example_sentence_english": "It is necessary to retranscribe the entire interview.", + "pos": "verb", + "word_frequency": 22827 + }, + { + "word": "revisiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to revisit", + "example_sentence_native": "Nous devrions revisiter cette question lors de la prochaine réunion.", + "example_sentence_english": "We should revisit this question at the next meeting.", + "pos": "verb", + "word_frequency": 22828 + }, + { + "word": "risotto", + "article_with_word": "le risotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "risotto", + "example_sentence_native": "J'ai préparé un délicieux risotto aux champignons pour le dîner.", + "example_sentence_english": "I prepared a delicious mushroom risotto for dinner.", + "pos": "noun", + "word_frequency": 22829 + }, + { + "word": "rotonde", + "article_with_word": "la rotonde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotunda", + "example_sentence_native": "La rotonde du musée est impressionnante avec sa coupole.", + "example_sentence_english": "The museum's rotunda is impressive with its dome.", + "pos": "noun", + "word_frequency": 22831 + }, + { + "word": "rudiment", + "article_with_word": "le rudiment", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudiment", + "example_sentence_native": "Il n'avait que des rudiments de la langue espagnole.", + "example_sentence_english": "He only had the rudiments of the Spanish language.", + "pos": "noun", + "word_frequency": 22833 + }, + { + "word": "récipiendaire", + "article_with_word": "le récipiendaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recipient", + "example_sentence_native": "Le récipiendaire du prix Nobel a prononcé un discours émouvant.", + "example_sentence_english": "The Nobel Prize recipient delivered a moving speech.", + "pos": "noun", + "word_frequency": 22835 + }, + { + "word": "scarabée", + "article_with_word": "le scarabée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beetle", + "example_sentence_native": "Un scarabée noir a rampé sur la feuille.", + "example_sentence_english": "A black beetle crawled on the leaf.", + "pos": "noun", + "word_frequency": 22840 + }, + { + "word": "sonnet", + "article_with_word": "le sonnet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonnet", + "example_sentence_native": "Ce poème est un sonnet classique.", + "example_sentence_english": "This poem is a classic sonnet.", + "pos": "noun", + "word_frequency": 22846 + }, + { + "word": "spleen", + "article_with_word": "le spleen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spleen (melancholy)", + "example_sentence_native": "Baudelaire a souvent exprimé son spleen dans ses poèmes.", + "example_sentence_english": "Baudelaire often expressed his spleen in his poems.", + "pos": "noun", + "word_frequency": 22847 + }, + { + "word": "submersion", + "article_with_word": "la submersion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submersion", + "example_sentence_native": "La submersion de la ville a causé de graves dégâts.", + "example_sentence_english": "The submersion of the city caused serious damage.", + "pos": "noun", + "word_frequency": 22849 + }, + { + "word": "superstitieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superstitious", + "example_sentence_native": "Il est très superstitieux et évite les chats noirs.", + "example_sentence_english": "He is very superstitious and avoids black cats.", + "pos": "adjective", + "word_frequency": 22850 + }, + { + "word": "surconsommation", + "article_with_word": "la surconsommation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overconsumption", + "example_sentence_native": "La surconsommation des ressources naturelles est un problème mondial.", + "example_sentence_english": "The overconsumption of natural resources is a global problem.", + "pos": "noun", + "word_frequency": 22851 + }, + { + "word": "survivor", + "article_with_word": "le survivant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survivor", + "example_sentence_native": "Elle est la seule survivante de l'accident.", + "example_sentence_english": "She is the sole survivor of the accident.", + "pos": "noun", + "word_frequency": 22852 + }, + { + "word": "survêtement", + "article_with_word": "le survêtement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tracksuit", + "example_sentence_native": "Il porte un survêtement pour faire du sport.", + "example_sentence_english": "He wears a tracksuit to play sports.", + "pos": "noun", + "word_frequency": 22853 + }, + { + "word": "sénile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "senile", + "example_sentence_native": "Sa mémoire est devenue sénile avec l'âge.", + "example_sentence_english": "His memory became senile with age.", + "pos": "adjective", + "word_frequency": 22855 + }, + { + "word": "sénior", + "article_with_word": "le sénior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senior (person)", + "example_sentence_native": "Les séniors bénéficient de réductions spéciales.", + "example_sentence_english": "Seniors benefit from special discounts.", + "pos": "noun", + "word_frequency": 22856 + }, + { + "word": "taro", + "article_with_word": "le taro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taro", + "example_sentence_native": "Le taro est une plante tropicale cultivée pour sa racine.", + "example_sentence_english": "Taro is a tropical plant cultivated for its root.", + "pos": "noun", + "word_frequency": 22857 + }, + { + "word": "tattoo", + "article_with_word": "le tattoo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "example_sentence_native": "Il a un nouveau tattoo sur le bras.", + "example_sentence_english": "He has a new tattoo on his arm.", + "pos": "noun", + "word_frequency": 22858 + }, + { + "word": "terrifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to terrify", + "example_sentence_native": "Le film d'horreur a terrifié les spectateurs.", + "example_sentence_english": "The horror movie terrified the audience.", + "pos": "verb", + "word_frequency": 22859 + }, + { + "word": "timbrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stamp (a letter)", + "example_sentence_native": "N'oubliez pas de timbrer votre lettre avant de l'envoyer.", + "example_sentence_english": "Don't forget to stamp your letter before sending it.", + "pos": "verb", + "word_frequency": 22861 + }, + { + "word": "trick", + "article_with_word": "le trick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trick (e.g.;skateboarding)", + "example_sentence_native": "Il a réussi un nouveau trick avec son skateboard.", + "example_sentence_english": "He pulled off a new trick with his skateboard.", + "pos": "noun", + "word_frequency": 22863 + }, + { + "word": "triomphal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumphal", + "example_sentence_native": "L'armée a fait une entrée triomphale dans la ville.", + "example_sentence_english": "The army made a triumphal entry into the city.", + "pos": "adjective", + "word_frequency": 22864 + }, + { + "word": "tripoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fiddle with;to touch (informal)", + "example_sentence_native": "Arrête de tripoter les objets sur la table.", + "example_sentence_english": "Stop fiddling with the objects on the table.", + "pos": "verb", + "word_frequency": 22865 + }, + { + "word": "trophy", + "article_with_word": "le trophy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trophy", + "example_sentence_native": "L'équipe a gagné le trophy du championnat.", + "example_sentence_english": "The team won the championship trophy.", + "pos": "noun", + "word_frequency": 22866 + }, + { + "word": "tumulus", + "article_with_word": "le tumulus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tumulus;burial mound", + "example_sentence_native": "Un ancien tumulus a été découvert dans la plaine.", + "example_sentence_english": "An ancient tumulus was discovered in the plain.", + "pos": "noun", + "word_frequency": 22867 + }, + { + "word": "turk", + "article_with_word": "le Turc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Turk", + "example_sentence_native": "Un Turc a ouvert un restaurant dans le quartier.", + "example_sentence_english": "A Turk opened a restaurant in the neighborhood.", + "pos": "noun", + "word_frequency": 22868 + }, + { + "word": "uniformisation", + "article_with_word": "l'uniformisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standardization;uniformization", + "example_sentence_native": "L'uniformisation des procédures est essentielle pour l'efficacité.", + "example_sentence_english": "The standardization of procedures is essential for efficiency.", + "pos": "noun", + "word_frequency": 22871 + }, + { + "word": "uniformité", + "article_with_word": "l'uniformité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uniformity", + "example_sentence_native": "L'uniformité des couleurs rend le tableau harmonieux.", + "example_sentence_english": "The uniformity of colors makes the painting harmonious.", + "pos": "noun", + "word_frequency": 22872 + }, + { + "word": "visière", + "article_with_word": "la visière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visor", + "example_sentence_native": "Il a baissé la visière de son casque.", + "example_sentence_english": "He lowered the visor of his helmet.", + "pos": "noun", + "word_frequency": 22876 + }, + { + "word": "volleyball", + "article_with_word": "le volleyball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volleyball", + "example_sentence_native": "Nous avons joué au volleyball sur la plage.", + "example_sentence_english": "We played volleyball on the beach.", + "pos": "noun", + "word_frequency": 22878 + }, + { + "word": "wali", + "article_with_word": "le wali", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wali (governor)", + "example_sentence_native": "Le wali est le chef administratif d'une province.", + "example_sentence_english": "The wali is the administrative head of a province.", + "pos": "noun", + "word_frequency": 22879 + }, + { + "word": "érigé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erected", + "example_sentence_native": "Le monument a été érigé en l'honneur des soldats.", + "example_sentence_english": "The monument was erected in honor of the soldiers.", + "pos": "adjective", + "word_frequency": 22885 + }, + { + "word": "étrier", + "article_with_word": "l'étrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stirrup", + "example_sentence_native": "Le cavalier a mis son pied dans l'étrier.", + "example_sentence_english": "The rider put his foot in the stirrup.", + "pos": "noun", + "word_frequency": 22886 + }, + { + "word": "abysse", + "article_with_word": "l'abysse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abyss", + "example_sentence_native": "Les abysses océaniques sont encore largement inexplorées.", + "example_sentence_english": "The oceanic abysses are still largely unexplored.", + "pos": "noun", + "word_frequency": 22887 + }, + { + "word": "acarien", + "article_with_word": "un acarien", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mite", + "example_sentence_native": "Les acariens sont souvent responsables d'allergies.", + "example_sentence_english": "Mites are often responsible for allergies.", + "pos": "noun", + "word_frequency": 22888 + }, + { + "word": "acropole", + "article_with_word": "l'acropole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acropolis", + "example_sentence_native": "L'Acropole d'Athènes est un site historique majeur.", + "example_sentence_english": "The Acropolis of Athens is a major historical site.", + "pos": "noun", + "word_frequency": 22889 + }, + { + "word": "advenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to happen;to occur", + "example_sentence_native": "Quoi qu'il puisse advenir, nous serons prêts.", + "example_sentence_english": "Whatever may happen, we will be ready.", + "pos": "verb", + "word_frequency": 22891 + }, + { + "word": "agronomie", + "article_with_word": "l'agronomie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agronomy", + "example_sentence_native": "L'agronomie est la science de l'agriculture.", + "example_sentence_english": "Agronomy is the science of agriculture.", + "pos": "noun", + "word_frequency": 22893 + }, + { + "word": "ahurissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astounding;bewildering", + "example_sentence_native": "Le spectacle était absolument ahurissant.", + "example_sentence_english": "The show was absolutely astounding.", + "pos": "adjective", + "word_frequency": 22894 + }, + { + "word": "amovible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "removable", + "example_sentence_native": "La batterie de ce téléphone est amovible.", + "example_sentence_english": "The battery of this phone is removable.", + "pos": "adjective", + "word_frequency": 22897 + }, + { + "word": "anagramme", + "article_with_word": "une anagramme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anagram", + "example_sentence_native": "Jardin est une anagramme de Andrin.", + "example_sentence_english": "Jardin is an anagram of Andrin.", + "pos": "noun", + "word_frequency": 22898 + }, + { + "word": "angoisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make anxious;to distress", + "example_sentence_native": "Cette situation commence à m'angoisser.", + "example_sentence_english": "This situation is starting to make me anxious.", + "pos": "verb", + "word_frequency": 22900 + }, + { + "word": "arpenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stride;to pace", + "example_sentence_native": "Il aimait arpenter les rues de la ville.", + "example_sentence_english": "He liked to pace the city streets.", + "pos": "verb", + "word_frequency": 22903 + }, + { + "word": "astrologue", + "article_with_word": "un astrologue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astrologer", + "example_sentence_native": "Elle a consulté un astrologue pour connaître son avenir.", + "example_sentence_english": "She consulted an astrologer to know her future.", + "pos": "noun", + "word_frequency": 22905 + }, + { + "word": "aubergiste", + "article_with_word": "l'aubergiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innkeeper", + "example_sentence_native": "L'aubergiste nous a servi un bon repas.", + "example_sentence_english": "The innkeeper served us a good meal.", + "pos": "noun", + "word_frequency": 22907 + }, + { + "word": "avarie", + "article_with_word": "une avarie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damage;breakdown", + "example_sentence_native": "Le navire a subi une avarie moteur.", + "example_sentence_english": "The ship suffered engine damage.", + "pos": "noun", + "word_frequency": 22909 + }, + { + "word": "balustrade", + "article_with_word": "la balustrade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balustrade;railing", + "example_sentence_native": "Il s'est appuyé sur la balustrade du balcon.", + "example_sentence_english": "He leaned on the balcony railing.", + "pos": "noun", + "word_frequency": 22910 + }, + { + "word": "bizutage", + "article_with_word": "le bizutage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hazing;initiation ritual", + "example_sentence_native": "Le bizutage est interdit dans de nombreuses universités.", + "example_sentence_english": "Hazing is forbidden in many universities.", + "pos": "noun", + "word_frequency": 22918 + }, + { + "word": "boisseau", + "article_with_word": "un boisseau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bushel (old unit of measure);hopper", + "example_sentence_native": "Autrefois, on mesurait le grain en boisseaux.", + "example_sentence_english": "In the past, grain was measured in bushels.", + "pos": "noun", + "word_frequency": 22919 + }, + { + "word": "braconnier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poacher", + "example_sentence_native": "Le braconnier a été arrêté dans la forêt.", + "example_sentence_english": "The poacher was arrested in the forest.", + "pos": "noun", + "word_frequency": 22923 + }, + { + "word": "bricoleur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handyman", + "example_sentence_native": "Mon père est un excellent bricoleur.", + "example_sentence_english": "My father is an excellent handyman.", + "pos": "noun", + "word_frequency": 22924 + }, + { + "word": "bureaucrate", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucrat", + "example_sentence_native": "Les bureaucrates sont souvent perçus comme lents.", + "example_sentence_english": "Bureaucrats are often perceived as slow.", + "pos": "noun", + "word_frequency": 22927 + }, + { + "word": "burin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chisel", + "example_sentence_native": "L'artiste a utilisé un burin pour sculpter la pierre.", + "example_sentence_english": "The artist used a chisel to sculpt the stone.", + "pos": "noun", + "word_frequency": 22928 + }, + { + "word": "burkinabè", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Burkinabe", + "example_sentence_native": "Un Burkinabè vit dans notre quartier.", + "example_sentence_english": "A Burkinabe lives in our neighborhood.", + "pos": "noun", + "word_frequency": 22929 + }, + { + "word": "cantonnement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cantonment", + "example_sentence_native": "Le cantonnement des troupes a été décidé.", + "example_sentence_english": "The billeting of the troops was decided.", + "pos": "noun", + "word_frequency": 22932 + }, + { + "word": "champenois", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Champenois (person from Champagne)", + "example_sentence_native": "Les Champenois sont fiers de leur vin.", + "example_sentence_english": "The Champenois are proud of their wine.", + "pos": "noun", + "word_frequency": 22935 + }, + { + "word": "chardon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thistle", + "example_sentence_native": "Le chardon est une plante épineuse.", + "example_sentence_english": "The thistle is a thorny plant.", + "pos": "noun", + "word_frequency": 22937 + }, + { + "word": "charley", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hi-hat (cymbal)", + "example_sentence_native": "Le batteur a frappé le charley.", + "example_sentence_english": "The drummer hit the hi-hat.", + "pos": "noun", + "word_frequency": 22938 + }, + { + "word": "chavirer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capsize", + "example_sentence_native": "Le bateau a chaviré pendant la tempête.", + "example_sentence_english": "The boat capsized during the storm.", + "pos": "verb", + "word_frequency": 22940 + }, + { + "word": "chorégraphique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "choreographic", + "example_sentence_native": "Elle a créé une œuvre chorégraphique impressionnante.", + "example_sentence_english": "She created an impressive choreographic work.", + "pos": "adjective", + "word_frequency": 22942 + }, + { + "word": "chypriote", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cypriot", + "example_sentence_native": "Un Chypriote a remporté la médaille.", + "example_sentence_english": "A Cypriot won the medal.", + "pos": "noun", + "word_frequency": 22943 + }, + { + "word": "condescendant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condescending", + "example_sentence_native": "Son ton était très condescendant.", + "example_sentence_english": "His tone was very condescending.", + "pos": "adjective", + "word_frequency": 22949 + }, + { + "word": "condom", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condom", + "example_sentence_native": "Il est important d'utiliser un condom pour se protéger.", + "example_sentence_english": "It is important to use a condom for protection.", + "pos": "noun", + "word_frequency": 22950 + }, + { + "word": "confetti", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confetti", + "example_sentence_native": "Les enfants ont jeté des confettis lors de la fête.", + "example_sentence_english": "The children threw confetti at the party.", + "pos": "noun", + "word_frequency": 22951 + }, + { + "word": "consensuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consensual", + "example_sentence_native": "La décision a été prise de manière consensuelle.", + "example_sentence_english": "The decision was made consensually.", + "pos": "adjective", + "word_frequency": 22952 + }, + { + "word": "copte", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Copt", + "example_sentence_native": "Il étudie l'art copte.", + "example_sentence_english": "He studies Coptic art.", + "pos": "noun", + "word_frequency": 22953 + }, + { + "word": "cordial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cordial", + "example_sentence_native": "Nous avons reçu un accueil très cordial.", + "example_sentence_english": "We received a very cordial welcome.", + "pos": "adjective", + "word_frequency": 22954 + }, + { + "word": "corso", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parade", + "example_sentence_native": "Le corso fleuri attire de nombreux touristes.", + "example_sentence_english": "The flower parade attracts many tourists.", + "pos": "noun", + "word_frequency": 22956 + }, + { + "word": "courber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bend", + "example_sentence_native": "Il faut courber le dos pour ramasser ça.", + "example_sentence_english": "You have to bend your back to pick that up.", + "pos": "verb", + "word_frequency": 22957 + }, + { + "word": "criée", + "article_with_word": "la criée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fish market;auction", + "example_sentence_native": "Nous avons acheté du poisson frais à la criée ce matin.", + "example_sentence_english": "We bought fresh fish at the fish market this morning.", + "pos": "noun", + "word_frequency": 22961 + }, + { + "word": "cuiller", + "article_with_word": "la cuiller", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spoon", + "example_sentence_native": "Passe-moi la cuiller, s'il te plaît.", + "example_sentence_english": "Pass me the spoon, please.", + "pos": "noun", + "word_frequency": 22963 + }, + { + "word": "dissociation", + "article_with_word": "la dissociation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissociation", + "example_sentence_native": "La dissociation peut être une réaction au stress intense.", + "example_sentence_english": "Dissociation can be a reaction to intense stress.", + "pos": "noun", + "word_frequency": 22968 + }, + { + "word": "dramaturgie", + "article_with_word": "la dramaturgie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dramaturgy", + "example_sentence_native": "La dramaturgie de cette pièce est très complexe.", + "example_sentence_english": "The dramaturgy of this play is very complex.", + "pos": "noun", + "word_frequency": 22972 + }, + { + "word": "dubitatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dubious;doubtful", + "example_sentence_native": "Il est resté dubitatif face à ses explications.", + "example_sentence_english": "He remained dubious about his explanations.", + "pos": "adjective", + "word_frequency": 22974 + }, + { + "word": "déferlement", + "article_with_word": "le déferlement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surge;outpouring;breaking (of waves)", + "example_sentence_native": "Il y a eu un déferlement de critiques après l'annonce.", + "example_sentence_english": "There was an outpouring of criticism after the announcement.", + "pos": "noun", + "word_frequency": 22977 + }, + { + "word": "défigurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disfigure", + "example_sentence_native": "L'accident a défiguré son visage.", + "example_sentence_english": "The accident disfigured his face.", + "pos": "verb", + "word_frequency": 22978 + }, + { + "word": "déjanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to go crazy;to lose it", + "example_sentence_native": "Après tant de stress, il a commencé à déjanter.", + "example_sentence_english": "After so much stress, he started to go crazy.", + "pos": "verb", + "word_frequency": 22979 + }, + { + "word": "délabrement", + "article_with_word": "le délabrement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilapidation;decay;deterioration", + "example_sentence_native": "La maison était en état de délabrement avancé.", + "example_sentence_english": "The house was in an advanced state of dilapidation.", + "pos": "noun", + "word_frequency": 22980 + }, + { + "word": "délibérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliberate", + "example_sentence_native": "Le jury va délibérer pendant plusieurs heures.", + "example_sentence_english": "The jury will deliberate for several hours.", + "pos": "verb", + "word_frequency": 22981 + }, + { + "word": "dérogatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derogatory;waiving", + "example_sentence_native": "Une mesure dérogatoire a été appliquée dans ce cas précis.", + "example_sentence_english": "A derogatory measure was applied in this specific case.", + "pos": "adjective", + "word_frequency": 22982 + }, + { + "word": "enclencher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to engage;to trigger;to start", + "example_sentence_native": "Il faut enclencher le mécanisme pour que ça fonctionne.", + "example_sentence_english": "You need to engage the mechanism for it to work.", + "pos": "verb", + "word_frequency": 22987 + }, + { + "word": "encodage", + "article_with_word": "l’encodage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encoding", + "example_sentence_native": "L'encodage des données est une étape cruciale.", + "example_sentence_english": "Data encoding is a crucial step.", + "pos": "noun", + "word_frequency": 22988 + }, + { + "word": "ensevelir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bury;to engulf", + "example_sentence_native": "La neige a enseveli le village entier.", + "example_sentence_english": "The snow buried the entire village.", + "pos": "verb", + "word_frequency": 22991 + }, + { + "word": "entacher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to tarnish;to stain", + "example_sentence_native": "Ce scandale a entaché sa réputation.", + "example_sentence_english": "This scandal tarnished his reputation.", + "pos": "verb", + "word_frequency": 22992 + }, + { + "word": "entête", + "article_with_word": "l’entête", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "header", + "example_sentence_native": "Veuillez vérifier l'entête du document.", + "example_sentence_english": "Please check the document header.", + "pos": "noun", + "word_frequency": 22993 + }, + { + "word": "espacer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to space out", + "example_sentence_native": "Il faut espacer les visites pour ne pas fatiguer le patient.", + "example_sentence_english": "You need to space out the visits so as not to tire the patient.", + "pos": "verb", + "word_frequency": 22995 + }, + { + "word": "essouffler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make breathless;to run out of breath", + "example_sentence_native": "La montée rapide m'a essoufflé.", + "example_sentence_english": "The rapid climb made me breathless.", + "pos": "verb", + "word_frequency": 22996 + }, + { + "word": "etudier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to study", + "example_sentence_native": "J'aime étudier le français tous les jours.", + "example_sentence_english": "I like to study French every day.", + "pos": "verb", + "word_frequency": 22997 + }, + { + "word": "extensif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extensive", + "example_sentence_native": "Ils ont mené une recherche extensive sur le sujet.", + "example_sentence_english": "They conducted extensive research on the subject.", + "pos": "adjective", + "word_frequency": 22999 + }, + { + "word": "ficeler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie up;to truss", + "example_sentence_native": "Il faut ficeler le rôti avant de le cuire.", + "example_sentence_english": "You have to truss the roast before cooking it.", + "pos": "verb", + "word_frequency": 23002 + }, + { + "word": "florin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "florin", + "example_sentence_native": "Le florin était une ancienne monnaie européenne.", + "example_sentence_english": "The florin was an old European currency.", + "pos": "noun", + "word_frequency": 23004 + }, + { + "word": "frontiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Front National supporter;member", + "example_sentence_native": "Un frontiste a été élu au conseil municipal.", + "example_sentence_english": "A Front National supporter was elected to the city council.", + "pos": "noun", + "word_frequency": 23007 + }, + { + "word": "gotha", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "the Gotha;high society;elite", + "example_sentence_native": "Il fait partie du gotha parisien.", + "example_sentence_english": "He is part of the Parisian high society.", + "pos": "noun", + "word_frequency": 23010 + }, + { + "word": "hamac", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hammock", + "example_sentence_native": "J'aime lire dans mon hamac.", + "example_sentence_english": "I like to read in my hammock.", + "pos": "noun", + "word_frequency": 23013 + }, + { + "word": "harki", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Harki", + "example_sentence_native": "Les harkis ont joué un rôle complexe dans l'histoire de l'Algérie.", + "example_sentence_english": "The Harkis played a complex role in Algeria's history.", + "pos": "noun", + "word_frequency": 23015 + }, + { + "word": "hippique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equestrian;horse-related", + "example_sentence_native": "Elle pratique l'équitation dans un centre hippique.", + "example_sentence_english": "She practices horse riding at an equestrian center.", + "pos": "adjective", + "word_frequency": 23018 + }, + { + "word": "hydrater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hydrate", + "example_sentence_native": "Il est important de bien s'hydrater en été.", + "example_sentence_english": "It's important to hydrate well in summer.", + "pos": "verb", + "word_frequency": 23023 + }, + { + "word": "hymen", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "hymen", + "example_sentence_native": "L'hymen est une membrane.", + "example_sentence_english": "The hymen is a membrane.", + "pos": "noun", + "word_frequency": 23024 + }, + { + "word": "imitateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impersonator;imitator", + "example_sentence_native": "Cet imitateur est très doué pour les voix.", + "example_sentence_english": "This impersonator is very good with voices.", + "pos": "noun", + "word_frequency": 23026 + }, + { + "word": "insatisfait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dissatisfied;unsatisfied", + "example_sentence_native": "Il est insatisfait de son travail.", + "example_sentence_english": "He is dissatisfied with his job.", + "pos": "adjective", + "word_frequency": 23027 + }, + { + "word": "instit", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primary school teacher (colloquial)", + "example_sentence_native": "Mon instit était très gentil.", + "example_sentence_english": "My primary school teacher was very kind.", + "pos": "noun", + "word_frequency": 23029 + }, + { + "word": "invasif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invasive", + "example_sentence_native": "C'est une espèce invasive qui menace l'écosystème local.", + "example_sentence_english": "It's an invasive species that threatens the local ecosystem.", + "pos": "adjective", + "word_frequency": 23030 + }, + { + "word": "justiciable", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "litigant;person subject to justice", + "example_sentence_native": "Chaque justiciable a droit à un procès équitable.", + "example_sentence_english": "Every litigant has the right to a fair trial.", + "pos": "noun", + "word_frequency": 23039 + }, + { + "word": "kilométrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kilometer-long;very long", + "example_sentence_native": "Il y a un embouteillage kilométrique sur l'autoroute.", + "example_sentence_english": "There is a kilometer-long traffic jam on the highway.", + "pos": "adjective", + "word_frequency": 23041 + }, + { + "word": "lifestyle", + "article_with_word": "le lifestyle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifestyle", + "example_sentence_native": "Son nouveau lifestyle est très sain.", + "example_sentence_english": "His new lifestyle is very healthy.", + "pos": "noun", + "word_frequency": 23047 + }, + { + "word": "lotion", + "article_with_word": "la lotion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lotion", + "example_sentence_native": "Elle applique une lotion hydratante sur sa peau.", + "example_sentence_english": "She applies a moisturizing lotion to her skin.", + "pos": "noun", + "word_frequency": 23050 + }, + { + "word": "mahdi", + "article_with_word": "le Mahdi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Mahdi (messianic figure in Islam)", + "example_sentence_native": "Le Mahdi est une figure eschatologique de l'islam.", + "example_sentence_english": "The Mahdi is an eschatological figure in Islam.", + "pos": "noun", + "word_frequency": 23052 + }, + { + "word": "maint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "many a;several", + "example_sentence_native": "Maintes fois, il a essayé de la contacter.", + "example_sentence_english": "Many a time, he tried to contact her.", + "pos": "adjective", + "word_frequency": 23053 + }, + { + "word": "majorer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase;to overcharge", + "example_sentence_native": "La banque a majoré les frais de dossier.", + "example_sentence_english": "The bank increased the processing fees.", + "pos": "verb", + "word_frequency": 23054 + }, + { + "word": "mimétisme", + "article_with_word": "le mimétisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mimicry;mimetism", + "example_sentence_native": "Le mimétisme est une stratégie de survie chez certains animaux.", + "example_sentence_english": "Mimicry is a survival strategy in some animals.", + "pos": "noun", + "word_frequency": 23059 + }, + { + "word": "molaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molar", + "example_sentence_native": "Les dents molaires sont utilisées pour broyer les aliments.", + "example_sentence_english": "Molar teeth are used to grind food.", + "pos": "adjective", + "word_frequency": 23061 + }, + { + "word": "mood", + "article_with_word": "le mood", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mood", + "example_sentence_native": "J'aime le mood de ce café, c'est très relaxant.", + "example_sentence_english": "I like the mood of this cafe, it's very relaxing.", + "pos": "noun", + "word_frequency": 23063 + }, + { + "word": "mozzarella", + "article_with_word": "la mozzarella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mozzarella", + "example_sentence_native": "J'ai mis de la mozzarella sur ma pizza.", + "example_sentence_english": "I put mozzarella on my pizza.", + "pos": "noun", + "word_frequency": 23066 + }, + { + "word": "nao", + "article_with_word": "la nao", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carrack;nao (type of ship)", + "example_sentence_native": "Les explorateurs utilisaient des naos pour leurs longs voyages.", + "example_sentence_english": "Explorers used carracks for their long voyages.", + "pos": "noun", + "word_frequency": 23071 + }, + { + "word": "nutritif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutritious", + "example_sentence_native": "Les légumes sont très nutritifs pour la santé.", + "example_sentence_english": "Vegetables are very nutritious for health.", + "pos": "adjective", + "word_frequency": 23074 + }, + { + "word": "névrose", + "article_with_word": "la névrose", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurosis", + "example_sentence_native": "Il souffre d'une névrose d'angoisse.", + "example_sentence_english": "He suffers from an anxiety neurosis.", + "pos": "noun", + "word_frequency": 23075 + }, + { + "word": "onction", + "article_with_word": "l'onction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anointing;unction", + "example_sentence_native": "L'onction des malades est un sacrement.", + "example_sentence_english": "The anointing of the sick is a sacrament.", + "pos": "noun", + "word_frequency": 23077 + }, + { + "word": "ophtalmo", + "article_with_word": "l'ophtalmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ophthalmologist (informal)", + "example_sentence_native": "J'ai rendez-vous chez l'ophtalmo la semaine prochaine.", + "example_sentence_english": "I have an appointment with the ophthalmologist next week.", + "pos": "noun", + "word_frequency": 23078 + }, + { + "word": "oppresseur", + "article_with_word": "l'oppresseur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oppressor", + "example_sentence_native": "Le peuple s'est révolté contre son oppresseur.", + "example_sentence_english": "The people revolted against their oppressor.", + "pos": "noun", + "word_frequency": 23079 + }, + { + "word": "orangerie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orangery", + "example_sentence_native": "L'orangerie du château est magnifique.", + "example_sentence_english": "The castle's orangery is magnificent.", + "pos": "noun", + "word_frequency": 23080 + }, + { + "word": "osmose", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "osmosis", + "example_sentence_native": "Il y a une osmose parfaite entre les membres de l'équipe.", + "example_sentence_english": "There is a perfect osmosis between the team members.", + "pos": "noun", + "word_frequency": 23082 + }, + { + "word": "parasol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parasol;beach umbrella", + "example_sentence_native": "Nous avons ouvert le parasol pour nous protéger du soleil.", + "example_sentence_english": "We opened the parasol to protect ourselves from the sun.", + "pos": "noun", + "word_frequency": 23085 + }, + { + "word": "paumer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lose (informal);to get lost", + "example_sentence_native": "J'ai paumé mes clés. Je me suis paumé dans la ville.", + "example_sentence_english": "I lost my keys. I got lost in the city.", + "pos": "verb", + "word_frequency": 23087 + }, + { + "word": "peps", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pep;energy;dynamism", + "example_sentence_native": "Cette musique donne du peps.", + "example_sentence_english": "This music gives energy.", + "pos": "noun", + "word_frequency": 23088 + }, + { + "word": "pirogue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dugout canoe;pirogue", + "example_sentence_native": "Ils ont traversé la rivière en pirogue.", + "example_sentence_english": "They crossed the river in a pirogue.", + "pos": "noun", + "word_frequency": 23094 + }, + { + "word": "pliant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "folding;flexible;pliable", + "example_sentence_native": "Nous avons acheté des chaises pliantes pour le jardin.", + "example_sentence_english": "We bought folding chairs for the garden.", + "pos": "adjective", + "word_frequency": 23095 + }, + { + "word": "procréer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to procreate", + "example_sentence_native": "La nature pousse les êtres vivants à procréer.", + "example_sentence_english": "Nature pushes living beings to procreate.", + "pos": "verb", + "word_frequency": 23097 + }, + { + "word": "profanation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profanation;desecration", + "example_sentence_native": "La profanation d'un lieu sacré est un acte grave.", + "example_sentence_english": "The profanation of a sacred place is a serious act.", + "pos": "noun", + "word_frequency": 23098 + }, + { + "word": "promiscuité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promiscuity;close proximity;overcrowding", + "example_sentence_native": "La promiscuité dans les petits appartements peut être difficile.", + "example_sentence_english": "Overcrowding in small apartments can be difficult.", + "pos": "noun", + "word_frequency": 23099 + }, + { + "word": "proxénétisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "pimping;procuring", + "example_sentence_native": "Le proxénétisme est un délit grave.", + "example_sentence_english": "Pimping is a serious offense.", + "pos": "noun", + "word_frequency": 23100 + }, + { + "word": "prénommer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be named;to call (by first name)", + "example_sentence_native": "Il se prénomme Jean.", + "example_sentence_english": "His first name is Jean.", + "pos": "verb", + "word_frequency": 23101 + }, + { + "word": "préposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to put in charge of;to assign", + "example_sentence_native": "On l'a préposé à la surveillance des lieux.", + "example_sentence_english": "He was put in charge of monitoring the premises.", + "pos": "verb", + "word_frequency": 23102 + }, + { + "word": "présomptueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumptuous;arrogant", + "example_sentence_native": "Son attitude présomptueuse agace tout le monde.", + "example_sentence_english": "His presumptuous attitude annoys everyone.", + "pos": "adjective", + "word_frequency": 23103 + }, + { + "word": "pulvériser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pulverize;to crush;to spray", + "example_sentence_native": "L'athlète a pulvérisé le record du monde.", + "example_sentence_english": "The athlete pulverized the world record.", + "pos": "verb", + "word_frequency": 23105 + }, + { + "word": "quidam", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "an unknown person;a certain person", + "example_sentence_native": "Un quidam a laissé ce paquet devant la porte.", + "example_sentence_english": "A certain person left this package in front of the door.", + "pos": "noun", + "word_frequency": 23106 + }, + { + "word": "rais", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ray (of light);spoke (of a wheel)", + "example_sentence_native": "Les rais de lumière traversaient les nuages.", + "example_sentence_english": "The rays of light pierced through the clouds.", + "pos": "noun", + "word_frequency": 23107 + }, + { + "word": "redondance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redundancy", + "example_sentence_native": "Il faut éviter la redondance dans l'écriture.", + "example_sentence_english": "Redundancy should be avoided in writing.", + "pos": "noun", + "word_frequency": 23110 + }, + { + "word": "redéfinition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redefinition", + "example_sentence_native": "Le projet nécessite une redéfinition de ses objectifs.", + "example_sentence_english": "The project requires a redefinition of its objectives.", + "pos": "noun", + "word_frequency": 23111 + }, + { + "word": "refoulement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repression;expulsion;pushing back", + "example_sentence_native": "Le refoulement des émotions peut être néfaste.", + "example_sentence_english": "The repression of emotions can be harmful.", + "pos": "noun", + "word_frequency": 23112 + }, + { + "word": "relooking", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "makeover;restyling", + "example_sentence_native": "Elle a eu un relooking complet pour l'émission.", + "example_sentence_english": "She had a complete makeover for the show.", + "pos": "noun", + "word_frequency": 23113 + }, + { + "word": "remarier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remarry", + "example_sentence_native": "Après son divorce, il a décidé de se remarier.", + "example_sentence_english": "After his divorce, he decided to remarry.", + "pos": "verb", + "word_frequency": 23114 + }, + { + "word": "renchérir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to outbid;to add to;to go one better", + "example_sentence_native": "Il a renchéri sur l'offre de son concurrent.", + "example_sentence_english": "He outbid his competitor's offer.", + "pos": "verb", + "word_frequency": 23115 + }, + { + "word": "rillette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rillette (potted meat spread)", + "example_sentence_native": "J'adore les rillettes de porc sur du pain frais.", + "example_sentence_english": "I love pork rillettes on fresh bread.", + "pos": "noun", + "word_frequency": 23118 + }, + { + "word": "romarin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosemary", + "example_sentence_native": "Le romarin est une herbe aromatique.", + "example_sentence_english": "Rosemary is an aromatic herb.", + "pos": "noun", + "word_frequency": 23119 + }, + { + "word": "récitation", + "article_with_word": "la récitation", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recitation", + "example_sentence_native": "La récitation de poèmes est une tradition dans cette école.", + "example_sentence_english": "The recitation of poems is a tradition in this school.", + "pos": "noun", + "word_frequency": 23120 + }, + { + "word": "récépissé", + "article_with_word": "le récépissé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receipt;acknowledgment", + "example_sentence_native": "N'oubliez pas de demander un récépissé pour votre paiement.", + "example_sentence_english": "Don't forget to ask for a receipt for your payment.", + "pos": "noun", + "word_frequency": 23121 + }, + { + "word": "référé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referred;summary (legal)", + "example_sentence_native": "La procédure de référé permet une décision rapide.", + "example_sentence_english": "The summary procedure allows for a quick decision.", + "pos": "adjective", + "word_frequency": 23122 + }, + { + "word": "réglable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjustable", + "example_sentence_native": "Cette chaise est réglable en hauteur.", + "example_sentence_english": "This chair is adjustable in height.", + "pos": "adjective", + "word_frequency": 23123 + }, + { + "word": "rétrograder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demote;to downshift", + "example_sentence_native": "Le joueur a été rétrogradé en équipe réserve.", + "example_sentence_english": "The player was demoted to the reserve team.", + "pos": "verb", + "word_frequency": 23124 + }, + { + "word": "rétrécir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shrink;to narrow", + "example_sentence_native": "Ce pull a rétréci au lavage.", + "example_sentence_english": "This sweater shrunk in the wash.", + "pos": "verb", + "word_frequency": 23125 + }, + { + "word": "sangsue", + "article_with_word": "la sangsue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leech", + "example_sentence_native": "Les sangsues étaient autrefois utilisées en médecine.", + "example_sentence_english": "Leeches were once used in medicine.", + "pos": "noun", + "word_frequency": 23129 + }, + { + "word": "saxonne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saxon", + "example_sentence_native": "L'architecture saxonne est caractéristique de cette région.", + "example_sentence_english": "Saxon architecture is characteristic of this region.", + "pos": "adjective", + "word_frequency": 23131 + }, + { + "word": "sheriff", + "article_with_word": "le shérif", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheriff", + "example_sentence_native": "Le shérif a arrêté le suspect.", + "example_sentence_english": "The sheriff arrested the suspect.", + "pos": "noun", + "word_frequency": 23136 + }, + { + "word": "sicilien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sicilian", + "example_sentence_native": "La cuisine sicilienne est très savoureuse.", + "example_sentence_english": "Sicilian cuisine is very tasty.", + "pos": "adjective", + "word_frequency": 23137 + }, + { + "word": "stalker", + "article_with_word": "le stalker", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stalker", + "example_sentence_native": "Elle a déposé une plainte contre son stalker.", + "example_sentence_english": "She filed a complaint against her stalker.", + "pos": "noun", + "word_frequency": 23140 + }, + { + "word": "strass", + "article_with_word": "le strass", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhinestone;paste (gem)", + "example_sentence_native": "Sa robe était ornée de strass brillants.", + "example_sentence_english": "Her dress was adorned with sparkling rhinestones.", + "pos": "noun", + "word_frequency": 23141 + }, + { + "word": "streamer", + "article_with_word": "le streamer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "streamer (person who streams online)", + "example_sentence_native": "Ce streamer a des milliers d'abonnés sur Twitch.", + "example_sentence_english": "This streamer has thousands of subscribers on Twitch.", + "pos": "noun", + "word_frequency": 23142 + }, + { + "word": "subsidiaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsidiary;secondary", + "example_sentence_native": "Cette question est d'importance subsidiaire.", + "example_sentence_english": "This question is of subsidiary importance.", + "pos": "adjective", + "word_frequency": 23143 + }, + { + "word": "survivance", + "article_with_word": "la survivance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "survival;vestige;remnant", + "example_sentence_native": "La survivance de cette tradition est remarquable.", + "example_sentence_english": "The survival of this tradition is remarkable.", + "pos": "noun", + "word_frequency": 23144 + }, + { + "word": "tamis", + "article_with_word": "le tamis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sieve;strainer", + "example_sentence_native": "Il a passé la farine au tamis.", + "example_sentence_english": "He passed the flour through the sieve.", + "pos": "noun", + "word_frequency": 23145 + }, + { + "word": "tatar", + "article_with_word": "le tatar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tatar (person or language)", + "example_sentence_native": "Le tatar est une langue turcique.", + "example_sentence_english": "Tatar is a Turkic language.", + "pos": "noun", + "word_frequency": 23147 + }, + { + "word": "twittos", + "article_with_word": "le twittos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Twitter user;'tweeter'", + "example_sentence_native": "Les twittos ont réagi vivement à l'annonce.", + "example_sentence_english": "Twitter users reacted strongly to the announcement.", + "pos": "noun", + "word_frequency": 23153 + }, + { + "word": "venimeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "venomous", + "example_sentence_native": "Ce serpent est très venimeux.", + "example_sentence_english": "This snake is very venomous.", + "pos": "adjective", + "word_frequency": 23160 + }, + { + "word": "viennoiserie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pastry (e.g.;croissant;pain au chocolat)", + "example_sentence_native": "J'adore manger une viennoiserie avec mon café le matin.", + "example_sentence_english": "I love eating a pastry with my coffee in the morning.", + "pos": "noun", + "word_frequency": 23161 + }, + { + "word": "véhémence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vehemence", + "example_sentence_native": "Il a défendu son point de vue avec une grande véhémence.", + "example_sentence_english": "He defended his point of view with great vehemence.", + "pos": "noun", + "word_frequency": 23163 + }, + { + "word": "vésicule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vesicle;gallbladder", + "example_sentence_native": "La vésicule biliaire stocke la bile.", + "example_sentence_english": "The gallbladder stores bile.", + "pos": "noun", + "word_frequency": 23164 + }, + { + "word": "zoomer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to zoom", + "example_sentence_native": "Vous pouvez zoomer sur l'image pour voir les détails.", + "example_sentence_english": "You can zoom in on the image to see the details.", + "pos": "verb", + "word_frequency": 23168 + }, + { + "word": "épandage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spreading;spraying (e.g.;fertilizer)", + "example_sentence_native": "L'épandage des engrais est essentiel pour la récolte.", + "example_sentence_english": "The spreading of fertilizers is essential for the harvest.", + "pos": "noun", + "word_frequency": 23169 + }, + { + "word": "épidémiologie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "epidemiology", + "example_sentence_native": "L'épidémiologie est l'étude de la répartition des maladies.", + "example_sentence_english": "Epidemiology is the study of the distribution of diseases.", + "pos": "noun", + "word_frequency": 23170 + }, + { + "word": "épistolaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epistolary", + "example_sentence_native": "Ce roman est écrit sous forme épistolaire.", + "example_sentence_english": "This novel is written in epistolary form.", + "pos": "adjective", + "word_frequency": 23171 + }, + { + "word": "abasourdir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to astound;to stun", + "example_sentence_native": "La nouvelle l'a complètement abasourdi.", + "example_sentence_english": "The news completely astounded him.", + "pos": "verb", + "word_frequency": 23172 + }, + { + "word": "accabler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overwhelm;to burden", + "example_sentence_native": "Il se sentait accablé par le travail.", + "example_sentence_english": "He felt overwhelmed by the work.", + "pos": "verb", + "word_frequency": 23173 + }, + { + "word": "adjoindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to appoint as assistant;to attach", + "example_sentence_native": "On lui a adjoint un assistant pour ce projet.", + "example_sentence_english": "An assistant was appointed to him for this project.", + "pos": "verb", + "word_frequency": 23174 + }, + { + "word": "affect", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affect;emotion", + "example_sentence_native": "Son affect était visible sur son visage.", + "example_sentence_english": "His affect was visible on his face.", + "pos": "noun", + "word_frequency": 23176 + }, + { + "word": "affranchissement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postage;liberation", + "example_sentence_native": "Le prix de l'affranchissement a augmenté.", + "example_sentence_english": "The price of postage has increased.", + "pos": "noun", + "word_frequency": 23177 + }, + { + "word": "alpiniste", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountaineer;climber", + "example_sentence_native": "L'alpiniste a atteint le sommet de la montagne.", + "example_sentence_english": "The mountaineer reached the summit of the mountain.", + "pos": "noun", + "word_frequency": 23179 + }, + { + "word": "amadouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to coax;to appease;to sweet-talk", + "example_sentence_native": "Il a essayé d'amadouer le chien avec une friandise.", + "example_sentence_english": "He tried to coax the dog with a treat.", + "pos": "verb", + "word_frequency": 23181 + }, + { + "word": "andouille", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "andouille (sausage);idiot (colloquial)", + "example_sentence_native": "Ne fais pas l'andouille, sois sérieux !", + "example_sentence_english": "Don't be an idiot, be serious!", + "pos": "noun", + "word_frequency": 23183 + }, + { + "word": "anesthésiste", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anesthetist;anesthesiologist", + "example_sentence_native": "L'anesthésiste a expliqué la procédure avant l'opération.", + "example_sentence_english": "The anesthetist explained the procedure before the operation.", + "pos": "noun", + "word_frequency": 23184 + }, + { + "word": "animalerie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pet shop", + "example_sentence_native": "Nous sommes allés à l'animalerie pour acheter de la nourriture pour notre chat.", + "example_sentence_english": "We went to the pet shop to buy food for our cat.", + "pos": "noun", + "word_frequency": 23185 + }, + { + "word": "antifasciste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antifascist", + "example_sentence_native": "Il a toujours eu des convictions antifascistes.", + "example_sentence_english": "He always had antifascist convictions.", + "pos": "adjective", + "word_frequency": 23186 + }, + { + "word": "aqueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aqueous;watery", + "example_sentence_native": "La solution était aqueuse et transparente.", + "example_sentence_english": "The solution was aqueous and transparent.", + "pos": "adjective", + "word_frequency": 23188 + }, + { + "word": "atlantide", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Atlantis", + "example_sentence_native": "La légende de l'Atlantide fascine toujours.", + "example_sentence_english": "The legend of Atlantis still fascinates.", + "pos": "noun", + "word_frequency": 23192 + }, + { + "word": "audimat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "TV ratings (audience measurement)", + "example_sentence_native": "L'audimat de l'émission a chuté cette semaine.", + "example_sentence_english": "The show's TV ratings dropped this week.", + "pos": "noun", + "word_frequency": 23194 + }, + { + "word": "avarice", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avarice;greed", + "example_sentence_native": "Son avarice l'a rendu très impopulaire.", + "example_sentence_english": "His avarice made him very unpopular.", + "pos": "noun", + "word_frequency": 23195 + }, + { + "word": "azimut", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "azimuth", + "example_sentence_native": "Le navire a changé d'azimut pour éviter la tempête.", + "example_sentence_english": "The ship changed azimuth to avoid the storm.", + "pos": "noun", + "word_frequency": 23196 + }, + { + "word": "bazooka", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bazooka", + "example_sentence_native": "Le soldat portait un bazooka sur son épaule.", + "example_sentence_english": "The soldier carried a bazooka on his shoulder.", + "pos": "noun", + "word_frequency": 23201 + }, + { + "word": "belgo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Belgian (prefix)", + "example_sentence_native": "Il a la double nationalité belgo-française.", + "example_sentence_english": "He has dual Belgo-French nationality.", + "pos": "adjective", + "word_frequency": 23203 + }, + { + "word": "biliaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biliary", + "example_sentence_native": "Il souffre d'une crise biliaire.", + "example_sentence_english": "He is suffering from a biliary attack.", + "pos": "adjective", + "word_frequency": 23204 + }, + { + "word": "bimbo", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bimbo", + "example_sentence_native": "Elle a été qualifiée de bimbo par les médias.", + "example_sentence_english": "She was called a bimbo by the media.", + "pos": "noun", + "word_frequency": 23205 + }, + { + "word": "bioéthique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bioethics", + "example_sentence_native": "La bioéthique soulève des questions complexes.", + "example_sentence_english": "Bioethics raises complex questions.", + "pos": "noun", + "word_frequency": 23206 + }, + { + "word": "blanchisserie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laundry", + "example_sentence_native": "J'ai déposé mes vêtements à la blanchisserie.", + "example_sentence_english": "I dropped off my clothes at the laundry.", + "pos": "noun", + "word_frequency": 23208 + }, + { + "word": "bop", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bop (jazz style)", + "example_sentence_native": "Il est un grand amateur de bebop et de hard bop.", + "example_sentence_english": "He is a great fan of bebop and hard bop.", + "pos": "noun", + "word_frequency": 23210 + }, + { + "word": "broyeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grinder;shredder", + "example_sentence_native": "Le broyeur de végétaux est très efficace.", + "example_sentence_english": "The garden shredder is very efficient.", + "pos": "noun", + "word_frequency": 23214 + }, + { + "word": "cabot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutt;ham actor", + "example_sentence_native": "Ce cabot aboie toute la nuit.", + "example_sentence_english": "This mutt barks all night.", + "pos": "noun", + "word_frequency": 23215 + }, + { + "word": "caustique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caustic", + "example_sentence_native": "Son humour caustique ne plaît pas à tout le monde.", + "example_sentence_english": "His caustic humor doesn't please everyone.", + "pos": "adjective", + "word_frequency": 23221 + }, + { + "word": "caïman", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caiman", + "example_sentence_native": "Le caïman est un reptile des zones humides.", + "example_sentence_english": "The caiman is a reptile of wetlands.", + "pos": "noun", + "word_frequency": 23222 + }, + { + "word": "changeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "changeable;fickle", + "example_sentence_native": "Le temps est très changeant en montagne.", + "example_sentence_english": "The weather is very changeable in the mountains.", + "pos": "adjective", + "word_frequency": 23224 + }, + { + "word": "charbonnier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coal miner;charcoal burner", + "example_sentence_native": "Mon grand-père était charbonnier dans le Nord.", + "example_sentence_english": "My grandfather was a coal miner in the North.", + "pos": "noun", + "word_frequency": 23226 + }, + { + "word": "cheyenne", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cheyenne", + "example_sentence_native": "Les Cheyennes sont un peuple amérindien.", + "example_sentence_english": "The Cheyenne are a Native American people.", + "pos": "noun", + "word_frequency": 23228 + }, + { + "word": "clodo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hobo;tramp", + "example_sentence_native": "Il y a un clodo qui dort sous le pont.", + "example_sentence_english": "There's a hobo sleeping under the bridge.", + "pos": "noun", + "word_frequency": 23230 + }, + { + "word": "cochonnerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filth;junk food;mess", + "example_sentence_native": "Arrête de manger toutes ces cochonneries !", + "example_sentence_english": "Stop eating all that junk food!", + "pos": "noun", + "word_frequency": 23231 + }, + { + "word": "codification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "codification", + "example_sentence_native": "La codification des lois est un processus complexe.", + "example_sentence_english": "The codification of laws is a complex process.", + "pos": "noun", + "word_frequency": 23232 + }, + { + "word": "coercition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coercion", + "example_sentence_native": "Il a agi sous la contrainte et la coercition.", + "example_sentence_english": "He acted under duress and coercion.", + "pos": "noun", + "word_frequency": 23233 + }, + { + "word": "colonisateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonizer", + "example_sentence_native": "Les colonisateurs ont imposé leur culture.", + "example_sentence_english": "The colonizers imposed their culture.", + "pos": "noun", + "word_frequency": 23235 + }, + { + "word": "consterner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismay;to appall", + "example_sentence_native": "La nouvelle a consterné tout le monde.", + "example_sentence_english": "The news dismayed everyone.", + "pos": "verb", + "word_frequency": 23236 + }, + { + "word": "continuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continual", + "example_sentence_native": "Il y a un bruit continuel dans la rue.", + "example_sentence_english": "There is a continual noise in the street.", + "pos": "adjective", + "word_frequency": 23237 + }, + { + "word": "contrevenant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offender;violator", + "example_sentence_native": "Le contrevenant a reçu une amende.", + "example_sentence_english": "The offender received a fine.", + "pos": "noun", + "word_frequency": 23238 + }, + { + "word": "convertible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convertible", + "example_sentence_native": "J'ai acheté une voiture convertible.", + "example_sentence_english": "I bought a convertible car.", + "pos": "adjective", + "word_frequency": 23239 + }, + { + "word": "cotiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contribute;to pay contributions", + "example_sentence_native": "Il faut cotiser pour la retraite.", + "example_sentence_english": "You have to contribute for retirement.", + "pos": "verb", + "word_frequency": 23240 + }, + { + "word": "crémation", + "article_with_word": "la crémation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cremation", + "example_sentence_native": "La crémation est une pratique de plus en plus courante.", + "example_sentence_english": "Cremation is an increasingly common practice.", + "pos": "noun", + "word_frequency": 23241 + }, + { + "word": "damier", + "article_with_word": "le damier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "checkerboard;chessboard", + "example_sentence_native": "Le jeu de dames se joue sur un damier.", + "example_sentence_english": "Checkers is played on a checkerboard.", + "pos": "noun", + "word_frequency": 23243 + }, + { + "word": "dentition", + "article_with_word": "la dentition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dentition;set of teeth", + "example_sentence_native": "La dentition des enfants est différente de celle des adultes.", + "example_sentence_english": "Children's dentition is different from adults'.", + "pos": "noun", + "word_frequency": 23245 + }, + { + "word": "despote", + "article_with_word": "le despote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despot", + "example_sentence_native": "Le despote régnait avec une main de fer.", + "example_sentence_english": "The despot ruled with an iron fist.", + "pos": "noun", + "word_frequency": 23246 + }, + { + "word": "drink", + "article_with_word": "le drink", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drink (alcoholic)", + "example_sentence_native": "On va prendre un drink après le travail.", + "example_sentence_english": "We're going to have a drink after work.", + "pos": "noun", + "word_frequency": 23250 + }, + { + "word": "déconstruire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deconstruct", + "example_sentence_native": "Il est important de déconstruire les stéréotypes.", + "example_sentence_english": "It is important to deconstruct stereotypes.", + "pos": "verb", + "word_frequency": 23255 + }, + { + "word": "décontracter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relax;to loosen up", + "example_sentence_native": "Essayez de vous décontracter avant l'examen.", + "example_sentence_english": "Try to relax before the exam.", + "pos": "verb", + "word_frequency": 23256 + }, + { + "word": "déférer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to refer (to court);to comply", + "example_sentence_native": "Le suspect a été déféré devant le procureur.", + "example_sentence_english": "The suspect was referred to the prosecutor.", + "pos": "verb", + "word_frequency": 23257 + }, + { + "word": "dégat", + "article_with_word": "le dégât", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damage", + "example_sentence_native": "Les inondations ont causé d'énormes dégâts.", + "example_sentence_english": "The floods caused enormous damage.", + "pos": "noun", + "word_frequency": 23258 + }, + { + "word": "déneigement", + "article_with_word": "le déneigement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snow removal", + "example_sentence_native": "Le déneigement des routes est essentiel en hiver.", + "example_sentence_english": "Road snow removal is essential in winter.", + "pos": "noun", + "word_frequency": 23259 + }, + { + "word": "dépaysement", + "article_with_word": "le dépaysement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change of scenery;disorientation (from being in a foreign place)", + "example_sentence_native": "J'adore le dépaysement que procurent les voyages.", + "example_sentence_english": "I love the change of scenery that travel provides.", + "pos": "noun", + "word_frequency": 23260 + }, + { + "word": "déterrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unearth;to dig up", + "example_sentence_native": "Ils ont déterré un trésor ancien.", + "example_sentence_english": "They unearthed an ancient treasure.", + "pos": "verb", + "word_frequency": 23261 + }, + { + "word": "elephant", + "article_with_word": "l'éléphant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elephant", + "example_sentence_native": "L'éléphant est le plus grand animal terrestre.", + "example_sentence_english": "The elephant is the largest land animal.", + "pos": "noun", + "word_frequency": 23262 + }, + { + "word": "enclume", + "article_with_word": "l'enclume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anvil", + "example_sentence_native": "Le forgeron frappe le fer sur l'enclume.", + "example_sentence_english": "The blacksmith strikes the iron on the anvil.", + "pos": "noun", + "word_frequency": 23263 + }, + { + "word": "ensanglanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bloody;to stain with blood", + "example_sentence_native": "La bataille a ensanglanté le champ.", + "example_sentence_english": "The battle bloodied the field.", + "pos": "verb", + "word_frequency": 23264 + }, + { + "word": "entreprenariat", + "article_with_word": "l'entreprenariat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrepreneurship", + "example_sentence_native": "L'entreprenariat est essentiel pour l'innovation économique.", + "example_sentence_english": "Entrepreneurship is essential for economic innovation.", + "pos": "noun", + "word_frequency": 23265 + }, + { + "word": "esthéticienne", + "article_with_word": "l'esthéticienne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beautician;aesthetician", + "example_sentence_native": "J'ai rendez-vous chez l'esthéticienne demain.", + "example_sentence_english": "I have an appointment with the beautician tomorrow.", + "pos": "noun", + "word_frequency": 23267 + }, + { + "word": "excédant", + "article_with_word": "l'excédant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surplus;excess", + "example_sentence_native": "L'entreprise a enregistré un excédant budgétaire.", + "example_sentence_english": "The company recorded a budget surplus.", + "pos": "noun", + "word_frequency": 23270 + }, + { + "word": "familiarité", + "article_with_word": "la familiarité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "familiarity", + "example_sentence_native": "Sa familiarité avec le sujet est impressionnante.", + "example_sentence_english": "His familiarity with the subject is impressive.", + "pos": "noun", + "word_frequency": 23272 + }, + { + "word": "figuier", + "article_with_word": "le figuier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fig tree", + "example_sentence_native": "Le figuier donne de délicieuses figues.", + "example_sentence_english": "The fig tree produces delicious figs.", + "pos": "noun", + "word_frequency": 23275 + }, + { + "word": "flasher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flash;to be smitten", + "example_sentence_native": "Le radar a flashé la voiture en excès de vitesse.", + "example_sentence_english": "The radar flashed the speeding car.", + "pos": "verb", + "word_frequency": 23277 + }, + { + "word": "foison", + "article_with_word": "la foison", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abundance;profusion", + "example_sentence_native": "Les idées jaillissaient à foison.", + "example_sentence_english": "Ideas sprang forth in abundance.", + "pos": "noun", + "word_frequency": 23279 + }, + { + "word": "fondamentaliste", + "article_with_word": "le fondamentaliste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamentalist", + "example_sentence_native": "Le fondamentaliste refusait tout compromis.", + "example_sentence_english": "The fundamentalist refused any compromise.", + "pos": "noun", + "word_frequency": 23280 + }, + { + "word": "galanterie", + "article_with_word": "la galanterie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gallantry;chivalry", + "example_sentence_native": "La galanterie est une qualité appréciée.", + "example_sentence_english": "Gallantry is an appreciated quality.", + "pos": "noun", + "word_frequency": 23282 + }, + { + "word": "gasoil", + "article_with_word": "le gasoil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diesel fuel", + "example_sentence_native": "Le prix du gasoil a augmenté.", + "example_sentence_english": "The price of diesel fuel has increased.", + "pos": "noun", + "word_frequency": 23284 + }, + { + "word": "gloss", + "article_with_word": "le gloss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lip gloss", + "example_sentence_native": "Elle a mis du gloss sur ses lèvres.", + "example_sentence_english": "She put lip gloss on her lips.", + "pos": "noun", + "word_frequency": 23289 + }, + { + "word": "goujon", + "article_with_word": "le goujon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gudgeon (fish or pin)", + "example_sentence_native": "Nous avons pêché des goujons dans la rivière.", + "example_sentence_english": "We fished for gudgeons in the river.", + "pos": "noun", + "word_frequency": 23292 + }, + { + "word": "gousse", + "article_with_word": "la gousse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pod;clove (e.g.;garlic)", + "example_sentence_native": "Ajoutez une gousse d'ail à la sauce.", + "example_sentence_english": "Add a clove of garlic to the sauce.", + "pos": "noun", + "word_frequency": 23294 + }, + { + "word": "hacking", + "article_with_word": "le hacking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacking", + "example_sentence_native": "Le hacking est une menace pour la cybersécurité.", + "example_sentence_english": "Hacking is a threat to cybersecurity.", + "pos": "noun", + "word_frequency": 23300 + }, + { + "word": "hautbois", + "article_with_word": "le hautbois", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oboe", + "example_sentence_native": "Elle joue du hautbois dans l'orchestre.", + "example_sentence_english": "She plays the oboe in the orchestra.", + "pos": "noun", + "word_frequency": 23301 + }, + { + "word": "hydre", + "article_with_word": "l'hydre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydra", + "example_sentence_native": "L'hydre de Lerne avait plusieurs têtes.", + "example_sentence_english": "The Lernaean Hydra had several heads.", + "pos": "noun", + "word_frequency": 23304 + }, + { + "word": "illettrisme", + "article_with_word": "l'illettrisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illiteracy", + "example_sentence_native": "La lutte contre l'illettrisme est une priorité.", + "example_sentence_english": "The fight against illiteracy is a priority.", + "pos": "noun", + "word_frequency": 23305 + }, + { + "word": "immaculer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to immaculate;to make spotless", + "example_sentence_native": "Il a immaculé la surface avec soin.", + "example_sentence_english": "He immaculated the surface with care.", + "pos": "verb", + "word_frequency": 23306 + }, + { + "word": "immortaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to immortalize", + "example_sentence_native": "Le photographe a immortalisé ce moment.", + "example_sentence_english": "The photographer immortalized this moment.", + "pos": "verb", + "word_frequency": 23307 + }, + { + "word": "impénétrable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impenetrable;inscrutable", + "example_sentence_native": "Son regard était impénétrable.", + "example_sentence_english": "His gaze was impenetrable.", + "pos": "adjective", + "word_frequency": 23308 + }, + { + "word": "infortune", + "article_with_word": "l'infortune", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misfortune;bad luck", + "example_sentence_native": "Il a subi de grandes infortunes dans sa vie.", + "example_sentence_english": "He suffered great misfortunes in his life.", + "pos": "noun", + "word_frequency": 23311 + }, + { + "word": "innocuité", + "article_with_word": "l'innocuité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmlessness;innocuousness", + "example_sentence_native": "Le produit a été testé pour son innocuité.", + "example_sentence_english": "The product was tested for its harmlessness.", + "pos": "noun", + "word_frequency": 23313 + }, + { + "word": "intrant", + "article_with_word": "l'intrant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "input (economic;agricultural)", + "example_sentence_native": "Les intrants agricoles sont essentiels pour la production.", + "example_sentence_english": "Agricultural inputs are essential for production.", + "pos": "noun", + "word_frequency": 23314 + }, + { + "word": "invisibilité", + "article_with_word": "l'invisibilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invisibility", + "example_sentence_native": "Le magicien a créé une illusion d'invisibilité.", + "example_sentence_english": "The magician created an illusion of invisibility.", + "pos": "noun", + "word_frequency": 23315 + }, + { + "word": "isotope", + "article_with_word": "l'isotope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "isotope", + "example_sentence_native": "Le carbone 14 est un isotope radioactif.", + "example_sentence_english": "Carbon-14 is a radioactive isotope.", + "pos": "noun", + "word_frequency": 23317 + }, + { + "word": "juxtaposition", + "article_with_word": "la juxtaposition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "juxtaposition", + "example_sentence_native": "La juxtaposition des styles crée un effet unique.", + "example_sentence_english": "The juxtaposition of styles creates a unique effect.", + "pos": "noun", + "word_frequency": 23322 + }, + { + "word": "latéralement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laterally", + "example_sentence_native": "Le robot se déplace latéralement.", + "example_sentence_english": "The robot moves laterally.", + "pos": "adverb", + "word_frequency": 23327 + }, + { + "word": "lettrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to letter (accounts);to put letters on", + "example_sentence_native": "Il faut lettrer les comptes pour la clôture annuelle.", + "example_sentence_english": "You need to letter the accounts for the annual closing.", + "pos": "verb", + "word_frequency": 23330 + }, + { + "word": "lunatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moody;temperamental", + "example_sentence_native": "Elle est un peu lunatique ce matin.", + "example_sentence_english": "She is a bit moody this morning.", + "pos": "adjective", + "word_frequency": 23333 + }, + { + "word": "magasiner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to shop", + "example_sentence_native": "Nous allons magasiner pour de nouveaux vêtements.", + "example_sentence_english": "We are going shopping for new clothes.", + "pos": "verb", + "word_frequency": 23337 + }, + { + "word": "mandature", + "article_with_word": "la mandature", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "term of office;mandate", + "example_sentence_native": "La mandature du maire est de six ans.", + "example_sentence_english": "The mayor's term of office is six years.", + "pos": "noun", + "word_frequency": 23338 + }, + { + "word": "marginalisation", + "article_with_word": "la marginalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marginalization", + "example_sentence_native": "La marginalisation sociale est un défi majeur.", + "example_sentence_english": "Social marginalization is a major challenge.", + "pos": "noun", + "word_frequency": 23339 + }, + { + "word": "marteler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hammer;to pound", + "example_sentence_native": "Il a martelé le clou avec force.", + "example_sentence_english": "He hammered the nail with force.", + "pos": "verb", + "word_frequency": 23340 + }, + { + "word": "merguez", + "article_with_word": "la merguez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merguez sausage", + "example_sentence_native": "Nous avons mangé des merguez au barbecue.", + "example_sentence_english": "We ate merguez sausages at the barbecue.", + "pos": "noun", + "word_frequency": 23346 + }, + { + "word": "metre", + "article_with_word": "le mètre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meter", + "example_sentence_native": "Le ruban mesure un mètre de long.", + "example_sentence_english": "The ribbon is one meter long.", + "pos": "noun", + "word_frequency": 23347 + }, + { + "word": "migrateur", + "article_with_word": "le migrateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migratory (animal;bird)", + "example_sentence_native": "Les oiseaux migrateurs reviennent au printemps.", + "example_sentence_english": "Migratory birds return in spring.", + "pos": "noun", + "word_frequency": 23349 + }, + { + "word": "milord", + "article_with_word": "le milord", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "milord", + "example_sentence_native": "Le milord arriva dans sa calèche dorée.", + "example_sentence_english": "The milord arrived in his golden carriage.", + "pos": "noun", + "word_frequency": 23350 + }, + { + "word": "montgolfière", + "article_with_word": "la montgolfière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot air balloon", + "example_sentence_native": "Nous avons vu une montgolfière s'envoler au lever du soleil.", + "example_sentence_english": "We saw a hot air balloon take off at sunrise.", + "pos": "noun", + "word_frequency": 23353 + }, + { + "word": "mousseline", + "article_with_word": "la mousseline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muslin;chiffon;puree", + "example_sentence_native": "La robe était faite d'une légère mousseline de soie.", + "example_sentence_english": "The dress was made of light silk chiffon.", + "pos": "noun", + "word_frequency": 23354 + }, + { + "word": "myriade", + "article_with_word": "la myriade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "myriad", + "example_sentence_native": "Il y a une myriade de possibilités.", + "example_sentence_english": "There is a myriad of possibilities.", + "pos": "noun", + "word_frequency": 23356 + }, + { + "word": "mysticisme", + "article_with_word": "le mysticisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysticism", + "example_sentence_native": "Son art est imprégné de mysticisme.", + "example_sentence_english": "His art is imbued with mysticism.", + "pos": "noun", + "word_frequency": 23357 + }, + { + "word": "mémorisation", + "article_with_word": "la mémorisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorization", + "example_sentence_native": "La mémorisation des mots est cruciale pour l'apprentissage.", + "example_sentence_english": "Word memorization is crucial for learning.", + "pos": "noun", + "word_frequency": 23358 + }, + { + "word": "ménagement", + "article_with_word": "le ménagement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consideration;carefulness;sparing", + "example_sentence_native": "Il a agi avec beaucoup de ménagement envers les plus faibles.", + "example_sentence_english": "He acted with great consideration towards the weakest.", + "pos": "noun", + "word_frequency": 23359 + }, + { + "word": "météore", + "article_with_word": "un météore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteor", + "example_sentence_native": "Nous avons vu un météore traverser le ciel nocturne.", + "example_sentence_english": "We saw a meteor cross the night sky.", + "pos": "noun", + "word_frequency": 23360 + }, + { + "word": "oscillation", + "article_with_word": "une oscillation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oscillation", + "example_sentence_native": "L'oscillation du pendule est régulière.", + "example_sentence_english": "The oscillation of the pendulum is regular.", + "pos": "noun", + "word_frequency": 23370 + }, + { + "word": "pacifisme", + "article_with_word": "le pacifisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pacifism", + "example_sentence_native": "Le pacifisme est une philosophie qui prône la paix.", + "example_sentence_english": "Pacifism is a philosophy that advocates for peace.", + "pos": "noun", + "word_frequency": 23371 + }, + { + "word": "pacotille", + "article_with_word": "la pacotille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "junk;trash;cheap goods", + "example_sentence_native": "Ce magasin ne vend que de la pacotille.", + "example_sentence_english": "This shop only sells junk.", + "pos": "noun", + "word_frequency": 23372 + }, + { + "word": "paravent", + "article_with_word": "un paravent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screen (folding screen)", + "example_sentence_native": "Elle a placé un paravent pour créer un coin intime.", + "example_sentence_english": "She placed a screen to create a private corner.", + "pos": "noun", + "word_frequency": 23375 + }, + { + "word": "participe", + "article_with_word": "le participe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participle", + "example_sentence_native": "Le participe passé s'accorde avec le sujet dans certains cas.", + "example_sentence_english": "The past participle agrees with the subject in some cases.", + "pos": "noun", + "word_frequency": 23377 + }, + { + "word": "permaculture", + "article_with_word": "la permaculture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "permaculture", + "example_sentence_native": "La permaculture est une approche de conception agricole durable.", + "example_sentence_english": "Permaculture is a sustainable agricultural design approach.", + "pos": "noun", + "word_frequency": 23378 + }, + { + "word": "picoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drink (alcohol;informally)", + "example_sentence_native": "Il aime bien picoler avec ses amis le week-end.", + "example_sentence_english": "He likes to drink with his friends on weekends.", + "pos": "verb", + "word_frequency": 23379 + }, + { + "word": "pilori", + "article_with_word": "le pilori", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pillory", + "example_sentence_native": "Autrefois, les criminels étaient exposés au pilori.", + "example_sentence_english": "In the past, criminals were exposed in the pillory.", + "pos": "noun", + "word_frequency": 23380 + }, + { + "word": "plugin", + "article_with_word": "le plugin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plugin", + "example_sentence_native": "J'ai installé un nouveau plugin pour mon navigateur.", + "example_sentence_english": "I installed a new plugin for my browser.", + "pos": "noun", + "word_frequency": 23381 + }, + { + "word": "poussiéreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dusty", + "example_sentence_native": "Le vieux grenier était très poussiéreux.", + "example_sentence_english": "The old attic was very dusty.", + "pos": "adjective", + "word_frequency": 23384 + }, + { + "word": "préséance", + "article_with_word": "la préséance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precedence", + "example_sentence_native": "L'ordre de préséance est très important lors des cérémonies officielles.", + "example_sentence_english": "The order of precedence is very important during official ceremonies.", + "pos": "noun", + "word_frequency": 23385 + }, + { + "word": "psychotrope", + "article_with_word": "un psychotrope", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotropic drug", + "example_sentence_native": "Les psychotropes agissent sur le système nerveux central.", + "example_sentence_english": "Psychotropic drugs act on the central nervous system.", + "pos": "noun", + "word_frequency": 23387 + }, + { + "word": "pécher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sin", + "example_sentence_native": "Il a avoué avoir péché.", + "example_sentence_english": "He confessed to having sinned.", + "pos": "verb", + "word_frequency": 23388 + }, + { + "word": "péremptoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peremptory;absolute;decisive", + "example_sentence_native": "Il a donné un ordre péremptoire.", + "example_sentence_english": "He gave a peremptory order.", + "pos": "adjective", + "word_frequency": 23389 + }, + { + "word": "quadrilatère", + "article_with_word": "un quadrilatère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrilateral", + "example_sentence_native": "Un carré est un type de quadrilatère.", + "example_sentence_english": "A square is a type of quadrilateral.", + "pos": "noun", + "word_frequency": 23390 + }, + { + "word": "reach", + "article_with_word": "le reach", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reach (audience reach)", + "example_sentence_native": "Le reach de cette publication était très élevé.", + "example_sentence_english": "The reach of this publication was very high.", + "pos": "noun", + "word_frequency": 23394 + }, + { + "word": "reproducteur", + "article_with_word": "le reproducteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproducer;breeding animal", + "example_sentence_native": "Cet animal est un bon reproducteur.", + "example_sentence_english": "This animal is a good reproducer.", + "pos": "noun", + "word_frequency": 23395 + }, + { + "word": "retenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try again;to reattempt", + "example_sentence_native": "Il a décidé de retenter sa chance.", + "example_sentence_english": "He decided to try his luck again.", + "pos": "verb", + "word_frequency": 23397 + }, + { + "word": "riad", + "article_with_word": "un riad", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riad (traditional Moroccan house with an inner garden)", + "example_sentence_native": "Nous avons séjourné dans un magnifique riad à Marrakech.", + "example_sentence_english": "We stayed in a magnificent riad in Marrakech.", + "pos": "noun", + "word_frequency": 23398 + }, + { + "word": "rudement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harshly;roughly", + "example_sentence_native": "Il a été rudement critiqué pour ses propos.", + "example_sentence_english": "He was harshly criticized for his remarks.", + "pos": "adverb", + "word_frequency": 23400 + }, + { + "word": "russian", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Russian (language;person)", + "example_sentence_native": "Il apprend le russe depuis un an.", + "example_sentence_english": "He has been learning Russian for a year.", + "pos": "noun", + "word_frequency": 23401 + }, + { + "word": "rut", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rut;groove", + "example_sentence_native": "Il est tombé dans une routine et a du mal à en sortir.", + "example_sentence_english": "He fell into a rut and is struggling to get out of it.", + "pos": "noun", + "word_frequency": 23402 + }, + { + "word": "récalcitrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recalcitrant;stubborn", + "example_sentence_native": "L'enfant était récalcitrant et refusait d'obéir.", + "example_sentence_english": "The child was recalcitrant and refused to obey.", + "pos": "adjective", + "word_frequency": 23404 + }, + { + "word": "rédempteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redeemer", + "example_sentence_native": "Il est considéré comme le rédempteur de son peuple.", + "example_sentence_english": "He is considered the redeemer of his people.", + "pos": "noun", + "word_frequency": 23405 + }, + { + "word": "réjouissance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejoicing;celebration", + "example_sentence_native": "Les réjouissances ont duré toute la nuit.", + "example_sentence_english": "The celebrations lasted all night.", + "pos": "noun", + "word_frequency": 23406 + }, + { + "word": "réprimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repressed;suppressed", + "example_sentence_native": "Il a des émotions réprimées.", + "example_sentence_english": "He has repressed emotions.", + "pos": "adjective", + "word_frequency": 23407 + }, + { + "word": "résorber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reabsorb;to reduce;to resolve", + "example_sentence_native": "Le gouvernement tente de résorber le chômage.", + "example_sentence_english": "The government is trying to reduce unemployment.", + "pos": "verb", + "word_frequency": 23408 + }, + { + "word": "rétréci", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shrunk;narrowed", + "example_sentence_native": "Mon pull a rétréci au lavage.", + "example_sentence_english": "My sweater shrunk in the wash.", + "pos": "adjective", + "word_frequency": 23409 + }, + { + "word": "réécouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to re-listen;to listen again", + "example_sentence_native": "J'aimerais réécouter cette chanson.", + "example_sentence_english": "I would like to listen to this song again.", + "pos": "verb", + "word_frequency": 23410 + }, + { + "word": "serf", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serf", + "example_sentence_native": "Au Moyen Âge, les serfs étaient liés à la terre.", + "example_sentence_english": "In the Middle Ages, serfs were tied to the land.", + "pos": "noun", + "word_frequency": 23414 + }, + { + "word": "sobrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soberly;simply;discreetly", + "example_sentence_native": "Elle s'est habillée sobrement pour la cérémonie.", + "example_sentence_english": "She dressed simply for the ceremony.", + "pos": "adverb", + "word_frequency": 23417 + }, + { + "word": "sollicitude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solicitude;concern;care", + "example_sentence_native": "Elle a montré une grande sollicitude envers ses patients.", + "example_sentence_english": "She showed great solicitude towards her patients.", + "pos": "noun", + "word_frequency": 23419 + }, + { + "word": "somnifère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleeping pill", + "example_sentence_native": "Le médecin lui a prescrit un somnifère.", + "example_sentence_english": "The doctor prescribed him a sleeping pill.", + "pos": "noun", + "word_frequency": 23420 + }, + { + "word": "stipulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stipulated;specified", + "example_sentence_native": "Les conditions sont stipulées dans le contrat.", + "example_sentence_english": "The conditions are stipulated in the contract.", + "pos": "adjective", + "word_frequency": 23423 + }, + { + "word": "subalterne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subordinate;inferior", + "example_sentence_native": "Il occupe un poste subalterne dans l'entreprise.", + "example_sentence_english": "He holds a subordinate position in the company.", + "pos": "adjective", + "word_frequency": 23424 + }, + { + "word": "surendettement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "over-indebtedness", + "example_sentence_native": "Le surendettement est un problème croissant dans de nombreux pays.", + "example_sentence_english": "Over-indebtedness is a growing problem in many countries.", + "pos": "noun", + "word_frequency": 23425 + }, + { + "word": "sursauter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jump;to startle", + "example_sentence_native": "J'ai sursauté en entendant le bruit soudain.", + "example_sentence_english": "I jumped when I heard the sudden noise.", + "pos": "verb", + "word_frequency": 23427 + }, + { + "word": "synchroniser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to synchronize", + "example_sentence_native": "Il faut synchroniser les données entre les appareils.", + "example_sentence_english": "You need to synchronize the data between devices.", + "pos": "verb", + "word_frequency": 23429 + }, + { + "word": "synchronisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronized", + "example_sentence_native": "Les montres sont parfaitement synchronisées.", + "example_sentence_english": "The watches are perfectly synchronized.", + "pos": "adjective", + "word_frequency": 23430 + }, + { + "word": "trachée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trachea;windpipe", + "example_sentence_native": "La trachée est un conduit qui relie le larynx aux bronches.", + "example_sentence_english": "The trachea is a tube connecting the larynx to the bronchi.", + "pos": "noun", + "word_frequency": 23435 + }, + { + "word": "transcendant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transcendent", + "example_sentence_native": "Il a une vision transcendantale de l'art.", + "example_sentence_english": "He has a transcendental vision of art.", + "pos": "adjective", + "word_frequency": 23436 + }, + { + "word": "transmissible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmissible;communicable", + "example_sentence_native": "Cette maladie est très transmissible.", + "example_sentence_english": "This disease is highly transmissible.", + "pos": "adjective", + "word_frequency": 23437 + }, + { + "word": "trisomie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trisomy", + "example_sentence_native": "La trisomie 21 est aussi appelée syndrome de Down.", + "example_sentence_english": "Trisomy 21 is also called Down syndrome.", + "pos": "noun", + "word_frequency": 23439 + }, + { + "word": "trotter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trot", + "example_sentence_native": "Le cheval aime trotter dans le pré.", + "example_sentence_english": "The horse likes to trot in the meadow.", + "pos": "verb", + "word_frequency": 23440 + }, + { + "word": "trouée", + "article_with_word": "la trouée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gap;clearing", + "example_sentence_native": "Il y avait une trouée dans la forêt, laissant passer la lumière.", + "example_sentence_english": "There was a clearing in the forest, letting the light through.", + "pos": "noun", + "word_frequency": 23441 + }, + { + "word": "tétanos", + "article_with_word": "le tétanos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tetanus", + "example_sentence_native": "La vaccination contre le tétanos est recommandée.", + "example_sentence_english": "Tetanus vaccination is recommended.", + "pos": "noun", + "word_frequency": 23443 + }, + { + "word": "universite", + "article_with_word": "l'université", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "university", + "example_sentence_native": "J'étudie à l'université.", + "example_sentence_english": "I study at the university.", + "pos": "noun", + "word_frequency": 23445 + }, + { + "word": "victorien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Victorian", + "example_sentence_native": "Elle aime le style victorien.", + "example_sentence_english": "She likes the Victorian style.", + "pos": "adjective", + "word_frequency": 23448 + }, + { + "word": "vigie", + "article_with_word": "la vigie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lookout;watchman", + "example_sentence_native": "La vigie a signalé un navire à l'horizon.", + "example_sentence_english": "The lookout signaled a ship on the horizon.", + "pos": "noun", + "word_frequency": 23449 + }, + { + "word": "vinaigrette", + "article_with_word": "la vinaigrette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vinaigrette (dressing)", + "example_sentence_native": "J'ai mis de la vinaigrette sur ma salade.", + "example_sentence_english": "I put vinaigrette on my salad.", + "pos": "noun", + "word_frequency": 23452 + }, + { + "word": "visqueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viscous;slimy", + "example_sentence_native": "Le liquide était visqueux et difficile à verser.", + "example_sentence_english": "The liquid was viscous and difficult to pour.", + "pos": "adjective", + "word_frequency": 23453 + }, + { + "word": "volatil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volatile", + "example_sentence_native": "L'essence est un liquide très volatil.", + "example_sentence_english": "Gasoline is a very volatile liquid.", + "pos": "adjective", + "word_frequency": 23454 + }, + { + "word": "voltigeur", + "article_with_word": "le voltigeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vaulter;skirmisher", + "example_sentence_native": "Le voltigeur a effectué une figure acrobatique impressionnante.", + "example_sentence_english": "The vaulter performed an impressive acrobatic figure.", + "pos": "noun", + "word_frequency": 23456 + }, + { + "word": "volute", + "article_with_word": "la volute", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "volute;scroll", + "example_sentence_native": "L'architecte a ajouté des volutes décoratives à la colonne.", + "example_sentence_english": "The architect added decorative volutes to the column.", + "pos": "noun", + "word_frequency": 23457 + }, + { + "word": "échappé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escaped;run away", + "example_sentence_native": "Le prisonnier échappé a été retrouvé.", + "example_sentence_english": "The escaped prisoner was found.", + "pos": "adjective", + "word_frequency": 23465 + }, + { + "word": "éden", + "article_with_word": "l'éden", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Eden;paradise", + "example_sentence_native": "Ce jardin est un véritable éden.", + "example_sentence_english": "This garden is a true paradise.", + "pos": "noun", + "word_frequency": 23466 + }, + { + "word": "étroitesse", + "article_with_word": "l'étroitesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrowness;tightness", + "example_sentence_native": "L'étroitesse de la rue rendait le passage difficile.", + "example_sentence_english": "The narrowness of the street made passage difficult.", + "pos": "noun", + "word_frequency": 23467 + }, + { + "word": "acétate", + "article_with_word": "l'acétate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acetate", + "example_sentence_native": "L'acétate est utilisé dans la fabrication de certains textiles.", + "example_sentence_english": "Acetate is used in the manufacture of certain textiles.", + "pos": "noun", + "word_frequency": 23468 + }, + { + "word": "agar", + "article_with_word": "l'agar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agar", + "example_sentence_native": "L'agar est utilisé comme gélifiant en cuisine.", + "example_sentence_english": "Agar is used as a gelling agent in cooking.", + "pos": "noun", + "word_frequency": 23470 + }, + { + "word": "ailé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winged", + "example_sentence_native": "L'insecte ailé s'est posé sur la fleur.", + "example_sentence_english": "The winged insect landed on the flower.", + "pos": "adjective", + "word_frequency": 23471 + }, + { + "word": "algébrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "algebraic", + "example_sentence_native": "C'est une expression algébrique complexe.", + "example_sentence_english": "It's a complex algebraic expression.", + "pos": "adjective", + "word_frequency": 23473 + }, + { + "word": "alligator", + "article_with_word": "l'alligator", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alligator", + "example_sentence_native": "L'alligator vit dans les marais.", + "example_sentence_english": "The alligator lives in the swamps.", + "pos": "noun", + "word_frequency": 23474 + }, + { + "word": "antagonisme", + "article_with_word": "l'antagonisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antagonism", + "example_sentence_native": "Il y a un fort antagonisme entre les deux groupes.", + "example_sentence_english": "There is a strong antagonism between the two groups.", + "pos": "noun", + "word_frequency": 23479 + }, + { + "word": "anxiogène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anxiety-inducing", + "example_sentence_native": "Cette situation est très anxiogène pour beaucoup de gens.", + "example_sentence_english": "This situation is very anxiety-inducing for many people.", + "pos": "adjective", + "word_frequency": 23480 + }, + { + "word": "apiculteur", + "article_with_word": "un apiculteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beekeeper", + "example_sentence_native": "L'apiculteur récolte le miel de ses ruches.", + "example_sentence_english": "The beekeeper harvests honey from his hives.", + "pos": "noun", + "word_frequency": 23482 + }, + { + "word": "attroupement", + "article_with_word": "un attroupement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathering;crowd", + "example_sentence_native": "Un attroupement s'est formé devant la mairie.", + "example_sentence_english": "A crowd formed in front of the town hall.", + "pos": "noun", + "word_frequency": 23488 + }, + { + "word": "atténué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attenuated;softened", + "example_sentence_native": "Le bruit était atténué par les murs épais.", + "example_sentence_english": "The noise was softened by the thick walls.", + "pos": "adjective", + "word_frequency": 23489 + }, + { + "word": "autofinancement", + "article_with_word": "l'autofinancement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-financing", + "example_sentence_native": "L'entreprise a opté pour l'autofinancement de son nouveau projet.", + "example_sentence_english": "The company opted for self-financing its new project.", + "pos": "noun", + "word_frequency": 23492 + }, + { + "word": "blinde", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armored;bulletproof", + "example_sentence_native": "La voiture était blindée pour sa sécurité.", + "example_sentence_english": "The car was armored for his safety.", + "pos": "adjective", + "word_frequency": 23497 + }, + { + "word": "bloqueur", + "article_with_word": "un bloqueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blocker;stopper", + "example_sentence_native": "Il a utilisé un bloqueur pour empêcher la porte de se fermer.", + "example_sentence_english": "He used a blocker to prevent the door from closing.", + "pos": "noun", + "word_frequency": 23498 + }, + { + "word": "boueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muddy", + "example_sentence_native": "Le chemin était très boueux après la pluie.", + "example_sentence_english": "The path was very muddy after the rain.", + "pos": "adjective", + "word_frequency": 23499 + }, + { + "word": "bouilloire", + "article_with_word": "une bouilloire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kettle", + "example_sentence_native": "J'ai mis de l'eau à chauffer dans la bouilloire.", + "example_sentence_english": "I put water to heat in the kettle.", + "pos": "noun", + "word_frequency": 23500 + }, + { + "word": "bourdonnement", + "article_with_word": "un bourdonnement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buzzing;humming", + "example_sentence_native": "On entendait le bourdonnement des abeilles dans le jardin.", + "example_sentence_english": "We could hear the buzzing of bees in the garden.", + "pos": "noun", + "word_frequency": 23501 + }, + { + "word": "broc", + "article_with_word": "un broc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jug;pitcher", + "example_sentence_native": "Elle a rempli le broc d'eau fraîche.", + "example_sentence_english": "She filled the jug with fresh water.", + "pos": "noun", + "word_frequency": 23502 + }, + { + "word": "broussaille", + "article_with_word": "une broussaille", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bush;scrub", + "example_sentence_native": "Le sentier était envahi par les broussailles.", + "example_sentence_english": "The path was overgrown with bushes.", + "pos": "noun", + "word_frequency": 23504 + }, + { + "word": "buanderie", + "article_with_word": "une buanderie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laundry room", + "example_sentence_native": "La machine à laver est dans la buanderie.", + "example_sentence_english": "The washing machine is in the laundry room.", + "pos": "noun", + "word_frequency": 23505 + }, + { + "word": "buvette", + "article_with_word": "une buvette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshment stand", + "example_sentence_native": "Nous avons pris un verre à la buvette du stade.", + "example_sentence_english": "We had a drink at the stadium's refreshment stand.", + "pos": "noun", + "word_frequency": 23508 + }, + { + "word": "bâclé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sloppy;botched", + "example_sentence_native": "Le travail était bâclé et plein d'erreurs.", + "example_sentence_english": "The work was sloppy and full of errors.", + "pos": "adjective", + "word_frequency": 23509 + }, + { + "word": "calmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calmed;quieted", + "example_sentence_native": "Après la tempête, la mer était enfin calmée.", + "example_sentence_english": "After the storm, the sea was finally calmed.", + "pos": "adjective", + "word_frequency": 23512 + }, + { + "word": "capituler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capitulate;to surrender", + "example_sentence_native": "L'ennemi a refusé de capituler malgré les pertes.", + "example_sentence_english": "The enemy refused to capitulate despite the losses.", + "pos": "verb", + "word_frequency": 23514 + }, + { + "word": "censeur", + "article_with_word": "un censeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censor;disciplinarian", + "example_sentence_native": "Le censeur a examiné le film avant sa sortie.", + "example_sentence_english": "The censor reviewed the film before its release.", + "pos": "noun", + "word_frequency": 23518 + }, + { + "word": "ch'ti", + "article_with_word": "un ch'ti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person;dialect from Northern France", + "example_sentence_native": "Il parle avec un accent ch'ti très prononcé.", + "example_sentence_english": "He speaks with a very strong Ch'ti accent.", + "pos": "noun", + "word_frequency": 23519 + }, + { + "word": "chaloupe", + "article_with_word": "la chaloupe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "longboat", + "example_sentence_native": "La chaloupe a accosté doucement sur la plage.", + "example_sentence_english": "The longboat gently docked on the beach.", + "pos": "noun", + "word_frequency": 23520 + }, + { + "word": "chronologiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronologically", + "example_sentence_native": "Les événements sont présentés chronologiquement dans le livre.", + "example_sentence_english": "The events are presented chronologically in the book.", + "pos": "adverb", + "word_frequency": 23522 + }, + { + "word": "coincidence", + "article_with_word": "la coïncidence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coincidence", + "example_sentence_native": "Quelle coïncidence de vous rencontrer ici!", + "example_sentence_english": "What a coincidence to meet you here!", + "pos": "noun", + "word_frequency": 23525 + }, + { + "word": "commercer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trade", + "example_sentence_native": "Les deux pays ont décidé de commercer plus librement.", + "example_sentence_english": "The two countries decided to trade more freely.", + "pos": "verb", + "word_frequency": 23527 + }, + { + "word": "concédé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceded;granted", + "example_sentence_native": "C'était un point concédé par l'adversaire lors du débat.", + "example_sentence_english": "It was a point conceded by the opponent during the debate.", + "pos": "adjective", + "word_frequency": 23529 + }, + { + "word": "condor", + "article_with_word": "le condor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condor", + "example_sentence_native": "Le condor des Andes est un oiseau majestueux.", + "example_sentence_english": "The Andean condor is a majestic bird.", + "pos": "noun", + "word_frequency": 23530 + }, + { + "word": "consentant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consenting;willing", + "example_sentence_native": "Il était pleinement consentant à participer au projet.", + "example_sentence_english": "He was fully consenting to participate in the project.", + "pos": "adjective", + "word_frequency": 23531 + }, + { + "word": "corpulence", + "article_with_word": "la corpulence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpulence;build", + "example_sentence_native": "Sa corpulence imposante le rendait facilement reconnaissable.", + "example_sentence_english": "His imposing corpulence made him easily recognizable.", + "pos": "noun", + "word_frequency": 23532 + }, + { + "word": "courtiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to court;to woo", + "example_sentence_native": "Il a essayé de courtiser les électeurs avec de belles promesses.", + "example_sentence_english": "He tried to court the voters with beautiful promises.", + "pos": "verb", + "word_frequency": 23533 + }, + { + "word": "crisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crunch;to squeak", + "example_sentence_native": "Les pneus ont crissé sur le gravier en freinant.", + "example_sentence_english": "The tires crunched on the gravel when braking.", + "pos": "verb", + "word_frequency": 23534 + }, + { + "word": "croquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crunchy;crisp", + "example_sentence_native": "Ces pommes sont délicieusement croquantes.", + "example_sentence_english": "These apples are deliciously crunchy.", + "pos": "adjective", + "word_frequency": 23536 + }, + { + "word": "defaut", + "article_with_word": "le défaut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "defect;fault", + "example_sentence_native": "Ce produit présente un défaut de fabrication.", + "example_sentence_english": "This product has a manufacturing defect.", + "pos": "noun", + "word_frequency": 23540 + }, + { + "word": "diocésain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocesan", + "example_sentence_native": "L'évêque a visité les écoles diocésaines de la région.", + "example_sentence_english": "The bishop visited the diocesan schools in the region.", + "pos": "adjective", + "word_frequency": 23544 + }, + { + "word": "discrétionnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discretionary", + "example_sentence_native": "Le juge a un pouvoir discrétionnaire dans cette affaire.", + "example_sentence_english": "The judge has discretionary power in this case.", + "pos": "adjective", + "word_frequency": 23545 + }, + { + "word": "divulgué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disclosed;revealed", + "example_sentence_native": "Les informations confidentielles ont été divulguées à la presse.", + "example_sentence_english": "The confidential information was disclosed to the press.", + "pos": "adjective", + "word_frequency": 23546 + }, + { + "word": "décelé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detected;revealed", + "example_sentence_native": "Un problème a été décelé lors de l'inspection technique.", + "example_sentence_english": "A problem was detected during the technical inspection.", + "pos": "adjective", + "word_frequency": 23549 + }, + { + "word": "délation", + "article_with_word": "la délation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denunciation;informing", + "example_sentence_native": "La délation est souvent mal perçue dans la société.", + "example_sentence_english": "Denunciation is often poorly perceived in society.", + "pos": "noun", + "word_frequency": 23550 + }, + { + "word": "déodorant", + "article_with_word": "le déodorant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deodorant", + "example_sentence_native": "N'oublie pas ton déodorant avant de sortir.", + "example_sentence_english": "Don't forget your deodorant before going out.", + "pos": "noun", + "word_frequency": 23551 + }, + { + "word": "désobéir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disobey", + "example_sentence_native": "Il est interdit de désobéir aux ordres du capitaine.", + "example_sentence_english": "It is forbidden to disobey the captain's orders.", + "pos": "verb", + "word_frequency": 23552 + }, + { + "word": "détourné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diverted;misappropriated", + "example_sentence_native": "Les fonds ont été détournés de leur usage initial.", + "example_sentence_english": "The funds were diverted from their initial use.", + "pos": "adjective", + "word_frequency": 23553 + }, + { + "word": "eczéma", + "article_with_word": "l'eczéma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eczema", + "example_sentence_native": "Elle souffre d'eczéma sur les mains depuis son enfance.", + "example_sentence_english": "She has suffered from eczema on her hands since childhood.", + "pos": "noun", + "word_frequency": 23554 + }, + { + "word": "effluve", + "article_with_word": "l'effluve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effluvium;emanation;scent", + "example_sentence_native": "Un doux effluve de jasmin flottait dans l'air du soir.", + "example_sentence_english": "A sweet effluvium of jasmine floated in the evening air.", + "pos": "noun", + "word_frequency": 23555 + }, + { + "word": "embrun", + "article_with_word": "l'embrun", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sea spray", + "example_sentence_native": "L'embrun salé nous rafraîchissait le visage près de la côte.", + "example_sentence_english": "The salty sea spray refreshed our faces near the coast.", + "pos": "noun", + "word_frequency": 23556 + }, + { + "word": "emplette", + "article_with_word": "l'emplette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purchase;shopping (often plural)", + "example_sentence_native": "Elle est allée faire quelques emplettes au marché local.", + "example_sentence_english": "She went to do some shopping at the local market.", + "pos": "noun", + "word_frequency": 23557 + }, + { + "word": "encombré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cluttered;congested", + "example_sentence_native": "Le grenier était encombré de vieux meubles et de cartons.", + "example_sentence_english": "The attic was cluttered with old furniture and boxes.", + "pos": "adjective", + "word_frequency": 23558 + }, + { + "word": "enfui", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fled;escaped", + "example_sentence_native": "Le prisonnier enfui n'a pas encore été retrouvé par la police.", + "example_sentence_english": "The escaped prisoner has not yet been found by the police.", + "pos": "adjective", + "word_frequency": 23559 + }, + { + "word": "entrejambe", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inseam;crotch", + "example_sentence_native": "Le pantalon était déchiré à l'entrejambe.", + "example_sentence_english": "The pants were torn at the inseam.", + "pos": "noun", + "word_frequency": 23560 + }, + { + "word": "escompte", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discount", + "example_sentence_native": "Nous avons obtenu un escompte de 10% sur le prix total.", + "example_sentence_english": "We got a 10% discount on the total price.", + "pos": "noun", + "word_frequency": 23562 + }, + { + "word": "essayage", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fitting;trying on", + "example_sentence_native": "L'essayage des vêtements est recommandé avant l'achat.", + "example_sentence_english": "Trying on clothes is recommended before purchase.", + "pos": "noun", + "word_frequency": 23563 + }, + { + "word": "ethnographie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnography", + "example_sentence_native": "L'ethnographie est l'étude descriptive des cultures humaines.", + "example_sentence_english": "Ethnography is the descriptive study of human cultures.", + "pos": "noun", + "word_frequency": 23564 + }, + { + "word": "excédentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in surplus;surplus", + "example_sentence_native": "Le budget de l'entreprise est excédentaire cette année.", + "example_sentence_english": "The company's budget is in surplus this year.", + "pos": "adjective", + "word_frequency": 23566 + }, + { + "word": "fallacieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fallacious;misleading", + "example_sentence_native": "Son argument était fallacieux et manquait de preuves.", + "example_sentence_english": "His argument was fallacious and lacked evidence.", + "pos": "adjective", + "word_frequency": 23568 + }, + { + "word": "federation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federation", + "example_sentence_native": "La fédération sportive a organisé un nouveau tournoi.", + "example_sentence_english": "The sports federation organized a new tournament.", + "pos": "noun", + "word_frequency": 23570 + }, + { + "word": "festivalier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festival-goer", + "example_sentence_native": "Les festivaliers ont afflué vers la scène principale.", + "example_sentence_english": "The festival-goers flocked to the main stage.", + "pos": "noun", + "word_frequency": 23572 + }, + { + "word": "fondeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founder;smelter", + "example_sentence_native": "Le fondeur de l'entreprise a pris sa retraite l'année dernière.", + "example_sentence_english": "The founder of the company retired last year.", + "pos": "noun", + "word_frequency": 23575 + }, + { + "word": "fugitive", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugitive", + "example_sentence_native": "La police est à la recherche d'un fugitive.", + "example_sentence_english": "The police are looking for a fugitive.", + "pos": "noun", + "word_frequency": 23577 + }, + { + "word": "futsal", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "futsal", + "example_sentence_native": "Le futsal est une variante du football jouée en salle.", + "example_sentence_english": "Futsal is a variant of football played indoors.", + "pos": "noun", + "word_frequency": 23578 + }, + { + "word": "goulot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neck (of a bottle);bottleneck", + "example_sentence_native": "Le goulot de la bouteille est trop étroit pour verser rapidement.", + "example_sentence_english": "The neck of the bottle is too narrow to pour quickly.", + "pos": "noun", + "word_frequency": 23588 + }, + { + "word": "grenat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garnet (gemstone);maroon (color)", + "example_sentence_native": "Elle portait un collier avec un pendentif en grenat.", + "example_sentence_english": "She wore a necklace with a garnet pendant.", + "pos": "noun", + "word_frequency": 23590 + }, + { + "word": "greve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strike", + "example_sentence_native": "Les employés ont décidé de faire la grève pour de meilleurs salaires.", + "example_sentence_english": "The employees decided to go on strike for better wages.", + "pos": "noun", + "word_frequency": 23591 + }, + { + "word": "grouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swarm;to teem;to stir", + "example_sentence_native": "La foule commençait à grouiller dans les rues avant le concert.", + "example_sentence_english": "The crowd began to swarm in the streets before the concert.", + "pos": "verb", + "word_frequency": 23592 + }, + { + "word": "gynécologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gynecology", + "example_sentence_native": "La gynécologie est la branche de la médecine qui s'occupe de la santé des femmes.", + "example_sentence_english": "Gynecology is the branch of medicine dealing with women's health.", + "pos": "noun", + "word_frequency": 23594 + }, + { + "word": "hermitage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermitage", + "example_sentence_native": "Il a trouvé la paix dans son hermitage isolé.", + "example_sentence_english": "He found peace in his isolated hermitage.", + "pos": "noun", + "word_frequency": 23600 + }, + { + "word": "hiatus", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hiatus", + "example_sentence_native": "Il y a eu un long hiatus dans leur conversation.", + "example_sentence_english": "There was a long hiatus in their conversation.", + "pos": "noun", + "word_frequency": 23601 + }, + { + "word": "hivernage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wintering;hibernation", + "example_sentence_native": "L'hivernage des plantes est essentiel pour leur survie.", + "example_sentence_english": "The wintering of plants is essential for their survival.", + "pos": "noun", + "word_frequency": 23602 + }, + { + "word": "humanoïde", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanoid", + "example_sentence_native": "Le robot avait une apparence humanoïde.", + "example_sentence_english": "The robot had a humanoid appearance.", + "pos": "noun", + "word_frequency": 23608 + }, + { + "word": "hyène", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hyena", + "example_sentence_native": "La hyène est connue pour son rire distinctif.", + "example_sentence_english": "The hyena is known for its distinctive laugh.", + "pos": "noun", + "word_frequency": 23609 + }, + { + "word": "idéologue", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideologue", + "example_sentence_native": "C'est un idéologue convaincu de ses principes.", + "example_sentence_english": "He is an ideologue convinced of his principles.", + "pos": "noun", + "word_frequency": 23611 + }, + { + "word": "immatriculé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registered;matriculated", + "example_sentence_native": "La voiture est immatriculée en France.", + "example_sentence_english": "The car is registered in France.", + "pos": "adjective", + "word_frequency": 23612 + }, + { + "word": "inclue", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included", + "example_sentence_native": "La taxe est inclue dans le prix.", + "example_sentence_english": "The tax is included in the price.", + "pos": "adjective", + "word_frequency": 23614 + }, + { + "word": "indemnisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensated;indemnified", + "example_sentence_native": "La victime a été indemnisée pour ses pertes.", + "example_sentence_english": "The victim was compensated for their losses.", + "pos": "adjective", + "word_frequency": 23615 + }, + { + "word": "indicible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unspeakable;inexpressible", + "example_sentence_native": "Il ressentait une joie indicible.", + "example_sentence_english": "He felt an unspeakable joy.", + "pos": "adjective", + "word_frequency": 23616 + }, + { + "word": "inimitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inimitable;unique", + "example_sentence_native": "Son style est inimitable.", + "example_sentence_english": "His style is inimitable.", + "pos": "adjective", + "word_frequency": 23618 + }, + { + "word": "insouciant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefree;unconcerned", + "example_sentence_native": "Il mène une vie insouciante.", + "example_sentence_english": "He leads a carefree life.", + "pos": "adjective", + "word_frequency": 23619 + }, + { + "word": "insulté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insulted", + "example_sentence_native": "Il s'est senti insulté par ses paroles.", + "example_sentence_english": "He felt insulted by her words.", + "pos": "adjective", + "word_frequency": 23620 + }, + { + "word": "intelligentsia", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intelligentsia", + "example_sentence_native": "L'intelligentsia du pays a critiqué la décision.", + "example_sentence_english": "The country's intelligentsia criticized the decision.", + "pos": "noun", + "word_frequency": 23621 + }, + { + "word": "intelligible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intelligible;understandable", + "example_sentence_native": "Son discours était parfaitement intelligible.", + "example_sentence_english": "His speech was perfectly intelligible.", + "pos": "adjective", + "word_frequency": 23622 + }, + { + "word": "intercession", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intercession", + "example_sentence_native": "Grâce à son intercession, le conflit a été résolu.", + "example_sentence_english": "Thanks to his intercession, the conflict was resolved.", + "pos": "noun", + "word_frequency": 23623 + }, + { + "word": "intronisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enthronement;inauguration", + "example_sentence_native": "L'intronisation du nouveau roi aura lieu demain.", + "example_sentence_english": "The enthronement of the new king will take place tomorrow.", + "pos": "noun", + "word_frequency": 23624 + }, + { + "word": "irritable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritable", + "example_sentence_native": "Il est souvent irritable le matin.", + "example_sentence_english": "He is often irritable in the morning.", + "pos": "adjective", + "word_frequency": 23625 + }, + { + "word": "ième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "-th (as in 'n-th')", + "example_sentence_native": "Le suffixe '-ième' est utilisé pour former les nombres ordinaux, comme dans 'deuxième' (second).", + "example_sentence_english": "The suffix '-ième' is used to form ordinal numbers, as in 'deuxième' (second).", + "pos": "numeral", + "word_frequency": 23627 + }, + { + "word": "jamaïcain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Jamaican", + "example_sentence_native": "Il écoute de la musique jamaïcaine.", + "example_sentence_english": "He listens to Jamaican music.", + "pos": "adjective", + "word_frequency": 23629 + }, + { + "word": "jauger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gauge;to assess", + "example_sentence_native": "Il faut jauger la situation avant d'agir.", + "example_sentence_english": "We need to gauge the situation before acting.", + "pos": "verb", + "word_frequency": 23630 + }, + { + "word": "laché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "released;let go;loose", + "example_sentence_native": "Le chien a été laché dans le jardin.", + "example_sentence_english": "The dog was released into the garden.", + "pos": "adjective", + "word_frequency": 23639 + }, + { + "word": "lad", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lad;boy", + "example_sentence_native": "Le jeune lad s'occupait des chevaux.", + "example_sentence_english": "The young lad took care of the horses.", + "pos": "noun", + "word_frequency": 23640 + }, + { + "word": "laverie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundromat;laundry room", + "example_sentence_native": "Je vais à la laverie automatique pour faire ma lessive.", + "example_sentence_english": "I'm going to the laundromat to do my laundry.", + "pos": "noun", + "word_frequency": 23644 + }, + { + "word": "lignage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lineage;ancestry", + "example_sentence_native": "Il est fier de son ancien lignage.", + "example_sentence_english": "He is proud of his ancient lineage.", + "pos": "noun", + "word_frequency": 23647 + }, + { + "word": "liquidateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidator;receiver", + "example_sentence_native": "Le liquidateur a été nommé pour gérer la faillite de l'entreprise.", + "example_sentence_english": "The liquidator was appointed to manage the company's bankruptcy.", + "pos": "noun", + "word_frequency": 23648 + }, + { + "word": "loop", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loop", + "example_sentence_native": "Le DJ a créé un bon loop pour la chanson.", + "example_sentence_english": "The DJ created a good loop for the song.", + "pos": "noun", + "word_frequency": 23649 + }, + { + "word": "mamelon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nipple;hillock", + "example_sentence_native": "Le mamelon de la colline offrait une vue imprenable.", + "example_sentence_english": "The hillock offered a breathtaking view.", + "pos": "noun", + "word_frequency": 23655 + }, + { + "word": "mangé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eaten;consumed", + "example_sentence_native": "La pomme était à moitié mangée.", + "example_sentence_english": "The apple was half eaten.", + "pos": "adjective", + "word_frequency": 23656 + }, + { + "word": "matérialiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to materialize;to embody", + "example_sentence_native": "Son rêve a fini par se matérialiser.", + "example_sentence_english": "His dream eventually materialized.", + "pos": "verb", + "word_frequency": 23659 + }, + { + "word": "monoplace", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "single-seater", + "example_sentence_native": "La monoplace de Formule 1 est très rapide.", + "example_sentence_english": "The Formula 1 single-seater is very fast.", + "pos": "noun", + "word_frequency": 23665 + }, + { + "word": "multidisciplinaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multidisciplinary", + "example_sentence_native": "L'équipe a adopté une approche multidisciplinaire pour résoudre le problème.", + "example_sentence_english": "The team adopted a multidisciplinary approach to solve the problem.", + "pos": "adjective", + "word_frequency": 23668 + }, + { + "word": "musculature", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musculature;muscle system", + "example_sentence_native": "L'athlète a développé une musculature impressionnante.", + "example_sentence_english": "The athlete developed impressive musculature.", + "pos": "noun", + "word_frequency": 23669 + }, + { + "word": "métallurgique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metallurgical", + "example_sentence_native": "L'industrie métallurgique est essentielle pour la production d'acier.", + "example_sentence_english": "The metallurgical industry is essential for steel production.", + "pos": "adjective", + "word_frequency": 23673 + }, + { + "word": "métastase", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "metastasis", + "example_sentence_native": "Les médecins ont détecté une métastase.", + "example_sentence_english": "The doctors detected a metastasis.", + "pos": "noun", + "word_frequency": 23674 + }, + { + "word": "napalm", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "napalm", + "example_sentence_native": "Le napalm a été utilisé comme arme incendiaire.", + "example_sentence_english": "Napalm was used as an incendiary weapon.", + "pos": "noun", + "word_frequency": 23675 + }, + { + "word": "nerd", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nerd", + "example_sentence_native": "Il est un peu nerd, mais très intelligent.", + "example_sentence_english": "He's a bit of a nerd, but very intelligent.", + "pos": "noun", + "word_frequency": 23676 + }, + { + "word": "noz", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Breton dance party", + "example_sentence_native": "Nous avons dansé toute la nuit à un fest-noz traditionnel.", + "example_sentence_english": "We danced all night at a traditional Breton dance party.", + "pos": "noun", + "word_frequency": 23680 + }, + { + "word": "nuitée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overnight stay", + "example_sentence_native": "Le prix de la nuitée inclut le petit-déjeuner.", + "example_sentence_english": "The price of the overnight stay includes breakfast.", + "pos": "noun", + "word_frequency": 23681 + }, + { + "word": "obtus", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtuse;blunt", + "example_sentence_native": "Son angle était obtus, pas aigu.", + "example_sentence_english": "Its angle was obtuse, not acute.", + "pos": "adjective", + "word_frequency": 23682 + }, + { + "word": "octroyé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "granted;accorded", + "example_sentence_native": "Le budget octroyé était suffisant pour le projet.", + "example_sentence_english": "The granted budget was sufficient for the project.", + "pos": "adjective", + "word_frequency": 23684 + }, + { + "word": "offensant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive;insulting", + "example_sentence_native": "Ses propos étaient très offensants.", + "example_sentence_english": "His remarks were very offensive.", + "pos": "adjective", + "word_frequency": 23686 + }, + { + "word": "olympiade", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Olympiad", + "example_sentence_native": "Les Jeux olympiques sont une olympiade sportive.", + "example_sentence_english": "The Olympic Games are a sporting Olympiad.", + "pos": "noun", + "word_frequency": 23687 + }, + { + "word": "opulence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opulence;lavishness", + "example_sentence_native": "Le château montrait une opulence incroyable.", + "example_sentence_english": "The castle displayed incredible opulence.", + "pos": "noun", + "word_frequency": 23689 + }, + { + "word": "organisationnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "organizational", + "example_sentence_native": "Ils ont des problèmes organisationnels.", + "example_sentence_english": "They have organizational problems.", + "pos": "adjective", + "word_frequency": 23690 + }, + { + "word": "orléanais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Orléans;Orleanese", + "example_sentence_native": "La région orléanaise est connue pour ses châteaux.", + "example_sentence_english": "The Orleanese region is known for its castles.", + "pos": "adjective", + "word_frequency": 23692 + }, + { + "word": "paintball", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paintball", + "example_sentence_native": "Nous avons joué au paintball ce week-end.", + "example_sentence_english": "We played paintball this weekend.", + "pos": "noun", + "word_frequency": 23695 + }, + { + "word": "panacée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "panacea", + "example_sentence_native": "Il n'y a pas de panacée pour tous les problèmes.", + "example_sentence_english": "There is no panacea for all problems.", + "pos": "noun", + "word_frequency": 23696 + }, + { + "word": "paramilitaire", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paramilitary", + "example_sentence_native": "Le groupe paramilitaire a été dissous.", + "example_sentence_english": "The paramilitary group was disbanded.", + "pos": "noun", + "word_frequency": 23698 + }, + { + "word": "pater", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "father (informal;dated)", + "example_sentence_native": "Mon pater m'a appris à pêcher.", + "example_sentence_english": "My father taught me how to fish.", + "pos": "noun", + "word_frequency": 23699 + }, + { + "word": "perméabilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "permeability", + "example_sentence_native": "La perméabilité du sol est importante pour le drainage.", + "example_sentence_english": "The soil's permeability is important for drainage.", + "pos": "noun", + "word_frequency": 23700 + }, + { + "word": "philanthropie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philanthropy", + "example_sentence_native": "Il est connu pour sa philanthropie.", + "example_sentence_english": "He is known for his philanthropy.", + "pos": "noun", + "word_frequency": 23701 + }, + { + "word": "pictural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pictorial", + "example_sentence_native": "Son œuvre a une grande richesse picturale.", + "example_sentence_english": "His work has great pictorial richness.", + "pos": "adjective", + "word_frequency": 23702 + }, + { + "word": "plasticien", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visual artist", + "example_sentence_native": "L'exposition présente les œuvres d'un jeune plasticien.", + "example_sentence_english": "The exhibition features the works of a young visual artist.", + "pos": "noun", + "word_frequency": 23703 + }, + { + "word": "platane", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plane tree", + "example_sentence_native": "Les platanes bordent l'avenue.", + "example_sentence_english": "Plane trees line the avenue.", + "pos": "noun", + "word_frequency": 23704 + }, + { + "word": "poix", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitch;tar", + "example_sentence_native": "La poix est utilisée pour sceller les bateaux.", + "example_sentence_english": "Pitch is used to seal boats.", + "pos": "noun", + "word_frequency": 23705 + }, + { + "word": "profiteur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profiteer;exploiter", + "example_sentence_native": "C'est un profiteur qui ne pense qu'à lui.", + "example_sentence_english": "He's a profiteer who only thinks of himself.", + "pos": "noun", + "word_frequency": 23707 + }, + { + "word": "propagé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propagated;spread", + "example_sentence_native": "La nouvelle s'est rapidement propagée.", + "example_sentence_english": "The news spread quickly.", + "pos": "adjective", + "word_frequency": 23708 + }, + { + "word": "pulp", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulp (fiction);pulp (fruit)", + "example_sentence_native": "J'aime lire des romans de pulp fiction.", + "example_sentence_english": "I like reading pulp fiction novels.", + "pos": "noun", + "word_frequency": 23710 + }, + { + "word": "pulsation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pulsation;beat", + "example_sentence_native": "On sentait la pulsation de la musique.", + "example_sentence_english": "We could feel the pulsation of the music.", + "pos": "noun", + "word_frequency": 23711 + }, + { + "word": "raconté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "told;recounted", + "example_sentence_native": "L'histoire racontée était très émouvante.", + "example_sentence_english": "The story told was very moving.", + "pos": "adjective", + "word_frequency": 23713 + }, + { + "word": "radicalisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalized", + "example_sentence_native": "Il est devenu radicalisé après avoir lu certains textes.", + "example_sentence_english": "He became radicalized after reading certain texts.", + "pos": "adjective", + "word_frequency": 23714 + }, + { + "word": "ravageur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devastating;destructive", + "example_sentence_native": "Les effets de la sécheresse sont ravageurs.", + "example_sentence_english": "The effects of the drought are devastating.", + "pos": "adjective", + "word_frequency": 23717 + }, + { + "word": "responsabilisation", + "article_with_word": "la responsabilisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "empowerment;accountability", + "example_sentence_native": "La responsabilisation des employés est essentielle pour la croissance de l'entreprise.", + "example_sentence_english": "Employee empowerment is essential for company growth.", + "pos": "noun", + "word_frequency": 23720 + }, + { + "word": "responsabiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to empower;to make responsible", + "example_sentence_native": "Il faut responsabiliser les jeunes face à leurs choix.", + "example_sentence_english": "We must make young people responsible for their choices.", + "pos": "verb", + "word_frequency": 23721 + }, + { + "word": "récapituler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recap;to summarize", + "example_sentence_native": "Pour récapituler, nous avons discuté de trois points principaux.", + "example_sentence_english": "To recap, we discussed three main points.", + "pos": "verb", + "word_frequency": 23728 + }, + { + "word": "réfutation", + "article_with_word": "la réfutation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refutation", + "example_sentence_native": "Son argument a été suivi d'une réfutation solide.", + "example_sentence_english": "His argument was followed by a strong refutation.", + "pos": "noun", + "word_frequency": 23729 + }, + { + "word": "réfuté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refuted;disproven", + "example_sentence_native": "Cette théorie a été réfutée par de nouvelles preuves.", + "example_sentence_english": "This theory has been refuted by new evidence.", + "pos": "adjective", + "word_frequency": 23730 + }, + { + "word": "référencé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referenced;listed;indexed", + "example_sentence_native": "Ce produit est bien référencé sur les moteurs de recherche.", + "example_sentence_english": "This product is well indexed on search engines.", + "pos": "adjective", + "word_frequency": 23731 + }, + { + "word": "rétrécissement", + "article_with_word": "le rétrécissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrowing;shrinkage", + "example_sentence_native": "Le rétrécissement des artères est un problème de santé grave.", + "example_sentence_english": "The narrowing of the arteries is a serious health problem.", + "pos": "noun", + "word_frequency": 23732 + }, + { + "word": "saignée", + "article_with_word": "la saignée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bleeding;bloodletting;drain (figurative)", + "example_sentence_native": "La saignée de personnel a affaibli l'entreprise.", + "example_sentence_english": "The drain of personnel weakened the company.", + "pos": "noun", + "word_frequency": 23734 + }, + { + "word": "sidérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to astound;to dumbfound", + "example_sentence_native": "Sa réaction m'a sidéré.", + "example_sentence_english": "His reaction astounded me.", + "pos": "verb", + "word_frequency": 23738 + }, + { + "word": "solfège", + "article_with_word": "le solfège", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solfège;music theory (basic)", + "example_sentence_native": "Il étudie le solfège pour apprendre à lire la musique.", + "example_sentence_english": "He studies solfège to learn how to read music.", + "pos": "noun", + "word_frequency": 23739 + }, + { + "word": "statuaire", + "article_with_word": "la statuaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statuary (art of making statues;or collection of statues)", + "example_sentence_native": "La statuaire grecque est très célèbre.", + "example_sentence_english": "Greek statuary is very famous.", + "pos": "noun", + "word_frequency": 23745 + }, + { + "word": "succulent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "succulent;delicious", + "example_sentence_native": "Ce gâteau est vraiment succulent.", + "example_sentence_english": "This cake is truly delicious.", + "pos": "adjective", + "word_frequency": 23746 + }, + { + "word": "suie", + "article_with_word": "la suie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soot", + "example_sentence_native": "La cheminée était pleine de suie.", + "example_sentence_english": "The chimney was full of soot.", + "pos": "noun", + "word_frequency": 23747 + }, + { + "word": "superhéros", + "article_with_word": "le superhéros", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superhero", + "example_sentence_native": "Mon fils adore les films de superhéros.", + "example_sentence_english": "My son loves superhero movies.", + "pos": "noun", + "word_frequency": 23748 + }, + { + "word": "sureté", + "article_with_word": "la sûreté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safety;security", + "example_sentence_native": "La sûreté des passagers est notre priorité.", + "example_sentence_english": "Passenger safety is our priority.", + "pos": "noun", + "word_frequency": 23749 + }, + { + "word": "surproduction", + "article_with_word": "la surproduction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overproduction", + "example_sentence_native": "La surproduction peut entraîner une chute des prix.", + "example_sentence_english": "Overproduction can lead to a fall in prices.", + "pos": "noun", + "word_frequency": 23750 + }, + { + "word": "syntaxique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "syntactic", + "example_sentence_native": "Il a fait une erreur syntaxique dans sa phrase.", + "example_sentence_english": "He made a syntactic error in his sentence.", + "pos": "adjective", + "word_frequency": 23752 + }, + { + "word": "tarse", + "article_with_word": "le tarse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tarsus (part of the foot)", + "example_sentence_native": "Le tarse est l'ensemble des os de la cheville.", + "example_sentence_english": "The tarsus is the set of bones in the ankle.", + "pos": "noun", + "word_frequency": 23755 + }, + { + "word": "terroriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to terrorize;to frighten", + "example_sentence_native": "Le bruit a terrorisé les enfants.", + "example_sentence_english": "The noise terrorized the children.", + "pos": "verb", + "word_frequency": 23756 + }, + { + "word": "tolérable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerable", + "example_sentence_native": "La situation est à peine tolérable.", + "example_sentence_english": "The situation is barely tolerable.", + "pos": "adjective", + "word_frequency": 23760 + }, + { + "word": "tombola", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raffle", + "example_sentence_native": "Nous avons gagné un prix à la tombola de l'école.", + "example_sentence_english": "We won a prize at the school raffle.", + "pos": "noun", + "word_frequency": 23761 + }, + { + "word": "tonte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mowing;shearing", + "example_sentence_native": "La tonte de la pelouse prend du temps.", + "example_sentence_english": "Mowing the lawn takes time.", + "pos": "noun", + "word_frequency": 23763 + }, + { + "word": "toupie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spinning top", + "example_sentence_native": "L'enfant jouait avec sa toupie colorée.", + "example_sentence_english": "The child was playing with his colorful spinning top.", + "pos": "noun", + "word_frequency": 23764 + }, + { + "word": "transmetteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transmitter", + "example_sentence_native": "Le transmetteur radio a une portée de plusieurs kilomètres.", + "example_sentence_english": "The radio transmitter has a range of several kilometers.", + "pos": "noun", + "word_frequency": 23766 + }, + { + "word": "trentième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirtieth", + "example_sentence_native": "C'est le trentième anniversaire de notre mariage.", + "example_sentence_english": "It's our thirtieth wedding anniversary.", + "pos": "numeral", + "word_frequency": 23767 + }, + { + "word": "treuil", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "winch", + "example_sentence_native": "Le treuil a soulevé la lourde charge.", + "example_sentence_english": "The winch lifted the heavy load.", + "pos": "noun", + "word_frequency": 23768 + }, + { + "word": "truffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to truffle;to pepper", + "example_sentence_native": "Le texte était truffé de fautes d'orthographe.", + "example_sentence_english": "The text was peppered with spelling mistakes.", + "pos": "verb", + "word_frequency": 23769 + }, + { + "word": "tubercule", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuber", + "example_sentence_native": "La pomme de terre est un tubercule.", + "example_sentence_english": "The potato is a tuber.", + "pos": "noun", + "word_frequency": 23770 + }, + { + "word": "tâcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try;to endeavor", + "example_sentence_native": "Je vais tâcher de finir ce travail avant ce soir.", + "example_sentence_english": "I will try to finish this work before tonight.", + "pos": "verb", + "word_frequency": 23771 + }, + { + "word": "veineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venous", + "example_sentence_native": "Le sang veineux retourne au cœur.", + "example_sentence_english": "Venous blood returns to the heart.", + "pos": "adjective", + "word_frequency": 23775 + }, + { + "word": "ventilo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fan (informal)", + "example_sentence_native": "Il fait chaud, allume le ventilo.", + "example_sentence_english": "It's hot, turn on the fan.", + "pos": "noun", + "word_frequency": 23776 + }, + { + "word": "ventral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ventral", + "example_sentence_native": "La cavité ventrale contient les organes digestifs.", + "example_sentence_english": "The ventral cavity contains the digestive organs.", + "pos": "adjective", + "word_frequency": 23777 + }, + { + "word": "visitation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visitation", + "example_sentence_native": "La visitation des malades est un acte de charité.", + "example_sentence_english": "The visitation of the sick is an act of charity.", + "pos": "noun", + "word_frequency": 23780 + }, + { + "word": "yoyo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yo-yo", + "example_sentence_native": "L'enfant a appris à faire du yoyo.", + "example_sentence_english": "The child learned how to yo-yo.", + "pos": "noun", + "word_frequency": 23786 + }, + { + "word": "échafaud", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scaffold;gallows", + "example_sentence_native": "Le condamné a été mené à l'échafaud.", + "example_sentence_english": "The condemned man was led to the gallows.", + "pos": "noun", + "word_frequency": 23787 + }, + { + "word": "échafaudage", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scaffolding", + "example_sentence_native": "Les ouvriers ont monté l'échafaudage autour du bâtiment.", + "example_sentence_english": "The workers erected the scaffolding around the building.", + "pos": "noun", + "word_frequency": 23788 + }, + { + "word": "élocution", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elocution;speech", + "example_sentence_native": "Son élocution est très claire et précise.", + "example_sentence_english": "His elocution is very clear and precise.", + "pos": "noun", + "word_frequency": 23789 + }, + { + "word": "épater", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impress;to astound", + "example_sentence_native": "Il aime épater la galerie avec ses tours de magie.", + "example_sentence_english": "He likes to impress the crowd with his magic tricks.", + "pos": "verb", + "word_frequency": 23790 + }, + { + "word": "academie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "academy", + "example_sentence_native": "Il étudie à l'Académie des Beaux-Arts.", + "example_sentence_english": "He studies at the Academy of Fine Arts.", + "pos": "noun", + "word_frequency": 23793 + }, + { + "word": "accalmie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lull;calm", + "example_sentence_native": "Il y a eu une brève accalmie avant la tempête.", + "example_sentence_english": "There was a brief lull before the storm.", + "pos": "noun", + "word_frequency": 23794 + }, + { + "word": "adroit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skillful;adroit", + "example_sentence_native": "C'est un artisan très adroit de ses mains.", + "example_sentence_english": "He is a very skillful craftsman with his hands.", + "pos": "adjective", + "word_frequency": 23795 + }, + { + "word": "affirmatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affirmative", + "example_sentence_native": "Sa réponse était clairement affirmative.", + "example_sentence_english": "His answer was clearly affirmative.", + "pos": "adjective", + "word_frequency": 23797 + }, + { + "word": "aga", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "agha (Ottoman title)", + "example_sentence_native": "L'aga était un officier militaire dans l'Empire ottoman.", + "example_sentence_english": "The agha was a military officer in the Ottoman Empire.", + "pos": "noun", + "word_frequency": 23798 + }, + { + "word": "algorithmique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "algorithmic", + "example_sentence_native": "La complexité algorithmique est un sujet important en informatique.", + "example_sentence_english": "Algorithmic complexity is an important topic in computer science.", + "pos": "adjective", + "word_frequency": 23800 + }, + { + "word": "ambivalence", + "article_with_word": "l'ambivalence", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambivalence", + "example_sentence_native": "Il ressentait une profonde ambivalence face à cette décision.", + "example_sentence_english": "He felt a deep ambivalence towards this decision.", + "pos": "noun", + "word_frequency": 23802 + }, + { + "word": "arcane", + "article_with_word": "l'arcane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arcane;secret", + "example_sentence_native": "Il a révélé les arcanes de la magie ancienne.", + "example_sentence_english": "He revealed the arcana of ancient magic.", + "pos": "noun", + "word_frequency": 23809 + }, + { + "word": "archet", + "article_with_word": "l'archet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bow (for string instrument)", + "example_sentence_native": "Le violoniste a cassé son archet pendant le concert.", + "example_sentence_english": "The violinist broke his bow during the concert.", + "pos": "noun", + "word_frequency": 23810 + }, + { + "word": "archivage", + "article_with_word": "l'archivage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archiving", + "example_sentence_native": "L'archivage des documents est essentiel pour la traçabilité.", + "example_sentence_english": "Document archiving is essential for traceability.", + "pos": "noun", + "word_frequency": 23812 + }, + { + "word": "atrocement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atrociously;terribly", + "example_sentence_native": "Il a été atrocement blessé dans l'accident.", + "example_sentence_english": "He was atrociously injured in the accident.", + "pos": "adverb", + "word_frequency": 23815 + }, + { + "word": "badaud", + "article_with_word": "le badaud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "onlooker;gawker", + "example_sentence_native": "Les badauds se sont rassemblés autour de la scène de l'accident.", + "example_sentence_english": "The onlookers gathered around the accident scene.", + "pos": "noun", + "word_frequency": 23821 + }, + { + "word": "bailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to yawn", + "example_sentence_native": "Il n'arrêtait pas de bailler pendant la réunion.", + "example_sentence_english": "He kept yawning during the meeting.", + "pos": "verb", + "word_frequency": 23822 + }, + { + "word": "bayou", + "article_with_word": "le bayou", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bayou", + "example_sentence_native": "Les alligators vivent dans les bayous de Louisiane.", + "example_sentence_english": "Alligators live in the bayous of Louisiana.", + "pos": "noun", + "word_frequency": 23824 + }, + { + "word": "bestiaire", + "article_with_word": "le bestiaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bestiary", + "example_sentence_native": "Le bestiaire médiéval regorge de créatures fantastiques.", + "example_sentence_english": "The medieval bestiary is full of fantastic creatures.", + "pos": "noun", + "word_frequency": 23829 + }, + { + "word": "bifurcation", + "article_with_word": "la bifurcation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bifurcation;branching", + "example_sentence_native": "Nous avons atteint une bifurcation sur le chemin.", + "example_sentence_english": "We reached a bifurcation on the path.", + "pos": "noun", + "word_frequency": 23830 + }, + { + "word": "biopic", + "article_with_word": "le biopic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biopic", + "example_sentence_native": "Le biopic sur Freddie Mercury a eu un grand succès.", + "example_sentence_english": "The biopic about Freddie Mercury was a great success.", + "pos": "noun", + "word_frequency": 23832 + }, + { + "word": "campion", + "article_with_word": "le campion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "campion (plant)", + "example_sentence_native": "Le campion des champs est une fleur sauvage commune.", + "example_sentence_english": "The field campion is a common wild flower.", + "pos": "noun", + "word_frequency": 23839 + }, + { + "word": "capoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to capsize;to fail", + "example_sentence_native": "Le bateau a failli capoter dans la tempête.", + "example_sentence_english": "The boat almost capsized in the storm.", + "pos": "verb", + "word_frequency": 23841 + }, + { + "word": "capucine", + "article_with_word": "la capucine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nasturtium", + "example_sentence_native": "Les capucines ajoutent de la couleur au jardin.", + "example_sentence_english": "Nasturtiums add color to the garden.", + "pos": "noun", + "word_frequency": 23842 + }, + { + "word": "cheddar", + "article_with_word": "le cheddar", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheddar cheese", + "example_sentence_native": "J'aime le sandwich au cheddar.", + "example_sentence_english": "I like cheddar cheese sandwiches.", + "pos": "noun", + "word_frequency": 23845 + }, + { + "word": "chéquier", + "article_with_word": "le chéquier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "checkbook", + "example_sentence_native": "J'ai oublié mon chéquier à la maison.", + "example_sentence_english": "I forgot my checkbook at home.", + "pos": "noun", + "word_frequency": 23847 + }, + { + "word": "cigogne", + "article_with_word": "la cigogne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stork", + "example_sentence_native": "La cigogne est un oiseau migrateur.", + "example_sentence_english": "The stork is a migratory bird.", + "pos": "noun", + "word_frequency": 23848 + }, + { + "word": "cimenterie", + "article_with_word": "la cimenterie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cement factory", + "example_sentence_native": "La nouvelle cimenterie créera de nombreux emplois.", + "example_sentence_english": "The new cement factory will create many jobs.", + "pos": "noun", + "word_frequency": 23849 + }, + { + "word": "cinquantième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fiftieth", + "example_sentence_native": "C'est le cinquantième anniversaire de l'entreprise.", + "example_sentence_english": "It's the fiftieth anniversary of the company.", + "pos": "numeral", + "word_frequency": 23850 + }, + { + "word": "clairon", + "article_with_word": "le clairon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bugle", + "example_sentence_native": "Le son du clairon a retenti dans la vallée.", + "example_sentence_english": "The sound of the bugle echoed in the valley.", + "pos": "noun", + "word_frequency": 23851 + }, + { + "word": "coat", + "article_with_word": "le coat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coat", + "example_sentence_native": "Il a mis son coat avant de sortir.", + "example_sentence_english": "He put on his coat before going out.", + "pos": "noun", + "word_frequency": 23854 + }, + { + "word": "coauteur", + "article_with_word": "le coauteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-author", + "example_sentence_native": "Elle est la coauteure de ce livre.", + "example_sentence_english": "She is the co-author of this book.", + "pos": "noun", + "word_frequency": 23855 + }, + { + "word": "comfort", + "article_with_word": "le comfort", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfort", + "example_sentence_native": "J'apprécie le comfort de ce fauteuil.", + "example_sentence_english": "I appreciate the comfort of this armchair.", + "pos": "noun", + "word_frequency": 23858 + }, + { + "word": "concise", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concise", + "example_sentence_native": "Son explication était claire et concise.", + "example_sentence_english": "His explanation was clear and concise.", + "pos": "adjective", + "word_frequency": 23860 + }, + { + "word": "conifère", + "article_with_word": "le conifère", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conifer", + "example_sentence_native": "La forêt est principalement composée de conifères.", + "example_sentence_english": "The forest is mainly composed of conifers.", + "pos": "noun", + "word_frequency": 23861 + }, + { + "word": "couvreur", + "article_with_word": "le couvreur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roofer", + "example_sentence_native": "Le couvreur répare le toit de la maison.", + "example_sentence_english": "The roofer is repairing the house's roof.", + "pos": "noun", + "word_frequency": 23864 + }, + { + "word": "cresson", + "article_with_word": "le cresson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watercress", + "example_sentence_native": "J'ai préparé une salade de cresson.", + "example_sentence_english": "I made a watercress salad.", + "pos": "noun", + "word_frequency": 23866 + }, + { + "word": "cuirasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to armor;to harden", + "example_sentence_native": "Il faut se cuirasser contre les critiques.", + "example_sentence_english": "One must harden oneself against criticism.", + "pos": "verb", + "word_frequency": 23868 + }, + { + "word": "declaration", + "article_with_word": "la déclaration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "declaration", + "example_sentence_native": "Il a fait une déclaration importante.", + "example_sentence_english": "He made an important declaration.", + "pos": "noun", + "word_frequency": 23870 + }, + { + "word": "depot", + "article_with_word": "le dépôt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depot;deposit;warehouse", + "example_sentence_native": "Le colis est au dépôt.", + "example_sentence_english": "The package is at the depot.", + "pos": "noun", + "word_frequency": 23873 + }, + { + "word": "devanture", + "article_with_word": "la devanture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storefront", + "example_sentence_native": "La devanture du magasin est très attrayante.", + "example_sentence_english": "The shop's storefront is very attractive.", + "pos": "noun", + "word_frequency": 23874 + }, + { + "word": "devinette", + "article_with_word": "la devinette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "riddle", + "example_sentence_native": "Peux-tu résoudre cette devinette?", + "example_sentence_english": "Can you solve this riddle?", + "pos": "noun", + "word_frequency": 23875 + }, + { + "word": "dirigeable", + "article_with_word": "le dirigeable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "airship;dirigible", + "example_sentence_native": "Le dirigeable a survolé la ville.", + "example_sentence_english": "The airship flew over the city.", + "pos": "noun", + "word_frequency": 23878 + }, + { + "word": "distancer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outdistance;to pull away from", + "example_sentence_native": "Le coureur a réussi à distancer ses adversaires.", + "example_sentence_english": "The runner managed to outdistance his opponents.", + "pos": "verb", + "word_frequency": 23879 + }, + { + "word": "docker", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "docker", + "example_sentence_native": "Le développeur utilise Docker pour déployer ses applications.", + "example_sentence_english": "The developer uses Docker to deploy his applications.", + "pos": "noun", + "word_frequency": 23880 + }, + { + "word": "dossard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bib number", + "example_sentence_native": "Chaque coureur porte un dossard avec son numéro.", + "example_sentence_english": "Each runner wears a bib number with their number.", + "pos": "noun", + "word_frequency": 23881 + }, + { + "word": "drainer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drain", + "example_sentence_native": "Il faut drainer l'eau du jardin après la pluie.", + "example_sentence_english": "The water must be drained from the garden after the rain.", + "pos": "verb", + "word_frequency": 23882 + }, + { + "word": "décompression", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decompression", + "example_sentence_native": "Après une longue journée, il a besoin d'un moment de décompression.", + "example_sentence_english": "After a long day, he needs a moment of decompression.", + "pos": "noun", + "word_frequency": 23883 + }, + { + "word": "décontamination", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decontamination", + "example_sentence_native": "L'équipe a procédé à la décontamination de la zone.", + "example_sentence_english": "The team carried out the decontamination of the area.", + "pos": "noun", + "word_frequency": 23884 + }, + { + "word": "déjection", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excrement", + "example_sentence_native": "Les déjections d'oiseaux peuvent endommager les voitures.", + "example_sentence_english": "Bird droppings can damage cars.", + "pos": "noun", + "word_frequency": 23885 + }, + { + "word": "dénuder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strip", + "example_sentence_native": "Il faut dénuder les fils électriques avant de les connecter.", + "example_sentence_english": "You need to strip the electrical wires before connecting them.", + "pos": "verb", + "word_frequency": 23886 + }, + { + "word": "emplir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fill", + "example_sentence_native": "Il a empli le verre d'eau.", + "example_sentence_english": "He filled the glass with water.", + "pos": "verb", + "word_frequency": 23888 + }, + { + "word": "empocher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pocket", + "example_sentence_native": "Il a empoché l'argent et est parti.", + "example_sentence_english": "He pocketed the money and left.", + "pos": "verb", + "word_frequency": 23889 + }, + { + "word": "enfler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swell", + "example_sentence_native": "Sa cheville a commencé à enfler après la chute.", + "example_sentence_english": "His ankle started to swell after the fall.", + "pos": "verb", + "word_frequency": 23890 + }, + { + "word": "ergonomique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ergonomic", + "example_sentence_native": "Cette chaise est très ergonomique et confortable.", + "example_sentence_english": "This chair is very ergonomic and comfortable.", + "pos": "adjective", + "word_frequency": 23891 + }, + { + "word": "eunuque", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eunuch", + "example_sentence_native": "Dans l'Antiquité, les eunuques avaient parfois des rôles importants à la cour.", + "example_sentence_english": "In antiquity, eunuchs sometimes held important roles at court.", + "pos": "noun", + "word_frequency": 23894 + }, + { + "word": "exonérer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exempt", + "example_sentence_native": "Certaines associations peuvent être exonérées d'impôts.", + "example_sentence_english": "Certain associations can be exempt from taxes.", + "pos": "verb", + "word_frequency": 23895 + }, + { + "word": "expatriation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expatriation", + "example_sentence_native": "L'expatriation est une expérience enrichissante pour beaucoup.", + "example_sentence_english": "Expatriation is a enriching experience for many.", + "pos": "noun", + "word_frequency": 23896 + }, + { + "word": "extincteur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire extinguisher", + "example_sentence_native": "Il y a un extincteur près de la sortie de secours.", + "example_sentence_english": "There is a fire extinguisher near the emergency exit.", + "pos": "noun", + "word_frequency": 23897 + }, + { + "word": "faisan", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pheasant", + "example_sentence_native": "Nous avons vu un faisan traverser le chemin.", + "example_sentence_english": "We saw a pheasant cross the path.", + "pos": "noun", + "word_frequency": 23899 + }, + { + "word": "faucille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sickle", + "example_sentence_native": "Le paysan utilisait une faucille pour couper le blé.", + "example_sentence_english": "The peasant used a sickle to cut the wheat.", + "pos": "noun", + "word_frequency": 23901 + }, + { + "word": "fessier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buttock", + "example_sentence_native": "Il a fait des exercices pour renforcer ses muscles fessiers.", + "example_sentence_english": "He did exercises to strengthen his gluteal muscles.", + "pos": "noun", + "word_frequency": 23904 + }, + { + "word": "fléchir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bend", + "example_sentence_native": "Il a dû fléchir les genoux pour passer sous la barre.", + "example_sentence_english": "He had to bend his knees to pass under the bar.", + "pos": "verb", + "word_frequency": 23907 + }, + { + "word": "formaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formalize", + "example_sentence_native": "Ils ont décidé de formaliser leur accord par écrit.", + "example_sentence_english": "They decided to formalize their agreement in writing.", + "pos": "verb", + "word_frequency": 23909 + }, + { + "word": "fragiliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weaken", + "example_sentence_native": "Le stress peut fragiliser le système immunitaire.", + "example_sentence_english": "Stress can weaken the immune system.", + "pos": "verb", + "word_frequency": 23910 + }, + { + "word": "gond", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hinge", + "example_sentence_native": "La porte grince car le gond est rouillé.", + "example_sentence_english": "The door creaks because the hinge is rusty.", + "pos": "noun", + "word_frequency": 23913 + }, + { + "word": "guépard", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheetah", + "example_sentence_native": "Le guépard est l'animal terrestre le plus rapide.", + "example_sentence_english": "The cheetah is the fastest land animal.", + "pos": "noun", + "word_frequency": 23918 + }, + { + "word": "hiérarchisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hierarchization", + "example_sentence_native": "La hiérarchisation des tâches est essentielle pour une bonne gestion de projet.", + "example_sentence_english": "The hierarchization of tasks is essential for good project management.", + "pos": "noun", + "word_frequency": 23925 + }, + { + "word": "hiéroglyphe", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hieroglyph", + "example_sentence_native": "Les murs du temple étaient couverts de hiéroglyphes anciens.", + "example_sentence_english": "The temple walls were covered with ancient hieroglyphs.", + "pos": "noun", + "word_frequency": 23926 + }, + { + "word": "hybridation", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hybridization", + "example_sentence_native": "L'hybridation des espèces peut créer de nouvelles variétés.", + "example_sentence_english": "The hybridization of species can create new varieties.", + "pos": "noun", + "word_frequency": 23928 + }, + { + "word": "icon", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icon", + "example_sentence_native": "Cliquez sur l'icône pour ouvrir l'application.", + "example_sentence_english": "Click on the icon to open the application.", + "pos": "noun", + "word_frequency": 23929 + }, + { + "word": "imminence", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imminence", + "example_sentence_native": "L'imminence de l'orage était palpable dans l'air.", + "example_sentence_english": "The imminence of the storm was palpable in the air.", + "pos": "noun", + "word_frequency": 23931 + }, + { + "word": "indolore", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painless", + "example_sentence_native": "L'injection était indolore.", + "example_sentence_english": "The injection was painless.", + "pos": "adjective", + "word_frequency": 23933 + }, + { + "word": "indécision", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indecision", + "example_sentence_native": "Son indécision a retardé le projet.", + "example_sentence_english": "His indecision delayed the project.", + "pos": "noun", + "word_frequency": 23935 + }, + { + "word": "ineptie", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ineptitude", + "example_sentence_native": "Dire de telles inepties est inacceptable.", + "example_sentence_english": "Saying such ineptitudes is unacceptable.", + "pos": "noun", + "word_frequency": 23936 + }, + { + "word": "infant", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infant", + "example_sentence_native": "L'infant royal a été présenté au public.", + "example_sentence_english": "The royal infant was presented to the public.", + "pos": "noun", + "word_frequency": 23937 + }, + { + "word": "insoluble", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insoluble", + "example_sentence_native": "Ce problème semble insoluble.", + "example_sentence_english": "This problem seems insoluble.", + "pos": "adjective", + "word_frequency": 23939 + }, + { + "word": "insuffler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to instill", + "example_sentence_native": "Il a insufflé une nouvelle vie à l'entreprise.", + "example_sentence_english": "He instilled new life into the company.", + "pos": "verb", + "word_frequency": 23940 + }, + { + "word": "interner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intern", + "example_sentence_native": "Le patient a dû être interné pour des soins spécialisés.", + "example_sentence_english": "The patient had to be interned for specialized care.", + "pos": "verb", + "word_frequency": 23941 + }, + { + "word": "intersaison", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "off-season", + "example_sentence_native": "Pendant l'intersaison, les joueurs s'entraînent individuellement.", + "example_sentence_english": "During the off-season, players train individually.", + "pos": "noun", + "word_frequency": 23942 + }, + { + "word": "inventif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventive", + "example_sentence_native": "C'est une personne très inventive, pleine d'idées.", + "example_sentence_english": "She is a very inventive person, full of ideas.", + "pos": "adjective", + "word_frequency": 23943 + }, + { + "word": "invincibilité", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invincibility", + "example_sentence_native": "L'équipe a maintenu son invincibilité toute la saison.", + "example_sentence_english": "The team maintained its invincibility all season.", + "pos": "noun", + "word_frequency": 23944 + }, + { + "word": "iota", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iota", + "example_sentence_native": "Il n'a pas changé d'un iota.", + "example_sentence_english": "He hasn't changed one iota.", + "pos": "noun", + "word_frequency": 23945 + }, + { + "word": "katana", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "katana", + "example_sentence_native": "Le samouraï maniait son katana avec une grande habileté.", + "example_sentence_english": "The samurai wielded his katana with great skill.", + "pos": "noun", + "word_frequency": 23956 + }, + { + "word": "landing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing", + "example_sentence_native": "Le pilote a réussi un atterrissage en douceur, un vrai beau landing.", + "example_sentence_english": "The pilot made a smooth landing, a truly beautiful landing.", + "pos": "noun", + "word_frequency": 23961 + }, + { + "word": "largesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generosity;largesse", + "example_sentence_native": "Il a fait preuve d'une grande largesse d'esprit.", + "example_sentence_english": "He showed great generosity of spirit.", + "pos": "noun", + "word_frequency": 23963 + }, + { + "word": "lavement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enema;washing", + "example_sentence_native": "Le médecin a prescrit un lavement intestinal.", + "example_sentence_english": "The doctor prescribed an intestinal enema.", + "pos": "noun", + "word_frequency": 23965 + }, + { + "word": "leak", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leak", + "example_sentence_native": "Il y a eu un leak d'informations confidentielles.", + "example_sentence_english": "There was a leak of confidential information.", + "pos": "noun", + "word_frequency": 23966 + }, + { + "word": "liberation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liberation", + "example_sentence_native": "La libération de la ville a été célébrée.", + "example_sentence_english": "The liberation of the city was celebrated.", + "pos": "noun", + "word_frequency": 23970 + }, + { + "word": "légitimation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimation;validation", + "example_sentence_native": "La légitimation de cette décision est nécessaire.", + "example_sentence_english": "The legitimation of this decision is necessary.", + "pos": "noun", + "word_frequency": 23974 + }, + { + "word": "mammaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mammary", + "example_sentence_native": "Le cancer mammaire est une maladie grave.", + "example_sentence_english": "Mammary cancer is a serious disease.", + "pos": "adjective", + "word_frequency": 23980 + }, + { + "word": "millième", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thousandth", + "example_sentence_native": "C'est le millième exemplaire de ce livre.", + "example_sentence_english": "This is the thousandth copy of this book.", + "pos": "numeral", + "word_frequency": 23985 + }, + { + "word": "mole", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mole (animal or skin mark)", + "example_sentence_native": "Il a une petite mole sur le bras.", + "example_sentence_english": "He has a small mole on his arm.", + "pos": "noun", + "word_frequency": 23989 + }, + { + "word": "motricité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "motor skills;motility", + "example_sentence_native": "La motricité fine est essentielle pour écrire.", + "example_sentence_english": "Fine motor skills are essential for writing.", + "pos": "noun", + "word_frequency": 23990 + }, + { + "word": "mouvant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moving;shifting;unstable", + "example_sentence_native": "Le sable mouvant est très dangereux.", + "example_sentence_english": "Quicksand is very dangerous.", + "pos": "adjective", + "word_frequency": 23991 + }, + { + "word": "mutualiste", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutualist (member of a mutual society);mutual (adj.)", + "example_sentence_native": "Elle est adhérente à une mutuelle, c'est une mutualiste.", + "example_sentence_english": "She is a member of a mutual insurance company, she is a mutualist.", + "pos": "noun", + "word_frequency": 23993 + }, + { + "word": "myrtille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blueberry", + "example_sentence_native": "J'adore les tartes aux myrtilles.", + "example_sentence_english": "I love blueberry pies.", + "pos": "noun", + "word_frequency": 23994 + }, + { + "word": "mécanisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanization", + "example_sentence_native": "La mécanisation a transformé l'agriculture.", + "example_sentence_english": "Mechanization has transformed agriculture.", + "pos": "noun", + "word_frequency": 23995 + }, + { + "word": "mégot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cigarette butt", + "example_sentence_native": "Ne jetez pas vos mégots par terre.", + "example_sentence_english": "Don't throw your cigarette butts on the ground.", + "pos": "noun", + "word_frequency": 23996 + }, + { + "word": "métabolique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metabolic", + "example_sentence_native": "Le syndrome métabolique est un ensemble de troubles.", + "example_sentence_english": "Metabolic syndrome is a set of disorders.", + "pos": "adjective", + "word_frequency": 23997 + }, + { + "word": "natte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mat;braid", + "example_sentence_native": "Elle a fait une belle natte dans ses cheveux.", + "example_sentence_english": "She made a beautiful braid in her hair.", + "pos": "noun", + "word_frequency": 23998 + }, + { + "word": "nerveusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nervously", + "example_sentence_native": "Il a attendu nerveusement les résultats de l'examen.", + "example_sentence_english": "He nervously awaited the exam results.", + "pos": "adverb", + "word_frequency": 24001 + }, + { + "word": "nominatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nominative", + "example_sentence_native": "Le cas nominatif est utilisé pour le sujet de la phrase.", + "example_sentence_english": "The nominative case is used for the subject of the sentence.", + "pos": "adjective", + "word_frequency": 24003 + }, + { + "word": "noviciat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "novitiate", + "example_sentence_native": "Elle a passé son noviciat dans ce monastère isolé.", + "example_sentence_english": "She spent her novitiate in this isolated monastery.", + "pos": "noun", + "word_frequency": 24005 + }, + { + "word": "numération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "numeration", + "example_sentence_native": "La numération romaine est basée sur des symboles.", + "example_sentence_english": "Roman numeration is based on symbols.", + "pos": "noun", + "word_frequency": 24006 + }, + { + "word": "népalais", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nepalese (person)", + "example_sentence_native": "Un Népalais a gravi l'Everest plusieurs fois.", + "example_sentence_english": "A Nepalese person has climbed Everest several times.", + "pos": "noun", + "word_frequency": 24007 + }, + { + "word": "obélisque", + "article_with_word": "l’", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obelisk", + "example_sentence_native": "L'obélisque de Louxor se dresse au centre de la place de la Concorde.", + "example_sentence_english": "The Luxor obelisk stands in the center of the Place de la Concorde.", + "pos": "noun", + "word_frequency": 24008 + }, + { + "word": "olympien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Olympian", + "example_sentence_native": "Il a une allure olympienne, digne d'un dieu.", + "example_sentence_english": "He has an Olympian bearing, worthy of a god.", + "pos": "adjective", + "word_frequency": 24010 + }, + { + "word": "orbital", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orbital", + "example_sentence_native": "La trajectoire orbitale de la sonde spatiale est très précise.", + "example_sentence_english": "The orbital trajectory of the space probe is very precise.", + "pos": "adjective", + "word_frequency": 24011 + }, + { + "word": "paracétamol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paracetamol", + "example_sentence_native": "Prenez du paracétamol pour soulager votre mal de tête.", + "example_sentence_english": "Take paracetamol to relieve your headache.", + "pos": "noun", + "word_frequency": 24015 + }, + { + "word": "parque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Fate (mythology)", + "example_sentence_native": "Les Parques, dans la mythologie, filent le destin des hommes.", + "example_sentence_english": "The Fates, in mythology, spin the destiny of men.", + "pos": "noun", + "word_frequency": 24016 + }, + { + "word": "parrainer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sponsor;to godfather", + "example_sentence_native": "Il a décidé de parrainer un jeune artiste prometteur.", + "example_sentence_english": "He decided to sponsor a promising young artist.", + "pos": "verb", + "word_frequency": 24017 + }, + { + "word": "pathos", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathos", + "example_sentence_native": "Le discours de l'orateur était empreint d'un grand pathos.", + "example_sentence_english": "The speaker's speech was imbued with great pathos.", + "pos": "noun", + "word_frequency": 24018 + }, + { + "word": "percher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perch", + "example_sentence_native": "L'oiseau s'est perché sur la plus haute branche de l'arbre.", + "example_sentence_english": "The bird perched on the highest branch of the tree.", + "pos": "verb", + "word_frequency": 24020 + }, + { + "word": "perforation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perforation", + "example_sentence_native": "Il y a une perforation dans la feuille de papier.", + "example_sentence_english": "There is a perforation in the sheet of paper.", + "pos": "noun", + "word_frequency": 24021 + }, + { + "word": "phytosanitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phytosanitary", + "example_sentence_native": "Des mesures phytosanitaires strictes sont appliquées pour les importations.", + "example_sentence_english": "Strict phytosanitary measures are applied for imports.", + "pos": "adjective", + "word_frequency": 24022 + }, + { + "word": "plasticité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plasticity", + "example_sentence_native": "La plasticité du cerveau permet l'apprentissage tout au long de la vie.", + "example_sentence_english": "Brain plasticity allows for lifelong learning.", + "pos": "noun", + "word_frequency": 24023 + }, + { + "word": "pointilleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punctilious;fussy", + "example_sentence_native": "Il est très pointilleux sur la grammaire et l'orthographe.", + "example_sentence_english": "He is very punctilious about grammar and spelling.", + "pos": "adjective", + "word_frequency": 24025 + }, + { + "word": "pommette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheekbone", + "example_sentence_native": "Elle a de jolies pommettes qui rougissent facilement.", + "example_sentence_english": "She has pretty cheekbones that blush easily.", + "pos": "noun", + "word_frequency": 24026 + }, + { + "word": "pony", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pony", + "example_sentence_native": "Le petit garçon rêvait d'avoir son propre poney.", + "example_sentence_english": "The little boy dreamed of having his own pony.", + "pos": "noun", + "word_frequency": 24027 + }, + { + "word": "porosité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "porosity", + "example_sentence_native": "La porosité du sol affecte la rétention d'eau.", + "example_sentence_english": "The porosity of the soil affects water retention.", + "pos": "noun", + "word_frequency": 24028 + }, + { + "word": "prenom", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "first name", + "example_sentence_native": "Quel est votre prénom et votre nom de famille ?", + "example_sentence_english": "What is your first name and last name?", + "pos": "noun", + "word_frequency": 24031 + }, + { + "word": "proteger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to protect", + "example_sentence_native": "Il est important de protéger l'environnement pour les générations futures.", + "example_sentence_english": "It is important to protect the environment for future generations.", + "pos": "verb", + "word_frequency": 24032 + }, + { + "word": "prérequis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prerequisite", + "example_sentence_native": "Ce cours a plusieurs prérequis académiques.", + "example_sentence_english": "This course has several academic prerequisites.", + "pos": "noun", + "word_frequency": 24033 + }, + { + "word": "pére", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father", + "example_sentence_native": "Mon père travaille comme ingénieur.", + "example_sentence_english": "My father works as an engineer.", + "pos": "noun", + "word_frequency": 24035 + }, + { + "word": "pérégrination", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peregrination;wandering", + "example_sentence_native": "Ses pérégrinations l'ont mené à travers plusieurs continents.", + "example_sentence_english": "His peregrinations led him across several continents.", + "pos": "noun", + "word_frequency": 24036 + }, + { + "word": "quadrant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrant", + "example_sentence_native": "Le point se situe dans le premier quadrant du graphique.", + "example_sentence_english": "The point is located in the first quadrant of the graph.", + "pos": "noun", + "word_frequency": 24037 + }, + { + "word": "quaternaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quaternary", + "example_sentence_native": "Nous vivons dans l'ère géologique quaternaire.", + "example_sentence_english": "We live in the Quaternary geological era.", + "pos": "adjective", + "word_frequency": 24038 + }, + { + "word": "redécoupage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redrawing;re-cutting", + "example_sentence_native": "Le redécoupage électoral a suscité de vifs débats.", + "example_sentence_english": "The electoral redrawing sparked heated debates.", + "pos": "noun", + "word_frequency": 24040 + }, + { + "word": "relent", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lingering smell;whiff;trace", + "example_sentence_native": "Il y avait un relent de moisi dans la vieille maison.", + "example_sentence_english": "There was a lingering smell of mold in the old house.", + "pos": "noun", + "word_frequency": 24041 + }, + { + "word": "repondre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to answer;to reply", + "example_sentence_native": "Je dois répondre à cet e-mail avant midi.", + "example_sentence_english": "I must answer this email before noon.", + "pos": "verb", + "word_frequency": 24042 + }, + { + "word": "resserrement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tightening;contraction", + "example_sentence_native": "Le resserrement des conditions de crédit affecte le marché immobilier.", + "example_sentence_english": "The tightening of credit conditions affects the housing market.", + "pos": "noun", + "word_frequency": 24043 + }, + { + "word": "retordre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to twist again;to give trouble", + "example_sentence_native": "Ce problème va nous donner du fil à retordre.", + "example_sentence_english": "This problem is going to give us a hard time.", + "pos": "verb", + "word_frequency": 24044 + }, + { + "word": "richissime", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely rich;very wealthy", + "example_sentence_native": "Il a épousé une femme richissime.", + "example_sentence_english": "He married an extremely wealthy woman.", + "pos": "adjective", + "word_frequency": 24045 + }, + { + "word": "réceptacle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receptacle;container", + "example_sentence_native": "Le vase est un réceptacle pour les fleurs.", + "example_sentence_english": "The vase is a receptacle for flowers.", + "pos": "noun", + "word_frequency": 24047 + }, + { + "word": "récréatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recreational", + "example_sentence_native": "Nous cherchons des activités récréatives pour les enfants.", + "example_sentence_english": "We are looking for recreational activities for the children.", + "pos": "adjective", + "word_frequency": 24048 + }, + { + "word": "réessayer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to try again;to re-attempt", + "example_sentence_native": "Si tu échoues, tu dois réessayer.", + "example_sentence_english": "If you fail, you must try again.", + "pos": "verb", + "word_frequency": 24049 + }, + { + "word": "satiété", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satiety;fullness", + "example_sentence_native": "Le repas a provoqué une sensation de satiété.", + "example_sentence_english": "The meal caused a feeling of satiety.", + "pos": "noun", + "word_frequency": 24051 + }, + { + "word": "sillonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crisscross;to furrow", + "example_sentence_native": "Les routes sillonnent la campagne.", + "example_sentence_english": "The roads crisscross the countryside.", + "pos": "verb", + "word_frequency": 24053 + }, + { + "word": "sinueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winding;sinuous", + "example_sentence_native": "Le chemin est très sinueux.", + "example_sentence_english": "The path is very winding.", + "pos": "adjective", + "word_frequency": 24054 + }, + { + "word": "sophistication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sophistication", + "example_sentence_native": "La sophistication de son style est remarquable.", + "example_sentence_english": "The sophistication of his style is remarkable.", + "pos": "noun", + "word_frequency": 24058 + }, + { + "word": "soubassement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plinth;base;foundation", + "example_sentence_native": "Le soubassement du mur est en pierre.", + "example_sentence_english": "The plinth of the wall is made of stone.", + "pos": "noun", + "word_frequency": 24059 + }, + { + "word": "spectral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spectral;ghostly", + "example_sentence_native": "Une lumière spectrale éclairait la pièce.", + "example_sentence_english": "A spectral light illuminated the room.", + "pos": "adjective", + "word_frequency": 24060 + }, + { + "word": "sponsorisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsored", + "example_sentence_native": "C'est un contenu sponsorisé.", + "example_sentence_english": "This is sponsored content.", + "pos": "adjective", + "word_frequency": 24061 + }, + { + "word": "strophe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strophe;stanza", + "example_sentence_native": "Le poème est composé de trois strophes.", + "example_sentence_english": "The poem is composed of three stanzas.", + "pos": "noun", + "word_frequency": 24063 + }, + { + "word": "subventionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidized;funded", + "example_sentence_native": "Ce projet est subventionné par l'État.", + "example_sentence_english": "This project is subsidized by the State.", + "pos": "adjective", + "word_frequency": 24066 + }, + { + "word": "tanière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "den;lair", + "example_sentence_native": "L'ours est retourné à sa tanière.", + "example_sentence_english": "The bear returned to its den.", + "pos": "noun", + "word_frequency": 24072 + }, + { + "word": "tchadien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Chadian", + "example_sentence_native": "Il est de nationalité tchadienne.", + "example_sentence_english": "He is of Chadian nationality.", + "pos": "adjective", + "word_frequency": 24073 + }, + { + "word": "theorie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theory", + "example_sentence_native": "Cette théorie est très intéressante.", + "example_sentence_english": "This theory is very interesting.", + "pos": "noun", + "word_frequency": 24074 + }, + { + "word": "troyen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Trojan", + "example_sentence_native": "Le cheval de Troie est une légende troyenne.", + "example_sentence_english": "The Trojan horse is a Trojan legend.", + "pos": "adjective", + "word_frequency": 24078 + }, + { + "word": "truqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigged;faked;doctored", + "example_sentence_native": "Les résultats de l'élection étaient truqués.", + "example_sentence_english": "The election results were rigged.", + "pos": "adjective", + "word_frequency": 24079 + }, + { + "word": "vape", + "article_with_word": "la vape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vape;vaping", + "example_sentence_native": "La vape est devenue très populaire ces dernières années.", + "example_sentence_english": "Vaping has become very popular in recent years.", + "pos": "noun", + "word_frequency": 24086 + }, + { + "word": "ventriculaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ventricular", + "example_sentence_native": "Il souffre d'une fibrillation ventriculaire.", + "example_sentence_english": "He suffers from ventricular fibrillation.", + "pos": "adjective", + "word_frequency": 24091 + }, + { + "word": "veritable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "true;real;genuine", + "example_sentence_native": "C'est une véritable opportunité pour nous.", + "example_sentence_english": "This is a true opportunity for us.", + "pos": "adjective", + "word_frequency": 24092 + }, + { + "word": "vidéaste", + "article_with_word": "un vidéaste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "videographer", + "example_sentence_native": "Le vidéaste a filmé tout l'événement.", + "example_sentence_english": "The videographer filmed the entire event.", + "pos": "noun", + "word_frequency": 24093 + }, + { + "word": "voltage", + "article_with_word": "le voltage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voltage", + "example_sentence_native": "Vérifiez le voltage avant de brancher l'appareil.", + "example_sentence_english": "Check the voltage before plugging in the device.", + "pos": "noun", + "word_frequency": 24096 + }, + { + "word": "yéménite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Yemeni", + "example_sentence_native": "La cuisine yéménite est riche en saveurs.", + "example_sentence_english": "Yemeni cuisine is rich in flavors.", + "pos": "adjective", + "word_frequency": 24103 + }, + { + "word": "zélé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zealous;overzealous", + "example_sentence_native": "Il est très zélé dans son travail.", + "example_sentence_english": "He is very zealous in his work.", + "pos": "adjective", + "word_frequency": 24105 + }, + { + "word": "éboueur", + "article_with_word": "un éboueur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garbage collector", + "example_sentence_native": "L'éboueur passe tous les matins.", + "example_sentence_english": "The garbage collector comes every morning.", + "pos": "noun", + "word_frequency": 24106 + }, + { + "word": "éboulement", + "article_with_word": "un éboulement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landslide;rockfall", + "example_sentence_native": "La route est bloquée à cause d'un éboulement.", + "example_sentence_english": "The road is blocked due to a landslide.", + "pos": "noun", + "word_frequency": 24107 + }, + { + "word": "écrasé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crushed;squashed", + "example_sentence_native": "La voiture était complètement écrasée après l'accident.", + "example_sentence_english": "The car was completely crushed after the accident.", + "pos": "adjective", + "word_frequency": 24108 + }, + { + "word": "élancé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slender;graceful", + "example_sentence_native": "Elle a une silhouette élancée et élégante.", + "example_sentence_english": "She has a slender and elegant figure.", + "pos": "adjective", + "word_frequency": 24109 + }, + { + "word": "émulateur", + "article_with_word": "un émulateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emulator", + "example_sentence_native": "J'utilise un émulateur pour jouer à de vieux jeux.", + "example_sentence_english": "I use an emulator to play old games.", + "pos": "noun", + "word_frequency": 24110 + }, + { + "word": "éprouvant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trying;challenging;grueling", + "example_sentence_native": "Ce fut une expérience très éprouvante pour lui.", + "example_sentence_english": "It was a very trying experience for him.", + "pos": "adjective", + "word_frequency": 24111 + }, + { + "word": "oeuvrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to work;to strive;to act", + "example_sentence_native": "Il oeuvre pour la paix dans le monde.", + "example_sentence_english": "He works for peace in the world.", + "pos": "verb", + "word_frequency": 24113 + }, + { + "word": "abstentionniste", + "article_with_word": "un abstentionniste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstentionist", + "example_sentence_native": "Le nombre d'abstentionnistes a augmenté lors des dernières élections.", + "example_sentence_english": "The number of abstentionists increased in the last elections.", + "pos": "noun", + "word_frequency": 24114 + }, + { + "word": "accrédité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accredited", + "example_sentence_native": "Seuls les journalistes accrédités peuvent entrer.", + "example_sentence_english": "Only accredited journalists can enter.", + "pos": "adjective", + "word_frequency": 24115 + }, + { + "word": "affaissement", + "article_with_word": "un affaissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidence;collapse;sagging", + "example_sentence_native": "Un affaissement de terrain a provoqué la fermeture de la route.", + "example_sentence_english": "A land subsidence caused the road closure.", + "pos": "noun", + "word_frequency": 24117 + }, + { + "word": "amarrage", + "article_with_word": "l'amarrage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mooring;docking", + "example_sentence_native": "L'amarrage du bateau a été difficile à cause du vent.", + "example_sentence_english": "The mooring of the boat was difficult due to the wind.", + "pos": "noun", + "word_frequency": 24125 + }, + { + "word": "amplifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amplified;enhanced", + "example_sentence_native": "Le son était amplifié par les haut-parleurs.", + "example_sentence_english": "The sound was amplified by the speakers.", + "pos": "adjective", + "word_frequency": 24127 + }, + { + "word": "andalou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Andalusian", + "example_sentence_native": "La culture andalouse est très riche.", + "example_sentence_english": "Andalusian culture is very rich.", + "pos": "adjective", + "word_frequency": 24128 + }, + { + "word": "apprenant", + "article_with_word": "un apprenant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "learner;student", + "example_sentence_native": "Chaque apprenant a son propre rythme.", + "example_sentence_english": "Each learner has their own pace.", + "pos": "noun", + "word_frequency": 24130 + }, + { + "word": "assoiffé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thirsty;parched", + "example_sentence_native": "Après la course, il était assoiffé.", + "example_sentence_english": "After the race, he was thirsty.", + "pos": "adjective", + "word_frequency": 24134 + }, + { + "word": "athletic", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletic", + "example_sentence_native": "C'est un homme très athletic.", + "example_sentence_english": "He is a very athletic man.", + "pos": "adjective", + "word_frequency": 24135 + }, + { + "word": "athénien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Athenian", + "example_sentence_native": "Les philosophes athéniens étaient célèbres.", + "example_sentence_english": "Athenian philosophers were famous.", + "pos": "adjective", + "word_frequency": 24136 + }, + { + "word": "augmenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "increased;augmented", + "example_sentence_native": "La réalité augmentée est de plus en plus populaire.", + "example_sentence_english": "Augmented reality is becoming increasingly popular.", + "pos": "adjective", + "word_frequency": 24138 + }, + { + "word": "aven", + "article_with_word": "un aven", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sinkhole;pothole (geological)", + "example_sentence_native": "L'explorateur est descendu dans un aven profond.", + "example_sentence_english": "The explorer descended into a deep sinkhole.", + "pos": "noun", + "word_frequency": 24140 + }, + { + "word": "ayatollah", + "article_with_word": "un ayatollah", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ayatollah", + "example_sentence_native": "L'ayatollah est une haute autorité religieuse chiite.", + "example_sentence_english": "The ayatollah is a high Shiite religious authority.", + "pos": "noun", + "word_frequency": 24141 + }, + { + "word": "bandé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandaged;tied up;taut", + "example_sentence_native": "Son bras était bandé après la chute.", + "example_sentence_english": "His arm was bandaged after the fall.", + "pos": "adjective", + "word_frequency": 24143 + }, + { + "word": "barillet", + "article_with_word": "un barillet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cylinder (of a revolver);barrel (of a lock)", + "example_sentence_native": "Le barillet du revolver contenait six balles.", + "example_sentence_english": "The revolver's cylinder contained six bullets.", + "pos": "noun", + "word_frequency": 24145 + }, + { + "word": "bicentenaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bicentennial", + "example_sentence_native": "Nous célébrons le bicentenaire de cet événement.", + "example_sentence_english": "We are celebrating the bicentennial of this event.", + "pos": "adjective", + "word_frequency": 24150 + }, + { + "word": "bluffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bluff", + "example_sentence_native": "Il a essayé de me bluffer au poker.", + "example_sentence_english": "He tried to bluff me at poker.", + "pos": "verb", + "word_frequency": 24154 + }, + { + "word": "bobsleigh", + "article_with_word": "le bobsleigh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bobsleigh", + "example_sentence_native": "Le bobsleigh est un sport d'hiver.", + "example_sentence_english": "Bobsleigh is a winter sport.", + "pos": "noun", + "word_frequency": 24155 + }, + { + "word": "bousiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wreck;to mess up;to botch", + "example_sentence_native": "Il a bousillé tout le travail.", + "example_sentence_english": "He messed up all the work.", + "pos": "verb", + "word_frequency": 24157 + }, + { + "word": "boxing", + "article_with_word": "le boxing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxing", + "example_sentence_native": "Il pratique le boxing depuis son enfance.", + "example_sentence_english": "He has been practicing boxing since childhood.", + "pos": "noun", + "word_frequency": 24158 + }, + { + "word": "branlée", + "article_with_word": "une branlée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thrashing;beating (slang)", + "example_sentence_native": "L'équipe a pris une branlée hier soir.", + "example_sentence_english": "The team got a thrashing last night.", + "pos": "noun", + "word_frequency": 24160 + }, + { + "word": "bronchite", + "article_with_word": "la bronchite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bronchitis", + "example_sentence_native": "Il a une bronchite et doit rester au lit.", + "example_sentence_english": "He has bronchitis and must stay in bed.", + "pos": "noun", + "word_frequency": 24161 + }, + { + "word": "buzzer", + "article_with_word": "le buzzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buzzer", + "example_sentence_native": "Le buzzer a retenti, signalant la fin du match.", + "example_sentence_english": "The buzzer sounded, signaling the end of the game.", + "pos": "noun", + "word_frequency": 24162 + }, + { + "word": "camionneur", + "article_with_word": "le camionneur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck driver", + "example_sentence_native": "Le camionneur a livré les marchandises à temps.", + "example_sentence_english": "The truck driver delivered the goods on time.", + "pos": "noun", + "word_frequency": 24164 + }, + { + "word": "canevas", + "article_with_word": "le canevas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canvas;framework", + "example_sentence_native": "L'artiste a commencé une nouvelle peinture sur un grand canevas.", + "example_sentence_english": "The artist started a new painting on a large canvas.", + "pos": "noun", + "word_frequency": 24165 + }, + { + "word": "chapelier", + "article_with_word": "le chapelier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hat maker;hatter", + "example_sentence_native": "Le chapelier a créé un chapeau sur mesure.", + "example_sentence_english": "The hatter created a custom-made hat.", + "pos": "noun", + "word_frequency": 24169 + }, + { + "word": "châtaigne", + "article_with_word": "la châtaigne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chestnut", + "example_sentence_native": "J'adore les châtaignes grillées en hiver.", + "example_sentence_english": "I love roasted chestnuts in winter.", + "pos": "noun", + "word_frequency": 24170 + }, + { + "word": "cine", + "article_with_word": "le ciné", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cinema;movie theater (informal)", + "example_sentence_native": "On va au ciné ce soir ?", + "example_sentence_english": "Shall we go to the cinema tonight?", + "pos": "noun", + "word_frequency": 24171 + }, + { + "word": "civilité", + "article_with_word": "la civilité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civility;politeness", + "example_sentence_native": "Il est important de faire preuve de civilité en public.", + "example_sentence_english": "It is important to show civility in public.", + "pos": "noun", + "word_frequency": 24173 + }, + { + "word": "colere", + "article_with_word": "la colère", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anger;wrath", + "example_sentence_native": "Sa colère était visible sur son visage.", + "example_sentence_english": "His anger was visible on his face.", + "pos": "noun", + "word_frequency": 24181 + }, + { + "word": "commandite", + "article_with_word": "la commandite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limited partnership;sponsorship", + "example_sentence_native": "La société a été créée sous forme de commandite.", + "example_sentence_english": "The company was formed as a limited partnership.", + "pos": "noun", + "word_frequency": 24182 + }, + { + "word": "compensé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensated;offset;wedge (for shoes)", + "example_sentence_native": "Ses efforts ont été compensés par une augmentation.", + "example_sentence_english": "His efforts were compensated by a raise.", + "pos": "adjective", + "word_frequency": 24183 + }, + { + "word": "compo", + "article_with_word": "la compo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composition (informal);homework (informal)", + "example_sentence_native": "J'ai une compo de maths demain.", + "example_sentence_english": "I have a math test/composition tomorrow.", + "pos": "noun", + "word_frequency": 24184 + }, + { + "word": "confiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confined;locked down", + "example_sentence_native": "Nous étions confinés à la maison pendant la pandémie.", + "example_sentence_english": "We were confined at home during the pandemic.", + "pos": "adjective", + "word_frequency": 24185 + }, + { + "word": "conjurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conjure;to ward off;to implore", + "example_sentence_native": "Il a essayé de conjurer le mauvais sort.", + "example_sentence_english": "He tried to ward off bad luck.", + "pos": "verb", + "word_frequency": 24186 + }, + { + "word": "consigné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "returnable (bottle);recorded;registered", + "example_sentence_native": "Les bouteilles de lait sont souvent consignées.", + "example_sentence_english": "Milk bottles are often returnable.", + "pos": "adjective", + "word_frequency": 24187 + }, + { + "word": "consolidé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consolidated;strengthened", + "example_sentence_native": "Les comptes consolidés de l'entreprise sont positifs.", + "example_sentence_english": "The company's consolidated accounts are positive.", + "pos": "adjective", + "word_frequency": 24188 + }, + { + "word": "cops", + "article_with_word": "les cops", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cops (informal)", + "example_sentence_native": "Les cops sont arrivés rapidement sur les lieux.", + "example_sentence_english": "The cops arrived quickly on the scene.", + "pos": "noun", + "word_frequency": 24189 + }, + { + "word": "corolle", + "article_with_word": "la corolle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corolla (of a flower)", + "example_sentence_native": "La corolle de cette fleur est d'un rouge éclatant.", + "example_sentence_english": "The corolla of this flower is a brilliant red.", + "pos": "noun", + "word_frequency": 24190 + }, + { + "word": "corroborer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to corroborate;to confirm", + "example_sentence_native": "Les preuves ont corroboré son témoignage.", + "example_sentence_english": "The evidence corroborated his testimony.", + "pos": "verb", + "word_frequency": 24191 + }, + { + "word": "craquant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crunchy;adorable;charming", + "example_sentence_native": "Ces biscuits sont vraiment craquants.", + "example_sentence_english": "These cookies are really crunchy.", + "pos": "adjective", + "word_frequency": 24193 + }, + { + "word": "crevaison", + "article_with_word": "la crevaison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat tire;puncture", + "example_sentence_native": "J'ai eu une crevaison sur le chemin du travail.", + "example_sentence_english": "I had a flat tire on the way to work.", + "pos": "noun", + "word_frequency": 24195 + }, + { + "word": "cérémonial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceremonial", + "example_sentence_native": "La robe avait un aspect très cérémonial.", + "example_sentence_english": "The dress had a very ceremonial appearance.", + "pos": "adjective", + "word_frequency": 24196 + }, + { + "word": "depression", + "article_with_word": "la dépression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depression;downturn", + "example_sentence_native": "Elle souffre de dépression saisonnière.", + "example_sentence_english": "She suffers from seasonal depression.", + "pos": "noun", + "word_frequency": 24198 + }, + { + "word": "diffraction", + "article_with_word": "la diffraction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diffraction", + "example_sentence_native": "La diffraction de la lumière est un phénomène optique.", + "example_sentence_english": "The diffraction of light is an optical phenomenon.", + "pos": "noun", + "word_frequency": 24199 + }, + { + "word": "distiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distill", + "example_sentence_native": "Ils distillent de l'alcool à partir de fruits.", + "example_sentence_english": "They distill alcohol from fruits.", + "pos": "verb", + "word_frequency": 24203 + }, + { + "word": "décimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decimated", + "example_sentence_native": "L'armée a été décimée par la maladie.", + "example_sentence_english": "The army was decimated by the disease.", + "pos": "adjective", + "word_frequency": 24208 + }, + { + "word": "décomplexé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uninhibited;unselfconscious", + "example_sentence_native": "Il est très décomplexé face à la critique.", + "example_sentence_english": "He is very uninhibited when faced with criticism.", + "pos": "adjective", + "word_frequency": 24209 + }, + { + "word": "démarchage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solicitation;canvassing", + "example_sentence_native": "Le démarchage téléphonique est souvent agaçant.", + "example_sentence_english": "Telephone solicitation is often annoying.", + "pos": "noun", + "word_frequency": 24210 + }, + { + "word": "dénaturer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distort;to denature", + "example_sentence_native": "Il ne faut pas dénaturer les faits.", + "example_sentence_english": "One must not distort the facts.", + "pos": "verb", + "word_frequency": 24211 + }, + { + "word": "dénouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to untie;to unravel", + "example_sentence_native": "Elle a dénoué le nœud de ses lacets.", + "example_sentence_english": "She untied the knot in her shoelaces.", + "pos": "verb", + "word_frequency": 24212 + }, + { + "word": "détecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detected", + "example_sentence_native": "Le problème a été détecté à temps.", + "example_sentence_english": "The problem was detected in time.", + "pos": "adjective", + "word_frequency": 24213 + }, + { + "word": "emballement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "runaway;acceleration;enthusiasm", + "example_sentence_native": "Il y a eu un emballement médiatique autour de cette affaire.", + "example_sentence_english": "There was a media frenzy around this case.", + "pos": "noun", + "word_frequency": 24216 + }, + { + "word": "enjoué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playful;cheerful", + "example_sentence_native": "Son attitude enjouée met tout le monde de bonne humeur.", + "example_sentence_english": "His cheerful attitude puts everyone in a good mood.", + "pos": "adjective", + "word_frequency": 24218 + }, + { + "word": "enracinement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rooting;establishment", + "example_sentence_native": "L'enracinement des arbres est essentiel pour leur stabilité.", + "example_sentence_english": "The rooting of trees is essential for their stability.", + "pos": "noun", + "word_frequency": 24219 + }, + { + "word": "entaché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tainted;stained", + "example_sentence_native": "Sa réputation a été entachée par ce scandale.", + "example_sentence_english": "His reputation was tainted by this scandal.", + "pos": "adjective", + "word_frequency": 24220 + }, + { + "word": "exaltant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhilarating;uplifting", + "example_sentence_native": "C'était une expérience vraiment exaltante.", + "example_sentence_english": "It was a truly exhilarating experience.", + "pos": "adjective", + "word_frequency": 24222 + }, + { + "word": "excusé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excused", + "example_sentence_native": "Son absence a été excusée par un certificat médical.", + "example_sentence_english": "His absence was excused by a medical certificate.", + "pos": "adjective", + "word_frequency": 24223 + }, + { + "word": "exorcisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exorcism", + "example_sentence_native": "L'exorcisme est une pratique religieuse ancienne.", + "example_sentence_english": "Exorcism is an ancient religious practice.", + "pos": "noun", + "word_frequency": 24224 + }, + { + "word": "extérieurement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "externally;outwardly", + "example_sentence_native": "Extérieurement, tout semblait normal.", + "example_sentence_english": "Outwardly, everything seemed normal.", + "pos": "adverb", + "word_frequency": 24225 + }, + { + "word": "faussaire", + "article_with_word": "le/la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forger;faker", + "example_sentence_native": "La police a arrêté le faussaire de tableaux.", + "example_sentence_english": "The police arrested the art forger.", + "pos": "noun", + "word_frequency": 24228 + }, + { + "word": "fedora", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fedora", + "example_sentence_native": "Il portait un élégant fedora.", + "example_sentence_english": "He was wearing an elegant fedora.", + "pos": "noun", + "word_frequency": 24229 + }, + { + "word": "feuilleter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leaf through;to browse", + "example_sentence_native": "J'aime feuilleter des livres à la librairie.", + "example_sentence_english": "I like to leaf through books at the bookstore.", + "pos": "verb", + "word_frequency": 24230 + }, + { + "word": "focalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "focusing;focalization", + "example_sentence_native": "La focalisation sur les détails est importante.", + "example_sentence_english": "Focusing on details is important.", + "pos": "noun", + "word_frequency": 24233 + }, + { + "word": "fondamentalisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamentalism", + "example_sentence_native": "Le fondamentalisme religieux est un sujet complexe.", + "example_sentence_english": "Religious fundamentalism is a complex subject.", + "pos": "noun", + "word_frequency": 24234 + }, + { + "word": "frasque", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prank;escapade", + "example_sentence_native": "Ses frasques de jeunesse sont bien connues.", + "example_sentence_english": "His youthful escapades are well known.", + "pos": "noun", + "word_frequency": 24236 + }, + { + "word": "frelon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hornet", + "example_sentence_native": "Attention, il y a un nid de frelons sous le toit.", + "example_sentence_english": "Beware, there's a hornet's nest under the roof.", + "pos": "noun", + "word_frequency": 24237 + }, + { + "word": "frissonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shiver;to thrill", + "example_sentence_native": "J'ai frissonné de froid en sortant.", + "example_sentence_english": "I shivered from the cold when I went out.", + "pos": "verb", + "word_frequency": 24238 + }, + { + "word": "féerique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magical;enchanting;fairy-tale like", + "example_sentence_native": "Le spectacle de lumières était absolument féerique.", + "example_sentence_english": "The light show was absolutely magical.", + "pos": "adjective", + "word_frequency": 24239 + }, + { + "word": "gaiement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerfully", + "example_sentence_native": "Il a chanté gaiement sous la pluie.", + "example_sentence_english": "He sang cheerfully in the rain.", + "pos": "adverb", + "word_frequency": 24240 + }, + { + "word": "ghanéen", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ghanaian", + "example_sentence_native": "Elle a des origines ghanéennes.", + "example_sentence_english": "She has Ghanaian origins.", + "pos": "adjective", + "word_frequency": 24242 + }, + { + "word": "gibbon", + "article_with_word": "le gibbon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gibbon", + "example_sentence_native": "Le gibbon est connu pour ses longs bras.", + "example_sentence_english": "The gibbon is known for its long arms.", + "pos": "noun", + "word_frequency": 24243 + }, + { + "word": "gouttelette", + "article_with_word": "la gouttelette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "droplet", + "example_sentence_native": "Des gouttelettes de rosée couvraient les feuilles.", + "example_sentence_english": "Dew droplets covered the leaves.", + "pos": "noun", + "word_frequency": 24245 + }, + { + "word": "gril", + "article_with_word": "le gril", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grill", + "example_sentence_native": "Nous avons fait des brochettes sur le gril.", + "example_sentence_english": "We made skewers on the grill.", + "pos": "noun", + "word_frequency": 24247 + }, + { + "word": "grossiste", + "article_with_word": "le grossiste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wholesaler", + "example_sentence_native": "Le grossiste fournit les magasins en produits frais.", + "example_sentence_english": "The wholesaler supplies stores with fresh produce.", + "pos": "noun", + "word_frequency": 24248 + }, + { + "word": "hotte", + "article_with_word": "la hotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood (kitchen)", + "example_sentence_native": "La hotte de cuisine est très efficace.", + "example_sentence_english": "The kitchen hood is very efficient.", + "pos": "noun", + "word_frequency": 24257 + }, + { + "word": "hydrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydric;water-related", + "example_sentence_native": "La gestion de la ressource hydrique est cruciale.", + "example_sentence_english": "Water resource management is crucial.", + "pos": "adjective", + "word_frequency": 24259 + }, + { + "word": "hypothermie", + "article_with_word": "l'hypothermie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothermia", + "example_sentence_native": "L'hypothermie peut être fatale si elle n'est pas traitée.", + "example_sentence_english": "Hypothermia can be fatal if not treated.", + "pos": "noun", + "word_frequency": 24260 + }, + { + "word": "hésitant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hesitant", + "example_sentence_native": "Il est resté hésitant face à la proposition.", + "example_sentence_english": "He remained hesitant about the proposal.", + "pos": "adjective", + "word_frequency": 24261 + }, + { + "word": "iconoclaste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iconoclastic", + "example_sentence_native": "Son esprit iconoclaste le pousse à remettre en question les traditions.", + "example_sentence_english": "His iconoclastic spirit pushes him to question traditions.", + "pos": "adjective", + "word_frequency": 24262 + }, + { + "word": "inaliénable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inalienable", + "example_sentence_native": "Les droits fondamentaux sont inaliénables.", + "example_sentence_english": "Fundamental rights are inalienable.", + "pos": "adjective", + "word_frequency": 24264 + }, + { + "word": "incitatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incentive;encouraging", + "example_sentence_native": "Le gouvernement propose des aides incitatives pour l'emploi.", + "example_sentence_english": "The government offers incentive aids for employment.", + "pos": "adjective", + "word_frequency": 24265 + }, + { + "word": "incommensurable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immeasurable", + "example_sentence_native": "Sa contribution à la science est incommensurable.", + "example_sentence_english": "His contribution to science is immeasurable.", + "pos": "adjective", + "word_frequency": 24266 + }, + { + "word": "ingratitude", + "article_with_word": "l'ingratitude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingratitude", + "example_sentence_native": "Il a montré une grande ingratitude envers ses bienfaiteurs.", + "example_sentence_english": "He showed great ingratitude towards his benefactors.", + "pos": "noun", + "word_frequency": 24267 + }, + { + "word": "ingérable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unmanageable", + "example_sentence_native": "La situation est devenue ingérable sans aide extérieure.", + "example_sentence_english": "The situation became unmanageable without external help.", + "pos": "adjective", + "word_frequency": 24268 + }, + { + "word": "insalubrité", + "article_with_word": "l'insalubrité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insalubrity;unhealthiness", + "example_sentence_native": "Le rapport a souligné l'insalubrité des logements.", + "example_sentence_english": "The report highlighted the unhealthiness of the housing.", + "pos": "noun", + "word_frequency": 24269 + }, + { + "word": "intemporel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timeless", + "example_sentence_native": "Ce film est un classique intemporel.", + "example_sentence_english": "This film is a timeless classic.", + "pos": "adjective", + "word_frequency": 24270 + }, + { + "word": "interstellaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interstellar", + "example_sentence_native": "Le voyage interstellaire est encore de la science-fiction.", + "example_sentence_english": "Interstellar travel is still science fiction.", + "pos": "adjective", + "word_frequency": 24271 + }, + { + "word": "intimidant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidating", + "example_sentence_native": "Son silence était intimidant.", + "example_sentence_english": "His silence was intimidating.", + "pos": "adjective", + "word_frequency": 24272 + }, + { + "word": "labellisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labeled;certified", + "example_sentence_native": "Ce produit est labellisé 'Agriculture Biologique'.", + "example_sentence_english": "This product is certified 'Organic Farming'.", + "pos": "adjective", + "word_frequency": 24277 + }, + { + "word": "lanière", + "article_with_word": "la lanière", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strap", + "example_sentence_native": "La lanière de son sac à dos était cassée.", + "example_sentence_english": "The strap of his backpack was broken.", + "pos": "noun", + "word_frequency": 24281 + }, + { + "word": "laquais", + "article_with_word": "le laquais", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "footman;lackey", + "example_sentence_native": "Le laquais ouvrit la porte du carrosse.", + "example_sentence_english": "The footman opened the carriage door.", + "pos": "noun", + "word_frequency": 24282 + }, + { + "word": "latrine", + "article_with_word": "la latrine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "latrine;outhouse", + "example_sentence_native": "Les soldats utilisaient les latrines du camp.", + "example_sentence_english": "The soldiers used the camp's latrines.", + "pos": "noun", + "word_frequency": 24283 + }, + { + "word": "levage", + "article_with_word": "le levage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifting;hoisting", + "example_sentence_native": "L'opération de levage de la grue a été un succès.", + "example_sentence_english": "The crane's lifting operation was a success.", + "pos": "noun", + "word_frequency": 24285 + }, + { + "word": "lift", + "article_with_word": "le lift", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lift (elevator)", + "example_sentence_native": "Prenez le lift pour monter au cinquième étage.", + "example_sentence_english": "Take the lift to go up to the fifth floor.", + "pos": "noun", + "word_frequency": 24287 + }, + { + "word": "loueur", + "article_with_word": "le loueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renter;lessor", + "example_sentence_native": "Le loueur de voitures nous a donné les clés.", + "example_sentence_english": "The car renter gave us the keys.", + "pos": "noun", + "word_frequency": 24291 + }, + { + "word": "malmener", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mistreat;to rough up", + "example_sentence_native": "Il ne faut pas malmener les animaux.", + "example_sentence_english": "One must not mistreat animals.", + "pos": "verb", + "word_frequency": 24298 + }, + { + "word": "matraquage", + "article_with_word": "le matraquage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clubbing;bludgeoning;(fig.) relentless campaigning", + "example_sentence_native": "Le matraquage publicitaire est parfois excessif.", + "example_sentence_english": "Advertising bludgeoning is sometimes excessive.", + "pos": "noun", + "word_frequency": 24301 + }, + { + "word": "microbiologie", + "article_with_word": "la microbiologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microbiology", + "example_sentence_native": "Elle étudie la microbiologie à l'université.", + "example_sentence_english": "She studies microbiology at the university.", + "pos": "noun", + "word_frequency": 24303 + }, + { + "word": "minitel", + "article_with_word": "le Minitel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Minitel (French videotex service)", + "example_sentence_native": "Avant internet, beaucoup utilisaient le Minitel en France.", + "example_sentence_english": "Before the internet, many people used the Minitel in France.", + "pos": "noun", + "word_frequency": 24304 + }, + { + "word": "minéralogie", + "article_with_word": "la minéralogie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mineralogy", + "example_sentence_native": "La minéralogie est l'étude des minéraux.", + "example_sentence_english": "Mineralogy is the study of minerals.", + "pos": "noun", + "word_frequency": 24305 + }, + { + "word": "monitoring", + "article_with_word": "le monitoring", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monitoring", + "example_sentence_native": "Le monitoring des serveurs est essentiel pour la sécurité.", + "example_sentence_english": "Server monitoring is essential for security.", + "pos": "noun", + "word_frequency": 24307 + }, + { + "word": "monospace", + "article_with_word": "le monospace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minivan;MPV", + "example_sentence_native": "Ils ont acheté un nouveau monospace pour la famille.", + "example_sentence_english": "They bought a new minivan for the family.", + "pos": "noun", + "word_frequency": 24308 + }, + { + "word": "moscovite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Muscovite", + "example_sentence_native": "La population moscovite est très diverse.", + "example_sentence_english": "The Muscovite population is very diverse.", + "pos": "adjective", + "word_frequency": 24311 + }, + { + "word": "multiculturel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multicultural", + "example_sentence_native": "Paris est une ville très multiculturelle.", + "example_sentence_english": "Paris is a very multicultural city.", + "pos": "adjective", + "word_frequency": 24313 + }, + { + "word": "mélasse", + "article_with_word": "la mélasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molasses", + "example_sentence_native": "La mélasse est un sous-produit du sucre.", + "example_sentence_english": "Molasses is a byproduct of sugar.", + "pos": "noun", + "word_frequency": 24314 + }, + { + "word": "ménagerie", + "article_with_word": "la ménagerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "menagerie", + "example_sentence_native": "La ménagerie du Jardin des Plantes est très ancienne.", + "example_sentence_english": "The menagerie of the Jardin des Plantes is very old.", + "pos": "noun", + "word_frequency": 24315 + }, + { + "word": "métaphorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metaphorical", + "example_sentence_native": "Son langage est souvent très métaphorique.", + "example_sentence_english": "His language is often very metaphorical.", + "pos": "adjective", + "word_frequency": 24316 + }, + { + "word": "nettoyeur", + "article_with_word": "le nettoyeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleaner (person or device)", + "example_sentence_native": "Le nettoyeur de vitres est passé ce matin.", + "example_sentence_english": "The window cleaner came this morning.", + "pos": "noun", + "word_frequency": 24319 + }, + { + "word": "nécessiteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "needy;destitute", + "example_sentence_native": "L'association aide les familles nécessiteuses.", + "example_sentence_english": "The association helps needy families.", + "pos": "adjective", + "word_frequency": 24322 + }, + { + "word": "nécrologie", + "article_with_word": "la nécrologie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obituary", + "example_sentence_native": "J'ai lu sa nécrologie dans le journal.", + "example_sentence_english": "I read his obituary in the newspaper.", + "pos": "noun", + "word_frequency": 24323 + }, + { + "word": "néolibéralisme", + "article_with_word": "le néolibéralisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neoliberalism", + "example_sentence_native": "Le néolibéralisme est un courant de pensée économique.", + "example_sentence_english": "Neoliberalism is a school of economic thought.", + "pos": "noun", + "word_frequency": 24324 + }, + { + "word": "obstinément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubbornly;obstinately", + "example_sentence_native": "Il a obstinément refusé de changer d'avis.", + "example_sentence_english": "He stubbornly refused to change his mind.", + "pos": "adverb", + "word_frequency": 24326 + }, + { + "word": "opérette", + "article_with_word": "une opérette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operetta", + "example_sentence_native": "Nous avons assisté à une charmante opérette hier soir.", + "example_sentence_english": "We attended a charming operetta last night.", + "pos": "noun", + "word_frequency": 24329 + }, + { + "word": "pagne", + "article_with_word": "un pagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loincloth;wrap skirt", + "example_sentence_native": "Elle portait un pagne coloré.", + "example_sentence_english": "She was wearing a colorful loincloth.", + "pos": "noun", + "word_frequency": 24331 + }, + { + "word": "palatine", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palatine (relating to a palace or the palate)", + "example_sentence_native": "La colline Palatine est l'une des sept collines de Rome.", + "example_sentence_english": "The Palatine Hill is one of the seven hills of Rome.", + "pos": "adjective", + "word_frequency": 24332 + }, + { + "word": "palazzo", + "article_with_word": "un palazzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palazzo;large palace", + "example_sentence_native": "Nous avons visité un magnifique palazzo à Venise.", + "example_sentence_english": "We visited a magnificent palazzo in Venice.", + "pos": "noun", + "word_frequency": 24333 + }, + { + "word": "palet", + "article_with_word": "un palet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puck (hockey);disc (game);quoit", + "example_sentence_native": "Le joueur a frappé le palet avec sa crosse.", + "example_sentence_english": "The player hit the puck with his stick.", + "pos": "noun", + "word_frequency": 24334 + }, + { + "word": "palissade", + "article_with_word": "une palissade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palisade;fence", + "example_sentence_native": "Une haute palissade entourait le jardin.", + "example_sentence_english": "A high palisade surrounded the garden.", + "pos": "noun", + "word_frequency": 24335 + }, + { + "word": "paprika", + "article_with_word": "le paprika", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paprika", + "example_sentence_native": "J'ai ajouté du paprika à mon plat.", + "example_sentence_english": "I added paprika to my dish.", + "pos": "noun", + "word_frequency": 24336 + }, + { + "word": "parcimonie", + "article_with_word": "la parcimonie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parsimony;frugality", + "example_sentence_native": "Il utilise ses ressources avec parcimonie.", + "example_sentence_english": "He uses his resources with parsimony.", + "pos": "noun", + "word_frequency": 24337 + }, + { + "word": "parentalité", + "article_with_word": "la parentalité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parenthood", + "example_sentence_native": "La parentalité est une grande responsabilité.", + "example_sentence_english": "Parenthood is a great responsibility.", + "pos": "noun", + "word_frequency": 24338 + }, + { + "word": "pattern", + "article_with_word": "un pattern", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pattern", + "example_sentence_native": "Ce logiciel suit un pattern de conception spécifique.", + "example_sentence_english": "This software follows a specific design pattern.", + "pos": "noun", + "word_frequency": 24339 + }, + { + "word": "pavage", + "article_with_word": "le pavage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paving;pavement", + "example_sentence_native": "Le pavage de la rue est en cours.", + "example_sentence_english": "The paving of the street is underway.", + "pos": "noun", + "word_frequency": 24340 + }, + { + "word": "payable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "payable;due", + "example_sentence_native": "La facture est payable dans 30 jours.", + "example_sentence_english": "The invoice is payable within 30 days.", + "pos": "adjective", + "word_frequency": 24341 + }, + { + "word": "paître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to graze;to pasture", + "example_sentence_native": "Les vaches paissent dans le pré.", + "example_sentence_english": "The cows are grazing in the meadow.", + "pos": "verb", + "word_frequency": 24342 + }, + { + "word": "pcr", + "article_with_word": "le PCR", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "PCR (Polymerase Chain Reaction)", + "example_sentence_native": "Il a dû faire un test PCR avant de voyager.", + "example_sentence_english": "He had to take a PCR test before traveling.", + "pos": "noun", + "word_frequency": 24344 + }, + { + "word": "persévérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persevering;persistent", + "example_sentence_native": "Il est très persévérant dans ses études.", + "example_sentence_english": "He is very persevering in his studies.", + "pos": "adjective", + "word_frequency": 24345 + }, + { + "word": "pincette", + "article_with_word": "une pincette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tweezer;tongs;clip", + "example_sentence_native": "J'ai utilisé une pincette pour retirer l'écharde.", + "example_sentence_english": "I used tweezers to remove the splinter.", + "pos": "noun", + "word_frequency": 24349 + }, + { + "word": "pirouette", + "article_with_word": "une pirouette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pirouette;spin", + "example_sentence_native": "La danseuse a fait une élégante pirouette.", + "example_sentence_english": "The dancer performed an elegant pirouette.", + "pos": "noun", + "word_frequency": 24350 + }, + { + "word": "polichinelle", + "article_with_word": "un polichinelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Punch (character);open secret", + "example_sentence_native": "C'est un secret de Polichinelle, tout le monde le sait.", + "example_sentence_english": "It's an open secret, everyone knows it.", + "pos": "noun", + "word_frequency": 24351 + }, + { + "word": "preux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valiant;chivalrous", + "example_sentence_native": "Les chevaliers preux défendaient le royaume.", + "example_sentence_english": "The valiant knights defended the kingdom.", + "pos": "adjective", + "word_frequency": 24353 + }, + { + "word": "prodigué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lavished;bestowed", + "example_sentence_native": "Les conseils prodigués ont été très utiles.", + "example_sentence_english": "The advice bestowed was very useful.", + "pos": "adjective", + "word_frequency": 24354 + }, + { + "word": "provoc", + "article_with_word": "la provoc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "provocation (informal)", + "example_sentence_native": "C'était juste de la provoc de sa part.", + "example_sentence_english": "It was just provocation from him.", + "pos": "noun", + "word_frequency": 24355 + }, + { + "word": "provocant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocative;challenging", + "example_sentence_native": "Son attitude était très provocante.", + "example_sentence_english": "Her attitude was very provocative.", + "pos": "adjective", + "word_frequency": 24356 + }, + { + "word": "punitive", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punitive", + "example_sentence_native": "Ils ont imposé des mesures punitives.", + "example_sentence_english": "They imposed punitive measures.", + "pos": "adjective", + "word_frequency": 24357 + }, + { + "word": "pâtir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffer;to endure", + "example_sentence_native": "L'économie a pâti de la crise.", + "example_sentence_english": "The economy suffered from the crisis.", + "pos": "verb", + "word_frequency": 24359 + }, + { + "word": "quinquennal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quinquennial", + "example_sentence_native": "Le mandat présidentiel est quinquennal en France.", + "example_sentence_english": "The presidential term is quinquennial in France.", + "pos": "adjective", + "word_frequency": 24361 + }, + { + "word": "rabiot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extra;surplus", + "example_sentence_native": "Il a fait du rabiot pour finir le travail à temps.", + "example_sentence_english": "He did some extra work to finish on time.", + "pos": "noun", + "word_frequency": 24362 + }, + { + "word": "ratifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ratified", + "example_sentence_native": "Le traité a été ratifié par tous les pays membres.", + "example_sentence_english": "The treaty was ratified by all member countries.", + "pos": "adjective", + "word_frequency": 24365 + }, + { + "word": "rauque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoarse;husky", + "example_sentence_native": "Sa voix est devenue rauque après avoir crié.", + "example_sentence_english": "His voice became hoarse after shouting.", + "pos": "adjective", + "word_frequency": 24366 + }, + { + "word": "rectitude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectitude;integrity", + "example_sentence_native": "Il a toujours agi avec une grande rectitude morale.", + "example_sentence_english": "He always acted with great moral rectitude.", + "pos": "noun", + "word_frequency": 24367 + }, + { + "word": "retable", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "altarpiece", + "example_sentence_native": "L'église abrite un magnifique retable du XVe siècle.", + "example_sentence_english": "The church houses a magnificent 15th-century altarpiece.", + "pos": "noun", + "word_frequency": 24370 + }, + { + "word": "retardé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delayed;retarded", + "example_sentence_native": "Le vol a été retardé à cause du mauvais temps.", + "example_sentence_english": "The flight was delayed due to bad weather.", + "pos": "adjective", + "word_frequency": 24371 + }, + { + "word": "riel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riel (Cambodian currency)", + "example_sentence_native": "La monnaie du Cambodge est le riel.", + "example_sentence_english": "The currency of Cambodia is the riel.", + "pos": "noun", + "word_frequency": 24372 + }, + { + "word": "rieur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laughing;cheerful", + "example_sentence_native": "C'est un enfant très rieur, toujours de bonne humeur.", + "example_sentence_english": "He is a very laughing child, always in a good mood.", + "pos": "adjective", + "word_frequency": 24373 + }, + { + "word": "rotatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotary;rotating", + "example_sentence_native": "La machine est équipée d'un moteur rotatif.", + "example_sentence_english": "The machine is equipped with a rotary engine.", + "pos": "adjective", + "word_frequency": 24376 + }, + { + "word": "rotule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kneecap;ball joint", + "example_sentence_native": "Il s'est blessé à la rotule en tombant.", + "example_sentence_english": "He injured his kneecap when he fell.", + "pos": "noun", + "word_frequency": 24377 + }, + { + "word": "réfraction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refraction", + "example_sentence_native": "La réfraction de la lumière est un phénomène optique.", + "example_sentence_english": "The refraction of light is an optical phenomenon.", + "pos": "noun", + "word_frequency": 24379 + }, + { + "word": "réfrigération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refrigeration", + "example_sentence_native": "Le système de réfrigération est tombé en panne.", + "example_sentence_english": "The refrigeration system broke down.", + "pos": "noun", + "word_frequency": 24380 + }, + { + "word": "serrage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tightening;clamping", + "example_sentence_native": "Vérifiez le serrage des boulons avant de partir.", + "example_sentence_english": "Check the tightening of the bolts before leaving.", + "pos": "noun", + "word_frequency": 24385 + }, + { + "word": "serviable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helpful;obliging", + "example_sentence_native": "Il est toujours très serviable avec ses voisins.", + "example_sentence_english": "He is always very helpful with his neighbors.", + "pos": "adjective", + "word_frequency": 24386 + }, + { + "word": "siroter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sip", + "example_sentence_native": "Elle aime siroter son café le matin.", + "example_sentence_english": "She likes to sip her coffee in the morning.", + "pos": "verb", + "word_frequency": 24392 + }, + { + "word": "smoothie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smoothie", + "example_sentence_native": "Je prends un smoothie aux fruits pour le petit-déjeuner.", + "example_sentence_english": "I have a fruit smoothie for breakfast.", + "pos": "noun", + "word_frequency": 24393 + }, + { + "word": "soma", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soma (body;or ancient drink)", + "example_sentence_native": "Le soma est le corps, par opposition à l'esprit.", + "example_sentence_english": "The soma is the body, as opposed to the mind.", + "pos": "noun", + "word_frequency": 24394 + }, + { + "word": "sommelier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sommelier;wine steward", + "example_sentence_native": "Le sommelier nous a recommandé un excellent vin.", + "example_sentence_english": "The sommelier recommended an excellent wine to us.", + "pos": "noun", + "word_frequency": 24395 + }, + { + "word": "souffrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suffering;unwell", + "example_sentence_native": "Il a l'air un peu souffrant aujourd'hui.", + "example_sentence_english": "He looks a bit unwell today.", + "pos": "adjective", + "word_frequency": 24396 + }, + { + "word": "soûler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get drunk;to annoy", + "example_sentence_native": "Ses plaintes constantes commencent à me soûler.", + "example_sentence_english": "His constant complaints are starting to annoy me.", + "pos": "verb", + "word_frequency": 24397 + }, + { + "word": "spec", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spec (specification)", + "example_sentence_native": "Nous devons vérifier les specs techniques du produit.", + "example_sentence_english": "We need to check the technical specs of the product.", + "pos": "noun", + "word_frequency": 24399 + }, + { + "word": "sprinter", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sprinter", + "example_sentence_native": "Le sprinter a franchi la ligne d'arrivée en premier.", + "example_sentence_english": "The sprinter crossed the finish line first.", + "pos": "noun", + "word_frequency": 24401 + }, + { + "word": "subversif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subversive", + "example_sentence_native": "Ses idées sont considérées comme subversives par le gouvernement.", + "example_sentence_english": "His ideas are considered subversive by the government.", + "pos": "adjective", + "word_frequency": 24405 + }, + { + "word": "sureau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elderberry;elderflower", + "example_sentence_native": "Le sirop de sureau est délicieux.", + "example_sentence_english": "Elderflower syrup is delicious.", + "pos": "noun", + "word_frequency": 24407 + }, + { + "word": "surmonté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surmounted;overcome", + "example_sentence_native": "La difficulté a été surmontée avec succès.", + "example_sentence_english": "The difficulty was successfully overcome.", + "pos": "adjective", + "word_frequency": 24408 + }, + { + "word": "surtaxe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surtax", + "example_sentence_native": "Le gouvernement a imposé une surtaxe sur les produits de luxe.", + "example_sentence_english": "The government imposed a surtax on luxury products.", + "pos": "noun", + "word_frequency": 24409 + }, + { + "word": "surveillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supervised;monitored", + "example_sentence_native": "La zone est surveillée par des caméras.", + "example_sentence_english": "The area is monitored by cameras.", + "pos": "adjective", + "word_frequency": 24410 + }, + { + "word": "sylviculture", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "silviculture;forestry", + "example_sentence_native": "La sylviculture durable est essentielle pour l'environnement.", + "example_sentence_english": "Sustainable silviculture is essential for the environment.", + "pos": "noun", + "word_frequency": 24412 + }, + { + "word": "transistor", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transistor", + "example_sentence_native": "Le transistor est un composant électronique essentiel.", + "example_sentence_english": "The transistor is an essential electronic component.", + "pos": "noun", + "word_frequency": 24419 + }, + { + "word": "transiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transit;to pass through", + "example_sentence_native": "Les marchandises doivent transiter par la douane.", + "example_sentence_english": "The goods must transit through customs.", + "pos": "verb", + "word_frequency": 24420 + }, + { + "word": "trotte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "walk;trot (informal: a fair distance)", + "example_sentence_native": "C'est une bonne trotte d'ici à la gare.", + "example_sentence_english": "It's a fair walk from here to the station.", + "pos": "noun", + "word_frequency": 24422 + }, + { + "word": "tubulaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tubular", + "example_sentence_native": "La structure est de forme tubulaire.", + "example_sentence_english": "The structure is tubular in shape.", + "pos": "adjective", + "word_frequency": 24423 + }, + { + "word": "tutoyer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to use 'tu' (informal 'you') with someone", + "example_sentence_native": "En France, on tutoie les amis et la famille.", + "example_sentence_english": "In France, you use 'tu' with friends and family.", + "pos": "verb", + "word_frequency": 24424 + }, + { + "word": "vitrage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glazing;window pane", + "example_sentence_native": "Le double vitrage améliore l'isolation thermique.", + "example_sentence_english": "Double glazing improves thermal insulation.", + "pos": "noun", + "word_frequency": 24427 + }, + { + "word": "écoeurant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sickening;disgusting", + "example_sentence_native": "L'odeur était absolument écoeurante.", + "example_sentence_english": "The smell was absolutely sickening.", + "pos": "adjective", + "word_frequency": 24433 + }, + { + "word": "écorché", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flayed;skinned;raw (emotionally)", + "example_sentence_native": "Il a montré un dessin d'un corps écorché.", + "example_sentence_english": "He showed a drawing of a flayed body.", + "pos": "adjective", + "word_frequency": 24434 + }, + { + "word": "épuré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purified;refined;minimalist", + "example_sentence_native": "Le design de la pièce est très épuré.", + "example_sentence_english": "The design of the room is very minimalist.", + "pos": "adjective", + "word_frequency": 24435 + }, + { + "word": "étincelant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sparkling;dazzling", + "example_sentence_native": "Ses yeux étaient étincelants de joie.", + "example_sentence_english": "Her eyes were sparkling with joy.", + "pos": "adjective", + "word_frequency": 24436 + }, + { + "word": "accentuation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accentuation;emphasis", + "example_sentence_native": "L'accentuation des voyelles est importante en phonétique.", + "example_sentence_english": "The accentuation of vowels is important in phonetics.", + "pos": "noun", + "word_frequency": 24439 + }, + { + "word": "aileron", + "article_with_word": "l'aileron", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fin;winglet", + "example_sentence_native": "L'aileron de l'avion a été endommagé lors de l'atterrissage.", + "example_sentence_english": "The airplane's winglet was damaged during landing.", + "pos": "noun", + "word_frequency": 24440 + }, + { + "word": "albigeois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Albigensian (from Albi)", + "example_sentence_native": "La région albigeoise est riche en histoire médiévale.", + "example_sentence_english": "The Albigensian region is rich in medieval history.", + "pos": "adjective", + "word_frequency": 24441 + }, + { + "word": "alluvion", + "article_with_word": "l'alluvion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alluvium;alluvial deposit", + "example_sentence_native": "Les alluvions fertiles déposées par la rivière sont propices à l'agriculture.", + "example_sentence_english": "The fertile alluvial deposits left by the river are suitable for agriculture.", + "pos": "noun", + "word_frequency": 24442 + }, + { + "word": "ambulatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambulatory;outpatient", + "example_sentence_native": "La chirurgie ambulatoire permet aux patients de rentrer chez eux le jour même.", + "example_sentence_english": "Outpatient surgery allows patients to go home the same day.", + "pos": "adjective", + "word_frequency": 24444 + }, + { + "word": "amendé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amended;revised", + "example_sentence_native": "Le texte de loi a été amendé après de longues discussions.", + "example_sentence_english": "The bill was amended after long discussions.", + "pos": "adjective", + "word_frequency": 24445 + }, + { + "word": "anachronique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anachronistic", + "example_sentence_native": "Porter un chapeau haut de forme aujourd'hui serait un peu anachronique.", + "example_sentence_english": "Wearing a top hat today would be a bit anachronistic.", + "pos": "adjective", + "word_frequency": 24446 + }, + { + "word": "apesanteur", + "article_with_word": "l'apesanteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weightlessness;zero gravity", + "example_sentence_native": "Les astronautes s'entraînent à l'apesanteur avant d'aller dans l'espace.", + "example_sentence_english": "Astronauts train in weightlessness before going to space.", + "pos": "noun", + "word_frequency": 24450 + }, + { + "word": "appétissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appetizing;tempting", + "example_sentence_native": "L'odeur de ce plat est vraiment appétissante.", + "example_sentence_english": "The smell of this dish is really appetizing.", + "pos": "adjective", + "word_frequency": 24451 + }, + { + "word": "aquaculture", + "article_with_word": "l'aquaculture", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aquaculture", + "example_sentence_native": "L'aquaculture est une solution pour la production durable de poissons.", + "example_sentence_english": "Aquaculture is a solution for sustainable fish production.", + "pos": "noun", + "word_frequency": 24452 + }, + { + "word": "archidiacre", + "article_with_word": "l'archidiacre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archdeacon", + "example_sentence_native": "L'archidiacre assiste l'évêque dans ses fonctions administratives.", + "example_sentence_english": "The archdeacon assists the bishop in his administrative duties.", + "pos": "noun", + "word_frequency": 24453 + }, + { + "word": "assermenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sworn;certified", + "example_sentence_native": "Seul un traducteur assermenté peut certifier la conformité d'un document.", + "example_sentence_english": "Only a sworn translator can certify the conformity of a document.", + "pos": "adjective", + "word_frequency": 24455 + }, + { + "word": "attirail", + "article_with_word": "l'attirail", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gear;equipment;paraphernalia", + "example_sentence_native": "Il a sorti tout son attirail de camping pour le week-end.", + "example_sentence_english": "He took out all his camping gear for the weekend.", + "pos": "noun", + "word_frequency": 24456 + }, + { + "word": "auvergnat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Auvergnat (from Auvergne)", + "example_sentence_native": "Le paysage auvergnat est caractérisé par ses volcans éteints.", + "example_sentence_english": "The Auvergnat landscape is characterized by its extinct volcanoes.", + "pos": "adjective", + "word_frequency": 24458 + }, + { + "word": "bafoué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scorned;ridiculed;flouted", + "example_sentence_native": "Les principes de justice ont été bafoués dans cette affaire.", + "example_sentence_english": "The principles of justice were flouted in this case.", + "pos": "adjective", + "word_frequency": 24460 + }, + { + "word": "bambin", + "article_with_word": "le bambin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toddler;little child", + "example_sentence_native": "Le bambin a fait ses premiers pas aujourd'hui.", + "example_sentence_english": "The toddler took his first steps today.", + "pos": "noun", + "word_frequency": 24461 + }, + { + "word": "calamité", + "article_with_word": "la calamité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calamity;disaster", + "example_sentence_native": "La sécheresse est une véritable calamité pour les agriculteurs.", + "example_sentence_english": "The drought is a real calamity for farmers.", + "pos": "noun", + "word_frequency": 24483 + }, + { + "word": "camelot", + "article_with_word": "le camelot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "street vendor;hawker;stall", + "example_sentence_native": "Le camelot vendait des bibelots sur le marché.", + "example_sentence_english": "The street vendor was selling trinkets at the market.", + "pos": "noun", + "word_frequency": 24485 + }, + { + "word": "cancérigène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carcinogenic", + "example_sentence_native": "Fumer est une activité cancérigène.", + "example_sentence_english": "Smoking is a carcinogenic activity.", + "pos": "adjective", + "word_frequency": 24486 + }, + { + "word": "cancérologie", + "article_with_word": "la cancérologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cancerology;oncology", + "example_sentence_native": "La cancérologie a fait d'énormes progrès ces dernières décennies.", + "example_sentence_english": "Oncology has made enormous progress in recent decades.", + "pos": "noun", + "word_frequency": 24487 + }, + { + "word": "carburateur", + "article_with_word": "le carburateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carburetor", + "example_sentence_native": "Le mécanicien a nettoyé le carburateur de la vieille voiture.", + "example_sentence_english": "The mechanic cleaned the carburetor of the old car.", + "pos": "noun", + "word_frequency": 24488 + }, + { + "word": "cataracte", + "article_with_word": "la cataracte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cataract", + "example_sentence_native": "Elle a dû se faire opérer d'une cataracte.", + "example_sentence_english": "She had to have a cataract operation.", + "pos": "noun", + "word_frequency": 24490 + }, + { + "word": "cens", + "article_with_word": "le cens", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "census (historical);tax;property qualification", + "example_sentence_native": "Sous l'Ancien Régime, le droit de vote était lié au cens.", + "example_sentence_english": "Under the Ancien Régime, the right to vote was linked to property qualification.", + "pos": "noun", + "word_frequency": 24492 + }, + { + "word": "chakra", + "article_with_word": "le chakra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chakra", + "example_sentence_native": "Le yoga aide à équilibrer les chakras.", + "example_sentence_english": "Yoga helps to balance the chakras.", + "pos": "noun", + "word_frequency": 24493 + }, + { + "word": "chanté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sung", + "example_sentence_native": "La chanson était magnifiquement chantée.", + "example_sentence_english": "The song was beautifully sung.", + "pos": "adjective", + "word_frequency": 24495 + }, + { + "word": "chevaucher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ride (a horse);to overlap", + "example_sentence_native": "Il aime chevaucher son cheval dans la campagne.", + "example_sentence_english": "He likes to ride his horse in the countryside.", + "pos": "verb", + "word_frequency": 24496 + }, + { + "word": "choir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall (archaic;literary)", + "example_sentence_native": "Les feuilles commencent à choir en automne.", + "example_sentence_english": "The leaves begin to fall in autumn.", + "pos": "verb", + "word_frequency": 24498 + }, + { + "word": "chorus", + "article_with_word": "le chorus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chorus (music)", + "example_sentence_native": "Le chorus de cette chanson est très entraînant.", + "example_sentence_english": "The chorus of this song is very catchy.", + "pos": "noun", + "word_frequency": 24499 + }, + { + "word": "cirrhose", + "article_with_word": "la cirrhose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cirrhosis", + "example_sentence_native": "L'abus d'alcool peut entraîner une cirrhose du foie.", + "example_sentence_english": "Alcohol abuse can lead to liver cirrhosis.", + "pos": "noun", + "word_frequency": 24501 + }, + { + "word": "commercialisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commercialized;marketed", + "example_sentence_native": "Le nouveau produit sera commercialisé l'année prochaine.", + "example_sentence_english": "The new product will be commercialized next year.", + "pos": "adjective", + "word_frequency": 24503 + }, + { + "word": "conduction", + "article_with_word": "la conduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conduction", + "example_sentence_native": "La conduction de la chaleur est un phénomène physique.", + "example_sentence_english": "Heat conduction is a physical phenomenon.", + "pos": "noun", + "word_frequency": 24505 + }, + { + "word": "conscrit", + "article_with_word": "le conscrit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscript;recruit", + "example_sentence_native": "Le jeune conscrit partait pour son service militaire.", + "example_sentence_english": "The young conscript was leaving for his military service.", + "pos": "noun", + "word_frequency": 24507 + }, + { + "word": "consternant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismaying;appalling;disheartening", + "example_sentence_native": "La situation est absolument consternante.", + "example_sentence_english": "The situation is absolutely appalling.", + "pos": "adjective", + "word_frequency": 24508 + }, + { + "word": "contest", + "article_with_word": "le contest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contest;competition", + "example_sentence_native": "Il a participé à un contest de surf.", + "example_sentence_english": "He participated in a surf contest.", + "pos": "noun", + "word_frequency": 24509 + }, + { + "word": "contrebandier", + "article_with_word": "le contrebandier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggler", + "example_sentence_native": "Les douaniers ont arrêté un contrebandier à la frontière.", + "example_sentence_english": "Customs officers arrested a smuggler at the border.", + "pos": "noun", + "word_frequency": 24510 + }, + { + "word": "cousu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sewn;stitched", + "example_sentence_native": "La robe était cousue à la main.", + "example_sentence_english": "The dress was hand-sewn.", + "pos": "adjective", + "word_frequency": 24512 + }, + { + "word": "coworking", + "article_with_word": "le coworking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coworking", + "example_sentence_native": "De plus en plus de freelances optent pour des espaces de coworking.", + "example_sentence_english": "More and more freelancers are opting for coworking spaces.", + "pos": "noun", + "word_frequency": 24513 + }, + { + "word": "cristallisation", + "article_with_word": "la cristallisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crystallization", + "example_sentence_native": "La cristallisation du sel est un processus naturel.", + "example_sentence_english": "The crystallization of salt is a natural process.", + "pos": "noun", + "word_frequency": 24515 + }, + { + "word": "daigner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deign", + "example_sentence_native": "Il n'a même pas daigné me regarder.", + "example_sentence_english": "He didn't even deign to look at me.", + "pos": "verb", + "word_frequency": 24520 + }, + { + "word": "defence", + "article_with_word": "la défense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defense", + "example_sentence_native": "La défense de la ville était solide.", + "example_sentence_english": "The city's defense was strong.", + "pos": "noun", + "word_frequency": 24522 + }, + { + "word": "departement", + "article_with_word": "le département", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "department", + "example_sentence_native": "Il travaille au département des ventes.", + "example_sentence_english": "He works in the sales department.", + "pos": "noun", + "word_frequency": 24524 + }, + { + "word": "dissuasif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deterrent", + "example_sentence_native": "La peine de mort n'est pas toujours un moyen dissuasif.", + "example_sentence_english": "The death penalty is not always a deterrent.", + "pos": "adjective", + "word_frequency": 24527 + }, + { + "word": "donut", + "article_with_word": "un donut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donut", + "example_sentence_native": "J'ai acheté un donut au chocolat.", + "example_sentence_english": "I bought a chocolate donut.", + "pos": "noun", + "word_frequency": 24530 + }, + { + "word": "dragueur", + "article_with_word": "un dragueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flirt", + "example_sentence_native": "C'est un vrai dragueur, il parle à toutes les filles.", + "example_sentence_english": "He's a real flirt, he talks to all the girls.", + "pos": "noun", + "word_frequency": 24531 + }, + { + "word": "délocaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outsource", + "example_sentence_native": "L'entreprise a décidé de délocaliser sa production.", + "example_sentence_english": "The company decided to outsource its production.", + "pos": "verb", + "word_frequency": 24533 + }, + { + "word": "démonstratif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstrative", + "example_sentence_native": "Il est très démonstratif avec ses amis.", + "example_sentence_english": "He is very demonstrative with his friends.", + "pos": "adjective", + "word_frequency": 24534 + }, + { + "word": "dépliant", + "article_with_word": "un dépliant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leaflet", + "example_sentence_native": "J'ai pris un dépliant à l'office de tourisme.", + "example_sentence_english": "I took a leaflet at the tourist office.", + "pos": "noun", + "word_frequency": 24535 + }, + { + "word": "dépotoir", + "article_with_word": "un dépotoir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dump", + "example_sentence_native": "Ce terrain vague est devenu un dépotoir.", + "example_sentence_english": "This wasteland has become a dump.", + "pos": "noun", + "word_frequency": 24536 + }, + { + "word": "dépénalisation", + "article_with_word": "la dépénalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decriminalization", + "example_sentence_native": "Le débat sur la dépénalisation du cannabis est en cours.", + "example_sentence_english": "The debate on the decriminalization of cannabis is ongoing.", + "pos": "noun", + "word_frequency": 24537 + }, + { + "word": "désinfecter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disinfect", + "example_sentence_native": "Il faut désinfecter la plaie.", + "example_sentence_english": "You need to disinfect the wound.", + "pos": "verb", + "word_frequency": 24538 + }, + { + "word": "désinvolture", + "article_with_word": "la désinvolture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonchalance", + "example_sentence_native": "Sa désinvolture face au danger était surprenante.", + "example_sentence_english": "His nonchalance in the face of danger was surprising.", + "pos": "noun", + "word_frequency": 24539 + }, + { + "word": "enfoui", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buried", + "example_sentence_native": "Le trésor était enfoui sous un vieil arbre.", + "example_sentence_english": "The treasure was buried under an old tree.", + "pos": "adjective", + "word_frequency": 24541 + }, + { + "word": "escarpin", + "article_with_word": "un escarpin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-heeled shoe", + "example_sentence_native": "Elle portait de beaux escarpins noirs.", + "example_sentence_english": "She was wearing beautiful black high-heeled shoes.", + "pos": "noun", + "word_frequency": 24545 + }, + { + "word": "essayé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tried", + "example_sentence_native": "C'est une méthode déjà essayée.", + "example_sentence_english": "It's an already tried method.", + "pos": "adjective", + "word_frequency": 24546 + }, + { + "word": "eucharistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "eucharistic", + "example_sentence_native": "La célébration eucharistique est centrale dans la messe.", + "example_sentence_english": "The eucharistic celebration is central to the mass.", + "pos": "adjective", + "word_frequency": 24547 + }, + { + "word": "expéditionnaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expeditionary", + "example_sentence_native": "Le corps expéditionnaire a été envoyé en mission.", + "example_sentence_english": "The expeditionary force was sent on a mission.", + "pos": "adjective", + "word_frequency": 24548 + }, + { + "word": "familièrement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "familiarly", + "example_sentence_native": "Il lui a parlé familièrement.", + "example_sentence_english": "He spoke to her familiarly.", + "pos": "adverb", + "word_frequency": 24549 + }, + { + "word": "fane", + "article_with_word": "la fane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foliage", + "example_sentence_native": "Les lapins aiment manger la fane de carottes.", + "example_sentence_english": "Rabbits like to eat carrot tops.", + "pos": "noun", + "word_frequency": 24551 + }, + { + "word": "farfelu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wacky", + "example_sentence_native": "Il a toujours des idées un peu farfelues.", + "example_sentence_english": "He always has somewhat wacky ideas.", + "pos": "adjective", + "word_frequency": 24552 + }, + { + "word": "ferreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ferrous", + "example_sentence_native": "Le fer est un métal ferreux.", + "example_sentence_english": "Iron is a ferrous metal.", + "pos": "adjective", + "word_frequency": 24553 + }, + { + "word": "finnois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Finnish", + "example_sentence_native": "Il parle couramment le finnois.", + "example_sentence_english": "He speaks Finnish fluently.", + "pos": "adjective", + "word_frequency": 24554 + }, + { + "word": "frigorifique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refrigerated", + "example_sentence_native": "Le camion frigorifique transporte des produits frais.", + "example_sentence_english": "The refrigerated truck transports fresh produce.", + "pos": "adjective", + "word_frequency": 24555 + }, + { + "word": "garance", + "article_with_word": "la garance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madder (plant;dye)", + "example_sentence_native": "La garance est une plante utilisée pour teindre les tissus en rouge.", + "example_sentence_english": "Madder is a plant used to dye fabrics red.", + "pos": "noun", + "word_frequency": 24560 + }, + { + "word": "geographic", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographic", + "example_sentence_native": "Les caractéristiques géographiques de la région sont variées.", + "example_sentence_english": "The geographic characteristics of the region are varied.", + "pos": "adjective", + "word_frequency": 24561 + }, + { + "word": "glaner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to glean;to gather", + "example_sentence_native": "Ils ont passé la journée à glaner des informations sur le projet.", + "example_sentence_english": "They spent the day gleaning information about the project.", + "pos": "verb", + "word_frequency": 24564 + }, + { + "word": "glissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slippery;smooth", + "example_sentence_native": "La surface était glissée et difficile à marcher.", + "example_sentence_english": "The surface was slippery and difficult to walk on.", + "pos": "adjective", + "word_frequency": 24565 + }, + { + "word": "gouache", + "article_with_word": "la gouache", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gouache (paint)", + "example_sentence_native": "Elle a utilisé de la gouache pour peindre le paysage.", + "example_sentence_english": "She used gouache to paint the landscape.", + "pos": "noun", + "word_frequency": 24569 + }, + { + "word": "gouverné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governed;ruled", + "example_sentence_native": "Le pays est bien gouverné par son nouveau président.", + "example_sentence_english": "The country is well governed by its new president.", + "pos": "adjective", + "word_frequency": 24570 + }, + { + "word": "grassement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "handsomely;generously", + "example_sentence_native": "Il a été grassement récompensé pour son travail.", + "example_sentence_english": "He was handsomely rewarded for his work.", + "pos": "adverb", + "word_frequency": 24571 + }, + { + "word": "gratification", + "article_with_word": "la gratification", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratification;bonus", + "example_sentence_native": "L'entreprise a versé une gratification à ses employés.", + "example_sentence_english": "The company paid a bonus to its employees.", + "pos": "noun", + "word_frequency": 24572 + }, + { + "word": "harpon", + "article_with_word": "le harpon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harpoon", + "example_sentence_native": "Le pêcheur a lancé son harpon pour attraper le poisson.", + "example_sentence_english": "The fisherman threw his harpoon to catch the fish.", + "pos": "noun", + "word_frequency": 24579 + }, + { + "word": "hellénistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hellenistic", + "example_sentence_native": "L'art hellénistique est caractérisé par son réalisme.", + "example_sentence_english": "Hellenistic art is characterized by its realism.", + "pos": "adjective", + "word_frequency": 24580 + }, + { + "word": "herbivore", + "article_with_word": "un herbivore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "herbivore", + "example_sentence_native": "Les vaches sont des animaux herbivores.", + "example_sentence_english": "Cows are herbivore animals.", + "pos": "noun", + "word_frequency": 24581 + }, + { + "word": "horrifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horrified", + "example_sentence_native": "Elle était horrifiée par ce qu'elle avait vu.", + "example_sentence_english": "She was horrified by what she had seen.", + "pos": "adjective", + "word_frequency": 24584 + }, + { + "word": "hotline", + "article_with_word": "la hotline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hotline", + "example_sentence_native": "J'ai appelé la hotline pour obtenir de l'aide technique.", + "example_sentence_english": "I called the hotline for technical assistance.", + "pos": "noun", + "word_frequency": 24585 + }, + { + "word": "houleux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stormy;turbulent", + "example_sentence_native": "Le débat a été houleux et les opinions étaient très divisées.", + "example_sentence_english": "The debate was stormy and opinions were very divided.", + "pos": "adjective", + "word_frequency": 24586 + }, + { + "word": "hydroélectricité", + "article_with_word": "l'hydroélectricité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydroelectricity", + "example_sentence_native": "L'hydroélectricité est une source d'énergie renouvelable.", + "example_sentence_english": "Hydroelectricity is a renewable energy source.", + "pos": "noun", + "word_frequency": 24589 + }, + { + "word": "immensément", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immensely", + "example_sentence_native": "Il est immensément reconnaissant pour votre aide.", + "example_sentence_english": "He is immensely grateful for your help.", + "pos": "adverb", + "word_frequency": 24591 + }, + { + "word": "improvisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvised;impromptu", + "example_sentence_native": "Ils ont organisé une fête improvisée dans le jardin.", + "example_sentence_english": "They organized an impromptu party in the garden.", + "pos": "adjective", + "word_frequency": 24592 + }, + { + "word": "inapplicable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inapplicable", + "example_sentence_native": "Cette règle est inapplicable dans le cas présent.", + "example_sentence_english": "This rule is inapplicable in the present case.", + "pos": "adjective", + "word_frequency": 24593 + }, + { + "word": "individualisation", + "article_with_word": "l'individualisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "individualization", + "example_sentence_native": "L'individualisation des parcours est un objectif pédagogique.", + "example_sentence_english": "The individualization of learning paths is an educational objective.", + "pos": "noun", + "word_frequency": 24594 + }, + { + "word": "inespéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unexpected;unhoped-for", + "example_sentence_native": "C'était une victoire inespérée pour l'équipe.", + "example_sentence_english": "It was an unexpected victory for the team.", + "pos": "adjective", + "word_frequency": 24595 + }, + { + "word": "infertilité", + "article_with_word": "l'infertilité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infertility", + "example_sentence_native": "La recherche sur l'infertilité a fait des progrès.", + "example_sentence_english": "Research on infertility has made progress.", + "pos": "noun", + "word_frequency": 24596 + }, + { + "word": "iniquité", + "article_with_word": "l'iniquité", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "iniquity;injustice", + "example_sentence_native": "Le système est marqué par une profonde iniquité.", + "example_sentence_english": "The system is marked by deep iniquity.", + "pos": "noun", + "word_frequency": 24597 + }, + { + "word": "insolvabilité", + "article_with_word": "l'insolvabilité", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "insolvency", + "example_sentence_native": "L'entreprise a déclaré son insolvabilité.", + "example_sentence_english": "The company declared its insolvency.", + "pos": "noun", + "word_frequency": 24598 + }, + { + "word": "judoka", + "article_with_word": "le judoka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judoka", + "example_sentence_native": "Le judoka a salué son adversaire.", + "example_sentence_english": "The judoka saluted his opponent.", + "pos": "noun", + "word_frequency": 24602 + }, + { + "word": "jupon", + "article_with_word": "le jupon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petticoat", + "example_sentence_native": "Elle portait un jupon sous sa robe.", + "example_sentence_english": "She wore a petticoat under her dress.", + "pos": "noun", + "word_frequency": 24604 + }, + { + "word": "kilométrage", + "article_with_word": "le kilométrage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mileage", + "example_sentence_native": "Le kilométrage de cette voiture est élevé.", + "example_sentence_english": "The mileage of this car is high.", + "pos": "noun", + "word_frequency": 24607 + }, + { + "word": "lapidaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concise;terse", + "example_sentence_native": "Sa réponse fut lapidaire et sans appel.", + "example_sentence_english": "His answer was terse and final.", + "pos": "adjective", + "word_frequency": 24611 + }, + { + "word": "layout", + "article_with_word": "le layout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layout", + "example_sentence_native": "Le layout de ce site web est très moderne.", + "example_sentence_english": "The layout of this website is very modern.", + "pos": "noun", + "word_frequency": 24613 + }, + { + "word": "leurrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lure;to deceive", + "example_sentence_native": "Il a essayé de me leurrer avec de fausses promesses.", + "example_sentence_english": "He tried to lure me with false promises.", + "pos": "verb", + "word_frequency": 24616 + }, + { + "word": "lingette", + "article_with_word": "la lingette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wipe", + "example_sentence_native": "Utilisez une lingette pour nettoyer la surface.", + "example_sentence_english": "Use a wipe to clean the surface.", + "pos": "noun", + "word_frequency": 24618 + }, + { + "word": "luciole", + "article_with_word": "la luciole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firefly", + "example_sentence_native": "Les lucioles brillent dans la nuit d'été.", + "example_sentence_english": "Fireflies glow in the summer night.", + "pos": "noun", + "word_frequency": 24622 + }, + { + "word": "luzerne", + "article_with_word": "la luzerne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alfalfa", + "example_sentence_native": "La luzerne est une plante fourragère importante.", + "example_sentence_english": "Alfalfa is an important forage plant.", + "pos": "noun", + "word_frequency": 24623 + }, + { + "word": "manigance", + "article_with_word": "la manigance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scheme;trick", + "example_sentence_native": "Ses manigances ont été découvertes.", + "example_sentence_english": "His schemes were discovered.", + "pos": "noun", + "word_frequency": 24626 + }, + { + "word": "mijoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to simmer", + "example_sentence_native": "Laissez mijoter la sauce pendant une heure.", + "example_sentence_english": "Let the sauce simmer for an hour.", + "pos": "verb", + "word_frequency": 24629 + }, + { + "word": "modelé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modeled;shaped", + "example_sentence_native": "Le paysage est très modelé par l'érosion.", + "example_sentence_english": "The landscape is very shaped by erosion.", + "pos": "adjective", + "word_frequency": 24630 + }, + { + "word": "mojo", + "article_with_word": "le mojo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mojo;charm", + "example_sentence_native": "Il a retrouvé son mojo après cette victoire.", + "example_sentence_english": "He found his mojo again after this victory.", + "pos": "noun", + "word_frequency": 24631 + }, + { + "word": "mormon", + "article_with_word": "le mormon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mormon", + "example_sentence_native": "Il a rencontré un missionnaire mormon.", + "example_sentence_english": "He met a Mormon missionary.", + "pos": "noun", + "word_frequency": 24633 + }, + { + "word": "mucus", + "article_with_word": "le mucus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mucus", + "example_sentence_native": "Le mucus protège les voies respiratoires.", + "example_sentence_english": "Mucus protects the respiratory tracts.", + "pos": "noun", + "word_frequency": 24634 + }, + { + "word": "mufti", + "article_with_word": "le mufti", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mufti", + "example_sentence_native": "Le mufti a émis une fatwa.", + "example_sentence_english": "The mufti issued a fatwa.", + "pos": "noun", + "word_frequency": 24635 + }, + { + "word": "nauséabond", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nauseating;foul-smelling", + "example_sentence_native": "Une odeur nauséabonde se dégageait des poubelles.", + "example_sentence_english": "A nauseating smell emanated from the bins.", + "pos": "adjective", + "word_frequency": 24636 + }, + { + "word": "normatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "normative", + "example_sentence_native": "Ce document a un caractère normatif.", + "example_sentence_english": "This document has a normative character.", + "pos": "adjective", + "word_frequency": 24638 + }, + { + "word": "ordonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tidy;orderly", + "example_sentence_native": "Sa chambre est toujours très ordonnée.", + "example_sentence_english": "His room is always very tidy.", + "pos": "adjective", + "word_frequency": 24644 + }, + { + "word": "outré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outraged;exaggerated", + "example_sentence_native": "Elle était outrée par son manque de respect.", + "example_sentence_english": "She was outraged by his lack of respect.", + "pos": "adjective", + "word_frequency": 24645 + }, + { + "word": "pacifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pacify;to calm", + "example_sentence_native": "Il a réussi à pacifier la foule en colère.", + "example_sentence_english": "He managed to pacify the angry crowd.", + "pos": "verb", + "word_frequency": 24647 + }, + { + "word": "paléo", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paleo (as in paleolithic)", + "example_sentence_native": "Elle suit un régime paléo pour sa santé.", + "example_sentence_english": "She follows a paleo diet for her health.", + "pos": "adjective", + "word_frequency": 24648 + }, + { + "word": "partial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partial;biased", + "example_sentence_native": "Son jugement était partial en faveur de son ami.", + "example_sentence_english": "His judgment was partial in favor of his friend.", + "pos": "adjective", + "word_frequency": 24649 + }, + { + "word": "passionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionate;emotional (often intense)", + "example_sentence_native": "C'était un crime passionnel, motivé par la jalousie.", + "example_sentence_english": "It was a crime of passion, motivated by jealousy.", + "pos": "adjective", + "word_frequency": 24650 + }, + { + "word": "patrouilleur", + "article_with_word": "le patrouilleur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patrol boat;vessel;patrolman", + "example_sentence_native": "Le patrouilleur côtier surveille les eaux territoriales.", + "example_sentence_english": "The coastal patrol boat monitors territorial waters.", + "pos": "noun", + "word_frequency": 24651 + }, + { + "word": "pedigree", + "article_with_word": "le pedigree", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedigree", + "example_sentence_native": "Ce cheval a un pedigree impressionnant.", + "example_sentence_english": "This horse has an impressive pedigree.", + "pos": "noun", + "word_frequency": 24654 + }, + { + "word": "pivoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pivot;to rotate", + "example_sentence_native": "La caméra peut pivoter à 360 degrés.", + "example_sentence_english": "The camera can pivot 360 degrees.", + "pos": "verb", + "word_frequency": 24657 + }, + { + "word": "plénipotentiaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plenipotentiary", + "example_sentence_native": "Il a été nommé ambassadeur plénipotentiaire.", + "example_sentence_english": "He was appointed ambassador plenipotentiary.", + "pos": "adjective", + "word_frequency": 24659 + }, + { + "word": "poinçon", + "article_with_word": "le poinçon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punch;hallmark", + "example_sentence_native": "Le bijou porte un poinçon d'authenticité.", + "example_sentence_english": "The jewel bears a hallmark of authenticity.", + "pos": "noun", + "word_frequency": 24662 + }, + { + "word": "polarité", + "article_with_word": "la polarité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polarity", + "example_sentence_native": "Il y a une forte polarité entre leurs opinions.", + "example_sentence_english": "There is a strong polarity between their opinions.", + "pos": "noun", + "word_frequency": 24663 + }, + { + "word": "pondéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balanced;weighted;thoughtful", + "example_sentence_native": "Sa réponse était très pondérée et réfléchie.", + "example_sentence_english": "His answer was very balanced and thoughtful.", + "pos": "adjective", + "word_frequency": 24664 + }, + { + "word": "primé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "award-winning;prized", + "example_sentence_native": "Ce film a été primé au festival de Cannes.", + "example_sentence_english": "This film was award-winning at the Cannes festival.", + "pos": "adjective", + "word_frequency": 24665 + }, + { + "word": "propulseur", + "article_with_word": "le propulseur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propellant;thruster", + "example_sentence_native": "Le propulseur de la fusée a généré une poussée énorme.", + "example_sentence_english": "The rocket's thruster generated enormous thrust.", + "pos": "noun", + "word_frequency": 24669 + }, + { + "word": "pâlir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn pale;to fade", + "example_sentence_native": "Elle a pâli en apprenant la mauvaise nouvelle.", + "example_sentence_english": "She turned pale upon hearing the bad news.", + "pos": "verb", + "word_frequency": 24671 + }, + { + "word": "radicalité", + "article_with_word": "la radicalité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalism;radical nature", + "example_sentence_native": "La radicalité de ses propositions a choqué l'assemblée.", + "example_sentence_english": "The radical nature of his proposals shocked the assembly.", + "pos": "noun", + "word_frequency": 24674 + }, + { + "word": "raideur", + "article_with_word": "la raideur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stiffness;rigidity", + "example_sentence_native": "Il ressent une raideur dans les articulations le matin.", + "example_sentence_english": "He feels stiffness in his joints in the morning.", + "pos": "noun", + "word_frequency": 24675 + }, + { + "word": "rasta", + "article_with_word": "le rasta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Rasta;Rastafarian", + "example_sentence_native": "Il porte des dreadlocks comme un vrai rasta.", + "example_sentence_english": "He wears dreadlocks like a true Rasta.", + "pos": "noun", + "word_frequency": 24676 + }, + { + "word": "recadrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reframe;to crop;to put back in line", + "example_sentence_native": "Il faut recadrer l'image pour améliorer la composition.", + "example_sentence_english": "You need to crop the image to improve the composition.", + "pos": "verb", + "word_frequency": 24678 + }, + { + "word": "redressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "straightened;rectified;upright", + "example_sentence_native": "Après l'accident, la voiture a été redressée.", + "example_sentence_english": "After the accident, the car was straightened.", + "pos": "adjective", + "word_frequency": 24679 + }, + { + "word": "renégociation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renegotiation", + "example_sentence_native": "La renégociation du contrat est en cours.", + "example_sentence_english": "The renegotiation of the contract is underway.", + "pos": "noun", + "word_frequency": 24682 + }, + { + "word": "repreneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buyer;acquirer", + "example_sentence_native": "Le repreneur a présenté son plan de relance.", + "example_sentence_english": "The acquirer presented their recovery plan.", + "pos": "noun", + "word_frequency": 24684 + }, + { + "word": "rocker", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocker (person)", + "example_sentence_native": "Il est un vrai rocker dans l'âme.", + "example_sentence_english": "He is a true rocker at heart.", + "pos": "noun", + "word_frequency": 24685 + }, + { + "word": "rondeur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roundness;plumpness", + "example_sentence_native": "La rondeur de ses joues lui donnait un air enfantin.", + "example_sentence_english": "The roundness of her cheeks gave her a childlike appearance.", + "pos": "noun", + "word_frequency": 24687 + }, + { + "word": "ruer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kick (of an animal);to rush (se ruer)", + "example_sentence_native": "Le cheval a commencé à ruer. Les gens se sont rués vers la sortie.", + "example_sentence_english": "The horse started to kick. People rushed towards the exit.", + "pos": "verb", + "word_frequency": 24690 + }, + { + "word": "résineux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resinous;coniferous", + "example_sentence_native": "Les forêts de pins sont des forêts résineuses.", + "example_sentence_english": "Pine forests are coniferous forests.", + "pos": "adjective", + "word_frequency": 24692 + }, + { + "word": "sacerdotal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacerdotal;priestly", + "example_sentence_native": "Il a reçu l'ordination sacerdotale.", + "example_sentence_english": "He received sacerdotal ordination.", + "pos": "adjective", + "word_frequency": 24693 + }, + { + "word": "salafisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Salafism", + "example_sentence_native": "Le salafisme est un courant de l'islam sunnite.", + "example_sentence_english": "Salafism is a current within Sunni Islam.", + "pos": "noun", + "word_frequency": 24694 + }, + { + "word": "salto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "somersault;flip", + "example_sentence_native": "Le gymnaste a exécuté un magnifique salto arrière.", + "example_sentence_english": "The gymnast performed a magnificent back somersault.", + "pos": "noun", + "word_frequency": 24695 + }, + { + "word": "samaritain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Samaritan", + "example_sentence_native": "Il a agi comme un bon Samaritain en aidant l'étranger.", + "example_sentence_english": "He acted like a good Samaritan by helping the stranger.", + "pos": "adjective", + "word_frequency": 24697 + }, + { + "word": "sanatorium", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanatorium", + "example_sentence_native": "Les patients atteints de tuberculose étaient souvent envoyés dans des sanatoriums.", + "example_sentence_english": "Patients with tuberculosis were often sent to sanatoriums.", + "pos": "noun", + "word_frequency": 24698 + }, + { + "word": "septante", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seventy (Belgian;Swiss French)", + "example_sentence_native": "En Belgique, on dit \"septante\" pour soixante-dix.", + "example_sentence_english": "In Belgium, they say \"septante\" for seventy.", + "pos": "numeral", + "word_frequency": 24700 + }, + { + "word": "serrurerie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locksmithing;locksmith's shop", + "example_sentence_native": "J'ai dû appeler la serrurerie pour ouvrir ma porte.", + "example_sentence_english": "I had to call the locksmith's shop to open my door.", + "pos": "noun", + "word_frequency": 24701 + }, + { + "word": "skiable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skiable", + "example_sentence_native": "La piste est enfin skiable après les chutes de neige.", + "example_sentence_english": "The slope is finally skiable after the snowfall.", + "pos": "adjective", + "word_frequency": 24708 + }, + { + "word": "soubresaut", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jolt;sudden movement;convulsion", + "example_sentence_native": "Le train a fait un soubresaut inattendu.", + "example_sentence_english": "The train made an unexpected jolt.", + "pos": "noun", + "word_frequency": 24709 + }, + { + "word": "souiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to soil;to defile;to tarnish", + "example_sentence_native": "Il a souillé sa réputation par ses actions.", + "example_sentence_english": "He tarnished his reputation by his actions.", + "pos": "verb", + "word_frequency": 24710 + }, + { + "word": "soupirant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sighing;longing (as adjective);suitor (as noun)", + "example_sentence_native": "Il la regardait d'un air soupirant. Son soupirant lui a envoyé des fleurs.", + "example_sentence_english": "He looked at her with a sighing expression. Her suitor sent her flowers.", + "pos": "adjective", + "word_frequency": 24713 + }, + { + "word": "sourdine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mute (for musical instrument);damper;quietly;discreetly (en sourdine)", + "example_sentence_native": "Le trompettiste a mis une sourdine. La rumeur circulait en sourdine.", + "example_sentence_english": "The trumpeter put on a mute. The rumor circulated quietly.", + "pos": "noun", + "word_frequency": 24714 + }, + { + "word": "soustraction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subtraction", + "example_sentence_native": "La soustraction est l'une des quatre opérations de base.", + "example_sentence_english": "Subtraction is one of the four basic operations.", + "pos": "noun", + "word_frequency": 24716 + }, + { + "word": "soy", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soy", + "example_sentence_native": "Le lait de soy est une alternative au lait de vache.", + "example_sentence_english": "Soy milk is an alternative to cow's milk.", + "pos": "noun", + "word_frequency": 24717 + }, + { + "word": "subject", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subject", + "example_sentence_native": "Quel est le sujet de votre discussion ?", + "example_sentence_english": "What is the subject of your discussion?", + "pos": "noun", + "word_frequency": 24722 + }, + { + "word": "surélever", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise;to elevate", + "example_sentence_native": "Il faut surélever le niveau du sol pour éviter les inondations.", + "example_sentence_english": "We need to raise the ground level to avoid floods.", + "pos": "verb", + "word_frequency": 24723 + }, + { + "word": "tanin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tannin", + "example_sentence_native": "Le tanin donne de l'astringence au vin rouge.", + "example_sentence_english": "Tannin gives astringency to red wine.", + "pos": "noun", + "word_frequency": 24725 + }, + { + "word": "tapper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tap;to hit lightly", + "example_sentence_native": "Il a commencé à tapper du pied en attendant.", + "example_sentence_english": "He started tapping his foot while waiting.", + "pos": "verb", + "word_frequency": 24726 + }, + { + "word": "temporalité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "temporality", + "example_sentence_native": "La temporalité est un concept clé en philosophie.", + "example_sentence_english": "Temporality is a key concept in philosophy.", + "pos": "noun", + "word_frequency": 24728 + }, + { + "word": "terrassement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthwork;excavation", + "example_sentence_native": "Les travaux de terrassement ont commencé sur le chantier.", + "example_sentence_english": "The earthwork began on the construction site.", + "pos": "noun", + "word_frequency": 24729 + }, + { + "word": "tesson", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shard;piece of broken glass;pottery", + "example_sentence_native": "Attention aux tessons de verre par terre.", + "example_sentence_english": "Watch out for glass shards on the ground.", + "pos": "noun", + "word_frequency": 24730 + }, + { + "word": "toponymie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "toponymy", + "example_sentence_native": "La toponymie est l'étude des noms de lieux.", + "example_sentence_english": "Toponymy is the study of place names.", + "pos": "noun", + "word_frequency": 24732 + }, + { + "word": "touring", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "touring", + "example_sentence_native": "C'est une voiture de touring, idéale pour les longs trajets.", + "example_sentence_english": "It's a touring car, ideal for long journeys.", + "pos": "noun", + "word_frequency": 24734 + }, + { + "word": "toxicomane", + "article_with_word": "un/une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug addict", + "example_sentence_native": "Un toxicomane a besoin d'aide pour se désintoxiquer.", + "example_sentence_english": "A drug addict needs help to detoxify.", + "pos": "noun", + "word_frequency": 24735 + }, + { + "word": "traire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to milk", + "example_sentence_native": "Chaque matin, le fermier va traire ses vaches.", + "example_sentence_english": "Every morning, the farmer goes to milk his cows.", + "pos": "verb", + "word_frequency": 24736 + }, + { + "word": "trias", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Triassic", + "example_sentence_native": "Les dinosaures sont apparus pendant le Trias.", + "example_sentence_english": "Dinosaurs appeared during the Triassic period.", + "pos": "noun", + "word_frequency": 24737 + }, + { + "word": "trinquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clink glasses;to toast", + "example_sentence_native": "Levons nos verres et trinquons à votre succès !", + "example_sentence_english": "Let's raise our glasses and toast to your success!", + "pos": "verb", + "word_frequency": 24738 + }, + { + "word": "téléporter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to teleport", + "example_sentence_native": "Les personnages de science-fiction peuvent se téléporter.", + "example_sentence_english": "Science fiction characters can teleport.", + "pos": "verb", + "word_frequency": 24741 + }, + { + "word": "urbaniste", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urban planner", + "example_sentence_native": "L'urbaniste travaille sur l'aménagement des villes.", + "example_sentence_english": "The urban planner works on city development.", + "pos": "noun", + "word_frequency": 24743 + }, + { + "word": "ventouse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suction cup;plunger", + "example_sentence_native": "La ventouse permet de fixer l'objet au mur.", + "example_sentence_english": "The suction cup allows the object to be fixed to the wall.", + "pos": "noun", + "word_frequency": 24746 + }, + { + "word": "vulve", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulva", + "example_sentence_native": "La vulve est la partie externe des organes génitaux féminins.", + "example_sentence_english": "The vulva is the external part of the female genitalia.", + "pos": "noun", + "word_frequency": 24751 + }, + { + "word": "épidémiologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epidemiological", + "example_sentence_native": "L'étude épidémiologique a révélé de nouvelles données.", + "example_sentence_english": "The epidemiological study revealed new data.", + "pos": "adjective", + "word_frequency": 24756 + }, + { + "word": "éponger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sponge;to wipe up", + "example_sentence_native": "Il faut éponger l'eau qui a débordé.", + "example_sentence_english": "You need to wipe up the overflowing water.", + "pos": "verb", + "word_frequency": 24757 + }, + { + "word": "étamine", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stamen (botany);cheesecloth (cooking)", + "example_sentence_native": "L'étamine est utilisée pour filtrer les sauces.", + "example_sentence_english": "Cheesecloth is used to filter sauces.", + "pos": "noun", + "word_frequency": 24758 + }, + { + "word": "étiqueter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to label;to tag", + "example_sentence_native": "N'oubliez pas d'étiqueter toutes les boîtes.", + "example_sentence_english": "Don't forget to label all the boxes.", + "pos": "verb", + "word_frequency": 24759 + }, + { + "word": "étouffement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffocation;choking", + "example_sentence_native": "L'étouffement peut être fatal si l'on n'agit pas rapidement.", + "example_sentence_english": "Suffocation can be fatal if one does not act quickly.", + "pos": "noun", + "word_frequency": 24760 + }, + { + "word": "étourdir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stun;to daze", + "example_sentence_native": "Le choc a étourdi le boxeur pendant quelques secondes.", + "example_sentence_english": "The blow stunned the boxer for a few seconds.", + "pos": "verb", + "word_frequency": 24761 + }, + { + "word": "accroche", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hook;catchphrase;grip", + "example_sentence_native": "La publicité avait une accroche très efficace.", + "example_sentence_english": "The advertisement had a very effective catchphrase.", + "pos": "noun", + "word_frequency": 24762 + }, + { + "word": "acerbe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acerbic;bitter", + "example_sentence_native": "Ses commentaires acerbes ont blessé tout le monde.", + "example_sentence_english": "His acerbic comments hurt everyone.", + "pos": "adjective", + "word_frequency": 24763 + }, + { + "word": "adverbe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adverb", + "example_sentence_native": "Un adverbe modifie un verbe, un adjectif ou un autre adverbe.", + "example_sentence_english": "An adverb modifies a verb, an adjective, or another adverb.", + "pos": "noun", + "word_frequency": 24765 + }, + { + "word": "aeroport", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airport", + "example_sentence_native": "Nous allons à l'aéroport pour prendre notre vol.", + "example_sentence_english": "We are going to the airport to catch our flight.", + "pos": "noun", + "word_frequency": 24766 + }, + { + "word": "agrégat", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggregate", + "example_sentence_native": "L'agrégat de données a révélé une tendance inattendue.", + "example_sentence_english": "The aggregate of data revealed an unexpected trend.", + "pos": "noun", + "word_frequency": 24767 + }, + { + "word": "airbag", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airbag", + "example_sentence_native": "La voiture est équipée de plusieurs airbags pour la sécurité.", + "example_sentence_english": "The car is equipped with several airbags for safety.", + "pos": "noun", + "word_frequency": 24769 + }, + { + "word": "amortisseur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shock absorber", + "example_sentence_native": "Il faut changer les amortisseurs de la voiture.", + "example_sentence_english": "The car's shock absorbers need to be changed.", + "pos": "noun", + "word_frequency": 24773 + }, + { + "word": "amorçage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priming;bootstrapping;starting", + "example_sentence_native": "L'amorçage du moteur a pris plus de temps que prévu.", + "example_sentence_english": "The engine's starting took longer than expected.", + "pos": "noun", + "word_frequency": 24774 + }, + { + "word": "ane", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donkey", + "example_sentence_native": "L'âne portait de lourdes charges sur son dos.", + "example_sentence_english": "The donkey carried heavy loads on its back.", + "pos": "noun", + "word_frequency": 24775 + }, + { + "word": "annonciation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Annunciation", + "example_sentence_native": "L'Annonciation est un événement clé dans la tradition chrétienne.", + "example_sentence_english": "The Annunciation is a key event in Christian tradition.", + "pos": "noun", + "word_frequency": 24776 + }, + { + "word": "anticapitaliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-capitalist", + "example_sentence_native": "Le mouvement anticapitaliste a organisé une manifestation.", + "example_sentence_english": "The anti-capitalist movement organized a demonstration.", + "pos": "adjective", + "word_frequency": 24777 + }, + { + "word": "antivol", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anti-theft device;lock", + "example_sentence_native": "J'ai acheté un antivol pour mon vélo.", + "example_sentence_english": "I bought an anti-theft device for my bicycle.", + "pos": "noun", + "word_frequency": 24778 + }, + { + "word": "aparté", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aside (in theater);private conversation", + "example_sentence_native": "L'acteur a fait un aparté au public.", + "example_sentence_english": "The actor made an aside to the audience.", + "pos": "noun", + "word_frequency": 24779 + }, + { + "word": "autogestion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-management", + "example_sentence_native": "Le concept d'autogestion est central dans certaines théories politiques.", + "example_sentence_english": "The concept of self-management is central to certain political theories.", + "pos": "noun", + "word_frequency": 24782 + }, + { + "word": "bagel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bagel", + "example_sentence_native": "J'ai mangé un bagel au petit-déjeuner.", + "example_sentence_english": "I ate a bagel for breakfast.", + "pos": "noun", + "word_frequency": 24784 + }, + { + "word": "bandoulière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shoulder strap;bandolier", + "example_sentence_native": "Elle portait son sac en bandoulière.", + "example_sentence_english": "She wore her bag over her shoulder.", + "pos": "noun", + "word_frequency": 24785 + }, + { + "word": "bassesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baseness;meanness", + "example_sentence_native": "Il a été choqué par la bassesse de ses propos.", + "example_sentence_english": "He was shocked by the meanness of his words.", + "pos": "noun", + "word_frequency": 24786 + }, + { + "word": "bordereau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slip;statement;schedule", + "example_sentence_native": "Veuillez remplir le bordereau de dépôt.", + "example_sentence_english": "Please fill out the deposit slip.", + "pos": "noun", + "word_frequency": 24793 + }, + { + "word": "bouleversant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upsetting;overwhelming;moving", + "example_sentence_native": "Ce film était vraiment bouleversant.", + "example_sentence_english": "This movie was truly moving.", + "pos": "adjective", + "word_frequency": 24795 + }, + { + "word": "bricole", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "odd job;bit of DIY;trifle", + "example_sentence_native": "J'ai quelques bricoles à faire ce week-end.", + "example_sentence_english": "I have a few odd jobs to do this weekend.", + "pos": "noun", + "word_frequency": 24797 + }, + { + "word": "brochet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pike (fish)", + "example_sentence_native": "Le brochet est un poisson d'eau douce.", + "example_sentence_english": "The pike is a freshwater fish.", + "pos": "noun", + "word_frequency": 24798 + }, + { + "word": "brocoli", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broccoli", + "example_sentence_native": "J'aime manger du brocoli avec mon dîner.", + "example_sentence_english": "I like to eat broccoli with my dinner.", + "pos": "noun", + "word_frequency": 24799 + }, + { + "word": "broyage", + "article_with_word": "le broyage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grinding", + "example_sentence_native": "Le broyage des grains est une étape essentielle.", + "example_sentence_english": "The grinding of grains is an essential step.", + "pos": "noun", + "word_frequency": 24801 + }, + { + "word": "burundais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Burundian", + "example_sentence_native": "La cuisine burundaise est riche en saveurs.", + "example_sentence_english": "Burundian cuisine is rich in flavors.", + "pos": "adjective", + "word_frequency": 24803 + }, + { + "word": "cabanon", + "article_with_word": "le cabanon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small shed;cabin", + "example_sentence_native": "Ils ont un petit cabanon au fond du jardin.", + "example_sentence_english": "They have a small shed at the back of the garden.", + "pos": "noun", + "word_frequency": 24804 + }, + { + "word": "cade", + "article_with_word": "le cade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prickly juniper", + "example_sentence_native": "L'huile de cade est utilisée en dermatologie.", + "example_sentence_english": "Cade oil is used in dermatology.", + "pos": "noun", + "word_frequency": 24805 + }, + { + "word": "cala", + "article_with_word": "la cala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cove", + "example_sentence_native": "Nous avons découvert une magnifique cala isolée.", + "example_sentence_english": "We discovered a magnificent isolated cove.", + "pos": "noun", + "word_frequency": 24806 + }, + { + "word": "calanque", + "article_with_word": "la calanque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rocky inlet", + "example_sentence_native": "Les calanques de Marseille sont célèbres.", + "example_sentence_english": "The calanques of Marseille are famous.", + "pos": "noun", + "word_frequency": 24807 + }, + { + "word": "calquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trace;to copy", + "example_sentence_native": "Il a essayé de calquer son style sur celui de son idole.", + "example_sentence_english": "He tried to copy his style from that of his idol.", + "pos": "verb", + "word_frequency": 24808 + }, + { + "word": "camomille", + "article_with_word": "la camomille", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chamomile", + "example_sentence_native": "Une tisane de camomille aide à se détendre.", + "example_sentence_english": "A chamomile tea helps to relax.", + "pos": "noun", + "word_frequency": 24809 + }, + { + "word": "carabinier", + "article_with_word": "le carabinier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carabineer;gendarme", + "example_sentence_native": "Le carabinier montait la garde devant le palais.", + "example_sentence_english": "The carabineer stood guard in front of the palace.", + "pos": "noun", + "word_frequency": 24810 + }, + { + "word": "cervical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cervical", + "example_sentence_native": "Il souffre de douleurs cervicales.", + "example_sentence_english": "He suffers from cervical pain.", + "pos": "adjective", + "word_frequency": 24813 + }, + { + "word": "charnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carnal", + "example_sentence_native": "Il y a une dimension charnelle dans cette œuvre d'art.", + "example_sentence_english": "There is a carnal dimension in this work of art.", + "pos": "adjective", + "word_frequency": 24817 + }, + { + "word": "choral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choral", + "example_sentence_native": "Ils ont assisté à un concert choral magnifique.", + "example_sentence_english": "They attended a magnificent choral concert.", + "pos": "adjective", + "word_frequency": 24821 + }, + { + "word": "châtain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chestnut (hair color)", + "example_sentence_native": "Elle a de longs cheveux châtains.", + "example_sentence_english": "She has long chestnut hair.", + "pos": "adjective", + "word_frequency": 24823 + }, + { + "word": "chérir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cherish", + "example_sentence_native": "Il chérit les souvenirs de son enfance.", + "example_sentence_english": "He cherishes the memories of his childhood.", + "pos": "verb", + "word_frequency": 24824 + }, + { + "word": "circonscrire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to circumscribe;to limit", + "example_sentence_native": "Il est difficile de circonscrire l'étendue du problème.", + "example_sentence_english": "It is difficult to circumscribe the extent of the problem.", + "pos": "verb", + "word_frequency": 24825 + }, + { + "word": "cliniquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clinically", + "example_sentence_native": "Le patient est cliniquement stable.", + "example_sentence_english": "The patient is clinically stable.", + "pos": "adverb", + "word_frequency": 24827 + }, + { + "word": "cohue", + "article_with_word": "la cohue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "throng;mob", + "example_sentence_native": "Il y avait une cohue incroyable devant le magasin.", + "example_sentence_english": "There was an incredible throng in front of the store.", + "pos": "noun", + "word_frequency": 24829 + }, + { + "word": "câliner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cuddle;to caress", + "example_sentence_native": "Elle aime câliner son chat sur le canapé.", + "example_sentence_english": "She likes to cuddle her cat on the sofa.", + "pos": "verb", + "word_frequency": 24833 + }, + { + "word": "douloureusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painfully", + "example_sentence_native": "Il a crié douloureusement après sa chute.", + "example_sentence_english": "He cried out painfully after his fall.", + "pos": "adverb", + "word_frequency": 24841 + }, + { + "word": "débandade", + "article_with_word": "la débandade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rout;stampede", + "example_sentence_native": "Après l'explosion, ce fut la débandade générale.", + "example_sentence_english": "After the explosion, it was a general rout.", + "pos": "noun", + "word_frequency": 24844 + }, + { + "word": "déchaînement", + "article_with_word": "le déchaînement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unleashing;outburst", + "example_sentence_native": "Le déchaînement de la tempête a causé beaucoup de dégâts.", + "example_sentence_english": "The unleashing of the storm caused a lot of damage.", + "pos": "noun", + "word_frequency": 24845 + }, + { + "word": "démanger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to itch", + "example_sentence_native": "Mon bras me démange terriblement.", + "example_sentence_english": "My arm is itching terribly.", + "pos": "verb", + "word_frequency": 24846 + }, + { + "word": "démangeaison", + "article_with_word": "la démangeaison", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "itch;itching", + "example_sentence_native": "J'ai une démangeaison sur la peau.", + "example_sentence_english": "I have an itch on my skin.", + "pos": "noun", + "word_frequency": 24847 + }, + { + "word": "déplaisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpleasant;disagreeable", + "example_sentence_native": "C'était une expérience très déplaisante.", + "example_sentence_english": "It was a very unpleasant experience.", + "pos": "adjective", + "word_frequency": 24848 + }, + { + "word": "ecstasy", + "article_with_word": "l'ecstasy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecstasy", + "example_sentence_native": "Elle était en pleine ecstasy après avoir gagné la loterie.", + "example_sentence_english": "She was in complete ecstasy after winning the lottery.", + "pos": "noun", + "word_frequency": 24849 + }, + { + "word": "embrasement", + "article_with_word": "l'embrasement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blaze;conflagration", + "example_sentence_native": "L'embrasement de la forêt a été rapide.", + "example_sentence_english": "The blaze in the forest was rapid.", + "pos": "noun", + "word_frequency": 24852 + }, + { + "word": "entree", + "article_with_word": "l'entrée", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "entrance;starter", + "example_sentence_native": "L'entrée du bâtiment est fermée.", + "example_sentence_english": "The entrance to the building is closed.", + "pos": "noun", + "word_frequency": 24853 + }, + { + "word": "ethnographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnographic", + "example_sentence_native": "Ils ont mené une étude ethnographique sur la tribu.", + "example_sentence_english": "They conducted an ethnographic study on the tribe.", + "pos": "adjective", + "word_frequency": 24855 + }, + { + "word": "evasion", + "article_with_word": "l'évasion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escape;evasion", + "example_sentence_native": "L'évasion du prisonnier a choqué tout le monde.", + "example_sentence_english": "The prisoner's escape shocked everyone.", + "pos": "noun", + "word_frequency": 24857 + }, + { + "word": "extensible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extensible;stretchable", + "example_sentence_native": "Ce tissu est très extensible.", + "example_sentence_english": "This fabric is very stretchable.", + "pos": "adjective", + "word_frequency": 24858 + }, + { + "word": "extrapolation", + "article_with_word": "l'extrapolation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extrapolation", + "example_sentence_native": "Son extrapolation des données était audacieuse.", + "example_sentence_english": "His extrapolation of the data was bold.", + "pos": "noun", + "word_frequency": 24859 + }, + { + "word": "exécutoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enforceable;executory", + "example_sentence_native": "La décision est devenue exécutoire.", + "example_sentence_english": "The decision became enforceable.", + "pos": "adjective", + "word_frequency": 24860 + }, + { + "word": "fakir", + "article_with_word": "le fakir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fakir", + "example_sentence_native": "Le fakir a marché sur des charbons ardents.", + "example_sentence_english": "The fakir walked on hot coals.", + "pos": "noun", + "word_frequency": 24861 + }, + { + "word": "fallout", + "article_with_word": "le fallout", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fallout;repercussions", + "example_sentence_native": "Les retombées (fallout) de la crise sont encore visibles.", + "example_sentence_english": "The fallout from the crisis is still visible.", + "pos": "noun", + "word_frequency": 24862 + }, + { + "word": "falsifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to falsify;to tamper with", + "example_sentence_native": "Il a essayé de falsifier les documents.", + "example_sentence_english": "He tried to falsify the documents.", + "pos": "verb", + "word_frequency": 24863 + }, + { + "word": "fluorure", + "article_with_word": "le fluorure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluoride", + "example_sentence_native": "Le fluorure est ajouté à l'eau pour la santé dentaire.", + "example_sentence_english": "Fluoride is added to water for dental health.", + "pos": "noun", + "word_frequency": 24865 + }, + { + "word": "fourgonnette", + "article_with_word": "la fourgonnette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "van;small truck", + "example_sentence_native": "Ils ont transporté les meubles dans une fourgonnette.", + "example_sentence_english": "They transported the furniture in a van.", + "pos": "noun", + "word_frequency": 24868 + }, + { + "word": "fractionnement", + "article_with_word": "le fractionnement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fractionation;splitting", + "example_sentence_native": "Le fractionnement des actions a eu lieu hier.", + "example_sentence_english": "The stock split (fractionation) occurred yesterday.", + "pos": "noun", + "word_frequency": 24869 + }, + { + "word": "furtivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furtively;stealthily", + "example_sentence_native": "Il a jeté un coup d'œil furtivement par la fenêtre.", + "example_sentence_english": "He glanced furtively out the window.", + "pos": "adverb", + "word_frequency": 24871 + }, + { + "word": "fuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to gush;to burst forth", + "example_sentence_native": "Les idées ont commencé à fuser dans son esprit.", + "example_sentence_english": "Ideas began to gush forth in his mind.", + "pos": "verb", + "word_frequency": 24872 + }, + { + "word": "gaullisme", + "article_with_word": "le gaullisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Gaullism", + "example_sentence_native": "Le gaullisme a marqué l'histoire politique française.", + "example_sentence_english": "Gaullism marked French political history.", + "pos": "noun", + "word_frequency": 24873 + }, + { + "word": "geisha", + "article_with_word": "la geisha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geisha", + "example_sentence_native": "La geisha est une artiste traditionnelle japonaise.", + "example_sentence_english": "The geisha is a traditional Japanese artist.", + "pos": "noun", + "word_frequency": 24874 + }, + { + "word": "gonzesse", + "article_with_word": "la gonzesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chick;girl (slang)", + "example_sentence_native": "Il est sorti avec une gonzesse sympa.", + "example_sentence_english": "He went out with a nice chick.", + "pos": "noun", + "word_frequency": 24875 + }, + { + "word": "graduation", + "article_with_word": "la graduation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graduation (markings);scale", + "example_sentence_native": "Les graduations sur la règle sont claires.", + "example_sentence_english": "The graduations on the ruler are clear.", + "pos": "noun", + "word_frequency": 24876 + }, + { + "word": "graduer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to graduate;to mark with graduations", + "example_sentence_native": "Il a gradué de l'université l'année dernière.", + "example_sentence_english": "He graduated from university last year.", + "pos": "verb", + "word_frequency": 24877 + }, + { + "word": "grisâtre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greyish", + "example_sentence_native": "Le ciel était grisâtre ce matin.", + "example_sentence_english": "The sky was greyish this morning.", + "pos": "adjective", + "word_frequency": 24879 + }, + { + "word": "handisport", + "article_with_word": "le handisport", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "para-sport", + "example_sentence_native": "Le handisport permet aux athlètes handicapés de pratiquer diverses disciplines.", + "example_sentence_english": "Para-sport allows disabled athletes to practice various disciplines.", + "pos": "noun", + "word_frequency": 24882 + }, + { + "word": "herbicide", + "article_with_word": "un herbicide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "herbicide", + "example_sentence_native": "L'utilisation d'herbicides est controversée en agriculture.", + "example_sentence_english": "The use of herbicides is controversial in agriculture.", + "pos": "noun", + "word_frequency": 24883 + }, + { + "word": "hooligan", + "article_with_word": "un hooligan", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hooligan", + "example_sentence_native": "Les hooligans ont causé des troubles après le match.", + "example_sentence_english": "The hooligans caused disturbances after the match.", + "pos": "noun", + "word_frequency": 24884 + }, + { + "word": "hupper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hoot", + "example_sentence_native": "Le hibou a commencé à hupper au crépuscule.", + "example_sentence_english": "The owl began to hoot at dusk.", + "pos": "verb", + "word_frequency": 24886 + }, + { + "word": "husky", + "article_with_word": "un husky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "husky", + "example_sentence_native": "Mon voisin a un magnifique husky aux yeux bleus.", + "example_sentence_english": "My neighbor has a beautiful husky with blue eyes.", + "pos": "noun", + "word_frequency": 24887 + }, + { + "word": "ignominie", + "article_with_word": "une ignominie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ignominy", + "example_sentence_native": "Leur comportement était une véritable ignominie.", + "example_sentence_english": "Their behavior was a true ignominy.", + "pos": "noun", + "word_frequency": 24889 + }, + { + "word": "inanimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inanimate", + "example_sentence_native": "Il a trouvé le corps inanimé sur le sol.", + "example_sentence_english": "He found the inanimate body on the ground.", + "pos": "adjective", + "word_frequency": 24892 + }, + { + "word": "inexpérience", + "article_with_word": "l'inexpérience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexperience", + "example_sentence_native": "Son inexpérience dans ce domaine était évidente.", + "example_sentence_english": "His inexperience in this field was evident.", + "pos": "noun", + "word_frequency": 24893 + }, + { + "word": "infirmité", + "article_with_word": "une infirmité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infirmity", + "example_sentence_native": "Malgré son infirmité, il a mené une vie pleine et active.", + "example_sentence_english": "Despite his infirmity, he led a full and active life.", + "pos": "noun", + "word_frequency": 24894 + }, + { + "word": "insémination", + "article_with_word": "l'insémination", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insemination", + "example_sentence_native": "L'insémination artificielle est une technique de reproduction assistée.", + "example_sentence_english": "Artificial insemination is an assisted reproductive technique.", + "pos": "noun", + "word_frequency": 24895 + }, + { + "word": "intergalactique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intergalactic", + "example_sentence_native": "Les voyages intergalactiques restent un rêve pour l'humanité.", + "example_sentence_english": "Intergalactic travel remains a dream for humanity.", + "pos": "adjective", + "word_frequency": 24896 + }, + { + "word": "intolérant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerant", + "example_sentence_native": "Il est intolérant au lactose.", + "example_sentence_english": "He is lactose intolerant.", + "pos": "adjective", + "word_frequency": 24897 + }, + { + "word": "intraitable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intractable", + "example_sentence_native": "Le problème est devenu intraitable sans une nouvelle approche.", + "example_sentence_english": "The problem became intractable without a new approach.", + "pos": "adjective", + "word_frequency": 24898 + }, + { + "word": "invivable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlivable", + "example_sentence_native": "La situation est devenue invivable pour eux.", + "example_sentence_english": "The situation became unlivable for them.", + "pos": "adjective", + "word_frequency": 24900 + }, + { + "word": "koala", + "article_with_word": "un koala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "koala", + "example_sentence_native": "Le koala est un marsupial originaire d'Australie.", + "example_sentence_english": "The koala is a marsupial native to Australia.", + "pos": "noun", + "word_frequency": 24906 + }, + { + "word": "lamenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lament", + "example_sentence_native": "Il ne fait que se lamenter sur son sort.", + "example_sentence_english": "He only laments his fate.", + "pos": "verb", + "word_frequency": 24907 + }, + { + "word": "linceul", + "article_with_word": "un linceul", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shroud", + "example_sentence_native": "Le corps a été enveloppé dans un linceul blanc.", + "example_sentence_english": "The body was wrapped in a white shroud.", + "pos": "noun", + "word_frequency": 24912 + }, + { + "word": "malabar", + "article_with_word": "un malabar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tough guy", + "example_sentence_native": "C'est un vrai malabar, il peut soulever des poids impressionnants.", + "example_sentence_english": "He's a real tough guy, he can lift impressive weights.", + "pos": "noun", + "word_frequency": 24917 + }, + { + "word": "maquereau", + "article_with_word": "un maquereau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mackerel", + "example_sentence_native": "Nous avons mangé du maquereau grillé pour le dîner.", + "example_sentence_english": "We ate grilled mackerel for dinner.", + "pos": "noun", + "word_frequency": 24918 + }, + { + "word": "margarine", + "article_with_word": "la margarine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "margarine", + "example_sentence_native": "Je préfère la margarine au beurre pour cuisiner.", + "example_sentence_english": "I prefer margarine to butter for cooking.", + "pos": "noun", + "word_frequency": 24919 + }, + { + "word": "masseuse", + "article_with_word": "la masseuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masseuse", + "example_sentence_native": "La masseuse a soulagé mes douleurs musculaires.", + "example_sentence_english": "The masseuse relieved my muscle pain.", + "pos": "noun", + "word_frequency": 24921 + }, + { + "word": "maudire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to curse;to damn", + "example_sentence_native": "Il a commencé à maudire sa malchance.", + "example_sentence_english": "He began to curse his bad luck.", + "pos": "verb", + "word_frequency": 24922 + }, + { + "word": "mensuration", + "article_with_word": "la mensuration", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measurement (body measurement)", + "example_sentence_native": "Elle a pris ses mensurations pour la robe.", + "example_sentence_english": "She took her measurements for the dress.", + "pos": "noun", + "word_frequency": 24925 + }, + { + "word": "mesa", + "article_with_word": "la mesa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mesa", + "example_sentence_native": "Les paysages de l'Arizona sont caractérisés par des mesas.", + "example_sentence_english": "The landscapes of Arizona are characterized by mesas.", + "pos": "noun", + "word_frequency": 24926 + }, + { + "word": "moite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damp;clammy", + "example_sentence_native": "L'air était chaud et moite avant l'orage.", + "example_sentence_english": "The air was hot and damp before the storm.", + "pos": "adjective", + "word_frequency": 24927 + }, + { + "word": "mondialiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globalist", + "example_sentence_native": "Le débat portait sur les idées mondialistes.", + "example_sentence_english": "The debate was about globalist ideas.", + "pos": "adjective", + "word_frequency": 24928 + }, + { + "word": "musc", + "article_with_word": "le musc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musk", + "example_sentence_native": "Ce parfum a des notes de musc.", + "example_sentence_english": "This perfume has notes of musk.", + "pos": "noun", + "word_frequency": 24933 + }, + { + "word": "museler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to muzzle;to silence", + "example_sentence_native": "Il a essayé de museler l'opposition.", + "example_sentence_english": "He tried to muzzle the opposition.", + "pos": "verb", + "word_frequency": 24934 + }, + { + "word": "narratrice", + "article_with_word": "la narratrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrator (female)", + "example_sentence_native": "La narratrice du roman nous guide à travers l'histoire.", + "example_sentence_english": "The female narrator of the novel guides us through the story.", + "pos": "noun", + "word_frequency": 24938 + }, + { + "word": "nutritionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nutritional", + "example_sentence_native": "Il est important de connaître la valeur nutritionnelle des aliments.", + "example_sentence_english": "It is important to know the nutritional value of foods.", + "pos": "adjective", + "word_frequency": 24942 + }, + { + "word": "octet", + "article_with_word": "l'octet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "octet;byte", + "example_sentence_native": "Un octet est composé de huit bits.", + "example_sentence_english": "An octet is composed of eight bits.", + "pos": "noun", + "word_frequency": 24944 + }, + { + "word": "ouvrable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working (day);openable", + "example_sentence_native": "Les bureaux sont ouverts du lundi au vendredi, jours ouvrables.", + "example_sentence_english": "The offices are open from Monday to Friday, working days.", + "pos": "adjective", + "word_frequency": 24947 + }, + { + "word": "panser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dress (a wound);to tend to", + "example_sentence_native": "Elle a pansé la blessure du chat.", + "example_sentence_english": "She dressed the cat's wound.", + "pos": "verb", + "word_frequency": 24949 + }, + { + "word": "perspicacité", + "article_with_word": "la perspicacité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perspicacity;insight", + "example_sentence_native": "Il a fait preuve d'une grande perspicacité dans son analyse.", + "example_sentence_english": "He showed great perspicacity in his analysis.", + "pos": "noun", + "word_frequency": 24954 + }, + { + "word": "perversité", + "article_with_word": "la perversité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perversity", + "example_sentence_native": "La perversité de ses actes était choquante.", + "example_sentence_english": "The perversity of his actions was shocking.", + "pos": "noun", + "word_frequency": 24955 + }, + { + "word": "phallus", + "article_with_word": "le phallus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "phallus", + "example_sentence_native": "Le phallus est un symbole de fertilité dans certaines cultures.", + "example_sentence_english": "The phallus is a symbol of fertility in some cultures.", + "pos": "noun", + "word_frequency": 24958 + }, + { + "word": "pilosité", + "article_with_word": "la pilosité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hairiness;body hair", + "example_sentence_native": "La pilosité varie beaucoup d'une personne à l'autre.", + "example_sentence_english": "Hairiness varies greatly from person to person.", + "pos": "noun", + "word_frequency": 24959 + }, + { + "word": "pipeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;small pipe", + "example_sentence_native": "Tout ce qu'il a dit, c'est du pipeau.", + "example_sentence_english": "Everything he said is nonsense.", + "pos": "noun", + "word_frequency": 24961 + }, + { + "word": "pourcent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "percent", + "example_sentence_native": "Vingt pour cent des étudiants ont réussi l'examen.", + "example_sentence_english": "Twenty percent of the students passed the exam.", + "pos": "numeral", + "word_frequency": 24964 + }, + { + "word": "presentation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "presentation", + "example_sentence_native": "J'ai préparé une présentation pour la réunion.", + "example_sentence_english": "I prepared a presentation for the meeting.", + "pos": "noun", + "word_frequency": 24965 + }, + { + "word": "prestance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presence;bearing", + "example_sentence_native": "Il a une prestance naturelle qui impressionne tout le monde.", + "example_sentence_english": "He has a natural presence that impresses everyone.", + "pos": "noun", + "word_frequency": 24966 + }, + { + "word": "proces", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trial;lawsuit", + "example_sentence_native": "Le procès a duré plusieurs semaines.", + "example_sentence_english": "The trial lasted several weeks.", + "pos": "noun", + "word_frequency": 24968 + }, + { + "word": "pyramidal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyramidal", + "example_sentence_native": "La structure de l'entreprise est pyramidale.", + "example_sentence_english": "The company's structure is pyramidal.", + "pos": "adjective", + "word_frequency": 24969 + }, + { + "word": "quantitative", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quantitative", + "example_sentence_native": "Nous avons besoin d'une analyse quantitative des données.", + "example_sentence_english": "We need a quantitative analysis of the data.", + "pos": "adjective", + "word_frequency": 24970 + }, + { + "word": "raccorder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to connect;to link", + "example_sentence_native": "Il faut raccorder ces deux tuyaux.", + "example_sentence_english": "These two pipes need to be connected.", + "pos": "verb", + "word_frequency": 24972 + }, + { + "word": "radial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radial", + "example_sentence_native": "Le mouvement radial est important pour cette machine.", + "example_sentence_english": "The radial movement is important for this machine.", + "pos": "adjective", + "word_frequency": 24973 + }, + { + "word": "rafler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sweep up;to snatch", + "example_sentence_native": "L'équipe a raflé toutes les médailles.", + "example_sentence_english": "The team swept up all the medals.", + "pos": "verb", + "word_frequency": 24974 + }, + { + "word": "rajeunissement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rejuvenation", + "example_sentence_native": "Les traitements de rajeunissement sont très populaires.", + "example_sentence_english": "Rejuvenation treatments are very popular.", + "pos": "noun", + "word_frequency": 24976 + }, + { + "word": "rancunier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentful;grudging", + "example_sentence_native": "Il est très rancunier et n'oublie jamais une insulte.", + "example_sentence_english": "He is very resentful and never forgets an insult.", + "pos": "adjective", + "word_frequency": 24978 + }, + { + "word": "rebonder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bounce back;to rebound", + "example_sentence_native": "Le ballon a rebondi contre le mur.", + "example_sentence_english": "The ball bounced back against the wall.", + "pos": "verb", + "word_frequency": 24980 + }, + { + "word": "rediriger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redirect", + "example_sentence_native": "Le site web vous redirige vers une autre page.", + "example_sentence_english": "The website redirects you to another page.", + "pos": "verb", + "word_frequency": 24981 + }, + { + "word": "resolution", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resolution", + "example_sentence_native": "J'ai pris la résolution de faire plus de sport.", + "example_sentence_english": "I made the resolution to do more sports.", + "pos": "noun", + "word_frequency": 24983 + }, + { + "word": "resume", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary;abstract", + "example_sentence_native": "Pouvez-vous me donner un bref résumé du livre ?", + "example_sentence_english": "Can you give me a brief summary of the book?", + "pos": "noun", + "word_frequency": 24984 + }, + { + "word": "revitalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revitalization", + "example_sentence_native": "Le projet vise la revitalisation du quartier.", + "example_sentence_english": "The project aims at the revitalization of the neighborhood.", + "pos": "noun", + "word_frequency": 24985 + }, + { + "word": "rivet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rivet", + "example_sentence_native": "Il a fixé la plaque avec des rivets.", + "example_sentence_english": "He fixed the plate with rivets.", + "pos": "noun", + "word_frequency": 24988 + }, + { + "word": "rune", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rune", + "example_sentence_native": "Les runes sont d'anciens caractères germaniques.", + "example_sentence_english": "Runes are ancient Germanic characters.", + "pos": "noun", + "word_frequency": 24990 + }, + { + "word": "résidant", + "article_with_word": "le/la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resident", + "example_sentence_native": "Chaque résidant doit respecter le règlement intérieur.", + "example_sentence_english": "Every resident must respect the internal regulations.", + "pos": "noun", + "word_frequency": 24992 + }, + { + "word": "sangle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strap;webbing", + "example_sentence_native": "Attachez votre ceinture avec la sangle.", + "example_sentence_english": "Fasten your seatbelt with the strap.", + "pos": "noun", + "word_frequency": 24994 + }, + { + "word": "scalpel", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scalpel", + "example_sentence_native": "Le chirurgien a utilisé un scalpel pour l'incision.", + "example_sentence_english": "The surgeon used a scalpel for the incision.", + "pos": "noun", + "word_frequency": 24997 + }, + { + "word": "sellette", + "article_with_word": "la sellette", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hot seat;stool (for interrogation)", + "example_sentence_native": "Il était sur la sellette après les accusations.", + "example_sentence_english": "He was on the hot seat after the accusations.", + "pos": "noun", + "word_frequency": 25000 + }, + { + "word": "shipping", + "article_with_word": "le shipping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipping", + "example_sentence_native": "Les frais de shipping sont inclus dans le prix.", + "example_sentence_english": "The shipping costs are included in the price.", + "pos": "noun", + "word_frequency": 25005 + }, + { + "word": "sitcom", + "article_with_word": "la sitcom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sitcom", + "example_sentence_native": "J'aime regarder des sitcoms le soir.", + "example_sentence_english": "I like watching sitcoms in the evening.", + "pos": "noun", + "word_frequency": 25006 + }, + { + "word": "sobriquet", + "article_with_word": "le sobriquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nickname;sobriquet", + "example_sentence_native": "Son sobriquet était \"Le Grand\".", + "example_sentence_english": "His nickname was \"The Great\".", + "pos": "noun", + "word_frequency": 25008 + }, + { + "word": "somnolence", + "article_with_word": "la somnolence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drowsiness;somnolence", + "example_sentence_native": "La somnolence peut être dangereuse au volant.", + "example_sentence_english": "Drowsiness can be dangerous while driving.", + "pos": "noun", + "word_frequency": 25009 + }, + { + "word": "sophisme", + "article_with_word": "le sophisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sophism;fallacy", + "example_sentence_native": "Son argument était basé sur un sophisme.", + "example_sentence_english": "His argument was based on a fallacy.", + "pos": "noun", + "word_frequency": 25010 + }, + { + "word": "soudage", + "article_with_word": "le soudage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welding", + "example_sentence_native": "Le soudage est une technique essentielle en métallurgie.", + "example_sentence_english": "Welding is an essential technique in metallurgy.", + "pos": "noun", + "word_frequency": 25012 + }, + { + "word": "storytelling", + "article_with_word": "le storytelling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "storytelling", + "example_sentence_native": "Le storytelling est devenu crucial en marketing.", + "example_sentence_english": "Storytelling has become crucial in marketing.", + "pos": "noun", + "word_frequency": 25015 + }, + { + "word": "suiveur", + "article_with_word": "le suiveur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "follower", + "example_sentence_native": "Il est un suiveur plutôt qu'un leader.", + "example_sentence_english": "He is a follower rather than a leader.", + "pos": "noun", + "word_frequency": 25017 + }, + { + "word": "sulfure", + "article_with_word": "le sulfure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfide", + "example_sentence_native": "Le sulfure d'hydrogène est un gaz toxique.", + "example_sentence_english": "Hydrogen sulfide is a toxic gas.", + "pos": "noun", + "word_frequency": 25018 + }, + { + "word": "superposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to superimpose;to overlap", + "example_sentence_native": "Il faut superposer les deux images.", + "example_sentence_english": "You need to superimpose the two images.", + "pos": "verb", + "word_frequency": 25020 + }, + { + "word": "sédimentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sedimentary", + "example_sentence_native": "La roche sédimentaire se forme par accumulation.", + "example_sentence_english": "Sedimentary rock forms by accumulation.", + "pos": "adjective", + "word_frequency": 25022 + }, + { + "word": "séquençage", + "article_with_word": "le séquençage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sequencing", + "example_sentence_native": "Le séquençage de l'ADN est une avancée majeure.", + "example_sentence_english": "DNA sequencing is a major advance.", + "pos": "noun", + "word_frequency": 25023 + }, + { + "word": "tdah", + "article_with_word": "le TDAH", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ADHD (Attention Deficit Hyperactivity Disorder)", + "example_sentence_native": "Le TDAH est un trouble neurodéveloppemental.", + "example_sentence_english": "ADHD is a neurodevelopmental disorder.", + "pos": "noun", + "word_frequency": 25025 + }, + { + "word": "terrasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to knock down;to overwhelm;to defeat", + "example_sentence_native": "La maladie l'a terrassé.", + "example_sentence_english": "The illness overwhelmed him.", + "pos": "verb", + "word_frequency": 25026 + }, + { + "word": "théorèmes", + "article_with_word": "les théorèmes", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theorems", + "example_sentence_native": "Les théorèmes de Pythagore sont fondamentaux.", + "example_sentence_english": "Pythagoras's theorems are fundamental.", + "pos": "nom", + "word_frequency": 25027 + }, + { + "word": "topics", + "article_with_word": "les topics", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "topics", + "example_sentence_native": "Ce forum contient de nombreux topics intéressants.", + "example_sentence_english": "This forum contains many interesting topics.", + "pos": "noun", + "word_frequency": 25031 + }, + { + "word": "transposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transposed", + "example_sentence_native": "La matrice transposée est utilisée en algèbre linéaire.", + "example_sentence_english": "The transposed matrix is used in linear algebra.", + "pos": "adjective", + "word_frequency": 25032 + }, + { + "word": "triumvirat", + "article_with_word": "le triumvirat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triumvirate", + "example_sentence_native": "Le triumvirat a dirigé Rome pendant un certain temps.", + "example_sentence_english": "The triumvirate ruled Rome for a period.", + "pos": "noun", + "word_frequency": 25033 + }, + { + "word": "troubadour", + "article_with_word": "le troubadour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troubadour", + "example_sentence_native": "Les troubadours chantaient des poèmes d'amour.", + "example_sentence_english": "Troubadours sang love poems.", + "pos": "noun", + "word_frequency": 25034 + }, + { + "word": "tréfond", + "article_with_word": "le tréfond", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depths;innermost being", + "example_sentence_native": "Il a exploré les tréfonds de son âme.", + "example_sentence_english": "He explored the depths of his soul.", + "pos": "noun", + "word_frequency": 25035 + }, + { + "word": "uicn", + "article_with_word": "l'UICN", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "IUCN (International Union for Conservation of Nature)", + "example_sentence_native": "L'UICN publie la Liste rouge des espèces menacées.", + "example_sentence_english": "The IUCN publishes the Red List of threatened species.", + "pos": "noun", + "word_frequency": 25039 + }, + { + "word": "verni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "varnished;polished", + "example_sentence_native": "La table est vernie et brillante.", + "example_sentence_english": "The table is varnished and shiny.", + "pos": "adjective", + "word_frequency": 25041 + }, + { + "word": "violoncelliste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cellist", + "example_sentence_native": "Le violoncelliste a joué un morceau magnifique.", + "example_sentence_english": "The cellist played a magnificent piece.", + "pos": "noun", + "word_frequency": 25042 + }, + { + "word": "volontariste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voluntarist", + "example_sentence_native": "C'est un volontariste qui croit en la force de la volonté.", + "example_sentence_english": "He is a voluntarist who believes in the power of will.", + "pos": "noun", + "word_frequency": 25044 + }, + { + "word": "végétalien", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegan", + "example_sentence_native": "Mon ami est végétalien et ne mange aucun produit animal.", + "example_sentence_english": "My friend is vegan and eats no animal products.", + "pos": "noun", + "word_frequency": 25045 + }, + { + "word": "wax", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wax (fabric);wax", + "example_sentence_native": "Elle portait une robe en tissu wax coloré.", + "example_sentence_english": "She wore a colorful wax fabric dress.", + "pos": "noun", + "word_frequency": 25046 + }, + { + "word": "échangé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchanged;swapped", + "example_sentence_native": "Les cadeaux ont été échangés lors de la fête.", + "example_sentence_english": "The gifts were exchanged at the party.", + "pos": "adjective", + "word_frequency": 25050 + }, + { + "word": "éjection", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ejection", + "example_sentence_native": "L'éjection du pilote s'est faite en urgence.", + "example_sentence_english": "The pilot's ejection happened in an emergency.", + "pos": "noun", + "word_frequency": 25051 + }, + { + "word": "émulsion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emulsion", + "example_sentence_native": "L'émulsion est un mélange de deux liquides non miscibles.", + "example_sentence_english": "Emulsion is a mixture of two immiscible liquids.", + "pos": "noun", + "word_frequency": 25052 + }, + { + "word": "épidémique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epidemic", + "example_sentence_native": "La situation est devenue épidémique dans la région.", + "example_sentence_english": "The situation became epidemic in the region.", + "pos": "adjective", + "word_frequency": 25053 + }, + { + "word": "éprouvé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tested;proven;tried and true", + "example_sentence_native": "C'est une méthode éprouvée pour apprendre une langue.", + "example_sentence_english": "It's a proven method for learning a language.", + "pos": "adjective", + "word_frequency": 25054 + }, + { + "word": "équilibrage", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balancing;calibration", + "example_sentence_native": "L'équilibrage des pneus est essentiel pour la sécurité.", + "example_sentence_english": "Tire balancing is essential for safety.", + "pos": "noun", + "word_frequency": 25055 + }, + { + "word": "évanoui", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fainted;unconscious", + "example_sentence_native": "Elle s'est sentie mal et est tombée évanouie.", + "example_sentence_english": "She felt unwell and fell unconscious.", + "pos": "adjective", + "word_frequency": 25056 + }, + { + "word": "évaporer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to evaporate", + "example_sentence_native": "L'eau commence à s'évaporer sous l'effet de la chaleur.", + "example_sentence_english": "The water begins to evaporate under the effect of heat.", + "pos": "verb", + "word_frequency": 25057 + }, + { + "word": "aboutissant", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outcome;result", + "example_sentence_native": "Il faut comprendre les tenants et les aboutissants de cette affaire.", + "example_sentence_english": "One must understand the ins and outs of this matter.", + "pos": "noun", + "word_frequency": 25060 + }, + { + "word": "acculé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornered;driven to the wall", + "example_sentence_native": "Le suspect s'est senti acculé par les questions des policiers.", + "example_sentence_english": "The suspect felt cornered by the police's questions.", + "pos": "adjective", + "word_frequency": 25062 + }, + { + "word": "actualisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "updated;current", + "example_sentence_native": "Les données ont été actualisées ce matin.", + "example_sentence_english": "The data was updated this morning.", + "pos": "adjective", + "word_frequency": 25063 + }, + { + "word": "acupuncture", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acupuncture", + "example_sentence_native": "L'acupuncture est une médecine traditionnelle chinoise.", + "example_sentence_english": "Acupuncture is a traditional Chinese medicine.", + "pos": "noun", + "word_frequency": 25064 + }, + { + "word": "additionner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to add (up)", + "example_sentence_native": "Il faut additionner tous les chiffres pour obtenir le total.", + "example_sentence_english": "You need to add up all the numbers to get the total.", + "pos": "verb", + "word_frequency": 25065 + }, + { + "word": "agrémenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embellished;enhanced;adorned", + "example_sentence_native": "Le jardin était agrémenté de belles statues.", + "example_sentence_english": "The garden was embellished with beautiful statues.", + "pos": "adjective", + "word_frequency": 25066 + }, + { + "word": "amputé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amputated", + "example_sentence_native": "Le patient a eu un membre amputé après l'accident.", + "example_sentence_english": "The patient had a limb amputated after the accident.", + "pos": "adjective", + "word_frequency": 25071 + }, + { + "word": "antéchrist", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Antichrist", + "example_sentence_native": "Dans certaines prophéties, l'Antéchrist est une figure maléfique.", + "example_sentence_english": "In some prophecies, the Antichrist is an evil figure.", + "pos": "noun", + "word_frequency": 25073 + }, + { + "word": "aplati", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flattened;squashed", + "example_sentence_native": "Le carton était tout aplati après être tombé.", + "example_sentence_english": "The cardboard was all flattened after falling.", + "pos": "adjective", + "word_frequency": 25075 + }, + { + "word": "assailli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assailed;attacked;besieged", + "example_sentence_native": "Il s'est senti assailli par les doutes.", + "example_sentence_english": "He felt assailed by doubts.", + "pos": "adjective", + "word_frequency": 25079 + }, + { + "word": "asser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assert;to affirm", + "example_sentence_native": "Il a dû asser son innocence devant le tribunal.", + "example_sentence_english": "He had to assert his innocence before the court.", + "pos": "verb", + "word_frequency": 25080 + }, + { + "word": "asservir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enslave;to subjugate", + "example_sentence_native": "Le dictateur cherchait à asservir son peuple.", + "example_sentence_english": "The dictator sought to enslave his people.", + "pos": "verb", + "word_frequency": 25081 + }, + { + "word": "assidûment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assiduously;diligently", + "example_sentence_native": "Elle travaille assidûment pour atteindre ses objectifs.", + "example_sentence_english": "She works diligently to achieve her goals.", + "pos": "adverb", + "word_frequency": 25082 + }, + { + "word": "assyrien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Assyrian", + "example_sentence_native": "L'art assyrien est riche en détails.", + "example_sentence_english": "Assyrian art is rich in detail.", + "pos": "adjective", + "word_frequency": 25083 + }, + { + "word": "authentiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authentically", + "example_sentence_native": "Il a réagi authentiquement à la nouvelle.", + "example_sentence_english": "He reacted authentically to the news.", + "pos": "adverb", + "word_frequency": 25085 + }, + { + "word": "autodérision", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-deprecation", + "example_sentence_native": "Son sens de l'autodérision le rend très attachant.", + "example_sentence_english": "His sense of self-deprecation makes him very endearing.", + "pos": "noun", + "word_frequency": 25086 + }, + { + "word": "avantageusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advantageously;favorably", + "example_sentence_native": "Il a su utiliser la situation avantageusement.", + "example_sentence_english": "He was able to use the situation advantageously.", + "pos": "adverb", + "word_frequency": 25087 + }, + { + "word": "basalte", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basalt", + "example_sentence_native": "Le basalte est une roche volcanique.", + "example_sentence_english": "Basalt is a volcanic rock.", + "pos": "noun", + "word_frequency": 25090 + }, + { + "word": "bidet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bidet", + "example_sentence_native": "Le bidet est souvent présent dans les salles de bain françaises.", + "example_sentence_english": "The bidet is often present in French bathrooms.", + "pos": "noun", + "word_frequency": 25095 + }, + { + "word": "bouseux", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bumpkin;yokel (derogatory)", + "example_sentence_native": "Il a traité les habitants de la campagne de bouseux.", + "example_sentence_english": "He called the country folk bumpkins.", + "pos": "noun", + "word_frequency": 25103 + }, + { + "word": "brandy", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brandy", + "example_sentence_native": "Il a commandé un verre de brandy après le dîner.", + "example_sentence_english": "He ordered a glass of brandy after dinner.", + "pos": "noun", + "word_frequency": 25107 + }, + { + "word": "butoir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buffer;stop;bumper", + "example_sentence_native": "Le train a heurté le butoir en bout de voie.", + "example_sentence_english": "The train hit the buffer at the end of the track.", + "pos": "noun", + "word_frequency": 25115 + }, + { + "word": "béarnais", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bearnese (from Béarn region)", + "example_sentence_native": "Le poulet béarnais est une spécialité locale.", + "example_sentence_english": "Bearnese chicken is a local specialty.", + "pos": "adjective", + "word_frequency": 25117 + }, + { + "word": "cadmium", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cadmium", + "example_sentence_native": "Le cadmium est un métal lourd toxique.", + "example_sentence_english": "Cadmium is a toxic heavy metal.", + "pos": "noun", + "word_frequency": 25119 + }, + { + "word": "canin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canine", + "example_sentence_native": "Le comportement canin peut être très varié.", + "example_sentence_english": "Canine behavior can be very varied.", + "pos": "adjective", + "word_frequency": 25121 + }, + { + "word": "cantatrice", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opera singer (female)", + "example_sentence_native": "La cantatrice a interprété un air magnifique.", + "example_sentence_english": "The opera singer performed a magnificent aria.", + "pos": "noun", + "word_frequency": 25122 + }, + { + "word": "carotide", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carotid artery", + "example_sentence_native": "Le médecin a vérifié le pouls au niveau de l'artère carotide.", + "example_sentence_english": "The doctor checked the pulse at the carotid artery.", + "pos": "noun", + "word_frequency": 25124 + }, + { + "word": "carthaginois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Carthaginian", + "example_sentence_native": "Les guerres puniques opposaient les Romains aux Carthaginois.", + "example_sentence_english": "The Punic Wars pitted the Romans against the Carthaginians.", + "pos": "adjective", + "word_frequency": 25125 + }, + { + "word": "catimini", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stealthily;on the sly", + "example_sentence_native": "Il est parti en catimini pour ne pas être vu.", + "example_sentence_english": "He left stealthily so as not to be seen.", + "pos": "adverb", + "word_frequency": 25127 + }, + { + "word": "catégorisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "categorization", + "example_sentence_native": "La catégorisation des données est essentielle pour l'analyse.", + "example_sentence_english": "Data categorization is essential for analysis.", + "pos": "noun", + "word_frequency": 25128 + }, + { + "word": "cautionnement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guarantee;bail;security", + "example_sentence_native": "Le cautionnement est souvent exigé pour un prêt immobilier.", + "example_sentence_english": "A guarantee is often required for a mortgage.", + "pos": "noun", + "word_frequency": 25130 + }, + { + "word": "centaure", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centaur", + "example_sentence_native": "Dans la mythologie grecque, le centaure est une créature mi-homme, mi-cheval.", + "example_sentence_english": "In Greek mythology, the centaur is a creature half-man, half-horse.", + "pos": "noun", + "word_frequency": 25132 + }, + { + "word": "chatouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tickle", + "example_sentence_native": "Les plumes me chatouillent le nez.", + "example_sentence_english": "The feathers tickle my nose.", + "pos": "verb", + "word_frequency": 25133 + }, + { + "word": "climatisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "air-conditioned", + "example_sentence_native": "La chambre d'hôtel est climatisée.", + "example_sentence_english": "The hotel room is air-conditioned.", + "pos": "adjective", + "word_frequency": 25139 + }, + { + "word": "coentreprise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joint venture", + "example_sentence_native": "Les deux entreprises ont formé une coentreprise pour le projet.", + "example_sentence_english": "The two companies formed a joint venture for the project.", + "pos": "noun", + "word_frequency": 25141 + }, + { + "word": "coi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quiet;still;dumbfounded", + "example_sentence_native": "Il est resté coi devant cette révélation.", + "example_sentence_english": "He remained dumbfounded by this revelation.", + "pos": "adjective", + "word_frequency": 25142 + }, + { + "word": "colibri", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hummingbird", + "example_sentence_native": "Le colibri est le plus petit oiseau du monde.", + "example_sentence_english": "The hummingbird is the smallest bird in the world.", + "pos": "noun", + "word_frequency": 25143 + }, + { + "word": "complimenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compliment", + "example_sentence_native": "Il aime complimenter les gens sur leur travail.", + "example_sentence_english": "He likes to compliment people on their work.", + "pos": "verb", + "word_frequency": 25144 + }, + { + "word": "comptine", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nursery rhyme", + "example_sentence_native": "Les enfants ont chanté une comptine.", + "example_sentence_english": "The children sang a nursery rhyme.", + "pos": "noun", + "word_frequency": 25145 + }, + { + "word": "concave", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concave", + "example_sentence_native": "Le miroir est concave, ce qui déforme l'image.", + "example_sentence_english": "The mirror is concave, which distorts the image.", + "pos": "adjective", + "word_frequency": 25146 + }, + { + "word": "confessionnal", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confessional", + "example_sentence_native": "Le prêtre attendait dans le confessionnal.", + "example_sentence_english": "The priest was waiting in the confessional.", + "pos": "noun", + "word_frequency": 25147 + }, + { + "word": "conspirateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspirator", + "example_sentence_native": "Les conspirateurs ont été arrêtés avant de pouvoir agir.", + "example_sentence_english": "The conspirators were arrested before they could act.", + "pos": "noun", + "word_frequency": 25149 + }, + { + "word": "contrevenir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to contravene;to violate", + "example_sentence_native": "Il est interdit de contrevenir aux règles de sécurité.", + "example_sentence_english": "It is forbidden to contravene safety rules.", + "pos": "verb", + "word_frequency": 25151 + }, + { + "word": "cordée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rope team (climbing);group (figurative)", + "example_sentence_native": "Les alpinistes ont formé une cordée pour gravir la montagne.", + "example_sentence_english": "The mountaineers formed a rope team to climb the mountain.", + "pos": "noun", + "word_frequency": 25152 + }, + { + "word": "corsé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full-bodied;strong (coffee);spicy (dish);challenging (task)", + "example_sentence_native": "J'aime le café bien corsé le matin.", + "example_sentence_english": "I like strong coffee in the morning.", + "pos": "adjective", + "word_frequency": 25153 + }, + { + "word": "courtisan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "courtier", + "example_sentence_native": "Le roi était entouré de ses courtisans.", + "example_sentence_english": "The king was surrounded by his courtiers.", + "pos": "noun", + "word_frequency": 25156 + }, + { + "word": "cumin", + "article_with_word": "le cumin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cumin", + "example_sentence_native": "J'ai ajouté une pincée de cumin à la sauce.", + "example_sentence_english": "I added a pinch of cumin to the sauce.", + "pos": "noun", + "word_frequency": 25160 + }, + { + "word": "cyclope", + "article_with_word": "le cyclope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyclops", + "example_sentence_native": "Le cyclope Polyphème est un personnage célèbre de l'Odyssée.", + "example_sentence_english": "The cyclops Polyphemus is a famous character from the Odyssey.", + "pos": "noun", + "word_frequency": 25161 + }, + { + "word": "diadème", + "article_with_word": "un diadème", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diadem;tiara", + "example_sentence_native": "La princesse portait un magnifique diadème.", + "example_sentence_english": "The princess wore a magnificent diadem.", + "pos": "noun", + "word_frequency": 25168 + }, + { + "word": "doigté", + "article_with_word": "le doigté", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fingering (music);tact;finesse", + "example_sentence_native": "Ce pianiste a un doigté incroyable.", + "example_sentence_english": "This pianist has incredible fingering.", + "pos": "noun", + "word_frequency": 25169 + }, + { + "word": "domina", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dominated", + "example_sentence_native": "L'équipe locale domina le match du début à la fin.", + "example_sentence_english": "The local team dominated the match from start to finish.", + "pos": "verb", + "word_frequency": 25171 + }, + { + "word": "déchirement", + "article_with_word": "le déchirement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tearing;ripping;heartbreak", + "example_sentence_native": "Le déchirement de la lettre fut rapide.", + "example_sentence_english": "The tearing of the letter was quick.", + "pos": "noun", + "word_frequency": 25175 + }, + { + "word": "décoloration", + "article_with_word": "la décoloration", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discoloration;bleaching", + "example_sentence_native": "Elle a opté pour une décoloration de ses cheveux.", + "example_sentence_english": "She opted for a bleaching of her hair.", + "pos": "noun", + "word_frequency": 25176 + }, + { + "word": "déconnecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disconnected;offline", + "example_sentence_native": "Mon ordinateur est déconnecté d'Internet.", + "example_sentence_english": "My computer is disconnected from the Internet.", + "pos": "adjective", + "word_frequency": 25177 + }, + { + "word": "déficient", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficient;defective", + "example_sentence_native": "Le système est déficient et doit être réparé.", + "example_sentence_english": "The system is deficient and needs to be repaired.", + "pos": "adjective", + "word_frequency": 25178 + }, + { + "word": "démonté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disassembled;taken apart;upset;disconcerted", + "example_sentence_native": "Le meuble est livré démonté.", + "example_sentence_english": "The furniture is delivered disassembled.", + "pos": "adjective", + "word_frequency": 25179 + }, + { + "word": "déprimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressed;low", + "example_sentence_native": "Il se sentait déprimé après la mauvaise nouvelle.", + "example_sentence_english": "He felt depressed after the bad news.", + "pos": "adjective", + "word_frequency": 25180 + }, + { + "word": "désinvolte", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "casual;nonchalant;offhand", + "example_sentence_native": "Son attitude désinvolte m'a surpris.", + "example_sentence_english": "His nonchalant attitude surprised me.", + "pos": "adjective", + "word_frequency": 25181 + }, + { + "word": "embarqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "onboard;embedded;embarked", + "example_sentence_native": "Le système embarqué contrôle le moteur.", + "example_sentence_english": "The embedded system controls the engine.", + "pos": "adjective", + "word_frequency": 25183 + }, + { + "word": "empiéter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to encroach;to infringe", + "example_sentence_native": "Il ne faut pas empiéter sur les droits des autres.", + "example_sentence_english": "One must not encroach on the rights of others.", + "pos": "verb", + "word_frequency": 25185 + }, + { + "word": "encolure", + "article_with_word": "l'encolure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neckline (clothing);neck (animal)", + "example_sentence_native": "La robe avait une encolure élégante.", + "example_sentence_english": "The dress had an elegant neckline.", + "pos": "noun", + "word_frequency": 25186 + }, + { + "word": "enrichissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enriching;rewarding", + "example_sentence_native": "Ce voyage a été une expérience très enrichissante.", + "example_sentence_english": "This trip was a very enriching experience.", + "pos": "adjective", + "word_frequency": 25188 + }, + { + "word": "entasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pile up;to stack;to cram", + "example_sentence_native": "Ils ont entassé tous les livres dans un coin.", + "example_sentence_english": "They piled all the books in a corner.", + "pos": "verb", + "word_frequency": 25189 + }, + { + "word": "essoufflement", + "article_with_word": "l'essoufflement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortness of breath;breathlessness", + "example_sentence_native": "Après la course, il ressentait un essoufflement.", + "example_sentence_english": "After the run, he felt shortness of breath.", + "pos": "noun", + "word_frequency": 25194 + }, + { + "word": "esthétisme", + "article_with_word": "l'esthétisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aestheticism", + "example_sentence_native": "Il accorde une grande importance à l'esthétisme de ses créations.", + "example_sentence_english": "He attaches great importance to the aestheticism of his creations.", + "pos": "noun", + "word_frequency": 25195 + }, + { + "word": "excentricité", + "article_with_word": "l'excentricité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eccentricity", + "example_sentence_native": "Son excentricité la rendait unique.", + "example_sentence_english": "Her eccentricity made her unique.", + "pos": "noun", + "word_frequency": 25197 + }, + { + "word": "fachosphère", + "article_with_word": "la fachosphère", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "far-right sphere (online)", + "example_sentence_native": "La fachosphère est un terme désignant les sphères d'extrême droite sur internet.", + "example_sentence_english": "The 'fachosphère' is a term designating far-right spheres on the internet.", + "pos": "noun", + "word_frequency": 25198 + }, + { + "word": "filaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wired", + "example_sentence_native": "Nous avons une connexion internet filaire dans le bureau.", + "example_sentence_english": "We have a wired internet connection in the office.", + "pos": "adjective", + "word_frequency": 25202 + }, + { + "word": "flasque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flabby;limp", + "example_sentence_native": "Après l'entraînement, ses muscles étaient un peu flasques.", + "example_sentence_english": "After the training, his muscles were a bit flabby.", + "pos": "adjective", + "word_frequency": 25204 + }, + { + "word": "foisonnement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proliferation;abundance", + "example_sentence_native": "Le foisonnement des idées nouvelles est stimulant.", + "example_sentence_english": "The proliferation of new ideas is stimulating.", + "pos": "noun", + "word_frequency": 25205 + }, + { + "word": "foulon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "fuller (cloth worker)", + "example_sentence_native": "Le foulon utilisait de l'eau et de la terre pour traiter la laine.", + "example_sentence_english": "The fuller used water and earth to treat the wool.", + "pos": "noun", + "word_frequency": 25206 + }, + { + "word": "fraicheur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freshness;coolness", + "example_sentence_native": "J'apprécie la fraîcheur de l'air en montagne.", + "example_sentence_english": "I appreciate the coolness of the air in the mountains.", + "pos": "noun", + "word_frequency": 25207 + }, + { + "word": "féru", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "keen;passionate (about)", + "example_sentence_native": "Il est féru de nouvelles technologies.", + "example_sentence_english": "He is keen on new technologies.", + "pos": "adjective", + "word_frequency": 25210 + }, + { + "word": "glacis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glacis (slope;coating)", + "example_sentence_native": "Le peintre a appliqué un glacis pour donner de la profondeur à la couleur.", + "example_sentence_english": "The painter applied a glacis to give depth to the color.", + "pos": "noun", + "word_frequency": 25216 + }, + { + "word": "godet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cup;bucket (of an excavator)", + "example_sentence_native": "Le godet de la pelleteuse était rempli de sable.", + "example_sentence_english": "The excavator's bucket was full of sand.", + "pos": "noun", + "word_frequency": 25217 + }, + { + "word": "grimpant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "climbing (e.g.;plant)", + "example_sentence_native": "Nous avons planté des rosiers grimpants le long du mur.", + "example_sentence_english": "We planted climbing rose bushes along the wall.", + "pos": "adjective", + "word_frequency": 25219 + }, + { + "word": "harmonieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmoniously", + "example_sentence_native": "Les couleurs se marient harmonieusement dans ce tableau.", + "example_sentence_english": "The colors blend harmoniously in this painting.", + "pos": "adverb", + "word_frequency": 25223 + }, + { + "word": "hippocampe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seahorse;hippocampus", + "example_sentence_native": "L'hippocampe est une petite créature marine fascinante.", + "example_sentence_english": "The seahorse is a fascinating small marine creature.", + "pos": "noun", + "word_frequency": 25226 + }, + { + "word": "hérité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inherited", + "example_sentence_native": "C'est un trait de caractère hérité de sa mère.", + "example_sentence_english": "It's a character trait inherited from his mother.", + "pos": "adjective", + "word_frequency": 25230 + }, + { + "word": "impacté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impacted;affected", + "example_sentence_native": "La décision a fortement impacté l'économie locale.", + "example_sentence_english": "The decision heavily impacted the local economy.", + "pos": "adjective", + "word_frequency": 25232 + }, + { + "word": "incrédule", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incredulous", + "example_sentence_native": "Il a écouté son histoire avec un air incrédule.", + "example_sentence_english": "He listened to her story with an incredulous look.", + "pos": "adjective", + "word_frequency": 25233 + }, + { + "word": "indéfendable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indefensible", + "example_sentence_native": "Sa position était moralement indéfendable.", + "example_sentence_english": "His position was morally indefensible.", + "pos": "adjective", + "word_frequency": 25234 + }, + { + "word": "instructive", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instructive;informative", + "example_sentence_native": "Cette expérience a été très instructive pour moi.", + "example_sentence_english": "This experience was very instructive for me.", + "pos": "adjective", + "word_frequency": 25235 + }, + { + "word": "intrigant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intriguing", + "example_sentence_native": "C'est une histoire vraiment intrigante et mystérieuse.", + "example_sentence_english": "It's a truly intriguing and mysterious story.", + "pos": "adjective", + "word_frequency": 25236 + }, + { + "word": "investi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invested;committed", + "example_sentence_native": "Il est très investi dans son rôle de bénévole.", + "example_sentence_english": "He is very committed to his volunteer role.", + "pos": "adjective", + "word_frequency": 25237 + }, + { + "word": "inégalitaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequal;inequitable", + "example_sentence_native": "Le système de distribution des richesses est souvent inégalitaire.", + "example_sentence_english": "The system of wealth distribution is often unequal.", + "pos": "adjective", + "word_frequency": 25238 + }, + { + "word": "irréalisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unfeasible;impossible to achieve", + "example_sentence_native": "Ce projet semble irréalisable avec les ressources actuelles.", + "example_sentence_english": "This project seems unfeasible with current resources.", + "pos": "adjective", + "word_frequency": 25239 + }, + { + "word": "jazzy", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jazzy", + "example_sentence_native": "Elle portait une robe très jazzy pour la soirée.", + "example_sentence_english": "She wore a very jazzy dress for the party.", + "pos": "adjective", + "word_frequency": 25243 + }, + { + "word": "kinésithérapeute", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physiotherapist", + "example_sentence_native": "Le kinésithérapeute m'a aidé à récupérer après ma blessure.", + "example_sentence_english": "The physiotherapist helped me recover after my injury.", + "pos": "noun", + "word_frequency": 25250 + }, + { + "word": "limon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silt", + "example_sentence_native": "Le limon est un type de sol très fertile.", + "example_sentence_english": "Silt is a very fertile type of soil.", + "pos": "noun", + "word_frequency": 25255 + }, + { + "word": "liquidé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidated", + "example_sentence_native": "L'entreprise a été liquidée après sa faillite.", + "example_sentence_english": "The company was liquidated after its bankruptcy.", + "pos": "adjective", + "word_frequency": 25256 + }, + { + "word": "litanie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "litany", + "example_sentence_native": "Il a récité une litanie de plaintes.", + "example_sentence_english": "He recited a litany of complaints.", + "pos": "noun", + "word_frequency": 25257 + }, + { + "word": "literie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bedding", + "example_sentence_native": "Nous avons acheté de la nouvelle literie pour la chambre d'amis.", + "example_sentence_english": "We bought new bedding for the guest room.", + "pos": "noun", + "word_frequency": 25258 + }, + { + "word": "lovely", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lovely", + "example_sentence_native": "C'est une idée vraiment lovely!", + "example_sentence_english": "That's a really lovely idea!", + "pos": "adjective", + "word_frequency": 25259 + }, + { + "word": "lymphatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lymphatic", + "example_sentence_native": "Le système lymphatique joue un rôle clé dans l'immunité.", + "example_sentence_english": "The lymphatic system plays a key role in immunity.", + "pos": "adjective", + "word_frequency": 25260 + }, + { + "word": "lymphome", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lymphoma", + "example_sentence_native": "Le lymphome est un type de cancer du système lymphatique.", + "example_sentence_english": "Lymphoma is a type of cancer of the lymphatic system.", + "pos": "noun", + "word_frequency": 25261 + }, + { + "word": "lyncher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to lynch", + "example_sentence_native": "La foule menaçait de lyncher le suspect.", + "example_sentence_english": "The crowd threatened to lynch the suspect.", + "pos": "verb", + "word_frequency": 25262 + }, + { + "word": "légalisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legalized", + "example_sentence_native": "Le cannabis a été légalisé dans certains pays.", + "example_sentence_english": "Cannabis has been legalized in some countries.", + "pos": "adjective", + "word_frequency": 25264 + }, + { + "word": "madras", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "madras (fabric)", + "example_sentence_native": "Elle portait une jupe en madras coloré.", + "example_sentence_english": "She wore a colorful madras skirt.", + "pos": "noun", + "word_frequency": 25266 + }, + { + "word": "magnéto", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tape recorder", + "example_sentence_native": "J'ai enregistré l'émission sur mon magnéto.", + "example_sentence_english": "I recorded the show on my tape recorder.", + "pos": "noun", + "word_frequency": 25267 + }, + { + "word": "manichéisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "Manichaeism", + "example_sentence_native": "Son analyse souffre d'un certain manichéisme.", + "example_sentence_english": "His analysis suffers from a certain Manichaeism.", + "pos": "noun", + "word_frequency": 25269 + }, + { + "word": "material", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "material", + "example_sentence_native": "Elle a un style très material.", + "example_sentence_english": "She has a very material style.", + "pos": "adjective", + "word_frequency": 25272 + }, + { + "word": "mixé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed", + "example_sentence_native": "Le DJ a mixé plusieurs morceaux pour créer un set unique.", + "example_sentence_english": "The DJ mixed several tracks to create a unique set.", + "pos": "adjective", + "word_frequency": 25276 + }, + { + "word": "muguet", + "article_with_word": "le muguet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lily of the valley", + "example_sentence_native": "Le muguet est une fleur qui porte bonheur.", + "example_sentence_english": "Lily of the valley is a flower that brings good luck.", + "pos": "noun", + "word_frequency": 25280 + }, + { + "word": "muscade", + "article_with_word": "la muscade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutmeg", + "example_sentence_native": "J'ai râpé un peu de muscade dans la béchamel.", + "example_sentence_english": "I grated a little nutmeg into the béchamel sauce.", + "pos": "noun", + "word_frequency": 25281 + }, + { + "word": "mutualiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pool;to share resources", + "example_sentence_native": "Les entreprises ont décidé de mutualiser leurs ressources.", + "example_sentence_english": "The companies decided to pool their resources.", + "pos": "verb", + "word_frequency": 25282 + }, + { + "word": "narguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to taunt;to mock", + "example_sentence_native": "Il aime narguer ses adversaires.", + "example_sentence_english": "He likes to taunt his opponents.", + "pos": "verb", + "word_frequency": 25284 + }, + { + "word": "normative", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "normative", + "example_sentence_native": "Cette approche est trop normative.", + "example_sentence_english": "This approach is too normative.", + "pos": "adjective", + "word_frequency": 25286 + }, + { + "word": "obsessionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsessive", + "example_sentence_native": "Il a un comportement obsessionnel.", + "example_sentence_english": "He has obsessive behavior.", + "pos": "adjective", + "word_frequency": 25289 + }, + { + "word": "omerta", + "article_with_word": "l'omerta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omerta;code of silence", + "example_sentence_native": "L'omerta règne dans ce milieu.", + "example_sentence_english": "The code of silence reigns in this environment.", + "pos": "noun", + "word_frequency": 25290 + }, + { + "word": "oriole", + "article_with_word": "l'oriole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oriole", + "example_sentence_native": "L'oriole est un bel oiseau migrateur.", + "example_sentence_english": "The oriole is a beautiful migratory bird.", + "pos": "noun", + "word_frequency": 25292 + }, + { + "word": "ouate", + "article_with_word": "l'ouate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wadding;cotton wool", + "example_sentence_native": "Ce manteau est rembourré d'ouate.", + "example_sentence_english": "This coat is padded with wadding.", + "pos": "noun", + "word_frequency": 25293 + }, + { + "word": "oud", + "article_with_word": "le oud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oud (lute-like instrument)", + "example_sentence_native": "Il joue du oud avec beaucoup de talent.", + "example_sentence_english": "He plays the oud with great talent.", + "pos": "noun", + "word_frequency": 25294 + }, + { + "word": "ovin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ovine;sheep-related", + "example_sentence_native": "L'élevage ovin est important dans cette région.", + "example_sentence_english": "Sheep farming is important in this region.", + "pos": "adjective", + "word_frequency": 25295 + }, + { + "word": "papale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papal", + "example_sentence_native": "La bénédiction papale a eu lieu hier.", + "example_sentence_english": "The papal blessing took place yesterday.", + "pos": "adjective", + "word_frequency": 25297 + }, + { + "word": "paraphrase", + "article_with_word": "la paraphrase", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paraphrase", + "example_sentence_native": "Il a donné une paraphrase du texte original.", + "example_sentence_english": "He gave a paraphrase of the original text.", + "pos": "noun", + "word_frequency": 25298 + }, + { + "word": "parieur", + "article_with_word": "le parieur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bettor;gambler", + "example_sentence_native": "Le parieur a gagné une grosse somme.", + "example_sentence_english": "The bettor won a large sum.", + "pos": "noun", + "word_frequency": 25299 + }, + { + "word": "peinard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quiet;peaceful;easygoing (informal)", + "example_sentence_native": "Il vit une vie peinarde à la campagne.", + "example_sentence_english": "He lives a quiet life in the countryside.", + "pos": "adjective", + "word_frequency": 25302 + }, + { + "word": "pesto", + "article_with_word": "le pesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pesto", + "example_sentence_native": "J'ai préparé des pâtes au pesto.", + "example_sentence_english": "I made pasta with pesto.", + "pos": "noun", + "word_frequency": 25303 + }, + { + "word": "peuplier", + "article_with_word": "le peuplier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poplar (tree)", + "example_sentence_native": "Les peupliers bordent la rivière.", + "example_sentence_english": "Poplar trees line the river.", + "pos": "noun", + "word_frequency": 25304 + }, + { + "word": "pillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plundered;looted", + "example_sentence_native": "Le trésor a été pillé.", + "example_sentence_english": "The treasure was plundered.", + "pos": "adjective", + "word_frequency": 25309 + }, + { + "word": "plaint", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plaintive;lamenting", + "example_sentence_native": "Sa voix était plaintive.", + "example_sentence_english": "Her voice was plaintive.", + "pos": "adjective", + "word_frequency": 25311 + }, + { + "word": "planteur", + "article_with_word": "le planteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planter;grower", + "example_sentence_native": "Le planteur de café travaille dur.", + "example_sentence_english": "The coffee planter works hard.", + "pos": "noun", + "word_frequency": 25312 + }, + { + "word": "politisation", + "article_with_word": "la politisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "politicization", + "example_sentence_native": "La politisation de la question est inévitable.", + "example_sentence_english": "The politicization of the issue is inevitable.", + "pos": "noun", + "word_frequency": 25314 + }, + { + "word": "praticable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practicable;passable", + "example_sentence_native": "Le chemin n'est pas praticable en hiver.", + "example_sentence_english": "The path is not passable in winter.", + "pos": "adjective", + "word_frequency": 25315 + }, + { + "word": "prudhomme", + "article_with_word": "le prud'homme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labor court judge", + "example_sentence_native": "Il a porté son affaire devant les prud'hommes.", + "example_sentence_english": "He took his case to the labor court.", + "pos": "noun", + "word_frequency": 25316 + }, + { + "word": "préemption", + "article_with_word": "la préemption", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pre-emption;right of first refusal", + "example_sentence_native": "La ville a exercé son droit de préemption.", + "example_sentence_english": "The city exercised its right of pre-emption.", + "pos": "noun", + "word_frequency": 25317 + }, + { + "word": "préfète", + "article_with_word": "la préfète", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prefect (female)", + "example_sentence_native": "La préfète a annoncé de nouvelles mesures.", + "example_sentence_english": "The prefect announced new measures.", + "pos": "noun", + "word_frequency": 25318 + }, + { + "word": "pulvérisation", + "article_with_word": "la pulvérisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spraying;pulverization", + "example_sentence_native": "La pulvérisation des pesticides est réglementée.", + "example_sentence_english": "The spraying of pesticides is regulated.", + "pos": "noun", + "word_frequency": 25320 + }, + { + "word": "périodicité", + "article_with_word": "la périodicité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "periodicity;frequency", + "example_sentence_native": "La périodicité des marées est bien connue.", + "example_sentence_english": "The periodicity of the tides is well known.", + "pos": "noun", + "word_frequency": 25321 + }, + { + "word": "périscope", + "article_with_word": "le périscope", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "periscope", + "example_sentence_native": "Le sous-marin a levé son périscope.", + "example_sentence_english": "The submarine raised its periscope.", + "pos": "noun", + "word_frequency": 25322 + }, + { + "word": "pétri", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kneaded;imbued with", + "example_sentence_native": "Il est pétri de bonnes intentions.", + "example_sentence_english": "He is imbued with good intentions.", + "pos": "adjective", + "word_frequency": 25323 + }, + { + "word": "raclure", + "article_with_word": "la raclure", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scraping;scum (derogatory)", + "example_sentence_native": "Il a traité cette personne de raclure.", + "example_sentence_english": "He called that person scum.", + "pos": "noun", + "word_frequency": 25324 + }, + { + "word": "rancoeur", + "article_with_word": "la rancoeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment;bitterness", + "example_sentence_native": "Il garde une profonde rancoeur contre son ancien collègue.", + "example_sentence_english": "He holds deep resentment against his former colleague.", + "pos": "noun", + "word_frequency": 25326 + }, + { + "word": "recent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recent", + "example_sentence_native": "C'est un événement récent.", + "example_sentence_english": "It's a recent event.", + "pos": "adjective", + "word_frequency": 25327 + }, + { + "word": "refroidi", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooled down;chilled", + "example_sentence_native": "Le café est refroidi.", + "example_sentence_english": "The coffee is cooled down.", + "pos": "adjective", + "word_frequency": 25328 + }, + { + "word": "remarié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remarried", + "example_sentence_native": "Elle est remariée depuis l'année dernière.", + "example_sentence_english": "She has been remarried since last year.", + "pos": "adjective", + "word_frequency": 25329 + }, + { + "word": "renversé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overturned;spilled;knocked over", + "example_sentence_native": "Le verre est renversé.", + "example_sentence_english": "The glass is overturned.", + "pos": "adjective", + "word_frequency": 25330 + }, + { + "word": "ressenti", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "felt;perceived", + "example_sentence_native": "Le froid ressenti était intense.", + "example_sentence_english": "The felt cold was intense.", + "pos": "adjective", + "word_frequency": 25331 + }, + { + "word": "ricin", + "article_with_word": "le ricin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "castor (plant;oil)", + "example_sentence_native": "L'huile de ricin est utilisée en cosmétique.", + "example_sentence_english": "Castor oil is used in cosmetics.", + "pos": "noun", + "word_frequency": 25334 + }, + { + "word": "ridiculement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ridiculously", + "example_sentence_native": "Il s'est comporté ridiculement.", + "example_sentence_english": "He behaved ridiculously.", + "pos": "adverb", + "word_frequency": 25335 + }, + { + "word": "ristourne", + "article_with_word": "la ristourne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discount;rebate", + "example_sentence_native": "Nous avons obtenu une ristourne sur le prix.", + "example_sentence_english": "We got a discount on the price.", + "pos": "noun", + "word_frequency": 25337 + }, + { + "word": "rote", + "article_with_word": "la rote", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "rote (medieval stringed instrument)", + "example_sentence_native": "La rote est un instrument de musique ancien.", + "example_sentence_english": "The rote is an ancient musical instrument.", + "pos": "noun", + "word_frequency": 25342 + }, + { + "word": "royaltie", + "article_with_word": "la royaltie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royalty (payment)", + "example_sentence_native": "Il perçoit des royalties sur ses ventes de livres.", + "example_sentence_english": "He receives royalties on his book sales.", + "pos": "noun", + "word_frequency": 25343 + }, + { + "word": "répulsion", + "article_with_word": "la répulsion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repulsion", + "example_sentence_native": "Il ressentait une forte répulsion pour cette idée.", + "example_sentence_english": "He felt a strong repulsion for this idea.", + "pos": "noun", + "word_frequency": 25345 + }, + { + "word": "révolté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolted;rebellious", + "example_sentence_native": "Il était révolté par l'injustice.", + "example_sentence_english": "He was revolted by the injustice.", + "pos": "adjective", + "word_frequency": 25346 + }, + { + "word": "réévaluer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-evaluate", + "example_sentence_native": "Nous devons réévaluer nos priorités.", + "example_sentence_english": "We must re-evaluate our priorities.", + "pos": "verb", + "word_frequency": 25347 + }, + { + "word": "sarrazin", + "article_with_word": "le sarrasin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buckwheat", + "example_sentence_native": "Les galettes de sarrasin sont délicieuses.", + "example_sentence_english": "Buckwheat pancakes are delicious.", + "pos": "noun", + "word_frequency": 25350 + }, + { + "word": "saxophoniste", + "article_with_word": "le/la saxophoniste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saxophonist", + "example_sentence_native": "Le saxophoniste a joué un solo incroyable.", + "example_sentence_english": "The saxophonist played an incredible solo.", + "pos": "noun", + "word_frequency": 25352 + }, + { + "word": "sectarisme", + "article_with_word": "le sectarisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sectarianism;bigotry", + "example_sentence_native": "Le sectarisme est un obstacle à la paix.", + "example_sentence_english": "Sectarianism is an obstacle to peace.", + "pos": "noun", + "word_frequency": 25357 + }, + { + "word": "sectorielles", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sectoral (feminine plural)", + "example_sentence_native": "Les politiques sectorielles sont importantes pour l'économie.", + "example_sentence_english": "Sectoral policies are important for the economy.", + "pos": "adjective", + "word_frequency": 25358 + }, + { + "word": "sensorielles", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensory (feminine plural)", + "example_sentence_native": "Les expériences sensorielles sont essentielles pour le développement.", + "example_sentence_english": "Sensory experiences are essential for development.", + "pos": "adjective", + "word_frequency": 25359 + }, + { + "word": "sillonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "furrowed;grooved", + "example_sentence_native": "Son visage était sillonné de rides.", + "example_sentence_english": "His face was furrowed with wrinkles.", + "pos": "adjective", + "word_frequency": 25362 + }, + { + "word": "solennité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solemnity", + "example_sentence_native": "La cérémonie s'est déroulée avec une grande solennité.", + "example_sentence_english": "The ceremony took place with great solemnity.", + "pos": "noun", + "word_frequency": 25367 + }, + { + "word": "stups", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narcotics;drugs (slang)", + "example_sentence_native": "La brigade des stups a fait une descente.", + "example_sentence_english": "The narcotics squad carried out a raid.", + "pos": "noun", + "word_frequency": 25376 + }, + { + "word": "substantiellement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "substantially", + "example_sentence_native": "Les coûts ont augmenté substantiellement.", + "example_sentence_english": "Costs have increased substantially.", + "pos": "adverb", + "word_frequency": 25378 + }, + { + "word": "suceur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sucker;extractor", + "example_sentence_native": "L'aspirateur est équipé d'un puissant suceur.", + "example_sentence_english": "The vacuum cleaner is equipped with a powerful suction nozzle.", + "pos": "noun", + "word_frequency": 25379 + }, + { + "word": "surlendemain", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "the day after tomorrow", + "example_sentence_native": "Il est parti le surlendemain de notre rencontre.", + "example_sentence_english": "He left the day after our meeting.", + "pos": "noun", + "word_frequency": 25382 + }, + { + "word": "suspicieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicious", + "example_sentence_native": "Son comportement était très suspicieux.", + "example_sentence_english": "His behavior was very suspicious.", + "pos": "adjective", + "word_frequency": 25383 + }, + { + "word": "syncope", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fainting spell;syncope", + "example_sentence_native": "Elle a fait une syncope à cause de la chaleur.", + "example_sentence_english": "She had a fainting spell because of the heat.", + "pos": "noun", + "word_frequency": 25386 + }, + { + "word": "sécularisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secularization", + "example_sentence_native": "La sécularisation de la société est un phénomène complexe.", + "example_sentence_english": "The secularization of society is a complex phenomenon.", + "pos": "noun", + "word_frequency": 25388 + }, + { + "word": "taekwondo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taekwondo", + "example_sentence_native": "Il pratique le taekwondo depuis son enfance.", + "example_sentence_english": "He has been practicing taekwondo since his childhood.", + "pos": "noun", + "word_frequency": 25389 + }, + { + "word": "tenable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenable;defensible", + "example_sentence_native": "Cette position n'est plus tenable.", + "example_sentence_english": "This position is no longer tenable.", + "pos": "adjective", + "word_frequency": 25391 + }, + { + "word": "tenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tempted", + "example_sentence_native": "Il était tenté de tout abandonner.", + "example_sentence_english": "He was tempted to give up everything.", + "pos": "adjective", + "word_frequency": 25392 + }, + { + "word": "théière", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teapot", + "example_sentence_native": "Elle a versé le thé de la théière.", + "example_sentence_english": "She poured the tea from the teapot.", + "pos": "noun", + "word_frequency": 25395 + }, + { + "word": "trench", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trench coat", + "example_sentence_native": "Il portait un vieux trench.", + "example_sentence_english": "He was wearing an old trench coat.", + "pos": "noun", + "word_frequency": 25397 + }, + { + "word": "tweed", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tweed", + "example_sentence_native": "Elle portait une veste en tweed.", + "example_sentence_english": "She was wearing a tweed jacket.", + "pos": "noun", + "word_frequency": 25401 + }, + { + "word": "usité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in use;customary", + "example_sentence_native": "Ce mot n'est plus très usité de nos jours.", + "example_sentence_english": "This word is no longer very much in use nowadays.", + "pos": "adjective", + "word_frequency": 25403 + }, + { + "word": "vanilla", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vanilla", + "example_sentence_native": "J'adore la glace à la vanille.", + "example_sentence_english": "I love vanilla ice cream.", + "pos": "noun", + "word_frequency": 25405 + }, + { + "word": "varicelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chickenpox", + "example_sentence_native": "Les enfants ont souvent la varicelle.", + "example_sentence_english": "Children often get chickenpox.", + "pos": "noun", + "word_frequency": 25406 + }, + { + "word": "veilleur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watcher;guard", + "example_sentence_native": "Le veilleur de nuit surveille l'entrée.", + "example_sentence_english": "The night watchman guards the entrance.", + "pos": "noun", + "word_frequency": 25407 + }, + { + "word": "velouté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "velvety;smooth", + "example_sentence_native": "La texture de cette sauce est très veloutée.", + "example_sentence_english": "The texture of this sauce is very velvety.", + "pos": "adjective", + "word_frequency": 25408 + }, + { + "word": "vicissitude", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vicissitude;change", + "example_sentence_native": "Les vicissitudes de la vie sont inévitables.", + "example_sentence_english": "The vicissitudes of life are inevitable.", + "pos": "noun", + "word_frequency": 25410 + }, + { + "word": "videur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bouncer", + "example_sentence_native": "Le videur a refusé l'entrée à l'homme ivre.", + "example_sentence_english": "The bouncer refused entry to the drunk man.", + "pos": "noun", + "word_frequency": 25411 + }, + { + "word": "vidé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "empty;drained", + "example_sentence_native": "La bouteille est complètement vidée.", + "example_sentence_english": "The bottle is completely empty.", + "pos": "adjective", + "word_frequency": 25412 + }, + { + "word": "vieillissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aging;growing old", + "example_sentence_native": "La population vieillissante est un défi pour la société.", + "example_sentence_english": "The aging population is a challenge for society.", + "pos": "adjective", + "word_frequency": 25413 + }, + { + "word": "vinyl", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vinyl", + "example_sentence_native": "J'ai acheté un nouveau disque en vinyl.", + "example_sentence_english": "I bought a new vinyl record.", + "pos": "noun", + "word_frequency": 25415 + }, + { + "word": "voulu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desired;intended", + "example_sentence_native": "Le résultat n'est pas celui qui était voulu.", + "example_sentence_english": "The result is not the one that was desired.", + "pos": "adjective", + "word_frequency": 25416 + }, + { + "word": "vêpre", + "article_with_word": "les", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vespers;evening prayer", + "example_sentence_native": "Ils ont assisté aux vêpres à l'église.", + "example_sentence_english": "They attended vespers at the church.", + "pos": "noun", + "word_frequency": 25419 + }, + { + "word": "wolof", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Wolof (language;people)", + "example_sentence_native": "Le wolof est parlé au Sénégal.", + "example_sentence_english": "Wolof is spoken in Senegal.", + "pos": "noun", + "word_frequency": 25423 + }, + { + "word": "zine", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zine (magazine;informal)", + "example_sentence_native": "J'ai lu un super zine sur la musique.", + "example_sentence_english": "I read a great zine about music.", + "pos": "noun", + "word_frequency": 25428 + }, + { + "word": "écopé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bailed out;received (a penalty)", + "example_sentence_native": "Il a écopé d'une amende pour excès de vitesse.", + "example_sentence_english": "He received a fine for speeding.", + "pos": "verb", + "word_frequency": 25429 + }, + { + "word": "épiphanie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Epiphany", + "example_sentence_native": "L'Épiphanie est célébrée le 6 janvier.", + "example_sentence_english": "Epiphany is celebrated on January 6th.", + "pos": "noun", + "word_frequency": 25431 + }, + { + "word": "ésotérisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "esotericism", + "example_sentence_native": "L'ésotérisme est l'étude des connaissances cachées.", + "example_sentence_english": "Esotericism is the study of hidden knowledge.", + "pos": "noun", + "word_frequency": 25433 + }, + { + "word": "acabit", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kind;sort;ilk", + "example_sentence_native": "Je n'aime pas les gens de cet acabit.", + "example_sentence_english": "I don't like people of that kind.", + "pos": "noun", + "word_frequency": 25434 + }, + { + "word": "acclimatation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acclimatization", + "example_sentence_native": "L'acclimatation à un nouveau climat prend du temps.", + "example_sentence_english": "Acclimatization to a new climate takes time.", + "pos": "noun", + "word_frequency": 25435 + }, + { + "word": "accrocheur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catchy;gripping;aggressive", + "example_sentence_native": "Le slogan est très accrocheur.", + "example_sentence_english": "The slogan is very catchy.", + "pos": "adjective", + "word_frequency": 25436 + }, + { + "word": "affiné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refined;matured", + "example_sentence_native": "Ce fromage est bien affiné.", + "example_sentence_english": "This cheese is well matured.", + "pos": "adjective", + "word_frequency": 25439 + }, + { + "word": "affligé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distressed;afflicted", + "example_sentence_native": "Il était affligé par la nouvelle de sa perte.", + "example_sentence_english": "He was distressed by the news of his loss.", + "pos": "adjective", + "word_frequency": 25440 + }, + { + "word": "allocataire", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficiary (of an allowance)", + "example_sentence_native": "L'allocataire a reçu son versement mensuel.", + "example_sentence_english": "The beneficiary received their monthly payment.", + "pos": "noun", + "word_frequency": 25443 + }, + { + "word": "annoté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annotated", + "example_sentence_native": "Le document annoté contenait de nombreuses remarques.", + "example_sentence_english": "The annotated document contained many remarks.", + "pos": "adjective", + "word_frequency": 25445 + }, + { + "word": "anévrisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aneurysm", + "example_sentence_native": "Un anévrisme cérébral peut être très dangereux.", + "example_sentence_english": "A cerebral aneurysm can be very dangerous.", + "pos": "noun", + "word_frequency": 25446 + }, + { + "word": "apposé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affixed;appended", + "example_sentence_native": "La signature a été apposée au bas du contrat.", + "example_sentence_english": "The signature was affixed to the bottom of the contract.", + "pos": "adjective", + "word_frequency": 25448 + }, + { + "word": "arpent", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arpent (old unit of land area)", + "example_sentence_native": "L'arpent était une ancienne unité de mesure agraire.", + "example_sentence_english": "The arpent was an old unit of agrarian measurement.", + "pos": "noun", + "word_frequency": 25450 + }, + { + "word": "aubier", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sapwood", + "example_sentence_native": "L'aubier est la partie jeune et vivante du bois.", + "example_sentence_english": "Sapwood is the young and living part of the wood.", + "pos": "noun", + "word_frequency": 25453 + }, + { + "word": "baronnie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barony", + "example_sentence_native": "La baronnie était un fief détenu par un baron.", + "example_sentence_english": "The barony was a fief held by a baron.", + "pos": "noun", + "word_frequency": 25455 + }, + { + "word": "bermuda", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bermuda shorts", + "example_sentence_native": "Il portait un bermuda et un t-shirt.", + "example_sentence_english": "He was wearing Bermuda shorts and a t-shirt.", + "pos": "noun", + "word_frequency": 25458 + }, + { + "word": "bombardé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bombed;bombarded", + "example_sentence_native": "La ville a été bombardée pendant la guerre.", + "example_sentence_english": "The city was bombed during the war.", + "pos": "adjective", + "word_frequency": 25462 + }, + { + "word": "bondage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bondage", + "example_sentence_native": "Le bondage est une pratique sexuelle.", + "example_sentence_english": "Bondage is a sexual practice.", + "pos": "noun", + "word_frequency": 25463 + }, + { + "word": "bouddhique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhist", + "example_sentence_native": "La philosophie bouddhique met l'accent sur la méditation.", + "example_sentence_english": "Buddhist philosophy emphasizes meditation.", + "pos": "adjective", + "word_frequency": 25466 + }, + { + "word": "brestois", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant of Brest", + "example_sentence_native": "Un Brestois est un habitant de la ville de Brest.", + "example_sentence_english": "A Brestois is an inhabitant of the city of Brest.", + "pos": "noun", + "word_frequency": 25469 + }, + { + "word": "broker", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broker", + "example_sentence_native": "Le broker a conseillé à son client d'acheter des actions.", + "example_sentence_english": "The broker advised his client to buy shares.", + "pos": "noun", + "word_frequency": 25471 + }, + { + "word": "bronche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bronchus", + "example_sentence_native": "Les bronches transportent l'air vers les poumons.", + "example_sentence_english": "The bronchi carry air to the lungs.", + "pos": "noun", + "word_frequency": 25472 + }, + { + "word": "bronzé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tanned;bronzed", + "example_sentence_native": "Après les vacances, il était très bronzé.", + "example_sentence_english": "After the holidays, he was very tanned.", + "pos": "adjective", + "word_frequency": 25473 + }, + { + "word": "broyé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crushed;ground", + "example_sentence_native": "Le café est vendu en grains ou broyé.", + "example_sentence_english": "Coffee is sold in beans or ground.", + "pos": "adjective", + "word_frequency": 25474 + }, + { + "word": "butch", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "butch (masculine lesbian)", + "example_sentence_native": "Elle a un style très butch.", + "example_sentence_english": "She has a very butch style.", + "pos": "noun", + "word_frequency": 25476 + }, + { + "word": "béat", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blissful;beatific", + "example_sentence_native": "Il affichait un sourire béat après avoir gagné.", + "example_sentence_english": "He displayed a blissful smile after winning.", + "pos": "adjective", + "word_frequency": 25477 + }, + { + "word": "bédouin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bedouin", + "example_sentence_native": "Les Bédouins sont un peuple nomade du désert.", + "example_sentence_english": "The Bedouins are a nomadic desert people.", + "pos": "noun", + "word_frequency": 25478 + }, + { + "word": "carlin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pug", + "example_sentence_native": "Le carlin est un petit chien avec un museau aplati.", + "example_sentence_english": "The pug is a small dog with a flattened snout.", + "pos": "noun", + "word_frequency": 25479 + }, + { + "word": "causse", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "limestone plateau", + "example_sentence_native": "Les Causses sont des plateaux calcaires du Massif central.", + "example_sentence_english": "The Causses are limestone plateaus in the Massif Central.", + "pos": "noun", + "word_frequency": 25481 + }, + { + "word": "chaman", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaman", + "example_sentence_native": "Le chaman a guidé la cérémonie traditionnelle.", + "example_sentence_english": "The shaman guided the traditional ceremony.", + "pos": "noun", + "word_frequency": 25483 + }, + { + "word": "choppe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mug;tankard", + "example_sentence_native": "Il a bu sa bière dans une grande choppe.", + "example_sentence_english": "He drank his beer from a large mug.", + "pos": "noun", + "word_frequency": 25486 + }, + { + "word": "chorizo", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chorizo", + "example_sentence_native": "J'ai mis du chorizo dans ma paella.", + "example_sentence_english": "I put chorizo in my paella.", + "pos": "noun", + "word_frequency": 25487 + }, + { + "word": "combattu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fought;contested", + "example_sentence_native": "C'est une idée très combattue.", + "example_sentence_english": "It's a very contested idea.", + "pos": "adjective", + "word_frequency": 25489 + }, + { + "word": "comparse", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplice;extra", + "example_sentence_native": "Il n'était qu'une simple comparse dans cette affaire.", + "example_sentence_english": "He was just a mere accomplice in this affair.", + "pos": "noun", + "word_frequency": 25490 + }, + { + "word": "compatissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassionate", + "example_sentence_native": "Elle est toujours très compatissante envers les autres.", + "example_sentence_english": "She is always very compassionate towards others.", + "pos": "adjective", + "word_frequency": 25491 + }, + { + "word": "contention", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contention;dispute;restraint", + "example_sentence_native": "Le point de contention principal était le budget.", + "example_sentence_english": "The main point of contention was the budget.", + "pos": "noun", + "word_frequency": 25492 + }, + { + "word": "contrasté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contrasted;contrasting", + "example_sentence_native": "Le paysage offre des couleurs très contrastées.", + "example_sentence_english": "The landscape offers very contrasting colors.", + "pos": "adjective", + "word_frequency": 25493 + }, + { + "word": "contusion", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bruise;contusion", + "example_sentence_native": "Il a une contusion au bras après sa chute.", + "example_sentence_english": "He has a bruise on his arm after his fall.", + "pos": "noun", + "word_frequency": 25494 + }, + { + "word": "convoiter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to covet;to crave", + "example_sentence_native": "Il convoite la voiture de son voisin.", + "example_sentence_english": "He covets his neighbor's car.", + "pos": "verb", + "word_frequency": 25495 + }, + { + "word": "corporatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporate", + "example_sentence_native": "C'est un événement corporatif annuel.", + "example_sentence_english": "It's an annual corporate event.", + "pos": "adjective", + "word_frequency": 25496 + }, + { + "word": "coudée", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cubit;elbow room", + "example_sentence_native": "Il a besoin de plus de coudées franches pour travailler.", + "example_sentence_english": "He needs more elbow room to work.", + "pos": "noun", + "word_frequency": 25497 + }, + { + "word": "curateur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curator;guardian", + "example_sentence_native": "Le curateur gère les biens de la personne protégée.", + "example_sentence_english": "The guardian manages the assets of the protected person.", + "pos": "noun", + "word_frequency": 25503 + }, + { + "word": "curcuma", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turmeric", + "example_sentence_native": "J'ajoute du curcuma à mes plats pour la couleur et le goût.", + "example_sentence_english": "I add turmeric to my dishes for color and taste.", + "pos": "noun", + "word_frequency": 25504 + }, + { + "word": "dejeuner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have lunch", + "example_sentence_native": "Nous allons déjeuner ensemble demain.", + "example_sentence_english": "We are going to have lunch together tomorrow.", + "pos": "verb", + "word_frequency": 25507 + }, + { + "word": "discipliné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disciplined", + "example_sentence_native": "C'est un élève très discipliné.", + "example_sentence_english": "He is a very disciplined student.", + "pos": "adjective", + "word_frequency": 25511 + }, + { + "word": "dive", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dive (bar)", + "example_sentence_native": "C'est une petite dive où les musiciens se retrouvent.", + "example_sentence_english": "It's a small dive where musicians meet.", + "pos": "noun", + "word_frequency": 25512 + }, + { + "word": "dynamic", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dynamic", + "example_sentence_native": "C'est une personne très dynamique et pleine d'énergie.", + "example_sentence_english": "She is a very dynamic person full of energy.", + "pos": "adjective", + "word_frequency": 25521 + }, + { + "word": "débité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cut up;debited", + "example_sentence_native": "Le bois a été débité en petites bûches.", + "example_sentence_english": "The wood was cut up into small logs.", + "pos": "adjective", + "word_frequency": 25522 + }, + { + "word": "débuté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "started;begun", + "example_sentence_native": "Le projet a débuté le mois dernier.", + "example_sentence_english": "The project started last month.", + "pos": "adjective", + "word_frequency": 25523 + }, + { + "word": "décentralisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decentralized", + "example_sentence_native": "Le système est maintenant plus décentralisé.", + "example_sentence_english": "The system is now more decentralized.", + "pos": "adjective", + "word_frequency": 25524 + }, + { + "word": "déchu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fallen;disgraced", + "example_sentence_native": "Il est un roi déchu, privé de son trône.", + "example_sentence_english": "He is a fallen king, deprived of his throne.", + "pos": "adjective", + "word_frequency": 25525 + }, + { + "word": "décote", + "article_with_word": "la décote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discount;depreciation", + "example_sentence_native": "Il y a une décote importante sur ce modèle.", + "example_sentence_english": "There is a significant discount on this model.", + "pos": "noun", + "word_frequency": 25526 + }, + { + "word": "déferlant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surging;breaking (wave)", + "example_sentence_native": "Les vagues déferlantes s'écrasaient sur la côte.", + "example_sentence_english": "The surging waves crashed on the coast.", + "pos": "adjective", + "word_frequency": 25527 + }, + { + "word": "délimité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delimited;defined", + "example_sentence_native": "Le terrain est clairement délimité par une clôture.", + "example_sentence_english": "The land is clearly delimited by a fence.", + "pos": "adjective", + "word_frequency": 25528 + }, + { + "word": "démineur", + "article_with_word": "le démineur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mine clearer;bomb disposal expert", + "example_sentence_native": "Le démineur a désamorcé l'engin explosif.", + "example_sentence_english": "The bomb disposal expert defused the explosive device.", + "pos": "noun", + "word_frequency": 25529 + }, + { + "word": "dénudé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bare;stripped", + "example_sentence_native": "Les arbres étaient dénudés de leurs feuilles en hiver.", + "example_sentence_english": "The trees were bare of their leaves in winter.", + "pos": "adjective", + "word_frequency": 25530 + }, + { + "word": "dépollution", + "article_with_word": "la dépollution", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depollution;decontamination", + "example_sentence_native": "La dépollution des sols est un enjeu majeur.", + "example_sentence_english": "Soil decontamination is a major issue.", + "pos": "noun", + "word_frequency": 25531 + }, + { + "word": "dépouillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stripped;plundered;sparse", + "example_sentence_native": "Le style de l'artiste est très dépouillé.", + "example_sentence_english": "The artist's style is very sparse.", + "pos": "adjective", + "word_frequency": 25532 + }, + { + "word": "désinfectant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disinfectant", + "example_sentence_native": "Utilisez un produit désinfectant pour nettoyer la surface.", + "example_sentence_english": "Use a disinfectant product to clean the surface.", + "pos": "adjective", + "word_frequency": 25533 + }, + { + "word": "désorganisation", + "article_with_word": "la désorganisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disorganization", + "example_sentence_native": "La désorganisation a causé de nombreux retards.", + "example_sentence_english": "The disorganization caused many delays.", + "pos": "noun", + "word_frequency": 25534 + }, + { + "word": "empiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stack;to pile up", + "example_sentence_native": "Il faut empiler les livres sur l'étagère.", + "example_sentence_english": "You need to stack the books on the shelf.", + "pos": "verb", + "word_frequency": 25537 + }, + { + "word": "epreuve", + "article_with_word": "l'épreuve", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "test;ordeal;event", + "example_sentence_native": "Elle a réussi toutes les épreuves de l'examen.", + "example_sentence_english": "She passed all the tests of the exam.", + "pos": "noun", + "word_frequency": 25539 + }, + { + "word": "esclavagisme", + "article_with_word": "l'esclavagisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slavery;slave system", + "example_sentence_native": "L'esclavagisme est une pratique inhumaine.", + "example_sentence_english": "Slavery is an inhumane practice.", + "pos": "noun", + "word_frequency": 25541 + }, + { + "word": "exacerbé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exacerbated;heightened", + "example_sentence_native": "La tension était exacerbée par les récentes nouvelles.", + "example_sentence_english": "The tension was exacerbated by the recent news.", + "pos": "adjective", + "word_frequency": 25543 + }, + { + "word": "exonéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exempt;exempted", + "example_sentence_native": "Les étudiants sont exonérés de certains frais.", + "example_sentence_english": "Students are exempt from certain fees.", + "pos": "adjective", + "word_frequency": 25544 + }, + { + "word": "fanion", + "article_with_word": "le fanion", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pennant;small flag", + "example_sentence_native": "Chaque équipe avait son propre fanion.", + "example_sentence_english": "Each team had its own pennant.", + "pos": "noun", + "word_frequency": 25546 + }, + { + "word": "farcir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stuff", + "example_sentence_native": "Elle aime farcir les légumes pour le dîner.", + "example_sentence_english": "She likes to stuff vegetables for dinner.", + "pos": "verb", + "word_frequency": 25547 + }, + { + "word": "feuillu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leafy;deciduous", + "example_sentence_native": "La forêt est composée d'arbres feuillus.", + "example_sentence_english": "The forest is composed of deciduous trees.", + "pos": "adjective", + "word_frequency": 25548 + }, + { + "word": "footballistique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "football-related", + "example_sentence_native": "Il a une grande culture footballistique.", + "example_sentence_english": "He has a great football-related knowledge.", + "pos": "adjective", + "word_frequency": 25550 + }, + { + "word": "formulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formulated;expressed", + "example_sentence_native": "La question a été clairement formulée.", + "example_sentence_english": "The question was clearly formulated.", + "pos": "adjective", + "word_frequency": 25551 + }, + { + "word": "frivole", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frivolous", + "example_sentence_native": "Ne soyez pas si frivole avec l'argent.", + "example_sentence_english": "Don't be so frivolous with money.", + "pos": "adjective", + "word_frequency": 25554 + }, + { + "word": "fédérateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unifying;federating", + "example_sentence_native": "Son discours était très fédérateur.", + "example_sentence_english": "His speech was very unifying.", + "pos": "adjective", + "word_frequency": 25557 + }, + { + "word": "germination", + "article_with_word": "la germination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "germination", + "example_sentence_native": "La germination des graines est essentielle pour la croissance des plantes.", + "example_sentence_english": "The germination of seeds is essential for plant growth.", + "pos": "noun", + "word_frequency": 25560 + }, + { + "word": "giratoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rotary;roundabout (adj)", + "example_sentence_native": "Le panneau indique un sens giratoire obligatoire.", + "example_sentence_english": "The sign indicates a mandatory rotary direction.", + "pos": "adjective", + "word_frequency": 25561 + }, + { + "word": "girofle", + "article_with_word": "le girofle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clove", + "example_sentence_native": "J'ai ajouté un clou de girofle à la sauce.", + "example_sentence_english": "I added a clove to the sauce.", + "pos": "noun", + "word_frequency": 25562 + }, + { + "word": "glorification", + "article_with_word": "la glorification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glorification", + "example_sentence_native": "La glorification des héros est une tradition ancienne.", + "example_sentence_english": "The glorification of heroes is an ancient tradition.", + "pos": "noun", + "word_frequency": 25563 + }, + { + "word": "grid", + "article_with_word": "le grid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grid", + "example_sentence_native": "Le designer a travaillé sur la mise en page de la grille.", + "example_sentence_english": "The designer worked on the grid layout.", + "pos": "noun", + "word_frequency": 25565 + }, + { + "word": "grison", + "article_with_word": "le grison", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grey horse;grey-haired man", + "example_sentence_native": "Le vieux grison paissait tranquillement dans le pré.", + "example_sentence_english": "The old grey horse was grazing peacefully in the meadow.", + "pos": "noun", + "word_frequency": 25566 + }, + { + "word": "géophysique", + "article_with_word": "la géophysique", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geophysics", + "example_sentence_native": "La géophysique étudie les propriétés physiques de la Terre.", + "example_sentence_english": "Geophysics studies the physical properties of the Earth.", + "pos": "noun", + "word_frequency": 25567 + }, + { + "word": "géothermie", + "article_with_word": "la géothermie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geothermal energy", + "example_sentence_native": "La géothermie est une source d'énergie renouvelable.", + "example_sentence_english": "Geothermal energy is a renewable energy source.", + "pos": "noun", + "word_frequency": 25568 + }, + { + "word": "horticole", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horticultural", + "example_sentence_native": "Il travaille dans le secteur horticole.", + "example_sentence_english": "He works in the horticultural sector.", + "pos": "adjective", + "word_frequency": 25573 + }, + { + "word": "huée", + "article_with_word": "la huée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boo;jeer;hoot", + "example_sentence_native": "L'acteur a été accueilli par une huée du public.", + "example_sentence_english": "The actor was met with a boo from the audience.", + "pos": "noun", + "word_frequency": 25574 + }, + { + "word": "immoralité", + "article_with_word": "l'immoralité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immorality", + "example_sentence_native": "L'immoralité de ses actions a choqué tout le monde.", + "example_sentence_english": "The immorality of his actions shocked everyone.", + "pos": "noun", + "word_frequency": 25577 + }, + { + "word": "impertinent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impertinent;cheeky", + "example_sentence_native": "Sa réponse était plutôt impertinente.", + "example_sentence_english": "His answer was rather impertinent.", + "pos": "adjective", + "word_frequency": 25578 + }, + { + "word": "indiscipline", + "article_with_word": "l'indiscipline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indiscipline", + "example_sentence_native": "L'indiscipline des élèves a causé des problèmes.", + "example_sentence_english": "The indiscipline of the students caused problems.", + "pos": "noun", + "word_frequency": 25579 + }, + { + "word": "infléchir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bend;to influence;to alter", + "example_sentence_native": "Il a essayé d'infléchir la décision du comité.", + "example_sentence_english": "He tried to influence the committee's decision.", + "pos": "verb", + "word_frequency": 25580 + }, + { + "word": "infranchissable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurmountable;impassable", + "example_sentence_native": "Le mur semblait infranchissable.", + "example_sentence_english": "The wall seemed insurmountable.", + "pos": "adjective", + "word_frequency": 25581 + }, + { + "word": "inspecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspected", + "example_sentence_native": "Le bâtiment a été inspecté et déclaré sûr.", + "example_sentence_english": "The building was inspected and declared safe.", + "pos": "adjective", + "word_frequency": 25582 + }, + { + "word": "insurgent", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurgent;rebellious", + "example_sentence_native": "Les forces insurgentes ont attaqué la capitale.", + "example_sentence_english": "The insurgent forces attacked the capital.", + "pos": "adjective", + "word_frequency": 25583 + }, + { + "word": "intercité", + "article_with_word": "un intercité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intercity train", + "example_sentence_native": "Nous avons pris un intercité pour aller à Paris.", + "example_sentence_english": "We took an intercity train to go to Paris.", + "pos": "noun", + "word_frequency": 25584 + }, + { + "word": "invalider", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invalidate;to annul", + "example_sentence_native": "Le juge a décidé d'invalider le contrat.", + "example_sentence_english": "The judge decided to invalidate the contract.", + "pos": "verb", + "word_frequency": 25585 + }, + { + "word": "invective", + "article_with_word": "l'invective", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invective;abuse", + "example_sentence_native": "Il a lancé des invectives contre son adversaire.", + "example_sentence_english": "He hurled invectives at his opponent.", + "pos": "noun", + "word_frequency": 25586 + }, + { + "word": "invertébré", + "article_with_word": "l'invertébré", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invertebrate", + "example_sentence_native": "Les insectes sont des invertébrés.", + "example_sentence_english": "Insects are invertebrates.", + "pos": "noun", + "word_frequency": 25587 + }, + { + "word": "javelot", + "article_with_word": "le javelot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "javelin", + "example_sentence_native": "L'athlète a lancé le javelot très loin.", + "example_sentence_english": "The athlete threw the javelin very far.", + "pos": "noun", + "word_frequency": 25588 + }, + { + "word": "jeûner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fast", + "example_sentence_native": "Il a décidé de jeûner pendant une journée.", + "example_sentence_english": "He decided to fast for a day.", + "pos": "verb", + "word_frequency": 25592 + }, + { + "word": "jovial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jovial;cheerful", + "example_sentence_native": "Son humeur joviale était contagieuse.", + "example_sentence_english": "His jovial mood was contagious.", + "pos": "adjective", + "word_frequency": 25593 + }, + { + "word": "kazakh", + "article_with_word": "le Kazakh", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Kazakh (person;language)", + "example_sentence_native": "Il apprend le kazakh pour son voyage.", + "example_sentence_english": "He is learning Kazakh for his trip.", + "pos": "noun", + "word_frequency": 25597 + }, + { + "word": "landais", + "article_with_word": "un Landais", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person from Les Landes (region in France)", + "example_sentence_native": "C'est un Landais typique, fier de sa région.", + "example_sentence_english": "He is a typical Landais, proud of his region.", + "pos": "noun", + "word_frequency": 25606 + }, + { + "word": "largage", + "article_with_word": "le largage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dropping;release (e.g.;of cargo)", + "example_sentence_native": "Le largage des parachutistes a eu lieu à l'aube.", + "example_sentence_english": "The dropping of the paratroopers took place at dawn.", + "pos": "noun", + "word_frequency": 25607 + }, + { + "word": "lensois", + "article_with_word": "un Lensois", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person from Lens (city in France)", + "example_sentence_native": "Les Lensois sont fiers de leur équipe de football.", + "example_sentence_english": "The people of Lens are proud of their football team.", + "pos": "noun", + "word_frequency": 25613 + }, + { + "word": "lhistoire", + "article_with_word": "l'histoire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "history;story", + "example_sentence_native": "J'aime lire des livres d'histoire.", + "example_sentence_english": "I like to read history books.", + "pos": "noun", + "word_frequency": 25614 + }, + { + "word": "limogeage", + "article_with_word": "le limogeage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismissal;sacking", + "example_sentence_native": "Le limogeage du ministre a créé une controverse.", + "example_sentence_english": "The dismissal of the minister created a controversy.", + "pos": "noun", + "word_frequency": 25615 + }, + { + "word": "malléable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malleable;pliable", + "example_sentence_native": "Ce métal est très malléable et facile à travailler.", + "example_sentence_english": "This metal is very malleable and easy to work with.", + "pos": "adjective", + "word_frequency": 25623 + }, + { + "word": "malware", + "article_with_word": "le malware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malware", + "example_sentence_native": "Mon ordinateur a été infecté par un malware.", + "example_sentence_english": "My computer was infected by malware.", + "pos": "noun", + "word_frequency": 25624 + }, + { + "word": "mandarine", + "article_with_word": "la mandarine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mandarin (fruit)", + "example_sentence_native": "J'ai mangé une mandarine pour le goûter.", + "example_sentence_english": "I ate a mandarin for a snack.", + "pos": "noun", + "word_frequency": 25625 + }, + { + "word": "mercantile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercantile;commercial", + "example_sentence_native": "Il a une approche très mercantile des affaires.", + "example_sentence_english": "He has a very mercantile approach to business.", + "pos": "adjective", + "word_frequency": 25628 + }, + { + "word": "milligramme", + "article_with_word": "le milligramme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "milligram", + "example_sentence_native": "Il faut seulement quelques milligrammes de ce produit.", + "example_sentence_english": "Only a few milligrams of this product are needed.", + "pos": "noun", + "word_frequency": 25631 + }, + { + "word": "mimique", + "article_with_word": "la mimique", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mimicry;facial expression", + "example_sentence_native": "Ses mimiques étaient très expressives et amusantes.", + "example_sentence_english": "His facial expressions were very expressive and amusing.", + "pos": "noun", + "word_frequency": 25632 + }, + { + "word": "mitraille", + "article_with_word": "la mitraille", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shrapnel;small shot", + "example_sentence_native": "Les soldats ont été blessés par la mitraille.", + "example_sentence_english": "The soldiers were wounded by shrapnel.", + "pos": "noun", + "word_frequency": 25634 + }, + { + "word": "multilingue", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multilingual", + "example_sentence_native": "Elle est une personne multilingue et parle cinq langues.", + "example_sentence_english": "She is a multilingual person and speaks five languages.", + "pos": "adjective", + "word_frequency": 25637 + }, + { + "word": "négativité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negativity", + "example_sentence_native": "Il faut éviter la négativité pour avancer dans la vie.", + "example_sentence_english": "One must avoid negativity to move forward in life.", + "pos": "noun", + "word_frequency": 25641 + }, + { + "word": "ombilical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "umbilical", + "example_sentence_native": "Le cordon ombilical relie le fœtus à sa mère.", + "example_sentence_english": "The umbilical cord connects the fetus to its mother.", + "pos": "adjective", + "word_frequency": 25643 + }, + { + "word": "opiacé", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opiate", + "example_sentence_native": "Les opiacés sont des substances utilisées pour soulager la douleur.", + "example_sentence_english": "Opiates are substances used to relieve pain.", + "pos": "noun", + "word_frequency": 25644 + }, + { + "word": "orignal", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moose", + "example_sentence_native": "L'orignal est un grand cervidé que l'on trouve en Amérique du Nord.", + "example_sentence_english": "The moose is a large deer found in North America.", + "pos": "noun", + "word_frequency": 25645 + }, + { + "word": "paganisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paganism", + "example_sentence_native": "Le paganisme englobe diverses croyances et pratiques religieuses anciennes.", + "example_sentence_english": "Paganism encompasses various ancient religious beliefs and practices.", + "pos": "noun", + "word_frequency": 25647 + }, + { + "word": "pairie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peerage", + "example_sentence_native": "La pairie est un système de titres de noblesse au Royaume-Uni.", + "example_sentence_english": "The peerage is a system of noble titles in the United Kingdom.", + "pos": "noun", + "word_frequency": 25648 + }, + { + "word": "perspicace", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perceptive;insightful", + "example_sentence_native": "Son analyse était très perspicace et a révélé des détails importants.", + "example_sentence_english": "His analysis was very perceptive and revealed important details.", + "pos": "adjective", + "word_frequency": 25650 + }, + { + "word": "photosynthèse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "photosynthesis", + "example_sentence_native": "La photosynthèse est le processus par lequel les plantes produisent leur nourriture.", + "example_sentence_english": "Photosynthesis is the process by which plants produce their food.", + "pos": "noun", + "word_frequency": 25653 + }, + { + "word": "pigiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freelance journalist", + "example_sentence_native": "Elle travaille comme pigiste pour plusieurs magazines.", + "example_sentence_english": "She works as a freelance journalist for several magazines.", + "pos": "noun", + "word_frequency": 25654 + }, + { + "word": "pister", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to track;to trail", + "example_sentence_native": "Les chasseurs ont réussi à pister l'animal dans la neige.", + "example_sentence_english": "The hunters managed to track the animal in the snow.", + "pos": "verb", + "word_frequency": 25656 + }, + { + "word": "poindre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dawn;to appear (gradually)", + "example_sentence_native": "L'aube commençait à poindre à l'horizon.", + "example_sentence_english": "Dawn was beginning to break on the horizon.", + "pos": "verb", + "word_frequency": 25658 + }, + { + "word": "pommeau", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pommel (of a sword);knob (of a gearstick)", + "example_sentence_native": "Il a serré le pommeau de son épée avant le combat.", + "example_sentence_english": "He gripped the pommel of his sword before the fight.", + "pos": "noun", + "word_frequency": 25659 + }, + { + "word": "pompé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhausted;drained (colloquial)", + "example_sentence_native": "Après cette longue journée de travail, je suis complètement pompé.", + "example_sentence_english": "After this long day of work, I'm completely exhausted.", + "pos": "adjective", + "word_frequency": 25660 + }, + { + "word": "pressoir", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press (for grapes;olives)", + "example_sentence_native": "Le raisin est acheminé vers le pressoir pour en extraire le jus.", + "example_sentence_english": "The grapes are transported to the press to extract the juice.", + "pos": "noun", + "word_frequency": 25661 + }, + { + "word": "prééminence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pre-eminence;supremacy", + "example_sentence_native": "La prééminence de cette théorie est incontestable dans le domaine.", + "example_sentence_english": "The pre-eminence of this theory is undeniable in the field.", + "pos": "noun", + "word_frequency": 25664 + }, + { + "word": "psychisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psyche;mind", + "example_sentence_native": "Le psychisme humain est un sujet d'étude complexe et fascinant.", + "example_sentence_english": "The human psyche is a complex and fascinating subject of study.", + "pos": "noun", + "word_frequency": 25665 + }, + { + "word": "psychothérapeute", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychotherapist", + "example_sentence_native": "Elle a décidé de consulter un psychothérapeute pour l'aider à surmonter son anxiété.", + "example_sentence_english": "She decided to consult a psychotherapist to help her overcome her anxiety.", + "pos": "noun", + "word_frequency": 25666 + }, + { + "word": "puit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "well (water well)", + "example_sentence_native": "Ils ont creusé un puits pour avoir de l'eau potable.", + "example_sentence_english": "They dug a well to have drinking water.", + "pos": "noun", + "word_frequency": 25668 + }, + { + "word": "pénitent", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penitent", + "example_sentence_native": "Le pénitent a exprimé son remords pour ses fautes.", + "example_sentence_english": "The penitent expressed his remorse for his wrongdoings.", + "pos": "noun", + "word_frequency": 25669 + }, + { + "word": "périph", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring road (colloquial for 'périphérique')", + "example_sentence_native": "Le matin, le périph est souvent saturé de voitures.", + "example_sentence_english": "In the morning, the ring road is often congested with cars.", + "pos": "noun", + "word_frequency": 25670 + }, + { + "word": "quartet", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quartet", + "example_sentence_native": "Le quartet de cordes a interprété une magnifique symphonie.", + "example_sentence_english": "The string quartet performed a magnificent symphony.", + "pos": "noun", + "word_frequency": 25671 + }, + { + "word": "rafraîchissement", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshment;cooling", + "example_sentence_native": "Après l'effort, nous avons apprécié un bon rafraîchissement.", + "example_sentence_english": "After the effort, we enjoyed a nice refreshment.", + "pos": "noun", + "word_frequency": 25672 + }, + { + "word": "redirigé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redirected", + "example_sentence_native": "Le trafic a été redirigé en raison des travaux sur la route.", + "example_sentence_english": "Traffic was redirected due to road construction.", + "pos": "adjective", + "word_frequency": 25675 + }, + { + "word": "repassage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ironing", + "example_sentence_native": "J'ai beaucoup de repassage à faire ce week-end.", + "example_sentence_english": "I have a lot of ironing to do this weekend.", + "pos": "noun", + "word_frequency": 25676 + }, + { + "word": "replié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folded back;withdrawn (figurative)", + "example_sentence_native": "Le parapluie était replié dans son étui.", + "example_sentence_english": "The umbrella was folded back in its case.", + "pos": "adjective", + "word_frequency": 25677 + }, + { + "word": "restructurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restructure", + "example_sentence_native": "L'entreprise a dû restructurer ses services pour s'adapter au marché.", + "example_sentence_english": "The company had to restructure its departments to adapt to the market.", + "pos": "verb", + "word_frequency": 25678 + }, + { + "word": "revival", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revival", + "example_sentence_native": "Il y a un revival des tendances des années 90 dans la mode actuelle.", + "example_sentence_english": "There's a revival of 90s trends in current fashion.", + "pos": "noun", + "word_frequency": 25679 + }, + { + "word": "rhubarbe", + "article_with_word": "la rhubarbe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhubarb", + "example_sentence_native": "J'ai préparé une tarte à la rhubarbe.", + "example_sentence_english": "I made a rhubarb pie.", + "pos": "noun", + "word_frequency": 25680 + }, + { + "word": "roadster", + "article_with_word": "le roadster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roadster", + "example_sentence_native": "Il a acheté un magnifique roadster rouge.", + "example_sentence_english": "He bought a magnificent red roadster.", + "pos": "noun", + "word_frequency": 25682 + }, + { + "word": "rouquin", + "article_with_word": "le rouquin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "redhead (male)", + "example_sentence_native": "Mon ami est un rouquin avec beaucoup de taches de rousseur.", + "example_sentence_english": "My friend is a redhead with a lot of freckles.", + "pos": "noun", + "word_frequency": 25685 + }, + { + "word": "récuser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to challenge;to recuse", + "example_sentence_native": "L'avocat a décidé de récuser le juge.", + "example_sentence_english": "The lawyer decided to recuse the judge.", + "pos": "verb", + "word_frequency": 25687 + }, + { + "word": "régulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulated", + "example_sentence_native": "Le marché est fortement régulé par le gouvernement.", + "example_sentence_english": "The market is heavily regulated by the government.", + "pos": "adjective", + "word_frequency": 25688 + }, + { + "word": "réseautage", + "article_with_word": "le réseautage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "networking", + "example_sentence_native": "Le réseautage est essentiel pour trouver un emploi.", + "example_sentence_english": "Networking is essential for finding a job.", + "pos": "noun", + "word_frequency": 25689 + }, + { + "word": "réutilisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reusable", + "example_sentence_native": "Nous devrions utiliser des sacs réutilisables pour faire les courses.", + "example_sentence_english": "We should use reusable bags for shopping.", + "pos": "adjective", + "word_frequency": 25690 + }, + { + "word": "rôder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prowl;to lurk", + "example_sentence_native": "Un chat rôdait autour de la maison la nuit.", + "example_sentence_english": "A cat was prowling around the house at night.", + "pos": "verb", + "word_frequency": 25691 + }, + { + "word": "sari", + "article_with_word": "le sari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sari", + "example_sentence_native": "Elle portait un magnifique sari en soie.", + "example_sentence_english": "She was wearing a beautiful silk sari.", + "pos": "noun", + "word_frequency": 25692 + }, + { + "word": "sauge", + "article_with_word": "la sauge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sage", + "example_sentence_native": "J'ai ajouté de la sauge à la sauce.", + "example_sentence_english": "I added sage to the sauce.", + "pos": "noun", + "word_frequency": 25696 + }, + { + "word": "serval", + "article_with_word": "le serval", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serval", + "example_sentence_native": "Le serval est un chat sauvage africain.", + "example_sentence_english": "The serval is an African wild cat.", + "pos": "noun", + "word_frequency": 25702 + }, + { + "word": "shaker", + "article_with_word": "le shaker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shaker", + "example_sentence_native": "Il a préparé un cocktail dans un shaker.", + "example_sentence_english": "He prepared a cocktail in a shaker.", + "pos": "noun", + "word_frequency": 25704 + }, + { + "word": "sollicité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requested;sought after;solicited", + "example_sentence_native": "Son avis est très sollicité dans ce domaine.", + "example_sentence_english": "His opinion is highly sought after in this field.", + "pos": "adjective", + "word_frequency": 25707 + }, + { + "word": "spatule", + "article_with_word": "la spatule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spatula", + "example_sentence_native": "J'ai utilisé une spatule pour retourner les crêpes.", + "example_sentence_english": "I used a spatula to flip the pancakes.", + "pos": "noun", + "word_frequency": 25708 + }, + { + "word": "suppléer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to supplement;to make up for", + "example_sentence_native": "Il a dû suppléer au manque de personnel.", + "example_sentence_english": "He had to make up for the lack of staff.", + "pos": "verb", + "word_frequency": 25713 + }, + { + "word": "taquin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teasing;playful", + "example_sentence_native": "Il a un esprit très taquin.", + "example_sentence_english": "He has a very teasing spirit.", + "pos": "adjective", + "word_frequency": 25715 + }, + { + "word": "tchétchène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Chechen", + "example_sentence_native": "La culture tchétchène est riche et ancienne.", + "example_sentence_english": "Chechen culture is rich and ancient.", + "pos": "adjective", + "word_frequency": 25717 + }, + { + "word": "terrifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrified", + "example_sentence_native": "Il était terrifié par l'orage.", + "example_sentence_english": "He was terrified by the storm.", + "pos": "adjective", + "word_frequency": 25720 + }, + { + "word": "tisserand", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weaver", + "example_sentence_native": "Le tisserand travaille le fil avec habileté.", + "example_sentence_english": "The weaver works the thread skillfully.", + "pos": "noun", + "word_frequency": 25722 + }, + { + "word": "tourneur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turner (lathe operator)", + "example_sentence_native": "Le tourneur façonne le bois sur son tour.", + "example_sentence_english": "The turner shapes the wood on his lathe.", + "pos": "noun", + "word_frequency": 25723 + }, + { + "word": "typhoïde", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "typhoid", + "example_sentence_native": "La typhoïde est une maladie grave.", + "example_sentence_english": "Typhoid is a serious disease.", + "pos": "noun", + "word_frequency": 25726 + }, + { + "word": "valser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to waltz;to be thrown about", + "example_sentence_native": "Ils aiment valser sur la musique.", + "example_sentence_english": "They like to waltz to the music.", + "pos": "verb", + "word_frequency": 25730 + }, + { + "word": "variety", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variety", + "example_sentence_native": "Il y a une grande variety de produits.", + "example_sentence_english": "There is a wide variety of products.", + "pos": "noun", + "word_frequency": 25731 + }, + { + "word": "vermeil", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vermilion;gilded silver", + "example_sentence_native": "Elle portait une robe de couleur vermeil.", + "example_sentence_english": "She wore a vermilion-colored dress.", + "pos": "adjective", + "word_frequency": 25733 + }, + { + "word": "viager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "life annuity (as in 'vente en viager')", + "example_sentence_native": "Il a acheté une maison en viager.", + "example_sentence_english": "He bought a house with a life annuity.", + "pos": "adjective", + "word_frequency": 25734 + }, + { + "word": "victory", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victory", + "example_sentence_native": "L'équipe a célébré sa victory.", + "example_sentence_english": "The team celebrated its victory.", + "pos": "noun", + "word_frequency": 25737 + }, + { + "word": "vindicte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "vindication;retribution", + "example_sentence_native": "Il cherchait la vindicte après l'injustice subie.", + "example_sentence_english": "He sought retribution after the injustice suffered.", + "pos": "noun", + "word_frequency": 25739 + }, + { + "word": "vitriol", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vitriol (sulfuric acid;or bitter criticism)", + "example_sentence_native": "Ses paroles étaient pleines de vitriol.", + "example_sentence_english": "His words were full of vitriol.", + "pos": "noun", + "word_frequency": 25741 + }, + { + "word": "wok", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wok", + "example_sentence_native": "J'ai acheté un nouveau wok pour cuisiner.", + "example_sentence_english": "I bought a new wok for cooking.", + "pos": "noun", + "word_frequency": 25745 + }, + { + "word": "yiddish", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Yiddish", + "example_sentence_native": "Il parle couramment le yiddish.", + "example_sentence_english": "He speaks Yiddish fluently.", + "pos": "noun", + "word_frequency": 25747 + }, + { + "word": "épistémologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "epistemological", + "example_sentence_native": "C'est une question épistémologique complexe.", + "example_sentence_english": "It's a complex epistemological question.", + "pos": "adjective", + "word_frequency": 25750 + }, + { + "word": "étalé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spread out;laid out", + "example_sentence_native": "Les documents étaient étalés sur la table.", + "example_sentence_english": "The documents were spread out on the table.", + "pos": "adjective", + "word_frequency": 25752 + }, + { + "word": "étirement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stretching;stretch", + "example_sentence_native": "Faites des étirements avant l'exercice.", + "example_sentence_english": "Do stretches before exercise.", + "pos": "noun", + "word_frequency": 25753 + }, + { + "word": "abaissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lowered;brought down", + "example_sentence_native": "Le niveau de l'eau était abaissé.", + "example_sentence_english": "The water level was lowered.", + "pos": "adjective", + "word_frequency": 25754 + }, + { + "word": "abîmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damaged;spoiled", + "example_sentence_native": "Le livre était abîmé par l'eau.", + "example_sentence_english": "The book was damaged by water.", + "pos": "adjective", + "word_frequency": 25756 + }, + { + "word": "accoutrement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attire;outfit (often with a slightly negative or unusual connotation)", + "example_sentence_native": "Son accoutrement était étrange.", + "example_sentence_english": "His attire was strange.", + "pos": "noun", + "word_frequency": 25757 + }, + { + "word": "acrobate", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acrobat", + "example_sentence_native": "L'acrobate a fait un saut périlleux.", + "example_sentence_english": "The acrobat performed a somersault.", + "pos": "noun", + "word_frequency": 25758 + }, + { + "word": "acrobatie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acrobatics;stunt", + "example_sentence_native": "Les enfants admiraient les acrobaties des artistes.", + "example_sentence_english": "The children admired the artists' acrobatics.", + "pos": "noun", + "word_frequency": 25759 + }, + { + "word": "affinage", + "article_with_word": "l'affinage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refining;maturation (e.g.;of cheese)", + "example_sentence_native": "L'affinage du fromage prend plusieurs mois.", + "example_sentence_english": "The maturation of the cheese takes several months.", + "pos": "noun", + "word_frequency": 25761 + }, + { + "word": "aiguillage", + "article_with_word": "l'aiguillage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "switching;railway points;guidance", + "example_sentence_native": "L'aiguillage permet de changer la direction des trains.", + "example_sentence_english": "The switching allows trains to change direction.", + "pos": "noun", + "word_frequency": 25762 + }, + { + "word": "alarmant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alarming", + "example_sentence_native": "La situation est devenue alarmante.", + "example_sentence_english": "The situation has become alarming.", + "pos": "adjective", + "word_frequency": 25763 + }, + { + "word": "amène", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pleasant;amiable", + "example_sentence_native": "Son caractère amène le rend très apprécié.", + "example_sentence_english": "His amiable character makes him very appreciated.", + "pos": "adjective", + "word_frequency": 25764 + }, + { + "word": "ancient", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "old;ancient (assuming typo for 'ancien')", + "example_sentence_native": "C'est un très ancien château.", + "example_sentence_english": "It's a very old castle.", + "pos": "adjective", + "word_frequency": 25765 + }, + { + "word": "apothicaire", + "article_with_word": "l'apothicaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apothecary", + "example_sentence_native": "L'apothicaire préparait des remèdes à base de plantes.", + "example_sentence_english": "The apothecary prepared herbal remedies.", + "pos": "noun", + "word_frequency": 25766 + }, + { + "word": "apparenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to relate;to affiliate", + "example_sentence_native": "On peut apparenter ces deux styles musicaux.", + "example_sentence_english": "One can relate these two musical styles.", + "pos": "verb", + "word_frequency": 25768 + }, + { + "word": "argentique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silver halide;film (photography)", + "example_sentence_native": "Il préfère la photographie argentique au numérique.", + "example_sentence_english": "He prefers film photography to digital.", + "pos": "adjective", + "word_frequency": 25771 + }, + { + "word": "astérisque", + "article_with_word": "un astérisque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asterisk", + "example_sentence_native": "Veuillez noter l'astérisque à côté du mot.", + "example_sentence_english": "Please note the asterisk next to the word.", + "pos": "noun", + "word_frequency": 25775 + }, + { + "word": "axial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "axial", + "example_sentence_native": "L'axe de rotation est une ligne axiale.", + "example_sentence_english": "The axis of rotation is an axial line.", + "pos": "adjective", + "word_frequency": 25778 + }, + { + "word": "axé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focused;centered", + "example_sentence_native": "Le projet est axé sur l'innovation.", + "example_sentence_english": "The project is focused on innovation.", + "pos": "adjective", + "word_frequency": 25779 + }, + { + "word": "backup", + "article_with_word": "un backup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backup", + "example_sentence_native": "N'oubliez pas de faire un backup de vos données.", + "example_sentence_english": "Don't forget to make a backup of your data.", + "pos": "noun", + "word_frequency": 25780 + }, + { + "word": "baigneur", + "article_with_word": "un baigneur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bather;swimmer", + "example_sentence_native": "Les baigneurs profitaient du soleil sur la plage.", + "example_sentence_english": "The bathers enjoyed the sun on the beach.", + "pos": "noun", + "word_frequency": 25781 + }, + { + "word": "baquet", + "article_with_word": "un baquet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tub;bucket", + "example_sentence_native": "Il a rempli le baquet d'eau pour les fleurs.", + "example_sentence_english": "He filled the tub with water for the flowers.", + "pos": "noun", + "word_frequency": 25784 + }, + { + "word": "batailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to battle;to struggle", + "example_sentence_native": "Ils ont dû batailler pour obtenir gain de cause.", + "example_sentence_english": "They had to struggle to win their case.", + "pos": "verb", + "word_frequency": 25785 + }, + { + "word": "billon", + "article_with_word": "un billon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ridge (in agriculture);log (of wood)", + "example_sentence_native": "Les pommes de terre sont plantées sur des billons.", + "example_sentence_english": "Potatoes are planted on ridges.", + "pos": "noun", + "word_frequency": 25791 + }, + { + "word": "blaguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to joke;to kid", + "example_sentence_native": "Il aime bien blaguer avec ses amis.", + "example_sentence_english": "He likes to joke with his friends.", + "pos": "verb", + "word_frequency": 25793 + }, + { + "word": "bonification", + "article_with_word": "la bonification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bonus;improvement;rebate", + "example_sentence_native": "L'entreprise a accordé une bonification à ses employés.", + "example_sentence_english": "The company granted a bonus to its employees.", + "pos": "noun", + "word_frequency": 25795 + }, + { + "word": "brancard", + "article_with_word": "un brancard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stretcher", + "example_sentence_native": "Les ambulanciers ont transporté le blessé sur un brancard.", + "example_sentence_english": "The paramedics transported the injured person on a stretcher.", + "pos": "noun", + "word_frequency": 25797 + }, + { + "word": "brusquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rush;to be abrupt with", + "example_sentence_native": "Il ne faut pas brusquer les choses.", + "example_sentence_english": "One should not rush things.", + "pos": "verb", + "word_frequency": 25798 + }, + { + "word": "bâbord", + "article_with_word": "le bâbord", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "port (side of a ship)", + "example_sentence_native": "Le navire a viré à bâbord.", + "example_sentence_english": "The ship turned to port.", + "pos": "noun", + "word_frequency": 25799 + }, + { + "word": "campeur", + "article_with_word": "le campeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camper", + "example_sentence_native": "Le campeur a monté sa tente près du lac.", + "example_sentence_english": "The camper set up his tent near the lake.", + "pos": "noun", + "word_frequency": 25802 + }, + { + "word": "caricaturiste", + "article_with_word": "le caricaturiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caricaturist", + "example_sentence_native": "Le caricaturiste a dessiné un portrait amusant du politicien.", + "example_sentence_english": "The caricaturist drew a funny portrait of the politician.", + "pos": "noun", + "word_frequency": 25803 + }, + { + "word": "cauchemardesque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nightmarish", + "example_sentence_native": "La situation était absolument cauchemardesque.", + "example_sentence_english": "The situation was absolutely nightmarish.", + "pos": "adjective", + "word_frequency": 25804 + }, + { + "word": "cinglant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stinging;scathing", + "example_sentence_native": "Il a reçu une critique cinglante de son travail.", + "example_sentence_english": "He received a scathing review of his work.", + "pos": "adjective", + "word_frequency": 25809 + }, + { + "word": "combatif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combative;feisty", + "example_sentence_native": "Malgré les difficultés, il est resté très combatif.", + "example_sentence_english": "Despite the difficulties, he remained very combative.", + "pos": "adjective", + "word_frequency": 25811 + }, + { + "word": "complotiste", + "article_with_word": "le complotiste", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspiracy theorist", + "example_sentence_native": "Un complotiste croit que les événements sont le résultat de machinations secrètes.", + "example_sentence_english": "A conspiracy theorist believes that events are the result of secret machinations.", + "pos": "noun", + "word_frequency": 25812 + }, + { + "word": "concevable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceivable", + "example_sentence_native": "C'est la seule solution concevable à ce problème.", + "example_sentence_english": "This is the only conceivable solution to this problem.", + "pos": "adjective", + "word_frequency": 25813 + }, + { + "word": "conductivité", + "article_with_word": "la conductivité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conductivity", + "example_sentence_native": "La conductivité électrique du cuivre est très élevée.", + "example_sentence_english": "The electrical conductivity of copper is very high.", + "pos": "noun", + "word_frequency": 25814 + }, + { + "word": "copié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copied", + "example_sentence_native": "Ce document est une version copiée de l'original.", + "example_sentence_english": "This document is a copied version of the original.", + "pos": "adjective", + "word_frequency": 25815 + }, + { + "word": "cosy", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cozy", + "example_sentence_native": "Nous avons passé la soirée dans un petit café très cosy.", + "example_sentence_english": "We spent the evening in a very cozy little cafe.", + "pos": "adjective", + "word_frequency": 25817 + }, + { + "word": "coït", + "article_with_word": "le coït", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "coitus", + "example_sentence_native": "Le coït est l'acte sexuel entre deux individus.", + "example_sentence_english": "Coitus is the sexual act between two individuals.", + "pos": "noun", + "word_frequency": 25818 + }, + { + "word": "câblage", + "article_with_word": "le câblage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wiring", + "example_sentence_native": "Le câblage électrique de la maison doit être vérifié.", + "example_sentence_english": "The electrical wiring of the house needs to be checked.", + "pos": "noun", + "word_frequency": 25820 + }, + { + "word": "dauphinois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Dauphiné", + "example_sentence_native": "Le gratin dauphinois est un plat traditionnel français.", + "example_sentence_english": "Gratin dauphinois is a traditional French dish.", + "pos": "adjective", + "word_frequency": 25824 + }, + { + "word": "dictatorial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dictatorial", + "example_sentence_native": "Son attitude était de plus en plus dictatoriale.", + "example_sentence_english": "His attitude was becoming increasingly dictatorial.", + "pos": "adjective", + "word_frequency": 25828 + }, + { + "word": "discontinuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to discontinue", + "example_sentence_native": "L'entreprise a décidé de discontinuer la production de ce modèle.", + "example_sentence_english": "The company decided to discontinue the production of this model.", + "pos": "verb", + "word_frequency": 25829 + }, + { + "word": "disséminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disseminated;scattered", + "example_sentence_native": "Les informations étaient disséminées dans plusieurs documents.", + "example_sentence_english": "The information was disseminated across several documents.", + "pos": "adjective", + "word_frequency": 25830 + }, + { + "word": "djihadisme", + "article_with_word": "le djihadisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihadism", + "example_sentence_native": "Le djihadisme est une idéologie extrémiste.", + "example_sentence_english": "Jihadism is an extremist ideology.", + "pos": "noun", + "word_frequency": 25831 + }, + { + "word": "décroître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decrease;to wane", + "example_sentence_native": "La population de cette espèce a commencé à décroître.", + "example_sentence_english": "The population of this species began to decrease.", + "pos": "verb", + "word_frequency": 25834 + }, + { + "word": "déductible", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deductible", + "example_sentence_native": "Ces frais sont déductibles de vos impôts.", + "example_sentence_english": "These expenses are deductible from your taxes.", + "pos": "adjective", + "word_frequency": 25835 + }, + { + "word": "délabré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dilapidated;run-down", + "example_sentence_native": "La vieille maison était complètement délabrée.", + "example_sentence_english": "The old house was completely dilapidated.", + "pos": "adjective", + "word_frequency": 25836 + }, + { + "word": "désabonner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unsubscribe", + "example_sentence_native": "Vous pouvez vous désabonner à tout moment.", + "example_sentence_english": "You can unsubscribe at any time.", + "pos": "verb", + "word_frequency": 25838 + }, + { + "word": "désavouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disavow;to disown", + "example_sentence_native": "Le gouvernement a désavoué les actions de son ambassadeur.", + "example_sentence_english": "The government disavowed the actions of its ambassador.", + "pos": "verb", + "word_frequency": 25839 + }, + { + "word": "déviant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deviant", + "example_sentence_native": "Son comportement déviant a surpris tout le monde.", + "example_sentence_english": "His deviant behavior surprised everyone.", + "pos": "adjective", + "word_frequency": 25840 + }, + { + "word": "efficient", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficient", + "example_sentence_native": "C'est une méthode très efficiente pour apprendre.", + "example_sentence_english": "It's a very efficient method for learning.", + "pos": "adjective", + "word_frequency": 25842 + }, + { + "word": "emoji", + "article_with_word": "un emoji", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emoji", + "example_sentence_native": "J'ai envoyé un emoji souriant.", + "example_sentence_english": "I sent a smiling emoji.", + "pos": "noun", + "word_frequency": 25843 + }, + { + "word": "empathique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "empathetic", + "example_sentence_native": "Elle est très empathique envers les autres.", + "example_sentence_english": "She is very empathetic towards others.", + "pos": "adjective", + "word_frequency": 25844 + }, + { + "word": "encaissement", + "article_with_word": "l'encaissement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collection (of money);cashing", + "example_sentence_native": "L'encaissement des paiements est crucial pour l'entreprise.", + "example_sentence_english": "The collection of payments is crucial for the company.", + "pos": "noun", + "word_frequency": 25845 + }, + { + "word": "endetter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to indebt;to get into debt", + "example_sentence_native": "Il ne veut pas s'endetter pour acheter une voiture.", + "example_sentence_english": "He doesn't want to get into debt to buy a car.", + "pos": "verb", + "word_frequency": 25846 + }, + { + "word": "ending", + "article_with_word": "l'ending", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ending", + "example_sentence_native": "L'ending du film était inattendu.", + "example_sentence_english": "The ending of the movie was unexpected.", + "pos": "noun", + "word_frequency": 25847 + }, + { + "word": "envolé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flown away;vanished", + "example_sentence_native": "Le ballon s'est envolé dans le ciel.", + "example_sentence_english": "The balloon flew away into the sky.", + "pos": "adjective", + "word_frequency": 25848 + }, + { + "word": "escompté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expected;discounted", + "example_sentence_native": "Les résultats n'ont pas été ceux escomptés.", + "example_sentence_english": "The results were not the expected ones.", + "pos": "adjective", + "word_frequency": 25851 + }, + { + "word": "espacement", + "article_with_word": "l'espacement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spacing", + "example_sentence_native": "L'espacement entre les lignes est important pour la lisibilité.", + "example_sentence_english": "The spacing between the lines is important for readability.", + "pos": "noun", + "word_frequency": 25852 + }, + { + "word": "espresso", + "article_with_word": "un espresso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "espresso", + "example_sentence_native": "Je prends un espresso après le repas.", + "example_sentence_english": "I have an espresso after the meal.", + "pos": "noun", + "word_frequency": 25853 + }, + { + "word": "esquisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sketch;to outline", + "example_sentence_native": "Il a esquissé un plan rapide.", + "example_sentence_english": "He sketched a quick plan.", + "pos": "verb", + "word_frequency": 25854 + }, + { + "word": "estomper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blur;to fade;to soften", + "example_sentence_native": "Le temps estompe les souvenirs douloureux.", + "example_sentence_english": "Time blurs painful memories.", + "pos": "verb", + "word_frequency": 25855 + }, + { + "word": "evêque", + "article_with_word": "un évêque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bishop", + "example_sentence_native": "L'évêque a prononcé un discours important.", + "example_sentence_english": "The bishop delivered an important speech.", + "pos": "noun", + "word_frequency": 25857 + }, + { + "word": "exhortation", + "article_with_word": "l'exhortation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhortation;strong encouragement", + "example_sentence_native": "Son discours était une exhortation à l'action.", + "example_sentence_english": "His speech was an exhortation to action.", + "pos": "noun", + "word_frequency": 25858 + }, + { + "word": "flottement", + "article_with_word": "le flottement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wavering;hesitation;fluctuation", + "example_sentence_native": "Il y a eu un moment de flottement avant la décision finale.", + "example_sentence_english": "There was a moment of hesitation before the final decision.", + "pos": "noun", + "word_frequency": 25859 + }, + { + "word": "freak", + "article_with_word": "un freak", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freak", + "example_sentence_native": "C'est un vrai freak de la technologie.", + "example_sentence_english": "He's a real technology freak.", + "pos": "noun", + "word_frequency": 25860 + }, + { + "word": "gageure", + "article_with_word": "la gageure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "challenge;difficult undertaking", + "example_sentence_native": "Réussir ce projet est une véritable gageure.", + "example_sentence_english": "Succeeding in this project is a real challenge.", + "pos": "noun", + "word_frequency": 25861 + }, + { + "word": "gigot", + "article_with_word": "le gigot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leg (of lamb;mutton)", + "example_sentence_native": "Nous avons mangé un délicieux gigot d'agneau.", + "example_sentence_english": "We ate a delicious leg of lamb.", + "pos": "noun", + "word_frequency": 25867 + }, + { + "word": "glam", + "article_with_word": "le glam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glam (glamour)", + "example_sentence_native": "Elle a un style très glam.", + "example_sentence_english": "She has a very glam style.", + "pos": "noun", + "word_frequency": 25869 + }, + { + "word": "grognon", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grumpy;grumbling", + "example_sentence_native": "Il est toujours un peu grognon le matin.", + "example_sentence_english": "He's always a bit grumpy in the morning.", + "pos": "adjective", + "word_frequency": 25871 + }, + { + "word": "grégorien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Gregorian", + "example_sentence_native": "Le chant grégorien est une forme de musique sacrée.", + "example_sentence_english": "Gregorian chant is a form of sacred music.", + "pos": "adjective", + "word_frequency": 25874 + }, + { + "word": "gymnaste", + "article_with_word": "un gymnaste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnast", + "example_sentence_native": "La gymnaste a réalisé une performance incroyable.", + "example_sentence_english": "The gymnast performed an incredible routine.", + "pos": "noun", + "word_frequency": 25876 + }, + { + "word": "houiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coal-mining", + "example_sentence_native": "Le bassin houiller est une région riche en charbon.", + "example_sentence_english": "The coal-mining basin is a region rich in coal.", + "pos": "adjective", + "word_frequency": 25880 + }, + { + "word": "imaginé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imagined", + "example_sentence_native": "C'est une histoire imaginée de toutes pièces.", + "example_sentence_english": "It's a story imagined from scratch.", + "pos": "adjective", + "word_frequency": 25881 + }, + { + "word": "impressionnisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Impressionism", + "example_sentence_native": "L'impressionnisme est un mouvement artistique majeur du XIXe siècle.", + "example_sentence_english": "Impressionism is a major art movement of the 19th century.", + "pos": "noun", + "word_frequency": 25882 + }, + { + "word": "impétueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impetuous", + "example_sentence_native": "Il a un caractère impétueux et passionné.", + "example_sentence_english": "He has an impetuous and passionate character.", + "pos": "adjective", + "word_frequency": 25883 + }, + { + "word": "incantation", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incantation", + "example_sentence_native": "Les sorciers prononçaient des incantations mystérieuses.", + "example_sentence_english": "The sorcerers uttered mysterious incantations.", + "pos": "noun", + "word_frequency": 25884 + }, + { + "word": "incontinence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incontinence", + "example_sentence_native": "L'incontinence urinaire est un problème de santé courant.", + "example_sentence_english": "Urinary incontinence is a common health problem.", + "pos": "noun", + "word_frequency": 25885 + }, + { + "word": "inséré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inserted", + "example_sentence_native": "Le texte inséré dans le document est très clair.", + "example_sentence_english": "The text inserted into the document is very clear.", + "pos": "adjective", + "word_frequency": 25886 + }, + { + "word": "interdépendance", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interdependence", + "example_sentence_native": "Il y a une forte interdépendance entre les économies mondiales.", + "example_sentence_english": "There is a strong interdependence between global economies.", + "pos": "noun", + "word_frequency": 25887 + }, + { + "word": "intermède", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interlude", + "example_sentence_native": "Le concert a eu un court intermède avant la deuxième partie.", + "example_sentence_english": "The concert had a short interlude before the second part.", + "pos": "noun", + "word_frequency": 25888 + }, + { + "word": "interopérabilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "interoperability", + "example_sentence_native": "L'interopérabilité des systèmes est essentielle pour l'efficacité.", + "example_sentence_english": "System interoperability is essential for efficiency.", + "pos": "noun", + "word_frequency": 25889 + }, + { + "word": "ironiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ironize", + "example_sentence_native": "Il aime ironiser sur les travers de la société.", + "example_sentence_english": "He likes to ironize about the flaws of society.", + "pos": "verb", + "word_frequency": 25890 + }, + { + "word": "jonc", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rush (plant);bangle (jewelry)", + "example_sentence_native": "Elle portait un jonc en argent au poignet.", + "example_sentence_english": "She wore a silver bangle on her wrist.", + "pos": "noun", + "word_frequency": 25893 + }, + { + "word": "laponie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lapland", + "example_sentence_native": "La Laponie est une région du nord de l'Europe.", + "example_sentence_english": "Lapland is a region in Northern Europe.", + "pos": "noun", + "word_frequency": 25904 + }, + { + "word": "lavis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wash (in painting)", + "example_sentence_native": "L'artiste a utilisé la technique du lavis pour cette aquarelle.", + "example_sentence_english": "The artist used the wash technique for this watercolor.", + "pos": "noun", + "word_frequency": 25906 + }, + { + "word": "libellule", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dragonfly", + "example_sentence_native": "Une libellule a volé au-dessus de l'étang.", + "example_sentence_english": "A dragonfly flew over the pond.", + "pos": "noun", + "word_frequency": 25910 + }, + { + "word": "loris", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loris (primate)", + "example_sentence_native": "Le loris est un petit primate nocturne.", + "example_sentence_english": "The loris is a small nocturnal primate.", + "pos": "noun", + "word_frequency": 25914 + }, + { + "word": "mahal", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "palace;mansion", + "example_sentence_native": "Le Taj Mahal est un magnifique mahal en Inde.", + "example_sentence_english": "The Taj Mahal is a magnificent palace in India.", + "pos": "noun", + "word_frequency": 25919 + }, + { + "word": "maraîcher", + "article_with_word": "le maraîcher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "market gardener", + "example_sentence_native": "Le maraîcher vend des légumes frais sur le marché.", + "example_sentence_english": "The market gardener sells fresh vegetables at the market.", + "pos": "noun", + "word_frequency": 25921 + }, + { + "word": "mauritanien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mauritanian", + "example_sentence_native": "Il a des origines mauritaniennes par sa mère.", + "example_sentence_english": "He has Mauritanian origins through his mother.", + "pos": "adjective", + "word_frequency": 25924 + }, + { + "word": "mitre", + "article_with_word": "la mitre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mitre (bishop's hat)", + "example_sentence_native": "L'évêque portait une mitre ornée lors de la cérémonie.", + "example_sentence_english": "The bishop wore an ornate mitre during the ceremony.", + "pos": "noun", + "word_frequency": 25927 + }, + { + "word": "modelage", + "article_with_word": "le modelage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modeling (sculpture)", + "example_sentence_native": "Elle s'est inscrite à un atelier de modelage d'argile.", + "example_sentence_english": "She enrolled in a clay modeling workshop.", + "pos": "noun", + "word_frequency": 25929 + }, + { + "word": "morosité", + "article_with_word": "la morosité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gloom;despondency", + "example_sentence_native": "La morosité économique persiste malgré les efforts du gouvernement.", + "example_sentence_english": "The economic gloom persists despite government efforts.", + "pos": "noun", + "word_frequency": 25932 + }, + { + "word": "morve", + "article_with_word": "la morve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snot;mucus", + "example_sentence_native": "Il avait de la morve au nez à cause de son rhume.", + "example_sentence_english": "He had snot in his nose because of his cold.", + "pos": "noun", + "word_frequency": 25933 + }, + { + "word": "naturalisme", + "article_with_word": "le naturalisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "naturalism", + "example_sentence_native": "Le naturalisme est un courant artistique qui cherche à représenter la réalité sans idéalisation.", + "example_sentence_english": "Naturalism is an artistic movement that seeks to represent reality without idealization.", + "pos": "noun", + "word_frequency": 25939 + }, + { + "word": "neon", + "article_with_word": "le néon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neon", + "example_sentence_native": "Les lumières au néon de la ville illuminaient la nuit.", + "example_sentence_english": "The city's neon lights illuminated the night.", + "pos": "noun", + "word_frequency": 25940 + }, + { + "word": "noué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knotted;tied", + "example_sentence_native": "Ses cheveux étaient noués en une tresse serrée.", + "example_sentence_english": "Her hair was tied in a tight braid.", + "pos": "adjective", + "word_frequency": 25943 + }, + { + "word": "négligeant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "negligent;careless", + "example_sentence_native": "Il est souvent négligeant dans ses devoirs.", + "example_sentence_english": "He is often careless in his homework.", + "pos": "adjective", + "word_frequency": 25944 + }, + { + "word": "offusquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to offend;to take offense", + "example_sentence_native": "Ses propos ont offusqué une partie de l'audience.", + "example_sentence_english": "His remarks offended part of the audience.", + "pos": "verb", + "word_frequency": 25945 + }, + { + "word": "ontologique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "ontological", + "example_sentence_native": "La question de l'existence est une préoccupation ontologique majeure.", + "example_sentence_english": "The question of existence is a major ontological concern.", + "pos": "adjective", + "word_frequency": 25947 + }, + { + "word": "ophtalmologie", + "article_with_word": "l'ophtalmologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ophthalmology", + "example_sentence_native": "Il a choisi l'ophtalmologie comme spécialité médicale.", + "example_sentence_english": "He chose ophthalmology as his medical specialty.", + "pos": "noun", + "word_frequency": 25948 + }, + { + "word": "opposable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enforceable;opposable", + "example_sentence_native": "Ce contrat est opposable aux tiers.", + "example_sentence_english": "This contract is enforceable against third parties.", + "pos": "adjective", + "word_frequency": 25949 + }, + { + "word": "ouïghour", + "article_with_word": "un Ouïghour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Uyghur (person)", + "example_sentence_native": "Un Ouïghour est un membre d'un groupe ethnique turcophone d'Asie centrale.", + "example_sentence_english": "A Uyghur is a member of a Turkic ethnic group from Central Asia.", + "pos": "noun", + "word_frequency": 25951 + }, + { + "word": "passable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passable;acceptable", + "example_sentence_native": "Son niveau de français est passable pour un débutant.", + "example_sentence_english": "His French level is passable for a beginner.", + "pos": "adjective", + "word_frequency": 25953 + }, + { + "word": "penne", + "article_with_word": "la penne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penne (pasta)", + "example_sentence_native": "Nous avons préparé des pennes à la sauce tomate pour le dîner.", + "example_sentence_english": "We prepared penne with tomato sauce for dinner.", + "pos": "noun", + "word_frequency": 25956 + }, + { + "word": "plouc", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hick;bumpkin", + "example_sentence_native": "Il se sentait comme un plouc à Paris.", + "example_sentence_english": "He felt like a hick in Paris.", + "pos": "noun", + "word_frequency": 25961 + }, + { + "word": "popper", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party popper", + "example_sentence_native": "Les enfants ont fait éclater des poppers pour fêter l'anniversaire.", + "example_sentence_english": "The children popped party poppers to celebrate the birthday.", + "pos": "noun", + "word_frequency": 25963 + }, + { + "word": "poreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porous", + "example_sentence_native": "Cette pierre est très poreuse et absorbe l'eau facilement.", + "example_sentence_english": "This stone is very porous and absorbs water easily.", + "pos": "adjective", + "word_frequency": 25965 + }, + { + "word": "positivisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "positivism", + "example_sentence_native": "Le positivisme est une doctrine philosophique.", + "example_sentence_english": "Positivism is a philosophical doctrine.", + "pos": "noun", + "word_frequency": 25966 + }, + { + "word": "poétesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poetess", + "example_sentence_native": "Elle est une poétesse talentueuse, connue pour ses vers lyriques.", + "example_sentence_english": "She is a talented poetess, known for her lyrical verses.", + "pos": "noun", + "word_frequency": 25967 + }, + { + "word": "précité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aforementioned", + "example_sentence_native": "Veuillez vous référer à l'article précité.", + "example_sentence_english": "Please refer to the aforementioned article.", + "pos": "adjective", + "word_frequency": 25970 + }, + { + "word": "prédominant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predominant", + "example_sentence_native": "La couleur prédominante dans ce tableau est le bleu.", + "example_sentence_english": "The predominant color in this painting is blue.", + "pos": "adjective", + "word_frequency": 25971 + }, + { + "word": "préfigurer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prefigure;to foreshadow", + "example_sentence_native": "Ces événements semblent préfigurer un changement majeur.", + "example_sentence_english": "These events seem to prefigure a major change.", + "pos": "verb", + "word_frequency": 25972 + }, + { + "word": "prévôté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "provostship", + "example_sentence_native": "Sous l'Ancien Régime, la prévôté était une juridiction locale.", + "example_sentence_english": "Under the Ancien Régime, the provostship was a local jurisdiction.", + "pos": "noun", + "word_frequency": 25973 + }, + { + "word": "prêcheur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preacher", + "example_sentence_native": "Le prêcheur a prononcé un sermon inspirant.", + "example_sentence_english": "The preacher delivered an inspiring sermon.", + "pos": "noun", + "word_frequency": 25974 + }, + { + "word": "ptain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damn;hell (euphemism)", + "example_sentence_native": "Ptain, j'ai oublié mes clés !", + "example_sentence_english": "Damn, I forgot my keys!", + "pos": "noun", + "word_frequency": 25975 + }, + { + "word": "puceron", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aphid", + "example_sentence_native": "Les pucerons peuvent causer des dégâts importants aux plantes.", + "example_sentence_english": "Aphids can cause significant damage to plants.", + "pos": "noun", + "word_frequency": 25977 + }, + { + "word": "pylône", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pylon;mast", + "example_sentence_native": "Les lignes électriques sont supportées par de grands pylônes.", + "example_sentence_english": "Power lines are supported by large pylons.", + "pos": "noun", + "word_frequency": 25978 + }, + { + "word": "pègre", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "underworld;criminal gang", + "example_sentence_native": "Il a été impliqué dans des affaires de la pègre.", + "example_sentence_english": "He was involved in underworld affairs.", + "pos": "noun", + "word_frequency": 25980 + }, + { + "word": "pécuniaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pecuniary;financial", + "example_sentence_native": "Il a reçu une aide pécuniaire pour ses études.", + "example_sentence_english": "He received financial aid for his studies.", + "pos": "adjective", + "word_frequency": 25981 + }, + { + "word": "périmé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expired;outdated", + "example_sentence_native": "Ce yaourt est périmé, il faut le jeter.", + "example_sentence_english": "This yogurt is expired, it must be thrown away.", + "pos": "adjective", + "word_frequency": 25982 + }, + { + "word": "rapper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rap (music)", + "example_sentence_native": "Le jeune artiste a commencé à rapper à l'âge de quinze ans.", + "example_sentence_english": "The young artist started rapping at the age of fifteen.", + "pos": "verb", + "word_frequency": 25983 + }, + { + "word": "ravoir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to get back;to recover", + "example_sentence_native": "J'espère ravoir mon argent bientôt.", + "example_sentence_english": "I hope to get my money back soon.", + "pos": "verb", + "word_frequency": 25985 + }, + { + "word": "recalé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failed (an exam);rejected", + "example_sentence_native": "Il a été recalé à l'examen de conduite.", + "example_sentence_english": "He failed the driving test.", + "pos": "adjective", + "word_frequency": 25987 + }, + { + "word": "reformuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rephrase;to reformulate", + "example_sentence_native": "Pouvez-vous reformuler votre question s'il vous plaît ?", + "example_sentence_english": "Can you rephrase your question please?", + "pos": "verb", + "word_frequency": 25989 + }, + { + "word": "remballer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pack up;to put away", + "example_sentence_native": "Il a dû remballer ses affaires rapidement.", + "example_sentence_english": "He had to pack up his things quickly.", + "pos": "verb", + "word_frequency": 25991 + }, + { + "word": "requalification", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reclassification;retraining", + "example_sentence_native": "Le projet de requalification urbaine a été approuvé.", + "example_sentence_english": "The urban reclassification project has been approved.", + "pos": "noun", + "word_frequency": 25992 + }, + { + "word": "ripou", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corrupt cop;rotten apple", + "example_sentence_native": "Le film parle d'un policier ripou.", + "example_sentence_english": "The film is about a corrupt cop.", + "pos": "noun", + "word_frequency": 25995 + }, + { + "word": "ronfler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to snore;to rumble", + "example_sentence_native": "Mon grand-père a tendance à ronfler très fort la nuit.", + "example_sentence_english": "My grandfather tends to snore very loudly at night.", + "pos": "verb", + "word_frequency": 25997 + }, + { + "word": "réac", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reactionary (person)", + "example_sentence_native": "Mon voisin est un peu réac sur les questions de société.", + "example_sentence_english": "My neighbor is a bit reactionary on societal issues.", + "pos": "noun", + "word_frequency": 26000 + }, + { + "word": "rémois", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Reims", + "example_sentence_native": "Le jambon de Reims est une spécialité rémoise.", + "example_sentence_english": "Reims ham is a specialty from Reims.", + "pos": "adjective", + "word_frequency": 26001 + }, + { + "word": "sarde", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sardinian", + "example_sentence_native": "La cuisine sarde est délicieuse.", + "example_sentence_english": "Sardinian cuisine is delicious.", + "pos": "adjective", + "word_frequency": 26006 + }, + { + "word": "sarin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sarin", + "example_sentence_native": "Le gaz sarin est une arme chimique dangereuse.", + "example_sentence_english": "Sarin gas is a dangerous chemical weapon.", + "pos": "noun", + "word_frequency": 26007 + }, + { + "word": "sciatique", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sciatica", + "example_sentence_native": "Il souffre d'une sciatique depuis des semaines.", + "example_sentence_english": "He has been suffering from sciatica for weeks.", + "pos": "noun", + "word_frequency": 26010 + }, + { + "word": "sect", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sect", + "example_sentence_native": "Le groupe était considéré comme une secte dangereuse.", + "example_sentence_english": "The group was considered a dangerous sect.", + "pos": "noun", + "word_frequency": 26011 + }, + { + "word": "sente", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;track", + "example_sentence_native": "Nous avons suivi une petite sente à travers les bois.", + "example_sentence_english": "We followed a small path through the woods.", + "pos": "noun", + "word_frequency": 26012 + }, + { + "word": "shock", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shock", + "example_sentence_native": "L'annonce a provoqué un véritable shock.", + "example_sentence_english": "The announcement caused a real shock.", + "pos": "noun", + "word_frequency": 26013 + }, + { + "word": "slash", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slash (forward slash;or a cut)", + "example_sentence_native": "N'oubliez pas le slash dans l'adresse URL.", + "example_sentence_english": "Don't forget the slash in the URL address.", + "pos": "noun", + "word_frequency": 26017 + }, + { + "word": "soap", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soap opera", + "example_sentence_native": "Elle regarde son soap préféré tous les soirs.", + "example_sentence_english": "She watches her favorite soap opera every evening.", + "pos": "noun", + "word_frequency": 26018 + }, + { + "word": "surcroit", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus;excess", + "example_sentence_native": "Il y a eu un surcroît de travail cette semaine.", + "example_sentence_english": "There was an excess of work this week.", + "pos": "noun", + "word_frequency": 26028 + }, + { + "word": "syriaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Syriac", + "example_sentence_native": "Le syriaque est une langue araméenne.", + "example_sentence_english": "Syriac is an Aramaic language.", + "pos": "adjective", + "word_frequency": 26029 + }, + { + "word": "sédition", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sedition", + "example_sentence_native": "L'accusation de sédition a été portée contre lui.", + "example_sentence_english": "The charge of sedition was brought against him.", + "pos": "noun", + "word_frequency": 26030 + }, + { + "word": "taguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tag", + "example_sentence_native": "N'oublie pas de taguer tes amis sur la photo.", + "example_sentence_english": "Don't forget to tag your friends in the photo.", + "pos": "verb", + "word_frequency": 26031 + }, + { + "word": "tasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pack down;to settle", + "example_sentence_native": "Il faut tasser la terre autour de la plante.", + "example_sentence_english": "You need to pack down the soil around the plant.", + "pos": "verb", + "word_frequency": 26033 + }, + { + "word": "technocrate", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "technocrat", + "example_sentence_native": "Les décisions sont souvent prises par des technocrates.", + "example_sentence_english": "Decisions are often made by technocrats.", + "pos": "noun", + "word_frequency": 26034 + }, + { + "word": "toge", + "article_with_word": "la toge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toga", + "example_sentence_native": "Les sénateurs romains portaient une toge.", + "example_sentence_english": "Roman senators wore a toga.", + "pos": "noun", + "word_frequency": 26042 + }, + { + "word": "tranquillou", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chill;relaxed (informal)", + "example_sentence_native": "On est restés tranquillou à la maison ce soir.", + "example_sentence_english": "We stayed chill at home tonight.", + "pos": "adjective", + "word_frequency": 26043 + }, + { + "word": "transfer", + "article_with_word": "le transfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transfer", + "example_sentence_native": "Le transfert de fonds a été effectué.", + "example_sentence_english": "The fund transfer has been completed.", + "pos": "noun", + "word_frequency": 26044 + }, + { + "word": "transfrontalier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross-border", + "example_sentence_native": "La coopération transfrontalière est essentielle pour la région.", + "example_sentence_english": "Cross-border cooperation is essential for the region.", + "pos": "adjective", + "word_frequency": 26045 + }, + { + "word": "transparaître", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to show through;to become apparent", + "example_sentence_native": "Sa déception a transparaître dans ses yeux.", + "example_sentence_english": "His disappointment showed through in his eyes.", + "pos": "verb", + "word_frequency": 26046 + }, + { + "word": "traînée", + "article_with_word": "la traînée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trail;drag (physics)", + "example_sentence_native": "L'avion a laissé une longue traînée de condensation dans le ciel.", + "example_sentence_english": "The plane left a long condensation trail in the sky.", + "pos": "noun", + "word_frequency": 26047 + }, + { + "word": "troquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swap;to exchange", + "example_sentence_native": "Ils ont troqué leurs vieilles voitures contre des neuves.", + "example_sentence_english": "They swapped their old cars for new ones.", + "pos": "verb", + "word_frequency": 26049 + }, + { + "word": "tungstène", + "article_with_word": "le tungstène", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tungsten", + "example_sentence_native": "Le tungstène est un métal très résistant.", + "example_sentence_english": "Tungsten is a very resistant metal.", + "pos": "noun", + "word_frequency": 26050 + }, + { + "word": "universalisme", + "article_with_word": "l'universalisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "universalism", + "example_sentence_native": "L'universalisme est une doctrine philosophique.", + "example_sentence_english": "Universalism is a philosophical doctrine.", + "pos": "noun", + "word_frequency": 26053 + }, + { + "word": "urticaire", + "article_with_word": "l'urticaire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hives;nettle rash", + "example_sentence_native": "Elle a développé de l'urticaire après avoir mangé des fraises.", + "example_sentence_english": "She developed hives after eating strawberries.", + "pos": "noun", + "word_frequency": 26056 + }, + { + "word": "vectoriel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vectorial;vector", + "example_sentence_native": "Les graphiques vectoriels sont redimensionnables sans perte de qualité.", + "example_sentence_english": "Vector graphics are resizable without loss of quality.", + "pos": "adjective", + "word_frequency": 26060 + }, + { + "word": "verbaliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to verbalize;to put into words", + "example_sentence_native": "Il a eu du mal à verbaliser ses sentiments.", + "example_sentence_english": "He had difficulty verbalizing his feelings.", + "pos": "verb", + "word_frequency": 26061 + }, + { + "word": "verifier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to check;to verify", + "example_sentence_native": "N'oubliez pas de vérifier vos réponses.", + "example_sentence_english": "Don't forget to check your answers.", + "pos": "verb", + "word_frequency": 26063 + }, + { + "word": "visser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to screw (in)", + "example_sentence_native": "Il faut visser cette étagère au mur.", + "example_sentence_english": "You need to screw this shelf to the wall.", + "pos": "verb", + "word_frequency": 26064 + }, + { + "word": "visu", + "article_with_word": "le visu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visual (informal)", + "example_sentence_native": "On a eu le visu sur le suspect.", + "example_sentence_english": "We got a visual on the suspect.", + "pos": "noun", + "word_frequency": 26065 + }, + { + "word": "voyeurisme", + "article_with_word": "le voyeurisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voyeurism", + "example_sentence_native": "Le voyeurisme est une pratique controversée.", + "example_sentence_english": "Voyeurism is a controversial practice.", + "pos": "noun", + "word_frequency": 26066 + }, + { + "word": "zouave", + "article_with_word": "le zouave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zouave (French infantry soldier)", + "example_sentence_native": "Les zouaves étaient des régiments d'infanterie de l'armée française.", + "example_sentence_english": "Zouaves were infantry regiments of the French army.", + "pos": "noun", + "word_frequency": 26071 + }, + { + "word": "électrolyse", + "article_with_word": "l'électrolyse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electrolysis", + "example_sentence_native": "L'électrolyse est utilisée pour séparer les éléments chimiques.", + "example_sentence_english": "Electrolysis is used to separate chemical elements.", + "pos": "noun", + "word_frequency": 26072 + }, + { + "word": "énormité", + "article_with_word": "l'énormité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enormity;huge size;outrageousness", + "example_sentence_native": "L'énormité de la tâche nous a découragés.", + "example_sentence_english": "The enormity of the task discouraged us.", + "pos": "noun", + "word_frequency": 26073 + }, + { + "word": "épargné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spared;saved", + "example_sentence_native": "Il a été épargné par la catastrophe.", + "example_sentence_english": "He was spared by the disaster.", + "pos": "adjective", + "word_frequency": 26074 + }, + { + "word": "albertain", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Albertan", + "example_sentence_native": "Les Rocheuses albertaines sont magnifiques.", + "example_sentence_english": "The Albertan Rockies are magnificent.", + "pos": "adjective", + "word_frequency": 26076 + }, + { + "word": "allécher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to entice;to lure", + "example_sentence_native": "La promesse d'un salaire élevé a alléché de nombreux candidats.", + "example_sentence_english": "The promise of a high salary enticed many candidates.", + "pos": "verb", + "word_frequency": 26078 + }, + { + "word": "allégement", + "article_with_word": "l'allégement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relief;lightening", + "example_sentence_native": "L'allégement fiscal a été bien accueilli.", + "example_sentence_english": "The tax relief was well received.", + "pos": "noun", + "word_frequency": 26079 + }, + { + "word": "androïde", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "android", + "example_sentence_native": "Il a acheté un nouvel androïde pour l'aider à la maison.", + "example_sentence_english": "He bought a new android to help him at home.", + "pos": "noun", + "word_frequency": 26081 + }, + { + "word": "angoissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anxious", + "example_sentence_native": "Elle se sentait très angoissée avant l'examen.", + "example_sentence_english": "She felt very anxious before the exam.", + "pos": "adjective", + "word_frequency": 26082 + }, + { + "word": "annihiler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to annihilate", + "example_sentence_native": "Le virus a le pouvoir d'annihiler toutes les cellules infectées.", + "example_sentence_english": "The virus has the power to annihilate all infected cells.", + "pos": "verb", + "word_frequency": 26083 + }, + { + "word": "antipathique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant", + "example_sentence_native": "Son attitude était très antipathique.", + "example_sentence_english": "His attitude was very unpleasant.", + "pos": "adjective", + "word_frequency": 26084 + }, + { + "word": "apatride", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stateless person", + "example_sentence_native": "Il a vécu de nombreuses années en tant qu'apatride.", + "example_sentence_english": "He lived many years as a stateless person.", + "pos": "noun", + "word_frequency": 26085 + }, + { + "word": "arréter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stop", + "example_sentence_native": "Il faut arrêter de fumer.", + "example_sentence_english": "You must stop smoking.", + "pos": "verb", + "word_frequency": 26087 + }, + { + "word": "assaisonnement", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seasoning", + "example_sentence_native": "Ajoutez un peu d'assaisonnement à la salade.", + "example_sentence_english": "Add a little seasoning to the salad.", + "pos": "noun", + "word_frequency": 26088 + }, + { + "word": "assimilable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assimilable", + "example_sentence_native": "Ces nouvelles informations sont facilement assimilables.", + "example_sentence_english": "This new information is easily assimilable.", + "pos": "adjective", + "word_frequency": 26089 + }, + { + "word": "asséner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to strike", + "example_sentence_native": "Il a asséné un coup violent à son adversaire.", + "example_sentence_english": "He delivered a violent blow to his opponent.", + "pos": "verb", + "word_frequency": 26091 + }, + { + "word": "autocritique", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-criticism", + "example_sentence_native": "L'autocritique est essentielle pour s'améliorer.", + "example_sentence_english": "Self-criticism is essential for improvement.", + "pos": "noun", + "word_frequency": 26096 + }, + { + "word": "banda", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "band (music)", + "example_sentence_native": "La banda a joué de la musique entraînante.", + "example_sentence_english": "The band played lively music.", + "pos": "noun", + "word_frequency": 26100 + }, + { + "word": "barrique", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barrel", + "example_sentence_native": "Le vin vieillit dans des barriques de chêne.", + "example_sentence_english": "The wine ages in oak barrels.", + "pos": "noun", + "word_frequency": 26102 + }, + { + "word": "baveux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slimy", + "example_sentence_native": "L'escargot laissait une trace baveuse.", + "example_sentence_english": "The snail left a slimy trail.", + "pos": "adjective", + "word_frequency": 26104 + }, + { + "word": "blairer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stand (tolerate)", + "example_sentence_native": "Je ne peux pas blairer cette musique.", + "example_sentence_english": "I can't stand this music.", + "pos": "verb", + "word_frequency": 26110 + }, + { + "word": "ble", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheat", + "example_sentence_native": "Les champs de blé sont prêts pour la récolte.", + "example_sentence_english": "The wheat fields are ready for harvest.", + "pos": "noun", + "word_frequency": 26111 + }, + { + "word": "blogosphère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blogosphere", + "example_sentence_native": "La nouvelle a rapidement circulé dans la blogosphère.", + "example_sentence_english": "The news quickly spread through the blogosphere.", + "pos": "noun", + "word_frequency": 26112 + }, + { + "word": "bore", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boron", + "example_sentence_native": "Le bore est un élément chimique.", + "example_sentence_english": "Boron is a chemical element.", + "pos": "noun", + "word_frequency": 26113 + }, + { + "word": "brouillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scrambled", + "example_sentence_native": "L'image était brouillée à cause du mauvais signal.", + "example_sentence_english": "The image was blurred due to the bad signal.", + "pos": "adjective", + "word_frequency": 26117 + }, + { + "word": "burka", + "article_with_word": "la burka", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burqa", + "example_sentence_native": "La burka est un vêtement qui couvre tout le corps.", + "example_sentence_english": "The burqa is a garment that covers the entire body.", + "pos": "noun", + "word_frequency": 26120 + }, + { + "word": "bâillon", + "article_with_word": "le bâillon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gag", + "example_sentence_native": "Ils ont mis un bâillon sur sa bouche.", + "example_sentence_english": "They put a gag over his mouth.", + "pos": "noun", + "word_frequency": 26122 + }, + { + "word": "cambodgien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Cambodian", + "example_sentence_native": "La cuisine cambodgienne est délicieuse.", + "example_sentence_english": "Cambodian cuisine is delicious.", + "pos": "adjective", + "word_frequency": 26125 + }, + { + "word": "cambre", + "article_with_word": "la cambre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "camber", + "example_sentence_native": "La cambre du ski est importante pour la performance.", + "example_sentence_english": "The camber of the ski is important for performance.", + "pos": "noun", + "word_frequency": 26126 + }, + { + "word": "campagnard", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural", + "example_sentence_native": "Il a un style de vie très campagnard.", + "example_sentence_english": "He has a very rural lifestyle.", + "pos": "adjective", + "word_frequency": 26127 + }, + { + "word": "cardigan", + "article_with_word": "le cardigan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cardigan", + "example_sentence_native": "Elle a mis un cardigan pour se tenir chaud.", + "example_sentence_english": "She put on a cardigan to keep warm.", + "pos": "noun", + "word_frequency": 26129 + }, + { + "word": "cascadeur", + "article_with_word": "le cascadeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuntman", + "example_sentence_native": "Le cascadeur a réalisé une scène dangereuse.", + "example_sentence_english": "The stuntman performed a dangerous scene.", + "pos": "noun", + "word_frequency": 26130 + }, + { + "word": "causeur", + "article_with_word": "le causeur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chatterbox", + "example_sentence_native": "C'est un grand causeur, il aime parler de tout.", + "example_sentence_english": "He's a great talker, he likes to talk about everything.", + "pos": "noun", + "word_frequency": 26132 + }, + { + "word": "centrifuge", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centrifugal", + "example_sentence_native": "La force centrifuge pousse les objets vers l'extérieur.", + "example_sentence_english": "Centrifugal force pushes objects outwards.", + "pos": "adjective", + "word_frequency": 26133 + }, + { + "word": "cerbère", + "article_with_word": "le cerbère", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fierce guardian", + "example_sentence_native": "Le portier était un vrai cerbère, personne ne pouvait entrer.", + "example_sentence_english": "The doorman was a real fierce guardian, no one could enter.", + "pos": "noun", + "word_frequency": 26134 + }, + { + "word": "chaumière", + "article_with_word": "la chaumière", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thatched cottage", + "example_sentence_native": "Ils rêvent d'une petite chaumière à la campagne.", + "example_sentence_english": "They dream of a small thatched cottage in the countryside.", + "pos": "noun", + "word_frequency": 26137 + }, + { + "word": "cocotier", + "article_with_word": "le cocotier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coconut tree", + "example_sentence_native": "Les cocotiers bordent la plage tropicale.", + "example_sentence_english": "Coconut trees line the tropical beach.", + "pos": "noun", + "word_frequency": 26140 + }, + { + "word": "compilateur", + "article_with_word": "le compilateur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compiler", + "example_sentence_native": "Le compilateur transforme le code source en code exécutable.", + "example_sentence_english": "The compiler transforms source code into executable code.", + "pos": "noun", + "word_frequency": 26142 + }, + { + "word": "concentrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concentric", + "example_sentence_native": "Les cercles concentriques ont le même centre.", + "example_sentence_english": "Concentric circles have the same center.", + "pos": "adjective", + "word_frequency": 26143 + }, + { + "word": "conflictuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conflictual", + "example_sentence_native": "Leur relation est devenue très conflictuelle.", + "example_sentence_english": "Their relationship became very conflictual.", + "pos": "adjective", + "word_frequency": 26144 + }, + { + "word": "conformiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conformist", + "example_sentence_native": "Il n'est pas très conformiste dans ses idées.", + "example_sentence_english": "He is not very conformist in his ideas.", + "pos": "adjective", + "word_frequency": 26145 + }, + { + "word": "consonance", + "article_with_word": "la consonance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consonance", + "example_sentence_native": "Il y a une consonance entre leurs opinions.", + "example_sentence_english": "There is a consonance between their opinions.", + "pos": "noun", + "word_frequency": 26146 + }, + { + "word": "contrecoup", + "article_with_word": "le contrecoup", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repercussion", + "example_sentence_native": "La décision a eu un contrecoup inattendu.", + "example_sentence_english": "The decision had an unexpected repercussion.", + "pos": "noun", + "word_frequency": 26147 + }, + { + "word": "coquet", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pretty", + "example_sentence_native": "Elle porte une robe très coquette.", + "example_sentence_english": "She is wearing a very pretty dress.", + "pos": "adjective", + "word_frequency": 26149 + }, + { + "word": "cosmologie", + "article_with_word": "la cosmologie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmology", + "example_sentence_native": "La cosmologie étudie l'origine et l'évolution de l'univers.", + "example_sentence_english": "Cosmology studies the origin and evolution of the universe.", + "pos": "noun", + "word_frequency": 26150 + }, + { + "word": "crac", + "article_with_word": "le crac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack", + "example_sentence_native": "On a entendu un grand crac dans la forêt.", + "example_sentence_english": "We heard a loud crack in the forest.", + "pos": "noun", + "word_frequency": 26154 + }, + { + "word": "crin", + "article_with_word": "le crin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "horsehair", + "example_sentence_native": "L'archet du violon est fait de crin de cheval.", + "example_sentence_english": "The violin bow is made of horsehair.", + "pos": "noun", + "word_frequency": 26156 + }, + { + "word": "crisper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clench", + "example_sentence_native": "Il a crispé les poings de colère.", + "example_sentence_english": "He clenched his fists in anger.", + "pos": "verb", + "word_frequency": 26157 + }, + { + "word": "crouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse", + "example_sentence_native": "Le vieux pont menace de crouler.", + "example_sentence_english": "The old bridge threatens to collapse.", + "pos": "verb", + "word_frequency": 26158 + }, + { + "word": "crédule", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gullible", + "example_sentence_native": "Il est trop crédule et croit tout ce qu'on lui dit.", + "example_sentence_english": "He is too gullible and believes everything he is told.", + "pos": "adjective", + "word_frequency": 26159 + }, + { + "word": "crédulité", + "article_with_word": "la crédulité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gullibility;credulity", + "example_sentence_native": "Sa crédulité l'a souvent mis dans des situations difficiles.", + "example_sentence_english": "His gullibility often put him in difficult situations.", + "pos": "noun", + "word_frequency": 26160 + }, + { + "word": "cumulus", + "article_with_word": "le cumulus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cumulus cloud", + "example_sentence_native": "Des cumulus blancs flottaient dans le ciel bleu.", + "example_sentence_english": "White cumulus clouds floated in the blue sky.", + "pos": "noun", + "word_frequency": 26163 + }, + { + "word": "cybernétique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cybernetic", + "example_sentence_native": "Il étudie les systèmes cybernétiques.", + "example_sentence_english": "He studies cybernetic systems.", + "pos": "adjective", + "word_frequency": 26164 + }, + { + "word": "dahlia", + "article_with_word": "le dahlia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dahlia", + "example_sentence_native": "Les dahlias sont de belles fleurs d'été.", + "example_sentence_english": "Dahlias are beautiful summer flowers.", + "pos": "noun", + "word_frequency": 26168 + }, + { + "word": "democratie", + "article_with_word": "la démocratie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "democracy", + "example_sentence_native": "La démocratie est un système de gouvernement.", + "example_sentence_english": "Democracy is a system of government.", + "pos": "noun", + "word_frequency": 26172 + }, + { + "word": "destroyer", + "article_with_word": "le destroyer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroyer", + "example_sentence_native": "Le destroyer a patrouillé les eaux internationales.", + "example_sentence_english": "The destroyer patrolled international waters.", + "pos": "noun", + "word_frequency": 26174 + }, + { + "word": "diet", + "article_with_word": "la diète", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diet", + "example_sentence_native": "Elle suit une diète stricte pour sa santé.", + "example_sentence_english": "She follows a strict diet for her health.", + "pos": "noun", + "word_frequency": 26175 + }, + { + "word": "diode", + "article_with_word": "la diode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diode", + "example_sentence_native": "Une diode permet au courant de passer dans une seule direction.", + "example_sentence_english": "A diode allows current to flow in only one direction.", + "pos": "noun", + "word_frequency": 26176 + }, + { + "word": "disjoncteur", + "article_with_word": "le disjoncteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circuit breaker", + "example_sentence_native": "Le disjoncteur a sauté, coupant l'électricité.", + "example_sentence_english": "The circuit breaker tripped, cutting off the electricity.", + "pos": "noun", + "word_frequency": 26178 + }, + { + "word": "dissonance", + "article_with_word": "la dissonance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissonance", + "example_sentence_native": "Il y avait une dissonance entre ses paroles et ses actes.", + "example_sentence_english": "There was a dissonance between his words and his actions.", + "pos": "noun", + "word_frequency": 26179 + }, + { + "word": "drift", + "article_with_word": "le drift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drift (as in car drifting)", + "example_sentence_native": "Il a maîtrisé l'art du drift avec sa voiture de sport.", + "example_sentence_english": "He mastered the art of drifting with his sports car.", + "pos": "noun", + "word_frequency": 26183 + }, + { + "word": "déambuler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stroll;to wander", + "example_sentence_native": "Nous aimons déambuler dans les rues de la vieille ville.", + "example_sentence_english": "We like to stroll through the streets of the old town.", + "pos": "verb", + "word_frequency": 26184 + }, + { + "word": "déchetterie", + "article_with_word": "la déchetterie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waste disposal center;recycling center", + "example_sentence_native": "J'ai emmené mes vieux meubles à la déchetterie.", + "example_sentence_english": "I took my old furniture to the waste disposal center.", + "pos": "noun", + "word_frequency": 26185 + }, + { + "word": "décimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decimate;to destroy a large part of", + "example_sentence_native": "La maladie a décimé la population.", + "example_sentence_english": "The disease decimated the population.", + "pos": "verb", + "word_frequency": 26186 + }, + { + "word": "défibrillateur", + "article_with_word": "le défibrillateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defibrillator", + "example_sentence_native": "Un défibrillateur est disponible dans les lieux publics.", + "example_sentence_english": "A defibrillator is available in public places.", + "pos": "noun", + "word_frequency": 26187 + }, + { + "word": "dégonfler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deflate;to let down", + "example_sentence_native": "Le pneu de mon vélo s'est dégonflé.", + "example_sentence_english": "My bike tire deflated.", + "pos": "verb", + "word_frequency": 26188 + }, + { + "word": "désaffection", + "article_with_word": "la désaffection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disaffection;loss of interest", + "example_sentence_native": "Il y a une désaffection croissante pour la politique.", + "example_sentence_english": "There is a growing disaffection with politics.", + "pos": "noun", + "word_frequency": 26189 + }, + { + "word": "engranger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to harvest;to gather;to accumulate", + "example_sentence_native": "L'entreprise a engrangé d'énormes profits cette année.", + "example_sentence_english": "The company accumulated huge profits this year.", + "pos": "verb", + "word_frequency": 26191 + }, + { + "word": "entrepreneurial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrepreneurial", + "example_sentence_native": "Son esprit entrepreneurial l'a mené au succès.", + "example_sentence_english": "His entrepreneurial spirit led him to success.", + "pos": "adjective", + "word_frequency": 26192 + }, + { + "word": "envahissement", + "article_with_word": "l'envahissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invasion;encroachment", + "example_sentence_native": "L'envahissement des algues vertes est un problème majeur.", + "example_sentence_english": "The invasion of green algae is a major problem.", + "pos": "noun", + "word_frequency": 26193 + }, + { + "word": "envenimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to poison;to exacerbate;to worsen", + "example_sentence_native": "Leurs désaccords ont envenimé la situation.", + "example_sentence_english": "Their disagreements exacerbated the situation.", + "pos": "verb", + "word_frequency": 26194 + }, + { + "word": "erratique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erratic;unpredictable", + "example_sentence_native": "Son comportement erratique inquiète ses proches.", + "example_sentence_english": "His erratic behavior worries his relatives.", + "pos": "adjective", + "word_frequency": 26195 + }, + { + "word": "espacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spaced out;intermittent", + "example_sentence_native": "Les visites sont espacées de plusieurs mois.", + "example_sentence_english": "The visits are spaced out by several months.", + "pos": "adjective", + "word_frequency": 26196 + }, + { + "word": "euphorique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "euphoric", + "example_sentence_native": "Elle était euphorique après avoir reçu la bonne nouvelle.", + "example_sentence_english": "She was euphoric after receiving the good news.", + "pos": "adjective", + "word_frequency": 26197 + }, + { + "word": "expiation", + "article_with_word": "l'expiation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expiation;atonement", + "example_sentence_native": "Il cherchait l'expiation pour ses péchés.", + "example_sentence_english": "He sought expiation for his sins.", + "pos": "noun", + "word_frequency": 26198 + }, + { + "word": "fatalisme", + "article_with_word": "le fatalisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatalism", + "example_sentence_native": "Son fatalisme l'empêche d'agir.", + "example_sentence_english": "His fatalism prevents him from acting.", + "pos": "noun", + "word_frequency": 26199 + }, + { + "word": "fauteur", + "article_with_word": "le fauteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpetrator;culprit", + "example_sentence_native": "Le fauteur de troubles a été identifié par la police.", + "example_sentence_english": "The perpetrator of the troubles was identified by the police.", + "pos": "noun", + "word_frequency": 26200 + }, + { + "word": "firmament", + "article_with_word": "le firmament", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "firmament;sky", + "example_sentence_native": "Les étoiles scintillaient dans le firmament.", + "example_sentence_english": "The stars twinkled in the firmament.", + "pos": "noun", + "word_frequency": 26202 + }, + { + "word": "fluorescence", + "article_with_word": "la fluorescence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluorescence", + "example_sentence_native": "La fluorescence est utilisée dans de nombreuses applications scientifiques.", + "example_sentence_english": "Fluorescence is used in many scientific applications.", + "pos": "noun", + "word_frequency": 26205 + }, + { + "word": "forer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drill;to bore", + "example_sentence_native": "Il faut forer un trou dans le mur pour accrocher le tableau.", + "example_sentence_english": "You need to drill a hole in the wall to hang the painting.", + "pos": "verb", + "word_frequency": 26206 + }, + { + "word": "formula", + "article_with_word": "la formula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formula", + "example_sentence_native": "La Formula 1 est une course automobile très populaire.", + "example_sentence_english": "Formula 1 is a very popular car race.", + "pos": "noun", + "word_frequency": 26207 + }, + { + "word": "franchiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to franchise", + "example_sentence_native": "L'entreprise a décidé de franchiser son concept à l'étranger.", + "example_sentence_english": "The company decided to franchise its concept abroad.", + "pos": "verb", + "word_frequency": 26210 + }, + { + "word": "frigide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frigid;cold", + "example_sentence_native": "L'air était frigide ce matin-là.", + "example_sentence_english": "The air was frigid that morning.", + "pos": "adjective", + "word_frequency": 26211 + }, + { + "word": "frisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curly;frizzy", + "example_sentence_native": "Elle a de beaux cheveux frisés.", + "example_sentence_english": "She has beautiful curly hair.", + "pos": "adjective", + "word_frequency": 26212 + }, + { + "word": "generique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generic", + "example_sentence_native": "Ce médicament générique est moins cher que l'original.", + "example_sentence_english": "This generic medicine is cheaper than the original.", + "pos": "adjective", + "word_frequency": 26215 + }, + { + "word": "geôlier", + "article_with_word": "le geôlier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jailer;gaoler", + "example_sentence_native": "Le geôlier a ouvert la porte de la cellule.", + "example_sentence_english": "The jailer opened the cell door.", + "pos": "noun", + "word_frequency": 26216 + }, + { + "word": "gigolo", + "article_with_word": "le gigolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gigolo", + "example_sentence_native": "Il était connu comme un gigolo dans les cercles mondains.", + "example_sentence_english": "He was known as a gigolo in social circles.", + "pos": "noun", + "word_frequency": 26219 + }, + { + "word": "gondole", + "article_with_word": "la gondole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gondola", + "example_sentence_native": "Nous avons fait un tour en gondole à Venise.", + "example_sentence_english": "We took a gondola ride in Venice.", + "pos": "noun", + "word_frequency": 26220 + }, + { + "word": "graviter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gravitate;to orbit", + "example_sentence_native": "La Lune gravite autour de la Terre.", + "example_sentence_english": "The Moon gravitates around the Earth.", + "pos": "verb", + "word_frequency": 26223 + }, + { + "word": "grunge", + "article_with_word": "le grunge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grunge", + "example_sentence_native": "Le grunge est un genre musical apparu dans les années 90.", + "example_sentence_english": "Grunge is a music genre that emerged in the 90s.", + "pos": "noun", + "word_frequency": 26224 + }, + { + "word": "guild", + "article_with_word": "la guild", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guild", + "example_sentence_native": "Dans ce jeu, vous pouvez rejoindre une guild pour accomplir des quêtes.", + "example_sentence_english": "In this game, you can join a guild to complete quests.", + "pos": "noun", + "word_frequency": 26227 + }, + { + "word": "happening", + "article_with_word": "le happening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "happening (event;performance art)", + "example_sentence_native": "Un happening artistique a eu lieu dans la galerie.", + "example_sentence_english": "An artistic happening took place in the gallery.", + "pos": "noun", + "word_frequency": 26228 + }, + { + "word": "haro", + "article_with_word": "le haro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outcry;hue and cry", + "example_sentence_native": "La presse a jeté le haro sur le scandale.", + "example_sentence_english": "The press raised an outcry over the scandal.", + "pos": "noun", + "word_frequency": 26232 + }, + { + "word": "heros", + "article_with_word": "le heros", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hero", + "example_sentence_native": "Le héros du film a sauvé la ville.", + "example_sentence_english": "The hero of the film saved the city.", + "pos": "noun", + "word_frequency": 26233 + }, + { + "word": "hégémonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hegemonic", + "example_sentence_native": "La puissance hégémonique a dominé la région pendant des décennies.", + "example_sentence_english": "The hegemonic power dominated the region for decades.", + "pos": "adjective", + "word_frequency": 26235 + }, + { + "word": "héraut", + "article_with_word": "le héraut", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "herald", + "example_sentence_native": "Le héraut a annoncé l'arrivée du roi.", + "example_sentence_english": "The herald announced the arrival of the king.", + "pos": "noun", + "word_frequency": 26237 + }, + { + "word": "imprécision", + "article_with_word": "l'imprécision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprecision;inaccuracy", + "example_sentence_native": "Il y avait une certaine imprécision dans ses déclarations.", + "example_sentence_english": "There was a certain imprecision in his statements.", + "pos": "noun", + "word_frequency": 26238 + }, + { + "word": "incruste", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party crasher", + "example_sentence_native": "C'est une incruste, il n'était pas invité.", + "example_sentence_english": "He's a party crasher, he wasn't invited.", + "pos": "noun", + "word_frequency": 26240 + }, + { + "word": "indomptable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "untamable", + "example_sentence_native": "Son esprit est indomptable.", + "example_sentence_english": "His spirit is untamable.", + "pos": "adjective", + "word_frequency": 26241 + }, + { + "word": "inexactitude", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inaccuracy", + "example_sentence_native": "Il y a plusieurs inexactitudes dans ce rapport.", + "example_sentence_english": "There are several inaccuracies in this report.", + "pos": "noun", + "word_frequency": 26242 + }, + { + "word": "jouxter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to adjoin", + "example_sentence_native": "Les deux propriétés jouxtent la forêt.", + "example_sentence_english": "The two properties adjoin the forest.", + "pos": "verb", + "word_frequency": 26248 + }, + { + "word": "larynx", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "larynx", + "example_sentence_native": "Le larynx est un organe de la gorge.", + "example_sentence_english": "The larynx is an organ in the throat.", + "pos": "noun", + "word_frequency": 26255 + }, + { + "word": "liberticide", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "liberticidal", + "example_sentence_native": "Cette loi est considérée comme liberticide par certains.", + "example_sentence_english": "This law is considered liberticidal by some.", + "pos": "adjective", + "word_frequency": 26258 + }, + { + "word": "lubie", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whim", + "example_sentence_native": "Il a eu une nouvelle lubie de voyager.", + "example_sentence_english": "He had a new whim to travel.", + "pos": "noun", + "word_frequency": 26266 + }, + { + "word": "luxuriant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "luxuriant", + "example_sentence_native": "La végétation est luxuriante dans cette forêt tropicale.", + "example_sentence_english": "The vegetation is luxuriant in this tropical forest.", + "pos": "adjective", + "word_frequency": 26267 + }, + { + "word": "maki", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lemur", + "example_sentence_native": "Le maki est un primate de Madagascar.", + "example_sentence_english": "The lemur is a primate from Madagascar.", + "pos": "noun", + "word_frequency": 26269 + }, + { + "word": "marchandisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "commodification", + "example_sentence_native": "La marchandisation de l'art est un sujet de débat.", + "example_sentence_english": "The commodification of art is a subject of debate.", + "pos": "noun", + "word_frequency": 26271 + }, + { + "word": "marinier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bargeman", + "example_sentence_native": "Le marinier transportait des marchandises sur le canal.", + "example_sentence_english": "The bargeman transported goods on the canal.", + "pos": "noun", + "word_frequency": 26273 + }, + { + "word": "masochisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masochism", + "example_sentence_native": "Le masochisme est un concept en psychologie.", + "example_sentence_english": "Masochism is a concept in psychology.", + "pos": "noun", + "word_frequency": 26275 + }, + { + "word": "mayeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mayor (Belgian French)", + "example_sentence_native": "Le mayeur de la commune a inauguré le nouveau bâtiment.", + "example_sentence_english": "The mayor of the municipality inaugurated the new building.", + "pos": "noun", + "word_frequency": 26276 + }, + { + "word": "mimosa", + "article_with_word": "le mimosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mimosa", + "example_sentence_native": "Le mimosa fleurit en hiver et sent très bon.", + "example_sentence_english": "The mimosa blooms in winter and smells very good.", + "pos": "noun", + "word_frequency": 26283 + }, + { + "word": "moderniste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernist", + "example_sentence_native": "Son style architectural est très moderniste.", + "example_sentence_english": "His architectural style is very modernist.", + "pos": "adjective", + "word_frequency": 26285 + }, + { + "word": "monoparental", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "single-parent", + "example_sentence_native": "Elle élève ses enfants dans une famille monoparentale.", + "example_sentence_english": "She raises her children in a single-parent family.", + "pos": "adjective", + "word_frequency": 26287 + }, + { + "word": "napoléonien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Napoleonic", + "example_sentence_native": "Le Code civil est une œuvre napoléonienne majeure.", + "example_sentence_english": "The Civil Code is a major Napoleonic work.", + "pos": "adjective", + "word_frequency": 26293 + }, + { + "word": "niet", + "article_with_word": "le niet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "no (emphatic refusal)", + "example_sentence_native": "Il a dit niet à toutes nos propositions.", + "example_sentence_english": "He said no to all our proposals.", + "pos": "noun", + "word_frequency": 26295 + }, + { + "word": "nigérien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nigerien", + "example_sentence_native": "La culture nigérienne est très riche.", + "example_sentence_english": "Nigerien culture is very rich.", + "pos": "adjective", + "word_frequency": 26296 + }, + { + "word": "notariat", + "article_with_word": "le notariat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notary profession;notarial system", + "example_sentence_native": "Le notariat joue un rôle essentiel dans le droit immobilier.", + "example_sentence_english": "The notary profession plays an essential role in real estate law.", + "pos": "noun", + "word_frequency": 26299 + }, + { + "word": "nougat", + "article_with_word": "le nougat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nougat", + "example_sentence_native": "J'adore le nougat de Montélimar.", + "example_sentence_english": "I love Montélimar nougat.", + "pos": "noun", + "word_frequency": 26300 + }, + { + "word": "offset", + "article_with_word": "l'offset", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offset (printing)", + "example_sentence_native": "L'impression offset est une technique courante.", + "example_sentence_english": "Offset printing is a common technique.", + "pos": "noun", + "word_frequency": 26303 + }, + { + "word": "onyx", + "article_with_word": "l'onyx", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "onyx", + "example_sentence_native": "Elle portait un collier en onyx noir.", + "example_sentence_english": "She wore a black onyx necklace.", + "pos": "noun", + "word_frequency": 26305 + }, + { + "word": "otite", + "article_with_word": "l'otite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ear infection;otitis", + "example_sentence_native": "Le médecin a diagnostiqué une otite chez l'enfant.", + "example_sentence_english": "The doctor diagnosed an ear infection in the child.", + "pos": "noun", + "word_frequency": 26307 + }, + { + "word": "parapente", + "article_with_word": "le parapente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paragliding", + "example_sentence_native": "Faire du parapente offre une vue magnifique.", + "example_sentence_english": "Paragliding offers a magnificent view.", + "pos": "noun", + "word_frequency": 26308 + }, + { + "word": "parloir", + "article_with_word": "le parloir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visiting room (prison;monastery)", + "example_sentence_native": "Les familles se retrouvent au parloir de la prison.", + "example_sentence_english": "Families meet in the prison's visiting room.", + "pos": "noun", + "word_frequency": 26309 + }, + { + "word": "pastiche", + "article_with_word": "le pastiche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pastiche;imitation", + "example_sentence_native": "Ce roman est un pastiche des œuvres du 19e siècle.", + "example_sentence_english": "This novel is a pastiche of 19th-century works.", + "pos": "noun", + "word_frequency": 26311 + }, + { + "word": "patrouiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to patrol", + "example_sentence_native": "La police patrouille dans les rues la nuit.", + "example_sentence_english": "The police patrol the streets at night.", + "pos": "verb", + "word_frequency": 26312 + }, + { + "word": "penderie", + "article_with_word": "la penderie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wardrobe;closet", + "example_sentence_native": "Range tes vêtements dans la penderie.", + "example_sentence_english": "Put your clothes away in the wardrobe.", + "pos": "noun", + "word_frequency": 26314 + }, + { + "word": "pepin", + "article_with_word": "le pépin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seed (fruit)", + "example_sentence_native": "Il y a un pépin dans cette pomme.", + "example_sentence_english": "There's a seed in this apple.", + "pos": "noun", + "word_frequency": 26316 + }, + { + "word": "perruche", + "article_with_word": "la perruche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parakeet;budgerigar", + "example_sentence_native": "Ma perruche parle un peu.", + "example_sentence_english": "My parakeet talks a little.", + "pos": "noun", + "word_frequency": 26317 + }, + { + "word": "petrole", + "article_with_word": "le pétrole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oil;petroleum", + "example_sentence_native": "Le prix du pétrole a augmenté.", + "example_sentence_english": "The price of oil has increased.", + "pos": "noun", + "word_frequency": 26318 + }, + { + "word": "phréatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phreatic;groundwater (related)", + "example_sentence_native": "La nappe phréatique est une réserve d'eau souterraine.", + "example_sentence_english": "The water table (phreatic zone) is an underground water reserve.", + "pos": "adjective", + "word_frequency": 26319 + }, + { + "word": "pilastre", + "article_with_word": "le pilastre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilaster", + "example_sentence_native": "Le pilastre soutenait le balcon de l'ancienne bâtisse.", + "example_sentence_english": "The pilaster supported the balcony of the old building.", + "pos": "noun", + "word_frequency": 26320 + }, + { + "word": "pluraliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pluralistic", + "example_sentence_native": "Nous vivons dans une société de plus en plus pluraliste.", + "example_sentence_english": "We live in an increasingly pluralistic society.", + "pos": "adjective", + "word_frequency": 26323 + }, + { + "word": "potasse", + "article_with_word": "la potasse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "potash", + "example_sentence_native": "La potasse est un élément essentiel pour la croissance des plantes.", + "example_sentence_english": "Potash is an essential element for plant growth.", + "pos": "noun", + "word_frequency": 26328 + }, + { + "word": "présupposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to presuppose", + "example_sentence_native": "Cette théorie présuppose une connaissance approfondie du sujet.", + "example_sentence_english": "This theory presupposes a deep knowledge of the subject.", + "pos": "verb", + "word_frequency": 26332 + }, + { + "word": "quiproquo", + "article_with_word": "le quiproquo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding;mix-up", + "example_sentence_native": "Il y a eu un quiproquo sur l'heure de notre rendez-vous.", + "example_sentence_english": "There was a misunderstanding about the time of our appointment.", + "pos": "noun", + "word_frequency": 26336 + }, + { + "word": "racolage", + "article_with_word": "le racolage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soliciting;touting", + "example_sentence_native": "Le racolage est strictement interdit devant l'établissement.", + "example_sentence_english": "Soliciting is strictly forbidden in front of the establishment.", + "pos": "noun", + "word_frequency": 26337 + }, + { + "word": "radium", + "article_with_word": "le radium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radium", + "example_sentence_native": "Le radium a été découvert par Marie Curie.", + "example_sentence_english": "Radium was discovered by Marie Curie.", + "pos": "noun", + "word_frequency": 26338 + }, + { + "word": "raffoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be crazy about;to adore", + "example_sentence_native": "Ma sœur raffole des gâteaux au chocolat.", + "example_sentence_english": "My sister is crazy about chocolate cakes.", + "pos": "verb", + "word_frequency": 26339 + }, + { + "word": "ratisser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rake;to comb (an area)", + "example_sentence_native": "Il faut ratisser les feuilles mortes dans le jardin chaque automne.", + "example_sentence_english": "We need to rake the dead leaves in the garden every autumn.", + "pos": "verb", + "word_frequency": 26341 + }, + { + "word": "rebrousser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn back;to retrace (one's steps)", + "example_sentence_native": "Nous avons dû rebrousser chemin à cause du mauvais temps.", + "example_sentence_english": "We had to turn back because of the bad weather.", + "pos": "verb", + "word_frequency": 26344 + }, + { + "word": "recouper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cross-check;to cut again", + "example_sentence_native": "Il est important de recouper les informations avant de les diffuser.", + "example_sentence_english": "It is important to cross-check information before disseminating it.", + "pos": "verb", + "word_frequency": 26345 + }, + { + "word": "rectificatif", + "article_with_word": "le rectificatif", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correction;erratum", + "example_sentence_native": "Le journal a publié un rectificatif concernant l'article d'hier.", + "example_sentence_english": "The newspaper published a correction regarding yesterday's article.", + "pos": "noun", + "word_frequency": 26346 + }, + { + "word": "remorqueur", + "article_with_word": "le remorqueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tugboat;tow truck", + "example_sentence_native": "Le remorqueur a aidé le grand navire à accoster au port.", + "example_sentence_english": "The tugboat helped the large ship dock at the port.", + "pos": "noun", + "word_frequency": 26349 + }, + { + "word": "rhumatisme", + "article_with_word": "le rhumatisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rheumatism", + "example_sentence_native": "Mon grand-père souffre de rhumatisme aux genoux.", + "example_sentence_english": "My grandfather suffers from rheumatism in his knees.", + "pos": "noun", + "word_frequency": 26350 + }, + { + "word": "rondeau", + "article_with_word": "le rondeau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rondeau (a form of verse or music)", + "example_sentence_native": "Le poète a composé un rondeau sur le thème de l'amour courtois.", + "example_sentence_english": "The poet composed a rondeau on the theme of courtly love.", + "pos": "noun", + "word_frequency": 26354 + }, + { + "word": "rosace", + "article_with_word": "la rosace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rosette;rose window", + "example_sentence_native": "La rosace de la cathédrale est un chef-d'œuvre architectural.", + "example_sentence_english": "The rose window of the cathedral is an architectural masterpiece.", + "pos": "noun", + "word_frequency": 26356 + }, + { + "word": "régionalisation", + "article_with_word": "la régionalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regionalization", + "example_sentence_native": "La régionalisation des politiques publiques est un enjeu majeur.", + "example_sentence_english": "The regionalization of public policies is a major issue.", + "pos": "noun", + "word_frequency": 26359 + }, + { + "word": "réimpression", + "article_with_word": "la réimpression", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reprint", + "example_sentence_native": "La réimpression du livre est prévue pour le mois prochain.", + "example_sentence_english": "The reprint of the book is scheduled for next month.", + "pos": "noun", + "word_frequency": 26360 + }, + { + "word": "réintroduction", + "article_with_word": "la réintroduction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reintroduction", + "example_sentence_native": "La réintroduction des loups dans la région a été un succès.", + "example_sentence_english": "The reintroduction of wolves in the region has been a success.", + "pos": "noun", + "word_frequency": 26361 + }, + { + "word": "répercuter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pass on;to reflect", + "example_sentence_native": "L'augmentation des coûts va se répercuter sur les prix de vente.", + "example_sentence_english": "The increase in costs will be passed on to the selling prices.", + "pos": "verb", + "word_frequency": 26362 + }, + { + "word": "rétroactif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retroactive", + "example_sentence_native": "La nouvelle loi n'est pas rétroactive.", + "example_sentence_english": "The new law is not retroactive.", + "pos": "adjective", + "word_frequency": 26363 + }, + { + "word": "sadisme", + "article_with_word": "le sadisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sadism", + "example_sentence_native": "Le sadisme est une perversion sexuelle.", + "example_sentence_english": "Sadism is a sexual perversion.", + "pos": "noun", + "word_frequency": 26364 + }, + { + "word": "sautoir", + "article_with_word": "le sautoir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "long necklace;saltire", + "example_sentence_native": "Elle portait un élégant sautoir en perles.", + "example_sentence_english": "She was wearing an elegant long pearl necklace.", + "pos": "noun", + "word_frequency": 26367 + }, + { + "word": "senteur", + "article_with_word": "la senteur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scent;fragrance", + "example_sentence_native": "La douce senteur des fleurs embaumait la pièce.", + "example_sentence_english": "The sweet scent of the flowers filled the room.", + "pos": "noun", + "word_frequency": 26369 + }, + { + "word": "sikh", + "article_with_word": "un sikh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sikh", + "example_sentence_native": "Un sikh porte souvent un turban.", + "example_sentence_english": "A Sikh often wears a turban.", + "pos": "noun", + "word_frequency": 26372 + }, + { + "word": "somalien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Somali", + "example_sentence_native": "Il a rencontré un étudiant somalien.", + "example_sentence_english": "He met a Somali student.", + "pos": "adjective", + "word_frequency": 26377 + }, + { + "word": "spiritisme", + "article_with_word": "le spiritisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spiritism", + "example_sentence_native": "Le spiritisme est une doctrine philosophique et morale.", + "example_sentence_english": "Spiritism is a philosophical and moral doctrine.", + "pos": "noun", + "word_frequency": 26378 + }, + { + "word": "spoliation", + "article_with_word": "la spoliation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spoliation;dispossession", + "example_sentence_native": "La spoliation des biens a été dénoncée.", + "example_sentence_english": "The dispossession of assets was denounced.", + "pos": "noun", + "word_frequency": 26379 + }, + { + "word": "sporadique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sporadic", + "example_sentence_native": "Les pluies étaient sporadiques tout au long de la journée.", + "example_sentence_english": "The rains were sporadic throughout the day.", + "pos": "adjective", + "word_frequency": 26380 + }, + { + "word": "steward", + "article_with_word": "le steward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steward;flight attendant", + "example_sentence_native": "Le steward a servi les boissons aux passagers.", + "example_sentence_english": "The steward served drinks to the passengers.", + "pos": "noun", + "word_frequency": 26382 + }, + { + "word": "supersonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supersonic", + "example_sentence_native": "L'avion a atteint une vitesse supersonique.", + "example_sentence_english": "The plane reached a supersonic speed.", + "pos": "adjective", + "word_frequency": 26384 + }, + { + "word": "sérotonine", + "article_with_word": "la sérotonine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serotonin", + "example_sentence_native": "La sérotonine est un neurotransmetteur important.", + "example_sentence_english": "Serotonin is an important neurotransmitter.", + "pos": "noun", + "word_frequency": 26387 + }, + { + "word": "taffer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to work hard;to toil (slang)", + "example_sentence_native": "Il a dû taffer toute la nuit pour finir le projet.", + "example_sentence_english": "He had to work hard all night to finish the project.", + "pos": "verb", + "word_frequency": 26388 + }, + { + "word": "tassement", + "article_with_word": "le tassement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settlement;compaction", + "example_sentence_native": "Le tassement du sol a causé des fissures dans le mur.", + "example_sentence_english": "The settlement of the ground caused cracks in the wall.", + "pos": "noun", + "word_frequency": 26389 + }, + { + "word": "tatoueur", + "article_with_word": "le tatoueur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo artist", + "example_sentence_native": "Le tatoueur a créé un magnifique dessin sur son bras.", + "example_sentence_english": "The tattoo artist created a magnificent design on his arm.", + "pos": "noun", + "word_frequency": 26390 + }, + { + "word": "testeur", + "article_with_word": "le testeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tester", + "example_sentence_native": "Le testeur a trouvé plusieurs bugs dans le logiciel.", + "example_sentence_english": "The tester found several bugs in the software.", + "pos": "noun", + "word_frequency": 26393 + }, + { + "word": "thorium", + "article_with_word": "le thorium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thorium", + "example_sentence_native": "Le thorium est un élément chimique radioactif.", + "example_sentence_english": "Thorium is a radioactive chemical element.", + "pos": "noun", + "word_frequency": 26395 + }, + { + "word": "toulonnais", + "article_with_word": "un Toulonnais", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant of Toulon", + "example_sentence_native": "Les Toulonnais sont fiers de leur équipe de rugby.", + "example_sentence_english": "The inhabitants of Toulon are proud of their rugby team.", + "pos": "noun", + "word_frequency": 26397 + }, + { + "word": "tourmenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torment;to plague", + "example_sentence_native": "Ses doutes le tourmentaient sans cesse.", + "example_sentence_english": "His doubts tormented him constantly.", + "pos": "verb", + "word_frequency": 26398 + }, + { + "word": "trafiquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to traffic;to tamper with", + "example_sentence_native": "Il a été arrêté pour avoir trafiqué des documents.", + "example_sentence_english": "He was arrested for having tampered with documents.", + "pos": "verb", + "word_frequency": 26399 + }, + { + "word": "urgentiste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergency doctor", + "example_sentence_native": "L'urgentiste a rapidement examiné le patient.", + "example_sentence_english": "The emergency doctor quickly examined the patient.", + "pos": "noun", + "word_frequency": 26401 + }, + { + "word": "utérin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uterine", + "example_sentence_native": "La contraction utérine est un signe de travail.", + "example_sentence_english": "Uterine contraction is a sign of labor.", + "pos": "adjective", + "word_frequency": 26403 + }, + { + "word": "vehicule", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vehicle", + "example_sentence_native": "Ce véhicule est très rapide.", + "example_sentence_english": "This vehicle is very fast.", + "pos": "noun", + "word_frequency": 26405 + }, + { + "word": "verlan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Verlan (French argot)", + "example_sentence_native": "Le verlan est une forme d'argot français.", + "example_sentence_english": "Verlan is a form of French argot.", + "pos": "noun", + "word_frequency": 26406 + }, + { + "word": "vibe", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibe;atmosphere", + "example_sentence_native": "J'aime la vibe de ce café.", + "example_sentence_english": "I like the vibe of this cafe.", + "pos": "noun", + "word_frequency": 26407 + }, + { + "word": "vieillot", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old-fashioned;antiquated", + "example_sentence_native": "Ce meuble a un style un peu vieillot.", + "example_sentence_english": "This piece of furniture has a slightly old-fashioned style.", + "pos": "adjective", + "word_frequency": 26408 + }, + { + "word": "vétuste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dilapidated;decrepit", + "example_sentence_native": "Le bâtiment était vétuste et nécessitait des réparations.", + "example_sentence_english": "The building was dilapidated and needed repairs.", + "pos": "adjective", + "word_frequency": 26413 + }, + { + "word": "zigzag", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zigzag", + "example_sentence_native": "Le chemin faisait des zigzags dans la montagne.", + "example_sentence_english": "The path made zigzags in the mountain.", + "pos": "noun", + "word_frequency": 26415 + }, + { + "word": "ébouli", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rockfall;scree", + "example_sentence_native": "Un ébouli a bloqué la route de montagne.", + "example_sentence_english": "A rockfall blocked the mountain road.", + "pos": "noun", + "word_frequency": 26418 + }, + { + "word": "ébéniste", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabinetmaker", + "example_sentence_native": "L'ébéniste a restauré le vieux meuble.", + "example_sentence_english": "The cabinetmaker restored the old piece of furniture.", + "pos": "noun", + "word_frequency": 26419 + }, + { + "word": "éclectisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eclecticism", + "example_sentence_native": "Son style musical est caractérisé par un grand éclectisme.", + "example_sentence_english": "His musical style is characterized by great eclecticism.", + "pos": "noun", + "word_frequency": 26420 + }, + { + "word": "écrouer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imprison;to jail", + "example_sentence_native": "Le suspect a été écroué après son arrestation.", + "example_sentence_english": "The suspect was imprisoned after his arrest.", + "pos": "verb", + "word_frequency": 26421 + }, + { + "word": "éthylique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethylic;alcoholic", + "example_sentence_native": "L'alcool éthylique est utilisé comme désinfectant.", + "example_sentence_english": "Ethylic alcohol is used as a disinfectant.", + "pos": "adjective", + "word_frequency": 26422 + }, + { + "word": "évocateur", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evocative", + "example_sentence_native": "Cette musique est très évocatrice de mon enfance.", + "example_sentence_english": "This music is very evocative of my childhood.", + "pos": "adjective", + "word_frequency": 26423 + }, + { + "word": "accroitre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to increase;to grow", + "example_sentence_native": "Il faut accroître nos efforts.", + "example_sentence_english": "We must increase our efforts.", + "pos": "verb", + "word_frequency": 26427 + }, + { + "word": "agrafe", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "staple;clip", + "example_sentence_native": "J'ai besoin d'une agrafe pour ces papiers.", + "example_sentence_english": "I need a staple for these papers.", + "pos": "noun", + "word_frequency": 26430 + }, + { + "word": "alléchant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tempting;enticing", + "example_sentence_native": "Cette offre est très alléchante.", + "example_sentence_english": "This offer is very tempting.", + "pos": "adjective", + "word_frequency": 26434 + }, + { + "word": "alternateur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternator", + "example_sentence_native": "L'alternateur de la voiture est cassé.", + "example_sentence_english": "The car's alternator is broken.", + "pos": "noun", + "word_frequency": 26435 + }, + { + "word": "alvéole", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alveolus;cell;socket", + "example_sentence_native": "Les alvéoles pulmonaires permettent l'échange gazeux.", + "example_sentence_english": "The pulmonary alveoli allow gas exchange.", + "pos": "noun", + "word_frequency": 26436 + }, + { + "word": "analphabète", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illiterate person", + "example_sentence_native": "Il est difficile pour un analphabète de trouver du travail.", + "example_sentence_english": "It is difficult for an illiterate person to find work.", + "pos": "noun", + "word_frequency": 26437 + }, + { + "word": "analyseur", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "analyzer", + "example_sentence_native": "L'analyseur de spectre est un outil essentiel.", + "example_sentence_english": "The spectrum analyzer is an essential tool.", + "pos": "noun", + "word_frequency": 26438 + }, + { + "word": "anthracite", + "article_with_word": "l'anthracite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthracite", + "example_sentence_native": "L'anthracite est un type de charbon très dur et brillant.", + "example_sentence_english": "Anthracite is a very hard and shiny type of coal.", + "pos": "noun", + "word_frequency": 26441 + }, + { + "word": "antiraciste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-racist", + "example_sentence_native": "C'est une association antiraciste qui lutte contre les discriminations.", + "example_sentence_english": "It is an anti-racist association that fights against discrimination.", + "pos": "adjective", + "word_frequency": 26443 + }, + { + "word": "antiseptique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiseptic", + "example_sentence_native": "Appliquez une solution antiseptique sur la coupure pour éviter l'infection.", + "example_sentence_english": "Apply an antiseptic solution to the cut to prevent infection.", + "pos": "adjective", + "word_frequency": 26444 + }, + { + "word": "artichaut", + "article_with_word": "l'artichaut", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "artichoke", + "example_sentence_native": "J'ai préparé un délicieux artichaut à la vapeur pour le dîner.", + "example_sentence_english": "I prepared a delicious steamed artichoke for dinner.", + "pos": "noun", + "word_frequency": 26446 + }, + { + "word": "atoll", + "article_with_word": "l'atoll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atoll", + "example_sentence_native": "Les Maldives sont célèbres pour leurs magnifiques atolls coralliens.", + "example_sentence_english": "The Maldives are famous for their magnificent coral atolls.", + "pos": "noun", + "word_frequency": 26449 + }, + { + "word": "bao", + "article_with_word": "le bao", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bao (steamed bun)", + "example_sentence_native": "J'ai goûté un délicieux bao au porc dans ce restaurant asiatique.", + "example_sentence_english": "I tasted a delicious pork bao in this Asian restaurant.", + "pos": "noun", + "word_frequency": 26452 + }, + { + "word": "barquette", + "article_with_word": "la barquette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small tray;punnet", + "example_sentence_native": "J'ai acheté une barquette de framboises fraîches au marché.", + "example_sentence_english": "I bought a punnet of fresh raspberries at the market.", + "pos": "noun", + "word_frequency": 26454 + }, + { + "word": "beffroi", + "article_with_word": "le beffroi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belfry;bell tower", + "example_sentence_native": "Le beffroi de la ville domine la place principale.", + "example_sentence_english": "The city's belfry dominates the main square.", + "pos": "noun", + "word_frequency": 26458 + }, + { + "word": "bourrage", + "article_with_word": "le bourrage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuffing;jamming (e.g.;paper jam);padding", + "example_sentence_native": "Il y a eu un bourrage papier dans l'imprimante, je ne peux pas imprimer.", + "example_sentence_english": "There was a paper jam in the printer, I can't print.", + "pos": "noun", + "word_frequency": 26464 + }, + { + "word": "branchement", + "article_with_word": "le branchement", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection;branching", + "example_sentence_native": "Vérifiez le branchement du câble réseau avant de redémarrer l'ordinateur.", + "example_sentence_english": "Check the network cable connection before restarting the computer.", + "pos": "noun", + "word_frequency": 26465 + }, + { + "word": "brouillage", + "article_with_word": "le brouillage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jamming;scrambling (e.g.;radio signals);blurring", + "example_sentence_native": "Le brouillage des signaux radio a empêché la communication avec le navire.", + "example_sentence_english": "The jamming of radio signals prevented communication with the ship.", + "pos": "noun", + "word_frequency": 26467 + }, + { + "word": "bucolique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bucolic;pastoral", + "example_sentence_native": "Nous avons passé un après-midi bucolique à se promener dans les champs.", + "example_sentence_english": "We spent a bucolic afternoon walking in the fields.", + "pos": "adjective", + "word_frequency": 26468 + }, + { + "word": "buée", + "article_with_word": "la buée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mist;fog;condensation", + "example_sentence_native": "Il y a de la buée sur mes lunettes quand je sors du froid.", + "example_sentence_english": "There is condensation on my glasses when I come in from the cold.", + "pos": "noun", + "word_frequency": 26471 + }, + { + "word": "cartésien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cartesian;logical;rational", + "example_sentence_native": "Son esprit est très cartésien, il analyse tout avec logique.", + "example_sentence_english": "His mind is very Cartesian, he analyzes everything with logic.", + "pos": "adjective", + "word_frequency": 26472 + }, + { + "word": "chaland", + "article_with_word": "le chaland", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customer;barge", + "example_sentence_native": "Les commerçants ont mis des promotions pour attirer le chaland.", + "example_sentence_english": "Shopkeepers put on promotions to attract customers.", + "pos": "noun", + "word_frequency": 26474 + }, + { + "word": "charabia", + "article_with_word": "le charabia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gibberish;jargon", + "example_sentence_native": "Je n'ai rien compris à son explication, c'était du pur charabia.", + "example_sentence_english": "I didn't understand anything in his explanation, it was pure gibberish.", + "pos": "noun", + "word_frequency": 26475 + }, + { + "word": "chaste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaste;pure", + "example_sentence_native": "Elle a mené une vie simple et chaste, loin des tentations.", + "example_sentence_english": "She led a simple and chaste life, far from temptations.", + "pos": "adjective", + "word_frequency": 26476 + }, + { + "word": "cognition", + "article_with_word": "la cognition", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cognition", + "example_sentence_native": "La cognition est l'étude des processus mentaux comme la mémoire et le raisonnement.", + "example_sentence_english": "Cognition is the study of mental processes like memory and reasoning.", + "pos": "noun", + "word_frequency": 26478 + }, + { + "word": "complaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to please", + "example_sentence_native": "Il se complaît dans la solitude.", + "example_sentence_english": "He revels in solitude.", + "pos": "verb", + "word_frequency": 26480 + }, + { + "word": "consciencieusement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscientiously", + "example_sentence_native": "Elle a travaillé consciencieusement sur son projet.", + "example_sentence_english": "She worked conscientiously on her project.", + "pos": "adverb", + "word_frequency": 26481 + }, + { + "word": "cornemuse", + "article_with_word": "la cornemuse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bagpipes", + "example_sentence_native": "Le son de la cornemuse est très distinctif.", + "example_sentence_english": "The sound of the bagpipes is very distinctive.", + "pos": "noun", + "word_frequency": 26482 + }, + { + "word": "cueilleur", + "article_with_word": "le cueilleur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picker", + "example_sentence_native": "Les cueilleurs de cerises commencent tôt le matin.", + "example_sentence_english": "The cherry pickers start early in the morning.", + "pos": "noun", + "word_frequency": 26483 + }, + { + "word": "cvs", + "article_with_word": "les CVs", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "CVs", + "example_sentence_native": "J'ai envoyé plusieurs CVs pour ce poste.", + "example_sentence_english": "I sent several CVs for this position.", + "pos": "noun", + "word_frequency": 26484 + }, + { + "word": "dahl", + "article_with_word": "le dahl", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dahl", + "example_sentence_native": "Nous avons mangé un délicieux dahl aux lentilles corail.", + "example_sentence_english": "We ate a delicious red lentil dahl.", + "pos": "noun", + "word_frequency": 26485 + }, + { + "word": "densification", + "article_with_word": "la densification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "densification", + "example_sentence_native": "La densification urbaine est un enjeu majeur.", + "example_sentence_english": "Urban densification is a major issue.", + "pos": "noun", + "word_frequency": 26490 + }, + { + "word": "despotisme", + "article_with_word": "le despotisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despotism", + "example_sentence_native": "Le despotisme est une forme de gouvernement autoritaire.", + "example_sentence_english": "Despotism is a form of authoritarian government.", + "pos": "noun", + "word_frequency": 26491 + }, + { + "word": "diatribe", + "article_with_word": "la diatribe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diatribe", + "example_sentence_native": "Il a prononcé une longue diatribe contre le gouvernement.", + "example_sentence_english": "He delivered a long diatribe against the government.", + "pos": "noun", + "word_frequency": 26494 + }, + { + "word": "diffamatoire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defamatory", + "example_sentence_native": "Ces propos sont considérés comme diffamatoires.", + "example_sentence_english": "These remarks are considered defamatory.", + "pos": "adjective", + "word_frequency": 26495 + }, + { + "word": "différencié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "differentiated", + "example_sentence_native": "Nous proposons un enseignement différencié pour chaque élève.", + "example_sentence_english": "We offer differentiated instruction for each student.", + "pos": "adjective", + "word_frequency": 26496 + }, + { + "word": "discontinuité", + "article_with_word": "la discontinuité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discontinuity", + "example_sentence_native": "Il y a une discontinuité dans la série de données.", + "example_sentence_english": "There is a discontinuity in the data series.", + "pos": "noun", + "word_frequency": 26499 + }, + { + "word": "douve", + "article_with_word": "la douve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moat", + "example_sentence_native": "Le château était entouré d'une profonde douve.", + "example_sentence_english": "The castle was surrounded by a deep moat.", + "pos": "noun", + "word_frequency": 26500 + }, + { + "word": "dysenterie", + "article_with_word": "la dysenterie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dysentery", + "example_sentence_native": "La dysenterie est une infection intestinale grave.", + "example_sentence_english": "Dysentery is a severe intestinal infection.", + "pos": "noun", + "word_frequency": 26501 + }, + { + "word": "débouler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to burst in", + "example_sentence_native": "Il a déboulé dans la pièce sans frapper.", + "example_sentence_english": "He burst into the room without knocking.", + "pos": "verb", + "word_frequency": 26502 + }, + { + "word": "déclasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to downgrade", + "example_sentence_native": "L'équipe a été déclassée après la défaite.", + "example_sentence_english": "The team was downgraded after the defeat.", + "pos": "verb", + "word_frequency": 26503 + }, + { + "word": "défavoriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disadvantage", + "example_sentence_native": "Les nouvelles lois risquent de défavoriser les petites entreprises.", + "example_sentence_english": "The new laws risk disadvantaging small businesses.", + "pos": "verb", + "word_frequency": 26504 + }, + { + "word": "démagogique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demagogic", + "example_sentence_native": "Son discours était purement démagogique.", + "example_sentence_english": "His speech was purely demagogic.", + "pos": "adjective", + "word_frequency": 26505 + }, + { + "word": "eleve", + "article_with_word": "un élève", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student", + "example_sentence_native": "Chaque élève doit faire ses devoirs.", + "example_sentence_english": "Every student must do their homework.", + "pos": "noun", + "word_frequency": 26508 + }, + { + "word": "enthousiasmer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enthuse", + "example_sentence_native": "Son idée a enthousiasmé toute l'équipe.", + "example_sentence_english": "His idea enthused the whole team.", + "pos": "verb", + "word_frequency": 26510 + }, + { + "word": "entreposer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to store", + "example_sentence_native": "Nous devons entreposer les marchandises dans l'entrepôt.", + "example_sentence_english": "We need to store the goods in the warehouse.", + "pos": "verb", + "word_frequency": 26511 + }, + { + "word": "ersatz", + "article_with_word": "un ersatz", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "substitute", + "example_sentence_native": "Ce café est un ersatz de mauvaise qualité.", + "example_sentence_english": "This coffee is a poor quality substitute.", + "pos": "noun", + "word_frequency": 26512 + }, + { + "word": "fantasia", + "article_with_word": "la fantasia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fantasy", + "example_sentence_native": "Le compositeur a écrit une fantasia pour piano.", + "example_sentence_english": "The composer wrote a fantasia for piano.", + "pos": "noun", + "word_frequency": 26514 + }, + { + "word": "fataliste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatalistic", + "example_sentence_native": "Il a une attitude très fataliste face à la vie.", + "example_sentence_english": "He has a very fatalistic attitude towards life.", + "pos": "adjective", + "word_frequency": 26515 + }, + { + "word": "fermenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ferment", + "example_sentence_native": "Le jus de raisin fermente pour devenir du vin.", + "example_sentence_english": "Grape juice ferments to become wine.", + "pos": "verb", + "word_frequency": 26518 + }, + { + "word": "ferret", + "article_with_word": "le ferret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ferret", + "example_sentence_native": "Le ferret est un animal domestique populaire.", + "example_sentence_english": "The ferret is a popular pet.", + "pos": "noun", + "word_frequency": 26519 + }, + { + "word": "flanquer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give (a blow);to throw", + "example_sentence_native": "Il a flanqué une gifle à son adversaire.", + "example_sentence_english": "He gave his opponent a slap.", + "pos": "verb", + "word_frequency": 26520 + }, + { + "word": "fleuret", + "article_with_word": "le fleuret", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foil (fencing)", + "example_sentence_native": "Le fleuret est une arme légère utilisée en escrime.", + "example_sentence_english": "The foil is a light weapon used in fencing.", + "pos": "noun", + "word_frequency": 26521 + }, + { + "word": "flopée", + "article_with_word": "une flopée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "a whole lot;a bunch", + "example_sentence_native": "Il y avait une flopée de gens à la fête.", + "example_sentence_english": "There was a whole lot of people at the party.", + "pos": "noun", + "word_frequency": 26522 + }, + { + "word": "fraichement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freshly;recently", + "example_sentence_native": "Le pain est fraîchement sorti du four.", + "example_sentence_english": "The bread is freshly out of the oven.", + "pos": "adverb", + "word_frequency": 26526 + }, + { + "word": "frontalement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontally;head-on", + "example_sentence_native": "La voiture a heurté l'arbre frontalement.", + "example_sentence_english": "The car hit the tree head-on.", + "pos": "adverb", + "word_frequency": 26528 + }, + { + "word": "frontispice", + "article_with_word": "le frontispice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frontispiece", + "example_sentence_native": "Le frontispice du livre était magnifiquement illustré.", + "example_sentence_english": "The frontispiece of the book was beautifully illustrated.", + "pos": "noun", + "word_frequency": 26529 + }, + { + "word": "frénétiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frantically", + "example_sentence_native": "Il cherchait frénétiquement ses clés.", + "example_sentence_english": "He was frantically looking for his keys.", + "pos": "adverb", + "word_frequency": 26530 + }, + { + "word": "fétichiste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetishistic", + "example_sentence_native": "Il a une approche fétichiste de la collection d'objets rares.", + "example_sentence_english": "He has a fetishistic approach to collecting rare objects.", + "pos": "adjective", + "word_frequency": 26534 + }, + { + "word": "gammé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gamma-shaped;gamma-related", + "example_sentence_native": "Le rayonnement gammé est très énergétique.", + "example_sentence_english": "Gamma radiation is very energetic.", + "pos": "adjective", + "word_frequency": 26535 + }, + { + "word": "gazier", + "article_with_word": "le gazier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gas worker;gas company", + "example_sentence_native": "Le gazier est venu réparer la fuite.", + "example_sentence_english": "The gas worker came to fix the leak.", + "pos": "noun", + "word_frequency": 26539 + }, + { + "word": "gentillement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kindly;nicely", + "example_sentence_native": "Il m'a gentillement aidé à porter mes sacs.", + "example_sentence_english": "He kindly helped me carry my bags.", + "pos": "adverb", + "word_frequency": 26540 + }, + { + "word": "givre", + "article_with_word": "le givre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frost;hoarfrost", + "example_sentence_native": "Le givre recouvrait les branches des arbres.", + "example_sentence_english": "Frost covered the branches of the trees.", + "pos": "noun", + "word_frequency": 26542 + }, + { + "word": "glissade", + "article_with_word": "la glissade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slip;slide", + "example_sentence_native": "Il a fait une glissade sur la glace.", + "example_sentence_english": "He had a slip on the ice.", + "pos": "noun", + "word_frequency": 26543 + }, + { + "word": "gouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to taste;to have a snack", + "example_sentence_native": "Voulez-vous goûter ce fromage?", + "example_sentence_english": "Do you want to taste this cheese?", + "pos": "verb", + "word_frequency": 26544 + }, + { + "word": "gracier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pardon;to grant a reprieve", + "example_sentence_native": "Le président a décidé de gracier le condamné.", + "example_sentence_english": "The president decided to pardon the convict.", + "pos": "verb", + "word_frequency": 26545 + }, + { + "word": "hydrographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydrographic", + "example_sentence_native": "La carte hydrographique montre les cours d'eau.", + "example_sentence_english": "The hydrographic map shows the waterways.", + "pos": "adjective", + "word_frequency": 26553 + }, + { + "word": "hâter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hasten;to hurry", + "example_sentence_native": "Il faut hâter la décision.", + "example_sentence_english": "The decision must be hastened.", + "pos": "verb", + "word_frequency": 26554 + }, + { + "word": "imbiber", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to soak;to imbue", + "example_sentence_native": "Le tissu a imbibé l'eau.", + "example_sentence_english": "The fabric soaked up the water.", + "pos": "verb", + "word_frequency": 26557 + }, + { + "word": "impraticable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impassable;impractical", + "example_sentence_native": "Le chemin est devenu impraticable après la pluie.", + "example_sentence_english": "The path became impassable after the rain.", + "pos": "adjective", + "word_frequency": 26558 + }, + { + "word": "impérieux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperious;urgent;compelling", + "example_sentence_native": "Il ressentait un besoin impérieux de partir.", + "example_sentence_english": "He felt an imperious need to leave.", + "pos": "adjective", + "word_frequency": 26559 + }, + { + "word": "incidemment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incidentally", + "example_sentence_native": "Incidemment, avez-vous vu mon parapluie?", + "example_sentence_english": "Incidentally, have you seen my umbrella?", + "pos": "adverb", + "word_frequency": 26560 + }, + { + "word": "infondé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfounded", + "example_sentence_native": "Cette accusation est totalement infondée.", + "example_sentence_english": "This accusation is totally unfounded.", + "pos": "adjective", + "word_frequency": 26561 + }, + { + "word": "inique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iniquitous;unjust", + "example_sentence_native": "C'est une décision inique qui va à l'encontre de la justice.", + "example_sentence_english": "It's an iniquitous decision that goes against justice.", + "pos": "adjective", + "word_frequency": 26562 + }, + { + "word": "joaillier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jeweler", + "example_sentence_native": "Le joaillier a réparé ma bague.", + "example_sentence_english": "The jeweler repaired my ring.", + "pos": "noun", + "word_frequency": 26569 + }, + { + "word": "juke", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "juke (as in juke box)", + "example_sentence_native": "Nous avons mis une pièce dans le juke-box.", + "example_sentence_english": "We put a coin in the juke-box.", + "pos": "noun", + "word_frequency": 26570 + }, + { + "word": "keuf", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cop (slang)", + "example_sentence_native": "Attention, il y a des keufs là-bas.", + "example_sentence_english": "Watch out, there are cops over there.", + "pos": "noun", + "word_frequency": 26573 + }, + { + "word": "knock", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knock (as in a sound or a boxing term)", + "example_sentence_native": "On a entendu un knock à la porte.", + "example_sentence_english": "We heard a knock at the door.", + "pos": "noun", + "word_frequency": 26574 + }, + { + "word": "leasing", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leasing", + "example_sentence_native": "Le leasing automobile est très populaire en ce moment.", + "example_sentence_english": "Car leasing is very popular right now.", + "pos": "noun", + "word_frequency": 26581 + }, + { + "word": "longitudinal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longitudinal", + "example_sentence_native": "Nous menons une étude longitudinale sur le développement des enfants.", + "example_sentence_english": "We are conducting a longitudinal study on child development.", + "pos": "adjective", + "word_frequency": 26588 + }, + { + "word": "luminaire", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "light fixture;luminaire", + "example_sentence_native": "Le nouveau luminaire éclaire bien la pièce.", + "example_sentence_english": "The new light fixture illuminates the room well.", + "pos": "noun", + "word_frequency": 26589 + }, + { + "word": "lycee", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "high school", + "example_sentence_native": "Mon frère est au lycée.", + "example_sentence_english": "My brother is in high school.", + "pos": "noun", + "word_frequency": 26590 + }, + { + "word": "léviathan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leviathan", + "example_sentence_native": "Le Léviathan est une créature marine mythique.", + "example_sentence_english": "The Leviathan is a mythical sea creature.", + "pos": "noun", + "word_frequency": 26592 + }, + { + "word": "magistère", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "master's degree (specific type in France);magisterium (ecclesiastical)", + "example_sentence_native": "Il a obtenu un magistère en économie.", + "example_sentence_english": "He obtained a master's degree in economics.", + "pos": "noun", + "word_frequency": 26595 + }, + { + "word": "magot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stash;hidden treasure;macaque (monkey)", + "example_sentence_native": "Il a découvert un magot d'argent sous les planches.", + "example_sentence_english": "He discovered a stash of money under the floorboards.", + "pos": "noun", + "word_frequency": 26596 + }, + { + "word": "mandement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mandate;writ;pastoral letter", + "example_sentence_native": "Le mandement royal a été publié.", + "example_sentence_english": "The royal writ was published.", + "pos": "noun", + "word_frequency": 26597 + }, + { + "word": "mica", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mica", + "example_sentence_native": "Le mica est un minéral brillant.", + "example_sentence_english": "Mica is a shiny mineral.", + "pos": "noun", + "word_frequency": 26604 + }, + { + "word": "miche", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loaf (of bread)", + "example_sentence_native": "Elle a acheté une grosse miche de pain.", + "example_sentence_english": "She bought a large loaf of bread.", + "pos": "noun", + "word_frequency": 26605 + }, + { + "word": "mojito", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mojito", + "example_sentence_native": "Je voudrais un mojito, s'il vous plaît.", + "example_sentence_english": "I would like a mojito, please.", + "pos": "noun", + "word_frequency": 26609 + }, + { + "word": "moraliste", + "article_with_word": "le/la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moralist", + "example_sentence_native": "Il est un moraliste qui critique la société.", + "example_sentence_english": "He is a moralist who criticizes society.", + "pos": "noun", + "word_frequency": 26613 + }, + { + "word": "moût", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "must (grape juice before fermentation)", + "example_sentence_native": "Le moût est le jus de raisin avant la fermentation.", + "example_sentence_english": "Must is grape juice before fermentation.", + "pos": "noun", + "word_frequency": 26614 + }, + { + "word": "mégarde", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oversight;inadvertence", + "example_sentence_native": "J'ai envoyé le mauvais fichier par mégarde.", + "example_sentence_english": "I sent the wrong file by inadvertence.", + "pos": "noun", + "word_frequency": 26618 + }, + { + "word": "nécrose", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necrosis", + "example_sentence_native": "La nécrose est la mort des cellules ou des tissus.", + "example_sentence_english": "Necrosis is the death of cells or tissues.", + "pos": "noun", + "word_frequency": 26621 + }, + { + "word": "offline", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offline", + "example_sentence_native": "Le système est actuellement offline pour maintenance.", + "example_sentence_english": "The system is currently offline for maintenance.", + "pos": "adjective", + "word_frequency": 26622 + }, + { + "word": "oisiveté", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idleness", + "example_sentence_native": "L'oisiveté est la mère de tous les vices.", + "example_sentence_english": "Idleness is the mother of all vices.", + "pos": "noun", + "word_frequency": 26623 + }, + { + "word": "ontologie", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "ontology", + "example_sentence_native": "L'ontologie est l'étude de l'être en tant qu'être.", + "example_sentence_english": "Ontology is the study of being as being.", + "pos": "noun", + "word_frequency": 26624 + }, + { + "word": "orchestration", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orchestration", + "example_sentence_native": "L'orchestration de cette pièce est magnifique.", + "example_sentence_english": "The orchestration of this piece is magnificent.", + "pos": "noun", + "word_frequency": 26625 + }, + { + "word": "ordonnancement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scheduling;sequencing", + "example_sentence_native": "L'ordonnancement des tâches est crucial pour le projet.", + "example_sentence_english": "The scheduling of tasks is crucial for the project.", + "pos": "noun", + "word_frequency": 26626 + }, + { + "word": "paname", + "article_with_word": "Paname", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Paris (slang)", + "example_sentence_native": "Je vais passer le week-end à Paname.", + "example_sentence_english": "I'm going to spend the weekend in Paris.", + "pos": "noun", + "word_frequency": 26632 + }, + { + "word": "penthouse", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penthouse", + "example_sentence_native": "Ils vivent dans un penthouse avec une vue imprenable.", + "example_sentence_english": "They live in a penthouse with a breathtaking view.", + "pos": "noun", + "word_frequency": 26634 + }, + { + "word": "perméable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permeable", + "example_sentence_native": "Ce tissu n'est pas perméable à l'eau.", + "example_sentence_english": "This fabric is not permeable to water.", + "pos": "adjective", + "word_frequency": 26635 + }, + { + "word": "pharisien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Pharisee;hypocrite", + "example_sentence_native": "Il a été critiqué pour son attitude pharisienne.", + "example_sentence_english": "He was criticized for his hypocritical attitude.", + "pos": "noun", + "word_frequency": 26636 + }, + { + "word": "pharmacologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pharmacology", + "example_sentence_native": "La pharmacologie est l'étude des médicaments.", + "example_sentence_english": "Pharmacology is the study of medicines.", + "pos": "noun", + "word_frequency": 26637 + }, + { + "word": "pistache", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pistachio", + "example_sentence_native": "J'adore la glace à la pistache.", + "example_sentence_english": "I love pistachio ice cream.", + "pos": "noun", + "word_frequency": 26638 + }, + { + "word": "plancton", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plankton", + "example_sentence_native": "Le plancton est à la base de la chaîne alimentaire marine.", + "example_sentence_english": "Plankton is at the base of the marine food chain.", + "pos": "noun", + "word_frequency": 26639 + }, + { + "word": "platonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platonic", + "example_sentence_native": "Ils ont une amitié platonique.", + "example_sentence_english": "They have a platonic friendship.", + "pos": "adjective", + "word_frequency": 26640 + }, + { + "word": "poudrière", + "article_with_word": "la poudrière", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "powder keg;arsenal", + "example_sentence_native": "La région est une véritable poudrière politique.", + "example_sentence_english": "The region is a real political powder keg.", + "pos": "noun", + "word_frequency": 26644 + }, + { + "word": "prior", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prior", + "example_sentence_native": "Il n'y a pas de précédent prior à cette décision.", + "example_sentence_english": "There is no prior precedent to this decision.", + "pos": "adjective", + "word_frequency": 26648 + }, + { + "word": "prioriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prioritize", + "example_sentence_native": "Il faut prioriser les tâches urgentes.", + "example_sentence_english": "Urgent tasks must be prioritized.", + "pos": "verb", + "word_frequency": 26649 + }, + { + "word": "pruneau", + "article_with_word": "le pruneau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prune (dried)", + "example_sentence_native": "J'aime manger des pruneaux secs.", + "example_sentence_english": "I like to eat dried prunes.", + "pos": "noun", + "word_frequency": 26650 + }, + { + "word": "prépondérance", + "article_with_word": "la prépondérance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preponderance;predominance", + "example_sentence_native": "La prépondérance de l'opinion publique est claire.", + "example_sentence_english": "The preponderance of public opinion is clear.", + "pos": "noun", + "word_frequency": 26651 + }, + { + "word": "prépuce", + "article_with_word": "le prépuce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foreskin", + "example_sentence_native": "Le prépuce est une partie de l'anatomie masculine.", + "example_sentence_english": "The foreskin is a part of male anatomy.", + "pos": "noun", + "word_frequency": 26652 + }, + { + "word": "punchline", + "article_with_word": "la punchline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punchline", + "example_sentence_native": "Sa blague avait une excellente punchline.", + "example_sentence_english": "His joke had an excellent punchline.", + "pos": "noun", + "word_frequency": 26655 + }, + { + "word": "punissable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punishable", + "example_sentence_native": "Ce délit est punissable par la loi.", + "example_sentence_english": "This offense is punishable by law.", + "pos": "adjective", + "word_frequency": 26656 + }, + { + "word": "périssable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perishable", + "example_sentence_native": "Les produits frais sont périssables.", + "example_sentence_english": "Fresh products are perishable.", + "pos": "adjective", + "word_frequency": 26657 + }, + { + "word": "rallonger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lengthen;to extend", + "example_sentence_native": "Il faut rallonger le câble.", + "example_sentence_english": "The cable needs to be lengthened.", + "pos": "verb", + "word_frequency": 26660 + }, + { + "word": "ramassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compact;stocky;gathered", + "example_sentence_native": "Il a une silhouette ramassée.", + "example_sentence_english": "He has a stocky build.", + "pos": "adjective", + "word_frequency": 26661 + }, + { + "word": "ramené", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brought back;returned", + "example_sentence_native": "Le livre ramené à la bibliothèque était en bon état.", + "example_sentence_english": "The book returned to the library was in good condition.", + "pos": "adjective", + "word_frequency": 26662 + }, + { + "word": "recension", + "article_with_word": "la recension", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "review (of a book;text);recension", + "example_sentence_native": "J'ai lu une recension critique de ce livre.", + "example_sentence_english": "I read a critical review of this book.", + "pos": "noun", + "word_frequency": 26664 + }, + { + "word": "religiosité", + "article_with_word": "la religiosité", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "religiosity", + "example_sentence_native": "Sa religiosité est très personnelle.", + "example_sentence_english": "His religiosity is very personal.", + "pos": "noun", + "word_frequency": 26665 + }, + { + "word": "reliquaire", + "article_with_word": "le reliquaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reliquary", + "example_sentence_native": "Le reliquaire contenait des ossements sacrés.", + "example_sentence_english": "The reliquary contained sacred bones.", + "pos": "noun", + "word_frequency": 26666 + }, + { + "word": "reliquat", + "article_with_word": "le reliquat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remainder;residue;balance", + "example_sentence_native": "Il reste un reliquat à payer.", + "example_sentence_english": "There is a remainder to pay.", + "pos": "noun", + "word_frequency": 26667 + }, + { + "word": "revaloriser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revalue;to enhance;to upgrade", + "example_sentence_native": "Il faut revaloriser les salaires.", + "example_sentence_english": "Salaries need to be revalued.", + "pos": "verb", + "word_frequency": 26670 + }, + { + "word": "rouget", + "article_with_word": "le rouget", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "red mullet", + "example_sentence_native": "Nous avons mangé du rouget grillé.", + "example_sentence_english": "We ate grilled red mullet.", + "pos": "noun", + "word_frequency": 26676 + }, + { + "word": "réintroduire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reintroduce", + "example_sentence_native": "Ils veulent réintroduire l'espèce dans la nature.", + "example_sentence_english": "They want to reintroduce the species into the wild.", + "pos": "verb", + "word_frequency": 26677 + }, + { + "word": "réplication", + "article_with_word": "la réplication", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "replication", + "example_sentence_native": "La réplication de l'ADN est essentielle à la vie.", + "example_sentence_english": "DNA replication is essential for life.", + "pos": "noun", + "word_frequency": 26678 + }, + { + "word": "samurai", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "samurai", + "example_sentence_native": "Le code d'honneur du samurai était très strict.", + "example_sentence_english": "The samurai's code of honor was very strict.", + "pos": "noun", + "word_frequency": 26680 + }, + { + "word": "sauteuse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sauté pan", + "example_sentence_native": "J'ai acheté une nouvelle sauteuse pour cuisiner.", + "example_sentence_english": "I bought a new sauté pan for cooking.", + "pos": "noun", + "word_frequency": 26682 + }, + { + "word": "sectoriel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sectoral", + "example_sentence_native": "L'analyse sectorielle est importante pour comprendre l'économie.", + "example_sentence_english": "Sectoral analysis is important for understanding the economy.", + "pos": "adjective", + "word_frequency": 26683 + }, + { + "word": "sherry", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sherry", + "example_sentence_native": "Il a servi un verre de sherry avant le dîner.", + "example_sentence_english": "He served a glass of sherry before dinner.", + "pos": "noun", + "word_frequency": 26684 + }, + { + "word": "sodomiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to sodomize", + "example_sentence_native": "L'acte de sodomiser est illégal dans certains pays.", + "example_sentence_english": "The act of sodomizing is illegal in some countries.", + "pos": "verb", + "word_frequency": 26689 + }, + { + "word": "soutènement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "support;retaining (as in wall)", + "example_sentence_native": "Un mur de soutènement a été construit pour stabiliser la pente.", + "example_sentence_english": "A retaining wall was built to stabilize the slope.", + "pos": "noun", + "word_frequency": 26690 + }, + { + "word": "sportivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sportingly;fairly", + "example_sentence_native": "Il a accepté sa défaite sportivement.", + "example_sentence_english": "He accepted his defeat sportingly.", + "pos": "adverb", + "word_frequency": 26691 + }, + { + "word": "sprinteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sprinter", + "example_sentence_native": "Le sprinteur a franchi la ligne d'arrivée en premier.", + "example_sentence_english": "The sprinter crossed the finish line first.", + "pos": "noun", + "word_frequency": 26692 + }, + { + "word": "structural", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structural", + "example_sentence_native": "Les problèmes structuraux de l'économie sont profonds.", + "example_sentence_english": "The structural problems of the economy are deep.", + "pos": "adjective", + "word_frequency": 26693 + }, + { + "word": "stériliser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sterilize", + "example_sentence_native": "Il faut stériliser les instruments avant l'opération.", + "example_sentence_english": "The instruments must be sterilized before the operation.", + "pos": "verb", + "word_frequency": 26694 + }, + { + "word": "suffisament", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sufficiently;enough", + "example_sentence_native": "Il n'y a pas suffisament de temps pour tout faire.", + "example_sentence_english": "There isn't enough time to do everything.", + "pos": "adverb", + "word_frequency": 26695 + }, + { + "word": "supplanter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to supplant;to supersede", + "example_sentence_native": "Les nouvelles technologies peuvent supplanter les anciennes méthodes.", + "example_sentence_english": "New technologies can supplant old methods.", + "pos": "verb", + "word_frequency": 26697 + }, + { + "word": "surestimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overestimate", + "example_sentence_native": "Il ne faut pas surestimer ses propres capacités.", + "example_sentence_english": "One must not overestimate one's own abilities.", + "pos": "verb", + "word_frequency": 26698 + }, + { + "word": "séraphin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seraph", + "example_sentence_native": "Les séraphins sont des anges de haut rang.", + "example_sentence_english": "Seraphs are high-ranking angels.", + "pos": "noun", + "word_frequency": 26699 + }, + { + "word": "tactiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactically", + "example_sentence_native": "L'équipe a joué tactiquement très bien.", + "example_sentence_english": "The team played very well tactically.", + "pos": "adverb", + "word_frequency": 26700 + }, + { + "word": "tchécoslovaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Czechoslovak", + "example_sentence_native": "Il a visité l'ancienne République tchécoslovaque.", + "example_sentence_english": "He visited the former Czechoslovak Republic.", + "pos": "adjective", + "word_frequency": 26702 + }, + { + "word": "tiret", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hyphen;dash", + "example_sentence_native": "N'oubliez pas le tiret entre les mots.", + "example_sentence_english": "Don't forget the hyphen between the words.", + "pos": "noun", + "word_frequency": 26707 + }, + { + "word": "titanesque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "titanic;colossal", + "example_sentence_native": "Le projet était d'une ampleur titanesque.", + "example_sentence_english": "The project was of a titanic scale.", + "pos": "adjective", + "word_frequency": 26708 + }, + { + "word": "tondu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mown;shorn;bald (colloquial)", + "example_sentence_native": "La pelouse est bien tondue.", + "example_sentence_english": "The lawn is well mown.", + "pos": "adjective", + "word_frequency": 26709 + }, + { + "word": "toune", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "song (Québécois slang)", + "example_sentence_native": "J'adore cette toune, elle est entraînante.", + "example_sentence_english": "I love this song, it's catchy.", + "pos": "noun", + "word_frequency": 26710 + }, + { + "word": "troublé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "troubled;disturbed;cloudy (water)", + "example_sentence_native": "Il semblait très troublé par la nouvelle.", + "example_sentence_english": "He seemed very troubled by the news.", + "pos": "adjective", + "word_frequency": 26713 + }, + { + "word": "trucage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trickery;faking;special effect", + "example_sentence_native": "C'était un trucage photo très réussi.", + "example_sentence_english": "It was a very successful photo trick.", + "pos": "noun", + "word_frequency": 26714 + }, + { + "word": "truchement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intermediary;means;through the agency of", + "example_sentence_native": "Il a exprimé ses idées par le truchement d'un interprète.", + "example_sentence_english": "He expressed his ideas through the agency of an interpreter.", + "pos": "noun", + "word_frequency": 26715 + }, + { + "word": "trève", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truce;break", + "example_sentence_native": "Une trève a été déclarée entre les deux parties.", + "example_sentence_english": "A truce was declared between the two parties.", + "pos": "noun", + "word_frequency": 26716 + }, + { + "word": "usurper", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to usurp", + "example_sentence_native": "Il a tenté d'usurper le pouvoir.", + "example_sentence_english": "He tried to usurp power.", + "pos": "verb", + "word_frequency": 26719 + }, + { + "word": "velin", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vellum", + "example_sentence_native": "Le manuscrit était écrit sur du papier velin de haute qualité.", + "example_sentence_english": "The manuscript was written on high-quality vellum paper.", + "pos": "noun", + "word_frequency": 26721 + }, + { + "word": "vélocité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "velocity", + "example_sentence_native": "La vélocité du vent augmentait rapidement.", + "example_sentence_english": "The wind's velocity was increasing rapidly.", + "pos": "noun", + "word_frequency": 26726 + }, + { + "word": "écologiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecologically", + "example_sentence_native": "Nous devons agir écologiquement pour protéger la planète.", + "example_sentence_english": "We must act ecologically to protect the planet.", + "pos": "adverb", + "word_frequency": 26733 + }, + { + "word": "écriteau", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signboard", + "example_sentence_native": "Il y avait un écriteau 'Danger' sur la porte.", + "example_sentence_english": "There was a 'Danger' signboard on the door.", + "pos": "noun", + "word_frequency": 26734 + }, + { + "word": "écrémer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to skim", + "example_sentence_native": "Elle a écrémé le lait pour faire du beurre.", + "example_sentence_english": "She skimmed the milk to make butter.", + "pos": "verb", + "word_frequency": 26735 + }, + { + "word": "écœurant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nauseating", + "example_sentence_native": "L'odeur était absolument écœurante.", + "example_sentence_english": "The smell was absolutely nauseating.", + "pos": "adjective", + "word_frequency": 26736 + }, + { + "word": "édicter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enact", + "example_sentence_native": "Le gouvernement a édicté de nouvelles lois.", + "example_sentence_english": "The government enacted new laws.", + "pos": "verb", + "word_frequency": 26737 + }, + { + "word": "émigrant", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emigrant", + "example_sentence_native": "De nombreux émigrants cherchent une vie meilleure à l'étranger.", + "example_sentence_english": "Many emigrants seek a better life abroad.", + "pos": "noun", + "word_frequency": 26739 + }, + { + "word": "équinoxe", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equinox", + "example_sentence_native": "L'équinoxe de printemps marque le début de la saison.", + "example_sentence_english": "The spring equinox marks the beginning of the season.", + "pos": "noun", + "word_frequency": 26741 + }, + { + "word": "œillet", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnation;eyelet", + "example_sentence_native": "Elle a planté des œillets dans son jardin.", + "example_sentence_english": "She planted carnations in her garden.", + "pos": "noun", + "word_frequency": 26742 + }, + { + "word": "acceptabilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acceptability", + "example_sentence_native": "Nous devons évaluer l'acceptabilité de cette proposition.", + "example_sentence_english": "We must evaluate the acceptability of this proposal.", + "pos": "noun", + "word_frequency": 26743 + }, + { + "word": "accidenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hilly;injured;damaged", + "example_sentence_native": "Le terrain était très accidenté, rendant la marche difficile.", + "example_sentence_english": "The terrain was very hilly, making walking difficult.", + "pos": "adjective", + "word_frequency": 26744 + }, + { + "word": "accoler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to brace;to join side by side", + "example_sentence_native": "Il faut accoler ces deux poutres pour plus de stabilité.", + "example_sentence_english": "These two beams must be joined side by side for more stability.", + "pos": "verb", + "word_frequency": 26745 + }, + { + "word": "affluer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flock;to flow in", + "example_sentence_native": "Les touristes ont commencé à affluer vers la plage.", + "example_sentence_english": "Tourists began to flock to the beach.", + "pos": "verb", + "word_frequency": 26748 + }, + { + "word": "affubler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deck out;to dress up (often in a ridiculous way)", + "example_sentence_native": "Elle s'est affublée d'un costume ridicule pour la fête.", + "example_sentence_english": "She decked herself out in a ridiculous costume for the party.", + "pos": "verb", + "word_frequency": 26749 + }, + { + "word": "agressé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assaulted;attacked", + "example_sentence_native": "La victime agressée a porté plainte.", + "example_sentence_english": "The assaulted victim filed a complaint.", + "pos": "adjective", + "word_frequency": 26750 + }, + { + "word": "ajusté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjusted;fitted", + "example_sentence_native": "La robe était parfaitement ajustée à sa taille.", + "example_sentence_english": "The dress was perfectly fitted to her size.", + "pos": "adjective", + "word_frequency": 26752 + }, + { + "word": "amarrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to moor;to tie up", + "example_sentence_native": "Le bateau était solidement amarré au quai.", + "example_sentence_english": "The boat was securely moored to the dock.", + "pos": "verb", + "word_frequency": 26757 + }, + { + "word": "amoindrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to diminish;to lessen", + "example_sentence_native": "Ces mesures visent à amoindrir l'impact de la crise.", + "example_sentence_english": "These measures aim to diminish the impact of the crisis.", + "pos": "verb", + "word_frequency": 26758 + }, + { + "word": "amphibien", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphibian", + "example_sentence_native": "La grenouille est un amphibien commun.", + "example_sentence_english": "The frog is a common amphibian.", + "pos": "noun", + "word_frequency": 26759 + }, + { + "word": "amulette", + "article_with_word": "une amulette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amulet", + "example_sentence_native": "Elle portait une amulette autour de son cou pour la chance.", + "example_sentence_english": "She wore an amulet around her neck for luck.", + "pos": "noun", + "word_frequency": 26760 + }, + { + "word": "anale", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "anal", + "example_sentence_native": "Le canal anal est la partie terminale du gros intestin.", + "example_sentence_english": "The anal canal is the terminal part of the large intestine.", + "pos": "adjective", + "word_frequency": 26761 + }, + { + "word": "antiracisme", + "article_with_word": "l'antiracisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-racism", + "example_sentence_native": "L'antiracisme est un combat quotidien pour l'égalité.", + "example_sentence_english": "Anti-racism is a daily fight for equality.", + "pos": "noun", + "word_frequency": 26764 + }, + { + "word": "appauvrir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impoverish;to deplete", + "example_sentence_native": "La sécheresse risque d'appauvrir les sols.", + "example_sentence_english": "The drought risks impoverishing the soil.", + "pos": "verb", + "word_frequency": 26765 + }, + { + "word": "asthmatique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asthmatic", + "example_sentence_native": "Mon ami est asthmatique et doit toujours avoir son inhalateur.", + "example_sentence_english": "My friend is asthmatic and must always have his inhaler.", + "pos": "adjective", + "word_frequency": 26768 + }, + { + "word": "atour", + "article_with_word": "un atour", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adornment;finery", + "example_sentence_native": "Elle se parait de ses plus beaux atours pour la soirée.", + "example_sentence_english": "She adorned herself with her finest finery for the evening.", + "pos": "noun", + "word_frequency": 26770 + }, + { + "word": "aéroportuaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "airport (adj.);airport-related", + "example_sentence_native": "Les services aéroportuaires sont essentiels pour le trafic aérien.", + "example_sentence_english": "Airport services are essential for air traffic.", + "pos": "adjective", + "word_frequency": 26775 + }, + { + "word": "aérosol", + "article_with_word": "un aérosol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aerosol", + "example_sentence_native": "J'ai acheté un aérosol pour désinfecter la pièce.", + "example_sentence_english": "I bought an aerosol to disinfect the room.", + "pos": "noun", + "word_frequency": 26776 + }, + { + "word": "biaiser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bias;to distort;to skew", + "example_sentence_native": "Les statistiques peuvent biaiser la perception de la réalité.", + "example_sentence_english": "Statistics can bias the perception of reality.", + "pos": "verb", + "word_frequency": 26781 + }, + { + "word": "biogaz", + "article_with_word": "le biogaz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biogas", + "example_sentence_native": "Le biogaz est une source d'énergie renouvelable.", + "example_sentence_english": "Biogas is a renewable energy source.", + "pos": "noun", + "word_frequency": 26782 + }, + { + "word": "biométrique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biometric", + "example_sentence_native": "L'identification biométrique est de plus en plus utilisée.", + "example_sentence_english": "Biometric identification is increasingly used.", + "pos": "adjective", + "word_frequency": 26783 + }, + { + "word": "blender", + "article_with_word": "le blender", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blender", + "example_sentence_native": "J'utilise mon blender pour faire des smoothies.", + "example_sentence_english": "I use my blender to make smoothies.", + "pos": "noun", + "word_frequency": 26784 + }, + { + "word": "bordélique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "messy;chaotic", + "example_sentence_native": "Sa chambre est toujours bordélique.", + "example_sentence_english": "His room is always messy.", + "pos": "adjective", + "word_frequency": 26786 + }, + { + "word": "bouilli", + "article_with_word": "le bouilli", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boiled meat;boiled dish", + "example_sentence_native": "Le bouilli de bœuf est un plat traditionnel.", + "example_sentence_english": "Boiled beef is a traditional dish.", + "pos": "noun", + "word_frequency": 26787 + }, + { + "word": "boulimie", + "article_with_word": "la boulimie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulimia", + "example_sentence_native": "La boulimie est un trouble alimentaire grave.", + "example_sentence_english": "Bulimia is a serious eating disorder.", + "pos": "noun", + "word_frequency": 26788 + }, + { + "word": "braqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "held at gunpoint;pointed (at)", + "example_sentence_native": "La banque a été braquée hier soir.", + "example_sentence_english": "The bank was held at gunpoint last night.", + "pos": "adjective", + "word_frequency": 26791 + }, + { + "word": "bridé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restricted;limited;(eyes) slanted", + "example_sentence_native": "Le système est bridé par des règles strictes.", + "example_sentence_english": "The system is restricted by strict rules.", + "pos": "adjective", + "word_frequency": 26793 + }, + { + "word": "bréviaire", + "article_with_word": "un bréviaire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breviary;handbook", + "example_sentence_native": "Ce livre est un véritable bréviaire pour les jardiniers.", + "example_sentence_english": "This book is a true handbook for gardeners.", + "pos": "noun", + "word_frequency": 26796 + }, + { + "word": "cagoulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hooded;masked", + "example_sentence_native": "Les cambrioleurs étaient cagoulés.", + "example_sentence_english": "The burglars were hooded.", + "pos": "adjective", + "word_frequency": 26798 + }, + { + "word": "cailler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to curdle;to freeze (informal)", + "example_sentence_native": "Il commence à cailler dehors, mets ton manteau.", + "example_sentence_english": "It's starting to freeze outside, put on your coat.", + "pos": "verb", + "word_frequency": 26799 + }, + { + "word": "cartographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cartographic", + "example_sentence_native": "Les données cartographiques sont essentielles pour la navigation.", + "example_sentence_english": "Cartographic data is essential for navigation.", + "pos": "adjective", + "word_frequency": 26802 + }, + { + "word": "catapulte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catapult", + "example_sentence_native": "Les ingénieurs ont construit une catapulte pour lancer des projectiles.", + "example_sentence_english": "The engineers built a catapult to launch projectiles.", + "pos": "noun", + "word_frequency": 26804 + }, + { + "word": "cava", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cava (sparkling wine)", + "example_sentence_native": "Nous avons commandé une bouteille de cava pour célébrer.", + "example_sentence_english": "We ordered a bottle of cava to celebrate.", + "pos": "noun", + "word_frequency": 26806 + }, + { + "word": "chaînon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "link (in a chain);component", + "example_sentence_native": "Chaque chaînon est essentiel à la solidité de la chaîne.", + "example_sentence_english": "Each link is essential to the strength of the chain.", + "pos": "noun", + "word_frequency": 26810 + }, + { + "word": "chevronné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "experienced;seasoned", + "example_sentence_native": "C'est un pilote chevronné qui a des milliers d'heures de vol.", + "example_sentence_english": "He is a seasoned pilot with thousands of flight hours.", + "pos": "adjective", + "word_frequency": 26811 + }, + { + "word": "cierge", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taper;candle (long;thin)", + "example_sentence_native": "Elle a allumé un cierge dans l'église.", + "example_sentence_english": "She lit a taper in the church.", + "pos": "noun", + "word_frequency": 26814 + }, + { + "word": "cinéphile", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "film buff;cinephile", + "example_sentence_native": "En tant que cinéphile, il connaît tous les classiques du cinéma.", + "example_sentence_english": "As a film buff, he knows all the cinema classics.", + "pos": "noun", + "word_frequency": 26815 + }, + { + "word": "concordant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concordant;consistent", + "example_sentence_native": "Les témoignages étaient concordants, ce qui a aidé l'enquête.", + "example_sentence_english": "The testimonies were concordant, which helped the investigation.", + "pos": "adjective", + "word_frequency": 26819 + }, + { + "word": "concubinage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohabitation;common-law partnership", + "example_sentence_native": "Le concubinage est une forme d'union reconnue par la loi dans certains pays.", + "example_sentence_english": "Cohabitation is a form of union recognized by law in some countries.", + "pos": "noun", + "word_frequency": 26820 + }, + { + "word": "contractant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contracting (party);binding", + "example_sentence_native": "Les parties contractantes doivent respecter les termes de l'accord.", + "example_sentence_english": "The contracting parties must respect the terms of the agreement.", + "pos": "adjective", + "word_frequency": 26821 + }, + { + "word": "cordillère", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cordillera;mountain range", + "example_sentence_native": "La cordillère des Andes s'étend sur plusieurs pays d'Amérique du Sud.", + "example_sentence_english": "The Andes mountain range extends across several South American countries.", + "pos": "noun", + "word_frequency": 26823 + }, + { + "word": "corrosif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corrosive", + "example_sentence_native": "L'acide sulfurique est un produit très corrosif.", + "example_sentence_english": "Sulfuric acid is a very corrosive product.", + "pos": "adjective", + "word_frequency": 26825 + }, + { + "word": "cotte", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall;smock;coat of mail", + "example_sentence_native": "Les ouvriers portaient des cottes de travail pour se protéger.", + "example_sentence_english": "The workers wore work overalls to protect themselves.", + "pos": "noun", + "word_frequency": 26826 + }, + { + "word": "coulis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coulis (fruit sauce)", + "example_sentence_native": "Le dessert était servi avec un coulis de fruits rouges.", + "example_sentence_english": "The dessert was served with a red fruit coulis.", + "pos": "noun", + "word_frequency": 26827 + }, + { + "word": "crapule", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scoundrel;villain;scum", + "example_sentence_native": "Cette crapule a volé l'argent des pauvres gens.", + "example_sentence_english": "That scoundrel stole money from poor people.", + "pos": "noun", + "word_frequency": 26829 + }, + { + "word": "crevé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhausted;burst (tire)", + "example_sentence_native": "Après cette longue journée, je suis complètement crevé.", + "example_sentence_english": "After this long day, I am completely exhausted.", + "pos": "adjective", + "word_frequency": 26830 + }, + { + "word": "cumulé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cumulative;accumulated", + "example_sentence_native": "Le bénéfice cumulé sur cinq ans est impressionnant.", + "example_sentence_english": "The cumulative profit over five years is impressive.", + "pos": "adjective", + "word_frequency": 26833 + }, + { + "word": "doctoral", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctoral", + "example_sentence_native": "Elle prépare sa thèse doctorale.", + "example_sentence_english": "She is preparing her doctoral thesis.", + "pos": "adjective", + "word_frequency": 26844 + }, + { + "word": "domiciliation", + "article_with_word": "la domiciliation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domiciliation;direct debit", + "example_sentence_native": "La domiciliation bancaire est nécessaire pour payer les factures automatiquement.", + "example_sentence_english": "Bank domiciliation is necessary to pay bills automatically.", + "pos": "noun", + "word_frequency": 26845 + }, + { + "word": "doppler", + "article_with_word": "le doppler", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Doppler (effect;ultrasound)", + "example_sentence_native": "L'échographie Doppler permet d'étudier le flux sanguin.", + "example_sentence_english": "Doppler ultrasound allows the study of blood flow.", + "pos": "noun", + "word_frequency": 26846 + }, + { + "word": "drapé", + "article_with_word": "le drapé", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drapery;fold (of fabric)", + "example_sentence_native": "Le drapé de la robe était magnifique.", + "example_sentence_english": "The drapery of the dress was magnificent.", + "pos": "noun", + "word_frequency": 26847 + }, + { + "word": "débouter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismiss (a claim);to reject", + "example_sentence_native": "Le tribunal a décidé de débouter la demande du plaignant.", + "example_sentence_english": "The court decided to dismiss the plaintiff's claim.", + "pos": "verb", + "word_frequency": 26849 + }, + { + "word": "décapotable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convertible (car)", + "example_sentence_native": "J'aimerais acheter une voiture décapotable pour l'été.", + "example_sentence_english": "I would like to buy a convertible car for the summer.", + "pos": "adjective", + "word_frequency": 26850 + }, + { + "word": "décourageant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discouraging", + "example_sentence_native": "Les résultats de l'examen étaient décourageants.", + "example_sentence_english": "The exam results were discouraging.", + "pos": "adjective", + "word_frequency": 26851 + }, + { + "word": "déviance", + "article_with_word": "la déviance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deviance", + "example_sentence_native": "La sociologie étudie les formes de déviance sociale.", + "example_sentence_english": "Sociology studies forms of social deviance.", + "pos": "noun", + "word_frequency": 26852 + }, + { + "word": "enfumage", + "article_with_word": "l'enfumage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smoking out;obfuscation;smoke and mirrors", + "example_sentence_native": "L'enfumage de la pièce a rendu l'air irrespirable.", + "example_sentence_english": "The smoking out of the room made the air unbreathable.", + "pos": "noun", + "word_frequency": 26857 + }, + { + "word": "enraciner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to root;to establish firmly", + "example_sentence_native": "L'arbre s'est bien enraciné dans le sol.", + "example_sentence_english": "The tree rooted well in the soil.", + "pos": "verb", + "word_frequency": 26859 + }, + { + "word": "enrager", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to infuriate;to make furious;to rage", + "example_sentence_native": "Son comportement a fini par l'enrager.", + "example_sentence_english": "His behavior eventually infuriated him.", + "pos": "verb", + "word_frequency": 26860 + }, + { + "word": "expier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to atone for;to expiate", + "example_sentence_native": "Il a essayé d'expier ses fautes.", + "example_sentence_english": "He tried to atone for his sins.", + "pos": "verb", + "word_frequency": 26863 + }, + { + "word": "externalisation", + "article_with_word": "l'externalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outsourcing;externalization", + "example_sentence_native": "L'externalisation des services est une pratique courante dans les entreprises.", + "example_sentence_english": "The outsourcing of services is a common practice in companies.", + "pos": "noun", + "word_frequency": 26864 + }, + { + "word": "fenouil", + "article_with_word": "le fenouil", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fennel", + "example_sentence_native": "J'aime le goût anisé du fenouil dans les salades.", + "example_sentence_english": "I like the aniseed taste of fennel in salads.", + "pos": "noun", + "word_frequency": 26867 + }, + { + "word": "ferrier", + "article_with_word": "le ferrier", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slag heap;ironworks waste", + "example_sentence_native": "Les archéologues ont découvert un ancien ferrier sur le site.", + "example_sentence_english": "Archaeologists discovered an ancient slag heap on the site.", + "pos": "noun", + "word_frequency": 26868 + }, + { + "word": "fichage", + "article_with_word": "le fichage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indexing;data collection;blacklisting", + "example_sentence_native": "Le fichage des données personnelles est strictement réglementé.", + "example_sentence_english": "The indexing of personal data is strictly regulated.", + "pos": "noun", + "word_frequency": 26871 + }, + { + "word": "filou", + "article_with_word": "le filou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rogue;trickster;rascal", + "example_sentence_native": "C'est un petit filou qui essaie toujours de tricher.", + "example_sentence_english": "He's a little rascal who always tries to cheat.", + "pos": "noun", + "word_frequency": 26873 + }, + { + "word": "filtrant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filtering", + "example_sentence_native": "Le système de ventilation est équipé d'un filtre filtrant les particules fines.", + "example_sentence_english": "The ventilation system is equipped with a filter filtering fine particles.", + "pos": "adjective", + "word_frequency": 26874 + }, + { + "word": "fixement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixedly;steadily;intently", + "example_sentence_native": "Il la regardait fixement sans dire un mot.", + "example_sentence_english": "He stared at her fixedly without saying a word.", + "pos": "adverb", + "word_frequency": 26875 + }, + { + "word": "flanelle", + "article_with_word": "la flanelle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flannel", + "example_sentence_native": "J'ai acheté une chemise en flanelle pour l'hiver.", + "example_sentence_english": "I bought a flannel shirt for the winter.", + "pos": "noun", + "word_frequency": 26876 + }, + { + "word": "flotteur", + "article_with_word": "le flotteur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "float;buoy;float valve", + "example_sentence_native": "Le pêcheur a regardé son flotteur dans l'eau.", + "example_sentence_english": "The fisherman watched his float in the water.", + "pos": "noun", + "word_frequency": 26877 + }, + { + "word": "fléchette", + "article_with_word": "la fléchette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dart;small arrow", + "example_sentence_native": "Nous avons joué aux fléchettes au pub.", + "example_sentence_english": "We played darts at the pub.", + "pos": "noun", + "word_frequency": 26878 + }, + { + "word": "formatage", + "article_with_word": "le formatage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formatting", + "example_sentence_native": "Le formatage du disque dur a pris du temps.", + "example_sentence_english": "The hard drive formatting took time.", + "pos": "noun", + "word_frequency": 26882 + }, + { + "word": "fructose", + "article_with_word": "le fructose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fructose", + "example_sentence_native": "Le fructose est un sucre naturel présent dans les fruits.", + "example_sentence_english": "Fructose is a natural sugar found in fruits.", + "pos": "noun", + "word_frequency": 26885 + }, + { + "word": "fuyard", + "article_with_word": "le fuyard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugitive", + "example_sentence_native": "Le fuyard a été rattrapé par la police.", + "example_sentence_english": "The fugitive was caught by the police.", + "pos": "noun", + "word_frequency": 26886 + }, + { + "word": "féerie", + "article_with_word": "la féerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enchantment", + "example_sentence_native": "Le spectacle était une véritable féerie de lumières.", + "example_sentence_english": "The show was a true enchantment of lights.", + "pos": "noun", + "word_frequency": 26887 + }, + { + "word": "férocité", + "article_with_word": "la férocité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ferocity", + "example_sentence_native": "La férocité de l'attaque a surpris tout le monde.", + "example_sentence_english": "The ferocity of the attack surprised everyone.", + "pos": "noun", + "word_frequency": 26888 + }, + { + "word": "galopant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galloping;rampant", + "example_sentence_native": "L'inflation galopante est une préoccupation majeure.", + "example_sentence_english": "Rampant inflation is a major concern.", + "pos": "adjective", + "word_frequency": 26890 + }, + { + "word": "gazoduc", + "article_with_word": "le gazoduc", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gas pipeline", + "example_sentence_native": "La construction du nouveau gazoduc est en cours.", + "example_sentence_english": "The construction of the new gas pipeline is underway.", + "pos": "noun", + "word_frequency": 26891 + }, + { + "word": "genet", + "article_with_word": "le genêt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broom (plant)", + "example_sentence_native": "Les genêts fleurissent abondamment au printemps.", + "example_sentence_english": "Broom plants bloom abundantly in spring.", + "pos": "noun", + "word_frequency": 26893 + }, + { + "word": "glaucome", + "article_with_word": "le glaucome", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glaucoma", + "example_sentence_native": "Le glaucome est une maladie oculaire grave.", + "example_sentence_english": "Glaucoma is a serious eye disease.", + "pos": "noun", + "word_frequency": 26898 + }, + { + "word": "gouvernorat", + "article_with_word": "le gouvernorat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governorate", + "example_sentence_native": "Le gouvernorat est responsable de l'administration locale.", + "example_sentence_english": "The governorate is responsible for local administration.", + "pos": "noun", + "word_frequency": 26901 + }, + { + "word": "grillade", + "article_with_word": "la grillade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grilled meat;barbecue", + "example_sentence_native": "Nous avons fait une grillade dans le jardin hier soir.", + "example_sentence_english": "We had a barbecue in the garden last night.", + "pos": "noun", + "word_frequency": 26903 + }, + { + "word": "grizzly", + "article_with_word": "le grizzly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grizzly bear", + "example_sentence_native": "Le grizzly est un grand ours d'Amérique du Nord.", + "example_sentence_english": "The grizzly is a large North American bear.", + "pos": "noun", + "word_frequency": 26904 + }, + { + "word": "grondement", + "article_with_word": "le grondement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rumble;growl", + "example_sentence_native": "On a entendu un grondement lointain dans le ciel.", + "example_sentence_english": "We heard a distant rumble in the sky.", + "pos": "noun", + "word_frequency": 26905 + }, + { + "word": "géniteur", + "article_with_word": "le géniteur", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "progenitor;biological father", + "example_sentence_native": "Le géniteur de l'enfant a été identifié par des tests.", + "example_sentence_english": "The child's biological father was identified by tests.", + "pos": "noun", + "word_frequency": 26906 + }, + { + "word": "hallal", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halal", + "example_sentence_native": "Cette viande est certifiée hallal.", + "example_sentence_english": "This meat is certified halal.", + "pos": "adjective", + "word_frequency": 26907 + }, + { + "word": "immaturité", + "article_with_word": "l'immaturité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immaturity", + "example_sentence_native": "Son immaturité est parfois frustrante pour ses collègues.", + "example_sentence_english": "His immaturity is sometimes frustrating for his colleagues.", + "pos": "noun", + "word_frequency": 26915 + }, + { + "word": "implémenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implement", + "example_sentence_native": "Nous devons implémenter cette nouvelle stratégie rapidement.", + "example_sentence_english": "We must implement this new strategy quickly.", + "pos": "verb", + "word_frequency": 26916 + }, + { + "word": "inactive", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inactive", + "example_sentence_native": "Le compte est resté inactif pendant plusieurs mois.", + "example_sentence_english": "The account remained inactive for several months.", + "pos": "adjective", + "word_frequency": 26917 + }, + { + "word": "incendié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burned;set on fire", + "example_sentence_native": "Le bâtiment incendié a été déclaré irrécupérable.", + "example_sentence_english": "The burned building was declared irreparable.", + "pos": "adjective", + "word_frequency": 26918 + }, + { + "word": "indexer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to index", + "example_sentence_native": "Il faut indexer tous les documents pour faciliter la recherche.", + "example_sentence_english": "All documents must be indexed to facilitate searching.", + "pos": "verb", + "word_frequency": 26919 + }, + { + "word": "inexistence", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "non-existence", + "example_sentence_native": "L'inexistence de preuves rend le verdict difficile.", + "example_sentence_english": "The non-existence of evidence makes the verdict difficult.", + "pos": "noun", + "word_frequency": 26920 + }, + { + "word": "influx", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influx", + "example_sentence_native": "Il y a eu un influx de touristes cet été.", + "example_sentence_english": "There was an influx of tourists this summer.", + "pos": "noun", + "word_frequency": 26921 + }, + { + "word": "inintéressant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uninteresting", + "example_sentence_native": "Ce film est vraiment inintéressant.", + "example_sentence_english": "This movie is really uninteresting.", + "pos": "adjective", + "word_frequency": 26922 + }, + { + "word": "innocenter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to clear (of guilt);to exonerate", + "example_sentence_native": "Les nouvelles preuves ont permis d'innocenter l'accusé.", + "example_sentence_english": "The new evidence allowed the accused to be cleared.", + "pos": "verb", + "word_frequency": 26923 + }, + { + "word": "integration", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integration", + "example_sentence_native": "L'intégration des nouveaux employés est cruciale.", + "example_sentence_english": "The integration of new employees is crucial.", + "pos": "noun", + "word_frequency": 26924 + }, + { + "word": "intuitivement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuitively", + "example_sentence_native": "Il a su intuitivement ce qu'il fallait faire.", + "example_sentence_english": "He intuitively knew what to do.", + "pos": "adverb", + "word_frequency": 26925 + }, + { + "word": "lactique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lactic", + "example_sentence_native": "L'acide lactique est produit pendant l'exercice intense.", + "example_sentence_english": "Lactic acid is produced during intense exercise.", + "pos": "adjective", + "word_frequency": 26934 + }, + { + "word": "licite", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lawful;permissible", + "example_sentence_native": "Cette activité est considérée comme licite.", + "example_sentence_english": "This activity is considered lawful.", + "pos": "adjective", + "word_frequency": 26939 + }, + { + "word": "lob", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lob (in sports)", + "example_sentence_native": "Il a réussi un superbe lob au tennis.", + "example_sentence_english": "He hit a superb lob in tennis.", + "pos": "noun", + "word_frequency": 26940 + }, + { + "word": "lumen", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lumen", + "example_sentence_native": "Cette ampoule a une puissance de 800 lumens.", + "example_sentence_english": "This bulb has a power of 800 lumens.", + "pos": "noun", + "word_frequency": 26945 + }, + { + "word": "macédonien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Macedonian (language or person)", + "example_sentence_native": "Il parle le macédonien couramment.", + "example_sentence_english": "He speaks Macedonian fluently.", + "pos": "noun", + "word_frequency": 26949 + }, + { + "word": "mamy", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "granny;grandma", + "example_sentence_native": "Ma mamy nous prépare toujours de bons gâteaux.", + "example_sentence_english": "My granny always bakes us good cakes.", + "pos": "noun", + "word_frequency": 26950 + }, + { + "word": "marchandage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bargaining;haggling", + "example_sentence_native": "Le marchandage est courant dans les marchés orientaux.", + "example_sentence_english": "Bargaining is common in Eastern markets.", + "pos": "noun", + "word_frequency": 26954 + }, + { + "word": "marécageux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swampy;marshy", + "example_sentence_native": "Le terrain était marécageux après la pluie.", + "example_sentence_english": "The ground was swampy after the rain.", + "pos": "adjective", + "word_frequency": 26955 + }, + { + "word": "mauricien", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mauritian (language or person)", + "example_sentence_native": "Il est mauricien et parle créole.", + "example_sentence_english": "He is Mauritian and speaks Creole.", + "pos": "noun", + "word_frequency": 26956 + }, + { + "word": "micron", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "micron", + "example_sentence_native": "Un cheveu humain a un diamètre d'environ 50 microns.", + "example_sentence_english": "A human hair has a diameter of about 50 microns.", + "pos": "noun", + "word_frequency": 26959 + }, + { + "word": "modulable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modular;adjustable", + "example_sentence_native": "Ce système est entièrement modulable selon vos besoins.", + "example_sentence_english": "This system is entirely modular according to your needs.", + "pos": "adjective", + "word_frequency": 26962 + }, + { + "word": "moka", + "article_with_word": "le moka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mocha", + "example_sentence_native": "J'aimerais un café moka, s'il vous plaît.", + "example_sentence_english": "I would like a mocha coffee, please.", + "pos": "noun", + "word_frequency": 26964 + }, + { + "word": "mondialisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globalized", + "example_sentence_native": "Nous vivons dans un monde de plus en plus mondialisé.", + "example_sentence_english": "We live in an increasingly globalized world.", + "pos": "adjective", + "word_frequency": 26966 + }, + { + "word": "monétisation", + "article_with_word": "la monétisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monetization", + "example_sentence_native": "La monétisation du contenu en ligne est devenue cruciale.", + "example_sentence_english": "Online content monetization has become crucial.", + "pos": "noun", + "word_frequency": 26967 + }, + { + "word": "motocross", + "article_with_word": "le motocross", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motocross", + "example_sentence_native": "Il pratique le motocross tous les week-ends.", + "example_sentence_english": "He practices motocross every weekend.", + "pos": "noun", + "word_frequency": 26969 + }, + { + "word": "noirâtre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackish", + "example_sentence_native": "Le ciel était d'un gris noirâtre avant l'orage.", + "example_sentence_english": "The sky was a blackish grey before the storm.", + "pos": "adjective", + "word_frequency": 26974 + }, + { + "word": "palpitation", + "article_with_word": "la palpitation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palpitation", + "example_sentence_native": "Elle ressentait des palpitations après l'effort.", + "example_sentence_english": "She felt palpitations after the effort.", + "pos": "noun", + "word_frequency": 26979 + }, + { + "word": "parlant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speaking;telling;expressive", + "example_sentence_native": "Son regard était très parlant.", + "example_sentence_english": "His gaze was very telling.", + "pos": "adjective", + "word_frequency": 26981 + }, + { + "word": "pilleur", + "article_with_word": "le pilleur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looter;plunderer", + "example_sentence_native": "Les pilleurs ont été arrêtés par la police.", + "example_sentence_english": "The looters were arrested by the police.", + "pos": "noun", + "word_frequency": 26985 + }, + { + "word": "plaquage", + "article_with_word": "le plaquage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tackle (rugby);plating", + "example_sentence_native": "Le joueur a réussi un plaquage impressionnant.", + "example_sentence_english": "The player made an impressive tackle.", + "pos": "noun", + "word_frequency": 26990 + }, + { + "word": "préscolaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preschool", + "example_sentence_native": "L'éducation préscolaire est très importante pour le développement de l'enfant.", + "example_sentence_english": "Preschool education is very important for child development.", + "pos": "adjective", + "word_frequency": 26994 + }, + { + "word": "prôné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advocated;championed", + "example_sentence_native": "Les valeurs prônées par ce mouvement sont la paix et la justice.", + "example_sentence_english": "The values championed by this movement are peace and justice.", + "pos": "adjective", + "word_frequency": 26995 + }, + { + "word": "puérile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "childish;puerile", + "example_sentence_native": "Son comportement était parfois très puérile.", + "example_sentence_english": "His behavior was sometimes very childish.", + "pos": "adjective", + "word_frequency": 26996 + }, + { + "word": "recordman", + "article_with_word": "le recordman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record holder", + "example_sentence_native": "Le recordman a battu son propre temps.", + "example_sentence_english": "The record holder beat his own time.", + "pos": "noun", + "word_frequency": 27000 + }, + { + "word": "regardé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "looked at;watched", + "example_sentence_native": "Le film était très regardé.", + "example_sentence_english": "The film was widely watched.", + "pos": "adjective", + "word_frequency": 27001 + }, + { + "word": "remote", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remote", + "example_sentence_native": "De plus en plus d'entreprises proposent du travail remote.", + "example_sentence_english": "More and more companies offer remote work.", + "pos": "adjective", + "word_frequency": 27003 + }, + { + "word": "repéré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spotted;located;identified", + "example_sentence_native": "Le suspect a été repéré près de la gare.", + "example_sentence_english": "The suspect was spotted near the station.", + "pos": "adjective", + "word_frequency": 27004 + }, + { + "word": "restitué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "returned;restored", + "example_sentence_native": "Les objets volés ont été restitués à leur propriétaire.", + "example_sentence_english": "The stolen items were returned to their owner.", + "pos": "adjective", + "word_frequency": 27005 + }, + { + "word": "retraitement", + "article_with_word": "le retraitement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprocessing;treatment", + "example_sentence_native": "Le retraitement des déchets nucléaires est un sujet complexe.", + "example_sentence_english": "The reprocessing of nuclear waste is a complex subject.", + "pos": "noun", + "word_frequency": 27006 + }, + { + "word": "rhabiller", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dress again;to get dressed again", + "example_sentence_native": "Après sa douche, il s'est rhabillé rapidement.", + "example_sentence_english": "After his shower, he got dressed again quickly.", + "pos": "verb", + "word_frequency": 27007 + }, + { + "word": "roder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break in (a machine);to lurk;to prowl", + "example_sentence_native": "Il faut roder le moteur d'une nouvelle voiture.", + "example_sentence_english": "You need to break in the engine of a new car.", + "pos": "verb", + "word_frequency": 27009 + }, + { + "word": "réanimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resuscitate;to revive", + "example_sentence_native": "Les secouristes ont tenté de réanimer la victime.", + "example_sentence_english": "The paramedics tried to resuscitate the victim.", + "pos": "verb", + "word_frequency": 27010 + }, + { + "word": "régate", + "article_with_word": "la régate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regatta", + "example_sentence_native": "La régate annuelle attire de nombreux participants.", + "example_sentence_english": "The annual regatta attracts many participants.", + "pos": "noun", + "word_frequency": 27011 + }, + { + "word": "saké", + "article_with_word": "le saké", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sake", + "example_sentence_native": "Nous avons bu du saké avec notre repas japonais.", + "example_sentence_english": "We drank sake with our Japanese meal.", + "pos": "noun", + "word_frequency": 27013 + }, + { + "word": "salinité", + "article_with_word": "la salinité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salinity", + "example_sentence_native": "La salinité de l'eau de mer varie selon les régions.", + "example_sentence_english": "The salinity of seawater varies by region.", + "pos": "noun", + "word_frequency": 27014 + }, + { + "word": "sapé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dressed (slang);undermined", + "example_sentence_native": "Il était bien sapé pour la soirée.", + "example_sentence_english": "He was well dressed for the party.", + "pos": "adjective", + "word_frequency": 27018 + }, + { + "word": "saumure", + "article_with_word": "la saumure", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brine", + "example_sentence_native": "Les olives sont conservées dans de la saumure.", + "example_sentence_english": "Olives are preserved in brine.", + "pos": "noun", + "word_frequency": 27019 + }, + { + "word": "sax", + "article_with_word": "le sax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sax (saxophone)", + "example_sentence_native": "Il joue du sax dans un groupe de jazz.", + "example_sentence_english": "He plays the sax in a jazz band.", + "pos": "noun", + "word_frequency": 27020 + }, + { + "word": "scale", + "article_with_word": "la scale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scale (as in scaling up)", + "example_sentence_native": "L'entreprise cherche à augmenter sa scale.", + "example_sentence_english": "The company is looking to increase its scale.", + "pos": "noun", + "word_frequency": 27021 + }, + { + "word": "sidérurgique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steelmaking;iron and steel", + "example_sentence_native": "L'industrie sidérurgique est importante dans cette région.", + "example_sentence_english": "The steelmaking industry is important in this region.", + "pos": "adjective", + "word_frequency": 27023 + }, + { + "word": "ska", + "article_with_word": "le ska", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ska", + "example_sentence_native": "Le ska est un genre musical originaire de la Jamaïque.", + "example_sentence_english": "Ska is a musical genre originating from Jamaica.", + "pos": "noun", + "word_frequency": 27025 + }, + { + "word": "sociopathe", + "article_with_word": "le sociopathe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociopath", + "example_sentence_native": "Le personnage principal était un sociopathe manipulateur.", + "example_sentence_english": "The main character was a manipulative sociopath.", + "pos": "noun", + "word_frequency": 27027 + }, + { + "word": "sondeur", + "article_with_word": "le sondeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pollster;sounder (device)", + "example_sentence_native": "Le sondeur a prédit une forte participation.", + "example_sentence_english": "The pollster predicted a high turnout.", + "pos": "noun", + "word_frequency": 27028 + }, + { + "word": "spitz", + "article_with_word": "le spitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spitz (dog breed)", + "example_sentence_native": "Mon voisin a un petit chien de race spitz.", + "example_sentence_english": "My neighbor has a small spitz dog.", + "pos": "noun", + "word_frequency": 27029 + }, + { + "word": "squadra", + "article_with_word": "la squadra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "team (Italian loanword)", + "example_sentence_native": "La squadra italienne a remporté le match.", + "example_sentence_english": "The Italian team won the match.", + "pos": "noun", + "word_frequency": 27030 + }, + { + "word": "stalinien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Stalinist", + "example_sentence_native": "Le régime stalinien était caractérisé par la répression.", + "example_sentence_english": "The Stalinist regime was characterized by repression.", + "pos": "adjective", + "word_frequency": 27031 + }, + { + "word": "standardisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standardized", + "example_sentence_native": "Les procédures ont été standardisées pour plus d'efficacité.", + "example_sentence_english": "The procedures have been standardized for greater efficiency.", + "pos": "adjective", + "word_frequency": 27032 + }, + { + "word": "suicidé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicidal (as in 'who committed suicide')", + "example_sentence_native": "La personne suicidée a laissé une lettre.", + "example_sentence_english": "The person who committed suicide left a letter.", + "pos": "adjective", + "word_frequency": 27033 + }, + { + "word": "susceptibilité", + "article_with_word": "la susceptibilité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "susceptibility;touchiness", + "example_sentence_native": "Il a une grande susceptibilité et se vexe facilement.", + "example_sentence_english": "He has great touchiness and gets offended easily.", + "pos": "noun", + "word_frequency": 27034 + }, + { + "word": "séculier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secular", + "example_sentence_native": "L'État français est un État séculier.", + "example_sentence_english": "The French state is a secular state.", + "pos": "adjective", + "word_frequency": 27038 + }, + { + "word": "séquestré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sequestered;held captive", + "example_sentence_native": "La victime a été retrouvée séquestrée dans une cave.", + "example_sentence_english": "The victim was found held captive in a cellar.", + "pos": "adjective", + "word_frequency": 27039 + }, + { + "word": "talc", + "article_with_word": "le talc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talc;talcum powder", + "example_sentence_native": "Le talc est souvent utilisé pour les bébés.", + "example_sentence_english": "Talc is often used for babies.", + "pos": "noun", + "word_frequency": 27040 + }, + { + "word": "targuer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to boast;to pride oneself", + "example_sentence_native": "Il se targue d'être le meilleur.", + "example_sentence_english": "He boasts about being the best.", + "pos": "verb", + "word_frequency": 27041 + }, + { + "word": "teigne", + "article_with_word": "la teigne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ringworm;nasty person", + "example_sentence_native": "La teigne est une infection de la peau.", + "example_sentence_english": "Ringworm is a skin infection.", + "pos": "noun", + "word_frequency": 27044 + }, + { + "word": "tiki", + "article_with_word": "le tiki", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tiki (Polynesian carving)", + "example_sentence_native": "Un tiki est une sculpture polynésienne.", + "example_sentence_english": "A tiki is a Polynesian carving.", + "pos": "noun", + "word_frequency": 27049 + }, + { + "word": "tourbière", + "article_with_word": "la tourbière", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peat bog;moor", + "example_sentence_native": "La tourbière est un écosystème humide.", + "example_sentence_english": "The peat bog is a wetland ecosystem.", + "pos": "noun", + "word_frequency": 27052 + }, + { + "word": "trimballer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lug around;to drag around", + "example_sentence_native": "Il a dû trimballer ses valises.", + "example_sentence_english": "He had to lug his suitcases around.", + "pos": "verb", + "word_frequency": 27054 + }, + { + "word": "tuning", + "article_with_word": "le tuning", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuning (car modification)", + "example_sentence_native": "Le tuning de voitures est populaire.", + "example_sentence_english": "Car tuning is popular.", + "pos": "noun", + "word_frequency": 27056 + }, + { + "word": "unioniste", + "article_with_word": "un unioniste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unionist", + "example_sentence_native": "Les unionistes ont manifesté.", + "example_sentence_english": "The unionists demonstrated.", + "pos": "noun", + "word_frequency": 27058 + }, + { + "word": "vacation", + "article_with_word": "la vacation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "session;sitting (e.g.;court;auction)", + "example_sentence_native": "La vacation de la vente aux enchères a duré trois heures.", + "example_sentence_english": "The auction session lasted three hours.", + "pos": "noun", + "word_frequency": 27059 + }, + { + "word": "ventricule", + "article_with_word": "le ventricule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ventricle", + "example_sentence_native": "Le cœur a deux ventricules.", + "example_sentence_english": "The heart has two ventricles.", + "pos": "noun", + "word_frequency": 27061 + }, + { + "word": "verrue", + "article_with_word": "la verrue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wart", + "example_sentence_native": "Elle a une verrue sur le doigt.", + "example_sentence_english": "She has a wart on her finger.", + "pos": "noun", + "word_frequency": 27062 + }, + { + "word": "vidéoclip", + "article_with_word": "le vidéoclip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "music video;video clip", + "example_sentence_native": "J'ai regardé le nouveau vidéoclip de mon groupe préféré.", + "example_sentence_english": "I watched the new music video of my favorite band.", + "pos": "noun", + "word_frequency": 27064 + }, + { + "word": "vire", + "article_with_word": "la vire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ledge;turn;bend", + "example_sentence_native": "Les alpinistes ont trouvé une petite vire.", + "example_sentence_english": "The climbers found a small ledge.", + "pos": "noun", + "word_frequency": 27065 + }, + { + "word": "voiturier", + "article_with_word": "le voiturier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valet (parking attendant)", + "example_sentence_native": "Le voiturier a garé notre voiture.", + "example_sentence_english": "The valet parked our car.", + "pos": "noun", + "word_frequency": 27068 + }, + { + "word": "whiskey", + "article_with_word": "le whiskey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whiskey", + "example_sentence_native": "Il a commandé un verre de whiskey.", + "example_sentence_english": "He ordered a glass of whiskey.", + "pos": "noun", + "word_frequency": 27070 + }, + { + "word": "égarement", + "article_with_word": "l'égarement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bewilderment;confusion;straying", + "example_sentence_native": "Il a agi dans un moment d'égarement.", + "example_sentence_english": "He acted in a moment of bewilderment.", + "pos": "noun", + "word_frequency": 27079 + }, + { + "word": "épileptique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epileptic", + "example_sentence_native": "Il a eu une crise épileptique soudaine.", + "example_sentence_english": "He had a sudden epileptic seizure.", + "pos": "adjective", + "word_frequency": 27080 + }, + { + "word": "étoffé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substantial;well-developed", + "example_sentence_native": "Son dossier de candidature était très étoffé.", + "example_sentence_english": "His application file was very substantial.", + "pos": "adjective", + "word_frequency": 27081 + }, + { + "word": "ans", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "years (old)", + "example_sentence_native": "Mon frère a dix ans.", + "example_sentence_english": "My brother is ten years old.", + "pos": "numeral", + "word_frequency": 27082 + }, + { + "word": "abattant", + "article_with_word": "l'abattant", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toilet seat;flap", + "example_sentence_native": "L'abattant des toilettes était cassé.", + "example_sentence_english": "The toilet seat was broken.", + "pos": "noun", + "word_frequency": 27083 + }, + { + "word": "accaparé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engrossed;monopolized", + "example_sentence_native": "Il était complètement accaparé par son nouveau projet.", + "example_sentence_english": "He was completely engrossed in his new project.", + "pos": "adjective", + "word_frequency": 27085 + }, + { + "word": "acquiescer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquiesce;to agree", + "example_sentence_native": "Elle a acquiescé à sa proposition sans hésiter.", + "example_sentence_english": "She acquiesced to his proposal without hesitation.", + "pos": "verb", + "word_frequency": 27086 + }, + { + "word": "activé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "activated", + "example_sentence_native": "Le système d'alarme est maintenant activé.", + "example_sentence_english": "The alarm system is now activated.", + "pos": "adjective", + "word_frequency": 27087 + }, + { + "word": "affranchit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frees;emancipates", + "example_sentence_native": "La lecture nous affranchit des préjugés.", + "example_sentence_english": "Reading frees us from prejudices.", + "pos": "verb", + "word_frequency": 27088 + }, + { + "word": "aigreur", + "article_with_word": "l'aigreur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sourness;bitterness", + "example_sentence_native": "Il y avait une certaine aigreur dans ses propos.", + "example_sentence_english": "There was a certain bitterness in his remarks.", + "pos": "noun", + "word_frequency": 27090 + }, + { + "word": "antimoine", + "article_with_word": "l'antimoine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antimony", + "example_sentence_native": "L'antimoine est un métal utilisé dans les alliages.", + "example_sentence_english": "Antimony is a metal used in alloys.", + "pos": "noun", + "word_frequency": 27092 + }, + { + "word": "apostolat", + "article_with_word": "l'apostolat", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apostolate", + "example_sentence_native": "Son apostolat était dédié à l'aide aux plus démunis.", + "example_sentence_english": "His apostolate was dedicated to helping the most deprived.", + "pos": "noun", + "word_frequency": 27094 + }, + { + "word": "arrivage", + "article_with_word": "l'arrivage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrival (of goods);shipment", + "example_sentence_native": "Nous attendons un nouvel arrivage de fruits exotiques.", + "example_sentence_english": "We are expecting a new shipment of exotic fruits.", + "pos": "noun", + "word_frequency": 27095 + }, + { + "word": "artilleur", + "article_with_word": "l'artilleur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artilleryman;gunner", + "example_sentence_native": "L'artilleur a ajusté la visée du canon.", + "example_sentence_english": "The artilleryman adjusted the cannon's aim.", + "pos": "noun", + "word_frequency": 27096 + }, + { + "word": "auréole", + "article_with_word": "l'auréole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halo", + "example_sentence_native": "Le soleil formait une auréole autour de sa tête.", + "example_sentence_english": "The sun formed a halo around her head.", + "pos": "noun", + "word_frequency": 27101 + }, + { + "word": "autoproclamé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-proclaimed", + "example_sentence_native": "Il est le leader autoproclamé du groupe.", + "example_sentence_english": "He is the self-proclaimed leader of the group.", + "pos": "adjective", + "word_frequency": 27103 + }, + { + "word": "balisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marked;signposted", + "example_sentence_native": "Le sentier de randonnée est très bien balisé.", + "example_sentence_english": "The hiking trail is very well marked.", + "pos": "adjective", + "word_frequency": 27106 + }, + { + "word": "ballast", + "article_with_word": "le ballast", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballast", + "example_sentence_native": "Le ballast est essentiel pour la stabilité des voies ferrées.", + "example_sentence_english": "Ballast is essential for the stability of railway tracks.", + "pos": "noun", + "word_frequency": 27107 + }, + { + "word": "baratin", + "article_with_word": "le baratin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sweet talk;patter", + "example_sentence_native": "Ne te laisse pas avoir par son baratin.", + "example_sentence_english": "Don't be fooled by his sweet talk.", + "pos": "noun", + "word_frequency": 27108 + }, + { + "word": "basset", + "article_with_word": "le basset", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basset hound", + "example_sentence_native": "Mon voisin a un adorable basset.", + "example_sentence_english": "My neighbor has an adorable basset hound.", + "pos": "noun", + "word_frequency": 27110 + }, + { + "word": "biaisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biased", + "example_sentence_native": "Son jugement était clairement biaisé par ses émotions.", + "example_sentence_english": "His judgment was clearly biased by his emotions.", + "pos": "adjective", + "word_frequency": 27114 + }, + { + "word": "biocarburant", + "article_with_word": "le biocarburant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biofuel", + "example_sentence_native": "Les biocarburants sont considérés comme une énergie renouvelable.", + "example_sentence_english": "Biofuels are considered a renewable energy.", + "pos": "noun", + "word_frequency": 27116 + }, + { + "word": "bistouri", + "article_with_word": "le bistouri", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scalpel", + "example_sentence_native": "Le chirurgien a manié le bistouri avec précision.", + "example_sentence_english": "The surgeon handled the scalpel with precision.", + "pos": "noun", + "word_frequency": 27117 + }, + { + "word": "blackout", + "article_with_word": "le blackout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackout", + "example_sentence_native": "Un blackout général a plongé la ville dans l'obscurité.", + "example_sentence_english": "A general blackout plunged the city into darkness.", + "pos": "noun", + "word_frequency": 27118 + }, + { + "word": "booker", + "article_with_word": "le booker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "booker;agent", + "example_sentence_native": "Son booker lui a décroché un contrat important.", + "example_sentence_english": "His booker landed him an important contract.", + "pos": "noun", + "word_frequency": 27119 + }, + { + "word": "bousculade", + "article_with_word": "la bousculade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scramble;jostle", + "example_sentence_native": "Il y a eu une bousculade à l'entrée du concert.", + "example_sentence_english": "There was a scramble at the concert entrance.", + "pos": "noun", + "word_frequency": 27121 + }, + { + "word": "cambriolé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burgled;robbed", + "example_sentence_native": "La maison voisine a été cambriolée la nuit dernière.", + "example_sentence_english": "The neighboring house was burgled last night.", + "pos": "adjective", + "word_frequency": 27128 + }, + { + "word": "campanile", + "article_with_word": "le campanile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "campanile;bell tower", + "example_sentence_native": "Le campanile de l'église est très ancien.", + "example_sentence_english": "The church's campanile is very old.", + "pos": "noun", + "word_frequency": 27130 + }, + { + "word": "cantonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confined;restricted", + "example_sentence_native": "Le problème est resté cantonné à la région.", + "example_sentence_english": "The problem remained confined to the region.", + "pos": "adjective", + "word_frequency": 27132 + }, + { + "word": "captage", + "article_with_word": "le captage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capture;collection (of water;gas)", + "example_sentence_native": "Le captage des eaux souterraines est essentiel pour la ville.", + "example_sentence_english": "The collection of groundwater is essential for the city.", + "pos": "noun", + "word_frequency": 27134 + }, + { + "word": "cendré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ash-colored;ashen", + "example_sentence_native": "Elle a les cheveux blonds cendrés.", + "example_sentence_english": "She has ash blonde hair.", + "pos": "adjective", + "word_frequency": 27136 + }, + { + "word": "cerceau", + "article_with_word": "le cerceau", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoop", + "example_sentence_native": "Les enfants jouent avec un cerceau dans le jardin.", + "example_sentence_english": "The children are playing with a hoop in the garden.", + "pos": "noun", + "word_frequency": 27137 + }, + { + "word": "cessant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ceasing;stopping", + "example_sentence_native": "Il a reçu un ordre de cesser toute activité.", + "example_sentence_english": "He received an order to cease all activity.", + "pos": "adjective", + "word_frequency": 27138 + }, + { + "word": "chauffé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heated", + "example_sentence_native": "La piscine est chauffée toute l'année.", + "example_sentence_english": "The swimming pool is heated all year round.", + "pos": "adjective", + "word_frequency": 27140 + }, + { + "word": "chevrier", + "article_with_word": "le chevrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goatherd", + "example_sentence_native": "Le chevrier mène ses chèvres aux pâturages.", + "example_sentence_english": "The goatherd leads his goats to the pastures.", + "pos": "noun", + "word_frequency": 27141 + }, + { + "word": "circonflexe", + "article_with_word": "l'accent circonflexe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circumflex accent", + "example_sentence_native": "Le mot 'forêt' prend un accent circonflexe.", + "example_sentence_english": "The word 'forêt' takes a circumflex accent.", + "pos": "noun", + "word_frequency": 27143 + }, + { + "word": "clameur", + "article_with_word": "la clameur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clamor;outcry", + "example_sentence_native": "Une clameur s'est élevée de la foule.", + "example_sentence_english": "An outcry rose from the crowd.", + "pos": "noun", + "word_frequency": 27144 + }, + { + "word": "clarifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarified", + "example_sentence_native": "Le beurre clarifié est souvent utilisé en cuisine.", + "example_sentence_english": "Clarified butter is often used in cooking.", + "pos": "adjective", + "word_frequency": 27145 + }, + { + "word": "compromission", + "article_with_word": "la compromission", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compromise (negative sense);damaging concession", + "example_sentence_native": "Il a refusé toute compromission avec ses principes.", + "example_sentence_english": "He refused any compromise with his principles.", + "pos": "noun", + "word_frequency": 27149 + }, + { + "word": "concorder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to agree;to concur;to match", + "example_sentence_native": "Leurs témoignages concordent parfaitement.", + "example_sentence_english": "Their testimonies match perfectly.", + "pos": "verb", + "word_frequency": 27150 + }, + { + "word": "conjuration", + "article_with_word": "la conjuration", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspiracy;plot", + "example_sentence_native": "La conjuration visait à renverser le gouvernement.", + "example_sentence_english": "The conspiracy aimed to overthrow the government.", + "pos": "noun", + "word_frequency": 27151 + }, + { + "word": "contenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satisfied;content", + "example_sentence_native": "Il s'est contenté d'une petite portion.", + "example_sentence_english": "He was content with a small portion.", + "pos": "adjective", + "word_frequency": 27152 + }, + { + "word": "convection", + "article_with_word": "la convection", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convection", + "example_sentence_native": "La chaleur se propage par convection dans l'air.", + "example_sentence_english": "Heat spreads by convection in the air.", + "pos": "noun", + "word_frequency": 27153 + }, + { + "word": "criblé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "riddled;riddled with", + "example_sentence_native": "Il était criblé de dettes.", + "example_sentence_english": "He was riddled with debts.", + "pos": "adjective", + "word_frequency": 27154 + }, + { + "word": "distanciation", + "article_with_word": "la distanciation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distancing", + "example_sentence_native": "La distanciation sociale est devenue la norme.", + "example_sentence_english": "Social distancing has become the norm.", + "pos": "noun", + "word_frequency": 27160 + }, + { + "word": "domicilié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domiciled", + "example_sentence_native": "Il est domicilié à Paris.", + "example_sentence_english": "He is domiciled in Paris.", + "pos": "adjective", + "word_frequency": 27161 + }, + { + "word": "doodle", + "article_with_word": "un doodle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doodle", + "example_sentence_native": "J'ai fait un doodle pendant la réunion.", + "example_sentence_english": "I made a doodle during the meeting.", + "pos": "noun", + "word_frequency": 27164 + }, + { + "word": "décibel", + "article_with_word": "le décibel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decibel", + "example_sentence_native": "Le niveau sonore est mesuré en décibels.", + "example_sentence_english": "The sound level is measured in decibels.", + "pos": "noun", + "word_frequency": 27169 + }, + { + "word": "dédicacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autographed", + "example_sentence_native": "J'ai un livre dédicacé par l'auteur.", + "example_sentence_english": "I have a book autographed by the author.", + "pos": "adjective", + "word_frequency": 27170 + }, + { + "word": "désaffecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disused", + "example_sentence_native": "L'ancienne usine est maintenant désaffectée.", + "example_sentence_english": "The old factory is now disused.", + "pos": "adjective", + "word_frequency": 27171 + }, + { + "word": "désemparé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helpless", + "example_sentence_native": "Elle se sentait complètement désemparée face à la situation.", + "example_sentence_english": "She felt completely helpless in the face of the situation.", + "pos": "adjective", + "word_frequency": 27172 + }, + { + "word": "emporté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carried away", + "example_sentence_native": "Il est très emporté quand il est en colère.", + "example_sentence_english": "He is very hot-headed when he is angry.", + "pos": "adjective", + "word_frequency": 27176 + }, + { + "word": "encerclé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrounded", + "example_sentence_native": "Le village était encerclé par les montagnes.", + "example_sentence_english": "The village was surrounded by the mountains.", + "pos": "adjective", + "word_frequency": 27177 + }, + { + "word": "encouru", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incurred", + "example_sentence_native": "Les frais encourus seront remboursés.", + "example_sentence_english": "The incurred costs will be reimbursed.", + "pos": "adjective", + "word_frequency": 27178 + }, + { + "word": "enrôlement", + "article_with_word": "l'enrôlement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlistment", + "example_sentence_native": "L'enrôlement dans l'armée est volontaire.", + "example_sentence_english": "Enlistment in the army is voluntary.", + "pos": "noun", + "word_frequency": 27179 + }, + { + "word": "entériner", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ratify", + "example_sentence_native": "Le conseil a décidé d'entériner la proposition.", + "example_sentence_english": "The council decided to ratify the proposal.", + "pos": "verb", + "word_frequency": 27180 + }, + { + "word": "envoûtant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bewitching", + "example_sentence_native": "Sa voix était absolument envoûtante.", + "example_sentence_english": "Her voice was absolutely captivating.", + "pos": "adjective", + "word_frequency": 27181 + }, + { + "word": "espéranto", + "article_with_word": "l'espéranto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Esperanto", + "example_sentence_native": "L'espéranto est une langue construite.", + "example_sentence_english": "Esperanto is a constructed language.", + "pos": "noun", + "word_frequency": 27182 + }, + { + "word": "ethnologue", + "article_with_word": "l'ethnologue", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ethnologist", + "example_sentence_native": "L'ethnologue étudie les cultures humaines.", + "example_sentence_english": "The ethnologist studies human cultures.", + "pos": "noun", + "word_frequency": 27183 + }, + { + "word": "eugénisme", + "article_with_word": "l'eugénisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eugenics", + "example_sentence_native": "L'eugénisme est une idéologie controversée.", + "example_sentence_english": "Eugenics is a controversial ideology.", + "pos": "noun", + "word_frequency": 27184 + }, + { + "word": "exalté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exalted", + "example_sentence_native": "Il était exalté par la nouvelle.", + "example_sentence_english": "He was overjoyed by the news.", + "pos": "adjective", + "word_frequency": 27186 + }, + { + "word": "expatrier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expatriate", + "example_sentence_native": "Beaucoup de jeunes décident de s'expatrier pour travailler.", + "example_sentence_english": "Many young people decide to expatriate to work.", + "pos": "verb", + "word_frequency": 27188 + }, + { + "word": "exterminé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exterminated", + "example_sentence_native": "Les insectes nuisibles ont été exterminés.", + "example_sentence_english": "The harmful insects were exterminated.", + "pos": "adjective", + "word_frequency": 27189 + }, + { + "word": "fasciné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinated", + "example_sentence_native": "Elle était fascinée par l'histoire.", + "example_sentence_english": "She was fascinated by history.", + "pos": "adjective", + "word_frequency": 27190 + }, + { + "word": "favela", + "article_with_word": "la favela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favela (Brazilian slum)", + "example_sentence_native": "Les favelas sont des quartiers pauvres au Brésil.", + "example_sentence_english": "Favelas are poor neighborhoods in Brazil.", + "pos": "noun", + "word_frequency": 27193 + }, + { + "word": "filtré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filtered", + "example_sentence_native": "L'eau filtrée est plus pure.", + "example_sentence_english": "Filtered water is purer.", + "pos": "adjective", + "word_frequency": 27199 + }, + { + "word": "fortress", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortress", + "example_sentence_native": "La forteresse médiévale domine la ville.", + "example_sentence_english": "The medieval fortress dominates the city.", + "pos": "noun", + "word_frequency": 27200 + }, + { + "word": "fouillis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess;jumble", + "example_sentence_native": "Son bureau est toujours un fouillis incroyable.", + "example_sentence_english": "His office is always an incredible mess.", + "pos": "noun", + "word_frequency": 27201 + }, + { + "word": "frottis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "smear (medical);swab", + "example_sentence_native": "Le médecin a demandé un frottis pour analyse.", + "example_sentence_english": "The doctor requested a smear for analysis.", + "pos": "noun", + "word_frequency": 27202 + }, + { + "word": "hyperactivité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hyperactivity", + "example_sentence_native": "L'hyperactivité peut rendre la concentration difficile.", + "example_sentence_english": "Hyperactivity can make concentration difficult.", + "pos": "noun", + "word_frequency": 27217 + }, + { + "word": "iconographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iconographic", + "example_sentence_native": "L'analyse iconographique de l'œuvre est complexe.", + "example_sentence_english": "The iconographic analysis of the work is complex.", + "pos": "adjective", + "word_frequency": 27219 + }, + { + "word": "immergé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immersed;submerged", + "example_sentence_native": "Il était complètement immergé dans son travail.", + "example_sentence_english": "He was completely immersed in his work.", + "pos": "adjective", + "word_frequency": 27222 + }, + { + "word": "immobilité", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immobility;stillness", + "example_sentence_native": "L'immobilité de la statue était frappante.", + "example_sentence_english": "The immobility of the statue was striking.", + "pos": "noun", + "word_frequency": 27223 + }, + { + "word": "impersonnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impersonal", + "example_sentence_native": "Le style de son écriture est très impersonnel.", + "example_sentence_english": "The style of his writing is very impersonal.", + "pos": "adjective", + "word_frequency": 27224 + }, + { + "word": "incisif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incisive;sharp", + "example_sentence_native": "Son commentaire était très incisif et pertinent.", + "example_sentence_english": "His comment was very incisive and relevant.", + "pos": "adjective", + "word_frequency": 27225 + }, + { + "word": "infestation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infestation", + "example_sentence_native": "Il y a eu une infestation de cafards dans l'immeuble.", + "example_sentence_english": "There was a cockroach infestation in the building.", + "pos": "noun", + "word_frequency": 27226 + }, + { + "word": "innovateur", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovator", + "example_sentence_native": "C'est un véritable innovateur dans son domaine.", + "example_sentence_english": "He is a true innovator in his field.", + "pos": "noun", + "word_frequency": 27228 + }, + { + "word": "instruit", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "educated;well-read", + "example_sentence_native": "C'est une personne très instruite et cultivée.", + "example_sentence_english": "She is a very educated and cultured person.", + "pos": "adjective", + "word_frequency": 27229 + }, + { + "word": "intronisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enthroned;inaugurated", + "example_sentence_native": "Le nouveau roi a été intronisé hier.", + "example_sentence_english": "The new king was enthroned yesterday.", + "pos": "adjective", + "word_frequency": 27230 + }, + { + "word": "inviolable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inviolable", + "example_sentence_native": "Le droit à la vie privée est inviolable.", + "example_sentence_english": "The right to privacy is inviolable.", + "pos": "adjective", + "word_frequency": 27231 + }, + { + "word": "invoqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invoked;called upon", + "example_sentence_native": "L'argument invoqué n'était pas suffisant.", + "example_sentence_english": "The argument invoked was not sufficient.", + "pos": "adjective", + "word_frequency": 27232 + }, + { + "word": "irrespect", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disrespect", + "example_sentence_native": "Son irrespect envers l'autorité était évident.", + "example_sentence_english": "His disrespect towards authority was evident.", + "pos": "noun", + "word_frequency": 27233 + }, + { + "word": "kényan", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Kenyan (person)", + "example_sentence_native": "Le Kényan a remporté la course de marathon.", + "example_sentence_english": "The Kenyan won the marathon race.", + "pos": "noun", + "word_frequency": 27242 + }, + { + "word": "ligoté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tied up;bound", + "example_sentence_native": "L'homme a été retrouvé ligoté dans la cave.", + "example_sentence_english": "The man was found tied up in the cellar.", + "pos": "adjective", + "word_frequency": 27248 + }, + { + "word": "loué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "praised;rented", + "example_sentence_native": "Son courage a été loué par tous.", + "example_sentence_english": "His courage was praised by everyone.", + "pos": "adjective", + "word_frequency": 27250 + }, + { + "word": "luisant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shiny;gleaming", + "example_sentence_native": "Ses cheveux étaient noirs et luisants.", + "example_sentence_english": "Her hair was black and shiny.", + "pos": "adjective", + "word_frequency": 27253 + }, + { + "word": "mamelle", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "udder;breast (animal)", + "example_sentence_native": "Le veau tétait la mamelle de sa mère.", + "example_sentence_english": "The calf was suckling its mother's udder.", + "pos": "noun", + "word_frequency": 27260 + }, + { + "word": "mastic", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mastic;sealant", + "example_sentence_native": "Il a utilisé du mastic pour sceller la fenêtre.", + "example_sentence_english": "He used mastic to seal the window.", + "pos": "noun", + "word_frequency": 27262 + }, + { + "word": "miteux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shabby;rundown;seedy", + "example_sentence_native": "Il vivait dans un appartement miteux.", + "example_sentence_english": "He lived in a shabby apartment.", + "pos": "adjective", + "word_frequency": 27265 + }, + { + "word": "momentum", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "momentum", + "example_sentence_native": "L'équipe a perdu son momentum après la pause.", + "example_sentence_english": "The team lost its momentum after the break.", + "pos": "noun", + "word_frequency": 27267 + }, + { + "word": "monogramme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monogram", + "example_sentence_native": "Le monogramme sur la serviette était élégant.", + "example_sentence_english": "The monogram on the napkin was elegant.", + "pos": "noun", + "word_frequency": 27268 + }, + { + "word": "moribond", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dying;moribund", + "example_sentence_native": "L'entreprise était en état moribond.", + "example_sentence_english": "The company was in a moribund state.", + "pos": "adjective", + "word_frequency": 27270 + }, + { + "word": "motoneige", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowmobile", + "example_sentence_native": "Nous avons fait une excursion en motoneige.", + "example_sentence_english": "We went on a snowmobile excursion.", + "pos": "noun", + "word_frequency": 27273 + }, + { + "word": "muscat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "muscat (grape;wine)", + "example_sentence_native": "J'aime le vin de muscat doux.", + "example_sentence_english": "I like sweet muscat wine.", + "pos": "noun", + "word_frequency": 27275 + }, + { + "word": "notifié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notified;served (legally)", + "example_sentence_native": "Le changement a été notifié à tous les employés.", + "example_sentence_english": "The change was notified to all employees.", + "pos": "adjective", + "word_frequency": 27278 + }, + { + "word": "népotisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nepotism", + "example_sentence_native": "Le népotisme est souvent critiqué dans la politique.", + "example_sentence_english": "Nepotism is often criticized in politics.", + "pos": "noun", + "word_frequency": 27279 + }, + { + "word": "occase", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bargain;second-hand item", + "example_sentence_native": "J'ai trouvé une super occase pour cette voiture.", + "example_sentence_english": "I found a great bargain for this car.", + "pos": "noun", + "word_frequency": 27280 + }, + { + "word": "octogénaire", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "octogenarian", + "example_sentence_native": "L'octogénaire a raconté ses souvenirs de guerre.", + "example_sentence_english": "The octogenarian recounted his war memories.", + "pos": "noun", + "word_frequency": 27281 + }, + { + "word": "océanographique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oceanographic", + "example_sentence_native": "Ils mènent des recherches océanographiques.", + "example_sentence_english": "They conduct oceanographic research.", + "pos": "adjective", + "word_frequency": 27282 + }, + { + "word": "officialisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officialization;formalization", + "example_sentence_native": "L'officialisation de l'accord est prévue pour demain.", + "example_sentence_english": "The officialization of the agreement is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 27283 + }, + { + "word": "orb", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orb;sphere", + "example_sentence_native": "L'orb de cristal brillait dans l'obscurité.", + "example_sentence_english": "The crystal orb glowed in the darkness.", + "pos": "noun", + "word_frequency": 27286 + }, + { + "word": "oxymore", + "article_with_word": "un", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oxymoron", + "example_sentence_native": "\"Un silence assourdissant\" est un oxymore.", + "example_sentence_english": "\"A deafening silence\" is an oxymoron.", + "pos": "noun", + "word_frequency": 27289 + }, + { + "word": "pantomime", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pantomime;charade", + "example_sentence_native": "Ils ont joué une pantomime amusante.", + "example_sentence_english": "They performed an amusing pantomime.", + "pos": "noun", + "word_frequency": 27291 + }, + { + "word": "personnalisable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customizable;personalizable", + "example_sentence_native": "Ce produit est entièrement personnalisable.", + "example_sentence_english": "This product is entirely customizable.", + "pos": "adjective", + "word_frequency": 27294 + }, + { + "word": "petitesse", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "smallness;pettiness", + "example_sentence_native": "Il a montré une certaine petitesse d'esprit.", + "example_sentence_english": "He showed a certain pettiness of mind.", + "pos": "noun", + "word_frequency": 27295 + }, + { + "word": "pharaonique", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pharaonic;enormous", + "example_sentence_native": "Le projet a un coût pharaonique.", + "example_sentence_english": "The project has an enormous cost.", + "pos": "adjective", + "word_frequency": 27296 + }, + { + "word": "piqueur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pricker;overseer;horseman (in hunting)", + "example_sentence_native": "Le piqueur guidait la meute.", + "example_sentence_english": "The horseman guided the pack.", + "pos": "noun", + "word_frequency": 27300 + }, + { + "word": "piqure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sting;bite;injection", + "example_sentence_native": "J'ai eu une piqûre de moustique.", + "example_sentence_english": "I got a mosquito bite.", + "pos": "noun", + "word_frequency": 27301 + }, + { + "word": "planeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glider", + "example_sentence_native": "Le planeur a atterri en douceur.", + "example_sentence_english": "The glider landed smoothly.", + "pos": "noun", + "word_frequency": 27302 + }, + { + "word": "pourvoyeur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supplier;provider", + "example_sentence_native": "L'entreprise est un pourvoyeur de services informatiques.", + "example_sentence_english": "The company is a provider of IT services.", + "pos": "noun", + "word_frequency": 27306 + }, + { + "word": "procrastination", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procrastination", + "example_sentence_native": "La procrastination est un problème courant.", + "example_sentence_english": "Procrastination is a common problem.", + "pos": "noun", + "word_frequency": 27309 + }, + { + "word": "prohibé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prohibited;forbidden", + "example_sentence_native": "L'accès est strictement prohibé.", + "example_sentence_english": "Access is strictly prohibited.", + "pos": "adjective", + "word_frequency": 27310 + }, + { + "word": "prédicat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predicate", + "example_sentence_native": "Le prédicat est la partie de la phrase qui dit quelque chose sur le sujet.", + "example_sentence_english": "The predicate is the part of the sentence that says something about the subject.", + "pos": "noun", + "word_frequency": 27311 + }, + { + "word": "prêtrise", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priesthood", + "example_sentence_native": "Il a consacré sa vie à la prêtrise.", + "example_sentence_english": "He dedicated his life to the priesthood.", + "pos": "noun", + "word_frequency": 27312 + }, + { + "word": "puanteur", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stench;foul smell", + "example_sentence_native": "Une horrible puanteur émanait des égouts.", + "example_sentence_english": "A horrible stench emanated from the sewers.", + "pos": "noun", + "word_frequency": 27313 + }, + { + "word": "pyromane", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyromaniac", + "example_sentence_native": "La police recherche un pyromane.", + "example_sentence_english": "The police are looking for a pyromaniac.", + "pos": "noun", + "word_frequency": 27314 + }, + { + "word": "rabot", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plane (tool)", + "example_sentence_native": "Il a utilisé un rabot pour lisser le bois.", + "example_sentence_english": "He used a plane to smooth the wood.", + "pos": "noun", + "word_frequency": 27315 + }, + { + "word": "radié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "struck off;deregistered;expelled", + "example_sentence_native": "Son nom a été radié de la liste.", + "example_sentence_english": "His name was struck off the list.", + "pos": "adjective", + "word_frequency": 27316 + }, + { + "word": "raiponce", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rampin (plant);Rapunzel (proper noun)", + "example_sentence_native": "La raiponce est une plante comestible.", + "example_sentence_english": "Rampion is an edible plant.", + "pos": "noun", + "word_frequency": 27318 + }, + { + "word": "recommandable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recommendable;advisable", + "example_sentence_native": "Ce restaurant est très recommandable pour sa cuisine locale.", + "example_sentence_english": "This restaurant is highly recommendable for its local cuisine.", + "pos": "adjective", + "word_frequency": 27321 + }, + { + "word": "redouté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dreaded;feared", + "example_sentence_native": "L'examen final était le moment le plus redouté de l'année.", + "example_sentence_english": "The final exam was the most dreaded moment of the year.", + "pos": "adjective", + "word_frequency": 27323 + }, + { + "word": "refermé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reclosed;shut again;withdrawn (person)", + "example_sentence_native": "La porte était refermée à clé.", + "example_sentence_english": "The door was reclosed with a key.", + "pos": "adjective", + "word_frequency": 27324 + }, + { + "word": "renifler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sniff;to snuffle", + "example_sentence_native": "Le chien a commencé à renifler le sol.", + "example_sentence_english": "The dog started to sniff the ground.", + "pos": "verb", + "word_frequency": 27325 + }, + { + "word": "replacé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "replaced;put back", + "example_sentence_native": "Le livre était replacé sur l'étagère.", + "example_sentence_english": "The book was replaced on the shelf.", + "pos": "adjective", + "word_frequency": 27326 + }, + { + "word": "ressasser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rehash;to dwell on;to go over and over", + "example_sentence_native": "Il passe son temps à ressasser ses vieux souvenirs.", + "example_sentence_english": "He spends his time rehashing his old memories.", + "pos": "verb", + "word_frequency": 27327 + }, + { + "word": "rookie", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rookie;beginner", + "example_sentence_native": "Le jeune joueur est encore un rookie dans l'équipe.", + "example_sentence_english": "The young player is still a rookie on the team.", + "pos": "noun", + "word_frequency": 27328 + }, + { + "word": "roulis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roll;rolling (of a ship;plane)", + "example_sentence_native": "Le bateau a subi un fort roulis pendant la tempête.", + "example_sentence_english": "The boat experienced a strong roll during the storm.", + "pos": "noun", + "word_frequency": 27329 + }, + { + "word": "réapproprier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reappropriate;to reclaim", + "example_sentence_native": "Il est important de se réapproprier son histoire.", + "example_sentence_english": "It is important to reclaim one's history.", + "pos": "verb", + "word_frequency": 27333 + }, + { + "word": "réassurance", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reassurance;reinsurance (finance)", + "example_sentence_native": "Elle avait besoin de réassurance après cette mauvaise nouvelle.", + "example_sentence_english": "She needed reassurance after this bad news.", + "pos": "noun", + "word_frequency": 27334 + }, + { + "word": "réconcilié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconciled", + "example_sentence_native": "Les deux amis se sont enfin réconciliés.", + "example_sentence_english": "The two friends have finally reconciled.", + "pos": "adjective", + "word_frequency": 27335 + }, + { + "word": "réprimande", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reprimand;scolding", + "example_sentence_native": "Il a reçu une sévère réprimande de son patron.", + "example_sentence_english": "He received a severe reprimand from his boss.", + "pos": "noun", + "word_frequency": 27337 + }, + { + "word": "rétroaction", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feedback", + "example_sentence_native": "Nous attendons votre rétroaction sur le projet.", + "example_sentence_english": "We are awaiting your feedback on the project.", + "pos": "noun", + "word_frequency": 27338 + }, + { + "word": "sableux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sandy", + "example_sentence_native": "La plage était très sableuse et agréable.", + "example_sentence_english": "The beach was very sandy and pleasant.", + "pos": "adjective", + "word_frequency": 27339 + }, + { + "word": "sacrer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consecrate;to crown;(Quebec) to swear;to curse", + "example_sentence_native": "Le roi fut sacré dans la cathédrale.", + "example_sentence_english": "The king was crowned in the cathedral.", + "pos": "verb", + "word_frequency": 27340 + }, + { + "word": "scier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to saw", + "example_sentence_native": "Il a utilisé une scie pour scier le bois.", + "example_sentence_english": "He used a saw to saw the wood.", + "pos": "verb", + "word_frequency": 27345 + }, + { + "word": "scinder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to split;to divide", + "example_sentence_native": "La société a décidé de scinder ses activités en deux.", + "example_sentence_english": "The company decided to split its activities into two.", + "pos": "verb", + "word_frequency": 27346 + }, + { + "word": "scope", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope (e.g.;of a project;an oscilloscope)", + "example_sentence_native": "Le scope du projet a été clairement défini.", + "example_sentence_english": "The scope of the project has been clearly defined.", + "pos": "noun", + "word_frequency": 27347 + }, + { + "word": "seigneurial", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seigniorial;lordly", + "example_sentence_native": "Le système seigneurial était courant au Moyen Âge.", + "example_sentence_english": "The seigniorial system was common in the Middle Ages.", + "pos": "adjective", + "word_frequency": 27349 + }, + { + "word": "sensibilisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitized;made aware", + "example_sentence_native": "Le public est de plus en plus sensibilisé aux problèmes environnementaux.", + "example_sentence_english": "The public is increasingly sensitized to environmental issues.", + "pos": "adjective", + "word_frequency": 27351 + }, + { + "word": "servant", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "servant", + "example_sentence_native": "Le vieux servant a fidèlement servi la famille pendant des années.", + "example_sentence_english": "The old servant faithfully served the family for years.", + "pos": "noun", + "word_frequency": 27352 + }, + { + "word": "servile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "servile;subservient", + "example_sentence_native": "Son attitude servile était agaçante.", + "example_sentence_english": "His servile attitude was annoying.", + "pos": "adjective", + "word_frequency": 27353 + }, + { + "word": "sorbet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sorbet", + "example_sentence_native": "J'adore le sorbet au citron, surtout en été.", + "example_sentence_english": "I love lemon sorbet, especially in summer.", + "pos": "noun", + "word_frequency": 27361 + }, + { + "word": "splash", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splash", + "example_sentence_native": "On a entendu un grand splash quand il est tombé dans la piscine.", + "example_sentence_english": "We heard a big splash when he fell into the pool.", + "pos": "noun", + "word_frequency": 27365 + }, + { + "word": "strie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "streak", + "example_sentence_native": "Le verre présentait des stries fines et régulières.", + "example_sentence_english": "The glass showed fine and regular streaks.", + "pos": "noun", + "word_frequency": 27368 + }, + { + "word": "surfait", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overrated", + "example_sentence_native": "Ce restaurant est un peu surfait, la nourriture n'est pas exceptionnelle.", + "example_sentence_english": "This restaurant is a bit overrated, the food isn't exceptional.", + "pos": "adjective", + "word_frequency": 27370 + }, + { + "word": "séparatisme", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separatism", + "example_sentence_native": "Le débat sur le séparatisme est complexe et divise l'opinion.", + "example_sentence_english": "The debate on separatism is complex and divides opinion.", + "pos": "noun", + "word_frequency": 27371 + }, + { + "word": "tatoué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattooed", + "example_sentence_native": "Il a un bras entièrement tatoué.", + "example_sentence_english": "He has a fully tattooed arm.", + "pos": "adjective", + "word_frequency": 27373 + }, + { + "word": "telegram", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegram", + "example_sentence_native": "Autrefois, on envoyait des télégrammes pour les messages urgents.", + "example_sentence_english": "In the past, people sent telegrams for urgent messages.", + "pos": "noun", + "word_frequency": 27375 + }, + { + "word": "tenaille", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pliers", + "example_sentence_native": "Il a utilisé une tenaille pour retirer le clou.", + "example_sentence_english": "He used pliers to remove the nail.", + "pos": "noun", + "word_frequency": 27376 + }, + { + "word": "tendinite", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tendinitis", + "example_sentence_native": "Le joueur de tennis souffre d'une tendinite au coude.", + "example_sentence_english": "The tennis player suffers from tendinitis in the elbow.", + "pos": "noun", + "word_frequency": 27377 + }, + { + "word": "terreux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthy", + "example_sentence_native": "Après le jardinage, ses mains étaient terreuses.", + "example_sentence_english": "After gardening, his hands were earthy.", + "pos": "adjective", + "word_frequency": 27378 + }, + { + "word": "textuel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "textual", + "example_sentence_native": "L'analyse textuelle de l'œuvre révèle des thèmes cachés.", + "example_sentence_english": "The textual analysis of the work reveals hidden themes.", + "pos": "adjective", + "word_frequency": 27379 + }, + { + "word": "tissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "woven", + "example_sentence_native": "Ce tapis est fait d'un tissu finement tissé.", + "example_sentence_english": "This rug is made of a finely woven fabric.", + "pos": "adjective", + "word_frequency": 27381 + }, + { + "word": "topologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "topology", + "example_sentence_native": "La topologie est une branche des mathématiques.", + "example_sentence_english": "Topology is a branch of mathematics.", + "pos": "noun", + "word_frequency": 27382 + }, + { + "word": "tournis", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dizziness", + "example_sentence_native": "J'ai eu le tournis après avoir tourné en rond.", + "example_sentence_english": "I felt dizzy after spinning around.", + "pos": "noun", + "word_frequency": 27384 + }, + { + "word": "transfiguration", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfiguration", + "example_sentence_native": "La transfiguration du paysage sous la neige était magnifique.", + "example_sentence_english": "The transfiguration of the landscape under the snow was magnificent.", + "pos": "noun", + "word_frequency": 27386 + }, + { + "word": "vaillamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valiantly", + "example_sentence_native": "Le soldat a combattu vaillamment sur le champ de bataille.", + "example_sentence_english": "The soldier fought valiantly on the battlefield.", + "pos": "adverb", + "word_frequency": 27389 + }, + { + "word": "végétarisme", + "article_with_word": "le végétarisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vegetarianism", + "example_sentence_native": "Le végétarisme est un mode de vie qui exclut la consommation de viande.", + "example_sentence_english": "Vegetarianism is a lifestyle that excludes meat consumption.", + "pos": "noun", + "word_frequency": 27400 + }, + { + "word": "écrier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exclaim", + "example_sentence_native": "Elle s'est écriée de joie en voyant le cadeau.", + "example_sentence_english": "She exclaimed with joy upon seeing the gift.", + "pos": "verb", + "word_frequency": 27409 + }, + { + "word": "élévateur", + "article_with_word": "un élévateur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elevator", + "example_sentence_native": "L'élévateur est en panne, nous devons prendre les escaliers.", + "example_sentence_english": "The elevator is out of order, we have to take the stairs.", + "pos": "noun", + "word_frequency": 27410 + }, + { + "word": "étalonnage", + "article_with_word": "l'étalonnage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "calibration", + "example_sentence_native": "L'étalonnage des instruments est essentiel pour des mesures précises.", + "example_sentence_english": "The calibration of instruments is essential for precise measurements.", + "pos": "noun", + "word_frequency": 27411 + }, + { + "word": "étrusque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Etruscan", + "example_sentence_native": "Les Étrusques ont laissé une civilisation fascinante en Italie.", + "example_sentence_english": "The Etruscans left a fascinating civilization in Italy.", + "pos": "adjective", + "word_frequency": 27412 + }, + { + "word": "affaibli", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakened", + "example_sentence_native": "Après la maladie, il se sentait très affaibli.", + "example_sentence_english": "After the illness, he felt very weakened.", + "pos": "adjective", + "word_frequency": 27417 + }, + { + "word": "alléguer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to allege", + "example_sentence_native": "Il a allégué qu'il n'était pas au courant des faits.", + "example_sentence_english": "He alleged that he was not aware of the facts.", + "pos": "verb", + "word_frequency": 27419 + }, + { + "word": "ammoniaque", + "article_with_word": "l'ammoniaque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammonia", + "example_sentence_native": "L'ammoniaque est un produit chimique à manipuler avec précaution.", + "example_sentence_english": "Ammonia is a chemical to handle with care.", + "pos": "noun", + "word_frequency": 27420 + }, + { + "word": "analphabétisme", + "article_with_word": "l'analphabétisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illiteracy", + "example_sentence_native": "La lutte contre l'analphabétisme est une priorité mondiale.", + "example_sentence_english": "The fight against illiteracy is a global priority.", + "pos": "noun", + "word_frequency": 27421 + }, + { + "word": "angolais", + "article_with_word": "un Angolais", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Angolan", + "example_sentence_native": "Il a rencontré un Angolais lors de son voyage en Afrique.", + "example_sentence_english": "He met an Angolan during his trip to Africa.", + "pos": "noun", + "word_frequency": 27422 + }, + { + "word": "antigène", + "article_with_word": "un antigène", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antigen", + "example_sentence_native": "Le corps produit des anticorps en réponse à un antigène.", + "example_sentence_english": "The body produces antibodies in response to an antigen.", + "pos": "noun", + "word_frequency": 27423 + }, + { + "word": "aplatir", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flatten", + "example_sentence_native": "Il a aplati la pâte avec un rouleau.", + "example_sentence_english": "He flattened the dough with a rolling pin.", + "pos": "verb", + "word_frequency": 27424 + }, + { + "word": "arable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arable", + "example_sentence_native": "Cette région possède de vastes terres arables.", + "example_sentence_english": "This region has vast arable lands.", + "pos": "adjective", + "word_frequency": 27425 + }, + { + "word": "autrice", + "article_with_word": "une autrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "author (female)", + "example_sentence_native": "Cette jeune autrice a publié son premier roman à succès.", + "example_sentence_english": "This young author published her first successful novel.", + "pos": "noun", + "word_frequency": 27430 + }, + { + "word": "auvent", + "article_with_word": "un auvent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "awning", + "example_sentence_native": "Nous nous sommes abrités sous l'auvent pendant l'averse.", + "example_sentence_english": "We took shelter under the awning during the downpour.", + "pos": "noun", + "word_frequency": 27431 + }, + { + "word": "balisage", + "article_with_word": "le balisage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marking", + "example_sentence_native": "Le balisage du sentier a été refait pour les randonneurs.", + "example_sentence_english": "The path marking was redone for hikers.", + "pos": "noun", + "word_frequency": 27433 + }, + { + "word": "barbeau", + "article_with_word": "le barbeau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbel", + "example_sentence_native": "Le barbeau est un poisson d'eau douce très apprécié des pêcheurs.", + "example_sentence_english": "The barbel is a freshwater fish highly prized by fishermen.", + "pos": "noun", + "word_frequency": 27434 + }, + { + "word": "bento", + "article_with_word": "un bento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bento", + "example_sentence_native": "J'ai préparé un bento pour mon déjeuner au bureau.", + "example_sentence_english": "I prepared a bento for my lunch at the office.", + "pos": "noun", + "word_frequency": 27437 + }, + { + "word": "benzène", + "article_with_word": "le benzène", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benzene", + "example_sentence_native": "Le benzène est un composé organique aromatique.", + "example_sentence_english": "Benzene is an aromatic organic compound.", + "pos": "noun", + "word_frequency": 27438 + }, + { + "word": "bibelot", + "article_with_word": "le bibelot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trinket", + "example_sentence_native": "Elle a une collection de petits bibelots sur l'étagère.", + "example_sentence_english": "She has a collection of small trinkets on the shelf.", + "pos": "noun", + "word_frequency": 27440 + }, + { + "word": "birman", + "article_with_word": "le Birman", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Burmese (person)", + "example_sentence_native": "Le Birman est connu pour sa gentillesse.", + "example_sentence_english": "The Burmese person is known for their kindness.", + "pos": "noun", + "word_frequency": 27441 + }, + { + "word": "bizarrerie", + "article_with_word": "la bizarrerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oddity;peculiarity", + "example_sentence_native": "Sa bizarrerie la rend unique.", + "example_sentence_english": "Her oddity makes her unique.", + "pos": "noun", + "word_frequency": 27442 + }, + { + "word": "bolchevik", + "article_with_word": "le bolchevik", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Bolshevik", + "example_sentence_native": "Les bolcheviks ont joué un rôle clé dans la Révolution russe.", + "example_sentence_english": "The Bolsheviks played a key role in the Russian Revolution.", + "pos": "noun", + "word_frequency": 27444 + }, + { + "word": "bousillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruined;messed up", + "example_sentence_native": "Mon téléphone est complètement bousillé.", + "example_sentence_english": "My phone is completely ruined.", + "pos": "adjective", + "word_frequency": 27445 + }, + { + "word": "bredouille", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empty-handed;unsuccessful", + "example_sentence_native": "Il est rentré bredouille de sa partie de pêche.", + "example_sentence_english": "He came back empty-handed from his fishing trip.", + "pos": "adjective", + "word_frequency": 27446 + }, + { + "word": "bègue", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuttering;stammering", + "example_sentence_native": "Il est bègue depuis l'enfance.", + "example_sentence_english": "He has been stuttering since childhood.", + "pos": "adjective", + "word_frequency": 27449 + }, + { + "word": "carmélite", + "article_with_word": "la carmélite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Carmelite (nun)", + "example_sentence_native": "La carmélite a prononcé ses vœux.", + "example_sentence_english": "The Carmelite nun took her vows.", + "pos": "noun", + "word_frequency": 27455 + }, + { + "word": "carène", + "article_with_word": "la carène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hull (of a boat)", + "example_sentence_native": "La carène du bateau a été endommagée.", + "example_sentence_english": "The hull of the boat was damaged.", + "pos": "noun", + "word_frequency": 27457 + }, + { + "word": "catamaran", + "article_with_word": "le catamaran", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catamaran", + "example_sentence_native": "Nous avons loué un catamaran pour la journée.", + "example_sentence_english": "We rented a catamaran for the day.", + "pos": "noun", + "word_frequency": 27459 + }, + { + "word": "causerie", + "article_with_word": "la causerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chat;informal talk", + "example_sentence_native": "La causerie a duré des heures.", + "example_sentence_english": "The chat lasted for hours.", + "pos": "noun", + "word_frequency": 27460 + }, + { + "word": "cerné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circled;surrounded;(eyes) dark-circled", + "example_sentence_native": "Il avait les yeux cernés après une nuit blanche.", + "example_sentence_english": "He had dark-circled eyes after a sleepless night.", + "pos": "adjective", + "word_frequency": 27462 + }, + { + "word": "charbonnage", + "article_with_word": "le charbonnage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coal mining;coal extraction", + "example_sentence_native": "Le charbonnage était une industrie majeure dans cette région.", + "example_sentence_english": "Coal mining was a major industry in this region.", + "pos": "noun", + "word_frequency": 27463 + }, + { + "word": "cheminer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to walk;to make one's way", + "example_sentence_native": "Il aimait cheminer le long de la rivière.", + "example_sentence_english": "He liked to walk along the river.", + "pos": "verb", + "word_frequency": 27464 + }, + { + "word": "clignoter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blink;to flicker", + "example_sentence_native": "La lumière a commencé à clignoter.", + "example_sentence_english": "The light started to flicker.", + "pos": "verb", + "word_frequency": 27468 + }, + { + "word": "codéine", + "article_with_word": "la codéine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "codeine", + "example_sentence_native": "La codéine est utilisée pour soulager la douleur.", + "example_sentence_english": "Codeine is used to relieve pain.", + "pos": "noun", + "word_frequency": 27469 + }, + { + "word": "compresse", + "article_with_word": "la compresse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compress;dressing", + "example_sentence_native": "Appliquez une compresse froide sur la blessure.", + "example_sentence_english": "Apply a cold compress to the wound.", + "pos": "noun", + "word_frequency": 27471 + }, + { + "word": "concomitant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concomitant;accompanying", + "example_sentence_native": "Il y a eu une augmentation concomitante des prix.", + "example_sentence_english": "There was a concomitant increase in prices.", + "pos": "adjective", + "word_frequency": 27472 + }, + { + "word": "conque", + "article_with_word": "la conque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conch;shell", + "example_sentence_native": "On entend la mer dans une conque.", + "example_sentence_english": "You can hear the sea in a conch shell.", + "pos": "noun", + "word_frequency": 27473 + }, + { + "word": "constable", + "article_with_word": "le constable", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constable;police officer", + "example_sentence_native": "Le constable a arrêté le suspect.", + "example_sentence_english": "The constable arrested the suspect.", + "pos": "noun", + "word_frequency": 27474 + }, + { + "word": "coquelicot", + "article_with_word": "le coquelicot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poppy", + "example_sentence_native": "Les champs étaient remplis de coquelicots rouges.", + "example_sentence_english": "The fields were full of red poppies.", + "pos": "noun", + "word_frequency": 27475 + }, + { + "word": "couchette", + "article_with_word": "la couchette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bunk;berth", + "example_sentence_native": "J'ai réservé une couchette pour le voyage de nuit.", + "example_sentence_english": "I booked a bunk for the overnight trip.", + "pos": "noun", + "word_frequency": 27477 + }, + { + "word": "coussinet", + "article_with_word": "le coussinet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pad (animal paw);bearing (mechanical)", + "example_sentence_native": "Le chien a des coussinets doux.", + "example_sentence_english": "The dog has soft paw pads.", + "pos": "noun", + "word_frequency": 27478 + }, + { + "word": "criminalisation", + "article_with_word": "la criminalisation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminalization", + "example_sentence_native": "La criminalisation de certains actes est un débat social.", + "example_sentence_english": "The criminalization of certain acts is a social debate.", + "pos": "noun", + "word_frequency": 27479 + }, + { + "word": "cryptographie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cryptography", + "example_sentence_native": "La cryptographie est essentielle pour la sécurité des données.", + "example_sentence_english": "Cryptography is essential for data security.", + "pos": "noun", + "word_frequency": 27481 + }, + { + "word": "césure", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caesura;break", + "example_sentence_native": "Il y a une césure nette dans le poème.", + "example_sentence_english": "There is a clear caesura in the poem.", + "pos": "noun", + "word_frequency": 27484 + }, + { + "word": "debile", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupid;idiotic", + "example_sentence_native": "C'est une idée débile.", + "example_sentence_english": "It's a stupid idea.", + "pos": "adjective", + "word_frequency": 27486 + }, + { + "word": "dengue", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dengue", + "example_sentence_native": "La dengue est une maladie transmise par les moustiques.", + "example_sentence_english": "Dengue is a disease transmitted by mosquitoes.", + "pos": "noun", + "word_frequency": 27488 + }, + { + "word": "destructrice", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destructive", + "example_sentence_native": "Cette force est destructrice pour l'environnement.", + "example_sentence_english": "This force is destructive to the environment.", + "pos": "adjective", + "word_frequency": 27489 + }, + { + "word": "diktat", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diktat;imposed decree", + "example_sentence_native": "Le gouvernement a imposé un diktat aux syndicats.", + "example_sentence_english": "The government imposed a diktat on the unions.", + "pos": "noun", + "word_frequency": 27492 + }, + { + "word": "display", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "display;screen", + "example_sentence_native": "Le display de mon téléphone est cassé.", + "example_sentence_english": "My phone's display is broken.", + "pos": "noun", + "word_frequency": 27494 + }, + { + "word": "dissipation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissipation", + "example_sentence_native": "La dissipation de l'énergie est inévitable.", + "example_sentence_english": "Energy dissipation is inevitable.", + "pos": "noun", + "word_frequency": 27495 + }, + { + "word": "débridé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unbridled;unrestrained", + "example_sentence_native": "Il a une imagination débridée.", + "example_sentence_english": "He has an unbridled imagination.", + "pos": "adjective", + "word_frequency": 27498 + }, + { + "word": "décodage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decoding", + "example_sentence_native": "Le décodage du message a pris du temps.", + "example_sentence_english": "The decoding of the message took time.", + "pos": "noun", + "word_frequency": 27499 + }, + { + "word": "découragé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discouraged", + "example_sentence_native": "Il se sentait découragé après l'échec.", + "example_sentence_english": "He felt discouraged after the failure.", + "pos": "adjective", + "word_frequency": 27500 + }, + { + "word": "dénombrement", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enumeration;counting", + "example_sentence_native": "Le dénombrement des espèces est crucial pour la biodiversité.", + "example_sentence_english": "The enumeration of species is crucial for biodiversity.", + "pos": "noun", + "word_frequency": 27501 + }, + { + "word": "dénombré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counted;enumerated", + "example_sentence_native": "Les victimes dénombrées sont nombreuses.", + "example_sentence_english": "The counted victims are numerous.", + "pos": "adjective", + "word_frequency": 27502 + }, + { + "word": "désengorger", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clear;to decongest", + "example_sentence_native": "Il faut désengorger le trafic en ville.", + "example_sentence_english": "We need to decongest city traffic.", + "pos": "verb", + "word_frequency": 27503 + }, + { + "word": "embraser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set ablaze;to ignite", + "example_sentence_native": "Les flammes ont commencé à embraser la forêt.", + "example_sentence_english": "The flames began to set the forest ablaze.", + "pos": "verb", + "word_frequency": 27505 + }, + { + "word": "endoctrinement", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indoctrination", + "example_sentence_native": "L'endoctrinement peut être dangereux pour la pensée critique.", + "example_sentence_english": "Indoctrination can be dangerous for critical thinking.", + "pos": "noun", + "word_frequency": 27506 + }, + { + "word": "enrôlé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlisted;enrolled", + "example_sentence_native": "Il a été enrôlé dans l'armée.", + "example_sentence_english": "He was enlisted in the army.", + "pos": "adjective", + "word_frequency": 27507 + }, + { + "word": "equilibre", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balance;equilibrium", + "example_sentence_native": "Il est important de maintenir un bon équilibre entre travail et vie personnelle.", + "example_sentence_english": "It's important to maintain a good balance between work and personal life.", + "pos": "noun", + "word_frequency": 27510 + }, + { + "word": "escalator", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "escalator", + "example_sentence_native": "Prenez l'escalator pour monter au deuxième étage.", + "example_sentence_english": "Take the escalator to go up to the second floor.", + "pos": "noun", + "word_frequency": 27511 + }, + { + "word": "fana", + "article_with_word": "un/une", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fan;enthusiast", + "example_sentence_native": "C'est un fana de musique classique.", + "example_sentence_english": "He's a fan of classical music.", + "pos": "noun", + "word_frequency": 27513 + }, + { + "word": "fatwa", + "article_with_word": "une", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fatwa", + "example_sentence_native": "Une fatwa a été émise contre l'auteur.", + "example_sentence_english": "A fatwa was issued against the author.", + "pos": "noun", + "word_frequency": 27514 + }, + { + "word": "fentanyl", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fentanyl", + "example_sentence_native": "Le fentanyl est un puissant analgésique opioïde.", + "example_sentence_english": "Fentanyl is a powerful opioid analgesic.", + "pos": "noun", + "word_frequency": 27516 + }, + { + "word": "fidélisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "customer loyalty;retention", + "example_sentence_native": "La fidélisation de la clientèle est essentielle pour l'entreprise.", + "example_sentence_english": "Customer retention is essential for the company.", + "pos": "noun", + "word_frequency": 27517 + }, + { + "word": "forceps", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forceps", + "example_sentence_native": "Le chirurgien a utilisé des forceps pour retirer l'objet.", + "example_sentence_english": "The surgeon used forceps to remove the object.", + "pos": "noun", + "word_frequency": 27518 + }, + { + "word": "formalisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formalization", + "example_sentence_native": "La formalisation des procédures est nécessaire pour la qualité.", + "example_sentence_english": "The formalization of procedures is necessary for quality.", + "pos": "noun", + "word_frequency": 27519 + }, + { + "word": "frustre", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crude;rough;unpolished", + "example_sentence_native": "Son comportement était un peu frustre, mais sincère.", + "example_sentence_english": "His behavior was a bit crude, but sincere.", + "pos": "adjective", + "word_frequency": 27521 + }, + { + "word": "fusilier", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fusilier (infantry soldier)", + "example_sentence_native": "Le fusilier était en première ligne pendant l'assaut.", + "example_sentence_english": "The fusilier was on the front line during the assault.", + "pos": "noun", + "word_frequency": 27523 + }, + { + "word": "fédé", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federation (colloquial)", + "example_sentence_native": "La fédé a annoncé de nouvelles règles pour le championnat.", + "example_sentence_english": "The federation announced new rules for the championship.", + "pos": "noun", + "word_frequency": 27524 + }, + { + "word": "gazer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gas;to go fast (colloquial)", + "example_sentence_native": "La voiture a commencé à gazer sur l'autoroute.", + "example_sentence_english": "The car started to go fast on the highway.", + "pos": "verb", + "word_frequency": 27527 + }, + { + "word": "gradué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graduated;marked (with graduations)", + "example_sentence_native": "Il a utilisé une éprouvette graduée pour mesurer le liquide.", + "example_sentence_english": "He used a graduated cylinder to measure the liquid.", + "pos": "adjective", + "word_frequency": 27533 + }, + { + "word": "grossièreté", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudeness;vulgarity;coarse language", + "example_sentence_native": "Sa grossièreté a choqué tout le monde.", + "example_sentence_english": "His rudeness shocked everyone.", + "pos": "noun", + "word_frequency": 27535 + }, + { + "word": "hayon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tailgate;hatchback", + "example_sentence_native": "Le hayon de la voiture était ouvert.", + "example_sentence_english": "The car's tailgate was open.", + "pos": "noun", + "word_frequency": 27540 + }, + { + "word": "indigeste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indigestible;tedious", + "example_sentence_native": "Ce repas était vraiment indigeste.", + "example_sentence_english": "This meal was really indigestible.", + "pos": "adjective", + "word_frequency": 27546 + }, + { + "word": "indiscrétion", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indiscretion", + "example_sentence_native": "C'était une indiscrétion de sa part de révéler ce secret.", + "example_sentence_english": "It was an indiscretion on his part to reveal that secret.", + "pos": "noun", + "word_frequency": 27547 + }, + { + "word": "informatisation", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "computerization;digitalization", + "example_sentence_native": "L'informatisation des services publics est en cours.", + "example_sentence_english": "The computerization of public services is underway.", + "pos": "noun", + "word_frequency": 27548 + }, + { + "word": "instamment", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urgently;insistently", + "example_sentence_native": "Il a demandé instamment que la réunion soit reportée.", + "example_sentence_english": "He urgently requested that the meeting be postponed.", + "pos": "adverb", + "word_frequency": 27550 + }, + { + "word": "intenté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filed;brought (e.g.;a lawsuit)", + "example_sentence_native": "Une action en justice a été intentée contre la société.", + "example_sentence_english": "A lawsuit was filed against the company.", + "pos": "adjective", + "word_frequency": 27551 + }, + { + "word": "intersyndical", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inter-union", + "example_sentence_native": "Une réunion intersyndicale a eu lieu pour discuter des revendications.", + "example_sentence_english": "An inter-union meeting took place to discuss the demands.", + "pos": "adjective", + "word_frequency": 27552 + }, + { + "word": "interventionnisme", + "article_with_word": "l'", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interventionism", + "example_sentence_native": "Le débat sur l'interventionnisme de l'État est toujours d'actualité.", + "example_sentence_english": "The debate on state interventionism is still relevant.", + "pos": "noun", + "word_frequency": 27553 + }, + { + "word": "jacket", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jacket", + "example_sentence_native": "Elle portait une jolie jacket en cuir.", + "example_sentence_english": "She was wearing a nice leather jacket.", + "pos": "noun", + "word_frequency": 27556 + }, + { + "word": "jalousement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jealously", + "example_sentence_native": "Il gardait jalousement ses secrets.", + "example_sentence_english": "He jealously guarded his secrets.", + "pos": "adverb", + "word_frequency": 27558 + }, + { + "word": "journaleux", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hack journalist (pejorative)", + "example_sentence_native": "Ce journaleux a écrit un article sensationnaliste.", + "example_sentence_english": "That hack journalist wrote a sensationalist article.", + "pos": "noun", + "word_frequency": 27561 + }, + { + "word": "jpeg", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "JPEG", + "example_sentence_native": "J'ai enregistré la photo au format JPEG.", + "example_sentence_english": "I saved the photo in JPEG format.", + "pos": "noun", + "word_frequency": 27562 + }, + { + "word": "kana", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kana (Japanese syllabary)", + "example_sentence_native": "Les kana sont des syllabaires japonais.", + "example_sentence_english": "Kana are Japanese syllabaries.", + "pos": "noun", + "word_frequency": 27564 + }, + { + "word": "laboureur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmer;laborer", + "example_sentence_native": "Le laboureur travaille la terre.", + "example_sentence_english": "The farmer works the land.", + "pos": "noun", + "word_frequency": 27570 + }, + { + "word": "lassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tired;weary", + "example_sentence_native": "Il était lassé de la longue attente.", + "example_sentence_english": "He was tired of the long wait.", + "pos": "adjective", + "word_frequency": 27572 + }, + { + "word": "legging", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "legging", + "example_sentence_native": "Elle porte un legging noir pour faire du sport.", + "example_sentence_english": "She wears black leggings for sports.", + "pos": "noun", + "word_frequency": 27576 + }, + { + "word": "levant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rising;eastern", + "example_sentence_native": "Nous avons admiré le soleil levant sur la mer.", + "example_sentence_english": "We admired the rising sun over the sea.", + "pos": "adjective", + "word_frequency": 27577 + }, + { + "word": "ligure", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ligurian", + "example_sentence_native": "La côte ligure est très belle.", + "example_sentence_english": "The Ligurian coast is very beautiful.", + "pos": "adjective", + "word_frequency": 27578 + }, + { + "word": "liquéfié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquefied", + "example_sentence_native": "Le gaz naturel liquéfié est transporté par bateau.", + "example_sentence_english": "Liquefied natural gas is transported by ship.", + "pos": "adjective", + "word_frequency": 27579 + }, + { + "word": "logé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "housed;accommodated", + "example_sentence_native": "Ils sont logés dans un petit appartement.", + "example_sentence_english": "They are housed in a small apartment.", + "pos": "adjective", + "word_frequency": 27580 + }, + { + "word": "légitimé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimized;justified", + "example_sentence_native": "Sa position a été légitimée par le vote.", + "example_sentence_english": "His position was legitimized by the vote.", + "pos": "adjective", + "word_frequency": 27582 + }, + { + "word": "macération", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maceration", + "example_sentence_native": "La macération des fruits permet d'extraire les saveurs.", + "example_sentence_english": "The maceration of fruits allows flavors to be extracted.", + "pos": "noun", + "word_frequency": 27583 + }, + { + "word": "magasinage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shopping (Canadian French)", + "example_sentence_native": "Nous allons faire du magasinage ce week-end.", + "example_sentence_english": "We are going shopping this weekend.", + "pos": "noun", + "word_frequency": 27584 + }, + { + "word": "magnificence", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnificence", + "example_sentence_native": "La magnificence du paysage nous a émerveillés.", + "example_sentence_english": "The magnificence of the landscape amazed us.", + "pos": "noun", + "word_frequency": 27587 + }, + { + "word": "maisonnette", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small house;cottage", + "example_sentence_native": "Ils ont acheté une charmante maisonnette à la campagne.", + "example_sentence_english": "They bought a charming small house in the countryside.", + "pos": "noun", + "word_frequency": 27588 + }, + { + "word": "manchon", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleeve;muff;coupling", + "example_sentence_native": "Elle a mis ses mains dans son manchon pour se réchauffer.", + "example_sentence_english": "She put her hands in her muff to warm up.", + "pos": "noun", + "word_frequency": 27591 + }, + { + "word": "maniabilité", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maneuverability;handling", + "example_sentence_native": "La maniabilité de cette voiture est excellente.", + "example_sentence_english": "The handling of this car is excellent.", + "pos": "noun", + "word_frequency": 27594 + }, + { + "word": "manitou", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manitou (spirit);big boss (informal)", + "example_sentence_native": "Il se prend pour le grand manitou de l'entreprise.", + "example_sentence_english": "He thinks he's the big boss of the company.", + "pos": "noun", + "word_frequency": 27595 + }, + { + "word": "mezzanine", + "article_with_word": "la mezzanine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mezzanine", + "example_sentence_native": "La salle de réunion se trouve sur la mezzanine.", + "example_sentence_english": "The meeting room is on the mezzanine.", + "pos": "noun", + "word_frequency": 27601 + }, + { + "word": "mezzo", + "article_with_word": "le mezzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mezzo", + "example_sentence_native": "La mezzo a chanté un air magnifique.", + "example_sentence_english": "The mezzo sang a magnificent aria.", + "pos": "noun", + "word_frequency": 27602 + }, + { + "word": "microscopie", + "article_with_word": "la microscopie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microscopy", + "example_sentence_native": "La microscopie électronique permet d'observer des détails infimes.", + "example_sentence_english": "Electron microscopy allows observing tiny details.", + "pos": "noun", + "word_frequency": 27604 + }, + { + "word": "monochrome", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monochrome", + "example_sentence_native": "L'écran affichait une image monochrome.", + "example_sentence_english": "The screen displayed a monochrome image.", + "pos": "adjective", + "word_frequency": 27607 + }, + { + "word": "mutin", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischievous", + "example_sentence_native": "Elle avait un sourire mutin sur les lèvres.", + "example_sentence_english": "She had a mischievous smile on her lips.", + "pos": "adjective", + "word_frequency": 27610 + }, + { + "word": "méridienne", + "article_with_word": "la méridienne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaise longue", + "example_sentence_native": "Elle se reposait sur la méridienne dans le salon.", + "example_sentence_english": "She was resting on the chaise longue in the living room.", + "pos": "noun", + "word_frequency": 27611 + }, + { + "word": "nadir", + "article_with_word": "le nadir", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nadir", + "example_sentence_native": "Il a atteint le nadir de sa carrière.", + "example_sentence_english": "He reached the nadir of his career.", + "pos": "noun", + "word_frequency": 27612 + }, + { + "word": "nanoparticule", + "article_with_word": "la nanoparticule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nanoparticle", + "example_sentence_native": "Les nanoparticules sont utilisées dans de nombreuses applications technologiques.", + "example_sentence_english": "Nanoparticles are used in many technological applications.", + "pos": "noun", + "word_frequency": 27613 + }, + { + "word": "nurse", + "article_with_word": "la nurse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nanny", + "example_sentence_native": "La nurse s'occupait des enfants pendant l'absence des parents.", + "example_sentence_english": "The nanny took care of the children during the parents' absence.", + "pos": "noun", + "word_frequency": 27616 + }, + { + "word": "négrier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slave-trading", + "example_sentence_native": "Le commerce négrier a laissé des cicatrices profondes dans l'histoire.", + "example_sentence_english": "The slave trade left deep scars in history.", + "pos": "adjective", + "word_frequency": 27617 + }, + { + "word": "octogone", + "article_with_word": "l'octogone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "octagon", + "example_sentence_native": "Le panneau stop a la forme d'un octogone.", + "example_sentence_english": "The stop sign has the shape of an octagon.", + "pos": "noun", + "word_frequency": 27619 + }, + { + "word": "officialisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "made official", + "example_sentence_native": "La nouvelle règle a été officialisée hier.", + "example_sentence_english": "The new rule was made official yesterday.", + "pos": "adjective", + "word_frequency": 27620 + }, + { + "word": "olfactif", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "olfactory", + "example_sentence_native": "Le sens olfactif est très développé chez les chiens.", + "example_sentence_english": "The olfactory sense is very developed in dogs.", + "pos": "adjective", + "word_frequency": 27622 + }, + { + "word": "paniqué", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panicked", + "example_sentence_native": "Il était complètement paniqué par la situation.", + "example_sentence_english": "He was completely panicked by the situation.", + "pos": "adjective", + "word_frequency": 27626 + }, + { + "word": "parallélisme", + "article_with_word": "le parallélisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parallelism", + "example_sentence_native": "Il y a un parallélisme frappant entre les deux situations.", + "example_sentence_english": "There is a striking parallelism between the two situations.", + "pos": "noun", + "word_frequency": 27627 + }, + { + "word": "parka", + "article_with_word": "la parka", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parka", + "example_sentence_native": "Il a mis sa parka avant de sortir dans le froid.", + "example_sentence_english": "He put on his parka before going out in the cold.", + "pos": "noun", + "word_frequency": 27630 + }, + { + "word": "peroxyde", + "article_with_word": "le peroxyde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peroxide", + "example_sentence_native": "Le peroxyde d'hydrogène est souvent utilisé comme désinfectant.", + "example_sentence_english": "Hydrogen peroxide is often used as a disinfectant.", + "pos": "noun", + "word_frequency": 27633 + }, + { + "word": "perplexité", + "article_with_word": "la perplexité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perplexity", + "example_sentence_native": "Son visage montrait une grande perplexité.", + "example_sentence_english": "His face showed great perplexity.", + "pos": "noun", + "word_frequency": 27634 + }, + { + "word": "personnification", + "article_with_word": "la personnification", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personification", + "example_sentence_native": "La personnification est une figure de style courante en poésie.", + "example_sentence_english": "Personification is a common figure of speech in poetry.", + "pos": "noun", + "word_frequency": 27635 + }, + { + "word": "pertuis", + "article_with_word": "le pertuis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strait", + "example_sentence_native": "Le bateau a navigué à travers le pertuis étroit.", + "example_sentence_english": "The boat sailed through the narrow strait.", + "pos": "noun", + "word_frequency": 27636 + }, + { + "word": "phénicien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Phoenician", + "example_sentence_native": "L'alphabet phénicien est à l'origine de nombreux systèmes d'écriture.", + "example_sentence_english": "The Phoenician alphabet is the origin of many writing systems.", + "pos": "adjective", + "word_frequency": 27637 + }, + { + "word": "picole", + "article_with_word": "la picole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "booze", + "example_sentence_native": "Après le travail, ils sont allés faire la picole.", + "example_sentence_english": "After work, they went for a drinking session.", + "pos": "noun", + "word_frequency": 27639 + }, + { + "word": "plafonné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capped;limited", + "example_sentence_native": "Le prix de l'énergie est plafonné.", + "example_sentence_english": "The energy price is capped.", + "pos": "adjective", + "word_frequency": 27641 + }, + { + "word": "polarisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polarized", + "example_sentence_native": "Le débat est devenu très polarisé.", + "example_sentence_english": "The debate has become very polarized.", + "pos": "adjective", + "word_frequency": 27642 + }, + { + "word": "polissage", + "article_with_word": "le polissage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polishing", + "example_sentence_native": "Le polissage du bois améliore son aspect.", + "example_sentence_english": "Wood polishing improves its appearance.", + "pos": "noun", + "word_frequency": 27643 + }, + { + "word": "privilege", + "article_with_word": "le privilège", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "privilege", + "example_sentence_native": "C'est un privilège de vous rencontrer.", + "example_sentence_english": "It's a privilege to meet you.", + "pos": "noun", + "word_frequency": 27644 + }, + { + "word": "probléme", + "article_with_word": "le problème", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "problem", + "example_sentence_native": "Il y a un problème technique.", + "example_sentence_english": "There is a technical problem.", + "pos": "noun", + "word_frequency": 27645 + }, + { + "word": "programmable", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "programmable", + "example_sentence_native": "Cette machine est entièrement programmable.", + "example_sentence_english": "This machine is fully programmable.", + "pos": "adjective", + "word_frequency": 27646 + }, + { + "word": "prolétarien", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proletarian", + "example_sentence_native": "Il a étudié la classe prolétarienne.", + "example_sentence_english": "He studied the proletarian class.", + "pos": "adjective", + "word_frequency": 27647 + }, + { + "word": "propagandiste", + "article_with_word": "le propagandiste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propagandist", + "example_sentence_native": "Le propagandiste a diffusé de fausses informations.", + "example_sentence_english": "The propagandist spread false information.", + "pos": "noun", + "word_frequency": 27648 + }, + { + "word": "protectionniste", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protectionist", + "example_sentence_native": "Le gouvernement a adopté une politique protectionniste.", + "example_sentence_english": "The government adopted a protectionist policy.", + "pos": "adjective", + "word_frequency": 27649 + }, + { + "word": "précocement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prematurely;early", + "example_sentence_native": "Il a montré des signes de talent précocement.", + "example_sentence_english": "He showed signs of talent prematurely.", + "pos": "adverb", + "word_frequency": 27650 + }, + { + "word": "puni", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punished", + "example_sentence_native": "L'enfant était puni pour sa désobéissance.", + "example_sentence_english": "The child was punished for his disobedience.", + "pos": "adjective", + "word_frequency": 27651 + }, + { + "word": "puériculture", + "article_with_word": "la puériculture", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "childcare (science of);child health", + "example_sentence_native": "Elle travaille dans le domaine de la puériculture.", + "example_sentence_english": "She works in the field of childcare.", + "pos": "noun", + "word_frequency": 27652 + }, + { + "word": "pygmée", + "article_with_word": "le pygmée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pygmy", + "example_sentence_native": "Les Pygmées sont un groupe ethnique d'Afrique centrale.", + "example_sentence_english": "The Pygmies are an ethnic group from Central Africa.", + "pos": "noun", + "word_frequency": 27653 + }, + { + "word": "périnée", + "article_with_word": "le périnée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perineum", + "example_sentence_native": "Le périnée est une zone musculaire importante.", + "example_sentence_english": "The perineum is an important muscular area.", + "pos": "noun", + "word_frequency": 27654 + }, + { + "word": "radon", + "article_with_word": "le radon", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radon", + "example_sentence_native": "Le radon est un gaz radioactif naturel.", + "example_sentence_english": "Radon is a natural radioactive gas.", + "pos": "noun", + "word_frequency": 27659 + }, + { + "word": "rafraîchissant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshing", + "example_sentence_native": "Cette boisson est très rafraîchissante.", + "example_sentence_english": "This drink is very refreshing.", + "pos": "adjective", + "word_frequency": 27660 + }, + { + "word": "raillerie", + "article_with_word": "la raillerie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mockery;taunt", + "example_sentence_native": "Ses railleries étaient difficiles à supporter.", + "example_sentence_english": "His taunts were hard to bear.", + "pos": "noun", + "word_frequency": 27661 + }, + { + "word": "rallié", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rallied;joined", + "example_sentence_native": "Il est un membre rallié au mouvement.", + "example_sentence_english": "He is a member who rallied to the movement.", + "pos": "adjective", + "word_frequency": 27662 + }, + { + "word": "rationalisme", + "article_with_word": "le rationalisme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalism", + "example_sentence_native": "Le rationalisme est une doctrine philosophique.", + "example_sentence_english": "Rationalism is a philosophical doctrine.", + "pos": "noun", + "word_frequency": 27664 + }, + { + "word": "ravaler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swallow;to repress;to re-plaster", + "example_sentence_native": "Il a dû ravaler sa colère.", + "example_sentence_english": "He had to repress his anger.", + "pos": "verb", + "word_frequency": 27665 + }, + { + "word": "ravissement", + "article_with_word": "le ravissement", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delight;enchantment", + "example_sentence_native": "Elle a regardé le spectacle avec ravissement.", + "example_sentence_english": "She watched the show with delight.", + "pos": "noun", + "word_frequency": 27666 + }, + { + "word": "refonder", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refound;to rebuild", + "example_sentence_native": "Ils veulent refonder les bases de la société.", + "example_sentence_english": "They want to refound the foundations of society.", + "pos": "verb", + "word_frequency": 27668 + }, + { + "word": "relocalisation", + "article_with_word": "la relocalisation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relocation", + "example_sentence_native": "La relocalisation des industries est un enjeu économique.", + "example_sentence_english": "The relocation of industries is an economic issue.", + "pos": "noun", + "word_frequency": 27670 + }, + { + "word": "ribambelle", + "article_with_word": "une ribambelle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "a string;crowd (of children;things)", + "example_sentence_native": "Une ribambelle d'enfants courait dans le jardin.", + "example_sentence_english": "A string of children ran in the garden.", + "pos": "noun", + "word_frequency": 27671 + }, + { + "word": "rictus", + "article_with_word": "le rictus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rictus;grimace", + "example_sentence_native": "Un rictus de douleur déformait son visage.", + "example_sentence_english": "A grimace of pain distorted his face.", + "pos": "noun", + "word_frequency": 27672 + }, + { + "word": "rimer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rhyme", + "example_sentence_native": "Ces deux mots ne riment pas.", + "example_sentence_english": "These two words don't rhyme.", + "pos": "verb", + "word_frequency": 27674 + }, + { + "word": "rodé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broken-in;well-practiced", + "example_sentence_native": "L'équipe est bien rodée pour la compétition.", + "example_sentence_english": "The team is well-practiced for the competition.", + "pos": "adjective", + "word_frequency": 27677 + }, + { + "word": "romani", + "article_with_word": "le romani", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Romani (language)", + "example_sentence_native": "Le romani est la langue des Roms.", + "example_sentence_english": "Romani is the language of the Romani people.", + "pos": "noun", + "word_frequency": 27679 + }, + { + "word": "rougeur", + "article_with_word": "la rougeur", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "redness", + "example_sentence_native": "La rougeur de sa peau indiquait une allergie.", + "example_sentence_english": "The redness of her skin indicated an allergy.", + "pos": "noun", + "word_frequency": 27680 + }, + { + "word": "routage", + "article_with_word": "le routage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "routing", + "example_sentence_native": "Le routage des données est essentiel pour la communication internet.", + "example_sentence_english": "Data routing is essential for internet communication.", + "pos": "noun", + "word_frequency": 27681 + }, + { + "word": "rudesse", + "article_with_word": "la rudesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harshness;roughness", + "example_sentence_native": "La rudesse de l'hiver a surpris tout le monde.", + "example_sentence_english": "The harshness of winter surprised everyone.", + "pos": "noun", + "word_frequency": 27683 + }, + { + "word": "rugbyman", + "article_with_word": "le rugbyman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rugby player", + "example_sentence_native": "Le rugbyman a marqué un essai spectaculaire.", + "example_sentence_english": "The rugby player scored a spectacular try.", + "pos": "noun", + "word_frequency": 27684 + }, + { + "word": "rumba", + "article_with_word": "la rumba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rumba", + "example_sentence_native": "Ils ont dansé une rumba passionnée toute la nuit.", + "example_sentence_english": "They danced a passionate rumba all night.", + "pos": "noun", + "word_frequency": 27685 + }, + { + "word": "récitant", + "article_with_word": "le récitant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reciter;narrator", + "example_sentence_native": "Le récitant a captivé l'audience avec sa voix.", + "example_sentence_english": "The reciter captivated the audience with his voice.", + "pos": "noun", + "word_frequency": 27686 + }, + { + "word": "régresser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regress;to decline", + "example_sentence_native": "Ses compétences en lecture ont commencé à régresser.", + "example_sentence_english": "His reading skills started to regress.", + "pos": "verb", + "word_frequency": 27687 + }, + { + "word": "réquisitionné", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "requisitioned", + "example_sentence_native": "Le bâtiment a été réquisitionné par les autorités.", + "example_sentence_english": "The building was requisitioned by the authorities.", + "pos": "adjective", + "word_frequency": 27688 + }, + { + "word": "rééditer", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-edit;to republish", + "example_sentence_native": "L'éditeur a décidé de rééditer le roman classique.", + "example_sentence_english": "The publisher decided to republish the classic novel.", + "pos": "verb", + "word_frequency": 27689 + }, + { + "word": "réélu", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "re-elected", + "example_sentence_native": "Le président a été réélu pour un second mandat.", + "example_sentence_english": "The president was re-elected for a second term.", + "pos": "adjective", + "word_frequency": 27690 + }, + { + "word": "salamandre", + "article_with_word": "la salamandre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salamander", + "example_sentence_native": "La salamandre est un amphibien fascinant.", + "example_sentence_english": "The salamander is a fascinating amphibian.", + "pos": "noun", + "word_frequency": 27691 + }, + { + "word": "saloon", + "article_with_word": "le saloon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saloon", + "example_sentence_native": "Le cow-boy est entré dans le saloon.", + "example_sentence_english": "The cowboy entered the saloon.", + "pos": "noun", + "word_frequency": 27692 + }, + { + "word": "sellier", + "article_with_word": "le sellier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saddler", + "example_sentence_native": "Le sellier répare les selles de chevaux.", + "example_sentence_english": "The saddler repairs horse saddles.", + "pos": "noun", + "word_frequency": 27696 + }, + { + "word": "shabbat", + "article_with_word": "le shabbat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Shabbat", + "example_sentence_native": "Les familles juives observent le shabbat du vendredi soir au samedi soir.", + "example_sentence_english": "Jewish families observe Shabbat from Friday evening to Saturday evening.", + "pos": "noun", + "word_frequency": 27699 + }, + { + "word": "shilling", + "article_with_word": "le shilling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shilling", + "example_sentence_native": "Autrefois, le shilling était une monnaie courante au Royaume-Uni.", + "example_sentence_english": "In the past, the shilling was a common currency in the United Kingdom.", + "pos": "noun", + "word_frequency": 27701 + }, + { + "word": "similarité", + "article_with_word": "la similarité", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similarity", + "example_sentence_native": "Il y a une grande similarité entre les deux langues.", + "example_sentence_english": "There is a great similarity between the two languages.", + "pos": "noun", + "word_frequency": 27702 + }, + { + "word": "similé", + "article_with_word": "le similé", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imitation;simulated material", + "example_sentence_native": "Le cuir similé est souvent utilisé pour les meubles.", + "example_sentence_english": "Simulated leather is often used for furniture.", + "pos": "noun", + "word_frequency": 27703 + }, + { + "word": "snobisme", + "article_with_word": "le snobisme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snobbery", + "example_sentence_native": "Son snobisme le rendait impopulaire.", + "example_sentence_english": "His snobbery made him unpopular.", + "pos": "noun", + "word_frequency": 27705 + }, + { + "word": "somnambule", + "article_with_word": "le somnambule", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sleepwalker", + "example_sentence_native": "Le somnambule s'est levé et a marché dans la maison.", + "example_sentence_english": "The sleepwalker got up and walked around the house.", + "pos": "noun", + "word_frequency": 27707 + }, + { + "word": "songeur", + "article_with_word": "le songeur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dreamer;pensive person", + "example_sentence_native": "Il est souvent un songeur, perdu dans ses pensées.", + "example_sentence_english": "He is often a dreamer, lost in his thoughts.", + "pos": "noun", + "word_frequency": 27708 + }, + { + "word": "sternum", + "article_with_word": "le sternum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sternum;breastbone", + "example_sentence_native": "Le sternum protège le cœur et les poumons.", + "example_sentence_english": "The sternum protects the heart and lungs.", + "pos": "noun", + "word_frequency": 27712 + }, + { + "word": "subterfuge", + "article_with_word": "le subterfuge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subterfuge", + "example_sentence_native": "Il a utilisé un subterfuge pour échapper à la surveillance.", + "example_sentence_english": "He used a subterfuge to escape surveillance.", + "pos": "noun", + "word_frequency": 27715 + }, + { + "word": "suc", + "article_with_word": "le suc", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sap;juice (of plants;glands)", + "example_sentence_native": "Le suc des plantes est essentiel à leur croissance.", + "example_sentence_english": "The sap of plants is essential for their growth.", + "pos": "noun", + "word_frequency": 27716 + }, + { + "word": "suppliant", + "article_with_word": "le suppliant", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supplicant;petitioner", + "example_sentence_native": "Le suppliant a demandé pardon à genoux.", + "example_sentence_english": "The supplicant asked for forgiveness on his knees.", + "pos": "noun", + "word_frequency": 27717 + }, + { + "word": "suspecté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspected", + "example_sentence_native": "L'homme suspecté a été interrogé par la police.", + "example_sentence_english": "The suspected man was questioned by the police.", + "pos": "adjective", + "word_frequency": 27718 + }, + { + "word": "sélénium", + "article_with_word": "le sélénium", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "selenium", + "example_sentence_native": "Le sélénium est un oligo-élément essentiel.", + "example_sentence_english": "Selenium is an essential trace element.", + "pos": "noun", + "word_frequency": 27719 + }, + { + "word": "sénéchaussée", + "article_with_word": "la sénéchaussée", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seneschal's court;jurisdiction", + "example_sentence_native": "La sénéchaussée était une circonscription administrative et judiciaire sous l'Ancien Régime.", + "example_sentence_english": "The seneschal's court was an administrative and judicial district under the Ancien Régime.", + "pos": "noun", + "word_frequency": 27720 + }, + { + "word": "taciturne", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taciturn;silent;reserved", + "example_sentence_native": "Il est devenu très taciturne après la perte de son emploi.", + "example_sentence_english": "He became very taciturn after losing his job.", + "pos": "adjective", + "word_frequency": 27721 + }, + { + "word": "tacler", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tackle", + "example_sentence_native": "Le défenseur a taclé l'attaquant pour récupérer le ballon.", + "example_sentence_english": "The defender tackled the forward to get the ball back.", + "pos": "verb", + "word_frequency": 27722 + }, + { + "word": "talion", + "article_with_word": "le talion", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retaliation;lex talionis", + "example_sentence_native": "La loi du talion est un principe de justice archaïque.", + "example_sentence_english": "The law of retaliation is an archaic principle of justice.", + "pos": "noun", + "word_frequency": 27724 + }, + { + "word": "tarente", + "article_with_word": "la tarente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Moorish gecko", + "example_sentence_native": "La tarente est un petit lézard commun dans le sud de l'Europe.", + "example_sentence_english": "The Moorish gecko is a small lizard common in Southern Europe.", + "pos": "noun", + "word_frequency": 27725 + }, + { + "word": "tarmac", + "article_with_word": "le tarmac", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tarmac;apron", + "example_sentence_native": "L'avion a roulé lentement sur le tarmac avant le décollage.", + "example_sentence_english": "The plane slowly taxied on the tarmac before takeoff.", + "pos": "noun", + "word_frequency": 27726 + }, + { + "word": "testamentaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testamentary;by will", + "example_sentence_native": "Les dispositions testamentaires ont été lues après le décès.", + "example_sentence_english": "The testamentary provisions were read after the death.", + "pos": "adjective", + "word_frequency": 27730 + }, + { + "word": "tiff", + "article_with_word": "le tiff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tiff;spat;minor quarrel", + "example_sentence_native": "Ils ont eu un petit tiff à propos de l'organisation des vacances.", + "example_sentence_english": "They had a little tiff about the vacation planning.", + "pos": "noun", + "word_frequency": 27732 + }, + { + "word": "tiraillé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torn;conflicted;pulled", + "example_sentence_native": "Il se sentait tiraillé entre son devoir et ses désirs personnels.", + "example_sentence_english": "He felt torn between his duty and his personal desires.", + "pos": "adjective", + "word_frequency": 27733 + }, + { + "word": "torcher", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wipe;to do quickly;sloppily", + "example_sentence_native": "Il a torché son devoir en dix minutes.", + "example_sentence_english": "He knocked out his homework in ten minutes.", + "pos": "verb", + "word_frequency": 27735 + }, + { + "word": "tortueux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winding;tortuous;convoluted", + "example_sentence_native": "Le chemin de montagne était étroit et tortueux.", + "example_sentence_english": "The mountain path was narrow and winding.", + "pos": "adjective", + "word_frequency": 27736 + }, + { + "word": "tourtereau", + "article_with_word": "le tourtereau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "young turtledove", + "example_sentence_native": "Un tourtereau est tombé du nid.", + "example_sentence_english": "A young turtledove fell from the nest.", + "pos": "noun", + "word_frequency": 27738 + }, + { + "word": "traceur", + "article_with_word": "le traceur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plotter;tracer;tracker", + "example_sentence_native": "L'architecte a utilisé un traceur pour imprimer les plans.", + "example_sentence_english": "The architect used a plotter to print the plans.", + "pos": "noun", + "word_frequency": 27739 + }, + { + "word": "troïka", + "article_with_word": "la troïka", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "troika (group of three;especially in politics;economics)", + "example_sentence_native": "La troïka était composée de la Commission européenne, de la BCE et du FMI.", + "example_sentence_english": "The troika was composed of the European Commission, the ECB, and the IMF.", + "pos": "noun", + "word_frequency": 27741 + }, + { + "word": "turpitude", + "article_with_word": "la turpitude", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "turpitude;depravity;baseness", + "example_sentence_native": "Il a été accusé de turpitude morale.", + "example_sentence_english": "He was accused of moral turpitude.", + "pos": "noun", + "word_frequency": 27742 + }, + { + "word": "tutélaire", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tutelar;supervisory;protective", + "example_sentence_native": "L'autorité tutélaire veille sur les mineurs.", + "example_sentence_english": "The tutelar authority watches over minors.", + "pos": "adjective", + "word_frequency": 27743 + }, + { + "word": "typo", + "article_with_word": "la typo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typo;typographical error", + "example_sentence_native": "Il y a une typo dans le titre de l'article.", + "example_sentence_english": "There's a typo in the article's title.", + "pos": "noun", + "word_frequency": 27744 + }, + { + "word": "valablement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "validly;legally", + "example_sentence_native": "Le contrat n'est pas valablement signé sans les deux parties.", + "example_sentence_english": "The contract is not validly signed without both parties.", + "pos": "adverb", + "word_frequency": 27747 + }, + { + "word": "valorisé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valued;enhanced;promoted", + "example_sentence_native": "Ses compétences ont été valorisées par cette nouvelle expérience.", + "example_sentence_english": "His skills were enhanced by this new experience.", + "pos": "adjective", + "word_frequency": 27748 + }, + { + "word": "vasque", + "article_with_word": "la vasque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basin;bowl;fountain basin", + "example_sentence_native": "L'eau s'écoulait doucement dans la vasque de la fontaine.", + "example_sentence_english": "The water flowed gently into the fountain's basin.", + "pos": "noun", + "word_frequency": 27749 + }, + { + "word": "vé", + "article_with_word": "le vé", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "V (the letter);V-shape", + "example_sentence_native": "La lettre \"V\" se prononce \"vé\" en français.", + "example_sentence_english": "The letter \"V\" is pronounced \"vé\" in French.", + "pos": "noun", + "word_frequency": 27752 + }, + { + "word": "youtuber", + "article_with_word": "un youtuber", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "YouTuber", + "example_sentence_native": "Mon frère est un youtuber célèbre.", + "example_sentence_english": "My brother is a famous YouTuber.", + "pos": "noun", + "word_frequency": 27760 + }, + { + "word": "zona", + "article_with_word": "le zona", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shingles", + "example_sentence_native": "Le zona est une infection virale.", + "example_sentence_english": "Shingles is a viral infection.", + "pos": "noun", + "word_frequency": 27763 + }, + { + "word": "écouté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listened to;heard", + "example_sentence_native": "C'est une chanson très écoutée.", + "example_sentence_english": "It's a very listened-to song.", + "pos": "adjective", + "word_frequency": 27764 + }, + { + "word": "écroulement", + "article_with_word": "l'écroulement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse;downfall", + "example_sentence_native": "L'écroulement du bâtiment a causé des dégâts importants.", + "example_sentence_english": "The collapse of the building caused significant damage.", + "pos": "noun", + "word_frequency": 27765 + }, + { + "word": "électriquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electrically", + "example_sentence_native": "L'appareil fonctionne électriquement.", + "example_sentence_english": "The device operates electrically.", + "pos": "adverb", + "word_frequency": 27766 + }, + { + "word": "éta", + "article_with_word": "l'éta", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "forestay (nautical)", + "example_sentence_native": "L'éta maintient le mât en place.", + "example_sentence_english": "The forestay holds the mast in place.", + "pos": "noun", + "word_frequency": 27767 + }, + { + "word": "éterniser", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prolong;to drag on", + "example_sentence_native": "Il ne faut pas éterniser cette discussion.", + "example_sentence_english": "We shouldn't prolong this discussion.", + "pos": "verb", + "word_frequency": 27768 + }, + { + "word": "étiré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretched;elongated", + "example_sentence_native": "Ses muscles étaient étirés après l'exercice.", + "example_sentence_english": "His muscles were stretched after the exercise.", + "pos": "adjective", + "word_frequency": 27769 + }, + { + "word": "évité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avoided", + "example_sentence_native": "C'était un accident évité de justesse.", + "example_sentence_english": "It was a narrowly avoided accident.", + "pos": "adjective", + "word_frequency": 27770 + }, + { + "word": "abreuver", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to water (animals);to drench", + "example_sentence_native": "Le berger abreuve ses moutons à la rivière.", + "example_sentence_english": "The shepherd waters his sheep at the river.", + "pos": "verb", + "word_frequency": 27771 + }, + { + "word": "adduction", + "article_with_word": "l'adduction", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adduction;water supply", + "example_sentence_native": "L'adduction d'eau est essentielle pour la ville.", + "example_sentence_english": "Water supply is essential for the city.", + "pos": "noun", + "word_frequency": 27773 + }, + { + "word": "affrété", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chartered;freighted", + "example_sentence_native": "L'avion a été affrété pour le voyage.", + "example_sentence_english": "The plane was chartered for the trip.", + "pos": "adjective", + "word_frequency": 27774 + }, + { + "word": "albe", + "article_with_word": "l'albe", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dawn;daybreak (archaic;poetic)", + "example_sentence_native": "L'albe pointait à l'horizon.", + "example_sentence_english": "Dawn was breaking on the horizon.", + "pos": "noun", + "word_frequency": 27775 + }, + { + "word": "amarre", + "article_with_word": "l'amarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mooring line;hawser", + "example_sentence_native": "Il a jeté l'amarre pour attacher le bateau.", + "example_sentence_english": "He threw the mooring line to tie up the boat.", + "pos": "noun", + "word_frequency": 27777 + }, + { + "word": "amorphe", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amorphous;shapeless;lethargic", + "example_sentence_native": "Cette substance est amorphe.", + "example_sentence_english": "This substance is amorphous.", + "pos": "adjective", + "word_frequency": 27778 + }, + { + "word": "annuité", + "article_with_word": "l'annuité", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annuity;annual payment", + "example_sentence_native": "Le prêt est remboursé par annuités.", + "example_sentence_english": "The loan is repaid by annuities.", + "pos": "noun", + "word_frequency": 27780 + }, + { + "word": "anta", + "article_with_word": "l'anta", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "anta (architectural term)", + "example_sentence_native": "Les antas sont des pilastres aux extrémités d'un mur.", + "example_sentence_english": "Antas are pilasters at the ends of a wall.", + "pos": "noun", + "word_frequency": 27781 + }, + { + "word": "appétence", + "article_with_word": "l'appétence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appetite;strong desire;craving", + "example_sentence_native": "Il a une forte appétence pour les nouvelles technologies.", + "example_sentence_english": "He has a strong appetite for new technologies.", + "pos": "noun", + "word_frequency": 27782 + }, + { + "word": "arnaqueur", + "article_with_word": "l'arnaqueur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swindler;con artist", + "example_sentence_native": "Méfiez-vous de cet arnaqueur.", + "example_sentence_english": "Beware of this con artist.", + "pos": "noun", + "word_frequency": 27785 + }, + { + "word": "arrimage", + "article_with_word": "l'arrimage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lashing;stowage;securing", + "example_sentence_native": "L'arrimage des marchandises est crucial pour la sécurité.", + "example_sentence_english": "The lashing of goods is crucial for safety.", + "pos": "noun", + "word_frequency": 27786 + }, + { + "word": "avs", + "article_with_word": "l'AVS", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "OASI (Old-Age and Survivors' Insurance - Swiss)", + "example_sentence_native": "L'AVS est le premier pilier de la prévoyance suisse.", + "example_sentence_english": "OASI is the first pillar of Swiss pension provision.", + "pos": "noun", + "word_frequency": 27790 + }, + { + "word": "baissé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lowered;down", + "example_sentence_native": "Il avait la tête baissée.", + "example_sentence_english": "He had his head lowered.", + "pos": "adjective", + "word_frequency": 27791 + }, + { + "word": "bara", + "article_with_word": "le bara", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barracks;house (slang)", + "example_sentence_native": "On va au bara après le travail.", + "example_sentence_english": "We're going to the house after work.", + "pos": "noun", + "word_frequency": 27793 + }, + { + "word": "bard", + "article_with_word": "le bard", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "bard (poet;singer)", + "example_sentence_native": "Le vieux bard chantait des légendes anciennes.", + "example_sentence_english": "The old bard sang ancient legends.", + "pos": "noun", + "word_frequency": 27794 + }, + { + "word": "bibliophile", + "article_with_word": "un bibliophile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bibliophile", + "example_sentence_native": "Mon grand-père est un grand bibliophile, il a une collection impressionnante.", + "example_sentence_english": "My grandfather is a great bibliophile; he has an impressive collection.", + "pos": "noun", + "word_frequency": 27802 + }, + { + "word": "bizzare", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bizarre;strange", + "example_sentence_native": "C'est une situation vraiment bizarre.", + "example_sentence_english": "It's a really strange situation.", + "pos": "adjective", + "word_frequency": 27805 + }, + { + "word": "blank", + "article_with_word": "un blank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blank;empty space", + "example_sentence_native": "Veuillez remplir tous les blanks du formulaire.", + "example_sentence_english": "Please fill in all the blanks on the form.", + "pos": "noun", + "word_frequency": 27806 + }, + { + "word": "blast", + "article_with_word": "un blast", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blast;explosion (often metaphorical)", + "example_sentence_native": "Le concert était un vrai blast, tout le monde a adoré.", + "example_sentence_english": "The concert was a real blast, everyone loved it.", + "pos": "noun", + "word_frequency": 27807 + }, + { + "word": "bluffant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stunning;amazing;bluffing", + "example_sentence_native": "Sa capacité à résoudre des problèmes est bluffante.", + "example_sentence_english": "His ability to solve problems is stunning.", + "pos": "adjective", + "word_frequency": 27809 + }, + { + "word": "bookmaker", + "article_with_word": "un bookmaker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bookmaker", + "example_sentence_native": "Il a placé son pari chez un bookmaker en ligne.", + "example_sentence_english": "He placed his bet with an online bookmaker.", + "pos": "noun", + "word_frequency": 27811 + }, + { + "word": "bosniaque", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bosnian", + "example_sentence_native": "Elle a des origines bosniaques.", + "example_sentence_english": "She has Bosnian origins.", + "pos": "adjective", + "word_frequency": 27813 + }, + { + "word": "bottin", + "article_with_word": "un bottin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directory;phone book", + "example_sentence_native": "J'ai cherché son numéro dans le bottin.", + "example_sentence_english": "I looked up his number in the phone book.", + "pos": "noun", + "word_frequency": 27814 + }, + { + "word": "bourrin", + "article_with_word": "un bourrin", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brute;oaf (colloquial)", + "example_sentence_native": "Il est un peu bourrin dans sa façon de travailler, mais il est efficace.", + "example_sentence_english": "He's a bit of a brute in his way of working, but he's effective.", + "pos": "noun", + "word_frequency": 27815 + }, + { + "word": "brassée", + "article_with_word": "une brassée", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armful;breaststroke", + "example_sentence_native": "Elle portait une brassée de linge propre.", + "example_sentence_english": "She was carrying an armful of clean laundry.", + "pos": "noun", + "word_frequency": 27818 + }, + { + "word": "brumeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foggy;hazy", + "example_sentence_native": "Le matin était très brumeux, on ne voyait pas à dix mètres.", + "example_sentence_english": "The morning was very foggy; we couldn't see ten meters.", + "pos": "adjective", + "word_frequency": 27820 + }, + { + "word": "bundle", + "article_with_word": "un bundle", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bundle;package", + "example_sentence_native": "J'ai acheté un bundle de logiciels à un prix avantageux.", + "example_sentence_english": "I bought a software bundle at a good price.", + "pos": "noun", + "word_frequency": 27822 + }, + { + "word": "calibré", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calibrated;well-adjusted", + "example_sentence_native": "Le système de mesure est parfaitement calibré.", + "example_sentence_english": "The measuring system is perfectly calibrated.", + "pos": "adjective", + "word_frequency": 27825 + }, + { + "word": "cathare", + "article_with_word": "un cathare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cathar", + "example_sentence_native": "Les Cathares étaient un mouvement religieux du Moyen Âge.", + "example_sentence_english": "The Cathars were a religious movement of the Middle Ages.", + "pos": "noun", + "word_frequency": 27826 + }, + { + "word": "chatouille", + "article_with_word": "une chatouille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tickle", + "example_sentence_native": "J'ai ressenti une petite chatouille dans la gorge.", + "example_sentence_english": "I felt a little tickle in my throat.", + "pos": "noun", + "word_frequency": 27828 + }, + { + "word": "cheri", + "article_with_word": "un chéri", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "darling;dear", + "example_sentence_native": "Bonjour, mon chéri, comment vas-tu ?", + "example_sentence_english": "Hello, my darling, how are you?", + "pos": "noun", + "word_frequency": 27829 + }, + { + "word": "cliquetis", + "article_with_word": "un cliquetis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clinking;rattling sound", + "example_sentence_native": "On entendait un cliquetis de verres provenant de la cuisine.", + "example_sentence_english": "We heard a clinking of glasses coming from the kitchen.", + "pos": "noun", + "word_frequency": 27833 + }, + { + "word": "collagène", + "article_with_word": "le collagène", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collagen", + "example_sentence_native": "Le collagène est une protéine essentielle pour la peau.", + "example_sentence_english": "Collagen is an essential protein for the skin.", + "pos": "noun", + "word_frequency": 27835 + }, + { + "word": "coloriage", + "article_with_word": "un coloriage", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coloring;coloring book", + "example_sentence_native": "Les enfants adorent faire du coloriage.", + "example_sentence_english": "Children love to do coloring.", + "pos": "noun", + "word_frequency": 27836 + }, + { + "word": "concocter", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concoct;to devise", + "example_sentence_native": "Elle a concocté un plan ingénieux pour la surprise.", + "example_sentence_english": "She concocted an ingenious plan for the surprise.", + "pos": "verb", + "word_frequency": 27838 + }, + { + "word": "confessionnel", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confessional", + "example_sentence_native": "L'école a une orientation confessionnelle.", + "example_sentence_english": "The school has a confessional orientation.", + "pos": "adjective", + "word_frequency": 27839 + }, + { + "word": "contracté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contracted;tense", + "example_sentence_native": "Ses muscles étaient contractés après l'effort.", + "example_sentence_english": "His muscles were tense after the effort.", + "pos": "adjective", + "word_frequency": 27842 + }, + { + "word": "contradicteur", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opponent;detractor", + "example_sentence_native": "Il a présenté ses arguments face à son contradicteur.", + "example_sentence_english": "He presented his arguments in front of his opponent.", + "pos": "noun", + "word_frequency": 27843 + }, + { + "word": "couperet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cleaver;guillotine blade", + "example_sentence_native": "Le boucher a utilisé un couperet pour découper la viande.", + "example_sentence_english": "The butcher used a cleaver to cut the meat.", + "pos": "noun", + "word_frequency": 27845 + }, + { + "word": "criquet", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cricket (insect)", + "example_sentence_native": "On entendait le chant des criquets dans la nuit d'été.", + "example_sentence_english": "We could hear the crickets chirping in the summer night.", + "pos": "noun", + "word_frequency": 27847 + }, + { + "word": "crypté", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encrypted", + "example_sentence_native": "Le message était crypté pour assurer sa confidentialité.", + "example_sentence_english": "The message was encrypted to ensure its confidentiality.", + "pos": "adjective", + "word_frequency": 27848 + }, + { + "word": "crémeux", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creamy", + "example_sentence_native": "Ce fromage est très crémeux et délicieux.", + "example_sentence_english": "This cheese is very creamy and delicious.", + "pos": "adjective", + "word_frequency": 27849 + }, + { + "word": "cuirassé", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "armored;ironclad", + "example_sentence_native": "Le navire de guerre était lourdement cuirassé.", + "example_sentence_english": "The warship was heavily armored.", + "pos": "adjective", + "word_frequency": 27853 + }, + { + "word": "cénacle", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cenacle;inner circle", + "example_sentence_native": "Seuls les membres du cénacle étaient invités à la réunion secrète.", + "example_sentence_english": "Only the members of the inner circle were invited to the secret meeting.", + "pos": "noun", + "word_frequency": 27854 + }, + { + "word": "dansant", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dancing;dance-related", + "example_sentence_native": "Nous avons passé une soirée dansante très agréable.", + "example_sentence_english": "We had a very pleasant dancing evening.", + "pos": "adjective", + "word_frequency": 27857 + }, + { + "word": "dermatologie", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dermatology", + "example_sentence_native": "Elle étudie la dermatologie pour devenir médecin de la peau.", + "example_sentence_english": "She is studying dermatology to become a skin doctor.", + "pos": "noun", + "word_frequency": 27860 + }, + { + "word": "dilettante", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilettante;amateur", + "example_sentence_native": "Il est un dilettante en musique, il joue pour le plaisir.", + "example_sentence_english": "He is a dilettante in music, he plays for pleasure.", + "pos": "noun", + "word_frequency": 27863 + }, + { + "word": "discrédité", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discredited", + "example_sentence_native": "Après le scandale, sa réputation était discréditée.", + "example_sentence_english": "After the scandal, his reputation was discredited.", + "pos": "adjective", + "word_frequency": 27864 + }, + { + "word": "domestication", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domestication", + "example_sentence_native": "La domestication des animaux a changé l'histoire humaine.", + "example_sentence_english": "The domestication of animals changed human history.", + "pos": "noun", + "word_frequency": 27865 + }, + { + "word": "dramatiquement", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dramatically", + "example_sentence_native": "La situation a changé dramatiquement en quelques heures.", + "example_sentence_english": "The situation changed dramatically in a few hours.", + "pos": "adverb", + "word_frequency": 27867 + }, + { + "word": "déballage", + "article_with_word": "le", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpacking;unboxing", + "example_sentence_native": "Le déballage des cadeaux a pris du temps.", + "example_sentence_english": "The unpacking of the gifts took time.", + "pos": "noun", + "word_frequency": 27870 + }, + { + "word": "délier", + "article_with_word": "", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to untie;to release", + "example_sentence_native": "Il a dû délier les cordes pour libérer le paquet.", + "example_sentence_english": "He had to untie the ropes to free the package.", + "pos": "verb", + "word_frequency": 27871 + }, + { + "word": "démobilisation", + "article_with_word": "la", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demobilization", + "example_sentence_native": "La démobilisation des troupes a commencé après la guerre.", + "example_sentence_english": "The demobilization of troops began after the war.", + "pos": "noun", + "word_frequency": 27872 + } +] diff --git a/data-pipeline/stage-2-annotate/sources/cefr/it.json b/data-pipeline/stage-2-annotate/sources/cefr/it.json new file mode 100644 index 0000000..612db3b --- /dev/null +++ b/data-pipeline/stage-2-annotate/sources/cefr/it.json @@ -0,0 +1,185759 @@ +[ + { + "word": "non", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "not", + "romanization": "non", + "example_sentence_native": "Non parlo italiano.", + "example_sentence_english": "I do not speak Italian.", + "pos": "adverb", + "word_frequency": 7 + }, + { + "word": "è", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "is", + "romanization": "è", + "example_sentence_native": "Lui è alto.", + "example_sentence_english": "He is tall.", + "pos": "verb", + "word_frequency": 10 + }, + { + "word": "sono", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "am;are", + "romanization": "sono", + "example_sentence_native": "Io sono italiano.", + "example_sentence_english": "I am Italian.", + "pos": "verb", + "word_frequency": 20 + }, + { + "word": "ha", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "has", + "romanization": "ha", + "example_sentence_native": "Lui ha un cane.", + "example_sentence_english": "He has a dog.", + "pos": "verb", + "word_frequency": 23 + }, + { + "word": "come", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "how;as;like", + "romanization": "come", + "example_sentence_native": "Come stai?", + "example_sentence_english": "How are you?", + "pos": "adverb", + "word_frequency": 24 + }, + { + "word": "più", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "more", + "romanization": "più", + "example_sentence_native": "Voglio più tempo.", + "example_sentence_english": "I want more time.", + "pos": "adverb", + "word_frequency": 25 + }, + { + "word": "anche", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "also;too;even", + "romanization": "anche", + "example_sentence_native": "Anch'io vengo.", + "example_sentence_english": "I'm coming too.", + "pos": "adverb", + "word_frequency": 31 + }, + { + "word": "ho", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "have", + "romanization": "ho", + "example_sentence_native": "Ho fame.", + "example_sentence_english": "I am hungry.", + "pos": "verb", + "word_frequency": 37 + }, + { + "word": "solo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "alone;only", + "romanization": "solo", + "example_sentence_native": "Mi sento solo.", + "example_sentence_english": "I feel alone.", + "pos": "adjective", + "word_frequency": 42 + }, + { + "word": "essere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be (subjunctive)", + "romanization": "essere", + "example_sentence_native": "Che sia vero o no.", + "example_sentence_english": "Whether it is true or not.", + "pos": "verb", + "word_frequency": 43 + }, + { + "word": "stato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "state;condition", + "romanization": "stato", + "example_sentence_native": "Lo stato italiano.", + "example_sentence_english": "The Italian state.", + "pos": "noun", + "word_frequency": 50 + }, + { + "word": "quando", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "when", + "romanization": "quando", + "example_sentence_native": "Non so quando arriverà.", + "example_sentence_english": "I don't know when he will arrive.", + "pos": "adverb", + "word_frequency": 51 + }, + { + "word": "tutto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "all;whole", + "romanization": "tutto", + "example_sentence_native": "Ho mangiato tutto il pane.", + "example_sentence_english": "I ate all the bread.", + "pos": "adjective", + "word_frequency": 56 + }, + { + "word": "cosa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thing;what", + "romanization": "cosa", + "example_sentence_native": "Che cosa vuoi?", + "example_sentence_english": "What do you want?", + "pos": "noun", + "word_frequency": 57 + }, + { + "word": "fatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fact;deed", + "romanization": "fatto", + "example_sentence_native": "È un fatto compiuto.", + "example_sentence_english": "It's a done deal.", + "pos": "noun", + "word_frequency": 60 + }, + { + "word": "prima", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "before;first", + "romanization": "prima", + "example_sentence_native": "Fai i compiti prima di giocare.", + "example_sentence_english": "Do your homework before playing.", + "pos": "adverb", + "word_frequency": 61 + }, + { + "word": "suo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "his;her;its", + "romanization": "suo", + "example_sentence_native": "La sua borsa è rossa.", + "example_sentence_english": "Her bag is red.", + "pos": "adjective", + "word_frequency": 62 + }, + { + "word": "parte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "part;side", + "romanization": "parte", + "example_sentence_native": "Ho letto solo una parte del libro.", + "example_sentence_english": "I only read a part of the book.", + "pos": "noun", + "word_frequency": 64 + }, + { + "word": "anno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "year", + "romanization": "anno", + "example_sentence_native": "Buon anno!", + "example_sentence_english": "Happy New Year!", + "pos": "noun", + "word_frequency": 66 + }, + { + "word": "due", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two", + "romanization": "due", + "example_sentence_native": "Ho due fratelli.", + "example_sentence_english": "I have two brothers.", + "pos": "adjective", + "word_frequency": 67 + }, + { + "word": "fare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to do;to make", + "romanization": "fare", + "example_sentence_native": "Dobbiamo fare qualcosa.", + "example_sentence_english": "We must do something.", + "pos": "verb", + "word_frequency": 71 + }, + { + "word": "così", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "so;thus", + "romanization": "così", + "example_sentence_native": "Non è così facile.", + "example_sentence_english": "It's not so easy.", + "pos": "adverb", + "word_frequency": 72 + }, + { + "word": "dopo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "after;later", + "romanization": "dopo", + "example_sentence_native": "Ti chiamo dopo.", + "example_sentence_english": "I'll call you later.", + "pos": "adverb", + "word_frequency": 75 + }, + { + "word": "poi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "then", + "romanization": "poi", + "example_sentence_native": "Prima mangiamo, poi andiamo al cinema.", + "example_sentence_english": "First we eat, then we go to the cinema.", + "pos": "adverb", + "word_frequency": 80 + }, + { + "word": "sempre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "always", + "romanization": "sempre", + "example_sentence_native": "Lei legge sempre prima di dormire.", + "example_sentence_english": "She always reads before sleeping.", + "pos": "adverb", + "word_frequency": 82 + }, + { + "word": "ancora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "still;yet", + "romanization": "ancora", + "example_sentence_native": "Non è ancora arrivato.", + "example_sentence_english": "He hasn't arrived yet.", + "pos": "adverb", + "word_frequency": 86 + }, + { + "word": "molto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "very;much", + "romanization": "molto", + "example_sentence_native": "Sono molto stanco.", + "example_sentence_english": "I am very tired.", + "pos": "adverb", + "word_frequency": 87 + }, + { + "word": "mai", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "never", + "romanization": "mai", + "example_sentence_native": "Non ho mai visto un elefante.", + "example_sentence_english": "I have never seen an elephant.", + "pos": "adverb", + "word_frequency": 89 + }, + { + "word": "ogni", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "every;each", + "romanization": "ogni", + "example_sentence_native": "Ogni giorno vado a scuola.", + "example_sentence_english": "Every day I go to school.", + "pos": "adjective", + "word_frequency": 90 + }, + { + "word": "altro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "other;another", + "romanization": "altro", + "example_sentence_native": "Voglio un altro caffè.", + "example_sentence_english": "I want another coffee.", + "pos": "adjective", + "word_frequency": 91 + }, + { + "word": "ora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hour;now", + "romanization": "ora", + "example_sentence_native": "Che ora è?", + "example_sentence_english": "What time is it?", + "pos": "noun", + "word_frequency": 92 + }, + { + "word": "quanto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "how much;how many", + "romanization": "quanto", + "example_sentence_native": "Quanto costa?", + "example_sentence_english": "How much does it cost?", + "pos": "adverb", + "word_frequency": 95 + }, + { + "word": "tempo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "time;weather", + "romanization": "tempo", + "example_sentence_native": "Non ho tempo.", + "example_sentence_english": "I don't have time.", + "pos": "noun", + "word_frequency": 97 + }, + { + "word": "dove", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "where", + "romanization": "dove", + "example_sentence_native": "Dove sei?", + "example_sentence_english": "Where are you?", + "pos": "adverb", + "word_frequency": 98 + }, + { + "word": "vita", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "life", + "romanization": "vita", + "example_sentence_native": "La vita è bella.", + "example_sentence_english": "Life is beautiful.", + "pos": "noun", + "word_frequency": 99 + }, + { + "word": "già", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "already", + "romanization": "già", + "example_sentence_native": "Ho già mangiato.", + "example_sentence_english": "I have already eaten.", + "pos": "adverb", + "word_frequency": 102 + }, + { + "word": "quindi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "therefore;so", + "romanization": "quindi", + "example_sentence_native": "Ha piovuto, quindi siamo rimasti a casa.", + "example_sentence_english": "It rained, so we stayed home.", + "pos": "adverb", + "word_frequency": 105 + }, + { + "word": "secondo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "second", + "romanization": "secondo", + "example_sentence_native": "Questo è il secondo capitolo.", + "example_sentence_english": "This is the second chapter.", + "pos": "adjective", + "word_frequency": 106 + }, + { + "word": "proprio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "own;really", + "romanization": "proprio", + "example_sentence_native": "Ha la sua propria macchina.", + "example_sentence_english": "He has his own car.", + "pos": "adjective", + "word_frequency": 108 + }, + { + "word": "bene", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "well", + "romanization": "bene", + "example_sentence_native": "Sto bene, grazie.", + "example_sentence_english": "I am well, thank you.", + "pos": "adverb", + "word_frequency": 109 + }, + { + "word": "lavoro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "work;job", + "romanization": "lavoro", + "example_sentence_native": "Ho molto lavoro da fare.", + "example_sentence_english": "I have a lot of work to do.", + "pos": "noun", + "word_frequency": 111 + }, + { + "word": "modo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "way;manner", + "romanization": "modo", + "example_sentence_native": "Non c'è modo di saperlo.", + "example_sentence_english": "There's no way to know it.", + "pos": "noun", + "word_frequency": 112 + }, + { + "word": "casa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "house;home", + "romanization": "casa", + "example_sentence_native": "Vado a casa.", + "example_sentence_english": "I'm going home.", + "pos": "noun", + "word_frequency": 117 + }, + { + "word": "persona", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "person", + "romanization": "persona", + "example_sentence_native": "È una brava persona.", + "example_sentence_english": "He/She is a good person.", + "pos": "noun", + "word_frequency": 118 + }, + { + "word": "qui", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here", + "romanization": "qui", + "example_sentence_native": "Vieni qui!", + "example_sentence_english": "Come here!", + "pos": "adverb", + "word_frequency": 119 + }, + { + "word": "volta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "time (as in 'one time');turn", + "romanization": "volta", + "example_sentence_native": "Questa è la prima volta che vengo qui.", + "example_sentence_english": "This is the first time I come here.", + "pos": "noun", + "word_frequency": 122 + }, + { + "word": "dire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to say;to tell", + "romanization": "dire", + "example_sentence_native": "Cosa vuoi dire?", + "example_sentence_english": "What do you want to say?", + "pos": "verb", + "word_frequency": 123 + }, + { + "word": "giorno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day", + "romanization": "giorno", + "example_sentence_native": "Buon giorno!", + "example_sentence_english": "Good day!", + "pos": "noun", + "word_frequency": 125 + }, + { + "word": "mondo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "world", + "romanization": "mondo", + "example_sentence_native": "Il mondo è grande.", + "example_sentence_english": "The world is big.", + "pos": "noun", + "word_frequency": 126 + }, + { + "word": "stesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "same;self", + "romanization": "stesso", + "example_sentence_native": "Abbiamo la stessa idea.", + "example_sentence_english": "We have the same idea.", + "pos": "adjective", + "word_frequency": 130 + }, + { + "word": "via", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "street;way", + "romanization": "via", + "example_sentence_native": "Abito in Via Roma.", + "example_sentence_english": "I live on Rome Street.", + "pos": "noun", + "word_frequency": 131 + }, + { + "word": "grande", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "big;large;great", + "romanization": "grande", + "example_sentence_native": "La casa è grande.", + "example_sentence_english": "The house is big.", + "pos": "adjective", + "word_frequency": 132 + }, + { + "word": "primo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "first", + "romanization": "primo", + "example_sentence_native": "Questo è il mio primo libro.", + "example_sentence_english": "This is my first book.", + "pos": "adjective", + "word_frequency": 133 + }, + { + "word": "contro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "against", + "romanization": "contro", + "example_sentence_native": "Sono contro questa decisione.", + "example_sentence_english": "I am against this decision.", + "pos": "adverb", + "word_frequency": 134 + }, + { + "word": "caso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "case;chance", + "romanization": "caso", + "example_sentence_native": "In questo caso, non so cosa fare.", + "example_sentence_english": "In this case, I don't know what to do.", + "pos": "noun", + "word_frequency": 136 + }, + { + "word": "oggi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "today", + "romanization": "oggi", + "example_sentence_native": "Oggi fa bel tempo.", + "example_sentence_english": "Today the weather is good.", + "pos": "adverb", + "word_frequency": 140 + }, + { + "word": "tanto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "so much;a lot", + "romanization": "tanto", + "example_sentence_native": "Ti voglio tanto bene.", + "example_sentence_english": "I love you so much.", + "pos": "adverb", + "word_frequency": 141 + }, + { + "word": "città", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "city", + "romanization": "città", + "example_sentence_native": "Vivo in una grande città.", + "example_sentence_english": "I live in a big city.", + "pos": "noun", + "word_frequency": 142 + }, + { + "word": "nuovo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "new", + "romanization": "nuovo", + "example_sentence_native": "Ho comprato una macchina nuova.", + "example_sentence_english": "I bought a new car.", + "pos": "adjective", + "word_frequency": 143 + }, + { + "word": "fine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "end", + "romanization": "fine", + "example_sentence_native": "Alla fine del film, tutti hanno applaudito.", + "example_sentence_english": "At the end of the movie, everyone applauded.", + "pos": "noun", + "word_frequency": 144 + }, + { + "word": "qualche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "some;a few", + "romanization": "qualche", + "example_sentence_native": "Ho qualche domanda.", + "example_sentence_english": "I have some questions.", + "pos": "adjective", + "word_frequency": 146 + }, + { + "word": "quale", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "which;what", + "romanization": "quale", + "example_sentence_native": "Quale libro preferisci?", + "example_sentence_english": "Which book do you prefer?", + "pos": "adjective", + "word_frequency": 147 + }, + { + "word": "stati", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "states", + "romanization": "stati", + "example_sentence_native": "Gli Stati Uniti sono grandi.", + "example_sentence_english": "The United States are big.", + "pos": "noun", + "word_frequency": 152 + }, + { + "word": "storia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "history;story", + "romanization": "storia", + "example_sentence_native": "Mi piace leggere storie.", + "example_sentence_english": "I like to read stories.", + "pos": "noun", + "word_frequency": 153 + }, + { + "word": "tre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "three", + "romanization": "tre", + "example_sentence_native": "Ho tre libri.", + "example_sentence_english": "I have three books.", + "pos": "adjective", + "word_frequency": 154 + }, + { + "word": "avere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have", + "romanization": "avere", + "example_sentence_native": "Io ho un cane.", + "example_sentence_english": "I have a dog.", + "pos": "verb", + "word_frequency": 157 + }, + { + "word": "fino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "until;up to", + "romanization": "fino", + "example_sentence_native": "Aspettami fino a domani.", + "example_sentence_english": "Wait for me until tomorrow.", + "pos": "adverb", + "word_frequency": 158 + }, + { + "word": "foto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photo", + "romanization": "foto", + "example_sentence_native": "Mi piace fare foto.", + "example_sentence_english": "I like to take photos.", + "pos": "noun", + "word_frequency": 159 + }, + { + "word": "meglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "better", + "romanization": "meglio", + "example_sentence_native": "Sto molto meglio oggi.", + "example_sentence_english": "I am much better today.", + "pos": "adverb", + "word_frequency": 162 + }, + { + "word": "vedere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to see", + "romanization": "vedere", + "example_sentence_native": "Voglio vedere il film.", + "example_sentence_english": "I want to see the movie.", + "pos": "verb", + "word_frequency": 163 + }, + { + "word": "meno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "less", + "romanization": "meno", + "example_sentence_native": "Vorrei meno zucchero nel caffè.", + "example_sentence_english": "I would like less sugar in my coffee.", + "pos": "adverb", + "word_frequency": 165 + }, + { + "word": "sapere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know (facts;how to do something)", + "romanization": "sapere", + "example_sentence_native": "Non so la risposta.", + "example_sentence_english": "I don't know the answer.", + "pos": "verb", + "word_frequency": 167 + }, + { + "word": "sotto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "under;below", + "romanization": "sotto", + "example_sentence_native": "Il gatto è sotto il tavolo.", + "example_sentence_english": "The cat is under the table.", + "pos": "adverb", + "word_frequency": 168 + }, + { + "word": "momento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moment", + "romanization": "momento", + "example_sentence_native": "Aspetta un momento, per favore.", + "example_sentence_english": "Wait a moment, please.", + "pos": "noun", + "word_frequency": 169 + }, + { + "word": "dovere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have to;must", + "romanization": "dovere", + "example_sentence_native": "Devo andare via ora.", + "example_sentence_english": "I have to leave now.", + "pos": "verb", + "word_frequency": 170 + }, + { + "word": "forse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perhaps;maybe", + "romanization": "forse", + "example_sentence_native": "Forse pioverà domani.", + "example_sentence_english": "Perhaps it will rain tomorrow.", + "pos": "adverb", + "word_frequency": 171 + }, + { + "word": "invece", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instead;on the contrary", + "romanization": "invece", + "example_sentence_native": "Non è andato al cinema, invece è rimasto a casa.", + "example_sentence_english": "He didn't go to the cinema, instead he stayed home.", + "pos": "adverb", + "word_frequency": 172 + }, + { + "word": "qualcosa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "something", + "romanization": "qualcosa", + "example_sentence_native": "C'è qualcosa che non va.", + "example_sentence_english": "There's something wrong.", + "pos": "noun", + "word_frequency": 175 + }, + { + "word": "sembrare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to seem;to appear", + "romanization": "sembrare", + "example_sentence_native": "Mi sembra una buona idea.", + "example_sentence_english": "It seems like a good idea to me.", + "pos": "verb", + "word_frequency": 176 + }, + { + "word": "oltre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beyond;further", + "romanization": "oltre", + "example_sentence_native": "Andiamo oltre questo punto.", + "example_sentence_english": "Let's go beyond this point.", + "pos": "adverb", + "word_frequency": 178 + }, + { + "word": "troppo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "too much;too", + "romanization": "troppo", + "example_sentence_native": "È troppo caldo qui.", + "example_sentence_english": "It's too hot here.", + "pos": "adverb", + "word_frequency": 180 + }, + { + "word": "vero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "true;real", + "romanization": "vero", + "example_sentence_native": "È una storia vera.", + "example_sentence_english": "It's a true story.", + "pos": "adjective", + "word_frequency": 181 + }, + { + "word": "allora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "then;so", + "romanization": "allora", + "example_sentence_native": "Allora, cosa facciamo?", + "example_sentence_english": "So, what do we do?", + "pos": "adverb", + "word_frequency": 182 + }, + { + "word": "gente", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "people", + "romanization": "gente", + "example_sentence_native": "C'è molta gente qui.", + "example_sentence_english": "There are many people here.", + "pos": "noun", + "word_frequency": 185 + }, + { + "word": "legge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "law", + "romanization": "legge", + "example_sentence_native": "La legge è uguale per tutti.", + "example_sentence_english": "The law is equal for everyone.", + "pos": "noun", + "word_frequency": 186 + }, + { + "word": "niente", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nothing", + "romanization": "niente", + "example_sentence_native": "Non c'è niente da fare.", + "example_sentence_english": "There's nothing to do.", + "pos": "noun", + "word_frequency": 187 + }, + { + "word": "posto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "place;spot", + "romanization": "posto", + "example_sentence_native": "C'è un posto libero?", + "example_sentence_english": "Is there a free spot?", + "pos": "noun", + "word_frequency": 188 + }, + { + "word": "alcuno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "any;some (negative contexts)", + "romanization": "alcuno", + "example_sentence_native": "Non ho alcun dubbio.", + "example_sentence_english": "I have no doubt.", + "pos": "adjective", + "word_frequency": 189 + }, + { + "word": "fuori", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "outside", + "romanization": "fuori", + "example_sentence_native": "Aspettami fuori.", + "example_sentence_english": "Wait for me outside.", + "pos": "adverb", + "word_frequency": 190 + }, + { + "word": "nome", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "name", + "romanization": "nome", + "example_sentence_native": "Qual è il tuo nome?", + "example_sentence_english": "What is your name?", + "pos": "noun", + "word_frequency": 191 + }, + { + "word": "poco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little;a little", + "romanization": "poco", + "example_sentence_native": "Ho poco tempo.", + "example_sentence_english": "I have little time.", + "pos": "adverb", + "word_frequency": 192 + }, + { + "word": "stare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stay;to be (state;location)", + "romanization": "stare", + "example_sentence_native": "Come stai? Sto bene.", + "example_sentence_english": "How are you? I am well.", + "pos": "verb", + "word_frequency": 194 + }, + { + "word": "andare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go", + "romanization": "andare", + "example_sentence_native": "Voglio andare a casa.", + "example_sentence_english": "I want to go home.", + "pos": "verb", + "word_frequency": 196 + }, + { + "word": "insieme", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "together", + "romanization": "insieme", + "example_sentence_native": "Andiamo al cinema insieme.", + "example_sentence_english": "Let's go to the cinema together.", + "pos": "adverb", + "word_frequency": 197 + }, + { + "word": "punto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "point;dot", + "romanization": "punto", + "example_sentence_native": "Non capisco il tuo punto.", + "example_sentence_english": "I don't understand your point.", + "pos": "noun", + "word_frequency": 198 + }, + { + "word": "qualcuno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "someone;somebody", + "romanization": "qualcuno", + "example_sentence_native": "C'è qualcuno alla porta.", + "example_sentence_english": "There's someone at the door.", + "pos": "pronoun", + "word_frequency": 199 + }, + { + "word": "tipo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "type;kind;guy", + "romanization": "tipo", + "example_sentence_native": "Che tipo di musica ti piace?", + "example_sentence_english": "What kind of music do you like?", + "pos": "noun", + "word_frequency": 200 + }, + { + "word": "davvero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "really;truly", + "romanization": "davvero", + "example_sentence_native": "È davvero un bel film.", + "example_sentence_english": "It's really a good movie.", + "pos": "adverb", + "word_frequency": 201 + }, + { + "word": "comunque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anyway;however", + "romanization": "comunque", + "example_sentence_native": "Comunque, grazie per l'aiuto.", + "example_sentence_english": "Anyway, thanks for the help.", + "pos": "adverb", + "word_frequency": 204 + }, + { + "word": "potere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be able to;can", + "romanization": "potere", + "example_sentence_native": "Posso aiutarti?", + "example_sentence_english": "Can I help you?", + "pos": "verb", + "word_frequency": 208 + }, + { + "word": "video", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video", + "romanization": "video", + "example_sentence_native": "Ho visto un video interessante online.", + "example_sentence_english": "I saw an interesting video online.", + "pos": "noun", + "word_frequency": 209 + }, + { + "word": "volere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to want", + "romanization": "volere", + "example_sentence_native": "Voglio un caffè, per favore.", + "example_sentence_english": "I want a coffee, please.", + "pos": "verb", + "word_frequency": 211 + }, + { + "word": "male", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "badly;poorly", + "romanization": "male", + "example_sentence_native": "Mi sento male oggi.", + "example_sentence_english": "I feel bad today.", + "pos": "adverb", + "word_frequency": 212 + }, + { + "word": "numero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "number", + "romanization": "numero", + "example_sentence_native": "Qual è il tuo numero di telefono?", + "example_sentence_english": "What is your phone number?", + "pos": "noun", + "word_frequency": 213 + }, + { + "word": "quasi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "almost;nearly", + "romanization": "quasi", + "example_sentence_native": "È quasi mezzanotte.", + "example_sentence_english": "It's almost midnight.", + "pos": "adverb", + "word_frequency": 214 + }, + { + "word": "sì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yes", + "romanization": "sì", + "example_sentence_native": "Sì, certo che vengo.", + "example_sentence_english": "Yes, of course I'm coming.", + "pos": "adverb", + "word_frequency": 215 + }, + { + "word": "certo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "certain;sure", + "romanization": "certo", + "example_sentence_native": "Sono certo che andrà tutto bene.", + "example_sentence_english": "I'm sure everything will be fine.", + "pos": "adjective", + "word_frequency": 217 + }, + { + "word": "gruppo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "group", + "romanization": "gruppo", + "example_sentence_native": "Lavoriamo in gruppo per questo progetto.", + "example_sentence_english": "We work in a group for this project.", + "pos": "noun", + "word_frequency": 218 + }, + { + "word": "dare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to give", + "romanization": "dare", + "example_sentence_native": "Puoi darmi una mano?", + "example_sentence_english": "Can you give me a hand?", + "pos": "verb", + "word_frequency": 220 + }, + { + "word": "società", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "society;company", + "romanization": "società", + "example_sentence_native": "Viviamo in una società complessa.", + "example_sentence_english": "We live in a complex society.", + "pos": "noun", + "word_frequency": 221 + }, + { + "word": "uomo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "man", + "romanization": "uomo", + "example_sentence_native": "L'uomo camminava per strada.", + "example_sentence_english": "The man was walking down the street.", + "pos": "noun", + "word_frequency": 222 + }, + { + "word": "famiglia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "family", + "romanization": "famiglia", + "example_sentence_native": "La mia famiglia è molto importante per me.", + "example_sentence_english": "My family is very important to me.", + "pos": "noun", + "word_frequency": 223 + }, + { + "word": "nulla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nothing", + "romanization": "nulla", + "example_sentence_native": "Non c'è nulla da fare.", + "example_sentence_english": "There is nothing to do.", + "pos": "noun", + "word_frequency": 224 + }, + { + "word": "paese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "country;village", + "romanization": "paese", + "example_sentence_native": "Vivo in un piccolo paese.", + "example_sentence_english": "I live in a small village.", + "pos": "noun", + "word_frequency": 225 + }, + { + "word": "problema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "problem", + "romanization": "problema", + "example_sentence_native": "Non c'è nessun problema.", + "example_sentence_english": "There is no problem.", + "pos": "noun", + "word_frequency": 226 + }, + { + "word": "circa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about;approximately", + "romanization": "circa", + "example_sentence_native": "Ci sono circa venti persone.", + "example_sentence_english": "There are about twenty people.", + "pos": "adverb", + "word_frequency": 227 + }, + { + "word": "credere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to believe;to think", + "romanization": "credere", + "example_sentence_native": "Non riesco a credere ai miei occhi.", + "example_sentence_english": "I can't believe my eyes.", + "pos": "verb", + "word_frequency": 228 + }, + { + "word": "governo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "government", + "romanization": "governo", + "example_sentence_native": "Il governo ha annunciato nuove misure.", + "example_sentence_english": "The government announced new measures.", + "pos": "noun", + "word_frequency": 229 + }, + { + "word": "esempio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "example", + "romanization": "esempio", + "example_sentence_native": "Per esempio, possiamo andare al mare.", + "example_sentence_english": "For example, we can go to the beach.", + "pos": "noun", + "word_frequency": 232 + }, + { + "word": "donna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "woman", + "romanization": "donna", + "example_sentence_native": "La donna leggeva un libro.", + "example_sentence_english": "The woman was reading a book.", + "pos": "noun", + "word_frequency": 233 + }, + { + "word": "italiano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Italian", + "romanization": "italiano", + "example_sentence_native": "Parlo un po' di italiano.", + "example_sentence_english": "I speak a little Italian.", + "pos": "adjective", + "word_frequency": 234 + }, + { + "word": "possibile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "possible", + "romanization": "possibile", + "example_sentence_native": "È possibile che piova domani.", + "example_sentence_english": "It's possible that it will rain tomorrow.", + "pos": "adjective", + "word_frequency": 236 + }, + { + "word": "rispetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respect", + "romanization": "rispetto", + "example_sentence_native": "Mostra rispetto per gli anziani.", + "example_sentence_english": "Show respect for the elderly.", + "pos": "noun", + "word_frequency": 237 + }, + { + "word": "sistema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "system", + "romanization": "sistema", + "example_sentence_native": "Il sistema funziona bene.", + "example_sentence_english": "The system works well.", + "pos": "noun", + "word_frequency": 238 + }, + { + "word": "adesso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "now", + "romanization": "adesso", + "example_sentence_native": "Devo andare adesso.", + "example_sentence_english": "I have to go now.", + "pos": "adverb", + "word_frequency": 239 + }, + { + "word": "bisogno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "need", + "romanization": "bisogno", + "example_sentence_native": "Ho bisogno di aiuto.", + "example_sentence_english": "I need help.", + "pos": "noun", + "word_frequency": 240 + }, + { + "word": "serie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "series", + "romanization": "serie", + "example_sentence_native": "Guarda una nuova serie TV.", + "example_sentence_english": "He watches a new TV series.", + "pos": "noun", + "word_frequency": 241 + }, + { + "word": "almeno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at least", + "romanization": "almeno", + "example_sentence_native": "Dovresti provare almeno una volta.", + "example_sentence_english": "You should try at least once.", + "pos": "adverb", + "word_frequency": 243 + }, + { + "word": "nazionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "national", + "romanization": "nazionale", + "example_sentence_native": "La squadra nazionale ha vinto.", + "example_sentence_english": "The national team won.", + "pos": "adjective", + "word_frequency": 244 + }, + { + "word": "generale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "general", + "romanization": "generale", + "example_sentence_native": "Questa è una regola generale.", + "example_sentence_english": "This is a general rule.", + "pos": "adjective", + "word_frequency": 246 + }, + { + "word": "guerra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "war", + "romanization": "guerra", + "example_sentence_native": "La guerra è finita.", + "example_sentence_english": "The war is over.", + "pos": "noun", + "word_frequency": 247 + }, + { + "word": "infatti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in fact;indeed", + "romanization": "infatti", + "example_sentence_native": "Infatti, è proprio così.", + "example_sentence_english": "In fact, it's exactly like that.", + "pos": "adverb", + "word_frequency": 248 + }, + { + "word": "morte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death", + "romanization": "morte", + "example_sentence_native": "La morte è inevitabile.", + "example_sentence_english": "Death is inevitable.", + "pos": "noun", + "word_frequency": 249 + }, + { + "word": "sito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "site;website", + "romanization": "sito", + "example_sentence_native": "Visita il nostro sito web.", + "example_sentence_english": "Visit our website.", + "pos": "noun", + "word_frequency": 250 + }, + { + "word": "base", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "base", + "romanization": "base", + "example_sentence_native": "Questa è la base del problema.", + "example_sentence_english": "This is the base of the problem.", + "pos": "noun", + "word_frequency": 251 + }, + { + "word": "film", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "film;movie", + "romanization": "film", + "example_sentence_native": "Andiamo a vedere un film.", + "example_sentence_english": "Let's go see a movie.", + "pos": "noun", + "word_frequency": 252 + }, + { + "word": "politica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politics;policy", + "romanization": "politica", + "example_sentence_native": "La politica è complessa.", + "example_sentence_english": "Politics is complex.", + "pos": "noun", + "word_frequency": 253 + }, + { + "word": "pure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "also;even", + "romanization": "pure", + "example_sentence_native": "Vieni pure con noi.", + "example_sentence_english": "You can also come with us.", + "pos": "adverb", + "word_frequency": 254 + }, + { + "word": "spesso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "often", + "romanization": "spesso", + "example_sentence_native": "Vado spesso al cinema.", + "example_sentence_english": "I often go to the cinema.", + "pos": "adverb", + "word_frequency": 255 + }, + { + "word": "comune", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "common;municipal", + "romanization": "comune", + "example_sentence_native": "È un problema comune.", + "example_sentence_english": "It's a common problem.", + "pos": "adjective", + "word_frequency": 256 + }, + { + "word": "subito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "immediately", + "romanization": "subito", + "example_sentence_native": "Vieni qui subito!", + "example_sentence_english": "Come here immediately!", + "pos": "adverb", + "word_frequency": 257 + }, + { + "word": "centro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "center", + "romanization": "centro", + "example_sentence_native": "Abito in centro città.", + "example_sentence_english": "I live in the city center.", + "pos": "noun", + "word_frequency": 258 + }, + { + "word": "dio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "God", + "romanization": "dio", + "example_sentence_native": "Credo in Dio.", + "example_sentence_english": "I believe in God.", + "pos": "noun", + "word_frequency": 259 + }, + { + "word": "inoltre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furthermore;moreover", + "romanization": "inoltre", + "example_sentence_native": "Inoltre, è importante considerare questo.", + "example_sentence_english": "Furthermore, it's important to consider this.", + "pos": "adverb", + "word_frequency": 261 + }, + { + "word": "parlare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to speak;to talk", + "romanization": "parlare", + "example_sentence_native": "Voglio imparare a parlare italiano.", + "example_sentence_english": "I want to learn to speak Italian.", + "pos": "verb", + "word_frequency": 262 + }, + { + "word": "scuola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "school", + "romanization": "scuola", + "example_sentence_native": "Vado a scuola ogni giorno.", + "example_sentence_english": "I go to school every day.", + "pos": "noun", + "word_frequency": 263 + }, + { + "word": "appena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "just;as soon as", + "romanization": "appena", + "example_sentence_native": "Sono appena arrivato.", + "example_sentence_english": "I just arrived.", + "pos": "adverb", + "word_frequency": 264 + }, + { + "word": "buono", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "good", + "romanization": "buono", + "example_sentence_native": "Questo cibo è molto buono.", + "example_sentence_english": "This food is very good.", + "pos": "adjective", + "word_frequency": 265 + }, + { + "word": "idea", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "idea", + "romanization": "idea", + "example_sentence_native": "Ho una buona idea.", + "example_sentence_english": "I have a good idea.", + "pos": "noun", + "word_frequency": 267 + }, + { + "word": "mano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hand", + "romanization": "mano", + "example_sentence_native": "Dammi la mano.", + "example_sentence_english": "Give me your hand.", + "pos": "noun", + "word_frequency": 268 + }, + { + "word": "amico", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "friend", + "romanization": "amico", + "example_sentence_native": "Lui è il mio migliore amico.", + "example_sentence_english": "He is my best friend.", + "pos": "noun", + "word_frequency": 269 + }, + { + "word": "causa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cause", + "romanization": "causa", + "example_sentence_native": "Qual è la causa del problema?", + "example_sentence_english": "What is the cause of the problem?", + "pos": "noun", + "word_frequency": 270 + }, + { + "word": "corso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "course", + "romanization": "corso", + "example_sentence_native": "Sto seguendo un corso di italiano.", + "example_sentence_english": "I am taking an Italian course.", + "pos": "noun", + "word_frequency": 271 + }, + { + "word": "forza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strength;force", + "romanization": "forza", + "example_sentence_native": "Ha molta forza fisica.", + "example_sentence_english": "He has a lot of physical strength.", + "pos": "noun", + "word_frequency": 272 + }, + { + "word": "importante", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "important", + "romanization": "importante", + "example_sentence_native": "È una decisione importante.", + "example_sentence_english": "It's an important decision.", + "pos": "adjective", + "word_frequency": 273 + }, + { + "word": "mese", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "month", + "romanization": "mese", + "example_sentence_native": "Ci vediamo il prossimo mese.", + "example_sentence_english": "See you next month.", + "pos": "noun", + "word_frequency": 274 + }, + { + "word": "presidente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "president", + "romanization": "presidente", + "example_sentence_native": "Il presidente ha parlato alla nazione.", + "example_sentence_english": "The president spoke to the nation.", + "pos": "noun", + "word_frequency": 275 + }, + { + "word": "seguire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to follow", + "romanization": "seguire", + "example_sentence_native": "Ti prego di seguire le istruzioni.", + "example_sentence_english": "Please follow the instructions.", + "pos": "verb", + "word_frequency": 276 + }, + { + "word": "senso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sense;meaning", + "romanization": "senso", + "example_sentence_native": "Non ha alcun senso.", + "example_sentence_english": "It makes no sense.", + "pos": "noun", + "word_frequency": 277 + }, + { + "word": "successo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "success", + "romanization": "successo", + "example_sentence_native": "Gli auguro molto successo.", + "example_sentence_english": "I wish him much success.", + "pos": "noun", + "word_frequency": 278 + }, + { + "word": "bastare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be enough", + "romanization": "bastare", + "example_sentence_native": "Questo cibo dovrebbe bastare per tutti.", + "example_sentence_english": "This food should be enough for everyone.", + "pos": "verb", + "word_frequency": 279 + }, + { + "word": "diritto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "right;law", + "romanization": "diritto", + "example_sentence_native": "Tutti hanno il diritto di esprimere la propria opinione.", + "example_sentence_english": "Everyone has the right to express their opinion.", + "pos": "noun", + "word_frequency": 280 + }, + { + "word": "parola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "word", + "romanization": "parola", + "example_sentence_native": "Questa è una parola nuova per me.", + "example_sentence_english": "This is a new word for me.", + "pos": "noun", + "word_frequency": 281 + }, + { + "word": "scrivere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to write", + "romanization": "scrivere", + "example_sentence_native": "Mi piace scrivere lettere.", + "example_sentence_english": "I like to write letters.", + "pos": "verb", + "word_frequency": 283 + }, + { + "word": "soprattutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially;above all", + "romanization": "soprattutto", + "example_sentence_native": "Mi piace l'Italia, soprattutto il cibo.", + "example_sentence_english": "I like Italy, especially the food.", + "pos": "adverb", + "word_frequency": 284 + }, + { + "word": "terra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "earth;land;ground", + "romanization": "terra", + "example_sentence_native": "La Terra gira intorno al sole.", + "example_sentence_english": "The Earth revolves around the sun.", + "pos": "noun", + "word_frequency": 285 + }, + { + "word": "padre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "father", + "romanization": "padre", + "example_sentence_native": "Mio padre è un medico.", + "example_sentence_english": "My father is a doctor.", + "pos": "noun", + "word_frequency": 286 + }, + { + "word": "pensare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to think", + "romanization": "pensare", + "example_sentence_native": "Cosa ne pensi?", + "example_sentence_english": "What do you think about it?", + "pos": "verb", + "word_frequency": 287 + }, + { + "word": "piacere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to like;to please", + "romanization": "piacere", + "example_sentence_native": "Mi piace molto la musica.", + "example_sentence_english": "I really like music.", + "pos": "verb", + "word_frequency": 288 + }, + { + "word": "piano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor;plan;level", + "romanization": "piano", + "example_sentence_native": "Viviamo al terzo piano.", + "example_sentence_english": "We live on the third floor.", + "pos": "noun", + "word_frequency": 289 + }, + { + "word": "porta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "door", + "romanization": "porta", + "example_sentence_native": "Chiudi la porta, per favore.", + "example_sentence_english": "Close the door, please.", + "pos": "noun", + "word_frequency": 290 + }, + { + "word": "settimana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "week", + "romanization": "settimana", + "example_sentence_native": "Ci vediamo la prossima settimana.", + "example_sentence_english": "See you next week.", + "pos": "noun", + "word_frequency": 291 + }, + { + "word": "state", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "you are (plural);you stay", + "romanization": "state", + "example_sentence_native": "Come state oggi?", + "example_sentence_english": "How are you today?", + "pos": "verb", + "word_frequency": 292 + }, + { + "word": "trovare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to find", + "romanization": "trovare", + "example_sentence_native": "Non riesco a trovare le mie chiavi.", + "example_sentence_english": "I can't find my keys.", + "pos": "verb", + "word_frequency": 293 + }, + { + "word": "venire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to come", + "romanization": "venire", + "example_sentence_native": "Vuoi venire con noi?", + "example_sentence_english": "Do you want to come with us?", + "pos": "verb", + "word_frequency": 294 + }, + { + "word": "vista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "view;sight", + "romanization": "vista", + "example_sentence_native": "La vista da qui è mozzafiato.", + "example_sentence_english": "The view from here is breathtaking.", + "pos": "noun", + "word_frequency": 295 + }, + { + "word": "genere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kind;type;genre", + "romanization": "genere", + "example_sentence_native": "Che genere di musica ti piace?", + "example_sentence_english": "What kind of music do you like?", + "pos": "noun", + "word_frequency": 296 + }, + { + "word": "leggere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to read", + "romanization": "leggere", + "example_sentence_native": "Mi piace leggere libri.", + "example_sentence_english": "I like to read books.", + "pos": "verb", + "word_frequency": 297 + }, + { + "word": "migliore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "better;best", + "romanization": "migliore", + "example_sentence_native": "Questo è il miglior caffè che abbia mai bevuto.", + "example_sentence_english": "This is the best coffee I've ever drunk.", + "pos": "adjective", + "word_frequency": 298 + }, + { + "word": "pubblico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "public", + "romanization": "pubblico", + "example_sentence_native": "È un luogo pubblico.", + "example_sentence_english": "It's a public place.", + "pos": "adjective", + "word_frequency": 299 + }, + { + "word": "realtà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reality", + "romanization": "realtà", + "example_sentence_native": "La realtà è spesso diversa dalle aspettative.", + "example_sentence_english": "Reality is often different from expectations.", + "pos": "noun", + "word_frequency": 300 + }, + { + "word": "strada", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "street;road", + "romanization": "strada", + "example_sentence_native": "La nostra casa è in fondo alla strada.", + "example_sentence_english": "Our house is at the end of the street.", + "pos": "noun", + "word_frequency": 301 + }, + { + "word": "livello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "level", + "romanization": "livello", + "example_sentence_native": "Il suo livello di italiano è molto buono.", + "example_sentence_english": "His Italian level is very good.", + "pos": "noun", + "word_frequency": 302 + }, + { + "word": "lungo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "long", + "romanization": "lungo", + "example_sentence_native": "Il fiume è molto lungo.", + "example_sentence_english": "The river is very long.", + "pos": "adjective", + "word_frequency": 303 + }, + { + "word": "mezzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "half;means;middle", + "romanization": "mezzo", + "example_sentence_native": "Ci vediamo a mezzogiorno.", + "example_sentence_english": "We'll see each other at noon.", + "pos": "noun", + "word_frequency": 304 + }, + { + "word": "ragazzo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boy;guy", + "romanization": "ragazzo", + "example_sentence_native": "Il ragazzo sta giocando nel parco.", + "example_sentence_english": "The boy is playing in the park.", + "pos": "noun", + "word_frequency": 305 + }, + { + "word": "tale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "such;such a;certain", + "romanization": "tale", + "example_sentence_native": "Non ho mai visto tale bellezza.", + "example_sentence_english": "I have never seen such beauty.", + "pos": "adjective", + "word_frequency": 306 + }, + { + "word": "bello", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beautiful;nice;handsome", + "romanization": "bello", + "example_sentence_native": "Che bella giornata!", + "example_sentence_english": "What a beautiful day!", + "pos": "adjective", + "word_frequency": 307 + }, + { + "word": "diverso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "different", + "romanization": "diverso", + "example_sentence_native": "Abbiamo opinioni diverse.", + "example_sentence_english": "We have different opinions.", + "pos": "adjective", + "word_frequency": 308 + }, + { + "word": "particolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "particular;specific;special", + "romanization": "particolare", + "example_sentence_native": "Non c'è nessun motivo particolare.", + "example_sentence_english": "There's no particular reason.", + "pos": "adjective", + "word_frequency": 309 + }, + { + "word": "pubblicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to publish", + "romanization": "pubblicare", + "example_sentence_native": "Ha deciso di pubblicare il suo libro.", + "example_sentence_english": "He decided to publish his book.", + "pos": "verb", + "word_frequency": 310 + }, + { + "word": "ragione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reason;right", + "romanization": "ragione", + "example_sentence_native": "Hai ragione, è vero.", + "example_sentence_english": "You are right, it's true.", + "pos": "noun", + "word_frequency": 311 + }, + { + "word": "settembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "September", + "romanization": "settembre", + "example_sentence_native": "Il mio compleanno è a settembre.", + "example_sentence_english": "My birthday is in September.", + "pos": "noun", + "word_frequency": 312 + }, + { + "word": "marzo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "March", + "romanization": "marzo", + "example_sentence_native": "Andiamo in vacanza a marzo.", + "example_sentence_english": "We're going on vacation in March.", + "pos": "noun", + "word_frequency": 313 + }, + { + "word": "notte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "night", + "romanization": "notte", + "example_sentence_native": "Buonanotte a tutti!", + "example_sentence_english": "Good night, everyone!", + "pos": "noun", + "word_frequency": 314 + }, + { + "word": "quattro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "four", + "romanization": "quattro", + "example_sentence_native": "Ho quattro libri.", + "example_sentence_english": "I have four books.", + "pos": "adjective", + "word_frequency": 316 + }, + { + "word": "situazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situation", + "romanization": "situazione", + "example_sentence_native": "La situazione è complicata.", + "example_sentence_english": "The situation is complicated.", + "pos": "noun", + "word_frequency": 318 + }, + { + "word": "attività", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "activity", + "romanization": "attività", + "example_sentence_native": "Ci sono molte attività da fare qui.", + "example_sentence_english": "There are many activities to do here.", + "pos": "noun", + "word_frequency": 319 + }, + { + "word": "bambino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "child;boy", + "romanization": "bambino", + "example_sentence_native": "Il bambino gioca nel parco.", + "example_sentence_english": "The child plays in the park.", + "pos": "noun", + "word_frequency": 321 + }, + { + "word": "consiglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "advice;council", + "romanization": "consiglio", + "example_sentence_native": "Ho bisogno di un buon consiglio.", + "example_sentence_english": "I need some good advice.", + "pos": "noun", + "word_frequency": 322 + }, + { + "word": "forma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shape;form", + "romanization": "forma", + "example_sentence_native": "La torta ha una forma rotonda.", + "example_sentence_english": "The cake has a round shape.", + "pos": "noun", + "word_frequency": 323 + }, + { + "word": "libro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "book", + "romanization": "libro", + "example_sentence_native": "Sto leggendo un libro interessante.", + "example_sentence_english": "I am reading an interesting book.", + "pos": "noun", + "word_frequency": 324 + }, + { + "word": "qualsiasi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "any;whatever", + "romanization": "qualsiasi", + "example_sentence_native": "Puoi scegliere qualsiasi colore.", + "example_sentence_english": "You can choose any color.", + "pos": "adjective", + "word_frequency": 325 + }, + { + "word": "soldo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coin;money (informal)", + "romanization": "soldo", + "example_sentence_native": "Non ho un soldo in tasca.", + "example_sentence_english": "I don't have a penny in my pocket.", + "pos": "noun", + "word_frequency": 326 + }, + { + "word": "campo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "field;camp", + "romanization": "campo", + "example_sentence_native": "I bambini giocano nel campo.", + "example_sentence_english": "The children are playing in the field.", + "pos": "noun", + "word_frequency": 327 + }, + { + "word": "faccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "face", + "romanization": "faccia", + "example_sentence_native": "Ha una faccia molto espressiva.", + "example_sentence_english": "He has a very expressive face.", + "pos": "noun", + "word_frequency": 329 + }, + { + "word": "figlio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "son;child", + "romanization": "figlio", + "example_sentence_native": "Mio figlio ha cinque anni.", + "example_sentence_english": "My son is five years old.", + "pos": "noun", + "word_frequency": 330 + }, + { + "word": "prendere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to take;to get", + "romanization": "prendere", + "example_sentence_native": "Voglio prendere un caffè.", + "example_sentence_english": "I want to get a coffee.", + "pos": "verb", + "word_frequency": 332 + }, + { + "word": "progetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project;plan", + "romanization": "progetto", + "example_sentence_native": "Stiamo lavorando a un nuovo progetto.", + "example_sentence_english": "We are working on a new project.", + "pos": "noun", + "word_frequency": 333 + }, + { + "word": "servizio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "service", + "romanization": "servizio", + "example_sentence_native": "Il servizio in questo ristorante è eccellente.", + "example_sentence_english": "The service in this restaurant is excellent.", + "pos": "noun", + "word_frequency": 334 + }, + { + "word": "testa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "head", + "romanization": "testa", + "example_sentence_native": "Mi fa male la testa.", + "example_sentence_english": "My head hurts.", + "pos": "noun", + "word_frequency": 335 + }, + { + "word": "accordo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agreement;accord", + "romanization": "accordo", + "example_sentence_native": "Abbiamo raggiunto un accordo.", + "example_sentence_english": "We reached an agreement.", + "pos": "noun", + "word_frequency": 336 + }, + { + "word": "amore", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "love", + "romanization": "amore", + "example_sentence_native": "L'amore è un sentimento forte.", + "example_sentence_english": "Love is a strong feeling.", + "pos": "noun", + "word_frequency": 337 + }, + { + "word": "capo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "head;chief;boss", + "romanization": "capo", + "example_sentence_native": "Il capo ha approvato la nostra proposta.", + "example_sentence_english": "The boss approved our proposal.", + "pos": "noun", + "word_frequency": 338 + }, + { + "word": "conto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "account;bill;count", + "romanization": "conto", + "example_sentence_native": "Chiediamo il conto, per favore.", + "example_sentence_english": "We'll ask for the bill, please.", + "pos": "noun", + "word_frequency": 339 + }, + { + "word": "giusto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "right;correct;just", + "romanization": "giusto", + "example_sentence_native": "Hai fatto la scelta giusta.", + "example_sentence_english": "You made the right choice.", + "pos": "adjective", + "word_frequency": 340 + }, + { + "word": "madre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mother", + "romanization": "madre", + "example_sentence_native": "Mia madre è una persona meravigliosa.", + "example_sentence_english": "My mother is a wonderful person.", + "pos": "noun", + "word_frequency": 341 + }, + { + "word": "periodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "period;time", + "romanization": "periodo", + "example_sentence_native": "È stato un periodo difficile.", + "example_sentence_english": "It was a difficult period.", + "pos": "noun", + "word_frequency": 342 + }, + { + "word": "studio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "study;office", + "romanization": "studio", + "example_sentence_native": "Il suo studio è pieno di libri.", + "example_sentence_english": "His study is full of books.", + "pos": "noun", + "word_frequency": 343 + }, + { + "word": "trattare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to treat;to deal with", + "romanization": "trattare", + "example_sentence_native": "Dobbiamo trattare questo problema con attenzione.", + "example_sentence_english": "We must treat this problem with care.", + "pos": "verb", + "word_frequency": 344 + }, + { + "word": "unico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unique;only", + "romanization": "unico", + "example_sentence_native": "Sei l'unica persona che capisce.", + "example_sentence_english": "You are the only person who understands.", + "pos": "adjective", + "word_frequency": 345 + }, + { + "word": "dato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "data;fact", + "romanization": "dato", + "example_sentence_native": "Abbiamo bisogno di più dati per l'analisi.", + "example_sentence_english": "We need more data for the analysis.", + "pos": "noun", + "word_frequency": 347 + }, + { + "word": "gioco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "game;play", + "romanization": "gioco", + "example_sentence_native": "I bambini amano il gioco.", + "example_sentence_english": "Children love to play.", + "pos": "noun", + "word_frequency": 348 + }, + { + "word": "grado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "degree;grade;extent", + "romanization": "grado", + "example_sentence_native": "La temperatura è di venti gradi.", + "example_sentence_english": "The temperature is twenty degrees.", + "pos": "noun", + "word_frequency": 349 + }, + { + "word": "voce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "voice;entry (in a list)", + "romanization": "voce", + "example_sentence_native": "Ha una voce molto bella.", + "example_sentence_english": "She has a very beautiful voice.", + "pos": "noun", + "word_frequency": 350 + }, + { + "word": "forte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strong;loud", + "romanization": "forte", + "example_sentence_native": "È un uomo molto forte.", + "example_sentence_english": "He is a very strong man.", + "pos": "adjective", + "word_frequency": 352 + }, + { + "word": "giro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turn;round;walk", + "romanization": "giro", + "example_sentence_native": "Facciamo un giro in centro.", + "example_sentence_english": "Let's take a walk downtown.", + "pos": "noun", + "word_frequency": 353 + }, + { + "word": "maggio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "May", + "romanization": "maggio", + "example_sentence_native": "Il mio compleanno è a maggio.", + "example_sentence_english": "My birthday is in May.", + "pos": "noun", + "word_frequency": 354 + }, + { + "word": "ricerca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "research;search", + "romanization": "ricerca", + "example_sentence_native": "La ricerca scientifica è fondamentale.", + "example_sentence_english": "Scientific research is fundamental.", + "pos": "noun", + "word_frequency": 356 + }, + { + "word": "uso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "use;usage", + "romanization": "uso", + "example_sentence_native": "L'uso corretto di questo strumento è importante.", + "example_sentence_english": "The correct use of this tool is important.", + "pos": "noun", + "word_frequency": 357 + }, + { + "word": "capire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to understand", + "romanization": "capire", + "example_sentence_native": "Non riesco a capire cosa dici.", + "example_sentence_english": "I can't understand what you're saying.", + "pos": "verb", + "word_frequency": 358 + }, + { + "word": "corpo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "body", + "romanization": "corpo", + "example_sentence_native": "Il corpo umano è complesso.", + "example_sentence_english": "The human body is complex.", + "pos": "noun", + "word_frequency": 359 + }, + { + "word": "luogo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "place", + "romanization": "luogo", + "example_sentence_native": "Questo è un bel luogo per fare un picnic.", + "example_sentence_english": "This is a nice place for a picnic.", + "pos": "noun", + "word_frequency": 360 + }, + { + "word": "nemmeno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not even;neither", + "romanization": "nemmeno", + "example_sentence_native": "Non ho nemmeno un euro.", + "example_sentence_english": "I don't even have one euro.", + "pos": "adverb", + "word_frequency": 361 + }, + { + "word": "ormai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by now;already", + "romanization": "ormai", + "example_sentence_native": "Ormai è troppo tardi per cambiare idea.", + "example_sentence_english": "By now it's too late to change your mind.", + "pos": "adverb", + "word_frequency": 362 + }, + { + "word": "partito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "party (political)", + "romanization": "partito", + "example_sentence_native": "Ha fondato un nuovo partito politico.", + "example_sentence_english": "He founded a new political party.", + "pos": "noun", + "word_frequency": 363 + }, + { + "word": "passare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pass;to spend (time)", + "romanization": "passare", + "example_sentence_native": "Voglio passare più tempo con la mia famiglia.", + "example_sentence_english": "I want to spend more time with my family.", + "pos": "verb", + "word_frequency": 364 + }, + { + "word": "ragazza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girl", + "romanization": "ragazza", + "example_sentence_native": "La ragazza sta leggendo un libro.", + "example_sentence_english": "The girl is reading a book.", + "pos": "noun", + "word_frequency": 365 + }, + { + "word": "tv", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "TV;television", + "romanization": "tv", + "example_sentence_native": "Stasera guardiamo la tv.", + "example_sentence_english": "Tonight we watch TV.", + "pos": "noun", + "word_frequency": 366 + }, + { + "word": "avanti", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forward;come in", + "romanization": "avanti", + "example_sentence_native": "Andiamo avanti!", + "example_sentence_english": "Let's go forward!", + "pos": "adverb", + "word_frequency": 367 + }, + { + "word": "euro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "euro", + "romanization": "euro", + "example_sentence_native": "Costa dieci euro.", + "example_sentence_english": "It costs ten euros.", + "pos": "noun", + "word_frequency": 368 + }, + { + "word": "favore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "favor", + "romanization": "favore", + "example_sentence_native": "Mi faresti un favore?", + "example_sentence_english": "Would you do me a favor?", + "pos": "noun", + "word_frequency": 369 + }, + { + "word": "milione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "million", + "romanization": "milione", + "example_sentence_native": "La città ha un milione di abitanti.", + "example_sentence_english": "The city has a million inhabitants.", + "pos": "noun", + "word_frequency": 370 + }, + { + "word": "minuto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "minute", + "romanization": "minuto", + "example_sentence_native": "Aspetta un minuto, per favore.", + "example_sentence_english": "Wait a minute, please.", + "pos": "noun", + "word_frequency": 371 + }, + { + "word": "sicurezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safety;security", + "romanization": "sicurezza", + "example_sentence_native": "La sicurezza è la nostra priorità.", + "example_sentence_english": "Safety is our priority.", + "pos": "noun", + "word_frequency": 372 + }, + { + "word": "tuttavia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "however;nevertheless", + "romanization": "tuttavia", + "example_sentence_native": "Ha studiato molto; tuttavia, non ha superato l'esame.", + "example_sentence_english": "He studied a lot; however, he didn't pass the exam.", + "pos": "adverb", + "word_frequency": 373 + }, + { + "word": "acqua", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "water", + "romanization": "acqua", + "example_sentence_native": "Vorrei un bicchiere d'acqua.", + "example_sentence_english": "I would like a glass of water.", + "pos": "noun", + "word_frequency": 374 + }, + { + "word": "aprile", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "April", + "romanization": "aprile", + "example_sentence_native": "Il mio compleanno è ad aprile.", + "example_sentence_english": "My birthday is in April.", + "pos": "noun", + "word_frequency": 375 + }, + { + "word": "cuore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heart", + "romanization": "cuore", + "example_sentence_native": "Ha un cuore d'oro.", + "example_sentence_english": "He has a heart of gold.", + "pos": "noun", + "word_frequency": 376 + }, + { + "word": "difficile", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "difficult", + "romanization": "difficile", + "example_sentence_native": "Questo esercizio è molto difficile.", + "example_sentence_english": "This exercise is very difficult.", + "pos": "adjective", + "word_frequency": 377 + }, + { + "word": "domanda", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "question;demand", + "romanization": "domanda", + "example_sentence_native": "Ho una domanda per te.", + "example_sentence_english": "I have a question for you.", + "pos": "noun", + "word_frequency": 378 + }, + { + "word": "giugno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "June", + "romanization": "giugno", + "example_sentence_native": "Andiamo in vacanza a giugno.", + "example_sentence_english": "We go on vacation in June.", + "pos": "noun", + "word_frequency": 379 + }, + { + "word": "occhio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eye", + "romanization": "occhio", + "example_sentence_native": "Ha gli occhi azzurri.", + "example_sentence_english": "He has blue eyes.", + "pos": "noun", + "word_frequency": 380 + }, + { + "word": "presente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "present", + "romanization": "presente", + "example_sentence_native": "Tutti gli studenti erano presenti.", + "example_sentence_english": "All the students were present.", + "pos": "adjective", + "word_frequency": 381 + }, + { + "word": "articolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "article", + "romanization": "articolo", + "example_sentence_native": "Ho letto un interessante articolo sul giornale.", + "example_sentence_english": "I read an interesting article in the newspaper.", + "pos": "noun", + "word_frequency": 382 + }, + { + "word": "chiesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "church", + "romanization": "chiesa", + "example_sentence_native": "La chiesa è molto antica.", + "example_sentence_english": "The church is very old.", + "pos": "noun", + "word_frequency": 384 + }, + { + "word": "ex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ex-;former", + "romanization": "ex", + "example_sentence_native": "È il mio ex marito.", + "example_sentence_english": "He is my ex-husband.", + "pos": "adjective", + "word_frequency": 386 + }, + { + "word": "informazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "information", + "romanization": "informazione", + "example_sentence_native": "Ho bisogno di più informazioni.", + "example_sentence_english": "I need more information.", + "pos": "noun", + "word_frequency": 387 + }, + { + "word": "lì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there", + "romanization": "lì", + "example_sentence_native": "Il libro è lì sul tavolo.", + "example_sentence_english": "The book is there on the table.", + "pos": "adverb", + "word_frequency": 388 + }, + { + "word": "maggiore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "major;greater;older", + "romanization": "maggiore", + "example_sentence_native": "È un problema di maggiore importanza.", + "example_sentence_english": "It's a problem of greater importance.", + "pos": "adjective", + "word_frequency": 389 + }, + { + "word": "media", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "media;average", + "romanization": "media", + "example_sentence_native": "I media hanno riportato la notizia.", + "example_sentence_english": "The media reported the news.", + "pos": "noun", + "word_frequency": 390 + }, + { + "word": "ottobre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "October", + "romanization": "ottobre", + "example_sentence_native": "Il mio compleanno è a ottobre.", + "example_sentence_english": "My birthday is in October.", + "pos": "noun", + "word_frequency": 392 + }, + { + "word": "prova", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "proof;test;rehearsal", + "romanization": "prova", + "example_sentence_native": "Dobbiamo fare una prova prima dello spettacolo.", + "example_sentence_english": "We need to do a rehearsal before the show.", + "pos": "noun", + "word_frequency": 393 + }, + { + "word": "sera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "evening", + "romanization": "sera", + "example_sentence_native": "Buona sera a tutti!", + "example_sentence_english": "Good evening everyone!", + "pos": "noun", + "word_frequency": 394 + }, + { + "word": "sud", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "south", + "romanization": "sud", + "example_sentence_native": "Andiamo verso sud.", + "example_sentence_english": "We are going south.", + "pos": "noun", + "word_frequency": 395 + }, + { + "word": "titolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "title;degree", + "romanization": "titolo", + "example_sentence_native": "Qual è il titolo del libro?", + "example_sentence_english": "What is the title of the book?", + "pos": "noun", + "word_frequency": 396 + }, + { + "word": "cinque", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "five", + "romanization": "cinque", + "example_sentence_native": "Ho cinque mele.", + "example_sentence_english": "I have five apples.", + "pos": "adjective", + "word_frequency": 397 + }, + { + "word": "luglio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "July", + "romanization": "luglio", + "example_sentence_native": "Le vacanze estive iniziano a luglio.", + "example_sentence_english": "Summer holidays start in July.", + "pos": "noun", + "word_frequency": 399 + }, + { + "word": "musica", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "music", + "romanization": "musica", + "example_sentence_native": "Mi piace ascoltare la musica.", + "example_sentence_english": "I like listening to music.", + "pos": "noun", + "word_frequency": 400 + }, + { + "word": "paura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fear", + "romanization": "paura", + "example_sentence_native": "Ho paura del buio.", + "example_sentence_english": "I am afraid of the dark.", + "pos": "noun", + "word_frequency": 401 + }, + { + "word": "regione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "region", + "romanization": "regione", + "example_sentence_native": "La Toscana è una bellissima regione italiana.", + "example_sentence_english": "Tuscany is a beautiful Italian region.", + "pos": "noun", + "word_frequency": 402 + }, + { + "word": "sociale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social", + "romanization": "sociale", + "example_sentence_native": "È un problema sociale complesso.", + "example_sentence_english": "It's a complex social problem.", + "pos": "adjective", + "word_frequency": 403 + }, + { + "word": "sopra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "above", + "romanization": "sopra", + "example_sentence_native": "Il libro è sopra il tavolo.", + "example_sentence_english": "The book is above the table.", + "pos": "adverb", + "word_frequency": 404 + }, + { + "word": "dietro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "behind", + "romanization": "dietro", + "example_sentence_native": "Il gatto è dietro la porta.", + "example_sentence_english": "The cat is behind the door.", + "pos": "adverb", + "word_frequency": 405 + }, + { + "word": "inglese", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "English", + "romanization": "inglese", + "example_sentence_native": "Parlo un po' di inglese.", + "example_sentence_english": "I speak a little English.", + "pos": "adjective", + "word_frequency": 407 + }, + { + "word": "mettere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to put", + "romanization": "mettere", + "example_sentence_native": "Puoi mettere il libro qui?", + "example_sentence_english": "Can you put the book here?", + "pos": "verb", + "word_frequency": 408 + }, + { + "word": "nord", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "north", + "romanization": "nord", + "example_sentence_native": "Andiamo verso nord.", + "example_sentence_english": "We are going north.", + "pos": "noun", + "word_frequency": 409 + }, + { + "word": "post", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "post", + "romanization": "post", + "example_sentence_native": "Ho letto il tuo ultimo post.", + "example_sentence_english": "I read your latest post.", + "pos": "noun", + "word_frequency": 410 + }, + { + "word": "questione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "question", + "romanization": "questione", + "example_sentence_native": "È una questione di tempo.", + "example_sentence_english": "It's a question of time.", + "pos": "noun", + "word_frequency": 411 + }, + { + "word": "re", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "king", + "romanization": "re", + "example_sentence_native": "Il re governava il regno.", + "example_sentence_english": "The king ruled the kingdom.", + "pos": "noun", + "word_frequency": 412 + }, + { + "word": "termine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "term", + "romanization": "termine", + "example_sentence_native": "Il termine per la consegna è domani.", + "example_sentence_english": "The deadline for delivery is tomorrow.", + "pos": "noun", + "word_frequency": 413 + }, + { + "word": "vicino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "near", + "romanization": "vicino", + "example_sentence_native": "La stazione è molto vicina.", + "example_sentence_english": "The station is very near.", + "pos": "adjective", + "word_frequency": 414 + }, + { + "word": "vivere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to live", + "romanization": "vivere", + "example_sentence_native": "Voglio vivere in Italia.", + "example_sentence_english": "I want to live in Italy.", + "pos": "verb", + "word_frequency": 415 + }, + { + "word": "abbastanza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "enough", + "romanization": "abbastanza", + "example_sentence_native": "Ho abbastanza tempo.", + "example_sentence_english": "I have enough time.", + "pos": "adverb", + "word_frequency": 416 + }, + { + "word": "data", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "date", + "romanization": "data", + "example_sentence_native": "Qual è la data di oggi?", + "example_sentence_english": "What is today's date?", + "pos": "noun", + "word_frequency": 417 + }, + { + "word": "giornata", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "day", + "romanization": "giornata", + "example_sentence_native": "Buona giornata!", + "example_sentence_english": "Have a good day!", + "pos": "noun", + "word_frequency": 419 + }, + { + "word": "lingua", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "language", + "romanization": "lingua", + "example_sentence_native": "L'italiano è una bella lingua.", + "example_sentence_english": "Italian is a beautiful language.", + "pos": "noun", + "word_frequency": 420 + }, + { + "word": "piccolo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "small", + "romanization": "piccolo", + "example_sentence_native": "Ho un cane piccolo.", + "example_sentence_english": "I have a small dog.", + "pos": "adjective", + "word_frequency": 421 + }, + { + "word": "posizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "position", + "romanization": "posizione", + "example_sentence_native": "Qual è la tua posizione sulla questione?", + "example_sentence_english": "What is your position on the matter?", + "pos": "noun", + "word_frequency": 422 + }, + { + "word": "possibilità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibility", + "romanization": "possibilità", + "example_sentence_native": "C'è una possibilità di pioggia.", + "example_sentence_english": "There is a possibility of rain.", + "pos": "noun", + "word_frequency": 423 + }, + { + "word": "programma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "program", + "romanization": "programma", + "example_sentence_native": "Qual è il programma per stasera?", + "example_sentence_english": "What is the program for tonight?", + "pos": "noun", + "word_frequency": 424 + }, + { + "word": "zona", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zone", + "romanization": "zona", + "example_sentence_native": "Questa è una zona tranquilla.", + "example_sentence_english": "This is a quiet zone.", + "pos": "noun", + "word_frequency": 426 + }, + { + "word": "controllo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "control", + "romanization": "controllo", + "example_sentence_native": "Ho il controllo della situazione.", + "example_sentence_english": "I have control of the situation.", + "pos": "noun", + "word_frequency": 427 + }, + { + "word": "cultura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culture", + "romanization": "cultura", + "example_sentence_native": "Mi interessa la cultura italiana.", + "example_sentence_english": "I am interested in Italian culture.", + "pos": "noun", + "word_frequency": 428 + }, + { + "word": "febbraio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "February", + "romanization": "febbraio", + "example_sentence_native": "Il mio compleanno è a febbraio.", + "example_sentence_english": "My birthday is in February.", + "pos": "noun", + "word_frequency": 429 + }, + { + "word": "futuro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "future", + "romanization": "futuro", + "example_sentence_native": "Penso al mio futuro.", + "example_sentence_english": "I think about my future.", + "pos": "noun", + "word_frequency": 430 + }, + { + "word": "ieri", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yesterday", + "romanization": "ieri", + "example_sentence_native": "L'ho visto ieri.", + "example_sentence_english": "I saw him yesterday.", + "pos": "adverb", + "word_frequency": 431 + }, + { + "word": "mercato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "market", + "romanization": "mercato", + "example_sentence_native": "Vado al mercato ogni sabato.", + "example_sentence_english": "I go to the market every Saturday.", + "pos": "noun", + "word_frequency": 432 + }, + { + "word": "neanche", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not even", + "romanization": "neanche", + "example_sentence_native": "Non ho neanche un euro.", + "example_sentence_english": "I don't even have one euro.", + "pos": "adverb", + "word_frequency": 433 + }, + { + "word": "polizia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "police", + "romanization": "polizia", + "example_sentence_native": "La polizia è arrivata.", + "example_sentence_english": "The police arrived.", + "pos": "noun", + "word_frequency": 434 + }, + { + "word": "veramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truly", + "romanization": "veramente", + "example_sentence_native": "È veramente bello.", + "example_sentence_english": "It's truly beautiful.", + "pos": "adverb", + "word_frequency": 435 + }, + { + "word": "alto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tall", + "romanization": "alto", + "example_sentence_native": "Quell'albero è molto alto.", + "example_sentence_english": "That tree is very tall.", + "pos": "adjective", + "word_frequency": 436 + }, + { + "word": "cura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "care", + "romanization": "cura", + "example_sentence_native": "Ha bisogno di cure mediche.", + "example_sentence_english": "He needs medical care.", + "pos": "noun", + "word_frequency": 437 + }, + { + "word": "davanti", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "in front of", + "romanization": "davanti", + "example_sentence_native": "Il negozio è davanti alla chiesa.", + "example_sentence_english": "The shop is in front of the church.", + "pos": "adverb", + "word_frequency": 438 + }, + { + "word": "dicembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "December", + "romanization": "dicembre", + "example_sentence_native": "Natale è a dicembre.", + "example_sentence_english": "Christmas is in December.", + "pos": "noun", + "word_frequency": 439 + }, + { + "word": "magari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maybe;if only", + "romanization": "magari", + "example_sentence_native": "Magari potessimo andare in vacanza!", + "example_sentence_english": "If only we could go on vacation!", + "pos": "adverb", + "word_frequency": 440 + }, + { + "word": "novembre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "November", + "romanization": "novembre", + "example_sentence_native": "Il mio compleanno è a novembre.", + "example_sentence_english": "My birthday is in November.", + "pos": "noun", + "word_frequency": 442 + }, + { + "word": "parere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to seem;to appear", + "romanization": "parere", + "example_sentence_native": "Mi pare che tu abbia ragione.", + "example_sentence_english": "It seems to me that you are right.", + "pos": "verb", + "word_frequency": 443 + }, + { + "word": "personale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "personal", + "romanization": "personale", + "example_sentence_native": "Questa è una questione personale.", + "example_sentence_english": "This is a personal matter.", + "pos": "adjective", + "word_frequency": 444 + }, + { + "word": "piuttosto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rather;quite", + "romanization": "piuttosto", + "example_sentence_native": "È piuttosto tardi.", + "example_sentence_english": "It's rather late.", + "pos": "adverb", + "word_frequency": 445 + }, + { + "word": "scelta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "choice", + "romanization": "scelta", + "example_sentence_native": "Hai fatto una buona scelta.", + "example_sentence_english": "You made a good choice.", + "pos": "noun", + "word_frequency": 446 + }, + { + "word": "semplice", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "simple", + "romanization": "semplice", + "example_sentence_native": "La soluzione è molto semplice.", + "example_sentence_english": "The solution is very simple.", + "pos": "adjective", + "word_frequency": 447 + }, + { + "word": "sviluppo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "development", + "romanization": "sviluppo", + "example_sentence_native": "Il paese ha bisogno di sviluppo economico.", + "example_sentence_english": "The country needs economic development.", + "pos": "noun", + "word_frequency": 448 + }, + { + "word": "ultimo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "last;ultimate", + "romanization": "ultimo", + "example_sentence_native": "Questo è l'ultimo capitolo.", + "example_sentence_english": "This is the last chapter.", + "pos": "adjective", + "word_frequency": 449 + }, + { + "word": "agosto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "August", + "romanization": "agosto", + "example_sentence_native": "Andiamo in vacanza ad agosto.", + "example_sentence_english": "We go on vacation in August.", + "pos": "noun", + "word_frequency": 450 + }, + { + "word": "condizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condition", + "romanization": "condizione", + "example_sentence_native": "La sua condizione di salute è migliorata.", + "example_sentence_english": "His health condition has improved.", + "pos": "noun", + "word_frequency": 451 + }, + { + "word": "dentro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inside", + "romanization": "dentro", + "example_sentence_native": "Il gatto è dentro casa.", + "example_sentence_english": "The cat is inside the house.", + "pos": "adverb", + "word_frequency": 452 + }, + { + "word": "fronte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "front;forehead", + "romanization": "fronte", + "example_sentence_native": "C'è un negozio di fronte alla stazione.", + "example_sentence_english": "There's a shop in front of the station.", + "pos": "noun", + "word_frequency": 453 + }, + { + "word": "luce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light", + "romanization": "luce", + "example_sentence_native": "Accendi la luce, per favore.", + "example_sentence_english": "Turn on the light, please.", + "pos": "noun", + "word_frequency": 454 + }, + { + "word": "mare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sea", + "romanization": "mare", + "example_sentence_native": "Mi piace nuotare nel mare.", + "example_sentence_english": "I like to swim in the sea.", + "pos": "noun", + "word_frequency": 455 + }, + { + "word": "motivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reason;motive", + "romanization": "motivo", + "example_sentence_native": "Non c'è nessun motivo per preoccuparsi.", + "example_sentence_english": "There's no reason to worry.", + "pos": "noun", + "word_frequency": 456 + }, + { + "word": "opera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "work (of art;literature);opera", + "romanization": "opera", + "example_sentence_native": "Quest'opera d'arte è magnifica.", + "example_sentence_english": "This work of art is magnificent.", + "pos": "noun", + "word_frequency": 457 + }, + { + "word": "piu", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "more", + "romanization": "più", + "example_sentence_native": "Voglio più tempo.", + "example_sentence_english": "I want more time.", + "pos": "adverb", + "word_frequency": 458 + }, + { + "word": "probabilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probably", + "romanization": "probabilmente", + "example_sentence_native": "Probabilmente pioverà domani.", + "example_sentence_english": "It will probably rain tomorrow.", + "pos": "adverb", + "word_frequency": 459 + }, + { + "word": "rapporto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relationship;report", + "romanization": "rapporto", + "example_sentence_native": "Hanno un buon rapporto.", + "example_sentence_english": "They have a good relationship.", + "pos": "noun", + "word_frequency": 461 + }, + { + "word": "resto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rest;remainder", + "romanization": "resto", + "example_sentence_native": "Dammi il resto, per favore.", + "example_sentence_english": "Give me the change, please.", + "pos": "noun", + "word_frequency": 462 + }, + { + "word": "sicuro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sure;safe", + "romanization": "sicuro", + "example_sentence_native": "Sei sicuro di questo?", + "example_sentence_english": "Are you sure about this?", + "pos": "adjective", + "word_frequency": 463 + }, + { + "word": "vario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "various;diverse", + "romanization": "vario", + "example_sentence_native": "Ci sono vari tipi di fiori.", + "example_sentence_english": "There are various types of flowers.", + "pos": "adjective", + "word_frequency": 464 + }, + { + "word": "attenzione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "attention", + "romanization": "attenzione", + "example_sentence_native": "Presta attenzione a quello che dico.", + "example_sentence_english": "Pay attention to what I say.", + "pos": "noun", + "word_frequency": 466 + }, + { + "word": "gennaio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "January", + "romanization": "gennaio", + "example_sentence_native": "Il nuovo anno inizia a gennaio.", + "example_sentence_english": "The new year starts in January.", + "pos": "noun", + "word_frequency": 467 + }, + { + "word": "giovane", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "young", + "romanization": "giovane", + "example_sentence_native": "È una persona molto giovane.", + "example_sentence_english": "He is a very young person.", + "pos": "adjective", + "word_frequency": 468 + }, + { + "word": "online", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "online", + "romanization": "online", + "example_sentence_native": "Ho comprato il biglietto online.", + "example_sentence_english": "I bought the ticket online.", + "pos": "adjective", + "word_frequency": 471 + }, + { + "word": "risposta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "answer;response", + "romanization": "risposta", + "example_sentence_native": "Ho bisogno di una risposta.", + "example_sentence_english": "I need an answer.", + "pos": "noun", + "word_frequency": 472 + }, + { + "word": "ruolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "role", + "romanization": "ruolo", + "example_sentence_native": "Ha un ruolo importante nel progetto.", + "example_sentence_english": "He has an important role in the project.", + "pos": "noun", + "word_frequency": 473 + }, + { + "word": "guardare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to look;to watch", + "romanization": "guardare", + "example_sentence_native": "Guarda la televisione.", + "example_sentence_english": "Watch television.", + "pos": "verb", + "word_frequency": 475 + }, + { + "word": "linea", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "romanization": "linea", + "example_sentence_native": "Disegna una linea retta.", + "example_sentence_english": "Draw a straight line.", + "pos": "noun", + "word_frequency": 476 + }, + { + "word": "mente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mind", + "romanization": "mente", + "example_sentence_native": "Tieni a mente quello che ti ho detto.", + "example_sentence_english": "Keep in mind what I told you.", + "pos": "noun", + "word_frequency": 477 + }, + { + "word": "unito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "united;joined", + "romanization": "unito", + "example_sentence_native": "Siamo uniti in questa causa.", + "example_sentence_english": "We are united in this cause.", + "pos": "adjective", + "word_frequency": 479 + }, + { + "word": "classe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "class", + "romanization": "classe", + "example_sentence_native": "La classe è molto rumorosa oggi.", + "example_sentence_english": "The class is very noisy today.", + "pos": "noun", + "word_frequency": 480 + }, + { + "word": "continuare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to continue", + "romanization": "continuare", + "example_sentence_native": "Dobbiamo continuare a lavorare.", + "example_sentence_english": "We must continue to work.", + "pos": "verb", + "word_frequency": 481 + }, + { + "word": "esperienza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experience", + "romanization": "esperienza", + "example_sentence_native": "Ho molta esperienza in questo campo.", + "example_sentence_english": "I have a lot of experience in this field.", + "pos": "noun", + "word_frequency": 482 + }, + { + "word": "squadra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "team", + "romanization": "squadra", + "example_sentence_native": "La nostra squadra ha vinto la partita.", + "example_sentence_english": "Our team won the game.", + "pos": "noun", + "word_frequency": 483 + }, + { + "word": "voglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "desire;wish", + "romanization": "voglia", + "example_sentence_native": "Non ho voglia di uscire stasera.", + "example_sentence_english": "I don't feel like going out tonight.", + "pos": "noun", + "word_frequency": 484 + }, + { + "word": "arte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "art", + "romanization": "arte", + "example_sentence_native": "Mi piace molto l'arte moderna.", + "example_sentence_english": "I really like modern art.", + "pos": "noun", + "word_frequency": 486 + }, + { + "word": "auto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car", + "romanization": "auto", + "example_sentence_native": "Ho comprato una nuova auto.", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 487 + }, + { + "word": "piazza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "square;plaza", + "romanization": "piazza", + "example_sentence_native": "Ci incontriamo in piazza.", + "example_sentence_english": "We meet in the square.", + "pos": "noun", + "word_frequency": 490 + }, + { + "word": "processo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "process;trial", + "romanization": "processo", + "example_sentence_native": "Il processo di apprendimento è lungo.", + "example_sentence_english": "The learning process is long.", + "pos": "noun", + "word_frequency": 491 + }, + { + "word": "qualità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quality", + "romanization": "qualità", + "example_sentence_native": "Questo prodotto è di alta qualità.", + "example_sentence_english": "This product is of high quality.", + "pos": "noun", + "word_frequency": 492 + }, + { + "word": "risultato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "result", + "romanization": "risultato", + "example_sentence_native": "Il risultato è stato sorprendente.", + "example_sentence_english": "The result was surprising.", + "pos": "noun", + "word_frequency": 493 + }, + { + "word": "significare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mean;to signify", + "romanization": "significare", + "example_sentence_native": "Cosa significa questa parola?", + "example_sentence_english": "What does this word mean?", + "pos": "verb", + "word_frequency": 494 + }, + { + "word": "specie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "species;kind", + "romanization": "specie", + "example_sentence_native": "Ci sono molte specie di uccelli qui.", + "example_sentence_english": "There are many species of birds here.", + "pos": "noun", + "word_frequency": 495 + }, + { + "word": "aiuto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "help", + "romanization": "aiuto", + "example_sentence_native": "Ho bisogno del tuo aiuto.", + "example_sentence_english": "I need your help.", + "pos": "noun", + "word_frequency": 496 + }, + { + "word": "bisognare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be necessary", + "romanization": "bisognare", + "example_sentence_native": "Bisogna studiare per l'esame.", + "example_sentence_english": "It is necessary to study for the exam.", + "pos": "verb", + "word_frequency": 497 + }, + { + "word": "colpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fault;blame", + "romanization": "colpa", + "example_sentence_native": "Non è colpa mia.", + "example_sentence_english": "It's not my fault.", + "pos": "noun", + "word_frequency": 498 + }, + { + "word": "domani", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tomorrow", + "romanization": "domani", + "example_sentence_native": "Ci vediamo domani.", + "example_sentence_english": "See you tomorrow.", + "pos": "adverb", + "word_frequency": 499 + }, + { + "word": "effetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effect", + "romanization": "effetto", + "example_sentence_native": "Questo farmaco ha un buon effetto.", + "example_sentence_english": "This medicine has a good effect.", + "pos": "noun", + "word_frequency": 500 + }, + { + "word": "facile", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "easy", + "romanization": "facile", + "example_sentence_native": "Questo esercizio è molto facile.", + "example_sentence_english": "This exercise is very easy.", + "pos": "adjective", + "word_frequency": 501 + }, + { + "word": "genitore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parent", + "romanization": "genitore", + "example_sentence_native": "I miei genitori sono in vacanza.", + "example_sentence_english": "My parents are on vacation.", + "pos": "noun", + "word_frequency": 502 + }, + { + "word": "internazionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "international", + "romanization": "internazionale", + "example_sentence_native": "È una conferenza internazionale.", + "example_sentence_english": "It's an international conference.", + "pos": "adjective", + "word_frequency": 504 + }, + { + "word": "produzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "production", + "romanization": "produzione", + "example_sentence_native": "La produzione è aumentata quest'anno.", + "example_sentence_english": "Production increased this year.", + "pos": "noun", + "word_frequency": 505 + }, + { + "word": "repubblica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "republic", + "romanization": "repubblica", + "example_sentence_native": "L'Italia è una repubblica.", + "example_sentence_english": "Italy is a republic.", + "pos": "noun", + "word_frequency": 506 + }, + { + "word": "sinistra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "left (side;direction)", + "romanization": "sinistra", + "example_sentence_native": "Gira a sinistra al semaforo.", + "example_sentence_english": "Turn left at the traffic light.", + "pos": "noun", + "word_frequency": 507 + }, + { + "word": "sperare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hope", + "romanization": "sperare", + "example_sentence_native": "Spero che tu stia bene.", + "example_sentence_english": "I hope you are well.", + "pos": "verb", + "word_frequency": 508 + }, + { + "word": "ufficiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "official", + "romanization": "ufficiale", + "example_sentence_native": "Questa è la versione ufficiale.", + "example_sentence_english": "This is the official version.", + "pos": "adjective", + "word_frequency": 509 + }, + { + "word": "fondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottom;fund;background", + "romanization": "fondo", + "example_sentence_native": "Il bicchiere è vuoto fino al fondo.", + "example_sentence_english": "The glass is empty to the bottom.", + "pos": "noun", + "word_frequency": 510 + }, + { + "word": "libertà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freedom;liberty", + "romanization": "libertà", + "example_sentence_native": "La libertà è un diritto fondamentale.", + "example_sentence_english": "Freedom is a fundamental right.", + "pos": "noun", + "word_frequency": 511 + }, + { + "word": "massimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maximum;greatest", + "romanization": "massimo", + "example_sentence_native": "Questo è il massimo che posso fare.", + "example_sentence_english": "This is the maximum I can do.", + "pos": "adjective", + "word_frequency": 512 + }, + { + "word": "metà", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "half", + "romanization": "metà", + "example_sentence_native": "Ho mangiato metà della torta.", + "example_sentence_english": "I ate half of the cake.", + "pos": "noun", + "word_frequency": 513 + }, + { + "word": "passo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "step;pace", + "romanization": "passo", + "example_sentence_native": "Fai un passo avanti.", + "example_sentence_english": "Take a step forward.", + "pos": "noun", + "word_frequency": 514 + }, + { + "word": "popolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "people;nation", + "romanization": "popolo", + "example_sentence_native": "Il popolo ha votato.", + "example_sentence_english": "The people voted.", + "pos": "noun", + "word_frequency": 515 + }, + { + "word": "presto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soon;early", + "romanization": "presto", + "example_sentence_native": "Arriverò presto.", + "example_sentence_english": "I will arrive soon.", + "pos": "adverb", + "word_frequency": 516 + }, + { + "word": "ricordo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory;souvenir", + "romanization": "ricordo", + "example_sentence_native": "Ho un bel ricordo di quel giorno.", + "example_sentence_english": "I have a good memory of that day.", + "pos": "noun", + "word_frequency": 517 + }, + { + "word": "sede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headquarters;seat", + "romanization": "sede", + "example_sentence_native": "La sede dell'azienda è a Roma.", + "example_sentence_english": "The company's headquarters is in Rome.", + "pos": "noun", + "word_frequency": 518 + }, + { + "word": "servire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to serve;to be useful", + "romanization": "servire", + "example_sentence_native": "A cosa serve questo strumento?", + "example_sentence_english": "What is this tool for?", + "pos": "verb", + "word_frequency": 519 + }, + { + "word": "spazio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "space", + "romanization": "spazio", + "example_sentence_native": "C'è molto spazio in questa stanza.", + "example_sentence_english": "There is a lot of space in this room.", + "pos": "noun", + "word_frequency": 520 + }, + { + "word": "territorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "territory", + "romanization": "territorio", + "example_sentence_native": "Il territorio è vasto e montuoso.", + "example_sentence_english": "The territory is vast and mountainous.", + "pos": "noun", + "word_frequency": 521 + }, + { + "word": "valore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "value", + "romanization": "valore", + "example_sentence_native": "Questo anello ha un grande valore sentimentale.", + "example_sentence_english": "This ring has great sentimental value.", + "pos": "noun", + "word_frequency": 522 + }, + { + "word": "verità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truth", + "romanization": "verità", + "example_sentence_native": "Voglio sapere tutta la verità.", + "example_sentence_english": "I want to know the whole truth.", + "pos": "noun", + "word_frequency": 523 + }, + { + "word": "viaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trip;journey", + "romanization": "viaggio", + "example_sentence_native": "Il nostro viaggio a Roma è stato fantastico.", + "example_sentence_english": "Our trip to Rome was fantastic.", + "pos": "noun", + "word_frequency": 524 + }, + { + "word": "cercare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to look for;to search", + "romanization": "cercare", + "example_sentence_native": "Sto cercando le mie chiavi.", + "example_sentence_english": "I am looking for my keys.", + "pos": "verb", + "word_frequency": 525 + }, + { + "word": "mamma", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mom;mother", + "romanization": "mamma", + "example_sentence_native": "Mia mamma cucina sempre bene.", + "example_sentence_english": "My mom always cooks well.", + "pos": "noun", + "word_frequency": 527 + }, + { + "word": "moglie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wife", + "romanization": "moglie", + "example_sentence_native": "Mia moglie è molto intelligente.", + "example_sentence_english": "My wife is very intelligent.", + "pos": "noun", + "word_frequency": 528 + }, + { + "word": "pace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peace", + "romanization": "pace", + "example_sentence_native": "Spero che ci sia pace nel mondo.", + "example_sentence_english": "I hope there is peace in the world.", + "pos": "noun", + "word_frequency": 530 + }, + { + "word": "papa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dad", + "romanization": "papa", + "example_sentence_native": "Mio papa mi ha insegnato a nuotare.", + "example_sentence_english": "My dad taught me how to swim.", + "pos": "noun", + "word_frequency": 531 + }, + { + "word": "politico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "political", + "romanization": "politico", + "example_sentence_native": "La situazione politica è complessa.", + "example_sentence_english": "The political situation is complex.", + "pos": "adjective", + "word_frequency": 532 + }, + { + "word": "presenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presence", + "romanization": "presenza", + "example_sentence_native": "La sua presenza è sempre gradita.", + "example_sentence_english": "His presence is always welcome.", + "pos": "noun", + "word_frequency": 533 + }, + { + "word": "breve", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "short;brief", + "romanization": "breve", + "example_sentence_native": "Ho fatto una breve pausa.", + "example_sentence_english": "I took a short break.", + "pos": "adjective", + "word_frequency": 534 + }, + { + "word": "civile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civil", + "romanization": "civile", + "example_sentence_native": "È importante mantenere un comportamento civile.", + "example_sentence_english": "It's important to maintain civil behavior.", + "pos": "adjective", + "word_frequency": 535 + }, + { + "word": "lavorare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to work", + "romanization": "lavorare", + "example_sentence_native": "Devo lavorare domani.", + "example_sentence_english": "I have to work tomorrow.", + "pos": "verb", + "word_frequency": 536 + }, + { + "word": "ministro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minister", + "romanization": "ministro", + "example_sentence_native": "Il ministro ha annunciato nuove misure.", + "example_sentence_english": "The minister announced new measures.", + "pos": "noun", + "word_frequency": 537 + }, + { + "word": "ordine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "order", + "romanization": "ordine", + "example_sentence_native": "Metti in ordine la tua stanza.", + "example_sentence_english": "Put your room in order.", + "pos": "noun", + "word_frequency": 538 + }, + { + "word": "oro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gold", + "romanization": "oro", + "example_sentence_native": "L'anello è fatto d'oro.", + "example_sentence_english": "The ring is made of gold.", + "pos": "noun", + "word_frequency": 539 + }, + { + "word": "piede", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "foot", + "romanization": "piede", + "example_sentence_native": "Mi fa male il piede.", + "example_sentence_english": "My foot hurts.", + "pos": "noun", + "word_frequency": 540 + }, + { + "word": "rete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "net;network", + "romanization": "rete", + "example_sentence_native": "La rete internet è lenta oggi.", + "example_sentence_english": "The internet network is slow today.", + "pos": "noun", + "word_frequency": 541 + }, + { + "word": "speciale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "special", + "romanization": "speciale", + "example_sentence_native": "Questo è un giorno speciale per me.", + "example_sentence_english": "This is a special day for me.", + "pos": "adjective", + "word_frequency": 542 + }, + { + "word": "calcio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football;soccer", + "romanization": "calcio", + "example_sentence_native": "Mi piace giocare a calcio.", + "example_sentence_english": "I like to play soccer.", + "pos": "noun", + "word_frequency": 546 + }, + { + "word": "centrale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "central", + "romanization": "centrale", + "example_sentence_native": "La stazione centrale è molto grande.", + "example_sentence_english": "The central station is very big.", + "pos": "adjective", + "word_frequency": 547 + }, + { + "word": "codice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "code", + "romanization": "codice", + "example_sentence_native": "Ho dimenticato il codice segreto.", + "example_sentence_english": "I forgot the secret code.", + "pos": "noun", + "word_frequency": 548 + }, + { + "word": "felice", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "happy", + "romanization": "felice", + "example_sentence_native": "Sono molto felice di vederti.", + "example_sentence_english": "I am very happy to see you.", + "pos": "adjective", + "word_frequency": 549 + }, + { + "word": "pagina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "page", + "romanization": "pagina", + "example_sentence_native": "Leggi la pagina dieci.", + "example_sentence_english": "Read page ten.", + "pos": "noun", + "word_frequency": 551 + }, + { + "word": "provincia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "province", + "romanization": "provincia", + "example_sentence_native": "Vivo in una piccola provincia.", + "example_sentence_english": "I live in a small province.", + "pos": "noun", + "word_frequency": 552 + }, + { + "word": "riguardare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concern;to regard", + "romanization": "riguardare", + "example_sentence_native": "Questo problema riguarda tutti noi.", + "example_sentence_english": "This problem concerns all of us.", + "pos": "verb", + "word_frequency": 553 + }, + { + "word": "sentire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to hear;to feel", + "romanization": "sentire", + "example_sentence_native": "Sento la musica.", + "example_sentence_english": "I hear the music.", + "pos": "verb", + "word_frequency": 554 + }, + { + "word": "sole", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sun", + "romanization": "sole", + "example_sentence_native": "Il sole splende oggi.", + "example_sentence_english": "The sun is shining today.", + "pos": "noun", + "word_frequency": 555 + }, + { + "word": "web", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "web", + "romanization": "web", + "example_sentence_native": "Ho trovato l'informazione sul web.", + "example_sentence_english": "I found the information on the web.", + "pos": "noun", + "word_frequency": 556 + }, + { + "word": "cosi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "so;thus;like this", + "romanization": "così", + "example_sentence_native": "È così difficile?", + "example_sentence_english": "Is it so difficult?", + "pos": "adverb", + "word_frequency": 557 + }, + { + "word": "internet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "internet", + "romanization": "internet", + "example_sentence_native": "Ho bisogno di internet per lavorare.", + "example_sentence_english": "I need internet to work.", + "pos": "noun", + "word_frequency": 558 + }, + { + "word": "macchina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car;machine", + "romanization": "macchina", + "example_sentence_native": "Ho comprato una nuova macchina.", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 559 + }, + { + "word": "movimento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "movement", + "romanization": "movimento", + "example_sentence_native": "Il movimento delle foglie era ipnotico.", + "example_sentence_english": "The movement of the leaves was hypnotic.", + "pos": "noun", + "word_frequency": 560 + }, + { + "word": "notizia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "news", + "romanization": "notizia", + "example_sentence_native": "Ho sentito una buona notizia oggi.", + "example_sentence_english": "I heard some good news today.", + "pos": "noun", + "word_frequency": 561 + }, + { + "word": "perdere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to lose", + "romanization": "perdere", + "example_sentence_native": "Non voglio perdere il treno.", + "example_sentence_english": "I don't want to lose the train.", + "pos": "verb", + "word_frequency": 562 + }, + { + "word": "riguardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regard;respect", + "romanization": "riguardo", + "example_sentence_native": "Ho molto riguardo per la sua opinione.", + "example_sentence_english": "I have great regard for his opinion.", + "pos": "noun", + "word_frequency": 563 + }, + { + "word": "stile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "style", + "romanization": "stile", + "example_sentence_native": "Mi piace il suo stile di scrittura.", + "example_sentence_english": "I like his writing style.", + "pos": "noun", + "word_frequency": 564 + }, + { + "word": "cittadino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "citizen", + "romanization": "cittadino", + "example_sentence_native": "Ogni cittadino ha il diritto di votare.", + "example_sentence_english": "Every citizen has the right to vote.", + "pos": "noun", + "word_frequency": 565 + }, + { + "word": "età", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "age", + "romanization": "età", + "example_sentence_native": "Qual è la tua età?", + "example_sentence_english": "What is your age?", + "pos": "noun", + "word_frequency": 566 + }, + { + "word": "inizio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beginning;start", + "romanization": "inizio", + "example_sentence_native": "L'inizio del film è stato emozionante.", + "example_sentence_english": "The beginning of the movie was exciting.", + "pos": "noun", + "word_frequency": 567 + }, + { + "word": "nota", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "note", + "romanization": "nota", + "example_sentence_native": "Ho preso una nota importante durante la lezione.", + "example_sentence_english": "I took an important note during the lesson.", + "pos": "noun", + "word_frequency": 568 + }, + { + "word": "occasione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasion;opportunity", + "romanization": "occasione", + "example_sentence_native": "È una buona occasione per imparare.", + "example_sentence_english": "It's a good opportunity to learn.", + "pos": "noun", + "word_frequency": 569 + }, + { + "word": "prezzo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "price", + "romanization": "prezzo", + "example_sentence_native": "Qual è il prezzo di questo libro?", + "example_sentence_english": "What is the price of this book?", + "pos": "noun", + "word_frequency": 570 + }, + { + "word": "prodotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "product", + "romanization": "prodotto", + "example_sentence_native": "Questo è un ottimo prodotto.", + "example_sentence_english": "This is an excellent product.", + "pos": "noun", + "word_frequency": 571 + }, + { + "word": "qua", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "here", + "romanization": "qua", + "example_sentence_native": "Vieni qua, per favore.", + "example_sentence_english": "Come here, please.", + "pos": "adverb", + "word_frequency": 572 + }, + { + "word": "scusa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excuse;apology", + "romanization": "scusa", + "example_sentence_native": "Non ha nessuna scusa per il suo ritardo.", + "example_sentence_english": "He has no excuse for his delay.", + "pos": "noun", + "word_frequency": 573 + }, + { + "word": "secolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "century", + "romanization": "secolo", + "example_sentence_native": "Viviamo nel ventunesimo secolo.", + "example_sentence_english": "We live in the twenty-first century.", + "pos": "noun", + "word_frequency": 574 + }, + { + "word": "stagione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "season", + "romanization": "stagione", + "example_sentence_native": "La mia stagione preferita è l'estate.", + "example_sentence_english": "My favorite season is summer.", + "pos": "noun", + "word_frequency": 575 + }, + { + "word": "università", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "university", + "romanization": "università", + "example_sentence_native": "Studio all'università di Roma.", + "example_sentence_english": "I study at the University of Rome.", + "pos": "noun", + "word_frequency": 576 + }, + { + "word": "cambiare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to change", + "romanization": "cambiare", + "example_sentence_native": "Voglio cambiare il mio look.", + "example_sentence_english": "I want to change my look.", + "pos": "verb", + "word_frequency": 578 + }, + { + "word": "camera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room;camera", + "romanization": "camera", + "example_sentence_native": "La mia camera da letto è grande.", + "example_sentence_english": "My bedroom is big.", + "pos": "noun", + "word_frequency": 579 + }, + { + "word": "corte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "court;yard", + "romanization": "corte", + "example_sentence_native": "La corte del castello era piena di gente.", + "example_sentence_english": "The castle courtyard was full of people.", + "pos": "noun", + "word_frequency": 580 + }, + { + "word": "decidere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to decide", + "romanization": "decidere", + "example_sentence_native": "Devo decidere cosa fare.", + "example_sentence_english": "I have to decide what to do.", + "pos": "verb", + "word_frequency": 581 + }, + { + "word": "destra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "right (direction)", + "romanization": "destra", + "example_sentence_native": "Gira a destra al prossimo incrocio.", + "example_sentence_english": "Turn right at the next intersection.", + "pos": "noun", + "word_frequency": 582 + }, + { + "word": "formazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;formation", + "romanization": "formazione", + "example_sentence_native": "Ha ricevuto una buona formazione professionale.", + "example_sentence_english": "He received good professional training.", + "pos": "noun", + "word_frequency": 584 + }, + { + "word": "locale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "local", + "romanization": "locale", + "example_sentence_native": "Preferisco comprare prodotti locali.", + "example_sentence_english": "I prefer to buy local products.", + "pos": "adjective", + "word_frequency": 585 + }, + { + "word": "mondiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worldwide;global", + "romanization": "mondiale", + "example_sentence_native": "La crisi economica è mondiale.", + "example_sentence_english": "The economic crisis is worldwide.", + "pos": "adjective", + "word_frequency": 587 + }, + { + "word": "necessario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "necessary", + "romanization": "necessario", + "example_sentence_native": "È necessario studiare per l'esame.", + "example_sentence_english": "It is necessary to study for the exam.", + "pos": "adjective", + "word_frequency": 588 + }, + { + "word": "popolazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "population", + "romanization": "popolazione", + "example_sentence_native": "La popolazione mondiale sta crescendo.", + "example_sentence_english": "The world population is growing.", + "pos": "noun", + "word_frequency": 589 + }, + { + "word": "portare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to bring;to carry", + "romanization": "portare", + "example_sentence_native": "Puoi portare questo libro?", + "example_sentence_english": "Can you bring this book?", + "pos": "verb", + "word_frequency": 590 + }, + { + "word": "reale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "real;royal", + "romanization": "reale", + "example_sentence_native": "Questa è la vera storia, non una finzione.", + "example_sentence_english": "This is the real story, not fiction.", + "pos": "adjective", + "word_frequency": 591 + }, + { + "word": "sesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sex;gender", + "romanization": "sesso", + "example_sentence_native": "Il sesso biologico è determinato alla nascita.", + "example_sentence_english": "Biological sex is determined at birth.", + "pos": "noun", + "word_frequency": 592 + }, + { + "word": "soltanto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "only;just", + "romanization": "soltanto", + "example_sentence_native": "Ho soltanto un euro.", + "example_sentence_english": "I only have one euro.", + "pos": "adverb", + "word_frequency": 593 + }, + { + "word": "terzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "third", + "romanization": "terzo", + "example_sentence_native": "Questo è il terzo capitolo del libro.", + "example_sentence_english": "This is the third chapter of the book.", + "pos": "adjective", + "word_frequency": 595 + }, + { + "word": "testo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "text", + "romanization": "testo", + "example_sentence_native": "Ho letto il testo della canzone.", + "example_sentence_english": "I read the lyrics of the song.", + "pos": "noun", + "word_frequency": 596 + }, + { + "word": "totale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "total", + "romanization": "totale", + "example_sentence_native": "Il costo totale è di dieci euro.", + "example_sentence_english": "The total cost is ten euros.", + "pos": "adjective", + "word_frequency": 597 + }, + { + "word": "versione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "version", + "romanization": "versione", + "example_sentence_native": "Questa è l'ultima versione del software.", + "example_sentence_english": "This is the latest version of the software.", + "pos": "noun", + "word_frequency": 599 + }, + { + "word": "chiaro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clear", + "romanization": "chiaro", + "example_sentence_native": "Il cielo è chiaro oggi.", + "example_sentence_english": "The sky is clear today.", + "pos": "adjective", + "word_frequency": 600 + }, + { + "word": "chiedere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to ask", + "romanization": "chiedere", + "example_sentence_native": "Devo chiedere un'informazione.", + "example_sentence_english": "I need to ask for some information.", + "pos": "verb", + "word_frequency": 601 + }, + { + "word": "dieci", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ten", + "romanization": "dieci", + "example_sentence_native": "Ho dieci euro.", + "example_sentence_english": "I have ten euros.", + "pos": "noun", + "word_frequency": 602 + }, + { + "word": "diventare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to become", + "romanization": "diventare", + "example_sentence_native": "Voglio diventare un medico.", + "example_sentence_english": "I want to become a doctor.", + "pos": "verb", + "word_frequency": 603 + }, + { + "word": "finalmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "finally", + "romanization": "finalmente", + "example_sentence_native": "Finalmente è arrivato il treno.", + "example_sentence_english": "The train finally arrived.", + "pos": "adverb", + "word_frequency": 604 + }, + { + "word": "fratello", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brother", + "romanization": "fratello", + "example_sentence_native": "Mio fratello è più grande di me.", + "example_sentence_english": "My brother is older than me.", + "pos": "noun", + "word_frequency": 605 + }, + { + "word": "fuoco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fire", + "romanization": "fuoco", + "example_sentence_native": "Attenzione al fuoco!", + "example_sentence_english": "Beware of fire!", + "pos": "noun", + "word_frequency": 606 + }, + { + "word": "interesse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interest", + "romanization": "interesse", + "example_sentence_native": "Ho molto interesse per la storia.", + "example_sentence_english": "I have a lot of interest in history.", + "pos": "noun", + "word_frequency": 607 + }, + { + "word": "maniera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manner", + "romanization": "maniera", + "example_sentence_native": "Ha una strana maniera di parlare.", + "example_sentence_english": "He has a strange way of speaking.", + "pos": "noun", + "word_frequency": 608 + }, + { + "word": "natura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nature", + "romanization": "natura", + "example_sentence_native": "Amo passeggiare nella natura.", + "example_sentence_english": "I love walking in nature.", + "pos": "noun", + "word_frequency": 609 + }, + { + "word": "ovviamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obviously", + "romanization": "ovviamente", + "example_sentence_native": "Ovviamente, sono d'accordo.", + "example_sentence_english": "Obviously, I agree.", + "pos": "adverb", + "word_frequency": 610 + }, + { + "word": "partire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to leave", + "romanization": "partire", + "example_sentence_native": "Partiamo domani mattina.", + "example_sentence_english": "We leave tomorrow morning.", + "pos": "verb", + "word_frequency": 611 + }, + { + "word": "semplicemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simply", + "romanization": "semplicemente", + "example_sentence_native": "È semplicemente la verità.", + "example_sentence_english": "It's simply the truth.", + "pos": "adverb", + "word_frequency": 612 + }, + { + "word": "arrivare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to arrive", + "romanization": "arrivare", + "example_sentence_native": "Quando arrivi?", + "example_sentence_english": "When do you arrive?", + "pos": "verb", + "word_frequency": 614 + }, + { + "word": "aspetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aspect", + "romanization": "aspetto", + "example_sentence_native": "L'aspetto della città è cambiato.", + "example_sentence_english": "The aspect of the city has changed.", + "pos": "noun", + "word_frequency": 615 + }, + { + "word": "carta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "paper", + "romanization": "carta", + "example_sentence_native": "Ho bisogno di un foglio di carta.", + "example_sentence_english": "I need a sheet of paper.", + "pos": "noun", + "word_frequency": 616 + }, + { + "word": "completamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "completely", + "romanization": "completamente", + "example_sentence_native": "Sono completamente d'accordo.", + "example_sentence_english": "I completely agree.", + "pos": "adverb", + "word_frequency": 617 + }, + { + "word": "comunità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community", + "romanization": "comunità", + "example_sentence_native": "La comunità locale è molto unita.", + "example_sentence_english": "The local community is very united.", + "pos": "noun", + "word_frequency": 618 + }, + { + "word": "danno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damage", + "romanization": "danno", + "example_sentence_native": "Il terremoto ha causato molti danni.", + "example_sentence_english": "The earthquake caused a lot of damage.", + "pos": "noun", + "word_frequency": 619 + }, + { + "word": "esistere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exist", + "romanization": "esistere", + "example_sentence_native": "Non credo che i fantasmi esistano.", + "example_sentence_english": "I don't believe that ghosts exist.", + "pos": "verb", + "word_frequency": 620 + }, + { + "word": "festa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "party", + "romanization": "festa", + "example_sentence_native": "Andiamo alla festa stasera.", + "example_sentence_english": "We're going to the party tonight.", + "pos": "noun", + "word_frequency": 621 + }, + { + "word": "francese", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "French", + "romanization": "francese", + "example_sentence_native": "Parlo un po' di francese.", + "example_sentence_english": "I speak a little French.", + "pos": "adjective", + "word_frequency": 622 + }, + { + "word": "libero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "free", + "romanization": "libero", + "example_sentence_native": "Sono libero questo weekend.", + "example_sentence_english": "I am free this weekend.", + "pos": "adjective", + "word_frequency": 623 + }, + { + "word": "principale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main", + "romanization": "principale", + "example_sentence_native": "Qual è la ragione principale?", + "example_sentence_english": "What is the main reason?", + "pos": "adjective", + "word_frequency": 624 + }, + { + "word": "relazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relationship", + "romanization": "relazione", + "example_sentence_native": "Hanno una buona relazione.", + "example_sentence_english": "They have a good relationship.", + "pos": "noun", + "word_frequency": 626 + }, + { + "word": "stampa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "press", + "romanization": "stampa", + "example_sentence_native": "La libertà di stampa è importante.", + "example_sentence_english": "Freedom of the press is important.", + "pos": "noun", + "word_frequency": 627 + }, + { + "word": "tornare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to return", + "romanization": "tornare", + "example_sentence_native": "Quando torni a casa?", + "example_sentence_english": "When are you coming back home?", + "pos": "verb", + "word_frequency": 628 + }, + { + "word": "usare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to use", + "romanization": "usare", + "example_sentence_native": "Posso usare il tuo telefono?", + "example_sentence_english": "Can I use your phone?", + "pos": "verb", + "word_frequency": 629 + }, + { + "word": "messaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "message", + "romanization": "messaggio", + "example_sentence_native": "Ti ho lasciato un messaggio.", + "example_sentence_english": "I left you a message.", + "pos": "noun", + "word_frequency": 632 + }, + { + "word": "mostra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibition", + "romanization": "mostra", + "example_sentence_native": "Andiamo a vedere la mostra d'arte.", + "example_sentence_english": "Let's go see the art exhibition.", + "pos": "noun", + "word_frequency": 633 + }, + { + "word": "prossimo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "next", + "romanization": "prossimo", + "example_sentence_native": "Ci vediamo la prossima settimana.", + "example_sentence_english": "See you next week.", + "pos": "adjective", + "word_frequency": 634 + }, + { + "word": "scopo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purpose", + "romanization": "scopo", + "example_sentence_native": "Qual è lo scopo di questo progetto?", + "example_sentence_english": "What is the purpose of this project?", + "pos": "noun", + "word_frequency": 635 + }, + { + "word": "simile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar", + "romanization": "simile", + "example_sentence_native": "Le due case sono molto simili.", + "example_sentence_english": "The two houses are very similar.", + "pos": "adjective", + "word_frequency": 636 + }, + { + "word": "cibo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "food", + "romanization": "cibo", + "example_sentence_native": "Mi piace il cibo italiano.", + "example_sentence_english": "I like Italian food.", + "pos": "noun", + "word_frequency": 638 + }, + { + "word": "direttamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "directly", + "romanization": "direttamente", + "example_sentence_native": "Parla direttamente con lui.", + "example_sentence_english": "Speak directly with him.", + "pos": "adverb", + "word_frequency": 639 + }, + { + "word": "figlia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "daughter", + "romanization": "figlia", + "example_sentence_native": "Mia figlia ha sei anni.", + "example_sentence_english": "My daughter is six years old.", + "pos": "noun", + "word_frequency": 640 + }, + { + "word": "finale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "final;last", + "romanization": "finale", + "example_sentence_native": "Questa è la decisione finale.", + "example_sentence_english": "This is the final decision.", + "pos": "adjective", + "word_frequency": 641 + }, + { + "word": "lato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "side", + "romanization": "lato", + "example_sentence_native": "Guarda l'altro lato della strada.", + "example_sentence_english": "Look at the other side of the street.", + "pos": "noun", + "word_frequency": 642 + }, + { + "word": "sangue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blood", + "romanization": "sangue", + "example_sentence_native": "Ha donato il sangue all'ospedale.", + "example_sentence_english": "He donated blood at the hospital.", + "pos": "noun", + "word_frequency": 643 + }, + { + "word": "tema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "theme;topic", + "romanization": "tema", + "example_sentence_native": "Il tema della conferenza era l'ambiente.", + "example_sentence_english": "The theme of the conference was the environment.", + "pos": "noun", + "word_frequency": 644 + }, + { + "word": "vecchio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "old", + "romanization": "vecchio", + "example_sentence_native": "La mia macchina è molto vecchia.", + "example_sentence_english": "My car is very old.", + "pos": "adjective", + "word_frequency": 645 + }, + { + "word": "voto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vote;grade;mark", + "romanization": "voto", + "example_sentence_native": "Ho preso un buon voto all'esame.", + "example_sentence_english": "I got a good grade on the exam.", + "pos": "noun", + "word_frequency": 646 + }, + { + "word": "basso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "low;short (in height)", + "romanization": "basso", + "example_sentence_native": "Il tavolo è troppo basso.", + "example_sentence_english": "The table is too low.", + "pos": "adjective", + "word_frequency": 648 + }, + { + "word": "contratto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contract", + "romanization": "contratto", + "example_sentence_native": "Abbiamo firmato il contratto ieri.", + "example_sentence_english": "We signed the contract yesterday.", + "pos": "noun", + "word_frequency": 649 + }, + { + "word": "costare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cost", + "romanization": "costare", + "example_sentence_native": "Quanto costa questo libro?", + "example_sentence_english": "How much does this book cost?", + "pos": "verb", + "word_frequency": 650 + }, + { + "word": "crisi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crisis", + "romanization": "crisi", + "example_sentence_native": "Il paese sta attraversando una crisi economica.", + "example_sentence_english": "The country is going through an economic crisis.", + "pos": "noun", + "word_frequency": 651 + }, + { + "word": "differenza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "difference", + "romanization": "differenza", + "example_sentence_native": "Non c'è molta differenza tra i due.", + "example_sentence_english": "There isn't much difference between the two.", + "pos": "noun", + "word_frequency": 653 + }, + { + "word": "entrare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to enter;to go in", + "romanization": "entrare", + "example_sentence_native": "Puoi entrare, la porta è aperta.", + "example_sentence_english": "You can enter, the door is open.", + "pos": "verb", + "word_frequency": 654 + }, + { + "word": "fortuna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luck;fortune", + "romanization": "fortuna", + "example_sentence_native": "Che fortuna! Ho trovato un euro.", + "example_sentence_english": "What luck! I found one euro.", + "pos": "noun", + "word_frequency": 655 + }, + { + "word": "guida", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guide (person or book)", + "romanization": "guida", + "example_sentence_native": "Abbiamo assunto una guida per il tour.", + "example_sentence_english": "We hired a guide for the tour.", + "pos": "noun", + "word_frequency": 656 + }, + { + "word": "immagine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "image;picture", + "romanization": "immagine", + "example_sentence_native": "Questa immagine è molto bella.", + "example_sentence_english": "This image is very beautiful.", + "pos": "noun", + "word_frequency": 657 + }, + { + "word": "incontro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meeting;encounter", + "romanization": "incontro", + "example_sentence_native": "Ho un incontro importante domani.", + "example_sentence_english": "I have an important meeting tomorrow.", + "pos": "noun", + "word_frequency": 658 + }, + { + "word": "iniziare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to start;to begin", + "romanization": "iniziare", + "example_sentence_native": "Iniziamo la lezione ora.", + "example_sentence_english": "Let's start the lesson now.", + "pos": "verb", + "word_frequency": 659 + }, + { + "word": "intorno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "around", + "romanization": "intorno", + "example_sentence_native": "C'erano molte persone intorno al palco.", + "example_sentence_english": "There were many people around the stage.", + "pos": "adverb", + "word_frequency": 660 + }, + { + "word": "nero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "black", + "romanization": "nero", + "example_sentence_native": "Mi piace il caffè nero.", + "example_sentence_english": "I like black coffee.", + "pos": "adjective", + "word_frequency": 661 + }, + { + "word": "ottenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to obtain;to get", + "romanization": "ottenere", + "example_sentence_native": "Spero di ottenere buoni risultati.", + "example_sentence_english": "I hope to obtain good results.", + "pos": "verb", + "word_frequency": 662 + }, + { + "word": "pena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pain;penalty;worth (in 'vale la pena')", + "romanization": "pena", + "example_sentence_native": "Non vale la pena preoccuparsi.", + "example_sentence_english": "It's not worth worrying.", + "pos": "noun", + "word_frequency": 663 + }, + { + "word": "azione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "action;share (stock)", + "romanization": "azione", + "example_sentence_native": "È tempo di passare all'azione.", + "example_sentence_english": "It's time to take action.", + "pos": "noun", + "word_frequency": 664 + }, + { + "word": "creare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to create", + "romanization": "creare", + "example_sentence_native": "Vogliamo creare un nuovo progetto.", + "example_sentence_english": "We want to create a new project.", + "pos": "verb", + "word_frequency": 665 + }, + { + "word": "culo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ass;butt", + "romanization": "culo", + "example_sentence_native": "È caduto e si è fatto male al culo.", + "example_sentence_english": "He fell and hurt his butt.", + "pos": "noun", + "word_frequency": 666 + }, + { + "word": "discorso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speech;discourse;talk", + "romanization": "discorso", + "example_sentence_native": "Il presidente ha fatto un lungo discorso.", + "example_sentence_english": "The president gave a long speech.", + "pos": "noun", + "word_frequency": 667 + }, + { + "word": "lista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "list", + "romanization": "lista", + "example_sentence_native": "Ho fatto una lista della spesa.", + "example_sentence_english": "I made a shopping list.", + "pos": "noun", + "word_frequency": 670 + }, + { + "word": "morire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to die", + "romanization": "morire", + "example_sentence_native": "Non voglio morire giovane.", + "example_sentence_english": "I don't want to die young.", + "pos": "verb", + "word_frequency": 671 + }, + { + "word": "pari", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equal;even (number)", + "romanization": "pari", + "example_sentence_native": "I due risultati sono pari.", + "example_sentence_english": "The two results are equal.", + "pos": "adjective", + "word_frequency": 672 + }, + { + "word": "pensiero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thought", + "romanization": "pensiero", + "example_sentence_native": "Ho avuto un brutto pensiero.", + "example_sentence_english": "I had a bad thought.", + "pos": "noun", + "word_frequency": 673 + }, + { + "word": "proprietà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property;ownership", + "romanization": "proprietà", + "example_sentence_native": "Questa casa è di mia proprietà.", + "example_sentence_english": "This house is my property.", + "pos": "noun", + "word_frequency": 674 + }, + { + "word": "rischio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risk", + "romanization": "rischio", + "example_sentence_native": "C'è un alto rischio di pioggia.", + "example_sentence_english": "There is a high risk of rain.", + "pos": "noun", + "word_frequency": 675 + }, + { + "word": "sicuramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surely;certainly", + "romanization": "sicuramente", + "example_sentence_native": "Verrò sicuramente alla festa.", + "example_sentence_english": "I will surely come to the party.", + "pos": "adverb", + "word_frequency": 676 + }, + { + "word": "solito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "usual;customary", + "romanization": "solito", + "example_sentence_native": "Faccio la solita colazione ogni mattina.", + "example_sentence_english": "I have the usual breakfast every morning.", + "pos": "adjective", + "word_frequency": 677 + }, + { + "word": "soluzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solution", + "romanization": "soluzione", + "example_sentence_native": "Abbiamo trovato una soluzione al problema.", + "example_sentence_english": "We found a solution to the problem.", + "pos": "noun", + "word_frequency": 678 + }, + { + "word": "superiore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superior;upper", + "romanization": "superiore", + "example_sentence_native": "Il piano superiore è più spazioso.", + "example_sentence_english": "The upper floor is more spacious.", + "pos": "adjective", + "word_frequency": 679 + }, + { + "word": "telefono", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "telephone", + "romanization": "telefono", + "example_sentence_native": "Ho comprato un nuovo telefono.", + "example_sentence_english": "I bought a new telephone.", + "pos": "noun", + "word_frequency": 680 + }, + { + "word": "valere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be worth", + "romanization": "valere", + "example_sentence_native": "Questo orologio vale molto.", + "example_sentence_english": "This watch is worth a lot.", + "pos": "verb", + "word_frequency": 681 + }, + { + "word": "arma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weapon", + "romanization": "arma", + "example_sentence_native": "La polizia ha trovato un'arma sul luogo del crimine.", + "example_sentence_english": "The police found a weapon at the crime scene.", + "pos": "noun", + "word_frequency": 682 + }, + { + "word": "atto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "act", + "romanization": "atto", + "example_sentence_native": "È stato un atto di coraggio.", + "example_sentence_english": "It was an act of courage.", + "pos": "noun", + "word_frequency": 683 + }, + { + "word": "autore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "author", + "romanization": "autore", + "example_sentence_native": "L'autore del libro è molto famoso.", + "example_sentence_english": "The author of the book is very famous.", + "pos": "noun", + "word_frequency": 684 + }, + { + "word": "campagna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "countryside", + "romanization": "campagna", + "example_sentence_native": "Mi piace passeggiare in campagna.", + "example_sentence_english": "I like to walk in the countryside.", + "pos": "noun", + "word_frequency": 685 + }, + { + "word": "colore", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "color", + "romanization": "colore", + "example_sentence_native": "Qual è il tuo colore preferito?", + "example_sentence_english": "What is your favorite color?", + "pos": "noun", + "word_frequency": 686 + }, + { + "word": "commissione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "errand", + "romanization": "commissione", + "example_sentence_native": "Devo fare una commissione in banca.", + "example_sentence_english": "I have to run an errand at the bank.", + "pos": "noun", + "word_frequency": 687 + }, + { + "word": "difesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defense", + "romanization": "difesa", + "example_sentence_native": "La difesa ha presentato nuove prove.", + "example_sentence_english": "The defense presented new evidence.", + "pos": "noun", + "word_frequency": 688 + }, + { + "word": "diretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "direct", + "romanization": "diretto", + "example_sentence_native": "Prendiamo il treno diretto per Roma.", + "example_sentence_english": "Let's take the direct train to Rome.", + "pos": "adjective", + "word_frequency": 689 + }, + { + "word": "direttore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "director", + "romanization": "direttore", + "example_sentence_native": "Il direttore ha approvato il progetto.", + "example_sentence_english": "The director approved the project.", + "pos": "noun", + "word_frequency": 690 + }, + { + "word": "evento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "event", + "romanization": "evento", + "example_sentence_native": "L'evento è stato un grande successo.", + "example_sentence_english": "The event was a great success.", + "pos": "noun", + "word_frequency": 691 + }, + { + "word": "infine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finally", + "romanization": "infine", + "example_sentence_native": "Infine, siamo arrivati a casa.", + "example_sentence_english": "Finally, we arrived home.", + "pos": "adverb", + "word_frequency": 693 + }, + { + "word": "là", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there", + "romanization": "là", + "example_sentence_native": "Metti il libro là, per favore.", + "example_sentence_english": "Put the book there, please.", + "pos": "adverb", + "word_frequency": 694 + }, + { + "word": "matrimonio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marriage", + "romanization": "matrimonio", + "example_sentence_native": "Il loro matrimonio è stato bellissimo.", + "example_sentence_english": "Their marriage was beautiful.", + "pos": "noun", + "word_frequency": 695 + }, + { + "word": "morto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dead person", + "romanization": "morto", + "example_sentence_native": "Hanno trovato un morto sulla strada.", + "example_sentence_english": "They found a dead person on the road.", + "pos": "noun", + "word_frequency": 696 + }, + { + "word": "porto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "port", + "romanization": "porto", + "example_sentence_native": "La nave è arrivata al porto.", + "example_sentence_english": "The ship arrived at the port.", + "pos": "noun", + "word_frequency": 697 + }, + { + "word": "pratica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "procedure", + "romanization": "pratica", + "example_sentence_native": "Dobbiamo sbrigare alcune pratiche burocratiche.", + "example_sentence_english": "We need to handle some bureaucratic procedures.", + "pos": "noun", + "word_frequency": 698 + }, + { + "word": "qualunque", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "any", + "romanization": "qualunque", + "example_sentence_native": "Puoi scegliere qualunque libro ti piaccia.", + "example_sentence_english": "You can choose any book you like.", + "pos": "adjective", + "word_frequency": 699 + }, + { + "word": "scena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scene", + "romanization": "scena", + "example_sentence_native": "La scena del crimine era isolata.", + "example_sentence_english": "The crime scene was isolated.", + "pos": "noun", + "word_frequency": 700 + }, + { + "word": "storico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "historical", + "romanization": "storico", + "example_sentence_native": "È un evento storico importante.", + "example_sentence_english": "It is an important historical event.", + "pos": "adjective", + "word_frequency": 701 + }, + { + "word": "vivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alive", + "romanization": "vivo", + "example_sentence_native": "È ancora vivo, per fortuna.", + "example_sentence_english": "He is still alive, fortunately.", + "pos": "adjective", + "word_frequency": 702 + }, + { + "word": "aria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "air", + "romanization": "aria", + "example_sentence_native": "Abbiamo bisogno di aria fresca.", + "example_sentence_english": "We need fresh air.", + "pos": "noun", + "word_frequency": 703 + }, + { + "word": "assolutamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolutely", + "romanization": "assolutamente", + "example_sentence_native": "È assolutamente necessario.", + "example_sentence_english": "It is absolutely necessary.", + "pos": "adverb", + "word_frequency": 704 + }, + { + "word": "capitale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "capital", + "romanization": "capitale", + "example_sentence_native": "Roma è la capitale d'Italia.", + "example_sentence_english": "Rome is the capital of Italy.", + "pos": "noun", + "word_frequency": 705 + }, + { + "word": "mattina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "morning", + "romanization": "mattina", + "example_sentence_native": "Ci vediamo domani mattina.", + "example_sentence_english": "See you tomorrow morning.", + "pos": "noun", + "word_frequency": 706 + }, + { + "word": "militare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "military", + "romanization": "militare", + "example_sentence_native": "Ha una carriera militare.", + "example_sentence_english": "He has a military career.", + "pos": "adjective", + "word_frequency": 707 + }, + { + "word": "riuscire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to succeed", + "romanization": "riuscire", + "example_sentence_native": "Spero di riuscire a finire il lavoro.", + "example_sentence_english": "I hope to succeed in finishing the work.", + "pos": "verb", + "word_frequency": 709 + }, + { + "word": "salute", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "health", + "romanization": "salute", + "example_sentence_native": "La sua salute è migliorata.", + "example_sentence_english": "His health has improved.", + "pos": "noun", + "word_frequency": 710 + }, + { + "word": "settore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sector", + "romanization": "settore", + "example_sentence_native": "Lavora nel settore tecnologico.", + "example_sentence_english": "He works in the technology sector.", + "pos": "noun", + "word_frequency": 711 + }, + { + "word": "ufficio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "office", + "romanization": "ufficio", + "example_sentence_native": "Vado in ufficio ogni mattina.", + "example_sentence_english": "I go to the office every morning.", + "pos": "noun", + "word_frequency": 713 + }, + { + "word": "uscire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to go out", + "romanization": "uscire", + "example_sentence_native": "Dobbiamo uscire presto.", + "example_sentence_english": "We need to go out early.", + "pos": "verb", + "word_frequency": 714 + }, + { + "word": "chiamare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to call", + "romanization": "chiamare", + "example_sentence_native": "Ti chiamo più tardi.", + "example_sentence_english": "I'll call you later.", + "pos": "verb", + "word_frequency": 715 + }, + { + "word": "difficoltà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "difficulty", + "romanization": "difficoltà", + "example_sentence_native": "Ho avuto qualche difficoltà a capire.", + "example_sentence_english": "I had some difficulty understanding.", + "pos": "noun", + "word_frequency": 716 + }, + { + "word": "lettera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "letter", + "romanization": "lettera", + "example_sentence_native": "Ho ricevuto una lettera importante.", + "example_sentence_english": "I received an important letter.", + "pos": "noun", + "word_frequency": 718 + }, + { + "word": "mangiare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to eat", + "romanization": "mangiare", + "example_sentence_native": "Mi piace mangiare la pasta.", + "example_sentence_english": "I like to eat pasta.", + "pos": "verb", + "word_frequency": 719 + }, + { + "word": "partita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "match", + "romanization": "partita", + "example_sentence_native": "La partita di calcio è stata emozionante.", + "example_sentence_english": "The soccer match was exciting.", + "pos": "noun", + "word_frequency": 720 + }, + { + "word": "pieno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "full", + "romanization": "pieno", + "example_sentence_native": "Il bicchiere è pieno d'acqua.", + "example_sentence_english": "The glass is full of water.", + "pos": "adjective", + "word_frequency": 721 + }, + { + "word": "precedente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "previous", + "romanization": "precedente", + "example_sentence_native": "Abbiamo discusso l'argomento nella riunione precedente.", + "example_sentence_english": "We discussed the topic in the previous meeting.", + "pos": "adjective", + "word_frequency": 722 + }, + { + "word": "restare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to stay", + "romanization": "restare", + "example_sentence_native": "Voglio restare a casa stasera.", + "example_sentence_english": "I want to stay home tonight.", + "pos": "verb", + "word_frequency": 723 + }, + { + "word": "riferimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reference", + "romanization": "riferimento", + "example_sentence_native": "Ho bisogno di un riferimento per il mio curriculum.", + "example_sentence_english": "I need a reference for my resume.", + "pos": "noun", + "word_frequency": 724 + }, + { + "word": "signore", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sir", + "romanization": "signore", + "example_sentence_native": "Il signore è in attesa.", + "example_sentence_english": "The gentleman is waiting.", + "pos": "noun", + "word_frequency": 725 + }, + { + "word": "animale", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "animal", + "romanization": "animale", + "example_sentence_native": "Il mio animale preferito è il cane.", + "example_sentence_english": "My favorite animal is the dog.", + "pos": "noun", + "word_frequency": 727 + }, + { + "word": "azienda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company", + "romanization": "azienda", + "example_sentence_native": "Lavora per una grande azienda.", + "example_sentence_english": "He works for a large company.", + "pos": "noun", + "word_frequency": 728 + }, + { + "word": "cielo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sky", + "romanization": "cielo", + "example_sentence_native": "Il cielo è azzurro oggi.", + "example_sentence_english": "The sky is blue today.", + "pos": "noun", + "word_frequency": 729 + }, + { + "word": "conoscere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to know", + "romanization": "conoscere", + "example_sentence_native": "Non conosco quella persona.", + "example_sentence_english": "I don't know that person.", + "pos": "verb", + "word_frequency": 730 + }, + { + "word": "esattamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exactly", + "romanization": "esattamente", + "example_sentence_native": "È esattamente quello che intendevo.", + "example_sentence_english": "That's exactly what I meant.", + "pos": "adverb", + "word_frequency": 732 + }, + { + "word": "finire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to finish", + "romanization": "finire", + "example_sentence_native": "Dobbiamo finire il lavoro entro stasera.", + "example_sentence_english": "We need to finish the work by tonight.", + "pos": "verb", + "word_frequency": 733 + }, + { + "word": "lasciare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to leave", + "romanization": "lasciare", + "example_sentence_native": "Ho lasciato le chiavi sul tavolo.", + "example_sentence_english": "I left the keys on the table.", + "pos": "verb", + "word_frequency": 735 + }, + { + "word": "modello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model", + "romanization": "modello", + "example_sentence_native": "Questo è un nuovo modello di auto.", + "example_sentence_english": "This is a new car model.", + "pos": "noun", + "word_frequency": 736 + }, + { + "word": "nascere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be born", + "romanization": "nascere", + "example_sentence_native": "Sono nato a Roma.", + "example_sentence_english": "I was born in Rome.", + "pos": "verb", + "word_frequency": 737 + }, + { + "word": "ritorno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "return", + "romanization": "ritorno", + "example_sentence_native": "Il suo ritorno è atteso per domani.", + "example_sentence_english": "His return is expected tomorrow.", + "pos": "noun", + "word_frequency": 738 + }, + { + "word": "scoprire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discover", + "romanization": "scoprire", + "example_sentence_native": "Voglio scoprire la verità.", + "example_sentence_english": "I want to discover the truth.", + "pos": "verb", + "word_frequency": 739 + }, + { + "word": "social", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "social", + "romanization": "social", + "example_sentence_native": "I social media sono molto popolari.", + "example_sentence_english": "Social media are very popular.", + "pos": "adjective", + "word_frequency": 740 + }, + { + "word": "vittoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victory", + "romanization": "vittoria", + "example_sentence_native": "La squadra ha celebrato la sua vittoria.", + "example_sentence_english": "The team celebrated its victory.", + "pos": "noun", + "word_frequency": 741 + }, + { + "word": "bianco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "white", + "romanization": "bianco", + "example_sentence_native": "La neve è bianca.", + "example_sentence_english": "The snow is white.", + "pos": "adjective", + "word_frequency": 742 + }, + { + "word": "canzone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "song", + "romanization": "canzone", + "example_sentence_native": "Questa è la mia canzone preferita.", + "example_sentence_english": "This is my favorite song.", + "pos": "noun", + "word_frequency": 743 + }, + { + "word": "compagnia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "company", + "romanization": "compagnia", + "example_sentence_native": "Mi piace la sua compagnia.", + "example_sentence_english": "I like his company.", + "pos": "noun", + "word_frequency": 745 + }, + { + "word": "dubbio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doubt", + "romanization": "dubbio", + "example_sentence_native": "Non ho alcun dubbio al riguardo.", + "example_sentence_english": "I have no doubt about it.", + "pos": "noun", + "word_frequency": 746 + }, + { + "word": "evitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to avoid", + "romanization": "evitare", + "example_sentence_native": "Cerco di evitare il traffico.", + "example_sentence_english": "I try to avoid traffic.", + "pos": "verb", + "word_frequency": 747 + }, + { + "word": "giustizia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justice", + "romanization": "giustizia", + "example_sentence_native": "La giustizia è fondamentale in una società.", + "example_sentence_english": "Justice is fundamental in a society.", + "pos": "noun", + "word_frequency": 748 + }, + { + "word": "medico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor", + "romanization": "medico", + "example_sentence_native": "Ho un appuntamento con il medico.", + "example_sentence_english": "I have an appointment with the doctor.", + "pos": "noun", + "word_frequency": 749 + }, + { + "word": "merito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merit", + "romanization": "merito", + "example_sentence_native": "Il successo è tutto merito suo.", + "example_sentence_english": "The success is all thanks to him.", + "pos": "noun", + "word_frequency": 750 + }, + { + "word": "mille", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thousand", + "romanization": "mille", + "example_sentence_native": "Ci sono mille persone alla festa.", + "example_sentence_english": "There are a thousand people at the party.", + "pos": "noun", + "word_frequency": 751 + }, + { + "word": "noto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "known", + "romanization": "noto", + "example_sentence_native": "È un artista molto noto.", + "example_sentence_english": "He is a very known artist.", + "pos": "adjective", + "word_frequency": 752 + }, + { + "word": "radio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "radio", + "romanization": "radio", + "example_sentence_native": "Ascolto la radio ogni mattina.", + "example_sentence_english": "I listen to the radio every morning.", + "pos": "noun", + "word_frequency": 754 + }, + { + "word": "ricevere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to receive", + "romanization": "ricevere", + "example_sentence_native": "Ho ricevuto una lettera.", + "example_sentence_english": "I received a letter.", + "pos": "verb", + "word_frequency": 755 + }, + { + "word": "scorso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "last", + "romanization": "scorso", + "example_sentence_native": "La settimana scorsa sono andato a Roma.", + "example_sentence_english": "Last week I went to Rome.", + "pos": "adjective", + "word_frequency": 756 + }, + { + "word": "struttura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "structure", + "romanization": "struttura", + "example_sentence_native": "La struttura dell'edificio è molto solida.", + "example_sentence_english": "The structure of the building is very solid.", + "pos": "noun", + "word_frequency": 757 + }, + { + "word": "aperto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "open", + "romanization": "aperto", + "example_sentence_native": "La porta è aperta.", + "example_sentence_english": "The door is open.", + "pos": "adjective", + "word_frequency": 758 + }, + { + "word": "capacità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capacity;ability", + "romanization": "capacità", + "example_sentence_native": "Ha una grande capacità di apprendimento.", + "example_sentence_english": "He has a great capacity for learning.", + "pos": "noun", + "word_frequency": 760 + }, + { + "word": "comunicazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communication", + "romanization": "comunicazione", + "example_sentence_native": "La comunicazione è fondamentale in ogni relazione.", + "example_sentence_english": "Communication is fundamental in every relationship.", + "pos": "noun", + "word_frequency": 761 + }, + { + "word": "direzione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "direction;management", + "romanization": "direzione", + "example_sentence_native": "Andiamo in quella direzione.", + "example_sentence_english": "We are going in that direction.", + "pos": "noun", + "word_frequency": 762 + }, + { + "word": "ministero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ministry", + "romanization": "ministero", + "example_sentence_native": "Lavora al Ministero della Salute.", + "example_sentence_english": "He works at the Ministry of Health.", + "pos": "noun", + "word_frequency": 763 + }, + { + "word": "normale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normal", + "romanization": "normale", + "example_sentence_native": "È una situazione normale.", + "example_sentence_english": "It's a normal situation.", + "pos": "adjective", + "word_frequency": 764 + }, + { + "word": "richiesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "request;demand", + "romanization": "richiesta", + "example_sentence_native": "Ho fatto una richiesta al servizio clienti.", + "example_sentence_english": "I made a request to customer service.", + "pos": "noun", + "word_frequency": 767 + }, + { + "word": "rimanere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remain;to stay", + "romanization": "rimanere", + "example_sentence_native": "Voglio rimanere a casa stasera.", + "example_sentence_english": "I want to stay home tonight.", + "pos": "verb", + "word_frequency": 768 + }, + { + "word": "confronto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparison;confrontation", + "romanization": "confronto", + "example_sentence_native": "Facciamo un confronto tra le due opzioni.", + "example_sentence_english": "Let's make a comparison between the two options.", + "pos": "noun", + "word_frequency": 770 + }, + { + "word": "gay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gay", + "romanization": "gay", + "example_sentence_native": "È un film con un personaggio gay.", + "example_sentence_english": "It's a film with a gay character.", + "pos": "adjective", + "word_frequency": 771 + }, + { + "word": "premio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prize;award", + "romanization": "premio", + "example_sentence_native": "Ha vinto il primo premio.", + "example_sentence_english": "He won the first prize.", + "pos": "noun", + "word_frequency": 772 + }, + { + "word": "rendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to render;to make;to give back", + "romanization": "rendere", + "example_sentence_native": "Questo lavoro mi rende felice.", + "example_sentence_english": "This job makes me happy.", + "pos": "verb", + "word_frequency": 773 + }, + { + "word": "sacco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sack;bag;a lot (in \"un sacco di\")", + "romanization": "sacco", + "example_sentence_native": "Ho comprato un sacco di patate.", + "example_sentence_english": "I bought a sack of potatoes.", + "pos": "noun", + "word_frequency": 774 + }, + { + "word": "sette", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seven", + "romanization": "sette", + "example_sentence_native": "Ci sono sette giorni in una settimana.", + "example_sentence_english": "There are seven days in a week.", + "pos": "adjective", + "word_frequency": 775 + }, + { + "word": "studente", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "student", + "romanization": "studente", + "example_sentence_native": "Sono uno studente universitario.", + "example_sentence_english": "I am a university student.", + "pos": "noun", + "word_frequency": 776 + }, + { + "word": "tardi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "late", + "romanization": "tardi", + "example_sentence_native": "Sono arrivato tardi all'appuntamento.", + "example_sentence_english": "I arrived late for the appointment.", + "pos": "adverb", + "word_frequency": 777 + }, + { + "word": "attuale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current;actual (in the sense of current)", + "romanization": "attuale", + "example_sentence_native": "Qual è la situazione attuale?", + "example_sentence_english": "What is the current situation?", + "pos": "adjective", + "word_frequency": 779 + }, + { + "word": "bocca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mouth", + "romanization": "bocca", + "example_sentence_native": "Apri la bocca.", + "example_sentence_english": "Open your mouth.", + "pos": "noun", + "word_frequency": 780 + }, + { + "word": "commento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comment", + "romanization": "commento", + "example_sentence_native": "Lascia un commento sotto il video.", + "example_sentence_english": "Leave a comment below the video.", + "pos": "noun", + "word_frequency": 781 + }, + { + "word": "contrario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "contrary;opposite", + "romanization": "contrario", + "example_sentence_native": "Sono del parere contrario.", + "example_sentence_english": "I am of the opposite opinion.", + "pos": "adjective", + "word_frequency": 782 + }, + { + "word": "costruzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction;building", + "romanization": "costruzione", + "example_sentence_native": "La costruzione del nuovo ponte è iniziata.", + "example_sentence_english": "The construction of the new bridge has begun.", + "pos": "noun", + "word_frequency": 783 + }, + { + "word": "documento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "document", + "romanization": "documento", + "example_sentence_native": "Ho bisogno di un documento d'identità.", + "example_sentence_english": "I need an identity document.", + "pos": "noun", + "word_frequency": 784 + }, + { + "word": "edizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edition;issue", + "romanization": "edizione", + "example_sentence_native": "Questa è la prima edizione del libro.", + "example_sentence_english": "This is the first edition of the book.", + "pos": "noun", + "word_frequency": 785 + }, + { + "word": "elezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "election", + "romanization": "elezione", + "example_sentence_native": "Le prossime elezioni saranno a maggio.", + "example_sentence_english": "The next elections will be in May.", + "pos": "noun", + "word_frequency": 786 + }, + { + "word": "europeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "European", + "romanization": "europeo", + "example_sentence_native": "Parliamo della cultura europea.", + "example_sentence_english": "We are talking about European culture.", + "pos": "adjective", + "word_frequency": 787 + }, + { + "word": "fase", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phase;stage", + "romanization": "fase", + "example_sentence_native": "Siamo nella fase finale del progetto.", + "example_sentence_english": "We are in the final phase of the project.", + "pos": "noun", + "word_frequency": 788 + }, + { + "word": "giocare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to play", + "romanization": "giocare", + "example_sentence_native": "Mi piace giocare a calcio.", + "example_sentence_english": "I like to play soccer.", + "pos": "verb", + "word_frequency": 790 + }, + { + "word": "interessante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interesting", + "romanization": "interessante", + "example_sentence_native": "Questo libro è molto interessante.", + "example_sentence_english": "This book is very interesting.", + "pos": "adjective", + "word_frequency": 791 + }, + { + "word": "membro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "member", + "romanization": "membro", + "example_sentence_native": "È un membro del club.", + "example_sentence_english": "He is a member of the club.", + "pos": "noun", + "word_frequency": 792 + }, + { + "word": "memoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "memory", + "romanization": "memoria", + "example_sentence_native": "Ho una buona memoria per i nomi.", + "example_sentence_english": "I have a good memory for names.", + "pos": "noun", + "word_frequency": 793 + }, + { + "word": "naturale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "natural", + "romanization": "naturale", + "example_sentence_native": "È un processo naturale.", + "example_sentence_english": "It's a natural process.", + "pos": "adjective", + "word_frequency": 794 + }, + { + "word": "origine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "origin", + "romanization": "origine", + "example_sentence_native": "Qual è l'origine di questa parola?", + "example_sentence_english": "What is the origin of this word?", + "pos": "noun", + "word_frequency": 795 + }, + { + "word": "paio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pair;couple", + "romanization": "paio", + "example_sentence_native": "Ho comprato un paio di scarpe nuove.", + "example_sentence_english": "I bought a new pair of shoes.", + "pos": "noun", + "word_frequency": 796 + }, + { + "word": "peggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worse", + "romanization": "peggio", + "example_sentence_native": "Oggi mi sento peggio di ieri.", + "example_sentence_english": "Today I feel worse than yesterday.", + "pos": "adverb", + "word_frequency": 797 + }, + { + "word": "perfetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfect", + "romanization": "perfetto", + "example_sentence_native": "Il suo italiano è perfetto.", + "example_sentence_english": "His Italian is perfect.", + "pos": "adjective", + "word_frequency": 798 + }, + { + "word": "presa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grip;hold;socket;outlet", + "romanization": "presa", + "example_sentence_native": "La presa elettrica non funziona.", + "example_sentence_english": "The electrical socket doesn't work.", + "pos": "noun", + "word_frequency": 799 + }, + { + "word": "purtroppo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfortunately", + "romanization": "purtroppo", + "example_sentence_native": "Purtroppo, non possiamo venire alla festa.", + "example_sentence_english": "Unfortunately, we cannot come to the party.", + "pos": "adverb", + "word_frequency": 800 + }, + { + "word": "regno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kingdom", + "romanization": "regno", + "example_sentence_native": "Il regno era governato da un re saggio.", + "example_sentence_english": "The kingdom was ruled by a wise king.", + "pos": "noun", + "word_frequency": 801 + }, + { + "word": "rosso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "red", + "romanization": "rosso", + "example_sentence_native": "La macchina è di colore rosso.", + "example_sentence_english": "The car is red.", + "pos": "adjective", + "word_frequency": 802 + }, + { + "word": "sezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "section", + "romanization": "sezione", + "example_sentence_native": "Leggi la sezione tre del libro.", + "example_sentence_english": "Read section three of the book.", + "pos": "noun", + "word_frequency": 803 + }, + { + "word": "tenere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hold;to keep", + "romanization": "tenere", + "example_sentence_native": "Puoi tenere la mia borsa per un momento?", + "example_sentence_english": "Can you hold my bag for a moment?", + "pos": "verb", + "word_frequency": 805 + }, + { + "word": "vincere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to win", + "romanization": "vincere", + "example_sentence_native": "Spero di vincere la lotteria.", + "example_sentence_english": "I hope to win the lottery.", + "pos": "verb", + "word_frequency": 806 + }, + { + "word": "accesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "access", + "romanization": "accesso", + "example_sentence_native": "L'accesso è consentito solo al personale autorizzato.", + "example_sentence_english": "Access is permitted only to authorized personnel.", + "pos": "noun", + "word_frequency": 807 + }, + { + "word": "analisi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analysis", + "romanization": "analisi", + "example_sentence_native": "Dobbiamo fare un'analisi approfondita dei dati.", + "example_sentence_english": "We need to do a thorough analysis of the data.", + "pos": "noun", + "word_frequency": 809 + }, + { + "word": "conoscenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knowledge", + "romanization": "conoscenza", + "example_sentence_native": "La conoscenza è potere.", + "example_sentence_english": "Knowledge is power.", + "pos": "noun", + "word_frequency": 810 + }, + { + "word": "domenica", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Sunday", + "romanization": "domenica", + "example_sentence_native": "Ci vediamo domenica prossima.", + "example_sentence_english": "See you next Sunday.", + "pos": "noun", + "word_frequency": 811 + }, + { + "word": "materiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "material", + "romanization": "materiale", + "example_sentence_native": "Abbiamo bisogno di più materiale per il progetto.", + "example_sentence_english": "We need more material for the project.", + "pos": "noun", + "word_frequency": 812 + }, + { + "word": "presentare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to present;to introduce", + "romanization": "presentare", + "example_sentence_native": "Vorrei presentarti un mio amico.", + "example_sentence_english": "I would like to introduce you to a friend of mine.", + "pos": "verb", + "word_frequency": 816 + }, + { + "word": "pro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pro;advantage", + "romanization": "pro", + "example_sentence_native": "Dobbiamo considerare i pro e i contro di questa decisione.", + "example_sentence_english": "We need to consider the pros and cons of this decision.", + "pos": "noun", + "word_frequency": 817 + }, + { + "word": "proposta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proposal", + "romanization": "proposta", + "example_sentence_native": "La sua proposta è stata accettata.", + "example_sentence_english": "His proposal was accepted.", + "pos": "noun", + "word_frequency": 818 + }, + { + "word": "provare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to try;to feel", + "romanization": "provare", + "example_sentence_native": "Voglio provare questo nuovo ristorante.", + "example_sentence_english": "I want to try this new restaurant.", + "pos": "verb", + "word_frequency": 819 + }, + { + "word": "responsabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "responsibility", + "romanization": "responsabilità", + "example_sentence_native": "È una grande responsabilità.", + "example_sentence_english": "It's a big responsibility.", + "pos": "noun", + "word_frequency": 820 + }, + { + "word": "ricordare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remember", + "romanization": "ricordare", + "example_sentence_native": "Non riesco a ricordare il suo nome.", + "example_sentence_english": "I can't remember his name.", + "pos": "verb", + "word_frequency": 821 + }, + { + "word": "sport", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sport", + "romanization": "sport", + "example_sentence_native": "Il mio sport preferito è il calcio.", + "example_sentence_english": "My favorite sport is soccer.", + "pos": "noun", + "word_frequency": 822 + }, + { + "word": "succedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen;to succeed", + "romanization": "succedere", + "example_sentence_native": "Cosa è successo ieri sera?", + "example_sentence_english": "What happened last night?", + "pos": "verb", + "word_frequency": 823 + }, + { + "word": "uscita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exit;outing", + "romanization": "uscita", + "example_sentence_native": "L'uscita è a destra.", + "example_sentence_english": "The exit is on the right.", + "pos": "noun", + "word_frequency": 824 + }, + { + "word": "visita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "visit", + "romanization": "visita", + "example_sentence_native": "Faremo una visita al museo.", + "example_sentence_english": "We will pay a visit to the museum.", + "pos": "noun", + "word_frequency": 825 + }, + { + "word": "altrimenti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "otherwise", + "romanization": "altrimenti", + "example_sentence_native": "Devi studiare, altrimenti non passerai l'esame.", + "example_sentence_english": "You must study, otherwise you won't pass the exam.", + "pos": "adverb", + "word_frequency": 826 + }, + { + "word": "arrivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arrival", + "romanization": "arrivo", + "example_sentence_native": "L'orario di arrivo è alle dieci.", + "example_sentence_english": "The arrival time is at ten.", + "pos": "noun", + "word_frequency": 827 + }, + { + "word": "distanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distance", + "romanization": "distanza", + "example_sentence_native": "La distanza tra le due città è di cento chilometri.", + "example_sentence_english": "The distance between the two cities is one hundred kilometers.", + "pos": "noun", + "word_frequency": 828 + }, + { + "word": "lega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "league;alloy", + "romanization": "lega", + "example_sentence_native": "La squadra gioca nella lega maggiore.", + "example_sentence_english": "The team plays in the major league.", + "pos": "noun", + "word_frequency": 830 + }, + { + "word": "marito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "husband", + "romanization": "marito", + "example_sentence_native": "Mio marito è un bravo cuoco.", + "example_sentence_english": "My husband is a good cook.", + "pos": "noun", + "word_frequency": 831 + }, + { + "word": "obiettivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective;goal", + "romanization": "obiettivo", + "example_sentence_native": "Il nostro obiettivo è finire il progetto in tempo.", + "example_sentence_english": "Our objective is to finish the project on time.", + "pos": "noun", + "word_frequency": 832 + }, + { + "word": "pagare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to pay", + "romanization": "pagare", + "example_sentence_native": "Devo pagare il conto.", + "example_sentence_english": "I need to pay the bill.", + "pos": "verb", + "word_frequency": 833 + }, + { + "word": "palazzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "palace;building", + "romanization": "palazzo", + "example_sentence_native": "Il palazzo è molto antico.", + "example_sentence_english": "The palace is very old.", + "pos": "noun", + "word_frequency": 834 + }, + { + "word": "scegliere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to choose", + "romanization": "scegliere", + "example_sentence_native": "Devi scegliere tra due opzioni.", + "example_sentence_english": "You must choose between two options.", + "pos": "verb", + "word_frequency": 835 + }, + { + "word": "teatro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "theater", + "romanization": "teatro", + "example_sentence_native": "Andiamo a teatro stasera.", + "example_sentence_english": "Let's go to the theater tonight.", + "pos": "noun", + "word_frequency": 837 + }, + { + "word": "abitante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabitant", + "romanization": "abitante", + "example_sentence_native": "Gli abitanti della città sono molto amichevoli.", + "example_sentence_english": "The inhabitants of the city are very friendly.", + "pos": "noun", + "word_frequency": 838 + }, + { + "word": "area", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "area", + "romanization": "area", + "example_sentence_native": "Questa è un'area protetta.", + "example_sentence_english": "This is a protected area.", + "pos": "noun", + "word_frequency": 839 + }, + { + "word": "cambio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "change;exchange rate", + "romanization": "cambio", + "example_sentence_native": "Il cambio euro-dollaro è favorevole oggi.", + "example_sentence_english": "The euro-dollar exchange rate is favorable today.", + "pos": "noun", + "word_frequency": 841 + }, + { + "word": "capello", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hair (single strand)", + "romanization": "capello", + "example_sentence_native": "Ho trovato un capello nel piatto.", + "example_sentence_english": "I found a hair in the dish.", + "pos": "noun", + "word_frequency": 842 + }, + { + "word": "economia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economy;economics", + "romanization": "economia", + "example_sentence_native": "L'economia del paese sta crescendo.", + "example_sentence_english": "The country's economy is growing.", + "pos": "noun", + "word_frequency": 844 + }, + { + "word": "economico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "economic;cheap", + "romanization": "economico", + "example_sentence_native": "Ho comprato un biglietto molto economico.", + "example_sentence_english": "I bought a very cheap ticket.", + "pos": "adjective", + "word_frequency": 845 + }, + { + "word": "mancare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to miss;to lack", + "romanization": "mancare", + "example_sentence_native": "Mi manchi molto.", + "example_sentence_english": "I miss you very much.", + "pos": "verb", + "word_frequency": 846 + }, + { + "word": "metro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meter;subway", + "romanization": "metro", + "example_sentence_native": "Prendiamo la metro per andare in centro.", + "example_sentence_english": "Let's take the subway to go downtown.", + "pos": "noun", + "word_frequency": 847 + }, + { + "word": "misura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measure;size", + "romanization": "misura", + "example_sentence_native": "Qual è la tua misura di scarpe?", + "example_sentence_english": "What is your shoe size?", + "pos": "noun", + "word_frequency": 848 + }, + { + "word": "necessità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "necessity;need", + "romanization": "necessità", + "example_sentence_native": "Non c'è nessuna necessità di preoccuparsi.", + "example_sentence_english": "There is no necessity to worry.", + "pos": "noun", + "word_frequency": 849 + }, + { + "word": "regola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rule", + "romanization": "regola", + "example_sentence_native": "Dobbiamo seguire le regole.", + "example_sentence_english": "We must follow the rules.", + "pos": "noun", + "word_frequency": 850 + }, + { + "word": "santo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holy;saint", + "romanization": "santo", + "example_sentence_native": "È un giorno santo per la chiesa.", + "example_sentence_english": "It is a holy day for the church.", + "pos": "adjective", + "word_frequency": 851 + }, + { + "word": "utente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "user", + "romanization": "utente", + "example_sentence_native": "Il nuovo software ha molti utenti.", + "example_sentence_english": "The new software has many users.", + "pos": "noun", + "word_frequency": 852 + }, + { + "word": "aiutare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to help", + "romanization": "aiutare", + "example_sentence_native": "Posso aiutarti?", + "example_sentence_english": "Can I help you?", + "pos": "verb", + "word_frequency": 854 + }, + { + "word": "autorità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "authority", + "romanization": "autorità", + "example_sentence_native": "Le autorità hanno emesso un avviso.", + "example_sentence_english": "The authorities issued a warning.", + "pos": "noun", + "word_frequency": 855 + }, + { + "word": "battaglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battle", + "romanization": "battaglia", + "example_sentence_native": "La battaglia fu lunga e difficile.", + "example_sentence_english": "The battle was long and difficult.", + "pos": "noun", + "word_frequency": 856 + }, + { + "word": "canale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canal;channel", + "romanization": "canale", + "example_sentence_native": "Il canale di Venezia è famoso.", + "example_sentence_english": "The canal of Venice is famous.", + "pos": "noun", + "word_frequency": 857 + }, + { + "word": "cane", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dog", + "romanization": "cane", + "example_sentence_native": "Il mio cane è molto fedele.", + "example_sentence_english": "My dog is very loyal.", + "pos": "noun", + "word_frequency": 858 + }, + { + "word": "culturale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultural", + "romanization": "culturale", + "example_sentence_native": "Abbiamo visitato molti siti culturali.", + "example_sentence_english": "We visited many cultural sites.", + "pos": "adjective", + "word_frequency": 860 + }, + { + "word": "dollaro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dollar", + "romanization": "dollaro", + "example_sentence_native": "Quanto costa in dollari?", + "example_sentence_english": "How much does it cost in dollars?", + "pos": "noun", + "word_frequency": 861 + }, + { + "word": "est", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "east", + "romanization": "est", + "example_sentence_native": "Il sole sorge a est.", + "example_sentence_english": "The sun rises in the east.", + "pos": "noun", + "word_frequency": 862 + }, + { + "word": "importanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "importance", + "romanization": "importanza", + "example_sentence_native": "Questo è di grande importanza.", + "example_sentence_english": "This is of great importance.", + "pos": "noun", + "word_frequency": 864 + }, + { + "word": "insomma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in short;in conclusion;anyway", + "romanization": "insomma", + "example_sentence_native": "Insomma, è stata una giornata difficile.", + "example_sentence_english": "In short, it was a difficult day.", + "pos": "adverb", + "word_frequency": 865 + }, + { + "word": "odio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hatred", + "romanization": "odio", + "example_sentence_native": "L'odio non porta a nulla di buono.", + "example_sentence_english": "Hatred leads to nothing good.", + "pos": "noun", + "word_frequency": 866 + }, + { + "word": "originale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "original", + "romanization": "originale", + "example_sentence_native": "Questa è la versione originale del documento.", + "example_sentence_english": "This is the original version of the document.", + "pos": "adjective", + "word_frequency": 867 + }, + { + "word": "parlamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliament", + "romanization": "parlamento", + "example_sentence_native": "Il parlamento ha votato la nuova legge.", + "example_sentence_english": "The parliament voted on the new law.", + "pos": "noun", + "word_frequency": 868 + }, + { + "word": "peso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weight", + "romanization": "peso", + "example_sentence_native": "Qual è il tuo peso?", + "example_sentence_english": "What is your weight?", + "pos": "noun", + "word_frequency": 869 + }, + { + "word": "proposito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purpose;intention", + "romanization": "proposito", + "example_sentence_native": "Qual è il tuo proposito per il nuovo anno?", + "example_sentence_english": "What is your purpose for the new year?", + "pos": "noun", + "word_frequency": 870 + }, + { + "word": "segno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign;mark", + "romanization": "segno", + "example_sentence_native": "Ho visto un segno strano nel cielo.", + "example_sentence_english": "I saw a strange sign in the sky.", + "pos": "noun", + "word_frequency": 871 + }, + { + "word": "speranza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hope", + "romanization": "speranza", + "example_sentence_native": "C'è sempre speranza.", + "example_sentence_english": "There is always hope.", + "pos": "noun", + "word_frequency": 872 + }, + { + "word": "appunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exactly;precisely", + "romanization": "appunto", + "example_sentence_native": "È appunto quello che stavo pensando.", + "example_sentence_english": "That's exactly what I was thinking.", + "pos": "adverb", + "word_frequency": 873 + }, + { + "word": "contatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contact", + "romanization": "contatto", + "example_sentence_native": "Rimaniamo in contatto.", + "example_sentence_english": "Let's stay in contact.", + "pos": "noun", + "word_frequency": 874 + }, + { + "word": "costituzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitution", + "romanization": "costituzione", + "example_sentence_native": "La Costituzione italiana è stata scritta nel 1948.", + "example_sentence_english": "The Italian Constitution was written in 1948.", + "pos": "noun", + "word_frequency": 875 + }, + { + "word": "elemento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "element", + "romanization": "elemento", + "example_sentence_native": "Ogni elemento è importante per il successo.", + "example_sentence_english": "Every element is important for success.", + "pos": "noun", + "word_frequency": 876 + }, + { + "word": "festival", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "festival", + "romanization": "festival", + "example_sentence_native": "Andremo al festival musicale quest'estate.", + "example_sentence_english": "We will go to the music festival this summer.", + "pos": "noun", + "word_frequency": 877 + }, + { + "word": "fonte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "source;fountain", + "romanization": "fonte", + "example_sentence_native": "Questa informazione proviene da una fonte affidabile.", + "example_sentence_english": "This information comes from a reliable source.", + "pos": "noun", + "word_frequency": 878 + }, + { + "word": "funzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "function;role", + "romanization": "funzione", + "example_sentence_native": "Qual è la funzione di questo pulsante?", + "example_sentence_english": "What is the function of this button?", + "pos": "noun", + "word_frequency": 879 + }, + { + "word": "impossibile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "impossible", + "romanization": "impossibile", + "example_sentence_native": "È impossibile finire tutto questo lavoro in un giorno.", + "example_sentence_english": "It's impossible to finish all this work in one day.", + "pos": "adjective", + "word_frequency": 881 + }, + { + "word": "lontano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "far", + "romanization": "lontano", + "example_sentence_native": "Vivono molto lontano da qui.", + "example_sentence_english": "They live very far from here.", + "pos": "adverb", + "word_frequency": 882 + }, + { + "word": "massa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mass", + "romanization": "massa", + "example_sentence_native": "Una grande massa di persone si è radunata in piazza.", + "example_sentence_english": "A large mass of people gathered in the square.", + "pos": "noun", + "word_frequency": 883 + }, + { + "word": "medio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "average;middle", + "romanization": "medio", + "example_sentence_native": "Il prezzo medio di una casa è aumentato.", + "example_sentence_english": "The average price of a house has increased.", + "pos": "adjective", + "word_frequency": 884 + }, + { + "word": "messa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mass (church service)", + "romanization": "messa", + "example_sentence_native": "Andiamo a messa ogni domenica.", + "example_sentence_english": "We go to mass every Sunday.", + "pos": "noun", + "word_frequency": 885 + }, + { + "word": "natale", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Christmas", + "romanization": "natale", + "example_sentence_native": "A Natale ci riuniamo con tutta la famiglia.", + "example_sentence_english": "At Christmas, we gather with the whole family.", + "pos": "noun", + "word_frequency": 886 + }, + { + "word": "oggetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "object", + "romanization": "oggetto", + "example_sentence_native": "Ho trovato un oggetto strano per terra.", + "example_sentence_english": "I found a strange object on the ground.", + "pos": "noun", + "word_frequency": 887 + }, + { + "word": "opinione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opinion", + "romanization": "opinione", + "example_sentence_native": "Qual è la tua opinione su questo argomento?", + "example_sentence_english": "What is your opinion on this topic?", + "pos": "noun", + "word_frequency": 888 + }, + { + "word": "ottimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excellent;very good", + "romanization": "ottimo", + "example_sentence_native": "Questo ristorante ha un ottimo cibo.", + "example_sentence_english": "This restaurant has excellent food.", + "pos": "adjective", + "word_frequency": 889 + }, + { + "word": "pezzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piece", + "romanization": "pezzo", + "example_sentence_native": "Vorrei un pezzo di torta, per favore.", + "example_sentence_english": "I would like a piece of cake, please.", + "pos": "noun", + "word_frequency": 890 + }, + { + "word": "test", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "test", + "romanization": "test", + "example_sentence_native": "Ho un test di matematica domani.", + "example_sentence_english": "I have a math test tomorrow.", + "pos": "noun", + "word_frequency": 891 + }, + { + "word": "umano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "human", + "romanization": "umano", + "example_sentence_native": "È un errore umano, può capitare a tutti.", + "example_sentence_english": "It's a human error, it can happen to anyone.", + "pos": "adjective", + "word_frequency": 892 + }, + { + "word": "affare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deal;business", + "romanization": "affare", + "example_sentence_native": "Ho fatto un buon affare comprando questa macchina.", + "example_sentence_english": "I got a good deal buying this car.", + "pos": "noun", + "word_frequency": 893 + }, + { + "word": "cinema", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cinema;movie theater", + "romanization": "cinema", + "example_sentence_native": "Andiamo al cinema stasera?", + "example_sentence_english": "Shall we go to the cinema tonight?", + "pos": "noun", + "word_frequency": 894 + }, + { + "word": "considerare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consider", + "romanization": "considerare", + "example_sentence_native": "Devi considerare tutte le opzioni prima di decidere.", + "example_sentence_english": "You must consider all options before deciding.", + "pos": "verb", + "word_frequency": 895 + }, + { + "word": "decisione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decision", + "romanization": "decisione", + "example_sentence_native": "Ho preso una decisione importante per il mio futuro.", + "example_sentence_english": "I made an important decision for my future.", + "pos": "noun", + "word_frequency": 897 + }, + { + "word": "dolore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pain", + "romanization": "dolore", + "example_sentence_native": "Sento un forte dolore alla schiena.", + "example_sentence_english": "I feel a strong pain in my back.", + "pos": "noun", + "word_frequency": 898 + }, + { + "word": "energia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energy", + "romanization": "energia", + "example_sentence_native": "Ho bisogno di più energia per finire la giornata.", + "example_sentence_english": "I need more energy to finish the day.", + "pos": "noun", + "word_frequency": 899 + }, + { + "word": "errore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "error;mistake", + "romanization": "errore", + "example_sentence_native": "Ho fatto un errore nel calcolo.", + "example_sentence_english": "I made a mistake in the calculation.", + "pos": "noun", + "word_frequency": 900 + }, + { + "word": "fede", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "faith", + "romanization": "fede", + "example_sentence_native": "Ho molta fede nel futuro.", + "example_sentence_english": "I have a lot of faith in the future.", + "pos": "noun", + "word_frequency": 901 + }, + { + "word": "lavoratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worker", + "romanization": "lavoratore", + "example_sentence_native": "I lavoratori hanno scioperato per migliori condizioni.", + "example_sentence_english": "The workers went on strike for better conditions.", + "pos": "noun", + "word_frequency": 903 + }, + { + "word": "link", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "link", + "romanization": "link", + "example_sentence_native": "Puoi mandarmi il link a quell'articolo?", + "example_sentence_english": "Can you send me the link to that article?", + "pos": "noun", + "word_frequency": 904 + }, + { + "word": "particolarmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particularly", + "romanization": "particolarmente", + "example_sentence_native": "Questo libro è particolarmente interessante.", + "example_sentence_english": "This book is particularly interesting.", + "pos": "adverb", + "word_frequency": 905 + }, + { + "word": "permesso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "permission;permit", + "romanization": "permesso", + "example_sentence_native": "Ho chiesto il permesso di uscire prima.", + "example_sentence_english": "I asked for permission to leave early.", + "pos": "noun", + "word_frequency": 906 + }, + { + "word": "quest'anno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "this year", + "romanization": "quest'anno", + "example_sentence_native": "Quest'anno andremo in vacanza in Italia.", + "example_sentence_english": "This year we will go on vacation to Italy.", + "pos": "adverb", + "word_frequency": 907 + }, + { + "word": "raccolta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection;harvest", + "romanization": "raccolta", + "example_sentence_native": "La raccolta delle olive inizia a ottobre.", + "example_sentence_english": "The olive harvest begins in October.", + "pos": "noun", + "word_frequency": 908 + }, + { + "word": "raggiungere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reach;to achieve", + "romanization": "raggiungere", + "example_sentence_native": "Dobbiamo raggiungere la stazione prima delle cinque.", + "example_sentence_english": "We must reach the station before five.", + "pos": "verb", + "word_frequency": 909 + }, + { + "word": "roba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stuff;things", + "romanization": "roba", + "example_sentence_native": "Ho un sacco di roba da fare oggi.", + "example_sentence_english": "I have a lot of stuff to do today.", + "pos": "noun", + "word_frequency": 910 + }, + { + "word": "silenzio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silence", + "romanization": "silenzio", + "example_sentence_native": "Per favore, fate silenzio in biblioteca.", + "example_sentence_english": "Please, be silent in the library.", + "pos": "noun", + "word_frequency": 911 + }, + { + "word": "stasera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tonight", + "romanization": "stasera", + "example_sentence_native": "Cosa facciamo stasera?", + "example_sentence_english": "What are we doing tonight?", + "pos": "adverb", + "word_frequency": 912 + }, + { + "word": "unità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unit;unity", + "romanization": "unità", + "example_sentence_native": "L'unità della squadra è fondamentale per il successo.", + "example_sentence_english": "Team unity is fundamental for success.", + "pos": "noun", + "word_frequency": 913 + }, + { + "word": "utile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "useful", + "romanization": "utile", + "example_sentence_native": "Questo strumento è molto utile per il mio lavoro.", + "example_sentence_english": "This tool is very useful for my work.", + "pos": "adjective", + "word_frequency": 914 + }, + { + "word": "amare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to love", + "romanization": "amare", + "example_sentence_native": "Io amo la musica classica.", + "example_sentence_english": "I love classical music.", + "pos": "verb", + "word_frequency": 915 + }, + { + "word": "aumento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "increase;rise", + "romanization": "aumento", + "example_sentence_native": "C'è stato un aumento dei prezzi del carburante.", + "example_sentence_english": "There has been an increase in fuel prices.", + "pos": "noun", + "word_frequency": 916 + }, + { + "word": "benissimo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "very well", + "romanization": "benissimo", + "example_sentence_native": "Sto benissimo, grazie.", + "example_sentence_english": "I'm very well, thank you.", + "pos": "adverb", + "word_frequency": 917 + }, + { + "word": "club", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "club", + "romanization": "club", + "example_sentence_native": "Mi sono iscritto a un nuovo club sportivo.", + "example_sentence_english": "I joined a new sports club.", + "pos": "noun", + "word_frequency": 918 + }, + { + "word": "coppia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pair;couple", + "romanization": "coppia", + "example_sentence_native": "Sono una bella coppia.", + "example_sentence_english": "They are a beautiful couple.", + "pos": "noun", + "word_frequency": 919 + }, + { + "word": "crescita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "growth", + "romanization": "crescita", + "example_sentence_native": "L'azienda ha mostrato una forte crescita quest'anno.", + "example_sentence_english": "The company showed strong growth this year.", + "pos": "noun", + "word_frequency": 920 + }, + { + "word": "critica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "criticism", + "romanization": "critica", + "example_sentence_native": "Ha ricevuto molte critiche per la sua decisione.", + "example_sentence_english": "He received a lot of criticism for his decision.", + "pos": "noun", + "word_frequency": 921 + }, + { + "word": "figura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "figure", + "romanization": "figura", + "example_sentence_native": "La sua figura si stagliava contro il tramonto.", + "example_sentence_english": "His figure stood out against the sunset.", + "pos": "noun", + "word_frequency": 922 + }, + { + "word": "funzionare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to work", + "romanization": "funzionare", + "example_sentence_native": "Il computer non funziona bene oggi.", + "example_sentence_english": "The computer is not working well today.", + "pos": "verb", + "word_frequency": 923 + }, + { + "word": "gara", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "race", + "romanization": "gara", + "example_sentence_native": "Ha vinto la gara di corsa.", + "example_sentence_english": "He won the running race.", + "pos": "noun", + "word_frequency": 924 + }, + { + "word": "gestione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "romanization": "gestione", + "example_sentence_native": "La gestione del progetto è stata eccellente.", + "example_sentence_english": "The project management was excellent.", + "pos": "noun", + "word_frequency": 925 + }, + { + "word": "parco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "park", + "romanization": "parco", + "example_sentence_native": "Andiamo al parco a giocare.", + "example_sentence_english": "Let's go to the park to play.", + "pos": "noun", + "word_frequency": 927 + }, + { + "word": "pronto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ready", + "romanization": "pronto", + "example_sentence_native": "Sono pronto per partire.", + "example_sentence_english": "I am ready to leave.", + "pos": "adjective", + "word_frequency": 928 + }, + { + "word": "sala", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "room", + "romanization": "sala", + "example_sentence_native": "Ci vediamo nella sala riunioni.", + "example_sentence_english": "We'll meet in the meeting room.", + "pos": "noun", + "word_frequency": 929 + }, + { + "word": "sbagliare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to make a mistake", + "romanization": "sbagliare", + "example_sentence_native": "Ho sbagliato la risposta.", + "example_sentence_english": "I got the answer wrong.", + "pos": "verb", + "word_frequency": 930 + }, + { + "word": "seguente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "following", + "romanization": "seguente", + "example_sentence_native": "Leggi il paragrafo seguente.", + "example_sentence_english": "Read the following paragraph.", + "pos": "adjective", + "word_frequency": 931 + }, + { + "word": "spesa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shopping", + "romanization": "spesa", + "example_sentence_native": "Devo fare la spesa oggi.", + "example_sentence_english": "I have to do the shopping today.", + "pos": "noun", + "word_frequency": 932 + }, + { + "word": "tradizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tradition", + "romanization": "tradizione", + "example_sentence_native": "È una vecchia tradizione della nostra famiglia.", + "example_sentence_english": "It's an old tradition of our family.", + "pos": "noun", + "word_frequency": 933 + }, + { + "word": "all'inizio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "at the beginning", + "romanization": "all'inizio", + "example_sentence_native": "All'inizio era difficile, ma poi è migliorato.", + "example_sentence_english": "At the beginning it was difficult, but then it got better.", + "pos": "adverb", + "word_frequency": 934 + }, + { + "word": "colpo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blow", + "romanization": "colpo", + "example_sentence_native": "Ha sentito un colpo alla porta.", + "example_sentence_english": "He heard a knock at the door.", + "pos": "noun", + "word_frequency": 935 + }, + { + "word": "conseguenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequence", + "romanization": "conseguenza", + "example_sentence_native": "Le sue azioni hanno avuto gravi conseguenze.", + "example_sentence_english": "His actions had serious consequences.", + "pos": "noun", + "word_frequency": 936 + }, + { + "word": "costo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cost", + "romanization": "costo", + "example_sentence_native": "Qual è il costo totale?", + "example_sentence_english": "What is the total cost?", + "pos": "noun", + "word_frequency": 937 + }, + { + "word": "cucina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kitchen", + "romanization": "cucina", + "example_sentence_native": "La cucina è il cuore della casa.", + "example_sentence_english": "The kitchen is the heart of the home.", + "pos": "noun", + "word_frequency": 938 + }, + { + "word": "discussione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discussion", + "romanization": "discussione", + "example_sentence_native": "Abbiamo avuto una lunga discussione sul problema.", + "example_sentence_english": "We had a long discussion about the problem.", + "pos": "noun", + "word_frequency": 939 + }, + { + "word": "disposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disposal", + "romanization": "disposizione", + "example_sentence_native": "Sono a tua completa disposizione.", + "example_sentence_english": "I am at your complete disposal.", + "pos": "noun", + "word_frequency": 940 + }, + { + "word": "fiducia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trust", + "romanization": "fiducia", + "example_sentence_native": "Ho piena fiducia in te.", + "example_sentence_english": "I have full trust in you.", + "pos": "noun", + "word_frequency": 941 + }, + { + "word": "indietro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back", + "romanization": "indietro", + "example_sentence_native": "Guarda indietro!", + "example_sentence_english": "Look back!", + "pos": "adverb", + "word_frequency": 942 + }, + { + "word": "maggioranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majority", + "romanization": "maggioranza", + "example_sentence_native": "La maggioranza ha votato a favore.", + "example_sentence_english": "The majority voted in favor.", + "pos": "noun", + "word_frequency": 943 + }, + { + "word": "mancanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lack", + "romanization": "mancanza", + "example_sentence_native": "C'è una mancanza di acqua in questa zona.", + "example_sentence_english": "There is a lack of water in this area.", + "pos": "noun", + "word_frequency": 944 + }, + { + "word": "numeroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numerous", + "romanization": "numeroso", + "example_sentence_native": "Hanno partecipato un numeroso gruppo di persone.", + "example_sentence_english": "A numerous group of people participated.", + "pos": "adjective", + "word_frequency": 945 + }, + { + "word": "otto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eight", + "romanization": "otto", + "example_sentence_native": "Ho otto libri.", + "example_sentence_english": "I have eight books.", + "pos": "adjective", + "word_frequency": 946 + }, + { + "word": "passaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passage", + "romanization": "passaggio", + "example_sentence_native": "Il passaggio è bloccato.", + "example_sentence_english": "The passage is blocked.", + "pos": "noun", + "word_frequency": 947 + }, + { + "word": "profilo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "profile", + "romanization": "profilo", + "example_sentence_native": "Aggiorna il tuo profilo online.", + "example_sentence_english": "Update your online profile.", + "pos": "noun", + "word_frequency": 949 + }, + { + "word": "rappresentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to represent", + "romanization": "rappresentare", + "example_sentence_native": "Questo simbolo rappresenta la pace.", + "example_sentence_english": "This symbol represents peace.", + "pos": "verb", + "word_frequency": 950 + }, + { + "word": "rispondere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to answer", + "romanization": "rispondere", + "example_sentence_native": "Per favore, rispondi alla mia domanda.", + "example_sentence_english": "Please, answer my question.", + "pos": "verb", + "word_frequency": 951 + }, + { + "word": "serio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "serious", + "romanization": "serio", + "example_sentence_native": "È una persona molto seria.", + "example_sentence_english": "He is a very serious person.", + "pos": "adjective", + "word_frequency": 952 + }, + { + "word": "strumento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tool", + "romanization": "strumento", + "example_sentence_native": "Ha usato uno strumento per riparare il motore.", + "example_sentence_english": "He used a tool to repair the engine.", + "pos": "noun", + "word_frequency": 953 + }, + { + "word": "attacco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attack", + "romanization": "attacco", + "example_sentence_native": "L'attacco è avvenuto di notte.", + "example_sentence_english": "The attack happened at night.", + "pos": "noun", + "word_frequency": 954 + }, + { + "word": "banca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bank", + "romanization": "banca", + "example_sentence_native": "Devo andare in banca.", + "example_sentence_english": "I need to go to the bank.", + "pos": "noun", + "word_frequency": 955 + }, + { + "word": "conte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "count (title)", + "romanization": "conte", + "example_sentence_native": "Il Conte Dracula è un personaggio famoso.", + "example_sentence_english": "Count Dracula is a famous character.", + "pos": "noun", + "word_frequency": 956 + }, + { + "word": "intervento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervention", + "romanization": "intervento", + "example_sentence_native": "L'intervento del medico è stato necessario.", + "example_sentence_english": "The doctor's intervention was necessary.", + "pos": "noun", + "word_frequency": 958 + }, + { + "word": "lotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "struggle", + "romanization": "lotta", + "example_sentence_native": "La lotta per la libertà è stata lunga.", + "example_sentence_english": "The struggle for freedom was long.", + "pos": "noun", + "word_frequency": 960 + }, + { + "word": "materia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subject", + "romanization": "materia", + "example_sentence_native": "Qual è la tua materia preferita a scuola?", + "example_sentence_english": "What is your favorite subject at school?", + "pos": "noun", + "word_frequency": 961 + }, + { + "word": "onore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honor", + "romanization": "onore", + "example_sentence_native": "È un grande onore essere qui.", + "example_sentence_english": "It's a great honor to be here.", + "pos": "noun", + "word_frequency": 962 + }, + { + "word": "personaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character", + "romanization": "personaggio", + "example_sentence_native": "Il personaggio principale del libro è molto interessante.", + "example_sentence_english": "The main character of the book is very interesting.", + "pos": "noun", + "word_frequency": 963 + }, + { + "word": "popolare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "popular", + "romanization": "popolare", + "example_sentence_native": "Quella canzone è molto popolare tra i giovani.", + "example_sentence_english": "That song is very popular among young people.", + "pos": "adjective", + "word_frequency": 964 + }, + { + "word": "responsabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "responsible", + "romanization": "responsabile", + "example_sentence_native": "Lui è responsabile del progetto.", + "example_sentence_english": "He is responsible for the project.", + "pos": "adjective", + "word_frequency": 965 + }, + { + "word": "sale", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salt", + "romanization": "sale", + "example_sentence_native": "Puoi passarmi il sale, per favore?", + "example_sentence_english": "Can you pass me the salt, please?", + "pos": "noun", + "word_frequency": 966 + }, + { + "word": "stazione", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "station", + "romanization": "stazione", + "example_sentence_native": "La stazione dei treni è vicina.", + "example_sentence_english": "The train station is nearby.", + "pos": "noun", + "word_frequency": 967 + }, + { + "word": "stella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "star", + "romanization": "stella", + "example_sentence_native": "Guarda quante stelle ci sono nel cielo.", + "example_sentence_english": "Look how many stars there are in the sky.", + "pos": "noun", + "word_frequency": 968 + }, + { + "word": "bagno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bathroom", + "romanization": "bagno", + "example_sentence_native": "Dov'è il bagno, per favore?", + "example_sentence_english": "Where is the bathroom, please?", + "pos": "noun", + "word_frequency": 970 + }, + { + "word": "caratteristica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic", + "romanization": "caratteristica", + "example_sentence_native": "Una caratteristica importante di questo software è la sua velocità.", + "example_sentence_english": "An important feature of this software is its speed.", + "pos": "noun", + "word_frequency": 971 + }, + { + "word": "chiamata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "call", + "romanization": "chiamata", + "example_sentence_native": "Ho ricevuto una chiamata importante.", + "example_sentence_english": "I received an important call.", + "pos": "noun", + "word_frequency": 972 + }, + { + "word": "computer", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "computer", + "romanization": "computer", + "example_sentence_native": "Ho comprato un nuovo computer.", + "example_sentence_english": "I bought a new computer.", + "pos": "noun", + "word_frequency": 973 + }, + { + "word": "concetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concept", + "romanization": "concetto", + "example_sentence_native": "È un concetto difficile da capire.", + "example_sentence_english": "It's a difficult concept to understand.", + "pos": "noun", + "word_frequency": 974 + }, + { + "word": "concorso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition", + "romanization": "concorso", + "example_sentence_native": "Ha vinto il concorso di canto.", + "example_sentence_english": "She won the singing competition.", + "pos": "noun", + "word_frequency": 975 + }, + { + "word": "contenuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "content", + "romanization": "contenuto", + "example_sentence_native": "Il contenuto del libro è molto interessante.", + "example_sentence_english": "The content of the book is very interesting.", + "pos": "noun", + "word_frequency": 976 + }, + { + "word": "grave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serious", + "romanization": "grave", + "example_sentence_native": "La situazione è molto grave.", + "example_sentence_english": "The situation is very serious.", + "pos": "adjective", + "word_frequency": 979 + }, + { + "word": "mandato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mandate", + "romanization": "mandato", + "example_sentence_native": "Il suo mandato scade l'anno prossimo.", + "example_sentence_english": "His term expires next year.", + "pos": "noun", + "word_frequency": 980 + }, + { + "word": "peccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shame", + "romanization": "peccato", + "example_sentence_native": "Che peccato che non puoi venire!", + "example_sentence_english": "What a shame you can't come!", + "pos": "noun", + "word_frequency": 982 + }, + { + "word": "quantità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quantity", + "romanization": "quantità", + "example_sentence_native": "Abbiamo bisogno di una grande quantità di acqua.", + "example_sentence_english": "We need a large quantity of water.", + "pos": "noun", + "word_frequency": 983 + }, + { + "word": "religione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religion", + "romanization": "religione", + "example_sentence_native": "La religione gioca un ruolo importante nella sua vita.", + "example_sentence_english": "Religion plays an important role in his life.", + "pos": "noun", + "word_frequency": 984 + }, + { + "word": "riforma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reform", + "romanization": "riforma", + "example_sentence_native": "Il governo ha proposto una nuova riforma.", + "example_sentence_english": "The government proposed a new reform.", + "pos": "noun", + "word_frequency": 985 + }, + { + "word": "sabato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Saturday", + "romanization": "sabato", + "example_sentence_native": "Ci vediamo sabato prossimo.", + "example_sentence_english": "See you next Saturday.", + "pos": "noun", + "word_frequency": 987 + }, + { + "word": "sindaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mayor", + "romanization": "sindaco", + "example_sentence_native": "Il sindaco ha inaugurato la nuova piazza.", + "example_sentence_english": "The mayor inaugurated the new square.", + "pos": "noun", + "word_frequency": 988 + }, + { + "word": "tribunale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "court", + "romanization": "tribunale", + "example_sentence_native": "Il caso sarà discusso in tribunale.", + "example_sentence_english": "The case will be discussed in court.", + "pos": "noun", + "word_frequency": 989 + }, + { + "word": "vendita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sale", + "romanization": "vendita", + "example_sentence_native": "La casa è in vendita.", + "example_sentence_english": "The house is for sale.", + "pos": "noun", + "word_frequency": 990 + }, + { + "word": "ambiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environment", + "romanization": "ambiente", + "example_sentence_native": "Dobbiamo proteggere l'ambiente.", + "example_sentence_english": "We must protect the environment.", + "pos": "noun", + "word_frequency": 991 + }, + { + "word": "amministrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administration", + "romanization": "amministrazione", + "example_sentence_native": "L'amministrazione pubblica è complessa.", + "example_sentence_english": "Public administration is complex.", + "pos": "noun", + "word_frequency": 992 + }, + { + "word": "associazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "association", + "romanization": "associazione", + "example_sentence_native": "Ha fondato un'associazione di volontariato.", + "example_sentence_english": "She founded a volunteer association.", + "pos": "noun", + "word_frequency": 993 + }, + { + "word": "categoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "category", + "romanization": "categoria", + "example_sentence_native": "Questo prodotto rientra in una nuova categoria.", + "example_sentence_english": "This product falls into a new category.", + "pos": "noun", + "word_frequency": 994 + }, + { + "word": "decreto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decree", + "romanization": "decreto", + "example_sentence_native": "Il governo ha emesso un nuovo decreto.", + "example_sentence_english": "The government issued a new decree.", + "pos": "noun", + "word_frequency": 995 + }, + { + "word": "fame", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hunger", + "romanization": "fame", + "example_sentence_native": "Ho molta fame.", + "example_sentence_english": "I am very hungry.", + "pos": "noun", + "word_frequency": 996 + }, + { + "word": "fisica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physics", + "romanization": "fisica", + "example_sentence_native": "La fisica è una materia complessa.", + "example_sentence_english": "Physics is a complex subject.", + "pos": "noun", + "word_frequency": 998 + }, + { + "word": "intanto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meanwhile", + "romanization": "intanto", + "example_sentence_native": "Intanto, preparo la cena.", + "example_sentence_english": "Meanwhile, I'll prepare dinner.", + "pos": "adverb", + "word_frequency": 1000 + }, + { + "word": "mantenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to maintain", + "romanization": "mantenere", + "example_sentence_native": "Dobbiamo mantenere la calma.", + "example_sentence_english": "We must maintain calm.", + "pos": "verb", + "word_frequency": 1002 + }, + { + "word": "pelle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skin", + "romanization": "pelle", + "example_sentence_native": "La sua pelle è molto sensibile.", + "example_sentence_english": "Her skin is very sensitive.", + "pos": "noun", + "word_frequency": 1003 + }, + { + "word": "risorsa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resource", + "romanization": "risorsa", + "example_sentence_native": "L'acqua è una risorsa preziosa.", + "example_sentence_english": "Water is a precious resource.", + "pos": "noun", + "word_frequency": 1004 + }, + { + "word": "significato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meaning", + "romanization": "significato", + "example_sentence_native": "Qual è il significato di questa parola?", + "example_sentence_english": "What is the meaning of this word?", + "pos": "noun", + "word_frequency": 1006 + }, + { + "word": "sogno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dream", + "romanization": "sogno", + "example_sentence_native": "Ho fatto un sogno strano la scorsa notte.", + "example_sentence_english": "I had a strange dream last night.", + "pos": "noun", + "word_frequency": 1007 + }, + { + "word": "sorella", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sister", + "romanization": "sorella", + "example_sentence_native": "Mia sorella vive a Roma.", + "example_sentence_english": "My sister lives in Rome.", + "pos": "noun", + "word_frequency": 1008 + }, + { + "word": "supporto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "support", + "romanization": "supporto", + "example_sentence_native": "Abbiamo bisogno del tuo supporto.", + "example_sentence_english": "We need your support.", + "pos": "noun", + "word_frequency": 1009 + }, + { + "word": "teoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theory", + "romanization": "teoria", + "example_sentence_native": "Questa è solo una teoria.", + "example_sentence_english": "This is just a theory.", + "pos": "noun", + "word_frequency": 1010 + }, + { + "word": "uccidere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kill", + "romanization": "uccidere", + "example_sentence_native": "Non dovresti mai uccidere un animale senza motivo.", + "example_sentence_english": "You should never kill an animal without reason.", + "pos": "verb", + "word_frequency": 1011 + }, + { + "word": "verde", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "green", + "romanization": "verde", + "example_sentence_native": "Il prato è molto verde.", + "example_sentence_english": "The lawn is very green.", + "pos": "adjective", + "word_frequency": 1012 + }, + { + "word": "violenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violence", + "romanization": "violenza", + "example_sentence_native": "La violenza non risolve i problemi.", + "example_sentence_english": "Violence does not solve problems.", + "pos": "noun", + "word_frequency": 1013 + }, + { + "word": "amica", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "friend (female)", + "romanization": "amica", + "example_sentence_native": "Lei è la mia migliore amica.", + "example_sentence_english": "She is my best friend.", + "pos": "noun", + "word_frequency": 1014 + }, + { + "word": "bar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bar;cafe", + "romanization": "bar", + "example_sentence_native": "Andiamo al bar per un caffè.", + "example_sentence_english": "Let's go to the bar for a coffee.", + "pos": "noun", + "word_frequency": 1015 + }, + { + "word": "blog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blog", + "romanization": "blog", + "example_sentence_native": "Scrivo un blog di viaggi.", + "example_sentence_english": "I write a travel blog.", + "pos": "noun", + "word_frequency": 1016 + }, + { + "word": "contesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "context", + "romanization": "contesto", + "example_sentence_native": "Devi considerare il contesto.", + "example_sentence_english": "You must consider the context.", + "pos": "noun", + "word_frequency": 1018 + }, + { + "word": "estate", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "summer", + "romanization": "estate", + "example_sentence_native": "L'estate è la mia stagione preferita.", + "example_sentence_english": "Summer is my favorite season.", + "pos": "noun", + "word_frequency": 1019 + }, + { + "word": "facilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easily", + "romanization": "facilmente", + "example_sentence_native": "Puoi trovare facilmente la stazione.", + "example_sentence_english": "You can easily find the station.", + "pos": "adverb", + "word_frequency": 1020 + }, + { + "word": "intero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entire;whole", + "romanization": "intero", + "example_sentence_native": "Ho letto l'intero libro.", + "example_sentence_english": "I read the entire book.", + "pos": "adjective", + "word_frequency": 1021 + }, + { + "word": "legale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legal", + "romanization": "legale", + "example_sentence_native": "È una procedura legale.", + "example_sentence_english": "It's a legal procedure.", + "pos": "adjective", + "word_frequency": 1022 + }, + { + "word": "miliardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billion", + "romanization": "miliardo", + "example_sentence_native": "La popolazione mondiale supera i sette miliardi.", + "example_sentence_english": "The world population exceeds seven billion.", + "pos": "noun", + "word_frequency": 1023 + }, + { + "word": "offerta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offer;supply", + "romanization": "offerta", + "example_sentence_native": "Ho ricevuto un'ottima offerta di lavoro.", + "example_sentence_english": "I received a great job offer.", + "pos": "noun", + "word_frequency": 1024 + }, + { + "word": "organizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organization", + "romanization": "organizzazione", + "example_sentence_native": "L'organizzazione dell'evento è stata perfetta.", + "example_sentence_english": "The organization of the event was perfect.", + "pos": "noun", + "word_frequency": 1025 + }, + { + "word": "permettere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to allow;to permit", + "romanization": "permettere", + "example_sentence_native": "Non ti permetto di fare questo.", + "example_sentence_english": "I don't allow you to do this.", + "pos": "verb", + "word_frequency": 1026 + }, + { + "word": "pressione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressure", + "romanization": "pressione", + "example_sentence_native": "Sento molta pressione al lavoro.", + "example_sentence_english": "I feel a lot of pressure at work.", + "pos": "noun", + "word_frequency": 1027 + }, + { + "word": "privato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "private", + "romanization": "privato", + "example_sentence_native": "Questa è una proprietà privata.", + "example_sentence_english": "This is private property.", + "pos": "adjective", + "word_frequency": 1028 + }, + { + "word": "spettacolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "show;spectacle", + "romanization": "spettacolo", + "example_sentence_native": "Lo spettacolo è iniziato alle otto.", + "example_sentence_english": "The show started at eight.", + "pos": "noun", + "word_frequency": 1029 + }, + { + "word": "spirito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirit", + "romanization": "spirito", + "example_sentence_native": "Ha un grande spirito di avventura.", + "example_sentence_english": "He has a great spirit of adventure.", + "pos": "noun", + "word_frequency": 1030 + }, + { + "word": "attualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currently", + "romanization": "attualmente", + "example_sentence_native": "Attualmente, vivo a Milano.", + "example_sentence_english": "Currently, I live in Milan.", + "pos": "adverb", + "word_frequency": 1032 + }, + { + "word": "caffè", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coffee", + "romanization": "caffè", + "example_sentence_native": "Vorrei un caffè, per favore.", + "example_sentence_english": "I would like a coffee, please.", + "pos": "noun", + "word_frequency": 1033 + }, + { + "word": "coraggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courage", + "romanization": "coraggio", + "example_sentence_native": "Ci vuole molto coraggio per fare questo.", + "example_sentence_english": "It takes a lot of courage to do this.", + "pos": "noun", + "word_frequency": 1034 + }, + { + "word": "dolce", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sweet;gentle", + "romanization": "dolce", + "example_sentence_native": "Questo dolce è delizioso.", + "example_sentence_english": "This dessert is delicious.", + "pos": "adjective", + "word_frequency": 1035 + }, + { + "word": "partecipazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participation", + "romanization": "partecipazione", + "example_sentence_native": "La sua partecipazione è stata fondamentale.", + "example_sentence_english": "His participation was fundamental.", + "pos": "noun", + "word_frequency": 1037 + }, + { + "word": "percorso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;route", + "romanization": "percorso", + "example_sentence_native": "Abbiamo seguito un percorso lungo il fiume.", + "example_sentence_english": "We followed a path along the river.", + "pos": "noun", + "word_frequency": 1038 + }, + { + "word": "pericolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "danger", + "romanization": "pericolo", + "example_sentence_native": "C'è un pericolo di caduta.", + "example_sentence_english": "There is a danger of falling.", + "pos": "noun", + "word_frequency": 1039 + }, + { + "word": "protezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protection", + "romanization": "protezione", + "example_sentence_native": "La protezione dell'ambiente è fondamentale.", + "example_sentence_english": "Environmental protection is fundamental.", + "pos": "noun", + "word_frequency": 1041 + }, + { + "word": "velocità", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "speed", + "romanization": "velocità", + "example_sentence_native": "La velocità del vento era impressionante.", + "example_sentence_english": "The wind speed was impressive.", + "pos": "noun", + "word_frequency": 1042 + }, + { + "word": "addirittura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "even;actually;really", + "romanization": "addirittura", + "example_sentence_native": "Ha mangiato addirittura tre pizze.", + "example_sentence_english": "He even ate three pizzas.", + "pos": "adverb", + "word_frequency": 1043 + }, + { + "word": "anima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soul;spirit", + "romanization": "anima", + "example_sentence_native": "Credo che ogni persona abbia un'anima.", + "example_sentence_english": "I believe every person has a soul.", + "pos": "noun", + "word_frequency": 1044 + }, + { + "word": "carattere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "character;personality", + "romanization": "carattere", + "example_sentence_native": "Ha un carattere molto forte.", + "example_sentence_english": "He has a very strong character.", + "pos": "noun", + "word_frequency": 1045 + }, + { + "word": "carne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meat", + "romanization": "carne", + "example_sentence_native": "Non mangio carne rossa.", + "example_sentence_english": "I don't eat red meat.", + "pos": "noun", + "word_frequency": 1046 + }, + { + "word": "cento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hundred", + "romanization": "cento", + "example_sentence_native": "Ci sono cento persone alla festa.", + "example_sentence_english": "There are a hundred people at the party.", + "pos": "adjective", + "word_frequency": 1047 + }, + { + "word": "complesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complex", + "romanization": "complesso", + "example_sentence_native": "È un problema molto complesso da risolvere.", + "example_sentence_english": "It's a very complex problem to solve.", + "pos": "adjective", + "word_frequency": 1048 + }, + { + "word": "doppio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "double", + "romanization": "doppio", + "example_sentence_native": "Vorrei un caffè doppio, per favore.", + "example_sentence_english": "I would like a double coffee, please.", + "pos": "adjective", + "word_frequency": 1050 + }, + { + "word": "durare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to last", + "romanization": "durare", + "example_sentence_native": "Quanto durerà il viaggio?", + "example_sentence_english": "How long will the trip last?", + "pos": "verb", + "word_frequency": 1051 + }, + { + "word": "esercito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "army", + "romanization": "esercito", + "example_sentence_native": "L'esercito è intervenuto per aiutare.", + "example_sentence_english": "The army intervened to help.", + "pos": "noun", + "word_frequency": 1052 + }, + { + "word": "femminile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feminine;female", + "romanization": "femminile", + "example_sentence_native": "La squadra femminile ha vinto il campionato.", + "example_sentence_english": "The female team won the championship.", + "pos": "adjective", + "word_frequency": 1053 + }, + { + "word": "giornale", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "newspaper", + "romanization": "giornale", + "example_sentence_native": "Leggo il giornale ogni mattina.", + "example_sentence_english": "I read the newspaper every morning.", + "pos": "noun", + "word_frequency": 1054 + }, + { + "word": "isola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "island", + "romanization": "isola", + "example_sentence_native": "Sogniamo di vivere su un'isola tropicale.", + "example_sentence_english": "We dream of living on a tropical island.", + "pos": "noun", + "word_frequency": 1056 + }, + { + "word": "malattia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illness;disease", + "romanization": "malattia", + "example_sentence_native": "Ha preso una brutta malattia.", + "example_sentence_english": "He caught a bad illness.", + "pos": "noun", + "word_frequency": 1058 + }, + { + "word": "metodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "method", + "romanization": "metodo", + "example_sentence_native": "Dobbiamo trovare un nuovo metodo.", + "example_sentence_english": "We need to find a new method.", + "pos": "noun", + "word_frequency": 1059 + }, + { + "word": "missione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mission", + "romanization": "missione", + "example_sentence_native": "La loro missione è salvare il mondo.", + "example_sentence_english": "Their mission is to save the world.", + "pos": "noun", + "word_frequency": 1060 + }, + { + "word": "posta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mail;post", + "romanization": "posta", + "example_sentence_native": "Ho ricevuto una lettera per posta.", + "example_sentence_english": "I received a letter by mail.", + "pos": "noun", + "word_frequency": 1061 + }, + { + "word": "recente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recent", + "romanization": "recente", + "example_sentence_native": "È un evento molto recente.", + "example_sentence_english": "It's a very recent event.", + "pos": "adjective", + "word_frequency": 1062 + }, + { + "word": "rosa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pink", + "romanization": "rosa", + "example_sentence_native": "Mi piace il colore rosa.", + "example_sentence_english": "I like the color pink.", + "pos": "adjective", + "word_frequency": 1063 + }, + { + "word": "schifo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgust;grossness", + "romanization": "schifo", + "example_sentence_native": "Questo cibo fa schifo.", + "example_sentence_english": "This food is disgusting.", + "pos": "noun", + "word_frequency": 1064 + }, + { + "word": "strano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strange;odd", + "romanization": "strano", + "example_sentence_native": "È una storia molto strana.", + "example_sentence_english": "It's a very strange story.", + "pos": "adjective", + "word_frequency": 1066 + }, + { + "word": "super", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "super;great", + "romanization": "super", + "example_sentence_native": "Ha fatto un lavoro super.", + "example_sentence_english": "He did a super job.", + "pos": "adjective", + "word_frequency": 1067 + }, + { + "word": "tecnica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technique", + "romanization": "tecnica", + "example_sentence_native": "Dobbiamo migliorare la nostra tecnica.", + "example_sentence_english": "We need to improve our technique.", + "pos": "noun", + "word_frequency": 1068 + }, + { + "word": "tweet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tweet", + "romanization": "tweet", + "example_sentence_native": "Ho letto il suo ultimo tweet.", + "example_sentence_english": "I read his latest tweet.", + "pos": "noun", + "word_frequency": 1069 + }, + { + "word": "visione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vision;view", + "romanization": "visione", + "example_sentence_native": "Ha una visione chiara del futuro.", + "example_sentence_english": "He has a clear vision of the future.", + "pos": "noun", + "word_frequency": 1070 + }, + { + "word": "vittima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "victim", + "romanization": "vittima", + "example_sentence_native": "La vittima è stata soccorsa immediatamente.", + "example_sentence_english": "The victim was rescued immediately.", + "pos": "noun", + "word_frequency": 1071 + }, + { + "word": "volo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flight", + "romanization": "volo", + "example_sentence_native": "Il volo è stato cancellato a causa del maltempo.", + "example_sentence_english": "The flight was cancelled due to bad weather.", + "pos": "noun", + "word_frequency": 1072 + }, + { + "word": "argomento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "topic;argument", + "romanization": "argomento", + "example_sentence_native": "L'argomento della discussione era interessante.", + "example_sentence_english": "The topic of the discussion was interesting.", + "pos": "noun", + "word_frequency": 1073 + }, + { + "word": "bellezza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beauty", + "romanization": "bellezza", + "example_sentence_native": "La bellezza del paesaggio era mozzafiato.", + "example_sentence_english": "The beauty of the landscape was breathtaking.", + "pos": "noun", + "word_frequency": 1074 + }, + { + "word": "bravo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "good;capable;brave", + "romanization": "bravo", + "example_sentence_native": "Sei stato molto bravo a risolvere il problema.", + "example_sentence_english": "You were very good at solving the problem.", + "pos": "adjective", + "word_frequency": 1075 + }, + { + "word": "chiave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "key", + "romanization": "chiave", + "example_sentence_native": "Ho dimenticato le chiavi di casa.", + "example_sentence_english": "I forgot my house keys.", + "pos": "noun", + "word_frequency": 1076 + }, + { + "word": "collaborazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collaboration", + "romanization": "collaborazione", + "example_sentence_native": "La collaborazione è essenziale per il successo.", + "example_sentence_english": "Collaboration is essential for success.", + "pos": "noun", + "word_frequency": 1077 + }, + { + "word": "comprare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to buy", + "romanization": "comprare", + "example_sentence_native": "Voglio comprare un nuovo libro.", + "example_sentence_english": "I want to buy a new book.", + "pos": "verb", + "word_frequency": 1078 + }, + { + "word": "denaro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "money", + "romanization": "denaro", + "example_sentence_native": "Non ho abbastanza denaro per questo.", + "example_sentence_english": "I don't have enough money for this.", + "pos": "noun", + "word_frequency": 1079 + }, + { + "word": "dettaglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detail", + "romanization": "dettaglio", + "example_sentence_native": "Ogni dettaglio è importante.", + "example_sentence_english": "Every detail is important.", + "pos": "noun", + "word_frequency": 1080 + }, + { + "word": "fenomeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phenomenon", + "romanization": "fenomeno", + "example_sentence_native": "Il cambiamento climatico è un fenomeno globale.", + "example_sentence_english": "Climate change is a global phenomenon.", + "pos": "noun", + "word_frequency": 1081 + }, + { + "word": "immediatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediately", + "romanization": "immediatamente", + "example_sentence_native": "Devi agire immediatamente.", + "example_sentence_english": "You must act immediately.", + "pos": "adverb", + "word_frequency": 1083 + }, + { + "word": "interno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internal", + "romanization": "interno", + "example_sentence_native": "Il problema è di natura interna.", + "example_sentence_english": "The problem is of an internal nature.", + "pos": "adjective", + "word_frequency": 1084 + }, + { + "word": "minimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "minimum", + "romanization": "minimo", + "example_sentence_native": "Abbiamo bisogno di un minimo di tre persone.", + "example_sentence_english": "We need a minimum of three people.", + "pos": "adjective", + "word_frequency": 1085 + }, + { + "word": "museo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "museum", + "romanization": "museo", + "example_sentence_native": "Andiamo a visitare il museo domani.", + "example_sentence_english": "Let's go visit the museum tomorrow.", + "pos": "noun", + "word_frequency": 1086 + }, + { + "word": "ovunque", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "everywhere", + "romanization": "ovunque", + "example_sentence_native": "Ho cercato le chiavi ovunque.", + "example_sentence_english": "I looked for the keys everywhere.", + "pos": "adverb", + "word_frequency": 1087 + }, + { + "word": "prof", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "professor (informal)", + "romanization": "prof", + "example_sentence_native": "La prof ha spiegato bene la lezione.", + "example_sentence_english": "The professor explained the lesson well.", + "pos": "noun", + "word_frequency": 1088 + }, + { + "word": "serata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "evening (event)", + "romanization": "serata", + "example_sentence_native": "Abbiamo passato una bella serata insieme.", + "example_sentence_english": "We spent a nice evening together.", + "pos": "noun", + "word_frequency": 1089 + }, + { + "word": "signora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lady;Mrs.", + "romanization": "signora", + "example_sentence_native": "La signora Rossi è molto gentile.", + "example_sentence_english": "Mrs. Rossi is very kind.", + "pos": "noun", + "word_frequency": 1090 + }, + { + "word": "specialmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "especially", + "romanization": "specialmente", + "example_sentence_native": "Mi piace la pasta, specialmente quella al pesto.", + "example_sentence_english": "I like pasta, especially pesto pasta.", + "pos": "adverb", + "word_frequency": 1091 + }, + { + "word": "team", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "team", + "romanization": "team", + "example_sentence_native": "Lavoriamo bene come un team.", + "example_sentence_english": "We work well as a team.", + "pos": "noun", + "word_frequency": 1092 + }, + { + "word": "tecnologia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technology", + "romanization": "tecnologia", + "example_sentence_native": "La tecnologia sta cambiando il mondo.", + "example_sentence_english": "Technology is changing the world.", + "pos": "noun", + "word_frequency": 1093 + }, + { + "word": "traffico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traffic", + "romanization": "traffico", + "example_sentence_native": "C'era molto traffico stamattina.", + "example_sentence_english": "There was a lot of traffic this morning.", + "pos": "noun", + "word_frequency": 1094 + }, + { + "word": "vino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wine", + "romanization": "vino", + "example_sentence_native": "Vorrei un bicchiere di vino rosso.", + "example_sentence_english": "I would like a glass of red wine.", + "pos": "noun", + "word_frequency": 1096 + }, + { + "word": "zero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zero", + "romanization": "zero", + "example_sentence_native": "La temperatura è scesa a zero gradi.", + "example_sentence_english": "The temperature dropped to zero degrees.", + "pos": "adjective", + "word_frequency": 1097 + }, + { + "word": "aspettare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wait", + "romanization": "aspettare", + "example_sentence_native": "Devo aspettare l'autobus.", + "example_sentence_english": "I have to wait for the bus.", + "pos": "verb", + "word_frequency": 1098 + }, + { + "word": "attesa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wait;expectation", + "romanization": "attesa", + "example_sentence_native": "L'attesa è stata lunga.", + "example_sentence_english": "The wait was long.", + "pos": "noun", + "word_frequency": 1099 + }, + { + "word": "caldo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hot;warm", + "romanization": "caldo", + "example_sentence_native": "Fa molto caldo oggi.", + "example_sentence_english": "It's very hot today.", + "pos": "adjective", + "word_frequency": 1100 + }, + { + "word": "caro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "expensive;dear", + "romanization": "caro", + "example_sentence_native": "Questo vestito è troppo caro.", + "example_sentence_english": "This dress is too expensive.", + "pos": "adjective", + "word_frequency": 1101 + }, + { + "word": "cellulare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mobile phone", + "romanization": "cellulare", + "example_sentence_native": "Ho dimenticato il mio cellulare a casa.", + "example_sentence_english": "I forgot my mobile phone at home.", + "pos": "noun", + "word_frequency": 1102 + }, + { + "word": "cena", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dinner", + "romanization": "cena", + "example_sentence_native": "Cosa mangiamo per cena?", + "example_sentence_english": "What are we eating for dinner?", + "pos": "noun", + "word_frequency": 1103 + }, + { + "word": "chat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chat", + "romanization": "chat", + "example_sentence_native": "Facciamo una chat più tardi.", + "example_sentence_english": "Let's have a chat later.", + "pos": "noun", + "word_frequency": 1104 + }, + { + "word": "dedicato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dedicated", + "romanization": "dedicato", + "example_sentence_native": "Questo libro è dedicato a mia madre.", + "example_sentence_english": "This book is dedicated to my mother.", + "pos": "adjective", + "word_frequency": 1105 + }, + { + "word": "fiume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "river", + "romanization": "fiume", + "example_sentence_native": "Il fiume scorre lentamente.", + "example_sentence_english": "The river flows slowly.", + "pos": "noun", + "word_frequency": 1107 + }, + { + "word": "fondamentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamental", + "romanization": "fondamentale", + "example_sentence_native": "È fondamentale capire le basi.", + "example_sentence_english": "It's fundamental to understand the basics.", + "pos": "adjective", + "word_frequency": 1108 + }, + { + "word": "giù", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "down", + "romanization": "giù", + "example_sentence_native": "Scendi giù le scale.", + "example_sentence_english": "Go down the stairs.", + "pos": "adverb", + "word_frequency": 1109 + }, + { + "word": "impresa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "company;undertaking", + "romanization": "impresa", + "example_sentence_native": "Ha fondato la sua impresa l'anno scorso.", + "example_sentence_english": "He founded his company last year.", + "pos": "noun", + "word_frequency": 1110 + }, + { + "word": "monte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mountain", + "romanization": "monte", + "example_sentence_native": "Abbiamo scalato il monte più alto.", + "example_sentence_english": "We climbed the highest mountain.", + "pos": "noun", + "word_frequency": 1112 + }, + { + "word": "notare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notice", + "romanization": "notare", + "example_sentence_native": "Ho notato un cambiamento nel suo comportamento.", + "example_sentence_english": "I noticed a change in his behavior.", + "pos": "verb", + "word_frequency": 1113 + }, + { + "word": "solamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "only;solely", + "romanization": "solamente", + "example_sentence_native": "Ho solamente dieci euro.", + "example_sentence_english": "I only have ten euros.", + "pos": "adverb", + "word_frequency": 1114 + }, + { + "word": "tecnico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technical", + "romanization": "tecnico", + "example_sentence_native": "Ha una buona conoscenza tecnica.", + "example_sentence_english": "He has good technical knowledge.", + "pos": "adjective", + "word_frequency": 1115 + }, + { + "word": "traduzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translation", + "romanization": "traduzione", + "example_sentence_native": "Ho bisogno di una traduzione di questo documento.", + "example_sentence_english": "I need a translation of this document.", + "pos": "noun", + "word_frequency": 1116 + }, + { + "word": "volontà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will;willpower", + "romanization": "volontà", + "example_sentence_native": "Ha una forte volontà di riuscire.", + "example_sentence_english": "He has a strong will to succeed.", + "pos": "noun", + "word_frequency": 1117 + }, + { + "word": "all'estero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "abroad", + "romanization": "all'estero", + "example_sentence_native": "Vorrei studiare all'estero.", + "example_sentence_english": "I would like to study abroad.", + "pos": "adverb", + "word_frequency": 1118 + }, + { + "word": "americano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "American", + "romanization": "americano", + "example_sentence_native": "È un film americano.", + "example_sentence_english": "It's an American movie.", + "pos": "adjective", + "word_frequency": 1119 + }, + { + "word": "blu", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blue", + "romanization": "blu", + "example_sentence_native": "Il cielo è blu.", + "example_sentence_english": "The sky is blue.", + "pos": "adjective", + "word_frequency": 1120 + }, + { + "word": "capitano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captain", + "romanization": "capitano", + "example_sentence_native": "Il capitano della nave ha dato l'ordine.", + "example_sentence_english": "The captain of the ship gave the order.", + "pos": "noun", + "word_frequency": 1121 + }, + { + "word": "carriera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "career", + "romanization": "carriera", + "example_sentence_native": "Ha iniziato la sua carriera come insegnante.", + "example_sentence_english": "She started her career as a teacher.", + "pos": "noun", + "word_frequency": 1122 + }, + { + "word": "cervello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brain", + "romanization": "cervello", + "example_sentence_native": "Il cervello umano è molto complesso.", + "example_sentence_english": "The human brain is very complex.", + "pos": "noun", + "word_frequency": 1123 + }, + { + "word": "chiuso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "closed", + "romanization": "chiuso", + "example_sentence_native": "La porta è chiusa.", + "example_sentence_english": "The door is closed.", + "pos": "adjective", + "word_frequency": 1124 + }, + { + "word": "democrazia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democracy", + "romanization": "democrazia", + "example_sentence_native": "La democrazia è un sistema di governo.", + "example_sentence_english": "Democracy is a system of government.", + "pos": "noun", + "word_frequency": 1126 + }, + { + "word": "episodio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "episode", + "romanization": "episodio", + "example_sentence_native": "Ho visto l'ultimo episodio della serie.", + "example_sentence_english": "I watched the last episode of the series.", + "pos": "noun", + "word_frequency": 1127 + }, + { + "word": "esame", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exam", + "romanization": "esame", + "example_sentence_native": "Ho un esame importante domani.", + "example_sentence_english": "I have an important exam tomorrow.", + "pos": "noun", + "word_frequency": 1128 + }, + { + "word": "espressione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expression", + "romanization": "espressione", + "example_sentence_native": "La sua espressione era di sorpresa.", + "example_sentence_english": "Her expression was one of surprise.", + "pos": "noun", + "word_frequency": 1129 + }, + { + "word": "immaginare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to imagine", + "romanization": "immaginare", + "example_sentence_native": "Riesci a immaginare un mondo senza musica?", + "example_sentence_english": "Can you imagine a world without music?", + "pos": "verb", + "word_frequency": 1130 + }, + { + "word": "inutile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "useless", + "romanization": "inutile", + "example_sentence_native": "È inutile preoccuparsi così tanto.", + "example_sentence_english": "It's useless to worry so much.", + "pos": "adjective", + "word_frequency": 1131 + }, + { + "word": "operazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operation", + "romanization": "operazione", + "example_sentence_native": "L'operazione è andata bene.", + "example_sentence_english": "The operation went well.", + "pos": "noun", + "word_frequency": 1132 + }, + { + "word": "portata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope", + "romanization": "portata", + "example_sentence_native": "Il problema è di vasta portata.", + "example_sentence_english": "The problem is of wide scope.", + "pos": "noun", + "word_frequency": 1133 + }, + { + "word": "pubblicità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertising", + "romanization": "pubblicità", + "example_sentence_native": "Ho visto una pubblicità interessante in televisione.", + "example_sentence_english": "I saw an interesting advertisement on television.", + "pos": "noun", + "word_frequency": 1134 + }, + { + "word": "risultare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to result", + "romanization": "risultare", + "example_sentence_native": "I suoi sforzi sono risultati vani.", + "example_sentence_english": "His efforts turned out to be in vain.", + "pos": "verb", + "word_frequency": 1135 + }, + { + "word": "spiegare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to explain", + "romanization": "spiegare", + "example_sentence_native": "Puoi spiegarmi questo concetto?", + "example_sentence_english": "Can you explain this concept to me?", + "pos": "verb", + "word_frequency": 1136 + }, + { + "word": "stanza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "room", + "romanization": "stanza", + "example_sentence_native": "La mia stanza è al secondo piano.", + "example_sentence_english": "My room is on the second floor.", + "pos": "noun", + "word_frequency": 1137 + }, + { + "word": "studiare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to study", + "romanization": "studiare", + "example_sentence_native": "Devo studiare per l'esame.", + "example_sentence_english": "I have to study for the exam.", + "pos": "verb", + "word_frequency": 1138 + }, + { + "word": "tour", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tour", + "romanization": "tour", + "example_sentence_native": "Abbiamo fatto un tour della città.", + "example_sentence_english": "We took a tour of the city.", + "pos": "noun", + "word_frequency": 1139 + }, + { + "word": "venerdì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Friday", + "romanization": "venerdì", + "example_sentence_native": "Ci vediamo venerdì prossimo.", + "example_sentence_english": "See you next Friday.", + "pos": "noun", + "word_frequency": 1140 + }, + { + "word": "album", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "album", + "romanization": "album", + "example_sentence_native": "Ho comprato il nuovo album della mia band preferita.", + "example_sentence_english": "I bought the new album by my favorite band.", + "pos": "noun", + "word_frequency": 1141 + }, + { + "word": "caccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunt", + "romanization": "caccia", + "example_sentence_native": "Sono andati a caccia nel bosco.", + "example_sentence_english": "They went hunting in the woods.", + "pos": "noun", + "word_frequency": 1142 + }, + { + "word": "carico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "load", + "romanization": "carico", + "example_sentence_native": "Il camion trasportava un carico pesante.", + "example_sentence_english": "The truck was carrying a heavy load.", + "pos": "noun", + "word_frequency": 1143 + }, + { + "word": "certamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "certainly", + "romanization": "certamente", + "example_sentence_native": "Certamente, ti aiuterò.", + "example_sentence_english": "Certainly, I will help you.", + "pos": "adverb", + "word_frequency": 1144 + }, + { + "word": "cinese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Chinese", + "romanization": "cinese", + "example_sentence_native": "Parlo un po' di cinese.", + "example_sentence_english": "I speak a little Chinese.", + "pos": "adjective", + "word_frequency": 1145 + }, + { + "word": "commerciale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commercial", + "romanization": "commerciale", + "example_sentence_native": "È un centro commerciale molto grande.", + "example_sentence_english": "It's a very large commercial center.", + "pos": "adjective", + "word_frequency": 1146 + }, + { + "word": "continuo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuous", + "romanization": "continuo", + "example_sentence_native": "C'è un rumore continuo.", + "example_sentence_english": "There is a continuous noise.", + "pos": "adjective", + "word_frequency": 1147 + }, + { + "word": "corrente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "current", + "romanization": "corrente", + "example_sentence_native": "Qual è il prezzo corrente?", + "example_sentence_english": "What is the current price?", + "pos": "adjective", + "word_frequency": 1148 + }, + { + "word": "dipartimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "department", + "romanization": "dipartimento", + "example_sentence_native": "Lavora nel dipartimento marketing.", + "example_sentence_english": "He works in the marketing department.", + "pos": "noun", + "word_frequency": 1149 + }, + { + "word": "disponibile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "available", + "romanization": "disponibile", + "example_sentence_native": "Sono disponibile domani mattina.", + "example_sentence_english": "I am available tomorrow morning.", + "pos": "adjective", + "word_frequency": 1150 + }, + { + "word": "elettorale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electoral", + "romanization": "elettorale", + "example_sentence_native": "La campagna elettorale è iniziata.", + "example_sentence_english": "The electoral campaign has begun.", + "pos": "adjective", + "word_frequency": 1151 + }, + { + "word": "frattempo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meantime", + "romanization": "frattempo", + "example_sentence_native": "Nel frattempo, ho preparato la cena.", + "example_sentence_english": "Meanwhile, I prepared dinner.", + "pos": "adverb", + "word_frequency": 1153 + }, + { + "word": "imparare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to learn", + "romanization": "imparare", + "example_sentence_native": "Voglio imparare l'italiano.", + "example_sentence_english": "I want to learn Italian.", + "pos": "verb", + "word_frequency": 1154 + }, + { + "word": "leader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader", + "romanization": "leader", + "example_sentence_native": "È il leader del partito.", + "example_sentence_english": "He is the leader of the party.", + "pos": "noun", + "word_frequency": 1155 + }, + { + "word": "pomeriggio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "afternoon", + "romanization": "pomeriggio", + "example_sentence_native": "Ci vediamo questo pomeriggio.", + "example_sentence_english": "See you this afternoon.", + "pos": "noun", + "word_frequency": 1157 + }, + { + "word": "ponte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bridge", + "romanization": "ponte", + "example_sentence_native": "Il ponte è molto antico.", + "example_sentence_english": "The bridge is very old.", + "pos": "noun", + "word_frequency": 1158 + }, + { + "word": "potenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power", + "romanization": "potenza", + "example_sentence_native": "La potenza del motore è impressionante.", + "example_sentence_english": "The engine's power is impressive.", + "pos": "noun", + "word_frequency": 1159 + }, + { + "word": "realizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to realize;to achieve", + "romanization": "realizzare", + "example_sentence_native": "Dobbiamo realizzare i nostri sogni.", + "example_sentence_english": "We must realize our dreams.", + "pos": "verb", + "word_frequency": 1160 + }, + { + "word": "signor", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Mr.;sir", + "romanization": "signor", + "example_sentence_native": "Il signor Rossi è arrivato.", + "example_sentence_english": "Mr. Rossi has arrived.", + "pos": "noun", + "word_frequency": 1161 + }, + { + "word": "singolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "single;individual", + "romanization": "singolo", + "example_sentence_native": "Ogni singolo studente deve presentare il progetto.", + "example_sentence_english": "Every single student must submit the project.", + "pos": "adjective", + "word_frequency": 1162 + }, + { + "word": "trattato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treaty;treatise", + "romanization": "trattato", + "example_sentence_native": "Hanno firmato un nuovo trattato di pace.", + "example_sentence_english": "They signed a new peace treaty.", + "pos": "noun", + "word_frequency": 1163 + }, + { + "word": "veloce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fast;quick", + "romanization": "veloce", + "example_sentence_native": "La macchina è molto veloce.", + "example_sentence_english": "The car is very fast.", + "pos": "adjective", + "word_frequency": 1164 + }, + { + "word": "affrontare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to face;to confront", + "romanization": "affrontare", + "example_sentence_native": "Dobbiamo affrontare la situazione con coraggio.", + "example_sentence_english": "We must face the situation with courage.", + "pos": "verb", + "word_frequency": 1165 + }, + { + "word": "app", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "app;application", + "romanization": "app", + "example_sentence_native": "Ho scaricato una nuova app sul mio telefono.", + "example_sentence_english": "I downloaded a new app on my phone.", + "pos": "noun", + "word_frequency": 1166 + }, + { + "word": "artista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "artist", + "romanization": "artista", + "example_sentence_native": "L'artista ha dipinto un bellissimo quadro.", + "example_sentence_english": "The artist painted a beautiful picture.", + "pos": "noun", + "word_frequency": 1167 + }, + { + "word": "contare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to count;to matter", + "romanization": "contare", + "example_sentence_native": "Sai contare fino a dieci?", + "example_sentence_english": "Can you count to ten?", + "pos": "verb", + "word_frequency": 1168 + }, + { + "word": "dormire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sleep", + "romanization": "dormire", + "example_sentence_native": "Ho bisogno di dormire otto ore a notte.", + "example_sentence_english": "I need to sleep eight hours a night.", + "pos": "verb", + "word_frequency": 1169 + }, + { + "word": "gratis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "free (of charge)", + "romanization": "gratis", + "example_sentence_native": "L'ingresso al museo è gratis.", + "example_sentence_english": "Admission to the museum is free.", + "pos": "adverb", + "word_frequency": 1170 + }, + { + "word": "importare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to matter;to import", + "romanization": "importare", + "example_sentence_native": "Non importa quello che pensano gli altri.", + "example_sentence_english": "It doesn't matter what others think.", + "pos": "verb", + "word_frequency": 1171 + }, + { + "word": "inferiore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inferior;lower", + "romanization": "inferiore", + "example_sentence_native": "La qualità di questo prodotto è inferiore.", + "example_sentence_english": "The quality of this product is inferior.", + "pos": "adjective", + "word_frequency": 1172 + }, + { + "word": "letteratura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "literature", + "romanization": "letteratura", + "example_sentence_native": "Studia letteratura italiana all'università.", + "example_sentence_english": "She studies Italian literature at university.", + "pos": "noun", + "word_frequency": 1173 + }, + { + "word": "news", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "news", + "romanization": "news", + "example_sentence_native": "Ho letto le ultime news online.", + "example_sentence_english": "I read the latest news online.", + "pos": "noun", + "word_frequency": 1174 + }, + { + "word": "ospedale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hospital", + "romanization": "ospedale", + "example_sentence_native": "È andato in ospedale per un controllo.", + "example_sentence_english": "He went to the hospital for a check-up.", + "pos": "noun", + "word_frequency": 1175 + }, + { + "word": "perdita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loss;leak", + "romanization": "perdita", + "example_sentence_native": "La perdita d'acqua ha causato molti danni.", + "example_sentence_english": "The water leak caused a lot of damage.", + "pos": "noun", + "word_frequency": 1176 + }, + { + "word": "pranzo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lunch", + "romanization": "pranzo", + "example_sentence_native": "Ci vediamo per pranzo?", + "example_sentence_english": "Shall we meet for lunch?", + "pos": "noun", + "word_frequency": 1177 + }, + { + "word": "praticamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practically;virtually", + "romanization": "praticamente", + "example_sentence_native": "Praticamente, abbiamo finito il lavoro.", + "example_sentence_english": "Practically, we have finished the work.", + "pos": "adverb", + "word_frequency": 1178 + }, + { + "word": "pubblicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publication", + "romanization": "pubblicazione", + "example_sentence_native": "La sua ultima pubblicazione è un successo.", + "example_sentence_english": "His latest publication is a success.", + "pos": "noun", + "word_frequency": 1179 + }, + { + "word": "resistenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resistance", + "romanization": "resistenza", + "example_sentence_native": "Hanno mostrato una forte resistenza al cambiamento.", + "example_sentence_english": "They showed strong resistance to change.", + "pos": "noun", + "word_frequency": 1180 + }, + { + "word": "rivista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magazine;journal", + "romanization": "rivista", + "example_sentence_native": "Leggo una rivista di moda ogni mese.", + "example_sentence_english": "I read a fashion magazine every month.", + "pos": "noun", + "word_frequency": 1181 + }, + { + "word": "rivoluzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolution", + "romanization": "rivoluzione", + "example_sentence_native": "La rivoluzione industriale ha cambiato il mondo.", + "example_sentence_english": "The industrial revolution changed the world.", + "pos": "noun", + "word_frequency": 1182 + }, + { + "word": "sentenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sentence (legal);judgment", + "romanization": "sentenza", + "example_sentence_native": "Il giudice ha pronunciato la sentenza.", + "example_sentence_english": "The judge pronounced the sentence.", + "pos": "noun", + "word_frequency": 1184 + }, + { + "word": "spalla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shoulder", + "romanization": "spalla", + "example_sentence_native": "Mi fa male la spalla destra.", + "example_sentence_english": "My right shoulder hurts.", + "pos": "noun", + "word_frequency": 1185 + }, + { + "word": "standard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standard", + "romanization": "standard", + "example_sentence_native": "Questo è lo standard di qualità che ci aspettiamo.", + "example_sentence_english": "This is the quality standard we expect.", + "pos": "noun", + "word_frequency": 1186 + }, + { + "word": "tentativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attempt;try", + "romanization": "tentativo", + "example_sentence_native": "Ha fatto un tentativo di risolvere il problema.", + "example_sentence_english": "He made an attempt to solve the problem.", + "pos": "noun", + "word_frequency": 1187 + }, + { + "word": "accanto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "next to;beside", + "romanization": "accanto", + "example_sentence_native": "Siediti accanto a me.", + "example_sentence_english": "Sit next to me.", + "pos": "adverb", + "word_frequency": 1188 + }, + { + "word": "aprire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to open", + "romanization": "aprire", + "example_sentence_native": "Puoi aprire la finestra, per favorire?", + "example_sentence_english": "Can you open the window, please?", + "pos": "verb", + "word_frequency": 1189 + }, + { + "word": "carica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charge;position;load", + "romanization": "carica", + "example_sentence_native": "Ha assunto una nuova carica in azienda.", + "example_sentence_english": "He took on a new position in the company.", + "pos": "noun", + "word_frequency": 1190 + }, + { + "word": "comitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "committee", + "romanization": "comitato", + "example_sentence_native": "Il comitato si riunirà domani.", + "example_sentence_english": "The committee will meet tomorrow.", + "pos": "noun", + "word_frequency": 1191 + }, + { + "word": "enorme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enormous;huge", + "romanization": "enorme", + "example_sentence_native": "Hanno costruito una casa enorme.", + "example_sentence_english": "They built an enormous house.", + "pos": "adjective", + "word_frequency": 1192 + }, + { + "word": "freddo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cold", + "romanization": "freddo", + "example_sentence_native": "Oggi fa molto freddo.", + "example_sentence_english": "It's very cold today.", + "pos": "adjective", + "word_frequency": 1194 + }, + { + "word": "giudice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "judge", + "romanization": "giudice", + "example_sentence_native": "Il giudice ha ascoltato tutte le testimonianze.", + "example_sentence_english": "The judge listened to all the testimonies.", + "pos": "noun", + "word_frequency": 1196 + }, + { + "word": "interessare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to interest", + "romanization": "interessare", + "example_sentence_native": "Questo libro mi interessa molto.", + "example_sentence_english": "This book interests me a lot.", + "pos": "verb", + "word_frequency": 1197 + }, + { + "word": "migliaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thousand (a thousand of something)", + "romanization": "migliaio", + "example_sentence_native": "C'erano un migliaio di persone al concerto.", + "example_sentence_english": "There were a thousand people at the concert.", + "pos": "noun", + "word_frequency": 1198 + }, + { + "word": "nave", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ship;boat", + "romanization": "nave", + "example_sentence_native": "La nave è salpata dal porto.", + "example_sentence_english": "The ship sailed from the port.", + "pos": "noun", + "word_frequency": 1199 + }, + { + "word": "nazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nation", + "romanization": "nazione", + "example_sentence_native": "Ogni nazione ha la sua cultura unica.", + "example_sentence_english": "Every nation has its unique culture.", + "pos": "noun", + "word_frequency": 1200 + }, + { + "word": "opportunità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opportunity", + "romanization": "opportunità", + "example_sentence_native": "Non perdere questa opportunità.", + "example_sentence_english": "Don't miss this opportunity.", + "pos": "noun", + "word_frequency": 1201 + }, + { + "word": "pagamento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "payment", + "romanization": "pagamento", + "example_sentence_native": "Il pagamento è dovuto entro la fine del mese.", + "example_sentence_english": "The payment is due by the end of the month.", + "pos": "noun", + "word_frequency": 1202 + }, + { + "word": "passione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passion", + "romanization": "passione", + "example_sentence_native": "La sua passione per la musica è evidente.", + "example_sentence_english": "His passion for music is evident.", + "pos": "noun", + "word_frequency": 1204 + }, + { + "word": "regionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regional", + "romanization": "regionale", + "example_sentence_native": "Ci sono molte differenze regionali in Italia.", + "example_sentence_english": "There are many regional differences in Italy.", + "pos": "adjective", + "word_frequency": 1205 + }, + { + "word": "soldato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soldier", + "romanization": "soldato", + "example_sentence_native": "Il soldato è tornato a casa dalla missione.", + "example_sentence_english": "The soldier returned home from the mission.", + "pos": "noun", + "word_frequency": 1206 + }, + { + "word": "star", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "star (celebrity)", + "romanization": "star", + "example_sentence_native": "È una grande star del cinema.", + "example_sentence_english": "She is a big movie star.", + "pos": "noun", + "word_frequency": 1207 + }, + { + "word": "treno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "train", + "romanization": "treno", + "example_sentence_native": "Prenderò il treno per Roma.", + "example_sentence_english": "I will take the train to Rome.", + "pos": "noun", + "word_frequency": 1208 + }, + { + "word": "triste", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sad", + "romanization": "triste", + "example_sentence_native": "Era molto triste dopo la notizia.", + "example_sentence_english": "He was very sad after the news.", + "pos": "adjective", + "word_frequency": 1209 + }, + { + "word": "unione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "union", + "romanization": "unione", + "example_sentence_native": "L'unione fa la forza.", + "example_sentence_english": "Union is strength.", + "pos": "noun", + "word_frequency": 1210 + }, + { + "word": "villa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "villa", + "romanization": "villa", + "example_sentence_native": "Hanno comprato una bella villa in campagna.", + "example_sentence_english": "They bought a beautiful villa in the countryside.", + "pos": "noun", + "word_frequency": 1211 + }, + { + "word": "volume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volume", + "romanization": "volume", + "example_sentence_native": "Per favore, alza il volume della musica.", + "example_sentence_english": "Please, turn up the volume of the music.", + "pos": "noun", + "word_frequency": 1212 + }, + { + "word": "attorno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "around", + "romanization": "attorno", + "example_sentence_native": "I bambini correvano attorno all'albero.", + "example_sentence_english": "The children ran around the tree.", + "pos": "adverb", + "word_frequency": 1214 + }, + { + "word": "commercio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trade;commerce", + "romanization": "commercio", + "example_sentence_native": "Il commercio internazionale è in crescita.", + "example_sentence_english": "International trade is growing.", + "pos": "noun", + "word_frequency": 1216 + }, + { + "word": "compito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "task;homework", + "romanization": "compito", + "example_sentence_native": "Ho molti compiti da fare stasera.", + "example_sentence_english": "I have a lot of homework to do tonight.", + "pos": "noun", + "word_frequency": 1217 + }, + { + "word": "comportamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "behavior", + "romanization": "comportamento", + "example_sentence_native": "Il suo comportamento è stato esemplare.", + "example_sentence_english": "His behavior was exemplary.", + "pos": "noun", + "word_frequency": 1218 + }, + { + "word": "corsa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "run;race", + "romanization": "corsa", + "example_sentence_native": "Andiamo a fare una corsa al parco.", + "example_sentence_english": "Let's go for a run in the park.", + "pos": "noun", + "word_frequency": 1219 + }, + { + "word": "dimensione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dimension;size", + "romanization": "dimensione", + "example_sentence_native": "Qual è la dimensione di questa scatola?", + "example_sentence_english": "What is the size of this box?", + "pos": "noun", + "word_frequency": 1220 + }, + { + "word": "giornalista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "journalist", + "romanization": "giornalista", + "example_sentence_native": "La giornalista ha scritto un articolo interessante.", + "example_sentence_english": "The journalist wrote an interesting article.", + "pos": "noun", + "word_frequency": 1221 + }, + { + "word": "guardia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guard", + "romanization": "guardia", + "example_sentence_native": "La guardia ha aperto il cancello.", + "example_sentence_english": "The guard opened the gate.", + "pos": "noun", + "word_frequency": 1222 + }, + { + "word": "impegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commitment;effort", + "romanization": "impegno", + "example_sentence_native": "Ha dimostrato grande impegno nel suo lavoro.", + "example_sentence_english": "He showed great commitment in his work.", + "pos": "noun", + "word_frequency": 1223 + }, + { + "word": "limite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limit", + "romanization": "limite", + "example_sentence_native": "C'è un limite di velocità su questa strada.", + "example_sentence_english": "There is a speed limit on this road.", + "pos": "noun", + "word_frequency": 1224 + }, + { + "word": "maestro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teacher;master", + "romanization": "maestro", + "example_sentence_native": "Il maestro ha spiegato la lezione.", + "example_sentence_english": "The teacher explained the lesson.", + "pos": "noun", + "word_frequency": 1226 + }, + { + "word": "morale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moral", + "romanization": "morale", + "example_sentence_native": "È una questione morale complessa.", + "example_sentence_english": "It's a complex moral issue.", + "pos": "adjective", + "word_frequency": 1227 + }, + { + "word": "nascita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birth", + "romanization": "nascita", + "example_sentence_native": "La data di nascita è importante per i documenti.", + "example_sentence_english": "The date of birth is important for documents.", + "pos": "noun", + "word_frequency": 1228 + }, + { + "word": "offrire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to offer", + "romanization": "offrire", + "example_sentence_native": "Vorrei offrirti un caffè.", + "example_sentence_english": "I would like to offer you a coffee.", + "pos": "verb", + "word_frequency": 1229 + }, + { + "word": "principe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prince", + "romanization": "principe", + "example_sentence_native": "Il principe ha sposato la principessa.", + "example_sentence_english": "The prince married the princess.", + "pos": "noun", + "word_frequency": 1230 + }, + { + "word": "professore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "professor", + "romanization": "professore", + "example_sentence_native": "Il professore ha tenuto una lezione interessante.", + "example_sentence_english": "The professor gave an interesting lecture.", + "pos": "noun", + "word_frequency": 1231 + }, + { + "word": "scritto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "written", + "romanization": "scritto", + "example_sentence_native": "Ho ricevuto una lettera scritta a mano.", + "example_sentence_english": "I received a handwritten letter.", + "pos": "adjective", + "word_frequency": 1233 + }, + { + "word": "segreto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secret", + "romanization": "segreto", + "example_sentence_native": "È un segreto che non posso rivelare.", + "example_sentence_english": "It's a secret I cannot reveal.", + "pos": "adjective", + "word_frequency": 1234 + }, + { + "word": "tratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trait;stretch;excerpt", + "romanization": "tratto", + "example_sentence_native": "Ha un tratto distintivo nel suo carattere.", + "example_sentence_english": "He has a distinctive trait in his character.", + "pos": "noun", + "word_frequency": 1235 + }, + { + "word": "affatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at all", + "romanization": "affatto", + "example_sentence_native": "Non è affatto difficile.", + "example_sentence_english": "It's not difficult at all.", + "pos": "adverb", + "word_frequency": 1236 + }, + { + "word": "arrivato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "arrived", + "romanization": "arrivato", + "example_sentence_native": "Il treno è arrivato in orario.", + "example_sentence_english": "The train arrived on time.", + "pos": "adjective", + "word_frequency": 1237 + }, + { + "word": "chiaramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clearly", + "romanization": "chiaramente", + "example_sentence_native": "Ha spiegato chiaramente il problema.", + "example_sentence_english": "He clearly explained the problem.", + "pos": "adverb", + "word_frequency": 1238 + }, + { + "word": "cliente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "client;customer", + "romanization": "cliente", + "example_sentence_native": "Il cliente ha chiesto un rimborso.", + "example_sentence_english": "The client asked for a refund.", + "pos": "noun", + "word_frequency": 1239 + }, + { + "word": "conferma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmation", + "romanization": "conferma", + "example_sentence_native": "Ho bisogno di una conferma scritta.", + "example_sentence_english": "I need a written confirmation.", + "pos": "noun", + "word_frequency": 1240 + }, + { + "word": "costruire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to build", + "romanization": "costruire", + "example_sentence_native": "Vogliono costruire una nuova casa.", + "example_sentence_english": "They want to build a new house.", + "pos": "verb", + "word_frequency": 1241 + }, + { + "word": "debito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debt", + "romanization": "debito", + "example_sentence_native": "Ha un grande debito con la banca.", + "example_sentence_english": "He has a large debt with the bank.", + "pos": "noun", + "word_frequency": 1242 + }, + { + "word": "grosso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "big;large;fat", + "romanization": "grosso", + "example_sentence_native": "Il cane è molto grosso.", + "example_sentence_english": "The dog is very big.", + "pos": "adjective", + "word_frequency": 1243 + }, + { + "word": "intenzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intention", + "romanization": "intenzione", + "example_sentence_native": "Non era mia intenzione offenderti.", + "example_sentence_english": "It was not my intention to offend you.", + "pos": "noun", + "word_frequency": 1244 + }, + { + "word": "lettura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reading", + "romanization": "lettura", + "example_sentence_native": "La lettura è il mio hobby preferito.", + "example_sentence_english": "Reading is my favorite hobby.", + "pos": "noun", + "word_frequency": 1245 + }, + { + "word": "luna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "moon", + "romanization": "luna", + "example_sentence_native": "La luna piena è bellissima stasera.", + "example_sentence_english": "The full moon is beautiful tonight.", + "pos": "noun", + "word_frequency": 1246 + }, + { + "word": "occidentale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Western", + "romanization": "occidentale", + "example_sentence_native": "La cultura occidentale è molto diversa.", + "example_sentence_english": "Western culture is very different.", + "pos": "adjective", + "word_frequency": 1247 + }, + { + "word": "partecipare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to participate", + "romanization": "partecipare", + "example_sentence_native": "Vorrei partecipare alla riunione.", + "example_sentence_english": "I would like to participate in the meeting.", + "pos": "verb", + "word_frequency": 1248 + }, + { + "word": "povero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "poor", + "romanization": "povero", + "example_sentence_native": "Aiutiamo le persone povere.", + "example_sentence_english": "We help poor people.", + "pos": "adjective", + "word_frequency": 1249 + }, + { + "word": "principalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mainly;principally", + "romanization": "principalmente", + "example_sentence_native": "Lavora principalmente da casa.", + "example_sentence_english": "He works mainly from home.", + "pos": "adverb", + "word_frequency": 1250 + }, + { + "word": "principio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "principle;beginning", + "romanization": "principio", + "example_sentence_native": "È un principio fondamentale della fisica.", + "example_sentence_english": "It's a fundamental principle of physics.", + "pos": "noun", + "word_frequency": 1251 + }, + { + "word": "quartiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neighborhood;district", + "romanization": "quartiere", + "example_sentence_native": "Vivo in un bel quartiere.", + "example_sentence_english": "I live in a nice neighborhood.", + "pos": "noun", + "word_frequency": 1252 + }, + { + "word": "ridere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to laugh", + "romanization": "ridere", + "example_sentence_native": "Mi fa sempre ridere.", + "example_sentence_english": "He always makes me laugh.", + "pos": "verb", + "word_frequency": 1253 + }, + { + "word": "risolvere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to solve", + "romanization": "risolvere", + "example_sentence_native": "Dobbiamo risolvere questo problema.", + "example_sentence_english": "We need to solve this problem.", + "pos": "verb", + "word_frequency": 1254 + }, + { + "word": "sostegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support", + "romanization": "sostegno", + "example_sentence_native": "Ha bisogno di sostegno emotivo.", + "example_sentence_english": "He needs emotional support.", + "pos": "noun", + "word_frequency": 1255 + }, + { + "word": "terreno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "land;ground", + "romanization": "terreno", + "example_sentence_native": "Hanno comprato un grande terreno.", + "example_sentence_english": "They bought a large piece of land.", + "pos": "noun", + "word_frequency": 1256 + }, + { + "word": "votare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vote", + "romanization": "votare", + "example_sentence_native": "È importante votare alle elezioni.", + "example_sentence_english": "It's important to vote in elections.", + "pos": "verb", + "word_frequency": 1257 + }, + { + "word": "aereo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airplane", + "romanization": "aereo", + "example_sentence_native": "Prenderemo l'aereo per Roma.", + "example_sentence_english": "We will take the airplane to Rome.", + "pos": "noun", + "word_frequency": 1258 + }, + { + "word": "aumentare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to increase", + "romanization": "aumentare", + "example_sentence_native": "I prezzi continuano ad aumentare.", + "example_sentence_english": "Prices continue to increase.", + "pos": "verb", + "word_frequency": 1259 + }, + { + "word": "bilancio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "budget;balance sheet", + "romanization": "bilancio", + "example_sentence_native": "Dobbiamo approvare il bilancio annuale.", + "example_sentence_english": "We need to approve the annual budget.", + "pos": "noun", + "word_frequency": 1260 + }, + { + "word": "dichiarazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statement;declaration", + "romanization": "dichiarazione", + "example_sentence_native": "Ha rilasciato una dichiarazione alla stampa.", + "example_sentence_english": "He released a statement to the press.", + "pos": "noun", + "word_frequency": 1262 + }, + { + "word": "fianco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "side;flank", + "romanization": "fianco", + "example_sentence_native": "Mi fa male il fianco destro.", + "example_sentence_english": "My right side hurts.", + "pos": "noun", + "word_frequency": 1263 + }, + { + "word": "finito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "finished;over", + "romanization": "finito", + "example_sentence_native": "Il lavoro è quasi finito.", + "example_sentence_english": "The work is almost finished.", + "pos": "adjective", + "word_frequency": 1264 + }, + { + "word": "fiore", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "flower", + "romanization": "fiore", + "example_sentence_native": "Mi piacciono i fiori rossi.", + "example_sentence_english": "I like red flowers.", + "pos": "noun", + "word_frequency": 1265 + }, + { + "word": "frase", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sentence;phrase", + "romanization": "frase", + "example_sentence_native": "Puoi ripetere la frase?", + "example_sentence_english": "Can you repeat the sentence?", + "pos": "noun", + "word_frequency": 1266 + }, + { + "word": "gas", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gas", + "romanization": "gas", + "example_sentence_native": "Abbiamo finito il gas per cucinare.", + "example_sentence_english": "We ran out of gas for cooking.", + "pos": "noun", + "word_frequency": 1267 + }, + { + "word": "intervista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interview", + "romanization": "intervista", + "example_sentence_native": "Ho un'intervista di lavoro domani.", + "example_sentence_english": "I have a job interview tomorrow.", + "pos": "noun", + "word_frequency": 1268 + }, + { + "word": "istituto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institute", + "romanization": "istituto", + "example_sentence_native": "Lavora in un istituto di ricerca.", + "example_sentence_english": "He works at a research institute.", + "pos": "noun", + "word_frequency": 1269 + }, + { + "word": "live", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "live (broadcast)", + "romanization": "live", + "example_sentence_native": "Il concerto sarà trasmesso in diretta live.", + "example_sentence_english": "The concert will be broadcast live.", + "pos": "adverb", + "word_frequency": 1270 + }, + { + "word": "minore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minor;smaller;younger", + "romanization": "minore", + "example_sentence_native": "Ha un fratello minore.", + "example_sentence_english": "He has a younger brother.", + "pos": "adjective", + "word_frequency": 1271 + }, + { + "word": "modalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mode;method", + "romanization": "modalità", + "example_sentence_native": "Cambia la modalità di visualizzazione.", + "example_sentence_english": "Change the display mode.", + "pos": "noun", + "word_frequency": 1272 + }, + { + "word": "negozio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shop;store", + "romanization": "negozio", + "example_sentence_native": "Vado al negozio a comprare il pane.", + "example_sentence_english": "I'm going to the shop to buy bread.", + "pos": "noun", + "word_frequency": 1273 + }, + { + "word": "quarto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fourth", + "romanization": "quarto", + "example_sentence_native": "È il quarto giorno della settimana.", + "example_sentence_english": "It's the fourth day of the week.", + "pos": "adjective", + "word_frequency": 1275 + }, + { + "word": "regime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regime;system;diet", + "romanization": "regime", + "example_sentence_native": "Il paese è sotto un nuovo regime.", + "example_sentence_english": "The country is under a new regime.", + "pos": "noun", + "word_frequency": 1276 + }, + { + "word": "regina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "queen", + "romanization": "regina", + "example_sentence_native": "La regina ha visitato la città.", + "example_sentence_english": "The queen visited the city.", + "pos": "noun", + "word_frequency": 1277 + }, + { + "word": "romano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Roman", + "romanization": "romano", + "example_sentence_native": "L'Impero Romano era molto vasto.", + "example_sentence_english": "The Roman Empire was very vast.", + "pos": "adjective", + "word_frequency": 1278 + }, + { + "word": "scala", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stairs;ladder;scale", + "romanization": "scala", + "example_sentence_native": "Saliamo le scale al terzo piano.", + "example_sentence_english": "Let's go up the stairs to the third floor.", + "pos": "noun", + "word_frequency": 1279 + }, + { + "word": "sguardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gaze;look", + "romanization": "sguardo", + "example_sentence_native": "Il suo sguardo era pieno di tristezza.", + "example_sentence_english": "His gaze was full of sadness.", + "pos": "noun", + "word_frequency": 1280 + }, + { + "word": "sorta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kind;sort", + "romanization": "sorta", + "example_sentence_native": "Che sorta di musica ti piace?", + "example_sentence_english": "What kind of music do you like?", + "pos": "noun", + "word_frequency": 1281 + }, + { + "word": "top", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top;excellent", + "romanization": "top", + "example_sentence_native": "Questo ristorante è davvero top!", + "example_sentence_english": "This restaurant is really top!", + "pos": "adjective", + "word_frequency": 1282 + }, + { + "word": "utilizzare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to use;to utilize", + "romanization": "utilizzare", + "example_sentence_native": "Puoi utilizzare questo strumento per ripararlo.", + "example_sentence_english": "You can use this tool to fix it.", + "pos": "verb", + "word_frequency": 1283 + }, + { + "word": "account", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "account", + "romanization": "account", + "example_sentence_native": "Ho creato un nuovo account online.", + "example_sentence_english": "I created a new online account.", + "pos": "noun", + "word_frequency": 1284 + }, + { + "word": "avvocato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lawyer", + "romanization": "avvocato", + "example_sentence_native": "Ho bisogno di parlare con il mio avvocato.", + "example_sentence_english": "I need to speak with my lawyer.", + "pos": "noun", + "word_frequency": 1285 + }, + { + "word": "comunale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "municipal;communal", + "romanization": "comunale", + "example_sentence_native": "Il consiglio comunale si riunirà domani.", + "example_sentence_english": "The municipal council will meet tomorrow.", + "pos": "adjective", + "word_frequency": 1288 + }, + { + "word": "creazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creation", + "romanization": "creazione", + "example_sentence_native": "La creazione di questo progetto ha richiesto tempo.", + "example_sentence_english": "The creation of this project took time.", + "pos": "noun", + "word_frequency": 1289 + }, + { + "word": "dispiacere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be sorry;to displease", + "romanization": "dispiacere", + "example_sentence_native": "Mi dispiace per l'inconveniente.", + "example_sentence_english": "I am sorry for the inconvenience.", + "pos": "verb", + "word_frequency": 1290 + }, + { + "word": "durata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duration;length", + "romanization": "durata", + "example_sentence_native": "La durata del film è di due ore.", + "example_sentence_english": "The duration of the film is two hours.", + "pos": "noun", + "word_frequency": 1292 + }, + { + "word": "formato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "format;size", + "romanization": "formato", + "example_sentence_native": "In che formato vuoi salvare il file?", + "example_sentence_english": "In what format do you want to save the file?", + "pos": "noun", + "word_frequency": 1293 + }, + { + "word": "giapponese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Japanese", + "romanization": "giapponese", + "example_sentence_native": "Mi piace molto la cucina giapponese.", + "example_sentence_english": "I really like Japanese cuisine.", + "pos": "adjective", + "word_frequency": 1294 + }, + { + "word": "lezione", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lesson", + "romanization": "lezione", + "example_sentence_native": "Abbiamo una lezione di italiano ogni martedì.", + "example_sentence_english": "We have an Italian lesson every Tuesday.", + "pos": "noun", + "word_frequency": 1295 + }, + { + "word": "medicina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine", + "romanization": "medicina", + "example_sentence_native": "Ha studiato medicina all'università.", + "example_sentence_english": "She studied medicine at university.", + "pos": "noun", + "word_frequency": 1297 + }, + { + "word": "moda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fashion", + "romanization": "moda", + "example_sentence_native": "Milano è una capitale della moda.", + "example_sentence_english": "Milan is a fashion capital.", + "pos": "noun", + "word_frequency": 1298 + }, + { + "word": "persino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "even", + "romanization": "persino", + "example_sentence_native": "Persino lui era sorpreso dalla notizia.", + "example_sentence_english": "Even he was surprised by the news.", + "pos": "adverb", + "word_frequency": 1299 + }, + { + "word": "prigione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prison;jail", + "romanization": "prigione", + "example_sentence_native": "È stato condannato a cinque anni di prigione.", + "example_sentence_english": "He was sentenced to five years in prison.", + "pos": "noun", + "word_frequency": 1300 + }, + { + "word": "primavera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spring", + "romanization": "primavera", + "example_sentence_native": "La primavera è la mia stagione preferita.", + "example_sentence_english": "Spring is my favorite season.", + "pos": "noun", + "word_frequency": 1301 + }, + { + "word": "reazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reaction", + "romanization": "reazione", + "example_sentence_native": "La sua reazione è stata inaspettata.", + "example_sentence_english": "His reaction was unexpected.", + "pos": "noun", + "word_frequency": 1302 + }, + { + "word": "salvare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to save", + "romanization": "salvare", + "example_sentence_native": "Dobbiamo salvare il pianeta.", + "example_sentence_english": "We must save the planet.", + "pos": "verb", + "word_frequency": 1303 + }, + { + "word": "scrittore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writer", + "romanization": "scrittore", + "example_sentence_native": "È uno scrittore molto famoso.", + "example_sentence_english": "He is a very famous writer.", + "pos": "noun", + "word_frequency": 1304 + }, + { + "word": "show", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "show", + "romanization": "show", + "example_sentence_native": "Lo show inizia alle nove.", + "example_sentence_english": "The show starts at nine.", + "pos": "noun", + "word_frequency": 1305 + }, + { + "word": "straniero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "foreign;stranger", + "romanization": "straniero", + "example_sentence_native": "Parla diverse lingue straniere.", + "example_sentence_english": "He speaks several foreign languages.", + "pos": "adjective", + "word_frequency": 1306 + }, + { + "word": "superficie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surface", + "romanization": "superficie", + "example_sentence_native": "La superficie del tavolo è liscia.", + "example_sentence_english": "The surface of the table is smooth.", + "pos": "noun", + "word_frequency": 1307 + }, + { + "word": "tedesco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "German", + "romanization": "tedesco", + "example_sentence_native": "Ha imparato il tedesco a scuola.", + "example_sentence_english": "He learned German at school.", + "pos": "adjective", + "word_frequency": 1308 + }, + { + "word": "trasporto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transport;transportation", + "romanization": "trasporto", + "example_sentence_native": "I mezzi di trasporto pubblici sono efficienti.", + "example_sentence_english": "Public transportation is efficient.", + "pos": "noun", + "word_frequency": 1309 + }, + { + "word": "vantaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advantage", + "romanization": "vantaggio", + "example_sentence_native": "Questo accordo offre molti vantaggi.", + "example_sentence_english": "This agreement offers many advantages.", + "pos": "noun", + "word_frequency": 1310 + }, + { + "word": "apparire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appear", + "romanization": "apparire", + "example_sentence_native": "È apparso all'improvviso.", + "example_sentence_english": "He appeared suddenly.", + "pos": "verb", + "word_frequency": 1311 + }, + { + "word": "applicazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "application", + "romanization": "applicazione", + "example_sentence_native": "Ho scaricato una nuova applicazione sul telefono.", + "example_sentence_english": "I downloaded a new application on my phone.", + "pos": "noun", + "word_frequency": 1312 + }, + { + "word": "assieme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "together", + "romanization": "assieme", + "example_sentence_native": "Andiamo assieme al cinema.", + "example_sentence_english": "Let's go to the cinema together.", + "pos": "adverb", + "word_frequency": 1313 + }, + { + "word": "capace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capable;able", + "romanization": "capace", + "example_sentence_native": "È capace di fare qualsiasi cosa.", + "example_sentence_english": "He is capable of doing anything.", + "pos": "adjective", + "word_frequency": 1314 + }, + { + "word": "composto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composed;compound", + "romanization": "composto", + "example_sentence_native": "Il composto chimico è molto stabile.", + "example_sentence_english": "The chemical compound is very stable.", + "pos": "adjective", + "word_frequency": 1315 + }, + { + "word": "considerazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consideration", + "romanization": "considerazione", + "example_sentence_native": "Prenderemo la tua proposta in considerazione.", + "example_sentence_english": "We will take your proposal into consideration.", + "pos": "noun", + "word_frequency": 1316 + }, + { + "word": "definizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definition", + "romanization": "definizione", + "example_sentence_native": "Qual è la definizione di questa parola?", + "example_sentence_english": "What is the definition of this word?", + "pos": "noun", + "word_frequency": 1317 + }, + { + "word": "desiderio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desire;wish", + "romanization": "desiderio", + "example_sentence_native": "Esprimi un desiderio!", + "example_sentence_english": "Make a wish!", + "pos": "noun", + "word_frequency": 1319 + }, + { + "word": "digitale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digital", + "romanization": "digitale", + "example_sentence_native": "Abbiamo bisogno di una soluzione digitale per questo problema.", + "example_sentence_english": "We need a digital solution for this problem.", + "pos": "adjective", + "word_frequency": 1320 + }, + { + "word": "disegno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawing;design", + "romanization": "disegno", + "example_sentence_native": "Il bambino ha fatto un bel disegno.", + "example_sentence_english": "The child made a beautiful drawing.", + "pos": "noun", + "word_frequency": 1321 + }, + { + "word": "distribuzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distribution", + "romanization": "distribuzione", + "example_sentence_native": "La distribuzione dei prodotti è stata efficiente.", + "example_sentence_english": "The distribution of products was efficient.", + "pos": "noun", + "word_frequency": 1322 + }, + { + "word": "evidente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evident;obvious", + "romanization": "evidente", + "example_sentence_native": "È evidente che ha ragione.", + "example_sentence_english": "It's evident that he is right.", + "pos": "adjective", + "word_frequency": 1323 + }, + { + "word": "famoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "famous", + "romanization": "famoso", + "example_sentence_native": "Roma è una città famosa in tutto il mondo.", + "example_sentence_english": "Rome is a famous city all over the world.", + "pos": "adjective", + "word_frequency": 1324 + }, + { + "word": "generazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generation", + "romanization": "generazione", + "example_sentence_native": "Ogni generazione ha le sue sfide.", + "example_sentence_english": "Every generation has its challenges.", + "pos": "noun", + "word_frequency": 1325 + }, + { + "word": "identità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identity", + "romanization": "identità", + "example_sentence_native": "Ha perso la sua carta d'identità.", + "example_sentence_english": "He lost his identity card.", + "pos": "noun", + "word_frequency": 1326 + }, + { + "word": "incidente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accident;incident", + "romanization": "incidente", + "example_sentence_native": "C'è stato un incidente stradale.", + "example_sentence_english": "There was a road accident.", + "pos": "noun", + "word_frequency": 1327 + }, + { + "word": "ingresso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "entrance;admission", + "romanization": "ingresso", + "example_sentence_native": "L'ingresso al museo è gratuito.", + "example_sentence_english": "Admission to the museum is free.", + "pos": "noun", + "word_frequency": 1328 + }, + { + "word": "istituzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institution", + "romanization": "istituzione", + "example_sentence_native": "L'università è un'importante istituzione.", + "example_sentence_english": "The university is an important institution.", + "pos": "noun", + "word_frequency": 1329 + }, + { + "word": "latte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "milk", + "romanization": "latte", + "example_sentence_native": "Vorrei un caffè con il latte.", + "example_sentence_english": "I would like a coffee with milk.", + "pos": "noun", + "word_frequency": 1330 + }, + { + "word": "linguaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "language", + "romanization": "linguaggio", + "example_sentence_native": "Il linguaggio del corpo è molto importante.", + "example_sentence_english": "Body language is very important.", + "pos": "noun", + "word_frequency": 1331 + }, + { + "word": "migliorare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to improve", + "romanization": "migliorare", + "example_sentence_native": "Voglio migliorare il mio italiano.", + "example_sentence_english": "I want to improve my Italian.", + "pos": "verb", + "word_frequency": 1332 + }, + { + "word": "mila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thousands", + "romanization": "mila", + "example_sentence_native": "Ci sono duemila persone qui.", + "example_sentence_english": "There are two thousand people here.", + "pos": "noun", + "word_frequency": 1333 + }, + { + "word": "muro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wall", + "romanization": "muro", + "example_sentence_native": "Il quadro è appeso al muro.", + "example_sentence_english": "The painting is hanging on the wall.", + "pos": "noun", + "word_frequency": 1334 + }, + { + "word": "nato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "born", + "romanization": "nato", + "example_sentence_native": "Sono nato a Roma.", + "example_sentence_english": "I was born in Rome.", + "pos": "adjective", + "word_frequency": 1335 + }, + { + "word": "punta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip;point;peak", + "romanization": "punta", + "example_sentence_native": "La punta della matita è rotta.", + "example_sentence_english": "The tip of the pencil is broken.", + "pos": "noun", + "word_frequency": 1336 + }, + { + "word": "raccontare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tell;to narrate", + "romanization": "raccontare", + "example_sentence_native": "Mi piace raccontare storie.", + "example_sentence_english": "I like to tell stories.", + "pos": "verb", + "word_frequency": 1337 + }, + { + "word": "scienza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "science", + "romanization": "scienza", + "example_sentence_native": "La scienza ci aiuta a capire il mondo.", + "example_sentence_english": "Science helps us understand the world.", + "pos": "noun", + "word_frequency": 1338 + }, + { + "word": "segretario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretary", + "romanization": "segretario", + "example_sentence_native": "Il segretario ha organizzato la riunione.", + "example_sentence_english": "The secretary organized the meeting.", + "pos": "noun", + "word_frequency": 1339 + }, + { + "word": "sfida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenge", + "romanization": "sfida", + "example_sentence_native": "Questa è una grande sfida per noi.", + "example_sentence_english": "This is a big challenge for us.", + "pos": "noun", + "word_frequency": 1340 + }, + { + "word": "soggetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subject", + "romanization": "soggetto", + "example_sentence_native": "Il soggetto della discussione era molto interessante.", + "example_sentence_english": "The subject of the discussion was very interesting.", + "pos": "noun", + "word_frequency": 1341 + }, + { + "word": "vento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wind", + "romanization": "vento", + "example_sentence_native": "Il vento soffiava forte.", + "example_sentence_english": "The wind was blowing strongly.", + "pos": "noun", + "word_frequency": 1342 + }, + { + "word": "villaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "village", + "romanization": "villaggio", + "example_sentence_native": "Viviamo in un piccolo villaggio.", + "example_sentence_english": "We live in a small village.", + "pos": "noun", + "word_frequency": 1343 + }, + { + "word": "brutto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ugly;bad", + "romanization": "brutto", + "example_sentence_native": "Che brutto tempo oggi!", + "example_sentence_english": "What bad weather today!", + "pos": "adjective", + "word_frequency": 1346 + }, + { + "word": "castello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "castle", + "romanization": "castello", + "example_sentence_native": "Abbiamo visitato un antico castello.", + "example_sentence_english": "We visited an ancient castle.", + "pos": "noun", + "word_frequency": 1347 + }, + { + "word": "combattere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fight;to combat", + "romanization": "combattere", + "example_sentence_native": "Dobbiamo combattere l'ingiustizia.", + "example_sentence_english": "We must fight injustice.", + "pos": "verb", + "word_frequency": 1348 + }, + { + "word": "controllare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to control;to check", + "romanization": "controllare", + "example_sentence_native": "Devo controllare le mie email.", + "example_sentence_english": "I need to check my emails.", + "pos": "verb", + "word_frequency": 1349 + }, + { + "word": "coscienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscience;consciousness", + "romanization": "coscienza", + "example_sentence_native": "Ha una coscienza pulita.", + "example_sentence_english": "He has a clear conscience.", + "pos": "noun", + "word_frequency": 1350 + }, + { + "word": "credito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credit", + "romanization": "credito", + "example_sentence_native": "Ho pagato con la carta di credito.", + "example_sentence_english": "I paid with the credit card.", + "pos": "noun", + "word_frequency": 1351 + }, + { + "word": "dipendente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employee;dependent", + "romanization": "dipendente", + "example_sentence_native": "È un dipendente di questa azienda.", + "example_sentence_english": "He is an employee of this company.", + "pos": "noun", + "word_frequency": 1352 + }, + { + "word": "fan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan", + "romanization": "fan", + "example_sentence_native": "Sono un grande fan di quel gruppo musicale.", + "example_sentence_english": "I am a big fan of that music group.", + "pos": "noun", + "word_frequency": 1353 + }, + { + "word": "filosofia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophy", + "romanization": "filosofia", + "example_sentence_native": "Ha studiato filosofia all'università.", + "example_sentence_english": "He studied philosophy at university.", + "pos": "noun", + "word_frequency": 1354 + }, + { + "word": "giudizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judgment;opinion", + "romanization": "giudizio", + "example_sentence_native": "Non esprimere giudizi affrettati.", + "example_sentence_english": "Don't make hasty judgments.", + "pos": "noun", + "word_frequency": 1355 + }, + { + "word": "iniziativa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initiative", + "romanization": "iniziativa", + "example_sentence_native": "Ha preso l'iniziativa di organizzare la festa.", + "example_sentence_english": "He took the initiative to organize the party.", + "pos": "noun", + "word_frequency": 1357 + }, + { + "word": "moto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorcycle;motion", + "romanization": "moto", + "example_sentence_native": "Ha comprato una nuova moto.", + "example_sentence_english": "He bought a new motorcycle.", + "pos": "noun", + "word_frequency": 1359 + }, + { + "word": "nonna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandmother", + "romanization": "nonna", + "example_sentence_native": "Mia nonna prepara sempre la pasta fresca.", + "example_sentence_english": "My grandmother always makes fresh pasta.", + "pos": "noun", + "word_frequency": 1360 + }, + { + "word": "norma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rule;norm", + "romanization": "norma", + "example_sentence_native": "È la norma seguire le istruzioni.", + "example_sentence_english": "It's the norm to follow the instructions.", + "pos": "noun", + "word_frequency": 1361 + }, + { + "word": "partenza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "departure", + "romanization": "partenza", + "example_sentence_native": "L'orario di partenza del treno è alle dieci.", + "example_sentence_english": "The train's departure time is at ten.", + "pos": "noun", + "word_frequency": 1362 + }, + { + "word": "ricco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rich", + "romanization": "ricco", + "example_sentence_native": "È un uomo molto ricco.", + "example_sentence_english": "He is a very rich man.", + "pos": "adjective", + "word_frequency": 1365 + }, + { + "word": "software", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "software", + "romanization": "software", + "example_sentence_native": "Ho bisogno di installare un nuovo software sul mio computer.", + "example_sentence_english": "I need to install new software on my computer.", + "pos": "noun", + "word_frequency": 1366 + }, + { + "word": "tesoro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "treasure;darling", + "romanization": "tesoro", + "example_sentence_native": "Il pirata ha trovato il tesoro nascosto.", + "example_sentence_english": "The pirate found the hidden treasure.", + "pos": "noun", + "word_frequency": 1367 + }, + { + "word": "utilizzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "use;utilization", + "romanization": "utilizzo", + "example_sentence_native": "L'utilizzo di energia rinnovabile è importante.", + "example_sentence_english": "The use of renewable energy is important.", + "pos": "noun", + "word_frequency": 1368 + }, + { + "word": "vicenda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "event;affair;story", + "romanization": "vicenda", + "example_sentence_native": "La vicenda si è conclusa in modo inaspettato.", + "example_sentence_english": "The affair concluded unexpectedly.", + "pos": "noun", + "word_frequency": 1369 + }, + { + "word": "accettare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to accept", + "romanization": "accettare", + "example_sentence_native": "Ho deciso di accettare l'offerta di lavoro.", + "example_sentence_english": "I decided to accept the job offer.", + "pos": "verb", + "word_frequency": 1371 + }, + { + "word": "agente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "agent", + "romanization": "agente", + "example_sentence_native": "L'agente immobiliare ci ha mostrato la casa.", + "example_sentence_english": "The real estate agent showed us the house.", + "pos": "noun", + "word_frequency": 1372 + }, + { + "word": "aggiungere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to add", + "romanization": "aggiungere", + "example_sentence_native": "Puoi aggiungere un po' di sale alla pasta?", + "example_sentence_english": "Can you add a little salt to the pasta?", + "pos": "verb", + "word_frequency": 1373 + }, + { + "word": "appuntamento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "appointment;date", + "romanization": "appuntamento", + "example_sentence_native": "Ho un appuntamento dal medico domani.", + "example_sentence_english": "I have an appointment with the doctor tomorrow.", + "pos": "noun", + "word_frequency": 1374 + }, + { + "word": "compagno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "companion;partner;classmate", + "romanization": "compagno", + "example_sentence_native": "Il mio compagno di banco è molto simpatico.", + "example_sentence_english": "My desk mate is very nice.", + "pos": "noun", + "word_frequency": 1375 + }, + { + "word": "dipendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to depend", + "romanization": "dipendere", + "example_sentence_native": "Tutto dipende da te.", + "example_sentence_english": "Everything depends on you.", + "pos": "verb", + "word_frequency": 1376 + }, + { + "word": "file", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "file", + "romanization": "file", + "example_sentence_native": "Ho salvato il documento in un nuovo file.", + "example_sentence_english": "I saved the document in a new file.", + "pos": "noun", + "word_frequency": 1377 + }, + { + "word": "immigrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigrant", + "romanization": "immigrato", + "example_sentence_native": "Molti immigrati cercano una nuova vita in questo paese.", + "example_sentence_english": "Many immigrants seek a new life in this country.", + "pos": "noun", + "word_frequency": 1378 + }, + { + "word": "incredibile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "incredible", + "romanization": "incredibile", + "example_sentence_native": "La vista dal monte era incredibile.", + "example_sentence_english": "The view from the mountain was incredible.", + "pos": "adjective", + "word_frequency": 1379 + }, + { + "word": "manifestazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstration;protest;manifestation", + "romanization": "manifestazione", + "example_sentence_native": "C'è stata una grande manifestazione in piazza.", + "example_sentence_english": "There was a large demonstration in the square.", + "pos": "noun", + "word_frequency": 1381 + }, + { + "word": "naturalmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "naturally;of course", + "romanization": "naturalmente", + "example_sentence_native": "Naturalmente, sono d'accordo con te.", + "example_sentence_english": "Naturally, I agree with you.", + "pos": "adverb", + "word_frequency": 1384 + }, + { + "word": "positivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "positive", + "romanization": "positivo", + "example_sentence_native": "Ho ricevuto una risposta positiva.", + "example_sentence_english": "I received a positive answer.", + "pos": "adjective", + "word_frequency": 1385 + }, + { + "word": "successivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "next;subsequent", + "romanization": "successivo", + "example_sentence_native": "Il prossimo treno partirà al binario successivo.", + "example_sentence_english": "The next train will depart from the subsequent platform.", + "pos": "adjective", + "word_frequency": 1386 + }, + { + "word": "trattamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "treatment", + "romanization": "trattamento", + "example_sentence_native": "Il paziente sta ricevendo un nuovo trattamento.", + "example_sentence_english": "The patient is receiving a new treatment.", + "pos": "noun", + "word_frequency": 1387 + }, + { + "word": "turno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turn;shift", + "romanization": "turno", + "example_sentence_native": "È il mio turno di giocare.", + "example_sentence_english": "It's my turn to play.", + "pos": "noun", + "word_frequency": 1388 + }, + { + "word": "biblioteca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "library", + "romanization": "biblioteca", + "example_sentence_native": "Vado in biblioteca a studiare.", + "example_sentence_english": "I go to the library to study.", + "pos": "noun", + "word_frequency": 1391 + }, + { + "word": "chiudere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to close", + "romanization": "chiudere", + "example_sentence_native": "Per favore, puoi chiudere la porta?", + "example_sentence_english": "Please, can you close the door?", + "pos": "verb", + "word_frequency": 1392 + }, + { + "word": "concerto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "concert", + "romanization": "concerto", + "example_sentence_native": "Andiamo a un concerto stasera.", + "example_sentence_english": "We're going to a concert tonight.", + "pos": "noun", + "word_frequency": 1393 + }, + { + "word": "contenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contain", + "romanization": "contenere", + "example_sentence_native": "Questa scatola può contenere molti libri.", + "example_sentence_english": "This box can contain many books.", + "pos": "verb", + "word_frequency": 1394 + }, + { + "word": "divertente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fun;entertaining", + "romanization": "divertente", + "example_sentence_native": "Il film era molto divertente.", + "example_sentence_english": "The movie was very entertaining.", + "pos": "adjective", + "word_frequency": 1395 + }, + { + "word": "droga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug", + "romanization": "droga", + "example_sentence_native": "L'abuso di droga è un problema sociale.", + "example_sentence_english": "Drug abuse is a social problem.", + "pos": "noun", + "word_frequency": 1396 + }, + { + "word": "esistenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "existence", + "romanization": "esistenza", + "example_sentence_native": "La sua esistenza è stata piena di avventure.", + "example_sentence_english": "His existence was full of adventures.", + "pos": "noun", + "word_frequency": 1397 + }, + { + "word": "fermo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "still;stopped;firm", + "romanization": "fermo", + "example_sentence_native": "Il treno è fermo alla stazione.", + "example_sentence_english": "The train is stopped at the station.", + "pos": "adjective", + "word_frequency": 1398 + }, + { + "word": "fondazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foundation", + "romanization": "fondazione", + "example_sentence_native": "La fondazione sostiene progetti di ricerca.", + "example_sentence_english": "The foundation supports research projects.", + "pos": "noun", + "word_frequency": 1399 + }, + { + "word": "legno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wood", + "romanization": "legno", + "example_sentence_native": "Il tavolo è fatto di legno.", + "example_sentence_english": "The table is made of wood.", + "pos": "noun", + "word_frequency": 1400 + }, + { + "word": "nemico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enemy", + "romanization": "nemico", + "example_sentence_native": "Il soldato affrontò il suo nemico.", + "example_sentence_english": "The soldier faced his enemy.", + "pos": "noun", + "word_frequency": 1402 + }, + { + "word": "nove", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nine", + "romanization": "nove", + "example_sentence_native": "Ho nove libri sulla scrivania.", + "example_sentence_english": "I have nine books on the desk.", + "pos": "noun", + "word_frequency": 1403 + }, + { + "word": "olio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "oil", + "romanization": "olio", + "example_sentence_native": "Metti un po' di olio nell'insalata.", + "example_sentence_english": "Put some oil in the salad.", + "pos": "noun", + "word_frequency": 1405 + }, + { + "word": "onda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wave", + "romanization": "onda", + "example_sentence_native": "Le onde del mare erano alte.", + "example_sentence_english": "The sea waves were high.", + "pos": "noun", + "word_frequency": 1406 + }, + { + "word": "pane", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bread", + "romanization": "pane", + "example_sentence_native": "Vorrei un pezzo di pane.", + "example_sentence_english": "I would like a piece of bread.", + "pos": "noun", + "word_frequency": 1407 + }, + { + "word": "passato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "past", + "romanization": "passato", + "example_sentence_native": "La settimana passata è stata molto impegnativa.", + "example_sentence_english": "Last week was very busy.", + "pos": "adjective", + "word_frequency": 1408 + }, + { + "word": "russo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Russian", + "romanization": "russo", + "example_sentence_native": "Parla fluentemente il russo.", + "example_sentence_english": "He speaks Russian fluently.", + "pos": "adjective", + "word_frequency": 1410 + }, + { + "word": "scarpa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shoe", + "romanization": "scarpa", + "example_sentence_native": "Ho comprato un nuovo paio di scarpe.", + "example_sentence_english": "I bought a new pair of shoes.", + "pos": "noun", + "word_frequency": 1411 + }, + { + "word": "senato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senate", + "romanization": "senato", + "example_sentence_native": "Il Senato ha approvato la nuova legge.", + "example_sentence_english": "The Senate approved the new law.", + "pos": "noun", + "word_frequency": 1412 + }, + { + "word": "spagnolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Spanish", + "romanization": "spagnolo", + "example_sentence_native": "Lei sta imparando lo spagnolo.", + "example_sentence_english": "She is learning Spanish.", + "pos": "adjective", + "word_frequency": 1413 + }, + { + "word": "valle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valley", + "romanization": "valle", + "example_sentence_native": "La casa si trova in una bella valle.", + "example_sentence_english": "The house is located in a beautiful valley.", + "pos": "noun", + "word_frequency": 1414 + }, + { + "word": "appello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roll call", + "romanization": "appello", + "example_sentence_native": "L'insegnante ha fatto l'appello.", + "example_sentence_english": "The teacher took the roll call.", + "pos": "noun", + "word_frequency": 1416 + }, + { + "word": "ascoltare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to listen", + "romanization": "ascoltare", + "example_sentence_native": "Mi piace ascoltare la musica.", + "example_sentence_english": "I like to listen to music.", + "pos": "verb", + "word_frequency": 1417 + }, + { + "word": "bordo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge", + "romanization": "bordo", + "example_sentence_native": "Siamo saliti a bordo della nave.", + "example_sentence_english": "We got on board the ship.", + "pos": "noun", + "word_frequency": 1418 + }, + { + "word": "caduta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fall", + "romanization": "caduta", + "example_sentence_native": "La caduta delle foglie annuncia l'autunno.", + "example_sentence_english": "The fall of the leaves announces autumn.", + "pos": "noun", + "word_frequency": 1420 + }, + { + "word": "cavallo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "horse", + "romanization": "cavallo", + "example_sentence_native": "Il cavallo correva veloce nel prato.", + "example_sentence_english": "The horse ran fast in the meadow.", + "pos": "noun", + "word_frequency": 1421 + }, + { + "word": "cominciare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to begin", + "romanization": "cominciare", + "example_sentence_native": "Dobbiamo cominciare il lavoro presto.", + "example_sentence_english": "We need to start the work early.", + "pos": "verb", + "word_frequency": 1422 + }, + { + "word": "completo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "complete", + "romanization": "completo", + "example_sentence_native": "Il libro è completo di illustrazioni.", + "example_sentence_english": "The book is complete with illustrations.", + "pos": "adjective", + "word_frequency": 1423 + }, + { + "word": "congresso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congress", + "romanization": "congresso", + "example_sentence_native": "Il congresso si terrà a Roma.", + "example_sentence_english": "The congress will be held in Rome.", + "pos": "noun", + "word_frequency": 1424 + }, + { + "word": "costante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constant", + "romanization": "costante", + "example_sentence_native": "Ha una crescita costante nel suo lavoro.", + "example_sentence_english": "He has constant growth in his work.", + "pos": "adjective", + "word_frequency": 1425 + }, + { + "word": "crescere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to grow", + "romanization": "crescere", + "example_sentence_native": "I bambini crescono molto velocemente.", + "example_sentence_english": "Children grow very quickly.", + "pos": "verb", + "word_frequency": 1426 + }, + { + "word": "croce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cross", + "romanization": "croce", + "example_sentence_native": "Ha appeso una croce al muro.", + "example_sentence_english": "He hung a cross on the wall.", + "pos": "noun", + "word_frequency": 1427 + }, + { + "word": "educazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education", + "romanization": "educazione", + "example_sentence_native": "L'educazione è fondamentale per il futuro.", + "example_sentence_english": "Education is fundamental for the future.", + "pos": "noun", + "word_frequency": 1428 + }, + { + "word": "fila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "romanization": "fila", + "example_sentence_native": "C'era una lunga fila al supermercato.", + "example_sentence_english": "There was a long line at the supermarket.", + "pos": "noun", + "word_frequency": 1429 + }, + { + "word": "gioia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joy", + "romanization": "gioia", + "example_sentence_native": "La sua nascita è stata una grande gioia.", + "example_sentence_english": "His birth was a great joy.", + "pos": "noun", + "word_frequency": 1430 + }, + { + "word": "gusto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taste", + "romanization": "gusto", + "example_sentence_native": "Questo gelato ha un ottimo gusto.", + "example_sentence_english": "This ice cream has a great taste.", + "pos": "noun", + "word_frequency": 1431 + }, + { + "word": "ipotesi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothesis", + "romanization": "ipotesi", + "example_sentence_native": "La sua ipotesi è stata confermata dagli esperimenti.", + "example_sentence_english": "His hypothesis was confirmed by the experiments.", + "pos": "noun", + "word_frequency": 1432 + }, + { + "word": "lunedì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Monday", + "romanization": "lunedì", + "example_sentence_native": "Ci vediamo lunedì prossimo.", + "example_sentence_english": "See you next Monday.", + "pos": "noun", + "word_frequency": 1434 + }, + { + "word": "migrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migrant", + "romanization": "migrante", + "example_sentence_native": "Molti migranti cercano una vita migliore.", + "example_sentence_english": "Many migrants seek a better life.", + "pos": "noun", + "word_frequency": 1435 + }, + { + "word": "moderno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "modern", + "romanization": "moderno", + "example_sentence_native": "Viviamo in un'epoca moderna.", + "example_sentence_english": "We live in a modern era.", + "pos": "adjective", + "word_frequency": 1436 + }, + { + "word": "novità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novelty", + "romanization": "novità", + "example_sentence_native": "Ci sono delle novità interessanti.", + "example_sentence_english": "There is some interesting news.", + "pos": "noun", + "word_frequency": 1437 + }, + { + "word": "palla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ball", + "romanization": "palla", + "example_sentence_native": "Il bambino gioca con la palla.", + "example_sentence_english": "The child plays with the ball.", + "pos": "noun", + "word_frequency": 1438 + }, + { + "word": "patrimonio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heritage", + "romanization": "patrimonio", + "example_sentence_native": "Il Colosseo è un patrimonio dell'umanità.", + "example_sentence_english": "The Colosseum is a world heritage site.", + "pos": "noun", + "word_frequency": 1439 + }, + { + "word": "perfettamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfectly", + "romanization": "perfettamente", + "example_sentence_native": "Ha eseguito il compito perfettamente.", + "example_sentence_english": "He performed the task perfectly.", + "pos": "adverb", + "word_frequency": 1440 + }, + { + "word": "pianeta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "planet", + "romanization": "pianeta", + "example_sentence_native": "La Terra è il nostro pianeta.", + "example_sentence_english": "Earth is our planet.", + "pos": "noun", + "word_frequency": 1441 + }, + { + "word": "prevedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to foresee;to predict", + "romanization": "prevedere", + "example_sentence_native": "È difficile prevedere il futuro.", + "example_sentence_english": "It's difficult to predict the future.", + "pos": "verb", + "word_frequency": 1442 + }, + { + "word": "ritardo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delay", + "romanization": "ritardo", + "example_sentence_native": "Il treno è arrivato con un leggero ritardo.", + "example_sentence_english": "The train arrived with a slight delay.", + "pos": "noun", + "word_frequency": 1443 + }, + { + "word": "scoperta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discovery", + "romanization": "scoperta", + "example_sentence_native": "La scoperta di nuove specie è sempre emozionante.", + "example_sentence_english": "The discovery of new species is always exciting.", + "pos": "noun", + "word_frequency": 1444 + }, + { + "word": "sensazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensation;feeling", + "romanization": "sensazione", + "example_sentence_native": "Ho una strana sensazione riguardo a questo.", + "example_sentence_english": "I have a strange feeling about this.", + "pos": "noun", + "word_frequency": 1445 + }, + { + "word": "sostenere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to support;to sustain", + "romanization": "sostenere", + "example_sentence_native": "Dobbiamo sostenere le nostre idee con argomenti validi.", + "example_sentence_english": "We must support our ideas with valid arguments.", + "pos": "verb", + "word_frequency": 1446 + }, + { + "word": "spiaggia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beach", + "romanization": "spiaggia", + "example_sentence_native": "Andiamo in spiaggia quest'estate.", + "example_sentence_english": "Let's go to the beach this summer.", + "pos": "noun", + "word_frequency": 1447 + }, + { + "word": "stadio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stadium;stage", + "romanization": "stadio", + "example_sentence_native": "La partita si giocherà nello stadio principale.", + "example_sentence_english": "The match will be played in the main stadium.", + "pos": "noun", + "word_frequency": 1448 + }, + { + "word": "tutela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protection;safeguard", + "romanization": "tutela", + "example_sentence_native": "La tutela dell'ambiente è fondamentale.", + "example_sentence_english": "Environmental protection is fundamental.", + "pos": "noun", + "word_frequency": 1451 + }, + { + "word": "vacanza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "holiday;vacation", + "romanization": "vacanza", + "example_sentence_native": "Andiamo in vacanza ad agosto.", + "example_sentence_english": "We're going on holiday in August.", + "pos": "noun", + "word_frequency": 1452 + }, + { + "word": "volto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "face", + "romanization": "volto", + "example_sentence_native": "Il suo volto era illuminato da un sorriso.", + "example_sentence_english": "His face was lit up by a smile.", + "pos": "noun", + "word_frequency": 1453 + }, + { + "word": "apertura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opening", + "romanization": "apertura", + "example_sentence_native": "L'apertura del nuovo negozio è domani.", + "example_sentence_english": "The opening of the new shop is tomorrow.", + "pos": "noun", + "word_frequency": 1455 + }, + { + "word": "assenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absence", + "romanization": "assenza", + "example_sentence_native": "La sua assenza è stata notata da tutti.", + "example_sentence_english": "His absence was noticed by everyone.", + "pos": "noun", + "word_frequency": 1456 + }, + { + "word": "cambiamento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "change", + "romanization": "cambiamento", + "example_sentence_native": "C'è stato un grande cambiamento nel suo atteggiamento.", + "example_sentence_english": "There has been a big change in his attitude.", + "pos": "noun", + "word_frequency": 1457 + }, + { + "word": "classico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "classic", + "romanization": "classico", + "example_sentence_native": "Questo è un esempio classico di architettura romana.", + "example_sentence_english": "This is a classic example of Roman architecture.", + "pos": "adjective", + "word_frequency": 1458 + }, + { + "word": "comando", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "command;order", + "romanization": "comando", + "example_sentence_native": "Ha dato il comando di avanzare.", + "example_sentence_english": "He gave the command to advance.", + "pos": "noun", + "word_frequency": 1459 + }, + { + "word": "dichiarare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to declare", + "romanization": "dichiarare", + "example_sentence_native": "Ha dichiarato la sua innocenza.", + "example_sentence_english": "He declared his innocence.", + "pos": "verb", + "word_frequency": 1461 + }, + { + "word": "emergenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emergency", + "romanization": "emergenza", + "example_sentence_native": "In caso di emergenza, chiamare il 112.", + "example_sentence_english": "In case of emergency, call 112.", + "pos": "noun", + "word_frequency": 1462 + }, + { + "word": "esserci", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "there to be (to exist)", + "romanization": "esserci", + "example_sentence_native": "C'è un libro sul tavolo.", + "example_sentence_english": "There is a book on the table.", + "pos": "verb", + "word_frequency": 1463 + }, + { + "word": "estremamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremely", + "romanization": "estremamente", + "example_sentence_native": "La situazione è estremamente complessa.", + "example_sentence_english": "The situation is extremely complex.", + "pos": "adverb", + "word_frequency": 1464 + }, + { + "word": "ferro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "iron", + "romanization": "ferro", + "example_sentence_native": "Il ferro è un metallo resistente.", + "example_sentence_english": "Iron is a strong metal.", + "pos": "noun", + "word_frequency": 1465 + }, + { + "word": "influenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "influence;flu", + "romanization": "influenza", + "example_sentence_native": "Ha avuto una grande influenza sulla mia decisione.", + "example_sentence_english": "He had a great influence on my decision.", + "pos": "noun", + "word_frequency": 1466 + }, + { + "word": "istruzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "education;instruction", + "romanization": "istruzione", + "example_sentence_native": "L'istruzione è fondamentale per il futuro.", + "example_sentence_english": "Education is fundamental for the future.", + "pos": "noun", + "word_frequency": 1467 + }, + { + "word": "papà", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dad;daddy", + "romanization": "papà", + "example_sentence_native": "Mio papà mi ha insegnato a nuotare.", + "example_sentence_english": "My dad taught me how to swim.", + "pos": "noun", + "word_frequency": 1469 + }, + { + "word": "protagonista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protagonist", + "romanization": "protagonista", + "example_sentence_native": "Il protagonista del film è un attore famoso.", + "example_sentence_english": "The protagonist of the film is a famous actor.", + "pos": "noun", + "word_frequency": 1470 + }, + { + "word": "quadro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painting;picture;framework", + "romanization": "quadro", + "example_sentence_native": "Ha appeso un bel quadro alla parete.", + "example_sentence_english": "He hung a beautiful painting on the wall.", + "pos": "noun", + "word_frequency": 1471 + }, + { + "word": "reato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crime;offense", + "romanization": "reato", + "example_sentence_native": "Commettere un reato ha delle conseguenze legali.", + "example_sentence_english": "Committing a crime has legal consequences.", + "pos": "noun", + "word_frequency": 1472 + }, + { + "word": "ristorante", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "restaurant", + "romanization": "ristorante", + "example_sentence_native": "Andiamo a cena in un ristorante italiano.", + "example_sentence_english": "Let's go to dinner at an Italian restaurant.", + "pos": "noun", + "word_frequency": 1473 + }, + { + "word": "sentimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feeling;sentiment", + "romanization": "sentimento", + "example_sentence_native": "Ha espresso i suoi veri sentimenti.", + "example_sentence_english": "He expressed his true feelings.", + "pos": "noun", + "word_frequency": 1474 + }, + { + "word": "sessuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexual", + "romanization": "sessuale", + "example_sentence_native": "L'educazione sessuale è importante.", + "example_sentence_english": "Sexual education is important.", + "pos": "adjective", + "word_frequency": 1475 + }, + { + "word": "tassa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tax;fee", + "romanization": "tassa", + "example_sentence_native": "Dobbiamo pagare le tasse ogni anno.", + "example_sentence_english": "We have to pay taxes every year.", + "pos": "noun", + "word_frequency": 1477 + }, + { + "word": "tavolo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "table", + "romanization": "tavolo", + "example_sentence_native": "Il libro è sul tavolo.", + "example_sentence_english": "The book is on the table.", + "pos": "noun", + "word_frequency": 1478 + }, + { + "word": "tendenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tendency;trend", + "romanization": "tendenza", + "example_sentence_native": "C'è una tendenza crescente verso il cibo biologico.", + "example_sentence_english": "There's a growing trend towards organic food.", + "pos": "noun", + "word_frequency": 1479 + }, + { + "word": "tizio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guy;fellow", + "romanization": "tizio", + "example_sentence_native": "C'era un tizio strano alla porta.", + "example_sentence_english": "There was a strange guy at the door.", + "pos": "noun", + "word_frequency": 1480 + }, + { + "word": "tradizionale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traditional", + "romanization": "tradizionale", + "example_sentence_native": "La cucina italiana è molto tradizionale.", + "example_sentence_english": "Italian cuisine is very traditional.", + "pos": "adjective", + "word_frequency": 1481 + }, + { + "word": "addosso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on oneself;on one's back", + "romanization": "addosso", + "example_sentence_native": "Non ho soldi addosso.", + "example_sentence_english": "I don't have any money on me.", + "pos": "adverb", + "word_frequency": 1483 + }, + { + "word": "antico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ancient;old", + "romanization": "antico", + "example_sentence_native": "Roma è una città antica.", + "example_sentence_english": "Rome is an ancient city.", + "pos": "adjective", + "word_frequency": 1485 + }, + { + "word": "assoluto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absolute", + "romanization": "assoluto", + "example_sentence_native": "È una verità assoluta.", + "example_sentence_english": "It is an absolute truth.", + "pos": "adjective", + "word_frequency": 1486 + }, + { + "word": "attivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "active", + "romanization": "attivo", + "example_sentence_native": "È una persona molto attiva.", + "example_sentence_english": "He is a very active person.", + "pos": "adjective", + "word_frequency": 1487 + }, + { + "word": "band", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "band (music)", + "romanization": "band", + "example_sentence_native": "La mia band preferita suonerà stasera.", + "example_sentence_english": "My favorite band will play tonight.", + "pos": "noun", + "word_frequency": 1488 + }, + { + "word": "braccio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "arm", + "romanization": "braccio", + "example_sentence_native": "Mi fa male il braccio.", + "example_sentence_english": "My arm hurts.", + "pos": "noun", + "word_frequency": 1489 + }, + { + "word": "campione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champion;sample", + "romanization": "campione", + "example_sentence_native": "È il campione del mondo di tennis.", + "example_sentence_english": "He is the world tennis champion.", + "pos": "noun", + "word_frequency": 1490 + }, + { + "word": "chiusura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "closure;closing", + "romanization": "chiusura", + "example_sentence_native": "L'orario di chiusura è alle sette.", + "example_sentence_english": "The closing time is at seven.", + "pos": "noun", + "word_frequency": 1491 + }, + { + "word": "ciclo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycle", + "romanization": "ciclo", + "example_sentence_native": "Il ciclo dell'acqua è fondamentale.", + "example_sentence_english": "The water cycle is fundamental.", + "pos": "noun", + "word_frequency": 1492 + }, + { + "word": "collega", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colleague", + "romanization": "collega", + "example_sentence_native": "Il mio collega mi ha aiutato.", + "example_sentence_english": "My colleague helped me.", + "pos": "noun", + "word_frequency": 1493 + }, + { + "word": "colpire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit;to strike", + "romanization": "colpire", + "example_sentence_native": "Ha colpito la palla con forza.", + "example_sentence_english": "He hit the ball hard.", + "pos": "verb", + "word_frequency": 1494 + }, + { + "word": "conferenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conference;lecture", + "romanization": "conferenza", + "example_sentence_native": "Ho partecipato a una conferenza interessante.", + "example_sentence_english": "I attended an interesting conference.", + "pos": "noun", + "word_frequency": 1495 + }, + { + "word": "dimostrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to demonstrate;to show", + "romanization": "dimostrare", + "example_sentence_native": "Voglio dimostrare le mie capacità.", + "example_sentence_english": "I want to demonstrate my abilities.", + "pos": "verb", + "word_frequency": 1496 + }, + { + "word": "disco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "disc;record", + "romanization": "disco", + "example_sentence_native": "Ho comprato un nuovo disco.", + "example_sentence_english": "I bought a new record.", + "pos": "noun", + "word_frequency": 1497 + }, + { + "word": "entrata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "entrance;entry", + "romanization": "entrata", + "example_sentence_native": "L'entrata è gratuita.", + "example_sentence_english": "The entrance is free.", + "pos": "noun", + "word_frequency": 1498 + }, + { + "word": "esclusivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusively", + "romanization": "esclusivamente", + "example_sentence_native": "Questo prodotto è disponibile esclusivamente online.", + "example_sentence_english": "This product is available exclusively online.", + "pos": "adverb", + "word_frequency": 1499 + }, + { + "word": "forum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forum", + "romanization": "forum", + "example_sentence_native": "Ho postato la domanda sul forum.", + "example_sentence_english": "I posted the question on the forum.", + "pos": "noun", + "word_frequency": 1500 + }, + { + "word": "gestire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manage;to handle", + "romanization": "gestire", + "example_sentence_native": "Devo gestire molti progetti.", + "example_sentence_english": "I have to manage many projects.", + "pos": "verb", + "word_frequency": 1501 + }, + { + "word": "giunta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "council;board", + "romanization": "giunta", + "example_sentence_native": "La giunta comunale ha approvato il piano.", + "example_sentence_english": "The municipal council approved the plan.", + "pos": "noun", + "word_frequency": 1502 + }, + { + "word": "hotel", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hotel", + "romanization": "hotel", + "example_sentence_native": "Abbiamo prenotato un hotel in centro.", + "example_sentence_english": "We booked a hotel in the center.", + "pos": "noun", + "word_frequency": 1503 + }, + { + "word": "mail", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "email", + "romanization": "mail", + "example_sentence_native": "Ti ho inviato una mail.", + "example_sentence_english": "I sent you an email.", + "pos": "noun", + "word_frequency": 1505 + }, + { + "word": "marina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navy;coast", + "romanization": "marina", + "example_sentence_native": "La marina militare protegge le coste.", + "example_sentence_english": "The navy protects the coasts.", + "pos": "noun", + "word_frequency": 1506 + }, + { + "word": "montagna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mountain", + "romanization": "montagna", + "example_sentence_native": "Mi piace andare in montagna.", + "example_sentence_english": "I like to go to the mountains.", + "pos": "noun", + "word_frequency": 1508 + }, + { + "word": "potente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powerful", + "romanization": "potente", + "example_sentence_native": "Ha un motore molto potente.", + "example_sentence_english": "It has a very powerful engine.", + "pos": "adjective", + "word_frequency": 1510 + }, + { + "word": "preferire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to prefer", + "romanization": "preferire", + "example_sentence_native": "Preferisco il caffè al tè.", + "example_sentence_english": "I prefer coffee to tea.", + "pos": "verb", + "word_frequency": 1511 + }, + { + "word": "promozione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promotion", + "romanization": "promozione", + "example_sentence_native": "C'è una promozione speciale oggi.", + "example_sentence_english": "There is a special promotion today.", + "pos": "noun", + "word_frequency": 1512 + }, + { + "word": "quotidiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daily", + "romanization": "quotidiano", + "example_sentence_native": "Leggo il giornale quotidiano.", + "example_sentence_english": "I read the daily newspaper.", + "pos": "adjective", + "word_frequency": 1513 + }, + { + "word": "racconto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "story;tale", + "romanization": "racconto", + "example_sentence_native": "Mi ha letto un bel racconto.", + "example_sentence_english": "He read me a nice story.", + "pos": "noun", + "word_frequency": 1514 + }, + { + "word": "simbolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symbol", + "romanization": "simbolo", + "example_sentence_native": "La colomba è un simbolo di pace.", + "example_sentence_english": "The dove is a symbol of peace.", + "pos": "noun", + "word_frequency": 1515 + }, + { + "word": "sorpresa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surprise", + "romanization": "sorpresa", + "example_sentence_native": "Che bella sorpresa!", + "example_sentence_english": "What a nice surprise!", + "pos": "noun", + "word_frequency": 1516 + }, + { + "word": "ulteriore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further;additional", + "romanization": "ulteriore", + "example_sentence_native": "Abbiamo bisogno di ulteriori informazioni.", + "example_sentence_english": "We need further information.", + "pos": "adjective", + "word_frequency": 1517 + }, + { + "word": "agenzia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agency", + "romanization": "agenzia", + "example_sentence_native": "Ho prenotato il viaggio tramite un'agenzia.", + "example_sentence_english": "I booked the trip through an agency.", + "pos": "noun", + "word_frequency": 1519 + }, + { + "word": "amicizia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "friendship", + "romanization": "amicizia", + "example_sentence_native": "La loro amicizia è molto forte.", + "example_sentence_english": "Their friendship is very strong.", + "pos": "noun", + "word_frequency": 1520 + }, + { + "word": "angelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angel", + "romanization": "angelo", + "example_sentence_native": "Ha un viso d'angelo.", + "example_sentence_english": "He has an angel's face.", + "pos": "noun", + "word_frequency": 1521 + }, + { + "word": "assistenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assistance", + "romanization": "assistenza", + "example_sentence_native": "Ho bisogno di assistenza tecnica.", + "example_sentence_english": "I need technical assistance.", + "pos": "noun", + "word_frequency": 1522 + }, + { + "word": "bere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to drink", + "romanization": "bere", + "example_sentence_native": "Voglio bere un bicchiere d'acqua.", + "example_sentence_english": "I want to drink a glass of water.", + "pos": "verb", + "word_frequency": 1523 + }, + { + "word": "biglietto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ticket", + "romanization": "biglietto", + "example_sentence_native": "Ho comprato un biglietto per il concerto.", + "example_sentence_english": "I bought a ticket for the concert.", + "pos": "noun", + "word_frequency": 1524 + }, + { + "word": "confine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "border", + "romanization": "confine", + "example_sentence_native": "Hanno attraversato il confine senza problemi.", + "example_sentence_english": "They crossed the border without problems.", + "pos": "noun", + "word_frequency": 1526 + }, + { + "word": "conflitto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conflict", + "romanization": "conflitto", + "example_sentence_native": "C'è stato un conflitto di interessi.", + "example_sentence_english": "There was a conflict of interest.", + "pos": "noun", + "word_frequency": 1527 + }, + { + "word": "contributo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution", + "romanization": "contributo", + "example_sentence_native": "Il suo contributo è stato fondamentale.", + "example_sentence_english": "His contribution was fundamental.", + "pos": "noun", + "word_frequency": 1528 + }, + { + "word": "descrizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "description", + "romanization": "descrizione", + "example_sentence_native": "La descrizione del prodotto è molto dettagliata.", + "example_sentence_english": "The product description is very detailed.", + "pos": "noun", + "word_frequency": 1529 + }, + { + "word": "facoltà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faculty", + "romanization": "facoltà", + "example_sentence_native": "Studio alla facoltà di lettere.", + "example_sentence_english": "I study at the faculty of literature.", + "pos": "noun", + "word_frequency": 1530 + }, + { + "word": "fisico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physical", + "romanization": "fisico", + "example_sentence_native": "Ha una buona condizione fisica.", + "example_sentence_english": "He has good physical condition.", + "pos": "adjective", + "word_frequency": 1531 + }, + { + "word": "fornire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide", + "romanization": "fornire", + "example_sentence_native": "Dobbiamo fornire tutte le informazioni necessarie.", + "example_sentence_english": "We must provide all the necessary information.", + "pos": "verb", + "word_frequency": 1532 + }, + { + "word": "fuga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escape", + "romanization": "fuga", + "example_sentence_native": "La polizia ha impedito la fuga dei ladri.", + "example_sentence_english": "The police prevented the escape of the thieves.", + "pos": "noun", + "word_frequency": 1533 + }, + { + "word": "gamba", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "leg", + "romanization": "gamba", + "example_sentence_native": "Mi fa male la gamba.", + "example_sentence_english": "My leg hurts.", + "pos": "noun", + "word_frequency": 1534 + }, + { + "word": "generalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generally", + "romanization": "generalmente", + "example_sentence_native": "Generalmente, mi sveglio presto.", + "example_sentence_english": "Generally, I wake up early.", + "pos": "adverb", + "word_frequency": 1535 + }, + { + "word": "gentile", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kind", + "romanization": "gentile", + "example_sentence_native": "È una persona molto gentile.", + "example_sentence_english": "He is a very kind person.", + "pos": "adjective", + "word_frequency": 1536 + }, + { + "word": "giardino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "garden", + "romanization": "giardino", + "example_sentence_native": "Abbiamo un bel giardino dietro casa.", + "example_sentence_english": "We have a beautiful garden behind the house.", + "pos": "noun", + "word_frequency": 1537 + }, + { + "word": "giocatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "player", + "romanization": "giocatore", + "example_sentence_native": "È un ottimo giocatore di calcio.", + "example_sentence_english": "He is a great soccer player.", + "pos": "noun", + "word_frequency": 1538 + }, + { + "word": "industriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrial", + "romanization": "industriale", + "example_sentence_native": "La zona industriale è fuori città.", + "example_sentence_english": "The industrial area is outside the city.", + "pos": "adjective", + "word_frequency": 1539 + }, + { + "word": "lago", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lake", + "romanization": "lago", + "example_sentence_native": "Andiamo a fare una gita al lago.", + "example_sentence_english": "Let's go on a trip to the lake.", + "pos": "noun", + "word_frequency": 1541 + }, + { + "word": "partecipante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "participant", + "romanization": "partecipante", + "example_sentence_native": "Ogni partecipante ha ricevuto un certificato.", + "example_sentence_english": "Every participant received a certificate.", + "pos": "noun", + "word_frequency": 1543 + }, + { + "word": "presentazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presentation", + "romanization": "presentazione", + "example_sentence_native": "Ho preparato una presentazione per la riunione.", + "example_sentence_english": "I prepared a presentation for the meeting.", + "pos": "noun", + "word_frequency": 1544 + }, + { + "word": "referendum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referendum", + "romanization": "referendum", + "example_sentence_native": "Il governo ha indetto un referendum.", + "example_sentence_english": "The government called a referendum.", + "pos": "noun", + "word_frequency": 1545 + }, + { + "word": "regalo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "gift", + "romanization": "regalo", + "example_sentence_native": "Ho comprato un regalo per il suo compleanno.", + "example_sentence_english": "I bought a gift for his birthday.", + "pos": "noun", + "word_frequency": 1546 + }, + { + "word": "successivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsequently", + "romanization": "successivamente", + "example_sentence_native": "Prima ha parlato lui, successivamente io.", + "example_sentence_english": "First he spoke, subsequently I did.", + "pos": "adverb", + "word_frequency": 1547 + }, + { + "word": "tesi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thesis", + "romanization": "tesi", + "example_sentence_native": "Sto scrivendo la mia tesi di laurea.", + "example_sentence_english": "I am writing my degree thesis.", + "pos": "noun", + "word_frequency": 1548 + }, + { + "word": "toccare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to touch", + "romanization": "toccare", + "example_sentence_native": "Non toccare il forno, è caldo.", + "example_sentence_english": "Don't touch the oven, it's hot.", + "pos": "verb", + "word_frequency": 1549 + }, + { + "word": "vestito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dress", + "romanization": "vestito", + "example_sentence_native": "Ha comprato un nuovo vestito per la festa.", + "example_sentence_english": "She bought a new dress for the party.", + "pos": "noun", + "word_frequency": 1550 + }, + { + "word": "blocco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "block", + "romanization": "blocco", + "example_sentence_native": "C'è stato un blocco stradale.", + "example_sentence_english": "There was a road block.", + "pos": "noun", + "word_frequency": 1551 + }, + { + "word": "borsa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bag", + "romanization": "borsa", + "example_sentence_native": "Ho lasciato la borsa sul tavolo.", + "example_sentence_english": "I left my bag on the table.", + "pos": "noun", + "word_frequency": 1552 + }, + { + "word": "clima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "climate", + "romanization": "clima", + "example_sentence_native": "Il clima qui è mite.", + "example_sentence_english": "The climate here is mild.", + "pos": "noun", + "word_frequency": 1553 + }, + { + "word": "copertura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coverage", + "romanization": "copertura", + "example_sentence_native": "La copertura del tetto è danneggiata.", + "example_sentence_english": "The roof covering is damaged.", + "pos": "noun", + "word_frequency": 1554 + }, + { + "word": "costringere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to force", + "romanization": "costringere", + "example_sentence_native": "Nessuno può costringerti a farlo.", + "example_sentence_english": "No one can force you to do it.", + "pos": "verb", + "word_frequency": 1555 + }, + { + "word": "discutere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discuss", + "romanization": "discutere", + "example_sentence_native": "Dobbiamo discutere questo problema.", + "example_sentence_english": "We need to discuss this problem.", + "pos": "verb", + "word_frequency": 1556 + }, + { + "word": "esatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exact", + "romanization": "esatto", + "example_sentence_native": "La risposta è esatta.", + "example_sentence_english": "The answer is exact.", + "pos": "adjective", + "word_frequency": 1558 + }, + { + "word": "mal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "badly", + "romanization": "mal", + "example_sentence_native": "Il lavoro è stato mal fatto.", + "example_sentence_english": "The work was badly done.", + "pos": "adverb", + "word_frequency": 1559 + }, + { + "word": "motore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engine", + "romanization": "motore", + "example_sentence_native": "Il motore dell'auto è molto potente.", + "example_sentence_english": "The car's engine is very powerful.", + "pos": "noun", + "word_frequency": 1560 + }, + { + "word": "pietra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stone", + "romanization": "pietra", + "example_sentence_native": "Ho trovato una bella pietra sulla spiaggia.", + "example_sentence_english": "I found a beautiful stone on the beach.", + "pos": "noun", + "word_frequency": 1562 + }, + { + "word": "poesia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poetry", + "romanization": "poesia", + "example_sentence_native": "Leggo spesso poesia per rilassarmi.", + "example_sentence_english": "I often read poetry to relax.", + "pos": "noun", + "word_frequency": 1563 + }, + { + "word": "proprietario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owner", + "romanization": "proprietario", + "example_sentence_native": "Il proprietario del negozio è molto gentile.", + "example_sentence_english": "The owner of the shop is very kind.", + "pos": "noun", + "word_frequency": 1564 + }, + { + "word": "provenire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come from;to originate", + "romanization": "provenire", + "example_sentence_native": "Questo vino proviene da una regione famosa.", + "example_sentence_english": "This wine comes from a famous region.", + "pos": "verb", + "word_frequency": 1565 + }, + { + "word": "puntata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "episode (TV;radio);stake (bet)", + "romanization": "puntata", + "example_sentence_native": "Ho guardato l'ultima puntata della serie.", + "example_sentence_english": "I watched the last episode of the series.", + "pos": "noun", + "word_frequency": 1566 + }, + { + "word": "reddito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income", + "romanization": "reddito", + "example_sentence_native": "Il suo reddito è aumentato quest'anno.", + "example_sentence_english": "His income increased this year.", + "pos": "noun", + "word_frequency": 1567 + }, + { + "word": "relativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relative;related", + "romanization": "relativo", + "example_sentence_native": "Abbiamo discusso i problemi relativi al progetto.", + "example_sentence_english": "We discussed the problems related to the project.", + "pos": "adjective", + "word_frequency": 1568 + }, + { + "word": "scambio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exchange;swap", + "romanization": "scambio", + "example_sentence_native": "C'è stato uno scambio di idee interessante.", + "example_sentence_english": "There was an interesting exchange of ideas.", + "pos": "noun", + "word_frequency": 1570 + }, + { + "word": "sufficiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sufficient;enough", + "romanization": "sufficiente", + "example_sentence_native": "Non abbiamo cibo sufficiente per tutti.", + "example_sentence_english": "We don't have sufficient food for everyone.", + "pos": "adjective", + "word_frequency": 1571 + }, + { + "word": "ufficialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officially", + "romanization": "ufficialmente", + "example_sentence_native": "La notizia è stata annunciata ufficialmente.", + "example_sentence_english": "The news was officially announced.", + "pos": "adverb", + "word_frequency": 1572 + }, + { + "word": "ala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wing", + "romanization": "ala", + "example_sentence_native": "L'uccello ha un'ala ferita.", + "example_sentence_english": "The bird has an injured wing.", + "pos": "noun", + "word_frequency": 1574 + }, + { + "word": "attimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moment;instant", + "romanization": "attimo", + "example_sentence_native": "Aspetta un attimo, per favore.", + "example_sentence_english": "Wait a moment, please.", + "pos": "noun", + "word_frequency": 1575 + }, + { + "word": "avvenire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to happen;to occur", + "romanization": "avvenire", + "example_sentence_native": "Non sappiamo cosa potrà avvenire domani.", + "example_sentence_english": "We don't know what might happen tomorrow.", + "pos": "verb", + "word_frequency": 1576 + }, + { + "word": "avviso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notice;warning;advice", + "romanization": "avviso", + "example_sentence_native": "Ho letto l'avviso sulla porta.", + "example_sentence_english": "I read the notice on the door.", + "pos": "noun", + "word_frequency": 1577 + }, + { + "word": "canto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singing;song;corner", + "romanization": "canto", + "example_sentence_native": "Il canto degli uccelli è bellissimo.", + "example_sentence_english": "The singing of the birds is beautiful.", + "pos": "noun", + "word_frequency": 1578 + }, + { + "word": "dedicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dedicate;to devote", + "romanization": "dedicare", + "example_sentence_native": "Ha deciso di dedicare la sua vita all'arte.", + "example_sentence_english": "He decided to dedicate his life to art.", + "pos": "verb", + "word_frequency": 1579 + }, + { + "word": "differente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "different", + "romanization": "differente", + "example_sentence_native": "Abbiamo opinioni differenti su questo argomento.", + "example_sentence_english": "We have different opinions on this topic.", + "pos": "adjective", + "word_frequency": 1581 + }, + { + "word": "diffusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diffusion;spread;broadcast", + "romanization": "diffusione", + "example_sentence_native": "La diffusione delle notizie è molto rapida oggi.", + "example_sentence_english": "The spread of news is very rapid today.", + "pos": "noun", + "word_frequency": 1582 + }, + { + "word": "distretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "district", + "romanization": "distretto", + "example_sentence_native": "Viviamo in un distretto residenziale tranquillo.", + "example_sentence_english": "We live in a quiet residential district.", + "pos": "noun", + "word_frequency": 1583 + }, + { + "word": "epoca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "era;period;epoch", + "romanization": "epoca", + "example_sentence_native": "Era un'epoca di grandi cambiamenti.", + "example_sentence_english": "It was an era of great changes.", + "pos": "noun", + "word_frequency": 1584 + }, + { + "word": "intendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to intend;to understand", + "romanization": "intendere", + "example_sentence_native": "Non intendo disturbarti.", + "example_sentence_english": "I don't intend to disturb you.", + "pos": "verb", + "word_frequency": 1585 + }, + { + "word": "latino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latin", + "romanization": "latino", + "example_sentence_native": "Il latino è una lingua antica.", + "example_sentence_english": "Latin is an ancient language.", + "pos": "adjective", + "word_frequency": 1586 + }, + { + "word": "occupare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to occupy;to take up;to busy oneself", + "romanization": "occupare", + "example_sentence_native": "Il divano occupa troppo spazio.", + "example_sentence_english": "The sofa takes up too much space.", + "pos": "verb", + "word_frequency": 1587 + }, + { + "word": "organizzare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to organize", + "romanization": "organizzare", + "example_sentence_native": "Dobbiamo organizzare la festa.", + "example_sentence_english": "We need to organize the party.", + "pos": "verb", + "word_frequency": 1588 + }, + { + "word": "pizza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pizza", + "romanization": "pizza", + "example_sentence_native": "Vorrei una pizza margherita.", + "example_sentence_english": "I would like a Margherita pizza.", + "pos": "noun", + "word_frequency": 1589 + }, + { + "word": "proporre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to propose;to suggest", + "romanization": "proporre", + "example_sentence_native": "Vorrei proporre una nuova idea.", + "example_sentence_english": "I would like to propose a new idea.", + "pos": "verb", + "word_frequency": 1590 + }, + { + "word": "realizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realization;achievement;creation", + "romanization": "realizzazione", + "example_sentence_native": "La realizzazione del progetto è stata un successo.", + "example_sentence_english": "The realization of the project was a success.", + "pos": "noun", + "word_frequency": 1591 + }, + { + "word": "regolamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation;rulebook", + "romanization": "regolamento", + "example_sentence_native": "Dobbiamo seguire il regolamento.", + "example_sentence_english": "We must follow the regulation.", + "pos": "noun", + "word_frequency": 1592 + }, + { + "word": "ridurre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reduce;to diminish", + "romanization": "ridurre", + "example_sentence_native": "Dobbiamo ridurre i costi.", + "example_sentence_english": "We need to reduce costs.", + "pos": "verb", + "word_frequency": 1593 + }, + { + "word": "specifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specific", + "romanization": "specifico", + "example_sentence_native": "Ho bisogno di informazioni più specifiche.", + "example_sentence_english": "I need more specific information.", + "pos": "adjective", + "word_frequency": 1594 + }, + { + "word": "taglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cut;style;reduction", + "romanization": "taglio", + "example_sentence_native": "Mi piace il tuo nuovo taglio di capelli.", + "example_sentence_english": "I like your new haircut.", + "pos": "noun", + "word_frequency": 1595 + }, + { + "word": "tasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rate;badger", + "romanization": "tasso", + "example_sentence_native": "Il tasso di interesse è aumentato.", + "example_sentence_english": "The interest rate has increased.", + "pos": "noun", + "word_frequency": 1596 + }, + { + "word": "temperatura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "temperature", + "romanization": "temperatura", + "example_sentence_native": "La temperatura è scesa molto.", + "example_sentence_english": "The temperature dropped a lot.", + "pos": "noun", + "word_frequency": 1597 + }, + { + "word": "tranquillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calm;quiet;peaceful", + "romanization": "tranquillo", + "example_sentence_native": "Stai tranquillo, andrà tutto bene.", + "example_sentence_english": "Stay calm, everything will be fine.", + "pos": "adjective", + "word_frequency": 1598 + }, + { + "word": "acquisto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purchase;acquisition", + "romanization": "acquisto", + "example_sentence_native": "Ho fatto un buon acquisto.", + "example_sentence_english": "I made a good purchase.", + "pos": "noun", + "word_frequency": 1599 + }, + { + "word": "altezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "height", + "romanization": "altezza", + "example_sentence_native": "La sua altezza è impressionante.", + "example_sentence_english": "His height is impressive.", + "pos": "noun", + "word_frequency": 1600 + }, + { + "word": "campionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "championship;league", + "romanization": "campionato", + "example_sentence_native": "Hanno vinto il campionato l'anno scorso.", + "example_sentence_english": "They won the championship last year.", + "pos": "noun", + "word_frequency": 1601 + }, + { + "word": "carcere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prison;jail", + "romanization": "carcere", + "example_sentence_native": "È stato condannato a cinque anni di carcere.", + "example_sentence_english": "He was sentenced to five years in prison.", + "pos": "noun", + "word_frequency": 1602 + }, + { + "word": "cittadinanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citizenship", + "romanization": "cittadinanza", + "example_sentence_native": "Ha richiesto la cittadinanza italiana.", + "example_sentence_english": "She applied for Italian citizenship.", + "pos": "noun", + "word_frequency": 1603 + }, + { + "word": "collo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "neck", + "romanization": "collo", + "example_sentence_native": "Mi fa male il collo.", + "example_sentence_english": "My neck hurts.", + "pos": "noun", + "word_frequency": 1604 + }, + { + "word": "consenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consent;agreement", + "romanization": "consenso", + "example_sentence_native": "Hanno raggiunto un consenso sulla decisione.", + "example_sentence_english": "They reached a consensus on the decision.", + "pos": "noun", + "word_frequency": 1605 + }, + { + "word": "decisamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "definitely;decidedly", + "romanization": "decisamente", + "example_sentence_native": "È decisamente la scelta migliore.", + "example_sentence_english": "It's definitely the best choice.", + "pos": "adverb", + "word_frequency": 1606 + }, + { + "word": "destino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destiny;fate", + "romanization": "destino", + "example_sentence_native": "Credo nel destino.", + "example_sentence_english": "I believe in destiny.", + "pos": "noun", + "word_frequency": 1607 + }, + { + "word": "dominio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domain;dominance", + "romanization": "dominio", + "example_sentence_native": "Hanno stabilito il loro dominio sul mercato.", + "example_sentence_english": "They established their dominance in the market.", + "pos": "noun", + "word_frequency": 1608 + }, + { + "word": "finora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "so far;until now", + "romanization": "finora", + "example_sentence_native": "Finora tutto è andato bene.", + "example_sentence_english": "So far, everything has gone well.", + "pos": "adverb", + "word_frequency": 1609 + }, + { + "word": "firma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "signature", + "romanization": "firma", + "example_sentence_native": "Ho bisogno della tua firma qui.", + "example_sentence_english": "I need your signature here.", + "pos": "noun", + "word_frequency": 1610 + }, + { + "word": "garantire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guarantee;to ensure", + "romanization": "garantire", + "example_sentence_native": "Posso garantirti che è vero.", + "example_sentence_english": "I can guarantee you that it's true.", + "pos": "verb", + "word_frequency": 1611 + }, + { + "word": "greco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Greek", + "romanization": "greco", + "example_sentence_native": "Mi piace la cucina greca.", + "example_sentence_english": "I like Greek cuisine.", + "pos": "adjective", + "word_frequency": 1613 + }, + { + "word": "laurea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "degree (university)", + "romanization": "laurea", + "example_sentence_native": "Ha conseguito la laurea in ingegneria.", + "example_sentence_english": "She obtained a degree in engineering.", + "pos": "noun", + "word_frequency": 1614 + }, + { + "word": "legare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tie;to bind", + "romanization": "legare", + "example_sentence_native": "Lega le scarpe prima di uscire.", + "example_sentence_english": "Tie your shoes before going out.", + "pos": "verb", + "word_frequency": 1615 + }, + { + "word": "omicidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "murder;homicide", + "romanization": "omicidio", + "example_sentence_native": "La polizia sta indagando sull'omicidio.", + "example_sentence_english": "The police are investigating the murder.", + "pos": "noun", + "word_frequency": 1616 + }, + { + "word": "ovvio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obvious", + "romanization": "ovvio", + "example_sentence_native": "È ovvio che non capisci.", + "example_sentence_english": "It's obvious that you don't understand.", + "pos": "adjective", + "word_frequency": 1617 + }, + { + "word": "pesce", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fish", + "romanization": "pesce", + "example_sentence_native": "Mi piace mangiare il pesce.", + "example_sentence_english": "I like to eat fish.", + "pos": "noun", + "word_frequency": 1618 + }, + { + "word": "richiedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to request;to require", + "romanization": "richiedere", + "example_sentence_native": "Questa operazione richiede tempo.", + "example_sentence_english": "This operation requires time.", + "pos": "verb", + "word_frequency": 1619 + }, + { + "word": "riconoscimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recognition;acknowledgment", + "romanization": "riconoscimento", + "example_sentence_native": "Ha ricevuto un riconoscimento per il suo lavoro.", + "example_sentence_english": "He received recognition for his work.", + "pos": "noun", + "word_frequency": 1620 + }, + { + "word": "romanzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "novel", + "romanization": "romanzo", + "example_sentence_native": "Sto leggendo un romanzo interessante.", + "example_sentence_english": "I am reading an interesting novel.", + "pos": "noun", + "word_frequency": 1621 + }, + { + "word": "scusare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to excuse;to apologize", + "romanization": "scusare", + "example_sentence_native": "Mi scusi, posso farle una domanda?", + "example_sentence_english": "Excuse me, may I ask you a question?", + "pos": "verb", + "word_frequency": 1622 + }, + { + "word": "smettere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop;to quit", + "romanization": "smettere", + "example_sentence_native": "Devi smettere di fumare.", + "example_sentence_english": "You must stop smoking.", + "pos": "verb", + "word_frequency": 1623 + }, + { + "word": "uguale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "equal;same", + "romanization": "uguale", + "example_sentence_native": "Tutti gli uomini sono uguali.", + "example_sentence_english": "All men are equal.", + "pos": "adjective", + "word_frequency": 1625 + }, + { + "word": "vuoto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "empty", + "romanization": "vuoto", + "example_sentence_native": "Il bicchiere è vuoto.", + "example_sentence_english": "The glass is empty.", + "pos": "adjective", + "word_frequency": 1626 + }, + { + "word": "centinaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about a hundred;a hundred (of something)", + "romanization": "centinaio", + "example_sentence_native": "C'erano un centinaio di persone alla festa.", + "example_sentence_english": "There were about a hundred people at the party.", + "pos": "noun", + "word_frequency": 1627 + }, + { + "word": "colazione", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "breakfast", + "romanization": "colazione", + "example_sentence_native": "Faccio colazione alle otto.", + "example_sentence_english": "I have breakfast at eight.", + "pos": "noun", + "word_frequency": 1628 + }, + { + "word": "condividere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to share", + "romanization": "condividere", + "example_sentence_native": "Possiamo condividere questo dolce.", + "example_sentence_english": "We can share this dessert.", + "pos": "verb", + "word_frequency": 1629 + }, + { + "word": "duro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hard;tough", + "romanization": "duro", + "example_sentence_native": "Questo tavolo è fatto di legno duro.", + "example_sentence_english": "This table is made of hard wood.", + "pos": "adjective", + "word_frequency": 1631 + }, + { + "word": "esprimere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express", + "romanization": "esprimere", + "example_sentence_native": "È difficile esprimere i miei sentimenti.", + "example_sentence_english": "It's difficult to express my feelings.", + "pos": "verb", + "word_frequency": 1632 + }, + { + "word": "fermare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stop", + "romanization": "fermare", + "example_sentence_native": "Per favore, ferma la macchina.", + "example_sentence_english": "Please stop the car.", + "pos": "verb", + "word_frequency": 1633 + }, + { + "word": "gol", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goal (in sports)", + "romanization": "gol", + "example_sentence_native": "Ha segnato un bellissimo gol.", + "example_sentence_english": "He scored a beautiful goal.", + "pos": "noun", + "word_frequency": 1634 + }, + { + "word": "matematica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mathematics;math", + "romanization": "matematica", + "example_sentence_native": "Non sono bravo in matematica.", + "example_sentence_english": "I'm not good at math.", + "pos": "noun", + "word_frequency": 1635 + }, + { + "word": "musicale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musical", + "romanization": "musicale", + "example_sentence_native": "Ha un grande talento musicale.", + "example_sentence_english": "He has great musical talent.", + "pos": "adjective", + "word_frequency": 1636 + }, + { + "word": "personalità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personality", + "romanization": "personalità", + "example_sentence_native": "Ha una personalità molto forte.", + "example_sentence_english": "She has a very strong personality.", + "pos": "noun", + "word_frequency": 1638 + }, + { + "word": "pianta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "plant;floor plan", + "romanization": "pianta", + "example_sentence_native": "Ho comprato una nuova pianta per il mio salotto.", + "example_sentence_english": "I bought a new plant for my living room.", + "pos": "noun", + "word_frequency": 1639 + }, + { + "word": "riuscita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "success;outcome", + "romanization": "riuscita", + "example_sentence_native": "La riuscita del progetto dipende da tutti noi.", + "example_sentence_english": "The success of the project depends on all of us.", + "pos": "noun", + "word_frequency": 1640 + }, + { + "word": "rompere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to break", + "romanization": "rompere", + "example_sentence_native": "Non voglio rompere il vaso.", + "example_sentence_english": "I don't want to break the vase.", + "pos": "verb", + "word_frequency": 1641 + }, + { + "word": "viso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "face", + "romanization": "viso", + "example_sentence_native": "Il suo viso era stanco.", + "example_sentence_english": "His face was tired.", + "pos": "noun", + "word_frequency": 1645 + }, + { + "word": "appartamento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apartment", + "romanization": "appartamento", + "example_sentence_native": "Vivo in un piccolo appartamento.", + "example_sentence_english": "I live in a small apartment.", + "pos": "noun", + "word_frequency": 1647 + }, + { + "word": "arrestare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to arrest;to stop", + "romanization": "arrestare", + "example_sentence_native": "La polizia ha arrestato il ladro.", + "example_sentence_english": "The police arrested the thief.", + "pos": "verb", + "word_frequency": 1648 + }, + { + "word": "capitolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chapter", + "romanization": "capitolo", + "example_sentence_native": "Ho letto il primo capitolo del libro.", + "example_sentence_english": "I read the first chapter of the book.", + "pos": "noun", + "word_frequency": 1651 + }, + { + "word": "chilometro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kilometer", + "romanization": "chilometro", + "example_sentence_native": "La città è a dieci chilometri da qui.", + "example_sentence_english": "The city is ten kilometers from here.", + "pos": "noun", + "word_frequency": 1652 + }, + { + "word": "classifica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ranking;chart", + "romanization": "classifica", + "example_sentence_native": "La canzone è in cima alla classifica.", + "example_sentence_english": "The song is at the top of the chart.", + "pos": "noun", + "word_frequency": 1653 + }, + { + "word": "compleanno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "birthday", + "romanization": "compleanno", + "example_sentence_native": "Oggi è il mio compleanno.", + "example_sentence_english": "Today is my birthday.", + "pos": "noun", + "word_frequency": 1654 + }, + { + "word": "comprendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to understand;to include", + "romanization": "comprendere", + "example_sentence_native": "Non riesco a comprendere la sua decisione.", + "example_sentence_english": "I cannot understand his decision.", + "pos": "verb", + "word_frequency": 1655 + }, + { + "word": "convincere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convince", + "romanization": "convincere", + "example_sentence_native": "Devo convincerlo a venire con noi.", + "example_sentence_english": "I need to convince him to come with us.", + "pos": "verb", + "word_frequency": 1656 + }, + { + "word": "costituzionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutional", + "romanization": "costituzionale", + "example_sentence_native": "La legge è stata dichiarata incostituzionale.", + "example_sentence_english": "The law was declared unconstitutional.", + "pos": "adjective", + "word_frequency": 1657 + }, + { + "word": "divisione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "division", + "romanization": "divisione", + "example_sentence_native": "C'è stata una chiara divisione di opinioni.", + "example_sentence_english": "There was a clear division of opinions.", + "pos": "noun", + "word_frequency": 1658 + }, + { + "word": "filo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thread;wire", + "romanization": "filo", + "example_sentence_native": "Ho bisogno di un filo per cucire.", + "example_sentence_english": "I need a thread for sewing.", + "pos": "noun", + "word_frequency": 1659 + }, + { + "word": "indipendente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "independent", + "romanization": "indipendente", + "example_sentence_native": "È una persona molto indipendente.", + "example_sentence_english": "She is a very independent person.", + "pos": "adjective", + "word_frequency": 1661 + }, + { + "word": "indirizzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "address", + "romanization": "indirizzo", + "example_sentence_native": "Qual è il tuo indirizzo?", + "example_sentence_english": "What is your address?", + "pos": "noun", + "word_frequency": 1662 + }, + { + "word": "mattino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "morning", + "romanization": "mattino", + "example_sentence_native": "Ci vediamo domani mattina.", + "example_sentence_english": "We'll see each other tomorrow morning.", + "pos": "noun", + "word_frequency": 1663 + }, + { + "word": "minaccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "threat", + "romanization": "minaccia", + "example_sentence_native": "Non tolleriamo alcuna minaccia.", + "example_sentence_english": "We do not tolerate any threat.", + "pos": "noun", + "word_frequency": 1666 + }, + { + "word": "network", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "network", + "romanization": "network", + "example_sentence_native": "Il nostro network di contatti è molto ampio.", + "example_sentence_english": "Our network of contacts is very wide.", + "pos": "noun", + "word_frequency": 1668 + }, + { + "word": "notevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remarkable;considerable", + "romanization": "notevole", + "example_sentence_native": "Ha fatto un notevole progresso.", + "example_sentence_english": "He made considerable progress.", + "pos": "adjective", + "word_frequency": 1669 + }, + { + "word": "partner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "partner", + "romanization": "partner", + "example_sentence_native": "È il mio partner in affari.", + "example_sentence_english": "He is my business partner.", + "pos": "noun", + "word_frequency": 1670 + }, + { + "word": "pasta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pasta;dough", + "romanization": "pasta", + "example_sentence_native": "Mi piace mangiare la pasta.", + "example_sentence_english": "I like to eat pasta.", + "pos": "noun", + "word_frequency": 1671 + }, + { + "word": "peggiore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worse;worst", + "romanization": "peggiore", + "example_sentence_native": "Questa è la situazione peggiore.", + "example_sentence_english": "This is the worst situation.", + "pos": "adjective", + "word_frequency": 1672 + }, + { + "word": "penale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penal;criminal", + "romanization": "penale", + "example_sentence_native": "Ha commesso un reato penale.", + "example_sentence_english": "He committed a criminal offense.", + "pos": "adjective", + "word_frequency": 1673 + }, + { + "word": "profondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deep;profound", + "romanization": "profondo", + "example_sentence_native": "Il lago è molto profondo.", + "example_sentence_english": "The lake is very deep.", + "pos": "adjective", + "word_frequency": 1674 + }, + { + "word": "sanità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "health;public health", + "romanization": "sanità", + "example_sentence_native": "La sanità pubblica è un diritto fondamentale.", + "example_sentence_english": "Public health is a fundamental right.", + "pos": "noun", + "word_frequency": 1676 + }, + { + "word": "talmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "so;such a", + "romanization": "talmente", + "example_sentence_native": "Era talmente stanco che si addormentò subito.", + "example_sentence_english": "He was so tired that he fell asleep immediately.", + "pos": "adverb", + "word_frequency": 1677 + }, + { + "word": "tavola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "table;board", + "romanization": "tavola", + "example_sentence_native": "Metti i piatti sulla tavola.", + "example_sentence_english": "Put the plates on the table.", + "pos": "noun", + "word_frequency": 1678 + }, + { + "word": "terremoto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earthquake", + "romanization": "terremoto", + "example_sentence_native": "C'è stato un forte terremoto la scorsa notte.", + "example_sentence_english": "There was a strong earthquake last night.", + "pos": "noun", + "word_frequency": 1679 + }, + { + "word": "trasmissione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transmission;broadcast", + "romanization": "trasmissione", + "example_sentence_native": "La trasmissione è iniziata alle otto.", + "example_sentence_english": "The broadcast started at eight.", + "pos": "noun", + "word_frequency": 1680 + }, + { + "word": "turismo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tourism", + "romanization": "turismo", + "example_sentence_native": "Il turismo è una risorsa importante per la nostra città.", + "example_sentence_english": "Tourism is an important resource for our city.", + "pos": "noun", + "word_frequency": 1681 + }, + { + "word": "alternativa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternative", + "romanization": "alternativa", + "example_sentence_native": "Dobbiamo trovare una soluzione alternativa.", + "example_sentence_english": "We need to find an alternative solution.", + "pos": "adjective", + "word_frequency": 1683 + }, + { + "word": "ambito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scope;field;area", + "romanization": "ambito", + "example_sentence_native": "Questo rientra nel mio ambito di competenza.", + "example_sentence_english": "This falls within my scope of expertise.", + "pos": "noun", + "word_frequency": 1684 + }, + { + "word": "ampio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wide;ample;broad", + "romanization": "ampio", + "example_sentence_native": "La stanza è molto ampia e luminosa.", + "example_sentence_english": "The room is very wide and bright.", + "pos": "adjective", + "word_frequency": 1685 + }, + { + "word": "cancro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancer;crab", + "romanization": "cancro", + "example_sentence_native": "La ricerca sul cancro ha fatto grandi progressi.", + "example_sentence_english": "Cancer research has made great progress.", + "pos": "noun", + "word_frequency": 1686 + }, + { + "word": "candidato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "candidate", + "romanization": "candidato", + "example_sentence_native": "Il candidato ha presentato il suo programma.", + "example_sentence_english": "The candidate presented his program.", + "pos": "noun", + "word_frequency": 1687 + }, + { + "word": "casino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mess;chaos;casino", + "romanization": "casino", + "example_sentence_native": "Che casino che hai fatto in cucina!", + "example_sentence_english": "What a mess you made in the kitchen!", + "pos": "noun", + "word_frequency": 1688 + }, + { + "word": "cattolico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Catholic", + "romanization": "cattolico", + "example_sentence_native": "È una famiglia di fede cattolica.", + "example_sentence_english": "It is a family of Catholic faith.", + "pos": "adjective", + "word_frequency": 1689 + }, + { + "word": "collezione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "collection", + "romanization": "collezione", + "example_sentence_native": "Ha una vasta collezione di francobolli.", + "example_sentence_english": "He has a vast collection of stamps.", + "pos": "noun", + "word_frequency": 1690 + }, + { + "word": "consumo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consumption", + "romanization": "consumo", + "example_sentence_native": "Il consumo di energia è aumentato.", + "example_sentence_english": "Energy consumption has increased.", + "pos": "noun", + "word_frequency": 1691 + }, + { + "word": "difendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defend", + "romanization": "difendere", + "example_sentence_native": "Dobbiamo difendere i nostri diritti.", + "example_sentence_english": "We must defend our rights.", + "pos": "verb", + "word_frequency": 1694 + }, + { + "word": "dignità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dignity", + "romanization": "dignità", + "example_sentence_native": "Ogni persona merita rispetto e dignità.", + "example_sentence_english": "Every person deserves respect and dignity.", + "pos": "noun", + "word_frequency": 1695 + }, + { + "word": "dimenticare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to forget", + "romanization": "dimenticare", + "example_sentence_native": "Non dimenticare di chiudere la porta.", + "example_sentence_english": "Don't forget to close the door.", + "pos": "verb", + "word_frequency": 1696 + }, + { + "word": "eccezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exception", + "romanization": "eccezione", + "example_sentence_native": "Questa è un'eccezione alla regola.", + "example_sentence_english": "This is an exception to the rule.", + "pos": "noun", + "word_frequency": 1697 + }, + { + "word": "esperto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expert", + "romanization": "esperto", + "example_sentence_native": "È un esperto nel suo campo.", + "example_sentence_english": "He is an expert in his field.", + "pos": "noun", + "word_frequency": 1698 + }, + { + "word": "finestra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "window", + "romanization": "finestra", + "example_sentence_native": "Apri la finestra, per favore.", + "example_sentence_english": "Open the window, please.", + "pos": "noun", + "word_frequency": 1699 + }, + { + "word": "finto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fake;false", + "romanization": "finto", + "example_sentence_native": "Quella borsa è di pelle finta.", + "example_sentence_english": "That bag is made of fake leather.", + "pos": "adjective", + "word_frequency": 1700 + }, + { + "word": "fotografia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photograph;photography", + "romanization": "fotografia", + "example_sentence_native": "Mi piace scattare fotografie.", + "example_sentence_english": "I like taking photographs.", + "pos": "noun", + "word_frequency": 1701 + }, + { + "word": "fretta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hurry;rush", + "romanization": "fretta", + "example_sentence_native": "Non ho fretta, prenditi il tuo tempo.", + "example_sentence_english": "I'm not in a hurry, take your time.", + "pos": "noun", + "word_frequency": 1702 + }, + { + "word": "frutto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fruit", + "romanization": "frutto", + "example_sentence_native": "La frutta è importante per una dieta sana.", + "example_sentence_english": "Fruit is important for a healthy diet.", + "pos": "noun", + "word_frequency": 1703 + }, + { + "word": "genio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "genius", + "romanization": "genio", + "example_sentence_native": "È un vero genio della matematica.", + "example_sentence_english": "He is a true genius in mathematics.", + "pos": "noun", + "word_frequency": 1704 + }, + { + "word": "ideale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ideal", + "romanization": "ideale", + "example_sentence_native": "Questa è la soluzione ideale per il problema.", + "example_sentence_english": "This is the ideal solution for the problem.", + "pos": "adjective", + "word_frequency": 1705 + }, + { + "word": "iniziale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initial", + "romanization": "iniziale", + "example_sentence_native": "La fase iniziale del progetto è stata completata.", + "example_sentence_english": "The initial phase of the project has been completed.", + "pos": "adjective", + "word_frequency": 1706 + }, + { + "word": "mandare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send", + "romanization": "mandare", + "example_sentence_native": "Devo mandare una lettera.", + "example_sentence_english": "I need to send a letter.", + "pos": "verb", + "word_frequency": 1708 + }, + { + "word": "mobile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mobile;movable", + "romanization": "mobile", + "example_sentence_native": "Il tavolo è mobile, possiamo spostarlo facilmente.", + "example_sentence_english": "The table is movable, we can move it easily.", + "pos": "adjective", + "word_frequency": 1709 + }, + { + "word": "nuovamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "again;anew", + "romanization": "nuovamente", + "example_sentence_native": "Dobbiamo incontrarci nuovamente la prossima settimana.", + "example_sentence_english": "We need to meet again next week.", + "pos": "adverb", + "word_frequency": 1711 + }, + { + "word": "obbligo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligation;duty", + "romanization": "obbligo", + "example_sentence_native": "È un obbligo legale.", + "example_sentence_english": "It is a legal obligation.", + "pos": "noun", + "word_frequency": 1712 + }, + { + "word": "organo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organ", + "romanization": "organo", + "example_sentence_native": "Il cuore è un organo vitale.", + "example_sentence_english": "The heart is a vital organ.", + "pos": "noun", + "word_frequency": 1713 + }, + { + "word": "orientale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oriental;eastern", + "romanization": "orientale", + "example_sentence_native": "La cultura orientale è molto affascinante.", + "example_sentence_english": "Oriental culture is very fascinating.", + "pos": "adjective", + "word_frequency": 1714 + }, + { + "word": "pensione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pension;retirement;guesthouse", + "romanization": "pensione", + "example_sentence_native": "Andrà in pensione l'anno prossimo.", + "example_sentence_english": "He will retire next year.", + "pos": "noun", + "word_frequency": 1715 + }, + { + "word": "possesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possession", + "romanization": "possesso", + "example_sentence_native": "Il possesso di armi è regolamentato.", + "example_sentence_english": "The possession of weapons is regulated.", + "pos": "noun", + "word_frequency": 1716 + }, + { + "word": "produrre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to produce", + "romanization": "produrre", + "example_sentence_native": "Questa fabbrica produce automobili.", + "example_sentence_english": "This factory produces cars.", + "pos": "verb", + "word_frequency": 1717 + }, + { + "word": "raccogliere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collect;to gather", + "romanization": "raccogliere", + "example_sentence_native": "Dobbiamo raccogliere i frutti del nostro lavoro.", + "example_sentence_english": "We must gather the fruits of our labor.", + "pos": "verb", + "word_frequency": 1718 + }, + { + "word": "riduzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reduction;discount", + "romanization": "riduzione", + "example_sentence_native": "C'è stata una riduzione dei prezzi.", + "example_sentence_english": "There has been a reduction in prices.", + "pos": "noun", + "word_frequency": 1719 + }, + { + "word": "soccorso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "help;aid;rescue", + "romanization": "soccorso", + "example_sentence_native": "Abbiamo chiamato i soccorsi.", + "example_sentence_english": "We called for help.", + "pos": "noun", + "word_frequency": 1720 + }, + { + "word": "suono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sound", + "romanization": "suono", + "example_sentence_native": "Ho sentito uno strano suono.", + "example_sentence_english": "I heard a strange sound.", + "pos": "noun", + "word_frequency": 1722 + }, + { + "word": "vendere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sell", + "romanization": "vendere", + "example_sentence_native": "Voglio vendere la mia macchina.", + "example_sentence_english": "I want to sell my car.", + "pos": "verb", + "word_frequency": 1724 + }, + { + "word": "vescovo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bishop", + "romanization": "vescovo", + "example_sentence_native": "Il vescovo ha visitato la parrocchia.", + "example_sentence_english": "The bishop visited the parish.", + "pos": "noun", + "word_frequency": 1725 + }, + { + "word": "zio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "uncle", + "romanization": "zio", + "example_sentence_native": "Mio zio vive a Roma.", + "example_sentence_english": "My uncle lives in Rome.", + "pos": "noun", + "word_frequency": 1726 + }, + { + "word": "annuncio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announcement;advertisement", + "romanization": "annuncio", + "example_sentence_native": "Ho letto l'annuncio sul giornale.", + "example_sentence_english": "I read the advertisement in the newspaper.", + "pos": "noun", + "word_frequency": 1727 + }, + { + "word": "cadere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fall", + "romanization": "cadere", + "example_sentence_native": "Attenzione a non cadere.", + "example_sentence_english": "Be careful not to fall.", + "pos": "verb", + "word_frequency": 1729 + }, + { + "word": "copia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "copy", + "romanization": "copia", + "example_sentence_native": "Ho bisogno di una copia del documento.", + "example_sentence_english": "I need a copy of the document.", + "pos": "noun", + "word_frequency": 1731 + }, + { + "word": "eleggere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to elect", + "romanization": "eleggere", + "example_sentence_native": "Il popolo eleggerà il nuovo presidente.", + "example_sentence_english": "The people will elect the new president.", + "pos": "verb", + "word_frequency": 1732 + }, + { + "word": "fatica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fatigue;effort", + "romanization": "fatica", + "example_sentence_native": "Ho fatto molta fatica per finire il lavoro.", + "example_sentence_english": "I made a lot of effort to finish the work.", + "pos": "noun", + "word_frequency": 1734 + }, + { + "word": "fortemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strongly;heavily", + "romanization": "fortemente", + "example_sentence_native": "Credo fortemente in questa idea.", + "example_sentence_english": "I strongly believe in this idea.", + "pos": "adverb", + "word_frequency": 1735 + }, + { + "word": "fregare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trick;to steal;to not care (informal)", + "romanization": "fregare", + "example_sentence_native": "Non mi frega niente di quello che pensi.", + "example_sentence_english": "I don't care at all what you think.", + "pos": "verb", + "word_frequency": 1736 + }, + { + "word": "indagine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigation;survey", + "romanization": "indagine", + "example_sentence_native": "La polizia ha aperto un'indagine.", + "example_sentence_english": "The police opened an investigation.", + "pos": "noun", + "word_frequency": 1737 + }, + { + "word": "laboratorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laboratory;workshop", + "romanization": "laboratorio", + "example_sentence_native": "Stiamo facendo esperimenti in laboratorio.", + "example_sentence_english": "We are doing experiments in the laboratory.", + "pos": "noun", + "word_frequency": 1739 + }, + { + "word": "paziente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patient", + "romanization": "paziente", + "example_sentence_native": "Il medico ha visitato il paziente.", + "example_sentence_english": "The doctor visited the patient.", + "pos": "noun", + "word_frequency": 1741 + }, + { + "word": "piattaforma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platform", + "romanization": "piattaforma", + "example_sentence_native": "La nuova piattaforma è molto user-friendly.", + "example_sentence_english": "The new platform is very user-friendly.", + "pos": "noun", + "word_frequency": 1743 + }, + { + "word": "probabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probable;likely", + "romanization": "probabile", + "example_sentence_native": "È probabile che piova domani.", + "example_sentence_english": "It's probable that it will rain tomorrow.", + "pos": "adjective", + "word_frequency": 1744 + }, + { + "word": "quota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "share;quota;altitude", + "romanization": "quota", + "example_sentence_native": "Ogni membro deve pagare la sua quota.", + "example_sentence_english": "Each member must pay their share.", + "pos": "noun", + "word_frequency": 1745 + }, + { + "word": "registrazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registration;recording", + "romanization": "registrazione", + "example_sentence_native": "Ho completato la registrazione online.", + "example_sentence_english": "I completed the online registration.", + "pos": "noun", + "word_frequency": 1746 + }, + { + "word": "regolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regular;standard", + "romanization": "regolare", + "example_sentence_native": "Il suo battito cardiaco è regolare.", + "example_sentence_english": "His heartbeat is regular.", + "pos": "adjective", + "word_frequency": 1747 + }, + { + "word": "seriamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seriously", + "romanization": "seriamente", + "example_sentence_native": "Dobbiamo prendere la situazione seriamente.", + "example_sentence_english": "We must take the situation seriously.", + "pos": "adverb", + "word_frequency": 1749 + }, + { + "word": "superare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overcome;to pass;to exceed", + "romanization": "superare", + "example_sentence_native": "Dobbiamo superare questa difficoltà.", + "example_sentence_english": "We must overcome this difficulty.", + "pos": "verb", + "word_frequency": 1750 + }, + { + "word": "televisione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "television", + "romanization": "televisione", + "example_sentence_native": "Guardo la televisione ogni sera.", + "example_sentence_english": "I watch television every evening.", + "pos": "noun", + "word_frequency": 1751 + }, + { + "word": "totalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "totally;completely", + "romanization": "totalmente", + "example_sentence_native": "Sono totalmente d'accordo con te.", + "example_sentence_english": "I totally agree with you.", + "pos": "adverb", + "word_frequency": 1752 + }, + { + "word": "varietà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variety", + "romanization": "varietà", + "example_sentence_native": "C'è una grande varietà di prodotti.", + "example_sentence_english": "There is a great variety of products.", + "pos": "noun", + "word_frequency": 1754 + }, + { + "word": "affermare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to affirm;to state", + "romanization": "affermare", + "example_sentence_native": "Ha affermato la sua innocenza.", + "example_sentence_english": "He affirmed his innocence.", + "pos": "verb", + "word_frequency": 1755 + }, + { + "word": "albero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tree", + "romanization": "albero", + "example_sentence_native": "C'è un grande albero in giardino.", + "example_sentence_english": "There is a big tree in the garden.", + "pos": "noun", + "word_frequency": 1756 + }, + { + "word": "argento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silver", + "romanization": "argento", + "example_sentence_native": "Ha comprato un anello d'argento.", + "example_sentence_english": "She bought a silver ring.", + "pos": "noun", + "word_frequency": 1757 + }, + { + "word": "batteria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "battery;drum kit", + "romanization": "batteria", + "example_sentence_native": "La batteria del telefono è scarica.", + "example_sentence_english": "The phone battery is dead.", + "pos": "noun", + "word_frequency": 1758 + }, + { + "word": "birra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "beer", + "romanization": "birra", + "example_sentence_native": "Vorrei una birra fredda.", + "example_sentence_english": "I would like a cold beer.", + "pos": "noun", + "word_frequency": 1759 + }, + { + "word": "componente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "component", + "romanization": "componente", + "example_sentence_native": "Ogni componente è essenziale per il funzionamento del sistema.", + "example_sentence_english": "Every component is essential for the system's functioning.", + "pos": "noun", + "word_frequency": 1760 + }, + { + "word": "crimine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crime", + "romanization": "crimine", + "example_sentence_native": "La polizia sta indagando sul crimine.", + "example_sentence_english": "The police are investigating the crime.", + "pos": "noun", + "word_frequency": 1761 + }, + { + "word": "cristiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christian", + "romanization": "cristiano", + "example_sentence_native": "Molti cristiani celebrano il Natale.", + "example_sentence_english": "Many Christians celebrate Christmas.", + "pos": "noun", + "word_frequency": 1762 + }, + { + "word": "edificio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "building", + "romanization": "edificio", + "example_sentence_native": "Quell'edificio è molto antico.", + "example_sentence_english": "That building is very old.", + "pos": "noun", + "word_frequency": 1763 + }, + { + "word": "elettrico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electric", + "romanization": "elettrico", + "example_sentence_native": "Abbiamo comprato una nuova auto elettrica.", + "example_sentence_english": "We bought a new electric car.", + "pos": "adjective", + "word_frequency": 1764 + }, + { + "word": "evoluzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolution", + "romanization": "evoluzione", + "example_sentence_native": "La teoria dell'evoluzione è fondamentale in biologia.", + "example_sentence_english": "The theory of evolution is fundamental in biology.", + "pos": "noun", + "word_frequency": 1766 + }, + { + "word": "fantastico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fantastic", + "romanization": "fantastico", + "example_sentence_native": "Il film era fantastico!", + "example_sentence_english": "The movie was fantastic!", + "pos": "adjective", + "word_frequency": 1767 + }, + { + "word": "giurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to swear", + "romanization": "giurare", + "example_sentence_native": "Ti giuro che non l'ho fatto io.", + "example_sentence_english": "I swear I didn't do it.", + "pos": "verb", + "word_frequency": 1768 + }, + { + "word": "incontrare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to meet", + "romanization": "incontrare", + "example_sentence_native": "Voglio incontrare i tuoi amici.", + "example_sentence_english": "I want to meet your friends.", + "pos": "verb", + "word_frequency": 1769 + }, + { + "word": "indicare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to indicate", + "romanization": "indicare", + "example_sentence_native": "Puoi indicarmi la strada per la stazione?", + "example_sentence_english": "Can you indicate the way to the station for me?", + "pos": "verb", + "word_frequency": 1770 + }, + { + "word": "legato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tied;linked", + "romanization": "legato", + "example_sentence_native": "Il successo è spesso legato al duro lavoro.", + "example_sentence_english": "Success is often linked to hard work.", + "pos": "adjective", + "word_frequency": 1771 + }, + { + "word": "liceo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "high school", + "romanization": "liceo", + "example_sentence_native": "Ho studiato al liceo classico.", + "example_sentence_english": "I studied at the classical high school.", + "pos": "noun", + "word_frequency": 1772 + }, + { + "word": "logica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logic", + "romanization": "logica", + "example_sentence_native": "La sua argomentazione manca di logica.", + "example_sentence_english": "His argument lacks logic.", + "pos": "noun", + "word_frequency": 1773 + }, + { + "word": "opposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opposition", + "romanization": "opposizione", + "example_sentence_native": "Il governo ha affrontato una forte opposizione.", + "example_sentence_english": "The government faced strong opposition.", + "pos": "noun", + "word_frequency": 1775 + }, + { + "word": "patria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homeland", + "romanization": "patria", + "example_sentence_native": "L'amore per la patria è un sentimento profondo.", + "example_sentence_english": "Love for one's homeland is a deep feeling.", + "pos": "noun", + "word_frequency": 1776 + }, + { + "word": "pc", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "PC (personal computer)", + "romanization": "PC", + "example_sentence_native": "Ho comprato un nuovo PC.", + "example_sentence_english": "I bought a new PC.", + "pos": "noun", + "word_frequency": 1777 + }, + { + "word": "proteggere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protect", + "romanization": "proteggere", + "example_sentence_native": "Dobbiamo proteggere l'ambiente.", + "example_sentence_english": "We must protect the environment.", + "pos": "verb", + "word_frequency": 1778 + }, + { + "word": "rifiuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refusal", + "romanization": "rifiuto", + "example_sentence_native": "Il suo rifiuto mi ha sorpreso.", + "example_sentence_english": "His refusal surprised me.", + "pos": "noun", + "word_frequency": 1779 + }, + { + "word": "ripresa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recovery;resumption", + "romanization": "ripresa", + "example_sentence_native": "L'economia mostra segni di ripresa.", + "example_sentence_english": "The economy shows signs of recovery.", + "pos": "noun", + "word_frequency": 1780 + }, + { + "word": "scientifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scientific", + "romanization": "scientifico", + "example_sentence_native": "Ha condotto una ricerca scientifica.", + "example_sentence_english": "He conducted scientific research.", + "pos": "adjective", + "word_frequency": 1781 + }, + { + "word": "stretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narrow;tight", + "romanization": "stretto", + "example_sentence_native": "La strada è molto stretta.", + "example_sentence_english": "The road is very narrow.", + "pos": "adjective", + "word_frequency": 1782 + }, + { + "word": "svolta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turning point;turn", + "romanization": "svolta", + "example_sentence_native": "Questo è un momento di svolta per il progetto.", + "example_sentence_english": "This is a turning point for the project.", + "pos": "noun", + "word_frequency": 1783 + }, + { + "word": "torre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tower", + "romanization": "torre", + "example_sentence_native": "La Torre di Pisa è famosa in tutto il mondo.", + "example_sentence_english": "The Leaning Tower of Pisa is famous worldwide.", + "pos": "noun", + "word_frequency": 1784 + }, + { + "word": "vice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice;deputy", + "romanization": "vice", + "example_sentence_native": "Il vice presidente ha parlato alla conferenza.", + "example_sentence_english": "The vice president spoke at the conference.", + "pos": "noun", + "word_frequency": 1785 + }, + { + "word": "weekend", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weekend", + "romanization": "weekend", + "example_sentence_native": "Ci vediamo questo weekend.", + "example_sentence_english": "See you this weekend.", + "pos": "noun", + "word_frequency": 1787 + }, + { + "word": "cerchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circle", + "romanization": "cerchio", + "example_sentence_native": "Disegna un cerchio perfetto.", + "example_sentence_english": "Draw a perfect circle.", + "pos": "noun", + "word_frequency": 1788 + }, + { + "word": "citare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cite;to quote", + "romanization": "citare", + "example_sentence_native": "Ha citato un famoso filosofo.", + "example_sentence_english": "He quoted a famous philosopher.", + "pos": "verb", + "word_frequency": 1789 + }, + { + "word": "conclusione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conclusion", + "romanization": "conclusione", + "example_sentence_native": "In conclusione, vorrei ringraziare tutti.", + "example_sentence_english": "In conclusion, I would like to thank everyone.", + "pos": "noun", + "word_frequency": 1790 + }, + { + "word": "correre", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to run", + "romanization": "correre", + "example_sentence_native": "Mi piace correre al mattino.", + "example_sentence_english": "I like to run in the morning.", + "pos": "verb", + "word_frequency": 1791 + }, + { + "word": "denuncia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complaint;report", + "romanization": "denuncia", + "example_sentence_native": "Ha presentato una denuncia alla polizia.", + "example_sentence_english": "He filed a report with the police.", + "pos": "noun", + "word_frequency": 1792 + }, + { + "word": "esercizio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "exercise", + "romanization": "esercizio", + "example_sentence_native": "Faccio esercizio ogni giorno.", + "example_sentence_english": "I do exercise every day.", + "pos": "noun", + "word_frequency": 1793 + }, + { + "word": "esterno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "external;outside", + "romanization": "esterno", + "example_sentence_native": "La parte esterna dell'edificio è stata restaurata.", + "example_sentence_english": "The external part of the building has been restored.", + "pos": "adjective", + "word_frequency": 1794 + }, + { + "word": "falso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "false;fake", + "romanization": "falso", + "example_sentence_native": "Questa è una notizia falsa.", + "example_sentence_english": "This is fake news.", + "pos": "adjective", + "word_frequency": 1795 + }, + { + "word": "industria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industry", + "romanization": "industria", + "example_sentence_native": "L'industria automobilistica è importante per l'economia.", + "example_sentence_english": "The automotive industry is important for the economy.", + "pos": "noun", + "word_frequency": 1797 + }, + { + "word": "jack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jack (connector)", + "romanization": "jack", + "example_sentence_native": "Inserisci il cavo nel jack audio.", + "example_sentence_english": "Insert the cable into the audio jack.", + "pos": "noun", + "word_frequency": 1798 + }, + { + "word": "località", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "location;locality", + "romanization": "località", + "example_sentence_native": "Questa località turistica è molto popolare.", + "example_sentence_english": "This tourist location is very popular.", + "pos": "noun", + "word_frequency": 1799 + }, + { + "word": "meritare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deserve", + "romanization": "meritare", + "example_sentence_native": "Meriti il meglio.", + "example_sentence_english": "You deserve the best.", + "pos": "verb", + "word_frequency": 1802 + }, + { + "word": "neppure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "not even;neither", + "romanization": "neppure", + "example_sentence_native": "Non è venuto neppure lui.", + "example_sentence_english": "Not even he came.", + "pos": "adverb", + "word_frequency": 1803 + }, + { + "word": "pioggia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rain", + "romanization": "pioggia", + "example_sentence_native": "Oggi c'è molta pioggia.", + "example_sentence_english": "Today there is a lot of rain.", + "pos": "noun", + "word_frequency": 1807 + }, + { + "word": "razza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "race;breed;kind", + "romanization": "razza", + "example_sentence_native": "Che razza di cane è?", + "example_sentence_english": "What kind of dog is it?", + "pos": "noun", + "word_frequency": 1808 + }, + { + "word": "regista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "director", + "romanization": "regista", + "example_sentence_native": "Il regista ha vinto un premio.", + "example_sentence_english": "The director won an award.", + "pos": "noun", + "word_frequency": 1809 + }, + { + "word": "riso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rice", + "romanization": "riso", + "example_sentence_native": "Mi piace il riso con le verdure.", + "example_sentence_english": "I like rice with vegetables.", + "pos": "noun", + "word_frequency": 1810 + }, + { + "word": "rivolta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolt;uprising", + "romanization": "rivolta", + "example_sentence_native": "C'è stata una rivolta in città.", + "example_sentence_english": "There was a revolt in the city.", + "pos": "noun", + "word_frequency": 1811 + }, + { + "word": "salire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go up;to climb", + "romanization": "salire", + "example_sentence_native": "Dobbiamo salire le scale.", + "example_sentence_english": "We have to go up the stairs.", + "pos": "verb", + "word_frequency": 1812 + }, + { + "word": "sposa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bride", + "romanization": "sposa", + "example_sentence_native": "La sposa era bellissima.", + "example_sentence_english": "The bride was beautiful.", + "pos": "noun", + "word_frequency": 1813 + }, + { + "word": "tenuta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "estate;holding;grip", + "romanization": "tenuta", + "example_sentence_native": "Hanno comprato una grande tenuta in campagna.", + "example_sentence_english": "They bought a large estate in the countryside.", + "pos": "noun", + "word_frequency": 1814 + }, + { + "word": "valutazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evaluation;assessment", + "romanization": "valutazione", + "example_sentence_native": "La valutazione finale sarà la prossima settimana.", + "example_sentence_english": "The final evaluation will be next week.", + "pos": "noun", + "word_frequency": 1816 + }, + { + "word": "adorare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adore;to love", + "romanization": "adorare", + "example_sentence_native": "Adoro il cioccolato.", + "example_sentence_english": "I adore chocolate.", + "pos": "verb", + "word_frequency": 1817 + }, + { + "word": "angolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corner;angle", + "romanization": "angolo", + "example_sentence_native": "Il libro è nell'angolo della stanza.", + "example_sentence_english": "The book is in the corner of the room.", + "pos": "noun", + "word_frequency": 1819 + }, + { + "word": "condanna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction;condemnation;sentence", + "romanization": "condanna", + "example_sentence_native": "Ha ricevuto una condanna a due anni.", + "example_sentence_english": "He received a two-year sentence.", + "pos": "noun", + "word_frequency": 1820 + }, + { + "word": "contento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "happy;content", + "romanization": "contento", + "example_sentence_native": "Sono molto contento di vederti.", + "example_sentence_english": "I am very happy to see you.", + "pos": "adjective", + "word_frequency": 1821 + }, + { + "word": "dente", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tooth", + "romanization": "dente", + "example_sentence_native": "Mi fa male un dente.", + "example_sentence_english": "A tooth hurts me.", + "pos": "noun", + "word_frequency": 1822 + }, + { + "word": "dibattito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debate", + "romanization": "dibattito", + "example_sentence_native": "C'è stato un lungo dibattito sulla questione.", + "example_sentence_english": "There was a long debate on the issue.", + "pos": "noun", + "word_frequency": 1823 + }, + { + "word": "effettivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effectively;actually;indeed", + "romanization": "effettivamente", + "example_sentence_native": "Effettivamente, hai ragione.", + "example_sentence_english": "Actually, you are right.", + "pos": "adverb", + "word_frequency": 1824 + }, + { + "word": "fascia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "band;strip;range", + "romanization": "fascia", + "example_sentence_native": "La fascia oraria è dalle 9 alle 12.", + "example_sentence_english": "The time slot is from 9 to 12.", + "pos": "noun", + "word_frequency": 1825 + }, + { + "word": "introduzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduction", + "romanization": "introduzione", + "example_sentence_native": "Leggi l'introduzione del libro.", + "example_sentence_english": "Read the introduction of the book.", + "pos": "noun", + "word_frequency": 1827 + }, + { + "word": "invito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "invitation", + "romanization": "invito", + "example_sentence_native": "Ho ricevuto un invito alla festa.", + "example_sentence_english": "I received an invitation to the party.", + "pos": "noun", + "word_frequency": 1828 + }, + { + "word": "naso", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nose", + "romanization": "naso", + "example_sentence_native": "Ha un naso piccolo.", + "example_sentence_english": "He has a small nose.", + "pos": "noun", + "word_frequency": 1830 + }, + { + "word": "ospite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guest;host", + "romanization": "ospite", + "example_sentence_native": "L'ospite è arrivato.", + "example_sentence_english": "The guest has arrived.", + "pos": "noun", + "word_frequency": 1831 + }, + { + "word": "percentuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percentage", + "romanization": "percentuale", + "example_sentence_native": "La percentuale di successo è alta.", + "example_sentence_english": "The success percentage is high.", + "pos": "noun", + "word_frequency": 1832 + }, + { + "word": "piatto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "plate;dish", + "romanization": "piatto", + "example_sentence_native": "Questo è il mio piatto preferito.", + "example_sentence_english": "This is my favorite dish.", + "pos": "noun", + "word_frequency": 1833 + }, + { + "word": "procedura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure", + "romanization": "procedura", + "example_sentence_native": "Segui la procedura indicata.", + "example_sentence_english": "Follow the indicated procedure.", + "pos": "noun", + "word_frequency": 1834 + }, + { + "word": "professionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional", + "romanization": "professionale", + "example_sentence_native": "Ha un atteggiamento molto professionale.", + "example_sentence_english": "He has a very professional attitude.", + "pos": "adjective", + "word_frequency": 1835 + }, + { + "word": "rabbia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anger;rage", + "romanization": "rabbia", + "example_sentence_native": "Ha provato molta rabbia.", + "example_sentence_english": "He felt a lot of anger.", + "pos": "noun", + "word_frequency": 1836 + }, + { + "word": "record", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record", + "romanization": "record", + "example_sentence_native": "Ha battuto il record mondiale.", + "example_sentence_english": "He broke the world record.", + "pos": "noun", + "word_frequency": 1837 + }, + { + "word": "relativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relatively", + "romanization": "relativamente", + "example_sentence_native": "La situazione è relativamente stabile.", + "example_sentence_english": "The situation is relatively stable.", + "pos": "adverb", + "word_frequency": 1838 + }, + { + "word": "resa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yield;surrender;return", + "romanization": "resa", + "example_sentence_native": "La resa del raccolto è stata buona.", + "example_sentence_english": "The crop yield was good.", + "pos": "noun", + "word_frequency": 1839 + }, + { + "word": "riserva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reserve;reservation", + "romanization": "riserva", + "example_sentence_native": "Abbiamo una riserva di cibo per l'inverno.", + "example_sentence_english": "We have a food reserve for the winter.", + "pos": "noun", + "word_frequency": 1840 + }, + { + "word": "set", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "set (e.g.;in tennis;a collection)", + "romanization": "set", + "example_sentence_native": "Ha vinto il primo set della partita.", + "example_sentence_english": "He won the first set of the match.", + "pos": "noun", + "word_frequency": 1841 + }, + { + "word": "sostanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substance;essence", + "romanization": "sostanza", + "example_sentence_native": "La sostanza del problema è la mancanza di fondi.", + "example_sentence_english": "The substance of the problem is the lack of funds.", + "pos": "noun", + "word_frequency": 1842 + }, + { + "word": "stima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esteem;estimate", + "romanization": "stima", + "example_sentence_native": "Ho grande stima per il suo lavoro.", + "example_sentence_english": "I have great esteem for his work.", + "pos": "noun", + "word_frequency": 1843 + }, + { + "word": "tiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shot;throw;draft", + "romanization": "tiro", + "example_sentence_native": "Il calciatore ha fatto un bel tiro in porta.", + "example_sentence_english": "The footballer made a good shot on goal.", + "pos": "noun", + "word_frequency": 1844 + }, + { + "word": "titolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holder;owner;starter (sports)", + "romanization": "titolare", + "example_sentence_native": "Il titolare del negozio era assente.", + "example_sentence_english": "The owner of the shop was absent.", + "pos": "noun", + "word_frequency": 1845 + }, + { + "word": "aggiornamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "update;refresh", + "romanization": "aggiornamento", + "example_sentence_native": "Ho bisogno di un aggiornamento sul progetto.", + "example_sentence_english": "I need an update on the project.", + "pos": "noun", + "word_frequency": 1847 + }, + { + "word": "assumere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assume;to hire;to take on", + "romanization": "assumere", + "example_sentence_native": "L'azienda ha deciso di assumere nuovi dipendenti.", + "example_sentence_english": "The company decided to hire new employees.", + "pos": "verb", + "word_frequency": 1848 + }, + { + "word": "atteggiamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attitude;stance", + "romanization": "atteggiamento", + "example_sentence_native": "Il suo atteggiamento è molto positivo.", + "example_sentence_english": "His attitude is very positive.", + "pos": "noun", + "word_frequency": 1849 + }, + { + "word": "battuta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joke;beat (music);remark", + "romanization": "battuta", + "example_sentence_native": "Ha fatto una battuta divertente.", + "example_sentence_english": "He made a funny joke.", + "pos": "noun", + "word_frequency": 1850 + }, + { + "word": "big", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "big;important", + "romanization": "big", + "example_sentence_native": "È un evento big per la città.", + "example_sentence_english": "It's a big event for the city.", + "pos": "adjective", + "word_frequency": 1851 + }, + { + "word": "carino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cute;nice;pretty", + "romanization": "carino", + "example_sentence_native": "Il suo gatto è molto carino.", + "example_sentence_english": "Her cat is very cute.", + "pos": "adjective", + "word_frequency": 1853 + }, + { + "word": "city", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "city", + "romanization": "city", + "example_sentence_native": "La city di Londra è il centro finanziario.", + "example_sentence_english": "The City of London is the financial center.", + "pos": "noun", + "word_frequency": 1854 + }, + { + "word": "comandante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commander;captain", + "romanization": "comandante", + "example_sentence_native": "Il comandante ha dato l'ordine di partire.", + "example_sentence_english": "The commander gave the order to depart.", + "pos": "noun", + "word_frequency": 1855 + }, + { + "word": "decennio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decade", + "romanization": "decennio", + "example_sentence_native": "Negli ultimi decenni, il clima è cambiato molto.", + "example_sentence_english": "In recent decades, the climate has changed a lot.", + "pos": "noun", + "word_frequency": 1856 + }, + { + "word": "definire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to define", + "romanization": "definire", + "example_sentence_native": "È difficile definire la bellezza.", + "example_sentence_english": "It's difficult to define beauty.", + "pos": "verb", + "word_frequency": 1857 + }, + { + "word": "efficace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effective;efficient", + "romanization": "efficace", + "example_sentence_native": "Questa soluzione è molto efficace.", + "example_sentence_english": "This solution is very effective.", + "pos": "adjective", + "word_frequency": 1858 + }, + { + "word": "elenco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "list;directory", + "romanization": "elenco", + "example_sentence_native": "Ho preparato un elenco della spesa.", + "example_sentence_english": "I prepared a shopping list.", + "pos": "noun", + "word_frequency": 1859 + }, + { + "word": "fattore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "factor;agent", + "romanization": "fattore", + "example_sentence_native": "Il tempo è un fattore importante.", + "example_sentence_english": "Time is an important factor.", + "pos": "noun", + "word_frequency": 1861 + }, + { + "word": "gesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gesture;act", + "romanization": "gesto", + "example_sentence_native": "Ha fatto un gesto di saluto.", + "example_sentence_english": "He made a gesture of greeting.", + "pos": "noun", + "word_frequency": 1863 + }, + { + "word": "individuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual;person", + "romanization": "individuo", + "example_sentence_native": "Ogni individuo ha i suoi diritti.", + "example_sentence_english": "Every individual has their rights.", + "pos": "noun", + "word_frequency": 1864 + }, + { + "word": "inverno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "winter", + "romanization": "inverno", + "example_sentence_native": "L'inverno è la mia stagione preferita.", + "example_sentence_english": "Winter is my favorite season.", + "pos": "noun", + "word_frequency": 1865 + }, + { + "word": "inviare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send;to dispatch", + "romanization": "inviare", + "example_sentence_native": "Devo inviare una email importante.", + "example_sentence_english": "I need to send an important email.", + "pos": "verb", + "word_frequency": 1866 + }, + { + "word": "lancio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launch;throw", + "romanization": "lancio", + "example_sentence_native": "Il lancio del nuovo prodotto è previsto per domani.", + "example_sentence_english": "The launch of the new product is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 1867 + }, + { + "word": "parente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relative;kin", + "romanization": "parente", + "example_sentence_native": "Ho molti parenti in Italia.", + "example_sentence_english": "I have many relatives in Italy.", + "pos": "noun", + "word_frequency": 1872 + }, + { + "word": "propaganda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propaganda", + "romanization": "propaganda", + "example_sentence_native": "Il governo ha lanciato una campagna di propaganda.", + "example_sentence_english": "The government launched a propaganda campaign.", + "pos": "noun", + "word_frequency": 1873 + }, + { + "word": "registrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to record;to register", + "romanization": "registrare", + "example_sentence_native": "Voglio registrare questa canzone.", + "example_sentence_english": "I want to record this song.", + "pos": "verb", + "word_frequency": 1874 + }, + { + "word": "riconoscere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recognize;to acknowledge", + "romanization": "riconoscere", + "example_sentence_native": "Non l'ho riconosciuto subito.", + "example_sentence_english": "I didn't recognize him immediately.", + "pos": "verb", + "word_frequency": 1875 + }, + { + "word": "scrittura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "writing;script", + "romanization": "scrittura", + "example_sentence_native": "La sua scrittura è molto chiara.", + "example_sentence_english": "His writing is very clear.", + "pos": "noun", + "word_frequency": 1877 + }, + { + "word": "seme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seed", + "romanization": "seme", + "example_sentence_native": "Ho piantato un seme nel giardino.", + "example_sentence_english": "I planted a seed in the garden.", + "pos": "noun", + "word_frequency": 1878 + }, + { + "word": "stamattina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "this morning", + "romanization": "stamattina", + "example_sentence_native": "Stamattina mi sono svegliato presto.", + "example_sentence_english": "This morning I woke up early.", + "pos": "adverb", + "word_frequency": 1880 + }, + { + "word": "strategia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strategy", + "romanization": "strategia", + "example_sentence_native": "Dobbiamo elaborare una nuova strategia.", + "example_sentence_english": "We need to develop a new strategy.", + "pos": "noun", + "word_frequency": 1881 + }, + { + "word": "tenda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tent;curtain", + "romanization": "tenda", + "example_sentence_native": "Abbiamo montato la tenda in campeggio.", + "example_sentence_english": "We set up the tent at the campsite.", + "pos": "noun", + "word_frequency": 1882 + }, + { + "word": "accusa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accusation;charge", + "romanization": "accusa", + "example_sentence_native": "L'accusa è stata ritirata.", + "example_sentence_english": "The accusation was withdrawn.", + "pos": "noun", + "word_frequency": 1883 + }, + { + "word": "aggiunta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addition;supplement", + "romanization": "aggiunta", + "example_sentence_native": "Questa è un'aggiunta importante al documento.", + "example_sentence_english": "This is an important addition to the document.", + "pos": "noun", + "word_frequency": 1884 + }, + { + "word": "appartenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to belong", + "romanization": "appartenere", + "example_sentence_native": "Questo libro appartiene a me.", + "example_sentence_english": "This book belongs to me.", + "pos": "verb", + "word_frequency": 1886 + }, + { + "word": "black", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "black", + "romanization": "black", + "example_sentence_native": "Ha comprato un vestito black.", + "example_sentence_english": "She bought a black dress.", + "pos": "adjective", + "word_frequency": 1887 + }, + { + "word": "comunista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communist", + "romanization": "comunista", + "example_sentence_native": "Il partito comunista ha avuto un ruolo importante nella storia italiana.", + "example_sentence_english": "The communist party played an important role in Italian history.", + "pos": "adjective", + "word_frequency": 1889 + }, + { + "word": "curiosità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curiosity", + "romanization": "curiosità", + "example_sentence_native": "La sua curiosità lo ha spinto a esplorare.", + "example_sentence_english": "His curiosity pushed him to explore.", + "pos": "noun", + "word_frequency": 1890 + }, + { + "word": "dialogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialogue", + "romanization": "dialogo", + "example_sentence_native": "È importante mantenere un dialogo aperto.", + "example_sentence_english": "It's important to maintain an open dialogue.", + "pos": "noun", + "word_frequency": 1891 + }, + { + "word": "emozione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emotion", + "romanization": "emozione", + "example_sentence_native": "Ha provato una forte emozione.", + "example_sentence_english": "He felt a strong emotion.", + "pos": "noun", + "word_frequency": 1893 + }, + { + "word": "ente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "body;entity;institution", + "romanization": "ente", + "example_sentence_native": "L'ente pubblico ha approvato il progetto.", + "example_sentence_english": "The public body approved the project.", + "pos": "noun", + "word_frequency": 1894 + }, + { + "word": "fallimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure;bankruptcy", + "romanization": "fallimento", + "example_sentence_native": "Il fallimento dell'azienda ha causato molti licenziamenti.", + "example_sentence_english": "The company's failure caused many layoffs.", + "pos": "noun", + "word_frequency": 1895 + }, + { + "word": "familiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "familiar;family (adj)", + "romanization": "familiare", + "example_sentence_native": "È un volto familiare.", + "example_sentence_english": "It's a familiar face.", + "pos": "adjective", + "word_frequency": 1896 + }, + { + "word": "fiscale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiscal;tax-related", + "romanization": "fiscale", + "example_sentence_native": "Abbiamo bisogno di una consulenza fiscale.", + "example_sentence_english": "We need fiscal advice.", + "pos": "adjective", + "word_frequency": 1897 + }, + { + "word": "gatto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cat", + "romanization": "gatto", + "example_sentence_native": "Il gatto dorme sul divano.", + "example_sentence_english": "The cat is sleeping on the sofa.", + "pos": "noun", + "word_frequency": 1899 + }, + { + "word": "giallo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "yellow", + "romanization": "giallo", + "example_sentence_native": "Il sole è giallo.", + "example_sentence_english": "The sun is yellow.", + "pos": "adjective", + "word_frequency": 1900 + }, + { + "word": "impatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impact", + "romanization": "impatto", + "example_sentence_native": "L'impatto ambientale è significativo.", + "example_sentence_english": "The environmental impact is significant.", + "pos": "noun", + "word_frequency": 1901 + }, + { + "word": "investimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investment", + "romanization": "investimento", + "example_sentence_native": "Ha fatto un buon investimento.", + "example_sentence_english": "He made a good investment.", + "pos": "noun", + "word_frequency": 1902 + }, + { + "word": "preparazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation", + "romanization": "preparazione", + "example_sentence_native": "La preparazione per l'esame è stata lunga.", + "example_sentence_english": "The preparation for the exam was long.", + "pos": "noun", + "word_frequency": 1905 + }, + { + "word": "sbaglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mistake;error", + "romanization": "sbaglio", + "example_sentence_native": "Ho fatto uno sbaglio.", + "example_sentence_english": "I made a mistake.", + "pos": "noun", + "word_frequency": 1906 + }, + { + "word": "socio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "member;partner", + "romanization": "socio", + "example_sentence_native": "È diventato socio del club.", + "example_sentence_english": "He became a member of the club.", + "pos": "noun", + "word_frequency": 1907 + }, + { + "word": "solidarietà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solidarity", + "romanization": "solidarietà", + "example_sentence_native": "Hanno mostrato grande solidarietà.", + "example_sentence_english": "They showed great solidarity.", + "pos": "noun", + "word_frequency": 1908 + }, + { + "word": "spedizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shipment;expedition", + "romanization": "spedizione", + "example_sentence_native": "La spedizione del pacco è prevista per domani.", + "example_sentence_english": "The shipment of the package is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 1909 + }, + { + "word": "statale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "state (adj);governmental", + "romanization": "statale", + "example_sentence_native": "L'università statale è molto grande.", + "example_sentence_english": "The state university is very large.", + "pos": "adjective", + "word_frequency": 1910 + }, + { + "word": "velocemente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quickly;fast", + "romanization": "velocemente", + "example_sentence_native": "Ha corso velocemente.", + "example_sentence_english": "He ran quickly.", + "pos": "adverb", + "word_frequency": 1911 + }, + { + "word": "all'epoca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "at that time;back then", + "romanization": "all'epoca", + "example_sentence_native": "All'epoca vivevamo in campagna.", + "example_sentence_english": "At that time, we lived in the countryside.", + "pos": "adverb", + "word_frequency": 1913 + }, + { + "word": "approccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach", + "romanization": "approccio", + "example_sentence_native": "Dobbiamo cambiare il nostro approccio.", + "example_sentence_english": "We need to change our approach.", + "pos": "noun", + "word_frequency": 1914 + }, + { + "word": "banda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "band;gang;strip", + "romanization": "banda", + "example_sentence_native": "La banda musicale suonerà stasera.", + "example_sentence_english": "The musical band will play tonight.", + "pos": "noun", + "word_frequency": 1915 + }, + { + "word": "bandiera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flag", + "romanization": "bandiera", + "example_sentence_native": "La bandiera italiana è verde, bianca e rossa.", + "example_sentence_english": "The Italian flag is green, white, and red.", + "pos": "noun", + "word_frequency": 1916 + }, + { + "word": "cammino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;journey;walk", + "romanization": "cammino", + "example_sentence_native": "Siamo sul giusto cammino.", + "example_sentence_english": "We are on the right path.", + "pos": "noun", + "word_frequency": 1917 + }, + { + "word": "catena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chain", + "romanization": "catena", + "example_sentence_native": "Ha una catena d'oro al collo.", + "example_sentence_english": "She has a gold chain around her neck.", + "pos": "noun", + "word_frequency": 1918 + }, + { + "word": "coda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tail;queue", + "romanization": "coda", + "example_sentence_native": "C'era una lunga coda al supermercato.", + "example_sentence_english": "There was a long queue at the supermarket.", + "pos": "noun", + "word_frequency": 1919 + }, + { + "word": "comma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comma", + "romanization": "comma", + "example_sentence_native": "Usa una virgola prima della congiunzione.", + "example_sentence_english": "Use a comma before the conjunction.", + "pos": "noun", + "word_frequency": 1920 + }, + { + "word": "condotta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conduct", + "romanization": "condotta", + "example_sentence_native": "La sua condotta è stata esemplare.", + "example_sentence_english": "His conduct was exemplary.", + "pos": "noun", + "word_frequency": 1921 + }, + { + "word": "condurre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lead", + "romanization": "condurre", + "example_sentence_native": "Dobbiamo condurre l'indagine con attenzione.", + "example_sentence_english": "We must conduct the investigation carefully.", + "pos": "verb", + "word_frequency": 1922 + }, + { + "word": "conversazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conversation", + "romanization": "conversazione", + "example_sentence_native": "Abbiamo avuto una lunga conversazione.", + "example_sentence_english": "We had a long conversation.", + "pos": "noun", + "word_frequency": 1923 + }, + { + "word": "critico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "critical", + "romanization": "critico", + "example_sentence_native": "È un momento critico per la decisione.", + "example_sentence_english": "It's a critical moment for the decision.", + "pos": "adjective", + "word_frequency": 1924 + }, + { + "word": "cronaca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "news report", + "romanization": "cronaca", + "example_sentence_native": "Leggo la cronaca locale ogni mattina.", + "example_sentence_english": "I read the local news report every morning.", + "pos": "noun", + "word_frequency": 1925 + }, + { + "word": "deputato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy", + "romanization": "deputato", + "example_sentence_native": "Il deputato ha votato a favore della legge.", + "example_sentence_english": "The deputy voted in favor of the law.", + "pos": "noun", + "word_frequency": 1926 + }, + { + "word": "firmare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sign", + "romanization": "firmare", + "example_sentence_native": "Devi firmare qui.", + "example_sentence_english": "You need to sign here.", + "pos": "verb", + "word_frequency": 1927 + }, + { + "word": "giovedì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Thursday", + "romanization": "giovedì", + "example_sentence_native": "Ci vediamo giovedì prossimo.", + "example_sentence_english": "See you next Thursday.", + "pos": "noun", + "word_frequency": 1928 + }, + { + "word": "governatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governor", + "romanization": "governatore", + "example_sentence_native": "Il governatore ha annunciato nuove misure.", + "example_sentence_english": "The governor announced new measures.", + "pos": "noun", + "word_frequency": 1929 + }, + { + "word": "impressione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impression", + "romanization": "impressione", + "example_sentence_native": "Ho avuto una buona impressione di lui.", + "example_sentence_english": "I had a good impression of him.", + "pos": "noun", + "word_frequency": 1930 + }, + { + "word": "intelligente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intelligent", + "romanization": "intelligente", + "example_sentence_native": "È una persona molto intelligente.", + "example_sentence_english": "He is a very intelligent person.", + "pos": "adjective", + "word_frequency": 1931 + }, + { + "word": "kg", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram", + "romanization": "kg", + "example_sentence_native": "Ho comprato due kg di mele.", + "example_sentence_english": "I bought two kilograms of apples.", + "pos": "noun", + "word_frequency": 1932 + }, + { + "word": "largo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "wide", + "romanization": "largo", + "example_sentence_native": "La strada è molto larga.", + "example_sentence_english": "The street is very wide.", + "pos": "adjective", + "word_frequency": 1933 + }, + { + "word": "leone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lion", + "romanization": "leone", + "example_sentence_native": "Il leone è il re della giungla.", + "example_sentence_english": "The lion is the king of the jungle.", + "pos": "noun", + "word_frequency": 1934 + }, + { + "word": "lunghezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "length", + "romanization": "lunghezza", + "example_sentence_native": "Misura la lunghezza del tavolo.", + "example_sentence_english": "Measure the length of the table.", + "pos": "noun", + "word_frequency": 1937 + }, + { + "word": "lupo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wolf", + "romanization": "lupo", + "example_sentence_native": "Il lupo ulula alla luna.", + "example_sentence_english": "The wolf howls at the moon.", + "pos": "noun", + "word_frequency": 1938 + }, + { + "word": "maglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweater", + "romanization": "maglia", + "example_sentence_native": "Indosso una maglia calda.", + "example_sentence_english": "I'm wearing a warm sweater.", + "pos": "noun", + "word_frequency": 1939 + }, + { + "word": "mar", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sea", + "romanization": "mar", + "example_sentence_native": "Andiamo al mar questo weekend.", + "example_sentence_english": "Let's go to the sea this weekend.", + "pos": "noun", + "word_frequency": 1940 + }, + { + "word": "occupazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occupation", + "romanization": "occupazione", + "example_sentence_native": "Qual è la tua occupazione?", + "example_sentence_english": "What is your occupation?", + "pos": "noun", + "word_frequency": 1942 + }, + { + "word": "personalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personally", + "romanization": "personalmente", + "example_sentence_native": "Personalmente, non sono d'accordo.", + "example_sentence_english": "Personally, I don't agree.", + "pos": "adverb", + "word_frequency": 1945 + }, + { + "word": "pesante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heavy", + "romanization": "pesante", + "example_sentence_native": "Questa scatola è molto pesante.", + "example_sentence_english": "This box is very heavy.", + "pos": "adjective", + "word_frequency": 1946 + }, + { + "word": "prestito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loan", + "romanization": "prestito", + "example_sentence_native": "Ho chiesto un prestito alla banca.", + "example_sentence_english": "I asked the bank for a loan.", + "pos": "noun", + "word_frequency": 1948 + }, + { + "word": "prospettiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perspective", + "romanization": "prospettiva", + "example_sentence_native": "Dobbiamo considerare tutte le prospettive.", + "example_sentence_english": "We must consider all perspectives.", + "pos": "noun", + "word_frequency": 1949 + }, + { + "word": "rapidamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rapidly", + "romanization": "rapidamente", + "example_sentence_native": "Ha imparato rapidamente l'italiano.", + "example_sentence_english": "He learned Italian rapidly.", + "pos": "adverb", + "word_frequency": 1950 + }, + { + "word": "rappresentante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representative", + "romanization": "rappresentante", + "example_sentence_native": "Il rappresentante ha presentato la proposta.", + "example_sentence_english": "The representative presented the proposal.", + "pos": "noun", + "word_frequency": 1951 + }, + { + "word": "realmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "really", + "romanization": "realmente", + "example_sentence_native": "È realmente successo?", + "example_sentence_english": "Did it really happen?", + "pos": "adverb", + "word_frequency": 1952 + }, + { + "word": "recentemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recently", + "romanization": "recentemente", + "example_sentence_native": "L'ho visto recentemente.", + "example_sentence_english": "I saw him recently.", + "pos": "adverb", + "word_frequency": 1953 + }, + { + "word": "riferire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to report", + "romanization": "riferire", + "example_sentence_native": "Devo riferire i risultati al capo.", + "example_sentence_english": "I need to report the results to the boss.", + "pos": "verb", + "word_frequency": 1954 + }, + { + "word": "ritenere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider", + "romanization": "ritenere", + "example_sentence_native": "Ritengo che sia una buona idea.", + "example_sentence_english": "I consider it a good idea.", + "pos": "verb", + "word_frequency": 1956 + }, + { + "word": "scendere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go down", + "romanization": "scendere", + "example_sentence_native": "Dobbiamo scendere le scale.", + "example_sentence_english": "We need to go down the stairs.", + "pos": "verb", + "word_frequency": 1958 + }, + { + "word": "statistica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistic", + "romanization": "statistica", + "example_sentence_native": "Le statistiche mostrano un aumento.", + "example_sentence_english": "The statistics show an increase.", + "pos": "noun", + "word_frequency": 1959 + }, + { + "word": "traccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trace;track", + "romanization": "traccia", + "example_sentence_native": "Abbiamo trovato una traccia di pneumatici sulla strada.", + "example_sentence_english": "We found a tire track on the road.", + "pos": "noun", + "word_frequency": 1960 + }, + { + "word": "uovo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "egg", + "romanization": "uovo", + "example_sentence_native": "Vorrei un uovo fritto per colazione.", + "example_sentence_english": "I would like a fried egg for breakfast.", + "pos": "noun", + "word_frequency": 1961 + }, + { + "word": "vigore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigor;force", + "romanization": "vigore", + "example_sentence_native": "La legge entrerà in vigore il prossimo mese.", + "example_sentence_english": "The law will come into force next month.", + "pos": "noun", + "word_frequency": 1962 + }, + { + "word": "accadere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen;to occur", + "romanization": "accadere", + "example_sentence_native": "Non so cosa possa accadere domani.", + "example_sentence_english": "I don't know what might happen tomorrow.", + "pos": "verb", + "word_frequency": 1963 + }, + { + "word": "accedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to access;to enter", + "romanization": "accedere", + "example_sentence_native": "Non riesco ad accedere al mio account.", + "example_sentence_english": "I can't access my account.", + "pos": "verb", + "word_frequency": 1964 + }, + { + "word": "adulto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adult", + "romanization": "adulto", + "example_sentence_native": "Ogni adulto deve assumersi le proprie responsabilità.", + "example_sentence_english": "Every adult must take their own responsibilities.", + "pos": "noun", + "word_frequency": 1965 + }, + { + "word": "agire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act;to behave", + "romanization": "agire", + "example_sentence_native": "È importante agire con prudenza.", + "example_sentence_english": "It's important to act with caution.", + "pos": "verb", + "word_frequency": 1966 + }, + { + "word": "approvare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approve", + "romanization": "approvare", + "example_sentence_native": "Il consiglio ha approvato la nuova proposta.", + "example_sentence_english": "The council approved the new proposal.", + "pos": "verb", + "word_frequency": 1967 + }, + { + "word": "assai", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very;quite", + "romanization": "assai", + "example_sentence_native": "Era assai stanco dopo il lungo viaggio.", + "example_sentence_english": "He was very tired after the long journey.", + "pos": "adverb", + "word_frequency": 1968 + }, + { + "word": "carabiniere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carabiniere (Italian military police officer)", + "romanization": "carabiniere", + "example_sentence_native": "Un carabiniere ha fermato l'auto per un controllo.", + "example_sentence_english": "A carabiniere stopped the car for a check.", + "pos": "noun", + "word_frequency": 1969 + }, + { + "word": "cattivo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bad;evil", + "romanization": "cattivo", + "example_sentence_native": "Non essere cattivo con il tuo fratellino.", + "example_sentence_english": "Don't be bad to your little brother.", + "pos": "adjective", + "word_frequency": 1970 + }, + { + "word": "complimento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "compliment", + "romanization": "complimento", + "example_sentence_native": "Mi ha fatto un bel complimento sul mio vestito.", + "example_sentence_english": "He paid me a nice compliment on my dress.", + "pos": "noun", + "word_frequency": 1971 + }, + { + "word": "condannare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condemn;to sentence", + "romanization": "condannare", + "example_sentence_native": "Il giudice ha deciso di condannare l'imputato.", + "example_sentence_english": "The judge decided to condemn the defendant.", + "pos": "verb", + "word_frequency": 1972 + }, + { + "word": "democratico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democratic", + "romanization": "democratico", + "example_sentence_native": "Il paese ha un sistema politico democratico.", + "example_sentence_english": "The country has a democratic political system.", + "pos": "adjective", + "word_frequency": 1974 + }, + { + "word": "duca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duke", + "romanization": "duca", + "example_sentence_native": "Il duca governava un vasto territorio.", + "example_sentence_english": "The duke governed a vast territory.", + "pos": "noun", + "word_frequency": 1975 + }, + { + "word": "fabbrica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "factory", + "romanization": "fabbrica", + "example_sentence_native": "Mio padre lavora in una fabbrica di automobili.", + "example_sentence_english": "My father works in a car factory.", + "pos": "noun", + "word_frequency": 1977 + }, + { + "word": "felicità", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "happiness", + "romanization": "felicità", + "example_sentence_native": "La felicità è uno stato d'animo.", + "example_sentence_english": "Happiness is a state of mind.", + "pos": "noun", + "word_frequency": 1978 + }, + { + "word": "garanzia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guarantee;warranty", + "romanization": "garanzia", + "example_sentence_native": "Questo prodotto ha due anni di garanzia.", + "example_sentence_english": "This product has a two-year warranty.", + "pos": "noun", + "word_frequency": 1979 + }, + { + "word": "girare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to turn;to spin;to go around", + "romanization": "girare", + "example_sentence_native": "Gira a destra al prossimo incrocio.", + "example_sentence_english": "Turn right at the next intersection.", + "pos": "verb", + "word_frequency": 1980 + }, + { + "word": "insegnante", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "teacher", + "romanization": "insegnante", + "example_sentence_native": "La mia insegnante di italiano è molto brava.", + "example_sentence_english": "My Italian teacher is very good.", + "pos": "noun", + "word_frequency": 1981 + }, + { + "word": "leggermente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slightly;lightly", + "romanization": "leggermente", + "example_sentence_native": "Ha aperto la porta leggermente.", + "example_sentence_english": "He opened the door slightly.", + "pos": "adverb", + "word_frequency": 1982 + }, + { + "word": "letteralmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literally", + "romanization": "letteralmente", + "example_sentence_native": "Ha preso le mie parole letteralmente.", + "example_sentence_english": "He took my words literally.", + "pos": "adverb", + "word_frequency": 1983 + }, + { + "word": "manager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manager", + "romanization": "manager", + "example_sentence_native": "Il manager ha approvato il progetto.", + "example_sentence_english": "The manager approved the project.", + "pos": "noun", + "word_frequency": 1984 + }, + { + "word": "nonno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grandfather", + "romanization": "nonno", + "example_sentence_native": "Mio nonno mi ha raccontato una storia.", + "example_sentence_english": "My grandfather told me a story.", + "pos": "noun", + "word_frequency": 1985 + }, + { + "word": "pausa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "break;pause", + "romanization": "pausa", + "example_sentence_native": "Facciamo una breve pausa caffè.", + "example_sentence_english": "Let's take a short coffee break.", + "pos": "noun", + "word_frequency": 1986 + }, + { + "word": "piangere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cry", + "romanization": "piangere", + "example_sentence_native": "Il bambino ha iniziato a piangere.", + "example_sentence_english": "The child started to cry.", + "pos": "verb", + "word_frequency": 1987 + }, + { + "word": "preciso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precise;exact", + "romanization": "preciso", + "example_sentence_native": "Dammi l'ora precisa del tuo arrivo.", + "example_sentence_english": "Give me the precise time of your arrival.", + "pos": "adjective", + "word_frequency": 1988 + }, + { + "word": "razzismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racism", + "romanization": "razzismo", + "example_sentence_native": "Dobbiamo combattere ogni forma di razzismo.", + "example_sentence_english": "We must fight every form of racism.", + "pos": "noun", + "word_frequency": 1989 + }, + { + "word": "ricorso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appeal;recourse", + "romanization": "ricorso", + "example_sentence_native": "Ha presentato ricorso contro la decisione.", + "example_sentence_english": "He filed an appeal against the decision.", + "pos": "noun", + "word_frequency": 1990 + }, + { + "word": "ringraziare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to thank", + "romanization": "ringraziare", + "example_sentence_native": "Voglio ringraziarti per il tuo aiuto.", + "example_sentence_english": "I want to thank you for your help.", + "pos": "verb", + "word_frequency": 1991 + }, + { + "word": "riportare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bring back;to report", + "romanization": "riportare", + "example_sentence_native": "Puoi riportare il libro in biblioteca?", + "example_sentence_english": "Can you bring the book back to the library?", + "pos": "verb", + "word_frequency": 1992 + }, + { + "word": "seduta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "session;sitting", + "romanization": "seduta", + "example_sentence_native": "La prossima seduta del consiglio è martedì.", + "example_sentence_english": "The next council session is on Tuesday.", + "pos": "noun", + "word_frequency": 1993 + }, + { + "word": "tantissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very much;a lot", + "romanization": "tantissimo", + "example_sentence_native": "Ti ringrazio tantissimo per il tuo aiuto.", + "example_sentence_english": "Thank you very much for your help.", + "pos": "adverb", + "word_frequency": 1996 + }, + { + "word": "tensione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tension", + "romanization": "tensione", + "example_sentence_native": "C'era molta tensione nell'aria prima dell'esame.", + "example_sentence_english": "There was a lot of tension in the air before the exam.", + "pos": "noun", + "word_frequency": 1997 + }, + { + "word": "terribile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrible", + "romanization": "terribile", + "example_sentence_native": "Il tempo oggi è terribile.", + "example_sentence_english": "The weather today is terrible.", + "pos": "adjective", + "word_frequency": 1998 + }, + { + "word": "togliere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remove;to take off", + "romanization": "togliere", + "example_sentence_native": "Puoi togliere le scarpe prima di entrare?", + "example_sentence_english": "Can you take off your shoes before entering?", + "pos": "verb", + "word_frequency": 1999 + }, + { + "word": "truppa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troop", + "romanization": "truppa", + "example_sentence_native": "La truppa si preparava per la missione.", + "example_sentence_english": "The troop was preparing for the mission.", + "pos": "noun", + "word_frequency": 2000 + }, + { + "word": "vergogna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shame", + "romanization": "vergogna", + "example_sentence_native": "Ha provato una grande vergogna per il suo errore.", + "example_sentence_english": "He felt great shame for his mistake.", + "pos": "noun", + "word_frequency": 2001 + }, + { + "word": "abito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dress", + "romanization": "abito", + "example_sentence_native": "Ha comprato un nuovo abito per la festa.", + "example_sentence_english": "She bought a new dress for the party.", + "pos": "noun", + "word_frequency": 2002 + }, + { + "word": "altrove", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elsewhere", + "romanization": "altrove", + "example_sentence_native": "Forse dovremmo cercare altrove.", + "example_sentence_english": "Maybe we should look elsewhere.", + "pos": "adverb", + "word_frequency": 2003 + }, + { + "word": "annunciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to announce", + "romanization": "annunciare", + "example_sentence_native": "Il presidente ha annunciato nuove misure.", + "example_sentence_english": "The president announced new measures.", + "pos": "verb", + "word_frequency": 2004 + }, + { + "word": "bomba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bomb", + "romanization": "bomba", + "example_sentence_native": "Hanno disinnescato la bomba in tempo.", + "example_sentence_english": "They defused the bomb in time.", + "pos": "noun", + "word_frequency": 2006 + }, + { + "word": "cantante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "singer", + "romanization": "cantante", + "example_sentence_native": "La cantante ha una voce meravigliosa.", + "example_sentence_english": "The singer has a wonderful voice.", + "pos": "noun", + "word_frequency": 2007 + }, + { + "word": "cassa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box;cash register", + "romanization": "cassa", + "example_sentence_native": "La merce è arrivata in una grande cassa.", + "example_sentence_english": "The goods arrived in a large box.", + "pos": "noun", + "word_frequency": 2008 + }, + { + "word": "debole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weak", + "romanization": "debole", + "example_sentence_native": "Si sentiva debole dopo la malattia.", + "example_sentence_english": "He felt weak after the illness.", + "pos": "adjective", + "word_frequency": 2009 + }, + { + "word": "deriva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drift", + "romanization": "deriva", + "example_sentence_native": "La barca era alla deriva in mare aperto.", + "example_sentence_english": "The boat was adrift in the open sea.", + "pos": "noun", + "word_frequency": 2010 + }, + { + "word": "ebreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jew;Jewish person", + "romanization": "ebreo", + "example_sentence_native": "Molti ebrei vivono in Israele.", + "example_sentence_english": "Many Jewish people live in Israel.", + "pos": "noun", + "word_frequency": 2011 + }, + { + "word": "email", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "email", + "romanization": "email", + "example_sentence_native": "Ti ho inviato un'email con i dettagli.", + "example_sentence_english": "I sent you an email with the details.", + "pos": "noun", + "word_frequency": 2012 + }, + { + "word": "interamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entirely", + "romanization": "interamente", + "example_sentence_native": "Il progetto è stato finanziato interamente da donazioni.", + "example_sentence_english": "The project was entirely funded by donations.", + "pos": "adverb", + "word_frequency": 2014 + }, + { + "word": "international", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "international", + "romanization": "international", + "example_sentence_native": "L'aeroporto ha voli internazionali.", + "example_sentence_english": "The airport has international flights.", + "pos": "adjective", + "word_frequency": 2015 + }, + { + "word": "mappa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "map", + "romanization": "mappa", + "example_sentence_native": "Abbiamo usato una mappa per trovare la strada.", + "example_sentence_english": "We used a map to find the way.", + "pos": "noun", + "word_frequency": 2020 + }, + { + "word": "meridionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "southern", + "romanization": "meridionale", + "example_sentence_native": "Il clima meridionale è più caldo.", + "example_sentence_english": "The southern climate is warmer.", + "pos": "adjective", + "word_frequency": 2021 + }, + { + "word": "oriente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "East;Orient", + "romanization": "oriente", + "example_sentence_native": "Il sole sorge a oriente.", + "example_sentence_english": "The sun rises in the East.", + "pos": "noun", + "word_frequency": 2022 + }, + { + "word": "paradiso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paradise;heaven", + "romanization": "paradiso", + "example_sentence_native": "Questo posto è un vero paradiso.", + "example_sentence_english": "This place is a true paradise.", + "pos": "noun", + "word_frequency": 2023 + }, + { + "word": "piú", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "more", + "romanization": "piú", + "example_sentence_native": "Voglio piú tempo per finire.", + "example_sentence_english": "I want more time to finish.", + "pos": "adverb", + "word_frequency": 2024 + }, + { + "word": "poeta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poet", + "romanization": "poeta", + "example_sentence_native": "Dante Alighieri è un famoso poeta italiano.", + "example_sentence_english": "Dante Alighieri is a famous Italian poet.", + "pos": "noun", + "word_frequency": 2025 + }, + { + "word": "provinciale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provincial", + "romanization": "provinciale", + "example_sentence_native": "Vive in una piccola città provinciale.", + "example_sentence_english": "He lives in a small provincial town.", + "pos": "adjective", + "word_frequency": 2027 + }, + { + "word": "religioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "religious", + "romanization": "religioso", + "example_sentence_native": "Ha forti convinzioni religiose.", + "example_sentence_english": "He has strong religious beliefs.", + "pos": "adjective", + "word_frequency": 2028 + }, + { + "word": "ricetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recipe;prescription", + "romanization": "ricetta", + "example_sentence_native": "Ho trovato una nuova ricetta per la pasta.", + "example_sentence_english": "I found a new recipe for pasta.", + "pos": "noun", + "word_frequency": 2029 + }, + { + "word": "rumore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noise", + "romanization": "rumore", + "example_sentence_native": "C'era un forte rumore dalla strada.", + "example_sentence_english": "There was a loud noise from the street.", + "pos": "noun", + "word_frequency": 2030 + }, + { + "word": "scomparsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappearance", + "romanization": "scomparsa", + "example_sentence_native": "La sua scomparsa ha preoccupato tutti.", + "example_sentence_english": "His disappearance worried everyone.", + "pos": "noun", + "word_frequency": 2031 + }, + { + "word": "segnale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signal;sign", + "romanization": "segnale", + "example_sentence_native": "Non c'è segnale del telefono qui.", + "example_sentence_english": "There is no phone signal here.", + "pos": "noun", + "word_frequency": 2032 + }, + { + "word": "tempio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple", + "romanization": "tempio", + "example_sentence_native": "Hanno visitato un antico tempio.", + "example_sentence_english": "They visited an ancient temple.", + "pos": "noun", + "word_frequency": 2033 + }, + { + "word": "abbandonare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to abandon;to leave", + "romanization": "abbandonare", + "example_sentence_native": "Non dovresti mai abbandonare i tuoi sogni.", + "example_sentence_english": "You should never abandon your dreams.", + "pos": "verb", + "word_frequency": 2034 + }, + { + "word": "alimentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food-related;alimentary", + "romanization": "alimentare", + "example_sentence_native": "L'industria alimentare è molto importante.", + "example_sentence_english": "The food industry is very important.", + "pos": "adjective", + "word_frequency": 2035 + }, + { + "word": "altrettanto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equally;likewise", + "romanization": "altrettanto", + "example_sentence_native": "Ti auguro altrettanto successo.", + "example_sentence_english": "I wish you equally much success.", + "pos": "adverb", + "word_frequency": 2036 + }, + { + "word": "arresto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrest;stop", + "romanization": "arresto", + "example_sentence_native": "La polizia ha effettuato un arresto.", + "example_sentence_english": "The police made an arrest.", + "pos": "noun", + "word_frequency": 2038 + }, + { + "word": "assemblea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly;meeting", + "romanization": "assemblea", + "example_sentence_native": "L'assemblea si riunirà domani.", + "example_sentence_english": "The assembly will meet tomorrow.", + "pos": "noun", + "word_frequency": 2039 + }, + { + "word": "attore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actor", + "romanization": "attore", + "example_sentence_native": "L'attore ha ricevuto un premio per la sua performance.", + "example_sentence_english": "The actor received an award for his performance.", + "pos": "noun", + "word_frequency": 2040 + }, + { + "word": "buio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "darkness", + "romanization": "buio", + "example_sentence_native": "Ho paura del buio.", + "example_sentence_english": "I am afraid of the darkness.", + "pos": "noun", + "word_frequency": 2041 + }, + { + "word": "business", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "business", + "romanization": "business", + "example_sentence_native": "Il suo nuovo business sta andando molto bene.", + "example_sentence_english": "His new business is doing very well.", + "pos": "noun", + "word_frequency": 2042 + }, + { + "word": "capitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to happen;to occur", + "romanization": "capitare", + "example_sentence_native": "A volte capita di incontrare vecchi amici per caso.", + "example_sentence_english": "Sometimes it happens that you meet old friends by chance.", + "pos": "verb", + "word_frequency": 2043 + }, + { + "word": "colonna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "column", + "romanization": "colonna", + "example_sentence_native": "La colonna vertebrale è molto importante.", + "example_sentence_english": "The spinal column is very important.", + "pos": "noun", + "word_frequency": 2045 + }, + { + "word": "confermare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confirm", + "romanization": "confermare", + "example_sentence_native": "Puoi confermare la tua prenotazione?", + "example_sentence_english": "Can you confirm your reservation?", + "pos": "verb", + "word_frequency": 2046 + }, + { + "word": "connessione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection", + "romanization": "connessione", + "example_sentence_native": "La connessione internet è lenta oggi.", + "example_sentence_english": "The internet connection is slow today.", + "pos": "noun", + "word_frequency": 2047 + }, + { + "word": "consistere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consist of", + "romanization": "consistere", + "example_sentence_native": "Il problema consiste nella mancanza di fondi.", + "example_sentence_english": "The problem consists of the lack of funds.", + "pos": "verb", + "word_frequency": 2048 + }, + { + "word": "corretto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "correct", + "romanization": "corretto", + "example_sentence_native": "La risposta che hai dato è corretta.", + "example_sentence_english": "The answer you gave is correct.", + "pos": "adjective", + "word_frequency": 2049 + }, + { + "word": "corruzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corruption", + "romanization": "corruzione", + "example_sentence_native": "La corruzione è un grave problema in molti paesi.", + "example_sentence_english": "Corruption is a serious problem in many countries.", + "pos": "noun", + "word_frequency": 2050 + }, + { + "word": "determinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determined;specific", + "romanization": "determinato", + "example_sentence_native": "È una persona molto determinata a raggiungere i suoi obiettivi.", + "example_sentence_english": "He is a very determined person to achieve his goals.", + "pos": "adjective", + "word_frequency": 2052 + }, + { + "word": "esecuzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "execution;performance", + "romanization": "esecuzione", + "example_sentence_native": "L'esecuzione del progetto è stata impeccabile.", + "example_sentence_english": "The execution of the project was impeccable.", + "pos": "noun", + "word_frequency": 2053 + }, + { + "word": "eventuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eventual;possible", + "romanization": "eventuale", + "example_sentence_native": "Prendi in considerazione ogni eventuale problema.", + "example_sentence_english": "Take into consideration every possible problem.", + "pos": "adjective", + "word_frequency": 2054 + }, + { + "word": "formula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formula", + "romanization": "formula", + "example_sentence_native": "La formula chimica dell'acqua è H2O.", + "example_sentence_english": "The chemical formula for water is H2O.", + "pos": "noun", + "word_frequency": 2055 + }, + { + "word": "globale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "global", + "romanization": "globale", + "example_sentence_native": "Il riscaldamento globale è una preoccupazione crescente.", + "example_sentence_english": "Global warming is a growing concern.", + "pos": "adjective", + "word_frequency": 2056 + }, + { + "word": "impiego", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "employment;use", + "romanization": "impiego", + "example_sentence_native": "Ha trovato un nuovo impiego come ingegnere.", + "example_sentence_english": "He found new employment as an engineer.", + "pos": "noun", + "word_frequency": 2058 + }, + { + "word": "licenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "license", + "romanization": "licenza", + "example_sentence_native": "Ho bisogno di una licenza per guidare.", + "example_sentence_english": "I need a license to drive.", + "pos": "noun", + "word_frequency": 2059 + }, + { + "word": "maggiormente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mostly;primarily", + "romanization": "maggiormente", + "example_sentence_native": "Questo problema riguarda maggiormente i giovani.", + "example_sentence_english": "This problem mostly concerns young people.", + "pos": "adverb", + "word_frequency": 2060 + }, + { + "word": "marcia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "march;gear", + "romanization": "marcia", + "example_sentence_native": "La macchina era in prima marcia.", + "example_sentence_english": "The car was in first gear.", + "pos": "noun", + "word_frequency": 2061 + }, + { + "word": "maschile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "masculine", + "romanization": "maschile", + "example_sentence_native": "Il genere maschile in italiano è indicato dall'articolo \"il\".", + "example_sentence_english": "The masculine gender in Italian is indicated by the article \"il\".", + "pos": "adjective", + "word_frequency": 2062 + }, + { + "word": "ovest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "west", + "romanization": "ovest", + "example_sentence_native": "Il sole tramonta a ovest.", + "example_sentence_english": "The sun sets in the west.", + "pos": "noun", + "word_frequency": 2065 + }, + { + "word": "parlamentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parliament member;MP", + "romanization": "parlamentare", + "example_sentence_native": "Il parlamentare ha votato a favore della nuova legge.", + "example_sentence_english": "The parliament member voted in favor of the new law.", + "pos": "noun", + "word_frequency": 2066 + }, + { + "word": "patto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pact;agreement", + "romanization": "patto", + "example_sentence_native": "Hanno stretto un patto di non aggressione.", + "example_sentence_english": "They made a non-aggression pact.", + "pos": "noun", + "word_frequency": 2067 + }, + { + "word": "perfino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "even", + "romanization": "perfino", + "example_sentence_native": "Perfino i bambini hanno capito la situazione.", + "example_sentence_english": "Even the children understood the situation.", + "pos": "adverb", + "word_frequency": 2068 + }, + { + "word": "pista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "track;slope;runway", + "romanization": "pista", + "example_sentence_native": "La pista da sci era affollata.", + "example_sentence_english": "The ski slope was crowded.", + "pos": "noun", + "word_frequency": 2069 + }, + { + "word": "privacy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "privacy", + "romanization": "privacy", + "example_sentence_native": "La protezione della privacy è fondamentale online.", + "example_sentence_english": "Privacy protection is fundamental online.", + "pos": "noun", + "word_frequency": 2070 + }, + { + "word": "residenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "residence", + "romanization": "residenza", + "example_sentence_native": "La sua residenza è a Milano.", + "example_sentence_english": "His residence is in Milan.", + "pos": "noun", + "word_frequency": 2071 + }, + { + "word": "ricostruzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstruction", + "romanization": "ricostruzione", + "example_sentence_native": "La ricostruzione della città dopo il terremoto è in corso.", + "example_sentence_english": "The reconstruction of the city after the earthquake is ongoing.", + "pos": "noun", + "word_frequency": 2072 + }, + { + "word": "schermo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screen", + "romanization": "schermo", + "example_sentence_native": "Guarda lo schermo del computer.", + "example_sentence_english": "Look at the computer screen.", + "pos": "noun", + "word_frequency": 2073 + }, + { + "word": "sonno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sleep", + "romanization": "sonno", + "example_sentence_native": "Ho molto sonno.", + "example_sentence_english": "I am very sleepy.", + "pos": "noun", + "word_frequency": 2074 + }, + { + "word": "sorriso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smile", + "romanization": "sorriso", + "example_sentence_native": "Il suo sorriso illuminava la stanza.", + "example_sentence_english": "Her smile lit up the room.", + "pos": "noun", + "word_frequency": 2075 + }, + { + "word": "staff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "staff", + "romanization": "staff", + "example_sentence_native": "Lo staff dell'hotel è molto cordiale.", + "example_sentence_english": "The hotel staff is very friendly.", + "pos": "noun", + "word_frequency": 2076 + }, + { + "word": "statunitense", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "American (from the United States)", + "romanization": "statunitense", + "example_sentence_native": "È un cittadino statunitense.", + "example_sentence_english": "He is a United States citizen.", + "pos": "adjective", + "word_frequency": 2077 + }, + { + "word": "ancor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "still;yet", + "romanization": "ancor", + "example_sentence_native": "Ancor non so cosa fare.", + "example_sentence_english": "I still don't know what to do.", + "pos": "adverb", + "word_frequency": 2079 + }, + { + "word": "android", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "android", + "romanization": "android", + "example_sentence_native": "L'android ha una batteria a lunga durata.", + "example_sentence_english": "The android has a long-lasting battery.", + "pos": "noun", + "word_frequency": 2080 + }, + { + "word": "benvenuto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "welcome", + "romanization": "benvenuto", + "example_sentence_native": "Sei il benvenuto a casa mia.", + "example_sentence_english": "You are welcome in my home.", + "pos": "adjective", + "word_frequency": 2081 + }, + { + "word": "bloccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blocked;stuck", + "romanization": "bloccato", + "example_sentence_native": "Il traffico era bloccato a causa di un incidente.", + "example_sentence_english": "The traffic was blocked due to an accident.", + "pos": "adjective", + "word_frequency": 2083 + }, + { + "word": "bosco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forest;wood", + "romanization": "bosco", + "example_sentence_native": "Ci piace fare passeggiate nel bosco.", + "example_sentence_english": "We like to take walks in the forest.", + "pos": "noun", + "word_frequency": 2084 + }, + { + "word": "calma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calm;quiet", + "romanization": "calma", + "example_sentence_native": "Dopo la tempesta, è tornata la calma.", + "example_sentence_english": "After the storm, calm returned.", + "pos": "noun", + "word_frequency": 2085 + }, + { + "word": "circolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circular", + "romanization": "circolare", + "example_sentence_native": "La forma del tavolo è circolare.", + "example_sentence_english": "The shape of the table is circular.", + "pos": "adjective", + "word_frequency": 2087 + }, + { + "word": "corriere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courier;delivery person", + "romanization": "corriere", + "example_sentence_native": "Il corriere ha consegnato il pacco stamattina.", + "example_sentence_english": "The courier delivered the package this morning.", + "pos": "noun", + "word_frequency": 2088 + }, + { + "word": "dieta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diet", + "romanization": "dieta", + "example_sentence_native": "Sto seguendo una dieta equilibrata.", + "example_sentence_english": "I am following a balanced diet.", + "pos": "noun", + "word_frequency": 2091 + }, + { + "word": "eliminare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to eliminate;to remove", + "romanization": "eliminare", + "example_sentence_native": "Dobbiamo eliminare gli sprechi.", + "example_sentence_english": "We must eliminate waste.", + "pos": "verb", + "word_frequency": 2092 + }, + { + "word": "estero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abroad;foreign country", + "romanization": "estero", + "example_sentence_native": "Molti giovani vanno all'estero per lavorare.", + "example_sentence_english": "Many young people go abroad to work.", + "pos": "noun", + "word_frequency": 2093 + }, + { + "word": "estremo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extreme", + "romanization": "estremo", + "example_sentence_native": "Ha preso una decisione estrema.", + "example_sentence_english": "He made an extreme decision.", + "pos": "adjective", + "word_frequency": 2094 + }, + { + "word": "fumo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smoke", + "romanization": "fumo", + "example_sentence_native": "C'era molto fumo nell'aria.", + "example_sentence_english": "There was a lot of smoke in the air.", + "pos": "noun", + "word_frequency": 2096 + }, + { + "word": "galleria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallery;tunnel", + "romanization": "galleria", + "example_sentence_native": "Abbiamo attraversato una lunga galleria.", + "example_sentence_english": "We went through a long tunnel.", + "pos": "noun", + "word_frequency": 2097 + }, + { + "word": "guidare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to drive;to guide", + "romanization": "guidare", + "example_sentence_native": "Mi piace guidare la macchina.", + "example_sentence_english": "I like to drive the car.", + "pos": "verb", + "word_frequency": 2098 + }, + { + "word": "impianto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plant;system;installation", + "romanization": "impianto", + "example_sentence_native": "L'impianto di riscaldamento è nuovo.", + "example_sentence_english": "The heating system is new.", + "pos": "noun", + "word_frequency": 2099 + }, + { + "word": "indicato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indicated;suitable", + "romanization": "indicato", + "example_sentence_native": "Questo è il momento più indicato per partire.", + "example_sentence_english": "This is the most suitable time to leave.", + "pos": "adjective", + "word_frequency": 2101 + }, + { + "word": "integrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integration", + "romanization": "integrazione", + "example_sentence_native": "L'integrazione sociale è importante.", + "example_sentence_english": "Social integration is important.", + "pos": "noun", + "word_frequency": 2102 + }, + { + "word": "interpretazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpretation", + "romanization": "interpretazione", + "example_sentence_native": "La sua interpretazione del testo era interessante.", + "example_sentence_english": "His interpretation of the text was interesting.", + "pos": "noun", + "word_frequency": 2103 + }, + { + "word": "lettore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reader;player (device)", + "romanization": "lettore", + "example_sentence_native": "Il lettore di CD non funziona.", + "example_sentence_english": "The CD player is not working.", + "pos": "noun", + "word_frequency": 2105 + }, + { + "word": "moneta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coin;currency", + "romanization": "moneta", + "example_sentence_native": "Ho trovato una vecchia moneta.", + "example_sentence_english": "I found an old coin.", + "pos": "noun", + "word_frequency": 2107 + }, + { + "word": "mossa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move;step", + "romanization": "mossa", + "example_sentence_native": "È stata una mossa intelligente.", + "example_sentence_english": "It was a smart move.", + "pos": "noun", + "word_frequency": 2108 + }, + { + "word": "mostrare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to show;to display", + "romanization": "mostrare", + "example_sentence_native": "Puoi mostrarmi la strada?", + "example_sentence_english": "Can you show me the way?", + "pos": "verb", + "word_frequency": 2109 + }, + { + "word": "negativo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "negative", + "romanization": "negativo", + "example_sentence_native": "Ha avuto un impatto negativo.", + "example_sentence_english": "It had a negative impact.", + "pos": "adjective", + "word_frequency": 2110 + }, + { + "word": "occhiata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glance;quick look", + "romanization": "occhiata", + "example_sentence_native": "Dammi un'occhiata al tuo lavoro.", + "example_sentence_english": "Give me a glance at your work.", + "pos": "noun", + "word_frequency": 2111 + }, + { + "word": "orario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "timetable;schedule;opening hours", + "romanization": "orario", + "example_sentence_native": "Controlla l'orario dei treni.", + "example_sentence_english": "Check the train timetable.", + "pos": "noun", + "word_frequency": 2112 + }, + { + "word": "pericoloso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dangerous", + "romanization": "pericoloso", + "example_sentence_native": "È una situazione pericolosa.", + "example_sentence_english": "It's a dangerous situation.", + "pos": "adjective", + "word_frequency": 2113 + }, + { + "word": "plastica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plastic", + "romanization": "plastica", + "example_sentence_native": "Questa bottiglia è fatta di plastica.", + "example_sentence_english": "This bottle is made of plastic.", + "pos": "noun", + "word_frequency": 2114 + }, + { + "word": "porre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to put;to place;to pose", + "romanization": "porre", + "example_sentence_native": "Dobbiamo porre fine a questa situazione.", + "example_sentence_english": "We must put an end to this situation.", + "pos": "verb", + "word_frequency": 2115 + }, + { + "word": "portale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portal;gateway", + "romanization": "portale", + "example_sentence_native": "Accedi al portale online per i servizi.", + "example_sentence_english": "Access the online portal for services.", + "pos": "noun", + "word_frequency": 2116 + }, + { + "word": "puro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pure", + "romanization": "puro", + "example_sentence_native": "Bevi acqua pura.", + "example_sentence_english": "Drink pure water.", + "pos": "adjective", + "word_frequency": 2117 + }, + { + "word": "pò", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "a little;a bit", + "romanization": "po'", + "example_sentence_native": "Vorrei un pò di zucchero.", + "example_sentence_english": "I would like a little sugar.", + "pos": "adverb", + "word_frequency": 2118 + }, + { + "word": "rom", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Romani person;Rom", + "romanization": "rom", + "example_sentence_native": "La cultura rom è ricca di tradizioni.", + "example_sentence_english": "Romani culture is rich in traditions.", + "pos": "noun", + "word_frequency": 2119 + }, + { + "word": "solitamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usually", + "romanization": "solitamente", + "example_sentence_native": "Solitamente vado al lavoro in bicicletta.", + "example_sentence_english": "I usually go to work by bike.", + "pos": "adverb", + "word_frequency": 2120 + }, + { + "word": "spiegazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "explanation", + "romanization": "spiegazione", + "example_sentence_native": "Ho bisogno di una spiegazione chiara.", + "example_sentence_english": "I need a clear explanation.", + "pos": "noun", + "word_frequency": 2121 + }, + { + "word": "talvolta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sometimes", + "romanization": "talvolta", + "example_sentence_native": "Talvolta piove anche d'estate.", + "example_sentence_english": "Sometimes it rains even in summer.", + "pos": "adverb", + "word_frequency": 2122 + }, + { + "word": "testimonianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "testimony;evidence", + "romanization": "testimonianza", + "example_sentence_native": "La sua testimonianza è stata cruciale per il caso.", + "example_sentence_english": "His testimony was crucial for the case.", + "pos": "noun", + "word_frequency": 2123 + }, + { + "word": "tetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roof", + "romanization": "tetto", + "example_sentence_native": "Il gatto è salito sul tetto.", + "example_sentence_english": "The cat climbed onto the roof.", + "pos": "noun", + "word_frequency": 2124 + }, + { + "word": "tornata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "round;session", + "romanization": "tornata", + "example_sentence_native": "La prossima tornata di negoziati è prevista per lunedì.", + "example_sentence_english": "The next round of negotiations is scheduled for Monday.", + "pos": "noun", + "word_frequency": 2125 + }, + { + "word": "anziano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elderly;old", + "romanization": "anziano", + "example_sentence_native": "Mio nonno è un uomo anziano ma molto attivo.", + "example_sentence_english": "My grandfather is an elderly but very active man.", + "pos": "adjective", + "word_frequency": 2128 + }, + { + "word": "architettura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "architecture", + "romanization": "architettura", + "example_sentence_native": "L'architettura romana è famosa in tutto il mondo.", + "example_sentence_english": "Roman architecture is famous worldwide.", + "pos": "noun", + "word_frequency": 2129 + }, + { + "word": "audio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audio", + "romanization": "audio", + "example_sentence_native": "Il volume dell'audio è troppo alto.", + "example_sentence_english": "The audio volume is too high.", + "pos": "noun", + "word_frequency": 2130 + }, + { + "word": "autobus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "romanization": "autobus", + "example_sentence_native": "Prendo l'autobus per andare a scuola.", + "example_sentence_english": "I take the bus to go to school.", + "pos": "noun", + "word_frequency": 2131 + }, + { + "word": "avventura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adventure", + "romanization": "avventura", + "example_sentence_native": "Mi piacciono i film d'avventura.", + "example_sentence_english": "I like adventure movies.", + "pos": "noun", + "word_frequency": 2132 + }, + { + "word": "bonus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bonus", + "romanization": "bonus", + "example_sentence_native": "Ho ricevuto un bonus a fine anno.", + "example_sentence_english": "I received a bonus at the end of the year.", + "pos": "noun", + "word_frequency": 2133 + }, + { + "word": "composizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composition", + "romanization": "composizione", + "example_sentence_native": "La composizione chimica dell'acqua è H2O.", + "example_sentence_english": "The chemical composition of water is H2O.", + "pos": "noun", + "word_frequency": 2136 + }, + { + "word": "comporre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compose;to dial", + "romanization": "comporre", + "example_sentence_native": "Devo comporre un numero di telefono.", + "example_sentence_english": "I need to dial a phone number.", + "pos": "verb", + "word_frequency": 2137 + }, + { + "word": "contemporaneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemporary", + "romanization": "contemporaneo", + "example_sentence_native": "L'arte contemporanea è molto interessante.", + "example_sentence_english": "Contemporary art is very interesting.", + "pos": "adjective", + "word_frequency": 2138 + }, + { + "word": "criminale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal", + "romanization": "criminale", + "example_sentence_native": "Ha commesso un atto criminale.", + "example_sentence_english": "He committed a criminal act.", + "pos": "adjective", + "word_frequency": 2139 + }, + { + "word": "decina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about ten;a dozen (approx.)", + "romanization": "decina", + "example_sentence_native": "C'erano una decina di persone alla festa.", + "example_sentence_english": "There were about ten people at the party.", + "pos": "noun", + "word_frequency": 2141 + }, + { + "word": "design", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "design", + "romanization": "design", + "example_sentence_native": "Mi piace il design di questa sedia.", + "example_sentence_english": "I like the design of this chair.", + "pos": "noun", + "word_frequency": 2143 + }, + { + "word": "diffuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widespread;common", + "romanization": "diffuso", + "example_sentence_native": "Questa è un'opinione molto diffusa.", + "example_sentence_english": "This is a very widespread opinion.", + "pos": "adjective", + "word_frequency": 2144 + }, + { + "word": "distruggere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destroy", + "romanization": "distruggere", + "example_sentence_native": "Il terremoto ha distrutto molti edifici.", + "example_sentence_english": "The earthquake destroyed many buildings.", + "pos": "verb", + "word_frequency": 2145 + }, + { + "word": "dito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "finger", + "romanization": "dito", + "example_sentence_native": "Mi sono tagliato un dito.", + "example_sentence_english": "I cut my finger.", + "pos": "noun", + "word_frequency": 2146 + }, + { + "word": "diversamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "differently;otherwise", + "romanization": "diversamente", + "example_sentence_native": "Se non agiamo diversamente, il problema persisterà.", + "example_sentence_english": "If we don't act differently, the problem will persist.", + "pos": "adverb", + "word_frequency": 2147 + }, + { + "word": "doccia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shower", + "romanization": "doccia", + "example_sentence_native": "Faccio la doccia ogni mattina.", + "example_sentence_english": "I take a shower every morning.", + "pos": "noun", + "word_frequency": 2148 + }, + { + "word": "elettore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voter;elector", + "romanization": "elettore", + "example_sentence_native": "Ogni elettore ha il diritto di votare.", + "example_sentence_english": "Every voter has the right to vote.", + "pos": "noun", + "word_frequency": 2150 + }, + { + "word": "esigenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "need;requirement", + "romanization": "esigenza", + "example_sentence_native": "Dobbiamo soddisfare le esigenze dei clienti.", + "example_sentence_english": "We must meet the needs of the customers.", + "pos": "noun", + "word_frequency": 2151 + }, + { + "word": "evidentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evidenty;obviously", + "romanization": "evidentemente", + "example_sentence_native": "Evidentemente, non ha capito le istruzioni.", + "example_sentence_english": "Evidently, he didn't understand the instructions.", + "pos": "adverb", + "word_frequency": 2152 + }, + { + "word": "fiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;exhibition", + "romanization": "fiera", + "example_sentence_native": "Andiamo alla fiera del libro questo weekend.", + "example_sentence_english": "We are going to the book fair this weekend.", + "pos": "noun", + "word_frequency": 2153 + }, + { + "word": "gloria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glory", + "romanization": "gloria", + "example_sentence_native": "Ha raggiunto la gloria con le sue imprese.", + "example_sentence_english": "He achieved glory with his deeds.", + "pos": "noun", + "word_frequency": 2154 + }, + { + "word": "grazia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grace;charm;thanks", + "romanization": "grazia", + "example_sentence_native": "Ha ballato con grande grazia.", + "example_sentence_english": "She danced with great grace.", + "pos": "noun", + "word_frequency": 2155 + }, + { + "word": "indipendenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence", + "romanization": "indipendenza", + "example_sentence_native": "Molti paesi hanno lottato per la loro indipendenza.", + "example_sentence_english": "Many countries fought for their independence.", + "pos": "noun", + "word_frequency": 2156 + }, + { + "word": "inizialmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "initially", + "romanization": "inizialmente", + "example_sentence_native": "Inizialmente, ero scettico riguardo al progetto.", + "example_sentence_english": "Initially, I was skeptical about the project.", + "pos": "adverb", + "word_frequency": 2157 + }, + { + "word": "legame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bond;tie;link", + "romanization": "legame", + "example_sentence_native": "C'è un forte legame tra i due fratelli.", + "example_sentence_english": "There is a strong bond between the two brothers.", + "pos": "noun", + "word_frequency": 2158 + }, + { + "word": "love", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "love", + "romanization": "love", + "example_sentence_native": "La loro è una vera love story.", + "example_sentence_english": "Theirs is a true love story.", + "pos": "noun", + "word_frequency": 2159 + }, + { + "word": "neve", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "snow", + "romanization": "neve", + "example_sentence_native": "La neve copre le montagne in inverno.", + "example_sentence_english": "Snow covers the mountains in winter.", + "pos": "noun", + "word_frequency": 2160 + }, + { + "word": "nomina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appointment;nomination", + "romanization": "nomina", + "example_sentence_native": "La sua nomina a direttore è stata annunciata oggi.", + "example_sentence_english": "His appointment as director was announced today.", + "pos": "noun", + "word_frequency": 2161 + }, + { + "word": "ordinato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tidy;ordered", + "romanization": "ordinato", + "example_sentence_native": "La sua stanza è sempre molto ordinata.", + "example_sentence_english": "His room is always very tidy.", + "pos": "adjective", + "word_frequency": 2162 + }, + { + "word": "perdono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forgiveness;pardon", + "romanization": "perdono", + "example_sentence_native": "Chiedo il tuo perdono per il mio errore.", + "example_sentence_english": "I ask for your forgiveness for my mistake.", + "pos": "noun", + "word_frequency": 2163 + }, + { + "word": "possedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to possess;to own", + "romanization": "possedere", + "example_sentence_native": "Non tutti possono possedere una casa grande.", + "example_sentence_english": "Not everyone can own a big house.", + "pos": "verb", + "word_frequency": 2164 + }, + { + "word": "risoluzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolution", + "romanization": "risoluzione", + "example_sentence_native": "La risoluzione del problema richiede tempo.", + "example_sentence_english": "The resolution of the problem requires time.", + "pos": "noun", + "word_frequency": 2165 + }, + { + "word": "riunione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meeting;reunion", + "romanization": "riunione", + "example_sentence_native": "Abbiamo una riunione importante domani mattina.", + "example_sentence_english": "We have an important meeting tomorrow morning.", + "pos": "noun", + "word_frequency": 2166 + }, + { + "word": "rivelare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reveal;to disclose", + "romanization": "rivelare", + "example_sentence_native": "Non posso rivelare i dettagli del progetto.", + "example_sentence_english": "I cannot reveal the details of the project.", + "pos": "verb", + "word_frequency": 2167 + }, + { + "word": "selezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selection", + "romanization": "selezione", + "example_sentence_native": "La selezione dei candidati è stata difficile.", + "example_sentence_english": "The selection of candidates was difficult.", + "pos": "noun", + "word_frequency": 2168 + }, + { + "word": "sforzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "effort", + "romanization": "sforzo", + "example_sentence_native": "Ha fatto un grande sforzo per finire il lavoro.", + "example_sentence_english": "He made a great effort to finish the work.", + "pos": "noun", + "word_frequency": 2169 + }, + { + "word": "somma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sum;amount", + "romanization": "somma", + "example_sentence_native": "La somma totale è di cinquanta euro.", + "example_sentence_english": "The total sum is fifty euros.", + "pos": "noun", + "word_frequency": 2170 + }, + { + "word": "talento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talent", + "romanization": "talento", + "example_sentence_native": "Ha un grande talento per la musica.", + "example_sentence_english": "He has a great talent for music.", + "pos": "noun", + "word_frequency": 2171 + }, + { + "word": "tipico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "typical", + "romanization": "tipico", + "example_sentence_native": "Questo è un piatto tipico della regione.", + "example_sentence_english": "This is a typical dish of the region.", + "pos": "adjective", + "word_frequency": 2172 + }, + { + "word": "tragedia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragedy", + "romanization": "tragedia", + "example_sentence_native": "La notizia della tragedia ha sconvolto tutti.", + "example_sentence_english": "The news of the tragedy shocked everyone.", + "pos": "noun", + "word_frequency": 2173 + }, + { + "word": "vergine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virgin", + "romanization": "vergine", + "example_sentence_native": "La leggenda narra di una vergine che viveva nel bosco.", + "example_sentence_english": "The legend tells of a virgin who lived in the forest.", + "pos": "noun", + "word_frequency": 2174 + }, + { + "word": "verifica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "check;verification;test", + "romanization": "verifica", + "example_sentence_native": "Dobbiamo fare una verifica dei dati.", + "example_sentence_english": "We need to do a check of the data.", + "pos": "noun", + "word_frequency": 2175 + }, + { + "word": "visitare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to visit", + "romanization": "visitare", + "example_sentence_native": "Vorrei visitare Roma la prossima estate.", + "example_sentence_english": "I would like to visit Rome next summer.", + "pos": "verb", + "word_frequency": 2176 + }, + { + "word": "zucchero", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sugar", + "romanization": "zucchero", + "example_sentence_native": "Metto sempre un po' di zucchero nel caffè.", + "example_sentence_english": "I always put a little sugar in my coffee.", + "pos": "noun", + "word_frequency": 2177 + }, + { + "word": "ambientale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmental", + "romanization": "ambientale", + "example_sentence_native": "La protezione ambientale è molto importante.", + "example_sentence_english": "Environmental protection is very important.", + "pos": "adjective", + "word_frequency": 2178 + }, + { + "word": "ansia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anxiety", + "romanization": "ansia", + "example_sentence_native": "Prova molta ansia prima degli esami.", + "example_sentence_english": "She feels a lot of anxiety before exams.", + "pos": "noun", + "word_frequency": 2179 + }, + { + "word": "cifra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figure;digit;amount", + "romanization": "cifra", + "example_sentence_native": "La cifra delle vendite è aumentata.", + "example_sentence_english": "The sales figure has increased.", + "pos": "noun", + "word_frequency": 2181 + }, + { + "word": "commettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commit (a crime;an error)", + "romanization": "commettere", + "example_sentence_native": "Ha commesso un grave errore.", + "example_sentence_english": "He committed a serious error.", + "pos": "verb", + "word_frequency": 2182 + }, + { + "word": "competenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competence;expertise", + "romanization": "competenza", + "example_sentence_native": "La sua competenza nel campo è riconosciuta.", + "example_sentence_english": "His competence in the field is recognized.", + "pos": "noun", + "word_frequency": 2183 + }, + { + "word": "contrasto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrast;opposition", + "romanization": "contrasto", + "example_sentence_native": "C'è un forte contrasto tra le due opinioni.", + "example_sentence_english": "There is a strong contrast between the two opinions.", + "pos": "noun", + "word_frequency": 2184 + }, + { + "word": "coppa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cup;trophy", + "romanization": "coppa", + "example_sentence_native": "Ha vinto la coppa del mondo.", + "example_sentence_english": "He won the world cup.", + "pos": "noun", + "word_frequency": 2185 + }, + { + "word": "grillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cricket (insect)", + "romanization": "grillo", + "example_sentence_native": "Il grillo canta nelle notti d'estate.", + "example_sentence_english": "The cricket sings on summer nights.", + "pos": "noun", + "word_frequency": 2186 + }, + { + "word": "impedire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prevent;to impede", + "romanization": "impedire", + "example_sentence_native": "La pioggia ha impedito la partita.", + "example_sentence_english": "The rain prevented the match.", + "pos": "verb", + "word_frequency": 2187 + }, + { + "word": "incarico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "task;assignment;charge", + "romanization": "incarico", + "example_sentence_native": "Ha ricevuto un nuovo incarico importante.", + "example_sentence_english": "He received an important new assignment.", + "pos": "noun", + "word_frequency": 2188 + }, + { + "word": "maschio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "male", + "romanization": "maschio", + "example_sentence_native": "Il leone maschio è il re della savana.", + "example_sentence_english": "The male lion is the king of the savanna.", + "pos": "noun", + "word_frequency": 2189 + }, + { + "word": "nominare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to name;to appoint", + "romanization": "nominare", + "example_sentence_native": "Hanno deciso di nominare un nuovo presidente.", + "example_sentence_english": "They decided to appoint a new president.", + "pos": "verb", + "word_frequency": 2190 + }, + { + "word": "occorrere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be necessary;to need", + "romanization": "occorrere", + "example_sentence_native": "Occorre molta pazienza per questo lavoro.", + "example_sentence_english": "A lot of patience is needed for this job.", + "pos": "verb", + "word_frequency": 2191 + }, + { + "word": "polvere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dust;powder", + "romanization": "polvere", + "example_sentence_native": "C'è molta polvere sui mobili.", + "example_sentence_english": "There is a lot of dust on the furniture.", + "pos": "noun", + "word_frequency": 2192 + }, + { + "word": "potenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potential", + "romanization": "potenziale", + "example_sentence_native": "Ha un grande potenziale di crescita.", + "example_sentence_english": "It has great growth potential.", + "pos": "adjective", + "word_frequency": 2194 + }, + { + "word": "probabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probability;likelihood", + "romanization": "probabilità", + "example_sentence_native": "C'è una bassa probabilità di pioggia oggi.", + "example_sentence_english": "There is a low probability of rain today.", + "pos": "noun", + "word_frequency": 2195 + }, + { + "word": "promuovere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to promote", + "romanization": "promuovere", + "example_sentence_native": "L'azienda vuole promuovere i suoi prodotti.", + "example_sentence_english": "The company wants to promote its products.", + "pos": "verb", + "word_frequency": 2196 + }, + { + "word": "ricchezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wealth;richness", + "romanization": "ricchezza", + "example_sentence_native": "La ricchezza culturale di questa città è immensa.", + "example_sentence_english": "The cultural richness of this city is immense.", + "pos": "noun", + "word_frequency": 2197 + }, + { + "word": "sessione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "session", + "romanization": "sessione", + "example_sentence_native": "La sessione di esami inizia la prossima settimana.", + "example_sentence_english": "The exam session starts next week.", + "pos": "noun", + "word_frequency": 2198 + }, + { + "word": "sfondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "background", + "romanization": "sfondo", + "example_sentence_native": "L'immagine ha uno sfondo blu.", + "example_sentence_english": "The image has a blue background.", + "pos": "noun", + "word_frequency": 2199 + }, + { + "word": "terapia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therapy", + "romanization": "terapia", + "example_sentence_native": "Ha iniziato una nuova terapia per il suo mal di schiena.", + "example_sentence_english": "She started a new therapy for her back pain.", + "pos": "noun", + "word_frequency": 2200 + }, + { + "word": "tono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tone", + "romanization": "tono", + "example_sentence_native": "Il suo tono di voce era molto calmo.", + "example_sentence_english": "His tone of voice was very calm.", + "pos": "noun", + "word_frequency": 2201 + }, + { + "word": "trasferimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfer", + "romanization": "trasferimento", + "example_sentence_native": "Il trasferimento del file è stato completato.", + "example_sentence_english": "The file transfer was completed.", + "pos": "noun", + "word_frequency": 2202 + }, + { + "word": "ultimamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lately", + "romanization": "ultimamente", + "example_sentence_native": "Ultimamente, ho letto molti libri.", + "example_sentence_english": "Lately, I have been reading many books.", + "pos": "adverb", + "word_frequency": 2205 + }, + { + "word": "virus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "virus", + "romanization": "virus", + "example_sentence_native": "Il virus si è diffuso rapidamente.", + "example_sentence_english": "The virus spread rapidly.", + "pos": "noun", + "word_frequency": 2206 + }, + { + "word": "autonomia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomy", + "romanization": "autonomia", + "example_sentence_native": "La regione gode di una certa autonomia.", + "example_sentence_english": "The region enjoys a certain autonomy.", + "pos": "noun", + "word_frequency": 2208 + }, + { + "word": "cardinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardinal", + "romanization": "cardinale", + "example_sentence_native": "I punti cardinali sono nord, sud, est e ovest.", + "example_sentence_english": "The cardinal points are north, south, east, and west.", + "pos": "adjective", + "word_frequency": 2209 + }, + { + "word": "certezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certainty", + "romanization": "certezza", + "example_sentence_native": "Non ho la certezza che arriverà in tempo.", + "example_sentence_english": "I don't have the certainty that he will arrive on time.", + "pos": "noun", + "word_frequency": 2210 + }, + { + "word": "chimica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemistry", + "romanization": "chimica", + "example_sentence_native": "Ha studiato chimica all'università.", + "example_sentence_english": "She studied chemistry at university.", + "pos": "noun", + "word_frequency": 2211 + }, + { + "word": "cima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "top;peak", + "romanization": "cima", + "example_sentence_native": "Hanno raggiunto la cima della montagna.", + "example_sentence_english": "They reached the top of the mountain.", + "pos": "noun", + "word_frequency": 2212 + }, + { + "word": "civiltà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civilization", + "romanization": "civiltà", + "example_sentence_native": "L'antica civiltà romana era molto avanzata.", + "example_sentence_english": "The ancient Roman civilization was very advanced.", + "pos": "noun", + "word_frequency": 2213 + }, + { + "word": "consegna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery", + "romanization": "consegna", + "example_sentence_native": "La consegna del pacco è prevista per domani.", + "example_sentence_english": "The package delivery is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 2216 + }, + { + "word": "consentire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allow;to consent", + "romanization": "consentire", + "example_sentence_native": "I genitori non hanno voluto consentire al figlio di uscire.", + "example_sentence_english": "The parents did not want to allow their son to go out.", + "pos": "verb", + "word_frequency": 2217 + }, + { + "word": "culto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cult;worship", + "romanization": "culto", + "example_sentence_native": "Praticano un culto antico.", + "example_sentence_english": "They practice an ancient cult.", + "pos": "noun", + "word_frequency": 2218 + }, + { + "word": "disastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disaster", + "romanization": "disastro", + "example_sentence_native": "L'alluvione è stato un vero disastro.", + "example_sentence_english": "The flood was a real disaster.", + "pos": "noun", + "word_frequency": 2219 + }, + { + "word": "disoccupazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unemployment", + "romanization": "disoccupazione", + "example_sentence_native": "Il tasso di disoccupazione è aumentato.", + "example_sentence_english": "The unemployment rate has increased.", + "pos": "noun", + "word_frequency": 2220 + }, + { + "word": "disposto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willing;disposed", + "romanization": "disposto", + "example_sentence_native": "Sono disposto ad aiutarti.", + "example_sentence_english": "I am willing to help you.", + "pos": "adjective", + "word_frequency": 2221 + }, + { + "word": "dodici", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twelve", + "romanization": "dodici", + "example_sentence_native": "Ci sono dodici mesi in un anno.", + "example_sentence_english": "There are twelve months in a year.", + "pos": "noun", + "word_frequency": 2222 + }, + { + "word": "dottore", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "doctor", + "romanization": "dottore", + "example_sentence_native": "Ho un appuntamento con il dottore.", + "example_sentence_english": "I have an appointment with the doctor.", + "pos": "noun", + "word_frequency": 2223 + }, + { + "word": "giudicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to judge", + "romanization": "giudicare", + "example_sentence_native": "Non dovresti giudicare un libro dalla copertina.", + "example_sentence_english": "You shouldn't judge a book by its cover.", + "pos": "verb", + "word_frequency": 2224 + }, + { + "word": "illegale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illegal", + "romanization": "illegale", + "example_sentence_native": "È illegale parcheggiare qui.", + "example_sentence_english": "It is illegal to park here.", + "pos": "adjective", + "word_frequency": 2225 + }, + { + "word": "indice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "index;pointer finger", + "romanization": "indice", + "example_sentence_native": "L'indice del libro è molto dettagliato.", + "example_sentence_english": "The book's index is very detailed.", + "pos": "noun", + "word_frequency": 2226 + }, + { + "word": "martedì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Tuesday", + "romanization": "martedì", + "example_sentence_native": "Ci vediamo martedì prossimo.", + "example_sentence_english": "See you next Tuesday.", + "pos": "noun", + "word_frequency": 2227 + }, + { + "word": "necessariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "necessarily", + "romanization": "necessariamente", + "example_sentence_native": "Non è necessariamente vero.", + "example_sentence_english": "It's not necessarily true.", + "pos": "adverb", + "word_frequency": 2228 + }, + { + "word": "nipote", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grandchild;nephew;niece", + "romanization": "nipote", + "example_sentence_native": "Mia nipote compie dieci anni oggi.", + "example_sentence_english": "My niece turns ten today.", + "pos": "noun", + "word_frequency": 2229 + }, + { + "word": "parecchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quite a lot;a good deal", + "romanization": "parecchio", + "example_sentence_native": "Ho aspettato parecchio tempo.", + "example_sentence_english": "I waited quite a long time.", + "pos": "adverb", + "word_frequency": 2230 + }, + { + "word": "pazienza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "patience", + "romanization": "pazienza", + "example_sentence_native": "Ci vuole molta pazienza per imparare una lingua.", + "example_sentence_english": "It takes a lot of patience to learn a language.", + "pos": "noun", + "word_frequency": 2231 + }, + { + "word": "presidenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presidency", + "romanization": "presidenza", + "example_sentence_native": "La presidenza del consiglio è cambiata.", + "example_sentence_english": "The presidency of the council has changed.", + "pos": "noun", + "word_frequency": 2232 + }, + { + "word": "professione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "profession", + "romanization": "professione", + "example_sentence_native": "Qual è la tua professione?", + "example_sentence_english": "What is your profession?", + "pos": "noun", + "word_frequency": 2233 + }, + { + "word": "professionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional", + "romanization": "professionista", + "example_sentence_native": "È un vero professionista nel suo campo.", + "example_sentence_english": "He is a true professional in his field.", + "pos": "noun", + "word_frequency": 2234 + }, + { + "word": "programmazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "programming;scheduling", + "romanization": "programmazione", + "example_sentence_native": "La programmazione del software richiede molta attenzione.", + "example_sentence_english": "Software programming requires a lot of attention.", + "pos": "noun", + "word_frequency": 2235 + }, + { + "word": "recuperare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recover;to retrieve", + "romanization": "recuperare", + "example_sentence_native": "Dobbiamo recuperare il tempo perduto.", + "example_sentence_english": "We need to recover lost time.", + "pos": "verb", + "word_frequency": 2236 + }, + { + "word": "rispettare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to respect", + "romanization": "rispettare", + "example_sentence_native": "Bisogna rispettare le regole.", + "example_sentence_english": "One must respect the rules.", + "pos": "verb", + "word_frequency": 2237 + }, + { + "word": "salto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jump;leap", + "romanization": "salto", + "example_sentence_native": "Ha fatto un salto incredibile.", + "example_sentence_english": "He made an incredible jump.", + "pos": "noun", + "word_frequency": 2238 + }, + { + "word": "sexy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sexy", + "romanization": "sexy", + "example_sentence_native": "Indossava un vestito molto sexy.", + "example_sentence_english": "She was wearing a very sexy dress.", + "pos": "adjective", + "word_frequency": 2239 + }, + { + "word": "suolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soil;ground", + "romanization": "suolo", + "example_sentence_native": "Il contadino ha preparato il suolo per la semina.", + "example_sentence_english": "The farmer prepared the soil for sowing.", + "pos": "noun", + "word_frequency": 2240 + }, + { + "word": "umanità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanity", + "romanization": "umanità", + "example_sentence_native": "Dobbiamo lavorare insieme per il bene dell'umanità.", + "example_sentence_english": "We must work together for the good of humanity.", + "pos": "noun", + "word_frequency": 2241 + }, + { + "word": "universale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "universal", + "romanization": "universale", + "example_sentence_native": "La musica è un linguaggio universale.", + "example_sentence_english": "Music is a universal language.", + "pos": "adjective", + "word_frequency": 2242 + }, + { + "word": "affitto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rent", + "romanization": "affitto", + "example_sentence_native": "L'affitto di questo appartamento è molto alto.", + "example_sentence_english": "The rent for this apartment is very high.", + "pos": "noun", + "word_frequency": 2243 + }, + { + "word": "assurdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absurd", + "romanization": "assurdo", + "example_sentence_native": "La sua scusa era completamente assurda.", + "example_sentence_english": "His excuse was completely absurd.", + "pos": "adjective", + "word_frequency": 2246 + }, + { + "word": "basare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to base", + "romanization": "basare", + "example_sentence_native": "Dobbiamo basare le nostre decisioni sui fatti.", + "example_sentence_english": "We must base our decisions on facts.", + "pos": "verb", + "word_frequency": 2247 + }, + { + "word": "calore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heat;warmth", + "romanization": "calore", + "example_sentence_native": "Il calore del sole è piacevole.", + "example_sentence_english": "The warmth of the sun is pleasant.", + "pos": "noun", + "word_frequency": 2248 + }, + { + "word": "cerimonia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceremony", + "romanization": "cerimonia", + "example_sentence_native": "La cerimonia di premiazione si terrà domani.", + "example_sentence_english": "The awards ceremony will be held tomorrow.", + "pos": "noun", + "word_frequency": 2250 + }, + { + "word": "comodo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comfortable;convenient", + "romanization": "comodo", + "example_sentence_native": "Questo divano è molto comodo.", + "example_sentence_english": "This sofa is very comfortable.", + "pos": "adjective", + "word_frequency": 2251 + }, + { + "word": "comportare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entail;to involve", + "romanization": "comportare", + "example_sentence_native": "Questa decisione potrebbe comportare gravi conseguenze.", + "example_sentence_english": "This decision could entail serious consequences.", + "pos": "verb", + "word_frequency": 2252 + }, + { + "word": "contemporaneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneously;at the same time", + "romanization": "contemporaneamente", + "example_sentence_native": "Hanno parlato contemporaneamente, rendendo difficile capire.", + "example_sentence_english": "They spoke simultaneously, making it difficult to understand.", + "pos": "adverb", + "word_frequency": 2253 + }, + { + "word": "costituire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to constitute;to form", + "romanization": "costituire", + "example_sentence_native": "Queste regole costituiscono la base del nostro accordo.", + "example_sentence_english": "These rules constitute the basis of our agreement.", + "pos": "verb", + "word_frequency": 2254 + }, + { + "word": "disciplina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discipline;subject", + "romanization": "disciplina", + "example_sentence_native": "La disciplina è importante per raggiungere i tuoi obiettivi.", + "example_sentence_english": "Discipline is important to achieve your goals.", + "pos": "noun", + "word_frequency": 2256 + }, + { + "word": "federale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federal", + "romanization": "federale", + "example_sentence_native": "Il governo federale ha annunciato nuove misure.", + "example_sentence_english": "The federal government announced new measures.", + "pos": "adjective", + "word_frequency": 2257 + }, + { + "word": "finanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finance", + "romanization": "finanza", + "example_sentence_native": "Ha studiato finanza all'università.", + "example_sentence_english": "He studied finance at university.", + "pos": "noun", + "word_frequency": 2259 + }, + { + "word": "formare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to form;to shape", + "romanization": "formare", + "example_sentence_native": "L'esperienza aiuta a formare il carattere.", + "example_sentence_english": "Experience helps to form character.", + "pos": "verb", + "word_frequency": 2260 + }, + { + "word": "infanzia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "childhood", + "romanization": "infanzia", + "example_sentence_native": "Ha trascorso la sua infanzia in campagna.", + "example_sentence_english": "He spent his childhood in the countryside.", + "pos": "noun", + "word_frequency": 2263 + }, + { + "word": "mentale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mental", + "romanization": "mentale", + "example_sentence_native": "La salute mentale è importante quanto quella fisica.", + "example_sentence_english": "Mental health is as important as physical health.", + "pos": "adjective", + "word_frequency": 2266 + }, + { + "word": "mostrato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shown;displayed", + "romanization": "mostrato", + "example_sentence_native": "Mi ha mostrato le sue foto di viaggio.", + "example_sentence_english": "He showed me his travel photos.", + "pos": "", + "word_frequency": 2268 + }, + { + "word": "occupato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "busy;occupied", + "romanization": "occupato", + "example_sentence_native": "Sono troppo occupato per uscire stasera.", + "example_sentence_english": "I'm too busy to go out tonight.", + "pos": "adjective", + "word_frequency": 2270 + }, + { + "word": "padrone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owner;master;landlord", + "romanization": "padrone", + "example_sentence_native": "Il padrone del cane è molto gentile.", + "example_sentence_english": "The dog's owner is very kind.", + "pos": "noun", + "word_frequency": 2271 + }, + { + "word": "peraltro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moreover;furthermore;incidentally", + "romanization": "peraltro", + "example_sentence_native": "È un ottimo libro, peraltro molto ben scritto.", + "example_sentence_english": "It's an excellent book, moreover very well written.", + "pos": "adverb", + "word_frequency": 2272 + }, + { + "word": "preparare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to prepare", + "romanization": "preparare", + "example_sentence_native": "Devo preparare la cena.", + "example_sentence_english": "I need to prepare dinner.", + "pos": "verb", + "word_frequency": 2273 + }, + { + "word": "promessa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promise", + "romanization": "promessa", + "example_sentence_native": "Ha mantenuto la sua promessa.", + "example_sentence_english": "He kept his promise.", + "pos": "noun", + "word_frequency": 2274 + }, + { + "word": "promettere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to promise", + "romanization": "promettere", + "example_sentence_native": "Ti prometto che sarò lì in tempo.", + "example_sentence_english": "I promise you I'll be there on time.", + "pos": "verb", + "word_frequency": 2275 + }, + { + "word": "revisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revision;review;overhaul", + "romanization": "revisione", + "example_sentence_native": "Dobbiamo fare una revisione del documento.", + "example_sentence_english": "We need to do a revision of the document.", + "pos": "noun", + "word_frequency": 2277 + }, + { + "word": "scherzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joke;prank", + "romanization": "scherzo", + "example_sentence_native": "Era solo uno scherzo, non prendertela.", + "example_sentence_english": "It was just a joke, don't take it personally.", + "pos": "noun", + "word_frequency": 2278 + }, + { + "word": "server", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "server", + "romanization": "server", + "example_sentence_native": "Il server è andato in crash.", + "example_sentence_english": "The server crashed.", + "pos": "noun", + "word_frequency": 2279 + }, + { + "word": "sinceramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincerely", + "romanization": "sinceramente", + "example_sentence_native": "Ti dico sinceramente che non so cosa fare.", + "example_sentence_english": "I sincerely tell you that I don't know what to do.", + "pos": "adverb", + "word_frequency": 2280 + }, + { + "word": "specchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mirror", + "romanization": "specchio", + "example_sentence_native": "Si guardò allo specchio prima di uscire.", + "example_sentence_english": "She looked in the mirror before going out.", + "pos": "noun", + "word_frequency": 2281 + }, + { + "word": "stabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable", + "romanization": "stabile", + "example_sentence_native": "La situazione economica è rimasta stabile.", + "example_sentence_english": "The economic situation remained stable.", + "pos": "adjective", + "word_frequency": 2283 + }, + { + "word": "stabilire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to establish", + "romanization": "stabilire", + "example_sentence_native": "Dobbiamo stabilire nuove regole.", + "example_sentence_english": "We need to establish new rules.", + "pos": "verb", + "word_frequency": 2284 + }, + { + "word": "stupido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stupid", + "romanization": "stupido", + "example_sentence_native": "Non fare commenti stupidi.", + "example_sentence_english": "Don't make stupid comments.", + "pos": "adjective", + "word_frequency": 2285 + }, + { + "word": "suonare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to play (an instrument);to ring (a bell)", + "romanization": "suonare", + "example_sentence_native": "Mi piace suonare la chitarra.", + "example_sentence_english": "I like to play the guitar.", + "pos": "verb", + "word_frequency": 2286 + }, + { + "word": "svolgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry out;to perform", + "romanization": "svolgere", + "example_sentence_native": "L'azienda svolge attività di ricerca e sviluppo.", + "example_sentence_english": "The company carries out research and development activities.", + "pos": "verb", + "word_frequency": 2287 + }, + { + "word": "turista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tourist", + "romanization": "turista", + "example_sentence_native": "Molti turisti visitano Roma ogni anno.", + "example_sentence_english": "Many tourists visit Rome every year.", + "pos": "noun", + "word_frequency": 2289 + }, + { + "word": "vetro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glass", + "romanization": "vetro", + "example_sentence_native": "Il bicchiere è fatto di vetro.", + "example_sentence_english": "The glass is made of glass.", + "pos": "noun", + "word_frequency": 2290 + }, + { + "word": "violazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violation", + "romanization": "violazione", + "example_sentence_native": "Questa è una chiara violazione delle regole.", + "example_sentence_english": "This is a clear violation of the rules.", + "pos": "noun", + "word_frequency": 2291 + }, + { + "word": "allarme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alarm", + "romanization": "allarme", + "example_sentence_native": "L'allarme è suonato nel cuore della notte.", + "example_sentence_english": "The alarm rang in the middle of the night.", + "pos": "noun", + "word_frequency": 2292 + }, + { + "word": "approvazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approval", + "romanization": "approvazione", + "example_sentence_native": "Il progetto ha ricevuto l'approvazione del consiglio.", + "example_sentence_english": "The project received the council's approval.", + "pos": "noun", + "word_frequency": 2293 + }, + { + "word": "benedetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blessed", + "romanization": "benedetto", + "example_sentence_native": "È un giorno benedetto per tutti noi.", + "example_sentence_english": "It's a blessed day for all of us.", + "pos": "adjective", + "word_frequency": 2294 + }, + { + "word": "circolazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circulation", + "romanization": "circolazione", + "example_sentence_native": "Il traffico è in circolazione lenta.", + "example_sentence_english": "Traffic is in slow circulation.", + "pos": "noun", + "word_frequency": 2296 + }, + { + "word": "circostanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circumstance", + "romanization": "circostanza", + "example_sentence_native": "In queste circostanze, è difficile decidere.", + "example_sentence_english": "In these circumstances, it's difficult to decide.", + "pos": "noun", + "word_frequency": 2297 + }, + { + "word": "cognome", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surname;last name", + "romanization": "cognome", + "example_sentence_native": "Qual è il tuo cognome?", + "example_sentence_english": "What is your last name?", + "pos": "noun", + "word_frequency": 2298 + }, + { + "word": "concorrenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competition", + "romanization": "concorrenza", + "example_sentence_native": "La concorrenza nel mercato è molto forte.", + "example_sentence_english": "Competition in the market is very strong.", + "pos": "noun", + "word_frequency": 2299 + }, + { + "word": "consapevolezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awareness", + "romanization": "consapevolezza", + "example_sentence_native": "È importante avere consapevolezza dei propri limiti.", + "example_sentence_english": "It's important to have awareness of one's limits.", + "pos": "noun", + "word_frequency": 2300 + }, + { + "word": "consigliere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advisor;counselor", + "romanization": "consigliere", + "example_sentence_native": "Il consigliere ha dato un ottimo suggerimento.", + "example_sentence_english": "The advisor gave an excellent suggestion.", + "pos": "noun", + "word_frequency": 2301 + }, + { + "word": "convenire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to agree;to be convenient", + "romanization": "convenire", + "example_sentence_native": "Ci conviene partire presto per evitare il traffico.", + "example_sentence_english": "It's convenient for us to leave early to avoid traffic.", + "pos": "verb", + "word_frequency": 2302 + }, + { + "word": "definitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "definitive;final", + "romanization": "definitivo", + "example_sentence_native": "Questa è la decisione definitiva.", + "example_sentence_english": "This is the definitive decision.", + "pos": "adjective", + "word_frequency": 2303 + }, + { + "word": "descritto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "described", + "romanization": "descritto", + "example_sentence_native": "Il paesaggio descritto nel libro è bellissimo.", + "example_sentence_english": "The landscape described in the book is beautiful.", + "pos": "adjective", + "word_frequency": 2306 + }, + { + "word": "diavolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devil", + "romanization": "diavolo", + "example_sentence_native": "Che diavolo stai facendo?", + "example_sentence_english": "What the devil are you doing?", + "pos": "noun", + "word_frequency": 2307 + }, + { + "word": "disagio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discomfort;unease", + "romanization": "disagio", + "example_sentence_native": "Ho provato un certo disagio durante la riunione.", + "example_sentence_english": "I felt some discomfort during the meeting.", + "pos": "noun", + "word_frequency": 2308 + }, + { + "word": "distruzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destruction", + "romanization": "distruzione", + "example_sentence_native": "La distruzione dell'ambiente è una preoccupazione globale.", + "example_sentence_english": "Environmental destruction is a global concern.", + "pos": "noun", + "word_frequency": 2309 + }, + { + "word": "fantasia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy;imagination", + "romanization": "fantasia", + "example_sentence_native": "Ha una grande fantasia.", + "example_sentence_english": "He has a great imagination.", + "pos": "noun", + "word_frequency": 2311 + }, + { + "word": "free", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "free", + "romanization": "free", + "example_sentence_native": "L'ingresso è free.", + "example_sentence_english": "Admission is free.", + "pos": "adjective", + "word_frequency": 2312 + }, + { + "word": "individuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individual", + "romanization": "individuale", + "example_sentence_native": "Ogni studente ha un percorso individuale.", + "example_sentence_english": "Each student has an individual path.", + "pos": "adjective", + "word_frequency": 2313 + }, + { + "word": "mercoledì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Wednesday", + "romanization": "mercoledì", + "example_sentence_native": "Ci vediamo mercoledì prossimo.", + "example_sentence_english": "See you next Wednesday.", + "pos": "noun", + "word_frequency": 2314 + }, + { + "word": "meta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goal;destination", + "romanization": "meta", + "example_sentence_native": "La nostra meta è raggiungere la cima della montagna.", + "example_sentence_english": "Our goal is to reach the top of the mountain.", + "pos": "noun", + "word_frequency": 2315 + }, + { + "word": "olimpiade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympiad;Olympic Games", + "romanization": "olimpiade", + "example_sentence_native": "Le prossime Olimpiadi si terranno a Parigi.", + "example_sentence_english": "The next Olympic Games will be held in Paris.", + "pos": "noun", + "word_frequency": 2317 + }, + { + "word": "pero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pear tree", + "romanization": "pero", + "example_sentence_native": "C'è un vecchio pero nel giardino.", + "example_sentence_english": "There's an old pear tree in the garden.", + "pos": "noun", + "word_frequency": 2318 + }, + { + "word": "procuratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosecutor;attorney;proxy", + "romanization": "procuratore", + "example_sentence_native": "Il procuratore ha presentato le prove in tribunale.", + "example_sentence_english": "The prosecutor presented the evidence in court.", + "pos": "noun", + "word_frequency": 2319 + }, + { + "word": "profondamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deeply", + "romanization": "profondamente", + "example_sentence_native": "Sono profondamente grato per il tuo aiuto.", + "example_sentence_english": "I am deeply grateful for your help.", + "pos": "adverb", + "word_frequency": 2320 + }, + { + "word": "raggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ray;radius", + "romanization": "raggio", + "example_sentence_native": "Un raggio di sole illuminava la stanza.", + "example_sentence_english": "A ray of sunshine lit up the room.", + "pos": "noun", + "word_frequency": 2321 + }, + { + "word": "riflessione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection;thought", + "romanization": "riflessione", + "example_sentence_native": "Dopo un'attenta riflessione, ho preso la mia decisione.", + "example_sentence_english": "After careful reflection, I made my decision.", + "pos": "noun", + "word_frequency": 2323 + }, + { + "word": "scontro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clash;collision;confrontation", + "romanization": "scontro", + "example_sentence_native": "Ci fu uno scontro tra le due squadre.", + "example_sentence_english": "There was a clash between the two teams.", + "pos": "noun", + "word_frequency": 2324 + }, + { + "word": "solare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "solar;sunny", + "romanization": "solare", + "example_sentence_native": "L'energia solare è una fonte rinnovabile.", + "example_sentence_english": "Solar energy is a renewable source.", + "pos": "adjective", + "word_frequency": 2325 + }, + { + "word": "sospetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspicion;suspect", + "romanization": "sospetto", + "example_sentence_native": "La polizia aveva un sospetto sul suo conto.", + "example_sentence_english": "The police had a suspicion about him.", + "pos": "noun", + "word_frequency": 2326 + }, + { + "word": "spada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sword", + "romanization": "spada", + "example_sentence_native": "Il cavaliere estrasse la sua spada.", + "example_sentence_english": "The knight drew his sword.", + "pos": "noun", + "word_frequency": 2327 + }, + { + "word": "ammettere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admit;to allow", + "romanization": "ammettere", + "example_sentence_native": "Devo ammettere che hai ragione.", + "example_sentence_english": "I must admit that you are right.", + "pos": "verb", + "word_frequency": 2330 + }, + { + "word": "anticipo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advance;down payment", + "romanization": "anticipo", + "example_sentence_native": "Siamo arrivati in anticipo all'appuntamento.", + "example_sentence_english": "We arrived in advance for the appointment.", + "pos": "noun", + "word_frequency": 2331 + }, + { + "word": "ascolto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "listening;hearing", + "romanization": "ascolto", + "example_sentence_native": "L'ascolto attivo è importante per la comunicazione.", + "example_sentence_english": "Active listening is important for communication.", + "pos": "noun", + "word_frequency": 2332 + }, + { + "word": "autorizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authorization;permission", + "romanization": "autorizzazione", + "example_sentence_native": "È necessaria un'autorizzazione per entrare.", + "example_sentence_english": "Authorization is required to enter.", + "pos": "noun", + "word_frequency": 2333 + }, + { + "word": "bacio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kiss", + "romanization": "bacio", + "example_sentence_native": "Le diede un bacio sulla guancia.", + "example_sentence_english": "He gave her a kiss on the cheek.", + "pos": "noun", + "word_frequency": 2334 + }, + { + "word": "ballo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dance;ball", + "romanization": "ballo", + "example_sentence_native": "Andiamo a un ballo stasera.", + "example_sentence_english": "Let's go to a dance tonight.", + "pos": "noun", + "word_frequency": 2335 + }, + { + "word": "bruno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brown (as a color or person with brown hair;eyes)", + "romanization": "bruno", + "example_sentence_native": "Ha i capelli bruni.", + "example_sentence_english": "She has brown hair.", + "pos": "noun", + "word_frequency": 2336 + }, + { + "word": "coinvolgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to involve;to engage", + "romanization": "coinvolgere", + "example_sentence_native": "Dobbiamo coinvolgere più persone nel progetto.", + "example_sentence_english": "We need to involve more people in the project.", + "pos": "verb", + "word_frequency": 2337 + }, + { + "word": "collegio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "college;boarding school;board (of directors)", + "romanization": "collegio", + "example_sentence_native": "Ha studiato in un collegio prestigioso.", + "example_sentence_english": "He studied at a prestigious boarding school.", + "pos": "noun", + "word_frequency": 2338 + }, + { + "word": "comunicare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to communicate", + "romanization": "comunicare", + "example_sentence_native": "È importante comunicare chiaramente.", + "example_sentence_english": "It is important to communicate clearly.", + "pos": "verb", + "word_frequency": 2339 + }, + { + "word": "conservazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservation;preservation", + "romanization": "conservazione", + "example_sentence_native": "La conservazione dell'ambiente è fondamentale.", + "example_sentence_english": "Environmental conservation is fundamental.", + "pos": "noun", + "word_frequency": 2340 + }, + { + "word": "costantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constantly", + "romanization": "costantemente", + "example_sentence_native": "Lavora costantemente per migliorare.", + "example_sentence_english": "He works constantly to improve.", + "pos": "adverb", + "word_frequency": 2341 + }, + { + "word": "evidenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evidence;prominence", + "romanization": "evidenza", + "example_sentence_native": "Non c'è alcuna evidenza a sostegno della sua tesi.", + "example_sentence_english": "There is no evidence to support his thesis.", + "pos": "noun", + "word_frequency": 2343 + }, + { + "word": "fascista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascist", + "romanization": "fascista", + "example_sentence_native": "Il regime fascista governò l'Italia per molti anni.", + "example_sentence_english": "The fascist regime governed Italy for many years.", + "pos": "adjective", + "word_frequency": 2344 + }, + { + "word": "fondare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to found;to establish", + "romanization": "fondare", + "example_sentence_native": "Hanno fondato una nuova azienda.", + "example_sentence_english": "They founded a new company.", + "pos": "verb", + "word_frequency": 2345 + }, + { + "word": "ghiaccio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ice", + "romanization": "ghiaccio", + "example_sentence_native": "Vorrei un bicchiere d'acqua con ghiaccio.", + "example_sentence_english": "I would like a glass of water with ice.", + "pos": "noun", + "word_frequency": 2346 + }, + { + "word": "immigrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immigration", + "romanization": "immigrazione", + "example_sentence_native": "L'immigrazione è un tema importante nel dibattito politico.", + "example_sentence_english": "Immigration is an important topic in the political debate.", + "pos": "noun", + "word_frequency": 2348 + }, + { + "word": "magia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magic", + "romanization": "magia", + "example_sentence_native": "I bambini amano la magia.", + "example_sentence_english": "Children love magic.", + "pos": "noun", + "word_frequency": 2350 + }, + { + "word": "mistero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mystery", + "romanization": "mistero", + "example_sentence_native": "Il caso è avvolto nel mistero.", + "example_sentence_english": "The case is shrouded in mystery.", + "pos": "noun", + "word_frequency": 2351 + }, + { + "word": "nucleare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuclear", + "romanization": "nucleare", + "example_sentence_native": "L'energia nucleare è una fonte di energia controversa.", + "example_sentence_english": "Nuclear energy is a controversial energy source.", + "pos": "adjective", + "word_frequency": 2352 + }, + { + "word": "opzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "option", + "romanization": "opzione", + "example_sentence_native": "Abbiamo diverse opzioni tra cui scegliere.", + "example_sentence_english": "We have several options to choose from.", + "pos": "noun", + "word_frequency": 2353 + }, + { + "word": "protesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protest", + "romanization": "protesta", + "example_sentence_native": "Hanno organizzato una protesta contro le nuove leggi.", + "example_sentence_english": "They organized a protest against the new laws.", + "pos": "noun", + "word_frequency": 2355 + }, + { + "word": "quinto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifth", + "romanization": "quinto", + "example_sentence_native": "È il quinto giorno della settimana.", + "example_sentence_english": "It's the fifth day of the week.", + "pos": "adjective", + "word_frequency": 2357 + }, + { + "word": "recupero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recovery;retrieval", + "romanization": "recupero", + "example_sentence_native": "Il paziente è in fase di recupero.", + "example_sentence_english": "The patient is in the recovery phase.", + "pos": "noun", + "word_frequency": 2359 + }, + { + "word": "ridicolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ridiculous", + "romanization": "ridicolo", + "example_sentence_native": "Il suo comportamento era ridicolo.", + "example_sentence_english": "His behavior was ridiculous.", + "pos": "adjective", + "word_frequency": 2360 + }, + { + "word": "riposo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rest", + "romanization": "riposo", + "example_sentence_native": "Ho bisogno di un po' di riposo.", + "example_sentence_english": "I need some rest.", + "pos": "noun", + "word_frequency": 2361 + }, + { + "word": "riprendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resume;to take back", + "romanization": "riprendere", + "example_sentence_native": "Dobbiamo riprendere il lavoro domani.", + "example_sentence_english": "We need to resume work tomorrow.", + "pos": "verb", + "word_frequency": 2362 + }, + { + "word": "saggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essay;wise person", + "romanization": "saggio", + "example_sentence_native": "Ho scritto un saggio sulla storia romana.", + "example_sentence_english": "I wrote an essay on Roman history.", + "pos": "noun", + "word_frequency": 2364 + }, + { + "word": "sconfitta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeat", + "romanization": "sconfitta", + "example_sentence_native": "La sconfitta è stata difficile da accettare.", + "example_sentence_english": "The defeat was hard to accept.", + "pos": "noun", + "word_frequency": 2365 + }, + { + "word": "seno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breast;bosom", + "romanization": "seno", + "example_sentence_native": "Il bambino si addormentò sul seno della madre.", + "example_sentence_english": "The baby fell asleep on his mother's breast.", + "pos": "noun", + "word_frequency": 2366 + }, + { + "word": "smartphone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smartphone", + "romanization": "smartphone", + "example_sentence_native": "Ho comprato un nuovo smartphone.", + "example_sentence_english": "I bought a new smartphone.", + "pos": "noun", + "word_frequency": 2367 + }, + { + "word": "stavolta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "this time", + "romanization": "stavolta", + "example_sentence_native": "Stavolta andrà meglio.", + "example_sentence_english": "This time it will go better.", + "pos": "adverb", + "word_frequency": 2368 + }, + { + "word": "straordinario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraordinary", + "romanization": "straordinario", + "example_sentence_native": "Ha fatto un lavoro straordinario.", + "example_sentence_english": "He did an extraordinary job.", + "pos": "adjective", + "word_frequency": 2369 + }, + { + "word": "suicidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suicide", + "romanization": "suicidio", + "example_sentence_native": "Il suicidio è un problema serio.", + "example_sentence_english": "Suicide is a serious problem.", + "pos": "noun", + "word_frequency": 2370 + }, + { + "word": "tentare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to try;to attempt", + "romanization": "tentare", + "example_sentence_native": "Dobbiamo tentare di nuovo.", + "example_sentence_english": "We must try again.", + "pos": "verb", + "word_frequency": 2371 + }, + { + "word": "testimone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witness", + "romanization": "testimone", + "example_sentence_native": "Il testimone ha raccontato la sua versione dei fatti.", + "example_sentence_english": "The witness told his version of events.", + "pos": "noun", + "word_frequency": 2372 + }, + { + "word": "torta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cake", + "romanization": "torta", + "example_sentence_native": "Ho mangiato una fetta di torta.", + "example_sentence_english": "I ate a slice of cake.", + "pos": "noun", + "word_frequency": 2373 + }, + { + "word": "trasformazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformation", + "romanization": "trasformazione", + "example_sentence_native": "La città ha subito una grande trasformazione.", + "example_sentence_english": "The city underwent a great transformation.", + "pos": "noun", + "word_frequency": 2374 + }, + { + "word": "viaggiare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to travel", + "romanization": "viaggiare", + "example_sentence_native": "Mi piace viaggiare in treno.", + "example_sentence_english": "I like to travel by train.", + "pos": "verb", + "word_frequency": 2375 + }, + { + "word": "acquistare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to purchase;to acquire", + "romanization": "acquistare", + "example_sentence_native": "Vorrei acquistare un nuovo libro.", + "example_sentence_english": "I would like to purchase a new book.", + "pos": "verb", + "word_frequency": 2377 + }, + { + "word": "anello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ring", + "romanization": "anello", + "example_sentence_native": "Ha un bellissimo anello al dito.", + "example_sentence_english": "She has a beautiful ring on her finger.", + "pos": "noun", + "word_frequency": 2380 + }, + { + "word": "annuale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annual", + "romanization": "annuale", + "example_sentence_native": "La riunione annuale si terrà a maggio.", + "example_sentence_english": "The annual meeting will be held in May.", + "pos": "adjective", + "word_frequency": 2381 + }, + { + "word": "attento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "careful;attentive", + "romanization": "attento", + "example_sentence_native": "Sii attento quando attraversi la strada.", + "example_sentence_english": "Be careful when you cross the street.", + "pos": "adjective", + "word_frequency": 2382 + }, + { + "word": "beneficio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "benefit", + "romanization": "beneficio", + "example_sentence_native": "Questo progetto porterà molti benefici.", + "example_sentence_english": "This project will bring many benefits.", + "pos": "noun", + "word_frequency": 2383 + }, + { + "word": "benessere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-being", + "romanization": "benessere", + "example_sentence_native": "Il suo benessere è la mia priorità.", + "example_sentence_english": "Her well-being is my priority.", + "pos": "noun", + "word_frequency": 2384 + }, + { + "word": "cavolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cabbage", + "romanization": "cavolo", + "example_sentence_native": "Non mi piace il cavolo.", + "example_sentence_english": "I don't like cabbage.", + "pos": "noun", + "word_frequency": 2386 + }, + { + "word": "celebre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "famous;celebrated", + "romanization": "celebre", + "example_sentence_native": "È un artista molto celebre.", + "example_sentence_english": "He is a very famous artist.", + "pos": "adjective", + "word_frequency": 2388 + }, + { + "word": "colpevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guilty", + "romanization": "colpevole", + "example_sentence_native": "È stato dichiarato colpevole del crimine.", + "example_sentence_english": "He was declared guilty of the crime.", + "pos": "adjective", + "word_frequency": 2389 + }, + { + "word": "compreso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included;understood", + "romanization": "compreso", + "example_sentence_native": "Il prezzo compreso di tasse.", + "example_sentence_english": "The price including taxes.", + "pos": "adjective", + "word_frequency": 2390 + }, + { + "word": "concessione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concession", + "romanization": "concessione", + "example_sentence_native": "Hanno fatto una concessione per raggiungere un accordo.", + "example_sentence_english": "They made a concession to reach an agreement.", + "pos": "noun", + "word_frequency": 2391 + }, + { + "word": "considerato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considered", + "romanization": "considerato", + "example_sentence_native": "È considerato un esperto nel suo campo.", + "example_sentence_english": "He is considered an expert in his field.", + "pos": "adjective", + "word_frequency": 2392 + }, + { + "word": "corona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crown", + "romanization": "corona", + "example_sentence_native": "La regina indossava una corona d'oro.", + "example_sentence_english": "The queen wore a golden crown.", + "pos": "noun", + "word_frequency": 2393 + }, + { + "word": "criterio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criterion", + "romanization": "criterio", + "example_sentence_native": "Qual è il criterio per la selezione?", + "example_sentence_english": "What is the criterion for selection?", + "pos": "noun", + "word_frequency": 2394 + }, + { + "word": "eroe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hero", + "romanization": "eroe", + "example_sentence_native": "È un vero eroe per la sua comunità.", + "example_sentence_english": "He is a true hero for his community.", + "pos": "noun", + "word_frequency": 2396 + }, + { + "word": "esposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibition;exposure", + "romanization": "esposizione", + "example_sentence_native": "C'è una nuova esposizione d'arte in città.", + "example_sentence_english": "There's a new art exhibition in town.", + "pos": "noun", + "word_frequency": 2397 + }, + { + "word": "extra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extra", + "romanization": "extra", + "example_sentence_native": "Ho bisogno di tempo extra per finire.", + "example_sentence_english": "I need extra time to finish.", + "pos": "adjective", + "word_frequency": 2398 + }, + { + "word": "fidanzato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boyfriend;fiancé", + "romanization": "fidanzato", + "example_sentence_native": "Il mio fidanzato mi ha regalato dei fiori.", + "example_sentence_english": "My boyfriend gave me flowers.", + "pos": "noun", + "word_frequency": 2399 + }, + { + "word": "fondato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founded", + "romanization": "fondato", + "example_sentence_native": "La sua accusa era fondata su prove solide.", + "example_sentence_english": "His accusation was founded on solid evidence.", + "pos": "adjective", + "word_frequency": 2400 + }, + { + "word": "fornito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "supplied", + "romanization": "fornito", + "example_sentence_native": "L'hotel è ben fornito di tutti i comfort.", + "example_sentence_english": "The hotel is well supplied with all comforts.", + "pos": "adjective", + "word_frequency": 2401 + }, + { + "word": "frequenza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frequency", + "romanization": "frequenza", + "example_sentence_native": "La frequenza delle lezioni è di due volte a settimana.", + "example_sentence_english": "The frequency of lessons is twice a week.", + "pos": "noun", + "word_frequency": 2402 + }, + { + "word": "frutta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fruit", + "romanization": "frutta", + "example_sentence_native": "Mi piace mangiare frutta fresca ogni giorno.", + "example_sentence_english": "I like to eat fresh fruit every day.", + "pos": "noun", + "word_frequency": 2403 + }, + { + "word": "guadagnare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to earn", + "romanization": "guadagnare", + "example_sentence_native": "Voglio guadagnare abbastanza soldi per viaggiare.", + "example_sentence_english": "I want to earn enough money to travel.", + "pos": "verb", + "word_frequency": 2405 + }, + { + "word": "insegnare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to teach", + "romanization": "insegnare", + "example_sentence_native": "Lei insegna italiano ai bambini.", + "example_sentence_english": "She teaches Italian to children.", + "pos": "verb", + "word_frequency": 2406 + }, + { + "word": "iscrizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registration", + "romanization": "iscrizione", + "example_sentence_native": "La data limite per l'iscrizione è il 30 settembre.", + "example_sentence_english": "The deadline for registration is September 30th.", + "pos": "noun", + "word_frequency": 2407 + }, + { + "word": "lanciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to launch", + "romanization": "lanciare", + "example_sentence_native": "Hanno lanciato un nuovo prodotto sul mercato.", + "example_sentence_english": "They launched a new product on the market.", + "pos": "verb", + "word_frequency": 2408 + }, + { + "word": "liberazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberation", + "romanization": "liberazione", + "example_sentence_native": "Il giorno della liberazione è una festa nazionale.", + "example_sentence_english": "Liberation Day is a national holiday.", + "pos": "noun", + "word_frequency": 2409 + }, + { + "word": "limitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limited", + "romanization": "limitato", + "example_sentence_native": "Abbiamo un numero limitato di posti disponibili.", + "example_sentence_english": "We have a limited number of places available.", + "pos": "adjective", + "word_frequency": 2411 + }, + { + "word": "mediterraneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mediterranean", + "romanization": "mediterraneo", + "example_sentence_native": "Il clima mediterraneo è mite e soleggiato.", + "example_sentence_english": "The Mediterranean climate is mild and sunny.", + "pos": "adjective", + "word_frequency": 2412 + }, + { + "word": "meraviglioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wonderful", + "romanization": "meraviglioso", + "example_sentence_native": "Che giornata meravigliosa abbiamo avuto!", + "example_sentence_english": "What a wonderful day we had!", + "pos": "adjective", + "word_frequency": 2413 + }, + { + "word": "miglioramento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvement", + "romanization": "miglioramento", + "example_sentence_native": "C'è stato un significativo miglioramento nella sua salute.", + "example_sentence_english": "There has been a significant improvement in his health.", + "pos": "noun", + "word_frequency": 2414 + }, + { + "word": "nascosto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hidden", + "romanization": "nascosto", + "example_sentence_native": "Il tesoro era nascosto sotto un albero.", + "example_sentence_english": "The treasure was hidden under a tree.", + "pos": "adjective", + "word_frequency": 2415 + }, + { + "word": "normalmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "normally", + "romanization": "normalmente", + "example_sentence_native": "Normalmente, vado a letto presto.", + "example_sentence_english": "Normally, I go to bed early.", + "pos": "adverb", + "word_frequency": 2416 + }, + { + "word": "precedenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precedence", + "romanization": "precedenza", + "example_sentence_native": "Dare la precedenza ai pedoni.", + "example_sentence_english": "Give precedence to pedestrians.", + "pos": "noun", + "word_frequency": 2417 + }, + { + "word": "premier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prime minister", + "romanization": "premier", + "example_sentence_native": "Il premier ha annunciato nuove misure economiche.", + "example_sentence_english": "The prime minister announced new economic measures.", + "pos": "noun", + "word_frequency": 2418 + }, + { + "word": "preparato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "prepared", + "romanization": "preparato", + "example_sentence_native": "Sono ben preparato per l'esame.", + "example_sentence_english": "I am well prepared for the exam.", + "pos": "adjective", + "word_frequency": 2419 + }, + { + "word": "priorità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priority", + "romanization": "priorità", + "example_sentence_native": "La sicurezza è la nostra massima priorità.", + "example_sentence_english": "Safety is our top priority.", + "pos": "noun", + "word_frequency": 2420 + }, + { + "word": "produttore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "producer", + "romanization": "produttore", + "example_sentence_native": "Questo è un produttore di automobili molto famoso.", + "example_sentence_english": "This is a very famous car producer.", + "pos": "noun", + "word_frequency": 2421 + }, + { + "word": "provvedimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measure", + "romanization": "provvedimento", + "example_sentence_native": "Il governo ha adottato un nuovo provvedimento per l'ambiente.", + "example_sentence_english": "The government adopted a new measure for the environment.", + "pos": "noun", + "word_frequency": 2422 + }, + { + "word": "realizzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "realized", + "romanization": "realizzato", + "example_sentence_native": "Il progetto è stato realizzato con successo.", + "example_sentence_english": "The project was successfully realized.", + "pos": "adjective", + "word_frequency": 2423 + }, + { + "word": "robot", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "robot", + "romanization": "robot", + "example_sentence_native": "I robot stanno diventando sempre più comuni nell'industria.", + "example_sentence_english": "Robots are becoming increasingly common in industry.", + "pos": "noun", + "word_frequency": 2424 + }, + { + "word": "rotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "route", + "romanization": "rotta", + "example_sentence_native": "La nave ha cambiato rotta a causa della tempesta.", + "example_sentence_english": "The ship changed route due to the storm.", + "pos": "noun", + "word_frequency": 2425 + }, + { + "word": "sapore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taste", + "romanization": "sapore", + "example_sentence_native": "Questo piatto ha un sapore delizioso.", + "example_sentence_english": "This dish has a delicious taste.", + "pos": "noun", + "word_frequency": 2427 + }, + { + "word": "scappare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to escape", + "romanization": "scappare", + "example_sentence_native": "Il gatto è scappato dalla finestra.", + "example_sentence_english": "The cat escaped from the window.", + "pos": "verb", + "word_frequency": 2428 + }, + { + "word": "scheda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "card", + "romanization": "scheda", + "example_sentence_native": "Compila la scheda di iscrizione.", + "example_sentence_english": "Fill out the registration card.", + "pos": "noun", + "word_frequency": 2429 + }, + { + "word": "schiena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "back", + "romanization": "schiena", + "example_sentence_native": "Mi fa male la schiena dopo aver sollevato quel peso.", + "example_sentence_english": "My back hurts after lifting that weight.", + "pos": "noun", + "word_frequency": 2430 + }, + { + "word": "stipendio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salary", + "romanization": "stipendio", + "example_sentence_native": "Il mio stipendio è stato aumentato quest'anno.", + "example_sentence_english": "My salary was increased this year.", + "pos": "noun", + "word_frequency": 2431 + }, + { + "word": "tappa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage", + "romanization": "tappa", + "example_sentence_native": "La prossima tappa del nostro viaggio è Roma.", + "example_sentence_english": "The next stage of our journey is Rome.", + "pos": "noun", + "word_frequency": 2432 + }, + { + "word": "ulteriormente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "further", + "romanization": "ulteriormente", + "example_sentence_native": "Dobbiamo analizzare ulteriormente i dati.", + "example_sentence_english": "We need to further analyze the data.", + "pos": "adverb", + "word_frequency": 2433 + }, + { + "word": "van", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "van", + "romanization": "van", + "example_sentence_native": "Abbiamo noleggiato un van per il trasloco.", + "example_sentence_english": "We rented a van for the move.", + "pos": "noun", + "word_frequency": 2436 + }, + { + "word": "abilità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ability", + "romanization": "abilità", + "example_sentence_native": "Ha una grande abilità nel risolvere problemi.", + "example_sentence_english": "He has great ability in solving problems.", + "pos": "noun", + "word_frequency": 2437 + }, + { + "word": "affetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affection", + "romanization": "affetto", + "example_sentence_native": "Prova un grande affetto per i suoi nipoti.", + "example_sentence_english": "He feels great affection for his grandchildren.", + "pos": "noun", + "word_frequency": 2438 + }, + { + "word": "barca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "boat", + "romanization": "barca", + "example_sentence_native": "Andiamo in barca sul lago.", + "example_sentence_english": "Let's go by boat on the lake.", + "pos": "noun", + "word_frequency": 2439 + }, + { + "word": "basato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "based", + "romanization": "basato", + "example_sentence_native": "Il progetto è basato su nuove ricerche.", + "example_sentence_english": "The project is based on new research.", + "pos": "adjective", + "word_frequency": 2440 + }, + { + "word": "circolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circle;club", + "romanization": "circolo", + "example_sentence_native": "Si sono incontrati al circolo ricreativo.", + "example_sentence_english": "They met at the recreational club.", + "pos": "noun", + "word_frequency": 2441 + }, + { + "word": "costume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "custom;costume;swimsuit", + "romanization": "costume", + "example_sentence_native": "Indossava un costume tradizionale.", + "example_sentence_english": "She was wearing a traditional costume.", + "pos": "noun", + "word_frequency": 2442 + }, + { + "word": "dono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gift;present", + "romanization": "dono", + "example_sentence_native": "Ha ricevuto un bellissimo dono per il suo compleanno.", + "example_sentence_english": "He received a beautiful gift for his birthday.", + "pos": "noun", + "word_frequency": 2443 + }, + { + "word": "elevato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high;elevated", + "romanization": "elevato", + "example_sentence_native": "Il livello di difficoltà è elevato.", + "example_sentence_english": "The difficulty level is high.", + "pos": "adjective", + "word_frequency": 2444 + }, + { + "word": "equilibrio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balance", + "romanization": "equilibrio", + "example_sentence_native": "È importante mantenere l'equilibrio nella vita.", + "example_sentence_english": "It's important to maintain balance in life.", + "pos": "noun", + "word_frequency": 2445 + }, + { + "word": "fastidio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoyance;bother", + "romanization": "fastidio", + "example_sentence_native": "Non voglio darti fastidio.", + "example_sentence_english": "I don't want to bother you.", + "pos": "noun", + "word_frequency": 2446 + }, + { + "word": "fedele", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faithful;loyal", + "romanization": "fedele", + "example_sentence_native": "È un amico molto fedele.", + "example_sentence_english": "He is a very loyal friend.", + "pos": "adjective", + "word_frequency": 2447 + }, + { + "word": "finanziario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financial", + "romanization": "finanziario", + "example_sentence_native": "Hanno problemi finanziari.", + "example_sentence_english": "They have financial problems.", + "pos": "adjective", + "word_frequency": 2448 + }, + { + "word": "giovanile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youthful;juvenile", + "romanization": "giovanile", + "example_sentence_native": "Ha uno spirito molto giovanile.", + "example_sentence_english": "He has a very youthful spirit.", + "pos": "adjective", + "word_frequency": 2449 + }, + { + "word": "gratuito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "free (of charge)", + "romanization": "gratuito", + "example_sentence_native": "L'ingresso al museo è gratuito.", + "example_sentence_english": "Admission to the museum is free.", + "pos": "adjective", + "word_frequency": 2451 + }, + { + "word": "impiegato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "employee;clerk", + "romanization": "impiegato", + "example_sentence_native": "Mio padre è un impiegato di banca.", + "example_sentence_english": "My father is a bank employee.", + "pos": "noun", + "word_frequency": 2452 + }, + { + "word": "modifica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modification;change", + "romanization": "modifica", + "example_sentence_native": "Abbiamo apportato alcune modifiche al piano.", + "example_sentence_english": "We made some modifications to the plan.", + "pos": "noun", + "word_frequency": 2454 + }, + { + "word": "omaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribute;complimentary gift", + "romanization": "omaggio", + "example_sentence_native": "Il libro è un omaggio per i clienti.", + "example_sentence_english": "The book is a complimentary gift for customers.", + "pos": "noun", + "word_frequency": 2455 + }, + { + "word": "palestra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gym", + "romanization": "palestra", + "example_sentence_native": "Vado in palestra tre volte a settimana.", + "example_sentence_english": "I go to the gym three times a week.", + "pos": "noun", + "word_frequency": 2457 + }, + { + "word": "parete", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wall (interior)", + "romanization": "parete", + "example_sentence_native": "La parete è stata appena dipinta.", + "example_sentence_english": "The wall has just been painted.", + "pos": "noun", + "word_frequency": 2458 + }, + { + "word": "poliziotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "policeman", + "romanization": "poliziotto", + "example_sentence_native": "Un poliziotto ha fermato il traffico.", + "example_sentence_english": "A policeman stopped the traffic.", + "pos": "noun", + "word_frequency": 2459 + }, + { + "word": "povertà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poverty", + "romanization": "povertà", + "example_sentence_native": "Molte persone vivono in povertà.", + "example_sentence_english": "Many people live in poverty.", + "pos": "noun", + "word_frequency": 2460 + }, + { + "word": "radice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "root", + "romanization": "radice", + "example_sentence_native": "L'albero ha radici profonde.", + "example_sentence_english": "The tree has deep roots.", + "pos": "noun", + "word_frequency": 2461 + }, + { + "word": "registro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "register;record", + "romanization": "registro", + "example_sentence_native": "Il suo nome è nel registro.", + "example_sentence_english": "His name is in the register.", + "pos": "noun", + "word_frequency": 2462 + }, + { + "word": "regolarmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regularly", + "romanization": "regolarmente", + "example_sentence_native": "Fa esercizio regolarmente.", + "example_sentence_english": "He exercises regularly.", + "pos": "adverb", + "word_frequency": 2463 + }, + { + "word": "rifugio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refuge;shelter", + "romanization": "rifugio", + "example_sentence_native": "Hanno trovato rifugio in montagna.", + "example_sentence_english": "They found refuge in the mountains.", + "pos": "noun", + "word_frequency": 2464 + }, + { + "word": "ritratto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portrait", + "romanization": "ritratto", + "example_sentence_native": "Ha dipinto un bellissimo ritratto.", + "example_sentence_english": "He painted a beautiful portrait.", + "pos": "noun", + "word_frequency": 2465 + }, + { + "word": "sacro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacred;holy", + "romanization": "sacro", + "example_sentence_native": "Questo è un luogo sacro.", + "example_sentence_english": "This is a sacred place.", + "pos": "adjective", + "word_frequency": 2466 + }, + { + "word": "salvato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saved", + "romanization": "salvato", + "example_sentence_native": "I dati sono stati salvati.", + "example_sentence_english": "The data has been saved.", + "pos": "adjective", + "word_frequency": 2467 + }, + { + "word": "sciopero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strike (labor)", + "romanization": "sciopero", + "example_sentence_native": "C'è uno sciopero dei trasporti.", + "example_sentence_english": "There is a transport strike.", + "pos": "noun", + "word_frequency": 2468 + }, + { + "word": "senatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senator", + "romanization": "senatore", + "example_sentence_native": "Il senatore ha votato a favore della legge.", + "example_sentence_english": "The senator voted in favor of the law.", + "pos": "noun", + "word_frequency": 2469 + }, + { + "word": "stomaco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stomach", + "romanization": "stomaco", + "example_sentence_native": "Mi fa male lo stomaco.", + "example_sentence_english": "My stomach hurts.", + "pos": "noun", + "word_frequency": 2470 + }, + { + "word": "sveglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alarm clock;wake-up call", + "romanization": "sveglia", + "example_sentence_native": "Ho messo la sveglia alle sette.", + "example_sentence_english": "I set the alarm for seven.", + "pos": "noun", + "word_frequency": 2471 + }, + { + "word": "sviluppare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to develop", + "romanization": "sviluppare", + "example_sentence_native": "Dobbiamo sviluppare nuove strategie.", + "example_sentence_english": "We need to develop new strategies.", + "pos": "verb", + "word_frequency": 2472 + }, + { + "word": "sviluppato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developed", + "romanization": "sviluppato", + "example_sentence_native": "È un paese molto sviluppato.", + "example_sentence_english": "It is a very developed country.", + "pos": "adjective", + "word_frequency": 2473 + }, + { + "word": "appoggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support;backing", + "romanization": "appoggio", + "example_sentence_native": "Ha bisogno del nostro appoggio.", + "example_sentence_english": "He needs our support.", + "pos": "noun", + "word_frequency": 2474 + }, + { + "word": "archivio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "archive;file", + "romanization": "archivio", + "example_sentence_native": "Ho trovato il documento nell'archivio.", + "example_sentence_english": "I found the document in the archive.", + "pos": "noun", + "word_frequency": 2475 + }, + { + "word": "bus", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bus", + "romanization": "bus", + "example_sentence_native": "Prendo il bus per andare al lavoro.", + "example_sentence_english": "I take the bus to go to work.", + "pos": "noun", + "word_frequency": 2477 + }, + { + "word": "collegamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connection;link", + "romanization": "collegamento", + "example_sentence_native": "C'è un buon collegamento tra le due città.", + "example_sentence_english": "There is a good connection between the two cities.", + "pos": "noun", + "word_frequency": 2479 + }, + { + "word": "commissario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commissioner", + "romanization": "commissario", + "example_sentence_native": "Il commissario ha aperto un'indagine sul caso.", + "example_sentence_english": "The commissioner opened an investigation into the case.", + "pos": "noun", + "word_frequency": 2480 + }, + { + "word": "confusione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "confusion", + "romanization": "confusione", + "example_sentence_native": "C'era molta confusione dopo l'annuncio.", + "example_sentence_english": "There was a lot of confusion after the announcement.", + "pos": "noun", + "word_frequency": 2481 + }, + { + "word": "copertina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover (of a book;magazine)", + "romanization": "copertina", + "example_sentence_native": "La copertina del libro era molto colorata.", + "example_sentence_english": "The book's cover was very colorful.", + "pos": "noun", + "word_frequency": 2482 + }, + { + "word": "destinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destined;intended", + "romanization": "destinato", + "example_sentence_native": "Questo pacco è destinato a te.", + "example_sentence_english": "This package is destined for you.", + "pos": "adjective", + "word_frequency": 2483 + }, + { + "word": "destro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "right (side)", + "romanization": "destro", + "example_sentence_native": "La mia mano destra è più forte.", + "example_sentence_english": "My right hand is stronger.", + "pos": "adjective", + "word_frequency": 2484 + }, + { + "word": "dirigente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manager;executive", + "romanization": "dirigente", + "example_sentence_native": "Il dirigente ha approvato il progetto.", + "example_sentence_english": "The manager approved the project.", + "pos": "noun", + "word_frequency": 2485 + }, + { + "word": "entità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entity;extent;amount", + "romanization": "entità", + "example_sentence_native": "L'entità del danno non è ancora chiara.", + "example_sentence_english": "The extent of the damage is not yet clear.", + "pos": "noun", + "word_frequency": 2487 + }, + { + "word": "essenziale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "essential", + "romanization": "essenziale", + "example_sentence_native": "L'acqua è essenziale per la vita.", + "example_sentence_english": "Water is essential for life.", + "pos": "adjective", + "word_frequency": 2488 + }, + { + "word": "ferito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wounded;injured", + "romanization": "ferito", + "example_sentence_native": "Il soldato ferito è stato portato in ospedale.", + "example_sentence_english": "The injured soldier was taken to the hospital.", + "pos": "adjective", + "word_frequency": 2489 + }, + { + "word": "fisso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed;stable", + "romanization": "fisso", + "example_sentence_native": "Abbiamo un appuntamento fisso ogni martedì.", + "example_sentence_english": "We have a fixed appointment every Tuesday.", + "pos": "adjective", + "word_frequency": 2490 + }, + { + "word": "foglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leaf", + "romanization": "foglia", + "example_sentence_native": "Le foglie degli alberi cambiano colore in autunno.", + "example_sentence_english": "The leaves of the trees change color in autumn.", + "pos": "noun", + "word_frequency": 2491 + }, + { + "word": "impero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empire", + "romanization": "impero", + "example_sentence_native": "L'Impero Romano era vastissimo.", + "example_sentence_english": "The Roman Empire was vast.", + "pos": "noun", + "word_frequency": 2492 + }, + { + "word": "incluso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "included", + "romanization": "incluso", + "example_sentence_native": "Il prezzo include la colazione.", + "example_sentence_english": "The price includes breakfast.", + "pos": "adjective", + "word_frequency": 2493 + }, + { + "word": "iniziato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "started;initiated", + "romanization": "iniziato", + "example_sentence_native": "Il progetto è iniziato la settimana scorsa.", + "example_sentence_english": "The project started last week.", + "pos": "adjective", + "word_frequency": 2494 + }, + { + "word": "intelligenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intelligence", + "romanization": "intelligenza", + "example_sentence_native": "L'intelligenza artificiale sta cambiando il mondo.", + "example_sentence_english": "Artificial intelligence is changing the world.", + "pos": "noun", + "word_frequency": 2495 + }, + { + "word": "nobile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noble", + "romanization": "nobile", + "example_sentence_native": "Ha un animo nobile.", + "example_sentence_english": "He has a noble spirit.", + "pos": "adjective", + "word_frequency": 2497 + }, + { + "word": "pesca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peach", + "romanization": "pesca", + "example_sentence_native": "Mi piace mangiare una pesca fresca in estate.", + "example_sentence_english": "I like to eat a fresh peach in summer.", + "pos": "noun", + "word_frequency": 2498 + }, + { + "word": "pop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pop (music;culture)", + "romanization": "pop", + "example_sentence_native": "Ascolto molta musica pop.", + "example_sentence_english": "I listen to a lot of pop music.", + "pos": "noun", + "word_frequency": 2499 + }, + { + "word": "prestazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance;service;benefit", + "romanization": "prestazione", + "example_sentence_native": "La sua prestazione è stata eccellente.", + "example_sentence_english": "His performance was excellent.", + "pos": "noun", + "word_frequency": 2500 + }, + { + "word": "raccontato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "told;narrated", + "romanization": "raccontato", + "example_sentence_native": "La storia raccontata era molto interessante.", + "example_sentence_english": "The story told was very interesting.", + "pos": "adjective", + "word_frequency": 2502 + }, + { + "word": "rappresentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representation;performance (theatrical)", + "romanization": "rappresentazione", + "example_sentence_native": "La rappresentazione teatrale è stata un successo.", + "example_sentence_english": "The theatrical performance was a success.", + "pos": "noun", + "word_frequency": 2503 + }, + { + "word": "redazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editorial staff;newsroom", + "romanization": "redazione", + "example_sentence_native": "Lavora nella redazione di un giornale.", + "example_sentence_english": "He works in the newsroom of a newspaper.", + "pos": "noun", + "word_frequency": 2504 + }, + { + "word": "risparmio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saving;savings", + "romanization": "risparmio", + "example_sentence_native": "È importante avere un buon risparmio per il futuro.", + "example_sentence_english": "It's important to have good savings for the future.", + "pos": "noun", + "word_frequency": 2505 + }, + { + "word": "rispettivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectively", + "romanization": "rispettivamente", + "example_sentence_native": "I due fratelli hanno 10 e 12 anni rispettivamente.", + "example_sentence_english": "The two brothers are 10 and 12 years old respectively.", + "pos": "adverb", + "word_frequency": 2506 + }, + { + "word": "ritiro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "withdrawal;retreat;collection", + "romanization": "ritiro", + "example_sentence_native": "Ho fatto un ritiro di contanti dal bancomat.", + "example_sentence_english": "I made a cash withdrawal from the ATM.", + "pos": "noun", + "word_frequency": 2507 + }, + { + "word": "sintesi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synthesis;summary", + "romanization": "sintesi", + "example_sentence_native": "Fai una sintesi del testo.", + "example_sentence_english": "Make a summary of the text.", + "pos": "noun", + "word_frequency": 2509 + }, + { + "word": "sopravvivere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to survive", + "romanization": "sopravvivere", + "example_sentence_native": "È difficile sopravvivere in queste condizioni.", + "example_sentence_english": "It's difficult to survive in these conditions.", + "pos": "verb", + "word_frequency": 2510 + }, + { + "word": "spiacere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to displease;to be sorry", + "romanization": "spiacere", + "example_sentence_native": "Mi dispiace per il ritardo.", + "example_sentence_english": "I am sorry for the delay.", + "pos": "verb", + "word_frequency": 2511 + }, + { + "word": "stress", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stress", + "romanization": "stress", + "example_sentence_native": "Ho molto stress a causa del lavoro.", + "example_sentence_english": "I have a lot of stress because of work.", + "pos": "noun", + "word_frequency": 2513 + }, + { + "word": "taglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "size (clothing);reward (bounty)", + "romanization": "taglia", + "example_sentence_native": "Che taglia porti?", + "example_sentence_english": "What size do you wear?", + "pos": "noun", + "word_frequency": 2514 + }, + { + "word": "universo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "universe", + "romanization": "universo", + "example_sentence_native": "L'universo è vasto e misterioso.", + "example_sentence_english": "The universe is vast and mysterious.", + "pos": "noun", + "word_frequency": 2516 + }, + { + "word": "valutare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evaluate;to assess", + "romanization": "valutare", + "example_sentence_native": "Dobbiamo valutare attentamente la situazione.", + "example_sentence_english": "We need to carefully evaluate the situation.", + "pos": "verb", + "word_frequency": 2517 + }, + { + "word": "viola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "purple;violet", + "romanization": "viola", + "example_sentence_native": "Il mio colore preferito è il viola.", + "example_sentence_english": "My favorite color is purple.", + "pos": "adjective", + "word_frequency": 2519 + }, + { + "word": "volontario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volunteer", + "romanization": "volontario", + "example_sentence_native": "Lui lavora come volontario in un rifugio per animali.", + "example_sentence_english": "He works as a volunteer in an animal shelter.", + "pos": "noun", + "word_frequency": 2520 + }, + { + "word": "accoglienza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welcome;reception", + "romanization": "accoglienza", + "example_sentence_native": "L'accoglienza è stata molto calorosa.", + "example_sentence_english": "The welcome was very warm.", + "pos": "noun", + "word_frequency": 2523 + }, + { + "word": "affermazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affirmation;statement", + "romanization": "affermazione", + "example_sentence_native": "La sua affermazione ha sorpreso tutti.", + "example_sentence_english": "His statement surprised everyone.", + "pos": "noun", + "word_frequency": 2524 + }, + { + "word": "agricoltura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agriculture", + "romanization": "agricoltura", + "example_sentence_native": "L'agricoltura è un settore importante per l'economia.", + "example_sentence_english": "Agriculture is an important sector for the economy.", + "pos": "noun", + "word_frequency": 2525 + }, + { + "word": "college", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "college", + "romanization": "college", + "example_sentence_native": "Ha studiato al college per quattro anni.", + "example_sentence_english": "He studied at college for four years.", + "pos": "noun", + "word_frequency": 2529 + }, + { + "word": "conquista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conquest;achievement", + "romanization": "conquista", + "example_sentence_native": "La conquista della vetta è stata difficile.", + "example_sentence_english": "The conquest of the summit was difficult.", + "pos": "noun", + "word_frequency": 2531 + }, + { + "word": "flusso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow;stream", + "romanization": "flusso", + "example_sentence_native": "C'è un flusso costante di persone.", + "example_sentence_english": "There is a constant flow of people.", + "pos": "noun", + "word_frequency": 2534 + }, + { + "word": "inchiesta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inquiry;investigation", + "romanization": "inchiesta", + "example_sentence_native": "Hanno aperto un'inchiesta sul caso.", + "example_sentence_english": "They opened an inquiry into the case.", + "pos": "noun", + "word_frequency": 2536 + }, + { + "word": "innovazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovation", + "romanization": "innovazione", + "example_sentence_native": "L'innovazione è fondamentale per il progresso.", + "example_sentence_english": "Innovation is fundamental for progress.", + "pos": "noun", + "word_frequency": 2537 + }, + { + "word": "inserito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inserted;included", + "romanization": "inserito", + "example_sentence_native": "Il documento è stato inserito nella cartella.", + "example_sentence_english": "The document was inserted into the folder.", + "pos": "adjective", + "word_frequency": 2538 + }, + { + "word": "interessato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "interested", + "romanization": "interessato", + "example_sentence_native": "Sono interessato a questo libro.", + "example_sentence_english": "I am interested in this book.", + "pos": "adjective", + "word_frequency": 2539 + }, + { + "word": "intitolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titled;named", + "romanization": "intitolato", + "example_sentence_native": "Il film è intitolato \"La Grande Bellezza\".", + "example_sentence_english": "The film is titled \"The Great Beauty\".", + "pos": "adjective", + "word_frequency": 2540 + }, + { + "word": "lentamente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slowly", + "romanization": "lentamente", + "example_sentence_native": "Cammina lentamente verso casa.", + "example_sentence_english": "He walks slowly towards home.", + "pos": "adverb", + "word_frequency": 2542 + }, + { + "word": "manuale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manual;handbook", + "romanization": "manuale", + "example_sentence_native": "Ho letto il manuale di istruzioni.", + "example_sentence_english": "I read the instruction manual.", + "pos": "noun", + "word_frequency": 2544 + }, + { + "word": "mira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aim;goal", + "romanization": "mira", + "example_sentence_native": "La sua mira era perfetta.", + "example_sentence_english": "His aim was perfect.", + "pos": "noun", + "word_frequency": 2545 + }, + { + "word": "operatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operator;worker", + "romanization": "operatore", + "example_sentence_native": "L'operatore telefonico mi ha aiutato.", + "example_sentence_english": "The phone operator helped me.", + "pos": "noun", + "word_frequency": 2546 + }, + { + "word": "opposto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "opposite", + "romanization": "opposto", + "example_sentence_native": "Vivono sul lato opposto della strada.", + "example_sentence_english": "They live on the opposite side of the street.", + "pos": "adjective", + "word_frequency": 2547 + }, + { + "word": "petto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chest;breast", + "romanization": "petto", + "example_sentence_native": "Si è battuto il petto.", + "example_sentence_english": "He beat his chest.", + "pos": "noun", + "word_frequency": 2548 + }, + { + "word": "posteriore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rear;back;posterior", + "romanization": "posteriore", + "example_sentence_native": "La ruota posteriore è sgonfia.", + "example_sentence_english": "The rear wheel is flat.", + "pos": "adjective", + "word_frequency": 2549 + }, + { + "word": "preghiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prayer", + "romanization": "preghiera", + "example_sentence_native": "Ha recitato una preghiera.", + "example_sentence_english": "She recited a prayer.", + "pos": "noun", + "word_frequency": 2550 + }, + { + "word": "procedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to proceed;to go on", + "romanization": "procedere", + "example_sentence_native": "Possiamo procedere con la riunione.", + "example_sentence_english": "We can proceed with the meeting.", + "pos": "verb", + "word_frequency": 2551 + }, + { + "word": "raccolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathered;collected;harvested", + "romanization": "raccolto", + "example_sentence_native": "Il grano è stato raccolto.", + "example_sentence_english": "The wheat has been harvested.", + "pos": "adjective", + "word_frequency": 2552 + }, + { + "word": "sbagliato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wrong;mistaken", + "romanization": "sbagliato", + "example_sentence_native": "Hai dato la risposta sbagliata.", + "example_sentence_english": "You gave the wrong answer.", + "pos": "adjective", + "word_frequency": 2553 + }, + { + "word": "scarso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarce;poor;insufficient", + "romanization": "scarso", + "example_sentence_native": "La qualità del servizio è scarsa.", + "example_sentence_english": "The quality of the service is poor.", + "pos": "adjective", + "word_frequency": 2554 + }, + { + "word": "single", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "single", + "romanization": "single", + "example_sentence_native": "È una persona single.", + "example_sentence_english": "He is a single person.", + "pos": "adjective", + "word_frequency": 2555 + }, + { + "word": "tessuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabric;tissue", + "romanization": "tessuto", + "example_sentence_native": "Questo vestito è fatto di un bel tessuto.", + "example_sentence_english": "This dress is made of a beautiful fabric.", + "pos": "noun", + "word_frequency": 2556 + }, + { + "word": "trenta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty", + "romanization": "trenta", + "example_sentence_native": "Ho trenta euro.", + "example_sentence_english": "I have thirty euros.", + "pos": "noun", + "word_frequency": 2557 + }, + { + "word": "vasto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vast;wide;extensive", + "romanization": "vasto", + "example_sentence_native": "Hanno una vasta conoscenza.", + "example_sentence_english": "They have a vast knowledge.", + "pos": "adjective", + "word_frequency": 2558 + }, + { + "word": "vendetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenge;vendetta", + "romanization": "vendetta", + "example_sentence_native": "Cercava vendetta per l'ingiustizia subita.", + "example_sentence_english": "He sought revenge for the injustice suffered.", + "pos": "noun", + "word_frequency": 2559 + }, + { + "word": "verificare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to verify;to check", + "romanization": "verificare", + "example_sentence_native": "Dobbiamo verificare le informazioni prima di pubblicarle.", + "example_sentence_english": "We need to verify the information before publishing it.", + "pos": "verb", + "word_frequency": 2560 + }, + { + "word": "altrui", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "others';other people's", + "romanization": "altrui", + "example_sentence_native": "Non desiderare la roba altrui.", + "example_sentence_english": "Do not covet other people's belongings.", + "pos": "adjective", + "word_frequency": 2563 + }, + { + "word": "amante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lover;enthusiast", + "romanization": "amante", + "example_sentence_native": "È un grande amante della musica classica.", + "example_sentence_english": "He is a great lover of classical music.", + "pos": "noun", + "word_frequency": 2564 + }, + { + "word": "appartenente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belonging to;member of", + "romanization": "appartenente", + "example_sentence_native": "È un membro appartenente a un'associazione di volontariato.", + "example_sentence_english": "He is a member belonging to a volunteer association.", + "pos": "adjective", + "word_frequency": 2566 + }, + { + "word": "artistico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "artistic", + "romanization": "artistico", + "example_sentence_native": "Ha un grande talento artistico.", + "example_sentence_english": "He has great artistic talent.", + "pos": "adjective", + "word_frequency": 2567 + }, + { + "word": "assicurazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insurance", + "romanization": "assicurazione", + "example_sentence_native": "Devo rinnovare l'assicurazione della macchina.", + "example_sentence_english": "I need to renew my car insurance.", + "pos": "noun", + "word_frequency": 2568 + }, + { + "word": "camminare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to walk", + "romanization": "camminare", + "example_sentence_native": "Mi piace camminare nel parco la mattina.", + "example_sentence_english": "I like to walk in the park in the morning.", + "pos": "verb", + "word_frequency": 2570 + }, + { + "word": "carità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charity", + "romanization": "carità", + "example_sentence_native": "Ha fatto un atto di grande carità.", + "example_sentence_english": "He performed an act of great charity.", + "pos": "noun", + "word_frequency": 2571 + }, + { + "word": "catalogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "catalog", + "romanization": "catalogo", + "example_sentence_native": "Ho sfogliato il catalogo dei prodotti.", + "example_sentence_english": "I browsed the product catalog.", + "pos": "noun", + "word_frequency": 2572 + }, + { + "word": "cellula", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cell (biological)", + "romanization": "cellula", + "example_sentence_native": "Il corpo umano è composto da miliardi di cellule.", + "example_sentence_english": "The human body is composed of billions of cells.", + "pos": "noun", + "word_frequency": 2573 + }, + { + "word": "concludere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conclude;to finish", + "romanization": "concludere", + "example_sentence_native": "Dobbiamo concludere il progetto entro venerdì.", + "example_sentence_english": "We need to conclude the project by Friday.", + "pos": "verb", + "word_frequency": 2574 + }, + { + "word": "deserto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "desert", + "romanization": "deserto", + "example_sentence_native": "Il deserto del Sahara è molto vasto.", + "example_sentence_english": "The Sahara desert is very vast.", + "pos": "noun", + "word_frequency": 2575 + }, + { + "word": "dimostrazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstration;proof", + "romanization": "dimostrazione", + "example_sentence_native": "Ha dato una dimostrazione pratica del software.", + "example_sentence_english": "He gave a practical demonstration of the software.", + "pos": "noun", + "word_frequency": 2576 + }, + { + "word": "disturbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disturbance;disorder", + "romanization": "disturbo", + "example_sentence_native": "Scusa il disturbo, ma ho una domanda.", + "example_sentence_english": "Sorry for the disturbance, but I have a question.", + "pos": "noun", + "word_frequency": 2577 + }, + { + "word": "elettronico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electronic", + "romanization": "elettronico", + "example_sentence_native": "Ho comprato un nuovo dispositivo elettronico.", + "example_sentence_english": "I bought a new electronic device.", + "pos": "adjective", + "word_frequency": 2578 + }, + { + "word": "fallito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failed;bankrupt", + "romanization": "fallito", + "example_sentence_native": "Il tentativo di fuga è fallito.", + "example_sentence_english": "The escape attempt failed.", + "pos": "adjective", + "word_frequency": 2579 + }, + { + "word": "farmaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drug;medicine", + "romanization": "farmaco", + "example_sentence_native": "Questo farmaco richiede la prescrizione medica.", + "example_sentence_english": "This drug requires a medical prescription.", + "pos": "noun", + "word_frequency": 2580 + }, + { + "word": "fondatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "founder", + "romanization": "fondatore", + "example_sentence_native": "Il fondatore dell'azienda ha annunciato il suo ritiro.", + "example_sentence_english": "The founder of the company announced his retirement.", + "pos": "noun", + "word_frequency": 2581 + }, + { + "word": "foresta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forest", + "romanization": "foresta", + "example_sentence_native": "Abbiamo fatto una passeggiata nella foresta.", + "example_sentence_english": "We took a walk in the forest.", + "pos": "noun", + "word_frequency": 2582 + }, + { + "word": "impegnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "busy;engaged", + "romanization": "impegnato", + "example_sentence_native": "Sono molto impegnato questa settimana.", + "example_sentence_english": "I am very busy this week.", + "pos": "adjective", + "word_frequency": 2583 + }, + { + "word": "incendio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire (large;destructive)", + "romanization": "incendio", + "example_sentence_native": "I pompieri hanno spento l'incendio in poche ore.", + "example_sentence_english": "The firefighters put out the fire in a few hours.", + "pos": "noun", + "word_frequency": 2584 + }, + { + "word": "infrastruttura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infrastructure", + "romanization": "infrastruttura", + "example_sentence_native": "Il governo sta investendo nelle infrastrutture del paese.", + "example_sentence_english": "The government is investing in the country's infrastructure.", + "pos": "noun", + "word_frequency": 2585 + }, + { + "word": "intento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intent;purpose", + "romanization": "intento", + "example_sentence_native": "Il suo intento era quello di aiutare.", + "example_sentence_english": "His intent was to help.", + "pos": "noun", + "word_frequency": 2587 + }, + { + "word": "intervenire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to intervene;to participate", + "romanization": "intervenire", + "example_sentence_native": "La polizia è dovuta intervenire per sedare la rissa.", + "example_sentence_english": "The police had to intervene to break up the fight.", + "pos": "verb", + "word_frequency": 2588 + }, + { + "word": "iscritto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscriber;member;registrant", + "romanization": "iscritto", + "example_sentence_native": "Il numero di iscritti al canale è aumentato.", + "example_sentence_english": "The number of subscribers to the channel has increased.", + "pos": "noun", + "word_frequency": 2590 + }, + { + "word": "lacrima", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tear (from eye)", + "romanization": "lacrima", + "example_sentence_native": "Una lacrima le scese sul viso.", + "example_sentence_english": "A tear rolled down her face.", + "pos": "noun", + "word_frequency": 2591 + }, + { + "word": "lanciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "launched;thrown", + "romanization": "lanciato", + "example_sentence_native": "Il nuovo prodotto è stato lanciato sul mercato.", + "example_sentence_english": "The new product was launched on the market.", + "pos": "adjective", + "word_frequency": 2592 + }, + { + "word": "leggero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light (in weight);slight", + "romanization": "leggero", + "example_sentence_native": "Questa borsa è molto leggera.", + "example_sentence_english": "This bag is very light.", + "pos": "adjective", + "word_frequency": 2593 + }, + { + "word": "lusso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luxury", + "romanization": "lusso", + "example_sentence_native": "Vivono nel lusso.", + "example_sentence_english": "They live in luxury.", + "pos": "noun", + "word_frequency": 2594 + }, + { + "word": "marchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brand;trademark", + "romanization": "marchio", + "example_sentence_native": "Questo è un marchio di alta qualità.", + "example_sentence_english": "This is a high-quality brand.", + "pos": "noun", + "word_frequency": 2595 + }, + { + "word": "marketing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marketing", + "romanization": "marketing", + "example_sentence_native": "L'azienda ha investito molto nel marketing digitale.", + "example_sentence_english": "The company invested a lot in digital marketing.", + "pos": "noun", + "word_frequency": 2596 + }, + { + "word": "meccanismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanism", + "romanization": "meccanismo", + "example_sentence_native": "Il meccanismo dell'orologio è molto complesso.", + "example_sentence_english": "The clock mechanism is very complex.", + "pos": "noun", + "word_frequency": 2597 + }, + { + "word": "operaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worker;laborer", + "romanization": "operaio", + "example_sentence_native": "Molti operai lavorano in quella fabbrica.", + "example_sentence_english": "Many workers work in that factory.", + "pos": "noun", + "word_frequency": 2599 + }, + { + "word": "orgoglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pride", + "romanization": "orgoglio", + "example_sentence_native": "Ha mostrato grande orgoglio per il suo lavoro.", + "example_sentence_english": "He showed great pride in his work.", + "pos": "noun", + "word_frequency": 2600 + }, + { + "word": "panico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panic", + "romanization": "panico", + "example_sentence_native": "Non farti prendere dal panico.", + "example_sentence_english": "Don't panic.", + "pos": "noun", + "word_frequency": 2601 + }, + { + "word": "principessa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "princess", + "romanization": "principessa", + "example_sentence_native": "La bambina sognava di essere una principessa.", + "example_sentence_english": "The little girl dreamed of being a princess.", + "pos": "noun", + "word_frequency": 2602 + }, + { + "word": "raramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rarely", + "romanization": "raramente", + "example_sentence_native": "Raramente esco di casa la sera.", + "example_sentence_english": "I rarely go out in the evening.", + "pos": "adverb", + "word_frequency": 2604 + }, + { + "word": "residente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resident", + "romanization": "residente", + "example_sentence_native": "È un residente di lunga data di questa città.", + "example_sentence_english": "He is a long-time resident of this city.", + "pos": "noun", + "word_frequency": 2605 + }, + { + "word": "rilievo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prominence", + "romanization": "rilievo", + "example_sentence_native": "Il suo lavoro ha assunto un grande rilievo.", + "example_sentence_english": "His work has taken on great prominence.", + "pos": "noun", + "word_frequency": 2606 + }, + { + "word": "scolastico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scholastic", + "romanization": "scolastico", + "example_sentence_native": "L'anno scolastico inizia a settembre.", + "example_sentence_english": "The school year starts in September.", + "pos": "adjective", + "word_frequency": 2607 + }, + { + "word": "sconto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "discount", + "romanization": "sconto", + "example_sentence_native": "Ho ottenuto uno sconto del 10% sul prezzo.", + "example_sentence_english": "I got a 10% discount on the price.", + "pos": "noun", + "word_frequency": 2608 + }, + { + "word": "soddisfazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satisfaction", + "romanization": "soddisfazione", + "example_sentence_native": "Ha provato una grande soddisfazione nel completare il progetto.", + "example_sentence_english": "He felt great satisfaction in completing the project.", + "pos": "noun", + "word_frequency": 2609 + }, + { + "word": "sospensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspension", + "romanization": "sospensione", + "example_sentence_native": "C'è stata una sospensione temporanea del servizio.", + "example_sentence_english": "There was a temporary suspension of service.", + "pos": "noun", + "word_frequency": 2610 + }, + { + "word": "sostenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustained", + "romanization": "sostenuto", + "example_sentence_native": "Ha mantenuto un ritmo sostenuto per tutta la corsa.", + "example_sentence_english": "He maintained a sustained pace throughout the race.", + "pos": "adjective", + "word_frequency": 2611 + }, + { + "word": "streaming", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "streaming", + "romanization": "streaming", + "example_sentence_native": "Guardiamo molti film in streaming.", + "example_sentence_english": "We watch many movies via streaming.", + "pos": "noun", + "word_frequency": 2612 + }, + { + "word": "stronzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asshole", + "romanization": "stronzo", + "example_sentence_native": "Non fare lo stronzo con me.", + "example_sentence_english": "Don't be an asshole to me.", + "pos": "noun", + "word_frequency": 2613 + }, + { + "word": "terrorismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrorism", + "romanization": "terrorismo", + "example_sentence_native": "Il governo sta combattendo il terrorismo.", + "example_sentence_english": "The government is fighting terrorism.", + "pos": "noun", + "word_frequency": 2614 + }, + { + "word": "tirare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pull", + "romanization": "tirare", + "example_sentence_native": "Puoi tirare la porta per aprirla?", + "example_sentence_english": "Can you pull the door to open it?", + "pos": "verb", + "word_frequency": 2615 + }, + { + "word": "tuttora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "still", + "romanization": "tuttora", + "example_sentence_native": "Tuttora non capisco cosa sia successo.", + "example_sentence_english": "I still don't understand what happened.", + "pos": "adverb", + "word_frequency": 2616 + }, + { + "word": "vincitore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winner", + "romanization": "vincitore", + "example_sentence_native": "Il vincitore della gara sarà annunciato presto.", + "example_sentence_english": "The winner of the race will be announced soon.", + "pos": "noun", + "word_frequency": 2618 + }, + { + "word": "virtù", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtue", + "romanization": "virtù", + "example_sentence_native": "La pazienza è una grande virtù.", + "example_sentence_english": "Patience is a great virtue.", + "pos": "noun", + "word_frequency": 2619 + }, + { + "word": "alba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dawn", + "romanization": "alba", + "example_sentence_native": "Ci siamo svegliati all'alba per vedere il sole sorgere.", + "example_sentence_english": "We woke up at dawn to see the sunrise.", + "pos": "noun", + "word_frequency": 2620 + }, + { + "word": "armata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "army", + "romanization": "armata", + "example_sentence_native": "L'armata si preparava alla battaglia.", + "example_sentence_english": "The army was preparing for battle.", + "pos": "noun", + "word_frequency": 2621 + }, + { + "word": "armato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armed", + "romanization": "armato", + "example_sentence_native": "L'uomo era armato di un coltello.", + "example_sentence_english": "The man was armed with a knife.", + "pos": "adjective", + "word_frequency": 2622 + }, + { + "word": "attaccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attached", + "romanization": "attaccato", + "example_sentence_native": "Il poster era attaccato al muro.", + "example_sentence_english": "The poster was attached to the wall.", + "pos": "adjective", + "word_frequency": 2623 + }, + { + "word": "augurio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wish", + "romanization": "augurio", + "example_sentence_native": "Ti faccio i miei migliori auguri per il tuo compleanno.", + "example_sentence_english": "I send you my best wishes for your birthday.", + "pos": "noun", + "word_frequency": 2624 + }, + { + "word": "concesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "granted", + "romanization": "concesso", + "example_sentence_native": "Il permesso è stato concesso.", + "example_sentence_english": "The permit has been granted.", + "pos": "adjective", + "word_frequency": 2626 + }, + { + "word": "creduto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "believed", + "romanization": "creduto", + "example_sentence_native": "La sua storia non è stata creduta da nessuno.", + "example_sentence_english": "His story was not believed by anyone.", + "pos": "adjective", + "word_frequency": 2627 + }, + { + "word": "danza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dance", + "romanization": "danza", + "example_sentence_native": "Le piace molto la danza classica.", + "example_sentence_english": "She really likes classical dance.", + "pos": "noun", + "word_frequency": 2628 + }, + { + "word": "divieto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prohibition", + "romanization": "divieto", + "example_sentence_native": "C'è un divieto di fumo in questo locale.", + "example_sentence_english": "There is a smoking prohibition in this place.", + "pos": "noun", + "word_frequency": 2630 + }, + { + "word": "editore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publisher", + "romanization": "editore", + "example_sentence_native": "L'editore ha accettato il manoscritto.", + "example_sentence_english": "The publisher accepted the manuscript.", + "pos": "noun", + "word_frequency": 2632 + }, + { + "word": "erba", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grass", + "romanization": "erba", + "example_sentence_native": "Il prato è coperto di erba verde.", + "example_sentence_english": "The lawn is covered with green grass.", + "pos": "noun", + "word_frequency": 2633 + }, + { + "word": "estratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excerpt", + "romanization": "estratto", + "example_sentence_native": "Ho letto un estratto del nuovo libro.", + "example_sentence_english": "I read an excerpt from the new book.", + "pos": "noun", + "word_frequency": 2634 + }, + { + "word": "federazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federation", + "romanization": "federazione", + "example_sentence_native": "La federazione sportiva ha annunciato nuove regole.", + "example_sentence_english": "The sports federation announced new rules.", + "pos": "noun", + "word_frequency": 2635 + }, + { + "word": "fermato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stopped", + "romanization": "fermato", + "example_sentence_native": "Il treno è rimasto fermato per un'ora.", + "example_sentence_english": "The train remained stopped for an hour.", + "pos": "adjective", + "word_frequency": 2636 + }, + { + "word": "indipendentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independently", + "romanization": "indipendentemente", + "example_sentence_native": "Lavora indipendentemente da qualsiasi supervisione.", + "example_sentence_english": "He works independently of any supervision.", + "pos": "adverb", + "word_frequency": 2640 + }, + { + "word": "intellettuale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intellectual", + "romanization": "intellettuale", + "example_sentence_native": "È una persona molto intellettuale.", + "example_sentence_english": "He is a very intellectual person.", + "pos": "adjective", + "word_frequency": 2641 + }, + { + "word": "ispirazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspiration", + "romanization": "ispirazione", + "example_sentence_native": "Ha trovato ispirazione nella natura.", + "example_sentence_english": "He found inspiration in nature.", + "pos": "noun", + "word_frequency": 2642 + }, + { + "word": "leggenda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legend", + "romanization": "leggenda", + "example_sentence_native": "La leggenda narra di un antico tesoro.", + "example_sentence_english": "The legend tells of an ancient treasure.", + "pos": "noun", + "word_frequency": 2643 + }, + { + "word": "ombra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shadow", + "romanization": "ombra", + "example_sentence_native": "L'albero proietta una lunga ombra.", + "example_sentence_english": "The tree casts a long shadow.", + "pos": "noun", + "word_frequency": 2646 + }, + { + "word": "ove", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "where (formal;literary)", + "romanization": "ove", + "example_sentence_native": "Ognuno torni ove era.", + "example_sentence_english": "Everyone return to where they were.", + "pos": "adverb", + "word_frequency": 2647 + }, + { + "word": "permanente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "permanent", + "romanization": "permanente", + "example_sentence_native": "La soluzione deve essere permanente.", + "example_sentence_english": "The solution must be permanent.", + "pos": "adjective", + "word_frequency": 2648 + }, + { + "word": "perso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lost", + "romanization": "perso", + "example_sentence_native": "Ho trovato un cane perso.", + "example_sentence_english": "I found a lost dog.", + "pos": "adjective", + "word_frequency": 2649 + }, + { + "word": "porca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sow;female pig", + "romanization": "porca", + "example_sentence_native": "La porca ha avuto molti maialini.", + "example_sentence_english": "The sow had many piglets.", + "pos": "noun", + "word_frequency": 2650 + }, + { + "word": "prato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meadow;lawn", + "romanization": "prato", + "example_sentence_native": "I bambini giocano sul prato.", + "example_sentence_english": "The children are playing on the lawn.", + "pos": "noun", + "word_frequency": 2651 + }, + { + "word": "riflettere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reflect;to think", + "romanization": "riflettere", + "example_sentence_native": "Devo riflettere sulla tua proposta.", + "example_sentence_english": "I need to reflect on your proposal.", + "pos": "verb", + "word_frequency": 2653 + }, + { + "word": "ritornare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to return;to come back", + "romanization": "ritornare", + "example_sentence_native": "Voglio ritornare a casa.", + "example_sentence_english": "I want to return home.", + "pos": "verb", + "word_frequency": 2654 + }, + { + "word": "scadenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deadline;expiry date", + "romanization": "scadenza", + "example_sentence_native": "La scadenza per la consegna è domani.", + "example_sentence_english": "The deadline for delivery is tomorrow.", + "pos": "noun", + "word_frequency": 2655 + }, + { + "word": "situato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "situated;located", + "romanization": "situato", + "example_sentence_native": "L'hotel è situato in centro.", + "example_sentence_english": "The hotel is located in the center.", + "pos": "adjective", + "word_frequency": 2657 + }, + { + "word": "sostituzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitution;replacement", + "romanization": "sostituzione", + "example_sentence_native": "Abbiamo bisogno di una sostituzione per il giocatore infortunato.", + "example_sentence_english": "We need a replacement for the injured player.", + "pos": "noun", + "word_frequency": 2658 + }, + { + "word": "trono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "throne", + "romanization": "trono", + "example_sentence_native": "Il re sedeva sul suo trono.", + "example_sentence_english": "The king sat on his throne.", + "pos": "noun", + "word_frequency": 2661 + }, + { + "word": "volentieri", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gladly;willingly", + "romanization": "volentieri", + "example_sentence_native": "Verrò volentieri alla festa.", + "example_sentence_english": "I will gladly come to the party.", + "pos": "adverb", + "word_frequency": 2662 + }, + { + "word": "amministrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrative", + "romanization": "amministrativo", + "example_sentence_native": "Si occupa delle questioni amministrative.", + "example_sentence_english": "He deals with administrative matters.", + "pos": "adjective", + "word_frequency": 2663 + }, + { + "word": "assistente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "assistant", + "romanization": "assistente", + "example_sentence_native": "L'assistente mi ha aiutato con i documenti.", + "example_sentence_english": "The assistant helped me with the documents.", + "pos": "noun", + "word_frequency": 2664 + }, + { + "word": "baby", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby", + "romanization": "baby", + "example_sentence_native": "Il baby dorme nella culla.", + "example_sentence_english": "The baby sleeps in the crib.", + "pos": "noun", + "word_frequency": 2666 + }, + { + "word": "calendario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calendar", + "romanization": "calendario", + "example_sentence_native": "Ho segnato l'appuntamento sul calendario.", + "example_sentence_english": "I marked the appointment on the calendar.", + "pos": "noun", + "word_frequency": 2667 + }, + { + "word": "cantare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sing", + "romanization": "cantare", + "example_sentence_native": "Le piace cantare sotto la doccia.", + "example_sentence_english": "She likes to sing in the shower.", + "pos": "verb", + "word_frequency": 2668 + }, + { + "word": "cioccolato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chocolate", + "romanization": "cioccolato", + "example_sentence_native": "Vorrei un pezzo di cioccolato.", + "example_sentence_english": "I would like a piece of chocolate.", + "pos": "noun", + "word_frequency": 2669 + }, + { + "word": "clinica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clinic", + "romanization": "clinica", + "example_sentence_native": "Devo andare alla clinica per un controllo.", + "example_sentence_english": "I need to go to the clinic for a check-up.", + "pos": "noun", + "word_frequency": 2670 + }, + { + "word": "colonnello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonel", + "romanization": "colonnello", + "example_sentence_native": "Il colonnello ha dato gli ordini.", + "example_sentence_english": "The colonel gave the orders.", + "pos": "noun", + "word_frequency": 2671 + }, + { + "word": "comprensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understanding;comprehension", + "romanization": "comprensione", + "example_sentence_native": "La comprensione del testo è fondamentale.", + "example_sentence_english": "Understanding the text is fundamental.", + "pos": "noun", + "word_frequency": 2672 + }, + { + "word": "convegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conference;convention", + "romanization": "convegno", + "example_sentence_native": "Parteciperò al convegno sulla tecnologia.", + "example_sentence_english": "I will attend the technology conference.", + "pos": "noun", + "word_frequency": 2673 + }, + { + "word": "costretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forced;compelled", + "romanization": "costretto", + "example_sentence_native": "Si è sentito costretto a scusarsi.", + "example_sentence_english": "He felt compelled to apologize.", + "pos": "adjective", + "word_frequency": 2674 + }, + { + "word": "deposito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deposit;warehouse;storage", + "romanization": "deposito", + "example_sentence_native": "Ho lasciato i bagagli al deposito.", + "example_sentence_english": "I left my luggage at the storage.", + "pos": "noun", + "word_frequency": 2675 + }, + { + "word": "diario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diary;journal", + "romanization": "diario", + "example_sentence_native": "Scrive ogni giorno nel suo diario.", + "example_sentence_english": "She writes in her diary every day.", + "pos": "noun", + "word_frequency": 2676 + }, + { + "word": "dimissione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation", + "romanization": "dimissione", + "example_sentence_native": "La sua dimissione è stata inaspettata.", + "example_sentence_english": "His resignation was unexpected.", + "pos": "noun", + "word_frequency": 2677 + }, + { + "word": "dipendenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dependence;addiction", + "romanization": "dipendenza", + "example_sentence_native": "Ha sviluppato una dipendenza dal fumo.", + "example_sentence_english": "He developed an addiction to smoking.", + "pos": "noun", + "word_frequency": 2678 + }, + { + "word": "documentazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentation", + "romanization": "documentazione", + "example_sentence_native": "Abbiamo bisogno di tutta la documentazione necessaria.", + "example_sentence_english": "We need all the necessary documentation.", + "pos": "noun", + "word_frequency": 2679 + }, + { + "word": "eccellenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excellence", + "romanization": "eccellenza", + "example_sentence_native": "La sua eccellenza nel campo della medicina è riconosciuta a livello internazionale.", + "example_sentence_english": "His excellence in the field of medicine is internationally recognized.", + "pos": "noun", + "word_frequency": 2680 + }, + { + "word": "esistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existing", + "romanization": "esistente", + "example_sentence_native": "Dobbiamo valutare le risorse esistenti.", + "example_sentence_english": "We need to evaluate the existing resources.", + "pos": "adjective", + "word_frequency": 2682 + }, + { + "word": "ferita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wound;injury", + "romanization": "ferita", + "example_sentence_native": "Ha una piccola ferita sul braccio.", + "example_sentence_english": "He has a small wound on his arm.", + "pos": "noun", + "word_frequency": 2683 + }, + { + "word": "fermata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stop (bus;train)", + "romanization": "fermata", + "example_sentence_native": "La prossima fermata è la stazione centrale.", + "example_sentence_english": "The next stop is the central station.", + "pos": "noun", + "word_frequency": 2684 + }, + { + "word": "figo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool (slang)", + "romanization": "figo", + "example_sentence_native": "Quel concerto è stato davvero figo!", + "example_sentence_english": "That concert was really cool!", + "pos": "adjective", + "word_frequency": 2686 + }, + { + "word": "frequente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequent", + "romanization": "frequente", + "example_sentence_native": "Le piogge sono più frequenti in autunno.", + "example_sentence_english": "Rains are more frequent in autumn.", + "pos": "adjective", + "word_frequency": 2688 + }, + { + "word": "gola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "throat", + "romanization": "gola", + "example_sentence_native": "Mi fa male la gola.", + "example_sentence_english": "My throat hurts.", + "pos": "noun", + "word_frequency": 2690 + }, + { + "word": "grasso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fat;greasy", + "romanization": "grasso", + "example_sentence_native": "Non mangiare troppo cibo grasso.", + "example_sentence_english": "Don't eat too much greasy food.", + "pos": "adjective", + "word_frequency": 2691 + }, + { + "word": "idiota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiot", + "romanization": "idiota", + "example_sentence_native": "Non fare l'idiota!", + "example_sentence_english": "Don't be an idiot!", + "pos": "noun", + "word_frequency": 2693 + }, + { + "word": "imperatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emperor", + "romanization": "imperatore", + "example_sentence_native": "L'imperatore romano governava un vasto impero.", + "example_sentence_english": "The Roman emperor ruled a vast empire.", + "pos": "noun", + "word_frequency": 2694 + }, + { + "word": "informatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "IT;computer-related", + "romanization": "informatico", + "example_sentence_native": "Ho un problema informatico con il mio computer.", + "example_sentence_english": "I have an IT problem with my computer.", + "pos": "adjective", + "word_frequency": 2695 + }, + { + "word": "intesa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "understanding;agreement", + "romanization": "intesa", + "example_sentence_native": "Hanno raggiunto un'intesa sulla questione.", + "example_sentence_english": "They reached an understanding on the matter.", + "pos": "noun", + "word_frequency": 2696 + }, + { + "word": "marca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brand;make", + "romanization": "marca", + "example_sentence_native": "Qual è la tua marca di scarpe preferita?", + "example_sentence_english": "What is your favorite shoe brand?", + "pos": "noun", + "word_frequency": 2697 + }, + { + "word": "maschera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mask", + "romanization": "maschera", + "example_sentence_native": "Indossava una maschera durante il carnevale.", + "example_sentence_english": "He wore a mask during the carnival.", + "pos": "noun", + "word_frequency": 2699 + }, + { + "word": "minoranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minority", + "romanization": "minoranza", + "example_sentence_native": "La minoranza ha espresso il suo dissenso.", + "example_sentence_english": "The minority expressed its dissent.", + "pos": "noun", + "word_frequency": 2701 + }, + { + "word": "mito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myth", + "romanization": "mito", + "example_sentence_native": "La storia di Romolo e Remo è un mito fondativo di Roma.", + "example_sentence_english": "The story of Romulus and Remus is a founding myth of Rome.", + "pos": "noun", + "word_frequency": 2703 + }, + { + "word": "monaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monk", + "romanization": "monaco", + "example_sentence_native": "Il monaco viveva in un monastero isolato.", + "example_sentence_english": "The monk lived in an isolated monastery.", + "pos": "noun", + "word_frequency": 2704 + }, + { + "word": "nozze", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedding;nuptials", + "romanization": "nozze", + "example_sentence_native": "Le nozze si terranno il prossimo mese.", + "example_sentence_english": "The wedding will be held next month.", + "pos": "noun", + "word_frequency": 2707 + }, + { + "word": "palco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stage (theater)", + "romanization": "palco", + "example_sentence_native": "L'attore è salito sul palco.", + "example_sentence_english": "The actor went up on the stage.", + "pos": "noun", + "word_frequency": 2708 + }, + { + "word": "parcheggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parking;parking lot", + "romanization": "parcheggio", + "example_sentence_native": "Non c'è parcheggio disponibile qui.", + "example_sentence_english": "There is no parking available here.", + "pos": "noun", + "word_frequency": 2709 + }, + { + "word": "pilota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pilot", + "romanization": "pilota", + "example_sentence_native": "Il pilota ha annunciato l'atterraggio.", + "example_sentence_english": "The pilot announced the landing.", + "pos": "noun", + "word_frequency": 2710 + }, + { + "word": "pistola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pistol;gun", + "romanization": "pistola", + "example_sentence_native": "La polizia ha trovato una pistola sulla scena del crimine.", + "example_sentence_english": "The police found a gun at the crime scene.", + "pos": "noun", + "word_frequency": 2711 + }, + { + "word": "profondità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depth", + "romanization": "profondità", + "example_sentence_native": "La profondità dell'oceano è immensa.", + "example_sentence_english": "The depth of the ocean is immense.", + "pos": "noun", + "word_frequency": 2712 + }, + { + "word": "quindici", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifteen", + "romanization": "quindici", + "example_sentence_native": "Ho quindici anni.", + "example_sentence_english": "I am fifteen years old.", + "pos": "adjective", + "word_frequency": 2713 + }, + { + "word": "rapido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rapid;fast", + "romanization": "rapido", + "example_sentence_native": "Il treno rapido arriva in pochi minuti.", + "example_sentence_english": "The rapid train arrives in a few minutes.", + "pos": "adjective", + "word_frequency": 2714 + }, + { + "word": "rassegna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "review;exhibition;press review", + "romanization": "rassegna", + "example_sentence_native": "La rassegna stampa di oggi include molte notizie interessanti.", + "example_sentence_english": "Today's press review includes many interesting news items.", + "pos": "noun", + "word_frequency": 2715 + }, + { + "word": "regia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "direction (film;theater)", + "romanization": "regia", + "example_sentence_native": "La regia del film è stata molto apprezzata.", + "example_sentence_english": "The direction of the film was highly praised.", + "pos": "noun", + "word_frequency": 2716 + }, + { + "word": "ripetere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to repeat", + "romanization": "ripetere", + "example_sentence_native": "Puoi ripetere, per favore?", + "example_sentence_english": "Can you repeat, please?", + "pos": "verb", + "word_frequency": 2717 + }, + { + "word": "rischiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to risk", + "romanization": "rischiare", + "example_sentence_native": "Non voglio rischiare di perdere tutto.", + "example_sentence_english": "I don't want to risk losing everything.", + "pos": "verb", + "word_frequency": 2718 + }, + { + "word": "scandalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandal", + "romanization": "scandalo", + "example_sentence_native": "Lo scandalo ha scosso l'opinione pubblica.", + "example_sentence_english": "The scandal shook public opinion.", + "pos": "noun", + "word_frequency": 2719 + }, + { + "word": "settentrionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "northern", + "romanization": "settentrionale", + "example_sentence_native": "Il vento settentrionale porta il freddo.", + "example_sentence_english": "The northern wind brings the cold.", + "pos": "adjective", + "word_frequency": 2720 + }, + { + "word": "sofferenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suffering", + "romanization": "sofferenza", + "example_sentence_native": "La sua sofferenza era evidente a tutti.", + "example_sentence_english": "His suffering was evident to everyone.", + "pos": "noun", + "word_frequency": 2722 + }, + { + "word": "status", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "status", + "romanization": "status", + "example_sentence_native": "Il suo status sociale è molto elevato.", + "example_sentence_english": "His social status is very high.", + "pos": "noun", + "word_frequency": 2723 + }, + { + "word": "trama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plot;weave", + "romanization": "trama", + "example_sentence_native": "La trama del film era molto complessa.", + "example_sentence_english": "The plot of the movie was very complex.", + "pos": "noun", + "word_frequency": 2725 + }, + { + "word": "valido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valid;strong", + "romanization": "valido", + "example_sentence_native": "Questa è una ragione valida per agire.", + "example_sentence_english": "This is a valid reason to act.", + "pos": "adjective", + "word_frequency": 2727 + }, + { + "word": "zia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "aunt", + "romanization": "zia", + "example_sentence_native": "Mia zia vive a Roma.", + "example_sentence_english": "My aunt lives in Rome.", + "pos": "noun", + "word_frequency": 2729 + }, + { + "word": "accompagnare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to accompany", + "romanization": "accompagnare", + "example_sentence_native": "Posso accompagnarti alla stazione?", + "example_sentence_english": "Can I accompany you to the station?", + "pos": "verb", + "word_frequency": 2730 + }, + { + "word": "arco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arch;bow", + "romanization": "arco", + "example_sentence_native": "L'arco di trionfo è un monumento famoso.", + "example_sentence_english": "The triumphal arch is a famous monument.", + "pos": "noun", + "word_frequency": 2731 + }, + { + "word": "banco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "desk;bench;counter", + "romanization": "banco", + "example_sentence_native": "Il bambino si siede al suo banco.", + "example_sentence_english": "The child sits at his desk.", + "pos": "noun", + "word_frequency": 2732 + }, + { + "word": "bando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announcement;ban", + "romanization": "bando", + "example_sentence_native": "Hanno pubblicato un bando di concorso.", + "example_sentence_english": "They published a competition announcement.", + "pos": "noun", + "word_frequency": 2733 + }, + { + "word": "calcolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calculation;calculus", + "romanization": "calcolo", + "example_sentence_native": "Il calcolo dei costi è fondamentale.", + "example_sentence_english": "The calculation of costs is fundamental.", + "pos": "noun", + "word_frequency": 2734 + }, + { + "word": "causare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cause", + "romanization": "causare", + "example_sentence_native": "Il maltempo può causare ritardi.", + "example_sentence_english": "Bad weather can cause delays.", + "pos": "verb", + "word_frequency": 2735 + }, + { + "word": "commedia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comedy;play", + "romanization": "commedia", + "example_sentence_native": "Abbiamo visto una commedia divertente a teatro.", + "example_sentence_english": "We saw a funny comedy at the theater.", + "pos": "noun", + "word_frequency": 2736 + }, + { + "word": "competizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competition", + "romanization": "competizione", + "example_sentence_native": "La competizione nel mercato è alta.", + "example_sentence_english": "Competition in the market is high.", + "pos": "noun", + "word_frequency": 2737 + }, + { + "word": "consapevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aware;conscious", + "romanization": "consapevole", + "example_sentence_native": "Sono consapevole dei rischi.", + "example_sentence_english": "I am aware of the risks.", + "pos": "adjective", + "word_frequency": 2738 + }, + { + "word": "continuamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuously;constantly", + "romanization": "continuamente", + "example_sentence_native": "Pioveva continuamente per tutta la settimana.", + "example_sentence_english": "It rained continuously all week.", + "pos": "adverb", + "word_frequency": 2739 + }, + { + "word": "convenzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convention;agreement", + "romanization": "convenzione", + "example_sentence_native": "Hanno firmato una nuova convenzione internazionale.", + "example_sentence_english": "They signed a new international convention.", + "pos": "noun", + "word_frequency": 2740 + }, + { + "word": "curva", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curve;bend", + "romanization": "curva", + "example_sentence_native": "La macchina ha preso la curva troppo velocemente.", + "example_sentence_english": "The car took the curve too fast.", + "pos": "noun", + "word_frequency": 2742 + }, + { + "word": "definitivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "definitively;permanently", + "romanization": "definitivamente", + "example_sentence_native": "Ha deciso di trasferirsi definitivamente all'estero.", + "example_sentence_english": "He decided to move abroad permanently.", + "pos": "adverb", + "word_frequency": 2743 + }, + { + "word": "destinazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destination", + "romanization": "destinazione", + "example_sentence_native": "Qual è la tua destinazione finale?", + "example_sentence_english": "What is your final destination?", + "pos": "noun", + "word_frequency": 2746 + }, + { + "word": "divano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sofa;couch", + "romanization": "divano", + "example_sentence_native": "Mi sono seduto sul divano a leggere.", + "example_sentence_english": "I sat on the sofa to read.", + "pos": "noun", + "word_frequency": 2747 + }, + { + "word": "documentario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "documentary", + "romanization": "documentario", + "example_sentence_native": "Abbiamo guardato un interessante documentario sulla natura.", + "example_sentence_english": "We watched an interesting documentary about nature.", + "pos": "noun", + "word_frequency": 2748 + }, + { + "word": "dotato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gifted;equipped", + "romanization": "dotato", + "example_sentence_native": "È un ragazzo molto dotato in matematica.", + "example_sentence_english": "He is a very gifted boy in mathematics.", + "pos": "adjective", + "word_frequency": 2749 + }, + { + "word": "fama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fame;reputation", + "romanization": "fama", + "example_sentence_native": "La sua fama si è diffusa rapidamente.", + "example_sentence_english": "His fame spread rapidly.", + "pos": "noun", + "word_frequency": 2750 + }, + { + "word": "fascismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fascism", + "romanization": "fascismo", + "example_sentence_native": "Il fascismo è stato un movimento politico del XX secolo.", + "example_sentence_english": "Fascism was a political movement of the 20th century.", + "pos": "noun", + "word_frequency": 2751 + }, + { + "word": "favorevole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favorable", + "romanization": "favorevole", + "example_sentence_native": "Le condizioni meteorologiche sono favorevoli per il viaggio.", + "example_sentence_english": "The weather conditions are favorable for the trip.", + "pos": "adjective", + "word_frequency": 2752 + }, + { + "word": "foglio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sheet (of paper);leaf", + "romanization": "foglio", + "example_sentence_native": "Scrivi il tuo nome su un foglio di carta.", + "example_sentence_english": "Write your name on a sheet of paper.", + "pos": "noun", + "word_frequency": 2753 + }, + { + "word": "folla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowd", + "romanization": "folla", + "example_sentence_native": "C'era una grande folla al concerto.", + "example_sentence_english": "There was a large crowd at the concert.", + "pos": "noun", + "word_frequency": 2754 + }, + { + "word": "furto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theft;robbery", + "romanization": "furto", + "example_sentence_native": "La polizia sta indagando sul furto.", + "example_sentence_english": "The police are investigating the theft.", + "pos": "noun", + "word_frequency": 2755 + }, + { + "word": "grano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain;wheat", + "romanization": "grano", + "example_sentence_native": "Il pane è fatto di grano.", + "example_sentence_english": "Bread is made from wheat.", + "pos": "noun", + "word_frequency": 2756 + }, + { + "word": "invitare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to invite", + "romanization": "invitare", + "example_sentence_native": "Vorrei invitarti alla mia festa.", + "example_sentence_english": "I would like to invite you to my party.", + "pos": "verb", + "word_frequency": 2757 + }, + { + "word": "labbro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lip", + "romanization": "labbro", + "example_sentence_native": "Si è morso il labbro per non ridere.", + "example_sentence_english": "He bit his lip to keep from laughing.", + "pos": "noun", + "word_frequency": 2759 + }, + { + "word": "legislativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislative", + "romanization": "legislativo", + "example_sentence_native": "Il processo legislativo è complesso.", + "example_sentence_english": "The legislative process is complex.", + "pos": "adjective", + "word_frequency": 2760 + }, + { + "word": "libreria", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bookstore;bookshelf", + "romanization": "libreria", + "example_sentence_native": "Vado in libreria a comprare un libro.", + "example_sentence_english": "I'm going to the bookstore to buy a book.", + "pos": "noun", + "word_frequency": 2761 + }, + { + "word": "medaglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medal", + "romanization": "medaglia", + "example_sentence_native": "Ha vinto la medaglia d'oro.", + "example_sentence_english": "He won the gold medal.", + "pos": "noun", + "word_frequency": 2763 + }, + { + "word": "nascondere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hide", + "romanization": "nascondere", + "example_sentence_native": "Il bambino si è nascosto sotto il letto.", + "example_sentence_english": "The child hid under the bed.", + "pos": "verb", + "word_frequency": 2764 + }, + { + "word": "normativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation;legislation", + "romanization": "normativa", + "example_sentence_native": "La nuova normativa entrerà in vigore a breve.", + "example_sentence_english": "The new regulation will come into force soon.", + "pos": "noun", + "word_frequency": 2765 + }, + { + "word": "odore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smell;odor", + "romanization": "odore", + "example_sentence_native": "C'è un buon odore di caffè.", + "example_sentence_english": "There's a good smell of coffee.", + "pos": "noun", + "word_frequency": 2766 + }, + { + "word": "orecchio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ear", + "romanization": "orecchio", + "example_sentence_native": "Mi fa male l'orecchio.", + "example_sentence_english": "My ear hurts.", + "pos": "noun", + "word_frequency": 2767 + }, + { + "word": "parto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "birth;delivery", + "romanization": "parto", + "example_sentence_native": "Il parto è avvenuto senza complicazioni.", + "example_sentence_english": "The birth occurred without complications.", + "pos": "noun", + "word_frequency": 2768 + }, + { + "word": "pittura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painting;paint", + "romanization": "pittura", + "example_sentence_native": "La pittura è la sua passione.", + "example_sentence_english": "Painting is his passion.", + "pos": "noun", + "word_frequency": 2770 + }, + { + "word": "respiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath", + "romanization": "respiro", + "example_sentence_native": "Fece un respiro profondo.", + "example_sentence_english": "He took a deep breath.", + "pos": "noun", + "word_frequency": 2772 + }, + { + "word": "ritmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhythm;pace", + "romanization": "ritmo", + "example_sentence_native": "La musica ha un buon ritmo.", + "example_sentence_english": "The music has a good rhythm.", + "pos": "noun", + "word_frequency": 2773 + }, + { + "word": "saltare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to jump;to skip", + "romanization": "saltare", + "example_sentence_native": "Il cane ama saltare.", + "example_sentence_english": "The dog loves to jump.", + "pos": "verb", + "word_frequency": 2774 + }, + { + "word": "scaricare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to download;to unload", + "romanization": "scaricare", + "example_sentence_native": "Devo scaricare un file dal computer.", + "example_sentence_english": "I need to download a file from the computer.", + "pos": "verb", + "word_frequency": 2775 + }, + { + "word": "segnare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mark;to score", + "romanization": "segnare", + "example_sentence_native": "Ha segnato un gol importante.", + "example_sentence_english": "He scored an important goal.", + "pos": "verb", + "word_frequency": 2776 + }, + { + "word": "sinistro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left;sinister", + "romanization": "sinistro", + "example_sentence_native": "La sua mano sinistra è più forte.", + "example_sentence_english": "His left hand is stronger.", + "pos": "adjective", + "word_frequency": 2777 + }, + { + "word": "sms", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "SMS;text message", + "romanization": "SMS", + "example_sentence_native": "Ti ho inviato un SMS.", + "example_sentence_english": "I sent you an SMS.", + "pos": "noun", + "word_frequency": 2778 + }, + { + "word": "sostituire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to replace;to substitute", + "romanization": "sostituire", + "example_sentence_native": "Dobbiamo sostituire la lampadina.", + "example_sentence_english": "We need to replace the light bulb.", + "pos": "verb", + "word_frequency": 2779 + }, + { + "word": "sparare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shoot", + "romanization": "sparare", + "example_sentence_native": "Il cacciatore ha sparato all'uccello.", + "example_sentence_english": "The hunter shot the bird.", + "pos": "verb", + "word_frequency": 2780 + }, + { + "word": "spinta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "push;impulse", + "romanization": "spinta", + "example_sentence_native": "Mi ha dato una spinta.", + "example_sentence_english": "He gave me a push.", + "pos": "noun", + "word_frequency": 2781 + }, + { + "word": "stabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stability", + "romanization": "stabilità", + "example_sentence_native": "La stabilità economica è importante.", + "example_sentence_english": "Economic stability is important.", + "pos": "noun", + "word_frequency": 2782 + }, + { + "word": "statua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "statue", + "romanization": "statua", + "example_sentence_native": "Hanno eretto una statua in suo onore.", + "example_sentence_english": "They erected a statue in his honor.", + "pos": "noun", + "word_frequency": 2783 + }, + { + "word": "strettamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strictly;closely", + "romanization": "strettamente", + "example_sentence_native": "Sono strettamente correlati.", + "example_sentence_english": "They are strictly related.", + "pos": "adverb", + "word_frequency": 2784 + }, + { + "word": "tagliare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cut", + "romanization": "tagliare", + "example_sentence_native": "Devo tagliare l'erba.", + "example_sentence_english": "I need to cut the grass.", + "pos": "verb", + "word_frequency": 2785 + }, + { + "word": "temere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fear;to dread", + "romanization": "temere", + "example_sentence_native": "Temo il peggio.", + "example_sentence_english": "I fear the worst.", + "pos": "verb", + "word_frequency": 2786 + }, + { + "word": "adatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suitable;appropriate", + "romanization": "adatto", + "example_sentence_native": "Questo vestito è adatto per la festa.", + "example_sentence_english": "This dress is suitable for the party.", + "pos": "adjective", + "word_frequency": 2790 + }, + { + "word": "apparentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparently", + "romanization": "apparentemente", + "example_sentence_native": "Apparentemente, non c'è nessuno in casa.", + "example_sentence_english": "Apparently, there's no one at home.", + "pos": "adverb", + "word_frequency": 2791 + }, + { + "word": "applicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to apply", + "romanization": "applicare", + "example_sentence_native": "Dobbiamo applicare questa regola.", + "example_sentence_english": "We need to apply this rule.", + "pos": "verb", + "word_frequency": 2792 + }, + { + "word": "assicurare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assure;to insure", + "romanization": "assicurare", + "example_sentence_native": "Ti assicuro che andrà tutto bene.", + "example_sentence_english": "I assure you that everything will be fine.", + "pos": "verb", + "word_frequency": 2793 + }, + { + "word": "attaccare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to attack;to attach", + "romanization": "attaccare", + "example_sentence_native": "Il cane ha attaccato il postino.", + "example_sentence_english": "The dog attacked the postman.", + "pos": "verb", + "word_frequency": 2794 + }, + { + "word": "benzina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gasoline;petrol", + "romanization": "benzina", + "example_sentence_native": "Devo fare benzina.", + "example_sentence_english": "I need to get gas.", + "pos": "noun", + "word_frequency": 2795 + }, + { + "word": "bottiglia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bottle", + "romanization": "bottiglia", + "example_sentence_native": "Ho comprato una bottiglia d'acqua.", + "example_sentence_english": "I bought a bottle of water.", + "pos": "noun", + "word_frequency": 2797 + }, + { + "word": "cavaliere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knight;rider;gentleman", + "romanization": "cavaliere", + "example_sentence_native": "Il cavaliere salvò la principessa.", + "example_sentence_english": "The knight saved the princess.", + "pos": "noun", + "word_frequency": 2799 + }, + { + "word": "certificato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certificate", + "romanization": "certificato", + "example_sentence_native": "Ho bisogno di un certificato di nascita.", + "example_sentence_english": "I need a birth certificate.", + "pos": "noun", + "word_frequency": 2800 + }, + { + "word": "compiere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complete;to turn (an age)", + "romanization": "compiere", + "example_sentence_native": "Domani compirà diciotto anni.", + "example_sentence_english": "Tomorrow he will turn eighteen.", + "pos": "verb", + "word_frequency": 2801 + }, + { + "word": "coprire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cover", + "romanization": "coprire", + "example_sentence_native": "Puoi coprire il tavolo con la tovaglia?", + "example_sentence_english": "Can you cover the table with the tablecloth?", + "pos": "verb", + "word_frequency": 2802 + }, + { + "word": "esclusivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusive", + "romanization": "esclusivo", + "example_sentence_native": "Questo è un evento esclusivo per i membri.", + "example_sentence_english": "This is an exclusive event for members.", + "pos": "adjective", + "word_frequency": 2805 + }, + { + "word": "fumetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic book", + "romanization": "fumetto", + "example_sentence_native": "Mi piace leggere i fumetti la domenica.", + "example_sentence_english": "I like reading comic books on Sundays.", + "pos": "noun", + "word_frequency": 2806 + }, + { + "word": "hashtag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hashtag", + "romanization": "hashtag", + "example_sentence_native": "Usa l'hashtag giusto per aumentare la visibilità.", + "example_sentence_english": "Use the right hashtag to increase visibility.", + "pos": "noun", + "word_frequency": 2807 + }, + { + "word": "improvvisamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suddenly", + "romanization": "improvvisamente", + "example_sentence_native": "Improvvisamente, la luce si spense.", + "example_sentence_english": "Suddenly, the light went out.", + "pos": "adverb", + "word_frequency": 2808 + }, + { + "word": "manifesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poster;manifesto", + "romanization": "manifesto", + "example_sentence_native": "Hanno appeso un nuovo manifesto in piazza.", + "example_sentence_english": "They hung a new poster in the square.", + "pos": "noun", + "word_frequency": 2810 + }, + { + "word": "manutenzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance", + "romanization": "manutenzione", + "example_sentence_native": "L'auto ha bisogno di manutenzione regolare.", + "example_sentence_english": "The car needs regular maintenance.", + "pos": "noun", + "word_frequency": 2811 + }, + { + "word": "master", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master's degree;master", + "romanization": "master", + "example_sentence_native": "Ha conseguito un master in economia.", + "example_sentence_english": "He obtained a master's degree in economics.", + "pos": "noun", + "word_frequency": 2812 + }, + { + "word": "occhiale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spectacle;glasses", + "romanization": "occhiale", + "example_sentence_native": "Ho comprato un nuovo paio di occhiali.", + "example_sentence_english": "I bought a new pair of glasses.", + "pos": "noun", + "word_frequency": 2813 + }, + { + "word": "osservare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to observe;to notice", + "romanization": "osservare", + "example_sentence_native": "Dobbiamo osservare attentamente la situazione.", + "example_sentence_english": "We must carefully observe the situation.", + "pos": "verb", + "word_frequency": 2815 + }, + { + "word": "osservazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observation", + "romanization": "osservazione", + "example_sentence_native": "Le sue osservazioni sono sempre molto acute.", + "example_sentence_english": "His observations are always very sharp.", + "pos": "noun", + "word_frequency": 2816 + }, + { + "word": "party", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "party", + "romanization": "party", + "example_sentence_native": "Andiamo a un party stasera?", + "example_sentence_english": "Shall we go to a party tonight?", + "pos": "noun", + "word_frequency": 2817 + }, + { + "word": "parziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partial", + "romanization": "parziale", + "example_sentence_native": "La soluzione è solo parziale.", + "example_sentence_english": "The solution is only partial.", + "pos": "adjective", + "word_frequency": 2818 + }, + { + "word": "pazzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crazy;mad", + "romanization": "pazzo", + "example_sentence_native": "Quel film era davvero pazzo!", + "example_sentence_english": "That movie was really crazy!", + "pos": "adjective", + "word_frequency": 2819 + }, + { + "word": "performance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance", + "romanization": "performance", + "example_sentence_native": "La sua performance sul palco è stata eccezionale.", + "example_sentence_english": "His performance on stage was exceptional.", + "pos": "noun", + "word_frequency": 2820 + }, + { + "word": "polemica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "controversy;polemic", + "romanization": "polemica", + "example_sentence_native": "La decisione ha scatenato una grande polemica.", + "example_sentence_english": "The decision sparked a big controversy.", + "pos": "noun", + "word_frequency": 2821 + }, + { + "word": "prescindere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disregard;to abstract from", + "romanization": "prescindere", + "example_sentence_native": "A prescindere dal risultato, abbiamo fatto del nostro meglio.", + "example_sentence_english": "Regardless of the outcome, we did our best.", + "pos": "verb", + "word_frequency": 2822 + }, + { + "word": "requisito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requirement;prerequisite", + "romanization": "requisito", + "example_sentence_native": "La conoscenza dell'inglese è un requisito fondamentale.", + "example_sentence_english": "Knowledge of English is a fundamental requirement.", + "pos": "noun", + "word_frequency": 2823 + }, + { + "word": "scatola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "box", + "romanization": "scatola", + "example_sentence_native": "Metti i giocattoli nella scatola.", + "example_sentence_english": "Put the toys in the box.", + "pos": "noun", + "word_frequency": 2824 + }, + { + "word": "schema", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scheme;diagram;outline", + "romanization": "schema", + "example_sentence_native": "Ho preparato uno schema per la presentazione.", + "example_sentence_english": "I prepared an outline for the presentation.", + "pos": "noun", + "word_frequency": 2825 + }, + { + "word": "sesto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sixth", + "romanization": "sesto", + "example_sentence_native": "È arrivato sesto nella gara.", + "example_sentence_english": "He came sixth in the race.", + "pos": "adjective", + "word_frequency": 2826 + }, + { + "word": "soggiorno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "living room;stay", + "romanization": "soggiorno", + "example_sentence_native": "Il soggiorno è molto spazioso.", + "example_sentence_english": "The living room is very spacious.", + "pos": "noun", + "word_frequency": 2827 + }, + { + "word": "sportivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sporty;athletic", + "romanization": "sportivo", + "example_sentence_native": "È una persona molto sportiva.", + "example_sentence_english": "He is a very sporty person.", + "pos": "adjective", + "word_frequency": 2828 + }, + { + "word": "sposare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to marry", + "romanization": "sposare", + "example_sentence_native": "Si sposeranno il prossimo anno.", + "example_sentence_english": "They will get married next year.", + "pos": "verb", + "word_frequency": 2829 + }, + { + "word": "temporale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thunderstorm", + "romanization": "temporale", + "example_sentence_native": "C'è stato un forte temporale ieri sera.", + "example_sentence_english": "There was a strong thunderstorm last night.", + "pos": "noun", + "word_frequency": 2830 + }, + { + "word": "visibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visible", + "romanization": "visibile", + "example_sentence_native": "La montagna è visibile da qui.", + "example_sentence_english": "The mountain is visible from here.", + "pos": "adjective", + "word_frequency": 2832 + }, + { + "word": "accusare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accuse", + "romanization": "accusare", + "example_sentence_native": "Lo hanno accusato di furto.", + "example_sentence_english": "They accused him of theft.", + "pos": "verb", + "word_frequency": 2833 + }, + { + "word": "acido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acid", + "romanization": "acido", + "example_sentence_native": "L'acido può essere pericoloso.", + "example_sentence_english": "Acid can be dangerous.", + "pos": "noun", + "word_frequency": 2834 + }, + { + "word": "aeroporto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "airport", + "romanization": "aeroporto", + "example_sentence_native": "Andiamo all'aeroporto per prendere il volo.", + "example_sentence_english": "We are going to the airport to catch the flight.", + "pos": "noun", + "word_frequency": 2835 + }, + { + "word": "asilo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kindergarten;asylum", + "romanization": "asilo", + "example_sentence_native": "Il bambino va all'asilo nido.", + "example_sentence_english": "The child goes to kindergarten.", + "pos": "noun", + "word_frequency": 2837 + }, + { + "word": "buco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hole", + "romanization": "buco", + "example_sentence_native": "C'è un buco nella mia tasca.", + "example_sentence_english": "There's a hole in my pocket.", + "pos": "noun", + "word_frequency": 2839 + }, + { + "word": "caos", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chaos", + "romanization": "caos", + "example_sentence_native": "Dopo la festa, la casa era nel caos.", + "example_sentence_english": "After the party, the house was in chaos.", + "pos": "noun", + "word_frequency": 2840 + }, + { + "word": "conseguente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequent;resulting", + "romanization": "conseguente", + "example_sentence_native": "La decisione ha avuto conseguenze importanti.", + "example_sentence_english": "The decision had important consequent effects.", + "pos": "adjective", + "word_frequency": 2842 + }, + { + "word": "corrispondente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corresponding;equivalent", + "romanization": "corrispondente", + "example_sentence_native": "Trova il numero corrispondente nella lista.", + "example_sentence_english": "Find the corresponding number in the list.", + "pos": "adjective", + "word_frequency": 2843 + }, + { + "word": "divisa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uniform;currency", + "romanization": "divisa", + "example_sentence_native": "I soldati indossavano la loro divisa.", + "example_sentence_english": "The soldiers wore their uniform.", + "pos": "noun", + "word_frequency": 2845 + }, + { + "word": "docente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teacher;lecturer", + "romanization": "docente", + "example_sentence_native": "Il docente ha spiegato la lezione.", + "example_sentence_english": "The teacher explained the lesson.", + "pos": "noun", + "word_frequency": 2847 + }, + { + "word": "eco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "echo", + "romanization": "eco", + "example_sentence_native": "L'eco della sua voce risuonava nella valle.", + "example_sentence_english": "The echo of his voice resonated in the valley.", + "pos": "noun", + "word_frequency": 2848 + }, + { + "word": "entusiasmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiasm", + "romanization": "entusiasmo", + "example_sentence_native": "Ha mostrato grande entusiasmo per il nuovo progetto.", + "example_sentence_english": "He showed great enthusiasm for the new project.", + "pos": "noun", + "word_frequency": 2849 + }, + { + "word": "espansione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expansion", + "romanization": "espansione", + "example_sentence_native": "L'azienda è in fase di espansione.", + "example_sentence_english": "The company is in a phase of expansion.", + "pos": "noun", + "word_frequency": 2850 + }, + { + "word": "festeggiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to celebrate", + "romanization": "festeggiare", + "example_sentence_native": "Dobbiamo festeggiare la tua promozione!", + "example_sentence_english": "We must celebrate your promotion!", + "pos": "verb", + "word_frequency": 2851 + }, + { + "word": "follia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madness;folly", + "romanization": "follia", + "example_sentence_native": "Quella decisione è stata una vera follia.", + "example_sentence_english": "That decision was pure madness.", + "pos": "noun", + "word_frequency": 2852 + }, + { + "word": "giungere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrive;to reach", + "romanization": "giungere", + "example_sentence_native": "Siamo giunti alla fine del viaggio.", + "example_sentence_english": "We have arrived at the end of the journey.", + "pos": "verb", + "word_frequency": 2853 + }, + { + "word": "grafica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graphics;graphic design", + "romanization": "grafica", + "example_sentence_native": "La grafica del nuovo videogioco è impressionante.", + "example_sentence_english": "The graphics of the new video game are impressive.", + "pos": "noun", + "word_frequency": 2854 + }, + { + "word": "introdurre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to introduce;to insert", + "romanization": "introdurre", + "example_sentence_native": "Vorrei introdurre un nuovo argomento.", + "example_sentence_english": "I would like to introduce a new topic.", + "pos": "verb", + "word_frequency": 2855 + }, + { + "word": "miracolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miracle", + "romanization": "miracolo", + "example_sentence_native": "È stato un vero miracolo che nessuno si sia fatto male.", + "example_sentence_english": "It was a true miracle that no one got hurt.", + "pos": "noun", + "word_frequency": 2857 + }, + { + "word": "monumento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monument", + "romanization": "monumento", + "example_sentence_native": "Abbiamo visitato il monumento più famoso della città.", + "example_sentence_english": "We visited the most famous monument in the city.", + "pos": "noun", + "word_frequency": 2858 + }, + { + "word": "nudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nude;naked", + "romanization": "nudo", + "example_sentence_native": "L'artista ha dipinto un nudo.", + "example_sentence_english": "The artist painted a nude.", + "pos": "noun", + "word_frequency": 2859 + }, + { + "word": "osso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bone", + "romanization": "osso", + "example_sentence_native": "Il cane rosicchiava un osso.", + "example_sentence_english": "The dog was gnawing on a bone.", + "pos": "noun", + "word_frequency": 2860 + }, + { + "word": "percezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perception", + "romanization": "percezione", + "example_sentence_native": "La sua percezione della realtà è distorta.", + "example_sentence_english": "His perception of reality is distorted.", + "pos": "noun", + "word_frequency": 2861 + }, + { + "word": "piacevole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pleasant;enjoyable", + "romanization": "piacevole", + "example_sentence_native": "È stata una serata molto piacevole.", + "example_sentence_english": "It was a very pleasant evening.", + "pos": "adjective", + "word_frequency": 2862 + }, + { + "word": "pio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pious;devout", + "romanization": "pio", + "example_sentence_native": "Era un uomo pio e rispettoso.", + "example_sentence_english": "He was a pious and respectful man.", + "pos": "adjective", + "word_frequency": 2863 + }, + { + "word": "prete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priest", + "romanization": "prete", + "example_sentence_native": "Il prete ha celebrato la messa.", + "example_sentence_english": "The priest celebrated the mass.", + "pos": "noun", + "word_frequency": 2864 + }, + { + "word": "prigioniero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prisoner", + "romanization": "prigioniero", + "example_sentence_native": "Il prigioniero è fuggito dalla cella.", + "example_sentence_english": "The prisoner escaped from the cell.", + "pos": "noun", + "word_frequency": 2865 + }, + { + "word": "progresso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "progress", + "romanization": "progresso", + "example_sentence_native": "Abbiamo fatto grandi progressi nel progetto.", + "example_sentence_english": "We made great progress on the project.", + "pos": "noun", + "word_frequency": 2866 + }, + { + "word": "proseguire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to continue;to proceed", + "romanization": "proseguire", + "example_sentence_native": "Dobbiamo proseguire il nostro lavoro.", + "example_sentence_english": "We must continue our work.", + "pos": "verb", + "word_frequency": 2867 + }, + { + "word": "reparto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "department;ward", + "romanization": "reparto", + "example_sentence_native": "Lavora nel reparto marketing.", + "example_sentence_english": "He works in the marketing department.", + "pos": "noun", + "word_frequency": 2868 + }, + { + "word": "riva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank;shore;riverbank", + "romanization": "riva", + "example_sentence_native": "Ci siamo seduti sulla riva del fiume.", + "example_sentence_english": "We sat on the riverbank.", + "pos": "noun", + "word_frequency": 2870 + }, + { + "word": "rivolgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn;to address;to direct", + "romanization": "rivolgere", + "example_sentence_native": "Si è rivolto al pubblico con un discorso.", + "example_sentence_english": "He addressed the public with a speech.", + "pos": "verb", + "word_frequency": 2871 + }, + { + "word": "rottura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "break;rupture;breakage", + "romanization": "rottura", + "example_sentence_native": "La rottura del vaso è stata accidentale.", + "example_sentence_english": "The breakage of the vase was accidental.", + "pos": "noun", + "word_frequency": 2872 + }, + { + "word": "sano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "healthy;sound", + "romanization": "sano", + "example_sentence_native": "È importante mangiare sano.", + "example_sentence_english": "It's important to eat healthy.", + "pos": "adjective", + "word_frequency": 2873 + }, + { + "word": "schiavo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slave", + "romanization": "schiavo", + "example_sentence_native": "Gli schiavi lavoravano nei campi.", + "example_sentence_english": "The slaves worked in the fields.", + "pos": "noun", + "word_frequency": 2874 + }, + { + "word": "tomba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tomb;grave", + "romanization": "tomba", + "example_sentence_native": "Hanno visitato la tomba del re.", + "example_sentence_english": "They visited the king's tomb.", + "pos": "noun", + "word_frequency": 2875 + }, + { + "word": "tristezza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sadness", + "romanization": "tristezza", + "example_sentence_native": "La sua tristezza era evidente.", + "example_sentence_english": "His sadness was evident.", + "pos": "noun", + "word_frequency": 2876 + }, + { + "word": "accademia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "academy", + "romanization": "accademia", + "example_sentence_native": "Ha studiato all'accademia di belle arti.", + "example_sentence_english": "He studied at the academy of fine arts.", + "pos": "noun", + "word_frequency": 2879 + }, + { + "word": "alleanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alliance", + "romanization": "alleanza", + "example_sentence_native": "Hanno formato un'alleanza per combattere il nemico comune.", + "example_sentence_english": "They formed an alliance to fight the common enemy.", + "pos": "noun", + "word_frequency": 2880 + }, + { + "word": "alleato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ally", + "romanization": "alleato", + "example_sentence_native": "La Francia è un nostro alleato storico.", + "example_sentence_english": "France is our historical ally.", + "pos": "noun", + "word_frequency": 2881 + }, + { + "word": "amministratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "administrator", + "romanization": "amministratore", + "example_sentence_native": "L'amministratore delegato ha annunciato le nuove politiche.", + "example_sentence_english": "The CEO announced the new policies.", + "pos": "noun", + "word_frequency": 2882 + }, + { + "word": "ampiamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "widely", + "romanization": "ampiamente", + "example_sentence_native": "La sua teoria è ampiamente accettata.", + "example_sentence_english": "His theory is widely accepted.", + "pos": "adverb", + "word_frequency": 2883 + }, + { + "word": "atmosfera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atmosphere", + "romanization": "atmosfera", + "example_sentence_native": "L'atmosfera nella stanza era molto tesa.", + "example_sentence_english": "The atmosphere in the room was very tense.", + "pos": "noun", + "word_frequency": 2884 + }, + { + "word": "bici", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bike", + "romanization": "bici", + "example_sentence_native": "Vado al lavoro in bici ogni giorno.", + "example_sentence_english": "I go to work by bike every day.", + "pos": "noun", + "word_frequency": 2885 + }, + { + "word": "borgo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "village", + "romanization": "borgo", + "example_sentence_native": "Abbiamo visitato un bellissimo borgo medievale in Toscana.", + "example_sentence_english": "We visited a beautiful medieval village in Tuscany.", + "pos": "noun", + "word_frequency": 2886 + }, + { + "word": "calo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drop", + "romanization": "calo", + "example_sentence_native": "C'è stato un calo significativo delle vendite.", + "example_sentence_english": "There has been a significant drop in sales.", + "pos": "noun", + "word_frequency": 2887 + }, + { + "word": "cancellare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cancel", + "romanization": "cancellare", + "example_sentence_native": "Devo cancellare l'appuntamento di domani.", + "example_sentence_english": "I need to cancel tomorrow's appointment.", + "pos": "verb", + "word_frequency": 2888 + }, + { + "word": "depressione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depression", + "romanization": "depressione", + "example_sentence_native": "Molte persone soffrono di depressione stagionale.", + "example_sentence_english": "Many people suffer from seasonal depression.", + "pos": "noun", + "word_frequency": 2890 + }, + { + "word": "dramma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drama", + "romanization": "dramma", + "example_sentence_native": "Il suo ultimo film è un dramma intenso.", + "example_sentence_english": "His latest film is an intense drama.", + "pos": "noun", + "word_frequency": 2892 + }, + { + "word": "duomo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cathedral", + "romanization": "duomo", + "example_sentence_native": "Abbiamo visitato il Duomo di Milano.", + "example_sentence_english": "We visited the Milan Cathedral.", + "pos": "noun", + "word_frequency": 2893 + }, + { + "word": "favorire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to favor", + "romanization": "favorire", + "example_sentence_native": "Queste politiche favoriscono la crescita economica.", + "example_sentence_english": "These policies favor economic growth.", + "pos": "verb", + "word_frequency": 2895 + }, + { + "word": "fiamma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flame", + "romanization": "fiamma", + "example_sentence_native": "La fiamma della candela tremolava nel vento.", + "example_sentence_english": "The candle flame flickered in the wind.", + "pos": "noun", + "word_frequency": 2896 + }, + { + "word": "indicazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indication", + "romanization": "indicazione", + "example_sentence_native": "Segui le indicazioni per raggiungere la stazione.", + "example_sentence_english": "Follow the directions to reach the station.", + "pos": "noun", + "word_frequency": 2898 + }, + { + "word": "indossare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wear", + "romanization": "indossare", + "example_sentence_native": "Mi piace indossare vestiti comodi.", + "example_sentence_english": "I like to wear comfortable clothes.", + "pos": "verb", + "word_frequency": 2899 + }, + { + "word": "insulto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insult", + "romanization": "insulto", + "example_sentence_native": "Non tollero gli insulti.", + "example_sentence_english": "I don't tolerate insults.", + "pos": "noun", + "word_frequency": 2900 + }, + { + "word": "liberamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freely", + "romanization": "liberamente", + "example_sentence_native": "Puoi esprimere le tue opinioni liberamente.", + "example_sentence_english": "You can express your opinions freely.", + "pos": "adverb", + "word_frequency": 2901 + }, + { + "word": "malato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sick", + "romanization": "malato", + "example_sentence_native": "Mi sento malato oggi.", + "example_sentence_english": "I feel sick today.", + "pos": "adjective", + "word_frequency": 2902 + }, + { + "word": "merce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goods", + "romanization": "merce", + "example_sentence_native": "La merce è stata spedita ieri.", + "example_sentence_english": "The goods were shipped yesterday.", + "pos": "noun", + "word_frequency": 2903 + }, + { + "word": "miglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mile", + "romanization": "miglio", + "example_sentence_native": "La città dista solo un miglio da qui.", + "example_sentence_english": "The city is only a mile from here.", + "pos": "noun", + "word_frequency": 2904 + }, + { + "word": "milanese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Milanese", + "romanization": "milanese", + "example_sentence_native": "La cucina milanese è famosa per il risotto.", + "example_sentence_english": "Milanese cuisine is famous for its risotto.", + "pos": "adjective", + "word_frequency": 2905 + }, + { + "word": "mostro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monster", + "romanization": "mostro", + "example_sentence_native": "I bambini avevano paura del mostro sotto il letto.", + "example_sentence_english": "The children were afraid of the monster under the bed.", + "pos": "noun", + "word_frequency": 2906 + }, + { + "word": "motivazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motivation", + "romanization": "motivazione", + "example_sentence_native": "La sua motivazione per studiare è molto forte.", + "example_sentence_english": "His motivation to study is very strong.", + "pos": "noun", + "word_frequency": 2907 + }, + { + "word": "netto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "net", + "romanization": "netto", + "example_sentence_native": "Il guadagno netto è stato superiore alle aspettative.", + "example_sentence_english": "The net profit was higher than expected.", + "pos": "adjective", + "word_frequency": 2908 + }, + { + "word": "nucleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nucleus", + "romanization": "nucleo", + "example_sentence_native": "Il nucleo della Terra è composto principalmente da ferro.", + "example_sentence_english": "The Earth's core is mainly composed of iron.", + "pos": "noun", + "word_frequency": 2909 + }, + { + "word": "orientamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orientation", + "romanization": "orientamento", + "example_sentence_native": "Ho bisogno di un orientamento per la mia carriera.", + "example_sentence_english": "I need guidance for my career.", + "pos": "noun", + "word_frequency": 2910 + }, + { + "word": "passeggero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passenger", + "romanization": "passeggero", + "example_sentence_native": "Tutti i passeggeri devono allacciare le cinture.", + "example_sentence_english": "All passengers must fasten their seatbelts.", + "pos": "noun", + "word_frequency": 2911 + }, + { + "word": "pavimento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "floor", + "romanization": "pavimento", + "example_sentence_native": "Il pavimento è sporco, devo pulirlo.", + "example_sentence_english": "The floor is dirty, I need to clean it.", + "pos": "noun", + "word_frequency": 2912 + }, + { + "word": "precedentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "previously", + "romanization": "precedentemente", + "example_sentence_native": "Come precedentemente menzionato, il progetto è stato ritardato.", + "example_sentence_english": "As previously mentioned, the project has been delayed.", + "pos": "adverb", + "word_frequency": 2913 + }, + { + "word": "ruota", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wheel", + "romanization": "ruota", + "example_sentence_native": "La ruota della bicicletta è sgonfia.", + "example_sentence_english": "The bicycle wheel is flat.", + "pos": "noun", + "word_frequency": 2914 + }, + { + "word": "sanzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanction", + "romanization": "sanzione", + "example_sentence_native": "Hanno imposto nuove sanzioni economiche.", + "example_sentence_english": "They imposed new economic sanctions.", + "pos": "noun", + "word_frequency": 2916 + }, + { + "word": "sensibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitivity", + "romanization": "sensibilità", + "example_sentence_native": "Ha una grande sensibilità artistica.", + "example_sentence_english": "He has great artistic sensibility.", + "pos": "noun", + "word_frequency": 2917 + }, + { + "word": "sindacato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade union", + "romanization": "sindacato", + "example_sentence_native": "Il sindacato ha indetto uno sciopero.", + "example_sentence_english": "The trade union called a strike.", + "pos": "noun", + "word_frequency": 2918 + }, + { + "word": "sintomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symptom", + "romanization": "sintomo", + "example_sentence_native": "La febbre è un sintomo comune dell'influenza.", + "example_sentence_english": "Fever is a common symptom of the flu.", + "pos": "noun", + "word_frequency": 2919 + }, + { + "word": "socialista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialist", + "romanization": "socialista", + "example_sentence_native": "È un politico con idee socialiste.", + "example_sentence_english": "He is a politician with socialist ideas.", + "pos": "adjective", + "word_frequency": 2920 + }, + { + "word": "sorveglianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surveillance;supervision", + "romanization": "sorveglianza", + "example_sentence_native": "La sorveglianza è stata intensificata dopo l'incidente.", + "example_sentence_english": "Surveillance was intensified after the incident.", + "pos": "noun", + "word_frequency": 2921 + }, + { + "word": "sostanzialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substantially;essentially", + "romanization": "sostanzialmente", + "example_sentence_native": "Sostanzialmente, il problema è la mancanza di fondi.", + "example_sentence_english": "Substantially, the problem is the lack of funds.", + "pos": "adverb", + "word_frequency": 2922 + }, + { + "word": "splendido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splendid;magnificent", + "romanization": "splendido", + "example_sentence_native": "Abbiamo trascorso una splendida giornata al mare.", + "example_sentence_english": "We spent a splendid day at the beach.", + "pos": "adjective", + "word_frequency": 2923 + }, + { + "word": "stanco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tired", + "romanization": "stanco", + "example_sentence_native": "Sono molto stanco dopo il lavoro.", + "example_sentence_english": "I am very tired after work.", + "pos": "adjective", + "word_frequency": 2924 + }, + { + "word": "taxi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "taxi", + "romanization": "taxi", + "example_sentence_native": "Prendiamo un taxi per la stazione.", + "example_sentence_english": "Let's take a taxi to the station.", + "pos": "noun", + "word_frequency": 2926 + }, + { + "word": "torto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wrong (as in 'to be wrong');injustice", + "romanization": "torto", + "example_sentence_native": "Hai torto, non è così.", + "example_sentence_english": "You are wrong, it's not like that.", + "pos": "noun", + "word_frequency": 2927 + }, + { + "word": "acciaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steel", + "romanization": "acciaio", + "example_sentence_native": "Il ponte è costruito in acciaio.", + "example_sentence_english": "The bridge is built of steel.", + "pos": "noun", + "word_frequency": 2929 + }, + { + "word": "adolescente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "adolescent;teenager", + "romanization": "adolescente", + "example_sentence_native": "Mia sorella è un'adolescente.", + "example_sentence_english": "My sister is an adolescent.", + "pos": "noun", + "word_frequency": 2930 + }, + { + "word": "adottare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adopt", + "romanization": "adottare", + "example_sentence_native": "Hanno deciso di adottare un bambino.", + "example_sentence_english": "They decided to adopt a child.", + "pos": "verb", + "word_frequency": 2931 + }, + { + "word": "allenamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "training;workout", + "romanization": "allenamento", + "example_sentence_native": "L'allenamento di oggi è stato molto intenso.", + "example_sentence_english": "Today's training was very intense.", + "pos": "noun", + "word_frequency": 2933 + }, + { + "word": "anniversario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "anniversary", + "romanization": "anniversario", + "example_sentence_native": "Oggi è il nostro anniversario di matrimonio.", + "example_sentence_english": "Today is our wedding anniversary.", + "pos": "noun", + "word_frequency": 2934 + }, + { + "word": "assegnare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assign;to allocate", + "romanization": "assegnare", + "example_sentence_native": "Mi hanno assegnato un nuovo progetto.", + "example_sentence_english": "They assigned me a new project.", + "pos": "verb", + "word_frequency": 2935 + }, + { + "word": "citazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quote;citation;summons", + "romanization": "citazione", + "example_sentence_native": "Ha usato una citazione famosa nel suo discorso.", + "example_sentence_english": "He used a famous quote in his speech.", + "pos": "noun", + "word_frequency": 2936 + }, + { + "word": "crescente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growing;increasing", + "romanization": "crescente", + "example_sentence_native": "C'è una crescente domanda di energia rinnovabile.", + "example_sentence_english": "There is a growing demand for renewable energy.", + "pos": "adjective", + "word_frequency": 2937 + }, + { + "word": "cugino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cousin", + "romanization": "cugino", + "example_sentence_native": "Mio cugino vive a Roma.", + "example_sentence_english": "My cousin lives in Rome.", + "pos": "noun", + "word_frequency": 2938 + }, + { + "word": "disponibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "availability;willingness", + "romanization": "disponibilità", + "example_sentence_native": "Ho piena disponibilità a lavorare nel fine settimana.", + "example_sentence_english": "I have full availability to work on the weekend.", + "pos": "noun", + "word_frequency": 2941 + }, + { + "word": "ditta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm;company", + "romanization": "ditta", + "example_sentence_native": "Lavora per una ditta di costruzioni.", + "example_sentence_english": "He works for a construction firm.", + "pos": "noun", + "word_frequency": 2942 + }, + { + "word": "divertimento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fun;entertainment", + "romanization": "divertimento", + "example_sentence_native": "Ci siamo divertiti molto, è stato un vero divertimento.", + "example_sentence_english": "We had a lot of fun, it was real entertainment.", + "pos": "noun", + "word_frequency": 2943 + }, + { + "word": "eccezionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exceptional;outstanding", + "romanization": "eccezionale", + "example_sentence_native": "Ha fatto un lavoro eccezionale.", + "example_sentence_english": "He did an exceptional job.", + "pos": "adjective", + "word_frequency": 2944 + }, + { + "word": "editoriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editorial", + "romanization": "editoriale", + "example_sentence_native": "Ha scritto un articolo editoriale per il giornale.", + "example_sentence_english": "He wrote an editorial article for the newspaper.", + "pos": "adjective", + "word_frequency": 2945 + }, + { + "word": "eseguire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to execute;to perform", + "romanization": "eseguire", + "example_sentence_native": "Deve eseguire gli ordini senza discutere.", + "example_sentence_english": "He must execute the orders without discussion.", + "pos": "verb", + "word_frequency": 2946 + }, + { + "word": "estensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;extent", + "romanization": "estensione", + "example_sentence_native": "L'estensione del progetto è stata approvata.", + "example_sentence_english": "The extension of the project was approved.", + "pos": "noun", + "word_frequency": 2947 + }, + { + "word": "febbre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fever", + "romanization": "febbre", + "example_sentence_native": "Ho la febbre alta.", + "example_sentence_english": "I have a high fever.", + "pos": "noun", + "word_frequency": 2949 + }, + { + "word": "fresco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fresh;cool", + "romanization": "fresco", + "example_sentence_native": "L'aria è fresca questa mattina.", + "example_sentence_english": "The air is cool this morning.", + "pos": "adjective", + "word_frequency": 2950 + }, + { + "word": "fuggire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to escape;to flee", + "romanization": "fuggire", + "example_sentence_native": "Il prigioniero è riuscito a fuggire.", + "example_sentence_english": "The prisoner managed to escape.", + "pos": "verb", + "word_frequency": 2951 + }, + { + "word": "funzionamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functioning;operation", + "romanization": "funzionamento", + "example_sentence_native": "Il funzionamento del nuovo sistema è complesso.", + "example_sentence_english": "The operation of the new system is complex.", + "pos": "noun", + "word_frequency": 2952 + }, + { + "word": "guaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trouble;mess", + "romanization": "guaio", + "example_sentence_native": "Siamo in un bel guaio.", + "example_sentence_english": "We are in a real mess.", + "pos": "noun", + "word_frequency": 2953 + }, + { + "word": "imprenditore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrepreneur;businessman", + "romanization": "imprenditore", + "example_sentence_native": "È un giovane imprenditore di successo.", + "example_sentence_english": "He is a successful young entrepreneur.", + "pos": "noun", + "word_frequency": 2954 + }, + { + "word": "includere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to include", + "romanization": "includere", + "example_sentence_native": "Il prezzo include la colazione.", + "example_sentence_english": "The price includes breakfast.", + "pos": "verb", + "word_frequency": 2955 + }, + { + "word": "info", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "info;information (informal)", + "romanization": "info", + "example_sentence_native": "Ho bisogno di più info su questo.", + "example_sentence_english": "I need more info on this.", + "pos": "noun", + "word_frequency": 2956 + }, + { + "word": "insegnamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teaching;lesson", + "romanization": "insegnamento", + "example_sentence_native": "L'insegnamento è una professione nobile.", + "example_sentence_english": "Teaching is a noble profession.", + "pos": "noun", + "word_frequency": 2957 + }, + { + "word": "metropolitana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "subway", + "romanization": "metropolitana", + "example_sentence_native": "Prendiamo la metropolitana per andare in centro.", + "example_sentence_english": "Let's take the subway to go downtown.", + "pos": "noun", + "word_frequency": 2961 + }, + { + "word": "mini", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mini", + "romanization": "mini", + "example_sentence_native": "Ha comprato una mini gonna.", + "example_sentence_english": "She bought a mini skirt.", + "pos": "adjective", + "word_frequency": 2962 + }, + { + "word": "occidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "West", + "romanization": "occidente", + "example_sentence_native": "La cultura dell'Occidente è molto diversa da quella dell'Oriente.", + "example_sentence_english": "The culture of the West is very different from that of the East.", + "pos": "noun", + "word_frequency": 2965 + }, + { + "word": "panorama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panorama", + "romanization": "panorama", + "example_sentence_native": "Da qui si gode un panorama mozzafiato.", + "example_sentence_english": "From here you can enjoy a breathtaking view.", + "pos": "noun", + "word_frequency": 2966 + }, + { + "word": "pratico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "practical", + "romanization": "pratico", + "example_sentence_native": "È una soluzione molto pratica per il problema.", + "example_sentence_english": "It's a very practical solution to the problem.", + "pos": "adjective", + "word_frequency": 2968 + }, + { + "word": "precisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precision", + "romanization": "precisione", + "example_sentence_native": "Ha eseguito il lavoro con grande precisione.", + "example_sentence_english": "He performed the work with great precision.", + "pos": "noun", + "word_frequency": 2969 + }, + { + "word": "prevenzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prevention", + "romanization": "prevenzione", + "example_sentence_native": "La prevenzione è fondamentale per la salute.", + "example_sentence_english": "Prevention is fundamental for health.", + "pos": "noun", + "word_frequency": 2970 + }, + { + "word": "privo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devoid of", + "romanization": "privo", + "example_sentence_native": "Era privo di sensi dopo l'incidente.", + "example_sentence_english": "He was unconscious after the accident.", + "pos": "adjective", + "word_frequency": 2971 + }, + { + "word": "procedimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procedure", + "romanization": "procedimento", + "example_sentence_native": "Il procedimento per ottenere il visto è complicato.", + "example_sentence_english": "The procedure to obtain the visa is complicated.", + "pos": "noun", + "word_frequency": 2972 + }, + { + "word": "procura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "power of attorney", + "romanization": "procura", + "example_sentence_native": "Ha firmato una procura per vendere la casa.", + "example_sentence_english": "He signed a power of attorney to sell the house.", + "pos": "noun", + "word_frequency": 2973 + }, + { + "word": "proveniente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coming from", + "romanization": "proveniente", + "example_sentence_native": "Il pacco è proveniente dalla Cina.", + "example_sentence_english": "The package is coming from China.", + "pos": "adjective", + "word_frequency": 2974 + }, + { + "word": "pulizia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cleaning", + "romanization": "pulizia", + "example_sentence_native": "Dobbiamo fare le pulizie di primavera.", + "example_sentence_english": "We need to do the spring cleaning.", + "pos": "noun", + "word_frequency": 2975 + }, + { + "word": "radicale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radical", + "romanization": "radicale", + "example_sentence_native": "Ha proposto un cambiamento radicale.", + "example_sentence_english": "He proposed a radical change.", + "pos": "adjective", + "word_frequency": 2977 + }, + { + "word": "sanitario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "health-related", + "romanization": "sanitario", + "example_sentence_native": "Il sistema sanitario italiano è pubblico.", + "example_sentence_english": "The Italian healthcare system is public.", + "pos": "adjective", + "word_frequency": 2979 + }, + { + "word": "scorta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stock", + "romanization": "scorta", + "example_sentence_native": "Abbiamo una buona scorta di cibo.", + "example_sentence_english": "We have a good stock of food.", + "pos": "noun", + "word_frequency": 2980 + }, + { + "word": "sondaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poll", + "romanization": "sondaggio", + "example_sentence_native": "Secondo un recente sondaggio, il partito è in crescita.", + "example_sentence_english": "According to a recent poll, the party is growing.", + "pos": "noun", + "word_frequency": 2982 + }, + { + "word": "sottile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thin", + "romanization": "sottile", + "example_sentence_native": "Ha una figura molto sottile.", + "example_sentence_english": "She has a very thin figure.", + "pos": "adjective", + "word_frequency": 2983 + }, + { + "word": "spingere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to push", + "romanization": "spingere", + "example_sentence_native": "Devi spingere la porta per aprirla.", + "example_sentence_english": "You have to push the door to open it.", + "pos": "verb", + "word_frequency": 2984 + }, + { + "word": "stanotte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tonight", + "romanization": "stanotte", + "example_sentence_native": "Andiamo al cinema stanotte.", + "example_sentence_english": "Let's go to the cinema tonight.", + "pos": "adverb", + "word_frequency": 2985 + }, + { + "word": "trasparenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transparency", + "romanization": "trasparenza", + "example_sentence_native": "Il governo ha promesso maggiore trasparenza.", + "example_sentence_english": "The government promised greater transparency.", + "pos": "noun", + "word_frequency": 2986 + }, + { + "word": "trucco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "makeup", + "romanization": "trucco", + "example_sentence_native": "Si è messa il trucco prima di uscire.", + "example_sentence_english": "She put on her makeup before going out.", + "pos": "noun", + "word_frequency": 2987 + }, + { + "word": "veicolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vehicle", + "romanization": "veicolo", + "example_sentence_native": "Parcheggia il veicolo nel garage.", + "example_sentence_english": "Park the vehicle in the garage.", + "pos": "noun", + "word_frequency": 2988 + }, + { + "word": "abitudine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habit", + "romanization": "abitudine", + "example_sentence_native": "Ho l'abitudine di leggere prima di dormire.", + "example_sentence_english": "I have the habit of reading before sleeping.", + "pos": "noun", + "word_frequency": 2990 + }, + { + "word": "allenatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach", + "romanization": "allenatore", + "example_sentence_native": "L'allenatore ha preparato la squadra per la partita.", + "example_sentence_english": "The coach prepared the team for the match.", + "pos": "noun", + "word_frequency": 2991 + }, + { + "word": "augurare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wish", + "romanization": "augurare", + "example_sentence_native": "Ti auguro un buon compleanno!", + "example_sentence_english": "I wish you a happy birthday!", + "pos": "verb", + "word_frequency": 2992 + }, + { + "word": "chitarra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "guitar", + "romanization": "chitarra", + "example_sentence_native": "Suono la chitarra da quando ero bambino.", + "example_sentence_english": "I've been playing the guitar since I was a child.", + "pos": "noun", + "word_frequency": 2994 + }, + { + "word": "console", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "console", + "romanization": "console", + "example_sentence_native": "Ha comprato una nuova console per videogiochi.", + "example_sentence_english": "He bought a new video game console.", + "pos": "noun", + "word_frequency": 2997 + }, + { + "word": "curare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cure", + "romanization": "curare", + "example_sentence_native": "Il medico ha curato la sua malattia.", + "example_sentence_english": "The doctor cured his illness.", + "pos": "verb", + "word_frequency": 2998 + }, + { + "word": "descrivere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to describe", + "romanization": "descrivere", + "example_sentence_native": "Puoi descrivere la tua casa?", + "example_sentence_english": "Can you describe your house?", + "pos": "verb", + "word_frequency": 3000 + }, + { + "word": "destinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to destine;to allocate", + "romanization": "destinare", + "example_sentence_native": "Hanno destinato fondi al progetto.", + "example_sentence_english": "They allocated funds to the project.", + "pos": "verb", + "word_frequency": 3001 + }, + { + "word": "determinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to determine", + "romanization": "determinare", + "example_sentence_native": "Il risultato determinerà il vincitore.", + "example_sentence_english": "The result will determine the winner.", + "pos": "verb", + "word_frequency": 3002 + }, + { + "word": "determinazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determination", + "romanization": "determinazione", + "example_sentence_native": "Ha mostrato grande determinazione nel raggiungere i suoi obiettivi.", + "example_sentence_english": "He showed great determination in achieving his goals.", + "pos": "noun", + "word_frequency": 3003 + }, + { + "word": "dispositivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device", + "romanization": "dispositivo", + "example_sentence_native": "Questo dispositivo è molto utile.", + "example_sentence_english": "This device is very useful.", + "pos": "noun", + "word_frequency": 3004 + }, + { + "word": "fallo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foul;mistake", + "romanization": "fallo", + "example_sentence_native": "L'arbitro ha fischiato un fallo.", + "example_sentence_english": "The referee whistled a foul.", + "pos": "noun", + "word_frequency": 3005 + }, + { + "word": "fortunato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lucky", + "romanization": "fortunato", + "example_sentence_native": "Sono stato molto fortunato a trovare questo.", + "example_sentence_english": "I was very lucky to find this.", + "pos": "adjective", + "word_frequency": 3006 + }, + { + "word": "gazzetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gazette;newspaper", + "romanization": "gazzetta", + "example_sentence_native": "Ho letto la notizia sulla gazzetta.", + "example_sentence_english": "I read the news in the gazette.", + "pos": "noun", + "word_frequency": 3007 + }, + { + "word": "giornalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "journalism", + "romanization": "giornalismo", + "example_sentence_native": "Studia giornalismo all'università.", + "example_sentence_english": "He studies journalism at university.", + "pos": "noun", + "word_frequency": 3009 + }, + { + "word": "ignoranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignorance", + "romanization": "ignoranza", + "example_sentence_native": "La sua ignoranza della materia era evidente.", + "example_sentence_english": "His ignorance of the subject was evident.", + "pos": "noun", + "word_frequency": 3010 + }, + { + "word": "iscrivere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enroll;to register", + "romanization": "iscrivere", + "example_sentence_native": "Voglio iscrivermi a un corso di italiano.", + "example_sentence_english": "I want to enroll in an Italian course.", + "pos": "verb", + "word_frequency": 3012 + }, + { + "word": "leva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lever;draft;age group", + "romanization": "leva", + "example_sentence_native": "Ha usato una leva per sollevare il peso.", + "example_sentence_english": "He used a lever to lift the weight.", + "pos": "noun", + "word_frequency": 3013 + }, + { + "word": "logo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logo", + "romanization": "logo", + "example_sentence_native": "Il nuovo logo è molto moderno.", + "example_sentence_english": "The new logo is very modern.", + "pos": "noun", + "word_frequency": 3014 + }, + { + "word": "mix", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mix", + "romanization": "mix", + "example_sentence_native": "Questo è un buon mix di sapori.", + "example_sentence_english": "This is a good mix of flavors.", + "pos": "noun", + "word_frequency": 3016 + }, + { + "word": "muovere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move", + "romanization": "muovere", + "example_sentence_native": "Non riesco a muovere il tavolo.", + "example_sentence_english": "I can't move the table.", + "pos": "verb", + "word_frequency": 3017 + }, + { + "word": "pienamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fully;completely", + "romanization": "pienamente", + "example_sentence_native": "Sono pienamente d'accordo con te.", + "example_sentence_english": "I fully agree with you.", + "pos": "adverb", + "word_frequency": 3019 + }, + { + "word": "pietà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pity;mercy", + "romanization": "pietà", + "example_sentence_native": "Ho provato pietà per lui.", + "example_sentence_english": "I felt pity for him.", + "pos": "noun", + "word_frequency": 3021 + }, + { + "word": "profumo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfume;scent", + "romanization": "profumo", + "example_sentence_native": "Che buon profumo!", + "example_sentence_english": "What a good scent!", + "pos": "noun", + "word_frequency": 3023 + }, + { + "word": "project", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "project", + "romanization": "project", + "example_sentence_native": "Stiamo lavorando a un nuovo project.", + "example_sentence_english": "We are working on a new project.", + "pos": "noun", + "word_frequency": 3024 + }, + { + "word": "psicologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychology", + "romanization": "psicologia", + "example_sentence_native": "Studia psicologia all'università.", + "example_sentence_english": "She studies psychology at university.", + "pos": "noun", + "word_frequency": 3025 + }, + { + "word": "rilasciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to release;to issue", + "romanization": "rilasciare", + "example_sentence_native": "Hanno rilasciato un nuovo album.", + "example_sentence_english": "They released a new album.", + "pos": "verb", + "word_frequency": 3026 + }, + { + "word": "rilevante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevant", + "romanization": "rilevante", + "example_sentence_native": "Questa informazione è molto rilevante.", + "example_sentence_english": "This information is very relevant.", + "pos": "adjective", + "word_frequency": 3027 + }, + { + "word": "rinunciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give up;to renounce", + "romanization": "rinunciare", + "example_sentence_native": "Non voglio rinunciare ai miei sogni.", + "example_sentence_english": "I don't want to give up on my dreams.", + "pos": "verb", + "word_frequency": 3028 + }, + { + "word": "riproduzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproduction", + "romanization": "riproduzione", + "example_sentence_native": "La riproduzione di questa specie è difficile.", + "example_sentence_english": "The reproduction of this species is difficult.", + "pos": "noun", + "word_frequency": 3029 + }, + { + "word": "rubare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to steal", + "romanization": "rubare", + "example_sentence_native": "Qualcuno ha rubato la mia bicicletta.", + "example_sentence_english": "Someone stole my bicycle.", + "pos": "verb", + "word_frequency": 3031 + }, + { + "word": "sabbia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sand", + "romanization": "sabbia", + "example_sentence_native": "I bambini giocano con la sabbia.", + "example_sentence_english": "The children play with the sand.", + "pos": "noun", + "word_frequency": 3032 + }, + { + "word": "scenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scenario;setting", + "romanization": "scenario", + "example_sentence_native": "Lo scenario politico è cambiato.", + "example_sentence_english": "The political scenario has changed.", + "pos": "noun", + "word_frequency": 3033 + }, + { + "word": "sfera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sphere;ball", + "romanization": "sfera", + "example_sentence_native": "La Terra è una sfera.", + "example_sentence_english": "The Earth is a sphere.", + "pos": "noun", + "word_frequency": 3034 + }, + { + "word": "sospendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suspend", + "romanization": "sospendere", + "example_sentence_native": "Hanno deciso di sospendere il progetto.", + "example_sentence_english": "They decided to suspend the project.", + "pos": "verb", + "word_frequency": 3035 + }, + { + "word": "studioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scholar;researcher", + "romanization": "studioso", + "example_sentence_native": "È uno studioso di storia antica.", + "example_sentence_english": "He is a scholar of ancient history.", + "pos": "noun", + "word_frequency": 3037 + }, + { + "word": "tabella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "table;chart", + "romanization": "tabella", + "example_sentence_native": "Consulta la tabella per i dettagli.", + "example_sentence_english": "Consult the table for details.", + "pos": "noun", + "word_frequency": 3038 + }, + { + "word": "tasca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pocket", + "romanization": "tasca", + "example_sentence_native": "Ho le chiavi in tasca.", + "example_sentence_english": "I have the keys in my pocket.", + "pos": "noun", + "word_frequency": 3039 + }, + { + "word": "tempesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storm", + "romanization": "tempesta", + "example_sentence_native": "La tempesta ha causato molti danni.", + "example_sentence_english": "The storm caused a lot of damage.", + "pos": "noun", + "word_frequency": 3040 + }, + { + "word": "uccello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bird", + "romanization": "uccello", + "example_sentence_native": "Ho visto un uccello sul ramo.", + "example_sentence_english": "I saw a bird on the branch.", + "pos": "noun", + "word_frequency": 3042 + }, + { + "word": "veste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robe;garment", + "romanization": "veste", + "example_sentence_native": "Indossava una veste elegante per la cerimonia.", + "example_sentence_english": "She wore an elegant robe for the ceremony.", + "pos": "noun", + "word_frequency": 3043 + }, + { + "word": "adozione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adoption", + "romanization": "adozione", + "example_sentence_native": "L'adozione è un processo legale.", + "example_sentence_english": "Adoption is a legal process.", + "pos": "noun", + "word_frequency": 3046 + }, + { + "word": "aggiornare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to update", + "romanization": "aggiornare", + "example_sentence_native": "Devo aggiornare il software del mio computer.", + "example_sentence_english": "I need to update my computer software.", + "pos": "verb", + "word_frequency": 3047 + }, + { + "word": "altamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highly", + "romanization": "altamente", + "example_sentence_native": "È un progetto altamente complesso.", + "example_sentence_english": "It is a highly complex project.", + "pos": "adverb", + "word_frequency": 3048 + }, + { + "word": "armare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arm;to equip", + "romanization": "armare", + "example_sentence_native": "Hanno deciso di armare le truppe.", + "example_sentence_english": "They decided to arm the troops.", + "pos": "verb", + "word_frequency": 3050 + }, + { + "word": "aspettativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expectation", + "romanization": "aspettativa", + "example_sentence_native": "Le mie aspettative erano alte.", + "example_sentence_english": "My expectations were high.", + "pos": "noun", + "word_frequency": 3051 + }, + { + "word": "aula", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "classroom;hall", + "romanization": "aula", + "example_sentence_native": "La lezione si tiene nell'aula magna.", + "example_sentence_english": "The lesson is held in the great hall.", + "pos": "noun", + "word_frequency": 3052 + }, + { + "word": "avvenimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "event;occurrence", + "romanization": "avvenimento", + "example_sentence_native": "È stato un avvenimento storico.", + "example_sentence_english": "It was a historic event.", + "pos": "noun", + "word_frequency": 3053 + }, + { + "word": "barba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beard", + "romanization": "barba", + "example_sentence_native": "Si è fatto crescere la barba.", + "example_sentence_english": "He grew a beard.", + "pos": "noun", + "word_frequency": 3054 + }, + { + "word": "cavo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cable", + "romanization": "cavo", + "example_sentence_native": "Il cavo di alimentazione è rotto.", + "example_sentence_english": "The power cable is broken.", + "pos": "noun", + "word_frequency": 3058 + }, + { + "word": "cinquanta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifty", + "romanization": "cinquanta", + "example_sentence_native": "Ho cinquanta euro in tasca.", + "example_sentence_english": "I have fifty euros in my pocket.", + "pos": "noun", + "word_frequency": 3061 + }, + { + "word": "collegare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to connect", + "romanization": "collegare", + "example_sentence_native": "Puoi collegare questo cavo al computer?", + "example_sentence_english": "Can you connect this cable to the computer?", + "pos": "verb", + "word_frequency": 3062 + }, + { + "word": "complicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complicate", + "romanization": "complicare", + "example_sentence_native": "Non voglio complicare le cose.", + "example_sentence_english": "I don't want to complicate things.", + "pos": "verb", + "word_frequency": 3064 + }, + { + "word": "coro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choir;chorus", + "romanization": "coro", + "example_sentence_native": "Il coro ha cantato magnificamente.", + "example_sentence_english": "The choir sang magnificently.", + "pos": "noun", + "word_frequency": 3065 + }, + { + "word": "corto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "short", + "romanization": "corto", + "example_sentence_native": "Ha i capelli corti.", + "example_sentence_english": "She has short hair.", + "pos": "adjective", + "word_frequency": 3066 + }, + { + "word": "difetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defect;flaw", + "romanization": "difetto", + "example_sentence_native": "Questo prodotto ha un difetto di fabbricazione.", + "example_sentence_english": "This product has a manufacturing defect.", + "pos": "noun", + "word_frequency": 3067 + }, + { + "word": "effettuare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry out;to perform", + "romanization": "effettuare", + "example_sentence_native": "Dobbiamo effettuare un controllo di sicurezza.", + "example_sentence_english": "We need to carry out a security check.", + "pos": "verb", + "word_frequency": 3069 + }, + { + "word": "efficacia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficacy;effectiveness", + "romanization": "efficacia", + "example_sentence_native": "La sua efficacia è stata dimostrata.", + "example_sentence_english": "Its effectiveness has been proven.", + "pos": "noun", + "word_frequency": 3070 + }, + { + "word": "eredità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inheritance;heritage", + "romanization": "eredità", + "example_sentence_native": "Ha ricevuto una grande eredità.", + "example_sentence_english": "He received a large inheritance.", + "pos": "noun", + "word_frequency": 3071 + }, + { + "word": "formaggio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cheese", + "romanization": "formaggio", + "example_sentence_native": "Mi piace il formaggio.", + "example_sentence_english": "I like cheese.", + "pos": "noun", + "word_frequency": 3072 + }, + { + "word": "grafico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chart;graph", + "romanization": "grafico", + "example_sentence_native": "Il grafico mostra l'andamento delle vendite.", + "example_sentence_english": "The chart shows the sales trend.", + "pos": "noun", + "word_frequency": 3073 + }, + { + "word": "imposta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax", + "romanization": "imposta", + "example_sentence_native": "Le imposte sul reddito sono alte.", + "example_sentence_english": "Income taxes are high.", + "pos": "noun", + "word_frequency": 3074 + }, + { + "word": "informare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to inform", + "romanization": "informare", + "example_sentence_native": "Voglio informare tutti della novità.", + "example_sentence_english": "I want to inform everyone about the news.", + "pos": "verb", + "word_frequency": 3075 + }, + { + "word": "innanzitutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "first of all", + "romanization": "innanzitutto", + "example_sentence_native": "Innanzitutto, vorrei ringraziarvi.", + "example_sentence_english": "First of all, I would like to thank you.", + "pos": "adverb", + "word_frequency": 3076 + }, + { + "word": "ironia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irony", + "romanization": "ironia", + "example_sentence_native": "C'è una certa ironia nella situazione.", + "example_sentence_english": "There is a certain irony in the situation.", + "pos": "noun", + "word_frequency": 3077 + }, + { + "word": "legislazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legislation", + "romanization": "legislazione", + "example_sentence_native": "La nuova legislazione mira a proteggere l'ambiente.", + "example_sentence_english": "The new legislation aims to protect the environment.", + "pos": "noun", + "word_frequency": 3080 + }, + { + "word": "liberale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liberal", + "romanization": "liberale", + "example_sentence_native": "Ha idee molto liberali sulla società.", + "example_sentence_english": "He has very liberal ideas about society.", + "pos": "adjective", + "word_frequency": 3082 + }, + { + "word": "metallo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "metal", + "romanization": "metallo", + "example_sentence_native": "Questo tavolo è fatto di metallo.", + "example_sentence_english": "This table is made of metal.", + "pos": "noun", + "word_frequency": 3084 + }, + { + "word": "mezz'ora", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "half an hour", + "romanization": "mezz'ora", + "example_sentence_native": "Ci vediamo tra mezz'ora.", + "example_sentence_english": "We'll see each other in half an hour.", + "pos": "noun", + "word_frequency": 3085 + }, + { + "word": "miseria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misery;poverty", + "romanization": "miseria", + "example_sentence_native": "Viveva in condizioni di estrema miseria.", + "example_sentence_english": "He lived in conditions of extreme misery.", + "pos": "noun", + "word_frequency": 3086 + }, + { + "word": "modificare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to modify;to change", + "romanization": "modificare", + "example_sentence_native": "Dobbiamo modificare il piano originale.", + "example_sentence_english": "We need to modify the original plan.", + "pos": "verb", + "word_frequency": 3087 + }, + { + "word": "musulmano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Muslim", + "romanization": "musulmano", + "example_sentence_native": "Molti musulmani vivono in questa città.", + "example_sentence_english": "Many Muslims live in this city.", + "pos": "noun", + "word_frequency": 3088 + }, + { + "word": "negare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deny", + "romanization": "negare", + "example_sentence_native": "Ha negato ogni accusa contro di lui.", + "example_sentence_english": "He denied all accusations against him.", + "pos": "verb", + "word_frequency": 3089 + }, + { + "word": "operativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operational;operative", + "romanization": "operativo", + "example_sentence_native": "Il nuovo sistema è pienamente operativo.", + "example_sentence_english": "The new system is fully operational.", + "pos": "adjective", + "word_frequency": 3090 + }, + { + "word": "parità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equality;parity", + "romanization": "parità", + "example_sentence_native": "Lottiamo per la parità di genere.", + "example_sentence_english": "We fight for gender equality.", + "pos": "noun", + "word_frequency": 3091 + }, + { + "word": "perfezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perfection", + "romanization": "perfezione", + "example_sentence_native": "Nessuno può raggiungere la perfezione assoluta.", + "example_sentence_english": "No one can achieve absolute perfection.", + "pos": "noun", + "word_frequency": 3092 + }, + { + "word": "petrolio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oil;petroleum", + "romanization": "petrolio", + "example_sentence_native": "Il prezzo del petrolio è aumentato.", + "example_sentence_english": "The price of oil has increased.", + "pos": "noun", + "word_frequency": 3093 + }, + { + "word": "piscina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming pool", + "romanization": "piscina", + "example_sentence_native": "Andiamo in piscina a nuotare.", + "example_sentence_english": "Let's go to the swimming pool to swim.", + "pos": "noun", + "word_frequency": 3094 + }, + { + "word": "polo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pole", + "romanization": "polo", + "example_sentence_native": "Il Polo Nord è coperto di ghiaccio.", + "example_sentence_english": "The North Pole is covered in ice.", + "pos": "noun", + "word_frequency": 3096 + }, + { + "word": "prevalentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predominantly;mainly", + "romanization": "prevalentemente", + "example_sentence_native": "La popolazione è prevalentemente anziana.", + "example_sentence_english": "The population is predominantly elderly.", + "pos": "adverb", + "word_frequency": 3097 + }, + { + "word": "razzista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racist", + "romanization": "razzista", + "example_sentence_native": "Le sue opinioni sono considerate razziste.", + "example_sentence_english": "His opinions are considered racist.", + "pos": "adjective", + "word_frequency": 3098 + }, + { + "word": "resistere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resist", + "romanization": "resistere", + "example_sentence_native": "Non è riuscito a resistere alla tentazione.", + "example_sentence_english": "He couldn't resist the temptation.", + "pos": "verb", + "word_frequency": 3099 + }, + { + "word": "retta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straight line", + "romanization": "retta", + "example_sentence_native": "Disegna una retta sul foglio.", + "example_sentence_english": "Draw a straight line on the paper.", + "pos": "noun", + "word_frequency": 3100 + }, + { + "word": "soffrire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suffer", + "romanization": "soffrire", + "example_sentence_native": "Molte persone soffrono a causa della povertà.", + "example_sentence_english": "Many people suffer because of poverty.", + "pos": "verb", + "word_frequency": 3103 + }, + { + "word": "spendere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to spend", + "romanization": "spendere", + "example_sentence_native": "Ho speso troppo denaro oggi.", + "example_sentence_english": "I spent too much money today.", + "pos": "verb", + "word_frequency": 3104 + }, + { + "word": "sveglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "awake;clever", + "romanization": "sveglio", + "example_sentence_native": "Sono sveglio dalle sei del mattino.", + "example_sentence_english": "I've been awake since six in the morning.", + "pos": "adjective", + "word_frequency": 3106 + }, + { + "word": "televisivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "television (adj.);televised", + "romanization": "televisivo", + "example_sentence_native": "Ha partecipato a un programma televisivo.", + "example_sentence_english": "He participated in a television program.", + "pos": "adjective", + "word_frequency": 3107 + }, + { + "word": "terrore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terror", + "romanization": "terrore", + "example_sentence_native": "Il terrore si diffuse tra la folla.", + "example_sentence_english": "Terror spread among the crowd.", + "pos": "noun", + "word_frequency": 3108 + }, + { + "word": "trasmettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transmit;to broadcast", + "romanization": "trasmettere", + "example_sentence_native": "La radio trasmette musica tutto il giorno.", + "example_sentence_english": "The radio broadcasts music all day.", + "pos": "verb", + "word_frequency": 3109 + }, + { + "word": "tè", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tea", + "romanization": "tè", + "example_sentence_native": "Vorrei una tazza di tè, per favorire.", + "example_sentence_english": "I would like a cup of tea, please.", + "pos": "noun", + "word_frequency": 3110 + }, + { + "word": "vietare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forbid;to prohibit", + "romanization": "vietare", + "example_sentence_native": "È vietato fumare in questo locale.", + "example_sentence_english": "Smoking is forbidden in this place.", + "pos": "verb", + "word_frequency": 3111 + }, + { + "word": "volare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fly", + "romanization": "volare", + "example_sentence_native": "Gli uccelli possono volare molto in alto.", + "example_sentence_english": "Birds can fly very high.", + "pos": "verb", + "word_frequency": 3112 + }, + { + "word": "albergo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hotel", + "romanization": "albergo", + "example_sentence_native": "Abbiamo prenotato una stanza in un albergo.", + "example_sentence_english": "We booked a room in a hotel.", + "pos": "noun", + "word_frequency": 3115 + }, + { + "word": "anteriore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anterior;front;previous", + "romanization": "anteriore", + "example_sentence_native": "La parte anteriore della macchina è danneggiata.", + "example_sentence_english": "The front part of the car is damaged.", + "pos": "adjective", + "word_frequency": 3116 + }, + { + "word": "autunno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "autumn;fall", + "romanization": "autunno", + "example_sentence_native": "L'autunno è la mia stagione preferita.", + "example_sentence_english": "Autumn is my favorite season.", + "pos": "noun", + "word_frequency": 3118 + }, + { + "word": "avvicinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach;to bring closer", + "romanization": "avvicinare", + "example_sentence_native": "Si è avvicinato lentamente alla porta.", + "example_sentence_english": "He slowly approached the door.", + "pos": "verb", + "word_frequency": 3119 + }, + { + "word": "bicchiere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "glass", + "romanization": "bicchiere", + "example_sentence_native": "Vorrei un bicchiere d'acqua, per favore.", + "example_sentence_english": "I would like a glass of water, please.", + "pos": "noun", + "word_frequency": 3121 + }, + { + "word": "brano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piece;passage", + "romanization": "brano", + "example_sentence_native": "Questo è un brano interessante del libro.", + "example_sentence_english": "This is an interesting passage from the book.", + "pos": "noun", + "word_frequency": 3122 + }, + { + "word": "concreto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concrete;tangible", + "romanization": "concreto", + "example_sentence_native": "Abbiamo bisogno di un piano più concreto.", + "example_sentence_english": "We need a more concrete plan.", + "pos": "adjective", + "word_frequency": 3124 + }, + { + "word": "coperta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blanket", + "romanization": "coperta", + "example_sentence_native": "Ho freddo, puoi passarmi la coperta?", + "example_sentence_english": "I'm cold, can you pass me the blanket?", + "pos": "noun", + "word_frequency": 3125 + }, + { + "word": "corrispondere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to correspond;to match", + "romanization": "corrispondere", + "example_sentence_native": "I risultati non corrispondono alle aspettative.", + "example_sentence_english": "The results do not correspond to expectations.", + "pos": "verb", + "word_frequency": 3126 + }, + { + "word": "crema", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cream", + "romanization": "crema", + "example_sentence_native": "Vorrei un caffè con un po' di crema.", + "example_sentence_english": "I would like a coffee with a little cream.", + "pos": "noun", + "word_frequency": 3127 + }, + { + "word": "custodia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "case;custody", + "romanization": "custodia", + "example_sentence_native": "Ho comprato una nuova custodia per il mio telefono.", + "example_sentence_english": "I bought a new case for my phone.", + "pos": "noun", + "word_frequency": 3128 + }, + { + "word": "delegare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delegate", + "romanization": "delegare", + "example_sentence_native": "È importante imparare a delegare i compiti.", + "example_sentence_english": "It's important to learn to delegate tasks.", + "pos": "verb", + "word_frequency": 3129 + }, + { + "word": "dialetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dialect", + "romanization": "dialetto", + "example_sentence_native": "In alcune regioni d'Italia si parla ancora il dialetto.", + "example_sentence_english": "In some regions of Italy, dialect is still spoken.", + "pos": "noun", + "word_frequency": 3130 + }, + { + "word": "dipingere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to paint", + "romanization": "dipingere", + "example_sentence_native": "Mi piace dipingere paesaggi.", + "example_sentence_english": "I like to paint landscapes.", + "pos": "verb", + "word_frequency": 3131 + }, + { + "word": "divenire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to become", + "romanization": "divenire", + "example_sentence_native": "Il suo sogno è divenire un medico.", + "example_sentence_english": "His dream is to become a doctor.", + "pos": "verb", + "word_frequency": 3132 + }, + { + "word": "elementare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elementary;basic", + "romanization": "elementare", + "example_sentence_native": "Questa è una domanda elementare.", + "example_sentence_english": "This is an elementary question.", + "pos": "adjective", + "word_frequency": 3133 + }, + { + "word": "fontana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fountain", + "romanization": "fontana", + "example_sentence_native": "La Fontana di Trevi è molto famosa.", + "example_sentence_english": "The Trevi Fountain is very famous.", + "pos": "noun", + "word_frequency": 3134 + }, + { + "word": "forno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oven", + "romanization": "forno", + "example_sentence_native": "Metti la pizza nel forno.", + "example_sentence_english": "Put the pizza in the oven.", + "pos": "noun", + "word_frequency": 3135 + }, + { + "word": "gioventù", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "youth", + "romanization": "gioventù", + "example_sentence_native": "La gioventù è un periodo di grandi scoperte.", + "example_sentence_english": "Youth is a period of great discoveries.", + "pos": "noun", + "word_frequency": 3138 + }, + { + "word": "grigio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "grey", + "romanization": "grigio", + "example_sentence_native": "Il cielo è grigio oggi.", + "example_sentence_english": "The sky is grey today.", + "pos": "adjective", + "word_frequency": 3139 + }, + { + "word": "ingegneria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engineering", + "romanization": "ingegneria", + "example_sentence_native": "Ha studiato ingegneria all'università.", + "example_sentence_english": "He studied engineering at university.", + "pos": "noun", + "word_frequency": 3141 + }, + { + "word": "innamorare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fall in love", + "romanization": "innamorare", + "example_sentence_native": "È facile innamorarsi in primavera.", + "example_sentence_english": "It's easy to fall in love in spring.", + "pos": "verb", + "word_frequency": 3142 + }, + { + "word": "neo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mole;birthmark", + "romanization": "neo", + "example_sentence_native": "Ho un piccolo neo sul braccio.", + "example_sentence_english": "I have a small mole on my arm.", + "pos": "noun", + "word_frequency": 3146 + }, + { + "word": "offesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offense;insult", + "romanization": "offesa", + "example_sentence_native": "Le sue parole sono state un'offesa.", + "example_sentence_english": "His words were an offense.", + "pos": "noun", + "word_frequency": 3147 + }, + { + "word": "paesaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "landscape", + "romanization": "paesaggio", + "example_sentence_native": "Il paesaggio toscano è mozzafiato.", + "example_sentence_english": "The Tuscan landscape is breathtaking.", + "pos": "noun", + "word_frequency": 3148 + }, + { + "word": "pantalone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "trousers;pants", + "romanization": "pantalone", + "example_sentence_native": "I miei pantaloni preferiti sono blu.", + "example_sentence_english": "My favorite trousers are blue.", + "pos": "noun", + "word_frequency": 3149 + }, + { + "word": "pugno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fist;punch", + "romanization": "pugno", + "example_sentence_native": "Ha chiuso la mano a pugno.", + "example_sentence_english": "He closed his hand into a fist.", + "pos": "noun", + "word_frequency": 3150 + }, + { + "word": "pulire", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to clean", + "romanization": "pulire", + "example_sentence_native": "Devo pulire la casa oggi.", + "example_sentence_english": "I need to clean the house today.", + "pos": "verb", + "word_frequency": 3151 + }, + { + "word": "rappresentanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representation", + "romanization": "rappresentanza", + "example_sentence_native": "Sarò presente in rappresentanza della mia azienda.", + "example_sentence_english": "I will be present representing my company.", + "pos": "noun", + "word_frequency": 3152 + }, + { + "word": "recensione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "review", + "romanization": "recensione", + "example_sentence_native": "Ho letto una buona recensione di quel film.", + "example_sentence_english": "I read a good review of that movie.", + "pos": "noun", + "word_frequency": 3153 + }, + { + "word": "sedia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chair", + "romanization": "sedia", + "example_sentence_native": "Siediti su questa sedia.", + "example_sentence_english": "Sit on this chair.", + "pos": "noun", + "word_frequency": 3156 + }, + { + "word": "separazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "separation", + "romanization": "separazione", + "example_sentence_native": "La separazione è stata difficile per entrambi.", + "example_sentence_english": "The separation was difficult for both of them.", + "pos": "noun", + "word_frequency": 3157 + }, + { + "word": "significativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significant;meaningful", + "romanization": "significativo", + "example_sentence_native": "Ha dato un contributo significativo al progetto.", + "example_sentence_english": "He made a significant contribution to the project.", + "pos": "adjective", + "word_frequency": 3158 + }, + { + "word": "spirituale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritual", + "romanization": "spirituale", + "example_sentence_native": "Cerca un significato più spirituale nella vita.", + "example_sentence_english": "He seeks a more spiritual meaning in life.", + "pos": "adjective", + "word_frequency": 3159 + }, + { + "word": "statuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statute;charter", + "romanization": "statuto", + "example_sentence_native": "Lo statuto dell'associazione è stato approvato all'unanimità.", + "example_sentence_english": "The association's statute was unanimously approved.", + "pos": "noun", + "word_frequency": 3160 + }, + { + "word": "tradurre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to translate", + "romanization": "tradurre", + "example_sentence_native": "Devo tradurre questo documento dall'italiano all'inglese.", + "example_sentence_english": "I need to translate this document from Italian to English.", + "pos": "verb", + "word_frequency": 3162 + }, + { + "word": "trend", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trend", + "romanization": "trend", + "example_sentence_native": "Il nuovo trend della moda è molto interessante.", + "example_sentence_english": "The new fashion trend is very interesting.", + "pos": "noun", + "word_frequency": 3163 + }, + { + "word": "urbano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urban", + "romanization": "urbano", + "example_sentence_native": "La vita urbana può essere frenetica.", + "example_sentence_english": "Urban life can be hectic.", + "pos": "adjective", + "word_frequency": 3164 + }, + { + "word": "videogioco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video game", + "romanization": "videogioco", + "example_sentence_native": "Mio fratello passa ore a giocare ai videogiochi.", + "example_sentence_english": "My brother spends hours playing video games.", + "pos": "noun", + "word_frequency": 3165 + }, + { + "word": "automatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatic", + "romanization": "automatico", + "example_sentence_native": "L'apertura della porta è automatica.", + "example_sentence_english": "The door's opening is automatic.", + "pos": "adjective", + "word_frequency": 3167 + }, + { + "word": "avversario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opponent;adversary", + "romanization": "avversario", + "example_sentence_native": "Ha sconfitto il suo avversario in finale.", + "example_sentence_english": "He defeated his opponent in the final.", + "pos": "noun", + "word_frequency": 3168 + }, + { + "word": "azzurro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "light blue;azure", + "romanization": "azzurro", + "example_sentence_native": "Il cielo oggi è di un azzurro brillante.", + "example_sentence_english": "The sky today is a brilliant light blue.", + "pos": "adjective", + "word_frequency": 3169 + }, + { + "word": "best", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "best", + "romanization": "best", + "example_sentence_native": "È il mio best friend.", + "example_sentence_english": "He is my best friend.", + "pos": "adjective", + "word_frequency": 3171 + }, + { + "word": "bloccare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to block;to stop", + "romanization": "bloccare", + "example_sentence_native": "Hanno bloccato la strada a causa dei lavori.", + "example_sentence_english": "They blocked the road due to the works.", + "pos": "verb", + "word_frequency": 3172 + }, + { + "word": "cappella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chapel", + "romanization": "cappella", + "example_sentence_native": "La Cappella Sistina è un capolavoro.", + "example_sentence_english": "The Sistine Chapel is a masterpiece.", + "pos": "noun", + "word_frequency": 3174 + }, + { + "word": "circuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circuit", + "romanization": "circuito", + "example_sentence_native": "Il pilota ha completato il circuito in un tempo record.", + "example_sentence_english": "The driver completed the circuit in record time.", + "pos": "noun", + "word_frequency": 3176 + }, + { + "word": "comparire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appear", + "romanization": "comparire", + "example_sentence_native": "All'improvviso, un coniglio è comparso dal cappello.", + "example_sentence_english": "Suddenly, a rabbit appeared from the hat.", + "pos": "verb", + "word_frequency": 3177 + }, + { + "word": "consumatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumer", + "romanization": "consumatore", + "example_sentence_native": "I diritti del consumatore sono molto importanti.", + "example_sentence_english": "Consumer rights are very important.", + "pos": "noun", + "word_frequency": 3178 + }, + { + "word": "contadino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farmer;peasant", + "romanization": "contadino", + "example_sentence_native": "Il contadino lavora la terra dalla mattina alla sera.", + "example_sentence_english": "The farmer works the land from morning till night.", + "pos": "noun", + "word_frequency": 3179 + }, + { + "word": "continente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "continent", + "romanization": "continente", + "example_sentence_native": "L'Africa è un continente vasto e diversificato.", + "example_sentence_english": "Africa is a vast and diverse continent.", + "pos": "noun", + "word_frequency": 3180 + }, + { + "word": "contribuire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contribute", + "romanization": "contribuire", + "example_sentence_native": "Tutti dovrebbero contribuire alla pulizia dell'ambiente.", + "example_sentence_english": "Everyone should contribute to environmental cleanup.", + "pos": "verb", + "word_frequency": 3181 + }, + { + "word": "cover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cover (e.g.;of a book;song)", + "romanization": "cover", + "example_sentence_native": "La cover dell'album è molto artistica.", + "example_sentence_english": "The album cover is very artistic.", + "pos": "noun", + "word_frequency": 3182 + }, + { + "word": "difensore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defender;advocate", + "romanization": "difensore", + "example_sentence_native": "Il difensore ha bloccato il tiro dell'attaccante.", + "example_sentence_english": "The defender blocked the attacker's shot.", + "pos": "noun", + "word_frequency": 3183 + }, + { + "word": "diploma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diploma;degree", + "romanization": "diploma", + "example_sentence_native": "Ha ricevuto il suo diploma di laurea l'anno scorso.", + "example_sentence_english": "He received his university diploma last year.", + "pos": "noun", + "word_frequency": 3184 + }, + { + "word": "divino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divine", + "romanization": "divino", + "example_sentence_native": "La Divina Commedia è un'opera letteraria italiana.", + "example_sentence_english": "The Divine Comedy is an Italian literary work.", + "pos": "adjective", + "word_frequency": 3185 + }, + { + "word": "dose", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dose", + "romanization": "dose", + "example_sentence_native": "Prendi una dose di questo sciroppo tre volte al giorno.", + "example_sentence_english": "Take a dose of this syrup three times a day.", + "pos": "noun", + "word_frequency": 3186 + }, + { + "word": "eccellente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excellent", + "romanization": "eccellente", + "example_sentence_native": "Il suo lavoro è stato eccellente.", + "example_sentence_english": "His work was excellent.", + "pos": "adjective", + "word_frequency": 3187 + }, + { + "word": "eventualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possibly;if necessary", + "romanization": "eventualmente", + "example_sentence_native": "Eventualmente, potremmo incontrarci domani.", + "example_sentence_english": "Possibly, we could meet tomorrow.", + "pos": "adverb", + "word_frequency": 3189 + }, + { + "word": "femmina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female", + "romanization": "femmina", + "example_sentence_native": "La femmina del leone è la leonessa.", + "example_sentence_english": "The female of the lion is the lioness.", + "pos": "noun", + "word_frequency": 3191 + }, + { + "word": "finanziamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funding;financing", + "romanization": "finanziamento", + "example_sentence_native": "Hanno ottenuto un finanziamento per il nuovo progetto.", + "example_sentence_english": "They obtained funding for the new project.", + "pos": "noun", + "word_frequency": 3193 + }, + { + "word": "giustamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rightly;justly;correctly", + "romanization": "giustamente", + "example_sentence_native": "Giustamente, ha ricevuto il premio per il suo impegno.", + "example_sentence_english": "Rightly, he received the award for his commitment.", + "pos": "adverb", + "word_frequency": 3194 + }, + { + "word": "ingegnere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "engineer", + "romanization": "ingegnere", + "example_sentence_native": "Mio padre è un ingegnere civile.", + "example_sentence_english": "My father is a civil engineer.", + "pos": "noun", + "word_frequency": 3196 + }, + { + "word": "investire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invest;to run over (with a vehicle)", + "romanization": "investire", + "example_sentence_native": "È importante investire nel proprio futuro.", + "example_sentence_english": "It's important to invest in one's future.", + "pos": "verb", + "word_frequency": 3197 + }, + { + "word": "league", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "league", + "romanization": "league", + "example_sentence_native": "La squadra gioca nella prima league.", + "example_sentence_english": "The team plays in the first league.", + "pos": "noun", + "word_frequency": 3198 + }, + { + "word": "mezzanotte", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "midnight", + "romanization": "mezzanotte", + "example_sentence_native": "Ci vediamo a mezzanotte.", + "example_sentence_english": "We'll see each other at midnight.", + "pos": "noun", + "word_frequency": 3200 + }, + { + "word": "mezzogiorno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "midday;noon", + "romanization": "mezzogiorno", + "example_sentence_native": "Pranzo sempre a mezzogiorno.", + "example_sentence_english": "I always have lunch at noon.", + "pos": "noun", + "word_frequency": 3201 + }, + { + "word": "navigazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navigation", + "romanization": "navigazione", + "example_sentence_native": "La navigazione satellitare è molto utile.", + "example_sentence_english": "Satellite navigation is very useful.", + "pos": "noun", + "word_frequency": 3204 + }, + { + "word": "operare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to operate;to perform", + "romanization": "operare", + "example_sentence_native": "Il chirurgo deve operare domani.", + "example_sentence_english": "The surgeon must operate tomorrow.", + "pos": "verb", + "word_frequency": 3207 + }, + { + "word": "pittore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "painter", + "romanization": "pittore", + "example_sentence_native": "Mio zio è un pittore famoso.", + "example_sentence_english": "My uncle is a famous painter.", + "pos": "noun", + "word_frequency": 3208 + }, + { + "word": "precisamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precisely;exactly", + "romanization": "precisamente", + "example_sentence_native": "È successo precisamente alle tre.", + "example_sentence_english": "It happened precisely at three.", + "pos": "adverb", + "word_frequency": 3209 + }, + { + "word": "rivedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to review;to see again", + "romanization": "rivedere", + "example_sentence_native": "Dobbiamo rivedere il piano.", + "example_sentence_english": "We need to review the plan.", + "pos": "verb", + "word_frequency": 3211 + }, + { + "word": "sfruttare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exploit;to take advantage of", + "romanization": "sfruttare", + "example_sentence_native": "Non dovremmo sfruttare le risorse naturali.", + "example_sentence_english": "We should not exploit natural resources.", + "pos": "verb", + "word_frequency": 3212 + }, + { + "word": "simpatico", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nice;likeable;friendly", + "romanization": "simpatico", + "example_sentence_native": "Il tuo amico è molto simpatico.", + "example_sentence_english": "Your friend is very nice.", + "pos": "adjective", + "word_frequency": 3213 + }, + { + "word": "soddisfare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to satisfy;to fulfill", + "romanization": "soddisfare", + "example_sentence_native": "Spero di soddisfare le tue aspettative.", + "example_sentence_english": "I hope to satisfy your expectations.", + "pos": "verb", + "word_frequency": 3214 + }, + { + "word": "sub", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diver;submarine", + "romanization": "sub", + "example_sentence_native": "Ha preso il brevetto da sub.", + "example_sentence_english": "He got his diver's license.", + "pos": "noun", + "word_frequency": 3215 + }, + { + "word": "tifoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fan;supporter", + "romanization": "tifoso", + "example_sentence_native": "Sono un grande tifoso della Roma.", + "example_sentence_english": "I am a big fan of Roma.", + "pos": "noun", + "word_frequency": 3216 + }, + { + "word": "trasferire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transfer;to move", + "romanization": "trasferire", + "example_sentence_native": "Devo trasferire dei soldi sul mio conto.", + "example_sentence_english": "I need to transfer some money to my account.", + "pos": "verb", + "word_frequency": 3217 + }, + { + "word": "virtuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtual", + "romanization": "virtuale", + "example_sentence_native": "Stiamo vivendo in un mondo sempre più virtuale.", + "example_sentence_english": "We are living in an increasingly virtual world.", + "pos": "adjective", + "word_frequency": 3219 + }, + { + "word": "visitatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visitor", + "romanization": "visitatore", + "example_sentence_native": "I visitatori devono registrarsi all'ingresso.", + "example_sentence_english": "Visitors must register at the entrance.", + "pos": "noun", + "word_frequency": 3220 + }, + { + "word": "arabo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arab;Arabic (language)", + "romanization": "arabo", + "example_sentence_native": "Parla fluentemente l'arabo.", + "example_sentence_english": "He speaks Arabic fluently.", + "pos": "noun", + "word_frequency": 3222 + }, + { + "word": "attrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "actress", + "romanization": "attrice", + "example_sentence_native": "È un'attrice molto talentuosa.", + "example_sentence_english": "She is a very talented actress.", + "pos": "noun", + "word_frequency": 3223 + }, + { + "word": "automaticamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "automatically", + "romanization": "automaticamente", + "example_sentence_native": "La porta si apre automaticamente.", + "example_sentence_english": "The door opens automatically.", + "pos": "adverb", + "word_frequency": 3224 + }, + { + "word": "avanzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advanced", + "romanization": "avanzato", + "example_sentence_native": "Ha raggiunto un livello avanzato di italiano.", + "example_sentence_english": "He has reached an advanced level of Italian.", + "pos": "adjective", + "word_frequency": 3225 + }, + { + "word": "cappello", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hat", + "romanization": "cappello", + "example_sentence_native": "Indosso sempre un cappello in inverno.", + "example_sentence_english": "I always wear a hat in winter.", + "pos": "noun", + "word_frequency": 3227 + }, + { + "word": "coalizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coalition", + "romanization": "coalizione", + "example_sentence_native": "Hanno formato una nuova coalizione di governo.", + "example_sentence_english": "They formed a new government coalition.", + "pos": "noun", + "word_frequency": 3228 + }, + { + "word": "consulente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consultant", + "romanization": "consulente", + "example_sentence_native": "Ho assunto un consulente finanziario.", + "example_sentence_english": "I hired a financial consultant.", + "pos": "noun", + "word_frequency": 3229 + }, + { + "word": "cooperazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperation", + "romanization": "cooperazione", + "example_sentence_native": "La cooperazione internazionale è fondamentale.", + "example_sentence_english": "International cooperation is fundamental.", + "pos": "noun", + "word_frequency": 3230 + }, + { + "word": "corrispondenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correspondence;match", + "romanization": "corrispondenza", + "example_sentence_native": "Ho ricevuto molta corrispondenza oggi.", + "example_sentence_english": "I received a lot of correspondence today.", + "pos": "noun", + "word_frequency": 3231 + }, + { + "word": "curioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "curious", + "romanization": "curioso", + "example_sentence_native": "Sono curioso di sapere cosa succederà.", + "example_sentence_english": "I am curious to know what will happen.", + "pos": "adjective", + "word_frequency": 3232 + }, + { + "word": "disporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange;to dispose of;to have available", + "romanization": "disporre", + "example_sentence_native": "Dobbiamo disporre i tavoli per la festa.", + "example_sentence_english": "We need to arrange the tables for the party.", + "pos": "verb", + "word_frequency": 3234 + }, + { + "word": "elegante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elegant", + "romanization": "elegante", + "example_sentence_native": "Indossa sempre abiti molto eleganti.", + "example_sentence_english": "She always wears very elegant clothes.", + "pos": "adjective", + "word_frequency": 3235 + }, + { + "word": "essenzialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essentially", + "romanization": "essenzialmente", + "example_sentence_native": "Essenzialmente, il problema è la comunicazione.", + "example_sentence_english": "Essentially, the problem is communication.", + "pos": "adverb", + "word_frequency": 3236 + }, + { + "word": "etica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethics;ethic", + "romanization": "etica", + "example_sentence_native": "L'etica professionale è molto importante.", + "example_sentence_english": "Professional ethics are very important.", + "pos": "noun", + "word_frequency": 3237 + }, + { + "word": "fusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fusion;merger", + "romanization": "fusione", + "example_sentence_native": "Le due aziende hanno annunciato una fusione.", + "example_sentence_english": "The two companies announced a merger.", + "pos": "noun", + "word_frequency": 3238 + }, + { + "word": "gigante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giant", + "romanization": "gigante", + "example_sentence_native": "Hanno costruito un edificio gigante.", + "example_sentence_english": "They built a giant building.", + "pos": "noun", + "word_frequency": 3239 + }, + { + "word": "golfo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gulf;bay", + "romanization": "golfo", + "example_sentence_native": "Il golfo di Napoli è famoso in tutto il mondo.", + "example_sentence_english": "The Gulf of Naples is famous all over the world.", + "pos": "noun", + "word_frequency": 3240 + }, + { + "word": "immediato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immediate", + "romanization": "immediato", + "example_sentence_native": "Abbiamo bisogno di una risposta immediata.", + "example_sentence_english": "We need an immediate answer.", + "pos": "adjective", + "word_frequency": 3241 + }, + { + "word": "inferno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hell;inferno", + "romanization": "inferno", + "example_sentence_native": "Il traffico era un vero inferno questa mattina.", + "example_sentence_english": "The traffic was a real hell this morning.", + "pos": "noun", + "word_frequency": 3242 + }, + { + "word": "inserire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insert;to put in", + "romanization": "inserire", + "example_sentence_native": "Devi inserire la chiave nella serratura.", + "example_sentence_english": "You need to insert the key into the lock.", + "pos": "verb", + "word_frequency": 3243 + }, + { + "word": "ispirare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inspire", + "romanization": "ispirare", + "example_sentence_native": "La sua storia mi ha ispirato a lavorare di più.", + "example_sentence_english": "His story inspired me to work harder.", + "pos": "verb", + "word_frequency": 3244 + }, + { + "word": "meccanica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanics;mechanical engineering", + "romanization": "meccanica", + "example_sentence_native": "Studia ingegneria meccanica all'università.", + "example_sentence_english": "She studies mechanical engineering at university.", + "pos": "noun", + "word_frequency": 3246 + }, + { + "word": "mestiere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trade;craft;profession", + "romanization": "mestiere", + "example_sentence_native": "Imparare un mestiere è molto utile.", + "example_sentence_english": "Learning a trade is very useful.", + "pos": "noun", + "word_frequency": 3247 + }, + { + "word": "penna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pen", + "romanization": "penna", + "example_sentence_native": "Ho bisogno di una penna per scrivere.", + "example_sentence_english": "I need a pen to write.", + "pos": "noun", + "word_frequency": 3248 + }, + { + "word": "professor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "professor", + "romanization": "professor", + "example_sentence_native": "Il professor Rossi insegna storia.", + "example_sentence_english": "Professor Rossi teaches history.", + "pos": "noun", + "word_frequency": 3249 + }, + { + "word": "profitto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profit;gain", + "romanization": "profitto", + "example_sentence_native": "L'azienda ha registrato un buon profitto quest'anno.", + "example_sentence_english": "The company recorded a good profit this year.", + "pos": "noun", + "word_frequency": 3250 + }, + { + "word": "profugo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refugee", + "romanization": "profugo", + "example_sentence_native": "Molti profughi cercano asilo in Europa.", + "example_sentence_english": "Many refugees seek asylum in Europe.", + "pos": "noun", + "word_frequency": 3251 + }, + { + "word": "punizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punishment", + "romanization": "punizione", + "example_sentence_native": "La punizione per il reato è stata severa.", + "example_sentence_english": "The punishment for the crime was severe.", + "pos": "noun", + "word_frequency": 3252 + }, + { + "word": "ragazzino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kid;young boy", + "romanization": "ragazzino", + "example_sentence_native": "Il ragazzino giocava a calcio nel parco.", + "example_sentence_english": "The kid was playing soccer in the park.", + "pos": "noun", + "word_frequency": 3253 + }, + { + "word": "rigore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty (kick);rigor;strictness", + "romanization": "rigore", + "example_sentence_native": "L'arbitro ha fischiato un rigore.", + "example_sentence_english": "The referee whistled a penalty.", + "pos": "noun", + "word_frequency": 3254 + }, + { + "word": "rilascio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "release;issue", + "romanization": "rilascio", + "example_sentence_native": "Il rilascio del nuovo album è previsto per marzo.", + "example_sentence_english": "The release of the new album is scheduled for March.", + "pos": "noun", + "word_frequency": 3255 + }, + { + "word": "sacrificio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrifice", + "romanization": "sacrificio", + "example_sentence_native": "Ha fatto molti sacrifici per la sua famiglia.", + "example_sentence_english": "He made many sacrifices for his family.", + "pos": "noun", + "word_frequency": 3256 + }, + { + "word": "saluto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "greeting;salute", + "romanization": "saluto", + "example_sentence_native": "Ci siamo scambiati un rapido saluto.", + "example_sentence_english": "We exchanged a quick greeting.", + "pos": "noun", + "word_frequency": 3257 + }, + { + "word": "salvezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salvation;safety", + "romanization": "salvezza", + "example_sentence_native": "La sua salvezza era la nostra priorità.", + "example_sentence_english": "His safety was our priority.", + "pos": "noun", + "word_frequency": 3258 + }, + { + "word": "seminario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seminar", + "romanization": "seminario", + "example_sentence_native": "Ho partecipato a un interessante seminario.", + "example_sentence_english": "I attended an interesting seminar.", + "pos": "noun", + "word_frequency": 3259 + }, + { + "word": "soglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threshold;doorstep", + "romanization": "soglia", + "example_sentence_native": "Si fermò sulla soglia della porta.", + "example_sentence_english": "He stopped on the threshold of the door.", + "pos": "noun", + "word_frequency": 3260 + }, + { + "word": "sorprendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surprise", + "romanization": "sorprendere", + "example_sentence_native": "La notizia mi ha sorpreso molto.", + "example_sentence_english": "The news surprised me a lot.", + "pos": "verb", + "word_frequency": 3261 + }, + { + "word": "spazzatura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trash;garbage", + "romanization": "spazzatura", + "example_sentence_native": "Butta la spazzatura nel cestino.", + "example_sentence_english": "Throw the trash in the bin.", + "pos": "noun", + "word_frequency": 3262 + }, + { + "word": "stradale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "road;street (adj.)", + "romanization": "stradale", + "example_sentence_native": "C'è un nuovo segnale stradale.", + "example_sentence_english": "There is a new road sign.", + "pos": "adjective", + "word_frequency": 3263 + }, + { + "word": "timore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fear;dread", + "romanization": "timore", + "example_sentence_native": "Aveva timore di volare.", + "example_sentence_english": "He had a fear of flying.", + "pos": "noun", + "word_frequency": 3266 + }, + { + "word": "tribù", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribe", + "romanization": "tribù", + "example_sentence_native": "Le antiche tribù vivevano in armonia con la natura.", + "example_sentence_english": "The ancient tribes lived in harmony with nature.", + "pos": "noun", + "word_frequency": 3268 + }, + { + "word": "universitario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "university (adj.);collegiate", + "romanization": "universitario", + "example_sentence_native": "È uno studente universitario.", + "example_sentence_english": "He is a university student.", + "pos": "adjective", + "word_frequency": 3269 + }, + { + "word": "visibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visibility", + "romanization": "visibilità", + "example_sentence_native": "La visibilità era scarsa a causa della nebbia.", + "example_sentence_english": "Visibility was poor due to the fog.", + "pos": "noun", + "word_frequency": 3270 + }, + { + "word": "accademico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "academic", + "romanization": "accademico", + "example_sentence_native": "Ha avuto un'ottima carriera accademica.", + "example_sentence_english": "He had an excellent academic career.", + "pos": "adjective", + "word_frequency": 3274 + }, + { + "word": "alimentazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutrition;diet;power supply", + "romanization": "alimentazione", + "example_sentence_native": "Una sana alimentazione è fondamentale per la salute.", + "example_sentence_english": "A healthy diet is essential for health.", + "pos": "noun", + "word_frequency": 3275 + }, + { + "word": "appartenenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belonging;membership", + "romanization": "appartenenza", + "example_sentence_native": "Il senso di appartenenza è importante per le persone.", + "example_sentence_english": "The sense of belonging is important for people.", + "pos": "noun", + "word_frequency": 3276 + }, + { + "word": "bacino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basin;pelvis;dock", + "romanization": "bacino", + "example_sentence_native": "Il bacino del Mediterraneo è ricco di storia.", + "example_sentence_english": "The Mediterranean basin is rich in history.", + "pos": "noun", + "word_frequency": 3277 + }, + { + "word": "brillante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bright;brilliant", + "romanization": "brillante", + "example_sentence_native": "Ha avuto un'idea brillante.", + "example_sentence_english": "He had a brilliant idea.", + "pos": "adjective", + "word_frequency": 3279 + }, + { + "word": "bronzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bronze", + "romanization": "bronzo", + "example_sentence_native": "La statua è fatta di bronzo.", + "example_sentence_english": "The statue is made of bronze.", + "pos": "noun", + "word_frequency": 3280 + }, + { + "word": "collettivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collective", + "romanization": "collettivo", + "example_sentence_native": "Hanno preso una decisione collettiva.", + "example_sentence_english": "They made a collective decision.", + "pos": "adjective", + "word_frequency": 3283 + }, + { + "word": "combinazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combination", + "romanization": "combinazione", + "example_sentence_native": "La combinazione di colori è perfetta.", + "example_sentence_english": "The color combination is perfect.", + "pos": "noun", + "word_frequency": 3284 + }, + { + "word": "community", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community", + "romanization": "community", + "example_sentence_native": "La nostra community online è molto attiva.", + "example_sentence_english": "Our online community is very active.", + "pos": "noun", + "word_frequency": 3285 + }, + { + "word": "cosiddetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so-called", + "romanization": "cosiddetto", + "example_sentence_native": "Il cosiddetto esperto non sapeva nulla.", + "example_sentence_english": "The so-called expert knew nothing.", + "pos": "adjective", + "word_frequency": 3286 + }, + { + "word": "costa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coast", + "romanization": "costa", + "example_sentence_native": "Andiamo in vacanza sulla costa.", + "example_sentence_english": "We are going on holiday to the coast.", + "pos": "noun", + "word_frequency": 3287 + }, + { + "word": "cucinare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cook", + "romanization": "cucinare", + "example_sentence_native": "Mi piace cucinare la pasta.", + "example_sentence_english": "I like to cook pasta.", + "pos": "verb", + "word_frequency": 3288 + }, + { + "word": "cv", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "CV;resume", + "romanization": "CV", + "example_sentence_native": "Ho aggiornato il mio CV per la nuova offerta di lavoro.", + "example_sentence_english": "I updated my CV for the new job offer.", + "pos": "noun", + "word_frequency": 3289 + }, + { + "word": "database", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "database", + "romanization": "database", + "example_sentence_native": "I dati sono stati salvati nel database.", + "example_sentence_english": "The data has been saved in the database.", + "pos": "noun", + "word_frequency": 3290 + }, + { + "word": "divorzio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divorce", + "romanization": "divorzio", + "example_sentence_native": "Hanno chiesto il divorzio dopo dieci anni di matrimonio.", + "example_sentence_english": "They filed for divorce after ten years of marriage.", + "pos": "noun", + "word_frequency": 3291 + }, + { + "word": "donare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to donate;to give", + "romanization": "donare", + "example_sentence_native": "Ha deciso di donare il sangue.", + "example_sentence_english": "He decided to donate blood.", + "pos": "verb", + "word_frequency": 3292 + }, + { + "word": "dritto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "straight;upright", + "romanization": "dritto", + "example_sentence_native": "Cammina sempre dritto per questa strada.", + "example_sentence_english": "Always walk straight down this road.", + "pos": "adjective", + "word_frequency": 3293 + }, + { + "word": "godere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enjoy", + "romanization": "godere", + "example_sentence_native": "Spero che tu possa godere la festa.", + "example_sentence_english": "I hope you can enjoy the party.", + "pos": "verb", + "word_frequency": 3295 + }, + { + "word": "impegnare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commit;to engage;to pledge", + "romanization": "impegnare", + "example_sentence_native": "Si è impegnato a finire il lavoro entro domani.", + "example_sentence_english": "He committed to finishing the work by tomorrow.", + "pos": "verb", + "word_frequency": 3296 + }, + { + "word": "incremento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increase;increment", + "romanization": "incremento", + "example_sentence_native": "C'è stato un incremento delle vendite.", + "example_sentence_english": "There has been an increase in sales.", + "pos": "noun", + "word_frequency": 3297 + }, + { + "word": "liquido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liquid", + "romanization": "liquido", + "example_sentence_native": "L'acqua è uno stato liquido.", + "example_sentence_english": "Water is a liquid state.", + "pos": "adjective", + "word_frequency": 3299 + }, + { + "word": "margine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "margin;edge", + "romanization": "margine", + "example_sentence_native": "Lascia un margine sufficiente sul foglio.", + "example_sentence_english": "Leave enough margin on the sheet.", + "pos": "noun", + "word_frequency": 3303 + }, + { + "word": "meraviglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonder;marvel", + "romanization": "meraviglia", + "example_sentence_native": "La vista era una vera meraviglia.", + "example_sentence_english": "The view was a true wonder.", + "pos": "noun", + "word_frequency": 3304 + }, + { + "word": "moltissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very much;a lot", + "romanization": "moltissimo", + "example_sentence_native": "Mi piace moltissimo questo libro.", + "example_sentence_english": "I like this book very much.", + "pos": "adverb", + "word_frequency": 3305 + }, + { + "word": "orologio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clock;watch", + "romanization": "orologio", + "example_sentence_native": "Ho comprato un nuovo orologio.", + "example_sentence_english": "I bought a new watch.", + "pos": "noun", + "word_frequency": 3306 + }, + { + "word": "pollo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chicken", + "romanization": "pollo", + "example_sentence_native": "Stasera mangiamo pollo arrosto.", + "example_sentence_english": "Tonight we are eating roast chicken.", + "pos": "noun", + "word_frequency": 3307 + }, + { + "word": "primaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primary", + "romanization": "primaria", + "example_sentence_native": "L'educazione primaria è fondamentale.", + "example_sentence_english": "Primary education is fundamental.", + "pos": "adjective", + "word_frequency": 3308 + }, + { + "word": "retorica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rhetoric", + "romanization": "retorica", + "example_sentence_native": "Il suo discorso era pieno di retorica.", + "example_sentence_english": "His speech was full of rhetoric.", + "pos": "noun", + "word_frequency": 3310 + }, + { + "word": "ricercatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "researcher", + "romanization": "ricercatore", + "example_sentence_native": "Il ricercatore ha pubblicato un nuovo studio.", + "example_sentence_english": "The researcher published a new study.", + "pos": "noun", + "word_frequency": 3312 + }, + { + "word": "risalire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go back up;to date back to", + "romanization": "risalire", + "example_sentence_native": "La tradizione risale a tempi antichi.", + "example_sentence_english": "The tradition dates back to ancient times.", + "pos": "verb", + "word_frequency": 3313 + }, + { + "word": "riservare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reserve;to set aside", + "romanization": "riservare", + "example_sentence_native": "Vorrei riservare un tavolo per due.", + "example_sentence_english": "I would like to reserve a table for two.", + "pos": "verb", + "word_frequency": 3314 + }, + { + "word": "ritrovare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find again;to rediscover", + "romanization": "ritrovare", + "example_sentence_native": "Ho ritrovato le mie chiavi.", + "example_sentence_english": "I found my keys again.", + "pos": "verb", + "word_frequency": 3315 + }, + { + "word": "scienziato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scientist", + "romanization": "scienziato", + "example_sentence_native": "Lo scienziato sta conducendo un esperimento.", + "example_sentence_english": "The scientist is conducting an experiment.", + "pos": "noun", + "word_frequency": 3316 + }, + { + "word": "sconosciuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unknown;stranger", + "romanization": "sconosciuto", + "example_sentence_native": "Ho incontrato una persona sconosciuta.", + "example_sentence_english": "I met an unknown person.", + "pos": "adjective", + "word_frequency": 3317 + }, + { + "word": "sedere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to sit", + "romanization": "sedere", + "example_sentence_native": "Per favore, siediti.", + "example_sentence_english": "Please, sit down.", + "pos": "verb", + "word_frequency": 3318 + }, + { + "word": "settimanale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weekly", + "romanization": "settimanale", + "example_sentence_native": "Facciamo una riunione settimanale.", + "example_sentence_english": "We have a weekly meeting.", + "pos": "adjective", + "word_frequency": 3319 + }, + { + "word": "sopportare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bear;to tolerate", + "romanization": "sopportare", + "example_sentence_native": "Non riesco più a sopportare questo rumore.", + "example_sentence_english": "I can't bear this noise anymore.", + "pos": "verb", + "word_frequency": 3321 + }, + { + "word": "sorgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rise;to emerge", + "romanization": "sorgere", + "example_sentence_native": "Il sole sorge presto in estate.", + "example_sentence_english": "The sun rises early in summer.", + "pos": "verb", + "word_frequency": 3322 + }, + { + "word": "sottolineare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to underline;to emphasize", + "romanization": "sottolineare", + "example_sentence_native": "Vorrei sottolineare l'importanza di questo punto.", + "example_sentence_english": "I would like to emphasize the importance of this point.", + "pos": "verb", + "word_frequency": 3323 + }, + { + "word": "sovrano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereign", + "romanization": "sovrano", + "example_sentence_native": "Il popolo è il sovrano in una democrazia.", + "example_sentence_english": "The people are the sovereign in a democracy.", + "pos": "adjective", + "word_frequency": 3324 + }, + { + "word": "spettare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be up to;to be due to", + "romanization": "spettare", + "example_sentence_native": "Spetta a te decidere cosa fare.", + "example_sentence_english": "It's up to you to decide what to do.", + "pos": "verb", + "word_frequency": 3325 + }, + { + "word": "spettatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spectator", + "romanization": "spettatore", + "example_sentence_native": "Gli spettatori hanno applaudito a lungo.", + "example_sentence_english": "The spectators applauded for a long time.", + "pos": "noun", + "word_frequency": 3326 + }, + { + "word": "territoriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "territorial", + "romanization": "territoriale", + "example_sentence_native": "Hanno discusso della disputa territoriale.", + "example_sentence_english": "They discussed the territorial dispute.", + "pos": "adjective", + "word_frequency": 3329 + }, + { + "word": "tonnellata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ton", + "romanization": "tonnellata", + "example_sentence_native": "Il camion trasportava diverse tonnellate di merce.", + "example_sentence_english": "The truck was carrying several tons of goods.", + "pos": "noun", + "word_frequency": 3330 + }, + { + "word": "trasformare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transform", + "romanization": "trasformare", + "example_sentence_native": "La tecnologia può trasformare le nostre vite.", + "example_sentence_english": "Technology can transform our lives.", + "pos": "verb", + "word_frequency": 3331 + }, + { + "word": "abbandono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abandonment", + "romanization": "abbandono", + "example_sentence_native": "L'abbandono degli animali è un reato.", + "example_sentence_english": "Animal abandonment is a crime.", + "pos": "noun", + "word_frequency": 3334 + }, + { + "word": "carbone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coal", + "romanization": "carbone", + "example_sentence_native": "Il carbone è una fonte di energia fossile.", + "example_sentence_english": "Coal is a fossil fuel source.", + "pos": "noun", + "word_frequency": 3338 + }, + { + "word": "chiarezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarity", + "romanization": "chiarezza", + "example_sentence_native": "Ha spiegato il concetto con grande chiarezza.", + "example_sentence_english": "He explained the concept with great clarity.", + "pos": "noun", + "word_frequency": 3339 + }, + { + "word": "colonia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colony", + "romanization": "colonia", + "example_sentence_native": "Molti paesi europei avevano delle colonie.", + "example_sentence_english": "Many European countries had colonies.", + "pos": "noun", + "word_frequency": 3340 + }, + { + "word": "concordare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree", + "romanization": "concordare", + "example_sentence_native": "Dobbiamo concordare una data per l'incontro.", + "example_sentence_english": "We need to agree on a date for the meeting.", + "pos": "verb", + "word_frequency": 3341 + }, + { + "word": "curato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well-groomed;neat;cared for", + "romanization": "curato", + "example_sentence_native": "Il giardino era molto curato.", + "example_sentence_english": "The garden was very well-maintained.", + "pos": "adjective", + "word_frequency": 3342 + }, + { + "word": "delitto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crime;felony", + "romanization": "delitto", + "example_sentence_native": "La polizia sta indagando sul delitto.", + "example_sentence_english": "The police are investigating the crime.", + "pos": "noun", + "word_frequency": 3343 + }, + { + "word": "eletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elected", + "romanization": "eletto", + "example_sentence_native": "Il presidente eletto ha promesso cambiamenti.", + "example_sentence_english": "The elected president promised changes.", + "pos": "adjective", + "word_frequency": 3346 + }, + { + "word": "esperimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "experiment", + "romanization": "esperimento", + "example_sentence_native": "Gli scienziati hanno condotto un esperimento.", + "example_sentence_english": "The scientists conducted an experiment.", + "pos": "noun", + "word_frequency": 3347 + }, + { + "word": "esposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exposed;exhibited", + "romanization": "esposto", + "example_sentence_native": "Il quadro è esposto al museo.", + "example_sentence_english": "The painting is exhibited at the museum.", + "pos": "adjective", + "word_frequency": 3348 + }, + { + "word": "folle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mad;crazy", + "romanization": "folle", + "example_sentence_native": "È stata un'idea folle, ma ha funzionato.", + "example_sentence_english": "It was a crazy idea, but it worked.", + "pos": "adjective", + "word_frequency": 3349 + }, + { + "word": "galera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prison;jail", + "romanization": "galera", + "example_sentence_native": "È finito in galera per i suoi crimini.", + "example_sentence_english": "He ended up in prison for his crimes.", + "pos": "noun", + "word_frequency": 3350 + }, + { + "word": "gelato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ice cream", + "romanization": "gelato", + "example_sentence_native": "Mi piace molto il gelato al cioccolato.", + "example_sentence_english": "I really like chocolate ice cream.", + "pos": "noun", + "word_frequency": 3351 + }, + { + "word": "ginocchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "knee", + "romanization": "ginocchio", + "example_sentence_native": "Mi sono fatto male al ginocchio cadendo.", + "example_sentence_english": "I hurt my knee falling.", + "pos": "noun", + "word_frequency": 3352 + }, + { + "word": "identificare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to identify", + "romanization": "identificare", + "example_sentence_native": "È difficile identificare la causa del problema.", + "example_sentence_english": "It's difficult to identify the cause of the problem.", + "pos": "verb", + "word_frequency": 3353 + }, + { + "word": "imbarazzante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embarrassing", + "romanization": "imbarazzante", + "example_sentence_native": "È stata una situazione molto imbarazzante.", + "example_sentence_english": "It was a very embarrassing situation.", + "pos": "adjective", + "word_frequency": 3354 + }, + { + "word": "incinta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pregnant", + "romanization": "incinta", + "example_sentence_native": "Mia sorella è incinta del suo primo figlio.", + "example_sentence_english": "My sister is pregnant with her first child.", + "pos": "adjective", + "word_frequency": 3355 + }, + { + "word": "indispensabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indispensable;essential", + "romanization": "indispensabile", + "example_sentence_native": "L'acqua è indispensabile per la vita.", + "example_sentence_english": "Water is indispensable for life.", + "pos": "adjective", + "word_frequency": 3356 + }, + { + "word": "invasione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasion", + "romanization": "invasione", + "example_sentence_native": "Hanno preparato una difesa contro l'invasione.", + "example_sentence_english": "They prepared a defense against the invasion.", + "pos": "noun", + "word_frequency": 3357 + }, + { + "word": "inventato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invented;made up", + "romanization": "inventato", + "example_sentence_native": "La storia che ha raccontato era completamente inventata.", + "example_sentence_english": "The story he told was completely made up.", + "pos": "adjective", + "word_frequency": 3358 + }, + { + "word": "lasciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left;abandoned", + "romanization": "lasciato", + "example_sentence_native": "Il libro è stato lasciato sul tavolo.", + "example_sentence_english": "The book was left on the table.", + "pos": "adjective", + "word_frequency": 3360 + }, + { + "word": "lento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "slow", + "romanization": "lento", + "example_sentence_native": "La lumaca è molto lenta.", + "example_sentence_english": "The snail is very slow.", + "pos": "adjective", + "word_frequency": 3361 + }, + { + "word": "nervoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nervous", + "romanization": "nervoso", + "example_sentence_native": "Era molto nervoso prima dell'esame.", + "example_sentence_english": "He was very nervous before the exam.", + "pos": "adjective", + "word_frequency": 3362 + }, + { + "word": "operato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operated (on);undergone surgery", + "romanization": "operato", + "example_sentence_native": "Il paziente è stato operato ieri.", + "example_sentence_english": "The patient was operated on yesterday.", + "pos": "adjective", + "word_frequency": 3363 + }, + { + "word": "orribile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horrible;terrible", + "romanization": "orribile", + "example_sentence_native": "Il tempo era orribile durante la vacanza.", + "example_sentence_english": "The weather was horrible during the vacation.", + "pos": "adjective", + "word_frequency": 3364 + }, + { + "word": "parzialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partially", + "romanization": "parzialmente", + "example_sentence_native": "Il progetto è stato completato solo parzialmente.", + "example_sentence_english": "The project was only partially completed.", + "pos": "adverb", + "word_frequency": 3367 + }, + { + "word": "passeggiata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "walk;stroll", + "romanization": "passeggiata", + "example_sentence_native": "Facciamo una passeggiata al parco.", + "example_sentence_english": "Let's take a walk in the park.", + "pos": "noun", + "word_frequency": 3368 + }, + { + "word": "pasto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meal", + "romanization": "pasto", + "example_sentence_native": "È ora di fare il pasto.", + "example_sentence_english": "It's time to have the meal.", + "pos": "noun", + "word_frequency": 3369 + }, + { + "word": "postato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "posted", + "romanization": "postato", + "example_sentence_native": "La foto è stata postata su Instagram.", + "example_sentence_english": "The photo was posted on Instagram.", + "pos": "adjective", + "word_frequency": 3370 + }, + { + "word": "pulito", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clean", + "romanization": "pulito", + "example_sentence_native": "La casa è molto pulita.", + "example_sentence_english": "The house is very clean.", + "pos": "adjective", + "word_frequency": 3371 + }, + { + "word": "raro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rare", + "romanization": "raro", + "example_sentence_native": "È un evento molto raro.", + "example_sentence_english": "It's a very rare event.", + "pos": "adjective", + "word_frequency": 3372 + }, + { + "word": "rientrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to re-enter;to return (home)", + "romanization": "rientrare", + "example_sentence_native": "Devo rientrare a casa presto.", + "example_sentence_english": "I have to return home early.", + "pos": "verb", + "word_frequency": 3373 + }, + { + "word": "secco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dry", + "romanization": "secco", + "example_sentence_native": "Il clima qui è molto secco.", + "example_sentence_english": "The climate here is very dry.", + "pos": "adjective", + "word_frequency": 3375 + }, + { + "word": "sorte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fate;destiny;kind (of)", + "romanization": "sorte", + "example_sentence_native": "Il suo destino era una sorte crudele.", + "example_sentence_english": "His destiny was a cruel fate.", + "pos": "noun", + "word_frequency": 3376 + }, + { + "word": "sovranità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereignty", + "romanization": "sovranità", + "example_sentence_native": "La sovranità nazionale è fondamentale.", + "example_sentence_english": "National sovereignty is fundamental.", + "pos": "noun", + "word_frequency": 3377 + }, + { + "word": "svolgimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "development;unfolding;carrying out", + "romanization": "svolgimento", + "example_sentence_native": "Lo svolgimento dell'evento è stato impeccabile.", + "example_sentence_english": "The unfolding of the event was impeccable.", + "pos": "noun", + "word_frequency": 3379 + }, + { + "word": "tubo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tube;pipe", + "romanization": "tubo", + "example_sentence_native": "C'è una perdita nel tubo dell'acqua.", + "example_sentence_english": "There's a leak in the water pipe.", + "pos": "noun", + "word_frequency": 3380 + }, + { + "word": "tumore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tumor", + "romanization": "tumore", + "example_sentence_native": "La ricerca sul tumore è fondamentale.", + "example_sentence_english": "Cancer research is fundamental.", + "pos": "noun", + "word_frequency": 3381 + }, + { + "word": "undici", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eleven", + "romanization": "undici", + "example_sentence_native": "Ho undici anni.", + "example_sentence_english": "I am eleven years old.", + "pos": "noun", + "word_frequency": 3383 + }, + { + "word": "accolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welcomed;received", + "romanization": "accolto", + "example_sentence_native": "Siamo stati accolti calorosamente.", + "example_sentence_english": "We were warmly welcomed.", + "pos": "adjective", + "word_frequency": 3386 + }, + { + "word": "all'improvviso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suddenly", + "romanization": "all'improvviso", + "example_sentence_native": "All'improvviso, ha iniziato a piovere.", + "example_sentence_english": "Suddenly, it started to rain.", + "pos": "adverb", + "word_frequency": 3388 + }, + { + "word": "ambasciatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambassador", + "romanization": "ambasciatore", + "example_sentence_native": "L'ambasciatore ha tenuto un discorso.", + "example_sentence_english": "The ambassador gave a speech.", + "pos": "noun", + "word_frequency": 3389 + }, + { + "word": "aquila", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eagle", + "romanization": "aquila", + "example_sentence_native": "L'aquila vola alta nel cielo.", + "example_sentence_english": "The eagle flies high in the sky.", + "pos": "noun", + "word_frequency": 3391 + }, + { + "word": "assistere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assist;to attend", + "romanization": "assistere", + "example_sentence_native": "Ho assistito a una conferenza interessante.", + "example_sentence_english": "I attended an interesting conference.", + "pos": "verb", + "word_frequency": 3392 + }, + { + "word": "budget", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "budget", + "romanization": "budget", + "example_sentence_native": "Dobbiamo rispettare il budget.", + "example_sentence_english": "We must respect the budget.", + "pos": "noun", + "word_frequency": 3393 + }, + { + "word": "colloquio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interview;conversation", + "romanization": "colloquio", + "example_sentence_native": "Ho un colloquio di lavoro domani.", + "example_sentence_english": "I have a job interview tomorrow.", + "pos": "noun", + "word_frequency": 3396 + }, + { + "word": "condivisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharing", + "romanization": "condivisione", + "example_sentence_native": "La condivisione di idee è importante.", + "example_sentence_english": "The sharing of ideas is important.", + "pos": "noun", + "word_frequency": 3397 + }, + { + "word": "convinzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction;belief", + "romanization": "convinzione", + "example_sentence_native": "Ho la ferma convinzione che sia giusto.", + "example_sentence_english": "I have the firm conviction that it is right.", + "pos": "noun", + "word_frequency": 3398 + }, + { + "word": "desiderare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to desire", + "romanization": "desiderare", + "example_sentence_native": "Desidero viaggiare in tutto il mondo.", + "example_sentence_english": "I desire to travel all over the world.", + "pos": "verb", + "word_frequency": 3401 + }, + { + "word": "diagnosi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnosis", + "romanization": "diagnosi", + "example_sentence_native": "Il medico ha fatto una diagnosi accurata.", + "example_sentence_english": "The doctor made an accurate diagnosis.", + "pos": "noun", + "word_frequency": 3402 + }, + { + "word": "diversità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diversity", + "romanization": "diversità", + "example_sentence_native": "La diversità culturale è una ricchezza.", + "example_sentence_english": "Cultural diversity is a richness.", + "pos": "noun", + "word_frequency": 3403 + }, + { + "word": "diviso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divided", + "romanization": "diviso", + "example_sentence_native": "Il gruppo era diviso sulla decisione.", + "example_sentence_english": "The group was divided on the decision.", + "pos": "adjective", + "word_frequency": 3404 + }, + { + "word": "esecutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executive", + "romanization": "esecutivo", + "example_sentence_native": "Il potere esecutivo è nelle mani del governo.", + "example_sentence_english": "The executive power is in the hands of the government.", + "pos": "adjective", + "word_frequency": 3405 + }, + { + "word": "formale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formal", + "romanization": "formale", + "example_sentence_native": "L'incontro è stato molto formale.", + "example_sentence_english": "The meeting was very formal.", + "pos": "adjective", + "word_frequency": 3406 + }, + { + "word": "gamma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "range", + "romanization": "gamma", + "example_sentence_native": "L'azienda offre una vasta gamma di prodotti.", + "example_sentence_english": "The company offers a wide range of products.", + "pos": "noun", + "word_frequency": 3407 + }, + { + "word": "gestito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "managed", + "romanization": "gestito", + "example_sentence_native": "Il progetto è stato ben gestito.", + "example_sentence_english": "The project was well managed.", + "pos": "adjective", + "word_frequency": 3408 + }, + { + "word": "gravità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriousness", + "romanization": "gravità", + "example_sentence_native": "La gravità della situazione è preoccupante.", + "example_sentence_english": "The seriousness of the situation is worrying.", + "pos": "noun", + "word_frequency": 3409 + }, + { + "word": "immobile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "property", + "romanization": "immobile", + "example_sentence_native": "Hanno investito in un immobile nel centro città.", + "example_sentence_english": "They invested in a property in the city center.", + "pos": "noun", + "word_frequency": 3411 + }, + { + "word": "immobiliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "real estate (adj.)", + "romanization": "immobiliare", + "example_sentence_native": "L'agenzia immobiliare ha molte offerte.", + "example_sentence_english": "The real estate agency has many offers.", + "pos": "adjective", + "word_frequency": 3412 + }, + { + "word": "ladro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thief", + "romanization": "ladro", + "example_sentence_native": "Il ladro è stato catturato dalla polizia.", + "example_sentence_english": "The thief was caught by the police.", + "pos": "noun", + "word_frequency": 3414 + }, + { + "word": "letterario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literary", + "romanization": "letterario", + "example_sentence_native": "Ha un grande interesse per il genere letterario.", + "example_sentence_english": "He has a great interest in the literary genre.", + "pos": "adjective", + "word_frequency": 3415 + }, + { + "word": "limitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to limit", + "romanization": "limitare", + "example_sentence_native": "Dobbiamo limitare l'uso dell'acqua.", + "example_sentence_english": "We must limit the use of water.", + "pos": "verb", + "word_frequency": 3416 + }, + { + "word": "lira", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lira (former Italian currency)", + "romanization": "lira", + "example_sentence_native": "Prima dell'euro, la valuta italiana era la lira.", + "example_sentence_english": "Before the euro, the Italian currency was the lira.", + "pos": "noun", + "word_frequency": 3417 + }, + { + "word": "magico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "magical", + "romanization": "magico", + "example_sentence_native": "Lo spettacolo di magia è stato davvero magico.", + "example_sentence_english": "The magic show was truly magical.", + "pos": "adjective", + "word_frequency": 3418 + }, + { + "word": "magistratura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judiciary", + "romanization": "magistratura", + "example_sentence_native": "La magistratura è un potere indipendente.", + "example_sentence_english": "The judiciary is an independent power.", + "pos": "noun", + "word_frequency": 3419 + }, + { + "word": "ospitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to host", + "romanization": "ospitare", + "example_sentence_native": "La città ospiterà le Olimpiadi.", + "example_sentence_english": "The city will host the Olympics.", + "pos": "verb", + "word_frequency": 3421 + }, + { + "word": "pancia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belly", + "romanization": "pancia", + "example_sentence_native": "Mi fa male la pancia.", + "example_sentence_english": "My stomach hurts.", + "pos": "noun", + "word_frequency": 3422 + }, + { + "word": "pianto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crying", + "romanization": "pianto", + "example_sentence_native": "Il pianto del bambino si sentiva da lontano.", + "example_sentence_english": "The baby's crying could be heard from afar.", + "pos": "noun", + "word_frequency": 3424 + }, + { + "word": "preferito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "favorite", + "romanization": "preferito", + "example_sentence_native": "Il mio colore preferito è il blu.", + "example_sentence_english": "My favorite color is blue.", + "pos": "adjective", + "word_frequency": 3425 + }, + { + "word": "prezioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precious", + "romanization": "prezioso", + "example_sentence_native": "Questo anello è molto prezioso per me.", + "example_sentence_english": "This ring is very precious to me.", + "pos": "adjective", + "word_frequency": 3426 + }, + { + "word": "ramo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "branch", + "romanization": "ramo", + "example_sentence_native": "Un uccello si è posato su un ramo dell'albero.", + "example_sentence_english": "A bird landed on a branch of the tree.", + "pos": "noun", + "word_frequency": 3427 + }, + { + "word": "ribelle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebel", + "romanization": "ribelle", + "example_sentence_native": "Era considerato un ribelle fin da giovane.", + "example_sentence_english": "He was considered a rebel from a young age.", + "pos": "noun", + "word_frequency": 3429 + }, + { + "word": "rifiutare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refuse", + "romanization": "rifiutare", + "example_sentence_native": "Ha rifiutato la proposta di lavoro.", + "example_sentence_english": "He refused the job offer.", + "pos": "verb", + "word_frequency": 3430 + }, + { + "word": "rifiutato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rejected", + "romanization": "rifiutato", + "example_sentence_native": "La sua richiesta è stata rifiutata.", + "example_sentence_english": "His request was rejected.", + "pos": "adjective", + "word_frequency": 3431 + }, + { + "word": "riga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "line", + "romanization": "riga", + "example_sentence_native": "Scrivi sulla riga.", + "example_sentence_english": "Write on the line.", + "pos": "noun", + "word_frequency": 3432 + }, + { + "word": "rimuovere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remove", + "romanization": "rimuovere", + "example_sentence_native": "Dobbiamo rimuovere le erbacce dal giardino.", + "example_sentence_english": "We need to remove the weeds from the garden.", + "pos": "verb", + "word_frequency": 3433 + }, + { + "word": "risparmiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to save", + "romanization": "risparmiare", + "example_sentence_native": "Cerco di risparmiare denaro ogni mese.", + "example_sentence_english": "I try to save money every month.", + "pos": "verb", + "word_frequency": 3434 + }, + { + "word": "rovina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruin", + "romanization": "rovina", + "example_sentence_native": "Le antiche rovine romane sono affascinanti.", + "example_sentence_english": "The ancient Roman ruins are fascinating.", + "pos": "noun", + "word_frequency": 3435 + }, + { + "word": "segnalare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to report", + "romanization": "segnalare", + "example_sentence_native": "Dobbiamo segnalare il problema alle autorità.", + "example_sentence_english": "We must report the problem to the authorities.", + "pos": "verb", + "word_frequency": 3438 + }, + { + "word": "sincero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincere", + "romanization": "sincero", + "example_sentence_native": "È una persona molto sincera.", + "example_sentence_english": "He is a very sincere person.", + "pos": "adjective", + "word_frequency": 3439 + }, + { + "word": "sopratutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "above all;especially", + "romanization": "sopratutto", + "example_sentence_native": "Soprattutto, voglio ringraziare tutti per il vostro supporto.", + "example_sentence_english": "Above all, I want to thank everyone for your support.", + "pos": "adverb", + "word_frequency": 3440 + }, + { + "word": "sostenibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustainable", + "romanization": "sostenibile", + "example_sentence_native": "Dobbiamo trovare soluzioni più sostenibili per il futuro.", + "example_sentence_english": "We must find more sustainable solutions for the future.", + "pos": "adjective", + "word_frequency": 3441 + }, + { + "word": "sostituito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "replaced;substituted", + "romanization": "sostituito", + "example_sentence_native": "Il pezzo rotto è stato sostituito con uno nuovo.", + "example_sentence_english": "The broken part has been replaced with a new one.", + "pos": "adjective", + "word_frequency": 3442 + }, + { + "word": "tastiera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "keyboard", + "romanization": "tastiera", + "example_sentence_native": "Ho bisogno di una nuova tastiera per il mio computer.", + "example_sentence_english": "I need a new keyboard for my computer.", + "pos": "noun", + "word_frequency": 3444 + }, + { + "word": "tenente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lieutenant", + "romanization": "tenente", + "example_sentence_native": "Il tenente ha dato gli ordini alla squadra.", + "example_sentence_english": "The lieutenant gave orders to the squad.", + "pos": "noun", + "word_frequency": 3445 + }, + { + "word": "tradimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "betrayal;treason", + "romanization": "tradimento", + "example_sentence_native": "Il suo tradimento ha causato molta sofferenza.", + "example_sentence_english": "His betrayal caused a lot of suffering.", + "pos": "noun", + "word_frequency": 3447 + }, + { + "word": "tramonto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunset", + "romanization": "tramonto", + "example_sentence_native": "Il tramonto sul mare era mozzafiato.", + "example_sentence_english": "The sunset over the sea was breathtaking.", + "pos": "noun", + "word_frequency": 3448 + }, + { + "word": "urlo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scream;shout", + "romanization": "urlo", + "example_sentence_native": "Ho sentito un urlo provenire dalla strada.", + "example_sentence_english": "I heard a scream coming from the street.", + "pos": "noun", + "word_frequency": 3449 + }, + { + "word": "affascinante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinating;charming", + "romanization": "affascinante", + "example_sentence_native": "Quel libro è davvero affascinante.", + "example_sentence_english": "That book is truly fascinating.", + "pos": "adjective", + "word_frequency": 3453 + }, + { + "word": "andarsene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leave;to go away", + "romanization": "andarsene", + "example_sentence_native": "È tardi, devo andarmene.", + "example_sentence_english": "It's late, I have to leave.", + "pos": "verb", + "word_frequency": 3454 + }, + { + "word": "apprezzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appreciated;valued", + "romanization": "apprezzato", + "example_sentence_native": "Il tuo aiuto è molto apprezzato.", + "example_sentence_english": "Your help is much appreciated.", + "pos": "adjective", + "word_frequency": 3455 + }, + { + "word": "ascoltato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "listened to;heard", + "romanization": "ascoltato", + "example_sentence_native": "Il suo consiglio è stato ascoltato da tutti.", + "example_sentence_english": "His advice was listened to by everyone.", + "pos": "adjective", + "word_frequency": 3456 + }, + { + "word": "attendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wait for;to expect", + "romanization": "attendere", + "example_sentence_native": "Devo attendere la risposta prima di agire.", + "example_sentence_english": "I must wait for the answer before acting.", + "pos": "verb", + "word_frequency": 3457 + }, + { + "word": "aziendale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporate;company-related", + "romanization": "aziendale", + "example_sentence_native": "Abbiamo avuto una riunione aziendale importante.", + "example_sentence_english": "We had an important corporate meeting.", + "pos": "adjective", + "word_frequency": 3458 + }, + { + "word": "ballare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dance", + "romanization": "ballare", + "example_sentence_native": "Mi piace ballare la salsa.", + "example_sentence_english": "I like to dance salsa.", + "pos": "verb", + "word_frequency": 3459 + }, + { + "word": "battere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to beat;to hit", + "romanization": "battere", + "example_sentence_native": "Il mio cuore batte forte.", + "example_sentence_english": "My heart beats fast.", + "pos": "verb", + "word_frequency": 3460 + }, + { + "word": "camicia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "shirt", + "romanization": "camicia", + "example_sentence_native": "Ho comprato una nuova camicia blu.", + "example_sentence_english": "I bought a new blue shirt.", + "pos": "noun", + "word_frequency": 3462 + }, + { + "word": "collaboratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collaborator;colleague", + "romanization": "collaboratore", + "example_sentence_native": "È un collaboratore molto affidabile.", + "example_sentence_english": "He is a very reliable collaborator.", + "pos": "noun", + "word_frequency": 3463 + }, + { + "word": "concentrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concentration", + "romanization": "concentrazione", + "example_sentence_native": "Ho bisogno di molta concentrazione per questo compito.", + "example_sentence_english": "I need a lot of concentration for this task.", + "pos": "noun", + "word_frequency": 3464 + }, + { + "word": "dedica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dedication;inscription", + "romanization": "dedica", + "example_sentence_native": "Il libro aveva una dedica speciale.", + "example_sentence_english": "The book had a special dedication.", + "pos": "noun", + "word_frequency": 3466 + }, + { + "word": "dintorno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surroundings;around", + "romanization": "dintorno", + "example_sentence_native": "Abbiamo esplorato il dintorno del castello.", + "example_sentence_english": "We explored the surroundings of the castle.", + "pos": "noun", + "word_frequency": 3467 + }, + { + "word": "distrutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "destroyed;ruined", + "romanization": "distrutto", + "example_sentence_native": "La città era completamente distrutta dopo il terremoto.", + "example_sentence_english": "The city was completely destroyed after the earthquake.", + "pos": "adjective", + "word_frequency": 3468 + }, + { + "word": "esito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outcome;result", + "romanization": "esito", + "example_sentence_native": "L'esito dell'esame sarà annunciato domani.", + "example_sentence_english": "The outcome of the exam will be announced tomorrow.", + "pos": "noun", + "word_frequency": 3469 + }, + { + "word": "esponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exponent;representative;leading figure", + "romanization": "esponente", + "example_sentence_native": "È un esponente di spicco del partito.", + "example_sentence_english": "He is a leading figure of the party.", + "pos": "noun", + "word_frequency": 3470 + }, + { + "word": "funzionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functional", + "romanization": "funzionale", + "example_sentence_native": "Il nuovo design è molto più funzionale.", + "example_sentence_english": "The new design is much more functional.", + "pos": "adjective", + "word_frequency": 3471 + }, + { + "word": "giacca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "jacket", + "romanization": "giacca", + "example_sentence_native": "Ho dimenticato la mia giacca a casa.", + "example_sentence_english": "I forgot my jacket at home.", + "pos": "noun", + "word_frequency": 3472 + }, + { + "word": "giurisprudenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisprudence;law (as a field of study)", + "romanization": "giurisprudenza", + "example_sentence_native": "Ha studiato giurisprudenza all'università.", + "example_sentence_english": "He studied jurisprudence at university.", + "pos": "noun", + "word_frequency": 3473 + }, + { + "word": "gomma", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rubber;eraser;tire", + "romanization": "gomma", + "example_sentence_native": "Ho bisogno di una gomma per cancellare.", + "example_sentence_english": "I need an eraser.", + "pos": "noun", + "word_frequency": 3474 + }, + { + "word": "manovra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maneuver;operation", + "romanization": "manovra", + "example_sentence_native": "La manovra di parcheggio è stata difficile.", + "example_sentence_english": "The parking maneuver was difficult.", + "pos": "noun", + "word_frequency": 3477 + }, + { + "word": "medesimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "same;identical", + "romanization": "medesimo", + "example_sentence_native": "Hanno espresso la medesima opinione.", + "example_sentence_english": "They expressed the same opinion.", + "pos": "adjective", + "word_frequency": 3478 + }, + { + "word": "misto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed", + "romanization": "misto", + "example_sentence_native": "Abbiamo ordinato un'insalata mista.", + "example_sentence_english": "We ordered a mixed salad.", + "pos": "adjective", + "word_frequency": 3479 + }, + { + "word": "multa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fine;penalty", + "romanization": "multa", + "example_sentence_native": "Ho ricevuto una multa per eccesso di velocità.", + "example_sentence_english": "I received a fine for speeding.", + "pos": "noun", + "word_frequency": 3480 + }, + { + "word": "pacchetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "package;packet", + "romanization": "pacchetto", + "example_sentence_native": "Ho comprato un pacchetto di biscotti.", + "example_sentence_english": "I bought a packet of biscuits.", + "pos": "noun", + "word_frequency": 3481 + }, + { + "word": "password", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "password", + "romanization": "password", + "example_sentence_native": "Ricorda di cambiare la tua password regolarmente.", + "example_sentence_english": "Remember to change your password regularly.", + "pos": "noun", + "word_frequency": 3482 + }, + { + "word": "patata", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "potato", + "romanization": "patata", + "example_sentence_native": "Mi piacciono le patate fritte.", + "example_sentence_english": "I like french fries.", + "pos": "noun", + "word_frequency": 3483 + }, + { + "word": "politicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "politically", + "romanization": "politicamente", + "example_sentence_native": "Politicamente, la situazione è molto complessa.", + "example_sentence_english": "Politically, the situation is very complex.", + "pos": "adverb", + "word_frequency": 3485 + }, + { + "word": "registrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered;recorded", + "romanization": "registrato", + "example_sentence_native": "Il pacco è stato registrato prima della spedizione.", + "example_sentence_english": "The package was registered before shipping.", + "pos": "adjective", + "word_frequency": 3486 + }, + { + "word": "retro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "back;rear", + "romanization": "retro", + "example_sentence_native": "Sul retro della foto c'è una data.", + "example_sentence_english": "On the back of the photo there is a date.", + "pos": "noun", + "word_frequency": 3487 + }, + { + "word": "richiamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recall;appeal;reminder", + "romanization": "richiamo", + "example_sentence_native": "L'azienda ha emesso un richiamo per il prodotto difettoso.", + "example_sentence_english": "The company issued a recall for the defective product.", + "pos": "noun", + "word_frequency": 3488 + }, + { + "word": "riconosciuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recognized;acknowledged", + "romanization": "riconosciuto", + "example_sentence_native": "È un artista riconosciuto a livello internazionale.", + "example_sentence_english": "He is an internationally recognized artist.", + "pos": "adjective", + "word_frequency": 3489 + }, + { + "word": "rito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rite;ritual", + "romanization": "rito", + "example_sentence_native": "La cerimonia segue un antico rito.", + "example_sentence_english": "The ceremony follows an ancient rite.", + "pos": "noun", + "word_frequency": 3490 + }, + { + "word": "rivelato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revealed;disclosed", + "romanization": "rivelato", + "example_sentence_native": "Il segreto è stato finalmente rivelato.", + "example_sentence_english": "The secret has finally been revealed.", + "pos": "adjective", + "word_frequency": 3491 + }, + { + "word": "sfruttamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exploitation;utilization", + "romanization": "sfruttamento", + "example_sentence_native": "Dobbiamo combattere lo sfruttamento del lavoro minorile.", + "example_sentence_english": "We must fight child labor exploitation.", + "pos": "noun", + "word_frequency": 3492 + }, + { + "word": "singolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "singular;unique;odd", + "romanization": "singolare", + "example_sentence_native": "È un caso singolare, non ne ho mai visto uno simile.", + "example_sentence_english": "It's a singular case, I've never seen one like it.", + "pos": "adjective", + "word_frequency": 3493 + }, + { + "word": "sopravvivenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survival", + "romanization": "sopravvivenza", + "example_sentence_native": "La sopravvivenza in natura è difficile.", + "example_sentence_english": "Survival in the wild is difficult.", + "pos": "noun", + "word_frequency": 3494 + }, + { + "word": "stupro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rape", + "romanization": "stupro", + "example_sentence_native": "La legge condanna severamente lo stupro.", + "example_sentence_english": "The law severely condemns rape.", + "pos": "noun", + "word_frequency": 3495 + }, + { + "word": "successione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "succession;sequence;inheritance", + "romanization": "successione", + "example_sentence_native": "C'è stata una successione di eventi inaspettati.", + "example_sentence_english": "There was a succession of unexpected events.", + "pos": "noun", + "word_frequency": 3496 + }, + { + "word": "supremo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supreme;ultimate", + "romanization": "supremo", + "example_sentence_native": "La Corte Suprema ha emesso la sua decisione.", + "example_sentence_english": "The Supreme Court issued its decision.", + "pos": "adjective", + "word_frequency": 3497 + }, + { + "word": "tag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tag (as in label;keyword)", + "romanization": "tag", + "example_sentence_native": "Aggiungi un tag a questa foto per trovarla più facilmente.", + "example_sentence_english": "Add a tag to this photo to find it more easily.", + "pos": "noun", + "word_frequency": 3498 + }, + { + "word": "tematica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theme;topic", + "romanization": "tematica", + "example_sentence_native": "La tematica del convegno è l'intelligenza artificiale.", + "example_sentence_english": "The theme of the conference is artificial intelligence.", + "pos": "noun", + "word_frequency": 3499 + }, + { + "word": "torneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tournament", + "romanization": "torneo", + "example_sentence_native": "Hanno organizzato un torneo di calcio.", + "example_sentence_english": "They organized a football tournament.", + "pos": "noun", + "word_frequency": 3500 + }, + { + "word": "turco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Turkish", + "romanization": "turco", + "example_sentence_native": "Ha comprato un tappeto turco.", + "example_sentence_english": "He bought a Turkish rug.", + "pos": "adjective", + "word_frequency": 3501 + }, + { + "word": "velo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veil;film", + "romanization": "velo", + "example_sentence_native": "La sposa indossava un lungo velo bianco.", + "example_sentence_english": "The bride wore a long white veil.", + "pos": "noun", + "word_frequency": 3503 + }, + { + "word": "viale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avenue;boulevard", + "romanization": "viale", + "example_sentence_native": "Il nostro ufficio si trova in un viale alberato.", + "example_sentence_english": "Our office is on a tree-lined avenue.", + "pos": "noun", + "word_frequency": 3504 + }, + { + "word": "violento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violent", + "romanization": "violento", + "example_sentence_native": "Il film conteneva scene violente.", + "example_sentence_english": "The film contained violent scenes.", + "pos": "adjective", + "word_frequency": 3505 + }, + { + "word": "vitale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vital;crucial", + "romanization": "vitale", + "example_sentence_native": "È vitale mantenere un buon equilibrio.", + "example_sentence_english": "It is vital to maintain a good balance.", + "pos": "adjective", + "word_frequency": 3506 + }, + { + "word": "white", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "white (often in specific phrases like \"white paper\")", + "romanization": "white", + "example_sentence_native": "Hanno pubblicato un white paper sul nuovo progetto.", + "example_sentence_english": "They published a white paper on the new project.", + "pos": "adjective", + "word_frequency": 3507 + }, + { + "word": "applicato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "applied", + "romanization": "applicato", + "example_sentence_native": "La teoria è stata applicata con successo.", + "example_sentence_english": "The theory was successfully applied.", + "pos": "adjective", + "word_frequency": 3508 + }, + { + "word": "caratterizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characterized", + "romanization": "caratterizzato", + "example_sentence_native": "Il suo stile è caratterizzato da colori vivaci.", + "example_sentence_english": "His style is characterized by vibrant colors.", + "pos": "adjective", + "word_frequency": 3510 + }, + { + "word": "cella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cell", + "romanization": "cella", + "example_sentence_native": "Il prigioniero è stato rinchiuso nella sua cella.", + "example_sentence_english": "The prisoner was locked in his cell.", + "pos": "noun", + "word_frequency": 3511 + }, + { + "word": "censura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censorship", + "romanization": "censura", + "example_sentence_native": "Il governo ha imposto la censura sui media.", + "example_sentence_english": "The government imposed censorship on the media.", + "pos": "noun", + "word_frequency": 3512 + }, + { + "word": "chef", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chef", + "romanization": "chef", + "example_sentence_native": "Lo chef ha preparato un piatto delizioso.", + "example_sentence_english": "The chef prepared a delicious dish.", + "pos": "noun", + "word_frequency": 3513 + }, + { + "word": "compenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation;fee", + "romanization": "compenso", + "example_sentence_native": "Ha ricevuto un buon compenso per il suo lavoro.", + "example_sentence_english": "He received good compensation for his work.", + "pos": "noun", + "word_frequency": 3514 + }, + { + "word": "comunemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commonly", + "romanization": "comunemente", + "example_sentence_native": "Questa pianta è comunemente usata in cucina.", + "example_sentence_english": "This plant is commonly used in cooking.", + "pos": "adverb", + "word_frequency": 3515 + }, + { + "word": "concezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conception;idea", + "romanization": "concezione", + "example_sentence_native": "Ha una concezione molto chiara del progetto.", + "example_sentence_english": "He has a very clear conception of the project.", + "pos": "noun", + "word_frequency": 3516 + }, + { + "word": "continuità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuity", + "romanization": "continuità", + "example_sentence_native": "È importante garantire la continuità del servizio.", + "example_sentence_english": "It is important to ensure the continuity of the service.", + "pos": "noun", + "word_frequency": 3517 + }, + { + "word": "cortile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "courtyard;yard", + "romanization": "cortile", + "example_sentence_native": "I bambini giocavano nel cortile.", + "example_sentence_english": "The children were playing in the courtyard.", + "pos": "noun", + "word_frequency": 3518 + }, + { + "word": "difficilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardly;with difficulty", + "romanization": "difficilmente", + "example_sentence_native": "Difficilmente riuscirà a finire il lavoro in tempo.", + "example_sentence_english": "He will hardly manage to finish the work on time.", + "pos": "adverb", + "word_frequency": 3523 + }, + { + "word": "effettuato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carried out;performed", + "romanization": "effettuato", + "example_sentence_native": "Il pagamento è stato effettuato ieri.", + "example_sentence_english": "The payment was carried out yesterday.", + "pos": "adjective", + "word_frequency": 3525 + }, + { + "word": "fantasma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ghost", + "romanization": "fantasma", + "example_sentence_native": "Si dice che ci sia un fantasma in quel castello.", + "example_sentence_english": "They say there's a ghost in that castle.", + "pos": "noun", + "word_frequency": 3526 + }, + { + "word": "fegato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "liver", + "romanization": "fegato", + "example_sentence_native": "Il fegato è un organo importante.", + "example_sentence_english": "The liver is an important organ.", + "pos": "noun", + "word_frequency": 3528 + }, + { + "word": "fiorentino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Florentine", + "romanization": "fiorentino", + "example_sentence_native": "La cucina fiorentina è deliziosa.", + "example_sentence_english": "Florentine cuisine is delicious.", + "pos": "adjective", + "word_frequency": 3529 + }, + { + "word": "flash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flash", + "romanization": "flash", + "example_sentence_native": "Ho scattato una foto con il flash.", + "example_sentence_english": "I took a photo with the flash.", + "pos": "noun", + "word_frequency": 3530 + }, + { + "word": "fumare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smoke", + "romanization": "fumare", + "example_sentence_native": "Non è permesso fumare qui.", + "example_sentence_english": "It is not allowed to smoke here.", + "pos": "verb", + "word_frequency": 3531 + }, + { + "word": "giustificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to justify", + "romanization": "giustificare", + "example_sentence_native": "Non c'è nulla che possa giustificare un tale comportamento.", + "example_sentence_english": "There is nothing that can justify such behavior.", + "pos": "verb", + "word_frequency": 3532 + }, + { + "word": "guidato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guided;driven", + "romanization": "guidato", + "example_sentence_native": "Abbiamo fatto un tour guidato della città.", + "example_sentence_english": "We took a guided tour of the city.", + "pos": "adjective", + "word_frequency": 3533 + }, + { + "word": "hot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot (attractive;trendy)", + "romanization": "hot", + "example_sentence_native": "Quella canzone è davvero hot in questo momento.", + "example_sentence_english": "That song is really hot right now.", + "pos": "adjective", + "word_frequency": 3534 + }, + { + "word": "indiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Indian", + "romanization": "indiano", + "example_sentence_native": "Mi piace molto il cibo indiano.", + "example_sentence_english": "I really like Indian food.", + "pos": "adjective", + "word_frequency": 3535 + }, + { + "word": "individuare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to identify;to locate", + "romanization": "individuare", + "example_sentence_native": "Dobbiamo individuare la causa del problema.", + "example_sentence_english": "We need to identify the cause of the problem.", + "pos": "verb", + "word_frequency": 3536 + }, + { + "word": "integrale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wholemeal;integral;complete", + "romanization": "integrale", + "example_sentence_native": "Preferisco il pane integrale.", + "example_sentence_english": "I prefer wholemeal bread.", + "pos": "adjective", + "word_frequency": 3537 + }, + { + "word": "mobilità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mobility", + "romanization": "mobilità", + "example_sentence_native": "La mobilità urbana è un problema.", + "example_sentence_english": "Urban mobility is a problem.", + "pos": "noun", + "word_frequency": 3542 + }, + { + "word": "molteplice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multiple;manifold", + "romanization": "molteplice", + "example_sentence_native": "Il problema ha molteplici soluzioni.", + "example_sentence_english": "The problem has multiple solutions.", + "pos": "adjective", + "word_frequency": 3543 + }, + { + "word": "musicista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "musician", + "romanization": "musicista", + "example_sentence_native": "Mio fratello è un bravo musicista.", + "example_sentence_english": "My brother is a good musician.", + "pos": "noun", + "word_frequency": 3544 + }, + { + "word": "onestamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honestly", + "romanization": "onestamente", + "example_sentence_native": "Onestamente, non so cosa fare.", + "example_sentence_english": "Honestly, I don't know what to do.", + "pos": "adverb", + "word_frequency": 3545 + }, + { + "word": "ostacolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstacle", + "romanization": "ostacolo", + "example_sentence_native": "Abbiamo superato ogni ostacolo.", + "example_sentence_english": "We overcame every obstacle.", + "pos": "noun", + "word_frequency": 3546 + }, + { + "word": "pacifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peaceful;pacific", + "romanization": "pacifico", + "example_sentence_native": "Desideriamo un futuro pacifico.", + "example_sentence_english": "We desire a peaceful future.", + "pos": "adjective", + "word_frequency": 3547 + }, + { + "word": "petizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petition", + "romanization": "petizione", + "example_sentence_native": "Abbiamo firmato una petizione per il cambiamento.", + "example_sentence_english": "We signed a petition for change.", + "pos": "noun", + "word_frequency": 3549 + }, + { + "word": "previsione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forecast;prediction", + "romanization": "previsione", + "example_sentence_native": "La previsione del tempo è buona per domani.", + "example_sentence_english": "The weather forecast is good for tomorrow.", + "pos": "noun", + "word_frequency": 3550 + }, + { + "word": "protocollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protocol", + "romanization": "protocollo", + "example_sentence_native": "Dobbiamo seguire il protocollo.", + "example_sentence_english": "We must follow the protocol.", + "pos": "noun", + "word_frequency": 3551 + }, + { + "word": "reputazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reputation", + "romanization": "reputazione", + "example_sentence_native": "Ha una buona reputazione nel settore.", + "example_sentence_english": "He has a good reputation in the industry.", + "pos": "noun", + "word_frequency": 3552 + }, + { + "word": "rubrica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "address book;column", + "romanization": "rubrica", + "example_sentence_native": "Ho il suo numero nella mia rubrica.", + "example_sentence_english": "I have his number in my address book.", + "pos": "noun", + "word_frequency": 3554 + }, + { + "word": "salita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climb;ascent;uphill", + "romanization": "salita", + "example_sentence_native": "La salita è stata molto ripida.", + "example_sentence_english": "The climb was very steep.", + "pos": "noun", + "word_frequency": 3555 + }, + { + "word": "sensibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensitive", + "romanization": "sensibile", + "example_sentence_native": "È una persona molto sensibile.", + "example_sentence_english": "She is a very sensitive person.", + "pos": "adjective", + "word_frequency": 3556 + }, + { + "word": "sovietico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Soviet", + "romanization": "sovietico", + "example_sentence_native": "L'Unione Sovietica non esiste più.", + "example_sentence_english": "The Soviet Union no longer exists.", + "pos": "adjective", + "word_frequency": 3557 + }, + { + "word": "tela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canvas;fabric", + "romanization": "tela", + "example_sentence_native": "Il pittore ha usato una tela grande.", + "example_sentence_english": "The painter used a large canvas.", + "pos": "noun", + "word_frequency": 3558 + }, + { + "word": "terrorista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrorist", + "romanization": "terrorista", + "example_sentence_native": "Il governo ha condannato l'atto terrorista.", + "example_sentence_english": "The government condemned the terrorist act.", + "pos": "noun", + "word_frequency": 3559 + }, + { + "word": "trascorrere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spend (time)", + "romanization": "trascorrere", + "example_sentence_native": "Abbiamo trascorso una bella giornata al mare.", + "example_sentence_english": "We spent a beautiful day at the beach.", + "pos": "verb", + "word_frequency": 3560 + }, + { + "word": "ugualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equally;likewise", + "romanization": "ugualmente", + "example_sentence_native": "Ti ringrazio ugualmente per il tuo aiuto.", + "example_sentence_english": "I thank you likewise for your help.", + "pos": "adverb", + "word_frequency": 3562 + }, + { + "word": "urgente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "urgent", + "romanization": "urgente", + "example_sentence_native": "Ho bisogno di parlare con te, è una questione urgente.", + "example_sentence_english": "I need to talk to you, it's an urgent matter.", + "pos": "adjective", + "word_frequency": 3563 + }, + { + "word": "variazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "variation;change", + "romanization": "variazione", + "example_sentence_native": "Ci sono state alcune variazioni nel programma.", + "example_sentence_english": "There have been some variations in the schedule.", + "pos": "noun", + "word_frequency": 3565 + }, + { + "word": "venduto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sold (out)", + "romanization": "venduto", + "example_sentence_native": "Tutti i biglietti sono stati venduti.", + "example_sentence_english": "All the tickets have been sold.", + "pos": "adjective", + "word_frequency": 3566 + }, + { + "word": "abbigliamento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clothing;apparel", + "romanization": "abbigliamento", + "example_sentence_native": "Il negozio vende abbigliamento per bambini.", + "example_sentence_english": "The shop sells children's clothing.", + "pos": "noun", + "word_frequency": 3567 + }, + { + "word": "alquanto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "somewhat;rather", + "romanization": "alquanto", + "example_sentence_native": "La situazione è alquanto complicata.", + "example_sentence_english": "The situation is somewhat complicated.", + "pos": "adverb", + "word_frequency": 3570 + }, + { + "word": "alzare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to raise;to lift", + "romanization": "alzare", + "example_sentence_native": "Per favore, puoi alzare la mano?", + "example_sentence_english": "Please, can you raise your hand?", + "pos": "verb", + "word_frequency": 3571 + }, + { + "word": "anonimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anonymous", + "romanization": "anonimo", + "example_sentence_native": "Ha ricevuto una lettera anonima.", + "example_sentence_english": "He received an anonymous letter.", + "pos": "adjective", + "word_frequency": 3573 + }, + { + "word": "atleta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "athlete", + "romanization": "atleta", + "example_sentence_native": "L'atleta si sta preparando per la gara.", + "example_sentence_english": "The athlete is preparing for the race.", + "pos": "noun", + "word_frequency": 3574 + }, + { + "word": "camion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truck;lorry", + "romanization": "camion", + "example_sentence_native": "Un grande camion ha bloccato la strada.", + "example_sentence_english": "A large truck blocked the road.", + "pos": "noun", + "word_frequency": 3575 + }, + { + "word": "capitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happened;occurred", + "romanization": "capitato", + "example_sentence_native": "È un evento capitato per caso.", + "example_sentence_english": "It's an event that happened by chance.", + "pos": "adjective", + "word_frequency": 3576 + }, + { + "word": "cartello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sign;poster", + "romanization": "cartello", + "example_sentence_native": "C'era un cartello con le indicazioni.", + "example_sentence_english": "There was a sign with directions.", + "pos": "noun", + "word_frequency": 3577 + }, + { + "word": "chiarire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clarify;to clear up", + "romanization": "chiarire", + "example_sentence_native": "Vorrei chiarire la situazione.", + "example_sentence_english": "I would like to clarify the situation.", + "pos": "verb", + "word_frequency": 3578 + }, + { + "word": "contenente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "containing", + "romanization": "contenente", + "example_sentence_native": "La scatola contenente i documenti è qui.", + "example_sentence_english": "The box containing the documents is here.", + "pos": "adjective", + "word_frequency": 3579 + }, + { + "word": "creatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creature", + "romanization": "creatura", + "example_sentence_native": "Ogni creatura vivente merita rispetto.", + "example_sentence_english": "Every living creature deserves respect.", + "pos": "noun", + "word_frequency": 3580 + }, + { + "word": "crollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse;downfall", + "romanization": "crollo", + "example_sentence_native": "Il crollo dell'edificio ha causato panico.", + "example_sentence_english": "The collapse of the building caused panic.", + "pos": "noun", + "word_frequency": 3581 + }, + { + "word": "diminuzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decrease;reduction", + "romanization": "diminuzione", + "example_sentence_native": "C'è stata una diminuzione delle vendite.", + "example_sentence_english": "There has been a decrease in sales.", + "pos": "noun", + "word_frequency": 3584 + }, + { + "word": "dividere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to divide;to share", + "romanization": "dividere", + "example_sentence_native": "Dobbiamo dividere la torta in parti uguali.", + "example_sentence_english": "We need to divide the cake into equal parts.", + "pos": "verb", + "word_frequency": 3585 + }, + { + "word": "donazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "donation", + "romanization": "donazione", + "example_sentence_native": "Hanno fatto una generosa donazione all'ospedale.", + "example_sentence_english": "They made a generous donation to the hospital.", + "pos": "noun", + "word_frequency": 3587 + }, + { + "word": "eliminazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elimination;removal", + "romanization": "eliminazione", + "example_sentence_native": "L'eliminazione del problema è la nostra priorità.", + "example_sentence_english": "The elimination of the problem is our priority.", + "pos": "noun", + "word_frequency": 3588 + }, + { + "word": "esplosione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosion", + "romanization": "esplosione", + "example_sentence_native": "Si è sentita una forte esplosione.", + "example_sentence_english": "A loud explosion was heard.", + "pos": "noun", + "word_frequency": 3589 + }, + { + "word": "feria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fair;holiday (archaic;specific context)", + "romanization": "feria", + "example_sentence_native": "La feria del bestiame si tiene ogni anno.", + "example_sentence_english": "The cattle fair is held every year.", + "pos": "noun", + "word_frequency": 3591 + }, + { + "word": "figurare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appear;to figure;to make a good impression", + "romanization": "figurare", + "example_sentence_native": "Il suo nome non figura nella lista.", + "example_sentence_english": "His name does not appear on the list.", + "pos": "verb", + "word_frequency": 3592 + }, + { + "word": "grandezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "size;greatness;magnitude", + "romanization": "grandezza", + "example_sentence_native": "La grandezza del problema era evidente.", + "example_sentence_english": "The magnitude of the problem was evident.", + "pos": "noun", + "word_frequency": 3594 + }, + { + "word": "gravidanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pregnancy", + "romanization": "gravidanza", + "example_sentence_native": "Ha annunciato la sua gravidanza.", + "example_sentence_english": "She announced her pregnancy.", + "pos": "noun", + "word_frequency": 3595 + }, + { + "word": "incubo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nightmare", + "romanization": "incubo", + "example_sentence_native": "Ho avuto un brutto incubo la scorsa notte.", + "example_sentence_english": "I had a bad nightmare last night.", + "pos": "noun", + "word_frequency": 3596 + }, + { + "word": "inevitabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inevitable", + "romanization": "inevitabile", + "example_sentence_native": "Il cambiamento era inevitabile.", + "example_sentence_english": "The change was inevitable.", + "pos": "adjective", + "word_frequency": 3597 + }, + { + "word": "innocente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "innocent", + "romanization": "innocente", + "example_sentence_native": "Il verdetto ha dichiarato l'imputato innocente.", + "example_sentence_english": "The verdict declared the defendant innocent.", + "pos": "adjective", + "word_frequency": 3598 + }, + { + "word": "intensità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensity", + "romanization": "intensità", + "example_sentence_native": "L'intensità del dolore era insopportabile.", + "example_sentence_english": "The intensity of the pain was unbearable.", + "pos": "noun", + "word_frequency": 3599 + }, + { + "word": "liberare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to free;to release", + "romanization": "liberare", + "example_sentence_native": "Dobbiamo liberare gli animali dalla gabbia.", + "example_sentence_english": "We must free the animals from the cage.", + "pos": "verb", + "word_frequency": 3600 + }, + { + "word": "lottare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fight;to struggle", + "romanization": "lottare", + "example_sentence_native": "Dobbiamo lottare per i nostri diritti.", + "example_sentence_english": "We must fight for our rights.", + "pos": "verb", + "word_frequency": 3601 + }, + { + "word": "magnifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnificent;splendid", + "romanization": "magnifico", + "example_sentence_native": "Che panorama magnifico!", + "example_sentence_english": "What a magnificent view!", + "pos": "adjective", + "word_frequency": 3602 + }, + { + "word": "mensile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly", + "romanization": "mensile", + "example_sentence_native": "Ricevo una rivista mensile.", + "example_sentence_english": "I receive a monthly magazine.", + "pos": "adjective", + "word_frequency": 3606 + }, + { + "word": "monastero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monastery", + "romanization": "monastero", + "example_sentence_native": "Il vecchio monastero è stato restaurato.", + "example_sentence_english": "The old monastery has been restored.", + "pos": "noun", + "word_frequency": 3607 + }, + { + "word": "panno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloth;rag", + "romanization": "panno", + "example_sentence_native": "Usa un panno pulito per pulire il tavolo.", + "example_sentence_english": "Use a clean cloth to wipe the table.", + "pos": "noun", + "word_frequency": 3608 + }, + { + "word": "penisola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peninsula", + "romanization": "penisola", + "example_sentence_native": "L'Italia è una penisola.", + "example_sentence_english": "Italy is a peninsula.", + "pos": "noun", + "word_frequency": 3609 + }, + { + "word": "pensarci", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to think about it", + "romanization": "pensarci", + "example_sentence_native": "Ci devo pensare prima di decidere.", + "example_sentence_english": "I have to think about it before deciding.", + "pos": "verb", + "word_frequency": 3610 + }, + { + "word": "perduto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lost", + "romanization": "perduto", + "example_sentence_native": "Ho trovato un cane perduto.", + "example_sentence_english": "I found a lost dog.", + "pos": "adjective", + "word_frequency": 3611 + }, + { + "word": "preoccupare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to worry", + "romanization": "preoccupare", + "example_sentence_native": "Non ti preoccupare, andrà tutto bene.", + "example_sentence_english": "Don't worry, everything will be fine.", + "pos": "verb", + "word_frequency": 3613 + }, + { + "word": "prevenire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to prevent", + "romanization": "prevenire", + "example_sentence_native": "È meglio prevenire che curare.", + "example_sentence_english": "It's better to prevent than to cure.", + "pos": "verb", + "word_frequency": 3614 + }, + { + "word": "pronuncia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pronunciation", + "romanization": "pronuncia", + "example_sentence_native": "La sua pronuncia è perfetta.", + "example_sentence_english": "His pronunciation is perfect.", + "pos": "noun", + "word_frequency": 3615 + }, + { + "word": "rientro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return;re-entry", + "romanization": "rientro", + "example_sentence_native": "Il suo rientro in ufficio è previsto per lunedì.", + "example_sentence_english": "His return to the office is scheduled for Monday.", + "pos": "noun", + "word_frequency": 3616 + }, + { + "word": "scomparso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappeared;missing", + "romanization": "scomparso", + "example_sentence_native": "Il libro è scomparso dalla libreria.", + "example_sentence_english": "The book has disappeared from the bookshelf.", + "pos": "adjective", + "word_frequency": 3617 + }, + { + "word": "scontato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discounted;obvious", + "romanization": "scontato", + "example_sentence_native": "Questo prezzo è scontato del 20%.", + "example_sentence_english": "This price is discounted by 20%.", + "pos": "adjective", + "word_frequency": 3618 + }, + { + "word": "solitudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solitude;loneliness", + "romanization": "solitudine", + "example_sentence_native": "A volte apprezzo la solitudine.", + "example_sentence_english": "Sometimes I appreciate solitude.", + "pos": "noun", + "word_frequency": 3620 + }, + { + "word": "striscia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strip;stripe", + "romanization": "striscia", + "example_sentence_native": "C'è una striscia di luce sotto la porta.", + "example_sentence_english": "There's a strip of light under the door.", + "pos": "noun", + "word_frequency": 3621 + }, + { + "word": "abitazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dwelling;residence", + "romanization": "abitazione", + "example_sentence_native": "La sua abitazione si trova in centro.", + "example_sentence_english": "His residence is located downtown.", + "pos": "noun", + "word_frequency": 3624 + }, + { + "word": "abuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abuse;misuse", + "romanization": "abuso", + "example_sentence_native": "L'abuso di alcol è dannoso per la salute.", + "example_sentence_english": "Alcohol abuse is harmful to health.", + "pos": "noun", + "word_frequency": 3625 + }, + { + "word": "accogliere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to welcome;to receive", + "romanization": "accogliere", + "example_sentence_native": "Ci hanno accolto con grande calore.", + "example_sentence_english": "They welcomed us with great warmth.", + "pos": "verb", + "word_frequency": 3626 + }, + { + "word": "andarci", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to go there", + "romanization": "andarci", + "example_sentence_native": "Non voglio andarci da solo.", + "example_sentence_english": "I don't want to go there alone.", + "pos": "verb", + "word_frequency": 3629 + }, + { + "word": "assistito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assisted;supported", + "romanization": "assistito", + "example_sentence_native": "Ha bisogno di cure assistite.", + "example_sentence_english": "He needs assisted care.", + "pos": "adjective", + "word_frequency": 3630 + }, + { + "word": "assunzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assumption;hiring;intake", + "romanization": "assunzione", + "example_sentence_native": "La sua assunzione è stata immediata.", + "example_sentence_english": "His hiring was immediate.", + "pos": "noun", + "word_frequency": 3631 + }, + { + "word": "attuazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implementation;execution", + "romanization": "attuazione", + "example_sentence_native": "Il piano è in fase di attuazione.", + "example_sentence_english": "The plan is in the implementation phase.", + "pos": "noun", + "word_frequency": 3632 + }, + { + "word": "basket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "romanization": "basket", + "example_sentence_native": "Mi piace giocare a basket.", + "example_sentence_english": "I like to play basketball.", + "pos": "noun", + "word_frequency": 3633 + }, + { + "word": "battuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaten;hammered;well-trodden", + "romanization": "battuto", + "example_sentence_native": "Abbiamo percorso un sentiero battuto.", + "example_sentence_english": "We walked along a well-trodden path.", + "pos": "adjective", + "word_frequency": 3634 + }, + { + "word": "bestia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beast;animal", + "romanization": "bestia", + "example_sentence_native": "La bestia si è nascosta nella foresta.", + "example_sentence_english": "The beast hid in the forest.", + "pos": "noun", + "word_frequency": 3635 + }, + { + "word": "bicicletta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bicycle", + "romanization": "bicicletta", + "example_sentence_native": "Vado al lavoro in bicicletta.", + "example_sentence_english": "I go to work by bicycle.", + "pos": "noun", + "word_frequency": 3636 + }, + { + "word": "burro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "butter", + "romanization": "burro", + "example_sentence_native": "Vorrei un po' di burro sul pane.", + "example_sentence_english": "I would like some butter on the bread.", + "pos": "noun", + "word_frequency": 3637 + }, + { + "word": "busta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "envelope;bag", + "romanization": "busta", + "example_sentence_native": "Metti la lettera nella busta.", + "example_sentence_english": "Put the letter in the envelope.", + "pos": "noun", + "word_frequency": 3638 + }, + { + "word": "candidatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candidacy;application", + "romanization": "candidatura", + "example_sentence_native": "Ho inviato la mia candidatura per il posto.", + "example_sentence_english": "I submitted my application for the position.", + "pos": "noun", + "word_frequency": 3639 + }, + { + "word": "canna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reed;cane;barrel", + "romanization": "canna", + "example_sentence_native": "La canna da pesca era rotta.", + "example_sentence_english": "The fishing rod was broken.", + "pos": "noun", + "word_frequency": 3640 + }, + { + "word": "capolavoro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masterpiece", + "romanization": "capolavoro", + "example_sentence_native": "Questo quadro è un vero capolavoro.", + "example_sentence_english": "This painting is a true masterpiece.", + "pos": "noun", + "word_frequency": 3641 + }, + { + "word": "cartone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardboard;carton", + "romanization": "cartone", + "example_sentence_native": "Abbiamo messo i libri in una scatola di cartone.", + "example_sentence_english": "We put the books in a cardboard box.", + "pos": "noun", + "word_frequency": 3642 + }, + { + "word": "cemento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cement;concrete", + "romanization": "cemento", + "example_sentence_native": "La strada è fatta di cemento.", + "example_sentence_english": "The road is made of concrete.", + "pos": "noun", + "word_frequency": 3643 + }, + { + "word": "colle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hill", + "romanization": "colle", + "example_sentence_native": "La casa si trova su un colle.", + "example_sentence_english": "The house is located on a hill.", + "pos": "noun", + "word_frequency": 3644 + }, + { + "word": "combattimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fight;combat", + "romanization": "combattimento", + "example_sentence_native": "Il combattimento è durato a lungo.", + "example_sentence_english": "The fight lasted a long time.", + "pos": "noun", + "word_frequency": 3645 + }, + { + "word": "completare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to complete;to finish", + "romanization": "completare", + "example_sentence_native": "Devo completare il mio lavoro entro stasera.", + "example_sentence_english": "I have to complete my work by tonight.", + "pos": "verb", + "word_frequency": 3646 + }, + { + "word": "confuso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "confused;blurry", + "romanization": "confuso", + "example_sentence_native": "Sono un po' confuso riguardo alle istruzioni.", + "example_sentence_english": "I'm a bit confused about the instructions.", + "pos": "adjective", + "word_frequency": 3647 + }, + { + "word": "convinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convinced", + "romanization": "convinto", + "example_sentence_native": "Sono convinto che sia la scelta giusta.", + "example_sentence_english": "I am convinced that it is the right choice.", + "pos": "adjective", + "word_frequency": 3648 + }, + { + "word": "dittatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dictatorship", + "romanization": "dittatura", + "example_sentence_native": "Il paese era sotto una dittatura per molti anni.", + "example_sentence_english": "The country was under a dictatorship for many years.", + "pos": "noun", + "word_frequency": 3649 + }, + { + "word": "dizionario", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dictionary", + "romanization": "dizionario", + "example_sentence_native": "Ho cercato la parola nel dizionario.", + "example_sentence_english": "I looked up the word in the dictionary.", + "pos": "noun", + "word_frequency": 3650 + }, + { + "word": "escluso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excluded;except for", + "romanization": "escluso", + "example_sentence_native": "Tutti sono invitati, escluso lui.", + "example_sentence_english": "Everyone is invited, except for him.", + "pos": "adjective", + "word_frequency": 3651 + }, + { + "word": "esemplare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specimen;copy;example", + "romanization": "esemplare", + "example_sentence_native": "Questo è un raro esemplare di farfalla.", + "example_sentence_english": "This is a rare specimen of butterfly.", + "pos": "noun", + "word_frequency": 3652 + }, + { + "word": "faccenda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matter;affair;chore", + "romanization": "faccenda", + "example_sentence_native": "Ho alcune faccende da sbrigare.", + "example_sentence_english": "I have some chores to take care of.", + "pos": "noun", + "word_frequency": 3653 + }, + { + "word": "fiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath", + "romanization": "fiato", + "example_sentence_native": "Ho perso il fiato dopo la corsa.", + "example_sentence_english": "I lost my breath after the run.", + "pos": "noun", + "word_frequency": 3654 + }, + { + "word": "imbarazzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarrassment;awkwardness", + "romanization": "imbarazzo", + "example_sentence_native": "Ho provato un grande imbarazzo.", + "example_sentence_english": "I felt great embarrassment.", + "pos": "noun", + "word_frequency": 3656 + }, + { + "word": "istante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instant;moment", + "romanization": "istante", + "example_sentence_native": "Torno tra un istante.", + "example_sentence_english": "I'll be back in an instant.", + "pos": "noun", + "word_frequency": 3657 + }, + { + "word": "lana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wool", + "romanization": "lana", + "example_sentence_native": "Questo maglione è fatto di lana.", + "example_sentence_english": "This sweater is made of wool.", + "pos": "noun", + "word_frequency": 3658 + }, + { + "word": "modulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "form;module", + "romanization": "modulo", + "example_sentence_native": "Devi compilare questo modulo.", + "example_sentence_english": "You need to fill out this form.", + "pos": "noun", + "word_frequency": 3661 + }, + { + "word": "napoletano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Neapolitan", + "romanization": "napoletano", + "example_sentence_native": "La pizza napoletana è famosa in tutto il mondo.", + "example_sentence_english": "Neapolitan pizza is famous all over the world.", + "pos": "adjective", + "word_frequency": 3662 + }, + { + "word": "orale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oral;verbal", + "romanization": "orale", + "example_sentence_native": "L'esame sarà orale.", + "example_sentence_english": "The exam will be oral.", + "pos": "adjective", + "word_frequency": 3663 + }, + { + "word": "patente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driver's license;patent", + "romanization": "patente", + "example_sentence_native": "Ho preso la patente l'anno scorso.", + "example_sentence_english": "I got my driver's license last year.", + "pos": "noun", + "word_frequency": 3665 + }, + { + "word": "portoghese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Portuguese", + "romanization": "portoghese", + "example_sentence_native": "Parlo un po' di portoghese.", + "example_sentence_english": "I speak a little Portuguese.", + "pos": "adjective", + "word_frequency": 3667 + }, + { + "word": "preoccupazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worry;concern", + "romanization": "preoccupazione", + "example_sentence_native": "Ho una grande preoccupazione per il futuro.", + "example_sentence_english": "I have a great concern for the future.", + "pos": "noun", + "word_frequency": 3668 + }, + { + "word": "ragionevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasonable", + "romanization": "ragionevole", + "example_sentence_native": "Il prezzo mi sembra ragionevole.", + "example_sentence_english": "The price seems reasonable to me.", + "pos": "adjective", + "word_frequency": 3669 + }, + { + "word": "risarcimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compensation;damages", + "romanization": "risarcimento", + "example_sentence_native": "Ha chiesto un risarcimento per i danni subiti.", + "example_sentence_english": "He asked for compensation for the damages suffered.", + "pos": "noun", + "word_frequency": 3670 + }, + { + "word": "segreteria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "secretariat;secretary's office;answering machine", + "romanization": "segreteria", + "example_sentence_native": "Ho lasciato un messaggio in segreteria.", + "example_sentence_english": "I left a message on the answering machine.", + "pos": "noun", + "word_frequency": 3671 + }, + { + "word": "sereno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serene;clear;calm", + "romanization": "sereno", + "example_sentence_native": "Il cielo è sereno oggi.", + "example_sentence_english": "The sky is clear today.", + "pos": "adjective", + "word_frequency": 3672 + }, + { + "word": "sottoporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to submit;to subject", + "romanization": "sottoporre", + "example_sentence_native": "Dobbiamo sottoporre la proposta all'approvazione.", + "example_sentence_english": "We must submit the proposal for approval.", + "pos": "verb", + "word_frequency": 3673 + }, + { + "word": "subire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffer;to undergo;to endure", + "romanization": "subire", + "example_sentence_native": "Ha dovuto subire un'operazione.", + "example_sentence_english": "He had to undergo an operation.", + "pos": "verb", + "word_frequency": 3674 + }, + { + "word": "teatrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theatrical", + "romanization": "teatrale", + "example_sentence_native": "La sua performance è stata molto teatrale.", + "example_sentence_english": "His performance was very theatrical.", + "pos": "adjective", + "word_frequency": 3675 + }, + { + "word": "tendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stretch;to tend;to aim", + "romanization": "tendere", + "example_sentence_native": "Tende a essere molto timido.", + "example_sentence_english": "He tends to be very shy.", + "pos": "verb", + "word_frequency": 3676 + }, + { + "word": "unire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to unite;to join", + "romanization": "unire", + "example_sentence_native": "Dobbiamo unire le forze per raggiungere l'obiettivo.", + "example_sentence_english": "We must unite our forces to achieve the goal.", + "pos": "verb", + "word_frequency": 3677 + }, + { + "word": "utilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utility;usefulness", + "romanization": "utilità", + "example_sentence_native": "Non vedo l'utilità di questa discussione.", + "example_sentence_english": "I don't see the usefulness of this discussion.", + "pos": "noun", + "word_frequency": 3678 + }, + { + "word": "vapore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steam;vapor", + "romanization": "vapore", + "example_sentence_native": "L'acqua si trasforma in vapore quando bolle.", + "example_sentence_english": "Water turns into steam when it boils.", + "pos": "noun", + "word_frequency": 3679 + }, + { + "word": "viceversa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vice versa;conversely", + "romanization": "viceversa", + "example_sentence_native": "Puoi andare a destra o a sinistra, e viceversa.", + "example_sentence_english": "You can go right or left, and vice versa.", + "pos": "adverb", + "word_frequency": 3680 + }, + { + "word": "vigile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traffic warden;guard", + "romanization": "vigile", + "example_sentence_native": "Il vigile ha diretto il traffico.", + "example_sentence_english": "The traffic warden directed the traffic.", + "pos": "noun", + "word_frequency": 3681 + }, + { + "word": "volante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flying;steering", + "romanization": "volante", + "example_sentence_native": "La squadra volante ha risposto rapidamente all'emergenza.", + "example_sentence_english": "The flying squad responded quickly to the emergency.", + "pos": "adjective", + "word_frequency": 3682 + }, + { + "word": "acceso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "on;lit;bright", + "romanization": "acceso", + "example_sentence_native": "La luce è accesa.", + "example_sentence_english": "The light is on.", + "pos": "adjective", + "word_frequency": 3684 + }, + { + "word": "addetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attendant;employee", + "romanization": "addetto", + "example_sentence_native": "L'addetto alla reception ci ha accolti.", + "example_sentence_english": "The reception attendant welcomed us.", + "pos": "noun", + "word_frequency": 3685 + }, + { + "word": "agricolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agricultural", + "romanization": "agricolo", + "example_sentence_native": "L'economia della regione è principalmente agricola.", + "example_sentence_english": "The region's economy is primarily agricultural.", + "pos": "adjective", + "word_frequency": 3686 + }, + { + "word": "apposta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on purpose;specifically", + "romanization": "apposta", + "example_sentence_native": "L'ho fatto apposta per sorprenderti.", + "example_sentence_english": "I did it on purpose to surprise you.", + "pos": "adverb", + "word_frequency": 3687 + }, + { + "word": "approvato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approved", + "romanization": "approvato", + "example_sentence_native": "Il progetto è stato approvato dal consiglio.", + "example_sentence_english": "The project was approved by the board.", + "pos": "adjective", + "word_frequency": 3688 + }, + { + "word": "bimbo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "child;baby", + "romanization": "bimbo", + "example_sentence_native": "Il bimbo dorme nella culla.", + "example_sentence_english": "The baby is sleeping in the crib.", + "pos": "noun", + "word_frequency": 3689 + }, + { + "word": "boss", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boss", + "romanization": "boss", + "example_sentence_native": "Il mio boss è molto esigente.", + "example_sentence_english": "My boss is very demanding.", + "pos": "noun", + "word_frequency": 3690 + }, + { + "word": "box", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garage;box", + "romanization": "box", + "example_sentence_native": "Ho parcheggiato la macchina nel box.", + "example_sentence_english": "I parked the car in the garage.", + "pos": "noun", + "word_frequency": 3691 + }, + { + "word": "carnevale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carnival", + "romanization": "carnevale", + "example_sentence_native": "A Venezia il Carnevale è famoso in tutto il mondo.", + "example_sentence_english": "In Venice, Carnival is famous worldwide.", + "pos": "noun", + "word_frequency": 3692 + }, + { + "word": "chimico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chemical", + "romanization": "chimico", + "example_sentence_native": "Dobbiamo fare attenzione ai prodotti chimici.", + "example_sentence_english": "We must be careful with chemical products.", + "pos": "adjective", + "word_frequency": 3693 + }, + { + "word": "coltello", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "knife", + "romanization": "coltello", + "example_sentence_native": "Ho bisogno di un coltello per tagliare il pane.", + "example_sentence_english": "I need a knife to cut the bread.", + "pos": "noun", + "word_frequency": 3694 + }, + { + "word": "consegnare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to deliver;to hand over", + "romanization": "consegnare", + "example_sentence_native": "Il postino deve consegnare il pacco.", + "example_sentence_english": "The postman has to deliver the package.", + "pos": "verb", + "word_frequency": 3695 + }, + { + "word": "contattare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to contact", + "romanization": "contattare", + "example_sentence_native": "Puoi contattarmi via email.", + "example_sentence_english": "You can contact me by email.", + "pos": "verb", + "word_frequency": 3696 + }, + { + "word": "coordinamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordination", + "romanization": "coordinamento", + "example_sentence_native": "Il coordinamento tra i team è essenziale.", + "example_sentence_english": "Coordination between the teams is essential.", + "pos": "noun", + "word_frequency": 3698 + }, + { + "word": "cristianesimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christianity", + "romanization": "cristianesimo", + "example_sentence_native": "Il cristianesimo è una delle religioni più diffuse.", + "example_sentence_english": "Christianity is one of the most widespread religions.", + "pos": "noun", + "word_frequency": 3699 + }, + { + "word": "datore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "giver;employer (in 'datore di lavoro')", + "romanization": "datore", + "example_sentence_native": "Il datore di lavoro ha offerto un nuovo contratto.", + "example_sentence_english": "The employer offered a new contract.", + "pos": "noun", + "word_frequency": 3700 + }, + { + "word": "dea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goddess", + "romanization": "dea", + "example_sentence_native": "Atena era la dea della saggezza.", + "example_sentence_english": "Athena was the goddess of wisdom.", + "pos": "noun", + "word_frequency": 3701 + }, + { + "word": "detto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saying;proverb", + "romanization": "detto", + "example_sentence_native": "C'è un vecchio detto che dice...", + "example_sentence_english": "There's an old saying that goes...", + "pos": "noun", + "word_frequency": 3703 + }, + { + "word": "diametro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diameter", + "romanization": "diametro", + "example_sentence_native": "Il diametro del cerchio è di dieci centimetri.", + "example_sentence_english": "The diameter of the circle is ten centimeters.", + "pos": "noun", + "word_frequency": 3704 + }, + { + "word": "distinguere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distinguish", + "romanization": "distinguere", + "example_sentence_native": "È difficile distinguere i due gemelli.", + "example_sentence_english": "It's difficult to distinguish the two twins.", + "pos": "verb", + "word_frequency": 3705 + }, + { + "word": "esercitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exercise;to practice", + "romanization": "esercitare", + "example_sentence_native": "È importante esercitare la mente.", + "example_sentence_english": "It's important to exercise the mind.", + "pos": "verb", + "word_frequency": 3707 + }, + { + "word": "fascino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charm;fascination", + "romanization": "fascino", + "example_sentence_native": "Il suo fascino è irresistibile.", + "example_sentence_english": "His charm is irresistible.", + "pos": "noun", + "word_frequency": 3708 + }, + { + "word": "giuria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jury", + "romanization": "giuria", + "example_sentence_native": "La giuria ha emesso il verdetto.", + "example_sentence_english": "The jury delivered the verdict.", + "pos": "noun", + "word_frequency": 3710 + }, + { + "word": "gratuitamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "for free;gratuitously", + "romanization": "gratuitamente", + "example_sentence_native": "Puoi scaricare il software gratuitamente.", + "example_sentence_english": "You can download the software for free.", + "pos": "adverb", + "word_frequency": 3711 + }, + { + "word": "implicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imply;to involve", + "romanization": "implicare", + "example_sentence_native": "La sua decisione implica grandi responsabilità.", + "example_sentence_english": "His decision implies great responsibilities.", + "pos": "verb", + "word_frequency": 3712 + }, + { + "word": "imporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impose", + "romanization": "imporre", + "example_sentence_native": "Non voglio imporre la mia opinione.", + "example_sentence_english": "I don't want to impose my opinion.", + "pos": "verb", + "word_frequency": 3713 + }, + { + "word": "interpretare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interpret", + "romanization": "interpretare", + "example_sentence_native": "Ha interpretato il ruolo alla perfezione.", + "example_sentence_english": "He interpreted the role perfectly.", + "pos": "verb", + "word_frequency": 3714 + }, + { + "word": "lama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blade", + "romanization": "lama", + "example_sentence_native": "La lama del coltello è molto affilata.", + "example_sentence_english": "The knife blade is very sharp.", + "pos": "noun", + "word_frequency": 3715 + }, + { + "word": "legittimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legitimate", + "romanization": "legittimo", + "example_sentence_native": "La sua richiesta è legittima.", + "example_sentence_english": "His request is legitimate.", + "pos": "adjective", + "word_frequency": 3716 + }, + { + "word": "maglietta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "t-shirt", + "romanization": "maglietta", + "example_sentence_native": "Ho comprato una nuova maglietta.", + "example_sentence_english": "I bought a new t-shirt.", + "pos": "noun", + "word_frequency": 3717 + }, + { + "word": "mentalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentality", + "romanization": "mentalità", + "example_sentence_native": "Dobbiamo cambiare la nostra mentalità.", + "example_sentence_english": "We need to change our mentality.", + "pos": "noun", + "word_frequency": 3718 + }, + { + "word": "muscolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscle", + "romanization": "muscolo", + "example_sentence_native": "I muscoli delle gambe sono molto forti.", + "example_sentence_english": "The leg muscles are very strong.", + "pos": "noun", + "word_frequency": 3720 + }, + { + "word": "nastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tape;ribbon", + "romanization": "nastro", + "example_sentence_native": "Ho usato un nastro adesivo per chiudere il pacco.", + "example_sentence_english": "I used adhesive tape to close the package.", + "pos": "noun", + "word_frequency": 3721 + }, + { + "word": "nazionalità", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nationality", + "romanization": "nazionalità", + "example_sentence_native": "Qual è la tua nazionalità?", + "example_sentence_english": "What is your nationality?", + "pos": "noun", + "word_frequency": 3722 + }, + { + "word": "obbligare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to oblige;to force", + "romanization": "obbligare", + "example_sentence_native": "Nessuno può obbligarti a fare qualcosa contro la tua volontà.", + "example_sentence_english": "No one can force you to do something against your will.", + "pos": "verb", + "word_frequency": 3723 + }, + { + "word": "pastore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shepherd;pastor", + "romanization": "pastore", + "example_sentence_native": "Il pastore conduce il suo gregge al pascolo.", + "example_sentence_english": "The shepherd leads his flock to pasture.", + "pos": "noun", + "word_frequency": 3726 + }, + { + "word": "periferia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "periphery;outskirts", + "romanization": "periferia", + "example_sentence_native": "Molte persone vivono in periferia per i prezzi più bassi.", + "example_sentence_english": "Many people live on the outskirts for lower prices.", + "pos": "noun", + "word_frequency": 3727 + }, + { + "word": "riassunto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary", + "romanization": "riassunto", + "example_sentence_native": "Ho letto il riassunto del libro prima di comprarlo.", + "example_sentence_english": "I read the summary of the book before buying it.", + "pos": "noun", + "word_frequency": 3729 + }, + { + "word": "ricorrere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resort to;to appeal", + "romanization": "ricorrere", + "example_sentence_native": "Dobbiamo ricorrere a tutte le nostre risorse.", + "example_sentence_english": "We must resort to all our resources.", + "pos": "verb", + "word_frequency": 3730 + }, + { + "word": "riscaldamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heating", + "romanization": "riscaldamento", + "example_sentence_native": "Il riscaldamento centralizzato funziona bene.", + "example_sentence_english": "The central heating works well.", + "pos": "noun", + "word_frequency": 3731 + }, + { + "word": "roccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock", + "romanization": "roccia", + "example_sentence_native": "La parete di roccia era molto ripida.", + "example_sentence_english": "The rock face was very steep.", + "pos": "noun", + "word_frequency": 3732 + }, + { + "word": "rurale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rural", + "romanization": "rurale", + "example_sentence_native": "Molti preferiscono la vita rurale alla città.", + "example_sentence_english": "Many prefer rural life to the city.", + "pos": "adjective", + "word_frequency": 3733 + }, + { + "word": "sapienza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wisdom;knowledge", + "romanization": "sapienza", + "example_sentence_native": "La sua sapienza è ammirata da tutti.", + "example_sentence_english": "His wisdom is admired by everyone.", + "pos": "noun", + "word_frequency": 3734 + }, + { + "word": "strage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "massacre;slaughter", + "romanization": "strage", + "example_sentence_native": "La strage ha lasciato un segno indelebile nella storia.", + "example_sentence_english": "The massacre left an indelible mark on history.", + "pos": "noun", + "word_frequency": 3736 + }, + { + "word": "tennis", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tennis", + "romanization": "tennis", + "example_sentence_native": "Gioco a tennis due volte a settimana.", + "example_sentence_english": "I play tennis twice a week.", + "pos": "noun", + "word_frequency": 3738 + }, + { + "word": "terminare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to finish;to end", + "romanization": "terminare", + "example_sentence_native": "Dobbiamo terminare il progetto entro la scadenza.", + "example_sentence_english": "We must finish the project by the deadline.", + "pos": "verb", + "word_frequency": 3739 + }, + { + "word": "testamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "will (document);testament", + "romanization": "testamento", + "example_sentence_native": "Ha lasciato un testamento in cui divideva i suoi beni.", + "example_sentence_english": "He left a will in which he divided his assets.", + "pos": "noun", + "word_frequency": 3740 + }, + { + "word": "tocco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touch;hint", + "romanization": "tocco", + "example_sentence_native": "Un tocco leggero sulla spalla mi ha svegliato.", + "example_sentence_english": "A light touch on the shoulder woke me up.", + "pos": "noun", + "word_frequency": 3741 + }, + { + "word": "tortura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torture", + "romanization": "tortura", + "example_sentence_native": "La tortura è proibita dalla legge internazionale.", + "example_sentence_english": "Torture is prohibited by international law.", + "pos": "noun", + "word_frequency": 3742 + }, + { + "word": "traguardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finish line;goal;milestone", + "romanization": "traguardo", + "example_sentence_native": "Raggiungere questo traguardo è stato un grande successo.", + "example_sentence_english": "Reaching this milestone was a great success.", + "pos": "noun", + "word_frequency": 3743 + }, + { + "word": "unicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solely;uniquely", + "romanization": "unicamente", + "example_sentence_native": "Si dedica unicamente alla sua ricerca.", + "example_sentence_english": "He dedicates himself solely to his research.", + "pos": "adverb", + "word_frequency": 3745 + }, + { + "word": "variabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variable", + "romanization": "variabile", + "example_sentence_native": "Il clima in montagna è molto variabile.", + "example_sentence_english": "The climate in the mountains is very variable.", + "pos": "adjective", + "word_frequency": 3746 + }, + { + "word": "accento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accent", + "romanization": "accento", + "example_sentence_native": "Ha un accento italiano molto marcato.", + "example_sentence_english": "He has a very strong Italian accent.", + "pos": "noun", + "word_frequency": 3747 + }, + { + "word": "alimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "food;nourishment", + "romanization": "alimento", + "example_sentence_native": "Una dieta equilibrata include vari tipi di alimento.", + "example_sentence_english": "A balanced diet includes various types of food.", + "pos": "noun", + "word_frequency": 3749 + }, + { + "word": "alunno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pupil;student", + "romanization": "alunno", + "example_sentence_native": "Gli alunni della scuola primaria sono in gita.", + "example_sentence_english": "The primary school pupils are on a trip.", + "pos": "noun", + "word_frequency": 3750 + }, + { + "word": "animo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spirit;mind;soul", + "romanization": "animo", + "example_sentence_native": "Ha un animo nobile e generoso.", + "example_sentence_english": "He has a noble and generous spirit.", + "pos": "noun", + "word_frequency": 3751 + }, + { + "word": "apprezzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appreciate", + "romanization": "apprezzare", + "example_sentence_native": "Apprezzo molto la tua onestà.", + "example_sentence_english": "I really appreciate your honesty.", + "pos": "verb", + "word_frequency": 3752 + }, + { + "word": "artificiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artificial", + "romanization": "artificiale", + "example_sentence_native": "Questo lago è artificiale, creato dall'uomo.", + "example_sentence_english": "This lake is artificial, created by man.", + "pos": "adjective", + "word_frequency": 3753 + }, + { + "word": "autonomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomous;independent", + "romanization": "autonomo", + "example_sentence_native": "Vorrei essere più autonomo nelle mie decisioni.", + "example_sentence_english": "I would like to be more autonomous in my decisions.", + "pos": "adjective", + "word_frequency": 3754 + }, + { + "word": "cadavere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpse;cadaver", + "romanization": "cadavere", + "example_sentence_native": "Il cadavere è stato ritrovato sulla spiaggia.", + "example_sentence_english": "The corpse was found on the beach.", + "pos": "noun", + "word_frequency": 3756 + }, + { + "word": "canone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canon;fee;rent", + "romanization": "canone", + "example_sentence_native": "Il canone di affitto è aumentato quest'anno.", + "example_sentence_english": "The rent fee increased this year.", + "pos": "noun", + "word_frequency": 3757 + }, + { + "word": "cattedrale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cathedral", + "romanization": "cattedrale", + "example_sentence_native": "La cattedrale è un capolavoro di architettura gotica.", + "example_sentence_english": "The cathedral is a masterpiece of Gothic architecture.", + "pos": "noun", + "word_frequency": 3758 + }, + { + "word": "chirurgia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surgery", + "romanization": "chirurgia", + "example_sentence_native": "La chirurgia estetica è molto popolare.", + "example_sentence_english": "Cosmetic surgery is very popular.", + "pos": "noun", + "word_frequency": 3759 + }, + { + "word": "cimitero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cemetery", + "romanization": "cimitero", + "example_sentence_native": "Il cimitero è un luogo di riposo eterno.", + "example_sentence_english": "The cemetery is a place of eternal rest.", + "pos": "noun", + "word_frequency": 3760 + }, + { + "word": "cliccare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to click", + "romanization": "cliccare", + "example_sentence_native": "Devi cliccare sul link per aprire la pagina.", + "example_sentence_english": "You need to click on the link to open the page.", + "pos": "verb", + "word_frequency": 3761 + }, + { + "word": "collana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "necklace;(book) series", + "romanization": "collana", + "example_sentence_native": "Ha ricevuto una bellissima collana d'oro per il suo compleanno.", + "example_sentence_english": "She received a beautiful gold necklace for her birthday.", + "pos": "noun", + "word_frequency": 3762 + }, + { + "word": "colto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultured;educated", + "romanization": "colto", + "example_sentence_native": "È una persona molto colta e ama leggere.", + "example_sentence_english": "He is a very cultured person and loves to read.", + "pos": "adjective", + "word_frequency": 3763 + }, + { + "word": "commentare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to comment", + "romanization": "commentare", + "example_sentence_native": "Molti utenti hanno commentato il suo post.", + "example_sentence_english": "Many users commented on his post.", + "pos": "verb", + "word_frequency": 3764 + }, + { + "word": "comparsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance;extra (in a film)", + "romanization": "comparsa", + "example_sentence_native": "Ha fatto una breve comparsa nel film.", + "example_sentence_english": "He made a brief appearance in the film.", + "pos": "noun", + "word_frequency": 3765 + }, + { + "word": "competente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competent;skilled", + "romanization": "competente", + "example_sentence_native": "Il nuovo ingegnere è molto competente nel suo campo.", + "example_sentence_english": "The new engineer is very competent in his field.", + "pos": "adjective", + "word_frequency": 3766 + }, + { + "word": "concorrente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competitor;contestant", + "romanization": "concorrente", + "example_sentence_native": "Ha battuto tutti i suoi concorrenti nella gara.", + "example_sentence_english": "He beat all his competitors in the race.", + "pos": "noun", + "word_frequency": 3767 + }, + { + "word": "conduttore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conductor;presenter", + "romanization": "conduttore", + "example_sentence_native": "Il conduttore del programma ha annunciato il vincitore.", + "example_sentence_english": "The show's presenter announced the winner.", + "pos": "noun", + "word_frequency": 3768 + }, + { + "word": "conquistare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conquer;to win over", + "romanization": "conquistare", + "example_sentence_native": "Hanno cercato di conquistare nuove terre.", + "example_sentence_english": "They tried to conquer new lands.", + "pos": "verb", + "word_frequency": 3769 + }, + { + "word": "conversione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conversion", + "romanization": "conversione", + "example_sentence_native": "La conversione di un file da un formato all'altro è semplice.", + "example_sentence_english": "The conversion of a file from one format to another is simple.", + "pos": "noun", + "word_frequency": 3770 + }, + { + "word": "corda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rope;cord;string", + "romanization": "corda", + "example_sentence_native": "Ha legato il pacco con una corda robusta.", + "example_sentence_english": "He tied the package with a strong rope.", + "pos": "noun", + "word_frequency": 3771 + }, + { + "word": "deluso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointed", + "romanization": "deluso", + "example_sentence_native": "Era molto deluso dal risultato della partita.", + "example_sentence_english": "He was very disappointed with the game's result.", + "pos": "adjective", + "word_frequency": 3772 + }, + { + "word": "digital", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digital", + "romanization": "digital", + "example_sentence_native": "Viviamo in un'era digitale.", + "example_sentence_english": "We live in a digital era.", + "pos": "adjective", + "word_frequency": 3773 + }, + { + "word": "discesa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "descent;downhill", + "romanization": "discesa", + "example_sentence_native": "La discesa dalla montagna è stata ripida.", + "example_sentence_english": "The descent from the mountain was steep.", + "pos": "noun", + "word_frequency": 3774 + }, + { + "word": "equivalente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalent", + "romanization": "equivalente", + "example_sentence_native": "Il valore di questa moneta è equivalente a quello di due euro.", + "example_sentence_english": "The value of this coin is equivalent to two euros.", + "pos": "adjective", + "word_frequency": 3775 + }, + { + "word": "facciata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facade;front (of a building)", + "romanization": "facciata", + "example_sentence_native": "La facciata del palazzo è stata appena restaurata.", + "example_sentence_english": "The facade of the building has just been restored.", + "pos": "noun", + "word_frequency": 3777 + }, + { + "word": "farina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flour", + "romanization": "farina", + "example_sentence_native": "Per fare il pane serve la farina.", + "example_sentence_english": "To make bread, you need flour.", + "pos": "noun", + "word_frequency": 3778 + }, + { + "word": "fissare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fix;to stare;to set (an appointment)", + "romanization": "fissare", + "example_sentence_native": "Dobbiamo fissare un appuntamento per la prossima settimana.", + "example_sentence_english": "We need to set an appointment for next week.", + "pos": "verb", + "word_frequency": 3779 + }, + { + "word": "fotografo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photographer", + "romanization": "fotografo", + "example_sentence_native": "Il fotografo ha scattato delle bellissime foto.", + "example_sentence_english": "The photographer took some beautiful photos.", + "pos": "noun", + "word_frequency": 3780 + }, + { + "word": "giunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint;junction", + "romanization": "giunto", + "example_sentence_native": "Il meccanico ha sostituito il giunto difettoso.", + "example_sentence_english": "The mechanic replaced the faulty joint.", + "pos": "noun", + "word_frequency": 3781 + }, + { + "word": "guadagno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gain;profit;earnings", + "romanization": "guadagno", + "example_sentence_native": "Il guadagno dell'azienda è aumentato quest'anno.", + "example_sentence_english": "The company's profit increased this year.", + "pos": "noun", + "word_frequency": 3783 + }, + { + "word": "imperiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperial", + "romanization": "imperiale", + "example_sentence_native": "La famiglia imperiale viveva in un grande palazzo.", + "example_sentence_english": "The imperial family lived in a large palace.", + "pos": "adjective", + "word_frequency": 3785 + }, + { + "word": "infinito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinite;endless", + "romanization": "infinito", + "example_sentence_native": "L'universo è infinito.", + "example_sentence_english": "The universe is infinite.", + "pos": "adjective", + "word_frequency": 3786 + }, + { + "word": "intenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intense;strong", + "romanization": "intenso", + "example_sentence_native": "Ha provato un dolore intenso.", + "example_sentence_english": "He felt an intense pain.", + "pos": "adjective", + "word_frequency": 3787 + }, + { + "word": "isolamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "isolation;insulation", + "romanization": "isolamento", + "example_sentence_native": "Durante la pandemia, molte persone hanno vissuto in isolamento.", + "example_sentence_english": "During the pandemic, many people lived in isolation.", + "pos": "noun", + "word_frequency": 3788 + }, + { + "word": "istituzionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "institutional", + "romanization": "istituzionale", + "example_sentence_native": "Ha ricoperto un ruolo istituzionale importante.", + "example_sentence_english": "He held an important institutional role.", + "pos": "adjective", + "word_frequency": 3789 + }, + { + "word": "jazz", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jazz", + "romanization": "jazz", + "example_sentence_native": "Le piace ascoltare musica jazz.", + "example_sentence_english": "She likes listening to jazz music.", + "pos": "noun", + "word_frequency": 3790 + }, + { + "word": "killer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "killer", + "romanization": "killer", + "example_sentence_native": "La polizia è alla ricerca del killer.", + "example_sentence_english": "The police are looking for the killer.", + "pos": "noun", + "word_frequency": 3792 + }, + { + "word": "magazzino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warehouse;storehouse", + "romanization": "magazzino", + "example_sentence_native": "La merce è stata spedita dal magazzino.", + "example_sentence_english": "The goods were shipped from the warehouse.", + "pos": "noun", + "word_frequency": 3795 + }, + { + "word": "marmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marble", + "romanization": "marmo", + "example_sentence_native": "La statua è scolpita nel marmo bianco.", + "example_sentence_english": "The statue is carved from white marble.", + "pos": "noun", + "word_frequency": 3796 + }, + { + "word": "onesto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "honest", + "romanization": "onesto", + "example_sentence_native": "È una persona molto onesta e affidabile.", + "example_sentence_english": "He is a very honest and reliable person.", + "pos": "adjective", + "word_frequency": 3799 + }, + { + "word": "opportuno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate;opportune", + "romanization": "opportuno", + "example_sentence_native": "È opportuno agire subito.", + "example_sentence_english": "It is appropriate to act immediately.", + "pos": "adjective", + "word_frequency": 3800 + }, + { + "word": "oramai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by now;already", + "romanization": "oramai", + "example_sentence_native": "Oramai è troppo tardi per cambiare idea.", + "example_sentence_english": "By now it's too late to change your mind.", + "pos": "adverb", + "word_frequency": 3801 + }, + { + "word": "provenienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "origin;provenance", + "romanization": "provenienza", + "example_sentence_native": "Qual è la provenienza di questo prodotto?", + "example_sentence_english": "What is the origin of this product?", + "pos": "noun", + "word_frequency": 3803 + }, + { + "word": "punteggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "score", + "romanization": "punteggio", + "example_sentence_native": "Il punteggio finale è stato di 3 a 1.", + "example_sentence_english": "The final score was 3 to 1.", + "pos": "noun", + "word_frequency": 3805 + }, + { + "word": "recita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "performance;play", + "romanization": "recita", + "example_sentence_native": "La recita scolastica è stata un successo.", + "example_sentence_english": "The school play was a success.", + "pos": "noun", + "word_frequency": 3806 + }, + { + "word": "rifugiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refugee", + "romanization": "rifugiato", + "example_sentence_native": "Molti rifugiati cercano asilo in Europa.", + "example_sentence_english": "Many refugees seek asylum in Europe.", + "pos": "noun", + "word_frequency": 3807 + }, + { + "word": "salone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "living room;lounge;salon", + "romanization": "salone", + "example_sentence_native": "Ci siamo incontrati nel salone principale.", + "example_sentence_english": "We met in the main living room.", + "pos": "noun", + "word_frequency": 3809 + }, + { + "word": "separato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separate;separated", + "romanization": "separato", + "example_sentence_native": "Hanno deciso di vivere in case separate.", + "example_sentence_english": "They decided to live in separate houses.", + "pos": "adjective", + "word_frequency": 3810 + }, + { + "word": "sindrome", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "syndrome", + "romanization": "sindrome", + "example_sentence_native": "La sindrome di Down è una condizione genetica.", + "example_sentence_english": "Down syndrome is a genetic condition.", + "pos": "noun", + "word_frequency": 3811 + }, + { + "word": "telecamera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "video camera;surveillance camera", + "romanization": "telecamera", + "example_sentence_native": "Le telecamere di sicurezza hanno ripreso l'evento.", + "example_sentence_english": "The security cameras recorded the event.", + "pos": "noun", + "word_frequency": 3813 + }, + { + "word": "trans", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trans person", + "romanization": "trans", + "example_sentence_native": "La comunità trans è sempre più visibile.", + "example_sentence_english": "The trans community is increasingly visible.", + "pos": "noun", + "word_frequency": 3814 + }, + { + "word": "trent'anni", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirty years", + "romanization": "trent'anni", + "example_sentence_native": "Ha trent'anni e vive ancora con i suoi genitori.", + "example_sentence_english": "He is thirty years old and still lives with his parents.", + "pos": "noun", + "word_frequency": 3815 + }, + { + "word": "urlare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scream;to yell", + "romanization": "urlare", + "example_sentence_native": "Non urlare, ti sento benissimo.", + "example_sentence_english": "Don't yell, I can hear you perfectly.", + "pos": "verb", + "word_frequency": 3818 + }, + { + "word": "venditore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seller;vendor", + "romanization": "venditore", + "example_sentence_native": "Il venditore mi ha offerto uno sconto.", + "example_sentence_english": "The seller offered me a discount.", + "pos": "noun", + "word_frequency": 3820 + }, + { + "word": "africano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "African", + "romanization": "africano", + "example_sentence_native": "L'elefante africano è il più grande animale terrestre.", + "example_sentence_english": "The African elephant is the largest land animal.", + "pos": "adjective", + "word_frequency": 3824 + }, + { + "word": "allievo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "student;pupil", + "romanization": "allievo", + "example_sentence_native": "L'allievo ha superato il maestro.", + "example_sentence_english": "The student surpassed the teacher.", + "pos": "noun", + "word_frequency": 3826 + }, + { + "word": "apertamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "openly;frankly", + "romanization": "apertamente", + "example_sentence_native": "Ha espresso apertamente le sue opinioni.", + "example_sentence_english": "He openly expressed his opinions.", + "pos": "adverb", + "word_frequency": 3827 + }, + { + "word": "autorizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to authorize;to permit", + "romanization": "autorizzare", + "example_sentence_native": "Il direttore ha autorizzato la spesa.", + "example_sentence_english": "The director authorized the expense.", + "pos": "verb", + "word_frequency": 3828 + }, + { + "word": "bambina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "girl;little girl", + "romanization": "bambina", + "example_sentence_native": "La bambina gioca nel parco.", + "example_sentence_english": "The little girl plays in the park.", + "pos": "noun", + "word_frequency": 3829 + }, + { + "word": "bersaglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "target", + "romanization": "bersaglio", + "example_sentence_native": "Ha colpito il bersaglio con precisione.", + "example_sentence_english": "He hit the target with precision.", + "pos": "noun", + "word_frequency": 3830 + }, + { + "word": "britannico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "British", + "romanization": "britannico", + "example_sentence_native": "La famiglia reale britannica è molto famosa.", + "example_sentence_english": "The British royal family is very famous.", + "pos": "adjective", + "word_frequency": 3831 + }, + { + "word": "carro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cart;wagon;chariot", + "romanization": "carro", + "example_sentence_native": "Il carro agricolo trasportava fieno.", + "example_sentence_english": "The farm cart was carrying hay.", + "pos": "noun", + "word_frequency": 3832 + }, + { + "word": "civico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civic;municipal", + "romanization": "civico", + "example_sentence_native": "Il numero civico della casa è 10.", + "example_sentence_english": "The civic number of the house is 10.", + "pos": "adjective", + "word_frequency": 3834 + }, + { + "word": "comico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic;funny", + "romanization": "comico", + "example_sentence_native": "Quel film è davvero comico.", + "example_sentence_english": "That movie is really funny.", + "pos": "adjective", + "word_frequency": 3835 + }, + { + "word": "cortesia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courtesy;politeness", + "romanization": "cortesia", + "example_sentence_native": "Grazie per la tua cortesia.", + "example_sentence_english": "Thank you for your courtesy.", + "pos": "noun", + "word_frequency": 3836 + }, + { + "word": "disperazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despair", + "romanization": "disperazione", + "example_sentence_native": "Cadde in uno stato di profonda disperazione.", + "example_sentence_english": "He fell into a state of deep despair.", + "pos": "noun", + "word_frequency": 3838 + }, + { + "word": "estrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraction;drawing (e.g.;lottery);origin", + "romanization": "estrazione", + "example_sentence_native": "L'estrazione del petrolio è un processo complesso.", + "example_sentence_english": "Oil extraction is a complex process.", + "pos": "noun", + "word_frequency": 3839 + }, + { + "word": "facilità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ease;facility", + "romanization": "facilità", + "example_sentence_native": "Ha imparato l'italiano con grande facilità.", + "example_sentence_english": "He learned Italian with great ease.", + "pos": "noun", + "word_frequency": 3841 + }, + { + "word": "frazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraction;hamlet;district", + "romanization": "frazione", + "example_sentence_native": "Viviamo in una piccola frazione di montagna.", + "example_sentence_english": "We live in a small mountain hamlet.", + "pos": "noun", + "word_frequency": 3843 + }, + { + "word": "frontiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "border;frontier", + "romanization": "frontiera", + "example_sentence_native": "Abbiamo attraversato la frontiera senza problemi.", + "example_sentence_english": "We crossed the border without problems.", + "pos": "noun", + "word_frequency": 3844 + }, + { + "word": "giuridico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal;juridical", + "romanization": "giuridico", + "example_sentence_native": "Ha studiato diritto e ora lavora in campo giuridico.", + "example_sentence_english": "He studied law and now works in the legal field.", + "pos": "adjective", + "word_frequency": 3846 + }, + { + "word": "ignorare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ignore;to be unaware of", + "romanization": "ignorare", + "example_sentence_native": "Non puoi ignorare il problema.", + "example_sentence_english": "You cannot ignore the problem.", + "pos": "verb", + "word_frequency": 3847 + }, + { + "word": "incapace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incapable;unable", + "romanization": "incapace", + "example_sentence_native": "Si sentiva incapace di affrontare la situazione.", + "example_sentence_english": "He felt incapable of facing the situation.", + "pos": "adjective", + "word_frequency": 3848 + }, + { + "word": "linguistica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguistics", + "romanization": "linguistica", + "example_sentence_native": "Ha studiato linguistica all'università.", + "example_sentence_english": "She studied linguistics at university.", + "pos": "noun", + "word_frequency": 3853 + }, + { + "word": "logico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logical", + "romanization": "logico", + "example_sentence_native": "La sua spiegazione era molto logica.", + "example_sentence_english": "His explanation was very logical.", + "pos": "adjective", + "word_frequency": 3854 + }, + { + "word": "mantenimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintenance;upkeep;alimony", + "romanization": "mantenimento", + "example_sentence_native": "Il mantenimento dell'edificio è costoso.", + "example_sentence_english": "The maintenance of the building is expensive.", + "pos": "noun", + "word_frequency": 3856 + }, + { + "word": "maturità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maturity;high school diploma exam", + "romanization": "maturità", + "example_sentence_native": "Ha dimostrato grande maturità per la sua età.", + "example_sentence_english": "He showed great maturity for his age.", + "pos": "noun", + "word_frequency": 3859 + }, + { + "word": "miele", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "honey", + "romanization": "miele", + "example_sentence_native": "Mi piace il tè con il miele.", + "example_sentence_english": "I like tea with honey.", + "pos": "noun", + "word_frequency": 3861 + }, + { + "word": "monitoraggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monitoring", + "romanization": "monitoraggio", + "example_sentence_native": "Il monitoraggio costante è essenziale per la sicurezza.", + "example_sentence_english": "Constant monitoring is essential for safety.", + "pos": "noun", + "word_frequency": 3862 + }, + { + "word": "municipio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "town hall;city hall", + "romanization": "municipio", + "example_sentence_native": "Dobbiamo andare al municipio per i documenti.", + "example_sentence_english": "We need to go to the town hall for the documents.", + "pos": "noun", + "word_frequency": 3863 + }, + { + "word": "mutuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortgage;loan", + "romanization": "mutuo", + "example_sentence_native": "Abbiamo chiesto un mutuo per comprare casa.", + "example_sentence_english": "We applied for a mortgage to buy a house.", + "pos": "noun", + "word_frequency": 3865 + }, + { + "word": "originariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originally", + "romanization": "originariamente", + "example_sentence_native": "La casa era originariamente una fattoria.", + "example_sentence_english": "The house was originally a farm.", + "pos": "adverb", + "word_frequency": 3867 + }, + { + "word": "originario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "original;native (from)", + "romanization": "originario", + "example_sentence_native": "Sono originario di Roma.", + "example_sentence_english": "I am originally from Rome.", + "pos": "adjective", + "word_frequency": 3868 + }, + { + "word": "pelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hair (body hair;animal fur);single hair", + "romanization": "pelo", + "example_sentence_native": "Il gatto ha il pelo morbido.", + "example_sentence_english": "The cat has soft fur.", + "pos": "noun", + "word_frequency": 3870 + }, + { + "word": "replica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replica;rerun;reply", + "romanization": "replica", + "example_sentence_native": "Questa è una replica esatta dell'originale.", + "example_sentence_english": "This is an exact replica of the original.", + "pos": "noun", + "word_frequency": 3871 + }, + { + "word": "ricevuta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receipt", + "romanization": "ricevuta", + "example_sentence_native": "Posso avere la ricevuta, per favorire?", + "example_sentence_english": "Can I have the receipt, please?", + "pos": "noun", + "word_frequency": 3872 + }, + { + "word": "rimborso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refund;reimbursement", + "romanization": "rimborso", + "example_sentence_native": "Ho chiesto un rimborso per il biglietto.", + "example_sentence_english": "I asked for a refund for the ticket.", + "pos": "noun", + "word_frequency": 3873 + }, + { + "word": "ritrovo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meeting place;reunion;discovery", + "romanization": "ritrovo", + "example_sentence_native": "Il nostro solito ritrovo è al bar.", + "example_sentence_english": "Our usual meeting place is at the bar.", + "pos": "noun", + "word_frequency": 3874 + }, + { + "word": "sacerdote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priest", + "romanization": "sacerdote", + "example_sentence_native": "Il sacerdote ha celebrato la messa.", + "example_sentence_english": "The priest celebrated the mass.", + "pos": "noun", + "word_frequency": 3875 + }, + { + "word": "tecnicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technically", + "romanization": "tecnicamente", + "example_sentence_native": "Tecnicamente, hai ragione.", + "example_sentence_english": "Technically, you are right.", + "pos": "adverb", + "word_frequency": 3878 + }, + { + "word": "tunnel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tunnel", + "romanization": "tunnel", + "example_sentence_native": "La macchina è entrata nel tunnel.", + "example_sentence_english": "The car entered the tunnel.", + "pos": "noun", + "word_frequency": 3880 + }, + { + "word": "vangelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gospel", + "romanization": "vangelo", + "example_sentence_native": "Ha letto un passo dal Vangelo.", + "example_sentence_english": "He read a passage from the Gospel.", + "pos": "noun", + "word_frequency": 3881 + }, + { + "word": "vicinanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proximity;closeness", + "romanization": "vicinanza", + "example_sentence_native": "Apprezzo la tua vicinanza in questo momento difficile.", + "example_sentence_english": "I appreciate your closeness in this difficult moment.", + "pos": "noun", + "word_frequency": 3882 + }, + { + "word": "abbraccio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hug;embrace", + "romanization": "abbraccio", + "example_sentence_native": "Mi ha dato un grande abbraccio.", + "example_sentence_english": "He gave me a big hug.", + "pos": "noun", + "word_frequency": 3885 + }, + { + "word": "alcol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alcohol", + "romanization": "alcol", + "example_sentence_native": "Non bevo alcol.", + "example_sentence_english": "I don't drink alcohol.", + "pos": "noun", + "word_frequency": 3886 + }, + { + "word": "alpe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alp;mountain pasture", + "romanization": "alpe", + "example_sentence_native": "Le Alpi sono una catena montuosa in Europa.", + "example_sentence_english": "The Alps are a mountain range in Europe.", + "pos": "noun", + "word_frequency": 3889 + }, + { + "word": "altronde", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "besides;moreover;after all", + "romanization": "altronde", + "example_sentence_native": "D'altronde, non c'era altra scelta.", + "example_sentence_english": "Besides, there was no other choice.", + "pos": "adverb", + "word_frequency": 3890 + }, + { + "word": "amato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beloved;loved", + "romanization": "amato", + "example_sentence_native": "Era un uomo molto amato da tutti.", + "example_sentence_english": "He was a man much loved by everyone.", + "pos": "adjective", + "word_frequency": 3892 + }, + { + "word": "assedio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "siege", + "romanization": "assedio", + "example_sentence_native": "La città era sotto assedio per mesi.", + "example_sentence_english": "The city was under siege for months.", + "pos": "noun", + "word_frequency": 3893 + }, + { + "word": "associato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "associated", + "romanization": "associato", + "example_sentence_native": "I rischi associati a questa procedura sono minimi.", + "example_sentence_english": "The risks associated with this procedure are minimal.", + "pos": "adjective", + "word_frequency": 3894 + }, + { + "word": "beneficenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charity", + "romanization": "beneficenza", + "example_sentence_native": "Ha donato una grande somma in beneficenza.", + "example_sentence_english": "He donated a large sum to charity.", + "pos": "noun", + "word_frequency": 3895 + }, + { + "word": "biscotto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "biscuit;cookie", + "romanization": "biscotto", + "example_sentence_native": "Ho mangiato un biscotto con il caffè.", + "example_sentence_english": "I ate a cookie with my coffee.", + "pos": "noun", + "word_frequency": 3896 + }, + { + "word": "bolla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bubble", + "romanization": "bolla", + "example_sentence_native": "I bambini giocavano con le bolle di sapone.", + "example_sentence_english": "The children played with soap bubbles.", + "pos": "noun", + "word_frequency": 3897 + }, + { + "word": "chiacchiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat;gossip", + "romanization": "chiacchiera", + "example_sentence_native": "Ci siamo fatti una lunga chiacchiera al bar.", + "example_sentence_english": "We had a long chat at the bar.", + "pos": "noun", + "word_frequency": 3899 + }, + { + "word": "collaborare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collaborate", + "romanization": "collaborare", + "example_sentence_native": "Dobbiamo collaborare per raggiungere l'obiettivo.", + "example_sentence_english": "We must collaborate to achieve the goal.", + "pos": "verb", + "word_frequency": 3900 + }, + { + "word": "compromesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compromise", + "romanization": "compromesso", + "example_sentence_native": "Hanno raggiunto un compromesso dopo lunghe trattative.", + "example_sentence_english": "They reached a compromise after long negotiations.", + "pos": "noun", + "word_frequency": 3901 + }, + { + "word": "correttamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correctly", + "romanization": "correttamente", + "example_sentence_native": "Ha risposto correttamente a tutte le domande.", + "example_sentence_english": "He answered all the questions correctly.", + "pos": "adverb", + "word_frequency": 3902 + }, + { + "word": "degno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worthy;deserving", + "romanization": "degno", + "example_sentence_native": "È un candidato degno di fiducia.", + "example_sentence_english": "He is a trustworthy candidate.", + "pos": "adjective", + "word_frequency": 3903 + }, + { + "word": "denunciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to denounce;to report", + "romanization": "denunciare", + "example_sentence_native": "Ha deciso di denunciare il furto alla polizia.", + "example_sentence_english": "He decided to report the theft to the police.", + "pos": "verb", + "word_frequency": 3905 + }, + { + "word": "diffondere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spread;to disseminate", + "romanization": "diffondere", + "example_sentence_native": "La notizia si è diffusa rapidamente.", + "example_sentence_english": "The news spread quickly.", + "pos": "verb", + "word_frequency": 3907 + }, + { + "word": "dominante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominant", + "romanization": "dominante", + "example_sentence_native": "È la specie dominante in questo ecosistema.", + "example_sentence_english": "It is the dominant species in this ecosystem.", + "pos": "adjective", + "word_frequency": 3908 + }, + { + "word": "dottrina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doctrine", + "romanization": "dottrina", + "example_sentence_native": "La sua dottrina è basata su principi antichi.", + "example_sentence_english": "His doctrine is based on ancient principles.", + "pos": "noun", + "word_frequency": 3909 + }, + { + "word": "dubitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to doubt", + "romanization": "dubitare", + "example_sentence_native": "Non dubito della sua onestà.", + "example_sentence_english": "I don't doubt his honesty.", + "pos": "verb", + "word_frequency": 3910 + }, + { + "word": "esclusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusion", + "romanization": "esclusione", + "example_sentence_native": "Hanno votato per la sua esclusione dal club.", + "example_sentence_english": "They voted for his exclusion from the club.", + "pos": "noun", + "word_frequency": 3912 + }, + { + "word": "esteso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extended;widespread", + "romanization": "esteso", + "example_sentence_native": "Il danno è più esteso del previsto.", + "example_sentence_english": "The damage is more widespread than expected.", + "pos": "adjective", + "word_frequency": 3913 + }, + { + "word": "fortunatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortunately", + "romanization": "fortunatamente", + "example_sentence_native": "Fortunatamente, nessuno si è fatto male.", + "example_sentence_english": "Fortunately, no one was hurt.", + "pos": "adverb", + "word_frequency": 3914 + }, + { + "word": "funzionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "official;civil servant", + "romanization": "funzionario", + "example_sentence_native": "Ha parlato con un funzionario del comune.", + "example_sentence_english": "He spoke with a city official.", + "pos": "noun", + "word_frequency": 3915 + }, + { + "word": "giudiziario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judicial", + "romanization": "giudiziario", + "example_sentence_native": "Il sistema giudiziario italiano è complesso.", + "example_sentence_english": "The Italian judicial system is complex.", + "pos": "adjective", + "word_frequency": 3916 + }, + { + "word": "ideologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideology", + "romanization": "ideologia", + "example_sentence_native": "La sua ideologia politica è molto chiara.", + "example_sentence_english": "His political ideology is very clear.", + "pos": "noun", + "word_frequency": 3917 + }, + { + "word": "indagare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to investigate", + "romanization": "indagare", + "example_sentence_native": "La polizia sta indagando sul caso.", + "example_sentence_english": "The police are investigating the case.", + "pos": "verb", + "word_frequency": 3918 + }, + { + "word": "isolato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "isolated;secluded", + "romanization": "isolato", + "example_sentence_native": "La casa è isolata in campagna.", + "example_sentence_english": "The house is isolated in the countryside.", + "pos": "adjective", + "word_frequency": 3920 + }, + { + "word": "lavorazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "processing;manufacturing;workmanship", + "romanization": "lavorazione", + "example_sentence_native": "La lavorazione del legno richiede molta pazienza.", + "example_sentence_english": "Wood processing requires a lot of patience.", + "pos": "noun", + "word_frequency": 3922 + }, + { + "word": "obbligatorio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "obligatory;compulsory", + "romanization": "obbligatorio", + "example_sentence_native": "L'uso della mascherina è obbligatorio in questo luogo.", + "example_sentence_english": "Wearing a mask is obligatory in this place.", + "pos": "adjective", + "word_frequency": 3923 + }, + { + "word": "primario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primary;main", + "romanization": "primario", + "example_sentence_native": "La salute è la nostra preoccupazione primaria.", + "example_sentence_english": "Health is our primary concern.", + "pos": "adjective", + "word_frequency": 3928 + }, + { + "word": "progettazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "design;planning", + "romanization": "progettazione", + "example_sentence_native": "La fase di progettazione è cruciale per il successo del progetto.", + "example_sentence_english": "The design phase is crucial for the project's success.", + "pos": "noun", + "word_frequency": 3929 + }, + { + "word": "pubblicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "publicly", + "romanization": "pubblicamente", + "example_sentence_native": "Ha dichiarato pubblicamente le sue intenzioni.", + "example_sentence_english": "He publicly declared his intentions.", + "pos": "adverb", + "word_frequency": 3930 + }, + { + "word": "respirare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to breathe", + "romanization": "respirare", + "example_sentence_native": "È difficile respirare a questa altitudine.", + "example_sentence_english": "It's difficult to breathe at this altitude.", + "pos": "verb", + "word_frequency": 3931 + }, + { + "word": "rilevanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relevance;importance", + "romanization": "rilevanza", + "example_sentence_native": "La sua testimonianza ha una grande rilevanza per il caso.", + "example_sentence_english": "His testimony has great relevance to the case.", + "pos": "noun", + "word_frequency": 3932 + }, + { + "word": "salsa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauce", + "romanization": "salsa", + "example_sentence_native": "Mi piace la pasta con la salsa al pomodoro.", + "example_sentence_english": "I like pasta with tomato sauce.", + "pos": "noun", + "word_frequency": 3933 + }, + { + "word": "scherzare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to joke;to kid", + "romanization": "scherzare", + "example_sentence_native": "Stavo solo scherzando, non prenderla sul serio.", + "example_sentence_english": "I was just joking, don't take it seriously.", + "pos": "verb", + "word_frequency": 3935 + }, + { + "word": "sentiero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "path;trail", + "romanization": "sentiero", + "example_sentence_native": "Abbiamo seguito il sentiero nel bosco.", + "example_sentence_english": "We followed the path in the woods.", + "pos": "noun", + "word_frequency": 3936 + }, + { + "word": "sequestro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seizure;kidnapping", + "romanization": "sequestro", + "example_sentence_native": "La polizia ha effettuato il sequestro della merce contraffatta.", + "example_sentence_english": "The police carried out the seizure of counterfeit goods.", + "pos": "noun", + "word_frequency": 3937 + }, + { + "word": "sfuggire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape;to elude;to slip away", + "romanization": "sfuggire", + "example_sentence_native": "Il ladro è riuscito a sfuggire alla cattura.", + "example_sentence_english": "The thief managed to escape capture.", + "pos": "verb", + "word_frequency": 3938 + }, + { + "word": "sigaretta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cigarette", + "romanization": "sigaretta", + "example_sentence_native": "Non fumo più sigarette.", + "example_sentence_english": "I don't smoke cigarettes anymore.", + "pos": "noun", + "word_frequency": 3939 + }, + { + "word": "spostare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to move;to shift", + "romanization": "spostare", + "example_sentence_native": "Puoi aiutarmi a spostare questo tavolo?", + "example_sentence_english": "Can you help me move this table?", + "pos": "verb", + "word_frequency": 3941 + }, + { + "word": "suggerire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suggest;to advise", + "romanization": "suggerire", + "example_sentence_native": "Ti suggerisco di leggere questo libro.", + "example_sentence_english": "I suggest you read this book.", + "pos": "verb", + "word_frequency": 3942 + }, + { + "word": "truffa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scam;fraud", + "romanization": "truffa", + "example_sentence_native": "È caduto vittima di una truffa online.", + "example_sentence_english": "He fell victim to an online scam.", + "pos": "noun", + "word_frequency": 3943 + }, + { + "word": "tutelare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to protect;to safeguard", + "romanization": "tutelare", + "example_sentence_native": "Dobbiamo tutelare l'ambiente per le future generazioni.", + "example_sentence_english": "We must protect the environment for future generations.", + "pos": "verb", + "word_frequency": 3944 + }, + { + "word": "verbale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verbal;oral", + "romanization": "verbale", + "example_sentence_native": "Ha ricevuto una comunicazione verbale.", + "example_sentence_english": "He received a verbal communication.", + "pos": "adjective", + "word_frequency": 3945 + }, + { + "word": "verticale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vertical", + "romanization": "verticale", + "example_sentence_native": "La linea è perfettamente verticale.", + "example_sentence_english": "The line is perfectly vertical.", + "pos": "adjective", + "word_frequency": 3946 + }, + { + "word": "abbandonato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abandoned;deserted", + "romanization": "abbandonato", + "example_sentence_native": "Hanno trovato un cucciolo abbandonato per strada.", + "example_sentence_english": "They found an abandoned puppy on the street.", + "pos": "adjective", + "word_frequency": 3947 + }, + { + "word": "alcool", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "alcohol", + "romanization": "alcool", + "example_sentence_native": "È vietato bere alcool in luoghi pubblici.", + "example_sentence_english": "It is forbidden to drink alcohol in public places.", + "pos": "noun", + "word_frequency": 3948 + }, + { + "word": "assalto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assault;attack", + "romanization": "assalto", + "example_sentence_native": "Hanno sferrato un assalto alla fortezza.", + "example_sentence_english": "They launched an assault on the fortress.", + "pos": "noun", + "word_frequency": 3950 + }, + { + "word": "botta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blow;hit;bump", + "romanization": "botta", + "example_sentence_native": "Ho preso una brutta botta alla testa.", + "example_sentence_english": "I got a bad bump on my head.", + "pos": "noun", + "word_frequency": 3951 + }, + { + "word": "brindisi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toast (drink);cheers", + "romanization": "brindisi", + "example_sentence_native": "Facciamo un brindisi alla vostra felicità!", + "example_sentence_english": "Let's make a toast to your happiness!", + "pos": "noun", + "word_frequency": 3952 + }, + { + "word": "cantiere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "construction site;shipyard", + "romanization": "cantiere", + "example_sentence_native": "Il nuovo edificio è ancora in cantiere.", + "example_sentence_english": "The new building is still under construction.", + "pos": "noun", + "word_frequency": 3953 + }, + { + "word": "circondato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surrounded", + "romanization": "circondato", + "example_sentence_native": "Il castello è circondato da un fossato.", + "example_sentence_english": "The castle is surrounded by a moat.", + "pos": "adjective", + "word_frequency": 3956 + }, + { + "word": "coinvolgimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involvement;engagement", + "romanization": "coinvolgimento", + "example_sentence_native": "Il suo coinvolgimento nel progetto è stato fondamentale.", + "example_sentence_english": "His involvement in the project was fundamental.", + "pos": "noun", + "word_frequency": 3957 + }, + { + "word": "collegato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connected;linked", + "romanization": "collegato", + "example_sentence_native": "Il computer è collegato a internet.", + "example_sentence_english": "The computer is connected to the internet.", + "pos": "adjective", + "word_frequency": 3958 + }, + { + "word": "colpito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hit;struck;impressed", + "romanization": "colpito", + "example_sentence_native": "Sono rimasto molto colpito dalla sua performance.", + "example_sentence_english": "I was very impressed by his performance.", + "pos": "adjective", + "word_frequency": 3959 + }, + { + "word": "conservare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to preserve;to keep", + "romanization": "conservare", + "example_sentence_native": "Dobbiamo conservare il cibo in frigorifero.", + "example_sentence_english": "We must preserve the food in the refrigerator.", + "pos": "verb", + "word_frequency": 3960 + }, + { + "word": "creatività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creativity", + "romanization": "creatività", + "example_sentence_native": "La creatività è essenziale per l'arte.", + "example_sentence_english": "Creativity is essential for art.", + "pos": "noun", + "word_frequency": 3961 + }, + { + "word": "criticare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to criticize", + "romanization": "criticare", + "example_sentence_native": "Non dovresti criticare gli altri senza motivo.", + "example_sentence_english": "You shouldn't criticize others without reason.", + "pos": "verb", + "word_frequency": 3962 + }, + { + "word": "dappertutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "everywhere", + "romanization": "dappertutto", + "example_sentence_native": "Ho cercato le chiavi dappertutto.", + "example_sentence_english": "I looked for the keys everywhere.", + "pos": "adverb", + "word_frequency": 3963 + }, + { + "word": "fisicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physically", + "romanization": "fisicamente", + "example_sentence_native": "Si sentiva fisicamente esausto dopo la corsa.", + "example_sentence_english": "He felt physically exhausted after the run.", + "pos": "adverb", + "word_frequency": 3967 + }, + { + "word": "football", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football (soccer)", + "romanization": "football", + "example_sentence_native": "Il football è lo sport più popolare in Italia.", + "example_sentence_english": "Football is the most popular sport in Italy.", + "pos": "noun", + "word_frequency": 3968 + }, + { + "word": "identificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identified", + "romanization": "identificato", + "example_sentence_native": "Il problema è stato identificato e risolto.", + "example_sentence_english": "The problem has been identified and resolved.", + "pos": "adjective", + "word_frequency": 3970 + }, + { + "word": "innamorato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in love", + "romanization": "innamorato", + "example_sentence_native": "Lui è innamorato di lei.", + "example_sentence_english": "He is in love with her.", + "pos": "adjective", + "word_frequency": 3971 + }, + { + "word": "innumerevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "innumerable;countless", + "romanization": "innumerevole", + "example_sentence_native": "Ci sono innumerevoli stelle nel cielo.", + "example_sentence_english": "There are innumerable stars in the sky.", + "pos": "adjective", + "word_frequency": 3972 + }, + { + "word": "invisibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invisible", + "romanization": "invisibile", + "example_sentence_native": "L'aria è invisibile ma essenziale.", + "example_sentence_english": "Air is invisible but essential.", + "pos": "adjective", + "word_frequency": 3973 + }, + { + "word": "narrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narration;storytelling", + "romanization": "narrazione", + "example_sentence_native": "La narrazione del libro era molto coinvolgente.", + "example_sentence_english": "The narration of the book was very engaging.", + "pos": "noun", + "word_frequency": 3976 + }, + { + "word": "occuparsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take care of;to deal with", + "romanization": "occuparsi", + "example_sentence_native": "Devo occuparmi dei miei figli.", + "example_sentence_english": "I have to take care of my children.", + "pos": "verb", + "word_frequency": 3977 + }, + { + "word": "ordinare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to order;to arrange", + "romanization": "ordinare", + "example_sentence_native": "Vorrei ordinare una pizza.", + "example_sentence_english": "I would like to order a pizza.", + "pos": "verb", + "word_frequency": 3979 + }, + { + "word": "oscuro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dark;obscure", + "romanization": "oscuro", + "example_sentence_native": "La stanza era molto oscura.", + "example_sentence_english": "The room was very dark.", + "pos": "adjective", + "word_frequency": 3980 + }, + { + "word": "palma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm (tree;hand)", + "romanization": "palma", + "example_sentence_native": "C'è una palma nel giardino.", + "example_sentence_english": "There is a palm tree in the garden.", + "pos": "noun", + "word_frequency": 3981 + }, + { + "word": "parallelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parallel", + "romanization": "parallelo", + "example_sentence_native": "Le due strade sono parallele.", + "example_sentence_english": "The two roads are parallel.", + "pos": "adjective", + "word_frequency": 3982 + }, + { + "word": "preda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prey", + "romanization": "preda", + "example_sentence_native": "Il leone caccia la sua preda.", + "example_sentence_english": "The lion hunts its prey.", + "pos": "noun", + "word_frequency": 3983 + }, + { + "word": "puzza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stench;bad smell", + "romanization": "puzza", + "example_sentence_native": "C'è una puzza terribile qui.", + "example_sentence_english": "There's a terrible stench here.", + "pos": "noun", + "word_frequency": 3984 + }, + { + "word": "ragionamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasoning", + "romanization": "ragionamento", + "example_sentence_native": "Il suo ragionamento era logico.", + "example_sentence_english": "His reasoning was logical.", + "pos": "noun", + "word_frequency": 3985 + }, + { + "word": "riguardante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concerning;regarding", + "romanization": "riguardante", + "example_sentence_native": "Ho una domanda riguardante il progetto.", + "example_sentence_english": "I have a question concerning the project.", + "pos": "adjective", + "word_frequency": 3986 + }, + { + "word": "riportato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reported;brought back", + "romanization": "riportato", + "example_sentence_native": "Il fatto è stato riportato dai giornali.", + "example_sentence_english": "The fact was reported by the newspapers.", + "pos": "adjective", + "word_frequency": 3987 + }, + { + "word": "salutare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to greet;to say hello", + "romanization": "salutare", + "example_sentence_native": "Voglio salutare i miei amici.", + "example_sentence_english": "I want to greet my friends.", + "pos": "verb", + "word_frequency": 3989 + }, + { + "word": "scuro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dark", + "romanization": "scuro", + "example_sentence_native": "Il cielo è scuro stasera.", + "example_sentence_english": "The sky is dark tonight.", + "pos": "adjective", + "word_frequency": 3990 + }, + { + "word": "slogan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slogan", + "romanization": "slogan", + "example_sentence_native": "Lo slogan della campagna era molto efficace.", + "example_sentence_english": "The campaign slogan was very effective.", + "pos": "noun", + "word_frequency": 3991 + }, + { + "word": "spia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spy", + "romanization": "spia", + "example_sentence_native": "La spia è stata scoperta.", + "example_sentence_english": "The spy was discovered.", + "pos": "noun", + "word_frequency": 3992 + }, + { + "word": "uniforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uniform", + "romanization": "uniforme", + "example_sentence_native": "Il colore della parete è uniforme.", + "example_sentence_english": "The color of the wall is uniform.", + "pos": "adjective", + "word_frequency": 3994 + }, + { + "word": "vasca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathtub;tank", + "romanization": "vasca", + "example_sentence_native": "Mi piace fare il bagno nella vasca.", + "example_sentence_english": "I like to take a bath in the bathtub.", + "pos": "noun", + "word_frequency": 3995 + }, + { + "word": "vedova", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widow", + "romanization": "vedova", + "example_sentence_native": "La vedova viveva da sola.", + "example_sentence_english": "The widow lived alone.", + "pos": "noun", + "word_frequency": 3996 + }, + { + "word": "vicepresidente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vice president", + "romanization": "vicepresidente", + "example_sentence_native": "Il vicepresidente ha tenuto un discorso.", + "example_sentence_english": "The vice president gave a speech.", + "pos": "noun", + "word_frequency": 3997 + }, + { + "word": "week", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "week", + "romanization": "week", + "example_sentence_native": "Ci vediamo la prossima week.", + "example_sentence_english": "See you next week.", + "pos": "noun", + "word_frequency": 3999 + }, + { + "word": "accessibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessible", + "romanization": "accessibile", + "example_sentence_native": "Il museo è completamente accessibile alle persone con disabilità.", + "example_sentence_english": "The museum is completely accessible to people with disabilities.", + "pos": "adjective", + "word_frequency": 4001 + }, + { + "word": "accorto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shrewd", + "romanization": "accorto", + "example_sentence_native": "È stato molto accorto nel gestire la situazione difficile.", + "example_sentence_english": "He was very shrewd in handling the difficult situation.", + "pos": "adjective", + "word_frequency": 4002 + }, + { + "word": "affrontato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faced", + "romanization": "affrontato", + "example_sentence_native": "Il problema è stato affrontato con coraggio.", + "example_sentence_english": "The problem was faced with courage.", + "pos": "adjective", + "word_frequency": 4003 + }, + { + "word": "armonia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmony", + "romanization": "armonia", + "example_sentence_native": "Vivono in perfetta armonia con la natura.", + "example_sentence_english": "They live in perfect harmony with nature.", + "pos": "noun", + "word_frequency": 4004 + }, + { + "word": "casuale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casual;random", + "romanization": "casuale", + "example_sentence_native": "È stato un incontro puramente casuale.", + "example_sentence_english": "It was a purely casual encounter.", + "pos": "adjective", + "word_frequency": 4006 + }, + { + "word": "celebrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to celebrate", + "romanization": "celebrare", + "example_sentence_native": "Vogliamo celebrare il suo compleanno con una grande festa.", + "example_sentence_english": "We want to celebrate his birthday with a big party.", + "pos": "verb", + "word_frequency": 4007 + }, + { + "word": "collina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hill", + "romanization": "collina", + "example_sentence_native": "La casa si trova su una piccola collina.", + "example_sentence_english": "The house is on a small hill.", + "pos": "noun", + "word_frequency": 4009 + }, + { + "word": "complessivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall", + "romanization": "complessivo", + "example_sentence_native": "Il costo complessivo del progetto è stato molto alto.", + "example_sentence_english": "The overall cost of the project was very high.", + "pos": "adjective", + "word_frequency": 4010 + }, + { + "word": "contrastare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to counteract", + "romanization": "contrastare", + "example_sentence_native": "Dobbiamo contrastare la diffusione di notizie false.", + "example_sentence_english": "We must counteract the spread of fake news.", + "pos": "verb", + "word_frequency": 4011 + }, + { + "word": "convento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convent", + "romanization": "convento", + "example_sentence_native": "Il vecchio convento è stato trasformato in un hotel.", + "example_sentence_english": "The old convent has been transformed into a hotel.", + "pos": "noun", + "word_frequency": 4012 + }, + { + "word": "criminalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminality;crime", + "romanization": "criminalità", + "example_sentence_native": "La criminalità è un problema serio in molte città.", + "example_sentence_english": "Crime is a serious problem in many cities.", + "pos": "noun", + "word_frequency": 4013 + }, + { + "word": "declino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decline", + "romanization": "declino", + "example_sentence_native": "L'azienda è in declino da diversi anni.", + "example_sentence_english": "The company has been in decline for several years.", + "pos": "noun", + "word_frequency": 4015 + }, + { + "word": "dinamico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dynamic", + "romanization": "dinamico", + "example_sentence_native": "È una persona molto dinamica e piena di energia.", + "example_sentence_english": "He is a very dynamic person full of energy.", + "pos": "adjective", + "word_frequency": 4017 + }, + { + "word": "disabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disabled person", + "romanization": "disabile", + "example_sentence_native": "L'accesso per i disabili è garantito.", + "example_sentence_english": "Access for disabled people is guaranteed.", + "pos": "noun", + "word_frequency": 4018 + }, + { + "word": "distante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "distant", + "romanization": "distante", + "example_sentence_native": "La stazione è distante da qui.", + "example_sentence_english": "The station is distant from here.", + "pos": "adjective", + "word_frequency": 4019 + }, + { + "word": "divenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "become", + "romanization": "divenuto", + "example_sentence_native": "È divenuto un esperto nel suo campo.", + "example_sentence_english": "He has become an expert in his field.", + "pos": "adjective", + "word_frequency": 4020 + }, + { + "word": "divinità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divinity;deity", + "romanization": "divinità", + "example_sentence_native": "Gli antichi romani adoravano molte divinità.", + "example_sentence_english": "The ancient Romans worshipped many deities.", + "pos": "noun", + "word_frequency": 4021 + }, + { + "word": "ennesimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "umpteenth", + "romanization": "ennesimo", + "example_sentence_native": "È l'ennesimo tentativo di risolvere il problema.", + "example_sentence_english": "It's the umpteenth attempt to solve the problem.", + "pos": "adjective", + "word_frequency": 4022 + }, + { + "word": "erede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heir", + "romanization": "erede", + "example_sentence_native": "È l'erede di una grande fortuna.", + "example_sentence_english": "He is the heir to a great fortune.", + "pos": "noun", + "word_frequency": 4023 + }, + { + "word": "etichetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "label;etiquette", + "romanization": "etichetta", + "example_sentence_native": "Leggi sempre l'etichetta prima di usare il prodotto.", + "example_sentence_english": "Always read the label before using the product.", + "pos": "noun", + "word_frequency": 4024 + }, + { + "word": "filosofo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "philosopher", + "romanization": "filosofo", + "example_sentence_native": "Platone fu un grande filosofo greco.", + "example_sentence_english": "Plato was a great Greek philosopher.", + "pos": "noun", + "word_frequency": 4025 + }, + { + "word": "foggia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "style;shape", + "romanization": "foggia", + "example_sentence_native": "L'edificio ha una foggia insolita.", + "example_sentence_english": "The building has an unusual shape.", + "pos": "noun", + "word_frequency": 4026 + }, + { + "word": "frequentare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attend", + "romanization": "frequentare", + "example_sentence_native": "Frequenta l'università di Roma.", + "example_sentence_english": "He attends the University of Rome.", + "pos": "verb", + "word_frequency": 4027 + }, + { + "word": "frequentato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequented;popular", + "romanization": "frequentato", + "example_sentence_native": "Questo bar è molto frequentato dai giovani.", + "example_sentence_english": "This bar is very popular with young people.", + "pos": "adjective", + "word_frequency": 4028 + }, + { + "word": "geografico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographical", + "romanization": "geografico", + "example_sentence_native": "Studiamo la posizione geografica dell'Italia.", + "example_sentence_english": "We are studying the geographical position of Italy.", + "pos": "adjective", + "word_frequency": 4029 + }, + { + "word": "governare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to govern", + "romanization": "governare", + "example_sentence_native": "Il nuovo partito governerà il paese.", + "example_sentence_english": "The new party will govern the country.", + "pos": "verb", + "word_frequency": 4030 + }, + { + "word": "horror", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horror", + "romanization": "horror", + "example_sentence_native": "Mi piacciono i film horror.", + "example_sentence_english": "I like horror movies.", + "pos": "noun", + "word_frequency": 4032 + }, + { + "word": "ingrediente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ingredient", + "romanization": "ingrediente", + "example_sentence_native": "Quali sono gli ingredienti di questa torta?", + "example_sentence_english": "What are the ingredients of this cake?", + "pos": "noun", + "word_frequency": 4033 + }, + { + "word": "legalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legality", + "romanization": "legalità", + "example_sentence_native": "Dobbiamo sempre rispettare la legalità.", + "example_sentence_english": "We must always respect legality.", + "pos": "noun", + "word_frequency": 4034 + }, + { + "word": "letto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "bed", + "romanization": "letto", + "example_sentence_native": "Vado a letto presto stasera.", + "example_sentence_english": "I'm going to bed early tonight.", + "pos": "noun", + "word_frequency": 4035 + }, + { + "word": "meccanico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mechanical", + "romanization": "meccanico", + "example_sentence_native": "Ha un problema meccanico con la macchina.", + "example_sentence_english": "He has a mechanical problem with the car.", + "pos": "adjective", + "word_frequency": 4037 + }, + { + "word": "nido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nest", + "romanization": "nido", + "example_sentence_native": "Gli uccelli costruiscono il loro nido sugli alberi.", + "example_sentence_english": "Birds build their nest in trees.", + "pos": "noun", + "word_frequency": 4038 + }, + { + "word": "notevolmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notably;considerably", + "romanization": "notevolmente", + "example_sentence_native": "La situazione è migliorata notevolmente.", + "example_sentence_english": "The situation has improved notably.", + "pos": "adverb", + "word_frequency": 4039 + }, + { + "word": "organizzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organized", + "romanization": "organizzato", + "example_sentence_native": "È una persona molto organizzata.", + "example_sentence_english": "He is a very organized person.", + "pos": "adjective", + "word_frequency": 4040 + }, + { + "word": "ossigeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oxygen", + "romanization": "ossigeno", + "example_sentence_native": "L'ossigeno è essenziale per la vita.", + "example_sentence_english": "Oxygen is essential for life.", + "pos": "noun", + "word_frequency": 4041 + }, + { + "word": "parametro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parameter", + "romanization": "parametro", + "example_sentence_native": "Dobbiamo considerare tutti i parametri.", + "example_sentence_english": "We need to consider all the parameters.", + "pos": "noun", + "word_frequency": 4042 + }, + { + "word": "portiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doorman;goalkeeper", + "romanization": "portiere", + "example_sentence_native": "Il portiere ha parato il rigore.", + "example_sentence_english": "The goalkeeper saved the penalty.", + "pos": "noun", + "word_frequency": 4043 + }, + { + "word": "porzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portion;serving", + "romanization": "porzione", + "example_sentence_native": "Mi dia una piccola porzione di pasta.", + "example_sentence_english": "Give me a small portion of pasta.", + "pos": "noun", + "word_frequency": 4044 + }, + { + "word": "postale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "postal", + "romanization": "postale", + "example_sentence_native": "Ho spedito il pacco all'ufficio postale.", + "example_sentence_english": "I sent the package to the postal office.", + "pos": "adjective", + "word_frequency": 4045 + }, + { + "word": "prestare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lend;to pay attention", + "romanization": "prestare", + "example_sentence_native": "Puoi prestarmi la tua penna?", + "example_sentence_english": "Can you lend me your pen?", + "pos": "verb", + "word_frequency": 4046 + }, + { + "word": "ragazzina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little girl;young girl", + "romanization": "ragazzina", + "example_sentence_native": "La ragazzina giocava nel parco.", + "example_sentence_english": "The little girl was playing in the park.", + "pos": "noun", + "word_frequency": 4047 + }, + { + "word": "razionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rational", + "romanization": "razionale", + "example_sentence_native": "È importante prendere decisioni razionali.", + "example_sentence_english": "It's important to make rational decisions.", + "pos": "adjective", + "word_frequency": 4049 + }, + { + "word": "rimosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "removed", + "romanization": "rimosso", + "example_sentence_native": "L'ostacolo è stato rimosso.", + "example_sentence_english": "The obstacle has been removed.", + "pos": "adjective", + "word_frequency": 4050 + }, + { + "word": "scelto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chosen;selected", + "romanization": "scelto", + "example_sentence_native": "Ha scelto il vestito più bello.", + "example_sentence_english": "She chose the most beautiful dress.", + "pos": "adjective", + "word_frequency": 4051 + }, + { + "word": "segnalato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reported;indicated", + "romanization": "segnalato", + "example_sentence_native": "Il problema è stato segnalato alle autorità.", + "example_sentence_english": "The problem has been reported to the authorities.", + "pos": "adjective", + "word_frequency": 4052 + }, + { + "word": "semplicità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "simplicity", + "romanization": "semplicità", + "example_sentence_native": "Apprezzo la semplicità del suo stile.", + "example_sentence_english": "I appreciate the simplicity of his style.", + "pos": "noun", + "word_frequency": 4053 + }, + { + "word": "sostenitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporter;advocate", + "romanization": "sostenitore", + "example_sentence_native": "È un forte sostenitore dei diritti umani.", + "example_sentence_english": "He is a strong supporter of human rights.", + "pos": "noun", + "word_frequency": 4054 + }, + { + "word": "store", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "store;shop", + "romanization": "store", + "example_sentence_native": "Vado allo store per comprare un nuovo telefono.", + "example_sentence_english": "I'm going to the store to buy a new phone.", + "pos": "noun", + "word_frequency": 4055 + }, + { + "word": "suggerimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suggestion;tip", + "romanization": "suggerimento", + "example_sentence_native": "Hai qualche suggerimento per il viaggio?", + "example_sentence_english": "Do you have any suggestions for the trip?", + "pos": "noun", + "word_frequency": 4056 + }, + { + "word": "tranquillamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calmly;quietly;peacefully", + "romanization": "tranquillamente", + "example_sentence_native": "Puoi parlare tranquillamente, nessuno ti sente.", + "example_sentence_english": "You can speak calmly, no one can hear you.", + "pos": "adverb", + "word_frequency": 4057 + }, + { + "word": "visitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visited", + "romanization": "visitato", + "example_sentence_native": "Ho visitato molti musei a Roma.", + "example_sentence_english": "I visited many museums in Rome.", + "pos": "adjective", + "word_frequency": 4059 + }, + { + "word": "affidato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrusted;assigned", + "romanization": "affidato", + "example_sentence_native": "Il compito è stato affidato a lui.", + "example_sentence_english": "The task was entrusted to him.", + "pos": "adjective", + "word_frequency": 4060 + }, + { + "word": "aggressione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggression;assault", + "romanization": "aggressione", + "example_sentence_native": "La polizia sta indagando sull'aggressione.", + "example_sentence_english": "The police are investigating the assault.", + "pos": "noun", + "word_frequency": 4061 + }, + { + "word": "andamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trend;progress;course", + "romanization": "andamento", + "example_sentence_native": "L'andamento del mercato è positivo.", + "example_sentence_english": "The market trend is positive.", + "pos": "noun", + "word_frequency": 4063 + }, + { + "word": "aspettato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expected;awaited", + "romanization": "aspettato", + "example_sentence_native": "Il risultato è stato quello aspettato.", + "example_sentence_english": "The result was the expected one.", + "pos": "adjective", + "word_frequency": 4065 + }, + { + "word": "assicurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insured;guaranteed", + "romanization": "assicurato", + "example_sentence_native": "Il pacco è assicurato contro i danni.", + "example_sentence_english": "The package is insured against damage.", + "pos": "adjective", + "word_frequency": 4066 + }, + { + "word": "autostrada", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "highway;motorway", + "romanization": "autostrada", + "example_sentence_native": "Stiamo guidando sull'autostrada.", + "example_sentence_english": "We are driving on the highway.", + "pos": "noun", + "word_frequency": 4067 + }, + { + "word": "babbo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dad;father", + "romanization": "babbo", + "example_sentence_native": "Il mio babbo mi ha insegnato a nuotare.", + "example_sentence_english": "My dad taught me how to swim.", + "pos": "noun", + "word_frequency": 4068 + }, + { + "word": "borghese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bourgeois;middle-class;civilian", + "romanization": "borghese", + "example_sentence_native": "Ha uno stile di vita borghese.", + "example_sentence_english": "He has a bourgeois lifestyle.", + "pos": "adjective", + "word_frequency": 4070 + }, + { + "word": "bugia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lie", + "romanization": "bugia", + "example_sentence_native": "Non dire bugie.", + "example_sentence_english": "Don't tell lies.", + "pos": "noun", + "word_frequency": 4071 + }, + { + "word": "caduto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fallen", + "romanization": "caduto", + "example_sentence_native": "L'albero è caduto a causa del vento.", + "example_sentence_english": "The tree has fallen due to the wind.", + "pos": "adjective", + "word_frequency": 4072 + }, + { + "word": "cagare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shit;to not care about (vulgar)", + "romanization": "cagare", + "example_sentence_native": "Non mi caga nessuno.", + "example_sentence_english": "Nobody gives a shit about me.", + "pos": "verb", + "word_frequency": 4073 + }, + { + "word": "calciatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "football (soccer) player", + "romanization": "calciatore", + "example_sentence_native": "Il calciatore ha segnato un gol.", + "example_sentence_english": "The football player scored a goal.", + "pos": "noun", + "word_frequency": 4074 + }, + { + "word": "centesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cent;hundredth", + "romanization": "centesimo", + "example_sentence_native": "Non ho un centesimo in tasca.", + "example_sentence_english": "I don't have a cent in my pocket.", + "pos": "noun", + "word_frequency": 4075 + }, + { + "word": "coerenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherence;consistency", + "romanization": "coerenza", + "example_sentence_native": "La coerenza è importante in un argomento.", + "example_sentence_english": "Consistency is important in an argument.", + "pos": "noun", + "word_frequency": 4077 + }, + { + "word": "congratulazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congratulation", + "romanization": "congratulazione", + "example_sentence_native": "Ti faccio le mie congratulazioni per il tuo successo.", + "example_sentence_english": "I offer you my congratulations for your success.", + "pos": "noun", + "word_frequency": 4079 + }, + { + "word": "conquistato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conquered", + "romanization": "conquistato", + "example_sentence_native": "Il territorio conquistato era vasto.", + "example_sentence_english": "The conquered territory was vast.", + "pos": "adjective", + "word_frequency": 4080 + }, + { + "word": "consigliato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommended", + "romanization": "consigliato", + "example_sentence_native": "Questo libro è molto consigliato.", + "example_sentence_english": "This book is highly recommended.", + "pos": "adjective", + "word_frequency": 4081 + }, + { + "word": "consulenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultancy", + "romanization": "consulenza", + "example_sentence_native": "Ho bisogno di una consulenza legale.", + "example_sentence_english": "I need legal advice.", + "pos": "noun", + "word_frequency": 4082 + }, + { + "word": "contea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "county", + "romanization": "contea", + "example_sentence_native": "Vivono in una contea rurale.", + "example_sentence_english": "They live in a rural county.", + "pos": "noun", + "word_frequency": 4083 + }, + { + "word": "creato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "created", + "romanization": "creato", + "example_sentence_native": "Il mondo creato è meraviglioso.", + "example_sentence_english": "The created world is wonderful.", + "pos": "adjective", + "word_frequency": 4084 + }, + { + "word": "crudele", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruel", + "romanization": "crudele", + "example_sentence_native": "È stato un atto crudele.", + "example_sentence_english": "It was a cruel act.", + "pos": "adjective", + "word_frequency": 4085 + }, + { + "word": "delusione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointment", + "romanization": "delusione", + "example_sentence_native": "La sua assenza è stata una grande delusione.", + "example_sentence_english": "His absence was a great disappointment.", + "pos": "noun", + "word_frequency": 4088 + }, + { + "word": "dipinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "painting", + "romanization": "dipinto", + "example_sentence_native": "Il dipinto è appeso al muro.", + "example_sentence_english": "The painting is hanging on the wall.", + "pos": "noun", + "word_frequency": 4089 + }, + { + "word": "discriminazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrimination", + "romanization": "discriminazione", + "example_sentence_native": "Dobbiamo combattere ogni forma di discriminazione.", + "example_sentence_english": "We must fight all forms of discrimination.", + "pos": "noun", + "word_frequency": 4090 + }, + { + "word": "distinzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinction", + "romanization": "distinzione", + "example_sentence_native": "C'è una chiara distinzione tra i due concetti.", + "example_sentence_english": "There is a clear distinction between the two concepts.", + "pos": "noun", + "word_frequency": 4091 + }, + { + "word": "dolcezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweetness", + "romanization": "dolcezza", + "example_sentence_native": "La sua voce era piena di dolcezza.", + "example_sentence_english": "Her voice was full of sweetness.", + "pos": "noun", + "word_frequency": 4092 + }, + { + "word": "eccesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excess", + "romanization": "eccesso", + "example_sentence_native": "L'eccesso di zucchero fa male alla salute.", + "example_sentence_english": "Excess sugar is bad for your health.", + "pos": "noun", + "word_frequency": 4093 + }, + { + "word": "edilizia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building industry", + "romanization": "edilizia", + "example_sentence_native": "Il settore dell'edilizia è in crescita.", + "example_sentence_english": "The construction sector is growing.", + "pos": "noun", + "word_frequency": 4094 + }, + { + "word": "editrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publisher", + "romanization": "editrice", + "example_sentence_native": "Ha fondato una nuova casa editrice.", + "example_sentence_english": "She founded a new publishing house.", + "pos": "noun", + "word_frequency": 4095 + }, + { + "word": "eterno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eternal", + "romanization": "eterno", + "example_sentence_native": "L'amore vero è eterno.", + "example_sentence_english": "True love is eternal.", + "pos": "adjective", + "word_frequency": 4096 + }, + { + "word": "farcela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make it", + "romanization": "farcela", + "example_sentence_native": "Non so se ce la farò in tempo.", + "example_sentence_english": "I don't know if I'll make it in time.", + "pos": "verb", + "word_frequency": 4097 + }, + { + "word": "garantito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guaranteed", + "romanization": "garantito", + "example_sentence_native": "La qualità è garantita.", + "example_sentence_english": "The quality is guaranteed.", + "pos": "adjective", + "word_frequency": 4100 + }, + { + "word": "geniale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brilliant", + "romanization": "geniale", + "example_sentence_native": "È stata un'idea geniale.", + "example_sentence_english": "It was a brilliant idea.", + "pos": "adjective", + "word_frequency": 4101 + }, + { + "word": "geografia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "geography", + "romanization": "geografia", + "example_sentence_native": "Studiamo la geografia del mondo.", + "example_sentence_english": "We study world geography.", + "pos": "noun", + "word_frequency": 4102 + }, + { + "word": "identificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identification", + "romanization": "identificazione", + "example_sentence_native": "È richiesta un'identificazione all'ingresso.", + "example_sentence_english": "Identification is required at the entrance.", + "pos": "noun", + "word_frequency": 4103 + }, + { + "word": "incaricato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in charge", + "romanization": "incaricato", + "example_sentence_native": "È l'ingegnere incaricato del progetto.", + "example_sentence_english": "He is the engineer in charge of the project.", + "pos": "adjective", + "word_frequency": 4104 + }, + { + "word": "invio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sending", + "romanization": "invio", + "example_sentence_native": "L'invio del pacco è previsto per domani.", + "example_sentence_english": "The sending of the package is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 4105 + }, + { + "word": "macchia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stain", + "romanization": "macchia", + "example_sentence_native": "C'è una macchia di caffè sulla camicia.", + "example_sentence_english": "There's a coffee stain on the shirt.", + "pos": "noun", + "word_frequency": 4108 + }, + { + "word": "maiale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pig", + "romanization": "maiale", + "example_sentence_native": "Il maiale è un animale da fattoria.", + "example_sentence_english": "The pig is a farm animal.", + "pos": "noun", + "word_frequency": 4109 + }, + { + "word": "manifestare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manifest", + "romanization": "manifestare", + "example_sentence_native": "Hanno manifestato contro le nuove leggi.", + "example_sentence_english": "They demonstrated against the new laws.", + "pos": "verb", + "word_frequency": 4110 + }, + { + "word": "marchese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marquis", + "romanization": "marchese", + "example_sentence_native": "Il marchese viveva in un grande castello.", + "example_sentence_english": "The marquis lived in a large castle.", + "pos": "noun", + "word_frequency": 4111 + }, + { + "word": "medievale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medieval", + "romanization": "medievale", + "example_sentence_native": "Hanno visitato un castello medievale.", + "example_sentence_english": "They visited a medieval castle.", + "pos": "adjective", + "word_frequency": 4112 + }, + { + "word": "narrativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiction", + "romanization": "narrativa", + "example_sentence_native": "Leggo molta narrativa contemporanea.", + "example_sentence_english": "I read a lot of contemporary fiction.", + "pos": "noun", + "word_frequency": 4113 + }, + { + "word": "noia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boredom", + "romanization": "noia", + "example_sentence_native": "La lezione era piena di noia.", + "example_sentence_english": "The lesson was full of boredom.", + "pos": "noun", + "word_frequency": 4114 + }, + { + "word": "omosessuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homosexual", + "romanization": "omosessuale", + "example_sentence_native": "La comunità omosessuale ha lottato per i suoi diritti.", + "example_sentence_english": "The homosexual community fought for its rights.", + "pos": "noun", + "word_frequency": 4115 + }, + { + "word": "pacco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "package", + "romanization": "pacco", + "example_sentence_native": "Ho ricevuto un pacco dalla posta.", + "example_sentence_english": "I received a package from the post office.", + "pos": "noun", + "word_frequency": 4116 + }, + { + "word": "pallone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ball", + "romanization": "pallone", + "example_sentence_native": "I bambini giocano con il pallone.", + "example_sentence_english": "The children are playing with the ball.", + "pos": "noun", + "word_frequency": 4117 + }, + { + "word": "pochissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very little", + "romanization": "pochissimo", + "example_sentence_native": "Ho pochissimo tempo per finire.", + "example_sentence_english": "I have very little time to finish.", + "pos": "adverb", + "word_frequency": 4118 + }, + { + "word": "portafoglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wallet", + "romanization": "portafoglio", + "example_sentence_native": "Ho perso il mio portafoglio.", + "example_sentence_english": "I lost my wallet.", + "pos": "noun", + "word_frequency": 4119 + }, + { + "word": "provocare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provoke;to cause", + "romanization": "provocare", + "example_sentence_native": "La sua risposta ha provocato una discussione.", + "example_sentence_english": "His answer provoked a discussion.", + "pos": "verb", + "word_frequency": 4120 + }, + { + "word": "regalato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gifted;given as a gift", + "romanization": "regalato", + "example_sentence_native": "Questo orologio mi è stato regalato per il mio compleanno.", + "example_sentence_english": "This watch was given to me as a gift for my birthday.", + "pos": "adjective", + "word_frequency": 4121 + }, + { + "word": "ricostruire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconstruct;to rebuild", + "romanization": "ricostruire", + "example_sentence_native": "Dobbiamo ricostruire la fiducia dopo questo incidente.", + "example_sentence_english": "We must rebuild trust after this incident.", + "pos": "verb", + "word_frequency": 4122 + }, + { + "word": "rimozione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "removal", + "romanization": "rimozione", + "example_sentence_native": "La rimozione del vecchio albero è stata difficile.", + "example_sentence_english": "The removal of the old tree was difficult.", + "pos": "noun", + "word_frequency": 4123 + }, + { + "word": "rinuncia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renunciation;waiver", + "romanization": "rinuncia", + "example_sentence_native": "La sua rinuncia al ruolo ha sorpreso tutti.", + "example_sentence_english": "His renunciation of the role surprised everyone.", + "pos": "noun", + "word_frequency": 4124 + }, + { + "word": "serra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greenhouse", + "romanization": "serra", + "example_sentence_native": "Coltiviamo pomodori nella nostra serra.", + "example_sentence_english": "We grow tomatoes in our greenhouse.", + "pos": "noun", + "word_frequency": 4125 + }, + { + "word": "simpatia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sympathy;likeability;fondness", + "romanization": "simpatia", + "example_sentence_native": "Ho subito provato simpatia per lui.", + "example_sentence_english": "I immediately felt a fondness for him.", + "pos": "noun", + "word_frequency": 4127 + }, + { + "word": "sparato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shot (as in;having been shot)", + "romanization": "sparato", + "example_sentence_native": "L'uomo è stato trovato sparato in un vicolo.", + "example_sentence_english": "The man was found shot in an alley.", + "pos": "adjective", + "word_frequency": 4129 + }, + { + "word": "spaziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spatial;space (adj.)", + "romanization": "spaziale", + "example_sentence_native": "Hanno lanciato una nuova missione spaziale.", + "example_sentence_english": "They launched a new space mission.", + "pos": "adjective", + "word_frequency": 4130 + }, + { + "word": "sperimentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experimental", + "romanization": "sperimentale", + "example_sentence_native": "Stanno conducendo uno studio sperimentale.", + "example_sentence_english": "They are conducting an experimental study.", + "pos": "adjective", + "word_frequency": 4131 + }, + { + "word": "spettacolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spectacular", + "romanization": "spettacolare", + "example_sentence_native": "Il tramonto era davvero spettacolare.", + "example_sentence_english": "The sunset was truly spectacular.", + "pos": "adjective", + "word_frequency": 4132 + }, + { + "word": "stand", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stand;booth", + "romanization": "stand", + "example_sentence_native": "Abbiamo visitato lo stand della nostra azienda alla fiera.", + "example_sentence_english": "We visited our company's stand at the fair.", + "pos": "noun", + "word_frequency": 4133 + }, + { + "word": "strato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layer;stratum", + "romanization": "strato", + "example_sentence_native": "C'era uno spesso strato di polvere sui mobili.", + "example_sentence_english": "There was a thick layer of dust on the furniture.", + "pos": "noun", + "word_frequency": 4134 + }, + { + "word": "succo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "juice", + "romanization": "succo", + "example_sentence_native": "Vorrei un bicchiere di succo d'arancia.", + "example_sentence_english": "I would like a glass of orange juice.", + "pos": "noun", + "word_frequency": 4135 + }, + { + "word": "supermercato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "supermarket", + "romanization": "supermercato", + "example_sentence_native": "Vado al supermercato a comprare il pane.", + "example_sentence_english": "I'm going to the supermarket to buy bread.", + "pos": "noun", + "word_frequency": 4136 + }, + { + "word": "svariato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "various;several", + "romanization": "svariato", + "example_sentence_native": "Ci sono svariati motivi per cui non posso venire.", + "example_sentence_english": "There are various reasons why I cannot come.", + "pos": "adjective", + "word_frequency": 4137 + }, + { + "word": "tacere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be silent;to keep quiet", + "romanization": "tacere", + "example_sentence_native": "Per favore, taci un momento.", + "example_sentence_english": "Please, be silent for a moment.", + "pos": "verb", + "word_frequency": 4138 + }, + { + "word": "testata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newspaper head;cylinder head;headbutt", + "romanization": "testata", + "example_sentence_native": "Ho letto la notizia sulla testata del giornale.", + "example_sentence_english": "I read the news on the newspaper's head.", + "pos": "noun", + "word_frequency": 4139 + }, + { + "word": "udienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audience;hearing (legal)", + "romanization": "udienza", + "example_sentence_native": "L'udienza è stata fissata per la prossima settimana.", + "example_sentence_english": "The hearing has been set for next week.", + "pos": "noun", + "word_frequency": 4140 + }, + { + "word": "urgenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urgency", + "romanization": "urgenza", + "example_sentence_native": "È una questione di massima urgenza.", + "example_sentence_english": "It's a matter of utmost urgency.", + "pos": "noun", + "word_frequency": 4141 + }, + { + "word": "valuta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "currency", + "romanization": "valuta", + "example_sentence_native": "Qual è la valuta locale in questo paese?", + "example_sentence_english": "What is the local currency in this country?", + "pos": "noun", + "word_frequency": 4142 + }, + { + "word": "vertice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summit;peak;vertex", + "romanization": "vertice", + "example_sentence_native": "I leader si incontreranno al vertice.", + "example_sentence_english": "The leaders will meet at the summit.", + "pos": "noun", + "word_frequency": 4143 + }, + { + "word": "viaggiatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "traveler;passenger", + "romanization": "viaggiatore", + "example_sentence_native": "Il viaggiatore ha perso il suo bagaglio.", + "example_sentence_english": "The traveler lost his luggage.", + "pos": "noun", + "word_frequency": 4144 + }, + { + "word": "vigilia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eve;vigil", + "romanization": "vigilia", + "example_sentence_native": "La vigilia di Natale è un giorno speciale.", + "example_sentence_english": "Christmas Eve is a special day.", + "pos": "noun", + "word_frequency": 4145 + }, + { + "word": "aborto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abortion;miscarriage", + "romanization": "aborto", + "example_sentence_native": "La legge sull'aborto è un tema molto dibattuto.", + "example_sentence_english": "The abortion law is a highly debated topic.", + "pos": "noun", + "word_frequency": 4146 + }, + { + "word": "amministrazioni", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administrations", + "romanization": "amministrazioni", + "example_sentence_native": "Le amministrazioni locali hanno un ruolo importante.", + "example_sentence_english": "Local administrations have an important role.", + "pos": "noun", + "word_frequency": 4150 + }, + { + "word": "ammissione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admission;confession", + "romanization": "ammissione", + "example_sentence_native": "La sua ammissione di colpa ha sorpreso tutti.", + "example_sentence_english": "His admission of guilt surprised everyone.", + "pos": "noun", + "word_frequency": 4151 + }, + { + "word": "analizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to analyze", + "romanization": "analizzare", + "example_sentence_native": "Dobbiamo analizzare i dati con attenzione.", + "example_sentence_english": "We need to analyze the data carefully.", + "pos": "verb", + "word_frequency": 4152 + }, + { + "word": "andavano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "they were going;they used to go", + "romanization": "andavano", + "example_sentence_native": "Loro andavano al mare ogni estate.", + "example_sentence_english": "They used to go to the sea every summer.", + "pos": "verb", + "word_frequency": 4153 + }, + { + "word": "appassionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passionate;enthusiastic", + "romanization": "appassionato", + "example_sentence_native": "È un appassionato di musica classica.", + "example_sentence_english": "He is passionate about classical music.", + "pos": "adjective", + "word_frequency": 4154 + }, + { + "word": "attirare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attract;to draw", + "romanization": "attirare", + "example_sentence_native": "Il nuovo negozio attira molti clienti.", + "example_sentence_english": "The new shop attracts many customers.", + "pos": "verb", + "word_frequency": 4155 + }, + { + "word": "attraversare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to cross;to go through", + "romanization": "attraversare", + "example_sentence_native": "Dobbiamo attraversare la strada con cautela.", + "example_sentence_english": "We must cross the street carefully.", + "pos": "verb", + "word_frequency": 4156 + }, + { + "word": "attualità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "current events;topicality", + "romanization": "attualità", + "example_sentence_native": "Seguo sempre le notizie di attualità.", + "example_sentence_english": "I always follow current events news.", + "pos": "noun", + "word_frequency": 4157 + }, + { + "word": "basilica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basilica", + "romanization": "basilica", + "example_sentence_native": "La Basilica di San Pietro è un capolavoro.", + "example_sentence_english": "St. Peter's Basilica is a masterpiece.", + "pos": "noun", + "word_frequency": 4158 + }, + { + "word": "catturato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "captured;caught", + "romanization": "catturato", + "example_sentence_native": "Il ladro è stato catturato dalla polizia.", + "example_sentence_english": "The thief was captured by the police.", + "pos": "adjective", + "word_frequency": 4159 + }, + { + "word": "combattuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fought;contested", + "romanization": "combattuto", + "example_sentence_native": "È stata una partita molto combattuta fino all'ultimo minuto.", + "example_sentence_english": "It was a very contested match until the last minute.", + "pos": "adjective", + "word_frequency": 4161 + }, + { + "word": "complessità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complexity", + "romanization": "complessità", + "example_sentence_native": "La complessità del problema richiede un'analisi approfondita.", + "example_sentence_english": "The complexity of the problem requires a thorough analysis.", + "pos": "noun", + "word_frequency": 4162 + }, + { + "word": "complice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accomplice", + "romanization": "complice", + "example_sentence_native": "Il ladro è stato arrestato insieme al suo complice.", + "example_sentence_english": "The thief was arrested along with his accomplice.", + "pos": "noun", + "word_frequency": 4163 + }, + { + "word": "debolezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weakness", + "romanization": "debolezza", + "example_sentence_native": "La sua debolezza è la paura di fallire.", + "example_sentence_english": "His weakness is the fear of failure.", + "pos": "noun", + "word_frequency": 4165 + }, + { + "word": "efficiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "efficient", + "romanization": "efficiente", + "example_sentence_native": "Dobbiamo trovare un modo più efficiente per lavorare.", + "example_sentence_english": "We need to find a more efficient way to work.", + "pos": "adjective", + "word_frequency": 4168 + }, + { + "word": "estendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to extend", + "romanization": "estendere", + "example_sentence_native": "Vorrei estendere il mio soggiorno di un giorno.", + "example_sentence_english": "I would like to extend my stay by one day.", + "pos": "verb", + "word_frequency": 4169 + }, + { + "word": "estetica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aesthetics", + "romanization": "estetica", + "example_sentence_native": "L'estetica di questo edificio è molto moderna.", + "example_sentence_english": "The aesthetics of this building are very modern.", + "pos": "noun", + "word_frequency": 4170 + }, + { + "word": "fango", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mud", + "romanization": "fango", + "example_sentence_native": "Dopo la pioggia, la strada era piena di fango.", + "example_sentence_english": "After the rain, the road was full of mud.", + "pos": "noun", + "word_frequency": 4171 + }, + { + "word": "favola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fable;fairy tale", + "romanization": "favola", + "example_sentence_native": "Mia nonna mi leggeva una favola ogni sera.", + "example_sentence_english": "My grandmother read me a fairy tale every night.", + "pos": "noun", + "word_frequency": 4172 + }, + { + "word": "ferrovia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway", + "romanization": "ferrovia", + "example_sentence_native": "La nuova ferrovia collegherà le due città.", + "example_sentence_english": "The new railway will connect the two cities.", + "pos": "noun", + "word_frequency": 4173 + }, + { + "word": "fibra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiber", + "romanization": "fibra", + "example_sentence_native": "Questo tessuto è fatto di fibra naturale.", + "example_sentence_english": "This fabric is made of natural fiber.", + "pos": "noun", + "word_frequency": 4174 + }, + { + "word": "fidato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trusted;reliable", + "romanization": "fidato", + "example_sentence_native": "È un amico fidato su cui puoi sempre contare.", + "example_sentence_english": "He is a trusted friend you can always count on.", + "pos": "adjective", + "word_frequency": 4175 + }, + { + "word": "filmato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footage;video clip", + "romanization": "filmato", + "example_sentence_native": "Abbiamo visto un filmato interessante sull'evento.", + "example_sentence_english": "We saw an interesting video clip about the event.", + "pos": "noun", + "word_frequency": 4176 + }, + { + "word": "fungo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mushroom;fungus", + "romanization": "fungo", + "example_sentence_native": "Abbiamo raccolto funghi nel bosco.", + "example_sentence_english": "We collected mushrooms in the woods.", + "pos": "noun", + "word_frequency": 4177 + }, + { + "word": "incredibilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incredibly", + "romanization": "incredibilmente", + "example_sentence_native": "Il panorama era incredibilmente bello.", + "example_sentence_english": "The view was incredibly beautiful.", + "pos": "adverb", + "word_frequency": 4181 + }, + { + "word": "insetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "insect", + "romanization": "insetto", + "example_sentence_native": "C'è un insetto sul muro.", + "example_sentence_english": "There's an insect on the wall.", + "pos": "noun", + "word_frequency": 4182 + }, + { + "word": "kit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kit", + "romanization": "kit", + "example_sentence_native": "Ho comprato un kit di pronto soccorso per l'auto.", + "example_sentence_english": "I bought a first aid kit for the car.", + "pos": "noun", + "word_frequency": 4184 + }, + { + "word": "larghezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "width", + "romanization": "larghezza", + "example_sentence_native": "La larghezza della strada è di dieci metri.", + "example_sentence_english": "The width of the road is ten meters.", + "pos": "noun", + "word_frequency": 4185 + }, + { + "word": "laureato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graduated;graduate (person)", + "romanization": "laureato", + "example_sentence_native": "È un ingegnere laureato all'Università di Bologna.", + "example_sentence_english": "He is an engineer graduated from the University of Bologna.", + "pos": "adjective", + "word_frequency": 4186 + }, + { + "word": "legalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legally", + "romanization": "legalmente", + "example_sentence_native": "Non è legalmente possibile fare questo.", + "example_sentence_english": "It is not legally possible to do this.", + "pos": "adverb", + "word_frequency": 4187 + }, + { + "word": "magazine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magazine", + "romanization": "magazine", + "example_sentence_native": "Ho letto un articolo interessante su un magazine.", + "example_sentence_english": "I read an interesting article in a magazine.", + "pos": "noun", + "word_frequency": 4189 + }, + { + "word": "moro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Moor;dark-haired person", + "romanization": "moro", + "example_sentence_native": "Il moro di Venezia è un personaggio storico.", + "example_sentence_english": "The Moor of Venice is a historical character.", + "pos": "noun", + "word_frequency": 4191 + }, + { + "word": "mortale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortal;deadly", + "romanization": "mortale", + "example_sentence_native": "È una malattia mortale se non curata in tempo.", + "example_sentence_english": "It is a deadly disease if not treated in time.", + "pos": "adjective", + "word_frequency": 4192 + }, + { + "word": "nazista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Nazi", + "romanization": "nazista", + "example_sentence_native": "Il regime nazista ha causato milioni di morti.", + "example_sentence_english": "The Nazi regime caused millions of deaths.", + "pos": "noun", + "word_frequency": 4193 + }, + { + "word": "pessimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrible;very bad", + "romanization": "pessimo", + "example_sentence_native": "Il servizio in quel ristorante era pessimo.", + "example_sentence_english": "The service in that restaurant was terrible.", + "pos": "adjective", + "word_frequency": 4198 + }, + { + "word": "pochino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "a little bit", + "romanization": "pochino", + "example_sentence_native": "Aspetta un pochino, arrivo subito.", + "example_sentence_english": "Wait a little bit, I'll be right there.", + "pos": "adverb", + "word_frequency": 4199 + }, + { + "word": "prescrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prescription;statute of limitations", + "romanization": "prescrizione", + "example_sentence_native": "La prescrizione del reato è scaduta.", + "example_sentence_english": "The statute of limitations for the crime has expired.", + "pos": "noun", + "word_frequency": 4200 + }, + { + "word": "progettato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designed;planned", + "romanization": "progettato", + "example_sentence_native": "Il nuovo edificio è stato progettato per essere ecologico.", + "example_sentence_english": "The new building was designed to be eco-friendly.", + "pos": "adjective", + "word_frequency": 4201 + }, + { + "word": "promosso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "promoted;passed (an exam)", + "romanization": "promosso", + "example_sentence_native": "Sono stato promosso al grado superiore.", + "example_sentence_english": "I was promoted to the next level.", + "pos": "adjective", + "word_frequency": 4202 + }, + { + "word": "psicologico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "psychological", + "romanization": "psicologico", + "example_sentence_native": "Ha avuto un forte impatto psicologico su di lui.", + "example_sentence_english": "It had a strong psychological impact on him.", + "pos": "adjective", + "word_frequency": 4203 + }, + { + "word": "risata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laugh;laughter", + "romanization": "risata", + "example_sentence_native": "La sua risata riempiva la stanza.", + "example_sentence_english": "His laughter filled the room.", + "pos": "noun", + "word_frequency": 4204 + }, + { + "word": "riunito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reunited;gathered", + "romanization": "riunito", + "example_sentence_native": "La famiglia si è riunita per le vacanze.", + "example_sentence_english": "The family reunited for the holidays.", + "pos": "adjective", + "word_frequency": 4205 + }, + { + "word": "scarico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhaust;drain;discharge", + "romanization": "scarico", + "example_sentence_native": "C'è un problema con lo scarico del lavandino.", + "example_sentence_english": "There's a problem with the sink drain.", + "pos": "noun", + "word_frequency": 4206 + }, + { + "word": "sci", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ski;skiing", + "romanization": "sci", + "example_sentence_native": "Andiamo a fare sci in montagna questo inverno.", + "example_sentence_english": "We're going skiing in the mountains this winter.", + "pos": "noun", + "word_frequency": 4207 + }, + { + "word": "secondario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "secondary;minor", + "romanization": "secondario", + "example_sentence_native": "Questo è un problema secondario, non la priorità.", + "example_sentence_english": "This is a secondary problem, not the priority.", + "pos": "adjective", + "word_frequency": 4208 + }, + { + "word": "segnalazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "report;signal;notification", + "romanization": "segnalazione", + "example_sentence_native": "Abbiamo ricevuto una segnalazione di guasto.", + "example_sentence_english": "We received a report of a malfunction.", + "pos": "noun", + "word_frequency": 4209 + }, + { + "word": "sequenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sequence", + "romanization": "sequenza", + "example_sentence_native": "La sequenza degli eventi è stata confusa.", + "example_sentence_english": "The sequence of events was confusing.", + "pos": "noun", + "word_frequency": 4210 + }, + { + "word": "sosta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stop;halt;break", + "romanization": "sosta", + "example_sentence_native": "Abbiamo fatto una breve sosta per il caffè.", + "example_sentence_english": "We made a brief stop for coffee.", + "pos": "noun", + "word_frequency": 4211 + }, + { + "word": "stabilimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "establishment;factory;plant", + "romanization": "stabilimento", + "example_sentence_native": "Lavora in uno stabilimento di produzione.", + "example_sentence_english": "He works in a production plant.", + "pos": "noun", + "word_frequency": 4212 + }, + { + "word": "tipologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typology;type;kind", + "romanization": "tipologia", + "example_sentence_native": "Esistono diverse tipologie di formaggio in Italia.", + "example_sentence_english": "There are different types of cheese in Italy.", + "pos": "noun", + "word_frequency": 4214 + }, + { + "word": "toro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bull", + "romanization": "toro", + "example_sentence_native": "Il toro pascolava nel campo.", + "example_sentence_english": "The bull was grazing in the field.", + "pos": "noun", + "word_frequency": 4215 + }, + { + "word": "transizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transition", + "romanization": "transizione", + "example_sentence_native": "Stiamo vivendo un periodo di transizione economica.", + "example_sentence_english": "We are experiencing a period of economic transition.", + "pos": "noun", + "word_frequency": 4216 + }, + { + "word": "tutt'altro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quite the opposite;completely different", + "romanization": "tutt'altro", + "example_sentence_native": "Pensavo fosse facile, ma è tutt'altro.", + "example_sentence_english": "I thought it was easy, but it's quite the opposite.", + "pos": "adjective", + "word_frequency": 4217 + }, + { + "word": "verificato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verified;checked", + "romanization": "verificato", + "example_sentence_native": "Le informazioni sono state verificate.", + "example_sentence_english": "The information has been verified.", + "pos": "adjective", + "word_frequency": 4218 + }, + { + "word": "wifi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Wi-Fi", + "romanization": "Wi-Fi", + "example_sentence_native": "C'è il Wi-Fi gratuito in questo bar?", + "example_sentence_english": "Is there free Wi-Fi in this cafe?", + "pos": "noun", + "word_frequency": 4219 + }, + { + "word": "adesione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adhesion;membership;compliance", + "romanization": "adesione", + "example_sentence_native": "L'adesione all'accordo è stata unanime.", + "example_sentence_english": "Adhesion to the agreement was unanimous.", + "pos": "noun", + "word_frequency": 4221 + }, + { + "word": "anteprima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preview;premiere", + "romanization": "anteprima", + "example_sentence_native": "Abbiamo visto l'anteprima del nuovo film.", + "example_sentence_english": "We saw the preview of the new movie.", + "pos": "noun", + "word_frequency": 4222 + }, + { + "word": "approfondire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deepen;to elaborate on;to explore further", + "romanization": "approfondire", + "example_sentence_native": "Dobbiamo approfondire questo argomento.", + "example_sentence_english": "We need to deepen this topic.", + "pos": "verb", + "word_frequency": 4223 + }, + { + "word": "architetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "architect", + "romanization": "architetto", + "example_sentence_native": "Mio fratello è un architetto.", + "example_sentence_english": "My brother is an architect.", + "pos": "noun", + "word_frequency": 4224 + }, + { + "word": "assassino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "murderer;assassin", + "romanization": "assassino", + "example_sentence_native": "La polizia sta cercando l'assassino.", + "example_sentence_english": "The police are looking for the murderer.", + "pos": "noun", + "word_frequency": 4225 + }, + { + "word": "asse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "axis;board;plank", + "romanization": "asse", + "example_sentence_native": "L'asse terrestre è inclinato.", + "example_sentence_english": "The Earth's axis is tilted.", + "pos": "noun", + "word_frequency": 4226 + }, + { + "word": "attentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attack;assassination attempt", + "romanization": "attentato", + "example_sentence_native": "C'è stato un attentato terroristico.", + "example_sentence_english": "There was a terrorist attack.", + "pos": "noun", + "word_frequency": 4227 + }, + { + "word": "aumentato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "increased;augmented", + "romanization": "aumentato", + "example_sentence_native": "Il numero di turisti è aumentato quest'anno.", + "example_sentence_english": "The number of tourists has increased this year.", + "pos": "adjective", + "word_frequency": 4228 + }, + { + "word": "avvio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "start;beginning;launch", + "romanization": "avvio", + "example_sentence_native": "L'avvio del progetto è previsto per lunedì.", + "example_sentence_english": "The project launch is scheduled for Monday.", + "pos": "noun", + "word_frequency": 4229 + }, + { + "word": "buttare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to throw;to throw away", + "romanization": "buttare", + "example_sentence_native": "Non buttare la spazzatura per terra.", + "example_sentence_english": "Don't throw trash on the ground.", + "pos": "verb", + "word_frequency": 4234 + }, + { + "word": "buttato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thrown;discarded", + "romanization": "buttato", + "example_sentence_native": "Il giocattolo era buttato in un angolo.", + "example_sentence_english": "The toy was thrown in a corner.", + "pos": "adjective", + "word_frequency": 4235 + }, + { + "word": "capodanno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "New Year's Day", + "romanization": "Capodanno", + "example_sentence_native": "Festeggeremo il Capodanno con gli amici.", + "example_sentence_english": "We will celebrate New Year's Day with friends.", + "pos": "noun", + "word_frequency": 4236 + }, + { + "word": "cedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to yield;to give in;to sell", + "romanization": "cedere", + "example_sentence_native": "Non cederò alle sue richieste.", + "example_sentence_english": "I will not yield to his demands.", + "pos": "verb", + "word_frequency": 4237 + }, + { + "word": "chilo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram;kilo", + "romanization": "chilo", + "example_sentence_native": "Vorrei un chilo di mele, per favore.", + "example_sentence_english": "I would like a kilo of apples, please.", + "pos": "noun", + "word_frequency": 4238 + }, + { + "word": "citato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cited;quoted;mentioned", + "romanization": "citato", + "example_sentence_native": "Il libro citato è molto interessante.", + "example_sentence_english": "The cited book is very interesting.", + "pos": "adjective", + "word_frequency": 4239 + }, + { + "word": "coca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coca", + "romanization": "coca", + "example_sentence_native": "La coca è una pianta tropicale.", + "example_sentence_english": "Coca is a tropical plant.", + "pos": "noun", + "word_frequency": 4240 + }, + { + "word": "cogliere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pick;to grasp;to seize", + "romanization": "cogliere", + "example_sentence_native": "Voglio cogliere l'occasione per ringraziarvi.", + "example_sentence_english": "I want to seize the opportunity to thank you.", + "pos": "verb", + "word_frequency": 4241 + }, + { + "word": "coltivazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultivation;farming", + "romanization": "coltivazione", + "example_sentence_native": "La coltivazione del grano è importante per l'economia locale.", + "example_sentence_english": "Wheat cultivation is important for the local economy.", + "pos": "noun", + "word_frequency": 4242 + }, + { + "word": "continuazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuation", + "romanization": "continuazione", + "example_sentence_native": "Chiediamo la continuazione dei lavori.", + "example_sentence_english": "We ask for the continuation of the works.", + "pos": "noun", + "word_frequency": 4243 + }, + { + "word": "crescendo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crescendo", + "romanization": "crescendo", + "example_sentence_native": "La tensione nella stanza era in un crescendo.", + "example_sentence_english": "The tension in the room was in a crescendo.", + "pos": "noun", + "word_frequency": 4244 + }, + { + "word": "diocesi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocese", + "romanization": "diocesi", + "example_sentence_native": "Il vescovo è responsabile della diocesi.", + "example_sentence_english": "The bishop is responsible for the diocese.", + "pos": "noun", + "word_frequency": 4245 + }, + { + "word": "disperato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desperate", + "romanization": "disperato", + "example_sentence_native": "Si sentiva disperato dopo aver perso il lavoro.", + "example_sentence_english": "He felt desperate after losing his job.", + "pos": "adjective", + "word_frequency": 4246 + }, + { + "word": "emergere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emerge", + "romanization": "emergere", + "example_sentence_native": "La verità è emersa dopo lunghe indagini.", + "example_sentence_english": "The truth emerged after long investigations.", + "pos": "verb", + "word_frequency": 4249 + }, + { + "word": "flotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fleet", + "romanization": "flotta", + "example_sentence_native": "La flotta di navi era pronta a salpare.", + "example_sentence_english": "The fleet of ships was ready to set sail.", + "pos": "noun", + "word_frequency": 4250 + }, + { + "word": "fotografico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "photographic", + "romanization": "fotografico", + "example_sentence_native": "Ha un'ottima memoria fotografica.", + "example_sentence_english": "He has an excellent photographic memory.", + "pos": "adjective", + "word_frequency": 4251 + }, + { + "word": "funerale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funeral", + "romanization": "funerale", + "example_sentence_native": "Il funerale si terrà domani mattina.", + "example_sentence_english": "The funeral will be held tomorrow morning.", + "pos": "noun", + "word_frequency": 4253 + }, + { + "word": "generare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to generate", + "romanization": "generare", + "example_sentence_native": "Questo problema può generare molte discussioni.", + "example_sentence_english": "This problem can generate many discussions.", + "pos": "verb", + "word_frequency": 4255 + }, + { + "word": "grido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shout;cry", + "romanization": "grido", + "example_sentence_native": "Ho sentito un grido d'aiuto.", + "example_sentence_english": "I heard a cry for help.", + "pos": "noun", + "word_frequency": 4257 + }, + { + "word": "idem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "same;likewise", + "romanization": "idem", + "example_sentence_native": "La sua opinione è idem alla mia.", + "example_sentence_english": "His opinion is the same as mine.", + "pos": "adverb", + "word_frequency": 4258 + }, + { + "word": "inquinamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollution", + "romanization": "inquinamento", + "example_sentence_native": "L'inquinamento atmosferico è un problema serio.", + "example_sentence_english": "Air pollution is a serious problem.", + "pos": "noun", + "word_frequency": 4259 + }, + { + "word": "jeans", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jeans", + "romanization": "jeans", + "example_sentence_native": "Mi piacciono i tuoi jeans nuovi.", + "example_sentence_english": "I like your new jeans.", + "pos": "noun", + "word_frequency": 4261 + }, + { + "word": "lente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lens;magnifying glass", + "romanization": "lente", + "example_sentence_native": "Ho bisogno di una lente d'ingrandimento.", + "example_sentence_english": "I need a magnifying glass.", + "pos": "noun", + "word_frequency": 4263 + }, + { + "word": "libretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "booklet;small book;libretto (opera)", + "romanization": "libretto", + "example_sentence_native": "Ho letto il libretto d'istruzioni.", + "example_sentence_english": "I read the instruction booklet.", + "pos": "noun", + "word_frequency": 4264 + }, + { + "word": "litro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "liter", + "romanization": "litro", + "example_sentence_native": "Vorrei un litro di latte, per favore.", + "example_sentence_english": "I would like a liter of milk, please.", + "pos": "noun", + "word_frequency": 4265 + }, + { + "word": "lutto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mourning;bereavement", + "romanization": "lutto", + "example_sentence_native": "La famiglia è in lutto.", + "example_sentence_english": "The family is in mourning.", + "pos": "noun", + "word_frequency": 4267 + }, + { + "word": "meteo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "weather (forecast)", + "romanization": "meteo", + "example_sentence_native": "Ho controllato il meteo per domani.", + "example_sentence_english": "I checked the weather for tomorrow.", + "pos": "noun", + "word_frequency": 4268 + }, + { + "word": "minerale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mineral", + "romanization": "minerale", + "example_sentence_native": "L'acqua minerale è molto popolare in Italia.", + "example_sentence_english": "Mineral water is very popular in Italy.", + "pos": "noun", + "word_frequency": 4270 + }, + { + "word": "misericordia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mercy", + "romanization": "misericordia", + "example_sentence_native": "Chiese misericordia per i suoi peccati.", + "example_sentence_english": "He asked for mercy for his sins.", + "pos": "noun", + "word_frequency": 4271 + }, + { + "word": "orgoglioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proud", + "romanization": "orgoglioso", + "example_sentence_native": "Sono molto orgoglioso dei miei figli.", + "example_sentence_english": "I am very proud of my children.", + "pos": "adjective", + "word_frequency": 4275 + }, + { + "word": "panchina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bench", + "romanization": "panchina", + "example_sentence_native": "Ci siamo seduti su una panchina nel parco.", + "example_sentence_english": "We sat on a bench in the park.", + "pos": "noun", + "word_frequency": 4276 + }, + { + "word": "pianificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planning", + "romanization": "pianificazione", + "example_sentence_native": "La pianificazione è fondamentale per il successo del progetto.", + "example_sentence_english": "Planning is fundamental for the project's success.", + "pos": "noun", + "word_frequency": 4278 + }, + { + "word": "popolarità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "popularity", + "romanization": "popolarità", + "example_sentence_native": "La sua popolarità è cresciuta rapidamente.", + "example_sentence_english": "His popularity grew rapidly.", + "pos": "noun", + "word_frequency": 4279 + }, + { + "word": "porco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pig", + "romanization": "porco", + "example_sentence_native": "Il porco grufola nel fango.", + "example_sentence_english": "The pig grunts in the mud.", + "pos": "noun", + "word_frequency": 4280 + }, + { + "word": "pozzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "well (water)", + "romanization": "pozzo", + "example_sentence_native": "Hanno scavato un pozzo per trovare l'acqua.", + "example_sentence_english": "They dug a well to find water.", + "pos": "noun", + "word_frequency": 4281 + }, + { + "word": "puntare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to point;to aim;to bet", + "romanization": "puntare", + "example_sentence_native": "Ha puntato il dito contro di me.", + "example_sentence_english": "He pointed his finger at me.", + "pos": "verb", + "word_frequency": 4282 + }, + { + "word": "quotidianamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily;everyday", + "romanization": "quotidianamente", + "example_sentence_native": "Si allena quotidianamente per la maratona.", + "example_sentence_english": "He trains daily for the marathon.", + "pos": "adverb", + "word_frequency": 4283 + }, + { + "word": "rimasto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "remaining;left", + "romanization": "rimasto", + "example_sentence_native": "Non è rimasto molto cibo.", + "example_sentence_english": "Not much food is left.", + "pos": "adjective", + "word_frequency": 4285 + }, + { + "word": "sete", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirst", + "romanization": "sete", + "example_sentence_native": "Ho molta sete dopo la corsa.", + "example_sentence_english": "I'm very thirsty after the run.", + "pos": "noun", + "word_frequency": 4288 + }, + { + "word": "siciliano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sicilian", + "romanization": "siciliano", + "example_sentence_native": "La cucina siciliana è deliziosa.", + "example_sentence_english": "Sicilian cuisine is delicious.", + "pos": "adjective", + "word_frequency": 4289 + }, + { + "word": "sparire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappear", + "romanization": "sparire", + "example_sentence_native": "Il mago ha fatto sparire la moneta.", + "example_sentence_english": "The magician made the coin disappear.", + "pos": "verb", + "word_frequency": 4290 + }, + { + "word": "sposo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "groom", + "romanization": "sposo", + "example_sentence_native": "Lo sposo aspettava la sposa all'altare.", + "example_sentence_english": "The groom was waiting for the bride at the altar.", + "pos": "noun", + "word_frequency": 4292 + }, + { + "word": "storicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "historically", + "romanization": "storicamente", + "example_sentence_native": "Storicamente, questa città è molto importante.", + "example_sentence_english": "Historically, this city is very important.", + "pos": "adverb", + "word_frequency": 4293 + }, + { + "word": "targa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "license plate;plaque", + "romanization": "targa", + "example_sentence_native": "La targa dell'auto è illeggibile.", + "example_sentence_english": "The car's license plate is unreadable.", + "pos": "noun", + "word_frequency": 4295 + }, + { + "word": "terma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal bath;hot spring", + "romanization": "terma", + "example_sentence_native": "La terma romana era un luogo di ritrovo.", + "example_sentence_english": "The Roman thermal bath was a meeting place.", + "pos": "noun", + "word_frequency": 4296 + }, + { + "word": "trasparente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transparent", + "romanization": "trasparente", + "example_sentence_native": "Il vetro è completamente trasparente.", + "example_sentence_english": "The glass is completely transparent.", + "pos": "adjective", + "word_frequency": 4297 + }, + { + "word": "verbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "verb", + "romanization": "verbo", + "example_sentence_native": "\"Mangiare\" è un verbo della prima coniugazione.", + "example_sentence_english": "\"To eat\" is a first conjugation verb.", + "pos": "noun", + "word_frequency": 4298 + }, + { + "word": "accompagnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accompanied", + "romanization": "accompagnato", + "example_sentence_native": "È stato accompagnato a casa dai suoi amici.", + "example_sentence_english": "He was accompanied home by his friends.", + "pos": "adjective", + "word_frequency": 4300 + }, + { + "word": "adeguato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adequate;appropriate", + "romanization": "adeguato", + "example_sentence_native": "La risposta non era adeguata alla domanda.", + "example_sentence_english": "The answer was not adequate for the question.", + "pos": "adjective", + "word_frequency": 4301 + }, + { + "word": "agio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ease;comfort", + "romanization": "agio", + "example_sentence_native": "Si sentiva a suo agio nella nuova casa.", + "example_sentence_english": "He felt at ease in the new house.", + "pos": "noun", + "word_frequency": 4302 + }, + { + "word": "assente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "absent", + "romanization": "assente", + "example_sentence_native": "Era assente alla riunione di ieri.", + "example_sentence_english": "He was absent from yesterday's meeting.", + "pos": "adjective", + "word_frequency": 4306 + }, + { + "word": "attentamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carefully;attentively", + "romanization": "attentamente", + "example_sentence_native": "Ascolta attentamente le istruzioni.", + "example_sentence_english": "Listen carefully to the instructions.", + "pos": "adverb", + "word_frequency": 4307 + }, + { + "word": "balcone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balcony", + "romanization": "balcone", + "example_sentence_native": "C'è un bel balcone con vista sul mare.", + "example_sentence_english": "There's a beautiful balcony with a sea view.", + "pos": "noun", + "word_frequency": 4309 + }, + { + "word": "bruciare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to burn", + "romanization": "bruciare", + "example_sentence_native": "Il fuoco bruciava intensamente.", + "example_sentence_english": "The fire was burning intensely.", + "pos": "verb", + "word_frequency": 4310 + }, + { + "word": "carburante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuel", + "romanization": "carburante", + "example_sentence_native": "Dobbiamo fare carburante prima di partire.", + "example_sentence_english": "We need to get fuel before leaving.", + "pos": "noun", + "word_frequency": 4312 + }, + { + "word": "catturare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to capture", + "romanization": "catturare", + "example_sentence_native": "Il fotografo ha catturato un momento unico.", + "example_sentence_english": "The photographer captured a unique moment.", + "pos": "verb", + "word_frequency": 4314 + }, + { + "word": "corridoio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corridor;hallway", + "romanization": "corridoio", + "example_sentence_native": "Il corridoio era buio e silenzioso.", + "example_sentence_english": "The corridor was dark and silent.", + "pos": "noun", + "word_frequency": 4317 + }, + { + "word": "decisivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decisive", + "romanization": "decisivo", + "example_sentence_native": "La sua decisione è stata decisiva per il risultato.", + "example_sentence_english": "His decision was decisive for the outcome.", + "pos": "adjective", + "word_frequency": 4319 + }, + { + "word": "delegazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegation", + "romanization": "delegazione", + "example_sentence_native": "La delegazione è arrivata in ritardo.", + "example_sentence_english": "The delegation arrived late.", + "pos": "noun", + "word_frequency": 4320 + }, + { + "word": "direttiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directive;guideline", + "romanization": "direttiva", + "example_sentence_native": "Hanno emesso una nuova direttiva sulla sicurezza.", + "example_sentence_english": "They issued a new safety directive.", + "pos": "noun", + "word_frequency": 4322 + }, + { + "word": "disoccupato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unemployed person", + "romanization": "disoccupato", + "example_sentence_native": "Il numero dei disoccupati è aumentato.", + "example_sentence_english": "The number of unemployed people has increased.", + "pos": "noun", + "word_frequency": 4323 + }, + { + "word": "esplicitamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explicitly", + "romanization": "esplicitamente", + "example_sentence_native": "Ha dichiarato esplicitamente le sue intenzioni.", + "example_sentence_english": "He explicitly stated his intentions.", + "pos": "adverb", + "word_frequency": 4324 + }, + { + "word": "infantile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infantile;childish", + "romanization": "infantile", + "example_sentence_native": "Ha un comportamento infantile a volte.", + "example_sentence_english": "He has childish behavior sometimes.", + "pos": "adjective", + "word_frequency": 4328 + }, + { + "word": "inno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthem;hymn", + "romanization": "inno", + "example_sentence_native": "L'inno nazionale è stato suonato prima della partita.", + "example_sentence_english": "The national anthem was played before the match.", + "pos": "noun", + "word_frequency": 4329 + }, + { + "word": "intraprendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undertake;to embark on", + "romanization": "intraprendere", + "example_sentence_native": "Vorrei intraprendere un nuovo progetto.", + "example_sentence_english": "I would like to undertake a new project.", + "pos": "verb", + "word_frequency": 4330 + }, + { + "word": "maratona", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marathon", + "romanization": "maratona", + "example_sentence_native": "Ha corso la sua prima maratona l'anno scorso.", + "example_sentence_english": "She ran her first marathon last year.", + "pos": "noun", + "word_frequency": 4332 + }, + { + "word": "municipale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipal", + "romanization": "municipale", + "example_sentence_native": "La polizia municipale controlla il traffico.", + "example_sentence_english": "The municipal police control traffic.", + "pos": "adjective", + "word_frequency": 4333 + }, + { + "word": "nebbia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fog;mist", + "romanization": "nebbia", + "example_sentence_native": "C'era molta nebbia questa mattina.", + "example_sentence_english": "There was a lot of fog this morning.", + "pos": "noun", + "word_frequency": 4334 + }, + { + "word": "odiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hate", + "romanization": "odiare", + "example_sentence_native": "Odio svegliarmi presto la mattina.", + "example_sentence_english": "I hate waking up early in the morning.", + "pos": "verb", + "word_frequency": 4335 + }, + { + "word": "organismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organism;body (organization)", + "romanization": "organismo", + "example_sentence_native": "L'organismo umano è complesso.", + "example_sentence_english": "The human organism is complex.", + "pos": "noun", + "word_frequency": 4337 + }, + { + "word": "paragone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparison", + "romanization": "paragone", + "example_sentence_native": "Non c'è paragone tra i due prodotti.", + "example_sentence_english": "There's no comparison between the two products.", + "pos": "noun", + "word_frequency": 4339 + }, + { + "word": "passaporto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "passport", + "romanization": "passaporto", + "example_sentence_native": "Ho dimenticato il mio passaporto a casa.", + "example_sentence_english": "I forgot my passport at home.", + "pos": "noun", + "word_frequency": 4340 + }, + { + "word": "pregiudizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudice;bias", + "romanization": "pregiudizio", + "example_sentence_native": "Dobbiamo combattere ogni forma di pregiudizio.", + "example_sentence_english": "We must fight every form of prejudice.", + "pos": "noun", + "word_frequency": 4342 + }, + { + "word": "problematica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "issue;problem (as a set of problems)", + "romanization": "problematica", + "example_sentence_native": "La problematica ambientale è molto complessa.", + "example_sentence_english": "The environmental issue is very complex.", + "pos": "noun", + "word_frequency": 4343 + }, + { + "word": "provato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proven;tried;exhausted", + "romanization": "provato", + "example_sentence_native": "La sua innocenza è stata provata.", + "example_sentence_english": "His innocence has been proven.", + "pos": "adjective", + "word_frequency": 4344 + }, + { + "word": "puramente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purely", + "romanization": "puramente", + "example_sentence_native": "È stata una decisione puramente economica.", + "example_sentence_english": "It was a purely economic decision.", + "pos": "adverb", + "word_frequency": 4345 + }, + { + "word": "qualificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to qualify", + "romanization": "qualificare", + "example_sentence_native": "Deve qualificarsi per il prossimo turno.", + "example_sentence_english": "He must qualify for the next round.", + "pos": "verb", + "word_frequency": 4346 + }, + { + "word": "quaranta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forty", + "romanization": "quaranta", + "example_sentence_native": "Ho quaranta anni.", + "example_sentence_english": "I am forty years old.", + "pos": "adjective", + "word_frequency": 4347 + }, + { + "word": "restauro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restoration", + "romanization": "restauro", + "example_sentence_native": "Il restauro del dipinto è durato un anno.", + "example_sentence_english": "The restoration of the painting lasted a year.", + "pos": "noun", + "word_frequency": 4348 + }, + { + "word": "riccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hedgehog;curl (of hair)", + "romanization": "riccio", + "example_sentence_native": "Ho visto un riccio in giardino.", + "example_sentence_english": "I saw a hedgehog in the garden.", + "pos": "noun", + "word_frequency": 4349 + }, + { + "word": "riempire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fill", + "romanization": "riempire", + "example_sentence_native": "Puoi riempire la bottiglia d'acqua?", + "example_sentence_english": "Can you fill the bottle with water?", + "pos": "verb", + "word_frequency": 4350 + }, + { + "word": "rimedio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remedy;solution", + "romanization": "rimedio", + "example_sentence_native": "Non c'è rimedio per questa situazione.", + "example_sentence_english": "There is no remedy for this situation.", + "pos": "noun", + "word_frequency": 4351 + }, + { + "word": "rinnovo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewal", + "romanization": "rinnovo", + "example_sentence_native": "Ho richiesto il rinnovo del passaporto.", + "example_sentence_english": "I requested the renewal of my passport.", + "pos": "noun", + "word_frequency": 4352 + }, + { + "word": "riscatto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ransom;redemption", + "romanization": "riscatto", + "example_sentence_native": "Hanno chiesto un riscatto per il rapito.", + "example_sentence_english": "They demanded a ransom for the kidnapped person.", + "pos": "noun", + "word_frequency": 4353 + }, + { + "word": "satira", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satire", + "romanization": "satira", + "example_sentence_native": "Il programma è noto per la sua satira politica.", + "example_sentence_english": "The program is known for its political satire.", + "pos": "noun", + "word_frequency": 4356 + }, + { + "word": "scopare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sweep", + "romanization": "scopare", + "example_sentence_native": "Devo scopare il pavimento.", + "example_sentence_english": "I need to sweep the floor.", + "pos": "verb", + "word_frequency": 4357 + }, + { + "word": "seguace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "follower;adherent", + "romanization": "seguace", + "example_sentence_native": "Era un fedele seguace del leader.", + "example_sentence_english": "He was a loyal follower of the leader.", + "pos": "noun", + "word_frequency": 4358 + }, + { + "word": "spessore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thickness;depth", + "romanization": "spessore", + "example_sentence_native": "Lo spessore del muro è di venti centimetri.", + "example_sentence_english": "The thickness of the wall is twenty centimeters.", + "pos": "noun", + "word_frequency": 4359 + }, + { + "word": "spina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plug;thorn", + "romanization": "spina", + "example_sentence_native": "Ho bisogno di una spina per caricare il telefono.", + "example_sentence_english": "I need a plug to charge the phone.", + "pos": "noun", + "word_frequency": 4360 + }, + { + "word": "sporco", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "dirty", + "romanization": "sporco", + "example_sentence_native": "I suoi vestiti sono sporchi.", + "example_sentence_english": "His clothes are dirty.", + "pos": "adjective", + "word_frequency": 4361 + }, + { + "word": "sull'argomento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on the topic", + "romanization": "sull'argomento", + "example_sentence_native": "Non voglio discutere sull'argomento.", + "example_sentence_english": "I don't want to discuss on the topic.", + "pos": "noun", + "word_frequency": 4362 + }, + { + "word": "tipicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typically", + "romanization": "tipicamente", + "example_sentence_native": "Tipicamente, andiamo in vacanza a luglio.", + "example_sentence_english": "Typically, we go on vacation in July.", + "pos": "adverb", + "word_frequency": 4363 + }, + { + "word": "vaso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vase;pot", + "romanization": "vaso", + "example_sentence_native": "Metti i fiori nel vaso.", + "example_sentence_english": "Put the flowers in the vase.", + "pos": "noun", + "word_frequency": 4365 + }, + { + "word": "vivente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "living;alive", + "romanization": "vivente", + "example_sentence_native": "È un organismo vivente.", + "example_sentence_english": "It is a living organism.", + "pos": "adjective", + "word_frequency": 4366 + }, + { + "word": "abolizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abolition", + "romanization": "abolizione", + "example_sentence_native": "L'abolizione della schiavitù è stata un passo importante.", + "example_sentence_english": "The abolition of slavery was an important step.", + "pos": "noun", + "word_frequency": 4367 + }, + { + "word": "acquisito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquired", + "romanization": "acquisito", + "example_sentence_native": "Ha acquisito nuove competenze.", + "example_sentence_english": "He has acquired new skills.", + "pos": "adjective", + "word_frequency": 4369 + }, + { + "word": "all'ordine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in order", + "romanization": "all'ordine", + "example_sentence_native": "Metti i libri all'ordine.", + "example_sentence_english": "Put the books in order.", + "pos": "noun", + "word_frequency": 4371 + }, + { + "word": "asta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auction;pole", + "romanization": "asta", + "example_sentence_native": "Hanno venduto il quadro all'asta.", + "example_sentence_english": "They sold the painting at auction.", + "pos": "noun", + "word_frequency": 4372 + }, + { + "word": "avviare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to start;to launch", + "romanization": "avviare", + "example_sentence_native": "Dobbiamo avviare il progetto.", + "example_sentence_english": "We need to start the project.", + "pos": "verb", + "word_frequency": 4373 + }, + { + "word": "browser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "browser", + "romanization": "browser", + "example_sentence_native": "Usa un browser diverso.", + "example_sentence_english": "Use a different browser.", + "pos": "noun", + "word_frequency": 4376 + }, + { + "word": "cap", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head;chief", + "romanization": "cap", + "example_sentence_native": "Il cap del progetto ha approvato l'idea.", + "example_sentence_english": "The project head approved the idea.", + "pos": "noun", + "word_frequency": 4377 + }, + { + "word": "china", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ink;china (porcelain)", + "romanization": "china", + "example_sentence_native": "Ho comprato un servizio di piatti in china.", + "example_sentence_english": "I bought a china dinner set.", + "pos": "noun", + "word_frequency": 4379 + }, + { + "word": "cieco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blind", + "romanization": "cieco", + "example_sentence_native": "L'uomo era cieco dalla nascita.", + "example_sentence_english": "The man was blind from birth.", + "pos": "adjective", + "word_frequency": 4380 + }, + { + "word": "coincidenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coincidence", + "romanization": "coincidenza", + "example_sentence_native": "Che coincidenza incredibile!", + "example_sentence_english": "What an incredible coincidence!", + "pos": "noun", + "word_frequency": 4381 + }, + { + "word": "consorzio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consoritum", + "romanization": "consorzio", + "example_sentence_native": "Il consorzio ha finanziato il progetto.", + "example_sentence_english": "The consortium funded the project.", + "pos": "noun", + "word_frequency": 4382 + }, + { + "word": "core", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "core", + "romanization": "core", + "example_sentence_native": "Questo è il core del problema.", + "example_sentence_english": "This is the core of the problem.", + "pos": "noun", + "word_frequency": 4383 + }, + { + "word": "dell'evento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "of the event", + "romanization": "dell'evento", + "example_sentence_native": "Parliamo dell'evento di ieri.", + "example_sentence_english": "Let's talk about yesterday's event.", + "pos": "noun", + "word_frequency": 4384 + }, + { + "word": "derivante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deriving;resulting from", + "romanization": "derivante", + "example_sentence_native": "I problemi derivanti da questa situazione sono molti.", + "example_sentence_english": "The problems deriving from this situation are many.", + "pos": "adjective", + "word_frequency": 4385 + }, + { + "word": "diminuire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decrease;to diminish", + "romanization": "diminuire", + "example_sentence_native": "I prezzi dovrebbero diminuire presto.", + "example_sentence_english": "Prices should decrease soon.", + "pos": "verb", + "word_frequency": 4386 + }, + { + "word": "efficienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "efficiency", + "romanization": "efficienza", + "example_sentence_native": "Dobbiamo migliorare l'efficienza del processo.", + "example_sentence_english": "We need to improve the efficiency of the process.", + "pos": "noun", + "word_frequency": 4389 + }, + { + "word": "emissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emission;issuance", + "romanization": "emissione", + "example_sentence_native": "La riduzione delle emissioni è fondamentale.", + "example_sentence_english": "The reduction of emissions is fundamental.", + "pos": "noun", + "word_frequency": 4390 + }, + { + "word": "estinzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extinction", + "romanization": "estinzione", + "example_sentence_native": "Molte specie sono a rischio di estinzione.", + "example_sentence_english": "Many species are at risk of extinction.", + "pos": "noun", + "word_frequency": 4392 + }, + { + "word": "fattura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invoice;bill", + "romanization": "fattura", + "example_sentence_native": "Ho ricevuto la fattura per l'acquisto.", + "example_sentence_english": "I received the invoice for the purchase.", + "pos": "noun", + "word_frequency": 4394 + }, + { + "word": "fido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credit;trust", + "romanization": "fido", + "example_sentence_native": "Ho chiesto un fido alla banca.", + "example_sentence_english": "I asked the bank for an overdraft.", + "pos": "noun", + "word_frequency": 4395 + }, + { + "word": "filtro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filter", + "romanization": "filtro", + "example_sentence_native": "Il caffè ha bisogno di un filtro nuovo.", + "example_sentence_english": "The coffee needs a new filter.", + "pos": "noun", + "word_frequency": 4396 + }, + { + "word": "finalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purpose;aim", + "romanization": "finalità", + "example_sentence_native": "Qual è la finalità di questo progetto?", + "example_sentence_english": "What is the purpose of this project?", + "pos": "noun", + "word_frequency": 4397 + }, + { + "word": "frigo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fridge", + "romanization": "frigo", + "example_sentence_native": "Metti il latte nel frigo.", + "example_sentence_english": "Put the milk in the fridge.", + "pos": "noun", + "word_frequency": 4398 + }, + { + "word": "fucile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rifle;shotgun", + "romanization": "fucile", + "example_sentence_native": "Il cacciatore portava un fucile.", + "example_sentence_english": "The hunter carried a rifle.", + "pos": "noun", + "word_frequency": 4399 + }, + { + "word": "garage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garage", + "romanization": "garage", + "example_sentence_native": "Ho parcheggiato la macchina nel garage.", + "example_sentence_english": "I parked the car in the garage.", + "pos": "noun", + "word_frequency": 4400 + }, + { + "word": "gemello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twin", + "romanization": "gemello", + "example_sentence_native": "Mio fratello è il mio gemello.", + "example_sentence_english": "My brother is my twin.", + "pos": "noun", + "word_frequency": 4401 + }, + { + "word": "generico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "generic", + "romanization": "generico", + "example_sentence_native": "Il termine 'animale' è molto generico.", + "example_sentence_english": "The term 'animal' is very generic.", + "pos": "adjective", + "word_frequency": 4402 + }, + { + "word": "id", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ID;identification", + "romanization": "ID", + "example_sentence_native": "Per favore, mostra il tuo ID all'ingresso.", + "example_sentence_english": "Please show your ID at the entrance.", + "pos": "noun", + "word_frequency": 4406 + }, + { + "word": "improbabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improbable", + "romanization": "improbabile", + "example_sentence_native": "È improbabile che succeda.", + "example_sentence_english": "It's improbable that it will happen.", + "pos": "adjective", + "word_frequency": 4407 + }, + { + "word": "inevitabilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inevitably", + "romanization": "inevitabilmente", + "example_sentence_native": "Inevitabilmente, il sole sorgerà domani.", + "example_sentence_english": "Inevitably, the sun will rise tomorrow.", + "pos": "adverb", + "word_frequency": 4408 + }, + { + "word": "lamentare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complain;to lament", + "romanization": "lamentare", + "example_sentence_native": "Non dovresti lamentare così tanto.", + "example_sentence_english": "You shouldn't complain so much.", + "pos": "verb", + "word_frequency": 4410 + }, + { + "word": "look", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "look;appearance", + "romanization": "look", + "example_sentence_native": "Mi piace il tuo nuovo look.", + "example_sentence_english": "I like your new look.", + "pos": "noun", + "word_frequency": 4411 + }, + { + "word": "mela", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "apple", + "romanization": "mela", + "example_sentence_native": "Mi piace mangiare una mela ogni giorno.", + "example_sentence_english": "I like to eat an apple every day.", + "pos": "noun", + "word_frequency": 4413 + }, + { + "word": "notaio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notary;public notary", + "romanization": "notaio", + "example_sentence_native": "Dobbiamo andare dal notaio per firmare il contratto.", + "example_sentence_english": "We need to go to the notary to sign the contract.", + "pos": "noun", + "word_frequency": 4415 + }, + { + "word": "olandese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dutch", + "romanization": "olandese", + "example_sentence_native": "Parla fluentemente l'olandese.", + "example_sentence_english": "He speaks Dutch fluently.", + "pos": "adjective", + "word_frequency": 4416 + }, + { + "word": "paragrafo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paragraph", + "romanization": "paragrafo", + "example_sentence_native": "Leggi il prossimo paragrafo.", + "example_sentence_english": "Read the next paragraph.", + "pos": "noun", + "word_frequency": 4418 + }, + { + "word": "pellicola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "film;plastic wrap", + "romanization": "pellicola", + "example_sentence_native": "Ho comprato una nuova pellicola per la macchina fotografica.", + "example_sentence_english": "I bought a new film for the camera.", + "pos": "noun", + "word_frequency": 4419 + }, + { + "word": "posa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pose;laying;setting", + "romanization": "posa", + "example_sentence_native": "La modella ha assunto una posa elegante.", + "example_sentence_english": "The model assumed an elegant pose.", + "pos": "noun", + "word_frequency": 4420 + }, + { + "word": "preferenza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "preference", + "romanization": "preferenza", + "example_sentence_native": "Qual è la tua preferenza?", + "example_sentence_english": "What is your preference?", + "pos": "noun", + "word_frequency": 4421 + }, + { + "word": "privilegio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privilege", + "romanization": "privilegio", + "example_sentence_native": "È un privilegio lavorare qui.", + "example_sentence_english": "It's a privilege to work here.", + "pos": "noun", + "word_frequency": 4422 + }, + { + "word": "rame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copper", + "romanization": "rame", + "example_sentence_native": "Il rame è un buon conduttore di elettricità.", + "example_sentence_english": "Copper is a good conductor of electricity.", + "pos": "noun", + "word_frequency": 4424 + }, + { + "word": "restituire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to return;to give back", + "romanization": "restituire", + "example_sentence_native": "Devo restituire il libro alla biblioteca.", + "example_sentence_english": "I need to return the book to the library.", + "pos": "verb", + "word_frequency": 4425 + }, + { + "word": "rispettive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respective", + "romanization": "rispettive", + "example_sentence_native": "Hanno preso le loro rispettive decisioni.", + "example_sentence_english": "They made their respective decisions.", + "pos": "adjective", + "word_frequency": 4426 + }, + { + "word": "ristrutturazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renovation;restructuring", + "romanization": "ristrutturazione", + "example_sentence_native": "La casa ha bisogno di una ristrutturazione completa.", + "example_sentence_english": "The house needs a complete renovation.", + "pos": "noun", + "word_frequency": 4427 + }, + { + "word": "rocca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortress;rock", + "romanization": "rocca", + "example_sentence_native": "La rocca domina la valle.", + "example_sentence_english": "The fortress dominates the valley.", + "pos": "noun", + "word_frequency": 4428 + }, + { + "word": "saggezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wisdom", + "romanization": "saggezza", + "example_sentence_native": "La saggezza viene con l'età.", + "example_sentence_english": "Wisdom comes with age.", + "pos": "noun", + "word_frequency": 4429 + }, + { + "word": "servo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "servant;slave", + "romanization": "servo", + "example_sentence_native": "Il servo ha portato il tè.", + "example_sentence_english": "The servant brought the tea.", + "pos": "noun", + "word_frequency": 4430 + }, + { + "word": "settimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seventh", + "romanization": "settimo", + "example_sentence_native": "È il settimo giorno della settimana.", + "example_sentence_english": "It's the seventh day of the week.", + "pos": "adjective", + "word_frequency": 4431 + }, + { + "word": "sollievo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relief", + "romanization": "sollievo", + "example_sentence_native": "Ho provato un grande sollievo.", + "example_sentence_english": "I felt great relief.", + "pos": "noun", + "word_frequency": 4432 + }, + { + "word": "sonoro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sound;acoustic", + "romanization": "sonoro", + "example_sentence_native": "Il film ha un ottimo comparto sonoro.", + "example_sentence_english": "The film has excellent sound.", + "pos": "adjective", + "word_frequency": 4433 + }, + { + "word": "sorgente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "source;spring", + "romanization": "sorgente", + "example_sentence_native": "La sorgente del fiume è in montagna.", + "example_sentence_english": "The source of the river is in the mountains.", + "pos": "noun", + "word_frequency": 4434 + }, + { + "word": "sposato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "married", + "romanization": "sposato", + "example_sentence_native": "Sono sposato da dieci anni.", + "example_sentence_english": "I have been married for ten years.", + "pos": "adjective", + "word_frequency": 4435 + }, + { + "word": "superficiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superficial", + "romanization": "superficiale", + "example_sentence_native": "Non essere così superficiale.", + "example_sentence_english": "Don't be so superficial.", + "pos": "adjective", + "word_frequency": 4436 + }, + { + "word": "tariffa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tariff;rate;fee", + "romanization": "tariffa", + "example_sentence_native": "Qual è la tariffa per questo servizio?", + "example_sentence_english": "What is the rate for this service?", + "pos": "noun", + "word_frequency": 4437 + }, + { + "word": "terrestre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrestrial;earthly", + "romanization": "terrestre", + "example_sentence_native": "La vita terrestre è complessa.", + "example_sentence_english": "Terrestrial life is complex.", + "pos": "adjective", + "word_frequency": 4438 + }, + { + "word": "trailer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer (movie)", + "romanization": "trailer", + "example_sentence_native": "Ho visto il trailer del nuovo film.", + "example_sentence_english": "I saw the trailer for the new movie.", + "pos": "noun", + "word_frequency": 4439 + }, + { + "word": "umidità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humidity", + "romanization": "umidità", + "example_sentence_native": "L'umidità è molto alta oggi.", + "example_sentence_english": "The humidity is very high today.", + "pos": "noun", + "word_frequency": 4440 + }, + { + "word": "variante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variant;version", + "romanization": "variante", + "example_sentence_native": "Questa è una nuova variante del software.", + "example_sentence_english": "This is a new variant of the software.", + "pos": "noun", + "word_frequency": 4442 + }, + { + "word": "zitto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "silent;quiet", + "romanization": "zitto", + "example_sentence_native": "Stai zitto per favore!", + "example_sentence_english": "Be quiet please!", + "pos": "adjective", + "word_frequency": 4443 + }, + { + "word": "abbonamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscription;pass", + "romanization": "abbonamento", + "example_sentence_native": "Ho rinnovato il mio abbonamento mensile.", + "example_sentence_english": "I renewed my monthly subscription.", + "pos": "noun", + "word_frequency": 4444 + }, + { + "word": "affidabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliable;trustworthy", + "romanization": "affidabile", + "example_sentence_native": "È una fonte di informazioni molto affidabile.", + "example_sentence_english": "It is a very reliable source of information.", + "pos": "adjective", + "word_frequency": 4445 + }, + { + "word": "agenda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diary;planner;agenda", + "romanization": "agenda", + "example_sentence_native": "Ho segnato l'appuntamento sulla mia agenda.", + "example_sentence_english": "I marked the appointment in my diary.", + "pos": "noun", + "word_frequency": 4446 + }, + { + "word": "brasiliano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Brazilian", + "romanization": "brasiliano", + "example_sentence_native": "La musica brasiliana è molto ritmica.", + "example_sentence_english": "Brazilian music is very rhythmic.", + "pos": "adjective", + "word_frequency": 4449 + }, + { + "word": "caricare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to load;to charge;to upload", + "romanization": "caricare", + "example_sentence_native": "Devo caricare le batterie del telefono.", + "example_sentence_english": "I need to charge my phone batteries.", + "pos": "verb", + "word_frequency": 4451 + }, + { + "word": "celeste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sky blue;heavenly", + "romanization": "celeste", + "example_sentence_native": "Il cielo era di un bel colore celeste.", + "example_sentence_english": "The sky was a beautiful sky blue color.", + "pos": "adjective", + "word_frequency": 4453 + }, + { + "word": "centimetro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "centimeter", + "romanization": "centimetro", + "example_sentence_native": "La matita è lunga quindici centimetri.", + "example_sentence_english": "The pencil is fifteen centimeters long.", + "pos": "noun", + "word_frequency": 4454 + }, + { + "word": "cessione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cession;transfer;assignment", + "romanization": "cessione", + "example_sentence_native": "La cessione del credito è stata approvata.", + "example_sentence_english": "The assignment of the credit has been approved.", + "pos": "noun", + "word_frequency": 4455 + }, + { + "word": "complicato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complicated", + "romanization": "complicato", + "example_sentence_native": "Il problema è più complicato di quanto sembri.", + "example_sentence_english": "The problem is more complicated than it seems.", + "pos": "adjective", + "word_frequency": 4456 + }, + { + "word": "confessione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confession", + "romanization": "confessione", + "example_sentence_native": "Ha fatto una piena confessione alla polizia.", + "example_sentence_english": "He made a full confession to the police.", + "pos": "noun", + "word_frequency": 4457 + }, + { + "word": "connesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "connected;related", + "romanization": "connesso", + "example_sentence_native": "Il mio computer è connesso a internet.", + "example_sentence_english": "My computer is connected to the internet.", + "pos": "adjective", + "word_frequency": 4458 + }, + { + "word": "controversia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "controversy;dispute", + "romanization": "controversia", + "example_sentence_native": "La controversia è stata risolta pacificamente.", + "example_sentence_english": "The controversy was resolved peacefully.", + "pos": "noun", + "word_frequency": 4459 + }, + { + "word": "curriculum", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curriculum vitae;resume", + "romanization": "curriculum", + "example_sentence_native": "Ho aggiornato il mio curriculum per la nuova offerta di lavoro.", + "example_sentence_english": "I updated my resume for the new job offer.", + "pos": "noun", + "word_frequency": 4460 + }, + { + "word": "dapprima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at first;initially", + "romanization": "dapprima", + "example_sentence_native": "Dapprima ero confuso, ma poi ho capito.", + "example_sentence_english": "At first I was confused, but then I understood.", + "pos": "adverb", + "word_frequency": 4461 + }, + { + "word": "definito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defined;definite;clear", + "romanization": "definito", + "example_sentence_native": "Abbiamo bisogno di un piano ben definito.", + "example_sentence_english": "We need a well-defined plan.", + "pos": "adjective", + "word_frequency": 4462 + }, + { + "word": "denominazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denomination;name;designation", + "romanization": "denominazione", + "example_sentence_native": "La denominazione di origine controllata garantisce la qualità.", + "example_sentence_english": "The controlled designation of origin guarantees quality.", + "pos": "noun", + "word_frequency": 4467 + }, + { + "word": "download", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "download", + "romanization": "download", + "example_sentence_native": "Il download del file è stato completato.", + "example_sentence_english": "The file download has been completed.", + "pos": "noun", + "word_frequency": 4468 + }, + { + "word": "eccessivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessive", + "romanization": "eccessivo", + "example_sentence_native": "Il rumore era eccessivo e fastidioso.", + "example_sentence_english": "The noise was excessive and annoying.", + "pos": "adjective", + "word_frequency": 4469 + }, + { + "word": "fedeltà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fidelity;loyalty", + "romanization": "fedeltà", + "example_sentence_native": "La fedeltà del cliente è fondamentale per il successo.", + "example_sentence_english": "Customer loyalty is fundamental for success.", + "pos": "noun", + "word_frequency": 4471 + }, + { + "word": "finanziare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to finance", + "romanization": "finanziare", + "example_sentence_native": "Dobbiamo finanziare il nuovo progetto.", + "example_sentence_english": "We need to finance the new project.", + "pos": "verb", + "word_frequency": 4472 + }, + { + "word": "ginnastica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gymnastics;exercise", + "romanization": "ginnastica", + "example_sentence_native": "Faccio ginnastica due volte a settimana.", + "example_sentence_english": "I do exercise twice a week.", + "pos": "noun", + "word_frequency": 4475 + }, + { + "word": "gioiello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jewel;piece of jewelry", + "romanization": "gioiello", + "example_sentence_native": "Ha indossato un bellissimo gioiello al collo.", + "example_sentence_english": "She wore a beautiful piece of jewelry around her neck.", + "pos": "noun", + "word_frequency": 4476 + }, + { + "word": "girone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group (in sports);round;circuit", + "romanization": "girone", + "example_sentence_native": "La squadra ha superato il girone eliminatorio.", + "example_sentence_english": "The team passed the elimination group.", + "pos": "noun", + "word_frequency": 4477 + }, + { + "word": "golf", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "golf", + "romanization": "golf", + "example_sentence_native": "Mi piace giocare a golf nel fine settimana.", + "example_sentence_english": "I like to play golf on the weekend.", + "pos": "noun", + "word_frequency": 4478 + }, + { + "word": "gravemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seriously;gravely", + "romanization": "gravemente", + "example_sentence_native": "È stato gravemente ferito nell'incidente.", + "example_sentence_english": "He was seriously injured in the accident.", + "pos": "adverb", + "word_frequency": 4479 + }, + { + "word": "impazzire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to go crazy", + "romanization": "impazzire", + "example_sentence_native": "Ho paura di impazzire con tutto questo stress.", + "example_sentence_english": "I'm afraid I'll go crazy with all this stress.", + "pos": "verb", + "word_frequency": 4481 + }, + { + "word": "incapacità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incapacity", + "romanization": "incapacità", + "example_sentence_native": "La sua incapacità di decidere era evidente.", + "example_sentence_english": "His inability to decide was evident.", + "pos": "noun", + "word_frequency": 4482 + }, + { + "word": "interrompere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interrupt", + "romanization": "interrompere", + "example_sentence_native": "Per favore, non interrompermi mentre parlo.", + "example_sentence_english": "Please, don't interrupt me while I'm speaking.", + "pos": "verb", + "word_frequency": 4483 + }, + { + "word": "islamico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Islamic", + "romanization": "islamico", + "example_sentence_native": "Molti paesi hanno una cultura islamica ricca.", + "example_sentence_english": "Many countries have a rich Islamic culture.", + "pos": "adjective", + "word_frequency": 4484 + }, + { + "word": "lieto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glad", + "romanization": "lieto", + "example_sentence_native": "Sono lieto di vederti qui.", + "example_sentence_english": "I am glad to see you here.", + "pos": "adjective", + "word_frequency": 4486 + }, + { + "word": "lode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise", + "romanization": "lode", + "example_sentence_native": "Ha ricevuto molte lodi per il suo lavoro.", + "example_sentence_english": "He received much praise for his work.", + "pos": "noun", + "word_frequency": 4487 + }, + { + "word": "menzionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mention", + "romanization": "menzionare", + "example_sentence_native": "Non ha menzionato nulla riguardo al problema.", + "example_sentence_english": "He didn't mention anything about the problem.", + "pos": "verb", + "word_frequency": 4489 + }, + { + "word": "nettamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearly", + "romanization": "nettamente", + "example_sentence_native": "La situazione è nettamente migliorata.", + "example_sentence_english": "The situation has clearly improved.", + "pos": "adverb", + "word_frequency": 4491 + }, + { + "word": "notificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to notify", + "romanization": "notificare", + "example_sentence_native": "Devo notificare il cambiamento al mio capo.", + "example_sentence_english": "I need to notify my boss about the change.", + "pos": "verb", + "word_frequency": 4492 + }, + { + "word": "orchestra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orchestra", + "romanization": "orchestra", + "example_sentence_native": "L'orchestra ha suonato magnificamente.", + "example_sentence_english": "The orchestra played magnificently.", + "pos": "noun", + "word_frequency": 4493 + }, + { + "word": "ordinario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ordinary", + "romanization": "ordinario", + "example_sentence_native": "Era solo un giorno ordinario.", + "example_sentence_english": "It was just an ordinary day.", + "pos": "adjective", + "word_frequency": 4494 + }, + { + "word": "ottica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optics", + "romanization": "ottica", + "example_sentence_native": "Dal punto di vista ottico, il design è perfetto.", + "example_sentence_english": "From an optical point of view, the design is perfect.", + "pos": "noun", + "word_frequency": 4495 + }, + { + "word": "pepe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pepper", + "romanization": "pepe", + "example_sentence_native": "Vorrei un po' di sale e pepe.", + "example_sentence_english": "I would like some salt and pepper.", + "pos": "noun", + "word_frequency": 4496 + }, + { + "word": "potenzialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potentially", + "romanization": "potenzialmente", + "example_sentence_native": "Questo progetto è potenzialmente molto redditizio.", + "example_sentence_english": "This project is potentially very profitable.", + "pos": "adverb", + "word_frequency": 4498 + }, + { + "word": "prassi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "practice", + "romanization": "prassi", + "example_sentence_native": "È una prassi comune in questo settore.", + "example_sentence_english": "It's a common practice in this sector.", + "pos": "noun", + "word_frequency": 4499 + }, + { + "word": "premessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premise", + "romanization": "premessa", + "example_sentence_native": "La sua argomentazione si basa su una falsa premessa.", + "example_sentence_english": "His argument is based on a false premise.", + "pos": "noun", + "word_frequency": 4500 + }, + { + "word": "presentato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presented", + "romanization": "presentato", + "example_sentence_native": "Il nuovo prodotto è stato presentato ieri.", + "example_sentence_english": "The new product was presented yesterday.", + "pos": "adjective", + "word_frequency": 4501 + }, + { + "word": "proiezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projection", + "romanization": "proiezione", + "example_sentence_native": "Le proiezioni future sono positive.", + "example_sentence_english": "The future projections are positive.", + "pos": "noun", + "word_frequency": 4502 + }, + { + "word": "rivoluzionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolutionary", + "romanization": "rivoluzionario", + "example_sentence_native": "Questa è un'idea rivoluzionaria.", + "example_sentence_english": "This is a revolutionary idea.", + "pos": "adjective", + "word_frequency": 4505 + }, + { + "word": "rosario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosary", + "romanization": "rosario", + "example_sentence_native": "La nonna recita il rosario ogni sera.", + "example_sentence_english": "Grandma recites the rosary every evening.", + "pos": "noun", + "word_frequency": 4508 + }, + { + "word": "saga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saga", + "romanization": "saga", + "example_sentence_native": "La saga di Star Wars è molto popolare.", + "example_sentence_english": "The Star Wars saga is very popular.", + "pos": "noun", + "word_frequency": 4509 + }, + { + "word": "santuario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sanctuary", + "romanization": "santuario", + "example_sentence_native": "Hanno visitato un antico santuario.", + "example_sentence_english": "They visited an ancient sanctuary.", + "pos": "noun", + "word_frequency": 4510 + }, + { + "word": "scommettere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bet", + "romanization": "scommettere", + "example_sentence_native": "Non mi piace scommettere soldi.", + "example_sentence_english": "I don't like to bet money.", + "pos": "verb", + "word_frequency": 4513 + }, + { + "word": "sessanta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixty", + "romanization": "sessanta", + "example_sentence_native": "Ha sessanta anni.", + "example_sentence_english": "He is sixty years old.", + "pos": "adjective", + "word_frequency": 4514 + }, + { + "word": "sigla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theme song", + "romanization": "sigla", + "example_sentence_native": "La sigla di apertura della serie TV è iconica.", + "example_sentence_english": "The opening theme song of the TV series is iconic.", + "pos": "noun", + "word_frequency": 4515 + }, + { + "word": "sorprendente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surprising", + "romanization": "sorprendente", + "example_sentence_native": "Il risultato è stato sorprendente.", + "example_sentence_english": "The result was surprising.", + "pos": "adjective", + "word_frequency": 4516 + }, + { + "word": "specialità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialty", + "romanization": "specialità", + "example_sentence_native": "La pasta è una specialità italiana.", + "example_sentence_english": "Pasta is an Italian specialty.", + "pos": "noun", + "word_frequency": 4517 + }, + { + "word": "tasto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "key", + "romanization": "tasto", + "example_sentence_native": "Premi il tasto invio.", + "example_sentence_english": "Press the enter key.", + "pos": "noun", + "word_frequency": 4518 + }, + { + "word": "telefonata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "phone call", + "romanization": "telefonata", + "example_sentence_native": "Ho ricevuto una telefonata importante.", + "example_sentence_english": "I received an important phone call.", + "pos": "noun", + "word_frequency": 4519 + }, + { + "word": "tenore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenor;gist;standard", + "romanization": "tenore", + "example_sentence_native": "Il tenore della sua voce era potente.", + "example_sentence_english": "The tenor of his voice was powerful.", + "pos": "noun", + "word_frequency": 4520 + }, + { + "word": "umore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mood;humor", + "romanization": "umore", + "example_sentence_native": "Oggi sono di buon umore.", + "example_sentence_english": "Today I am in a good mood.", + "pos": "noun", + "word_frequency": 4521 + }, + { + "word": "vigilanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigilance;surveillance", + "romanization": "vigilanza", + "example_sentence_native": "La polizia ha aumentato la vigilanza nella zona.", + "example_sentence_english": "The police increased surveillance in the area.", + "pos": "noun", + "word_frequency": 4522 + }, + { + "word": "votazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vote;voting;ballot", + "romanization": "votazione", + "example_sentence_native": "La votazione si terrà domani.", + "example_sentence_english": "The vote will be held tomorrow.", + "pos": "noun", + "word_frequency": 4523 + }, + { + "word": "abbassare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lower;to turn down", + "romanization": "abbassare", + "example_sentence_native": "Puoi abbassare il volume, per favore?", + "example_sentence_english": "Can you lower the volume, please?", + "pos": "verb", + "word_frequency": 4525 + }, + { + "word": "abituato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accustomed;used to", + "romanization": "abituato", + "example_sentence_native": "Sono abituato a svegliarmi presto.", + "example_sentence_english": "I am used to waking up early.", + "pos": "adjective", + "word_frequency": 4526 + }, + { + "word": "alfa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alpha", + "romanization": "alfa", + "example_sentence_native": "Alfa è la prima lettera dell'alfabeto greco.", + "example_sentence_english": "Alpha is the first letter of the Greek alphabet.", + "pos": "noun", + "word_frequency": 4527 + }, + { + "word": "amichevole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "friendly", + "romanization": "amichevole", + "example_sentence_native": "È una persona molto amichevole.", + "example_sentence_english": "He is a very friendly person.", + "pos": "adjective", + "word_frequency": 4528 + }, + { + "word": "arcivescovo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archbishop", + "romanization": "arcivescovo", + "example_sentence_native": "L'arcivescovo ha tenuto una messa speciale.", + "example_sentence_english": "The archbishop held a special mass.", + "pos": "noun", + "word_frequency": 4529 + }, + { + "word": "attivamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "actively", + "romanization": "attivamente", + "example_sentence_native": "Partecipa attivamente alle discussioni.", + "example_sentence_english": "He actively participates in discussions.", + "pos": "adverb", + "word_frequency": 4530 + }, + { + "word": "baia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bay", + "romanization": "baia", + "example_sentence_native": "La nave è ancorata nella baia.", + "example_sentence_english": "The ship is anchored in the bay.", + "pos": "noun", + "word_frequency": 4531 + }, + { + "word": "barriera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrier;fence", + "romanization": "barriera", + "example_sentence_native": "Hanno messo una barriera per bloccare la strada.", + "example_sentence_english": "They put up a barrier to block the road.", + "pos": "noun", + "word_frequency": 4532 + }, + { + "word": "bibliografia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bibliography", + "romanization": "bibliografia", + "example_sentence_native": "La bibliografia è alla fine del libro.", + "example_sentence_english": "The bibliography is at the end of the book.", + "pos": "noun", + "word_frequency": 4533 + }, + { + "word": "cintura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "belt;waist", + "romanization": "cintura", + "example_sentence_native": "Ho bisogno di una nuova cintura per i pantaloni.", + "example_sentence_english": "I need a new belt for my pants.", + "pos": "noun", + "word_frequency": 4534 + }, + { + "word": "classificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "classification;ranking", + "romanization": "classificazione", + "example_sentence_native": "La classificazione dei documenti è importante.", + "example_sentence_english": "The classification of documents is important.", + "pos": "noun", + "word_frequency": 4535 + }, + { + "word": "confermato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmed", + "romanization": "confermato", + "example_sentence_native": "L'appuntamento è confermato per domani.", + "example_sentence_english": "The appointment is confirmed for tomorrow.", + "pos": "adjective", + "word_frequency": 4536 + }, + { + "word": "controllato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controlled;checked", + "romanization": "controllato", + "example_sentence_native": "Il traffico era controllato dalla polizia.", + "example_sentence_english": "The traffic was controlled by the police.", + "pos": "adjective", + "word_frequency": 4537 + }, + { + "word": "conveniente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "convenient;affordable", + "romanization": "conveniente", + "example_sentence_native": "Questo prezzo è molto conveniente.", + "example_sentence_english": "This price is very affordable.", + "pos": "adjective", + "word_frequency": 4538 + }, + { + "word": "detenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detainee;prisoner", + "romanization": "detenuto", + "example_sentence_native": "Il detenuto è stato rilasciato.", + "example_sentence_english": "The detainee was released.", + "pos": "noun", + "word_frequency": 4540 + }, + { + "word": "dimora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dwelling;residence", + "romanization": "dimora", + "example_sentence_native": "Questa antica dimora ha molta storia.", + "example_sentence_english": "This ancient dwelling has a lot of history.", + "pos": "noun", + "word_frequency": 4541 + }, + { + "word": "dottorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doctorate;PhD", + "romanization": "dottorato", + "example_sentence_native": "Sta completando il suo dottorato in fisica.", + "example_sentence_english": "He is completing his doctorate in physics.", + "pos": "noun", + "word_frequency": 4543 + }, + { + "word": "escludere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exclude;to rule out", + "romanization": "escludere", + "example_sentence_native": "Non possiamo escludere nessuna possibilità.", + "example_sentence_english": "We cannot exclude any possibility.", + "pos": "verb", + "word_frequency": 4545 + }, + { + "word": "esplodere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explode;to burst", + "romanization": "esplodere", + "example_sentence_native": "La bomba potrebbe esplodere da un momento all'altro.", + "example_sentence_english": "The bomb could explode at any moment.", + "pos": "verb", + "word_frequency": 4546 + }, + { + "word": "espresso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "express;explicit;stated", + "romanization": "espresso", + "example_sentence_native": "Il suo desiderio era espresso chiaramente.", + "example_sentence_english": "His desire was clearly expressed.", + "pos": "adjective", + "word_frequency": 4547 + }, + { + "word": "fiero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proud;fierce", + "romanization": "fiero", + "example_sentence_native": "Sono fiero dei tuoi successi.", + "example_sentence_english": "I am proud of your achievements.", + "pos": "adjective", + "word_frequency": 4548 + }, + { + "word": "foro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hole;forum;court", + "romanization": "foro", + "example_sentence_native": "C'è un piccolo foro nel muro.", + "example_sentence_english": "There is a small hole in the wall.", + "pos": "noun", + "word_frequency": 4549 + }, + { + "word": "frammento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragment;piece", + "romanization": "frammento", + "example_sentence_native": "Ha trovato un frammento di vetro.", + "example_sentence_english": "He found a fragment of glass.", + "pos": "noun", + "word_frequency": 4550 + }, + { + "word": "gallo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rooster;cock", + "romanization": "gallo", + "example_sentence_native": "Il gallo canta all'alba.", + "example_sentence_english": "The rooster crows at dawn.", + "pos": "noun", + "word_frequency": 4551 + }, + { + "word": "gita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trip;outing;excursion", + "romanization": "gita", + "example_sentence_native": "Andiamo a fare una gita in montagna.", + "example_sentence_english": "We are going on a trip to the mountains.", + "pos": "noun", + "word_frequency": 4553 + }, + { + "word": "immaginazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imagination", + "romanization": "immaginazione", + "example_sentence_native": "Ha una grande immaginazione.", + "example_sentence_english": "He has a great imagination.", + "pos": "noun", + "word_frequency": 4555 + }, + { + "word": "inviato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "envoy;correspondent;delegate", + "romanization": "inviato", + "example_sentence_native": "L'inviato speciale ha riportato le ultime notizie.", + "example_sentence_english": "The special envoy reported the latest news.", + "pos": "noun", + "word_frequency": 4556 + }, + { + "word": "istinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinct", + "romanization": "istinto", + "example_sentence_native": "Ha agito d'istinto.", + "example_sentence_english": "He acted on instinct.", + "pos": "noun", + "word_frequency": 4557 + }, + { + "word": "legislatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legislature", + "romanization": "legislatura", + "example_sentence_native": "La legislatura attuale sta discutendo nuove leggi.", + "example_sentence_english": "The current legislature is discussing new laws.", + "pos": "noun", + "word_frequency": 4560 + }, + { + "word": "lotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lot;batch;lottery", + "romanization": "lotto", + "example_sentence_native": "Abbiamo comprato un lotto di terreno.", + "example_sentence_english": "We bought a lot of land.", + "pos": "noun", + "word_frequency": 4562 + }, + { + "word": "maestà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majesty", + "romanization": "maestà", + "example_sentence_native": "Sua Maestà ha parlato al popolo.", + "example_sentence_english": "Her Majesty spoke to the people.", + "pos": "noun", + "word_frequency": 4564 + }, + { + "word": "magistrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magistrate;judge", + "romanization": "magistrato", + "example_sentence_native": "Il magistrato ha emesso la sentenza.", + "example_sentence_english": "The magistrate issued the sentence.", + "pos": "noun", + "word_frequency": 4565 + }, + { + "word": "marrone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "brown", + "romanization": "marrone", + "example_sentence_native": "Ho comprato una borsa marrone.", + "example_sentence_english": "I bought a brown bag.", + "pos": "adjective", + "word_frequency": 4566 + }, + { + "word": "mensa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canteen;cafeteria", + "romanization": "mensa", + "example_sentence_native": "Mangiamo spesso alla mensa universitaria.", + "example_sentence_english": "We often eat at the university canteen.", + "pos": "noun", + "word_frequency": 4567 + }, + { + "word": "mister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach;manager (often in sports)", + "romanization": "mister", + "example_sentence_native": "Il mister ha dato istruzioni alla squadra.", + "example_sentence_english": "The coach gave instructions to the team.", + "pos": "noun", + "word_frequency": 4568 + }, + { + "word": "nono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ninth", + "romanization": "nono", + "example_sentence_native": "È arrivato nono nella gara.", + "example_sentence_english": "He arrived ninth in the race.", + "pos": "adjective", + "word_frequency": 4570 + }, + { + "word": "ordinanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ordinance;decree", + "romanization": "ordinanza", + "example_sentence_native": "Il sindaco ha emesso una nuova ordinanza.", + "example_sentence_english": "The mayor issued a new ordinance.", + "pos": "noun", + "word_frequency": 4571 + }, + { + "word": "orrore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horror", + "romanization": "orrore", + "example_sentence_native": "Il film era pieno di orrore.", + "example_sentence_english": "The film was full of horror.", + "pos": "noun", + "word_frequency": 4572 + }, + { + "word": "perla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pearl", + "romanization": "perla", + "example_sentence_native": "Ha una collana di perle.", + "example_sentence_english": "She has a pearl necklace.", + "pos": "noun", + "word_frequency": 4574 + }, + { + "word": "permanenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanence;stay", + "romanization": "permanenza", + "example_sentence_native": "La sua permanenza in città è stata breve.", + "example_sentence_english": "His stay in the city was brief.", + "pos": "noun", + "word_frequency": 4575 + }, + { + "word": "picco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peak;summit", + "romanization": "picco", + "example_sentence_native": "Abbiamo raggiunto il picco della montagna.", + "example_sentence_english": "We reached the peak of the mountain.", + "pos": "noun", + "word_frequency": 4576 + }, + { + "word": "prefettura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prefecture", + "romanization": "prefettura", + "example_sentence_native": "Dobbiamo andare in prefettura per i documenti.", + "example_sentence_english": "We need to go to the prefecture for the documents.", + "pos": "noun", + "word_frequency": 4577 + }, + { + "word": "pregare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pray;to beg", + "romanization": "pregare", + "example_sentence_native": "Prego sempre per la mia famiglia.", + "example_sentence_english": "I always pray for my family.", + "pos": "verb", + "word_frequency": 4578 + }, + { + "word": "preliminare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preliminary", + "romanization": "preliminare", + "example_sentence_native": "Abbiamo avuto una discussione preliminare.", + "example_sentence_english": "We had a preliminary discussion.", + "pos": "adjective", + "word_frequency": 4579 + }, + { + "word": "preoccuparsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to worry", + "romanization": "preoccuparsi", + "example_sentence_native": "Non preoccuparti, andrà tutto bene.", + "example_sentence_english": "Don't worry, everything will be fine.", + "pos": "verb", + "word_frequency": 4580 + }, + { + "word": "presentarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to introduce oneself;to show up", + "romanization": "presentarsi", + "example_sentence_native": "Mi sono presentato al nuovo collega.", + "example_sentence_english": "I introduced myself to the new colleague.", + "pos": "verb", + "word_frequency": 4581 + }, + { + "word": "raccomandare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recommend;to advise", + "romanization": "raccomandare", + "example_sentence_native": "Ti raccomando questo libro.", + "example_sentence_english": "I recommend this book to you.", + "pos": "verb", + "word_frequency": 4582 + }, + { + "word": "riservato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reserved;private", + "romanization": "riservato", + "example_sentence_native": "Questo tavolo è riservato.", + "example_sentence_english": "This table is reserved.", + "pos": "adjective", + "word_frequency": 4583 + }, + { + "word": "romantico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "romantic", + "romanization": "romantico", + "example_sentence_native": "È un film molto romantico.", + "example_sentence_english": "It's a very romantic movie.", + "pos": "adjective", + "word_frequency": 4584 + }, + { + "word": "salvataggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescue;salvage", + "romanization": "salvataggio", + "example_sentence_native": "L'operazione di salvataggio è stata difficile.", + "example_sentence_english": "The rescue operation was difficult.", + "pos": "noun", + "word_frequency": 4585 + }, + { + "word": "scemo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silly;stupid", + "romanization": "scemo", + "example_sentence_native": "Non fare lo scemo!", + "example_sentence_english": "Don't be silly!", + "pos": "adjective", + "word_frequency": 4586 + }, + { + "word": "schiavitù", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slavery", + "romanization": "schiavitù", + "example_sentence_native": "La schiavitù è stata abolita secoli fa.", + "example_sentence_english": "Slavery was abolished centuries ago.", + "pos": "noun", + "word_frequency": 4587 + }, + { + "word": "scrittrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "writer (female)", + "romanization": "scrittrice", + "example_sentence_native": "Mia sorella è una scrittrice di successo.", + "example_sentence_english": "My sister is a successful writer.", + "pos": "noun", + "word_frequency": 4588 + }, + { + "word": "sedici", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sixteen", + "romanization": "sedici", + "example_sentence_native": "Ho sedici anni.", + "example_sentence_english": "I am sixteen years old.", + "pos": "adjective", + "word_frequency": 4589 + }, + { + "word": "senz'altro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "certainly;without fail", + "romanization": "senz'altro", + "example_sentence_native": "Verrò senz'altro alla festa.", + "example_sentence_english": "I will certainly come to the party.", + "pos": "adverb", + "word_frequency": 4590 + }, + { + "word": "sfumatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuance;shade (of color)", + "romanization": "sfumatura", + "example_sentence_native": "Ci sono molte sfumature di significato.", + "example_sentence_english": "There are many nuances of meaning.", + "pos": "noun", + "word_frequency": 4591 + }, + { + "word": "sottoposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subordinate;subject (person)", + "romanization": "sottoposto", + "example_sentence_native": "Ha molti sottoposti nel suo dipartimento.", + "example_sentence_english": "He has many subordinates in his department.", + "pos": "noun", + "word_frequency": 4592 + }, + { + "word": "spa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spa (health resort);S.p.A. (public limited company)", + "romanization": "spa", + "example_sentence_native": "Abbiamo passato il weekend in una spa.", + "example_sentence_english": "We spent the weekend at a spa.", + "pos": "noun", + "word_frequency": 4593 + }, + { + "word": "spostato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moved;displaced", + "romanization": "spostato", + "example_sentence_native": "Il tavolo è stato spostato.", + "example_sentence_english": "The table has been moved.", + "pos": "adjective", + "word_frequency": 4594 + }, + { + "word": "stage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "internship;traineeship", + "romanization": "stage", + "example_sentence_native": "Sto facendo uno stage in un'azienda.", + "example_sentence_english": "I'm doing an internship at a company.", + "pos": "noun", + "word_frequency": 4595 + }, + { + "word": "svegliare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wake up", + "romanization": "svegliare", + "example_sentence_native": "Devo svegliare i bambini.", + "example_sentence_english": "I need to wake up the children.", + "pos": "verb", + "word_frequency": 4596 + }, + { + "word": "trattativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiation", + "romanization": "trattativa", + "example_sentence_native": "Le trattative sono in corso.", + "example_sentence_english": "The negotiations are ongoing.", + "pos": "noun", + "word_frequency": 4599 + }, + { + "word": "tregua", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truce", + "romanization": "tregua", + "example_sentence_native": "Hanno dichiarato una tregua per negoziare la pace.", + "example_sentence_english": "They declared a truce to negotiate peace.", + "pos": "noun", + "word_frequency": 4600 + }, + { + "word": "turistico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tourist;touristic", + "romanization": "turistico", + "example_sentence_native": "Venezia è una città molto turistica.", + "example_sentence_english": "Venice is a very touristy city.", + "pos": "adjective", + "word_frequency": 4601 + }, + { + "word": "ultra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultra;extreme", + "romanization": "ultra", + "example_sentence_native": "È un corridore ultra-maratona.", + "example_sentence_english": "He is an ultra-marathon runner.", + "pos": "adjective", + "word_frequency": 4602 + }, + { + "word": "unghia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nail (fingernail;toenail)", + "romanization": "unghia", + "example_sentence_native": "Si è rotta un'unghia.", + "example_sentence_english": "She broke a nail.", + "pos": "noun", + "word_frequency": 4603 + }, + { + "word": "vantare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to boast;to brag", + "romanization": "vantare", + "example_sentence_native": "Non mi piace vantare i miei successi.", + "example_sentence_english": "I don't like to boast about my achievements.", + "pos": "verb", + "word_frequency": 4604 + }, + { + "word": "vena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vein", + "romanization": "vena", + "example_sentence_native": "Il sangue scorre nelle vene.", + "example_sentence_english": "Blood flows in the veins.", + "pos": "noun", + "word_frequency": 4605 + }, + { + "word": "vincente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winning;successful", + "romanization": "vincente", + "example_sentence_native": "La squadra vincente ha festeggiato tutta la notte.", + "example_sentence_english": "The winning team celebrated all night.", + "pos": "adjective", + "word_frequency": 4606 + }, + { + "word": "accettazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acceptance;admission", + "romanization": "accettazione", + "example_sentence_native": "La sua accettazione all'università lo ha reso felice.", + "example_sentence_english": "His acceptance to the university made him happy.", + "pos": "noun", + "word_frequency": 4610 + }, + { + "word": "affidamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliance;custody", + "romanization": "affidamento", + "example_sentence_native": "Il giudice ha concesso l'affidamento dei figli alla madre.", + "example_sentence_english": "The judge granted custody of the children to the mother.", + "pos": "noun", + "word_frequency": 4611 + }, + { + "word": "appositamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifically;purposely", + "romanization": "appositamente", + "example_sentence_native": "Ho preparato questo piatto appositamente per te.", + "example_sentence_english": "I prepared this dish specifically for you.", + "pos": "adverb", + "word_frequency": 4616 + }, + { + "word": "arena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arena", + "romanization": "arena", + "example_sentence_native": "Il concerto si terrà nell'arena.", + "example_sentence_english": "The concert will be held in the arena.", + "pos": "noun", + "word_frequency": 4617 + }, + { + "word": "attrazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attraction", + "romanization": "attrazione", + "example_sentence_native": "Il Colosseo è una grande attrazione turistica.", + "example_sentence_english": "The Colosseum is a major tourist attraction.", + "pos": "noun", + "word_frequency": 4619 + }, + { + "word": "attribuire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attribute;to assign", + "romanization": "attribuire", + "example_sentence_native": "Gli hanno attribuito il merito della scoperta.", + "example_sentence_english": "They attributed the credit for the discovery to him.", + "pos": "verb", + "word_frequency": 4620 + }, + { + "word": "banale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banal;trivial", + "romanization": "banale", + "example_sentence_native": "Era una discussione piuttosto banale.", + "example_sentence_english": "It was a rather banal discussion.", + "pos": "adjective", + "word_frequency": 4621 + }, + { + "word": "celebrazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebration", + "romanization": "celebrazione", + "example_sentence_native": "La celebrazione del matrimonio è stata bellissima.", + "example_sentence_english": "The wedding celebration was beautiful.", + "pos": "noun", + "word_frequency": 4624 + }, + { + "word": "cesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toilet (informal)", + "romanization": "cesso", + "example_sentence_native": "Dove si trova il cesso?", + "example_sentence_english": "Where is the toilet?", + "pos": "noun", + "word_frequency": 4625 + }, + { + "word": "clemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clement;merciful", + "romanization": "clemente", + "example_sentence_native": "Il giudice è stato clemente con l'imputato.", + "example_sentence_english": "The judge was clement with the defendant.", + "pos": "adjective", + "word_frequency": 4627 + }, + { + "word": "concilio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "council (e.g.;church council)", + "romanization": "concilio", + "example_sentence_native": "Il Concilio di Trento fu un evento importante.", + "example_sentence_english": "The Council of Trent was an important event.", + "pos": "noun", + "word_frequency": 4628 + }, + { + "word": "costiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coast;coastal area", + "romanization": "costiera", + "example_sentence_native": "La Costiera Amalfitana è famosa in tutto il mondo.", + "example_sentence_english": "The Amalfi Coast is famous worldwide.", + "pos": "noun", + "word_frequency": 4629 + }, + { + "word": "deficit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficit", + "romanization": "deficit", + "example_sentence_native": "Il paese ha un deficit di bilancio.", + "example_sentence_english": "The country has a budget deficit.", + "pos": "noun", + "word_frequency": 4630 + }, + { + "word": "degrado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "degradation;decay", + "romanization": "degrado", + "example_sentence_native": "Il degrado ambientale è una preoccupazione crescente.", + "example_sentence_english": "Environmental degradation is a growing concern.", + "pos": "noun", + "word_frequency": 4631 + }, + { + "word": "delicato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delicate;sensitive", + "romanization": "delicato", + "example_sentence_native": "È una questione molto delicata.", + "example_sentence_english": "It's a very delicate matter.", + "pos": "adjective", + "word_frequency": 4632 + }, + { + "word": "derivato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "derivative;product", + "romanization": "derivato", + "example_sentence_native": "Il petrolio è un derivato del greggio.", + "example_sentence_english": "Petroleum is a derivative of crude oil.", + "pos": "noun", + "word_frequency": 4633 + }, + { + "word": "domestico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domestic;household", + "romanization": "domestico", + "example_sentence_native": "Abbiamo un animale domestico, un cane.", + "example_sentence_english": "We have a domestic animal, a dog.", + "pos": "adjective", + "word_frequency": 4634 + }, + { + "word": "domicilio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domicile;residence", + "romanization": "domicilio", + "example_sentence_native": "La consegna a domicilio è gratuita.", + "example_sentence_english": "Home delivery is free.", + "pos": "noun", + "word_frequency": 4635 + }, + { + "word": "estivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "summer (adjective);summery", + "romanization": "estivo", + "example_sentence_native": "Mi piacciono i vestiti estivi.", + "example_sentence_english": "I like summer clothes.", + "pos": "adjective", + "word_frequency": 4637 + }, + { + "word": "fantascienza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "science fiction", + "romanization": "fantascienza", + "example_sentence_native": "Leggo molti libri di fantascienza.", + "example_sentence_english": "I read many science fiction books.", + "pos": "noun", + "word_frequency": 4638 + }, + { + "word": "faro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lighthouse;headlight", + "romanization": "faro", + "example_sentence_native": "Il faro guida le navi in porto.", + "example_sentence_english": "The lighthouse guides ships into port.", + "pos": "noun", + "word_frequency": 4639 + }, + { + "word": "impressionante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impressive", + "romanization": "impressionante", + "example_sentence_native": "Il panorama dalla cima della montagna era davvero impressionante.", + "example_sentence_english": "The view from the top of the mountain was truly impressive.", + "pos": "adjective", + "word_frequency": 4643 + }, + { + "word": "informato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informed", + "romanization": "informato", + "example_sentence_native": "È importante rimanere informati sulle notizie attuali.", + "example_sentence_english": "It's important to stay informed about current news.", + "pos": "adjective", + "word_frequency": 4644 + }, + { + "word": "interiore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inner", + "romanization": "interiore", + "example_sentence_native": "Ha una forza interiore incredibile.", + "example_sentence_english": "She has incredible inner strength.", + "pos": "adjective", + "word_frequency": 4645 + }, + { + "word": "invenzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invention", + "romanization": "invenzione", + "example_sentence_native": "La ruota è stata un'invenzione rivoluzionaria.", + "example_sentence_english": "The wheel was a revolutionary invention.", + "pos": "noun", + "word_frequency": 4646 + }, + { + "word": "invidia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "envy", + "romanization": "invidia", + "example_sentence_native": "L'invidia può essere un sentimento distruttivo.", + "example_sentence_english": "Envy can be a destructive feeling.", + "pos": "noun", + "word_frequency": 4647 + }, + { + "word": "lavorativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "working", + "romanization": "lavorativo", + "example_sentence_native": "Il lunedì è il primo giorno lavorativo della settimana.", + "example_sentence_english": "Monday is the first working day of the week.", + "pos": "adjective", + "word_frequency": 4648 + }, + { + "word": "mago", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wizard", + "romanization": "mago", + "example_sentence_native": "Il mago ha fatto sparire il coniglio dal cappello.", + "example_sentence_english": "The magician made the rabbit disappear from the hat.", + "pos": "noun", + "word_frequency": 4649 + }, + { + "word": "martire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "martyr", + "romanization": "martire", + "example_sentence_native": "È ricordato come un martire per la sua causa.", + "example_sentence_english": "He is remembered as a martyr for his cause.", + "pos": "noun", + "word_frequency": 4650 + }, + { + "word": "matrice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "matrix", + "romanization": "matrice", + "example_sentence_native": "La matrice del problema era più complessa del previsto.", + "example_sentence_english": "The matrix of the problem was more complex than expected.", + "pos": "noun", + "word_frequency": 4652 + }, + { + "word": "montaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly", + "romanization": "montaggio", + "example_sentence_native": "Il montaggio del mobile ha richiesto diverse ore.", + "example_sentence_english": "The assembly of the furniture took several hours.", + "pos": "noun", + "word_frequency": 4654 + }, + { + "word": "nervo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nerve", + "romanization": "nervo", + "example_sentence_native": "Si è pizzicato un nervo nella schiena.", + "example_sentence_english": "He pinched a nerve in his back.", + "pos": "noun", + "word_frequency": 4655 + }, + { + "word": "nuoto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimming", + "romanization": "nuoto", + "example_sentence_native": "Il nuoto è un ottimo esercizio per tutto il corpo.", + "example_sentence_english": "Swimming is a great full-body exercise.", + "pos": "noun", + "word_frequency": 4658 + }, + { + "word": "onestà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "honesty", + "romanization": "onestà", + "example_sentence_native": "L'onestà è una qualità fondamentale in ogni relazione.", + "example_sentence_english": "Honesty is a fundamental quality in any relationship.", + "pos": "noun", + "word_frequency": 4659 + }, + { + "word": "pianura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plain", + "romanization": "pianura", + "example_sentence_native": "La Pianura Padana è una vasta area pianeggiante in Italia.", + "example_sentence_english": "The Po Valley is a vast flat area in Italy.", + "pos": "noun", + "word_frequency": 4661 + }, + { + "word": "pino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pine tree", + "romanization": "pino", + "example_sentence_native": "Nel nostro giardino c'è un grande pino.", + "example_sentence_english": "There is a large pine tree in our garden.", + "pos": "noun", + "word_frequency": 4662 + }, + { + "word": "podio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "podium", + "romanization": "podio", + "example_sentence_native": "L'atleta è salito sul podio per ricevere la medaglia.", + "example_sentence_english": "The athlete stepped onto the podium to receive the medal.", + "pos": "noun", + "word_frequency": 4663 + }, + { + "word": "prostituzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitution", + "romanization": "prostituzione", + "example_sentence_native": "La prostituzione è un fenomeno sociale complesso.", + "example_sentence_english": "Prostitution is a complex social phenomenon.", + "pos": "noun", + "word_frequency": 4664 + }, + { + "word": "recarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go", + "romanization": "recarsi", + "example_sentence_native": "Dobbiamo recarci all'aeroporto entro le tre.", + "example_sentence_english": "We must go to the airport by three o'clock.", + "pos": "verb", + "word_frequency": 4666 + }, + { + "word": "rilevare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detect", + "romanization": "rilevare", + "example_sentence_native": "Il sensore può rilevare piccole variazioni di temperatura.", + "example_sentence_english": "The sensor can detect small temperature variations.", + "pos": "verb", + "word_frequency": 4667 + }, + { + "word": "ritirare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to withdraw", + "romanization": "ritirare", + "example_sentence_native": "Devo ritirare un pacco all'ufficio postale.", + "example_sentence_english": "I need to pick up a package at the post office.", + "pos": "verb", + "word_frequency": 4668 + }, + { + "word": "rivelazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revelation", + "romanization": "rivelazione", + "example_sentence_native": "La sua testimonianza è stata una vera rivelazione.", + "example_sentence_english": "His testimony was a true revelation.", + "pos": "noun", + "word_frequency": 4669 + }, + { + "word": "rotazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotation", + "romanization": "rotazione", + "example_sentence_native": "La rotazione della Terra causa l'alternarsi del giorno e della notte.", + "example_sentence_english": "The Earth's rotation causes the alternation of day and night.", + "pos": "noun", + "word_frequency": 4670 + }, + { + "word": "routine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "routine", + "romanization": "routine", + "example_sentence_native": "La mia routine mattutina include una corsa.", + "example_sentence_english": "My morning routine includes a run.", + "pos": "noun", + "word_frequency": 4671 + }, + { + "word": "rovinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ruin", + "romanization": "rovinare", + "example_sentence_native": "La pioggia ha rovinato il nostro picnic.", + "example_sentence_english": "The rain ruined our picnic.", + "pos": "verb", + "word_frequency": 4672 + }, + { + "word": "salario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salary", + "romanization": "salario", + "example_sentence_native": "Il suo salario è stato aumentato quest'anno.", + "example_sentence_english": "His salary was increased this year.", + "pos": "noun", + "word_frequency": 4674 + }, + { + "word": "seguito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequel", + "romanization": "seguito", + "example_sentence_native": "Il seguito del film è stato deludente.", + "example_sentence_english": "The sequel to the movie was disappointing.", + "pos": "noun", + "word_frequency": 4676 + }, + { + "word": "sfortunatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfortunately", + "romanization": "sfortunatamente", + "example_sentence_native": "Sfortunatamente, non siamo riusciti a trovare i biglietti.", + "example_sentence_english": "Unfortunately, we couldn't find the tickets.", + "pos": "adverb", + "word_frequency": 4677 + }, + { + "word": "sinonimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synonym", + "romanization": "sinonimo", + "example_sentence_native": "Felice è un sinonimo di contento.", + "example_sentence_english": "Happy is a synonym for content.", + "pos": "noun", + "word_frequency": 4679 + }, + { + "word": "sognare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dream", + "romanization": "sognare", + "example_sentence_native": "Mi piace sognare ad occhi aperti.", + "example_sentence_english": "I like to daydream.", + "pos": "verb", + "word_frequency": 4680 + }, + { + "word": "solido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solid;strong", + "romanization": "solido", + "example_sentence_native": "Il tavolo è molto solido.", + "example_sentence_english": "The table is very solid.", + "pos": "adjective", + "word_frequency": 4681 + }, + { + "word": "sorridere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to smile", + "romanization": "sorridere", + "example_sentence_native": "Lei ama sorridere sempre.", + "example_sentence_english": "She loves to smile always.", + "pos": "verb", + "word_frequency": 4682 + }, + { + "word": "spettro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spectrum;ghost", + "romanization": "spettro", + "example_sentence_native": "L'analisi ha rivelato un ampio spettro di colori.", + "example_sentence_english": "The analysis revealed a wide spectrum of colors.", + "pos": "noun", + "word_frequency": 4683 + }, + { + "word": "stampo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mold;type", + "romanization": "stampo", + "example_sentence_native": "Ho usato uno stampo per fare i biscotti.", + "example_sentence_english": "I used a mold to make the cookies.", + "pos": "noun", + "word_frequency": 4684 + }, + { + "word": "tecnologico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "technological", + "romanization": "tecnologico", + "example_sentence_native": "Viviamo in un'era tecnologica.", + "example_sentence_english": "We live in a technological era.", + "pos": "adjective", + "word_frequency": 4685 + }, + { + "word": "vaccino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vaccine", + "romanization": "vaccino", + "example_sentence_native": "Il vaccino è importante per la salute pubblica.", + "example_sentence_english": "The vaccine is important for public health.", + "pos": "noun", + "word_frequency": 4687 + }, + { + "word": "abitare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to live;to reside", + "romanization": "abitare", + "example_sentence_native": "Abito a Roma da cinque anni.", + "example_sentence_english": "I have lived in Rome for five years.", + "pos": "verb", + "word_frequency": 4688 + }, + { + "word": "alzato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raised;lifted", + "romanization": "alzato", + "example_sentence_native": "Ha alzato la mano per fare una domanda.", + "example_sentence_english": "He raised his hand to ask a question.", + "pos": "verb", + "word_frequency": 4690 + }, + { + "word": "ampie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wide;ample", + "romanization": "ampie", + "example_sentence_native": "Le strade sono ampie e pulite.", + "example_sentence_english": "The streets are wide and clean.", + "pos": "adjective", + "word_frequency": 4691 + }, + { + "word": "animazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animation;entertainment", + "romanization": "animazione", + "example_sentence_native": "Il film d'animazione era molto divertente.", + "example_sentence_english": "The animated movie was very funny.", + "pos": "noun", + "word_frequency": 4692 + }, + { + "word": "assegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "check (financial);assignment", + "romanization": "assegno", + "example_sentence_native": "Ho ricevuto un assegno per il mio lavoro.", + "example_sentence_english": "I received a check for my work.", + "pos": "noun", + "word_frequency": 4694 + }, + { + "word": "avvicinarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to approach;to come closer", + "romanization": "avvicinarsi", + "example_sentence_native": "Si sta avvicinando il Natale.", + "example_sentence_english": "Christmas is approaching.", + "pos": "verb", + "word_frequency": 4695 + }, + { + "word": "azzardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gamble;risk;hazard", + "romanization": "azzardo", + "example_sentence_native": "Giocare d'azzardo può essere pericoloso.", + "example_sentence_english": "Gambling can be dangerous.", + "pos": "noun", + "word_frequency": 4696 + }, + { + "word": "becco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beak;spout", + "romanization": "becco", + "example_sentence_native": "L'uccello aveva un becco affilato.", + "example_sentence_english": "The bird had a sharp beak.", + "pos": "noun", + "word_frequency": 4698 + }, + { + "word": "biologico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biological;organic", + "romanization": "biologico", + "example_sentence_native": "Preferisco comprare prodotti biologici.", + "example_sentence_english": "I prefer to buy organic products.", + "pos": "adjective", + "word_frequency": 4699 + }, + { + "word": "bontà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goodness;kindness", + "romanization": "bontà", + "example_sentence_native": "La sua bontà è ammirevole.", + "example_sentence_english": "Her goodness is admirable.", + "pos": "noun", + "word_frequency": 4700 + }, + { + "word": "cabina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cabin;booth", + "romanization": "cabina", + "example_sentence_native": "La cabina telefonica è fuori servizio.", + "example_sentence_english": "The phone booth is out of service.", + "pos": "noun", + "word_frequency": 4701 + }, + { + "word": "calibro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caliber;gauge", + "romanization": "calibro", + "example_sentence_native": "Il calibro dell'arma era insolito.", + "example_sentence_english": "The caliber of the weapon was unusual.", + "pos": "noun", + "word_frequency": 4702 + }, + { + "word": "clandestino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clandestine;illegal immigrant", + "romanization": "clandestino", + "example_sentence_native": "Molti clandestini cercano una vita migliore.", + "example_sentence_english": "Many illegal immigrants seek a better life.", + "pos": "noun", + "word_frequency": 4707 + }, + { + "word": "commesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shop assistant;committed", + "romanization": "commesso", + "example_sentence_native": "Il commesso mi ha aiutato a trovare il vestito.", + "example_sentence_english": "The shop assistant helped me find the dress.", + "pos": "noun", + "word_frequency": 4708 + }, + { + "word": "condotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conduit;duct;conducted", + "romanization": "condotto", + "example_sentence_native": "Il condotto dell'aria condizionata era intasato.", + "example_sentence_english": "The air conditioning duct was clogged.", + "pos": "noun", + "word_frequency": 4709 + }, + { + "word": "consigliare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to advise;to recommend", + "romanization": "consigliare", + "example_sentence_native": "Ti consiglio di studiare di più.", + "example_sentence_english": "I advise you to study more.", + "pos": "verb", + "word_frequency": 4710 + }, + { + "word": "consistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistent;substantial", + "romanization": "consistente", + "example_sentence_native": "Ha fatto progressi consistenti.", + "example_sentence_english": "He made consistent progress.", + "pos": "adjective", + "word_frequency": 4711 + }, + { + "word": "coordinata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coordinate", + "romanization": "coordinata", + "example_sentence_native": "Dobbiamo trovare le coordinate esatte.", + "example_sentence_english": "We need to find the exact coordinates.", + "pos": "noun", + "word_frequency": 4712 + }, + { + "word": "cornice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame;setting", + "romanization": "cornice", + "example_sentence_native": "Ho comprato una nuova cornice per la foto.", + "example_sentence_english": "I bought a new frame for the photo.", + "pos": "noun", + "word_frequency": 4713 + }, + { + "word": "costoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "expensive", + "romanization": "costoso", + "example_sentence_native": "Quell'auto è troppo costosa per me.", + "example_sentence_english": "That car is too expensive for me.", + "pos": "adjective", + "word_frequency": 4714 + }, + { + "word": "creatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creator", + "romanization": "creatore", + "example_sentence_native": "Il creatore del software ha rilasciato un aggiornamento.", + "example_sentence_english": "The software creator released an update.", + "pos": "noun", + "word_frequency": 4715 + }, + { + "word": "effettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effective;actual", + "romanization": "effettivo", + "example_sentence_native": "La data effettiva di inizio è domani.", + "example_sentence_english": "The effective start date is tomorrow.", + "pos": "adjective", + "word_frequency": 4716 + }, + { + "word": "esagerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exaggerate", + "romanization": "esagerare", + "example_sentence_native": "Non devi esagerare con le tue storie.", + "example_sentence_english": "You shouldn't exaggerate with your stories.", + "pos": "verb", + "word_frequency": 4717 + }, + { + "word": "fortezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortress;strength", + "romanization": "fortezza", + "example_sentence_native": "Hanno costruito una fortezza inespugnabile.", + "example_sentence_english": "They built an impregnable fortress.", + "pos": "noun", + "word_frequency": 4718 + }, + { + "word": "fottere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to screw;to f*** (vulgar)", + "romanization": "fottere", + "example_sentence_native": "Non mi fottere con queste scuse.", + "example_sentence_english": "Don't screw with me with these excuses.", + "pos": "verb", + "word_frequency": 4719 + }, + { + "word": "frequentemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frequently", + "romanization": "frequentemente", + "example_sentence_native": "Visita frequentemente i suoi nonni.", + "example_sentence_english": "She frequently visits her grandparents.", + "pos": "adverb", + "word_frequency": 4720 + }, + { + "word": "funzionalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "functionality", + "romanization": "funzionalità", + "example_sentence_native": "La nuova app offre molte funzionalità utili.", + "example_sentence_english": "The new app offers many useful functionalities.", + "pos": "noun", + "word_frequency": 4721 + }, + { + "word": "giuramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oath", + "romanization": "giuramento", + "example_sentence_native": "Ha prestato giuramento di fedeltà alla costituzione.", + "example_sentence_english": "He took an oath of loyalty to the constitution.", + "pos": "noun", + "word_frequency": 4723 + }, + { + "word": "guerriero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warrior", + "romanization": "guerriero", + "example_sentence_native": "Il guerriero difese il suo popolo con coraggio.", + "example_sentence_english": "The warrior defended his people with courage.", + "pos": "noun", + "word_frequency": 4724 + }, + { + "word": "impulso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impulse", + "romanization": "impulso", + "example_sentence_native": "Ha agito d'impulso senza pensarci.", + "example_sentence_english": "He acted on impulse without thinking.", + "pos": "noun", + "word_frequency": 4727 + }, + { + "word": "inaugurazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inauguration", + "romanization": "inaugurazione", + "example_sentence_native": "L'inaugurazione del nuovo museo è stata un successo.", + "example_sentence_english": "The inauguration of the new museum was a success.", + "pos": "noun", + "word_frequency": 4728 + }, + { + "word": "indeterminato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indeterminate", + "romanization": "indeterminato", + "example_sentence_native": "Il futuro è ancora indeterminato.", + "example_sentence_english": "The future is still indeterminate.", + "pos": "adjective", + "word_frequency": 4729 + }, + { + "word": "inquietante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsettling", + "romanization": "inquietante", + "example_sentence_native": "C'era un silenzio inquietante nella casa.", + "example_sentence_english": "There was an unsettling silence in the house.", + "pos": "adjective", + "word_frequency": 4730 + }, + { + "word": "installazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installation", + "romanization": "installazione", + "example_sentence_native": "L'installazione del software è stata rapida.", + "example_sentence_english": "The software installation was quick.", + "pos": "noun", + "word_frequency": 4731 + }, + { + "word": "management", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "romanization": "management", + "example_sentence_native": "Il management ha deciso di implementare nuove strategie.", + "example_sentence_english": "The management decided to implement new strategies.", + "pos": "noun", + "word_frequency": 4738 + }, + { + "word": "matto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crazy", + "romanization": "matto", + "example_sentence_native": "Quel gatto è completamente matto.", + "example_sentence_english": "That cat is completely crazy.", + "pos": "adjective", + "word_frequency": 4739 + }, + { + "word": "miniera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mine", + "romanization": "miniera", + "example_sentence_native": "Molti uomini lavoravano nella miniera di carbone.", + "example_sentence_english": "Many men worked in the coal mine.", + "pos": "noun", + "word_frequency": 4741 + }, + { + "word": "misterioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mysterious", + "romanization": "misterioso", + "example_sentence_native": "Ha un sorriso molto misterioso.", + "example_sentence_english": "He has a very mysterious smile.", + "pos": "adjective", + "word_frequency": 4742 + }, + { + "word": "motto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motto", + "romanization": "motto", + "example_sentence_native": "Il loro motto è \"Mai arrendersi\".", + "example_sentence_english": "Their motto is \"Never give up\".", + "pos": "noun", + "word_frequency": 4743 + }, + { + "word": "mutanda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "underwear (singular)", + "romanization": "mutanda", + "example_sentence_native": "Ho comprato una nuova mutanda.", + "example_sentence_english": "I bought a new pair of underwear.", + "pos": "noun", + "word_frequency": 4744 + }, + { + "word": "nodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "knot", + "romanization": "nodo", + "example_sentence_native": "Ha fatto un nodo stretto alla corda.", + "example_sentence_english": "He tied a tight knot in the rope.", + "pos": "noun", + "word_frequency": 4746 + }, + { + "word": "novecento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twentieth century", + "romanization": "Novecento", + "example_sentence_native": "L'arte del Novecento è molto varia.", + "example_sentence_english": "Twentieth-century art is very varied.", + "pos": "noun", + "word_frequency": 4748 + }, + { + "word": "pareggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draw", + "romanization": "pareggio", + "example_sentence_native": "La partita è finita in pareggio.", + "example_sentence_english": "The match ended in a draw.", + "pos": "noun", + "word_frequency": 4749 + }, + { + "word": "portatile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "portable", + "romanization": "portatile", + "example_sentence_native": "Ho comprato un nuovo computer portatile.", + "example_sentence_english": "I bought a new portable computer.", + "pos": "adjective", + "word_frequency": 4750 + }, + { + "word": "portavoce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spokesperson", + "romanization": "portavoce", + "example_sentence_native": "Il portavoce del governo ha rilasciato una dichiarazione.", + "example_sentence_english": "The government spokesperson released a statement.", + "pos": "noun", + "word_frequency": 4751 + }, + { + "word": "proporzionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportional", + "romanization": "proporzionale", + "example_sentence_native": "La pena deve essere proporzionale al reato.", + "example_sentence_english": "The punishment must be proportional to the crime.", + "pos": "adjective", + "word_frequency": 4752 + }, + { + "word": "pullman", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coach", + "romanization": "pullman", + "example_sentence_native": "Abbiamo preso il pullman per andare in montagna.", + "example_sentence_english": "We took the coach to go to the mountains.", + "pos": "noun", + "word_frequency": 4753 + }, + { + "word": "rap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rap (music)", + "romanization": "rap", + "example_sentence_native": "Ascolta spesso musica rap.", + "example_sentence_english": "He often listens to rap music.", + "pos": "noun", + "word_frequency": 4754 + }, + { + "word": "rapina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "robbery", + "romanization": "rapina", + "example_sentence_native": "C'è stata una rapina in banca ieri sera.", + "example_sentence_english": "There was a bank robbery last night.", + "pos": "noun", + "word_frequency": 4755 + }, + { + "word": "reagire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to react", + "romanization": "reagire", + "example_sentence_native": "Come hai reagito alla notizia?", + "example_sentence_english": "How did you react to the news?", + "pos": "verb", + "word_frequency": 4756 + }, + { + "word": "ridotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reduced", + "romanization": "ridotto", + "example_sentence_native": "Hanno venduto i biglietti a prezzo ridotto.", + "example_sentence_english": "They sold the tickets at a reduced price.", + "pos": "adjective", + "word_frequency": 4757 + }, + { + "word": "riparare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to repair", + "romanization": "riparare", + "example_sentence_native": "Devo riparare la mia bicicletta.", + "example_sentence_english": "I need to repair my bicycle.", + "pos": "verb", + "word_frequency": 4758 + }, + { + "word": "scudo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shield", + "romanization": "scudo", + "example_sentence_native": "Il cavaliere portava uno scudo.", + "example_sentence_english": "The knight carried a shield.", + "pos": "noun", + "word_frequency": 4760 + }, + { + "word": "sfogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outlet;vent", + "romanization": "sfogo", + "example_sentence_native": "Aveva bisogno di uno sfogo per la sua rabbia.", + "example_sentence_english": "He needed an outlet for his anger.", + "pos": "noun", + "word_frequency": 4761 + }, + { + "word": "socialismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialism", + "romanization": "socialismo", + "example_sentence_native": "Il socialismo è un sistema politico ed economico.", + "example_sentence_english": "Socialism is a political and economic system.", + "pos": "noun", + "word_frequency": 4762 + }, + { + "word": "soffitto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ceiling", + "romanization": "soffitto", + "example_sentence_native": "Il soffitto della stanza è alto.", + "example_sentence_english": "The ceiling of the room is high.", + "pos": "noun", + "word_frequency": 4763 + }, + { + "word": "sottotitolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subtitle", + "romanization": "sottotitolo", + "example_sentence_native": "Ho guardato il film con i sottotitoli.", + "example_sentence_english": "I watched the movie with subtitles.", + "pos": "noun", + "word_frequency": 4764 + }, + { + "word": "stupendo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonderful;splendid", + "romanization": "stupendo", + "example_sentence_native": "Il panorama era stupendo.", + "example_sentence_english": "The view was wonderful.", + "pos": "adjective", + "word_frequency": 4765 + }, + { + "word": "tablet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablet", + "romanization": "tablet", + "example_sentence_native": "Ho comprato un nuovo tablet.", + "example_sentence_english": "I bought a new tablet.", + "pos": "noun", + "word_frequency": 4766 + }, + { + "word": "talk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talk (as in a speech or show)", + "romanization": "talk", + "example_sentence_native": "Ha partecipato a un talk show.", + "example_sentence_english": "He participated in a talk show.", + "pos": "noun", + "word_frequency": 4767 + }, + { + "word": "tattica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactic", + "romanization": "tattica", + "example_sentence_native": "La loro tattica era molto efficace.", + "example_sentence_english": "Their tactic was very effective.", + "pos": "noun", + "word_frequency": 4768 + }, + { + "word": "trappola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trap", + "romanization": "trappola", + "example_sentence_native": "Hanno teso una trappola per il topo.", + "example_sentence_english": "They set a trap for the mouse.", + "pos": "noun", + "word_frequency": 4769 + }, + { + "word": "trionfo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumph", + "romanization": "trionfo", + "example_sentence_native": "La vittoria è stata un vero trionfo.", + "example_sentence_english": "The victory was a true triumph.", + "pos": "noun", + "word_frequency": 4770 + }, + { + "word": "unirsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to join", + "romanization": "unirsi", + "example_sentence_native": "Vogliamo unirci al gruppo.", + "example_sentence_english": "We want to join the group.", + "pos": "verb", + "word_frequency": 4771 + }, + { + "word": "united", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "united", + "romanization": "united", + "example_sentence_native": "Erano uniti nel loro scopo.", + "example_sentence_english": "They were united in their purpose.", + "pos": "adjective", + "word_frequency": 4772 + }, + { + "word": "validità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validity", + "romanization": "validità", + "example_sentence_native": "La validità del documento è di un anno.", + "example_sentence_english": "The validity of the document is one year.", + "pos": "noun", + "word_frequency": 4773 + }, + { + "word": "ago", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "needle", + "romanization": "ago", + "example_sentence_native": "Ho bisogno di un ago e filo.", + "example_sentence_english": "I need a needle and thread.", + "pos": "noun", + "word_frequency": 4774 + }, + { + "word": "all'aperto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outdoors;in the open air", + "romanization": "all'aperto", + "example_sentence_native": "Ci piace mangiare all'aperto.", + "example_sentence_english": "We like to eat outdoors.", + "pos": "adverb", + "word_frequency": 4775 + }, + { + "word": "amaro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bitter", + "romanization": "amaro", + "example_sentence_native": "Il caffè era molto amaro.", + "example_sentence_english": "The coffee was very bitter.", + "pos": "adjective", + "word_frequency": 4776 + }, + { + "word": "ape", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bee", + "romanization": "ape", + "example_sentence_native": "Un'ape ha volato vicino al fiore.", + "example_sentence_english": "A bee flew near the flower.", + "pos": "noun", + "word_frequency": 4777 + }, + { + "word": "asiatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Asian", + "romanization": "asiatico", + "example_sentence_native": "Ha studiato la cultura asiatica.", + "example_sentence_english": "He studied Asian culture.", + "pos": "adjective", + "word_frequency": 4778 + }, + { + "word": "barone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baron", + "romanization": "barone", + "example_sentence_native": "Il barone viveva in un grande castello.", + "example_sentence_english": "The baron lived in a large castle.", + "pos": "noun", + "word_frequency": 4779 + }, + { + "word": "biologia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biology", + "romanization": "biologia", + "example_sentence_native": "Ha studiato biologia all'università.", + "example_sentence_english": "She studied biology at university.", + "pos": "noun", + "word_frequency": 4781 + }, + { + "word": "campana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell", + "romanization": "campana", + "example_sentence_native": "La campana della chiesa suonava.", + "example_sentence_english": "The church bell was ringing.", + "pos": "noun", + "word_frequency": 4782 + }, + { + "word": "capitalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalism", + "romanization": "capitalismo", + "example_sentence_native": "Il capitalismo è un sistema economico.", + "example_sentence_english": "Capitalism is an economic system.", + "pos": "noun", + "word_frequency": 4783 + }, + { + "word": "circo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "circus", + "romanization": "circo", + "example_sentence_native": "Siamo andati al circo ieri.", + "example_sentence_english": "We went to the circus yesterday.", + "pos": "noun", + "word_frequency": 4784 + }, + { + "word": "circondare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to surround", + "romanization": "circondare", + "example_sentence_native": "La polizia ha circondato l'edificio.", + "example_sentence_english": "The police surrounded the building.", + "pos": "verb", + "word_frequency": 4785 + }, + { + "word": "cola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cola", + "romanization": "cola", + "example_sentence_native": "Vorrei una cola, per favore.", + "example_sentence_english": "I would like a cola, please.", + "pos": "noun", + "word_frequency": 4786 + }, + { + "word": "collocazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placement;location", + "romanization": "collocazione", + "example_sentence_native": "La collocazione del libro è nella sezione storia.", + "example_sentence_english": "The placement of the book is in the history section.", + "pos": "noun", + "word_frequency": 4787 + }, + { + "word": "combinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to combine;to arrange", + "romanization": "combinare", + "example_sentence_native": "Dobbiamo combinare gli ingredienti.", + "example_sentence_english": "We need to combine the ingredients.", + "pos": "verb", + "word_frequency": 4789 + }, + { + "word": "complotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot;conspiracy", + "romanization": "complotto", + "example_sentence_native": "Hanno scoperto un complotto contro il governo.", + "example_sentence_english": "They discovered a plot against the government.", + "pos": "noun", + "word_frequency": 4790 + }, + { + "word": "contante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cash", + "romanization": "contante", + "example_sentence_native": "Preferisco pagare in contanti.", + "example_sentence_english": "I prefer to pay in cash.", + "pos": "noun", + "word_frequency": 4791 + }, + { + "word": "copyright", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "copyright", + "romanization": "copyright", + "example_sentence_native": "Questo libro è protetto da copyright.", + "example_sentence_english": "This book is protected by copyright.", + "pos": "noun", + "word_frequency": 4792 + }, + { + "word": "cotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crush (infatuation)", + "romanization": "cotta", + "example_sentence_native": "Ha una cotta per il suo collega.", + "example_sentence_english": "She has a crush on her colleague.", + "pos": "noun", + "word_frequency": 4793 + }, + { + "word": "decorazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decoration", + "romanization": "decorazione", + "example_sentence_native": "Le decorazioni natalizie sono bellissime.", + "example_sentence_english": "The Christmas decorations are beautiful.", + "pos": "noun", + "word_frequency": 4796 + }, + { + "word": "derby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "derby (sports match)", + "romanization": "derby", + "example_sentence_native": "Il derby tra le due squadre è sempre emozionante.", + "example_sentence_english": "The derby between the two teams is always exciting.", + "pos": "noun", + "word_frequency": 4798 + }, + { + "word": "disputa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute", + "romanization": "disputa", + "example_sentence_native": "C'è stata una disputa sulla proprietà.", + "example_sentence_english": "There was a dispute over the property.", + "pos": "noun", + "word_frequency": 4799 + }, + { + "word": "eleganza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elegance", + "romanization": "eleganza", + "example_sentence_native": "La sua eleganza è innegabile.", + "example_sentence_english": "Her elegance is undeniable.", + "pos": "noun", + "word_frequency": 4800 + }, + { + "word": "esilio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exile", + "romanization": "esilio", + "example_sentence_native": "Ha vissuto molti anni in esilio.", + "example_sentence_english": "He lived many years in exile.", + "pos": "noun", + "word_frequency": 4801 + }, + { + "word": "essenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "essence", + "romanization": "essenza", + "example_sentence_native": "L'essenza del problema è la mancanza di comunicazione.", + "example_sentence_english": "The essence of the problem is the lack of communication.", + "pos": "noun", + "word_frequency": 4802 + }, + { + "word": "ettaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hectare", + "romanization": "ettaro", + "example_sentence_native": "Il campo misura dieci ettari.", + "example_sentence_english": "The field measures ten hectares.", + "pos": "noun", + "word_frequency": 4803 + }, + { + "word": "ferroviario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railway (adj.)", + "romanization": "ferroviario", + "example_sentence_native": "Il trasporto ferroviario è molto efficiente.", + "example_sentence_english": "Railway transport is very efficient.", + "pos": "adjective", + "word_frequency": 4805 + }, + { + "word": "gabbia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cage", + "romanization": "gabbia", + "example_sentence_native": "L'uccello è nella gabbia.", + "example_sentence_english": "The bird is in the cage.", + "pos": "noun", + "word_frequency": 4806 + }, + { + "word": "importo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amount", + "romanization": "importo", + "example_sentence_native": "L'importo totale è di cento euro.", + "example_sentence_english": "The total amount is one hundred euros.", + "pos": "noun", + "word_frequency": 4810 + }, + { + "word": "infezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infection", + "romanization": "infezione", + "example_sentence_native": "Ha preso un'infezione alla gola.", + "example_sentence_english": "He got a throat infection.", + "pos": "noun", + "word_frequency": 4811 + }, + { + "word": "invernale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "winter (adj.)", + "romanization": "invernale", + "example_sentence_native": "Le temperature invernali sono molto basse.", + "example_sentence_english": "Winter temperatures are very low.", + "pos": "adjective", + "word_frequency": 4812 + }, + { + "word": "istituire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to establish", + "romanization": "istituire", + "example_sentence_native": "Hanno deciso di istituire un nuovo comitato.", + "example_sentence_english": "They decided to establish a new committee.", + "pos": "verb", + "word_frequency": 4813 + }, + { + "word": "laterale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lateral", + "romanization": "laterale", + "example_sentence_native": "C'è un ingresso laterale all'edificio.", + "example_sentence_english": "There is a side entrance to the building.", + "pos": "adjective", + "word_frequency": 4814 + }, + { + "word": "lesione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injury", + "romanization": "lesione", + "example_sentence_native": "Ha riportato una lesione al ginocchio.", + "example_sentence_english": "He sustained a knee injury.", + "pos": "noun", + "word_frequency": 4815 + }, + { + "word": "limone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lemon", + "romanization": "limone", + "example_sentence_native": "Vorrei una fetta di limone nel tè.", + "example_sentence_english": "I would like a slice of lemon in my tea.", + "pos": "noun", + "word_frequency": 4817 + }, + { + "word": "manga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manga", + "romanization": "manga", + "example_sentence_native": "Leggo molti manga nel mio tempo libero.", + "example_sentence_english": "I read a lot of manga in my free time.", + "pos": "noun", + "word_frequency": 4819 + }, + { + "word": "mediazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediation", + "romanization": "mediazione", + "example_sentence_native": "Hanno cercato una mediazione per risolvere il conflitto.", + "example_sentence_english": "They sought mediation to resolve the conflict.", + "pos": "noun", + "word_frequency": 4821 + }, + { + "word": "menzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mention", + "romanization": "menzione", + "example_sentence_native": "Ha ricevuto una menzione d'onore.", + "example_sentence_english": "He received an honorable mention.", + "pos": "noun", + "word_frequency": 4822 + }, + { + "word": "minacciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to threaten", + "romanization": "minacciare", + "example_sentence_native": "Non dovresti minacciare le persone.", + "example_sentence_english": "You shouldn't threaten people.", + "pos": "verb", + "word_frequency": 4823 + }, + { + "word": "monitor", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monitor", + "romanization": "monitor", + "example_sentence_native": "Il monitor del computer è spento.", + "example_sentence_english": "The computer monitor is off.", + "pos": "noun", + "word_frequency": 4824 + }, + { + "word": "organico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organic", + "romanization": "organico", + "example_sentence_native": "Preferisco comprare prodotti organici.", + "example_sentence_english": "I prefer to buy organic products.", + "pos": "adjective", + "word_frequency": 4825 + }, + { + "word": "palese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obvious", + "romanization": "palese", + "example_sentence_native": "La sua intenzione era palese a tutti.", + "example_sentence_english": "His intention was obvious to everyone.", + "pos": "adjective", + "word_frequency": 4826 + }, + { + "word": "parrocchia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parish", + "romanization": "parrocchia", + "example_sentence_native": "La chiesa della parrocchia è molto antica.", + "example_sentence_english": "The parish church is very old.", + "pos": "noun", + "word_frequency": 4827 + }, + { + "word": "permettersi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to afford", + "romanization": "permettersi", + "example_sentence_native": "Non posso permettermi una macchina nuova.", + "example_sentence_english": "I can't afford a new car.", + "pos": "verb", + "word_frequency": 4828 + }, + { + "word": "peste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plague", + "romanization": "peste", + "example_sentence_native": "La peste nera ha causato milioni di morti.", + "example_sentence_english": "The Black Death caused millions of deaths.", + "pos": "noun", + "word_frequency": 4829 + }, + { + "word": "pianoforte", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piano", + "romanization": "pianoforte", + "example_sentence_native": "Suona il pianoforte da quando era bambino.", + "example_sentence_english": "He has played the piano since he was a child.", + "pos": "noun", + "word_frequency": 4830 + }, + { + "word": "piega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fold", + "romanization": "piega", + "example_sentence_native": "C'è una piega sulla mia camicia.", + "example_sentence_english": "There's a crease on my shirt.", + "pos": "noun", + "word_frequency": 4831 + }, + { + "word": "pressoché", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "almost", + "romanization": "pressoché", + "example_sentence_native": "Il lavoro è pressoché finito.", + "example_sentence_english": "The work is almost finished.", + "pos": "adverb", + "word_frequency": 4832 + }, + { + "word": "pretendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demand", + "romanization": "pretendere", + "example_sentence_native": "Non puoi pretendere che tutti siano d'accordo con te.", + "example_sentence_english": "You can't demand that everyone agrees with you.", + "pos": "verb", + "word_frequency": 4833 + }, + { + "word": "produttività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productivity", + "romanization": "produttività", + "example_sentence_native": "Dobbiamo aumentare la produttività.", + "example_sentence_english": "We need to increase productivity.", + "pos": "noun", + "word_frequency": 4834 + }, + { + "word": "protetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protected", + "romanization": "protetto", + "example_sentence_native": "L'area è protetta dalla legge.", + "example_sentence_english": "The area is protected by law.", + "pos": "adjective", + "word_frequency": 4835 + }, + { + "word": "riflesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflection", + "romanization": "riflesso", + "example_sentence_native": "Ho visto il mio riflesso nell'acqua.", + "example_sentence_english": "I saw my reflection in the water.", + "pos": "noun", + "word_frequency": 4836 + }, + { + "word": "riparo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shelter", + "romanization": "riparo", + "example_sentence_native": "Abbiamo cercato riparo dalla pioggia.", + "example_sentence_english": "We sought shelter from the rain.", + "pos": "noun", + "word_frequency": 4837 + }, + { + "word": "scultura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sculpture", + "romanization": "scultura", + "example_sentence_native": "La scultura era bellissima.", + "example_sentence_english": "The sculpture was beautiful.", + "pos": "noun", + "word_frequency": 4841 + }, + { + "word": "sex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sex", + "romanization": "sex", + "example_sentence_native": "Il sex è un argomento delicato.", + "example_sentence_english": "Sex is a delicate topic.", + "pos": "noun", + "word_frequency": 4843 + }, + { + "word": "sopravvissuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survivor", + "romanization": "sopravvissuto", + "example_sentence_native": "Era l'unico sopravvissuto all'incidente.", + "example_sentence_english": "He was the only survivor of the accident.", + "pos": "noun", + "word_frequency": 4845 + }, + { + "word": "spegnere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn off", + "romanization": "spegnere", + "example_sentence_native": "Puoi spegnere la luce, per favore?", + "example_sentence_english": "Can you turn off the light, please?", + "pos": "verb", + "word_frequency": 4846 + }, + { + "word": "stimare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to estimate;to value", + "romanization": "stimare", + "example_sentence_native": "Stimo molto il suo lavoro.", + "example_sentence_english": "I highly value his work.", + "pos": "verb", + "word_frequency": 4847 + }, + { + "word": "tolleranza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tolerance", + "romanization": "tolleranza", + "example_sentence_native": "La tolleranza è una virtù importante.", + "example_sentence_english": "Tolerance is an important virtue.", + "pos": "noun", + "word_frequency": 4849 + }, + { + "word": "trarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draw;to derive", + "romanization": "trarre", + "example_sentence_native": "Possiamo trarre una lezione da questa esperienza.", + "example_sentence_english": "We can draw a lesson from this experience.", + "pos": "verb", + "word_frequency": 4850 + }, + { + "word": "trasportare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to transport;to carry", + "romanization": "trasportare", + "example_sentence_native": "Dobbiamo trasportare i mobili al nuovo appartamento.", + "example_sentence_english": "We need to transport the furniture to the new apartment.", + "pos": "verb", + "word_frequency": 4851 + }, + { + "word": "abituare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accustom", + "romanization": "abituare", + "example_sentence_native": "Devi abituare il tuo corpo al nuovo orario.", + "example_sentence_english": "You need to accustom your body to the new schedule.", + "pos": "verb", + "word_frequency": 4852 + }, + { + "word": "addestramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "training", + "romanization": "addestramento", + "example_sentence_native": "Il cane ha bisogno di addestramento.", + "example_sentence_english": "The dog needs training.", + "pos": "noun", + "word_frequency": 4853 + }, + { + "word": "assessore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "councilor;assessor", + "romanization": "assessore", + "example_sentence_native": "L'assessore alla cultura ha presentato il nuovo progetto.", + "example_sentence_english": "The councilor for culture presented the new project.", + "pos": "noun", + "word_frequency": 4855 + }, + { + "word": "assicurarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make sure;to ensure", + "romanization": "assicurarsi", + "example_sentence_native": "Devi assicurarti che la porta sia chiusa.", + "example_sentence_english": "You need to make sure the door is closed.", + "pos": "verb", + "word_frequency": 4856 + }, + { + "word": "benedizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blessing", + "romanization": "benedizione", + "example_sentence_native": "È stata una vera benedizione.", + "example_sentence_english": "It was a true blessing.", + "pos": "noun", + "word_frequency": 4857 + }, + { + "word": "biografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biography", + "romanization": "biografia", + "example_sentence_native": "Ho letto una biografia interessante.", + "example_sentence_english": "I read an interesting biography.", + "pos": "noun", + "word_frequency": 4858 + }, + { + "word": "cantina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cellar;winery", + "romanization": "cantina", + "example_sentence_native": "Abbiamo una cantina piena di vino.", + "example_sentence_english": "We have a cellar full of wine.", + "pos": "noun", + "word_frequency": 4859 + }, + { + "word": "carenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortage;lack", + "romanization": "carenza", + "example_sentence_native": "C'è una carenza di acqua in alcune regioni.", + "example_sentence_english": "There is a shortage of water in some regions.", + "pos": "noun", + "word_frequency": 4860 + }, + { + "word": "cartella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "folder;satchel", + "romanization": "cartella", + "example_sentence_native": "Ho messo i documenti nella cartella.", + "example_sentence_english": "I put the documents in the folder.", + "pos": "noun", + "word_frequency": 4861 + }, + { + "word": "chance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chance;opportunity", + "romanization": "chance", + "example_sentence_native": "Hai una buona chance di vincere.", + "example_sentence_english": "You have a good chance to win.", + "pos": "noun", + "word_frequency": 4862 + }, + { + "word": "cinquecento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "five hundred", + "romanization": "cinquecento", + "example_sentence_native": "Ho bisogno di cinquecento euro.", + "example_sentence_english": "I need five hundred euros.", + "pos": "noun", + "word_frequency": 4864 + }, + { + "word": "coerente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherent;consistent", + "romanization": "coerente", + "example_sentence_native": "Il suo discorso era molto coerente.", + "example_sentence_english": "His speech was very coherent.", + "pos": "adjective", + "word_frequency": 4865 + }, + { + "word": "concedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant;to concede", + "romanization": "concedere", + "example_sentence_native": "Il giudice ha deciso di concedere la libertà su cauzione.", + "example_sentence_english": "The judge decided to grant bail.", + "pos": "verb", + "word_frequency": 4866 + }, + { + "word": "decente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decent;respectable", + "romanization": "decente", + "example_sentence_native": "Ha fatto un lavoro decente.", + "example_sentence_english": "He did a decent job.", + "pos": "adjective", + "word_frequency": 4867 + }, + { + "word": "densità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "density", + "romanization": "densità", + "example_sentence_native": "La densità della popolazione è alta in città.", + "example_sentence_english": "The population density is high in the city.", + "pos": "noun", + "word_frequency": 4869 + }, + { + "word": "desiderato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desired;wanted", + "romanization": "desiderato", + "example_sentence_native": "Ha ottenuto il risultato desiderato.", + "example_sentence_english": "He achieved the desired result.", + "pos": "adjective", + "word_frequency": 4870 + }, + { + "word": "disprezzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contempt;scorn", + "romanization": "disprezzo", + "example_sentence_native": "Ha mostrato disprezzo per le sue opinioni.", + "example_sentence_english": "He showed contempt for her opinions.", + "pos": "noun", + "word_frequency": 4871 + }, + { + "word": "emendamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amendment", + "romanization": "emendamento", + "example_sentence_native": "Hanno proposto un emendamento alla legge.", + "example_sentence_english": "They proposed an amendment to the law.", + "pos": "noun", + "word_frequency": 4873 + }, + { + "word": "express", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "express;fast", + "romanization": "express", + "example_sentence_native": "Ho preso il treno express.", + "example_sentence_english": "I took the express train.", + "pos": "adjective", + "word_frequency": 4874 + }, + { + "word": "follower", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "follower", + "romanization": "follower", + "example_sentence_native": "Ha molti follower sui social media.", + "example_sentence_english": "She has many followers on social media.", + "pos": "noun", + "word_frequency": 4875 + }, + { + "word": "formalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formally", + "romanization": "formalmente", + "example_sentence_native": "La proposta è stata accettata formalmente.", + "example_sentence_english": "The proposal was formally accepted.", + "pos": "adverb", + "word_frequency": 4876 + }, + { + "word": "genovese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Genoese;from Genoa", + "romanization": "genovese", + "example_sentence_native": "La cucina genovese è famosa per il pesto.", + "example_sentence_english": "Genoese cuisine is famous for pesto.", + "pos": "adjective", + "word_frequency": 4877 + }, + { + "word": "gentilezza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kindness;politeness", + "romanization": "gentilezza", + "example_sentence_native": "La sua gentilezza mi ha colpito.", + "example_sentence_english": "Her kindness impressed me.", + "pos": "noun", + "word_frequency": 4878 + }, + { + "word": "gentilmente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kindly;politely", + "romanization": "gentilmente", + "example_sentence_native": "Potresti chiudere la porta gentilmente?", + "example_sentence_english": "Could you kindly close the door?", + "pos": "adverb", + "word_frequency": 4879 + }, + { + "word": "giurisdizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jurisdiction", + "romanization": "giurisdizione", + "example_sentence_native": "Questo caso rientra nella nostra giurisdizione.", + "example_sentence_english": "This case falls within our jurisdiction.", + "pos": "noun", + "word_frequency": 4881 + }, + { + "word": "goccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drop", + "romanization": "goccia", + "example_sentence_native": "Una goccia d'acqua cadde dal rubinetto.", + "example_sentence_english": "A drop of water fell from the tap.", + "pos": "noun", + "word_frequency": 4882 + }, + { + "word": "grammatica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grammar", + "romanization": "grammatica", + "example_sentence_native": "Studiare la grammatica è importante per imparare una lingua.", + "example_sentence_english": "Studying grammar is important for learning a language.", + "pos": "noun", + "word_frequency": 4883 + }, + { + "word": "immenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immense", + "romanization": "immenso", + "example_sentence_native": "L'universo è immenso e misterioso.", + "example_sentence_english": "The universe is immense and mysterious.", + "pos": "adjective", + "word_frequency": 4887 + }, + { + "word": "investitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investor", + "romanization": "investitore", + "example_sentence_native": "L'investitore ha deciso di puntare su nuove tecnologie.", + "example_sentence_english": "The investor decided to focus on new technologies.", + "pos": "noun", + "word_frequency": 4888 + }, + { + "word": "lesbica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lesbian", + "romanization": "lesbica", + "example_sentence_native": "La comunità lesbica è molto unita.", + "example_sentence_english": "The lesbian community is very united.", + "pos": "noun", + "word_frequency": 4891 + }, + { + "word": "licenziamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismissal;layoff", + "romanization": "licenziamento", + "example_sentence_native": "Il licenziamento è stato inaspettato.", + "example_sentence_english": "The dismissal was unexpected.", + "pos": "noun", + "word_frequency": 4892 + }, + { + "word": "martello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hammer", + "romanization": "martello", + "example_sentence_native": "Ho bisogno di un martello per appendere il quadro.", + "example_sentence_english": "I need a hammer to hang the picture.", + "pos": "noun", + "word_frequency": 4895 + }, + { + "word": "micro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "micro;tiny", + "romanization": "micro", + "example_sentence_native": "Vive in un micro appartamento in centro.", + "example_sentence_english": "He lives in a tiny apartment downtown.", + "pos": "adjective", + "word_frequency": 4896 + }, + { + "word": "modella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model (female)", + "romanization": "modella", + "example_sentence_native": "La modella ha sfilato con eleganza.", + "example_sentence_english": "The model walked the runway with elegance.", + "pos": "noun", + "word_frequency": 4897 + }, + { + "word": "monopolio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monopoly", + "romanization": "monopolio", + "example_sentence_native": "L'azienda detiene il monopolio del mercato.", + "example_sentence_english": "The company holds the monopoly of the market.", + "pos": "noun", + "word_frequency": 4898 + }, + { + "word": "narrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to narrate;to tell", + "romanization": "narrare", + "example_sentence_native": "Il nonno amava narrare storie ai nipoti.", + "example_sentence_english": "The grandfather loved to narrate stories to his grandchildren.", + "pos": "verb", + "word_frequency": 4900 + }, + { + "word": "necessitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to need;to require", + "romanization": "necessitare", + "example_sentence_native": "Questa situazione necessita di una soluzione immediata.", + "example_sentence_english": "This situation requires an immediate solution.", + "pos": "verb", + "word_frequency": 4901 + }, + { + "word": "nostalgia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nostalgia", + "romanization": "nostalgia", + "example_sentence_native": "Ho provato una forte nostalgia per la mia città natale.", + "example_sentence_english": "I felt a strong nostalgia for my hometown.", + "pos": "noun", + "word_frequency": 4904 + }, + { + "word": "nuvola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloud", + "romanization": "nuvola", + "example_sentence_native": "Una nuvola scura copriva il sole.", + "example_sentence_english": "A dark cloud covered the sun.", + "pos": "noun", + "word_frequency": 4905 + }, + { + "word": "orso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bear", + "romanization": "orso", + "example_sentence_native": "L'orso bruno vive nelle foreste.", + "example_sentence_english": "The brown bear lives in the forests.", + "pos": "noun", + "word_frequency": 4906 + }, + { + "word": "profeta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophet", + "romanization": "profeta", + "example_sentence_native": "Il profeta ha annunciato un messaggio di speranza.", + "example_sentence_english": "The prophet announced a message of hope.", + "pos": "noun", + "word_frequency": 4908 + }, + { + "word": "proiettile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullet;projectile", + "romanization": "proiettile", + "example_sentence_native": "Hanno trovato un proiettile sul luogo del crimine.", + "example_sentence_english": "They found a bullet at the crime scene.", + "pos": "noun", + "word_frequency": 4909 + }, + { + "word": "ragionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reason;to think", + "romanization": "ragionare", + "example_sentence_native": "Dobbiamo ragionare con calma per trovare una soluzione.", + "example_sentence_english": "We need to reason calmly to find a solution.", + "pos": "verb", + "word_frequency": 4910 + }, + { + "word": "regio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royal;regal", + "romanization": "regio", + "example_sentence_native": "La Reggia di Caserta è un magnifico palazzo.", + "example_sentence_english": "The Royal Palace of Caserta is a magnificent palace.", + "pos": "adjective", + "word_frequency": 4911 + }, + { + "word": "ribellione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebellion", + "romanization": "ribellione", + "example_sentence_native": "La ribellione è stata sedata dalle forze dell'ordine.", + "example_sentence_english": "The rebellion was quelled by the police forces.", + "pos": "noun", + "word_frequency": 4912 + }, + { + "word": "ricominciare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to restart;to begin again", + "romanization": "ricominciare", + "example_sentence_native": "Dopo la pausa, dobbiamo ricominciare a lavorare.", + "example_sentence_english": "After the break, we need to start working again.", + "pos": "verb", + "word_frequency": 4913 + }, + { + "word": "riscontro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feedback;confirmation", + "romanization": "riscontro", + "example_sentence_native": "Attendiamo un riscontro sulla nostra proposta.", + "example_sentence_english": "We await feedback on our proposal.", + "pos": "noun", + "word_frequency": 4914 + }, + { + "word": "sasso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stone;rock", + "romanization": "sasso", + "example_sentence_native": "Ha lanciato un sasso nel lago.", + "example_sentence_english": "He threw a stone into the lake.", + "pos": "noun", + "word_frequency": 4915 + }, + { + "word": "scrivania", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "desk", + "romanization": "scrivania", + "example_sentence_native": "La mia scrivania è piena di libri.", + "example_sentence_english": "My desk is full of books.", + "pos": "noun", + "word_frequency": 4916 + }, + { + "word": "seggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seat (e.g.;electoral);polling station", + "romanization": "seggio", + "example_sentence_native": "Si è recato al seggio per votare.", + "example_sentence_english": "He went to the polling station to vote.", + "pos": "noun", + "word_frequency": 4917 + }, + { + "word": "seta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silk", + "romanization": "seta", + "example_sentence_native": "Il vestito era fatto di pura seta.", + "example_sentence_english": "The dress was made of pure silk.", + "pos": "noun", + "word_frequency": 4918 + }, + { + "word": "sistemare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to arrange;to tidy up;to fix", + "romanization": "sistemare", + "example_sentence_native": "Devo sistemare la mia stanza prima che arrivino gli ospiti.", + "example_sentence_english": "I need to tidy up my room before the guests arrive.", + "pos": "verb", + "word_frequency": 4919 + }, + { + "word": "sottoscrivere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subscribe;to sign", + "romanization": "sottoscrivere", + "example_sentence_native": "Devi sottoscrivere il contratto prima di iniziare.", + "example_sentence_english": "You must sign the contract before starting.", + "pos": "verb", + "word_frequency": 4921 + }, + { + "word": "specializzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialized", + "romanization": "specializzato", + "example_sentence_native": "È un medico specializzato in cardiologia.", + "example_sentence_english": "He is a doctor specialized in cardiology.", + "pos": "adjective", + "word_frequency": 4922 + }, + { + "word": "spedire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to send;to ship", + "romanization": "spedire", + "example_sentence_native": "Devo spedire questo pacco domani.", + "example_sentence_english": "I need to send this package tomorrow.", + "pos": "verb", + "word_frequency": 4923 + }, + { + "word": "successore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "successor", + "romanization": "successore", + "example_sentence_native": "Il suo successore sarà annunciato la prossima settimana.", + "example_sentence_english": "His successor will be announced next week.", + "pos": "noun", + "word_frequency": 4924 + }, + { + "word": "temporaneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporary", + "romanization": "temporaneo", + "example_sentence_native": "Questa è una soluzione temporanea.", + "example_sentence_english": "This is a temporary solution.", + "pos": "adjective", + "word_frequency": 4925 + }, + { + "word": "tranquillità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tranquility;peace", + "romanization": "tranquillità", + "example_sentence_native": "Cerco un po' di tranquillità dopo una lunga giornata.", + "example_sentence_english": "I'm looking for some peace after a long day.", + "pos": "noun", + "word_frequency": 4926 + }, + { + "word": "tributo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribute;tax", + "romanization": "tributo", + "example_sentence_native": "Hanno reso un tributo all'artista scomparso.", + "example_sentence_english": "They paid a tribute to the deceased artist.", + "pos": "noun", + "word_frequency": 4927 + }, + { + "word": "troll", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troll", + "romanization": "troll", + "example_sentence_native": "Non dare retta ai troll su internet.", + "example_sentence_english": "Don't pay attention to internet trolls.", + "pos": "noun", + "word_frequency": 4928 + }, + { + "word": "versare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pour;to pay", + "romanization": "versare", + "example_sentence_native": "Puoi versare un po' d'acqua nel bicchiere?", + "example_sentence_english": "Can you pour some water into the glass?", + "pos": "verb", + "word_frequency": 4930 + }, + { + "word": "volontariato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volunteering;volunteer work", + "romanization": "volontariato", + "example_sentence_native": "Fa molto volontariato nel suo tempo libero.", + "example_sentence_english": "He does a lot of volunteering in his free time.", + "pos": "noun", + "word_frequency": 4932 + }, + { + "word": "zaino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "backpack", + "romanization": "zaino", + "example_sentence_native": "Ho messo i libri nello zaino.", + "example_sentence_english": "I put the books in the backpack.", + "pos": "noun", + "word_frequency": 4933 + }, + { + "word": "accendere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to turn on;to light", + "romanization": "accendere", + "example_sentence_native": "Puoi accendere la luce, per favore?", + "example_sentence_english": "Can you turn on the light, please?", + "pos": "verb", + "word_frequency": 4934 + }, + { + "word": "adattamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adaptation", + "romanization": "adattamento", + "example_sentence_native": "L'adattamento al nuovo ambiente è stato difficile.", + "example_sentence_english": "The adaptation to the new environment was difficult.", + "pos": "noun", + "word_frequency": 4935 + }, + { + "word": "alieno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alien;foreigner", + "romanization": "alieno", + "example_sentence_native": "Ha visto un film su un alieno.", + "example_sentence_english": "He saw a movie about an alien.", + "pos": "noun", + "word_frequency": 4936 + }, + { + "word": "ammirare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to admire", + "romanization": "ammirare", + "example_sentence_native": "Ammiro molto il suo lavoro.", + "example_sentence_english": "I greatly admire his work.", + "pos": "verb", + "word_frequency": 4938 + }, + { + "word": "autista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driver", + "romanization": "autista", + "example_sentence_native": "L'autista ci ha portato all'aeroporto.", + "example_sentence_english": "The driver took us to the airport.", + "pos": "noun", + "word_frequency": 4939 + }, + { + "word": "bio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organic;bio", + "romanization": "bio", + "example_sentence_native": "Preferisco comprare prodotti bio.", + "example_sentence_english": "I prefer to buy organic products.", + "pos": "adjective", + "word_frequency": 4941 + }, + { + "word": "biondo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "blonde", + "romanization": "biondo", + "example_sentence_native": "Ha i capelli biondi.", + "example_sentence_english": "She has blonde hair.", + "pos": "adjective", + "word_frequency": 4942 + }, + { + "word": "campus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "campus", + "romanization": "campus", + "example_sentence_native": "Il campus universitario è molto grande.", + "example_sentence_english": "The university campus is very large.", + "pos": "noun", + "word_frequency": 4943 + }, + { + "word": "celebrità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebrity", + "romanization": "celebrità", + "example_sentence_native": "Era una celebrità negli anni '80.", + "example_sentence_english": "She was a celebrity in the 80s.", + "pos": "noun", + "word_frequency": 4944 + }, + { + "word": "censimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "census", + "romanization": "censimento", + "example_sentence_native": "Il censimento della popolazione si svolge ogni dieci anni.", + "example_sentence_english": "The population census takes place every ten years.", + "pos": "noun", + "word_frequency": 4945 + }, + { + "word": "check", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "check", + "romanization": "check", + "example_sentence_native": "Dobbiamo fare un check prima di partire.", + "example_sentence_english": "We need to do a check before leaving.", + "pos": "noun", + "word_frequency": 4946 + }, + { + "word": "clan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clan", + "romanization": "clan", + "example_sentence_native": "Appartiene a un antico clan scozzese.", + "example_sentence_english": "He belongs to an ancient Scottish clan.", + "pos": "noun", + "word_frequency": 4947 + }, + { + "word": "coach", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach", + "romanization": "coach", + "example_sentence_native": "Il nostro coach ci ha motivato molto.", + "example_sentence_english": "Our coach motivated us a lot.", + "pos": "noun", + "word_frequency": 4948 + }, + { + "word": "coniglio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "rabbit", + "romanization": "coniglio", + "example_sentence_native": "Il coniglio mangia carote.", + "example_sentence_english": "The rabbit eats carrots.", + "pos": "noun", + "word_frequency": 4950 + }, + { + "word": "cost", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cost", + "romanization": "cost", + "example_sentence_native": "Dobbiamo ridurre i costi di produzione.", + "example_sentence_english": "We need to reduce production costs.", + "pos": "noun", + "word_frequency": 4951 + }, + { + "word": "creativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "creative", + "romanization": "creativo", + "example_sentence_native": "È una persona molto creativa.", + "example_sentence_english": "He is a very creative person.", + "pos": "adjective", + "word_frequency": 4952 + }, + { + "word": "decimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tenth", + "romanization": "decimo", + "example_sentence_native": "È arrivato decimo nella gara.", + "example_sentence_english": "He finished tenth in the race.", + "pos": "adjective", + "word_frequency": 4955 + }, + { + "word": "designer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designer", + "romanization": "designer", + "example_sentence_native": "Ha assunto un nuovo designer per il progetto.", + "example_sentence_english": "He hired a new designer for the project.", + "pos": "noun", + "word_frequency": 4958 + }, + { + "word": "detective", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detective", + "romanization": "detective", + "example_sentence_native": "Il detective sta indagando sul caso.", + "example_sentence_english": "The detective is investigating the case.", + "pos": "noun", + "word_frequency": 4959 + }, + { + "word": "discendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descendant", + "romanization": "discendente", + "example_sentence_native": "È un discendente diretto di una famiglia nobile.", + "example_sentence_english": "He is a direct descendant of a noble family.", + "pos": "noun", + "word_frequency": 4960 + }, + { + "word": "disegnare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to draw", + "romanization": "disegnare", + "example_sentence_native": "Mi piace disegnare paesaggi.", + "example_sentence_english": "I like to draw landscapes.", + "pos": "verb", + "word_frequency": 4961 + }, + { + "word": "energetico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "energetic", + "romanization": "energetico", + "example_sentence_native": "Ha una personalità molto energetica.", + "example_sentence_english": "He has a very energetic personality.", + "pos": "adjective", + "word_frequency": 4965 + }, + { + "word": "esibizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibition;performance", + "romanization": "esibizione", + "example_sentence_native": "L'esibizione è stata un successo.", + "example_sentence_english": "The performance was a success.", + "pos": "noun", + "word_frequency": 4966 + }, + { + "word": "etero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterosexual", + "romanization": "etero", + "example_sentence_native": "È una persona etero.", + "example_sentence_english": "He is a heterosexual person.", + "pos": "adjective", + "word_frequency": 4967 + }, + { + "word": "fattoria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farm", + "romanization": "fattoria", + "example_sentence_native": "I bambini hanno visitato la fattoria.", + "example_sentence_english": "The children visited the farm.", + "pos": "noun", + "word_frequency": 4968 + }, + { + "word": "fetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slice", + "romanization": "fetta", + "example_sentence_native": "Vorrei una fetta di torta.", + "example_sentence_english": "I would like a slice of cake.", + "pos": "noun", + "word_frequency": 4969 + }, + { + "word": "fossa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pit;ditch;grave", + "romanization": "fossa", + "example_sentence_native": "Hanno scavato una profonda fossa.", + "example_sentence_english": "They dug a deep pit.", + "pos": "noun", + "word_frequency": 4970 + }, + { + "word": "furia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fury;rage", + "romanization": "furia", + "example_sentence_native": "La sua furia era incontrollabile.", + "example_sentence_english": "His fury was uncontrollable.", + "pos": "noun", + "word_frequency": 4971 + }, + { + "word": "gradualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gradually", + "romanization": "gradualmente", + "example_sentence_native": "La situazione sta migliorando gradualmente.", + "example_sentence_english": "The situation is gradually improving.", + "pos": "adverb", + "word_frequency": 4972 + }, + { + "word": "identico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "identical", + "romanization": "identico", + "example_sentence_native": "I due disegni sono identici.", + "example_sentence_english": "The two drawings are identical.", + "pos": "adjective", + "word_frequency": 4974 + }, + { + "word": "iniziate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "(you plural) start;begin", + "romanization": "iniziate", + "example_sentence_native": "Iniziate il lavoro adesso.", + "example_sentence_english": "Start the work now.", + "pos": "verb", + "word_frequency": 4976 + }, + { + "word": "interprete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interpreter", + "romanization": "interprete", + "example_sentence_native": "L'interprete ha tradotto il discorso.", + "example_sentence_english": "The interpreter translated the speech.", + "pos": "noun", + "word_frequency": 4977 + }, + { + "word": "interruzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interruption;break", + "romanization": "interruzione", + "example_sentence_native": "C'è stata un'interruzione di corrente.", + "example_sentence_english": "There was a power interruption.", + "pos": "noun", + "word_frequency": 4978 + }, + { + "word": "ira", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wrath;anger", + "romanization": "ira", + "example_sentence_native": "La sua ira era evidente.", + "example_sentence_english": "His wrath was evident.", + "pos": "noun", + "word_frequency": 4979 + }, + { + "word": "largamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "largely;widely", + "romanization": "largamente", + "example_sentence_native": "La sua teoria è largamente accettata.", + "example_sentence_english": "His theory is widely accepted.", + "pos": "adverb", + "word_frequency": 4981 + }, + { + "word": "laser", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laser", + "romanization": "laser", + "example_sentence_native": "Hanno usato un laser per tagliare il metallo.", + "example_sentence_english": "They used a laser to cut the metal.", + "pos": "noun", + "word_frequency": 4982 + }, + { + "word": "licenziare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fire;to dismiss", + "romanization": "licenziare", + "example_sentence_native": "L'azienda ha dovuto licenziare alcuni dipendenti.", + "example_sentence_english": "The company had to fire some employees.", + "pos": "verb", + "word_frequency": 4985 + }, + { + "word": "lite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarrel;dispute", + "romanization": "lite", + "example_sentence_native": "Hanno avuto una lite accesa.", + "example_sentence_english": "They had a heated quarrel.", + "pos": "noun", + "word_frequency": 4986 + }, + { + "word": "mais", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "corn;maize", + "romanization": "mais", + "example_sentence_native": "Mi piace il mais dolce.", + "example_sentence_english": "I like sweet corn.", + "pos": "noun", + "word_frequency": 4988 + }, + { + "word": "maledetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cursed;damned", + "romanization": "maledetto", + "example_sentence_native": "Che giorno maledetto!", + "example_sentence_english": "What a cursed day!", + "pos": "adjective", + "word_frequency": 4989 + }, + { + "word": "massacro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "massacre", + "romanization": "massacro", + "example_sentence_native": "Il massacro è stato un evento tragico.", + "example_sentence_english": "The massacre was a tragic event.", + "pos": "noun", + "word_frequency": 4990 + }, + { + "word": "obbiettivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective;goal", + "romanization": "obbiettivo", + "example_sentence_native": "Il nostro obbiettivo è raggiungere il successo.", + "example_sentence_english": "Our objective is to achieve success.", + "pos": "noun", + "word_frequency": 4992 + }, + { + "word": "odierno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "current;present-day", + "romanization": "odierno", + "example_sentence_native": "La situazione odierna è complessa.", + "example_sentence_english": "The current situation is complex.", + "pos": "adjective", + "word_frequency": 4993 + }, + { + "word": "palo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pole;post", + "romanization": "palo", + "example_sentence_native": "Ha colpito il palo con la palla.", + "example_sentence_english": "He hit the post with the ball.", + "pos": "noun", + "word_frequency": 4995 + }, + { + "word": "parentesi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parenthesis;bracket", + "romanization": "parentesi", + "example_sentence_native": "Metti la frase tra parentesi.", + "example_sentence_english": "Put the sentence in parentheses.", + "pos": "noun", + "word_frequency": 4996 + }, + { + "word": "partigiano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partisan", + "romanization": "partigiano", + "example_sentence_native": "I partigiani hanno combattuto per la libertà.", + "example_sentence_english": "The partisans fought for freedom.", + "pos": "noun", + "word_frequency": 4997 + }, + { + "word": "pesantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heavily", + "romanization": "pesantemente", + "example_sentence_native": "Ha piovuto pesantemente tutta la notte.", + "example_sentence_english": "It rained heavily all night.", + "pos": "adverb", + "word_frequency": 4998 + }, + { + "word": "presumibilmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presumably", + "romanization": "presumibilmente", + "example_sentence_native": "Presumibilmente, arriverà domani.", + "example_sentence_english": "Presumably, he will arrive tomorrow.", + "pos": "adverb", + "word_frequency": 4999 + }, + { + "word": "presumere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presume;assume", + "romanization": "presumere", + "example_sentence_native": "Non si può presumere che sia colpevole senza prove.", + "example_sentence_english": "One cannot presume he is guilty without proof.", + "pos": "verb", + "word_frequency": 5000 + }, + { + "word": "rafforzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strengthen;reinforce", + "romanization": "rafforzare", + "example_sentence_native": "Dobbiamo rafforzare i nostri legami con i paesi vicini.", + "example_sentence_english": "We must strengthen our ties with neighboring countries.", + "pos": "verb", + "word_frequency": 5001 + }, + { + "word": "ricambio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spare part;replacement", + "romanization": "ricambio", + "example_sentence_native": "Ho bisogno di un pezzo di ricambio per la mia auto.", + "example_sentence_english": "I need a spare part for my car.", + "pos": "noun", + "word_frequency": 5002 + }, + { + "word": "richiamare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "call back;recall;remind", + "romanization": "richiamare", + "example_sentence_native": "Devo richiamare il cliente più tardi.", + "example_sentence_english": "I need to call the client back later.", + "pos": "verb", + "word_frequency": 5003 + }, + { + "word": "risveglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awakening;revival", + "romanization": "risveglio", + "example_sentence_native": "Il risveglio della natura in primavera è bellissimo.", + "example_sentence_english": "The awakening of nature in spring is beautiful.", + "pos": "noun", + "word_frequency": 5004 + }, + { + "word": "scatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprint;click;shot (photo)", + "romanization": "scatto", + "example_sentence_native": "Ha fatto uno scatto incredibile per vincere la gara.", + "example_sentence_english": "He made an incredible sprint to win the race.", + "pos": "noun", + "word_frequency": 5005 + }, + { + "word": "scavo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excavation;digging", + "romanization": "scavo", + "example_sentence_native": "Gli archeologi hanno iniziato un nuovo scavo nel sito antico.", + "example_sentence_english": "The archaeologists started a new excavation at the ancient site.", + "pos": "noun", + "word_frequency": 5006 + }, + { + "word": "scorrere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flow;slide;scroll", + "romanization": "scorrere", + "example_sentence_native": "L'acqua scorre nel fiume.", + "example_sentence_english": "The water flows in the river.", + "pos": "verb", + "word_frequency": 5007 + }, + { + "word": "separare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "separate", + "romanization": "separare", + "example_sentence_native": "Dobbiamo separare i rifiuti riciclabili.", + "example_sentence_english": "We need to separate the recyclable waste.", + "pos": "verb", + "word_frequency": 5008 + }, + { + "word": "tardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "late;slow", + "romanization": "tardo", + "example_sentence_native": "È arrivato tardo all'appuntamento.", + "example_sentence_english": "He arrived late for the appointment.", + "pos": "adjective", + "word_frequency": 5012 + }, + { + "word": "teologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theology", + "romanization": "teologia", + "example_sentence_native": "Ha studiato teologia all'università.", + "example_sentence_english": "He studied theology at university.", + "pos": "noun", + "word_frequency": 5013 + }, + { + "word": "tessera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "card (membership;ID);token", + "romanization": "tessera", + "example_sentence_native": "Ho dimenticato la mia tessera della biblioteca.", + "example_sentence_english": "I forgot my library card.", + "pos": "noun", + "word_frequency": 5014 + }, + { + "word": "tredici", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirteen", + "romanization": "tredici", + "example_sentence_native": "Ci sono tredici studenti in classe.", + "example_sentence_english": "There are thirteen students in the class.", + "pos": "adjective", + "word_frequency": 5015 + }, + { + "word": "valigia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "suitcase", + "romanization": "valigia", + "example_sentence_native": "Devo preparare la mia valigia per il viaggio.", + "example_sentence_english": "I need to pack my suitcase for the trip.", + "pos": "noun", + "word_frequency": 5016 + }, + { + "word": "veleno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poison;venom", + "romanization": "veleno", + "example_sentence_native": "Il serpente ha iniettato il suo veleno nella preda.", + "example_sentence_english": "The snake injected its venom into the prey.", + "pos": "noun", + "word_frequency": 5017 + }, + { + "word": "vettura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car;vehicle;carriage", + "romanization": "vettura", + "example_sentence_native": "La vettura è parcheggiata davanti all'edificio.", + "example_sentence_english": "The car is parked in front of the building.", + "pos": "noun", + "word_frequency": 5019 + }, + { + "word": "vocale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vowel", + "romanization": "vocale", + "example_sentence_native": "In italiano ci sono cinque vocali.", + "example_sentence_english": "In Italian there are five vowels.", + "pos": "noun", + "word_frequency": 5020 + }, + { + "word": "volgare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulgar;common;vernacular", + "romanization": "volgare", + "example_sentence_native": "Il latino volgare era la lingua parlata dal popolo.", + "example_sentence_english": "Vulgar Latin was the language spoken by the common people.", + "pos": "adjective", + "word_frequency": 5021 + }, + { + "word": "alloggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accommodation;lodging", + "romanization": "alloggio", + "example_sentence_native": "Stiamo cercando un alloggio per le vacanze.", + "example_sentence_english": "We are looking for accommodation for the holidays.", + "pos": "noun", + "word_frequency": 5025 + }, + { + "word": "avvertire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warn;notify;feel", + "romanization": "avvertire", + "example_sentence_native": "Devo avvertire i miei genitori del mio arrivo.", + "example_sentence_english": "I need to notify my parents of my arrival.", + "pos": "verb", + "word_frequency": 5026 + }, + { + "word": "cacciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunt;chase;drive out", + "romanization": "cacciare", + "example_sentence_native": "Il cane ha iniziato a cacciare la palla.", + "example_sentence_english": "The dog started to chase the ball.", + "pos": "verb", + "word_frequency": 5029 + }, + { + "word": "cancello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gate", + "romanization": "cancello", + "example_sentence_native": "Il cancello del giardino era aperto.", + "example_sentence_english": "The garden gate was open.", + "pos": "noun", + "word_frequency": 5030 + }, + { + "word": "cava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarry;mine", + "romanization": "cava", + "example_sentence_native": "La cava di marmo è molto antica.", + "example_sentence_english": "The marble quarry is very old.", + "pos": "noun", + "word_frequency": 5031 + }, + { + "word": "colla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glue", + "romanization": "colla", + "example_sentence_native": "Ho bisogno di colla per riparare questo oggetto.", + "example_sentence_english": "I need glue to repair this object.", + "pos": "noun", + "word_frequency": 5032 + }, + { + "word": "commerciante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merchant;trader;shopkeeper", + "romanization": "commerciante", + "example_sentence_native": "Il commerciante ha un negozio in centro.", + "example_sentence_english": "The merchant has a shop in the city center.", + "pos": "noun", + "word_frequency": 5033 + }, + { + "word": "comunione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communion;fellowship", + "romanization": "comunione", + "example_sentence_native": "Hanno celebrato la prima comunione di loro figlio.", + "example_sentence_english": "They celebrated their son's first communion.", + "pos": "noun", + "word_frequency": 5034 + }, + { + "word": "configurazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "configuration;setup", + "romanization": "configurazione", + "example_sentence_native": "La configurazione del sistema è complessa.", + "example_sentence_english": "The system configuration is complex.", + "pos": "noun", + "word_frequency": 5035 + }, + { + "word": "danneggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damage;harm", + "romanization": "danneggiare", + "example_sentence_native": "Il forte vento ha danneggiato il tetto.", + "example_sentence_english": "The strong wind damaged the roof.", + "pos": "verb", + "word_frequency": 5036 + }, + { + "word": "dopotutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "after all", + "romanization": "dopotutto", + "example_sentence_native": "Dopotutto, aveva ragione lui.", + "example_sentence_english": "After all, he was right.", + "pos": "adverb", + "word_frequency": 5038 + }, + { + "word": "drive", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drive (e.g.;hard drive)", + "romanization": "drive", + "example_sentence_native": "Ho salvato i file sul mio hard drive esterno.", + "example_sentence_english": "I saved the files on my external hard drive.", + "pos": "noun", + "word_frequency": 5039 + }, + { + "word": "ego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ego", + "romanization": "ego", + "example_sentence_native": "Il suo ego è troppo grande per accettare critiche.", + "example_sentence_english": "His ego is too big to accept criticism.", + "pos": "noun", + "word_frequency": 5040 + }, + { + "word": "equivalere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be equivalent to;to amount to", + "romanization": "equivalere", + "example_sentence_native": "Un euro equivale a circa un dollaro.", + "example_sentence_english": "One euro is equivalent to about one dollar.", + "pos": "verb", + "word_frequency": 5042 + }, + { + "word": "etico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethical", + "romanization": "etico", + "example_sentence_native": "Dobbiamo prendere una decisione etica.", + "example_sentence_english": "We must make an ethical decision.", + "pos": "adjective", + "word_frequency": 5043 + }, + { + "word": "fifa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fear;fright", + "romanization": "fifa", + "example_sentence_native": "Ho una gran fifa dei ragni.", + "example_sentence_english": "I have a great fear of spiders.", + "pos": "noun", + "word_frequency": 5044 + }, + { + "word": "fragile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fragile", + "romanization": "fragile", + "example_sentence_native": "Questo vaso è molto fragile.", + "example_sentence_english": "This vase is very fragile.", + "pos": "adjective", + "word_frequency": 5046 + }, + { + "word": "freccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arrow;indicator", + "romanization": "freccia", + "example_sentence_native": "Segui la freccia per trovare l'uscita.", + "example_sentence_english": "Follow the arrow to find the exit.", + "pos": "noun", + "word_frequency": 5048 + }, + { + "word": "gridare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to shout;to yell", + "romanization": "gridare", + "example_sentence_native": "Non gridare, per favore.", + "example_sentence_english": "Don't shout, please.", + "pos": "verb", + "word_frequency": 5049 + }, + { + "word": "impronta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footprint;impression", + "romanization": "impronta", + "example_sentence_native": "Abbiamo trovato un'impronta sulla sabbia.", + "example_sentence_english": "We found a footprint on the sand.", + "pos": "noun", + "word_frequency": 5051 + }, + { + "word": "installare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to install", + "romanization": "installare", + "example_sentence_native": "Devo installare il nuovo software.", + "example_sentence_english": "I need to install the new software.", + "pos": "verb", + "word_frequency": 5052 + }, + { + "word": "intimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intimate;inner", + "romanization": "intimo", + "example_sentence_native": "Hanno un rapporto molto intimo.", + "example_sentence_english": "They have a very intimate relationship.", + "pos": "adjective", + "word_frequency": 5053 + }, + { + "word": "ispettore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inspector", + "romanization": "ispettore", + "example_sentence_native": "L'ispettore è arrivato sulla scena del crimine.", + "example_sentence_english": "The inspector arrived at the crime scene.", + "pos": "noun", + "word_frequency": 5055 + }, + { + "word": "lieve", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slight;light", + "romanization": "lieve", + "example_sentence_native": "Ha avuto solo una lieve ferita.", + "example_sentence_english": "He only had a slight injury.", + "pos": "adjective", + "word_frequency": 5057 + }, + { + "word": "limitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limitation", + "romanization": "limitazione", + "example_sentence_native": "Ci sono alcune limitazioni al suo utilizzo.", + "example_sentence_english": "There are some limitations to its use.", + "pos": "noun", + "word_frequency": 5059 + }, + { + "word": "linguistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguistic", + "romanization": "linguistico", + "example_sentence_native": "Studia gli aspetti linguistici della comunicazione.", + "example_sentence_english": "He studies the linguistic aspects of communication.", + "pos": "adjective", + "word_frequency": 5060 + }, + { + "word": "marea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tide", + "romanization": "marea", + "example_sentence_native": "La marea sta salendo.", + "example_sentence_english": "The tide is rising.", + "pos": "noun", + "word_frequency": 5062 + }, + { + "word": "mazza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "club;bat", + "romanization": "mazza", + "example_sentence_native": "Ha colpito la palla con la mazza.", + "example_sentence_english": "He hit the ball with the bat.", + "pos": "noun", + "word_frequency": 5063 + }, + { + "word": "monarchia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarchy", + "romanization": "monarchia", + "example_sentence_native": "Molti paesi europei erano monarchie.", + "example_sentence_english": "Many European countries were monarchies.", + "pos": "noun", + "word_frequency": 5065 + }, + { + "word": "nient'altro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nothing else", + "romanization": "nient'altro", + "example_sentence_native": "Non voglio nient'altro.", + "example_sentence_english": "I want nothing else.", + "pos": "adverb", + "word_frequency": 5066 + }, + { + "word": "orizzontale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontal", + "romanization": "orizzontale", + "example_sentence_native": "Disegna una linea orizzontale.", + "example_sentence_english": "Draw a horizontal line.", + "pos": "adjective", + "word_frequency": 5068 + }, + { + "word": "panino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sandwich;roll", + "romanization": "panino", + "example_sentence_native": "Vorrei un panino al prosciutto.", + "example_sentence_english": "I would like a ham sandwich.", + "pos": "noun", + "word_frequency": 5069 + }, + { + "word": "passivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passive", + "romanization": "passivo", + "example_sentence_native": "Non essere così passivo, agisci!", + "example_sentence_english": "Don't be so passive, act!", + "pos": "adjective", + "word_frequency": 5070 + }, + { + "word": "pellegrino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrim", + "romanization": "pellegrino", + "example_sentence_native": "Il pellegrino ha raggiunto la meta.", + "example_sentence_english": "The pilgrim reached the destination.", + "pos": "noun", + "word_frequency": 5071 + }, + { + "word": "pesare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to weigh", + "romanization": "pesare", + "example_sentence_native": "Quanto pesa questa valigia?", + "example_sentence_english": "How much does this suitcase weigh?", + "pos": "verb", + "word_frequency": 5072 + }, + { + "word": "piovere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to rain", + "romanization": "piovere", + "example_sentence_native": "Sta per piovere.", + "example_sentence_english": "It's about to rain.", + "pos": "verb", + "word_frequency": 5073 + }, + { + "word": "pomodoro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tomato", + "romanization": "pomodoro", + "example_sentence_native": "Mi piace la salsa di pomodoro.", + "example_sentence_english": "I like tomato sauce.", + "pos": "noun", + "word_frequency": 5074 + }, + { + "word": "pompa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pump", + "romanization": "pompa", + "example_sentence_native": "La pompa dell'acqua è rotta.", + "example_sentence_english": "The water pump is broken.", + "pos": "noun", + "word_frequency": 5075 + }, + { + "word": "praticare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to practice;to perform", + "romanization": "praticare", + "example_sentence_native": "È importante praticare ogni giorno.", + "example_sentence_english": "It's important to practice every day.", + "pos": "verb", + "word_frequency": 5076 + }, + { + "word": "preside", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headmaster;principal", + "romanization": "preside", + "example_sentence_native": "Il preside ha annunciato le nuove regole.", + "example_sentence_english": "The headmaster announced the new rules.", + "pos": "noun", + "word_frequency": 5077 + }, + { + "word": "prestigio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prestige", + "romanization": "prestigio", + "example_sentence_native": "L'università ha un grande prestigio internazionale.", + "example_sentence_english": "The university has great international prestige.", + "pos": "noun", + "word_frequency": 5078 + }, + { + "word": "proteina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protein", + "romanization": "proteina", + "example_sentence_native": "Le proteine sono essenziali per la dieta.", + "example_sentence_english": "Proteins are essential for the diet.", + "pos": "noun", + "word_frequency": 5079 + }, + { + "word": "pub", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pub", + "romanization": "pub", + "example_sentence_native": "Andiamo al pub stasera?", + "example_sentence_english": "Shall we go to the pub tonight?", + "pos": "noun", + "word_frequency": 5080 + }, + { + "word": "rinascita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebirth;revival", + "romanization": "rinascita", + "example_sentence_native": "La città ha vissuto una rinascita culturale.", + "example_sentence_english": "The city experienced a cultural rebirth.", + "pos": "noun", + "word_frequency": 5081 + }, + { + "word": "ringraziamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thanks;gratitude", + "romanization": "ringraziamento", + "example_sentence_native": "Vorrei esprimere il mio ringraziamento per il vostro aiuto.", + "example_sentence_english": "I would like to express my thanks for your help.", + "pos": "noun", + "word_frequency": 5082 + }, + { + "word": "rinnovare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to renew;to renovate", + "romanization": "rinnovare", + "example_sentence_native": "Dobbiamo rinnovare il nostro passaporto.", + "example_sentence_english": "We need to renew our passport.", + "pos": "verb", + "word_frequency": 5083 + }, + { + "word": "sega", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saw", + "romanization": "sega", + "example_sentence_native": "Ha usato una sega per tagliare il legno.", + "example_sentence_english": "He used a saw to cut the wood.", + "pos": "noun", + "word_frequency": 5084 + }, + { + "word": "spostamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "displacement;movement", + "romanization": "spostamento", + "example_sentence_native": "C'è stato uno spostamento di popolazione a causa del terremoto.", + "example_sentence_english": "There was a population displacement due to the earthquake.", + "pos": "noun", + "word_frequency": 5085 + }, + { + "word": "spunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cue;hint;starting point", + "romanization": "spunto", + "example_sentence_native": "Il suo commento mi ha dato uno spunto interessante.", + "example_sentence_english": "His comment gave me an interesting hint.", + "pos": "noun", + "word_frequency": 5086 + }, + { + "word": "strega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "witch", + "romanization": "strega", + "example_sentence_native": "La strega viveva in una casa nel bosco.", + "example_sentence_english": "The witch lived in a house in the woods.", + "pos": "noun", + "word_frequency": 5088 + }, + { + "word": "trauma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trauma", + "romanization": "trauma", + "example_sentence_native": "Ha subito un grave trauma dopo l'incidente.", + "example_sentence_english": "He suffered a severe trauma after the accident.", + "pos": "noun", + "word_frequency": 5092 + }, + { + "word": "triennale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "three-year;triennial", + "romanization": "triennale", + "example_sentence_native": "Ha completato un corso di laurea triennale.", + "example_sentence_english": "He completed a three-year degree course.", + "pos": "adjective", + "word_frequency": 5093 + }, + { + "word": "ubriaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk", + "romanization": "ubriaco", + "example_sentence_native": "Era troppo ubriaco per guidare.", + "example_sentence_english": "He was too drunk to drive.", + "pos": "adjective", + "word_frequency": 5094 + }, + { + "word": "vizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vice;bad habit", + "romanization": "vizio", + "example_sentence_native": "Fumare è un brutto vizio.", + "example_sentence_english": "Smoking is a bad habit.", + "pos": "noun", + "word_frequency": 5098 + }, + { + "word": "welfare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "welfare", + "romanization": "welfare", + "example_sentence_native": "Il sistema di welfare in Italia è complesso.", + "example_sentence_english": "The welfare system in Italy is complex.", + "pos": "noun", + "word_frequency": 5099 + }, + { + "word": "acquisizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquisition", + "romanization": "acquisizione", + "example_sentence_native": "L'azienda ha annunciato una nuova acquisizione.", + "example_sentence_english": "The company announced a new acquisition.", + "pos": "noun", + "word_frequency": 5100 + }, + { + "word": "animare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to animate;to liven up", + "romanization": "animare", + "example_sentence_native": "La musica ha animato la festa.", + "example_sentence_english": "The music livened up the party.", + "pos": "verb", + "word_frequency": 5103 + }, + { + "word": "apprendimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "learning", + "romanization": "apprendimento", + "example_sentence_native": "L'apprendimento delle lingue richiede pratica.", + "example_sentence_english": "Language learning requires practice.", + "pos": "noun", + "word_frequency": 5104 + }, + { + "word": "arbitro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "referee;arbiter", + "romanization": "arbitro", + "example_sentence_native": "L'arbitro ha fischiato la fine della partita.", + "example_sentence_english": "The referee blew the whistle for the end of the match.", + "pos": "noun", + "word_frequency": 5105 + }, + { + "word": "banner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banner", + "romanization": "banner", + "example_sentence_native": "Hanno appeso un grande banner per la manifestazione.", + "example_sentence_english": "They hung a large banner for the demonstration.", + "pos": "noun", + "word_frequency": 5107 + }, + { + "word": "battesimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baptism", + "romanization": "battesimo", + "example_sentence_native": "Il battesimo del bambino si terrà domenica.", + "example_sentence_english": "The baby's baptism will be held on Sunday.", + "pos": "noun", + "word_frequency": 5109 + }, + { + "word": "beccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to catch;to peck", + "romanization": "beccare", + "example_sentence_native": "Il poliziotto ha beccato il ladro.", + "example_sentence_english": "The policeman caught the thief.", + "pos": "verb", + "word_frequency": 5110 + }, + { + "word": "brand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brand", + "romanization": "brand", + "example_sentence_native": "Questo è un brand di lusso.", + "example_sentence_english": "This is a luxury brand.", + "pos": "noun", + "word_frequency": 5112 + }, + { + "word": "compassione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassion", + "romanization": "compassione", + "example_sentence_native": "Ha mostrato grande compassione per i poveri.", + "example_sentence_english": "He showed great compassion for the poor.", + "pos": "noun", + "word_frequency": 5117 + }, + { + "word": "comprensibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understandable;comprehensible", + "romanization": "comprensibile", + "example_sentence_native": "La sua spiegazione era molto comprensibile.", + "example_sentence_english": "His explanation was very understandable.", + "pos": "adjective", + "word_frequency": 5118 + }, + { + "word": "concentrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concentrate", + "romanization": "concentrare", + "example_sentence_native": "Devi concentrarti sul tuo lavoro.", + "example_sentence_english": "You need to concentrate on your work.", + "pos": "verb", + "word_frequency": 5119 + }, + { + "word": "conformità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conformity;compliance", + "romanization": "conformità", + "example_sentence_native": "L'azienda deve garantire la conformità alle normative.", + "example_sentence_english": "The company must ensure compliance with regulations.", + "pos": "noun", + "word_frequency": 5120 + }, + { + "word": "credibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credibility", + "romanization": "credibilità", + "example_sentence_native": "La sua credibilità è stata messa in discussione.", + "example_sentence_english": "His credibility was questioned.", + "pos": "noun", + "word_frequency": 5121 + }, + { + "word": "cuneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wedge", + "romanization": "cuneo", + "example_sentence_native": "Ha usato un cuneo per tenere aperta la porta.", + "example_sentence_english": "He used a wedge to keep the door open.", + "pos": "noun", + "word_frequency": 5123 + }, + { + "word": "defunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceased;late", + "romanization": "defunto", + "example_sentence_native": "Il defunto non aveva eredi diretti.", + "example_sentence_english": "The deceased had no direct heirs.", + "pos": "adjective", + "word_frequency": 5124 + }, + { + "word": "diplomatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomatic", + "romanization": "diplomatico", + "example_sentence_native": "Ha risposto in modo molto diplomatico.", + "example_sentence_english": "He replied in a very diplomatic way.", + "pos": "adjective", + "word_frequency": 5126 + }, + { + "word": "discreto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discreet;decent", + "romanization": "discreto", + "example_sentence_native": "Ha avuto un successo discreto.", + "example_sentence_english": "He had a decent success.", + "pos": "adjective", + "word_frequency": 5127 + }, + { + "word": "distribuire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distribute", + "romanization": "distribuire", + "example_sentence_native": "Dobbiamo distribuire i volantini.", + "example_sentence_english": "We need to distribute the flyers.", + "pos": "verb", + "word_frequency": 5128 + }, + { + "word": "drago", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dragon", + "romanization": "drago", + "example_sentence_native": "I bambini amano le storie di draghi.", + "example_sentence_english": "Children love stories about dragons.", + "pos": "noun", + "word_frequency": 5130 + }, + { + "word": "esca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bait;lure", + "romanization": "esca", + "example_sentence_native": "Ha messo l'esca sull'amo.", + "example_sentence_english": "He put the bait on the hook.", + "pos": "noun", + "word_frequency": 5131 + }, + { + "word": "esporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expose;to exhibit", + "romanization": "esporre", + "example_sentence_native": "L'artista esporrà le sue opere in galleria.", + "example_sentence_english": "The artist will exhibit his works in the gallery.", + "pos": "verb", + "word_frequency": 5132 + }, + { + "word": "farmacia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pharmacy;drugstore", + "romanization": "farmacia", + "example_sentence_native": "Devo andare in farmacia a comprare le medicine.", + "example_sentence_english": "I need to go to the pharmacy to buy medicine.", + "pos": "noun", + "word_frequency": 5134 + }, + { + "word": "fascio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bundle;bunch;beam", + "romanization": "fascio", + "example_sentence_native": "Ha legato un fascio di legna.", + "example_sentence_english": "He tied a bundle of wood.", + "pos": "noun", + "word_frequency": 5135 + }, + { + "word": "fondamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundation;basis", + "romanization": "fondamento", + "example_sentence_native": "La sua teoria non ha fondamento scientifico.", + "example_sentence_english": "His theory has no scientific foundation.", + "pos": "noun", + "word_frequency": 5137 + }, + { + "word": "fornitura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply;provision", + "romanization": "fornitura", + "example_sentence_native": "Abbiamo bisogno di una nuova fornitura di materiali.", + "example_sentence_english": "We need a new supply of materials.", + "pos": "noun", + "word_frequency": 5138 + }, + { + "word": "freno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brake", + "romanization": "freno", + "example_sentence_native": "Ha premuto il freno all'improvviso.", + "example_sentence_english": "He suddenly pressed the brake.", + "pos": "noun", + "word_frequency": 5139 + }, + { + "word": "giustificazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "justification;excuse", + "romanization": "giustificazione", + "example_sentence_native": "Non c'è giustificazione per il suo comportamento.", + "example_sentence_english": "There is no justification for his behavior.", + "pos": "noun", + "word_frequency": 5140 + }, + { + "word": "ignorante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ignorant;uneducated", + "romanization": "ignorante", + "example_sentence_native": "Non essere ignorante su questi argomenti.", + "example_sentence_english": "Don't be ignorant about these topics.", + "pos": "adjective", + "word_frequency": 5143 + }, + { + "word": "indigeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indigenous person;native", + "romanization": "indigeno", + "example_sentence_native": "Gli indigeni vivono in armonia con la natura.", + "example_sentence_english": "The indigenous people live in harmony with nature.", + "pos": "noun", + "word_frequency": 5145 + }, + { + "word": "indubbiamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undoubtedly;certainly", + "romanization": "indubbiamente", + "example_sentence_native": "Indubbiamente, è la scelta migliore.", + "example_sentence_english": "Undoubtedly, it's the best choice.", + "pos": "adverb", + "word_frequency": 5146 + }, + { + "word": "inflazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflation", + "romanization": "inflazione", + "example_sentence_native": "L'inflazione sta aumentando i prezzi al consumo.", + "example_sentence_english": "Inflation is increasing consumer prices.", + "pos": "noun", + "word_frequency": 5147 + }, + { + "word": "ligure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ligurian (from Liguria)", + "romanization": "ligure", + "example_sentence_native": "La cucina ligure è molto apprezzata.", + "example_sentence_english": "Ligurian cuisine is highly appreciated.", + "pos": "adjective", + "word_frequency": 5149 + }, + { + "word": "missile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "missile", + "romanization": "missile", + "example_sentence_native": "Hanno lanciato un missile di prova.", + "example_sentence_english": "They launched a test missile.", + "pos": "noun", + "word_frequency": 5153 + }, + { + "word": "notturno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nocturnal;night (adj.)", + "romanization": "notturno", + "example_sentence_native": "L'animale è attivo durante le ore notturne.", + "example_sentence_english": "The animal is active during the nocturnal hours.", + "pos": "adjective", + "word_frequency": 5155 + }, + { + "word": "piombo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lead (metal)", + "romanization": "piombo", + "example_sentence_native": "Il tetto è fatto di piombo.", + "example_sentence_english": "The roof is made of lead.", + "pos": "noun", + "word_frequency": 5159 + }, + { + "word": "polso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wrist;pulse", + "romanization": "polso", + "example_sentence_native": "Mi fa male il polso dopo la caduta.", + "example_sentence_english": "My wrist hurts after the fall.", + "pos": "noun", + "word_frequency": 5161 + }, + { + "word": "poltrona", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "armchair", + "romanization": "poltrona", + "example_sentence_native": "Mi sono seduto sulla comoda poltrona.", + "example_sentence_english": "I sat on the comfortable armchair.", + "pos": "noun", + "word_frequency": 5162 + }, + { + "word": "prefetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prefect", + "romanization": "prefetto", + "example_sentence_native": "Il prefetto ha emesso un nuovo decreto.", + "example_sentence_english": "The prefect issued a new decree.", + "pos": "noun", + "word_frequency": 5164 + }, + { + "word": "pretesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pretext;excuse", + "romanization": "pretesto", + "example_sentence_native": "Ha usato la pioggia come pretesto per non uscire.", + "example_sentence_english": "He used the rain as a pretext not to go out.", + "pos": "noun", + "word_frequency": 5165 + }, + { + "word": "punire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to punish", + "romanization": "punire", + "example_sentence_native": "I genitori devono punire i figli quando sbagliano.", + "example_sentence_english": "Parents must punish their children when they make mistakes.", + "pos": "verb", + "word_frequency": 5166 + }, + { + "word": "raggiungimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "achievement;attainment", + "romanization": "raggiungimento", + "example_sentence_native": "Il raggiungimento degli obiettivi è fondamentale.", + "example_sentence_english": "The achievement of objectives is fundamental.", + "pos": "noun", + "word_frequency": 5168 + }, + { + "word": "reggere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold;to support;to bear", + "romanization": "reggere", + "example_sentence_native": "Riesci a reggere questo peso?", + "example_sentence_english": "Can you hold this weight?", + "pos": "verb", + "word_frequency": 5169 + }, + { + "word": "rendimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performance;yield;efficiency", + "romanization": "rendimento", + "example_sentence_native": "Il rendimento scolastico è migliorato.", + "example_sentence_english": "School performance has improved.", + "pos": "noun", + "word_frequency": 5170 + }, + { + "word": "repertorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repertoire;directory", + "romanization": "repertorio", + "example_sentence_native": "Il cantante ha un vasto repertorio di canzoni.", + "example_sentence_english": "The singer has a vast repertoire of songs.", + "pos": "noun", + "word_frequency": 5171 + }, + { + "word": "repressione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repression;suppression", + "romanization": "repressione", + "example_sentence_native": "La repressione delle proteste è stata violenta.", + "example_sentence_english": "The repression of the protests was violent.", + "pos": "noun", + "word_frequency": 5172 + }, + { + "word": "rituale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ritual", + "romanization": "rituale", + "example_sentence_native": "Bere il caffè al mattino è un rituale per me.", + "example_sentence_english": "Drinking coffee in the morning is a ritual for me.", + "pos": "noun", + "word_frequency": 5173 + }, + { + "word": "salotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "living room;lounge", + "romanization": "salotto", + "example_sentence_native": "Ci siamo riuniti tutti nel salotto.", + "example_sentence_english": "We all gathered in the living room.", + "pos": "noun", + "word_frequency": 5176 + }, + { + "word": "scattare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to snap (a photo);to spring (up);to go off (alarm)", + "romanization": "scattare", + "example_sentence_native": "Ha scattato una foto bellissima.", + "example_sentence_english": "He took a beautiful photo.", + "pos": "verb", + "word_frequency": 5178 + }, + { + "word": "scossa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shock;jolt;tremor", + "romanization": "scossa", + "example_sentence_native": "Abbiamo sentito una forte scossa di terremoto.", + "example_sentence_english": "We felt a strong earthquake tremor.", + "pos": "noun", + "word_frequency": 5179 + }, + { + "word": "serenità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serenity;peacefulness", + "romanization": "serenità", + "example_sentence_native": "Desidero solo un po' di serenità.", + "example_sentence_english": "I just want a little serenity.", + "pos": "noun", + "word_frequency": 5180 + }, + { + "word": "smetterla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop it;to quit it", + "romanization": "smetterla", + "example_sentence_native": "Smettila di fare rumore!", + "example_sentence_english": "Stop making noise!", + "pos": "verb", + "word_frequency": 5181 + }, + { + "word": "sottofondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "background (music;noise)", + "romanization": "sottofondo", + "example_sentence_native": "C'era musica in sottofondo.", + "example_sentence_english": "There was music in the background.", + "pos": "noun", + "word_frequency": 5183 + }, + { + "word": "stesura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drafting;writing;version", + "romanization": "stesura", + "example_sentence_native": "La prima stesura del libro è pronta.", + "example_sentence_english": "The first draft of the book is ready.", + "pos": "noun", + "word_frequency": 5186 + }, + { + "word": "stranamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strangely;oddly", + "romanization": "stranamente", + "example_sentence_native": "Stranamente, non c'era nessuno.", + "example_sentence_english": "Strangely, there was no one there.", + "pos": "adverb", + "word_frequency": 5187 + }, + { + "word": "svedese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Swedish", + "romanization": "svedese", + "example_sentence_native": "Parla fluentemente lo svedese.", + "example_sentence_english": "He speaks Swedish fluently.", + "pos": "adjective", + "word_frequency": 5189 + }, + { + "word": "tappeto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rug;carpet", + "romanization": "tappeto", + "example_sentence_native": "C'è un bel tappeto in salotto.", + "example_sentence_english": "There's a beautiful rug in the living room.", + "pos": "noun", + "word_frequency": 5191 + }, + { + "word": "tazza", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cup;mug", + "romanization": "tazza", + "example_sentence_native": "Vorrei una tazza di caffè.", + "example_sentence_english": "I would like a cup of coffee.", + "pos": "noun", + "word_frequency": 5192 + }, + { + "word": "tipa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "type (of person);girl (informal)", + "romanization": "tipa", + "example_sentence_native": "È una tipa molto simpatica.", + "example_sentence_english": "She's a very nice girl.", + "pos": "noun", + "word_frequency": 5193 + }, + { + "word": "vela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sail;sailing", + "romanization": "vela", + "example_sentence_native": "Andiamo a fare vela questo weekend.", + "example_sentence_english": "Let's go sailing this weekend.", + "pos": "noun", + "word_frequency": 5195 + }, + { + "word": "vincolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constraint;bond;tie", + "romanization": "vincolo", + "example_sentence_native": "Ci sono dei vincoli legali da rispettare.", + "example_sentence_english": "There are legal constraints to respect.", + "pos": "noun", + "word_frequency": 5196 + }, + { + "word": "abate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbot", + "romanization": "abate", + "example_sentence_native": "L'abate ha guidato la comunità per molti anni.", + "example_sentence_english": "The abbot led the community for many years.", + "pos": "noun", + "word_frequency": 5198 + }, + { + "word": "accettabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acceptable", + "romanization": "accettabile", + "example_sentence_native": "La sua proposta è accettabile.", + "example_sentence_english": "His proposal is acceptable.", + "pos": "adjective", + "word_frequency": 5199 + }, + { + "word": "acquisire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquire", + "romanization": "acquisire", + "example_sentence_native": "È importante acquisire nuove competenze.", + "example_sentence_english": "It is important to acquire new skills.", + "pos": "verb", + "word_frequency": 5200 + }, + { + "word": "affidare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to entrust", + "romanization": "affidare", + "example_sentence_native": "Non posso affidare questo compito a nessuno.", + "example_sentence_english": "I cannot entrust this task to anyone.", + "pos": "verb", + "word_frequency": 5201 + }, + { + "word": "apparato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparatus;system", + "romanization": "apparato", + "example_sentence_native": "L'apparato digerente è complesso.", + "example_sentence_english": "The digestive apparatus is complex.", + "pos": "noun", + "word_frequency": 5205 + }, + { + "word": "archeologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archeological", + "romanization": "archeologico", + "example_sentence_native": "Hanno scoperto un sito archeologico importante.", + "example_sentence_english": "They discovered an important archaeological site.", + "pos": "adjective", + "word_frequency": 5206 + }, + { + "word": "argentino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Argentinian", + "romanization": "argentino", + "example_sentence_native": "Il tango è una danza argentina.", + "example_sentence_english": "Tango is an Argentinian dance.", + "pos": "adjective", + "word_frequency": 5207 + }, + { + "word": "assegnazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assignment;allocation", + "romanization": "assegnazione", + "example_sentence_native": "L'assegnazione dei compiti è stata chiara.", + "example_sentence_english": "The assignment of tasks was clear.", + "pos": "noun", + "word_frequency": 5208 + }, + { + "word": "automobile", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "car;automobile", + "romanization": "automobile", + "example_sentence_native": "Ho comprato una nuova automobile.", + "example_sentence_english": "I bought a new car.", + "pos": "noun", + "word_frequency": 5209 + }, + { + "word": "cancellazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cancellation;deletion", + "romanization": "cancellazione", + "example_sentence_native": "La cancellazione del volo è stata annunciata.", + "example_sentence_english": "The flight cancellation was announced.", + "pos": "noun", + "word_frequency": 5213 + }, + { + "word": "capoluogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "provincial capital;chief town", + "romanization": "capoluogo", + "example_sentence_native": "Milano è il capoluogo della Lombardia.", + "example_sentence_english": "Milan is the capital of Lombardy.", + "pos": "noun", + "word_frequency": 5214 + }, + { + "word": "capra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goat", + "romanization": "capra", + "example_sentence_native": "La capra mangia l'erba.", + "example_sentence_english": "The goat eats grass.", + "pos": "noun", + "word_frequency": 5215 + }, + { + "word": "cereale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cereal;grain", + "romanization": "cereale", + "example_sentence_native": "La colazione include spesso cereali.", + "example_sentence_english": "Breakfast often includes cereal.", + "pos": "noun", + "word_frequency": 5216 + }, + { + "word": "condominio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condominium;apartment building", + "romanization": "condominio", + "example_sentence_native": "Vivo in un condominio con molti appartamenti.", + "example_sentence_english": "I live in an apartment building with many flats.", + "pos": "noun", + "word_frequency": 5217 + }, + { + "word": "convivenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohabitation;living together", + "romanization": "convivenza", + "example_sentence_native": "La convivenza pacifica è essenziale.", + "example_sentence_english": "Peaceful cohabitation is essential.", + "pos": "noun", + "word_frequency": 5218 + }, + { + "word": "corteo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procession;parade", + "romanization": "corteo", + "example_sentence_native": "Il corteo ha sfilato per le vie della città.", + "example_sentence_english": "The procession paraded through the city streets.", + "pos": "noun", + "word_frequency": 5219 + }, + { + "word": "cotone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cotton", + "romanization": "cotone", + "example_sentence_native": "Questa maglietta è fatta di cotone.", + "example_sentence_english": "This T-shirt is made of cotton.", + "pos": "noun", + "word_frequency": 5220 + }, + { + "word": "cranio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skull", + "romanization": "cranio", + "example_sentence_native": "Il cranio protegge il cervello.", + "example_sentence_english": "The skull protects the brain.", + "pos": "noun", + "word_frequency": 5221 + }, + { + "word": "cretino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiot;moron", + "romanization": "cretino", + "example_sentence_native": "Non fare il cretino!", + "example_sentence_english": "Don't be an idiot!", + "pos": "noun", + "word_frequency": 5222 + }, + { + "word": "cristallo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crystal", + "romanization": "cristallo", + "example_sentence_native": "Il vaso è di cristallo.", + "example_sentence_english": "The vase is made of crystal.", + "pos": "noun", + "word_frequency": 5223 + }, + { + "word": "dark", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dark", + "romanization": "dark", + "example_sentence_native": "Ha uno stile molto dark.", + "example_sentence_english": "He has a very dark style.", + "pos": "adjective", + "word_frequency": 5224 + }, + { + "word": "debutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "debut", + "romanization": "debutto", + "example_sentence_native": "Il suo debutto sul palco è stato un successo.", + "example_sentence_english": "His stage debut was a success.", + "pos": "noun", + "word_frequency": 5225 + }, + { + "word": "detenzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detention;custody", + "romanization": "detenzione", + "example_sentence_native": "È stato condannato alla detenzione.", + "example_sentence_english": "He was sentenced to detention.", + "pos": "noun", + "word_frequency": 5228 + }, + { + "word": "divertirsi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have fun;to enjoy oneself", + "romanization": "divertirsi", + "example_sentence_native": "Ci siamo divertiti molto alla festa.", + "example_sentence_english": "We had a lot of fun at the party.", + "pos": "verb", + "word_frequency": 5229 + }, + { + "word": "domandare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to ask;to demand", + "romanization": "domandare", + "example_sentence_native": "Vorrei domandare una cosa.", + "example_sentence_english": "I would like to ask something.", + "pos": "verb", + "word_frequency": 5230 + }, + { + "word": "dorso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "back (of body;hand;book)", + "romanization": "dorso", + "example_sentence_native": "Mi fa male il dorso della mano.", + "example_sentence_english": "The back of my hand hurts.", + "pos": "noun", + "word_frequency": 5231 + }, + { + "word": "duecento", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "two hundred", + "romanization": "duecento", + "example_sentence_native": "Ci sono duecento persone.", + "example_sentence_english": "There are two hundred people.", + "pos": "adjective", + "word_frequency": 5232 + }, + { + "word": "elaborazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processing;elaboration", + "romanization": "elaborazione", + "example_sentence_native": "L'elaborazione dei dati richiede tempo.", + "example_sentence_english": "Data processing takes time.", + "pos": "noun", + "word_frequency": 5233 + }, + { + "word": "esaminare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to examine;to inspect", + "romanization": "esaminare", + "example_sentence_native": "Dobbiamo esaminare attentamente la situazione.", + "example_sentence_english": "We need to carefully examine the situation.", + "pos": "verb", + "word_frequency": 5234 + }, + { + "word": "esordio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debut;beginning", + "romanization": "esordio", + "example_sentence_native": "Il suo esordio letterario è stato molto apprezzato.", + "example_sentence_english": "His literary debut was highly appreciated.", + "pos": "noun", + "word_frequency": 5235 + }, + { + "word": "fantasy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy (genre)", + "romanization": "fantasy", + "example_sentence_native": "Mi piacciono molto i libri fantasy.", + "example_sentence_english": "I really like fantasy books.", + "pos": "noun", + "word_frequency": 5236 + }, + { + "word": "fauna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fauna;wildlife", + "romanization": "fauna", + "example_sentence_native": "La fauna locale è molto ricca.", + "example_sentence_english": "The local fauna is very rich.", + "pos": "noun", + "word_frequency": 5237 + }, + { + "word": "fico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fig", + "romanization": "fico", + "example_sentence_native": "Mi piace mangiare i fichi freschi.", + "example_sentence_english": "I like to eat fresh figs.", + "pos": "noun", + "word_frequency": 5239 + }, + { + "word": "figuriamoci", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imagine that;let alone", + "romanization": "figuriamoci", + "example_sentence_native": "Non riesco a finire questo, figuriamoci due.", + "example_sentence_english": "I can't finish this, let alone two.", + "pos": "verb", + "word_frequency": 5240 + }, + { + "word": "guarigione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recovery;healing", + "romanization": "guarigione", + "example_sentence_native": "La sua guarigione è stata rapida.", + "example_sentence_english": "His recovery was rapid.", + "pos": "noun", + "word_frequency": 5244 + }, + { + "word": "hardware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hardware", + "romanization": "hardware", + "example_sentence_native": "Ho bisogno di nuovo hardware per il mio computer.", + "example_sentence_english": "I need new hardware for my computer.", + "pos": "noun", + "word_frequency": 5245 + }, + { + "word": "icona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icon", + "romanization": "icona", + "example_sentence_native": "L'icona del programma è sul desktop.", + "example_sentence_english": "The program icon is on the desktop.", + "pos": "noun", + "word_frequency": 5246 + }, + { + "word": "incertezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncertainty", + "romanization": "incertezza", + "example_sentence_native": "C'è molta incertezza sul futuro.", + "example_sentence_english": "There is a lot of uncertainty about the future.", + "pos": "noun", + "word_frequency": 5247 + }, + { + "word": "indirettamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indirectly", + "romanization": "indirettamente", + "example_sentence_native": "Ha risposto alla domanda indirettamente.", + "example_sentence_english": "He answered the question indirectly.", + "pos": "adverb", + "word_frequency": 5248 + }, + { + "word": "ironico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ironic", + "romanization": "ironico", + "example_sentence_native": "La sua risposta era piuttosto ironica.", + "example_sentence_english": "His answer was quite ironic.", + "pos": "adjective", + "word_frequency": 5250 + }, + { + "word": "legittimità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimacy", + "romanization": "legittimità", + "example_sentence_native": "La legittimità della decisione è stata messa in discussione.", + "example_sentence_english": "The legitimacy of the decision was questioned.", + "pos": "noun", + "word_frequency": 5252 + }, + { + "word": "marijuana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marijuana", + "romanization": "marijuana", + "example_sentence_native": "La coltivazione della marijuana è illegale in molti paesi.", + "example_sentence_english": "Marijuana cultivation is illegal in many countries.", + "pos": "noun", + "word_frequency": 5254 + }, + { + "word": "medicinale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "medicine;drug", + "romanization": "medicinale", + "example_sentence_native": "Ho preso un medicinale per il mal di testa.", + "example_sentence_english": "I took a medicine for my headache.", + "pos": "noun", + "word_frequency": 5257 + }, + { + "word": "meeting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meeting", + "romanization": "meeting", + "example_sentence_native": "Abbiamo un meeting importante domani mattina.", + "example_sentence_english": "We have an important meeting tomorrow morning.", + "pos": "noun", + "word_frequency": 5258 + }, + { + "word": "mercurio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mercury", + "romanization": "mercurio", + "example_sentence_native": "Il mercurio è un metallo liquido.", + "example_sentence_english": "Mercury is a liquid metal.", + "pos": "noun", + "word_frequency": 5259 + }, + { + "word": "molla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spring (mechanical)", + "romanization": "molla", + "example_sentence_native": "La molla dell'orologio si è rotta.", + "example_sentence_english": "The watch spring broke.", + "pos": "noun", + "word_frequency": 5261 + }, + { + "word": "mulino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mill", + "romanization": "mulino", + "example_sentence_native": "C'è un vecchio mulino ad acqua vicino al fiume.", + "example_sentence_english": "There's an old water mill near the river.", + "pos": "noun", + "word_frequency": 5262 + }, + { + "word": "normalità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "normality", + "romanization": "normalità", + "example_sentence_native": "Stiamo cercando di tornare alla normalità.", + "example_sentence_english": "We are trying to return to normality.", + "pos": "noun", + "word_frequency": 5263 + }, + { + "word": "novanta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ninety", + "romanization": "novanta", + "example_sentence_native": "Ho novanta euro in tasca.", + "example_sentence_english": "I have ninety euros in my pocket.", + "pos": "adjective", + "word_frequency": 5264 + }, + { + "word": "ottanta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eighty", + "romanization": "ottanta", + "example_sentence_native": "Ha ottanta anni.", + "example_sentence_english": "He is eighty years old.", + "pos": "adjective", + "word_frequency": 5265 + }, + { + "word": "pazzesco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;incredible", + "romanization": "pazzesco", + "example_sentence_native": "È stata una giornata pazzesca!", + "example_sentence_english": "It was a crazy day!", + "pos": "adjective", + "word_frequency": 5266 + }, + { + "word": "poker", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poker", + "romanization": "poker", + "example_sentence_native": "Giocano a poker ogni venerdì sera.", + "example_sentence_english": "They play poker every Friday night.", + "pos": "noun", + "word_frequency": 5269 + }, + { + "word": "produttivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "productive", + "romanization": "produttivo", + "example_sentence_native": "Spero che la riunione sia produttiva.", + "example_sentence_english": "I hope the meeting is productive.", + "pos": "adjective", + "word_frequency": 5270 + }, + { + "word": "prossimità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proximity", + "romanization": "prossimità", + "example_sentence_native": "Viviamo in prossimità del mare.", + "example_sentence_english": "We live in proximity to the sea.", + "pos": "noun", + "word_frequency": 5271 + }, + { + "word": "pseudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pseudo-", + "romanization": "pseudo", + "example_sentence_native": "È un problema pseudo-scientifico.", + "example_sentence_english": "It's a pseudo-scientific problem.", + "pos": "adjective", + "word_frequency": 5272 + }, + { + "word": "rimediare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remedy;to fix", + "romanization": "rimediare", + "example_sentence_native": "Dobbiamo rimediare a questo errore.", + "example_sentence_english": "We must remedy this mistake.", + "pos": "verb", + "word_frequency": 5275 + }, + { + "word": "ripartire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leave again;to restart", + "romanization": "ripartire", + "example_sentence_native": "Dobbiamo ripartire da zero.", + "example_sentence_english": "We must restart from scratch.", + "pos": "verb", + "word_frequency": 5276 + }, + { + "word": "rotondo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "round", + "romanization": "rotondo", + "example_sentence_native": "Il tavolo è rotondo.", + "example_sentence_english": "The table is round.", + "pos": "adjective", + "word_frequency": 5277 + }, + { + "word": "saldo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balance (financial);sale (discount)", + "romanization": "saldo", + "example_sentence_native": "Ho controllato il saldo del mio conto.", + "example_sentence_english": "I checked my account balance.", + "pos": "noun", + "word_frequency": 5278 + }, + { + "word": "sconfiggere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to defeat", + "romanization": "sconfiggere", + "example_sentence_native": "L'esercito è riuscito a sconfiggere il nemico.", + "example_sentence_english": "The army managed to defeat the enemy.", + "pos": "verb", + "word_frequency": 5280 + }, + { + "word": "selfie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "selfie", + "romanization": "selfie", + "example_sentence_native": "Si è scattato un selfie davanti al Colosseo.", + "example_sentence_english": "He took a selfie in front of the Colosseum.", + "pos": "noun", + "word_frequency": 5281 + }, + { + "word": "sella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saddle", + "romanization": "sella", + "example_sentence_native": "Il cavaliere ha messo la sella sul cavallo.", + "example_sentence_english": "The rider put the saddle on the horse.", + "pos": "noun", + "word_frequency": 5282 + }, + { + "word": "senno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "good sense;wisdom", + "romanization": "senno", + "example_sentence_native": "Ha agito con senno in una situazione difficile.", + "example_sentence_english": "He acted with good sense in a difficult situation.", + "pos": "noun", + "word_frequency": 5283 + }, + { + "word": "severo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "severe;strict", + "romanization": "severo", + "example_sentence_native": "Il professore era molto severo con gli studenti.", + "example_sentence_english": "The professor was very strict with the students.", + "pos": "adjective", + "word_frequency": 5284 + }, + { + "word": "sostanziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substantial", + "romanization": "sostanziale", + "example_sentence_native": "C'è stata una differenza sostanziale tra le due proposte.", + "example_sentence_english": "There was a substantial difference between the two proposals.", + "pos": "adjective", + "word_frequency": 5285 + }, + { + "word": "sufficientemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sufficiently;enough", + "romanization": "sufficientemente", + "example_sentence_native": "Non è stato sufficientemente preparato per l'esame.", + "example_sentence_english": "He was not sufficiently prepared for the exam.", + "pos": "adverb", + "word_frequency": 5286 + }, + { + "word": "supporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suppose;to assume", + "romanization": "supporre", + "example_sentence_native": "Suppongo che tu abbia ragione.", + "example_sentence_english": "I suppose you are right.", + "pos": "verb", + "word_frequency": 5287 + }, + { + "word": "supportare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support", + "romanization": "supportare", + "example_sentence_native": "Dobbiamo supportare i nostri amici nei momenti difficili.", + "example_sentence_english": "We must support our friends in difficult times.", + "pos": "verb", + "word_frequency": 5288 + }, + { + "word": "tabacco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tobacco", + "romanization": "tabacco", + "example_sentence_native": "La vendita di tabacco è regolamentata.", + "example_sentence_english": "The sale of tobacco is regulated.", + "pos": "noun", + "word_frequency": 5289 + }, + { + "word": "trofeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trophy", + "romanization": "trofeo", + "example_sentence_native": "La squadra ha vinto il trofeo del campionato.", + "example_sentence_english": "The team won the championship trophy.", + "pos": "noun", + "word_frequency": 5290 + }, + { + "word": "vigente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "current;in force", + "romanization": "vigente", + "example_sentence_native": "La legge vigente prevede sanzioni severe.", + "example_sentence_english": "The current law provides for severe penalties.", + "pos": "adjective", + "word_frequency": 5292 + }, + { + "word": "agricoltore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farmer", + "romanization": "agricoltore", + "example_sentence_native": "L'agricoltore lavora la terra ogni giorno.", + "example_sentence_english": "The farmer works the land every day.", + "pos": "noun", + "word_frequency": 5295 + }, + { + "word": "allevamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breeding;farming;rearing", + "romanization": "allevamento", + "example_sentence_native": "L'allevamento di bestiame è un settore importante.", + "example_sentence_english": "Livestock farming is an important sector.", + "pos": "noun", + "word_frequency": 5299 + }, + { + "word": "applauso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "applause", + "romanization": "applauso", + "example_sentence_native": "Il pubblico ha fatto un grande applauso.", + "example_sentence_english": "The audience gave a big applause.", + "pos": "noun", + "word_frequency": 5301 + }, + { + "word": "apposito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specific;appropriate;dedicated", + "romanization": "apposito", + "example_sentence_native": "Hanno creato un'area apposita per i bambini.", + "example_sentence_english": "They created a specific area for children.", + "pos": "adjective", + "word_frequency": 5302 + }, + { + "word": "arancione", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "orange", + "romanization": "arancione", + "example_sentence_native": "Mi piace il colore arancione.", + "example_sentence_english": "I like the color orange.", + "pos": "adjective", + "word_frequency": 5303 + }, + { + "word": "attivare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to activate;to enable", + "romanization": "attivare", + "example_sentence_native": "Devi attivare il tuo account prima di usarlo.", + "example_sentence_english": "You need to activate your account before using it.", + "pos": "verb", + "word_frequency": 5304 + }, + { + "word": "bastone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stick;cane", + "romanization": "bastone", + "example_sentence_native": "Il nonno usa un bastone per camminare.", + "example_sentence_english": "Grandpa uses a cane to walk.", + "pos": "noun", + "word_frequency": 5306 + }, + { + "word": "beato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blessed;blissful;happy", + "romanization": "beato", + "example_sentence_native": "Si sentiva beato dopo una lunga giornata di lavoro.", + "example_sentence_english": "He felt blissful after a long day of work.", + "pos": "adjective", + "word_frequency": 5307 + }, + { + "word": "bestiame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "livestock;cattle", + "romanization": "bestiame", + "example_sentence_native": "L'allevatore si prende cura del suo bestiame.", + "example_sentence_english": "The farmer takes care of his livestock.", + "pos": "noun", + "word_frequency": 5308 + }, + { + "word": "bilancia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scale (for weighing);balance", + "romanization": "bilancia", + "example_sentence_native": "Ho pesato la frutta sulla bilancia.", + "example_sentence_english": "I weighed the fruit on the scale.", + "pos": "noun", + "word_frequency": 5309 + }, + { + "word": "bottega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shop;workshop", + "romanization": "bottega", + "example_sentence_native": "Ha aperto una piccola bottega artigianale.", + "example_sentence_english": "He opened a small artisan shop.", + "pos": "noun", + "word_frequency": 5310 + }, + { + "word": "cameriere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waiter", + "romanization": "cameriere", + "example_sentence_native": "Il cameriere ha preso la nostra ordinazione.", + "example_sentence_english": "The waiter took our order.", + "pos": "noun", + "word_frequency": 5312 + }, + { + "word": "canadese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Canadian", + "romanization": "canadese", + "example_sentence_native": "Il mio amico è canadese.", + "example_sentence_english": "My friend is Canadian.", + "pos": "adjective", + "word_frequency": 5313 + }, + { + "word": "casale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmhouse;country house", + "romanization": "casale", + "example_sentence_native": "Hanno comprato un vecchio casale in Toscana.", + "example_sentence_english": "They bought an old farmhouse in Tuscany.", + "pos": "noun", + "word_frequency": 5314 + }, + { + "word": "ceramica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceramic;pottery", + "romanization": "ceramica", + "example_sentence_native": "Ha comprato un vaso di ceramica fatto a mano.", + "example_sentence_english": "She bought a handmade ceramic vase.", + "pos": "noun", + "word_frequency": 5316 + }, + { + "word": "competere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compete", + "romanization": "competere", + "example_sentence_native": "È difficile competere con aziende così grandi.", + "example_sentence_english": "It's difficult to compete with such large companies.", + "pos": "verb", + "word_frequency": 5317 + }, + { + "word": "congregazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congregation", + "romanization": "congregazione", + "example_sentence_native": "La congregazione si è riunita per la messa.", + "example_sentence_english": "The congregation gathered for mass.", + "pos": "noun", + "word_frequency": 5318 + }, + { + "word": "convocare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to convene;to summon", + "romanization": "convocare", + "example_sentence_native": "Il presidente ha deciso di convocare una riunione urgente.", + "example_sentence_english": "The president decided to convene an urgent meeting.", + "pos": "verb", + "word_frequency": 5319 + }, + { + "word": "correggere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to correct", + "romanization": "correggere", + "example_sentence_native": "Devi correggere gli errori nel tuo testo.", + "example_sentence_english": "You need to correct the errors in your text.", + "pos": "verb", + "word_frequency": 5320 + }, + { + "word": "credibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credible", + "romanization": "credibile", + "example_sentence_native": "La sua storia non è molto credibile.", + "example_sentence_english": "His story is not very credible.", + "pos": "adjective", + "word_frequency": 5321 + }, + { + "word": "dell'assemblea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "of the assembly", + "romanization": "dell'assemblea", + "example_sentence_native": "La decisione dell'assemblea è stata unanime.", + "example_sentence_english": "The assembly's decision was unanimous.", + "pos": "noun", + "word_frequency": 5324 + }, + { + "word": "determinante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "determining;crucial", + "romanization": "determinante", + "example_sentence_native": "Il suo contributo è stato determinante per il successo del progetto.", + "example_sentence_english": "His contribution was crucial for the success of the project.", + "pos": "adjective", + "word_frequency": 5325 + }, + { + "word": "diciotto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "eighteen", + "romanization": "diciotto", + "example_sentence_native": "Ho diciotto anni.", + "example_sentence_english": "I am eighteen years old.", + "pos": "adjective", + "word_frequency": 5326 + }, + { + "word": "difatti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in fact;indeed", + "romanization": "difatti", + "example_sentence_native": "Ha detto che sarebbe venuto, e difatti è arrivato.", + "example_sentence_english": "He said he would come, and in fact he arrived.", + "pos": "adverb", + "word_frequency": 5327 + }, + { + "word": "difendersi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defend oneself", + "romanization": "difendersi", + "example_sentence_native": "Deve imparare a difendersi.", + "example_sentence_english": "He must learn to defend himself.", + "pos": "verb", + "word_frequency": 5328 + }, + { + "word": "dirigere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to direct;to manage", + "romanization": "dirigere", + "example_sentence_native": "Lei dirige l'orchestra con grande abilità.", + "example_sentence_english": "She directs the orchestra with great skill.", + "pos": "verb", + "word_frequency": 5329 + }, + { + "word": "distacco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detachment;gap", + "romanization": "distacco", + "example_sentence_native": "C'è un grande distacco tra le loro opinioni.", + "example_sentence_english": "There is a big gap between their opinions.", + "pos": "noun", + "word_frequency": 5330 + }, + { + "word": "dopoguerra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "postwar period", + "romanization": "dopoguerra", + "example_sentence_native": "L'economia italiana nel dopoguerra è cresciuta rapidamente.", + "example_sentence_english": "The Italian economy in the postwar period grew rapidly.", + "pos": "noun", + "word_frequency": 5331 + }, + { + "word": "drammatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dramatic", + "romanization": "drammatico", + "example_sentence_native": "La situazione è diventata drammatica.", + "example_sentence_english": "The situation became dramatic.", + "pos": "adjective", + "word_frequency": 5332 + }, + { + "word": "duramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harshly;severely", + "romanization": "duramente", + "example_sentence_native": "Ha lavorato duramente per raggiungere i suoi obiettivi.", + "example_sentence_english": "He worked hard to achieve his goals.", + "pos": "adverb", + "word_frequency": 5333 + }, + { + "word": "ebraico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hebrew;Jewish", + "romanization": "ebraico", + "example_sentence_native": "Ha studiato la lingua ebraica all'università.", + "example_sentence_english": "He studied the Hebrew language at university.", + "pos": "adjective", + "word_frequency": 5334 + }, + { + "word": "emettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emit;to issue", + "romanization": "emettere", + "example_sentence_native": "La fabbrica emette fumo nell'aria.", + "example_sentence_english": "The factory emits smoke into the air.", + "pos": "verb", + "word_frequency": 5336 + }, + { + "word": "facilitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to facilitate", + "romanization": "facilitare", + "example_sentence_native": "La nuova tecnologia può facilitare il lavoro.", + "example_sentence_english": "The new technology can facilitate the work.", + "pos": "verb", + "word_frequency": 5337 + }, + { + "word": "gabinetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toilet;cabinet (office)", + "romanization": "gabinetto", + "example_sentence_native": "Dov'è il gabinetto?", + "example_sentence_english": "Where is the toilet?", + "pos": "noun", + "word_frequency": 5340 + }, + { + "word": "genetica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genetics", + "romanization": "genetica", + "example_sentence_native": "La genetica è un campo di studio affascinante.", + "example_sentence_english": "Genetics is a fascinating field of study.", + "pos": "noun", + "word_frequency": 5341 + }, + { + "word": "grotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cave", + "romanization": "grotta", + "example_sentence_native": "Abbiamo esplorato una grotta profonda.", + "example_sentence_english": "We explored a deep cave.", + "pos": "noun", + "word_frequency": 5343 + }, + { + "word": "illusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illusion", + "romanization": "illusione", + "example_sentence_native": "È solo un'illusione ottica.", + "example_sentence_english": "It's just an optical illusion.", + "pos": "noun", + "word_frequency": 5345 + }, + { + "word": "imminente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imminent", + "romanization": "imminente", + "example_sentence_native": "La tempesta è imminente.", + "example_sentence_english": "The storm is imminent.", + "pos": "adjective", + "word_frequency": 5346 + }, + { + "word": "indifferente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indifferent", + "romanization": "indifferente", + "example_sentence_native": "Era completamente indifferente alla situazione.", + "example_sentence_english": "He was completely indifferent to the situation.", + "pos": "adjective", + "word_frequency": 5347 + }, + { + "word": "infarto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heart attack", + "romanization": "infarto", + "example_sentence_native": "Ha avuto un infarto improvviso.", + "example_sentence_english": "He had a sudden heart attack.", + "pos": "noun", + "word_frequency": 5348 + }, + { + "word": "lavare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wash", + "romanization": "lavare", + "example_sentence_native": "Devo lavare i piatti.", + "example_sentence_english": "I need to wash the dishes.", + "pos": "verb", + "word_frequency": 5352 + }, + { + "word": "liberarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to free oneself;to get rid of", + "romanization": "liberarsi", + "example_sentence_native": "Ha cercato di liberarsi dalle catene.", + "example_sentence_english": "He tried to free himself from the chains.", + "pos": "verb", + "word_frequency": 5353 + }, + { + "word": "microfono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microphone", + "romanization": "microfono", + "example_sentence_native": "Parla nel microfono.", + "example_sentence_english": "Speak into the microphone.", + "pos": "noun", + "word_frequency": 5354 + }, + { + "word": "misurare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to measure", + "romanization": "misurare", + "example_sentence_native": "Dobbiamo misurare la temperatura.", + "example_sentence_english": "We need to measure the temperature.", + "pos": "verb", + "word_frequency": 5355 + }, + { + "word": "nativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native", + "romanization": "nativo", + "example_sentence_native": "È un parlante nativo di italiano.", + "example_sentence_english": "He is a native Italian speaker.", + "pos": "adjective", + "word_frequency": 5356 + }, + { + "word": "navale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naval", + "romanization": "navale", + "example_sentence_native": "La storia navale è affascinante.", + "example_sentence_english": "Naval history is fascinating.", + "pos": "adjective", + "word_frequency": 5357 + }, + { + "word": "nell'arco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "within the span of (lit. in the arch)", + "romanization": "nell'arco", + "example_sentence_native": "Il progetto sarà completato nell'arco di un mese.", + "example_sentence_english": "The project will be completed within the span of a month.", + "pos": "noun", + "word_frequency": 5359 + }, + { + "word": "ostilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostility", + "romanization": "ostilità", + "example_sentence_native": "C'era molta ostilità tra i due gruppi.", + "example_sentence_english": "There was a lot of hostility between the two groups.", + "pos": "noun", + "word_frequency": 5361 + }, + { + "word": "patologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathology", + "romanization": "patologia", + "example_sentence_native": "La patologia studia le cause e gli effetti delle malattie.", + "example_sentence_english": "Pathology studies the causes and effects of diseases.", + "pos": "noun", + "word_frequency": 5362 + }, + { + "word": "pian", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slowly;softly", + "romanization": "pian", + "example_sentence_native": "Andava pian pianino per non fare rumore.", + "example_sentence_english": "He went very slowly so as not to make noise.", + "pos": "adverb", + "word_frequency": 5363 + }, + { + "word": "poster", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poster", + "romanization": "poster", + "example_sentence_native": "Ho appeso un nuovo poster nella mia stanza.", + "example_sentence_english": "I hung a new poster in my room.", + "pos": "noun", + "word_frequency": 5365 + }, + { + "word": "potenzialità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "potentiality;potential", + "romanization": "potenzialità", + "example_sentence_native": "Ogni studente ha un grande potenziale.", + "example_sentence_english": "Every student has great potential.", + "pos": "noun", + "word_frequency": 5366 + }, + { + "word": "presidio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garrison;stronghold;medical facility", + "romanization": "presidio", + "example_sentence_native": "Il presidio ospedaliero è aperto 24 ore su 24.", + "example_sentence_english": "The hospital facility is open 24 hours a day.", + "pos": "noun", + "word_frequency": 5367 + }, + { + "word": "presupposto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assumption;prerequisite", + "romanization": "presupposto", + "example_sentence_native": "Il presupposto di base è che tutti siano d'accordo.", + "example_sentence_english": "The basic assumption is that everyone agrees.", + "pos": "noun", + "word_frequency": 5368 + }, + { + "word": "qualificato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualified", + "romanization": "qualificato", + "example_sentence_native": "Cerchiamo personale altamente qualificato.", + "example_sentence_english": "We are looking for highly qualified staff.", + "pos": "adjective", + "word_frequency": 5369 + }, + { + "word": "radiazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiation;expulsion", + "romanization": "radiazione", + "example_sentence_native": "Le radiazioni possono essere pericolose per la salute.", + "example_sentence_english": "Radiation can be dangerous for health.", + "pos": "noun", + "word_frequency": 5370 + }, + { + "word": "risiedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reside", + "romanization": "risiedere", + "example_sentence_native": "Attualmente risiede a Roma.", + "example_sentence_english": "He currently resides in Rome.", + "pos": "verb", + "word_frequency": 5371 + }, + { + "word": "rispettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respective", + "romanization": "rispettivo", + "example_sentence_native": "Hanno preso i loro rispettivi posti.", + "example_sentence_english": "They took their respective seats.", + "pos": "adjective", + "word_frequency": 5372 + }, + { + "word": "sapone", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soap", + "romanization": "sapone", + "example_sentence_native": "Ho bisogno di sapone per lavarmi le mani.", + "example_sentence_english": "I need soap to wash my hands.", + "pos": "noun", + "word_frequency": 5373 + }, + { + "word": "scopa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broom", + "romanization": "scopa", + "example_sentence_native": "Prendi la scopa e pulisci il pavimento.", + "example_sentence_english": "Take the broom and clean the floor.", + "pos": "noun", + "word_frequency": 5374 + }, + { + "word": "sentimentale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sentimental", + "romanization": "sentimentale", + "example_sentence_native": "È una persona molto sentimentale.", + "example_sentence_english": "He is a very sentimental person.", + "pos": "adjective", + "word_frequency": 5375 + }, + { + "word": "sindacale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade union (adj.);union-related", + "romanization": "sindacale", + "example_sentence_native": "Hanno organizzato un'azione sindacale.", + "example_sentence_english": "They organized a trade union action.", + "pos": "adjective", + "word_frequency": 5376 + }, + { + "word": "sistemazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrangement;accommodation", + "romanization": "sistemazione", + "example_sentence_native": "Abbiamo trovato una buona sistemazione per le vacanze.", + "example_sentence_english": "We found good accommodation for the holidays.", + "pos": "noun", + "word_frequency": 5377 + }, + { + "word": "sparo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gunshot;shot", + "romanization": "sparo", + "example_sentence_native": "Si è sentito uno sparo nella notte.", + "example_sentence_english": "A gunshot was heard in the night.", + "pos": "noun", + "word_frequency": 5378 + }, + { + "word": "specializzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialization", + "romanization": "specializzazione", + "example_sentence_native": "La sua specializzazione è la chirurgia.", + "example_sentence_english": "His specialization is surgery.", + "pos": "noun", + "word_frequency": 5379 + }, + { + "word": "spezia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spice", + "romanization": "spezia", + "example_sentence_native": "Questa ricetta richiede molte spezie.", + "example_sentence_english": "This recipe requires many spices.", + "pos": "noun", + "word_frequency": 5380 + }, + { + "word": "spreco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste", + "romanization": "spreco", + "example_sentence_native": "Dobbiamo evitare lo spreco di cibo.", + "example_sentence_english": "We must avoid food waste.", + "pos": "noun", + "word_frequency": 5381 + }, + { + "word": "stampare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to print", + "romanization": "stampare", + "example_sentence_native": "Puoi stampare questo documento per favore?", + "example_sentence_english": "Can you print this document please?", + "pos": "verb", + "word_frequency": 5382 + }, + { + "word": "toscano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Tuscan", + "romanization": "toscano", + "example_sentence_native": "Il vino toscano è famoso in tutto il mondo.", + "example_sentence_english": "Tuscan wine is famous all over the world.", + "pos": "adjective", + "word_frequency": 5384 + }, + { + "word": "tragico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tragic", + "romanization": "tragico", + "example_sentence_native": "È stata una fine tragica.", + "example_sentence_english": "It was a tragic end.", + "pos": "adjective", + "word_frequency": 5385 + }, + { + "word": "trasferta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "business trip;away game", + "romanization": "trasferta", + "example_sentence_native": "Sono in trasferta per lavoro questa settimana.", + "example_sentence_english": "I'm on a business trip for work this week.", + "pos": "noun", + "word_frequency": 5386 + }, + { + "word": "travaglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labor;toil;travail", + "romanization": "travaglio", + "example_sentence_native": "La donna era in travaglio da ore.", + "example_sentence_english": "The woman had been in labor for hours.", + "pos": "noun", + "word_frequency": 5387 + }, + { + "word": "vivace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lively;vibrant", + "romanization": "vivace", + "example_sentence_native": "È una città molto vivace.", + "example_sentence_english": "It's a very lively city.", + "pos": "adjective", + "word_frequency": 5390 + }, + { + "word": "abbattere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to knock down;to cut down;to reduce", + "romanization": "abbattere", + "example_sentence_native": "Hanno deciso di abbattere il vecchio edificio.", + "example_sentence_english": "They decided to knock down the old building.", + "pos": "verb", + "word_frequency": 5392 + }, + { + "word": "abbondante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abundant;plentiful", + "romanization": "abbondante", + "example_sentence_native": "Abbiamo avuto un raccolto abbondante quest'anno.", + "example_sentence_english": "We had an abundant harvest this year.", + "pos": "adjective", + "word_frequency": 5393 + }, + { + "word": "apparente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apparent;seeming", + "romanization": "apparente", + "example_sentence_native": "La sua calma era solo apparente.", + "example_sentence_english": "His calm was only apparent.", + "pos": "adjective", + "word_frequency": 5396 + }, + { + "word": "attrezzatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipment;gear", + "romanization": "attrezzatura", + "example_sentence_native": "Abbiamo bisogno di nuova attrezzatura per il campeggio.", + "example_sentence_english": "We need new equipment for camping.", + "pos": "noun", + "word_frequency": 5398 + }, + { + "word": "avanzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advance;to move forward;to be left over", + "romanization": "avanzare", + "example_sentence_native": "Il progetto sta avanzando rapidamente.", + "example_sentence_english": "The project is advancing rapidly.", + "pos": "verb", + "word_frequency": 5399 + }, + { + "word": "balla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bale", + "romanization": "balla", + "example_sentence_native": "Hanno caricato una grande balla di fieno sul camion.", + "example_sentence_english": "They loaded a large bale of hay onto the truck.", + "pos": "noun", + "word_frequency": 5401 + }, + { + "word": "bancario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banking (adj.)", + "romanization": "bancario", + "example_sentence_native": "Ha una lunga esperienza nel settore bancario.", + "example_sentence_english": "He has long experience in the banking sector.", + "pos": "adjective", + "word_frequency": 5402 + }, + { + "word": "carbonio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbon", + "romanization": "carbonio", + "example_sentence_native": "Il diamante è una forma di carbonio puro.", + "example_sentence_english": "Diamond is a form of pure carbon.", + "pos": "noun", + "word_frequency": 5403 + }, + { + "word": "cattedra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teacher's desk;professorship", + "romanization": "cattedra", + "example_sentence_native": "Il professore si è seduto alla cattedra.", + "example_sentence_english": "The professor sat at the desk.", + "pos": "noun", + "word_frequency": 5404 + }, + { + "word": "cloud", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloud (computing)", + "romanization": "cloud", + "example_sentence_native": "Molte aziende usano il cloud per archiviare i dati.", + "example_sentence_english": "Many companies use the cloud to store data.", + "pos": "noun", + "word_frequency": 5405 + }, + { + "word": "coltivare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cultivate;to grow", + "romanization": "coltivare", + "example_sentence_native": "Voglio coltivare verdure nel mio giardino.", + "example_sentence_english": "I want to grow vegetables in my garden.", + "pos": "verb", + "word_frequency": 5406 + }, + { + "word": "complessivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overall;comprehensively", + "romanization": "complessivamente", + "example_sentence_native": "Complessivamente, il progetto è stato un successo.", + "example_sentence_english": "Overall, the project was a success.", + "pos": "adverb", + "word_frequency": 5407 + }, + { + "word": "comunismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communism", + "romanization": "comunismo", + "example_sentence_native": "Il comunismo è un'ideologia politica.", + "example_sentence_english": "Communism is a political ideology.", + "pos": "noun", + "word_frequency": 5408 + }, + { + "word": "cooperativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperative", + "romanization": "cooperativa", + "example_sentence_native": "Lavora in una cooperativa agricola.", + "example_sentence_english": "She works in an agricultural cooperative.", + "pos": "noun", + "word_frequency": 5409 + }, + { + "word": "costanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constancy;perseverance", + "romanization": "costanza", + "example_sentence_native": "Il successo richiede costanza e dedizione.", + "example_sentence_english": "Success requires constancy and dedication.", + "pos": "noun", + "word_frequency": 5410 + }, + { + "word": "country", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "country (music genre)", + "romanization": "country", + "example_sentence_native": "Ascolta spesso musica country.", + "example_sentence_english": "He often listens to country music.", + "pos": "noun", + "word_frequency": 5411 + }, + { + "word": "decadenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decadence;decline", + "romanization": "decadenza", + "example_sentence_native": "L'impero romano conobbe un lungo periodo di decadenza.", + "example_sentence_english": "The Roman Empire experienced a long period of decline.", + "pos": "noun", + "word_frequency": 5412 + }, + { + "word": "delta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delta", + "romanization": "delta", + "example_sentence_native": "Il fiume sfocia nel mare formando un delta.", + "example_sentence_english": "The river flows into the sea forming a delta.", + "pos": "noun", + "word_frequency": 5414 + }, + { + "word": "diesel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diesel", + "romanization": "diesel", + "example_sentence_native": "La sua auto va a diesel.", + "example_sentence_english": "His car runs on diesel.", + "pos": "noun", + "word_frequency": 5415 + }, + { + "word": "discoteca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nightclub;disco", + "romanization": "discoteca", + "example_sentence_native": "Andiamo in discoteca stasera?", + "example_sentence_english": "Shall we go to the disco tonight?", + "pos": "noun", + "word_frequency": 5416 + }, + { + "word": "distinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distinct;distinguished", + "romanization": "distinto", + "example_sentence_native": "Ha un modo di parlare molto distinto.", + "example_sentence_english": "He has a very distinct way of speaking.", + "pos": "adjective", + "word_frequency": 5417 + }, + { + "word": "educativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educational", + "romanization": "educativo", + "example_sentence_native": "Questo programma televisivo è molto educativo.", + "example_sentence_english": "This TV program is very educational.", + "pos": "adjective", + "word_frequency": 5418 + }, + { + "word": "evidenziare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to highlight;to emphasize", + "romanization": "evidenziare", + "example_sentence_native": "Vorrei evidenziare alcuni punti importanti.", + "example_sentence_english": "I would like to highlight some important points.", + "pos": "verb", + "word_frequency": 5420 + }, + { + "word": "fondamentalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamentally;basically", + "romanization": "fondamentalmente", + "example_sentence_native": "Fondamentalmente, siamo d'accordo su tutto.", + "example_sentence_english": "Fundamentally, we agree on everything.", + "pos": "adverb", + "word_frequency": 5421 + }, + { + "word": "frontale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frontal;head-on", + "romanization": "frontale", + "example_sentence_native": "C'è stato uno scontro frontale tra due auto.", + "example_sentence_english": "There was a head-on collision between two cars.", + "pos": "adjective", + "word_frequency": 5423 + }, + { + "word": "gene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gene", + "romanization": "gene", + "example_sentence_native": "I geni determinano molte delle nostre caratteristiche.", + "example_sentence_english": "Genes determine many of our characteristics.", + "pos": "noun", + "word_frequency": 5425 + }, + { + "word": "illuminazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lighting;illumination", + "romanization": "illuminazione", + "example_sentence_native": "L'illuminazione della stanza è troppo fioca.", + "example_sentence_english": "The lighting in the room is too dim.", + "pos": "noun", + "word_frequency": 5428 + }, + { + "word": "impostazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setting;setup;approach", + "romanization": "impostazione", + "example_sentence_native": "Devo cambiare le impostazioni del telefono.", + "example_sentence_english": "I need to change the phone settings.", + "pos": "noun", + "word_frequency": 5429 + }, + { + "word": "influenzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to influence", + "romanization": "influenzare", + "example_sentence_native": "Le sue decisioni possono influenzare molte persone.", + "example_sentence_english": "His decisions can influence many people.", + "pos": "verb", + "word_frequency": 5430 + }, + { + "word": "ingiusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unfair;unjust", + "romanization": "ingiusto", + "example_sentence_native": "Trovo questa situazione molto ingiusta.", + "example_sentence_english": "I find this situation very unfair.", + "pos": "adjective", + "word_frequency": 5431 + }, + { + "word": "irlandese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Irish", + "romanization": "irlandese", + "example_sentence_native": "Ha origini irlandesi.", + "example_sentence_english": "He has Irish origins.", + "pos": "adjective", + "word_frequency": 5432 + }, + { + "word": "istanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instance;request;plea", + "romanization": "istanza", + "example_sentence_native": "Ha presentato un'istanza al tribunale.", + "example_sentence_english": "He submitted a request to the court.", + "pos": "noun", + "word_frequency": 5433 + }, + { + "word": "malapena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barely;hardly", + "romanization": "malapena", + "example_sentence_native": "Riesco a malapena a vedere al buio.", + "example_sentence_english": "I can barely see in the dark.", + "pos": "adverb", + "word_frequency": 5436 + }, + { + "word": "mattinata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "morning (duration)", + "romanization": "mattinata", + "example_sentence_native": "Ho passato tutta la mattinata a studiare.", + "example_sentence_english": "I spent the whole morning studying.", + "pos": "noun", + "word_frequency": 5437 + }, + { + "word": "metafora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphor", + "romanization": "metafora", + "example_sentence_native": "La vita è un viaggio è una metafora comune.", + "example_sentence_english": "Life is a journey is a common metaphor.", + "pos": "noun", + "word_frequency": 5439 + }, + { + "word": "olimpico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Olympic", + "romanization": "olimpico", + "example_sentence_native": "I giochi olimpici si tengono ogni quattro anni.", + "example_sentence_english": "The Olympic games are held every four years.", + "pos": "adjective", + "word_frequency": 5440 + }, + { + "word": "ordinamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legal system;order", + "romanization": "ordinamento", + "example_sentence_native": "L'ordinamento giuridico italiano è complesso.", + "example_sentence_english": "The Italian legal system is complex.", + "pos": "noun", + "word_frequency": 5441 + }, + { + "word": "ostaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostage", + "romanization": "ostaggio", + "example_sentence_native": "I negoziatori hanno cercato di liberare gli ostaggi.", + "example_sentence_english": "The negotiators tried to free the hostages.", + "pos": "noun", + "word_frequency": 5442 + }, + { + "word": "pannello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panel", + "romanization": "pannello", + "example_sentence_native": "Abbiamo installato pannelli solari sul tetto.", + "example_sentence_english": "We installed solar panels on the roof.", + "pos": "noun", + "word_frequency": 5444 + }, + { + "word": "preventivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventive;estimated", + "romanization": "preventivo", + "example_sentence_native": "Dobbiamo prendere misure preventive contro la diffusione del virus.", + "example_sentence_english": "We must take preventive measures against the spread of the virus.", + "pos": "adjective", + "word_frequency": 5447 + }, + { + "word": "primato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record;primacy", + "romanization": "primato", + "example_sentence_native": "Ha stabilito un nuovo primato mondiale.", + "example_sentence_english": "He set a new world record.", + "pos": "noun", + "word_frequency": 5448 + }, + { + "word": "quadrato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "square", + "romanization": "quadrato", + "example_sentence_native": "Disegna un quadrato sul foglio.", + "example_sentence_english": "Draw a square on the paper.", + "pos": "noun", + "word_frequency": 5449 + }, + { + "word": "quattordici", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fourteen", + "romanization": "quattordici", + "example_sentence_native": "Ho quattordici anni.", + "example_sentence_english": "I am fourteen years old.", + "pos": "adjective", + "word_frequency": 5450 + }, + { + "word": "relax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxation;relax", + "romanization": "relax", + "example_sentence_native": "Ho bisogno di un po' di relax dopo questa settimana.", + "example_sentence_english": "I need some relax after this week.", + "pos": "noun", + "word_frequency": 5451 + }, + { + "word": "ricorrente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recurring", + "romanization": "ricorrente", + "example_sentence_native": "È un problema ricorrente che dobbiamo risolvere.", + "example_sentence_english": "It's a recurring problem that we need to solve.", + "pos": "adjective", + "word_frequency": 5452 + }, + { + "word": "rimettere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put back;to vomit;to postpone", + "romanization": "rimettere", + "example_sentence_native": "Puoi rimettere il libro sullo scaffale?", + "example_sentence_english": "Can you put the book back on the shelf?", + "pos": "verb", + "word_frequency": 5453 + }, + { + "word": "riparazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "repair", + "romanization": "riparazione", + "example_sentence_native": "La macchina è in riparazione.", + "example_sentence_english": "The car is under repair.", + "pos": "noun", + "word_frequency": 5454 + }, + { + "word": "riposare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to rest", + "romanization": "riposare", + "example_sentence_native": "Ho bisogno di riposare dopo il lungo viaggio.", + "example_sentence_english": "I need to rest after the long journey.", + "pos": "verb", + "word_frequency": 5455 + }, + { + "word": "rivolgersi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn to;to address", + "romanization": "rivolgersi", + "example_sentence_native": "Se hai bisogno di aiuto, puoi rivolgerti a me.", + "example_sentence_english": "If you need help, you can turn to me.", + "pos": "verb", + "word_frequency": 5456 + }, + { + "word": "rugby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rugby", + "romanization": "rugby", + "example_sentence_native": "Il rugby è uno sport molto popolare in alcuni paesi.", + "example_sentence_english": "Rugby is a very popular sport in some countries.", + "pos": "noun", + "word_frequency": 5457 + }, + { + "word": "schiera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rank;array;host", + "romanization": "schiera", + "example_sentence_native": "Una vasta schiera di persone si è radunata.", + "example_sentence_english": "A vast host of people gathered.", + "pos": "noun", + "word_frequency": 5458 + }, + { + "word": "scimmia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "monkey;ape", + "romanization": "scimmia", + "example_sentence_native": "La scimmia mangia una banana.", + "example_sentence_english": "The monkey eats a banana.", + "pos": "noun", + "word_frequency": 5459 + }, + { + "word": "selezionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selected", + "romanization": "selezionato", + "example_sentence_native": "Solo i candidati selezionati saranno contattati.", + "example_sentence_english": "Only the selected candidates will be contacted.", + "pos": "adjective", + "word_frequency": 5461 + }, + { + "word": "semestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semester;half-year", + "romanization": "semestre", + "example_sentence_native": "Il prossimo semestre inizia a settembre.", + "example_sentence_english": "The next semester starts in September.", + "pos": "noun", + "word_frequency": 5462 + }, + { + "word": "settanta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seventy", + "romanization": "settanta", + "example_sentence_native": "Ha settanta anni.", + "example_sentence_english": "He is seventy years old.", + "pos": "adjective", + "word_frequency": 5463 + }, + { + "word": "smart", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smart", + "romanization": "smart", + "example_sentence_native": "Ho comprato uno smartphone nuovo.", + "example_sentence_english": "I bought a new smartphone.", + "pos": "adjective", + "word_frequency": 5464 + }, + { + "word": "sollevato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relieved;raised", + "romanization": "sollevato", + "example_sentence_native": "Ero sollevato di sentire che stava bene.", + "example_sentence_english": "I was relieved to hear that he was well.", + "pos": "adjective", + "word_frequency": 5465 + }, + { + "word": "sparso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scattered;sparse", + "romanization": "sparso", + "example_sentence_native": "I libri erano sparsi per tutta la stanza.", + "example_sentence_english": "The books were scattered all over the room.", + "pos": "adjective", + "word_frequency": 5466 + }, + { + "word": "spontaneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spontaneous", + "romanization": "spontaneo", + "example_sentence_native": "La sua reazione è stata completamente spontanea.", + "example_sentence_english": "His reaction was completely spontaneous.", + "pos": "adjective", + "word_frequency": 5467 + }, + { + "word": "sposarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get married", + "romanization": "sposarsi", + "example_sentence_native": "Si sono sposati l'anno scorso.", + "example_sentence_english": "They got married last year.", + "pos": "verb", + "word_frequency": 5468 + }, + { + "word": "tradito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "betrayed", + "romanization": "tradito", + "example_sentence_native": "Si sentiva tradito dai suoi amici.", + "example_sentence_english": "He felt betrayed by his friends.", + "pos": "adjective", + "word_frequency": 5470 + }, + { + "word": "trasferito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transferred;moved", + "romanization": "trasferito", + "example_sentence_native": "È stato trasferito in un'altra città per lavoro.", + "example_sentence_english": "He was transferred to another city for work.", + "pos": "adjective", + "word_frequency": 5471 + }, + { + "word": "umile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humble", + "romanization": "umile", + "example_sentence_native": "Nonostante il suo successo, è rimasto molto umile.", + "example_sentence_english": "Despite his success, he remained very humble.", + "pos": "adjective", + "word_frequency": 5472 + }, + { + "word": "uva", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grape;grapes", + "romanization": "uva", + "example_sentence_native": "Mi piace mangiare l'uva fresca.", + "example_sentence_english": "I like to eat fresh grapes.", + "pos": "noun", + "word_frequency": 5473 + }, + { + "word": "workshop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "workshop", + "romanization": "workshop", + "example_sentence_native": "Parteciperò a un workshop sulla scrittura creativa.", + "example_sentence_english": "I will participate in a creative writing workshop.", + "pos": "noun", + "word_frequency": 5475 + }, + { + "word": "zoo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zoo", + "romanization": "zoo", + "example_sentence_native": "Andiamo allo zoo questo fine settimana.", + "example_sentence_english": "Let's go to the zoo this weekend.", + "pos": "noun", + "word_frequency": 5476 + }, + { + "word": "alternativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternative", + "romanization": "alternativo", + "example_sentence_native": "Stiamo cercando soluzioni alternative al problema.", + "example_sentence_english": "We are looking for alternative solutions to the problem.", + "pos": "adjective", + "word_frequency": 5478 + }, + { + "word": "ascensore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elevator", + "romanization": "ascensore", + "example_sentence_native": "Prendiamo l'ascensore per salire al quinto piano.", + "example_sentence_english": "Let's take the elevator to go up to the fifth floor.", + "pos": "noun", + "word_frequency": 5481 + }, + { + "word": "assomigliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resemble", + "romanization": "assomigliare", + "example_sentence_native": "Lei assomiglia molto a sua madre.", + "example_sentence_english": "She strongly resembles her mother.", + "pos": "verb", + "word_frequency": 5482 + }, + { + "word": "attuare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implement", + "romanization": "attuare", + "example_sentence_native": "Dobbiamo attuare nuove politiche per migliorare la situazione.", + "example_sentence_english": "We need to implement new policies to improve the situation.", + "pos": "verb", + "word_frequency": 5483 + }, + { + "word": "blogger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blogger", + "romanization": "blogger", + "example_sentence_native": "È una famosa blogger di viaggi.", + "example_sentence_english": "She is a famous travel blogger.", + "pos": "noun", + "word_frequency": 5484 + }, + { + "word": "body", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bodysuit", + "romanization": "body", + "example_sentence_native": "Il bambino indossava un body caldo.", + "example_sentence_english": "The baby was wearing a warm bodysuit.", + "pos": "noun", + "word_frequency": 5485 + }, + { + "word": "chirurgo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surgeon", + "romanization": "chirurgo", + "example_sentence_native": "Il chirurgo ha eseguito un'operazione complessa.", + "example_sentence_english": "The surgeon performed a complex operation.", + "pos": "noun", + "word_frequency": 5486 + }, + { + "word": "coloniale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonial", + "romanization": "coloniale", + "example_sentence_native": "L'architettura coloniale è molto affascinante.", + "example_sentence_english": "Colonial architecture is very fascinating.", + "pos": "adjective", + "word_frequency": 5487 + }, + { + "word": "comodità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfort", + "romanization": "comodità", + "example_sentence_native": "Apprezzo molto la comodità di questo hotel.", + "example_sentence_english": "I really appreciate the comfort of this hotel.", + "pos": "noun", + "word_frequency": 5488 + }, + { + "word": "consistenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consistency", + "romanization": "consistenza", + "example_sentence_native": "La consistenza della salsa è perfetta.", + "example_sentence_english": "The consistency of the sauce is perfect.", + "pos": "noun", + "word_frequency": 5489 + }, + { + "word": "cooperativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooperative", + "romanization": "cooperativo", + "example_sentence_native": "È importante essere cooperativi in un team.", + "example_sentence_english": "It's important to be cooperative in a team.", + "pos": "adjective", + "word_frequency": 5490 + }, + { + "word": "cottura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cooking", + "romanization": "cottura", + "example_sentence_native": "Il tempo di cottura per la pasta è di dieci minuti.", + "example_sentence_english": "The cooking time for the pasta is ten minutes.", + "pos": "noun", + "word_frequency": 5491 + }, + { + "word": "crociera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cruise", + "romanization": "crociera", + "example_sentence_native": "Abbiamo prenotato una crociera nel Mediterraneo.", + "example_sentence_english": "We booked a cruise in the Mediterranean.", + "pos": "noun", + "word_frequency": 5492 + }, + { + "word": "cuoco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cook", + "romanization": "cuoco", + "example_sentence_native": "Il cuoco ha preparato un piatto delizioso.", + "example_sentence_english": "The cook prepared a delicious dish.", + "pos": "noun", + "word_frequency": 5493 + }, + { + "word": "dance", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dance (music)", + "romanization": "dance", + "example_sentence_native": "Ascoltiamo musica dance in discoteca.", + "example_sentence_english": "We listen to dance music at the club.", + "pos": "noun", + "word_frequency": 5494 + }, + { + "word": "direttivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managerial", + "romanization": "direttivo", + "example_sentence_native": "Il consiglio direttivo ha preso una decisione importante.", + "example_sentence_english": "The steering committee made an important decision.", + "pos": "adjective", + "word_frequency": 5497 + }, + { + "word": "disegnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designed", + "romanization": "disegnato", + "example_sentence_native": "Il vestito è stato disegnato da un famoso stilista.", + "example_sentence_english": "The dress was designed by a famous stylist.", + "pos": "adjective", + "word_frequency": 5498 + }, + { + "word": "dispetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spite", + "romanization": "dispetto", + "example_sentence_native": "Ha fatto quel gesto per dispetto.", + "example_sentence_english": "He made that gesture out of spite.", + "pos": "noun", + "word_frequency": 5499 + }, + { + "word": "dote", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "talent", + "romanization": "dote", + "example_sentence_native": "Ha una grande dote per la musica.", + "example_sentence_english": "She has a great talent for music.", + "pos": "noun", + "word_frequency": 5500 + }, + { + "word": "dottoressa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doctor (female)", + "romanization": "dottoressa", + "example_sentence_native": "La dottoressa mi ha visitato questa mattina.", + "example_sentence_english": "The doctor visited me this morning.", + "pos": "noun", + "word_frequency": 5501 + }, + { + "word": "duo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duo", + "romanization": "duo", + "example_sentence_native": "Il duo musicale si esibirà stasera.", + "example_sentence_english": "The musical duo will perform tonight.", + "pos": "noun", + "word_frequency": 5502 + }, + { + "word": "elettricità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "electricity", + "romanization": "elettricità", + "example_sentence_native": "Abbiamo bisogno di elettricità per far funzionare gli apparecchi.", + "example_sentence_english": "We need electricity to make the appliances work.", + "pos": "noun", + "word_frequency": 5504 + }, + { + "word": "esplorare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to explore", + "romanization": "esplorare", + "example_sentence_native": "Ci piace esplorare nuovi posti durante le vacanze.", + "example_sentence_english": "We like to explore new places during holidays.", + "pos": "verb", + "word_frequency": 5507 + }, + { + "word": "espulsione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expulsion", + "romanization": "espulsione", + "example_sentence_native": "L'espulsione del giocatore ha cambiato la partita.", + "example_sentence_english": "The player's expulsion changed the game.", + "pos": "noun", + "word_frequency": 5508 + }, + { + "word": "francamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frankly", + "romanization": "francamente", + "example_sentence_native": "Francamente, non so cosa dire.", + "example_sentence_english": "Frankly, I don't know what to say.", + "pos": "adverb", + "word_frequency": 5509 + }, + { + "word": "gettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw", + "romanization": "gettare", + "example_sentence_native": "Non gettare la spazzatura per terra.", + "example_sentence_english": "Don't throw trash on the ground.", + "pos": "verb", + "word_frequency": 5510 + }, + { + "word": "inaccettabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unacceptable", + "romanization": "inaccettabile", + "example_sentence_native": "Il suo comportamento è inaccettabile.", + "example_sentence_english": "His behavior is unacceptable.", + "pos": "adjective", + "word_frequency": 5512 + }, + { + "word": "inaugurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaugurated", + "romanization": "inaugurato", + "example_sentence_native": "Il nuovo ponte è stato inaugurato ieri.", + "example_sentence_english": "The new bridge was inaugurated yesterday.", + "pos": "adjective", + "word_frequency": 5513 + }, + { + "word": "inciso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engraved", + "romanization": "inciso", + "example_sentence_native": "Il suo nome è inciso sulla targa.", + "example_sentence_english": "His name is engraved on the plaque.", + "pos": "adjective", + "word_frequency": 5514 + }, + { + "word": "indagato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "investigated (person)", + "romanization": "indagato", + "example_sentence_native": "L'uomo indagato è stato rilasciato.", + "example_sentence_english": "The investigated man was released.", + "pos": "adjective", + "word_frequency": 5515 + }, + { + "word": "intrattenimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entertainment", + "romanization": "intrattenimento", + "example_sentence_native": "Cerchiamo nuove forme di intrattenimento.", + "example_sentence_english": "We are looking for new forms of entertainment.", + "pos": "noun", + "word_frequency": 5516 + }, + { + "word": "ipocrisia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypocrisy", + "romanization": "ipocrisia", + "example_sentence_native": "Non sopporto l'ipocrisia di certe persone.", + "example_sentence_english": "I can't stand the hypocrisy of certain people.", + "pos": "noun", + "word_frequency": 5517 + }, + { + "word": "lineare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linear", + "romanization": "lineare", + "example_sentence_native": "Il processo di apprendimento non è sempre lineare.", + "example_sentence_english": "The learning process is not always linear.", + "pos": "adjective", + "word_frequency": 5522 + }, + { + "word": "maternità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maternity", + "romanization": "maternità", + "example_sentence_native": "Ha preso un congedo di maternità per prendersi cura del bambino.", + "example_sentence_english": "She took maternity leave to take care of the baby.", + "pos": "noun", + "word_frequency": 5523 + }, + { + "word": "moderato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderate", + "romanization": "moderato", + "example_sentence_native": "Il clima in questa regione è temperato e moderato.", + "example_sentence_english": "The climate in this region is temperate and moderate.", + "pos": "adjective", + "word_frequency": 5524 + }, + { + "word": "oceano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ocean", + "romanization": "oceano", + "example_sentence_native": "L'oceano Atlantico è molto vasto.", + "example_sentence_english": "The Atlantic ocean is very vast.", + "pos": "noun", + "word_frequency": 5526 + }, + { + "word": "offensivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "offensive", + "romanization": "offensivo", + "example_sentence_native": "Il suo commento è stato considerato molto offensivo.", + "example_sentence_english": "His comment was considered very offensive.", + "pos": "adjective", + "word_frequency": 5527 + }, + { + "word": "pagato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paid", + "romanization": "pagato", + "example_sentence_native": "Il lavoro è stato pagato in contanti.", + "example_sentence_english": "The work was paid in cash.", + "pos": "adjective", + "word_frequency": 5528 + }, + { + "word": "parroco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parish priest", + "romanization": "parroco", + "example_sentence_native": "Il parroco ha celebrato la messa domenicale.", + "example_sentence_english": "The parish priest celebrated the Sunday mass.", + "pos": "noun", + "word_frequency": 5529 + }, + { + "word": "picchiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beaten", + "romanization": "picchiato", + "example_sentence_native": "L'uomo è stato trovato picchiato e ferito.", + "example_sentence_english": "The man was found beaten and injured.", + "pos": "adjective", + "word_frequency": 5530 + }, + { + "word": "pregio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merit;value;quality", + "romanization": "pregio", + "example_sentence_native": "Questo orologio è di grande pregio.", + "example_sentence_english": "This watch is of great value.", + "pos": "noun", + "word_frequency": 5532 + }, + { + "word": "random", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "random", + "romanization": "random", + "example_sentence_native": "Ha scelto un numero a caso, in modo random.", + "example_sentence_english": "He chose a number at random, in a random way.", + "pos": "adjective", + "word_frequency": 5534 + }, + { + "word": "rapito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapped;abducted", + "romanization": "rapito", + "example_sentence_native": "Il bambino rapito è stato ritrovato sano e salvo.", + "example_sentence_english": "The kidnapped child was found safe and sound.", + "pos": "adjective", + "word_frequency": 5535 + }, + { + "word": "recare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring;to cause", + "romanization": "recare", + "example_sentence_native": "Questo evento può recare gravi danni all'ambiente.", + "example_sentence_english": "This event can cause serious damage to the environment.", + "pos": "verb", + "word_frequency": 5536 + }, + { + "word": "regalare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to give (as a gift)", + "romanization": "regalare", + "example_sentence_native": "Voglio regalare un libro a mia sorella.", + "example_sentence_english": "I want to give a book to my sister.", + "pos": "verb", + "word_frequency": 5537 + }, + { + "word": "resoconto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "report;account", + "romanization": "resoconto", + "example_sentence_native": "Ha presentato un resoconto dettagliato della riunione.", + "example_sentence_english": "He presented a detailed report of the meeting.", + "pos": "noun", + "word_frequency": 5538 + }, + { + "word": "riabilitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rehabilitation", + "romanization": "riabilitazione", + "example_sentence_native": "Dopo l'infortunio, ha iniziato un percorso di riabilitazione.", + "example_sentence_english": "After the injury, he started a rehabilitation process.", + "pos": "noun", + "word_frequency": 5539 + }, + { + "word": "ripetuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repeated", + "romanization": "ripetuto", + "example_sentence_native": "Ha fatto un errore ripetuto più volte.", + "example_sentence_english": "He made an error repeated several times.", + "pos": "adjective", + "word_frequency": 5540 + }, + { + "word": "ritirata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retreat;withdrawal", + "romanization": "ritirata", + "example_sentence_native": "L'esercito ha ordinato la ritirata strategica.", + "example_sentence_english": "The army ordered the strategic retreat.", + "pos": "noun", + "word_frequency": 5541 + }, + { + "word": "scia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wake (of a boat);trail", + "romanization": "scia", + "example_sentence_native": "La barca ha lasciato una lunga scia sull'acqua.", + "example_sentence_english": "The boat left a long wake on the water.", + "pos": "noun", + "word_frequency": 5542 + }, + { + "word": "scioglimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissolution;melting", + "romanization": "scioglimento", + "example_sentence_native": "Lo scioglimento dei ghiacciai è un problema globale.", + "example_sentence_english": "The melting of glaciers is a global problem.", + "pos": "noun", + "word_frequency": 5543 + }, + { + "word": "scoperto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discovered;uncovered;open", + "romanization": "scoperto", + "example_sentence_native": "Ha lasciato la finestra scoperta tutta la notte.", + "example_sentence_english": "He left the window uncovered all night.", + "pos": "adjective", + "word_frequency": 5544 + }, + { + "word": "serietà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seriousness", + "romanization": "serietà", + "example_sentence_native": "Ha affrontato la situazione con grande serietà.", + "example_sentence_english": "He faced the situation with great seriousness.", + "pos": "noun", + "word_frequency": 5545 + }, + { + "word": "serpente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snake", + "romanization": "serpente", + "example_sentence_native": "Ho visto un serpente nel giardino.", + "example_sentence_english": "I saw a snake in the garden.", + "pos": "noun", + "word_frequency": 5546 + }, + { + "word": "setta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sect", + "romanization": "setta", + "example_sentence_native": "Si dice che sia entrato a far parte di una setta.", + "example_sentence_english": "It is said that he joined a sect.", + "pos": "noun", + "word_frequency": 5547 + }, + { + "word": "society", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "society", + "romanization": "society", + "example_sentence_native": "Molte aziende hanno una 'society' per eventi speciali.", + "example_sentence_english": "Many companies have a 'society' for special events.", + "pos": "noun", + "word_frequency": 5548 + }, + { + "word": "strategico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategic", + "romanization": "strategico", + "example_sentence_native": "Hanno preso una decisione strategica per il futuro dell'azienda.", + "example_sentence_english": "They made a strategic decision for the future of the company.", + "pos": "adjective", + "word_frequency": 5549 + }, + { + "word": "strutturale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "structural", + "romanization": "strutturale", + "example_sentence_native": "Ci sono problemi strutturali nell'edificio.", + "example_sentence_english": "There are structural problems in the building.", + "pos": "adjective", + "word_frequency": 5550 + }, + { + "word": "superiorità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superiority", + "romanization": "superiorità", + "example_sentence_native": "Ha dimostrato una chiara superiorità nel gioco.", + "example_sentence_english": "He demonstrated clear superiority in the game.", + "pos": "noun", + "word_frequency": 5551 + }, + { + "word": "telefonico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "telephonic;phone (adj.)", + "romanization": "telefonico", + "example_sentence_native": "Ho ricevuto una chiamata telefonica importante.", + "example_sentence_english": "I received an important phone call.", + "pos": "adjective", + "word_frequency": 5552 + }, + { + "word": "terminale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "terminal", + "romanization": "terminale", + "example_sentence_native": "La malattia è in fase terminale.", + "example_sentence_english": "The disease is in its terminal phase.", + "pos": "adjective", + "word_frequency": 5553 + }, + { + "word": "tradizionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditionally", + "romanization": "tradizionalmente", + "example_sentence_native": "Tradizionalmente, la famiglia si riunisce per Natale.", + "example_sentence_english": "Traditionally, the family gathers for Christmas.", + "pos": "adverb", + "word_frequency": 5555 + }, + { + "word": "trasmesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmitted;broadcast", + "romanization": "trasmesso", + "example_sentence_native": "Il programma è stato trasmesso in diretta.", + "example_sentence_english": "The program was broadcast live.", + "pos": "adjective", + "word_frequency": 5557 + }, + { + "word": "ungherese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hungarian", + "romanization": "ungherese", + "example_sentence_native": "Parla fluentemente l'ungherese.", + "example_sentence_english": "He speaks Hungarian fluently.", + "pos": "adjective", + "word_frequency": 5558 + }, + { + "word": "verdura", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "vegetable", + "romanization": "verdura", + "example_sentence_native": "Mi piace mangiare molta verdura.", + "example_sentence_english": "I like to eat a lot of vegetables.", + "pos": "noun", + "word_frequency": 5559 + }, + { + "word": "vinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "won;defeated", + "romanization": "vinto", + "example_sentence_native": "La squadra è uscita dal campo vinta.", + "example_sentence_english": "The team left the field defeated.", + "pos": "adjective", + "word_frequency": 5560 + }, + { + "word": "vomito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vomit", + "romanization": "vomito", + "example_sentence_native": "Ha avuto un attacco di vomito.", + "example_sentence_english": "He had an attack of vomit.", + "pos": "noun", + "word_frequency": 5561 + }, + { + "word": "zampa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "paw;leg (of an animal)", + "romanization": "zampa", + "example_sentence_native": "Il cane ha una zampa ferita.", + "example_sentence_english": "The dog has an injured paw.", + "pos": "noun", + "word_frequency": 5563 + }, + { + "word": "zombie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zombie", + "romanization": "zombie", + "example_sentence_native": "Ha visto un film sugli zombie.", + "example_sentence_english": "He saw a movie about zombies.", + "pos": "noun", + "word_frequency": 5564 + }, + { + "word": "aggiunto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "added;attached", + "romanization": "aggiunto", + "example_sentence_native": "Il documento aggiunto è nella cartella.", + "example_sentence_english": "The added document is in the folder.", + "pos": "adjective", + "word_frequency": 5567 + }, + { + "word": "altare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "altar", + "romanization": "altare", + "example_sentence_native": "La cerimonia si è svolta davanti all'altare.", + "example_sentence_english": "The ceremony took place in front of the altar.", + "pos": "noun", + "word_frequency": 5568 + }, + { + "word": "antenato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestor", + "romanization": "antenato", + "example_sentence_native": "I nostri antenati vivevano in queste terre.", + "example_sentence_english": "Our ancestors lived in these lands.", + "pos": "noun", + "word_frequency": 5569 + }, + { + "word": "appalto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contract;tender", + "romanization": "appalto", + "example_sentence_native": "Hanno vinto l'appalto per la costruzione del ponte.", + "example_sentence_english": "They won the contract for the bridge construction.", + "pos": "noun", + "word_frequency": 5570 + }, + { + "word": "busto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bust;torso", + "romanization": "busto", + "example_sentence_native": "Il busto della statua era di marmo.", + "example_sentence_english": "The bust of the statue was made of marble.", + "pos": "noun", + "word_frequency": 5572 + }, + { + "word": "cacciatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hunter", + "romanization": "cacciatore", + "example_sentence_native": "Il cacciatore seguiva le tracce dell'animale.", + "example_sentence_english": "The hunter followed the animal's tracks.", + "pos": "noun", + "word_frequency": 5573 + }, + { + "word": "cocaina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cocaine", + "romanization": "cocaina", + "example_sentence_native": "La polizia ha sequestrato un carico di cocaina.", + "example_sentence_english": "The police seized a shipment of cocaine.", + "pos": "noun", + "word_frequency": 5576 + }, + { + "word": "coinvolto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "involved", + "romanization": "coinvolto", + "example_sentence_native": "Era coinvolto nell'incidente.", + "example_sentence_english": "He was involved in the accident.", + "pos": "adjective", + "word_frequency": 5577 + }, + { + "word": "collaterale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collateral;side (effect)", + "romanization": "collaterale", + "example_sentence_native": "Ci sono stati danni collaterali.", + "example_sentence_english": "There was collateral damage.", + "pos": "adjective", + "word_frequency": 5578 + }, + { + "word": "comandare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to command;to order", + "romanization": "comandare", + "example_sentence_native": "Il capitano comanda la nave.", + "example_sentence_english": "The captain commands the ship.", + "pos": "verb", + "word_frequency": 5579 + }, + { + "word": "condizionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conditioned;air-conditioned", + "romanization": "condizionato", + "example_sentence_native": "La stanza è ben condizionata.", + "example_sentence_english": "The room is well air-conditioned.", + "pos": "adjective", + "word_frequency": 5580 + }, + { + "word": "conseguito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "achieved;obtained", + "romanization": "conseguito", + "example_sentence_native": "Ha conseguito ottimi risultati.", + "example_sentence_english": "He achieved excellent results.", + "pos": "adjective", + "word_frequency": 5581 + }, + { + "word": "considerarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consider oneself", + "romanization": "considerarsi", + "example_sentence_native": "Si considera un esperto.", + "example_sentence_english": "He considers himself an expert.", + "pos": "verb", + "word_frequency": 5582 + }, + { + "word": "considerevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerable;significant", + "romanization": "considerevole", + "example_sentence_native": "Ha fatto un progresso considerevole.", + "example_sentence_english": "He made considerable progress.", + "pos": "adjective", + "word_frequency": 5583 + }, + { + "word": "convocazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summons;call-up", + "romanization": "convocazione", + "example_sentence_native": "Ha ricevuto una convocazione per l'assemblea.", + "example_sentence_english": "He received a summons for the assembly.", + "pos": "noun", + "word_frequency": 5584 + }, + { + "word": "cuffia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "headphone;cap (swimming)", + "romanization": "cuffia", + "example_sentence_native": "Indosso le cuffie per ascoltare musica.", + "example_sentence_english": "I wear headphones to listen to music.", + "pos": "noun", + "word_frequency": 5585 + }, + { + "word": "didattico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "didactic;educational", + "romanization": "didattico", + "example_sentence_native": "Il materiale didattico è disponibile online.", + "example_sentence_english": "The educational material is available online.", + "pos": "adjective", + "word_frequency": 5590 + }, + { + "word": "dimenticato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forgotten", + "romanization": "dimenticato", + "example_sentence_native": "Ho lasciato il portafoglio dimenticato a casa.", + "example_sentence_english": "I left my wallet forgotten at home.", + "pos": "adjective", + "word_frequency": 5591 + }, + { + "word": "distribuito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distributed", + "romanization": "distribuito", + "example_sentence_native": "I volantini sono stati distribuiti a tutti.", + "example_sentence_english": "The flyers were distributed to everyone.", + "pos": "adjective", + "word_frequency": 5592 + }, + { + "word": "economicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "economically", + "romanization": "economicamente", + "example_sentence_native": "La situazione è economicamente stabile.", + "example_sentence_english": "The situation is economically stable.", + "pos": "adverb", + "word_frequency": 5593 + }, + { + "word": "espressamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressly;explicitly", + "romanization": "espressamente", + "example_sentence_native": "Ha chiesto espressamente di non essere disturbato.", + "example_sentence_english": "He expressly asked not to be disturbed.", + "pos": "adverb", + "word_frequency": 5594 + }, + { + "word": "fotocamera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camera", + "romanization": "fotocamera", + "example_sentence_native": "Ho comprato una nuova fotocamera.", + "example_sentence_english": "I bought a new camera.", + "pos": "noun", + "word_frequency": 5596 + }, + { + "word": "gonna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "skirt", + "romanization": "gonna", + "example_sentence_native": "Indossa una gonna lunga.", + "example_sentence_english": "She is wearing a long skirt.", + "pos": "noun", + "word_frequency": 5597 + }, + { + "word": "grammo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gram", + "romanization": "grammo", + "example_sentence_native": "Vorrei cento grammi di prosciutto.", + "example_sentence_english": "I would like one hundred grams of ham.", + "pos": "noun", + "word_frequency": 5598 + }, + { + "word": "igiene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygiene", + "romanization": "igiene", + "example_sentence_native": "L'igiene personale è importante.", + "example_sentence_english": "Personal hygiene is important.", + "pos": "noun", + "word_frequency": 5599 + }, + { + "word": "illustrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustrated", + "romanization": "illustrato", + "example_sentence_native": "Il libro è riccamente illustrato con immagini a colori.", + "example_sentence_english": "The book is richly illustrated with color images.", + "pos": "adjective", + "word_frequency": 5600 + }, + { + "word": "improvviso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sudden", + "romanization": "improvviso", + "example_sentence_native": "C'è stato un cambiamento improvviso nel tempo.", + "example_sentence_english": "There was a sudden change in the weather.", + "pos": "adjective", + "word_frequency": 5601 + }, + { + "word": "indifferenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indifference", + "romanization": "indifferenza", + "example_sentence_native": "La sua indifferenza mi ha ferito.", + "example_sentence_english": "His indifference hurt me.", + "pos": "noun", + "word_frequency": 5602 + }, + { + "word": "inganno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deception;trick", + "romanization": "inganno", + "example_sentence_native": "È caduto vittima di un inganno.", + "example_sentence_english": "He fell victim to a deception.", + "pos": "noun", + "word_frequency": 5603 + }, + { + "word": "integrità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integrity", + "romanization": "integrità", + "example_sentence_native": "L'integrità è una qualità fondamentale per un leader.", + "example_sentence_english": "Integrity is a fundamental quality for a leader.", + "pos": "noun", + "word_frequency": 5604 + }, + { + "word": "levante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "east;levant (wind)", + "romanization": "levante", + "example_sentence_native": "Il sole sorge a levante.", + "example_sentence_english": "The sun rises in the east.", + "pos": "noun", + "word_frequency": 5606 + }, + { + "word": "lino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "linen;flax", + "romanization": "lino", + "example_sentence_native": "La camicia è fatta di lino puro.", + "example_sentence_english": "The shirt is made of pure linen.", + "pos": "noun", + "word_frequency": 5607 + }, + { + "word": "litigare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to argue;to quarrel", + "romanization": "litigare", + "example_sentence_native": "Non mi piace litigare con nessuno.", + "example_sentence_english": "I don't like to argue with anyone.", + "pos": "verb", + "word_frequency": 5608 + }, + { + "word": "maledizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curse;damnation", + "romanization": "maledizione", + "example_sentence_native": "Ha lanciato una maledizione sul suo nemico.", + "example_sentence_english": "He cast a curse on his enemy.", + "pos": "noun", + "word_frequency": 5609 + }, + { + "word": "maturo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ripe;mature", + "romanization": "maturo", + "example_sentence_native": "Le fragole sono mature e dolci.", + "example_sentence_english": "The strawberries are ripe and sweet.", + "pos": "adjective", + "word_frequency": 5611 + }, + { + "word": "menu", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "menu", + "romanization": "menu", + "example_sentence_native": "Possiamo avere il menu, per favore?", + "example_sentence_english": "Can we have the menu, please?", + "pos": "noun", + "word_frequency": 5613 + }, + { + "word": "noioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boring", + "romanization": "noioso", + "example_sentence_native": "Il film era davvero noioso.", + "example_sentence_english": "The movie was really boring.", + "pos": "adjective", + "word_frequency": 5616 + }, + { + "word": "ossessione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsession", + "romanization": "ossessione", + "example_sentence_native": "Ha una vera ossessione per i videogiochi.", + "example_sentence_english": "He has a real obsession with video games.", + "pos": "noun", + "word_frequency": 5618 + }, + { + "word": "preoccupato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worried;concerned", + "romanization": "preoccupato", + "example_sentence_native": "Sono molto preoccupato per il suo esame.", + "example_sentence_english": "I am very worried about his exam.", + "pos": "adjective", + "word_frequency": 5621 + }, + { + "word": "raduno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathering;rally;meeting", + "romanization": "raduno", + "example_sentence_native": "C'è stato un grande raduno di motociclisti.", + "example_sentence_english": "There was a large gathering of motorcyclists.", + "pos": "noun", + "word_frequency": 5623 + }, + { + "word": "rilasciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "released", + "romanization": "rilasciato", + "example_sentence_native": "Il nuovo album è stato rilasciato ieri.", + "example_sentence_english": "The new album was released yesterday.", + "pos": "adjective", + "word_frequency": 5625 + }, + { + "word": "ripetutamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repeatedly", + "romanization": "ripetutamente", + "example_sentence_native": "Ha bussato alla porta ripetutamente.", + "example_sentence_english": "He knocked on the door repeatedly.", + "pos": "adverb", + "word_frequency": 5627 + }, + { + "word": "rotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broken", + "romanization": "rotto", + "example_sentence_native": "Il mio telefono è rotto.", + "example_sentence_english": "My phone is broken.", + "pos": "adjective", + "word_frequency": 5628 + }, + { + "word": "salvaguardia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "safeguard;protection", + "romanization": "salvaguardia", + "example_sentence_native": "La salvaguardia dell'ambiente è cruciale.", + "example_sentence_english": "The safeguard of the environment is crucial.", + "pos": "noun", + "word_frequency": 5629 + }, + { + "word": "scommessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bet;wager", + "romanization": "scommessa", + "example_sentence_native": "Ho fatto una scommessa sulla partita.", + "example_sentence_english": "I made a bet on the game.", + "pos": "noun", + "word_frequency": 5631 + }, + { + "word": "scoppio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosion;burst;outbreak", + "romanization": "scoppio", + "example_sentence_native": "C'è stato uno scoppio improvviso.", + "example_sentence_english": "There was a sudden explosion.", + "pos": "noun", + "word_frequency": 5632 + }, + { + "word": "scudetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "championship title (in Italian sports;especially football)", + "romanization": "scudetto", + "example_sentence_native": "La squadra ha vinto lo scudetto quest'anno.", + "example_sentence_english": "The team won the championship title this year.", + "pos": "noun", + "word_frequency": 5633 + }, + { + "word": "sessualità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexuality", + "romanization": "sessualità", + "example_sentence_native": "La sessualità è un aspetto complesso dell'identità umana.", + "example_sentence_english": "Sexuality is a complex aspect of human identity.", + "pos": "noun", + "word_frequency": 5634 + }, + { + "word": "spaventare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to scare;to frighten", + "romanization": "spaventare", + "example_sentence_native": "Non volevo spaventarti.", + "example_sentence_english": "I didn't want to scare you.", + "pos": "verb", + "word_frequency": 5635 + }, + { + "word": "stereotipo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stereotype", + "romanization": "stereotipo", + "example_sentence_native": "Dobbiamo evitare gli stereotipi.", + "example_sentence_english": "We must avoid stereotypes.", + "pos": "noun", + "word_frequency": 5636 + }, + { + "word": "suite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suite", + "romanization": "suite", + "example_sentence_native": "Abbiamo prenotato una suite all'hotel.", + "example_sentence_english": "We booked a suite at the hotel.", + "pos": "noun", + "word_frequency": 5637 + }, + { + "word": "target", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "target", + "romanization": "target", + "example_sentence_native": "Il nostro target di mercato sono i giovani.", + "example_sentence_english": "Our market target is young people.", + "pos": "noun", + "word_frequency": 5638 + }, + { + "word": "telefilm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "TV series episode;TV movie", + "romanization": "telefilm", + "example_sentence_native": "Ho guardato un nuovo telefilm ieri sera.", + "example_sentence_english": "I watched a new TV series episode last night.", + "pos": "noun", + "word_frequency": 5639 + }, + { + "word": "terminato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finished", + "romanization": "terminato", + "example_sentence_native": "Il lavoro è terminato.", + "example_sentence_english": "The work is finished.", + "pos": "adjective", + "word_frequency": 5640 + }, + { + "word": "tracciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "track", + "romanization": "tracciato", + "example_sentence_native": "Il tracciato della nuova ferrovia è stato approvato.", + "example_sentence_english": "The track of the new railway has been approved.", + "pos": "noun", + "word_frequency": 5641 + }, + { + "word": "transito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transit", + "romanization": "transito", + "example_sentence_native": "Questa è una zona di transito per i veicoli pesanti.", + "example_sentence_english": "This is a transit area for heavy vehicles.", + "pos": "noun", + "word_frequency": 5642 + }, + { + "word": "accorgere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to notice", + "romanization": "accorgere", + "example_sentence_native": "Non si è accorto del pericolo.", + "example_sentence_english": "He didn't notice the danger.", + "pos": "verb", + "word_frequency": 5645 + }, + { + "word": "annullare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cancel", + "romanization": "annullare", + "example_sentence_native": "Dobbiamo annullare l'appuntamento.", + "example_sentence_english": "We need to cancel the appointment.", + "pos": "verb", + "word_frequency": 5646 + }, + { + "word": "anticipato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anticipated", + "romanization": "anticipato", + "example_sentence_native": "Il pagamento anticipato offre uno sconto.", + "example_sentence_english": "Early payment offers a discount.", + "pos": "adjective", + "word_frequency": 5647 + }, + { + "word": "approfondimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in-depth analysis", + "romanization": "approfondimento", + "example_sentence_native": "Il corso offre un approfondimento su questo argomento.", + "example_sentence_english": "The course offers an in-depth analysis of this topic.", + "pos": "noun", + "word_frequency": 5648 + }, + { + "word": "ascesa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ascent", + "romanization": "ascesa", + "example_sentence_native": "La sua ascesa al potere è stata rapida.", + "example_sentence_english": "His ascent to power was rapid.", + "pos": "noun", + "word_frequency": 5649 + }, + { + "word": "bank", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bank", + "romanization": "bank", + "example_sentence_native": "Devo andare in bank per prelevare contanti.", + "example_sentence_english": "I need to go to the bank to withdraw cash.", + "pos": "noun", + "word_frequency": 5652 + }, + { + "word": "baseball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baseball", + "romanization": "baseball", + "example_sentence_native": "Il baseball è popolare in America.", + "example_sentence_english": "Baseball is popular in America.", + "pos": "noun", + "word_frequency": 5654 + }, + { + "word": "bevanda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drink", + "romanization": "bevanda", + "example_sentence_native": "Quale bevanda preferisci?", + "example_sentence_english": "Which drink do you prefer?", + "pos": "noun", + "word_frequency": 5655 + }, + { + "word": "brevemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefly", + "romanization": "brevemente", + "example_sentence_native": "Spiegami brevemente la situazione.", + "example_sentence_english": "Explain the situation to me briefly.", + "pos": "adverb", + "word_frequency": 5656 + }, + { + "word": "cinematografico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cinematographic", + "romanization": "cinematografico", + "example_sentence_native": "Ha un grande talento cinematografico.", + "example_sentence_english": "He has great cinematographic talent.", + "pos": "adjective", + "word_frequency": 5658 + }, + { + "word": "clausola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clause", + "romanization": "clausola", + "example_sentence_native": "Il contratto contiene una clausola importante.", + "example_sentence_english": "The contract contains an important clause.", + "pos": "noun", + "word_frequency": 5659 + }, + { + "word": "coma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coma", + "romanization": "coma", + "example_sentence_native": "Il paziente è in coma.", + "example_sentence_english": "The patient is in a coma.", + "pos": "noun", + "word_frequency": 5660 + }, + { + "word": "conservatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservative", + "romanization": "conservatore", + "example_sentence_native": "È una persona molto conservatrice.", + "example_sentence_english": "She is a very conservative person.", + "pos": "adjective", + "word_frequency": 5661 + }, + { + "word": "consultare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consult", + "romanization": "consultare", + "example_sentence_native": "Devo consultare un medico.", + "example_sentence_english": "I need to consult a doctor.", + "pos": "verb", + "word_frequency": 5662 + }, + { + "word": "contest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contest", + "romanization": "contest", + "example_sentence_native": "Ha vinto il contest di canto.", + "example_sentence_english": "He won the singing contest.", + "pos": "noun", + "word_frequency": 5663 + }, + { + "word": "continentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continental", + "romanization": "continentale", + "example_sentence_native": "L'Europa ha un clima continentale.", + "example_sentence_english": "Europe has a continental climate.", + "pos": "adjective", + "word_frequency": 5664 + }, + { + "word": "costruito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "built", + "romanization": "costruito", + "example_sentence_native": "La casa è stata costruita nel 1900.", + "example_sentence_english": "The house was built in 1900.", + "pos": "adjective", + "word_frequency": 5667 + }, + { + "word": "cupola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dome", + "romanization": "cupola", + "example_sentence_native": "La cupola del Duomo di Firenze è magnifica.", + "example_sentence_english": "The dome of Florence Cathedral is magnificent.", + "pos": "noun", + "word_frequency": 5668 + }, + { + "word": "custode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custodian", + "romanization": "custode", + "example_sentence_native": "Il custode del museo ci ha dato informazioni.", + "example_sentence_english": "The museum custodian gave us information.", + "pos": "noun", + "word_frequency": 5669 + }, + { + "word": "danese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Danish", + "romanization": "danese", + "example_sentence_native": "La bandiera danese è rossa e bianca.", + "example_sentence_english": "The Danish flag is red and white.", + "pos": "adjective", + "word_frequency": 5670 + }, + { + "word": "descritti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "described", + "romanization": "descritti", + "example_sentence_native": "I fatti sono stati descritti in dettaglio.", + "example_sentence_english": "The facts have been described in detail.", + "pos": "adjective", + "word_frequency": 5672 + }, + { + "word": "direttrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "director (female)", + "romanization": "direttrice", + "example_sentence_native": "La direttrice della scuola è molto brava.", + "example_sentence_english": "The school director is very good.", + "pos": "noun", + "word_frequency": 5673 + }, + { + "word": "doloroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painful", + "romanization": "doloroso", + "example_sentence_native": "È stata una decisione molto dolorosa.", + "example_sentence_english": "It was a very painful decision.", + "pos": "adjective", + "word_frequency": 5674 + }, + { + "word": "duemila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "two thousand", + "romanization": "duemila", + "example_sentence_native": "Ci sono duemila persone all'evento.", + "example_sentence_english": "There are two thousand people at the event.", + "pos": "adjective", + "word_frequency": 5675 + }, + { + "word": "durato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lasted", + "romanization": "durato", + "example_sentence_native": "Il concerto è durato tre ore.", + "example_sentence_english": "The concert lasted three hours.", + "pos": "adjective", + "word_frequency": 5676 + }, + { + "word": "fascicolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "file", + "romanization": "fascicolo", + "example_sentence_native": "Ho trovato il fascicolo con i documenti importanti.", + "example_sentence_english": "I found the file with the important documents.", + "pos": "noun", + "word_frequency": 5678 + }, + { + "word": "festività", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "holiday", + "romanization": "festività", + "example_sentence_native": "Durante le festività natalizie, le città sono illuminate.", + "example_sentence_english": "During the Christmas holidays, the cities are lit up.", + "pos": "noun", + "word_frequency": 5679 + }, + { + "word": "firmato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signed", + "romanization": "firmato", + "example_sentence_native": "Il documento è stato firmato dal direttore.", + "example_sentence_english": "The document was signed by the director.", + "pos": "adjective", + "word_frequency": 5680 + }, + { + "word": "focus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focus", + "romanization": "focus", + "example_sentence_native": "Dobbiamo mantenere il focus sul nostro obiettivo principale.", + "example_sentence_english": "We must maintain focus on our main objective.", + "pos": "noun", + "word_frequency": 5681 + }, + { + "word": "frode", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraud", + "romanization": "frode", + "example_sentence_native": "L'azienda è stata accusata di frode fiscale.", + "example_sentence_english": "The company was accused of tax fraud.", + "pos": "noun", + "word_frequency": 5682 + }, + { + "word": "fuso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "time zone", + "romanization": "fuso", + "example_sentence_native": "Siamo in un fuso orario diverso.", + "example_sentence_english": "We are in a different time zone.", + "pos": "noun", + "word_frequency": 5683 + }, + { + "word": "indie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indie (music;film genre)", + "romanization": "indie", + "example_sentence_native": "Ascolta molta musica indie.", + "example_sentence_english": "He listens to a lot of indie music.", + "pos": "noun", + "word_frequency": 5685 + }, + { + "word": "indizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clue;hint", + "romanization": "indizio", + "example_sentence_native": "La polizia ha trovato un indizio importante sulla scena del crimine.", + "example_sentence_english": "The police found an important clue at the crime scene.", + "pos": "noun", + "word_frequency": 5686 + }, + { + "word": "integrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "integrated", + "romanization": "integrato", + "example_sentence_native": "Il sistema è completamente integrato con gli altri software.", + "example_sentence_english": "The system is fully integrated with other software.", + "pos": "adjective", + "word_frequency": 5687 + }, + { + "word": "manica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sleeve", + "romanization": "manica", + "example_sentence_native": "La manica della camicia è troppo lunga.", + "example_sentence_english": "The shirt sleeve is too long.", + "pos": "noun", + "word_frequency": 5694 + }, + { + "word": "mollare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to let go;to give up", + "romanization": "mollare", + "example_sentence_native": "Non mollare mai i tuoi sogni.", + "example_sentence_english": "Never give up on your dreams.", + "pos": "verb", + "word_frequency": 5696 + }, + { + "word": "mosso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough (for sea);blurry (for photo)", + "romanization": "mosso", + "example_sentence_native": "Il mare era molto mosso oggi.", + "example_sentence_english": "The sea was very rough today.", + "pos": "adjective", + "word_frequency": 5697 + }, + { + "word": "multinazionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multinational", + "romanization": "multinazionale", + "example_sentence_native": "Lavora per una grande azienda multinazionale.", + "example_sentence_english": "He works for a large multinational company.", + "pos": "adjective", + "word_frequency": 5699 + }, + { + "word": "muscolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscular", + "romanization": "muscolare", + "example_sentence_native": "Ha sviluppato una grande massa muscolare.", + "example_sentence_english": "He developed a large muscular mass.", + "pos": "adjective", + "word_frequency": 5700 + }, + { + "word": "opporsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppose", + "romanization": "opporsi", + "example_sentence_native": "Si è opposto alla decisione del consiglio.", + "example_sentence_english": "He opposed the council's decision.", + "pos": "verb", + "word_frequency": 5703 + }, + { + "word": "panoramico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panoramic", + "romanization": "panoramico", + "example_sentence_native": "L'hotel offre una vista panoramica sulla città.", + "example_sentence_english": "The hotel offers a panoramic view of the city.", + "pos": "adjective", + "word_frequency": 5705 + }, + { + "word": "particella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "particle", + "romanization": "particella", + "example_sentence_native": "Gli scienziati studiano le particelle subatomiche.", + "example_sentence_english": "Scientists study subatomic particles.", + "pos": "noun", + "word_frequency": 5706 + }, + { + "word": "pass", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pass (e.g.;entry pass)", + "romanization": "pass", + "example_sentence_native": "Ho comprato un pass per tutti i mezzi pubblici.", + "example_sentence_english": "I bought a pass for all public transport.", + "pos": "noun", + "word_frequency": 5707 + }, + { + "word": "percorrere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to travel along;to cover (a distance)", + "romanization": "percorrere", + "example_sentence_native": "Dobbiamo percorrere molti chilometri per arrivare.", + "example_sentence_english": "We have to travel many kilometers to arrive.", + "pos": "verb", + "word_frequency": 5708 + }, + { + "word": "piemontese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Piedmontese", + "romanization": "piemontese", + "example_sentence_native": "La cucina piemontese è molto ricca.", + "example_sentence_english": "Piedmontese cuisine is very rich.", + "pos": "adjective", + "word_frequency": 5709 + }, + { + "word": "pollice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thumb", + "romanization": "pollice", + "example_sentence_native": "Mi sono fatto male al pollice.", + "example_sentence_english": "I hurt my thumb.", + "pos": "noun", + "word_frequency": 5710 + }, + { + "word": "problematico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "problematic", + "romanization": "problematico", + "example_sentence_native": "La situazione è diventata molto problematica.", + "example_sentence_english": "The situation has become very problematic.", + "pos": "adjective", + "word_frequency": 5711 + }, + { + "word": "professionalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professionalism", + "romanization": "professionalità", + "example_sentence_native": "Ha dimostrato grande professionalità nel suo lavoro.", + "example_sentence_english": "He showed great professionalism in his work.", + "pos": "noun", + "word_frequency": 5712 + }, + { + "word": "proibito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forbidden;prohibited", + "romanization": "proibito", + "example_sentence_native": "L'accesso è proibito ai non autorizzati.", + "example_sentence_english": "Access is prohibited to unauthorized persons.", + "pos": "adjective", + "word_frequency": 5713 + }, + { + "word": "rapper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rapper", + "romanization": "rapper", + "example_sentence_native": "Il rapper ha pubblicato un nuovo album.", + "example_sentence_english": "The rapper released a new album.", + "pos": "noun", + "word_frequency": 5714 + }, + { + "word": "rettore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rector (university)", + "romanization": "rettore", + "example_sentence_native": "Il rettore dell'università ha annunciato nuove misure.", + "example_sentence_english": "The university rector announced new measures.", + "pos": "noun", + "word_frequency": 5715 + }, + { + "word": "rifare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to redo;to make again", + "romanization": "rifare", + "example_sentence_native": "Devo rifare il compito perché ho fatto troppi errori.", + "example_sentence_english": "I have to redo the assignment because I made too many mistakes.", + "pos": "verb", + "word_frequency": 5716 + }, + { + "word": "risonanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resonance;impact", + "romanization": "risonanza", + "example_sentence_native": "La notizia ha avuto una grande risonanza mediatica.", + "example_sentence_english": "The news had a great media impact.", + "pos": "noun", + "word_frequency": 5717 + }, + { + "word": "sardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sardinian", + "romanization": "sardo", + "example_sentence_native": "La lingua sarda è parlata in Sardegna.", + "example_sentence_english": "The Sardinian language is spoken in Sardinia.", + "pos": "adjective", + "word_frequency": 5719 + }, + { + "word": "signorina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "young lady;miss", + "romanization": "signorina", + "example_sentence_native": "La signorina ha chiesto un caffè.", + "example_sentence_english": "The young lady asked for a coffee.", + "pos": "noun", + "word_frequency": 5720 + }, + { + "word": "sospeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suspended;pending", + "romanization": "sospeso", + "example_sentence_native": "Il progetto è stato sospeso a tempo indeterminato.", + "example_sentence_english": "The project has been suspended indefinitely.", + "pos": "adjective", + "word_frequency": 5721 + }, + { + "word": "sostituto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute;replacement", + "romanization": "sostituto", + "example_sentence_native": "Abbiamo bisogno di un sostituto per il portiere.", + "example_sentence_english": "We need a substitute for the goalkeeper.", + "pos": "noun", + "word_frequency": 5722 + }, + { + "word": "sperimentazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "experimentation;testing", + "romanization": "sperimentazione", + "example_sentence_native": "La sperimentazione clinica è in fase avanzata.", + "example_sentence_english": "The clinical experimentation is in an advanced phase.", + "pos": "noun", + "word_frequency": 5723 + }, + { + "word": "splendore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "splendor;brilliance", + "romanization": "splendore", + "example_sentence_native": "Il tramonto era di uno splendore mozzafiato.", + "example_sentence_english": "The sunset was of breathtaking splendor.", + "pos": "noun", + "word_frequency": 5724 + }, + { + "word": "tatuaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "romanization": "tatuaggio", + "example_sentence_native": "Si è fatto un nuovo tatuaggio sul braccio.", + "example_sentence_english": "He got a new tattoo on his arm.", + "pos": "noun", + "word_frequency": 5726 + }, + { + "word": "totalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "totality;entirety", + "romanization": "totalita", + "example_sentence_native": "La totalità dei dati è stata analizzata.", + "example_sentence_english": "The totality of the data has been analyzed.", + "pos": "noun", + "word_frequency": 5728 + }, + { + "word": "traduttore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translator", + "romanization": "traduttore", + "example_sentence_native": "Ho assunto un traduttore per il documento.", + "example_sentence_english": "I hired a translator for the document.", + "pos": "noun", + "word_frequency": 5729 + }, + { + "word": "trascorso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "past;elapsed", + "romanization": "trascorso", + "example_sentence_native": "L'anno trascorso è stato pieno di sfide.", + "example_sentence_english": "The past year was full of challenges.", + "pos": "adjective", + "word_frequency": 5730 + }, + { + "word": "vegetale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegetable (adj);plant-based", + "romanization": "vegetale", + "example_sentence_native": "Segue una dieta ricca di alimenti vegetali.", + "example_sentence_english": "He follows a diet rich in plant-based foods.", + "pos": "adjective", + "word_frequency": 5731 + }, + { + "word": "vocabolario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vocabulary;dictionary", + "romanization": "vocabolario", + "example_sentence_native": "Ho ampliato il mio vocabolario leggendo libri.", + "example_sentence_english": "I expanded my vocabulary by reading books.", + "pos": "noun", + "word_frequency": 5732 + }, + { + "word": "aglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "garlic", + "romanization": "aglio", + "example_sentence_native": "Mi piace molto il sapore dell'aglio nella pasta.", + "example_sentence_english": "I really like the taste of garlic in pasta.", + "pos": "noun", + "word_frequency": 5734 + }, + { + "word": "alluminio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aluminum", + "romanization": "alluminio", + "example_sentence_native": "La lattina è fatta di alluminio.", + "example_sentence_english": "The can is made of aluminum.", + "pos": "noun", + "word_frequency": 5737 + }, + { + "word": "analogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analogous;similar", + "romanization": "analogo", + "example_sentence_native": "La situazione attuale è analoga a quella di dieci anni fa.", + "example_sentence_english": "The current situation is analogous to that of ten years ago.", + "pos": "adjective", + "word_frequency": 5738 + }, + { + "word": "apparecchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device;appliance;apparatus", + "romanization": "apparecchio", + "example_sentence_native": "Questo apparecchio serve per misurare la pressione.", + "example_sentence_english": "This device is used to measure pressure.", + "pos": "noun", + "word_frequency": 5739 + }, + { + "word": "appropriato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriate;suitable", + "romanization": "appropriato", + "example_sentence_native": "Non era il momento più appropriato per fare quella domanda.", + "example_sentence_english": "It was not the most appropriate time to ask that question.", + "pos": "adjective", + "word_frequency": 5740 + }, + { + "word": "assetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "setup;arrangement;trim", + "romanization": "assetto", + "example_sentence_native": "L'azienda ha cambiato il suo assetto organizzativo.", + "example_sentence_english": "The company changed its organizational setup.", + "pos": "noun", + "word_frequency": 5741 + }, + { + "word": "attrezzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tool;implement", + "romanization": "attrezzo", + "example_sentence_native": "Ho bisogno di un attrezzo per riparare questo.", + "example_sentence_english": "I need a tool to repair this.", + "pos": "noun", + "word_frequency": 5742 + }, + { + "word": "autentico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authentic;genuine", + "romanization": "autentico", + "example_sentence_native": "Questo è un quadro autentico del pittore.", + "example_sentence_english": "This is an authentic painting by the artist.", + "pos": "adjective", + "word_frequency": 5743 + }, + { + "word": "branco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pack;herd;flock", + "romanization": "branco", + "example_sentence_native": "Un branco di lupi è stato avvistato nella foresta.", + "example_sentence_english": "A pack of wolves was sighted in the forest.", + "pos": "noun", + "word_frequency": 5748 + }, + { + "word": "calcolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to calculate;to compute", + "romanization": "calcolare", + "example_sentence_native": "Dobbiamo calcolare il costo totale del progetto.", + "example_sentence_english": "We need to calculate the total cost of the project.", + "pos": "verb", + "word_frequency": 5750 + }, + { + "word": "comportarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to behave;to act", + "romanization": "comportarsi", + "example_sentence_native": "I bambini dovrebbero comportarsi bene a scuola.", + "example_sentence_english": "Children should behave well at school.", + "pos": "verb", + "word_frequency": 5752 + }, + { + "word": "contribuente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxpayer", + "romanization": "contribuente", + "example_sentence_native": "Ogni contribuente deve presentare la dichiarazione dei redditi.", + "example_sentence_english": "Every taxpayer must file their income tax return.", + "pos": "noun", + "word_frequency": 5753 + }, + { + "word": "correzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correction;revision", + "romanization": "correzione", + "example_sentence_native": "Ho fatto alcune correzioni al testo.", + "example_sentence_english": "I made some corrections to the text.", + "pos": "noun", + "word_frequency": 5755 + }, + { + "word": "corrotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrupt;rotten", + "romanization": "corrotto", + "example_sentence_native": "Il sistema politico era profondamente corrotto.", + "example_sentence_english": "The political system was deeply corrupt.", + "pos": "adjective", + "word_frequency": 5756 + }, + { + "word": "costituente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constituent;component", + "romanization": "costituente", + "example_sentence_native": "L'Assemblea Costituente ha redatto la Costituzione italiana.", + "example_sentence_english": "The Constituent Assembly drafted the Italian Constitution.", + "pos": "noun", + "word_frequency": 5758 + }, + { + "word": "cronologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronology;timeline", + "romanization": "cronologia", + "example_sentence_native": "Ho bisogno di una cronologia degli eventi.", + "example_sentence_english": "I need a chronology of the events.", + "pos": "noun", + "word_frequency": 5759 + }, + { + "word": "demonio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demon", + "romanization": "demonio", + "example_sentence_native": "Si dice che un demonio abiti in quella casa abbandonata.", + "example_sentence_english": "It is said that a demon lives in that abandoned house.", + "pos": "noun", + "word_frequency": 5764 + }, + { + "word": "digiuno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fasting", + "romanization": "digiuno", + "example_sentence_native": "Il medico mi ha chiesto di essere a digiuno prima dell'esame.", + "example_sentence_english": "The doctor asked me to be fasting before the exam.", + "pos": "noun", + "word_frequency": 5765 + }, + { + "word": "disabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disability", + "romanization": "disabilità", + "example_sentence_native": "La legge mira a proteggere i diritti delle persone con disabilità.", + "example_sentence_english": "The law aims to protect the rights of people with disabilities.", + "pos": "noun", + "word_frequency": 5766 + }, + { + "word": "elicottero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helicopter", + "romanization": "elicottero", + "example_sentence_native": "Abbiamo visto un elicottero volare sopra le montagne.", + "example_sentence_english": "We saw a helicopter flying over the mountains.", + "pos": "noun", + "word_frequency": 5769 + }, + { + "word": "estraneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stranger", + "romanization": "estraneo", + "example_sentence_native": "Non parlare con gli estranei.", + "example_sentence_english": "Do not talk to strangers.", + "pos": "noun", + "word_frequency": 5770 + }, + { + "word": "flora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flora", + "romanization": "flora", + "example_sentence_native": "La flora di questa regione è molto ricca.", + "example_sentence_english": "The flora of this region is very rich.", + "pos": "noun", + "word_frequency": 5772 + }, + { + "word": "gelosia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jealousy", + "romanization": "gelosia", + "example_sentence_native": "La gelosia può rovinare le relazioni.", + "example_sentence_english": "Jealousy can ruin relationships.", + "pos": "noun", + "word_frequency": 5775 + }, + { + "word": "gemma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gem", + "romanization": "gemma", + "example_sentence_native": "Ha trovato una gemma preziosa nella miniera.", + "example_sentence_english": "He found a precious gem in the mine.", + "pos": "noun", + "word_frequency": 5776 + }, + { + "word": "incazzare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to piss off (vulgar)", + "romanization": "incazzare", + "example_sentence_native": "Non mi far incazzare!", + "example_sentence_english": "Don't piss me off!", + "pos": "verb", + "word_frequency": 5777 + }, + { + "word": "infortunio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injury", + "romanization": "infortunio", + "example_sentence_native": "Ha subito un infortunio al ginocchio durante la partita.", + "example_sentence_english": "He suffered a knee injury during the game.", + "pos": "noun", + "word_frequency": 5778 + }, + { + "word": "ingiustizia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injustice", + "romanization": "ingiustizia", + "example_sentence_native": "Non posso tollerare questa ingiustizia.", + "example_sentence_english": "I cannot tolerate this injustice.", + "pos": "noun", + "word_frequency": 5779 + }, + { + "word": "lava", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lava", + "romanization": "lava", + "example_sentence_native": "La lava scorre lentamente dal vulcano.", + "example_sentence_english": "The lava flows slowly from the volcano.", + "pos": "noun", + "word_frequency": 5780 + }, + { + "word": "lavaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "washing", + "romanization": "lavaggio", + "example_sentence_native": "Ho portato la macchina al lavaggio.", + "example_sentence_english": "I took the car to the car wash.", + "pos": "noun", + "word_frequency": 5781 + }, + { + "word": "leadership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leadership", + "romanization": "leadership", + "example_sentence_native": "La sua leadership è stata fondamentale per il successo del progetto.", + "example_sentence_english": "His leadership was fundamental for the project's success.", + "pos": "noun", + "word_frequency": 5783 + }, + { + "word": "lecito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lawful", + "romanization": "lecito", + "example_sentence_native": "È lecito parcheggiare qui?", + "example_sentence_english": "Is it lawful to park here?", + "pos": "adjective", + "word_frequency": 5784 + }, + { + "word": "munizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammunition", + "romanization": "munizione", + "example_sentence_native": "Hanno esaurito le munizioni durante la battaglia.", + "example_sentence_english": "They ran out of ammunition during the battle.", + "pos": "noun", + "word_frequency": 5791 + }, + { + "word": "ondata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wave (of something;e.g.;heat;crime)", + "romanization": "ondata", + "example_sentence_native": "C'è stata un'ondata di caldo la scorsa settimana.", + "example_sentence_english": "There was a heatwave last week.", + "pos": "noun", + "word_frequency": 5794 + }, + { + "word": "paradosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paradox", + "romanization": "paradosso", + "example_sentence_native": "È un paradosso che la ricchezza non porti sempre felicità.", + "example_sentence_english": "It's a paradox that wealth doesn't always bring happiness.", + "pos": "noun", + "word_frequency": 5797 + }, + { + "word": "particolarità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiarity", + "romanization": "particolarità", + "example_sentence_native": "Ogni regione ha le sue particolarità culinarie.", + "example_sentence_english": "Every region has its culinary peculiarities.", + "pos": "noun", + "word_frequency": 5798 + }, + { + "word": "pastorale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pastoral", + "romanization": "pastorale", + "example_sentence_native": "La vita pastorale è spesso associata alla tranquillità.", + "example_sentence_english": "Pastoral life is often associated with tranquility.", + "pos": "adjective", + "word_frequency": 5799 + }, + { + "word": "professoressa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female professor;teacher", + "romanization": "professoressa", + "example_sentence_native": "La professoressa ha spiegato la lezione.", + "example_sentence_english": "The professor explained the lesson.", + "pos": "noun", + "word_frequency": 5801 + }, + { + "word": "propriamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "properly;strictly speaking", + "romanization": "propriamente", + "example_sentence_native": "Non è propriamente quello che intendevo.", + "example_sentence_english": "It's not properly what I meant.", + "pos": "adverb", + "word_frequency": 5802 + }, + { + "word": "qualificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification", + "romanization": "qualificazione", + "example_sentence_native": "Ha ottenuto una nuova qualificazione professionale.", + "example_sentence_english": "She obtained a new professional qualification.", + "pos": "noun", + "word_frequency": 5803 + }, + { + "word": "raggiunto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reached;achieved", + "romanization": "raggiunto", + "example_sentence_native": "L'obiettivo raggiunto è motivo di orgoglio.", + "example_sentence_english": "The achieved goal is a source of pride.", + "pos": "adjective", + "word_frequency": 5805 + }, + { + "word": "rapimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapping;abduction", + "romanization": "rapimento", + "example_sentence_native": "La polizia sta indagando sul rapimento.", + "example_sentence_english": "The police are investigating the kidnapping.", + "pos": "noun", + "word_frequency": 5806 + }, + { + "word": "reggimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regiment", + "romanization": "reggimento", + "example_sentence_native": "Il reggimento si è schierato per la parata.", + "example_sentence_english": "The regiment lined up for the parade.", + "pos": "noun", + "word_frequency": 5807 + }, + { + "word": "ricercare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to research;to seek", + "romanization": "ricercare", + "example_sentence_native": "Dobbiamo ricercare nuove soluzioni.", + "example_sentence_english": "We need to research new solutions.", + "pos": "verb", + "word_frequency": 5808 + }, + { + "word": "ricoprire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cover;to hold (a position)", + "romanization": "ricoprire", + "example_sentence_native": "Ha deciso di ricoprire un nuovo ruolo in azienda.", + "example_sentence_english": "He decided to hold a new role in the company.", + "pos": "verb", + "word_frequency": 5810 + }, + { + "word": "rigorosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigorously;strictly", + "romanization": "rigorosamente", + "example_sentence_native": "Le regole devono essere seguite rigorosamente.", + "example_sentence_english": "The rules must be followed rigorously.", + "pos": "adverb", + "word_frequency": 5811 + }, + { + "word": "rilancio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relaunch;revival", + "romanization": "rilancio", + "example_sentence_native": "Il governo ha proposto un piano di rilancio economico.", + "example_sentence_english": "The government proposed an economic relaunch plan.", + "pos": "noun", + "word_frequency": 5812 + }, + { + "word": "serbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Serb (person);Serbian (language)", + "romanization": "serbo", + "example_sentence_native": "Parla fluentemente il serbo.", + "example_sentence_english": "He speaks Serbian fluently.", + "pos": "noun", + "word_frequency": 5814 + }, + { + "word": "sopporto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endurance;bearing (as a noun)", + "romanization": "sopporto", + "example_sentence_native": "Il suo sopporto è stato fondamentale in quel momento difficile.", + "example_sentence_english": "His endurance was fundamental in that difficult moment.", + "pos": "noun", + "word_frequency": 5816 + }, + { + "word": "specificare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to specify", + "romanization": "specificare", + "example_sentence_native": "Potresti specificare meglio cosa intendi?", + "example_sentence_english": "Could you specify better what you mean?", + "pos": "verb", + "word_frequency": 5818 + }, + { + "word": "svizzero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Swiss person", + "romanization": "svizzero", + "example_sentence_native": "È uno svizzero di origine italiana.", + "example_sentence_english": "He is a Swiss person of Italian origin.", + "pos": "noun", + "word_frequency": 5819 + }, + { + "word": "tragitto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journey;route", + "romanization": "tragitto", + "example_sentence_native": "Il tragitto in treno è durato due ore.", + "example_sentence_english": "The train journey lasted two hours.", + "pos": "noun", + "word_frequency": 5821 + }, + { + "word": "triangolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "triangle", + "romanization": "triangolo", + "example_sentence_native": "Il triangolo ha tre lati.", + "example_sentence_english": "The triangle has three sides.", + "pos": "noun", + "word_frequency": 5822 + }, + { + "word": "trio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trio", + "romanization": "trio", + "example_sentence_native": "Il trio musicale ha suonato una bella melodia.", + "example_sentence_english": "The musical trio played a beautiful melody.", + "pos": "noun", + "word_frequency": 5823 + }, + { + "word": "vagina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vagina", + "romanization": "vagina", + "example_sentence_native": "La vagina è una parte dell'apparato riproduttivo femminile.", + "example_sentence_english": "The vagina is a part of the female reproductive system.", + "pos": "noun", + "word_frequency": 5825 + }, + { + "word": "venerdi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Friday", + "romanization": "venerdì", + "example_sentence_native": "Ci vediamo venerdì prossimo.", + "example_sentence_english": "See you next Friday.", + "pos": "noun", + "word_frequency": 5826 + }, + { + "word": "vocazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocation;calling", + "romanization": "vocazione", + "example_sentence_native": "Ha scoperto la sua vocazione per l'insegnamento.", + "example_sentence_english": "She discovered her vocation for teaching.", + "pos": "noun", + "word_frequency": 5827 + }, + { + "word": "accessorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accessory", + "romanization": "accessorio", + "example_sentence_native": "Ha comprato un nuovo accessorio per il telefono.", + "example_sentence_english": "She bought a new accessory for her phone.", + "pos": "noun", + "word_frequency": 5831 + }, + { + "word": "argomentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "argumentation;argument", + "romanization": "argomentazione", + "example_sentence_native": "La sua argomentazione era molto convincente.", + "example_sentence_english": "His argumentation was very convincing.", + "pos": "noun", + "word_frequency": 5833 + }, + { + "word": "barra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bar;slash", + "romanization": "barra", + "example_sentence_native": "C'è una barra di cioccolato sul tavolo.", + "example_sentence_english": "There's a chocolate bar on the table.", + "pos": "noun", + "word_frequency": 5834 + }, + { + "word": "campeggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camping", + "romanization": "campeggio", + "example_sentence_native": "Andiamo in campeggio quest'estate.", + "example_sentence_english": "We're going camping this summer.", + "pos": "noun", + "word_frequency": 5835 + }, + { + "word": "cassetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drawer", + "romanization": "cassetto", + "example_sentence_native": "Ho messo i documenti nel cassetto.", + "example_sentence_english": "I put the documents in the drawer.", + "pos": "noun", + "word_frequency": 5836 + }, + { + "word": "casta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caste", + "romanization": "casta", + "example_sentence_native": "La società era divisa in caste.", + "example_sentence_english": "Society was divided into castes.", + "pos": "noun", + "word_frequency": 5837 + }, + { + "word": "cauzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bail;deposit", + "romanization": "cauzione", + "example_sentence_native": "Ha pagato la cauzione per essere rilasciato.", + "example_sentence_english": "He paid the bail to be released.", + "pos": "noun", + "word_frequency": 5838 + }, + { + "word": "combattente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighter", + "romanization": "combattente", + "example_sentence_native": "Il soldato era un combattente coraggioso.", + "example_sentence_english": "The soldier was a brave fighter.", + "pos": "noun", + "word_frequency": 5840 + }, + { + "word": "compatibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compatible", + "romanization": "compatibile", + "example_sentence_native": "Questo software è compatibile con il tuo sistema operativo.", + "example_sentence_english": "This software is compatible with your operating system.", + "pos": "adjective", + "word_frequency": 5841 + }, + { + "word": "conduzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "romanization": "conduzione", + "example_sentence_native": "La conduzione dell'azienda è stata affidata a un nuovo CEO.", + "example_sentence_english": "The management of the company was entrusted to a new CEO.", + "pos": "noun", + "word_frequency": 5842 + }, + { + "word": "consulta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "council", + "romanization": "consulta", + "example_sentence_native": "La consulta ha espresso un parere favorevole.", + "example_sentence_english": "The council expressed a favorable opinion.", + "pos": "noun", + "word_frequency": 5843 + }, + { + "word": "copiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to copy", + "romanization": "copiare", + "example_sentence_native": "Puoi copiare questo documento per favore?", + "example_sentence_english": "Can you copy this document please?", + "pos": "verb", + "word_frequency": 5845 + }, + { + "word": "denominare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to name", + "romanization": "denominare", + "example_sentence_native": "Hanno deciso di denominare la nuova specie con un nome scientifico.", + "example_sentence_english": "They decided to name the new species with a scientific name.", + "pos": "verb", + "word_frequency": 5846 + }, + { + "word": "derivare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to derive", + "romanization": "derivare", + "example_sentence_native": "Molte parole italiane derivano dal latino.", + "example_sentence_english": "Many Italian words derive from Latin.", + "pos": "verb", + "word_frequency": 5847 + }, + { + "word": "dittatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dictator", + "romanization": "dittatore", + "example_sentence_native": "Il dittatore ha governato il paese con pugno di ferro.", + "example_sentence_english": "The dictator ruled the country with an iron fist.", + "pos": "noun", + "word_frequency": 5848 + }, + { + "word": "divertire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to amuse", + "romanization": "divertire", + "example_sentence_native": "Spero che lo spettacolo ti diverta.", + "example_sentence_english": "I hope the show amuses you.", + "pos": "verb", + "word_frequency": 5849 + }, + { + "word": "dopodiché", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "after that", + "romanization": "dopodiché", + "example_sentence_native": "Abbiamo cenato, dopodiché siamo andati al cinema.", + "example_sentence_english": "We had dinner, after that we went to the cinema.", + "pos": "adverb", + "word_frequency": 5850 + }, + { + "word": "dozzina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dozen", + "romanization": "dozzina", + "example_sentence_native": "Ho comprato una dozzina di uova.", + "example_sentence_english": "I bought a dozen eggs.", + "pos": "noun", + "word_frequency": 5851 + }, + { + "word": "elaborare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to process", + "romanization": "elaborare", + "example_sentence_native": "Dobbiamo elaborare un nuovo piano.", + "example_sentence_english": "We need to process a new plan.", + "pos": "verb", + "word_frequency": 5852 + }, + { + "word": "giocattolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toy", + "romanization": "giocattolo", + "example_sentence_native": "Il bambino gioca con il suo nuovo giocattolo.", + "example_sentence_english": "The child plays with his new toy.", + "pos": "noun", + "word_frequency": 5857 + }, + { + "word": "giovinezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "youth", + "romanization": "giovinezza", + "example_sentence_native": "La giovinezza è un periodo di grandi scoperte.", + "example_sentence_english": "Youth is a period of great discoveries.", + "pos": "noun", + "word_frequency": 5858 + }, + { + "word": "globo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globe", + "romanization": "globo", + "example_sentence_native": "Il globo terrestre è rappresentato su questa mappa.", + "example_sentence_english": "The terrestrial globe is represented on this map.", + "pos": "noun", + "word_frequency": 5859 + }, + { + "word": "goal", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goal", + "romanization": "goal", + "example_sentence_native": "Ha segnato un bellissimo goal.", + "example_sentence_english": "He scored a beautiful goal.", + "pos": "noun", + "word_frequency": 5860 + }, + { + "word": "ideare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceive", + "romanization": "ideare", + "example_sentence_native": "Dobbiamo ideare una soluzione innovativa.", + "example_sentence_english": "We need to conceive an innovative solution.", + "pos": "verb", + "word_frequency": 5863 + }, + { + "word": "immaginario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imaginary", + "romanization": "immaginario", + "example_sentence_native": "Il drago è una creatura immaginaria.", + "example_sentence_english": "The dragon is an imaginary creature.", + "pos": "adjective", + "word_frequency": 5864 + }, + { + "word": "inerente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inherent", + "romanization": "inerente", + "example_sentence_native": "Abbiamo discusso le questioni inerenti al progetto.", + "example_sentence_english": "We discussed the issues inherent to the project.", + "pos": "adjective", + "word_frequency": 5865 + }, + { + "word": "integrante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integral", + "romanization": "integrante", + "example_sentence_native": "Questa parte è un elemento integrante del sistema.", + "example_sentence_english": "This part is an integral element of the system.", + "pos": "adjective", + "word_frequency": 5866 + }, + { + "word": "interagire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interact", + "romanization": "interagire", + "example_sentence_native": "È importante interagire con gli altri studenti.", + "example_sentence_english": "It is important to interact with other students.", + "pos": "verb", + "word_frequency": 5867 + }, + { + "word": "messicano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mexican", + "romanization": "messicano", + "example_sentence_native": "Mi piace molto il cibo messicano.", + "example_sentence_english": "I really like Mexican food.", + "pos": "adjective", + "word_frequency": 5873 + }, + { + "word": "mortalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mortality", + "romanization": "mortalità", + "example_sentence_native": "Il tasso di mortalità infantile è diminuito.", + "example_sentence_english": "The infant mortality rate has decreased.", + "pos": "noun", + "word_frequency": 5876 + }, + { + "word": "neonato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "newborn", + "romanization": "neonato", + "example_sentence_native": "Il neonato dormiva profondamente nella culla.", + "example_sentence_english": "The newborn was sleeping soundly in the crib.", + "pos": "noun", + "word_frequency": 5878 + }, + { + "word": "nova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nova (astronomy)", + "romanization": "nova", + "example_sentence_native": "Gli astronomi hanno osservato una nuova stella, una nova.", + "example_sentence_english": "Astronomers observed a new star, a nova.", + "pos": "noun", + "word_frequency": 5879 + }, + { + "word": "nozione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notion;concept", + "romanization": "nozione", + "example_sentence_native": "Ha una chiara nozione di ciò che vuole.", + "example_sentence_english": "He has a clear notion of what he wants.", + "pos": "noun", + "word_frequency": 5880 + }, + { + "word": "patatina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chip (UK);french fry (US);crisp (UK)", + "romanization": "patatina", + "example_sentence_native": "Mi piacciono le patatine fritte.", + "example_sentence_english": "I like french fries.", + "pos": "noun", + "word_frequency": 5881 + }, + { + "word": "pecora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sheep", + "romanization": "pecora", + "example_sentence_native": "Le pecore pascolano nel campo.", + "example_sentence_english": "The sheep are grazing in the field.", + "pos": "noun", + "word_frequency": 5882 + }, + { + "word": "pescatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fisherman", + "romanization": "pescatore", + "example_sentence_native": "Il pescatore ha gettato la sua rete.", + "example_sentence_english": "The fisherman cast his net.", + "pos": "noun", + "word_frequency": 5883 + }, + { + "word": "pillola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pill", + "romanization": "pillola", + "example_sentence_native": "Prendi una pillola per il mal di testa.", + "example_sentence_english": "Take a pill for your headache.", + "pos": "noun", + "word_frequency": 5885 + }, + { + "word": "podcast", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "podcast", + "romanization": "podcast", + "example_sentence_native": "Ascolto un podcast ogni mattina.", + "example_sentence_english": "I listen to a podcast every morning.", + "pos": "noun", + "word_frequency": 5886 + }, + { + "word": "progressivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressively", + "romanization": "progressivamente", + "example_sentence_native": "La situazione sta migliorando progressivamente.", + "example_sentence_english": "The situation is progressively improving.", + "pos": "adverb", + "word_frequency": 5887 + }, + { + "word": "prostituta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostitute", + "romanization": "prostituta", + "example_sentence_native": "Il romanzo descrive la vita di una prostituta.", + "example_sentence_english": "The novel describes the life of a prostitute.", + "pos": "noun", + "word_frequency": 5888 + }, + { + "word": "psicologo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "psychologist", + "romanization": "psicologo", + "example_sentence_native": "Ha deciso di consultare uno psicologo.", + "example_sentence_english": "He decided to consult a psychologist.", + "pos": "noun", + "word_frequency": 5889 + }, + { + "word": "punk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punk", + "romanization": "punk", + "example_sentence_native": "Era un fan della musica punk negli anni '80.", + "example_sentence_english": "He was a fan of punk music in the 80s.", + "pos": "noun", + "word_frequency": 5890 + }, + { + "word": "respingere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reject;to repel", + "romanization": "respingere", + "example_sentence_native": "Hanno respinto la proposta.", + "example_sentence_english": "They rejected the proposal.", + "pos": "verb", + "word_frequency": 5891 + }, + { + "word": "review", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "review", + "romanization": "review", + "example_sentence_native": "Ho letto una buona review del film.", + "example_sentence_english": "I read a good review of the movie.", + "pos": "noun", + "word_frequency": 5892 + }, + { + "word": "rinvio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postponement;referral", + "romanization": "rinvio", + "example_sentence_native": "C'è stato un rinvio della riunione.", + "example_sentence_english": "There was a postponement of the meeting.", + "pos": "noun", + "word_frequency": 5893 + }, + { + "word": "ristretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restricted;narrow;short (coffee)", + "romanization": "ristretto", + "example_sentence_native": "L'accesso è ristretto solo al personale autorizzato.", + "example_sentence_english": "Access is restricted to authorized personnel only.", + "pos": "adjective", + "word_frequency": 5894 + }, + { + "word": "selvaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild;savage", + "romanization": "selvaggio", + "example_sentence_native": "Hanno trovato un animale selvaggio nella foresta.", + "example_sentence_english": "They found a wild animal in the forest.", + "pos": "adjective", + "word_frequency": 5897 + }, + { + "word": "seppellire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bury", + "romanization": "seppellire", + "example_sentence_native": "Hanno deciso di seppellire il tesoro.", + "example_sentence_english": "They decided to bury the treasure.", + "pos": "verb", + "word_frequency": 5898 + }, + { + "word": "solitario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solitary;lonely", + "romanization": "solitario", + "example_sentence_native": "È una persona molto solitaria.", + "example_sentence_english": "He is a very solitary person.", + "pos": "adjective", + "word_frequency": 5900 + }, + { + "word": "sterlina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pound sterling", + "romanization": "sterlina", + "example_sentence_native": "Quanto costa in sterline?", + "example_sentence_english": "How much does it cost in pounds sterling?", + "pos": "noun", + "word_frequency": 5902 + }, + { + "word": "tentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temptation", + "romanization": "tentazione", + "example_sentence_native": "Ha resistito alla tentazione di mangiare il dolce.", + "example_sentence_english": "He resisted the temptation to eat the dessert.", + "pos": "noun", + "word_frequency": 5905 + }, + { + "word": "teorico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theoretical", + "romanization": "teorico", + "example_sentence_native": "È solo un problema teorico, non pratico.", + "example_sentence_english": "It's just a theoretical problem, not a practical one.", + "pos": "adjective", + "word_frequency": 5906 + }, + { + "word": "torrente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torrent;stream", + "romanization": "torrente", + "example_sentence_native": "Il torrente scorreva veloce dopo la pioggia.", + "example_sentence_english": "The torrent flowed fast after the rain.", + "pos": "noun", + "word_frequency": 5907 + }, + { + "word": "tram", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tram;streetcar", + "romanization": "tram", + "example_sentence_native": "Prendiamo il tram per andare in centro.", + "example_sentence_english": "Let's take the tram to go downtown.", + "pos": "noun", + "word_frequency": 5908 + }, + { + "word": "uguaglianza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equality", + "romanization": "uguaglianza", + "example_sentence_native": "La costituzione garantisce l'uguaglianza di tutti i cittadini.", + "example_sentence_english": "The constitution guarantees the equality of all citizens.", + "pos": "noun", + "word_frequency": 5909 + }, + { + "word": "allerta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alert;warning", + "romanization": "allerta", + "example_sentence_native": "Hanno emesso un'allerta meteo.", + "example_sentence_english": "They issued a weather alert.", + "pos": "noun", + "word_frequency": 5912 + }, + { + "word": "assassinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assassinate;to murder", + "romanization": "assassinare", + "example_sentence_native": "Il complotto era di assassinare il re.", + "example_sentence_english": "The plot was to assassinate the king.", + "pos": "verb", + "word_frequency": 5913 + }, + { + "word": "azionista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shareholder", + "romanization": "azionista", + "example_sentence_native": "Gli azionisti si sono riuniti per votare.", + "example_sentence_english": "The shareholders met to vote.", + "pos": "noun", + "word_frequency": 5915 + }, + { + "word": "bimba", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little girl;baby girl", + "romanization": "bimba", + "example_sentence_native": "La bimba dorme nella sua culla.", + "example_sentence_english": "The little girl is sleeping in her crib.", + "pos": "noun", + "word_frequency": 5917 + }, + { + "word": "burocrazia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucracy", + "romanization": "burocrazia", + "example_sentence_native": "La burocrazia può rallentare i processi.", + "example_sentence_english": "Bureaucracy can slow down processes.", + "pos": "noun", + "word_frequency": 5919 + }, + { + "word": "caratterizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to characterize", + "romanization": "caratterizzare", + "example_sentence_native": "La sua onestà lo caratterizza.", + "example_sentence_english": "His honesty characterizes him.", + "pos": "verb", + "word_frequency": 5920 + }, + { + "word": "caserma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barracks", + "romanization": "caserma", + "example_sentence_native": "I soldati sono tornati alla caserma.", + "example_sentence_english": "The soldiers returned to the barracks.", + "pos": "noun", + "word_frequency": 5921 + }, + { + "word": "centrodestra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "center-right", + "romanization": "centrodestra", + "example_sentence_native": "Il partito di centrodestra ha vinto le elezioni.", + "example_sentence_english": "The center-right party won the elections.", + "pos": "noun", + "word_frequency": 5922 + }, + { + "word": "cerebrale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cerebral", + "romanization": "cerebrale", + "example_sentence_native": "Ha avuto un'emorragia cerebrale.", + "example_sentence_english": "He had a cerebral hemorrhage.", + "pos": "adjective", + "word_frequency": 5923 + }, + { + "word": "contorno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "side dish", + "romanization": "contorno", + "example_sentence_native": "Vorrei la bistecca con un contorno di patate.", + "example_sentence_english": "I would like the steak with a side dish of potatoes.", + "pos": "noun", + "word_frequency": 5924 + }, + { + "word": "contraddizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contradiction", + "romanization": "contraddizione", + "example_sentence_native": "C'è una chiara contraddizione tra le sue parole e le sue azioni.", + "example_sentence_english": "There is a clear contradiction between his words and his actions.", + "pos": "noun", + "word_frequency": 5925 + }, + { + "word": "contrariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrary to", + "romanization": "contrariamente", + "example_sentence_native": "Contrariamente a quanto si pensava, il progetto è stato un successo.", + "example_sentence_english": "Contrary to what was thought, the project was a success.", + "pos": "adverb", + "word_frequency": 5926 + }, + { + "word": "convertire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convert", + "romanization": "convertire", + "example_sentence_native": "Dobbiamo convertire i file in un altro formato.", + "example_sentence_english": "We need to convert the files to another format.", + "pos": "verb", + "word_frequency": 5927 + }, + { + "word": "demolizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demolition", + "romanization": "demolizione", + "example_sentence_native": "L'edificio è stato destinato alla demolizione.", + "example_sentence_english": "The building was designated for demolition.", + "pos": "noun", + "word_frequency": 5929 + }, + { + "word": "diamante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diamond", + "romanization": "diamante", + "example_sentence_native": "Ha ricevuto un anello con un diamante.", + "example_sentence_english": "She received a ring with a diamond.", + "pos": "noun", + "word_frequency": 5930 + }, + { + "word": "diga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dam", + "romanization": "diga", + "example_sentence_native": "La diga è stata costruita per controllare il fiume.", + "example_sentence_english": "The dam was built to control the river.", + "pos": "noun", + "word_frequency": 5931 + }, + { + "word": "dogana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "customs", + "romanization": "dogana", + "example_sentence_native": "Dobbiamo passare la dogana prima di entrare nel paese.", + "example_sentence_english": "We need to pass through customs before entering the country.", + "pos": "noun", + "word_frequency": 5932 + }, + { + "word": "emotivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emotional", + "romanization": "emotivo", + "example_sentence_native": "È una persona molto emotiva.", + "example_sentence_english": "He is a very emotional person.", + "pos": "adjective", + "word_frequency": 5933 + }, + { + "word": "eroina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heroine", + "romanization": "eroina", + "example_sentence_native": "L'eroina del romanzo ha salvato la situazione.", + "example_sentence_english": "The heroine of the novel saved the situation.", + "pos": "noun", + "word_frequency": 5934 + }, + { + "word": "estremità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremity", + "romanization": "estremità", + "example_sentence_native": "Ha sentito un dolore all'estremità del braccio.", + "example_sentence_english": "He felt a pain at the extremity of his arm.", + "pos": "noun", + "word_frequency": 5935 + }, + { + "word": "etnico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ethnic", + "romanization": "etnico", + "example_sentence_native": "La città è nota per la sua diversità etnica.", + "example_sentence_english": "The city is known for its ethnic diversity.", + "pos": "adjective", + "word_frequency": 5936 + }, + { + "word": "fazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "faction", + "romanization": "fazione", + "example_sentence_native": "Le due fazioni politiche non riuscivano a trovare un accordo.", + "example_sentence_english": "The two political factions could not reach an agreement.", + "pos": "noun", + "word_frequency": 5937 + }, + { + "word": "figata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool thing", + "romanization": "figata", + "example_sentence_native": "Che figata questa nuova macchina!", + "example_sentence_english": "What a cool thing this new car is!", + "pos": "noun", + "word_frequency": 5938 + }, + { + "word": "fornitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplier", + "romanization": "fornitore", + "example_sentence_native": "Abbiamo bisogno di un nuovo fornitore per le materie prime.", + "example_sentence_english": "We need a new supplier for raw materials.", + "pos": "noun", + "word_frequency": 5939 + }, + { + "word": "forzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forced", + "romanization": "forzato", + "example_sentence_native": "Ha fatto un sorriso forzato.", + "example_sentence_english": "He gave a forced smile.", + "pos": "adjective", + "word_frequency": 5940 + }, + { + "word": "generoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "generous", + "romanization": "generoso", + "example_sentence_native": "È sempre stato molto generoso con i suoi amici.", + "example_sentence_english": "He has always been very generous with his friends.", + "pos": "adjective", + "word_frequency": 5941 + }, + { + "word": "incentivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incentive", + "romanization": "incentivo", + "example_sentence_native": "Hanno offerto un incentivo per incoraggiare le vendite.", + "example_sentence_english": "They offered an incentive to encourage sales.", + "pos": "noun", + "word_frequency": 5943 + }, + { + "word": "insalata", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "salad", + "romanization": "insalata", + "example_sentence_native": "Vorrei un'insalata mista.", + "example_sentence_english": "I would like a mixed salad.", + "pos": "noun", + "word_frequency": 5944 + }, + { + "word": "insistere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insist", + "romanization": "insistere", + "example_sentence_native": "Ha insistito per pagare il conto.", + "example_sentence_english": "He insisted on paying the bill.", + "pos": "verb", + "word_frequency": 5945 + }, + { + "word": "interazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interaction", + "romanization": "interazione", + "example_sentence_native": "L'interazione tra gli studenti è fondamentale per l'apprendimento.", + "example_sentence_english": "Interaction between students is fundamental for learning.", + "pos": "noun", + "word_frequency": 5946 + }, + { + "word": "irregolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irregular", + "romanization": "irregolare", + "example_sentence_native": "Il suo battito cardiaco è irregolare.", + "example_sentence_english": "His heartbeat is irregular.", + "pos": "adjective", + "word_frequency": 5947 + }, + { + "word": "karma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "karma", + "romanization": "karma", + "example_sentence_native": "Credo nel karma, ciò che dai ti torna indietro.", + "example_sentence_english": "I believe in karma, what you give comes back to you.", + "pos": "noun", + "word_frequency": 5949 + }, + { + "word": "lampada", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lamp", + "romanization": "lampada", + "example_sentence_native": "Accendi la lampada, per favore.", + "example_sentence_english": "Turn on the lamp, please.", + "pos": "noun", + "word_frequency": 5950 + }, + { + "word": "marittimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maritime", + "romanization": "marittimo", + "example_sentence_native": "Il commercio marittimo è fondamentale per l'economia.", + "example_sentence_english": "Maritime trade is fundamental for the economy.", + "pos": "adjective", + "word_frequency": 5953 + }, + { + "word": "modesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modest", + "romanization": "modesto", + "example_sentence_native": "Nonostante il suo successo, è rimasto una persona modesta.", + "example_sentence_english": "Despite his success, he remained a modest person.", + "pos": "adjective", + "word_frequency": 5955 + }, + { + "word": "mozione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "motion", + "romanization": "mozione", + "example_sentence_native": "Il parlamento ha votato una mozione di sfiducia.", + "example_sentence_english": "Parliament voted on a motion of no confidence.", + "pos": "noun", + "word_frequency": 5956 + }, + { + "word": "offeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offended", + "romanization": "offeso", + "example_sentence_native": "Si sentiva offeso dalle sue parole.", + "example_sentence_english": "He felt offended by her words.", + "pos": "adjective", + "word_frequency": 5960 + }, + { + "word": "oltretutto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moreover;besides", + "romanization": "oltretutto", + "example_sentence_native": "Era stanco e, oltretutto, aveva fame.", + "example_sentence_english": "He was tired and, moreover, he was hungry.", + "pos": "adverb", + "word_frequency": 5962 + }, + { + "word": "padiglione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pavilion;ward", + "romanization": "padiglione", + "example_sentence_native": "Il nuovo padiglione dell'ospedale è stato inaugurato.", + "example_sentence_english": "The new hospital ward has been inaugurated.", + "pos": "noun", + "word_frequency": 5963 + }, + { + "word": "padrona", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mistress;owner;landlady", + "romanization": "padrona", + "example_sentence_native": "La padrona di casa ci ha accolto calorosamente.", + "example_sentence_english": "The landlady welcomed us warmly.", + "pos": "noun", + "word_frequency": 5964 + }, + { + "word": "pallavolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volleyball", + "romanization": "pallavolo", + "example_sentence_native": "Mi piace giocare a pallavolo in spiaggia.", + "example_sentence_english": "I like to play volleyball on the beach.", + "pos": "noun", + "word_frequency": 5965 + }, + { + "word": "panna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cream", + "romanization": "panna", + "example_sentence_native": "Vorrei un caffè con un po' di panna.", + "example_sentence_english": "I would like a coffee with a little cream.", + "pos": "noun", + "word_frequency": 5966 + }, + { + "word": "polacco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Polish", + "romanization": "polacco", + "example_sentence_native": "Ha imparato il polacco per lavoro.", + "example_sentence_english": "He learned Polish for work.", + "pos": "adjective", + "word_frequency": 5967 + }, + { + "word": "polmone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lung", + "romanization": "polmone", + "example_sentence_native": "I polmoni sono essenziali per la respirazione.", + "example_sentence_english": "Lungs are essential for breathing.", + "pos": "noun", + "word_frequency": 5968 + }, + { + "word": "possibilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "possibly;if possible", + "romanization": "possibilmente", + "example_sentence_native": "Arriva possibilmente prima delle otto.", + "example_sentence_english": "Arrive possibly before eight.", + "pos": "adverb", + "word_frequency": 5969 + }, + { + "word": "preavviso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notice (prior notice)", + "romanization": "preavviso", + "example_sentence_native": "Ha dato le dimissioni senza preavviso.", + "example_sentence_english": "He resigned without notice.", + "pos": "noun", + "word_frequency": 5971 + }, + { + "word": "pronunciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pronounce", + "romanization": "pronunciare", + "example_sentence_native": "È difficile pronunciare alcune parole in italiano.", + "example_sentence_english": "It's difficult to pronounce some words in Italian.", + "pos": "verb", + "word_frequency": 5974 + }, + { + "word": "proporzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proportion", + "romanization": "proporzione", + "example_sentence_native": "Le dimensioni sono in proporzione con l'originale.", + "example_sentence_english": "The dimensions are in proportion with the original.", + "pos": "noun", + "word_frequency": 5975 + }, + { + "word": "prosciutto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ham;prosciutto", + "romanization": "prosciutto", + "example_sentence_native": "Vorrei un panino con prosciutto e formaggio.", + "example_sentence_english": "I would like a sandwich with ham and cheese.", + "pos": "noun", + "word_frequency": 5976 + }, + { + "word": "pugliese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Apulian (from Puglia)", + "romanization": "pugliese", + "example_sentence_native": "La cucina pugliese è molto apprezzata.", + "example_sentence_english": "Apulian cuisine is highly appreciated.", + "pos": "adjective", + "word_frequency": 5977 + }, + { + "word": "pulsante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "button", + "romanization": "pulsante", + "example_sentence_native": "Premi il pulsante rosso per avviare.", + "example_sentence_english": "Press the red button to start.", + "pos": "noun", + "word_frequency": 5978 + }, + { + "word": "raid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid", + "romanization": "raid", + "example_sentence_native": "La polizia ha condotto un raid all'alba.", + "example_sentence_english": "The police conducted a raid at dawn.", + "pos": "noun", + "word_frequency": 5980 + }, + { + "word": "rata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "installment;payment", + "romanization": "rata", + "example_sentence_native": "Devo pagare la prima rata del mutuo.", + "example_sentence_english": "I have to pay the first installment of the mortgage.", + "pos": "noun", + "word_frequency": 5981 + }, + { + "word": "remoto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remote;distant", + "romanization": "remoto", + "example_sentence_native": "Vivono in un villaggio remoto sulle montagne.", + "example_sentence_english": "They live in a remote village in the mountains.", + "pos": "adjective", + "word_frequency": 5982 + }, + { + "word": "satellite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "satellite", + "romanization": "satellite", + "example_sentence_native": "Il satellite trasmette segnali alla Terra.", + "example_sentence_english": "The satellite transmits signals to Earth.", + "pos": "noun", + "word_frequency": 5983 + }, + { + "word": "scomparire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappear", + "romanization": "scomparire", + "example_sentence_native": "Il sole è scomparso dietro le nuvole.", + "example_sentence_english": "The sun disappeared behind the clouds.", + "pos": "verb", + "word_frequency": 5984 + }, + { + "word": "sottostante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underlying;below", + "romanization": "sottostante", + "example_sentence_native": "Leggi il testo sottostante per maggiori dettagli.", + "example_sentence_english": "Read the underlying text for more details.", + "pos": "adjective", + "word_frequency": 5986 + }, + { + "word": "spaccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug dealing;outlet store", + "romanization": "spaccio", + "example_sentence_native": "La polizia ha smantellato uno spaccio di droga.", + "example_sentence_english": "The police dismantled a drug dealing operation.", + "pos": "noun", + "word_frequency": 5987 + }, + { + "word": "specialista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "specialist", + "romanization": "specialista", + "example_sentence_native": "Ho bisogno di consultare uno specialista.", + "example_sentence_english": "I need to consult a specialist.", + "pos": "noun", + "word_frequency": 5988 + }, + { + "word": "stringere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tighten;to squeeze;to shake (hands)", + "romanization": "stringere", + "example_sentence_native": "Ha stretto la mano al suo nuovo collega.", + "example_sentence_english": "He shook hands with his new colleague.", + "pos": "verb", + "word_frequency": 5989 + }, + { + "word": "suicida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suicidal", + "romanization": "suicida", + "example_sentence_native": "Ha espresso pensieri suicidi.", + "example_sentence_english": "He expressed suicidal thoughts.", + "pos": "adjective", + "word_frequency": 5990 + }, + { + "word": "temporaneamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temporarily", + "romanization": "temporaneamente", + "example_sentence_native": "Il negozio è chiuso temporaneamente per lavori.", + "example_sentence_english": "The shop is temporarily closed for renovations.", + "pos": "adverb", + "word_frequency": 5992 + }, + { + "word": "tuta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tracksuit;jumpsuit;overall", + "romanization": "tuta", + "example_sentence_native": "Indossava una tuta da ginnastica.", + "example_sentence_english": "She was wearing a tracksuit.", + "pos": "noun", + "word_frequency": 5993 + }, + { + "word": "variare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vary;to change", + "romanization": "variare", + "example_sentence_native": "I prezzi possono variare a seconda della stagione.", + "example_sentence_english": "Prices can vary depending on the season.", + "pos": "verb", + "word_frequency": 5995 + }, + { + "word": "vivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vividly;strongly;heartily", + "romanization": "vivamente", + "example_sentence_native": "Ti consiglio vivamente di leggere questo libro.", + "example_sentence_english": "I strongly advise you to read this book.", + "pos": "adverb", + "word_frequency": 5998 + }, + { + "word": "volontariamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voluntarily", + "romanization": "volontariamente", + "example_sentence_native": "Ha partecipato volontariamente al progetto.", + "example_sentence_english": "He voluntarily participated in the project.", + "pos": "adverb", + "word_frequency": 5999 + }, + { + "word": "volpe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fox", + "romanization": "volpe", + "example_sentence_native": "La volpe è un animale astuto.", + "example_sentence_english": "The fox is a cunning animal.", + "pos": "noun", + "word_frequency": 6000 + }, + { + "word": "abolire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abolish", + "romanization": "abolire", + "example_sentence_native": "Il governo ha deciso di abolire la legge.", + "example_sentence_english": "The government decided to abolish the law.", + "pos": "verb", + "word_frequency": 6001 + }, + { + "word": "accennare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hint;to mention briefly", + "romanization": "accennare", + "example_sentence_native": "Ha accennato al suo nuovo lavoro.", + "example_sentence_english": "He hinted at his new job.", + "pos": "verb", + "word_frequency": 6002 + }, + { + "word": "acuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharp;acute", + "romanization": "acuto", + "example_sentence_native": "Il coltello è molto acuto.", + "example_sentence_english": "The knife is very sharp.", + "pos": "adjective", + "word_frequency": 6003 + }, + { + "word": "aggressivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aggressive", + "romanization": "aggressivo", + "example_sentence_native": "Il cane sembrava molto aggressivo.", + "example_sentence_english": "The dog seemed very aggressive.", + "pos": "adjective", + "word_frequency": 6004 + }, + { + "word": "ammazzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kill", + "romanization": "ammazzare", + "example_sentence_native": "Non si dovrebbe mai ammazzare un animale innocente.", + "example_sentence_english": "One should never kill an innocent animal.", + "pos": "verb", + "word_frequency": 6005 + }, + { + "word": "armadio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wardrobe;closet", + "romanization": "armadio", + "example_sentence_native": "Ho messo i vestiti nell'armadio.", + "example_sentence_english": "I put the clothes in the wardrobe.", + "pos": "noun", + "word_frequency": 6007 + }, + { + "word": "artiglieria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artillery", + "romanization": "artiglieria", + "example_sentence_native": "L'artiglieria ha bombardato le posizioni nemiche.", + "example_sentence_english": "The artillery bombarded the enemy positions.", + "pos": "noun", + "word_frequency": 6008 + }, + { + "word": "assassinio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murder;assassination", + "romanization": "assassinio", + "example_sentence_native": "La polizia sta indagando sull'assassinio.", + "example_sentence_english": "The police are investigating the murder.", + "pos": "noun", + "word_frequency": 6009 + }, + { + "word": "aurora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dawn;aurora", + "romanization": "aurora", + "example_sentence_native": "Ci siamo svegliati all'aurora.", + "example_sentence_english": "We woke up at dawn.", + "pos": "noun", + "word_frequency": 6010 + }, + { + "word": "binario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "track;platform (train)", + "romanization": "binario", + "example_sentence_native": "Il treno parte dal binario 3.", + "example_sentence_english": "The train departs from track 3.", + "pos": "noun", + "word_frequency": 6012 + }, + { + "word": "bollente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boiling;very hot", + "romanization": "bollente", + "example_sentence_native": "L'acqua è bollente.", + "example_sentence_english": "The water is boiling.", + "pos": "adjective", + "word_frequency": 6013 + }, + { + "word": "brigata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brigade;crew", + "romanization": "brigata", + "example_sentence_native": "La brigata di cucina è molto efficiente.", + "example_sentence_english": "The kitchen crew is very efficient.", + "pos": "noun", + "word_frequency": 6015 + }, + { + "word": "cannabis", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannabis", + "romanization": "cannabis", + "example_sentence_native": "La cannabis è illegale in molti paesi.", + "example_sentence_english": "Cannabis is illegal in many countries.", + "pos": "noun", + "word_frequency": 6017 + }, + { + "word": "caratteristico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "characteristic;typical", + "romanization": "caratteristico", + "example_sentence_native": "Questo è un piatto caratteristico della regione.", + "example_sentence_english": "This is a characteristic dish of the region.", + "pos": "adjective", + "word_frequency": 6018 + }, + { + "word": "carrello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trolley;cart", + "romanization": "carrello", + "example_sentence_native": "Prendi un carrello per la spesa.", + "example_sentence_english": "Take a trolley for shopping.", + "pos": "noun", + "word_frequency": 6019 + }, + { + "word": "casco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helmet", + "romanization": "casco", + "example_sentence_native": "Indossa sempre il casco quando vai in moto.", + "example_sentence_english": "Always wear your helmet when you ride a motorcycle.", + "pos": "noun", + "word_frequency": 6020 + }, + { + "word": "cassetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "box;cassette", + "romanization": "cassetta", + "example_sentence_native": "Ho trovato una vecchia cassetta di legno.", + "example_sentence_english": "I found an old wooden box.", + "pos": "noun", + "word_frequency": 6021 + }, + { + "word": "cavalleria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavalry;chivalry", + "romanization": "cavalleria", + "example_sentence_native": "La cavalleria era un'arma importante in passato.", + "example_sentence_english": "Cavalry was an important weapon in the past.", + "pos": "noun", + "word_frequency": 6023 + }, + { + "word": "certificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certification", + "romanization": "certificazione", + "example_sentence_native": "Ho bisogno di una certificazione per questo corso.", + "example_sentence_english": "I need a certification for this course.", + "pos": "noun", + "word_frequency": 6024 + }, + { + "word": "ciclismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycling", + "romanization": "ciclismo", + "example_sentence_native": "Il ciclismo è uno sport popolare in Italia.", + "example_sentence_english": "Cycling is a popular sport in Italy.", + "pos": "noun", + "word_frequency": 6026 + }, + { + "word": "collettività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community;collectivity", + "romanization": "collettività", + "example_sentence_native": "Dobbiamo agire per il bene della collettività.", + "example_sentence_english": "We must act for the good of the community.", + "pos": "noun", + "word_frequency": 6028 + }, + { + "word": "concepire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceive;to devise", + "romanization": "concepire", + "example_sentence_native": "È difficile concepire un'idea così complessa.", + "example_sentence_english": "It's difficult to conceive such a complex idea.", + "pos": "verb", + "word_frequency": 6030 + }, + { + "word": "contessa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "countess", + "romanization": "contessa", + "example_sentence_native": "La contessa vive in un grande castello.", + "example_sentence_english": "The countess lives in a large castle.", + "pos": "noun", + "word_frequency": 6032 + }, + { + "word": "cotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cooked;baked", + "romanization": "cotto", + "example_sentence_native": "La pasta è cotta al punto giusto.", + "example_sentence_english": "The pasta is cooked just right.", + "pos": "adjective", + "word_frequency": 6034 + }, + { + "word": "deciso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decided;firm;resolute", + "romanization": "deciso", + "example_sentence_native": "Ha un carattere molto deciso.", + "example_sentence_english": "He has a very firm character.", + "pos": "adjective", + "word_frequency": 6036 + }, + { + "word": "deposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposition;testimony", + "romanization": "deposizione", + "example_sentence_native": "La sua deposizione è stata cruciale per il caso.", + "example_sentence_english": "His testimony was crucial for the case.", + "pos": "noun", + "word_frequency": 6037 + }, + { + "word": "dimostrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstrated;proven", + "romanization": "dimostrato", + "example_sentence_native": "Il suo talento è stato ampiamente dimostrato.", + "example_sentence_english": "His talent has been widely demonstrated.", + "pos": "adjective", + "word_frequency": 6038 + }, + { + "word": "disordine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disorder;mess", + "romanization": "disordine", + "example_sentence_native": "La sua stanza è sempre in disordine.", + "example_sentence_english": "His room is always in a mess.", + "pos": "noun", + "word_frequency": 6039 + }, + { + "word": "dorsale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dorsal", + "romanization": "dorsale", + "example_sentence_native": "Ha un dolore alla colonna dorsale.", + "example_sentence_english": "He has pain in his dorsal spine.", + "pos": "adjective", + "word_frequency": 6041 + }, + { + "word": "emozionante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exciting", + "romanization": "emozionante", + "example_sentence_native": "È stato un film davvero emozionante.", + "example_sentence_english": "It was a truly exciting movie.", + "pos": "adjective", + "word_frequency": 6043 + }, + { + "word": "equipaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crew", + "romanization": "equipaggio", + "example_sentence_native": "L'equipaggio della nave era molto esperto.", + "example_sentence_english": "The ship's crew was very experienced.", + "pos": "noun", + "word_frequency": 6044 + }, + { + "word": "esplicito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explicit", + "romanization": "esplicito", + "example_sentence_native": "Ha dato istruzioni molto esplicite.", + "example_sentence_english": "He gave very explicit instructions.", + "pos": "adjective", + "word_frequency": 6045 + }, + { + "word": "genocidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genocide", + "romanization": "genocidio", + "example_sentence_native": "Il genocidio è una delle peggiori atrocità della storia.", + "example_sentence_english": "Genocide is one of the worst atrocities in history.", + "pos": "noun", + "word_frequency": 6047 + }, + { + "word": "insediamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settlement", + "romanization": "insediamento", + "example_sentence_native": "Hanno scoperto un antico insediamento romano.", + "example_sentence_english": "They discovered an ancient Roman settlement.", + "pos": "noun", + "word_frequency": 6054 + }, + { + "word": "leggerezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightness", + "romanization": "leggerezza", + "example_sentence_native": "Ha affrontato la situazione con leggerezza.", + "example_sentence_english": "He approached the situation with lightness.", + "pos": "noun", + "word_frequency": 6058 + }, + { + "word": "minorenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minor", + "romanization": "minorenne", + "example_sentence_native": "La legge protegge i minorenni.", + "example_sentence_english": "The law protects minors.", + "pos": "noun", + "word_frequency": 6064 + }, + { + "word": "onorevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honorable", + "romanization": "onorevole", + "example_sentence_native": "Ha avuto una carriera onorevole.", + "example_sentence_english": "He had an honorable career.", + "pos": "adjective", + "word_frequency": 6068 + }, + { + "word": "palio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palio (traditional Italian horse race)", + "romanization": "palio", + "example_sentence_native": "Il Palio di Siena è una corsa di cavalli storica.", + "example_sentence_english": "The Palio of Siena is a historic horse race.", + "pos": "noun", + "word_frequency": 6070 + }, + { + "word": "pensionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retiree", + "romanization": "pensionato", + "example_sentence_native": "Mio nonno è un pensionato.", + "example_sentence_english": "My grandfather is a retiree.", + "pos": "noun", + "word_frequency": 6071 + }, + { + "word": "perseguire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pursue", + "romanization": "perseguire", + "example_sentence_native": "La polizia sta perseguendo i criminali.", + "example_sentence_english": "The police are pursuing the criminals.", + "pos": "verb", + "word_frequency": 6072 + }, + { + "word": "piazzale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large square", + "romanization": "piazzale", + "example_sentence_native": "Ci siamo incontrati nel piazzale della stazione.", + "example_sentence_english": "We met in the station forecourt.", + "pos": "noun", + "word_frequency": 6073 + }, + { + "word": "poetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poetic", + "romanization": "poetico", + "example_sentence_native": "Ha uno stile di scrittura molto poetico.", + "example_sentence_english": "He has a very poetic writing style.", + "pos": "adjective", + "word_frequency": 6074 + }, + { + "word": "positivamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "positively", + "romanization": "positivamente", + "example_sentence_native": "La notizia è stata accolta positivamente.", + "example_sentence_english": "The news was received positively.", + "pos": "adverb", + "word_frequency": 6075 + }, + { + "word": "premere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to press", + "romanization": "premere", + "example_sentence_native": "Premi il pulsante per accendere la luce.", + "example_sentence_english": "Press the button to turn on the light.", + "pos": "verb", + "word_frequency": 6076 + }, + { + "word": "premium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premium", + "romanization": "premium", + "example_sentence_native": "Offrono un servizio premium ai loro clienti.", + "example_sentence_english": "They offer a premium service to their clients.", + "pos": "adjective", + "word_frequency": 6077 + }, + { + "word": "prevalenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevalence", + "romanization": "prevalenza", + "example_sentence_native": "La prevalenza della malattia è aumentata.", + "example_sentence_english": "The prevalence of the disease has increased.", + "pos": "noun", + "word_frequency": 6078 + }, + { + "word": "previo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prior", + "romanization": "previo", + "example_sentence_native": "L'accesso è consentito previo appuntamento.", + "example_sentence_english": "Access is allowed by prior appointment.", + "pos": "adjective", + "word_frequency": 6079 + }, + { + "word": "provvedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to provide;to arrange", + "romanization": "provvedere", + "example_sentence_native": "Dobbiamo provvedere al cibo per la festa.", + "example_sentence_english": "We need to provide food for the party.", + "pos": "verb", + "word_frequency": 6080 + }, + { + "word": "pubblicitario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertising;promotional", + "romanization": "pubblicitario", + "example_sentence_native": "Ha lavorato in campo pubblicitario per anni.", + "example_sentence_english": "He worked in the advertising field for years.", + "pos": "adjective", + "word_frequency": 6081 + }, + { + "word": "rappresentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "represented", + "romanization": "rappresentato", + "example_sentence_native": "Il problema è stato ben rappresentato nel rapporto.", + "example_sentence_english": "The problem was well represented in the report.", + "pos": "adjective", + "word_frequency": 6083 + }, + { + "word": "razzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocket", + "romanization": "razzo", + "example_sentence_native": "Il razzo è stato lanciato con successo.", + "example_sentence_english": "The rocket was launched successfully.", + "pos": "noun", + "word_frequency": 6084 + }, + { + "word": "recitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to act;to recite", + "romanization": "recitare", + "example_sentence_native": "Le piace recitare a teatro.", + "example_sentence_english": "She likes to act in the theater.", + "pos": "verb", + "word_frequency": 6085 + }, + { + "word": "reclusione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprisonment;reclusion", + "romanization": "reclusione", + "example_sentence_native": "È stato condannato a dieci anni di reclusione.", + "example_sentence_english": "He was sentenced to ten years of imprisonment.", + "pos": "noun", + "word_frequency": 6086 + }, + { + "word": "redatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drafted;drawn up", + "romanization": "redatto", + "example_sentence_native": "Il documento è stato redatto con cura.", + "example_sentence_english": "The document was drafted carefully.", + "pos": "adjective", + "word_frequency": 6087 + }, + { + "word": "residuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residue;remainder", + "romanization": "residuo", + "example_sentence_native": "C'era un residuo di caffè sul fondo della tazza.", + "example_sentence_english": "There was a residue of coffee at the bottom of the cup.", + "pos": "noun", + "word_frequency": 6088 + }, + { + "word": "rigido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rigid;strict", + "romanization": "rigido", + "example_sentence_native": "Le regole sono molto rigide in questa scuola.", + "example_sentence_english": "The rules are very strict in this school.", + "pos": "adjective", + "word_frequency": 6089 + }, + { + "word": "risalto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prominence;emphasis", + "romanization": "risalto", + "example_sentence_native": "Ha messo in risalto l'importanza della ricerca.", + "example_sentence_english": "He emphasized the importance of the research.", + "pos": "noun", + "word_frequency": 6090 + }, + { + "word": "rissa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brawl;fight", + "romanization": "rissa", + "example_sentence_native": "C'è stata una rissa fuori dal bar.", + "example_sentence_english": "There was a brawl outside the bar.", + "pos": "noun", + "word_frequency": 6091 + }, + { + "word": "ritrovato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "found;rediscovered", + "romanization": "ritrovato", + "example_sentence_native": "Il suo portafoglio è stato ritrovato.", + "example_sentence_english": "His wallet was found.", + "pos": "adjective", + "word_frequency": 6092 + }, + { + "word": "senior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senior", + "romanization": "senior", + "example_sentence_native": "È un manager senior nell'azienda.", + "example_sentence_english": "He is a senior manager in the company.", + "pos": "adjective", + "word_frequency": 6094 + }, + { + "word": "serial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serial", + "romanization": "serial", + "example_sentence_native": "Hanno arrestato un serial killer.", + "example_sentence_english": "They arrested a serial killer.", + "pos": "adjective", + "word_frequency": 6095 + }, + { + "word": "sostenibilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sustainability", + "romanization": "sostenibilità", + "example_sentence_native": "La sostenibilità ambientale è un tema cruciale.", + "example_sentence_english": "Environmental sustainability is a crucial topic.", + "pos": "noun", + "word_frequency": 6098 + }, + { + "word": "spaghetto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spaghetti (single strand)", + "romanization": "spaghetto", + "example_sentence_native": "Mi è caduto uno spaghetto dalla forchetta.", + "example_sentence_english": "A strand of spaghetti fell from my fork.", + "pos": "noun", + "word_frequency": 6099 + }, + { + "word": "stanchezza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiredness;fatigue", + "romanization": "stanchezza", + "example_sentence_native": "Sento una grande stanchezza dopo il lavoro.", + "example_sentence_english": "I feel great tiredness after work.", + "pos": "noun", + "word_frequency": 6100 + }, + { + "word": "startup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "startup", + "romanization": "startup", + "example_sentence_native": "Ha fondato una nuova startup tecnologica.", + "example_sentence_english": "He founded a new tech startup.", + "pos": "noun", + "word_frequency": 6101 + }, + { + "word": "sudore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweat", + "romanization": "sudore", + "example_sentence_native": "Era coperto di sudore dopo la corsa.", + "example_sentence_english": "He was covered in sweat after the run.", + "pos": "noun", + "word_frequency": 6103 + }, + { + "word": "vulcano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volcano", + "romanization": "vulcano", + "example_sentence_native": "Il vulcano è inattivo da molti anni.", + "example_sentence_english": "The volcano has been inactive for many years.", + "pos": "noun", + "word_frequency": 6104 + }, + { + "word": "water", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet;water closet", + "romanization": "water", + "example_sentence_native": "Dov'è il water?", + "example_sentence_english": "Where is the toilet?", + "pos": "noun", + "word_frequency": 6105 + }, + { + "word": "abbondanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abundance", + "romanization": "abbondanza", + "example_sentence_native": "C'è abbondanza di cibo per tutti.", + "example_sentence_english": "There is abundance of food for everyone.", + "pos": "noun", + "word_frequency": 6107 + }, + { + "word": "accettato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "accepted", + "romanization": "accettato", + "example_sentence_native": "La sua proposta è stata accettata.", + "example_sentence_english": "His proposal was accepted.", + "pos": "adjective", + "word_frequency": 6108 + }, + { + "word": "adeguatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adequately;appropriately", + "romanization": "adeguatamente", + "example_sentence_native": "Il problema non è stato affrontato adeguatamente.", + "example_sentence_english": "The problem was not addressed adequately.", + "pos": "adverb", + "word_frequency": 6109 + }, + { + "word": "affine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affine;related;similar", + "romanization": "affine", + "example_sentence_native": "Hanno interessi affini.", + "example_sentence_english": "They have similar interests.", + "pos": "adjective", + "word_frequency": 6110 + }, + { + "word": "attribuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attributed", + "romanization": "attribuito", + "example_sentence_native": "Il successo è stato attribuito al suo duro lavoro.", + "example_sentence_english": "The success was attributed to his hard work.", + "pos": "adjective", + "word_frequency": 6111 + }, + { + "word": "autostima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-esteem", + "romanization": "autostima", + "example_sentence_native": "Ha bisogno di migliorare la sua autostima.", + "example_sentence_english": "He needs to improve his self-esteem.", + "pos": "noun", + "word_frequency": 6112 + }, + { + "word": "banana", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "banana", + "romanization": "banana", + "example_sentence_native": "Mi piace mangiare una banana a colazione.", + "example_sentence_english": "I like to eat a banana for breakfast.", + "pos": "noun", + "word_frequency": 6113 + }, + { + "word": "bitcoin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bitcoin", + "romanization": "Bitcoin", + "example_sentence_native": "Ha investito in Bitcoin.", + "example_sentence_english": "He invested in Bitcoin.", + "pos": "noun", + "word_frequency": 6116 + }, + { + "word": "bollettino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulletin;report", + "romanization": "bollettino", + "example_sentence_native": "Il bollettino meteorologico prevede pioggia.", + "example_sentence_english": "The weather bulletin predicts rain.", + "pos": "noun", + "word_frequency": 6117 + }, + { + "word": "bombardamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bombing;bombardment", + "romanization": "bombardamento", + "example_sentence_native": "La città ha subito un pesante bombardamento.", + "example_sentence_english": "The city suffered a heavy bombardment.", + "pos": "noun", + "word_frequency": 6118 + }, + { + "word": "bonifica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reclamation;remediation;drainage", + "romanization": "bonifica", + "example_sentence_native": "Hanno avviato un progetto di bonifica del terreno.", + "example_sentence_english": "They started a land reclamation project.", + "pos": "noun", + "word_frequency": 6119 + }, + { + "word": "calare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lower;to drop;to decrease", + "romanization": "calare", + "example_sentence_native": "Il sole sta iniziando a calare dietro le montagne.", + "example_sentence_english": "The sun is starting to set behind the mountains.", + "pos": "verb", + "word_frequency": 6120 + }, + { + "word": "candela", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "candle", + "romanization": "candela", + "example_sentence_native": "Abbiamo acceso una candela per creare un'atmosfera più accogliente.", + "example_sentence_english": "We lit a candle to create a cozier atmosphere.", + "pos": "noun", + "word_frequency": 6121 + }, + { + "word": "cannone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannon", + "romanization": "cannone", + "example_sentence_native": "Il cannone sparò un colpo assordante.", + "example_sentence_english": "The cannon fired a deafening shot.", + "pos": "noun", + "word_frequency": 6122 + }, + { + "word": "causato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caused", + "romanization": "causato", + "example_sentence_native": "Il danno causato dalla tempesta è stato significativo.", + "example_sentence_english": "The damage caused by the storm was significant.", + "pos": "adjective", + "word_frequency": 6123 + }, + { + "word": "clero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clergy", + "romanization": "clero", + "example_sentence_native": "Il clero ha un ruolo importante nella comunità.", + "example_sentence_english": "The clergy has an important role in the community.", + "pos": "noun", + "word_frequency": 6126 + }, + { + "word": "cocco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coconut", + "romanization": "cocco", + "example_sentence_native": "Mi piace molto il sapore del cocco.", + "example_sentence_english": "I really like the taste of coconut.", + "pos": "noun", + "word_frequency": 6127 + }, + { + "word": "confederazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confederation", + "romanization": "confederazione", + "example_sentence_native": "La confederazione di stati ha firmato un nuovo trattato.", + "example_sentence_english": "The confederation of states signed a new treaty.", + "pos": "noun", + "word_frequency": 6128 + }, + { + "word": "conforto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comfort;solace", + "romanization": "conforto", + "example_sentence_native": "Le sue parole mi hanno dato grande conforto.", + "example_sentence_english": "His words gave me great comfort.", + "pos": "noun", + "word_frequency": 6129 + }, + { + "word": "consolato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consulate", + "romanization": "consolato", + "example_sentence_native": "Ho dovuto andare al consolato per rinnovare il passaporto.", + "example_sentence_english": "I had to go to the consulate to renew my passport.", + "pos": "noun", + "word_frequency": 6130 + }, + { + "word": "coperto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "covered;cloudy", + "romanization": "coperto", + "example_sentence_native": "Il cielo è coperto di nuvole oggi.", + "example_sentence_english": "The sky is covered with clouds today.", + "pos": "adjective", + "word_frequency": 6131 + }, + { + "word": "coraggioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courageous;brave", + "romanization": "coraggioso", + "example_sentence_native": "È stato un atto molto coraggioso.", + "example_sentence_english": "It was a very courageous act.", + "pos": "adjective", + "word_frequency": 6132 + }, + { + "word": "corno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn", + "romanization": "corno", + "example_sentence_native": "Il cervo aveva grandi corna.", + "example_sentence_english": "The deer had large horns.", + "pos": "noun", + "word_frequency": 6133 + }, + { + "word": "credente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "believer", + "romanization": "credente", + "example_sentence_native": "È un credente molto devoto.", + "example_sentence_english": "He is a very devout believer.", + "pos": "noun", + "word_frequency": 6134 + }, + { + "word": "cronico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronic", + "romanization": "cronico", + "example_sentence_native": "Soffre di dolore cronico alla schiena.", + "example_sentence_english": "He suffers from chronic back pain.", + "pos": "adjective", + "word_frequency": 6135 + }, + { + "word": "cuscino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pillow;cushion", + "romanization": "cuscino", + "example_sentence_native": "Ho bisogno di un cuscino più morbido per dormire.", + "example_sentence_english": "I need a softer pillow to sleep.", + "pos": "noun", + "word_frequency": 6136 + }, + { + "word": "delibera", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resolution;decision", + "romanization": "delibera", + "example_sentence_native": "Il consiglio ha approvato la delibera all'unanimità.", + "example_sentence_english": "The council unanimously approved the resolution.", + "pos": "noun", + "word_frequency": 6137 + }, + { + "word": "delinquente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquent;criminal", + "romanization": "delinquente", + "example_sentence_native": "La polizia ha arrestato il delinquente.", + "example_sentence_english": "The police arrested the delinquent.", + "pos": "noun", + "word_frequency": 6138 + }, + { + "word": "denominato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "named;denominated", + "romanization": "denominato", + "example_sentence_native": "Il progetto è stato denominato \"Operazione Speranza\".", + "example_sentence_english": "The project was named \"Operation Hope\".", + "pos": "adjective", + "word_frequency": 6139 + }, + { + "word": "dentista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dentist", + "romanization": "dentista", + "example_sentence_native": "Devo andare dal dentista per un controllo.", + "example_sentence_english": "I need to go to the dentist for a check-up.", + "pos": "noun", + "word_frequency": 6140 + }, + { + "word": "dettagliato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detailed", + "romanization": "dettagliato", + "example_sentence_native": "Ha fornito una descrizione molto dettagliata dell'evento.", + "example_sentence_english": "He provided a very detailed description of the event.", + "pos": "adjective", + "word_frequency": 6141 + }, + { + "word": "dimesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discharged;resigned;subdued", + "romanization": "dimesso", + "example_sentence_native": "Il paziente è stato dimesso dall'ospedale ieri.", + "example_sentence_english": "The patient was discharged from the hospital yesterday.", + "pos": "adjective", + "word_frequency": 6142 + }, + { + "word": "discarica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landfill;dump", + "romanization": "discarica", + "example_sentence_native": "I rifiuti vengono portati alla discarica.", + "example_sentence_english": "The waste is taken to the landfill.", + "pos": "noun", + "word_frequency": 6143 + }, + { + "word": "discrezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discretion", + "romanization": "discrezione", + "example_sentence_native": "Agisci con discrezione in questa situazione delicata.", + "example_sentence_english": "Act with discretion in this delicate situation.", + "pos": "noun", + "word_frequency": 6144 + }, + { + "word": "diventato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "become", + "romanization": "diventato", + "example_sentence_native": "È diventato un medico molto bravo.", + "example_sentence_english": "He has become a very good doctor.", + "pos": "adjective", + "word_frequency": 6145 + }, + { + "word": "eccessivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excessively", + "romanization": "eccessivamente", + "example_sentence_native": "Non preoccuparti eccessivamente per piccole cose.", + "example_sentence_english": "Don't worry excessively about small things.", + "pos": "adverb", + "word_frequency": 6146 + }, + { + "word": "evasione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evasion;escape", + "romanization": "evasione", + "example_sentence_native": "L'evasione fiscale è un problema serio.", + "example_sentence_english": "Tax evasion is a serious problem.", + "pos": "noun", + "word_frequency": 6147 + }, + { + "word": "evo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "age;era", + "romanization": "evo", + "example_sentence_native": "Stiamo vivendo in una nuova evo tecnologica.", + "example_sentence_english": "We are living in a new technological age.", + "pos": "noun", + "word_frequency": 6148 + }, + { + "word": "fallire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail;to go bankrupt", + "romanization": "fallire", + "example_sentence_native": "Non dobbiamo avere paura di fallire.", + "example_sentence_english": "We must not be afraid to fail.", + "pos": "verb", + "word_frequency": 6149 + }, + { + "word": "fisco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax authorities;treasury", + "romanization": "fisco", + "example_sentence_native": "Il fisco ha avviato un'indagine.", + "example_sentence_english": "The tax authorities have launched an investigation.", + "pos": "noun", + "word_frequency": 6150 + }, + { + "word": "forestale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forest (adj.);forestry", + "romanization": "forestale", + "example_sentence_native": "Abbiamo fatto una passeggiata nel parco forestale.", + "example_sentence_english": "We took a walk in the forest park.", + "pos": "adjective", + "word_frequency": 6151 + }, + { + "word": "hobby", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hobby", + "romanization": "hobby", + "example_sentence_native": "Il mio hobby preferito è leggere.", + "example_sentence_english": "My favorite hobby is reading.", + "pos": "noun", + "word_frequency": 6156 + }, + { + "word": "imponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposing;impressive", + "romanization": "imponente", + "example_sentence_native": "L'edificio aveva un aspetto imponente.", + "example_sentence_english": "The building had an imposing appearance.", + "pos": "adjective", + "word_frequency": 6157 + }, + { + "word": "inedito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpublished;unreleased;unprecedented", + "romanization": "inedito", + "example_sentence_native": "Ha presentato un manoscritto inedito.", + "example_sentence_english": "He presented an unpublished manuscript.", + "pos": "adjective", + "word_frequency": 6158 + }, + { + "word": "infelice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unhappy;unfortunate", + "romanization": "infelice", + "example_sentence_native": "Si sentiva molto infelice dopo la notizia.", + "example_sentence_english": "She felt very unhappy after the news.", + "pos": "adjective", + "word_frequency": 6159 + }, + { + "word": "integrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to integrate", + "romanization": "integrare", + "example_sentence_native": "Dobbiamo integrare le nuove tecnologie nel nostro sistema.", + "example_sentence_english": "We need to integrate new technologies into our system.", + "pos": "verb", + "word_frequency": 6160 + }, + { + "word": "macedonia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fruit salad", + "romanization": "macedonia", + "example_sentence_native": "Per dessert, abbiamo mangiato una macedonia di frutta fresca.", + "example_sentence_english": "For dessert, we ate a fresh fruit salad.", + "pos": "noun", + "word_frequency": 6163 + }, + { + "word": "mediatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "media-related;media (adj.)", + "romanization": "mediatico", + "example_sentence_native": "L'evento ha avuto un grande impatto mediatico.", + "example_sentence_english": "The event had a great media impact.", + "pos": "adjective", + "word_frequency": 6168 + }, + { + "word": "mentire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lie", + "romanization": "mentire", + "example_sentence_native": "Non dovresti mai mentire ai tuoi amici.", + "example_sentence_english": "You should never lie to your friends.", + "pos": "verb", + "word_frequency": 6169 + }, + { + "word": "meritato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deserved;merited", + "romanization": "meritato", + "example_sentence_native": "La vittoria è stata pienamente meritata.", + "example_sentence_english": "The victory was fully deserved.", + "pos": "adjective", + "word_frequency": 6170 + }, + { + "word": "millennio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennium", + "romanization": "millennio", + "example_sentence_native": "Siamo entrati in un nuovo millennio.", + "example_sentence_english": "We have entered a new millennium.", + "pos": "noun", + "word_frequency": 6171 + }, + { + "word": "mina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mine (explosive);pencil lead", + "romanization": "mina", + "example_sentence_native": "Hanno trovato una vecchia mina antiuomo nel campo.", + "example_sentence_english": "They found an old anti-personnel mine in the field.", + "pos": "noun", + "word_frequency": 6172 + }, + { + "word": "mole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mass;bulk;amount", + "romanization": "mole", + "example_sentence_native": "La mole di lavoro è aumentata.", + "example_sentence_english": "The amount of work has increased.", + "pos": "noun", + "word_frequency": 6173 + }, + { + "word": "montare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to assemble;to mount;to whip", + "romanization": "montare", + "example_sentence_native": "Dobbiamo montare i mobili nuovi.", + "example_sentence_english": "We need to assemble the new furniture.", + "pos": "verb", + "word_frequency": 6174 + }, + { + "word": "nausea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nausea", + "romanization": "nausea", + "example_sentence_native": "Ho sentito una forte sensazione di nausea.", + "example_sentence_english": "I felt a strong sensation of nausea.", + "pos": "noun", + "word_frequency": 6176 + }, + { + "word": "oliva", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "olive", + "romanization": "oliva", + "example_sentence_native": "Mi piacciono le olive nere.", + "example_sentence_english": "I like black olives.", + "pos": "noun", + "word_frequency": 6177 + }, + { + "word": "ostile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hostile", + "romanization": "ostile", + "example_sentence_native": "L'ambiente era molto ostile.", + "example_sentence_english": "The environment was very hostile.", + "pos": "adjective", + "word_frequency": 6178 + }, + { + "word": "ottimista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimistic", + "romanization": "ottimista", + "example_sentence_native": "È sempre stato una persona molto ottimista.", + "example_sentence_english": "He has always been a very optimistic person.", + "pos": "adjective", + "word_frequency": 6179 + }, + { + "word": "palestinese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Palestinian", + "romanization": "palestinese", + "example_sentence_native": "Molti palestinesi vivono in esilio.", + "example_sentence_english": "Many Palestinians live in exile.", + "pos": "noun", + "word_frequency": 6180 + }, + { + "word": "parodia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parody", + "romanization": "parodia", + "example_sentence_native": "Il film era una parodia dei classici horror.", + "example_sentence_english": "The film was a parody of classic horror.", + "pos": "noun", + "word_frequency": 6181 + }, + { + "word": "pirata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pirate", + "romanization": "pirata", + "example_sentence_native": "I pirati attaccavano le navi mercantili.", + "example_sentence_english": "The pirates attacked merchant ships.", + "pos": "noun", + "word_frequency": 6182 + }, + { + "word": "pontefice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pontiff;Pope", + "romanization": "pontefice", + "example_sentence_native": "Il pontefice ha tenuto un discorso importante.", + "example_sentence_english": "The pontiff gave an important speech.", + "pos": "noun", + "word_frequency": 6184 + }, + { + "word": "premiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "awarded;prize-winning", + "romanization": "premiato", + "example_sentence_native": "Il film premiato ha ricevuto ottime recensioni.", + "example_sentence_english": "The awarded film received excellent reviews.", + "pos": "adjective", + "word_frequency": 6185 + }, + { + "word": "preoccupante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worrying;concerning", + "romanization": "preoccupante", + "example_sentence_native": "La situazione economica è preoccupante.", + "example_sentence_english": "The economic situation is worrying.", + "pos": "adjective", + "word_frequency": 6186 + }, + { + "word": "programmato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programmed;scheduled", + "romanization": "programmato", + "example_sentence_native": "L'incontro è programmato per domani.", + "example_sentence_english": "The meeting is scheduled for tomorrow.", + "pos": "adjective", + "word_frequency": 6187 + }, + { + "word": "progressivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive", + "romanization": "progressivo", + "example_sentence_native": "Abbiamo bisogno di un cambiamento progressivo.", + "example_sentence_english": "We need a progressive change.", + "pos": "adjective", + "word_frequency": 6188 + }, + { + "word": "prontamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promptly;readily", + "romanization": "prontamente", + "example_sentence_native": "Ha risposto prontamente alla mia domanda.", + "example_sentence_english": "He promptly answered my question.", + "pos": "adverb", + "word_frequency": 6189 + }, + { + "word": "restituzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "return;restitution", + "romanization": "restituzione", + "example_sentence_native": "Ho chiesto la restituzione del denaro.", + "example_sentence_english": "I asked for the return of the money.", + "pos": "noun", + "word_frequency": 6191 + }, + { + "word": "ricavato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proceeds;profit", + "romanization": "ricavato", + "example_sentence_native": "Il ricavato della vendita andrà in beneficenza.", + "example_sentence_english": "The proceeds from the sale will go to charity.", + "pos": "noun", + "word_frequency": 6192 + }, + { + "word": "ripetizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repetition;tutoring session", + "romanization": "ripetizione", + "example_sentence_native": "La ripetizione è la madre dell'apprendimento.", + "example_sentence_english": "Repetition is the mother of learning.", + "pos": "noun", + "word_frequency": 6193 + }, + { + "word": "rivale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rival", + "romanization": "rivale", + "example_sentence_native": "Ha sconfitto il suo rivale in finale.", + "example_sentence_english": "He defeated his rival in the final.", + "pos": "noun", + "word_frequency": 6194 + }, + { + "word": "scacco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "check (in chess);defeat", + "romanization": "scacco", + "example_sentence_native": "Il re è sotto scacco.", + "example_sentence_english": "The king is in check.", + "pos": "noun", + "word_frequency": 6195 + }, + { + "word": "segmento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "segment", + "romanization": "segmento", + "example_sentence_native": "Questo è un segmento importante del mercato.", + "example_sentence_english": "This is an important market segment.", + "pos": "noun", + "word_frequency": 6197 + }, + { + "word": "settecento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eighteenth century;seven hundred", + "romanization": "settecento", + "example_sentence_native": "L'illuminismo fiorì nel Settecento.", + "example_sentence_english": "The Enlightenment flourished in the eighteenth century.", + "pos": "noun", + "word_frequency": 6198 + }, + { + "word": "soft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft", + "romanization": "soft", + "example_sentence_native": "Preferisco una luce soft per la lettura.", + "example_sentence_english": "I prefer a soft light for reading.", + "pos": "adjective", + "word_frequency": 6201 + }, + { + "word": "soppressione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suppression;abolition", + "romanization": "soppressione", + "example_sentence_native": "La soppressione della protesta è stata violenta.", + "example_sentence_english": "The suppression of the protest was violent.", + "pos": "noun", + "word_frequency": 6202 + }, + { + "word": "sperimentare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to experiment;to experience", + "romanization": "sperimentare", + "example_sentence_native": "Voglio sperimentare nuove ricette in cucina.", + "example_sentence_english": "I want to experiment with new recipes in the kitchen.", + "pos": "verb", + "word_frequency": 6205 + }, + { + "word": "tagliato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cut;tailored", + "romanization": "tagliato", + "example_sentence_native": "Questo vestito è tagliato perfettamente per te.", + "example_sentence_english": "This dress is perfectly tailored for you.", + "pos": "adjective", + "word_frequency": 6206 + }, + { + "word": "tavolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small table;coffee table", + "romanization": "tavolino", + "example_sentence_native": "Ho appoggiato il libro sul tavolino.", + "example_sentence_english": "I put the book on the small table.", + "pos": "noun", + "word_frequency": 6207 + }, + { + "word": "tifo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheering;support", + "romanization": "tifo", + "example_sentence_native": "Il tifo dei tifosi era assordante.", + "example_sentence_english": "The fans' cheering was deafening.", + "pos": "noun", + "word_frequency": 6208 + }, + { + "word": "topo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mouse;rat", + "romanization": "topo", + "example_sentence_native": "C'è un topo in cantina.", + "example_sentence_english": "There's a mouse in the cellar.", + "pos": "noun", + "word_frequency": 6210 + }, + { + "word": "triplo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triple", + "romanization": "triplo", + "example_sentence_native": "Ha pagato il triplo del prezzo originale.", + "example_sentence_english": "He paid triple the original price.", + "pos": "adjective", + "word_frequency": 6211 + }, + { + "word": "tronco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk;log", + "romanization": "tronco", + "example_sentence_native": "Il tronco dell'albero era molto spesso.", + "example_sentence_english": "The tree trunk was very thick.", + "pos": "noun", + "word_frequency": 6212 + }, + { + "word": "allegato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attachment;enclosure", + "romanization": "allegato", + "example_sentence_native": "Ho inviato il documento come allegato.", + "example_sentence_english": "I sent the document as an attachment.", + "pos": "noun", + "word_frequency": 6214 + }, + { + "word": "appoggiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leaning;supported", + "romanization": "appoggiato", + "example_sentence_native": "La scala era appoggiata al muro.", + "example_sentence_english": "The ladder was leaning against the wall.", + "pos": "adjective", + "word_frequency": 6217 + }, + { + "word": "austriaco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Austrian", + "romanization": "austriaco", + "example_sentence_native": "È un pittore austriaco molto famoso.", + "example_sentence_english": "He is a very famous Austrian painter.", + "pos": "adjective", + "word_frequency": 6219 + }, + { + "word": "bastardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bastard;scoundrel", + "romanization": "bastardo", + "example_sentence_native": "Quel bastardo mi ha rubato il portafoglio!", + "example_sentence_english": "That bastard stole my wallet!", + "pos": "noun", + "word_frequency": 6221 + }, + { + "word": "brivido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shiver;thrill", + "romanization": "brivido", + "example_sentence_native": "Ho sentito un brivido lungo la schiena.", + "example_sentence_english": "I felt a shiver down my spine.", + "pos": "noun", + "word_frequency": 6223 + }, + { + "word": "bufala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buffalo (female);hoax;fake news", + "romanization": "bufala", + "example_sentence_native": "Quella notizia era una bufala.", + "example_sentence_english": "That news was a hoax.", + "pos": "noun", + "word_frequency": 6225 + }, + { + "word": "calmo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calm;quiet", + "romanization": "calmo", + "example_sentence_native": "Rimani calmo, non c'è nulla di cui preoccuparsi.", + "example_sentence_english": "Stay calm, there's nothing to worry about.", + "pos": "adjective", + "word_frequency": 6226 + }, + { + "word": "ceco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Czech", + "romanization": "ceco", + "example_sentence_native": "Ha visitato la Repubblica Ceca.", + "example_sentence_english": "He visited the Czech Republic.", + "pos": "adjective", + "word_frequency": 6227 + }, + { + "word": "cenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ash;ashes", + "romanization": "cenere", + "example_sentence_native": "Le ceneri del fuoco erano ancora calde.", + "example_sentence_english": "The ashes of the fire were still warm.", + "pos": "noun", + "word_frequency": 6228 + }, + { + "word": "cerchia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circle;sphere (of influence)", + "romanization": "cerchia", + "example_sentence_native": "Fa parte di una ristretta cerchia di amici.", + "example_sentence_english": "He is part of a small circle of friends.", + "pos": "noun", + "word_frequency": 6229 + }, + { + "word": "chiarito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarified;cleared up", + "romanization": "chiarito", + "example_sentence_native": "La situazione è stata finalmente chiarita.", + "example_sentence_english": "The situation has finally been clarified.", + "pos": "adjective", + "word_frequency": 6231 + }, + { + "word": "chic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chic;stylish", + "romanization": "chic", + "example_sentence_native": "Ha un look molto chic.", + "example_sentence_english": "She has a very chic look.", + "pos": "adjective", + "word_frequency": 6232 + }, + { + "word": "cipolla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "onion", + "romanization": "cipolla", + "example_sentence_native": "Mi fanno lacrimare gli occhi le cipolle.", + "example_sentence_english": "Onions make my eyes water.", + "pos": "noun", + "word_frequency": 6233 + }, + { + "word": "circostante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrounding;ambient", + "romanization": "circostante", + "example_sentence_native": "Abbiamo esplorato l'area circostante.", + "example_sentence_english": "We explored the surrounding area.", + "pos": "adjective", + "word_frequency": 6234 + }, + { + "word": "cocktail", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cocktail", + "romanization": "cocktail", + "example_sentence_native": "Ordiniamo un cocktail al bar.", + "example_sentence_english": "Let's order a cocktail at the bar.", + "pos": "noun", + "word_frequency": 6235 + }, + { + "word": "collocato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placed;located", + "romanization": "collocato", + "example_sentence_native": "Il museo è collocato nel centro storico.", + "example_sentence_english": "The museum is located in the historic center.", + "pos": "adjective", + "word_frequency": 6236 + }, + { + "word": "completamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completion;fulfillment", + "romanization": "completamento", + "example_sentence_native": "Il completamento del progetto è previsto per giugno.", + "example_sentence_english": "The completion of the project is scheduled for June.", + "pos": "noun", + "word_frequency": 6237 + }, + { + "word": "consultazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultation;reference", + "romanization": "consultazione", + "example_sentence_native": "Ho bisogno di una consultazione con il medico.", + "example_sentence_english": "I need a consultation with the doctor.", + "pos": "noun", + "word_frequency": 6238 + }, + { + "word": "contenitore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container", + "romanization": "contenitore", + "example_sentence_native": "Metti i rifiuti nel contenitore apposito.", + "example_sentence_english": "Put the waste in the appropriate container.", + "pos": "noun", + "word_frequency": 6239 + }, + { + "word": "coso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thingamajig", + "romanization": "coso", + "example_sentence_native": "Passami quel coso, per favore.", + "example_sentence_english": "Pass me that thingy, please.", + "pos": "noun", + "word_frequency": 6240 + }, + { + "word": "cucciolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puppy", + "romanization": "cucciolo", + "example_sentence_native": "Il cucciolo dormiva nella sua cuccia.", + "example_sentence_english": "The puppy was sleeping in its kennel.", + "pos": "noun", + "word_frequency": 6241 + }, + { + "word": "delirio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delirium", + "romanization": "delirio", + "example_sentence_native": "La folla era in delirio dopo il concerto.", + "example_sentence_english": "The crowd was in a frenzy after the concert.", + "pos": "noun", + "word_frequency": 6243 + }, + { + "word": "disciplinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discipline", + "romanization": "disciplinare", + "example_sentence_native": "È importante disciplinare i bambini con amore.", + "example_sentence_english": "It's important to discipline children with love.", + "pos": "verb", + "word_frequency": 6244 + }, + { + "word": "divertito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "amused", + "romanization": "divertito", + "example_sentence_native": "Era molto divertito dalla commedia.", + "example_sentence_english": "He was very amused by the comedy.", + "pos": "adjective", + "word_frequency": 6245 + }, + { + "word": "ebook", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ebook", + "romanization": "ebook", + "example_sentence_native": "Leggo molti ebook sul mio tablet.", + "example_sentence_english": "I read many ebooks on my tablet.", + "pos": "noun", + "word_frequency": 6247 + }, + { + "word": "epidemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epidemic", + "romanization": "epidemia", + "example_sentence_native": "L'epidemia si è diffusa rapidamente.", + "example_sentence_english": "The epidemic spread rapidly.", + "pos": "noun", + "word_frequency": 6249 + }, + { + "word": "eseguito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "performed", + "romanization": "eseguito", + "example_sentence_native": "Il lavoro è stato eseguito con precisione.", + "example_sentence_english": "The work was performed with precision.", + "pos": "adjective", + "word_frequency": 6250 + }, + { + "word": "esplorazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploration", + "romanization": "esplorazione", + "example_sentence_native": "L'esplorazione spaziale è affascinante.", + "example_sentence_english": "Space exploration is fascinating.", + "pos": "noun", + "word_frequency": 6251 + }, + { + "word": "estetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aesthetic", + "romanization": "estetico", + "example_sentence_native": "Ha un grande senso estetico.", + "example_sentence_english": "He has a great aesthetic sense.", + "pos": "adjective", + "word_frequency": 6252 + }, + { + "word": "fatturato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turnover", + "romanization": "fatturato", + "example_sentence_native": "Il fatturato dell'azienda è aumentato quest'anno.", + "example_sentence_english": "The company's turnover increased this year.", + "pos": "noun", + "word_frequency": 6253 + }, + { + "word": "frattura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fracture", + "romanization": "frattura", + "example_sentence_native": "Ha subito una frattura al braccio.", + "example_sentence_english": "He suffered a fracture in his arm.", + "pos": "noun", + "word_frequency": 6254 + }, + { + "word": "globalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "globalization", + "romanization": "globalizzazione", + "example_sentence_native": "La globalizzazione ha molti effetti sulla società.", + "example_sentence_english": "Globalization has many effects on society.", + "pos": "noun", + "word_frequency": 6255 + }, + { + "word": "golden", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "golden", + "romanization": "golden", + "example_sentence_native": "Il golden retriever è un cane molto amichevole.", + "example_sentence_english": "The golden retriever is a very friendly dog.", + "pos": "adjective", + "word_frequency": 6256 + }, + { + "word": "impossibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impossibility", + "romanization": "impossibilità", + "example_sentence_native": "Ha riconosciuto l'impossibilità di completare il progetto in tempo.", + "example_sentence_english": "He recognized the impossibility of completing the project on time.", + "pos": "noun", + "word_frequency": 6257 + }, + { + "word": "inutilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uselessly", + "romanization": "inutilmente", + "example_sentence_native": "Ha cercato inutilmente di aprire la porta.", + "example_sentence_english": "He tried uselessly to open the door.", + "pos": "adverb", + "word_frequency": 6258 + }, + { + "word": "legna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "firewood", + "romanization": "legna", + "example_sentence_native": "Abbiamo bisogno di più legna per il camino.", + "example_sentence_english": "We need more firewood for the fireplace.", + "pos": "noun", + "word_frequency": 6260 + }, + { + "word": "liscio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smooth", + "romanization": "liscio", + "example_sentence_native": "Ha i capelli lisci e lunghi.", + "example_sentence_english": "She has long, straight hair.", + "pos": "adjective", + "word_frequency": 6262 + }, + { + "word": "localizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "localization", + "romanization": "localizzazione", + "example_sentence_native": "La localizzazione del telefono è stata utile.", + "example_sentence_english": "The phone's location was useful.", + "pos": "noun", + "word_frequency": 6263 + }, + { + "word": "magistrale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masterful", + "romanization": "magistrale", + "example_sentence_native": "Ha dato una lezione magistrale sull'argomento.", + "example_sentence_english": "He gave a masterful lecture on the topic.", + "pos": "adjective", + "word_frequency": 6265 + }, + { + "word": "mancino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "left-handed person", + "romanization": "mancino", + "example_sentence_native": "Mio fratello è mancino.", + "example_sentence_english": "My brother is left-handed.", + "pos": "noun", + "word_frequency": 6266 + }, + { + "word": "maresciallo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marshal", + "romanization": "maresciallo", + "example_sentence_native": "Il maresciallo ha condotto le indagini.", + "example_sentence_english": "The marshal conducted the investigations.", + "pos": "noun", + "word_frequency": 6267 + }, + { + "word": "mattone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brick", + "romanization": "mattone", + "example_sentence_native": "La casa è costruita con mattoni rossi.", + "example_sentence_english": "The house is built with red bricks.", + "pos": "noun", + "word_frequency": 6268 + }, + { + "word": "meditazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meditation", + "romanization": "meditazione", + "example_sentence_native": "La meditazione aiuta a ridurre lo stress.", + "example_sentence_english": "Meditation helps reduce stress.", + "pos": "noun", + "word_frequency": 6269 + }, + { + "word": "menù", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "menu", + "romanization": "menù", + "example_sentence_native": "Posso avere il menù, per favore?", + "example_sentence_english": "Can I have the menu, please?", + "pos": "noun", + "word_frequency": 6270 + }, + { + "word": "misero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miserable", + "romanization": "misero", + "example_sentence_native": "Viveva in condizioni misere.", + "example_sentence_english": "He lived in wretched conditions.", + "pos": "adjective", + "word_frequency": 6271 + }, + { + "word": "mouse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mouse (computer)", + "romanization": "mouse", + "example_sentence_native": "Il mouse del computer non funziona.", + "example_sentence_english": "The computer mouse is not working.", + "pos": "noun", + "word_frequency": 6274 + }, + { + "word": "nano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dwarf", + "romanization": "nano", + "example_sentence_native": "I sette nani lavoravano in miniera.", + "example_sentence_english": "The seven dwarfs worked in the mine.", + "pos": "noun", + "word_frequency": 6275 + }, + { + "word": "nobiltà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nobility", + "romanization": "nobiltà", + "example_sentence_native": "La nobiltà d'animo è una virtù rara.", + "example_sentence_english": "Nobleness of spirit is a rare virtue.", + "pos": "noun", + "word_frequency": 6277 + }, + { + "word": "opporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppose", + "romanization": "opporre", + "example_sentence_native": "Non ha potuto opporre resistenza.", + "example_sentence_english": "He could not offer resistance.", + "pos": "verb", + "word_frequency": 6278 + }, + { + "word": "osservatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observatory", + "romanization": "osservatorio", + "example_sentence_native": "L'osservatorio astronomico si trova in montagna.", + "example_sentence_english": "The astronomical observatory is located in the mountains.", + "pos": "noun", + "word_frequency": 6279 + }, + { + "word": "percepito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perceived", + "romanization": "percepito", + "example_sentence_native": "Il rischio percepito era molto alto.", + "example_sentence_english": "The perceived risk was very high.", + "pos": "adjective", + "word_frequency": 6280 + }, + { + "word": "radicalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radically", + "romanization": "radicalmente", + "example_sentence_native": "La situazione è cambiata radicalmente.", + "example_sentence_english": "The situation has changed radically.", + "pos": "adverb", + "word_frequency": 6283 + }, + { + "word": "reperto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "find;exhibit;artifact", + "romanization": "reperto", + "example_sentence_native": "Hanno trovato un reperto archeologico importante.", + "example_sentence_english": "They found an important archaeological find.", + "pos": "noun", + "word_frequency": 6284 + }, + { + "word": "repubblicano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "republican (noun)", + "romanization": "repubblicano", + "example_sentence_native": "È un convinto repubblicano.", + "example_sentence_english": "He is a convinced republican.", + "pos": "noun", + "word_frequency": 6285 + }, + { + "word": "resistente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "resistant;durable", + "romanization": "resistente", + "example_sentence_native": "Questo materiale è molto resistente all'acqua.", + "example_sentence_english": "This material is very resistant to water.", + "pos": "adjective", + "word_frequency": 6286 + }, + { + "word": "riempito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filled", + "romanization": "riempito", + "example_sentence_native": "Il bicchiere era riempito d'acqua.", + "example_sentence_english": "The glass was filled with water.", + "pos": "adjective", + "word_frequency": 6287 + }, + { + "word": "rima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhyme", + "romanization": "rima", + "example_sentence_native": "Questa poesia ha una bella rima.", + "example_sentence_english": "This poem has a beautiful rhyme.", + "pos": "noun", + "word_frequency": 6289 + }, + { + "word": "rimandare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to postpone;to send back", + "romanization": "rimandare", + "example_sentence_native": "Dobbiamo rimandare la riunione.", + "example_sentence_english": "We need to postpone the meeting.", + "pos": "verb", + "word_frequency": 6290 + }, + { + "word": "scambiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to exchange;to mistake for", + "romanization": "scambiare", + "example_sentence_native": "Ho scambiato il tuo cappotto con il mio.", + "example_sentence_english": "I exchanged your coat for mine.", + "pos": "verb", + "word_frequency": 6291 + }, + { + "word": "simbolico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolic", + "romanization": "simbolico", + "example_sentence_native": "Il gesto aveva un valore simbolico.", + "example_sentence_english": "The gesture had a symbolic value.", + "pos": "adjective", + "word_frequency": 6293 + }, + { + "word": "sollevare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lift;to raise", + "romanization": "sollevare", + "example_sentence_native": "Ha sollevato la scatola pesante.", + "example_sentence_english": "He lifted the heavy box.", + "pos": "verb", + "word_frequency": 6294 + }, + { + "word": "step", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "step", + "romanization": "step", + "example_sentence_native": "Il prossimo step è la revisione del progetto.", + "example_sentence_english": "The next step is the project review.", + "pos": "noun", + "word_frequency": 6295 + }, + { + "word": "stupore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonishment;amazement", + "romanization": "stupore", + "example_sentence_native": "Guardò la scena con stupore.", + "example_sentence_english": "He looked at the scene with astonishment.", + "pos": "noun", + "word_frequency": 6296 + }, + { + "word": "sufficienza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sufficiency;passing grade", + "romanization": "sufficienza", + "example_sentence_native": "Ha studiato a sufficienza per l'esame.", + "example_sentence_english": "He studied sufficiently for the exam.", + "pos": "noun", + "word_frequency": 6297 + }, + { + "word": "telaio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame;chassis;loom", + "romanization": "telaio", + "example_sentence_native": "Il telaio della bicicletta è in alluminio.", + "example_sentence_english": "The bicycle frame is made of aluminum.", + "pos": "noun", + "word_frequency": 6298 + }, + { + "word": "tonno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tuna", + "romanization": "tonno", + "example_sentence_native": "Mi piace l'insalata di tonno.", + "example_sentence_english": "I like tuna salad.", + "pos": "noun", + "word_frequency": 6299 + }, + { + "word": "vacca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cow", + "romanization": "vacca", + "example_sentence_native": "La vacca pascolava nel prato.", + "example_sentence_english": "The cow was grazing in the meadow.", + "pos": "noun", + "word_frequency": 6300 + }, + { + "word": "vegetazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegetation", + "romanization": "vegetazione", + "example_sentence_native": "La vegetazione è molto fitta in questa zona.", + "example_sentence_english": "The vegetation is very dense in this area.", + "pos": "noun", + "word_frequency": 6302 + }, + { + "word": "yoga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yoga", + "romanization": "yoga", + "example_sentence_native": "Faccio yoga ogni mattina.", + "example_sentence_english": "I do yoga every morning.", + "pos": "noun", + "word_frequency": 6304 + }, + { + "word": "aderente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member;supporter", + "romanization": "aderente", + "example_sentence_native": "È un aderente del partito.", + "example_sentence_english": "He is a member of the party.", + "pos": "noun", + "word_frequency": 6306 + }, + { + "word": "allontanare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move away;to distance", + "romanization": "allontanare", + "example_sentence_native": "Dobbiamo allontanare i bambini dal pericolo.", + "example_sentence_english": "We need to move the children away from danger.", + "pos": "verb", + "word_frequency": 6308 + }, + { + "word": "apparso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appeared", + "romanization": "apparso", + "example_sentence_native": "L'uomo apparso all'improvviso era sconosciuto.", + "example_sentence_english": "The man who appeared suddenly was unknown.", + "pos": "adjective", + "word_frequency": 6310 + }, + { + "word": "appreso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "learned;acquired", + "romanization": "appreso", + "example_sentence_native": "Le conoscenze apprese sono fondamentali.", + "example_sentence_english": "The acquired knowledge is fundamental.", + "pos": "adjective", + "word_frequency": 6311 + }, + { + "word": "asso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ace", + "romanization": "asso", + "example_sentence_native": "È un asso nel tennis.", + "example_sentence_english": "He is an ace at tennis.", + "pos": "noun", + "word_frequency": 6312 + }, + { + "word": "australiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Australian", + "romanization": "australiano", + "example_sentence_native": "Il canguro è un animale australiano.", + "example_sentence_english": "The kangaroo is an Australian animal.", + "pos": "adjective", + "word_frequency": 6314 + }, + { + "word": "bagaglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luggage;baggage", + "romanization": "bagaglio", + "example_sentence_native": "Ho perso il mio bagaglio all'aeroporto.", + "example_sentence_english": "I lost my luggage at the airport.", + "pos": "noun", + "word_frequency": 6315 + }, + { + "word": "cacca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "poop;poo", + "romanization": "cacca", + "example_sentence_native": "Il cane ha fatto la cacca in giardino.", + "example_sentence_english": "The dog pooped in the garden.", + "pos": "noun", + "word_frequency": 6318 + }, + { + "word": "consumare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consume;to use up", + "romanization": "consumare", + "example_sentence_native": "Dobbiamo consumare meno energia.", + "example_sentence_english": "We must consume less energy.", + "pos": "verb", + "word_frequency": 6320 + }, + { + "word": "dama", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lady;queen (in chess;checkers)", + "romanization": "dama", + "example_sentence_native": "La dama bianca si mosse sulla scacchiera.", + "example_sentence_english": "The white queen moved on the chessboard.", + "pos": "noun", + "word_frequency": 6321 + }, + { + "word": "divulgazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissemination;popularization", + "romanization": "divulgazione", + "example_sentence_native": "La divulgazione scientifica è molto importante.", + "example_sentence_english": "Scientific popularization is very important.", + "pos": "noun", + "word_frequency": 6322 + }, + { + "word": "dominare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dominate;to control", + "romanization": "dominare", + "example_sentence_native": "La squadra ha dominato la partita.", + "example_sentence_english": "The team dominated the match.", + "pos": "verb", + "word_frequency": 6323 + }, + { + "word": "elite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elite", + "romanization": "elite", + "example_sentence_native": "Solo una piccola élite ha accesso a queste informazioni.", + "example_sentence_english": "Only a small elite has access to this information.", + "pos": "noun", + "word_frequency": 6327 + }, + { + "word": "falsità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "falsehood;falsity", + "romanization": "falsità", + "example_sentence_native": "Non sopporto la falsità nelle persone.", + "example_sentence_english": "I can't stand falsehood in people.", + "pos": "noun", + "word_frequency": 6329 + }, + { + "word": "farsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farce", + "romanization": "farsa", + "example_sentence_native": "Tutta la situazione si è rivelata una farsa.", + "example_sentence_english": "The whole situation turned out to be a farce.", + "pos": "noun", + "word_frequency": 6330 + }, + { + "word": "filiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch (of a company;bank)", + "romanization": "filiale", + "example_sentence_native": "La banca ha aperto una nuova filiale in centro.", + "example_sentence_english": "The bank opened a new branch downtown.", + "pos": "noun", + "word_frequency": 6331 + }, + { + "word": "fossile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fossil", + "romanization": "fossile", + "example_sentence_native": "Hanno scoperto un nuovo fossile di dinosauro.", + "example_sentence_english": "They discovered a new dinosaur fossil.", + "pos": "noun", + "word_frequency": 6332 + }, + { + "word": "galla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gall (plant growth);float (in 'a galla')", + "romanization": "galla", + "example_sentence_native": "Il legno galleggia e rimane a galla sull'acqua.", + "example_sentence_english": "Wood floats and stays afloat on the water.", + "pos": "noun", + "word_frequency": 6333 + }, + { + "word": "geometria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "geometry", + "romanization": "geometria", + "example_sentence_native": "La geometria è una branca della matematica.", + "example_sentence_english": "Geometry is a branch of mathematics.", + "pos": "noun", + "word_frequency": 6334 + }, + { + "word": "gratitudine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gratitude", + "romanization": "gratitudine", + "example_sentence_native": "Ha espresso la sua profonda gratitudine.", + "example_sentence_english": "He expressed his deep gratitude.", + "pos": "noun", + "word_frequency": 6336 + }, + { + "word": "indotto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "induced;related (e.g.;related industries)", + "romanization": "indotto", + "example_sentence_native": "L'industria automobilistica ha un forte indotto.", + "example_sentence_english": "The automotive industry has a strong related industry.", + "pos": "adjective", + "word_frequency": 6338 + }, + { + "word": "iniezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injection", + "romanization": "iniezione", + "example_sentence_native": "Ha dovuto fare un'iniezione.", + "example_sentence_english": "He had to get an injection.", + "pos": "noun", + "word_frequency": 6339 + }, + { + "word": "innocenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innocence", + "romanization": "innocenza", + "example_sentence_native": "La sua innocenza è stata provata.", + "example_sentence_english": "His innocence was proven.", + "pos": "noun", + "word_frequency": 6340 + }, + { + "word": "inserimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insertion;inclusion;integration", + "romanization": "inserimento", + "example_sentence_native": "L'inserimento dei dati richiede precisione.", + "example_sentence_english": "Data insertion requires precision.", + "pos": "noun", + "word_frequency": 6341 + }, + { + "word": "instabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unstable", + "romanization": "instabile", + "example_sentence_native": "La situazione politica è molto instabile.", + "example_sentence_english": "The political situation is very unstable.", + "pos": "adjective", + "word_frequency": 6342 + }, + { + "word": "insultare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to insult", + "romanization": "insultare", + "example_sentence_native": "Non dovresti mai insultare nessuno.", + "example_sentence_english": "You should never insult anyone.", + "pos": "verb", + "word_frequency": 6343 + }, + { + "word": "interfaccia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interface", + "romanization": "interfaccia", + "example_sentence_native": "L'interfaccia utente è molto intuitiva.", + "example_sentence_english": "The user interface is very intuitive.", + "pos": "noun", + "word_frequency": 6344 + }, + { + "word": "invano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in vain", + "romanization": "invano", + "example_sentence_native": "Tutti i suoi sforzi furono invano.", + "example_sentence_english": "All his efforts were in vain.", + "pos": "adverb", + "word_frequency": 6345 + }, + { + "word": "luminoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bright;luminous", + "romanization": "luminoso", + "example_sentence_native": "La stanza è molto luminosa.", + "example_sentence_english": "The room is very bright.", + "pos": "adjective", + "word_frequency": 6350 + }, + { + "word": "matematico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mathematical", + "romanization": "matematico", + "example_sentence_native": "Ha un approccio molto matematico ai problemi.", + "example_sentence_english": "He has a very mathematical approach to problems.", + "pos": "adjective", + "word_frequency": 6351 + }, + { + "word": "mediamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on average;averagely", + "romanization": "mediamente", + "example_sentence_native": "Mediamente, ci vogliono due ore per arrivare.", + "example_sentence_english": "On average, it takes two hours to get there.", + "pos": "adverb", + "word_frequency": 6352 + }, + { + "word": "musical", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "musical (theatre)", + "romanization": "musical", + "example_sentence_native": "Siamo andati a vedere un musical a teatro.", + "example_sentence_english": "We went to see a musical at the theatre.", + "pos": "noun", + "word_frequency": 6354 + }, + { + "word": "negazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negation;denial", + "romanization": "negazione", + "example_sentence_native": "La sua risposta è stata una chiara negazione.", + "example_sentence_english": "His answer was a clear denial.", + "pos": "noun", + "word_frequency": 6356 + }, + { + "word": "orizzonte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizon", + "romanization": "orizzonte", + "example_sentence_native": "Il sole stava tramontando all'orizzonte.", + "example_sentence_english": "The sun was setting on the horizon.", + "pos": "noun", + "word_frequency": 6358 + }, + { + "word": "panda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "panda", + "romanization": "panda", + "example_sentence_native": "Il panda è un animale molto amato.", + "example_sentence_english": "The panda is a much-loved animal.", + "pos": "noun", + "word_frequency": 6360 + }, + { + "word": "peggiorare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to worsen", + "romanization": "peggiorare", + "example_sentence_native": "La situazione economica sta peggiorando.", + "example_sentence_english": "The economic situation is worsening.", + "pos": "verb", + "word_frequency": 6363 + }, + { + "word": "perdonare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to forgive", + "romanization": "perdonare", + "example_sentence_native": "Ti prego di perdonarmi.", + "example_sentence_english": "Please forgive me.", + "pos": "verb", + "word_frequency": 6364 + }, + { + "word": "precedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to precede", + "romanization": "precedere", + "example_sentence_native": "L'introduzione precede il corpo del testo.", + "example_sentence_english": "The introduction precedes the body of the text.", + "pos": "verb", + "word_frequency": 6366 + }, + { + "word": "pretesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claim", + "romanization": "pretesa", + "example_sentence_native": "Ha una pretesa eccessiva sul suo tempo.", + "example_sentence_english": "He has an excessive claim on his time.", + "pos": "noun", + "word_frequency": 6367 + }, + { + "word": "retribuzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remuneration", + "romanization": "retribuzione", + "example_sentence_native": "La retribuzione per questo lavoro è buona.", + "example_sentence_english": "The remuneration for this job is good.", + "pos": "noun", + "word_frequency": 6369 + }, + { + "word": "revoca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revocation", + "romanization": "revoca", + "example_sentence_native": "La revoca della licenza è stata immediata.", + "example_sentence_english": "The revocation of the license was immediate.", + "pos": "noun", + "word_frequency": 6370 + }, + { + "word": "ricovero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitalization", + "romanization": "ricovero", + "example_sentence_native": "Ha avuto bisogno di un ricovero urgente.", + "example_sentence_english": "He needed urgent hospitalization.", + "pos": "noun", + "word_frequency": 6371 + }, + { + "word": "rinnovabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renewable", + "romanization": "rinnovabile", + "example_sentence_native": "Le energie rinnovabili sono importanti per il futuro.", + "example_sentence_english": "Renewable energies are important for the future.", + "pos": "adjective", + "word_frequency": 6372 + }, + { + "word": "round", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "round", + "romanization": "round", + "example_sentence_native": "Il primo round del dibattito è stato intenso.", + "example_sentence_english": "The first round of the debate was intense.", + "pos": "noun", + "word_frequency": 6373 + }, + { + "word": "sarcasmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcasm", + "romanization": "sarcasmo", + "example_sentence_native": "Il suo sarcasmo era difficile da sopportare.", + "example_sentence_english": "His sarcasm was difficult to bear.", + "pos": "noun", + "word_frequency": 6374 + }, + { + "word": "sceneggiatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screenplay", + "romanization": "sceneggiatura", + "example_sentence_native": "La sceneggiatura del film è stata premiata.", + "example_sentence_english": "The film's screenplay was awarded.", + "pos": "noun", + "word_frequency": 6375 + }, + { + "word": "sciogliere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to melt", + "romanization": "sciogliere", + "example_sentence_native": "Il ghiaccio si scioglie al sole.", + "example_sentence_english": "The ice melts in the sun.", + "pos": "verb", + "word_frequency": 6376 + }, + { + "word": "sistematico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "systematic", + "romanization": "sistematico", + "example_sentence_native": "Ha un approccio molto sistematico al lavoro.", + "example_sentence_english": "He has a very systematic approach to work.", + "pos": "adjective", + "word_frequency": 6378 + }, + { + "word": "spray", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spray", + "romanization": "spray", + "example_sentence_native": "Ho comprato uno spray per i capelli.", + "example_sentence_english": "I bought a hair spray.", + "pos": "noun", + "word_frequency": 6380 + }, + { + "word": "stimolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulus", + "romanization": "stimolo", + "example_sentence_native": "Ha bisogno di uno stimolo per iniziare.", + "example_sentence_english": "He needs a stimulus to start.", + "pos": "noun", + "word_frequency": 6381 + }, + { + "word": "stupire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to amaze", + "romanization": "stupire", + "example_sentence_native": "La sua bravura mi ha stupito.", + "example_sentence_english": "His skill amazed me.", + "pos": "verb", + "word_frequency": 6383 + }, + { + "word": "tematico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thematic", + "romanization": "tematico", + "example_sentence_native": "La mostra ha un percorso tematico.", + "example_sentence_english": "The exhibition has a thematic path.", + "pos": "adjective", + "word_frequency": 6384 + }, + { + "word": "transazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transaction", + "romanization": "transazione", + "example_sentence_native": "La transazione è stata completata con successo.", + "example_sentence_english": "The transaction was completed successfully.", + "pos": "noun", + "word_frequency": 6387 + }, + { + "word": "vano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "futile", + "romanization": "vano", + "example_sentence_native": "Ogni tentativo è stato vano.", + "example_sentence_english": "Every attempt was futile.", + "pos": "adjective", + "word_frequency": 6389 + }, + { + "word": "vetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peak", + "romanization": "vetta", + "example_sentence_native": "Hanno raggiunto la vetta della montagna.", + "example_sentence_english": "They reached the peak of the mountain.", + "pos": "noun", + "word_frequency": 6390 + }, + { + "word": "abile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "able", + "romanization": "abile", + "example_sentence_native": "È un artigiano molto abile.", + "example_sentence_english": "He is a very skilled craftsman.", + "pos": "adjective", + "word_frequency": 6394 + }, + { + "word": "ammirazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admiration", + "romanization": "ammirazione", + "example_sentence_native": "Ho grande ammirazione per il suo lavoro.", + "example_sentence_english": "I have great admiration for his work.", + "pos": "noun", + "word_frequency": 6395 + }, + { + "word": "aperitivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aperitif", + "romanization": "aperitivo", + "example_sentence_native": "Andiamo a fare un aperitivo prima di cena.", + "example_sentence_english": "Let's go for an aperitif before dinner.", + "pos": "noun", + "word_frequency": 6396 + }, + { + "word": "appoggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lean", + "romanization": "appoggiare", + "example_sentence_native": "Puoi appoggiare la borsa qui.", + "example_sentence_english": "You can lean the bag here.", + "pos": "verb", + "word_frequency": 6397 + }, + { + "word": "artigiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "craftsman", + "romanization": "artigiano", + "example_sentence_native": "L'artigiano ha creato un bellissimo oggetto.", + "example_sentence_english": "The craftsman created a beautiful object.", + "pos": "noun", + "word_frequency": 6398 + }, + { + "word": "atletica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletics", + "romanization": "atletica", + "example_sentence_native": "Mi piace guardare le gare di atletica.", + "example_sentence_english": "I like watching athletics competitions.", + "pos": "noun", + "word_frequency": 6399 + }, + { + "word": "bollo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stamp;tax", + "romanization": "bollo", + "example_sentence_native": "Devi mettere un bollo sulla lettera prima di spedirla.", + "example_sentence_english": "You need to put a stamp on the letter before sending it.", + "pos": "noun", + "word_frequency": 6402 + }, + { + "word": "brodo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broth", + "romanization": "brodo", + "example_sentence_native": "Ho preparato un brodo caldo per la cena.", + "example_sentence_english": "I prepared a hot broth for dinner.", + "pos": "noun", + "word_frequency": 6403 + }, + { + "word": "cera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wax;polish", + "romanization": "cera", + "example_sentence_native": "La candela è fatta di cera d'api.", + "example_sentence_english": "The candle is made of beeswax.", + "pos": "noun", + "word_frequency": 6404 + }, + { + "word": "chip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chip", + "romanization": "chip", + "example_sentence_native": "Il nuovo telefono ha un chip molto potente.", + "example_sentence_english": "The new phone has a very powerful chip.", + "pos": "noun", + "word_frequency": 6405 + }, + { + "word": "coincidere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coincide", + "romanization": "coincidere", + "example_sentence_native": "Le nostre opinioni spesso coincidono.", + "example_sentence_english": "Our opinions often coincide.", + "pos": "verb", + "word_frequency": 6406 + }, + { + "word": "collasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse", + "romanization": "collasso", + "example_sentence_native": "L'edificio è a rischio di collasso dopo il terremoto.", + "example_sentence_english": "The building is at risk of collapse after the earthquake.", + "pos": "noun", + "word_frequency": 6407 + }, + { + "word": "compimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "completion;fulfillment", + "romanization": "compimento", + "example_sentence_native": "Ha lavorato duramente per il compimento del progetto.", + "example_sentence_english": "He worked hard for the completion of the project.", + "pos": "noun", + "word_frequency": 6408 + }, + { + "word": "confessare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confess", + "romanization": "confessare", + "example_sentence_native": "Ha deciso di confessare la verità.", + "example_sentence_english": "He decided to confess the truth.", + "pos": "verb", + "word_frequency": 6409 + }, + { + "word": "confondere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confuse;to mix up", + "romanization": "confondere", + "example_sentence_native": "Non confondere i miei appunti con i tuoi.", + "example_sentence_english": "Don't confuse my notes with yours.", + "pos": "verb", + "word_frequency": 6410 + }, + { + "word": "contrattuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contractual", + "romanization": "contrattuale", + "example_sentence_native": "Ci sono clausole contrattuali da rispettare.", + "example_sentence_english": "There are contractual clauses to respect.", + "pos": "adjective", + "word_frequency": 6411 + }, + { + "word": "convenienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convenience;advantage", + "romanization": "convenienza", + "example_sentence_native": "Abbiamo comprato il prodotto per la sua convenienza economica.", + "example_sentence_english": "We bought the product for its economic convenience.", + "pos": "noun", + "word_frequency": 6412 + }, + { + "word": "crudo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raw;crude", + "romanization": "crudo", + "example_sentence_native": "Preferisco mangiare le verdure crude.", + "example_sentence_english": "I prefer to eat raw vegetables.", + "pos": "adjective", + "word_frequency": 6413 + }, + { + "word": "delegato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegate;representative", + "romanization": "delegato", + "example_sentence_native": "Il delegato ha presentato la proposta al consiglio.", + "example_sentence_english": "The delegate presented the proposal to the council.", + "pos": "noun", + "word_frequency": 6416 + }, + { + "word": "devastante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devastating", + "romanization": "devastante", + "example_sentence_native": "L'uragano ha avuto un effetto devastante sulla città.", + "example_sentence_english": "The hurricane had a devastating effect on the city.", + "pos": "adjective", + "word_frequency": 6418 + }, + { + "word": "educare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to educate;to raise", + "romanization": "educare", + "example_sentence_native": "È importante educare i bambini al rispetto.", + "example_sentence_english": "It's important to educate children about respect.", + "pos": "verb", + "word_frequency": 6420 + }, + { + "word": "entusiasta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enthusiastic", + "romanization": "entusiasta", + "example_sentence_native": "Era molto entusiasta del nuovo progetto.", + "example_sentence_english": "He was very enthusiastic about the new project.", + "pos": "adjective", + "word_frequency": 6423 + }, + { + "word": "espellere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to expel;to eject", + "romanization": "espellere", + "example_sentence_native": "Lo studente è stato espulso dalla scuola per cattiva condotta.", + "example_sentence_english": "The student was expelled from school for misconduct.", + "pos": "verb", + "word_frequency": 6424 + }, + { + "word": "fidare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trust;to confide", + "romanization": "fidare", + "example_sentence_native": "Non è facile fidarsi di tutti.", + "example_sentence_english": "It's not easy to trust everyone.", + "pos": "verb", + "word_frequency": 6426 + }, + { + "word": "furbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cunning;clever", + "romanization": "furbo", + "example_sentence_native": "È un ragazzo molto furbo, trova sempre una soluzione.", + "example_sentence_english": "He's a very clever boy, he always finds a solution.", + "pos": "adjective", + "word_frequency": 6427 + }, + { + "word": "guanto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "glove", + "romanization": "guanto", + "example_sentence_native": "Ho perso un guanto mentre camminavo.", + "example_sentence_english": "I lost a glove while walking.", + "pos": "noun", + "word_frequency": 6429 + }, + { + "word": "guarire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to heal;to recover", + "romanization": "guarire", + "example_sentence_native": "Spero che tu possa guarire presto.", + "example_sentence_english": "I hope you can recover soon.", + "pos": "verb", + "word_frequency": 6430 + }, + { + "word": "idoneo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suitable;eligible", + "romanization": "idoneo", + "example_sentence_native": "Non è idoneo per questo ruolo.", + "example_sentence_english": "He is not suitable for this role.", + "pos": "adjective", + "word_frequency": 6431 + }, + { + "word": "illustrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illustration", + "romanization": "illustrazione", + "example_sentence_native": "Il libro è pieno di bellissime illustrazioni.", + "example_sentence_english": "The book is full of beautiful illustrations.", + "pos": "noun", + "word_frequency": 6432 + }, + { + "word": "inclusione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inclusion", + "romanization": "inclusione", + "example_sentence_native": "La scuola promuove l'inclusione di tutti gli studenti.", + "example_sentence_english": "The school promotes the inclusion of all students.", + "pos": "noun", + "word_frequency": 6433 + }, + { + "word": "indovinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guess", + "romanization": "indovinare", + "example_sentence_native": "Prova a indovinare la mia età.", + "example_sentence_english": "Try to guess my age.", + "pos": "verb", + "word_frequency": 6434 + }, + { + "word": "intelligence", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intelligence", + "romanization": "intelligence", + "example_sentence_native": "L'agenzia di intelligence ha raccolto nuove informazioni.", + "example_sentence_english": "The intelligence agency gathered new information.", + "pos": "noun", + "word_frequency": 6435 + }, + { + "word": "lucido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shiny;clear;lucid", + "romanization": "lucido", + "example_sentence_native": "La superficie del tavolo è molto lucida.", + "example_sentence_english": "The table surface is very shiny.", + "pos": "adjective", + "word_frequency": 6440 + }, + { + "word": "militante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militant;activist", + "romanization": "militante", + "example_sentence_native": "Era un militante attivo nel movimento per i diritti civili.", + "example_sentence_english": "He was an active militant in the civil rights movement.", + "pos": "noun", + "word_frequency": 6441 + }, + { + "word": "offendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to offend;to insult", + "romanization": "offendere", + "example_sentence_native": "Non volevo offendere nessuno con le mie parole.", + "example_sentence_english": "I didn't want to offend anyone with my words.", + "pos": "verb", + "word_frequency": 6447 + }, + { + "word": "organizzatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organizer", + "romanization": "organizzatore", + "example_sentence_native": "L'organizzatore dell'evento ha fatto un ottimo lavoro.", + "example_sentence_english": "The event organizer did a great job.", + "pos": "noun", + "word_frequency": 6448 + }, + { + "word": "orto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetable garden;kitchen garden", + "romanization": "orto", + "example_sentence_native": "Coltiviamo verdure fresche nel nostro orto.", + "example_sentence_english": "We grow fresh vegetables in our garden.", + "pos": "noun", + "word_frequency": 6449 + }, + { + "word": "patriarca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarch", + "romanization": "patriarca", + "example_sentence_native": "Il nonno era il patriarca della famiglia.", + "example_sentence_english": "The grandfather was the patriarch of the family.", + "pos": "noun", + "word_frequency": 6450 + }, + { + "word": "pazzia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madness;insanity", + "romanization": "pazzia", + "example_sentence_native": "È stata una pazzia guidare così veloce.", + "example_sentence_english": "It was madness to drive so fast.", + "pos": "noun", + "word_frequency": 6452 + }, + { + "word": "persecuzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "persecution", + "romanization": "persecuzione", + "example_sentence_native": "Molte persone hanno subito persecuzioni per le loro credenze.", + "example_sentence_english": "Many people suffered persecution for their beliefs.", + "pos": "noun", + "word_frequency": 6453 + }, + { + "word": "piana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plain;flatland", + "romanization": "piana", + "example_sentence_native": "La piana era coperta di campi di grano.", + "example_sentence_english": "The plain was covered with wheat fields.", + "pos": "noun", + "word_frequency": 6454 + }, + { + "word": "pneumatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tire", + "romanization": "pneumatico", + "example_sentence_native": "Ho bisogno di cambiare i pneumatici della macchina.", + "example_sentence_english": "I need to change the car tires.", + "pos": "noun", + "word_frequency": 6456 + }, + { + "word": "prefazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preface;foreword", + "romanization": "prefazione", + "example_sentence_native": "La prefazione del libro spiega l'intento dell'autore.", + "example_sentence_english": "The preface of the book explains the author's intent.", + "pos": "noun", + "word_frequency": 6457 + }, + { + "word": "proroga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;postponement", + "romanization": "proroga", + "example_sentence_native": "Abbiamo ottenuto una proroga per la consegna del progetto.", + "example_sentence_english": "We got an extension for the project delivery.", + "pos": "noun", + "word_frequency": 6459 + }, + { + "word": "provvisorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provisional;temporary", + "romanization": "provvisorio", + "example_sentence_native": "Questa è solo una soluzione provvisoria.", + "example_sentence_english": "This is only a temporary solution.", + "pos": "adjective", + "word_frequency": 6460 + }, + { + "word": "regolamentazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regulation;rule-making", + "romanization": "regolamentazione", + "example_sentence_native": "La nuova regolamentazione è entrata in vigore.", + "example_sentence_english": "The new regulation has come into force.", + "pos": "noun", + "word_frequency": 6462 + }, + { + "word": "relatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker;rapporteur;supervisor", + "romanization": "relatore", + "example_sentence_native": "Il relatore ha presentato i risultati della ricerca.", + "example_sentence_english": "The speaker presented the research results.", + "pos": "noun", + "word_frequency": 6463 + }, + { + "word": "rinnovamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renewal;renovation", + "romanization": "rinnovamento", + "example_sentence_native": "La città ha bisogno di un rinnovamento urbano.", + "example_sentence_english": "The city needs urban renewal.", + "pos": "noun", + "word_frequency": 6464 + }, + { + "word": "segretaria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "secretary", + "romanization": "segretaria", + "example_sentence_native": "La segretaria ha fissato l'appuntamento.", + "example_sentence_english": "The secretary scheduled the appointment.", + "pos": "noun", + "word_frequency": 6469 + }, + { + "word": "serale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evening (adj.);nocturnal", + "romanization": "serale", + "example_sentence_native": "Abbiamo frequentato un corso serale.", + "example_sentence_english": "We attended an evening course.", + "pos": "adjective", + "word_frequency": 6470 + }, + { + "word": "simulazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulation", + "romanization": "simulazione", + "example_sentence_native": "La simulazione del volo è stata molto realistica.", + "example_sentence_english": "The flight simulation was very realistic.", + "pos": "noun", + "word_frequency": 6471 + }, + { + "word": "soia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soy;soybean", + "romanization": "soia", + "example_sentence_native": "Bevo latte di soia ogni mattina.", + "example_sentence_english": "I drink soy milk every morning.", + "pos": "noun", + "word_frequency": 6472 + }, + { + "word": "soprannome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nickname", + "romanization": "soprannome", + "example_sentence_native": "Il suo soprannome è \"Il Professore\".", + "example_sentence_english": "His nickname is \"The Professor\".", + "pos": "noun", + "word_frequency": 6473 + }, + { + "word": "sportello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "counter;window;door (small)", + "romanization": "sportello", + "example_sentence_native": "Vai allo sportello per ritirare i soldi.", + "example_sentence_english": "Go to the counter to withdraw the money.", + "pos": "noun", + "word_frequency": 6474 + }, + { + "word": "suddetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aforesaid;aforementioned", + "romanization": "suddetto", + "example_sentence_native": "Si fa riferimento all'articolo suddetto.", + "example_sentence_english": "Reference is made to the aforesaid article.", + "pos": "adjective", + "word_frequency": 6478 + }, + { + "word": "tigre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiger", + "romanization": "tigre", + "example_sentence_native": "La tigre è un animale selvatico.", + "example_sentence_english": "The tiger is a wild animal.", + "pos": "noun", + "word_frequency": 6481 + }, + { + "word": "traditore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traitor", + "romanization": "traditore", + "example_sentence_native": "È stato etichettato come un traditore della patria.", + "example_sentence_english": "He was labeled a traitor to his country.", + "pos": "noun", + "word_frequency": 6483 + }, + { + "word": "trattenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hold back;to retain", + "romanization": "trattenere", + "example_sentence_native": "Ho dovuto trattenere le lacrime.", + "example_sentence_english": "I had to hold back my tears.", + "pos": "verb", + "word_frequency": 6484 + }, + { + "word": "vernice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paint;varnish", + "romanization": "vernice", + "example_sentence_native": "Dobbiamo dare una nuova mano di vernice al muro.", + "example_sentence_english": "We need to give the wall a new coat of paint.", + "pos": "noun", + "word_frequency": 6485 + }, + { + "word": "versante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slope;side (of a mountain)", + "romanization": "versante", + "example_sentence_native": "Il versante nord della montagna è più ripido.", + "example_sentence_english": "The north slope of the mountain is steeper.", + "pos": "noun", + "word_frequency": 6486 + }, + { + "word": "vignetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartoon;comic strip;vignette", + "romanization": "vignetta", + "example_sentence_native": "Ho letto una vignetta divertente sul giornale.", + "example_sentence_english": "I read a funny cartoon in the newspaper.", + "pos": "noun", + "word_frequency": 6487 + }, + { + "word": "visualizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visualization;display;view", + "romanization": "visualizzazione", + "example_sentence_native": "La visualizzazione dei dati è fondamentale per l'analisi.", + "example_sentence_english": "Data visualization is fundamental for analysis.", + "pos": "noun", + "word_frequency": 6488 + }, + { + "word": "abbracciare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hug;to embrace", + "romanization": "abbracciare", + "example_sentence_native": "Mi piace abbracciare i miei amici.", + "example_sentence_english": "I like to hug my friends.", + "pos": "verb", + "word_frequency": 6491 + }, + { + "word": "aderire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adhere;to join;to stick", + "romanization": "aderire", + "example_sentence_native": "Molti paesi hanno deciso di aderire all'accordo.", + "example_sentence_english": "Many countries have decided to adhere to the agreement.", + "pos": "verb", + "word_frequency": 6492 + }, + { + "word": "adolescenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adolescence", + "romanization": "adolescenza", + "example_sentence_native": "L'adolescenza è un periodo di grandi cambiamenti.", + "example_sentence_english": "Adolescence is a period of great changes.", + "pos": "noun", + "word_frequency": 6493 + }, + { + "word": "aggredire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attack;to assault", + "romanization": "aggredire", + "example_sentence_native": "Non dovresti mai aggredire qualcuno.", + "example_sentence_english": "You should never attack someone.", + "pos": "verb", + "word_frequency": 6494 + }, + { + "word": "albanese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Albanian", + "romanization": "albanese", + "example_sentence_native": "Parla fluentemente l'albanese.", + "example_sentence_english": "He speaks Albanian fluently.", + "pos": "adjective", + "word_frequency": 6495 + }, + { + "word": "alternativi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternative", + "romanization": "alternativi", + "example_sentence_native": "Stiamo cercando soluzioni alternative.", + "example_sentence_english": "We are looking for alternative solutions.", + "pos": "adjective", + "word_frequency": 6496 + }, + { + "word": "apparizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance;apparition", + "romanization": "apparizione", + "example_sentence_native": "La sua improvvisa apparizione ci ha sorpreso.", + "example_sentence_english": "His sudden appearance surprised us.", + "pos": "noun", + "word_frequency": 6499 + }, + { + "word": "attraente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attractive", + "romanization": "attraente", + "example_sentence_native": "Trovo quella persona molto attraente.", + "example_sentence_english": "I find that person very attractive.", + "pos": "adjective", + "word_frequency": 6500 + }, + { + "word": "banconota", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "banknote;bill", + "romanization": "banconota", + "example_sentence_native": "Ho una banconota da venti euro.", + "example_sentence_english": "I have a twenty-euro banknote.", + "pos": "noun", + "word_frequency": 6501 + }, + { + "word": "belga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Belgian", + "romanization": "belga", + "example_sentence_native": "La birra belga è famosa in tutto il mondo.", + "example_sentence_english": "Belgian beer is famous worldwide.", + "pos": "adjective", + "word_frequency": 6502 + }, + { + "word": "biennale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biennial (event)", + "romanization": "biennale", + "example_sentence_native": "La Biennale di Venezia è un evento artistico importante.", + "example_sentence_english": "The Venice Biennale is an important art event.", + "pos": "noun", + "word_frequency": 6503 + }, + { + "word": "champagne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champagne", + "romanization": "champagne", + "example_sentence_native": "Brindiamo con un bicchiere di champagne.", + "example_sentence_english": "Let's toast with a glass of champagne.", + "pos": "noun", + "word_frequency": 6505 + }, + { + "word": "concordato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agreement;concordat", + "romanization": "concordato", + "example_sentence_native": "Hanno raggiunto un concordato dopo lunghe trattative.", + "example_sentence_english": "They reached an agreement after long negotiations.", + "pos": "noun", + "word_frequency": 6508 + }, + { + "word": "confezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "package;pack;packaging", + "romanization": "confezione", + "example_sentence_native": "La confezione del prodotto è molto attraente.", + "example_sentence_english": "The product packaging is very attractive.", + "pos": "noun", + "word_frequency": 6509 + }, + { + "word": "confidenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confidence;trust;familiarity", + "romanization": "confidenza", + "example_sentence_native": "Ho piena confidenza nelle sue capacità.", + "example_sentence_english": "I have full confidence in his abilities.", + "pos": "noun", + "word_frequency": 6510 + }, + { + "word": "coordinatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordinator", + "romanization": "coordinatore", + "example_sentence_native": "Il coordinatore del progetto ha organizzato la riunione.", + "example_sentence_english": "The project coordinator organized the meeting.", + "pos": "noun", + "word_frequency": 6511 + }, + { + "word": "cravatta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tie;necktie", + "romanization": "cravatta", + "example_sentence_native": "Indossa sempre una cravatta elegante.", + "example_sentence_english": "He always wears an elegant tie.", + "pos": "noun", + "word_frequency": 6513 + }, + { + "word": "credenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belief;cupboard;credenza", + "romanization": "credenza", + "example_sentence_native": "È una credenza popolare che i gatti neri portino sfortuna.", + "example_sentence_english": "It's a popular belief that black cats bring bad luck.", + "pos": "noun", + "word_frequency": 6514 + }, + { + "word": "crocifisso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucifix", + "romanization": "crocifisso", + "example_sentence_native": "C'è un crocifisso appeso al muro.", + "example_sentence_english": "There is a crucifix hanging on the wall.", + "pos": "noun", + "word_frequency": 6515 + }, + { + "word": "deliberazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deliberation;resolution", + "romanization": "deliberazione", + "example_sentence_native": "La deliberazione del consiglio è stata unanime.", + "example_sentence_english": "The council's deliberation was unanimous.", + "pos": "noun", + "word_frequency": 6516 + }, + { + "word": "demone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demon", + "romanization": "demone", + "example_sentence_native": "Si dice che un demone abiti in quella casa.", + "example_sentence_english": "It is said that a demon lives in that house.", + "pos": "noun", + "word_frequency": 6517 + }, + { + "word": "devozione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devotion", + "romanization": "devozione", + "example_sentence_native": "Ha mostrato grande devozione alla sua famiglia.", + "example_sentence_english": "He showed great devotion to his family.", + "pos": "noun", + "word_frequency": 6518 + }, + { + "word": "diabete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diabetes", + "romanization": "diabete", + "example_sentence_native": "Il diabete è una malattia cronica.", + "example_sentence_english": "Diabetes is a chronic disease.", + "pos": "noun", + "word_frequency": 6519 + }, + { + "word": "dovunque", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wherever;anywhere", + "romanization": "dovunque", + "example_sentence_native": "Ti seguirò dovunque tu vada.", + "example_sentence_english": "I will follow you wherever you go.", + "pos": "adverb", + "word_frequency": 6520 + }, + { + "word": "erroneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erroneously;mistakenly", + "romanization": "erroneamente", + "example_sentence_native": "Ha erroneamente inserito la password sbagliata.", + "example_sentence_english": "He erroneously entered the wrong password.", + "pos": "adverb", + "word_frequency": 6522 + }, + { + "word": "fingere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pretend;to feign", + "romanization": "fingere", + "example_sentence_native": "Non fingere di non capire.", + "example_sentence_english": "Don't pretend not to understand.", + "pos": "verb", + "word_frequency": 6523 + }, + { + "word": "fluido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fluid;smooth", + "romanization": "fluido", + "example_sentence_native": "Il movimento era molto fluido.", + "example_sentence_english": "The movement was very fluid.", + "pos": "adjective", + "word_frequency": 6524 + }, + { + "word": "geloso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jealous", + "romanization": "geloso", + "example_sentence_native": "Era molto geloso del successo del suo amico.", + "example_sentence_english": "He was very jealous of his friend's success.", + "pos": "adjective", + "word_frequency": 6526 + }, + { + "word": "giungla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jungle", + "romanization": "giungla", + "example_sentence_native": "La giungla era fitta e misteriosa.", + "example_sentence_english": "The jungle was dense and mysterious.", + "pos": "noun", + "word_frequency": 6528 + }, + { + "word": "illustrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illustrate;to explain", + "romanization": "illustrare", + "example_sentence_native": "Potrebbe illustrare meglio il suo punto?", + "example_sentence_english": "Could you illustrate your point better?", + "pos": "verb", + "word_frequency": 6532 + }, + { + "word": "incazzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pissed off;angry (vulgar)", + "romanization": "incazzato", + "example_sentence_native": "Era davvero incazzato per quello che era successo.", + "example_sentence_english": "He was really pissed off about what had happened.", + "pos": "adjective", + "word_frequency": 6533 + }, + { + "word": "incidenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incidence;impact", + "romanization": "incidenza", + "example_sentence_native": "L'incidenza della malattia è aumentata.", + "example_sentence_english": "The incidence of the disease has increased.", + "pos": "noun", + "word_frequency": 6534 + }, + { + "word": "indennità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indemnity;allowance;compensation", + "romanization": "indennità", + "example_sentence_native": "Ha ricevuto un'indennità per il danno subito.", + "example_sentence_english": "He received compensation for the damage suffered.", + "pos": "noun", + "word_frequency": 6535 + }, + { + "word": "innovativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovative", + "romanization": "innovativo", + "example_sentence_native": "Hanno presentato un progetto molto innovativo.", + "example_sentence_english": "They presented a very innovative project.", + "pos": "adjective", + "word_frequency": 6536 + }, + { + "word": "insopportabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbearable;intolerable", + "romanization": "insopportabile", + "example_sentence_native": "Il rumore era diventato insopportabile.", + "example_sentence_english": "The noise had become unbearable.", + "pos": "adjective", + "word_frequency": 6537 + }, + { + "word": "ipocrita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypocrite", + "romanization": "ipocrita", + "example_sentence_native": "Non sopporto gli ipocriti.", + "example_sentence_english": "I can't stand hypocrites.", + "pos": "noun", + "word_frequency": 6538 + }, + { + "word": "massiccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "massive;solid", + "romanization": "massiccio", + "example_sentence_native": "Hanno trovato un blocco di roccia massiccio.", + "example_sentence_english": "They found a massive block of rock.", + "pos": "adjective", + "word_frequency": 6542 + }, + { + "word": "mazzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bunch;deck (of cards);bouquet", + "romanization": "mazzo", + "example_sentence_native": "Ho comprato un mazzo di fiori.", + "example_sentence_english": "I bought a bunch of flowers.", + "pos": "noun", + "word_frequency": 6544 + }, + { + "word": "minimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimally;in the slightest", + "romanization": "minimamente", + "example_sentence_native": "Non mi interessa minimamente.", + "example_sentence_english": "I'm not interested in the slightest.", + "pos": "adverb", + "word_frequency": 6546 + }, + { + "word": "monitorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to monitor", + "romanization": "monitorare", + "example_sentence_native": "Dobbiamo monitorare la situazione attentamente.", + "example_sentence_english": "We need to monitor the situation carefully.", + "pos": "verb", + "word_frequency": 6549 + }, + { + "word": "mutare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change;to mutate", + "romanization": "mutare", + "example_sentence_native": "La situazione potrebbe mutare rapidamente.", + "example_sentence_english": "The situation could change rapidly.", + "pos": "verb", + "word_frequency": 6553 + }, + { + "word": "officina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "workshop;garage", + "romanization": "officina", + "example_sentence_native": "Ho portato la macchina in officina.", + "example_sentence_english": "I took the car to the garage.", + "pos": "noun", + "word_frequency": 6555 + }, + { + "word": "omofobia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homophobia", + "romanization": "omofobia", + "example_sentence_native": "L'omofobia è una forma di discriminazione.", + "example_sentence_english": "Homophobia is a form of discrimination.", + "pos": "noun", + "word_frequency": 6556 + }, + { + "word": "osservatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observer", + "romanization": "osservatore", + "example_sentence_native": "Era un attento osservatore dei dettagli.", + "example_sentence_english": "He was a careful observer of details.", + "pos": "noun", + "word_frequency": 6557 + }, + { + "word": "penetrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penetration", + "romanization": "penetrazione", + "example_sentence_native": "La penetrazione del mercato è stata rapida.", + "example_sentence_english": "Market penetration was rapid.", + "pos": "noun", + "word_frequency": 6558 + }, + { + "word": "perenne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perennial;everlasting", + "romanization": "perenne", + "example_sentence_native": "La sua bellezza è perenne.", + "example_sentence_english": "Her beauty is everlasting.", + "pos": "adjective", + "word_frequency": 6559 + }, + { + "word": "postare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to post", + "romanization": "postare", + "example_sentence_native": "Devo postare questa foto sui social media.", + "example_sentence_english": "I need to post this photo on social media.", + "pos": "verb", + "word_frequency": 6560 + }, + { + "word": "protestare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protest", + "romanization": "protestare", + "example_sentence_native": "I cittadini hanno deciso di protestare contro la nuova legge.", + "example_sentence_english": "The citizens decided to protest against the new law.", + "pos": "verb", + "word_frequency": 6562 + }, + { + "word": "provocazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocation", + "romanization": "provocazione", + "example_sentence_native": "La sua provocazione ha scatenato una discussione accesa.", + "example_sentence_english": "His provocation sparked a heated discussion.", + "pos": "noun", + "word_frequency": 6563 + }, + { + "word": "sconvolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upset;distraught", + "romanization": "sconvolto", + "example_sentence_native": "Era sconvolto dalla notizia.", + "example_sentence_english": "He was distraught by the news.", + "pos": "adjective", + "word_frequency": 6568 + }, + { + "word": "sergente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sergeant", + "romanization": "sergente", + "example_sentence_native": "Il sergente ha dato gli ordini.", + "example_sentence_english": "The sergeant gave the orders.", + "pos": "noun", + "word_frequency": 6569 + }, + { + "word": "somministrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administration;dosage", + "romanization": "somministrazione", + "example_sentence_native": "La somministrazione del farmaco deve essere precisa.", + "example_sentence_english": "The administration of the drug must be precise.", + "pos": "noun", + "word_frequency": 6571 + }, + { + "word": "speculazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculation", + "romanization": "speculazione", + "example_sentence_native": "Ci sono state molte speculazioni sul futuro dell'azienda.", + "example_sentence_english": "There has been much speculation about the company's future.", + "pos": "noun", + "word_frequency": 6572 + }, + { + "word": "spoiler", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spoiler", + "romanization": "spoiler", + "example_sentence_native": "Non darmi spoiler sul finale del film!", + "example_sentence_english": "Don't give me spoilers about the movie's ending!", + "pos": "noun", + "word_frequency": 6573 + }, + { + "word": "sponda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank;shore", + "romanization": "sponda", + "example_sentence_native": "Ci siamo seduti sulla sponda del fiume.", + "example_sentence_english": "We sat on the bank of the river.", + "pos": "noun", + "word_frequency": 6574 + }, + { + "word": "stivale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boot", + "romanization": "stivale", + "example_sentence_native": "Ho comprato un nuovo paio di stivali.", + "example_sentence_english": "I bought a new pair of boots.", + "pos": "noun", + "word_frequency": 6575 + }, + { + "word": "suora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nun", + "romanization": "suora", + "example_sentence_native": "La suora lavora in ospedale.", + "example_sentence_english": "The nun works in the hospital.", + "pos": "noun", + "word_frequency": 6576 + }, + { + "word": "sviluppatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developer", + "romanization": "sviluppatore", + "example_sentence_native": "Lo sviluppatore ha risolto il bug.", + "example_sentence_english": "The developer fixed the bug.", + "pos": "noun", + "word_frequency": 6577 + }, + { + "word": "tondo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "round", + "romanization": "tondo", + "example_sentence_native": "Il tavolo è tondo.", + "example_sentence_english": "The table is round.", + "pos": "adjective", + "word_frequency": 6579 + }, + { + "word": "vago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vague;unclear", + "romanization": "vago", + "example_sentence_native": "La sua risposta era molto vaga.", + "example_sentence_english": "His answer was very vague.", + "pos": "adjective", + "word_frequency": 6581 + }, + { + "word": "ventina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about twenty", + "romanization": "ventina", + "example_sentence_native": "C'erano una ventina di persone alla festa.", + "example_sentence_english": "There were about twenty people at the party.", + "pos": "noun", + "word_frequency": 6583 + }, + { + "word": "vomitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vomit", + "romanization": "vomitare", + "example_sentence_native": "Si sentiva male e ha dovuto vomitare.", + "example_sentence_english": "He felt sick and had to vomit.", + "pos": "verb", + "word_frequency": 6585 + }, + { + "word": "accurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accurate;thorough", + "romanization": "accurato", + "example_sentence_native": "Ha fatto un lavoro molto accurato.", + "example_sentence_english": "He did a very accurate job.", + "pos": "adjective", + "word_frequency": 6588 + }, + { + "word": "amatoriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amateur", + "romanization": "amatoriale", + "example_sentence_native": "È un fotografo amatoriale.", + "example_sentence_english": "He is an amateur photographer.", + "pos": "adjective", + "word_frequency": 6589 + }, + { + "word": "ampliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expand;to broaden", + "romanization": "ampliare", + "example_sentence_native": "Dobbiamo ampliare i nostri orizzonti.", + "example_sentence_english": "We need to broaden our horizons.", + "pos": "verb", + "word_frequency": 6590 + }, + { + "word": "angoscia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anguish;distress", + "romanization": "angoscia", + "example_sentence_native": "Sentiva una profonda angoscia per il futuro.", + "example_sentence_english": "He felt deep anguish about the future.", + "pos": "noun", + "word_frequency": 6591 + }, + { + "word": "antologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anthology", + "romanization": "antologia", + "example_sentence_native": "Ha pubblicato un'antologia di poesie.", + "example_sentence_english": "He published an anthology of poems.", + "pos": "noun", + "word_frequency": 6592 + }, + { + "word": "appetito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appetite", + "romanization": "appetito", + "example_sentence_native": "Ho un grande appetito dopo la corsa.", + "example_sentence_english": "I have a big appetite after the run.", + "pos": "noun", + "word_frequency": 6593 + }, + { + "word": "applicabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicable", + "romanization": "applicabile", + "example_sentence_native": "Questa regola non è applicabile al nostro caso.", + "example_sentence_english": "This rule is not applicable to our case.", + "pos": "adjective", + "word_frequency": 6594 + }, + { + "word": "apprezzamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appreciation", + "romanization": "apprezzamento", + "example_sentence_native": "Vorrei esprimere il mio apprezzamento per il vostro aiuto.", + "example_sentence_english": "I would like to express my appreciation for your help.", + "pos": "noun", + "word_frequency": 6595 + }, + { + "word": "approfondito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in-depth;thorough", + "romanization": "approfondito", + "example_sentence_native": "Ha fatto uno studio approfondito sull'argomento.", + "example_sentence_english": "He conducted an in-depth study on the topic.", + "pos": "adjective", + "word_frequency": 6596 + }, + { + "word": "avvertimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warning;notice", + "romanization": "avvertimento", + "example_sentence_native": "Ha ricevuto un avvertimento per eccesso di velocità.", + "example_sentence_english": "He received a warning for speeding.", + "pos": "noun", + "word_frequency": 6597 + }, + { + "word": "bandito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandit;outlaw", + "romanization": "bandito", + "example_sentence_native": "Il bandito è stato catturato dalla polizia.", + "example_sentence_english": "The bandit was captured by the police.", + "pos": "noun", + "word_frequency": 6598 + }, + { + "word": "bullismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bullying", + "romanization": "bullismo", + "example_sentence_native": "La scuola sta combattendo il bullismo.", + "example_sentence_english": "The school is fighting bullying.", + "pos": "noun", + "word_frequency": 6599 + }, + { + "word": "cancelliere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chancellor", + "romanization": "cancelliere", + "example_sentence_native": "Il cancelliere ha annunciato nuove misure economiche.", + "example_sentence_english": "The chancellor announced new economic measures.", + "pos": "noun", + "word_frequency": 6600 + }, + { + "word": "casalingo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homemaker", + "romanization": "casalingo", + "example_sentence_native": "Mia madre è una casalinga.", + "example_sentence_english": "My mother is a homemaker.", + "pos": "noun", + "word_frequency": 6601 + }, + { + "word": "cenno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nod;sign;hint", + "romanization": "cenno", + "example_sentence_native": "Mi ha fatto un cenno con la testa.", + "example_sentence_english": "He gave me a nod with his head.", + "pos": "noun", + "word_frequency": 6602 + }, + { + "word": "cioccolata", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chocolate (drink or bar)", + "romanization": "cioccolata", + "example_sentence_native": "Vorrei una tazza di cioccolata calda.", + "example_sentence_english": "I would like a cup of hot chocolate.", + "pos": "noun", + "word_frequency": 6605 + }, + { + "word": "complicità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complicity;connivance", + "romanization": "complicità", + "example_sentence_native": "C'era una chiara complicità tra i due.", + "example_sentence_english": "There was a clear complicity between the two.", + "pos": "noun", + "word_frequency": 6607 + }, + { + "word": "compositore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "composer", + "romanization": "compositore", + "example_sentence_native": "Giuseppe Verdi è stato un grande compositore italiano.", + "example_sentence_english": "Giuseppe Verdi was a great Italian composer.", + "pos": "noun", + "word_frequency": 6608 + }, + { + "word": "concentramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concentration;gathering", + "romanization": "concentramento", + "example_sentence_native": "Il concentramento delle truppe è avvenuto al confine.", + "example_sentence_english": "The concentration of troops occurred at the border.", + "pos": "noun", + "word_frequency": 6609 + }, + { + "word": "concernere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to concern;to relate to", + "romanization": "concernere", + "example_sentence_native": "La questione concerne tutti i cittadini.", + "example_sentence_english": "The issue concerns all citizens.", + "pos": "verb", + "word_frequency": 6610 + }, + { + "word": "concordia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concord;harmony;agreement", + "romanization": "concordia", + "example_sentence_native": "Viviamo in pace e concordia.", + "example_sentence_english": "We live in peace and harmony.", + "pos": "noun", + "word_frequency": 6611 + }, + { + "word": "contabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accountant", + "romanization": "contabile", + "example_sentence_native": "Ho bisogno di un buon contabile per la mia azienda.", + "example_sentence_english": "I need a good accountant for my company.", + "pos": "noun", + "word_frequency": 6612 + }, + { + "word": "contrada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district;quarter (especially in Siena)", + "romanization": "contrada", + "example_sentence_native": "Ogni contrada di Siena ha i suoi colori.", + "example_sentence_english": "Every contrada in Siena has its own colors.", + "pos": "noun", + "word_frequency": 6613 + }, + { + "word": "dinanzi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in front of;before", + "romanization": "dinanzi", + "example_sentence_native": "Si trovava dinanzi a una scelta difficile.", + "example_sentence_english": "He found himself in front of a difficult choice.", + "pos": "adverb", + "word_frequency": 6615 + }, + { + "word": "dossier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dossier;file", + "romanization": "dossier", + "example_sentence_native": "Il giornalista ha preparato un dossier completo sul caso.", + "example_sentence_english": "The journalist prepared a complete dossier on the case.", + "pos": "noun", + "word_frequency": 6618 + }, + { + "word": "drone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drone", + "romanization": "drone", + "example_sentence_native": "I droni sono usati per la sorveglianza.", + "example_sentence_english": "Drones are used for surveillance.", + "pos": "noun", + "word_frequency": 6619 + }, + { + "word": "equazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equation", + "romanization": "equazione", + "example_sentence_native": "Dobbiamo risolvere questa equazione matematica.", + "example_sentence_english": "We need to solve this mathematical equation.", + "pos": "noun", + "word_frequency": 6621 + }, + { + "word": "esportazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "export;exportation", + "romanization": "esportazione", + "example_sentence_native": "L'esportazione di prodotti italiani è aumentata.", + "example_sentence_english": "The export of Italian products has increased.", + "pos": "noun", + "word_frequency": 6623 + }, + { + "word": "frustrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frustration", + "romanization": "frustrazione", + "example_sentence_native": "Ha provato molta frustrazione per la situazione.", + "example_sentence_english": "He felt a lot of frustration about the situation.", + "pos": "noun", + "word_frequency": 6625 + }, + { + "word": "generatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generator", + "romanization": "generatore", + "example_sentence_native": "Abbiamo bisogno di un generatore di corrente.", + "example_sentence_english": "We need a power generator.", + "pos": "noun", + "word_frequency": 6626 + }, + { + "word": "gestore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manager;operator;provider", + "romanization": "gestore", + "example_sentence_native": "Il gestore del ristorante è molto cordiale.", + "example_sentence_english": "The restaurant manager is very friendly.", + "pos": "noun", + "word_frequency": 6627 + }, + { + "word": "graduatoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranking;list;classification", + "romanization": "graduatoria", + "example_sentence_native": "La graduatoria dei candidati è stata pubblicata.", + "example_sentence_english": "The ranking of candidates has been published.", + "pos": "noun", + "word_frequency": 6629 + }, + { + "word": "griglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grill;grid", + "romanization": "griglia", + "example_sentence_native": "Abbiamo cucinato la carne sulla griglia.", + "example_sentence_english": "We cooked the meat on the grill.", + "pos": "noun", + "word_frequency": 6631 + }, + { + "word": "guasto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breakdown;fault;damage", + "romanization": "guasto", + "example_sentence_native": "C'è stato un guasto al motore.", + "example_sentence_english": "There was a fault in the engine.", + "pos": "noun", + "word_frequency": 6632 + }, + { + "word": "incrocio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intersection;crossroads", + "romanization": "incrocio", + "example_sentence_native": "Gira a destra al prossimo incrocio.", + "example_sentence_english": "Turn right at the next intersection.", + "pos": "noun", + "word_frequency": 6636 + }, + { + "word": "infermiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nurse", + "romanization": "infermiere", + "example_sentence_native": "L'infermiere mi ha dato la medicina.", + "example_sentence_english": "The nurse gave me the medicine.", + "pos": "noun", + "word_frequency": 6637 + }, + { + "word": "magno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "great", + "romanization": "magno", + "example_sentence_native": "Carlo Magno fu un imperatore potente.", + "example_sentence_english": "Charlemagne was a powerful emperor.", + "pos": "adjective", + "word_frequency": 6642 + }, + { + "word": "matita", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pencil", + "romanization": "matita", + "example_sentence_native": "Ho bisogno di una matita per scrivere.", + "example_sentence_english": "I need a pencil to write.", + "pos": "noun", + "word_frequency": 6645 + }, + { + "word": "mediocre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediocre", + "romanization": "mediocre", + "example_sentence_native": "La sua performance è stata piuttosto mediocre.", + "example_sentence_english": "His performance was rather mediocre.", + "pos": "adjective", + "word_frequency": 6646 + }, + { + "word": "mero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mere", + "romanization": "mero", + "example_sentence_native": "È stata una mera coincidenza, nulla di più.", + "example_sentence_english": "It was a mere coincidence, nothing more.", + "pos": "adjective", + "word_frequency": 6647 + }, + { + "word": "metropoli", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metropolis", + "romanization": "metropoli", + "example_sentence_native": "Milano è una grande metropoli italiana.", + "example_sentence_english": "Milan is a large Italian metropolis.", + "pos": "noun", + "word_frequency": 6648 + }, + { + "word": "migrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migration", + "romanization": "migrazione", + "example_sentence_native": "La migrazione degli uccelli è un fenomeno annuale.", + "example_sentence_english": "Bird migration is an annual phenomenon.", + "pos": "noun", + "word_frequency": 6649 + }, + { + "word": "miscela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixture", + "romanization": "miscela", + "example_sentence_native": "Questa miscela di erbe ha un buon profumo.", + "example_sentence_english": "This mixture of herbs smells good.", + "pos": "noun", + "word_frequency": 6650 + }, + { + "word": "monetario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monetary", + "romanization": "monetario", + "example_sentence_native": "La politica monetaria è decisa dalla banca centrale.", + "example_sentence_english": "Monetary policy is decided by the central bank.", + "pos": "adjective", + "word_frequency": 6651 + }, + { + "word": "mucchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pile", + "romanization": "mucchio", + "example_sentence_native": "C'è un mucchio di libri sulla scrivania.", + "example_sentence_english": "There's a pile of books on the desk.", + "pos": "noun", + "word_frequency": 6652 + }, + { + "word": "nicchia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "niche", + "romanization": "nicchia", + "example_sentence_native": "Ha trovato una nicchia di mercato per il suo prodotto.", + "example_sentence_english": "He found a market niche for his product.", + "pos": "noun", + "word_frequency": 6655 + }, + { + "word": "omosessualità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homosexuality", + "romanization": "omosessualità", + "example_sentence_native": "L'omosessualità è un orientamento sessuale.", + "example_sentence_english": "Homosexuality is a sexual orientation.", + "pos": "noun", + "word_frequency": 6656 + }, + { + "word": "paglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straw", + "romanization": "paglia", + "example_sentence_native": "Il tetto della capanna era fatto di paglia.", + "example_sentence_english": "The hut's roof was made of straw.", + "pos": "noun", + "word_frequency": 6657 + }, + { + "word": "palcoscenico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stage", + "romanization": "palcoscenico", + "example_sentence_native": "L'attore è salito sul palcoscenico.", + "example_sentence_english": "The actor went onto the stage.", + "pos": "noun", + "word_frequency": 6658 + }, + { + "word": "parassita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parasite", + "romanization": "parassita", + "example_sentence_native": "La zanzara è un parassita che si nutre di sangue.", + "example_sentence_english": "The mosquito is a parasite that feeds on blood.", + "pos": "noun", + "word_frequency": 6659 + }, + { + "word": "periodico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "periodical", + "romanization": "periodico", + "example_sentence_native": "Leggo un periodico scientifico ogni mese.", + "example_sentence_english": "I read a scientific periodical every month.", + "pos": "noun", + "word_frequency": 6660 + }, + { + "word": "perlomeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at least", + "romanization": "perlomeno", + "example_sentence_native": "Dovresti perlomeno provare a capirmi.", + "example_sentence_english": "You should at least try to understand me.", + "pos": "adverb", + "word_frequency": 6661 + }, + { + "word": "pizzeria", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pizzeria", + "romanization": "pizzeria", + "example_sentence_native": "Andiamo a mangiare una pizza in pizzeria stasera.", + "example_sentence_english": "Let's go eat a pizza at the pizzeria tonight.", + "pos": "noun", + "word_frequency": 6663 + }, + { + "word": "platino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platinum", + "romanization": "platino", + "example_sentence_native": "Il platino è un metallo prezioso.", + "example_sentence_english": "Platinum is a precious metal.", + "pos": "noun", + "word_frequency": 6664 + }, + { + "word": "preservare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preserve", + "romanization": "preservare", + "example_sentence_native": "Dobbiamo preservare l'ambiente per le future generazioni.", + "example_sentence_english": "We must preserve the environment for future generations.", + "pos": "verb", + "word_frequency": 6665 + }, + { + "word": "prevedibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predictable", + "romanization": "prevedibile", + "example_sentence_native": "Il risultato della partita era prevedibile.", + "example_sentence_english": "The outcome of the match was predictable.", + "pos": "adjective", + "word_frequency": 6666 + }, + { + "word": "processione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "procession", + "romanization": "processione", + "example_sentence_native": "La processione ha attraversato il centro storico.", + "example_sentence_english": "The procession went through the historic center.", + "pos": "noun", + "word_frequency": 6667 + }, + { + "word": "regolarità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regularity", + "romanization": "regolarità", + "example_sentence_native": "La regolarità nell'esercizio fisico è importante per la salute.", + "example_sentence_english": "Regularity in physical exercise is important for health.", + "pos": "noun", + "word_frequency": 6669 + }, + { + "word": "residenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residential", + "romanization": "residenziale", + "example_sentence_native": "Viviamo in una zona residenziale tranquilla.", + "example_sentence_english": "We live in a quiet residential area.", + "pos": "adjective", + "word_frequency": 6670 + }, + { + "word": "restrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restriction", + "romanization": "restrizione", + "example_sentence_native": "Ci sono restrizioni sul traffico in centro città.", + "example_sentence_english": "There are traffic restrictions in the city center.", + "pos": "noun", + "word_frequency": 6671 + }, + { + "word": "retto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "straight", + "romanization": "retto", + "example_sentence_native": "Disegna una linea retta sul foglio.", + "example_sentence_english": "Draw a straight line on the paper.", + "pos": "adjective", + "word_frequency": 6672 + }, + { + "word": "ricarica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recharge", + "romanization": "ricarica", + "example_sentence_native": "Ho bisogno di una ricarica per il mio telefono.", + "example_sentence_english": "I need a recharge for my phone.", + "pos": "noun", + "word_frequency": 6673 + }, + { + "word": "ricompensa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reward", + "romanization": "ricompensa", + "example_sentence_native": "Ha ricevuto una ricompensa per il suo duro lavoro.", + "example_sentence_english": "He received a reward for his hard work.", + "pos": "noun", + "word_frequency": 6674 + }, + { + "word": "ripercussione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repercussion", + "romanization": "ripercussione", + "example_sentence_native": "Le sue azioni hanno avuto gravi ripercussioni.", + "example_sentence_english": "His actions had serious repercussions.", + "pos": "noun", + "word_frequency": 6676 + }, + { + "word": "sbattere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slam", + "romanization": "sbattere", + "example_sentence_native": "Non sbattere la porta quando esci.", + "example_sentence_english": "Don't slam the door when you leave.", + "pos": "verb", + "word_frequency": 6678 + }, + { + "word": "semifinale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "semifinal", + "romanization": "semifinale", + "example_sentence_native": "La squadra ha vinto la semifinale e ora è in finale.", + "example_sentence_english": "The team won the semifinal and is now in the final.", + "pos": "noun", + "word_frequency": 6679 + }, + { + "word": "sfigato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loser;unlucky person", + "romanization": "sfigato", + "example_sentence_native": "Non fare lo sfigato, provaci!", + "example_sentence_english": "Don't be a loser, try it!", + "pos": "noun", + "word_frequency": 6681 + }, + { + "word": "sociologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociology", + "romanization": "sociologia", + "example_sentence_native": "Ha studiato sociologia all'università.", + "example_sentence_english": "She studied sociology at university.", + "pos": "noun", + "word_frequency": 6685 + }, + { + "word": "solidale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supportive;in solidarity", + "romanization": "solidale", + "example_sentence_native": "Dobbiamo essere solidali con chi è in difficoltà.", + "example_sentence_english": "We must be supportive of those in difficulty.", + "pos": "adjective", + "word_frequency": 6686 + }, + { + "word": "sospettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suspect", + "romanization": "sospettare", + "example_sentence_native": "Iniziò a sospettare della sua onestà.", + "example_sentence_english": "He began to suspect her honesty.", + "pos": "verb", + "word_frequency": 6687 + }, + { + "word": "spezzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break;to snap", + "romanization": "spezzare", + "example_sentence_native": "Ha spezzato il ramo con le mani.", + "example_sentence_english": "He broke the branch with his hands.", + "pos": "verb", + "word_frequency": 6688 + }, + { + "word": "superato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outdated;overcome;passed", + "romanization": "superato", + "example_sentence_native": "Questa tecnologia è ormai superata.", + "example_sentence_english": "This technology is now outdated.", + "pos": "adjective", + "word_frequency": 6689 + }, + { + "word": "telecomunicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telecommunication", + "romanization": "telecomunicazione", + "example_sentence_native": "Le telecomunicazioni sono essenziali nel mondo moderno.", + "example_sentence_english": "Telecommunications are essential in the modern world.", + "pos": "noun", + "word_frequency": 6690 + }, + { + "word": "tossico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toxic", + "romanization": "tossico", + "example_sentence_native": "Questa sostanza è tossica per l'ambiente.", + "example_sentence_english": "This substance is toxic to the environment.", + "pos": "adjective", + "word_frequency": 6692 + }, + { + "word": "trascrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transcription", + "romanization": "trascrizione", + "example_sentence_native": "La trascrizione del discorso è stata accurata.", + "example_sentence_english": "The transcription of the speech was accurate.", + "pos": "noun", + "word_frequency": 6693 + }, + { + "word": "trimestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarter (three-month period)", + "romanization": "trimestre", + "example_sentence_native": "Il primo trimestre dell'anno è stato molto produttivo.", + "example_sentence_english": "The first quarter of the year was very productive.", + "pos": "noun", + "word_frequency": 6694 + }, + { + "word": "umiltà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humility", + "romanization": "umiltà", + "example_sentence_native": "L'umiltà è una virtù importante.", + "example_sentence_english": "Humility is an important virtue.", + "pos": "noun", + "word_frequency": 6695 + }, + { + "word": "vecchiaia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old age", + "romanization": "vecchiaia", + "example_sentence_native": "La vecchiaia porta saggezza.", + "example_sentence_english": "Old age brings wisdom.", + "pos": "noun", + "word_frequency": 6698 + }, + { + "word": "vestire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dress;to wear", + "romanization": "vestire", + "example_sentence_native": "Mi piace vestire elegante.", + "example_sentence_english": "I like to dress elegantly.", + "pos": "verb", + "word_frequency": 6699 + }, + { + "word": "alcolico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alcoholic", + "romanization": "alcolico", + "example_sentence_native": "Non bevo bevande alcoliche.", + "example_sentence_english": "I don't drink alcoholic beverages.", + "pos": "adjective", + "word_frequency": 6701 + }, + { + "word": "allontanarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move away;to distance oneself", + "romanization": "allontanarsi", + "example_sentence_native": "Si è allontanato dalla folla.", + "example_sentence_english": "He moved away from the crowd.", + "pos": "verb", + "word_frequency": 6703 + }, + { + "word": "apprendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to learn;to acquire knowledge", + "romanization": "apprendere", + "example_sentence_native": "È importante apprendere nuove competenze.", + "example_sentence_english": "It is important to learn new skills.", + "pos": "verb", + "word_frequency": 6705 + }, + { + "word": "attaccante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attacker;forward (in sports)", + "romanization": "attaccante", + "example_sentence_native": "L'attaccante ha segnato un gol.", + "example_sentence_english": "The attacker scored a goal.", + "pos": "noun", + "word_frequency": 6706 + }, + { + "word": "attestare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attest;to certify;to confirm", + "romanization": "attestare", + "example_sentence_native": "Il documento attesta la sua identità.", + "example_sentence_english": "The document attests to his identity.", + "pos": "verb", + "word_frequency": 6707 + }, + { + "word": "avorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ivory", + "romanization": "avorio", + "example_sentence_native": "Ha un vestito color avorio.", + "example_sentence_english": "She has an ivory-colored dress.", + "pos": "noun", + "word_frequency": 6708 + }, + { + "word": "bacheca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulletin board;notice board", + "romanization": "bacheca", + "example_sentence_native": "Ho appeso l'annuncio sulla bacheca.", + "example_sentence_english": "I hung the announcement on the bulletin board.", + "pos": "noun", + "word_frequency": 6709 + }, + { + "word": "bagnare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wet;to soak", + "romanization": "bagnare", + "example_sentence_native": "Ha bagnato i fiori.", + "example_sentence_english": "He watered the flowers.", + "pos": "verb", + "word_frequency": 6710 + }, + { + "word": "batterio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bacterium", + "romanization": "batterio", + "example_sentence_native": "Alcuni batteri sono utili, altri dannosi.", + "example_sentence_english": "Some bacteria are useful, others harmful.", + "pos": "noun", + "word_frequency": 6711 + }, + { + "word": "calabrese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Calabrian (person from Calabria)", + "romanization": "calabrese", + "example_sentence_native": "È un calabrese orgoglioso delle sue origini.", + "example_sentence_english": "He is a Calabrian proud of his origins.", + "pos": "noun", + "word_frequency": 6712 + }, + { + "word": "cantone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canton (administrative division);corner", + "romanization": "cantone", + "example_sentence_native": "La Svizzera è divisa in cantoni.", + "example_sentence_english": "Switzerland is divided into cantons.", + "pos": "noun", + "word_frequency": 6714 + }, + { + "word": "caramella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "candy;sweet", + "romanization": "caramella", + "example_sentence_native": "Vuoi una caramella?", + "example_sentence_english": "Do you want a candy?", + "pos": "noun", + "word_frequency": 6715 + }, + { + "word": "casella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "box;square;cell (e.g.;mailbox;checkbox)", + "romanization": "casella", + "example_sentence_native": "Controlla la tua casella di posta elettronica.", + "example_sentence_english": "Check your email inbox.", + "pos": "noun", + "word_frequency": 6716 + }, + { + "word": "catastrofe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catastrophe", + "romanization": "catastrofe", + "example_sentence_native": "L'alluvione è stata una vera catastrofe.", + "example_sentence_english": "The flood was a real catastrophe.", + "pos": "noun", + "word_frequency": 6717 + }, + { + "word": "conforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compliant;conforming", + "romanization": "conforme", + "example_sentence_native": "Il prodotto è conforme agli standard di sicurezza.", + "example_sentence_english": "The product is compliant with safety standards.", + "pos": "adjective", + "word_frequency": 6718 + }, + { + "word": "consecutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consecutive", + "romanization": "consecutivo", + "example_sentence_native": "Ha vinto per il terzo anno consecutivo.", + "example_sentence_english": "He won for the third consecutive year.", + "pos": "adjective", + "word_frequency": 6719 + }, + { + "word": "convenzionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conventional", + "romanization": "convenzionale", + "example_sentence_native": "Il metodo convenzionale non ha funzionato.", + "example_sentence_english": "The conventional method did not work.", + "pos": "adjective", + "word_frequency": 6720 + }, + { + "word": "cosciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscious", + "romanization": "cosciente", + "example_sentence_native": "Era pienamente cosciente delle sue azioni.", + "example_sentence_english": "He was fully conscious of his actions.", + "pos": "adjective", + "word_frequency": 6721 + }, + { + "word": "cruciale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucial", + "romanization": "cruciale", + "example_sentence_native": "Questo è un punto cruciale per la nostra decisione.", + "example_sentence_english": "This is a crucial point for our decision.", + "pos": "adjective", + "word_frequency": 6722 + }, + { + "word": "economista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "economist", + "romanization": "economista", + "example_sentence_native": "L'economista ha presentato la sua analisi.", + "example_sentence_english": "The economist presented his analysis.", + "pos": "noun", + "word_frequency": 6728 + }, + { + "word": "editare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to edit", + "romanization": "editare", + "example_sentence_native": "Devo editare il video prima di pubblicarlo.", + "example_sentence_english": "I need to edit the video before publishing it.", + "pos": "verb", + "word_frequency": 6729 + }, + { + "word": "esaurire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exhaust;to run out of", + "romanization": "esaurire", + "example_sentence_native": "Le scorte di cibo stanno per esaurirsi.", + "example_sentence_english": "Food supplies are about to run out.", + "pos": "verb", + "word_frequency": 6731 + }, + { + "word": "fagiolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bean", + "romanization": "fagiolo", + "example_sentence_native": "Mi piacciono i fagioli con la pasta.", + "example_sentence_english": "I like beans with pasta.", + "pos": "noun", + "word_frequency": 6732 + }, + { + "word": "feroce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fierce;ferocious", + "romanization": "feroce", + "example_sentence_native": "Il leone è un animale feroce.", + "example_sentence_english": "The lion is a fierce animal.", + "pos": "adjective", + "word_frequency": 6733 + }, + { + "word": "galassia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galaxy", + "romanization": "galassia", + "example_sentence_native": "La nostra galassia si chiama Via Lattea.", + "example_sentence_english": "Our galaxy is called the Milky Way.", + "pos": "noun", + "word_frequency": 6735 + }, + { + "word": "garante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guarantor;ombudsman", + "romanization": "garante", + "example_sentence_native": "Il garante della privacy ha emesso un comunicato.", + "example_sentence_english": "The privacy ombudsman issued a statement.", + "pos": "noun", + "word_frequency": 6737 + }, + { + "word": "giornalistico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "journalistic", + "romanization": "giornalistico", + "example_sentence_native": "Ha intrapreso la carriera giornalistica.", + "example_sentence_english": "He embarked on a journalistic career.", + "pos": "adjective", + "word_frequency": 6738 + }, + { + "word": "imputare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to impute;to attribute;to charge", + "romanization": "imputare", + "example_sentence_native": "Gli hanno imputato la colpa dell'incidente.", + "example_sentence_english": "They imputed the blame for the accident to him.", + "pos": "verb", + "word_frequency": 6741 + }, + { + "word": "incerto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncertain;unsure", + "romanization": "incerto", + "example_sentence_native": "Il futuro è ancora incerto.", + "example_sentence_english": "The future is still uncertain.", + "pos": "adjective", + "word_frequency": 6742 + }, + { + "word": "intervallo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interval;break;intermission", + "romanization": "intervallo", + "example_sentence_native": "C'è un intervallo di dieci minuti tra gli atti.", + "example_sentence_english": "There's a ten-minute intermission between acts.", + "pos": "noun", + "word_frequency": 6743 + }, + { + "word": "intervistare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interview", + "romanization": "intervistare", + "example_sentence_native": "Il giornalista ha intervistato il politico.", + "example_sentence_english": "The journalist interviewed the politician.", + "pos": "verb", + "word_frequency": 6744 + }, + { + "word": "laico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lay;secular", + "romanization": "laico", + "example_sentence_native": "Lo stato italiano è uno stato laico.", + "example_sentence_english": "The Italian state is a secular state.", + "pos": "adjective", + "word_frequency": 6746 + }, + { + "word": "lealtà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loyalty", + "romanization": "lealtà", + "example_sentence_native": "La lealtà è una qualità importante.", + "example_sentence_english": "Loyalty is an important quality.", + "pos": "noun", + "word_frequency": 6747 + }, + { + "word": "liquidazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liquidation;clearance sale;severance pay", + "romanization": "liquidazione", + "example_sentence_native": "Il negozio è in liquidazione per chiusura.", + "example_sentence_english": "The shop is in liquidation for closure.", + "pos": "noun", + "word_frequency": 6749 + }, + { + "word": "menzogna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lie;falsehood", + "romanization": "menzogna", + "example_sentence_native": "Ha detto una menzogna per nascondere la verità.", + "example_sentence_english": "He told a lie to hide the truth.", + "pos": "noun", + "word_frequency": 6751 + }, + { + "word": "moralità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morality", + "romanization": "moralità", + "example_sentence_native": "La moralità delle sue azioni è discutibile.", + "example_sentence_english": "The morality of his actions is questionable.", + "pos": "noun", + "word_frequency": 6752 + }, + { + "word": "moschea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosque", + "romanization": "moschea", + "example_sentence_native": "Abbiamo visitato una bellissima moschea a Istanbul.", + "example_sentence_english": "We visited a beautiful mosque in Istanbul.", + "pos": "noun", + "word_frequency": 6753 + }, + { + "word": "muso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snout;muzzle", + "romanization": "muso", + "example_sentence_native": "Il cane ha un muso simpatico.", + "example_sentence_english": "The dog has a cute snout.", + "pos": "noun", + "word_frequency": 6755 + }, + { + "word": "onere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burden;charge;onus", + "romanization": "onere", + "example_sentence_native": "L'onere della prova spetta all'accusa.", + "example_sentence_english": "The burden of proof lies with the prosecution.", + "pos": "noun", + "word_frequency": 6759 + }, + { + "word": "onorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to honor", + "romanization": "onorare", + "example_sentence_native": "Dobbiamo onorare la memoria dei nostri antenati.", + "example_sentence_english": "We must honor the memory of our ancestors.", + "pos": "verb", + "word_frequency": 6760 + }, + { + "word": "ottone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brass", + "romanization": "ottone", + "example_sentence_native": "La statua era fatta di ottone lucido.", + "example_sentence_english": "The statue was made of polished brass.", + "pos": "noun", + "word_frequency": 6761 + }, + { + "word": "prenotare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to book;to reserve", + "romanization": "prenotare", + "example_sentence_native": "Vorrei prenotare un tavolo per due stasera.", + "example_sentence_english": "I would like to book a table for two tonight.", + "pos": "verb", + "word_frequency": 6762 + }, + { + "word": "prigionia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivity;imprisonment", + "romanization": "prigionia", + "example_sentence_native": "Ha trascorso molti anni in prigionia.", + "example_sentence_english": "He spent many years in captivity.", + "pos": "noun", + "word_frequency": 6763 + }, + { + "word": "protestante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestant", + "romanization": "protestante", + "example_sentence_native": "La comunità protestante è molto attiva in quella città.", + "example_sentence_english": "The Protestant community is very active in that city.", + "pos": "noun", + "word_frequency": 6764 + }, + { + "word": "puntualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctually;on time", + "romanization": "puntualmente", + "example_sentence_native": "È arrivato puntualmente all'appuntamento.", + "example_sentence_english": "He arrived punctually for the appointment.", + "pos": "adverb", + "word_frequency": 6766 + }, + { + "word": "quinta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fifth (e.g.;musical interval);stage wing", + "romanization": "quinta", + "example_sentence_native": "L'attore è entrato in scena dalla quinta.", + "example_sentence_english": "The actor entered the stage from the wing.", + "pos": "noun", + "word_frequency": 6767 + }, + { + "word": "ragno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spider", + "romanization": "ragno", + "example_sentence_native": "C'è un ragno sul soffitto.", + "example_sentence_english": "There's a spider on the ceiling.", + "pos": "noun", + "word_frequency": 6768 + }, + { + "word": "rancore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment;grudge", + "romanization": "rancore", + "example_sentence_native": "Non nutre alcun rancore nei suoi confronti.", + "example_sentence_english": "He holds no resentment towards him.", + "pos": "noun", + "word_frequency": 6769 + }, + { + "word": "rango", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rank;status", + "romanization": "rango", + "example_sentence_native": "Ha raggiunto un alto rango nell'esercito.", + "example_sentence_english": "He reached a high rank in the army.", + "pos": "noun", + "word_frequency": 6770 + }, + { + "word": "reciproco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reciprocal;mutual", + "romanization": "reciproco", + "example_sentence_native": "Hanno mostrato rispetto reciproco.", + "example_sentence_english": "They showed mutual respect.", + "pos": "adjective", + "word_frequency": 6771 + }, + { + "word": "rene", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kidney", + "romanization": "rene", + "example_sentence_native": "Il dolore al rene era insopportabile.", + "example_sentence_english": "The kidney pain was unbearable.", + "pos": "noun", + "word_frequency": 6772 + }, + { + "word": "restante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "remaining;rest of", + "romanization": "restante", + "example_sentence_native": "Dobbiamo finire il lavoro restante entro stasera.", + "example_sentence_english": "We need to finish the remaining work by tonight.", + "pos": "adjective", + "word_frequency": 6773 + }, + { + "word": "sacchetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small bag;sachet", + "romanization": "sacchetto", + "example_sentence_native": "Mi dia un sacchetto per la spesa, per favore.", + "example_sentence_english": "Give me a shopping bag, please.", + "pos": "noun", + "word_frequency": 6774 + }, + { + "word": "santità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "holiness;sanctity", + "romanization": "santità", + "example_sentence_native": "La santità della vita è un principio fondamentale.", + "example_sentence_english": "The sanctity of life is a fundamental principle.", + "pos": "noun", + "word_frequency": 6776 + }, + { + "word": "sconvolgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to upset;to disrupt;to shock", + "romanization": "sconvolgere", + "example_sentence_native": "La notizia ha sconvolto tutti.", + "example_sentence_english": "The news shocked everyone.", + "pos": "verb", + "word_frequency": 6777 + }, + { + "word": "scout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scout", + "romanization": "scout", + "example_sentence_native": "I ragazzi scout hanno organizzato un campo estivo.", + "example_sentence_english": "The scout boys organized a summer camp.", + "pos": "noun", + "word_frequency": 6778 + }, + { + "word": "sedile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seat", + "romanization": "sedile", + "example_sentence_native": "Per favore, prendi posto sul sedile posteriore.", + "example_sentence_english": "Please take a seat in the back.", + "pos": "noun", + "word_frequency": 6779 + }, + { + "word": "senzatetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeless person", + "romanization": "senzatetto", + "example_sentence_native": "Molte associazioni aiutano i senzatetto in città.", + "example_sentence_english": "Many associations help homeless people in the city.", + "pos": "noun", + "word_frequency": 6780 + }, + { + "word": "serbatoio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tank;reservoir", + "romanization": "serbatoio", + "example_sentence_native": "Il serbatoio della macchina è quasi vuoto.", + "example_sentence_english": "The car's tank is almost empty.", + "pos": "noun", + "word_frequency": 6781 + }, + { + "word": "soddisfacente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satisfactory;satisfying", + "romanization": "soddisfacente", + "example_sentence_native": "I risultati sono stati molto soddisfacenti.", + "example_sentence_english": "The results were very satisfactory.", + "pos": "adjective", + "word_frequency": 6782 + }, + { + "word": "specificamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifically", + "romanization": "specificamente", + "example_sentence_native": "Ha chiesto specificamente di te.", + "example_sentence_english": "He specifically asked for you.", + "pos": "adverb", + "word_frequency": 6783 + }, + { + "word": "storto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crooked;bent;twisted", + "romanization": "storto", + "example_sentence_native": "Il quadro è appeso un po' storto.", + "example_sentence_english": "The painting is hung a bit crooked.", + "pos": "adjective", + "word_frequency": 6784 + }, + { + "word": "strumentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instrumental", + "romanization": "strumentale", + "example_sentence_native": "La sua collaborazione è stata strumentale al successo del progetto.", + "example_sentence_english": "His collaboration was instrumental to the project's success.", + "pos": "adjective", + "word_frequency": 6785 + }, + { + "word": "stufa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stove;heater", + "romanization": "stufa", + "example_sentence_native": "Accendi la stufa, fa freddo.", + "example_sentence_english": "Turn on the heater, it's cold.", + "pos": "noun", + "word_frequency": 6786 + }, + { + "word": "stupidità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupidity", + "romanization": "stupidità", + "example_sentence_native": "Non sopporto la sua stupidità.", + "example_sentence_english": "I can't stand his stupidity.", + "pos": "noun", + "word_frequency": 6787 + }, + { + "word": "tenero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tender;soft;gentle", + "romanization": "tenero", + "example_sentence_native": "La carne era molto tenera.", + "example_sentence_english": "The meat was very tender.", + "pos": "adjective", + "word_frequency": 6790 + }, + { + "word": "teso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tense;tight", + "romanization": "teso", + "example_sentence_native": "Era molto teso prima dell'esame.", + "example_sentence_english": "He was very tense before the exam.", + "pos": "adjective", + "word_frequency": 6791 + }, + { + "word": "tessere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weave;to plot", + "romanization": "tessere", + "example_sentence_native": "La nonna amava tessere coperte di lana.", + "example_sentence_english": "Grandma loved to weave wool blankets.", + "pos": "verb", + "word_frequency": 6792 + }, + { + "word": "tinta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dye;tint;shade", + "romanization": "tinta", + "example_sentence_native": "Ha cambiato la tinta dei capelli.", + "example_sentence_english": "She changed her hair dye.", + "pos": "noun", + "word_frequency": 6793 + }, + { + "word": "torinese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "person from Turin;Turinese", + "romanization": "torinese", + "example_sentence_native": "È un torinese doc.", + "example_sentence_english": "He is a true Turinese.", + "pos": "noun", + "word_frequency": 6794 + }, + { + "word": "tracciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trace;to track;to draw", + "romanization": "tracciare", + "example_sentence_native": "Dobbiamo tracciare l'origine del problema.", + "example_sentence_english": "We need to trace the origin of the problem.", + "pos": "verb", + "word_frequency": 6795 + }, + { + "word": "trasformarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to transform (oneself);to turn into", + "romanization": "trasformarsi", + "example_sentence_native": "Il bruco si è trasformato in farfalla.", + "example_sentence_english": "The caterpillar transformed into a butterfly.", + "pos": "verb", + "word_frequency": 6797 + }, + { + "word": "trazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traction;drive", + "romanization": "trazione", + "example_sentence_native": "Questa macchina ha la trazione integrale.", + "example_sentence_english": "This car has all-wheel drive.", + "pos": "noun", + "word_frequency": 6798 + }, + { + "word": "tribuna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grandstand;tribune", + "romanization": "tribuna", + "example_sentence_native": "Ci siamo seduti in tribuna per vedere la partita.", + "example_sentence_english": "We sat in the grandstand to watch the game.", + "pos": "noun", + "word_frequency": 6799 + }, + { + "word": "uccisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "killing;murder", + "romanization": "uccisione", + "example_sentence_native": "L'uccisione dell'animale è stata un atto crudele.", + "example_sentence_english": "The killing of the animal was a cruel act.", + "pos": "noun", + "word_frequency": 6800 + }, + { + "word": "urbanistica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urban planning", + "romanization": "urbanistica", + "example_sentence_native": "La nuova legge sull'urbanistica cambierà il volto della città.", + "example_sentence_english": "The new law on urban planning will change the face of the city.", + "pos": "noun", + "word_frequency": 6801 + }, + { + "word": "valenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valence;value;significance", + "romanization": "valenza", + "example_sentence_native": "La sua opinione ha una grande valenza per me.", + "example_sentence_english": "His opinion has great significance for me.", + "pos": "noun", + "word_frequency": 6803 + }, + { + "word": "vergognoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shameful;disgraceful", + "romanization": "vergognoso", + "example_sentence_native": "È stato un comportamento vergognoso.", + "example_sentence_english": "It was shameful behavior.", + "pos": "adjective", + "word_frequency": 6804 + }, + { + "word": "verificarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to occur;to happen;to take place", + "romanization": "verificarsi", + "example_sentence_native": "L'incidente si è verificato ieri sera.", + "example_sentence_english": "The accident occurred last night.", + "pos": "verb", + "word_frequency": 6805 + }, + { + "word": "violare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to violate;to break", + "romanization": "violare", + "example_sentence_native": "Non dovresti violare le regole.", + "example_sentence_english": "You shouldn't violate the rules.", + "pos": "verb", + "word_frequency": 6806 + }, + { + "word": "violino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violin", + "romanization": "violino", + "example_sentence_native": "Suona il violino da quando era bambino.", + "example_sentence_english": "He has played the violin since he was a child.", + "pos": "noun", + "word_frequency": 6807 + }, + { + "word": "zecca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tick (insect);mint (coin factory)", + "romanization": "zecca", + "example_sentence_native": "Il cane aveva una zecca sull'orecchio.", + "example_sentence_english": "The dog had a tick on its ear.", + "pos": "noun", + "word_frequency": 6810 + }, + { + "word": "allegro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cheerful;happy", + "romanization": "allegro", + "example_sentence_native": "È sempre una persona allegra.", + "example_sentence_english": "He is always a cheerful person.", + "pos": "adjective", + "word_frequency": 6813 + }, + { + "word": "ambulanza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ambulance", + "romanization": "ambulanza", + "example_sentence_native": "Abbiamo chiamato l'ambulanza dopo l'incidente.", + "example_sentence_english": "We called the ambulance after the accident.", + "pos": "noun", + "word_frequency": 6814 + }, + { + "word": "archeologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archeology", + "romanization": "archeologia", + "example_sentence_native": "Ha studiato archeologia all'università.", + "example_sentence_english": "She studied archeology at university.", + "pos": "noun", + "word_frequency": 6816 + }, + { + "word": "attivista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activist", + "romanization": "attivista", + "example_sentence_native": "È un attivista per i diritti umani.", + "example_sentence_english": "He is a human rights activist.", + "pos": "noun", + "word_frequency": 6817 + }, + { + "word": "barista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barista", + "romanization": "barista", + "example_sentence_native": "Il barista ci ha preparato un ottimo caffè.", + "example_sentence_english": "The barista prepared us an excellent coffee.", + "pos": "noun", + "word_frequency": 6818 + }, + { + "word": "borghesia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bourgeoisie", + "romanization": "borghesia", + "example_sentence_native": "La borghesia ha avuto un ruolo chiave nella rivoluzione.", + "example_sentence_english": "The bourgeoisie played a key role in the revolution.", + "pos": "noun", + "word_frequency": 6821 + }, + { + "word": "botto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bang;pop;crash", + "romanization": "botto", + "example_sentence_native": "Abbiamo sentito un forte botto dalla strada.", + "example_sentence_english": "We heard a loud bang from the street.", + "pos": "noun", + "word_frequency": 6822 + }, + { + "word": "camino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fireplace;chimney", + "romanization": "camino", + "example_sentence_native": "Accendiamo il fuoco nel camino stasera.", + "example_sentence_english": "Let's light the fire in the fireplace tonight.", + "pos": "noun", + "word_frequency": 6823 + }, + { + "word": "cardiaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiac;heart-related", + "romanization": "cardiaco", + "example_sentence_native": "Ha avuto un attacco cardiaco.", + "example_sentence_english": "He had a cardiac arrest.", + "pos": "adjective", + "word_frequency": 6824 + }, + { + "word": "carrozza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carriage;coach", + "romanization": "carrozza", + "example_sentence_native": "La carrozza del treno era molto affollata.", + "example_sentence_english": "The train carriage was very crowded.", + "pos": "noun", + "word_frequency": 6825 + }, + { + "word": "confrontare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compare;to confront", + "romanization": "confrontare", + "example_sentence_native": "Dobbiamo confrontare i prezzi prima di comprare.", + "example_sentence_english": "We need to compare prices before buying.", + "pos": "verb", + "word_frequency": 6826 + }, + { + "word": "coniuge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spouse", + "romanization": "coniuge", + "example_sentence_native": "Il coniuge del defunto ha ereditato la proprietà.", + "example_sentence_english": "The deceased's spouse inherited the property.", + "pos": "noun", + "word_frequency": 6827 + }, + { + "word": "convocato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convened;summoned", + "romanization": "convocato", + "example_sentence_native": "Il consiglio è stato convocato per una riunione urgente.", + "example_sentence_english": "The council was convened for an urgent meeting.", + "pos": "adjective", + "word_frequency": 6828 + }, + { + "word": "delega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delegation;proxy", + "romanization": "delega", + "example_sentence_native": "Ho ricevuto una delega per firmare il contratto.", + "example_sentence_english": "I received a delegation to sign the contract.", + "pos": "noun", + "word_frequency": 6832 + }, + { + "word": "destinatario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recipient;addressee", + "romanization": "destinatario", + "example_sentence_native": "Il destinatario del pacco non era in casa.", + "example_sentence_english": "The recipient of the package was not at home.", + "pos": "noun", + "word_frequency": 6835 + }, + { + "word": "difensivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defensive", + "romanization": "difensivo", + "example_sentence_native": "La squadra ha adottato un approccio difensivo.", + "example_sentence_english": "The team adopted a defensive approach.", + "pos": "adjective", + "word_frequency": 6836 + }, + { + "word": "dissenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissent;disagreement", + "romanization": "dissenso", + "example_sentence_native": "C'è stato un forte dissenso sulla proposta.", + "example_sentence_english": "There was strong dissent on the proposal.", + "pos": "noun", + "word_frequency": 6837 + }, + { + "word": "documentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to document", + "romanization": "documentare", + "example_sentence_native": "È importante documentare ogni fase del progetto.", + "example_sentence_english": "It is important to document every phase of the project.", + "pos": "verb", + "word_frequency": 6838 + }, + { + "word": "domiciliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "domiciliary;home-based", + "romanization": "domiciliare", + "example_sentence_native": "Ha ricevuto gli arresti domiciliari.", + "example_sentence_english": "He received house arrest.", + "pos": "adjective", + "word_frequency": 6839 + }, + { + "word": "doppiaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dubbing", + "romanization": "doppiaggio", + "example_sentence_native": "Il doppiaggio dei film stranieri è molto comune in Italia.", + "example_sentence_english": "The dubbing of foreign films is very common in Italy.", + "pos": "noun", + "word_frequency": 6840 + }, + { + "word": "equo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fair;equitable", + "romanization": "equo", + "example_sentence_native": "Vogliamo un trattamento equo per tutti.", + "example_sentence_english": "We want fair treatment for everyone.", + "pos": "adjective", + "word_frequency": 6843 + }, + { + "word": "femminismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminism", + "romanization": "femminismo", + "example_sentence_native": "Il femminismo ha avuto un impatto significativo sulla società.", + "example_sentence_english": "Feminism has had a significant impact on society.", + "pos": "noun", + "word_frequency": 6844 + }, + { + "word": "festeggiamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "celebration", + "romanization": "festeggiamento", + "example_sentence_native": "Il festeggiamento è durato fino a tarda notte.", + "example_sentence_english": "The celebration lasted until late at night.", + "pos": "noun", + "word_frequency": 6845 + }, + { + "word": "fulmine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lightning;thunderbolt", + "romanization": "fulmine", + "example_sentence_native": "Un fulmine ha colpito l'albero durante il temporale.", + "example_sentence_english": "A lightning bolt struck the tree during the storm.", + "pos": "noun", + "word_frequency": 6849 + }, + { + "word": "granata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grenade;maroon (color)", + "romanization": "granata", + "example_sentence_native": "Il soldato ha lanciato una granata. La squadra gioca con maglie granata.", + "example_sentence_english": "The soldier threw a grenade. The team plays in maroon jerseys.", + "pos": "noun", + "word_frequency": 6851 + }, + { + "word": "idraulico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plumber", + "romanization": "idraulico", + "example_sentence_native": "Abbiamo chiamato l'idraulico per riparare il rubinetto che perde.", + "example_sentence_english": "We called the plumber to fix the leaking faucet.", + "pos": "noun", + "word_frequency": 6852 + }, + { + "word": "imbecille", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imbecile;idiot", + "romanization": "imbecille", + "example_sentence_native": "Non fare l'imbecille!", + "example_sentence_english": "Don't be an imbecile!", + "pos": "noun", + "word_frequency": 6853 + }, + { + "word": "importazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "import;importation", + "romanization": "importazione", + "example_sentence_native": "L'importazione di prodotti stranieri è aumentata.", + "example_sentence_english": "The import of foreign products has increased.", + "pos": "noun", + "word_frequency": 6854 + }, + { + "word": "inchiostro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ink", + "romanization": "inchiostro", + "example_sentence_native": "La stampante ha finito l'inchiostro.", + "example_sentence_english": "The printer ran out of ink.", + "pos": "noun", + "word_frequency": 6855 + }, + { + "word": "insolito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unusual;uncommon", + "romanization": "insolito", + "example_sentence_native": "È stata una situazione insolita.", + "example_sentence_english": "It was an unusual situation.", + "pos": "adjective", + "word_frequency": 6856 + }, + { + "word": "interrogatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogation;questioning", + "romanization": "interrogatorio", + "example_sentence_native": "L'imputato è stato sottoposto a un lungo interrogatorio.", + "example_sentence_english": "The defendant underwent a long interrogation.", + "pos": "noun", + "word_frequency": 6857 + }, + { + "word": "irruzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid;break-in", + "romanization": "irruzione", + "example_sentence_native": "La polizia ha fatto un'irruzione nell'appartamento.", + "example_sentence_english": "The police conducted a raid on the apartment.", + "pos": "noun", + "word_frequency": 6858 + }, + { + "word": "istruttore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instructor;trainer", + "romanization": "istruttore", + "example_sentence_native": "L'istruttore di guida mi ha insegnato a parcheggiare.", + "example_sentence_english": "The driving instructor taught me how to park.", + "pos": "noun", + "word_frequency": 6859 + }, + { + "word": "lido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lido;beach resort", + "romanization": "lido", + "example_sentence_native": "Abbiamo passato la giornata al lido.", + "example_sentence_english": "We spent the day at the lido.", + "pos": "noun", + "word_frequency": 6865 + }, + { + "word": "manodopera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labor;workforce", + "romanization": "manodopera", + "example_sentence_native": "C'è carenza di manodopera qualificata.", + "example_sentence_english": "There is a shortage of skilled labor.", + "pos": "noun", + "word_frequency": 6866 + }, + { + "word": "manoscritto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manuscript", + "romanization": "manoscritto", + "example_sentence_native": "Il manoscritto originale è conservato in biblioteca.", + "example_sentence_english": "The original manuscript is preserved in the library.", + "pos": "noun", + "word_frequency": 6867 + }, + { + "word": "mantello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloak;cape", + "romanization": "mantello", + "example_sentence_native": "Il supereroe indossava un mantello rosso.", + "example_sentence_english": "The superhero wore a red cloak.", + "pos": "noun", + "word_frequency": 6868 + }, + { + "word": "mentalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mentally", + "romanization": "mentalmente", + "example_sentence_native": "Si sentiva mentalmente esausto dopo l'esame.", + "example_sentence_english": "He felt mentally exhausted after the exam.", + "pos": "adverb", + "word_frequency": 6869 + }, + { + "word": "ministeriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ministerial", + "romanization": "ministeriale", + "example_sentence_native": "È stata emessa una direttiva ministeriale.", + "example_sentence_english": "A ministerial directive was issued.", + "pos": "adjective", + "word_frequency": 6870 + }, + { + "word": "muto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mute;silent", + "romanization": "muto", + "example_sentence_native": "Il film era muto, senza dialoghi.", + "example_sentence_english": "The film was mute, without dialogue.", + "pos": "adjective", + "word_frequency": 6871 + }, + { + "word": "noleggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rental;hire", + "romanization": "noleggio", + "example_sentence_native": "Abbiamo preso un'auto a noleggio per il viaggio.", + "example_sentence_english": "We rented a car for the trip.", + "pos": "noun", + "word_frequency": 6872 + }, + { + "word": "ottimismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optimism", + "romanization": "ottimismo", + "example_sentence_native": "Il suo ottimismo è contagioso.", + "example_sentence_english": "His optimism is contagious.", + "pos": "noun", + "word_frequency": 6874 + }, + { + "word": "peperoncino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chili pepper", + "romanization": "peperoncino", + "example_sentence_native": "Mi piace aggiungere il peperoncino alla pasta.", + "example_sentence_english": "I like to add chili pepper to pasta.", + "pos": "noun", + "word_frequency": 6875 + }, + { + "word": "poema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poem;epic poem", + "romanization": "poema", + "example_sentence_native": "Ha scritto un lungo poema sulla natura.", + "example_sentence_english": "He wrote a long poem about nature.", + "pos": "noun", + "word_frequency": 6876 + }, + { + "word": "precoce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precocious;early", + "romanization": "precoce", + "example_sentence_native": "È un bambino molto precoce per la sua età.", + "example_sentence_english": "He is a very precocious child for his age.", + "pos": "adjective", + "word_frequency": 6877 + }, + { + "word": "presunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presumed;alleged", + "romanization": "presunto", + "example_sentence_native": "Il presunto colpevole è stato arrestato.", + "example_sentence_english": "The presumed culprit has been arrested.", + "pos": "adjective", + "word_frequency": 6878 + }, + { + "word": "razziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racial", + "romanization": "razziale", + "example_sentence_native": "La discriminazione razziale è un problema serio.", + "example_sentence_english": "Racial discrimination is a serious problem.", + "pos": "adjective", + "word_frequency": 6880 + }, + { + "word": "riunire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reunite;to gather", + "romanization": "riunire", + "example_sentence_native": "Dobbiamo riunire tutti i documenti necessari.", + "example_sentence_english": "We need to gather all the necessary documents.", + "pos": "verb", + "word_frequency": 6881 + }, + { + "word": "riviera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "riviera;coast", + "romanization": "riviera", + "example_sentence_native": "La Riviera Ligure è famosa per i suoi paesaggi.", + "example_sentence_english": "The Ligurian Riviera is famous for its landscapes.", + "pos": "noun", + "word_frequency": 6882 + }, + { + "word": "sbarco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing;disembarkation", + "romanization": "sbarco", + "example_sentence_native": "Lo sbarco in Normandia fu un evento cruciale.", + "example_sentence_english": "The landing in Normandy was a crucial event.", + "pos": "noun", + "word_frequency": 6885 + }, + { + "word": "secchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bucket", + "romanization": "secchio", + "example_sentence_native": "Prendi il secchio per l'acqua.", + "example_sentence_english": "Take the bucket for the water.", + "pos": "noun", + "word_frequency": 6886 + }, + { + "word": "seicento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seventeenth century;1600s", + "romanization": "seicento", + "example_sentence_native": "L'arte del Seicento è ricca di capolavori.", + "example_sentence_english": "Seventeenth-century art is rich in masterpieces.", + "pos": "noun", + "word_frequency": 6887 + }, + { + "word": "silenzioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silent;quiet", + "romanization": "silenzioso", + "example_sentence_native": "Il gatto si muoveva in modo silenzioso.", + "example_sentence_english": "The cat moved silently.", + "pos": "adjective", + "word_frequency": 6888 + }, + { + "word": "sisma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthquake;seismic event", + "romanization": "sisma", + "example_sentence_native": "Il sisma ha causato gravi danni.", + "example_sentence_english": "The earthquake caused serious damage.", + "pos": "noun", + "word_frequency": 6889 + }, + { + "word": "somiglianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resemblance;similarity", + "romanization": "somiglianza", + "example_sentence_native": "C'è una forte somiglianza tra i due fratelli.", + "example_sentence_english": "There is a strong resemblance between the two brothers.", + "pos": "noun", + "word_frequency": 6890 + }, + { + "word": "sottosegretario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undersecretary", + "romanization": "sottosegretario", + "example_sentence_native": "Il sottosegretario ha rilasciato una dichiarazione.", + "example_sentence_english": "The undersecretary released a statement.", + "pos": "noun", + "word_frequency": 6892 + }, + { + "word": "stagionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seasonal", + "romanization": "stagionale", + "example_sentence_native": "I prodotti stagionali sono più freschi.", + "example_sentence_english": "Seasonal products are fresher.", + "pos": "adjective", + "word_frequency": 6895 + }, + { + "word": "sussidio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidy;allowance;aid", + "romanization": "sussidio", + "example_sentence_native": "Il governo ha approvato un sussidio per le famiglie.", + "example_sentence_english": "The government approved an allowance for families.", + "pos": "noun", + "word_frequency": 6896 + }, + { + "word": "tacco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heel (of a shoe);tack", + "romanization": "tacco", + "example_sentence_native": "Ha rotto il tacco della scarpa.", + "example_sentence_english": "She broke the heel of her shoe.", + "pos": "noun", + "word_frequency": 6898 + }, + { + "word": "testimoniare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to testify;to bear witness", + "romanization": "testimoniare", + "example_sentence_native": "Ha dovuto testimoniare in tribunale.", + "example_sentence_english": "He had to testify in court.", + "pos": "verb", + "word_frequency": 6900 + }, + { + "word": "tromba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trumpet;hose;waterspout", + "romanization": "tromba", + "example_sentence_native": "Suona la tromba in una banda.", + "example_sentence_english": "He plays the trumpet in a band.", + "pos": "noun", + "word_frequency": 6902 + }, + { + "word": "tubercolosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tuberculosis", + "romanization": "tubercolosi", + "example_sentence_native": "La tubercolosi è una malattia grave.", + "example_sentence_english": "Tuberculosis is a serious disease.", + "pos": "noun", + "word_frequency": 6903 + }, + { + "word": "umido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humid;damp;wet", + "romanization": "umido", + "example_sentence_native": "L'aria è molto umida oggi.", + "example_sentence_english": "The air is very humid today.", + "pos": "adjective", + "word_frequency": 6904 + }, + { + "word": "vicario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vicar;deputy", + "romanization": "vicario", + "example_sentence_native": "Il vicario del parroco è arrivato.", + "example_sentence_english": "The parish priest's vicar has arrived.", + "pos": "noun", + "word_frequency": 6905 + }, + { + "word": "apostolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apostle", + "romanization": "apostolo", + "example_sentence_native": "San Pietro fu un apostolo di Gesù.", + "example_sentence_english": "Saint Peter was an apostle of Jesus.", + "pos": "noun", + "word_frequency": 6910 + }, + { + "word": "attivazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activation", + "romanization": "attivazione", + "example_sentence_native": "L'attivazione del servizio richiede pochi minuti.", + "example_sentence_english": "The activation of the service takes a few minutes.", + "pos": "noun", + "word_frequency": 6911 + }, + { + "word": "attribuzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attribution;assignment", + "romanization": "attribuzione", + "example_sentence_native": "L'attribuzione della responsabilità è complessa.", + "example_sentence_english": "The attribution of responsibility is complex.", + "pos": "noun", + "word_frequency": 6912 + }, + { + "word": "avvento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advent;arrival", + "romanization": "avvento", + "example_sentence_native": "L'avvento della tecnologia ha cambiato il mondo.", + "example_sentence_english": "The advent of technology has changed the world.", + "pos": "noun", + "word_frequency": 6914 + }, + { + "word": "biella", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connecting rod;crank", + "romanization": "biella", + "example_sentence_native": "La biella è un componente del motore.", + "example_sentence_english": "The connecting rod is an engine component.", + "pos": "noun", + "word_frequency": 6917 + }, + { + "word": "brutale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutal", + "romanization": "brutale", + "example_sentence_native": "Ha subito un attacco brutale.", + "example_sentence_english": "He suffered a brutal attack.", + "pos": "adjective", + "word_frequency": 6919 + }, + { + "word": "buca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hole;pit", + "romanization": "buca", + "example_sentence_native": "C'è una buca nella strada.", + "example_sentence_english": "There's a hole in the road.", + "pos": "noun", + "word_frequency": 6920 + }, + { + "word": "caloria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calorie", + "romanization": "caloria", + "example_sentence_native": "Questa bevanda ha molte calorie.", + "example_sentence_english": "This drink has many calories.", + "pos": "noun", + "word_frequency": 6921 + }, + { + "word": "calza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sock;stocking", + "romanization": "calza", + "example_sentence_native": "Ho comprato un nuovo paio di calze.", + "example_sentence_english": "I bought a new pair of socks.", + "pos": "noun", + "word_frequency": 6922 + }, + { + "word": "colorazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coloring;coloration", + "romanization": "colorazione", + "example_sentence_native": "La colorazione dei capelli può danneggiarli.", + "example_sentence_english": "Hair coloring can damage them.", + "pos": "noun", + "word_frequency": 6927 + }, + { + "word": "complicazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complication", + "romanization": "complicazione", + "example_sentence_native": "Ci sono state alcune complicazioni durante l'operazione.", + "example_sentence_english": "There were some complications during the operation.", + "pos": "noun", + "word_frequency": 6928 + }, + { + "word": "conseguire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to achieve;to obtain", + "romanization": "conseguire", + "example_sentence_native": "Ha conseguito la laurea con il massimo dei voti.", + "example_sentence_english": "He achieved his degree with top marks.", + "pos": "verb", + "word_frequency": 6929 + }, + { + "word": "convivere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to live together;to coexist", + "romanization": "convivere", + "example_sentence_native": "È importante imparare a convivere con le differenze.", + "example_sentence_english": "It's important to learn to coexist with differences.", + "pos": "verb", + "word_frequency": 6930 + }, + { + "word": "crudeltà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cruelty", + "romanization": "crudeltà", + "example_sentence_native": "La crudeltà verso gli animali è inaccettabile.", + "example_sentence_english": "Cruelty towards animals is unacceptable.", + "pos": "noun", + "word_frequency": 6931 + }, + { + "word": "culla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cradle;crib", + "romanization": "culla", + "example_sentence_native": "Il bambino dorme nella sua culla.", + "example_sentence_english": "The baby is sleeping in his crib.", + "pos": "noun", + "word_frequency": 6932 + }, + { + "word": "diffamazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "defamation", + "romanization": "diffamazione", + "example_sentence_native": "È stato accusato di diffamazione.", + "example_sentence_english": "He was accused of defamation.", + "pos": "noun", + "word_frequency": 6934 + }, + { + "word": "disgrazia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misfortune;disgrace", + "romanization": "disgrazia", + "example_sentence_native": "È stata una disgrazia che nessuno si aspettava.", + "example_sentence_english": "It was a misfortune that no one expected.", + "pos": "noun", + "word_frequency": 6935 + }, + { + "word": "dotazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endowment;equipment;provision", + "romanization": "dotazione", + "example_sentence_native": "L'ufficio ha una nuova dotazione di computer.", + "example_sentence_english": "The office has new computer equipment.", + "pos": "noun", + "word_frequency": 6936 + }, + { + "word": "ducato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "duchy;ducat (coin)", + "romanization": "ducato", + "example_sentence_native": "Il ducato di Milano era molto potente.", + "example_sentence_english": "The Duchy of Milan was very powerful.", + "pos": "noun", + "word_frequency": 6937 + }, + { + "word": "emergente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerging;nascent", + "romanization": "emergente", + "example_sentence_native": "È un artista emergente nel panorama musicale.", + "example_sentence_english": "He is an emerging artist in the music scene.", + "pos": "adjective", + "word_frequency": 6942 + }, + { + "word": "emigrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emigration", + "romanization": "emigrazione", + "example_sentence_native": "L'emigrazione è un fenomeno complesso.", + "example_sentence_english": "Emigration is a complex phenomenon.", + "pos": "noun", + "word_frequency": 6943 + }, + { + "word": "errato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrong;incorrect", + "romanization": "errato", + "example_sentence_native": "La risposta che hai dato è errata.", + "example_sentence_english": "The answer you gave is wrong.", + "pos": "adjective", + "word_frequency": 6945 + }, + { + "word": "fabbisogno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "need;requirement;demand", + "romanization": "fabbisogno", + "example_sentence_native": "Il fabbisogno energetico del paese è in aumento.", + "example_sentence_english": "The country's energy demand is increasing.", + "pos": "noun", + "word_frequency": 6948 + }, + { + "word": "frate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "friar;monk", + "romanization": "frate", + "example_sentence_native": "Il frate viveva in un monastero.", + "example_sentence_english": "The friar lived in a monastery.", + "pos": "noun", + "word_frequency": 6949 + }, + { + "word": "getto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jet;spurt;throw", + "romanization": "getto", + "example_sentence_native": "Un getto d'acqua ha colpito la finestra.", + "example_sentence_english": "A jet of water hit the window.", + "pos": "noun", + "word_frequency": 6950 + }, + { + "word": "gossip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gossip", + "romanization": "gossip", + "example_sentence_native": "Non mi interessano i gossip sulle celebrità.", + "example_sentence_english": "I'm not interested in celebrity gossip.", + "pos": "noun", + "word_frequency": 6951 + }, + { + "word": "governativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governmental", + "romanization": "governativo", + "example_sentence_native": "La decisione governativa ha causato dibattito.", + "example_sentence_english": "The governmental decision caused debate.", + "pos": "adjective", + "word_frequency": 6952 + }, + { + "word": "immunità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immunity", + "romanization": "immunità", + "example_sentence_native": "Ha sviluppato l'immunità al virus.", + "example_sentence_english": "He developed immunity to the virus.", + "pos": "noun", + "word_frequency": 6956 + }, + { + "word": "impari", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequal;uneven;mismatched", + "romanization": "impari", + "example_sentence_native": "È stata una lotta impari.", + "example_sentence_english": "It was an unequal fight.", + "pos": "adjective", + "word_frequency": 6957 + }, + { + "word": "impiegare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to employ;to use;to spend (time)", + "romanization": "impiegare", + "example_sentence_native": "Ha impiegato molto tempo per finire il progetto.", + "example_sentence_english": "He spent a lot of time finishing the project.", + "pos": "verb", + "word_frequency": 6958 + }, + { + "word": "implicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implication", + "romanization": "implicazione", + "example_sentence_native": "Le implicazioni di questa decisione sono significative.", + "example_sentence_english": "The implications of this decision are significant.", + "pos": "noun", + "word_frequency": 6959 + }, + { + "word": "informativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informative", + "romanization": "informativo", + "example_sentence_native": "Il documentario era molto informativo.", + "example_sentence_english": "The documentary was very informative.", + "pos": "adjective", + "word_frequency": 6960 + }, + { + "word": "insufficienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insufficiency;failure", + "romanization": "insufficienza", + "example_sentence_native": "Ha avuto un'insufficienza renale.", + "example_sentence_english": "He had kidney failure.", + "pos": "noun", + "word_frequency": 6961 + }, + { + "word": "iris", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iris (flower or eye part)", + "romanization": "iris", + "example_sentence_native": "L'iris dei suoi occhi era di un blu intenso.", + "example_sentence_english": "The iris of her eyes was a deep blue.", + "pos": "noun", + "word_frequency": 6962 + }, + { + "word": "irrilevante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrelevant", + "romanization": "irrilevante", + "example_sentence_native": "La sua opinione è completamente irrilevante per la discussione.", + "example_sentence_english": "His opinion is completely irrelevant to the discussion.", + "pos": "adjective", + "word_frequency": 6963 + }, + { + "word": "itinerario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "itinerary;route", + "romanization": "itinerario", + "example_sentence_native": "Abbiamo pianificato l'itinerario del nostro viaggio.", + "example_sentence_english": "We planned the itinerary for our trip.", + "pos": "noun", + "word_frequency": 6964 + }, + { + "word": "jet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jet", + "romanization": "jet", + "example_sentence_native": "Il jet è decollato rapidamente.", + "example_sentence_english": "The jet took off quickly.", + "pos": "noun", + "word_frequency": 6965 + }, + { + "word": "monopoli", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monopoly", + "romanization": "monopoli", + "example_sentence_native": "L'azienda ha un monopoli sul mercato.", + "example_sentence_english": "The company has a monopoly on the market.", + "pos": "noun", + "word_frequency": 6972 + }, + { + "word": "obiezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objection", + "romanization": "obiezione", + "example_sentence_native": "Ho un'obiezione a questa proposta.", + "example_sentence_english": "I have an objection to this proposal.", + "pos": "noun", + "word_frequency": 6973 + }, + { + "word": "padella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frying pan", + "romanization": "padella", + "example_sentence_native": "Ho fritto le uova in una padella antiaderente.", + "example_sentence_english": "I fried the eggs in a non-stick frying pan.", + "pos": "noun", + "word_frequency": 6975 + }, + { + "word": "pattuglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patrol", + "romanization": "pattuglia", + "example_sentence_native": "Una pattuglia della polizia è passata.", + "example_sentence_english": "A police patrol passed by.", + "pos": "noun", + "word_frequency": 6976 + }, + { + "word": "piaga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sore;wound;plague (figurative)", + "romanization": "piaga", + "example_sentence_native": "La disoccupazione è una piaga sociale.", + "example_sentence_english": "Unemployment is a social plague.", + "pos": "noun", + "word_frequency": 6978 + }, + { + "word": "picchiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit;to beat", + "romanization": "picchiare", + "example_sentence_native": "Non dovresti mai picchiare un animale.", + "example_sentence_english": "You should never hit an animal.", + "pos": "verb", + "word_frequency": 6979 + }, + { + "word": "pilastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pillar", + "romanization": "pilastro", + "example_sentence_native": "Il pilastro sostiene il tetto.", + "example_sentence_english": "The pillar supports the roof.", + "pos": "noun", + "word_frequency": 6980 + }, + { + "word": "pizzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lace;protection money (mafia)", + "romanization": "pizzo", + "example_sentence_native": "Ha comprato un vestito con il pizzo.", + "example_sentence_english": "She bought a dress with lace.", + "pos": "noun", + "word_frequency": 6981 + }, + { + "word": "politecnico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polytechnic (university)", + "romanization": "politecnico", + "example_sentence_native": "Ha studiato ingegneria al Politecnico di Milano.", + "example_sentence_english": "He studied engineering at the Polytechnic University of Milan.", + "pos": "noun", + "word_frequency": 6982 + }, + { + "word": "precisare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to specify;to clarify", + "romanization": "precisare", + "example_sentence_native": "Potrebbe precisare meglio il suo punto?", + "example_sentence_english": "Could you clarify your point better?", + "pos": "verb", + "word_frequency": 6983 + }, + { + "word": "presunzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presumption;arrogance", + "romanization": "presunzione", + "example_sentence_native": "La sua presunzione era insopportabile.", + "example_sentence_english": "His arrogance was unbearable.", + "pos": "noun", + "word_frequency": 6984 + }, + { + "word": "previdenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foresight;providence;social security", + "romanization": "previdenza", + "example_sentence_native": "La previdenza sociale è importante per il futuro.", + "example_sentence_english": "Social security is important for the future.", + "pos": "noun", + "word_frequency": 6985 + }, + { + "word": "pride", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pride", + "romanization": "pride", + "example_sentence_native": "Hanno partecipato alla parata del Pride.", + "example_sentence_english": "They participated in the Pride parade.", + "pos": "noun", + "word_frequency": 6986 + }, + { + "word": "prosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prose", + "romanization": "prosa", + "example_sentence_native": "Ha scritto un romanzo in prosa semplice.", + "example_sentence_english": "He wrote a novel in simple prose.", + "pos": "noun", + "word_frequency": 6987 + }, + { + "word": "provider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "provider", + "romanization": "provider", + "example_sentence_native": "Il mio provider internet ha avuto un problema.", + "example_sentence_english": "My internet provider had a problem.", + "pos": "noun", + "word_frequency": 6988 + }, + { + "word": "realismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realism", + "romanization": "realismo", + "example_sentence_native": "Il suo approccio è caratterizzato da un forte realismo.", + "example_sentence_english": "His approach is characterized by strong realism.", + "pos": "noun", + "word_frequency": 6992 + }, + { + "word": "riscontrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to find;to encounter;to confirm", + "romanization": "riscontrare", + "example_sentence_native": "Abbiamo riscontrato alcune difficoltà.", + "example_sentence_english": "We encountered some difficulties.", + "pos": "verb", + "word_frequency": 6994 + }, + { + "word": "scadere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expire;to fall due;to decline", + "romanization": "scadere", + "example_sentence_native": "La licenza scade il prossimo mese.", + "example_sentence_english": "The license expires next month.", + "pos": "verb", + "word_frequency": 6996 + }, + { + "word": "scarto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "waste;discard;difference", + "romanization": "scarto", + "example_sentence_native": "Dobbiamo ridurre lo scarto di cibo.", + "example_sentence_english": "We need to reduce food waste.", + "pos": "noun", + "word_frequency": 6997 + }, + { + "word": "sessualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexually", + "romanization": "sessualmente", + "example_sentence_native": "È importante parlare apertamente di argomenti sessualmente rilevanti.", + "example_sentence_english": "It's important to speak openly about sexually relevant topics.", + "pos": "adverb", + "word_frequency": 6998 + }, + { + "word": "sfiducia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distrust;no confidence", + "romanization": "sfiducia", + "example_sentence_native": "Il voto di sfiducia ha causato la caduta del governo.", + "example_sentence_english": "The vote of no confidence caused the fall of the government.", + "pos": "noun", + "word_frequency": 6999 + }, + { + "word": "sfortuna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misfortune;bad luck", + "romanization": "sfortuna", + "example_sentence_native": "È stata una sfortuna che il treno fosse in ritardo.", + "example_sentence_english": "It was bad luck that the train was late.", + "pos": "noun", + "word_frequency": 7000 + }, + { + "word": "side", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side (as in a side dish;or a side effect)", + "romanization": "side", + "example_sentence_native": "Vorrei un contorno di patate come side.", + "example_sentence_english": "I would like a side of potatoes.", + "pos": "noun", + "word_frequency": 7001 + }, + { + "word": "spontaneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spontaneously", + "romanization": "spontaneamente", + "example_sentence_native": "Ha deciso spontaneamente di aiutarci.", + "example_sentence_english": "He spontaneously decided to help us.", + "pos": "adverb", + "word_frequency": 7004 + }, + { + "word": "sprecare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to waste", + "romanization": "sprecare", + "example_sentence_native": "Non dobbiamo sprecare acqua.", + "example_sentence_english": "We must not waste water.", + "pos": "verb", + "word_frequency": 7005 + }, + { + "word": "staccare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to detach;to unstick;to unplug", + "romanization": "staccare", + "example_sentence_native": "Puoi staccare la spina del computer?", + "example_sentence_english": "Can you unplug the computer?", + "pos": "verb", + "word_frequency": 7006 + }, + { + "word": "start", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start (as in a beginning;or a race start)", + "romanization": "start", + "example_sentence_native": "La partenza della gara è stata un ottimo start per la squadra.", + "example_sentence_english": "The start of the race was a great start for the team.", + "pos": "noun", + "word_frequency": 7007 + }, + { + "word": "stimolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stimulate", + "romanization": "stimolare", + "example_sentence_native": "Questo esercizio può stimolare la creatività.", + "example_sentence_english": "This exercise can stimulate creativity.", + "pos": "verb", + "word_frequency": 7008 + }, + { + "word": "superamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overcoming;passing;exceeding", + "romanization": "superamento", + "example_sentence_native": "Il superamento dell'esame è stato un grande successo.", + "example_sentence_english": "Passing the exam was a great success.", + "pos": "noun", + "word_frequency": 7009 + }, + { + "word": "supervisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supervision", + "romanization": "supervisione", + "example_sentence_native": "Il progetto richiede una stretta supervisione.", + "example_sentence_english": "The project requires close supervision.", + "pos": "noun", + "word_frequency": 7010 + }, + { + "word": "tenerezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenderness;fondness", + "romanization": "tenerezza", + "example_sentence_native": "Ha mostrato molta tenerezza verso il cucciolo.", + "example_sentence_english": "She showed a lot of tenderness towards the puppy.", + "pos": "noun", + "word_frequency": 7012 + }, + { + "word": "trilogia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trilogy", + "romanization": "trilogia", + "example_sentence_native": "Ho appena finito di leggere l'ultima parte della trilogia.", + "example_sentence_english": "I just finished reading the last part of the trilogy.", + "pos": "noun", + "word_frequency": 7015 + }, + { + "word": "usufruire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make use of;to benefit from", + "romanization": "usufruire", + "example_sentence_native": "Puoi usufruire della piscina dell'hotel.", + "example_sentence_english": "You can make use of the hotel's swimming pool.", + "pos": "verb", + "word_frequency": 7016 + }, + { + "word": "algoritmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "algorithm", + "romanization": "algoritmo", + "example_sentence_native": "L'algoritmo di ricerca è stato migliorato.", + "example_sentence_english": "The search algorithm has been improved.", + "pos": "noun", + "word_frequency": 7020 + }, + { + "word": "alpha", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alpha", + "romanization": "alpha", + "example_sentence_native": "Il software è ancora in versione alpha.", + "example_sentence_english": "The software is still in alpha version.", + "pos": "noun", + "word_frequency": 7021 + }, + { + "word": "ampliamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlargement;expansion", + "romanization": "ampliamento", + "example_sentence_native": "È previsto un ampliamento della biblioteca.", + "example_sentence_english": "An expansion of the library is planned.", + "pos": "noun", + "word_frequency": 7022 + }, + { + "word": "artificio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "artifice;trick;device", + "romanization": "artificio", + "example_sentence_native": "Il suo discorso era pieno di artifici retorici.", + "example_sentence_english": "His speech was full of rhetorical artifices.", + "pos": "noun", + "word_frequency": 7025 + }, + { + "word": "attrarre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attract", + "romanization": "attrarre", + "example_sentence_native": "Il magnete attrae il metallo.", + "example_sentence_english": "The magnet attracts metal.", + "pos": "verb", + "word_frequency": 7026 + }, + { + "word": "badare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to look after;to pay attention", + "romanization": "badare", + "example_sentence_native": "Devo badare ai bambini stasera.", + "example_sentence_english": "I have to look after the children tonight.", + "pos": "verb", + "word_frequency": 7027 + }, + { + "word": "bancarotta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bankruptcy", + "romanization": "bancarotta", + "example_sentence_native": "L'azienda ha dichiarato bancarotta.", + "example_sentence_english": "The company declared bankruptcy.", + "pos": "noun", + "word_frequency": 7028 + }, + { + "word": "blues", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blues (music genre)", + "romanization": "blues", + "example_sentence_native": "Mi piace ascoltare musica blues.", + "example_sentence_english": "I like listening to blues music.", + "pos": "noun", + "word_frequency": 7029 + }, + { + "word": "candidare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nominate;to put forward as a candidate", + "romanization": "candidare", + "example_sentence_native": "Si è candidato alle elezioni.", + "example_sentence_english": "He ran for election.", + "pos": "verb", + "word_frequency": 7032 + }, + { + "word": "cappotto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "coat", + "romanization": "cappotto", + "example_sentence_native": "Indosso un cappotto pesante in inverno.", + "example_sentence_english": "I wear a heavy coat in winter.", + "pos": "noun", + "word_frequency": 7033 + }, + { + "word": "casinò", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casino", + "romanization": "casinò", + "example_sentence_native": "Hanno aperto un nuovo casinò in città.", + "example_sentence_english": "They opened a new casino in the city.", + "pos": "noun", + "word_frequency": 7034 + }, + { + "word": "cell", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cell (as in mobile phone;or biological cell)", + "romanization": "cell", + "example_sentence_native": "Ho lasciato il mio cell a casa.", + "example_sentence_english": "I left my cell phone at home.", + "pos": "noun", + "word_frequency": 7036 + }, + { + "word": "cittadella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "citadel;fortress", + "romanization": "cittadella", + "example_sentence_native": "La cittadella domina la città dall'alto.", + "example_sentence_english": "The citadel dominates the city from above.", + "pos": "noun", + "word_frequency": 7037 + }, + { + "word": "client", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "client", + "romanization": "client", + "example_sentence_native": "Il nostro client è molto soddisfatto del servizio.", + "example_sentence_english": "Our client is very satisfied with the service.", + "pos": "noun", + "word_frequency": 7038 + }, + { + "word": "colono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonist;settler", + "romanization": "colono", + "example_sentence_native": "I primi coloni arrivarono in questa terra nel XVII secolo.", + "example_sentence_english": "The first colonists arrived in this land in the 17th century.", + "pos": "noun", + "word_frequency": 7040 + }, + { + "word": "compilare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fill out;to compile", + "romanization": "compilare", + "example_sentence_native": "Devi compilare questo modulo prima di procedere.", + "example_sentence_english": "You need to fill out this form before proceeding.", + "pos": "verb", + "word_frequency": 7042 + }, + { + "word": "comunicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communiqué;press release", + "romanization": "comunicato", + "example_sentence_native": "Il governo ha emesso un comunicato stampa.", + "example_sentence_english": "The government issued a press release.", + "pos": "noun", + "word_frequency": 7044 + }, + { + "word": "conferire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to confer;to bestow", + "romanization": "conferire", + "example_sentence_native": "Gli è stata conferita la medaglia al valore.", + "example_sentence_english": "He was conferred the medal of valor.", + "pos": "verb", + "word_frequency": 7045 + }, + { + "word": "connettere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to connect", + "romanization": "connettere", + "example_sentence_native": "Non riesco a connettere il mio telefono al Wi-Fi.", + "example_sentence_english": "I can't connect my phone to the Wi-Fi.", + "pos": "verb", + "word_frequency": 7046 + }, + { + "word": "coreano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Korean", + "romanization": "coreano", + "example_sentence_native": "La cucina coreana è molto apprezzata.", + "example_sentence_english": "Korean cuisine is highly appreciated.", + "pos": "adjective", + "word_frequency": 7047 + }, + { + "word": "crollare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse;to crumble", + "romanization": "crollare", + "example_sentence_native": "Il vecchio edificio minaccia di crollare.", + "example_sentence_english": "The old building threatens to collapse.", + "pos": "verb", + "word_frequency": 7049 + }, + { + "word": "disaccordo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disagreement", + "romanization": "disaccordo", + "example_sentence_native": "C'è stato un disaccordo sulla decisione finale.", + "example_sentence_english": "There was a disagreement about the final decision.", + "pos": "noun", + "word_frequency": 7053 + }, + { + "word": "disperatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desperately", + "romanization": "disperatamente", + "example_sentence_native": "Cercava disperatamente una soluzione.", + "example_sentence_english": "He was desperately looking for a solution.", + "pos": "adverb", + "word_frequency": 7054 + }, + { + "word": "distintivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distinctive;characteristic", + "romanization": "distintivo", + "example_sentence_native": "Ha uno stile distintivo che lo rende unico.", + "example_sentence_english": "He has a distinctive style that makes him unique.", + "pos": "adjective", + "word_frequency": 7055 + }, + { + "word": "fallare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fail;to err", + "romanization": "fallare", + "example_sentence_native": "È umano fallare, ma è divino perdonare.", + "example_sentence_english": "To err is human, to forgive divine.", + "pos": "verb", + "word_frequency": 7058 + }, + { + "word": "fanteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infantry", + "romanization": "fanteria", + "example_sentence_native": "La fanteria avanzò coraggiosamente.", + "example_sentence_english": "The infantry advanced courageously.", + "pos": "noun", + "word_frequency": 7059 + }, + { + "word": "fatale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatal;deadly", + "romanization": "fatale", + "example_sentence_native": "L'incidente ha avuto conseguenze fatali.", + "example_sentence_english": "The accident had fatal consequences.", + "pos": "adjective", + "word_frequency": 7060 + }, + { + "word": "fertile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fertile", + "romanization": "fertile", + "example_sentence_native": "Questa terra è molto fertile per l'agricoltura.", + "example_sentence_english": "This land is very fertile for agriculture.", + "pos": "adjective", + "word_frequency": 7062 + }, + { + "word": "funebre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "funeral;funereal", + "romanization": "funebre", + "example_sentence_native": "Hanno organizzato una cerimonia funebre.", + "example_sentence_english": "They organized a funeral ceremony.", + "pos": "adjective", + "word_frequency": 7068 + }, + { + "word": "grato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grateful", + "romanization": "grato", + "example_sentence_native": "Sono molto grato per il tuo aiuto.", + "example_sentence_english": "I am very grateful for your help.", + "pos": "adjective", + "word_frequency": 7069 + }, + { + "word": "ideologico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideological", + "romanization": "ideologico", + "example_sentence_native": "Ci sono profonde differenze ideologiche tra i due partiti.", + "example_sentence_english": "There are deep ideological differences between the two parties.", + "pos": "adjective", + "word_frequency": 7071 + }, + { + "word": "inesistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-existent", + "romanization": "inesistente", + "example_sentence_native": "La prova era inesistente.", + "example_sentence_english": "The evidence was non-existent.", + "pos": "adjective", + "word_frequency": 7072 + }, + { + "word": "inventare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invent", + "romanization": "inventare", + "example_sentence_native": "Ha inventato una storia incredibile.", + "example_sentence_english": "He invented an incredible story.", + "pos": "verb", + "word_frequency": 7073 + }, + { + "word": "irregolarità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irregularity", + "romanization": "irregolarità", + "example_sentence_native": "Sono state riscontrate alcune irregolarità nei conti.", + "example_sentence_english": "Some irregularities were found in the accounts.", + "pos": "noun", + "word_frequency": 7074 + }, + { + "word": "isolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to isolate", + "romanization": "isolare", + "example_sentence_native": "È importante isolare il paziente per evitare la diffusione.", + "example_sentence_english": "It's important to isolate the patient to prevent spread.", + "pos": "verb", + "word_frequency": 7075 + }, + { + "word": "lamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complaint;lament", + "romanization": "lamento", + "example_sentence_native": "Ho sentito un lamento provenire dalla stanza accanto.", + "example_sentence_english": "I heard a lament coming from the next room.", + "pos": "noun", + "word_frequency": 7077 + }, + { + "word": "lima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "file (tool)", + "romanization": "lima", + "example_sentence_native": "Usa una lima per levigare il legno.", + "example_sentence_english": "Use a file to smooth the wood.", + "pos": "noun", + "word_frequency": 7078 + }, + { + "word": "maceria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubble;debris", + "romanization": "maceria", + "example_sentence_native": "Dopo il terremoto, la città era piena di macerie.", + "example_sentence_english": "After the earthquake, the city was full of rubble.", + "pos": "noun", + "word_frequency": 7079 + }, + { + "word": "magro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin;lean", + "romanization": "magro", + "example_sentence_native": "Il gatto è molto magro.", + "example_sentence_english": "The cat is very thin.", + "pos": "adjective", + "word_frequency": 7080 + }, + { + "word": "malvagio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evil;wicked", + "romanization": "malvagio", + "example_sentence_native": "Il personaggio era un re malvagio.", + "example_sentence_english": "The character was an evil king.", + "pos": "adjective", + "word_frequency": 7082 + }, + { + "word": "manipolazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulation", + "romanization": "manipolazione", + "example_sentence_native": "C'è stata una chiara manipolazione dei dati.", + "example_sentence_english": "There was a clear manipulation of the data.", + "pos": "noun", + "word_frequency": 7083 + }, + { + "word": "mansione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duty;task;job", + "romanization": "mansione", + "example_sentence_native": "Le sue mansioni includono la gestione del team.", + "example_sentence_english": "His duties include team management.", + "pos": "noun", + "word_frequency": 7084 + }, + { + "word": "marciapiede", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sidewalk;pavement", + "romanization": "marciapiede", + "example_sentence_native": "Camminiamo sul marciapiede per sicurezza.", + "example_sentence_english": "We walk on the sidewalk for safety.", + "pos": "noun", + "word_frequency": 7085 + }, + { + "word": "materno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maternal;motherly", + "romanization": "materno", + "example_sentence_native": "Ha un istinto materno molto forte.", + "example_sentence_english": "She has a very strong maternal instinct.", + "pos": "adjective", + "word_frequency": 7086 + }, + { + "word": "parata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parade;save (in sports)", + "romanization": "parata", + "example_sentence_native": "La parata di carnevale è stata bellissima.", + "example_sentence_english": "The carnival parade was beautiful.", + "pos": "noun", + "word_frequency": 7088 + }, + { + "word": "pontificio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontifical;papal", + "romanization": "pontificio", + "example_sentence_native": "Ha ricevuto una benedizione pontificia.", + "example_sentence_english": "He received a pontifical blessing.", + "pos": "adjective", + "word_frequency": 7091 + }, + { + "word": "pseudonimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pseudonym;pen name", + "romanization": "pseudonimo", + "example_sentence_native": "L'autore scrive sotto uno pseudonimo.", + "example_sentence_english": "The author writes under a pseudonym.", + "pos": "noun", + "word_frequency": 7093 + }, + { + "word": "psichiatra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "psychiatrist", + "romanization": "psichiatra", + "example_sentence_native": "Ha consultato uno psichiatra per il suo problema.", + "example_sentence_english": "He consulted a psychiatrist for his problem.", + "pos": "noun", + "word_frequency": 7094 + }, + { + "word": "puntuale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "punctual;on time", + "romanization": "puntuale", + "example_sentence_native": "È sempre puntuale agli appuntamenti.", + "example_sentence_english": "He is always punctual for appointments.", + "pos": "adjective", + "word_frequency": 7095 + }, + { + "word": "reclamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complaint;claim", + "romanization": "reclamo", + "example_sentence_native": "Ho fatto un reclamo per il servizio scadente.", + "example_sentence_english": "I made a complaint about the poor service.", + "pos": "noun", + "word_frequency": 7096 + }, + { + "word": "reportage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reportage;documentary", + "romanization": "reportage", + "example_sentence_native": "Il reportage sulla guerra era molto toccante.", + "example_sentence_english": "The reportage on the war was very touching.", + "pos": "noun", + "word_frequency": 7097 + }, + { + "word": "ricezione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reception;receipt", + "romanization": "ricezione", + "example_sentence_native": "La ricezione del segnale è scarsa qui.", + "example_sentence_english": "The signal reception is poor here.", + "pos": "noun", + "word_frequency": 7098 + }, + { + "word": "sacramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrament", + "romanization": "sacramento", + "example_sentence_native": "Il battesimo è un sacramento importante.", + "example_sentence_english": "Baptism is an important sacrament.", + "pos": "noun", + "word_frequency": 7099 + }, + { + "word": "sfilata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parade;fashion show", + "romanization": "sfilata", + "example_sentence_native": "La sfilata di moda è stata un successo.", + "example_sentence_english": "The fashion show was a success.", + "pos": "noun", + "word_frequency": 7100 + }, + { + "word": "sparatoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooting;shootout", + "romanization": "sparatoria", + "example_sentence_native": "C'è stata una sparatoria in centro.", + "example_sentence_english": "There was a shooting downtown.", + "pos": "noun", + "word_frequency": 7101 + }, + { + "word": "spirale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spiral", + "romanization": "spirale", + "example_sentence_native": "La scala a chiocciola ha una forma a spirale.", + "example_sentence_english": "The spiral staircase has a spiral shape.", + "pos": "noun", + "word_frequency": 7102 + }, + { + "word": "tosse", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cough", + "romanization": "tosse", + "example_sentence_native": "Ho una brutta tosse da giorni.", + "example_sentence_english": "I've had a bad cough for days.", + "pos": "noun", + "word_frequency": 7105 + }, + { + "word": "trafficante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trafficker;dealer", + "romanization": "trafficante", + "example_sentence_native": "Il trafficante è stato arrestato dalla polizia.", + "example_sentence_english": "The trafficker was arrested by the police.", + "pos": "noun", + "word_frequency": 7107 + }, + { + "word": "veglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigil;wake", + "romanization": "veglia", + "example_sentence_native": "Hanno organizzato una veglia funebre.", + "example_sentence_english": "They organized a funeral wake.", + "pos": "noun", + "word_frequency": 7111 + }, + { + "word": "verissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very true;absolutely true", + "romanization": "verissimo", + "example_sentence_native": "Quello che dici è verissimo.", + "example_sentence_english": "What you say is very true.", + "pos": "adjective", + "word_frequency": 7112 + }, + { + "word": "volley", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "volleyball", + "romanization": "volley", + "example_sentence_native": "Giochiamo a volley ogni settimana.", + "example_sentence_english": "We play volleyball every week.", + "pos": "noun", + "word_frequency": 7113 + }, + { + "word": "accrescere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase;to augment", + "romanization": "accrescere", + "example_sentence_native": "Dobbiamo accrescere la nostra conoscenza.", + "example_sentence_english": "We must increase our knowledge.", + "pos": "verb", + "word_frequency": 7117 + }, + { + "word": "altissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very high;extremely tall", + "romanization": "altissimo", + "example_sentence_native": "La montagna è altissima.", + "example_sentence_english": "The mountain is very high.", + "pos": "adjective", + "word_frequency": 7119 + }, + { + "word": "annuo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annual", + "romanization": "annuo", + "example_sentence_native": "Il rapporto annuo sarà pubblicato a fine mese.", + "example_sentence_english": "The annual report will be published at the end of the month.", + "pos": "adjective", + "word_frequency": 7120 + }, + { + "word": "arrabbiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to anger", + "romanization": "arrabbiare", + "example_sentence_native": "Non voglio arrabbiarmi per piccole cose.", + "example_sentence_english": "I don't want to get angry about small things.", + "pos": "verb", + "word_frequency": 7121 + }, + { + "word": "arrogante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrogant", + "romanization": "arrogante", + "example_sentence_native": "Il suo atteggiamento arrogante non piace a nessuno.", + "example_sentence_english": "His arrogant attitude is not liked by anyone.", + "pos": "adjective", + "word_frequency": 7122 + }, + { + "word": "arroganza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrogance", + "romanization": "arroganza", + "example_sentence_native": "La sua arroganza era insopportabile.", + "example_sentence_english": "His arrogance was unbearable.", + "pos": "noun", + "word_frequency": 7123 + }, + { + "word": "associare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to associate", + "romanization": "associare", + "example_sentence_native": "È facile associare quel profumo all'estate.", + "example_sentence_english": "It's easy to associate that scent with summer.", + "pos": "verb", + "word_frequency": 7124 + }, + { + "word": "benedire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bless", + "romanization": "benedire", + "example_sentence_native": "Il sacerdote ha benedetto la nuova chiesa.", + "example_sentence_english": "The priest blessed the new church.", + "pos": "verb", + "word_frequency": 7125 + }, + { + "word": "bottino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loot", + "romanization": "bottino", + "example_sentence_native": "I ladri sono fuggiti con un ricco bottino.", + "example_sentence_english": "The thieves escaped with rich loot.", + "pos": "noun", + "word_frequency": 7127 + }, + { + "word": "bottone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "button", + "romanization": "bottone", + "example_sentence_native": "Ho perso un bottone dalla mia camicia.", + "example_sentence_english": "I lost a button from my shirt.", + "pos": "noun", + "word_frequency": 7128 + }, + { + "word": "cameriera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "waitress", + "romanization": "cameriera", + "example_sentence_native": "La cameriera ci ha portato il menù.", + "example_sentence_english": "The waitress brought us the menu.", + "pos": "noun", + "word_frequency": 7132 + }, + { + "word": "centenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centenary", + "romanization": "centenario", + "example_sentence_native": "Quest'anno si celebra il centenario della fondazione.", + "example_sentence_english": "This year marks the centenary of the foundation.", + "pos": "noun", + "word_frequency": 7135 + }, + { + "word": "colorato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colorful", + "romanization": "colorato", + "example_sentence_native": "Il quadro è molto colorato.", + "example_sentence_english": "The painting is very colorful.", + "pos": "adjective", + "word_frequency": 7139 + }, + { + "word": "congedo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leave", + "romanization": "congedo", + "example_sentence_native": "Ha chiesto un congedo per motivi personali.", + "example_sentence_english": "He requested leave for personal reasons.", + "pos": "noun", + "word_frequency": 7140 + }, + { + "word": "congiunto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joint", + "romanization": "congiunto", + "example_sentence_native": "Hanno preso una decisione congiunta.", + "example_sentence_english": "They made a joint decision.", + "pos": "adjective", + "word_frequency": 7141 + }, + { + "word": "contestazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute", + "romanization": "contestazione", + "example_sentence_native": "C'è stata una forte contestazione contro la nuova legge.", + "example_sentence_english": "There was a strong protest against the new law.", + "pos": "noun", + "word_frequency": 7142 + }, + { + "word": "controparte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpart", + "romanization": "controparte", + "example_sentence_native": "La mia controparte nella trattativa è molto esperta.", + "example_sentence_english": "My counterpart in the negotiation is very experienced.", + "pos": "noun", + "word_frequency": 7143 + }, + { + "word": "convincente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convincing", + "romanization": "convincente", + "example_sentence_native": "Ha presentato un argomento molto convincente.", + "example_sentence_english": "He presented a very convincing argument.", + "pos": "adjective", + "word_frequency": 7144 + }, + { + "word": "correlazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correlation", + "romanization": "correlazione", + "example_sentence_native": "Esiste una forte correlazione tra fumo e malattie polmonari.", + "example_sentence_english": "There is a strong correlation between smoking and lung diseases.", + "pos": "noun", + "word_frequency": 7145 + }, + { + "word": "decima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tithe", + "romanization": "decima", + "example_sentence_native": "La decima parte del raccolto era destinata alla chiesa.", + "example_sentence_english": "The tenth part of the harvest was destined for the church.", + "pos": "noun", + "word_frequency": 7146 + }, + { + "word": "delfino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dolphin", + "romanization": "delfino", + "example_sentence_native": "Abbiamo visto un gruppo di delfini nel mare.", + "example_sentence_english": "We saw a group of dolphins in the sea.", + "pos": "noun", + "word_frequency": 7147 + }, + { + "word": "dirigenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "management", + "romanization": "dirigenza", + "example_sentence_native": "La dirigenza ha annunciato nuove politiche.", + "example_sentence_english": "The management announced new policies.", + "pos": "noun", + "word_frequency": 7148 + }, + { + "word": "distrettuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "district (adj.)", + "romanization": "distrettuale", + "example_sentence_native": "Il giudice distrettuale ha emesso la sentenza.", + "example_sentence_english": "The district judge issued the ruling.", + "pos": "adjective", + "word_frequency": 7149 + }, + { + "word": "duello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duel", + "romanization": "duello", + "example_sentence_native": "I due cavalieri si sfidarono a duello.", + "example_sentence_english": "The two knights challenged each other to a duel.", + "pos": "noun", + "word_frequency": 7150 + }, + { + "word": "editor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor", + "romanization": "editor", + "example_sentence_native": "L'editor ha revisionato il manoscritto.", + "example_sentence_english": "The editor revised the manuscript.", + "pos": "noun", + "word_frequency": 7151 + }, + { + "word": "etnia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethnicity", + "romanization": "etnia", + "example_sentence_native": "Il paese è caratterizzato da diverse etnie.", + "example_sentence_english": "The country is characterized by different ethnicities.", + "pos": "noun", + "word_frequency": 7152 + }, + { + "word": "fax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fax", + "romanization": "fax", + "example_sentence_native": "Ho inviato il documento via fax.", + "example_sentence_english": "I sent the document by fax.", + "pos": "noun", + "word_frequency": 7153 + }, + { + "word": "femminista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feminist", + "romanization": "femminista", + "example_sentence_native": "È una scrittrice con idee femministe.", + "example_sentence_english": "She is a writer with feminist ideas.", + "pos": "adjective", + "word_frequency": 7156 + }, + { + "word": "flessibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flexible", + "romanization": "flessibile", + "example_sentence_native": "L'orario di lavoro è molto flessibile.", + "example_sentence_english": "The working hours are very flexible.", + "pos": "adjective", + "word_frequency": 7157 + }, + { + "word": "fortissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very strong", + "romanization": "fortissimo", + "example_sentence_native": "Il vento era fortissimo.", + "example_sentence_english": "The wind was very strong.", + "pos": "adjective", + "word_frequency": 7158 + }, + { + "word": "gigantesco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gigantic;enormous", + "romanization": "gigantesco", + "example_sentence_native": "Il dinosauro era gigantesco.", + "example_sentence_english": "The dinosaur was gigantic.", + "pos": "adjective", + "word_frequency": 7160 + }, + { + "word": "grana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trouble;grain;money (slang)", + "romanization": "grana", + "example_sentence_native": "Ho avuto un po' di grana con la macchina.", + "example_sentence_english": "I had some trouble with the car.", + "pos": "noun", + "word_frequency": 7162 + }, + { + "word": "hamburger", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "hamburger", + "romanization": "hamburger", + "example_sentence_native": "Vorrei un hamburger con patatine fritte.", + "example_sentence_english": "I would like a hamburger with french fries.", + "pos": "noun", + "word_frequency": 7163 + }, + { + "word": "illecito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illicit act;offense", + "romanization": "illecito", + "example_sentence_native": "L'azienda è stata accusata di un illecito finanziario.", + "example_sentence_english": "The company was accused of a financial offense.", + "pos": "noun", + "word_frequency": 7164 + }, + { + "word": "illustre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illustrious;distinguished", + "romanization": "illustre", + "example_sentence_native": "Era un professore illustre nel suo campo.", + "example_sentence_english": "He was an illustrious professor in his field.", + "pos": "adjective", + "word_frequency": 7165 + }, + { + "word": "indicatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indicator;gauge;pointer", + "romanization": "indicatore", + "example_sentence_native": "L'indicatore del carburante è quasi a zero.", + "example_sentence_english": "The fuel gauge is almost at zero.", + "pos": "noun", + "word_frequency": 7166 + }, + { + "word": "ispezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspection", + "romanization": "ispezione", + "example_sentence_native": "L'edificio è stato chiuso per un'ispezione di sicurezza.", + "example_sentence_english": "The building was closed for a safety inspection.", + "pos": "noun", + "word_frequency": 7167 + }, + { + "word": "laguna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lagoon", + "romanization": "laguna", + "example_sentence_native": "Venezia è famosa per la sua laguna.", + "example_sentence_english": "Venice is famous for its lagoon.", + "pos": "noun", + "word_frequency": 7169 + }, + { + "word": "lavatrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "washing machine", + "romanization": "lavatrice", + "example_sentence_native": "Devo comprare una nuova lavatrice.", + "example_sentence_english": "I need to buy a new washing machine.", + "pos": "noun", + "word_frequency": 7171 + }, + { + "word": "led", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "LED (Light Emitting Diode)", + "romanization": "LED", + "example_sentence_native": "La lampadina a LED consuma meno energia.", + "example_sentence_english": "The LED light bulb consumes less energy.", + "pos": "noun", + "word_frequency": 7172 + }, + { + "word": "legislatore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legislator", + "romanization": "legislatore", + "example_sentence_native": "Il legislatore ha proposto una nuova legge.", + "example_sentence_english": "The legislator proposed a new law.", + "pos": "noun", + "word_frequency": 7173 + }, + { + "word": "locazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lease;rental", + "romanization": "locazione", + "example_sentence_native": "Abbiamo firmato un contratto di locazione per l'appartamento.", + "example_sentence_english": "We signed a lease agreement for the apartment.", + "pos": "noun", + "word_frequency": 7174 + }, + { + "word": "lucro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profit;gain", + "romanization": "lucro", + "example_sentence_native": "L'associazione opera senza scopo di lucro.", + "example_sentence_english": "The association operates without profit.", + "pos": "noun", + "word_frequency": 7175 + }, + { + "word": "mafioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mafioso;gangster", + "romanization": "mafioso", + "example_sentence_native": "Il film parlava di un vecchio mafioso.", + "example_sentence_english": "The film was about an old mafioso.", + "pos": "noun", + "word_frequency": 7177 + }, + { + "word": "mandata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "batch;delivery;turn (of a key)", + "romanization": "mandata", + "example_sentence_native": "Ho dato una mandata alla chiave per chiudere la porta.", + "example_sentence_english": "I gave the key a turn to lock the door.", + "pos": "noun", + "word_frequency": 7178 + }, + { + "word": "mb", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "MB (megabyte)", + "romanization": "MB", + "example_sentence_native": "Il file è di 10 MB.", + "example_sentence_english": "The file is 10 MB.", + "pos": "noun", + "word_frequency": 7179 + }, + { + "word": "mercenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mercenary", + "romanization": "mercenario", + "example_sentence_native": "L'esercito era composto da mercenari.", + "example_sentence_english": "The army was composed of mercenaries.", + "pos": "noun", + "word_frequency": 7180 + }, + { + "word": "messaggero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messenger", + "romanization": "messaggero", + "example_sentence_native": "Il messaggero ha consegnato il pacco.", + "example_sentence_english": "The messenger delivered the package.", + "pos": "noun", + "word_frequency": 7181 + }, + { + "word": "metodologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "methodology", + "romanization": "metodologia", + "example_sentence_native": "La metodologia di ricerca è stata approvata.", + "example_sentence_english": "The research methodology was approved.", + "pos": "noun", + "word_frequency": 7182 + }, + { + "word": "mitico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythical;legendary;awesome (slang)", + "romanization": "mitico", + "example_sentence_native": "Era un eroe mitico della tradizione.", + "example_sentence_english": "He was a mythical hero of tradition.", + "pos": "adjective", + "word_frequency": 7183 + }, + { + "word": "ml", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ml (milliliter)", + "romanization": "ml", + "example_sentence_native": "Aggiungi 50 ml di latte.", + "example_sentence_english": "Add 50 ml of milk.", + "pos": "noun", + "word_frequency": 7184 + }, + { + "word": "mobilitazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mobilization", + "romanization": "mobilitazione", + "example_sentence_native": "C'è stata una grande mobilitazione di volontari.", + "example_sentence_english": "There was a large mobilization of volunteers.", + "pos": "noun", + "word_frequency": 7185 + }, + { + "word": "mucca", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cow", + "romanization": "mucca", + "example_sentence_native": "La mucca pascola nel campo.", + "example_sentence_english": "The cow grazes in the field.", + "pos": "noun", + "word_frequency": 7186 + }, + { + "word": "nazionalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nationalism", + "romanization": "nazionalismo", + "example_sentence_native": "Il nazionalismo può portare a conflitti.", + "example_sentence_english": "Nationalism can lead to conflicts.", + "pos": "noun", + "word_frequency": 7188 + }, + { + "word": "nazismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Nazism", + "romanization": "nazismo", + "example_sentence_native": "Il nazismo è stato un movimento politico distruttivo.", + "example_sentence_english": "Nazism was a destructive political movement.", + "pos": "noun", + "word_frequency": 7189 + }, + { + "word": "nomination", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nomination", + "romanization": "nomination", + "example_sentence_native": "Ha ricevuto una nomination all'Oscar.", + "example_sentence_english": "He received an Oscar nomination.", + "pos": "noun", + "word_frequency": 7190 + }, + { + "word": "nutrire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nourish;to feed", + "romanization": "nutrire", + "example_sentence_native": "Dobbiamo nutrire gli animali ogni giorno.", + "example_sentence_english": "We need to feed the animals every day.", + "pos": "verb", + "word_frequency": 7191 + }, + { + "word": "obbligazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obligation;bond (finance)", + "romanization": "obbligazione", + "example_sentence_native": "Ha un'obbligazione morale verso la sua famiglia.", + "example_sentence_english": "He has a moral obligation towards his family.", + "pos": "noun", + "word_frequency": 7192 + }, + { + "word": "ormone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hormone", + "romanization": "ormone", + "example_sentence_native": "Gli ormoni regolano molte funzioni corporee.", + "example_sentence_english": "Hormones regulate many bodily functions.", + "pos": "noun", + "word_frequency": 7194 + }, + { + "word": "ostia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "host (communion);wafer", + "romanization": "ostia", + "example_sentence_native": "Il sacerdote ha distribuito l'ostia ai fedeli.", + "example_sentence_english": "The priest distributed the host to the faithful.", + "pos": "noun", + "word_frequency": 7195 + }, + { + "word": "palesemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clearly;obviously;evidently", + "romanization": "palesemente", + "example_sentence_native": "Era palesemente innamorato di lei.", + "example_sentence_english": "He was clearly in love with her.", + "pos": "adverb", + "word_frequency": 7196 + }, + { + "word": "pelliccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fur;fur coat", + "romanization": "pelliccia", + "example_sentence_native": "Indossava una calda pelliccia d'inverno.", + "example_sentence_english": "She wore a warm fur coat in winter.", + "pos": "noun", + "word_frequency": 7197 + }, + { + "word": "perplessità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perplexity;doubt", + "romanization": "perplessità", + "example_sentence_native": "Le sue parole hanno causato molta perplessità.", + "example_sentence_english": "His words caused a lot of perplexity.", + "pos": "noun", + "word_frequency": 7198 + }, + { + "word": "pianificare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to plan", + "romanization": "pianificare", + "example_sentence_native": "Dobbiamo pianificare il nostro viaggio in anticipo.", + "example_sentence_english": "We need to plan our trip in advance.", + "pos": "verb", + "word_frequency": 7199 + }, + { + "word": "plurale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plural", + "romanization": "plurale", + "example_sentence_native": "La forma plurale di \"casa\" è \"case\".", + "example_sentence_english": "The plural form of \"house\" is \"houses\".", + "pos": "noun", + "word_frequency": 7201 + }, + { + "word": "polizza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "policy (insurance)", + "romanization": "polizza", + "example_sentence_native": "Ho stipulato una polizza assicurativa per la mia auto.", + "example_sentence_english": "I took out an insurance policy for my car.", + "pos": "noun", + "word_frequency": 7202 + }, + { + "word": "presidenziale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presidential", + "romanization": "presidenziale", + "example_sentence_native": "Le elezioni presidenziali si terranno il prossimo anno.", + "example_sentence_english": "The presidential elections will be held next year.", + "pos": "adjective", + "word_frequency": 7204 + }, + { + "word": "quercia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oak (tree)", + "romanization": "quercia", + "example_sentence_native": "La quercia è un albero molto robusto.", + "example_sentence_english": "The oak is a very sturdy tree.", + "pos": "noun", + "word_frequency": 7206 + }, + { + "word": "raccomandata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "registered letter;mail", + "romanization": "raccomandata", + "example_sentence_native": "Ho spedito il documento tramite raccomandata.", + "example_sentence_english": "I sent the document via registered mail.", + "pos": "noun", + "word_frequency": 7207 + }, + { + "word": "richiedente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "applicant;claimant", + "romanization": "richiedente", + "example_sentence_native": "Il richiedente deve compilare il modulo.", + "example_sentence_english": "The applicant must fill out the form.", + "pos": "noun", + "word_frequency": 7209 + }, + { + "word": "sagra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local festival (often food-related)", + "romanization": "sagra", + "example_sentence_native": "Ogni estate c'è una sagra della ciliegia nel mio paese.", + "example_sentence_english": "Every summer there's a cherry festival in my town.", + "pos": "noun", + "word_frequency": 7211 + }, + { + "word": "scatenare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unleash;to trigger", + "romanization": "scatenare", + "example_sentence_native": "La tempesta ha scatenato il caos in città.", + "example_sentence_english": "The storm unleashed chaos in the city.", + "pos": "verb", + "word_frequency": 7213 + }, + { + "word": "sforzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to force;to strain;to exert oneself", + "romanization": "sforzare", + "example_sentence_native": "Non devi sforzare troppo il braccio.", + "example_sentence_english": "You shouldn't strain your arm too much.", + "pos": "verb", + "word_frequency": 7216 + }, + { + "word": "sincerità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sincerity", + "romanization": "sincerità", + "example_sentence_native": "Apprezzo sempre la tua sincerità.", + "example_sentence_english": "I always appreciate your sincerity.", + "pos": "noun", + "word_frequency": 7219 + }, + { + "word": "sistematicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "systematically", + "romanization": "sistematicamente", + "example_sentence_native": "Dobbiamo affrontare il problema sistematicamente.", + "example_sentence_english": "We must address the problem systematically.", + "pos": "adverb", + "word_frequency": 7220 + }, + { + "word": "sodio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sodium", + "romanization": "sodio", + "example_sentence_native": "Il sodio è un elemento chimico.", + "example_sentence_english": "Sodium is a chemical element.", + "pos": "noun", + "word_frequency": 7221 + }, + { + "word": "solista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solist", + "romanization": "solista", + "example_sentence_native": "La solista ha eseguito un pezzo meraviglioso.", + "example_sentence_english": "The soloist performed a wonderful piece.", + "pos": "noun", + "word_frequency": 7222 + }, + { + "word": "stagno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pond;tin (metal)", + "romanization": "stagno", + "example_sentence_native": "C'è uno stagno pieno di rane nel bosco.", + "example_sentence_english": "There's a pond full of frogs in the woods.", + "pos": "noun", + "word_frequency": 7223 + }, + { + "word": "stante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standing;given;considering", + "romanization": "stante", + "example_sentence_native": "Stante la situazione attuale, è meglio rimandare.", + "example_sentence_english": "Given the current situation, it's better to postpone.", + "pos": "adjective", + "word_frequency": 7224 + }, + { + "word": "terrazza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrace;balcony", + "romanization": "terrazza", + "example_sentence_native": "Ci piace cenare sulla terrazza in estate.", + "example_sentence_english": "We like to have dinner on the terrace in summer.", + "pos": "noun", + "word_frequency": 7225 + }, + { + "word": "timido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shy;timid", + "romanization": "timido", + "example_sentence_native": "Mio fratello è molto timido con gli sconosciuti.", + "example_sentence_english": "My brother is very shy with strangers.", + "pos": "adjective", + "word_frequency": 7226 + }, + { + "word": "tradotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "translated", + "romanization": "tradotto", + "example_sentence_native": "Il libro è stato tradotto in molte lingue.", + "example_sentence_english": "The book has been translated into many languages.", + "pos": "adjective", + "word_frequency": 7227 + }, + { + "word": "trapianto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transplant", + "romanization": "trapianto", + "example_sentence_native": "Ha subito un trapianto di cuore.", + "example_sentence_english": "He underwent a heart transplant.", + "pos": "noun", + "word_frequency": 7228 + }, + { + "word": "ventre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly;abdomen", + "romanization": "ventre", + "example_sentence_native": "Il bambino aveva mal di ventre.", + "example_sentence_english": "The child had a belly ache.", + "pos": "noun", + "word_frequency": 7229 + }, + { + "word": "venuto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "come (past participle)", + "romanization": "venuto", + "example_sentence_native": "Sono venuto qui per imparare l'italiano.", + "example_sentence_english": "I came here to learn Italian.", + "pos": "adjective", + "word_frequency": 7230 + }, + { + "word": "verdetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verdict", + "romanization": "verdetto", + "example_sentence_native": "La giuria ha emesso il suo verdetto.", + "example_sentence_english": "The jury delivered its verdict.", + "pos": "noun", + "word_frequency": 7231 + }, + { + "word": "visivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visual", + "romanization": "visivo", + "example_sentence_native": "Abbiamo bisogno di un supporto visivo per la presentazione.", + "example_sentence_english": "We need visual support for the presentation.", + "pos": "adjective", + "word_frequency": 7232 + }, + { + "word": "zucca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pumpkin;squash", + "romanization": "zucca", + "example_sentence_native": "A Halloween intagliamo una zucca.", + "example_sentence_english": "At Halloween we carve a pumpkin.", + "pos": "noun", + "word_frequency": 7233 + }, + { + "word": "accuratamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accurately;carefully;thoroughly", + "romanization": "accuratamente", + "example_sentence_native": "Ha esaminato i documenti accuratamente.", + "example_sentence_english": "He examined the documents thoroughly.", + "pos": "adverb", + "word_frequency": 7234 + }, + { + "word": "accusato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accused", + "romanization": "accusato", + "example_sentence_native": "L'uomo accusato si è dichiarato innocente.", + "example_sentence_english": "The accused man declared himself innocent.", + "pos": "adjective", + "word_frequency": 7235 + }, + { + "word": "adattare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to adapt;to adjust", + "romanization": "adattare", + "example_sentence_native": "Dobbiamo adattare i nostri piani alla nuova situazione.", + "example_sentence_english": "We need to adapt our plans to the new situation.", + "pos": "verb", + "word_frequency": 7236 + }, + { + "word": "allegria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joy;cheerfulness", + "romanization": "allegria", + "example_sentence_native": "La sua allegria è contagiosa.", + "example_sentence_english": "Her joy is contagious.", + "pos": "noun", + "word_frequency": 7240 + }, + { + "word": "altitudine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "altitude", + "romanization": "altitudine", + "example_sentence_native": "L'altitudine elevata può causare mal di montagna.", + "example_sentence_english": "High altitude can cause mountain sickness.", + "pos": "noun", + "word_frequency": 7241 + }, + { + "word": "ambasciata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embassy", + "romanization": "ambasciata", + "example_sentence_native": "Devo andare all'ambasciata per rinnovare il passaporto.", + "example_sentence_english": "I need to go to the embassy to renew my passport.", + "pos": "noun", + "word_frequency": 7242 + }, + { + "word": "annualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annually", + "romanization": "annualmente", + "example_sentence_native": "L'evento si tiene annualmente in primavera.", + "example_sentence_english": "The event is held annually in spring.", + "pos": "adverb", + "word_frequency": 7243 + }, + { + "word": "apporto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution;input", + "romanization": "apporto", + "example_sentence_native": "Il suo apporto al progetto è stato fondamentale.", + "example_sentence_english": "His contribution to the project was fundamental.", + "pos": "noun", + "word_frequency": 7244 + }, + { + "word": "aspirazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspiration;suction", + "romanization": "aspirazione", + "example_sentence_native": "La sua aspirazione è diventare un medico.", + "example_sentence_english": "His aspiration is to become a doctor.", + "pos": "noun", + "word_frequency": 7246 + }, + { + "word": "ballerina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ballerina;dancer", + "romanization": "ballerina", + "example_sentence_native": "La ballerina si esibirà stasera.", + "example_sentence_english": "The ballerina will perform tonight.", + "pos": "noun", + "word_frequency": 7248 + }, + { + "word": "cascata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterfall", + "romanization": "cascata", + "example_sentence_native": "Abbiamo visitato una bellissima cascata in montagna.", + "example_sentence_english": "We visited a beautiful waterfall in the mountains.", + "pos": "noun", + "word_frequency": 7254 + }, + { + "word": "clinico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clinical", + "romanization": "clinico", + "example_sentence_native": "Il medico ha fornito una diagnosi clinica.", + "example_sentence_english": "The doctor provided a clinical diagnosis.", + "pos": "adjective", + "word_frequency": 7257 + }, + { + "word": "commissariato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "police station;commissariat", + "romanization": "commissariato", + "example_sentence_native": "Devo andare al commissariato per denunciare il furto.", + "example_sentence_english": "I need to go to the police station to report the theft.", + "pos": "noun", + "word_frequency": 7259 + }, + { + "word": "compressione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compression", + "romanization": "compressione", + "example_sentence_native": "La compressione dei dati riduce lo spazio di archiviazione.", + "example_sentence_english": "Data compression reduces storage space.", + "pos": "noun", + "word_frequency": 7260 + }, + { + "word": "contabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounting;bookkeeping", + "romanization": "contabilità", + "example_sentence_native": "Si occupa della contabilità dell'azienda.", + "example_sentence_english": "He handles the company's accounting.", + "pos": "noun", + "word_frequency": 7261 + }, + { + "word": "dinastia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynasty", + "romanization": "dinastia", + "example_sentence_native": "La dinastia Medici governò Firenze per secoli.", + "example_sentence_english": "The Medici dynasty ruled Florence for centuries.", + "pos": "noun", + "word_frequency": 7264 + }, + { + "word": "distare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be distant;to be far", + "romanization": "distare", + "example_sentence_native": "La stazione dista due chilometri da qui.", + "example_sentence_english": "The station is two kilometers from here.", + "pos": "verb", + "word_frequency": 7265 + }, + { + "word": "dominazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "domination;rule", + "romanization": "dominazione", + "example_sentence_native": "Il paese ha subito una lunga dominazione straniera.", + "example_sentence_english": "The country suffered a long foreign domination.", + "pos": "noun", + "word_frequency": 7266 + }, + { + "word": "estrarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extract;to pull out", + "romanization": "estrarre", + "example_sentence_native": "Dobbiamo estrarre il dente del giudizio.", + "example_sentence_english": "We need to extract the wisdom tooth.", + "pos": "verb", + "word_frequency": 7268 + }, + { + "word": "fabbricare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to manufacture;to fabricate", + "romanization": "fabbricare", + "example_sentence_native": "Questa azienda fabbrica automobili.", + "example_sentence_english": "This company manufactures cars.", + "pos": "verb", + "word_frequency": 7271 + }, + { + "word": "farfalla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butterfly", + "romanization": "farfalla", + "example_sentence_native": "Una farfalla colorata si è posata sul fiore.", + "example_sentence_english": "A colorful butterfly landed on the flower.", + "pos": "noun", + "word_frequency": 7272 + }, + { + "word": "fertilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertility", + "romanization": "fertilità", + "example_sentence_native": "La fertilità del suolo è essenziale per l'agricoltura.", + "example_sentence_english": "Soil fertility is essential for agriculture.", + "pos": "noun", + "word_frequency": 7274 + }, + { + "word": "furgone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "van;delivery van", + "romanization": "furgone", + "example_sentence_native": "Il furgone ha consegnato i mobili.", + "example_sentence_english": "The van delivered the furniture.", + "pos": "noun", + "word_frequency": 7275 + }, + { + "word": "gallina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hen", + "romanization": "gallina", + "example_sentence_native": "La gallina ha deposto un uovo.", + "example_sentence_english": "The hen laid an egg.", + "pos": "noun", + "word_frequency": 7276 + }, + { + "word": "genesi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genesis;origin", + "romanization": "genesi", + "example_sentence_native": "La genesi di questa idea è interessante.", + "example_sentence_english": "The genesis of this idea is interesting.", + "pos": "noun", + "word_frequency": 7279 + }, + { + "word": "imputato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defendant", + "romanization": "imputato", + "example_sentence_native": "L'imputato si è dichiarato innocente davanti al giudice.", + "example_sentence_english": "The defendant declared himself innocent before the judge.", + "pos": "noun", + "word_frequency": 7283 + }, + { + "word": "infermiera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nurse", + "romanization": "infermiera", + "example_sentence_native": "L'infermiera ha assistito il paziente con cura.", + "example_sentence_english": "The nurse assisted the patient with care.", + "pos": "noun", + "word_frequency": 7284 + }, + { + "word": "intercettazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interception", + "romanization": "intercettazione", + "example_sentence_native": "L'intercettazione telefonica ha rivelato nuove prove.", + "example_sentence_english": "The phone interception revealed new evidence.", + "pos": "noun", + "word_frequency": 7285 + }, + { + "word": "interrogare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to interrogate", + "romanization": "interrogare", + "example_sentence_native": "La polizia ha deciso di interrogare il testimone.", + "example_sentence_english": "The police decided to interrogate the witness.", + "pos": "verb", + "word_frequency": 7286 + }, + { + "word": "invadere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to invade", + "romanization": "invadere", + "example_sentence_native": "Le truppe hanno tentato di invadere il territorio nemico.", + "example_sentence_english": "The troops attempted to invade the enemy territory.", + "pos": "verb", + "word_frequency": 7287 + }, + { + "word": "legalizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legalization", + "romanization": "legalizzazione", + "example_sentence_native": "Il dibattito sulla legalizzazione è ancora in corso.", + "example_sentence_english": "The debate on legalization is still ongoing.", + "pos": "noun", + "word_frequency": 7289 + }, + { + "word": "lena", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vigor", + "romanization": "lena", + "example_sentence_native": "Ha lavorato con grande lena per finire il progetto.", + "example_sentence_english": "He worked with great vigor to finish the project.", + "pos": "noun", + "word_frequency": 7290 + }, + { + "word": "manifestante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protester", + "romanization": "manifestante", + "example_sentence_native": "I manifestanti si sono riuniti pacificamente in piazza.", + "example_sentence_english": "The protesters gathered peacefully in the square.", + "pos": "noun", + "word_frequency": 7293 + }, + { + "word": "midollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marrow", + "romanization": "midollo", + "example_sentence_native": "Il midollo osseo è essenziale per la produzione del sangue.", + "example_sentence_english": "Bone marrow is essential for blood production.", + "pos": "noun", + "word_frequency": 7295 + }, + { + "word": "milizia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militia", + "romanization": "milizia", + "example_sentence_native": "La milizia locale ha mantenuto l'ordine durante la crisi.", + "example_sentence_english": "The local militia maintained order during the crisis.", + "pos": "noun", + "word_frequency": 7296 + }, + { + "word": "molestia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassment", + "romanization": "molestia", + "example_sentence_native": "Ha denunciato un caso di molestia sul posto di lavoro.", + "example_sentence_english": "She reported a case of workplace harassment.", + "pos": "noun", + "word_frequency": 7297 + }, + { + "word": "negoziato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiation", + "romanization": "negoziato", + "example_sentence_native": "Il negoziato per la pace è stato lungo e difficile.", + "example_sentence_english": "The peace negotiation was long and difficult.", + "pos": "noun", + "word_frequency": 7300 + }, + { + "word": "ninja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ninja", + "romanization": "ninja", + "example_sentence_native": "I bambini amano giocare ai ninja.", + "example_sentence_english": "Children love to play ninjas.", + "pos": "noun", + "word_frequency": 7301 + }, + { + "word": "noce", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "walnut", + "romanization": "noce", + "example_sentence_native": "Ho raccolto una noce dall'albero in giardino.", + "example_sentence_english": "I picked a walnut from the tree in the garden.", + "pos": "noun", + "word_frequency": 7302 + }, + { + "word": "orma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footprint", + "romanization": "orma", + "example_sentence_native": "Abbiamo trovato delle orme fresche sulla sabbia.", + "example_sentence_english": "We found fresh footprints on the sand.", + "pos": "noun", + "word_frequency": 7303 + }, + { + "word": "ottavo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eighth", + "romanization": "ottavo", + "example_sentence_native": "È arrivato ottavo nella classifica finale.", + "example_sentence_english": "He finished eighth in the final ranking.", + "pos": "adjective", + "word_frequency": 7304 + }, + { + "word": "pentola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pot", + "romanization": "pentola", + "example_sentence_native": "Ho messo l'acqua a bollire nella pentola.", + "example_sentence_english": "I put the water to boil in the pot.", + "pos": "noun", + "word_frequency": 7307 + }, + { + "word": "percepire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to perceive", + "romanization": "percepire", + "example_sentence_native": "È difficile percepire la differenza tra i due colori.", + "example_sentence_english": "It's difficult to perceive the difference between the two colors.", + "pos": "verb", + "word_frequency": 7308 + }, + { + "word": "premettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to premise", + "romanization": "premettere", + "example_sentence_native": "Vorrei premettere che la mia opinione è personale.", + "example_sentence_english": "I would like to premise that my opinion is personal.", + "pos": "verb", + "word_frequency": 7310 + }, + { + "word": "progettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to design", + "romanization": "progettare", + "example_sentence_native": "Stanno progettando un nuovo ponte sulla città.", + "example_sentence_english": "They are designing a new bridge over the city.", + "pos": "verb", + "word_frequency": 7311 + }, + { + "word": "purezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purity", + "romanization": "purezza", + "example_sentence_native": "L'acqua di sorgente è nota per la sua purezza.", + "example_sentence_english": "Spring water is known for its purity.", + "pos": "noun", + "word_frequency": 7312 + }, + { + "word": "quaderno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "notebook", + "romanization": "quaderno", + "example_sentence_native": "Ho scritto i miei appunti sul quaderno.", + "example_sentence_english": "I wrote my notes in the notebook.", + "pos": "noun", + "word_frequency": 7313 + }, + { + "word": "querela", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lawsuit", + "romanization": "querela", + "example_sentence_native": "Ha presentato una querela per diffamazione.", + "example_sentence_english": "He filed a lawsuit for defamation.", + "pos": "noun", + "word_frequency": 7314 + }, + { + "word": "quesito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "query", + "romanization": "quesito", + "example_sentence_native": "Il professore ha posto un quesito interessante agli studenti.", + "example_sentence_english": "The professor posed an interesting query to the students.", + "pos": "noun", + "word_frequency": 7315 + }, + { + "word": "ribasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reduction", + "romanization": "ribasso", + "example_sentence_native": "C'è stato un ribasso dei prezzi del petrolio.", + "example_sentence_english": "There was a reduction in oil prices.", + "pos": "noun", + "word_frequency": 7317 + }, + { + "word": "ring", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring", + "romanization": "ring", + "example_sentence_native": "Il pugile è salito sul ring per il match.", + "example_sentence_english": "The boxer entered the ring for the match.", + "pos": "noun", + "word_frequency": 7319 + }, + { + "word": "ripartizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distribution;division", + "romanization": "ripartizione", + "example_sentence_native": "La ripartizione dei fondi è stata equa.", + "example_sentence_english": "The distribution of funds was fair.", + "pos": "noun", + "word_frequency": 7320 + }, + { + "word": "significativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significantly", + "romanization": "significativamente", + "example_sentence_native": "Le vendite sono aumentate significativamente.", + "example_sentence_english": "Sales have increased significantly.", + "pos": "adverb", + "word_frequency": 7322 + }, + { + "word": "socialmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "socially", + "romanization": "socialmente", + "example_sentence_native": "È importante essere socialmente responsabili.", + "example_sentence_english": "It is important to be socially responsible.", + "pos": "adverb", + "word_frequency": 7324 + }, + { + "word": "spam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spam", + "romanization": "spam", + "example_sentence_native": "Ho ricevuto molta spam nella mia casella di posta.", + "example_sentence_english": "I received a lot of spam in my inbox.", + "pos": "noun", + "word_frequency": 7325 + }, + { + "word": "tip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip;hint", + "romanization": "tip", + "example_sentence_native": "Mi ha dato un buon tip per risolvere il problema.", + "example_sentence_english": "He gave me a good tip to solve the problem.", + "pos": "noun", + "word_frequency": 7326 + }, + { + "word": "veneziano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Venetian", + "romanization": "veneziano", + "example_sentence_native": "Il carnevale veneziano è famoso in tutto il mondo.", + "example_sentence_english": "The Venetian carnival is famous worldwide.", + "pos": "adjective", + "word_frequency": 7327 + }, + { + "word": "vergognare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be ashamed", + "romanization": "vergognare", + "example_sentence_native": "Non devi vergognarti dei tuoi errori.", + "example_sentence_english": "You shouldn't be ashamed of your mistakes.", + "pos": "verb", + "word_frequency": 7328 + }, + { + "word": "élite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elite", + "romanization": "élite", + "example_sentence_native": "Solo una piccola élite ha accesso a queste informazioni.", + "example_sentence_english": "Only a small elite has access to this information.", + "pos": "noun", + "word_frequency": 7329 + }, + { + "word": "agnello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lamb", + "romanization": "agnello", + "example_sentence_native": "L'agnello pasquale è una tradizione.", + "example_sentence_english": "The Easter lamb is a tradition.", + "pos": "noun", + "word_frequency": 7331 + }, + { + "word": "alias", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alias", + "romanization": "alias", + "example_sentence_native": "Ha usato un alias per nascondere la sua vera identità.", + "example_sentence_english": "He used an alias to hide his true identity.", + "pos": "noun", + "word_frequency": 7333 + }, + { + "word": "apice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apex;peak", + "romanization": "apice", + "example_sentence_native": "Ha raggiunto l'apice della sua carriera.", + "example_sentence_english": "He reached the apex of his career.", + "pos": "noun", + "word_frequency": 7335 + }, + { + "word": "arcobaleno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rainbow", + "romanization": "arcobaleno", + "example_sentence_native": "Dopo la pioggia è apparso un bellissimo arcobaleno.", + "example_sentence_english": "After the rain, a beautiful rainbow appeared.", + "pos": "noun", + "word_frequency": 7336 + }, + { + "word": "atomico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atomic", + "romanization": "atomico", + "example_sentence_native": "L'energia atomica è una fonte di energia potente.", + "example_sentence_english": "Atomic energy is a powerful source of energy.", + "pos": "adjective", + "word_frequency": 7337 + }, + { + "word": "ausilio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aid;assistance", + "romanization": "ausilio", + "example_sentence_native": "Ha bisogno di un ausilio per camminare.", + "example_sentence_english": "He needs an aid to walk.", + "pos": "noun", + "word_frequency": 7338 + }, + { + "word": "bolletta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bill (utility)", + "romanization": "bolletta", + "example_sentence_native": "Devo pagare la bolletta della luce.", + "example_sentence_english": "I have to pay the electricity bill.", + "pos": "noun", + "word_frequency": 7341 + }, + { + "word": "candido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pure;candid;white", + "romanization": "candido", + "example_sentence_native": "La neve era candida e scintillante.", + "example_sentence_english": "The snow was pure white and sparkling.", + "pos": "adjective", + "word_frequency": 7344 + }, + { + "word": "caraibo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Caribbean", + "romanization": "caraibo", + "example_sentence_native": "Le isole caraibiche sono famose per le loro spiagge.", + "example_sentence_english": "The Caribbean islands are famous for their beaches.", + "pos": "adjective", + "word_frequency": 7345 + }, + { + "word": "centrocampista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midfielder", + "romanization": "centrocampista", + "example_sentence_native": "Il centrocampista ha segnato un gol fantastico.", + "example_sentence_english": "The midfielder scored a fantastic goal.", + "pos": "noun", + "word_frequency": 7348 + }, + { + "word": "ciclista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cyclist", + "romanization": "ciclista", + "example_sentence_native": "Il ciclista ha vinto la gara.", + "example_sentence_english": "The cyclist won the race.", + "pos": "noun", + "word_frequency": 7349 + }, + { + "word": "circoscrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district;constituency", + "romanization": "circoscrizione", + "example_sentence_native": "La circoscrizione elettorale è stata ridefinita.", + "example_sentence_english": "The electoral district has been redefined.", + "pos": "noun", + "word_frequency": 7350 + }, + { + "word": "classificare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to classify;to rank", + "romanization": "classificare", + "example_sentence_native": "Dobbiamo classificare i documenti per categoria.", + "example_sentence_english": "We need to classify the documents by category.", + "pos": "verb", + "word_frequency": 7351 + }, + { + "word": "coesione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohesion", + "romanization": "coesione", + "example_sentence_native": "La coesione del gruppo è fondamentale.", + "example_sentence_english": "The cohesion of the group is fundamental.", + "pos": "noun", + "word_frequency": 7352 + }, + { + "word": "combustibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuel", + "romanization": "combustibile", + "example_sentence_native": "Il prezzo del combustibile è aumentato.", + "example_sentence_english": "The price of fuel has increased.", + "pos": "noun", + "word_frequency": 7354 + }, + { + "word": "combustione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combustion", + "romanization": "combustione", + "example_sentence_native": "La combustione produce calore ed energia.", + "example_sentence_english": "Combustion produces heat and energy.", + "pos": "noun", + "word_frequency": 7355 + }, + { + "word": "comunitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "community;communal", + "romanization": "comunitario", + "example_sentence_native": "Le leggi comunitarie sono vincolanti per tutti gli stati membri.", + "example_sentence_english": "Community laws are binding for all member states.", + "pos": "adjective", + "word_frequency": 7356 + }, + { + "word": "corporation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporation", + "romanization": "corporation", + "example_sentence_native": "È una grande corporation internazionale.", + "example_sentence_english": "It is a large international corporation.", + "pos": "noun", + "word_frequency": 7358 + }, + { + "word": "correttezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "correctness;fairness", + "romanization": "correttezza", + "example_sentence_native": "La correttezza è essenziale in ogni rapporto.", + "example_sentence_english": "Fairness is essential in every relationship.", + "pos": "noun", + "word_frequency": 7359 + }, + { + "word": "cresta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crest;ridge", + "romanization": "cresta", + "example_sentence_native": "L'uccello aveva una cresta rossa sulla testa.", + "example_sentence_english": "The bird had a red crest on its head.", + "pos": "noun", + "word_frequency": 7360 + }, + { + "word": "cute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skin (dermis;epidermis)", + "romanization": "cute", + "example_sentence_native": "La cute è lo strato più esterno della pelle.", + "example_sentence_english": "The dermis is the outermost layer of the skin.", + "pos": "noun", + "word_frequency": 7361 + }, + { + "word": "dedizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dedication", + "romanization": "dedizione", + "example_sentence_native": "La sua dedizione al lavoro è ammirevole.", + "example_sentence_english": "His dedication to work is admirable.", + "pos": "noun", + "word_frequency": 7364 + }, + { + "word": "divario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gap;disparity", + "romanization": "divario", + "example_sentence_native": "C'è un grande divario tra ricchi e poveri.", + "example_sentence_english": "There is a large gap between rich and poor.", + "pos": "noun", + "word_frequency": 7366 + }, + { + "word": "ecclesiastico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecclesiastical", + "romanization": "ecclesiastico", + "example_sentence_native": "Ha studiato diritto ecclesiastico all'università.", + "example_sentence_english": "He studied ecclesiastical law at university.", + "pos": "adjective", + "word_frequency": 7368 + }, + { + "word": "egiziano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Egyptian", + "romanization": "egiziano", + "example_sentence_native": "Ha visitato le piramidi egiziane.", + "example_sentence_english": "He visited the Egyptian pyramids.", + "pos": "adjective", + "word_frequency": 7369 + }, + { + "word": "emigrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emigrant", + "romanization": "emigrato", + "example_sentence_native": "Molti emigrati cercano una vita migliore all'estero.", + "example_sentence_english": "Many emigrants seek a better life abroad.", + "pos": "noun", + "word_frequency": 7370 + }, + { + "word": "filosofico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophical", + "romanization": "filosofico", + "example_sentence_native": "Ha una visione molto filosofica della vita.", + "example_sentence_english": "He has a very philosophical view of life.", + "pos": "adjective", + "word_frequency": 7373 + }, + { + "word": "flessibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flexibility", + "romanization": "flessibilità", + "example_sentence_native": "La flessibilità è importante nel mondo del lavoro moderno.", + "example_sentence_english": "Flexibility is important in the modern workplace.", + "pos": "noun", + "word_frequency": 7374 + }, + { + "word": "formulazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formulation;wording", + "romanization": "formulazione", + "example_sentence_native": "La formulazione della domanda era ambigua.", + "example_sentence_english": "The wording of the question was ambiguous.", + "pos": "noun", + "word_frequency": 7375 + }, + { + "word": "gerarchia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hierarchy", + "romanization": "gerarchia", + "example_sentence_native": "Ogni azienda ha una sua gerarchia interna.", + "example_sentence_english": "Every company has its own internal hierarchy.", + "pos": "noun", + "word_frequency": 7377 + }, + { + "word": "ignoto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unknown;obscure", + "romanization": "ignoto", + "example_sentence_native": "Il soldato ignoto è un simbolo di tutti i caduti.", + "example_sentence_english": "The unknown soldier is a symbol of all fallen.", + "pos": "adjective", + "word_frequency": 7381 + }, + { + "word": "illuminare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to illuminate;to light up", + "romanization": "illuminare", + "example_sentence_native": "Le stelle illuminano il cielo notturno.", + "example_sentence_english": "The stars illuminate the night sky.", + "pos": "verb", + "word_frequency": 7382 + }, + { + "word": "immortale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immortal", + "romanization": "immortale", + "example_sentence_native": "Gli dei greci erano considerati immortali.", + "example_sentence_english": "The Greek gods were considered immortal.", + "pos": "adjective", + "word_frequency": 7383 + }, + { + "word": "ingannare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deceive;to trick", + "romanization": "ingannare", + "example_sentence_native": "Non è facile ingannare una persona intelligente.", + "example_sentence_english": "It's not easy to deceive an intelligent person.", + "pos": "verb", + "word_frequency": 7384 + }, + { + "word": "insufficiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insufficient", + "romanization": "insufficiente", + "example_sentence_native": "La quantità di cibo era insufficiente per tutti.", + "example_sentence_english": "The amount of food was insufficient for everyone.", + "pos": "adjective", + "word_frequency": 7385 + }, + { + "word": "israeliano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Israeli", + "romanization": "israeliano", + "example_sentence_native": "Ha visitato la città israeliana di Gerusalemme.", + "example_sentence_english": "He visited the Israeli city of Jerusalem.", + "pos": "adjective", + "word_frequency": 7387 + }, + { + "word": "letale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lethal;deadly", + "romanization": "letale", + "example_sentence_native": "Il veleno era letale.", + "example_sentence_english": "The poison was lethal.", + "pos": "adjective", + "word_frequency": 7392 + }, + { + "word": "lirico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lyrical", + "romanization": "lirico", + "example_sentence_native": "Ha una voce lirica molto potente.", + "example_sentence_english": "She has a very powerful lyrical voice.", + "pos": "adjective", + "word_frequency": 7393 + }, + { + "word": "lordo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gross (as opposed to net)", + "romanization": "lordo", + "example_sentence_native": "Il suo stipendio lordo è di 2000 euro.", + "example_sentence_english": "His gross salary is 2000 euros.", + "pos": "adjective", + "word_frequency": 7397 + }, + { + "word": "massaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "massage", + "romanization": "massaggio", + "example_sentence_native": "Dopo la corsa, si è fatto un massaggio rilassante.", + "example_sentence_english": "After the run, he had a relaxing massage.", + "pos": "noun", + "word_frequency": 7399 + }, + { + "word": "matrimoniale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matrimonial;marital", + "romanization": "matrimoniale", + "example_sentence_native": "Hanno scelto una suite matrimoniale per la loro luna di miele.", + "example_sentence_english": "They chose a matrimonial suite for their honeymoon.", + "pos": "adjective", + "word_frequency": 7400 + }, + { + "word": "mento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chin", + "romanization": "mento", + "example_sentence_native": "Si è appoggiato il mento sulla mano.", + "example_sentence_english": "He rested his chin on his hand.", + "pos": "noun", + "word_frequency": 7402 + }, + { + "word": "molecola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "molecule", + "romanization": "molecola", + "example_sentence_native": "L'acqua è composta da molecole di idrogeno e ossigeno.", + "example_sentence_english": "Water is composed of hydrogen and oxygen molecules.", + "pos": "noun", + "word_frequency": 7403 + }, + { + "word": "navigare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to navigate;to browse", + "romanization": "navigare", + "example_sentence_native": "Mi piace navigare su internet per trovare nuove ricette.", + "example_sentence_english": "I like to browse the internet to find new recipes.", + "pos": "verb", + "word_frequency": 7405 + }, + { + "word": "nerd", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nerd", + "romanization": "nerd", + "example_sentence_native": "È un vero nerd dei videogiochi.", + "example_sentence_english": "He's a real video game nerd.", + "pos": "noun", + "word_frequency": 7406 + }, + { + "word": "notifica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notification", + "romanization": "notifica", + "example_sentence_native": "Ho ricevuto una notifica sul mio telefono.", + "example_sentence_english": "I received a notification on my phone.", + "pos": "noun", + "word_frequency": 7407 + }, + { + "word": "originalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "originality", + "romanization": "originalità", + "example_sentence_native": "La sua opera d'arte è piena di originalità.", + "example_sentence_english": "His artwork is full of originality.", + "pos": "noun", + "word_frequency": 7408 + }, + { + "word": "ospitalità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitality", + "romanization": "ospitalità", + "example_sentence_native": "Ci hanno accolto con grande ospitalità.", + "example_sentence_english": "They welcomed us with great hospitality.", + "pos": "noun", + "word_frequency": 7409 + }, + { + "word": "pala", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shovel;spade", + "romanization": "pala", + "example_sentence_native": "Ha usato una pala per scavare la buca.", + "example_sentence_english": "He used a shovel to dig the hole.", + "pos": "noun", + "word_frequency": 7410 + }, + { + "word": "parlata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speech;way of speaking;dialect", + "romanization": "parlata", + "example_sentence_native": "Ha una parlata molto dolce.", + "example_sentence_english": "She has a very sweet way of speaking.", + "pos": "noun", + "word_frequency": 7411 + }, + { + "word": "passante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passerby", + "romanization": "passante", + "example_sentence_native": "Un passante ha assistito all'incidente.", + "example_sentence_english": "A passerby witnessed the accident.", + "pos": "noun", + "word_frequency": 7412 + }, + { + "word": "patrimoniale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patrimonial;asset-related", + "romanization": "patrimoniale", + "example_sentence_native": "Hanno discusso la situazione patrimoniale della famiglia.", + "example_sentence_english": "They discussed the family's asset-related situation.", + "pos": "adjective", + "word_frequency": 7413 + }, + { + "word": "pizzico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pinch", + "romanization": "pizzico", + "example_sentence_native": "Aggiungi un pizzico di sale alla pasta.", + "example_sentence_english": "Add a pinch of salt to the pasta.", + "pos": "noun", + "word_frequency": 7414 + }, + { + "word": "preparativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparation;arrangement", + "romanization": "preparativo", + "example_sentence_native": "Stiamo facendo i preparativi per la festa.", + "example_sentence_english": "We are making preparations for the party.", + "pos": "noun", + "word_frequency": 7415 + }, + { + "word": "promotore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promoter;sponsor", + "romanization": "promotore", + "example_sentence_native": "È il promotore di questo nuovo progetto.", + "example_sentence_english": "He is the promoter of this new project.", + "pos": "noun", + "word_frequency": 7416 + }, + { + "word": "qualifica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification;title", + "romanization": "qualifica", + "example_sentence_native": "Ha ottenuto una nuova qualifica professionale.", + "example_sentence_english": "He obtained a new professional qualification.", + "pos": "noun", + "word_frequency": 7417 + }, + { + "word": "qualita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quality", + "romanization": "qualità", + "example_sentence_native": "La qualità di questo prodotto è eccellente.", + "example_sentence_english": "The quality of this product is excellent.", + "pos": "noun", + "word_frequency": 7418 + }, + { + "word": "raccomandazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommendation", + "romanization": "raccomandazione", + "example_sentence_native": "Ho seguito la tua raccomandazione e ho letto il libro.", + "example_sentence_english": "I followed your recommendation and read the book.", + "pos": "noun", + "word_frequency": 7419 + }, + { + "word": "reporter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reporter", + "romanization": "reporter", + "example_sentence_native": "Il reporter ha intervistato il testimone.", + "example_sentence_english": "The reporter interviewed the witness.", + "pos": "noun", + "word_frequency": 7420 + }, + { + "word": "ribalta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "footlights;limelight;stage", + "romanization": "ribalta", + "example_sentence_native": "L'attrice è tornata alla ribalta dopo anni di assenza.", + "example_sentence_english": "The actress returned to the limelight after years of absence.", + "pos": "noun", + "word_frequency": 7421 + }, + { + "word": "ricevimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reception;front desk", + "romanization": "ricevimento", + "example_sentence_native": "Il ricevimento dell'hotel è aperto 24 ore.", + "example_sentence_english": "The hotel reception is open 24 hours.", + "pos": "noun", + "word_frequency": 7422 + }, + { + "word": "rintracciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to track down;to trace", + "romanization": "rintracciare", + "example_sentence_native": "La polizia sta cercando di rintracciare il ladro.", + "example_sentence_english": "The police are trying to track down the thief.", + "pos": "verb", + "word_frequency": 7423 + }, + { + "word": "scavare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dig", + "romanization": "scavare", + "example_sentence_native": "Il cane ha iniziato a scavare una buca in giardino.", + "example_sentence_english": "The dog started to dig a hole in the garden.", + "pos": "verb", + "word_frequency": 7424 + }, + { + "word": "sdegno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indignation;scorn", + "romanization": "sdegno", + "example_sentence_native": "Ha espresso il suo sdegno per l'ingiustizia.", + "example_sentence_english": "He expressed his indignation at the injustice.", + "pos": "noun", + "word_frequency": 7425 + }, + { + "word": "separatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "separately", + "romanization": "separatamente", + "example_sentence_native": "Hanno deciso di vivere separatamente.", + "example_sentence_english": "They decided to live separately.", + "pos": "adverb", + "word_frequency": 7426 + }, + { + "word": "sepoltura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burial;interment", + "romanization": "sepoltura", + "example_sentence_native": "La sepoltura avverrà domani mattina.", + "example_sentence_english": "The burial will take place tomorrow morning.", + "pos": "noun", + "word_frequency": 7427 + }, + { + "word": "shop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shop;store", + "romanization": "shop", + "example_sentence_native": "C'è un nuovo shop di abbigliamento in centro.", + "example_sentence_english": "There's a new clothing shop downtown.", + "pos": "noun", + "word_frequency": 7428 + }, + { + "word": "sommare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sum;to add up", + "romanization": "sommare", + "example_sentence_native": "Dobbiamo sommare tutti i costi.", + "example_sentence_english": "We need to sum all the costs.", + "pos": "verb", + "word_frequency": 7429 + }, + { + "word": "telefonia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telephony;phone services", + "romanization": "telefonia", + "example_sentence_native": "Il settore della telefonia mobile è in continua crescita.", + "example_sentence_english": "The mobile telephony sector is constantly growing.", + "pos": "noun", + "word_frequency": 7431 + }, + { + "word": "tirocinio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internship;traineeship", + "romanization": "tirocinio", + "example_sentence_native": "Ha iniziato un tirocinio presso un'azienda di software.", + "example_sentence_english": "He started an internship at a software company.", + "pos": "noun", + "word_frequency": 7433 + }, + { + "word": "url", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "URL", + "romanization": "URL", + "example_sentence_native": "Incolla l'URL nella barra degli indirizzi.", + "example_sentence_english": "Paste the URL into the address bar.", + "pos": "noun", + "word_frequency": 7434 + }, + { + "word": "urna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urn;ballot box", + "romanization": "urna", + "example_sentence_native": "Le urne sono state aperte alle otto del mattino.", + "example_sentence_english": "The ballot boxes were opened at eight in the morning.", + "pos": "noun", + "word_frequency": 7435 + }, + { + "word": "vespa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wasp", + "romanization": "vespa", + "example_sentence_native": "Una vespa mi ha punto sul braccio.", + "example_sentence_english": "A wasp stung me on the arm.", + "pos": "noun", + "word_frequency": 7438 + }, + { + "word": "vintage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vintage", + "romanization": "vintage", + "example_sentence_native": "Ha comprato un vestito vintage in un mercatino.", + "example_sentence_english": "She bought a vintage dress at a flea market.", + "pos": "adjective", + "word_frequency": 7439 + }, + { + "word": "visuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "visual", + "romanization": "visuale", + "example_sentence_native": "La prospettiva visuale è importante per l'artista.", + "example_sentence_english": "The visual perspective is important for the artist.", + "pos": "adjective", + "word_frequency": 7440 + }, + { + "word": "yogurt", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yogurt", + "romanization": "yogurt", + "example_sentence_native": "Mi piace mangiare lo yogurt a colazione.", + "example_sentence_english": "I like to eat yogurt for breakfast.", + "pos": "noun", + "word_frequency": 7442 + }, + { + "word": "affinità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affinity", + "romanization": "affinità", + "example_sentence_native": "C'è una forte affinità tra i due artisti.", + "example_sentence_english": "There is a strong affinity between the two artists.", + "pos": "noun", + "word_frequency": 7443 + }, + { + "word": "affresco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fresco", + "romanization": "affresco", + "example_sentence_native": "Gli affreschi della cappella sono magnifici.", + "example_sentence_english": "The frescoes in the chapel are magnificent.", + "pos": "noun", + "word_frequency": 7444 + }, + { + "word": "ambizione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambition", + "romanization": "ambizione", + "example_sentence_native": "La sua ambizione lo ha portato lontano.", + "example_sentence_english": "His ambition has taken him far.", + "pos": "noun", + "word_frequency": 7447 + }, + { + "word": "ammiraglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admiral", + "romanization": "ammiraglio", + "example_sentence_native": "L'ammiraglio ha dato l'ordine di salpare.", + "example_sentence_english": "The admiral gave the order to set sail.", + "pos": "noun", + "word_frequency": 7449 + }, + { + "word": "anatomia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anatomy", + "romanization": "anatomia", + "example_sentence_native": "Lo studio dell'anatomia è fondamentale per la medicina.", + "example_sentence_english": "The study of anatomy is fundamental for medicine.", + "pos": "noun", + "word_frequency": 7450 + }, + { + "word": "apostolico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apostolic", + "romanization": "apostolico", + "example_sentence_native": "La sede apostolica si trova a Roma.", + "example_sentence_english": "The apostolic see is located in Rome.", + "pos": "adjective", + "word_frequency": 7451 + }, + { + "word": "appieno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fully;completely", + "romanization": "appieno", + "example_sentence_native": "Ha compreso appieno la situazione.", + "example_sentence_english": "He fully understood the situation.", + "pos": "adverb", + "word_frequency": 7452 + }, + { + "word": "artigianale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artisanal;handmade", + "romanization": "artigianale", + "example_sentence_native": "Preferisco la birra artigianale a quella industriale.", + "example_sentence_english": "I prefer artisanal beer to industrial one.", + "pos": "adjective", + "word_frequency": 7453 + }, + { + "word": "assegnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "assigned", + "romanization": "assegnato", + "example_sentence_native": "Il compito assegnato era difficile.", + "example_sentence_english": "The assigned task was difficult.", + "pos": "adjective", + "word_frequency": 7456 + }, + { + "word": "attitudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aptitude;attitude", + "romanization": "attitudine", + "example_sentence_native": "Ha una grande attitudine per le lingue.", + "example_sentence_english": "He has a great aptitude for languages.", + "pos": "noun", + "word_frequency": 7457 + }, + { + "word": "ballottaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "runoff (election)", + "romanization": "ballottaggio", + "example_sentence_native": "Le elezioni andranno al ballottaggio.", + "example_sentence_english": "The elections will go to a runoff.", + "pos": "noun", + "word_frequency": 7458 + }, + { + "word": "ban", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ban", + "romanization": "ban", + "example_sentence_native": "Hanno imposto un ban sull'uso di certi prodotti.", + "example_sentence_english": "They imposed a ban on the use of certain products.", + "pos": "noun", + "word_frequency": 7459 + }, + { + "word": "bono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "good-looking;tasty (colloquial)", + "romanization": "bono", + "example_sentence_native": "Quel ragazzo è proprio bono!", + "example_sentence_english": "That guy is really good-looking!", + "pos": "adjective", + "word_frequency": 7461 + }, + { + "word": "canonico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canonical", + "romanization": "canonico", + "example_sentence_native": "Il diritto canonico regola la Chiesa.", + "example_sentence_english": "Canon law governs the Church.", + "pos": "adjective", + "word_frequency": 7464 + }, + { + "word": "casualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casually;by chance", + "romanization": "casualmente", + "example_sentence_native": "L'ho incontrato casualmente al supermercato.", + "example_sentence_english": "I met him casually at the supermarket.", + "pos": "adverb", + "word_frequency": 7465 + }, + { + "word": "cautela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caution", + "romanization": "cautela", + "example_sentence_native": "Agisci con cautela in questa situazione.", + "example_sentence_english": "Act with caution in this situation.", + "pos": "noun", + "word_frequency": 7466 + }, + { + "word": "climatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climatic", + "romanization": "climatico", + "example_sentence_native": "Il cambiamento climatico è una sfida globale.", + "example_sentence_english": "Climatic change is a global challenge.", + "pos": "adjective", + "word_frequency": 7467 + }, + { + "word": "clip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clip", + "romanization": "clip", + "example_sentence_native": "Ho visto una clip divertente su YouTube.", + "example_sentence_english": "I saw a funny clip on YouTube.", + "pos": "noun", + "word_frequency": 7468 + }, + { + "word": "collocare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to place;to locate", + "romanization": "collocare", + "example_sentence_native": "Dobbiamo collocare i libri sullo scaffale.", + "example_sentence_english": "We need to place the books on the shelf.", + "pos": "verb", + "word_frequency": 7469 + }, + { + "word": "confrontarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confront (oneself);to compare notes;to face", + "romanization": "confrontarsi", + "example_sentence_native": "È importante confrontarsi con opinioni diverse.", + "example_sentence_english": "It's important to confront different opinions.", + "pos": "verb", + "word_frequency": 7470 + }, + { + "word": "contrapposizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contraposition;opposition", + "romanization": "contrapposizione", + "example_sentence_native": "C'è una forte contrapposizione tra le due fazioni.", + "example_sentence_english": "There is a strong contraposition between the two factions.", + "pos": "noun", + "word_frequency": 7471 + }, + { + "word": "cortina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curtain", + "romanization": "cortina", + "example_sentence_native": "La cortina di fumo rendeva difficile vedere.", + "example_sentence_english": "The curtain of smoke made it difficult to see.", + "pos": "noun", + "word_frequency": 7472 + }, + { + "word": "decesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "death;demise", + "romanization": "decesso", + "example_sentence_native": "Il decesso è avvenuto in ospedale.", + "example_sentence_english": "The death occurred in the hospital.", + "pos": "noun", + "word_frequency": 7475 + }, + { + "word": "depresso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "depressed", + "romanization": "depresso", + "example_sentence_native": "Si sentiva depresso dopo la notizia.", + "example_sentence_english": "He felt depressed after the news.", + "pos": "adjective", + "word_frequency": 7477 + }, + { + "word": "diciassette", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "seventeen", + "romanization": "diciassette", + "example_sentence_native": "Ho diciassette anni.", + "example_sentence_english": "I am seventeen years old.", + "pos": "adjective", + "word_frequency": 7478 + }, + { + "word": "erezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erection", + "romanization": "erezione", + "example_sentence_native": "L'erezione è un processo fisiologico.", + "example_sentence_english": "Erection is a physiological process.", + "pos": "noun", + "word_frequency": 7483 + }, + { + "word": "falco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "falcon", + "romanization": "falco", + "example_sentence_native": "Il falco volava alto nel cielo.", + "example_sentence_english": "The falcon flew high in the sky.", + "pos": "noun", + "word_frequency": 7485 + }, + { + "word": "fastidioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoying;bothersome", + "romanization": "fastidioso", + "example_sentence_native": "Quel rumore è molto fastidioso.", + "example_sentence_english": "That noise is very annoying.", + "pos": "adjective", + "word_frequency": 7486 + }, + { + "word": "giocato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "played", + "romanization": "giocato", + "example_sentence_native": "La partita è stata giocata ieri.", + "example_sentence_english": "The game was played yesterday.", + "pos": "adjective", + "word_frequency": 7487 + }, + { + "word": "graduale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gradual", + "romanization": "graduale", + "example_sentence_native": "Il cambiamento è stato graduale.", + "example_sentence_english": "The change was gradual.", + "pos": "adjective", + "word_frequency": 7488 + }, + { + "word": "imposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imposition;tax", + "romanization": "imposizione", + "example_sentence_native": "L'imposizione fiscale è aumentata.", + "example_sentence_english": "The tax imposition has increased.", + "pos": "noun", + "word_frequency": 7493 + }, + { + "word": "imprenditoriale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entrepreneurial", + "romanization": "imprenditoriale", + "example_sentence_native": "Ha uno spirito imprenditoriale molto forte.", + "example_sentence_english": "He has a very strong entrepreneurial spirit.", + "pos": "adjective", + "word_frequency": 7494 + }, + { + "word": "iter", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "process;procedure;path", + "romanization": "iter", + "example_sentence_native": "L'iter burocratico è stato lungo.", + "example_sentence_english": "The bureaucratic process was long.", + "pos": "noun", + "word_frequency": 7495 + }, + { + "word": "lampo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lightning flash", + "romanization": "lampo", + "example_sentence_native": "Un lampo ha illuminato il cielo.", + "example_sentence_english": "A lightning flash lit up the sky.", + "pos": "noun", + "word_frequency": 7497 + }, + { + "word": "lunare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lunar", + "romanization": "lunare", + "example_sentence_native": "L'esplorazione lunare è un campo affascinante.", + "example_sentence_english": "Lunar exploration is a fascinating field.", + "pos": "adjective", + "word_frequency": 7500 + }, + { + "word": "macchinario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machinery;equipment", + "romanization": "macchinario", + "example_sentence_native": "Il nuovo macchinario ha migliorato la produzione.", + "example_sentence_english": "The new machinery has improved production.", + "pos": "noun", + "word_frequency": 7501 + }, + { + "word": "migliorato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improved", + "romanization": "migliorato", + "example_sentence_native": "La situazione è notevolmente migliorata.", + "example_sentence_english": "The situation has significantly improved.", + "pos": "adjective", + "word_frequency": 7503 + }, + { + "word": "motivare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to motivate", + "romanization": "motivare", + "example_sentence_native": "È importante motivare i dipendenti.", + "example_sentence_english": "It's important to motivate employees.", + "pos": "verb", + "word_frequency": 7504 + }, + { + "word": "normativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "normative;regulatory", + "romanization": "normativo", + "example_sentence_native": "Il quadro normativo è complesso.", + "example_sentence_english": "The regulatory framework is complex.", + "pos": "adjective", + "word_frequency": 7505 + }, + { + "word": "osare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dare", + "romanization": "osare", + "example_sentence_native": "Non osare toccarmi!", + "example_sentence_english": "Don't you dare touch me!", + "pos": "verb", + "word_frequency": 7506 + }, + { + "word": "parrocchiale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parochial", + "romanization": "parrocchiale", + "example_sentence_native": "La chiesa parrocchiale è molto antica.", + "example_sentence_english": "The parochial church is very old.", + "pos": "adjective", + "word_frequency": 7509 + }, + { + "word": "partnership", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partnership", + "romanization": "partnership", + "example_sentence_native": "Abbiamo formato una nuova partnership strategica.", + "example_sentence_english": "We formed a new strategic partnership.", + "pos": "noun", + "word_frequency": 7510 + }, + { + "word": "peculiarità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peculiarity;distinctiveness", + "romanization": "peculiarità", + "example_sentence_native": "Ogni regione ha le sue peculiarità culturali.", + "example_sentence_english": "Every region has its cultural peculiarities.", + "pos": "noun", + "word_frequency": 7511 + }, + { + "word": "perimetro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perimeter", + "romanization": "perimetro", + "example_sentence_native": "Calcola il perimetro del quadrato.", + "example_sentence_english": "Calculate the perimeter of the square.", + "pos": "noun", + "word_frequency": 7512 + }, + { + "word": "perlopiù", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mostly;for the most part", + "romanization": "perlopiù", + "example_sentence_native": "I partecipanti erano perlopiù studenti.", + "example_sentence_english": "The participants were mostly students.", + "pos": "adverb", + "word_frequency": 7513 + }, + { + "word": "piramide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pyramid", + "romanization": "piramide", + "example_sentence_native": "Le piramidi d'Egitto sono maestose.", + "example_sentence_english": "The pyramids of Egypt are majestic.", + "pos": "noun", + "word_frequency": 7516 + }, + { + "word": "prepararsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to prepare oneself", + "romanization": "prepararsi", + "example_sentence_native": "Devo prepararmi per l'esame.", + "example_sentence_english": "I need to prepare myself for the exam.", + "pos": "verb", + "word_frequency": 7517 + }, + { + "word": "profezia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prophecy", + "romanization": "profezia", + "example_sentence_native": "L'antica profezia si è avverata.", + "example_sentence_english": "The ancient prophecy came true.", + "pos": "noun", + "word_frequency": 7518 + }, + { + "word": "prototipo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prototype", + "romanization": "prototipo", + "example_sentence_native": "Hanno presentato il prototipo del nuovo modello.", + "example_sentence_english": "They presented the prototype of the new model.", + "pos": "noun", + "word_frequency": 7519 + }, + { + "word": "quantomeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at least", + "romanization": "quantomeno", + "example_sentence_native": "Dovresti quantomeno provare a parlare con lui.", + "example_sentence_english": "You should at least try to talk to him.", + "pos": "adverb", + "word_frequency": 7520 + }, + { + "word": "quattrocento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fifteenth century", + "romanization": "quattrocento", + "example_sentence_native": "L'arte del Quattrocento è ricca di capolavori.", + "example_sentence_english": "Fifteenth-century art is rich in masterpieces.", + "pos": "adjective", + "word_frequency": 7521 + }, + { + "word": "respinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejected", + "romanization": "respinto", + "example_sentence_native": "La sua domanda è stata respinta.", + "example_sentence_english": "His application was rejected.", + "pos": "adjective", + "word_frequency": 7522 + }, + { + "word": "rinnovato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "renewed", + "romanization": "rinnovato", + "example_sentence_native": "Hanno un interesse rinnovato per il progetto.", + "example_sentence_english": "They have a renewed interest in the project.", + "pos": "adjective", + "word_frequency": 7523 + }, + { + "word": "schermato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shielded", + "romanization": "schermato", + "example_sentence_native": "Il cavo è schermato per ridurre le interferenze.", + "example_sentence_english": "The cable is shielded to reduce interference.", + "pos": "adjective", + "word_frequency": 7525 + }, + { + "word": "scissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "split;secession", + "romanization": "scissione", + "example_sentence_native": "Il partito ha subito una scissione interna.", + "example_sentence_english": "The party underwent an internal split.", + "pos": "noun", + "word_frequency": 7526 + }, + { + "word": "scoppiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to burst;to explode", + "romanization": "scoppiare", + "example_sentence_native": "La guerra è scoppiata all'improvviso.", + "example_sentence_english": "The war broke out suddenly.", + "pos": "verb", + "word_frequency": 7527 + }, + { + "word": "stemma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emblem;coat of arms", + "romanization": "stemma", + "example_sentence_native": "Lo stemma della città è molto antico.", + "example_sentence_english": "The city's emblem is very old.", + "pos": "noun", + "word_frequency": 7531 + }, + { + "word": "sugo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sauce", + "romanization": "sugo", + "example_sentence_native": "Ho preparato un delizioso sugo di pomodoro.", + "example_sentence_english": "I prepared a delicious tomato sauce.", + "pos": "noun", + "word_frequency": 7532 + }, + { + "word": "tenebra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "darkness", + "romanization": "tenebra", + "example_sentence_native": "La tenebra avvolgeva la foresta.", + "example_sentence_english": "Darkness enveloped the forest.", + "pos": "noun", + "word_frequency": 7533 + }, + { + "word": "tutorial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutorial", + "romanization": "tutorial", + "example_sentence_native": "Ho seguito un tutorial online per imparare a usare il programma.", + "example_sentence_english": "I followed an online tutorial to learn how to use the program.", + "pos": "noun", + "word_frequency": 7535 + }, + { + "word": "unitamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "together with;jointly with", + "romanization": "unitamente", + "example_sentence_native": "La decisione è stata presa unitamente al consiglio.", + "example_sentence_english": "The decision was made jointly with the council.", + "pos": "adverb", + "word_frequency": 7536 + }, + { + "word": "valorizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enhance;to value", + "romanization": "valorizzare", + "example_sentence_native": "Dobbiamo valorizzare le nostre risorse.", + "example_sentence_english": "We must enhance our resources.", + "pos": "verb", + "word_frequency": 7537 + }, + { + "word": "vampiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vampire", + "romanization": "vampiro", + "example_sentence_native": "Il vampiro si nascondeva nell'ombra.", + "example_sentence_english": "The vampire was hiding in the shadows.", + "pos": "noun", + "word_frequency": 7538 + }, + { + "word": "vetrina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shop window;display case", + "romanization": "vetrina", + "example_sentence_native": "Ho ammirato i vestiti nella vetrina.", + "example_sentence_english": "I admired the clothes in the shop window.", + "pos": "noun", + "word_frequency": 7539 + }, + { + "word": "vicolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alley;narrow street", + "romanization": "vicolo", + "example_sentence_native": "Il gatto è scomparso in un vicolo buio.", + "example_sentence_english": "The cat disappeared into a dark alley.", + "pos": "noun", + "word_frequency": 7540 + }, + { + "word": "votante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voter", + "romanization": "votante", + "example_sentence_native": "Ogni votante ha il diritto di esprimere la propria opinione.", + "example_sentence_english": "Every voter has the right to express their opinion.", + "pos": "noun", + "word_frequency": 7544 + }, + { + "word": "ammontare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amount;sum", + "romanization": "ammontare", + "example_sentence_native": "L'ammontare totale della spesa è elevato.", + "example_sentence_english": "The total amount of the expense is high.", + "pos": "noun", + "word_frequency": 7552 + }, + { + "word": "annullamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancellation;annulment", + "romanization": "annullamento", + "example_sentence_native": "Abbiamo ricevuto l'annullamento del volo.", + "example_sentence_english": "We received the cancellation of the flight.", + "pos": "noun", + "word_frequency": 7553 + }, + { + "word": "avanguardia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vanguard;avant-garde", + "romanization": "avanguardia", + "example_sentence_native": "L'artista è sempre stato all'avanguardia.", + "example_sentence_english": "The artist has always been at the forefront (avant-garde).", + "pos": "noun", + "word_frequency": 7556 + }, + { + "word": "avviato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "started;launched", + "romanization": "avviato", + "example_sentence_native": "Il progetto è stato avviato con successo.", + "example_sentence_english": "The project was successfully launched.", + "pos": "adjective", + "word_frequency": 7558 + }, + { + "word": "backup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backup", + "romanization": "backup", + "example_sentence_native": "Faccio sempre un backup dei miei dati importanti.", + "example_sentence_english": "I always make a backup of my important data.", + "pos": "noun", + "word_frequency": 7559 + }, + { + "word": "baffo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mustache", + "romanization": "baffo", + "example_sentence_native": "Mio nonno ha un grande baffo.", + "example_sentence_english": "My grandfather has a big mustache.", + "pos": "noun", + "word_frequency": 7560 + }, + { + "word": "brevetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patent", + "romanization": "brevetto", + "example_sentence_native": "L'azienda ha ottenuto un nuovo brevetto per la sua invenzione.", + "example_sentence_english": "The company obtained a new patent for its invention.", + "pos": "noun", + "word_frequency": 7561 + }, + { + "word": "cadenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cadence", + "romanization": "cadenza", + "example_sentence_native": "Parlava con una cadenza lenta e misurata.", + "example_sentence_english": "He spoke with a slow and measured cadence.", + "pos": "noun", + "word_frequency": 7562 + }, + { + "word": "camper", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camper", + "romanization": "camper", + "example_sentence_native": "Quest'estate andremo in vacanza con il camper.", + "example_sentence_english": "This summer we will go on vacation with the camper.", + "pos": "noun", + "word_frequency": 7563 + }, + { + "word": "cancellato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cancelled", + "romanization": "cancellato", + "example_sentence_native": "L'appuntamento è stato cancellato all'ultimo minuto.", + "example_sentence_english": "The appointment was cancelled at the last minute.", + "pos": "adjective", + "word_frequency": 7564 + }, + { + "word": "ceo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "CEO (Chief Executive Officer)", + "romanization": "CEO", + "example_sentence_native": "Il CEO ha annunciato i nuovi obiettivi dell'azienda.", + "example_sentence_english": "The CEO announced the company's new goals.", + "pos": "noun", + "word_frequency": 7565 + }, + { + "word": "cilindro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cylinder", + "romanization": "cilindro", + "example_sentence_native": "Il motore ha quattro cilindri.", + "example_sentence_english": "The engine has four cylinders.", + "pos": "noun", + "word_frequency": 7566 + }, + { + "word": "commessa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sales assistant", + "romanization": "commessa", + "example_sentence_native": "La commessa mi ha aiutato a trovare la taglia giusta.", + "example_sentence_english": "The sales assistant helped me find the right size.", + "pos": "noun", + "word_frequency": 7568 + }, + { + "word": "commuovere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move (emotionally)", + "romanization": "commuovere", + "example_sentence_native": "La sua storia mi ha profondamente commosso.", + "example_sentence_english": "His story deeply moved me.", + "pos": "verb", + "word_frequency": 7569 + }, + { + "word": "concittadino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fellow citizen", + "romanization": "concittadino", + "example_sentence_native": "Cari concittadini, è un onore essere qui oggi.", + "example_sentence_english": "Dear fellow citizens, it is an honor to be here today.", + "pos": "noun", + "word_frequency": 7570 + }, + { + "word": "cono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cone", + "romanization": "cono", + "example_sentence_native": "Vorrei un gelato al cioccolato in un cono.", + "example_sentence_english": "I would like a chocolate ice cream in a cone.", + "pos": "noun", + "word_frequency": 7571 + }, + { + "word": "consueto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usual", + "romanization": "consueto", + "example_sentence_native": "Ha salutato con il suo consueto sorriso.", + "example_sentence_english": "He greeted with his usual smile.", + "pos": "adjective", + "word_frequency": 7572 + }, + { + "word": "cool", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cool", + "romanization": "cool", + "example_sentence_native": "Quel vestito è davvero cool!", + "example_sentence_english": "That dress is really cool!", + "pos": "adjective", + "word_frequency": 7573 + }, + { + "word": "corsia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lane", + "romanization": "corsia", + "example_sentence_native": "Devi cambiare corsia per prendere l'uscita.", + "example_sentence_english": "You need to change lane to take the exit.", + "pos": "noun", + "word_frequency": 7574 + }, + { + "word": "curatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curator", + "romanization": "curatore", + "example_sentence_native": "Il curatore della mostra ha selezionato opere d'arte moderne.", + "example_sentence_english": "The exhibition curator selected modern artworks.", + "pos": "noun", + "word_frequency": 7575 + }, + { + "word": "default", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "default", + "romanization": "default", + "example_sentence_native": "Le impostazioni di default sono state ripristinate.", + "example_sentence_english": "The default settings have been restored.", + "pos": "noun", + "word_frequency": 7577 + }, + { + "word": "delizioso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delicious", + "romanization": "delizioso", + "example_sentence_native": "Questa torta è davvero deliziosa.", + "example_sentence_english": "This cake is truly delicious.", + "pos": "adjective", + "word_frequency": 7578 + }, + { + "word": "detenere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hold", + "romanization": "detenere", + "example_sentence_native": "La polizia ha il diritto di detenere i sospetti.", + "example_sentence_english": "The police have the right to detain suspects.", + "pos": "verb", + "word_frequency": 7580 + }, + { + "word": "differenziato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "differentiated", + "romanization": "differenziato", + "example_sentence_native": "Dobbiamo fare la raccolta differenziata.", + "example_sentence_english": "We need to do separate waste collection.", + "pos": "adjective", + "word_frequency": 7581 + }, + { + "word": "dilemma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dilemma", + "romanization": "dilemma", + "example_sentence_native": "Si trovava di fronte a un difficile dilemma.", + "example_sentence_english": "He was facing a difficult dilemma.", + "pos": "noun", + "word_frequency": 7582 + }, + { + "word": "discutibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debatable", + "romanization": "discutibile", + "example_sentence_native": "La sua decisione è piuttosto discutibile.", + "example_sentence_english": "His decision is quite debatable.", + "pos": "adjective", + "word_frequency": 7583 + }, + { + "word": "disparità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disparity", + "romanization": "disparità", + "example_sentence_native": "Esiste una grande disparità di reddito tra le classi sociali.", + "example_sentence_english": "There is a great income disparity between social classes.", + "pos": "noun", + "word_frequency": 7584 + }, + { + "word": "dorato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "golden", + "romanization": "dorato", + "example_sentence_native": "Il tramonto ha tinto il cielo di un colore dorato.", + "example_sentence_english": "The sunset painted the sky a golden color.", + "pos": "adjective", + "word_frequency": 7585 + }, + { + "word": "duplice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "twofold", + "romanization": "duplice", + "example_sentence_native": "La questione ha una duplice natura.", + "example_sentence_english": "The issue has a twofold nature.", + "pos": "adjective", + "word_frequency": 7586 + }, + { + "word": "efficacemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effectively", + "romanization": "efficacemente", + "example_sentence_native": "Ha gestito la situazione efficacemente.", + "example_sentence_english": "He managed the situation effectively.", + "pos": "adverb", + "word_frequency": 7587 + }, + { + "word": "emittente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broadcaster", + "romanization": "emittente", + "example_sentence_native": "L'emittente televisiva ha trasmesso il documentario.", + "example_sentence_english": "The television broadcaster aired the documentary.", + "pos": "noun", + "word_frequency": 7589 + }, + { + "word": "fabbricazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing", + "romanization": "fabbricazione", + "example_sentence_native": "Il costo di fabbricazione è aumentato.", + "example_sentence_english": "The manufacturing cost has increased.", + "pos": "noun", + "word_frequency": 7591 + }, + { + "word": "famigliare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "familiar", + "romanization": "famigliare", + "example_sentence_native": "L'atmosfera era molto famigliare e accogliente.", + "example_sentence_english": "The atmosphere was very familiar and welcoming.", + "pos": "adjective", + "word_frequency": 7592 + }, + { + "word": "fattispecie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specific case (legal)", + "romanization": "fattispecie", + "example_sentence_native": "In questa fattispecie, la legge prevede sanzioni severe.", + "example_sentence_english": "In this specific case, the law provides for severe penalties.", + "pos": "noun", + "word_frequency": 7593 + }, + { + "word": "fermamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmly", + "romanization": "fermamente", + "example_sentence_native": "Credo fermamente nella sua innocenza.", + "example_sentence_english": "I firmly believe in his innocence.", + "pos": "adverb", + "word_frequency": 7594 + }, + { + "word": "format", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "format", + "romanization": "format", + "example_sentence_native": "Il nuovo format del programma televisivo è molto apprezzato.", + "example_sentence_english": "The new format of the TV program is highly appreciated.", + "pos": "noun", + "word_frequency": 7595 + }, + { + "word": "fotografare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to photograph", + "romanization": "fotografare", + "example_sentence_native": "Mi piace fotografare i paesaggi.", + "example_sentence_english": "I like to photograph landscapes.", + "pos": "verb", + "word_frequency": 7596 + }, + { + "word": "gender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gender", + "romanization": "gender", + "example_sentence_native": "Il dibattito sul gender è molto attuale.", + "example_sentence_english": "The debate on gender is very current.", + "pos": "noun", + "word_frequency": 7598 + }, + { + "word": "imbarcazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boat;vessel", + "romanization": "imbarcazione", + "example_sentence_native": "L'imbarcazione è salpata all'alba.", + "example_sentence_english": "The boat set sail at dawn.", + "pos": "noun", + "word_frequency": 7601 + }, + { + "word": "imitazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imitation", + "romanization": "imitazione", + "example_sentence_native": "Quella borsa è una buona imitazione.", + "example_sentence_english": "That bag is a good imitation.", + "pos": "noun", + "word_frequency": 7602 + }, + { + "word": "incentrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to center;to focus", + "romanization": "incentrare", + "example_sentence_native": "Dobbiamo incentrare la nostra attenzione sul problema principale.", + "example_sentence_english": "We must focus our attention on the main problem.", + "pos": "verb", + "word_frequency": 7603 + }, + { + "word": "indirizzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "addressed;directed", + "romanization": "indirizzato", + "example_sentence_native": "La lettera era indirizzata a me.", + "example_sentence_english": "The letter was addressed to me.", + "pos": "adjective", + "word_frequency": 7604 + }, + { + "word": "indurre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to induce;to lead to", + "romanization": "indurre", + "example_sentence_native": "Le sue parole mi hanno indotto a riflettere.", + "example_sentence_english": "His words induced me to reflect.", + "pos": "verb", + "word_frequency": 7606 + }, + { + "word": "location", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "location;venue", + "romanization": "location", + "example_sentence_native": "La location per la festa è perfetta.", + "example_sentence_english": "The location for the party is perfect.", + "pos": "noun", + "word_frequency": 7608 + }, + { + "word": "lungi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "far;far away", + "romanization": "lungi", + "example_sentence_native": "Lungi da me l'idea di offenderti.", + "example_sentence_english": "Far be it from me to offend you.", + "pos": "adverb", + "word_frequency": 7609 + }, + { + "word": "maxi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maxi;large;oversized", + "romanization": "maxi", + "example_sentence_native": "Ha comprato un maxi schermo per il salotto.", + "example_sentence_english": "He bought a maxi screen for the living room.", + "pos": "adjective", + "word_frequency": 7613 + }, + { + "word": "modernità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modenrity", + "romanization": "modernità", + "example_sentence_native": "La città è un simbolo di modernità.", + "example_sentence_english": "The city is a symbol of modernity.", + "pos": "noun", + "word_frequency": 7616 + }, + { + "word": "mosaico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mosaic", + "romanization": "mosaico", + "example_sentence_native": "Abbiamo ammirato un antico mosaico romano.", + "example_sentence_english": "We admired an ancient Roman mosaic.", + "pos": "noun", + "word_frequency": 7617 + }, + { + "word": "nazionalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nationalist", + "romanization": "nazionalista", + "example_sentence_native": "È un convinto nazionalista.", + "example_sentence_english": "He is a convinced nationalist.", + "pos": "noun", + "word_frequency": 7619 + }, + { + "word": "nomade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nomad", + "romanization": "nomade", + "example_sentence_native": "Le tribù nomadi si spostano in cerca di pascoli.", + "example_sentence_english": "Nomadic tribes move in search of pastures.", + "pos": "noun", + "word_frequency": 7620 + }, + { + "word": "nuotare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to swim", + "romanization": "nuotare", + "example_sentence_native": "Mi piace nuotare in mare.", + "example_sentence_english": "I like to swim in the sea.", + "pos": "verb", + "word_frequency": 7621 + }, + { + "word": "plausibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plausible", + "romanization": "plausibile", + "example_sentence_native": "La sua spiegazione sembra plausibile.", + "example_sentence_english": "His explanation seems plausible.", + "pos": "adjective", + "word_frequency": 7623 + }, + { + "word": "prelievo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "withdrawal;collection", + "romanization": "prelievo", + "example_sentence_native": "Ho fatto un prelievo di contanti al bancomat.", + "example_sentence_english": "I made a cash withdrawal at the ATM.", + "pos": "noun", + "word_frequency": 7625 + }, + { + "word": "prenotazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "reservation;booking", + "romanization": "prenotazione", + "example_sentence_native": "Abbiamo una prenotazione per le otto.", + "example_sentence_english": "We have a reservation for eight o'clock.", + "pos": "noun", + "word_frequency": 7626 + }, + { + "word": "prosperità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prosperity", + "romanization": "prosperità", + "example_sentence_native": "Auguro a tutti prosperità e felicità.", + "example_sentence_english": "I wish everyone prosperity and happiness.", + "pos": "noun", + "word_frequency": 7627 + }, + { + "word": "quarant'anni", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forty years old", + "romanization": "quarant'anni", + "example_sentence_native": "Mio fratello ha quarant'anni.", + "example_sentence_english": "My brother is forty years old.", + "pos": "adjective", + "word_frequency": 7628 + }, + { + "word": "rado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sparse;rare;thin", + "romanization": "rado", + "example_sentence_native": "I suoi capelli sono diventati più radi.", + "example_sentence_english": "His hair has become thinner.", + "pos": "adjective", + "word_frequency": 7629 + }, + { + "word": "ribadire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reiterate;to reaffirm", + "romanization": "ribadire", + "example_sentence_native": "Vorrei ribadire l'importanza di questo progetto.", + "example_sentence_english": "I would like to reiterate the importance of this project.", + "pos": "verb", + "word_frequency": 7631 + }, + { + "word": "ricatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackmail", + "romanization": "ricatto", + "example_sentence_native": "Ha denunciato il ricatto alla polizia.", + "example_sentence_english": "He reported the blackmail to the police.", + "pos": "noun", + "word_frequency": 7632 + }, + { + "word": "rilevato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detected;observed;prominent", + "romanization": "rilevato", + "example_sentence_native": "È stato rilevato un aumento delle temperature.", + "example_sentence_english": "An increase in temperatures has been detected.", + "pos": "adjective", + "word_frequency": 7633 + }, + { + "word": "rivivere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relive;to experience again", + "romanization": "rivivere", + "example_sentence_native": "Mi piace rivivere i ricordi della mia infanzia.", + "example_sentence_english": "I like to relive the memories of my childhood.", + "pos": "verb", + "word_frequency": 7634 + }, + { + "word": "rubato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stolen", + "romanization": "rubato", + "example_sentence_native": "La bicicletta rubata è stata ritrovata.", + "example_sentence_english": "The stolen bicycle was found.", + "pos": "adjective", + "word_frequency": 7637 + }, + { + "word": "salvaguardare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to safeguard;to protect", + "romanization": "salvaguardare", + "example_sentence_native": "Dobbiamo salvaguardare l'ambiente per le future generazioni.", + "example_sentence_english": "We must safeguard the environment for future generations.", + "pos": "verb", + "word_frequency": 7639 + }, + { + "word": "segnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marked", + "romanization": "segnato", + "example_sentence_native": "La sua faccia era segnata dal tempo.", + "example_sentence_english": "His face was marked by time.", + "pos": "adjective", + "word_frequency": 7641 + }, + { + "word": "segretamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretly", + "romanization": "segretamente", + "example_sentence_native": "Si sono incontrati segretamente per discutere il piano.", + "example_sentence_english": "They met secretly to discuss the plan.", + "pos": "adverb", + "word_frequency": 7642 + }, + { + "word": "short", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short", + "romanization": "short", + "example_sentence_native": "Ha comprato un paio di short per l'estate.", + "example_sentence_english": "He bought a pair of shorts for the summer.", + "pos": "adjective", + "word_frequency": 7643 + }, + { + "word": "somigliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resemble", + "romanization": "somigliare", + "example_sentence_native": "Lei somiglia molto a sua madre.", + "example_sentence_english": "She resembles her mother very much.", + "pos": "verb", + "word_frequency": 7644 + }, + { + "word": "spasso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stroll", + "romanization": "spasso", + "example_sentence_native": "Sono andato a spasso con il cane al parco.", + "example_sentence_english": "I went for a stroll with the dog in the park.", + "pos": "noun", + "word_frequency": 7645 + }, + { + "word": "spicco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prominence", + "romanization": "spicco", + "example_sentence_native": "È una figura di spicco nel suo campo.", + "example_sentence_english": "He is a prominent figure in his field.", + "pos": "noun", + "word_frequency": 7646 + }, + { + "word": "stadium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stadium", + "romanization": "stadium", + "example_sentence_native": "Il concerto si terrà in un grande stadium.", + "example_sentence_english": "The concert will be held in a large stadium.", + "pos": "noun", + "word_frequency": 7647 + }, + { + "word": "stallo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stalemate", + "romanization": "stallo", + "example_sentence_native": "Le trattative sono giunte a un punto di stallo.", + "example_sentence_english": "The negotiations have reached a stalemate.", + "pos": "noun", + "word_frequency": 7648 + }, + { + "word": "talent", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talent", + "romanization": "talent", + "example_sentence_native": "Ha partecipato a un talent show per cantanti.", + "example_sentence_english": "He participated in a talent show for singers.", + "pos": "noun", + "word_frequency": 7650 + }, + { + "word": "tessile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "textile", + "romanization": "tessile", + "example_sentence_native": "L'industria tessile è molto importante in questa regione.", + "example_sentence_english": "The textile industry is very important in this region.", + "pos": "adjective", + "word_frequency": 7652 + }, + { + "word": "tonalità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shade", + "romanization": "tonalità", + "example_sentence_native": "Mi piace questa tonalità di blu.", + "example_sentence_english": "I like this shade of blue.", + "pos": "noun", + "word_frequency": 7653 + }, + { + "word": "true", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "true", + "romanization": "true", + "example_sentence_native": "Questo è un 'true story' basato su fatti reali.", + "example_sentence_english": "This is a 'true story' based on real facts.", + "pos": "adjective", + "word_frequency": 7655 + }, + { + "word": "umorismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humor", + "romanization": "umorismo", + "example_sentence_native": "Apprezzo molto il suo senso dell'umorismo.", + "example_sentence_english": "I really appreciate his sense of humor.", + "pos": "noun", + "word_frequency": 7657 + }, + { + "word": "utopia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utopia", + "romanization": "utopia", + "example_sentence_native": "La pace nel mondo sembra un'utopia.", + "example_sentence_english": "World peace seems like a utopia.", + "pos": "noun", + "word_frequency": 7658 + }, + { + "word": "valorizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enhancement", + "romanization": "valorizzazione", + "example_sentence_native": "Il progetto mira alla valorizzazione del patrimonio culturale.", + "example_sentence_english": "The project aims at the enhancement of cultural heritage.", + "pos": "noun", + "word_frequency": 7659 + }, + { + "word": "veterinario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "veterinarian", + "romanization": "veterinario", + "example_sentence_native": "Ho portato il mio cane dal veterinario.", + "example_sentence_english": "I took my dog to the veterinarian.", + "pos": "noun", + "word_frequency": 7661 + }, + { + "word": "virale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viral", + "romanization": "virale", + "example_sentence_native": "Il video è diventato virale in poche ore.", + "example_sentence_english": "The video went viral in a few hours.", + "pos": "adjective", + "word_frequency": 7662 + }, + { + "word": "zuppa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soup", + "romanization": "zuppa", + "example_sentence_native": "Mi piace mangiare la zuppa calda in inverno.", + "example_sentence_english": "I like to eat hot soup in winter.", + "pos": "noun", + "word_frequency": 7664 + }, + { + "word": "accompagnamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accompaniment", + "romanization": "accompagnamento", + "example_sentence_native": "La canzone aveva un bellissimo accompagnamento di pianoforte.", + "example_sentence_english": "The song had a beautiful piano accompaniment.", + "pos": "noun", + "word_frequency": 7666 + }, + { + "word": "adorabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adorable", + "romanization": "adorabile", + "example_sentence_native": "Il cucciolo era assolutamente adorabile.", + "example_sentence_english": "The puppy was absolutely adorable.", + "pos": "adjective", + "word_frequency": 7667 + }, + { + "word": "albo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "register", + "romanization": "albo", + "example_sentence_native": "È iscritto all'albo degli avvocati.", + "example_sentence_english": "He is registered with the bar association.", + "pos": "noun", + "word_frequency": 7668 + }, + { + "word": "atterraggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landing", + "romanization": "atterraggio", + "example_sentence_native": "L'atterraggio è stato molto morbido.", + "example_sentence_english": "The landing was very smooth.", + "pos": "noun", + "word_frequency": 7674 + }, + { + "word": "baciare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to kiss", + "romanization": "baciare", + "example_sentence_native": "Le piace baciare il suo fidanzato.", + "example_sentence_english": "She likes to kiss her boyfriend.", + "pos": "verb", + "word_frequency": 7675 + }, + { + "word": "battaglione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battalion", + "romanization": "battaglione", + "example_sentence_native": "Il battaglione si preparava all'attacco.", + "example_sentence_english": "The battalion was preparing for the attack.", + "pos": "noun", + "word_frequency": 7676 + }, + { + "word": "calzino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sock", + "romanization": "calzino", + "example_sentence_native": "Ho perso un calzino nella lavatrice.", + "example_sentence_english": "I lost a sock in the washing machine.", + "pos": "noun", + "word_frequency": 7677 + }, + { + "word": "casetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small house", + "romanization": "casetta", + "example_sentence_native": "Hanno comprato una graziosa casetta in campagna.", + "example_sentence_english": "They bought a charming small house in the countryside.", + "pos": "noun", + "word_frequency": 7679 + }, + { + "word": "catalano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catalan", + "romanization": "catalano", + "example_sentence_native": "La lingua catalana è parlata in Catalogna.", + "example_sentence_english": "The Catalan language is spoken in Catalonia.", + "pos": "adjective", + "word_frequency": 7680 + }, + { + "word": "cervo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deer", + "romanization": "cervo", + "example_sentence_native": "Abbiamo visto un cervo nel bosco questa mattina.", + "example_sentence_english": "We saw a deer in the woods this morning.", + "pos": "noun", + "word_frequency": 7682 + }, + { + "word": "clientela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clientele;customers", + "romanization": "clientela", + "example_sentence_native": "Il negozio ha una clientela fedele da molti anni.", + "example_sentence_english": "The shop has had a loyal clientele for many years.", + "pos": "noun", + "word_frequency": 7683 + }, + { + "word": "compensare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compensate", + "romanization": "compensare", + "example_sentence_native": "Dobbiamo trovare un modo per compensare le perdite.", + "example_sentence_english": "We need to find a way to compensate for the losses.", + "pos": "verb", + "word_frequency": 7684 + }, + { + "word": "concretamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concretely;in practice", + "romanization": "concretamente", + "example_sentence_native": "Dobbiamo agire concretamente per risolvere il problema.", + "example_sentence_english": "We need to act concretely to solve the problem.", + "pos": "adverb", + "word_frequency": 7685 + }, + { + "word": "connazionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatriot", + "romanization": "connazionale", + "example_sentence_native": "Ha incontrato un suo connazionale durante il viaggio all'estero.", + "example_sentence_english": "He met a compatriot of his during his trip abroad.", + "pos": "noun", + "word_frequency": 7686 + }, + { + "word": "constatare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ascertain;to note;to observe", + "romanization": "constatare", + "example_sentence_native": "Dobbiamo constatare che la situazione è peggiorata.", + "example_sentence_english": "We must ascertain that the situation has worsened.", + "pos": "verb", + "word_frequency": 7687 + }, + { + "word": "contestare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispute;to challenge;to contest", + "romanization": "contestare", + "example_sentence_native": "Non ha esitato a contestare la decisione.", + "example_sentence_english": "He did not hesitate to challenge the decision.", + "pos": "verb", + "word_frequency": 7688 + }, + { + "word": "cucchiaio", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "spoon", + "romanization": "cucchiaio", + "example_sentence_native": "Ho bisogno di un cucchiaio per il caffè.", + "example_sentence_english": "I need a spoon for the coffee.", + "pos": "noun", + "word_frequency": 7689 + }, + { + "word": "disinformazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinformation", + "romanization": "disinformazione", + "example_sentence_native": "La disinformazione può avere gravi conseguenze.", + "example_sentence_english": "Disinformation can have serious consequences.", + "pos": "noun", + "word_frequency": 7694 + }, + { + "word": "disperso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missing;scattered;dispersed", + "romanization": "disperso", + "example_sentence_native": "Il gruppo di escursionisti è stato dichiarato disperso.", + "example_sentence_english": "The group of hikers has been declared missing.", + "pos": "adjective", + "word_frequency": 7695 + }, + { + "word": "edicola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "newsstand;kiosk", + "romanization": "edicola", + "example_sentence_native": "Ho comprato il giornale all'edicola.", + "example_sentence_english": "I bought the newspaper at the newsstand.", + "pos": "noun", + "word_frequency": 7696 + }, + { + "word": "empatia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empathy", + "romanization": "empatia", + "example_sentence_native": "L'empatia è fondamentale per comprendere gli altri.", + "example_sentence_english": "Empathy is fundamental for understanding others.", + "pos": "noun", + "word_frequency": 7697 + }, + { + "word": "eternità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eternity", + "romanization": "eternità", + "example_sentence_native": "Sembrava un'eternità prima che arrivasse.", + "example_sentence_english": "It seemed like an eternity before he arrived.", + "pos": "noun", + "word_frequency": 7699 + }, + { + "word": "gesso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chalk;plaster", + "romanization": "gesso", + "example_sentence_native": "La maestra ha scritto alla lavagna con il gesso.", + "example_sentence_english": "The teacher wrote on the blackboard with chalk.", + "pos": "noun", + "word_frequency": 7703 + }, + { + "word": "giornaliero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daily", + "romanization": "giornaliero", + "example_sentence_native": "Faccio una passeggiata giornaliera nel parco.", + "example_sentence_english": "I take a daily walk in the park.", + "pos": "adjective", + "word_frequency": 7704 + }, + { + "word": "gradito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welcome;pleasing", + "romanization": "gradito", + "example_sentence_native": "Il tuo aiuto è sempre molto gradito.", + "example_sentence_english": "Your help is always very welcome.", + "pos": "adjective", + "word_frequency": 7705 + }, + { + "word": "incidere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to engrave;to affect;to record", + "romanization": "incidere", + "example_sentence_native": "La crisi economica ha inciso profondamente sulla vita delle persone.", + "example_sentence_english": "The economic crisis has deeply affected people's lives.", + "pos": "verb", + "word_frequency": 7707 + }, + { + "word": "incrementare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase;to increment", + "romanization": "incrementare", + "example_sentence_native": "Dobbiamo incrementare le vendite per raggiungere gli obiettivi.", + "example_sentence_english": "We need to increase sales to reach the targets.", + "pos": "verb", + "word_frequency": 7708 + }, + { + "word": "individuazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "identification;detection;individuation", + "romanization": "individuazione", + "example_sentence_native": "L'individuazione precoce del problema è cruciale.", + "example_sentence_english": "Early identification of the problem is crucial.", + "pos": "noun", + "word_frequency": 7709 + }, + { + "word": "informale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "informal", + "romanization": "informale", + "example_sentence_native": "Abbiamo avuto una discussione informale sul progetto.", + "example_sentence_english": "We had an informal discussion about the project.", + "pos": "adjective", + "word_frequency": 7710 + }, + { + "word": "ingente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "considerable;substantial;huge", + "romanization": "ingente", + "example_sentence_native": "Hanno subito danni ingenti a causa dell'alluvione.", + "example_sentence_english": "They suffered substantial damage due to the flood.", + "pos": "adjective", + "word_frequency": 7711 + }, + { + "word": "inversione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inversion;reversal;U-turn", + "romanization": "inversione", + "example_sentence_native": "Ha fatto un'inversione a U per tornare indietro.", + "example_sentence_english": "He made a U-turn to go back.", + "pos": "noun", + "word_frequency": 7712 + }, + { + "word": "labirinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "labyrinth;maze", + "romanization": "labirinto", + "example_sentence_native": "Ci siamo persi nel labirinto del giardino.", + "example_sentence_english": "We got lost in the garden maze.", + "pos": "noun", + "word_frequency": 7714 + }, + { + "word": "lamentela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complaint", + "romanization": "lamentela", + "example_sentence_native": "Ho presentato una lamentela al servizio clienti.", + "example_sentence_english": "I submitted a complaint to customer service.", + "pos": "noun", + "word_frequency": 7715 + }, + { + "word": "marcio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rotten;spoiled", + "romanization": "marcio", + "example_sentence_native": "La frutta era marcia e l'abbiamo buttata via.", + "example_sentence_english": "The fruit was rotten and we threw it away.", + "pos": "adjective", + "word_frequency": 7717 + }, + { + "word": "melodia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "melody", + "romanization": "melodia", + "example_sentence_native": "La melodia di questa canzone è molto orecchiabile.", + "example_sentence_english": "The melody of this song is very catchy.", + "pos": "noun", + "word_frequency": 7719 + }, + { + "word": "mercante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "merchant", + "romanization": "mercante", + "example_sentence_native": "Il mercante vendeva spezie esotiche al mercato.", + "example_sentence_english": "The merchant sold exotic spices at the market.", + "pos": "noun", + "word_frequency": 7720 + }, + { + "word": "modificato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modified", + "romanization": "modificato", + "example_sentence_native": "Il documento è stato modificato di recente.", + "example_sentence_english": "The document has been modified recently.", + "pos": "adjective", + "word_frequency": 7721 + }, + { + "word": "montano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountain (adj.);mountainous", + "romanization": "montano", + "example_sentence_native": "Il clima montano è molto rigido in inverno.", + "example_sentence_english": "The mountain climate is very harsh in winter.", + "pos": "adjective", + "word_frequency": 7722 + }, + { + "word": "negoziare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to negotiate", + "romanization": "negoziare", + "example_sentence_native": "Dobbiamo negoziare un buon prezzo per la casa.", + "example_sentence_english": "We need to negotiate a good price for the house.", + "pos": "verb", + "word_frequency": 7723 + }, + { + "word": "orfano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orphan", + "romanization": "orfano", + "example_sentence_native": "Il bambino era orfano di entrambi i genitori.", + "example_sentence_english": "The child was an orphan of both parents.", + "pos": "noun", + "word_frequency": 7724 + }, + { + "word": "partecipe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involved;participant", + "romanization": "partecipe", + "example_sentence_native": "Era molto partecipe alla discussione.", + "example_sentence_english": "He was very involved in the discussion.", + "pos": "adjective", + "word_frequency": 7725 + }, + { + "word": "pellegrinaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilgrimage", + "romanization": "pellegrinaggio", + "example_sentence_native": "Molti fedeli fanno un pellegrinaggio a Roma.", + "example_sentence_english": "Many faithful make a pilgrimage to Rome.", + "pos": "noun", + "word_frequency": 7726 + }, + { + "word": "platea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audience;stalls (theatre)", + "romanization": "platea", + "example_sentence_native": "La platea era piena di spettatori entusiasti.", + "example_sentence_english": "The audience was full of enthusiastic spectators.", + "pos": "noun", + "word_frequency": 7728 + }, + { + "word": "qualsivoglia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "any;whatsoever", + "romanization": "qualsivoglia", + "example_sentence_native": "Puoi scegliere qualsivoglia libro dalla libreria.", + "example_sentence_english": "You can choose any book whatsoever from the library.", + "pos": "adjective", + "word_frequency": 7732 + }, + { + "word": "raggiungibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reachable;accessible", + "romanization": "raggiungibile", + "example_sentence_native": "La cima della montagna è facilmente raggiungibile.", + "example_sentence_english": "The mountain peak is easily reachable.", + "pos": "adjective", + "word_frequency": 7733 + }, + { + "word": "range", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "range", + "romanization": "range", + "example_sentence_native": "Il range di prezzi per questo prodotto è molto ampio.", + "example_sentence_english": "The price range for this product is very wide.", + "pos": "noun", + "word_frequency": 7734 + }, + { + "word": "recitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acting;recitation", + "romanization": "recitazione", + "example_sentence_native": "Ha studiato recitazione per molti anni.", + "example_sentence_english": "She studied acting for many years.", + "pos": "noun", + "word_frequency": 7735 + }, + { + "word": "riassumere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to summarize;to rehire", + "romanization": "riassumere", + "example_sentence_native": "Puoi riassumere i punti principali del discorso?", + "example_sentence_english": "Can you summarize the main points of the speech?", + "pos": "verb", + "word_frequency": 7737 + }, + { + "word": "ricavare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obtain;to derive;to extract", + "romanization": "ricavare", + "example_sentence_native": "Hanno ricavato un grande profitto dalla vendita.", + "example_sentence_english": "They obtained a large profit from the sale.", + "pos": "verb", + "word_frequency": 7738 + }, + { + "word": "ricognizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconnaissance;recognition;survey", + "romanization": "ricognizione", + "example_sentence_native": "L'esercito ha inviato una squadra di ricognizione.", + "example_sentence_english": "The army sent a reconnaissance team.", + "pos": "noun", + "word_frequency": 7739 + }, + { + "word": "rinchiuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locked up;confined", + "romanization": "rinchiuso", + "example_sentence_native": "Il cane era rinchiuso nel canile.", + "example_sentence_english": "The dog was locked up in the kennel.", + "pos": "adjective", + "word_frequency": 7740 + }, + { + "word": "ripristino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restoration;recovery;reset", + "romanization": "ripristino", + "example_sentence_native": "È necessario un ripristino del sistema operativo.", + "example_sentence_english": "A restoration of the operating system is necessary.", + "pos": "noun", + "word_frequency": 7741 + }, + { + "word": "ritrovamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discovery;finding", + "romanization": "ritrovamento", + "example_sentence_native": "Il ritrovamento del tesoro ha fatto notizia.", + "example_sentence_english": "The discovery of the treasure made headlines.", + "pos": "noun", + "word_frequency": 7742 + }, + { + "word": "ritrovarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to find oneself;to meet up", + "romanization": "ritrovarsi", + "example_sentence_native": "Ci ritroviamo al solito bar stasera?", + "example_sentence_english": "Shall we meet up at the usual bar tonight?", + "pos": "verb", + "word_frequency": 7743 + }, + { + "word": "run", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run (e.g.;a series of events;a sprint)", + "romanization": "run", + "example_sentence_native": "Ha fatto una run incredibile nella maratona.", + "example_sentence_english": "He had an incredible run in the marathon.", + "pos": "noun", + "word_frequency": 7744 + }, + { + "word": "sacrificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sacrifice", + "romanization": "sacrificare", + "example_sentence_native": "Ha sacrificato il suo tempo libero per aiutare gli altri.", + "example_sentence_english": "He sacrificed his free time to help others.", + "pos": "verb", + "word_frequency": 7746 + }, + { + "word": "scintilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spark;glimmer", + "romanization": "scintilla", + "example_sentence_native": "Una piccola scintilla può accendere un grande fuoco.", + "example_sentence_english": "A small spark can ignite a big fire.", + "pos": "noun", + "word_frequency": 7747 + }, + { + "word": "sensore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensor", + "romanization": "sensore", + "example_sentence_native": "Il sensore di movimento ha rilevato una presenza.", + "example_sentence_english": "The motion sensor detected a presence.", + "pos": "noun", + "word_frequency": 7748 + }, + { + "word": "sfiga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad luck;jinx (informal)", + "romanization": "sfiga", + "example_sentence_native": "Che sfiga! Ho perso l'autobus.", + "example_sentence_english": "What bad luck! I missed the bus.", + "pos": "noun", + "word_frequency": 7749 + }, + { + "word": "spaccato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross-section;slice (figurative)", + "romanization": "spaccato", + "example_sentence_native": "Questo libro offre uno spaccato della società contemporanea.", + "example_sentence_english": "This book offers a cross-section of contemporary society.", + "pos": "noun", + "word_frequency": 7751 + }, + { + "word": "stupefacente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amazing;astonishing;stupefying", + "romanization": "stupefacente", + "example_sentence_native": "La sua performance è stata stupefacente.", + "example_sentence_english": "His performance was amazing.", + "pos": "adjective", + "word_frequency": 7752 + }, + { + "word": "sushi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sushi", + "romanization": "sushi", + "example_sentence_native": "Andiamo a mangiare sushi stasera?", + "example_sentence_english": "Shall we go eat sushi tonight?", + "pos": "noun", + "word_frequency": 7753 + }, + { + "word": "topic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "topic", + "romanization": "topic", + "example_sentence_native": "Qual è il topic della discussione di oggi?", + "example_sentence_english": "What is the topic of today's discussion?", + "pos": "noun", + "word_frequency": 7754 + }, + { + "word": "tropicale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tropical", + "romanization": "tropicale", + "example_sentence_native": "Le foreste tropicali sono ricche di biodiversità.", + "example_sentence_english": "Tropical forests are rich in biodiversity.", + "pos": "adjective", + "word_frequency": 7755 + }, + { + "word": "valanga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avalanche", + "romanization": "valanga", + "example_sentence_native": "Una valanga ha bloccato la strada di montagna.", + "example_sentence_english": "An avalanche blocked the mountain road.", + "pos": "noun", + "word_frequency": 7756 + }, + { + "word": "valvola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valve", + "romanization": "valvola", + "example_sentence_native": "La valvola di sicurezza si è aperta.", + "example_sentence_english": "The safety valve opened.", + "pos": "noun", + "word_frequency": 7757 + }, + { + "word": "videoclip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "video clip;music video", + "romanization": "videoclip", + "example_sentence_native": "Ho visto un nuovo videoclip della mia band preferita.", + "example_sentence_english": "I saw a new video clip from my favorite band.", + "pos": "noun", + "word_frequency": 7758 + }, + { + "word": "vietato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "forbidden;prohibited", + "romanization": "vietato", + "example_sentence_native": "È vietato fumare in questo locale.", + "example_sentence_english": "Smoking is forbidden in this place.", + "pos": "adjective", + "word_frequency": 7759 + }, + { + "word": "zanzara", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mosquito", + "romanization": "zanzara", + "example_sentence_native": "Una zanzara mi ha punto sul braccio.", + "example_sentence_english": "A mosquito bit me on the arm.", + "pos": "noun", + "word_frequency": 7762 + }, + { + "word": "abituale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habitual", + "romanization": "abituale", + "example_sentence_native": "È la sua reazione abituale.", + "example_sentence_english": "It's his habitual reaction.", + "pos": "adjective", + "word_frequency": 7764 + }, + { + "word": "accelerare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accelerate", + "romanization": "accelerare", + "example_sentence_native": "Dobbiamo accelerare il passo per arrivare in tempo.", + "example_sentence_english": "We need to accelerate our pace to arrive on time.", + "pos": "verb", + "word_frequency": 7765 + }, + { + "word": "acquistato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purchased", + "romanization": "acquistato", + "example_sentence_native": "L'oggetto acquistato è arrivato ieri.", + "example_sentence_english": "The purchased item arrived yesterday.", + "pos": "adjective", + "word_frequency": 7766 + }, + { + "word": "annesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annexed", + "romanization": "annesso", + "example_sentence_native": "Trovi il documento annesso all'email.", + "example_sentence_english": "You will find the document attached to the email.", + "pos": "adjective", + "word_frequency": 7769 + }, + { + "word": "antropologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropology", + "romanization": "antropologia", + "example_sentence_native": "Ha studiato antropologia all'università.", + "example_sentence_english": "She studied anthropology at university.", + "pos": "noun", + "word_frequency": 7770 + }, + { + "word": "apparecchiatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipment", + "romanization": "apparecchiatura", + "example_sentence_native": "L'apparecchiatura medica è molto costosa.", + "example_sentence_english": "The medical equipment is very expensive.", + "pos": "noun", + "word_frequency": 7771 + }, + { + "word": "apparenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appearance", + "romanization": "apparenza", + "example_sentence_native": "Non giudicare un libro dalla sua apparenza.", + "example_sentence_english": "Don't judge a book by its appearance.", + "pos": "noun", + "word_frequency": 7772 + }, + { + "word": "arrabbiato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "angry", + "romanization": "arrabbiato", + "example_sentence_native": "Era molto arrabbiato per il ritardo.", + "example_sentence_english": "He was very angry about the delay.", + "pos": "adjective", + "word_frequency": 7773 + }, + { + "word": "avvelenare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to poison", + "romanization": "avvelenare", + "example_sentence_native": "Non dare da mangiare al cane, potresti avvelenarlo.", + "example_sentence_english": "Don't feed the dog, you might poison it.", + "pos": "verb", + "word_frequency": 7775 + }, + { + "word": "bancomat", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ATM", + "romanization": "bancomat", + "example_sentence_native": "Devo prelevare soldi al bancomat.", + "example_sentence_english": "I need to withdraw money from the ATM.", + "pos": "noun", + "word_frequency": 7776 + }, + { + "word": "barbaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbarian", + "romanization": "barbaro", + "example_sentence_native": "I barbari invasero l'impero romano.", + "example_sentence_english": "The barbarians invaded the Roman Empire.", + "pos": "noun", + "word_frequency": 7777 + }, + { + "word": "biancheria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "linens", + "romanization": "biancheria", + "example_sentence_native": "Devo stendere la biancheria.", + "example_sentence_english": "I need to hang out the laundry.", + "pos": "noun", + "word_frequency": 7779 + }, + { + "word": "biennio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "two-year period", + "romanization": "biennio", + "example_sentence_native": "Il corso dura un biennio.", + "example_sentence_english": "The course lasts a two-year period.", + "pos": "noun", + "word_frequency": 7780 + }, + { + "word": "bonifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bank transfer", + "romanization": "bonifico", + "example_sentence_native": "Ho fatto un bonifico bancario.", + "example_sentence_english": "I made a bank transfer.", + "pos": "noun", + "word_frequency": 7781 + }, + { + "word": "calice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "goblet", + "romanization": "calice", + "example_sentence_native": "Mi passi un calice di vino?", + "example_sentence_english": "Can you pass me a wine glass?", + "pos": "noun", + "word_frequency": 7782 + }, + { + "word": "cambiato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "changed", + "romanization": "cambiato", + "example_sentence_native": "È molto cambiato da quando l'ho visto l'ultima volta.", + "example_sentence_english": "He has changed a lot since I last saw him.", + "pos": "adjective", + "word_frequency": 7783 + }, + { + "word": "cessare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cease", + "romanization": "cessare", + "example_sentence_native": "La pioggia ha cessato.", + "example_sentence_english": "The rain has ceased.", + "pos": "verb", + "word_frequency": 7786 + }, + { + "word": "challenge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenge", + "romanization": "challenge", + "example_sentence_native": "Accetto la tua challenge.", + "example_sentence_english": "I accept your challenge.", + "pos": "noun", + "word_frequency": 7787 + }, + { + "word": "chirurgico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surgical", + "romanization": "chirurgico", + "example_sentence_native": "Ha subito un intervento chirurgico.", + "example_sentence_english": "He underwent a surgical operation.", + "pos": "adjective", + "word_frequency": 7788 + }, + { + "word": "contrastante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrasting", + "romanization": "contrastante", + "example_sentence_native": "Hanno opinioni contrastanti sull'argomento.", + "example_sentence_english": "They have contrasting opinions on the subject.", + "pos": "adjective", + "word_frequency": 7790 + }, + { + "word": "costruttore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "builder", + "romanization": "costruttore", + "example_sentence_native": "Il costruttore ha finito i lavori.", + "example_sentence_english": "The builder has finished the work.", + "pos": "noun", + "word_frequency": 7791 + }, + { + "word": "cuoio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leather", + "romanization": "cuoio", + "example_sentence_native": "Quella borsa è fatta di cuoio.", + "example_sentence_english": "That bag is made of leather.", + "pos": "noun", + "word_frequency": 7794 + }, + { + "word": "denunciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reported", + "romanization": "denunciato", + "example_sentence_native": "Il crimine è stato denunciato alla polizia.", + "example_sentence_english": "The crime was reported to the police.", + "pos": "adjective", + "word_frequency": 7796 + }, + { + "word": "discepolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disciple", + "romanization": "discepolo", + "example_sentence_native": "Era un discepolo fedele del maestro.", + "example_sentence_english": "He was a faithful disciple of the master.", + "pos": "noun", + "word_frequency": 7797 + }, + { + "word": "disgustoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusting", + "romanization": "disgustoso", + "example_sentence_native": "Quel cibo ha un sapore disgustoso.", + "example_sentence_english": "That food tastes disgusting.", + "pos": "adjective", + "word_frequency": 7798 + }, + { + "word": "dispersione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispersion", + "romanization": "dispersione", + "example_sentence_native": "C'è stata una grande dispersione di studenti dopo la lezione.", + "example_sentence_english": "There was a large dispersion of students after the lesson.", + "pos": "noun", + "word_frequency": 7799 + }, + { + "word": "elefante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elephant", + "romanization": "elefante", + "example_sentence_native": "L'elefante è un animale molto grande.", + "example_sentence_english": "The elephant is a very large animal.", + "pos": "noun", + "word_frequency": 7800 + }, + { + "word": "escort", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escort", + "romanization": "escort", + "example_sentence_native": "Ha assunto un'escort per l'evento.", + "example_sentence_english": "He hired an escort for the event.", + "pos": "noun", + "word_frequency": 7801 + }, + { + "word": "fritto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fried food", + "romanization": "fritto", + "example_sentence_native": "Mi piace molto il pesce fritto.", + "example_sentence_english": "I really like fried fish.", + "pos": "noun", + "word_frequency": 7803 + }, + { + "word": "fronteggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to face;to confront", + "romanization": "fronteggiare", + "example_sentence_native": "Dobbiamo fronteggiare questa sfida con coraggio.", + "example_sentence_english": "We must face this challenge with courage.", + "pos": "verb", + "word_frequency": 7804 + }, + { + "word": "gradino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "step;stair", + "romanization": "gradino", + "example_sentence_native": "Fai attenzione al gradino.", + "example_sentence_english": "Watch out for the step.", + "pos": "noun", + "word_frequency": 7806 + }, + { + "word": "habitat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "habitat", + "romanization": "habitat", + "example_sentence_native": "La foresta pluviale è l'habitat di molte specie.", + "example_sentence_english": "The rainforest is the habitat of many species.", + "pos": "noun", + "word_frequency": 7807 + }, + { + "word": "idrogeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydrogen", + "romanization": "idrogeno", + "example_sentence_native": "L'acqua è composta da idrogeno e ossigeno.", + "example_sentence_english": "Water is composed of hydrogen and oxygen.", + "pos": "noun", + "word_frequency": 7811 + }, + { + "word": "indignazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indignation", + "romanization": "indignazione", + "example_sentence_native": "La sua indignazione era palpabile.", + "example_sentence_english": "His indignation was palpable.", + "pos": "noun", + "word_frequency": 7813 + }, + { + "word": "instabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instability", + "romanization": "instabilità", + "example_sentence_native": "Il paese sta attraversando un periodo di instabilità politica.", + "example_sentence_english": "The country is going through a period of political instability.", + "pos": "noun", + "word_frequency": 7814 + }, + { + "word": "letterale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "literal", + "romanization": "letterale", + "example_sentence_native": "La traduzione letterale non sempre rende il significato.", + "example_sentence_english": "The literal translation doesn't always convey the meaning.", + "pos": "adjective", + "word_frequency": 7819 + }, + { + "word": "loggia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loggia;lodge", + "romanization": "loggia", + "example_sentence_native": "La loggia offre una vista magnifica.", + "example_sentence_english": "The loggia offers a magnificent view.", + "pos": "noun", + "word_frequency": 7821 + }, + { + "word": "lontananza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distance;remoteness", + "romanization": "lontananza", + "example_sentence_native": "La lontananza non ha spento il loro amore.", + "example_sentence_english": "Distance did not extinguish their love.", + "pos": "noun", + "word_frequency": 7822 + }, + { + "word": "martirio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "martyrdom", + "romanization": "martirio", + "example_sentence_native": "Ha affrontato il martirio per le sue convinzioni.", + "example_sentence_english": "He faced martyrdom for his beliefs.", + "pos": "noun", + "word_frequency": 7825 + }, + { + "word": "modificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modification;change", + "romanization": "modificazione", + "example_sentence_native": "È necessaria una modificazione al piano originale.", + "example_sentence_english": "A modification to the original plan is necessary.", + "pos": "noun", + "word_frequency": 7828 + }, + { + "word": "mora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blackberry", + "romanization": "mora", + "example_sentence_native": "Mi piacciono le more fresche.", + "example_sentence_english": "I like fresh blackberries.", + "pos": "noun", + "word_frequency": 7829 + }, + { + "word": "morso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bite", + "romanization": "morso", + "example_sentence_native": "Il cane mi ha dato un morso.", + "example_sentence_english": "The dog gave me a bite.", + "pos": "noun", + "word_frequency": 7830 + }, + { + "word": "multi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multi-;multiple", + "romanization": "multi", + "example_sentence_native": "È un sistema multi-funzionale.", + "example_sentence_english": "It's a multi-functional system.", + "pos": "adjective", + "word_frequency": 7831 + }, + { + "word": "nesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection;link", + "romanization": "nesso", + "example_sentence_native": "Non c'è alcun nesso logico tra le due affermazioni.", + "example_sentence_english": "There is no logical connection between the two statements.", + "pos": "noun", + "word_frequency": 7834 + }, + { + "word": "neutrale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neutral", + "romanization": "neutrale", + "example_sentence_native": "È importante rimanere neutrali in questa discussione.", + "example_sentence_english": "It's important to remain neutral in this discussion.", + "pos": "adjective", + "word_frequency": 7835 + }, + { + "word": "nominale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nominal", + "romanization": "nominale", + "example_sentence_native": "Il valore nominale della moneta è di un euro.", + "example_sentence_english": "The nominal value of the coin is one euro.", + "pos": "adjective", + "word_frequency": 7836 + }, + { + "word": "offline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offline", + "romanization": "offline", + "example_sentence_native": "Il sistema è offline per manutenzione.", + "example_sentence_english": "The system is offline for maintenance.", + "pos": "adverb", + "word_frequency": 7837 + }, + { + "word": "orbita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orbit", + "romanization": "orbita", + "example_sentence_native": "La luna è in orbita attorno alla Terra.", + "example_sentence_english": "The moon is in orbit around the Earth.", + "pos": "noun", + "word_frequency": 7838 + }, + { + "word": "paesino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small village;hamlet", + "romanization": "paesino", + "example_sentence_native": "Abbiamo visitato un grazioso paesino in Toscana.", + "example_sentence_english": "We visited a charming small village in Tuscany.", + "pos": "noun", + "word_frequency": 7839 + }, + { + "word": "pantaloncino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shorts", + "romanization": "pantaloncino", + "example_sentence_native": "Ho comprato un nuovo pantaloncino per l'estate.", + "example_sentence_english": "I bought new shorts for the summer.", + "pos": "noun", + "word_frequency": 7840 + }, + { + "word": "pasticceria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastry shop", + "romanization": "pasticceria", + "example_sentence_native": "Andiamo in pasticceria a prendere un dolce.", + "example_sentence_english": "Let's go to the pastry shop to get a dessert.", + "pos": "noun", + "word_frequency": 7842 + }, + { + "word": "pennello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brush", + "romanization": "pennello", + "example_sentence_native": "Ho bisogno di un pennello nuovo per dipingere.", + "example_sentence_english": "I need a new brush for painting.", + "pos": "noun", + "word_frequency": 7844 + }, + { + "word": "progressista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progressive", + "romanization": "progressista", + "example_sentence_native": "È un politico con idee molto progressiste.", + "example_sentence_english": "He is a politician with very progressive ideas.", + "pos": "adjective", + "word_frequency": 7849 + }, + { + "word": "promozionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promotional", + "romanization": "promozionale", + "example_sentence_native": "Stiamo preparando una campagna promozionale per il nuovo prodotto.", + "example_sentence_english": "We are preparing a promotional campaign for the new product.", + "pos": "adjective", + "word_frequency": 7850 + }, + { + "word": "prudente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cautious", + "romanization": "prudente", + "example_sentence_native": "Sii prudente quando guidi in condizioni di pioggia.", + "example_sentence_english": "Be cautious when driving in rainy conditions.", + "pos": "adjective", + "word_frequency": 7851 + }, + { + "word": "raffreddamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooling", + "romanization": "raffreddamento", + "example_sentence_native": "Il sistema di raffreddamento del motore non funziona bene.", + "example_sentence_english": "The engine cooling system is not working well.", + "pos": "noun", + "word_frequency": 7852 + }, + { + "word": "recessione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recession", + "romanization": "recessione", + "example_sentence_native": "Molti temono una prossima recessione economica.", + "example_sentence_english": "Many fear an upcoming economic recession.", + "pos": "noun", + "word_frequency": 7854 + }, + { + "word": "ricavo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revenue", + "romanization": "ricavo", + "example_sentence_native": "I ricavi dell'azienda sono aumentati quest'anno.", + "example_sentence_english": "The company's revenues increased this year.", + "pos": "noun", + "word_frequency": 7855 + }, + { + "word": "ricoverare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hospitalize", + "romanization": "ricoverare", + "example_sentence_native": "Hanno dovuto ricoverare il paziente d'urgenza.", + "example_sentence_english": "They had to hospitalize the patient urgently.", + "pos": "verb", + "word_frequency": 7856 + }, + { + "word": "rilanciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to relaunch", + "romanization": "rilanciare", + "example_sentence_native": "Il governo sta cercando di rilanciare l'economia.", + "example_sentence_english": "The government is trying to relaunch the economy.", + "pos": "verb", + "word_frequency": 7857 + }, + { + "word": "rinforzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reinforcement", + "romanization": "rinforzo", + "example_sentence_native": "Abbiamo bisogno di rinforzi per completare il lavoro.", + "example_sentence_english": "We need reinforcements to complete the work.", + "pos": "noun", + "word_frequency": 7858 + }, + { + "word": "rispecchiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reflect", + "romanization": "rispecchiare", + "example_sentence_native": "Le sue azioni rispecchiano le sue vere intenzioni.", + "example_sentence_english": "His actions reflect his true intentions.", + "pos": "verb", + "word_frequency": 7859 + }, + { + "word": "schiaffo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slap", + "romanization": "schiaffo", + "example_sentence_native": "Gli ha dato uno schiaffo sulla guancia.", + "example_sentence_english": "He gave him a slap on the cheek.", + "pos": "noun", + "word_frequency": 7861 + }, + { + "word": "scultore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sculptor", + "romanization": "scultore", + "example_sentence_native": "Michelangelo era un famoso scultore.", + "example_sentence_english": "Michelangelo was a famous sculptor.", + "pos": "noun", + "word_frequency": 7862 + }, + { + "word": "sigillo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seal", + "romanization": "sigillo", + "example_sentence_native": "Il documento porta il sigillo ufficiale.", + "example_sentence_english": "The document bears the official seal.", + "pos": "noun", + "word_frequency": 7863 + }, + { + "word": "solenne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemn", + "romanization": "solenne", + "example_sentence_native": "La cerimonia è stata molto solenne.", + "example_sentence_english": "The ceremony was very solemn.", + "pos": "adjective", + "word_frequency": 7865 + }, + { + "word": "spionaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "espionage", + "romanization": "spionaggio", + "example_sentence_native": "Il film parla di spionaggio internazionale.", + "example_sentence_english": "The film is about international espionage.", + "pos": "noun", + "word_frequency": 7867 + }, + { + "word": "spuntare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appear", + "romanization": "spuntare", + "example_sentence_native": "Un'idea brillante mi è spuntata in mente.", + "example_sentence_english": "A brilliant idea popped into my mind.", + "pos": "verb", + "word_frequency": 7868 + }, + { + "word": "stabilito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "established", + "romanization": "stabilito", + "example_sentence_native": "Abbiamo un orario stabilito per la riunione.", + "example_sentence_english": "We have an established time for the meeting.", + "pos": "adjective", + "word_frequency": 7869 + }, + { + "word": "stimolante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulating", + "romanization": "stimolante", + "example_sentence_native": "Trovo questo lavoro molto stimolante.", + "example_sentence_english": "I find this job very stimulating.", + "pos": "adjective", + "word_frequency": 7870 + }, + { + "word": "superstite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survivor", + "romanization": "superstite", + "example_sentence_native": "È l'unico superstite dell'incidente.", + "example_sentence_english": "He is the only survivor of the accident.", + "pos": "noun", + "word_frequency": 7873 + }, + { + "word": "tassazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxation", + "romanization": "tassazione", + "example_sentence_native": "Il governo ha annunciato nuove misure di tassazione.", + "example_sentence_english": "The government announced new taxation measures.", + "pos": "noun", + "word_frequency": 7875 + }, + { + "word": "teorema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theorem", + "romanization": "teorema", + "example_sentence_native": "Il teorema di Pitagora è fondamentale in geometria.", + "example_sentence_english": "Pythagoras' theorem is fundamental in geometry.", + "pos": "noun", + "word_frequency": 7876 + }, + { + "word": "testare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to test", + "romanization": "testare", + "example_sentence_native": "Dobbiamo testare il nuovo software prima del lancio.", + "example_sentence_english": "We need to test the new software before the launch.", + "pos": "verb", + "word_frequency": 7877 + }, + { + "word": "traghetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ferry", + "romanization": "traghetto", + "example_sentence_native": "Abbiamo preso il traghetto per l'isola.", + "example_sentence_english": "We took the ferry to the island.", + "pos": "noun", + "word_frequency": 7881 + }, + { + "word": "tutt'oggi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "still today", + "romanization": "tutt'oggi", + "example_sentence_native": "Tutt'oggi, la questione rimane irrisolta.", + "example_sentence_english": "Still today, the issue remains unresolved.", + "pos": "adverb", + "word_frequency": 7882 + }, + { + "word": "veduta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "view", + "romanization": "veduta", + "example_sentence_native": "Dalla finestra si gode una splendida veduta sul lago.", + "example_sentence_english": "From the window, you can enjoy a splendid view of the lake.", + "pos": "noun", + "word_frequency": 7884 + }, + { + "word": "venticinque", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-five", + "romanization": "venticinque", + "example_sentence_native": "Ho venticinque anni.", + "example_sentence_english": "I am twenty-five years old.", + "pos": "adjective", + "word_frequency": 7885 + }, + { + "word": "versamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "payment", + "romanization": "versamento", + "example_sentence_native": "Ho effettuato un versamento sul mio conto bancario.", + "example_sentence_english": "I made a payment into my bank account.", + "pos": "noun", + "word_frequency": 7886 + }, + { + "word": "vettore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carrier", + "romanization": "vettore", + "example_sentence_native": "Il vettore aereo ha annunciato un ritardo.", + "example_sentence_english": "The air carrier announced a delay.", + "pos": "noun", + "word_frequency": 7887 + }, + { + "word": "accertamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assessment", + "romanization": "accertamento", + "example_sentence_native": "L'accertamento dei fatti è essenziale per la giustizia.", + "example_sentence_english": "The assessment of facts is essential for justice.", + "pos": "noun", + "word_frequency": 7888 + }, + { + "word": "addominale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abdominal", + "romanization": "addominale", + "example_sentence_native": "Ha eseguito degli esercizi addominali.", + "example_sentence_english": "He performed some abdominal exercises.", + "pos": "adjective", + "word_frequency": 7889 + }, + { + "word": "affidabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliability", + "romanization": "affidabilità", + "example_sentence_native": "La sua affidabilità è fuori discussione.", + "example_sentence_english": "His reliability is beyond question.", + "pos": "noun", + "word_frequency": 7891 + }, + { + "word": "aggettivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adjective", + "romanization": "aggettivo", + "example_sentence_native": "\"Bello\" è un aggettivo.", + "example_sentence_english": "\"Beautiful\" is an adjective.", + "pos": "noun", + "word_frequency": 7892 + }, + { + "word": "aggirare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bypass", + "romanization": "aggirare", + "example_sentence_native": "Hanno cercato di aggirare le regole.", + "example_sentence_english": "They tried to bypass the rules.", + "pos": "verb", + "word_frequency": 7893 + }, + { + "word": "ambizioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ambitious", + "romanization": "ambizioso", + "example_sentence_native": "È una persona molto ambiziosa.", + "example_sentence_english": "He is a very ambitious person.", + "pos": "adjective", + "word_frequency": 7894 + }, + { + "word": "assist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assist", + "romanization": "assist", + "example_sentence_native": "Ha fatto un assist perfetto per il gol.", + "example_sentence_english": "He made a perfect assist for the goal.", + "pos": "noun", + "word_frequency": 7896 + }, + { + "word": "assurdità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absurdity", + "romanization": "assurdità", + "example_sentence_native": "Non dire assurdità!", + "example_sentence_english": "Don't say absurdities!", + "pos": "noun", + "word_frequency": 7897 + }, + { + "word": "audace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audacious", + "romanization": "audace", + "example_sentence_native": "Ha preso una decisione audace.", + "example_sentence_english": "He made an audacious decision.", + "pos": "adjective", + "word_frequency": 7898 + }, + { + "word": "avvisare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to warn", + "romanization": "avvisare", + "example_sentence_native": "Ti avviserò quando sarò pronto.", + "example_sentence_english": "I will warn you when I am ready.", + "pos": "verb", + "word_frequency": 7899 + }, + { + "word": "bambola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doll", + "romanization": "bambola", + "example_sentence_native": "La bambina gioca con la sua bambola.", + "example_sentence_english": "The little girl plays with her doll.", + "pos": "noun", + "word_frequency": 7901 + }, + { + "word": "banchetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banquet", + "romanization": "banchetto", + "example_sentence_native": "Hanno organizzato un grande banchetto per il matrimonio.", + "example_sentence_english": "They organized a big banquet for the wedding.", + "pos": "noun", + "word_frequency": 7902 + }, + { + "word": "baracca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shack", + "romanization": "baracca", + "example_sentence_native": "Vivevano in una piccola baracca di legno.", + "example_sentence_english": "They lived in a small wooden shack.", + "pos": "noun", + "word_frequency": 7903 + }, + { + "word": "battito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beat", + "romanization": "battito", + "example_sentence_native": "Il suo battito cardiaco era regolare.", + "example_sentence_english": "His heartbeat was regular.", + "pos": "noun", + "word_frequency": 7904 + }, + { + "word": "buffo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "funny", + "romanization": "buffo", + "example_sentence_native": "Ha raccontato una storia molto buffa.", + "example_sentence_english": "He told a very funny story.", + "pos": "adjective", + "word_frequency": 7907 + }, + { + "word": "capsula", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capsule", + "romanization": "capsula", + "example_sentence_native": "Prendi una capsula due volte al giorno.", + "example_sentence_english": "Take one capsule twice a day.", + "pos": "noun", + "word_frequency": 7908 + }, + { + "word": "cinta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "belt", + "romanization": "cinta", + "example_sentence_native": "La città è circondata da un'antica cinta muraria.", + "example_sentence_english": "The city is surrounded by an ancient city wall.", + "pos": "noun", + "word_frequency": 7910 + }, + { + "word": "colonizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonization", + "romanization": "colonizzazione", + "example_sentence_native": "La colonizzazione di nuovi territori ha avuto un impatto profondo.", + "example_sentence_english": "The colonization of new territories had a profound impact.", + "pos": "noun", + "word_frequency": 7911 + }, + { + "word": "compilazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compilation", + "romanization": "compilazione", + "example_sentence_native": "La compilazione del modulo richiede pochi minuti.", + "example_sentence_english": "Filling out the form takes a few minutes.", + "pos": "noun", + "word_frequency": 7912 + }, + { + "word": "condiviso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shared", + "romanization": "condiviso", + "example_sentence_native": "Abbiamo un interesse condiviso per la musica.", + "example_sentence_english": "We have a shared interest in music.", + "pos": "adjective", + "word_frequency": 7914 + }, + { + "word": "conservato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserved", + "romanization": "conservato", + "example_sentence_native": "Il cibo è stato conservato in frigorifero.", + "example_sentence_english": "The food was preserved in the refrigerator.", + "pos": "adjective", + "word_frequency": 7915 + }, + { + "word": "controverso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "controversial", + "romanization": "controverso", + "example_sentence_native": "È un argomento molto controverso.", + "example_sentence_english": "It's a very controversial topic.", + "pos": "adjective", + "word_frequency": 7916 + }, + { + "word": "cospirazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspiracy", + "romanization": "cospirazione", + "example_sentence_native": "Credono in una grande cospirazione.", + "example_sentence_english": "They believe in a big conspiracy.", + "pos": "noun", + "word_frequency": 7917 + }, + { + "word": "crociata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crusade", + "romanization": "crociata", + "example_sentence_native": "La crociata per i diritti umani è un impegno costante.", + "example_sentence_english": "The crusade for human rights is a constant commitment.", + "pos": "noun", + "word_frequency": 7920 + }, + { + "word": "culmine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peak;culmination", + "romanization": "culmine", + "example_sentence_native": "Il concerto ha raggiunto il suo culmine con l'ultimo brano.", + "example_sentence_english": "The concert reached its culmination with the last song.", + "pos": "noun", + "word_frequency": 7922 + }, + { + "word": "dannoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmful;detrimental", + "romanization": "dannoso", + "example_sentence_native": "Il fumo è dannoso per la salute.", + "example_sentence_english": "Smoking is harmful to health.", + "pos": "adjective", + "word_frequency": 7923 + }, + { + "word": "designare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to designate;to appoint", + "romanization": "designare", + "example_sentence_native": "Il presidente deve designare il nuovo ministro.", + "example_sentence_english": "The president must designate the new minister.", + "pos": "verb", + "word_frequency": 7924 + }, + { + "word": "driver", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver (software or person)", + "romanization": "driver", + "example_sentence_native": "Devi installare i driver per la nuova stampante.", + "example_sentence_english": "You need to install the drivers for the new printer.", + "pos": "noun", + "word_frequency": 7925 + }, + { + "word": "duchessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duchess", + "romanization": "duchessa", + "example_sentence_native": "La duchessa ha partecipato al ballo di beneficenza.", + "example_sentence_english": "The duchess attended the charity ball.", + "pos": "noun", + "word_frequency": 7926 + }, + { + "word": "elencato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listed", + "romanization": "elencato", + "example_sentence_native": "Tutti i nomi sono elencati in ordine alfabetico.", + "example_sentence_english": "All the names are listed in alphabetical order.", + "pos": "adjective", + "word_frequency": 7929 + }, + { + "word": "esplosivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explosive", + "romanization": "esplosivo", + "example_sentence_native": "La situazione politica è diventata esplosiva.", + "example_sentence_english": "The political situation has become explosive.", + "pos": "adjective", + "word_frequency": 7931 + }, + { + "word": "femminicidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "femicide", + "romanization": "femminicidio", + "example_sentence_native": "Il femminicidio è un grave problema sociale.", + "example_sentence_english": "Femicide is a serious social problem.", + "pos": "noun", + "word_frequency": 7934 + }, + { + "word": "frigorifero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "refrigerator", + "romanization": "frigorifero", + "example_sentence_native": "Metti il latte nel frigorifero.", + "example_sentence_english": "Put the milk in the refrigerator.", + "pos": "noun", + "word_frequency": 7936 + }, + { + "word": "impasto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dough;mixture", + "romanization": "impasto", + "example_sentence_native": "L'impasto per la pizza deve lievitare.", + "example_sentence_english": "The pizza dough needs to rise.", + "pos": "noun", + "word_frequency": 7940 + }, + { + "word": "indiretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indirect", + "romanization": "indiretto", + "example_sentence_native": "Abbiamo ricevuto un messaggio indiretto.", + "example_sentence_english": "We received an indirect message.", + "pos": "adjective", + "word_frequency": 7941 + }, + { + "word": "infame", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infamous;despicable", + "romanization": "infame", + "example_sentence_native": "Ha commesso un atto infame.", + "example_sentence_english": "He committed an infamous act.", + "pos": "adjective", + "word_frequency": 7942 + }, + { + "word": "introdotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "introduced;brought in", + "romanization": "introdotto", + "example_sentence_native": "La nuova legge è stata introdotta ieri.", + "example_sentence_english": "The new law was introduced yesterday.", + "pos": "adjective", + "word_frequency": 7943 + }, + { + "word": "istituito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "established;instituted", + "romanization": "istituito", + "example_sentence_native": "Il nuovo dipartimento è stato istituito nel 2020.", + "example_sentence_english": "The new department was established in 2020.", + "pos": "adjective", + "word_frequency": 7944 + }, + { + "word": "manicomio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asylum;mental hospital", + "romanization": "manicomio", + "example_sentence_native": "L'edificio un tempo era un manicomio.", + "example_sentence_english": "The building was once an asylum.", + "pos": "noun", + "word_frequency": 7948 + }, + { + "word": "marginale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marginal", + "romanization": "marginale", + "example_sentence_native": "Il problema è di importanza marginale.", + "example_sentence_english": "The problem is of marginal importance.", + "pos": "adjective", + "word_frequency": 7949 + }, + { + "word": "mirino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewfinder;sight (of a gun)", + "romanization": "mirino", + "example_sentence_native": "Ho guardato attraverso il mirino della macchina fotografica.", + "example_sentence_english": "I looked through the camera's viewfinder.", + "pos": "noun", + "word_frequency": 7952 + }, + { + "word": "moderazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderation", + "romanization": "moderazione", + "example_sentence_native": "È importante agire con moderazione.", + "example_sentence_english": "It is important to act with moderation.", + "pos": "noun", + "word_frequency": 7954 + }, + { + "word": "monumentale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monumental", + "romanization": "monumentale", + "example_sentence_native": "Il Colosseo è un'opera monumentale.", + "example_sentence_english": "The Colosseum is a monumental work.", + "pos": "adjective", + "word_frequency": 7955 + }, + { + "word": "novella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short story;novella", + "romanization": "novella", + "example_sentence_native": "Ho letto una interessante novella di Boccaccio.", + "example_sentence_english": "I read an interesting short story by Boccaccio.", + "pos": "noun", + "word_frequency": 7958 + }, + { + "word": "occasionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occasional", + "romanization": "occasionale", + "example_sentence_native": "Il suo lavoro è solo occasionale.", + "example_sentence_english": "His work is only occasional.", + "pos": "adjective", + "word_frequency": 7960 + }, + { + "word": "oggettivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "objective", + "romanization": "oggettivo", + "example_sentence_native": "Dobbiamo mantenere un punto di vista oggettivo.", + "example_sentence_english": "We must maintain an objective point of view.", + "pos": "adjective", + "word_frequency": 7961 + }, + { + "word": "oggigiorno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nowadays", + "romanization": "oggigiorno", + "example_sentence_native": "Oggigiorno, molte persone lavorano da casa.", + "example_sentence_english": "Nowadays, many people work from home.", + "pos": "adverb", + "word_frequency": 7962 + }, + { + "word": "pagano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pagan", + "romanization": "pagano", + "example_sentence_native": "Gli antichi romani erano considerati pagani dai cristiani.", + "example_sentence_english": "The ancient Romans were considered pagans by Christians.", + "pos": "noun", + "word_frequency": 7963 + }, + { + "word": "patetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pathetic", + "romanization": "patetico", + "example_sentence_native": "La sua scusa era davvero patetica.", + "example_sentence_english": "His excuse was truly pathetic.", + "pos": "adjective", + "word_frequency": 7965 + }, + { + "word": "pieve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parish church (historical;rural)", + "romanization": "pieve", + "example_sentence_native": "La pieve romanica domina il paesaggio.", + "example_sentence_english": "The Romanesque parish church dominates the landscape.", + "pos": "noun", + "word_frequency": 7967 + }, + { + "word": "pixel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pixel", + "romanization": "pixel", + "example_sentence_native": "L'immagine è composta da milioni di pixel.", + "example_sentence_english": "The image is composed of millions of pixels.", + "pos": "noun", + "word_frequency": 7968 + }, + { + "word": "poggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hillock;knoll", + "romanization": "poggio", + "example_sentence_native": "La casa si trova su un piccolo poggio.", + "example_sentence_english": "The house is located on a small hillock.", + "pos": "noun", + "word_frequency": 7969 + }, + { + "word": "port", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "port (e.g.;computer port)", + "romanization": "port", + "example_sentence_native": "Assicurati che il cavo sia collegato al port giusto.", + "example_sentence_english": "Make sure the cable is connected to the correct port.", + "pos": "noun", + "word_frequency": 7970 + }, + { + "word": "precipitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precipitation", + "romanization": "precipitazione", + "example_sentence_native": "Le precipitazioni sono state abbondanti questo mese.", + "example_sentence_english": "Precipitation has been abundant this month.", + "pos": "noun", + "word_frequency": 7971 + }, + { + "word": "principato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "principality", + "romanization": "principato", + "example_sentence_native": "Monaco è un piccolo principato.", + "example_sentence_english": "Monaco is a small principality.", + "pos": "noun", + "word_frequency": 7972 + }, + { + "word": "processore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "processor", + "romanization": "processore", + "example_sentence_native": "Il nuovo computer ha un processore molto veloce.", + "example_sentence_english": "The new computer has a very fast processor.", + "pos": "noun", + "word_frequency": 7973 + }, + { + "word": "quiz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "quiz", + "romanization": "quiz", + "example_sentence_native": "Abbiamo fatto un quiz di storia in classe.", + "example_sentence_english": "We did a history quiz in class.", + "pos": "noun", + "word_frequency": 7975 + }, + { + "word": "rappresentativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representative", + "romanization": "rappresentativo", + "example_sentence_native": "Questo campione è rappresentativo della popolazione.", + "example_sentence_english": "This sample is representative of the population.", + "pos": "adjective", + "word_frequency": 7976 + }, + { + "word": "reo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "culprit;defendant", + "romanization": "reo", + "example_sentence_native": "Il reo è stato condannato a dieci anni di prigione.", + "example_sentence_english": "The culprit was sentenced to ten years in prison.", + "pos": "noun", + "word_frequency": 7977 + }, + { + "word": "ripristinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to restore;to reset", + "romanization": "ripristinare", + "example_sentence_native": "Ho dovuto ripristinare le impostazioni di fabbrica del telefono.", + "example_sentence_english": "I had to restore the phone's factory settings.", + "pos": "verb", + "word_frequency": 7978 + }, + { + "word": "riprodurre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reproduce;to play (audio;video)", + "romanization": "riprodurre", + "example_sentence_native": "Questo lettore può riprodurre file MP3.", + "example_sentence_english": "This player can play MP3 files.", + "pos": "verb", + "word_frequency": 7979 + }, + { + "word": "rischioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "risky", + "romanization": "rischioso", + "example_sentence_native": "È un investimento molto rischioso.", + "example_sentence_english": "It's a very risky investment.", + "pos": "adjective", + "word_frequency": 7980 + }, + { + "word": "romanticismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "romanticism;romance", + "romanization": "romanticismo", + "example_sentence_native": "Il Romanticismo è stato un movimento artistico e letterario.", + "example_sentence_english": "Romanticism was an artistic and literary movement.", + "pos": "noun", + "word_frequency": 7981 + }, + { + "word": "sceriffo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheriff", + "romanization": "sceriffo", + "example_sentence_native": "Lo sceriffo ha arrestato il bandito.", + "example_sentence_english": "The sheriff arrested the bandit.", + "pos": "noun", + "word_frequency": 7983 + }, + { + "word": "schierare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deploy;to line up", + "romanization": "schierare", + "example_sentence_native": "L'esercito si è schierato al confine.", + "example_sentence_english": "The army deployed at the border.", + "pos": "verb", + "word_frequency": 7984 + }, + { + "word": "scooter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scooter", + "romanization": "scooter", + "example_sentence_native": "Vado al lavoro in scooter.", + "example_sentence_english": "I go to work by scooter.", + "pos": "noun", + "word_frequency": 7985 + }, + { + "word": "screenshot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screenshot", + "romanization": "screenshot", + "example_sentence_native": "Ho fatto uno screenshot della pagina web.", + "example_sentence_english": "I took a screenshot of the webpage.", + "pos": "noun", + "word_frequency": 7986 + }, + { + "word": "secolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secular;centuries-old", + "romanization": "secolare", + "example_sentence_native": "Questo albero è secolare, ha più di trecento anni.", + "example_sentence_english": "This tree is centuries-old, it's over three hundred years old.", + "pos": "adjective", + "word_frequency": 7988 + }, + { + "word": "selezionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to select", + "romanization": "selezionare", + "example_sentence_native": "Seleziona l'opzione desiderata dal menu.", + "example_sentence_english": "Select the desired option from the menu.", + "pos": "verb", + "word_frequency": 7989 + }, + { + "word": "sensibilizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awareness;sensitization", + "romanization": "sensibilizzazione", + "example_sentence_native": "È importante fare campagne di sensibilizzazione sull'ambiente.", + "example_sentence_english": "It's important to run awareness campaigns on the environment.", + "pos": "noun", + "word_frequency": 7990 + }, + { + "word": "seo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "SEO (Search Engine Optimization)", + "romanization": "SEO", + "example_sentence_native": "L'ottimizzazione SEO è fondamentale per la visibilità online.", + "example_sentence_english": "SEO optimization is fundamental for online visibility.", + "pos": "noun", + "word_frequency": 7991 + }, + { + "word": "sfidare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to challenge;to defy", + "romanization": "sfidare", + "example_sentence_native": "Ha deciso di sfidare le sue paure.", + "example_sentence_english": "He decided to challenge his fears.", + "pos": "verb", + "word_frequency": 7993 + }, + { + "word": "siriano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Syrian", + "romanization": "siriano", + "example_sentence_native": "Molti rifugiati siriani cercano asilo in Europa.", + "example_sentence_english": "Many Syrian refugees seek asylum in Europe.", + "pos": "adjective", + "word_frequency": 7994 + }, + { + "word": "smalto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enamel;nail polish", + "romanization": "smalto", + "example_sentence_native": "Si è messa lo smalto rosso sulle unghie.", + "example_sentence_english": "She put red nail polish on her nails.", + "pos": "noun", + "word_frequency": 7995 + }, + { + "word": "stipulare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stipulate;to conclude (a contract)", + "romanization": "stipulare", + "example_sentence_native": "Le parti hanno stipulato un nuovo contratto.", + "example_sentence_english": "The parties concluded a new contract.", + "pos": "verb", + "word_frequency": 7997 + }, + { + "word": "stock", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stock (inventory)", + "romanization": "stock", + "example_sentence_native": "Abbiamo un grande stock di prodotti in magazzino.", + "example_sentence_english": "We have a large stock of products in the warehouse.", + "pos": "noun", + "word_frequency": 7998 + }, + { + "word": "suscitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arouse;to provoke;to stir up", + "romanization": "suscitare", + "example_sentence_native": "La notizia ha suscitato grande interesse.", + "example_sentence_english": "The news aroused great interest.", + "pos": "verb", + "word_frequency": 7999 + }, + { + "word": "sussistenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsistence;existence", + "romanization": "sussistenza", + "example_sentence_native": "La sua sussistenza dipende interamente dal suo lavoro.", + "example_sentence_english": "His subsistence depends entirely on his work.", + "pos": "noun", + "word_frequency": 8000 + }, + { + "word": "svantaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disadvantage", + "romanization": "svantaggio", + "example_sentence_native": "Essere basso è uno svantaggio nel basket.", + "example_sentence_english": "Being short is a disadvantage in basketball.", + "pos": "noun", + "word_frequency": 8001 + }, + { + "word": "svelare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reveal;to unveil", + "romanization": "svelare", + "example_sentence_native": "Ha deciso di svelare la verità.", + "example_sentence_english": "He decided to reveal the truth.", + "pos": "verb", + "word_frequency": 8002 + }, + { + "word": "tabù", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taboo", + "romanization": "tabù", + "example_sentence_native": "In alcune culture, parlare di morte è un tabù.", + "example_sentence_english": "In some cultures, talking about death is a taboo.", + "pos": "noun", + "word_frequency": 8003 + }, + { + "word": "tappo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cork;stopper;cap", + "romanization": "tappo", + "example_sentence_native": "Non riesco ad aprire la bottiglia, il tappo è troppo stretto.", + "example_sentence_english": "I can't open the bottle, the cap is too tight.", + "pos": "noun", + "word_frequency": 8004 + }, + { + "word": "taverna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tavern;inn", + "romanization": "taverna", + "example_sentence_native": "Abbiamo cenato in una vecchia taverna nel centro storico.", + "example_sentence_english": "We had dinner in an old tavern in the historic center.", + "pos": "noun", + "word_frequency": 8005 + }, + { + "word": "tremendo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tremendous;terrible;awful", + "romanization": "tremendo", + "example_sentence_native": "Ha fatto un errore tremendo.", + "example_sentence_english": "He made a tremendous mistake.", + "pos": "adjective", + "word_frequency": 8008 + }, + { + "word": "voga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vogue;fashion", + "romanization": "voga", + "example_sentence_native": "Quella canzone è tornata in voga.", + "example_sentence_english": "That song is back in vogue.", + "pos": "noun", + "word_frequency": 8011 + }, + { + "word": "yacht", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yacht", + "romanization": "yacht", + "example_sentence_native": "Hanno comprato un nuovo yacht per le vacanze estive.", + "example_sentence_english": "They bought a new yacht for the summer holidays.", + "pos": "noun", + "word_frequency": 8014 + }, + { + "word": "zingaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gypsy;Roma person", + "romanization": "zingaro", + "example_sentence_native": "Ho visto un gruppo di zingari al mercato.", + "example_sentence_english": "I saw a group of Roma people at the market.", + "pos": "noun", + "word_frequency": 8015 + }, + { + "word": "abitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inhabited;populated", + "romanization": "abitato", + "example_sentence_native": "Il villaggio è poco abitato durante l'inverno.", + "example_sentence_english": "The village is sparsely inhabited during winter.", + "pos": "adjective", + "word_frequency": 8016 + }, + { + "word": "acronimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acronym", + "romanization": "acronimo", + "example_sentence_native": "NATO è un acronimo per North Atlantic Treaty Organization.", + "example_sentence_english": "NATO is an acronym for North Atlantic Treaty Organization.", + "pos": "noun", + "word_frequency": 8017 + }, + { + "word": "agrario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agrarian;agricultural", + "romanization": "agrario", + "example_sentence_native": "L'economia della regione è prevalentemente agraria.", + "example_sentence_english": "The region's economy is predominantly agrarian.", + "pos": "adjective", + "word_frequency": 8018 + }, + { + "word": "appeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hanging;suspended", + "romanization": "appeso", + "example_sentence_native": "Il quadro è appeso al muro.", + "example_sentence_english": "The painting is hanging on the wall.", + "pos": "adjective", + "word_frequency": 8023 + }, + { + "word": "arrendersi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surrender;to give up", + "romanization": "arrendersi", + "example_sentence_native": "Non dobbiamo mai arrendersi di fronte alle difficoltà.", + "example_sentence_english": "We must never surrender in the face of difficulties.", + "pos": "verb", + "word_frequency": 8024 + }, + { + "word": "aspirante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspirant;candidate", + "romanization": "aspirante", + "example_sentence_native": "L'aspirante scrittore ha presentato il suo manoscritto.", + "example_sentence_english": "The aspiring writer submitted his manuscript.", + "pos": "noun", + "word_frequency": 8025 + }, + { + "word": "assorbimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorption", + "romanization": "assorbimento", + "example_sentence_native": "La spugna ha un alto tasso di assorbimento.", + "example_sentence_english": "The sponge has a high rate of absorption.", + "pos": "noun", + "word_frequency": 8026 + }, + { + "word": "autonomamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autonomously;independently", + "romanization": "autonomamente", + "example_sentence_native": "Ha imparato a vivere autonomamente.", + "example_sentence_english": "He learned to live independently.", + "pos": "adverb", + "word_frequency": 8027 + }, + { + "word": "bizzarro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bizarre;strange", + "romanization": "bizzarro", + "example_sentence_native": "Ha un senso dell'umorismo molto bizzarro.", + "example_sentence_english": "He has a very bizarre sense of humor.", + "pos": "adjective", + "word_frequency": 8028 + }, + { + "word": "bozza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draft;sketch", + "romanization": "bozza", + "example_sentence_native": "Ho finito la prima bozza del mio romanzo.", + "example_sentence_english": "I finished the first draft of my novel.", + "pos": "noun", + "word_frequency": 8030 + }, + { + "word": "campanile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bell tower", + "romanization": "campanile", + "example_sentence_native": "Il campanile della chiesa è molto antico.", + "example_sentence_english": "The church's bell tower is very old.", + "pos": "noun", + "word_frequency": 8032 + }, + { + "word": "caviglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ankle", + "romanization": "caviglia", + "example_sentence_native": "Mi sono slogato la caviglia giocando a calcio.", + "example_sentence_english": "I sprained my ankle playing soccer.", + "pos": "noun", + "word_frequency": 8034 + }, + { + "word": "cicatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scar", + "romanization": "cicatrice", + "example_sentence_native": "Ha una cicatrice sul ginocchio.", + "example_sentence_english": "He has a scar on his knee.", + "pos": "noun", + "word_frequency": 8037 + }, + { + "word": "cognato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brother-in-law", + "romanization": "cognato", + "example_sentence_native": "Mio cognato è venuto a trovarci.", + "example_sentence_english": "My brother-in-law came to visit us.", + "pos": "noun", + "word_frequency": 8039 + }, + { + "word": "colmare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fill;to bridge (a gap)", + "romanization": "colmare", + "example_sentence_native": "Dobbiamo colmare il divario tra le nostre aspettative e la realtà.", + "example_sentence_english": "We must bridge the gap between our expectations and reality.", + "pos": "verb", + "word_frequency": 8040 + }, + { + "word": "copione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "script;cheat sheet", + "romanization": "copione", + "example_sentence_native": "L'attore ha dimenticato il suo copione durante la prova.", + "example_sentence_english": "The actor forgot his script during the rehearsal.", + "pos": "noun", + "word_frequency": 8041 + }, + { + "word": "cortese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "courteous;kind", + "romanization": "cortese", + "example_sentence_native": "È stato molto cortese offrirmi il suo aiuto.", + "example_sentence_english": "It was very kind of him to offer me his help.", + "pos": "adjective", + "word_frequency": 8042 + }, + { + "word": "decade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decade", + "romanization": "decade", + "example_sentence_native": "Gli anni '80 sono stati una decade di grandi cambiamenti.", + "example_sentence_english": "The 80s were a decade of great changes.", + "pos": "noun", + "word_frequency": 8044 + }, + { + "word": "dimentico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forgetful", + "romanization": "dimentico", + "example_sentence_native": "Sono sempre dimentico di portare l'ombrello.", + "example_sentence_english": "I'm always forgetful about bringing my umbrella.", + "pos": "adjective", + "word_frequency": 8048 + }, + { + "word": "diplomazia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diplomacy", + "romanization": "diplomazia", + "example_sentence_native": "La diplomazia è essenziale per risolvere i conflitti internazionali.", + "example_sentence_english": "Diplomacy is essential for resolving international conflicts.", + "pos": "noun", + "word_frequency": 8049 + }, + { + "word": "drasticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drastically", + "romanization": "drasticamente", + "example_sentence_native": "La situazione è cambiata drasticamente.", + "example_sentence_english": "The situation has changed drastically.", + "pos": "adverb", + "word_frequency": 8050 + }, + { + "word": "emigrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to emigrate", + "romanization": "emigrare", + "example_sentence_native": "Molte persone decidono di emigrare per cercare nuove opportunità.", + "example_sentence_english": "Many people decide to emigrate to seek new opportunities.", + "pos": "verb", + "word_frequency": 8051 + }, + { + "word": "ereditare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inherit", + "romanization": "ereditare", + "example_sentence_native": "Ha ereditato una grande fortuna da sua nonna.", + "example_sentence_english": "He inherited a large fortune from his grandmother.", + "pos": "verb", + "word_frequency": 8052 + }, + { + "word": "export", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "export", + "romanization": "export", + "example_sentence_native": "L'export di prodotti italiani è aumentato quest'anno.", + "example_sentence_english": "The export of Italian products has increased this year.", + "pos": "noun", + "word_frequency": 8053 + }, + { + "word": "fata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fairy", + "romanization": "fata", + "example_sentence_native": "La bambina crede ancora nelle fate.", + "example_sentence_english": "The little girl still believes in fairies.", + "pos": "noun", + "word_frequency": 8054 + }, + { + "word": "fitto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dense;thick;frequent", + "romanization": "fitto", + "example_sentence_native": "La foresta era molto fitta e difficile da attraversare.", + "example_sentence_english": "The forest was very dense and difficult to cross.", + "pos": "adjective", + "word_frequency": 8055 + }, + { + "word": "gate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gate (airport)", + "romanization": "gate", + "example_sentence_native": "Il nostro volo parte dal gate B23.", + "example_sentence_english": "Our flight departs from gate B23.", + "pos": "noun", + "word_frequency": 8056 + }, + { + "word": "genetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetic", + "romanization": "genetico", + "example_sentence_native": "Hanno scoperto un difetto genetico raro.", + "example_sentence_english": "They discovered a rare genetic defect.", + "pos": "adjective", + "word_frequency": 8057 + }, + { + "word": "genitale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genital", + "romanization": "genitale", + "example_sentence_native": "Il medico ha esaminato i genitali del paziente.", + "example_sentence_english": "The doctor examined the patient's genitals.", + "pos": "noun", + "word_frequency": 8058 + }, + { + "word": "gentiluomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gentleman", + "romanization": "gentiluomo", + "example_sentence_native": "Si è comportato come un vero gentiluomo.", + "example_sentence_english": "He behaved like a true gentleman.", + "pos": "noun", + "word_frequency": 8059 + }, + { + "word": "giglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lily", + "romanization": "giglio", + "example_sentence_native": "Il giglio è un fiore molto elegante.", + "example_sentence_english": "The lily is a very elegant flower.", + "pos": "noun", + "word_frequency": 8060 + }, + { + "word": "granché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "much;a lot (usually in negative contexts)", + "romanization": "granché", + "example_sentence_native": "Non è successo granché oggi.", + "example_sentence_english": "Not much happened today.", + "pos": "adverb", + "word_frequency": 8061 + }, + { + "word": "guscio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shell;husk", + "romanization": "guscio", + "example_sentence_native": "La tartaruga si ritira nel suo guscio.", + "example_sentence_english": "The turtle withdraws into its shell.", + "pos": "noun", + "word_frequency": 8062 + }, + { + "word": "iena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hyena", + "romanization": "iena", + "example_sentence_native": "La iena è un animale notturno.", + "example_sentence_english": "The hyena is a nocturnal animal.", + "pos": "noun", + "word_frequency": 8064 + }, + { + "word": "illuminato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illuminated;enlightened", + "romanization": "illuminato", + "example_sentence_native": "La stanza era ben illuminata dalla luce del sole.", + "example_sentence_english": "The room was well illuminated by the sunlight.", + "pos": "adjective", + "word_frequency": 8065 + }, + { + "word": "incisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engraving;incision", + "romanization": "incisione", + "example_sentence_native": "L'artista ha realizzato una bellissima incisione su legno.", + "example_sentence_english": "The artist made a beautiful wood engraving.", + "pos": "noun", + "word_frequency": 8066 + }, + { + "word": "indire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to call;to announce;to convene", + "romanization": "indire", + "example_sentence_native": "Il presidente ha deciso di indire nuove elezioni.", + "example_sentence_english": "The president decided to call new elections.", + "pos": "verb", + "word_frequency": 8067 + }, + { + "word": "indosso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "on;wearing (e.g.;clothes)", + "romanization": "indosso", + "example_sentence_native": "Aveva un cappotto pesante indosso.", + "example_sentence_english": "He had a heavy coat on.", + "pos": "adverb", + "word_frequency": 8068 + }, + { + "word": "insigne", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distinguished;eminent", + "romanization": "insigne", + "example_sentence_native": "È un insigne studioso di storia romana.", + "example_sentence_english": "He is a distinguished scholar of Roman history.", + "pos": "adjective", + "word_frequency": 8070 + }, + { + "word": "internamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internally", + "romanization": "internamente", + "example_sentence_native": "L'edificio è stato ristrutturato internamente.", + "example_sentence_english": "The building has been renovated internally.", + "pos": "adverb", + "word_frequency": 8071 + }, + { + "word": "lassù", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "up there", + "romanization": "lassù", + "example_sentence_native": "Guarda lassù, c'è un uccello.", + "example_sentence_english": "Look up there, there's a bird.", + "pos": "adverb", + "word_frequency": 8076 + }, + { + "word": "mala", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bad;evil (archaic or specific contexts)", + "romanization": "mala", + "example_sentence_native": "La mala sorte lo perseguitava.", + "example_sentence_english": "Bad luck pursued him.", + "pos": "adjective", + "word_frequency": 8077 + }, + { + "word": "manico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handle", + "romanization": "manico", + "example_sentence_native": "Il manico della tazza è rotto.", + "example_sentence_english": "The handle of the cup is broken.", + "pos": "noun", + "word_frequency": 8078 + }, + { + "word": "metallico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metallic", + "romanization": "metallico", + "example_sentence_native": "Il suono era metallico e stridulo.", + "example_sentence_english": "The sound was metallic and shrill.", + "pos": "adjective", + "word_frequency": 8081 + }, + { + "word": "mitologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythology", + "romanization": "mitologia", + "example_sentence_native": "Studiamo la mitologia greca a scuola.", + "example_sentence_english": "We study Greek mythology at school.", + "pos": "noun", + "word_frequency": 8082 + }, + { + "word": "moltitudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multitude", + "romanization": "moltitudine", + "example_sentence_native": "Una moltitudine di persone si è radunata in piazza.", + "example_sentence_english": "A multitude of people gathered in the square.", + "pos": "noun", + "word_frequency": 8083 + }, + { + "word": "notiziario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "news report", + "romanization": "notiziario", + "example_sentence_native": "Ho guardato il notiziario della sera.", + "example_sentence_english": "I watched the evening news report.", + "pos": "noun", + "word_frequency": 8088 + }, + { + "word": "oscurità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "darkness", + "romanization": "oscurità", + "example_sentence_native": "La stanza era avvolta nell'oscurità.", + "example_sentence_english": "The room was enveloped in darkness.", + "pos": "noun", + "word_frequency": 8090 + }, + { + "word": "paradigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paradigm", + "romanization": "paradigma", + "example_sentence_native": "Questo studio propone un nuovo paradigma di ricerca.", + "example_sentence_english": "This study proposes a new research paradigm.", + "pos": "noun", + "word_frequency": 8091 + }, + { + "word": "paragonare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compare", + "romanization": "paragonare", + "example_sentence_native": "Non dovresti paragonare la tua vita a quella degli altri.", + "example_sentence_english": "You shouldn't compare your life to others'.", + "pos": "verb", + "word_frequency": 8092 + }, + { + "word": "pascolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pasture", + "romanization": "pascolo", + "example_sentence_native": "Le mucche erano al pascolo.", + "example_sentence_english": "The cows were in the pasture.", + "pos": "noun", + "word_frequency": 8093 + }, + { + "word": "periodicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "periodically", + "romanization": "periodicamente", + "example_sentence_native": "Controlliamo periodicamente lo stato del sistema.", + "example_sentence_english": "We periodically check the system status.", + "pos": "adverb", + "word_frequency": 8094 + }, + { + "word": "pigiama", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pajamas", + "romanization": "pigiama", + "example_sentence_native": "Indosso il pigiama prima di andare a letto.", + "example_sentence_english": "I put on my pajamas before going to bed.", + "pos": "noun", + "word_frequency": 8096 + }, + { + "word": "portatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bearer", + "romanization": "portatore", + "example_sentence_native": "È il portatore di buone notizie.", + "example_sentence_english": "He is the bearer of good news.", + "pos": "noun", + "word_frequency": 8098 + }, + { + "word": "portico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "portico", + "romanization": "portico", + "example_sentence_native": "Ci siamo riparati sotto il portico dalla pioggia.", + "example_sentence_english": "We took shelter from the rain under the portico.", + "pos": "noun", + "word_frequency": 8099 + }, + { + "word": "prestigioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prestigious", + "romanization": "prestigioso", + "example_sentence_native": "Ha ricevuto un premio prestigioso per il suo lavoro.", + "example_sentence_english": "He received a prestigious award for his work.", + "pos": "adjective", + "word_frequency": 8100 + }, + { + "word": "ratto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rat", + "romanization": "ratto", + "example_sentence_native": "Un ratto è scappato dalla cantina.", + "example_sentence_english": "A rat escaped from the cellar.", + "pos": "noun", + "word_frequency": 8101 + }, + { + "word": "riciclaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycling", + "romanization": "riciclaggio", + "example_sentence_native": "Il riciclaggio è importante per l'ambiente.", + "example_sentence_english": "Recycling is important for the environment.", + "pos": "noun", + "word_frequency": 8102 + }, + { + "word": "ricorrenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recurrence;anniversary", + "romanization": "ricorrenza", + "example_sentence_native": "Oggi è una ricorrenza speciale per la nostra famiglia.", + "example_sentence_english": "Today is a special occasion for our family.", + "pos": "noun", + "word_frequency": 8103 + }, + { + "word": "ritardare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to delay;to be late", + "romanization": "ritardare", + "example_sentence_native": "Non voglio ritardare l'appuntamento.", + "example_sentence_english": "I don't want to delay the appointment.", + "pos": "verb", + "word_frequency": 8104 + }, + { + "word": "rotella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small wheel;caster", + "romanization": "rotella", + "example_sentence_native": "La sedia ha una rotella rotta.", + "example_sentence_english": "The chair has a broken caster.", + "pos": "noun", + "word_frequency": 8105 + }, + { + "word": "scalare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb;to scale", + "romanization": "scalare", + "example_sentence_native": "Hanno deciso di scalare la montagna.", + "example_sentence_english": "They decided to climb the mountain.", + "pos": "verb", + "word_frequency": 8106 + }, + { + "word": "scalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stopover;port of call", + "romanization": "scalo", + "example_sentence_native": "Il volo prevede uno scalo a Roma.", + "example_sentence_english": "The flight includes a stopover in Rome.", + "pos": "noun", + "word_frequency": 8107 + }, + { + "word": "semplificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplification", + "romanization": "semplificazione", + "example_sentence_native": "La semplificazione delle procedure è necessaria.", + "example_sentence_english": "The simplification of procedures is necessary.", + "pos": "noun", + "word_frequency": 8108 + }, + { + "word": "slancio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "momentum;impetus", + "romanization": "slancio", + "example_sentence_native": "Ha preso lo slancio per saltare l'ostacolo.", + "example_sentence_english": "He gained momentum to jump the obstacle.", + "pos": "noun", + "word_frequency": 8109 + }, + { + "word": "sodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hard;firm", + "romanization": "sodo", + "example_sentence_native": "L'uovo era sodo.", + "example_sentence_english": "The egg was hard-boiled.", + "pos": "adjective", + "word_frequency": 8110 + }, + { + "word": "sordo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deaf", + "romanization": "sordo", + "example_sentence_native": "Mio nonno è sordo da un orecchio.", + "example_sentence_english": "My grandfather is deaf in one ear.", + "pos": "adjective", + "word_frequency": 8111 + }, + { + "word": "statistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistical", + "romanization": "statistico", + "example_sentence_native": "Abbiamo analizzato i dati statistici.", + "example_sentence_english": "We analyzed the statistical data.", + "pos": "adjective", + "word_frequency": 8114 + }, + { + "word": "sterminio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extermination", + "romanization": "sterminio", + "example_sentence_native": "La storia ricorda lo sterminio di milioni di persone.", + "example_sentence_english": "History remembers the extermination of millions of people.", + "pos": "noun", + "word_frequency": 8115 + }, + { + "word": "trasversale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transversal;cross-cutting", + "romanization": "trasversale", + "example_sentence_native": "Il progetto ha un approccio trasversale a diverse discipline.", + "example_sentence_english": "The project has a transversal approach to different disciplines.", + "pos": "adjective", + "word_frequency": 8118 + }, + { + "word": "tricolore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tricolor;three-colored", + "romanization": "tricolore", + "example_sentence_native": "La bandiera italiana è tricolore.", + "example_sentence_english": "The Italian flag is tricolor.", + "pos": "adjective", + "word_frequency": 8119 + }, + { + "word": "tutore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guardian;tutor", + "romanization": "tutore", + "example_sentence_native": "Il tutore legale si prende cura degli interessi del minore.", + "example_sentence_english": "The legal guardian takes care of the minor's interests.", + "pos": "noun", + "word_frequency": 8120 + }, + { + "word": "vulnerabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulnerable", + "romanization": "vulnerabile", + "example_sentence_native": "I bambini sono spesso i più vulnerabili in situazioni di crisi.", + "example_sentence_english": "Children are often the most vulnerable in crisis situations.", + "pos": "adjective", + "word_frequency": 8124 + }, + { + "word": "zen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Zen", + "romanization": "zen", + "example_sentence_native": "Pratica lo zen per trovare la pace interiore.", + "example_sentence_english": "He practices Zen to find inner peace.", + "pos": "noun", + "word_frequency": 8126 + }, + { + "word": "abbattimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "felling;demolition;dejection", + "romanization": "abbattimento", + "example_sentence_native": "L'abbattimento degli alberi è necessario per la costruzione.", + "example_sentence_english": "The felling of trees is necessary for construction.", + "pos": "noun", + "word_frequency": 8128 + }, + { + "word": "alpino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alpine", + "romanization": "alpino", + "example_sentence_native": "Le vette alpine sono coperte di neve.", + "example_sentence_english": "The alpine peaks are covered with snow.", + "pos": "adjective", + "word_frequency": 8135 + }, + { + "word": "ampiezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breadth;amplitude;width", + "romanization": "ampiezza", + "example_sentence_native": "L'ampiezza del suono è misurata in decibel.", + "example_sentence_english": "The amplitude of the sound is measured in decibels.", + "pos": "noun", + "word_frequency": 8137 + }, + { + "word": "anticipazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anticipation;preview;advance", + "romanization": "anticipazione", + "example_sentence_native": "Abbiamo ricevuto un'anticipazione del film.", + "example_sentence_english": "We received a preview of the film.", + "pos": "noun", + "word_frequency": 8138 + }, + { + "word": "antifascista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-fascist", + "romanization": "antifascista", + "example_sentence_native": "Era un movimento antifascista molto forte.", + "example_sentence_english": "It was a very strong anti-fascist movement.", + "pos": "adjective", + "word_frequency": 8139 + }, + { + "word": "architettonico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "architectural", + "romanization": "architettonico", + "example_sentence_native": "Il centro storico ha un grande valore architettonico.", + "example_sentence_english": "The historic center has great architectural value.", + "pos": "adjective", + "word_frequency": 8140 + }, + { + "word": "asino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donkey;ass (animal)", + "romanization": "asino", + "example_sentence_native": "L'asino è un animale testardo.", + "example_sentence_english": "The donkey is a stubborn animal.", + "pos": "noun", + "word_frequency": 8141 + }, + { + "word": "assaggiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to taste;to try (food)", + "romanization": "assaggiare", + "example_sentence_native": "Vuoi assaggiare la mia torta?", + "example_sentence_english": "Do you want to taste my cake?", + "pos": "verb", + "word_frequency": 8142 + }, + { + "word": "assaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taste;sample", + "romanization": "assaggio", + "example_sentence_native": "Fammi fare un assaggio del tuo gelato.", + "example_sentence_english": "Let me have a taste of your ice cream.", + "pos": "noun", + "word_frequency": 8143 + }, + { + "word": "assolvere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to acquit;to absolve;to fulfill", + "romanization": "assolvere", + "example_sentence_native": "Il giudice ha deciso di assolvere l'imputato.", + "example_sentence_english": "The judge decided to acquit the defendant.", + "pos": "verb", + "word_frequency": 8144 + }, + { + "word": "balletto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ballet", + "romanization": "balletto", + "example_sentence_native": "Andiamo a vedere un balletto stasera.", + "example_sentence_english": "Let's go see a ballet tonight.", + "pos": "noun", + "word_frequency": 8147 + }, + { + "word": "bara", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coffin;casket", + "romanization": "bara", + "example_sentence_native": "La bara era coperta di fiori.", + "example_sentence_english": "The coffin was covered with flowers.", + "pos": "noun", + "word_frequency": 8148 + }, + { + "word": "boccone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mouthful;bite", + "romanization": "boccone", + "example_sentence_native": "Ha mangiato tutto in un solo boccone.", + "example_sentence_english": "He ate everything in one bite.", + "pos": "noun", + "word_frequency": 8150 + }, + { + "word": "break", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "break (as in a pause)", + "romanization": "break", + "example_sentence_native": "Facciamo un piccolo break per il caffè.", + "example_sentence_english": "Let's take a short coffee break.", + "pos": "noun", + "word_frequency": 8151 + }, + { + "word": "capanna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hut;cabin", + "romanization": "capanna", + "example_sentence_native": "Hanno costruito una piccola capanna nel bosco.", + "example_sentence_english": "They built a small hut in the woods.", + "pos": "noun", + "word_frequency": 8152 + }, + { + "word": "cartolina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "postcard", + "romanization": "cartolina", + "example_sentence_native": "Ti ho spedito una cartolina da Roma.", + "example_sentence_english": "I sent you a postcard from Rome.", + "pos": "noun", + "word_frequency": 8154 + }, + { + "word": "cavità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cavity;hollow", + "romanization": "cavità", + "example_sentence_native": "Il dentista ha trovato una cavità nel mio dente.", + "example_sentence_english": "The dentist found a cavity in my tooth.", + "pos": "noun", + "word_frequency": 8155 + }, + { + "word": "chiodo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nail (for hammering)", + "romanization": "chiodo", + "example_sentence_native": "Ho appeso il quadro a un chiodo.", + "example_sentence_english": "I hung the painting on a nail.", + "pos": "noun", + "word_frequency": 8156 + }, + { + "word": "cinquant'anni", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fifty years", + "romanization": "cinquant'anni", + "example_sentence_native": "Ha cinquant'anni e sembra ancora giovane.", + "example_sentence_english": "He is fifty years old and still looks young.", + "pos": "noun", + "word_frequency": 8157 + }, + { + "word": "commentatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commentator", + "romanization": "commentatore", + "example_sentence_native": "Il commentatore sportivo ha descritto la partita.", + "example_sentence_english": "The sports commentator described the match.", + "pos": "noun", + "word_frequency": 8159 + }, + { + "word": "commovente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moving;touching", + "romanization": "commovente", + "example_sentence_native": "È stata una storia davvero commovente.", + "example_sentence_english": "It was a truly moving story.", + "pos": "adjective", + "word_frequency": 8160 + }, + { + "word": "corpus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corpus (body of texts)", + "romanization": "corpus", + "example_sentence_native": "Il linguista ha analizzato un vasto corpus di testi.", + "example_sentence_english": "The linguist analyzed a vast corpus of texts.", + "pos": "noun", + "word_frequency": 8161 + }, + { + "word": "cortometraggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short film", + "romanization": "cortometraggio", + "example_sentence_native": "Ha vinto un premio per il suo cortometraggio.", + "example_sentence_english": "He won an award for his short film.", + "pos": "noun", + "word_frequency": 8162 + }, + { + "word": "distrazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distraction", + "romanization": "distrazione", + "example_sentence_native": "Ho bisogno di concentrarmi, senza distrazioni.", + "example_sentence_english": "I need to concentrate, without distractions.", + "pos": "noun", + "word_frequency": 8168 + }, + { + "word": "distributore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dispenser;vending machine;distributor", + "romanization": "distributore", + "example_sentence_native": "Ho comprato una bibita al distributore automatico.", + "example_sentence_english": "I bought a drink from the vending machine.", + "pos": "noun", + "word_frequency": 8169 + }, + { + "word": "dosso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hump;speed bump", + "romanization": "dosso", + "example_sentence_native": "Rallenta, c'è un dosso sulla strada.", + "example_sentence_english": "Slow down, there's a speed bump on the road.", + "pos": "noun", + "word_frequency": 8171 + }, + { + "word": "enormemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enormously;hugely", + "romanization": "enormemente", + "example_sentence_native": "Il progetto è cresciuto enormemente.", + "example_sentence_english": "The project has grown enormously.", + "pos": "adverb", + "word_frequency": 8174 + }, + { + "word": "estremista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extremist", + "romanization": "estremista", + "example_sentence_native": "Il gruppo è stato etichettato come estremista.", + "example_sentence_english": "The group was labeled as extremist.", + "pos": "noun", + "word_frequency": 8175 + }, + { + "word": "filone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vein;trend;loaf (of bread)", + "romanization": "filone", + "example_sentence_native": "Questo film segue un filone narrativo classico.", + "example_sentence_english": "This film follows a classic narrative trend.", + "pos": "noun", + "word_frequency": 8178 + }, + { + "word": "fratellanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brotherhood;fraternity", + "romanization": "fratellanza", + "example_sentence_native": "La fratellanza è un valore importante.", + "example_sentence_english": "Brotherhood is an important value.", + "pos": "noun", + "word_frequency": 8179 + }, + { + "word": "gomito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "elbow", + "romanization": "gomito", + "example_sentence_native": "Mi sono fatto male al gomito.", + "example_sentence_english": "I hurt my elbow.", + "pos": "noun", + "word_frequency": 8181 + }, + { + "word": "grandioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grandiose;magnificent;great", + "romanization": "grandioso", + "example_sentence_native": "Lo spettacolo è stato grandioso.", + "example_sentence_english": "The show was magnificent.", + "pos": "adjective", + "word_frequency": 8182 + }, + { + "word": "gregge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flock;herd", + "romanization": "gregge", + "example_sentence_native": "Il pastore guidava il suo gregge.", + "example_sentence_english": "The shepherd led his flock.", + "pos": "noun", + "word_frequency": 8183 + }, + { + "word": "guru", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guru", + "romanization": "guru", + "example_sentence_native": "È considerato un guru nel suo campo.", + "example_sentence_english": "He is considered a guru in his field.", + "pos": "noun", + "word_frequency": 8184 + }, + { + "word": "ingiustamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustly", + "romanization": "ingiustamente", + "example_sentence_native": "È stato accusato ingiustamente.", + "example_sentence_english": "He was unjustly accused.", + "pos": "adverb", + "word_frequency": 8188 + }, + { + "word": "integro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "integral;whole;upright", + "romanization": "integro", + "example_sentence_native": "È una persona di carattere integro.", + "example_sentence_english": "He is a person of upright character.", + "pos": "adjective", + "word_frequency": 8189 + }, + { + "word": "lavagna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blackboard;whiteboard", + "romanization": "lavagna", + "example_sentence_native": "La maestra ha scritto sulla lavagna.", + "example_sentence_english": "The teacher wrote on the blackboard.", + "pos": "noun", + "word_frequency": 8192 + }, + { + "word": "logistica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logistics", + "romanization": "logistica", + "example_sentence_native": "La logistica è fondamentale per la distribuzione.", + "example_sentence_english": "Logistics is fundamental for distribution.", + "pos": "noun", + "word_frequency": 8194 + }, + { + "word": "membrana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "membrane", + "romanization": "membrana", + "example_sentence_native": "La cellula è protetta da una membrana.", + "example_sentence_english": "The cell is protected by a membrane.", + "pos": "noun", + "word_frequency": 8198 + }, + { + "word": "menta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mint", + "romanization": "menta", + "example_sentence_native": "Mi piace il tè alla menta.", + "example_sentence_english": "I like mint tea.", + "pos": "noun", + "word_frequency": 8199 + }, + { + "word": "microonda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "microwave", + "romanization": "microonda", + "example_sentence_native": "Scalda il cibo nel microonda.", + "example_sentence_english": "Heat the food in the microwave.", + "pos": "noun", + "word_frequency": 8200 + }, + { + "word": "molo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pier", + "romanization": "molo", + "example_sentence_native": "Le barche erano ormeggiate al molo.", + "example_sentence_english": "The boats were moored at the pier.", + "pos": "noun", + "word_frequency": 8201 + }, + { + "word": "neutro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neutral", + "romanization": "neutro", + "example_sentence_native": "Il colore delle pareti è neutro.", + "example_sentence_english": "The color of the walls is neutral.", + "pos": "adjective", + "word_frequency": 8204 + }, + { + "word": "notorietà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notoriety", + "romanization": "notorietà", + "example_sentence_native": "Ha raggiunto la notorietà dopo il suo ultimo film.", + "example_sentence_english": "He achieved notoriety after his last film.", + "pos": "noun", + "word_frequency": 8206 + }, + { + "word": "nullo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "null", + "romanization": "nullo", + "example_sentence_native": "Il contratto è stato dichiarato nullo.", + "example_sentence_english": "The contract was declared null.", + "pos": "adjective", + "word_frequency": 8207 + }, + { + "word": "ottimale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimal", + "romanization": "ottimale", + "example_sentence_native": "Questa è la soluzione ottimale per il problema.", + "example_sentence_english": "This is the optimal solution for the problem.", + "pos": "adjective", + "word_frequency": 8209 + }, + { + "word": "plasma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plasma", + "romanization": "plasma", + "example_sentence_native": "Il sangue è composto da globuli rossi, globuli bianchi e plasma.", + "example_sentence_english": "Blood is composed of red blood cells, white blood cells, and plasma.", + "pos": "noun", + "word_frequency": 8213 + }, + { + "word": "portone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "main door", + "romanization": "portone", + "example_sentence_native": "Il portone del palazzo era aperto.", + "example_sentence_english": "The main door of the building was open.", + "pos": "noun", + "word_frequency": 8214 + }, + { + "word": "premiazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "award ceremony", + "romanization": "premiazione", + "example_sentence_native": "La premiazione si terrà domani sera.", + "example_sentence_english": "The award ceremony will be held tomorrow evening.", + "pos": "noun", + "word_frequency": 8215 + }, + { + "word": "proclamare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to proclaim", + "romanization": "proclamare", + "example_sentence_native": "Il re ha proclamato un nuovo editto.", + "example_sentence_english": "The king proclaimed a new edict.", + "pos": "verb", + "word_frequency": 8216 + }, + { + "word": "propensione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propensity", + "romanization": "propensione", + "example_sentence_native": "Ha una forte propensione per le lingue straniere.", + "example_sentence_english": "He has a strong propensity for foreign languages.", + "pos": "noun", + "word_frequency": 8217 + }, + { + "word": "puzzle", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puzzle", + "romanization": "puzzle", + "example_sentence_native": "Mi piace fare i puzzle nel tempo libero.", + "example_sentence_english": "I like doing puzzles in my free time.", + "pos": "noun", + "word_frequency": 8218 + }, + { + "word": "questura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police headquarters (local)", + "romanization": "questura", + "example_sentence_native": "Devo andare in questura per il permesso di soggiorno.", + "example_sentence_english": "I need to go to the police headquarters for my residence permit.", + "pos": "noun", + "word_frequency": 8219 + }, + { + "word": "quotidianità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "daily life", + "romanization": "quotidianità", + "example_sentence_native": "La sua quotidianità è molto impegnativa.", + "example_sentence_english": "His daily life is very demanding.", + "pos": "noun", + "word_frequency": 8221 + }, + { + "word": "racchiudere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enclose", + "romanization": "racchiudere", + "example_sentence_native": "Questa scatola racchiude molti ricordi.", + "example_sentence_english": "This box encloses many memories.", + "pos": "verb", + "word_frequency": 8222 + }, + { + "word": "rafforzamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strengthening", + "romanization": "rafforzamento", + "example_sentence_native": "Il rafforzamento dell'economia è una priorità.", + "example_sentence_english": "The strengthening of the economy is a priority.", + "pos": "noun", + "word_frequency": 8223 + }, + { + "word": "raffreddore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cold (illness)", + "romanization": "raffreddore", + "example_sentence_native": "Ho il raffreddore e mi sento debole.", + "example_sentence_english": "I have a cold and I feel weak.", + "pos": "noun", + "word_frequency": 8224 + }, + { + "word": "rana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frog", + "romanization": "rana", + "example_sentence_native": "La rana salta nello stagno.", + "example_sentence_english": "The frog jumps into the pond.", + "pos": "noun", + "word_frequency": 8225 + }, + { + "word": "reclutamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruitment", + "romanization": "reclutamento", + "example_sentence_native": "L'azienda ha avviato una nuova campagna di reclutamento.", + "example_sentence_english": "The company has started a new recruitment campaign.", + "pos": "noun", + "word_frequency": 8226 + }, + { + "word": "redattore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor", + "romanization": "redattore", + "example_sentence_native": "Il redattore ha revisionato l'articolo.", + "example_sentence_english": "The editor revised the article.", + "pos": "noun", + "word_frequency": 8227 + }, + { + "word": "rendita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "income", + "romanization": "rendita", + "example_sentence_native": "Vive di rendita grazie ai suoi investimenti.", + "example_sentence_english": "He lives off income thanks to his investments.", + "pos": "noun", + "word_frequency": 8228 + }, + { + "word": "rialzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rise", + "romanization": "rialzo", + "example_sentence_native": "Si prevede un rialzo dei prezzi.", + "example_sentence_english": "A price increase is expected.", + "pos": "noun", + "word_frequency": 8230 + }, + { + "word": "rifornimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refueling", + "romanization": "rifornimento", + "example_sentence_native": "Dobbiamo fare rifornimento di benzina.", + "example_sentence_english": "We need to refuel.", + "pos": "noun", + "word_frequency": 8231 + }, + { + "word": "ripulire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to clean up", + "romanization": "ripulire", + "example_sentence_native": "Devo ripulire la stanza prima che arrivino gli ospiti.", + "example_sentence_english": "I need to clean up the room before the guests arrive.", + "pos": "verb", + "word_frequency": 8232 + }, + { + "word": "robusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "robust", + "romanization": "robusto", + "example_sentence_native": "Questo tavolo è molto robusto.", + "example_sentence_english": "This table is very robust.", + "pos": "adjective", + "word_frequency": 8234 + }, + { + "word": "satellitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satellite (adj.)", + "romanization": "satellitare", + "example_sentence_native": "Abbiamo installato un'antenna satellitare.", + "example_sentence_english": "We installed a satellite antenna.", + "pos": "adjective", + "word_frequency": 8236 + }, + { + "word": "sbarra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bar", + "romanization": "sbarra", + "example_sentence_native": "La sbarra del passaggio a livello era abbassata.", + "example_sentence_english": "The level crossing bar was down.", + "pos": "noun", + "word_frequency": 8237 + }, + { + "word": "sottovalutare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to underestimate", + "romanization": "sottovalutare", + "example_sentence_native": "Non dovresti mai sottovalutare i tuoi avversari.", + "example_sentence_english": "You should never underestimate your opponents.", + "pos": "verb", + "word_frequency": 8239 + }, + { + "word": "spaccare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to break;to split", + "romanization": "spaccare", + "example_sentence_native": "Non spaccare il vaso!", + "example_sentence_english": "Don't break the vase!", + "pos": "verb", + "word_frequency": 8240 + }, + { + "word": "sultano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sultan", + "romanization": "sultano", + "example_sentence_native": "Il sultano governava un vasto impero.", + "example_sentence_english": "The sultan ruled a vast empire.", + "pos": "noun", + "word_frequency": 8242 + }, + { + "word": "suor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sister (nun)", + "romanization": "suor", + "example_sentence_native": "Suor Maria è molto gentile.", + "example_sentence_english": "Sister Maria is very kind.", + "pos": "noun", + "word_frequency": 8243 + }, + { + "word": "tangente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bribe;tangent (math)", + "romanization": "tangente", + "example_sentence_native": "Ha pagato una tangente per ottenere il permesso.", + "example_sentence_english": "He paid a bribe to get the permit.", + "pos": "noun", + "word_frequency": 8244 + }, + { + "word": "tartaruga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turtle", + "romanization": "tartaruga", + "example_sentence_native": "La tartaruga cammina lentamente.", + "example_sentence_english": "The turtle walks slowly.", + "pos": "noun", + "word_frequency": 8245 + }, + { + "word": "tatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tact;touch (sense)", + "romanization": "tatto", + "example_sentence_native": "Ha dimostrato molto tatto nella situazione difficile.", + "example_sentence_english": "He showed a lot of tact in the difficult situation.", + "pos": "noun", + "word_frequency": 8246 + }, + { + "word": "trading", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trading", + "romanization": "trading", + "example_sentence_native": "Si occupa di trading online.", + "example_sentence_english": "He deals with online trading.", + "pos": "noun", + "word_frequency": 8248 + }, + { + "word": "vagamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vaguely", + "romanization": "vagamente", + "example_sentence_native": "Ricordo vagamente il suo volto.", + "example_sentence_english": "I vaguely remember his face.", + "pos": "adverb", + "word_frequency": 8251 + }, + { + "word": "ventiquattro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-four", + "romanization": "ventiquattro", + "example_sentence_native": "Sono le ventiquattro ore del giorno.", + "example_sentence_english": "It's twenty-four hours a day.", + "pos": "noun", + "word_frequency": 8252 + }, + { + "word": "western", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "western (genre)", + "romanization": "western", + "example_sentence_native": "Mi piace guardare i film western.", + "example_sentence_english": "I like watching western movies.", + "pos": "noun", + "word_frequency": 8254 + }, + { + "word": "abitualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habitually;usually", + "romanization": "abitualmente", + "example_sentence_native": "Abitualmente si sveglia presto.", + "example_sentence_english": "He habitually wakes up early.", + "pos": "adverb", + "word_frequency": 8257 + }, + { + "word": "affacciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overlook;to face (out onto)", + "romanization": "affacciare", + "example_sentence_native": "La finestra si affaccia sul giardino.", + "example_sentence_english": "The window overlooks the garden.", + "pos": "verb", + "word_frequency": 8258 + }, + { + "word": "affluenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turnout;attendance", + "romanization": "affluenza", + "example_sentence_native": "C'è stata una grande affluenza alle urne.", + "example_sentence_english": "There was a large turnout at the polls.", + "pos": "noun", + "word_frequency": 8259 + }, + { + "word": "agevolazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concession;facility;benefit", + "romanization": "agevolazione", + "example_sentence_native": "Hanno offerto agevolazioni fiscali alle nuove imprese.", + "example_sentence_english": "They offered tax concessions to new businesses.", + "pos": "noun", + "word_frequency": 8260 + }, + { + "word": "aggregazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aggregation;grouping", + "romanization": "aggregazione", + "example_sentence_native": "L'aggregazione di dati è fondamentale per l'analisi.", + "example_sentence_english": "Data aggregation is fundamental for analysis.", + "pos": "noun", + "word_frequency": 8261 + }, + { + "word": "ambientare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set (a story);to adapt", + "romanization": "ambientare", + "example_sentence_native": "Il film è ambientato a Roma.", + "example_sentence_english": "The film is set in Rome.", + "pos": "verb", + "word_frequency": 8266 + }, + { + "word": "animato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "animated;lively", + "romanization": "animato", + "example_sentence_native": "La festa era molto animata.", + "example_sentence_english": "The party was very lively.", + "pos": "adjective", + "word_frequency": 8268 + }, + { + "word": "armatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor", + "romanization": "armatura", + "example_sentence_native": "Il cavaliere indossava una pesante armatura.", + "example_sentence_english": "The knight wore heavy armor.", + "pos": "noun", + "word_frequency": 8271 + }, + { + "word": "avanzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leftover;surplus;remnant", + "romanization": "avanzo", + "example_sentence_native": "Abbiamo mangiato gli avanzi della cena.", + "example_sentence_english": "We ate the leftovers from dinner.", + "pos": "noun", + "word_frequency": 8272 + }, + { + "word": "avvolgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wrap;to coil", + "romanization": "avvolgere", + "example_sentence_native": "Ha avvolto il regalo nella carta.", + "example_sentence_english": "She wrapped the gift in paper.", + "pos": "verb", + "word_frequency": 8273 + }, + { + "word": "barbiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barber", + "romanization": "barbiere", + "example_sentence_native": "Vado dal barbiere per un taglio di capelli.", + "example_sentence_english": "I'm going to the barber for a haircut.", + "pos": "noun", + "word_frequency": 8274 + }, + { + "word": "campanello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "doorbell;bell", + "romanization": "campanello", + "example_sentence_native": "Ho suonato il campanello ma nessuno ha risposto.", + "example_sentence_english": "I rang the doorbell but no one answered.", + "pos": "noun", + "word_frequency": 8277 + }, + { + "word": "cappuccio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hood;foam (of cappuccino)", + "romanization": "cappuccio", + "example_sentence_native": "Indossava una felpa con il cappuccio.", + "example_sentence_english": "He was wearing a hoodie.", + "pos": "noun", + "word_frequency": 8278 + }, + { + "word": "cattolicesimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Catholicism", + "romanization": "cattolicesimo", + "example_sentence_native": "Il cattolicesimo è la religione predominante in Italia.", + "example_sentence_english": "Catholicism is the predominant religion in Italy.", + "pos": "noun", + "word_frequency": 8279 + }, + { + "word": "compromettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compromise;to jeopardize", + "romanization": "compromettere", + "example_sentence_native": "Non voglio compromettere la mia reputazione.", + "example_sentence_english": "I don't want to jeopardize my reputation.", + "pos": "verb", + "word_frequency": 8282 + }, + { + "word": "conducente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driver", + "romanization": "conducente", + "example_sentence_native": "Il conducente ha fermato l'autobus alla fermata successiva.", + "example_sentence_english": "The driver stopped the bus at the next stop.", + "pos": "noun", + "word_frequency": 8283 + }, + { + "word": "conservatorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conservatory (music school)", + "romanization": "conservatorio", + "example_sentence_native": "Ha studiato pianoforte al conservatorio per molti anni.", + "example_sentence_english": "He studied piano at the conservatory for many years.", + "pos": "noun", + "word_frequency": 8284 + }, + { + "word": "datare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to date (from);to assign a date to", + "romanization": "datare", + "example_sentence_native": "Questo edificio data dal XV secolo.", + "example_sentence_english": "This building dates from the 15th century.", + "pos": "verb", + "word_frequency": 8287 + }, + { + "word": "deceduto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceased", + "romanization": "deceduto", + "example_sentence_native": "Il paziente è stato dichiarato deceduto alle 10:30.", + "example_sentence_english": "The patient was declared deceased at 10:30 AM.", + "pos": "adjective", + "word_frequency": 8288 + }, + { + "word": "demografico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demographic", + "romanization": "demografico", + "example_sentence_native": "Stiamo analizzando i dati demografici della popolazione.", + "example_sentence_english": "We are analyzing the demographic data of the population.", + "pos": "adjective", + "word_frequency": 8289 + }, + { + "word": "eclissi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eclipse", + "romanization": "eclissi", + "example_sentence_native": "Abbiamo osservato l'eclissi lunare la scorsa notte.", + "example_sentence_english": "We observed the lunar eclipse last night.", + "pos": "noun", + "word_frequency": 8291 + }, + { + "word": "ecologico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ecological;environmentally friendly", + "romanization": "ecologico", + "example_sentence_native": "Molte persone preferiscono prodotti ecologici al giorno d'oggi.", + "example_sentence_english": "Many people prefer ecological products nowadays.", + "pos": "adjective", + "word_frequency": 8292 + }, + { + "word": "esattezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exactness;accuracy", + "romanization": "esattezza", + "example_sentence_native": "Ha risposto alla domanda con grande esattezza.", + "example_sentence_english": "He answered the question with great exactness.", + "pos": "noun", + "word_frequency": 8294 + }, + { + "word": "fallimentare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "failing;disastrous", + "romanization": "fallimentare", + "example_sentence_native": "La sua strategia si è rivelata fallimentare.", + "example_sentence_english": "His strategy proved to be disastrous.", + "pos": "adjective", + "word_frequency": 8296 + }, + { + "word": "fanciulla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maiden;young girl", + "romanization": "fanciulla", + "example_sentence_native": "La fanciulla cantava una dolce melodia.", + "example_sentence_english": "The maiden sang a sweet melody.", + "pos": "noun", + "word_frequency": 8297 + }, + { + "word": "favorito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "favorite;preferred", + "romanization": "favorito", + "example_sentence_native": "Il mio colore favorito è il blu.", + "example_sentence_english": "My favorite color is blue.", + "pos": "adjective", + "word_frequency": 8298 + }, + { + "word": "feccia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dregs;scum", + "romanization": "feccia", + "example_sentence_native": "Ha detto che sono la feccia della società.", + "example_sentence_english": "He said they are the scum of society.", + "pos": "noun", + "word_frequency": 8299 + }, + { + "word": "finzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiction;pretense", + "romanization": "finzione", + "example_sentence_native": "La sua storia era pura finzione.", + "example_sentence_english": "His story was pure fiction.", + "pos": "noun", + "word_frequency": 8300 + }, + { + "word": "folk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folk (music;culture)", + "romanization": "folk", + "example_sentence_native": "Ascolta molta musica folk.", + "example_sentence_english": "He listens to a lot of folk music.", + "pos": "noun", + "word_frequency": 8301 + }, + { + "word": "furioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furious;enraged", + "romanization": "furioso", + "example_sentence_native": "Era furioso per il ritardo del treno.", + "example_sentence_english": "He was furious about the train delay.", + "pos": "adjective", + "word_frequency": 8303 + }, + { + "word": "gala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gala;formal event", + "romanization": "gala", + "example_sentence_native": "Hanno organizzato un gala di beneficenza.", + "example_sentence_english": "They organized a charity gala.", + "pos": "noun", + "word_frequency": 8304 + }, + { + "word": "gatta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female cat;cat", + "romanization": "gatta", + "example_sentence_native": "La gatta dorme sul divano.", + "example_sentence_english": "The cat is sleeping on the sofa.", + "pos": "noun", + "word_frequency": 8305 + }, + { + "word": "generosità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generosity", + "romanization": "generosità", + "example_sentence_native": "La sua generosità è ben nota a tutti.", + "example_sentence_english": "His generosity is well known to everyone.", + "pos": "noun", + "word_frequency": 8306 + }, + { + "word": "governante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "governor;housekeeper;nanny", + "romanization": "governante", + "example_sentence_native": "La governante si occupa della casa.", + "example_sentence_english": "The housekeeper takes care of the house.", + "pos": "noun", + "word_frequency": 8309 + }, + { + "word": "grappa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grappa (Italian brandy)", + "romanization": "grappa", + "example_sentence_native": "Dopo cena, ha offerto un bicchierino di grappa.", + "example_sentence_english": "After dinner, he offered a small glass of grappa.", + "pos": "noun", + "word_frequency": 8310 + }, + { + "word": "guancia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cheek", + "romanization": "guancia", + "example_sentence_native": "Le sue guance erano rosse dal freddo.", + "example_sentence_english": "Her cheeks were red from the cold.", + "pos": "noun", + "word_frequency": 8311 + }, + { + "word": "igienico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hygienic;sanitary", + "romanization": "igienico", + "example_sentence_native": "È importante mantenere un ambiente igienico.", + "example_sentence_english": "It's important to maintain a hygienic environment.", + "pos": "adjective", + "word_frequency": 8314 + }, + { + "word": "imitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to imitate;to mimic", + "romanization": "imitare", + "example_sentence_native": "I bambini amano imitare i loro genitori.", + "example_sentence_english": "Children love to imitate their parents.", + "pos": "verb", + "word_frequency": 8315 + }, + { + "word": "impostare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set up;to configure", + "romanization": "impostare", + "example_sentence_native": "Devo impostare la nuova stampante.", + "example_sentence_english": "I need to set up the new printer.", + "pos": "verb", + "word_frequency": 8316 + }, + { + "word": "inaspettato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unexpected", + "romanization": "inaspettato", + "example_sentence_native": "La sua visita è stata del tutto inaspettata.", + "example_sentence_english": "His visit was completely unexpected.", + "pos": "adjective", + "word_frequency": 8317 + }, + { + "word": "incompetenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incompetence", + "romanization": "incompetenza", + "example_sentence_native": "L'incompetenza del personale ha causato molti problemi.", + "example_sentence_english": "The incompetence of the staff caused many problems.", + "pos": "noun", + "word_frequency": 8318 + }, + { + "word": "infinitamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infinitely;endlessly", + "romanization": "infinitamente", + "example_sentence_native": "Ti sono infinitamente grato per il tuo aiuto.", + "example_sentence_english": "I am infinitely grateful for your help.", + "pos": "adverb", + "word_frequency": 8319 + }, + { + "word": "ingenuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naive", + "romanization": "ingenuo", + "example_sentence_native": "Era troppo ingenuo per capire il trucco.", + "example_sentence_english": "He was too naive to understand the trick.", + "pos": "adjective", + "word_frequency": 8320 + }, + { + "word": "inseguire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chase;to pursue", + "romanization": "inseguire", + "example_sentence_native": "Il cane ha iniziato a inseguire la palla.", + "example_sentence_english": "The dog started to chase the ball.", + "pos": "verb", + "word_frequency": 8321 + }, + { + "word": "interrogazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogation;oral exam", + "romanization": "interrogazione", + "example_sentence_native": "Ho un'interrogazione di storia domani.", + "example_sentence_english": "I have a history oral exam tomorrow.", + "pos": "noun", + "word_frequency": 8322 + }, + { + "word": "intolleranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerance", + "romanization": "intolleranza", + "example_sentence_native": "Molte persone soffrono di intolleranza al lattosio.", + "example_sentence_english": "Many people suffer from lactose intolerance.", + "pos": "noun", + "word_frequency": 8323 + }, + { + "word": "intuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuition;insight", + "romanization": "intuito", + "example_sentence_native": "Ha un ottimo intuito per gli affari.", + "example_sentence_english": "He has great intuition for business.", + "pos": "noun", + "word_frequency": 8324 + }, + { + "word": "laggiù", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "down there;over there", + "romanization": "laggiù", + "example_sentence_native": "Guarda, la nostra casa è laggiù.", + "example_sentence_english": "Look, our house is down there.", + "pos": "adverb", + "word_frequency": 8330 + }, + { + "word": "mancato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failed;missed", + "romanization": "mancato", + "example_sentence_native": "È stata un'occasione mancata.", + "example_sentence_english": "It was a missed opportunity.", + "pos": "adjective", + "word_frequency": 8335 + }, + { + "word": "mania", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mania;craze", + "romanization": "mania", + "example_sentence_native": "Ha una mania per la pulizia.", + "example_sentence_english": "She has a cleaning mania.", + "pos": "noun", + "word_frequency": 8336 + }, + { + "word": "manipolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manipulate", + "romanization": "manipolare", + "example_sentence_native": "Non cercare di manipolare la situazione.", + "example_sentence_english": "Don't try to manipulate the situation.", + "pos": "verb", + "word_frequency": 8337 + }, + { + "word": "marocchino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Moroccan", + "romanization": "marocchino", + "example_sentence_native": "Ha comprato un tappeto marocchino.", + "example_sentence_english": "He bought a Moroccan rug.", + "pos": "adjective", + "word_frequency": 8339 + }, + { + "word": "nascente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nascent;emerging", + "romanization": "nascente", + "example_sentence_native": "L'azienda è in una fase nascente.", + "example_sentence_english": "The company is in a nascent phase.", + "pos": "adjective", + "word_frequency": 8342 + }, + { + "word": "nutrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nutrition", + "romanization": "nutrizione", + "example_sentence_native": "Una buona nutrizione è essenziale per la salute.", + "example_sentence_english": "Good nutrition is essential for health.", + "pos": "noun", + "word_frequency": 8345 + }, + { + "word": "ortodosso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orthodox", + "romanization": "ortodosso", + "example_sentence_native": "Segue un approccio molto ortodosso.", + "example_sentence_english": "He follows a very orthodox approach.", + "pos": "adjective", + "word_frequency": 8346 + }, + { + "word": "pallido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pale", + "romanization": "pallido", + "example_sentence_native": "Era pallido in viso per la paura.", + "example_sentence_english": "He was pale in the face from fear.", + "pos": "adjective", + "word_frequency": 8347 + }, + { + "word": "paragonabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparable", + "romanization": "paragonabile", + "example_sentence_native": "Il suo lavoro non è paragonabile al mio.", + "example_sentence_english": "His work is not comparable to mine.", + "pos": "adjective", + "word_frequency": 8348 + }, + { + "word": "pescare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fish", + "romanization": "pescare", + "example_sentence_native": "Andiamo a pescare al lago.", + "example_sentence_english": "Let's go fishing at the lake.", + "pos": "verb", + "word_frequency": 8349 + }, + { + "word": "postazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workstation;station", + "romanization": "postazione", + "example_sentence_native": "Ogni impiegato ha la sua postazione.", + "example_sentence_english": "Every employee has their own workstation.", + "pos": "noun", + "word_frequency": 8352 + }, + { + "word": "praticato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practiced;common", + "romanization": "praticato", + "example_sentence_native": "È uno sport molto praticato qui.", + "example_sentence_english": "It's a very commonly practiced sport here.", + "pos": "adjective", + "word_frequency": 8353 + }, + { + "word": "precauzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "precaution", + "romanization": "precauzione", + "example_sentence_native": "Prendi tutte le precauzioni necessarie.", + "example_sentence_english": "Take all necessary precautions.", + "pos": "noun", + "word_frequency": 8354 + }, + { + "word": "prolungato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prolonged;extended", + "romanization": "prolungato", + "example_sentence_native": "Ha avuto un periodo di riposo prolungato.", + "example_sentence_english": "He had a prolonged period of rest.", + "pos": "adjective", + "word_frequency": 8355 + }, + { + "word": "prospetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prospectus;outlook", + "romanization": "prospetto", + "example_sentence_native": "Ho ricevuto il prospetto informativo.", + "example_sentence_english": "I received the information prospectus.", + "pos": "noun", + "word_frequency": 8356 + }, + { + "word": "protesi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosthesis", + "romanization": "protesi", + "example_sentence_native": "Ha bisogno di una protesi all'anca.", + "example_sentence_english": "He needs a hip prosthesis.", + "pos": "noun", + "word_frequency": 8357 + }, + { + "word": "protettore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protector;guardian", + "romanization": "protettore", + "example_sentence_native": "È il protettore degli animali.", + "example_sentence_english": "He is the protector of animals.", + "pos": "noun", + "word_frequency": 8358 + }, + { + "word": "prudenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prudence;caution", + "romanization": "prudenza", + "example_sentence_native": "Agisci con prudenza.", + "example_sentence_english": "Act with caution.", + "pos": "noun", + "word_frequency": 8359 + }, + { + "word": "quiete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quietness", + "romanization": "quiete", + "example_sentence_native": "Cerco un po' di quiete dopo una lunga giornata.", + "example_sentence_english": "I'm looking for some quietness after a long day.", + "pos": "noun", + "word_frequency": 8361 + }, + { + "word": "raccordo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junction", + "romanization": "raccordo", + "example_sentence_native": "Il raccordo anulare di Roma è molto trafficato.", + "example_sentence_english": "Rome's ring road junction is very busy.", + "pos": "noun", + "word_frequency": 8362 + }, + { + "word": "riflettore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spotlight", + "romanization": "riflettore", + "example_sentence_native": "Tutti i riflettori erano puntati sull'attore principale.", + "example_sentence_english": "All the spotlights were on the main actor.", + "pos": "noun", + "word_frequency": 8364 + }, + { + "word": "rogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pyre", + "romanization": "rogo", + "example_sentence_native": "Hanno acceso un grande rogo per la festa.", + "example_sentence_english": "They lit a large pyre for the celebration.", + "pos": "noun", + "word_frequency": 8365 + }, + { + "word": "scrupolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scruple", + "romanization": "scrupolo", + "example_sentence_native": "Non ha avuto alcuno scrupolo a mentire.", + "example_sentence_english": "He had no scruple about lying.", + "pos": "noun", + "word_frequency": 8367 + }, + { + "word": "sfuggito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escaped", + "romanization": "sfuggito", + "example_sentence_native": "Il dettaglio mi è sfuggito.", + "example_sentence_english": "The detail escaped me.", + "pos": "adjective", + "word_frequency": 8368 + }, + { + "word": "siero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "serum", + "romanization": "siero", + "example_sentence_native": "Ha applicato un siero idratante sulla pelle.", + "example_sentence_english": "She applied a moisturizing serum to her skin.", + "pos": "noun", + "word_frequency": 8370 + }, + { + "word": "smentito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denied", + "romanization": "smentito", + "example_sentence_native": "La notizia è stata smentita dal portavoce.", + "example_sentence_english": "The news was denied by the spokesperson.", + "pos": "adjective", + "word_frequency": 8371 + }, + { + "word": "spiegato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explained", + "romanization": "spiegato", + "example_sentence_native": "Il concetto è stato spiegato chiaramente.", + "example_sentence_english": "The concept was clearly explained.", + "pos": "adjective", + "word_frequency": 8373 + }, + { + "word": "spiritualità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spirituality", + "romanization": "spiritualità", + "example_sentence_native": "Molte persone cercano la spiritualità nella natura.", + "example_sentence_english": "Many people seek spirituality in nature.", + "pos": "noun", + "word_frequency": 8374 + }, + { + "word": "stoffa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabric", + "romanization": "stoffa", + "example_sentence_native": "Ho comprato della stoffa per fare un vestito.", + "example_sentence_english": "I bought some fabric to make a dress.", + "pos": "noun", + "word_frequency": 8375 + }, + { + "word": "strappare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tear", + "romanization": "strappare", + "example_sentence_native": "Ha strappato la lettera in mille pezzi.", + "example_sentence_english": "He tore the letter into a thousand pieces.", + "pos": "verb", + "word_frequency": 8377 + }, + { + "word": "studiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studied", + "romanization": "studiato", + "example_sentence_native": "Il suo piano era ben studiato.", + "example_sentence_english": "His plan was well studied.", + "pos": "adjective", + "word_frequency": 8378 + }, + { + "word": "surreale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surreal", + "romanization": "surreale", + "example_sentence_native": "L'atmosfera del sogno era surreale.", + "example_sentence_english": "The atmosphere of the dream was surreal.", + "pos": "adjective", + "word_frequency": 8379 + }, + { + "word": "tango", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tango", + "romanization": "tango", + "example_sentence_native": "Hanno ballato un tango appassionato.", + "example_sentence_english": "They danced a passionate tango.", + "pos": "noun", + "word_frequency": 8380 + }, + { + "word": "telegiornale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "TV news", + "romanization": "telegiornale", + "example_sentence_native": "Guardo il telegiornale ogni sera.", + "example_sentence_english": "I watch the TV news every evening.", + "pos": "noun", + "word_frequency": 8383 + }, + { + "word": "termico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thermal", + "romanization": "termico", + "example_sentence_native": "Abbiamo installato un isolamento termico nella casa.", + "example_sentence_english": "We installed thermal insulation in the house.", + "pos": "adjective", + "word_frequency": 8384 + }, + { + "word": "tradire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to betray", + "romanization": "tradire", + "example_sentence_native": "Non vorrei mai tradire la sua fiducia.", + "example_sentence_english": "I would never want to betray his trust.", + "pos": "verb", + "word_frequency": 8388 + }, + { + "word": "trinità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trinity", + "romanization": "trinità", + "example_sentence_native": "Il concetto di Trinità è centrale nel Cristianesimo.", + "example_sentence_english": "The concept of Trinity is central to Christianity.", + "pos": "noun", + "word_frequency": 8389 + }, + { + "word": "unanime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unanimous", + "romanization": "unanime", + "example_sentence_native": "La decisione è stata unanime.", + "example_sentence_english": "The decision was unanimous.", + "pos": "adjective", + "word_frequency": 8393 + }, + { + "word": "usanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custom", + "romanization": "usanza", + "example_sentence_native": "È un'antica usanza del villaggio.", + "example_sentence_english": "It's an ancient custom of the village.", + "pos": "noun", + "word_frequency": 8394 + }, + { + "word": "viabilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "road network", + "romanization": "viabilità", + "example_sentence_native": "La viabilità è migliorata dopo la costruzione della nuova strada.", + "example_sentence_english": "The road network improved after the construction of the new road.", + "pos": "noun", + "word_frequency": 8396 + }, + { + "word": "vite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "screw", + "romanization": "vite", + "example_sentence_native": "Ho bisogno di una vite più lunga.", + "example_sentence_english": "I need a longer screw.", + "pos": "noun", + "word_frequency": 8398 + }, + { + "word": "volutamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberately", + "romanization": "volutamente", + "example_sentence_native": "Ha agito volutamente per causare problemi.", + "example_sentence_english": "He acted deliberately to cause problems.", + "pos": "adverb", + "word_frequency": 8399 + }, + { + "word": "wireless", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wireless", + "romanization": "wireless", + "example_sentence_native": "Ho bisogno di una connessione wireless per il mio laptop.", + "example_sentence_english": "I need a wireless connection for my laptop.", + "pos": "noun", + "word_frequency": 8401 + }, + { + "word": "accelerazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acceleration", + "romanization": "accelerazione", + "example_sentence_native": "L'accelerazione dell'auto è impressionante.", + "example_sentence_english": "The car's acceleration is impressive.", + "pos": "noun", + "word_frequency": 8403 + }, + { + "word": "aceto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vinegar", + "romanization": "aceto", + "example_sentence_native": "Aggiungi un po' di aceto all'insalata.", + "example_sentence_english": "Add some vinegar to the salad.", + "pos": "noun", + "word_frequency": 8404 + }, + { + "word": "affascinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fascinated", + "romanization": "affascinato", + "example_sentence_native": "Sono rimasto affascinato dalla sua storia.", + "example_sentence_english": "I was fascinated by his story.", + "pos": "adjective", + "word_frequency": 8405 + }, + { + "word": "aggredito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assaulted", + "romanization": "aggredito", + "example_sentence_native": "La vittima è stata aggredita in strada.", + "example_sentence_english": "The victim was assaulted in the street.", + "pos": "adjective", + "word_frequency": 8406 + }, + { + "word": "alibi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alibi", + "romanization": "alibi", + "example_sentence_native": "L'imputato ha fornito un alibi solido.", + "example_sentence_english": "The defendant provided a solid alibi.", + "pos": "noun", + "word_frequency": 8407 + }, + { + "word": "allargare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to widen", + "romanization": "allargare", + "example_sentence_native": "Dobbiamo allargare la strada per migliorare il traffico.", + "example_sentence_english": "We need to widen the road to improve traffic.", + "pos": "verb", + "word_frequency": 8408 + }, + { + "word": "amoroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loving", + "romanization": "amoroso", + "example_sentence_native": "Ha uno sguardo molto amoroso.", + "example_sentence_english": "He has a very loving gaze.", + "pos": "adjective", + "word_frequency": 8409 + }, + { + "word": "aneddoto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anecdote", + "romanization": "aneddoto", + "example_sentence_native": "Ci ha raccontato un aneddoto divertente sulla sua infanzia.", + "example_sentence_english": "He told us a funny anecdote about his childhood.", + "pos": "noun", + "word_frequency": 8410 + }, + { + "word": "anomalia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anomaly", + "romanization": "anomalia", + "example_sentence_native": "C'è stata un'anomalia nel sistema informatico.", + "example_sentence_english": "There was an anomaly in the computer system.", + "pos": "noun", + "word_frequency": 8411 + }, + { + "word": "antibiotico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antibiotic", + "romanization": "antibiotico", + "example_sentence_native": "Il medico mi ha prescritto un antibiotico.", + "example_sentence_english": "The doctor prescribed me an antibiotic.", + "pos": "noun", + "word_frequency": 8412 + }, + { + "word": "approfittare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take advantage of", + "romanization": "approfittare", + "example_sentence_native": "Dovresti approfittare di questa opportunità.", + "example_sentence_english": "You should take advantage of this opportunity.", + "pos": "verb", + "word_frequency": 8414 + }, + { + "word": "arancia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "orange", + "romanization": "arancia", + "example_sentence_native": "Mi piace spremere un'arancia fresca al mattino.", + "example_sentence_english": "I like to squeeze a fresh orange in the morning.", + "pos": "noun", + "word_frequency": 8416 + }, + { + "word": "augusta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "august", + "romanization": "augusta", + "example_sentence_native": "La sua presenza era augusta e imponente.", + "example_sentence_english": "Her presence was august and imposing.", + "pos": "adjective", + "word_frequency": 8418 + }, + { + "word": "autorevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authoritative", + "romanization": "autorevole", + "example_sentence_native": "È una fonte autorevole di informazioni.", + "example_sentence_english": "It is an authoritative source of information.", + "pos": "adjective", + "word_frequency": 8419 + }, + { + "word": "avvicinamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approach", + "romanization": "avvicinamento", + "example_sentence_native": "C'è stato un avvicinamento tra le due parti.", + "example_sentence_english": "There was an approach between the two parties.", + "pos": "noun", + "word_frequency": 8420 + }, + { + "word": "balena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whale", + "romanization": "balena", + "example_sentence_native": "La balena è il più grande mammifero marino.", + "example_sentence_english": "The whale is the largest marine mammal.", + "pos": "noun", + "word_frequency": 8421 + }, + { + "word": "ballerino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dancer", + "romanization": "ballerino", + "example_sentence_native": "Il ballerino ha eseguito una performance eccezionale.", + "example_sentence_english": "The dancer gave an exceptional performance.", + "pos": "noun", + "word_frequency": 8422 + }, + { + "word": "bravura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skill", + "romanization": "bravura", + "example_sentence_native": "Ha dimostrato grande bravura nel suo lavoro.", + "example_sentence_english": "He showed great skill in his work.", + "pos": "noun", + "word_frequency": 8425 + }, + { + "word": "cartellone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billboard", + "romanization": "cartellone", + "example_sentence_native": "C'è un nuovo cartellone pubblicitario in piazza.", + "example_sentence_english": "There's a new billboard in the square.", + "pos": "noun", + "word_frequency": 8428 + }, + { + "word": "clown", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clown", + "romanization": "clown", + "example_sentence_native": "Il clown ha fatto ridere tutti i bambini.", + "example_sentence_english": "The clown made all the children laugh.", + "pos": "noun", + "word_frequency": 8434 + }, + { + "word": "coltura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cultivation", + "romanization": "coltura", + "example_sentence_native": "La coltura del riso è molto diffusa in questa regione.", + "example_sentence_english": "Rice cultivation is very widespread in this region.", + "pos": "noun", + "word_frequency": 8435 + }, + { + "word": "competitivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "competitive", + "romanization": "competitivo", + "example_sentence_native": "Il mercato è diventato molto competitivo.", + "example_sentence_english": "The market has become very competitive.", + "pos": "adjective", + "word_frequency": 8436 + }, + { + "word": "completato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "completed", + "romanization": "completato", + "example_sentence_native": "Il progetto è stato completato in tempo.", + "example_sentence_english": "The project was completed on time.", + "pos": "adjective", + "word_frequency": 8437 + }, + { + "word": "condoglianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condolence", + "romanization": "condoglianza", + "example_sentence_native": "Ho espresso le mie più sentite condoglianze alla famiglia.", + "example_sentence_english": "I expressed my deepest condolences to the family.", + "pos": "noun", + "word_frequency": 8438 + }, + { + "word": "confraternita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confraternity", + "romanization": "confraternita", + "example_sentence_native": "La confraternita organizza eventi di beneficenza.", + "example_sentence_english": "The confraternity organizes charity events.", + "pos": "noun", + "word_frequency": 8439 + }, + { + "word": "consolazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "consolation", + "romanization": "consolazione", + "example_sentence_native": "La sua presenza è stata una grande consolazione per me.", + "example_sentence_english": "His presence was a great consolation for me.", + "pos": "noun", + "word_frequency": 8440 + }, + { + "word": "container", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "container", + "romanization": "container", + "example_sentence_native": "Le merci sono state spedite in un grande container.", + "example_sentence_english": "The goods were shipped in a large container.", + "pos": "noun", + "word_frequency": 8441 + }, + { + "word": "contesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dispute;contention", + "romanization": "contesa", + "example_sentence_native": "La contesa tra le due famiglie durava da anni.", + "example_sentence_english": "The dispute between the two families had lasted for years.", + "pos": "noun", + "word_frequency": 8442 + }, + { + "word": "contingente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contingent;provisional", + "romanization": "contingente", + "example_sentence_native": "La decisione è contingente alla situazione economica attuale.", + "example_sentence_english": "The decision is contingent on the current economic situation.", + "pos": "adjective", + "word_frequency": 8443 + }, + { + "word": "correlato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correlated;related", + "romanization": "correlato", + "example_sentence_native": "I due fenomeni sono strettamente correlati.", + "example_sentence_english": "The two phenomena are closely correlated.", + "pos": "adjective", + "word_frequency": 8444 + }, + { + "word": "costituito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constituted;formed", + "romanization": "costituito", + "example_sentence_native": "Il gruppo è costituito da membri di diverse nazionalità.", + "example_sentence_english": "The group is constituted by members of different nationalities.", + "pos": "adjective", + "word_frequency": 8445 + }, + { + "word": "danneggiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "damaged", + "romanization": "danneggiato", + "example_sentence_native": "Il pacco è arrivato danneggiato.", + "example_sentence_english": "The package arrived damaged.", + "pos": "adjective", + "word_frequency": 8446 + }, + { + "word": "deposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposed;laid down", + "romanization": "deposto", + "example_sentence_native": "Il re deposto visse in esilio.", + "example_sentence_english": "The deposed king lived in exile.", + "pos": "adjective", + "word_frequency": 8447 + }, + { + "word": "diecimila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ten thousand", + "romanization": "diecimila", + "example_sentence_native": "Ho diecimila euro in banca.", + "example_sentence_english": "I have ten thousand euros in the bank.", + "pos": "noun", + "word_frequency": 8448 + }, + { + "word": "discendenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descent;lineage;offspring", + "romanization": "discendenza", + "example_sentence_native": "La sua discendenza risale a una nobile famiglia.", + "example_sentence_english": "His descent dates back to a noble family.", + "pos": "noun", + "word_frequency": 8449 + }, + { + "word": "doppietta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "double-barreled shotgun;brace (of goals;kills)", + "romanization": "doppietta", + "example_sentence_native": "L'attaccante ha segnato una doppietta nella partita.", + "example_sentence_english": "The striker scored a brace in the match.", + "pos": "noun", + "word_frequency": 8450 + }, + { + "word": "eliminato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eliminated", + "romanization": "eliminato", + "example_sentence_native": "La squadra è stata eliminata dal torneo.", + "example_sentence_english": "The team was eliminated from the tournament.", + "pos": "adjective", + "word_frequency": 8452 + }, + { + "word": "enfasi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emphasis", + "romanization": "enfasi", + "example_sentence_native": "Ha posto molta enfasi sull'importanza della sicurezza.", + "example_sentence_english": "He placed a lot of emphasis on the importance of safety.", + "pos": "noun", + "word_frequency": 8454 + }, + { + "word": "epico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epic", + "romanization": "epico", + "example_sentence_native": "Il film racconta una storia epica.", + "example_sentence_english": "The film tells an epic story.", + "pos": "adjective", + "word_frequency": 8455 + }, + { + "word": "eutanasia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "euthanasia", + "romanization": "eutanasia", + "example_sentence_native": "Il dibattito sull'eutanasia è molto acceso.", + "example_sentence_english": "The debate on euthanasia is very heated.", + "pos": "noun", + "word_frequency": 8456 + }, + { + "word": "falcone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "falcon", + "romanization": "falcone", + "example_sentence_native": "Il falcone volava alto nel cielo.", + "example_sentence_english": "The falcon flew high in the sky.", + "pos": "noun", + "word_frequency": 8458 + }, + { + "word": "faticoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiring;laborious", + "romanization": "faticoso", + "example_sentence_native": "Il lavoro è stato molto faticoso.", + "example_sentence_english": "The work was very tiring.", + "pos": "adjective", + "word_frequency": 8459 + }, + { + "word": "ghetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ghetto", + "romanization": "ghetto", + "example_sentence_native": "Il ghetto di Venezia è un luogo storico.", + "example_sentence_english": "The Venice ghetto is a historical place.", + "pos": "noun", + "word_frequency": 8462 + }, + { + "word": "guardiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guardian;guard;keeper", + "romanization": "guardiano", + "example_sentence_native": "Il guardiano del museo chiude le porte alle sei.", + "example_sentence_english": "The museum guard closes the doors at six.", + "pos": "noun", + "word_frequency": 8464 + }, + { + "word": "idolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idol", + "romanization": "idolo", + "example_sentence_native": "È il mio idolo fin da quando ero bambino.", + "example_sentence_english": "He has been my idol since I was a child.", + "pos": "noun", + "word_frequency": 8466 + }, + { + "word": "incentrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centered;focused", + "romanization": "incentrato", + "example_sentence_native": "Il dibattito era incentrato sulla questione economica.", + "example_sentence_english": "The debate was centered on the economic issue.", + "pos": "adjective", + "word_frequency": 8467 + }, + { + "word": "insignificante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insignificant", + "romanization": "insignificante", + "example_sentence_native": "La differenza era insignificante.", + "example_sentence_english": "The difference was insignificant.", + "pos": "adjective", + "word_frequency": 8468 + }, + { + "word": "invitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "invited (as in;a guest)", + "romanization": "invitato", + "example_sentence_native": "Tutti gli invitati sono arrivati.", + "example_sentence_english": "All the invited guests have arrived.", + "pos": "adjective", + "word_frequency": 8469 + }, + { + "word": "lavorato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worked;processed;crafted", + "romanization": "lavorato", + "example_sentence_native": "Questo legno è stato ben lavorato.", + "example_sentence_english": "This wood has been well worked.", + "pos": "adjective", + "word_frequency": 8473 + }, + { + "word": "liberty", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Art Nouveau (style)", + "romanization": "liberty", + "example_sentence_native": "L'architettura liberty è molto diffusa a Torino.", + "example_sentence_english": "Art Nouveau architecture is very common in Turin.", + "pos": "noun", + "word_frequency": 8476 + }, + { + "word": "macello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slaughterhouse;mess", + "romanization": "macello", + "example_sentence_native": "Il macello era pieno di animali.", + "example_sentence_english": "The slaughterhouse was full of animals.", + "pos": "noun", + "word_frequency": 8480 + }, + { + "word": "mantenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maintained;kept", + "romanization": "mantenuto", + "example_sentence_native": "Il giardino è ben mantenuto.", + "example_sentence_english": "The garden is well maintained.", + "pos": "adjective", + "word_frequency": 8482 + }, + { + "word": "manufatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "artifact;handmade item", + "romanization": "manufatto", + "example_sentence_native": "Hanno trovato un antico manufatto.", + "example_sentence_english": "They found an ancient artifact.", + "pos": "noun", + "word_frequency": 8483 + }, + { + "word": "marmellata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jam;marmalade", + "romanization": "marmellata", + "example_sentence_native": "Mi piace la marmellata di fragole.", + "example_sentence_english": "I like strawberry jam.", + "pos": "noun", + "word_frequency": 8484 + }, + { + "word": "metano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "methane", + "romanization": "metano", + "example_sentence_native": "Il metano è un gas naturale.", + "example_sentence_english": "Methane is a natural gas.", + "pos": "noun", + "word_frequency": 8486 + }, + { + "word": "morbido", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soft", + "romanization": "morbido", + "example_sentence_native": "Il cuscino è molto morbido.", + "example_sentence_english": "The pillow is very soft.", + "pos": "adjective", + "word_frequency": 8489 + }, + { + "word": "mozzarella", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mozzarella", + "romanization": "mozzarella", + "example_sentence_native": "Vorrei una pizza con la mozzarella.", + "example_sentence_english": "I would like a pizza with mozzarella.", + "pos": "noun", + "word_frequency": 8490 + }, + { + "word": "municipalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "municipality", + "romanization": "municipalità", + "example_sentence_native": "La municipalità ha approvato il progetto.", + "example_sentence_english": "The municipality approved the project.", + "pos": "noun", + "word_frequency": 8491 + }, + { + "word": "negato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "denied;inept", + "romanization": "negato", + "example_sentence_native": "È negato per la matematica.", + "example_sentence_english": "He is inept at math.", + "pos": "adjective", + "word_frequency": 8493 + }, + { + "word": "negativamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "negatively", + "romanization": "negativamente", + "example_sentence_native": "La notizia ha influito negativamente sul mercato.", + "example_sentence_english": "The news negatively affected the market.", + "pos": "adverb", + "word_frequency": 8494 + }, + { + "word": "negligenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligence", + "romanization": "negligenza", + "example_sentence_native": "È stato accusato di negligenza.", + "example_sentence_english": "He was accused of negligence.", + "pos": "noun", + "word_frequency": 8495 + }, + { + "word": "nube", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloud (often poetic;literary)", + "romanization": "nube", + "example_sentence_native": "Una nube scura copriva il cielo.", + "example_sentence_english": "A dark cloud covered the sky.", + "pos": "noun", + "word_frequency": 8498 + }, + { + "word": "ombrello", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "umbrella", + "romanization": "ombrello", + "example_sentence_native": "Ho dimenticato l'ombrello a casa.", + "example_sentence_english": "I forgot my umbrella at home.", + "pos": "noun", + "word_frequency": 8499 + }, + { + "word": "operante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operating;working", + "romanization": "operante", + "example_sentence_native": "Il sistema è pienamente operante.", + "example_sentence_english": "The system is fully operating.", + "pos": "adjective", + "word_frequency": 8501 + }, + { + "word": "orientato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oriented;directed", + "romanization": "orientato", + "example_sentence_native": "È molto orientato al risultato.", + "example_sentence_english": "He is very results-oriented.", + "pos": "adjective", + "word_frequency": 8502 + }, + { + "word": "ottocento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nineteenth century;eight hundred", + "romanization": "ottocento", + "example_sentence_native": "L'Ottocento fu un secolo di grandi cambiamenti.", + "example_sentence_english": "The nineteenth century was a century of great changes.", + "pos": "noun", + "word_frequency": 8503 + }, + { + "word": "parmigiano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Parmesan cheese", + "romanization": "parmigiano", + "example_sentence_native": "Vorrei un po' di parmigiano sulla pasta.", + "example_sentence_english": "I would like some Parmesan cheese on my pasta.", + "pos": "noun", + "word_frequency": 8504 + }, + { + "word": "pompiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "firefighter", + "romanization": "pompiere", + "example_sentence_native": "Il pompiere ha spento l'incendio.", + "example_sentence_english": "The firefighter put out the fire.", + "pos": "noun", + "word_frequency": 8507 + }, + { + "word": "preservativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condom;preservative (food)", + "romanization": "preservativo", + "example_sentence_native": "È importante usare il preservativo per la sicurezza.", + "example_sentence_english": "It's important to use a condom for safety.", + "pos": "noun", + "word_frequency": 8509 + }, + { + "word": "quantitativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quantitative", + "romanization": "quantitativo", + "example_sentence_native": "Abbiamo bisogno di un'analisi quantitativa.", + "example_sentence_english": "We need a quantitative analysis.", + "pos": "adjective", + "word_frequency": 8510 + }, + { + "word": "rallentare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to slow down", + "romanization": "rallentare", + "example_sentence_native": "Devi rallentare in questa curva.", + "example_sentence_english": "You must slow down on this curve.", + "pos": "verb", + "word_frequency": 8513 + }, + { + "word": "renale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "renal;kidney-related", + "romanization": "renale", + "example_sentence_native": "Ha un problema renale.", + "example_sentence_english": "He has a renal problem.", + "pos": "adjective", + "word_frequency": 8514 + }, + { + "word": "ridosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shelter;close to", + "romanization": "ridosso", + "example_sentence_native": "Ci siamo messi a ridosso della montagna.", + "example_sentence_english": "We took shelter close to the mountain.", + "pos": "noun", + "word_frequency": 8516 + }, + { + "word": "riformare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reform", + "romanization": "riformare", + "example_sentence_native": "Il governo intende riformare il sistema.", + "example_sentence_english": "The government intends to reform the system.", + "pos": "verb", + "word_frequency": 8517 + }, + { + "word": "rimpianto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regret", + "romanization": "rimpianto", + "example_sentence_native": "Non ho alcun rimpianto per le mie scelte.", + "example_sentence_english": "I have no regret for my choices.", + "pos": "noun", + "word_frequency": 8518 + }, + { + "word": "riprova", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proof;re-test", + "romanization": "riprova", + "example_sentence_native": "Questa è la riprova della sua innocenza.", + "example_sentence_english": "This is the proof of his innocence.", + "pos": "noun", + "word_frequency": 8519 + }, + { + "word": "risotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "risotto", + "romanization": "risotto", + "example_sentence_native": "Il risotto ai funghi è il mio piatto preferito.", + "example_sentence_english": "Mushroom risotto is my favorite dish.", + "pos": "noun", + "word_frequency": 8520 + }, + { + "word": "rivalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rivalry", + "romanization": "rivalità", + "example_sentence_native": "C'è una forte rivalità tra le due squadre.", + "example_sentence_english": "There is a strong rivalry between the two teams.", + "pos": "noun", + "word_frequency": 8521 + }, + { + "word": "schiuma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foam;froth", + "romanization": "schiuma", + "example_sentence_native": "La birra aveva molta schiuma.", + "example_sentence_english": "The beer had a lot of foam.", + "pos": "noun", + "word_frequency": 8522 + }, + { + "word": "sirena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mermaid;siren", + "romanization": "sirena", + "example_sentence_native": "Ho sentito la sirena dell'ambulanza.", + "example_sentence_english": "I heard the ambulance siren.", + "pos": "noun", + "word_frequency": 8524 + }, + { + "word": "soap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soap opera", + "romanization": "soap", + "example_sentence_native": "Mia nonna guarda sempre la soap opera del pomeriggio.", + "example_sentence_english": "My grandmother always watches the afternoon soap opera.", + "pos": "noun", + "word_frequency": 8525 + }, + { + "word": "soda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soda (water);baking soda", + "romanization": "soda", + "example_sentence_native": "Vorrei un bicchiere di acqua e soda.", + "example_sentence_english": "I would like a glass of water and soda.", + "pos": "noun", + "word_frequency": 8526 + }, + { + "word": "spinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pushed;extreme;provocative", + "romanization": "spinto", + "example_sentence_native": "Il film conteneva scene un po' spinte.", + "example_sentence_english": "The film contained somewhat provocative scenes.", + "pos": "adjective", + "word_frequency": 8527 + }, + { + "word": "spugna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sponge", + "romanization": "spugna", + "example_sentence_native": "Usa la spugna per pulire il tavolo.", + "example_sentence_english": "Use the sponge to clean the table.", + "pos": "noun", + "word_frequency": 8528 + }, + { + "word": "sterile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sterile;barren", + "romanization": "sterile", + "example_sentence_native": "L'ambiente deve essere completamente sterile per l'operazione.", + "example_sentence_english": "The environment must be completely sterile for the operation.", + "pos": "adjective", + "word_frequency": 8529 + }, + { + "word": "stirpe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lineage;stock;race", + "romanization": "stirpe", + "example_sentence_native": "Apparteneva a una stirpe nobile.", + "example_sentence_english": "He belonged to a noble lineage.", + "pos": "noun", + "word_frequency": 8530 + }, + { + "word": "sublime", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sublime;superb", + "romanization": "sublime", + "example_sentence_native": "La vista dal monte era sublime.", + "example_sentence_english": "The view from the mountain was sublime.", + "pos": "adjective", + "word_frequency": 8531 + }, + { + "word": "suocera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mother-in-law", + "romanization": "suocera", + "example_sentence_native": "Mia suocera è venuta a trovarci.", + "example_sentence_english": "My mother-in-law came to visit us.", + "pos": "noun", + "word_frequency": 8532 + }, + { + "word": "tagliando", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coupon;voucher;car service;check-up", + "romanization": "tagliando", + "example_sentence_native": "Devo portare la macchina a fare il tagliando.", + "example_sentence_english": "I need to take the car for its service.", + "pos": "noun", + "word_frequency": 8533 + }, + { + "word": "tana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "den;lair;burrow", + "romanization": "tana", + "example_sentence_native": "La volpe è tornata nella sua tana.", + "example_sentence_english": "The fox returned to its den.", + "pos": "noun", + "word_frequency": 8534 + }, + { + "word": "telecomando", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "remote control", + "romanization": "telecomando", + "example_sentence_native": "Non trovo il telecomando della TV.", + "example_sentence_english": "I can't find the TV remote control.", + "pos": "noun", + "word_frequency": 8535 + }, + { + "word": "telegram", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Telegram (app);telegram (message)", + "romanization": "telegram", + "example_sentence_native": "Ti ho inviato un messaggio su Telegram.", + "example_sentence_english": "I sent you a message on Telegram.", + "pos": "noun", + "word_frequency": 8536 + }, + { + "word": "thriller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thriller", + "romanization": "thriller", + "example_sentence_native": "Ho letto un thriller avvincente.", + "example_sentence_english": "I read a gripping thriller.", + "pos": "noun", + "word_frequency": 8538 + }, + { + "word": "tirato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulled;tense;forced", + "romanization": "tirato", + "example_sentence_native": "Aveva un'espressione tirata.", + "example_sentence_english": "He had a tense expression.", + "pos": "adjective", + "word_frequency": 8539 + }, + { + "word": "trattenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "held back;restrained;withheld", + "romanization": "trattenuto", + "example_sentence_native": "Si è trattenuto dal ridere.", + "example_sentence_english": "He held back from laughing.", + "pos": "adjective", + "word_frequency": 8541 + }, + { + "word": "triennio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "three-year period;triennium", + "romanization": "triennio", + "example_sentence_native": "Il corso di laurea dura un triennio.", + "example_sentence_english": "The degree course lasts three years.", + "pos": "noun", + "word_frequency": 8542 + }, + { + "word": "turbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turbo;turbocharger", + "romanization": "turbo", + "example_sentence_native": "La macchina ha un motore turbo.", + "example_sentence_english": "The car has a turbo engine.", + "pos": "noun", + "word_frequency": 8543 + }, + { + "word": "tutt'ora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "still;even now", + "romanization": "tutt'ora", + "example_sentence_native": "Tutt'ora non capisco cosa sia successo.", + "example_sentence_english": "Even now, I don't understand what happened.", + "pos": "adverb", + "word_frequency": 8544 + }, + { + "word": "vallo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rampart;ditch;wall", + "romanization": "vallo", + "example_sentence_native": "Le antiche città erano protette da un vallo.", + "example_sentence_english": "Ancient cities were protected by a rampart.", + "pos": "noun", + "word_frequency": 8545 + }, + { + "word": "verosimilmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "probably;likely;plausibly", + "romanization": "verosimilmente", + "example_sentence_native": "Verosimilmente, arriverà in ritardo.", + "example_sentence_english": "He will probably arrive late.", + "pos": "adverb", + "word_frequency": 8546 + }, + { + "word": "virgola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comma", + "romanization": "virgola", + "example_sentence_native": "Non dimenticare la virgola prima della congiunzione.", + "example_sentence_english": "Don't forget the comma before the conjunction.", + "pos": "noun", + "word_frequency": 8547 + }, + { + "word": "abusivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abusive;illegal;unauthorized", + "romanization": "abusivo", + "example_sentence_native": "Hanno costruito un edificio abusivo.", + "example_sentence_english": "They built an unauthorized building.", + "pos": "adjective", + "word_frequency": 8548 + }, + { + "word": "adottato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adopted", + "romanization": "adottato", + "example_sentence_native": "Il bambino è stato adottato da una famiglia amorevole.", + "example_sentence_english": "The child was adopted by a loving family.", + "pos": "adjective", + "word_frequency": 8549 + }, + { + "word": "agitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agitation;unrest;excitement", + "romanization": "agitazione", + "example_sentence_native": "C'era molta agitazione tra i manifestanti.", + "example_sentence_english": "There was a lot of unrest among the protesters.", + "pos": "noun", + "word_frequency": 8550 + }, + { + "word": "angelica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angelic", + "romanization": "angelica", + "example_sentence_native": "Aveva un viso angelico.", + "example_sentence_english": "She had an angelic face.", + "pos": "adjective", + "word_frequency": 8551 + }, + { + "word": "appendice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appendix", + "romanization": "appendice", + "example_sentence_native": "L'appendice del libro contiene dati aggiuntivi.", + "example_sentence_english": "The appendix of the book contains additional data.", + "pos": "noun", + "word_frequency": 8552 + }, + { + "word": "apposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affixed;placed", + "romanization": "apposto", + "example_sentence_native": "La data è stata apposta sul documento.", + "example_sentence_english": "The date was affixed to the document.", + "pos": "adjective", + "word_frequency": 8553 + }, + { + "word": "armeno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Armenian", + "romanization": "armeno", + "example_sentence_native": "Ha origini armene.", + "example_sentence_english": "He has Armenian origins.", + "pos": "adjective", + "word_frequency": 8555 + }, + { + "word": "articolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "articulated;complex;well-structured", + "romanization": "articolato", + "example_sentence_native": "Ha presentato un discorso molto articolato.", + "example_sentence_english": "He presented a very well-structured speech.", + "pos": "adjective", + "word_frequency": 8557 + }, + { + "word": "badia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abbey", + "romanization": "badia", + "example_sentence_native": "La badia è un luogo di pace e preghiera.", + "example_sentence_english": "The abbey is a place of peace and prayer.", + "pos": "noun", + "word_frequency": 8558 + }, + { + "word": "biodiversità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biodiversity", + "romanization": "biodiversità", + "example_sentence_native": "La protezione della biodiversità è cruciale per il futuro del pianeta.", + "example_sentence_english": "The protection of biodiversity is crucial for the future of the planet.", + "pos": "noun", + "word_frequency": 8560 + }, + { + "word": "briga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trouble;bother", + "romanization": "briga", + "example_sentence_native": "Non voglio darti nessuna briga.", + "example_sentence_english": "I don't want to give you any trouble.", + "pos": "noun", + "word_frequency": 8561 + }, + { + "word": "bugiardo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lying;liar (adj.)", + "romanization": "bugiardo", + "example_sentence_native": "È un uomo bugiardo, non credere a quello che dice.", + "example_sentence_english": "He is a lying man, don't believe what he says.", + "pos": "adjective", + "word_frequency": 8562 + }, + { + "word": "butler", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butler", + "romanization": "butler", + "example_sentence_native": "Il butler ha servito il tè nel salotto.", + "example_sentence_english": "The butler served tea in the living room.", + "pos": "noun", + "word_frequency": 8563 + }, + { + "word": "centrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "centered;focused;spot-on", + "romanization": "centrato", + "example_sentence_native": "La sua analisi era perfettamente centrata sul problema.", + "example_sentence_english": "His analysis was perfectly focused on the problem.", + "pos": "adjective", + "word_frequency": 8565 + }, + { + "word": "centrosinistra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "center-left", + "romanization": "centrosinistra", + "example_sentence_native": "Il partito di centrosinistra ha vinto le elezioni.", + "example_sentence_english": "The center-left party won the elections.", + "pos": "noun", + "word_frequency": 8566 + }, + { + "word": "ceto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "class;social stratum", + "romanization": "ceto", + "example_sentence_native": "Appartiene al ceto medio.", + "example_sentence_english": "He belongs to the middle class.", + "pos": "noun", + "word_frequency": 8567 + }, + { + "word": "ciglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyelash;edge;verge", + "romanization": "ciglio", + "example_sentence_native": "Si è fermato al ciglio della strada.", + "example_sentence_english": "He stopped at the edge of the road.", + "pos": "noun", + "word_frequency": 8568 + }, + { + "word": "collera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anger;wrath", + "romanization": "collera", + "example_sentence_native": "Ha perso la calma ed è esploso in collera.", + "example_sentence_english": "He lost his temper and exploded in anger.", + "pos": "noun", + "word_frequency": 8569 + }, + { + "word": "competitività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitiveness", + "romanization": "competitività", + "example_sentence_native": "L'azienda deve migliorare la sua competitività sul mercato globale.", + "example_sentence_english": "The company must improve its competitiveness in the global market.", + "pos": "noun", + "word_frequency": 8570 + }, + { + "word": "concepito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceived;designed", + "romanization": "concepito", + "example_sentence_native": "Il progetto è stato concepito per essere innovativo.", + "example_sentence_english": "The project was conceived to be innovative.", + "pos": "adjective", + "word_frequency": 8571 + }, + { + "word": "conseguentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consequently;as a result", + "romanization": "conseguentemente", + "example_sentence_native": "Ha studiato molto e conseguentemente ha superato l'esame.", + "example_sentence_english": "He studied a lot and consequently passed the exam.", + "pos": "adverb", + "word_frequency": 8572 + }, + { + "word": "consuetudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "custom;habit", + "romanization": "consuetudine", + "example_sentence_native": "È una vecchia consuetudine del villaggio.", + "example_sentence_english": "It's an old custom of the village.", + "pos": "noun", + "word_frequency": 8573 + }, + { + "word": "contaminazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contamination", + "romanization": "contaminazione", + "example_sentence_native": "La contaminazione dell'acqua è un problema serio.", + "example_sentence_english": "Water contamination is a serious problem.", + "pos": "noun", + "word_frequency": 8574 + }, + { + "word": "contrabbando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggling;contraband", + "romanization": "contrabbando", + "example_sentence_native": "La polizia ha sequestrato una grande quantità di merce di contrabbando.", + "example_sentence_english": "The police seized a large quantity of contraband goods.", + "pos": "noun", + "word_frequency": 8575 + }, + { + "word": "croato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Croatian", + "romanization": "croato", + "example_sentence_native": "Parla fluentemente il croato.", + "example_sentence_english": "He speaks Croatian fluently.", + "pos": "adjective", + "word_frequency": 8578 + }, + { + "word": "decoro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decorum;decency", + "romanization": "decoro", + "example_sentence_native": "Ha agito con grande decoro nonostante la situazione difficile.", + "example_sentence_english": "He acted with great decorum despite the difficult situation.", + "pos": "noun", + "word_frequency": 8579 + }, + { + "word": "delicatezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delicacy;tenderness", + "romanization": "delicatezza", + "example_sentence_native": "Ha trattato l'argomento con grande delicatezza.", + "example_sentence_english": "He handled the topic with great delicacy.", + "pos": "noun", + "word_frequency": 8580 + }, + { + "word": "deprimente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depressing", + "romanization": "deprimente", + "example_sentence_native": "Il film era piuttosto deprimente.", + "example_sentence_english": "The movie was quite depressing.", + "pos": "adjective", + "word_frequency": 8581 + }, + { + "word": "dilettante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amateur", + "romanization": "dilettante", + "example_sentence_native": "È un bravo musicista, anche se è solo un dilettante.", + "example_sentence_english": "He is a good musician, even if he is just an amateur.", + "pos": "noun", + "word_frequency": 8582 + }, + { + "word": "dimagrire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to lose weight;to get thinner", + "romanization": "dimagrire", + "example_sentence_native": "Vorrei dimagrire qualche chilo prima dell'estate.", + "example_sentence_english": "I would like to lose a few kilos before summer.", + "pos": "verb", + "word_frequency": 8583 + }, + { + "word": "divergenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divergence;disagreement", + "romanization": "divergenza", + "example_sentence_native": "C'è stata una divergenza di opinioni tra i due colleghi.", + "example_sentence_english": "There was a divergence of opinions between the two colleagues.", + "pos": "noun", + "word_frequency": 8584 + }, + { + "word": "domattina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tomorrow morning", + "romanization": "domattina", + "example_sentence_native": "Ci vediamo domattina alle otto.", + "example_sentence_english": "See you tomorrow morning at eight.", + "pos": "adverb", + "word_frequency": 8585 + }, + { + "word": "elemosina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alms;charity", + "romanization": "elemosina", + "example_sentence_native": "Ha chiesto l'elemosina per strada.", + "example_sentence_english": "He asked for alms on the street.", + "pos": "noun", + "word_frequency": 8587 + }, + { + "word": "enciclopedia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encyclopedia", + "romanization": "enciclopedia", + "example_sentence_native": "Ho consultato l'enciclopedia per trovare informazioni.", + "example_sentence_english": "I consulted the encyclopedia to find information.", + "pos": "noun", + "word_frequency": 8588 + }, + { + "word": "eruzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eruption;rash", + "romanization": "eruzione", + "example_sentence_native": "L'eruzione del vulcano ha causato molti danni.", + "example_sentence_english": "The volcano's eruption caused a lot of damage.", + "pos": "noun", + "word_frequency": 8589 + }, + { + "word": "evincere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to deduce;to infer;to evince", + "romanization": "evincere", + "example_sentence_native": "Dal suo comportamento si può evincere la sua frustrazione.", + "example_sentence_english": "From his behavior, one can infer his frustration.", + "pos": "verb", + "word_frequency": 8590 + }, + { + "word": "feto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fetus", + "romanization": "feto", + "example_sentence_native": "Lo sviluppo del feto è monitorato attentamente.", + "example_sentence_english": "The development of the fetus is carefully monitored.", + "pos": "noun", + "word_frequency": 8592 + }, + { + "word": "finestrino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small window;car window", + "romanization": "finestrino", + "example_sentence_native": "Ho abbassato il finestrino per far entrare aria fresca.", + "example_sentence_english": "I rolled down the window to let in fresh air.", + "pos": "noun", + "word_frequency": 8593 + }, + { + "word": "fissato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed;set;obsessed", + "romanization": "fissato", + "example_sentence_native": "È fissato con la pulizia.", + "example_sentence_english": "He is obsessed with cleanliness.", + "pos": "adjective", + "word_frequency": 8594 + }, + { + "word": "forense", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forensic", + "romanization": "forense", + "example_sentence_native": "La scienza forense è fondamentale per risolvere i crimini.", + "example_sentence_english": "Forensic science is fundamental for solving crimes.", + "pos": "adjective", + "word_frequency": 8595 + }, + { + "word": "fragilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragility", + "romanization": "fragilità", + "example_sentence_native": "La fragilità del vetro lo rende difficile da trasportare.", + "example_sentence_english": "The fragility of glass makes it difficult to transport.", + "pos": "noun", + "word_frequency": 8596 + }, + { + "word": "golpe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coup;coup d'état", + "romanization": "golpe", + "example_sentence_native": "Il paese ha subito un golpe militare.", + "example_sentence_english": "The country suffered a military coup.", + "pos": "noun", + "word_frequency": 8597 + }, + { + "word": "ibrido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hybrid", + "romanization": "ibrido", + "example_sentence_native": "Questo è un veicolo ibrido.", + "example_sentence_english": "This is a hybrid vehicle.", + "pos": "noun", + "word_frequency": 8600 + }, + { + "word": "incantesimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spell;enchantment", + "romanization": "incantesimo", + "example_sentence_native": "La strega lanciò un potente incantesimo.", + "example_sentence_english": "The witch cast a powerful spell.", + "pos": "noun", + "word_frequency": 8602 + }, + { + "word": "inclinazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclination;slope;tendency", + "romanization": "inclinazione", + "example_sentence_native": "Ha una forte inclinazione per la musica.", + "example_sentence_english": "He has a strong inclination for music.", + "pos": "noun", + "word_frequency": 8603 + }, + { + "word": "incolpare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blame", + "romanization": "incolpare", + "example_sentence_native": "Non incolpare gli altri per i tuoi errori.", + "example_sentence_english": "Don't blame others for your mistakes.", + "pos": "verb", + "word_frequency": 8604 + }, + { + "word": "indimenticabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unforgettable", + "romanization": "indimenticabile", + "example_sentence_native": "È stata un'esperienza indimenticabile.", + "example_sentence_english": "It was an unforgettable experience.", + "pos": "adjective", + "word_frequency": 8605 + }, + { + "word": "insostenibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsustainable;unbearable", + "romanization": "insostenibile", + "example_sentence_native": "La situazione è diventata insostenibile.", + "example_sentence_english": "The situation has become unbearable.", + "pos": "adjective", + "word_frequency": 8607 + }, + { + "word": "intermediario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intermediary;broker", + "romanization": "intermediario", + "example_sentence_native": "Abbiamo usato un intermediario per la trattativa.", + "example_sentence_english": "We used an intermediary for the negotiation.", + "pos": "noun", + "word_frequency": 8608 + }, + { + "word": "intuizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuition;insight", + "romanization": "intuizione", + "example_sentence_native": "Ho avuto un'intuizione improvvisa.", + "example_sentence_english": "I had a sudden intuition.", + "pos": "noun", + "word_frequency": 8609 + }, + { + "word": "italico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Italic (relating to ancient Italy or its languages)", + "romanization": "italico", + "example_sentence_native": "Le lingue italiche sono un gruppo di lingue indoeuropee.", + "example_sentence_english": "The Italic languages are a group of Indo-European languages.", + "pos": "adjective", + "word_frequency": 8610 + }, + { + "word": "lasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "span;period (of time)", + "romanization": "lasso", + "example_sentence_native": "Ha completato il lavoro in un breve lasso di tempo.", + "example_sentence_english": "He completed the work in a short period of time.", + "pos": "noun", + "word_frequency": 8616 + }, + { + "word": "lastra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slab;sheet;plate", + "romanization": "lastra", + "example_sentence_native": "Hanno installato una lastra di marmo.", + "example_sentence_english": "They installed a marble slab.", + "pos": "noun", + "word_frequency": 8617 + }, + { + "word": "magnetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnetic", + "romanization": "magnetico", + "example_sentence_native": "Il campo magnetico terrestre ci protegge.", + "example_sentence_english": "The Earth's magnetic field protects us.", + "pos": "adjective", + "word_frequency": 8619 + }, + { + "word": "malessere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "malaise;discomfort;indisposition", + "romanization": "malessere", + "example_sentence_native": "Ha avvertito un leggero malessere.", + "example_sentence_english": "He felt a slight discomfort.", + "pos": "noun", + "word_frequency": 8620 + }, + { + "word": "malinconia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melancholy", + "romanization": "malinconia", + "example_sentence_native": "Una profonda malinconia lo avvolse.", + "example_sentence_english": "A deep melancholy enveloped him.", + "pos": "noun", + "word_frequency": 8621 + }, + { + "word": "manciata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handful", + "romanization": "manciata", + "example_sentence_native": "Mi ha dato una manciata di monete.", + "example_sentence_english": "He gave me a handful of coins.", + "pos": "noun", + "word_frequency": 8622 + }, + { + "word": "marinaio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sailor", + "romanization": "marinaio", + "example_sentence_native": "Il marinaio salpò con la nave.", + "example_sentence_english": "The sailor set sail with the ship.", + "pos": "noun", + "word_frequency": 8623 + }, + { + "word": "minacciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatened", + "romanization": "minacciato", + "example_sentence_native": "La specie è minacciata di estinzione.", + "example_sentence_english": "The species is threatened with extinction.", + "pos": "adjective", + "word_frequency": 8625 + }, + { + "word": "omonimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homonymous;namesake", + "romanization": "omonimo", + "example_sentence_native": "Sono omonimo di un famoso attore.", + "example_sentence_english": "I am the namesake of a famous actor.", + "pos": "adjective", + "word_frequency": 8630 + }, + { + "word": "oppositore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opponent;adversary", + "romanization": "oppositore", + "example_sentence_native": "L'oppositore ha criticato la proposta.", + "example_sentence_english": "The opponent criticized the proposal.", + "pos": "noun", + "word_frequency": 8631 + }, + { + "word": "orgasmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgasm", + "romanization": "orgasmo", + "example_sentence_native": "Il piacere culminò in un orgasmo.", + "example_sentence_english": "The pleasure culminated in an orgasm.", + "pos": "noun", + "word_frequency": 8632 + }, + { + "word": "osservato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "observed;noticed", + "romanization": "osservato", + "example_sentence_native": "Il fenomeno è stato attentamente osservato.", + "example_sentence_english": "The phenomenon was carefully observed.", + "pos": "adjective", + "word_frequency": 8633 + }, + { + "word": "piastra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plate;slab;(hair) straightener", + "romanization": "piastra", + "example_sentence_native": "Ho usato la piastra per i capelli.", + "example_sentence_english": "I used the hair straightener.", + "pos": "noun", + "word_frequency": 8634 + }, + { + "word": "piccante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spicy;hot (food)", + "romanization": "piccante", + "example_sentence_native": "Questo cibo è molto piccante.", + "example_sentence_english": "This food is very spicy.", + "pos": "adjective", + "word_frequency": 8635 + }, + { + "word": "piccione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pigeon", + "romanization": "piccione", + "example_sentence_native": "Un piccione si è posato sul davanzale.", + "example_sentence_english": "A pigeon landed on the windowsill.", + "pos": "noun", + "word_frequency": 8636 + }, + { + "word": "precario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precarious;unstable", + "romanization": "precario", + "example_sentence_native": "La sua situazione lavorativa è precaria.", + "example_sentence_english": "His work situation is precarious.", + "pos": "adjective", + "word_frequency": 8637 + }, + { + "word": "raga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guys;gals (informal)", + "romanization": "raga", + "example_sentence_native": "Ciao raga, come state?", + "example_sentence_english": "Hi guys, how are you?", + "pos": "noun", + "word_frequency": 8640 + }, + { + "word": "riapertura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reopening", + "romanization": "riapertura", + "example_sentence_native": "La riapertura del negozio è prevista per lunedì.", + "example_sentence_english": "The reopening of the shop is scheduled for Monday.", + "pos": "noun", + "word_frequency": 8643 + }, + { + "word": "ricostruito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconstructed", + "romanization": "ricostruito", + "example_sentence_native": "Il ponte è stato completamente ricostruito dopo il terremoto.", + "example_sentence_english": "The bridge was completely reconstructed after the earthquake.", + "pos": "adjective", + "word_frequency": 8645 + }, + { + "word": "risolto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "solved;resolved", + "romanization": "risolto", + "example_sentence_native": "Il problema è stato finalmente risolto.", + "example_sentence_english": "The problem has finally been solved.", + "pos": "adjective", + "word_frequency": 8646 + }, + { + "word": "router", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "router", + "romanization": "router", + "example_sentence_native": "Devo riavviare il router per far funzionare internet.", + "example_sentence_english": "I need to restart the router to make the internet work.", + "pos": "noun", + "word_frequency": 8647 + }, + { + "word": "rovesciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overturn;to spill", + "romanization": "rovesciare", + "example_sentence_native": "Ha rovesciato il caffè sulla tovaglia.", + "example_sentence_english": "He spilled the coffee on the tablecloth.", + "pos": "verb", + "word_frequency": 8648 + }, + { + "word": "salsiccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sausage", + "romanization": "salsiccia", + "example_sentence_native": "Mi piace mangiare la salsiccia alla griglia.", + "example_sentence_english": "I like to eat grilled sausage.", + "pos": "noun", + "word_frequency": 8649 + }, + { + "word": "salutato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "greeted;waved to", + "romanization": "salutato", + "example_sentence_native": "L'ho salutato mentre passava.", + "example_sentence_english": "I greeted him as he passed by.", + "pos": "adjective", + "word_frequency": 8650 + }, + { + "word": "schieramento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deployment;alignment", + "romanization": "schieramento", + "example_sentence_native": "Il nuovo schieramento politico ha sorpreso tutti.", + "example_sentence_english": "The new political alignment surprised everyone.", + "pos": "noun", + "word_frequency": 8651 + }, + { + "word": "scozzese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Scottish", + "romanization": "scozzese", + "example_sentence_native": "Indossa un kilt scozzese.", + "example_sentence_english": "He is wearing a Scottish kilt.", + "pos": "adjective", + "word_frequency": 8652 + }, + { + "word": "sonda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "probe;sound", + "romanization": "sonda", + "example_sentence_native": "La sonda spaziale ha inviato nuove immagini.", + "example_sentence_english": "The space probe sent new images.", + "pos": "noun", + "word_frequency": 8655 + }, + { + "word": "sperma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sperm", + "romanization": "sperma", + "example_sentence_native": "La ricerca si concentra sulla qualità dello sperma.", + "example_sentence_english": "The research focuses on sperm quality.", + "pos": "noun", + "word_frequency": 8656 + }, + { + "word": "squalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shark", + "romanization": "squalo", + "example_sentence_native": "Ho visto uno squalo nel documentario.", + "example_sentence_english": "I saw a shark in the documentary.", + "pos": "noun", + "word_frequency": 8657 + }, + { + "word": "stampato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "printed", + "romanization": "stampato", + "example_sentence_native": "Il libro è stato stampato in migliaia di copie.", + "example_sentence_english": "The book was printed in thousands of copies.", + "pos": "adjective", + "word_frequency": 8658 + }, + { + "word": "station", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "station (as in 'radio station' or 'service station')", + "romanization": "station", + "example_sentence_native": "Ascolto la mia musica preferita sulla radio station.", + "example_sentence_english": "I listen to my favorite music on the radio station.", + "pos": "noun", + "word_frequency": 8659 + }, + { + "word": "stento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difficulty;hardship (often in 'a stento' - barely)", + "romanization": "stento", + "example_sentence_native": "Riusciva a parlare a stento dopo l'incidente.", + "example_sentence_english": "He could barely speak after the accident.", + "pos": "noun", + "word_frequency": 8660 + }, + { + "word": "stupito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astonished;amazed", + "romanization": "stupito", + "example_sentence_native": "Ero stupito dalla sua bravura.", + "example_sentence_english": "I was astonished by his skill.", + "pos": "adjective", + "word_frequency": 8661 + }, + { + "word": "ticket", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ticket", + "romanization": "ticket", + "example_sentence_native": "Ho comprato un ticket per il concerto.", + "example_sentence_english": "I bought a ticket for the concert.", + "pos": "noun", + "word_frequency": 8663 + }, + { + "word": "toccato", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "touched", + "romanization": "toccato", + "example_sentence_native": "Non ho toccato nulla.", + "example_sentence_english": "I didn't touch anything.", + "pos": "adjective", + "word_frequency": 8664 + }, + { + "word": "tollerare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tolerate", + "romanization": "tollerare", + "example_sentence_native": "Non posso tollerare questo comportamento.", + "example_sentence_english": "I cannot tolerate this behavior.", + "pos": "verb", + "word_frequency": 8666 + }, + { + "word": "tolto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "removed;taken away", + "romanization": "tolto", + "example_sentence_native": "Mi è stato tolto il portafoglio.", + "example_sentence_english": "My wallet was taken away.", + "pos": "adjective", + "word_frequency": 8667 + }, + { + "word": "training", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "training", + "romanization": "training", + "example_sentence_native": "Stiamo seguendo un training intensivo.", + "example_sentence_english": "We are undergoing intensive training.", + "pos": "noun", + "word_frequency": 8668 + }, + { + "word": "ventennio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "twenty-year period (often referring to Fascist era)", + "romanization": "ventennio", + "example_sentence_native": "Il ventennio fascista ha lasciato un segno profondo nella storia italiana.", + "example_sentence_english": "The twenty-year Fascist period left a deep mark on Italian history.", + "pos": "noun", + "word_frequency": 8670 + }, + { + "word": "veronese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Veronese (from Verona)", + "romanization": "veronese", + "example_sentence_native": "Ho assaggiato un ottimo vino veronese.", + "example_sentence_english": "I tasted an excellent Veronese wine.", + "pos": "adjective", + "word_frequency": 8671 + }, + { + "word": "visualizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to visualize;to display", + "romanization": "visualizzare", + "example_sentence_native": "Puoi visualizzare i dati sul monitor.", + "example_sentence_english": "You can display the data on the monitor.", + "pos": "verb", + "word_frequency": 8672 + }, + { + "word": "abilitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualification;authorization", + "romanization": "abilitazione", + "example_sentence_native": "Ha ottenuto l'abilitazione all'insegnamento.", + "example_sentence_english": "He obtained the teaching qualification.", + "pos": "noun", + "word_frequency": 8674 + }, + { + "word": "acquirente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buyer;purchaser", + "romanization": "acquirente", + "example_sentence_native": "L'acquirente ha firmato il contratto.", + "example_sentence_english": "The buyer signed the contract.", + "pos": "noun", + "word_frequency": 8675 + }, + { + "word": "alfabeto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "alphabet", + "romanization": "alfabeto", + "example_sentence_native": "Imparo l'alfabeto italiano.", + "example_sentence_english": "I am learning the Italian alphabet.", + "pos": "noun", + "word_frequency": 8676 + }, + { + "word": "allestimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "setup;staging;fitting out", + "romanization": "allestimento", + "example_sentence_native": "L'allestimento della mostra è quasi terminato.", + "example_sentence_english": "The setup of the exhibition is almost finished.", + "pos": "noun", + "word_frequency": 8677 + }, + { + "word": "antenna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antenna", + "romanization": "antenna", + "example_sentence_native": "L'antenna della televisione non funziona bene.", + "example_sentence_english": "The television antenna is not working well.", + "pos": "noun", + "word_frequency": 8678 + }, + { + "word": "apportare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring;to contribute;to make (changes)", + "romanization": "apportare", + "example_sentence_native": "Dobbiamo apportare alcune modifiche al progetto.", + "example_sentence_english": "We need to make some changes to the project.", + "pos": "verb", + "word_frequency": 8679 + }, + { + "word": "ateneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "university", + "romanization": "ateneo", + "example_sentence_native": "L'ateneo offre molti corsi di laurea.", + "example_sentence_english": "The university offers many degree courses.", + "pos": "noun", + "word_frequency": 8680 + }, + { + "word": "bagnato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wet", + "romanization": "bagnato", + "example_sentence_native": "Il pavimento è bagnato, fai attenzione.", + "example_sentence_english": "The floor is wet, be careful.", + "pos": "adjective", + "word_frequency": 8681 + }, + { + "word": "barocco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baroque", + "romanization": "barocco", + "example_sentence_native": "La chiesa ha uno stile architettonico barocco.", + "example_sentence_english": "The church has a baroque architectural style.", + "pos": "adjective", + "word_frequency": 8682 + }, + { + "word": "bunker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bunker", + "romanization": "bunker", + "example_sentence_native": "Hanno costruito un bunker sotterraneo.", + "example_sentence_english": "They built an underground bunker.", + "pos": "noun", + "word_frequency": 8686 + }, + { + "word": "cacao", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cocoa", + "romanization": "cacao", + "example_sentence_native": "Mi piace il latte con il cacao.", + "example_sentence_english": "I like milk with cocoa.", + "pos": "noun", + "word_frequency": 8687 + }, + { + "word": "camerino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dressing room", + "romanization": "camerino", + "example_sentence_native": "L'attrice si sta preparando nel camerino.", + "example_sentence_english": "The actress is getting ready in the dressing room.", + "pos": "noun", + "word_frequency": 8688 + }, + { + "word": "cartina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "map", + "romanization": "cartina", + "example_sentence_native": "Abbiamo usato una cartina per trovare la strada.", + "example_sentence_english": "We used a map to find the way.", + "pos": "noun", + "word_frequency": 8690 + }, + { + "word": "cessazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cessation", + "romanization": "cessazione", + "example_sentence_native": "La cessazione del contratto è prevista per fine mese.", + "example_sentence_english": "The termination of the contract is scheduled for the end of the month.", + "pos": "noun", + "word_frequency": 8691 + }, + { + "word": "cestino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket;waste bin", + "romanization": "cestino", + "example_sentence_native": "Butta la carta nel cestino.", + "example_sentence_english": "Throw the paper in the waste bin.", + "pos": "noun", + "word_frequency": 8692 + }, + { + "word": "cognizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cognition;knowledge", + "romanization": "cognizione", + "example_sentence_native": "Non aveva piena cognizione dei fatti.", + "example_sentence_english": "He did not have full knowledge of the facts.", + "pos": "noun", + "word_frequency": 8695 + }, + { + "word": "commemorazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commemoration", + "romanization": "commemorazione", + "example_sentence_native": "Si terrà una commemorazione per le vittime.", + "example_sentence_english": "A commemoration will be held for the victims.", + "pos": "noun", + "word_frequency": 8696 + }, + { + "word": "consolidamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consolidation", + "romanization": "consolidamento", + "example_sentence_native": "Il consolidamento dei debiti è una strategia finanziaria.", + "example_sentence_english": "Debt consolidation is a financial strategy.", + "pos": "noun", + "word_frequency": 8698 + }, + { + "word": "consorte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spouse;consort", + "romanization": "consorte", + "example_sentence_native": "La regina e il suo consorte hanno visitato la città.", + "example_sentence_english": "The queen and her consort visited the city.", + "pos": "noun", + "word_frequency": 8699 + }, + { + "word": "consultato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consulted", + "romanization": "consultato", + "example_sentence_native": "Il documento consultato era molto utile.", + "example_sentence_english": "The consulted document was very useful.", + "pos": "adjective", + "word_frequency": 8700 + }, + { + "word": "contagio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contagion;infection", + "romanization": "contagio", + "example_sentence_native": "Hanno cercato di limitare il contagio del virus.", + "example_sentence_english": "They tried to limit the contagion of the virus.", + "pos": "noun", + "word_frequency": 8701 + }, + { + "word": "contrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraction", + "romanization": "contrazione", + "example_sentence_native": "L'economia ha subito una contrazione.", + "example_sentence_english": "The economy suffered a contraction.", + "pos": "noun", + "word_frequency": 8702 + }, + { + "word": "coscia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thigh", + "romanization": "coscia", + "example_sentence_native": "Si è fatto male alla coscia giocando a calcio.", + "example_sentence_english": "He hurt his thigh playing soccer.", + "pos": "noun", + "word_frequency": 8703 + }, + { + "word": "cubo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cube", + "romanization": "cubo", + "example_sentence_native": "Il bambino giocava con un cubo di legno.", + "example_sentence_english": "The child was playing with a wooden cube.", + "pos": "noun", + "word_frequency": 8704 + }, + { + "word": "dazio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duty;tariff", + "romanization": "dazio", + "example_sentence_native": "Hanno imposto un nuovo dazio sulle importazioni.", + "example_sentence_english": "They imposed a new duty on imports.", + "pos": "noun", + "word_frequency": 8707 + }, + { + "word": "deviazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deviation;detour", + "romanization": "deviazione", + "example_sentence_native": "C'è una deviazione a causa dei lavori stradali.", + "example_sentence_english": "There is a detour due to road works.", + "pos": "noun", + "word_frequency": 8708 + }, + { + "word": "discapito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detriment;disadvantage", + "romanization": "discapito", + "example_sentence_native": "Ha raggiunto il successo a discapito della sua salute.", + "example_sentence_english": "He achieved success at the expense of his health.", + "pos": "noun", + "word_frequency": 8709 + }, + { + "word": "disgusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgust", + "romanization": "disgusto", + "example_sentence_native": "Ha provato un profondo disgusto per la sua ipocrisia.", + "example_sentence_english": "He felt a deep disgust for her hypocrisy.", + "pos": "noun", + "word_frequency": 8710 + }, + { + "word": "ducale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ducal", + "romanization": "ducale", + "example_sentence_native": "Il Palazzo Ducale di Venezia è magnifico.", + "example_sentence_english": "The Doge's Palace in Venice is magnificent.", + "pos": "adjective", + "word_frequency": 8712 + }, + { + "word": "egoista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "selfish", + "romanization": "egoista", + "example_sentence_native": "Non essere così egoista, pensa anche agli altri.", + "example_sentence_english": "Don't be so selfish, think of others too.", + "pos": "adjective", + "word_frequency": 8713 + }, + { + "word": "emanato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "issued;promulgated", + "romanization": "emanato", + "example_sentence_native": "La legge emanata ieri entrerà in vigore presto.", + "example_sentence_english": "The law issued yesterday will come into force soon.", + "pos": "adjective", + "word_frequency": 8714 + }, + { + "word": "esagerato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exaggerated;excessive", + "romanization": "esagerato", + "example_sentence_native": "La sua reazione è stata un po' esagerata.", + "example_sentence_english": "His reaction was a bit exaggerated.", + "pos": "adjective", + "word_frequency": 8716 + }, + { + "word": "fischio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whistle", + "romanization": "fischio", + "example_sentence_native": "Ho sentito un fischio acuto provenire dal treno.", + "example_sentence_english": "I heard a sharp whistle coming from the train.", + "pos": "noun", + "word_frequency": 8720 + }, + { + "word": "gesuita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Jesuit", + "romanization": "gesuita", + "example_sentence_native": "Il gesuita ha dedicato la sua vita all'educazione.", + "example_sentence_english": "The Jesuit dedicated his life to education.", + "pos": "noun", + "word_frequency": 8724 + }, + { + "word": "giustificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justified", + "romanization": "giustificato", + "example_sentence_native": "La sua assenza era pienamente giustificata.", + "example_sentence_english": "His absence was fully justified.", + "pos": "adjective", + "word_frequency": 8725 + }, + { + "word": "gru", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crane", + "romanization": "gru", + "example_sentence_native": "La gru stava sollevando materiali pesanti sul cantiere.", + "example_sentence_english": "The crane was lifting heavy materials on the construction site.", + "pos": "noun", + "word_frequency": 8726 + }, + { + "word": "incantevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enchanting", + "romanization": "incantevole", + "example_sentence_native": "Il paesaggio era semplicemente incantevole.", + "example_sentence_english": "The landscape was simply enchanting.", + "pos": "adjective", + "word_frequency": 8730 + }, + { + "word": "influente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influential", + "romanization": "influente", + "example_sentence_native": "È una figura molto influente nel suo campo.", + "example_sentence_english": "He is a very influential figure in his field.", + "pos": "adjective", + "word_frequency": 8732 + }, + { + "word": "infranto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broken", + "romanization": "infranto", + "example_sentence_native": "Il vaso è caduto e si è infranto in mille pezzi.", + "example_sentence_english": "The vase fell and shattered into a thousand pieces.", + "pos": "adjective", + "word_frequency": 8733 + }, + { + "word": "lacuna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gap", + "romanization": "lacuna", + "example_sentence_native": "C'è una lacuna significativa nella sua conoscenza storica.", + "example_sentence_english": "There is a significant gap in his historical knowledge.", + "pos": "noun", + "word_frequency": 8739 + }, + { + "word": "layout", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layout", + "romanization": "layout", + "example_sentence_native": "Il layout della pagina web è molto pulito.", + "example_sentence_english": "The layout of the web page is very clean.", + "pos": "noun", + "word_frequency": 8740 + }, + { + "word": "lenzuolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bedsheet", + "romanization": "lenzuolo", + "example_sentence_native": "Ho cambiato il lenzuolo del letto.", + "example_sentence_english": "I changed the bedsheet.", + "pos": "noun", + "word_frequency": 8742 + }, + { + "word": "macchiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stained", + "romanization": "macchiato", + "example_sentence_native": "La camicia era macchiata di caffè.", + "example_sentence_english": "The shirt was stained with coffee.", + "pos": "adjective", + "word_frequency": 8744 + }, + { + "word": "massoneria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Freemasonry", + "romanization": "massoneria", + "example_sentence_native": "La massoneria ha una lunga storia in Europa.", + "example_sentence_english": "Freemasonry has a long history in Europe.", + "pos": "noun", + "word_frequency": 8746 + }, + { + "word": "maturato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matured", + "romanization": "maturato", + "example_sentence_native": "Il formaggio ha maturato per sei mesi.", + "example_sentence_english": "The cheese matured for six months.", + "pos": "adjective", + "word_frequency": 8747 + }, + { + "word": "metabolismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metabolism", + "romanization": "metabolismo", + "example_sentence_native": "Il suo metabolismo è molto veloce.", + "example_sentence_english": "His metabolism is very fast.", + "pos": "noun", + "word_frequency": 8748 + }, + { + "word": "miserabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miserable", + "romanization": "miserabile", + "example_sentence_native": "Si sentiva miserabile dopo la brutta notizia.", + "example_sentence_english": "He felt miserable after the bad news.", + "pos": "adjective", + "word_frequency": 8749 + }, + { + "word": "misurazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measurement", + "romanization": "misurazione", + "example_sentence_native": "La misurazione della temperatura è accurata.", + "example_sentence_english": "The temperature measurement is accurate.", + "pos": "noun", + "word_frequency": 8750 + }, + { + "word": "molle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft", + "romanization": "molle", + "example_sentence_native": "Il cuscino è molto molle e confortevole.", + "example_sentence_english": "The pillow is very soft and comfortable.", + "pos": "adjective", + "word_frequency": 8751 + }, + { + "word": "multimediale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multimedia", + "romanization": "multimediale", + "example_sentence_native": "Hanno presentato un progetto multimediale innovativo.", + "example_sentence_english": "They presented an innovative multimedia project.", + "pos": "adjective", + "word_frequency": 8753 + }, + { + "word": "oca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "goose", + "romanization": "oca", + "example_sentence_native": "L'oca nuotava tranquillamente nello stagno.", + "example_sentence_english": "The goose was swimming peacefully in the pond.", + "pos": "noun", + "word_frequency": 8754 + }, + { + "word": "ottenuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obtained", + "romanization": "ottenuto", + "example_sentence_native": "Il risultato ottenuto è stato eccellente.", + "example_sentence_english": "The result obtained was excellent.", + "pos": "adjective", + "word_frequency": 8756 + }, + { + "word": "palude", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swamp", + "romanization": "palude", + "example_sentence_native": "La palude è un ecosistema ricco di biodiversità.", + "example_sentence_english": "The swamp is an ecosystem rich in biodiversity.", + "pos": "noun", + "word_frequency": 8757 + }, + { + "word": "patrocinio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patronage", + "romanization": "patrocinio", + "example_sentence_native": "L'evento si è svolto sotto il patrocinio del comune.", + "example_sentence_english": "The event took place under the patronage of the municipality.", + "pos": "noun", + "word_frequency": 8758 + }, + { + "word": "pentito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repentant;regretful", + "romanization": "pentito", + "example_sentence_native": "Era pentito delle sue azioni passate.", + "example_sentence_english": "He was repentant of his past actions.", + "pos": "adjective", + "word_frequency": 8760 + }, + { + "word": "piacimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liking;pleasure;discretion", + "romanization": "piacimento", + "example_sentence_native": "Puoi organizzare la festa a tuo piacimento.", + "example_sentence_english": "You can organize the party at your discretion.", + "pos": "noun", + "word_frequency": 8762 + }, + { + "word": "pila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "battery;pile;stack", + "romanization": "pila", + "example_sentence_native": "La torcia ha bisogno di una nuova pila.", + "example_sentence_english": "The flashlight needs a new battery.", + "pos": "noun", + "word_frequency": 8763 + }, + { + "word": "polare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polar", + "romanization": "polare", + "example_sentence_native": "L'orso polare vive nelle regioni artiche.", + "example_sentence_english": "The polar bear lives in the Arctic regions.", + "pos": "adjective", + "word_frequency": 8764 + }, + { + "word": "precisato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specified;precise", + "romanization": "precisato", + "example_sentence_native": "Il termine per la consegna non è stato precisato.", + "example_sentence_english": "The deadline for delivery has not been specified.", + "pos": "adjective", + "word_frequency": 8765 + }, + { + "word": "prevalente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevalent;prevailing", + "romanization": "prevalente", + "example_sentence_native": "La tendenza prevalente è verso l'uso di energie rinnovabili.", + "example_sentence_english": "The prevailing trend is towards the use of renewable energies.", + "pos": "adjective", + "word_frequency": 8766 + }, + { + "word": "privilegiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privileged", + "romanization": "privilegiato", + "example_sentence_native": "Si sentiva privilegiato ad avere quell'opportunità unica.", + "example_sentence_english": "He felt privileged to have that unique opportunity.", + "pos": "adjective", + "word_frequency": 8767 + }, + { + "word": "promettente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promising", + "romanization": "promettente", + "example_sentence_native": "È un giovane atleta molto promettente.", + "example_sentence_english": "He is a very promising young athlete.", + "pos": "adjective", + "word_frequency": 8768 + }, + { + "word": "raffinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refined;sophisticated", + "romanization": "raffinato", + "example_sentence_native": "Ha un gusto molto raffinato in fatto di arte.", + "example_sentence_english": "He has a very refined taste in art.", + "pos": "adjective", + "word_frequency": 8770 + }, + { + "word": "rally", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rally", + "romanization": "rally", + "example_sentence_native": "Hanno partecipato a un rally automobilistico nel deserto.", + "example_sentence_english": "They participated in a car rally in the desert.", + "pos": "noun", + "word_frequency": 8771 + }, + { + "word": "resurrezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resurrection", + "romanization": "resurrezione", + "example_sentence_native": "La Pasqua celebra la resurrezione di Cristo.", + "example_sentence_english": "Easter celebrates the resurrection of Christ.", + "pos": "noun", + "word_frequency": 8772 + }, + { + "word": "rimessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remittance;shed;storage", + "romanization": "rimessa", + "example_sentence_native": "Ho inviato una rimessa di denaro alla mia famiglia all'estero.", + "example_sentence_english": "I sent a money remittance to my family abroad.", + "pos": "noun", + "word_frequency": 8773 + }, + { + "word": "riorganizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reorganization", + "romanization": "riorganizzazione", + "example_sentence_native": "L'azienda sta subendo una completa riorganizzazione interna.", + "example_sentence_english": "The company is undergoing a complete internal reorganization.", + "pos": "noun", + "word_frequency": 8774 + }, + { + "word": "scaffale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shelf", + "romanization": "scaffale", + "example_sentence_native": "Metti i libri sullo scaffale più alto.", + "example_sentence_english": "Put the books on the highest shelf.", + "pos": "noun", + "word_frequency": 8780 + }, + { + "word": "scaletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small ladder;outline;agenda", + "romanization": "scaletta", + "example_sentence_native": "Abbiamo preparato una scaletta dettagliata per la riunione.", + "example_sentence_english": "We prepared a detailed agenda for the meeting.", + "pos": "noun", + "word_frequency": 8781 + }, + { + "word": "scapito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detriment;expense (as in 'at the expense of')", + "romanization": "scapito", + "example_sentence_native": "Ha ottenuto il successo a scapito della sua salute.", + "example_sentence_english": "He achieved success at the expense of his health.", + "pos": "noun", + "word_frequency": 8782 + }, + { + "word": "scarsità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarcity;shortage", + "romanization": "scarsità", + "example_sentence_native": "C'è una scarsità d'acqua in alcune regioni del paese.", + "example_sentence_english": "There is a water shortage in some regions of the country.", + "pos": "noun", + "word_frequency": 8783 + }, + { + "word": "scoglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rock;reef;obstacle", + "romanization": "scoglio", + "example_sentence_native": "La barca ha colpito uno scoglio nascosto.", + "example_sentence_english": "The boat hit a hidden rock.", + "pos": "noun", + "word_frequency": 8785 + }, + { + "word": "script", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "script", + "romanization": "script", + "example_sentence_native": "Ho scritto uno script per automatizzare il processo.", + "example_sentence_english": "I wrote a script to automate the process.", + "pos": "noun", + "word_frequency": 8786 + }, + { + "word": "sintonia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmony;rapport;tune", + "romanization": "sintonia", + "example_sentence_native": "C'è una grande sintonia tra i membri del team.", + "example_sentence_english": "There is great harmony among the team members.", + "pos": "noun", + "word_frequency": 8787 + }, + { + "word": "sommario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary;abstract", + "romanization": "sommario", + "example_sentence_native": "Leggi il sommario prima di iniziare il capitolo.", + "example_sentence_english": "Read the summary before starting the chapter.", + "pos": "noun", + "word_frequency": 8788 + }, + { + "word": "sopravvento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upper hand;ascendancy (as in 'gain the upper hand')", + "romanization": "sopravvento", + "example_sentence_native": "La stanchezza ha preso il sopravvento durante la maratona.", + "example_sentence_english": "Tiredness took over during the marathon.", + "pos": "noun", + "word_frequency": 8789 + }, + { + "word": "sotterraneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underground;subterranean", + "romanization": "sotterraneo", + "example_sentence_native": "Hanno scoperto un passaggio sotterraneo sotto il castello.", + "example_sentence_english": "They discovered an underground passage beneath the castle.", + "pos": "adjective", + "word_frequency": 8790 + }, + { + "word": "sottoscrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subscription;signature", + "romanization": "sottoscrizione", + "example_sentence_native": "La sottoscrizione al servizio è annuale.", + "example_sentence_english": "The subscription to the service is annual.", + "pos": "noun", + "word_frequency": 8791 + }, + { + "word": "spiccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stand out;to detach;to take flight", + "romanization": "spiccare", + "example_sentence_native": "Il suo talento lo fa spiccare tra gli altri studenti.", + "example_sentence_english": "His talent makes him stand out among the other students.", + "pos": "verb", + "word_frequency": 8792 + }, + { + "word": "steso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretched out;laid out;spread out", + "romanization": "steso", + "example_sentence_native": "Era steso sul divano a leggere un libro.", + "example_sentence_english": "He was stretched out on the sofa reading a book.", + "pos": "adjective", + "word_frequency": 8793 + }, + { + "word": "strappato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torn;ripped", + "romanization": "strappato", + "example_sentence_native": "Aveva i jeans strappati alle ginocchia.", + "example_sentence_english": "He had torn jeans at the knees.", + "pos": "adjective", + "word_frequency": 8795 + }, + { + "word": "strappo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tear;rip;sprain", + "romanization": "strappo", + "example_sentence_native": "C'è uno strappo nella mia maglietta preferita.", + "example_sentence_english": "There's a tear in my favorite T-shirt.", + "pos": "noun", + "word_frequency": 8796 + }, + { + "word": "striscione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banner;streamer", + "romanization": "striscione", + "example_sentence_native": "Hanno appeso un grande striscione di benvenuto.", + "example_sentence_english": "They hung a large welcome banner.", + "pos": "noun", + "word_frequency": 8797 + }, + { + "word": "supplemento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplement;extra charge", + "romanization": "supplemento", + "example_sentence_native": "C'è un supplemento per la consegna a domicilio.", + "example_sentence_english": "There's an extra charge for home delivery.", + "pos": "noun", + "word_frequency": 8798 + }, + { + "word": "switch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "switch", + "romanization": "switch", + "example_sentence_native": "Accendi lo switch per avviare la macchina.", + "example_sentence_english": "Turn on the switch to start the machine.", + "pos": "noun", + "word_frequency": 8799 + }, + { + "word": "tassista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taxi driver", + "romanization": "tassista", + "example_sentence_native": "Il tassista ci ha portato all'aeroporto.", + "example_sentence_english": "The taxi driver took us to the airport.", + "pos": "noun", + "word_frequency": 8802 + }, + { + "word": "televisore", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "television set", + "romanization": "televisore", + "example_sentence_native": "Abbiamo comprato un nuovo televisore.", + "example_sentence_english": "We bought a new television set.", + "pos": "noun", + "word_frequency": 8803 + }, + { + "word": "timbro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stamp;timbre", + "romanization": "timbro", + "example_sentence_native": "Ho bisogno di un timbro per questa lettera.", + "example_sentence_english": "I need a stamp for this letter.", + "pos": "noun", + "word_frequency": 8805 + }, + { + "word": "tizia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chick;girl (informal)", + "romanization": "tizia", + "example_sentence_native": "C'era una tizia che mi guardava.", + "example_sentence_english": "There was a chick looking at me.", + "pos": "noun", + "word_frequency": 8806 + }, + { + "word": "ucraino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ukrainian", + "romanization": "ucraino", + "example_sentence_native": "La bandiera ucraina è blu e gialla.", + "example_sentence_english": "The Ukrainian flag is blue and yellow.", + "pos": "adjective", + "word_frequency": 8807 + }, + { + "word": "vulnerabilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulnerability", + "romanization": "vulnerabilità", + "example_sentence_native": "La sua vulnerabilità era evidente.", + "example_sentence_english": "His vulnerability was evident.", + "pos": "noun", + "word_frequency": 8808 + }, + { + "word": "aggiuntivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "additional", + "romanization": "aggiuntivo", + "example_sentence_native": "Abbiamo bisogno di informazioni aggiuntive.", + "example_sentence_english": "We need additional information.", + "pos": "adjective", + "word_frequency": 8813 + }, + { + "word": "alternanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternation;rotation", + "romanization": "alternanza", + "example_sentence_native": "C'è un'alternanza di giorni di sole e pioggia.", + "example_sentence_english": "There is an alternation of sunny and rainy days.", + "pos": "noun", + "word_frequency": 8815 + }, + { + "word": "ammesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admitted;allowed", + "romanization": "ammesso", + "example_sentence_native": "È ammesso solo il personale autorizzato.", + "example_sentence_english": "Only authorized personnel are admitted.", + "pos": "adjective", + "word_frequency": 8816 + }, + { + "word": "annuire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to nod", + "romanization": "annuire", + "example_sentence_native": "Ha annuito in segno di assenso.", + "example_sentence_english": "He nodded in agreement.", + "pos": "verb", + "word_frequency": 8817 + }, + { + "word": "approssimativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximate", + "romanization": "approssimativo", + "example_sentence_native": "Il costo è approssimativo.", + "example_sentence_english": "The cost is approximate.", + "pos": "adverb", + "word_frequency": 8818 + }, + { + "word": "artigianato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "craftsmanship;handicraft", + "romanization": "artigianato", + "example_sentence_native": "L'artigianato locale è molto apprezzato.", + "example_sentence_english": "Local craftsmanship is highly appreciated.", + "pos": "noun", + "word_frequency": 8820 + }, + { + "word": "avanzamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advancement;progress", + "romanization": "avanzamento", + "example_sentence_native": "C'è stato un grande avanzamento nella ricerca.", + "example_sentence_english": "There has been great advancement in research.", + "pos": "noun", + "word_frequency": 8821 + }, + { + "word": "balzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leap;jump", + "romanization": "balzo", + "example_sentence_native": "Ha fatto un balzo in avanti.", + "example_sentence_english": "He made a leap forward.", + "pos": "noun", + "word_frequency": 8822 + }, + { + "word": "banchiere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "banker", + "romanization": "banchiere", + "example_sentence_native": "Il banchiere mi ha consigliato un investimento.", + "example_sentence_english": "The banker advised me on an investment.", + "pos": "noun", + "word_frequency": 8823 + }, + { + "word": "barattolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jar;can", + "romanization": "barattolo", + "example_sentence_native": "Ho un barattolo di marmellata.", + "example_sentence_english": "I have a jar of jam.", + "pos": "noun", + "word_frequency": 8824 + }, + { + "word": "barbecue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barbecue", + "romanization": "barbecue", + "example_sentence_native": "Faremo un barbecue questo fine settimana.", + "example_sentence_english": "We will have a barbecue this weekend.", + "pos": "noun", + "word_frequency": 8825 + }, + { + "word": "boia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executioner", + "romanization": "boia", + "example_sentence_native": "Il boia eseguì la sentenza.", + "example_sentence_english": "The executioner carried out the sentence.", + "pos": "noun", + "word_frequency": 8826 + }, + { + "word": "bordello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brothel;mess", + "romanization": "bordello", + "example_sentence_native": "Che bordello in questa stanza!", + "example_sentence_english": "What a mess in this room!", + "pos": "noun", + "word_frequency": 8827 + }, + { + "word": "bruciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burnt;burned", + "romanization": "bruciato", + "example_sentence_native": "Il pane è bruciato.", + "example_sentence_english": "The bread is burnt.", + "pos": "adjective", + "word_frequency": 8828 + }, + { + "word": "capitalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitalist", + "romanization": "capitalista", + "example_sentence_native": "È un noto capitalista.", + "example_sentence_english": "He is a well-known capitalist.", + "pos": "noun", + "word_frequency": 8830 + }, + { + "word": "cappuccino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cappuccino", + "romanization": "cappuccino", + "example_sentence_native": "Vorrei un cappuccino, per favore.", + "example_sentence_english": "I would like a cappuccino, please.", + "pos": "noun", + "word_frequency": 8831 + }, + { + "word": "chitarrista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guitarist", + "romanization": "chitarrista", + "example_sentence_native": "Il chitarrista ha suonato un assolo incredibile.", + "example_sentence_english": "The guitarist played an incredible solo.", + "pos": "noun", + "word_frequency": 8834 + }, + { + "word": "colossale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colossal", + "romanization": "colossale", + "example_sentence_native": "Hanno costruito una statua colossale.", + "example_sentence_english": "They built a colossal statue.", + "pos": "adjective", + "word_frequency": 8836 + }, + { + "word": "consegnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivered;handed over", + "romanization": "consegnato", + "example_sentence_native": "Il pacco è stato consegnato.", + "example_sentence_english": "The package has been delivered.", + "pos": "adjective", + "word_frequency": 8837 + }, + { + "word": "cosmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmos", + "romanization": "cosmo", + "example_sentence_native": "Il cosmo è vasto e misterioso.", + "example_sentence_english": "The cosmos is vast and mysterious.", + "pos": "noun", + "word_frequency": 8838 + }, + { + "word": "costruttivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constructive", + "romanization": "costruttivo", + "example_sentence_native": "Abbiamo avuto una discussione costruttiva.", + "example_sentence_english": "We had a constructive discussion.", + "pos": "adjective", + "word_frequency": 8839 + }, + { + "word": "covo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lair;den;hideout", + "romanization": "covo", + "example_sentence_native": "La polizia ha scoperto il covo dei criminali.", + "example_sentence_english": "The police discovered the criminals' hideout.", + "pos": "noun", + "word_frequency": 8840 + }, + { + "word": "creditore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creditor", + "romanization": "creditore", + "example_sentence_native": "Il creditore ha chiesto il rimborso del debito.", + "example_sentence_english": "The creditor asked for the repayment of the debt.", + "pos": "noun", + "word_frequency": 8841 + }, + { + "word": "crollato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collapsed;fallen", + "romanization": "crollato", + "example_sentence_native": "Il vecchio edificio è crollato dopo il terremoto.", + "example_sentence_english": "The old building collapsed after the earthquake.", + "pos": "adjective", + "word_frequency": 8842 + }, + { + "word": "diarrea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diarrhea", + "romanization": "diarrea", + "example_sentence_native": "Ha avuto la diarrea per due giorni.", + "example_sentence_english": "He had diarrhea for two days.", + "pos": "noun", + "word_frequency": 8846 + }, + { + "word": "dimettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discharge;to dismiss", + "romanization": "dimettere", + "example_sentence_native": "Il medico ha deciso di dimettere il paziente domani.", + "example_sentence_english": "The doctor decided to discharge the patient tomorrow.", + "pos": "verb", + "word_frequency": 8847 + }, + { + "word": "dispensa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pantry;larder", + "romanization": "dispensa", + "example_sentence_native": "La dispensa è piena di cibo.", + "example_sentence_english": "The pantry is full of food.", + "pos": "noun", + "word_frequency": 8848 + }, + { + "word": "duetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duet", + "romanization": "duetto", + "example_sentence_native": "Hanno cantato un bellissimo duetto.", + "example_sentence_english": "They sang a beautiful duet.", + "pos": "noun", + "word_frequency": 8849 + }, + { + "word": "ecologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecology", + "romanization": "ecologia", + "example_sentence_native": "L'ecologia è una scienza che studia l'ambiente.", + "example_sentence_english": "Ecology is a science that studies the environment.", + "pos": "noun", + "word_frequency": 8850 + }, + { + "word": "erotico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erotic", + "romanization": "erotico", + "example_sentence_native": "Il film conteneva alcune scene erotiche.", + "example_sentence_english": "The film contained some erotic scenes.", + "pos": "adjective", + "word_frequency": 8854 + }, + { + "word": "esaurimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhaustion;depletion;burnout", + "romanization": "esaurimento", + "example_sentence_native": "Ha sofferto di esaurimento nervoso a causa dello stress.", + "example_sentence_english": "He suffered from nervous exhaustion due to stress.", + "pos": "noun", + "word_frequency": 8855 + }, + { + "word": "felpa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweatshirt;hoodie", + "romanization": "felpa", + "example_sentence_native": "Ho comprato una nuova felpa con il cappuccio.", + "example_sentence_english": "I bought a new hoodie.", + "pos": "noun", + "word_frequency": 8857 + }, + { + "word": "fiaba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fairy tale;fable", + "romanization": "fiaba", + "example_sentence_native": "Mia nonna mi leggeva sempre una fiaba prima di dormire.", + "example_sentence_english": "My grandmother always read me a fairy tale before bed.", + "pos": "noun", + "word_frequency": 8858 + }, + { + "word": "gergo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jargon;slang", + "romanization": "gergo", + "example_sentence_native": "È difficile capire il gergo tecnico di quel settore.", + "example_sentence_english": "It's difficult to understand the technical jargon of that sector.", + "pos": "noun", + "word_frequency": 8862 + }, + { + "word": "imparziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impartial;unbiased", + "romanization": "imparziale", + "example_sentence_native": "Un giudice deve essere sempre imparziale.", + "example_sentence_english": "A judge must always be impartial.", + "pos": "adjective", + "word_frequency": 8866 + }, + { + "word": "incontrarsi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to meet (each other)", + "romanization": "incontrarsi", + "example_sentence_native": "Ci incontriamo al bar alle sette?", + "example_sentence_english": "Shall we meet at the bar at seven?", + "pos": "verb", + "word_frequency": 8867 + }, + { + "word": "infernale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infernal;hellish", + "romanization": "infernale", + "example_sentence_native": "Il traffico era infernale questa mattina.", + "example_sentence_english": "The traffic was hellish this morning.", + "pos": "adjective", + "word_frequency": 8868 + }, + { + "word": "inquinante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polluting;pollutant", + "romanization": "inquinante", + "example_sentence_native": "Le emissioni inquinanti danneggiano l'atmosfera.", + "example_sentence_english": "Polluting emissions damage the atmosphere.", + "pos": "adjective", + "word_frequency": 8869 + }, + { + "word": "insicurezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insecurity;uncertainty", + "romanization": "insicurezza", + "example_sentence_native": "La sua insicurezza gli impedisce di prendere decisioni.", + "example_sentence_english": "His insecurity prevents him from making decisions.", + "pos": "noun", + "word_frequency": 8870 + }, + { + "word": "invidiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to envy", + "romanization": "invidiare", + "example_sentence_native": "Non invidio la sua ricchezza, ma la sua felicità.", + "example_sentence_english": "I don't envy his wealth, but his happiness.", + "pos": "verb", + "word_frequency": 8871 + }, + { + "word": "iscriversi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to enroll;to register;to sign up", + "romanization": "iscriversi", + "example_sentence_native": "Voglio iscrivermi a un corso di italiano.", + "example_sentence_english": "I want to enroll in an Italian course.", + "pos": "verb", + "word_frequency": 8872 + }, + { + "word": "legittimazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimization;validation", + "romanization": "legittimazione", + "example_sentence_native": "Il governo cerca una maggiore legittimazione popolare.", + "example_sentence_english": "The government seeks greater popular legitimization.", + "pos": "noun", + "word_frequency": 8874 + }, + { + "word": "litorale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coastline;littoral", + "romanization": "litorale", + "example_sentence_native": "Il litorale italiano è molto vario e bello.", + "example_sentence_english": "The Italian coastline is very varied and beautiful.", + "pos": "noun", + "word_frequency": 8875 + }, + { + "word": "malaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malaria", + "romanization": "malaria", + "example_sentence_native": "La malaria è ancora una malattia grave in molte parti del mondo.", + "example_sentence_english": "Malaria is still a serious disease in many parts of the world.", + "pos": "noun", + "word_frequency": 8878 + }, + { + "word": "manetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handcuff;throttle", + "romanization": "manetta", + "example_sentence_native": "La polizia ha messo le manette al sospettato.", + "example_sentence_english": "The police put handcuffs on the suspect.", + "pos": "noun", + "word_frequency": 8879 + }, + { + "word": "meritevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserving;meritorious", + "romanization": "meritevole", + "example_sentence_native": "È una persona meritevole di fiducia.", + "example_sentence_english": "He is a person deserving of trust.", + "pos": "adjective", + "word_frequency": 8882 + }, + { + "word": "millimetro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "millimeter", + "romanization": "millimetro", + "example_sentence_native": "La vite è lunga dieci millimetri.", + "example_sentence_english": "The screw is ten millimeters long.", + "pos": "noun", + "word_frequency": 8883 + }, + { + "word": "miniatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miniature", + "romanization": "miniatura", + "example_sentence_native": "Ha una collezione di automobili in miniatura.", + "example_sentence_english": "He has a collection of miniature cars.", + "pos": "noun", + "word_frequency": 8884 + }, + { + "word": "naufragio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipwreck", + "romanization": "naufragio", + "example_sentence_native": "Il naufragio della nave è stato una tragedia.", + "example_sentence_english": "The shipwreck of the ship was a tragedy.", + "pos": "noun", + "word_frequency": 8887 + }, + { + "word": "neutralità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neutrality", + "romanization": "neutralità", + "example_sentence_native": "La Svizzera è famosa per la sua neutralità.", + "example_sentence_english": "Switzerland is famous for its neutrality.", + "pos": "noun", + "word_frequency": 8888 + }, + { + "word": "oratorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oratory;oratorio", + "romanization": "oratorio", + "example_sentence_native": "I bambini giocano nell'oratorio della chiesa.", + "example_sentence_english": "The children play in the church's oratory.", + "pos": "noun", + "word_frequency": 8890 + }, + { + "word": "papale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papal", + "romanization": "papale", + "example_sentence_native": "Ha ricevuto la benedizione papale.", + "example_sentence_english": "He received the papal blessing.", + "pos": "adjective", + "word_frequency": 8893 + }, + { + "word": "parabola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parable;parabola", + "romanization": "parabola", + "example_sentence_native": "Gesù raccontava parabole per insegnare.", + "example_sentence_english": "Jesus told parables to teach.", + "pos": "noun", + "word_frequency": 8894 + }, + { + "word": "perizia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expertise;appraisal", + "romanization": "perizia", + "example_sentence_native": "Hanno richiesto una perizia tecnica sull'edificio.", + "example_sentence_english": "They requested a technical appraisal of the building.", + "pos": "noun", + "word_frequency": 8895 + }, + { + "word": "pirateria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piracy", + "romanization": "pirateria", + "example_sentence_native": "La pirateria informatica è un problema serio.", + "example_sentence_english": "Cyber piracy is a serious problem.", + "pos": "noun", + "word_frequency": 8896 + }, + { + "word": "potabile", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drinkable;potable", + "romanization": "potabile", + "example_sentence_native": "L'acqua del rubinetto è potabile.", + "example_sentence_english": "The tap water is drinkable.", + "pos": "adjective", + "word_frequency": 8897 + }, + { + "word": "potassio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potassium", + "romanization": "potassio", + "example_sentence_native": "Le banane sono ricche di potassio.", + "example_sentence_english": "Bananas are rich in potassium.", + "pos": "noun", + "word_frequency": 8898 + }, + { + "word": "potenziamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enhancement;strengthening", + "romanization": "potenziamento", + "example_sentence_native": "Il potenziamento delle infrastrutture è essenziale.", + "example_sentence_english": "The strengthening of infrastructure is essential.", + "pos": "noun", + "word_frequency": 8899 + }, + { + "word": "predecessore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predecessor", + "romanization": "predecessore", + "example_sentence_native": "Il nuovo presidente ha elogiato il suo predecessore.", + "example_sentence_english": "The new president praised his predecessor.", + "pos": "noun", + "word_frequency": 8900 + }, + { + "word": "prevalere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prevail;to predominate", + "romanization": "prevalere", + "example_sentence_native": "La giustizia deve prevalere.", + "example_sentence_english": "Justice must prevail.", + "pos": "verb", + "word_frequency": 8901 + }, + { + "word": "programmare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to program;to schedule;to plan", + "romanization": "programmare", + "example_sentence_native": "Devo programmare la riunione per domani.", + "example_sentence_english": "I need to schedule the meeting for tomorrow.", + "pos": "verb", + "word_frequency": 8902 + }, + { + "word": "proverbio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proverb", + "romanization": "proverbio", + "example_sentence_native": "C'è un vecchio proverbio che dice...", + "example_sentence_english": "There's an old proverb that says...", + "pos": "noun", + "word_frequency": 8903 + }, + { + "word": "recinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence;enclosure", + "romanization": "recinto", + "example_sentence_native": "Il cane è nel recinto.", + "example_sentence_english": "The dog is in the enclosure.", + "pos": "noun", + "word_frequency": 8904 + }, + { + "word": "reggiseno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bra;brassiere", + "romanization": "reggiseno", + "example_sentence_native": "Ha comprato un nuovo reggiseno.", + "example_sentence_english": "She bought a new bra.", + "pos": "noun", + "word_frequency": 8906 + }, + { + "word": "regnare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reign;to rule", + "romanization": "regnare", + "example_sentence_native": "Il re ha regnato per molti anni.", + "example_sentence_english": "The king reigned for many years.", + "pos": "verb", + "word_frequency": 8907 + }, + { + "word": "regolazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulation;adjustment", + "romanization": "regolazione", + "example_sentence_native": "La regolazione della temperatura è automatica.", + "example_sentence_english": "The temperature adjustment is automatic.", + "pos": "noun", + "word_frequency": 8908 + }, + { + "word": "reliquia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relic", + "romanization": "reliquia", + "example_sentence_native": "La chiesa custodisce antiche reliquie.", + "example_sentence_english": "The church preserves ancient relics.", + "pos": "noun", + "word_frequency": 8909 + }, + { + "word": "respirazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respiration;breathing", + "romanization": "respirazione", + "example_sentence_native": "La respirazione è un processo vitale.", + "example_sentence_english": "Breathing is a vital process.", + "pos": "noun", + "word_frequency": 8910 + }, + { + "word": "ricercato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sought-after;wanted (by police)", + "romanization": "ricercato", + "example_sentence_native": "È un criminale ricercato dalla polizia.", + "example_sentence_english": "He is a criminal wanted by the police.", + "pos": "adjective", + "word_frequency": 8911 + }, + { + "word": "rilassante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relaxing", + "romanization": "rilassante", + "example_sentence_native": "Fare un bagno caldo è molto rilassante.", + "example_sentence_english": "Taking a hot bath is very relaxing.", + "pos": "adjective", + "word_frequency": 8912 + }, + { + "word": "ristabilire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-establish;to restore", + "romanization": "ristabilire", + "example_sentence_native": "Dobbiamo ristabilire l'ordine.", + "example_sentence_english": "We must re-establish order.", + "pos": "verb", + "word_frequency": 8913 + }, + { + "word": "rivestimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coating;lining;covering", + "romanization": "rivestimento", + "example_sentence_native": "Il rivestimento del pavimento è in legno.", + "example_sentence_english": "The floor covering is made of wood.", + "pos": "noun", + "word_frequency": 8914 + }, + { + "word": "rovescio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reverse;backhand;downpour", + "romanization": "rovescio", + "example_sentence_native": "Ha colpito la palla di rovescio.", + "example_sentence_english": "He hit the ball with a backhand.", + "pos": "noun", + "word_frequency": 8917 + }, + { + "word": "salma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corpse;remains", + "romanization": "salma", + "example_sentence_native": "La salma è stata trasportata all'obitorio.", + "example_sentence_english": "The corpse was transported to the morgue.", + "pos": "noun", + "word_frequency": 8919 + }, + { + "word": "schifoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusting", + "romanization": "schifoso", + "example_sentence_native": "Quel cibo ha un odore schifoso.", + "example_sentence_english": "That food has a disgusting smell.", + "pos": "adjective", + "word_frequency": 8921 + }, + { + "word": "scientificamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scientifically", + "romanization": "scientificamente", + "example_sentence_native": "La teoria è stata provata scientificamente.", + "example_sentence_english": "The theory has been scientifically proven.", + "pos": "adverb", + "word_frequency": 8922 + }, + { + "word": "shampoo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shampoo", + "romanization": "shampoo", + "example_sentence_native": "Ho bisogno di comprare un nuovo shampoo.", + "example_sentence_english": "I need to buy a new shampoo.", + "pos": "noun", + "word_frequency": 8923 + }, + { + "word": "sintetico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synthetic", + "romanization": "sintetico", + "example_sentence_native": "Preferisco tessuti naturali a quelli sintetici.", + "example_sentence_english": "I prefer natural fabrics to synthetic ones.", + "pos": "adjective", + "word_frequency": 8924 + }, + { + "word": "situare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to situate;to locate", + "romanization": "situare", + "example_sentence_native": "Dobbiamo situare il nuovo ufficio in centro.", + "example_sentence_english": "We need to situate the new office downtown.", + "pos": "verb", + "word_frequency": 8925 + }, + { + "word": "soggettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjective", + "romanization": "soggettivo", + "example_sentence_native": "La bellezza è una questione soggettiva.", + "example_sentence_english": "Beauty is a subjective matter.", + "pos": "adjective", + "word_frequency": 8927 + }, + { + "word": "specificatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifically", + "romanization": "specificatamente", + "example_sentence_native": "Ha specificatamente richiesto quel modello.", + "example_sentence_english": "He specifically requested that model.", + "pos": "adverb", + "word_frequency": 8930 + }, + { + "word": "spread", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spread (financial term)", + "romanization": "spread", + "example_sentence_native": "Lo spread tra i titoli di stato è aumentato.", + "example_sentence_english": "The spread between government bonds has increased.", + "pos": "noun", + "word_frequency": 8931 + }, + { + "word": "stampante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "printer", + "romanization": "stampante", + "example_sentence_native": "La stampante non funziona.", + "example_sentence_english": "The printer is not working.", + "pos": "noun", + "word_frequency": 8932 + }, + { + "word": "supremazia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supremacy", + "romanization": "supremazia", + "example_sentence_native": "La squadra ha dimostrato la sua supremazia in campo.", + "example_sentence_english": "The team demonstrated its supremacy on the field.", + "pos": "noun", + "word_frequency": 8933 + }, + { + "word": "svilupparsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to develop (oneself);to grow", + "romanization": "svilupparsi", + "example_sentence_native": "La città si sta sviluppando rapidamente.", + "example_sentence_english": "The city is developing rapidly.", + "pos": "verb", + "word_frequency": 8934 + }, + { + "word": "teoricamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theoretically", + "romanization": "teoricamente", + "example_sentence_native": "Teoricamente, è possibile finire il lavoro oggi.", + "example_sentence_english": "Theoretically, it's possible to finish the work today.", + "pos": "adverb", + "word_frequency": 8935 + }, + { + "word": "timone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudder;helm", + "romanization": "timone", + "example_sentence_native": "Il capitano teneva saldamente il timone.", + "example_sentence_english": "The captain held the helm firmly.", + "pos": "noun", + "word_frequency": 8936 + }, + { + "word": "torace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chest;thorax", + "romanization": "torace", + "example_sentence_native": "Ha sentito un dolore al torace.", + "example_sentence_english": "He felt a pain in his chest.", + "pos": "noun", + "word_frequency": 8938 + }, + { + "word": "trascinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drag;to pull along", + "romanization": "trascinare", + "example_sentence_native": "Ha dovuto trascinare la valigia pesante.", + "example_sentence_english": "He had to drag the heavy suitcase.", + "pos": "verb", + "word_frequency": 8939 + }, + { + "word": "trattarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be about;to concern", + "romanization": "trattarsi", + "example_sentence_native": "Si tratta di un problema serio.", + "example_sentence_english": "It's about a serious problem.", + "pos": "verb", + "word_frequency": 8940 + }, + { + "word": "udito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hearing (sense)", + "romanization": "udito", + "example_sentence_native": "L'udito è uno dei cinque sensi.", + "example_sentence_english": "Hearing is one of the five senses.", + "pos": "noun", + "word_frequency": 8941 + }, + { + "word": "ventesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twentieth", + "romanization": "ventesimo", + "example_sentence_native": "È arrivato ventesimo nella gara.", + "example_sentence_english": "He finished twentieth in the race.", + "pos": "adjective", + "word_frequency": 8943 + }, + { + "word": "veterano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veteran", + "romanization": "veterano", + "example_sentence_native": "Mio nonno è un veterano di guerra.", + "example_sentence_english": "My grandfather is a war veteran.", + "pos": "noun", + "word_frequency": 8944 + }, + { + "word": "vibrazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vibration", + "romanization": "vibrazione", + "example_sentence_native": "Ho sentito una forte vibrazione nel pavimento.", + "example_sentence_english": "I felt a strong vibration in the floor.", + "pos": "noun", + "word_frequency": 8945 + }, + { + "word": "vigna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vineyard", + "romanization": "vigna", + "example_sentence_native": "La Toscana è famosa per le sue vigne.", + "example_sentence_english": "Tuscany is famous for its vineyards.", + "pos": "noun", + "word_frequency": 8946 + }, + { + "word": "abbinamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matching;combination", + "romanization": "abbinamento", + "example_sentence_native": "L'abbinamento di colori è perfetto.", + "example_sentence_english": "The color combination is perfect.", + "pos": "noun", + "word_frequency": 8952 + }, + { + "word": "acustico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acoustic", + "romanization": "acustico", + "example_sentence_native": "La chitarra acustica ha un suono caldo.", + "example_sentence_english": "The acoustic guitar has a warm sound.", + "pos": "adjective", + "word_frequency": 8953 + }, + { + "word": "adiacente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adjacent", + "romanization": "adiacente", + "example_sentence_native": "La stanza adiacente è occupata.", + "example_sentence_english": "The adjacent room is occupied.", + "pos": "adjective", + "word_frequency": 8954 + }, + { + "word": "alleviare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to alleviate;to relieve", + "romanization": "alleviare", + "example_sentence_native": "Questo farmaco può alleviare il dolore.", + "example_sentence_english": "This medicine can alleviate the pain.", + "pos": "verb", + "word_frequency": 8956 + }, + { + "word": "antichità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiquity;ancient times", + "romanization": "antichità", + "example_sentence_native": "Roma è ricca di reperti dell'antichità.", + "example_sentence_english": "Rome is rich in artifacts from antiquity.", + "pos": "noun", + "word_frequency": 8957 + }, + { + "word": "aprirsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to open (oneself);to open up", + "romanization": "aprirsi", + "example_sentence_native": "La porta si è aperta da sola.", + "example_sentence_english": "The door opened by itself.", + "pos": "verb", + "word_frequency": 8958 + }, + { + "word": "audizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audition;hearing", + "romanization": "audizione", + "example_sentence_native": "Ha superato l'audizione per il ruolo.", + "example_sentence_english": "She passed the audition for the role.", + "pos": "noun", + "word_frequency": 8959 + }, + { + "word": "bacchetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stick;wand", + "romanization": "bacchetta", + "example_sentence_native": "La fata agitò la sua bacchetta magica.", + "example_sentence_english": "The fairy waved her magic wand.", + "pos": "noun", + "word_frequency": 8960 + }, + { + "word": "balia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wet nurse", + "romanization": "balia", + "example_sentence_native": "Nel passato, molte famiglie assumevano una balia per i loro figli.", + "example_sentence_english": "In the past, many families hired a wet nurse for their children.", + "pos": "noun", + "word_frequency": 8961 + }, + { + "word": "barcone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large boat;barge", + "romanization": "barcone", + "example_sentence_native": "Il barcone era pieno di persone in cerca di una nuova vita.", + "example_sentence_english": "The large boat was full of people looking for a new life.", + "pos": "noun", + "word_frequency": 8962 + }, + { + "word": "barzelletta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "joke", + "romanization": "barzelletta", + "example_sentence_native": "Mi ha raccontato una barzelletta divertente.", + "example_sentence_english": "He told me a funny joke.", + "pos": "noun", + "word_frequency": 8963 + }, + { + "word": "bridge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bridge (card game;dental)", + "romanization": "bridge", + "example_sentence_native": "Giocano a bridge ogni martedì sera.", + "example_sentence_english": "They play bridge every Tuesday evening.", + "pos": "noun", + "word_frequency": 8964 + }, + { + "word": "caldaia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boiler;furnace", + "romanization": "caldaia", + "example_sentence_native": "Dobbiamo far controllare la caldaia prima dell'inverno.", + "example_sentence_english": "We need to have the boiler checked before winter.", + "pos": "noun", + "word_frequency": 8966 + }, + { + "word": "cartaceo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paper (adj.);in paper form", + "romanization": "cartaceo", + "example_sentence_native": "Preferisco leggere libri in formato cartaceo.", + "example_sentence_english": "I prefer to read books in paper format.", + "pos": "adjective", + "word_frequency": 8968 + }, + { + "word": "cautelare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to protect;to safeguard;to take precautionary measures", + "romanization": "cautelare", + "example_sentence_native": "È importante cautelare i propri interessi.", + "example_sentence_english": "It's important to protect one's interests.", + "pos": "verb", + "word_frequency": 8969 + }, + { + "word": "coetaneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of the same age;peer", + "romanization": "coetaneo", + "example_sentence_native": "I suoi amici coetanei lo hanno invitato alla festa.", + "example_sentence_english": "His friends of the same age invited him to the party.", + "pos": "adjective", + "word_frequency": 8970 + }, + { + "word": "colpevolezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guilt;culpability", + "romanization": "colpevolezza", + "example_sentence_native": "La giuria ha stabilito la sua colpevolezza.", + "example_sentence_english": "The jury established his guilt.", + "pos": "noun", + "word_frequency": 8971 + }, + { + "word": "complementare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complementary", + "romanization": "complementare", + "example_sentence_native": "Le due teorie sono complementari.", + "example_sentence_english": "The two theories are complementary.", + "pos": "adjective", + "word_frequency": 8972 + }, + { + "word": "condizionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conditional", + "romanization": "condizionale", + "example_sentence_native": "Il modo condizionale si usa per esprimere un'azione possibile.", + "example_sentence_english": "The conditional mood is used to express a possible action.", + "pos": "adjective", + "word_frequency": 8973 + }, + { + "word": "corteccia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bark (of a tree);cortex", + "romanization": "corteccia", + "example_sentence_native": "La corteccia dell'albero era ruvida al tatto.", + "example_sentence_english": "The tree's bark was rough to the touch.", + "pos": "noun", + "word_frequency": 8975 + }, + { + "word": "credit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "credit", + "romanization": "credit", + "example_sentence_native": "Ho bisogno di un buon credit score per ottenere il mutuo.", + "example_sentence_english": "I need a good credit score to get the mortgage.", + "pos": "noun", + "word_frequency": 8976 + }, + { + "word": "cronista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reporter;chronicler", + "romanization": "cronista", + "example_sentence_native": "Il cronista ha scritto un articolo dettagliato sull'evento.", + "example_sentence_english": "The reporter wrote a detailed article about the event.", + "pos": "noun", + "word_frequency": 8977 + }, + { + "word": "curia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "curia (Roman Catholic Church administration)", + "romanization": "curia", + "example_sentence_native": "La Curia Romana è l'organo amministrativo della Santa Sede.", + "example_sentence_english": "The Roman Curia is the administrative body of the Holy See.", + "pos": "noun", + "word_frequency": 8978 + }, + { + "word": "dettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dictate", + "romanization": "dettare", + "example_sentence_native": "Il professore ha iniziato a dettare gli appunti.", + "example_sentence_english": "The professor started to dictate the notes.", + "pos": "verb", + "word_frequency": 8981 + }, + { + "word": "diciannove", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "nineteen", + "romanization": "diciannove", + "example_sentence_native": "Ho diciannove anni.", + "example_sentence_english": "I am nineteen years old.", + "pos": "adjective", + "word_frequency": 8982 + }, + { + "word": "diffondersi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spread;to diffuse", + "romanization": "diffondersi", + "example_sentence_native": "La notizia si è diffusa rapidamente.", + "example_sentence_english": "The news spread quickly.", + "pos": "verb", + "word_frequency": 8983 + }, + { + "word": "disturbare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to disturb;to bother", + "romanization": "disturbare", + "example_sentence_native": "Non voglio disturbarti mentre lavori.", + "example_sentence_english": "I don't want to disturb you while you work.", + "pos": "verb", + "word_frequency": 8984 + }, + { + "word": "edilizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building (adj.);construction (adj.)", + "romanization": "edilizio", + "example_sentence_native": "Il settore edilizio è in crescita.", + "example_sentence_english": "The construction sector is growing.", + "pos": "adjective", + "word_frequency": 8985 + }, + { + "word": "escursione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excursion;hike", + "romanization": "escursione", + "example_sentence_native": "Abbiamo fatto un'escursione in montagna.", + "example_sentence_english": "We went on a mountain hike.", + "pos": "noun", + "word_frequency": 8986 + }, + { + "word": "espandere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expand;to broaden", + "romanization": "espandere", + "example_sentence_native": "L'azienda intende espandere le sue attività all'estero.", + "example_sentence_english": "The company intends to expand its activities abroad.", + "pos": "verb", + "word_frequency": 8987 + }, + { + "word": "evadere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evade;to escape", + "romanization": "evadere", + "example_sentence_native": "Ha tentato di evadere le tasse.", + "example_sentence_english": "He tried to evade taxes.", + "pos": "verb", + "word_frequency": 8988 + }, + { + "word": "faraone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pharaoh", + "romanization": "faraone", + "example_sentence_native": "Il faraone governava l'antico Egitto.", + "example_sentence_english": "The pharaoh ruled ancient Egypt.", + "pos": "noun", + "word_frequency": 8990 + }, + { + "word": "ferire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wound;to injure", + "romanization": "ferire", + "example_sentence_native": "Non volevo ferire i tuoi sentimenti.", + "example_sentence_english": "I didn't want to hurt your feelings.", + "pos": "verb", + "word_frequency": 8991 + }, + { + "word": "formica", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ant", + "romanization": "formica", + "example_sentence_native": "Una formica stava camminando sul tavolo.", + "example_sentence_english": "An ant was walking on the table.", + "pos": "noun", + "word_frequency": 8992 + }, + { + "word": "formidabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formidable;amazing", + "romanization": "formidabile", + "example_sentence_native": "Ha fatto un lavoro formidabile.", + "example_sentence_english": "He did an amazing job.", + "pos": "adjective", + "word_frequency": 8993 + }, + { + "word": "formulare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formulate;to phrase", + "romanization": "formulare", + "example_sentence_native": "Dobbiamo formulare una strategia chiara.", + "example_sentence_english": "We need to formulate a clear strategy.", + "pos": "verb", + "word_frequency": 8994 + }, + { + "word": "forzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to force;to compel", + "romanization": "forzare", + "example_sentence_native": "Non puoi forzare qualcuno a fare qualcosa.", + "example_sentence_english": "You can't force someone to do something.", + "pos": "verb", + "word_frequency": 8995 + }, + { + "word": "gelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frost;freeze", + "romanization": "gelo", + "example_sentence_native": "Il gelo ha danneggiato le colture.", + "example_sentence_english": "The frost damaged the crops.", + "pos": "noun", + "word_frequency": 8996 + }, + { + "word": "giornalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daily;every day", + "romanization": "giornalmente", + "example_sentence_native": "Si allena giornalmente per mantenersi in forma.", + "example_sentence_english": "He trains daily to stay in shape.", + "pos": "adverb", + "word_frequency": 8997 + }, + { + "word": "glutine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gluten", + "romanization": "glutine", + "example_sentence_native": "Molte persone evitano il glutine per motivi di salute.", + "example_sentence_english": "Many people avoid gluten for health reasons.", + "pos": "noun", + "word_frequency": 8998 + }, + { + "word": "gradevole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasant;agreeable", + "romanization": "gradevole", + "example_sentence_native": "La musica era molto gradevole.", + "example_sentence_english": "The music was very pleasant.", + "pos": "adjective", + "word_frequency": 8999 + }, + { + "word": "gradimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approval;liking", + "romanization": "gradimento", + "example_sentence_native": "Il film ha ricevuto un buon gradimento dal pubblico.", + "example_sentence_english": "The film received good approval from the audience.", + "pos": "noun", + "word_frequency": 9000 + }, + { + "word": "hockey", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hockey", + "romanization": "hockey", + "example_sentence_native": "Giocano a hockey su ghiaccio ogni inverno.", + "example_sentence_english": "They play ice hockey every winter.", + "pos": "noun", + "word_frequency": 9004 + }, + { + "word": "immerso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immersed;submerged", + "romanization": "immerso", + "example_sentence_native": "Era completamente immerso nella lettura del libro.", + "example_sentence_english": "He was completely immersed in reading the book.", + "pos": "adjective", + "word_frequency": 9006 + }, + { + "word": "impotenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impotence;powerlessness", + "romanization": "impotenza", + "example_sentence_native": "Sentiva un senso di impotenza di fronte alla situazione.", + "example_sentence_english": "He felt a sense of powerlessness in the face of the situation.", + "pos": "noun", + "word_frequency": 9007 + }, + { + "word": "incanto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enchantment;charm;auction", + "romanization": "incanto", + "example_sentence_native": "Il paesaggio era di un incanto indescrivibile.", + "example_sentence_english": "The landscape was of an indescribable enchantment.", + "pos": "noun", + "word_frequency": 9008 + }, + { + "word": "incoraggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to encourage", + "romanization": "incoraggiare", + "example_sentence_native": "Dobbiamo incoraggiare i giovani a leggere di più.", + "example_sentence_english": "We must encourage young people to read more.", + "pos": "verb", + "word_frequency": 9009 + }, + { + "word": "innegabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undeniable", + "romanization": "innegabile", + "example_sentence_native": "La sua bravura è innegabile.", + "example_sentence_english": "His skill is undeniable.", + "pos": "adjective", + "word_frequency": 9010 + }, + { + "word": "integralmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirely;fully", + "romanization": "integralmente", + "example_sentence_native": "Il documento deve essere letto integralmente.", + "example_sentence_english": "The document must be read entirely.", + "pos": "adverb", + "word_frequency": 9011 + }, + { + "word": "interlocutore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interlocutor;speaker", + "romanization": "interlocutore", + "example_sentence_native": "Ha bisogno di un interlocutore per discutere l'argomento.", + "example_sentence_english": "He needs an interlocutor to discuss the topic.", + "pos": "noun", + "word_frequency": 9012 + }, + { + "word": "licenziato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dismissed person;laid-off worker", + "romanization": "licenziato", + "example_sentence_native": "Il licenziato ha cercato subito un nuovo lavoro.", + "example_sentence_english": "The laid-off worker immediately looked for a new job.", + "pos": "noun", + "word_frequency": 9017 + }, + { + "word": "lobo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lobe", + "romanization": "lobo", + "example_sentence_native": "Il lobo dell'orecchio è una parte morbida.", + "example_sentence_english": "The earlobe is a soft part.", + "pos": "noun", + "word_frequency": 9018 + }, + { + "word": "maglione", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sweater;jumper", + "romanization": "maglione", + "example_sentence_native": "Ho comprato un nuovo maglione di lana.", + "example_sentence_english": "I bought a new wool sweater.", + "pos": "noun", + "word_frequency": 9020 + }, + { + "word": "mancante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "missing;lacking", + "romanization": "mancante", + "example_sentence_native": "C'è un pezzo mancante nel puzzle.", + "example_sentence_english": "There's a missing piece in the puzzle.", + "pos": "adjective", + "word_frequency": 9021 + }, + { + "word": "mantenersi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maintain oneself;to keep oneself", + "romanization": "mantenersi", + "example_sentence_native": "È importante mantenersi in forma.", + "example_sentence_english": "It's important to keep oneself in shape.", + "pos": "verb", + "word_frequency": 9022 + }, + { + "word": "materasso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mattress", + "romanization": "materasso", + "example_sentence_native": "Ho bisogno di un nuovo materasso per il letto.", + "example_sentence_english": "I need a new mattress for the bed.", + "pos": "noun", + "word_frequency": 9024 + }, + { + "word": "mediatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mediator", + "romanization": "mediatore", + "example_sentence_native": "Il mediatore ha aiutato a risolvere la disputa.", + "example_sentence_english": "The mediator helped resolve the dispute.", + "pos": "noun", + "word_frequency": 9026 + }, + { + "word": "memorabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorable", + "romanization": "memorabile", + "example_sentence_native": "È stata una serata davvero memorabile.", + "example_sentence_english": "It was a truly memorable evening.", + "pos": "adjective", + "word_frequency": 9027 + }, + { + "word": "merenda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack;afternoon snack", + "romanization": "merenda", + "example_sentence_native": "I bambini fanno merenda dopo la scuola.", + "example_sentence_english": "The children have a snack after school.", + "pos": "noun", + "word_frequency": 9028 + }, + { + "word": "narrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrative", + "romanization": "narrativo", + "example_sentence_native": "Il suo stile narrativo è molto coinvolgente.", + "example_sentence_english": "His narrative style is very engaging.", + "pos": "adjective", + "word_frequency": 9030 + }, + { + "word": "norvegese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Norwegian", + "romanization": "norvegese", + "example_sentence_native": "Ha imparato la lingua norvegese.", + "example_sentence_english": "He learned the Norwegian language.", + "pos": "adjective", + "word_frequency": 9031 + }, + { + "word": "notoriamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notoriously;famously", + "romanization": "notoriamente", + "example_sentence_native": "È notoriamente difficile trovare parcheggio in centro.", + "example_sentence_english": "It's notoriously difficult to find parking downtown.", + "pos": "adverb", + "word_frequency": 9032 + }, + { + "word": "organizzativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "organizational", + "romanization": "organizzativo", + "example_sentence_native": "Ha ottime capacità organizzative.", + "example_sentence_english": "He has excellent organizational skills.", + "pos": "adjective", + "word_frequency": 9033 + }, + { + "word": "orrendo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horrendous;awful", + "romanization": "orrendo", + "example_sentence_native": "Il tempo era orrendo ieri.", + "example_sentence_english": "The weather was horrendous yesterday.", + "pos": "adjective", + "word_frequency": 9034 + }, + { + "word": "parrucchiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairdresser", + "romanization": "parrucchiere", + "example_sentence_native": "Devo andare dal parrucchiere domani.", + "example_sentence_english": "I need to go to the hairdresser tomorrow.", + "pos": "noun", + "word_frequency": 9036 + }, + { + "word": "pedofilia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedophilia", + "romanization": "pedofilia", + "example_sentence_native": "La pedofilia è un crimine orribile.", + "example_sentence_english": "Pedophilia is a horrible crime.", + "pos": "noun", + "word_frequency": 9038 + }, + { + "word": "pericolosità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dangerousness;hazard", + "romanization": "pericolosità", + "example_sentence_native": "La pericolosità di quella strada è nota.", + "example_sentence_english": "The dangerousness of that road is known.", + "pos": "noun", + "word_frequency": 9039 + }, + { + "word": "populismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "populism", + "romanization": "populismo", + "example_sentence_native": "Il populismo è un fenomeno politico complesso.", + "example_sentence_english": "Populism is a complex political phenomenon.", + "pos": "noun", + "word_frequency": 9043 + }, + { + "word": "posizionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to position;to place", + "romanization": "posizionare", + "example_sentence_native": "Devi posizionare il vaso al centro del tavolo.", + "example_sentence_english": "You need to position the vase in the center of the table.", + "pos": "verb", + "word_frequency": 9045 + }, + { + "word": "predica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sermon;lecture;scolding", + "romanization": "predica", + "example_sentence_native": "Il prete ha tenuto una lunga predica.", + "example_sentence_english": "The priest gave a long sermon.", + "pos": "noun", + "word_frequency": 9046 + }, + { + "word": "programmatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "programmer", + "romanization": "programmatore", + "example_sentence_native": "Mio fratello è un bravo programmatore di software.", + "example_sentence_english": "My brother is a good software programmer.", + "pos": "noun", + "word_frequency": 9047 + }, + { + "word": "promo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promo;promotion", + "romanization": "promo", + "example_sentence_native": "C'è una promo speciale per i nuovi clienti.", + "example_sentence_english": "There's a special promo for new customers.", + "pos": "noun", + "word_frequency": 9048 + }, + { + "word": "provento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proceeds;revenue;income", + "romanization": "provento", + "example_sentence_native": "I proventi della vendita saranno devoluti in beneficenza.", + "example_sentence_english": "The proceeds from the sale will be donated to charity.", + "pos": "noun", + "word_frequency": 9049 + }, + { + "word": "rapidità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rapidity;speed;quickness", + "romanization": "rapidità", + "example_sentence_native": "Ha risposto con grande rapidità.", + "example_sentence_english": "He responded with great rapidity.", + "pos": "noun", + "word_frequency": 9050 + }, + { + "word": "realistico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "realistic", + "romanization": "realistico", + "example_sentence_native": "Dobbiamo essere realistici riguardo alle nostre aspettative.", + "example_sentence_english": "We need to be realistic about our expectations.", + "pos": "adjective", + "word_frequency": 9051 + }, + { + "word": "reattore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reactor", + "romanization": "reattore", + "example_sentence_native": "Il reattore nucleare è stato spento per manutenzione.", + "example_sentence_english": "The nuclear reactor was shut down for maintenance.", + "pos": "noun", + "word_frequency": 9052 + }, + { + "word": "ricordarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to remember", + "romanization": "ricordarsi", + "example_sentence_native": "Non riesco a ricordarmi dove ho messo le chiavi.", + "example_sentence_english": "I can't remember where I put the keys.", + "pos": "verb", + "word_frequency": 9054 + }, + { + "word": "riqualificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redevelopment;requalification;retraining", + "romanization": "riqualificazione", + "example_sentence_native": "Il progetto prevede la riqualificazione dell'intera area urbana.", + "example_sentence_english": "The project involves the redevelopment of the entire urban area.", + "pos": "noun", + "word_frequency": 9055 + }, + { + "word": "risentimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentment", + "romanization": "risentimento", + "example_sentence_native": "C'era un profondo risentimento tra i due fratelli.", + "example_sentence_english": "There was deep resentment between the two brothers.", + "pos": "noun", + "word_frequency": 9056 + }, + { + "word": "rivelarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reveal oneself;to turn out to be", + "romanization": "rivelarsi", + "example_sentence_native": "La situazione si è rivelata più complicata del previsto.", + "example_sentence_english": "The situation turned out to be more complicated than expected.", + "pos": "verb", + "word_frequency": 9057 + }, + { + "word": "rivestire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cover;to coat;to hold (a position)", + "romanization": "rivestire", + "example_sentence_native": "Ha rivestito un ruolo importante nell'azienda.", + "example_sentence_english": "He held an important role in the company.", + "pos": "verb", + "word_frequency": 9058 + }, + { + "word": "salato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salty;expensive (informal)", + "romanization": "salato", + "example_sentence_native": "Questo piatto è troppo salato per i miei gusti.", + "example_sentence_english": "This dish is too salty for my taste.", + "pos": "adjective", + "word_frequency": 9061 + }, + { + "word": "scheletro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skeleton", + "romanization": "scheletro", + "example_sentence_native": "Lo scheletro umano è composto da 206 ossa.", + "example_sentence_english": "The human skeleton is composed of 206 bones.", + "pos": "noun", + "word_frequency": 9063 + }, + { + "word": "scivolare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to slip;to slide", + "romanization": "scivolare", + "example_sentence_native": "Ho quasi scivolato sul ghiaccio.", + "example_sentence_english": "I almost slipped on the ice.", + "pos": "verb", + "word_frequency": 9064 + }, + { + "word": "semaforo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "traffic light", + "romanization": "semaforo", + "example_sentence_native": "Il semaforo è rosso, dobbiamo fermarci.", + "example_sentence_english": "The traffic light is red, we must stop.", + "pos": "noun", + "word_frequency": 9065 + }, + { + "word": "spaventoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frightening;terrifying;dreadful", + "romanization": "spaventoso", + "example_sentence_native": "Il film era davvero spaventoso.", + "example_sentence_english": "The movie was really frightening.", + "pos": "adjective", + "word_frequency": 9069 + }, + { + "word": "tangenziale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring road;bypass", + "romanization": "tangenziale", + "example_sentence_native": "Prendiamo la tangenziale per evitare il traffico del centro.", + "example_sentence_english": "Let's take the ring road to avoid city center traffic.", + "pos": "noun", + "word_frequency": 9073 + }, + { + "word": "tata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nanny;babysitter", + "romanization": "tata", + "example_sentence_native": "La tata si prende cura dei bambini.", + "example_sentence_english": "The nanny takes care of the children.", + "pos": "noun", + "word_frequency": 9074 + }, + { + "word": "telefonino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "mobile phone;cell phone", + "romanization": "telefonino", + "example_sentence_native": "Ho dimenticato il mio telefonino a casa.", + "example_sentence_english": "I forgot my mobile phone at home.", + "pos": "noun", + "word_frequency": 9076 + }, + { + "word": "terapeutico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "therapeutic", + "romanization": "terapeutico", + "example_sentence_native": "Il massaggio ha avuto un effetto molto terapeutico.", + "example_sentence_english": "The massage had a very therapeutic effect.", + "pos": "adjective", + "word_frequency": 9077 + }, + { + "word": "terrazzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "terrace;balcony", + "romanization": "terrazzo", + "example_sentence_native": "Ci piace fare colazione sul terrazzo.", + "example_sentence_english": "We like to have breakfast on the terrace.", + "pos": "noun", + "word_frequency": 9078 + }, + { + "word": "tipografia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "printing house;typography", + "romanization": "tipografia", + "example_sentence_native": "Ho portato i volantini in tipografia per la stampa.", + "example_sentence_english": "I took the flyers to the printing house for printing.", + "pos": "noun", + "word_frequency": 9079 + }, + { + "word": "vision", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vision", + "romanization": "vision", + "example_sentence_native": "La sua visione del futuro è molto ottimistica.", + "example_sentence_english": "His vision of the future is very optimistic.", + "pos": "noun", + "word_frequency": 9081 + }, + { + "word": "vissuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "experienced", + "romanization": "vissuto", + "example_sentence_native": "Ha un'espressione vissuta sul volto.", + "example_sentence_english": "He has an experienced expression on his face.", + "pos": "adjective", + "word_frequency": 9082 + }, + { + "word": "vitamina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vitamin", + "romanization": "vitamina", + "example_sentence_native": "Le arance sono ricche di vitamina C.", + "example_sentence_english": "Oranges are rich in vitamin C.", + "pos": "noun", + "word_frequency": 9083 + }, + { + "word": "volantino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flyer", + "romanization": "volantino", + "example_sentence_native": "Ho preso un volantino con le offerte del supermercato.", + "example_sentence_english": "I took a flyer with the supermarket offers.", + "pos": "noun", + "word_frequency": 9084 + }, + { + "word": "abbondantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abundantly", + "romanization": "abbondantemente", + "example_sentence_native": "Ha piovuto abbondantemente tutta la notte.", + "example_sentence_english": "It rained abundantly all night.", + "pos": "adverb", + "word_frequency": 9089 + }, + { + "word": "accenno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hint", + "romanization": "accenno", + "example_sentence_native": "Ha fatto solo un breve accenno al problema.", + "example_sentence_english": "He only made a brief hint about the problem.", + "pos": "noun", + "word_frequency": 9090 + }, + { + "word": "alone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "halo", + "romanization": "alone", + "example_sentence_native": "C'era un alone di luce intorno alla luna.", + "example_sentence_english": "There was a halo of light around the moon.", + "pos": "noun", + "word_frequency": 9091 + }, + { + "word": "analista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "analyst", + "romanization": "analista", + "example_sentence_native": "L'analista finanziario ha previsto una crescita.", + "example_sentence_english": "The financial analyst predicted growth.", + "pos": "noun", + "word_frequency": 9092 + }, + { + "word": "annata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vintage", + "romanization": "annata", + "example_sentence_native": "Questa è stata un'ottima annata per il vino.", + "example_sentence_english": "This was an excellent vintage for wine.", + "pos": "noun", + "word_frequency": 9093 + }, + { + "word": "apocalisse", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apocalypse", + "romanization": "apocalisse", + "example_sentence_native": "Molti film parlano di un'apocalisse zombie.", + "example_sentence_english": "Many films talk about a zombie apocalypse.", + "pos": "noun", + "word_frequency": 9094 + }, + { + "word": "arricchire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enrich", + "romanization": "arricchire", + "example_sentence_native": "Viaggiare può arricchire la tua mente.", + "example_sentence_english": "Traveling can enrich your mind.", + "pos": "verb", + "word_frequency": 9095 + }, + { + "word": "assorbire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to absorb", + "romanization": "assorbire", + "example_sentence_native": "La spugna ha assorbito tutta l'acqua.", + "example_sentence_english": "The sponge absorbed all the water.", + "pos": "verb", + "word_frequency": 9099 + }, + { + "word": "astratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstract", + "romanization": "astratto", + "example_sentence_native": "L'arte moderna è spesso astratta.", + "example_sentence_english": "Modern art is often abstract.", + "pos": "adjective", + "word_frequency": 9100 + }, + { + "word": "bivio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossroads", + "romanization": "bivio", + "example_sentence_native": "Siamo arrivati a un bivio e non sapevamo dove andare.", + "example_sentence_english": "We arrived at a crossroads and didn't know where to go.", + "pos": "noun", + "word_frequency": 9103 + }, + { + "word": "branca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch", + "romanization": "branca", + "example_sentence_native": "La biologia è una branca della scienza.", + "example_sentence_english": "Biology is a branch of science.", + "pos": "noun", + "word_frequency": 9104 + }, + { + "word": "bussola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass", + "romanization": "bussola", + "example_sentence_native": "Abbiamo usato la bussola per trovare la strada.", + "example_sentence_english": "We used the compass to find the way.", + "pos": "noun", + "word_frequency": 9105 + }, + { + "word": "calciomercato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "football transfer market", + "romanization": "calciomercato", + "example_sentence_native": "Il calciomercato estivo è sempre molto attivo.", + "example_sentence_english": "The summer football transfer market is always very active.", + "pos": "noun", + "word_frequency": 9106 + }, + { + "word": "camminata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "walk", + "romanization": "camminata", + "example_sentence_native": "Abbiamo fatto una lunga camminata nel parco.", + "example_sentence_english": "We took a long walk in the park.", + "pos": "noun", + "word_frequency": 9107 + }, + { + "word": "casual", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casual", + "romanization": "casual", + "example_sentence_native": "Mi piace vestire in modo casual.", + "example_sentence_english": "I like to dress casually.", + "pos": "adjective", + "word_frequency": 9108 + }, + { + "word": "cattiveria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wickedness", + "romanization": "cattiveria", + "example_sentence_native": "Non capisco la sua cattiveria.", + "example_sentence_english": "I don't understand his wickedness.", + "pos": "noun", + "word_frequency": 9109 + }, + { + "word": "cenare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dine", + "romanization": "cenare", + "example_sentence_native": "Stasera ceniamo fuori.", + "example_sentence_english": "Tonight we're dining out.", + "pos": "verb", + "word_frequency": 9110 + }, + { + "word": "ceppo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strain", + "romanization": "ceppo", + "example_sentence_native": "Il virus ha sviluppato un nuovo ceppo.", + "example_sentence_english": "The virus developed a new strain.", + "pos": "noun", + "word_frequency": 9111 + }, + { + "word": "commozione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emotion", + "romanization": "commozione", + "example_sentence_native": "Ha provato una forte commozione nel rivederlo.", + "example_sentence_english": "She felt a strong emotion seeing him again.", + "pos": "noun", + "word_frequency": 9114 + }, + { + "word": "compatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compact", + "romanization": "compatto", + "example_sentence_native": "L'auto è piccola ma molto compatta.", + "example_sentence_english": "The car is small but very compact.", + "pos": "adjective", + "word_frequency": 9115 + }, + { + "word": "conferimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conferment", + "romanization": "conferimento", + "example_sentence_native": "La cerimonia di conferimento dei diplomi sarà a giugno.", + "example_sentence_english": "The diploma conferment ceremony will be in June.", + "pos": "noun", + "word_frequency": 9116 + }, + { + "word": "convention", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convention", + "romanization": "convention", + "example_sentence_native": "Parteciperò a una convention di fumetti.", + "example_sentence_english": "I will attend a comic book convention.", + "pos": "noun", + "word_frequency": 9117 + }, + { + "word": "dialettica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialectic", + "romanization": "dialettica", + "example_sentence_native": "La dialettica è un metodo di discussione logica.", + "example_sentence_english": "Dialectic is a method of logical discussion.", + "pos": "noun", + "word_frequency": 9122 + }, + { + "word": "eretto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erect;upright", + "romanization": "eretto", + "example_sentence_native": "Stava in piedi, con la schiena eretta.", + "example_sentence_english": "He stood, with his back erect.", + "pos": "adjective", + "word_frequency": 9124 + }, + { + "word": "esercitazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exercise;drill;training", + "romanization": "esercitazione", + "example_sentence_native": "Abbiamo fatto un'esercitazione antincendio a scuola.", + "example_sentence_english": "We had a fire drill at school.", + "pos": "noun", + "word_frequency": 9125 + }, + { + "word": "esibirsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perform;to exhibit oneself", + "romanization": "esibirsi", + "example_sentence_native": "Il cantante si esibirà stasera al teatro.", + "example_sentence_english": "The singer will perform tonight at the theater.", + "pos": "verb", + "word_frequency": 9126 + }, + { + "word": "esistenziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "existential", + "romanization": "esistenziale", + "example_sentence_native": "Ha avuto una crisi esistenziale dopo la laurea.", + "example_sentence_english": "He had an existential crisis after graduation.", + "pos": "adjective", + "word_frequency": 9127 + }, + { + "word": "evacuazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evacuation", + "romanization": "evacuazione", + "example_sentence_native": "L'evacuazione dell'edificio è stata rapida e ordinata.", + "example_sentence_english": "The evacuation of the building was quick and orderly.", + "pos": "noun", + "word_frequency": 9128 + }, + { + "word": "fidanzamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engagement (to be married)", + "romanization": "fidanzamento", + "example_sentence_native": "Hanno annunciato il loro fidanzamento la scorsa settimana.", + "example_sentence_english": "They announced their engagement last week.", + "pos": "noun", + "word_frequency": 9130 + }, + { + "word": "finalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to finalize;to complete", + "romanization": "finalizzare", + "example_sentence_native": "Dobbiamo finalizzare il progetto entro venerdì.", + "example_sentence_english": "We need to finalize the project by Friday.", + "pos": "verb", + "word_frequency": 9131 + }, + { + "word": "finlandese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Finnish", + "romanization": "finlandese", + "example_sentence_native": "Parla fluentemente il finlandese.", + "example_sentence_english": "He speaks Finnish fluently.", + "pos": "adjective", + "word_frequency": 9132 + }, + { + "word": "freelance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freelancer", + "romanization": "freelance", + "example_sentence_native": "Lavora come giornalista freelance da cinque anni.", + "example_sentence_english": "She has been working as a freelance journalist for five years.", + "pos": "noun", + "word_frequency": 9133 + }, + { + "word": "frenare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to brake;to curb;to restrain", + "romanization": "frenare", + "example_sentence_native": "Ha dovuto frenare bruscamente per evitare l'incidente.", + "example_sentence_english": "He had to brake sharply to avoid the accident.", + "pos": "verb", + "word_frequency": 9134 + }, + { + "word": "homo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "man;human (from Latin)", + "romanization": "homo", + "example_sentence_native": "L'Homo sapiens è la specie umana moderna.", + "example_sentence_english": "Homo sapiens is the modern human species.", + "pos": "noun", + "word_frequency": 9139 + }, + { + "word": "imam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imam", + "romanization": "imam", + "example_sentence_native": "L'imam ha guidato la preghiera nella moschea.", + "example_sentence_english": "The imam led the prayer in the mosque.", + "pos": "noun", + "word_frequency": 9141 + }, + { + "word": "imprigionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imprison", + "romanization": "imprigionare", + "example_sentence_native": "Hanno deciso di imprigionare il criminale per dieci anni.", + "example_sentence_english": "They decided to imprison the criminal for ten years.", + "pos": "verb", + "word_frequency": 9142 + }, + { + "word": "incasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receipts;takings;collection", + "romanization": "incasso", + "example_sentence_native": "Il film ha avuto un grande incasso al botteghino.", + "example_sentence_english": "The film had a large box office take.", + "pos": "noun", + "word_frequency": 9143 + }, + { + "word": "incentivare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incentivize;to encourage", + "romanization": "incentivare", + "example_sentence_native": "Il governo vuole incentivare l'uso delle energie rinnovabili.", + "example_sentence_english": "The government wants to incentivize the use of renewable energies.", + "pos": "verb", + "word_frequency": 9144 + }, + { + "word": "incomprensibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incomprehensible", + "romanization": "incomprensibile", + "example_sentence_native": "Il suo discorso era completamente incomprensibile.", + "example_sentence_english": "His speech was completely incomprehensible.", + "pos": "adjective", + "word_frequency": 9145 + }, + { + "word": "inferiorità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inferiority", + "romanization": "inferiorità", + "example_sentence_native": "Soffriva di un complesso di inferiorità.", + "example_sentence_english": "He suffered from an inferiority complex.", + "pos": "noun", + "word_frequency": 9146 + }, + { + "word": "investigatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "investigator;detective", + "romanization": "investigatore", + "example_sentence_native": "L'investigatore privato ha risolto il caso.", + "example_sentence_english": "The private investigator solved the case.", + "pos": "noun", + "word_frequency": 9147 + }, + { + "word": "lavoratrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female worker", + "romanization": "lavoratrice", + "example_sentence_native": "È una lavoratrice instancabile.", + "example_sentence_english": "She is a tireless worker.", + "pos": "noun", + "word_frequency": 9152 + }, + { + "word": "lentezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slowness", + "romanization": "lentezza", + "example_sentence_native": "La lentezza del servizio è stata frustrante.", + "example_sentence_english": "The slowness of the service was frustrating.", + "pos": "noun", + "word_frequency": 9154 + }, + { + "word": "lotteria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lottery", + "romanization": "lotteria", + "example_sentence_native": "Ha vinto un piccolo premio alla lotteria.", + "example_sentence_english": "He won a small prize in the lottery.", + "pos": "noun", + "word_frequency": 9156 + }, + { + "word": "luminosità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brightness;luminosity", + "romanization": "luminosità", + "example_sentence_native": "La luminosità dello schermo è regolabile.", + "example_sentence_english": "The screen brightness is adjustable.", + "pos": "noun", + "word_frequency": 9157 + }, + { + "word": "maltempo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bad weather", + "romanization": "maltempo", + "example_sentence_native": "A causa del maltempo, il volo è stato cancellato.", + "example_sentence_english": "Due to bad weather, the flight was cancelled.", + "pos": "noun", + "word_frequency": 9159 + }, + { + "word": "marxista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Marxist", + "romanization": "marxista", + "example_sentence_native": "Le sue idee politiche sono di stampo marxista.", + "example_sentence_english": "His political ideas are Marxist in nature.", + "pos": "adjective", + "word_frequency": 9161 + }, + { + "word": "maturazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maturation;ripening", + "romanization": "maturazione", + "example_sentence_native": "La maturazione dei frutti richiede tempo.", + "example_sentence_english": "The ripening of the fruits takes time.", + "pos": "noun", + "word_frequency": 9162 + }, + { + "word": "medioevale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medieval", + "romanization": "medioevale", + "example_sentence_native": "Hanno visitato un castello medioevale.", + "example_sentence_english": "They visited a medieval castle.", + "pos": "adjective", + "word_frequency": 9163 + }, + { + "word": "medium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medium", + "romanization": "medium", + "example_sentence_native": "I mass media sono un potente medium di comunicazione.", + "example_sentence_english": "Mass media are a powerful communication medium.", + "pos": "noun", + "word_frequency": 9164 + }, + { + "word": "molecolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "molecular", + "romanization": "molecolare", + "example_sentence_native": "La biologia molecolare è un campo di studio complesso.", + "example_sentence_english": "Molecular biology is a complex field of study.", + "pos": "adjective", + "word_frequency": 9168 + }, + { + "word": "natalizio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Christmas (adj.);festive", + "romanization": "natalizio", + "example_sentence_native": "Abbiamo decorato l'albero natalizio.", + "example_sentence_english": "We decorated the Christmas tree.", + "pos": "adjective", + "word_frequency": 9170 + }, + { + "word": "oggettivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objectively", + "romanization": "oggettivamente", + "example_sentence_native": "Dobbiamo valutare la situazione oggettivamente.", + "example_sentence_english": "We must evaluate the situation objectively.", + "pos": "adverb", + "word_frequency": 9173 + }, + { + "word": "ottico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optical;optic", + "romanization": "ottico", + "example_sentence_native": "Ha bisogno di un esame ottico.", + "example_sentence_english": "He needs an optical examination.", + "pos": "adjective", + "word_frequency": 9175 + }, + { + "word": "pandemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pandemic", + "romanization": "pandemia", + "example_sentence_native": "La pandemia ha cambiato il mondo.", + "example_sentence_english": "The pandemic changed the world.", + "pos": "noun", + "word_frequency": 9176 + }, + { + "word": "paternità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paternity;fatherhood", + "romanization": "paternità", + "example_sentence_native": "Ha riconosciuto la paternità del bambino.", + "example_sentence_english": "He recognized the paternity of the child.", + "pos": "noun", + "word_frequency": 9177 + }, + { + "word": "penetrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penetrate", + "romanization": "penetrare", + "example_sentence_native": "La luce non riesce a penetrare in questa stanza.", + "example_sentence_english": "The light cannot penetrate this room.", + "pos": "verb", + "word_frequency": 9180 + }, + { + "word": "perdersi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get lost;to lose oneself", + "romanization": "perdersi", + "example_sentence_native": "Ci siamo persi nel bosco.", + "example_sentence_english": "We got lost in the woods.", + "pos": "verb", + "word_frequency": 9181 + }, + { + "word": "pera", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pear", + "romanization": "pera", + "example_sentence_native": "Mi piace mangiare una pera a colazione.", + "example_sentence_english": "I like to eat a pear for breakfast.", + "pos": "noun", + "word_frequency": 9182 + }, + { + "word": "portante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "load-bearing;supporting;key", + "romanization": "portante", + "example_sentence_native": "Questo è un muro portante dell'edificio.", + "example_sentence_english": "This is a load-bearing wall of the building.", + "pos": "adjective", + "word_frequency": 9183 + }, + { + "word": "preferibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preferable", + "romanization": "preferibile", + "example_sentence_native": "È preferibile arrivare in anticipo.", + "example_sentence_english": "It is preferable to arrive early.", + "pos": "adjective", + "word_frequency": 9184 + }, + { + "word": "prescrivere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prescribe", + "romanization": "prescrivere", + "example_sentence_native": "Il medico mi ha prescritto un antibiotico.", + "example_sentence_english": "The doctor prescribed me an antibiotic.", + "pos": "verb", + "word_frequency": 9185 + }, + { + "word": "progressione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "progression", + "romanization": "progressione", + "example_sentence_native": "C'è stata una lenta progressione dei sintomi.", + "example_sentence_english": "There has been a slow progression of symptoms.", + "pos": "noun", + "word_frequency": 9186 + }, + { + "word": "promesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promised", + "romanization": "promesso", + "example_sentence_native": "Questa è la terra promessa.", + "example_sentence_english": "This is the promised land.", + "pos": "adjective", + "word_frequency": 9187 + }, + { + "word": "provvista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provision;supply", + "romanization": "provvista", + "example_sentence_native": "Abbiamo fatto una buona provvista di cibo.", + "example_sentence_english": "We made a good provision of food.", + "pos": "noun", + "word_frequency": 9188 + }, + { + "word": "punito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punished", + "romanization": "punito", + "example_sentence_native": "Il bambino è stato punito per la sua disobbedienza.", + "example_sentence_english": "The child was punished for his disobedience.", + "pos": "adjective", + "word_frequency": 9190 + }, + { + "word": "razionalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rationality", + "romanization": "razionalità", + "example_sentence_native": "La razionalità è importante nel prendere decisioni.", + "example_sentence_english": "Rationality is important in making decisions.", + "pos": "noun", + "word_frequency": 9191 + }, + { + "word": "reggia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "royal palace", + "romanization": "reggia", + "example_sentence_native": "La Reggia di Caserta è magnifica.", + "example_sentence_english": "The Royal Palace of Caserta is magnificent.", + "pos": "noun", + "word_frequency": 9193 + }, + { + "word": "reperire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to find;to retrieve;to obtain", + "romanization": "reperire", + "example_sentence_native": "È difficile reperire informazioni precise.", + "example_sentence_english": "It is difficult to retrieve precise information.", + "pos": "verb", + "word_frequency": 9194 + }, + { + "word": "rossetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lipstick", + "romanization": "rossetto", + "example_sentence_native": "Si è messa il rossetto rosso.", + "example_sentence_english": "She put on red lipstick.", + "pos": "noun", + "word_frequency": 9198 + }, + { + "word": "scansione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scan;scanning", + "romanization": "scansione", + "example_sentence_native": "Ho bisogno di fare una scansione di questo documento.", + "example_sentence_english": "I need to do a scan of this document.", + "pos": "noun", + "word_frequency": 9199 + }, + { + "word": "scattato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taken;triggered", + "romanization": "scattato", + "example_sentence_native": "La foto è stata scattata al tramonto.", + "example_sentence_english": "The photo was taken at sunset.", + "pos": "adjective", + "word_frequency": 9200 + }, + { + "word": "scetticismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skepticism", + "romanization": "scetticismo", + "example_sentence_native": "Il suo scetticismo era evidente.", + "example_sentence_english": "His skepticism was evident.", + "pos": "noun", + "word_frequency": 9201 + }, + { + "word": "sciolto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loose;melted;dissolved", + "romanization": "sciolto", + "example_sentence_native": "Ha i capelli sciolti.", + "example_sentence_english": "She has loose hair.", + "pos": "adjective", + "word_frequency": 9202 + }, + { + "word": "servito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "served", + "romanization": "servito", + "example_sentence_native": "Il tavolo era già servito.", + "example_sentence_english": "The table was already served.", + "pos": "adjective", + "word_frequency": 9203 + }, + { + "word": "sharing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharing", + "romanization": "sharing", + "example_sentence_native": "Il car sharing è molto popolare in città.", + "example_sentence_english": "Car sharing is very popular in the city.", + "pos": "noun", + "word_frequency": 9204 + }, + { + "word": "slim", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slim", + "romanization": "slim", + "example_sentence_native": "Indossa un paio di jeans slim.", + "example_sentence_english": "He wears a pair of slim jeans.", + "pos": "adjective", + "word_frequency": 9205 + }, + { + "word": "smentire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deny;to refute", + "romanization": "smentire", + "example_sentence_native": "Ha dovuto smentire le accuse.", + "example_sentence_english": "He had to deny the accusations.", + "pos": "verb", + "word_frequency": 9206 + }, + { + "word": "soffio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath;puff", + "romanization": "soffio", + "example_sentence_native": "Un soffio di vento ha spento la candela.", + "example_sentence_english": "A puff of wind blew out the candle.", + "pos": "noun", + "word_frequency": 9207 + }, + { + "word": "sommità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "summit;top", + "romanization": "sommità", + "example_sentence_native": "Hanno raggiunto la sommità della montagna.", + "example_sentence_english": "They reached the summit of the mountain.", + "pos": "noun", + "word_frequency": 9208 + }, + { + "word": "sorprendentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surprisingly", + "romanization": "sorprendentemente", + "example_sentence_native": "Sorprendentemente, ha superato l'esame.", + "example_sentence_english": "Surprisingly, he passed the exam.", + "pos": "adverb", + "word_frequency": 9209 + }, + { + "word": "stereo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stereo", + "romanization": "stereo", + "example_sentence_native": "Ascoltiamo musica dal vecchio stereo.", + "example_sentence_english": "We listen to music from the old stereo.", + "pos": "noun", + "word_frequency": 9210 + }, + { + "word": "stragrande", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming (majority)", + "romanization": "stragrande", + "example_sentence_native": "La stragrande maggioranza ha votato sì.", + "example_sentence_english": "The overwhelming majority voted yes.", + "pos": "adjective", + "word_frequency": 9211 + }, + { + "word": "suddividere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subdivide;to divide", + "romanization": "suddividere", + "example_sentence_native": "Dobbiamo suddividere il lavoro in compiti più piccoli.", + "example_sentence_english": "We need to subdivide the work into smaller tasks.", + "pos": "verb", + "word_frequency": 9212 + }, + { + "word": "telefonare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to call (on the phone)", + "romanization": "telefonare", + "example_sentence_native": "Devo telefonare a mia madre.", + "example_sentence_english": "I need to call my mother.", + "pos": "verb", + "word_frequency": 9213 + }, + { + "word": "terrificante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrifying", + "romanization": "terrificante", + "example_sentence_native": "Il film era terrificante.", + "example_sentence_english": "The movie was terrifying.", + "pos": "adjective", + "word_frequency": 9214 + }, + { + "word": "text", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "text message", + "romanization": "text", + "example_sentence_native": "Ti ho inviato un text.", + "example_sentence_english": "I sent you a text message.", + "pos": "noun", + "word_frequency": 9216 + }, + { + "word": "tiranno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyrant", + "romanization": "tiranno", + "example_sentence_native": "Il popolo si ribellò al tiranno.", + "example_sentence_english": "The people rebelled against the tyrant.", + "pos": "noun", + "word_frequency": 9217 + }, + { + "word": "trascurabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "negligible;trivial", + "romanization": "trascurabile", + "example_sentence_native": "L'errore è trascurabile.", + "example_sentence_english": "The error is negligible.", + "pos": "adjective", + "word_frequency": 9218 + }, + { + "word": "trasportato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transported", + "romanization": "trasportato", + "example_sentence_native": "Le merci sono state trasportate via nave.", + "example_sentence_english": "The goods were transported by ship.", + "pos": "adjective", + "word_frequency": 9219 + }, + { + "word": "unitario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unitary;unified", + "romanization": "unitario", + "example_sentence_native": "Hanno adottato un approccio unitario.", + "example_sentence_english": "They adopted a unitary approach.", + "pos": "adjective", + "word_frequency": 9221 + }, + { + "word": "uscente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outgoing;incumbent", + "romanization": "uscente", + "example_sentence_native": "Il presidente uscente ha tenuto un discorso.", + "example_sentence_english": "The outgoing president gave a speech.", + "pos": "adjective", + "word_frequency": 9222 + }, + { + "word": "verme", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worm", + "romanization": "verme", + "example_sentence_native": "C'è un verme nella mela.", + "example_sentence_english": "There's a worm in the apple.", + "pos": "noun", + "word_frequency": 9224 + }, + { + "word": "accogliente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "welcoming;cozy", + "romanization": "accogliente", + "example_sentence_native": "La casa era molto accogliente.", + "example_sentence_english": "The house was very cozy.", + "pos": "adjective", + "word_frequency": 9226 + }, + { + "word": "accontentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to satisfy;to please", + "romanization": "accontentare", + "example_sentence_native": "È difficile accontentare tutti.", + "example_sentence_english": "It's hard to satisfy everyone.", + "pos": "verb", + "word_frequency": 9227 + }, + { + "word": "agevolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to facilitate;to ease", + "romanization": "agevolare", + "example_sentence_native": "Dobbiamo agevolare il processo.", + "example_sentence_english": "We need to facilitate the process.", + "pos": "verb", + "word_frequency": 9228 + }, + { + "word": "allenare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to train;to coach", + "romanization": "allenare", + "example_sentence_native": "Si allena ogni giorno.", + "example_sentence_english": "He trains every day.", + "pos": "verb", + "word_frequency": 9229 + }, + { + "word": "allontanamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "removal;distancing;departure", + "romanization": "allontanamento", + "example_sentence_native": "L'allontanamento dal centro città è stato difficile.", + "example_sentence_english": "The departure from the city center was difficult.", + "pos": "noun", + "word_frequency": 9230 + }, + { + "word": "amarezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitterness", + "romanization": "amarezza", + "example_sentence_native": "Ha provato una profonda amarezza.", + "example_sentence_english": "She felt a deep bitterness.", + "pos": "noun", + "word_frequency": 9231 + }, + { + "word": "anarchico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchist;anarchic", + "romanization": "anarchico", + "example_sentence_native": "Le sue idee erano anarchiche.", + "example_sentence_english": "His ideas were anarchic.", + "pos": "adjective", + "word_frequency": 9232 + }, + { + "word": "arancio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orange (fruit;color)", + "romanization": "arancio", + "example_sentence_native": "Mi piace il succo d'arancio.", + "example_sentence_english": "I like orange juice.", + "pos": "noun", + "word_frequency": 9237 + }, + { + "word": "archiviazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archiving;storage", + "romanization": "archiviazione", + "example_sentence_native": "Il sistema di archiviazione è efficiente.", + "example_sentence_english": "The archiving system is efficient.", + "pos": "noun", + "word_frequency": 9238 + }, + { + "word": "arsenale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arsenal", + "romanization": "arsenale", + "example_sentence_native": "L'arsenale militare era pieno di armi.", + "example_sentence_english": "The military arsenal was full of weapons.", + "pos": "noun", + "word_frequency": 9240 + }, + { + "word": "astinenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abstinence", + "romanization": "astinenza", + "example_sentence_native": "Ha praticato l'astinenza dal fumo per un mese.", + "example_sentence_english": "He practiced abstinence from smoking for a month.", + "pos": "noun", + "word_frequency": 9241 + }, + { + "word": "astronomia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomy", + "romanization": "astronomia", + "example_sentence_native": "L'astronomia è lo studio dei corpi celesti.", + "example_sentence_english": "Astronomy is the study of celestial bodies.", + "pos": "noun", + "word_frequency": 9242 + }, + { + "word": "attuato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implemented;carried out", + "romanization": "attuato", + "example_sentence_native": "Il piano è stato attuato con successo.", + "example_sentence_english": "The plan was successfully implemented.", + "pos": "adjective", + "word_frequency": 9243 + }, + { + "word": "botanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botanical", + "romanization": "botanico", + "example_sentence_native": "Il giardino botanico è un luogo meraviglioso.", + "example_sentence_english": "The botanical garden is a wonderful place.", + "pos": "adjective", + "word_frequency": 9245 + }, + { + "word": "building", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "building", + "romanization": "building", + "example_sentence_native": "Lavora in un grande building nel centro città.", + "example_sentence_english": "He works in a large building in the city center.", + "pos": "noun", + "word_frequency": 9246 + }, + { + "word": "cacciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunted;expelled;fired", + "romanization": "cacciato", + "example_sentence_native": "È stato cacciato dalla squadra per indisciplina.", + "example_sentence_english": "He was expelled from the team for indiscipline.", + "pos": "adjective", + "word_frequency": 9247 + }, + { + "word": "campionessa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champion (female)", + "romanization": "campionessa", + "example_sentence_native": "È la campionessa mondiale di tennis.", + "example_sentence_english": "She is the world tennis champion.", + "pos": "noun", + "word_frequency": 9250 + }, + { + "word": "cantautore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "singer-songwriter", + "romanization": "cantautore", + "example_sentence_native": "Fabrizio De André è stato un famoso cantautore italiano.", + "example_sentence_english": "Fabrizio De André was a famous Italian singer-songwriter.", + "pos": "noun", + "word_frequency": 9251 + }, + { + "word": "carboidrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carbohydrate", + "romanization": "carboidrato", + "example_sentence_native": "I carboidrati sono una fonte importante di energia.", + "example_sentence_english": "Carbohydrates are an important source of energy.", + "pos": "noun", + "word_frequency": 9252 + }, + { + "word": "carestia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "famine", + "romanization": "carestia", + "example_sentence_native": "La regione è stata colpita da una grave carestia.", + "example_sentence_english": "The region was hit by a severe famine.", + "pos": "noun", + "word_frequency": 9253 + }, + { + "word": "cartellino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "card;tag;ticket", + "romanization": "cartellino", + "example_sentence_native": "L'arbitro ha mostrato il cartellino giallo al giocatore.", + "example_sentence_english": "The referee showed the yellow card to the player.", + "pos": "noun", + "word_frequency": 9254 + }, + { + "word": "caverna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cave", + "romanization": "caverna", + "example_sentence_native": "Abbiamo esplorato una grande caverna durante l'escursione.", + "example_sentence_english": "We explored a large cave during the excursion.", + "pos": "noun", + "word_frequency": 9256 + }, + { + "word": "classic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classic", + "romanization": "classic", + "example_sentence_native": "Questo è un film classic degli anni '80.", + "example_sentence_english": "This is a classic film from the 80s.", + "pos": "adjective", + "word_frequency": 9259 + }, + { + "word": "clic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "click", + "romanization": "clic", + "example_sentence_native": "Fai un clic sul pulsante per continuare.", + "example_sentence_english": "Click on the button to continue.", + "pos": "noun", + "word_frequency": 9260 + }, + { + "word": "comicità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comicality;humor", + "romanization": "comicità", + "example_sentence_native": "La sua comicità è unica e irresistibile.", + "example_sentence_english": "His humor is unique and irresistible.", + "pos": "noun", + "word_frequency": 9261 + }, + { + "word": "consolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to console;to comfort", + "romanization": "consolare", + "example_sentence_native": "Ho cercato di consolare il mio amico dopo la brutta notizia.", + "example_sentence_english": "I tried to console my friend after the bad news.", + "pos": "verb", + "word_frequency": 9262 + }, + { + "word": "contestualmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contextually;simultaneously", + "romanization": "contestualmente", + "example_sentence_native": "Le due decisioni sono state prese contestualmente.", + "example_sentence_english": "The two decisions were made simultaneously.", + "pos": "adverb", + "word_frequency": 9263 + }, + { + "word": "coordinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coordinate", + "romanization": "coordinare", + "example_sentence_native": "Dobbiamo coordinare i nostri sforzi per raggiungere l'obiettivo.", + "example_sentence_english": "We need to coordinate our efforts to reach the goal.", + "pos": "verb", + "word_frequency": 9264 + }, + { + "word": "differenziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "differential", + "romanization": "differenziale", + "example_sentence_native": "Hanno applicato un'analisi differenziale ai dati.", + "example_sentence_english": "They applied a differential analysis to the data.", + "pos": "adjective", + "word_frequency": 9269 + }, + { + "word": "discusso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discussed;controversial", + "romanization": "discusso", + "example_sentence_native": "È un argomento molto discusso in questo periodo.", + "example_sentence_english": "It's a much-discussed topic at the moment.", + "pos": "adjective", + "word_frequency": 9270 + }, + { + "word": "dissoluzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissolution", + "romanization": "dissoluzione", + "example_sentence_native": "La dissoluzione del matrimonio è stata dolorosa.", + "example_sentence_english": "The dissolution of the marriage was painful.", + "pos": "noun", + "word_frequency": 9271 + }, + { + "word": "domino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domino", + "romanization": "domino", + "example_sentence_native": "Abbiamo giocato a domino tutta la sera.", + "example_sentence_english": "We played dominoes all evening.", + "pos": "noun", + "word_frequency": 9273 + }, + { + "word": "dragon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dragon", + "romanization": "dragon", + "example_sentence_native": "Il cavaliere ha combattuto contro un feroce dragon.", + "example_sentence_english": "The knight fought against a fierce dragon.", + "pos": "noun", + "word_frequency": 9274 + }, + { + "word": "eccitante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exciting;stimulating", + "romanization": "eccitante", + "example_sentence_native": "È stata un'esperienza davvero eccitante.", + "example_sentence_english": "It was a truly exciting experience.", + "pos": "adjective", + "word_frequency": 9278 + }, + { + "word": "ecosistema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecosystem", + "romanization": "ecosistema", + "example_sentence_native": "La protezione dell'ecosistema è fondamentale per il futuro.", + "example_sentence_english": "Protecting the ecosystem is fundamental for the future.", + "pos": "noun", + "word_frequency": 9279 + }, + { + "word": "emancipazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emancipation", + "romanization": "emancipazione", + "example_sentence_native": "La lotta per l'emancipazione femminile è stata lunga e difficile.", + "example_sentence_english": "The fight for women's emancipation has been long and difficult.", + "pos": "noun", + "word_frequency": 9280 + }, + { + "word": "farmacista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pharmacist", + "romanization": "farmacista", + "example_sentence_native": "Ho chiesto consiglio al farmacista per il mio raffreddore.", + "example_sentence_english": "I asked the pharmacist for advice for my cold.", + "pos": "noun", + "word_frequency": 9282 + }, + { + "word": "favoloso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fabulous;wonderful", + "romanization": "favoloso", + "example_sentence_native": "Abbiamo trascorso una vacanza favolosa in montagna.", + "example_sentence_english": "We had a fabulous holiday in the mountains.", + "pos": "adjective", + "word_frequency": 9283 + }, + { + "word": "gadget", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gadget", + "romanization": "gadget", + "example_sentence_native": "Ho comprato un nuovo gadget tecnologico.", + "example_sentence_english": "I bought a new technological gadget.", + "pos": "noun", + "word_frequency": 9285 + }, + { + "word": "giudicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "judged;decided (as in res judicata)", + "romanization": "giudicato", + "example_sentence_native": "La sentenza è ormai un fatto giudicato.", + "example_sentence_english": "The verdict is now a decided matter.", + "pos": "adjective", + "word_frequency": 9289 + }, + { + "word": "gravissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very serious;extremely grave", + "romanization": "gravissimo", + "example_sentence_native": "La situazione è diventata gravissima dopo l'incidente.", + "example_sentence_english": "The situation became very serious after the accident.", + "pos": "adjective", + "word_frequency": 9291 + }, + { + "word": "implementare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implement", + "romanization": "implementare", + "example_sentence_native": "Dobbiamo implementare nuove strategie per migliorare l'efficienza.", + "example_sentence_english": "We need to implement new strategies to improve efficiency.", + "pos": "verb", + "word_frequency": 9292 + }, + { + "word": "implementazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implementation", + "romanization": "implementazione", + "example_sentence_native": "L'implementazione del progetto richiederà tempo.", + "example_sentence_english": "The implementation of the project will take time.", + "pos": "noun", + "word_frequency": 9293 + }, + { + "word": "innesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graft (botany;medicine);coupling (mechanics)", + "romanization": "innesto", + "example_sentence_native": "L'innesto dell'albero ha avuto successo.", + "example_sentence_english": "The tree graft was successful.", + "pos": "noun", + "word_frequency": 9294 + }, + { + "word": "intestinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intestinal", + "romanization": "intestinale", + "example_sentence_native": "Ha avuto un problema intestinale dopo aver mangiato quel cibo.", + "example_sentence_english": "He had an intestinal problem after eating that food.", + "pos": "adjective", + "word_frequency": 9295 + }, + { + "word": "leale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loyal;fair", + "romanization": "leale", + "example_sentence_native": "È sempre stato un amico leale.", + "example_sentence_english": "He has always been a loyal friend.", + "pos": "adjective", + "word_frequency": 9297 + }, + { + "word": "leghista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "League party member;supporter (referring to Lega Nord;Lega)", + "romanization": "leghista", + "example_sentence_native": "Il dibattito tra i leghisti e gli altri partiti è stato acceso.", + "example_sentence_english": "The debate between the League party members and the other parties was heated.", + "pos": "noun", + "word_frequency": 9298 + }, + { + "word": "lievemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slightly;lightly", + "romanization": "lievemente", + "example_sentence_native": "La porta era lievemente aperta.", + "example_sentence_english": "The door was slightly open.", + "pos": "adverb", + "word_frequency": 9299 + }, + { + "word": "manto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloak;mantle;coat (of an animal);layer (of snow;dust)", + "romanization": "manto", + "example_sentence_native": "Un manto di neve copriva le montagne.", + "example_sentence_english": "A mantle of snow covered the mountains.", + "pos": "noun", + "word_frequency": 9300 + }, + { + "word": "manzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beef", + "romanization": "manzo", + "example_sentence_native": "Vorrei un piatto di manzo con patate.", + "example_sentence_english": "I would like a dish of beef with potatoes.", + "pos": "noun", + "word_frequency": 9301 + }, + { + "word": "misurato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measured;moderate;restrained", + "romanization": "misurato", + "example_sentence_native": "Ha sempre un approccio misurato ai problemi.", + "example_sentence_english": "He always has a measured approach to problems.", + "pos": "adjective", + "word_frequency": 9303 + }, + { + "word": "multiplo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiple", + "romanization": "multiplo", + "example_sentence_native": "Il problema ha soluzioni multiple.", + "example_sentence_english": "The problem has multiple solutions.", + "pos": "adjective", + "word_frequency": 9304 + }, + { + "word": "onorario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fee;honorarium", + "romanization": "onorario", + "example_sentence_native": "L'avvocato ha chiesto un onorario elevato.", + "example_sentence_english": "The lawyer asked for a high fee.", + "pos": "noun", + "word_frequency": 9307 + }, + { + "word": "opportunamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appropriately;suitably;opportunely", + "romanization": "opportunamente", + "example_sentence_native": "Il problema è stato opportunamente risolto.", + "example_sentence_english": "The problem was appropriately resolved.", + "pos": "adverb", + "word_frequency": 9308 + }, + { + "word": "ovale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oval", + "romanization": "ovale", + "example_sentence_native": "La tavola aveva una forma ovale.", + "example_sentence_english": "The table had an oval shape.", + "pos": "adjective", + "word_frequency": 9309 + }, + { + "word": "padano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of the Po Valley;Padanian", + "romanization": "padano", + "example_sentence_native": "La pianura padana è molto fertile.", + "example_sentence_english": "The Po Valley plain is very fertile.", + "pos": "adjective", + "word_frequency": 9310 + }, + { + "word": "paralisi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paralysis", + "romanization": "paralisi", + "example_sentence_native": "La paralisi del traffico ha bloccato la città.", + "example_sentence_english": "The traffic paralysis blocked the city.", + "pos": "noun", + "word_frequency": 9313 + }, + { + "word": "patrono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patron saint;patron", + "romanization": "patrono", + "example_sentence_native": "San Gennaro è il patrono di Napoli.", + "example_sentence_english": "Saint Januarius is the patron saint of Naples.", + "pos": "noun", + "word_frequency": 9314 + }, + { + "word": "percento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "percent", + "romanization": "percento", + "example_sentence_native": "Il dieci percento degli studenti ha superato l'esame.", + "example_sentence_english": "Ten percent of the students passed the exam.", + "pos": "noun", + "word_frequency": 9315 + }, + { + "word": "piazzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "placed;positioned;well-built (colloquial for a person)", + "romanization": "piazzato", + "example_sentence_native": "Il tavolo era ben piazzato al centro della stanza.", + "example_sentence_english": "The table was well placed in the center of the room.", + "pos": "adjective", + "word_frequency": 9317 + }, + { + "word": "playlist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playlist", + "romanization": "playlist", + "example_sentence_native": "Ho creato una nuova playlist per la festa.", + "example_sentence_english": "I created a new playlist for the party.", + "pos": "noun", + "word_frequency": 9319 + }, + { + "word": "populista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "populist", + "romanization": "populista", + "example_sentence_native": "Il politico è stato etichettato come populista dai suoi avversari.", + "example_sentence_english": "The politician was labeled as a populist by his opponents.", + "pos": "noun", + "word_frequency": 9321 + }, + { + "word": "primitivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "primitive", + "romanization": "primitivo", + "example_sentence_native": "Hanno scoperto strumenti primitivi in quel sito archeologico.", + "example_sentence_english": "They discovered primitive tools at that archaeological site.", + "pos": "adjective", + "word_frequency": 9322 + }, + { + "word": "procurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to procure;to obtain", + "romanization": "procurare", + "example_sentence_native": "Dobbiamo procurare i materiali necessari per il progetto.", + "example_sentence_english": "We need to procure the necessary materials for the project.", + "pos": "verb", + "word_frequency": 9323 + }, + { + "word": "progredire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to progress;to advance", + "romanization": "progredire", + "example_sentence_native": "Spero di progredire rapidamente nello studio dell'italiano.", + "example_sentence_english": "I hope to progress quickly in my Italian studies.", + "pos": "verb", + "word_frequency": 9324 + }, + { + "word": "proiettare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to project;to cast", + "romanization": "proiettare", + "example_sentence_native": "Il film sarà proiettato stasera al cinema.", + "example_sentence_english": "The film will be projected tonight at the cinema.", + "pos": "verb", + "word_frequency": 9325 + }, + { + "word": "psicologicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychologically", + "romanization": "psicologicamente", + "example_sentence_native": "Era psicologicamente preparato per la sfida.", + "example_sentence_english": "He was psychologically prepared for the challenge.", + "pos": "adverb", + "word_frequency": 9326 + }, + { + "word": "remo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oar", + "romanization": "remo", + "example_sentence_native": "Abbiamo perso un remo mentre remavamo sul lago.", + "example_sentence_english": "We lost an oar while rowing on the lake.", + "pos": "noun", + "word_frequency": 9327 + }, + { + "word": "replicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reply;to replicate", + "romanization": "replicare", + "example_sentence_native": "Non ha saputo replicare alle accuse mosse contro di lui.", + "example_sentence_english": "He couldn't reply to the accusations made against him.", + "pos": "verb", + "word_frequency": 9328 + }, + { + "word": "riconciliazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconciliation", + "romanization": "riconciliazione", + "example_sentence_native": "La riconciliazione tra le due parti è stata difficile da raggiungere.", + "example_sentence_english": "The reconciliation between the two parties was difficult to achieve.", + "pos": "noun", + "word_frequency": 9329 + }, + { + "word": "rinvenire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to find;to recover", + "romanization": "rinvenire", + "example_sentence_native": "Hanno rinvenuto antichi manufatti durante gli scavi archeologici.", + "example_sentence_english": "They found ancient artifacts during the archaeological excavations.", + "pos": "verb", + "word_frequency": 9330 + }, + { + "word": "rispettato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respected", + "romanization": "rispettato", + "example_sentence_native": "È un professionista molto rispettato nel suo campo.", + "example_sentence_english": "He is a very respected professional in his field.", + "pos": "adjective", + "word_frequency": 9331 + }, + { + "word": "sbarramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barrier;blockade;dam", + "romanization": "sbarramento", + "example_sentence_native": "Hanno eretto uno sbarramento per bloccare la strada.", + "example_sentence_english": "They erected a barrier to block the road.", + "pos": "noun", + "word_frequency": 9338 + }, + { + "word": "sbloccare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to unlock;to unblock", + "romanization": "sbloccare", + "example_sentence_native": "Devo sbloccare il telefono con il codice.", + "example_sentence_english": "I need to unlock the phone with the code.", + "pos": "verb", + "word_frequency": 9339 + }, + { + "word": "scadente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poor quality;shoddy", + "romanization": "scadente", + "example_sentence_native": "Il servizio in quel ristorante era scadente.", + "example_sentence_english": "The service in that restaurant was poor quality.", + "pos": "adjective", + "word_frequency": 9340 + }, + { + "word": "scandaloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scandalous", + "romanization": "scandaloso", + "example_sentence_native": "La sua condotta è stata considerata scandalosa.", + "example_sentence_english": "His conduct was considered scandalous.", + "pos": "adjective", + "word_frequency": 9341 + }, + { + "word": "schiacciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crush;to squash", + "romanization": "schiacciare", + "example_sentence_native": "Ha schiacciato l'insetto con il piede.", + "example_sentence_english": "He crushed the insect with his foot.", + "pos": "verb", + "word_frequency": 9342 + }, + { + "word": "scoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slag;dross;waste", + "romanization": "scoria", + "example_sentence_native": "Le scorie industriali devono essere smaltite correttamente.", + "example_sentence_english": "Industrial waste must be disposed of properly.", + "pos": "noun", + "word_frequency": 9343 + }, + { + "word": "scorrimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sliding;scrolling;flow", + "romanization": "scorrimento", + "example_sentence_native": "La finestra ha un meccanismo di scorrimento.", + "example_sentence_english": "The window has a sliding mechanism.", + "pos": "noun", + "word_frequency": 9344 + }, + { + "word": "semplificare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to simplify", + "romanization": "semplificare", + "example_sentence_native": "Dobbiamo semplificare le procedure per renderle più efficienti.", + "example_sentence_english": "We need to simplify the procedures to make them more efficient.", + "pos": "verb", + "word_frequency": 9345 + }, + { + "word": "sfortunato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unlucky;unfortunate", + "romanization": "sfortunato", + "example_sentence_native": "È stato un giorno sfortunato per me.", + "example_sentence_english": "It was an unlucky day for me.", + "pos": "adjective", + "word_frequency": 9346 + }, + { + "word": "sfruttato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploited;utilized", + "romanization": "sfruttato", + "example_sentence_native": "I lavoratori erano sfruttati dall'azienda.", + "example_sentence_english": "The workers were exploited by the company.", + "pos": "adjective", + "word_frequency": 9347 + }, + { + "word": "sgradevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpleasant;disagreeable", + "romanization": "sgradevole", + "example_sentence_native": "L'odore era molto sgradevole.", + "example_sentence_english": "The smell was very unpleasant.", + "pos": "adjective", + "word_frequency": 9348 + }, + { + "word": "smaltimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disposal;waste management", + "romanization": "smaltimento", + "example_sentence_native": "Il problema dello smaltimento dei rifiuti è serio.", + "example_sentence_english": "The problem of waste disposal is serious.", + "pos": "noun", + "word_frequency": 9349 + }, + { + "word": "sopracciglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eyebrow", + "romanization": "sopracciglio", + "example_sentence_native": "Ha un sopracciglio alzato quando è perplesso.", + "example_sentence_english": "He raises an eyebrow when he is perplexed.", + "pos": "noun", + "word_frequency": 9350 + }, + { + "word": "sospettato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspected", + "romanization": "sospettato", + "example_sentence_native": "L'uomo sospettato è stato interrogato dalla polizia.", + "example_sentence_english": "The suspected man was questioned by the police.", + "pos": "adjective", + "word_frequency": 9352 + }, + { + "word": "spaventato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scared;frightened", + "romanization": "spaventato", + "example_sentence_native": "Il bambino era spaventato dal tuono improvviso.", + "example_sentence_english": "The child was scared by the sudden thunder.", + "pos": "adjective", + "word_frequency": 9353 + }, + { + "word": "stregua", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "par;level (often in 'alla stregua di')", + "romanization": "stregua", + "example_sentence_native": "Lo trattava alla stregua di un fratello.", + "example_sentence_english": "He treated him on a par with a brother.", + "pos": "noun", + "word_frequency": 9355 + }, + { + "word": "terminologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terminology", + "romanization": "terminologia", + "example_sentence_native": "La terminologia tecnica può essere difficile da capire.", + "example_sentence_english": "Technical terminology can be difficult to understand.", + "pos": "noun", + "word_frequency": 9358 + }, + { + "word": "tosto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tough;hard", + "romanization": "tosto", + "example_sentence_native": "È un problema tosto da risolvere.", + "example_sentence_english": "It's a tough problem to solve.", + "pos": "adjective", + "word_frequency": 9360 + }, + { + "word": "urto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impact;collision", + "romanization": "urto", + "example_sentence_native": "L'urto tra le due auto è stato violento.", + "example_sentence_english": "The impact between the two cars was violent.", + "pos": "noun", + "word_frequency": 9361 + }, + { + "word": "usura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usury;wear and tear", + "romanization": "usura", + "example_sentence_native": "L'usura dei pneumatici è normale dopo molti chilometri.", + "example_sentence_english": "The wear and tear of the tires is normal after many kilometers.", + "pos": "noun", + "word_frequency": 9362 + }, + { + "word": "utero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uterus", + "romanization": "utero", + "example_sentence_native": "L'utero è un organo fondamentale per la riproduzione.", + "example_sentence_english": "The uterus is a fundamental organ for reproduction.", + "pos": "noun", + "word_frequency": 9363 + }, + { + "word": "vaccinazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaccination", + "romanization": "vaccinazione", + "example_sentence_native": "La vaccinazione è importante per la salute pubblica.", + "example_sentence_english": "Vaccination is important for public health.", + "pos": "noun", + "word_frequency": 9364 + }, + { + "word": "vendicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avenge", + "romanization": "vendicare", + "example_sentence_native": "Ha giurato di vendicare l'ingiustizia subita.", + "example_sentence_english": "He swore to avenge the injustice suffered.", + "pos": "verb", + "word_frequency": 9365 + }, + { + "word": "vico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alley;narrow street", + "romanization": "vico", + "example_sentence_native": "Il vico era così stretto che a malapena ci passava una persona.", + "example_sentence_english": "The alley was so narrow that a person could barely pass through it.", + "pos": "noun", + "word_frequency": 9367 + }, + { + "word": "violentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violently", + "romanization": "violentemente", + "example_sentence_native": "Il vento soffiava violentemente.", + "example_sentence_english": "The wind was blowing violently.", + "pos": "adverb", + "word_frequency": 9368 + }, + { + "word": "webcam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "webcam", + "romanization": "webcam", + "example_sentence_native": "Ho comprato una nuova webcam per le videochiamate.", + "example_sentence_english": "I bought a new webcam for video calls.", + "pos": "noun", + "word_frequency": 9369 + }, + { + "word": "abbonato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subscriber", + "romanization": "abbonato", + "example_sentence_native": "Sono un abbonato a quella rivista da anni.", + "example_sentence_english": "I have been a subscriber to that magazine for years.", + "pos": "noun", + "word_frequency": 9372 + }, + { + "word": "accumulare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accumulate", + "romanization": "accumulare", + "example_sentence_native": "È facile accumulare polvere se non si pulisce regolarmente.", + "example_sentence_english": "It's easy to accumulate dust if you don't clean regularly.", + "pos": "verb", + "word_frequency": 9373 + }, + { + "word": "addormentato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "asleep", + "romanization": "addormentato", + "example_sentence_native": "Il bambino era profondamente addormentato.", + "example_sentence_english": "The child was deeply asleep.", + "pos": "adjective", + "word_frequency": 9375 + }, + { + "word": "adrenalina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adrenaline", + "romanization": "adrenalina", + "example_sentence_native": "L'adrenalina mi ha dato la forza di continuare.", + "example_sentence_english": "The adrenaline gave me the strength to continue.", + "pos": "noun", + "word_frequency": 9376 + }, + { + "word": "atletico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "athletic", + "romanization": "atletico", + "example_sentence_native": "È un ragazzo molto atletico e sportivo.", + "example_sentence_english": "He is a very athletic and sporty boy.", + "pos": "adjective", + "word_frequency": 9378 + }, + { + "word": "atomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atom", + "romanization": "atomo", + "example_sentence_native": "L'atomo è la più piccola unità di materia.", + "example_sentence_english": "The atom is the smallest unit of matter.", + "pos": "noun", + "word_frequency": 9379 + }, + { + "word": "balsamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balm;conditioner", + "romanization": "balsamo", + "example_sentence_native": "Dopo lo shampoo, usa il balsamo per capelli morbidi.", + "example_sentence_english": "After shampoo, use conditioner for soft hair.", + "pos": "noun", + "word_frequency": 9380 + }, + { + "word": "bancone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counter;bar", + "romanization": "bancone", + "example_sentence_native": "Si è seduto al bancone del bar.", + "example_sentence_english": "He sat at the bar counter.", + "pos": "noun", + "word_frequency": 9381 + }, + { + "word": "barile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barrel", + "romanization": "barile", + "example_sentence_native": "Hanno trovato un vecchio barile di legno in cantina.", + "example_sentence_english": "They found an old wooden barrel in the cellar.", + "pos": "noun", + "word_frequency": 9382 + }, + { + "word": "bucato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundry", + "romanization": "bucato", + "example_sentence_native": "Devo fare il bucato oggi.", + "example_sentence_english": "I have to do the laundry today.", + "pos": "noun", + "word_frequency": 9387 + }, + { + "word": "bue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ox", + "romanization": "bue", + "example_sentence_native": "Il bue tirava l'aratro nel campo.", + "example_sentence_english": "The ox pulled the plow in the field.", + "pos": "noun", + "word_frequency": 9388 + }, + { + "word": "chiacchierare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chat;to gossip", + "romanization": "chiacchierare", + "example_sentence_native": "Ci piace chiacchierare per ore al caffè.", + "example_sentence_english": "We like to chat for hours at the cafe.", + "pos": "verb", + "word_frequency": 9391 + }, + { + "word": "circondario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "district;surroundings", + "romanization": "circondario", + "example_sentence_native": "Il circondario è noto per i suoi paesaggi.", + "example_sentence_english": "The district is known for its landscapes.", + "pos": "noun", + "word_frequency": 9393 + }, + { + "word": "clamoroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensational;resounding", + "romanization": "clamoroso", + "example_sentence_native": "La notizia è stata un successo clamoroso.", + "example_sentence_english": "The news was a sensational success.", + "pos": "adjective", + "word_frequency": 9395 + }, + { + "word": "coefficiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coefficient", + "romanization": "coefficiente", + "example_sentence_native": "Il coefficiente di attrito è importante in fisica.", + "example_sentence_english": "The coefficient of friction is important in physics.", + "pos": "noun", + "word_frequency": 9397 + }, + { + "word": "compensazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation", + "romanization": "compensazione", + "example_sentence_native": "Ha ricevuto una compensazione per il danno subito.", + "example_sentence_english": "He received compensation for the damage suffered.", + "pos": "noun", + "word_frequency": 9399 + }, + { + "word": "concomitanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concomitance;simultaneous occurrence", + "romanization": "concomitanza", + "example_sentence_native": "C'è stata una concomitanza di eventi che ha portato a questo risultato.", + "example_sentence_english": "There was a concomitance of events that led to this result.", + "pos": "noun", + "word_frequency": 9400 + }, + { + "word": "conoscente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acquaintance", + "romanization": "conoscente", + "example_sentence_native": "Ho incontrato un vecchio conoscente al supermercato.", + "example_sentence_english": "I met an old acquaintance at the supermarket.", + "pos": "noun", + "word_frequency": 9401 + }, + { + "word": "consolidare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to consolidate;to strengthen", + "romanization": "consolidare", + "example_sentence_native": "Dobbiamo consolidare la nostra posizione sul mercato.", + "example_sentence_english": "We need to consolidate our position in the market.", + "pos": "verb", + "word_frequency": 9402 + }, + { + "word": "conteggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "count;tally", + "romanization": "conteggio", + "example_sentence_native": "Il conteggio dei voti è ancora in corso.", + "example_sentence_english": "The vote count is still ongoing.", + "pos": "noun", + "word_frequency": 9403 + }, + { + "word": "coperchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lid;cover", + "romanization": "coperchio", + "example_sentence_native": "Metti il coperchio sulla pentola.", + "example_sentence_english": "Put the lid on the pot.", + "pos": "noun", + "word_frequency": 9404 + }, + { + "word": "decenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decency", + "romanization": "decenza", + "example_sentence_native": "Ha agito con grande decenza in una situazione difficile.", + "example_sentence_english": "He acted with great decency in a difficult situation.", + "pos": "noun", + "word_frequency": 9406 + }, + { + "word": "deficiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficient;idiotic", + "romanization": "deficiente", + "example_sentence_native": "La sua conoscenza dell'argomento è piuttosto deficiente.", + "example_sentence_english": "His knowledge of the subject is quite deficient.", + "pos": "adjective", + "word_frequency": 9407 + }, + { + "word": "deludente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappointing", + "romanization": "deludente", + "example_sentence_native": "Il risultato della partita è stato molto deludente.", + "example_sentence_english": "The outcome of the match was very disappointing.", + "pos": "adjective", + "word_frequency": 9408 + }, + { + "word": "doveroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dutiful;obligatory", + "romanization": "doveroso", + "example_sentence_native": "È doveroso informare le autorità.", + "example_sentence_english": "It is obligatory to inform the authorities.", + "pos": "adjective", + "word_frequency": 9411 + }, + { + "word": "durezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardness;toughness", + "romanization": "durezza", + "example_sentence_native": "La durezza del diamante è eccezionale.", + "example_sentence_english": "The hardness of diamond is exceptional.", + "pos": "noun", + "word_frequency": 9413 + }, + { + "word": "eccitazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excitement;arousal", + "romanization": "eccitazione", + "example_sentence_native": "C'era grande eccitazione prima del concerto.", + "example_sentence_english": "There was great excitement before the concert.", + "pos": "noun", + "word_frequency": 9414 + }, + { + "word": "emblema", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emblem;symbol", + "romanization": "emblema", + "example_sentence_native": "La colomba è un emblema di pace.", + "example_sentence_english": "The dove is an emblem of peace.", + "pos": "noun", + "word_frequency": 9415 + }, + { + "word": "feudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fief;feudal estate", + "romanization": "feudo", + "example_sentence_native": "Il castello era il centro del feudo.", + "example_sentence_english": "The castle was the center of the fief.", + "pos": "noun", + "word_frequency": 9420 + }, + { + "word": "fiocco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bow;ribbon;flake", + "romanization": "fiocco", + "example_sentence_native": "Ha legato un fiocco rosso ai capelli.", + "example_sentence_english": "She tied a red bow in her hair.", + "pos": "noun", + "word_frequency": 9421 + }, + { + "word": "fragola", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "strawberry", + "romanization": "fragola", + "example_sentence_native": "Mi piacciono molto le fragole fresche.", + "example_sentence_english": "I really like fresh strawberries.", + "pos": "noun", + "word_frequency": 9424 + }, + { + "word": "fusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk;barrel;shaft", + "romanization": "fusto", + "example_sentence_native": "Il fusto dell'albero era molto robusto.", + "example_sentence_english": "The tree trunk was very sturdy.", + "pos": "noun", + "word_frequency": 9425 + }, + { + "word": "gattino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kitten", + "romanization": "gattino", + "example_sentence_native": "Il gattino giocava con un gomitolo di lana.", + "example_sentence_english": "The kitten was playing with a ball of yarn.", + "pos": "noun", + "word_frequency": 9426 + }, + { + "word": "generalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generalities;personal details", + "romanization": "generalità", + "example_sentence_native": "Per favore, compila le tue generalità sul modulo.", + "example_sentence_english": "Please fill in your personal details on the form.", + "pos": "noun", + "word_frequency": 9427 + }, + { + "word": "illegittimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illegitimate;unlawful", + "romanization": "illegittimo", + "example_sentence_native": "La decisione è stata dichiarata illegittima.", + "example_sentence_english": "The decision was declared unlawful.", + "pos": "adjective", + "word_frequency": 9432 + }, + { + "word": "impegnativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demanding;challenging", + "romanization": "impegnativo", + "example_sentence_native": "Questo è un compito molto impegnativo.", + "example_sentence_english": "This is a very demanding task.", + "pos": "adjective", + "word_frequency": 9433 + }, + { + "word": "insegna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sign;emblem;banner", + "romanization": "insegna", + "example_sentence_native": "L'insegna del negozio era luminosa.", + "example_sentence_english": "The shop sign was bright.", + "pos": "noun", + "word_frequency": 9434 + }, + { + "word": "inventore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "inventor", + "romanization": "inventore", + "example_sentence_native": "Leonardo da Vinci fu un grande inventore.", + "example_sentence_english": "Leonardo da Vinci was a great inventor.", + "pos": "noun", + "word_frequency": 9435 + }, + { + "word": "ironicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ironically", + "romanization": "ironicamente", + "example_sentence_native": "Ironicamente, ha piovuto proprio il giorno del picnic.", + "example_sentence_english": "Ironically, it rained precisely on the day of the picnic.", + "pos": "adverb", + "word_frequency": 9436 + }, + { + "word": "lapide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tombstone;plaque", + "romanization": "lapide", + "example_sentence_native": "Sulla lapide era incisa una data.", + "example_sentence_english": "A date was engraved on the tombstone.", + "pos": "noun", + "word_frequency": 9439 + }, + { + "word": "macro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "macro", + "romanization": "macro", + "example_sentence_native": "Dobbiamo considerare gli effetti macroeconomici.", + "example_sentence_english": "We must consider the macroeconomic effects.", + "pos": "adjective", + "word_frequency": 9442 + }, + { + "word": "marziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "martial", + "romanization": "marziale", + "example_sentence_native": "Hanno dichiarato la legge marziale.", + "example_sentence_english": "They declared martial law.", + "pos": "adjective", + "word_frequency": 9444 + }, + { + "word": "menzionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mentioned", + "romanization": "menzionato", + "example_sentence_native": "Il problema menzionato è stato risolto.", + "example_sentence_english": "The mentioned problem has been solved.", + "pos": "adjective", + "word_frequency": 9447 + }, + { + "word": "missionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missionary", + "romanization": "missionario", + "example_sentence_native": "Il missionario ha dedicato la sua vita agli altri.", + "example_sentence_english": "The missionary dedicated his life to others.", + "pos": "noun", + "word_frequency": 9450 + }, + { + "word": "mistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mystical", + "romanization": "mistico", + "example_sentence_native": "Ha avuto un'esperienza mistica.", + "example_sentence_english": "He had a mystical experience.", + "pos": "adjective", + "word_frequency": 9451 + }, + { + "word": "musa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muse", + "romanization": "musa", + "example_sentence_native": "La sua musa ispiratrice era la natura.", + "example_sentence_english": "His inspiring muse was nature.", + "pos": "noun", + "word_frequency": 9452 + }, + { + "word": "neurone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neuron", + "romanization": "neurone", + "example_sentence_native": "Il cervello è composto da miliardi di neuroni.", + "example_sentence_english": "The brain is composed of billions of neurons.", + "pos": "noun", + "word_frequency": 9453 + }, + { + "word": "numerico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numeric", + "romanization": "numerico", + "example_sentence_native": "Inserisci il valore numerico nel campo.", + "example_sentence_english": "Enter the numeric value in the field.", + "pos": "adjective", + "word_frequency": 9454 + }, + { + "word": "occasionalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "occasionally", + "romanization": "occasionalmente", + "example_sentence_native": "Lo vedo occasionalmente al supermercato.", + "example_sentence_english": "I see him occasionally at the supermarket.", + "pos": "adverb", + "word_frequency": 9455 + }, + { + "word": "partorire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to give birth", + "romanization": "partorire", + "example_sentence_native": "Ha partorito un bambino sano.", + "example_sentence_english": "She gave birth to a healthy baby.", + "pos": "verb", + "word_frequency": 9457 + }, + { + "word": "pesto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pesto", + "romanization": "pesto", + "example_sentence_native": "Mi piace la pasta al pesto.", + "example_sentence_english": "I like pasta with pesto.", + "pos": "noun", + "word_frequency": 9459 + }, + { + "word": "pigro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lazy", + "romanization": "pigro", + "example_sentence_native": "È troppo pigro per fare esercizio.", + "example_sentence_english": "He is too lazy to exercise.", + "pos": "adjective", + "word_frequency": 9461 + }, + { + "word": "piuma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feather", + "romanization": "piuma", + "example_sentence_native": "Ho trovato una piuma di uccello.", + "example_sentence_english": "I found a bird feather.", + "pos": "noun", + "word_frequency": 9462 + }, + { + "word": "presupporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to presuppose", + "romanization": "presupporre", + "example_sentence_native": "Non possiamo presupporre nulla senza prove.", + "example_sentence_english": "We cannot presuppose anything without evidence.", + "pos": "verb", + "word_frequency": 9463 + }, + { + "word": "prolungare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prolong", + "romanization": "prolungare", + "example_sentence_native": "Dobbiamo prolungare il contratto.", + "example_sentence_english": "We need to prolong the contract.", + "pos": "verb", + "word_frequency": 9464 + }, + { + "word": "psiche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psyche", + "romanization": "psiche", + "example_sentence_native": "La psiche umana è complessa.", + "example_sentence_english": "The human psyche is complex.", + "pos": "noun", + "word_frequency": 9465 + }, + { + "word": "psichiatrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychiatric", + "romanization": "psichiatrico", + "example_sentence_native": "Ha ricevuto cure psichiatriche.", + "example_sentence_english": "He received psychiatric care.", + "pos": "adjective", + "word_frequency": 9466 + }, + { + "word": "pubblicizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to advertise", + "romanization": "pubblicizzare", + "example_sentence_native": "Devono pubblicizzare il nuovo prodotto.", + "example_sentence_english": "They need to advertise the new product.", + "pos": "verb", + "word_frequency": 9467 + }, + { + "word": "recinzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fence", + "romanization": "recinzione", + "example_sentence_native": "La recinzione è stata danneggiata dal vento.", + "example_sentence_english": "The fence was damaged by the wind.", + "pos": "noun", + "word_frequency": 9471 + }, + { + "word": "ricotta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ricotta cheese", + "romanization": "ricotta", + "example_sentence_native": "Ho comprato della ricotta fresca.", + "example_sentence_english": "I bought some fresh ricotta cheese.", + "pos": "noun", + "word_frequency": 9473 + }, + { + "word": "rimonta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comeback", + "romanization": "rimonta", + "example_sentence_native": "La squadra ha fatto una rimonta incredibile.", + "example_sentence_english": "The team made an incredible comeback.", + "pos": "noun", + "word_frequency": 9474 + }, + { + "word": "risaputo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-known", + "romanization": "risaputo", + "example_sentence_native": "È risaputo che fumo fa male.", + "example_sentence_english": "It is well-known that smoking is bad for you.", + "pos": "adjective", + "word_frequency": 9475 + }, + { + "word": "riservatezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidentiality", + "romanization": "riservatezza", + "example_sentence_native": "Garantiamo la massima riservatezza dei dati.", + "example_sentence_english": "We guarantee maximum data confidentiality.", + "pos": "noun", + "word_frequency": 9476 + }, + { + "word": "riunirsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reunite", + "romanization": "riunirsi", + "example_sentence_native": "La famiglia si riunirà per Natale.", + "example_sentence_english": "The family will reunite for Christmas.", + "pos": "verb", + "word_frequency": 9477 + }, + { + "word": "sconfitto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defeated", + "romanization": "sconfitto", + "example_sentence_native": "Si sentiva sconfitto dopo la partita.", + "example_sentence_english": "He felt defeated after the match.", + "pos": "adjective", + "word_frequency": 9479 + }, + { + "word": "sensibilizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise awareness;to sensitize", + "romanization": "sensibilizzare", + "example_sentence_native": "Dobbiamo sensibilizzare le persone sull'importanza del riciclo.", + "example_sentence_english": "We need to raise awareness among people about the importance of recycling.", + "pos": "verb", + "word_frequency": 9481 + }, + { + "word": "spacciatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug dealer", + "romanization": "spacciatore", + "example_sentence_native": "La polizia ha arrestato uno spacciatore nel quartiere.", + "example_sentence_english": "The police arrested a drug dealer in the neighborhood.", + "pos": "noun", + "word_frequency": 9483 + }, + { + "word": "spoglia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remains;spoils", + "romanization": "spoglia", + "example_sentence_native": "Le spoglie del santo sono conservate nella chiesa.", + "example_sentence_english": "The remains of the saint are preserved in the church.", + "pos": "noun", + "word_frequency": 9484 + }, + { + "word": "telespettatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viewer;TV viewer", + "romanization": "telespettatore", + "example_sentence_native": "I telespettatori hanno apprezzato il nuovo programma.", + "example_sentence_english": "The viewers appreciated the new program.", + "pos": "noun", + "word_frequency": 9488 + }, + { + "word": "twittare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tweet", + "romanization": "twittare", + "example_sentence_native": "Molte persone amano twittare le loro opinioni.", + "example_sentence_english": "Many people love to tweet their opinions.", + "pos": "verb", + "word_frequency": 9491 + }, + { + "word": "utenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "user base;utility (e.g.;water;electricity supply)", + "romanization": "utenza", + "example_sentence_native": "L'utenza telefonica è aumentata negli ultimi anni.", + "example_sentence_english": "The telephone user base has increased in recent years.", + "pos": "noun", + "word_frequency": 9492 + }, + { + "word": "valsa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waltz", + "romanization": "valsa", + "example_sentence_native": "Hanno ballato una valsa romantica.", + "example_sentence_english": "They danced a romantic waltz.", + "pos": "noun", + "word_frequency": 9493 + }, + { + "word": "vigere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be in force;to be in effect", + "romanization": "vigere", + "example_sentence_native": "La legge è ancora in vigore.", + "example_sentence_english": "The law is still in force.", + "pos": "verb", + "word_frequency": 9496 + }, + { + "word": "vitalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vitality", + "romanization": "vitalità", + "example_sentence_native": "Ha dimostrato una grande vitalità nonostante l'età.", + "example_sentence_english": "He showed great vitality despite his age.", + "pos": "noun", + "word_frequency": 9497 + }, + { + "word": "vodka", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vodka", + "romanization": "vodka", + "example_sentence_native": "Ha ordinato un bicchiere di vodka.", + "example_sentence_english": "He ordered a glass of vodka.", + "pos": "noun", + "word_frequency": 9498 + }, + { + "word": "voucher", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "voucher", + "romanization": "voucher", + "example_sentence_native": "Ho un voucher per uno sconto al ristorante.", + "example_sentence_english": "I have a voucher for a discount at the restaurant.", + "pos": "noun", + "word_frequency": 9499 + }, + { + "word": "zoom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zoom", + "romanization": "zoom", + "example_sentence_native": "L'obiettivo della fotocamera ha un ottimo zoom.", + "example_sentence_english": "The camera lens has a great zoom.", + "pos": "noun", + "word_frequency": 9502 + }, + { + "word": "adesivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticker;adhesive", + "romanization": "adesivo", + "example_sentence_native": "Ho messo un adesivo sul mio computer portatile.", + "example_sentence_english": "I put a sticker on my laptop.", + "pos": "noun", + "word_frequency": 9504 + }, + { + "word": "affondare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sink;to scuttle", + "romanization": "affondare", + "example_sentence_native": "La nave ha iniziato ad affondare dopo l'impatto.", + "example_sentence_english": "The ship began to sink after the impact.", + "pos": "verb", + "word_frequency": 9505 + }, + { + "word": "agguato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambush", + "romanization": "agguato", + "example_sentence_native": "Sono caduti in un agguato nella foresta.", + "example_sentence_english": "They fell into an ambush in the forest.", + "pos": "noun", + "word_frequency": 9506 + }, + { + "word": "agonia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agonizing;agony;death throes", + "romanization": "agonia", + "example_sentence_native": "Il paziente era in agonia per ore.", + "example_sentence_english": "The patient was in agony for hours.", + "pos": "noun", + "word_frequency": 9507 + }, + { + "word": "all'indietro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backwards", + "romanization": "all'indietro", + "example_sentence_native": "Ha fatto un passo all'indietro.", + "example_sentence_english": "He took a step backwards.", + "pos": "adverb", + "word_frequency": 9513 + }, + { + "word": "analogia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analogy", + "romanization": "analogia", + "example_sentence_native": "C'è un'analogia tra le due situazioni.", + "example_sentence_english": "There is an analogy between the two situations.", + "pos": "noun", + "word_frequency": 9516 + }, + { + "word": "anticipare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to anticipate;to advance;to pay in advance", + "romanization": "anticipare", + "example_sentence_native": "Dobbiamo anticipare la partenza di un'ora.", + "example_sentence_english": "We need to advance the departure by an hour.", + "pos": "verb", + "word_frequency": 9517 + }, + { + "word": "appresso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "after;behind;along with", + "romanization": "appresso", + "example_sentence_native": "Portami appresso il tuo libro.", + "example_sentence_english": "Bring your book along with you.", + "pos": "adverb", + "word_frequency": 9518 + }, + { + "word": "argilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clay", + "romanization": "argilla", + "example_sentence_native": "L'artista ha modellato la statua con l'argilla.", + "example_sentence_english": "The artist molded the statue with clay.", + "pos": "noun", + "word_frequency": 9519 + }, + { + "word": "asciutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dry", + "romanization": "asciutto", + "example_sentence_native": "Il bucato è asciutto, puoi ritirarlo.", + "example_sentence_english": "The laundry is dry, you can take it in.", + "pos": "adjective", + "word_frequency": 9520 + }, + { + "word": "assoluzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquittal;absolution", + "romanization": "assoluzione", + "example_sentence_native": "Il giudice ha pronunciato l'assoluzione per mancanza di prove.", + "example_sentence_english": "The judge pronounced the acquittal due to lack of evidence.", + "pos": "noun", + "word_frequency": 9521 + }, + { + "word": "avatar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avatar", + "romanization": "avatar", + "example_sentence_native": "Puoi personalizzare il tuo avatar nel gioco.", + "example_sentence_english": "You can customize your avatar in the game.", + "pos": "noun", + "word_frequency": 9523 + }, + { + "word": "bluetooth", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Bluetooth", + "romanization": "Bluetooth", + "example_sentence_native": "Collega le cuffie tramite Bluetooth.", + "example_sentence_english": "Connect the headphones via Bluetooth.", + "pos": "noun", + "word_frequency": 9525 + }, + { + "word": "bocciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "failed (an exam);rejected", + "romanization": "bocciato", + "example_sentence_native": "È stato bocciato all'esame di matematica.", + "example_sentence_english": "He failed the math exam.", + "pos": "adjective", + "word_frequency": 9526 + }, + { + "word": "bulgaro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Bulgarian", + "romanization": "bulgaro", + "example_sentence_native": "Parla fluentemente il bulgaro.", + "example_sentence_english": "He speaks Bulgarian fluently.", + "pos": "adjective", + "word_frequency": 9528 + }, + { + "word": "chiacchierata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat;talk", + "romanization": "chiacchierata", + "example_sentence_native": "Abbiamo fatto una lunga chiacchierata al caffè.", + "example_sentence_english": "We had a long chat at the cafe.", + "pos": "noun", + "word_frequency": 9531 + }, + { + "word": "chiamarsi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to be called;to call oneself", + "romanization": "chiamarsi", + "example_sentence_native": "Mi chiamo Marco.", + "example_sentence_english": "My name is Marco.", + "pos": "verb", + "word_frequency": 9532 + }, + { + "word": "clone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clone", + "romanization": "clone", + "example_sentence_native": "Hanno creato un clone della pecora Dolly.", + "example_sentence_english": "They created a clone of Dolly the sheep.", + "pos": "noun", + "word_frequency": 9534 + }, + { + "word": "commercializzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commercialization;marketing", + "romanization": "commercializzazione", + "example_sentence_native": "La commercializzazione del nuovo prodotto è prevista per l'anno prossimo.", + "example_sentence_english": "The commercialization of the new product is planned for next year.", + "pos": "noun", + "word_frequency": 9535 + }, + { + "word": "concorrere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compete;to contribute", + "romanization": "concorrere", + "example_sentence_native": "Molte aziende concorrono per vincere l'appalto.", + "example_sentence_english": "Many companies compete to win the contract.", + "pos": "verb", + "word_frequency": 9536 + }, + { + "word": "consentito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allowed;permitted", + "romanization": "consentito", + "example_sentence_native": "L'accesso è consentito solo al personale autorizzato.", + "example_sentence_english": "Access is permitted only to authorized personnel.", + "pos": "adjective", + "word_frequency": 9537 + }, + { + "word": "convoglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convoy;train (of cars;wagons)", + "romanization": "convoglio", + "example_sentence_native": "Il convoglio ferroviario è arrivato in ritardo.", + "example_sentence_english": "The train convoy arrived late.", + "pos": "noun", + "word_frequency": 9538 + }, + { + "word": "cookie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cookie (web)", + "romanization": "cookie", + "example_sentence_native": "Questo sito utilizza i cookie per migliorare l'esperienza utente.", + "example_sentence_english": "This site uses cookies to improve user experience.", + "pos": "noun", + "word_frequency": 9539 + }, + { + "word": "crosta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crust;scab;rind", + "romanization": "crosta", + "example_sentence_native": "La crosta del pane è croccante.", + "example_sentence_english": "The bread crust is crispy.", + "pos": "noun", + "word_frequency": 9541 + }, + { + "word": "culturalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culturally", + "romanization": "culturalmente", + "example_sentence_native": "È un paese culturalmente ricco e diversificato.", + "example_sentence_english": "It is a culturally rich and diverse country.", + "pos": "adverb", + "word_frequency": 9542 + }, + { + "word": "decorato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorated", + "romanization": "decorato", + "example_sentence_native": "La torta era splendidamente decorata.", + "example_sentence_english": "The cake was beautifully decorated.", + "pos": "adjective", + "word_frequency": 9543 + }, + { + "word": "depositato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposited;filed;registered", + "romanization": "depositato", + "example_sentence_native": "Il brevetto è stato depositato l'anno scorso.", + "example_sentence_english": "The patent was filed last year.", + "pos": "adjective", + "word_frequency": 9548 + }, + { + "word": "derivazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derivation;origin", + "romanization": "derivazione", + "example_sentence_native": "La parola ha una derivazione latina.", + "example_sentence_english": "The word has a Latin derivation.", + "pos": "noun", + "word_frequency": 9549 + }, + { + "word": "dicitura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wording;phrasing;inscription", + "romanization": "dicitura", + "example_sentence_native": "La dicitura sull'etichetta è poco chiara.", + "example_sentence_english": "The wording on the label is unclear.", + "pos": "noun", + "word_frequency": 9550 + }, + { + "word": "diffidenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distrust;suspicion", + "romanization": "diffidenza", + "example_sentence_native": "C'è molta diffidenza tra i due gruppi.", + "example_sentence_english": "There is a lot of distrust between the two groups.", + "pos": "noun", + "word_frequency": 9551 + }, + { + "word": "dispiaciuto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sorry;regretful", + "romanization": "dispiaciuto", + "example_sentence_native": "Sono molto dispiaciuto per l'accaduto.", + "example_sentence_english": "I am very sorry for what happened.", + "pos": "adjective", + "word_frequency": 9552 + }, + { + "word": "distratto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "distracted;absent-minded", + "romanization": "distratto", + "example_sentence_native": "Era così distratto che non ha sentito la domanda.", + "example_sentence_english": "He was so distracted that he didn't hear the question.", + "pos": "adjective", + "word_frequency": 9553 + }, + { + "word": "documentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "documented;well-researched", + "romanization": "documentato", + "example_sentence_native": "La sua ricerca è molto ben documentata.", + "example_sentence_english": "His research is very well documented.", + "pos": "adjective", + "word_frequency": 9554 + }, + { + "word": "echo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "echo", + "romanization": "echo", + "example_sentence_native": "C'era un forte eco nella grotta.", + "example_sentence_english": "There was a strong echo in the cave.", + "pos": "noun", + "word_frequency": 9555 + }, + { + "word": "elaborato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elaborate;processed;complex", + "romanization": "elaborato", + "example_sentence_native": "Ha presentato un progetto molto elaborato.", + "example_sentence_english": "He presented a very elaborate project.", + "pos": "adjective", + "word_frequency": 9556 + }, + { + "word": "esenzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemption", + "romanization": "esenzione", + "example_sentence_native": "Ha richiesto l'esenzione dal pagamento delle tasse.", + "example_sentence_english": "He requested exemption from tax payment.", + "pos": "noun", + "word_frequency": 9557 + }, + { + "word": "fabbro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blacksmith;locksmith", + "romanization": "fabbro", + "example_sentence_native": "Il fabbro ha riparato il cancello di ferro.", + "example_sentence_english": "The blacksmith repaired the iron gate.", + "pos": "noun", + "word_frequency": 9558 + }, + { + "word": "fazzoletto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handkerchief;tissue", + "romanization": "fazzoletto", + "example_sentence_native": "Mi ha offerto un fazzoletto quando ho starnutito.", + "example_sentence_english": "He offered me a handkerchief when I sneezed.", + "pos": "noun", + "word_frequency": 9559 + }, + { + "word": "fioritura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flowering;bloom", + "romanization": "fioritura", + "example_sentence_native": "La fioritura dei ciliegi è uno spettacolo meraviglioso.", + "example_sentence_english": "The cherry blossom is a wonderful sight.", + "pos": "noun", + "word_frequency": 9560 + }, + { + "word": "graffito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graffito;scratch", + "romanization": "graffito", + "example_sentence_native": "C'è un nuovo graffito sul muro del sottopassaggio.", + "example_sentence_english": "There's a new piece of graffiti on the underpass wall.", + "pos": "noun", + "word_frequency": 9564 + }, + { + "word": "immersione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immersion;dive", + "romanization": "immersione", + "example_sentence_native": "Ha fatto la sua prima immersione subacquea.", + "example_sentence_english": "He did his first underwater dive.", + "pos": "noun", + "word_frequency": 9569 + }, + { + "word": "incolumità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "safety;security", + "romanization": "incolumità", + "example_sentence_native": "La sua incolumità è la nostra priorità.", + "example_sentence_english": "His safety is our priority.", + "pos": "noun", + "word_frequency": 9570 + }, + { + "word": "innanzi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forward;ahead", + "romanization": "innanzi", + "example_sentence_native": "Andiamo innanzi con il nostro lavoro.", + "example_sentence_english": "Let's go forward with our work.", + "pos": "adverb", + "word_frequency": 9571 + }, + { + "word": "input", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "input", + "romanization": "input", + "example_sentence_native": "Abbiamo bisogno del tuo input per completare il progetto.", + "example_sentence_english": "We need your input to complete the project.", + "pos": "noun", + "word_frequency": 9572 + }, + { + "word": "instaurare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to establish;to set up", + "romanization": "instaurare", + "example_sentence_native": "È importante instaurare un buon rapporto con i colleghi.", + "example_sentence_english": "It's important to establish a good relationship with colleagues.", + "pos": "verb", + "word_frequency": 9573 + }, + { + "word": "insurrezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurrection;uprising", + "romanization": "insurrezione", + "example_sentence_native": "L'insurrezione fu repressa con la forza.", + "example_sentence_english": "The insurrection was suppressed by force.", + "pos": "noun", + "word_frequency": 9574 + }, + { + "word": "intermedio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intermediate", + "romanization": "intermedio", + "example_sentence_native": "Questo corso è adatto a studenti di livello intermedio.", + "example_sentence_english": "This course is suitable for intermediate level students.", + "pos": "adjective", + "word_frequency": 9575 + }, + { + "word": "intimità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimacy", + "romanization": "intimità", + "example_sentence_native": "L'intimità è fondamentale in una relazione.", + "example_sentence_english": "Intimacy is fundamental in a relationship.", + "pos": "noun", + "word_frequency": 9576 + }, + { + "word": "inventario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventory;stock", + "romanization": "inventario", + "example_sentence_native": "Dobbiamo fare l'inventario del magazzino.", + "example_sentence_english": "We need to take stock of the warehouse.", + "pos": "noun", + "word_frequency": 9577 + }, + { + "word": "inverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inverse;reverse", + "romanization": "inverso", + "example_sentence_native": "L'effetto è stato l'inverso di quello desiderato.", + "example_sentence_english": "The effect was the inverse of what was desired.", + "pos": "adjective", + "word_frequency": 9578 + }, + { + "word": "ipotizzare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hypothesize;to assume", + "romanization": "ipotizzare", + "example_sentence_native": "Possiamo ipotizzare che la causa sia questa.", + "example_sentence_english": "We can hypothesize that this is the cause.", + "pos": "verb", + "word_frequency": 9579 + }, + { + "word": "istantaneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instantaneous;instant", + "romanization": "istantaneo", + "example_sentence_native": "Ho ricevuto una risposta istantanea alla mia email.", + "example_sentence_english": "I received an instantaneous reply to my email.", + "pos": "adjective", + "word_frequency": 9580 + }, + { + "word": "legione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legion", + "romanization": "legione", + "example_sentence_native": "La legione romana era una potente unità militare.", + "example_sentence_english": "The Roman legion was a powerful military unit.", + "pos": "noun", + "word_frequency": 9585 + }, + { + "word": "lessico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lexicon;vocabulary", + "romanization": "lessico", + "example_sentence_native": "Il suo lessico è molto ampio e preciso.", + "example_sentence_english": "His vocabulary is very extensive and precise.", + "pos": "noun", + "word_frequency": 9586 + }, + { + "word": "localmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locally", + "romanization": "localmente", + "example_sentence_native": "Il prodotto è disponibile solo localmente.", + "example_sentence_english": "The product is only available locally.", + "pos": "adverb", + "word_frequency": 9588 + }, + { + "word": "lodare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to praise;to commend", + "romanization": "lodare", + "example_sentence_native": "Il professore ha lodato il suo impegno.", + "example_sentence_english": "The professor praised his commitment.", + "pos": "verb", + "word_frequency": 9589 + }, + { + "word": "malesia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Malaysia", + "romanization": "Malesia", + "example_sentence_native": "La Malesia è un paese del sud-est asiatico.", + "example_sentence_english": "Malaysia is a country in Southeast Asia.", + "pos": "noun", + "word_frequency": 9591 + }, + { + "word": "miliardario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "billionaire", + "romanization": "miliardario", + "example_sentence_native": "È diventato un miliardario grazie alla sua azienda.", + "example_sentence_english": "He became a billionaire thanks to his company.", + "pos": "noun", + "word_frequency": 9593 + }, + { + "word": "minatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miner", + "romanization": "minatore", + "example_sentence_native": "Il minatore lavora nelle gallerie sotterranee.", + "example_sentence_english": "The miner works in underground tunnels.", + "pos": "noun", + "word_frequency": 9594 + }, + { + "word": "mite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mild;gentle", + "romanization": "mite", + "example_sentence_native": "Il clima in questa regione è molto mite.", + "example_sentence_english": "The climate in this region is very mild.", + "pos": "adjective", + "word_frequency": 9595 + }, + { + "word": "monologo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monologue", + "romanization": "monologo", + "example_sentence_native": "L'attore ha recitato un lungo monologo.", + "example_sentence_english": "The actor performed a long monologue.", + "pos": "noun", + "word_frequency": 9596 + }, + { + "word": "motivato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motivated", + "romanization": "motivato", + "example_sentence_native": "È uno studente molto motivato e diligente.", + "example_sentence_english": "He is a very motivated and diligent student.", + "pos": "adjective", + "word_frequency": 9597 + }, + { + "word": "navigatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navigator;browser", + "romanization": "navigatore", + "example_sentence_native": "Il navigatore satellitare mi ha aiutato a trovare la strada.", + "example_sentence_english": "The satellite navigator helped me find the way.", + "pos": "noun", + "word_frequency": 9601 + }, + { + "word": "oasi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oasis", + "romanization": "oasi", + "example_sentence_native": "Abbiamo trovato un'oasi nel deserto.", + "example_sentence_english": "We found an oasis in the desert.", + "pos": "noun", + "word_frequency": 9603 + }, + { + "word": "oculare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ocular;eyewitness", + "romanization": "oculare", + "example_sentence_native": "La testimonianza oculare è stata fondamentale per il caso.", + "example_sentence_english": "The eyewitness testimony was crucial for the case.", + "pos": "adjective", + "word_frequency": 9604 + }, + { + "word": "orecchino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "earring", + "romanization": "orecchino", + "example_sentence_native": "Ha perso un orecchino mentre ballava.", + "example_sentence_english": "She lost an earring while dancing.", + "pos": "noun", + "word_frequency": 9605 + }, + { + "word": "peculiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peculiar;distinctive", + "romanization": "peculiare", + "example_sentence_native": "Il suo stile è molto peculiare.", + "example_sentence_english": "His style is very peculiar.", + "pos": "adjective", + "word_frequency": 9606 + }, + { + "word": "peggioramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worsening;deterioration", + "romanization": "peggioramento", + "example_sentence_native": "C'è stato un peggioramento delle condizioni meteorologiche.", + "example_sentence_english": "There has been a worsening of the weather conditions.", + "pos": "noun", + "word_frequency": 9607 + }, + { + "word": "pendolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commuter", + "romanization": "pendolare", + "example_sentence_native": "Molti pendolari usano il treno per andare al lavoro.", + "example_sentence_english": "Many commuters use the train to go to work.", + "pos": "noun", + "word_frequency": 9608 + }, + { + "word": "perito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expert;surveyor;loss adjuster", + "romanization": "perito", + "example_sentence_native": "Il perito ha valutato i danni all'auto.", + "example_sentence_english": "The expert assessed the damage to the car.", + "pos": "noun", + "word_frequency": 9609 + }, + { + "word": "pertinente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pertinent;relevant", + "romanization": "pertinente", + "example_sentence_native": "La tua osservazione è molto pertinente.", + "example_sentence_english": "Your observation is very pertinent.", + "pos": "adjective", + "word_frequency": 9610 + }, + { + "word": "pianista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pianist", + "romanization": "pianista", + "example_sentence_native": "La pianista ha suonato un pezzo bellissimo.", + "example_sentence_english": "The pianist played a beautiful piece.", + "pos": "noun", + "word_frequency": 9611 + }, + { + "word": "piantare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to plant;to abandon (colloquial)", + "romanization": "piantare", + "example_sentence_native": "Dobbiamo piantare i fiori in giardino.", + "example_sentence_english": "We need to plant the flowers in the garden.", + "pos": "verb", + "word_frequency": 9612 + }, + { + "word": "pipì", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pee;urine", + "romanization": "pipì", + "example_sentence_native": "Il bambino ha fatto la pipì nel vasino.", + "example_sentence_english": "The child peed in the potty.", + "pos": "noun", + "word_frequency": 9613 + }, + { + "word": "playoff", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playoff", + "romanization": "playoff", + "example_sentence_native": "La squadra si è qualificata per i playoff.", + "example_sentence_english": "The team qualified for the playoffs.", + "pos": "noun", + "word_frequency": 9614 + }, + { + "word": "polenta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polenta", + "romanization": "polenta", + "example_sentence_native": "A cena abbiamo mangiato la polenta con il ragù.", + "example_sentence_english": "For dinner, we ate polenta with ragù.", + "pos": "noun", + "word_frequency": 9616 + }, + { + "word": "polmonare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulmonary", + "romanization": "polmonare", + "example_sentence_native": "Ha una malattia polmonare cronica.", + "example_sentence_english": "He has a chronic pulmonary disease.", + "pos": "adjective", + "word_frequency": 9617 + }, + { + "word": "polpetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "meatball", + "romanization": "polpetta", + "example_sentence_native": "Mi piacciono molto le polpette al sugo.", + "example_sentence_english": "I really like meatballs in sauce.", + "pos": "noun", + "word_frequency": 9618 + }, + { + "word": "predisposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predisposition;inclination", + "romanization": "predisposizione", + "example_sentence_native": "Ha una predisposizione naturale per la musica.", + "example_sentence_english": "She has a natural predisposition for music.", + "pos": "noun", + "word_frequency": 9619 + }, + { + "word": "preventivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preventively;beforehand", + "romanization": "preventivamente", + "example_sentence_native": "Dobbiamo agire preventivamente per evitare problemi.", + "example_sentence_english": "We must act preventively to avoid problems.", + "pos": "adverb", + "word_frequency": 9620 + }, + { + "word": "radiofonico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radio (adj.);broadcast", + "romanization": "radiofonico", + "example_sentence_native": "Ha una voce molto radiofonica.", + "example_sentence_english": "He has a very radio-friendly voice.", + "pos": "adjective", + "word_frequency": 9622 + }, + { + "word": "raffigurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depict;to represent", + "romanization": "raffigurare", + "example_sentence_native": "Il dipinto raffigura una scena di vita quotidiana.", + "example_sentence_english": "The painting depicts a scene of daily life.", + "pos": "verb", + "word_frequency": 9623 + }, + { + "word": "rammarico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regret;sorrow", + "romanization": "rammarico", + "example_sentence_native": "Provo un profondo rammarico per l'accaduto.", + "example_sentence_english": "I feel deep regret for what happened.", + "pos": "noun", + "word_frequency": 9624 + }, + { + "word": "reggente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regent;ruling", + "romanization": "reggente", + "example_sentence_native": "La principessa era la reggente del regno.", + "example_sentence_english": "The princess was the regent of the kingdom.", + "pos": "adjective", + "word_frequency": 9626 + }, + { + "word": "regolamentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulatory;standard", + "romanization": "regolamentare", + "example_sentence_native": "Dobbiamo seguire le procedure regolamentari.", + "example_sentence_english": "We must follow the regulatory procedures.", + "pos": "adjective", + "word_frequency": 9627 + }, + { + "word": "regolatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulator;controller", + "romanization": "regolatore", + "example_sentence_native": "Il regolatore di pressione è rotto.", + "example_sentence_english": "The pressure regulator is broken.", + "pos": "noun", + "word_frequency": 9628 + }, + { + "word": "ridare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to give back;to return", + "romanization": "ridare", + "example_sentence_native": "Devi ridarmi il libro che ti ho prestato.", + "example_sentence_english": "You must give me back the book I lent you.", + "pos": "verb", + "word_frequency": 9630 + }, + { + "word": "rimanente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remaining;leftover", + "romanization": "rimanente", + "example_sentence_native": "Abbiamo mangiato la parte rimanente della torta.", + "example_sentence_english": "We ate the remaining part of the cake.", + "pos": "adjective", + "word_frequency": 9631 + }, + { + "word": "ripensare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rethink;to reconsider", + "romanization": "ripensare", + "example_sentence_native": "Devo ripensare alla mia decisione.", + "example_sentence_english": "I need to rethink my decision.", + "pos": "verb", + "word_frequency": 9632 + }, + { + "word": "saliva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saliva", + "romanization": "saliva", + "example_sentence_native": "La saliva aiuta la digestione.", + "example_sentence_english": "Saliva helps digestion.", + "pos": "noun", + "word_frequency": 9634 + }, + { + "word": "scettico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skeptical", + "romanization": "scettico", + "example_sentence_native": "Sono scettico riguardo a questa proposta.", + "example_sentence_english": "I am skeptical about this proposal.", + "pos": "adjective", + "word_frequency": 9637 + }, + { + "word": "scherma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fencing", + "romanization": "scherma", + "example_sentence_native": "Mio fratello pratica la scherma da anni.", + "example_sentence_english": "My brother has been practicing fencing for years.", + "pos": "noun", + "word_frequency": 9638 + }, + { + "word": "scusarsi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to apologize", + "romanization": "scusarsi", + "example_sentence_native": "Dovresti scusarti per il tuo comportamento.", + "example_sentence_english": "You should apologize for your behavior.", + "pos": "verb", + "word_frequency": 9639 + }, + { + "word": "selva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forest;wood", + "romanization": "selva", + "example_sentence_native": "Si perse nella selva oscura.", + "example_sentence_english": "He got lost in the dark forest.", + "pos": "noun", + "word_frequency": 9640 + }, + { + "word": "semina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sowing;planting", + "romanization": "semina", + "example_sentence_native": "La semina del grano avviene in autunno.", + "example_sentence_english": "The sowing of wheat takes place in autumn.", + "pos": "noun", + "word_frequency": 9641 + }, + { + "word": "sepolcro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tomb;sepulchre", + "romanization": "sepolcro", + "example_sentence_native": "Il sepolcro era antico e imponente.", + "example_sentence_english": "The tomb was ancient and imposing.", + "pos": "noun", + "word_frequency": 9642 + }, + { + "word": "sequestrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seize;to confiscate;to kidnap", + "romanization": "sequestrare", + "example_sentence_native": "La polizia ha sequestrato la merce contraffatta.", + "example_sentence_english": "The police seized the counterfeit goods.", + "pos": "verb", + "word_frequency": 9643 + }, + { + "word": "sessismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sexism", + "romanization": "sessismo", + "example_sentence_native": "Dobbiamo combattere ogni forma di sessismo.", + "example_sentence_english": "We must fight every form of sexism.", + "pos": "noun", + "word_frequency": 9644 + }, + { + "word": "sierra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountain range;sierra", + "romanization": "sierra", + "example_sentence_native": "Hanno attraversato la sierra per raggiungere il villaggio.", + "example_sentence_english": "They crossed the mountain range to reach the village.", + "pos": "noun", + "word_frequency": 9645 + }, + { + "word": "snack", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack", + "romanization": "snack", + "example_sentence_native": "Ho preso uno snack veloce prima di uscire.", + "example_sentence_english": "I had a quick snack before going out.", + "pos": "noun", + "word_frequency": 9646 + }, + { + "word": "sorpasso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overtaking;passing", + "romanization": "sorpasso", + "example_sentence_native": "Il sorpasso in curva è pericoloso.", + "example_sentence_english": "Overtaking on a bend is dangerous.", + "pos": "noun", + "word_frequency": 9648 + }, + { + "word": "sorpreso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "surprised", + "romanization": "sorpreso", + "example_sentence_native": "Ero molto sorpreso di vederlo lì.", + "example_sentence_english": "I was very surprised to see him there.", + "pos": "adjective", + "word_frequency": 9649 + }, + { + "word": "sostentamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sustenance;livelihood", + "romanization": "sostentamento", + "example_sentence_native": "Cercava un modo per guadagnarsi il sostentamento.", + "example_sentence_english": "He was looking for a way to earn his livelihood.", + "pos": "noun", + "word_frequency": 9650 + }, + { + "word": "spiacevole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpleasant;disagreeable", + "romanization": "spiacevole", + "example_sentence_native": "È stata una situazione spiacevole.", + "example_sentence_english": "It was an unpleasant situation.", + "pos": "adjective", + "word_frequency": 9651 + }, + { + "word": "stellare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stellar;star-like", + "romanization": "stellare", + "example_sentence_native": "Hanno osservato un fenomeno stellare raro.", + "example_sentence_english": "They observed a rare stellar phenomenon.", + "pos": "adjective", + "word_frequency": 9653 + }, + { + "word": "terminal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terminal", + "romanization": "terminal", + "example_sentence_native": "Il volo parte dal terminal 3.", + "example_sentence_english": "The flight departs from terminal 3.", + "pos": "noun", + "word_frequency": 9654 + }, + { + "word": "terroristico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrorist (adj.)", + "romanization": "terroristico", + "example_sentence_native": "Hanno sventato un attacco terroristico.", + "example_sentence_english": "They foiled a terrorist attack.", + "pos": "adjective", + "word_frequency": 9655 + }, + { + "word": "turbato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbed;troubled;upset", + "romanization": "turbato", + "example_sentence_native": "Era visibilmente turbato dalla notizia.", + "example_sentence_english": "He was visibly troubled by the news.", + "pos": "adjective", + "word_frequency": 9658 + }, + { + "word": "turbine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbine;whirlwind", + "romanization": "turbine", + "example_sentence_native": "La centrale elettrica usa grandi turbine.", + "example_sentence_english": "The power plant uses large turbines.", + "pos": "noun", + "word_frequency": 9659 + }, + { + "word": "ubicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "location;whereabouts", + "romanization": "ubicazione", + "example_sentence_native": "La sua ubicazione è ancora sconosciuta.", + "example_sentence_english": "His whereabouts are still unknown.", + "pos": "noun", + "word_frequency": 9660 + }, + { + "word": "umiliazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliation", + "romanization": "umiliazione", + "example_sentence_native": "Ha provato una profonda umiliazione.", + "example_sentence_english": "He felt a deep humiliation.", + "pos": "noun", + "word_frequency": 9661 + }, + { + "word": "virtualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtually", + "romanization": "virtualmente", + "example_sentence_native": "Il progetto è virtualmente completato.", + "example_sentence_english": "The project is virtually completed.", + "pos": "adverb", + "word_frequency": 9662 + }, + { + "word": "accorgersi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to notice;to realize", + "romanization": "accorgersi", + "example_sentence_native": "Non si è accorto di nulla.", + "example_sentence_english": "He didn't notice anything.", + "pos": "verb", + "word_frequency": 9663 + }, + { + "word": "adeguamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjustment;adaptation", + "romanization": "adeguamento", + "example_sentence_native": "È necessario un adeguamento delle norme.", + "example_sentence_english": "An adjustment of the rules is necessary.", + "pos": "noun", + "word_frequency": 9665 + }, + { + "word": "all'indomani", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the day after;in the aftermath", + "romanization": "all'indomani", + "example_sentence_native": "All'indomani della tempesta, la città era in ginocchio.", + "example_sentence_english": "The day after the storm, the city was on its knees.", + "pos": "adverb", + "word_frequency": 9667 + }, + { + "word": "ambientazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setting;atmosphere", + "romanization": "ambientazione", + "example_sentence_native": "L'ambientazione del film era affascinante.", + "example_sentence_english": "The setting of the film was fascinating.", + "pos": "noun", + "word_frequency": 9668 + }, + { + "word": "antimafia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-mafia (movement;commission)", + "romanization": "antimafia", + "example_sentence_native": "La commissione antimafia ha avviato un'indagine.", + "example_sentence_english": "The anti-mafia commission has launched an investigation.", + "pos": "noun", + "word_frequency": 9671 + }, + { + "word": "asfalto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asphalt;tarmac", + "romanization": "asfalto", + "example_sentence_native": "La strada è coperta di asfalto.", + "example_sentence_english": "The road is covered with asphalt.", + "pos": "noun", + "word_frequency": 9673 + }, + { + "word": "aura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aura", + "romanization": "aura", + "example_sentence_native": "Aveva un'aura di mistero.", + "example_sentence_english": "He had an aura of mystery.", + "pos": "noun", + "word_frequency": 9674 + }, + { + "word": "azoto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nitrogen", + "romanization": "azoto", + "example_sentence_native": "L'azoto è un gas inerte.", + "example_sentence_english": "Nitrogen is an inert gas.", + "pos": "noun", + "word_frequency": 9675 + }, + { + "word": "calcare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tread;to press;to trace", + "romanization": "calcare", + "example_sentence_native": "Non calcare troppo sulla matita.", + "example_sentence_english": "Don't press too hard on the pencil.", + "pos": "verb", + "word_frequency": 9685 + }, + { + "word": "cascina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmhouse;dairy farm", + "romanization": "cascina", + "example_sentence_native": "Abbiamo visitato una vecchia cascina in campagna.", + "example_sentence_english": "We visited an old farmhouse in the countryside.", + "pos": "noun", + "word_frequency": 9686 + }, + { + "word": "chiarimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarification", + "romanization": "chiarimento", + "example_sentence_native": "Ho bisogno di un chiarimento su questo punto.", + "example_sentence_english": "I need a clarification on this point.", + "pos": "noun", + "word_frequency": 9687 + }, + { + "word": "colmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peak;climax;ridge", + "romanization": "colmo", + "example_sentence_native": "Questo è il colmo dell'assurdità!", + "example_sentence_english": "This is the height of absurdity!", + "pos": "noun", + "word_frequency": 9690 + }, + { + "word": "complemento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complement;addition", + "romanization": "complemento", + "example_sentence_native": "Il complemento oggetto è una parte della frase.", + "example_sentence_english": "The direct object is a part of the sentence.", + "pos": "noun", + "word_frequency": 9691 + }, + { + "word": "conclave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conclave", + "romanization": "conclave", + "example_sentence_native": "Il conclave eleggerà il nuovo Papa.", + "example_sentence_english": "The conclave will elect the new Pope.", + "pos": "noun", + "word_frequency": 9692 + }, + { + "word": "condizionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to condition;to influence", + "romanization": "condizionare", + "example_sentence_native": "Le sue decisioni sono condizionate dal passato.", + "example_sentence_english": "His decisions are conditioned by the past.", + "pos": "verb", + "word_frequency": 9693 + }, + { + "word": "contraddittorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contradictory;disputable", + "romanization": "contraddittorio", + "example_sentence_native": "La sua testimonianza era contraddittoria.", + "example_sentence_english": "His testimony was contradictory.", + "pos": "adjective", + "word_frequency": 9694 + }, + { + "word": "credenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credential", + "romanization": "credenziale", + "example_sentence_native": "Devi inserire le tue credenziali per accedere.", + "example_sentence_english": "You must enter your credentials to log in.", + "pos": "noun", + "word_frequency": 9696 + }, + { + "word": "cronologico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chronological", + "romanization": "cronologico", + "example_sentence_native": "Abbiamo organizzato gli eventi in ordine cronologico.", + "example_sentence_english": "We organized the events in chronological order.", + "pos": "adjective", + "word_frequency": 9697 + }, + { + "word": "dedurre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deduce", + "romanization": "dedurre", + "example_sentence_native": "Possiamo dedurre la verità dai fatti.", + "example_sentence_english": "We can deduce the truth from the facts.", + "pos": "verb", + "word_frequency": 9700 + }, + { + "word": "delinquere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit a crime;to offend", + "romanization": "delinquere", + "example_sentence_native": "È importante non delinquere.", + "example_sentence_english": "It is important not to commit a crime.", + "pos": "verb", + "word_frequency": 9701 + }, + { + "word": "demenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dementia", + "romanization": "demenza", + "example_sentence_native": "La demenza è una malattia grave.", + "example_sentence_english": "Dementia is a serious illness.", + "pos": "noun", + "word_frequency": 9704 + }, + { + "word": "deroga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derogation;exception", + "romanization": "deroga", + "example_sentence_native": "Hanno concesso una deroga alle regole.", + "example_sentence_english": "They granted an exception to the rules.", + "pos": "noun", + "word_frequency": 9705 + }, + { + "word": "detestare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detest;to loathe", + "romanization": "detestare", + "example_sentence_native": "Detesto le bugie.", + "example_sentence_english": "I detest lies.", + "pos": "verb", + "word_frequency": 9706 + }, + { + "word": "doganale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customs (adj.)", + "romanization": "doganale", + "example_sentence_native": "Dobbiamo passare il controllo doganale.", + "example_sentence_english": "We have to go through customs control.", + "pos": "adjective", + "word_frequency": 9707 + }, + { + "word": "egoismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egoism;selfishness", + "romanization": "egoismo", + "example_sentence_native": "Il suo egoismo gli impedisce di vedere gli altri.", + "example_sentence_english": "His egoism prevents him from seeing others.", + "pos": "noun", + "word_frequency": 9709 + }, + { + "word": "elogio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praise;eulogy", + "romanization": "elogio", + "example_sentence_native": "Ha ricevuto molti elogi per il suo lavoro.", + "example_sentence_english": "He received much praise for his work.", + "pos": "noun", + "word_frequency": 9710 + }, + { + "word": "equipaggiamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipment", + "romanization": "equipaggiamento", + "example_sentence_native": "Abbiamo bisogno di nuovo equipaggiamento per l'escursione.", + "example_sentence_english": "We need new equipment for the hike.", + "pos": "noun", + "word_frequency": 9711 + }, + { + "word": "erogazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispensing;provision;supply", + "romanization": "erogazione", + "example_sentence_native": "L'erogazione dell'acqua è stata interrotta.", + "example_sentence_english": "The water supply has been interrupted.", + "pos": "noun", + "word_frequency": 9712 + }, + { + "word": "espulso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expelled;ejected", + "romanization": "espulso", + "example_sentence_native": "È stato espulso dalla scuola per cattiva condotta.", + "example_sentence_english": "He was expelled from school for misconduct.", + "pos": "adjective", + "word_frequency": 9713 + }, + { + "word": "fanatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fanatic", + "romanization": "fanatico", + "example_sentence_native": "È un fanatico dello sport.", + "example_sentence_english": "He is a sports fanatic.", + "pos": "noun", + "word_frequency": 9715 + }, + { + "word": "governance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governance", + "romanization": "governance", + "example_sentence_native": "La buona governance è essenziale per il successo di un'azienda.", + "example_sentence_english": "Good governance is essential for a company's success.", + "pos": "noun", + "word_frequency": 9720 + }, + { + "word": "guerriglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guerrilla warfare", + "romanization": "guerriglia", + "example_sentence_native": "Il gruppo ha iniziato una guerriglia contro le forze governative.", + "example_sentence_english": "The group started guerrilla warfare against the government forces.", + "pos": "noun", + "word_frequency": 9721 + }, + { + "word": "idrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "water (adj.);hydraulic", + "romanization": "idrico", + "example_sentence_native": "La crisi idrica sta colpendo molte regioni.", + "example_sentence_english": "The water crisis is affecting many regions.", + "pos": "adjective", + "word_frequency": 9723 + }, + { + "word": "incoraggiamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouragement", + "romanization": "incoraggiamento", + "example_sentence_native": "Il suo incoraggiamento mi ha aiutato a continuare.", + "example_sentence_english": "His encouragement helped me to continue.", + "pos": "noun", + "word_frequency": 9726 + }, + { + "word": "interferenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interference", + "romanization": "interferenza", + "example_sentence_native": "C'è stata un'interferenza nel segnale radio.", + "example_sentence_english": "There was interference in the radio signal.", + "pos": "noun", + "word_frequency": 9727 + }, + { + "word": "irrazionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irrational", + "romanization": "irrazionale", + "example_sentence_native": "La sua paura era completamente irrazionale.", + "example_sentence_english": "His fear was completely irrational.", + "pos": "adjective", + "word_frequency": 9728 + }, + { + "word": "lauro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laurel", + "romanization": "lauro", + "example_sentence_native": "Il lauro è un simbolo di vittoria e gloria.", + "example_sentence_english": "The laurel is a symbol of victory and glory.", + "pos": "noun", + "word_frequency": 9733 + }, + { + "word": "leggendario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legendary", + "romanization": "leggendario", + "example_sentence_native": "Era un guerriero leggendario, temuto da tutti.", + "example_sentence_english": "He was a legendary warrior, feared by all.", + "pos": "adjective", + "word_frequency": 9734 + }, + { + "word": "liberalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalism", + "romanization": "liberalismo", + "example_sentence_native": "Il liberalismo è una filosofia politica basata sulla libertà individuale.", + "example_sentence_english": "Liberalism is a political philosophy based on individual freedom.", + "pos": "noun", + "word_frequency": 9736 + }, + { + "word": "liturgia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liturgy", + "romanization": "liturgia", + "example_sentence_native": "La liturgia della messa è stata modificata dopo il Concilio Vaticano II.", + "example_sentence_english": "The liturgy of the mass was modified after the Second Vatican Council.", + "pos": "noun", + "word_frequency": 9737 + }, + { + "word": "marcare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mark;to score (in sports);to brand", + "romanization": "marcare", + "example_sentence_native": "Il difensore deve marcare stretto l'attaccante avversario.", + "example_sentence_english": "The defender must closely mark the opposing striker.", + "pos": "verb", + "word_frequency": 9741 + }, + { + "word": "memoriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorial;memorandum", + "romanization": "memoriale", + "example_sentence_native": "Hanno eretto un memoriale in onore dei caduti in guerra.", + "example_sentence_english": "They erected a memorial in honor of those who fell in war.", + "pos": "noun", + "word_frequency": 9743 + }, + { + "word": "mittente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sender", + "romanization": "mittente", + "example_sentence_native": "L'indirizzo del mittente non era leggibile sulla busta.", + "example_sentence_english": "The sender's address was not legible on the envelope.", + "pos": "noun", + "word_frequency": 9747 + }, + { + "word": "muratura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "masonry;brickwork", + "romanization": "muratura", + "example_sentence_native": "La casa è costruita con una solida muratura in pietra.", + "example_sentence_english": "The house is built with solid stone masonry.", + "pos": "noun", + "word_frequency": 9748 + }, + { + "word": "negoziazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiation", + "romanization": "negoziazione", + "example_sentence_native": "Le negoziazioni per il nuovo contratto sono state lunghe e complesse.", + "example_sentence_english": "The negotiations for the new contract were long and complex.", + "pos": "noun", + "word_frequency": 9750 + }, + { + "word": "patrizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patrician", + "romanization": "patrizio", + "example_sentence_native": "I patrizi godevano di privilegi sociali e politici nell'antica Roma.", + "example_sentence_english": "The patricians enjoyed social and political privileges in ancient Rome.", + "pos": "noun", + "word_frequency": 9753 + }, + { + "word": "pedofilo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedophile", + "romanization": "pedofilo", + "example_sentence_native": "La legge prevede pene severe per i crimini commessi da un pedofilo.", + "example_sentence_english": "The law provides severe penalties for crimes committed by a pedophile.", + "pos": "noun", + "word_frequency": 9754 + }, + { + "word": "pedone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pedestrian;pawn (chess)", + "romanization": "pedone", + "example_sentence_native": "Il pedone deve sempre dare la precedenza ai veicoli.", + "example_sentence_english": "The pedestrian must always yield to vehicles.", + "pos": "noun", + "word_frequency": 9755 + }, + { + "word": "persistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistent", + "romanization": "persistente", + "example_sentence_native": "Ha dimostrato una tosse persistente per tutta la settimana.", + "example_sentence_english": "He showed a persistent cough throughout the week.", + "pos": "adjective", + "word_frequency": 9756 + }, + { + "word": "pisciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pee;to piss", + "romanization": "pisciare", + "example_sentence_native": "Il bambino ha detto di dover pisciare urgentemente.", + "example_sentence_english": "The child said he urgently needed to pee.", + "pos": "verb", + "word_frequency": 9759 + }, + { + "word": "pisello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pea", + "romanization": "pisello", + "example_sentence_native": "Mi piacciono molto i piselli freschi.", + "example_sentence_english": "I really like fresh peas.", + "pos": "noun", + "word_frequency": 9760 + }, + { + "word": "possessore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "owner;possessor", + "romanization": "possessore", + "example_sentence_native": "Il possessore dell'auto è responsabile della sua manutenzione.", + "example_sentence_english": "The owner of the car is responsible for its maintenance.", + "pos": "noun", + "word_frequency": 9763 + }, + { + "word": "precisazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarification;precision", + "romanization": "precisazione", + "example_sentence_native": "Vorrei chiedere una precisazione su questo punto.", + "example_sentence_english": "I would like to ask for a clarification on this point.", + "pos": "noun", + "word_frequency": 9765 + }, + { + "word": "pudore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modesty;shame", + "romanization": "pudore", + "example_sentence_native": "Ha risposto con un certo pudore.", + "example_sentence_english": "He replied with a certain modesty.", + "pos": "noun", + "word_frequency": 9769 + }, + { + "word": "purgatorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purgatory", + "romanization": "purgatorio", + "example_sentence_native": "Dante ha scritto la seconda cantica della Divina Commedia sul Purgatorio.", + "example_sentence_english": "Dante wrote the second canticle of the Divine Comedy about Purgatory.", + "pos": "noun", + "word_frequency": 9770 + }, + { + "word": "redenzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redemption", + "romanization": "redenzione", + "example_sentence_native": "Cerca la redenzione per i suoi errori passati.", + "example_sentence_english": "He seeks redemption for his past mistakes.", + "pos": "noun", + "word_frequency": 9774 + }, + { + "word": "rettangolare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rectangular", + "romanization": "rettangolare", + "example_sentence_native": "Il tavolo ha una forma rettangolare.", + "example_sentence_english": "The table has a rectangular shape.", + "pos": "adjective", + "word_frequency": 9775 + }, + { + "word": "riconoscibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recognizable", + "romanization": "riconoscibile", + "example_sentence_native": "La sua voce è immediatamente riconoscibile.", + "example_sentence_english": "His voice is immediately recognizable.", + "pos": "adjective", + "word_frequency": 9776 + }, + { + "word": "ripieno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "filling;stuffing", + "romanization": "ripieno", + "example_sentence_native": "Il ripieno dei ravioli era delizioso.", + "example_sentence_english": "The ravioli filling was delicious.", + "pos": "noun", + "word_frequency": 9777 + }, + { + "word": "ritrarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to portray;to depict;to withdraw", + "romanization": "ritrarre", + "example_sentence_native": "L'artista ha ritratto la modella con grande maestria.", + "example_sentence_english": "The artist portrayed the model with great skill.", + "pos": "verb", + "word_frequency": 9778 + }, + { + "word": "rivincita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rematch;revenge", + "romanization": "rivincita", + "example_sentence_native": "Ha chiesto una rivincita dopo la sconfitta.", + "example_sentence_english": "He asked for a rematch after the defeat.", + "pos": "noun", + "word_frequency": 9779 + }, + { + "word": "rubinetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tap;faucet", + "romanization": "rubinetto", + "example_sentence_native": "Il rubinetto del lavandino perde acqua.", + "example_sentence_english": "The sink tap is leaking water.", + "pos": "noun", + "word_frequency": 9780 + }, + { + "word": "sarcastico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sarcastic", + "romanization": "sarcastico", + "example_sentence_native": "Il suo commento era piuttosto sarcastico.", + "example_sentence_english": "His comment was quite sarcastic.", + "pos": "adjective", + "word_frequency": 9782 + }, + { + "word": "sconvolgente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shocking;upsetting;overwhelming", + "romanization": "sconvolgente", + "example_sentence_native": "La notizia è stata sconvolgente per tutti.", + "example_sentence_english": "The news was shocking for everyone.", + "pos": "adjective", + "word_frequency": 9783 + }, + { + "word": "scordare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forget", + "romanization": "scordare", + "example_sentence_native": "Non scordare di chiudere la porta a chiave.", + "example_sentence_english": "Don't forget to lock the door.", + "pos": "verb", + "word_frequency": 9784 + }, + { + "word": "scosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaken;shocked", + "romanization": "scosso", + "example_sentence_native": "Era visibilmente scosso dall'accaduto.", + "example_sentence_english": "He was visibly shaken by what happened.", + "pos": "adjective", + "word_frequency": 9785 + }, + { + "word": "sepolto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buried", + "romanization": "sepolto", + "example_sentence_native": "Il tesoro era sepolto sotto un albero.", + "example_sentence_english": "The treasure was buried under a tree.", + "pos": "adjective", + "word_frequency": 9786 + }, + { + "word": "sgombero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evacuation;clearance;eviction", + "romanization": "sgombero", + "example_sentence_native": "Hanno ordinato lo sgombero dell'edificio.", + "example_sentence_english": "They ordered the evacuation of the building.", + "pos": "noun", + "word_frequency": 9788 + }, + { + "word": "siccità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drought", + "romanization": "siccità", + "example_sentence_native": "La siccità ha causato gravi danni all'agricoltura.", + "example_sentence_english": "The drought caused severe damage to agriculture.", + "pos": "noun", + "word_frequency": 9790 + }, + { + "word": "sobrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sober;moderate;understated", + "romanization": "sobrio", + "example_sentence_native": "Ha uno stile di vita molto sobrio.", + "example_sentence_english": "He has a very sober lifestyle.", + "pos": "adjective", + "word_frequency": 9792 + }, + { + "word": "sommo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supreme;utmost;highest", + "romanization": "sommo", + "example_sentence_native": "Ha raggiunto la somma felicità.", + "example_sentence_english": "He reached the utmost happiness.", + "pos": "adjective", + "word_frequency": 9793 + }, + { + "word": "sorridente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smiling", + "romanization": "sorridente", + "example_sentence_native": "Era sempre sorridente e di buon umore.", + "example_sentence_english": "He was always smiling and in a good mood.", + "pos": "adjective", + "word_frequency": 9794 + }, + { + "word": "sparito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disappeared;vanished", + "romanization": "sparito", + "example_sentence_native": "Il suo cane è sparito ieri sera.", + "example_sentence_english": "His dog disappeared last night.", + "pos": "adjective", + "word_frequency": 9796 + }, + { + "word": "straccio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rag;cloth", + "romanization": "straccio", + "example_sentence_native": "Prendi uno straccio per pulire il tavolo.", + "example_sentence_english": "Take a rag to clean the table.", + "pos": "noun", + "word_frequency": 9799 + }, + { + "word": "strutturato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structured", + "romanization": "strutturato", + "example_sentence_native": "Il progetto è ben strutturato.", + "example_sentence_english": "The project is well structured.", + "pos": "adjective", + "word_frequency": 9800 + }, + { + "word": "suicidarsi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit suicide", + "romanization": "suicidarsi", + "example_sentence_native": "È importante cercare aiuto se si pensa di suicidarsi.", + "example_sentence_english": "It's important to seek help if one thinks of committing suicide.", + "pos": "verb", + "word_frequency": 9801 + }, + { + "word": "summit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "summit", + "romanization": "summit", + "example_sentence_native": "I leader si incontreranno al prossimo summit.", + "example_sentence_english": "The leaders will meet at the next summit.", + "pos": "noun", + "word_frequency": 9802 + }, + { + "word": "tendenzialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generally;tending to", + "romanization": "tendenzialmente", + "example_sentence_native": "Tendenzialmente, preferisco lavorare da casa.", + "example_sentence_english": "Generally, I prefer to work from home.", + "pos": "adverb", + "word_frequency": 9805 + }, + { + "word": "terraferma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mainland;dry land", + "romanization": "terraferma", + "example_sentence_native": "Dopo la tempesta, siamo tornati sulla terraferma.", + "example_sentence_english": "After the storm, we returned to the mainland.", + "pos": "noun", + "word_frequency": 9806 + }, + { + "word": "traiettoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trajectory", + "romanization": "traiettoria", + "example_sentence_native": "La traiettoria del proiettile era perfetta.", + "example_sentence_english": "The bullet's trajectory was perfect.", + "pos": "noun", + "word_frequency": 9809 + }, + { + "word": "tremila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "three thousand", + "romanization": "tremila", + "example_sentence_native": "Ci sono tremila persone all'evento.", + "example_sentence_english": "There are three thousand people at the event.", + "pos": "noun", + "word_frequency": 9810 + }, + { + "word": "uragano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurricane", + "romanization": "uragano", + "example_sentence_native": "L'uragano ha causato molti danni.", + "example_sentence_english": "The hurricane caused a lot of damage.", + "pos": "noun", + "word_frequency": 9812 + }, + { + "word": "utensile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tool;utensil", + "romanization": "utensile", + "example_sentence_native": "Ho bisogno di un utensile per riparare questo.", + "example_sentence_english": "I need a tool to fix this.", + "pos": "noun", + "word_frequency": 9813 + }, + { + "word": "veto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "veto", + "romanization": "veto", + "example_sentence_native": "Il presidente ha posto il veto sulla legge.", + "example_sentence_english": "The president vetoed the law.", + "pos": "noun", + "word_frequency": 9814 + }, + { + "word": "vinile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vinyl", + "romanization": "vinile", + "example_sentence_native": "Mi piace ascoltare musica su vinile.", + "example_sentence_english": "I like listening to music on vinyl.", + "pos": "noun", + "word_frequency": 9815 + }, + { + "word": "violentare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rape;to violate", + "romanization": "violentare", + "example_sentence_native": "La legge punisce chiunque tenti di violentare una persona.", + "example_sentence_english": "The law punishes anyone who attempts to violate a person.", + "pos": "verb", + "word_frequency": 9816 + }, + { + "word": "vitto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "food;board", + "romanization": "vitto", + "example_sentence_native": "Il prezzo include vitto e alloggio.", + "example_sentence_english": "The price includes food and accommodation.", + "pos": "noun", + "word_frequency": 9818 + }, + { + "word": "zolfo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sulfur", + "romanization": "zolfo", + "example_sentence_native": "Lo zolfo è un elemento chimico.", + "example_sentence_english": "Sulfur is a chemical element.", + "pos": "noun", + "word_frequency": 9821 + }, + { + "word": "arca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ark;chest", + "romanization": "arca", + "example_sentence_native": "L'arca di Noè è una storia biblica.", + "example_sentence_english": "Noah's Ark is a biblical story.", + "pos": "noun", + "word_frequency": 9826 + }, + { + "word": "armamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armament;weaponry", + "romanization": "armamento", + "example_sentence_native": "Il paese sta aumentando il suo armamento.", + "example_sentence_english": "The country is increasing its armament.", + "pos": "noun", + "word_frequency": 9827 + }, + { + "word": "arredamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furniture;furnishing", + "romanization": "arredamento", + "example_sentence_native": "L'arredamento della casa è moderno.", + "example_sentence_english": "The house's furnishing is modern.", + "pos": "noun", + "word_frequency": 9828 + }, + { + "word": "ateo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atheist", + "romanization": "ateo", + "example_sentence_native": "Mio zio è ateo.", + "example_sentence_english": "My uncle is atheist.", + "pos": "adjective", + "word_frequency": 9829 + }, + { + "word": "atroce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atrocious;terrible", + "romanization": "atroce", + "example_sentence_native": "Ha commesso un crimine atroce.", + "example_sentence_english": "He committed an atrocious crime.", + "pos": "adjective", + "word_frequency": 9830 + }, + { + "word": "bikini", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bikini", + "romanization": "bikini", + "example_sentence_native": "Ha comprato un nuovo bikini per l'estate.", + "example_sentence_english": "She bought a new bikini for the summer.", + "pos": "noun", + "word_frequency": 9833 + }, + { + "word": "bisognoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "needy;in need", + "romanization": "bisognoso", + "example_sentence_native": "Dobbiamo aiutare le persone bisognose.", + "example_sentence_english": "We must help needy people.", + "pos": "adjective", + "word_frequency": 9834 + }, + { + "word": "bollire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to boil", + "romanization": "bollire", + "example_sentence_native": "L'acqua sta per bollire.", + "example_sentence_english": "The water is about to boil.", + "pos": "verb", + "word_frequency": 9835 + }, + { + "word": "buffet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buffet", + "romanization": "buffet", + "example_sentence_native": "C'era un ricco buffet alla festa.", + "example_sentence_english": "There was a rich buffet at the party.", + "pos": "noun", + "word_frequency": 9836 + }, + { + "word": "bullo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bully", + "romanization": "bullo", + "example_sentence_native": "Il bullo della scuola è stato sospeso.", + "example_sentence_english": "The school bully was suspended.", + "pos": "noun", + "word_frequency": 9837 + }, + { + "word": "calce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lime (material)", + "romanization": "calce", + "example_sentence_native": "La calce è usata in edilizia.", + "example_sentence_english": "Lime is used in construction.", + "pos": "noun", + "word_frequency": 9838 + }, + { + "word": "calmare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to calm;to soothe", + "romanization": "calmare", + "example_sentence_native": "Cerca di calmare il bambino.", + "example_sentence_english": "Try to calm the child.", + "pos": "verb", + "word_frequency": 9839 + }, + { + "word": "campanella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small bell;handbell", + "romanization": "campanella", + "example_sentence_native": "La campanella suonò per la ricreazione.", + "example_sentence_english": "The small bell rang for recess.", + "pos": "noun", + "word_frequency": 9842 + }, + { + "word": "centomila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one hundred thousand", + "romanization": "centomila", + "example_sentence_native": "Hanno speso centomila euro per la macchina.", + "example_sentence_english": "They spent one hundred thousand euros on the car.", + "pos": "noun", + "word_frequency": 9843 + }, + { + "word": "chiostro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cloister", + "romanization": "chiostro", + "example_sentence_native": "Il monastero aveva un bellissimo chiostro.", + "example_sentence_english": "The monastery had a beautiful cloister.", + "pos": "noun", + "word_frequency": 9844 + }, + { + "word": "cinghiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild boar", + "romanization": "cinghiale", + "example_sentence_native": "Abbiamo visto un cinghiale nel bosco.", + "example_sentence_english": "We saw a wild boar in the woods.", + "pos": "noun", + "word_frequency": 9845 + }, + { + "word": "ciotola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowl", + "romanization": "ciotola", + "example_sentence_native": "Metti la frutta nella ciotola.", + "example_sentence_english": "Put the fruit in the bowl.", + "pos": "noun", + "word_frequency": 9846 + }, + { + "word": "colosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colossus;giant", + "romanization": "colosso", + "example_sentence_native": "Quella statua è un vero colosso.", + "example_sentence_english": "That statue is a true colossus.", + "pos": "noun", + "word_frequency": 9849 + }, + { + "word": "comizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rally;public meeting", + "romanization": "comizio", + "example_sentence_native": "Il politico ha tenuto un comizio in piazza.", + "example_sentence_english": "The politician held a rally in the square.", + "pos": "noun", + "word_frequency": 9850 + }, + { + "word": "consolidato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consolidated;established", + "romanization": "consolidato", + "example_sentence_native": "L'azienda ha una posizione consolidata sul mercato.", + "example_sentence_english": "The company has an established position in the market.", + "pos": "adjective", + "word_frequency": 9851 + }, + { + "word": "contenzioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute;litigation", + "romanization": "contenzioso", + "example_sentence_native": "C'è un contenzioso legale in corso.", + "example_sentence_english": "There is an ongoing legal dispute.", + "pos": "noun", + "word_frequency": 9852 + }, + { + "word": "cratere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crater", + "romanization": "cratere", + "example_sentence_native": "Il vulcano ha un grande cratere.", + "example_sentence_english": "The volcano has a large crater.", + "pos": "noun", + "word_frequency": 9853 + }, + { + "word": "cuocere", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to cook;to bake", + "romanization": "cuocere", + "example_sentence_native": "Devo cuocere la pasta per cena.", + "example_sentence_english": "I need to cook the pasta for dinner.", + "pos": "verb", + "word_frequency": 9855 + }, + { + "word": "dado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dice;nut (for bolt);stock cube", + "romanization": "dado", + "example_sentence_native": "Lancia il dado per vedere quanti passi fai.", + "example_sentence_english": "Roll the dice to see how many steps you take.", + "pos": "noun", + "word_frequency": 9857 + }, + { + "word": "debitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debtor", + "romanization": "debitore", + "example_sentence_native": "Il debitore deve saldare il suo conto.", + "example_sentence_english": "The debtor must settle their account.", + "pos": "noun", + "word_frequency": 9859 + }, + { + "word": "detrito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debris;detritus", + "romanization": "detrito", + "example_sentence_native": "La spiaggia era piena di detriti dopo la tempesta.", + "example_sentence_english": "The beach was full of debris after the storm.", + "pos": "noun", + "word_frequency": 9860 + }, + { + "word": "disattivare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deactivate;to disable", + "romanization": "disattivare", + "example_sentence_native": "Devi disattivare l'allarme prima di entrare.", + "example_sentence_english": "You need to deactivate the alarm before entering.", + "pos": "verb", + "word_frequency": 9861 + }, + { + "word": "dominato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominated;controlled", + "romanization": "dominato", + "example_sentence_native": "La scena era dominata da un'unica figura.", + "example_sentence_english": "The scene was dominated by a single figure.", + "pos": "adjective", + "word_frequency": 9862 + }, + { + "word": "equità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equity;fairness", + "romanization": "equità", + "example_sentence_native": "Dobbiamo lottare per l'equità sociale.", + "example_sentence_english": "We must fight for social equity.", + "pos": "noun", + "word_frequency": 9864 + }, + { + "word": "ereditario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hereditary;inherited", + "romanization": "ereditario", + "example_sentence_native": "La malattia è di tipo ereditario.", + "example_sentence_english": "The disease is hereditary.", + "pos": "adjective", + "word_frequency": 9865 + }, + { + "word": "ergastolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "life imprisonment", + "romanization": "ergastolo", + "example_sentence_native": "È stato condannato all'ergastolo.", + "example_sentence_english": "He was sentenced to life imprisonment.", + "pos": "noun", + "word_frequency": 9866 + }, + { + "word": "falla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flaw;gap;breach", + "romanization": "falla", + "example_sentence_native": "C'è una falla nel sistema di sicurezza.", + "example_sentence_english": "There is a flaw in the security system.", + "pos": "noun", + "word_frequency": 9868 + }, + { + "word": "figliolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "son (affectionate);lad", + "romanization": "figliolo", + "example_sentence_native": "Vieni qui, figliolo, ti racconto una storia.", + "example_sentence_english": "Come here, son, I'll tell you a story.", + "pos": "noun", + "word_frequency": 9869 + }, + { + "word": "flauto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flute", + "romanization": "flauto", + "example_sentence_native": "Suona il flauto molto bene.", + "example_sentence_english": "He plays the flute very well.", + "pos": "noun", + "word_frequency": 9872 + }, + { + "word": "fogna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sewer;drain", + "romanization": "fogna", + "example_sentence_native": "Le acque reflue vanno nella fogna.", + "example_sentence_english": "Wastewater goes into the sewer.", + "pos": "noun", + "word_frequency": 9873 + }, + { + "word": "fosso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ditch;trench", + "romanization": "fosso", + "example_sentence_native": "C'era un fosso profondo lungo la strada.", + "example_sentence_english": "There was a deep ditch along the road.", + "pos": "noun", + "word_frequency": 9874 + }, + { + "word": "fulcro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fulcrum;pivot;core", + "romanization": "fulcro", + "example_sentence_native": "Il fulcro del problema è la mancanza di comunicazione.", + "example_sentence_english": "The core of the problem is the lack of communication.", + "pos": "noun", + "word_frequency": 9876 + }, + { + "word": "geneticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genetically", + "romanization": "geneticamente", + "example_sentence_native": "Sono geneticamente predisposto a questo.", + "example_sentence_english": "I am genetically predisposed to this.", + "pos": "adverb", + "word_frequency": 9877 + }, + { + "word": "gestionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manegerial;management-related", + "romanization": "gestionale", + "example_sentence_native": "Hanno implementato un nuovo sistema gestionale.", + "example_sentence_english": "They implemented a new management system.", + "pos": "adjective", + "word_frequency": 9878 + }, + { + "word": "giostra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carousel;merry-go-round;joust", + "romanization": "giostra", + "example_sentence_native": "I bambini si sono divertiti sulla giostra.", + "example_sentence_english": "The children had fun on the carousel.", + "pos": "noun", + "word_frequency": 9879 + }, + { + "word": "ictus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stroke", + "romanization": "ictus", + "example_sentence_native": "Ha avuto un ictus e ora sta recuperando.", + "example_sentence_english": "He had a stroke and is now recovering.", + "pos": "noun", + "word_frequency": 9881 + }, + { + "word": "immune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immune", + "romanization": "immune", + "example_sentence_native": "È immune a quella malattia.", + "example_sentence_english": "He is immune to that disease.", + "pos": "adjective", + "word_frequency": 9882 + }, + { + "word": "imprevedibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpredictable", + "romanization": "imprevedibile", + "example_sentence_native": "Il tempo in montagna è spesso imprevedibile.", + "example_sentence_english": "The weather in the mountains is often unpredictable.", + "pos": "adjective", + "word_frequency": 9883 + }, + { + "word": "incostituzionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconstitutional", + "romanization": "incostituzionale", + "example_sentence_native": "La legge è stata dichiarata incostituzionale.", + "example_sentence_english": "The law was declared unconstitutional.", + "pos": "adjective", + "word_frequency": 9884 + }, + { + "word": "intensivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intensive", + "romanization": "intensivo", + "example_sentence_native": "Ha seguito un corso intensivo di italiano.", + "example_sentence_english": "He took an intensive Italian course.", + "pos": "adjective", + "word_frequency": 9885 + }, + { + "word": "intuire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intuit;to sense", + "romanization": "intuire", + "example_sentence_native": "Riusciva a intuire i suoi pensieri.", + "example_sentence_english": "He could intuit her thoughts.", + "pos": "verb", + "word_frequency": 9886 + }, + { + "word": "invalidità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disability;invalidity", + "romanization": "invalidità", + "example_sentence_native": "Ha richiesto la pensione di invalidità.", + "example_sentence_english": "He applied for a disability pension.", + "pos": "noun", + "word_frequency": 9887 + }, + { + "word": "irresistibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irresistible", + "romanization": "irresistibile", + "example_sentence_native": "Il profumo del pane fresco era irresistibile.", + "example_sentence_english": "The smell of fresh bread was irresistible.", + "pos": "adjective", + "word_frequency": 9888 + }, + { + "word": "lavanderia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laundry room;laundromat", + "romanization": "lavanderia", + "example_sentence_native": "Devo andare in lavanderia a ritirare i vestiti.", + "example_sentence_english": "I need to go to the laundromat to pick up the clothes.", + "pos": "noun", + "word_frequency": 9889 + }, + { + "word": "legname", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "timber;lumber;wood", + "romanization": "legname", + "example_sentence_native": "Stanno trasportando del legname per la costruzione.", + "example_sentence_english": "They are transporting timber for construction.", + "pos": "noun", + "word_frequency": 9890 + }, + { + "word": "lievito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yeast;leavening agent", + "romanization": "lievito", + "example_sentence_native": "Per fare il pane serve il lievito.", + "example_sentence_english": "To make bread, you need yeast.", + "pos": "noun", + "word_frequency": 9892 + }, + { + "word": "limitrofo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neighboring;adjacent", + "romanization": "limitrofo", + "example_sentence_native": "Viviamo in un paese limitrofo alla città.", + "example_sentence_english": "We live in a town neighboring the city.", + "pos": "adjective", + "word_frequency": 9893 + }, + { + "word": "malcontento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discontent;dissatisfaction", + "romanization": "malcontento", + "example_sentence_native": "C'è un crescente malcontento tra la popolazione.", + "example_sentence_english": "There is growing discontent among the population.", + "pos": "noun", + "word_frequency": 9896 + }, + { + "word": "pancetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pancetta;bacon", + "romanization": "pancetta", + "example_sentence_native": "Ho preparato la pasta alla carbonara con la pancetta.", + "example_sentence_english": "I made carbonara pasta with pancetta.", + "pos": "noun", + "word_frequency": 9905 + }, + { + "word": "paterno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paternal;fatherly", + "romanization": "paterno", + "example_sentence_native": "Ha ricevuto un consiglio paterno.", + "example_sentence_english": "He received paternal advice.", + "pos": "adjective", + "word_frequency": 9907 + }, + { + "word": "perfezionamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvement;refinement;specialization", + "romanization": "perfezionamento", + "example_sentence_native": "Sta frequentando un corso di perfezionamento.", + "example_sentence_english": "He is attending a specialization course.", + "pos": "noun", + "word_frequency": 9908 + }, + { + "word": "pigrizia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laziness", + "romanization": "pigrizia", + "example_sentence_native": "La sua pigrizia gli impedisce di fare progressi.", + "example_sentence_english": "His laziness prevents him from making progress.", + "pos": "noun", + "word_frequency": 9909 + }, + { + "word": "posizionamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "positioning;placement", + "romanization": "posizionamento", + "example_sentence_native": "Il posizionamento del prodotto è cruciale per il successo.", + "example_sentence_english": "Product positioning is crucial for success.", + "pos": "noun", + "word_frequency": 9913 + }, + { + "word": "preferibilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preferably", + "romanization": "preferibilmente", + "example_sentence_native": "Arriva preferibilmente prima delle otto.", + "example_sentence_english": "Arrive preferably before eight.", + "pos": "adverb", + "word_frequency": 9914 + }, + { + "word": "presiedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preside over;to chair", + "romanization": "presiedere", + "example_sentence_native": "Il presidente presiederà la riunione.", + "example_sentence_english": "The president will preside over the meeting.", + "pos": "verb", + "word_frequency": 9915 + }, + { + "word": "procurarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obtain;to get for oneself", + "romanization": "procurarsi", + "example_sentence_native": "Deve procurarsi i documenti necessari.", + "example_sentence_english": "He must obtain the necessary documents for himself.", + "pos": "verb", + "word_frequency": 9916 + }, + { + "word": "promemoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reminder;memo", + "romanization": "promemoria", + "example_sentence_native": "Ho scritto un promemoria per non dimenticare.", + "example_sentence_english": "I wrote a reminder so I wouldn't forget.", + "pos": "noun", + "word_frequency": 9917 + }, + { + "word": "provino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audition;screen test;sample", + "romanization": "provino", + "example_sentence_native": "Ha fatto un provino per la parte principale.", + "example_sentence_english": "She did an audition for the main role.", + "pos": "noun", + "word_frequency": 9918 + }, + { + "word": "raffica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gust (of wind);burst (of gunfire);flurry", + "romanization": "raffica", + "example_sentence_native": "Una raffica di vento ha rovesciato l'ombrellone.", + "example_sentence_english": "A gust of wind overturned the umbrella.", + "pos": "noun", + "word_frequency": 9919 + }, + { + "word": "riciclo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycling", + "romanization": "riciclo", + "example_sentence_native": "Il riciclo è importante per l'ambiente.", + "example_sentence_english": "Recycling is important for the environment.", + "pos": "noun", + "word_frequency": 9923 + }, + { + "word": "riconducibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attributable;traceable", + "romanization": "riconducibile", + "example_sentence_native": "Il problema è riconducibile a un errore di sistema.", + "example_sentence_english": "The problem is attributable to a system error.", + "pos": "adjective", + "word_frequency": 9924 + }, + { + "word": "rileggere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reread", + "romanization": "rileggere", + "example_sentence_native": "Devo rileggere il capitolo prima dell'esame.", + "example_sentence_english": "I need to reread the chapter before the exam.", + "pos": "verb", + "word_frequency": 9925 + }, + { + "word": "rimorso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remorse", + "romanization": "rimorso", + "example_sentence_native": "Sentiva un forte rimorso per le sue azioni.", + "example_sentence_english": "He felt strong remorse for his actions.", + "pos": "noun", + "word_frequency": 9926 + }, + { + "word": "riscuotere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collect;to cash", + "romanization": "riscuotere", + "example_sentence_native": "È andato in banca a riscuotere l'assegno.", + "example_sentence_english": "He went to the bank to cash the check.", + "pos": "verb", + "word_frequency": 9927 + }, + { + "word": "scarsamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scarcely;poorly", + "romanization": "scarsamente", + "example_sentence_native": "Il progetto è stato scarsamente finanziato.", + "example_sentence_english": "The project was scarcely funded.", + "pos": "adverb", + "word_frequency": 9930 + }, + { + "word": "sciocco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foolish;silly", + "romanization": "sciocco", + "example_sentence_native": "Non fare lo sciocco!", + "example_sentence_english": "Don't be silly!", + "pos": "adjective", + "word_frequency": 9931 + }, + { + "word": "soprannominare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to nickname", + "romanization": "soprannominare", + "example_sentence_native": "Lo hanno soprannominato 'il Professore'.", + "example_sentence_english": "They nicknamed him 'the Professor'.", + "pos": "verb", + "word_frequency": 9934 + }, + { + "word": "sottrarre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to subtract;to remove", + "romanization": "sottrarre", + "example_sentence_native": "Dobbiamo sottrarre le spese dalle entrate.", + "example_sentence_english": "We need to subtract expenses from income.", + "pos": "verb", + "word_frequency": 9935 + }, + { + "word": "sovrappeso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overweight", + "romanization": "sovrappeso", + "example_sentence_native": "Essere in sovrappeso può causare problemi di salute.", + "example_sentence_english": "Being overweight can cause health problems.", + "pos": "noun", + "word_frequency": 9936 + }, + { + "word": "spento", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "off;extinguished", + "romanization": "spento", + "example_sentence_native": "La luce è spenta.", + "example_sentence_english": "The light is off.", + "pos": "adjective", + "word_frequency": 9937 + }, + { + "word": "stamani", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "this morning", + "romanization": "stamani", + "example_sentence_native": "Stamani mi sono svegliato presto.", + "example_sentence_english": "This morning I woke up early.", + "pos": "adverb", + "word_frequency": 9938 + }, + { + "word": "stuprare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rape", + "romanization": "stuprare", + "example_sentence_native": "Il criminale è stato accusato di aver stuprato la vittima.", + "example_sentence_english": "The criminal was accused of having raped the victim.", + "pos": "verb", + "word_frequency": 9941 + }, + { + "word": "suffragio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffrage;vote", + "romanization": "suffragio", + "example_sentence_native": "Le donne hanno ottenuto il diritto di suffragio nel 1946.", + "example_sentence_english": "Women obtained the right to vote in 1946.", + "pos": "noun", + "word_frequency": 9942 + }, + { + "word": "supereroe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superhero", + "romanization": "supereroe", + "example_sentence_native": "Il mio supereroe preferito è Spider-Man.", + "example_sentence_english": "My favorite superhero is Spider-Man.", + "pos": "noun", + "word_frequency": 9943 + }, + { + "word": "tic", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tic;twitch", + "romanization": "tic", + "example_sentence_native": "Ha un tic nervoso all'occhio.", + "example_sentence_english": "He has a nervous tic in his eye.", + "pos": "noun", + "word_frequency": 9947 + }, + { + "word": "torturare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torture", + "romanization": "torturare", + "example_sentence_native": "Il prigioniero è stato torturato per ottenere informazioni.", + "example_sentence_english": "The prisoner was tortured to obtain information.", + "pos": "verb", + "word_frequency": 9948 + }, + { + "word": "traverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sideways;across", + "romanization": "traverso", + "example_sentence_native": "La macchina si è messa di traverso sulla strada.", + "example_sentence_english": "The car got sideways on the road.", + "pos": "noun", + "word_frequency": 9950 + }, + { + "word": "tremare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tremble;to shake", + "romanization": "tremare", + "example_sentence_native": "Tremava dal freddo.", + "example_sentence_english": "He was trembling from the cold.", + "pos": "verb", + "word_frequency": 9951 + }, + { + "word": "tristemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sadly", + "romanization": "tristemente", + "example_sentence_native": "Tristemente, la notizia era vera.", + "example_sentence_english": "Sadly, the news was true.", + "pos": "adverb", + "word_frequency": 9952 + }, + { + "word": "ulivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "olive tree", + "romanization": "ulivo", + "example_sentence_native": "C'è un vecchio ulivo nel giardino.", + "example_sentence_english": "There's an old olive tree in the garden.", + "pos": "noun", + "word_frequency": 9954 + }, + { + "word": "unificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unification", + "romanization": "unificazione", + "example_sentence_native": "L'unificazione d'Italia è avvenuta nel 1861.", + "example_sentence_english": "The unification of Italy happened in 1861.", + "pos": "noun", + "word_frequency": 9955 + }, + { + "word": "universalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "universally", + "romanization": "universalmente", + "example_sentence_native": "Questa teoria è universalmente accettata.", + "example_sentence_english": "This theory is universally accepted.", + "pos": "adverb", + "word_frequency": 9956 + }, + { + "word": "abbinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to combine;to match", + "romanization": "abbinare", + "example_sentence_native": "Devi abbinare i colori per un buon risultato.", + "example_sentence_english": "You need to combine the colors for a good result.", + "pos": "verb", + "word_frequency": 9962 + }, + { + "word": "acquario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aquarium", + "romanization": "acquario", + "example_sentence_native": "Ho un piccolo acquario con pesci tropicali.", + "example_sentence_english": "I have a small aquarium with tropical fish.", + "pos": "noun", + "word_frequency": 9963 + }, + { + "word": "addormentare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to put to sleep", + "romanization": "addormentare", + "example_sentence_native": "La ninna nanna può addormentare i bambini.", + "example_sentence_english": "The lullaby can put children to sleep.", + "pos": "verb", + "word_frequency": 9964 + }, + { + "word": "alterazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alteration;change", + "romanization": "alterazione", + "example_sentence_native": "C'è stata un'alterazione significativa nei dati.", + "example_sentence_english": "There has been a significant alteration in the data.", + "pos": "noun", + "word_frequency": 9965 + }, + { + "word": "amianto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asbestos", + "romanization": "amianto", + "example_sentence_native": "L'amianto è un materiale pericoloso per la salute.", + "example_sentence_english": "Asbestos is a dangerous material for health.", + "pos": "noun", + "word_frequency": 9966 + }, + { + "word": "anglosassone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Anglo-Saxon", + "romanization": "anglosassone", + "example_sentence_native": "La cultura anglosassone ha influenzato molte nazioni.", + "example_sentence_english": "Anglo-Saxon culture has influenced many nations.", + "pos": "adjective", + "word_frequency": 9967 + }, + { + "word": "approdo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landing;arrival;haven", + "romanization": "approdo", + "example_sentence_native": "La nave ha raggiunto il suo approdo finale.", + "example_sentence_english": "The ship reached its final landing.", + "pos": "noun", + "word_frequency": 9968 + }, + { + "word": "arredo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furnishing;decor", + "romanization": "arredo", + "example_sentence_native": "L'arredo della casa è molto moderno.", + "example_sentence_english": "The furnishing of the house is very modern.", + "pos": "noun", + "word_frequency": 9971 + }, + { + "word": "arteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artery", + "romanization": "arteria", + "example_sentence_native": "Le arterie trasportano il sangue dal cuore.", + "example_sentence_english": "Arteries carry blood from the heart.", + "pos": "noun", + "word_frequency": 9972 + }, + { + "word": "atlantico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Atlantic", + "romanization": "atlantico", + "example_sentence_native": "L'Oceano Atlantico è il secondo più grande.", + "example_sentence_english": "The Atlantic Ocean is the second largest.", + "pos": "adjective", + "word_frequency": 9973 + }, + { + "word": "attributo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attribute", + "romanization": "attributo", + "example_sentence_native": "La pazienza è un attributo importante per un insegnante.", + "example_sentence_english": "Patience is an important attribute for a teacher.", + "pos": "noun", + "word_frequency": 9974 + }, + { + "word": "autografo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autografo", + "romanization": "autografo", + "example_sentence_native": "Ho chiesto un autografo al mio attore preferito.", + "example_sentence_english": "I asked my favorite actor for an autograph.", + "pos": "noun", + "word_frequency": 9975 + }, + { + "word": "avena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oats", + "romanization": "avena", + "example_sentence_native": "La colazione con l'avena è molto salutare.", + "example_sentence_english": "Breakfast with oats is very healthy.", + "pos": "noun", + "word_frequency": 9976 + }, + { + "word": "brutalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutally", + "romanization": "brutalmente", + "example_sentence_native": "Ha risposto brutalmente alla domanda.", + "example_sentence_english": "He answered the question brutally.", + "pos": "adverb", + "word_frequency": 9979 + }, + { + "word": "canapa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemp", + "romanization": "canapa", + "example_sentence_native": "La canapa è usata per produrre tessuti e corde.", + "example_sentence_english": "Hemp is used to produce fabrics and ropes.", + "pos": "noun", + "word_frequency": 9982 + }, + { + "word": "carota", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "carrot", + "romanization": "carota", + "example_sentence_native": "Mi piacciono le carote crude.", + "example_sentence_english": "I like raw carrots.", + "pos": "noun", + "word_frequency": 9983 + }, + { + "word": "colomba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dove", + "romanization": "colomba", + "example_sentence_native": "Una colomba bianca è un simbolo di pace.", + "example_sentence_english": "A white dove is a symbol of peace.", + "pos": "noun", + "word_frequency": 9984 + }, + { + "word": "committente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "client;principal;commissioner", + "romanization": "committente", + "example_sentence_native": "Il committente ha approvato il progetto.", + "example_sentence_english": "The client approved the project.", + "pos": "noun", + "word_frequency": 9985 + }, + { + "word": "connotazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connotation", + "romanization": "connotazione", + "example_sentence_native": "La parola ha una connotazione negativa.", + "example_sentence_english": "The word has a negative connotation.", + "pos": "noun", + "word_frequency": 9986 + }, + { + "word": "cordone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cord;cordon", + "romanization": "cordone", + "example_sentence_native": "Il cordone ombelicale collega il bambino alla madre.", + "example_sentence_english": "The umbilical cord connects the baby to the mother.", + "pos": "noun", + "word_frequency": 9987 + }, + { + "word": "corredo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trousseau;kit;outfit", + "romanization": "corredo", + "example_sentence_native": "Il corredo della sposa era molto ricco.", + "example_sentence_english": "The bride's trousseau was very rich.", + "pos": "noun", + "word_frequency": 9988 + }, + { + "word": "datazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dating (of an object;event)", + "romanization": "datazione", + "example_sentence_native": "La datazione al carbonio è un metodo scientifico.", + "example_sentence_english": "Carbon dating is a scientific method.", + "pos": "noun", + "word_frequency": 9990 + }, + { + "word": "decennale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ten-year;decennial", + "romanization": "decennale", + "example_sentence_native": "Hanno celebrato il loro anniversario decennale.", + "example_sentence_english": "They celebrated their ten-year anniversary.", + "pos": "adjective", + "word_frequency": 9991 + }, + { + "word": "decisionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decision-making", + "romanization": "decisionale", + "example_sentence_native": "Ha un ruolo decisionale all'interno dell'azienda.", + "example_sentence_english": "He has a decision-making role within the company.", + "pos": "adjective", + "word_frequency": 9992 + }, + { + "word": "denso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dense;thick", + "romanization": "denso", + "example_sentence_native": "La nebbia era molto densa questa mattina.", + "example_sentence_english": "The fog was very dense this morning.", + "pos": "adjective", + "word_frequency": 9993 + }, + { + "word": "elencare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to list;to enumerate", + "romanization": "elencare", + "example_sentence_native": "Puoi elencare tutti gli ingredienti, per favore?", + "example_sentence_english": "Can you list all the ingredients, please?", + "pos": "verb", + "word_frequency": 9997 + }, + { + "word": "emorragia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemorrhage", + "romanization": "emorragia", + "example_sentence_native": "Il paziente ha avuto un'emorragia interna.", + "example_sentence_english": "The patient had an internal hemorrhage.", + "pos": "noun", + "word_frequency": 9998 + }, + { + "word": "esportare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to export", + "romanization": "esportare", + "example_sentence_native": "L'Italia esporta molti prodotti alimentari.", + "example_sentence_english": "Italy exports many food products.", + "pos": "verb", + "word_frequency": 10000 + }, + { + "word": "facciale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "facial", + "romanization": "facciale", + "example_sentence_native": "Ha ricevuto un trattamento facciale.", + "example_sentence_english": "She received a facial treatment.", + "pos": "adjective", + "word_frequency": 10002 + }, + { + "word": "fato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fate;destiny", + "romanization": "fato", + "example_sentence_native": "Il suo destino era segnato dal fato.", + "example_sentence_english": "His destiny was sealed by fate.", + "pos": "noun", + "word_frequency": 10004 + }, + { + "word": "fava", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fava bean;broad bean", + "romanization": "fava", + "example_sentence_native": "Mi piacciono le fave fresche in primavera.", + "example_sentence_english": "I like fresh fava beans in spring.", + "pos": "noun", + "word_frequency": 10005 + }, + { + "word": "feudale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feudal", + "romanization": "feudale", + "example_sentence_native": "Il sistema feudale dominava l'Europa medievale.", + "example_sentence_english": "The feudal system dominated medieval Europe.", + "pos": "adjective", + "word_frequency": 10006 + }, + { + "word": "fuorilegge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outlaw", + "romanization": "fuorilegge", + "example_sentence_native": "Il bandito era un fuorilegge ricercato.", + "example_sentence_english": "The bandit was a wanted outlaw.", + "pos": "noun", + "word_frequency": 10011 + }, + { + "word": "gallese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Welsh", + "romanization": "gallese", + "example_sentence_native": "Parla fluentemente il gallese.", + "example_sentence_english": "He speaks Welsh fluently.", + "pos": "adjective", + "word_frequency": 10013 + }, + { + "word": "giubileo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jubilee", + "romanization": "giubileo", + "example_sentence_native": "La Chiesa cattolica celebra un giubileo ogni 25 anni.", + "example_sentence_english": "The Catholic Church celebrates a jubilee every 25 years.", + "pos": "noun", + "word_frequency": 10015 + }, + { + "word": "glorioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glorious", + "romanization": "glorioso", + "example_sentence_native": "Hanno avuto una vittoria gloriosa.", + "example_sentence_english": "They had a glorious victory.", + "pos": "adjective", + "word_frequency": 10017 + }, + { + "word": "grembo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lap;womb", + "romanization": "grembo", + "example_sentence_native": "Il bambino dormiva nel grembo della madre.", + "example_sentence_english": "The baby was sleeping in its mother's lap.", + "pos": "noun", + "word_frequency": 10018 + }, + { + "word": "impeccabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impeccable;flawless", + "romanization": "impeccabile", + "example_sentence_native": "Il suo stile è sempre impeccabile.", + "example_sentence_english": "His style is always impeccable.", + "pos": "adjective", + "word_frequency": 10020 + }, + { + "word": "impotente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impotent;powerless", + "romanization": "impotente", + "example_sentence_native": "Si sentiva impotente di fronte alla situazione.", + "example_sentence_english": "He felt powerless in the face of the situation.", + "pos": "adjective", + "word_frequency": 10021 + }, + { + "word": "indirizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to address;to direct", + "romanization": "indirizzare", + "example_sentence_native": "Devi indirizzare la lettera correttamente.", + "example_sentence_english": "You must address the letter correctly.", + "pos": "verb", + "word_frequency": 10022 + }, + { + "word": "interferire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to interfere", + "romanization": "interferire", + "example_sentence_native": "Non mi piace che la gente interferisca nei miei affari.", + "example_sentence_english": "I don't like people interfering in my business.", + "pos": "verb", + "word_frequency": 10023 + }, + { + "word": "intitolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entitle;to name", + "romanization": "intitolare", + "example_sentence_native": "Hanno deciso di intitolare la piazza al poeta.", + "example_sentence_english": "They decided to name the square after the poet.", + "pos": "verb", + "word_frequency": 10024 + }, + { + "word": "involontariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involuntarily;unintentionally", + "romanization": "involontariamente", + "example_sentence_native": "Ha involontariamente rivelato il segreto.", + "example_sentence_english": "He unintentionally revealed the secret.", + "pos": "adverb", + "word_frequency": 10025 + }, + { + "word": "lavarsi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wash oneself", + "romanization": "lavarsi", + "example_sentence_native": "Mi lavo le mani prima di mangiare.", + "example_sentence_english": "I wash my hands before eating.", + "pos": "verb", + "word_frequency": 10029 + }, + { + "word": "levare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to remove;to lift", + "romanization": "levare", + "example_sentence_native": "Devi levare la polvere dai mobili.", + "example_sentence_english": "You must remove the dust from the furniture.", + "pos": "verb", + "word_frequency": 10032 + }, + { + "word": "mandorla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "almond", + "romanization": "mandorla", + "example_sentence_native": "Mi piace il latte di mandorla.", + "example_sentence_english": "I like almond milk.", + "pos": "noun", + "word_frequency": 10036 + }, + { + "word": "manifattura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacture;manufacturing", + "romanization": "manifattura", + "example_sentence_native": "L'industria della manifattura è importante per l'economia.", + "example_sentence_english": "The manufacturing industry is important for the economy.", + "pos": "noun", + "word_frequency": 10037 + }, + { + "word": "momentaneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "momentarily;temporarily", + "romanization": "momentaneamente", + "example_sentence_native": "La linea telefonica è momentaneamente interrotta.", + "example_sentence_english": "The phone line is momentarily interrupted.", + "pos": "adverb", + "word_frequency": 10039 + }, + { + "word": "mutazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutation", + "romanization": "mutazione", + "example_sentence_native": "La mutazione genetica può portare a nuove caratteristiche.", + "example_sentence_english": "Genetic mutation can lead to new characteristics.", + "pos": "noun", + "word_frequency": 10040 + }, + { + "word": "navetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shuttle", + "romanization": "navetta", + "example_sentence_native": "Prendiamo la navetta per l'aeroporto.", + "example_sentence_english": "Let's take the shuttle to the airport.", + "pos": "noun", + "word_frequency": 10041 + }, + { + "word": "nuziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuptial", + "romanization": "nuziale", + "example_sentence_native": "Hanno celebrato la cerimonia nuziale in chiesa.", + "example_sentence_english": "They celebrated the nuptial ceremony in church.", + "pos": "adjective", + "word_frequency": 10043 + }, + { + "word": "omicida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murderer", + "romanization": "omicida", + "example_sentence_native": "L'omicida è stato arrestato dalla polizia.", + "example_sentence_english": "The murderer was arrested by the police.", + "pos": "noun", + "word_frequency": 10044 + }, + { + "word": "oppressione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppression", + "romanization": "oppressione", + "example_sentence_native": "Molte persone hanno lottato contro l'oppressione.", + "example_sentence_english": "Many people fought against oppression.", + "pos": "noun", + "word_frequency": 10045 + }, + { + "word": "parcheggiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to park", + "romanization": "parcheggiare", + "example_sentence_native": "Devo parcheggiare la macchina qui.", + "example_sentence_english": "I need to park the car here.", + "pos": "verb", + "word_frequency": 10047 + }, + { + "word": "petalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "petal", + "romanization": "petalo", + "example_sentence_native": "Un petalo è caduto dalla rosa.", + "example_sentence_english": "A petal fell from the rose.", + "pos": "noun", + "word_frequency": 10050 + }, + { + "word": "pezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patch", + "romanization": "pezza", + "example_sentence_native": "Ho usato una pezza per pulire il tavolo.", + "example_sentence_english": "I used a rag to clean the table.", + "pos": "noun", + "word_frequency": 10051 + }, + { + "word": "poggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rest", + "romanization": "poggiare", + "example_sentence_native": "Puoi poggiare il libro sul tavolo.", + "example_sentence_english": "You can rest the book on the table.", + "pos": "verb", + "word_frequency": 10055 + }, + { + "word": "pony", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pony", + "romanization": "pony", + "example_sentence_native": "I bambini amano cavalcare i pony.", + "example_sentence_english": "Children love riding ponies.", + "pos": "noun", + "word_frequency": 10057 + }, + { + "word": "prelevare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to withdraw", + "romanization": "prelevare", + "example_sentence_native": "Devo prelevare dei soldi dal bancomat.", + "example_sentence_english": "I need to withdraw some money from the ATM.", + "pos": "verb", + "word_frequency": 10059 + }, + { + "word": "prole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offspring", + "romanization": "prole", + "example_sentence_native": "La coppia desiderava avere prole.", + "example_sentence_english": "The couple wished to have offspring.", + "pos": "noun", + "word_frequency": 10060 + }, + { + "word": "regolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulated", + "romanization": "regolato", + "example_sentence_native": "Il traffico è ben regolato in questa città.", + "example_sentence_english": "Traffic is well regulated in this city.", + "pos": "adjective", + "word_frequency": 10061 + }, + { + "word": "riferito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reported", + "romanization": "riferito", + "example_sentence_native": "Il problema riferito è stato risolto.", + "example_sentence_english": "The reported problem has been solved.", + "pos": "adjective", + "word_frequency": 10062 + }, + { + "word": "rimando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference", + "romanization": "rimando", + "example_sentence_native": "C'è un rimando a un altro capitolo.", + "example_sentence_english": "There is a reference to another chapter.", + "pos": "noun", + "word_frequency": 10063 + }, + { + "word": "rivendicazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "claim", + "romanization": "rivendicazione", + "example_sentence_native": "Hanno presentato una rivendicazione per i danni subiti.", + "example_sentence_english": "They submitted a claim for the damages suffered.", + "pos": "noun", + "word_frequency": 10064 + }, + { + "word": "rumeno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Romanian", + "romanization": "rumeno", + "example_sentence_native": "Parla fluentemente il rumeno.", + "example_sentence_english": "He speaks Romanian fluently.", + "pos": "adjective", + "word_frequency": 10065 + }, + { + "word": "sacca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bag", + "romanization": "sacca", + "example_sentence_native": "Ha messo tutto nella sua sacca.", + "example_sentence_english": "He put everything in his bag.", + "pos": "noun", + "word_frequency": 10067 + }, + { + "word": "salmone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salmon", + "romanization": "salmone", + "example_sentence_native": "Mi piace mangiare il salmone affumicato.", + "example_sentence_english": "I like to eat smoked salmon.", + "pos": "noun", + "word_frequency": 10068 + }, + { + "word": "sanguigno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanguine", + "romanization": "sanguigno", + "example_sentence_native": "Ha un carattere sanguigno e passionale.", + "example_sentence_english": "He has a sanguine and passionate character.", + "pos": "adjective", + "word_frequency": 10069 + }, + { + "word": "sciocchezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonsense", + "romanization": "sciocchezza", + "example_sentence_native": "Non dire sciocchezze!", + "example_sentence_english": "Don't say nonsense!", + "pos": "noun", + "word_frequency": 10070 + }, + { + "word": "sciroppo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "syrup", + "romanization": "sciroppo", + "example_sentence_native": "Ho preso lo sciroppo per la tosse.", + "example_sentence_english": "I took the cough syrup.", + "pos": "noun", + "word_frequency": 10071 + }, + { + "word": "scomodo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uncomfortable", + "romanization": "scomodo", + "example_sentence_native": "Questa sedia è molto scomoda.", + "example_sentence_english": "This chair is very uncomfortable.", + "pos": "adjective", + "word_frequency": 10072 + }, + { + "word": "secessione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secession", + "romanization": "secessione", + "example_sentence_native": "La secessione di alcuni stati portò alla guerra civile.", + "example_sentence_english": "The secession of some states led to civil war.", + "pos": "noun", + "word_frequency": 10073 + }, + { + "word": "sembrato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seemed", + "romanization": "sembrato", + "example_sentence_native": "Mi è sembrato strano.", + "example_sentence_english": "It seemed strange to me.", + "pos": "adjective", + "word_frequency": 10074 + }, + { + "word": "sensuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensual", + "romanization": "sensuale", + "example_sentence_native": "Ha una voce molto sensuale.", + "example_sentence_english": "She has a very sensual voice.", + "pos": "adjective", + "word_frequency": 10075 + }, + { + "word": "seriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serial", + "romanization": "seriale", + "example_sentence_native": "Stiamo guardando una serie televisiva seriale.", + "example_sentence_english": "We are watching a serial television series.", + "pos": "adjective", + "word_frequency": 10076 + }, + { + "word": "sharia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sharia", + "romanization": "sharia", + "example_sentence_native": "La sharia è la legge islamica.", + "example_sentence_english": "Sharia is Islamic law.", + "pos": "noun", + "word_frequency": 10078 + }, + { + "word": "sopprimere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to suppress", + "romanization": "sopprimere", + "example_sentence_native": "Il governo ha cercato di sopprimere la ribellione.", + "example_sentence_english": "The government tried to suppress the rebellion.", + "pos": "verb", + "word_frequency": 10079 + }, + { + "word": "spargere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to spread;to scatter", + "romanization": "spargere", + "example_sentence_native": "Ha sparso i semi nel giardino.", + "example_sentence_english": "He scattered the seeds in the garden.", + "pos": "verb", + "word_frequency": 10080 + }, + { + "word": "specificità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specificity", + "romanization": "specificità", + "example_sentence_native": "La specificità del problema richiede un'analisi dettagliata.", + "example_sentence_english": "The specificity of the problem requires a detailed analysis.", + "pos": "noun", + "word_frequency": 10081 + }, + { + "word": "stacco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detachment;break;jump", + "romanization": "stacco", + "example_sentence_native": "Il ballerino ha eseguito uno stacco perfetto.", + "example_sentence_english": "The dancer performed a perfect jump.", + "pos": "noun", + "word_frequency": 10082 + }, + { + "word": "stalker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stalker", + "romanization": "stalker", + "example_sentence_native": "La polizia ha arrestato lo stalker.", + "example_sentence_english": "The police arrested the stalker.", + "pos": "noun", + "word_frequency": 10083 + }, + { + "word": "stufato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stew", + "romanization": "stufato", + "example_sentence_native": "Abbiamo mangiato un delizioso stufato di manzo.", + "example_sentence_english": "We ate a delicious beef stew.", + "pos": "noun", + "word_frequency": 10085 + }, + { + "word": "stufo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fed up;tired of", + "romanization": "stufo", + "example_sentence_native": "Sono stufo di aspettare.", + "example_sentence_english": "I'm fed up with waiting.", + "pos": "adjective", + "word_frequency": 10086 + }, + { + "word": "superfluo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superfluous;unnecessary", + "romanization": "superfluo", + "example_sentence_native": "Queste informazioni sono superflue.", + "example_sentence_english": "This information is superfluous.", + "pos": "adjective", + "word_frequency": 10087 + }, + { + "word": "sussistere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exist;to subsist", + "romanization": "sussistere", + "example_sentence_native": "Non sussistono le condizioni per procedere.", + "example_sentence_english": "The conditions to proceed do not exist.", + "pos": "verb", + "word_frequency": 10089 + }, + { + "word": "tab", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tab (e.g.;browser tab)", + "romanization": "tab", + "example_sentence_native": "Ho aperto una nuova tab nel browser.", + "example_sentence_english": "I opened a new tab in the browser.", + "pos": "noun", + "word_frequency": 10090 + }, + { + "word": "thai", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai", + "romanization": "thai", + "example_sentence_native": "Mi piace molto il cibo thai.", + "example_sentence_english": "I really like Thai food.", + "pos": "adjective", + "word_frequency": 10091 + }, + { + "word": "travolgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overwhelm;to sweep away", + "romanization": "travolgere", + "example_sentence_native": "L'onda ha travolto la barca.", + "example_sentence_english": "The wave swept away the boat.", + "pos": "verb", + "word_frequency": 10094 + }, + { + "word": "tutor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tutor", + "romanization": "tutor", + "example_sentence_native": "Ho assunto un tutor per aiutarmi con la matematica.", + "example_sentence_english": "I hired a tutor to help me with math.", + "pos": "noun", + "word_frequency": 10096 + }, + { + "word": "ventenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twenty-year-old", + "romanization": "ventenne", + "example_sentence_native": "È una ragazza ventenne.", + "example_sentence_english": "She is a twenty-year-old girl.", + "pos": "adjective", + "word_frequency": 10097 + }, + { + "word": "veridicità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "veracity;truthfulness", + "romanization": "veridicità", + "example_sentence_native": "Dubito della veridicità delle sue affermazioni.", + "example_sentence_english": "I doubt the veracity of his statements.", + "pos": "noun", + "word_frequency": 10098 + }, + { + "word": "videocamera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camcorder;video camera", + "romanization": "videocamera", + "example_sentence_native": "Ho comprato una nuova videocamera.", + "example_sentence_english": "I bought a new video camera.", + "pos": "noun", + "word_frequency": 10099 + }, + { + "word": "vile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vile;cowardly", + "romanization": "vile", + "example_sentence_native": "Ha commesso un atto vile.", + "example_sentence_english": "He committed a vile act.", + "pos": "adjective", + "word_frequency": 10100 + }, + { + "word": "vitello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calf;veal", + "romanization": "vitello", + "example_sentence_native": "Per cena abbiamo mangiato il vitello.", + "example_sentence_english": "For dinner we ate veal.", + "pos": "noun", + "word_frequency": 10101 + }, + { + "word": "zucchina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "zucchini;courgette", + "romanization": "zucchina", + "example_sentence_native": "Ho comprato delle zucchine fresche.", + "example_sentence_english": "I bought some fresh zucchini.", + "pos": "noun", + "word_frequency": 10105 + }, + { + "word": "abisso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abyss;chasm", + "romanization": "abisso", + "example_sentence_native": "Si sentiva sull'orlo di un abisso.", + "example_sentence_english": "He felt on the edge of an abyss.", + "pos": "noun", + "word_frequency": 10106 + }, + { + "word": "accensione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ignition;switching on", + "romanization": "accensione", + "example_sentence_native": "L'accensione del motore è stata rapida.", + "example_sentence_english": "The engine ignition was quick.", + "pos": "noun", + "word_frequency": 10107 + }, + { + "word": "alterare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to alter;to change", + "romanization": "alterare", + "example_sentence_native": "Non dovresti alterare i documenti originali.", + "example_sentence_english": "You shouldn't alter the original documents.", + "pos": "verb", + "word_frequency": 10112 + }, + { + "word": "ambiguo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambiguous", + "romanization": "ambiguo", + "example_sentence_native": "La sua risposta era ambigua.", + "example_sentence_english": "His answer was ambiguous.", + "pos": "adjective", + "word_frequency": 10113 + }, + { + "word": "anestesia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anesthesia", + "romanization": "anestesia", + "example_sentence_native": "Il paziente è sotto anestesia.", + "example_sentence_english": "The patient is under anesthesia.", + "pos": "noun", + "word_frequency": 10115 + }, + { + "word": "anticorpo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antibody", + "romanization": "anticorpo", + "example_sentence_native": "Il corpo produce anticorpi per combattere le infezioni.", + "example_sentence_english": "The body produces antibodies to fight infections.", + "pos": "noun", + "word_frequency": 10116 + }, + { + "word": "army", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "army (of fans)", + "romanization": "army", + "example_sentence_native": "I BTS hanno un'enorme army di fan.", + "example_sentence_english": "BTS has a huge army of fans.", + "pos": "noun", + "word_frequency": 10117 + }, + { + "word": "attendibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliable;credible", + "romanization": "attendibile", + "example_sentence_native": "La fonte non è attendibile.", + "example_sentence_english": "The source is not reliable.", + "pos": "adjective", + "word_frequency": 10118 + }, + { + "word": "autenticità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authenticity", + "romanization": "autenticità", + "example_sentence_native": "L'autenticità del documento è stata confermata.", + "example_sentence_english": "The authenticity of the document was confirmed.", + "pos": "noun", + "word_frequency": 10120 + }, + { + "word": "barbarie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbarity;savagery", + "romanization": "barbarie", + "example_sentence_native": "Le barbarie della guerra sono inaccettabili.", + "example_sentence_english": "The barbarities of war are unacceptable.", + "pos": "noun", + "word_frequency": 10121 + }, + { + "word": "beneficiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to benefit", + "romanization": "beneficiare", + "example_sentence_native": "Tutti possono beneficiare di un buon riposo.", + "example_sentence_english": "Everyone can benefit from a good rest.", + "pos": "verb", + "word_frequency": 10123 + }, + { + "word": "capogruppo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "group leader", + "romanization": "capogruppo", + "example_sentence_native": "Il capogruppo ha presentato la proposta.", + "example_sentence_english": "The group leader presented the proposal.", + "pos": "noun", + "word_frequency": 10128 + }, + { + "word": "carisma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charisma", + "romanization": "carisma", + "example_sentence_native": "Il suo carisma è innegabile.", + "example_sentence_english": "His charisma is undeniable.", + "pos": "noun", + "word_frequency": 10129 + }, + { + "word": "chiavetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "USB stick;small key", + "romanization": "chiavetta", + "example_sentence_native": "Ho salvato i dati sulla chiavetta USB.", + "example_sentence_english": "I saved the data on the USB stick.", + "pos": "noun", + "word_frequency": 10130 + }, + { + "word": "contrarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contract", + "romanization": "contrarre", + "example_sentence_native": "È facile contrarre un raffreddore in inverno.", + "example_sentence_english": "It's easy to contract a cold in winter.", + "pos": "verb", + "word_frequency": 10132 + }, + { + "word": "cordiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cordial;friendly", + "romanization": "cordiale", + "example_sentence_native": "Ha sempre un atteggiamento molto cordiale.", + "example_sentence_english": "He always has a very cordial attitude.", + "pos": "adjective", + "word_frequency": 10134 + }, + { + "word": "crowdfunding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowdfunding", + "romanization": "crowdfunding", + "example_sentence_native": "Hanno lanciato una campagna di crowdfunding per il progetto.", + "example_sentence_english": "They launched a crowdfunding campaign for the project.", + "pos": "noun", + "word_frequency": 10136 + }, + { + "word": "cult", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cult", + "romanization": "cult", + "example_sentence_native": "Questo film è diventato un vero cult.", + "example_sentence_english": "This film has become a true cult.", + "pos": "noun", + "word_frequency": 10137 + }, + { + "word": "dialogare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dialogue;to converse", + "romanization": "dialogare", + "example_sentence_native": "È importante dialogare per risolvere i problemi.", + "example_sentence_english": "It's important to dialogue to solve problems.", + "pos": "verb", + "word_frequency": 10143 + }, + { + "word": "dignitoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dignified;decent", + "romanization": "dignitoso", + "example_sentence_native": "Ha mantenuto un atteggiamento dignitoso.", + "example_sentence_english": "He maintained a dignified attitude.", + "pos": "adjective", + "word_frequency": 10144 + }, + { + "word": "diluvio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deluge;flood", + "romanization": "diluvio", + "example_sentence_native": "Dopo il diluvio, le strade erano allagate.", + "example_sentence_english": "After the deluge, the streets were flooded.", + "pos": "noun", + "word_frequency": 10145 + }, + { + "word": "dinosauro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dinosaur", + "romanization": "dinosauro", + "example_sentence_native": "I bambini amano i dinosauri.", + "example_sentence_english": "Children love dinosaurs.", + "pos": "noun", + "word_frequency": 10146 + }, + { + "word": "donatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "donor", + "romanization": "donatore", + "example_sentence_native": "È un donatore di sangue regolare.", + "example_sentence_english": "He is a regular blood donor.", + "pos": "noun", + "word_frequency": 10147 + }, + { + "word": "emirato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emirate", + "romanization": "emirato", + "example_sentence_native": "Dubai è un emirato degli Emirati Arabi Uniti.", + "example_sentence_english": "Dubai is an emirate of the United Arab Emirates.", + "pos": "noun", + "word_frequency": 10148 + }, + { + "word": "equilibrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balanced", + "romanization": "equilibrato", + "example_sentence_native": "È importante avere una dieta equilibrata.", + "example_sentence_english": "It's important to have a balanced diet.", + "pos": "adjective", + "word_frequency": 10149 + }, + { + "word": "farmaceutico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pharmaceutical", + "romanization": "farmaceutico", + "example_sentence_native": "L'industria farmaceutica è in crescita.", + "example_sentence_english": "The pharmaceutical industry is growing.", + "pos": "adjective", + "word_frequency": 10151 + }, + { + "word": "feeling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feeling;vibe", + "romanization": "feeling", + "example_sentence_native": "Tra loro c'è un buon feeling.", + "example_sentence_english": "There's a good feeling between them.", + "pos": "noun", + "word_frequency": 10152 + }, + { + "word": "formativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formative;educational", + "romanization": "formativo", + "example_sentence_native": "È stata un'esperienza molto formativa.", + "example_sentence_english": "It was a very formative experience.", + "pos": "adjective", + "word_frequency": 10155 + }, + { + "word": "fratellino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "little brother", + "romanization": "fratellino", + "example_sentence_native": "Il mio fratellino gioca in giardino.", + "example_sentence_english": "My little brother is playing in the garden.", + "pos": "noun", + "word_frequency": 10156 + }, + { + "word": "frustrante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrating", + "romanization": "frustrante", + "example_sentence_native": "La situazione è diventata frustrante.", + "example_sentence_english": "The situation has become frustrating.", + "pos": "adjective", + "word_frequency": 10158 + }, + { + "word": "giacimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposit;field", + "romanization": "giacimento", + "example_sentence_native": "Hanno scoperto un nuovo giacimento di gas naturale.", + "example_sentence_english": "They discovered a new natural gas deposit.", + "pos": "noun", + "word_frequency": 10160 + }, + { + "word": "gnocco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dumpling;gnocchi", + "romanization": "gnocco", + "example_sentence_native": "Mi piacciono molto gli gnocchi al ragù.", + "example_sentence_english": "I really like gnocchi with meat sauce.", + "pos": "noun", + "word_frequency": 10161 + }, + { + "word": "guardaroba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "wardrobe;cloakroom", + "romanization": "guardaroba", + "example_sentence_native": "Ho bisogno di un nuovo guardaroba per i miei vestiti.", + "example_sentence_english": "I need a new wardrobe for my clothes.", + "pos": "noun", + "word_frequency": 10162 + }, + { + "word": "immorale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immoral", + "romanization": "immorale", + "example_sentence_native": "Il suo comportamento è stato considerato immorale.", + "example_sentence_english": "His behavior was considered immoral.", + "pos": "adjective", + "word_frequency": 10166 + }, + { + "word": "impensabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unthinkable;inconceivable", + "romanization": "impensabile", + "example_sentence_native": "Per me, una vita senza musica è impensabile.", + "example_sentence_english": "For me, a life without music is unthinkable.", + "pos": "adjective", + "word_frequency": 10167 + }, + { + "word": "incompetente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incompetent", + "romanization": "incompetente", + "example_sentence_native": "È stato licenziato perché era incompetente nel suo lavoro.", + "example_sentence_english": "He was fired because he was incompetent at his job.", + "pos": "adjective", + "word_frequency": 10168 + }, + { + "word": "indicativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicative;suggestive", + "romanization": "indicativo", + "example_sentence_native": "Questo dato è solo indicativo, non definitivo.", + "example_sentence_english": "This data is only indicative, not definitive.", + "pos": "adjective", + "word_frequency": 10169 + }, + { + "word": "infrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infringement;violation;infraction", + "romanization": "infrazione", + "example_sentence_native": "Ha ricevuto una multa per un'infrazione al codice della strada.", + "example_sentence_english": "He received a fine for a traffic violation.", + "pos": "noun", + "word_frequency": 10170 + }, + { + "word": "intervistato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interviewee", + "romanization": "intervistato", + "example_sentence_native": "L'intervistato ha risposto a tutte le domande.", + "example_sentence_english": "The interviewee answered all the questions.", + "pos": "noun", + "word_frequency": 10172 + }, + { + "word": "introito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "income;revenue", + "romanization": "introito", + "example_sentence_native": "Gli introiti dell'azienda sono aumentati quest'anno.", + "example_sentence_english": "The company's revenues increased this year.", + "pos": "noun", + "word_frequency": 10173 + }, + { + "word": "invasore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invader", + "romanization": "invasore", + "example_sentence_native": "Gli invasori furono respinti dalle forze di difesa.", + "example_sentence_english": "The invaders were repelled by the defense forces.", + "pos": "noun", + "word_frequency": 10174 + }, + { + "word": "irrigazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irrigation", + "romanization": "irrigazione", + "example_sentence_native": "Il sistema di irrigazione automatico è molto efficiente.", + "example_sentence_english": "The automatic irrigation system is very efficient.", + "pos": "noun", + "word_frequency": 10175 + }, + { + "word": "liquore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "liqueur;liquor", + "romanization": "liquore", + "example_sentence_native": "Dopo cena, abbiamo bevuto un bicchierino di liquore.", + "example_sentence_english": "After dinner, we had a small glass of liqueur.", + "pos": "noun", + "word_frequency": 10178 + }, + { + "word": "litigio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarrel;dispute;argument", + "romanization": "litigio", + "example_sentence_native": "Hanno avuto un brutto litigio ieri sera.", + "example_sentence_english": "They had a bad quarrel last night.", + "pos": "noun", + "word_frequency": 10179 + }, + { + "word": "localizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to locate;to localize", + "romanization": "localizzare", + "example_sentence_native": "Dobbiamo localizzare la fonte del problema.", + "example_sentence_english": "We need to locate the source of the problem.", + "pos": "verb", + "word_frequency": 10181 + }, + { + "word": "madrelingua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "native speaker;mother tongue", + "romanization": "madrelingua", + "example_sentence_native": "Vorrei parlare italiano come un madrelingua.", + "example_sentence_english": "I would like to speak Italian like a native speaker.", + "pos": "noun", + "word_frequency": 10183 + }, + { + "word": "marcato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marked;pronounced;strong", + "romanization": "marcato", + "example_sentence_native": "Ha un accento molto marcato.", + "example_sentence_english": "He has a very strong accent.", + "pos": "adjective", + "word_frequency": 10184 + }, + { + "word": "mercatino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flea market;small market", + "romanization": "mercatino", + "example_sentence_native": "Ho comprato questo al mercatino delle pulci.", + "example_sentence_english": "I bought this at the flea market.", + "pos": "noun", + "word_frequency": 10186 + }, + { + "word": "minimizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to minimize", + "romanization": "minimizzare", + "example_sentence_native": "Non dovresti minimizzare l'importanza del problema.", + "example_sentence_english": "You shouldn't minimize the importance of the problem.", + "pos": "verb", + "word_frequency": 10189 + }, + { + "word": "minuscolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny;minuscule", + "romanization": "minuscolo", + "example_sentence_native": "Ho trovato un errore minuscolo nel testo.", + "example_sentence_english": "I found a tiny error in the text.", + "pos": "adjective", + "word_frequency": 10190 + }, + { + "word": "mirare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to aim;to target", + "romanization": "mirare", + "example_sentence_native": "Ha mirato con attenzione prima di sparare.", + "example_sentence_english": "He aimed carefully before shooting.", + "pos": "verb", + "word_frequency": 10191 + }, + { + "word": "modem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "modem", + "romanization": "modem", + "example_sentence_native": "Il mio modem non funziona, non ho internet.", + "example_sentence_english": "My modem isn't working, I don't have internet.", + "pos": "noun", + "word_frequency": 10192 + }, + { + "word": "monarca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarch", + "romanization": "monarca", + "example_sentence_native": "Il monarca regnò per molti anni.", + "example_sentence_english": "The monarch reigned for many years.", + "pos": "noun", + "word_frequency": 10193 + }, + { + "word": "narratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narrator", + "romanization": "narratore", + "example_sentence_native": "Il narratore della storia era molto bravo.", + "example_sentence_english": "The narrator of the story was very good.", + "pos": "noun", + "word_frequency": 10195 + }, + { + "word": "naviglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canal;waterway", + "romanization": "naviglio", + "example_sentence_native": "Abbiamo fatto una passeggiata lungo il Naviglio Grande.", + "example_sentence_english": "We took a walk along the Naviglio Grande.", + "pos": "noun", + "word_frequency": 10196 + }, + { + "word": "passeggiare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to walk;to stroll", + "romanization": "passeggiare", + "example_sentence_native": "Mi piace passeggiare nel parco la domenica.", + "example_sentence_english": "I like to walk in the park on Sundays.", + "pos": "verb", + "word_frequency": 10200 + }, + { + "word": "pendenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slope;incline;pending matter", + "romanization": "pendenza", + "example_sentence_native": "La strada ha una forte pendenza.", + "example_sentence_english": "The road has a steep slope.", + "pos": "noun", + "word_frequency": 10201 + }, + { + "word": "piegare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fold;to bend", + "romanization": "piegare", + "example_sentence_native": "Puoi piegare i vestiti puliti?", + "example_sentence_english": "Can you fold the clean clothes?", + "pos": "verb", + "word_frequency": 10204 + }, + { + "word": "pornografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pornography", + "romanization": "pornografia", + "example_sentence_native": "La pornografia è un argomento controverso.", + "example_sentence_english": "Pornography is a controversial topic.", + "pos": "noun", + "word_frequency": 10206 + }, + { + "word": "procinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verge;point (usually in \"in procinto di\")", + "romanization": "procinto", + "example_sentence_native": "Eravamo in procinto di partire quando ha iniziato a piovere.", + "example_sentence_english": "We were about to leave when it started to rain.", + "pos": "noun", + "word_frequency": 10207 + }, + { + "word": "psichiatria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychiatry", + "romanization": "psichiatria", + "example_sentence_native": "Ha studiato psichiatria all'università.", + "example_sentence_english": "She studied psychiatry at university.", + "pos": "noun", + "word_frequency": 10208 + }, + { + "word": "quarantena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarantine", + "romanization": "quarantena", + "example_sentence_native": "Molte persone sono state in quarantena durante la pandemia.", + "example_sentence_english": "Many people were in quarantine during the pandemic.", + "pos": "noun", + "word_frequency": 10209 + }, + { + "word": "retaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heritage;legacy", + "romanization": "retaggio", + "example_sentence_native": "Il museo conserva il retaggio culturale della regione.", + "example_sentence_english": "The museum preserves the cultural heritage of the region.", + "pos": "noun", + "word_frequency": 10210 + }, + { + "word": "riaprire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to reopen", + "romanization": "riaprire", + "example_sentence_native": "Il negozio riaprirà domani mattina.", + "example_sentence_english": "The shop will reopen tomorrow morning.", + "pos": "verb", + "word_frequency": 10211 + }, + { + "word": "ricoperto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "covered", + "romanization": "ricoperto", + "example_sentence_native": "La montagna era ricoperta di neve.", + "example_sentence_english": "The mountain was covered with snow.", + "pos": "adjective", + "word_frequency": 10212 + }, + { + "word": "rivendicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to claim;to demand", + "romanization": "rivendicare", + "example_sentence_native": "Hanno rivendicato la proprietà del terreno.", + "example_sentence_english": "They claimed ownership of the land.", + "pos": "verb", + "word_frequency": 10213 + }, + { + "word": "rovere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oak (tree;wood)", + "romanization": "rovere", + "example_sentence_native": "Il tavolo è fatto di legno di rovere.", + "example_sentence_english": "The table is made of oak wood.", + "pos": "noun", + "word_frequency": 10215 + }, + { + "word": "rum", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rum", + "romanization": "rum", + "example_sentence_native": "Vorrei un bicchiere di rum con ghiaccio.", + "example_sentence_english": "I would like a glass of rum with ice.", + "pos": "noun", + "word_frequency": 10216 + }, + { + "word": "saliente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "salient;prominent;striking", + "romanization": "saliente", + "example_sentence_native": "Il punto più saliente del discorso è stato l'annuncio delle nuove politiche.", + "example_sentence_english": "The most salient point of the speech was the announcement of the new policies.", + "pos": "adjective", + "word_frequency": 10217 + }, + { + "word": "serratura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lock (of a door)", + "romanization": "serratura", + "example_sentence_native": "La serratura della porta è rotta.", + "example_sentence_english": "The door lock is broken.", + "pos": "noun", + "word_frequency": 10219 + }, + { + "word": "simil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "similar;pseudo-", + "romanization": "simil", + "example_sentence_native": "Hanno usato un materiale simil-pelle per la borsa.", + "example_sentence_english": "They used a similar-leather material for the bag.", + "pos": "adjective", + "word_frequency": 10221 + }, + { + "word": "slide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slide (presentation)", + "romanization": "slide", + "example_sentence_native": "La presentazione aveva molte slide interessanti.", + "example_sentence_english": "The presentation had many interesting slides.", + "pos": "noun", + "word_frequency": 10222 + }, + { + "word": "soffocare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to suffocate;to choke", + "romanization": "soffocare", + "example_sentence_native": "Il fumo ha iniziato a soffocare le persone.", + "example_sentence_english": "The smoke started to suffocate the people.", + "pos": "verb", + "word_frequency": 10224 + }, + { + "word": "suddito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subject (of a monarch;state)", + "romanization": "suddito", + "example_sentence_native": "I sudditi del re erano fedeli.", + "example_sentence_english": "The king's subjects were loyal.", + "pos": "noun", + "word_frequency": 10225 + }, + { + "word": "suocero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "father-in-law", + "romanization": "suocero", + "example_sentence_native": "Mio suocero è un uomo molto gentile.", + "example_sentence_english": "My father-in-law is a very kind man.", + "pos": "noun", + "word_frequency": 10226 + }, + { + "word": "surf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surf (sport)", + "romanization": "surf", + "example_sentence_native": "Mi piace fare surf in estate.", + "example_sentence_english": "I like to surf in the summer.", + "pos": "noun", + "word_frequency": 10227 + }, + { + "word": "tattico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactical", + "romanization": "tattico", + "example_sentence_native": "Hanno adottato una strategia tattica per vincere la partita.", + "example_sentence_english": "They adopted a tactical strategy to win the game.", + "pos": "adjective", + "word_frequency": 10228 + }, + { + "word": "vantaggioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advantageous;beneficial", + "romanization": "vantaggioso", + "example_sentence_native": "È stato un accordo molto vantaggioso per entrambe le parti.", + "example_sentence_english": "It was a very advantageous agreement for both parties.", + "pos": "adjective", + "word_frequency": 10229 + }, + { + "word": "varco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passage;gap;opening", + "romanization": "varco", + "example_sentence_native": "Hanno trovato un varco nella recinzione.", + "example_sentence_english": "They found a gap in the fence.", + "pos": "noun", + "word_frequency": 10230 + }, + { + "word": "accertare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ascertain;to verify", + "romanization": "accertare", + "example_sentence_native": "Dobbiamo accertare i fatti prima di agire.", + "example_sentence_english": "We must ascertain the facts before acting.", + "pos": "verb", + "word_frequency": 10234 + }, + { + "word": "accumulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulation;pile", + "romanization": "accumulo", + "example_sentence_native": "C'è stato un accumulo di neve sul tetto.", + "example_sentence_english": "There was an accumulation of snow on the roof.", + "pos": "noun", + "word_frequency": 10235 + }, + { + "word": "affettuoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affectionate;loving", + "romanization": "affettuoso", + "example_sentence_native": "È un cane molto affettuoso.", + "example_sentence_english": "He is a very affectionate dog.", + "pos": "adjective", + "word_frequency": 10236 + }, + { + "word": "affittare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to rent;to lease", + "romanization": "affittare", + "example_sentence_native": "Vorrei affittare un appartamento in centro.", + "example_sentence_english": "I would like to rent an apartment downtown.", + "pos": "verb", + "word_frequency": 10237 + }, + { + "word": "agile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agile;nimble", + "romanization": "agile", + "example_sentence_native": "Il gatto era molto agile e saltava facilmente.", + "example_sentence_english": "The cat was very agile and jumped easily.", + "pos": "adjective", + "word_frequency": 10238 + }, + { + "word": "aiutino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little help;small favor", + "romanization": "aiutino", + "example_sentence_native": "Ho bisogno di un aiutino con questo problema.", + "example_sentence_english": "I need a little help with this problem.", + "pos": "noun", + "word_frequency": 10239 + }, + { + "word": "all'unanimità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unanimously", + "romanization": "all'unanimità", + "example_sentence_native": "La decisione è stata presa all'unanimità.", + "example_sentence_english": "The decision was taken unanimously.", + "pos": "adverbial phrase", + "word_frequency": 10241 + }, + { + "word": "anidride", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anhydride", + "romanization": "anidride", + "example_sentence_native": "L'anidride carbonica è un gas serra.", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "noun", + "word_frequency": 10244 + }, + { + "word": "annessione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annexation", + "romanization": "annessione", + "example_sentence_native": "L'annessione del territorio ha causato tensioni.", + "example_sentence_english": "The annexation of the territory caused tensions.", + "pos": "noun", + "word_frequency": 10245 + }, + { + "word": "anzianità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seniority", + "romanization": "anzianità", + "example_sentence_native": "Ha ottenuto la promozione grazie alla sua anzianità di servizio.", + "example_sentence_english": "He got the promotion thanks to his seniority of service.", + "pos": "noun", + "word_frequency": 10246 + }, + { + "word": "anzitutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "first of all", + "romanization": "anzitutto", + "example_sentence_native": "Anzitutto, vorrei ringraziarvi per essere qui.", + "example_sentence_english": "First of all, I would like to thank you for being here.", + "pos": "adverb", + "word_frequency": 10247 + }, + { + "word": "arrosto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roast", + "romanization": "arrosto", + "example_sentence_native": "Per cena abbiamo mangiato un buon arrosto di maiale.", + "example_sentence_english": "For dinner we ate a good roast pork.", + "pos": "noun", + "word_frequency": 10248 + }, + { + "word": "automobilista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorist", + "romanization": "automobilista", + "example_sentence_native": "L'automobilista ha parcheggiato male.", + "example_sentence_english": "The motorist parked badly.", + "pos": "noun", + "word_frequency": 10250 + }, + { + "word": "bacon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bacon", + "romanization": "bacon", + "example_sentence_native": "A colazione ho mangiato uova e bacon.", + "example_sentence_english": "For breakfast I ate eggs and bacon.", + "pos": "noun", + "word_frequency": 10252 + }, + { + "word": "basilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basic;fundamental", + "romanization": "basilare", + "example_sentence_native": "È una conoscenza basilare per questo lavoro.", + "example_sentence_english": "It's a basic knowledge for this job.", + "pos": "adjective", + "word_frequency": 10254 + }, + { + "word": "bestemmia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blasphemy;curse word", + "romanization": "bestemmia", + "example_sentence_native": "Ha pronunciato una bestemmia per la rabbia.", + "example_sentence_english": "He uttered a curse word out of anger.", + "pos": "noun", + "word_frequency": 10257 + }, + { + "word": "blitz", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid;blitz", + "romanization": "blitz", + "example_sentence_native": "La polizia ha condotto un blitz all'alba.", + "example_sentence_english": "The police conducted a raid at dawn.", + "pos": "noun", + "word_frequency": 10258 + }, + { + "word": "campano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Campanian (from Campania region)", + "romanization": "campano", + "example_sentence_native": "La pizza napoletana è un piatto tipico campano.", + "example_sentence_english": "Neapolitan pizza is a typical Campanian dish.", + "pos": "adjective", + "word_frequency": 10261 + }, + { + "word": "carrozzeria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car body;body shop", + "romanization": "carrozzeria", + "example_sentence_native": "Devo portare l'auto in carrozzeria per riparare il danno.", + "example_sentence_english": "I need to take the car to the body shop to repair the damage.", + "pos": "noun", + "word_frequency": 10263 + }, + { + "word": "centrocampo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midfield (soccer)", + "romanization": "centrocampo", + "example_sentence_native": "Il giocatore di centrocampo ha fatto un ottimo passaggio.", + "example_sentence_english": "The midfield player made a great pass.", + "pos": "noun", + "word_frequency": 10265 + }, + { + "word": "cicerone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guide (person)", + "romanization": "cicerone", + "example_sentence_native": "Ci ha fatto da cicerone per tutta la città.", + "example_sentence_english": "He acted as our guide throughout the city.", + "pos": "noun", + "word_frequency": 10266 + }, + { + "word": "cinico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cynical", + "romanization": "cinico", + "example_sentence_native": "Il suo atteggiamento cinico mi infastidisce.", + "example_sentence_english": "His cynical attitude annoys me.", + "pos": "adjective", + "word_frequency": 10267 + }, + { + "word": "cognata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sister-in-law", + "romanization": "cognata", + "example_sentence_native": "Mia cognata verrà a trovarci questo weekend.", + "example_sentence_english": "My sister-in-law will visit us this weekend.", + "pos": "noun", + "word_frequency": 10269 + }, + { + "word": "collezionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collect", + "romanization": "collezionare", + "example_sentence_native": "Mi piace collezionare francobolli rari.", + "example_sentence_english": "I like to collect rare stamps.", + "pos": "verb", + "word_frequency": 10271 + }, + { + "word": "compatibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatibility", + "romanization": "compatibilità", + "example_sentence_native": "Dobbiamo verificare la compatibilità del software.", + "example_sentence_english": "We need to check the software compatibility.", + "pos": "noun", + "word_frequency": 10272 + }, + { + "word": "contenimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "containment", + "romanization": "contenimento", + "example_sentence_native": "Sono state prese misure di contenimento per l'epidemia.", + "example_sentence_english": "Containment measures have been taken for the epidemic.", + "pos": "noun", + "word_frequency": 10273 + }, + { + "word": "corner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corner (kick in soccer);corner (of a street)", + "romanization": "corner", + "example_sentence_native": "Il calciatore ha battuto un calcio d'angolo (corner).", + "example_sentence_english": "The footballer took a corner kick.", + "pos": "noun", + "word_frequency": 10274 + }, + { + "word": "cupo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy;dark", + "romanization": "cupo", + "example_sentence_native": "Il cielo era cupo e minacciava pioggia.", + "example_sentence_english": "The sky was gloomy and threatened rain.", + "pos": "adjective", + "word_frequency": 10275 + }, + { + "word": "curry", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curry", + "romanization": "curry", + "example_sentence_native": "Ho preparato un pollo al curry per cena.", + "example_sentence_english": "I prepared a chicken curry for dinner.", + "pos": "noun", + "word_frequency": 10276 + }, + { + "word": "deliberatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberately", + "romanization": "deliberatamente", + "example_sentence_native": "Ha agito deliberatamente per causare problemi.", + "example_sentence_english": "He acted deliberately to cause problems.", + "pos": "adverb", + "word_frequency": 10280 + }, + { + "word": "dessert", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dessert", + "romanization": "dessert", + "example_sentence_native": "Per dessert, abbiamo preso il tiramisù.", + "example_sentence_english": "For dessert, we had tiramisu.", + "pos": "noun", + "word_frequency": 10284 + }, + { + "word": "devastare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devastate", + "romanization": "devastare", + "example_sentence_native": "L'uragano ha devastato la costa.", + "example_sentence_english": "The hurricane devastated the coast.", + "pos": "verb", + "word_frequency": 10285 + }, + { + "word": "differenziare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to differentiate", + "romanization": "differenziare", + "example_sentence_native": "È importante differenziare i fatti dalle opinioni.", + "example_sentence_english": "It's important to differentiate facts from opinions.", + "pos": "verb", + "word_frequency": 10286 + }, + { + "word": "dolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malice;fraud", + "romanization": "dolo", + "example_sentence_native": "L'accusa ha dimostrato che l'azione è stata compiuta con dolo.", + "example_sentence_english": "The prosecution proved that the action was committed with malice.", + "pos": "noun", + "word_frequency": 10287 + }, + { + "word": "educato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "polite;educated", + "romanization": "educato", + "example_sentence_native": "È un ragazzo molto educato e rispettoso.", + "example_sentence_english": "He is a very polite and respectful boy.", + "pos": "adjective", + "word_frequency": 10288 + }, + { + "word": "elastico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elastic;flexible", + "romanization": "elastico", + "example_sentence_native": "Questo tessuto è molto elastico.", + "example_sentence_english": "This fabric is very elastic.", + "pos": "adjective", + "word_frequency": 10289 + }, + { + "word": "esaltare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exalt;to praise", + "romanization": "esaltare", + "example_sentence_native": "Il critico ha esaltato la performance dell'attore.", + "example_sentence_english": "The critic exalted the actor's performance.", + "pos": "verb", + "word_frequency": 10290 + }, + { + "word": "esodo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exodus", + "romanization": "esodo", + "example_sentence_native": "C'è stato un grande esodo di popolazione dalla zona di guerra.", + "example_sentence_english": "There was a large exodus of population from the war zone.", + "pos": "noun", + "word_frequency": 10291 + }, + { + "word": "esponenziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exponential", + "romanization": "esponenziale", + "example_sentence_native": "La crescita dei dati è stata esponenziale.", + "example_sentence_english": "The data growth has been exponential.", + "pos": "adjective", + "word_frequency": 10292 + }, + { + "word": "fabbricato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building;manufactured article", + "romanization": "fabbricato", + "example_sentence_native": "Il vecchio fabbricato sarà demolito.", + "example_sentence_english": "The old building will be demolished.", + "pos": "noun", + "word_frequency": 10294 + }, + { + "word": "fitness", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fitness", + "romanization": "fitness", + "example_sentence_native": "Faccio fitness tre volte a settimana.", + "example_sentence_english": "I do fitness three times a week.", + "pos": "noun", + "word_frequency": 10297 + }, + { + "word": "frame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame", + "romanization": "frame", + "example_sentence_native": "Il video ha un frame rate elevato.", + "example_sentence_english": "The video has a high frame rate.", + "pos": "noun", + "word_frequency": 10298 + }, + { + "word": "fumatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smoker", + "romanization": "fumatore", + "example_sentence_native": "Mio nonno era un fumatore accanito.", + "example_sentence_english": "My grandfather was a heavy smoker.", + "pos": "noun", + "word_frequency": 10300 + }, + { + "word": "gesta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deeds;exploits", + "romanization": "gesta", + "example_sentence_native": "Le gesta degli eroi sono state tramandate.", + "example_sentence_english": "The deeds of the heroes have been handed down.", + "pos": "noun", + "word_frequency": 10301 + }, + { + "word": "imbattuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbeaten;undefeated", + "romanization": "imbattuto", + "example_sentence_native": "La squadra è rimasta imbattuta per tutta la stagione.", + "example_sentence_english": "The team remained unbeaten throughout the season.", + "pos": "adjective", + "word_frequency": 10309 + }, + { + "word": "immondizia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garbage;trash", + "romanization": "immondizia", + "example_sentence_native": "Per favore, butta l'immondizia.", + "example_sentence_english": "Please, throw away the garbage.", + "pos": "noun", + "word_frequency": 10310 + }, + { + "word": "indumento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garment;item of clothing", + "romanization": "indumento", + "example_sentence_native": "Questo è un indumento molto elegante.", + "example_sentence_english": "This is a very elegant garment.", + "pos": "noun", + "word_frequency": 10311 + }, + { + "word": "intestino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intestine", + "romanization": "intestino", + "example_sentence_native": "L'intestino è una parte importante del sistema digestivo.", + "example_sentence_english": "The intestine is an important part of the digestive system.", + "pos": "noun", + "word_frequency": 10312 + }, + { + "word": "jolly", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joker;wildcard", + "romanization": "jolly", + "example_sentence_native": "Nel gioco di carte, il jolly può sostituire qualsiasi carta.", + "example_sentence_english": "In the card game, the joker can replace any card.", + "pos": "noun", + "word_frequency": 10315 + }, + { + "word": "libico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Libyan", + "romanization": "libico", + "example_sentence_native": "Il deserto libico è molto vasto.", + "example_sentence_english": "The Libyan desert is very vast.", + "pos": "adjective", + "word_frequency": 10319 + }, + { + "word": "liquidità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liquidity", + "romanization": "liquidità", + "example_sentence_native": "L'azienda ha bisogno di aumentare la sua liquidità.", + "example_sentence_english": "The company needs to increase its liquidity.", + "pos": "noun", + "word_frequency": 10320 + }, + { + "word": "locanda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inn", + "romanization": "locanda", + "example_sentence_native": "Abbiamo pernottato in una piccola locanda di campagna.", + "example_sentence_english": "We stayed overnight in a small country inn.", + "pos": "noun", + "word_frequency": 10321 + }, + { + "word": "malafede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad faith", + "romanization": "malafede", + "example_sentence_native": "Ha agito in malafede, cercando di ingannarci.", + "example_sentence_english": "He acted in bad faith, trying to deceive us.", + "pos": "noun", + "word_frequency": 10324 + }, + { + "word": "mancia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tip", + "romanization": "mancia", + "example_sentence_native": "Abbiamo lasciato una buona mancia al cameriere.", + "example_sentence_english": "We left a good tip for the waiter.", + "pos": "noun", + "word_frequency": 10325 + }, + { + "word": "mastro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "master (craftsman);ledger", + "romanization": "mastro", + "example_sentence_native": "Il mastro falegname ha realizzato un mobile bellissimo.", + "example_sentence_english": "The master carpenter made a beautiful piece of furniture.", + "pos": "noun", + "word_frequency": 10328 + }, + { + "word": "matricola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freshman;student ID number", + "romanization": "matricola", + "example_sentence_native": "La matricola deve ancora abituarsi alla vita universitaria.", + "example_sentence_english": "The freshman still has to get used to university life.", + "pos": "noun", + "word_frequency": 10330 + }, + { + "word": "mirato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "targeted;aimed", + "romanization": "mirato", + "example_sentence_native": "Abbiamo bisogno di un approccio più mirato al problema.", + "example_sentence_english": "We need a more targeted approach to the problem.", + "pos": "adjective", + "word_frequency": 10333 + }, + { + "word": "mozzafiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breathtaking", + "romanization": "mozzafiato", + "example_sentence_native": "La vista dalla cima della montagna era mozzafiato.", + "example_sentence_english": "The view from the top of the mountain was breathtaking.", + "pos": "adjective", + "word_frequency": 10336 + }, + { + "word": "nullità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nullity;nonentity", + "romanization": "nullità", + "example_sentence_native": "Il contratto è stato dichiarato una nullità.", + "example_sentence_english": "The contract was declared a nullity.", + "pos": "noun", + "word_frequency": 10341 + }, + { + "word": "nunzio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nuncio;messenger", + "romanization": "nunzio", + "example_sentence_native": "Il nunzio apostolico ha visitato la città.", + "example_sentence_english": "The apostolic nuncio visited the city.", + "pos": "noun", + "word_frequency": 10342 + }, + { + "word": "passeggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "walk;stroll", + "romanization": "passeggio", + "example_sentence_native": "Facciamo un passeggio lungo il fiume.", + "example_sentence_english": "Let's take a walk along the river.", + "pos": "noun", + "word_frequency": 10344 + }, + { + "word": "pessimismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pessimism", + "romanization": "pessimismo", + "example_sentence_native": "Il suo pessimismo è contagioso.", + "example_sentence_english": "His pessimism is contagious.", + "pos": "noun", + "word_frequency": 10346 + }, + { + "word": "predetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aforesaid;predicted", + "romanization": "predetto", + "example_sentence_native": "L'evento si è verificato come predetto.", + "example_sentence_english": "The event occurred as predicted.", + "pos": "adjective", + "word_frequency": 10347 + }, + { + "word": "prerogativa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prerogative", + "romanization": "prerogativa", + "example_sentence_native": "È una prerogativa del presidente prendere questa decisione.", + "example_sentence_english": "It is the president's prerogative to make this decision.", + "pos": "noun", + "word_frequency": 10348 + }, + { + "word": "primogenito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firstborn", + "romanization": "primogenito", + "example_sentence_native": "Il primogenito erediterà la fattoria.", + "example_sentence_english": "The firstborn will inherit the farm.", + "pos": "noun", + "word_frequency": 10349 + }, + { + "word": "prolungamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension;prolongation", + "romanization": "prolungamento", + "example_sentence_native": "Abbiamo chiesto un prolungamento del termine.", + "example_sentence_english": "We asked for an extension of the deadline.", + "pos": "noun", + "word_frequency": 10350 + }, + { + "word": "prosecuzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuation;prosecution", + "romanization": "prosecuzione", + "example_sentence_native": "La prosecuzione dei lavori è prevista per domani.", + "example_sentence_english": "The continuation of the works is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 10351 + }, + { + "word": "provocato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provoked;caused", + "romanization": "provocato", + "example_sentence_native": "La reazione è stata provocata da un commento offensivo.", + "example_sentence_english": "The reaction was provoked by an offensive comment.", + "pos": "adjective", + "word_frequency": 10352 + }, + { + "word": "pupazzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puppet;doll;snowman", + "romanization": "pupazzo", + "example_sentence_native": "Il bambino gioca con il suo pupazzo preferito.", + "example_sentence_english": "The child plays with his favorite puppet.", + "pos": "noun", + "word_frequency": 10353 + }, + { + "word": "questore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "police commissioner (in Italy);quaestor", + "romanization": "questore", + "example_sentence_native": "Il questore ha rilasciato una dichiarazione sulla sicurezza.", + "example_sentence_english": "The police commissioner released a statement on security.", + "pos": "noun", + "word_frequency": 10354 + }, + { + "word": "recesso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "withdrawal;recess (of a contract)", + "romanization": "recesso", + "example_sentence_native": "Il cliente ha esercitato il diritto di recesso.", + "example_sentence_english": "The client exercised the right of withdrawal.", + "pos": "noun", + "word_frequency": 10355 + }, + { + "word": "reprimere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repress;to suppress", + "romanization": "reprimere", + "example_sentence_native": "È difficile reprimere le proprie emozioni.", + "example_sentence_english": "It's difficult to repress one's emotions.", + "pos": "verb", + "word_frequency": 10357 + }, + { + "word": "rifacimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remake;renovation;redoing", + "romanization": "rifacimento", + "example_sentence_native": "Il rifacimento del film è stato un successo.", + "example_sentence_english": "The remake of the film was a success.", + "pos": "noun", + "word_frequency": 10358 + }, + { + "word": "rilevazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detection;survey;measurement", + "romanization": "rilevazione", + "example_sentence_native": "La rilevazione dei dati è fondamentale per l'analisi.", + "example_sentence_english": "Data detection is fundamental for analysis.", + "pos": "noun", + "word_frequency": 10359 + }, + { + "word": "riscossione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collection;recovery (of payment)", + "romanization": "riscossione", + "example_sentence_native": "La riscossione delle tasse è un processo annuale.", + "example_sentence_english": "The collection of taxes is an annual process.", + "pos": "noun", + "word_frequency": 10360 + }, + { + "word": "risvolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lapel;implication;consequence", + "romanization": "risvolto", + "example_sentence_native": "Ogni decisione ha il suo risvolto inaspettato.", + "example_sentence_english": "Every decision has its unexpected implication.", + "pos": "noun", + "word_frequency": 10361 + }, + { + "word": "salame", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "salami", + "romanization": "salame", + "example_sentence_native": "Mi piace il panino con il salame.", + "example_sentence_english": "I like the sandwich with salami.", + "pos": "noun", + "word_frequency": 10363 + }, + { + "word": "scalata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "climb;ascent", + "romanization": "scalata", + "example_sentence_native": "La scalata della montagna è stata difficile.", + "example_sentence_english": "The climb of the mountain was difficult.", + "pos": "noun", + "word_frequency": 10365 + }, + { + "word": "sintassi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "syntax", + "romanization": "sintassi", + "example_sentence_native": "La sintassi della frase è corretta.", + "example_sentence_english": "The syntax of the sentence is correct.", + "pos": "noun", + "word_frequency": 10368 + }, + { + "word": "smarrito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lost;bewildered", + "romanization": "smarrito", + "example_sentence_native": "Il cane smarrito è stato ritrovato.", + "example_sentence_english": "The lost dog was found.", + "pos": "adjective", + "word_frequency": 10371 + }, + { + "word": "sottomissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "submission", + "romanization": "sottomissione", + "example_sentence_native": "La sottomissione del progetto è prevista per domani.", + "example_sentence_english": "The submission of the project is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 10372 + }, + { + "word": "spavento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fright;scare", + "romanization": "spavento", + "example_sentence_native": "Ho preso un grande spavento.", + "example_sentence_english": "I got a big fright.", + "pos": "noun", + "word_frequency": 10373 + }, + { + "word": "specialistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specialized", + "romanization": "specialistico", + "example_sentence_native": "Richiede una conoscenza specialistica.", + "example_sentence_english": "It requires specialized knowledge.", + "pos": "adjective", + "word_frequency": 10374 + }, + { + "word": "succhiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suck", + "romanization": "succhiare", + "example_sentence_native": "Il bambino succhia il pollice.", + "example_sentence_english": "The baby sucks his thumb.", + "pos": "verb", + "word_frequency": 10377 + }, + { + "word": "svalutazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devaluation", + "romanization": "svalutazione", + "example_sentence_native": "La svalutazione della moneta ha causato problemi economici.", + "example_sentence_english": "The devaluation of the currency caused economic problems.", + "pos": "noun", + "word_frequency": 10378 + }, + { + "word": "tantino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a little bit;a tiny bit", + "romanization": "tantino", + "example_sentence_native": "Aspetta un tantino, arrivo subito.", + "example_sentence_english": "Wait a little bit, I'll be right there.", + "pos": "adverb", + "word_frequency": 10379 + }, + { + "word": "tara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tare;defect;flaw", + "romanization": "tara", + "example_sentence_native": "Il prodotto ha una piccola tara.", + "example_sentence_english": "The product has a small defect.", + "pos": "noun", + "word_frequency": 10381 + }, + { + "word": "tralasciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to omit;to neglect", + "romanization": "tralasciare", + "example_sentence_native": "Non dovresti tralasciare i dettagli importanti.", + "example_sentence_english": "You shouldn't omit the important details.", + "pos": "verb", + "word_frequency": 10383 + }, + { + "word": "udire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hear", + "romanization": "udire", + "example_sentence_native": "Non riusciva a udire le sue parole.", + "example_sentence_english": "He couldn't hear her words.", + "pos": "verb", + "word_frequency": 10384 + }, + { + "word": "velluto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "velvet", + "romanization": "velluto", + "example_sentence_native": "Il divano è fatto di velluto.", + "example_sentence_english": "The sofa is made of velvet.", + "pos": "noun", + "word_frequency": 10385 + }, + { + "word": "vinca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "periwinkle (plant)", + "romanization": "vinca", + "example_sentence_native": "La vinca è una pianta tappezzante.", + "example_sentence_english": "Periwinkle is a groundcover plant.", + "pos": "noun", + "word_frequency": 10386 + }, + { + "word": "yen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yen", + "romanization": "yen", + "example_sentence_native": "Il prezzo è in yen giapponesi.", + "example_sentence_english": "The price is in Japanese yen.", + "pos": "noun", + "word_frequency": 10387 + }, + { + "word": "zar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "czar;tsar", + "romanization": "zar", + "example_sentence_native": "Lo zar governava la Russia.", + "example_sentence_english": "The czar ruled Russia.", + "pos": "noun", + "word_frequency": 10388 + }, + { + "word": "abruzzese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Abruzzese (from Abruzzo)", + "romanization": "abruzzese", + "example_sentence_native": "È un piatto tipico abruzzese.", + "example_sentence_english": "It's a typical Abruzzese dish.", + "pos": "adjective", + "word_frequency": 10390 + }, + { + "word": "accezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meaning;sense;acceptation", + "romanization": "accezione", + "example_sentence_native": "La parola ha diverse accezioni.", + "example_sentence_english": "The word has several meanings.", + "pos": "noun", + "word_frequency": 10391 + }, + { + "word": "accidentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accidental", + "romanization": "accidentale", + "example_sentence_native": "È stato un incontro accidentale.", + "example_sentence_english": "It was an accidental encounter.", + "pos": "adverb", + "word_frequency": 10392 + }, + { + "word": "adempiere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to fulfill;to comply with", + "romanization": "adempiere", + "example_sentence_native": "Deve adempiere ai suoi doveri.", + "example_sentence_english": "He must fulfill his duties.", + "pos": "verb", + "word_frequency": 10393 + }, + { + "word": "aeronautica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aeronautics;air force", + "romanization": "aeronautica", + "example_sentence_native": "L'aeronautica militare è molto importante.", + "example_sentence_english": "The air force is very important.", + "pos": "noun", + "word_frequency": 10395 + }, + { + "word": "agevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy;convenient;smooth", + "romanization": "agevole", + "example_sentence_native": "La soluzione più agevole è questa.", + "example_sentence_english": "The easiest solution is this one.", + "pos": "adjective", + "word_frequency": 10396 + }, + { + "word": "aggiustare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fix;to adjust", + "romanization": "aggiustare", + "example_sentence_native": "Devo aggiustare la sedia rotta.", + "example_sentence_english": "I need to fix the broken chair.", + "pos": "verb", + "word_frequency": 10397 + }, + { + "word": "aggressività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressiveness", + "romanization": "aggressività", + "example_sentence_native": "La sua aggressività è preoccupante.", + "example_sentence_english": "His aggressiveness is worrying.", + "pos": "noun", + "word_frequency": 10398 + }, + { + "word": "aggressore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggressor", + "romanization": "aggressore", + "example_sentence_native": "L'aggressore è stato arrestato.", + "example_sentence_english": "The aggressor was arrested.", + "pos": "noun", + "word_frequency": 10399 + }, + { + "word": "alga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seaweed", + "romanization": "alga", + "example_sentence_native": "Le alghe sono importanti per l'ecosistema marino.", + "example_sentence_english": "Seaweed is important for the marine ecosystem.", + "pos": "noun", + "word_frequency": 10402 + }, + { + "word": "ingrosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wholesale", + "romanization": "ingrosso", + "example_sentence_native": "Vendiamo i nostri prodotti all'ingrosso.", + "example_sentence_english": "We sell our products wholesale.", + "pos": "noun", + "word_frequency": 10403 + }, + { + "word": "allevatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breeder", + "romanization": "allevatore", + "example_sentence_native": "L'allevatore si prende cura degli animali.", + "example_sentence_english": "The breeder takes care of the animals.", + "pos": "noun", + "word_frequency": 10404 + }, + { + "word": "arginare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to stem;to contain", + "romanization": "arginare", + "example_sentence_native": "Dobbiamo arginare la diffusione del virus.", + "example_sentence_english": "We must stem the spread of the virus.", + "pos": "verb", + "word_frequency": 10408 + }, + { + "word": "austerità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "austerity", + "romanization": "austerità", + "example_sentence_native": "Il governo ha imposto misure di austerità.", + "example_sentence_english": "The government imposed austerity measures.", + "pos": "noun", + "word_frequency": 10410 + }, + { + "word": "battente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "door leaf;flap", + "romanization": "battente", + "example_sentence_native": "La porta a battente si è chiusa con un tonfo.", + "example_sentence_english": "The swing door closed with a thud.", + "pos": "noun", + "word_frequency": 10412 + }, + { + "word": "beffa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mockery;prank", + "romanization": "beffa", + "example_sentence_native": "È stata una beffa crudele.", + "example_sentence_english": "It was a cruel trick.", + "pos": "noun", + "word_frequency": 10413 + }, + { + "word": "blackout", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blackout", + "romanization": "blackout", + "example_sentence_native": "C'è stato un blackout in tutta la città.", + "example_sentence_english": "There was a blackout throughout the city.", + "pos": "noun", + "word_frequency": 10415 + }, + { + "word": "calamità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calamity;disaster", + "romanization": "calamità", + "example_sentence_native": "La siccità è stata una vera calamità per l'agricoltura.", + "example_sentence_english": "The drought was a real calamity for agriculture.", + "pos": "noun", + "word_frequency": 10419 + }, + { + "word": "capriccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whim;tantrum", + "romanization": "capriccio", + "example_sentence_native": "Il bambino ha fatto un capriccio per il giocattolo.", + "example_sentence_english": "The child threw a tantrum for the toy.", + "pos": "noun", + "word_frequency": 10421 + }, + { + "word": "casting", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "casting", + "romanization": "casting", + "example_sentence_native": "Ha partecipato al casting per il nuovo film.", + "example_sentence_english": "He participated in the casting for the new film.", + "pos": "noun", + "word_frequency": 10423 + }, + { + "word": "cinismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cynicism", + "romanization": "cinismo", + "example_sentence_native": "Il suo cinismo era evidente in ogni commento.", + "example_sentence_english": "His cynicism was evident in every comment.", + "pos": "noun", + "word_frequency": 10426 + }, + { + "word": "cometa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comet", + "romanization": "cometa", + "example_sentence_native": "Abbiamo visto una cometa nel cielo notturno.", + "example_sentence_english": "We saw a comet in the night sky.", + "pos": "noun", + "word_frequency": 10427 + }, + { + "word": "comprensivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "understanding;comprehensive", + "romanization": "comprensivo", + "example_sentence_native": "È una persona molto comprensiva.", + "example_sentence_english": "She is a very understanding person.", + "pos": "adjective", + "word_frequency": 10428 + }, + { + "word": "confinante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bordering;adjacent", + "romanization": "confinante", + "example_sentence_native": "L'Italia ha paesi confinanti come la Francia e la Svizzera.", + "example_sentence_english": "Italy has bordering countries like France and Switzerland.", + "pos": "adjective", + "word_frequency": 10429 + }, + { + "word": "confisca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confiscation;seizure", + "romanization": "confisca", + "example_sentence_native": "La polizia ha effettuato la confisca dei beni illegali.", + "example_sentence_english": "The police carried out the confiscation of illegal assets.", + "pos": "noun", + "word_frequency": 10430 + }, + { + "word": "conseguimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "achievement;attainment", + "romanization": "conseguimento", + "example_sentence_native": "Il conseguimento del diploma è un traguardo importante.", + "example_sentence_english": "The achievement of the diploma is an important milestone.", + "pos": "noun", + "word_frequency": 10431 + }, + { + "word": "convergenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convergence", + "romanization": "convergenza", + "example_sentence_native": "C'è una convergenza di opinioni su questo punto.", + "example_sentence_english": "There is a convergence of opinions on this point.", + "pos": "noun", + "word_frequency": 10432 + }, + { + "word": "corporazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporation;guild", + "romanization": "corporazione", + "example_sentence_native": "Le corporazioni medievali proteggevano gli interessi dei loro membri.", + "example_sentence_english": "Medieval guilds protected the interests of their members.", + "pos": "noun", + "word_frequency": 10433 + }, + { + "word": "dannato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damned;cursed", + "romanization": "dannato", + "example_sentence_native": "Che tempo dannato! Non smette di piovere.", + "example_sentence_english": "What damned weather! It won't stop raining.", + "pos": "adjective", + "word_frequency": 10435 + }, + { + "word": "datato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dated;old-fashioned", + "romanization": "datato", + "example_sentence_native": "Questo software è un po' datato.", + "example_sentence_english": "This software is a bit dated.", + "pos": "adjective", + "word_frequency": 10436 + }, + { + "word": "discografico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "record (as in record company);phonographic", + "romanization": "discografico", + "example_sentence_native": "Ha firmato un contratto discografico.", + "example_sentence_english": "He signed a record deal.", + "pos": "adjective", + "word_frequency": 10439 + }, + { + "word": "facente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doing;acting", + "romanization": "facente", + "example_sentence_native": "Il medico facente funzioni è responsabile del reparto.", + "example_sentence_english": "The acting doctor is responsible for the department.", + "pos": "adjective", + "word_frequency": 10441 + }, + { + "word": "familiarità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "familiarity", + "romanization": "familiarità", + "example_sentence_native": "Ho una buona familiarità con il software.", + "example_sentence_english": "I have a good familiarity with the software.", + "pos": "noun", + "word_frequency": 10442 + }, + { + "word": "filtrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to filter", + "romanization": "filtrare", + "example_sentence_native": "Devi filtrare il caffè prima di berlo.", + "example_sentence_english": "You need to filter the coffee before drinking it.", + "pos": "verb", + "word_frequency": 10444 + }, + { + "word": "fisiologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physiology", + "romanization": "fisiologia", + "example_sentence_native": "Lo studio della fisiologia umana è affascinante.", + "example_sentence_english": "The study of human physiology is fascinating.", + "pos": "noun", + "word_frequency": 10445 + }, + { + "word": "gel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gel", + "romanization": "gel", + "example_sentence_native": "Ho messo un po' di gel sui capelli.", + "example_sentence_english": "I put some gel on my hair.", + "pos": "noun", + "word_frequency": 10448 + }, + { + "word": "genero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "son-in-law", + "romanization": "genero", + "example_sentence_native": "Mio genero è una persona molto gentile.", + "example_sentence_english": "My son-in-law is a very kind person.", + "pos": "noun", + "word_frequency": 10449 + }, + { + "word": "ghiacciaio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glacier", + "romanization": "ghiacciaio", + "example_sentence_native": "Il ghiacciaio si sta sciogliendo a causa del riscaldamento globale.", + "example_sentence_english": "The glacier is melting due to global warming.", + "pos": "noun", + "word_frequency": 10451 + }, + { + "word": "giubbotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jacket", + "romanization": "giubbotto", + "example_sentence_native": "Ho comprato un nuovo giubbotto per l'inverno.", + "example_sentence_english": "I bought a new jacket for the winter.", + "pos": "noun", + "word_frequency": 10452 + }, + { + "word": "idiozia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiocy", + "romanization": "idiozia", + "example_sentence_native": "Non posso credere a tanta idiozia.", + "example_sentence_english": "I can't believe such idiocy.", + "pos": "noun", + "word_frequency": 10453 + }, + { + "word": "induzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "induction", + "romanization": "induzione", + "example_sentence_native": "Il metodo dell'induzione è fondamentale nella scienza.", + "example_sentence_english": "The method of induction is fundamental in science.", + "pos": "noun", + "word_frequency": 10455 + }, + { + "word": "infiammazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammation", + "romanization": "infiammazione", + "example_sentence_native": "Ho un'infiammazione al ginocchio.", + "example_sentence_english": "I have an inflammation in my knee.", + "pos": "noun", + "word_frequency": 10456 + }, + { + "word": "insistenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insistence", + "romanization": "insistenza", + "example_sentence_native": "Grazie alla sua insistenza, siamo riusciti a finire il progetto.", + "example_sentence_english": "Thanks to his insistence, we managed to finish the project.", + "pos": "noun", + "word_frequency": 10458 + }, + { + "word": "interrogativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogative", + "romanization": "interrogativo", + "example_sentence_native": "Il pronome interrogativo 'chi' si usa per le persone.", + "example_sentence_english": "The interrogative pronoun 'who' is used for people.", + "pos": "noun", + "word_frequency": 10459 + }, + { + "word": "leccare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lick", + "romanization": "leccare", + "example_sentence_native": "Il cane ha iniziato a leccare la mia mano.", + "example_sentence_english": "The dog started to lick my hand.", + "pos": "verb", + "word_frequency": 10460 + }, + { + "word": "liberalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalization", + "romanization": "liberalizzazione", + "example_sentence_native": "La liberalizzazione dei mercati ha portato a nuove opportunità.", + "example_sentence_english": "The liberalization of markets has led to new opportunities.", + "pos": "noun", + "word_frequency": 10461 + }, + { + "word": "lucidità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lucidity;clarity", + "romanization": "lucidità", + "example_sentence_native": "Ha mantenuto la sua lucidità fino alla fine.", + "example_sentence_english": "He maintained his lucidity until the end.", + "pos": "noun", + "word_frequency": 10463 + }, + { + "word": "lungomare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "promenade;seafront", + "romanization": "lungomare", + "example_sentence_native": "Abbiamo fatto una passeggiata sul lungomare.", + "example_sentence_english": "We took a walk on the promenade.", + "pos": "noun", + "word_frequency": 10464 + }, + { + "word": "magnitudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnitude", + "romanization": "magnitudo", + "example_sentence_native": "Il terremoto ha avuto una magnitudo di 6.0.", + "example_sentence_english": "The earthquake had a magnitude of 6.0.", + "pos": "noun", + "word_frequency": 10465 + }, + { + "word": "mercantile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mercantile;commercial", + "romanization": "mercantile", + "example_sentence_native": "La storia mercantile di Venezia è ricca e complessa.", + "example_sentence_english": "The mercantile history of Venice is rich and complex.", + "pos": "adjective", + "word_frequency": 10468 + }, + { + "word": "messia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Messiah", + "romanization": "messia", + "example_sentence_native": "Molte religioni attendono l'arrivo di un messia.", + "example_sentence_english": "Many religions await the arrival of a Messiah.", + "pos": "noun", + "word_frequency": 10469 + }, + { + "word": "metamorfosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metamorphosis", + "romanization": "metamorfosi", + "example_sentence_native": "La farfalla subisce una completa metamorfosi.", + "example_sentence_english": "The butterfly undergoes a complete metamorphosis.", + "pos": "noun", + "word_frequency": 10470 + }, + { + "word": "migratorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "migratory", + "romanization": "migratorio", + "example_sentence_native": "Gli uccelli migratori volano verso climi più caldi.", + "example_sentence_english": "Migratory birds fly towards warmer climates.", + "pos": "adjective", + "word_frequency": 10472 + }, + { + "word": "mitra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submachine gun;miter", + "romanization": "mitra", + "example_sentence_native": "Il soldato imbracciava una mitra.", + "example_sentence_english": "The soldier carried a submachine gun.", + "pos": "noun", + "word_frequency": 10474 + }, + { + "word": "nocciolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nut;kernel;core", + "romanization": "nocciolo", + "example_sentence_native": "Il nocciolo della questione è la mancanza di fondi.", + "example_sentence_english": "The core of the matter is the lack of funds.", + "pos": "noun", + "word_frequency": 10477 + }, + { + "word": "noir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noir;black (as in film noir)", + "romanization": "noir", + "example_sentence_native": "Mi piace molto il genere del film noir.", + "example_sentence_english": "I really like the film noir genre.", + "pos": "adjective", + "word_frequency": 10478 + }, + { + "word": "nordest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "northeast", + "romanization": "nordest", + "example_sentence_native": "Il vento soffia da nordest.", + "example_sentence_english": "The wind blows from the northeast.", + "pos": "noun", + "word_frequency": 10479 + }, + { + "word": "nottata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "night;overnight stay", + "romanization": "nottata", + "example_sentence_native": "Abbiamo passato una nottata insonne.", + "example_sentence_english": "We spent a sleepless night.", + "pos": "noun", + "word_frequency": 10480 + }, + { + "word": "nuca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nape (of the neck)", + "romanization": "nuca", + "example_sentence_native": "Sentiva un dolore alla nuca dopo la caduta.", + "example_sentence_english": "He felt a pain in the nape of his neck after the fall.", + "pos": "noun", + "word_frequency": 10481 + }, + { + "word": "ottomano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ottoman", + "romanization": "ottomano", + "example_sentence_native": "L'Impero Ottomano ha avuto una lunga storia.", + "example_sentence_english": "The Ottoman Empire had a long history.", + "pos": "adjective", + "word_frequency": 10483 + }, + { + "word": "patriottismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotism", + "romanization": "patriottismo", + "example_sentence_native": "Il suo patriottismo era evidente in ogni sua azione.", + "example_sentence_english": "His patriotism was evident in every action.", + "pos": "noun", + "word_frequency": 10484 + }, + { + "word": "perseguitato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "persecuted;haunted", + "romanization": "perseguitato", + "example_sentence_native": "Era un uomo perseguitato dai suoi ricordi.", + "example_sentence_english": "He was a man haunted by his memories.", + "pos": "adjective", + "word_frequency": 10485 + }, + { + "word": "pigliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take;to catch", + "romanization": "pigliare", + "example_sentence_native": "Devo pigliare il treno delle otto.", + "example_sentence_english": "I have to catch the eight o'clock train.", + "pos": "verb", + "word_frequency": 10486 + }, + { + "word": "potenziare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strengthen;to enhance;to empower", + "romanization": "potenziare", + "example_sentence_native": "Dobbiamo potenziare le nostre capacità.", + "example_sentence_english": "We need to strengthen our capabilities.", + "pos": "verb", + "word_frequency": 10488 + }, + { + "word": "precipitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall;to rush;to plummet", + "romanization": "precipitare", + "example_sentence_native": "La situazione sta precipitando rapidamente.", + "example_sentence_english": "The situation is rapidly deteriorating.", + "pos": "verb", + "word_frequency": 10489 + }, + { + "word": "predisposto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predisposed;arranged;prepared", + "romanization": "predisposto", + "example_sentence_native": "Era predisposto a sviluppare allergie.", + "example_sentence_english": "He was predisposed to develop allergies.", + "pos": "adjective", + "word_frequency": 10490 + }, + { + "word": "premiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reward;to award", + "romanization": "premiare", + "example_sentence_native": "Vogliamo premiare i migliori studenti.", + "example_sentence_english": "We want to reward the best students.", + "pos": "verb", + "word_frequency": 10491 + }, + { + "word": "processare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to process;to prosecute", + "romanization": "processare", + "example_sentence_native": "Il giudice ha deciso di processare l'imputato.", + "example_sentence_english": "The judge decided to prosecute the defendant.", + "pos": "verb", + "word_frequency": 10492 + }, + { + "word": "proseguimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuation;pursuit", + "romanization": "proseguimento", + "example_sentence_native": "Auguriamo un buon proseguimento di giornata.", + "example_sentence_english": "We wish you a good continuation of your day.", + "pos": "noun", + "word_frequency": 10493 + }, + { + "word": "pulce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flea", + "romanization": "pulce", + "example_sentence_native": "Il cane aveva le pulci.", + "example_sentence_english": "The dog had fleas.", + "pos": "noun", + "word_frequency": 10494 + }, + { + "word": "quartetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quartet", + "romanization": "quartetto", + "example_sentence_native": "Il quartetto d'archi ha suonato magnificamente.", + "example_sentence_english": "The string quartet played magnificently.", + "pos": "noun", + "word_frequency": 10495 + }, + { + "word": "retroscena", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "backstage;background;behind the scenes", + "romanization": "retroscena", + "example_sentence_native": "I retroscena della politica sono spesso oscuri.", + "example_sentence_english": "The behind-the-scenes of politics are often obscure.", + "pos": "noun", + "word_frequency": 10496 + }, + { + "word": "rettifica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "correction;rectification", + "romanization": "rettifica", + "example_sentence_native": "Ha pubblicato una rettifica all'articolo precedente.", + "example_sentence_english": "He published a correction to the previous article.", + "pos": "noun", + "word_frequency": 10497 + }, + { + "word": "rispettoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectful", + "romanization": "rispettoso", + "example_sentence_native": "È sempre stato molto rispettoso degli anziani.", + "example_sentence_english": "He has always been very respectful of the elderly.", + "pos": "adjective", + "word_frequency": 10498 + }, + { + "word": "ristorazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catering;restaurant industry", + "romanization": "ristorazione", + "example_sentence_native": "Lavora nel settore della ristorazione.", + "example_sentence_english": "He works in the catering industry.", + "pos": "noun", + "word_frequency": 10499 + }, + { + "word": "rovinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruined;damaged;spoiled", + "romanization": "rovinato", + "example_sentence_native": "Il vestito era completamente rovinato.", + "example_sentence_english": "The dress was completely ruined.", + "pos": "adjective", + "word_frequency": 10500 + }, + { + "word": "schierato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deployed;aligned;sided", + "romanization": "schierato", + "example_sentence_native": "Il partito si è schierato contro la proposta.", + "example_sentence_english": "The party sided against the proposal.", + "pos": "adjective", + "word_frequency": 10503 + }, + { + "word": "schizzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sketch;splash;spurt", + "romanization": "schizzo", + "example_sentence_native": "Ha fatto uno schizzo veloce del paesaggio.", + "example_sentence_english": "He made a quick sketch of the landscape.", + "pos": "noun", + "word_frequency": 10504 + }, + { + "word": "sconcertante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disconcerting;unsettling", + "romanization": "sconcertante", + "example_sentence_native": "La sua indifferenza era sconcertante.", + "example_sentence_english": "His indifference was disconcerting.", + "pos": "adjective", + "word_frequency": 10505 + }, + { + "word": "sovente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "often;frequently", + "romanization": "sovente", + "example_sentence_native": "Sovente si recava in biblioteca.", + "example_sentence_english": "He often went to the library.", + "pos": "adverb", + "word_frequency": 10510 + }, + { + "word": "stalla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable;barn", + "romanization": "stalla", + "example_sentence_native": "I cavalli sono nella stalla.", + "example_sentence_english": "The horses are in the stable.", + "pos": "noun", + "word_frequency": 10511 + }, + { + "word": "stendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spread;to lay out;to hang (laundry)", + "romanization": "stendere", + "example_sentence_native": "Devo stendere i panni.", + "example_sentence_english": "I need to hang out the laundry.", + "pos": "verb", + "word_frequency": 10512 + }, + { + "word": "studentessa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female student", + "romanization": "studentessa", + "example_sentence_native": "La studentessa ha fatto un'ottima presentazione.", + "example_sentence_english": "The female student gave an excellent presentation.", + "pos": "noun", + "word_frequency": 10513 + }, + { + "word": "stupratore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rapist", + "romanization": "stupratore", + "example_sentence_native": "L'uomo è stato condannato come stupratore.", + "example_sentence_english": "The man was convicted as a rapist.", + "pos": "noun", + "word_frequency": 10514 + }, + { + "word": "svago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leisure;recreation;diversion", + "romanization": "svago", + "example_sentence_native": "Ha bisogno di un po' di svago.", + "example_sentence_english": "He needs some recreation.", + "pos": "noun", + "word_frequency": 10515 + }, + { + "word": "tangibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tangible", + "romanization": "tangibile", + "example_sentence_native": "Abbiamo bisogno di prove tangibili.", + "example_sentence_english": "We need tangible proof.", + "pos": "adjective", + "word_frequency": 10518 + }, + { + "word": "tavoletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tablet;bar (of chocolate);small board", + "romanization": "tavoletta", + "example_sentence_native": "Ho comprato una tavoletta di cioccolato.", + "example_sentence_english": "I bought a bar of chocolate.", + "pos": "noun", + "word_frequency": 10519 + }, + { + "word": "troupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crew", + "romanization": "troupe", + "example_sentence_native": "La troupe cinematografica è arrivata sul set.", + "example_sentence_english": "The film crew arrived on set.", + "pos": "noun", + "word_frequency": 10521 + }, + { + "word": "vaniglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vanilla", + "romanization": "vaniglia", + "example_sentence_native": "Mi piace il gelato alla vaniglia.", + "example_sentence_english": "I like vanilla ice cream.", + "pos": "noun", + "word_frequency": 10524 + }, + { + "word": "vortice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vortex", + "romanization": "vortice", + "example_sentence_native": "La barca fu risucchiata in un vortice.", + "example_sentence_english": "The boat was sucked into a whirlpool.", + "pos": "noun", + "word_frequency": 10526 + }, + { + "word": "zinco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zinc", + "romanization": "zinco", + "example_sentence_native": "Lo zinco è un metallo importante.", + "example_sentence_english": "Zinc is an important metal.", + "pos": "noun", + "word_frequency": 10530 + }, + { + "word": "adempimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fulfillment", + "romanization": "adempimento", + "example_sentence_native": "L'adempimento del contratto è essenziale.", + "example_sentence_english": "The fulfillment of the contract is essential.", + "pos": "noun", + "word_frequency": 10533 + }, + { + "word": "adorazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoration", + "romanization": "adorazione", + "example_sentence_native": "La sua adorazione per la musica era evidente.", + "example_sentence_english": "His adoration for music was evident.", + "pos": "noun", + "word_frequency": 10534 + }, + { + "word": "afflusso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influx", + "romanization": "afflusso", + "example_sentence_native": "C'è stato un grande afflusso di turisti in città.", + "example_sentence_english": "There was a large influx of tourists into the city.", + "pos": "noun", + "word_frequency": 10535 + }, + { + "word": "aliquota", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax rate", + "romanization": "aliquota", + "example_sentence_native": "L'aliquota IVA è stata aumentata.", + "example_sentence_english": "The VAT rate has been increased.", + "pos": "noun", + "word_frequency": 10537 + }, + { + "word": "ambiguità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambiguity", + "romanization": "ambiguità", + "example_sentence_native": "C'era molta ambiguità nelle sue parole.", + "example_sentence_english": "There was a lot of ambiguity in his words.", + "pos": "noun", + "word_frequency": 10538 + }, + { + "word": "ananas", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "pineapple", + "romanization": "ananas", + "example_sentence_native": "Mi piace mangiare l'ananas fresco.", + "example_sentence_english": "I like to eat fresh pineapple.", + "pos": "noun", + "word_frequency": 10539 + }, + { + "word": "ascoltatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "listener", + "romanization": "ascoltatore", + "example_sentence_native": "Gli ascoltatori della radio hanno apprezzato la canzone.", + "example_sentence_english": "The radio listeners appreciated the song.", + "pos": "noun", + "word_frequency": 10540 + }, + { + "word": "audience", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "audience", + "romanization": "audience", + "example_sentence_native": "L'audience ha applaudito a lungo.", + "example_sentence_english": "The audience applauded for a long time.", + "pos": "noun", + "word_frequency": 10541 + }, + { + "word": "automazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automation", + "romanization": "automazione", + "example_sentence_native": "L'automazione sta cambiando il mondo del lavoro.", + "example_sentence_english": "Automation is changing the world of work.", + "pos": "noun", + "word_frequency": 10542 + }, + { + "word": "beneficiario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficiary", + "romanization": "beneficiario", + "example_sentence_native": "Il beneficiario dell'assicurazione è suo figlio.", + "example_sentence_english": "The beneficiary of the insurance is his son.", + "pos": "noun", + "word_frequency": 10545 + }, + { + "word": "bordeaux", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bordeaux (color)", + "romanization": "bordeaux", + "example_sentence_native": "Ha comprato un vestito color bordeaux.", + "example_sentence_english": "She bought a bordeaux-colored dress.", + "pos": "noun", + "word_frequency": 10547 + }, + { + "word": "boxe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxing", + "romanization": "boxe", + "example_sentence_native": "La boxe è uno sport di contatto.", + "example_sentence_english": "Boxing is a contact sport.", + "pos": "noun", + "word_frequency": 10548 + }, + { + "word": "cannella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cinnamon", + "romanization": "cannella", + "example_sentence_native": "Mi piace la torta alla cannella.", + "example_sentence_english": "I like cinnamon cake.", + "pos": "noun", + "word_frequency": 10550 + }, + { + "word": "canyon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canyon", + "romanization": "canyon", + "example_sentence_native": "Il Grand Canyon è una meraviglia naturale.", + "example_sentence_english": "The Grand Canyon is a natural wonder.", + "pos": "noun", + "word_frequency": 10551 + }, + { + "word": "celare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conceal", + "romanization": "celare", + "example_sentence_native": "Ha cercato di celare la verità.", + "example_sentence_english": "He tried to conceal the truth.", + "pos": "verb", + "word_frequency": 10554 + }, + { + "word": "ciclabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyclable", + "romanization": "ciclabile", + "example_sentence_native": "La nuova pista ciclabile è molto sicura.", + "example_sentence_english": "The new bike path is very safe.", + "pos": "adjective", + "word_frequency": 10556 + }, + { + "word": "contrattazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiation", + "romanization": "contrattazione", + "example_sentence_native": "La contrattazione collettiva è importante per i lavoratori.", + "example_sentence_english": "Collective bargaining is important for workers.", + "pos": "noun", + "word_frequency": 10559 + }, + { + "word": "controller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controller", + "romanization": "controller", + "example_sentence_native": "Ho comprato un nuovo controller per la mia console di gioco.", + "example_sentence_english": "I bought a new controller for my game console.", + "pos": "noun", + "word_frequency": 10560 + }, + { + "word": "crack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack", + "romanization": "crack", + "example_sentence_native": "C'è un crack nello schermo del mio telefono.", + "example_sentence_english": "There's a crack on my phone screen.", + "pos": "noun", + "word_frequency": 10561 + }, + { + "word": "curdo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Kurdish", + "romanization": "curdo", + "example_sentence_native": "La lingua curda è parlata in diverse regioni del Medio Oriente.", + "example_sentence_english": "The Kurdish language is spoken in several regions of the Middle East.", + "pos": "adjective", + "word_frequency": 10562 + }, + { + "word": "curvatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curvature", + "romanization": "curvatura", + "example_sentence_native": "La curvatura della strada rendeva difficile la visibilità.", + "example_sentence_english": "The curvature of the road made visibility difficult.", + "pos": "noun", + "word_frequency": 10563 + }, + { + "word": "dev", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dev;developer", + "romanization": "dev", + "example_sentence_native": "Il team di dev sta lavorando al nuovo aggiornamento del software.", + "example_sentence_english": "The dev team is working on the new software update.", + "pos": "noun", + "word_frequency": 10565 + }, + { + "word": "direct", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "direct", + "romanization": "direct", + "example_sentence_native": "Hanno adottato un approccio direct al problema.", + "example_sentence_english": "They adopted a direct approach to the problem.", + "pos": "adjective", + "word_frequency": 10566 + }, + { + "word": "dissidente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissident", + "romanization": "dissidente", + "example_sentence_native": "Il dissidente è stato rilasciato dopo anni di prigione.", + "example_sentence_english": "The dissident was released after years in prison.", + "pos": "noun", + "word_frequency": 10567 + }, + { + "word": "emo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emo", + "romanization": "emo", + "example_sentence_native": "Ascoltava musica emo quando era adolescente.", + "example_sentence_english": "He listened to emo music when he was a teenager.", + "pos": "noun", + "word_frequency": 10571 + }, + { + "word": "empire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empire", + "romanization": "empire", + "example_sentence_native": "L'Impero Romano era vasto e potente.", + "example_sentence_english": "The Roman Empire was vast and powerful.", + "pos": "noun", + "word_frequency": 10572 + }, + { + "word": "enterprise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enterprise", + "romanization": "enterprise", + "example_sentence_native": "Hanno lanciato una nuova enterprise nel settore tecnologico.", + "example_sentence_english": "They launched a new enterprise in the technology sector.", + "pos": "noun", + "word_frequency": 10575 + }, + { + "word": "entry", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entry", + "romanization": "entry", + "example_sentence_native": "Ho aggiunto una nuova entry nel database.", + "example_sentence_english": "I added a new entry to the database.", + "pos": "noun", + "word_frequency": 10576 + }, + { + "word": "evoluto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evolved;advanced", + "romanization": "evoluto", + "example_sentence_native": "La tecnologia è diventata molto più evoluta negli ultimi anni.", + "example_sentence_english": "Technology has become much more advanced in recent years.", + "pos": "adjective", + "word_frequency": 10577 + }, + { + "word": "fermento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ferment;excitement;unrest", + "romanization": "fermento", + "example_sentence_native": "C'è un grande fermento in città per il festival imminente.", + "example_sentence_english": "There's great excitement in the city for the upcoming festival.", + "pos": "noun", + "word_frequency": 10578 + }, + { + "word": "flat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flat", + "romanization": "flat", + "example_sentence_native": "Il nuovo design del sito web è molto flat e minimalista.", + "example_sentence_english": "The new website design is very flat and minimalist.", + "pos": "adjective", + "word_frequency": 10579 + }, + { + "word": "flop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flop;failure", + "romanization": "flop", + "example_sentence_native": "Il film è stato un vero flop al botteghino.", + "example_sentence_english": "The movie was a real flop at the box office.", + "pos": "noun", + "word_frequency": 10580 + }, + { + "word": "fm", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "FM (frequency modulation)", + "romanization": "FM", + "example_sentence_native": "Ascolto la radio in FM quando sono in macchina.", + "example_sentence_english": "I listen to the radio on FM when I'm in the car.", + "pos": "noun", + "word_frequency": 10581 + }, + { + "word": "foce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mouth (of a river);estuary", + "romanization": "foce", + "example_sentence_native": "Il fiume sfocia nel mare alla foce.", + "example_sentence_english": "The river flows into the sea at its mouth.", + "pos": "noun", + "word_frequency": 10582 + }, + { + "word": "fungere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to function;to act as", + "romanization": "fungere", + "example_sentence_native": "Questo strumento può fungere da leva in caso di necessità.", + "example_sentence_english": "This tool can act as a lever if needed.", + "pos": "verb", + "word_frequency": 10583 + }, + { + "word": "giurista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurist;legal expert", + "romanization": "giurista", + "example_sentence_native": "È un giurista molto rispettato nel suo campo professionale.", + "example_sentence_english": "He is a very respected jurist in his professional field.", + "pos": "noun", + "word_frequency": 10585 + }, + { + "word": "head", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head", + "romanization": "head", + "example_sentence_native": "È il head del dipartimento marketing della nostra azienda.", + "example_sentence_english": "He is the head of the marketing department of our company.", + "pos": "noun", + "word_frequency": 10590 + }, + { + "word": "hunt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hunt;search", + "romanization": "hunt", + "example_sentence_native": "La hunt per il nuovo CEO è iniziata la settimana scorsa.", + "example_sentence_english": "The hunt for the new CEO started last week.", + "pos": "noun", + "word_frequency": 10592 + }, + { + "word": "illegalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illegality", + "romanization": "illegalità", + "example_sentence_native": "La polizia sta combattendo l'illegalità in tutte le sue forme.", + "example_sentence_english": "The police are fighting illegality in all its forms.", + "pos": "noun", + "word_frequency": 10593 + }, + { + "word": "impaziente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impatient", + "romanization": "impaziente", + "example_sentence_native": "Era impaziente di iniziare il suo viaggio intorno al mondo.", + "example_sentence_english": "He was impatient to start his trip around the world.", + "pos": "adjective", + "word_frequency": 10594 + }, + { + "word": "informatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "informer;source", + "romanization": "informatore", + "example_sentence_native": "L'informatore ha fornito dettagli cruciali alle autorità.", + "example_sentence_english": "The informer provided crucial details to the authorities.", + "pos": "noun", + "word_frequency": 10595 + }, + { + "word": "insaputa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbeknownst;without knowledge", + "romanization": "insaputa", + "example_sentence_native": "Ha agito all'insaputa di tutti i suoi colleghi.", + "example_sentence_english": "He acted unbeknownst to all his colleagues.", + "pos": "noun", + "word_frequency": 10596 + }, + { + "word": "intatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intact;untouched", + "romanization": "intatto", + "example_sentence_native": "Il vaso è rimasto intatto dopo la caduta accidentale.", + "example_sentence_english": "The vase remained intact after the accidental fall.", + "pos": "adjective", + "word_frequency": 10597 + }, + { + "word": "karaoke", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "karaoke", + "romanization": "karaoke", + "example_sentence_native": "Andiamo a fare karaoke stasera?", + "example_sentence_english": "Shall we go do karaoke tonight?", + "pos": "noun", + "word_frequency": 10600 + }, + { + "word": "latitudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "latitude", + "romanization": "latitudine", + "example_sentence_native": "La latitudine di Roma è di circa 41 gradi nord.", + "example_sentence_english": "The latitude of Rome is about 41 degrees north.", + "pos": "noun", + "word_frequency": 10602 + }, + { + "word": "letizia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joy;gladness", + "romanization": "letizia", + "example_sentence_native": "La notizia portò grande letizia a tutti.", + "example_sentence_english": "The news brought great joy to everyone.", + "pos": "noun", + "word_frequency": 10603 + }, + { + "word": "maestra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female teacher (primary school)", + "romanization": "maestra", + "example_sentence_native": "La maestra ha spiegato la lezione.", + "example_sentence_english": "The teacher explained the lesson.", + "pos": "noun", + "word_frequency": 10606 + }, + { + "word": "maggiordomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "butler", + "romanization": "maggiordomo", + "example_sentence_native": "Il maggiordomo ha servito il tè.", + "example_sentence_english": "The butler served the tea.", + "pos": "noun", + "word_frequency": 10607 + }, + { + "word": "maggiorenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adult;of legal age", + "romanization": "maggiorenne", + "example_sentence_native": "Per votare devi essere maggiorenne.", + "example_sentence_english": "To vote, you must be of legal age.", + "pos": "adjective", + "word_frequency": 10608 + }, + { + "word": "mammifero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mammal", + "romanization": "mammifero", + "example_sentence_native": "La balena è un mammifero marino.", + "example_sentence_english": "The whale is a marine mammal.", + "pos": "noun", + "word_frequency": 10609 + }, + { + "word": "mascotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mascot", + "romanization": "mascotte", + "example_sentence_native": "Il leone è la mascotte della nostra squadra.", + "example_sentence_english": "The lion is our team's mascot.", + "pos": "noun", + "word_frequency": 10610 + }, + { + "word": "mischia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melee;scrum;fray", + "romanization": "mischia", + "example_sentence_native": "I giocatori erano in mischia per il pallone.", + "example_sentence_english": "The players were in a scrum for the ball.", + "pos": "noun", + "word_frequency": 10612 + }, + { + "word": "muratore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bricklayer;mason", + "romanization": "muratore", + "example_sentence_native": "Il muratore sta costruendo un nuovo muro.", + "example_sentence_english": "The bricklayer is building a new wall.", + "pos": "noun", + "word_frequency": 10614 + }, + { + "word": "natalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "birth rate;natality", + "romanization": "natalità", + "example_sentence_native": "Il tasso di natalità è in calo in molti paesi.", + "example_sentence_english": "The birth rate is declining in many countries.", + "pos": "noun", + "word_frequency": 10616 + }, + { + "word": "nickname", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nickname", + "romanization": "nickname", + "example_sentence_native": "Il suo nickname online è \"GamerPro\".", + "example_sentence_english": "His online nickname is \"GamerPro\".", + "pos": "noun", + "word_frequency": 10618 + }, + { + "word": "odissea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "odyssey", + "romanization": "odissea", + "example_sentence_native": "Il viaggio è stato una vera odissea.", + "example_sentence_english": "The journey was a real odyssey.", + "pos": "noun", + "word_frequency": 10620 + }, + { + "word": "omega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omega", + "romanization": "omega", + "example_sentence_native": "L'omega è l'ultima lettera dell'alfabeto greco.", + "example_sentence_english": "Omega is the last letter of the Greek alphabet.", + "pos": "noun", + "word_frequency": 10622 + }, + { + "word": "optare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to opt;to choose", + "romanization": "optare", + "example_sentence_native": "Ho deciso di optare per l'opzione più economica.", + "example_sentence_english": "I decided to opt for the cheaper option.", + "pos": "verb", + "word_frequency": 10623 + }, + { + "word": "oratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orator;speaker", + "romanization": "oratore", + "example_sentence_native": "L'oratore ha tenuto un discorso molto ispirato.", + "example_sentence_english": "The speaker gave a very inspiring speech.", + "pos": "noun", + "word_frequency": 10624 + }, + { + "word": "ossessionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obsess;to haunt", + "romanization": "ossessionare", + "example_sentence_native": "L'idea di fallire lo ossessionava.", + "example_sentence_english": "The idea of failing obsessed him.", + "pos": "verb", + "word_frequency": 10626 + }, + { + "word": "overdose", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overdose", + "romanization": "overdose", + "example_sentence_native": "Ha avuto un'overdose di farmaci.", + "example_sentence_english": "He had a drug overdose.", + "pos": "noun", + "word_frequency": 10628 + }, + { + "word": "ovviare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to obviate;to remedy;to overcome", + "romanization": "ovviare", + "example_sentence_native": "Dobbiamo trovare un modo per ovviare a questo problema.", + "example_sentence_english": "We must find a way to overcome this problem.", + "pos": "verb", + "word_frequency": 10629 + }, + { + "word": "palmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palm (of hand);span", + "romanization": "palmo", + "example_sentence_native": "Mi ha dato una pacca sul palmo della mano.", + "example_sentence_english": "He gave me a pat on the palm of my hand.", + "pos": "noun", + "word_frequency": 10630 + }, + { + "word": "paranoia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoia", + "romanization": "paranoia", + "example_sentence_native": "La sua paranoia gli impediva di fidarsi di chiunque.", + "example_sentence_english": "His paranoia prevented him from trusting anyone.", + "pos": "noun", + "word_frequency": 10631 + }, + { + "word": "patriota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriot", + "romanization": "patriota", + "example_sentence_native": "Era considerato un grande patriota.", + "example_sentence_english": "He was considered a great patriot.", + "pos": "noun", + "word_frequency": 10632 + }, + { + "word": "penitenziario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penitentiary;penal", + "romanization": "penitenziario", + "example_sentence_native": "Il sistema penitenziario ha bisogno di riforme.", + "example_sentence_english": "The penitentiary system needs reforms.", + "pos": "adjective", + "word_frequency": 10633 + }, + { + "word": "peperone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bell pepper;capsicum", + "romanization": "peperone", + "example_sentence_native": "Mi piacciono i peperoni ripieni.", + "example_sentence_english": "I like stuffed bell peppers.", + "pos": "noun", + "word_frequency": 10634 + }, + { + "word": "perdente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "losing;loser (as an adjective)", + "romanization": "perdente", + "example_sentence_native": "Non mi piace essere la squadra perdente.", + "example_sentence_english": "I don't like being the losing team.", + "pos": "adjective", + "word_frequency": 10635 + }, + { + "word": "plastico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plastic (adj.);malleable", + "romanization": "plastico", + "example_sentence_native": "Questo materiale è molto plastico e facile da modellare.", + "example_sentence_english": "This material is very plastic and easy to mold.", + "pos": "adjective", + "word_frequency": 10637 + }, + { + "word": "porcellana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porcelain", + "romanization": "porcellana", + "example_sentence_native": "Le tazze sono fatte di porcellana fine.", + "example_sentence_english": "The cups are made of fine porcelain.", + "pos": "noun", + "word_frequency": 10638 + }, + { + "word": "portuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "port (adj.);harbor (adj.)", + "romanization": "portuale", + "example_sentence_native": "Le attività portuali sono essenziali per il commercio.", + "example_sentence_english": "Port activities are essential for trade.", + "pos": "adjective", + "word_frequency": 10639 + }, + { + "word": "presentatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presenter", + "romanization": "presentatore", + "example_sentence_native": "Il presentatore ha annunciato il vincitore del concorso.", + "example_sentence_english": "The presenter announced the winner of the contest.", + "pos": "noun", + "word_frequency": 10640 + }, + { + "word": "prossimamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coming soon", + "romanization": "prossimamente", + "example_sentence_native": "Il nuovo film uscirà prossimamente al cinema.", + "example_sentence_english": "The new film will be released coming soon in cinemas.", + "pos": "adverb", + "word_frequency": 10641 + }, + { + "word": "redine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rein", + "romanization": "redine", + "example_sentence_native": "Il cavaliere teneva saldamente le redini del suo cavallo.", + "example_sentence_english": "The rider firmly held the reins of his horse.", + "pos": "noun", + "word_frequency": 10642 + }, + { + "word": "remake", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remake", + "romanization": "remake", + "example_sentence_native": "Hanno annunciato un remake del classico film d'azione.", + "example_sentence_english": "They announced a remake of the classic action film.", + "pos": "noun", + "word_frequency": 10643 + }, + { + "word": "restaurazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restoration", + "romanization": "restaurazione", + "example_sentence_native": "La restaurazione del vecchio edificio ha richiesto anni di lavoro.", + "example_sentence_english": "The restoration of the old building required years of work.", + "pos": "noun", + "word_frequency": 10644 + }, + { + "word": "rotolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roll", + "romanization": "rotolo", + "example_sentence_native": "Ho comprato un rotolo di carta da cucina.", + "example_sentence_english": "I bought a roll of kitchen paper.", + "pos": "noun", + "word_frequency": 10646 + }, + { + "word": "sailor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sailor", + "romanization": "sailor", + "example_sentence_native": "Il vecchio sailor raccontava storie di mare.", + "example_sentence_english": "The old sailor told sea stories.", + "pos": "noun", + "word_frequency": 10647 + }, + { + "word": "sbarcare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disembark", + "romanization": "sbarcare", + "example_sentence_native": "I passeggeri hanno iniziato a sbarcare dalla nave.", + "example_sentence_english": "The passengers began to disembark from the ship.", + "pos": "verb", + "word_frequency": 10649 + }, + { + "word": "scampo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escape", + "romanization": "scampo", + "example_sentence_native": "Non c'era scampo dalla situazione difficile.", + "example_sentence_english": "There was no escape from the difficult situation.", + "pos": "noun", + "word_frequency": 10650 + }, + { + "word": "sconforto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despondency", + "romanization": "sconforto", + "example_sentence_native": "Ha provato un profondo sconforto dopo la brutta notizia.", + "example_sentence_english": "He felt deep despondency after the bad news.", + "pos": "noun", + "word_frequency": 10651 + }, + { + "word": "scorretto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incorrect", + "romanization": "scorretto", + "example_sentence_native": "La sua affermazione era completamente scorretta.", + "example_sentence_english": "His statement was completely incorrect.", + "pos": "adjective", + "word_frequency": 10652 + }, + { + "word": "scotto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "price (consequence)", + "romanization": "scotto", + "example_sentence_native": "Ha pagato lo scotto per le sue decisioni avventate.", + "example_sentence_english": "He paid the price for his rash decisions.", + "pos": "noun", + "word_frequency": 10653 + }, + { + "word": "senese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sienese", + "romanization": "senese", + "example_sentence_native": "La cucina senese è rinomata per i suoi piatti tradizionali.", + "example_sentence_english": "Sienese cuisine is renowned for its traditional dishes.", + "pos": "adjective", + "word_frequency": 10654 + }, + { + "word": "sinodo", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "synod", + "romanization": "sinodo", + "example_sentence_native": "Il sinodo dei vescovi si riunirà il prossimo mese.", + "example_sentence_english": "The synod of bishops will meet next month.", + "pos": "noun", + "word_frequency": 10655 + }, + { + "word": "smog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smog", + "romanization": "smog", + "example_sentence_native": "La città era avvolta da una densa cappa di smog.", + "example_sentence_english": "The city was enveloped in a thick blanket of smog.", + "pos": "noun", + "word_frequency": 10656 + }, + { + "word": "sommergere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to submerge", + "romanization": "sommergere", + "example_sentence_native": "L'acqua ha iniziato a sommergere le strade dopo il temporale.", + "example_sentence_english": "The water began to submerge the streets after the storm.", + "pos": "verb", + "word_frequency": 10657 + }, + { + "word": "soprano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soprano", + "romanization": "soprano", + "example_sentence_native": "La famosa soprano ha incantato il pubblico con la sua voce.", + "example_sentence_english": "The famous soprano enchanted the audience with her voice.", + "pos": "noun", + "word_frequency": 10658 + }, + { + "word": "spider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convertible (car)", + "romanization": "spider", + "example_sentence_native": "Ha comprato una nuova spider rossa per l'estate.", + "example_sentence_english": "He bought a new red convertible for the summer.", + "pos": "noun", + "word_frequency": 10659 + }, + { + "word": "spietato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ruthless", + "romanization": "spietato", + "example_sentence_native": "Il tiranno era conosciuto per la sua crudeltà spietata.", + "example_sentence_english": "The tyrant was known for his ruthless cruelty.", + "pos": "adjective", + "word_frequency": 10660 + }, + { + "word": "stabilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stably;permanently", + "romanization": "stabilmente", + "example_sentence_native": "Si è trasferito stabilmente in campagna dopo la pensione.", + "example_sentence_english": "He moved permanently to the countryside after retirement.", + "pos": "adverb", + "word_frequency": 10661 + }, + { + "word": "suicidare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to commit suicide", + "romanization": "suicidare", + "example_sentence_native": "È fondamentale cercare aiuto se si pensa di suicidarsi.", + "example_sentence_english": "It is essential to seek help if one thinks of committing suicide.", + "pos": "verb", + "word_frequency": 10663 + }, + { + "word": "support", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "support", + "romanization": "support", + "example_sentence_native": "Abbiamo bisogno del tuo support per completare il progetto.", + "example_sentence_english": "We need your support to complete the project.", + "pos": "noun", + "word_frequency": 10664 + }, + { + "word": "tamburo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "drum", + "romanization": "tamburo", + "example_sentence_native": "Il bambino batteva allegramente sul suo piccolo tamburo.", + "example_sentence_english": "The child happily beat on his small drum.", + "pos": "noun", + "word_frequency": 10665 + }, + { + "word": "telegramma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telegram", + "romanization": "telegramma", + "example_sentence_native": "Ha ricevuto un telegramma urgente con brutte notizie.", + "example_sentence_english": "He received an urgent telegram with bad news.", + "pos": "noun", + "word_frequency": 10666 + }, + { + "word": "trascurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to neglect", + "romanization": "trascurare", + "example_sentence_native": "Non dovresti mai trascurare la tua salute.", + "example_sentence_english": "You should never neglect your health.", + "pos": "verb", + "word_frequency": 10667 + }, + { + "word": "vanto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boast;pride", + "romanization": "vanto", + "example_sentence_native": "Il suo più grande vanto era la sua collezione di opere d'arte.", + "example_sentence_english": "His greatest pride was his art collection.", + "pos": "noun", + "word_frequency": 10669 + }, + { + "word": "walking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "walking", + "romanization": "walking", + "example_sentence_native": "Abbiamo fatto un walking tour del centro storico.", + "example_sentence_english": "We did a walking tour of the historic center.", + "pos": "noun", + "word_frequency": 10671 + }, + { + "word": "abbassamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lowering;decrease", + "romanization": "abbassamento", + "example_sentence_native": "Si è registrato un abbassamento della pressione atmosferica.", + "example_sentence_english": "A decrease in atmospheric pressure was recorded.", + "pos": "noun", + "word_frequency": 10675 + }, + { + "word": "accampamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encampment;camp", + "romanization": "accampamento", + "example_sentence_native": "I soldati hanno allestito un accampamento temporaneo nel bosco.", + "example_sentence_english": "The soldiers set up a temporary encampment in the woods.", + "pos": "noun", + "word_frequency": 10676 + }, + { + "word": "affiancare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flank;to support", + "romanization": "affiancare", + "example_sentence_native": "Il nuovo assistente affiancherà il direttore nelle sue mansioni.", + "example_sentence_english": "The new assistant will support the director in his duties.", + "pos": "verb", + "word_frequency": 10677 + }, + { + "word": "affiliato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "affiliate;member", + "romanization": "affiliato", + "example_sentence_native": "Ogni affiliato riceverà uno sconto speciale.", + "example_sentence_english": "Each affiliate will receive a special discount.", + "pos": "noun", + "word_frequency": 10678 + }, + { + "word": "agitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake;to agitate", + "romanization": "agitare", + "example_sentence_native": "Non agitare la bottiglia prima di aprirla.", + "example_sentence_english": "Do not shake the bottle before opening it.", + "pos": "verb", + "word_frequency": 10679 + }, + { + "word": "aia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "threshing floor", + "romanization": "aia", + "example_sentence_native": "I contadini stendevano il grano sull'aia per farlo essiccare.", + "example_sentence_english": "The farmers spread the wheat on the threshing floor to dry it.", + "pos": "noun", + "word_frequency": 10681 + }, + { + "word": "ambulante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "street vendor", + "romanization": "ambulante", + "example_sentence_native": "Ho comprato della frutta da un venditore ambulante al mercato.", + "example_sentence_english": "I bought some fruit from a street vendor at the market.", + "pos": "noun", + "word_frequency": 10684 + }, + { + "word": "amnistia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amnesty", + "romanization": "amnistia", + "example_sentence_native": "Il governo ha concesso l'amnistia per alcuni reati minori.", + "example_sentence_english": "The government granted amnesty for some minor offenses.", + "pos": "noun", + "word_frequency": 10685 + }, + { + "word": "arbitrio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "free will", + "romanization": "arbitrio", + "example_sentence_native": "Ogni persona ha il libero arbitrio di scegliere il proprio percorso.", + "example_sentence_english": "Every person has the free will to choose their own path.", + "pos": "noun", + "word_frequency": 10686 + }, + { + "word": "artefice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "creator", + "romanization": "artefice", + "example_sentence_native": "È stato l'artefice principale del successo del progetto.", + "example_sentence_english": "He was the main creator of the project's success.", + "pos": "noun", + "word_frequency": 10687 + }, + { + "word": "articolazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint", + "romanization": "articolazione", + "example_sentence_native": "Il ginocchio è una delle articolazioni più grandi del corpo.", + "example_sentence_english": "The knee is one of the largest joints in the body.", + "pos": "noun", + "word_frequency": 10688 + }, + { + "word": "attaccamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attachment", + "romanization": "attaccamento", + "example_sentence_native": "Il bambino mostrava un forte attaccamento alla sua coperta.", + "example_sentence_english": "The child showed a strong attachment to his blanket.", + "pos": "noun", + "word_frequency": 10689 + }, + { + "word": "braccialetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bracelet", + "romanization": "braccialetto", + "example_sentence_native": "Ha ricevuto un bellissimo braccialetto d'argento per il suo compleanno.", + "example_sentence_english": "She received a beautiful silver bracelet for her birthday.", + "pos": "noun", + "word_frequency": 10691 + }, + { + "word": "caricatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "charger", + "romanization": "caricatore", + "example_sentence_native": "Ho dimenticato il caricatore del telefono a casa.", + "example_sentence_english": "I forgot my phone charger at home.", + "pos": "noun", + "word_frequency": 10693 + }, + { + "word": "cassaforte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "safe", + "romanization": "cassaforte", + "example_sentence_native": "Teneva i suoi gioielli in una cassaforte nascosta.", + "example_sentence_english": "She kept her jewelry in a hidden safe.", + "pos": "noun", + "word_frequency": 10695 + }, + { + "word": "catechismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catechism", + "romanization": "catechismo", + "example_sentence_native": "I bambini studiano il catechismo per la prima comunione.", + "example_sentence_english": "Children study the catechism for their first communion.", + "pos": "noun", + "word_frequency": 10696 + }, + { + "word": "censurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to censor", + "romanization": "censurare", + "example_sentence_native": "Il governo ha deciso di censurare alcune scene del film.", + "example_sentence_english": "The government decided to censor some scenes from the film.", + "pos": "verb", + "word_frequency": 10698 + }, + { + "word": "cisterna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cistern", + "romanization": "cisterna", + "example_sentence_native": "L'acqua piovana viene raccolta in una grande cisterna.", + "example_sentence_english": "Rainwater is collected in a large cistern.", + "pos": "noun", + "word_frequency": 10699 + }, + { + "word": "coccodrillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crocodile", + "romanization": "coccodrillo", + "example_sentence_native": "Il coccodrillo è un rettile molto grande e pericoloso.", + "example_sentence_english": "The crocodile is a very large and dangerous reptile.", + "pos": "noun", + "word_frequency": 10700 + }, + { + "word": "collare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "collar", + "romanization": "collare", + "example_sentence_native": "Il cane indossava un nuovo collare di pelle.", + "example_sentence_english": "The dog was wearing a new leather collar.", + "pos": "noun", + "word_frequency": 10701 + }, + { + "word": "colon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colon", + "romanization": "colon", + "example_sentence_native": "Il colon è una parte dell'intestino crasso.", + "example_sentence_english": "The colon is a part of the large intestine.", + "pos": "noun", + "word_frequency": 10702 + }, + { + "word": "colposo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "negligent", + "romanization": "colposo", + "example_sentence_native": "È stato accusato di omicidio colposo.", + "example_sentence_english": "He was accused of negligent homicide.", + "pos": "adjective", + "word_frequency": 10703 + }, + { + "word": "compravendita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buying and selling", + "romanization": "compravendita", + "example_sentence_native": "Il contratto di compravendita è stato firmato ieri.", + "example_sentence_english": "The sales contract was signed yesterday.", + "pos": "noun", + "word_frequency": 10704 + }, + { + "word": "concessionario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dealer", + "romanization": "concessionario", + "example_sentence_native": "Ho comprato la mia nuova auto dal concessionario locale.", + "example_sentence_english": "I bought my new car from the local dealer.", + "pos": "noun", + "word_frequency": 10705 + }, + { + "word": "corrispettivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consideration", + "romanization": "corrispettivo", + "example_sentence_native": "Il corrispettivo per il servizio è stato pagato in anticipo.", + "example_sentence_english": "The consideration for the service was paid in advance.", + "pos": "noun", + "word_frequency": 10706 + }, + { + "word": "crash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crash", + "romanization": "crash", + "example_sentence_native": "C'è stato un crash del sistema informatico.", + "example_sentence_english": "There was a computer system crash.", + "pos": "noun", + "word_frequency": 10707 + }, + { + "word": "delizia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delight", + "romanization": "delizia", + "example_sentence_native": "Il gelato al cioccolato è una vera delizia.", + "example_sentence_english": "Chocolate ice cream is a real delight.", + "pos": "noun", + "word_frequency": 10708 + }, + { + "word": "digerire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to digest", + "romanization": "digerire", + "example_sentence_native": "Ho bisogno di tempo per digerire questo pasto abbondante.", + "example_sentence_english": "I need time to digest this heavy meal.", + "pos": "verb", + "word_frequency": 10710 + }, + { + "word": "disegnatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "designer", + "romanization": "disegnatore", + "example_sentence_native": "Mio fratello è un bravo disegnatore di fumetti.", + "example_sentence_english": "My brother is a good comic book designer.", + "pos": "noun", + "word_frequency": 10711 + }, + { + "word": "distrarre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distract", + "romanization": "distrarre", + "example_sentence_native": "Il rumore mi distrae dallo studio.", + "example_sentence_english": "The noise distracts me from studying.", + "pos": "verb", + "word_frequency": 10712 + }, + { + "word": "drop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drop", + "romanization": "drop", + "example_sentence_native": "C'è stato un drop improvviso delle temperature.", + "example_sentence_english": "There was a sudden drop in temperatures.", + "pos": "noun", + "word_frequency": 10714 + }, + { + "word": "eguale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equal", + "romanization": "eguale", + "example_sentence_native": "Tutti gli esseri umani hanno diritti eguali.", + "example_sentence_english": "All human beings have equal rights.", + "pos": "adjective", + "word_frequency": 10716 + }, + { + "word": "emigrante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emigrant", + "romanization": "emigrante", + "example_sentence_native": "Molti emigranti cercano una vita migliore all'estero.", + "example_sentence_english": "Many emigrants seek a better life abroad.", + "pos": "noun", + "word_frequency": 10718 + }, + { + "word": "emozionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excite", + "romanization": "emozionare", + "example_sentence_native": "La musica può emozionare profondamente le persone.", + "example_sentence_english": "Music can deeply excite people.", + "pos": "verb", + "word_frequency": 10719 + }, + { + "word": "epilogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epilogue", + "romanization": "epilogo", + "example_sentence_native": "L'epilogo del romanzo è stato molto commovente.", + "example_sentence_english": "The epilogue of the novel was very moving.", + "pos": "noun", + "word_frequency": 10720 + }, + { + "word": "falda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flap;brim;layer", + "romanization": "falda", + "example_sentence_native": "La falda acquifera è una riserva d'acqua sotterranea.", + "example_sentence_english": "The aquifer is an underground water reserve.", + "pos": "noun", + "word_frequency": 10721 + }, + { + "word": "festivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "holiday (adj.);festive", + "romanization": "festivo", + "example_sentence_native": "Il 25 dicembre è un giorno festivo.", + "example_sentence_english": "December 25th is a holiday.", + "pos": "adjective", + "word_frequency": 10724 + }, + { + "word": "forchetta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "fork", + "romanization": "forchetta", + "example_sentence_native": "Per favore, passami la forchetta.", + "example_sentence_english": "Please pass me the fork.", + "pos": "noun", + "word_frequency": 10726 + }, + { + "word": "freezer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freezer", + "romanization": "freezer", + "example_sentence_native": "Ho messo il gelato nel freezer.", + "example_sentence_english": "I put the ice cream in the freezer.", + "pos": "noun", + "word_frequency": 10728 + }, + { + "word": "grezzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raw;crude;rough", + "romanization": "grezzo", + "example_sentence_native": "Il petrolio grezzo deve essere raffinato.", + "example_sentence_english": "Crude oil must be refined.", + "pos": "adjective", + "word_frequency": 10733 + }, + { + "word": "incrociare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cross;to intersect", + "romanization": "incrociare", + "example_sentence_native": "Dobbiamo incrociare le dita per buona fortuna.", + "example_sentence_english": "We must cross our fingers for good luck.", + "pos": "verb", + "word_frequency": 10735 + }, + { + "word": "inerzia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inertia", + "romanization": "inerzia", + "example_sentence_native": "Il corpo è rimasto in stato di inerzia.", + "example_sentence_english": "The body remained in a state of inertia.", + "pos": "noun", + "word_frequency": 10736 + }, + { + "word": "ingenuità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naivety;ingenuousness", + "romanization": "ingenuità", + "example_sentence_native": "La sua ingenuità lo rende vulnerabile.", + "example_sentence_english": "His naivety makes him vulnerable.", + "pos": "noun", + "word_frequency": 10737 + }, + { + "word": "jeep", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jeep", + "romanization": "jeep", + "example_sentence_native": "Abbiamo usato una jeep per il safari.", + "example_sentence_english": "We used a jeep for the safari.", + "pos": "noun", + "word_frequency": 10738 + }, + { + "word": "logicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "logically", + "romanization": "logicamente", + "example_sentence_native": "Logicamente, la sua decisione è stata la migliore.", + "example_sentence_english": "Logically, his decision was the best.", + "pos": "adverb", + "word_frequency": 10740 + }, + { + "word": "magicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magically", + "romanization": "magicamente", + "example_sentence_native": "Il coniglio è scomparso magicamente dal cappello.", + "example_sentence_english": "The rabbit magically disappeared from the hat.", + "pos": "adverb", + "word_frequency": 10742 + }, + { + "word": "manualmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manually", + "romanization": "manualmente", + "example_sentence_native": "Il lavoro deve essere eseguito manualmente.", + "example_sentence_english": "The work must be performed manually.", + "pos": "adverb", + "word_frequency": 10743 + }, + { + "word": "metropolitano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metropolitan", + "romanization": "metropolitano", + "example_sentence_native": "La rete metropolitana è molto efficiente.", + "example_sentence_english": "The metropolitan network is very efficient.", + "pos": "adjective", + "word_frequency": 10746 + }, + { + "word": "mp3", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "MP3", + "romanization": "MP3", + "example_sentence_native": "Ascolto musica sul mio lettore MP3.", + "example_sentence_english": "I listen to music on my MP3 player.", + "pos": "noun", + "word_frequency": 10749 + }, + { + "word": "mutamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "change;alteration", + "romanization": "mutamento", + "example_sentence_native": "Stiamo assistendo a un rapido mutamento climatico.", + "example_sentence_english": "We are witnessing rapid climate change.", + "pos": "noun", + "word_frequency": 10751 + }, + { + "word": "necropoli", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necropolis", + "romanization": "necropoli", + "example_sentence_native": "Abbiamo visitato l'antica necropoli etrusca.", + "example_sentence_english": "We visited the ancient Etruscan necropolis.", + "pos": "noun", + "word_frequency": 10752 + }, + { + "word": "occupante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occupant;tenant", + "romanization": "occupante", + "example_sentence_native": "L'occupante dell'appartamento ha pagato l'affitto.", + "example_sentence_english": "The occupant of the apartment paid the rent.", + "pos": "noun", + "word_frequency": 10754 + }, + { + "word": "ostacolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hinder;to obstruct", + "romanization": "ostacolare", + "example_sentence_native": "Non voglio ostacolare i tuoi progressi.", + "example_sentence_english": "I don't want to hinder your progress.", + "pos": "verb", + "word_frequency": 10757 + }, + { + "word": "osteria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inn;tavern", + "romanization": "osteria", + "example_sentence_native": "Abbiamo cenato in una tipica osteria romana.", + "example_sentence_english": "We had dinner in a typical Roman osteria.", + "pos": "noun", + "word_frequency": 10758 + }, + { + "word": "pappa", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "baby food;mush", + "romanization": "pappa", + "example_sentence_native": "Il bambino ha mangiato tutta la sua pappa.", + "example_sentence_english": "The baby ate all his baby food.", + "pos": "noun", + "word_frequency": 10760 + }, + { + "word": "periferico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peripheral", + "romanization": "periferico", + "example_sentence_native": "Vivono in una zona periferica della città.", + "example_sentence_english": "They live in a peripheral area of the city.", + "pos": "adjective", + "word_frequency": 10761 + }, + { + "word": "precarietà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precariousness;instability", + "romanization": "precarietà", + "example_sentence_native": "Molti giovani vivono in una condizione di precarietà lavorativa.", + "example_sentence_english": "Many young people live in a condition of job precariousness.", + "pos": "noun", + "word_frequency": 10764 + }, + { + "word": "prescelto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chosen;elect", + "romanization": "prescelto", + "example_sentence_native": "Lui è il prescelto per questa missione.", + "example_sentence_english": "He is the chosen one for this mission.", + "pos": "adjective", + "word_frequency": 10765 + }, + { + "word": "psicoterapia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotherapy", + "romanization": "psicoterapia", + "example_sentence_native": "Ha iniziato un percorso di psicoterapia per affrontare l'ansia.", + "example_sentence_english": "She started a course of psychotherapy to deal with anxiety.", + "pos": "noun", + "word_frequency": 10767 + }, + { + "word": "qi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "IQ (Intelligence Quotient)", + "romanization": "qi", + "example_sentence_native": "Il suo QI è molto alto.", + "example_sentence_english": "His IQ is very high.", + "pos": "noun", + "word_frequency": 10768 + }, + { + "word": "questionario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "questionnaire", + "romanization": "questionario", + "example_sentence_native": "Dobbiamo compilare un questionario per la ricerca.", + "example_sentence_english": "We need to fill out a questionnaire for the research.", + "pos": "noun", + "word_frequency": 10769 + }, + { + "word": "radicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to root;to establish", + "romanization": "radicare", + "example_sentence_native": "Queste tradizioni sono profondamente radicate nella cultura locale.", + "example_sentence_english": "These traditions are deeply rooted in the local culture.", + "pos": "verb", + "word_frequency": 10770 + }, + { + "word": "ricevitore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "receiver", + "romanization": "ricevitore", + "example_sentence_native": "Il ricevitore del telefono non funziona.", + "example_sentence_english": "The phone receiver is not working.", + "pos": "noun", + "word_frequency": 10773 + }, + { + "word": "rigoroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigorous;strict", + "romanization": "rigoroso", + "example_sentence_native": "Hanno seguito un processo di selezione molto rigoroso.", + "example_sentence_english": "They followed a very rigorous selection process.", + "pos": "adjective", + "word_frequency": 10774 + }, + { + "word": "rinviare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to postpone;to defer", + "romanization": "rinviare", + "example_sentence_native": "La riunione è stata rinviata a lunedì prossimo.", + "example_sentence_english": "The meeting has been postponed until next Monday.", + "pos": "verb", + "word_frequency": 10775 + }, + { + "word": "riproporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-propose;to bring up again", + "romanization": "riproporre", + "example_sentence_native": "Dobbiamo riproporre la questione al consiglio.", + "example_sentence_english": "We need to re-propose the issue to the council.", + "pos": "verb", + "word_frequency": 10776 + }, + { + "word": "risanamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rehabilitation;recovery;clean-up", + "romanization": "risanamento", + "example_sentence_native": "Il governo ha avviato un piano di risanamento economico.", + "example_sentence_english": "The government has launched an economic recovery plan.", + "pos": "noun", + "word_frequency": 10777 + }, + { + "word": "rispettabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectable", + "romanization": "rispettabile", + "example_sentence_native": "È una persona molto rispettabile nella comunità.", + "example_sentence_english": "He is a very respectable person in the community.", + "pos": "adjective", + "word_frequency": 10778 + }, + { + "word": "rubino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruby", + "romanization": "rubino", + "example_sentence_native": "L'anello aveva un grande rubino incastonato.", + "example_sentence_english": "The ring had a large ruby set in it.", + "pos": "noun", + "word_frequency": 10779 + }, + { + "word": "salmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psalm", + "romanization": "salmo", + "example_sentence_native": "Ha letto un salmo durante la cerimonia.", + "example_sentence_english": "He read a psalm during the ceremony.", + "pos": "noun", + "word_frequency": 10780 + }, + { + "word": "sancire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to sanction;to establish;to ratify", + "romanization": "sancire", + "example_sentence_native": "La legge sancisce i diritti dei cittadini.", + "example_sentence_english": "The law sanctions the rights of citizens.", + "pos": "verb", + "word_frequency": 10782 + }, + { + "word": "scaglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scale (fish;skin);flake (rock)", + "romanization": "scaglia", + "example_sentence_native": "Il pesce aveva delle scaglie lucide.", + "example_sentence_english": "The fish had shiny scales.", + "pos": "noun", + "word_frequency": 10783 + }, + { + "word": "solco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "furrow;groove;rut", + "romanization": "solco", + "example_sentence_native": "L'aratro ha lasciato un profondo solco nel terreno.", + "example_sentence_english": "The plow left a deep furrow in the ground.", + "pos": "noun", + "word_frequency": 10788 + }, + { + "word": "solidità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solidity;strength;stability", + "romanization": "solidità", + "example_sentence_native": "La solidità della struttura è fondamentale per la sicurezza.", + "example_sentence_english": "The solidity of the structure is fundamental for safety.", + "pos": "noun", + "word_frequency": 10789 + }, + { + "word": "soprintendenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendence;oversight body", + "romanization": "soprintendenza", + "example_sentence_native": "La Soprintendenza ha approvato il restauro del monumento.", + "example_sentence_english": "The Superintendence approved the restoration of the monument.", + "pos": "noun", + "word_frequency": 10790 + }, + { + "word": "sottosuolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsoil;underground", + "romanization": "sottosuolo", + "example_sentence_native": "Nel sottosuolo sono stati trovati giacimenti di petrolio.", + "example_sentence_english": "Oil deposits were found in the subsoil.", + "pos": "noun", + "word_frequency": 10791 + }, + { + "word": "sputare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spit", + "romanization": "sputare", + "example_sentence_native": "Non sputare per terra!", + "example_sentence_english": "Don't spit on the ground!", + "pos": "verb", + "word_frequency": 10792 + }, + { + "word": "statura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "height;stature", + "romanization": "statura", + "example_sentence_native": "Ha una statura media.", + "example_sentence_english": "He has an average height.", + "pos": "noun", + "word_frequency": 10793 + }, + { + "word": "strutturare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to structure", + "romanization": "strutturare", + "example_sentence_native": "Dobbiamo strutturare meglio il nostro progetto.", + "example_sentence_english": "We need to structure our project better.", + "pos": "verb", + "word_frequency": 10794 + }, + { + "word": "terzino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "full-back (soccer)", + "romanization": "terzino", + "example_sentence_native": "Il terzino ha fatto un ottimo cross.", + "example_sentence_english": "The full-back made an excellent cross.", + "pos": "noun", + "word_frequency": 10795 + }, + { + "word": "triplice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triple;threefold", + "romanization": "triplice", + "example_sentence_native": "Hanno firmato un accordo triplice.", + "example_sentence_english": "They signed a triple agreement.", + "pos": "adjective", + "word_frequency": 10797 + }, + { + "word": "vincolante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "binding", + "romanization": "vincolante", + "example_sentence_native": "La decisione è vincolante per tutte le parti.", + "example_sentence_english": "The decision is binding for all parties.", + "pos": "adjective", + "word_frequency": 10799 + }, + { + "word": "virtuoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virtuous;virtuoso", + "romanization": "virtuoso", + "example_sentence_native": "Era un pianista virtuoso.", + "example_sentence_english": "He was a virtuoso pianist.", + "pos": "adjective", + "word_frequency": 10801 + }, + { + "word": "addestrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to train", + "romanization": "addestrare", + "example_sentence_native": "Stiamo addestrando il nostro cane.", + "example_sentence_english": "We are training our dog.", + "pos": "verb", + "word_frequency": 10806 + }, + { + "word": "agevolmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easily;smoothly", + "romanization": "agevolmente", + "example_sentence_native": "Ha superato l'esame agevolmente.", + "example_sentence_english": "He passed the exam easily.", + "pos": "adverb", + "word_frequency": 10807 + }, + { + "word": "aggiudicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to award;to assign;to adjudge", + "romanization": "aggiudicare", + "example_sentence_native": "Il giudice ha aggiudicato la custodia alla madre.", + "example_sentence_english": "The judge awarded custody to the mother.", + "pos": "verb", + "word_frequency": 10808 + }, + { + "word": "anarchia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anarchy", + "romanization": "anarchia", + "example_sentence_native": "La caduta del governo ha portato all'anarchia.", + "example_sentence_english": "The fall of the government led to anarchy.", + "pos": "noun", + "word_frequency": 10810 + }, + { + "word": "apprendistato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apprenticeship", + "romanization": "apprendistato", + "example_sentence_native": "Ha iniziato un apprendistato come falegname.", + "example_sentence_english": "He started an apprenticeship as a carpenter.", + "pos": "noun", + "word_frequency": 10812 + }, + { + "word": "approvvigionamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supply;procurement", + "romanization": "approvvigionamento", + "example_sentence_native": "La gestione dell'approvvigionamento è cruciale per l'azienda.", + "example_sentence_english": "Supply management is crucial for the company.", + "pos": "noun", + "word_frequency": 10813 + }, + { + "word": "ario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Aryan", + "romanization": "ario", + "example_sentence_native": "Il termine \"ario\" ha avuto un uso controverso nella storia.", + "example_sentence_english": "The term \"Aryan\" has had a controversial use in history.", + "pos": "adjective", + "word_frequency": 10814 + }, + { + "word": "aspirapolvere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vacuum cleaner", + "romanization": "aspirapolvere", + "example_sentence_native": "Ho usato l'aspirapolvere per pulire il tappeto.", + "example_sentence_english": "I used the vacuum cleaner to clean the carpet.", + "pos": "noun", + "word_frequency": 10815 + }, + { + "word": "autismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autism", + "romanization": "autismo", + "example_sentence_native": "L'autismo è un disturbo dello sviluppo neurologico.", + "example_sentence_english": "Autism is a neurodevelopmental disorder.", + "pos": "noun", + "word_frequency": 10817 + }, + { + "word": "avo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestor;forefather", + "romanization": "avo", + "example_sentence_native": "I nostri avi hanno costruito questa casa.", + "example_sentence_english": "Our ancestors built this house.", + "pos": "noun", + "word_frequency": 10818 + }, + { + "word": "avvelenamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoning", + "romanization": "avvelenamento", + "example_sentence_native": "C'è stato un caso di avvelenamento alimentare.", + "example_sentence_english": "There was a case of food poisoning.", + "pos": "noun", + "word_frequency": 10819 + }, + { + "word": "basilico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basil", + "romanization": "basilico", + "example_sentence_native": "Ho aggiunto del basilico fresco alla pasta.", + "example_sentence_english": "I added fresh basil to the pasta.", + "pos": "noun", + "word_frequency": 10820 + }, + { + "word": "briciolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crumb;bit;shred", + "romanization": "briciolo", + "example_sentence_native": "Non c'è un briciolo di speranza.", + "example_sentence_english": "There isn't a shred of hope.", + "pos": "noun", + "word_frequency": 10822 + }, + { + "word": "capillare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capillary;widespread;thorough", + "romanization": "capillare", + "example_sentence_native": "La rete di distribuzione è capillare in tutto il paese.", + "example_sentence_english": "The distribution network is widespread throughout the country.", + "pos": "adjective", + "word_frequency": 10825 + }, + { + "word": "carbonico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbonic", + "romanization": "carbonico", + "example_sentence_native": "L'anidride carbonica è un gas serra.", + "example_sentence_english": "Carbon dioxide is a greenhouse gas.", + "pos": "adjective", + "word_frequency": 10826 + }, + { + "word": "ciccione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fat (colloquial)", + "romanization": "ciccione", + "example_sentence_native": "Il gatto del vicino è diventato un po' ciccione.", + "example_sentence_english": "The neighbor's cat has gotten a bit fat.", + "pos": "adjective", + "word_frequency": 10830 + }, + { + "word": "cofano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood (of a car);coffin", + "romanization": "cofano", + "example_sentence_native": "Ho aperto il cofano per controllare l'olio.", + "example_sentence_english": "I opened the hood to check the oil.", + "pos": "noun", + "word_frequency": 10831 + }, + { + "word": "collisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collision", + "romanization": "collisione", + "example_sentence_native": "C'è stata una collisione tra due auto.", + "example_sentence_english": "There was a collision between two cars.", + "pos": "noun", + "word_frequency": 10833 + }, + { + "word": "commercialista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accountant;chartered accountant", + "romanization": "commercialista", + "example_sentence_native": "Devo consultare il mio commercialista per le tasse.", + "example_sentence_english": "I need to consult my accountant for taxes.", + "pos": "noun", + "word_frequency": 10834 + }, + { + "word": "comparto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sector;compartment", + "romanization": "comparto", + "example_sentence_native": "Il comparto tecnologico è in forte crescita.", + "example_sentence_english": "The technology sector is growing rapidly.", + "pos": "noun", + "word_frequency": 10836 + }, + { + "word": "conciliazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conciliation;reconciliation", + "romanization": "conciliazione", + "example_sentence_native": "Hanno tentato una conciliazione prima di andare in tribunale.", + "example_sentence_english": "They attempted conciliation before going to court.", + "pos": "noun", + "word_frequency": 10837 + }, + { + "word": "controllore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controller;inspector", + "romanization": "controllore", + "example_sentence_native": "Il controllore ha chiesto di vedere il mio biglietto.", + "example_sentence_english": "The inspector asked to see my ticket.", + "pos": "noun", + "word_frequency": 10838 + }, + { + "word": "corale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choral;collective;unanimous", + "romanization": "corale", + "example_sentence_native": "La performance corale è stata eccezionale.", + "example_sentence_english": "The choral performance was exceptional.", + "pos": "adjective", + "word_frequency": 10839 + }, + { + "word": "cordoglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condolence;grief", + "romanization": "cordoglio", + "example_sentence_native": "Esprimo il mio più sincero cordoglio per la vostra perdita.", + "example_sentence_english": "I express my deepest condolences for your loss.", + "pos": "noun", + "word_frequency": 10840 + }, + { + "word": "cosmico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cosmic", + "romanization": "cosmico", + "example_sentence_native": "L'universo è un luogo di dimensioni cosmiche.", + "example_sentence_english": "The universe is a place of cosmic dimensions.", + "pos": "adjective", + "word_frequency": 10841 + }, + { + "word": "crusca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bran", + "romanization": "crusca", + "example_sentence_native": "La crusca d'avena è ricca di fibre.", + "example_sentence_english": "Oat bran is rich in fiber.", + "pos": "noun", + "word_frequency": 10842 + }, + { + "word": "deliberare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliberate;to decide", + "romanization": "deliberare", + "example_sentence_native": "Il consiglio si riunirà per deliberare sulla proposta.", + "example_sentence_english": "The council will meet to deliberate on the proposal.", + "pos": "verb", + "word_frequency": 10843 + }, + { + "word": "diplomare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to graduate (high school)", + "romanization": "diplomare", + "example_sentence_native": "Si è diplomato al liceo l'anno scorso.", + "example_sentence_english": "He graduated from high school last year.", + "pos": "verb", + "word_frequency": 10846 + }, + { + "word": "disinteresse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinterest;lack of interest", + "romanization": "disinteresse", + "example_sentence_native": "Il suo disinteresse per lo studio era evidente.", + "example_sentence_english": "His disinterest in studying was evident.", + "pos": "noun", + "word_frequency": 10847 + }, + { + "word": "diva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diva", + "romanization": "diva", + "example_sentence_native": "La cantante era una vera diva sul palco.", + "example_sentence_english": "The singer was a true diva on stage.", + "pos": "noun", + "word_frequency": 10848 + }, + { + "word": "doge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doge", + "romanization": "doge", + "example_sentence_native": "Il Doge era il capo di stato della Repubblica di Venezia.", + "example_sentence_english": "The Doge was the head of state of the Republic of Venice.", + "pos": "noun", + "word_frequency": 10849 + }, + { + "word": "edile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "building;construction (adj.)", + "romanization": "edile", + "example_sentence_native": "L'azienda opera nel settore edile.", + "example_sentence_english": "The company operates in the construction sector.", + "pos": "adjective", + "word_frequency": 10852 + }, + { + "word": "editoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publishing (industry)", + "romanization": "editoria", + "example_sentence_native": "Il settore dell'editoria sta affrontando nuove sfide.", + "example_sentence_english": "The publishing sector is facing new challenges.", + "pos": "noun", + "word_frequency": 10853 + }, + { + "word": "enigma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enigma;puzzle", + "romanization": "enigma", + "example_sentence_native": "La sua scomparsa rimane un enigma.", + "example_sentence_english": "His disappearance remains an enigma.", + "pos": "noun", + "word_frequency": 10856 + }, + { + "word": "esibire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exhibit;to display;to show", + "romanization": "esibire", + "example_sentence_native": "L'artista esibirà le sue opere in galleria.", + "example_sentence_english": "The artist will exhibit his works in the gallery.", + "pos": "verb", + "word_frequency": 10858 + }, + { + "word": "eufemismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "euphemism", + "romanization": "eufemismo", + "example_sentence_native": "\"Passare a miglior vita\" è un eufemismo per \"morire\".", + "example_sentence_english": "\"To pass to a better life\" is a euphemism for \"to die\".", + "pos": "noun", + "word_frequency": 10859 + }, + { + "word": "eventualità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eventuality;possibility", + "romanization": "eventualità", + "example_sentence_native": "Dobbiamo essere preparati per ogni eventualità.", + "example_sentence_english": "We must be prepared for every eventuality.", + "pos": "noun", + "word_frequency": 10860 + }, + { + "word": "evolvere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evolve", + "romanization": "evolvere", + "example_sentence_native": "Le specie si evolvono nel corso di milioni di anni.", + "example_sentence_english": "Species evolve over millions of years.", + "pos": "verb", + "word_frequency": 10861 + }, + { + "word": "fermezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmness;steadfastness", + "romanization": "fermezza", + "example_sentence_native": "Ha risposto con grande fermezza alle accuse.", + "example_sentence_english": "He responded with great firmness to the accusations.", + "pos": "noun", + "word_frequency": 10862 + }, + { + "word": "firewall", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firewall", + "romanization": "firewall", + "example_sentence_native": "Il firewall protegge il computer da accessi non autorizzati.", + "example_sentence_english": "The firewall protects the computer from unauthorized access.", + "pos": "noun", + "word_frequency": 10863 + }, + { + "word": "formalità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "formality", + "romanization": "formalità", + "example_sentence_native": "Dobbiamo sbrigare alcune formalità burocratiche.", + "example_sentence_english": "We need to take care of some bureaucratic formalities.", + "pos": "noun", + "word_frequency": 10866 + }, + { + "word": "fraintendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to misunderstand", + "romanization": "fraintendere", + "example_sentence_native": "Temo di aver frainteso le tue intenzioni.", + "example_sentence_english": "I'm afraid I misunderstood your intentions.", + "pos": "verb", + "word_frequency": 10867 + }, + { + "word": "frizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clutch;friction", + "romanization": "frizione", + "example_sentence_native": "La frizione dell'auto è usurata.", + "example_sentence_english": "The car's clutch is worn out.", + "pos": "noun", + "word_frequency": 10869 + }, + { + "word": "giardinaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gardening", + "romanization": "giardinaggio", + "example_sentence_native": "Il giardinaggio è il suo hobby preferito.", + "example_sentence_english": "Gardening is his favorite hobby.", + "pos": "noun", + "word_frequency": 10871 + }, + { + "word": "giustiziare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to execute (as in capital punishment)", + "romanization": "giustiziare", + "example_sentence_native": "Il re ordinò di giustiziare il traditore.", + "example_sentence_english": "The king ordered the traitor to be executed.", + "pos": "verb", + "word_frequency": 10873 + }, + { + "word": "gorilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gorilla", + "romanization": "gorilla", + "example_sentence_native": "Il gorilla è il più grande dei primati.", + "example_sentence_english": "The gorilla is the largest of the primates.", + "pos": "noun", + "word_frequency": 10874 + }, + { + "word": "gruppetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small group", + "romanization": "gruppetto", + "example_sentence_native": "Un gruppetto di amici si è riunito al bar.", + "example_sentence_english": "A small group of friends gathered at the bar.", + "pos": "noun", + "word_frequency": 10875 + }, + { + "word": "gustare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to taste;to enjoy", + "romanization": "gustare", + "example_sentence_native": "Mi piace gustare un buon caffè al mattino.", + "example_sentence_english": "I like to enjoy a good coffee in the morning.", + "pos": "verb", + "word_frequency": 10876 + }, + { + "word": "handicap", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handicap;disability", + "romanization": "handicap", + "example_sentence_native": "La mancanza di esperienza è un handicap per questo lavoro.", + "example_sentence_english": "Lack of experience is a handicap for this job.", + "pos": "noun", + "word_frequency": 10877 + }, + { + "word": "idoneità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitability;eligibility;fitness", + "romanization": "idoneità", + "example_sentence_native": "Ha superato l'esame di idoneità per la patente.", + "example_sentence_english": "He passed the eligibility test for the driving license.", + "pos": "noun", + "word_frequency": 10879 + }, + { + "word": "incominciare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to begin;to start", + "romanization": "incominciare", + "example_sentence_native": "Dobbiamo incominciare il lavoro presto.", + "example_sentence_english": "We must begin the work early.", + "pos": "verb", + "word_frequency": 10880 + }, + { + "word": "influire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to influence;to affect", + "romanization": "influire", + "example_sentence_native": "Le sue decisioni possono influire sul futuro dell'azienda.", + "example_sentence_english": "His decisions can influence the future of the company.", + "pos": "verb", + "word_frequency": 10881 + }, + { + "word": "ingaggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hire;to engage;to enlist", + "romanization": "ingaggiare", + "example_sentence_native": "Hanno deciso di ingaggiare un nuovo consulente.", + "example_sentence_english": "They decided to hire a new consultant.", + "pos": "verb", + "word_frequency": 10882 + }, + { + "word": "ingaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "engagement;fee;salary", + "romanization": "ingaggio", + "example_sentence_native": "Il suo ingaggio annuale è molto alto.", + "example_sentence_english": "His annual salary is very high.", + "pos": "noun", + "word_frequency": 10883 + }, + { + "word": "intenzionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentionally;deliberately", + "romanization": "intenzionalmente", + "example_sentence_native": "Ha rotto il vaso intenzionalmente.", + "example_sentence_english": "He intentionally broke the vase.", + "pos": "adverb", + "word_frequency": 10884 + }, + { + "word": "intercettare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intercept;to tap", + "romanization": "intercettare", + "example_sentence_native": "La polizia è riuscita a intercettare la chiamata.", + "example_sentence_english": "The police managed to intercept the call.", + "pos": "verb", + "word_frequency": 10885 + }, + { + "word": "invocare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to invoke;to call upon", + "romanization": "invocare", + "example_sentence_native": "Hanno invocato l'aiuto divino.", + "example_sentence_english": "They invoked divine help.", + "pos": "verb", + "word_frequency": 10886 + }, + { + "word": "ipotetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypothetical", + "romanization": "ipotetico", + "example_sentence_native": "È solo uno scenario ipotetico.", + "example_sentence_english": "It's just a hypothetical scenario.", + "pos": "adjective", + "word_frequency": 10887 + }, + { + "word": "irritante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritating;annoying", + "romanization": "irritante", + "example_sentence_native": "Il suo comportamento è davvero irritante.", + "example_sentence_english": "His behavior is really irritating.", + "pos": "adjective", + "word_frequency": 10888 + }, + { + "word": "laptop", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laptop", + "romanization": "laptop", + "example_sentence_native": "Ho comprato un nuovo laptop per il lavoro.", + "example_sentence_english": "I bought a new laptop for work.", + "pos": "noun", + "word_frequency": 10891 + }, + { + "word": "laziale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Lazio;pertaining to Lazio", + "romanization": "laziale", + "example_sentence_native": "La cucina laziale è molto ricca.", + "example_sentence_english": "Lazio cuisine is very rich.", + "pos": "adjective", + "word_frequency": 10892 + }, + { + "word": "macellaio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher", + "romanization": "macellaio", + "example_sentence_native": "Vado dal macellaio a comprare la carne.", + "example_sentence_english": "I'm going to the butcher to buy meat.", + "pos": "noun", + "word_frequency": 10893 + }, + { + "word": "maiuscola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "uppercase;capital (letter)", + "romanization": "maiuscola", + "example_sentence_native": "Inizia ogni frase con una lettera maiuscola.", + "example_sentence_english": "Start every sentence with a capital letter.", + "pos": "adjective", + "word_frequency": 10894 + }, + { + "word": "mango", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mango", + "romanization": "mango", + "example_sentence_native": "Mi piace molto il succo di mango.", + "example_sentence_english": "I really like mango juice.", + "pos": "noun", + "word_frequency": 10895 + }, + { + "word": "menare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beat;to hit;to lead", + "romanization": "menare", + "example_sentence_native": "Non si deve menare le mani.", + "example_sentence_english": "One should not resort to violence.", + "pos": "verb", + "word_frequency": 10898 + }, + { + "word": "minorile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "juvenile;minor (adj.)", + "romanization": "minorile", + "example_sentence_native": "Hanno aperto un centro di giustizia minorile.", + "example_sentence_english": "They opened a juvenile justice center.", + "pos": "adjective", + "word_frequency": 10899 + }, + { + "word": "mollo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft;soggy;wet (colloquial)", + "romanization": "mollo", + "example_sentence_native": "Il pane è diventato mollo.", + "example_sentence_english": "The bread has become soggy.", + "pos": "adjective", + "word_frequency": 10901 + }, + { + "word": "mono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mono-;single", + "romanization": "mono", + "example_sentence_native": "Questo è un sistema mono-canale.", + "example_sentence_english": "This is a single-channel system.", + "pos": "adjective", + "word_frequency": 10902 + }, + { + "word": "networking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "networking", + "romanization": "networking", + "example_sentence_native": "Il networking è fondamentale per trovare nuove opportunità.", + "example_sentence_english": "Networking is essential for finding new opportunities.", + "pos": "noun", + "word_frequency": 10905 + }, + { + "word": "obbedire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to obey", + "romanization": "obbedire", + "example_sentence_native": "I bambini devono obbedire ai genitori.", + "example_sentence_english": "Children must obey their parents.", + "pos": "verb", + "word_frequency": 10906 + }, + { + "word": "obbligatoriamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obligatorily;compulsorily", + "romanization": "obbligatoriamente", + "example_sentence_native": "Devi presentare il documento obbligatoriamente.", + "example_sentence_english": "You must present the document obligatorily.", + "pos": "adverb", + "word_frequency": 10907 + }, + { + "word": "oltraggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outrage;insult;affront", + "romanization": "oltraggio", + "example_sentence_native": "Le sue parole sono state un oltraggio.", + "example_sentence_english": "His words were an outrage.", + "pos": "noun", + "word_frequency": 10908 + }, + { + "word": "oltranza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extreme;beyond limits (in 'ad oltranza')", + "romanization": "oltranza", + "example_sentence_native": "Hanno lottato ad oltranza.", + "example_sentence_english": "They fought to the bitter end.", + "pos": "noun", + "word_frequency": 10909 + }, + { + "word": "pagliaccio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clown", + "romanization": "pagliaccio", + "example_sentence_native": "Il pagliaccio ha fatto ridere tutti i bambini.", + "example_sentence_english": "The clown made all the children laugh.", + "pos": "noun", + "word_frequency": 10910 + }, + { + "word": "palato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palate;roof of the mouth", + "romanization": "palato", + "example_sentence_native": "Questo vino ha un buon palato.", + "example_sentence_english": "This wine has a good palate.", + "pos": "noun", + "word_frequency": 10911 + }, + { + "word": "pallacanestro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "romanization": "pallacanestro", + "example_sentence_native": "Mi piace giocare a pallacanestro.", + "example_sentence_english": "I like to play basketball.", + "pos": "noun", + "word_frequency": 10912 + }, + { + "word": "panca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bench", + "romanization": "panca", + "example_sentence_native": "Ci siamo seduti su una panca nel parco.", + "example_sentence_english": "We sat on a bench in the park.", + "pos": "noun", + "word_frequency": 10913 + }, + { + "word": "pappagallo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parrot", + "romanization": "pappagallo", + "example_sentence_native": "Il mio pappagallo sa dire alcune parole.", + "example_sentence_english": "My parrot can say a few words.", + "pos": "noun", + "word_frequency": 10914 + }, + { + "word": "parentela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kinship;relationship (by blood or marriage)", + "romanization": "parentela", + "example_sentence_native": "Abbiamo una stretta parentela con quella famiglia.", + "example_sentence_english": "We have a close kinship with that family.", + "pos": "noun", + "word_frequency": 10916 + }, + { + "word": "patch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patch (software;medical)", + "romanization": "patch", + "example_sentence_native": "Devi installare l'ultima patch di sicurezza.", + "example_sentence_english": "You need to install the latest security patch.", + "pos": "noun", + "word_frequency": 10917 + }, + { + "word": "patriarcato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarchy", + "romanization": "patriarcato", + "example_sentence_native": "Molti studi analizzano il concetto di patriarcato.", + "example_sentence_english": "Many studies analyze the concept of patriarchy.", + "pos": "noun", + "word_frequency": 10918 + }, + { + "word": "pedagogia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedagogy", + "romanization": "pedagogia", + "example_sentence_native": "Ha studiato pedagogia all'università.", + "example_sentence_english": "She studied pedagogy at university.", + "pos": "noun", + "word_frequency": 10919 + }, + { + "word": "perquisizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "search;frisk", + "romanization": "perquisizione", + "example_sentence_native": "La polizia ha effettuato una perquisizione nell'appartamento.", + "example_sentence_english": "The police carried out a search of the apartment.", + "pos": "noun", + "word_frequency": 10920 + }, + { + "word": "prefisso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prefix;area code", + "romanization": "prefisso", + "example_sentence_native": "Qual è il prefisso telefonico di Roma?", + "example_sentence_english": "What is the area code for Rome?", + "pos": "noun", + "word_frequency": 10923 + }, + { + "word": "preposto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "person in charge;supervisor", + "romanization": "preposto", + "example_sentence_native": "Il preposto alla sicurezza ha ispezionato il cantiere.", + "example_sentence_english": "The safety supervisor inspected the construction site.", + "pos": "noun", + "word_frequency": 10924 + }, + { + "word": "privatizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "privatization", + "romanization": "privatizzazione", + "example_sentence_native": "La privatizzazione delle aziende statali è un tema controverso.", + "example_sentence_english": "The privatization of state-owned companies is a controversial topic.", + "pos": "noun", + "word_frequency": 10925 + }, + { + "word": "quant'altro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whatever else;anything else", + "romanization": "quant'altro", + "example_sentence_native": "Abbiamo discusso del progetto, del budget e di quant'altro fosse necessario.", + "example_sentence_english": "We discussed the project, the budget, and whatever else was necessary.", + "pos": "adverb", + "word_frequency": 10926 + }, + { + "word": "rallentamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slowdown;deceleration", + "romanization": "rallentamento", + "example_sentence_native": "C'è stato un rallentamento del traffico a causa dell'incidente.", + "example_sentence_english": "There was a slowdown in traffic due to the accident.", + "pos": "noun", + "word_frequency": 10927 + }, + { + "word": "rampa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ramp;flight (of stairs)", + "romanization": "rampa", + "example_sentence_native": "La sedia a rotelle ha bisogno di una rampa per accedere all'edificio.", + "example_sentence_english": "The wheelchair needs a ramp to access the building.", + "pos": "noun", + "word_frequency": 10928 + }, + { + "word": "ranch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ranch", + "romanization": "ranch", + "example_sentence_native": "Hanno comprato un grande ranch in Texas.", + "example_sentence_english": "They bought a large ranch in Texas.", + "pos": "noun", + "word_frequency": 10929 + }, + { + "word": "rapire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to kidnap;to abduct", + "romanization": "rapire", + "example_sentence_native": "La polizia sta cercando di capire chi ha rapito il bambino.", + "example_sentence_english": "The police are trying to figure out who kidnapped the child.", + "pos": "verb", + "word_frequency": 10930 + }, + { + "word": "rea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "guilty;culpable (feminine)", + "romanization": "rea", + "example_sentence_native": "La donna è stata dichiarata rea di furto.", + "example_sentence_english": "The woman was declared guilty of theft.", + "pos": "adjective", + "word_frequency": 10932 + }, + { + "word": "riavere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get back;to have again", + "romanization": "riavere", + "example_sentence_native": "Spero di riavere i miei soldi presto.", + "example_sentence_english": "I hope to get my money back soon.", + "pos": "verb", + "word_frequency": 10935 + }, + { + "word": "ricadere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fall back;to relapse;to fall upon", + "romanization": "ricadere", + "example_sentence_native": "Dopo un periodo di miglioramento, è ricaduto nella malattia.", + "example_sentence_english": "After a period of improvement, he relapsed into illness.", + "pos": "verb", + "word_frequency": 10936 + }, + { + "word": "riconquistare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconquer;to win back", + "romanization": "riconquistare", + "example_sentence_native": "L'esercito ha cercato di riconquistare il territorio perduto.", + "example_sentence_english": "The army tried to reconquer the lost territory.", + "pos": "verb", + "word_frequency": 10937 + }, + { + "word": "rigenerazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regeneration", + "romanization": "rigenerazione", + "example_sentence_native": "La rigenerazione urbana è un processo importante per le città.", + "example_sentence_english": "Urban regeneration is an important process for cities.", + "pos": "noun", + "word_frequency": 10938 + }, + { + "word": "rinascimentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Renaissance (adj.)", + "romanization": "rinascimentale", + "example_sentence_native": "Firenze è famosa per la sua arte rinascimentale.", + "example_sentence_english": "Florence is famous for its Renaissance art.", + "pos": "adjective", + "word_frequency": 10939 + }, + { + "word": "rione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district;quarter (of a city)", + "romanization": "rione", + "example_sentence_native": "Ogni rione di Roma ha la sua storia e le sue tradizioni.", + "example_sentence_english": "Every district of Rome has its own history and traditions.", + "pos": "noun", + "word_frequency": 10940 + }, + { + "word": "ristampa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reprint;re-edition", + "romanization": "ristampa", + "example_sentence_native": "Il libro è andato esaurito e ne hanno annunciato una ristampa.", + "example_sentence_english": "The book sold out and a reprint was announced.", + "pos": "noun", + "word_frequency": 10941 + }, + { + "word": "risultante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resulting;consequent", + "romanization": "risultante", + "example_sentence_native": "La situazione risultante è stata molto complessa.", + "example_sentence_english": "The resulting situation was very complex.", + "pos": "adjective", + "word_frequency": 10942 + }, + { + "word": "ritornello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chorus;refrain", + "romanization": "ritornello", + "example_sentence_native": "Il ritornello di questa canzone è molto orecchiabile.", + "example_sentence_english": "The chorus of this song is very catchy.", + "pos": "noun", + "word_frequency": 10943 + }, + { + "word": "rover", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rover (vehicle)", + "romanization": "rover", + "example_sentence_native": "Il rover ha inviato nuove immagini da Marte.", + "example_sentence_english": "The rover sent new images from Mars.", + "pos": "noun", + "word_frequency": 10944 + }, + { + "word": "sbocco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outlet;vent;career opportunity", + "romanization": "sbocco", + "example_sentence_native": "Questo corso di studi offre buoni sbocchi professionali.", + "example_sentence_english": "This course of study offers good career opportunities.", + "pos": "noun", + "word_frequency": 10946 + }, + { + "word": "scanner", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scanner", + "romanization": "scanner", + "example_sentence_native": "Ho usato lo scanner per digitalizzare il documento.", + "example_sentence_english": "I used the scanner to digitize the document.", + "pos": "noun", + "word_frequency": 10947 + }, + { + "word": "scontrino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receipt", + "romanization": "scontrino", + "example_sentence_native": "Non dimenticare di chiedere lo scontrino.", + "example_sentence_english": "Don't forget to ask for the receipt.", + "pos": "noun", + "word_frequency": 10948 + }, + { + "word": "seduzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seduction;allure", + "romanization": "seduzione", + "example_sentence_native": "Il film esplora il tema della seduzione e del potere.", + "example_sentence_english": "The film explores the theme of seduction and power.", + "pos": "noun", + "word_frequency": 10949 + }, + { + "word": "sembianza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semblance;appearance", + "romanization": "sembianza", + "example_sentence_native": "Mantiene una sembianza di normalità nonostante le difficoltà.", + "example_sentence_english": "He maintains a semblance of normality despite the difficulties.", + "pos": "noun", + "word_frequency": 10950 + }, + { + "word": "senatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senator (female)", + "romanization": "senatrice", + "example_sentence_native": "La senatrice ha presentato una nuova proposta di legge.", + "example_sentence_english": "The senator presented a new bill.", + "pos": "noun", + "word_frequency": 10951 + }, + { + "word": "snob", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snob", + "romanization": "snob", + "example_sentence_native": "Non mi piace il suo atteggiamento da snob.", + "example_sentence_english": "I don't like his snob attitude.", + "pos": "noun", + "word_frequency": 10953 + }, + { + "word": "soppresso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suppressed;abolished;discontinued", + "romanization": "soppresso", + "example_sentence_native": "Il servizio ferroviario è stato soppresso a causa della neve.", + "example_sentence_english": "The train service was discontinued due to snow.", + "pos": "adjective", + "word_frequency": 10954 + }, + { + "word": "sorellina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little sister", + "romanization": "sorellina", + "example_sentence_native": "La mia sorellina ha appena imparato a camminare.", + "example_sentence_english": "My little sister just learned to walk.", + "pos": "noun", + "word_frequency": 10955 + }, + { + "word": "sottomarino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "submarine", + "romanization": "sottomarino", + "example_sentence_native": "Il sottomarino è emerso in superficie.", + "example_sentence_english": "The submarine surfaced.", + "pos": "noun", + "word_frequency": 10956 + }, + { + "word": "strike", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strike (bowling;baseball;industrial action)", + "romanization": "strike", + "example_sentence_native": "Ha fatto uno strike al primo lancio.", + "example_sentence_english": "He got a strike on the first throw.", + "pos": "noun", + "word_frequency": 10958 + }, + { + "word": "tax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tax", + "romanization": "tax", + "example_sentence_native": "Il prezzo include la tax.", + "example_sentence_english": "The price includes the tax.", + "pos": "noun", + "word_frequency": 10959 + }, + { + "word": "trave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beam;girder", + "romanization": "trave", + "example_sentence_native": "La trave di legno sostiene il tetto.", + "example_sentence_english": "The wooden beam supports the roof.", + "pos": "noun", + "word_frequency": 10960 + }, + { + "word": "tuffo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dive;plunge", + "romanization": "tuffo", + "example_sentence_native": "Ha fatto un bel tuffo in piscina.", + "example_sentence_english": "He made a nice dive into the pool.", + "pos": "noun", + "word_frequency": 10962 + }, + { + "word": "ultras", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultras (fanatics;often in sports)", + "romanization": "ultras", + "example_sentence_native": "Gli ultras hanno sostenuto la squadra con passione.", + "example_sentence_english": "The ultras supported the team with passion.", + "pos": "noun", + "word_frequency": 10963 + }, + { + "word": "umanitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanitarian", + "romanization": "umanitario", + "example_sentence_native": "L'organizzazione svolge un importante lavoro umanitario.", + "example_sentence_english": "The organization carries out important humanitarian work.", + "pos": "adjective", + "word_frequency": 10964 + }, + { + "word": "uranio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uranium", + "romanization": "uranio", + "example_sentence_native": "L'uranio è un elemento chimico radioattivo.", + "example_sentence_english": "Uranium is a radioactive chemical element.", + "pos": "noun", + "word_frequency": 10965 + }, + { + "word": "ventidue", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-two", + "romanization": "ventidue", + "example_sentence_native": "Ho ventidue anni.", + "example_sentence_english": "I am twenty-two years old.", + "pos": "adjective", + "word_frequency": 10967 + }, + { + "word": "verginità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "virginity", + "romanization": "verginità", + "example_sentence_native": "Il concetto di verginità ha significati diversi nelle culture.", + "example_sentence_english": "The concept of virginity has different meanings across cultures.", + "pos": "noun", + "word_frequency": 10968 + }, + { + "word": "vizioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vicious;depraved;faulty", + "romanization": "vizioso", + "example_sentence_native": "Ha un circolo vizioso di abitudini.", + "example_sentence_english": "He has a vicious cycle of habits.", + "pos": "adjective", + "word_frequency": 10969 + }, + { + "word": "votato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "devoted;dedicated;voted", + "romanization": "votato", + "example_sentence_native": "È un politico votato al servizio pubblico.", + "example_sentence_english": "He is a politician devoted to public service.", + "pos": "adjective", + "word_frequency": 10970 + }, + { + "word": "accessibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accessibility", + "romanization": "accessibilità", + "example_sentence_native": "L'accessibilità è fondamentale per tutti.", + "example_sentence_english": "Accessibility is fundamental for everyone.", + "pos": "noun", + "word_frequency": 10978 + }, + { + "word": "accorrere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rush;to hurry to", + "romanization": "accorrere", + "example_sentence_native": "Sono dovuto accorrere in aiuto.", + "example_sentence_english": "I had to rush to help.", + "pos": "verb", + "word_frequency": 10979 + }, + { + "word": "accuratezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accuracy;precision", + "romanization": "accuratezza", + "example_sentence_native": "La sua accuratezza nel lavoro è notevole.", + "example_sentence_english": "His accuracy in work is remarkable.", + "pos": "noun", + "word_frequency": 10980 + }, + { + "word": "affezionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affectionate;fond;attached", + "romanization": "affezionato", + "example_sentence_native": "Sono molto affezionato ai miei nipoti.", + "example_sentence_english": "I am very fond of my grandchildren.", + "pos": "adjective", + "word_frequency": 10981 + }, + { + "word": "affido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foster care;custody (of a child)", + "romanization": "affido", + "example_sentence_native": "Il bambino è stato dato in affido a una nuova famiglia.", + "example_sentence_english": "The child was placed in foster care with a new family.", + "pos": "noun", + "word_frequency": 10982 + }, + { + "word": "affronto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affront;insult;challenge", + "romanization": "affronto", + "example_sentence_native": "Ha considerato le sue parole un affronto personale.", + "example_sentence_english": "He considered her words a personal affront.", + "pos": "noun", + "word_frequency": 10983 + }, + { + "word": "allungare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lengthen;to stretch;to extend", + "romanization": "allungare", + "example_sentence_native": "Devi allungare le gambe dopo l'esercizio.", + "example_sentence_english": "You need to stretch your legs after exercise.", + "pos": "verb", + "word_frequency": 10986 + }, + { + "word": "ambedue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "both", + "romanization": "ambedue", + "example_sentence_native": "Ambedue le opzioni sono valide.", + "example_sentence_english": "Both options are valid.", + "pos": "adjective", + "word_frequency": 10988 + }, + { + "word": "amministrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to administer;to manage", + "romanization": "amministrare", + "example_sentence_native": "Deve amministrare bene le sue finanze.", + "example_sentence_english": "He must manage his finances well.", + "pos": "verb", + "word_frequency": 10990 + }, + { + "word": "ano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anus", + "romanization": "ano", + "example_sentence_native": "L'ano è l'apertura terminale del tratto digestivo.", + "example_sentence_english": "The anus is the terminal opening of the digestive tract.", + "pos": "noun", + "word_frequency": 10991 + }, + { + "word": "apologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apology;defense (of an idea;doctrine)", + "romanization": "apologia", + "example_sentence_native": "Ha scritto un'apologia della sua filosofia.", + "example_sentence_english": "He wrote an apology for his philosophy.", + "pos": "noun", + "word_frequency": 10992 + }, + { + "word": "appeal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appeal;charm;attractiveness", + "romanization": "appeal", + "example_sentence_native": "Il suo nuovo film ha un grande appeal sul pubblico.", + "example_sentence_english": "His new film has great appeal to the public.", + "pos": "noun", + "word_frequency": 10993 + }, + { + "word": "ardente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ardent;burning;passionate", + "romanization": "ardente", + "example_sentence_native": "Ha un desiderio ardente di successo.", + "example_sentence_english": "He has an ardent desire for success.", + "pos": "adjective", + "word_frequency": 10994 + }, + { + "word": "ariete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ram;battering ram;Aries", + "romanization": "ariete", + "example_sentence_native": "Il segno zodiacale dell'Ariete è il primo.", + "example_sentence_english": "The zodiac sign of Aries is the first.", + "pos": "noun", + "word_frequency": 10995 + }, + { + "word": "atlante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atlas (book of maps);atlas (first cervical vertebra)", + "romanization": "atlante", + "example_sentence_native": "Ho consultato l'atlante per trovare la città.", + "example_sentence_english": "I consulted the atlas to find the city.", + "pos": "noun", + "word_frequency": 10997 + }, + { + "word": "atteso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "awaited;expected;anticipated", + "romanization": "atteso", + "example_sentence_native": "L'evento tanto atteso è finalmente arrivato.", + "example_sentence_english": "The long-awaited event has finally arrived.", + "pos": "adjective", + "word_frequency": 10998 + }, + { + "word": "avvolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrapped;enveloped;coiled", + "romanization": "avvolto", + "example_sentence_native": "Era avvolto in una coperta calda.", + "example_sentence_english": "He was wrapped in a warm blanket.", + "pos": "adjective", + "word_frequency": 10999 + }, + { + "word": "battezzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to baptize", + "romanization": "battezzare", + "example_sentence_native": "Hanno deciso di battezzare il loro figlio la prossima primavera.", + "example_sentence_english": "They decided to baptize their son next spring.", + "pos": "verb", + "word_frequency": 11000 + }, + { + "word": "benefico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beneficial", + "romanization": "benefico", + "example_sentence_native": "L'esercizio fisico ha un effetto benefico sulla salute.", + "example_sentence_english": "Physical exercise has a beneficial effect on health.", + "pos": "adjective", + "word_frequency": 11004 + }, + { + "word": "bingo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bingo", + "romanization": "bingo", + "example_sentence_native": "Abbiamo giocato a bingo ieri sera.", + "example_sentence_english": "We played bingo last night.", + "pos": "noun", + "word_frequency": 11006 + }, + { + "word": "breccia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "breach;gap", + "romanization": "breccia", + "example_sentence_native": "Hanno aperto una breccia nel muro.", + "example_sentence_english": "They opened a breach in the wall.", + "pos": "noun", + "word_frequency": 11008 + }, + { + "word": "cagnolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "puppy;little dog", + "romanization": "cagnolino", + "example_sentence_native": "Il cagnolino giocava nel giardino.", + "example_sentence_english": "The puppy was playing in the garden.", + "pos": "noun", + "word_frequency": 11009 + }, + { + "word": "carreggiata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roadway;carriageway", + "romanization": "carreggiata", + "example_sentence_native": "La macchina ha sbandato ed è finita fuori dalla carreggiata.", + "example_sentence_english": "The car skidded and went off the roadway.", + "pos": "noun", + "word_frequency": 11010 + }, + { + "word": "centrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to center;to hit the target", + "romanization": "centrare", + "example_sentence_native": "Ha centrato il bersaglio con la freccia.", + "example_sentence_english": "He hit the target with the arrow.", + "pos": "verb", + "word_frequency": 11013 + }, + { + "word": "cinquantina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "about fifty;a group of fifty", + "romanization": "cinquantina", + "example_sentence_native": "C'era una cinquantina di persone alla festa.", + "example_sentence_english": "There were about fifty people at the party.", + "pos": "noun", + "word_frequency": 11014 + }, + { + "word": "cinquemila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "five thousand", + "romanization": "cinquemila", + "example_sentence_native": "Il prezzo è di cinquemila euro.", + "example_sentence_english": "The price is five thousand euros.", + "pos": "adjective", + "word_frequency": 11015 + }, + { + "word": "colera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cholera", + "romanization": "colera", + "example_sentence_native": "Il colera è una malattia grave.", + "example_sentence_english": "Cholera is a serious disease.", + "pos": "noun", + "word_frequency": 11016 + }, + { + "word": "compressa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tablet;pill", + "romanization": "compressa", + "example_sentence_native": "Prendi una compressa ogni otto ore.", + "example_sentence_english": "Take one tablet every eight hours.", + "pos": "noun", + "word_frequency": 11017 + }, + { + "word": "conca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basin;hollow", + "romanization": "conca", + "example_sentence_native": "La città si trova in una conca naturale.", + "example_sentence_english": "The city is located in a natural basin.", + "pos": "noun", + "word_frequency": 11018 + }, + { + "word": "concernente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concerning;regarding", + "romanization": "concernente", + "example_sentence_native": "Abbiamo discusso le questioni concernenti il progetto.", + "example_sentence_english": "We discussed the issues concerning the project.", + "pos": "adjective", + "word_frequency": 11019 + }, + { + "word": "conciliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconcile;to conciliate", + "romanization": "conciliare", + "example_sentence_native": "È difficile conciliare lavoro e vita privata.", + "example_sentence_english": "It's difficult to reconcile work and private life.", + "pos": "verb", + "word_frequency": 11020 + }, + { + "word": "consacrare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to consecrate;to dedicate", + "romanization": "consacrare", + "example_sentence_native": "La chiesa è stata consacrata l'anno scorso.", + "example_sentence_english": "The church was consecrated last year.", + "pos": "verb", + "word_frequency": 11021 + }, + { + "word": "corporeo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corporeal;bodily", + "romanization": "corporeo", + "example_sentence_native": "La salute corporea è fondamentale per il benessere generale.", + "example_sentence_english": "Bodily health is fundamental for general well-being.", + "pos": "adjective", + "word_frequency": 11023 + }, + { + "word": "corvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crow;raven", + "romanization": "corvo", + "example_sentence_native": "Un corvo era posato sul ramo dell'albero.", + "example_sentence_english": "A crow was perched on the tree branch.", + "pos": "noun", + "word_frequency": 11024 + }, + { + "word": "cowboy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cowboy", + "romanization": "cowboy", + "example_sentence_native": "Il film parlava di un vecchio cowboy.", + "example_sentence_english": "The movie was about an old cowboy.", + "pos": "noun", + "word_frequency": 11025 + }, + { + "word": "denotare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to denote;to indicate", + "romanization": "denotare", + "example_sentence_native": "Il simbolo denota un pericolo.", + "example_sentence_english": "The symbol denotes a danger.", + "pos": "verb", + "word_frequency": 11027 + }, + { + "word": "device", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "device", + "romanization": "device", + "example_sentence_native": "Questo nuovo device è molto utile.", + "example_sentence_english": "This new device is very useful.", + "pos": "noun", + "word_frequency": 11028 + }, + { + "word": "disparte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aside;apart (as in 'in disparte')", + "romanization": "disparte", + "example_sentence_native": "Si è messo in disparte per osservare.", + "example_sentence_english": "He stood aside to observe.", + "pos": "noun", + "word_frequency": 11029 + }, + { + "word": "divulgare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disclose;to divulge;to spread", + "romanization": "divulgare", + "example_sentence_native": "Non dovresti divulgare informazioni personali.", + "example_sentence_english": "You shouldn't disclose personal information.", + "pos": "verb", + "word_frequency": 11030 + }, + { + "word": "dogma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dogma", + "romanization": "dogma", + "example_sentence_native": "Non accetta nessun dogma senza discuterlo.", + "example_sentence_english": "He doesn't accept any dogma without discussing it.", + "pos": "noun", + "word_frequency": 11031 + }, + { + "word": "esploso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploded;burst", + "romanization": "esploso", + "example_sentence_native": "Il pallone era esploso.", + "example_sentence_english": "The balloon had burst.", + "pos": "adjective", + "word_frequency": 11035 + }, + { + "word": "fattibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasible;doable", + "romanization": "fattibile", + "example_sentence_native": "Il progetto sembra fattibile.", + "example_sentence_english": "The project seems feasible.", + "pos": "adjective", + "word_frequency": 11038 + }, + { + "word": "ferragosto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mid-August holiday", + "romanization": "ferragosto", + "example_sentence_native": "Molti italiani vanno in vacanza a Ferragosto.", + "example_sentence_english": "Many Italians go on holiday for Ferragosto.", + "pos": "noun", + "word_frequency": 11041 + }, + { + "word": "folklore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folklore", + "romanization": "folklore", + "example_sentence_native": "Il folklore locale è molto ricco di storie e leggende.", + "example_sentence_english": "The local folklore is very rich in stories and legends.", + "pos": "noun", + "word_frequency": 11043 + }, + { + "word": "fuggito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "escaped", + "romanization": "fuggito", + "example_sentence_native": "Il prigioniero fuggito è stato catturato.", + "example_sentence_english": "The escaped prisoner was captured.", + "pos": "adjective", + "word_frequency": 11045 + }, + { + "word": "giacere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lie (down)", + "romanization": "giacere", + "example_sentence_native": "Il cane ama giacere sul tappeto.", + "example_sentence_english": "The dog loves to lie on the rug.", + "pos": "verb", + "word_frequency": 11046 + }, + { + "word": "gin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gin", + "romanization": "gin", + "example_sentence_native": "Vorrei un gin tonic, per favore.", + "example_sentence_english": "I would like a gin and tonic, please.", + "pos": "noun", + "word_frequency": 11047 + }, + { + "word": "gotico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Gothic", + "romanization": "gotico", + "example_sentence_native": "La cattedrale ha uno stile gotico impressionante.", + "example_sentence_english": "The cathedral has an impressive Gothic style.", + "pos": "adjective", + "word_frequency": 11050 + }, + { + "word": "granito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "granite", + "romanization": "granito", + "example_sentence_native": "Il piano della cucina è in granito.", + "example_sentence_english": "The kitchen countertop is made of granite.", + "pos": "noun", + "word_frequency": 11051 + }, + { + "word": "grattacielo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skyscraper", + "romanization": "grattacielo", + "example_sentence_native": "New York è famosa per i suoi grattacieli.", + "example_sentence_english": "New York is famous for its skyscrapers.", + "pos": "noun", + "word_frequency": 11052 + }, + { + "word": "greggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raw", + "romanization": "greggio", + "example_sentence_native": "Il prezzo del petrolio greggio è aumentato.", + "example_sentence_english": "The price of crude oil has increased.", + "pos": "adjective", + "word_frequency": 11053 + }, + { + "word": "idealmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ideally", + "romanization": "idealmente", + "example_sentence_native": "Idealmente, dovremmo finire il progetto entro venerdì.", + "example_sentence_english": "Ideally, we should finish the project by Friday.", + "pos": "adverb", + "word_frequency": 11058 + }, + { + "word": "impiccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hang (someone)", + "romanization": "impiccare", + "example_sentence_native": "Nel Medioevo, i criminali venivano impiccati.", + "example_sentence_english": "In the Middle Ages, criminals were hanged.", + "pos": "verb", + "word_frequency": 11059 + }, + { + "word": "implicitamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implicitly", + "romanization": "implicitamente", + "example_sentence_native": "Ha implicitamente ammesso il suo errore.", + "example_sentence_english": "He implicitly admitted his mistake.", + "pos": "adverb", + "word_frequency": 11060 + }, + { + "word": "infedele", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfaithful", + "romanization": "infedele", + "example_sentence_native": "È stato accusato di essere infedele alla sua promessa.", + "example_sentence_english": "He was accused of being unfaithful to his promise.", + "pos": "adjective", + "word_frequency": 11061 + }, + { + "word": "infrangere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break", + "romanization": "infrangere", + "example_sentence_native": "Non devi infrangere le regole.", + "example_sentence_english": "You must not break the rules.", + "pos": "verb", + "word_frequency": 11062 + }, + { + "word": "insonnia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insomnia", + "romanization": "insonnia", + "example_sentence_native": "Soffro di insonnia da diverse settimane.", + "example_sentence_english": "I've been suffering from insomnia for several weeks.", + "pos": "noun", + "word_frequency": 11063 + }, + { + "word": "intrappolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trapped", + "romanization": "intrappolato", + "example_sentence_native": "Il topo era intrappolato nella gabbia.", + "example_sentence_english": "The mouse was trapped in the cage.", + "pos": "adjective", + "word_frequency": 11064 + }, + { + "word": "invaso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invaded", + "romanization": "invaso", + "example_sentence_native": "Il campo era invaso dalle erbacce.", + "example_sentence_english": "The field was overrun with weeds.", + "pos": "adjective", + "word_frequency": 11065 + }, + { + "word": "irpef", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Italian personal income tax", + "romanization": "irpef", + "example_sentence_native": "L'IRPEF è l'imposta sul reddito delle persone fisiche.", + "example_sentence_english": "IRPEF is the personal income tax.", + "pos": "noun", + "word_frequency": 11066 + }, + { + "word": "larva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "larva", + "romanization": "larva", + "example_sentence_native": "La farfalla inizia la sua vita come larva.", + "example_sentence_english": "The butterfly begins its life as a larva.", + "pos": "noun", + "word_frequency": 11068 + }, + { + "word": "londinese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Londoner", + "romanization": "londinese", + "example_sentence_native": "È una ragazza londinese.", + "example_sentence_english": "She is a Londoner girl.", + "pos": "adjective", + "word_frequency": 11069 + }, + { + "word": "malware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malware", + "romanization": "malware", + "example_sentence_native": "Il mio computer è stato infettato da un malware.", + "example_sentence_english": "My computer was infected by malware.", + "pos": "noun", + "word_frequency": 11071 + }, + { + "word": "mascella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaw", + "romanization": "mascella", + "example_sentence_native": "Mi fa male la mascella dopo aver masticato a lungo.", + "example_sentence_english": "My jaw hurts after chewing for a long time.", + "pos": "noun", + "word_frequency": 11073 + }, + { + "word": "milionario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millionaire", + "romanization": "milionario", + "example_sentence_native": "Sogna di diventare un milionario.", + "example_sentence_english": "He dreams of becoming a millionaire.", + "pos": "noun", + "word_frequency": 11076 + }, + { + "word": "miseramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miserably", + "romanization": "miseramente", + "example_sentence_native": "Ha fallito miseramente l'esame.", + "example_sentence_english": "He miserably failed the exam.", + "pos": "adverb", + "word_frequency": 11079 + }, + { + "word": "most", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "must (grape juice)", + "romanization": "most", + "example_sentence_native": "Il mosto viene pressato per fare il vino.", + "example_sentence_english": "The must is pressed to make wine.", + "pos": "noun", + "word_frequency": 11080 + }, + { + "word": "motta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mound;hillock", + "romanization": "motta", + "example_sentence_native": "La motta di terra era stata creata dal vento.", + "example_sentence_english": "The mound of earth had been created by the wind.", + "pos": "noun", + "word_frequency": 11081 + }, + { + "word": "nanna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nap;sleep (child's word)", + "romanization": "nanna", + "example_sentence_native": "È ora di fare la nanna.", + "example_sentence_english": "It's time to go to sleep.", + "pos": "noun", + "word_frequency": 11082 + }, + { + "word": "oltrepassare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to go beyond;to exceed", + "romanization": "oltrepassare", + "example_sentence_native": "Non dobbiamo oltrepassare i limiti stabiliti.", + "example_sentence_english": "We must not go beyond the established limits.", + "pos": "verb", + "word_frequency": 11083 + }, + { + "word": "orange", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orange (color)", + "romanization": "orange", + "example_sentence_native": "Il suo vestito era di un colore orange brillante.", + "example_sentence_english": "Her dress was a bright orange color.", + "pos": "noun", + "word_frequency": 11084 + }, + { + "word": "padrino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godfather", + "romanization": "padrino", + "example_sentence_native": "Il padrino ha promesso di prendersi cura del bambino.", + "example_sentence_english": "The godfather promised to take care of the child.", + "pos": "noun", + "word_frequency": 11085 + }, + { + "word": "padronanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastery;command;proficiency", + "romanization": "padronanza", + "example_sentence_native": "Ha una padronanza eccellente della lingua italiana.", + "example_sentence_english": "He has excellent mastery of the Italian language.", + "pos": "noun", + "word_frequency": 11086 + }, + { + "word": "peccatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sinner", + "romanization": "peccatore", + "example_sentence_native": "Il prete parlava del pentimento del peccatore.", + "example_sentence_english": "The priest spoke of the sinner's repentance.", + "pos": "noun", + "word_frequency": 11087 + }, + { + "word": "pedonale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pedestrian", + "romanization": "pedonale", + "example_sentence_native": "La via è diventata una zona pedonale.", + "example_sentence_english": "The street has become a pedestrian zone.", + "pos": "adjective", + "word_frequency": 11088 + }, + { + "word": "pensatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinker", + "romanization": "pensatore", + "example_sentence_native": "Era considerato un grande pensatore del suo tempo.", + "example_sentence_english": "He was considered a great thinker of his time.", + "pos": "noun", + "word_frequency": 11089 + }, + { + "word": "piazzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to place;to put;to position", + "romanization": "piazzare", + "example_sentence_native": "Ha piazzato il libro sullo scaffale.", + "example_sentence_english": "He placed the book on the shelf.", + "pos": "verb", + "word_frequency": 11090 + }, + { + "word": "poetessa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poetess (female poet)", + "romanization": "poetessa", + "example_sentence_native": "La poetessa ha letto le sue nuove opere.", + "example_sentence_english": "The poetess read her new works.", + "pos": "noun", + "word_frequency": 11091 + }, + { + "word": "proclamazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proclamation", + "romanization": "proclamazione", + "example_sentence_native": "La proclamazione dei risultati avverrà domani.", + "example_sentence_english": "The proclamation of the results will take place tomorrow.", + "pos": "noun", + "word_frequency": 11093 + }, + { + "word": "proliferazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proliferation", + "romanization": "proliferazione", + "example_sentence_native": "La proliferazione delle alghe è un problema ambientale.", + "example_sentence_english": "The proliferation of algae is an environmental problem.", + "pos": "noun", + "word_frequency": 11094 + }, + { + "word": "quadra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "square;fitting;adding up (feminine)", + "romanization": "quadra", + "example_sentence_native": "Questa spiegazione non mi quadra.", + "example_sentence_english": "This explanation doesn't add up for me.", + "pos": "adjective", + "word_frequency": 11095 + }, + { + "word": "quadrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dial;quadrant;face (of a clock)", + "romanization": "quadrante", + "example_sentence_native": "Il quadrante dell'orologio era antico.", + "example_sentence_english": "The clock's dial was antique.", + "pos": "noun", + "word_frequency": 11096 + }, + { + "word": "rasoio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "razor", + "romanization": "rasoio", + "example_sentence_native": "Ho comprato un nuovo rasoio elettrico.", + "example_sentence_english": "I bought a new electric razor.", + "pos": "noun", + "word_frequency": 11098 + }, + { + "word": "rassicurante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reassuring", + "romanization": "rassicurante", + "example_sentence_native": "La sua voce era molto rassicurante.", + "example_sentence_english": "His voice was very reassuring.", + "pos": "adjective", + "word_frequency": 11099 + }, + { + "word": "reduce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "returned from;coming from", + "romanization": "reduce", + "example_sentence_native": "Sono reduce da un lungo viaggio.", + "example_sentence_english": "I am returned from a long journey.", + "pos": "adjective", + "word_frequency": 11100 + }, + { + "word": "ricaricare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recharge;to reload", + "romanization": "ricaricare", + "example_sentence_native": "Devo ricaricare il mio telefono.", + "example_sentence_english": "I need to recharge my phone.", + "pos": "verb", + "word_frequency": 11102 + }, + { + "word": "rinforzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reinforce;to strengthen", + "romanization": "rinforzare", + "example_sentence_native": "Dobbiamo rinforzare le fondamenta della casa.", + "example_sentence_english": "We need to reinforce the foundations of the house.", + "pos": "verb", + "word_frequency": 11104 + }, + { + "word": "risalente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dating back to;going back to", + "romanization": "risalente", + "example_sentence_native": "Il documento è risalente al XV secolo.", + "example_sentence_english": "The document dates back to the 15th century.", + "pos": "adjective", + "word_frequency": 11105 + }, + { + "word": "scontare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discount;to serve (a sentence);to pay for", + "romanization": "scontare", + "example_sentence_native": "Ha dovuto scontare due anni di prigione.", + "example_sentence_english": "He had to serve two years in prison.", + "pos": "verb", + "word_frequency": 11109 + }, + { + "word": "second", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "second (in sports;e.g.;a second place)", + "romanization": "second", + "example_sentence_native": "Ha tagliato il traguardo al secondo posto, un ottimo second.", + "example_sentence_english": "He crossed the finish line in second place, a great second.", + "pos": "noun", + "word_frequency": 11110 + }, + { + "word": "servitore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "servant", + "romanization": "servitore", + "example_sentence_native": "Il vecchio servitore era fedele alla famiglia.", + "example_sentence_english": "The old servant was loyal to the family.", + "pos": "noun", + "word_frequency": 11111 + }, + { + "word": "sessista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sexist", + "romanization": "sessista", + "example_sentence_native": "Il commento era chiaramente sessista.", + "example_sentence_english": "The comment was clearly sexist.", + "pos": "adjective", + "word_frequency": 11112 + }, + { + "word": "severamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severely;strictly", + "romanization": "severamente", + "example_sentence_native": "È stato severamente punito per le sue azioni.", + "example_sentence_english": "He was severely punished for his actions.", + "pos": "adverb", + "word_frequency": 11113 + }, + { + "word": "sfondare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to break through;to smash", + "romanization": "sfondare", + "example_sentence_native": "Hanno dovuto sfondare la porta per entrare.", + "example_sentence_english": "They had to break through the door to enter.", + "pos": "verb", + "word_frequency": 11114 + }, + { + "word": "spoglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "count;scrutiny (of votes);bareness", + "romanization": "spoglio", + "example_sentence_native": "Lo spoglio dei voti è iniziato dopo la chiusura dei seggi.", + "example_sentence_english": "The vote count began after the polls closed.", + "pos": "noun", + "word_frequency": 11115 + }, + { + "word": "stamane", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "this morning", + "romanization": "stamane", + "example_sentence_native": "Stamane mi sono svegliato presto.", + "example_sentence_english": "This morning I woke up early.", + "pos": "adverb", + "word_frequency": 11117 + }, + { + "word": "stilista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fashion designer;stylist", + "romanization": "stilista", + "example_sentence_native": "La stilista ha presentato la sua nuova collezione.", + "example_sentence_english": "The fashion designer presented her new collection.", + "pos": "noun", + "word_frequency": 11118 + }, + { + "word": "stream", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stream (as in live stream;data stream)", + "romanization": "stream", + "example_sentence_native": "Stiamo guardando uno stream in diretta del concerto.", + "example_sentence_english": "We are watching a live stream of the concert.", + "pos": "noun", + "word_frequency": 11119 + }, + { + "word": "suddivisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subdivision", + "romanization": "suddivisione", + "example_sentence_native": "La suddivisione del lavoro è essenziale per il progetto.", + "example_sentence_english": "The subdivision of labor is essential for the project.", + "pos": "noun", + "word_frequency": 11121 + }, + { + "word": "telenovela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soap opera", + "romanization": "telenovela", + "example_sentence_native": "Mia nonna guarda sempre la telenovela dopo pranzo.", + "example_sentence_english": "My grandmother always watches the soap opera after lunch.", + "pos": "noun", + "word_frequency": 11123 + }, + { + "word": "teologo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theologian", + "romanization": "teologo", + "example_sentence_native": "Il teologo ha tenuto una conferenza sulla fede.", + "example_sentence_english": "The theologian gave a lecture on faith.", + "pos": "noun", + "word_frequency": 11124 + }, + { + "word": "testimonial", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spokesperson;endorser", + "romanization": "testimonial", + "example_sentence_native": "Hanno scelto un famoso attore come testimonial per la campagna pubblicitaria.", + "example_sentence_english": "They chose a famous actor as a spokesperson for the advertising campaign.", + "pos": "noun", + "word_frequency": 11125 + }, + { + "word": "tirannia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tyranny", + "romanization": "tirannia", + "example_sentence_native": "Il popolo si ribellò contro la tirannia del re.", + "example_sentence_english": "The people rebelled against the tyranny of the king.", + "pos": "noun", + "word_frequency": 11126 + }, + { + "word": "tomo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tome;volume", + "romanization": "tomo", + "example_sentence_native": "La biblioteca ha un'intera collezione di tomi antichi.", + "example_sentence_english": "The library has an entire collection of ancient tomes.", + "pos": "noun", + "word_frequency": 11127 + }, + { + "word": "torcia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "torch;flashlight", + "romanization": "torcia", + "example_sentence_native": "Abbiamo usato una torcia per trovare la strada nel buio.", + "example_sentence_english": "We used a flashlight to find our way in the dark.", + "pos": "noun", + "word_frequency": 11128 + }, + { + "word": "tormento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torment;anguish", + "romanization": "tormento", + "example_sentence_native": "Il suo cuore era pieno di tormento dopo la notizia.", + "example_sentence_english": "His heart was full of torment after the news.", + "pos": "noun", + "word_frequency": 11129 + }, + { + "word": "track", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "track", + "romanization": "track", + "example_sentence_native": "Questa è la mia track preferita dell'album.", + "example_sentence_english": "This is my favorite track from the album.", + "pos": "noun", + "word_frequency": 11130 + }, + { + "word": "trek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trek", + "romanization": "trek", + "example_sentence_native": "Abbiamo fatto un lungo trek sulle montagne.", + "example_sentence_english": "We went on a long trek in the mountains.", + "pos": "noun", + "word_frequency": 11132 + }, + { + "word": "tsunami", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tsunami", + "romanization": "tsunami", + "example_sentence_native": "Il terremoto ha causato un enorme tsunami.", + "example_sentence_english": "The earthquake caused a huge tsunami.", + "pos": "noun", + "word_frequency": 11135 + }, + { + "word": "underground", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underground", + "romanization": "underground", + "example_sentence_native": "La scena musicale underground è molto vivace in questa città.", + "example_sentence_english": "The underground music scene is very lively in this city.", + "pos": "noun", + "word_frequency": 11136 + }, + { + "word": "utilizzabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usable;exploitable", + "romanization": "utilizzabile", + "example_sentence_native": "Il software è finalmente utilizzabile da tutti.", + "example_sentence_english": "The software is finally usable by everyone.", + "pos": "adjective", + "word_frequency": 11137 + }, + { + "word": "vandalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandal", + "romanization": "vandalo", + "example_sentence_native": "I vandali hanno danneggiato la statua nel parco.", + "example_sentence_english": "The vandals damaged the statue in the park.", + "pos": "noun", + "word_frequency": 11138 + }, + { + "word": "voluto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "desired;wanted;intentional", + "romanization": "voluto", + "example_sentence_native": "Il risultato non è stato quello voluto.", + "example_sentence_english": "The result was not the desired one.", + "pos": "adjective", + "word_frequency": 11139 + }, + { + "word": "zappa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hoe", + "romanization": "zappa", + "example_sentence_native": "Il contadino usava la zappa per lavorare la terra.", + "example_sentence_english": "The farmer used the hoe to work the land.", + "pos": "noun", + "word_frequency": 11143 + }, + { + "word": "abbazia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbey", + "romanization": "abbazia", + "example_sentence_native": "L'antica abbazia è un luogo di pace e storia.", + "example_sentence_english": "The ancient abbey is a place of peace and history.", + "pos": "noun", + "word_frequency": 11145 + }, + { + "word": "abusare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abuse;to misuse", + "romanization": "abusare", + "example_sentence_native": "Non bisogna abusare della propria posizione.", + "example_sentence_english": "One should not abuse one's position.", + "pos": "verb", + "word_frequency": 11146 + }, + { + "word": "ace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ace", + "romanization": "ace", + "example_sentence_native": "Ha servito un ace perfetto nel tennis.", + "example_sentence_english": "He served a perfect ace in tennis.", + "pos": "noun", + "word_frequency": 11147 + }, + { + "word": "acre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acrid;sour;pungent", + "romanization": "acre", + "example_sentence_native": "L'odore acre del fumo riempiva la stanza.", + "example_sentence_english": "The acrid smell of smoke filled the room.", + "pos": "adjective", + "word_frequency": 11148 + }, + { + "word": "afro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Afro-", + "romanization": "afro", + "example_sentence_native": "La musica afro-cubana è molto ritmica.", + "example_sentence_english": "Afro-Cuban music is very rhythmic.", + "pos": "adjective", + "word_frequency": 11149 + }, + { + "word": "alluvione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flood", + "romanization": "alluvione", + "example_sentence_native": "L'alluvione ha causato gravi danni alla città.", + "example_sentence_english": "The flood caused serious damage to the city.", + "pos": "noun", + "word_frequency": 11152 + }, + { + "word": "ammalato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sick;ill", + "romanization": "ammalato", + "example_sentence_native": "Il bambino è ammalato e deve restare a casa.", + "example_sentence_english": "The child is sick and must stay home.", + "pos": "adjective", + "word_frequency": 11153 + }, + { + "word": "annotazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annotation;note", + "romanization": "annotazione", + "example_sentence_native": "Ho preso molte annotazioni durante la lezione.", + "example_sentence_english": "I took many notes during the lesson.", + "pos": "noun", + "word_frequency": 11154 + }, + { + "word": "anonimato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anonymity", + "romanization": "anonimato", + "example_sentence_native": "Ha preferito mantenere l'anonimato per la sua donazione.", + "example_sentence_english": "He preferred to maintain anonymity for his donation.", + "pos": "noun", + "word_frequency": 11155 + }, + { + "word": "anticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anciently;in ancient times", + "romanization": "anticamente", + "example_sentence_native": "Anticamente, questa zona era coperta da foreste.", + "example_sentence_english": "Anciently, this area was covered by forests.", + "pos": "adverb", + "word_frequency": 11156 + }, + { + "word": "arduo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arduous;difficult", + "romanization": "arduo", + "example_sentence_native": "Scalare quella montagna è un compito arduo.", + "example_sentence_english": "Climbing that mountain is an arduous task.", + "pos": "adjective", + "word_frequency": 11158 + }, + { + "word": "attico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic;penthouse", + "romanization": "attico", + "example_sentence_native": "Vivono in un bellissimo attico con vista sulla città.", + "example_sentence_english": "They live in a beautiful penthouse with a city view.", + "pos": "noun", + "word_frequency": 11159 + }, + { + "word": "attrito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "friction", + "romanization": "attrito", + "example_sentence_native": "L'attrito tra le due superfici ha generato calore.", + "example_sentence_english": "The friction between the two surfaces generated heat.", + "pos": "noun", + "word_frequency": 11160 + }, + { + "word": "aviazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aviation", + "romanization": "aviazione", + "example_sentence_native": "L'aviazione civile è cresciuta molto negli ultimi decenni.", + "example_sentence_english": "Civil aviation has grown a lot in recent decades.", + "pos": "noun", + "word_frequency": 11162 + }, + { + "word": "bagagliaio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boot (car);trunk (car)", + "romanization": "bagagliaio", + "example_sentence_native": "Ho messo le valigie nel bagagliaio.", + "example_sentence_english": "I put the suitcases in the boot.", + "pos": "noun", + "word_frequency": 11163 + }, + { + "word": "belvedere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belvedere;viewpoint", + "romanization": "belvedere", + "example_sentence_native": "Dal belvedere si gode una vista mozzafiato sulla città.", + "example_sentence_english": "From the belvedere, you can enjoy a breathtaking view of the city.", + "pos": "noun", + "word_frequency": 11164 + }, + { + "word": "biblico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biblical", + "romanization": "biblico", + "example_sentence_native": "Ha una conoscenza biblica della storia.", + "example_sentence_english": "He has a biblical knowledge of history.", + "pos": "adjective", + "word_frequency": 11166 + }, + { + "word": "bibliotecario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "librarian", + "romanization": "bibliotecario", + "example_sentence_native": "Il bibliotecario mi ha aiutato a trovare il libro.", + "example_sentence_english": "The librarian helped me find the book.", + "pos": "noun", + "word_frequency": 11167 + }, + { + "word": "bracciale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bracelet", + "romanization": "bracciale", + "example_sentence_native": "Indossava un bellissimo bracciale d'argento.", + "example_sentence_english": "She was wearing a beautiful silver bracelet.", + "pos": "noun", + "word_frequency": 11172 + }, + { + "word": "briciola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crumb", + "romanization": "briciola", + "example_sentence_native": "Non è rimasta nemmeno una briciola di pane.", + "example_sentence_english": "Not even a crumb of bread was left.", + "pos": "noun", + "word_frequency": 11173 + }, + { + "word": "bruscamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abruptly;sharply", + "romanization": "bruscamente", + "example_sentence_native": "Ha interrotto bruscamente la conversazione.", + "example_sentence_english": "He abruptly interrupted the conversation.", + "pos": "adverb", + "word_frequency": 11175 + }, + { + "word": "cigno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swan", + "romanization": "cigno", + "example_sentence_native": "Un cigno nuotava elegantemente nel lago.", + "example_sentence_english": "A swan was swimming elegantly in the lake.", + "pos": "noun", + "word_frequency": 11179 + }, + { + "word": "circonferenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "circumference", + "romanization": "circonferenza", + "example_sentence_native": "Calcola la circonferenza del cerchio.", + "example_sentence_english": "Calculate the circumference of the circle.", + "pos": "noun", + "word_frequency": 11180 + }, + { + "word": "classificato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "classified;ranked", + "romanization": "classificato", + "example_sentence_native": "Il documento è classificato come segreto.", + "example_sentence_english": "The document is classified as secret.", + "pos": "adjective", + "word_frequency": 11181 + }, + { + "word": "colombiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Colombian", + "romanization": "colombiano", + "example_sentence_native": "La cucina colombiana è molto varia.", + "example_sentence_english": "Colombian cuisine is very varied.", + "pos": "adjective", + "word_frequency": 11182 + }, + { + "word": "coltivatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmer;grower", + "romanization": "coltivatore", + "example_sentence_native": "Il coltivatore ha raccolto il grano.", + "example_sentence_english": "The farmer harvested the wheat.", + "pos": "noun", + "word_frequency": 11183 + }, + { + "word": "compratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buyer", + "romanization": "compratore", + "example_sentence_native": "Il compratore ha accettato il prezzo.", + "example_sentence_english": "The buyer accepted the price.", + "pos": "noun", + "word_frequency": 11187 + }, + { + "word": "conclusivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conclusive;final", + "romanization": "conclusivo", + "example_sentence_native": "La sua argomentazione è stata molto conclusiva.", + "example_sentence_english": "His argument was very conclusive.", + "pos": "adjective", + "word_frequency": 11188 + }, + { + "word": "confidare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to confide;to trust", + "romanization": "confidare", + "example_sentence_native": "Puoi confidare in me.", + "example_sentence_english": "You can confide in me.", + "pos": "verb", + "word_frequency": 11189 + }, + { + "word": "coniugale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conjugal;marital", + "romanization": "coniugale", + "example_sentence_native": "Hanno celebrato il loro anniversario coniugale.", + "example_sentence_english": "They celebrated their conjugal anniversary.", + "pos": "adjective", + "word_frequency": 11190 + }, + { + "word": "consapevolmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knowingly;consciously", + "romanization": "consapevolmente", + "example_sentence_native": "Ha agito consapevolmente, sapendo le conseguenze.", + "example_sentence_english": "He acted knowingly, aware of the consequences.", + "pos": "adverb", + "word_frequency": 11191 + }, + { + "word": "constatazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "finding;observation", + "romanization": "constatazione", + "example_sentence_native": "La sua constatazione è stata sorprendente.", + "example_sentence_english": "His observation was surprising.", + "pos": "noun", + "word_frequency": 11192 + }, + { + "word": "contatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meter;counter", + "romanization": "contatore", + "example_sentence_native": "Il contatore del gas è fuori.", + "example_sentence_english": "The gas meter is outside.", + "pos": "noun", + "word_frequency": 11193 + }, + { + "word": "cripta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crypt", + "romanization": "cripta", + "example_sentence_native": "La cripta della chiesa è molto antica.", + "example_sentence_english": "The church crypt is very old.", + "pos": "noun", + "word_frequency": 11195 + }, + { + "word": "decretare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decree;to rule", + "romanization": "decretare", + "example_sentence_native": "Il giudice ha decretato la sua innocenza.", + "example_sentence_english": "The judge decreed his innocence.", + "pos": "verb", + "word_frequency": 11197 + }, + { + "word": "devoto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devout;devoted", + "romanization": "devoto", + "example_sentence_native": "È una persona molto devota alla sua famiglia.", + "example_sentence_english": "He is a person very devoted to his family.", + "pos": "adjective", + "word_frequency": 11199 + }, + { + "word": "disastroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disastrous", + "romanization": "disastroso", + "example_sentence_native": "La situazione è diventata disastrosa dopo l'alluvione.", + "example_sentence_english": "The situation became disastrous after the flood.", + "pos": "adjective", + "word_frequency": 11200 + }, + { + "word": "disfatta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defeat;rout", + "romanization": "disfatta", + "example_sentence_native": "La disfatta dell'esercito fu totale.", + "example_sentence_english": "The army's defeat was total.", + "pos": "noun", + "word_frequency": 11201 + }, + { + "word": "drogare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drug", + "romanization": "drogare", + "example_sentence_native": "Non si dovrebbe mai drogare un animale senza il consiglio di un veterinario.", + "example_sentence_english": "One should never drug an animal without a veterinarian's advice.", + "pos": "verb", + "word_frequency": 11202 + }, + { + "word": "educatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educator;teacher", + "romanization": "educatore", + "example_sentence_native": "L'educatore ha un ruolo fondamentale nella crescita dei bambini.", + "example_sentence_english": "The educator has a fundamental role in children's growth.", + "pos": "noun", + "word_frequency": 11203 + }, + { + "word": "emerito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emeritus;distinguished", + "romanization": "emerito", + "example_sentence_native": "È un professore emerito dell'università.", + "example_sentence_english": "He is an emeritus professor of the university.", + "pos": "adjective", + "word_frequency": 11204 + }, + { + "word": "equivoco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding;equivocation", + "romanization": "equivoco", + "example_sentence_native": "C'è stato un equivoco sulla data dell'incontro.", + "example_sentence_english": "There was a misunderstanding about the meeting date.", + "pos": "noun", + "word_frequency": 11205 + }, + { + "word": "erica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heather", + "romanization": "erica", + "example_sentence_native": "Le colline erano coperte di erica in fiore.", + "example_sentence_english": "The hills were covered with flowering heather.", + "pos": "noun", + "word_frequency": 11206 + }, + { + "word": "esente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exempt", + "romanization": "esente", + "example_sentence_native": "È esente dal pagamento delle tasse.", + "example_sentence_english": "He is exempt from paying taxes.", + "pos": "adjective", + "word_frequency": 11207 + }, + { + "word": "esigere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demand;to require", + "romanization": "esigere", + "example_sentence_native": "Non puoi esigere che tutti siano d'accordo con te.", + "example_sentence_english": "You cannot demand that everyone agrees with you.", + "pos": "verb", + "word_frequency": 11208 + }, + { + "word": "evacuare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evacuate", + "romanization": "evacuare", + "example_sentence_native": "Hanno dovuto evacuare l'edificio a causa dell'incendio.", + "example_sentence_english": "They had to evacuate the building due to the fire.", + "pos": "verb", + "word_frequency": 11209 + }, + { + "word": "fautore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supporter;advocate", + "romanization": "fautore", + "example_sentence_native": "Era un grande fautore della pace e della giustizia sociale.", + "example_sentence_english": "He was a great supporter of peace and social justice.", + "pos": "noun", + "word_frequency": 11210 + }, + { + "word": "fenice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phoenix", + "romanization": "fenice", + "example_sentence_native": "La fenice rinasce dalle proprie ceneri.", + "example_sentence_english": "The phoenix rises from its own ashes.", + "pos": "noun", + "word_frequency": 11211 + }, + { + "word": "fermentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fermentation", + "romanization": "fermentazione", + "example_sentence_native": "La fermentazione è un processo chiave nella produzione del vino.", + "example_sentence_english": "Fermentation is a key process in wine production.", + "pos": "noun", + "word_frequency": 11212 + }, + { + "word": "frana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landslide;rockslide", + "romanization": "frana", + "example_sentence_native": "La strada è stata chiusa a causa di una frana.", + "example_sentence_english": "The road was closed due to a landslide.", + "pos": "noun", + "word_frequency": 11214 + }, + { + "word": "frusta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whip", + "romanization": "frusta", + "example_sentence_native": "Il domatore usava una frusta per addestrare gli animali.", + "example_sentence_english": "The tamer used a whip to train the animals.", + "pos": "noun", + "word_frequency": 11215 + }, + { + "word": "gastronomia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastronomy;delicatessen", + "romanization": "gastronomia", + "example_sentence_native": "L'Italia è famosa per la sua ricca gastronomia.", + "example_sentence_english": "Italy is famous for its rich gastronomy.", + "pos": "noun", + "word_frequency": 11216 + }, + { + "word": "globe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globe", + "romanization": "globe", + "example_sentence_native": "Il globo terrestre è un modello del nostro pianeta.", + "example_sentence_english": "The terrestrial globe is a model of our planet.", + "pos": "noun", + "word_frequency": 11218 + }, + { + "word": "granduca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grand duke", + "romanization": "granduca", + "example_sentence_native": "Il Granduca di Toscana governò per molti anni.", + "example_sentence_english": "The Grand Duke of Tuscany governed for many years.", + "pos": "noun", + "word_frequency": 11219 + }, + { + "word": "grazioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graceful;pretty;charming", + "romanization": "grazioso", + "example_sentence_native": "Ha un modo di fare molto grazioso.", + "example_sentence_english": "She has a very graceful manner.", + "pos": "adjective", + "word_frequency": 11220 + }, + { + "word": "idraulica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydraulics;plumbing (as a field)", + "romanization": "idraulica", + "example_sentence_native": "Ha studiato ingegneria idraulica.", + "example_sentence_english": "He studied hydraulic engineering.", + "pos": "noun", + "word_frequency": 11227 + }, + { + "word": "imbarco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boarding;embarkation", + "romanization": "imbarco", + "example_sentence_native": "L'orario di imbarco è alle 10:00.", + "example_sentence_english": "Boarding time is at 10:00 AM.", + "pos": "noun", + "word_frequency": 11228 + }, + { + "word": "immergere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to immerse;to dip", + "romanization": "immergere", + "example_sentence_native": "Immergi il panno nell'acqua calda.", + "example_sentence_english": "Immerse the cloth in hot water.", + "pos": "verb", + "word_frequency": 11229 + }, + { + "word": "impressionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to impress;to make an impression", + "romanization": "impressionare", + "example_sentence_native": "La sua performance ha impressionato tutti.", + "example_sentence_english": "His performance impressed everyone.", + "pos": "verb", + "word_frequency": 11230 + }, + { + "word": "improprio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improper;inappropriate", + "romanization": "improprio", + "example_sentence_native": "Ha usato un linguaggio improprio.", + "example_sentence_english": "He used inappropriate language.", + "pos": "adjective", + "word_frequency": 11231 + }, + { + "word": "infilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to thread;to put on;to slip into", + "romanization": "infilare", + "example_sentence_native": "Infilò l'ago nel filo.", + "example_sentence_english": "She threaded the needle.", + "pos": "verb", + "word_frequency": 11232 + }, + { + "word": "interim", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interim;temporary period", + "romanization": "interim", + "example_sentence_native": "Ha assunto la posizione ad interim.", + "example_sentence_english": "He took on the interim position.", + "pos": "noun", + "word_frequency": 11233 + }, + { + "word": "interruttore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "switch (electrical)", + "romanization": "interruttore", + "example_sentence_native": "Accendi la luce con l'interruttore.", + "example_sentence_english": "Turn on the light with the switch.", + "pos": "noun", + "word_frequency": 11234 + }, + { + "word": "inusuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusual", + "romanization": "inusuale", + "example_sentence_native": "È stata una richiesta inusuale.", + "example_sentence_english": "It was an unusual request.", + "pos": "adjective", + "word_frequency": 11235 + }, + { + "word": "iraniano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iranian", + "romanization": "iraniano", + "example_sentence_native": "Ha incontrato un turista iraniano.", + "example_sentence_english": "He met an Iranian tourist.", + "pos": "adjective", + "word_frequency": 11236 + }, + { + "word": "lavandino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink", + "romanization": "lavandino", + "example_sentence_native": "Il lavandino della cucina è intasato.", + "example_sentence_english": "The kitchen sink is clogged.", + "pos": "noun", + "word_frequency": 11242 + }, + { + "word": "luogotenente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lieutenant", + "romanization": "luogotenente", + "example_sentence_native": "Il luogotenente ha dato l'ordine di avanzare.", + "example_sentence_english": "The lieutenant gave the order to advance.", + "pos": "noun", + "word_frequency": 11246 + }, + { + "word": "massone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "freemason", + "romanization": "massone", + "example_sentence_native": "Si dice che fosse un massone influente.", + "example_sentence_english": "It is said that he was an influential freemason.", + "pos": "noun", + "word_frequency": 11251 + }, + { + "word": "molteplicità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multiplicity", + "romanization": "molteplicità", + "example_sentence_native": "La molteplicità di opinioni rende il dibattito interessante.", + "example_sentence_english": "The multiplicity of opinions makes the debate interesting.", + "pos": "noun", + "word_frequency": 11253 + }, + { + "word": "motorizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motorization;motor vehicle department", + "romanization": "motorizzazione", + "example_sentence_native": "Devo andare alla motorizzazione per rinnovare la patente.", + "example_sentence_english": "I have to go to the motor vehicle department to renew my driver's license.", + "pos": "noun", + "word_frequency": 11255 + }, + { + "word": "movente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motive", + "romanization": "movente", + "example_sentence_native": "La polizia sta cercando il movente del crimine.", + "example_sentence_english": "The police are looking for the motive for the crime.", + "pos": "noun", + "word_frequency": 11256 + }, + { + "word": "omofobo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homophobic", + "romanization": "omofobo", + "example_sentence_native": "Il suo commento è stato considerato omofobo.", + "example_sentence_english": "His comment was considered homophobic.", + "pos": "adjective", + "word_frequency": 11262 + }, + { + "word": "omogeneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homogeneous", + "romanization": "omogeneo", + "example_sentence_native": "La miscela deve essere omogenea.", + "example_sentence_english": "The mixture must be homogeneous.", + "pos": "adjective", + "word_frequency": 11263 + }, + { + "word": "onnipotente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipotent", + "romanization": "onnipotente", + "example_sentence_native": "Si credeva onnipotente, ma non lo era.", + "example_sentence_english": "He believed himself omnipotent, but he wasn't.", + "pos": "adjective", + "word_frequency": 11264 + }, + { + "word": "osseo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bony;osseous", + "romanization": "osseo", + "example_sentence_native": "Ha una struttura ossea molto robusta.", + "example_sentence_english": "He has a very robust bony structure.", + "pos": "adjective", + "word_frequency": 11265 + }, + { + "word": "pallina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small ball;bead", + "romanization": "pallina", + "example_sentence_native": "Il bambino giocava con una pallina rossa.", + "example_sentence_english": "The child was playing with a small red ball.", + "pos": "noun", + "word_frequency": 11266 + }, + { + "word": "parlante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speaking;talking", + "romanization": "parlante", + "example_sentence_native": "È un orologio parlante.", + "example_sentence_english": "It's a talking clock.", + "pos": "adjective", + "word_frequency": 11267 + }, + { + "word": "passatempo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hobby;pastime", + "romanization": "passatempo", + "example_sentence_native": "Il mio passatempo preferito è leggere.", + "example_sentence_english": "My favorite pastime is reading.", + "pos": "noun", + "word_frequency": 11268 + }, + { + "word": "perseguitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persecute;to haunt", + "romanization": "perseguitare", + "example_sentence_native": "I fantasmi sembrano perseguitare quella vecchia casa.", + "example_sentence_english": "The ghosts seem to haunt that old house.", + "pos": "verb", + "word_frequency": 11271 + }, + { + "word": "piazzetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small square", + "romanization": "piazzetta", + "example_sentence_native": "Ci siamo incontrati nella piazzetta del paese.", + "example_sentence_english": "We met in the small village square.", + "pos": "noun", + "word_frequency": 11273 + }, + { + "word": "pioniere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pioneer", + "romanization": "pioniere", + "example_sentence_native": "Era un pioniere nel campo della tecnologia.", + "example_sentence_english": "He was a pioneer in the field of technology.", + "pos": "noun", + "word_frequency": 11274 + }, + { + "word": "positività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "positivity", + "romanization": "positività", + "example_sentence_native": "La sua positività è contagiosa.", + "example_sentence_english": "Her positivity is contagious.", + "pos": "noun", + "word_frequency": 11276 + }, + { + "word": "predatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predator", + "romanization": "predatore", + "example_sentence_native": "Il leone è un predatore temibile.", + "example_sentence_english": "The lion is a formidable predator.", + "pos": "noun", + "word_frequency": 11277 + }, + { + "word": "prospettare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to foresee;to envisage", + "romanization": "prospettare", + "example_sentence_native": "La situazione prospetta nuove opportunità.", + "example_sentence_english": "The situation foresees new opportunities.", + "pos": "verb", + "word_frequency": 11279 + }, + { + "word": "puntino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small dot;speck", + "romanization": "puntino", + "example_sentence_native": "C'è un piccolo puntino nero sulla pagina.", + "example_sentence_english": "There's a small black dot on the page.", + "pos": "noun", + "word_frequency": 11281 + }, + { + "word": "raddoppio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doubling;increase", + "romanization": "raddoppio", + "example_sentence_native": "Il raddoppio dei prezzi ha preoccupato tutti.", + "example_sentence_english": "The doubling of prices worried everyone.", + "pos": "noun", + "word_frequency": 11282 + }, + { + "word": "remix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remix", + "romanization": "remix", + "example_sentence_native": "Ascoltiamo il nuovo remix di questa canzone.", + "example_sentence_english": "Let's listen to the new remix of this song.", + "pos": "noun", + "word_frequency": 11284 + }, + { + "word": "reverendo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reverend", + "romanization": "reverendo", + "example_sentence_native": "Il reverendo ha tenuto un sermone toccante.", + "example_sentence_english": "The reverend gave a touching sermon.", + "pos": "adjective", + "word_frequency": 11285 + }, + { + "word": "rider", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delivery rider", + "romanization": "rider", + "example_sentence_native": "Il rider ha consegnato il cibo in pochi minuti.", + "example_sentence_english": "The rider delivered the food in a few minutes.", + "pos": "noun", + "word_frequency": 11286 + }, + { + "word": "risorgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rise again;to resurface", + "romanization": "risorgere", + "example_sentence_native": "Dopo la sconfitta, la squadra è riuscita a risorgere.", + "example_sentence_english": "After the defeat, the team managed to rise again.", + "pos": "verb", + "word_frequency": 11288 + }, + { + "word": "romagnolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Romagnol (from Romagna)", + "romanization": "romagnolo", + "example_sentence_native": "La cucina romagnola è famosa per la piadina.", + "example_sentence_english": "Romagnol cuisine is famous for piadina.", + "pos": "adjective", + "word_frequency": 11289 + }, + { + "word": "sceneggiatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screenwriter", + "romanization": "sceneggiatore", + "example_sentence_native": "Il bravo sceneggiatore è fondamentale per un film di successo.", + "example_sentence_english": "A good screenwriter is fundamental for a successful film.", + "pos": "noun", + "word_frequency": 11294 + }, + { + "word": "sciarpa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scarf", + "romanization": "sciarpa", + "example_sentence_native": "Ho comprato una nuova sciarpa di lana per l'inverno.", + "example_sentence_english": "I bought a new wool scarf for winter.", + "pos": "noun", + "word_frequency": 11295 + }, + { + "word": "sclerosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sclerosis", + "romanization": "sclerosi", + "example_sentence_native": "La sclerosi multipla è una malattia neurologica.", + "example_sentence_english": "Multiple sclerosis is a neurological disease.", + "pos": "noun", + "word_frequency": 11296 + }, + { + "word": "scorpione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scorpion", + "romanization": "scorpione", + "example_sentence_native": "Lo scorpione è un aracnide con una coda velenosa.", + "example_sentence_english": "The scorpion is an arachnid with a venomous tail.", + "pos": "noun", + "word_frequency": 11297 + }, + { + "word": "scrutinio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ballot;scrutiny", + "romanization": "scrutinio", + "example_sentence_native": "Lo scrutinio dei voti è iniziato dopo la chiusura dei seggi.", + "example_sentence_english": "The ballot counting began after the polls closed.", + "pos": "noun", + "word_frequency": 11298 + }, + { + "word": "selvatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wild;untamed", + "romanization": "selvatico", + "example_sentence_native": "Abbiamo visto un gatto selvatico nel bosco.", + "example_sentence_english": "We saw a wild cat in the woods.", + "pos": "adjective", + "word_frequency": 11299 + }, + { + "word": "shadow", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shadow", + "romanization": "shadow", + "example_sentence_native": "Il gioco ha una grafica con effetti di shadow molto realistici.", + "example_sentence_english": "The game has graphics with very realistic shadow effects.", + "pos": "noun", + "word_frequency": 11300 + }, + { + "word": "sharp", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sharp (music)", + "romanization": "sharp", + "example_sentence_native": "Per suonare questa melodia, devi usare un fa sharp.", + "example_sentence_english": "To play this melody, you need to use an F sharp.", + "pos": "noun", + "word_frequency": 11301 + }, + { + "word": "siglare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sign;to initial", + "romanization": "siglare", + "example_sentence_native": "I due paesi hanno siglato un nuovo accordo commerciale.", + "example_sentence_english": "The two countries signed a new trade agreement.", + "pos": "verb", + "word_frequency": 11302 + }, + { + "word": "simultaneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneously", + "romanization": "simultaneamente", + "example_sentence_native": "Hanno parlato simultaneamente, rendendo difficile capire.", + "example_sentence_english": "They spoke simultaneously, making it difficult to understand.", + "pos": "adverb", + "word_frequency": 11304 + }, + { + "word": "soccer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soccer", + "romanization": "soccer", + "example_sentence_native": "Negli Stati Uniti, il calcio è chiamato 'soccer'.", + "example_sentence_english": "In the United States, football is called 'soccer'.", + "pos": "noun", + "word_frequency": 11305 + }, + { + "word": "sollevamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lifting;raising", + "romanization": "sollevamento", + "example_sentence_native": "Il sollevamento pesi richiede molta forza.", + "example_sentence_english": "Weightlifting requires a lot of strength.", + "pos": "noun", + "word_frequency": 11306 + }, + { + "word": "supervisore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supervisor", + "romanization": "supervisore", + "example_sentence_native": "Il supervisore ha approvato il nostro piano di lavoro.", + "example_sentence_english": "The supervisor approved our work plan.", + "pos": "noun", + "word_frequency": 11307 + }, + { + "word": "utilizzatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "user;operator", + "romanization": "utilizzatore", + "example_sentence_native": "L'utilizzatore deve leggere attentamente il manuale.", + "example_sentence_english": "The user must read the manual carefully.", + "pos": "noun", + "word_frequency": 11310 + }, + { + "word": "vascello", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vessel;ship (large sailing)", + "romanization": "vascello", + "example_sentence_native": "Un antico vascello è stato ritrovato sul fondo del mare.", + "example_sentence_english": "An ancient vessel was found at the bottom of the sea.", + "pos": "noun", + "word_frequency": 11312 + }, + { + "word": "videogame", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "videogame", + "romanization": "videogame", + "example_sentence_native": "Mio fratello passa ore a giocare ai videogame.", + "example_sentence_english": "My brother spends hours playing videogames.", + "pos": "noun", + "word_frequency": 11315 + }, + { + "word": "addietro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "behind;ago", + "romanization": "addietro", + "example_sentence_native": "Molti anni addietro, vivevo in campagna.", + "example_sentence_english": "Many years ago, I lived in the countryside.", + "pos": "adverb", + "word_frequency": 11323 + }, + { + "word": "allergia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allergy", + "romanization": "allergia", + "example_sentence_native": "Ho un'allergia alle arachidi.", + "example_sentence_english": "I have a peanut allergy.", + "pos": "noun", + "word_frequency": 11326 + }, + { + "word": "allestire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set up;to prepare", + "romanization": "allestire", + "example_sentence_native": "Dobbiamo allestire la sala per la conferenza.", + "example_sentence_english": "We need to set up the hall for the conference.", + "pos": "verb", + "word_frequency": 11327 + }, + { + "word": "allucinazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hallucination", + "romanization": "allucinazione", + "example_sentence_native": "Ha avuto un'allucinazione a causa della febbre alta.", + "example_sentence_english": "He had a hallucination due to high fever.", + "pos": "noun", + "word_frequency": 11328 + }, + { + "word": "ammenda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fine;penalty", + "romanization": "ammenda", + "example_sentence_native": "Ha dovuto pagare un'ammenda per eccesso di velocità.", + "example_sentence_english": "He had to pay a fine for speeding.", + "pos": "noun", + "word_frequency": 11329 + }, + { + "word": "analitico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analytical", + "romanization": "analitico", + "example_sentence_native": "Ha un approccio molto analitico ai problemi.", + "example_sentence_english": "He has a very analytical approach to problems.", + "pos": "adjective", + "word_frequency": 11330 + }, + { + "word": "asma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asthma", + "romanization": "asma", + "example_sentence_native": "Soffre di asma fin da bambino.", + "example_sentence_english": "He has suffered from asthma since childhood.", + "pos": "noun", + "word_frequency": 11333 + }, + { + "word": "assalire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assault;to attack", + "romanization": "assalire", + "example_sentence_native": "I ladri hanno tentato di assalire la banca.", + "example_sentence_english": "The thieves tried to assault the bank.", + "pos": "verb", + "word_frequency": 11334 + }, + { + "word": "atterrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to land", + "romanization": "atterrare", + "example_sentence_native": "L'aereo è atterrato in orario.", + "example_sentence_english": "The plane landed on time.", + "pos": "verb", + "word_frequency": 11336 + }, + { + "word": "autoritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authoritarian", + "romanization": "autoritario", + "example_sentence_native": "Il suo stile di leadership è troppo autoritario.", + "example_sentence_english": "His leadership style is too authoritarian.", + "pos": "adjective", + "word_frequency": 11337 + }, + { + "word": "autunnale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autumnal", + "romanization": "autunnale", + "example_sentence_native": "Le foglie autunnali sono molto colorate.", + "example_sentence_english": "The autumnal leaves are very colorful.", + "pos": "adjective", + "word_frequency": 11338 + }, + { + "word": "avversione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aversion;dislike", + "romanization": "avversione", + "example_sentence_native": "Ha una forte avversione per i ragni.", + "example_sentence_english": "He has a strong aversion to spiders.", + "pos": "noun", + "word_frequency": 11339 + }, + { + "word": "buffone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clown;jester", + "romanization": "buffone", + "example_sentence_native": "Non fare il buffone, sii serio.", + "example_sentence_english": "Don't be a clown, be serious.", + "pos": "noun", + "word_frequency": 11345 + }, + { + "word": "capienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capacity", + "romanization": "capienza", + "example_sentence_native": "La capienza dello stadio è di 80.000 persone.", + "example_sentence_english": "The stadium's capacity is 80,000 people.", + "pos": "noun", + "word_frequency": 11348 + }, + { + "word": "caratterizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "characterization", + "romanization": "caratterizzazione", + "example_sentence_native": "La caratterizzazione dei personaggi è molto profonda in questo romanzo.", + "example_sentence_english": "The characterization of the characters is very deep in this novel.", + "pos": "noun", + "word_frequency": 11349 + }, + { + "word": "caricamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loading;upload", + "romanization": "caricamento", + "example_sentence_native": "Il caricamento del file richiede alcuni minuti.", + "example_sentence_english": "The file upload takes a few minutes.", + "pos": "noun", + "word_frequency": 11350 + }, + { + "word": "chiarissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very clear;extremely clear", + "romanization": "chiarissimo", + "example_sentence_native": "La sua spiegazione è stata chiarissima.", + "example_sentence_english": "His explanation was extremely clear.", + "pos": "adjective", + "word_frequency": 11352 + }, + { + "word": "chiasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noise;racket", + "romanization": "chiasso", + "example_sentence_native": "C'era un gran chiasso proveniente dalla strada.", + "example_sentence_english": "There was a lot of noise coming from the street.", + "pos": "noun", + "word_frequency": 11353 + }, + { + "word": "colesterolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cholesterol", + "romanization": "colesterolo", + "example_sentence_native": "Deve controllare il livello di colesterolo.", + "example_sentence_english": "He needs to check his cholesterol level.", + "pos": "noun", + "word_frequency": 11354 + }, + { + "word": "colonialismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonialism", + "romanization": "colonialismo", + "example_sentence_native": "Il colonialismo ha avuto un impatto duraturo su molte nazioni.", + "example_sentence_english": "Colonialism had a lasting impact on many nations.", + "pos": "noun", + "word_frequency": 11356 + }, + { + "word": "concettuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conceptual", + "romanization": "concettuale", + "example_sentence_native": "L'arte concettuale è spesso difficile da comprendere.", + "example_sentence_english": "Conceptual art is often difficult to understand.", + "pos": "adjective", + "word_frequency": 11357 + }, + { + "word": "cortesemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "courteously;kindly", + "romanization": "cortesemente", + "example_sentence_native": "Potrebbe cortesemente chiudere la porta?", + "example_sentence_english": "Could you kindly close the door?", + "pos": "adverb", + "word_frequency": 11360 + }, + { + "word": "cospetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presence;sight", + "romanization": "cospetto", + "example_sentence_native": "Si presentò al cospetto del re.", + "example_sentence_english": "He presented himself in the presence of the king.", + "pos": "noun", + "word_frequency": 11361 + }, + { + "word": "costiero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coastal", + "romanization": "costiero", + "example_sentence_native": "La città ha un clima costiero mite.", + "example_sentence_english": "The city has a mild coastal climate.", + "pos": "adjective", + "word_frequency": 11362 + }, + { + "word": "deportazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deportation", + "romanization": "deportazione", + "example_sentence_native": "La deportazione di massa è stata una tragedia.", + "example_sentence_english": "Mass deportation was a tragedy.", + "pos": "noun", + "word_frequency": 11371 + }, + { + "word": "differire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to differ;to postpone", + "romanization": "differire", + "example_sentence_native": "Le loro opinioni differiscono notevolmente.", + "example_sentence_english": "Their opinions differ significantly.", + "pos": "verb", + "word_frequency": 11372 + }, + { + "word": "distesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expanse;stretch", + "romanization": "distesa", + "example_sentence_native": "Davanti a noi si apriva una vasta distesa di campi.", + "example_sentence_english": "Before us lay a vast expanse of fields.", + "pos": "noun", + "word_frequency": 11373 + }, + { + "word": "doping", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doping", + "romanization": "doping", + "example_sentence_native": "L'atleta è stato squalificato per doping.", + "example_sentence_english": "The athlete was disqualified for doping.", + "pos": "noun", + "word_frequency": 11375 + }, + { + "word": "elettorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electorate", + "romanization": "elettorato", + "example_sentence_native": "L'elettorato ha espresso la sua preferenza.", + "example_sentence_english": "The electorate expressed its preference.", + "pos": "noun", + "word_frequency": 11377 + }, + { + "word": "episcopale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "episcopal", + "romanization": "episcopale", + "example_sentence_native": "La sede episcopale si trova in quella città.", + "example_sentence_english": "The episcopal see is located in that city.", + "pos": "adjective", + "word_frequency": 11379 + }, + { + "word": "eroico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heroic", + "romanization": "eroico", + "example_sentence_native": "Ha compiuto un gesto eroico per salvare la vita.", + "example_sentence_english": "He performed a heroic act to save a life.", + "pos": "adjective", + "word_frequency": 11380 + }, + { + "word": "fecondazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertilization", + "romanization": "fecondazione", + "example_sentence_native": "La fecondazione è il processo di unione dei gameti.", + "example_sentence_english": "Fertilization is the process of gamete fusion.", + "pos": "noun", + "word_frequency": 11382 + }, + { + "word": "fedelmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faithfully", + "romanization": "fedelmente", + "example_sentence_native": "Ha eseguito il compito fedelmente.", + "example_sentence_english": "He performed the task faithfully.", + "pos": "adverb", + "word_frequency": 11383 + }, + { + "word": "forbice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scissors", + "romanization": "forbice", + "example_sentence_native": "Mi passi la forbice, per favore?", + "example_sentence_english": "Can you pass me the scissors, please?", + "pos": "noun", + "word_frequency": 11385 + }, + { + "word": "gelatina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jelly;gelatin", + "romanization": "gelatina", + "example_sentence_native": "Mi piace la gelatina di frutta.", + "example_sentence_english": "I like fruit jelly.", + "pos": "noun", + "word_frequency": 11388 + }, + { + "word": "ghiandola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gland", + "romanization": "ghiandola", + "example_sentence_native": "La tiroide è una ghiandola importante.", + "example_sentence_english": "The thyroid is an important gland.", + "pos": "noun", + "word_frequency": 11389 + }, + { + "word": "giga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gigabyte", + "romanization": "giga", + "example_sentence_native": "Ho bisogno di più giga sul mio telefono.", + "example_sentence_english": "I need more gigabytes on my phone.", + "pos": "noun", + "word_frequency": 11390 + }, + { + "word": "glucosio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glucose", + "romanization": "glucosio", + "example_sentence_native": "Il glucosio è una fonte di energia per il corpo.", + "example_sentence_english": "Glucose is a source of energy for the body.", + "pos": "noun", + "word_frequency": 11391 + }, + { + "word": "illimitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unlimited", + "romanization": "illimitato", + "example_sentence_native": "Hanno accesso illimitato a internet.", + "example_sentence_english": "They have unlimited internet access.", + "pos": "adjective", + "word_frequency": 11394 + }, + { + "word": "immensamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immensely", + "romanization": "immensamente", + "example_sentence_native": "Sono immensamente grato per il tuo aiuto.", + "example_sentence_english": "I am immensely grateful for your help.", + "pos": "adverb", + "word_frequency": 11395 + }, + { + "word": "incassare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collect (money);to cash", + "romanization": "incassare", + "example_sentence_native": "Dobbiamo incassare i soldi entro domani.", + "example_sentence_english": "We need to collect the money by tomorrow.", + "pos": "verb", + "word_frequency": 11396 + }, + { + "word": "incompatibilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incompatibility", + "romanization": "incompatibilità", + "example_sentence_native": "C'è un'incompatibilità tra i due sistemi.", + "example_sentence_english": "There is an incompatibility between the two systems.", + "pos": "noun", + "word_frequency": 11397 + }, + { + "word": "innalzamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rise;elevation;increase", + "romanization": "innalzamento", + "example_sentence_native": "Si prevede un innalzamento del livello del mare.", + "example_sentence_english": "A rise in sea level is expected.", + "pos": "noun", + "word_frequency": 11398 + }, + { + "word": "invalido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invalid;disabled", + "romanization": "invalido", + "example_sentence_native": "Il biglietto è invalido.", + "example_sentence_english": "The ticket is invalid.", + "pos": "adjective", + "word_frequency": 11399 + }, + { + "word": "invertire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to invert;to reverse", + "romanization": "invertire", + "example_sentence_native": "Dobbiamo invertire la rotta.", + "example_sentence_english": "We must reverse course.", + "pos": "verb", + "word_frequency": 11400 + }, + { + "word": "investigare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to investigate", + "romanization": "investigare", + "example_sentence_native": "La polizia sta investigando sul caso.", + "example_sentence_english": "The police are investigating the case.", + "pos": "verb", + "word_frequency": 11401 + }, + { + "word": "lager", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concentration camp;lager (beer)", + "romanization": "lager", + "example_sentence_native": "Molti prigionieri morirono nei lager.", + "example_sentence_english": "Many prisoners died in the concentration camps.", + "pos": "noun", + "word_frequency": 11403 + }, + { + "word": "lampadina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "light bulb", + "romanization": "lampadina", + "example_sentence_native": "La lampadina si è bruciata.", + "example_sentence_english": "The light bulb burned out.", + "pos": "noun", + "word_frequency": 11404 + }, + { + "word": "limbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limbo", + "romanization": "limbo", + "example_sentence_native": "Si sentiva in un limbo tra due decisioni.", + "example_sentence_english": "He felt in a limbo between two decisions.", + "pos": "noun", + "word_frequency": 11405 + }, + { + "word": "limpido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clear;limpid", + "romanization": "limpido", + "example_sentence_native": "L'acqua del lago era limpida.", + "example_sentence_english": "The lake water was clear.", + "pos": "adjective", + "word_frequency": 11406 + }, + { + "word": "maligno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malignant;malicious", + "romanization": "maligno", + "example_sentence_native": "Il tumore era maligno.", + "example_sentence_english": "The tumor was malignant.", + "pos": "adjective", + "word_frequency": 11412 + }, + { + "word": "manna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manna", + "romanization": "manna", + "example_sentence_native": "Quella notizia fu una vera manna dal cielo.", + "example_sentence_english": "That news was a real godsend (manna from heaven).", + "pos": "noun", + "word_frequency": 11413 + }, + { + "word": "marciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to march", + "romanization": "marciare", + "example_sentence_native": "I soldati iniziarono a marciare.", + "example_sentence_english": "The soldiers began to march.", + "pos": "verb", + "word_frequency": 11414 + }, + { + "word": "materialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "materially;physically", + "romanization": "materialmente", + "example_sentence_native": "Materialmente, non abbiamo bisogno di altro.", + "example_sentence_english": "Materially, we don't need anything else.", + "pos": "adverb", + "word_frequency": 11415 + }, + { + "word": "melanzana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eggplant;aubergine", + "romanization": "melanzana", + "example_sentence_native": "Mi piacciono le melanzane alla parmigiana.", + "example_sentence_english": "I like eggplant parmesan.", + "pos": "noun", + "word_frequency": 11416 + }, + { + "word": "mentore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mentor", + "romanization": "mentore", + "example_sentence_native": "Ha trovato un ottimo mentore nella sua carriera.", + "example_sentence_english": "He found a great mentor in his career.", + "pos": "noun", + "word_frequency": 11417 + }, + { + "word": "metafisica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphysics", + "romanization": "metafisica", + "example_sentence_native": "La metafisica è una branca della filosofia.", + "example_sentence_english": "Metaphysics is a branch of philosophy.", + "pos": "noun", + "word_frequency": 11419 + }, + { + "word": "minerario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mining (adj.)", + "romanization": "minerario", + "example_sentence_native": "L'industria mineraria è importante per l'economia.", + "example_sentence_english": "The mining industry is important for the economy.", + "pos": "adjective", + "word_frequency": 11421 + }, + { + "word": "mostruoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monstrous;huge", + "romanization": "mostruoso", + "example_sentence_native": "Ha fatto un errore mostruoso.", + "example_sentence_english": "He made a monstrous mistake.", + "pos": "adjective", + "word_frequency": 11424 + }, + { + "word": "mutua", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutual aid society;health insurance", + "romanization": "mutua", + "example_sentence_native": "Ho l'assicurazione sanitaria tramite la mutua.", + "example_sentence_english": "I have health insurance through the mutual aid society.", + "pos": "noun", + "word_frequency": 11425 + }, + { + "word": "obbedienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obedience", + "romanization": "obbedienza", + "example_sentence_native": "L'obbedienza alle regole è fondamentale.", + "example_sentence_english": "Obedience to rules is fundamental.", + "pos": "noun", + "word_frequency": 11431 + }, + { + "word": "odioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hateful;odious", + "romanization": "odioso", + "example_sentence_native": "Il suo comportamento era odioso.", + "example_sentence_english": "His behavior was odious.", + "pos": "adjective", + "word_frequency": 11432 + }, + { + "word": "palloncino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "balloon", + "romanization": "palloncino", + "example_sentence_native": "I bambini giocavano con i palloncini.", + "example_sentence_english": "The children were playing with the balloons.", + "pos": "noun", + "word_frequency": 11434 + }, + { + "word": "penultimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penultimate;second to last", + "romanization": "penultimo", + "example_sentence_native": "Ha finito al penultimo posto.", + "example_sentence_english": "He finished in second to last place.", + "pos": "adjective", + "word_frequency": 11437 + }, + { + "word": "pezzetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small piece;little bit", + "romanization": "pezzetto", + "example_sentence_native": "Dammi un pezzetto di pane.", + "example_sentence_english": "Give me a small piece of bread.", + "pos": "noun", + "word_frequency": 11438 + }, + { + "word": "piantagione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plantation", + "romanization": "piantagione", + "example_sentence_native": "La piantagione di caffè era molto estesa.", + "example_sentence_english": "The coffee plantation was very extensive.", + "pos": "noun", + "word_frequency": 11439 + }, + { + "word": "pinguino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penguin", + "romanization": "pinguino", + "example_sentence_native": "Il pinguino vive in Antartide.", + "example_sentence_english": "The penguin lives in Antarctica.", + "pos": "noun", + "word_frequency": 11440 + }, + { + "word": "plauso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "applause;acclaim", + "romanization": "plauso", + "example_sentence_native": "Il suo discorso ha ricevuto un grande plauso.", + "example_sentence_english": "His speech received great acclaim.", + "pos": "noun", + "word_frequency": 11441 + }, + { + "word": "polemico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polemical;controversial", + "romanization": "polemico", + "example_sentence_native": "Ha avuto un tono molto polemico durante la discussione.", + "example_sentence_english": "He had a very polemical tone during the discussion.", + "pos": "adjective", + "word_frequency": 11442 + }, + { + "word": "ponente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "west wind;west (direction)", + "romanization": "ponente", + "example_sentence_native": "Il vento di ponente soffia forte oggi.", + "example_sentence_english": "The west wind is blowing strongly today.", + "pos": "noun", + "word_frequency": 11443 + }, + { + "word": "poveretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poor thing;poor fellow", + "romanization": "poveretto", + "example_sentence_native": "Il poveretto ha perso tutto nel fuoco.", + "example_sentence_english": "The poor fellow lost everything in the fire.", + "pos": "noun", + "word_frequency": 11444 + }, + { + "word": "preesistente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pre-existing", + "romanization": "preesistente", + "example_sentence_native": "La condizione preesistente ha complicato la diagnosi.", + "example_sentence_english": "The pre-existing condition complicated the diagnosis.", + "pos": "adjective", + "word_frequency": 11445 + }, + { + "word": "quantistico", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "quantum", + "romanization": "quantistico", + "example_sentence_native": "La fisica quantistica è un campo di studio complesso.", + "example_sentence_english": "Quantum physics is a complex field of study.", + "pos": "adjective", + "word_frequency": 11447 + }, + { + "word": "ranking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ranking", + "romanization": "ranking", + "example_sentence_native": "Il suo ranking nel tennis è migliorato molto quest'anno.", + "example_sentence_english": "His tennis ranking improved a lot this year.", + "pos": "noun", + "word_frequency": 11448 + }, + { + "word": "rarità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rarity", + "romanization": "rarità", + "example_sentence_native": "Questo francobollo è una vera rarità per i collezionisti.", + "example_sentence_english": "This stamp is a true rarity for collectors.", + "pos": "noun", + "word_frequency": 11449 + }, + { + "word": "reciprocamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reciprocally;mutually", + "romanization": "reciprocamente", + "example_sentence_native": "Si sono aiutati reciprocamente a superare la difficoltà.", + "example_sentence_english": "They helped each other reciprocally to overcome the difficulty.", + "pos": "adverb", + "word_frequency": 11450 + }, + { + "word": "reperibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reachable;available (to be found)", + "romanization": "reperibile", + "example_sentence_native": "Sarò reperibile al telefono per tutta la giornata.", + "example_sentence_english": "I will be reachable by phone all day.", + "pos": "adjective", + "word_frequency": 11452 + }, + { + "word": "ricaduta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relapse;setback;fallout", + "romanization": "ricaduta", + "example_sentence_native": "Ha avuto una ricaduta dopo un periodo di miglioramento.", + "example_sentence_english": "He had a relapse after a period of improvement.", + "pos": "noun", + "word_frequency": 11453 + }, + { + "word": "rieleggere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-elect", + "romanization": "rieleggere", + "example_sentence_native": "Il presidente spera di essere rieletto per un secondo mandato.", + "example_sentence_english": "The president hopes to be re-elected for a second term.", + "pos": "verb", + "word_frequency": 11454 + }, + { + "word": "rilassare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to relax", + "romanization": "rilassare", + "example_sentence_native": "Dopo una lunga giornata, mi piace rilassarmi sul divano.", + "example_sentence_english": "After a long day, I like to relax on the sofa.", + "pos": "verb", + "word_frequency": 11456 + }, + { + "word": "rilevamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detection;survey;measurement", + "romanization": "rilevamento", + "example_sentence_native": "Il rilevamento dei dati è fondamentale per la ricerca.", + "example_sentence_english": "Data detection is fundamental for research.", + "pos": "noun", + "word_frequency": 11457 + }, + { + "word": "ripagare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repay;to pay back", + "romanization": "ripagare", + "example_sentence_native": "Voglio ripagare il favore che mi hai fatto.", + "example_sentence_english": "I want to repay the favor you did for me.", + "pos": "verb", + "word_frequency": 11458 + }, + { + "word": "scaldare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to heat;to warm up", + "romanization": "scaldare", + "example_sentence_native": "Puoi scaldare il latte per favore?", + "example_sentence_english": "Can you heat the milk please?", + "pos": "verb", + "word_frequency": 11460 + }, + { + "word": "schifezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junk;rubbish;disgusting thing", + "romanization": "schifezza", + "example_sentence_native": "Non voglio mangiare questa schifezza.", + "example_sentence_english": "I don't want to eat this junk.", + "pos": "noun", + "word_frequency": 11461 + }, + { + "word": "simulare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to simulate;to feign", + "romanization": "simulare", + "example_sentence_native": "Hanno simulato un attacco per l'esercitazione.", + "example_sentence_english": "They simulated an attack for the exercise.", + "pos": "verb", + "word_frequency": 11463 + }, + { + "word": "sinfonia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symphony", + "romanization": "sinfonia", + "example_sentence_native": "La nona sinfonia di Beethoven è un capolavoro.", + "example_sentence_english": "Beethoven's Ninth Symphony is a masterpiece.", + "pos": "noun", + "word_frequency": 11464 + }, + { + "word": "sipario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curtain (theatre)", + "romanization": "sipario", + "example_sentence_native": "Il sipario si è alzato e lo spettacolo è iniziato.", + "example_sentence_english": "The curtain rose and the show began.", + "pos": "noun", + "word_frequency": 11465 + }, + { + "word": "sollecitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to urge;to request;to solicit", + "romanization": "sollecitare", + "example_sentence_native": "Vorrei sollecitare una risposta alla mia richiesta.", + "example_sentence_english": "I would like to urge a response to my request.", + "pos": "verb", + "word_frequency": 11466 + }, + { + "word": "sorteggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draw;lottery;raffle", + "romanization": "sorteggio", + "example_sentence_native": "Il sorteggio per la lotteria si terrà domani.", + "example_sentence_english": "The lottery draw will be held tomorrow.", + "pos": "noun", + "word_frequency": 11467 + }, + { + "word": "sospiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sigh", + "romanization": "sospiro", + "example_sentence_native": "Ha emesso un sospiro di sollievo.", + "example_sentence_english": "He let out a sigh of relief.", + "pos": "noun", + "word_frequency": 11468 + }, + { + "word": "stressante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stressful", + "romanization": "stressante", + "example_sentence_native": "Il suo lavoro è molto stressante.", + "example_sentence_english": "His job is very stressful.", + "pos": "adjective", + "word_frequency": 11469 + }, + { + "word": "strumentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instrumentation;equipment", + "romanization": "strumentazione", + "example_sentence_native": "La strumentazione del laboratorio è all'avanguardia.", + "example_sentence_english": "The laboratory instrumentation is state-of-the-art.", + "pos": "noun", + "word_frequency": 11470 + }, + { + "word": "subordinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subordinate", + "romanization": "subordinato", + "example_sentence_native": "La clausola subordinata dipende dalla principale.", + "example_sentence_english": "The subordinate clause depends on the main one.", + "pos": "adjective", + "word_frequency": 11471 + }, + { + "word": "sudamericano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "South American", + "romanization": "sudamericano", + "example_sentence_native": "Molti calciatori sudamericani giocano in Europa.", + "example_sentence_english": "Many South American footballers play in Europe.", + "pos": "adjective", + "word_frequency": 11472 + }, + { + "word": "talora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sometimes;occasionally (formal)", + "romanization": "talora", + "example_sentence_native": "Talora, la verità è difficile da accettare.", + "example_sentence_english": "Sometimes, the truth is hard to accept.", + "pos": "adverb", + "word_frequency": 11473 + }, + { + "word": "trattore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tractor", + "romanization": "trattore", + "example_sentence_native": "Il contadino usa il trattore per arare il campo.", + "example_sentence_english": "The farmer uses the tractor to plow the field.", + "pos": "noun", + "word_frequency": 11478 + }, + { + "word": "tributario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tax;tributary", + "romanization": "tributario", + "example_sentence_native": "Il sistema tributario italiano è complesso.", + "example_sentence_english": "The Italian tax system is complex.", + "pos": "adjective", + "word_frequency": 11479 + }, + { + "word": "unilaterale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unilateral", + "romanization": "unilaterale", + "example_sentence_native": "La decisione è stata unilaterale.", + "example_sentence_english": "The decision was unilateral.", + "pos": "adjective", + "word_frequency": 11480 + }, + { + "word": "urbanistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urban planning;urbanistic", + "romanization": "urbanistico", + "example_sentence_native": "Il piano urbanistico prevede nuove aree verdi.", + "example_sentence_english": "The urban planning scheme foresees new green areas.", + "pos": "adjective", + "word_frequency": 11481 + }, + { + "word": "vanità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vanity", + "romanization": "vanità", + "example_sentence_native": "La sua vanità era evidente a tutti.", + "example_sentence_english": "His vanity was evident to everyone.", + "pos": "noun", + "word_frequency": 11482 + }, + { + "word": "vescica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bladder;blister", + "romanization": "vescica", + "example_sentence_native": "Ho una vescica sul tallone.", + "example_sentence_english": "I have a blister on my heel.", + "pos": "noun", + "word_frequency": 11483 + }, + { + "word": "youtuber", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "YouTuber", + "romanization": "youtuber", + "example_sentence_native": "Mio fratello vuole diventare uno youtuber famoso.", + "example_sentence_english": "My brother wants to become a famous YouTuber.", + "pos": "noun", + "word_frequency": 11486 + }, + { + "word": "afferrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grasp;to seize", + "romanization": "afferrare", + "example_sentence_native": "Ha afferrato la palla al volo.", + "example_sentence_english": "He grasped the ball in mid-air.", + "pos": "verb", + "word_frequency": 11487 + }, + { + "word": "aiutante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "helper;assistant", + "romanization": "aiutante", + "example_sentence_native": "L'aiutante ha preparato gli strumenti.", + "example_sentence_english": "The helper prepared the tools.", + "pos": "noun", + "word_frequency": 11488 + }, + { + "word": "algebra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "algebra", + "romanization": "algebra", + "example_sentence_native": "Ho studiato algebra al liceo.", + "example_sentence_english": "I studied algebra in high school.", + "pos": "noun", + "word_frequency": 11490 + }, + { + "word": "allungato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elongated;stretched", + "romanization": "allungato", + "example_sentence_native": "Ha un viso allungato.", + "example_sentence_english": "He has an elongated face.", + "pos": "adjective", + "word_frequency": 11493 + }, + { + "word": "alternare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to alternate", + "romanization": "alternare", + "example_sentence_native": "Dobbiamo alternare lavoro e riposo.", + "example_sentence_english": "We must alternate work and rest.", + "pos": "verb", + "word_frequency": 11494 + }, + { + "word": "angolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "angular;corner", + "romanization": "angolare", + "example_sentence_native": "Ha comprato un divano angolare.", + "example_sentence_english": "He bought a corner sofa.", + "pos": "adjective", + "word_frequency": 11497 + }, + { + "word": "arcangelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archangel", + "romanization": "arcangelo", + "example_sentence_native": "L'arcangelo Gabriele annunciò la nascita.", + "example_sentence_english": "The archangel Gabriel announced the birth.", + "pos": "noun", + "word_frequency": 11498 + }, + { + "word": "archiviare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to archive;to file", + "romanization": "archiviare", + "example_sentence_native": "Devo archiviare questi documenti.", + "example_sentence_english": "I need to archive these documents.", + "pos": "verb", + "word_frequency": 11499 + }, + { + "word": "arretrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrears;backlog", + "romanization": "arretrato", + "example_sentence_native": "Ha pagato tutti gli arretrati.", + "example_sentence_english": "He paid all the arrears.", + "pos": "noun", + "word_frequency": 11500 + }, + { + "word": "articolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to articulate", + "romanization": "articolare", + "example_sentence_native": "È importante articolare bene le parole.", + "example_sentence_english": "It's important to articulate words well.", + "pos": "verb", + "word_frequency": 11501 + }, + { + "word": "asciugare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dry", + "romanization": "asciugare", + "example_sentence_native": "Puoi asciugare i piatti, per favore?", + "example_sentence_english": "Can you dry the dishes, please?", + "pos": "verb", + "word_frequency": 11502 + }, + { + "word": "autopsia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "autopsy", + "romanization": "autopsia", + "example_sentence_native": "L'autopsia ha rivelato la causa della morte.", + "example_sentence_english": "The autopsy revealed the cause of death.", + "pos": "noun", + "word_frequency": 11504 + }, + { + "word": "azionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stock;share (related to shares)", + "romanization": "azionario", + "example_sentence_native": "Il mercato azionario è in crescita.", + "example_sentence_english": "The stock market is growing.", + "pos": "adjective", + "word_frequency": 11505 + }, + { + "word": "brillare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shine;to sparkle", + "romanization": "brillare", + "example_sentence_native": "Le stelle brillano nel cielo.", + "example_sentence_english": "The stars shine in the sky.", + "pos": "verb", + "word_frequency": 11509 + }, + { + "word": "caffeina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caffeine", + "romanization": "caffeina", + "example_sentence_native": "Il caffè contiene caffeina.", + "example_sentence_english": "Coffee contains caffeine.", + "pos": "noun", + "word_frequency": 11510 + }, + { + "word": "calcestruzzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concrete", + "romanization": "calcestruzzo", + "example_sentence_native": "Il ponte è fatto di calcestruzzo armato.", + "example_sentence_english": "The bridge is made of reinforced concrete.", + "pos": "noun", + "word_frequency": 11511 + }, + { + "word": "calcistico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "football (soccer) related", + "romanization": "calcistico", + "example_sentence_native": "È un grande evento calcistico.", + "example_sentence_english": "It's a big football event.", + "pos": "adjective", + "word_frequency": 11512 + }, + { + "word": "capolinea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terminus;end of the line", + "romanization": "capolinea", + "example_sentence_native": "Siamo arrivati al capolinea dell'autobus.", + "example_sentence_english": "We arrived at the bus terminus.", + "pos": "noun", + "word_frequency": 11513 + }, + { + "word": "cardine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hinge;cornerstone;linchpin", + "romanization": "cardine", + "example_sentence_native": "Questo è il punto cardine della discussione.", + "example_sentence_english": "This is the cornerstone of the discussion.", + "pos": "noun", + "word_frequency": 11514 + }, + { + "word": "cecchino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sniper", + "romanization": "cecchino", + "example_sentence_native": "Il cecchino era appostato sul tetto.", + "example_sentence_english": "The sniper was positioned on the roof.", + "pos": "noun", + "word_frequency": 11515 + }, + { + "word": "chicco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain;bean;berry", + "romanization": "chicco", + "example_sentence_native": "Un chicco di caffè.", + "example_sentence_english": "A coffee bean.", + "pos": "noun", + "word_frequency": 11517 + }, + { + "word": "clacson", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horn (of a vehicle)", + "romanization": "clacson", + "example_sentence_native": "Ha suonato il clacson per avvertire.", + "example_sentence_english": "He honked the horn to warn.", + "pos": "noun", + "word_frequency": 11519 + }, + { + "word": "completezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completeness", + "romanization": "completezza", + "example_sentence_native": "La completezza delle informazioni è fondamentale.", + "example_sentence_english": "The completeness of the information is fundamental.", + "pos": "noun", + "word_frequency": 11521 + }, + { + "word": "conformazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conformation", + "romanization": "conformazione", + "example_sentence_native": "La conformazione geologica del terreno è complessa.", + "example_sentence_english": "The geological conformation of the terrain is complex.", + "pos": "noun", + "word_frequency": 11522 + }, + { + "word": "criticità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criticality", + "romanization": "criticità", + "example_sentence_native": "Abbiamo identificato alcune criticità nel processo.", + "example_sentence_english": "We identified some critical issues in the process.", + "pos": "noun", + "word_frequency": 11523 + }, + { + "word": "curiosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curiously", + "romanization": "curiosamente", + "example_sentence_native": "Curiosamente, nessuno si è presentato.", + "example_sentence_english": "Curiously, no one showed up.", + "pos": "adverb", + "word_frequency": 11524 + }, + { + "word": "dannazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damnation", + "romanization": "dannazione", + "example_sentence_native": "La dannazione eterna è un concetto religioso.", + "example_sentence_english": "Eternal damnation is a religious concept.", + "pos": "noun", + "word_frequency": 11526 + }, + { + "word": "decollo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "takeoff", + "romanization": "decollo", + "example_sentence_native": "Il decollo dell'aereo è stato ritardato.", + "example_sentence_english": "The plane's takeoff was delayed.", + "pos": "noun", + "word_frequency": 11527 + }, + { + "word": "digestione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digestion", + "romanization": "digestione", + "example_sentence_native": "Una buona digestione è importante per la salute.", + "example_sentence_english": "Good digestion is important for health.", + "pos": "noun", + "word_frequency": 11532 + }, + { + "word": "distorsione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprain", + "romanization": "distorsione", + "example_sentence_native": "Ho subito una distorsione alla caviglia.", + "example_sentence_english": "I suffered an ankle sprain.", + "pos": "noun", + "word_frequency": 11533 + }, + { + "word": "dormitorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dormitory", + "romanization": "dormitorio", + "example_sentence_native": "Gli studenti vivono nel dormitorio universitario.", + "example_sentence_english": "The students live in the university dormitory.", + "pos": "noun", + "word_frequency": 11535 + }, + { + "word": "duraturo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lasting", + "romanization": "duraturo", + "example_sentence_native": "Vogliamo costruire una relazione duratura.", + "example_sentence_english": "We want to build a lasting relationship.", + "pos": "adjective", + "word_frequency": 11536 + }, + { + "word": "eresia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heresy", + "romanization": "eresia", + "example_sentence_native": "Affermare ciò era considerata un'eresia.", + "example_sentence_english": "Stating that was considered a heresy.", + "pos": "noun", + "word_frequency": 11540 + }, + { + "word": "esitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hesitate", + "romanization": "esitare", + "example_sentence_native": "Non esitare a chiedere aiuto.", + "example_sentence_english": "Don't hesitate to ask for help.", + "pos": "verb", + "word_frequency": 11541 + }, + { + "word": "estorsione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extortion", + "romanization": "estorsione", + "example_sentence_native": "È stato accusato di estorsione.", + "example_sentence_english": "He was accused of extortion.", + "pos": "noun", + "word_frequency": 11542 + }, + { + "word": "etrusco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Etruscan", + "romanization": "etrusco", + "example_sentence_native": "Gli Etruschi erano un'antica civiltà italiana.", + "example_sentence_english": "The Etruscans were an ancient Italian civilization.", + "pos": "noun", + "word_frequency": 11543 + }, + { + "word": "fiducioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confident", + "romanization": "fiducioso", + "example_sentence_native": "Sono fiducioso nel futuro.", + "example_sentence_english": "I am confident about the future.", + "pos": "adjective", + "word_frequency": 11549 + }, + { + "word": "flessione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flexion", + "romanization": "flessione", + "example_sentence_native": "Abbiamo notato una flessione delle vendite.", + "example_sentence_english": "We noticed a decline in sales.", + "pos": "noun", + "word_frequency": 11551 + }, + { + "word": "foca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seal", + "romanization": "foca", + "example_sentence_native": "La foca nuota agilmente nell'acqua.", + "example_sentence_english": "The seal swims agilely in the water.", + "pos": "noun", + "word_frequency": 11552 + }, + { + "word": "germanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Germanic", + "romanization": "germanico", + "example_sentence_native": "Le lingue germaniche includono l'inglese e il tedesco.", + "example_sentence_english": "Germanic languages include English and German.", + "pos": "adjective", + "word_frequency": 11555 + }, + { + "word": "germano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mallard", + "romanization": "germano", + "example_sentence_native": "Ho visto un germano reale nel lago.", + "example_sentence_english": "I saw a mallard in the lake.", + "pos": "noun", + "word_frequency": 11556 + }, + { + "word": "giurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "juror", + "romanization": "giurato", + "example_sentence_native": "Ogni giurato deve esprimere il proprio verdetto.", + "example_sentence_english": "Each juror must express their verdict.", + "pos": "noun", + "word_frequency": 11558 + }, + { + "word": "grafia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handwriting;spelling;orthography", + "romanization": "grafia", + "example_sentence_native": "La sua grafia è molto chiara.", + "example_sentence_english": "His handwriting is very clear.", + "pos": "noun", + "word_frequency": 11561 + }, + { + "word": "guidatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "driver", + "romanization": "guidatore", + "example_sentence_native": "Il guidatore ha parcheggiato l'auto.", + "example_sentence_english": "The driver parked the car.", + "pos": "noun", + "word_frequency": 11562 + }, + { + "word": "hosting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hosting", + "romanization": "hosting", + "example_sentence_native": "Abbiamo bisogno di un servizio di hosting affidabile per il nostro sito web.", + "example_sentence_english": "We need a reliable hosting service for our website.", + "pos": "noun", + "word_frequency": 11563 + }, + { + "word": "identificativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identifying;identification (as noun)", + "romanization": "identificativo", + "example_sentence_native": "Il numero identificativo è richiesto per l'accesso.", + "example_sentence_english": "The identification number is required for access.", + "pos": "adjective", + "word_frequency": 11564 + }, + { + "word": "immacolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immaculate;spotless", + "romanization": "immacolato", + "example_sentence_native": "La casa era immacolata dopo la pulizia.", + "example_sentence_english": "The house was immaculate after cleaning.", + "pos": "adjective", + "word_frequency": 11565 + }, + { + "word": "imprimere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impress;to imprint;to print", + "romanization": "imprimere", + "example_sentence_native": "Il timbro serve a imprimere il logo sulla carta.", + "example_sentence_english": "The stamp is used to imprint the logo on the paper.", + "pos": "verb", + "word_frequency": 11566 + }, + { + "word": "inaugurale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaugural", + "romanization": "inaugurale", + "example_sentence_native": "Il discorso inaugurale è stato molto apprezzato.", + "example_sentence_english": "The inaugural speech was much appreciated.", + "pos": "adjective", + "word_frequency": 11567 + }, + { + "word": "incompatibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incompatible", + "romanization": "incompatibile", + "example_sentence_native": "Le due versioni del software sono incompatibili.", + "example_sentence_english": "The two software versions are incompatible.", + "pos": "adjective", + "word_frequency": 11568 + }, + { + "word": "ininterrottamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uninterruptedly;continuously", + "romanization": "ininterrottamente", + "example_sentence_native": "Ha lavorato ininterrottamente per dieci ore.", + "example_sentence_english": "He worked uninterruptedly for ten hours.", + "pos": "adverb", + "word_frequency": 11569 + }, + { + "word": "inseguimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pursuit;chase", + "romanization": "inseguimento", + "example_sentence_native": "La polizia è partita all'inseguimento del ladro.", + "example_sentence_english": "The police started the pursuit of the thief.", + "pos": "noun", + "word_frequency": 11570 + }, + { + "word": "irresponsabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irresponsible", + "romanization": "irresponsabile", + "example_sentence_native": "Il suo comportamento è stato completamente irresponsabile.", + "example_sentence_english": "His behavior was completely irresponsible.", + "pos": "adjective", + "word_frequency": 11571 + }, + { + "word": "listino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "price list;stock exchange list", + "romanization": "listino", + "example_sentence_native": "Il listino prezzi è stato aggiornato.", + "example_sentence_english": "The price list has been updated.", + "pos": "noun", + "word_frequency": 11576 + }, + { + "word": "lucano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lucanian (from Basilicata region of Italy)", + "romanization": "lucano", + "example_sentence_native": "La cucina lucana è ricca di sapori tradizionali.", + "example_sentence_english": "Lucanian cuisine is rich in traditional flavors.", + "pos": "adjective", + "word_frequency": 11579 + }, + { + "word": "lux", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lux (unit of illuminance)", + "romanization": "lux", + "example_sentence_native": "La luce in questa stanza è di 500 lux.", + "example_sentence_english": "The light in this room is 500 lux.", + "pos": "noun", + "word_frequency": 11580 + }, + { + "word": "macedone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Macedonian", + "romanization": "macedone", + "example_sentence_native": "Parla fluentemente il macedone.", + "example_sentence_english": "He speaks Macedonian fluently.", + "pos": "adjective", + "word_frequency": 11581 + }, + { + "word": "madama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madam;lady", + "romanization": "madama", + "example_sentence_native": "La madama del castello era molto elegante.", + "example_sentence_english": "The lady of the castle was very elegant.", + "pos": "noun", + "word_frequency": 11582 + }, + { + "word": "maleducato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rude;ill-mannered", + "romanization": "maleducato", + "example_sentence_native": "È stato molto maleducato con il cameriere.", + "example_sentence_english": "He was very rude to the waiter.", + "pos": "adjective", + "word_frequency": 11583 + }, + { + "word": "masters", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masters (e.g.;Master's degree;Masters tournament)", + "romanization": "masters", + "example_sentence_native": "Ha conseguito un masters in ingegneria.", + "example_sentence_english": "He obtained a master's degree in engineering.", + "pos": "noun", + "word_frequency": 11588 + }, + { + "word": "minestra", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "soup;minestrone", + "romanization": "minestra", + "example_sentence_native": "Mi piace mangiare la minestra calda in inverno.", + "example_sentence_english": "I like to eat hot soup in winter.", + "pos": "noun", + "word_frequency": 11592 + }, + { + "word": "monito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warning;admonition", + "romanization": "monito", + "example_sentence_native": "Il suo discorso è stato un monito per tutti.", + "example_sentence_english": "His speech was a warning to everyone.", + "pos": "noun", + "word_frequency": 11594 + }, + { + "word": "mordere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bite", + "romanization": "mordere", + "example_sentence_native": "Attenzione, il cane potrebbe mordere.", + "example_sentence_english": "Be careful, the dog might bite.", + "pos": "verb", + "word_frequency": 11595 + }, + { + "word": "navy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "navy (color or military branch)", + "romanization": "navy", + "example_sentence_native": "Ha comprato un vestito color navy.", + "example_sentence_english": "She bought a navy colored dress.", + "pos": "noun", + "word_frequency": 11597 + }, + { + "word": "oltreoceano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overseas", + "romanization": "oltreoceano", + "example_sentence_native": "Molti prodotti vengono importati oltreoceano.", + "example_sentence_english": "Many products are imported from overseas.", + "pos": "adverb", + "word_frequency": 11601 + }, + { + "word": "oppresso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppressed", + "romanization": "oppresso", + "example_sentence_native": "La popolazione si sentiva oppressa dal regime.", + "example_sentence_english": "The population felt oppressed by the regime.", + "pos": "adjective", + "word_frequency": 11602 + }, + { + "word": "palazzina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small building", + "romanization": "palazzina", + "example_sentence_native": "Vivono in una graziosa palazzina nel centro storico.", + "example_sentence_english": "They live in a charming small building in the historic center.", + "pos": "noun", + "word_frequency": 11603 + }, + { + "word": "passerella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catwalk", + "romanization": "passerella", + "example_sentence_native": "La modella ha sfilato sulla passerella con eleganza.", + "example_sentence_english": "The model walked gracefully on the catwalk.", + "pos": "noun", + "word_frequency": 11604 + }, + { + "word": "processuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "procedural", + "romanization": "processuale", + "example_sentence_native": "Hanno avviato una nuova fase processuale.", + "example_sentence_english": "They have started a new procedural phase.", + "pos": "adjective", + "word_frequency": 11609 + }, + { + "word": "prognosi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prognosis", + "romanization": "prognosi", + "example_sentence_native": "La prognosi per il paziente è favorevole.", + "example_sentence_english": "The prognosis for the patient is favorable.", + "pos": "noun", + "word_frequency": 11610 + }, + { + "word": "ragionevolmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasonably", + "romanization": "ragionevolmente", + "example_sentence_native": "Ha risposto ragionevolmente alle domande.", + "example_sentence_english": "He answered the questions reasonably.", + "pos": "adverb", + "word_frequency": 11613 + }, + { + "word": "reggae", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reggae", + "romanization": "reggae", + "example_sentence_native": "Ascolta musica reggae per rilassarsi.", + "example_sentence_english": "He listens to reggae music to relax.", + "pos": "noun", + "word_frequency": 11614 + }, + { + "word": "riconoscenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratitude", + "romanization": "riconoscenza", + "example_sentence_native": "Ha espresso la sua profonda riconoscenza.", + "example_sentence_english": "He expressed his deep gratitude.", + "pos": "noun", + "word_frequency": 11615 + }, + { + "word": "ricoverato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospitalized patient", + "romanization": "ricoverato", + "example_sentence_native": "Il ricoverato è in condizioni stabili.", + "example_sentence_english": "The hospitalized patient is in stable condition.", + "pos": "noun", + "word_frequency": 11616 + }, + { + "word": "ricreare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recreate", + "romanization": "ricreare", + "example_sentence_native": "Hanno cercato di ricreare l'atmosfera originale.", + "example_sentence_english": "They tried to recreate the original atmosphere.", + "pos": "verb", + "word_frequency": 11617 + }, + { + "word": "risentire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feel again;to resent", + "romanization": "risentire", + "example_sentence_native": "Si è risentito per il commento.", + "example_sentence_english": "He resented the comment.", + "pos": "verb", + "word_frequency": 11618 + }, + { + "word": "sandalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sandal", + "romanization": "sandalo", + "example_sentence_native": "Ha comprato un nuovo paio di sandali.", + "example_sentence_english": "She bought a new pair of sandals.", + "pos": "noun", + "word_frequency": 11623 + }, + { + "word": "serenamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serenely", + "romanization": "serenamente", + "example_sentence_native": "Ha accettato la notizia serenamente.", + "example_sentence_english": "She accepted the news serenely.", + "pos": "adverb", + "word_frequency": 11625 + }, + { + "word": "sismico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seismic", + "romanization": "sismico", + "example_sentence_native": "La zona è ad alto rischio sismico.", + "example_sentence_english": "The area is at high seismic risk.", + "pos": "adjective", + "word_frequency": 11628 + }, + { + "word": "smontare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismantle", + "romanization": "smontare", + "example_sentence_native": "Dobbiamo smontare il mobile prima di trasportarlo.", + "example_sentence_english": "We need to dismantle the furniture before transporting it.", + "pos": "verb", + "word_frequency": 11630 + }, + { + "word": "socializzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to socialize", + "romanization": "socializzare", + "example_sentence_native": "Gli piace socializzare con nuove persone.", + "example_sentence_english": "He likes to socialize with new people.", + "pos": "verb", + "word_frequency": 11631 + }, + { + "word": "sofisticato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sophisticated", + "romanization": "sofisticato", + "example_sentence_native": "Ha un gusto molto sofisticato.", + "example_sentence_english": "He has a very sophisticated taste.", + "pos": "adjective", + "word_frequency": 11632 + }, + { + "word": "spogliatoio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "changing room", + "romanization": "spogliatoio", + "example_sentence_native": "Ci siamo cambiati nello spogliatoio prima della partita.", + "example_sentence_english": "We changed in the changing room before the game.", + "pos": "noun", + "word_frequency": 11633 + }, + { + "word": "squalifica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disqualification", + "romanization": "squalifica", + "example_sentence_native": "Ha ricevuto una squalifica di due partite.", + "example_sentence_english": "He received a two-match disqualification.", + "pos": "noun", + "word_frequency": 11634 + }, + { + "word": "stanziato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allocated", + "romanization": "stanziato", + "example_sentence_native": "Sono stati stanziati fondi per il progetto.", + "example_sentence_english": "Funds have been allocated for the project.", + "pos": "adjective", + "word_frequency": 11635 + }, + { + "word": "sudare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sweat", + "romanization": "sudare", + "example_sentence_native": "Ho iniziato a sudare dopo la corsa.", + "example_sentence_english": "I started to sweat after the run.", + "pos": "verb", + "word_frequency": 11637 + }, + { + "word": "suddiviso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subdivided", + "romanization": "suddiviso", + "example_sentence_native": "Il libro è suddiviso in capitoli.", + "example_sentence_english": "The book is subdivided into chapters.", + "pos": "adjective", + "word_frequency": 11638 + }, + { + "word": "tantum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lump sum;one-off", + "romanization": "tantum", + "example_sentence_native": "Hanno pagato una somma una tantum.", + "example_sentence_english": "They paid a one-off sum.", + "pos": "adverb", + "word_frequency": 11639 + }, + { + "word": "telescopio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telescope", + "romanization": "telescopio", + "example_sentence_native": "Ho usato il telescopio per guardare le stelle.", + "example_sentence_english": "I used the telescope to look at the stars.", + "pos": "noun", + "word_frequency": 11640 + }, + { + "word": "toccante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "touching;moving", + "romanization": "toccante", + "example_sentence_native": "La sua storia era davvero toccante.", + "example_sentence_english": "Her story was truly touching.", + "pos": "adjective", + "word_frequency": 11641 + }, + { + "word": "tormenta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blizzard;storm", + "romanization": "tormenta", + "example_sentence_native": "Una forte tormenta di neve ha bloccato le strade.", + "example_sentence_english": "A strong snow blizzard blocked the roads.", + "pos": "noun", + "word_frequency": 11643 + }, + { + "word": "trasloco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "move;relocation", + "romanization": "trasloco", + "example_sentence_native": "Il trasloco nella nuova casa è stato faticoso.", + "example_sentence_english": "The move to the new house was tiring.", + "pos": "noun", + "word_frequency": 11644 + }, + { + "word": "traumatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traumatic", + "romanization": "traumatico", + "example_sentence_native": "L'esperienza è stata molto traumatica per lui.", + "example_sentence_english": "The experience was very traumatic for him.", + "pos": "adjective", + "word_frequency": 11645 + }, + { + "word": "tuono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thunder", + "romanization": "tuono", + "example_sentence_native": "Abbiamo sentito un forte tuono dopo il lampo.", + "example_sentence_english": "We heard a loud thunder after the lightning.", + "pos": "noun", + "word_frequency": 11647 + }, + { + "word": "turba", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crowd;mob", + "romanization": "turba", + "example_sentence_native": "Una turba di persone si è radunata in piazza.", + "example_sentence_english": "A crowd of people gathered in the square.", + "pos": "noun", + "word_frequency": 11648 + }, + { + "word": "ventilazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ventilation", + "romanization": "ventilazione", + "example_sentence_native": "È necessaria una buona ventilazione in questo ambiente.", + "example_sentence_english": "Good ventilation is necessary in this environment.", + "pos": "noun", + "word_frequency": 11651 + }, + { + "word": "verosimile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plausible;probable", + "romanization": "verosimile", + "example_sentence_native": "La sua spiegazione sembra verosimile.", + "example_sentence_english": "His explanation seems plausible.", + "pos": "adjective", + "word_frequency": 11652 + }, + { + "word": "vescovile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "episcopal;bishop's", + "romanization": "vescovile", + "example_sentence_native": "Ha visitato la residenza vescovile.", + "example_sentence_english": "He visited the episcopal residence.", + "pos": "adjective", + "word_frequency": 11653 + }, + { + "word": "volatile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volatile (substance);fowl (bird)", + "romanization": "volatile", + "example_sentence_native": "I composti volatili evaporano rapidamente.", + "example_sentence_english": "Volatile compounds evaporate quickly.", + "pos": "noun", + "word_frequency": 11654 + }, + { + "word": "whisky", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whisky", + "romanization": "whisky", + "example_sentence_native": "Ha ordinato un bicchiere di whisky.", + "example_sentence_english": "He ordered a glass of whisky.", + "pos": "noun", + "word_frequency": 11656 + }, + { + "word": "addire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to suit;to befit", + "romanization": "addire", + "example_sentence_native": "Questo colore non ti si addice molto.", + "example_sentence_english": "This color doesn't suit you very much.", + "pos": "verb", + "word_frequency": 11660 + }, + { + "word": "affollato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crowded", + "romanization": "affollato", + "example_sentence_native": "La piazza era affollata di turisti.", + "example_sentence_english": "The square was crowded with tourists.", + "pos": "adjective", + "word_frequency": 11661 + }, + { + "word": "agghiacciante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chilling;horrifying", + "romanization": "agghiacciante", + "example_sentence_native": "Ha raccontato una storia agghiacciante.", + "example_sentence_english": "He told a chilling story.", + "pos": "adjective", + "word_frequency": 11662 + }, + { + "word": "aggravare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to worsen;to aggravate", + "romanization": "aggravare", + "example_sentence_native": "La situazione potrebbe aggravarsi se non agiamo subito.", + "example_sentence_english": "The situation could worsen if we don't act immediately.", + "pos": "verb", + "word_frequency": 11663 + }, + { + "word": "ammasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mass;cluster;heap", + "romanization": "ammasso", + "example_sentence_native": "C'era un ammasso di rottami nel cortile.", + "example_sentence_english": "There was a heap of scrap metal in the yard.", + "pos": "noun", + "word_frequency": 11670 + }, + { + "word": "annale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annals;yearbook", + "romanization": "annale", + "example_sentence_native": "Gli annali storici riportano l'evento.", + "example_sentence_english": "The historical annals report the event.", + "pos": "noun", + "word_frequency": 11672 + }, + { + "word": "ansioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anxious", + "romanization": "ansioso", + "example_sentence_native": "Era ansioso di ricevere i risultati.", + "example_sentence_english": "He was anxious to receive the results.", + "pos": "adjective", + "word_frequency": 11673 + }, + { + "word": "antincendio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fire prevention", + "romanization": "antincendio", + "example_sentence_native": "Il sistema antincendio è stato installato di recente.", + "example_sentence_english": "The fire prevention system was recently installed.", + "pos": "noun", + "word_frequency": 11674 + }, + { + "word": "appendere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to hang", + "romanization": "appendere", + "example_sentence_native": "Ho appeso il quadro al muro.", + "example_sentence_english": "I hung the painting on the wall.", + "pos": "verb", + "word_frequency": 11675 + }, + { + "word": "artiglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claw;talon", + "romanization": "artiglio", + "example_sentence_native": "L'aquila ha afferrato la preda con i suoi artigli.", + "example_sentence_english": "The eagle grabbed the prey with its talons.", + "pos": "noun", + "word_frequency": 11676 + }, + { + "word": "ascia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "axe", + "romanization": "ascia", + "example_sentence_native": "Ha usato l'ascia per tagliare la legna.", + "example_sentence_english": "He used the axe to cut the wood.", + "pos": "noun", + "word_frequency": 11677 + }, + { + "word": "aspirare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aspire;to vacuum;to inhale", + "romanization": "aspirare", + "example_sentence_native": "Aspira a diventare un medico.", + "example_sentence_english": "He aspires to become a doctor.", + "pos": "verb", + "word_frequency": 11678 + }, + { + "word": "astronauta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astronaut", + "romanization": "astronauta", + "example_sentence_native": "L'astronauta ha viaggiato nello spazio.", + "example_sentence_english": "The astronaut traveled in space.", + "pos": "noun", + "word_frequency": 11679 + }, + { + "word": "attenere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pertain;to relate to", + "romanization": "attenere", + "example_sentence_native": "La sua ricerca si attiene ai principi scientifici.", + "example_sentence_english": "His research adheres to scientific principles.", + "pos": "verb", + "word_frequency": 11680 + }, + { + "word": "auditorium", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "auditorium", + "romanization": "auditorium", + "example_sentence_native": "L'auditorium era pieno per il concerto.", + "example_sentence_english": "The auditorium was full for the concert.", + "pos": "noun", + "word_frequency": 11681 + }, + { + "word": "banalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banality;triviality", + "romanization": "banalità", + "example_sentence_native": "Non sopporto le banalità nelle conversazioni.", + "example_sentence_english": "I can't stand banalities in conversations.", + "pos": "noun", + "word_frequency": 11682 + }, + { + "word": "bidone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bin;can;(colloquial) rip-off;scam", + "romanization": "bidone", + "example_sentence_native": "Getta la spazzatura nel bidone.", + "example_sentence_english": "Throw the trash in the bin.", + "pos": "noun", + "word_frequency": 11684 + }, + { + "word": "burocratico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucratic", + "romanization": "burocratico", + "example_sentence_native": "Il processo è troppo burocratico e lento.", + "example_sentence_english": "The process is too bureaucratic and slow.", + "pos": "adjective", + "word_frequency": 11690 + }, + { + "word": "cancelleria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stationery;chancery;office", + "romanization": "cancelleria", + "example_sentence_native": "Devo comprare della cancelleria nuova per l'ufficio.", + "example_sentence_english": "I need to buy new stationery for the office.", + "pos": "noun", + "word_frequency": 11693 + }, + { + "word": "carbonara", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carbonara (a pasta dish)", + "romanization": "carbonara", + "example_sentence_native": "La pasta alla carbonara è uno dei miei piatti preferiti.", + "example_sentence_english": "Pasta carbonara is one of my favorite dishes.", + "pos": "noun", + "word_frequency": 11696 + }, + { + "word": "centralità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centrality", + "romanization": "centralità", + "example_sentence_native": "La centralità del problema è evidente.", + "example_sentence_english": "The centrality of the problem is evident.", + "pos": "noun", + "word_frequency": 11697 + }, + { + "word": "comodino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nightstand;bedside table", + "romanization": "comodino", + "example_sentence_native": "Ho messo il libro sul comodino.", + "example_sentence_english": "I put the book on the nightstand.", + "pos": "noun", + "word_frequency": 11699 + }, + { + "word": "comparazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparison", + "romanization": "comparazione", + "example_sentence_native": "La comparazione tra i due sistemi è interessante.", + "example_sentence_english": "The comparison between the two systems is interesting.", + "pos": "noun", + "word_frequency": 11700 + }, + { + "word": "configurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to configure;to set up", + "romanization": "configurare", + "example_sentence_native": "Devi configurare il router per accedere a internet.", + "example_sentence_english": "You need to configure the router to access the internet.", + "pos": "verb", + "word_frequency": 11701 + }, + { + "word": "connettività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connectivity", + "romanization": "connettività", + "example_sentence_native": "Abbiamo problemi di connettività in questa zona.", + "example_sentence_english": "We have connectivity issues in this area.", + "pos": "noun", + "word_frequency": 11702 + }, + { + "word": "contraddistinguere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distinguish;to characterize", + "romanization": "contraddistinguere", + "example_sentence_native": "La sua onestà lo contraddistingue dagli altri.", + "example_sentence_english": "His honesty distinguishes him from others.", + "pos": "verb", + "word_frequency": 11703 + }, + { + "word": "coordinazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordination", + "romanization": "coordinazione", + "example_sentence_native": "La coordinazione del team è fondamentale per il successo.", + "example_sentence_english": "Team coordination is essential for success.", + "pos": "noun", + "word_frequency": 11704 + }, + { + "word": "culinario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "culinary", + "romanization": "culinario", + "example_sentence_native": "Ha un grande talento culinario.", + "example_sentence_english": "He has great culinary talent.", + "pos": "adjective", + "word_frequency": 11706 + }, + { + "word": "decomposizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decomposition", + "romanization": "decomposizione", + "example_sentence_native": "Il processo di decomposizione è naturale.", + "example_sentence_english": "The decomposition process is natural.", + "pos": "noun", + "word_frequency": 11710 + }, + { + "word": "designazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designation;appointment", + "romanization": "designazione", + "example_sentence_native": "La sua designazione a quel ruolo è stata una sorpresa.", + "example_sentence_english": "His designation to that role was a surprise.", + "pos": "noun", + "word_frequency": 11714 + }, + { + "word": "direttorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "directory (as in a governing body);directorate", + "romanization": "direttorio", + "example_sentence_native": "Il direttorio ha preso una decisione importante.", + "example_sentence_english": "The directory made an important decision.", + "pos": "noun", + "word_frequency": 11716 + }, + { + "word": "domenicale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sunday (adjective);weekly", + "romanization": "domenicale", + "example_sentence_native": "Leggo il supplemento domenicale del giornale.", + "example_sentence_english": "I read the Sunday supplement of the newspaper.", + "pos": "adjective", + "word_frequency": 11718 + }, + { + "word": "eccitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to excite;to arouse", + "romanization": "eccitare", + "example_sentence_native": "La notizia ha eccitato la folla.", + "example_sentence_english": "The news excited the crowd.", + "pos": "verb", + "word_frequency": 11719 + }, + { + "word": "esteticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aesthetically", + "romanization": "esteticamente", + "example_sentence_native": "La stanza è stata arredata esteticamente.", + "example_sentence_english": "The room was aesthetically furnished.", + "pos": "adverb", + "word_frequency": 11721 + }, + { + "word": "falò", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bonfire", + "romanization": "falò", + "example_sentence_native": "Abbiamo acceso un grande falò sulla spiaggia.", + "example_sentence_english": "We lit a large bonfire on the beach.", + "pos": "noun", + "word_frequency": 11724 + }, + { + "word": "fanatismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fanaticism", + "romanization": "fanatismo", + "example_sentence_native": "Il fanatismo religioso può portare a gravi conseguenze.", + "example_sentence_english": "Religious fanaticism can lead to serious consequences.", + "pos": "noun", + "word_frequency": 11725 + }, + { + "word": "fisiologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physiological", + "romanization": "fisiologico", + "example_sentence_native": "È una reazione fisiologica normale al freddo.", + "example_sentence_english": "It's a normal physiological reaction to cold.", + "pos": "adjective", + "word_frequency": 11726 + }, + { + "word": "frammentazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fragmentation", + "romanization": "frammentazione", + "example_sentence_native": "La frammentazione del disco rigido rallenta il computer.", + "example_sentence_english": "Hard disk fragmentation slows down the computer.", + "pos": "noun", + "word_frequency": 11727 + }, + { + "word": "frittata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "omelette", + "romanization": "frittata", + "example_sentence_native": "Ho preparato una deliziosa frittata con le verdure.", + "example_sentence_english": "I prepared a delicious omelette with vegetables.", + "pos": "noun", + "word_frequency": 11728 + }, + { + "word": "frizzante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparkling;fizzy", + "romanization": "frizzante", + "example_sentence_native": "Preferisco l'acqua frizzante a quella naturale.", + "example_sentence_english": "I prefer sparkling water to still water.", + "pos": "adjective", + "word_frequency": 11729 + }, + { + "word": "genuino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genuine;authentic", + "romanization": "genuino", + "example_sentence_native": "Il suo sorriso era sincero e genuino.", + "example_sentence_english": "His smile was sincere and genuine.", + "pos": "adjective", + "word_frequency": 11731 + }, + { + "word": "geograficamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geographically", + "romanization": "geograficamente", + "example_sentence_native": "L'Italia è geograficamente situata nel Mediterraneo.", + "example_sentence_english": "Italy is geographically located in the Mediterranean.", + "pos": "adverb", + "word_frequency": 11732 + }, + { + "word": "inadeguato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inadequate", + "romanization": "inadeguato", + "example_sentence_native": "Si sentiva inadeguato per il nuovo ruolo.", + "example_sentence_english": "He felt inadequate for the new role.", + "pos": "adjective", + "word_frequency": 11739 + }, + { + "word": "inarrestabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unstoppable", + "romanization": "inarrestabile", + "example_sentence_native": "La sua volontà di vincere era inarrestabile.", + "example_sentence_english": "His will to win was unstoppable.", + "pos": "adjective", + "word_frequency": 11740 + }, + { + "word": "incinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pregnant", + "romanization": "incinto", + "example_sentence_native": "Mia sorella è incinta di cinque mesi.", + "example_sentence_english": "My sister is five months pregnant.", + "pos": "adjective", + "word_frequency": 11741 + }, + { + "word": "insensibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insensitive;numb", + "romanization": "insensibile", + "example_sentence_native": "Era completamente insensibile alle critiche.", + "example_sentence_english": "He was completely insensitive to criticism.", + "pos": "adjective", + "word_frequency": 11743 + }, + { + "word": "inspiegabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexplicable", + "romanization": "inspiegabile", + "example_sentence_native": "C'era un silenzio inspiegabile nella casa.", + "example_sentence_english": "There was an inexplicable silence in the house.", + "pos": "adjective", + "word_frequency": 11744 + }, + { + "word": "ione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ion", + "romanization": "ione", + "example_sentence_native": "Un atomo può perdere o guadagnare elettroni per formare uno ione.", + "example_sentence_english": "An atom can lose or gain electrons to form an ion.", + "pos": "noun", + "word_frequency": 11745 + }, + { + "word": "islandese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Icelandic", + "romanization": "islandese", + "example_sentence_native": "La lingua islandese è molto antica.", + "example_sentence_english": "The Icelandic language is very old.", + "pos": "adjective", + "word_frequency": 11747 + }, + { + "word": "itinerante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "itinerant;traveling", + "romanization": "itinerante", + "example_sentence_native": "Il circo itinerante arriva in città la prossima settimana.", + "example_sentence_english": "The itinerant circus arrives in town next week.", + "pos": "adjective", + "word_frequency": 11748 + }, + { + "word": "lanterna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lantern", + "romanization": "lanterna", + "example_sentence_native": "Abbiamo usato una lanterna per illuminare il sentiero.", + "example_sentence_english": "We used a lantern to light the path.", + "pos": "noun", + "word_frequency": 11751 + }, + { + "word": "lasagna", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lasagna", + "romanization": "lasagna", + "example_sentence_native": "La lasagna della nonna è la migliore.", + "example_sentence_english": "Grandma's lasagna is the best.", + "pos": "noun", + "word_frequency": 11752 + }, + { + "word": "legittimamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimately", + "romanization": "legittimamente", + "example_sentence_native": "Ha agito legittimamente secondo la legge.", + "example_sentence_english": "He acted legitimately according to the law.", + "pos": "adverb", + "word_frequency": 11754 + }, + { + "word": "leucemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leukemia", + "romanization": "leucemia", + "example_sentence_native": "La ricerca sulla leucemia ha fatto grandi progressi.", + "example_sentence_english": "Leukemia research has made great progress.", + "pos": "noun", + "word_frequency": 11756 + }, + { + "word": "lume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "light (often small;or figurative)", + "romanization": "lume", + "example_sentence_native": "Leggeva a lume di candela.", + "example_sentence_english": "He was reading by candlelight.", + "pos": "noun", + "word_frequency": 11758 + }, + { + "word": "marxismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Marxism", + "romanization": "marxismo", + "example_sentence_native": "Il marxismo ha influenzato profondamente il pensiero politico del XX secolo.", + "example_sentence_english": "Marxism profoundly influenced 20th-century political thought.", + "pos": "noun", + "word_frequency": 11760 + }, + { + "word": "masticare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to chew", + "romanization": "masticare", + "example_sentence_native": "È importante masticare bene il cibo prima di ingoiarlo.", + "example_sentence_english": "It's important to chew food well before swallowing it.", + "pos": "verb", + "word_frequency": 11761 + }, + { + "word": "meramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merely;purely", + "romanization": "meramente", + "example_sentence_native": "La sua affermazione era meramente un'opinione personale.", + "example_sentence_english": "His statement was merely a personal opinion.", + "pos": "adverb", + "word_frequency": 11763 + }, + { + "word": "motorino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moped;scooter", + "romanization": "motorino", + "example_sentence_native": "Ha comprato un nuovo motorino per andare al lavoro.", + "example_sentence_english": "He bought a new moped to go to work.", + "pos": "noun", + "word_frequency": 11766 + }, + { + "word": "nasale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nasal", + "romanization": "nasale", + "example_sentence_native": "Ha una voce un po' nasale quando è raffreddato.", + "example_sentence_english": "He has a slightly nasal voice when he has a cold.", + "pos": "adjective", + "word_frequency": 11768 + }, + { + "word": "nigeriano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nigerian", + "romanization": "nigeriano", + "example_sentence_native": "La cucina nigeriana è ricca di sapori e spezie.", + "example_sentence_english": "Nigerian cuisine is rich in flavors and spices.", + "pos": "adjective", + "word_frequency": 11769 + }, + { + "word": "onorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honored;honorable", + "romanization": "onorato", + "example_sentence_native": "Sono onorato di ricevere questo premio.", + "example_sentence_english": "I am honored to receive this award.", + "pos": "adjective", + "word_frequency": 11771 + }, + { + "word": "ordinazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "order (e.g.;in a restaurant)", + "romanization": "ordinazione", + "example_sentence_native": "Abbiamo appena fatto la nostra ordinazione al cameriere.", + "example_sentence_english": "We just placed our order with the waiter.", + "pos": "noun", + "word_frequency": 11772 + }, + { + "word": "pacificamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peacefully", + "romanization": "pacificamente", + "example_sentence_native": "La manifestazione si è svolta pacificamente.", + "example_sentence_english": "The demonstration took place peacefully.", + "pos": "adverb", + "word_frequency": 11775 + }, + { + "word": "patologico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathological", + "romanization": "patologico", + "example_sentence_native": "Il suo comportamento è diventato patologico.", + "example_sentence_english": "His behavior has become pathological.", + "pos": "adjective", + "word_frequency": 11776 + }, + { + "word": "perplesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perplexed;puzzled", + "romanization": "perplesso", + "example_sentence_native": "Era perplesso dalla sua risposta inaspettata.", + "example_sentence_english": "He was perplexed by her unexpected answer.", + "pos": "adjective", + "word_frequency": 11778 + }, + { + "word": "pettegolezzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gossip", + "romanization": "pettegolezzo", + "example_sentence_native": "Non mi piacciono i pettegolezzi, preferisco parlare di cose serie.", + "example_sentence_english": "I don't like gossip, I prefer to talk about serious things.", + "pos": "noun", + "word_frequency": 11779 + }, + { + "word": "pipa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pipe (for smoking)", + "romanization": "pipa", + "example_sentence_native": "Il nonno fumava la pipa seduto in poltrona.", + "example_sentence_english": "Grandpa smoked his pipe sitting in the armchair.", + "pos": "noun", + "word_frequency": 11780 + }, + { + "word": "polmonite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pneumonia", + "romanization": "polmonite", + "example_sentence_native": "Ha avuto la polmonite e ha dovuto stare a letto per settimane.", + "example_sentence_english": "He had pneumonia and had to stay in bed for weeks.", + "pos": "noun", + "word_frequency": 11781 + }, + { + "word": "popcorn", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "popcorn", + "romanization": "popcorn", + "example_sentence_native": "Ci piace mangiare i popcorn mentre guardiamo un film.", + "example_sentence_english": "We like to eat popcorn while watching a movie.", + "pos": "noun", + "word_frequency": 11782 + }, + { + "word": "predicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to preach", + "romanization": "predicare", + "example_sentence_native": "Il sacerdote ha predicato un sermone sulla carità.", + "example_sentence_english": "The priest preached a sermon on charity.", + "pos": "verb", + "word_frequency": 11783 + }, + { + "word": "predicatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preacher", + "romanization": "predicatore", + "example_sentence_native": "Il predicatore ha parlato alla folla con grande passione.", + "example_sentence_english": "The preacher spoke to the crowd with great passion.", + "pos": "noun", + "word_frequency": 11784 + }, + { + "word": "prescritto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prescribed;statutory", + "romanization": "prescritto", + "example_sentence_native": "Il farmaco deve essere assunto secondo le dosi prescritte.", + "example_sentence_english": "The medicine must be taken according to the prescribed doses.", + "pos": "adjective", + "word_frequency": 11785 + }, + { + "word": "progettista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "designer;planner", + "romanization": "progettista", + "example_sentence_native": "L'architetto è il progettista di questo nuovo edificio.", + "example_sentence_english": "The architect is the designer of this new building.", + "pos": "noun", + "word_frequency": 11786 + }, + { + "word": "proletariato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proletariat", + "romanization": "proletariato", + "example_sentence_native": "Il concetto di proletariato è centrale nella teoria marxista.", + "example_sentence_english": "The concept of the proletariat is central to Marxist theory.", + "pos": "noun", + "word_frequency": 11787 + }, + { + "word": "pugnale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dagger", + "romanization": "pugnale", + "example_sentence_native": "Il cavaliere estrasse il pugnale dalla sua cintura.", + "example_sentence_english": "The knight drew the dagger from his belt.", + "pos": "noun", + "word_frequency": 11789 + }, + { + "word": "rabbino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rabbi", + "romanization": "rabbino", + "example_sentence_native": "Il rabbino ha guidato la cerimonia nella sinagoga.", + "example_sentence_english": "The rabbi led the ceremony in the synagogue.", + "pos": "noun", + "word_frequency": 11790 + }, + { + "word": "ragioniere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accountant;bookkeeper", + "romanization": "ragioniere", + "example_sentence_native": "Ho chiesto al ragioniere di aiutarmi con la dichiarazione dei redditi.", + "example_sentence_english": "I asked the accountant to help me with my tax return.", + "pos": "noun", + "word_frequency": 11791 + }, + { + "word": "ratifica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ratification", + "romanization": "ratifica", + "example_sentence_native": "Il trattato richiede la ratifica di tutti i paesi membri.", + "example_sentence_english": "The treaty requires the ratification of all member countries.", + "pos": "noun", + "word_frequency": 11793 + }, + { + "word": "redigere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to draw up;to draft;to compile", + "romanization": "redigere", + "example_sentence_native": "Deve redigere un rapporto dettagliato entro la fine della settimana.", + "example_sentence_english": "He must draw up a detailed report by the end of the week.", + "pos": "verb", + "word_frequency": 11796 + }, + { + "word": "rilassato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "relaxed", + "romanization": "rilassato", + "example_sentence_native": "Dopo una lunga giornata, mi sento molto rilassato.", + "example_sentence_english": "After a long day, I feel very relaxed.", + "pos": "adjective", + "word_frequency": 11801 + }, + { + "word": "riparato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repaired;sheltered", + "romanization": "riparato", + "example_sentence_native": "Abbiamo trovato un posto riparato dalla pioggia.", + "example_sentence_english": "We found a place sheltered from the rain.", + "pos": "adjective", + "word_frequency": 11802 + }, + { + "word": "riscrivere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rewrite", + "romanization": "riscrivere", + "example_sentence_native": "Devo riscrivere l'introduzione del mio saggio.", + "example_sentence_english": "I need to rewrite the introduction of my essay.", + "pos": "verb", + "word_frequency": 11803 + }, + { + "word": "saccheggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "looting;plunder", + "romanization": "saccheggio", + "example_sentence_native": "Il museo ha subito un saccheggio durante la guerra.", + "example_sentence_english": "The museum suffered looting during the war.", + "pos": "noun", + "word_frequency": 11808 + }, + { + "word": "saldamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmly;securely", + "romanization": "saldamente", + "example_sentence_native": "La sedia è fissata saldamente al pavimento.", + "example_sentence_english": "The chair is firmly fixed to the floor.", + "pos": "adverb", + "word_frequency": 11809 + }, + { + "word": "satirico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satirical", + "romanization": "satirico", + "example_sentence_native": "Ha scritto un articolo satirico sulla politica attuale.", + "example_sentence_english": "He wrote a satirical article about current politics.", + "pos": "adjective", + "word_frequency": 11810 + }, + { + "word": "scalpore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensation;stir;uproar", + "romanization": "scalpore", + "example_sentence_native": "La notizia ha causato grande scalpore in città.", + "example_sentence_english": "The news caused a great stir in the city.", + "pos": "noun", + "word_frequency": 11811 + }, + { + "word": "schianto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crash;smash", + "romanization": "schianto", + "example_sentence_native": "Abbiamo sentito il rumore di uno schianto provenire dalla strada.", + "example_sentence_english": "We heard the sound of a crash coming from the street.", + "pos": "noun", + "word_frequency": 11812 + }, + { + "word": "scongiurare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to avert;to ward off;to implore", + "romanization": "scongiurare", + "example_sentence_native": "Hanno cercato di scongiurare il pericolo imminente.", + "example_sentence_english": "They tried to avert the imminent danger.", + "pos": "verb", + "word_frequency": 11813 + }, + { + "word": "scuderia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stable (for horses);racing team", + "romanization": "scuderia", + "example_sentence_native": "La scuderia Ferrari è molto famosa.", + "example_sentence_english": "The Ferrari racing team is very famous.", + "pos": "noun", + "word_frequency": 11814 + }, + { + "word": "sgarbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discourtesy;affront;rudeness", + "romanization": "sgarbo", + "example_sentence_native": "Non mi aspettavo un tale sgarbo da lui.", + "example_sentence_english": "I didn't expect such rudeness from him.", + "pos": "noun", + "word_frequency": 11815 + }, + { + "word": "sollecito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prompt;diligent;solicitous", + "romanization": "sollecito", + "example_sentence_native": "Ha sempre dimostrato un atteggiamento sollecito verso i clienti.", + "example_sentence_english": "He has always shown a solicitous attitude towards customers.", + "pos": "adjective", + "word_frequency": 11817 + }, + { + "word": "sorvegliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to supervise;to watch over", + "romanization": "sorvegliare", + "example_sentence_native": "I genitori devono sorvegliare i loro figli.", + "example_sentence_english": "Parents must supervise their children.", + "pos": "verb", + "word_frequency": 11819 + }, + { + "word": "spedito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dispatched;sent;quick;swift", + "romanization": "spedito", + "example_sentence_native": "Il pacco è stato spedito ieri.", + "example_sentence_english": "The package was dispatched yesterday.", + "pos": "adjective", + "word_frequency": 11820 + }, + { + "word": "spezzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broken;shattered", + "romanization": "spezzato", + "example_sentence_native": "Il vaso è caduto e si è spezzato in mille pezzi.", + "example_sentence_english": "The vase fell and shattered into a thousand pieces.", + "pos": "adjective", + "word_frequency": 11821 + }, + { + "word": "spinello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint (cannabis)", + "romanization": "spinello", + "example_sentence_native": "La polizia ha trovato uno spinello nella sua tasca.", + "example_sentence_english": "The police found a joint in his pocket.", + "pos": "noun", + "word_frequency": 11822 + }, + { + "word": "stabilizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stabilization", + "romanization": "stabilizzazione", + "example_sentence_native": "Il governo sta lavorando per la stabilizzazione economica del paese.", + "example_sentence_english": "The government is working for the economic stabilization of the country.", + "pos": "noun", + "word_frequency": 11823 + }, + { + "word": "stregone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorcerer;wizard", + "romanization": "stregone", + "example_sentence_native": "Nelle fiabe, lo stregone spesso lancia incantesimi.", + "example_sentence_english": "In fairy tales, the sorcerer often casts spells.", + "pos": "noun", + "word_frequency": 11824 + }, + { + "word": "tenacia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenacity;perseverance", + "romanization": "tenacia", + "example_sentence_native": "Ha raggiunto il suo obiettivo grazie alla sua incredibile tenacia.", + "example_sentence_english": "He achieved his goal thanks to his incredible tenacity.", + "pos": "noun", + "word_frequency": 11825 + }, + { + "word": "terziario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tertiary", + "romanization": "terziario", + "example_sentence_native": "Il settore terziario è fondamentale per l'economia moderna.", + "example_sentence_english": "The tertiary sector is fundamental for the modern economy.", + "pos": "adjective", + "word_frequency": 11826 + }, + { + "word": "tesoriere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treasurer", + "romanization": "tesoriere", + "example_sentence_native": "Il tesoriere è responsabile delle finanze dell'associazione.", + "example_sentence_english": "The treasurer is responsible for the association's finances.", + "pos": "noun", + "word_frequency": 11827 + }, + { + "word": "testuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "textual", + "romanization": "testuale", + "example_sentence_native": "Ha citato il passaggio testuale dal libro.", + "example_sentence_english": "He quoted the textual passage from the book.", + "pos": "adjective", + "word_frequency": 11828 + }, + { + "word": "trasformato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transformed;changed", + "romanization": "trasformato", + "example_sentence_native": "La città si è trasformata molto negli ultimi anni.", + "example_sentence_english": "The city has transformed a lot in recent years.", + "pos": "adjective", + "word_frequency": 11830 + }, + { + "word": "trattoria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trattoria (informal Italian restaurant)", + "romanization": "trattoria", + "example_sentence_native": "Abbiamo cenato in una piccola trattoria tipica.", + "example_sentence_english": "We had dinner in a small typical trattoria.", + "pos": "noun", + "word_frequency": 11831 + }, + { + "word": "traversa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cross street;side street;crossbar (sports)", + "romanization": "traversa", + "example_sentence_native": "Gira nella prima traversa a destra.", + "example_sentence_english": "Turn into the first side street on the right.", + "pos": "noun", + "word_frequency": 11832 + }, + { + "word": "travestito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disguised;cross-dressed", + "romanization": "travestito", + "example_sentence_native": "Si è presentato alla festa travestito da supereroe.", + "example_sentence_english": "He showed up at the party disguised as a superhero.", + "pos": "adjective", + "word_frequency": 11833 + }, + { + "word": "trincea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trench", + "romanization": "trincea", + "example_sentence_native": "I soldati si nascondevano nelle trincee.", + "example_sentence_english": "The soldiers were hiding in the trenches.", + "pos": "noun", + "word_frequency": 11834 + }, + { + "word": "urina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "urine", + "romanization": "urina", + "example_sentence_native": "L'analisi dell'urina può rivelare molte informazioni sulla salute.", + "example_sentence_english": "Urine analysis can reveal a lot of health information.", + "pos": "noun", + "word_frequency": 11838 + }, + { + "word": "valico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountain pass;border crossing", + "romanization": "valico", + "example_sentence_native": "Il valico alpino è chiuso a causa della neve.", + "example_sentence_english": "The alpine pass is closed due to snow.", + "pos": "noun", + "word_frequency": 11839 + }, + { + "word": "vecchietta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "old woman;little old lady", + "romanization": "vecchietta", + "example_sentence_native": "Una vecchietta stava seduta sulla panchina del parco.", + "example_sentence_english": "A little old lady was sitting on the park bench.", + "pos": "noun", + "word_frequency": 11841 + }, + { + "word": "versato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skilled;expert;proficient", + "romanization": "versato", + "example_sentence_native": "È molto versato in matematica.", + "example_sentence_english": "He is very skilled in mathematics.", + "pos": "adjective", + "word_frequency": 11842 + }, + { + "word": "vicinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neighborhood;vicinity", + "romanization": "vicinato", + "example_sentence_native": "Il nostro vicinato è molto tranquillo e amichevole.", + "example_sentence_english": "Our neighborhood is very quiet and friendly.", + "pos": "noun", + "word_frequency": 11843 + }, + { + "word": "volt", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volt", + "romanization": "volt", + "example_sentence_native": "La batteria fornisce dodici volt di corrente.", + "example_sentence_english": "The battery provides twelve volts of current.", + "pos": "noun", + "word_frequency": 11844 + }, + { + "word": "abolito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abolished;repealed", + "romanization": "abolito", + "example_sentence_native": "La legge è stata abolita l'anno scorso.", + "example_sentence_english": "The law was abolished last year.", + "pos": "adjective", + "word_frequency": 11849 + }, + { + "word": "abortire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to abort", + "romanization": "abortire", + "example_sentence_native": "La discussione sulla possibilità di abortire è molto complessa.", + "example_sentence_english": "The discussion about the possibility to abort is very complex.", + "pos": "verb", + "word_frequency": 11850 + }, + { + "word": "allegramente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerfully;merrily", + "romanization": "allegramente", + "example_sentence_native": "Camminava allegramente per la strada.", + "example_sentence_english": "He walked cheerfully down the street.", + "pos": "adverb", + "word_frequency": 11853 + }, + { + "word": "ambra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amber", + "romanization": "ambra", + "example_sentence_native": "Ha una collana di ambra molto bella.", + "example_sentence_english": "She has a very beautiful amber necklace.", + "pos": "noun", + "word_frequency": 11855 + }, + { + "word": "annoiato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bored", + "romanization": "annoiato", + "example_sentence_native": "Sono annoiato da questo film.", + "example_sentence_english": "I am bored by this movie.", + "pos": "adjective", + "word_frequency": 11857 + }, + { + "word": "apprendista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apprentice", + "romanization": "apprendista", + "example_sentence_native": "L'apprendista sta imparando il mestiere.", + "example_sentence_english": "The apprentice is learning the trade.", + "pos": "noun", + "word_frequency": 11858 + }, + { + "word": "apprezzabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appreciable;noticeable;commendable", + "romanization": "apprezzabile", + "example_sentence_native": "Ha fatto un lavoro apprezzabile.", + "example_sentence_english": "He did an appreciable job.", + "pos": "adjective", + "word_frequency": 11859 + }, + { + "word": "armonica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmonica", + "romanization": "armonica", + "example_sentence_native": "Suona l'armonica molto bene.", + "example_sentence_english": "He plays the harmonica very well.", + "pos": "noun", + "word_frequency": 11860 + }, + { + "word": "arricchimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enrichment", + "romanization": "arricchimento", + "example_sentence_native": "Lo studio è un arricchimento personale.", + "example_sentence_english": "Study is a personal enrichment.", + "pos": "noun", + "word_frequency": 11861 + }, + { + "word": "artificialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artificially", + "romanization": "artificialmente", + "example_sentence_native": "Il cibo è stato colorato artificialmente.", + "example_sentence_english": "The food was artificially colored.", + "pos": "adverb", + "word_frequency": 11862 + }, + { + "word": "ascendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascending;rising", + "romanization": "ascendente", + "example_sentence_native": "La curva mostra una tendenza ascendente.", + "example_sentence_english": "The curve shows an ascending trend.", + "pos": "adjective", + "word_frequency": 11863 + }, + { + "word": "assunto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hired;assumed", + "romanization": "assunto", + "example_sentence_native": "È stato assunto come nuovo manager.", + "example_sentence_english": "He was hired as the new manager.", + "pos": "adjective", + "word_frequency": 11864 + }, + { + "word": "automobilistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automotive;automobile-related", + "romanization": "automobilistico", + "example_sentence_native": "L'industria automobilistica è in crescita.", + "example_sentence_english": "The automotive industry is growing.", + "pos": "adjective", + "word_frequency": 11866 + }, + { + "word": "avviamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "start;initiation;training", + "romanization": "avviamento", + "example_sentence_native": "Ha frequentato un corso di avviamento professionale.", + "example_sentence_english": "He attended a professional training course.", + "pos": "noun", + "word_frequency": 11867 + }, + { + "word": "bava", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drool;slobber;slime", + "romanization": "bava", + "example_sentence_native": "Il cane lasciava bava sul pavimento.", + "example_sentence_english": "The dog was leaving drool on the floor.", + "pos": "noun", + "word_frequency": 11868 + }, + { + "word": "biasimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blame;reproach;censure", + "romanization": "biasimo", + "example_sentence_native": "Ha espresso il suo biasimo per il comportamento.", + "example_sentence_english": "He expressed his blame for the behavior.", + "pos": "noun", + "word_frequency": 11871 + }, + { + "word": "bilico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balance;precarious position", + "romanization": "bilico", + "example_sentence_native": "La situazione è in bilico.", + "example_sentence_english": "The situation is in balance / precarious.", + "pos": "noun", + "word_frequency": 11872 + }, + { + "word": "botanica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "botany", + "romanization": "botanica", + "example_sentence_native": "Studia botanica all'università.", + "example_sentence_english": "She studies botany at university.", + "pos": "noun", + "word_frequency": 11873 + }, + { + "word": "boxer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxer (dog or person)", + "romanization": "boxer", + "example_sentence_native": "Il mio cane è un boxer.", + "example_sentence_english": "My dog is a boxer.", + "pos": "noun", + "word_frequency": 11874 + }, + { + "word": "brigante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brigand;bandit", + "romanization": "brigante", + "example_sentence_native": "I briganti assaltavano le carrozze.", + "example_sentence_english": "The brigands attacked the carriages.", + "pos": "noun", + "word_frequency": 11875 + }, + { + "word": "buonsenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "common sense", + "romanization": "buonsenso", + "example_sentence_native": "Ci vuole buonsenso per risolvere questo problema.", + "example_sentence_english": "It takes common sense to solve this problem.", + "pos": "noun", + "word_frequency": 11876 + }, + { + "word": "cagna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female dog;bitch (derogatory)", + "romanization": "cagna", + "example_sentence_native": "La cagna ha avuto dei cuccioli.", + "example_sentence_english": "The female dog had puppies.", + "pos": "noun", + "word_frequency": 11877 + }, + { + "word": "cessato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceased;terminated", + "romanization": "cessato", + "example_sentence_native": "Il servizio è cessato a mezzanotte.", + "example_sentence_english": "The service ceased at midnight.", + "pos": "adjective", + "word_frequency": 11883 + }, + { + "word": "combinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "combined;arranged", + "romanization": "combinato", + "example_sentence_native": "Hanno un sistema combinato di riscaldamento e raffreddamento.", + "example_sentence_english": "They have a combined heating and cooling system.", + "pos": "adjective", + "word_frequency": 11886 + }, + { + "word": "confrontato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confronted;compared", + "romanization": "confrontato", + "example_sentence_native": "I dati sono stati confrontati con quelli dell'anno precedente.", + "example_sentence_english": "The data was compared with that of the previous year.", + "pos": "adjective", + "word_frequency": 11887 + }, + { + "word": "congiura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspiracy", + "romanization": "congiura", + "example_sentence_native": "Si dice che ci sia stata una congiura contro il re.", + "example_sentence_english": "It is said there was a conspiracy against the king.", + "pos": "noun", + "word_frequency": 11888 + }, + { + "word": "contestato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disputed;challenged", + "romanization": "contestato", + "example_sentence_native": "Il risultato delle elezioni è stato contestato.", + "example_sentence_english": "The election result was disputed.", + "pos": "adjective", + "word_frequency": 11889 + }, + { + "word": "convertito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "converted", + "romanization": "convertito", + "example_sentence_native": "È un ex ateo convertito al buddismo.", + "example_sentence_english": "He is a former atheist converted to Buddhism.", + "pos": "adjective", + "word_frequency": 11890 + }, + { + "word": "corrompere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to corrupt;to bribe", + "romanization": "corrompere", + "example_sentence_native": "Hanno cercato di corrompere il giudice.", + "example_sentence_english": "They tried to bribe the judge.", + "pos": "verb", + "word_frequency": 11891 + }, + { + "word": "cubano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Cuban", + "romanization": "cubano", + "example_sentence_native": "Mi piace la musica cubana.", + "example_sentence_english": "I like Cuban music.", + "pos": "adjective", + "word_frequency": 11893 + }, + { + "word": "divorziato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "divorced", + "romanization": "divorziato", + "example_sentence_native": "Mio zio è divorziato da dieci anni.", + "example_sentence_english": "My uncle has been divorced for ten years.", + "pos": "adjective", + "word_frequency": 11896 + }, + { + "word": "epocale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epochal;momentous", + "romanization": "epocale", + "example_sentence_native": "È stato un cambiamento epocale per la società.", + "example_sentence_english": "It was an epochal change for society.", + "pos": "adjective", + "word_frequency": 11898 + }, + { + "word": "esagerazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaggeration", + "romanization": "esagerazione", + "example_sentence_native": "La sua reazione è stata un'esagerazione.", + "example_sentence_english": "His reaction was an exaggeration.", + "pos": "noun", + "word_frequency": 11899 + }, + { + "word": "fante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infantryman;jack (card)", + "romanization": "fante", + "example_sentence_native": "Il fante di picche è una carta importante.", + "example_sentence_english": "The jack of spades is an important card.", + "pos": "noun", + "word_frequency": 11901 + }, + { + "word": "focaccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "focaccia (flatbread)", + "romanization": "focaccia", + "example_sentence_native": "Vorrei una focaccia con il rosmarino.", + "example_sentence_english": "I would like a focaccia with rosemary.", + "pos": "noun", + "word_frequency": 11903 + }, + { + "word": "fosforo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phosphorus", + "romanization": "fosforo", + "example_sentence_native": "Il fosforo è essenziale per le ossa.", + "example_sentence_english": "Phosphorus is essential for bones.", + "pos": "noun", + "word_frequency": 11904 + }, + { + "word": "fregata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frigate", + "romanization": "fregata", + "example_sentence_native": "La fregata è salpata dal porto.", + "example_sentence_english": "The frigate sailed from the port.", + "pos": "noun", + "word_frequency": 11905 + }, + { + "word": "fruizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enjoyment;fruition;use", + "romanization": "fruizione", + "example_sentence_native": "La fruizione dei beni culturali è un diritto.", + "example_sentence_english": "The enjoyment of cultural heritage is a right.", + "pos": "noun", + "word_frequency": 11907 + }, + { + "word": "frumento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wheat", + "romanization": "frumento", + "example_sentence_native": "Il pane è fatto con farina di frumento.", + "example_sentence_english": "Bread is made with wheat flour.", + "pos": "noun", + "word_frequency": 11908 + }, + { + "word": "generazionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generational", + "romanization": "generazionale", + "example_sentence_native": "C'è un divario generazionale tra giovani e anziani.", + "example_sentence_english": "There is a generational gap between young and old.", + "pos": "adjective", + "word_frequency": 11911 + }, + { + "word": "giacinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hyacinth", + "romanization": "giacinto", + "example_sentence_native": "Ho piantato dei giacinti in giardino.", + "example_sentence_english": "I planted some hyacinths in the garden.", + "pos": "noun", + "word_frequency": 11912 + }, + { + "word": "godimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enjoyment;pleasure", + "romanization": "godimento", + "example_sentence_native": "Ha provato un grande godimento nel leggere il libro.", + "example_sentence_english": "He felt great enjoyment in reading the book.", + "pos": "noun", + "word_frequency": 11914 + }, + { + "word": "gonfio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swollen;inflated", + "romanization": "gonfio", + "example_sentence_native": "La sua caviglia era gonfia dopo la caduta.", + "example_sentence_english": "His ankle was swollen after the fall.", + "pos": "adjective", + "word_frequency": 11915 + }, + { + "word": "grammaticale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grammatical", + "romanization": "grammaticale", + "example_sentence_native": "Ha fatto un errore grammaticale.", + "example_sentence_english": "He made a grammatical error.", + "pos": "adjective", + "word_frequency": 11916 + }, + { + "word": "guinzaglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leash", + "romanization": "guinzaglio", + "example_sentence_native": "Porta il cane al guinzaglio.", + "example_sentence_english": "Walk the dog on a leash.", + "pos": "noun", + "word_frequency": 11918 + }, + { + "word": "idrocarburo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hydrocarbon", + "romanization": "idrocarburo", + "example_sentence_native": "Gli idrocarburi sono composti organici.", + "example_sentence_english": "Hydrocarbons are organic compounds.", + "pos": "noun", + "word_frequency": 11921 + }, + { + "word": "illuminante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illuminating", + "romanization": "illuminante", + "example_sentence_native": "La sua spiegazione è stata molto illuminante.", + "example_sentence_english": "His explanation was very illuminating.", + "pos": "adjective", + "word_frequency": 11922 + }, + { + "word": "inaugurare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inaugurate", + "romanization": "inaugurare", + "example_sentence_native": "Il sindaco inaugurerà la nuova piazza domani.", + "example_sentence_english": "The mayor will inaugurate the new square tomorrow.", + "pos": "verb", + "word_frequency": 11923 + }, + { + "word": "incompleto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "incomplete", + "romanization": "incompleto", + "example_sentence_native": "Il rapporto è ancora incompleto.", + "example_sentence_english": "The report is still incomplete.", + "pos": "adjective", + "word_frequency": 11924 + }, + { + "word": "inconcepibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inconceivable", + "romanization": "inconcepibile", + "example_sentence_native": "È inconcepibile che una cosa del genere possa accadere.", + "example_sentence_english": "It's inconceivable that such a thing could happen.", + "pos": "adjective", + "word_frequency": 11925 + }, + { + "word": "incontrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "met (as an adjective)", + "romanization": "incontrato", + "example_sentence_native": "La persona incontrata era molto gentile.", + "example_sentence_english": "The person met was very kind.", + "pos": "adjective", + "word_frequency": 11926 + }, + { + "word": "individualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individually", + "romanization": "individualmente", + "example_sentence_native": "Ogni studente deve lavorare individualmente.", + "example_sentence_english": "Each student must work individually.", + "pos": "adverb", + "word_frequency": 11927 + }, + { + "word": "infastidire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy", + "romanization": "infastidire", + "example_sentence_native": "Non mi piace infastidire le persone.", + "example_sentence_english": "I don't like to annoy people.", + "pos": "verb", + "word_frequency": 11928 + }, + { + "word": "influenzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "influenced;having the flu", + "romanization": "influenzato", + "example_sentence_native": "Sono influenzato e non posso venire.", + "example_sentence_english": "I have the flu and can't come.", + "pos": "adjective", + "word_frequency": 11929 + }, + { + "word": "ingrandimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlargement;magnification", + "romanization": "ingrandimento", + "example_sentence_native": "L'ingrandimento della foto ha rivelato molti dettagli.", + "example_sentence_english": "The enlargement of the photo revealed many details.", + "pos": "noun", + "word_frequency": 11930 + }, + { + "word": "intreccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot (of a story);intertwining", + "romanization": "intreccio", + "example_sentence_native": "L'intreccio del romanzo era molto complesso.", + "example_sentence_english": "The plot of the novel was very complex.", + "pos": "noun", + "word_frequency": 11931 + }, + { + "word": "ispirato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspired", + "romanization": "ispirato", + "example_sentence_native": "L'artista era ispirato dalla natura.", + "example_sentence_english": "The artist was inspired by nature.", + "pos": "adjective", + "word_frequency": 11933 + }, + { + "word": "istigazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instigation;incitement", + "romanization": "istigazione", + "example_sentence_native": "È stato accusato di istigazione alla violenza.", + "example_sentence_english": "He was accused of incitement to violence.", + "pos": "noun", + "word_frequency": 11934 + }, + { + "word": "legume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "legume;vegetable", + "romanization": "legume", + "example_sentence_native": "I legumi sono una buona fonte di proteine.", + "example_sentence_english": "Legumes are a good source of protein.", + "pos": "noun", + "word_frequency": 11937 + }, + { + "word": "limitatamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "limitedly;to a limited extent", + "romanization": "limitatamente", + "example_sentence_native": "La sua influenza è limitatamente riconosciuta.", + "example_sentence_english": "His influence is limitedly recognized.", + "pos": "adverb", + "word_frequency": 11939 + }, + { + "word": "linfa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lymph;sap", + "romanization": "linfa", + "example_sentence_native": "La linfa scorre nelle piante.", + "example_sentence_english": "Sap flows in plants.", + "pos": "noun", + "word_frequency": 11940 + }, + { + "word": "mantra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mantra", + "romanization": "mantra", + "example_sentence_native": "Ripeteva il suo mantra per trovare la calma.", + "example_sentence_english": "He repeated his mantra to find calm.", + "pos": "noun", + "word_frequency": 11943 + }, + { + "word": "miriade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "myriad", + "romanization": "miriade", + "example_sentence_native": "Ci sono una miriade di stelle nel cielo.", + "example_sentence_english": "There are a myriad of stars in the sky.", + "pos": "noun", + "word_frequency": 11946 + }, + { + "word": "modernizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernization", + "romanization": "modernizzazione", + "example_sentence_native": "La modernizzazione dell'industria è essenziale.", + "example_sentence_english": "The modernization of industry is essential.", + "pos": "noun", + "word_frequency": 11947 + }, + { + "word": "morbo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disease;illness", + "romanization": "morbo", + "example_sentence_native": "Il morbo di Parkinson è una malattia neurologica.", + "example_sentence_english": "Parkinson's disease is a neurological illness.", + "pos": "noun", + "word_frequency": 11949 + }, + { + "word": "numerazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "numbering;pagination", + "romanization": "numerazione", + "example_sentence_native": "La numerazione delle pagine è corretta.", + "example_sentence_english": "The page numbering is correct.", + "pos": "noun", + "word_frequency": 11952 + }, + { + "word": "nuocere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harm;to damage", + "romanization": "nuocere", + "example_sentence_native": "Il fumo può nuocere gravemente alla salute.", + "example_sentence_english": "Smoking can seriously harm health.", + "pos": "verb", + "word_frequency": 11953 + }, + { + "word": "palinsesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "TV schedule;palimpsest", + "romanization": "palinsesto", + "example_sentence_native": "Il palinsesto televisivo di stasera è interessante.", + "example_sentence_english": "Tonight's TV schedule is interesting.", + "pos": "noun", + "word_frequency": 11956 + }, + { + "word": "parolaccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swear word;bad word", + "romanization": "parolaccia", + "example_sentence_native": "Non usare parolacce in pubblico.", + "example_sentence_english": "Don't use swear words in public.", + "pos": "noun", + "word_frequency": 11957 + }, + { + "word": "patriarcale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriarchal", + "romanization": "patriarcale", + "example_sentence_native": "La società era basata su un sistema patriarcale.", + "example_sentence_english": "Society was based on a patriarchal system.", + "pos": "adjective", + "word_frequency": 11958 + }, + { + "word": "pervenire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arrive;to reach (formal)", + "romanization": "pervenire", + "example_sentence_native": "La sua richiesta è pervenuta in ritardo.", + "example_sentence_english": "His request arrived late.", + "pos": "verb", + "word_frequency": 11959 + }, + { + "word": "placca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaque", + "romanization": "placca", + "example_sentence_native": "Il dentista ha rimosso la placca dai miei denti.", + "example_sentence_english": "The dentist removed the plaque from my teeth.", + "pos": "noun", + "word_frequency": 11962 + }, + { + "word": "poligono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polygon;firing range", + "romanization": "poligono", + "example_sentence_native": "Un quadrato è un poligono con quattro lati uguali.", + "example_sentence_english": "A square is a polygon with four equal sides.", + "pos": "noun", + "word_frequency": 11963 + }, + { + "word": "pontificato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pontificate", + "romanization": "pontificato", + "example_sentence_native": "Il suo pontificato è durato molti anni.", + "example_sentence_english": "His pontificate lasted many years.", + "pos": "noun", + "word_frequency": 11964 + }, + { + "word": "popolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "populated", + "romanization": "popolato", + "example_sentence_native": "Questa è una delle città più popolate del paese.", + "example_sentence_english": "This is one of the most populated cities in the country.", + "pos": "adjective", + "word_frequency": 11965 + }, + { + "word": "poverino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "poor thing", + "romanization": "poverino", + "example_sentence_native": "Poverino, ha perso il suo giocattolo preferito.", + "example_sentence_english": "Poor thing, he lost his favorite toy.", + "pos": "noun", + "word_frequency": 11966 + }, + { + "word": "preludio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prelude", + "romanization": "preludio", + "example_sentence_native": "La pioggia è stata un preludio alla tempesta.", + "example_sentence_english": "The rain was a prelude to the storm.", + "pos": "noun", + "word_frequency": 11967 + }, + { + "word": "prezzemolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parsley", + "romanization": "prezzemolo", + "example_sentence_native": "Ho aggiunto un po' di prezzemolo fresco alla pasta.", + "example_sentence_english": "I added some fresh parsley to the pasta.", + "pos": "noun", + "word_frequency": 11968 + }, + { + "word": "proclama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proclamation", + "romanization": "proclama", + "example_sentence_native": "Il re ha emesso un proclama per annunciare la nuova legge.", + "example_sentence_english": "The king issued a proclamation to announce the new law.", + "pos": "noun", + "word_frequency": 11969 + }, + { + "word": "prostata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prostate", + "romanization": "prostata", + "example_sentence_native": "La prostata è una ghiandola maschile.", + "example_sentence_english": "The prostate is a male gland.", + "pos": "noun", + "word_frequency": 11970 + }, + { + "word": "qualcosina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a little something", + "romanization": "qualcosina", + "example_sentence_native": "Ho preparato qualcosina da mangiare per la cena.", + "example_sentence_english": "I prepared a little something to eat for dinner.", + "pos": "noun", + "word_frequency": 11971 + }, + { + "word": "quaresima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Lent", + "romanization": "quaresima", + "example_sentence_native": "Durante la Quaresima, molte persone digiunano.", + "example_sentence_english": "During Lent, many people fast.", + "pos": "noun", + "word_frequency": 11972 + }, + { + "word": "raso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "satin;smooth;shaven", + "romanization": "raso", + "example_sentence_native": "Ha una camicia di seta raso molto elegante.", + "example_sentence_english": "She has a very elegant satin silk shirt.", + "pos": "adjective", + "word_frequency": 11974 + }, + { + "word": "rifugiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take refuge", + "romanization": "rifugiare", + "example_sentence_native": "Si sono rifugiati in una grotta durante la tempesta.", + "example_sentence_english": "They took refuge in a cave during the storm.", + "pos": "verb", + "word_frequency": 11976 + }, + { + "word": "rimpiazzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to replace", + "romanization": "rimpiazzare", + "example_sentence_native": "Dobbiamo rimpiazzare la vecchia stampante con una nuova.", + "example_sentence_english": "We need to replace the old printer with a new one.", + "pos": "verb", + "word_frequency": 11977 + }, + { + "word": "ruggine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rust", + "romanization": "ruggine", + "example_sentence_native": "La bicicletta è piena di ruggine perché è stata lasciata fuori.", + "example_sentence_english": "The bicycle is full of rust because it was left outside.", + "pos": "noun", + "word_frequency": 11978 + }, + { + "word": "ruga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrinkle", + "romanization": "ruga", + "example_sentence_native": "Ha una ruga profonda sulla fronte.", + "example_sentence_english": "She has a deep wrinkle on her forehead.", + "pos": "noun", + "word_frequency": 11979 + }, + { + "word": "safari", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safari", + "romanization": "safari", + "example_sentence_native": "Abbiamo fatto un safari fotografico in Africa.", + "example_sentence_english": "We went on a photo safari in Africa.", + "pos": "noun", + "word_frequency": 11980 + }, + { + "word": "scappato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "escaped;run away", + "romanization": "scappato", + "example_sentence_native": "Il cane è scappato dal giardino.", + "example_sentence_english": "The dog escaped from the garden.", + "pos": "adjective", + "word_frequency": 11982 + }, + { + "word": "scenografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "set design;scenography", + "romanization": "scenografia", + "example_sentence_native": "La scenografia dello spettacolo era mozzafiato.", + "example_sentence_english": "The set design of the show was breathtaking.", + "pos": "noun", + "word_frequency": 11983 + }, + { + "word": "sedicenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sixteen-year-old", + "romanization": "sedicenne", + "example_sentence_native": "Mio fratello è un sedicenne molto vivace.", + "example_sentence_english": "My brother is a very lively sixteen-year-old.", + "pos": "noun", + "word_frequency": 11985 + }, + { + "word": "semplificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simplified", + "romanization": "semplificato", + "example_sentence_native": "La nuova procedura è stata semplificata per tutti.", + "example_sentence_english": "The new procedure has been simplified for everyone.", + "pos": "adjective", + "word_frequency": 11986 + }, + { + "word": "sfiorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to graze;to brush against", + "romanization": "sfiorare", + "example_sentence_native": "Ha sfiorato la mano mentre passava.", + "example_sentence_english": "He grazed her hand as he passed by.", + "pos": "verb", + "word_frequency": 11987 + }, + { + "word": "slavo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Slavic;Slav", + "romanization": "slavo", + "example_sentence_native": "Parla diverse lingue slave.", + "example_sentence_english": "He speaks several Slavic languages.", + "pos": "noun", + "word_frequency": 11988 + }, + { + "word": "soprannaturale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supernatural", + "romanization": "soprannaturale", + "example_sentence_native": "Molte culture credono nel soprannaturale.", + "example_sentence_english": "Many cultures believe in the supernatural.", + "pos": "adjective", + "word_frequency": 11989 + }, + { + "word": "sprint", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprint", + "romanization": "sprint", + "example_sentence_native": "Ha fatto uno sprint finale per vincere la gara.", + "example_sentence_english": "He made a final sprint to win the race.", + "pos": "noun", + "word_frequency": 11990 + }, + { + "word": "squillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ring (of a phone);blast (of a trumpet)", + "romanization": "squillo", + "example_sentence_native": "Ho sentito uno squillo del telefono.", + "example_sentence_english": "I heard a ring from the phone.", + "pos": "noun", + "word_frequency": 11991 + }, + { + "word": "statico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "static", + "romanization": "statico", + "example_sentence_native": "L'immagine sullo schermo era statica.", + "example_sentence_english": "The image on the screen was static.", + "pos": "adjective", + "word_frequency": 11993 + }, + { + "word": "storiografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "historiography", + "romanization": "storiografia", + "example_sentence_native": "La storiografia moderna ha cambiato la nostra comprensione del passato.", + "example_sentence_english": "Modern historiography has changed our understanding of the past.", + "pos": "noun", + "word_frequency": 11994 + }, + { + "word": "studentesco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "student (adj.);student-related", + "romanization": "studentesco", + "example_sentence_native": "Hanno organizzato una festa studentesca.", + "example_sentence_english": "They organized a student party.", + "pos": "adjective", + "word_frequency": 11996 + }, + { + "word": "supplementare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplementary;additional", + "romanization": "supplementare", + "example_sentence_native": "Abbiamo bisogno di informazioni supplementari per completare il rapporto.", + "example_sentence_english": "We need supplementary information to complete the report.", + "pos": "adjective", + "word_frequency": 11997 + }, + { + "word": "testosterone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testosterone", + "romanization": "testosterone", + "example_sentence_native": "Il testosterone è un ormone maschile.", + "example_sentence_english": "Testosterone is a male hormone.", + "pos": "noun", + "word_frequency": 11998 + }, + { + "word": "tormentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tormented;troubled", + "romanization": "tormentato", + "example_sentence_native": "Aveva uno sguardo tormentato.", + "example_sentence_english": "He had a tormented look.", + "pos": "adjective", + "word_frequency": 12001 + }, + { + "word": "tornado", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tornado", + "romanization": "tornado", + "example_sentence_native": "Un tornado ha colpito la città.", + "example_sentence_english": "A tornado hit the city.", + "pos": "noun", + "word_frequency": 12002 + }, + { + "word": "trascurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neglected;careless", + "romanization": "trascurato", + "example_sentence_native": "La casa sembrava trascurata.", + "example_sentence_english": "The house looked neglected.", + "pos": "adjective", + "word_frequency": 12003 + }, + { + "word": "ubicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "located;situated", + "romanization": "ubicato", + "example_sentence_native": "L'ufficio è ubicato al terzo piano.", + "example_sentence_english": "The office is located on the third floor.", + "pos": "adjective", + "word_frequency": 12006 + }, + { + "word": "umiliante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliating", + "romanization": "umiliante", + "example_sentence_native": "È stata un'esperienza umiliante.", + "example_sentence_english": "It was a humiliating experience.", + "pos": "adjective", + "word_frequency": 12007 + }, + { + "word": "umiliato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humiliated", + "romanization": "umiliato", + "example_sentence_native": "Si sentiva umiliato dopo l'errore.", + "example_sentence_english": "He felt humiliated after the mistake.", + "pos": "adjective", + "word_frequency": 12008 + }, + { + "word": "vacante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vacant;empty", + "romanization": "vacante", + "example_sentence_native": "La posizione è ancora vacante.", + "example_sentence_english": "The position is still vacant.", + "pos": "adjective", + "word_frequency": 12010 + }, + { + "word": "vagone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "carriage;wagon", + "romanization": "vagone", + "example_sentence_native": "Siamo saliti sul primo vagone del treno.", + "example_sentence_english": "We got on the first carriage of the train.", + "pos": "noun", + "word_frequency": 12011 + }, + { + "word": "volata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprint;dash", + "romanization": "volata", + "example_sentence_native": "Il ciclista ha vinto la gara in volata.", + "example_sentence_english": "The cyclist won the race in a sprint.", + "pos": "noun", + "word_frequency": 12012 + }, + { + "word": "adulterio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adultery", + "romanization": "adulterio", + "example_sentence_native": "L'adulterio è considerato un reato in alcuni paesi.", + "example_sentence_english": "Adultery is considered a crime in some countries.", + "pos": "noun", + "word_frequency": 12016 + }, + { + "word": "affamato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hungry", + "romanization": "affamato", + "example_sentence_native": "Sono molto affamato.", + "example_sentence_english": "I am very hungry.", + "pos": "adjective", + "word_frequency": 12017 + }, + { + "word": "alloro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laurel;bay leaf", + "romanization": "alloro", + "example_sentence_native": "Ho aggiunto una foglia di alloro al sugo.", + "example_sentence_english": "I added a bay leaf to the sauce.", + "pos": "noun", + "word_frequency": 12021 + }, + { + "word": "ambo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pair (in lottery)", + "romanization": "ambo", + "example_sentence_native": "Ha fatto ambo al lotto.", + "example_sentence_english": "He got a pair in the lottery.", + "pos": "noun", + "word_frequency": 12022 + }, + { + "word": "arbitrario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arbitrary", + "romanization": "arbitrario", + "example_sentence_native": "La decisione è sembrata arbitraria.", + "example_sentence_english": "The decision seemed arbitrary.", + "pos": "adjective", + "word_frequency": 12024 + }, + { + "word": "arpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harp", + "romanization": "arpa", + "example_sentence_native": "Suona l'arpa in un'orchestra.", + "example_sentence_english": "She plays the harp in an orchestra.", + "pos": "noun", + "word_frequency": 12025 + }, + { + "word": "asciugamano", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "towel", + "romanization": "asciugamano", + "example_sentence_native": "Ho bisogno di un asciugamano pulito.", + "example_sentence_english": "I need a clean towel.", + "pos": "noun", + "word_frequency": 12026 + }, + { + "word": "astenere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abstain;to refrain", + "romanization": "astenere", + "example_sentence_native": "Ho deciso di astenermi dal voto.", + "example_sentence_english": "I decided to abstain from voting.", + "pos": "verb", + "word_frequency": 12027 + }, + { + "word": "astensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstention", + "romanization": "astensione", + "example_sentence_native": "L'astensione dal voto è stata alta.", + "example_sentence_english": "The abstention from voting was high.", + "pos": "noun", + "word_frequency": 12028 + }, + { + "word": "auricolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earphone;headset", + "romanization": "auricolare", + "example_sentence_native": "Ho perso un auricolare.", + "example_sentence_english": "I lost an earphone.", + "pos": "noun", + "word_frequency": 12029 + }, + { + "word": "avverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adverse;unfavorable", + "romanization": "avverso", + "example_sentence_native": "Hanno affrontato condizioni meteorologiche avverse.", + "example_sentence_english": "They faced adverse weather conditions.", + "pos": "adjective", + "word_frequency": 12031 + }, + { + "word": "baciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kissed;blessed", + "romanization": "baciato", + "example_sentence_native": "Si sentiva baciato dalla fortuna.", + "example_sentence_english": "He felt blessed by luck.", + "pos": "adjective", + "word_frequency": 12033 + }, + { + "word": "badge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "badge", + "romanization": "badge", + "example_sentence_native": "Devi mostrare il tuo badge per entrare.", + "example_sentence_english": "You must show your badge to enter.", + "pos": "noun", + "word_frequency": 12034 + }, + { + "word": "bellico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "warlike;military", + "romanization": "bellico", + "example_sentence_native": "Il conflitto ha avuto un carattere bellico.", + "example_sentence_english": "The conflict had a warlike character.", + "pos": "adjective", + "word_frequency": 12036 + }, + { + "word": "benestante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-off;affluent", + "romanization": "benestante", + "example_sentence_native": "La famiglia era molto benestante.", + "example_sentence_english": "The family was very well-off.", + "pos": "adjective", + "word_frequency": 12037 + }, + { + "word": "bibita", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "drink;beverage", + "romanization": "bibita", + "example_sentence_native": "Vorrei una bibita fresca.", + "example_sentence_english": "I would like a cold drink.", + "pos": "noun", + "word_frequency": 12038 + }, + { + "word": "bresciano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Brescian;from Brescia", + "romanization": "bresciano", + "example_sentence_native": "Il formaggio bresciano è molto saporito.", + "example_sentence_english": "The Brescian cheese is very tasty.", + "pos": "adjective", + "word_frequency": 12040 + }, + { + "word": "cameretta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small room;child's bedroom", + "romanization": "cameretta", + "example_sentence_native": "La cameretta dei bambini è piena di giocattoli.", + "example_sentence_english": "The children's bedroom is full of toys.", + "pos": "noun", + "word_frequency": 12043 + }, + { + "word": "casello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toll booth;gatehouse", + "romanization": "casello", + "example_sentence_native": "Abbiamo pagato il pedaggio al casello autostradale.", + "example_sentence_english": "We paid the toll at the highway toll booth.", + "pos": "noun", + "word_frequency": 12045 + }, + { + "word": "castigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punishment;chastisement", + "romanization": "castigo", + "example_sentence_native": "Il bambino ricevette un castigo per la sua disobbedienza.", + "example_sentence_english": "The child received a punishment for his disobedience.", + "pos": "noun", + "word_frequency": 12046 + }, + { + "word": "catasto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "land registry;cadastre", + "romanization": "catasto", + "example_sentence_native": "Dobbiamo consultare il catasto per i dettagli della proprietà.", + "example_sentence_english": "We need to consult the land registry for the property details.", + "pos": "noun", + "word_frequency": 12047 + }, + { + "word": "cavalcare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ride (a horse;a wave)", + "romanization": "cavalcare", + "example_sentence_native": "Mi piace cavalcare a cavallo in campagna.", + "example_sentence_english": "I like to ride a horse in the countryside.", + "pos": "verb", + "word_frequency": 12048 + }, + { + "word": "cece", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chickpea", + "romanization": "cece", + "example_sentence_native": "Ho preparato un'insalata di ceci per cena.", + "example_sentence_english": "I prepared a chickpea salad for dinner.", + "pos": "noun", + "word_frequency": 12049 + }, + { + "word": "colletto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collar", + "romanization": "colletto", + "example_sentence_native": "Il colletto della sua camicia era sporco.", + "example_sentence_english": "The collar of his shirt was dirty.", + "pos": "noun", + "word_frequency": 12051 + }, + { + "word": "commando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commando;raid", + "romanization": "commando", + "example_sentence_native": "Un commando di forze speciali ha liberato gli ostaggi.", + "example_sentence_english": "A commando of special forces freed the hostages.", + "pos": "noun", + "word_frequency": 12052 + }, + { + "word": "congiuntivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjunctive (mood)", + "romanization": "congiuntivo", + "example_sentence_native": "È importante usare correttamente il congiuntivo in italiano.", + "example_sentence_english": "It's important to use the subjunctive correctly in Italian.", + "pos": "noun", + "word_frequency": 12053 + }, + { + "word": "coniato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coined;minted", + "romanization": "coniato", + "example_sentence_native": "Il termine \"intelligenza artificiale\" è stato coniato negli anni '50.", + "example_sentence_english": "The term \"artificial intelligence\" was coined in the 1950s.", + "pos": "adjective", + "word_frequency": 12054 + }, + { + "word": "considerevolmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "considerably;significantly", + "romanization": "considerevolmente", + "example_sentence_native": "La situazione è migliorata considerevolmente.", + "example_sentence_english": "The situation has improved considerably.", + "pos": "adverb", + "word_frequency": 12055 + }, + { + "word": "corazza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armor;shell (of a turtle)", + "romanization": "corazza", + "example_sentence_native": "Il cavaliere indossava una pesante corazza.", + "example_sentence_english": "The knight wore heavy armor.", + "pos": "noun", + "word_frequency": 12057 + }, + { + "word": "cornuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horned;cuckolded", + "romanization": "cornuto", + "example_sentence_native": "L'animale aveva delle corna molto grandi, era un cervo cornuto.", + "example_sentence_english": "The animal had very large horns, it was a horned deer.", + "pos": "adjective", + "word_frequency": 12058 + }, + { + "word": "cristallino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crystalline;clear", + "romanization": "cristallino", + "example_sentence_native": "L'acqua del lago era così cristallina che si vedeva il fondo.", + "example_sentence_english": "The lake water was so clear that you could see the bottom.", + "pos": "adjective", + "word_frequency": 12059 + }, + { + "word": "cucinato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cooked", + "romanization": "cucinato", + "example_sentence_native": "Il pollo cucinato era delizioso.", + "example_sentence_english": "The cooked chicken was delicious.", + "pos": "adjective", + "word_frequency": 12061 + }, + { + "word": "degustazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasting (e.g.;wine tasting)", + "romanization": "degustazione", + "example_sentence_native": "Abbiamo partecipato a una degustazione di vini locali.", + "example_sentence_english": "We participated in a local wine tasting.", + "pos": "noun", + "word_frequency": 12063 + }, + { + "word": "diacono", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deacon", + "romanization": "diacono", + "example_sentence_native": "Il diacono ha assistito il sacerdote durante la messa.", + "example_sentence_english": "The deacon assisted the priest during the mass.", + "pos": "noun", + "word_frequency": 12064 + }, + { + "word": "diagnostico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diagnostic;diagnostician", + "romanization": "diagnostico", + "example_sentence_native": "Il medico ha usato un nuovo strumento diagnostico.", + "example_sentence_english": "The doctor used a new diagnostic tool.", + "pos": "noun", + "word_frequency": 12065 + }, + { + "word": "diagramma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagram;chart", + "romanization": "diagramma", + "example_sentence_native": "Il professore ha disegnato un diagramma per spiegare il concetto.", + "example_sentence_english": "The professor drew a diagram to explain the concept.", + "pos": "noun", + "word_frequency": 12066 + }, + { + "word": "disattivato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deactivated;disabled", + "romanization": "disattivato", + "example_sentence_native": "L'allarme è stato disattivato prima che arrivassimo.", + "example_sentence_english": "The alarm was deactivated before we arrived.", + "pos": "adjective", + "word_frequency": 12067 + }, + { + "word": "disuguaglianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inequality", + "romanization": "disuguaglianza", + "example_sentence_native": "La disuguaglianza sociale è un problema globale.", + "example_sentence_english": "Social inequality is a global problem.", + "pos": "noun", + "word_frequency": 12068 + }, + { + "word": "duna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dune", + "romanization": "duna", + "example_sentence_native": "Le dune di sabbia si estendevano fino all'orizzonte.", + "example_sentence_english": "The sand dunes stretched to the horizon.", + "pos": "noun", + "word_frequency": 12069 + }, + { + "word": "elasticità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elasticity;flexibility", + "romanization": "elasticità", + "example_sentence_native": "La gomma ha una grande elasticità.", + "example_sentence_english": "Rubber has great elasticity.", + "pos": "noun", + "word_frequency": 12070 + }, + { + "word": "elettrodomestico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "home appliance", + "romanization": "elettrodomestico", + "example_sentence_native": "Abbiamo comprato un nuovo elettrodomestico per la cucina.", + "example_sentence_english": "We bought a new home appliance for the kitchen.", + "pos": "noun", + "word_frequency": 12071 + }, + { + "word": "estinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extinct;extinguished", + "romanization": "estinto", + "example_sentence_native": "I dinosauri sono animali estinti.", + "example_sentence_english": "Dinosaurs are extinct animals.", + "pos": "adjective", + "word_frequency": 12073 + }, + { + "word": "focale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focal", + "romanization": "focale", + "example_sentence_native": "Il punto focale del dibattito era l'economia.", + "example_sentence_english": "The focal point of the debate was the economy.", + "pos": "adjective", + "word_frequency": 12080 + }, + { + "word": "fornello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stove", + "romanization": "fornello", + "example_sentence_native": "Ho messo la pentola sul fornello.", + "example_sentence_english": "I put the pot on the stove.", + "pos": "noun", + "word_frequency": 12082 + }, + { + "word": "giochino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little game;toy", + "romanization": "giochino", + "example_sentence_native": "Il bambino si divertiva con il suo giochino nuovo.", + "example_sentence_english": "The child was having fun with his new little toy.", + "pos": "noun", + "word_frequency": 12085 + }, + { + "word": "ignorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ignored;disregarded", + "romanization": "ignorato", + "example_sentence_native": "Il suo avvertimento è stato completamente ignorato.", + "example_sentence_english": "His warning was completely ignored.", + "pos": "adjective", + "word_frequency": 12094 + }, + { + "word": "immunitario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immune;immunological", + "romanization": "immunitario", + "example_sentence_native": "Il sistema immunitario protegge il corpo dalle malattie.", + "example_sentence_english": "The immune system protects the body from diseases.", + "pos": "adjective", + "word_frequency": 12096 + }, + { + "word": "incantato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enchanted;spellbound", + "romanization": "incantato", + "example_sentence_native": "Era incantato dalla bellezza del paesaggio.", + "example_sentence_english": "He was enchanted by the beauty of the landscape.", + "pos": "adjective", + "word_frequency": 12097 + }, + { + "word": "incastrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stuck;jammed", + "romanization": "incastrato", + "example_sentence_native": "La chiave si è incastrata nella serratura.", + "example_sentence_english": "The key got stuck in the lock.", + "pos": "adjective", + "word_frequency": 12098 + }, + { + "word": "incline", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclined;prone", + "romanization": "incline", + "example_sentence_native": "È incline a credere a tutto ciò che gli viene detto.", + "example_sentence_english": "He is inclined to believe everything he is told.", + "pos": "adjective", + "word_frequency": 12099 + }, + { + "word": "incognito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incognito;unknown", + "romanization": "incognito", + "example_sentence_native": "Ha viaggiato incognito per evitare l'attenzione.", + "example_sentence_english": "He traveled incognito to avoid attention.", + "pos": "adjective", + "word_frequency": 12100 + }, + { + "word": "indegno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unworthy;disgraceful", + "romanization": "indegno", + "example_sentence_native": "Si sentiva indegno di ricevere un tale onore.", + "example_sentence_english": "He felt unworthy of receiving such an honor.", + "pos": "adjective", + "word_frequency": 12101 + }, + { + "word": "infetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infected", + "romanization": "infetto", + "example_sentence_native": "La ferita era infetta e aveva bisogno di cure.", + "example_sentence_english": "The wound was infected and needed treatment.", + "pos": "adjective", + "word_frequency": 12102 + }, + { + "word": "infinità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infinity;endless quantity", + "romanization": "infinità", + "example_sentence_native": "C'è un'infinità di stelle nell'universo.", + "example_sentence_english": "There is an infinity of stars in the universe.", + "pos": "noun", + "word_frequency": 12103 + }, + { + "word": "intenzionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intentional;deliberate", + "romanization": "intenzionale", + "example_sentence_native": "Il danno non è stato intenzionale.", + "example_sentence_english": "The damage was not intentional.", + "pos": "adjective", + "word_frequency": 12104 + }, + { + "word": "interattivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interactive", + "romanization": "interattivo", + "example_sentence_native": "Il museo offre molte mostre interattive.", + "example_sentence_english": "The museum offers many interactive exhibits.", + "pos": "adjective", + "word_frequency": 12105 + }, + { + "word": "intrattenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to entertain;to amuse", + "romanization": "intrattenere", + "example_sentence_native": "Il clown ha intrattenuto i bambini per ore.", + "example_sentence_english": "The clown entertained the children for hours.", + "pos": "verb", + "word_frequency": 12106 + }, + { + "word": "intravedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to glimpse;to catch sight of", + "romanization": "intravedere", + "example_sentence_native": "Ho intravisto una figura nell'ombra.", + "example_sentence_english": "I glimpsed a figure in the shadow.", + "pos": "verb", + "word_frequency": 12107 + }, + { + "word": "karate", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "karate", + "romanization": "karate", + "example_sentence_native": "Mio figlio pratica il karate due volte a settimana.", + "example_sentence_english": "My son practices karate twice a week.", + "pos": "noun", + "word_frequency": 12108 + }, + { + "word": "magnesio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnesium", + "romanization": "magnesio", + "example_sentence_native": "Il magnesio è importante per la salute delle ossa.", + "example_sentence_english": "Magnesium is important for bone health.", + "pos": "noun", + "word_frequency": 12111 + }, + { + "word": "masturbazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masturbation", + "romanization": "masturbazione", + "example_sentence_native": "La masturbazione è un comportamento sessuale comune.", + "example_sentence_english": "Masturbation is a common sexual behavior.", + "pos": "noun", + "word_frequency": 12116 + }, + { + "word": "mediano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "midfielder", + "romanization": "mediano", + "example_sentence_native": "Il mediano ha recuperato molti palloni a centrocampo.", + "example_sentence_english": "The midfielder recovered many balls in midfield.", + "pos": "noun", + "word_frequency": 12117 + }, + { + "word": "metrica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metrics;meter", + "romanization": "metrica", + "example_sentence_native": "Lo studio della metrica è fondamentale per la poesia.", + "example_sentence_english": "The study of metrics is fundamental for poetry.", + "pos": "noun", + "word_frequency": 12118 + }, + { + "word": "monaca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nun", + "romanization": "monaca", + "example_sentence_native": "La monaca vive nel convento.", + "example_sentence_english": "The nun lives in the convent.", + "pos": "noun", + "word_frequency": 12120 + }, + { + "word": "monster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monster", + "romanization": "monster", + "example_sentence_native": "Il bambino aveva paura del monster sotto il letto.", + "example_sentence_english": "The child was afraid of the monster under the bed.", + "pos": "noun", + "word_frequency": 12121 + }, + { + "word": "morsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vise;grip", + "romanization": "morsa", + "example_sentence_native": "Ha stretto il pezzo nella morsa.", + "example_sentence_english": "He tightened the piece in the vise.", + "pos": "noun", + "word_frequency": 12122 + }, + { + "word": "muffa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mold", + "romanization": "muffa", + "example_sentence_native": "C'è della muffa sul pane vecchio.", + "example_sentence_english": "There is mold on the old bread.", + "pos": "noun", + "word_frequency": 12123 + }, + { + "word": "muraglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wall;rampart", + "romanization": "muraglia", + "example_sentence_native": "Le antiche muraglie proteggevano la città.", + "example_sentence_english": "The ancient walls protected the city.", + "pos": "noun", + "word_frequency": 12124 + }, + { + "word": "notarile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notarial", + "romanization": "notarile", + "example_sentence_native": "L'atto notarile è stato firmato ieri.", + "example_sentence_english": "The notarial deed was signed yesterday.", + "pos": "adjective", + "word_frequency": 12127 + }, + { + "word": "ocean", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ocean", + "romanization": "ocean", + "example_sentence_native": "L'ocean è pieno di misteri.", + "example_sentence_english": "The ocean is full of mysteries.", + "pos": "noun", + "word_frequency": 12128 + }, + { + "word": "paladino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paladin;champion", + "romanization": "paladino", + "example_sentence_native": "Era considerato un paladino della giustizia.", + "example_sentence_english": "He was considered a champion of justice.", + "pos": "noun", + "word_frequency": 12130 + }, + { + "word": "pallottola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bullet", + "romanization": "pallottola", + "example_sentence_native": "La pallottola ha colpito il bersaglio.", + "example_sentence_english": "The bullet hit the target.", + "pos": "noun", + "word_frequency": 12131 + }, + { + "word": "parabrezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "windshield", + "romanization": "parabrezza", + "example_sentence_native": "Il parabrezza dell'auto era sporco.", + "example_sentence_english": "The car's windshield was dirty.", + "pos": "noun", + "word_frequency": 12133 + }, + { + "word": "paracadute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parachute", + "romanization": "paracadute", + "example_sentence_native": "Ha aperto il paracadute appena in tempo.", + "example_sentence_english": "He opened the parachute just in time.", + "pos": "noun", + "word_frequency": 12134 + }, + { + "word": "pedale", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pedal", + "romanization": "pedale", + "example_sentence_native": "Premi il pedale del freno.", + "example_sentence_english": "Press the brake pedal.", + "pos": "noun", + "word_frequency": 12136 + }, + { + "word": "perno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pivot;pin", + "romanization": "perno", + "example_sentence_native": "Il perno della ruota si è rotto.", + "example_sentence_english": "The wheel's pivot broke.", + "pos": "noun", + "word_frequency": 12137 + }, + { + "word": "persiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Persian (person;language)", + "romanization": "persiano", + "example_sentence_native": "Parla fluentemente il persiano.", + "example_sentence_english": "He speaks Persian fluently.", + "pos": "noun", + "word_frequency": 12138 + }, + { + "word": "pessimista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pessimistic", + "romanization": "pessimista", + "example_sentence_native": "Non essere così pessimista riguardo al futuro.", + "example_sentence_english": "Don't be so pessimistic about the future.", + "pos": "adjective", + "word_frequency": 12139 + }, + { + "word": "piedistallo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pedestal", + "romanization": "piedistallo", + "example_sentence_native": "La statua era posta su un alto piedistallo.", + "example_sentence_english": "The statue was placed on a high pedestal.", + "pos": "noun", + "word_frequency": 12140 + }, + { + "word": "plagio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plagiarism", + "romanization": "plagio", + "example_sentence_native": "L'accusa di plagio ha rovinato la sua carriera.", + "example_sentence_english": "The accusation of plagiarism ruined his career.", + "pos": "noun", + "word_frequency": 12142 + }, + { + "word": "poppa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stern (of a ship)", + "romanization": "poppa", + "example_sentence_native": "La bandiera sventolava a poppa della nave.", + "example_sentence_english": "The flag waved at the stern of the ship.", + "pos": "noun", + "word_frequency": 12143 + }, + { + "word": "porro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "leek;wart", + "romanization": "porro", + "example_sentence_native": "Ho comprato un porro per la zuppa.", + "example_sentence_english": "I bought a leek for the soup.", + "pos": "noun", + "word_frequency": 12144 + }, + { + "word": "predominante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predominant", + "romanization": "predominante", + "example_sentence_native": "Il colore predominante nel quadro è il blu.", + "example_sentence_english": "The predominant color in the painting is blue.", + "pos": "adjective", + "word_frequency": 12146 + }, + { + "word": "principiante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beginner", + "romanization": "principiante", + "example_sentence_native": "Sono ancora un principiante in italiano.", + "example_sentence_english": "I am still a beginner in Italian.", + "pos": "noun", + "word_frequency": 12147 + }, + { + "word": "prologo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prologue", + "romanization": "prologo", + "example_sentence_native": "Il prologo del libro introduce i personaggi principali.", + "example_sentence_english": "The prologue of the book introduces the main characters.", + "pos": "noun", + "word_frequency": 12148 + }, + { + "word": "prosecco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Prosecco (sparkling wine)", + "romanization": "prosecco", + "example_sentence_native": "Beviamo un bicchiere di Prosecco per festeggiare.", + "example_sentence_english": "Let's drink a glass of Prosecco to celebrate.", + "pos": "noun", + "word_frequency": 12149 + }, + { + "word": "puntato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pointed;dotted;aimed", + "romanization": "puntato", + "example_sentence_native": "L'arma era puntata verso il bersaglio.", + "example_sentence_english": "The weapon was aimed at the target.", + "pos": "adjective", + "word_frequency": 12150 + }, + { + "word": "qualitativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "qualitative", + "romanization": "qualitativo", + "example_sentence_native": "Abbiamo bisogno di un'analisi qualitativa dei dati.", + "example_sentence_english": "We need a qualitative analysis of the data.", + "pos": "adjective", + "word_frequency": 12151 + }, + { + "word": "raddoppiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to double", + "romanization": "raddoppiare", + "example_sentence_native": "I prezzi sono raddoppiati in pochi anni.", + "example_sentence_english": "Prices have doubled in a few years.", + "pos": "verb", + "word_frequency": 12152 + }, + { + "word": "restituito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "returned;given back", + "romanization": "restituito", + "example_sentence_native": "Il libro restituito era in perfette condizioni.", + "example_sentence_english": "The returned book was in perfect condition.", + "pos": "adjective", + "word_frequency": 12154 + }, + { + "word": "ridire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to say again;to object", + "romanization": "ridire", + "example_sentence_native": "Non ho nulla da ridire sulla sua proposta.", + "example_sentence_english": "I have nothing to object to about his proposal.", + "pos": "verb", + "word_frequency": 12155 + }, + { + "word": "rigidità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigidity;stiffness", + "romanization": "rigidità", + "example_sentence_native": "La rigidità del materiale lo rende difficile da piegare.", + "example_sentence_english": "The rigidity of the material makes it difficult to bend.", + "pos": "noun", + "word_frequency": 12156 + }, + { + "word": "riproposto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reproposed;re-suggested", + "romanization": "riproposto", + "example_sentence_native": "Il progetto riproposto ha ricevuto nuove modifiche.", + "example_sentence_english": "The reproposed project received new modifications.", + "pos": "adjective", + "word_frequency": 12157 + }, + { + "word": "ristrutturato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renovated;restructured", + "romanization": "ristrutturato", + "example_sentence_native": "L'appartamento ristrutturato è molto più moderno.", + "example_sentence_english": "The renovated apartment is much more modern.", + "pos": "adjective", + "word_frequency": 12158 + }, + { + "word": "scaricato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "downloaded;unloaded", + "romanization": "scaricato", + "example_sentence_native": "Ho scaricato il file dal sito web.", + "example_sentence_english": "I downloaded the file from the website.", + "pos": "adjective", + "word_frequency": 12165 + }, + { + "word": "scoop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scoop (news)", + "romanization": "scoop", + "example_sentence_native": "Il giornalista ha ottenuto uno scoop esclusivo.", + "example_sentence_english": "The journalist got an exclusive scoop.", + "pos": "noun", + "word_frequency": 12166 + }, + { + "word": "seminare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sow;to spread", + "romanization": "seminare", + "example_sentence_native": "È tempo di seminare il grano nei campi.", + "example_sentence_english": "It's time to sow the wheat in the fields.", + "pos": "verb", + "word_frequency": 12167 + }, + { + "word": "seminato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sown;scattered", + "romanization": "seminato", + "example_sentence_native": "Il campo era appena stato seminato.", + "example_sentence_english": "The field had just been sown.", + "pos": "adjective", + "word_frequency": 12168 + }, + { + "word": "sodalizio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "association;fellowship", + "romanization": "sodalizio", + "example_sentence_native": "Il sodalizio tra i due artisti ha prodotto opere magnifiche.", + "example_sentence_english": "The association between the two artists produced magnificent works.", + "pos": "noun", + "word_frequency": 12170 + }, + { + "word": "soffiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to blow", + "romanization": "soffiare", + "example_sentence_native": "Il vento soffiava forte tra gli alberi.", + "example_sentence_english": "The wind was blowing hard through the trees.", + "pos": "verb", + "word_frequency": 12171 + }, + { + "word": "soffitta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic", + "romanization": "soffitta", + "example_sentence_native": "Abbiamo trovato vecchie foto nella soffitta.", + "example_sentence_english": "We found old photos in the attic.", + "pos": "noun", + "word_frequency": 12172 + }, + { + "word": "sovvenzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidy;grant", + "romanization": "sovvenzione", + "example_sentence_native": "Il governo ha approvato una sovvenzione per le piccole imprese.", + "example_sentence_english": "The government approved a subsidy for small businesses.", + "pos": "noun", + "word_frequency": 12174 + }, + { + "word": "superficialità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superficiality", + "romanization": "superficialità", + "example_sentence_native": "La sua superficialità gli impedisce di comprendere a fondo i problemi.", + "example_sentence_english": "His superficiality prevents him from fully understanding the problems.", + "pos": "noun", + "word_frequency": 12176 + }, + { + "word": "talpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mole", + "romanization": "talpa", + "example_sentence_native": "La talpa ha scavato un tunnel nel giardino.", + "example_sentence_english": "The mole dug a tunnel in the garden.", + "pos": "noun", + "word_frequency": 12177 + }, + { + "word": "teenager", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "teenager", + "romanization": "teenager", + "example_sentence_native": "Mia sorella è una teenager e ama la musica pop.", + "example_sentence_english": "My sister is a teenager and loves pop music.", + "pos": "noun", + "word_frequency": 12178 + }, + { + "word": "tempistica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timing", + "romanization": "tempistica", + "example_sentence_native": "La tempistica del lancio del prodotto è cruciale.", + "example_sentence_english": "The timing of the product launch is crucial.", + "pos": "noun", + "word_frequency": 12179 + }, + { + "word": "tendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tending;inclined", + "romanization": "tendente", + "example_sentence_native": "È una persona tendente all'ottimismo.", + "example_sentence_english": "He is a person tending towards optimism.", + "pos": "adjective", + "word_frequency": 12180 + }, + { + "word": "transessuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transsexual", + "romanization": "transessuale", + "example_sentence_native": "La comunità transessuale chiede maggiore inclusione.", + "example_sentence_english": "The transsexual community asks for greater inclusion.", + "pos": "adjective", + "word_frequency": 12185 + }, + { + "word": "trasposizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transposition", + "romanization": "trasposizione", + "example_sentence_native": "La trasposizione cinematografica del romanzo è stata un successo.", + "example_sentence_english": "The film transposition of the novel was a success.", + "pos": "noun", + "word_frequency": 12186 + }, + { + "word": "traversata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossing;passage", + "romanization": "traversata", + "example_sentence_native": "La traversata dell'Atlantico durò diversi giorni.", + "example_sentence_english": "The Atlantic crossing lasted several days.", + "pos": "noun", + "word_frequency": 12187 + }, + { + "word": "utilizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utilization;use", + "romanization": "utilizzazione", + "example_sentence_native": "L'utilizzazione delle risorse deve essere efficiente.", + "example_sentence_english": "The utilization of resources must be efficient.", + "pos": "noun", + "word_frequency": 12189 + }, + { + "word": "vassoio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tray", + "romanization": "vassoio", + "example_sentence_native": "Ha portato il caffè su un vassoio d'argento.", + "example_sentence_english": "He brought the coffee on a silver tray.", + "pos": "noun", + "word_frequency": 12190 + }, + { + "word": "vegetariano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetarian", + "romanization": "vegetariano", + "example_sentence_native": "Sono vegetariano da molti anni.", + "example_sentence_english": "I have been vegetarian for many years.", + "pos": "adjective", + "word_frequency": 12191 + }, + { + "word": "ventaglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fan;range", + "romanization": "ventaglio", + "example_sentence_native": "Ha aperto il ventaglio per rinfrescarsi.", + "example_sentence_english": "She opened the fan to cool herself.", + "pos": "noun", + "word_frequency": 12193 + }, + { + "word": "vestiario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clothing;apparel", + "romanization": "vestiario", + "example_sentence_native": "Il vestiario per la montagna deve essere caldo e impermeabile.", + "example_sentence_english": "Mountain clothing must be warm and waterproof.", + "pos": "noun", + "word_frequency": 12194 + }, + { + "word": "acconto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down payment;deposit", + "romanization": "acconto", + "example_sentence_native": "Ho versato un acconto per l'acquisto della casa.", + "example_sentence_english": "I paid a down payment for the house purchase.", + "pos": "noun", + "word_frequency": 12199 + }, + { + "word": "aderenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adherence;grip", + "romanization": "aderenza", + "example_sentence_native": "La gomma ha una buona aderenza sulla strada bagnata.", + "example_sentence_english": "The tire has good grip on the wet road.", + "pos": "noun", + "word_frequency": 12200 + }, + { + "word": "african", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "African", + "romanization": "african", + "example_sentence_native": "Ho incontrato un artista africano molto talentuoso.", + "example_sentence_english": "I met a very talented African artist.", + "pos": "adjective", + "word_frequency": 12201 + }, + { + "word": "agro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sour;tart", + "romanization": "agro", + "example_sentence_native": "Questo limone è molto agro.", + "example_sentence_english": "This lemon is very sour.", + "pos": "adjective", + "word_frequency": 12202 + }, + { + "word": "allineato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aligned", + "romanization": "allineato", + "example_sentence_native": "I libri erano perfettamente allineati sullo scaffale.", + "example_sentence_english": "The books were perfectly aligned on the shelf.", + "pos": "adjective", + "word_frequency": 12203 + }, + { + "word": "altura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "height;hill", + "romanization": "altura", + "example_sentence_native": "Dalle alture si godeva di una vista mozzafiato.", + "example_sentence_english": "From the heights, there was a breathtaking view.", + "pos": "noun", + "word_frequency": 12204 + }, + { + "word": "antipatico", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "unpleasant;unlikeable", + "romanization": "antipatico", + "example_sentence_native": "Il nuovo vicino è un po' antipatico.", + "example_sentence_english": "The new neighbor is a bit unpleasant.", + "pos": "adjective", + "word_frequency": 12205 + }, + { + "word": "appellativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appellation;title", + "romanization": "appellativo", + "example_sentence_native": "\"Maestro\" è un appellativo comune per gli insegnanti.", + "example_sentence_english": "\"Master\" is a common appellation for teachers.", + "pos": "noun", + "word_frequency": 12206 + }, + { + "word": "armonico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmonious;balanced", + "romanization": "armonico", + "example_sentence_native": "Il design della stanza è molto armonico.", + "example_sentence_english": "The room's design is very harmonious.", + "pos": "adjective", + "word_frequency": 12207 + }, + { + "word": "artico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arctic", + "romanization": "artico", + "example_sentence_native": "Gli orsi polari vivono nelle regioni artiche.", + "example_sentence_english": "Polar bears live in the Arctic regions.", + "pos": "adjective", + "word_frequency": 12208 + }, + { + "word": "atmosferico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atmospheric", + "romanization": "atmosferico", + "example_sentence_native": "La pressione atmosferica è cambiata rapidamente.", + "example_sentence_english": "The atmospheric pressure changed rapidly.", + "pos": "adjective", + "word_frequency": 12210 + }, + { + "word": "autodifesa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-defense", + "romanization": "autodifesa", + "example_sentence_native": "Ha frequentato un corso di autodifesa.", + "example_sentence_english": "She attended a self-defense course.", + "pos": "noun", + "word_frequency": 12212 + }, + { + "word": "avvistato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sighted;spotted", + "romanization": "avvistato", + "example_sentence_native": "Un UFO è stato avvistato nel cielo notturno.", + "example_sentence_english": "A UFO was sighted in the night sky.", + "pos": "adjective", + "word_frequency": 12213 + }, + { + "word": "badante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caregiver;home care assistant", + "romanization": "badante", + "example_sentence_native": "Hanno assunto una badante per la nonna.", + "example_sentence_english": "They hired a caregiver for their grandmother.", + "pos": "noun", + "word_frequency": 12215 + }, + { + "word": "baratro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abyss;chasm", + "romanization": "baratro", + "example_sentence_native": "Si affacciò sul baratro, sentendo un brivido.", + "example_sentence_english": "He looked out over the abyss, feeling a shiver.", + "pos": "noun", + "word_frequency": 12216 + }, + { + "word": "benigno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benign;kind", + "romanization": "benigno", + "example_sentence_native": "Fortunatamente, il tumore era benigno.", + "example_sentence_english": "Fortunately, the tumor was benign.", + "pos": "adjective", + "word_frequency": 12220 + }, + { + "word": "brunetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brunette (woman)", + "romanization": "brunetta", + "example_sentence_native": "La ragazza con i capelli scuri è una brunetta.", + "example_sentence_english": "The girl with dark hair is a brunette.", + "pos": "noun", + "word_frequency": 12222 + }, + { + "word": "calle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrow street;alley (Venice)", + "romanization": "calle", + "example_sentence_native": "Ci siamo persi in una piccola calle di Venezia.", + "example_sentence_english": "We got lost in a small alley in Venice.", + "pos": "noun", + "word_frequency": 12225 + }, + { + "word": "causale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "causal;causative", + "romanization": "causale", + "example_sentence_native": "Non c'è una relazione causale diretta tra i due eventi.", + "example_sentence_english": "There is no direct causal relationship between the two events.", + "pos": "adjective", + "word_frequency": 12228 + }, + { + "word": "collocamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placement;employment", + "romanization": "collocamento", + "example_sentence_native": "Ha trovato un nuovo collocamento tramite l'agenzia.", + "example_sentence_english": "He found a new placement through the agency.", + "pos": "noun", + "word_frequency": 12232 + }, + { + "word": "compagine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "structure;composition;team", + "romanization": "compagine", + "example_sentence_native": "La compagine della squadra è molto unita.", + "example_sentence_english": "The team's composition is very united.", + "pos": "noun", + "word_frequency": 12233 + }, + { + "word": "conchiglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shell;seashell", + "romanization": "conchiglia", + "example_sentence_native": "Ho trovato una bella conchiglia sulla spiaggia.", + "example_sentence_english": "I found a beautiful shell on the beach.", + "pos": "noun", + "word_frequency": 12235 + }, + { + "word": "concluso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "concluded;finished", + "romanization": "concluso", + "example_sentence_native": "Il progetto è stato concluso con successo.", + "example_sentence_english": "The project was successfully concluded.", + "pos": "adjective", + "word_frequency": 12236 + }, + { + "word": "congettura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conjecture;speculation", + "romanization": "congettura", + "example_sentence_native": "La sua teoria è solo una congettura, non un fatto.", + "example_sentence_english": "His theory is just a conjecture, not a fact.", + "pos": "noun", + "word_frequency": 12237 + }, + { + "word": "crittografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cryptography", + "romanization": "crittografia", + "example_sentence_native": "La crittografia è essenziale per la sicurezza online.", + "example_sentence_english": "Cryptography is essential for online security.", + "pos": "noun", + "word_frequency": 12240 + }, + { + "word": "cucchiaino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teaspoon", + "romanization": "cucchiaino", + "example_sentence_native": "Ho bisogno di un cucchiaino per mescolare il caffè.", + "example_sentence_english": "I need a teaspoon to stir the coffee.", + "pos": "noun", + "word_frequency": 12241 + }, + { + "word": "demolire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to demolish", + "romanization": "demolire", + "example_sentence_native": "Devono demolire il vecchio edificio per costruirne uno nuovo.", + "example_sentence_english": "They have to demolish the old building to construct a new one.", + "pos": "verb", + "word_frequency": 12243 + }, + { + "word": "deterioramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deterioration", + "romanization": "deterioramento", + "example_sentence_native": "Il deterioramento della qualità dell'aria è preoccupante.", + "example_sentence_english": "The deterioration of air quality is worrying.", + "pos": "noun", + "word_frequency": 12244 + }, + { + "word": "diagnosticato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diagnosed", + "romanization": "diagnosticato", + "example_sentence_native": "La malattia è stata diagnosticata in fase precoce.", + "example_sentence_english": "The disease was diagnosed at an early stage.", + "pos": "adjective", + "word_frequency": 12245 + }, + { + "word": "dritta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tip", + "romanization": "dritta", + "example_sentence_native": "Mi ha dato una dritta utile per il mio progetto.", + "example_sentence_english": "He gave me a useful tip for my project.", + "pos": "noun", + "word_frequency": 12249 + }, + { + "word": "espiatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scapegoat;expiatory", + "romanization": "espiatorio", + "example_sentence_native": "Hanno cercato un capro espiatorio per la loro sconfitta.", + "example_sentence_english": "They looked for a scapegoat for their defeat.", + "pos": "adjective", + "word_frequency": 12253 + }, + { + "word": "fieno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hay", + "romanization": "fieno", + "example_sentence_native": "Il contadino ha raccolto il fieno per l'inverno.", + "example_sentence_english": "The farmer collected the hay for the winter.", + "pos": "noun", + "word_frequency": 12255 + }, + { + "word": "frenata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "braking", + "romanization": "frenata", + "example_sentence_native": "La frenata improvvisa ha evitato l'incidente.", + "example_sentence_english": "The sudden braking avoided the accident.", + "pos": "noun", + "word_frequency": 12259 + }, + { + "word": "furore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fury", + "romanization": "furore", + "example_sentence_native": "Il suo discorso ha scatenato un furore tra la folla.", + "example_sentence_english": "His speech unleashed a fury among the crowd.", + "pos": "noun", + "word_frequency": 12260 + }, + { + "word": "gioioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joyful", + "romanization": "gioioso", + "example_sentence_native": "Era un'atmosfera gioiosa durante la festa.", + "example_sentence_english": "It was a joyful atmosphere during the party.", + "pos": "adjective", + "word_frequency": 12262 + }, + { + "word": "governatorato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governorate", + "romanization": "governatorato", + "example_sentence_native": "Il governatorato ha emesso un nuovo decreto.", + "example_sentence_english": "The governorate issued a new decree.", + "pos": "noun", + "word_frequency": 12263 + }, + { + "word": "gufo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owl", + "romanization": "gufo", + "example_sentence_native": "Abbiamo visto un gufo appollaiato sull'albero.", + "example_sentence_english": "We saw an owl perched on the tree.", + "pos": "noun", + "word_frequency": 12264 + }, + { + "word": "imperfetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imperfect", + "romanization": "imperfetto", + "example_sentence_native": "Il suo lavoro è ancora imperfetto, ma sta migliorando.", + "example_sentence_english": "His work is still imperfect, but he is improving.", + "pos": "adjective", + "word_frequency": 12270 + }, + { + "word": "impostato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set;configured", + "romanization": "impostato", + "example_sentence_native": "Il sistema è stato impostato correttamente.", + "example_sentence_english": "The system has been set up correctly.", + "pos": "adjective", + "word_frequency": 12271 + }, + { + "word": "imputazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charge;indictment", + "romanization": "imputazione", + "example_sentence_native": "L'imputazione è stata formalizzata dal pubblico ministero.", + "example_sentence_english": "The charge was formalized by the public prosecutor.", + "pos": "noun", + "word_frequency": 12272 + }, + { + "word": "inaspettatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unexpectedly", + "romanization": "inaspettatamente", + "example_sentence_native": "Inaspettatamente, ha deciso di cambiare idea.", + "example_sentence_english": "Unexpectedly, he decided to change his mind.", + "pos": "adverb", + "word_frequency": 12273 + }, + { + "word": "incipit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opening;beginning (of a text)", + "romanization": "incipit", + "example_sentence_native": "L'incipit del romanzo è molto coinvolgente.", + "example_sentence_english": "The opening of the novel is very engaging.", + "pos": "noun", + "word_frequency": 12274 + }, + { + "word": "inconveniente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconvenience;drawback", + "romanization": "inconveniente", + "example_sentence_native": "C'è stato un piccolo inconveniente con la prenotazione.", + "example_sentence_english": "There was a small inconvenience with the reservation.", + "pos": "noun", + "word_frequency": 12275 + }, + { + "word": "indeciso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "undecided;hesitant", + "romanization": "indeciso", + "example_sentence_native": "Era indeciso su quale strada prendere.", + "example_sentence_english": "He was undecided about which road to take.", + "pos": "adjective", + "word_frequency": 12276 + }, + { + "word": "inquadrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framed;placed in context", + "romanization": "inquadrato", + "example_sentence_native": "Il problema deve essere inquadrato nel contesto più ampio.", + "example_sentence_english": "The problem must be placed in the broader context.", + "pos": "adjective", + "word_frequency": 12277 + }, + { + "word": "inquilino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tenant", + "romanization": "inquilino", + "example_sentence_native": "Il nuovo inquilino si è trasferito ieri.", + "example_sentence_english": "The new tenant moved in yesterday.", + "pos": "noun", + "word_frequency": 12278 + }, + { + "word": "invariato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unchanged", + "romanization": "invariato", + "example_sentence_native": "Il prezzo è rimasto invariato.", + "example_sentence_english": "The price remained unchanged.", + "pos": "adjective", + "word_frequency": 12280 + }, + { + "word": "invocato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invoked;called upon", + "romanization": "invocato", + "example_sentence_native": "L'aiuto divino è stato invocato.", + "example_sentence_english": "Divine help was invoked.", + "pos": "adjective", + "word_frequency": 12281 + }, + { + "word": "irrimediabilmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irremediably;irrevocably", + "romanization": "irrimediabilmente", + "example_sentence_native": "La situazione è irrimediabilmente compromessa.", + "example_sentence_english": "The situation is irremediably compromised.", + "pos": "adverb", + "word_frequency": 12282 + }, + { + "word": "lavoretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "odd job;small job", + "romanization": "lavoretto", + "example_sentence_native": "Ho fatto un lavoretto per guadagnare qualcosa.", + "example_sentence_english": "I did an odd job to earn something.", + "pos": "noun", + "word_frequency": 12288 + }, + { + "word": "leso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "injured;damaged;harmed", + "romanization": "leso", + "example_sentence_native": "Il suo onore è stato leso.", + "example_sentence_english": "His honor was harmed.", + "pos": "adjective", + "word_frequency": 12289 + }, + { + "word": "locandina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poster;playbill;flyer", + "romanization": "locandina", + "example_sentence_native": "Ho visto la locandina del nuovo film.", + "example_sentence_english": "I saw the poster for the new movie.", + "pos": "noun", + "word_frequency": 12290 + }, + { + "word": "macchinetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small machine;coffee machine;vending machine", + "romanization": "macchinetta", + "example_sentence_native": "Prendo un caffè dalla macchinetta.", + "example_sentence_english": "I'll get a coffee from the vending machine.", + "pos": "noun", + "word_frequency": 12292 + }, + { + "word": "maltrattamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistreatment;abuse", + "romanization": "maltrattamento", + "example_sentence_native": "I maltrattamenti sugli animali sono inaccettabili.", + "example_sentence_english": "Animal mistreatment is unacceptable.", + "pos": "noun", + "word_frequency": 12293 + }, + { + "word": "maniaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "maniac;obsessive", + "romanization": "maniaco", + "example_sentence_native": "È un maniaco dell'ordine.", + "example_sentence_english": "He's an order maniac.", + "pos": "noun", + "word_frequency": 12294 + }, + { + "word": "mediana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "median;midfielder", + "romanization": "mediana", + "example_sentence_native": "La mediana di questi dati è 5.", + "example_sentence_english": "The median of this data is 5.", + "pos": "noun", + "word_frequency": 12295 + }, + { + "word": "medusa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jellyfish;Medusa", + "romanization": "medusa", + "example_sentence_native": "Ho visto una medusa in mare.", + "example_sentence_english": "I saw a jellyfish in the sea.", + "pos": "noun", + "word_frequency": 12296 + }, + { + "word": "montanaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountaineer;mountain dweller", + "romanization": "montanaro", + "example_sentence_native": "È un vero montanaro, ama la montagna.", + "example_sentence_english": "He's a true mountaineer, he loves the mountains.", + "pos": "noun", + "word_frequency": 12301 + }, + { + "word": "morente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dying;fading", + "romanization": "morente", + "example_sentence_native": "La pianta era morente.", + "example_sentence_english": "The plant was dying.", + "pos": "adjective", + "word_frequency": 12302 + }, + { + "word": "navicella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spacecraft;capsule;small boat", + "romanization": "navicella", + "example_sentence_native": "La navicella spaziale è atterrata.", + "example_sentence_english": "The spacecraft landed.", + "pos": "noun", + "word_frequency": 12305 + }, + { + "word": "omesso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omitted;left out", + "romanization": "omesso", + "example_sentence_native": "Un dettaglio importante è stato omesso.", + "example_sentence_english": "An important detail was omitted.", + "pos": "adjective", + "word_frequency": 12309 + }, + { + "word": "palatino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Palatine (Hill)", + "romanization": "palatino", + "example_sentence_native": "Il Palatino è uno dei sette colli di Roma.", + "example_sentence_english": "The Palatine is one of the seven hills of Rome.", + "pos": "noun", + "word_frequency": 12312 + }, + { + "word": "passaparola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "word of mouth", + "romanization": "passaparola", + "example_sentence_native": "La notizia si è diffusa con il passaparola.", + "example_sentence_english": "The news spread by word of mouth.", + "pos": "noun", + "word_frequency": 12313 + }, + { + "word": "pendice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slope;hillside", + "romanization": "pendice", + "example_sentence_native": "La casa si trova sulla pendice della montagna.", + "example_sentence_english": "The house is on the slope of the mountain.", + "pos": "noun", + "word_frequency": 12314 + }, + { + "word": "perpetuo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perpetual;everlasting", + "romanization": "perpetuo", + "example_sentence_native": "Ha ricevuto un ergastolo perpetuo.", + "example_sentence_english": "He received a perpetual life sentence.", + "pos": "adjective", + "word_frequency": 12315 + }, + { + "word": "pertinenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relevance;pertinence", + "romanization": "pertinenza", + "example_sentence_native": "Questo argomento non è di tua pertinenza.", + "example_sentence_english": "This topic is not your pertinence.", + "pos": "noun", + "word_frequency": 12316 + }, + { + "word": "pettine", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "comb", + "romanization": "pettine", + "example_sentence_native": "Ho bisogno di un pettine per i capelli.", + "example_sentence_english": "I need a comb for my hair.", + "pos": "noun", + "word_frequency": 12317 + }, + { + "word": "pinacoteca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "art gallery;picture gallery", + "romanization": "pinacoteca", + "example_sentence_native": "Abbiamo visitato la pinacoteca di Brera.", + "example_sentence_english": "We visited the Brera art gallery.", + "pos": "noun", + "word_frequency": 12318 + }, + { + "word": "pirla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot;fool (Milanese slang)", + "romanization": "pirla", + "example_sentence_native": "Non fare il pirla!", + "example_sentence_english": "Don't be an idiot!", + "pos": "noun", + "word_frequency": 12319 + }, + { + "word": "plotone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platoon", + "romanization": "plotone", + "example_sentence_native": "Il plotone avanzò lentamente attraverso il campo.", + "example_sentence_english": "The platoon advanced slowly across the field.", + "pos": "noun", + "word_frequency": 12320 + }, + { + "word": "posato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calm;composed", + "romanization": "posato", + "example_sentence_native": "Ha un atteggiamento molto posato, anche sotto pressione.", + "example_sentence_english": "He has a very composed attitude, even under pressure.", + "pos": "adjective", + "word_frequency": 12321 + }, + { + "word": "postino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "postman;mailman", + "romanization": "postino", + "example_sentence_native": "Il postino ha consegnato una lettera importante questa mattina.", + "example_sentence_english": "The postman delivered an important letter this morning.", + "pos": "noun", + "word_frequency": 12322 + }, + { + "word": "prepotente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogant;overbearing", + "romanization": "prepotente", + "example_sentence_native": "Non sopporto le persone prepotenti che cercano di imporsi.", + "example_sentence_english": "I can't stand overbearing people who try to impose themselves.", + "pos": "adjective", + "word_frequency": 12323 + }, + { + "word": "primaverile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spring (adjective);springtime", + "romanization": "primaverile", + "example_sentence_native": "L'aria primaverile era fresca e profumata di fiori.", + "example_sentence_english": "The spring air was fresh and smelled of flowers.", + "pos": "adjective", + "word_frequency": 12324 + }, + { + "word": "puntura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sting;injection", + "romanization": "puntura", + "example_sentence_native": "Ho ricevuto una puntura d'ape mentre ero in giardino.", + "example_sentence_english": "I got a bee sting while I was in the garden.", + "pos": "noun", + "word_frequency": 12325 + }, + { + "word": "radical", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radical", + "romanization": "radical", + "example_sentence_native": "Sono necessarie riforme radicali per risolvere il problema.", + "example_sentence_english": "Radical reforms are needed to solve the problem.", + "pos": "adjective", + "word_frequency": 12326 + }, + { + "word": "ragù", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ragu (meat sauce)", + "romanization": "ragù", + "example_sentence_native": "La nonna prepara sempre un ottimo ragù per la pasta.", + "example_sentence_english": "Grandma always makes a great ragu for pasta.", + "pos": "noun", + "word_frequency": 12328 + }, + { + "word": "rappresaglia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprisal;retaliation", + "romanization": "rappresaglia", + "example_sentence_native": "Il governo ha minacciato rappresaglie in caso di attacco.", + "example_sentence_english": "The government threatened reprisals in case of an attack.", + "pos": "noun", + "word_frequency": 12330 + }, + { + "word": "rassegnazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resignation;acceptance", + "romanization": "rassegnazione", + "example_sentence_native": "C'era un senso di rassegnazione nei suoi occhi.", + "example_sentence_english": "There was a sense of resignation in his eyes.", + "pos": "noun", + "word_frequency": 12331 + }, + { + "word": "realista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "realistic;realist", + "romanization": "realista", + "example_sentence_native": "È importante essere realista riguardo alle proprie aspettative.", + "example_sentence_english": "It's important to be realistic about one's expectations.", + "pos": "adjective", + "word_frequency": 12332 + }, + { + "word": "revocare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revoke;to withdraw", + "romanization": "revocare", + "example_sentence_native": "Il permesso di costruire è stato revocato a causa di irregolarità.", + "example_sentence_english": "The building permit was revoked due to irregularities.", + "pos": "verb", + "word_frequency": 12333 + }, + { + "word": "rifondazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refoundation;reorganization", + "romanization": "rifondazione", + "example_sentence_native": "Il partito ha proposto una rifondazione completa del sistema.", + "example_sentence_english": "The party proposed a complete refoundation of the system.", + "pos": "noun", + "word_frequency": 12334 + }, + { + "word": "rinascere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be reborn;to revive", + "romanization": "rinascere", + "example_sentence_native": "Dopo la crisi, l'economia ha iniziato a rinascere.", + "example_sentence_english": "After the crisis, the economy began to revive.", + "pos": "verb", + "word_frequency": 12336 + }, + { + "word": "rinomato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "renowned;famous", + "romanization": "rinomato", + "example_sentence_native": "È un ristorante rinomato per la sua cucina tradizionale.", + "example_sentence_english": "It's a renowned restaurant for its traditional cuisine.", + "pos": "adjective", + "word_frequency": 12337 + }, + { + "word": "runner", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "runner", + "romanization": "runner", + "example_sentence_native": "Il runner ha tagliato il traguardo per primo.", + "example_sentence_english": "The runner crossed the finish line first.", + "pos": "noun", + "word_frequency": 12339 + }, + { + "word": "sagoma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silhouette;outline", + "romanization": "sagoma", + "example_sentence_native": "Ho visto una sagoma scura muoversi nell'ombra.", + "example_sentence_english": "I saw a dark silhouette moving in the shadow.", + "pos": "noun", + "word_frequency": 12340 + }, + { + "word": "salume", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cured meat;cold cut", + "romanization": "salume", + "example_sentence_native": "Per pranzo abbiamo mangiato pane e salumi misti.", + "example_sentence_english": "For lunch we ate bread and mixed cold cuts.", + "pos": "noun", + "word_frequency": 12341 + }, + { + "word": "schiacciante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming;crushing", + "romanization": "schiacciante", + "example_sentence_native": "La squadra ha ottenuto una vittoria schiacciante.", + "example_sentence_english": "The team achieved an overwhelming victory.", + "pos": "adjective", + "word_frequency": 12342 + }, + { + "word": "scorgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discern;to catch sight of", + "romanization": "scorgere", + "example_sentence_native": "Riuscì a scorgere una piccola luce in lontananza.", + "example_sentence_english": "He managed to discern a small light in the distance.", + "pos": "verb", + "word_frequency": 12343 + }, + { + "word": "selettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "selective", + "romanization": "selettivo", + "example_sentence_native": "L'università è molto selettiva nell'ammissione degli studenti.", + "example_sentence_english": "The university is very selective in admitting students.", + "pos": "adjective", + "word_frequency": 12344 + }, + { + "word": "servitù", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "servitude;domestic staff", + "romanization": "servitù", + "example_sentence_native": "Molte persone vivono ancora in condizioni di servitù.", + "example_sentence_english": "Many people still live in conditions of servitude.", + "pos": "noun", + "word_frequency": 12345 + }, + { + "word": "sminuire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to belittle;to diminish", + "romanization": "sminuire", + "example_sentence_native": "Non dovresti mai sminuire i successi degli altri.", + "example_sentence_english": "You should never belittle the achievements of others.", + "pos": "verb", + "word_frequency": 12351 + }, + { + "word": "sonorità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonority;sound quality", + "romanization": "sonorità", + "example_sentence_native": "La sonorità di questo strumento è eccezionale.", + "example_sentence_english": "The sonority of this instrument is exceptional.", + "pos": "noun", + "word_frequency": 12352 + }, + { + "word": "squallido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squalid;dismal", + "romanization": "squallido", + "example_sentence_native": "Viveva in un appartamento piccolo e squallido.", + "example_sentence_english": "He lived in a small and squalid apartment.", + "pos": "adjective", + "word_frequency": 12353 + }, + { + "word": "straordinariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extraordinarily;remarkably", + "romanization": "straordinariamente", + "example_sentence_native": "Il suo talento è straordinariamente evidente.", + "example_sentence_english": "His talent is extraordinarily evident.", + "pos": "adverb", + "word_frequency": 12355 + }, + { + "word": "stravagante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extravagant;eccentric", + "romanization": "stravagante", + "example_sentence_native": "Ha uno stile di abbigliamento molto stravagante.", + "example_sentence_english": "He has a very extravagant style of dress.", + "pos": "adjective", + "word_frequency": 12356 + }, + { + "word": "stringa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "string;shoelace", + "romanization": "stringa", + "example_sentence_native": "La stringa della mia scarpa si è rotta.", + "example_sentence_english": "My shoelace broke.", + "pos": "noun", + "word_frequency": 12357 + }, + { + "word": "stucco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stucco;plaster", + "romanization": "stucco", + "example_sentence_native": "Le pareti sono decorate con elaborati lavori in stucco.", + "example_sentence_english": "The walls are decorated with elaborate stucco work.", + "pos": "noun", + "word_frequency": 12358 + }, + { + "word": "terracotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terracotta", + "romanization": "terracotta", + "example_sentence_native": "Il vaso è fatto di terracotta.", + "example_sentence_english": "The pot is made of terracotta.", + "pos": "noun", + "word_frequency": 12361 + }, + { + "word": "terrorizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "terrified", + "romanization": "terrorizzato", + "example_sentence_native": "Era terrorizzato dal buio.", + "example_sentence_english": "He was terrified of the dark.", + "pos": "adjective", + "word_frequency": 12362 + }, + { + "word": "teschio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skull", + "romanization": "teschio", + "example_sentence_native": "Il pirata aveva un teschio sulla sua bandiera.", + "example_sentence_english": "The pirate had a skull on his flag.", + "pos": "noun", + "word_frequency": 12363 + }, + { + "word": "trionfale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumphant", + "romanization": "trionfale", + "example_sentence_native": "Hanno celebrato una vittoria trionfale.", + "example_sentence_english": "They celebrated a triumphant victory.", + "pos": "adjective", + "word_frequency": 12366 + }, + { + "word": "tunisino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Tunisian", + "romanization": "tunisino", + "example_sentence_native": "La cucina tunisina è molto saporita.", + "example_sentence_english": "Tunisian cuisine is very flavorful.", + "pos": "adjective", + "word_frequency": 12368 + }, + { + "word": "vecchietto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "old man (affectionate;diminutive)", + "romanization": "vecchietto", + "example_sentence_native": "Un simpatico vecchietto sedeva sulla panchina.", + "example_sentence_english": "A nice old man sat on the bench.", + "pos": "noun", + "word_frequency": 12370 + }, + { + "word": "vietnamita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Vietnamese", + "romanization": "vietnamita", + "example_sentence_native": "Ha provato la cucina vietnamita per la prima volta.", + "example_sentence_english": "He tried Vietnamese cuisine for the first time.", + "pos": "adjective", + "word_frequency": 12371 + }, + { + "word": "vulcanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "volcanic", + "romanization": "vulcanico", + "example_sentence_native": "L'Etna è un vulcano attivo con attività vulcanica.", + "example_sentence_english": "Etna is an active volcano with volcanic activity.", + "pos": "adjective", + "word_frequency": 12375 + }, + { + "word": "yuan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yuan (Chinese currency)", + "romanization": "yuan", + "example_sentence_native": "Il prezzo è espresso in yuan cinesi.", + "example_sentence_english": "The price is expressed in Chinese yuan.", + "pos": "noun", + "word_frequency": 12378 + }, + { + "word": "adeguare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adapt;to adjust", + "romanization": "adeguare", + "example_sentence_native": "Dobbiamo adeguare le nostre aspettative alla realtà.", + "example_sentence_english": "We must adapt our expectations to reality.", + "pos": "verb", + "word_frequency": 12381 + }, + { + "word": "alfabetico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alphabetical", + "romanization": "alfabetico", + "example_sentence_native": "Ordina i nomi in ordine alfabetico.", + "example_sentence_english": "Order the names in alphabetical order.", + "pos": "adjective", + "word_frequency": 12383 + }, + { + "word": "appropriazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appropriation", + "romanization": "appropriazione", + "example_sentence_native": "L'appropriazione culturale è un tema dibattuto.", + "example_sentence_english": "Cultural appropriation is a debated topic.", + "pos": "noun", + "word_frequency": 12384 + }, + { + "word": "arrampicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to climb", + "romanization": "arrampicare", + "example_sentence_native": "Gli piace arrampicare sulle montagne.", + "example_sentence_english": "He likes to climb mountains.", + "pos": "verb", + "word_frequency": 12385 + }, + { + "word": "assicurativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurance (adj.)", + "romanization": "assicurativo", + "example_sentence_native": "Ha stipulato un contratto assicurativo.", + "example_sentence_english": "He signed an insurance contract.", + "pos": "adjective", + "word_frequency": 12387 + }, + { + "word": "atrocità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atrocity", + "romanization": "atrocità", + "example_sentence_native": "Le atrocità della guerra sono inaccettabili.", + "example_sentence_english": "The atrocities of war are unacceptable.", + "pos": "noun", + "word_frequency": 12388 + }, + { + "word": "bacca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "berry", + "romanization": "bacca", + "example_sentence_native": "Le bacche rosse sono commestibili.", + "example_sentence_english": "The red berries are edible.", + "pos": "noun", + "word_frequency": 12390 + }, + { + "word": "bianconero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "black and white", + "romanization": "bianconero", + "example_sentence_native": "Ha scattato una foto bianconero.", + "example_sentence_english": "He took a black and white photo.", + "pos": "adjective", + "word_frequency": 12392 + }, + { + "word": "bizantino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Byzantine", + "romanization": "bizantino", + "example_sentence_native": "L'arte bizantina è ricca di mosaici.", + "example_sentence_english": "Byzantine art is rich in mosaics.", + "pos": "adjective", + "word_frequency": 12393 + }, + { + "word": "bluff", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bluff", + "romanization": "bluff", + "example_sentence_native": "Era solo un bluff, non aveva le carte giuste.", + "example_sentence_english": "It was just a bluff, he didn't have the right cards.", + "pos": "noun", + "word_frequency": 12394 + }, + { + "word": "bombardare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bomb", + "romanization": "bombardare", + "example_sentence_native": "L'aereo ha iniziato a bombardare la città.", + "example_sentence_english": "The plane started to bomb the city.", + "pos": "verb", + "word_frequency": 12395 + }, + { + "word": "café", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "café", + "romanization": "café", + "example_sentence_native": "Ci incontriamo al café per un caffè.", + "example_sentence_english": "We meet at the café for a coffee.", + "pos": "noun", + "word_frequency": 12397 + }, + { + "word": "calvario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ordeal;Calvary", + "romanization": "calvario", + "example_sentence_native": "Il suo recupero è stato un vero calvario.", + "example_sentence_english": "His recovery was a real ordeal.", + "pos": "noun", + "word_frequency": 12399 + }, + { + "word": "cartuccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cartridge", + "romanization": "cartuccia", + "example_sentence_native": "Ho bisogno di una nuova cartuccia per la stampante.", + "example_sentence_english": "I need a new cartridge for the printer.", + "pos": "noun", + "word_frequency": 12400 + }, + { + "word": "cecità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blindness", + "romanization": "cecità", + "example_sentence_native": "La cecità può essere congenita o acquisita.", + "example_sentence_english": "Blindness can be congenital or acquired.", + "pos": "noun", + "word_frequency": 12401 + }, + { + "word": "cespuglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bush", + "romanization": "cespuglio", + "example_sentence_native": "Il gatto si è nascosto dietro il cespuglio.", + "example_sentence_english": "The cat hid behind the bush.", + "pos": "noun", + "word_frequency": 12402 + }, + { + "word": "ciccia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fat (colloquial)", + "romanization": "ciccia", + "example_sentence_native": "Ho messo su un po' di ciccia durante le vacanze.", + "example_sentence_english": "I put on a bit of fat during the holidays.", + "pos": "noun", + "word_frequency": 12403 + }, + { + "word": "ciecamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blindly", + "romanization": "ciecamente", + "example_sentence_native": "Si fidava di lui ciecamente.", + "example_sentence_english": "She trusted him blindly.", + "pos": "adverb", + "word_frequency": 12404 + }, + { + "word": "clamore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clamor", + "romanization": "clamore", + "example_sentence_native": "La notizia ha suscitato grande clamore.", + "example_sentence_english": "The news caused a great clamor.", + "pos": "noun", + "word_frequency": 12405 + }, + { + "word": "collage", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collage", + "romanization": "collage", + "example_sentence_native": "Ha creato un bellissimo collage di foto.", + "example_sentence_english": "She created a beautiful photo collage.", + "pos": "noun", + "word_frequency": 12407 + }, + { + "word": "collezionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collector", + "romanization": "collezionista", + "example_sentence_native": "Mio nonno è un collezionista di francobolli.", + "example_sentence_english": "My grandfather is a stamp collector.", + "pos": "noun", + "word_frequency": 12408 + }, + { + "word": "consulto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultation", + "romanization": "consulto", + "example_sentence_native": "Ho chiesto un consulto al medico specialista.", + "example_sentence_english": "I asked for a consultation with the specialist doctor.", + "pos": "noun", + "word_frequency": 12409 + }, + { + "word": "contraente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contracting party", + "romanization": "contraente", + "example_sentence_native": "Entrambi i contraenti hanno firmato il contratto.", + "example_sentence_english": "Both contracting parties signed the contract.", + "pos": "noun", + "word_frequency": 12411 + }, + { + "word": "convulsione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convulsion", + "romanization": "convulsione", + "example_sentence_native": "Il bambino ha avuto una convulsione.", + "example_sentence_english": "The child had a convulsion.", + "pos": "noun", + "word_frequency": 12412 + }, + { + "word": "coprifuoco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "curfew", + "romanization": "coprifuoco", + "example_sentence_native": "Durante la pandemia, c'era il coprifuoco.", + "example_sentence_english": "During the pandemic, there was a curfew.", + "pos": "noun", + "word_frequency": 12413 + }, + { + "word": "cosmetico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cosmetic", + "romanization": "cosmetico", + "example_sentence_native": "Ha comprato un nuovo cosmetico per il viso.", + "example_sentence_english": "She bought a new cosmetic for her face.", + "pos": "noun", + "word_frequency": 12414 + }, + { + "word": "debuttare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to debut", + "romanization": "debuttare", + "example_sentence_native": "L'attrice debutterà nel nuovo film.", + "example_sentence_english": "The actress will debut in the new film.", + "pos": "verb", + "word_frequency": 12417 + }, + { + "word": "dettame", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dictate", + "romanization": "dettame", + "example_sentence_native": "Ha agito secondo il dettame della sua coscienza.", + "example_sentence_english": "He acted according to the dictate of his conscience.", + "pos": "noun", + "word_frequency": 12422 + }, + { + "word": "diplomato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graduated", + "romanization": "diplomato", + "example_sentence_native": "È un ragazzo diplomato con ottimi voti.", + "example_sentence_english": "He is a graduated boy with excellent grades.", + "pos": "adjective", + "word_frequency": 12423 + }, + { + "word": "disparato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disparate", + "romanization": "disparato", + "example_sentence_native": "Hanno interessi disparati.", + "example_sentence_english": "They have disparate interests.", + "pos": "adjective", + "word_frequency": 12424 + }, + { + "word": "ebbrezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhilaration", + "romanization": "ebbrezza", + "example_sentence_native": "Provava un'ebbrezza indescrivibile.", + "example_sentence_english": "She felt an indescribable exhilaration.", + "pos": "noun", + "word_frequency": 12426 + }, + { + "word": "eccezionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exceptionally", + "romanization": "eccezionalmente", + "example_sentence_native": "Il tempo è stato eccezionalmente bello oggi.", + "example_sentence_english": "The weather was exceptionally beautiful today.", + "pos": "adverb", + "word_frequency": 12427 + }, + { + "word": "erigere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to erect", + "romanization": "erigere", + "example_sentence_native": "Hanno deciso di erigere un monumento.", + "example_sentence_english": "They decided to erect a monument.", + "pos": "verb", + "word_frequency": 12430 + }, + { + "word": "estasi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecstasy", + "romanization": "estasi", + "example_sentence_native": "Era in estasi dopo aver ascoltato la musica.", + "example_sentence_english": "She was in ecstasy after listening to the music.", + "pos": "noun", + "word_frequency": 12432 + }, + { + "word": "fenomenale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phenomenal", + "romanization": "fenomenale", + "example_sentence_native": "La sua performance è stata fenomenale.", + "example_sentence_english": "His performance was phenomenal.", + "pos": "adjective", + "word_frequency": 12433 + }, + { + "word": "figurina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticker", + "romanization": "figurina", + "example_sentence_native": "Ho trovato una figurina rara nel pacchetto.", + "example_sentence_english": "I found a rare sticker in the pack.", + "pos": "noun", + "word_frequency": 12434 + }, + { + "word": "fissazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fixation", + "romanization": "fissazione", + "example_sentence_native": "Ha una fissazione per la pulizia.", + "example_sentence_english": "She has a fixation on cleanliness.", + "pos": "noun", + "word_frequency": 12435 + }, + { + "word": "gag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gag (joke)", + "romanization": "gag", + "example_sentence_native": "La sua gag ha fatto ridere tutti.", + "example_sentence_english": "His gag made everyone laugh.", + "pos": "noun", + "word_frequency": 12439 + }, + { + "word": "generalizzato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "generalized", + "romanization": "generalizzato", + "example_sentence_native": "Il consenso è stato generalizzato.", + "example_sentence_english": "The consensus was generalized.", + "pos": "adjective", + "word_frequency": 12440 + }, + { + "word": "geologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geology", + "romanization": "geologia", + "example_sentence_native": "Studia la geologia della regione.", + "example_sentence_english": "He studies the geology of the region.", + "pos": "noun", + "word_frequency": 12441 + }, + { + "word": "geopolitica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geopolitics", + "romanization": "geopolitica", + "example_sentence_native": "La geopolitica mondiale è in continua evoluzione.", + "example_sentence_english": "Global geopolitics is constantly evolving.", + "pos": "noun", + "word_frequency": 12442 + }, + { + "word": "ghisa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cast iron", + "romanization": "ghisa", + "example_sentence_native": "La stufa è fatta di ghisa.", + "example_sentence_english": "The stove is made of cast iron.", + "pos": "noun", + "word_frequency": 12443 + }, + { + "word": "glaciale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glacial", + "romanization": "glaciale", + "example_sentence_native": "Il clima era glaciale.", + "example_sentence_english": "The climate was glacial.", + "pos": "adjective", + "word_frequency": 12447 + }, + { + "word": "imperativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperative", + "romanization": "imperativo", + "example_sentence_native": "È imperativo agire subito.", + "example_sentence_english": "It is imperative to act immediately.", + "pos": "adjective", + "word_frequency": 12452 + }, + { + "word": "imprescindibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indispensable", + "romanization": "imprescindibile", + "example_sentence_native": "La sua presenza è imprescindibile per il successo del progetto.", + "example_sentence_english": "His presence is indispensable for the success of the project.", + "pos": "adjective", + "word_frequency": 12453 + }, + { + "word": "incarnazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incarnation", + "romanization": "incarnazione", + "example_sentence_native": "È l'incarnazione della gentilezza.", + "example_sentence_english": "She is the incarnation of kindness.", + "pos": "noun", + "word_frequency": 12454 + }, + { + "word": "inconscio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconscious", + "romanization": "inconscio", + "example_sentence_native": "Molte delle nostre azioni sono guidate dall'inconscio.", + "example_sentence_english": "Many of our actions are guided by the unconscious.", + "pos": "noun", + "word_frequency": 12455 + }, + { + "word": "incorrere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incur", + "romanization": "incorrere", + "example_sentence_native": "Potresti incorrere in problemi legali.", + "example_sentence_english": "You might incur legal problems.", + "pos": "verb", + "word_frequency": 12456 + }, + { + "word": "indennizzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compensation", + "romanization": "indennizzo", + "example_sentence_native": "Ha ricevuto un indennizzo per i danni subiti.", + "example_sentence_english": "He received compensation for the damages suffered.", + "pos": "noun", + "word_frequency": 12457 + }, + { + "word": "inestimabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inestimable", + "romanization": "inestimabile", + "example_sentence_native": "Il valore di quest'opera d'arte è inestimabile.", + "example_sentence_english": "The value of this artwork is inestimable.", + "pos": "adjective", + "word_frequency": 12458 + }, + { + "word": "influsso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "influence", + "romanization": "influsso", + "example_sentence_native": "La luna ha un forte influsso sulle maree.", + "example_sentence_english": "The moon has a strong influence on the tides.", + "pos": "noun", + "word_frequency": 12459 + }, + { + "word": "insulina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulin", + "romanization": "insulina", + "example_sentence_native": "I diabetici hanno bisogno di insulina.", + "example_sentence_english": "Diabetics need insulin.", + "pos": "noun", + "word_frequency": 12460 + }, + { + "word": "interezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "entirety", + "romanization": "interezza", + "example_sentence_native": "Ha letto il libro nella sua interezza.", + "example_sentence_english": "He read the book in its entirety.", + "pos": "noun", + "word_frequency": 12461 + }, + { + "word": "intollerabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerable", + "romanization": "intollerabile", + "example_sentence_native": "La situazione è diventata intollerabile.", + "example_sentence_english": "The situation has become intolerable.", + "pos": "adjective", + "word_frequency": 12462 + }, + { + "word": "invincibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invincible", + "romanization": "invincibile", + "example_sentence_native": "Si sentiva invincibile dopo la vittoria.", + "example_sentence_english": "He felt invincible after the victory.", + "pos": "adjective", + "word_frequency": 12463 + }, + { + "word": "istruire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to instruct", + "romanization": "istruire", + "example_sentence_native": "È importante istruire i giovani.", + "example_sentence_english": "It is important to educate young people.", + "pos": "verb", + "word_frequency": 12464 + }, + { + "word": "lavastoviglie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dishwasher", + "romanization": "lavastoviglie", + "example_sentence_native": "Metti i piatti nella lavastoviglie.", + "example_sentence_english": "Put the dishes in the dishwasher.", + "pos": "noun", + "word_frequency": 12469 + }, + { + "word": "mandarino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mandarin", + "romanization": "mandarino", + "example_sentence_native": "Mi piace il succo di mandarino.", + "example_sentence_english": "I like mandarin juice.", + "pos": "noun", + "word_frequency": 12475 + }, + { + "word": "maneggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to handle", + "romanization": "maneggiare", + "example_sentence_native": "Maneggiare con cura.", + "example_sentence_english": "Handle with care.", + "pos": "verb", + "word_frequency": 12476 + }, + { + "word": "mascherare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mask", + "romanization": "mascherare", + "example_sentence_native": "Ha cercato di mascherare la sua delusione.", + "example_sentence_english": "He tried to mask his disappointment.", + "pos": "verb", + "word_frequency": 12478 + }, + { + "word": "mascherina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mask", + "romanization": "mascherina", + "example_sentence_native": "Indossa sempre la mascherina in luoghi chiusi.", + "example_sentence_english": "Always wear a mask in enclosed spaces.", + "pos": "noun", + "word_frequency": 12479 + }, + { + "word": "massacrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to massacre;to slaughter", + "romanization": "massacrare", + "example_sentence_native": "Le truppe hanno massacrato i civili innocenti.", + "example_sentence_english": "The troops massacred the innocent civilians.", + "pos": "verb", + "word_frequency": 12480 + }, + { + "word": "mazzetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bribe;small hammer", + "romanization": "mazzetta", + "example_sentence_native": "Ha pagato una mazzetta per ottenere il permesso.", + "example_sentence_english": "He paid a bribe to get the permit.", + "pos": "noun", + "word_frequency": 12481 + }, + { + "word": "memorizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to memorize", + "romanization": "memorizzare", + "example_sentence_native": "Devo memorizzare queste nuove parole.", + "example_sentence_english": "I need to memorize these new words.", + "pos": "verb", + "word_frequency": 12482 + }, + { + "word": "mescolare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to mix;to stir", + "romanization": "mescolare", + "example_sentence_native": "Mescola bene gli ingredienti.", + "example_sentence_english": "Mix the ingredients well.", + "pos": "verb", + "word_frequency": 12483 + }, + { + "word": "modenese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Modena;Modenese", + "romanization": "modenese", + "example_sentence_native": "Il cibo modenese è famoso in tutto il mondo.", + "example_sentence_english": "Modenese food is famous all over the world.", + "pos": "adjective", + "word_frequency": 12486 + }, + { + "word": "morfologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morphology", + "romanization": "morfologia", + "example_sentence_native": "La morfologia studia la struttura delle parole.", + "example_sentence_english": "Morphology studies the structure of words.", + "pos": "noun", + "word_frequency": 12488 + }, + { + "word": "normanno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Norman (person)", + "romanization": "normanno", + "example_sentence_native": "I Normanni conquistarono l'Inghilterra nel 1066.", + "example_sentence_english": "The Normans conquered England in 1066.", + "pos": "noun", + "word_frequency": 12491 + }, + { + "word": "novel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "novel (as in a book)", + "romanization": "novel", + "example_sentence_native": "Ha scritto un nuovo novel di fantascienza.", + "example_sentence_english": "He wrote a new science fiction novel.", + "pos": "noun", + "word_frequency": 12492 + }, + { + "word": "pericolosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dangerously", + "romanization": "pericolosamente", + "example_sentence_native": "Ha guidato pericolosamente sulla strada ghiacciata.", + "example_sentence_english": "He drove dangerously on the icy road.", + "pos": "adverb", + "word_frequency": 12495 + }, + { + "word": "planetario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planetary", + "romanization": "planetario", + "example_sentence_native": "L'osservatorio ha un nuovo telescopio planetario.", + "example_sentence_english": "The observatory has a new planetary telescope.", + "pos": "adjective", + "word_frequency": 12497 + }, + { + "word": "prodigio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prodigy;wonder", + "romanization": "prodigio", + "example_sentence_native": "Quel bambino è un vero prodigio della musica.", + "example_sentence_english": "That child is a true music prodigy.", + "pos": "noun", + "word_frequency": 12499 + }, + { + "word": "professionalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professionally", + "romanization": "professionalmente", + "example_sentence_native": "Si comporta sempre professionalmente al lavoro.", + "example_sentence_english": "He always behaves professionally at work.", + "pos": "adverb", + "word_frequency": 12500 + }, + { + "word": "provvidenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providence;foresight", + "romanization": "provvidenza", + "example_sentence_native": "Credo nella provvidenza divina.", + "example_sentence_english": "I believe in divine providence.", + "pos": "noun", + "word_frequency": 12501 + }, + { + "word": "psicosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychosis", + "romanization": "psicosi", + "example_sentence_native": "La psicosi è una grave condizione mentale.", + "example_sentence_english": "Psychosis is a serious mental condition.", + "pos": "noun", + "word_frequency": 12502 + }, + { + "word": "pulcino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chick (baby bird)", + "romanization": "pulcino", + "example_sentence_native": "Il pulcino è appena nato dall'uovo.", + "example_sentence_english": "The chick just hatched from the egg.", + "pos": "noun", + "word_frequency": 12503 + }, + { + "word": "reception", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reception (hotel;office)", + "romanization": "reception", + "example_sentence_native": "Chiedi informazioni alla reception dell'hotel.", + "example_sentence_english": "Ask for information at the hotel reception.", + "pos": "noun", + "word_frequency": 12505 + }, + { + "word": "recluta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruit", + "romanization": "recluta", + "example_sentence_native": "La nuova recluta si sta addestrando duramente.", + "example_sentence_english": "The new recruit is training hard.", + "pos": "noun", + "word_frequency": 12506 + }, + { + "word": "resina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resin", + "romanization": "resina", + "example_sentence_native": "L'ambra è una resina fossile.", + "example_sentence_english": "Amber is a fossilized resin.", + "pos": "noun", + "word_frequency": 12507 + }, + { + "word": "restringere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shrink;to narrow", + "romanization": "restringere", + "example_sentence_native": "I vestiti si sono ristretti dopo il lavaggio.", + "example_sentence_english": "The clothes shrunk after washing.", + "pos": "verb", + "word_frequency": 12508 + }, + { + "word": "risarcire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to compensate;to reimburse", + "romanization": "risarcire", + "example_sentence_native": "L'assicurazione dovrà risarcire i danni.", + "example_sentence_english": "The insurance will have to compensate for the damages.", + "pos": "verb", + "word_frequency": 12510 + }, + { + "word": "riscoperta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rediscovery", + "romanization": "riscoperta", + "example_sentence_native": "La riscoperta di antichi manoscritti è stata emozionante.", + "example_sentence_english": "The rediscovery of ancient manuscripts was exciting.", + "pos": "noun", + "word_frequency": 12511 + }, + { + "word": "ristrutturare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restructure;to renovate", + "romanization": "ristrutturare", + "example_sentence_native": "Dobbiamo ristrutturare la cucina.", + "example_sentence_english": "We need to renovate the kitchen.", + "pos": "verb", + "word_frequency": 12512 + }, + { + "word": "risvegliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to awaken;to reawaken", + "romanization": "risvegliare", + "example_sentence_native": "Il caffè mi aiuta a risvegliare la mente.", + "example_sentence_english": "Coffee helps me awaken my mind.", + "pos": "verb", + "word_frequency": 12513 + }, + { + "word": "rota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wheel;Rota (as in Sacra Rota)", + "romanization": "rota", + "example_sentence_native": "La rota della bicicletta è sgonfia.", + "example_sentence_english": "The bicycle wheel is flat.", + "pos": "noun", + "word_frequency": 12515 + }, + { + "word": "rotonda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "roundabout;traffic circle", + "romanization": "rotonda", + "example_sentence_native": "Prendi la terza uscita alla rotonda.", + "example_sentence_english": "Take the third exit at the roundabout.", + "pos": "noun", + "word_frequency": 12516 + }, + { + "word": "salariale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salary-related;wage-related", + "romanization": "salariale", + "example_sentence_native": "Hanno discusso le nuove politiche salariali.", + "example_sentence_english": "They discussed the new salary policies.", + "pos": "adjective", + "word_frequency": 12518 + }, + { + "word": "sarto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tailor", + "romanization": "sarto", + "example_sentence_native": "Il sarto mi ha preso le misure per il vestito.", + "example_sentence_english": "The tailor took my measurements for the suit.", + "pos": "noun", + "word_frequency": 12519 + }, + { + "word": "saturazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturation", + "romanization": "saturazione", + "example_sentence_native": "La saturazione del mercato ha reso difficile l'ingresso di nuovi concorrenti.", + "example_sentence_english": "Market saturation has made it difficult for new competitors to enter.", + "pos": "noun", + "word_frequency": 12520 + }, + { + "word": "scolpire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sculpt;to carve", + "romanization": "scolpire", + "example_sentence_native": "Lo scultore ha impiegato mesi per scolpire la statua.", + "example_sentence_english": "The sculptor took months to sculpt the statue.", + "pos": "verb", + "word_frequency": 12521 + }, + { + "word": "sedurre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to seduce;to charm", + "romanization": "sedurre", + "example_sentence_native": "Ha cercato di sedurre il pubblico con il suo carisma.", + "example_sentence_english": "He tried to charm the audience with his charisma.", + "pos": "verb", + "word_frequency": 12522 + }, + { + "word": "senegalese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Senegalese", + "romanization": "senegalese", + "example_sentence_native": "Ho assaggiato un piatto tipico senegalese.", + "example_sentence_english": "I tasted a typical Senegalese dish.", + "pos": "adjective", + "word_frequency": 12523 + }, + { + "word": "sfratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eviction", + "romanization": "sfratto", + "example_sentence_native": "Hanno ricevuto un avviso di sfratto per non aver pagato l'affitto.", + "example_sentence_english": "They received an eviction notice for not paying the rent.", + "pos": "noun", + "word_frequency": 12524 + }, + { + "word": "sgomento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismay;consternation", + "romanization": "sgomento", + "example_sentence_native": "La notizia della tragedia ha causato grande sgomento.", + "example_sentence_english": "The news of the tragedy caused great dismay.", + "pos": "noun", + "word_frequency": 12525 + }, + { + "word": "simmetria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symmetry", + "romanization": "simmetria", + "example_sentence_native": "La simmetria del design rende l'edificio armonioso.", + "example_sentence_english": "The symmetry of the design makes the building harmonious.", + "pos": "noun", + "word_frequency": 12527 + }, + { + "word": "slitta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sled;sleigh", + "romanization": "slitta", + "example_sentence_native": "I bambini si divertivano a scendere la collina con la slitta.", + "example_sentence_english": "The children enjoyed going down the hill on the sled.", + "pos": "noun", + "word_frequency": 12528 + }, + { + "word": "somministrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to administer;to supply", + "romanization": "somministrare", + "example_sentence_native": "Il medico ha somministrato il farmaco al paziente.", + "example_sentence_english": "The doctor administered the medicine to the patient.", + "pos": "verb", + "word_frequency": 12530 + }, + { + "word": "sovrapposizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superposition;overlap", + "romanization": "sovrapposizione", + "example_sentence_native": "C'è una sovrapposizione di competenze tra i due dipartimenti.", + "example_sentence_english": "There is an overlap of competencies between the two departments.", + "pos": "noun", + "word_frequency": 12533 + }, + { + "word": "speculare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speculate;to reflect", + "romanization": "speculare", + "example_sentence_native": "Non è saggio speculare in borsa senza esperienza.", + "example_sentence_english": "It's not wise to speculate on the stock market without experience.", + "pos": "verb", + "word_frequency": 12534 + }, + { + "word": "sponsorizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sponsor", + "romanization": "sponsorizzare", + "example_sentence_native": "L'azienda ha deciso di sponsorizzare l'evento sportivo.", + "example_sentence_english": "The company decided to sponsor the sports event.", + "pos": "verb", + "word_frequency": 12535 + }, + { + "word": "supposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supposition;assumption", + "romanization": "supposizione", + "example_sentence_native": "La sua supposizione si è rivelata corretta.", + "example_sentence_english": "His assumption turned out to be correct.", + "pos": "noun", + "word_frequency": 12538 + }, + { + "word": "temperamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temperament;disposition", + "romanization": "temperamento", + "example_sentence_native": "Ha un temperamento molto calmo e paziente.", + "example_sentence_english": "He has a very calm and patient temperament.", + "pos": "noun", + "word_frequency": 12539 + }, + { + "word": "tenace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tenacious;persistent", + "romanization": "tenace", + "example_sentence_native": "È una persona molto tenace e non si arrende mai.", + "example_sentence_english": "He is a very tenacious person and never gives up.", + "pos": "adjective", + "word_frequency": 12540 + }, + { + "word": "testicolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "testicle", + "romanization": "testicolo", + "example_sentence_native": "Il medico ha esaminato il testicolo per verificare la presenza di anomalie.", + "example_sentence_english": "The doctor examined the testicle to check for abnormalities.", + "pos": "noun", + "word_frequency": 12541 + }, + { + "word": "triangolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triangular", + "romanization": "triangolare", + "example_sentence_native": "La forma della finestra era triangolare.", + "example_sentence_english": "The shape of the window was triangular.", + "pos": "adjective", + "word_frequency": 12544 + }, + { + "word": "troika", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "troika", + "romanization": "troika", + "example_sentence_native": "La troika ha imposto severe misure di austerità.", + "example_sentence_english": "The troika imposed severe austerity measures.", + "pos": "noun", + "word_frequency": 12545 + }, + { + "word": "umanistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanistic", + "romanization": "umanistico", + "example_sentence_native": "Ha studiato materie umanistiche all'università.", + "example_sentence_english": "He studied humanistic subjects at university.", + "pos": "adjective", + "word_frequency": 12547 + }, + { + "word": "vegano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegan", + "romanization": "vegano", + "example_sentence_native": "Sono diventato vegano l'anno scorso.", + "example_sentence_english": "I became vegan last year.", + "pos": "adjective", + "word_frequency": 12548 + }, + { + "word": "vigilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supervise;to monitor", + "romanization": "vigilare", + "example_sentence_native": "È importante vigilare sulla sicurezza dei bambini.", + "example_sentence_english": "It is important to supervise the safety of children.", + "pos": "verb", + "word_frequency": 12550 + }, + { + "word": "vigneto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vineyard", + "romanization": "vigneto", + "example_sentence_native": "La regione è ricca di splendidi vigneti.", + "example_sentence_english": "The region is rich in beautiful vineyards.", + "pos": "noun", + "word_frequency": 12551 + }, + { + "word": "vincolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bind;to constrain", + "romanization": "vincolare", + "example_sentence_native": "Il contratto vincola entrambe le parti.", + "example_sentence_english": "The contract binds both parties.", + "pos": "verb", + "word_frequency": 12552 + }, + { + "word": "abilitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enable;to qualify", + "romanization": "abilitare", + "example_sentence_native": "Devi abilitare le impostazioni per accedere alla funzione.", + "example_sentence_english": "You must enable the settings to access the feature.", + "pos": "verb", + "word_frequency": 12557 + }, + { + "word": "addome", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abdomen", + "romanization": "addome", + "example_sentence_native": "Ha sentito un dolore all'addome.", + "example_sentence_english": "He felt a pain in his abdomen.", + "pos": "noun", + "word_frequency": 12558 + }, + { + "word": "aggravante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aggravating;exacerbating", + "romanization": "aggravante", + "example_sentence_native": "La sua recidiva è considerata una circostanza aggravante.", + "example_sentence_english": "His recidivism is considered an aggravating circumstance.", + "pos": "adjective", + "word_frequency": 12559 + }, + { + "word": "allargamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlargement;widening", + "romanization": "allargamento", + "example_sentence_native": "L'allargamento dell'Unione Europea ha portato nuove sfide.", + "example_sentence_english": "The enlargement of the European Union brought new challenges.", + "pos": "noun", + "word_frequency": 12561 + }, + { + "word": "analfabetismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illiteracy", + "romanization": "analfabetismo", + "example_sentence_native": "La lotta contro l'analfabetismo è una priorità in molti paesi.", + "example_sentence_english": "The fight against illiteracy is a priority in many countries.", + "pos": "noun", + "word_frequency": 12563 + }, + { + "word": "anatra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duck", + "romanization": "anatra", + "example_sentence_native": "L'anatra nuotava tranquillamente nello stagno.", + "example_sentence_english": "The duck was swimming peacefully in the pond.", + "pos": "noun", + "word_frequency": 12564 + }, + { + "word": "annuario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yearbook;annual", + "romanization": "annuario", + "example_sentence_native": "Abbiamo ricevuto l'annuario della scuola la settimana scorsa.", + "example_sentence_english": "We received the school yearbook last week.", + "pos": "noun", + "word_frequency": 12565 + }, + { + "word": "antecedente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antecedent;preceding", + "romanization": "antecedente", + "example_sentence_native": "L'evento antecedente ha influenzato il risultato finale.", + "example_sentence_english": "The antecedent event influenced the final outcome.", + "pos": "adjective", + "word_frequency": 12567 + }, + { + "word": "appassionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excite;to enthrall", + "romanization": "appassionare", + "example_sentence_native": "La musica classica riesce sempre ad appassionarmi.", + "example_sentence_english": "Classical music always manages to excite me.", + "pos": "verb", + "word_frequency": 12568 + }, + { + "word": "astuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astute;cunning;shrewd", + "romanization": "astuto", + "example_sentence_native": "La volpe è un animale molto astuto.", + "example_sentence_english": "The fox is a very cunning animal.", + "pos": "adjective", + "word_frequency": 12570 + }, + { + "word": "attingere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draw (from);to derive (from)", + "romanization": "attingere", + "example_sentence_native": "Dobbiamo attingere alle nostre risorse interne per risolvere il problema.", + "example_sentence_english": "We must draw on our internal resources to solve the problem.", + "pos": "verb", + "word_frequency": 12571 + }, + { + "word": "autobiografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "autobiography", + "romanization": "autobiografia", + "example_sentence_native": "Ha scritto un'autobiografia che è diventata un bestseller.", + "example_sentence_english": "He wrote an autobiography that became a bestseller.", + "pos": "noun", + "word_frequency": 12572 + }, + { + "word": "avversità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adversity;hardship", + "romanization": "avversità", + "example_sentence_native": "Ha dimostrato grande forza d'animo di fronte alle avversità.", + "example_sentence_english": "He showed great fortitude in the face of adversity.", + "pos": "noun", + "word_frequency": 12573 + }, + { + "word": "azzeccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spot-on;apt;well-guessed", + "romanization": "azzeccato", + "example_sentence_native": "La tua risposta è stata davvero azzeccata.", + "example_sentence_english": "Your answer was really spot-on.", + "pos": "adjective", + "word_frequency": 12574 + }, + { + "word": "baluardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bulwark;stronghold", + "romanization": "baluardo", + "example_sentence_native": "Quella fortezza era un baluardo contro gli invasori.", + "example_sentence_english": "That fortress was a bulwark against the invaders.", + "pos": "noun", + "word_frequency": 12575 + }, + { + "word": "benone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very well;great", + "romanization": "benone", + "example_sentence_native": "Come stai? Sto benone, grazie!", + "example_sentence_english": "How are you? I'm very well, thanks!", + "pos": "adverb", + "word_frequency": 12581 + }, + { + "word": "bergamasco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bergamasque (from Bergamo)", + "romanization": "bergamasco", + "example_sentence_native": "Parla il dialetto bergamasco.", + "example_sentence_english": "He speaks the Bergamasque dialect.", + "pos": "adjective", + "word_frequency": 12582 + }, + { + "word": "berlina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sedan (car type)", + "romanization": "berlina", + "example_sentence_native": "Ha comprato una nuova berlina sportiva.", + "example_sentence_english": "He bought a new sports sedan.", + "pos": "noun", + "word_frequency": 12583 + }, + { + "word": "bilaterale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bilateral", + "romanization": "bilaterale", + "example_sentence_native": "Hanno firmato un accordo bilaterale tra i due paesi.", + "example_sentence_english": "They signed a bilateral agreement between the two countries.", + "pos": "adjective", + "word_frequency": 12584 + }, + { + "word": "brace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embers;coals", + "romanization": "brace", + "example_sentence_native": "Abbiamo cucinato la carne sulla brace.", + "example_sentence_english": "We cooked the meat on the coals.", + "pos": "noun", + "word_frequency": 12587 + }, + { + "word": "brezza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "breeze", + "romanization": "brezza", + "example_sentence_native": "Una leggera brezza soffiava dal mare.", + "example_sentence_english": "A light breeze was blowing from the sea.", + "pos": "noun", + "word_frequency": 12588 + }, + { + "word": "brusco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abrupt;brusque;sharp", + "romanization": "brusco", + "example_sentence_native": "Ha avuto un cambiamento d'umore molto brusco.", + "example_sentence_english": "He had a very abrupt change of mood.", + "pos": "adjective", + "word_frequency": 12589 + }, + { + "word": "bussare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to knock", + "romanization": "bussare", + "example_sentence_native": "Ho sentito bussare alla porta.", + "example_sentence_english": "I heard a knock at the door.", + "pos": "verb", + "word_frequency": 12591 + }, + { + "word": "calvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bald", + "romanization": "calvo", + "example_sentence_native": "Mio nonno è completamente calvo.", + "example_sentence_english": "My grandfather is completely bald.", + "pos": "adjective", + "word_frequency": 12592 + }, + { + "word": "capro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "male goat;scapegoat", + "romanization": "capro", + "example_sentence_native": "Il capro espiatorio è stato incolpato per tutti i problemi.", + "example_sentence_english": "The scapegoat was blamed for all the problems.", + "pos": "noun", + "word_frequency": 12593 + }, + { + "word": "cargo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cargo;freight", + "romanization": "cargo", + "example_sentence_native": "La nave trasportava un carico di merci.", + "example_sentence_english": "The ship was carrying a cargo of goods.", + "pos": "noun", + "word_frequency": 12594 + }, + { + "word": "carlino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pug (dog breed)", + "romanization": "carlino", + "example_sentence_native": "Il mio cane è un carlino molto simpatico.", + "example_sentence_english": "My dog is a very friendly pug.", + "pos": "noun", + "word_frequency": 12595 + }, + { + "word": "castagna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chestnut", + "romanization": "castagna", + "example_sentence_native": "In autunno raccogliamo le castagne nel bosco.", + "example_sentence_english": "In autumn, we collect chestnuts in the woods.", + "pos": "noun", + "word_frequency": 12596 + }, + { + "word": "cavolata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;rubbish;stupid thing", + "romanization": "cavolata", + "example_sentence_native": "Non dire cavolate, non è vero!", + "example_sentence_english": "Don't talk nonsense, it's not true!", + "pos": "noun", + "word_frequency": 12597 + }, + { + "word": "certosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Carthusian monastery;charterhouse", + "romanization": "certosa", + "example_sentence_native": "Abbiamo visitato la Certosa di Pavia, un luogo magnifico.", + "example_sentence_english": "We visited the Certosa di Pavia, a magnificent place.", + "pos": "noun", + "word_frequency": 12599 + }, + { + "word": "chioma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mane;head of hair", + "romanization": "chioma", + "example_sentence_native": "La sua chioma bionda brillava al sole.", + "example_sentence_english": "Her blonde mane shone in the sun.", + "pos": "noun", + "word_frequency": 12600 + }, + { + "word": "comandamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commandment", + "romanization": "comandamento", + "example_sentence_native": "I dieci comandamenti sono principi morali.", + "example_sentence_english": "The Ten Commandments are moral principles.", + "pos": "noun", + "word_frequency": 12604 + }, + { + "word": "condizionamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conditioning;air conditioning (system)", + "romanization": "condizionamento", + "example_sentence_native": "Il condizionamento dell'aria è essenziale d'estate.", + "example_sentence_english": "Air conditioning is essential in summer.", + "pos": "noun", + "word_frequency": 12605 + }, + { + "word": "condizionatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "air conditioner", + "romanization": "condizionatore", + "example_sentence_native": "Abbiamo acceso il condizionatore perché faceva caldo.", + "example_sentence_english": "We turned on the air conditioner because it was hot.", + "pos": "noun", + "word_frequency": 12606 + }, + { + "word": "consultivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultative;advisory", + "romanization": "consultivo", + "example_sentence_native": "Il comitato ha un ruolo consultivo.", + "example_sentence_english": "The committee has an advisory role.", + "pos": "adjective", + "word_frequency": 12609 + }, + { + "word": "coreografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "choreography", + "romanization": "coreografia", + "example_sentence_native": "La coreografia dello spettacolo era mozzafiato.", + "example_sentence_english": "The choreography of the show was breathtaking.", + "pos": "noun", + "word_frequency": 12610 + }, + { + "word": "corsivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cursive;italic", + "romanization": "corsivo", + "example_sentence_native": "Scrivi il tuo nome in corsivo.", + "example_sentence_english": "Write your name in cursive.", + "pos": "adjective", + "word_frequency": 12612 + }, + { + "word": "costola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rib", + "romanization": "costola", + "example_sentence_native": "Mi sono rotto una costola cadendo.", + "example_sentence_english": "I broke a rib when I fell.", + "pos": "noun", + "word_frequency": 12613 + }, + { + "word": "crepa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crack;fissure", + "romanization": "crepa", + "example_sentence_native": "C'è una crepa nel muro.", + "example_sentence_english": "There's a crack in the wall.", + "pos": "noun", + "word_frequency": 12614 + }, + { + "word": "distaccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to detach;to separate", + "romanization": "distaccare", + "example_sentence_native": "È difficile distaccare il figlio dalla madre.", + "example_sentence_english": "It's difficult to detach the son from the mother.", + "pos": "verb", + "word_frequency": 12620 + }, + { + "word": "dopodomani", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "the day after tomorrow", + "romanization": "dopodomani", + "example_sentence_native": "Ci vediamo dopodomani.", + "example_sentence_english": "See you the day after tomorrow.", + "pos": "adverb", + "word_frequency": 12621 + }, + { + "word": "dosaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dosage", + "romanization": "dosaggio", + "example_sentence_native": "Seguire attentamente il dosaggio del farmaco.", + "example_sentence_english": "Carefully follow the medication dosage.", + "pos": "noun", + "word_frequency": 12622 + }, + { + "word": "elevazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elevation;raising", + "romanization": "elevazione", + "example_sentence_native": "L'elevazione del livello del mare è una preoccupazione.", + "example_sentence_english": "The elevation of sea level is a concern.", + "pos": "noun", + "word_frequency": 12626 + }, + { + "word": "elfo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elf", + "romanization": "elfo", + "example_sentence_native": "Gli elfi vivono nelle foreste incantate.", + "example_sentence_english": "Elves live in enchanted forests.", + "pos": "noun", + "word_frequency": 12627 + }, + { + "word": "erosione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erosion", + "romanization": "erosione", + "example_sentence_native": "L'erosione costiera è un problema serio.", + "example_sentence_english": "Coastal erosion is a serious problem.", + "pos": "noun", + "word_frequency": 12630 + }, + { + "word": "esiliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exile", + "romanization": "esiliare", + "example_sentence_native": "Il re decise di esiliare il traditore.", + "example_sentence_english": "The king decided to exile the traitor.", + "pos": "verb", + "word_frequency": 12631 + }, + { + "word": "esteriore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exterior;external", + "romanization": "esteriore", + "example_sentence_native": "L'aspetto esteriore non è sempre importante.", + "example_sentence_english": "The exterior appearance is not always important.", + "pos": "adjective", + "word_frequency": 12632 + }, + { + "word": "evocare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to evoke;to conjure", + "romanization": "evocare", + "example_sentence_native": "La musica può evocare forti emozioni.", + "example_sentence_english": "Music can evoke strong emotions.", + "pos": "verb", + "word_frequency": 12633 + }, + { + "word": "fiasco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flask;failure", + "romanization": "fiasco", + "example_sentence_native": "Lo spettacolo è stato un fiasco totale.", + "example_sentence_english": "The show was a total failure.", + "pos": "noun", + "word_frequency": 12634 + }, + { + "word": "filologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philology", + "romanization": "filologia", + "example_sentence_native": "Studia filologia all'università.", + "example_sentence_english": "She studies philology at university.", + "pos": "noun", + "word_frequency": 12636 + }, + { + "word": "finalista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "finalist", + "romanization": "finalista", + "example_sentence_native": "È uno dei finalisti del concorso.", + "example_sentence_english": "He is one of the finalists of the competition.", + "pos": "noun", + "word_frequency": 12637 + }, + { + "word": "fiorente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flourishing;thriving", + "romanization": "fiorente", + "example_sentence_native": "L'economia della città è fiorente.", + "example_sentence_english": "The city's economy is flourishing.", + "pos": "adjective", + "word_frequency": 12638 + }, + { + "word": "fondere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to melt;to merge", + "romanization": "fondere", + "example_sentence_native": "Il calore può fondere il metallo.", + "example_sentence_english": "Heat can melt metal.", + "pos": "verb", + "word_frequency": 12640 + }, + { + "word": "freschezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freshness", + "romanization": "freschezza", + "example_sentence_native": "Adoro la freschezza dell'aria di montagna.", + "example_sentence_english": "I love the freshness of the mountain air.", + "pos": "noun", + "word_frequency": 12641 + }, + { + "word": "friulano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Friulian (from Friuli)", + "romanization": "friulano", + "example_sentence_native": "Parla il dialetto friulano.", + "example_sentence_english": "He speaks the Friulian dialect.", + "pos": "adjective", + "word_frequency": 12642 + }, + { + "word": "frustrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frustrate", + "romanization": "frustrare", + "example_sentence_native": "La burocrazia può frustrare le persone.", + "example_sentence_english": "Bureaucracy can frustrate people.", + "pos": "verb", + "word_frequency": 12643 + }, + { + "word": "gareggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compete", + "romanization": "gareggiare", + "example_sentence_native": "Amano gareggiare in ogni sport.", + "example_sentence_english": "They love to compete in every sport.", + "pos": "verb", + "word_frequency": 12645 + }, + { + "word": "giordani", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jordanians", + "romanization": "giordani", + "example_sentence_native": "I giordani sono un popolo ospitale.", + "example_sentence_english": "Jordanians are a hospitable people.", + "pos": "noun", + "word_frequency": 12646 + }, + { + "word": "hostess", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hostess", + "romanization": "hostess", + "example_sentence_native": "La hostess ci ha accolto a bordo.", + "example_sentence_english": "The hostess welcomed us on board.", + "pos": "noun", + "word_frequency": 12649 + }, + { + "word": "ideatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "creator;originator", + "romanization": "ideatore", + "example_sentence_native": "L'ideatore del progetto ha presentato la sua idea.", + "example_sentence_english": "The creator of the project presented his idea.", + "pos": "noun", + "word_frequency": 12651 + }, + { + "word": "imperdibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unmissable;not to be missed", + "romanization": "imperdibile", + "example_sentence_native": "Questo spettacolo è assolutamente imperdibile.", + "example_sentence_english": "This show is absolutely unmissable.", + "pos": "adjective", + "word_frequency": 12652 + }, + { + "word": "imperfezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imperfection", + "romanization": "imperfezione", + "example_sentence_native": "Ogni persona ha le sue imperfezioni.", + "example_sentence_english": "Every person has their imperfections.", + "pos": "noun", + "word_frequency": 12653 + }, + { + "word": "impermeabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waterproof;impermeable", + "romanization": "impermeabile", + "example_sentence_native": "Ho comprato un giubbotto impermeabile.", + "example_sentence_english": "I bought a waterproof jacket.", + "pos": "adjective", + "word_frequency": 12654 + }, + { + "word": "importato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imported", + "romanization": "importato", + "example_sentence_native": "Questo prodotto è importato dalla Cina.", + "example_sentence_english": "This product is imported from China.", + "pos": "adjective", + "word_frequency": 12655 + }, + { + "word": "indole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nature;disposition", + "romanization": "indole", + "example_sentence_native": "Ha un'indole molto calma e pacifica.", + "example_sentence_english": "He has a very calm and peaceful nature.", + "pos": "noun", + "word_frequency": 12656 + }, + { + "word": "indubbio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undoubted;unquestionable", + "romanization": "indubbio", + "example_sentence_native": "Il suo talento è indubbio.", + "example_sentence_english": "His talent is undoubted.", + "pos": "adjective", + "word_frequency": 12657 + }, + { + "word": "infettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infectious", + "romanization": "infettivo", + "example_sentence_native": "La malattia è altamente infettiva.", + "example_sentence_english": "The disease is highly infectious.", + "pos": "adjective", + "word_frequency": 12658 + }, + { + "word": "infiltrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infiltration;leak", + "romanization": "infiltrazione", + "example_sentence_native": "C'è un'infiltrazione d'acqua dal soffitto.", + "example_sentence_english": "There's a water leak from the ceiling.", + "pos": "noun", + "word_frequency": 12659 + }, + { + "word": "inquisizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inquisition", + "romanization": "inquisizione", + "example_sentence_native": "La Santa Inquisizione fu un periodo oscuro della storia.", + "example_sentence_english": "The Holy Inquisition was a dark period in history.", + "pos": "noun", + "word_frequency": 12660 + }, + { + "word": "intelletto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intellect", + "romanization": "intelletto", + "example_sentence_native": "Possiede un intelletto acuto.", + "example_sentence_english": "He possesses a sharp intellect.", + "pos": "noun", + "word_frequency": 12661 + }, + { + "word": "irreversibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreversible", + "romanization": "irreversibile", + "example_sentence_native": "Il danno è purtroppo irreversibile.", + "example_sentence_english": "The damage is unfortunately irreversible.", + "pos": "adjective", + "word_frequency": 12662 + }, + { + "word": "jam", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jam (music)", + "romanization": "jam", + "example_sentence_native": "Hanno fatto una jam session fantastica.", + "example_sentence_english": "They had a fantastic jam session.", + "pos": "noun", + "word_frequency": 12663 + }, + { + "word": "kebab", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kebab", + "romanization": "kebab", + "example_sentence_native": "Andiamo a mangiare un kebab stasera?", + "example_sentence_english": "Shall we go eat a kebab tonight?", + "pos": "noun", + "word_frequency": 12666 + }, + { + "word": "laghetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pond;small lake", + "romanization": "laghetto", + "example_sentence_native": "C'è un bel laghetto nel parco.", + "example_sentence_english": "There's a beautiful pond in the park.", + "pos": "noun", + "word_frequency": 12669 + }, + { + "word": "laicità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secularism;laicity", + "romanization": "laicità", + "example_sentence_native": "La laicità dello stato è un principio fondamentale.", + "example_sentence_english": "The secularism of the state is a fundamental principle.", + "pos": "noun", + "word_frequency": 12670 + }, + { + "word": "lucchese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Lucca", + "romanization": "lucchese", + "example_sentence_native": "La cucina lucchese è molto apprezzata.", + "example_sentence_english": "Lucchese cuisine is highly appreciated.", + "pos": "adjective", + "word_frequency": 12671 + }, + { + "word": "maniglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handle", + "romanization": "maniglia", + "example_sentence_native": "La maniglia della porta è rotta.", + "example_sentence_english": "The door handle is broken.", + "pos": "noun", + "word_frequency": 12672 + }, + { + "word": "meridione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "South (of Italy);southern regions", + "romanization": "meridione", + "example_sentence_native": "Il Meridione d'Italia è famoso per il suo clima caldo.", + "example_sentence_english": "The South of Italy is famous for its warm climate.", + "pos": "noun", + "word_frequency": 12673 + }, + { + "word": "minare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undermine;to mine", + "romanization": "minare", + "example_sentence_native": "La crisi economica può minare la fiducia dei cittadini.", + "example_sentence_english": "The economic crisis can undermine citizens' trust.", + "pos": "verb", + "word_frequency": 12674 + }, + { + "word": "navata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nave (of a church)", + "romanization": "navata", + "example_sentence_native": "La navata centrale della chiesa è imponente.", + "example_sentence_english": "The central nave of the church is imposing.", + "pos": "noun", + "word_frequency": 12678 + }, + { + "word": "nutrimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nourishment", + "romanization": "nutrimento", + "example_sentence_native": "Il cibo sano fornisce il giusto nutrimento al corpo.", + "example_sentence_english": "Healthy food provides the right nourishment to the body.", + "pos": "noun", + "word_frequency": 12682 + }, + { + "word": "orzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "barley", + "romanization": "orzo", + "example_sentence_native": "Mi piace bere caffè d'orzo.", + "example_sentence_english": "I like to drink barley coffee.", + "pos": "noun", + "word_frequency": 12684 + }, + { + "word": "ossido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oxide", + "romanization": "ossido", + "example_sentence_native": "Il ferro si ricopre di ossido quando è esposto all'aria.", + "example_sentence_english": "Iron gets covered with oxide when exposed to air.", + "pos": "noun", + "word_frequency": 12685 + }, + { + "word": "passeggino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stroller", + "romanization": "passeggino", + "example_sentence_native": "Abbiamo comprato un nuovo passeggino per il bambino.", + "example_sentence_english": "We bought a new stroller for the baby.", + "pos": "noun", + "word_frequency": 12687 + }, + { + "word": "passionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionate", + "romanization": "passionale", + "example_sentence_native": "È una persona molto passionale in tutto ciò che fa.", + "example_sentence_english": "He is a very passionate person in everything he does.", + "pos": "adjective", + "word_frequency": 12688 + }, + { + "word": "pluralità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plurality", + "romanization": "pluralità", + "example_sentence_native": "La società moderna è caratterizzata da una grande pluralità di opinioni.", + "example_sentence_english": "Modern society is characterized by a great plurality of opinions.", + "pos": "noun", + "word_frequency": 12694 + }, + { + "word": "posata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "utensil", + "romanization": "posata", + "example_sentence_native": "Mi è caduta una posata dal tavolo.", + "example_sentence_english": "A utensil fell from the table.", + "pos": "noun", + "word_frequency": 12696 + }, + { + "word": "pregevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valuable", + "romanization": "pregevole", + "example_sentence_native": "Ha svolto un lavoro di pregevole fattura.", + "example_sentence_english": "He did a valuable piece of work.", + "pos": "adjective", + "word_frequency": 12697 + }, + { + "word": "prematuro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premature", + "romanization": "prematuro", + "example_sentence_native": "La sua partenza è stata prematura.", + "example_sentence_english": "His departure was premature.", + "pos": "adjective", + "word_frequency": 12698 + }, + { + "word": "prospero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosperous", + "romanization": "prospero", + "example_sentence_native": "Auguro a tutti un anno nuovo prospero.", + "example_sentence_english": "I wish everyone a prosperous new year.", + "pos": "adjective", + "word_frequency": 12700 + }, + { + "word": "protettivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "protective", + "romanization": "protettivo", + "example_sentence_native": "Indossa sempre l'equipaggiamento protettivo.", + "example_sentence_english": "Always wear protective gear.", + "pos": "adjective", + "word_frequency": 12701 + }, + { + "word": "retina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retina", + "romanization": "retina", + "example_sentence_native": "La retina è una parte fondamentale dell'occhio.", + "example_sentence_english": "The retina is a fundamental part of the eye.", + "pos": "noun", + "word_frequency": 12705 + }, + { + "word": "riformista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reformist", + "romanization": "riformista", + "example_sentence_native": "Il partito ha una linea politica riformista.", + "example_sentence_english": "The party has a reformist political line.", + "pos": "adjective", + "word_frequency": 12707 + }, + { + "word": "ritirato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "withdrawn", + "romanization": "ritirato", + "example_sentence_native": "L'artista vive una vita ritirata in campagna.", + "example_sentence_english": "The artist lives a withdrawn life in the countryside.", + "pos": "adjective", + "word_frequency": 12709 + }, + { + "word": "rustico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rustic", + "romanization": "rustico", + "example_sentence_native": "Hanno comprato una casa rustica in campagna.", + "example_sentence_english": "They bought a rustic house in the countryside.", + "pos": "adjective", + "word_frequency": 12712 + }, + { + "word": "saldare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weld;to settle", + "romanization": "saldare", + "example_sentence_native": "Dobbiamo saldare il conto entro la fine del mese.", + "example_sentence_english": "We need to settle the bill by the end of the month.", + "pos": "verb", + "word_frequency": 12713 + }, + { + "word": "saraceno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Saracen", + "romanization": "saraceno", + "example_sentence_native": "Il grano saraceno è molto nutriente.", + "example_sentence_english": "Buckwheat (Saracen wheat) is very nutritious.", + "pos": "adjective", + "word_frequency": 12716 + }, + { + "word": "scalinata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "staircase", + "romanization": "scalinata", + "example_sentence_native": "La scalinata porta al piano superiore.", + "example_sentence_english": "The staircase leads to the upper floor.", + "pos": "noun", + "word_frequency": 12717 + }, + { + "word": "schiacciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squashed", + "romanization": "schiacciato", + "example_sentence_native": "Il frutto era completamente schiacciato nella borsa.", + "example_sentence_english": "The fruit was completely squashed in the bag.", + "pos": "adjective", + "word_frequency": 12718 + }, + { + "word": "scioccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shocked", + "romanization": "scioccato", + "example_sentence_native": "Ero scioccato dalla notizia.", + "example_sentence_english": "I was shocked by the news.", + "pos": "adjective", + "word_frequency": 12719 + }, + { + "word": "scorcio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glimpse;view", + "romanization": "scorcio", + "example_sentence_native": "Da qui si ha uno splendido scorcio sul lago.", + "example_sentence_english": "From here you have a splendid glimpse of the lake.", + "pos": "noun", + "word_frequency": 12720 + }, + { + "word": "screditare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discredit", + "romanization": "screditare", + "example_sentence_native": "Hanno cercato di screditare la sua reputazione.", + "example_sentence_english": "They tried to discredit his reputation.", + "pos": "verb", + "word_frequency": 12721 + }, + { + "word": "segretezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secrecy", + "romanization": "segretezza", + "example_sentence_native": "L'operazione è stata condotta con la massima segretezza.", + "example_sentence_english": "The operation was conducted with the utmost secrecy.", + "pos": "noun", + "word_frequency": 12722 + }, + { + "word": "semantica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semantics", + "romanization": "semantica", + "example_sentence_native": "La semantica studia il significato delle parole.", + "example_sentence_english": "Semantics studies the meaning of words.", + "pos": "noun", + "word_frequency": 12723 + }, + { + "word": "sfollato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "displaced person;evacuee", + "romanization": "sfollato", + "example_sentence_native": "Molti sfollati hanno perso le loro case a causa del terremoto.", + "example_sentence_english": "Many displaced people lost their homes due to the earthquake.", + "pos": "noun", + "word_frequency": 12725 + }, + { + "word": "simbolismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolism", + "romanization": "simbolismo", + "example_sentence_native": "Il simbolismo è molto presente nell'arte medievale.", + "example_sentence_english": "Symbolism is very present in medieval art.", + "pos": "noun", + "word_frequency": 12728 + }, + { + "word": "smaltire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispose of;to get rid of", + "romanization": "smaltire", + "example_sentence_native": "Dobbiamo smaltire i rifiuti correttamente.", + "example_sentence_english": "We must dispose of waste correctly.", + "pos": "verb", + "word_frequency": 12729 + }, + { + "word": "soffice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "soft;fluffy", + "romanization": "soffice", + "example_sentence_native": "Il cuscino è molto soffice.", + "example_sentence_english": "The pillow is very soft.", + "pos": "adjective", + "word_frequency": 12730 + }, + { + "word": "sottoscritto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undersigned;signed", + "romanization": "sottoscritto", + "example_sentence_native": "Il documento è stato sottoscritto da tutti i presenti.", + "example_sentence_english": "The document was signed by all present.", + "pos": "adjective", + "word_frequency": 12731 + }, + { + "word": "sottostare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be subject to;to comply with", + "romanization": "sottostare", + "example_sentence_native": "Dobbiamo sottostare alle regole.", + "example_sentence_english": "We must comply with the rules.", + "pos": "verb", + "word_frequency": 12732 + }, + { + "word": "souvenir", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "souvenir", + "romanization": "souvenir", + "example_sentence_native": "Ho comprato un souvenir di Roma.", + "example_sentence_english": "I bought a souvenir from Rome.", + "pos": "noun", + "word_frequency": 12733 + }, + { + "word": "staffetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relay (race);shuttle", + "romanization": "staffetta", + "example_sentence_native": "La staffetta 4x100 è una gara emozionante.", + "example_sentence_english": "The 4x100 relay is an exciting race.", + "pos": "noun", + "word_frequency": 12734 + }, + { + "word": "statista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statesman", + "romanization": "statista", + "example_sentence_native": "È considerato un grande statista.", + "example_sentence_english": "He is considered a great statesman.", + "pos": "noun", + "word_frequency": 12735 + }, + { + "word": "statuetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "figurine;statuette", + "romanization": "statuetta", + "example_sentence_native": "Ha una collezione di statuette antiche.", + "example_sentence_english": "She has a collection of ancient figurines.", + "pos": "noun", + "word_frequency": 12736 + }, + { + "word": "straziante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heartbreaking;agonizing", + "romanization": "straziante", + "example_sentence_native": "La sua storia era straziante.", + "example_sentence_english": "His story was heartbreaking.", + "pos": "adjective", + "word_frequency": 12737 + }, + { + "word": "svincolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junction;exit (from a highway)", + "romanization": "svincolo", + "example_sentence_native": "Prendi il prossimo svincolo per l'autostrada.", + "example_sentence_english": "Take the next exit for the highway.", + "pos": "noun", + "word_frequency": 12741 + }, + { + "word": "svuotare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to empty", + "romanization": "svuotare", + "example_sentence_native": "Devo svuotare la lavastoviglie.", + "example_sentence_english": "I need to empty the dishwasher.", + "pos": "verb", + "word_frequency": 12742 + }, + { + "word": "talebano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Taliban member", + "romanization": "talebano", + "example_sentence_native": "Il gruppo talebano ha preso il controllo della città.", + "example_sentence_english": "The Taliban group took control of the city.", + "pos": "noun", + "word_frequency": 12743 + }, + { + "word": "teatrino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small theater;puppet show", + "romanization": "teatrino", + "example_sentence_native": "I bambini hanno allestito un teatrino con le marionette.", + "example_sentence_english": "The children set up a puppet show with puppets.", + "pos": "noun", + "word_frequency": 12744 + }, + { + "word": "termometro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thermometer", + "romanization": "termometro", + "example_sentence_native": "Ho usato il termometro per misurare la febbre.", + "example_sentence_english": "I used the thermometer to measure the fever.", + "pos": "noun", + "word_frequency": 12746 + }, + { + "word": "tessitura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weaving;texture", + "romanization": "tessitura", + "example_sentence_native": "La tessitura di questo tessuto è molto fine.", + "example_sentence_english": "The texture of this fabric is very fine.", + "pos": "noun", + "word_frequency": 12747 + }, + { + "word": "tir", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck;lorry", + "romanization": "tir", + "example_sentence_native": "Un grosso tir bloccava la strada.", + "example_sentence_english": "A large truck was blocking the road.", + "pos": "noun", + "word_frequency": 12748 + }, + { + "word": "trampolino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trampoline;diving board", + "romanization": "trampolino", + "example_sentence_native": "I bambini si divertivano sul trampolino.", + "example_sentence_english": "The children were having fun on the trampoline.", + "pos": "noun", + "word_frequency": 12750 + }, + { + "word": "variabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variability", + "romanization": "variabilità", + "example_sentence_native": "La variabilità del clima è un problema.", + "example_sentence_english": "The variability of the climate is a problem.", + "pos": "noun", + "word_frequency": 12753 + }, + { + "word": "vigliacco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cowardly", + "romanization": "vigliacco", + "example_sentence_native": "Si è comportato in modo vigliacco.", + "example_sentence_english": "He behaved in a cowardly manner.", + "pos": "adjective", + "word_frequency": 12755 + }, + { + "word": "abbiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wealthy;affluent", + "romanization": "abbiente", + "example_sentence_native": "La famiglia era molto abbiente.", + "example_sentence_english": "The family was very wealthy.", + "pos": "adjective", + "word_frequency": 12758 + }, + { + "word": "accorgimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expedient", + "romanization": "accorgimento", + "example_sentence_native": "Ha usato un piccolo accorgimento per risolvere il problema.", + "example_sentence_english": "He used a small expedient to solve the problem.", + "pos": "noun", + "word_frequency": 12760 + }, + { + "word": "aggregato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggregate", + "romanization": "aggregato", + "example_sentence_native": "Il valore aggregato dei beni è aumentato.", + "example_sentence_english": "The aggregate value of the assets has increased.", + "pos": "adjective", + "word_frequency": 12761 + }, + { + "word": "agi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comforts", + "romanization": "agi", + "example_sentence_native": "Viveva tra gli agi della ricchezza.", + "example_sentence_english": "He lived amidst the comforts of wealth.", + "pos": "noun", + "word_frequency": 12762 + }, + { + "word": "alternativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternatively", + "romanization": "alternativamente", + "example_sentence_native": "Possiamo andare in treno o, alternativamente, in autobus.", + "example_sentence_english": "We can go by train or, alternatively, by bus.", + "pos": "adverb", + "word_frequency": 12769 + }, + { + "word": "ammissibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admissible", + "romanization": "ammissibile", + "example_sentence_native": "La sua richiesta è ammissibile.", + "example_sentence_english": "His request is admissible.", + "pos": "adjective", + "word_frequency": 12771 + }, + { + "word": "annunciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "announced", + "romanization": "annunciato", + "example_sentence_native": "L'evento annunciato è stato posticipato.", + "example_sentence_english": "The announced event has been postponed.", + "pos": "adjective", + "word_frequency": 12773 + }, + { + "word": "arachide", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peanut", + "romanization": "arachide", + "example_sentence_native": "Ho un'allergia all'arachide.", + "example_sentence_english": "I have a peanut allergy.", + "pos": "noun", + "word_frequency": 12775 + }, + { + "word": "arbitrariamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitrarily", + "romanization": "arbitrariamente", + "example_sentence_native": "Ha agito arbitrariamente senza consultare nessuno.", + "example_sentence_english": "He acted arbitrarily without consulting anyone.", + "pos": "adverb", + "word_frequency": 12776 + }, + { + "word": "arrestato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arrested", + "romanization": "arrestato", + "example_sentence_native": "L'uomo arrestato è stato rilasciato.", + "example_sentence_english": "The arrested man was released.", + "pos": "adjective", + "word_frequency": 12777 + }, + { + "word": "assenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assent", + "romanization": "assenso", + "example_sentence_native": "Ha dato il suo assenso al progetto.", + "example_sentence_english": "He gave his assent to the project.", + "pos": "noun", + "word_frequency": 12778 + }, + { + "word": "assolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solo", + "romanization": "assolo", + "example_sentence_native": "Il chitarrista ha suonato un assolo incredibile.", + "example_sentence_english": "The guitarist played an incredible solo.", + "pos": "noun", + "word_frequency": 12779 + }, + { + "word": "attratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attracted", + "romanization": "attratto", + "example_sentence_native": "Era attratto dalla sua intelligenza.", + "example_sentence_english": "He was attracted by her intelligence.", + "pos": "adjective", + "word_frequency": 12781 + }, + { + "word": "bistecca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "steak", + "romanization": "bistecca", + "example_sentence_native": "Vorrei una bistecca ben cotta.", + "example_sentence_english": "I would like a well-done steak.", + "pos": "noun", + "word_frequency": 12786 + }, + { + "word": "boccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bowl", + "romanization": "boccia", + "example_sentence_native": "Ha lanciato la boccia con precisione.", + "example_sentence_english": "He threw the ball with precision.", + "pos": "noun", + "word_frequency": 12787 + }, + { + "word": "bufera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blizzard", + "romanization": "bufera", + "example_sentence_native": "Una bufera di neve ha colpito la regione.", + "example_sentence_english": "A snow blizzard hit the region.", + "pos": "noun", + "word_frequency": 12789 + }, + { + "word": "canaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canary (female bird)", + "romanization": "canaria", + "example_sentence_native": "La canaria canta melodiosamente.", + "example_sentence_english": "The female canary sings melodiously.", + "pos": "noun", + "word_frequency": 12790 + }, + { + "word": "caporale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporal", + "romanization": "caporale", + "example_sentence_native": "Il caporale ha dato gli ordini.", + "example_sentence_english": "The corporal gave the orders.", + "pos": "noun", + "word_frequency": 12791 + }, + { + "word": "cappellano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaplain", + "romanization": "cappellano", + "example_sentence_native": "Il cappellano ha officiato la cerimonia.", + "example_sentence_english": "The chaplain officiated the ceremony.", + "pos": "noun", + "word_frequency": 12792 + }, + { + "word": "carcerato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prisoner", + "romanization": "carcerato", + "example_sentence_native": "Il carcerato è stato rilasciato dopo anni.", + "example_sentence_english": "The prisoner was released after years.", + "pos": "noun", + "word_frequency": 12793 + }, + { + "word": "cileno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Chilean", + "romanization": "cileno", + "example_sentence_native": "Il vino cileno è molto apprezzato.", + "example_sentence_english": "Chilean wine is highly appreciated.", + "pos": "adjective", + "word_frequency": 12796 + }, + { + "word": "cloro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chlorine", + "romanization": "cloro", + "example_sentence_native": "L'acqua della piscina contiene cloro.", + "example_sentence_english": "The pool water contains chlorine.", + "pos": "noun", + "word_frequency": 12799 + }, + { + "word": "compilation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compilation", + "romanization": "compilation", + "example_sentence_native": "Ho ascoltato una compilation delle sue migliori canzoni.", + "example_sentence_english": "I listened to a compilation of his best songs.", + "pos": "noun", + "word_frequency": 12802 + }, + { + "word": "concorde", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concordant;harmonious", + "romanization": "concorde", + "example_sentence_native": "Le loro opinioni erano perfettamente concorde.", + "example_sentence_english": "Their opinions were perfectly concordant.", + "pos": "adjective", + "word_frequency": 12803 + }, + { + "word": "consacrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consecrated;established", + "romanization": "consacrato", + "example_sentence_native": "È un artista consacrato nel mondo della pittura.", + "example_sentence_english": "He is an established artist in the world of painting.", + "pos": "adjective", + "word_frequency": 12804 + }, + { + "word": "conscio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conscious;aware", + "romanization": "conscio", + "example_sentence_native": "Era conscio del pericolo che stava correndo.", + "example_sentence_english": "He was conscious of the danger he was running.", + "pos": "adjective", + "word_frequency": 12805 + }, + { + "word": "controcorrente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "against the current;unconventional", + "romanization": "controcorrente", + "example_sentence_native": "Le sue idee sono sempre state controcorrente.", + "example_sentence_english": "His ideas have always been against the current.", + "pos": "adjective", + "word_frequency": 12806 + }, + { + "word": "corredato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equipped;furnished;accompanied", + "romanization": "corredato", + "example_sentence_native": "Il documento era corredato da numerose illustrazioni.", + "example_sentence_english": "The document was accompanied by numerous illustrations.", + "pos": "adjective", + "word_frequency": 12807 + }, + { + "word": "coupon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coupon", + "romanization": "coupon", + "example_sentence_native": "Ho usato un coupon per ottenere uno sconto.", + "example_sentence_english": "I used a coupon to get a discount.", + "pos": "noun", + "word_frequency": 12809 + }, + { + "word": "deformazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deformation;distortion", + "romanization": "deformazione", + "example_sentence_native": "La deformazione del metallo è stata causata dal calore.", + "example_sentence_english": "The deformation of the metal was caused by heat.", + "pos": "noun", + "word_frequency": 12812 + }, + { + "word": "democraticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "democratically", + "romanization": "democraticamente", + "example_sentence_native": "La decisione è stata presa democraticamente.", + "example_sentence_english": "The decision was made democratically.", + "pos": "adverb", + "word_frequency": 12819 + }, + { + "word": "deportato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deportee", + "romanization": "deportato", + "example_sentence_native": "Molti deportati non fecero mai ritorno a casa.", + "example_sentence_english": "Many deportees never returned home.", + "pos": "noun", + "word_frequency": 12820 + }, + { + "word": "deterrente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deterrent", + "romanization": "deterrente", + "example_sentence_native": "La pena deve avere un effetto deterrente.", + "example_sentence_english": "The punishment must have a deterrent effect.", + "pos": "adjective", + "word_frequency": 12821 + }, + { + "word": "deviare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deviate;to divert", + "romanization": "deviare", + "example_sentence_native": "Dobbiamo deviare il traffico per i lavori stradali.", + "example_sentence_english": "We need to divert traffic for road works.", + "pos": "verb", + "word_frequency": 12822 + }, + { + "word": "diciottesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eighteenth", + "romanization": "diciottesimo", + "example_sentence_native": "Oggi è il diciottesimo giorno del mese.", + "example_sentence_english": "Today is the eighteenth day of the month.", + "pos": "adjective", + "word_frequency": 12823 + }, + { + "word": "drastico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drastic", + "romanization": "drastico", + "example_sentence_native": "Hanno preso misure drastiche per risolvere il problema.", + "example_sentence_english": "They took drastic measures to solve the problem.", + "pos": "adjective", + "word_frequency": 12824 + }, + { + "word": "egemonia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hegemony", + "romanization": "egemonia", + "example_sentence_native": "La nazione cercava di stabilire la sua egemonia nella regione.", + "example_sentence_english": "The nation sought to establish its hegemony in the region.", + "pos": "noun", + "word_frequency": 12826 + }, + { + "word": "esaminato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "examined;reviewed", + "romanization": "esaminato", + "example_sentence_native": "Il caso è stato attentamente esaminato.", + "example_sentence_english": "The case was carefully examined.", + "pos": "adjective", + "word_frequency": 12829 + }, + { + "word": "esilarante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hilarious;exhilarating", + "romanization": "esilarante", + "example_sentence_native": "Lo spettacolo era assolutamente esilarante.", + "example_sentence_english": "The show was absolutely hilarious.", + "pos": "adjective", + "word_frequency": 12830 + }, + { + "word": "espressivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressive", + "romanization": "espressivo", + "example_sentence_native": "Ha uno sguardo molto espressivo.", + "example_sentence_english": "He has a very expressive look.", + "pos": "adjective", + "word_frequency": 12831 + }, + { + "word": "esule", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exile", + "romanization": "esule", + "example_sentence_native": "Molti esuli sognano di tornare un giorno nella loro patria.", + "example_sentence_english": "Many exiles dream of returning to their homeland one day.", + "pos": "noun", + "word_frequency": 12832 + }, + { + "word": "evolutivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evolutionary;developmental", + "romanization": "evolutivo", + "example_sentence_native": "Stiamo assistendo a un processo evolutivo nella tecnologia.", + "example_sentence_english": "We are witnessing an evolutionary process in technology.", + "pos": "adjective", + "word_frequency": 12833 + }, + { + "word": "fin'ora", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "until now;so far", + "romanization": "fin'ora", + "example_sentence_native": "Fin'ora tutto è andato bene.", + "example_sentence_english": "So far everything has gone well.", + "pos": "adverb", + "word_frequency": 12836 + }, + { + "word": "fiorire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bloom;to flourish", + "romanization": "fiorire", + "example_sentence_native": "I fiori iniziano a fiorire in primavera.", + "example_sentence_english": "The flowers begin to bloom in spring.", + "pos": "verb", + "word_frequency": 12837 + }, + { + "word": "fortificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortification", + "romanization": "fortificazione", + "example_sentence_native": "Le antiche fortificazioni proteggevano la città.", + "example_sentence_english": "The ancient fortifications protected the city.", + "pos": "noun", + "word_frequency": 12838 + }, + { + "word": "francobollo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stamp (postage)", + "romanization": "francobollo", + "example_sentence_native": "Ho bisogno di un francobollo per questa lettera.", + "example_sentence_english": "I need a stamp for this letter.", + "pos": "noun", + "word_frequency": 12839 + }, + { + "word": "fune", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rope", + "romanization": "fune", + "example_sentence_native": "La fune era abbastanza forte da sostenere il peso.", + "example_sentence_english": "The rope was strong enough to support the weight.", + "pos": "noun", + "word_frequency": 12840 + }, + { + "word": "fuoriuscita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leakage;spill", + "romanization": "fuoriuscita", + "example_sentence_native": "C'è stata una fuoriuscita di petrolio nel mare.", + "example_sentence_english": "There was an oil spill in the sea.", + "pos": "noun", + "word_frequency": 12841 + }, + { + "word": "gangster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gangster", + "romanization": "gangster", + "example_sentence_native": "Il film parlava di un gruppo di gangster.", + "example_sentence_english": "The film was about a group of gangsters.", + "pos": "noun", + "word_frequency": 12843 + }, + { + "word": "gasolio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diesel fuel", + "romanization": "gasolio", + "example_sentence_native": "Dobbiamo fare rifornimento di gasolio prima di partire.", + "example_sentence_english": "We need to refuel with diesel before leaving.", + "pos": "noun", + "word_frequency": 12844 + }, + { + "word": "giardiniere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gardener", + "romanization": "giardiniere", + "example_sentence_native": "Il giardiniere si prende cura del nostro prato.", + "example_sentence_english": "The gardener takes care of our lawn.", + "pos": "noun", + "word_frequency": 12847 + }, + { + "word": "guadagnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "earned;gained", + "romanization": "guadagnato", + "example_sentence_native": "La sua reputazione è stata guadagnata con anni di duro lavoro.", + "example_sentence_english": "His reputation was earned with years of hard work.", + "pos": "adjective", + "word_frequency": 12849 + }, + { + "word": "implicito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implicit", + "romanization": "implicito", + "example_sentence_native": "C'era un accordo implicito tra di loro.", + "example_sentence_english": "There was an implicit agreement between them.", + "pos": "adjective", + "word_frequency": 12854 + }, + { + "word": "inadeguatezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inadequacy", + "romanization": "inadeguatezza", + "example_sentence_native": "Sentiva un senso di inadeguatezza riguardo al suo ruolo.", + "example_sentence_english": "He felt a sense of inadequacy regarding his role.", + "pos": "noun", + "word_frequency": 12855 + }, + { + "word": "individuato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identified;located", + "romanization": "individuato", + "example_sentence_native": "Il problema è stato individuato e risolto.", + "example_sentence_english": "The problem has been identified and resolved.", + "pos": "adjective", + "word_frequency": 12857 + }, + { + "word": "infallibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infallible", + "romanization": "infallibile", + "example_sentence_native": "Nessuno è infallibile, tutti commettono errori.", + "example_sentence_english": "No one is infallible, everyone makes mistakes.", + "pos": "adjective", + "word_frequency": 12858 + }, + { + "word": "ingegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingenuity;wit", + "romanization": "ingegno", + "example_sentence_native": "Ha dimostrato grande ingegno nel risolvere il problema.", + "example_sentence_english": "He showed great ingenuity in solving the problem.", + "pos": "noun", + "word_frequency": 12860 + }, + { + "word": "intenzionato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intent on;intending", + "romanization": "intenzionato", + "example_sentence_native": "Sono intenzionato a finire il progetto entro domani.", + "example_sentence_english": "I am intent on finishing the project by tomorrow.", + "pos": "adjective", + "word_frequency": 12862 + }, + { + "word": "intrigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrigue;plot", + "romanization": "intrigo", + "example_sentence_native": "La storia era piena di mistero e intrigo.", + "example_sentence_english": "The story was full of mystery and intrigue.", + "pos": "noun", + "word_frequency": 12863 + }, + { + "word": "invecchiamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aging", + "romanization": "invecchiamento", + "example_sentence_native": "L'invecchiamento della popolazione è una sfida sociale.", + "example_sentence_english": "Population aging is a social challenge.", + "pos": "noun", + "word_frequency": 12864 + }, + { + "word": "invecchiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to age;to grow old", + "romanization": "invecchiare", + "example_sentence_native": "Non mi piace l'idea di invecchiare.", + "example_sentence_english": "I don't like the idea of growing old.", + "pos": "verb", + "word_frequency": 12865 + }, + { + "word": "involucro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrapper;casing", + "romanization": "involucro", + "example_sentence_native": "Rimuovi l'involucro prima di scaldare il cibo.", + "example_sentence_english": "Remove the wrapper before heating the food.", + "pos": "noun", + "word_frequency": 12866 + }, + { + "word": "istruito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educated;instructed", + "romanization": "istruito", + "example_sentence_native": "È una persona molto istruita e colta.", + "example_sentence_english": "He is a very educated and cultured person.", + "pos": "adjective", + "word_frequency": 12868 + }, + { + "word": "libbra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pound (unit of weight)", + "romanization": "libbra", + "example_sentence_native": "Una libbra equivale a circa 450 grammi.", + "example_sentence_english": "One pound is equivalent to about 450 grams.", + "pos": "noun", + "word_frequency": 12872 + }, + { + "word": "litio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lithium", + "romanization": "litio", + "example_sentence_native": "Le batterie al litio sono molto diffuse.", + "example_sentence_english": "Lithium batteries are very common.", + "pos": "noun", + "word_frequency": 12873 + }, + { + "word": "locuzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phrase;locution", + "romanization": "locuzione", + "example_sentence_native": "\"Per forza\" è una locuzione avverbiale.", + "example_sentence_english": "\"By force\" is an adverbial phrase.", + "pos": "noun", + "word_frequency": 12874 + }, + { + "word": "maionese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mayonnaise", + "romanization": "maionese", + "example_sentence_native": "Mi piace la maionese con le patatine fritte.", + "example_sentence_english": "I like mayonnaise with french fries.", + "pos": "noun", + "word_frequency": 12878 + }, + { + "word": "masso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boulder;large rock", + "romanization": "masso", + "example_sentence_native": "Un enorme masso è rotolato giù dalla montagna.", + "example_sentence_english": "An enormous boulder rolled down the mountain.", + "pos": "noun", + "word_frequency": 12881 + }, + { + "word": "matrigna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepmother", + "romanization": "matrigna", + "example_sentence_native": "La matrigna era molto severa con Cenerentola.", + "example_sentence_english": "The stepmother was very strict with Cinderella.", + "pos": "noun", + "word_frequency": 12882 + }, + { + "word": "messaggistica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "messaging (service;system)", + "romanization": "messaggistica", + "example_sentence_native": "Le app di messaggistica istantanea sono molto popolari.", + "example_sentence_english": "Instant messaging apps are very popular.", + "pos": "noun", + "word_frequency": 12884 + }, + { + "word": "minaccioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "threatening;menacing", + "romanization": "minaccioso", + "example_sentence_native": "Il cielo era scuro e minaccioso prima del temporale.", + "example_sentence_english": "The sky was dark and threatening before the storm.", + "pos": "adjective", + "word_frequency": 12885 + }, + { + "word": "montatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame (e.g.;glasses);setting (e.g.;jewelry);fabrication (e.g.;a story)", + "romanization": "montatura", + "example_sentence_native": "La montatura degli occhiali si è rotta.", + "example_sentence_english": "The frame of the glasses broke.", + "pos": "noun", + "word_frequency": 12888 + }, + { + "word": "munito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equipped;provided with", + "romanization": "munito", + "example_sentence_native": "L'escursionista era munito di tutto il necessario.", + "example_sentence_english": "The hiker was equipped with everything necessary.", + "pos": "adjective", + "word_frequency": 12891 + }, + { + "word": "murale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mural", + "romanization": "murale", + "example_sentence_native": "Hanno dipinto un bellissimo murale sulla parete esterna.", + "example_sentence_english": "They painted a beautiful mural on the outer wall.", + "pos": "noun", + "word_frequency": 12892 + }, + { + "word": "mutato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "changed;altered", + "romanization": "mutato", + "example_sentence_native": "Il suo atteggiamento è mutato dopo l'esperienza.", + "example_sentence_english": "His attitude changed after the experience.", + "pos": "adjective", + "word_frequency": 12893 + }, + { + "word": "negoziante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shopkeeper;merchant", + "romanization": "negoziante", + "example_sentence_native": "Il negoziante mi ha dato un buon consiglio.", + "example_sentence_english": "The shopkeeper gave me good advice.", + "pos": "noun", + "word_frequency": 12895 + }, + { + "word": "onomastico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "name day", + "romanization": "onomastico", + "example_sentence_native": "Oggi è il mio onomastico, festeggio San Giovanni.", + "example_sentence_english": "Today is my name day, I'm celebrating Saint John.", + "pos": "noun", + "word_frequency": 12898 + }, + { + "word": "palpebra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyelid", + "romanization": "palpebra", + "example_sentence_native": "Le sue palpebre erano pesanti per la stanchezza.", + "example_sentence_english": "Her eyelids were heavy with tiredness.", + "pos": "noun", + "word_frequency": 12900 + }, + { + "word": "parimenti", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "likewise;equally", + "romanization": "parimenti", + "example_sentence_native": "Ha espresso la sua opinione e io, parimenti, la mia.", + "example_sentence_english": "He expressed his opinion and I, likewise, mine.", + "pos": "adverb", + "word_frequency": 12901 + }, + { + "word": "pecorino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pecorino cheese", + "romanization": "pecorino", + "example_sentence_native": "Mi piace la pasta cacio e pepe con tanto pecorino.", + "example_sentence_english": "I like cacio e pepe pasta with a lot of pecorino cheese.", + "pos": "noun", + "word_frequency": 12902 + }, + { + "word": "penalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty", + "romanization": "penalità", + "example_sentence_native": "L'arbitro ha assegnato una penalità alla squadra.", + "example_sentence_english": "The referee awarded a penalty to the team.", + "pos": "noun", + "word_frequency": 12903 + }, + { + "word": "pensionistico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pension-related;retirement-related", + "romanization": "pensionistico", + "example_sentence_native": "La riforma del sistema pensionistico è un tema caldo.", + "example_sentence_english": "The reform of the pension system is a hot topic.", + "pos": "adjective", + "word_frequency": 12904 + }, + { + "word": "percossa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blow;strike;beating", + "romanization": "percossa", + "example_sentence_native": "Ha ricevuto una forte percossa alla testa.", + "example_sentence_english": "He received a strong blow to the head.", + "pos": "noun", + "word_frequency": 12906 + }, + { + "word": "persistere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persist;to persevere", + "romanization": "persistere", + "example_sentence_native": "Nonostante le difficoltà, ha deciso di persistere.", + "example_sentence_english": "Despite the difficulties, he decided to persist.", + "pos": "verb", + "word_frequency": 12907 + }, + { + "word": "piacevolmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pleasantly", + "romanization": "piacevolmente", + "example_sentence_native": "Sono rimasto piacevolmente sorpreso dal risultato.", + "example_sentence_english": "I was pleasantly surprised by the result.", + "pos": "adverb", + "word_frequency": 12908 + }, + { + "word": "pittorico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picturesque;pictorial", + "romanization": "pittorico", + "example_sentence_native": "Il paesaggio era così pittorico che sembrava un quadro.", + "example_sentence_english": "The landscape was so picturesque it looked like a painting.", + "pos": "adjective", + "word_frequency": 12909 + }, + { + "word": "portiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car door;doorkeeper (female)", + "romanization": "portiera", + "example_sentence_native": "La portiera dell'auto non si chiude bene.", + "example_sentence_english": "The car door doesn't close well.", + "pos": "noun", + "word_frequency": 12910 + }, + { + "word": "postura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "posture", + "romanization": "postura", + "example_sentence_native": "È importante mantenere una buona postura per la schiena.", + "example_sentence_english": "It's important to maintain good posture for your back.", + "pos": "noun", + "word_frequency": 12911 + }, + { + "word": "precursore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precursor;forerunner", + "romanization": "precursore", + "example_sentence_native": "Questo evento è stato un precursore di grandi cambiamenti.", + "example_sentence_english": "This event was a precursor to great changes.", + "pos": "noun", + "word_frequency": 12913 + }, + { + "word": "primordiale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "primordial;primeval", + "romanization": "primordiale", + "example_sentence_native": "L'uomo ha un bisogno primordiale di sicurezza.", + "example_sentence_english": "Man has a primordial need for security.", + "pos": "adjective", + "word_frequency": 12914 + }, + { + "word": "proxy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proxy", + "romanization": "proxy", + "example_sentence_native": "Ho configurato il server proxy per la rete.", + "example_sentence_english": "I configured the proxy server for the network.", + "pos": "noun", + "word_frequency": 12915 + }, + { + "word": "prurito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "itch;itching", + "romanization": "prurito", + "example_sentence_native": "Ho un forte prurito sulla pelle.", + "example_sentence_english": "I have a strong itch on my skin.", + "pos": "noun", + "word_frequency": 12916 + }, + { + "word": "pulpito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulpit", + "romanization": "pulpito", + "example_sentence_native": "Il prete ha parlato dal pulpito.", + "example_sentence_english": "The priest spoke from the pulpit.", + "pos": "noun", + "word_frequency": 12917 + }, + { + "word": "pungente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pungent;sharp;biting", + "romanization": "pungente", + "example_sentence_native": "L'odore era molto pungente.", + "example_sentence_english": "The smell was very pungent.", + "pos": "adjective", + "word_frequency": 12918 + }, + { + "word": "racchiuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enclosed", + "romanization": "racchiuso", + "example_sentence_native": "Il segreto è racchiuso in questo libro antico.", + "example_sentence_english": "The secret is enclosed in this ancient book.", + "pos": "adjective", + "word_frequency": 12921 + }, + { + "word": "radicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rooted", + "romanization": "radicato", + "example_sentence_native": "Le sue convinzioni sono profondamente radicate.", + "example_sentence_english": "His beliefs are deeply rooted.", + "pos": "adjective", + "word_frequency": 12922 + }, + { + "word": "raviolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raviolo", + "romanization": "raviolo", + "example_sentence_native": "Ho mangiato un delizioso raviolo al ragù.", + "example_sentence_english": "I ate a delicious raviolo with meat sauce.", + "pos": "noun", + "word_frequency": 12923 + }, + { + "word": "reclamare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to claim;to complain", + "romanization": "reclamare", + "example_sentence_native": "Devo reclamare per il servizio scadente.", + "example_sentence_english": "I need to complain about the poor service.", + "pos": "verb", + "word_frequency": 12924 + }, + { + "word": "repentaglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jeopardy;risk", + "romanization": "repentaglio", + "example_sentence_native": "La sua vita era in repentaglio.", + "example_sentence_english": "His life was in jeopardy.", + "pos": "noun", + "word_frequency": 12925 + }, + { + "word": "robotica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robotics", + "romanization": "robotica", + "example_sentence_native": "La robotica è un campo in rapida crescita.", + "example_sentence_english": "Robotics is a rapidly growing field.", + "pos": "noun", + "word_frequency": 12926 + }, + { + "word": "rodere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gnaw;to corrode", + "romanization": "rodere", + "example_sentence_native": "Il topo ha iniziato a rodere il formaggio.", + "example_sentence_english": "The mouse started to gnaw the cheese.", + "pos": "verb", + "word_frequency": 12927 + }, + { + "word": "salernitano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Salernitan;from Salerno", + "romanization": "salernitano", + "example_sentence_native": "È un piatto tipico salernitano.", + "example_sentence_english": "It's a typical Salernitan dish.", + "pos": "adjective", + "word_frequency": 12930 + }, + { + "word": "sanguinoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bloody", + "romanization": "sanguinoso", + "example_sentence_native": "C'è stata una battaglia sanguinosa.", + "example_sentence_english": "There was a bloody battle.", + "pos": "adjective", + "word_frequency": 12931 + }, + { + "word": "scempio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "havoc;desecration", + "romanization": "scempio", + "example_sentence_native": "Hanno fatto uno scempio del paesaggio.", + "example_sentence_english": "They made a havoc of the landscape.", + "pos": "noun", + "word_frequency": 12932 + }, + { + "word": "scogliera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cliff;reef", + "romanization": "scogliera", + "example_sentence_native": "Le onde si infrangevano contro la scogliera.", + "example_sentence_english": "The waves crashed against the cliff.", + "pos": "noun", + "word_frequency": 12933 + }, + { + "word": "serenissimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most serene;very serene", + "romanization": "serenissimo", + "example_sentence_native": "Il cielo era serenissimo dopo la tempesta.", + "example_sentence_english": "The sky was most serene after the storm.", + "pos": "adjective", + "word_frequency": 12934 + }, + { + "word": "sfidato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenged;defied", + "romanization": "sfidato", + "example_sentence_native": "Si sentiva sfidato dalla complessità del compito.", + "example_sentence_english": "He felt challenged by the complexity of the task.", + "pos": "adjective", + "word_frequency": 12936 + }, + { + "word": "sgualdrina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "whore;slut", + "romanization": "sgualdrina", + "example_sentence_native": "Non usare quella parola, è offensiva.", + "example_sentence_english": "Don't use that word, it's offensive.", + "pos": "noun", + "word_frequency": 12937 + }, + { + "word": "sindacalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trade unionist;union representative", + "romanization": "sindacalista", + "example_sentence_native": "Il sindacalista ha negoziato un nuovo accordo.", + "example_sentence_english": "The trade unionist negotiated a new agreement.", + "pos": "noun", + "word_frequency": 12938 + }, + { + "word": "sleale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disloyal;unfair", + "romanization": "sleale", + "example_sentence_native": "È stato un comportamento sleale nei suoi confronti.", + "example_sentence_english": "It was disloyal behavior towards him.", + "pos": "adjective", + "word_frequency": 12939 + }, + { + "word": "sommerso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submerged;overwhelmed", + "romanization": "sommerso", + "example_sentence_native": "La città era sommersa dall'acqua dopo l'alluvione.", + "example_sentence_english": "The city was submerged by water after the flood.", + "pos": "adjective", + "word_frequency": 12940 + }, + { + "word": "sorso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sip;gulp", + "romanization": "sorso", + "example_sentence_native": "Ho preso un sorso d'acqua.", + "example_sentence_english": "I took a sip of water.", + "pos": "noun", + "word_frequency": 12941 + }, + { + "word": "sottovoce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in a low voice;whispering", + "romanization": "sottovoce", + "example_sentence_native": "Parlava sottovoce per non svegliare il bambino.", + "example_sentence_english": "He spoke in a low voice so as not to wake the baby.", + "pos": "adverb", + "word_frequency": 12942 + }, + { + "word": "stancato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tired;worn out", + "romanization": "stancato", + "example_sentence_native": "Sono stancato dopo una lunga giornata di lavoro.", + "example_sentence_english": "I am tired after a long day of work.", + "pos": "adjective", + "word_frequency": 12943 + }, + { + "word": "storiella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short story;anecdote", + "romanization": "storiella", + "example_sentence_native": "Mi ha raccontato una divertente storiella.", + "example_sentence_english": "He told me a funny short story.", + "pos": "noun", + "word_frequency": 12945 + }, + { + "word": "stratagemma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratagem;ploy", + "romanization": "stratagemma", + "example_sentence_native": "Ha usato uno stratagemma per vincere la partita.", + "example_sentence_english": "He used a stratagem to win the game.", + "pos": "noun", + "word_frequency": 12946 + }, + { + "word": "strofa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stanza;verse", + "romanization": "strofa", + "example_sentence_native": "La prima strofa della canzone è la mia preferita.", + "example_sentence_english": "The first stanza of the song is my favorite.", + "pos": "noun", + "word_frequency": 12947 + }, + { + "word": "stupidaggine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nonsense;stupidity", + "romanization": "stupidaggine", + "example_sentence_native": "Non dire stupidaggini!", + "example_sentence_english": "Don't say nonsense!", + "pos": "noun", + "word_frequency": 12948 + }, + { + "word": "telo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheet;cloth;tarpaulin", + "romanization": "telo", + "example_sentence_native": "Abbiamo steso un telo sulla spiaggia.", + "example_sentence_english": "We spread a sheet on the beach.", + "pos": "noun", + "word_frequency": 12950 + }, + { + "word": "thailandese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai;from Thailand", + "romanization": "thailandese", + "example_sentence_native": "Mi piace molto la cucina thailandese.", + "example_sentence_english": "I really like Thai cuisine.", + "pos": "adjective", + "word_frequency": 12952 + }, + { + "word": "tutelato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protected;safeguarded", + "romanization": "tutelato", + "example_sentence_native": "I diritti dei lavoratori sono tutelati dalla legge.", + "example_sentence_english": "Workers' rights are protected by law.", + "pos": "adjective", + "word_frequency": 12955 + }, + { + "word": "unicità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uniqueness", + "romanization": "unicità", + "example_sentence_native": "Ogni persona ha la sua unicità.", + "example_sentence_english": "Every person has their uniqueness.", + "pos": "noun", + "word_frequency": 12958 + }, + { + "word": "vallata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "valley", + "romanization": "vallata", + "example_sentence_native": "La vallata era coperta di neve fresca.", + "example_sentence_english": "The valley was covered in fresh snow.", + "pos": "noun", + "word_frequency": 12960 + }, + { + "word": "ventilatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fan", + "romanization": "ventilatore", + "example_sentence_native": "Accendi il ventilatore, fa troppo caldo.", + "example_sentence_english": "Turn on the fan, it's too hot.", + "pos": "noun", + "word_frequency": 12961 + }, + { + "word": "ventuno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-one", + "romanization": "ventuno", + "example_sentence_native": "Ho ventuno anni.", + "example_sentence_english": "I am twenty-one years old.", + "pos": "noun", + "word_frequency": 12962 + }, + { + "word": "accaduto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "happened;occurred", + "romanization": "accaduto", + "example_sentence_native": "L'evento accaduto ieri è stato sorprendente.", + "example_sentence_english": "The event that happened yesterday was surprising.", + "pos": "adjective", + "word_frequency": 12966 + }, + { + "word": "accanimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenacity;ferocity", + "romanization": "accanimento", + "example_sentence_native": "Ha mostrato un accanimento incredibile nel raggiungere il suo obiettivo.", + "example_sentence_english": "He showed incredible tenacity in achieving his goal.", + "pos": "noun", + "word_frequency": 12967 + }, + { + "word": "accreditato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accredited;credited", + "romanization": "accreditato", + "example_sentence_native": "È un giornalista accreditato alla conferenza stampa.", + "example_sentence_english": "He is an accredited journalist at the press conference.", + "pos": "adjective", + "word_frequency": 12968 + }, + { + "word": "acidità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acidity", + "romanization": "acidità", + "example_sentence_native": "Il limone ha un'alta acidità.", + "example_sentence_english": "Lemon has high acidity.", + "pos": "noun", + "word_frequency": 12969 + }, + { + "word": "affascinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fascinate;to charm", + "romanization": "affascinare", + "example_sentence_native": "La sua storia mi ha affascinato.", + "example_sentence_english": "His story fascinated me.", + "pos": "verb", + "word_frequency": 12970 + }, + { + "word": "alert", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alert", + "romanization": "alert", + "example_sentence_native": "Abbiamo ricevuto un alert meteo per la tempesta.", + "example_sentence_english": "We received a weather alert for the storm.", + "pos": "noun", + "word_frequency": 12971 + }, + { + "word": "allargato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widened;enlarged", + "romanization": "allargato", + "example_sentence_native": "Hanno un cerchio di amici allargato.", + "example_sentence_english": "They have an enlarged circle of friends.", + "pos": "adjective", + "word_frequency": 12974 + }, + { + "word": "allestito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set up;prepared;arranged", + "romanization": "allestito", + "example_sentence_native": "Lo stand è stato allestito per la fiera.", + "example_sentence_english": "The stand was set up for the fair.", + "pos": "adjective", + "word_frequency": 12975 + }, + { + "word": "ammazzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "killed;exhausted", + "romanization": "ammazzato", + "example_sentence_native": "Era ammazzato dalla stanchezza dopo il lavoro.", + "example_sentence_english": "He was exhausted from tiredness after work.", + "pos": "adjective", + "word_frequency": 12977 + }, + { + "word": "amorevole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loving;affectionate", + "romanization": "amorevole", + "example_sentence_native": "Ha un atteggiamento molto amorevole verso i suoi figli.", + "example_sentence_english": "She has a very loving attitude towards her children.", + "pos": "adjective", + "word_frequency": 12978 + }, + { + "word": "analfabeta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illiterate (person)", + "romanization": "analfabeta", + "example_sentence_native": "Molti anziani in passato erano analfabeta.", + "example_sentence_english": "Many elderly people in the past were illiterate.", + "pos": "noun", + "word_frequency": 12979 + }, + { + "word": "approdare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to land;to arrive", + "romanization": "approdare", + "example_sentence_native": "La nave è approdata al porto.", + "example_sentence_english": "The ship landed at the port.", + "pos": "verb", + "word_frequency": 12982 + }, + { + "word": "archeologo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "archeologist", + "romanization": "archeologo", + "example_sentence_native": "L'archeologo ha scoperto antiche rovine.", + "example_sentence_english": "The archaeologist discovered ancient ruins.", + "pos": "noun", + "word_frequency": 12983 + }, + { + "word": "arricchito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enriched;made rich", + "romanization": "arricchito", + "example_sentence_native": "Il terreno è stato arricchito con fertilizzante.", + "example_sentence_english": "The soil has been enriched with fertilizer.", + "pos": "adjective", + "word_frequency": 12985 + }, + { + "word": "astronave", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spaceship", + "romanization": "astronave", + "example_sentence_native": "L'astronave è atterrata su un pianeta sconosciuto.", + "example_sentence_english": "The spaceship landed on an unknown planet.", + "pos": "noun", + "word_frequency": 12987 + }, + { + "word": "barbone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "homeless person;tramp", + "romanization": "barbone", + "example_sentence_native": "Un barbone dormiva sulla panchina del parco.", + "example_sentence_english": "A homeless person was sleeping on the park bench.", + "pos": "noun", + "word_frequency": 12991 + }, + { + "word": "calorico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caloric;high-calorie", + "romanization": "calorico", + "example_sentence_native": "Questo dolce è molto calorico.", + "example_sentence_english": "This dessert is very caloric.", + "pos": "adjective", + "word_frequency": 12994 + }, + { + "word": "canestro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basket;hoop", + "romanization": "canestro", + "example_sentence_native": "Ha fatto un canestro da tre punti.", + "example_sentence_english": "He made a three-point basket.", + "pos": "noun", + "word_frequency": 12995 + }, + { + "word": "capezzolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nipple", + "romanization": "capezzolo", + "example_sentence_native": "Il neonato ha cercato il capezzolo della madre.", + "example_sentence_english": "The newborn sought its mother's nipple.", + "pos": "noun", + "word_frequency": 12996 + }, + { + "word": "carente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lacking;deficient", + "romanization": "carente", + "example_sentence_native": "La sua dieta è carente di vitamine.", + "example_sentence_english": "His diet is deficient in vitamins.", + "pos": "adjective", + "word_frequency": 12998 + }, + { + "word": "caricato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loaded;charged;uploaded", + "romanization": "caricato", + "example_sentence_native": "Il fucile era caricato e pronto all'uso.", + "example_sentence_english": "The rifle was loaded and ready for use.", + "pos": "adjective", + "word_frequency": 12999 + }, + { + "word": "cesareo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Caesarean", + "romanization": "cesareo", + "example_sentence_native": "Il parto cesareo è un intervento chirurgico.", + "example_sentence_english": "The Caesarean birth is a surgical procedure.", + "pos": "adjective", + "word_frequency": 13000 + }, + { + "word": "chiudersi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to close oneself;to shut oneself in", + "romanization": "chiudersi", + "example_sentence_native": "La porta si è chiusa da sola.", + "example_sentence_english": "The door closed by itself.", + "pos": "verb", + "word_frequency": 13001 + }, + { + "word": "cinghia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strap;belt", + "romanization": "cinghia", + "example_sentence_native": "Ho dovuto stringere la cinghia per far quadrare i conti.", + "example_sentence_english": "I had to tighten my belt to make ends meet.", + "pos": "noun", + "word_frequency": 13002 + }, + { + "word": "cliccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clicked", + "romanization": "cliccato", + "example_sentence_native": "Il link cliccato ha aperto una nuova pagina.", + "example_sentence_english": "The clicked link opened a new page.", + "pos": "adjective", + "word_frequency": 13003 + }, + { + "word": "cliché", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cliché", + "romanization": "cliché", + "example_sentence_native": "La sua storia era piena di cliché.", + "example_sentence_english": "His story was full of clichés.", + "pos": "noun", + "word_frequency": 13004 + }, + { + "word": "coccola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cuddle;pampering", + "romanization": "coccola", + "example_sentence_native": "Ai bambini piacciono le coccole.", + "example_sentence_english": "Children like cuddles.", + "pos": "noun", + "word_frequency": 13005 + }, + { + "word": "coinquilino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flatmate;housemate", + "romanization": "coinquilino", + "example_sentence_native": "Il mio coinquilino è molto ordinato.", + "example_sentence_english": "My flatmate is very tidy.", + "pos": "noun", + "word_frequency": 13006 + }, + { + "word": "combo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combo;combination", + "romanization": "combo", + "example_sentence_native": "Ho ordinato una combo di hamburger e patatine.", + "example_sentence_english": "I ordered a burger and fries combo.", + "pos": "noun", + "word_frequency": 13007 + }, + { + "word": "committee", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "committee", + "romanization": "committee", + "example_sentence_native": "Il committee si riunirà la prossima settimana.", + "example_sentence_english": "The committee will meet next week.", + "pos": "noun", + "word_frequency": 13008 + }, + { + "word": "consumato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worn out;consumed", + "romanization": "consumato", + "example_sentence_native": "Le scarpe erano ormai consumate.", + "example_sentence_english": "The shoes were now worn out.", + "pos": "adjective", + "word_frequency": 13009 + }, + { + "word": "continuato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continuous;continued", + "romanization": "continuato", + "example_sentence_native": "Ha avuto un successo continuato per anni.", + "example_sentence_english": "He had continuous success for years.", + "pos": "adjective", + "word_frequency": 13010 + }, + { + "word": "coppola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flat cap;coppola", + "romanization": "coppola", + "example_sentence_native": "Indossava una vecchia coppola di lana.", + "example_sentence_english": "He was wearing an old wool flat cap.", + "pos": "noun", + "word_frequency": 13011 + }, + { + "word": "crearsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to create for oneself;to arise", + "romanization": "crearsi", + "example_sentence_native": "Si è creata una situazione difficile.", + "example_sentence_english": "A difficult situation has arisen.", + "pos": "verb", + "word_frequency": 13012 + }, + { + "word": "crocetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small cross;tick mark", + "romanization": "crocetta", + "example_sentence_native": "Metti una crocetta sulla risposta corretta.", + "example_sentence_english": "Put a tick mark on the correct answer.", + "pos": "noun", + "word_frequency": 13013 + }, + { + "word": "decorrere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to run (of time);to elapse", + "romanization": "decorrere", + "example_sentence_native": "Il termine per la presentazione della domanda decorre da oggi.", + "example_sentence_english": "The deadline for submitting the application runs from today.", + "pos": "verb", + "word_frequency": 13014 + }, + { + "word": "deviato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deviated;diverted", + "romanization": "deviato", + "example_sentence_native": "Il traffico è stato deviato a causa dei lavori.", + "example_sentence_english": "Traffic was diverted due to the works.", + "pos": "adjective", + "word_frequency": 13022 + }, + { + "word": "dinamo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dynamo", + "romanization": "dinamo", + "example_sentence_native": "La dinamo genera elettricità.", + "example_sentence_english": "The dynamo generates electricity.", + "pos": "noun", + "word_frequency": 13023 + }, + { + "word": "diocesano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diocesan", + "romanization": "diocesano", + "example_sentence_native": "Il vescovo ha partecipato al consiglio diocesano.", + "example_sentence_english": "The bishop participated in the diocesan council.", + "pos": "adjective", + "word_frequency": 13024 + }, + { + "word": "disappunto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappointment;chagrin", + "romanization": "disappunto", + "example_sentence_native": "Ha espresso il suo disappunto per la decisione.", + "example_sentence_english": "He expressed his disappointment with the decision.", + "pos": "noun", + "word_frequency": 13025 + }, + { + "word": "discendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to descend;to come down", + "romanization": "discendere", + "example_sentence_native": "Dobbiamo discendere la montagna prima del tramonto.", + "example_sentence_english": "We must descend the mountain before sunset.", + "pos": "verb", + "word_frequency": 13026 + }, + { + "word": "discretamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discreetly;fairly;reasonably", + "romanization": "discretamente", + "example_sentence_native": "Ha risposto discretamente alle domande.", + "example_sentence_english": "He answered the questions discreetly.", + "pos": "adverb", + "word_frequency": 13027 + }, + { + "word": "disonesto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dishonest", + "romanization": "disonesto", + "example_sentence_native": "È stato un comportamento disonesto.", + "example_sentence_english": "It was dishonest behavior.", + "pos": "adjective", + "word_frequency": 13028 + }, + { + "word": "distorto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distorted;twisted", + "romanization": "distorto", + "example_sentence_native": "L'immagine sullo schermo era distorta.", + "example_sentence_english": "The image on the screen was distorted.", + "pos": "adjective", + "word_frequency": 13029 + }, + { + "word": "epatite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hepatitis", + "romanization": "epatite", + "example_sentence_native": "L'epatite è un'infiammazione del fegato.", + "example_sentence_english": "Hepatitis is an inflammation of the liver.", + "pos": "noun", + "word_frequency": 13032 + }, + { + "word": "esaltazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exaltation;excitement", + "romanization": "esaltazione", + "example_sentence_native": "L'esaltazione per la vittoria era palpabile.", + "example_sentence_english": "The excitement for the victory was palpable.", + "pos": "noun", + "word_frequency": 13033 + }, + { + "word": "esplorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explored", + "romanization": "esplorato", + "example_sentence_native": "Hanno esplorato territori sconosciuti.", + "example_sentence_english": "They explored unknown territories.", + "pos": "adjective", + "word_frequency": 13034 + }, + { + "word": "esternamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "externally;outwardly", + "romanization": "esternamente", + "example_sentence_native": "La casa sembra piccola esternamente.", + "example_sentence_english": "The house looks small externally.", + "pos": "adverb", + "word_frequency": 13035 + }, + { + "word": "euforia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "euphoria", + "romanization": "euforia", + "example_sentence_native": "Era in uno stato di euforia dopo la notizia.", + "example_sentence_english": "He was in a state of euphoria after the news.", + "pos": "noun", + "word_frequency": 13036 + }, + { + "word": "extracomunitario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "non-EU (citizen);from outside the EU", + "romanization": "extracomunitario", + "example_sentence_native": "Molti lavoratori extracomunitari vivono in questa città.", + "example_sentence_english": "Many non-EU workers live in this city.", + "pos": "adjective", + "word_frequency": 13037 + }, + { + "word": "ferretto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underwire;small iron rod", + "romanization": "ferretto", + "example_sentence_native": "Il ferretto del reggiseno mi dava fastidio.", + "example_sentence_english": "The underwire of the bra was bothering me.", + "pos": "noun", + "word_frequency": 13039 + }, + { + "word": "frequentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attendance;frequenting;dating", + "romanization": "frequentazione", + "example_sentence_native": "La sua frequentazione di certi ambienti è preoccupante.", + "example_sentence_english": "His frequenting of certain environments is worrying.", + "pos": "noun", + "word_frequency": 13042 + }, + { + "word": "galleggiante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floating", + "romanization": "galleggiante", + "example_sentence_native": "Il legno è un materiale galleggiante.", + "example_sentence_english": "Wood is a floating material.", + "pos": "adjective", + "word_frequency": 13044 + }, + { + "word": "gambero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shrimp;prawn", + "romanization": "gambero", + "example_sentence_native": "Mi piacciono gli spaghetti ai gamberi.", + "example_sentence_english": "I like shrimp spaghetti.", + "pos": "noun", + "word_frequency": 13046 + }, + { + "word": "germe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "germ;sprout", + "romanization": "germe", + "example_sentence_native": "Lavatevi le mani per eliminare i germi.", + "example_sentence_english": "Wash your hands to eliminate germs.", + "pos": "noun", + "word_frequency": 13049 + }, + { + "word": "giovare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to benefit;to be useful", + "romanization": "giovare", + "example_sentence_native": "Questo riposo ti gioverà molto.", + "example_sentence_english": "This rest will benefit you greatly.", + "pos": "verb", + "word_frequency": 13050 + }, + { + "word": "giretto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "short walk;little tour", + "romanization": "giretto", + "example_sentence_native": "Facciamo un giretto in centro?", + "example_sentence_english": "Shall we take a short walk downtown?", + "pos": "noun", + "word_frequency": 13051 + }, + { + "word": "giudiziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "judicial", + "romanization": "giudiziale", + "example_sentence_native": "Hanno avviato un'azione giudiziale.", + "example_sentence_english": "They initiated a judicial action.", + "pos": "adjective", + "word_frequency": 13052 + }, + { + "word": "grinta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grit;determination;spunk", + "romanization": "grinta", + "example_sentence_native": "Ha dimostrato una grande grinta in campo.", + "example_sentence_english": "He showed great grit on the field.", + "pos": "noun", + "word_frequency": 13055 + }, + { + "word": "impazienza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impatience", + "romanization": "impazienza", + "example_sentence_native": "L'attesa gli causava grande impazienza.", + "example_sentence_english": "The wait caused him great impatience.", + "pos": "noun", + "word_frequency": 13059 + }, + { + "word": "impazzito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;gone mad", + "romanization": "impazzito", + "example_sentence_native": "È impazzito dal dolore.", + "example_sentence_english": "He went crazy from pain.", + "pos": "adjective", + "word_frequency": 13060 + }, + { + "word": "indebito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undue;improper", + "romanization": "indebito", + "example_sentence_native": "Ha ricevuto un vantaggio indebito.", + "example_sentence_english": "He received an undue advantage.", + "pos": "adjective", + "word_frequency": 13061 + }, + { + "word": "indignato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indignant;outraged", + "romanization": "indignato", + "example_sentence_native": "Era indignato per l'ingiustizia.", + "example_sentence_english": "He was indignant about the injustice.", + "pos": "adjective", + "word_frequency": 13062 + }, + { + "word": "infastidito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoyed;bothered", + "romanization": "infastidito", + "example_sentence_native": "Sono infastidito dal rumore.", + "example_sentence_english": "I am annoyed by the noise.", + "pos": "adjective", + "word_frequency": 13063 + }, + { + "word": "ingrassare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gain weight;to get fat", + "romanization": "ingrassare", + "example_sentence_native": "Ho paura di ingrassare se mangio troppo.", + "example_sentence_english": "I'm afraid of gaining weight if I eat too much.", + "pos": "verb", + "word_frequency": 13065 + }, + { + "word": "innato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "innate;inborn", + "romanization": "innato", + "example_sentence_native": "Ha un talento innato per la musica.", + "example_sentence_english": "He has an innate talent for music.", + "pos": "adjective", + "word_frequency": 13066 + }, + { + "word": "inquietudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restlessness;uneasiness;anxiety", + "romanization": "inquietudine", + "example_sentence_native": "Sentiva una profonda inquietudine.", + "example_sentence_english": "He felt a deep uneasiness.", + "pos": "noun", + "word_frequency": 13067 + }, + { + "word": "insegnato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "taught", + "romanization": "insegnato", + "example_sentence_native": "Questo è ciò che mi è stato insegnato.", + "example_sentence_english": "This is what I was taught.", + "pos": "adjective", + "word_frequency": 13068 + }, + { + "word": "interessamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interest;concern", + "romanization": "interessamento", + "example_sentence_native": "Grazie per il tuo interessamento.", + "example_sentence_english": "Thank you for your interest.", + "pos": "noun", + "word_frequency": 13069 + }, + { + "word": "inutilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uselessness;futility", + "romanization": "inutilità", + "example_sentence_native": "Ha capito l'inutilità dei suoi sforzi.", + "example_sentence_english": "He understood the uselessness of his efforts.", + "pos": "noun", + "word_frequency": 13070 + }, + { + "word": "invecchiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aged;old (looking)", + "romanization": "invecchiato", + "example_sentence_native": "Sembra molto invecchiato dopo la malattia.", + "example_sentence_english": "He looks very aged after the illness.", + "pos": "adjective", + "word_frequency": 13071 + }, + { + "word": "livido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bruise", + "romanization": "livido", + "example_sentence_native": "Dopo la caduta, aveva un livido sul ginocchio.", + "example_sentence_english": "After the fall, he had a bruise on his knee.", + "pos": "noun", + "word_frequency": 13080 + }, + { + "word": "microscopio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "microscope", + "romanization": "microscopio", + "example_sentence_native": "Gli scienziati usano il microscopio per osservare le cellule.", + "example_sentence_english": "Scientists use the microscope to observe cells.", + "pos": "noun", + "word_frequency": 13082 + }, + { + "word": "nuvoloso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cloudy", + "romanization": "nuvoloso", + "example_sentence_native": "Oggi il cielo è molto nuvoloso.", + "example_sentence_english": "Today the sky is very cloudy.", + "pos": "adjective", + "word_frequency": 13089 + }, + { + "word": "obesità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obesity", + "romanization": "obesità", + "example_sentence_native": "L'obesità è un problema di salute crescente.", + "example_sentence_english": "Obesity is a growing health problem.", + "pos": "noun", + "word_frequency": 13090 + }, + { + "word": "osceno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obscene", + "romanization": "osceno", + "example_sentence_native": "Il linguaggio usato era osceno e inappropriato.", + "example_sentence_english": "The language used was obscene and inappropriate.", + "pos": "adjective", + "word_frequency": 13093 + }, + { + "word": "ospitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hosted", + "romanization": "ospitato", + "example_sentence_native": "L'evento è stato ospitato in un bellissimo palazzo.", + "example_sentence_english": "The event was hosted in a beautiful palace.", + "pos": "adjective", + "word_frequency": 13094 + }, + { + "word": "output", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "output", + "romanization": "output", + "example_sentence_native": "Dobbiamo analizzare l'output del processo.", + "example_sentence_english": "We need to analyze the output of the process.", + "pos": "noun", + "word_frequency": 13095 + }, + { + "word": "panel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "panel", + "romanization": "panel", + "example_sentence_native": "Il panel di esperti ha discusso la questione.", + "example_sentence_english": "The panel of experts discussed the issue.", + "pos": "noun", + "word_frequency": 13098 + }, + { + "word": "parare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to parry;to ward off", + "romanization": "parare", + "example_sentence_native": "Il portiere è riuscito a parare il tiro.", + "example_sentence_english": "The goalkeeper managed to parry the shot.", + "pos": "verb", + "word_frequency": 13100 + }, + { + "word": "pecca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flaw;defect", + "romanization": "pecca", + "example_sentence_native": "Ogni sistema ha le sue pecche.", + "example_sentence_english": "Every system has its flaws.", + "pos": "noun", + "word_frequency": 13101 + }, + { + "word": "peggiorato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "worsened;deteriorated", + "romanization": "peggiorato", + "example_sentence_native": "La situazione è peggiorata rapidamente.", + "example_sentence_english": "The situation has rapidly worsened.", + "pos": "adjective", + "word_frequency": 13102 + }, + { + "word": "penalmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminally", + "romanization": "penalmente", + "example_sentence_native": "Sarà perseguito penalmente per le sue azioni.", + "example_sentence_english": "He will be criminally prosecuted for his actions.", + "pos": "adverb", + "word_frequency": 13103 + }, + { + "word": "penitenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penance", + "romanization": "penitenza", + "example_sentence_native": "Il sacerdote gli ha dato una penitenza.", + "example_sentence_english": "The priest gave him a penance.", + "pos": "noun", + "word_frequency": 13104 + }, + { + "word": "pensionamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retirement", + "romanization": "pensionamento", + "example_sentence_native": "Il suo pensionamento è previsto per l'anno prossimo.", + "example_sentence_english": "His retirement is scheduled for next year.", + "pos": "noun", + "word_frequency": 13105 + }, + { + "word": "piercing", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piercing", + "romanization": "piercing", + "example_sentence_native": "Ha un nuovo piercing al naso.", + "example_sentence_english": "She has a new nose piercing.", + "pos": "noun", + "word_frequency": 13107 + }, + { + "word": "pietoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitiful;merciful", + "romanization": "pietoso", + "example_sentence_native": "Ha fatto un tentativo pietoso di scusarsi.", + "example_sentence_english": "He made a pitiful attempt to apologize.", + "pos": "adjective", + "word_frequency": 13109 + }, + { + "word": "pranzare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to have lunch", + "romanization": "pranzare", + "example_sentence_native": "Di solito pranzo alle dodici e mezza.", + "example_sentence_english": "I usually have lunch at half past twelve.", + "pos": "verb", + "word_frequency": 13112 + }, + { + "word": "precetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precept;rule", + "romanization": "precetto", + "example_sentence_native": "Ha agito secondo i precetti della legge.", + "example_sentence_english": "He acted according to the precepts of the law.", + "pos": "noun", + "word_frequency": 13113 + }, + { + "word": "priore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prior", + "romanization": "priore", + "example_sentence_native": "Il priore del monastero ha accolto i visitatori.", + "example_sentence_english": "The prior of the monastery welcomed the visitors.", + "pos": "noun", + "word_frequency": 13114 + }, + { + "word": "quarantina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarantine", + "romanization": "quarantina", + "example_sentence_native": "Hanno messo l'intera città in quarantina.", + "example_sentence_english": "They put the entire city in quarantine.", + "pos": "noun", + "word_frequency": 13116 + }, + { + "word": "quinquennale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "five-year (plan;period)", + "romanization": "quinquennale", + "example_sentence_native": "Il piano quinquennale è stato approvato.", + "example_sentence_english": "The five-year plan was approved.", + "pos": "adjective", + "word_frequency": 13117 + }, + { + "word": "quorum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quorum", + "romanization": "quorum", + "example_sentence_native": "Non c'era il quorum necessario per la votazione.", + "example_sentence_english": "There wasn't the necessary quorum for the vote.", + "pos": "noun", + "word_frequency": 13118 + }, + { + "word": "rafforzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strengthened;reinforced", + "romanization": "rafforzato", + "example_sentence_native": "La sicurezza è stata rafforzata dopo l'incidente.", + "example_sentence_english": "Security was strengthened after the incident.", + "pos": "adjective", + "word_frequency": 13119 + }, + { + "word": "rallentato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slowed down;delayed", + "romanization": "rallentato", + "example_sentence_native": "Il traffico era rallentato a causa dell'incidente.", + "example_sentence_english": "The traffic was slowed down due to the accident.", + "pos": "adjective", + "word_frequency": 13120 + }, + { + "word": "referto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "report;medical report", + "romanization": "referto", + "example_sentence_native": "Ho ritirato il referto delle analisi del sangue.", + "example_sentence_english": "I picked up the blood test report.", + "pos": "noun", + "word_frequency": 13121 + }, + { + "word": "regressione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regression;decline", + "romanization": "regressione", + "example_sentence_native": "Si è osservata una regressione dei sintomi dopo la terapia.", + "example_sentence_english": "A regression of symptoms was observed after the therapy.", + "pos": "noun", + "word_frequency": 13122 + }, + { + "word": "reputare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consider;to deem", + "romanization": "reputare", + "example_sentence_native": "Reputo la sua opinione molto valida.", + "example_sentence_english": "I consider his opinion very valid.", + "pos": "verb", + "word_frequency": 13124 + }, + { + "word": "rifatto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "redone;rebuilt", + "romanization": "rifatto", + "example_sentence_native": "Ha un naso rifatto.", + "example_sentence_english": "She has a redone nose.", + "pos": "adjective", + "word_frequency": 13126 + }, + { + "word": "riposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hidden;stored away", + "romanization": "riposto", + "example_sentence_native": "Ha un significato riposto.", + "example_sentence_english": "It has a hidden meaning.", + "pos": "adjective", + "word_frequency": 13128 + }, + { + "word": "risalita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascent;climb;ski lift", + "romanization": "risalita", + "example_sentence_native": "La risalita in montagna è stata faticosa.", + "example_sentence_english": "The ascent up the mountain was tiring.", + "pos": "noun", + "word_frequency": 13129 + }, + { + "word": "ritardato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delayed;late", + "romanization": "ritardato", + "example_sentence_native": "Il treno è ritardato di venti minuti.", + "example_sentence_english": "The train is delayed by twenty minutes.", + "pos": "adjective", + "word_frequency": 13130 + }, + { + "word": "schierarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take sides;to line up", + "romanization": "schierarsi", + "example_sentence_native": "È importante schierarsi dalla parte giusta.", + "example_sentence_english": "It's important to take the right side.", + "pos": "verb", + "word_frequency": 13132 + }, + { + "word": "silicone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silicone", + "romanization": "silicone", + "example_sentence_native": "Ha usato il silicone per sigillare la finestra.", + "example_sentence_english": "He used silicone to seal the window.", + "pos": "noun", + "word_frequency": 13134 + }, + { + "word": "sollecitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "requested;urged;stimulated", + "romanization": "sollecitato", + "example_sentence_native": "La risposta è stata sollecitata più volte.", + "example_sentence_english": "The answer was requested multiple times.", + "pos": "adjective", + "word_frequency": 13136 + }, + { + "word": "spacco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slit;split;cleavage", + "romanization": "spacco", + "example_sentence_native": "L'abito aveva uno spacco profondo.", + "example_sentence_english": "The dress had a deep slit.", + "pos": "noun", + "word_frequency": 13137 + }, + { + "word": "spontaneità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spontaneity", + "romanization": "spontaneità", + "example_sentence_native": "Ammiro la sua spontaneità.", + "example_sentence_english": "I admire her spontaneity.", + "pos": "noun", + "word_frequency": 13138 + }, + { + "word": "spuntino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack", + "romanization": "spuntino", + "example_sentence_native": "Ho fatto uno spuntino a metà mattina.", + "example_sentence_english": "I had a snack mid-morning.", + "pos": "noun", + "word_frequency": 13139 + }, + { + "word": "squilibrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imbalance;disequilibrium", + "romanization": "squilibrio", + "example_sentence_native": "C'è uno squilibrio tra domanda e offerta.", + "example_sentence_english": "There is an imbalance between supply and demand.", + "pos": "noun", + "word_frequency": 13140 + }, + { + "word": "stigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stigma", + "romanization": "stigma", + "example_sentence_native": "La malattia porta ancora uno stigma sociale.", + "example_sentence_english": "The illness still carries a social stigma.", + "pos": "noun", + "word_frequency": 13141 + }, + { + "word": "stimato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esteemed;estimated;valued", + "romanization": "stimato", + "example_sentence_native": "È un professionista molto stimato.", + "example_sentence_english": "He is a highly esteemed professional.", + "pos": "adjective", + "word_frequency": 13142 + }, + { + "word": "timo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thyme", + "romanization": "timo", + "example_sentence_native": "Ho aggiunto un po' di timo al sugo.", + "example_sentence_english": "I added some thyme to the sauce.", + "pos": "noun", + "word_frequency": 13148 + }, + { + "word": "transgender", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transgender (person)", + "romanization": "transgender", + "example_sentence_native": "La comunità transgender sta lottando per i propri diritti.", + "example_sentence_english": "The transgender community is fighting for its rights.", + "pos": "noun", + "word_frequency": 13151 + }, + { + "word": "trattazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discussion;treatment;dissertation", + "romanization": "trattazione", + "example_sentence_native": "La sua trattazione dell'argomento è stata esaustiva.", + "example_sentence_english": "His treatment of the topic was exhaustive.", + "pos": "noun", + "word_frequency": 13152 + }, + { + "word": "urbanizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urbanization", + "romanization": "urbanizzazione", + "example_sentence_native": "L'urbanizzazione ha portato a molti cambiamenti sociali.", + "example_sentence_english": "Urbanization has led to many social changes.", + "pos": "noun", + "word_frequency": 13153 + }, + { + "word": "vaglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scrutiny;sifting;sieve", + "romanization": "vaglio", + "example_sentence_native": "Il progetto è ancora sotto vaglio.", + "example_sentence_english": "The project is still under scrutiny.", + "pos": "noun", + "word_frequency": 13154 + }, + { + "word": "valente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "skilled;able;valiant", + "romanization": "valente", + "example_sentence_native": "È un medico molto valente.", + "example_sentence_english": "He is a very skilled doctor.", + "pos": "adjective", + "word_frequency": 13155 + }, + { + "word": "velivolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aircraft;airplane", + "romanization": "velivolo", + "example_sentence_native": "Il velivolo è atterrato in sicurezza.", + "example_sentence_english": "The aircraft landed safely.", + "pos": "noun", + "word_frequency": 13156 + }, + { + "word": "xenofobia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "xenophobia", + "romanization": "xenofobia", + "example_sentence_native": "La xenofobia è una paura irrazionale degli stranieri.", + "example_sentence_english": "Xenophobia is an irrational fear of foreigners.", + "pos": "noun", + "word_frequency": 13160 + }, + { + "word": "zelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zeal", + "romanization": "zelo", + "example_sentence_native": "Ha mostrato grande zelo nel portare a termine il progetto.", + "example_sentence_english": "He showed great zeal in completing the project.", + "pos": "noun", + "word_frequency": 13162 + }, + { + "word": "abbattuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dejected;knocked down", + "romanization": "abbattuto", + "example_sentence_native": "Si sentiva abbattuto dopo la sconfitta.", + "example_sentence_english": "He felt dejected after the defeat.", + "pos": "adjective", + "word_frequency": 13165 + }, + { + "word": "abbreviato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbreviated;shortened", + "romanization": "abbreviato", + "example_sentence_native": "Il testo è stato abbreviato per la pubblicazione.", + "example_sentence_english": "The text was abbreviated for publication.", + "pos": "adjective", + "word_frequency": 13166 + }, + { + "word": "accomunare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unite;to have in common", + "romanization": "accomunare", + "example_sentence_native": "La passione per la musica li accomuna.", + "example_sentence_english": "Their passion for music unites them.", + "pos": "verb", + "word_frequency": 13168 + }, + { + "word": "agrume", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "citrus fruit", + "romanization": "agrume", + "example_sentence_native": "L'arancia è un agrume molto popolare.", + "example_sentence_english": "The orange is a very popular citrus fruit.", + "pos": "noun", + "word_frequency": 13171 + }, + { + "word": "allergico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "allergic", + "romanization": "allergico", + "example_sentence_native": "Sono allergico alle arachidi.", + "example_sentence_english": "I am allergic to peanuts.", + "pos": "adjective", + "word_frequency": 13175 + }, + { + "word": "allucinante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hallucinating;mind-blowing;incredible", + "romanization": "allucinante", + "example_sentence_native": "Quella storia è assolutamente allucinante.", + "example_sentence_english": "That story is absolutely mind-blowing.", + "pos": "adjective", + "word_frequency": 13176 + }, + { + "word": "amatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amateur;lover (of something)", + "romanization": "amatore", + "example_sentence_native": "È un amatore d'arte, non un professionista.", + "example_sentence_english": "He is an art lover, not a professional.", + "pos": "noun", + "word_frequency": 13177 + }, + { + "word": "ampliato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlarged;expanded", + "romanization": "ampliato", + "example_sentence_native": "Il progetto è stato ampliato per includere nuove funzionalità.", + "example_sentence_english": "The project has been expanded to include new features.", + "pos": "adjective", + "word_frequency": 13178 + }, + { + "word": "annoverare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to count among;to include", + "romanization": "annoverare", + "example_sentence_native": "Possiamo annoverare questo evento tra i successi dell'anno.", + "example_sentence_english": "We can count this event among the successes of the year.", + "pos": "verb", + "word_frequency": 13180 + }, + { + "word": "anomalo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anomalous;abnormal", + "romanization": "anomalo", + "example_sentence_native": "La situazione climatica è diventata anomala.", + "example_sentence_english": "The climate situation has become anomalous.", + "pos": "adjective", + "word_frequency": 13181 + }, + { + "word": "antipasto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "appetizer;starter", + "romanization": "antipasto", + "example_sentence_native": "Per antipasto, abbiamo ordinato un tagliere di salumi.", + "example_sentence_english": "For appetizer, we ordered a platter of cured meats.", + "pos": "noun", + "word_frequency": 13182 + }, + { + "word": "arcipelago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archipelago", + "romanization": "arcipelago", + "example_sentence_native": "Le isole Eolie formano un bellissimo arcipelago.", + "example_sentence_english": "The Aeolian Islands form a beautiful archipelago.", + "pos": "noun", + "word_frequency": 13184 + }, + { + "word": "arrendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to surrender;to give up", + "romanization": "arrendere", + "example_sentence_native": "Non si deve mai arrendere di fronte alle difficoltà.", + "example_sentence_english": "One must never surrender in the face of difficulties.", + "pos": "verb", + "word_frequency": 13186 + }, + { + "word": "auspicio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omen;auspice;good wish", + "romanization": "auspicio", + "example_sentence_native": "Sotto i migliori auspici, il progetto è iniziato.", + "example_sentence_english": "Under the best auspices, the project began.", + "pos": "noun", + "word_frequency": 13189 + }, + { + "word": "babysitter", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "babysitter", + "romanization": "babysitter", + "example_sentence_native": "Abbiamo assunto una babysitter per la serata.", + "example_sentence_english": "We hired a babysitter for the evening.", + "pos": "noun", + "word_frequency": 13192 + }, + { + "word": "berretto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cap;beanie", + "romanization": "berretto", + "example_sentence_native": "Indossava un berretto di lana per proteggersi dal freddo.", + "example_sentence_english": "He wore a wool cap to protect himself from the cold.", + "pos": "noun", + "word_frequency": 13195 + }, + { + "word": "bilanciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to balance", + "romanization": "bilanciare", + "example_sentence_native": "È importante bilanciare lavoro e vita privata.", + "example_sentence_english": "It's important to balance work and private life.", + "pos": "verb", + "word_frequency": 13197 + }, + { + "word": "bipolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bipolar", + "romanization": "bipolare", + "example_sentence_native": "Il disturbo bipolare è una condizione complessa.", + "example_sentence_english": "Bipolar disorder is a complex condition.", + "pos": "adjective", + "word_frequency": 13198 + }, + { + "word": "canton", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canton;district", + "romanization": "canton", + "example_sentence_native": "Ogni canton ha le sue leggi e tradizioni.", + "example_sentence_english": "Each canton has its own laws and traditions.", + "pos": "noun", + "word_frequency": 13200 + }, + { + "word": "cappa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hood;cape;extractor hood", + "romanization": "cappa", + "example_sentence_native": "La cappa della cucina aspira i fumi di cottura.", + "example_sentence_english": "The kitchen hood extracts cooking fumes.", + "pos": "noun", + "word_frequency": 13201 + }, + { + "word": "cardinal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardinal", + "romanization": "cardinal", + "example_sentence_native": "Il cardinale ha presieduto la cerimonia religiosa.", + "example_sentence_english": "The cardinal presided over the religious ceremony.", + "pos": "noun", + "word_frequency": 13202 + }, + { + "word": "cassonetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dumpster;roller shutter box", + "romanization": "cassonetto", + "example_sentence_native": "Butta la spazzatura nel cassonetto giallo per la plastica.", + "example_sentence_english": "Throw the trash in the yellow dumpster for plastic.", + "pos": "noun", + "word_frequency": 13205 + }, + { + "word": "cioccolatino", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "chocolate candy;praline", + "romanization": "cioccolatino", + "example_sentence_native": "Ho mangiato un cioccolatino dopo pranzo.", + "example_sentence_english": "I ate a chocolate candy after lunch.", + "pos": "noun", + "word_frequency": 13207 + }, + { + "word": "coltivato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cultivated;grown", + "romanization": "coltivato", + "example_sentence_native": "Il campo è stato ben coltivato quest'anno.", + "example_sentence_english": "The field has been well cultivated this year.", + "pos": "adjective", + "word_frequency": 13208 + }, + { + "word": "consacrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consecration;dedication", + "romanization": "consacrazione", + "example_sentence_native": "La consacrazione della nuova chiesa avverrà domenica.", + "example_sentence_english": "The consecration of the new church will take place on Sunday.", + "pos": "noun", + "word_frequency": 13209 + }, + { + "word": "correttore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "corrector;concealer;proofreader", + "romanization": "correttore", + "example_sentence_native": "Ho usato il correttore per eliminare gli errori nel testo.", + "example_sentence_english": "I used the corrector to eliminate errors in the text.", + "pos": "noun", + "word_frequency": 13210 + }, + { + "word": "danzare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to dance", + "romanization": "danzare", + "example_sentence_native": "Mi piace danzare al ritmo della musica latina.", + "example_sentence_english": "I like to dance to the rhythm of Latin music.", + "pos": "verb", + "word_frequency": 13213 + }, + { + "word": "delinquenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delinquency;crime", + "romanization": "delinquenza", + "example_sentence_native": "La delinquenza giovanile è un problema sociale complesso.", + "example_sentence_english": "Youth delinquency is a complex social problem.", + "pos": "noun", + "word_frequency": 13215 + }, + { + "word": "dialettale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dialectal", + "romanization": "dialettale", + "example_sentence_native": "Ha un accento molto dialettale, tipico della sua regione.", + "example_sentence_english": "He has a very dialectal accent, typical of his region.", + "pos": "adjective", + "word_frequency": 13220 + }, + { + "word": "didascalia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caption;subtitle;stage direction", + "romanization": "didascalia", + "example_sentence_native": "La didascalia sotto la foto spiega il contesto.", + "example_sentence_english": "The caption under the photo explains the context.", + "pos": "noun", + "word_frequency": 13221 + }, + { + "word": "dinamismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dynamism", + "romanization": "dinamismo", + "example_sentence_native": "Il suo dinamismo è ammirevole e contagioso.", + "example_sentence_english": "His dynamism is admirable and contagious.", + "pos": "noun", + "word_frequency": 13223 + }, + { + "word": "dispari", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "odd;uneven", + "romanization": "dispari", + "example_sentence_native": "I numeri dispari non sono divisibili per due.", + "example_sentence_english": "Odd numbers are not divisible by two.", + "pos": "adjective", + "word_frequency": 13224 + }, + { + "word": "dominicano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dominican", + "romanization": "dominicano", + "example_sentence_native": "Ha visitato la Repubblica Dominicana l'anno scorso.", + "example_sentence_english": "He visited the Dominican Republic last year.", + "pos": "adjective", + "word_frequency": 13225 + }, + { + "word": "elmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helmet", + "romanization": "elmo", + "example_sentence_native": "Il cavaliere indossava un elmo di ferro lucido.", + "example_sentence_english": "The knight wore a shiny iron helmet.", + "pos": "noun", + "word_frequency": 13228 + }, + { + "word": "emerso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emerged;surfaced", + "romanization": "emerso", + "example_sentence_native": "La verità è finalmente emersa dopo anni di indagini.", + "example_sentence_english": "The truth finally emerged after years of investigation.", + "pos": "adjective", + "word_frequency": 13230 + }, + { + "word": "entusiasmante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exciting;thrilling", + "romanization": "entusiasmante", + "example_sentence_native": "È stata un'esperienza davvero entusiasmante e indimenticabile.", + "example_sentence_english": "It was a truly exciting and unforgettable experience.", + "pos": "adjective", + "word_frequency": 13232 + }, + { + "word": "etimologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "etymology", + "romanization": "etimologia", + "example_sentence_native": "L'etimologia di questa parola è molto complessa.", + "example_sentence_english": "The etymology of this word is very complex.", + "pos": "noun", + "word_frequency": 13233 + }, + { + "word": "federalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federalism", + "romanization": "federalismo", + "example_sentence_native": "Il federalismo è un sistema politico che distribuisce il potere.", + "example_sentence_english": "Federalism is a political system that distributes power.", + "pos": "noun", + "word_frequency": 13236 + }, + { + "word": "femminilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "femininity", + "romanization": "femminilità", + "example_sentence_native": "La sua eleganza e femminilità sono innegabili.", + "example_sentence_english": "Her elegance and femininity are undeniable.", + "pos": "noun", + "word_frequency": 13237 + }, + { + "word": "fesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiot;fool", + "romanization": "fesso", + "example_sentence_native": "Non fare il fesso, pensa prima di agire!", + "example_sentence_english": "Don't be an idiot, think before you act!", + "pos": "noun", + "word_frequency": 13238 + }, + { + "word": "gazebo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gazebo", + "romanization": "gazebo", + "example_sentence_native": "Ci siamo seduti nel gazebo per ripararci dal sole.", + "example_sentence_english": "We sat in the gazebo to shelter from the sun.", + "pos": "noun", + "word_frequency": 13240 + }, + { + "word": "giada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jade", + "romanization": "giada", + "example_sentence_native": "Ha un bellissimo ciondolo di giada.", + "example_sentence_english": "She has a beautiful jade pendant.", + "pos": "noun", + "word_frequency": 13242 + }, + { + "word": "imprevisto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unforeseen event", + "romanization": "imprevisto", + "example_sentence_native": "C'è stato un imprevisto e siamo dovuti ripartire.", + "example_sentence_english": "There was an unforeseen event and we had to leave again.", + "pos": "noun", + "word_frequency": 13251 + }, + { + "word": "inattività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inactivity", + "romanization": "inattività", + "example_sentence_native": "L'inattività fisica può portare a problemi di salute.", + "example_sentence_english": "Physical inactivity can lead to health problems.", + "pos": "noun", + "word_frequency": 13252 + }, + { + "word": "incondizionato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconditional", + "romanization": "incondizionato", + "example_sentence_native": "Il suo amore per i figli è incondizionato.", + "example_sentence_english": "His love for his children is unconditional.", + "pos": "adjective", + "word_frequency": 13253 + }, + { + "word": "incursione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incursion", + "romanization": "incursione", + "example_sentence_native": "Hanno fatto un'incursione nel territorio nemico.", + "example_sentence_english": "They made an incursion into enemy territory.", + "pos": "noun", + "word_frequency": 13254 + }, + { + "word": "indecente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indecent", + "romanization": "indecente", + "example_sentence_native": "Il suo comportamento è stato assolutamente indecente.", + "example_sentence_english": "His behavior was absolutely indecent.", + "pos": "adjective", + "word_frequency": 13255 + }, + { + "word": "indiscutibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indisputable", + "romanization": "indiscutibile", + "example_sentence_native": "La sua bravura è indiscutibile.", + "example_sentence_english": "His skill is indisputable.", + "pos": "adjective", + "word_frequency": 13256 + }, + { + "word": "innalzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raised", + "romanization": "innalzato", + "example_sentence_native": "Il livello dell'acqua si è innalzato rapidamente.", + "example_sentence_english": "The water level rose rapidly.", + "pos": "adjective", + "word_frequency": 13257 + }, + { + "word": "innocuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmless", + "romanization": "innocuo", + "example_sentence_native": "Non preoccuparti, è un serpente innocuo.", + "example_sentence_english": "Don't worry, it's a harmless snake.", + "pos": "adjective", + "word_frequency": 13258 + }, + { + "word": "inquadrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to frame", + "romanization": "inquadrare", + "example_sentence_native": "Devi inquadrare meglio il soggetto nella foto.", + "example_sentence_english": "You need to frame the subject better in the photo.", + "pos": "verb", + "word_frequency": 13259 + }, + { + "word": "inquadratura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "framing", + "romanization": "inquadratura", + "example_sentence_native": "L'inquadratura di quel film era perfetta.", + "example_sentence_english": "The framing of that film was perfect.", + "pos": "noun", + "word_frequency": 13260 + }, + { + "word": "insorgere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arise", + "romanization": "insorgere", + "example_sentence_native": "Nuovi problemi possono insorgere in qualsiasi momento.", + "example_sentence_english": "New problems can arise at any time.", + "pos": "verb", + "word_frequency": 13261 + }, + { + "word": "insorto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurgent", + "romanization": "insorto", + "example_sentence_native": "Gli insorti hanno preso il controllo della città.", + "example_sentence_english": "The insurgents took control of the city.", + "pos": "noun", + "word_frequency": 13262 + }, + { + "word": "intrinseco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrinsic", + "romanization": "intrinseco", + "example_sentence_native": "Il valore intrinseco dell'opera è inestimabile.", + "example_sentence_english": "The intrinsic value of the work is inestimable.", + "pos": "adjective", + "word_frequency": 13263 + }, + { + "word": "lamina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheet", + "romanization": "lamina", + "example_sentence_native": "La finestra era protetta da una sottile lamina di metallo.", + "example_sentence_english": "The window was protected by a thin sheet of metal.", + "pos": "noun", + "word_frequency": 13266 + }, + { + "word": "leggibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legible", + "romanization": "leggibile", + "example_sentence_native": "La sua scrittura è molto leggibile.", + "example_sentence_english": "His handwriting is very legible.", + "pos": "adjective", + "word_frequency": 13268 + }, + { + "word": "letterato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "man of letters", + "romanization": "letterato", + "example_sentence_native": "Era un letterato di grande fama.", + "example_sentence_english": "He was a man of letters of great renown.", + "pos": "noun", + "word_frequency": 13269 + }, + { + "word": "maga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorceress", + "romanization": "maga", + "example_sentence_native": "La maga ha lanciato un incantesimo.", + "example_sentence_english": "The sorceress cast a spell.", + "pos": "noun", + "word_frequency": 13272 + }, + { + "word": "maturare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ripen", + "romanization": "maturare", + "example_sentence_native": "Le ciliegie stanno maturando al sole.", + "example_sentence_english": "The cherries are ripening in the sun.", + "pos": "verb", + "word_frequency": 13274 + }, + { + "word": "mausoleo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mausoleum", + "romanization": "mausoleo", + "example_sentence_native": "Hanno visitato il mausoleo dell'imperatore.", + "example_sentence_english": "They visited the emperor's mausoleum.", + "pos": "noun", + "word_frequency": 13275 + }, + { + "word": "mediocrità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mediocrity", + "romanization": "mediocrità", + "example_sentence_native": "Non si accontenta della mediocrità.", + "example_sentence_english": "He is not content with mediocrity.", + "pos": "noun", + "word_frequency": 13276 + }, + { + "word": "melone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "melon", + "romanization": "melone", + "example_sentence_native": "Mi piace mangiare il melone d'estate.", + "example_sentence_english": "I like to eat melon in summer.", + "pos": "noun", + "word_frequency": 13278 + }, + { + "word": "nascondiglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiding place", + "romanization": "nascondiglio", + "example_sentence_native": "Il bambino ha trovato un buon nascondiglio durante il gioco.", + "example_sentence_english": "The child found a good hiding place during the game.", + "pos": "noun", + "word_frequency": 13280 + }, + { + "word": "nudità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nudity", + "romanization": "nudità", + "example_sentence_native": "L'artista ha rappresentato la nudità in modo delicato.", + "example_sentence_english": "The artist represented nudity in a delicate way.", + "pos": "noun", + "word_frequency": 13285 + }, + { + "word": "oblio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oblivion", + "romanization": "oblio", + "example_sentence_native": "Molti ricordi sono caduti nell'oblio.", + "example_sentence_english": "Many memories have fallen into oblivion.", + "pos": "noun", + "word_frequency": 13286 + }, + { + "word": "operatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operative;surgical", + "romanization": "operatorio", + "example_sentence_native": "La sala operatoria è pronta per l'intervento.", + "example_sentence_english": "The operating room is ready for the surgery.", + "pos": "adjective", + "word_frequency": 13289 + }, + { + "word": "oroscopo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horoscope", + "romanization": "oroscopo", + "example_sentence_native": "Leggo sempre il mio oroscopo la mattina.", + "example_sentence_english": "I always read my horoscope in the morning.", + "pos": "noun", + "word_frequency": 13290 + }, + { + "word": "ortaggio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "vegetable", + "romanization": "ortaggio", + "example_sentence_native": "È importante mangiare molti ortaggi ogni giorno.", + "example_sentence_english": "It's important to eat many vegetables every day.", + "pos": "noun", + "word_frequency": 13291 + }, + { + "word": "oscillare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oscillate;to swing", + "romanization": "oscillare", + "example_sentence_native": "Il pendolo continua a oscillare avanti e indietro.", + "example_sentence_english": "The pendulum continues to swing back and forth.", + "pos": "verb", + "word_frequency": 13292 + }, + { + "word": "osservanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "observance;compliance", + "romanization": "osservanza", + "example_sentence_native": "L'osservanza delle regole è fondamentale per la sicurezza.", + "example_sentence_english": "The observance of rules is fundamental for safety.", + "pos": "noun", + "word_frequency": 13293 + }, + { + "word": "paga", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pay;salary", + "romanization": "paga", + "example_sentence_native": "Ho ricevuto la mia paga oggi.", + "example_sentence_english": "I received my pay today.", + "pos": "noun", + "word_frequency": 13294 + }, + { + "word": "pancreas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pancreas", + "romanization": "pancreas", + "example_sentence_native": "Il pancreas è un organo importante per la digestione.", + "example_sentence_english": "The pancreas is an important organ for digestion.", + "pos": "noun", + "word_frequency": 13295 + }, + { + "word": "percorrenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distance;mileage;travel time", + "romanization": "percorrenza", + "example_sentence_native": "La percorrenza stimata è di due ore.", + "example_sentence_english": "The estimated travel time is two hours.", + "pos": "noun", + "word_frequency": 13298 + }, + { + "word": "personalizzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personalized;customized", + "romanization": "personalizzato", + "example_sentence_native": "Voglio un servizio personalizzato per le mie esigenze.", + "example_sentence_english": "I want a personalized service for my needs.", + "pos": "adjective", + "word_frequency": 13299 + }, + { + "word": "psicopatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychopathic", + "romanization": "psicopatico", + "example_sentence_native": "Il personaggio del film era un vero psicopatico.", + "example_sentence_english": "The character in the movie was a true psychopath.", + "pos": "adjective", + "word_frequency": 13302 + }, + { + "word": "ragioneria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accounting;bookkeeping", + "romanization": "ragioneria", + "example_sentence_native": "Ha studiato ragioneria all'università.", + "example_sentence_english": "She studied accounting at university.", + "pos": "noun", + "word_frequency": 13303 + }, + { + "word": "rassegnato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resigned;resignedly", + "romanization": "rassegnato", + "example_sentence_native": "Era rassegnato al suo destino.", + "example_sentence_english": "He was resigned to his fate.", + "pos": "adjective", + "word_frequency": 13304 + }, + { + "word": "regale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regal;royal", + "romanization": "regale", + "example_sentence_native": "La regina indossava un abito regale.", + "example_sentence_english": "The queen wore a regal dress.", + "pos": "adjective", + "word_frequency": 13305 + }, + { + "word": "ribellarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rebel;to revolt", + "romanization": "ribellarsi", + "example_sentence_native": "I giovani spesso tendono a ribellarsi all'autorità.", + "example_sentence_english": "Young people often tend to rebel against authority.", + "pos": "verb", + "word_frequency": 13306 + }, + { + "word": "riciclare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to recycle", + "romanization": "riciclare", + "example_sentence_native": "Dobbiamo riciclare la plastica per proteggere l'ambiente.", + "example_sentence_english": "We must recycle plastic to protect the environment.", + "pos": "verb", + "word_frequency": 13307 + }, + { + "word": "riconoscente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grateful;thankful", + "romanization": "riconoscente", + "example_sentence_native": "Sono molto riconoscente per il tuo aiuto.", + "example_sentence_english": "I am very grateful for your help.", + "pos": "adjective", + "word_frequency": 13308 + }, + { + "word": "rifarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make up for;to redo;to recover", + "romanization": "rifarsi", + "example_sentence_native": "Dopo la sconfitta, la squadra vuole rifarsi nella prossima partita.", + "example_sentence_english": "After the defeat, the team wants to make up for it in the next game.", + "pos": "verb", + "word_frequency": 13309 + }, + { + "word": "rimorchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trailer;tow", + "romanization": "rimorchio", + "example_sentence_native": "La macchina trainava un piccolo rimorchio.", + "example_sentence_english": "The car was towing a small trailer.", + "pos": "noun", + "word_frequency": 13310 + }, + { + "word": "rimpatrio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repatriation", + "romanization": "rimpatrio", + "example_sentence_native": "Il governo ha organizzato il rimpatrio dei cittadini.", + "example_sentence_english": "The government organized the repatriation of citizens.", + "pos": "noun", + "word_frequency": 13311 + }, + { + "word": "riscossa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "comeback;redemption;recovery", + "romanization": "riscossa", + "example_sentence_native": "La squadra ha tentato una riscossa nel secondo tempo.", + "example_sentence_english": "The team attempted a comeback in the second half.", + "pos": "noun", + "word_frequency": 13312 + }, + { + "word": "rivenditore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reseller;retailer", + "romanization": "rivenditore", + "example_sentence_native": "Ho comprato il telefono da un rivenditore autorizzato.", + "example_sentence_english": "I bought the phone from an authorized reseller.", + "pos": "noun", + "word_frequency": 13313 + }, + { + "word": "romeno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Romanian", + "romanization": "romeno", + "example_sentence_native": "Parla fluentemente il romeno.", + "example_sentence_english": "He speaks Romanian fluently.", + "pos": "adjective", + "word_frequency": 13314 + }, + { + "word": "salvia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sage", + "romanization": "salvia", + "example_sentence_native": "Ho aggiunto un po' di salvia al sugo.", + "example_sentence_english": "I added some sage to the sauce.", + "pos": "noun", + "word_frequency": 13316 + }, + { + "word": "sapiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wise;knowledgeable", + "romanization": "sapiente", + "example_sentence_native": "Era un uomo sapiente, con molta esperienza.", + "example_sentence_english": "He was a wise man, with a lot of experience.", + "pos": "adjective", + "word_frequency": 13318 + }, + { + "word": "sbalzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sudden change;lurch;jump", + "romanization": "sbalzo", + "example_sentence_native": "Abbiamo sentito uno sbalzo improvviso durante il viaggio.", + "example_sentence_english": "We felt a sudden lurch during the journey.", + "pos": "noun", + "word_frequency": 13322 + }, + { + "word": "scoraggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discourage", + "romanization": "scoraggiare", + "example_sentence_native": "Non lasciare che le difficoltà ti scoraggino.", + "example_sentence_english": "Don't let difficulties discourage you.", + "pos": "verb", + "word_frequency": 13323 + }, + { + "word": "scovare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unearth;to track down", + "romanization": "scovare", + "example_sentence_native": "Sono riusciti a scovare la verità.", + "example_sentence_english": "They managed to unearth the truth.", + "pos": "verb", + "word_frequency": 13324 + }, + { + "word": "screening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "screening", + "romanization": "screening", + "example_sentence_native": "Il medico ha raccomandato uno screening per il cancro.", + "example_sentence_english": "The doctor recommended a cancer screening.", + "pos": "noun", + "word_frequency": 13325 + }, + { + "word": "segnaletica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "signage;road signs", + "romanization": "segnaletica", + "example_sentence_native": "La segnaletica stradale è molto chiara qui.", + "example_sentence_english": "The road signage is very clear here.", + "pos": "noun", + "word_frequency": 13326 + }, + { + "word": "seller", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seller", + "romanization": "seller", + "example_sentence_native": "Il seller ha spedito l'articolo in tempo.", + "example_sentence_english": "The seller shipped the item on time.", + "pos": "noun", + "word_frequency": 13327 + }, + { + "word": "sott'acqua", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underwater", + "romanization": "sott'acqua", + "example_sentence_native": "Il subacqueo è rimasto sott'acqua per un'ora.", + "example_sentence_english": "The diver stayed underwater for an hour.", + "pos": "adverb", + "word_frequency": 13332 + }, + { + "word": "spazzolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toothbrush", + "romanization": "spazzolino", + "example_sentence_native": "Ho bisogno di un nuovo spazzolino da denti.", + "example_sentence_english": "I need a new toothbrush.", + "pos": "noun", + "word_frequency": 13333 + }, + { + "word": "spiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spy", + "romanization": "spiare", + "example_sentence_native": "Non è bello spiare le conversazioni altrui.", + "example_sentence_english": "It's not nice to spy on other people's conversations.", + "pos": "verb", + "word_frequency": 13334 + }, + { + "word": "spinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spinal", + "romanization": "spinale", + "example_sentence_native": "Ha subito un infortunio spinale.", + "example_sentence_english": "He suffered a spinal injury.", + "pos": "adjective", + "word_frequency": 13335 + }, + { + "word": "stilistica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stylistics", + "romanization": "stilistica", + "example_sentence_native": "La stilistica è lo studio dello stile linguistico.", + "example_sentence_english": "Stylistics is the study of linguistic style.", + "pos": "noun", + "word_frequency": 13336 + }, + { + "word": "stoccaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "storage", + "romanization": "stoccaggio", + "example_sentence_native": "Il costo dello stoccaggio è aumentato.", + "example_sentence_english": "The cost of storage has increased.", + "pos": "noun", + "word_frequency": 13337 + }, + { + "word": "stregoneria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "witchcraft", + "romanization": "stregoneria", + "example_sentence_native": "Nel Medioevo, la stregoneria era temuta.", + "example_sentence_english": "In the Middle Ages, witchcraft was feared.", + "pos": "noun", + "word_frequency": 13338 + }, + { + "word": "suggestione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggestion;influence;fascination", + "romanization": "suggestione", + "example_sentence_native": "La suggestione può essere molto potente.", + "example_sentence_english": "Suggestion can be very powerful.", + "pos": "noun", + "word_frequency": 13339 + }, + { + "word": "tabellone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scoreboard;notice board;billboard", + "romanization": "tabellone", + "example_sentence_native": "Il tabellone mostra il punteggio della partita.", + "example_sentence_english": "The scoreboard shows the game score.", + "pos": "noun", + "word_frequency": 13342 + }, + { + "word": "tank", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tank", + "romanization": "tank", + "example_sentence_native": "Il carro armato è un tipo di tank.", + "example_sentence_english": "The armored vehicle is a type of tank.", + "pos": "noun", + "word_frequency": 13343 + }, + { + "word": "teddy", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teddy (bear)", + "romanization": "teddy", + "example_sentence_native": "Il bambino dorme con il suo teddy.", + "example_sentence_english": "The child sleeps with his teddy.", + "pos": "noun", + "word_frequency": 13344 + }, + { + "word": "temperato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temperate;mild;tempered", + "romanization": "temperato", + "example_sentence_native": "Viviamo in una zona dal clima temperato.", + "example_sentence_english": "We live in a temperate climate zone.", + "pos": "adjective", + "word_frequency": 13345 + }, + { + "word": "template", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "template", + "romanization": "template", + "example_sentence_native": "Ho usato un template per creare la presentazione.", + "example_sentence_english": "I used a template to create the presentation.", + "pos": "noun", + "word_frequency": 13346 + }, + { + "word": "tifoseria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fan base;supporters", + "romanization": "tifoseria", + "example_sentence_native": "La tifoseria ha sostenuto la squadra con passione.", + "example_sentence_english": "The fan base supported the team with passion.", + "pos": "noun", + "word_frequency": 13347 + }, + { + "word": "timidezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shyness", + "romanization": "timidezza", + "example_sentence_native": "La sua timidezza le impedisce di parlare in pubblico.", + "example_sentence_english": "Her shyness prevents her from speaking in public.", + "pos": "noun", + "word_frequency": 13348 + }, + { + "word": "toilette", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toilet;restroom", + "romanization": "toilette", + "example_sentence_native": "Posso usare la toilette, per favore?", + "example_sentence_english": "May I use the toilet, please?", + "pos": "noun", + "word_frequency": 13351 + }, + { + "word": "tredicesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirteenth", + "romanization": "tredicesimo", + "example_sentence_native": "Oggi è il tredicesimo giorno del mese.", + "example_sentence_english": "Today is the thirteenth day of the month.", + "pos": "adjective", + "word_frequency": 13352 + }, + { + "word": "truffatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swindler;con artist", + "romanization": "truffatore", + "example_sentence_native": "Il truffatore è stato arrestato dalla polizia.", + "example_sentence_english": "The swindler was arrested by the police.", + "pos": "noun", + "word_frequency": 13354 + }, + { + "word": "twist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twist", + "romanization": "twist", + "example_sentence_native": "Il film ha avuto un inaspettato twist finale.", + "example_sentence_english": "The film had an unexpected final twist.", + "pos": "noun", + "word_frequency": 13355 + }, + { + "word": "vegan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vegan", + "romanization": "vegan", + "example_sentence_native": "Sono diventato vegan per motivi etici.", + "example_sentence_english": "I became vegan for ethical reasons.", + "pos": "adjective", + "word_frequency": 13356 + }, + { + "word": "vendemmia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grape harvest;vintage", + "romanization": "vendemmia", + "example_sentence_native": "La vendemmia è un periodo importante per i viticoltori.", + "example_sentence_english": "The grape harvest is an important period for winemakers.", + "pos": "noun", + "word_frequency": 13357 + }, + { + "word": "vertebrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertebral", + "romanization": "vertebrale", + "example_sentence_native": "Ha un problema alla colonna vertebrale.", + "example_sentence_english": "He has a problem with his vertebral column.", + "pos": "adjective", + "word_frequency": 13358 + }, + { + "word": "zip", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zipper", + "romanization": "zip", + "example_sentence_native": "La zip dei miei pantaloni è bloccata.", + "example_sentence_english": "The zip on my pants is stuck.", + "pos": "noun", + "word_frequency": 13363 + }, + { + "word": "accompagnatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "escort", + "romanization": "accompagnatore", + "example_sentence_native": "L'accompagnatore turistico ci ha guidato per la città.", + "example_sentence_english": "The tour escort guided us through the city.", + "pos": "noun", + "word_frequency": 13366 + }, + { + "word": "acconsentire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to consent", + "romanization": "acconsentire", + "example_sentence_native": "Ha acconsentito alla nostra proposta dopo averci pensato.", + "example_sentence_english": "He consented to our proposal after thinking about it.", + "pos": "verb", + "word_frequency": 13367 + }, + { + "word": "accreditare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to credit", + "romanization": "accreditare", + "example_sentence_native": "Dobbiamo accreditare i fondi sul conto entro domani.", + "example_sentence_english": "We need to credit the funds to the account by tomorrow.", + "pos": "verb", + "word_frequency": 13368 + }, + { + "word": "acquedotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aqueduct", + "romanization": "acquedotto", + "example_sentence_native": "L'antico acquedotto romano è ancora visibile in alcune parti della città.", + "example_sentence_english": "The ancient Roman aqueduct is still visible in some parts of the city.", + "pos": "noun", + "word_frequency": 13369 + }, + { + "word": "affiliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to affiliate", + "romanization": "affiliare", + "example_sentence_native": "Molte piccole aziende si affiliano a grandi gruppi per maggiore visibilità.", + "example_sentence_english": "Many small companies affiliate with large groups for greater visibility.", + "pos": "verb", + "word_frequency": 13370 + }, + { + "word": "agriturismo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "farm stay", + "romanization": "agriturismo", + "example_sentence_native": "Abbiamo prenotato un agriturismo in Toscana per le vacanze.", + "example_sentence_english": "We booked a farm stay in Tuscany for the holidays.", + "pos": "noun", + "word_frequency": 13371 + }, + { + "word": "almanacco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "almanac", + "romanization": "almanacco", + "example_sentence_native": "Consultò l'almanacco per conoscere le fasi lunari.", + "example_sentence_english": "He consulted the almanac to know the moon phases.", + "pos": "noun", + "word_frequency": 13376 + }, + { + "word": "animatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "entertainer", + "romanization": "animatore", + "example_sentence_native": "L'animatore del villaggio turistico organizzava giochi per i bambini.", + "example_sentence_english": "The resort entertainer organized games for the children.", + "pos": "noun", + "word_frequency": 13378 + }, + { + "word": "antidoto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antidote", + "romanization": "antidoto", + "example_sentence_native": "Non esiste un antidoto conosciuto per quel veleno.", + "example_sentence_english": "There is no known antidote for that poison.", + "pos": "noun", + "word_frequency": 13379 + }, + { + "word": "apprestare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prepare", + "romanization": "apprestare", + "example_sentence_native": "Si apprestarono a partire per il lungo viaggio.", + "example_sentence_english": "They prepared to leave for the long journey.", + "pos": "verb", + "word_frequency": 13381 + }, + { + "word": "asset", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asset", + "romanization": "asset", + "example_sentence_native": "Gli asset dell'azienda sono aumentati nell'ultimo trimestre.", + "example_sentence_english": "The company's assets increased in the last quarter.", + "pos": "noun", + "word_frequency": 13384 + }, + { + "word": "assorbente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sanitary napkin", + "romanization": "assorbente", + "example_sentence_native": "Ho bisogno di comprare degli assorbenti.", + "example_sentence_english": "I need to buy some sanitary pads.", + "pos": "noun", + "word_frequency": 13385 + }, + { + "word": "bambù", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bamboo", + "romanization": "bambù", + "example_sentence_native": "Il panda gigante si nutre principalmente di bambù.", + "example_sentence_english": "The giant panda mainly feeds on bamboo.", + "pos": "noun", + "word_frequency": 13388 + }, + { + "word": "blind", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blind", + "romanization": "blind", + "example_sentence_native": "Hanno condotto un test blind per valutare il prodotto.", + "example_sentence_english": "They conducted a blind test to evaluate the product.", + "pos": "adjective", + "word_frequency": 13392 + }, + { + "word": "borsellino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coin purse", + "romanization": "borsellino", + "example_sentence_native": "Ho lasciato il mio borsellino sul tavolo.", + "example_sentence_english": "I left my coin purse on the table.", + "pos": "noun", + "word_frequency": 13393 + }, + { + "word": "bovino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bovine", + "romanization": "bovino", + "example_sentence_native": "La carne bovina è molto apprezzata in questa regione.", + "example_sentence_english": "Bovine meat is highly appreciated in this region.", + "pos": "adjective", + "word_frequency": 13394 + }, + { + "word": "calligrafia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calligraphy", + "romanization": "calligrafia", + "example_sentence_native": "Ha una calligrafia molto elegante e leggibile.", + "example_sentence_english": "She has very elegant and legible handwriting.", + "pos": "noun", + "word_frequency": 13397 + }, + { + "word": "calunnia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slander", + "romanization": "calunnia", + "example_sentence_native": "Le sue accuse si sono rivelate una pura calunnia.", + "example_sentence_english": "His accusations turned out to be pure slander.", + "pos": "noun", + "word_frequency": 13398 + }, + { + "word": "carissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dearest", + "romanization": "carissimo", + "example_sentence_native": "Carissimo Giovanni, spero che tu stia bene.", + "example_sentence_english": "Dearest Giovanni, I hope you are well.", + "pos": "adjective", + "word_frequency": 13399 + }, + { + "word": "cattività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivity", + "romanization": "cattività", + "example_sentence_native": "Gli animali sono stati liberati dalla cattività.", + "example_sentence_english": "The animals were released from captivity.", + "pos": "noun", + "word_frequency": 13403 + }, + { + "word": "codardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cowardly", + "romanization": "codardo", + "example_sentence_native": "Non essere un codardo, affronta la situazione.", + "example_sentence_english": "Don't be a coward, face the situation.", + "pos": "adjective", + "word_frequency": 13406 + }, + { + "word": "cognitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cognitive", + "romanization": "cognitivo", + "example_sentence_native": "Ha studiato i processi cognitivi della mente umana.", + "example_sentence_english": "He studied the cognitive processes of the human mind.", + "pos": "adjective", + "word_frequency": 13407 + }, + { + "word": "commissionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commission", + "romanization": "commissionare", + "example_sentence_native": "Hanno deciso di commissionare un nuovo dipinto.", + "example_sentence_english": "They decided to commission a new painting.", + "pos": "verb", + "word_frequency": 13408 + }, + { + "word": "congestione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "congestion", + "romanization": "congestione", + "example_sentence_native": "C'è molta congestione del traffico in centro.", + "example_sentence_english": "There is a lot of traffic congestion downtown.", + "pos": "noun", + "word_frequency": 13409 + }, + { + "word": "contrarietà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoyance;setback;opposition", + "romanization": "contrarietà", + "example_sentence_native": "Ha espresso la sua contrarietà alla proposta.", + "example_sentence_english": "He expressed his opposition to the proposal.", + "pos": "noun", + "word_frequency": 13410 + }, + { + "word": "cozza", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mussel", + "romanization": "cozza", + "example_sentence_native": "Mi piacciono molto gli spaghetti alle cozze.", + "example_sentence_english": "I really like spaghetti with mussels.", + "pos": "noun", + "word_frequency": 13411 + }, + { + "word": "cucire", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sew", + "romanization": "cucire", + "example_sentence_native": "Mia nonna ama cucire vestiti.", + "example_sentence_english": "My grandmother loves to sew clothes.", + "pos": "verb", + "word_frequency": 13414 + }, + { + "word": "cumulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pile;heap;accumulation", + "romanization": "cumulo", + "example_sentence_native": "C'era un cumulo di foglie secche in giardino.", + "example_sentence_english": "There was a pile of dry leaves in the garden.", + "pos": "noun", + "word_frequency": 13415 + }, + { + "word": "decorare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to decorate", + "romanization": "decorare", + "example_sentence_native": "Dobbiamo decorare la casa per Natale.", + "example_sentence_english": "We need to decorate the house for Christmas.", + "pos": "verb", + "word_frequency": 13419 + }, + { + "word": "decorativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decorative", + "romanization": "decorativo", + "example_sentence_native": "Ha comprato un vaso decorativo per il soggiorno.", + "example_sentence_english": "She bought a decorative vase for the living room.", + "pos": "adjective", + "word_frequency": 13420 + }, + { + "word": "dettagliatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in detail;thoroughly", + "romanization": "dettagliatamente", + "example_sentence_native": "Ha spiegato il piano dettagliatamente.", + "example_sentence_english": "He explained the plan in detail.", + "pos": "adverb", + "word_frequency": 13427 + }, + { + "word": "diagonale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diagonal", + "romanization": "diagonale", + "example_sentence_native": "La linea diagonale attraversa il quadrato.", + "example_sentence_english": "The diagonal line crosses the square.", + "pos": "adjective", + "word_frequency": 13428 + }, + { + "word": "disarmo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disarmament", + "romanization": "disarmo", + "example_sentence_native": "Le nazioni hanno discusso il disarmo nucleare.", + "example_sentence_english": "The nations discussed nuclear disarmament.", + "pos": "noun", + "word_frequency": 13429 + }, + { + "word": "distogliere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distract;to divert;to dissuade", + "romanization": "distogliere", + "example_sentence_native": "Non lasciare che nulla ti distolga dal tuo obiettivo.", + "example_sentence_english": "Don't let anything distract you from your goal.", + "pos": "verb", + "word_frequency": 13430 + }, + { + "word": "egizio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Egyptian", + "romanization": "egizio", + "example_sentence_native": "Ha visitato il museo egizio a Torino.", + "example_sentence_english": "He visited the Egyptian museum in Turin.", + "pos": "adjective", + "word_frequency": 13433 + }, + { + "word": "elettricista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "electrician", + "romanization": "elettricista", + "example_sentence_native": "Abbiamo chiamato l'elettricista per riparare la presa.", + "example_sentence_english": "We called the electrician to fix the outlet.", + "pos": "noun", + "word_frequency": 13434 + }, + { + "word": "enzima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enzyme", + "romanization": "enzima", + "example_sentence_native": "Gli enzimi sono essenziali per la digestione.", + "example_sentence_english": "Enzymes are essential for digestion.", + "pos": "noun", + "word_frequency": 13436 + }, + { + "word": "epatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hepatic (relating to the liver)", + "romanization": "epatico", + "example_sentence_native": "Il fegato è un organo epatico.", + "example_sentence_english": "The liver is a hepatic organ.", + "pos": "adjective", + "word_frequency": 13437 + }, + { + "word": "esonero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exemption;waiver", + "romanization": "esonero", + "example_sentence_native": "Ha ottenuto l'esonero dall'esame finale.", + "example_sentence_english": "He obtained an exemption from the final exam.", + "pos": "noun", + "word_frequency": 13438 + }, + { + "word": "falegname", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpenter", + "romanization": "falegname", + "example_sentence_native": "Il falegname ha costruito un bellissimo tavolo.", + "example_sentence_english": "The carpenter built a beautiful table.", + "pos": "noun", + "word_frequency": 13440 + }, + { + "word": "famigerato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infamous;notorious", + "romanization": "famigerato", + "example_sentence_native": "Era conosciuto come il famigerato ladro di gioielli.", + "example_sentence_english": "He was known as the infamous jewel thief.", + "pos": "adjective", + "word_frequency": 13441 + }, + { + "word": "fanciullo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "child;boy (literary)", + "romanization": "fanciullo", + "example_sentence_native": "Il fanciullo giocava nel prato.", + "example_sentence_english": "The child played in the meadow.", + "pos": "noun", + "word_frequency": 13442 + }, + { + "word": "favorevolmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favorably", + "romanization": "favorevolmente", + "example_sentence_native": "La proposta è stata accolta favorevolmente.", + "example_sentence_english": "The proposal was received favorably.", + "pos": "adverb", + "word_frequency": 13443 + }, + { + "word": "filippino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Filipino", + "romanization": "filippino", + "example_sentence_native": "Ha sposato una donna filippina.", + "example_sentence_english": "He married a Filipino woman.", + "pos": "adjective", + "word_frequency": 13445 + }, + { + "word": "folto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thick;dense", + "romanization": "folto", + "example_sentence_native": "Aveva una folta chioma di capelli neri.", + "example_sentence_english": "She had a thick head of black hair.", + "pos": "adjective", + "word_frequency": 13447 + }, + { + "word": "forcone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitchfork", + "romanization": "forcone", + "example_sentence_native": "Il contadino usava il forcone per spostare il fieno.", + "example_sentence_english": "The farmer used the pitchfork to move the hay.", + "pos": "noun", + "word_frequency": 13448 + }, + { + "word": "frego", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scratch;mark", + "romanization": "frego", + "example_sentence_native": "C'è un frego sulla parete.", + "example_sentence_english": "There's a scratch on the wall.", + "pos": "noun", + "word_frequency": 13450 + }, + { + "word": "gentaglia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rabble;riff-raff;scum", + "romanization": "gentaglia", + "example_sentence_native": "Non voglio avere a che fare con quella gentaglia.", + "example_sentence_english": "I don't want to deal with that riff-raff.", + "pos": "noun", + "word_frequency": 13454 + }, + { + "word": "gilda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guild", + "romanization": "gilda", + "example_sentence_native": "Le gilde medievali proteggevano gli interessi dei loro membri.", + "example_sentence_english": "Medieval guilds protected the interests of their members.", + "pos": "noun", + "word_frequency": 13456 + }, + { + "word": "ginnasio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnasium (school type);high school", + "romanization": "ginnasio", + "example_sentence_native": "Ha frequentato il ginnasio prima di andare all'università.", + "example_sentence_english": "He attended the gymnasium before going to university.", + "pos": "noun", + "word_frequency": 13457 + }, + { + "word": "grottesco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grotesque", + "romanization": "grottesco", + "example_sentence_native": "La situazione era così grottesca che non potevamo fare a meno di ridere.", + "example_sentence_english": "The situation was so grotesque that we couldn't help but laugh.", + "pos": "adjective", + "word_frequency": 13458 + }, + { + "word": "inefficace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ineffective", + "romanization": "inefficace", + "example_sentence_native": "Il trattamento si è rivelato inefficace.", + "example_sentence_english": "The treatment proved ineffective.", + "pos": "adjective", + "word_frequency": 13464 + }, + { + "word": "inesorabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexorable;relentless", + "romanization": "inesorabile", + "example_sentence_native": "Il tempo è inesorabile.", + "example_sentence_english": "Time is inexorable.", + "pos": "adjective", + "word_frequency": 13465 + }, + { + "word": "inserzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advertisement;insertion", + "romanization": "inserzione", + "example_sentence_native": "Ho visto un'inserzione per un nuovo lavoro.", + "example_sentence_english": "I saw an advertisement for a new job.", + "pos": "noun", + "word_frequency": 13466 + }, + { + "word": "intestare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to register (in someone's name);to head (a document)", + "romanization": "intestare", + "example_sentence_native": "Voglio intestare la casa a mio figlio.", + "example_sentence_english": "I want to register the house in my son's name.", + "pos": "verb", + "word_frequency": 13467 + }, + { + "word": "irraggiungibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unreachable;unattainable", + "romanization": "irraggiungibile", + "example_sentence_native": "Il suo sogno sembrava irraggiungibile.", + "example_sentence_english": "His dream seemed unattainable.", + "pos": "adjective", + "word_frequency": 13468 + }, + { + "word": "irritazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irritation;annoyance", + "romanization": "irritazione", + "example_sentence_native": "Provava una forte irritazione per il rumore.", + "example_sentence_english": "He felt a strong irritation from the noise.", + "pos": "noun", + "word_frequency": 13469 + }, + { + "word": "laccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lace;shoelace;snare", + "romanization": "laccio", + "example_sentence_native": "Allacciati i lacci delle scarpe.", + "example_sentence_english": "Tie your shoelaces.", + "pos": "noun", + "word_frequency": 13472 + }, + { + "word": "lamentarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to complain;to lament", + "romanization": "lamentarsi", + "example_sentence_native": "Si lamenta sempre del tempo.", + "example_sentence_english": "He always complains about the weather.", + "pos": "verb", + "word_frequency": 13473 + }, + { + "word": "lascito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legacy;bequest", + "romanization": "lascito", + "example_sentence_native": "Ha lasciato un importante lascito all'università.", + "example_sentence_english": "He left an important legacy to the university.", + "pos": "noun", + "word_frequency": 13474 + }, + { + "word": "lettino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cot;sun lounger;small bed", + "romanization": "lettino", + "example_sentence_native": "Il bambino dorme nel suo lettino.", + "example_sentence_english": "The baby sleeps in his cot.", + "pos": "noun", + "word_frequency": 13476 + }, + { + "word": "magnum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnum (large bottle;type of firearm)", + "romanization": "magnum", + "example_sentence_native": "Hanno aperto una bottiglia magnum di champagne per festeggiare.", + "example_sentence_english": "They opened a magnum bottle of champagne to celebrate.", + "pos": "noun", + "word_frequency": 13479 + }, + { + "word": "malfunzionamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malfunction", + "romanization": "malfunzionamento", + "example_sentence_native": "Il sistema ha avuto un malfunzionamento improvviso.", + "example_sentence_english": "The system had a sudden malfunction.", + "pos": "noun", + "word_frequency": 13480 + }, + { + "word": "malizia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "malice;mischief", + "romanization": "malizia", + "example_sentence_native": "C'era un pizzico di malizia nel suo sorriso.", + "example_sentence_english": "There was a hint of mischief in his smile.", + "pos": "noun", + "word_frequency": 13481 + }, + { + "word": "mattutino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "morning (adj.);matutinal", + "romanization": "mattutino", + "example_sentence_native": "Preferisco fare una passeggiata mattutina.", + "example_sentence_english": "I prefer to take a morning walk.", + "pos": "adjective", + "word_frequency": 13485 + }, + { + "word": "micidiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deadly;lethal;devastating", + "romanization": "micidiale", + "example_sentence_native": "Ha sferrato un colpo micidiale.", + "example_sentence_english": "He delivered a deadly blow.", + "pos": "adjective", + "word_frequency": 13486 + }, + { + "word": "militanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "militancy;activism", + "romanization": "militanza", + "example_sentence_native": "La sua lunga militanza nel partito è nota a tutti.", + "example_sentence_english": "His long activism in the party is known to all.", + "pos": "noun", + "word_frequency": 13487 + }, + { + "word": "miracoloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miraculous", + "romanization": "miracoloso", + "example_sentence_native": "È stata una ripresa miracolosa dopo l'incidente.", + "example_sentence_english": "It was a miraculous recovery after the accident.", + "pos": "adjective", + "word_frequency": 13488 + }, + { + "word": "miscuglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixture;medley", + "romanization": "miscuglio", + "example_sentence_native": "Ha preparato un miscuglio di erbe aromatiche.", + "example_sentence_english": "She prepared a mixture of aromatic herbs.", + "pos": "noun", + "word_frequency": 13489 + }, + { + "word": "mob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mob", + "romanization": "mob", + "example_sentence_native": "La polizia ha disperso la mob.", + "example_sentence_english": "The police dispersed the mob.", + "pos": "noun", + "word_frequency": 13490 + }, + { + "word": "moderatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moderator", + "romanization": "moderatore", + "example_sentence_native": "Il moderatore ha gestito bene il dibattito.", + "example_sentence_english": "The moderator managed the debate well.", + "pos": "noun", + "word_frequency": 13491 + }, + { + "word": "motel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motel", + "romanization": "motel", + "example_sentence_native": "Abbiamo passato la notte in un motel lungo l'autostrada.", + "example_sentence_english": "We spent the night in a motel along the highway.", + "pos": "noun", + "word_frequency": 13493 + }, + { + "word": "operando", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "operand", + "romanization": "operando", + "example_sentence_native": "L'operando è il valore su cui agisce un operatore.", + "example_sentence_english": "The operand is the value on which an operator acts.", + "pos": "noun", + "word_frequency": 13500 + }, + { + "word": "ordigno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "device;explosive device", + "romanization": "ordigno", + "example_sentence_native": "Hanno disinnescato un ordigno esplosivo.", + "example_sentence_english": "They defused an explosive device.", + "pos": "noun", + "word_frequency": 13501 + }, + { + "word": "oretta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a short hour;an hour or so", + "romanization": "oretta", + "example_sentence_native": "Ci vediamo tra un'oretta.", + "example_sentence_english": "See you in about an hour.", + "pos": "noun", + "word_frequency": 13502 + }, + { + "word": "ospitante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hosting;host (adj.)", + "romanization": "ospitante", + "example_sentence_native": "La nazione ospitante ha accolto i delegati.", + "example_sentence_english": "The host nation welcomed the delegates.", + "pos": "adjective", + "word_frequency": 13505 + }, + { + "word": "paraggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vicinity;surroundings", + "romanization": "paraggio", + "example_sentence_native": "Non c'è nessuno nei paraggi.", + "example_sentence_english": "There's no one in the vicinity.", + "pos": "noun", + "word_frequency": 13507 + }, + { + "word": "paralizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to paralyze", + "romanization": "paralizzare", + "example_sentence_native": "La paura può paralizzare le persone.", + "example_sentence_english": "Fear can paralyze people.", + "pos": "verb", + "word_frequency": 13508 + }, + { + "word": "partizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partition;division", + "romanization": "partizione", + "example_sentence_native": "Ho creato una nuova partizione sul disco rigido.", + "example_sentence_english": "I created a new partition on the hard drive.", + "pos": "noun", + "word_frequency": 13509 + }, + { + "word": "pasticcio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mess;muddle;pie;pudding", + "romanization": "pasticcio", + "example_sentence_native": "Che pasticcio hai combinato!", + "example_sentence_english": "What a mess you've made!", + "pos": "noun", + "word_frequency": 13510 + }, + { + "word": "patriottico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patriotic", + "romanization": "patriottico", + "example_sentence_native": "Ha mostrato un forte spirito patriottico.", + "example_sentence_english": "He showed a strong patriotic spirit.", + "pos": "adjective", + "word_frequency": 13511 + }, + { + "word": "peluche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plush toy;stuffed animal", + "romanization": "peluche", + "example_sentence_native": "Il bambino dorme con il suo orsetto di peluche.", + "example_sentence_english": "The child sleeps with his plush teddy bear.", + "pos": "noun", + "word_frequency": 13512 + }, + { + "word": "perfezionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to perfect;to improve", + "romanization": "perfezionare", + "example_sentence_native": "Voglio perfezionare il mio italiano.", + "example_sentence_english": "I want to perfect my Italian.", + "pos": "verb", + "word_frequency": 13513 + }, + { + "word": "perseveranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perseverance", + "romanization": "perseveranza", + "example_sentence_native": "La perseveranza è la chiave del successo.", + "example_sentence_english": "Perseverance is the key to success.", + "pos": "noun", + "word_frequency": 13514 + }, + { + "word": "pesticida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pesticide", + "romanization": "pesticida", + "example_sentence_native": "L'uso eccessivo di pesticidi può danneggiare l'ambiente.", + "example_sentence_english": "Excessive use of pesticides can harm the environment.", + "pos": "noun", + "word_frequency": 13515 + }, + { + "word": "pluralismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pluralism", + "romanization": "pluralismo", + "example_sentence_native": "La democrazia si basa sul pluralismo delle idee.", + "example_sentence_english": "Democracy is based on the pluralism of ideas.", + "pos": "noun", + "word_frequency": 13517 + }, + { + "word": "popolano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "common;plebeian", + "romanization": "popolano", + "example_sentence_native": "Ha un aspetto molto popolano.", + "example_sentence_english": "He has a very common appearance.", + "pos": "adjective", + "word_frequency": 13519 + }, + { + "word": "preistoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prehistory", + "romanization": "preistoria", + "example_sentence_native": "Lo studio della preistoria ci aiuta a capire le origini dell'umanità.", + "example_sentence_english": "The study of prehistory helps us understand the origins of humanity.", + "pos": "noun", + "word_frequency": 13521 + }, + { + "word": "pretorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "praetorium", + "romanization": "pretorio", + "example_sentence_native": "Il pretorio era il quartier generale del comandante romano.", + "example_sentence_english": "The praetorium was the headquarters of the Roman commander.", + "pos": "noun", + "word_frequency": 13522 + }, + { + "word": "privatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "privately", + "romanization": "privatamente", + "example_sentence_native": "Hanno discusso la questione privatamente.", + "example_sentence_english": "They discussed the matter privately.", + "pos": "adverb", + "word_frequency": 13523 + }, + { + "word": "psichico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "psychic;mental", + "romanization": "psichico", + "example_sentence_native": "Ha avuto un crollo psichico dopo lo stress.", + "example_sentence_english": "He had a mental breakdown after the stress.", + "pos": "adjective", + "word_frequency": 13524 + }, + { + "word": "psicoanalisi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychoanalysis", + "romanization": "psicoanalisi", + "example_sentence_native": "La psicoanalisi è una forma di terapia che esplora l'inconscio.", + "example_sentence_english": "Psychoanalysis is a form of therapy that explores the unconscious.", + "pos": "noun", + "word_frequency": 13525 + }, + { + "word": "punibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punishable", + "romanization": "punibile", + "example_sentence_native": "Ogni reato è punibile secondo la legge.", + "example_sentence_english": "Every crime is punishable by law.", + "pos": "adjective", + "word_frequency": 13527 + }, + { + "word": "purificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purification", + "romanization": "purificazione", + "example_sentence_native": "Il processo di purificazione dell'acqua è essenziale.", + "example_sentence_english": "The water purification process is essential.", + "pos": "noun", + "word_frequency": 13528 + }, + { + "word": "quindicina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortnight;about fifteen", + "romanization": "quindicina", + "example_sentence_native": "Ci vediamo tra una quindicina di giorni.", + "example_sentence_english": "We'll see each other in about fifteen days (a fortnight).", + "pos": "noun", + "word_frequency": 13530 + }, + { + "word": "relitto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wreck;shipwreck", + "romanization": "relitto", + "example_sentence_native": "I subacquei hanno esplorato il relitto della nave affondata.", + "example_sentence_english": "The divers explored the wreck of the sunken ship.", + "pos": "noun", + "word_frequency": 13532 + }, + { + "word": "restaurare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restore", + "romanization": "restaurare", + "example_sentence_native": "Vogliamo restaurare il vecchio mobile.", + "example_sentence_english": "We want to restore the old piece of furniture.", + "pos": "verb", + "word_frequency": 13533 + }, + { + "word": "revival", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revival", + "romanization": "revival", + "example_sentence_native": "C'è stato un revival della musica anni '80.", + "example_sentence_english": "There has been a revival of 80s music.", + "pos": "noun", + "word_frequency": 13534 + }, + { + "word": "ribaltare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overturn;to tip over", + "romanization": "ribaltare", + "example_sentence_native": "Il vento forte ha ribaltato la barca.", + "example_sentence_english": "The strong wind overturned the boat.", + "pos": "verb", + "word_frequency": 13536 + }, + { + "word": "riepilogo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary;recap", + "romanization": "riepilogo", + "example_sentence_native": "Per favore, dammi un breve riepilogo della riunione.", + "example_sentence_english": "Please give me a brief summary of the meeting.", + "pos": "noun", + "word_frequency": 13537 + }, + { + "word": "ripassare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to review;to go over;to pass by again", + "romanization": "ripassare", + "example_sentence_native": "Devo ripassare gli appunti per l'esame.", + "example_sentence_english": "I need to review my notes for the exam.", + "pos": "verb", + "word_frequency": 13538 + }, + { + "word": "ripubblicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to republish", + "romanization": "ripubblicare", + "example_sentence_native": "L'autore ha deciso di ripubblicare il suo primo romanzo.", + "example_sentence_english": "The author decided to republish his first novel.", + "pos": "verb", + "word_frequency": 13539 + }, + { + "word": "roccaforte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stronghold;fortress", + "romanization": "roccaforte", + "example_sentence_native": "Il castello era una roccaforte inespugnabile.", + "example_sentence_english": "The castle was an impregnable stronghold.", + "pos": "noun", + "word_frequency": 13540 + }, + { + "word": "scettro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scepter", + "romanization": "scettro", + "example_sentence_native": "Il re teneva lo scettro come simbolo del suo potere.", + "example_sentence_english": "The king held the scepter as a symbol of his power.", + "pos": "noun", + "word_frequency": 13542 + }, + { + "word": "scuotere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shake", + "romanization": "scuotere", + "example_sentence_native": "Ha scosso la testa in segno di disapprovazione.", + "example_sentence_english": "He shook his head in disapproval.", + "pos": "verb", + "word_frequency": 13543 + }, + { + "word": "sdraiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lay down;to stretch out", + "romanization": "sdraiare", + "example_sentence_native": "Si è sdraiato sul divano per riposare.", + "example_sentence_english": "He lay down on the sofa to rest.", + "pos": "verb", + "word_frequency": 13544 + }, + { + "word": "sensato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sensible;reasonable", + "romanization": "sensato", + "example_sentence_native": "La sua decisione è stata molto sensata.", + "example_sentence_english": "His decision was very sensible.", + "pos": "adjective", + "word_frequency": 13546 + }, + { + "word": "servirsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help oneself;to make use of", + "romanization": "servirsi", + "example_sentence_native": "Per favore, serviti pure del caffè.", + "example_sentence_english": "Please, help yourself to the coffee.", + "pos": "verb", + "word_frequency": 13547 + }, + { + "word": "simboleggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to symbolize", + "romanization": "simboleggiare", + "example_sentence_native": "La colomba bianca simboleggia la pace.", + "example_sentence_english": "The white dove symbolizes peace.", + "pos": "verb", + "word_frequency": 13548 + }, + { + "word": "smarrimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loss;bewilderment;disorientation", + "romanization": "smarrimento", + "example_sentence_native": "Ha provato un senso di smarrimento dopo essersi perso.", + "example_sentence_english": "He felt a sense of bewilderment after getting lost.", + "pos": "noun", + "word_frequency": 13550 + }, + { + "word": "socializzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "socialization", + "romanization": "socializzazione", + "example_sentence_native": "La socializzazione è fondamentale per lo sviluppo dei bambini.", + "example_sentence_english": "Socialization is fundamental for children's development.", + "pos": "noun", + "word_frequency": 13551 + }, + { + "word": "sovraccarico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overload", + "romanization": "sovraccarico", + "example_sentence_native": "Il sistema è andato in sovraccarico.", + "example_sentence_english": "The system went into overload.", + "pos": "noun", + "word_frequency": 13553 + }, + { + "word": "sparizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disappearance", + "romanization": "sparizione", + "example_sentence_native": "La sparizione del documento ha causato problemi.", + "example_sentence_english": "The disappearance of the document caused problems.", + "pos": "noun", + "word_frequency": 13554 + }, + { + "word": "splendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shining;resplendent", + "romanization": "splendente", + "example_sentence_native": "Le stelle erano splendenti nel cielo notturno.", + "example_sentence_english": "The stars were shining in the night sky.", + "pos": "adjective", + "word_frequency": 13555 + }, + { + "word": "sporcizia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dirt;filth", + "romanization": "sporcizia", + "example_sentence_native": "C'era molta sporcizia sul pavimento.", + "example_sentence_english": "There was a lot of dirt on the floor.", + "pos": "noun", + "word_frequency": 13556 + }, + { + "word": "stellato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starry;starred", + "romanization": "stellato", + "example_sentence_native": "Abbiamo dormito sotto un cielo stellato.", + "example_sentence_english": "We slept under a starry sky.", + "pos": "adjective", + "word_frequency": 13557 + }, + { + "word": "stimolazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulation", + "romanization": "stimolazione", + "example_sentence_native": "La stimolazione mentale è importante per la salute del cervello.", + "example_sentence_english": "Mental stimulation is important for brain health.", + "pos": "noun", + "word_frequency": 13558 + }, + { + "word": "stipula", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stipulation;drawing up (of a contract)", + "romanization": "stipula", + "example_sentence_native": "La stipula del contratto è avvenuta ieri.", + "example_sentence_english": "The drawing up of the contract took place yesterday.", + "pos": "noun", + "word_frequency": 13559 + }, + { + "word": "suggestivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suggestive", + "romanization": "suggestivo", + "example_sentence_native": "Il paesaggio era molto suggestivo al tramonto.", + "example_sentence_english": "The landscape was very evocative at sunset.", + "pos": "adjective", + "word_frequency": 13560 + }, + { + "word": "tacchino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turkey", + "romanization": "tacchino", + "example_sentence_native": "Per il Ringraziamento, abbiamo mangiato un grande tacchino.", + "example_sentence_english": "For Thanksgiving, we ate a big turkey.", + "pos": "noun", + "word_frequency": 13561 + }, + { + "word": "tacito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tacit", + "romanization": "tacito", + "example_sentence_native": "C'era un accordo tacito tra di loro.", + "example_sentence_english": "There was a tacit agreement between them.", + "pos": "adjective", + "word_frequency": 13562 + }, + { + "word": "tardivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "late", + "romanization": "tardivo", + "example_sentence_native": "La sua risposta è stata un po' tardiva.", + "example_sentence_english": "His response was a bit belated.", + "pos": "adjective", + "word_frequency": 13565 + }, + { + "word": "teologico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "theological", + "romanization": "teologico", + "example_sentence_native": "Ha studiato materie teologiche all'università.", + "example_sentence_english": "He studied theological subjects at university.", + "pos": "adjective", + "word_frequency": 13567 + }, + { + "word": "tofu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tofu", + "romanization": "tofu", + "example_sentence_native": "Mi piace aggiungere il tofu alle mie insalate.", + "example_sentence_english": "I like to add tofu to my salads.", + "pos": "noun", + "word_frequency": 13570 + }, + { + "word": "tremendamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tremendously", + "romanization": "tremendamente", + "example_sentence_native": "Era tremendamente stanco dopo il lungo viaggio.", + "example_sentence_english": "He was tremendously tired after the long journey.", + "pos": "adverb", + "word_frequency": 13572 + }, + { + "word": "tumulto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tumult", + "romanization": "tumulto", + "example_sentence_native": "C'era un grande tumulto nella piazza.", + "example_sentence_english": "There was a great tumult in the square.", + "pos": "noun", + "word_frequency": 13573 + }, + { + "word": "ultimatum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultimatum", + "romanization": "ultimatum", + "example_sentence_native": "Il governo ha emesso un ultimatum.", + "example_sentence_english": "The government issued an ultimatum.", + "pos": "noun", + "word_frequency": 13575 + }, + { + "word": "variamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variously", + "romanization": "variamente", + "example_sentence_native": "Le opinioni erano variamente espresse.", + "example_sentence_english": "The opinions were variously expressed.", + "pos": "adverb", + "word_frequency": 13576 + }, + { + "word": "vertigine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertigo", + "romanization": "vertigine", + "example_sentence_native": "Ha avuto una sensazione di vertigine.", + "example_sentence_english": "He had a sensation of dizziness.", + "pos": "noun", + "word_frequency": 13578 + }, + { + "word": "vetrata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stained-glass window", + "romanization": "vetrata", + "example_sentence_native": "La chiesa aveva una bellissima vetrata.", + "example_sentence_english": "The church had a beautiful stained-glass window.", + "pos": "noun", + "word_frequency": 13579 + }, + { + "word": "volgarità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulgarity", + "romanization": "volgarità", + "example_sentence_native": "Non tollerava la volgarità nel linguaggio.", + "example_sentence_english": "He did not tolerate vulgarity in language.", + "pos": "noun", + "word_frequency": 13581 + }, + { + "word": "zenzero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ginger", + "romanization": "zenzero", + "example_sentence_native": "Mi piace il tè allo zenzero.", + "example_sentence_english": "I like ginger tea.", + "pos": "noun", + "word_frequency": 13587 + }, + { + "word": "abete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fir tree", + "romanization": "abete", + "example_sentence_native": "L'albero di Natale era un abete.", + "example_sentence_english": "The Christmas tree was a fir tree.", + "pos": "noun", + "word_frequency": 13589 + }, + { + "word": "aldilà", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "afterlife", + "romanization": "aldilà", + "example_sentence_native": "Molte culture credono nell'aldilà.", + "example_sentence_english": "Many cultures believe in the afterlife.", + "pos": "noun", + "word_frequency": 13592 + }, + { + "word": "alito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breath", + "romanization": "alito", + "example_sentence_native": "Aveva un alito fresco dopo aver lavato i denti.", + "example_sentence_english": "He had fresh breath after brushing his teeth.", + "pos": "noun", + "word_frequency": 13593 + }, + { + "word": "annettere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to annex", + "romanization": "annettere", + "example_sentence_native": "Il paese ha deciso di annettere il territorio.", + "example_sentence_english": "The country decided to annex the territory.", + "pos": "verb", + "word_frequency": 13595 + }, + { + "word": "approssimazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximation", + "romanization": "approssimazione", + "example_sentence_native": "È solo un'approssimazione del valore reale.", + "example_sentence_english": "It's just an approximation of the real value.", + "pos": "noun", + "word_frequency": 13597 + }, + { + "word": "ara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altar", + "romanization": "ara", + "example_sentence_native": "L'antica ara era dedicata agli dei.", + "example_sentence_english": "The ancient altar was dedicated to the gods.", + "pos": "noun", + "word_frequency": 13598 + }, + { + "word": "atelier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "studio;workshop", + "romanization": "atelier", + "example_sentence_native": "L'artista lavora nel suo atelier ogni giorno.", + "example_sentence_english": "The artist works in his studio every day.", + "pos": "noun", + "word_frequency": 13602 + }, + { + "word": "avvalersi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to avail oneself of;to make use of", + "romanization": "avvalersi", + "example_sentence_native": "Puoi avvalerti del diritto di recesso entro quattordici giorni.", + "example_sentence_english": "You can avail yourself of the right of withdrawal within fourteen days.", + "pos": "verb", + "word_frequency": 13603 + }, + { + "word": "backstage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backstage", + "romanization": "backstage", + "example_sentence_native": "Abbiamo avuto l'opportunità di andare nel backstage dopo il concerto.", + "example_sentence_english": "We had the opportunity to go backstage after the concert.", + "pos": "noun", + "word_frequency": 13604 + }, + { + "word": "bisnonno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great-grandfather", + "romanization": "bisnonno", + "example_sentence_native": "Mio bisnonno ha compiuto cento anni l'anno scorso.", + "example_sentence_english": "My great-grandfather turned one hundred last year.", + "pos": "noun", + "word_frequency": 13607 + }, + { + "word": "boomerang", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boomerang", + "romanization": "boomerang", + "example_sentence_native": "Il boomerang è tornato indietro dopo averlo lanciato.", + "example_sentence_english": "The boomerang came back after I threw it.", + "pos": "noun", + "word_frequency": 13608 + }, + { + "word": "bora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bora (a strong;cold;dry wind)", + "romanization": "bora", + "example_sentence_native": "La bora è un vento forte che soffia spesso a Trieste.", + "example_sentence_english": "The bora is a strong wind that often blows in Trieste.", + "pos": "noun", + "word_frequency": 13609 + }, + { + "word": "braccetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arm in arm (often in 'a braccetto')", + "romanization": "braccetto", + "example_sentence_native": "Camminavano a braccetto lungo il viale.", + "example_sentence_english": "They walked arm in arm along the avenue.", + "pos": "noun", + "word_frequency": 13611 + }, + { + "word": "bruto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crude;rough;brutal", + "romanization": "bruto", + "example_sentence_native": "Il peso bruto della merce è di dieci chili.", + "example_sentence_english": "The gross weight of the goods is ten kilos.", + "pos": "adjective", + "word_frequency": 13613 + }, + { + "word": "buttarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw oneself;to dive in;to take a chance", + "romanization": "buttarsi", + "example_sentence_native": "Si è buttato in acqua senza esitazione.", + "example_sentence_english": "He threw himself into the water without hesitation.", + "pos": "verb", + "word_frequency": 13615 + }, + { + "word": "cabaret", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabaret", + "romanization": "cabaret", + "example_sentence_native": "Hanno assistito a uno spettacolo di cabaret molto divertente.", + "example_sentence_english": "They attended a very entertaining cabaret show.", + "pos": "noun", + "word_frequency": 13618 + }, + { + "word": "calcetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "five-a-side football;futsal", + "romanization": "calcetto", + "example_sentence_native": "Ogni martedì sera giochiamo a calcetto con gli amici.", + "example_sentence_english": "Every Tuesday evening we play five-a-side football with friends.", + "pos": "noun", + "word_frequency": 13620 + }, + { + "word": "cammello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camel", + "romanization": "cammello", + "example_sentence_native": "Il cammello può sopravvivere a lungo nel deserto senza acqua.", + "example_sentence_english": "The camel can survive for a long time in the desert without water.", + "pos": "noun", + "word_frequency": 13621 + }, + { + "word": "carezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caress;stroke", + "romanization": "carezza", + "example_sentence_native": "Le fece una dolce carezza sulla guancia.", + "example_sentence_english": "He gave her a gentle caress on the cheek.", + "pos": "noun", + "word_frequency": 13622 + }, + { + "word": "carovana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caravan;convoy", + "romanization": "carovana", + "example_sentence_native": "Una lunga carovana di cammelli attraversava il deserto.", + "example_sentence_english": "A long caravan of camels crossed the desert.", + "pos": "noun", + "word_frequency": 13623 + }, + { + "word": "cavia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guinea pig;test subject", + "romanization": "cavia", + "example_sentence_native": "Gli scienziati usano le cavie per i loro esperimenti.", + "example_sentence_english": "Scientists use guinea pigs for their experiments.", + "pos": "noun", + "word_frequency": 13625 + }, + { + "word": "cervicale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cervical (relating to the neck or cervix)", + "romanization": "cervicale", + "example_sentence_native": "Ho un forte dolore cervicale dopo aver dormito male.", + "example_sentence_english": "I have severe cervical pain after sleeping badly.", + "pos": "adjective", + "word_frequency": 13627 + }, + { + "word": "chilogrammo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "kilogram", + "romanization": "chilogrammo", + "example_sentence_native": "Vorrei un chilogrammo di mele, per favore.", + "example_sentence_english": "I would like one kilogram of apples, please.", + "pos": "noun", + "word_frequency": 13628 + }, + { + "word": "civilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civilly;politely", + "romanization": "civilmente", + "example_sentence_native": "Si sono separati civilmente, senza litigare.", + "example_sentence_english": "They separated civilly, without arguing.", + "pos": "adverb", + "word_frequency": 13631 + }, + { + "word": "commemorativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commemorative", + "romanization": "commemorativo", + "example_sentence_native": "Hanno emesso una moneta commemorativa per l'anniversario.", + "example_sentence_english": "They issued a commemorative coin for the anniversary.", + "pos": "adjective", + "word_frequency": 13633 + }, + { + "word": "concentrarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to concentrate;to focus", + "romanization": "concentrarsi", + "example_sentence_native": "È difficile concentrarsi con tutto questo rumore.", + "example_sentence_english": "It's difficult to concentrate with all this noise.", + "pos": "verb", + "word_frequency": 13634 + }, + { + "word": "contagioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contagious;infectious", + "romanization": "contagioso", + "example_sentence_native": "Il raffreddore è una malattia contagiosa.", + "example_sentence_english": "The common cold is a contagious disease.", + "pos": "adjective", + "word_frequency": 13635 + }, + { + "word": "contrapposto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contrapposto (in art);opposed;contrasted", + "romanization": "contrapposto", + "example_sentence_native": "La statua è un esempio perfetto di contrapposto.", + "example_sentence_english": "The statue is a perfect example of contrapposto.", + "pos": "adjective", + "word_frequency": 13636 + }, + { + "word": "cremonese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cremonese (from Cremona;or related to Cremona)", + "romanization": "cremonese", + "example_sentence_native": "La cucina cremonese è famosa per il torrone.", + "example_sentence_english": "Cremonese cuisine is famous for nougat.", + "pos": "adjective", + "word_frequency": 13639 + }, + { + "word": "crespo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frizz;crimp", + "romanization": "crespo", + "example_sentence_native": "Il crespo dei suoi capelli era difficile da domare.", + "example_sentence_english": "The frizz of her hair was difficult to tame.", + "pos": "noun", + "word_frequency": 13640 + }, + { + "word": "delicatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "delicately;gently", + "romanization": "delicatamente", + "example_sentence_native": "Aprì la porta delicatamente per non svegliarlo.", + "example_sentence_english": "She opened the door delicately so as not to wake him.", + "pos": "adverb", + "word_frequency": 13645 + }, + { + "word": "denominatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denominator", + "romanization": "denominatore", + "example_sentence_native": "Il minimo comune denominatore è 12.", + "example_sentence_english": "The least common denominator is 12.", + "pos": "noun", + "word_frequency": 13648 + }, + { + "word": "deporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depose;to lay down;to testify", + "romanization": "deporre", + "example_sentence_native": "Il testimone ha dovuto deporre in tribunale.", + "example_sentence_english": "The witness had to testify in court.", + "pos": "verb", + "word_frequency": 13649 + }, + { + "word": "dichiaratamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "openly;declaredly", + "romanization": "dichiaratamente", + "example_sentence_native": "Era dichiaratamente contrario alla proposta.", + "example_sentence_english": "He was openly against the proposal.", + "pos": "adverb", + "word_frequency": 13650 + }, + { + "word": "digitalizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digitalization", + "romanization": "digitalizzazione", + "example_sentence_native": "La digitalizzazione dei documenti è un processo in corso.", + "example_sentence_english": "The digitalization of documents is an ongoing process.", + "pos": "noun", + "word_frequency": 13651 + }, + { + "word": "dimenticarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to forget (oneself);to forget", + "romanization": "dimenticarsi", + "example_sentence_native": "Mi sono dimenticato le chiavi a casa.", + "example_sentence_english": "I forgot my keys at home.", + "pos": "verb", + "word_frequency": 13652 + }, + { + "word": "distinguersi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to distinguish oneself;to stand out", + "romanization": "distinguersi", + "example_sentence_native": "Si è distinto per il suo talento.", + "example_sentence_english": "He distinguished himself with his talent.", + "pos": "verb", + "word_frequency": 13653 + }, + { + "word": "dolere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ache;to hurt", + "romanization": "dolere", + "example_sentence_native": "Mi duole la testa.", + "example_sentence_english": "My head aches.", + "pos": "verb", + "word_frequency": 13655 + }, + { + "word": "eclatante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "striking;sensational;blatant", + "romanization": "eclatante", + "example_sentence_native": "Ha ottenuto un successo eclatante.", + "example_sentence_english": "He achieved a striking success.", + "pos": "adjective", + "word_frequency": 13656 + }, + { + "word": "elevare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to raise;to elevate", + "romanization": "elevare", + "example_sentence_native": "Hanno elevato il livello del dibattito.", + "example_sentence_english": "They raised the level of the debate.", + "pos": "verb", + "word_frequency": 13658 + }, + { + "word": "esecutore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "executor;performer", + "romanization": "esecutore", + "example_sentence_native": "L'esecutore testamentario si occuperà della successione.", + "example_sentence_english": "The executor will handle the succession.", + "pos": "noun", + "word_frequency": 13660 + }, + { + "word": "esitazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hesitation", + "romanization": "esitazione", + "example_sentence_native": "Non c'è stata alcuna esitazione nella sua risposta.", + "example_sentence_english": "There was no hesitation in his answer.", + "pos": "noun", + "word_frequency": 13661 + }, + { + "word": "esploratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "explorer", + "romanization": "esploratore", + "example_sentence_native": "Era un famoso esploratore del Polo Nord.", + "example_sentence_english": "He was a famous explorer of the North Pole.", + "pos": "noun", + "word_frequency": 13662 + }, + { + "word": "fidarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to trust", + "romanization": "fidarsi", + "example_sentence_native": "Non mi fido di nessuno.", + "example_sentence_english": "I don't trust anyone.", + "pos": "verb", + "word_frequency": 13664 + }, + { + "word": "filiera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supply chain;production chain", + "romanization": "filiera", + "example_sentence_native": "La filiera produttiva è molto complessa.", + "example_sentence_english": "The production chain is very complex.", + "pos": "noun", + "word_frequency": 13665 + }, + { + "word": "filmare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to film;to shoot (a movie)", + "romanization": "filmare", + "example_sentence_native": "Stanno filmando un nuovo documentario.", + "example_sentence_english": "They are filming a new documentary.", + "pos": "verb", + "word_frequency": 13666 + }, + { + "word": "foglietto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small sheet of paper;leaflet;note", + "romanization": "foglietto", + "example_sentence_native": "Ho scritto un appunto su un foglietto.", + "example_sentence_english": "I wrote a note on a small sheet of paper.", + "pos": "noun", + "word_frequency": 13668 + }, + { + "word": "geologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geological", + "romanization": "geologico", + "example_sentence_native": "Stanno conducendo uno studio geologico della zona.", + "example_sentence_english": "They are conducting a geological study of the area.", + "pos": "adjective", + "word_frequency": 13672 + }, + { + "word": "geometra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "surveyor;quantity surveyor", + "romanization": "geometra", + "example_sentence_native": "Ho chiamato il geometra per misurare il terreno.", + "example_sentence_english": "I called the surveyor to measure the land.", + "pos": "noun", + "word_frequency": 13673 + }, + { + "word": "gettito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revenue;yield (e.g.;tax revenue)", + "romanization": "gettito", + "example_sentence_native": "Il gettito fiscale è aumentato quest'anno.", + "example_sentence_english": "Tax revenue increased this year.", + "pos": "noun", + "word_frequency": 13674 + }, + { + "word": "gommone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inflatable boat;dinghy", + "romanization": "gommone", + "example_sentence_native": "Siamo andati in gommone lungo la costa.", + "example_sentence_english": "We went by inflatable boat along the coast.", + "pos": "noun", + "word_frequency": 13678 + }, + { + "word": "holding", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holding (company)", + "romanization": "holding", + "example_sentence_native": "La holding controlla diverse aziende nel settore tecnologico.", + "example_sentence_english": "The holding company controls several businesses in the technology sector.", + "pos": "noun", + "word_frequency": 13682 + }, + { + "word": "idioma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "idiom;language", + "romanization": "idioma", + "example_sentence_native": "Ogni lingua ha i suoi propri idiomi.", + "example_sentence_english": "Every language has its own idioms.", + "pos": "noun", + "word_frequency": 13683 + }, + { + "word": "ignobile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ignoble;vile", + "romanization": "ignobile", + "example_sentence_native": "Il suo comportamento è stato davvero ignobile.", + "example_sentence_english": "His behavior was truly ignoble.", + "pos": "adjective", + "word_frequency": 13685 + }, + { + "word": "immane", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immense;enormous", + "romanization": "immane", + "example_sentence_native": "Ha affrontato un'impresa immane.", + "example_sentence_english": "He faced an immense undertaking.", + "pos": "adjective", + "word_frequency": 13686 + }, + { + "word": "improvvisazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "improvisation", + "romanization": "improvvisazione", + "example_sentence_native": "Lo spettacolo è stato basato sull'improvvisazione.", + "example_sentence_english": "The show was based on improvisation.", + "pos": "noun", + "word_frequency": 13687 + }, + { + "word": "incessante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incessant;uninterrupted", + "romanization": "incessante", + "example_sentence_native": "La pioggia incessante ha causato allagamenti.", + "example_sentence_english": "The incessant rain caused flooding.", + "pos": "adjective", + "word_frequency": 13688 + }, + { + "word": "incorporato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incorporated;built-in", + "romanization": "incorporato", + "example_sentence_native": "Il microfono è incorporato nel laptop.", + "example_sentence_english": "The microphone is built-in to the laptop.", + "pos": "adjective", + "word_frequency": 13689 + }, + { + "word": "indomani", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "the next day;the day after", + "romanization": "indomani", + "example_sentence_native": "L'indomani della festa, tutti erano stanchi.", + "example_sentence_english": "The day after the party, everyone was tired.", + "pos": "noun", + "word_frequency": 13690 + }, + { + "word": "industrializzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrialization", + "romanization": "industrializzazione", + "example_sentence_native": "L'industrializzazione ha cambiato radicalmente la società.", + "example_sentence_english": "Industrialization radically changed society.", + "pos": "noun", + "word_frequency": 13691 + }, + { + "word": "inondazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flood;inundation", + "romanization": "inondazione", + "example_sentence_native": "La città è stata colpita da una grave inondazione.", + "example_sentence_english": "The city was hit by a severe flood.", + "pos": "noun", + "word_frequency": 13692 + }, + { + "word": "inopportuno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inopportune;unsuitable", + "romanization": "inopportuno", + "example_sentence_native": "Il suo commento è stato del tutto inopportuno.", + "example_sentence_english": "His comment was completely inopportune.", + "pos": "adjective", + "word_frequency": 13693 + }, + { + "word": "inquieto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restless;uneasy", + "romanization": "inquieto", + "example_sentence_native": "Era inquieto per l'esame imminente.", + "example_sentence_english": "He was uneasy about the upcoming exam.", + "pos": "adjective", + "word_frequency": 13694 + }, + { + "word": "inquirente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "investigator;inquirer", + "romanization": "inquirente", + "example_sentence_native": "L'inquirente ha interrogato i testimoni.", + "example_sentence_english": "The investigator questioned the witnesses.", + "pos": "noun", + "word_frequency": 13695 + }, + { + "word": "integrarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to integrate;to fit in", + "romanization": "integrarsi", + "example_sentence_native": "È difficile integrarsi in una nuova cultura.", + "example_sentence_english": "It's difficult to integrate into a new culture.", + "pos": "verb", + "word_frequency": 13696 + }, + { + "word": "intercettato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intercepted", + "romanization": "intercettato", + "example_sentence_native": "Il messaggio è stato intercettato dalla polizia.", + "example_sentence_english": "The message was intercepted by the police.", + "pos": "adjective", + "word_frequency": 13697 + }, + { + "word": "interrotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interrupted;broken", + "romanization": "interrotto", + "example_sentence_native": "La linea telefonica è interrotta.", + "example_sentence_english": "The phone line is interrupted.", + "pos": "adjective", + "word_frequency": 13698 + }, + { + "word": "intestato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registered in the name of;headed", + "romanization": "intestato", + "example_sentence_native": "La casa è intestata a sua moglie.", + "example_sentence_english": "The house is registered in his wife's name.", + "pos": "adjective", + "word_frequency": 13699 + }, + { + "word": "irritato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "irritated;annoyed", + "romanization": "irritato", + "example_sentence_native": "Era molto irritato dal rumore.", + "example_sentence_english": "He was very irritated by the noise.", + "pos": "adjective", + "word_frequency": 13701 + }, + { + "word": "kamikaze", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kamikaze", + "romanization": "kamikaze", + "example_sentence_native": "L'attentatore suicida è stato definito un kamikaze.", + "example_sentence_english": "The suicide bomber was called a kamikaze.", + "pos": "noun", + "word_frequency": 13704 + }, + { + "word": "lattina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "can (tin)", + "romanization": "lattina", + "example_sentence_native": "Ho bevuto una lattina di cola.", + "example_sentence_english": "I drank a can of cola.", + "pos": "noun", + "word_frequency": 13708 + }, + { + "word": "liceale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "high school (student;related to high school)", + "romanization": "liceale", + "example_sentence_native": "È uno studente liceale.", + "example_sentence_english": "He is a high school student.", + "pos": "adjective", + "word_frequency": 13710 + }, + { + "word": "lineamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feature (of a face);outline", + "romanization": "lineamento", + "example_sentence_native": "I suoi lineamenti sono molto delicati.", + "example_sentence_english": "Her features are very delicate.", + "pos": "noun", + "word_frequency": 13712 + }, + { + "word": "lodo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "award;arbitration award", + "romanization": "lodo", + "example_sentence_native": "Il lodo arbitrale ha risolto la disputa.", + "example_sentence_english": "The arbitration award resolved the dispute.", + "pos": "noun", + "word_frequency": 13714 + }, + { + "word": "magnate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnate", + "romanization": "magnate", + "example_sentence_native": "È diventato un magnate dell'industria tecnologica.", + "example_sentence_english": "He became a magnate in the technology industry.", + "pos": "noun", + "word_frequency": 13717 + }, + { + "word": "malamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "badly;poorly", + "romanization": "malamente", + "example_sentence_native": "Ha reagito malamente alla notizia.", + "example_sentence_english": "He reacted badly to the news.", + "pos": "adverb", + "word_frequency": 13719 + }, + { + "word": "malo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bad;evil", + "romanization": "malo", + "example_sentence_native": "Il malocchio è una credenza popolare.", + "example_sentence_english": "The evil eye is a popular belief.", + "pos": "adjective", + "word_frequency": 13720 + }, + { + "word": "malore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sudden illness;indisposition", + "romanization": "malore", + "example_sentence_native": "Ha avuto un malore improvviso durante la riunione.", + "example_sentence_english": "He had a sudden illness during the meeting.", + "pos": "noun", + "word_frequency": 13721 + }, + { + "word": "mandibola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jaw;mandible", + "romanization": "mandibola", + "example_sentence_native": "Il dentista ha esaminato la sua mandibola.", + "example_sentence_english": "The dentist examined his jaw.", + "pos": "noun", + "word_frequency": 13722 + }, + { + "word": "marcire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rot;to decay", + "romanization": "marcire", + "example_sentence_native": "La frutta lasciata fuori marciva velocemente.", + "example_sentence_english": "The fruit left outside rotted quickly.", + "pos": "verb", + "word_frequency": 13724 + }, + { + "word": "marionetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puppet;marionette", + "romanization": "marionetta", + "example_sentence_native": "I bambini amano lo spettacolo delle marionette.", + "example_sentence_english": "Children love the puppet show.", + "pos": "noun", + "word_frequency": 13725 + }, + { + "word": "mat", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "matte;dull", + "romanization": "mat", + "example_sentence_native": "Ha scelto una vernice con finitura mat per le pareti.", + "example_sentence_english": "She chose a paint with a matte finish for the walls.", + "pos": "adjective", + "word_frequency": 13726 + }, + { + "word": "merlo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blackbird", + "romanization": "merlo", + "example_sentence_native": "Un merlo cantava sul ramo dell'albero.", + "example_sentence_english": "A blackbird was singing on the tree branch.", + "pos": "noun", + "word_frequency": 13727 + }, + { + "word": "moderatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moderately", + "romanization": "moderatamente", + "example_sentence_native": "Il clima è moderatamente caldo in questa stagione.", + "example_sentence_english": "The climate is moderately warm this season.", + "pos": "adverb", + "word_frequency": 13731 + }, + { + "word": "mulo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mule", + "romanization": "mulo", + "example_sentence_native": "Il mulo è un animale forte e resistente.", + "example_sentence_english": "The mule is a strong and resistant animal.", + "pos": "noun", + "word_frequency": 13734 + }, + { + "word": "novello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "new;young", + "romanization": "novello", + "example_sentence_native": "Abbiamo assaggiato il vino novello.", + "example_sentence_english": "We tasted the new wine.", + "pos": "adjective", + "word_frequency": 13739 + }, + { + "word": "oltrepassato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surpassed;exceeded;gone beyond", + "romanization": "oltrepassato", + "example_sentence_native": "Il limite di velocità è stato oltrepassato.", + "example_sentence_english": "The speed limit has been exceeded.", + "pos": "adjective", + "word_frequency": 13743 + }, + { + "word": "omissione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omission", + "romanization": "omissione", + "example_sentence_native": "L'omissione di dettagli importanti può causare problemi.", + "example_sentence_english": "The omission of important details can cause problems.", + "pos": "noun", + "word_frequency": 13744 + }, + { + "word": "opus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "work;opus", + "romanization": "opus", + "example_sentence_native": "Quest'opera è considerata il suo opus magnum.", + "example_sentence_english": "This work is considered his magnum opus.", + "pos": "noun", + "word_frequency": 13745 + }, + { + "word": "ortografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spelling;orthography", + "romanization": "ortografia", + "example_sentence_native": "È importante avere una buona ortografia.", + "example_sentence_english": "It's important to have good spelling.", + "pos": "noun", + "word_frequency": 13746 + }, + { + "word": "ottimizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to optimize", + "romanization": "ottimizzare", + "example_sentence_native": "Dobbiamo ottimizzare i processi per aumentare l'efficienza.", + "example_sentence_english": "We need to optimize the processes to increase efficiency.", + "pos": "verb", + "word_frequency": 13747 + }, + { + "word": "outfit", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "outfit", + "romanization": "outfit", + "example_sentence_native": "Ha scelto un outfit elegante per la serata.", + "example_sentence_english": "She chose an elegant outfit for the evening.", + "pos": "noun", + "word_frequency": 13748 + }, + { + "word": "pad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pad", + "romanization": "pad", + "example_sentence_native": "Ho comprato un nuovo pad per disegnare.", + "example_sentence_english": "I bought a new pad for drawing.", + "pos": "noun", + "word_frequency": 13749 + }, + { + "word": "papato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papacy", + "romanization": "papato", + "example_sentence_native": "La storia del papato è molto complessa.", + "example_sentence_english": "The history of the papacy is very complex.", + "pos": "noun", + "word_frequency": 13751 + }, + { + "word": "patito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffering;worn out;fan;enthusiast", + "romanization": "patito", + "example_sentence_native": "Era un patito di calcio fin da bambino.", + "example_sentence_english": "He was a football fan since childhood.", + "pos": "adjective", + "word_frequency": 13752 + }, + { + "word": "pergamena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parchment", + "romanization": "pergamena", + "example_sentence_native": "Il vecchio documento era scritto su pergamena.", + "example_sentence_english": "The old document was written on parchment.", + "pos": "noun", + "word_frequency": 13753 + }, + { + "word": "perverso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perverse;wicked", + "romanization": "perverso", + "example_sentence_native": "Ha mostrato un comportamento perverso.", + "example_sentence_english": "He showed perverse behavior.", + "pos": "adjective", + "word_frequency": 13755 + }, + { + "word": "pescato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caught;fished", + "romanization": "pescato", + "example_sentence_native": "Il pesce pescato oggi è freschissimo.", + "example_sentence_english": "The fish caught today is very fresh.", + "pos": "adjective", + "word_frequency": 13756 + }, + { + "word": "petrolifero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil;petroleum (adj.)", + "romanization": "petrolifero", + "example_sentence_native": "La crisi petrolifera ha avuto un grande impatto sull'economia.", + "example_sentence_english": "The oil crisis had a big impact on the economy.", + "pos": "adjective", + "word_frequency": 13757 + }, + { + "word": "picnic", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "picnic", + "romanization": "picnic", + "example_sentence_native": "Abbiamo organizzato un picnic al parco.", + "example_sentence_english": "We organized a picnic at the park.", + "pos": "noun", + "word_frequency": 13758 + }, + { + "word": "piece", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piece (e.g.;of art;music;theatre)", + "romanization": "piece", + "example_sentence_native": "La sua ultima piece teatrale è stata un successo.", + "example_sentence_english": "His latest theatrical piece was a success.", + "pos": "noun", + "word_frequency": 13759 + }, + { + "word": "polpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pulp;flesh (of fruit;meat)", + "romanization": "polpa", + "example_sentence_native": "La polpa del pomodoro è molto succosa.", + "example_sentence_english": "The pulp of the tomato is very juicy.", + "pos": "noun", + "word_frequency": 13762 + }, + { + "word": "poro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pore", + "romanization": "poro", + "example_sentence_native": "I pori della pelle si dilatano con il calore.", + "example_sentence_english": "Skin pores dilate with heat.", + "pos": "noun", + "word_frequency": 13763 + }, + { + "word": "posare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to place;to lay;to pose (for a photo)", + "romanization": "posare", + "example_sentence_native": "Ha posato il libro sul tavolo.", + "example_sentence_english": "He placed the book on the table.", + "pos": "verb", + "word_frequency": 13764 + }, + { + "word": "postumo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "posthumous", + "romanization": "postumo", + "example_sentence_native": "Il suo ultimo romanzo è stato pubblicato postumo.", + "example_sentence_english": "His last novel was published posthumously.", + "pos": "adjective", + "word_frequency": 13765 + }, + { + "word": "pound", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pound (currency or weight)", + "romanization": "pound", + "example_sentence_native": "La sterlina è la valuta del Regno Unito, anche chiamata pound.", + "example_sentence_english": "The pound is the currency of the United Kingdom, also called pound.", + "pos": "noun", + "word_frequency": 13766 + }, + { + "word": "professional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "professional", + "romanization": "professional", + "example_sentence_native": "È un atleta professional e si allena ogni giorno.", + "example_sentence_english": "He is a professional athlete and trains every day.", + "pos": "adjective", + "word_frequency": 13767 + }, + { + "word": "puma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puma;cougar", + "romanization": "puma", + "example_sentence_native": "Il puma è un grande felino nativo delle Americhe.", + "example_sentence_english": "The puma is a large feline native to the Americas.", + "pos": "noun", + "word_frequency": 13768 + }, + { + "word": "quarzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quartz", + "romanization": "quarzo", + "example_sentence_native": "L'orologio ha un movimento al quarzo.", + "example_sentence_english": "The watch has a quartz movement.", + "pos": "noun", + "word_frequency": 13769 + }, + { + "word": "quintale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quintal (100 kg)", + "romanization": "quintale", + "example_sentence_native": "Un quintale equivale a cento chilogrammi.", + "example_sentence_english": "One quintal is equivalent to one hundred kilograms.", + "pos": "noun", + "word_frequency": 13771 + }, + { + "word": "reclutare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recruit", + "romanization": "reclutare", + "example_sentence_native": "L'azienda sta cercando di reclutare nuovi talenti.", + "example_sentence_english": "The company is trying to recruit new talents.", + "pos": "verb", + "word_frequency": 13772 + }, + { + "word": "relazionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relational", + "romanization": "relazionale", + "example_sentence_native": "Le sue capacità relazionali sono eccellenti.", + "example_sentence_english": "His relational skills are excellent.", + "pos": "adjective", + "word_frequency": 13773 + }, + { + "word": "ridursi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reduce oneself;to be reduced;to end up", + "romanization": "ridursi", + "example_sentence_native": "Si è ridotto a vivere con poco.", + "example_sentence_english": "He ended up living on very little.", + "pos": "verb", + "word_frequency": 13774 + }, + { + "word": "riparlare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to talk again;to discuss again", + "romanization": "riparlare", + "example_sentence_native": "Dobbiamo riparlarne domani.", + "example_sentence_english": "We need to talk about it again tomorrow.", + "pos": "verb", + "word_frequency": 13775 + }, + { + "word": "ritmico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhythmic", + "romanization": "ritmico", + "example_sentence_native": "La musica aveva un ritmo molto ritmico.", + "example_sentence_english": "The music had a very rhythmic beat.", + "pos": "adjective", + "word_frequency": 13776 + }, + { + "word": "rombo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhombus;rumble;turbot (fish)", + "romanization": "rombo", + "example_sentence_native": "Ho sentito un rombo lontano provenire dal motore.", + "example_sentence_english": "I heard a distant rumble coming from the engine.", + "pos": "noun", + "word_frequency": 13777 + }, + { + "word": "rouge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rouge;blush", + "romanization": "rouge", + "example_sentence_native": "Ha applicato un po' di rouge sulle guance.", + "example_sentence_english": "She applied some rouge to her cheeks.", + "pos": "noun", + "word_frequency": 13778 + }, + { + "word": "rovesciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "overturned;spilled;inside out", + "romanization": "rovesciato", + "example_sentence_native": "Il bicchiere si è rovesciato e l'acqua è finita sul tavolo.", + "example_sentence_english": "The glass overturned and the water ended up on the table.", + "pos": "adjective", + "word_frequency": 13779 + }, + { + "word": "ruotare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rotate;to spin", + "romanization": "ruotare", + "example_sentence_native": "La Terra ruota attorno al Sole.", + "example_sentence_english": "The Earth rotates around the Sun.", + "pos": "verb", + "word_frequency": 13780 + }, + { + "word": "sabotaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sabotage", + "romanization": "sabotaggio", + "example_sentence_native": "Le autorità sospettano un atto di sabotaggio.", + "example_sentence_english": "The authorities suspect an act of sabotage.", + "pos": "noun", + "word_frequency": 13781 + }, + { + "word": "safety", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "safety", + "romanization": "safety", + "example_sentence_native": "La safety car è entrata in pista.", + "example_sentence_english": "The safety car entered the track.", + "pos": "noun", + "word_frequency": 13782 + }, + { + "word": "scaduto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "expired;overdue", + "romanization": "scaduto", + "example_sentence_native": "Il latte è scaduto, non berlo.", + "example_sentence_english": "The milk is expired, don't drink it.", + "pos": "adjective", + "word_frequency": 13783 + }, + { + "word": "seminterrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basement;semi-basement", + "romanization": "seminterrato", + "example_sentence_native": "Vivono in un appartamento seminterrato.", + "example_sentence_english": "They live in a semi-basement apartment.", + "pos": "noun", + "word_frequency": 13786 + }, + { + "word": "separarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to separate (oneself);to split up", + "romanization": "separarsi", + "example_sentence_native": "Hanno deciso di separarsi dopo vent'anni di matrimonio.", + "example_sentence_english": "They decided to separate after twenty years of marriage.", + "pos": "verb", + "word_frequency": 13789 + }, + { + "word": "sfogare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to vent;to let off steam;to unleash", + "romanization": "sfogare", + "example_sentence_native": "Ha bisogno di sfogare la sua rabbia.", + "example_sentence_english": "He needs to vent his anger.", + "pos": "verb", + "word_frequency": 13790 + }, + { + "word": "shield", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shield", + "romanization": "shield", + "example_sentence_native": "Il personaggio ha equipaggiato un nuovo shield.", + "example_sentence_english": "The character equipped a new shield.", + "pos": "noun", + "word_frequency": 13791 + }, + { + "word": "signorile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stately;elegant;lordly", + "romanization": "signorile", + "example_sentence_native": "Vive in un quartiere molto signorile.", + "example_sentence_english": "He lives in a very elegant neighborhood.", + "pos": "adjective", + "word_frequency": 13792 + }, + { + "word": "simpatizzante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sympathizer;supporter", + "romanization": "simpatizzante", + "example_sentence_native": "È un simpatizzante del partito verde.", + "example_sentence_english": "He is a sympathizer of the green party.", + "pos": "noun", + "word_frequency": 13793 + }, + { + "word": "sobborgo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suburb", + "romanization": "sobborgo", + "example_sentence_native": "Molte persone preferiscono vivere nei sobborghi.", + "example_sentence_english": "Many people prefer to live in the suburbs.", + "pos": "noun", + "word_frequency": 13794 + }, + { + "word": "sociologo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociologist", + "romanization": "sociologo", + "example_sentence_native": "Il sociologo ha analizzato i dati demografici.", + "example_sentence_english": "The sociologist analyzed the demographic data.", + "pos": "noun", + "word_frequency": 13795 + }, + { + "word": "specchietto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small mirror;rearview mirror", + "romanization": "specchietto", + "example_sentence_native": "Controlla lo specchietto retrovisore prima di cambiare corsia.", + "example_sentence_english": "Check the rearview mirror before changing lanes.", + "pos": "noun", + "word_frequency": 13796 + }, + { + "word": "staccato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "staccato;detached", + "romanization": "staccato", + "example_sentence_native": "Ha suonato le note in modo staccato.", + "example_sentence_english": "He played the notes in a staccato manner.", + "pos": "adjective", + "word_frequency": 13797 + }, + { + "word": "stalking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stalking", + "romanization": "stalking", + "example_sentence_native": "Il reato di stalking è punibile dalla legge.", + "example_sentence_english": "The crime of stalking is punishable by law.", + "pos": "noun", + "word_frequency": 13798 + }, + { + "word": "susseguire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to follow one another;to succeed", + "romanization": "susseguire", + "example_sentence_native": "Gli eventi si susseguirono rapidamente.", + "example_sentence_english": "The events followed one another rapidly.", + "pos": "verb", + "word_frequency": 13802 + }, + { + "word": "trainer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trainer", + "romanization": "trainer", + "example_sentence_native": "Il mio trainer mi ha aiutato a migliorare la mia forma fisica.", + "example_sentence_english": "My trainer helped me improve my fitness.", + "pos": "noun", + "word_frequency": 13804 + }, + { + "word": "trekking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trekking;hiking", + "romanization": "trekking", + "example_sentence_native": "Andiamo a fare trekking in montagna questo fine settimana.", + "example_sentence_english": "We're going trekking in the mountains this weekend.", + "pos": "noun", + "word_frequency": 13806 + }, + { + "word": "turbina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbine", + "romanization": "turbina", + "example_sentence_native": "La turbina genera energia elettrica.", + "example_sentence_english": "The turbine generates electrical energy.", + "pos": "noun", + "word_frequency": 13808 + }, + { + "word": "vagabondo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vagabond;tramp", + "romanization": "vagabondo", + "example_sentence_native": "Il vagabondo cercava riparo per la notte.", + "example_sentence_english": "The vagabond was looking for shelter for the night.", + "pos": "noun", + "word_frequency": 13812 + }, + { + "word": "vicedirettore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy director;assistant director", + "romanization": "vicedirettore", + "example_sentence_native": "Il vicedirettore ha presieduto la riunione.", + "example_sentence_english": "The deputy director chaired the meeting.", + "pos": "noun", + "word_frequency": 13816 + }, + { + "word": "viceré", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viceroy", + "romanization": "viceré", + "example_sentence_native": "Il viceré governava la colonia in nome del re.", + "example_sentence_english": "The viceroy governed the colony in the king's name.", + "pos": "noun", + "word_frequency": 13817 + }, + { + "word": "virgoletta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quotation mark (single)", + "romanization": "virgoletta", + "example_sentence_native": "Usa le virgolette per citare le parole esatte.", + "example_sentence_english": "Use quotation marks to quote the exact words.", + "pos": "noun", + "word_frequency": 13818 + }, + { + "word": "watt", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watt", + "romanization": "watt", + "example_sentence_native": "La lampadina consuma 60 watt.", + "example_sentence_english": "The light bulb consumes 60 watts.", + "pos": "noun", + "word_frequency": 13819 + }, + { + "word": "abituarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get used to;to accustom oneself", + "romanization": "abituarsi", + "example_sentence_native": "Mi sto abituando al nuovo orario.", + "example_sentence_english": "I'm getting used to the new schedule.", + "pos": "verb", + "word_frequency": 13826 + }, + { + "word": "abrogazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repeal;abrogation", + "romanization": "abrogazione", + "example_sentence_native": "L'abrogazione della legge è stata votata dal parlamento.", + "example_sentence_english": "The repeal of the law was voted by parliament.", + "pos": "noun", + "word_frequency": 13827 + }, + { + "word": "accostare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pull over;to approach;to put side by side", + "romanization": "accostare", + "example_sentence_native": "L'autista ha accostato l'auto al marciapiede.", + "example_sentence_english": "The driver pulled the car over to the curb.", + "pos": "verb", + "word_frequency": 13828 + }, + { + "word": "aforisma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aphorism", + "romanization": "aforisma", + "example_sentence_native": "Ha concluso il discorso con un aforisma.", + "example_sentence_english": "He concluded the speech with an aphorism.", + "pos": "noun", + "word_frequency": 13830 + }, + { + "word": "aloe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aloe", + "romanization": "aloe", + "example_sentence_native": "L'aloe vera è usata in molti prodotti di bellezza.", + "example_sentence_english": "Aloe vera is used in many beauty products.", + "pos": "noun", + "word_frequency": 13835 + }, + { + "word": "annoiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bore", + "romanization": "annoiare", + "example_sentence_native": "Il film mi ha annoiato molto.", + "example_sentence_english": "The movie bored me a lot.", + "pos": "verb", + "word_frequency": 13837 + }, + { + "word": "antagonista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antagonist", + "romanization": "antagonista", + "example_sentence_native": "Il cattivo è l'antagonista della storia.", + "example_sentence_english": "The villain is the antagonist of the story.", + "pos": "noun", + "word_frequency": 13838 + }, + { + "word": "argomentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to argue;to reason", + "romanization": "argomentare", + "example_sentence_native": "È importante saper argomentare le proprie idee.", + "example_sentence_english": "It's important to know how to argue your ideas.", + "pos": "verb", + "word_frequency": 13839 + }, + { + "word": "aspro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sour;harsh", + "romanization": "aspro", + "example_sentence_native": "Il limone ha un sapore aspro.", + "example_sentence_english": "The lemon has a sour taste.", + "pos": "adjective", + "word_frequency": 13840 + }, + { + "word": "asteroide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asteroid", + "romanization": "asteroide", + "example_sentence_native": "Un asteroide è passato vicino alla Terra.", + "example_sentence_english": "An asteroid passed close to Earth.", + "pos": "noun", + "word_frequency": 13841 + }, + { + "word": "astro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "star;celestial body", + "romanization": "astro", + "example_sentence_native": "Gli antichi studiavano il movimento degli astri.", + "example_sentence_english": "The ancients studied the movement of celestial bodies.", + "pos": "noun", + "word_frequency": 13842 + }, + { + "word": "ateismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atheism", + "romanization": "ateismo", + "example_sentence_native": "L'ateismo è la mancanza di credenza in divinità.", + "example_sentence_english": "Atheism is the lack of belief in deities.", + "pos": "noun", + "word_frequency": 13845 + }, + { + "word": "attinente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pertinent;relevant", + "romanization": "attinente", + "example_sentence_native": "La sua domanda non è attinente all'argomento.", + "example_sentence_english": "His question is not pertinent to the topic.", + "pos": "adjective", + "word_frequency": 13846 + }, + { + "word": "attivato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activated;enabled", + "romanization": "attivato", + "example_sentence_native": "L'allarme è stato attivato per errore.", + "example_sentence_english": "The alarm was activated by mistake.", + "pos": "adjective", + "word_frequency": 13847 + }, + { + "word": "auspicabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desirable;advisable", + "romanization": "auspicabile", + "example_sentence_native": "È auspicabile che la situazione migliori presto.", + "example_sentence_english": "It is desirable that the situation improves soon.", + "pos": "adjective", + "word_frequency": 13848 + }, + { + "word": "avidità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greed;avidity", + "romanization": "avidità", + "example_sentence_native": "L'avidità può portare a decisioni sbagliate.", + "example_sentence_english": "Greed can lead to wrong decisions.", + "pos": "noun", + "word_frequency": 13849 + }, + { + "word": "bancarella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stall;stand (market)", + "romanization": "bancarella", + "example_sentence_native": "Ho comprato frutta fresca alla bancarella del mercato.", + "example_sentence_english": "I bought fresh fruit at the market stall.", + "pos": "noun", + "word_frequency": 13851 + }, + { + "word": "batterista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drummer", + "romanization": "batterista", + "example_sentence_native": "Il batterista ha un ritmo incredibile.", + "example_sentence_english": "The drummer has an incredible rhythm.", + "pos": "noun", + "word_frequency": 13853 + }, + { + "word": "biglietteria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ticket office", + "romanization": "biglietteria", + "example_sentence_native": "Puoi comprare i biglietti alla biglietteria.", + "example_sentence_english": "You can buy tickets at the ticket office.", + "pos": "noun", + "word_frequency": 13855 + }, + { + "word": "biologo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biologist", + "romanization": "biologo", + "example_sentence_native": "Il biologo studia gli organismi viventi.", + "example_sentence_english": "The biologist studies living organisms.", + "pos": "noun", + "word_frequency": 13857 + }, + { + "word": "broker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broker", + "romanization": "broker", + "example_sentence_native": "Il broker ha gestito i miei investimenti.", + "example_sentence_english": "The broker managed my investments.", + "pos": "noun", + "word_frequency": 13861 + }, + { + "word": "burger", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "burger", + "romanization": "burger", + "example_sentence_native": "Vorrei un burger con patatine fritte.", + "example_sentence_english": "I would like a burger with french fries.", + "pos": "noun", + "word_frequency": 13863 + }, + { + "word": "burocrate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bureaucrat", + "romanization": "burocrate", + "example_sentence_native": "Il burocrate ha richiesto molti documenti.", + "example_sentence_english": "The bureaucrat requested many documents.", + "pos": "noun", + "word_frequency": 13864 + }, + { + "word": "carbon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carbon", + "romanization": "carbon", + "example_sentence_native": "Il carbon è un elemento fondamentale per la vita.", + "example_sentence_english": "Carbon is a fundamental element for life.", + "pos": "noun", + "word_frequency": 13866 + }, + { + "word": "celibato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "celibacy", + "romanization": "celibato", + "example_sentence_native": "Il celibato è una scelta di vita per alcuni religiosi.", + "example_sentence_english": "Celibacy is a life choice for some religious people.", + "pos": "noun", + "word_frequency": 13868 + }, + { + "word": "ciclone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyclone", + "romanization": "ciclone", + "example_sentence_native": "Un ciclone tropicale si sta avvicinando alla costa.", + "example_sentence_english": "A tropical cyclone is approaching the coast.", + "pos": "noun", + "word_frequency": 13870 + }, + { + "word": "commosso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moved;touched (emotionally)", + "romanization": "commosso", + "example_sentence_native": "Era molto commosso dalle sue parole.", + "example_sentence_english": "He was very moved by her words.", + "pos": "adjective", + "word_frequency": 13872 + }, + { + "word": "conferito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conferred;granted", + "romanization": "conferito", + "example_sentence_native": "Gli è stato conferito un premio per il suo lavoro.", + "example_sentence_english": "He was granted an award for his work.", + "pos": "adjective", + "word_frequency": 13873 + }, + { + "word": "confiscato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confiscated;seized", + "romanization": "confiscato", + "example_sentence_native": "I beni rubati sono stati confiscati dalla polizia.", + "example_sentence_english": "The stolen goods were confiscated by the police.", + "pos": "adjective", + "word_frequency": 13874 + }, + { + "word": "contaminato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contaminated", + "romanization": "contaminato", + "example_sentence_native": "L'acqua del fiume è contaminata.", + "example_sentence_english": "The river water is contaminated.", + "pos": "adjective", + "word_frequency": 13876 + }, + { + "word": "contendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contender;contestant", + "romanization": "contendente", + "example_sentence_native": "I due contendenti si sono affrontati in finale.", + "example_sentence_english": "The two contenders faced each other in the final.", + "pos": "noun", + "word_frequency": 13877 + }, + { + "word": "cospicuo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspicuous;substantial", + "romanization": "cospicuo", + "example_sentence_native": "Ha ricevuto una cospicua somma di denaro.", + "example_sentence_english": "He received a substantial sum of money.", + "pos": "adjective", + "word_frequency": 13878 + }, + { + "word": "costellazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "constellation", + "romanization": "costellazione", + "example_sentence_native": "L'Orsa Maggiore è una costellazione ben nota.", + "example_sentence_english": "The Big Dipper is a well-known constellation.", + "pos": "noun", + "word_frequency": 13879 + }, + { + "word": "custodito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guarded", + "romanization": "custodito", + "example_sentence_native": "Il tesoro era ben custodito in una cassaforte.", + "example_sentence_english": "The treasure was well guarded in a safe.", + "pos": "adjective", + "word_frequency": 13881 + }, + { + "word": "dannatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damnably", + "romanization": "dannatamente", + "example_sentence_native": "Era dannatamente difficile trovare un parcheggio.", + "example_sentence_english": "It was damnably difficult to find parking.", + "pos": "adverb", + "word_frequency": 13883 + }, + { + "word": "delirante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delirious", + "romanization": "delirante", + "example_sentence_native": "Il paziente era in uno stato delirante a causa della febbre alta.", + "example_sentence_english": "The patient was in a delirious state due to high fever.", + "pos": "adjective", + "word_frequency": 13884 + }, + { + "word": "deluxe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deluxe", + "romanization": "deluxe", + "example_sentence_native": "Abbiamo prenotato una camera deluxe con vista mare.", + "example_sentence_english": "We booked a deluxe room with a sea view.", + "pos": "adjective", + "word_frequency": 13887 + }, + { + "word": "detrattore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "detractor", + "romanization": "detrattore", + "example_sentence_native": "Nonostante i suoi detrattori, il progetto è andato avanti.", + "example_sentence_english": "Despite its detractors, the project went ahead.", + "pos": "noun", + "word_frequency": 13890 + }, + { + "word": "detrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduction", + "romanization": "detrazione", + "example_sentence_native": "Puoi richiedere una detrazione fiscale per le spese mediche.", + "example_sentence_english": "You can claim a tax deduction for medical expenses.", + "pos": "noun", + "word_frequency": 13891 + }, + { + "word": "devastazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "devastation", + "romanization": "devastazione", + "example_sentence_native": "L'uragano ha lasciato una scia di devastazione.", + "example_sentence_english": "The hurricane left a trail of devastation.", + "pos": "noun", + "word_frequency": 13892 + }, + { + "word": "dilagante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rampant", + "romanization": "dilagante", + "example_sentence_native": "La corruzione è un problema dilagante in quel paese.", + "example_sentence_english": "Corruption is a rampant problem in that country.", + "pos": "adjective", + "word_frequency": 13894 + }, + { + "word": "disonore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonor", + "romanization": "disonore", + "example_sentence_native": "Ha portato disonore alla sua famiglia con le sue azioni.", + "example_sentence_english": "He brought dishonor to his family with his actions.", + "pos": "noun", + "word_frequency": 13895 + }, + { + "word": "dodicesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twelfth", + "romanization": "dodicesimo", + "example_sentence_native": "È arrivato dodicesimo nella gara.", + "example_sentence_english": "He finished twelfth in the race.", + "pos": "adjective", + "word_frequency": 13896 + }, + { + "word": "eccentrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eccentric", + "romanization": "eccentrico", + "example_sentence_native": "Il suo stile di vita è piuttosto eccentrico.", + "example_sentence_english": "His lifestyle is quite eccentric.", + "pos": "adjective", + "word_frequency": 13897 + }, + { + "word": "emblematico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emblematic", + "romanization": "emblematico", + "example_sentence_native": "Il suo discorso è stato emblematico della situazione attuale.", + "example_sentence_english": "His speech was emblematic of the current situation.", + "pos": "adjective", + "word_frequency": 13899 + }, + { + "word": "esaltato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overexcited", + "romanization": "esaltato", + "example_sentence_native": "Era così esaltato per la notizia che non riusciva a stare fermo.", + "example_sentence_english": "He was so overexcited by the news that he couldn't stand still.", + "pos": "adjective", + "word_frequency": 13900 + }, + { + "word": "esotico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exotic", + "romanization": "esotico", + "example_sentence_native": "Mi piacciono i frutti esotici.", + "example_sentence_english": "I like exotic fruits.", + "pos": "adjective", + "word_frequency": 13901 + }, + { + "word": "estradizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extradition", + "romanization": "estradizione", + "example_sentence_native": "Il criminale è stato richiesto per l'estradizione.", + "example_sentence_english": "The criminal was requested for extradition.", + "pos": "noun", + "word_frequency": 13902 + }, + { + "word": "evangelico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evangelical", + "romanization": "evangelico", + "example_sentence_native": "La comunità evangelica è molto attiva in quella regione.", + "example_sentence_english": "The evangelical community is very active in that region.", + "pos": "adjective", + "word_frequency": 13903 + }, + { + "word": "fetish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fetish", + "romanization": "fetish", + "example_sentence_native": "Ha un fetish per le scarpe.", + "example_sentence_english": "He has a fetish for shoes.", + "pos": "noun", + "word_frequency": 13906 + }, + { + "word": "filarmonico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philharmonic", + "romanization": "filarmonico", + "example_sentence_native": "L'orchestra filarmonica si esibirà stasera.", + "example_sentence_english": "The philharmonic orchestra will perform tonight.", + "pos": "adjective", + "word_frequency": 13907 + }, + { + "word": "firmatario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "signatory", + "romanization": "firmatario", + "example_sentence_native": "Tutti i firmatari devono apporre la loro firma qui.", + "example_sentence_english": "All signatories must affix their signature here.", + "pos": "noun", + "word_frequency": 13909 + }, + { + "word": "francescano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Franciscan", + "romanization": "francescano", + "example_sentence_native": "Un frate francescano viveva nel convento vicino.", + "example_sentence_english": "A Franciscan friar lived in the nearby convent.", + "pos": "noun", + "word_frequency": 13910 + }, + { + "word": "fregatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rip-off", + "romanization": "fregatura", + "example_sentence_native": "Quel prezzo è una vera fregatura!", + "example_sentence_english": "That price is a real rip-off!", + "pos": "noun", + "word_frequency": 13911 + }, + { + "word": "gabbiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seagull", + "romanization": "gabbiano", + "example_sentence_native": "Un gabbiano volava sopra il mare.", + "example_sentence_english": "A seagull was flying over the sea.", + "pos": "noun", + "word_frequency": 13913 + }, + { + "word": "gaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerful", + "romanization": "gaio", + "example_sentence_native": "Era un uomo sempre gaio e ottimista.", + "example_sentence_english": "He was always a cheerful and optimistic man.", + "pos": "adjective", + "word_frequency": 13914 + }, + { + "word": "gancio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hook", + "romanization": "gancio", + "example_sentence_native": "Appendi il cappotto al gancio.", + "example_sentence_english": "Hang your coat on the hook.", + "pos": "noun", + "word_frequency": 13915 + }, + { + "word": "gettato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thrown", + "romanization": "gettato", + "example_sentence_native": "Il giocattolo rotto è stato gettato via.", + "example_sentence_english": "The broken toy was thrown away.", + "pos": "adjective", + "word_frequency": 13918 + }, + { + "word": "ginecologo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gynecologist", + "romanization": "ginecologo", + "example_sentence_native": "Ho un appuntamento con il ginecologo la prossima settimana.", + "example_sentence_english": "I have an appointment with the gynecologist next week.", + "pos": "noun", + "word_frequency": 13919 + }, + { + "word": "giovanotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "young man", + "romanization": "giovanotto", + "example_sentence_native": "Il giovanotto ha aiutato l'anziana signora ad attraversare la strada.", + "example_sentence_english": "The young man helped the old lady cross the street.", + "pos": "noun", + "word_frequency": 13920 + }, + { + "word": "globulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globule", + "romanization": "globulo", + "example_sentence_native": "I globuli rossi trasportano l'ossigeno nel sangue.", + "example_sentence_english": "Red globules transport oxygen in the blood.", + "pos": "noun", + "word_frequency": 13922 + }, + { + "word": "graffio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scratch", + "romanization": "graffio", + "example_sentence_native": "Il gatto mi ha fatto un piccolo graffio sul braccio.", + "example_sentence_english": "The cat gave me a small scratch on my arm.", + "pos": "noun", + "word_frequency": 13923 + }, + { + "word": "grandine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hail", + "romanization": "grandine", + "example_sentence_native": "Durante il temporale è caduta molta grandine.", + "example_sentence_english": "A lot of hail fell during the thunderstorm.", + "pos": "noun", + "word_frequency": 13924 + }, + { + "word": "grigliata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barbecue (meal)", + "romanization": "grigliata", + "example_sentence_native": "Sabato faremo una grigliata in giardino con gli amici.", + "example_sentence_english": "On Saturday we'll have a barbecue in the garden with friends.", + "pos": "noun", + "word_frequency": 13925 + }, + { + "word": "imparzialità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impartiality", + "romanization": "imparzialità", + "example_sentence_native": "La giustizia richiede imparzialità da parte del giudice.", + "example_sentence_english": "Justice requires impartiality from the judge.", + "pos": "noun", + "word_frequency": 13929 + }, + { + "word": "imperatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "empress", + "romanization": "imperatrice", + "example_sentence_native": "L'imperatrice Sissi era molto amata dal suo popolo.", + "example_sentence_english": "Empress Sissi was much loved by her people.", + "pos": "noun", + "word_frequency": 13930 + }, + { + "word": "inammissibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inamissible", + "romanization": "inammissibile", + "example_sentence_native": "Il suo comportamento è assolutamente inammissibile.", + "example_sentence_english": "His behavior is absolutely inadmissible.", + "pos": "adjective", + "word_frequency": 13931 + }, + { + "word": "incollare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to glue", + "romanization": "incollare", + "example_sentence_native": "Devo incollare le pagine strappate del libro.", + "example_sentence_english": "I need to glue the torn pages of the book.", + "pos": "verb", + "word_frequency": 13932 + }, + { + "word": "inconsapevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unaware", + "romanization": "inconsapevole", + "example_sentence_native": "Era inconsapevole del pericolo che stava correndo.", + "example_sentence_english": "He was unaware of the danger he was running.", + "pos": "adjective", + "word_frequency": 13933 + }, + { + "word": "inesorabilmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexorably", + "romanization": "inesorabilmente", + "example_sentence_native": "Il tempo scorre inesorabilmente.", + "example_sentence_english": "Time flows inexorably.", + "pos": "adverb", + "word_frequency": 13934 + }, + { + "word": "innescare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trigger;to ignite", + "romanization": "innescare", + "example_sentence_native": "Una piccola scintilla può innescare un grande incendio.", + "example_sentence_english": "A small spark can trigger a large fire.", + "pos": "verb", + "word_frequency": 13935 + }, + { + "word": "inoltrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forwarded;advanced", + "romanization": "inoltrato", + "example_sentence_native": "Ho inoltrato la tua email al dipartimento competente.", + "example_sentence_english": "I forwarded your email to the relevant department.", + "pos": "adjective", + "word_frequency": 13936 + }, + { + "word": "instancabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tireless", + "romanization": "instancabile", + "example_sentence_native": "È un lavoratore instancabile, sempre pieno di energia.", + "example_sentence_english": "He is a tireless worker, always full of energy.", + "pos": "adjective", + "word_frequency": 13937 + }, + { + "word": "intestazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heading;header", + "romanization": "intestazione", + "example_sentence_native": "Controlla l'intestazione della lettera per l'indirizzo del mittente.", + "example_sentence_english": "Check the heading of the letter for the sender's address.", + "pos": "noun", + "word_frequency": 13938 + }, + { + "word": "intrinsecamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrinsically", + "romanization": "intrinsecamente", + "example_sentence_native": "La bellezza di quest'opera è intrinsecamente legata alla sua semplicità.", + "example_sentence_english": "The beauty of this work is intrinsically linked to its simplicity.", + "pos": "adverb", + "word_frequency": 13939 + }, + { + "word": "intuitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intuitive", + "romanization": "intuitivo", + "example_sentence_native": "Il nuovo software è molto intuitivo e facile da usare.", + "example_sentence_english": "The new software is very intuitive and easy to use.", + "pos": "adjective", + "word_frequency": 13940 + }, + { + "word": "invadente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrusive;invasive", + "romanization": "invadente", + "example_sentence_native": "Non mi piacciono le persone troppo invadenti.", + "example_sentence_english": "I don't like people who are too intrusive.", + "pos": "adjective", + "word_frequency": 13941 + }, + { + "word": "investigativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigative", + "romanization": "investigativo", + "example_sentence_native": "Il giornalista ha condotto un'inchiesta investigativa.", + "example_sentence_english": "The journalist conducted an investigative inquiry.", + "pos": "adjective", + "word_frequency": 13942 + }, + { + "word": "lampante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obvious;striking", + "romanization": "lampante", + "example_sentence_native": "La sua colpevolezza era lampante.", + "example_sentence_english": "His guilt was obvious.", + "pos": "adjective", + "word_frequency": 13946 + }, + { + "word": "lavanda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lavender", + "romanization": "lavanda", + "example_sentence_native": "Il profumo di lavanda è molto rilassante.", + "example_sentence_english": "The scent of lavender is very relaxing.", + "pos": "noun", + "word_frequency": 13947 + }, + { + "word": "leasing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leasing", + "romanization": "leasing", + "example_sentence_native": "Molte aziende preferiscono il leasing all'acquisto di veicoli.", + "example_sentence_english": "Many companies prefer leasing to purchasing vehicles.", + "pos": "noun", + "word_frequency": 13948 + }, + { + "word": "legittimato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legitimate;authorized", + "romanization": "legittimato", + "example_sentence_native": "Solo il proprietario è legittimato a prendere questa decisione.", + "example_sentence_english": "Only the owner is authorized to make this decision.", + "pos": "adjective", + "word_frequency": 13949 + }, + { + "word": "letame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manure", + "romanization": "letame", + "example_sentence_native": "Il contadino ha sparso il letame nei campi per fertilizzare il terreno.", + "example_sentence_english": "The farmer spread manure in the fields to fertilize the soil.", + "pos": "noun", + "word_frequency": 13950 + }, + { + "word": "logistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "logistical", + "romanization": "logistico", + "example_sentence_native": "Abbiamo avuto alcuni problemi logistici con la consegna.", + "example_sentence_english": "We had some logistical problems with the delivery.", + "pos": "adjective", + "word_frequency": 13951 + }, + { + "word": "macho", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "macho", + "romanization": "macho", + "example_sentence_native": "Ha un atteggiamento molto macho.", + "example_sentence_english": "He has a very macho attitude.", + "pos": "adjective", + "word_frequency": 13953 + }, + { + "word": "maestoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "majestic", + "romanization": "maestoso", + "example_sentence_native": "Il Duomo di Milano è un edificio maestoso.", + "example_sentence_english": "Milan Cathedral is a majestic building.", + "pos": "adjective", + "word_frequency": 13954 + }, + { + "word": "malese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Malay;Malaysian", + "romanization": "malese", + "example_sentence_native": "Parla fluentemente la lingua malese.", + "example_sentence_english": "He speaks the Malay language fluently.", + "pos": "adjective", + "word_frequency": 13955 + }, + { + "word": "meningite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meningitis", + "romanization": "meningite", + "example_sentence_native": "La meningite è un'infiammazione delle membrane che ricoprono il cervello.", + "example_sentence_english": "Meningitis is an inflammation of the membranes covering the brain.", + "pos": "noun", + "word_frequency": 13957 + }, + { + "word": "modestia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modesty", + "romanization": "modestia", + "example_sentence_native": "Nonostante il suo successo, ha sempre mantenuto una grande modestia.", + "example_sentence_english": "Despite his success, he always maintained great modesty.", + "pos": "noun", + "word_frequency": 13959 + }, + { + "word": "naturalezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalness", + "romanization": "naturalezza", + "example_sentence_native": "Ha risposto con grande naturalezza.", + "example_sentence_english": "She replied with great naturalness.", + "pos": "noun", + "word_frequency": 13965 + }, + { + "word": "neon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neon", + "romanization": "neon", + "example_sentence_native": "L'insegna al neon brillava nella notte.", + "example_sentence_english": "The neon sign shone in the night.", + "pos": "noun", + "word_frequency": 13967 + }, + { + "word": "ospedaliero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospital (adj.)", + "romanization": "ospedaliero", + "example_sentence_native": "Il personale ospedaliero è molto dedicato.", + "example_sentence_english": "The hospital staff is very dedicated.", + "pos": "adjective", + "word_frequency": 13969 + }, + { + "word": "passività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "passivity;liability", + "romanization": "passività", + "example_sentence_native": "La sua passività di fronte al problema era preoccupante.", + "example_sentence_english": "His passivity in the face of the problem was worrying.", + "pos": "noun", + "word_frequency": 13971 + }, + { + "word": "pavone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peacock", + "romanization": "pavone", + "example_sentence_native": "Il pavone ha una coda magnifica.", + "example_sentence_english": "The peacock has a magnificent tail.", + "pos": "noun", + "word_frequency": 13972 + }, + { + "word": "pensato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thought;considered", + "romanization": "pensato", + "example_sentence_native": "È un regalo ben pensato.", + "example_sentence_english": "It's a well-thought-out gift.", + "pos": "adjective", + "word_frequency": 13973 + }, + { + "word": "permanere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remain;to persist", + "romanization": "permanere", + "example_sentence_native": "La situazione di incertezza potrebbe permanere per un po'.", + "example_sentence_english": "The uncertain situation might persist for a while.", + "pos": "verb", + "word_frequency": 13975 + }, + { + "word": "pervenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrived;reached", + "romanization": "pervenuto", + "example_sentence_native": "Il documento è pervenuto in ritardo.", + "example_sentence_english": "The document arrived late.", + "pos": "adjective", + "word_frequency": 13976 + }, + { + "word": "picca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pique (resentment)", + "romanization": "picca", + "example_sentence_native": "Tra loro c'è sempre stata una certa picca.", + "example_sentence_english": "There has always been a certain pique between them.", + "pos": "noun", + "word_frequency": 13978 + }, + { + "word": "pietanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dish (of food);course", + "romanization": "pietanza", + "example_sentence_native": "Questa pietanza è deliziosa.", + "example_sentence_english": "This dish is delicious.", + "pos": "noun", + "word_frequency": 13979 + }, + { + "word": "placare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appease;to calm", + "romanization": "placare", + "example_sentence_native": "Ha cercato di placare la sua rabbia.", + "example_sentence_english": "He tried to appease his anger.", + "pos": "verb", + "word_frequency": 13980 + }, + { + "word": "plenario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plenary", + "romanization": "plenario", + "example_sentence_native": "La riunione si terrà in seduta plenaria.", + "example_sentence_english": "The meeting will be held in plenary session.", + "pos": "adjective", + "word_frequency": 13981 + }, + { + "word": "polline", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pollen", + "romanization": "polline", + "example_sentence_native": "In primavera, il polline può causare allergie.", + "example_sentence_english": "In spring, pollen can cause allergies.", + "pos": "noun", + "word_frequency": 13982 + }, + { + "word": "ponga", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "ponga (tree)", + "romanization": "ponga", + "example_sentence_native": "Il legno di ponga è usato per mobili.", + "example_sentence_english": "Ponga wood is used for furniture.", + "pos": "noun", + "word_frequency": 13983 + }, + { + "word": "porpora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purple (color;dye)", + "romanization": "porpora", + "example_sentence_native": "Indossava un abito di porpora.", + "example_sentence_english": "She wore a purple dress.", + "pos": "noun", + "word_frequency": 13984 + }, + { + "word": "preteso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alleged;claimed", + "romanization": "preteso", + "example_sentence_native": "Il suo preteso alibi non era credibile.", + "example_sentence_english": "His alleged alibi was not credible.", + "pos": "adjective", + "word_frequency": 13985 + }, + { + "word": "propagazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propagation;spread", + "romanization": "propagazione", + "example_sentence_native": "La propagazione del suono è più lenta nell'acqua.", + "example_sentence_english": "The propagation of sound is slower in water.", + "pos": "noun", + "word_frequency": 13986 + }, + { + "word": "prua", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bow (of a ship)", + "romanization": "prua", + "example_sentence_native": "La prua della nave fendeva le onde.", + "example_sentence_english": "The bow of the ship cut through the waves.", + "pos": "noun", + "word_frequency": 13988 + }, + { + "word": "psicoterapeuta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotherapist", + "romanization": "psicoterapeuta", + "example_sentence_native": "Ha deciso di consultare uno psicoterapeuta.", + "example_sentence_english": "She decided to consult a psychotherapist.", + "pos": "noun", + "word_frequency": 13989 + }, + { + "word": "raccomandato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recommended;registered (mail)", + "romanization": "raccomandato", + "example_sentence_native": "Ho inviato la lettera per posta raccomandata.", + "example_sentence_english": "I sent the letter by registered mail.", + "pos": "adjective", + "word_frequency": 13991 + }, + { + "word": "referente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "referent;contact person", + "romanization": "referente", + "example_sentence_native": "Il mio referente per il progetto è la signora Rossi.", + "example_sentence_english": "My contact person for the project is Ms. Rossi.", + "pos": "noun", + "word_frequency": 13992 + }, + { + "word": "reggiano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Reggio (Emilia;Calabria)", + "romanization": "reggiano", + "example_sentence_native": "Il Parmigiano Reggiano è un formaggio famoso.", + "example_sentence_english": "Parmigiano Reggiano is a famous cheese.", + "pos": "adjective", + "word_frequency": 13993 + }, + { + "word": "registratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recorder (tape recorder;cash register)", + "romanization": "registratore", + "example_sentence_native": "Ha usato un registratore per l'intervista.", + "example_sentence_english": "He used a recorder for the interview.", + "pos": "noun", + "word_frequency": 13994 + }, + { + "word": "restaurato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restored", + "romanization": "restaurato", + "example_sentence_native": "Il vecchio dipinto è stato restaurato con cura.", + "example_sentence_english": "The old painting was carefully restored.", + "pos": "adjective", + "word_frequency": 13995 + }, + { + "word": "rialzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raised;elevated", + "romanization": "rialzato", + "example_sentence_native": "Il marciapiede è stato rialzato per sicurezza.", + "example_sentence_english": "The sidewalk was raised for safety.", + "pos": "adjective", + "word_frequency": 13997 + }, + { + "word": "ricondurre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bring back;to lead back", + "romanization": "ricondurre", + "example_sentence_native": "Dobbiamo ricondurre la discussione al punto principale.", + "example_sentence_english": "We need to bring the discussion back to the main point.", + "pos": "verb", + "word_frequency": 13998 + }, + { + "word": "ristoro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refreshment;relief;rest stop", + "romanization": "ristoro", + "example_sentence_native": "Ci siamo fermati in un'area di ristoro lungo l'autostrada.", + "example_sentence_english": "We stopped at a rest stop along the highway.", + "pos": "noun", + "word_frequency": 13999 + }, + { + "word": "scafo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hull", + "romanization": "scafo", + "example_sentence_native": "Lo scafo della nave era danneggiato dopo la tempesta.", + "example_sentence_english": "The hull of the ship was damaged after the storm.", + "pos": "noun", + "word_frequency": 14005 + }, + { + "word": "scatenato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unleashed", + "romanization": "scatenato", + "example_sentence_native": "Il cane era scatenato dopo essere stato liberato.", + "example_sentence_english": "The dog was unleashed after being set free.", + "pos": "adjective", + "word_frequency": 14006 + }, + { + "word": "sensualità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensuality", + "romanization": "sensualità", + "example_sentence_native": "La sua danza esprimeva pura sensualità.", + "example_sentence_english": "Her dance expressed pure sensuality.", + "pos": "noun", + "word_frequency": 14007 + }, + { + "word": "seppellito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buried", + "romanization": "seppellito", + "example_sentence_native": "Il tesoro era seppellito sotto un vecchio albero.", + "example_sentence_english": "The treasure was buried under an old tree.", + "pos": "adjective", + "word_frequency": 14008 + }, + { + "word": "silenziosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "silently", + "romanization": "silenziosamente", + "example_sentence_native": "Si mosse silenziosamente per non svegliare nessuno.", + "example_sentence_english": "He moved silently so as not to wake anyone.", + "pos": "adverb", + "word_frequency": 14012 + }, + { + "word": "smantellamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismantling", + "romanization": "smantellamento", + "example_sentence_native": "Lo smantellamento della vecchia fabbrica è iniziato.", + "example_sentence_english": "The dismantling of the old factory has begun.", + "pos": "noun", + "word_frequency": 14016 + }, + { + "word": "soffocato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suffocated", + "romanization": "soffocato", + "example_sentence_native": "Il suono era soffocato dal cuscino.", + "example_sentence_english": "The sound was muffled by the pillow.", + "pos": "adjective", + "word_frequency": 14017 + }, + { + "word": "sopportato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "endured", + "romanization": "sopportato", + "example_sentence_native": "Ha sopportato molte difficoltà nella sua vita.", + "example_sentence_english": "He endured many difficulties in his life.", + "pos": "adjective", + "word_frequency": 14020 + }, + { + "word": "sottrazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "subtraction", + "romanization": "sottrazione", + "example_sentence_native": "La sottrazione è una delle quattro operazioni fondamentali.", + "example_sentence_english": "Subtraction is one of the four fundamental operations.", + "pos": "noun", + "word_frequency": 14021 + }, + { + "word": "staminale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stem (adj.)", + "romanization": "staminale", + "example_sentence_native": "La ricerca sulle cellule staminali è molto promettente.", + "example_sentence_english": "Stem cell research is very promising.", + "pos": "adjective", + "word_frequency": 14022 + }, + { + "word": "stasi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stasis", + "romanization": "stasi", + "example_sentence_native": "L'economia è in una fase di stasi.", + "example_sentence_english": "The economy is in a phase of stasis.", + "pos": "noun", + "word_frequency": 14023 + }, + { + "word": "statisticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "statistically", + "romanization": "statisticamente", + "example_sentence_native": "Statisticamente, è improbabile che accada.", + "example_sentence_english": "Statistically, it's unlikely to happen.", + "pos": "adverb", + "word_frequency": 14024 + }, + { + "word": "surplus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surplus", + "romanization": "surplus", + "example_sentence_native": "C'è stato un surplus di produzione quest'anno.", + "example_sentence_english": "There was a production surplus this year.", + "pos": "noun", + "word_frequency": 14027 + }, + { + "word": "termale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thermal", + "romanization": "termale", + "example_sentence_native": "Le acque termali sono benefiche per la salute.", + "example_sentence_english": "Thermal waters are beneficial for health.", + "pos": "adjective", + "word_frequency": 14032 + }, + { + "word": "tollerante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerant", + "romanization": "tollerante", + "example_sentence_native": "È una persona molto tollerante e aperta.", + "example_sentence_english": "He is a very tolerant and open person.", + "pos": "adjective", + "word_frequency": 14036 + }, + { + "word": "travolgente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming", + "romanization": "travolgente", + "example_sentence_native": "Ha provato un'emozione travolgente.", + "example_sentence_english": "She felt an overwhelming emotion.", + "pos": "adjective", + "word_frequency": 14038 + }, + { + "word": "trimestrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quarterly", + "romanization": "trimestrale", + "example_sentence_native": "Il rapporto trimestrale sarà pubblicato domani.", + "example_sentence_english": "The quarterly report will be published tomorrow.", + "pos": "adjective", + "word_frequency": 14039 + }, + { + "word": "vincita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "win;prize money", + "romanization": "vincita", + "example_sentence_native": "La sua vincita alla lotteria ha cambiato la sua vita.", + "example_sentence_english": "His lottery win changed his life.", + "pos": "noun", + "word_frequency": 14042 + }, + { + "word": "vittorioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "victorious", + "romanization": "vittorioso", + "example_sentence_native": "La squadra è tornata a casa vittoriosa.", + "example_sentence_english": "The team returned home victorious.", + "pos": "adjective", + "word_frequency": 14043 + }, + { + "word": "wrestling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrestling", + "romanization": "wrestling", + "example_sentence_native": "Gli piace guardare il wrestling in televisione.", + "example_sentence_english": "He likes watching wrestling on television.", + "pos": "noun", + "word_frequency": 14047 + }, + { + "word": "zoccolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hoof;clog (shoe);plinth", + "romanization": "zoccolo", + "example_sentence_native": "Il cavallo ha uno zoccolo forte.", + "example_sentence_english": "The horse has a strong hoof.", + "pos": "noun", + "word_frequency": 14050 + }, + { + "word": "abbondare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to abound;to be plentiful", + "romanization": "abbondare", + "example_sentence_native": "In questa regione, l'acqua abbonda.", + "example_sentence_english": "In this region, water abounds.", + "pos": "verb", + "word_frequency": 14051 + }, + { + "word": "accoltellato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stabbed (adj.)", + "romanization": "accoltellato", + "example_sentence_native": "L'uomo è stato trovato accoltellato in un vicolo.", + "example_sentence_english": "The man was found stabbed in an alley.", + "pos": "adjective", + "word_frequency": 14053 + }, + { + "word": "accordato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreed;granted;tuned (music)", + "romanization": "accordato", + "example_sentence_native": "Il piano è stato accordato perfettamente.", + "example_sentence_english": "The piano was perfectly tuned.", + "pos": "adjective", + "word_frequency": 14054 + }, + { + "word": "add", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ad;advertisement", + "romanization": "add", + "example_sentence_native": "Ho visto un add interessante su internet.", + "example_sentence_english": "I saw an interesting ad on the internet.", + "pos": "noun", + "word_frequency": 14055 + }, + { + "word": "addizionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additional;extra", + "romanization": "addizionale", + "example_sentence_native": "C'è un costo addizionale per la consegna.", + "example_sentence_english": "There is an additional cost for delivery.", + "pos": "adjective", + "word_frequency": 14056 + }, + { + "word": "agata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agate", + "romanization": "agata", + "example_sentence_native": "Ha un anello con un'agata blu.", + "example_sentence_english": "She has a ring with a blue agate.", + "pos": "noun", + "word_frequency": 14057 + }, + { + "word": "albore", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "dawn;daybreak;beginning", + "romanization": "albore", + "example_sentence_native": "All'albore del giorno, gli uccelli iniziano a cantare.", + "example_sentence_english": "At daybreak, the birds begin to sing.", + "pos": "noun", + "word_frequency": 14058 + }, + { + "word": "allontanato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distanced;removed;estranged", + "romanization": "allontanato", + "example_sentence_native": "Si è sentito allontanato dalla sua famiglia.", + "example_sentence_english": "He felt estranged from his family.", + "pos": "adjective", + "word_frequency": 14059 + }, + { + "word": "ambientalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "environmentalista", + "romanization": "ambientalista", + "example_sentence_native": "È un noto ambientalista e attivista.", + "example_sentence_english": "He is a well-known environmentalist and activist.", + "pos": "noun", + "word_frequency": 14060 + }, + { + "word": "analogico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analog", + "romanization": "analogico", + "example_sentence_native": "Preferisco l'orologio analogico a quello digitale.", + "example_sentence_english": "I prefer the analog clock to the digital one.", + "pos": "adjective", + "word_frequency": 14061 + }, + { + "word": "antisemitismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemitism", + "romanization": "antisemitismo", + "example_sentence_native": "L'antisemitismo è una forma di discriminazione.", + "example_sentence_english": "Antisemitism is a form of discrimination.", + "pos": "noun", + "word_frequency": 14062 + }, + { + "word": "arbitrale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitral;arbitration (adj.)", + "romanization": "arbitrale", + "example_sentence_native": "La decisione arbitrale è stata contestata.", + "example_sentence_english": "The arbitral decision was disputed.", + "pos": "adjective", + "word_frequency": 14063 + }, + { + "word": "aroma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aroma;scent;flavor", + "romanization": "aroma", + "example_sentence_native": "Il caffè ha un aroma delizioso.", + "example_sentence_english": "The coffee has a delicious aroma.", + "pos": "noun", + "word_frequency": 14064 + }, + { + "word": "asporto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "takeaway;to go (food)", + "romanization": "asporto", + "example_sentence_native": "Vorrei una pizza da asporto, per favore.", + "example_sentence_english": "I would like a pizza to go, please.", + "pos": "noun", + "word_frequency": 14065 + }, + { + "word": "assorbito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absorbed;engrossed", + "romanization": "assorbito", + "example_sentence_native": "Era completamente assorbito dalla lettura del libro.", + "example_sentence_english": "He was completely absorbed in reading the book.", + "pos": "adjective", + "word_frequency": 14066 + }, + { + "word": "attenuare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to attenuate;to mitigate;to lessen", + "romanization": "attenuare", + "example_sentence_native": "Hanno cercato di attenuare l'impatto della crisi.", + "example_sentence_english": "They tried to mitigate the impact of the crisis.", + "pos": "verb", + "word_frequency": 14067 + }, + { + "word": "balcanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Balkan", + "romanization": "balcanico", + "example_sentence_native": "La penisola balcanica ha una storia complessa.", + "example_sentence_english": "The Balkan peninsula has a complex history.", + "pos": "adjective", + "word_frequency": 14071 + }, + { + "word": "battello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boat;small ship", + "romanization": "battello", + "example_sentence_native": "Abbiamo fatto un giro in battello sul lago.", + "example_sentence_english": "We took a boat trip on the lake.", + "pos": "noun", + "word_frequency": 14072 + }, + { + "word": "bilingue", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bilingual", + "romanization": "bilingue", + "example_sentence_native": "È cresciuto in una famiglia bilingue.", + "example_sentence_english": "He grew up in a bilingual family.", + "pos": "adjective", + "word_frequency": 14077 + }, + { + "word": "bracciante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "farm laborer;manual laborer", + "romanization": "bracciante", + "example_sentence_native": "Molti braccianti lavorano nei campi durante la stagione del raccolto.", + "example_sentence_english": "Many farm laborers work in the fields during harvest season.", + "pos": "noun", + "word_frequency": 14079 + }, + { + "word": "brioche", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brioche;croissant", + "romanization": "brioche", + "example_sentence_native": "A colazione, mi piace mangiare una brioche con il caffè.", + "example_sentence_english": "For breakfast, I like to eat a brioche with coffee.", + "pos": "noun", + "word_frequency": 14080 + }, + { + "word": "calcolato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calculated", + "romanization": "calcolato", + "example_sentence_native": "La sua mossa è stata molto calcolata.", + "example_sentence_english": "His move was very calculated.", + "pos": "adjective", + "word_frequency": 14083 + }, + { + "word": "caldamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warmly;heartily", + "romanization": "caldamente", + "example_sentence_native": "Ti consiglio caldamente di leggere questo libro.", + "example_sentence_english": "I warmly recommend you read this book.", + "pos": "adverb", + "word_frequency": 14084 + }, + { + "word": "calzatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "footwear;shoe", + "romanization": "calzatura", + "example_sentence_native": "Questo negozio vende solo calzature di alta qualità.", + "example_sentence_english": "This shop only sells high-quality footwear.", + "pos": "noun", + "word_frequency": 14085 + }, + { + "word": "caricatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caricature", + "romanization": "caricatura", + "example_sentence_native": "L'artista ha disegnato una divertente caricatura del politico.", + "example_sentence_english": "The artist drew a funny caricature of the politician.", + "pos": "noun", + "word_frequency": 14086 + }, + { + "word": "castellano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Castilian;castellated;castle-related", + "romanization": "castellano", + "example_sentence_native": "Il dialetto castellano è parlato in quella regione.", + "example_sentence_english": "The Castilian dialect is spoken in that region.", + "pos": "adjective", + "word_frequency": 14087 + }, + { + "word": "ciliegina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small cherry;the icing on the cake (figurative)", + "romanization": "ciliegina", + "example_sentence_native": "La ciliegina sulla torta è stata la sua promozione.", + "example_sentence_english": "The icing on the cake was his promotion.", + "pos": "noun", + "word_frequency": 14092 + }, + { + "word": "clemenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clemency;mercy", + "romanization": "clemenza", + "example_sentence_native": "Il giudice ha mostrato clemenza nei confronti dell'imputato.", + "example_sentence_english": "The judge showed clemency towards the defendant.", + "pos": "noun", + "word_frequency": 14093 + }, + { + "word": "collaudo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "testing;trial;commissioning", + "romanization": "collaudo", + "example_sentence_native": "Il nuovo prototipo è in fase di collaudo.", + "example_sentence_english": "The new prototype is undergoing testing.", + "pos": "noun", + "word_frequency": 14096 + }, + { + "word": "colorante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dye;coloring agent", + "romanization": "colorante", + "example_sentence_native": "Questo dolce contiene coloranti artificiali.", + "example_sentence_english": "This dessert contains artificial coloring agents.", + "pos": "noun", + "word_frequency": 14097 + }, + { + "word": "colorare", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to color;to paint", + "romanization": "colorare", + "example_sentence_native": "Ai bambini piace colorare i disegni.", + "example_sentence_english": "Children like to color drawings.", + "pos": "verb", + "word_frequency": 14098 + }, + { + "word": "comunicativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communicative", + "romanization": "comunicativo", + "example_sentence_native": "È una persona molto comunicativa e aperta.", + "example_sentence_english": "He is a very communicative and open person.", + "pos": "adjective", + "word_frequency": 14100 + }, + { + "word": "condimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seasoning;dressing;condiment", + "romanization": "condimento", + "example_sentence_native": "Quale condimento preferisci per l'insalata?", + "example_sentence_english": "Which dressing do you prefer for the salad?", + "pos": "noun", + "word_frequency": 14101 + }, + { + "word": "coordinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coordinated", + "romanization": "coordinato", + "example_sentence_native": "Hanno lavorato in modo molto coordinato.", + "example_sentence_english": "They worked in a very coordinated way.", + "pos": "adjective", + "word_frequency": 14102 + }, + { + "word": "delineare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to delineate;to outline", + "romanization": "delineare", + "example_sentence_native": "L'architetto ha iniziato a delineare il progetto.", + "example_sentence_english": "The architect began to delineate the project.", + "pos": "verb", + "word_frequency": 14105 + }, + { + "word": "disarmato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unarmed", + "romanization": "disarmato", + "example_sentence_native": "L'uomo era completamente disarmato.", + "example_sentence_english": "The man was completely unarmed.", + "pos": "adjective", + "word_frequency": 14108 + }, + { + "word": "dislivello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difference in level;elevation gain;loss", + "romanization": "dislivello", + "example_sentence_native": "Il sentiero presenta un notevole dislivello.", + "example_sentence_english": "The path has a significant difference in level.", + "pos": "noun", + "word_frequency": 14109 + }, + { + "word": "doppiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dubbed (film;TV)", + "romanization": "doppiato", + "example_sentence_native": "Preferisco guardare i film in lingua originale, non doppiati.", + "example_sentence_english": "I prefer to watch films in their original language, not dubbed.", + "pos": "adjective", + "word_frequency": 14111 + }, + { + "word": "dotto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "learned;scholarly;educated", + "romanization": "dotto", + "example_sentence_native": "Era un uomo molto dotto e rispettato.", + "example_sentence_english": "He was a very learned and respected man.", + "pos": "adjective", + "word_frequency": 14112 + }, + { + "word": "emanare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to emanate;to issue;to emit", + "romanization": "emanare", + "example_sentence_native": "La fabbrica emana un odore sgradevole.", + "example_sentence_english": "The factory emanates an unpleasant smell.", + "pos": "verb", + "word_frequency": 14115 + }, + { + "word": "emozionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emotional;excited;moved", + "romanization": "emozionato", + "example_sentence_native": "Era molto emozionato per il suo primo giorno di scuola.", + "example_sentence_english": "He was very excited for his first day of school.", + "pos": "adjective", + "word_frequency": 14116 + }, + { + "word": "eolico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wind (as in wind power);aeolian", + "romanization": "eolico", + "example_sentence_native": "L'energia eolica è una fonte rinnovabile.", + "example_sentence_english": "Wind energy is a renewable source.", + "pos": "adjective", + "word_frequency": 14117 + }, + { + "word": "espediente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expedient;device;stratagem", + "romanization": "espediente", + "example_sentence_native": "Ha trovato un espediente per risolvere il problema.", + "example_sentence_english": "He found an expedient to solve the problem.", + "pos": "noun", + "word_frequency": 14118 + }, + { + "word": "evangelista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evangelist", + "romanization": "evangelista", + "example_sentence_native": "Marco è uno dei quattro evangelisti.", + "example_sentence_english": "Mark is one of the four evangelists.", + "pos": "noun", + "word_frequency": 14119 + }, + { + "word": "falce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scythe", + "romanization": "falce", + "example_sentence_native": "Il contadino usava una falce per tagliare l'erba alta.", + "example_sentence_english": "The farmer used a scythe to cut the tall grass.", + "pos": "noun", + "word_frequency": 14120 + }, + { + "word": "fardello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "burden;load", + "romanization": "fardello", + "example_sentence_native": "Portava il fardello delle sue responsabilità.", + "example_sentence_english": "He carried the burden of his responsibilities.", + "pos": "noun", + "word_frequency": 14121 + }, + { + "word": "fiduciario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fiduciary;trustee (adj)", + "romanization": "fiduciario", + "example_sentence_native": "Ha un ruolo fiduciario nella gestione dei beni.", + "example_sentence_english": "He has a fiduciary role in asset management.", + "pos": "adjective", + "word_frequency": 14124 + }, + { + "word": "fondente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "melting;dark (chocolate)", + "romanization": "fondente", + "example_sentence_native": "Mi piace il cioccolato fondente.", + "example_sentence_english": "I like dark chocolate.", + "pos": "adjective", + "word_frequency": 14129 + }, + { + "word": "gioire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rejoice;to be glad", + "romanization": "gioire", + "example_sentence_native": "Tutti gioirono per la buona notizia.", + "example_sentence_english": "Everyone rejoiced at the good news.", + "pos": "verb", + "word_frequency": 14131 + }, + { + "word": "gnu", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wildebeest;gnu", + "romanization": "gnu", + "example_sentence_native": "Lo gnu è un animale tipico della savana africana.", + "example_sentence_english": "The wildebeest is an animal typical of the African savanna.", + "pos": "noun", + "word_frequency": 14132 + }, + { + "word": "goblin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goblin", + "romanization": "goblin", + "example_sentence_native": "I bambini leggevano storie di elfi e goblin.", + "example_sentence_english": "The children read stories of elves and goblins.", + "pos": "noun", + "word_frequency": 14133 + }, + { + "word": "gourmet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gourmet", + "romanization": "gourmet", + "example_sentence_native": "Hanno aperto un nuovo ristorante gourmet in centro.", + "example_sentence_english": "They opened a new gourmet restaurant downtown.", + "pos": "adjective", + "word_frequency": 14134 + }, + { + "word": "imboscata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ambush", + "romanization": "imboscata", + "example_sentence_native": "I soldati caddero in un'imboscata.", + "example_sentence_english": "The soldiers fell into an ambush.", + "pos": "noun", + "word_frequency": 14139 + }, + { + "word": "impedimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impediment;obstacle", + "romanization": "impedimento", + "example_sentence_native": "Non c'è alcun impedimento al nostro matrimonio.", + "example_sentence_english": "There is no impediment to our marriage.", + "pos": "noun", + "word_frequency": 14140 + }, + { + "word": "inconsapevolmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unknowingly;unconsciously", + "romanization": "inconsapevolmente", + "example_sentence_native": "Ha agito inconsapevolmente, senza rendersene conto.", + "example_sentence_english": "He acted unknowingly, without realizing it.", + "pos": "adverb", + "word_frequency": 14141 + }, + { + "word": "interdizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interdiction;prohibition;disqualification", + "romanization": "interdizione", + "example_sentence_native": "Il giudice ha emesso un'ordinanza di interdizione.", + "example_sentence_english": "The judge issued an interdiction order.", + "pos": "noun", + "word_frequency": 14142 + }, + { + "word": "investigazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "investigation", + "romanization": "investigazione", + "example_sentence_native": "La polizia ha avviato un'investigazione sul caso.", + "example_sentence_english": "The police launched an investigation into the case.", + "pos": "noun", + "word_frequency": 14143 + }, + { + "word": "istantaneamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instantaneously;instantly", + "romanization": "istantaneamente", + "example_sentence_native": "La risposta è arrivata istantaneamente.", + "example_sentence_english": "The answer arrived instantaneously.", + "pos": "adverb", + "word_frequency": 14144 + }, + { + "word": "jihadista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihadist", + "romanization": "jihadista", + "example_sentence_native": "Le forze di sicurezza hanno catturato un gruppo di jihadisti.", + "example_sentence_english": "Security forces captured a group of jihadists.", + "pos": "noun", + "word_frequency": 14146 + }, + { + "word": "lavato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "washed", + "romanization": "lavato", + "example_sentence_native": "I piatti lavati sono nello scolapiatti.", + "example_sentence_english": "The washed dishes are in the dish rack.", + "pos": "adjective", + "word_frequency": 14149 + }, + { + "word": "legalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legalize", + "romanization": "legalizzare", + "example_sentence_native": "Molti paesi stanno discutendo se legalizzare la cannabis.", + "example_sentence_english": "Many countries are discussing whether to legalize cannabis.", + "pos": "verb", + "word_frequency": 14150 + }, + { + "word": "levato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raised;lifted;removed", + "romanization": "levato", + "example_sentence_native": "Con il sole levato, la giornata prometteva bene.", + "example_sentence_english": "With the sun raised, the day promised to be good.", + "pos": "adjective", + "word_frequency": 14151 + }, + { + "word": "machete", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machete", + "romanization": "machete", + "example_sentence_native": "Usava un machete per aprirsi la strada nella giungla.", + "example_sentence_english": "He used a machete to clear a path through the jungle.", + "pos": "noun", + "word_frequency": 14156 + }, + { + "word": "maltese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Maltese", + "romanization": "maltese", + "example_sentence_native": "Ha un passaporto maltese.", + "example_sentence_english": "He has a Maltese passport.", + "pos": "adjective", + "word_frequency": 14158 + }, + { + "word": "mappatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mapping", + "romanization": "mappatura", + "example_sentence_native": "La mappatura genetica è un campo di ricerca importante.", + "example_sentence_english": "Genetic mapping is an important field of research.", + "pos": "noun", + "word_frequency": 14159 + }, + { + "word": "marine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marine (US soldier)", + "romanization": "marine", + "example_sentence_native": "Il marine ha completato la sua missione con successo.", + "example_sentence_english": "The marine completed his mission successfully.", + "pos": "noun", + "word_frequency": 14161 + }, + { + "word": "massimizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maximize", + "romanization": "massimizzare", + "example_sentence_native": "Dobbiamo massimizzare i nostri profitti.", + "example_sentence_english": "We need to maximize our profits.", + "pos": "verb", + "word_frequency": 14162 + }, + { + "word": "messenger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "messenger (messaging app)", + "romanization": "messenger", + "example_sentence_native": "Ti ho inviato un messaggio su Messenger.", + "example_sentence_english": "I sent you a message on Messenger.", + "pos": "noun", + "word_frequency": 14165 + }, + { + "word": "miglioria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvement", + "romanization": "miglioria", + "example_sentence_native": "Abbiamo apportato alcune migliorie al sistema.", + "example_sentence_english": "We made some improvements to the system.", + "pos": "noun", + "word_frequency": 14166 + }, + { + "word": "minato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undermined;mined", + "romanization": "minato", + "example_sentence_native": "La fiducia tra loro è stata minata.", + "example_sentence_english": "The trust between them has been undermined.", + "pos": "adjective", + "word_frequency": 14167 + }, + { + "word": "moltiplicare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to multiply", + "romanization": "moltiplicare", + "example_sentence_native": "Dobbiamo moltiplicare questo numero per tre.", + "example_sentence_english": "We need to multiply this number by three.", + "pos": "verb", + "word_frequency": 14169 + }, + { + "word": "monolocale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "studio apartment", + "romanization": "monolocale", + "example_sentence_native": "Sto cercando un monolocale in affitto.", + "example_sentence_english": "I'm looking for a studio apartment for rent.", + "pos": "noun", + "word_frequency": 14170 + }, + { + "word": "muffin", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "muffin", + "romanization": "muffin", + "example_sentence_native": "Ho comprato un muffin al cioccolato per colazione.", + "example_sentence_english": "I bought a chocolate muffin for breakfast.", + "pos": "noun", + "word_frequency": 14174 + }, + { + "word": "nervosismo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nervousness", + "romanization": "nervosismo", + "example_sentence_native": "Sentiva un forte nervosismo prima dell'esame.", + "example_sentence_english": "He felt a strong nervousness before the exam.", + "pos": "noun", + "word_frequency": 14175 + }, + { + "word": "neutralizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to neutralize", + "romanization": "neutralizzare", + "example_sentence_native": "Hanno cercato di neutralizzare la minaccia.", + "example_sentence_english": "They tried to neutralize the threat.", + "pos": "verb", + "word_frequency": 14176 + }, + { + "word": "ninfa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nymph", + "romanization": "ninfa", + "example_sentence_native": "Le ninfe erano divinità minori della natura.", + "example_sentence_english": "Nymphs were minor deities of nature.", + "pos": "noun", + "word_frequency": 14178 + }, + { + "word": "nocciola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hazelnut", + "romanization": "nocciola", + "example_sentence_native": "Mi piace il gelato alla nocciola.", + "example_sentence_english": "I like hazelnut ice cream.", + "pos": "noun", + "word_frequency": 14179 + }, + { + "word": "omo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gay man (colloquial)", + "romanization": "omo", + "example_sentence_native": "È un omo dichiarato.", + "example_sentence_english": "He is an openly gay man.", + "pos": "noun", + "word_frequency": 14181 + }, + { + "word": "ospitale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospitable", + "romanization": "ospitale", + "example_sentence_native": "La gente del sud è molto ospitale.", + "example_sentence_english": "People from the south are very hospitable.", + "pos": "adjective", + "word_frequency": 14183 + }, + { + "word": "palazzetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small palace;small building (often for sports)", + "romanization": "palazzetto", + "example_sentence_native": "Il palazzetto dello sport era pieno di tifosi.", + "example_sentence_english": "The sports arena was full of fans.", + "pos": "noun", + "word_frequency": 14184 + }, + { + "word": "pavimentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paving;flooring", + "romanization": "pavimentazione", + "example_sentence_native": "La pavimentazione stradale necessita di riparazioni.", + "example_sentence_english": "The road paving needs repairs.", + "pos": "noun", + "word_frequency": 14185 + }, + { + "word": "piccolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiny;very small", + "romanization": "piccolino", + "example_sentence_native": "Guarda quel gattino piccolino!", + "example_sentence_english": "Look at that tiny kitten!", + "pos": "adjective", + "word_frequency": 14188 + }, + { + "word": "plebiscito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plebiscite", + "romanization": "plebiscito", + "example_sentence_native": "Il plebiscito ha confermato la volontà popolare.", + "example_sentence_english": "The plebiscite confirmed the popular will.", + "pos": "noun", + "word_frequency": 14190 + }, + { + "word": "plugin", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plugin", + "romanization": "plugin", + "example_sentence_native": "Ho installato un nuovo plugin per il browser.", + "example_sentence_english": "I installed a new plugin for the browser.", + "pos": "noun", + "word_frequency": 14191 + }, + { + "word": "pozza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puddle;pool", + "romanization": "pozza", + "example_sentence_native": "Dopo la pioggia, c'era una grande pozza d'acqua.", + "example_sentence_english": "After the rain, there was a large puddle of water.", + "pos": "noun", + "word_frequency": 14193 + }, + { + "word": "pregato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "requested", + "romanization": "pregato", + "example_sentence_native": "Siete pregati di non fumare.", + "example_sentence_english": "You are requested not to smoke.", + "pos": "adjective", + "word_frequency": 14195 + }, + { + "word": "proibizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prohibition", + "romanization": "proibizione", + "example_sentence_native": "C'è una proibizione di accesso all'area.", + "example_sentence_english": "There is a prohibition of access to the area.", + "pos": "noun", + "word_frequency": 14196 + }, + { + "word": "propenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prone;inclined", + "romanization": "propenso", + "example_sentence_native": "È propenso a prendere rischi.", + "example_sentence_english": "He is prone to taking risks.", + "pos": "adjective", + "word_frequency": 14197 + }, + { + "word": "randagio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stray;wandering", + "romanization": "randagio", + "example_sentence_native": "Abbiamo trovato un cane randagio per strada.", + "example_sentence_english": "We found a stray dog on the street.", + "pos": "adjective", + "word_frequency": 14199 + }, + { + "word": "recato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gone (to);brought", + "romanization": "recato", + "example_sentence_native": "Si è recato in ufficio presto.", + "example_sentence_english": "He went to the office early.", + "pos": "adjective", + "word_frequency": 14200 + }, + { + "word": "relatività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relativity", + "romanization": "relatività", + "example_sentence_native": "La teoria della relatività ha cambiato la nostra comprensione dell'universo.", + "example_sentence_english": "The theory of relativity changed our understanding of the universe.", + "pos": "noun", + "word_frequency": 14201 + }, + { + "word": "religiosità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "religiosity", + "romanization": "religiosità", + "example_sentence_native": "La sua religiosità era profonda e sincera.", + "example_sentence_english": "His religiosity was deep and sincere.", + "pos": "noun", + "word_frequency": 14202 + }, + { + "word": "rigetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rejection;refusal", + "romanization": "rigetto", + "example_sentence_native": "Il rigetto dell'offerta è stato inaspettato.", + "example_sentence_english": "The rejection of the offer was unexpected.", + "pos": "noun", + "word_frequency": 14203 + }, + { + "word": "rimborsare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refund;to reimburse", + "romanization": "rimborsare", + "example_sentence_native": "Ti rimborserò le spese di viaggio.", + "example_sentence_english": "I will reimburse you for the travel expenses.", + "pos": "verb", + "word_frequency": 14204 + }, + { + "word": "rimorchiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tow;to pick up (colloquial)", + "romanization": "rimorchiare", + "example_sentence_native": "La macchina in panne è stata rimorchiata.", + "example_sentence_english": "The broken-down car was towed.", + "pos": "verb", + "word_frequency": 14205 + }, + { + "word": "rinviato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "postponed;referred", + "romanization": "rinviato", + "example_sentence_native": "La riunione è stata rinviata a lunedì prossimo.", + "example_sentence_english": "The meeting has been postponed until next Monday.", + "pos": "adjective", + "word_frequency": 14206 + }, + { + "word": "ripristinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restored;reinstated", + "romanization": "ripristinato", + "example_sentence_native": "Il servizio è stato ripristinato dopo l'interruzione.", + "example_sentence_english": "The service was restored after the interruption.", + "pos": "adjective", + "word_frequency": 14207 + }, + { + "word": "risentito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resentful;offended", + "romanization": "risentito", + "example_sentence_native": "Era molto risentito per il commento.", + "example_sentence_english": "He was very resentful of the comment.", + "pos": "adjective", + "word_frequency": 14208 + }, + { + "word": "risurrezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resurrection", + "romanization": "risurrezione", + "example_sentence_native": "La Pasqua celebra la risurrezione di Cristo.", + "example_sentence_english": "Easter celebrates the resurrection of Christ.", + "pos": "noun", + "word_frequency": 14209 + }, + { + "word": "rivalutazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revaluation;reassessment", + "romanization": "rivalutazione", + "example_sentence_native": "È necessaria una rivalutazione del progetto.", + "example_sentence_english": "A revaluation of the project is necessary.", + "pos": "noun", + "word_frequency": 14210 + }, + { + "word": "rivestito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "covered;coated;held (position)", + "romanization": "rivestito", + "example_sentence_native": "Il muro era rivestito di legno.", + "example_sentence_english": "The wall was covered with wood.", + "pos": "adjective", + "word_frequency": 14211 + }, + { + "word": "rude", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rude;rough", + "romanization": "rude", + "example_sentence_native": "Il suo comportamento era molto rude.", + "example_sentence_english": "His behavior was very rude.", + "pos": "adjective", + "word_frequency": 14213 + }, + { + "word": "scacciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to drive away;to chase away", + "romanization": "scacciare", + "example_sentence_native": "Hanno cercato di scacciare gli uccelli dal campo.", + "example_sentence_english": "They tried to drive the birds away from the field.", + "pos": "verb", + "word_frequency": 14215 + }, + { + "word": "sfamare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feed;to satisfy hunger", + "romanization": "sfamare", + "example_sentence_native": "È importante sfamare i bisognosi.", + "example_sentence_english": "It is important to feed those in need.", + "pos": "verb", + "word_frequency": 14217 + }, + { + "word": "sfavorevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfavorable;adverse", + "romanization": "sfavorevole", + "example_sentence_native": "Le condizioni meteorologiche erano sfavorevoli.", + "example_sentence_english": "The weather conditions were unfavorable.", + "pos": "adjective", + "word_frequency": 14218 + }, + { + "word": "sfoglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheet (of pastry;pasta);puff pastry", + "romanization": "sfoglia", + "example_sentence_native": "Ho comprato un rotolo di pasta sfoglia.", + "example_sentence_english": "I bought a roll of puff pastry.", + "pos": "noun", + "word_frequency": 14219 + }, + { + "word": "similare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "similar", + "romanization": "similare", + "example_sentence_native": "I due casi sono molto similari.", + "example_sentence_english": "The two cases are very similar.", + "pos": "adjective", + "word_frequency": 14220 + }, + { + "word": "sinagoga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "synagogue", + "romanization": "sinagoga", + "example_sentence_native": "La sinagoga è un luogo di culto ebraico.", + "example_sentence_english": "The synagogue is a Jewish place of worship.", + "pos": "noun", + "word_frequency": 14221 + }, + { + "word": "sistemato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arranged;settled;fixed", + "romanization": "sistemato", + "example_sentence_native": "Tutto è stato sistemato per la festa.", + "example_sentence_english": "Everything has been arranged for the party.", + "pos": "adjective", + "word_frequency": 14222 + }, + { + "word": "slip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briefs;panties", + "romanization": "slip", + "example_sentence_native": "Ha comprato un nuovo paio di slip.", + "example_sentence_english": "He bought a new pair of briefs.", + "pos": "noun", + "word_frequency": 14223 + }, + { + "word": "smentita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "denial;refutation", + "romanization": "smentita", + "example_sentence_native": "Il governo ha rilasciato una smentita ufficiale.", + "example_sentence_english": "The government issued an official denial.", + "pos": "noun", + "word_frequency": 14224 + }, + { + "word": "smile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smile (emoticon)", + "romanization": "smile", + "example_sentence_native": "Ha messo uno smile alla fine del messaggio.", + "example_sentence_english": "He put a smile at the end of the message.", + "pos": "noun", + "word_frequency": 14225 + }, + { + "word": "sopruso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abuse;oppression;overbearing act", + "romanization": "sopruso", + "example_sentence_native": "Ha subito un sopruso da parte del suo capo.", + "example_sentence_english": "He suffered an abuse from his boss.", + "pos": "noun", + "word_frequency": 14227 + }, + { + "word": "spicciolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small change (coin);trivial amount", + "romanization": "spicciolo", + "example_sentence_native": "Non ho spiccioli per il parcheggio.", + "example_sentence_english": "I don't have small change for the parking.", + "pos": "noun", + "word_frequency": 14228 + }, + { + "word": "spike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spike (e.g.;in volleyball;or a sudden increase)", + "romanization": "spike", + "example_sentence_native": "C'è stato uno spike nei contagi.", + "example_sentence_english": "There was a spike in infections.", + "pos": "noun", + "word_frequency": 14229 + }, + { + "word": "spillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pin", + "romanization": "spillo", + "example_sentence_native": "Ho bisogno di uno spillo per attaccare questo foglio.", + "example_sentence_english": "I need a pin to attach this sheet.", + "pos": "noun", + "word_frequency": 14230 + }, + { + "word": "spinacio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spinach", + "romanization": "spinacio", + "example_sentence_native": "Mi piacciono gli spinaci con il burro.", + "example_sentence_english": "I like spinach with butter.", + "pos": "noun", + "word_frequency": 14231 + }, + { + "word": "sputo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spit;spittle", + "romanization": "sputo", + "example_sentence_native": "Ha lasciato uno sputo per terra.", + "example_sentence_english": "He left a spit on the ground.", + "pos": "noun", + "word_frequency": 14232 + }, + { + "word": "stralcio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excerpt;extract;write-off (financial)", + "romanization": "stralcio", + "example_sentence_native": "Ho letto uno stralcio del suo nuovo libro.", + "example_sentence_english": "I read an excerpt from his new book.", + "pos": "noun", + "word_frequency": 14234 + }, + { + "word": "substrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "substrate", + "romanization": "substrato", + "example_sentence_native": "Il fungo cresce su un substrato organico.", + "example_sentence_english": "The fungus grows on an organic substrate.", + "pos": "noun", + "word_frequency": 14235 + }, + { + "word": "superstar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superstar", + "romanization": "superstar", + "example_sentence_native": "È una vera superstar nel mondo della musica.", + "example_sentence_english": "She is a true superstar in the music world.", + "pos": "noun", + "word_frequency": 14238 + }, + { + "word": "superstizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superstition", + "romanization": "superstizione", + "example_sentence_native": "Molte persone credono ancora nella superstizione.", + "example_sentence_english": "Many people still believe in superstition.", + "pos": "noun", + "word_frequency": 14239 + }, + { + "word": "terriere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landowner;landed (person)", + "romanization": "terriere", + "example_sentence_native": "Il vecchio terriere possedeva molte terre.", + "example_sentence_english": "The old landowner owned many lands.", + "pos": "noun", + "word_frequency": 14241 + }, + { + "word": "trasparire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to show through;to become apparent", + "romanization": "trasparire", + "example_sentence_native": "La sua delusione cominciò a trasparire.", + "example_sentence_english": "His disappointment began to show through.", + "pos": "verb", + "word_frequency": 14242 + }, + { + "word": "umanista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanist", + "romanization": "umanista", + "example_sentence_native": "Era un grande umanista del Rinascimento.", + "example_sentence_english": "He was a great humanist of the Renaissance.", + "pos": "noun", + "word_frequency": 14245 + }, + { + "word": "ustione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burn (injury)", + "romanization": "ustione", + "example_sentence_native": "Ha riportato una grave ustione alla mano.", + "example_sentence_english": "He suffered a severe burn on his hand.", + "pos": "noun", + "word_frequency": 14247 + }, + { + "word": "utilissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very useful;extremely useful", + "romanization": "utilissimo", + "example_sentence_native": "Questo strumento è utilissimo per il lavoro.", + "example_sentence_english": "This tool is very useful for the job.", + "pos": "adjective", + "word_frequency": 14248 + }, + { + "word": "vascolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vascular", + "romanization": "vascolare", + "example_sentence_native": "Il sistema vascolare è complesso.", + "example_sentence_english": "The vascular system is complex.", + "pos": "adjective", + "word_frequency": 14249 + }, + { + "word": "versatile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "versatile", + "romanization": "versatile", + "example_sentence_native": "È un artista molto versatile.", + "example_sentence_english": "He is a very versatile artist.", + "pos": "adjective", + "word_frequency": 14250 + }, + { + "word": "voltare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn", + "romanization": "voltare", + "example_sentence_native": "Devi voltare a destra al prossimo incrocio.", + "example_sentence_english": "You need to turn right at the next intersection.", + "pos": "verb", + "word_frequency": 14251 + }, + { + "word": "abilitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "qualified;enabled", + "romanization": "abilitato", + "example_sentence_native": "È un medico abilitato alla professione.", + "example_sentence_english": "He is a doctor qualified for the profession.", + "pos": "adjective", + "word_frequency": 14257 + }, + { + "word": "addebito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debit;charge", + "romanization": "addebito", + "example_sentence_native": "Ho ricevuto un addebito sulla mia carta di credito.", + "example_sentence_english": "I received a charge on my credit card.", + "pos": "noun", + "word_frequency": 14258 + }, + { + "word": "adolescenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adolescent", + "romanization": "adolescenziale", + "example_sentence_native": "Ha attraversato una fase adolescenziale difficile.", + "example_sentence_english": "He went through a difficult adolescent phase.", + "pos": "adjective", + "word_frequency": 14259 + }, + { + "word": "animalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal rights activist", + "romanization": "animalista", + "example_sentence_native": "È un convinto animalista.", + "example_sentence_english": "He is a convinced animal rights activist.", + "pos": "noun", + "word_frequency": 14270 + }, + { + "word": "antidroga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-drug", + "romanization": "antidroga", + "example_sentence_native": "Hanno lanciato una campagna antidroga.", + "example_sentence_english": "They launched an anti-drug campaign.", + "pos": "adjective", + "word_frequency": 14271 + }, + { + "word": "arruolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlisted;recruited", + "romanization": "arruolato", + "example_sentence_native": "È stato arruolato nell'esercito.", + "example_sentence_english": "He was enlisted in the army.", + "pos": "adjective", + "word_frequency": 14275 + }, + { + "word": "aspramente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harshly;bitterly", + "romanization": "aspramente", + "example_sentence_native": "Ha criticato aspramente la decisione.", + "example_sentence_english": "He harshly criticized the decision.", + "pos": "adverb", + "word_frequency": 14278 + }, + { + "word": "assolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acquitted", + "romanization": "assolto", + "example_sentence_native": "L'imputato è stato assolto da tutte le accuse.", + "example_sentence_english": "The defendant was acquitted of all charges.", + "pos": "adjective", + "word_frequency": 14279 + }, + { + "word": "astuzia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cunning;astuteness", + "romanization": "astuzia", + "example_sentence_native": "La sua astuzia gli ha permesso di superare l'ostacolo.", + "example_sentence_english": "His cunning allowed him to overcome the obstacle.", + "pos": "noun", + "word_frequency": 14280 + }, + { + "word": "attestazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attestation;certification", + "romanization": "attestazione", + "example_sentence_native": "Ha ricevuto un'attestazione di merito per il suo lavoro.", + "example_sentence_english": "He received an attestation of merit for his work.", + "pos": "noun", + "word_frequency": 14282 + }, + { + "word": "autoctono", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indigenous;native", + "romanization": "autoctono", + "example_sentence_native": "Questa specie vegetale è autoctona della regione.", + "example_sentence_english": "This plant species is indigenous to the region.", + "pos": "adjective", + "word_frequency": 14283 + }, + { + "word": "avvincente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivating;gripping", + "romanization": "avvincente", + "example_sentence_native": "Il libro era così avvincente che non riuscivo a smettere di leggerlo.", + "example_sentence_english": "The book was so captivating that I couldn't stop reading it.", + "pos": "adjective", + "word_frequency": 14284 + }, + { + "word": "banchina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "platform (train);quay (port);shoulder (road)", + "romanization": "banchina", + "example_sentence_native": "Aspettavamo il treno sulla banchina.", + "example_sentence_english": "We were waiting for the train on the platform.", + "pos": "noun", + "word_frequency": 14287 + }, + { + "word": "bandire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ban;to outlaw;to announce (a competition)", + "romanization": "bandire", + "example_sentence_native": "Il governo ha deciso di bandire l'uso di certi prodotti chimici.", + "example_sentence_english": "The government decided to ban the use of certain chemicals.", + "pos": "verb", + "word_frequency": 14288 + }, + { + "word": "bile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bile", + "romanization": "bile", + "example_sentence_native": "La bile è prodotta dal fegato.", + "example_sentence_english": "Bile is produced by the liver.", + "pos": "noun", + "word_frequency": 14291 + }, + { + "word": "binocolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "binoculars", + "romanization": "binocolo", + "example_sentence_native": "Ho usato il binocolo per vedere gli uccelli.", + "example_sentence_english": "I used the binoculars to see the birds.", + "pos": "noun", + "word_frequency": 14292 + }, + { + "word": "boa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buoy;boa (scarf)", + "romanization": "boa", + "example_sentence_native": "La barca era ormeggiata a una boa.", + "example_sentence_english": "The boat was moored to a buoy.", + "pos": "noun", + "word_frequency": 14294 + }, + { + "word": "buccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peel;skin (of fruit)", + "romanization": "buccia", + "example_sentence_native": "Non mangiare la buccia della banana.", + "example_sentence_english": "Don't eat the banana peel.", + "pos": "noun", + "word_frequency": 14298 + }, + { + "word": "campare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to live;to get by;to survive", + "romanization": "campare", + "example_sentence_native": "È difficile campare con uno stipendio così basso.", + "example_sentence_english": "It's hard to get by on such a low salary.", + "pos": "verb", + "word_frequency": 14301 + }, + { + "word": "cassiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cashier", + "romanization": "cassiere", + "example_sentence_native": "Il cassiere mi ha dato il resto.", + "example_sentence_english": "The cashier gave me the change.", + "pos": "noun", + "word_frequency": 14302 + }, + { + "word": "cesto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket", + "romanization": "cesto", + "example_sentence_native": "Metti la biancheria sporca nel cesto.", + "example_sentence_english": "Put the dirty laundry in the basket.", + "pos": "noun", + "word_frequency": 14304 + }, + { + "word": "ciuffo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuft;fringe (hair);clump", + "romanization": "ciuffo", + "example_sentence_native": "Si è sistemato il ciuffo di capelli.", + "example_sentence_english": "He adjusted his fringe of hair.", + "pos": "noun", + "word_frequency": 14306 + }, + { + "word": "colletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "collection (money);fundraiser", + "romanization": "colletta", + "example_sentence_native": "Abbiamo fatto una colletta per il regalo di compleanno.", + "example_sentence_english": "We made a collection for the birthday present.", + "pos": "noun", + "word_frequency": 14307 + }, + { + "word": "comportamentale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "behavioral", + "romanization": "comportamentale", + "example_sentence_native": "Ha studiato la psicologia comportamentale.", + "example_sentence_english": "He studied behavioral psychology.", + "pos": "adjective", + "word_frequency": 14308 + }, + { + "word": "concessionaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dealership;concessionaire", + "romanization": "concessionaria", + "example_sentence_native": "Ho comprato la mia nuova auto dalla concessionaria.", + "example_sentence_english": "I bought my new car from the dealership.", + "pos": "noun", + "word_frequency": 14309 + }, + { + "word": "condono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amnesty;pardon (especially for taxes;debts)", + "romanization": "condono", + "example_sentence_native": "Il governo ha annunciato un nuovo condono fiscale.", + "example_sentence_english": "The government announced a new tax amnesty.", + "pos": "noun", + "word_frequency": 14310 + }, + { + "word": "congelato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frozen", + "romanization": "congelato", + "example_sentence_native": "Ho comprato dei piselli congelati.", + "example_sentence_english": "I bought some frozen peas.", + "pos": "adjective", + "word_frequency": 14311 + }, + { + "word": "cooperare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cooperate", + "romanization": "cooperare", + "example_sentence_native": "Dobbiamo cooperare per raggiungere il nostro obiettivo.", + "example_sentence_english": "We must cooperate to achieve our goal.", + "pos": "verb", + "word_frequency": 14312 + }, + { + "word": "corallo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coral", + "romanization": "corallo", + "example_sentence_native": "La barriera corallina è un ecosistema fragile.", + "example_sentence_english": "The coral reef is a fragile ecosystem.", + "pos": "noun", + "word_frequency": 14314 + }, + { + "word": "cosmopolita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmopolitan", + "romanization": "cosmopolita", + "example_sentence_native": "Milano è una città molto cosmopolita.", + "example_sentence_english": "Milan is a very cosmopolitan city.", + "pos": "adjective", + "word_frequency": 14316 + }, + { + "word": "decadimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decay;decline;deterioration", + "romanization": "decadimento", + "example_sentence_native": "Il decadimento radioattivo è un processo naturale.", + "example_sentence_english": "Radioactive decay is a natural process.", + "pos": "noun", + "word_frequency": 14320 + }, + { + "word": "decifrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to decipher;to decode", + "romanization": "decifrare", + "example_sentence_native": "Non riusciva a decifrare la sua scrittura.", + "example_sentence_english": "He couldn't decipher her handwriting.", + "pos": "verb", + "word_frequency": 14321 + }, + { + "word": "decorso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "course;progress (of an illness;event)", + "romanization": "decorso", + "example_sentence_native": "Il decorso della malattia è stato lento ma costante.", + "example_sentence_english": "The course of the illness was slow but steady.", + "pos": "noun", + "word_frequency": 14322 + }, + { + "word": "diaframma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diaphragm", + "romanization": "diaframma", + "example_sentence_native": "Il diaframma è essenziale per la respirazione.", + "example_sentence_english": "The diaphragm is essential for breathing.", + "pos": "noun", + "word_frequency": 14326 + }, + { + "word": "differenziazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "differentiation", + "romanization": "differenziazione", + "example_sentence_native": "La differenziazione cellulare è un processo complesso.", + "example_sentence_english": "Cell differentiation is a complex process.", + "pos": "noun", + "word_frequency": 14327 + }, + { + "word": "diffida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "warning;notice (legal)", + "romanization": "diffida", + "example_sentence_native": "Ha ricevuto una diffida ad adempiere.", + "example_sentence_english": "He received a notice to comply.", + "pos": "noun", + "word_frequency": 14328 + }, + { + "word": "diletto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beloved;cherished", + "romanization": "diletto", + "example_sentence_native": "Il suo diletto figlio è tornato a casa.", + "example_sentence_english": "His beloved son returned home.", + "pos": "adjective", + "word_frequency": 14329 + }, + { + "word": "disdetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancellation;bad luck", + "romanization": "disdetta", + "example_sentence_native": "Ha dato la disdetta dell'affitto.", + "example_sentence_english": "He gave notice of the rental cancellation.", + "pos": "noun", + "word_frequency": 14331 + }, + { + "word": "dolente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aching;sore;sorrowful", + "romanization": "dolente", + "example_sentence_native": "Ho un muscolo dolente dopo l'allenamento.", + "example_sentence_english": "I have a sore muscle after the workout.", + "pos": "adjective", + "word_frequency": 14332 + }, + { + "word": "egregiamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excellently;admirably", + "romanization": "egregiamente", + "example_sentence_native": "Ha svolto il suo compito egregiamente.", + "example_sentence_english": "He performed his task excellently.", + "pos": "adverb", + "word_frequency": 14335 + }, + { + "word": "elettrone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electron", + "romanization": "elettrone", + "example_sentence_native": "L'elettrone ha una carica negativa.", + "example_sentence_english": "The electron has a negative charge.", + "pos": "noun", + "word_frequency": 14336 + }, + { + "word": "equipe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "team;crew", + "romanization": "equipe", + "example_sentence_native": "L'equipe medica ha lavorato tutta la notte.", + "example_sentence_english": "The medical team worked all night.", + "pos": "noun", + "word_frequency": 14338 + }, + { + "word": "evasore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax evader;fugitive", + "romanization": "evasore", + "example_sentence_native": "L'evasore fiscale è stato scoperto.", + "example_sentence_english": "The tax evader was discovered.", + "pos": "noun", + "word_frequency": 14340 + }, + { + "word": "filato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yarn;thread", + "romanization": "filato", + "example_sentence_native": "Questo maglione è fatto di filato di lana.", + "example_sentence_english": "This sweater is made of wool yarn.", + "pos": "noun", + "word_frequency": 14342 + }, + { + "word": "finalizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aimed at;finalized;purposed", + "romanization": "finalizzato", + "example_sentence_native": "Il progetto è finalizzato alla riduzione dei costi.", + "example_sentence_english": "The project is aimed at cost reduction.", + "pos": "adjective", + "word_frequency": 14343 + }, + { + "word": "finanziatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financier;funder", + "romanization": "finanziatore", + "example_sentence_native": "Hanno trovato un nuovo finanziatore per il progetto.", + "example_sentence_english": "They found a new financier for the project.", + "pos": "noun", + "word_frequency": 14344 + }, + { + "word": "fornace", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furnace;kiln", + "romanization": "fornace", + "example_sentence_native": "Le ceramiche vengono cotte nella fornace.", + "example_sentence_english": "Ceramics are fired in the kiln.", + "pos": "noun", + "word_frequency": 14345 + }, + { + "word": "franchigia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deductible;excess;franchise", + "romanization": "franchigia", + "example_sentence_native": "L'assicurazione ha una franchigia di 200 euro.", + "example_sentence_english": "The insurance has a deductible of 200 euros.", + "pos": "noun", + "word_frequency": 14346 + }, + { + "word": "fumettista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comic artist;cartoonist", + "romanization": "fumettista", + "example_sentence_native": "Il fumettista ha disegnato una nuova serie.", + "example_sentence_english": "The comic artist drew a new series.", + "pos": "noun", + "word_frequency": 14348 + }, + { + "word": "fuorviante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misleading;deceptive", + "romanization": "fuorviante", + "example_sentence_native": "Le informazioni erano fuorvianti.", + "example_sentence_english": "The information was misleading.", + "pos": "adjective", + "word_frequency": 14349 + }, + { + "word": "gelateria", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "ice cream shop", + "romanization": "gelateria", + "example_sentence_native": "Andiamo in gelateria a prendere un cono.", + "example_sentence_english": "Let's go to the ice cream shop to get a cone.", + "pos": "noun", + "word_frequency": 14351 + }, + { + "word": "gobbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hunchback;teleprompter", + "romanization": "gobbo", + "example_sentence_native": "L'attore leggeva dal gobbo.", + "example_sentence_english": "The actor was reading from the teleprompter.", + "pos": "noun", + "word_frequency": 14352 + }, + { + "word": "guarnigione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "garrison", + "romanization": "guarnigione", + "example_sentence_native": "La guarnigione difendeva il forte.", + "example_sentence_english": "The garrison defended the fort.", + "pos": "noun", + "word_frequency": 14354 + }, + { + "word": "inappropriato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inappropriate", + "romanization": "inappropriato", + "example_sentence_native": "Il suo commento era completamente inappropriato per la situazione.", + "example_sentence_english": "His comment was completely inappropriate for the situation.", + "pos": "adjective", + "word_frequency": 14360 + }, + { + "word": "incessantemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incessantly", + "romanization": "incessantemente", + "example_sentence_native": "La pioggia è caduta incessantemente per tutta la notte.", + "example_sentence_english": "The rain fell incessantly all night.", + "pos": "adverb", + "word_frequency": 14361 + }, + { + "word": "incombere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to impend;to loom", + "romanization": "incombere", + "example_sentence_native": "La minaccia di una crisi economica incombe sul paese.", + "example_sentence_english": "The threat of an economic crisis looms over the country.", + "pos": "verb", + "word_frequency": 14362 + }, + { + "word": "incomprensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding", + "romanization": "incomprensione", + "example_sentence_native": "C'è stata una totale incomprensione tra loro.", + "example_sentence_english": "There was a total misunderstanding between them.", + "pos": "noun", + "word_frequency": 14363 + }, + { + "word": "incuriosito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curious;intrigued", + "romanization": "incuriosito", + "example_sentence_native": "Ero incuriosito dalla sua storia.", + "example_sentence_english": "I was intrigued by his story.", + "pos": "adjective", + "word_frequency": 14364 + }, + { + "word": "indesiderato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwanted;undesirable", + "romanization": "indesiderato", + "example_sentence_native": "Abbiamo ricevuto alcune chiamate indesiderate.", + "example_sentence_english": "We received some unwanted calls.", + "pos": "adjective", + "word_frequency": 14365 + }, + { + "word": "inosservato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unobserved;unnoticed", + "romanization": "inosservato", + "example_sentence_native": "È riuscito a passare inosservato tra la folla.", + "example_sentence_english": "He managed to pass unnoticed through the crowd.", + "pos": "adjective", + "word_frequency": 14366 + }, + { + "word": "insistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insistent;persistent", + "romanization": "insistente", + "example_sentence_native": "Ha fatto una richiesta molto insistente.", + "example_sentence_english": "He made a very insistent request.", + "pos": "adjective", + "word_frequency": 14367 + }, + { + "word": "lattosio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lactose", + "romanization": "lattosio", + "example_sentence_native": "Molte persone sono intolleranti al lattosio.", + "example_sentence_english": "Many people are lactose intolerant.", + "pos": "noun", + "word_frequency": 14374 + }, + { + "word": "lilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lilac;light purple", + "romanization": "lilla", + "example_sentence_native": "Ha comprato un vestito color lilla.", + "example_sentence_english": "She bought a lilac-colored dress.", + "pos": "adjective", + "word_frequency": 14376 + }, + { + "word": "local", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "local", + "romanization": "local", + "example_sentence_native": "Stiamo cercando un ristorante local.", + "example_sentence_english": "We are looking for a local restaurant.", + "pos": "adjective", + "word_frequency": 14377 + }, + { + "word": "magenta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magenta", + "romanization": "magenta", + "example_sentence_native": "Il fiore aveva un colore magenta brillante.", + "example_sentence_english": "The flower had a bright magenta color.", + "pos": "adjective", + "word_frequency": 14378 + }, + { + "word": "marò", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marine (Italian marine infantry)", + "romanization": "marò", + "example_sentence_native": "I due marò italiani sono stati al centro di una disputa internazionale.", + "example_sentence_english": "The two Italian marines were at the center of an international dispute.", + "pos": "noun", + "word_frequency": 14381 + }, + { + "word": "maschilista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chauvinistic;male chauvinist", + "romanization": "maschilista", + "example_sentence_native": "Le sue idee erano considerate maschiliste.", + "example_sentence_english": "His ideas were considered chauvinistic.", + "pos": "adjective", + "word_frequency": 14382 + }, + { + "word": "meditare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to meditate;to ponder", + "romanization": "meditare", + "example_sentence_native": "Mi piace meditare in silenzio ogni mattina.", + "example_sentence_english": "I like to meditate in silence every morning.", + "pos": "verb", + "word_frequency": 14383 + }, + { + "word": "melo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apple tree", + "romanization": "melo", + "example_sentence_native": "Nel nostro giardino c'è un vecchio melo.", + "example_sentence_english": "There is an old apple tree in our garden.", + "pos": "noun", + "word_frequency": 14384 + }, + { + "word": "message", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "message", + "romanization": "message", + "example_sentence_native": "Ti ho inviato un message su WhatsApp.", + "example_sentence_english": "I sent you a message on WhatsApp.", + "pos": "noun", + "word_frequency": 14385 + }, + { + "word": "meteorologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorological", + "romanization": "meteorologico", + "example_sentence_native": "Il bollettino meteorologico prevede pioggia.", + "example_sentence_english": "The meteorological bulletin predicts rain.", + "pos": "adjective", + "word_frequency": 14386 + }, + { + "word": "morra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morra (a hand game)", + "romanization": "morra", + "example_sentence_native": "Hanno giocato a morra per decidere chi pagava.", + "example_sentence_english": "They played morra to decide who would pay.", + "pos": "noun", + "word_frequency": 14389 + }, + { + "word": "motociclista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorcyclist", + "romanization": "motociclista", + "example_sentence_native": "Il motociclista indossava un casco nero.", + "example_sentence_english": "The motorcyclist was wearing a black helmet.", + "pos": "noun", + "word_frequency": 14390 + }, + { + "word": "naufrago", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shipwrecked person;castaway", + "romanization": "naufrago", + "example_sentence_native": "Il naufrago è stato trovato su un'isola deserta.", + "example_sentence_english": "The castaway was found on a deserted island.", + "pos": "noun", + "word_frequency": 14391 + }, + { + "word": "ode", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ode", + "romanization": "ode", + "example_sentence_native": "Ha scritto un'ode alla bellezza della natura.", + "example_sentence_english": "He wrote an ode to the beauty of nature.", + "pos": "noun", + "word_frequency": 14395 + }, + { + "word": "opinionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pundit;columnist;opinion maker", + "romanization": "opinionista", + "example_sentence_native": "L'opinionista ha espresso un punto di vista controverso.", + "example_sentence_english": "The pundit expressed a controversial point of view.", + "pos": "noun", + "word_frequency": 14397 + }, + { + "word": "oppio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "opium", + "romanization": "oppio", + "example_sentence_native": "L'oppio è una sostanza stupefacente.", + "example_sentence_english": "Opium is a narcotic substance.", + "pos": "noun", + "word_frequency": 14398 + }, + { + "word": "optional", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optional", + "romanization": "optional", + "example_sentence_native": "Questo accessorio è optional e non incluso nel prezzo base.", + "example_sentence_english": "This accessory is optional and not included in the base price.", + "pos": "adjective", + "word_frequency": 14399 + }, + { + "word": "orchidea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchid", + "romanization": "orchidea", + "example_sentence_native": "L'orchidea è un fiore bellissimo.", + "example_sentence_english": "The orchid is a beautiful flower.", + "pos": "noun", + "word_frequency": 14400 + }, + { + "word": "ossessivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsessive", + "romanization": "ossessivo", + "example_sentence_native": "Ha un comportamento ossessivo riguardo alla pulizia.", + "example_sentence_english": "He has an obsessive behavior regarding cleanliness.", + "pos": "adjective", + "word_frequency": 14401 + }, + { + "word": "parcheggiato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parked", + "romanization": "parcheggiato", + "example_sentence_native": "La macchina è parcheggiata male.", + "example_sentence_english": "The car is badly parked.", + "pos": "adjective", + "word_frequency": 14404 + }, + { + "word": "parrucca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wig", + "romanization": "parrucca", + "example_sentence_native": "Indossava una parrucca bionda.", + "example_sentence_english": "She was wearing a blonde wig.", + "pos": "noun", + "word_frequency": 14405 + }, + { + "word": "passivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passively", + "romanization": "passivamente", + "example_sentence_native": "Ha accettato la situazione passivamente.", + "example_sentence_english": "He accepted the situation passively.", + "pos": "adverb", + "word_frequency": 14406 + }, + { + "word": "penoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitiful", + "romanization": "penoso", + "example_sentence_native": "La sua performance è stata penosa.", + "example_sentence_english": "His performance was pitiful.", + "pos": "adjective", + "word_frequency": 14407 + }, + { + "word": "pentagono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pentagon", + "romanization": "pentagono", + "example_sentence_native": "Un pentagono ha cinque lati.", + "example_sentence_english": "A pentagon has five sides.", + "pos": "noun", + "word_frequency": 14408 + }, + { + "word": "picchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "woodpecker", + "romanization": "picchio", + "example_sentence_native": "Ho sentito il picchio battere sul tronco.", + "example_sentence_english": "I heard the woodpecker tapping on the trunk.", + "pos": "noun", + "word_frequency": 14409 + }, + { + "word": "pinza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pliers", + "romanization": "pinza", + "example_sentence_native": "Mi serve una pinza per stringere questo filo.", + "example_sentence_english": "I need pliers to tighten this wire.", + "pos": "noun", + "word_frequency": 14410 + }, + { + "word": "placebo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "placebo", + "romanization": "placebo", + "example_sentence_native": "L'effetto placebo è ben documentato.", + "example_sentence_english": "The placebo effect is well documented.", + "pos": "noun", + "word_frequency": 14411 + }, + { + "word": "placido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placid", + "romanization": "placido", + "example_sentence_native": "Il lago era placido e rifletteva il cielo.", + "example_sentence_english": "The lake was placid and reflected the sky.", + "pos": "adjective", + "word_frequency": 14412 + }, + { + "word": "policlinico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polyclinic", + "romanization": "policlinico", + "example_sentence_native": "È stato ricoverato al policlinico.", + "example_sentence_english": "He was admitted to the polyclinic.", + "pos": "noun", + "word_frequency": 14413 + }, + { + "word": "posizionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "positioned", + "romanization": "posizionato", + "example_sentence_native": "Il tavolo è posizionato al centro della stanza.", + "example_sentence_english": "The table is positioned in the center of the room.", + "pos": "adjective", + "word_frequency": 14415 + }, + { + "word": "presentimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premonition", + "romanization": "presentimento", + "example_sentence_native": "Ho un brutto presentimento riguardo a questa situazione.", + "example_sentence_english": "I have a bad premonition about this situation.", + "pos": "noun", + "word_frequency": 14416 + }, + { + "word": "presepe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nativity scene", + "romanization": "presepe", + "example_sentence_native": "Ogni Natale facciamo il presepe.", + "example_sentence_english": "Every Christmas we make the nativity scene.", + "pos": "noun", + "word_frequency": 14417 + }, + { + "word": "primissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very first", + "romanization": "primissimo", + "example_sentence_native": "È arrivato al primissimo posto.", + "example_sentence_english": "He arrived in the very first place.", + "pos": "adjective", + "word_frequency": 14418 + }, + { + "word": "provvisto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provided", + "romanization": "provvisto", + "example_sentence_native": "Il kit è provvisto di tutto il necessario.", + "example_sentence_english": "The kit is provided with everything necessary.", + "pos": "adjective", + "word_frequency": 14419 + }, + { + "word": "pugile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxer", + "romanization": "pugile", + "example_sentence_native": "Il pugile si allenava ogni giorno.", + "example_sentence_english": "The boxer trained every day.", + "pos": "noun", + "word_frequency": 14420 + }, + { + "word": "punteggiatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuation", + "romanization": "punteggiatura", + "example_sentence_native": "È importante usare la punteggiatura correttamente.", + "example_sentence_english": "It's important to use punctuation correctly.", + "pos": "noun", + "word_frequency": 14421 + }, + { + "word": "raggruppamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grouping", + "romanization": "raggruppamento", + "example_sentence_native": "Hanno formato un raggruppamento di volontari.", + "example_sentence_english": "They formed a grouping of volunteers.", + "pos": "noun", + "word_frequency": 14422 + }, + { + "word": "reame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realm", + "romanization": "reame", + "example_sentence_native": "Il re governava un vasto reame.", + "example_sentence_english": "The king ruled a vast realm.", + "pos": "noun", + "word_frequency": 14423 + }, + { + "word": "regnante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reigning", + "romanization": "regnante", + "example_sentence_native": "La regina regnante ha visitato la città.", + "example_sentence_english": "The reigning queen visited the city.", + "pos": "adjective", + "word_frequency": 14424 + }, + { + "word": "respiratorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respiratory", + "romanization": "respiratorio", + "example_sentence_native": "Ha problemi al sistema respiratorio.", + "example_sentence_english": "He has problems with his respiratory system.", + "pos": "adjective", + "word_frequency": 14425 + }, + { + "word": "rientrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "returned", + "romanization": "rientrato", + "example_sentence_native": "È rientrato a casa dopo il viaggio.", + "example_sentence_english": "He returned home after the trip.", + "pos": "adjective", + "word_frequency": 14426 + }, + { + "word": "rimpiangere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regret", + "romanization": "rimpiangere", + "example_sentence_native": "Non voglio rimpiangere le mie scelte.", + "example_sentence_english": "I don't want to regret my choices.", + "pos": "verb", + "word_frequency": 14427 + }, + { + "word": "rinforzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reinforced", + "romanization": "rinforzato", + "example_sentence_native": "Hanno costruito un muro rinforzato.", + "example_sentence_english": "They built a reinforced wall.", + "pos": "adjective", + "word_frequency": 14428 + }, + { + "word": "risparmiatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saver", + "romanization": "risparmiatore", + "example_sentence_native": "Il risparmiatore cerca sempre le migliori offerte.", + "example_sentence_english": "The saver always looks for the best offers.", + "pos": "noun", + "word_frequency": 14429 + }, + { + "word": "rosetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rosette", + "romanization": "rosetta", + "example_sentence_native": "Ho comprato una rosetta per la colazione.", + "example_sentence_english": "I bought a bread roll for breakfast.", + "pos": "noun", + "word_frequency": 14430 + }, + { + "word": "sarcofago", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sarcophagus", + "romanization": "sarcofago", + "example_sentence_native": "Il sarcofago era decorato con geroglifici.", + "example_sentence_english": "The sarcophagus was decorated with hieroglyphs.", + "pos": "noun", + "word_frequency": 14434 + }, + { + "word": "scacchiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chessboard", + "romanization": "scacchiera", + "example_sentence_native": "La scacchiera era pronta per la partita.", + "example_sentence_english": "The chessboard was ready for the game.", + "pos": "noun", + "word_frequency": 14436 + }, + { + "word": "scorrevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sliding", + "romanization": "scorrevole", + "example_sentence_native": "La porta scorrevole si è bloccata.", + "example_sentence_english": "The sliding door got stuck.", + "pos": "adjective", + "word_frequency": 14437 + }, + { + "word": "scorza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "peel", + "romanization": "scorza", + "example_sentence_native": "Ho grattugiato la scorza di limone.", + "example_sentence_english": "I grated the lemon peel.", + "pos": "noun", + "word_frequency": 14438 + }, + { + "word": "sfondato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broken through", + "romanization": "sfondato", + "example_sentence_native": "La barca aveva il fondo sfondato.", + "example_sentence_english": "The boat had a broken bottom.", + "pos": "adjective", + "word_frequency": 14439 + }, + { + "word": "sfrenato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbridled;wild;unrestrained", + "romanization": "sfrenato", + "example_sentence_native": "La sua gioia era sfrenata dopo la vittoria.", + "example_sentence_english": "His joy was unbridled after the victory.", + "pos": "adjective", + "word_frequency": 14440 + }, + { + "word": "smeraldo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emerald", + "romanization": "smeraldo", + "example_sentence_native": "L'anello aveva uno splendido smeraldo incastonato.", + "example_sentence_english": "The ring had a splendid emerald set in it.", + "pos": "noun", + "word_frequency": 14444 + }, + { + "word": "soccorrere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to help;to rescue;to aid", + "romanization": "soccorrere", + "example_sentence_native": "Dobbiamo soccorrere le persone in difficoltà.", + "example_sentence_english": "We must help people in difficulty.", + "pos": "verb", + "word_frequency": 14447 + }, + { + "word": "soviet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soviet", + "romanization": "soviet", + "example_sentence_native": "I soviet erano consigli di operai e soldati.", + "example_sentence_english": "The soviets were councils of workers and soldiers.", + "pos": "noun", + "word_frequency": 14448 + }, + { + "word": "sudafricano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South African", + "romanization": "sudafricano", + "example_sentence_native": "È un vino sudafricano molto apprezzato.", + "example_sentence_english": "It's a highly appreciated South African wine.", + "pos": "adjective", + "word_frequency": 14453 + }, + { + "word": "supposta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suppository", + "romanization": "supposta", + "example_sentence_native": "Il medico ha prescritto una supposta per la febbre.", + "example_sentence_english": "The doctor prescribed a suppository for the fever.", + "pos": "noun", + "word_frequency": 14454 + }, + { + "word": "tagliente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sharp;cutting;incisive", + "romanization": "tagliente", + "example_sentence_native": "Il coltello era molto tagliente.", + "example_sentence_english": "The knife was very sharp.", + "pos": "adjective", + "word_frequency": 14455 + }, + { + "word": "tamil", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Tamil (language;people)", + "romanization": "tamil", + "example_sentence_native": "Il tamil è una lingua parlata in Sri Lanka e India.", + "example_sentence_english": "Tamil is a language spoken in Sri Lanka and India.", + "pos": "noun", + "word_frequency": 14456 + }, + { + "word": "tampone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swab;tampon;buffer", + "romanization": "tampone", + "example_sentence_native": "Ha fatto un tampone per il test COVID-19.", + "example_sentence_english": "He took a swab for the COVID-19 test.", + "pos": "noun", + "word_frequency": 14457 + }, + { + "word": "tossicità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toxicity", + "romanization": "tossicità", + "example_sentence_native": "Dobbiamo valutare la tossicità di questa sostanza.", + "example_sentence_english": "We need to evaluate the toxicity of this substance.", + "pos": "noun", + "word_frequency": 14460 + }, + { + "word": "travolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelmed;swept away;engulfed", + "romanization": "travolto", + "example_sentence_native": "Si sentiva travolto dalle emozioni.", + "example_sentence_english": "He felt overwhelmed by emotions.", + "pos": "adjective", + "word_frequency": 14462 + }, + { + "word": "triathlon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "triathlon", + "romanization": "triathlon", + "example_sentence_native": "Si sta allenando per il suo primo triathlon.", + "example_sentence_english": "He is training for his first triathlon.", + "pos": "noun", + "word_frequency": 14463 + }, + { + "word": "vaginale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vaginal", + "romanization": "vaginale", + "example_sentence_native": "Il medico ha prescritto una crema vaginale.", + "example_sentence_english": "The doctor prescribed a vaginal cream.", + "pos": "adjective", + "word_frequency": 14466 + }, + { + "word": "ventotto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-eight", + "romanization": "ventotto", + "example_sentence_native": "Ho ventotto anni.", + "example_sentence_english": "I am twenty-eight years old.", + "pos": "noun", + "word_frequency": 14468 + }, + { + "word": "verga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rod;stick;switch", + "romanization": "verga", + "example_sentence_native": "Il pastore usava una verga per guidare le pecore.", + "example_sentence_english": "The shepherd used a rod to guide the sheep.", + "pos": "noun", + "word_frequency": 14469 + }, + { + "word": "vicentino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Vicenza;Vicentine", + "romanization": "vicentino", + "example_sentence_native": "È un piatto tipico vicentino.", + "example_sentence_english": "It's a typical Vicentine dish.", + "pos": "adjective", + "word_frequency": 14470 + }, + { + "word": "adagio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slowly;gently;softly", + "romanization": "adagio", + "example_sentence_native": "Camminava adagio per non cadere.", + "example_sentence_english": "He walked slowly so as not to fall.", + "pos": "adverb", + "word_frequency": 14474 + }, + { + "word": "adoperato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "used;employed;utilized", + "romanization": "adoperato", + "example_sentence_native": "Questo strumento è stato adoperato per anni.", + "example_sentence_english": "This tool has been used for years.", + "pos": "adjective", + "word_frequency": 14476 + }, + { + "word": "aggancio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hook;connection;link;contact", + "romanization": "aggancio", + "example_sentence_native": "Ha trovato un buon aggancio per il lavoro.", + "example_sentence_english": "He found a good connection for the job.", + "pos": "noun", + "word_frequency": 14477 + }, + { + "word": "alludere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to allude", + "romanization": "alludere", + "example_sentence_native": "Non voleva alludere a nessuno in particolare.", + "example_sentence_english": "He didn't want to allude to anyone in particular.", + "pos": "verb", + "word_frequency": 14482 + }, + { + "word": "applaudire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to applaud", + "romanization": "applaudire", + "example_sentence_native": "Il pubblico ha iniziato ad applaudire alla fine dello spettacolo.", + "example_sentence_english": "The audience started to applaud at the end of the show.", + "pos": "verb", + "word_frequency": 14486 + }, + { + "word": "assecondare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to humor", + "romanization": "assecondare", + "example_sentence_native": "È importante assecondare i desideri dei clienti.", + "example_sentence_english": "It's important to humor the clients' wishes.", + "pos": "verb", + "word_frequency": 14489 + }, + { + "word": "attivismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "activism", + "romanization": "attivismo", + "example_sentence_native": "L'attivismo giovanile è in crescita.", + "example_sentence_english": "Youth activism is growing.", + "pos": "noun", + "word_frequency": 14490 + }, + { + "word": "ausiliario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auxiliary", + "romanization": "ausiliario", + "example_sentence_native": "Il verbo 'essere' è un verbo ausiliario in italiano.", + "example_sentence_english": "The verb 'to be' is an auxiliary verb in Italian.", + "pos": "adjective", + "word_frequency": 14491 + }, + { + "word": "autenticazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "authentication", + "romanization": "autenticazione", + "example_sentence_native": "È richiesta l'autenticazione per accedere al sistema.", + "example_sentence_english": "Authentication is required to access the system.", + "pos": "noun", + "word_frequency": 14492 + }, + { + "word": "autocritica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-criticism", + "romanization": "autocritica", + "example_sentence_native": "La sua capacità di autocritica è notevole.", + "example_sentence_english": "His capacity for self-criticism is remarkable.", + "pos": "noun", + "word_frequency": 14493 + }, + { + "word": "autostradale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorway;highway related", + "romanization": "autostradale", + "example_sentence_native": "C'è un'area di servizio autostradale più avanti.", + "example_sentence_english": "There's a motorway service area further ahead.", + "pos": "adjective", + "word_frequency": 14494 + }, + { + "word": "ava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ancestress", + "romanization": "ava", + "example_sentence_native": "La sua ava era una donna molto saggia.", + "example_sentence_english": "His ancestress was a very wise woman.", + "pos": "noun", + "word_frequency": 14495 + }, + { + "word": "barricata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barricade", + "romanization": "barricata", + "example_sentence_native": "Hanno eretto una barricata per bloccare la strada.", + "example_sentence_english": "They erected a barricade to block the road.", + "pos": "noun", + "word_frequency": 14497 + }, + { + "word": "bassista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bassist", + "romanization": "bassista", + "example_sentence_native": "Il bassista della band è molto talentuoso.", + "example_sentence_english": "The band's bassist is very talented.", + "pos": "noun", + "word_frequency": 14499 + }, + { + "word": "bazar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bazaar", + "romanization": "bazar", + "example_sentence_native": "Abbiamo comprato dei souvenir al bazar.", + "example_sentence_english": "We bought some souvenirs at the bazaar.", + "pos": "noun", + "word_frequency": 14500 + }, + { + "word": "boicottaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boycott", + "romanization": "boicottaggio", + "example_sentence_native": "Hanno organizzato un boicottaggio dei prodotti.", + "example_sentence_english": "They organized a boycott of the products.", + "pos": "noun", + "word_frequency": 14503 + }, + { + "word": "boulevard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boulevard", + "romanization": "boulevard", + "example_sentence_native": "Passeggiavamo lungo il boulevard alberato.", + "example_sentence_english": "We were walking along the tree-lined boulevard.", + "pos": "noun", + "word_frequency": 14504 + }, + { + "word": "buddhista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhist", + "romanization": "buddhista", + "example_sentence_native": "È una persona di fede buddhista.", + "example_sentence_english": "He is a person of Buddhist faith.", + "pos": "adjective", + "word_frequency": 14505 + }, + { + "word": "calcolatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calculator", + "romanization": "calcolatore", + "example_sentence_native": "Ho usato il calcolatore per fare i conti.", + "example_sentence_english": "I used the calculator to do the math.", + "pos": "noun", + "word_frequency": 14507 + }, + { + "word": "caparra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deposit", + "romanization": "caparra", + "example_sentence_native": "Abbiamo dovuto pagare una caparra per l'appartamento.", + "example_sentence_english": "We had to pay a deposit for the apartment.", + "pos": "noun", + "word_frequency": 14510 + }, + { + "word": "carismatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charismatic", + "romanization": "carismatico", + "example_sentence_native": "Era un leader molto carismatico.", + "example_sentence_english": "He was a very charismatic leader.", + "pos": "adjective", + "word_frequency": 14512 + }, + { + "word": "carretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cart", + "romanization": "carretto", + "example_sentence_native": "Il venditore spingeva il suo carretto pieno di frutta.", + "example_sentence_english": "The vendor was pushing his cart full of fruit.", + "pos": "noun", + "word_frequency": 14513 + }, + { + "word": "cavare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extract", + "romanization": "cavare", + "example_sentence_native": "Il dentista ha dovuto cavare un dente.", + "example_sentence_english": "The dentist had to pull out a tooth.", + "pos": "verb", + "word_frequency": 14515 + }, + { + "word": "centralizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centralized", + "romanization": "centralizzato", + "example_sentence_native": "Il sistema di riscaldamento è centralizzato.", + "example_sentence_english": "The heating system is centralized.", + "pos": "adjective", + "word_frequency": 14517 + }, + { + "word": "coinvolgente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "engaging", + "romanization": "coinvolgente", + "example_sentence_native": "Il film era così coinvolgente che non ho notato il tempo che passava.", + "example_sentence_english": "The film was so engaging that I didn't notice the time passing.", + "pos": "adjective", + "word_frequency": 14520 + }, + { + "word": "concretezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concreteness", + "romanization": "concretezza", + "example_sentence_native": "Manca di concretezza nelle sue proposte.", + "example_sentence_english": "He lacks concreteness in his proposals.", + "pos": "noun", + "word_frequency": 14521 + }, + { + "word": "condor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condor", + "romanization": "condor", + "example_sentence_native": "Il condor delle Ande è un uccello maestoso.", + "example_sentence_english": "The Andean condor is a majestic bird.", + "pos": "noun", + "word_frequency": 14522 + }, + { + "word": "confinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to border;to confine", + "romanization": "confinare", + "example_sentence_native": "L'Italia confina con la Francia e la Svizzera.", + "example_sentence_english": "Italy borders France and Switzerland.", + "pos": "verb", + "word_frequency": 14523 + }, + { + "word": "confortevole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comfortable", + "romanization": "confortevole", + "example_sentence_native": "Questa sedia è molto confortevole.", + "example_sentence_english": "This chair is very comfortable.", + "pos": "adjective", + "word_frequency": 14524 + }, + { + "word": "consensuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consensual", + "romanization": "consensuale", + "example_sentence_native": "La decisione è stata consensuale tra tutti i membri.", + "example_sentence_english": "The decision was consensual among all members.", + "pos": "adjective", + "word_frequency": 14525 + }, + { + "word": "constare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to consist of;to be evident", + "romanization": "constare", + "example_sentence_native": "Il documento consta di dieci pagine.", + "example_sentence_english": "The document consists of ten pages.", + "pos": "verb", + "word_frequency": 14526 + }, + { + "word": "crampo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cramp", + "romanization": "crampo", + "example_sentence_native": "Ho avuto un crampo alla gamba durante la corsa.", + "example_sentence_english": "I got a cramp in my leg during the run.", + "pos": "noun", + "word_frequency": 14529 + }, + { + "word": "debitamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duly;properly", + "romanization": "debitamente", + "example_sentence_native": "Il modulo deve essere debitamente compilato.", + "example_sentence_english": "The form must be duly completed.", + "pos": "adverb", + "word_frequency": 14532 + }, + { + "word": "decollare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to take off", + "romanization": "decollare", + "example_sentence_native": "L'aereo è decollato in orario.", + "example_sentence_english": "The plane took off on time.", + "pos": "verb", + "word_frequency": 14533 + }, + { + "word": "depositare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to deposit;to file", + "romanization": "depositare", + "example_sentence_native": "Devo depositare i soldi in banca.", + "example_sentence_english": "I need to deposit the money in the bank.", + "pos": "verb", + "word_frequency": 14539 + }, + { + "word": "desto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awake;alert", + "romanization": "desto", + "example_sentence_native": "Era desto e pronto ad agire.", + "example_sentence_english": "He was awake and ready to act.", + "pos": "adjective", + "word_frequency": 14541 + }, + { + "word": "difficilissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very difficult;extremely difficult", + "romanization": "difficilissimo", + "example_sentence_native": "Questo compito è difficilissimo.", + "example_sentence_english": "This task is very difficult.", + "pos": "adjective", + "word_frequency": 14542 + }, + { + "word": "disgraziato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfortunate;wretched", + "romanization": "disgraziato", + "example_sentence_native": "Quel povero disgraziato ha perso tutto.", + "example_sentence_english": "That poor unfortunate person lost everything.", + "pos": "adjective", + "word_frequency": 14543 + }, + { + "word": "dismisura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excess;immoderation", + "romanization": "dismisura", + "example_sentence_native": "Ha mangiato a dismisura.", + "example_sentence_english": "He ate excessively.", + "pos": "noun", + "word_frequency": 14544 + }, + { + "word": "disuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disuse", + "romanization": "disuso", + "example_sentence_native": "La vecchia fabbrica è caduta in disuso.", + "example_sentence_english": "The old factory fell into disuse.", + "pos": "noun", + "word_frequency": 14545 + }, + { + "word": "durissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very hard;extremely hard", + "romanization": "durissimo", + "example_sentence_native": "È stato un periodo durissimo per tutti.", + "example_sentence_english": "It was a very hard time for everyone.", + "pos": "adjective", + "word_frequency": 14546 + }, + { + "word": "edificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "construction;edification", + "romanization": "edificazione", + "example_sentence_native": "Il progetto prevede l'edificazione di nuovi edifici.", + "example_sentence_english": "The project involves the construction of new buildings.", + "pos": "noun", + "word_frequency": 14549 + }, + { + "word": "eguaglianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equality", + "romanization": "eguaglianza", + "example_sentence_native": "Si batteva per l'eguaglianza sociale.", + "example_sentence_english": "He fought for social equality.", + "pos": "noun", + "word_frequency": 14550 + }, + { + "word": "epicentro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epicenter", + "romanization": "epicentro", + "example_sentence_native": "L'epicentro del terremoto era a pochi chilometri dalla città.", + "example_sentence_english": "The epicenter of the earthquake was a few kilometers from the city.", + "pos": "noun", + "word_frequency": 14551 + }, + { + "word": "esclamare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to exclaim", + "romanization": "esclamare", + "example_sentence_native": "\"Che bello!\" esclamò con gioia.", + "example_sentence_english": "\"How beautiful!\" he exclaimed with joy.", + "pos": "verb", + "word_frequency": 14554 + }, + { + "word": "eterosessuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heterosexual", + "romanization": "eterosessuale", + "example_sentence_native": "La maggior parte della popolazione è eterosessuale.", + "example_sentence_english": "The majority of the population is heterosexual.", + "pos": "adjective", + "word_frequency": 14555 + }, + { + "word": "fatturazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invoicing;billing", + "romanization": "fatturazione", + "example_sentence_native": "Si occupa della fatturazione dei clienti.", + "example_sentence_english": "He handles customer invoicing.", + "pos": "noun", + "word_frequency": 14557 + }, + { + "word": "finocchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fennel", + "romanization": "finocchio", + "example_sentence_native": "Mi piace il sapore del finocchio nell'insalata.", + "example_sentence_english": "I like the taste of fennel in salad.", + "pos": "noun", + "word_frequency": 14559 + }, + { + "word": "fondale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seabed;backdrop", + "romanization": "fondale", + "example_sentence_native": "Il fondale marino era pieno di coralli colorati.", + "example_sentence_english": "The seabed was full of colorful corals.", + "pos": "noun", + "word_frequency": 14560 + }, + { + "word": "franchezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frankness;candor", + "romanization": "franchezza", + "example_sentence_native": "Apprezzo sempre la sua franchezza.", + "example_sentence_english": "I always appreciate his frankness.", + "pos": "noun", + "word_frequency": 14561 + }, + { + "word": "frangente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "juncture;critical moment", + "romanization": "frangente", + "example_sentence_native": "In quel frangente, non sapevo cosa fare.", + "example_sentence_english": "At that juncture, I didn't know what to do.", + "pos": "noun", + "word_frequency": 14562 + }, + { + "word": "gaffe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gaffe;blunder", + "romanization": "gaffe", + "example_sentence_native": "Ha fatto una gaffe imbarazzante durante la cena.", + "example_sentence_english": "He made an embarrassing gaffe during dinner.", + "pos": "noun", + "word_frequency": 14564 + }, + { + "word": "giocondo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joyful;cheerful", + "romanization": "giocondo", + "example_sentence_native": "Il suo spirito giocondo era contagioso.", + "example_sentence_english": "His joyful spirit was contagious.", + "pos": "adjective", + "word_frequency": 14565 + }, + { + "word": "giogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "yoke;burden", + "romanization": "giogo", + "example_sentence_native": "Si liberarono dal giogo dell'oppressione.", + "example_sentence_english": "They freed themselves from the yoke of oppression.", + "pos": "noun", + "word_frequency": 14566 + }, + { + "word": "giuridicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legally;juridically", + "romanization": "giuridicamente", + "example_sentence_native": "La decisione è giuridicamente vincolante.", + "example_sentence_english": "The decision is legally binding.", + "pos": "adverb", + "word_frequency": 14567 + }, + { + "word": "humor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humor;humour", + "romanization": "humor", + "example_sentence_native": "Il suo humor nero non è per tutti.", + "example_sentence_english": "His dark humor is not for everyone.", + "pos": "noun", + "word_frequency": 14576 + }, + { + "word": "identificarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to identify oneself;to identify with", + "romanization": "identificarsi", + "example_sentence_native": "È facile identificarsi con il protagonista.", + "example_sentence_english": "It's easy to identify with the protagonist.", + "pos": "verb", + "word_frequency": 14578 + }, + { + "word": "imbarazzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embarrassed", + "romanization": "imbarazzato", + "example_sentence_native": "Era molto imbarazzato dopo la sua gaffe.", + "example_sentence_english": "He was very embarrassed after his gaffe.", + "pos": "adjective", + "word_frequency": 14580 + }, + { + "word": "impresso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impressed;imprinted", + "romanization": "impresso", + "example_sentence_native": "La sua immagine è rimasta impressa nella mia mente.", + "example_sentence_english": "His image remained impressed in my mind.", + "pos": "adjective", + "word_frequency": 14581 + }, + { + "word": "indiscrezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indiscretion;gossip", + "romanization": "indiscrezione", + "example_sentence_native": "Le indiscrezioni sulla sua vita privata sono aumentate.", + "example_sentence_english": "The indiscretions about his private life increased.", + "pos": "noun", + "word_frequency": 14582 + }, + { + "word": "informe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shapeless;formless", + "romanization": "informe", + "example_sentence_native": "La massa informe si muoveva lentamente.", + "example_sentence_english": "The shapeless mass moved slowly.", + "pos": "adjective", + "word_frequency": 14583 + }, + { + "word": "ingannevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deceptive;misleading", + "romanization": "ingannevole", + "example_sentence_native": "L'offerta sembrava buona, ma era ingannevole.", + "example_sentence_english": "The offer seemed good, but it was deceptive.", + "pos": "adjective", + "word_frequency": 14584 + }, + { + "word": "intollerante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerant", + "romanization": "intollerante", + "example_sentence_native": "Non possiamo essere intolleranti verso le diverse opinioni.", + "example_sentence_english": "We cannot be intolerant of different opinions.", + "pos": "adjective", + "word_frequency": 14585 + }, + { + "word": "introduttivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introductory", + "romanization": "introduttivo", + "example_sentence_native": "Il corso introduttivo è obbligatorio.", + "example_sentence_english": "The introductory course is mandatory.", + "pos": "adjective", + "word_frequency": 14586 + }, + { + "word": "istruttoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preliminary investigation;inquiry", + "romanization": "istruttoria", + "example_sentence_native": "L'istruttoria del caso è ancora in corso.", + "example_sentence_english": "The preliminary investigation of the case is still ongoing.", + "pos": "noun", + "word_frequency": 14588 + }, + { + "word": "latitante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fugitive;on the run", + "romanization": "latitante", + "example_sentence_native": "Il criminale è ancora latitante.", + "example_sentence_english": "The criminal is still on the run.", + "pos": "adjective", + "word_frequency": 14595 + }, + { + "word": "libanese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Lebanese", + "romanization": "libanese", + "example_sentence_native": "La cucina libanese è deliziosa.", + "example_sentence_english": "Lebanese cuisine is delicious.", + "pos": "adjective", + "word_frequency": 14599 + }, + { + "word": "lustro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "five-year period", + "romanization": "lustro", + "example_sentence_native": "Sono passati due lustri da quando ci siamo incontrati.", + "example_sentence_english": "Two five-year periods have passed since we met.", + "pos": "noun", + "word_frequency": 14604 + }, + { + "word": "maleducazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rudeness", + "romanization": "maleducazione", + "example_sentence_native": "La sua maleducazione è inaccettabile.", + "example_sentence_english": "His rudeness is unacceptable.", + "pos": "noun", + "word_frequency": 14607 + }, + { + "word": "mandolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mandolin", + "romanization": "mandolino", + "example_sentence_native": "Suona il mandolino molto bene.", + "example_sentence_english": "He plays the mandolin very well.", + "pos": "noun", + "word_frequency": 14608 + }, + { + "word": "mantovano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Mantuan", + "romanization": "mantovano", + "example_sentence_native": "Il tortello mantovano è una specialità locale.", + "example_sentence_english": "Mantuan tortello is a local specialty.", + "pos": "adjective", + "word_frequency": 14609 + }, + { + "word": "mendicante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beggar", + "romanization": "mendicante", + "example_sentence_native": "Un mendicante chiedeva l'elemosina per strada.", + "example_sentence_english": "A beggar was asking for alms on the street.", + "pos": "noun", + "word_frequency": 14612 + }, + { + "word": "moltiplicazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "multiplication", + "romanization": "moltiplicazione", + "example_sentence_native": "Stiamo imparando la moltiplicazione a scuola.", + "example_sentence_english": "We are learning multiplication at school.", + "pos": "noun", + "word_frequency": 14617 + }, + { + "word": "motocicletta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "motorcycle", + "romanization": "motocicletta", + "example_sentence_native": "Ha comprato una nuova motocicletta.", + "example_sentence_english": "He bought a new motorcycle.", + "pos": "noun", + "word_frequency": 14619 + }, + { + "word": "nell'oscurità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "in the darkness", + "romanization": "nell'oscurità", + "example_sentence_native": "Si muoveva nell'oscurità.", + "example_sentence_english": "He moved in the darkness.", + "pos": "adverb", + "word_frequency": 14621 + }, + { + "word": "nirvana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nirvana", + "romanization": "nirvana", + "example_sentence_native": "Molte filosofie orientali cercano il nirvana.", + "example_sentence_english": "Many Eastern philosophies seek nirvana.", + "pos": "noun", + "word_frequency": 14623 + }, + { + "word": "oltremodo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exceedingly", + "romanization": "oltremodo", + "example_sentence_native": "Era oltremodo stanco dopo il viaggio.", + "example_sentence_english": "He was exceedingly tired after the trip.", + "pos": "adverb", + "word_frequency": 14627 + }, + { + "word": "opuscolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "booklet", + "romanization": "opuscolo", + "example_sentence_native": "Ho preso un opuscolo informativo all'ufficio turistico.", + "example_sentence_english": "I took an informational booklet at the tourist office.", + "pos": "noun", + "word_frequency": 14628 + }, + { + "word": "oracolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oracle", + "romanization": "oracolo", + "example_sentence_native": "L'oracolo di Delfi era famoso nell'antichità.", + "example_sentence_english": "The Oracle of Delphi was famous in antiquity.", + "pos": "noun", + "word_frequency": 14629 + }, + { + "word": "ovaia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ovary", + "romanization": "ovaia", + "example_sentence_native": "Le ovaie sono organi riproduttivi femminili.", + "example_sentence_english": "Ovaries are female reproductive organs.", + "pos": "noun", + "word_frequency": 14630 + }, + { + "word": "persico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "perch", + "romanization": "persico", + "example_sentence_native": "Abbiamo pescato un bel persico nel lago.", + "example_sentence_english": "We caught a nice perch in the lake.", + "pos": "noun", + "word_frequency": 14632 + }, + { + "word": "pestare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stomp", + "romanization": "pestare", + "example_sentence_native": "Ha pestato una pozzanghera per sbaglio.", + "example_sentence_english": "He accidentally stomped in a puddle.", + "pos": "verb", + "word_frequency": 14633 + }, + { + "word": "piccino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tiny", + "romanization": "piccino", + "example_sentence_native": "Ha un gattino piccino e adorabile.", + "example_sentence_english": "She has a tiny and adorable kitten.", + "pos": "adjective", + "word_frequency": 14635 + }, + { + "word": "polarizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polarization", + "romanization": "polarizzazione", + "example_sentence_native": "Si osserva una crescente polarizzazione politica.", + "example_sentence_english": "A growing political polarization is observed.", + "pos": "noun", + "word_frequency": 14636 + }, + { + "word": "poveraccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poor fellow", + "romanization": "poveraccio", + "example_sentence_native": "Quel poveraccio ha perso tutto.", + "example_sentence_english": "That poor fellow lost everything.", + "pos": "noun", + "word_frequency": 14637 + }, + { + "word": "predisporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to arrange", + "romanization": "predisporre", + "example_sentence_native": "Dobbiamo predisporre i documenti per la riunione.", + "example_sentence_english": "We need to arrange the documents for the meeting.", + "pos": "verb", + "word_frequency": 14638 + }, + { + "word": "profano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profane", + "romanization": "profano", + "example_sentence_native": "Non è un esperto, è un profano in materia.", + "example_sentence_english": "He is not an expert, he is a layman on the subject.", + "pos": "adjective", + "word_frequency": 14639 + }, + { + "word": "promontorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promontory;headland", + "romanization": "promontorio", + "example_sentence_native": "Il faro si ergeva maestoso sul promontorio.", + "example_sentence_english": "The lighthouse stood majestically on the promontory.", + "pos": "noun", + "word_frequency": 14640 + }, + { + "word": "quattrino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coin;penny", + "romanization": "quattrino", + "example_sentence_native": "Non ho un quattrino in tasca.", + "example_sentence_english": "I don't have a penny in my pocket.", + "pos": "noun", + "word_frequency": 14641 + }, + { + "word": "quest'oggi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "today (this day)", + "romanization": "quest'oggi", + "example_sentence_native": "Quest'oggi il tempo è splendido.", + "example_sentence_english": "Today the weather is splendid.", + "pos": "adverb", + "word_frequency": 14642 + }, + { + "word": "radioattivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radioactive", + "romanization": "radioattivo", + "example_sentence_native": "Il materiale era altamente radioattivo.", + "example_sentence_english": "The material was highly radioactive.", + "pos": "adjective", + "word_frequency": 14643 + }, + { + "word": "reflex", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reflex (camera);reflex (action)", + "romanization": "reflex", + "example_sentence_native": "Ho comprato una nuova macchina fotografica reflex.", + "example_sentence_english": "I bought a new reflex camera.", + "pos": "noun", + "word_frequency": 14645 + }, + { + "word": "restyling", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restyling;facelift", + "romanization": "restyling", + "example_sentence_native": "L'azienda ha annunciato un restyling completo del prodotto.", + "example_sentence_english": "The company announced a complete restyling of the product.", + "pos": "noun", + "word_frequency": 14646 + }, + { + "word": "reticolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reticle;grid;network", + "romanization": "reticolo", + "example_sentence_native": "Il microscopio aveva un reticolo per misurare le dimensioni.", + "example_sentence_english": "The microscope had a reticle for measuring dimensions.", + "pos": "noun", + "word_frequency": 14647 + }, + { + "word": "rettangolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rectangle", + "romanization": "rettangolo", + "example_sentence_native": "Disegna un rettangolo con i lati di cinque e dieci centimetri.", + "example_sentence_english": "Draw a rectangle with sides of five and ten centimeters.", + "pos": "noun", + "word_frequency": 14648 + }, + { + "word": "ricevente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receiving;recipient", + "romanization": "ricevente", + "example_sentence_native": "L'antenna ricevente è stata danneggiata dalla tempesta.", + "example_sentence_english": "The receiving antenna was damaged by the storm.", + "pos": "adjective", + "word_frequency": 14650 + }, + { + "word": "riordino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reorganization;tidying up;reordering", + "romanization": "riordino", + "example_sentence_native": "Abbiamo bisogno di un riordino completo dell'ufficio.", + "example_sentence_english": "We need a complete reorganization of the office.", + "pos": "noun", + "word_frequency": 14651 + }, + { + "word": "rising", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rising;increasing", + "romanization": "rising", + "example_sentence_native": "C'è una tendenza rising nei prezzi del petrolio.", + "example_sentence_english": "There is a rising trend in oil prices.", + "pos": "adjective", + "word_frequency": 14652 + }, + { + "word": "rospo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toad", + "romanization": "rospo", + "example_sentence_native": "Un grosso rospo saltò fuori dall'erba.", + "example_sentence_english": "A large toad jumped out of the grass.", + "pos": "noun", + "word_frequency": 14653 + }, + { + "word": "rottame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scrap;junk;wreckage", + "romanization": "rottame", + "example_sentence_native": "L'auto era ridotta a un rottame dopo l'incidente.", + "example_sentence_english": "The car was reduced to wreckage after the accident.", + "pos": "noun", + "word_frequency": 14654 + }, + { + "word": "rullo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roller;roll", + "romanization": "rullo", + "example_sentence_native": "Ha usato un rullo per dipingere la parete.", + "example_sentence_english": "He used a roller to paint the wall.", + "pos": "noun", + "word_frequency": 14655 + }, + { + "word": "russian", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Russian", + "romanization": "russian", + "example_sentence_native": "Ha imparato il russo da un insegnante russian.", + "example_sentence_english": "He learned Russian from a Russian teacher.", + "pos": "adjective", + "word_frequency": 14656 + }, + { + "word": "sandwich", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "sandwich", + "romanization": "sandwich", + "example_sentence_native": "Vorrei un sandwich al prosciutto e formaggio.", + "example_sentence_english": "I would like a ham and cheese sandwich.", + "pos": "noun", + "word_frequency": 14659 + }, + { + "word": "scalzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barefoot", + "romanization": "scalzo", + "example_sentence_native": "Camminava scalzo sulla sabbia calda.", + "example_sentence_english": "He walked barefoot on the hot sand.", + "pos": "adjective", + "word_frequency": 14660 + }, + { + "word": "sciare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ski", + "romanization": "sciare", + "example_sentence_native": "Adoro sciare in montagna durante l'inverno.", + "example_sentence_english": "I love to ski in the mountains during winter.", + "pos": "verb", + "word_frequency": 14662 + }, + { + "word": "slovacco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Slovak", + "romanization": "slovacco", + "example_sentence_native": "Ha incontrato una ragazza slovacca durante il suo viaggio.", + "example_sentence_english": "He met a Slovak girl during his trip.", + "pos": "adjective", + "word_frequency": 14665 + }, + { + "word": "soccorritore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rescuer;first responder", + "romanization": "soccorritore", + "example_sentence_native": "I soccorritori sono arrivati rapidamente sul luogo dell'incidente.", + "example_sentence_english": "The rescuers arrived quickly at the scene of the accident.", + "pos": "noun", + "word_frequency": 14666 + }, + { + "word": "societario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporate;company-related", + "romanization": "societario", + "example_sentence_native": "Ha partecipato all'assemblea societaria annuale.", + "example_sentence_english": "He participated in the annual corporate meeting.", + "pos": "adjective", + "word_frequency": 14667 + }, + { + "word": "sofferente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suffering;in pain", + "romanization": "sofferente", + "example_sentence_native": "Il paziente sembrava molto sofferente.", + "example_sentence_english": "The patient seemed to be in a lot of pain.", + "pos": "adjective", + "word_frequency": 14668 + }, + { + "word": "sopperire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make up for;to compensate for;to provide for", + "romanization": "sopperire", + "example_sentence_native": "Dobbiamo sopperire alla mancanza di fondi con altre risorse.", + "example_sentence_english": "We must make up for the lack of funds with other resources.", + "pos": "verb", + "word_frequency": 14669 + }, + { + "word": "sostantivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "noun;substantive", + "romanization": "sostantivo", + "example_sentence_native": "In questa frase, \"casa\" è un sostantivo.", + "example_sentence_english": "In this sentence, \"house\" is a noun.", + "pos": "noun", + "word_frequency": 14670 + }, + { + "word": "sottomesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "submissive;subdued", + "romanization": "sottomesso", + "example_sentence_native": "Il cane era molto sottomesso al suo padrone.", + "example_sentence_english": "The dog was very submissive to its owner.", + "pos": "adjective", + "word_frequency": 14671 + }, + { + "word": "spacciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deal (drugs);to peddle;to pass off (as)", + "romanization": "spacciare", + "example_sentence_native": "È stato arrestato per spacciare droga.", + "example_sentence_english": "He was arrested for dealing drugs.", + "pos": "verb", + "word_frequency": 14672 + }, + { + "word": "spiccato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marked;distinct;pronounced", + "romanization": "spiccato", + "example_sentence_native": "Ha un talento spiccato per la musica.", + "example_sentence_english": "He has a marked talent for music.", + "pos": "adjective", + "word_frequency": 14673 + }, + { + "word": "split", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "split;division", + "romanization": "split", + "example_sentence_native": "Hanno deciso per uno split delle azioni della società.", + "example_sentence_english": "They decided on a split of the company's shares.", + "pos": "noun", + "word_frequency": 14674 + }, + { + "word": "spudoratamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shamelessly;brazenly", + "romanization": "spudoratamente", + "example_sentence_native": "Ha mentito spudoratamente davanti a tutti.", + "example_sentence_english": "He lied shamelessly in front of everyone.", + "pos": "adverb", + "word_frequency": 14675 + }, + { + "word": "squad", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squad;team", + "romanization": "squad", + "example_sentence_native": "La nostra squad ha vinto il torneo.", + "example_sentence_english": "Our squad won the tournament.", + "pos": "noun", + "word_frequency": 14676 + }, + { + "word": "sull'onda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on the wave (of);riding the wave (of)", + "romanization": "sull'onda", + "example_sentence_native": "L'azienda è sull'onda del successo.", + "example_sentence_english": "The company is riding the wave of success.", + "pos": "adverb", + "word_frequency": 14677 + }, + { + "word": "supplica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plea;supplication", + "romanization": "supplica", + "example_sentence_native": "Ha rivolto una supplica al giudice.", + "example_sentence_english": "He made a plea to the judge.", + "pos": "noun", + "word_frequency": 14678 + }, + { + "word": "svanire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vanish;to fade away", + "romanization": "svanire", + "example_sentence_native": "Le sue speranze sembravano svanire nel nulla.", + "example_sentence_english": "His hopes seemed to vanish into thin air.", + "pos": "verb", + "word_frequency": 14679 + }, + { + "word": "swing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swing", + "romanization": "swing", + "example_sentence_native": "La band suonava musica swing.", + "example_sentence_english": "The band played swing music.", + "pos": "noun", + "word_frequency": 14680 + }, + { + "word": "tempismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timing", + "romanization": "tempismo", + "example_sentence_native": "Il suo tempismo era perfetto per l'occasione.", + "example_sentence_english": "His timing was perfect for the occasion.", + "pos": "noun", + "word_frequency": 14681 + }, + { + "word": "tinto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dyed;colored", + "romanization": "tinto", + "example_sentence_native": "Ha i capelli tinti di rosso.", + "example_sentence_english": "She has red-dyed hair.", + "pos": "adjective", + "word_frequency": 14685 + }, + { + "word": "transitorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transitory;temporary", + "romanization": "transitorio", + "example_sentence_native": "La fase di transizione è stata molto transitoria.", + "example_sentence_english": "The transition phase was very transitory.", + "pos": "adjective", + "word_frequency": 14687 + }, + { + "word": "trentacinque", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty-five", + "romanization": "trentacinque", + "example_sentence_native": "Ho trentacinque anni.", + "example_sentence_english": "I am thirty-five years old.", + "pos": "adjective", + "word_frequency": 14688 + }, + { + "word": "trota", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trout", + "romanization": "trota", + "example_sentence_native": "Abbiamo pescato una trota nel fiume.", + "example_sentence_english": "We caught a trout in the river.", + "pos": "noun", + "word_frequency": 14689 + }, + { + "word": "tufo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tuff (volcanic rock)", + "romanization": "tufo", + "example_sentence_native": "Molte case antiche sono costruite in tufo.", + "example_sentence_english": "Many ancient houses are built of tuff.", + "pos": "noun", + "word_frequency": 14691 + }, + { + "word": "vastità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vastness;immensity", + "romanization": "vastità", + "example_sentence_native": "La vastità del deserto era impressionante.", + "example_sentence_english": "The vastness of the desert was impressive.", + "pos": "noun", + "word_frequency": 14693 + }, + { + "word": "venerazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "veneration;reverence", + "romanization": "venerazione", + "example_sentence_native": "Provava una profonda venerazione per i suoi antenati.", + "example_sentence_english": "He felt a deep veneration for his ancestors.", + "pos": "noun", + "word_frequency": 14694 + }, + { + "word": "veranda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veranda;porch", + "romanization": "veranda", + "example_sentence_native": "Ci siamo seduti in veranda a prendere il caffè.", + "example_sentence_english": "We sat on the veranda to have coffee.", + "pos": "noun", + "word_frequency": 14695 + }, + { + "word": "vibrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibrant;vibrating", + "romanization": "vibrante", + "example_sentence_native": "La sua voce era vibrante di emozione.", + "example_sentence_english": "Her voice was vibrant with emotion.", + "pos": "adjective", + "word_frequency": 14696 + }, + { + "word": "villetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small villa;detached house", + "romanization": "villetta", + "example_sentence_native": "Hanno comprato una graziosa villetta in campagna.", + "example_sentence_english": "They bought a charming small villa in the countryside.", + "pos": "noun", + "word_frequency": 14697 + }, + { + "word": "virile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virile;manly", + "romanization": "virile", + "example_sentence_native": "Aveva un aspetto forte e virile.", + "example_sentence_english": "He had a strong and virile appearance.", + "pos": "adjective", + "word_frequency": 14698 + }, + { + "word": "vivacità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vivacity;liveliness", + "romanization": "vivacità", + "example_sentence_native": "La vivacità dei bambini riempiva la casa.", + "example_sentence_english": "The vivacity of the children filled the house.", + "pos": "noun", + "word_frequency": 14699 + }, + { + "word": "whiskey", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "whiskey", + "romanization": "whiskey", + "example_sentence_native": "Ha ordinato un bicchiere di whiskey.", + "example_sentence_english": "He ordered a glass of whiskey.", + "pos": "noun", + "word_frequency": 14700 + }, + { + "word": "accentuare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accentuate;to emphasize", + "romanization": "accentuare", + "example_sentence_native": "È importante accentuare le parole chiave.", + "example_sentence_english": "It's important to accentuate the keywords.", + "pos": "verb", + "word_frequency": 14705 + }, + { + "word": "accoppiamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coupling;mating;pairing", + "romanization": "accoppiamento", + "example_sentence_native": "L'accoppiamento dei cavi è fondamentale per la connessione.", + "example_sentence_english": "The coupling of the cables is fundamental for the connection.", + "pos": "noun", + "word_frequency": 14706 + }, + { + "word": "accoppiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coupled;paired", + "romanization": "accoppiato", + "example_sentence_native": "I due elementi sono accoppiati perfettamente.", + "example_sentence_english": "The two elements are perfectly coupled.", + "pos": "adjective", + "word_frequency": 14707 + }, + { + "word": "acquatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aquatic", + "romanization": "acquatico", + "example_sentence_native": "Le piante acquatiche crescono nel lago.", + "example_sentence_english": "Aquatic plants grow in the lake.", + "pos": "adjective", + "word_frequency": 14708 + }, + { + "word": "adepto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adept;follower", + "romanization": "adepto", + "example_sentence_native": "Era un adepto di quella filosofia.", + "example_sentence_english": "He was an adept of that philosophy.", + "pos": "noun", + "word_frequency": 14709 + }, + { + "word": "adibire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to use as;to destine for", + "romanization": "adibire", + "example_sentence_native": "La stanza è stata adibita a studio.", + "example_sentence_english": "The room has been used as a study.", + "pos": "verb", + "word_frequency": 14710 + }, + { + "word": "affliggere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to afflict;to distress", + "romanization": "affliggere", + "example_sentence_native": "La malattia lo affliggeva da anni.", + "example_sentence_english": "The illness had afflicted him for years.", + "pos": "verb", + "word_frequency": 14712 + }, + { + "word": "antistante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "in front of;opposite", + "romanization": "antistante", + "example_sentence_native": "La casa antistante ha un bel giardino.", + "example_sentence_english": "The house opposite has a beautiful garden.", + "pos": "adjective", + "word_frequency": 14716 + }, + { + "word": "antivirus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antivirus", + "romanization": "antivirus", + "example_sentence_native": "Ho installato un nuovo antivirus sul computer.", + "example_sentence_english": "I installed a new antivirus on the computer.", + "pos": "noun", + "word_frequency": 14717 + }, + { + "word": "apprensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apprehension;anxiety", + "romanization": "apprensione", + "example_sentence_native": "Sentiva una forte apprensione per l'esame.", + "example_sentence_english": "He felt a strong apprehension about the exam.", + "pos": "noun", + "word_frequency": 14719 + }, + { + "word": "autodidatta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-taught", + "romanization": "autodidatta", + "example_sentence_native": "È un musicista autodidatta.", + "example_sentence_english": "He is a self-taught musician.", + "pos": "adjective", + "word_frequency": 14721 + }, + { + "word": "avvertenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warning", + "romanization": "avvertenza", + "example_sentence_native": "Leggere attentamente l'avvertenza prima dell'uso.", + "example_sentence_english": "Read the warning carefully before use.", + "pos": "noun", + "word_frequency": 14722 + }, + { + "word": "ballata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ballad", + "romanization": "ballata", + "example_sentence_native": "Ha cantato una bellissima ballata.", + "example_sentence_english": "She sang a beautiful ballad.", + "pos": "noun", + "word_frequency": 14723 + }, + { + "word": "benevolenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benevolence", + "romanization": "benevolenza", + "example_sentence_native": "Ha mostrato grande benevolenza verso i poveri.", + "example_sentence_english": "He showed great benevolence towards the poor.", + "pos": "noun", + "word_frequency": 14724 + }, + { + "word": "biliardo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "billiards", + "romanization": "biliardo", + "example_sentence_native": "Andiamo a giocare a biliardo stasera?", + "example_sentence_english": "Shall we go play billiards tonight?", + "pos": "noun", + "word_frequency": 14726 + }, + { + "word": "blindato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armored", + "romanization": "blindato", + "example_sentence_native": "Hanno usato un veicolo blindato per il trasporto.", + "example_sentence_english": "They used an armored vehicle for transport.", + "pos": "adjective", + "word_frequency": 14728 + }, + { + "word": "camionista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck driver", + "romanization": "camionista", + "example_sentence_native": "Mio zio è un camionista e viaggia molto.", + "example_sentence_english": "My uncle is a truck driver and travels a lot.", + "pos": "noun", + "word_frequency": 14733 + }, + { + "word": "carnagione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "complexion", + "romanization": "carnagione", + "example_sentence_native": "Ha una carnagione chiara e delicata.", + "example_sentence_english": "She has a fair and delicate complexion.", + "pos": "noun", + "word_frequency": 14734 + }, + { + "word": "chattare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chat", + "romanization": "chattare", + "example_sentence_native": "Mi piace chattare con i miei amici online.", + "example_sentence_english": "I like to chat with my friends online.", + "pos": "verb", + "word_frequency": 14736 + }, + { + "word": "chicca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gem;treat", + "romanization": "chicca", + "example_sentence_native": "Questa ricetta è una vera chicca!", + "example_sentence_english": "This recipe is a real gem!", + "pos": "noun", + "word_frequency": 14737 + }, + { + "word": "chiesetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small church;chapel", + "romanization": "chiesetta", + "example_sentence_native": "C'è una graziosa chiesetta sulla collina.", + "example_sentence_english": "There's a lovely small church on the hill.", + "pos": "noun", + "word_frequency": 14739 + }, + { + "word": "choc", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shock", + "romanization": "choc", + "example_sentence_native": "La notizia ha causato un grande choc.", + "example_sentence_english": "The news caused a great shock.", + "pos": "noun", + "word_frequency": 14740 + }, + { + "word": "clerico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cleric", + "romanization": "clerico", + "example_sentence_native": "Il clerico ha officiato la cerimonia.", + "example_sentence_english": "The cleric officiated the ceremony.", + "pos": "noun", + "word_frequency": 14743 + }, + { + "word": "coesistenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coexistence", + "romanization": "coesistenza", + "example_sentence_native": "La coesistenza pacifica è fondamentale.", + "example_sentence_english": "Peaceful coexistence is fundamental.", + "pos": "noun", + "word_frequency": 14744 + }, + { + "word": "commemorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commemorate", + "romanization": "commemorare", + "example_sentence_native": "Ci siamo riuniti per commemorare i caduti.", + "example_sentence_english": "We gathered to commemorate the fallen.", + "pos": "verb", + "word_frequency": 14745 + }, + { + "word": "condottiero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "condottiere;mercenary captain", + "romanization": "condottiero", + "example_sentence_native": "Il condottiero guidò le sue truppe alla vittoria.", + "example_sentence_english": "The condottiere led his troops to victory.", + "pos": "noun", + "word_frequency": 14746 + }, + { + "word": "consigliabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advisable", + "romanization": "consigliabile", + "example_sentence_native": "È consigliabile consultare un medico.", + "example_sentence_english": "It is advisable to consult a doctor.", + "pos": "adjective", + "word_frequency": 14747 + }, + { + "word": "contraffazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterfeiting;forgery", + "romanization": "contraffazione", + "example_sentence_native": "La contraffazione è un reato grave.", + "example_sentence_english": "Counterfeiting is a serious crime.", + "pos": "noun", + "word_frequency": 14748 + }, + { + "word": "cornetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "croissant (Italian style);ice cream cone", + "romanization": "cornetto", + "example_sentence_native": "Ho fatto colazione con un caffè e un cornetto.", + "example_sentence_english": "I had breakfast with a coffee and a croissant.", + "pos": "noun", + "word_frequency": 14750 + }, + { + "word": "corporate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporate", + "romanization": "corporate", + "example_sentence_native": "La responsabilità corporate è importante.", + "example_sentence_english": "Corporate responsibility is important.", + "pos": "adjective", + "word_frequency": 14751 + }, + { + "word": "cottage", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cottage", + "romanization": "cottage", + "example_sentence_native": "Hanno affittato un cottage in campagna.", + "example_sentence_english": "They rented a cottage in the countryside.", + "pos": "noun", + "word_frequency": 14752 + }, + { + "word": "crepuscolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twilight;dusk", + "romanization": "crepuscolo", + "example_sentence_native": "Ci siamo incontrati al crepuscolo.", + "example_sentence_english": "We met at twilight.", + "pos": "noun", + "word_frequency": 14754 + }, + { + "word": "cricca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clique;gang", + "romanization": "cricca", + "example_sentence_native": "La cricca ha preso il controllo dell'azienda.", + "example_sentence_english": "The clique took control of the company.", + "pos": "noun", + "word_frequency": 14755 + }, + { + "word": "dating", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dating", + "romanization": "dating", + "example_sentence_native": "Il dating online è diventato molto popolare.", + "example_sentence_english": "Online dating has become very popular.", + "pos": "noun", + "word_frequency": 14758 + }, + { + "word": "deal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deal", + "romanization": "deal", + "example_sentence_native": "Abbiamo chiuso un buon deal.", + "example_sentence_english": "We closed a good deal.", + "pos": "noun", + "word_frequency": 14759 + }, + { + "word": "declinazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "declension", + "romanization": "declinazione", + "example_sentence_native": "La declinazione dei nomi latini può essere complessa.", + "example_sentence_english": "The declension of Latin nouns can be complex.", + "pos": "noun", + "word_frequency": 14760 + }, + { + "word": "diciottenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eighteen-year-old", + "romanization": "diciottenne", + "example_sentence_native": "Mio fratello è un diciottenne.", + "example_sentence_english": "My brother is an eighteen-year-old.", + "pos": "adjective", + "word_frequency": 14769 + }, + { + "word": "divorziare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to divorce", + "romanization": "divorziare", + "example_sentence_native": "Hanno deciso di divorziare dopo vent'anni di matrimonio.", + "example_sentence_english": "They decided to divorce after twenty years of marriage.", + "pos": "verb", + "word_frequency": 14770 + }, + { + "word": "dolcetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sweet treat", + "romanization": "dolcetto", + "example_sentence_native": "Vorrei un dolcetto con il caffè.", + "example_sentence_english": "I would like a sweet treat with my coffee.", + "pos": "noun", + "word_frequency": 14771 + }, + { + "word": "ensemble", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ensemble", + "romanization": "ensemble", + "example_sentence_native": "L'ensemble musicale si è esibito magnificamente.", + "example_sentence_english": "The musical ensemble performed magnificently.", + "pos": "noun", + "word_frequency": 14776 + }, + { + "word": "esonerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exempt", + "romanization": "esonerare", + "example_sentence_native": "Lo hanno esonerato dal servizio militare.", + "example_sentence_english": "They exempted him from military service.", + "pos": "verb", + "word_frequency": 14777 + }, + { + "word": "esordire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to debut", + "romanization": "esordire", + "example_sentence_native": "L'attrice ha esordito in teatro a soli vent'anni.", + "example_sentence_english": "The actress debuted in theater at only twenty years old.", + "pos": "verb", + "word_frequency": 14778 + }, + { + "word": "ferramenta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hardware store", + "romanization": "ferramenta", + "example_sentence_native": "Devo andare in ferramenta a comprare dei chiodi.", + "example_sentence_english": "I need to go to the hardware store to buy some nails.", + "pos": "noun", + "word_frequency": 14783 + }, + { + "word": "fonderia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foundry", + "romanization": "fonderia", + "example_sentence_native": "La vecchia fonderia è stata trasformata in un museo.", + "example_sentence_english": "The old foundry has been transformed into a museum.", + "pos": "noun", + "word_frequency": 14785 + }, + { + "word": "frangia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fringe", + "romanization": "frangia", + "example_sentence_native": "Si è tagliata la frangia.", + "example_sentence_english": "She cut her bangs.", + "pos": "noun", + "word_frequency": 14788 + }, + { + "word": "frantume", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragment", + "romanization": "frantume", + "example_sentence_native": "Il vaso è caduto in mille frantumi.", + "example_sentence_english": "The vase fell into a thousand pieces.", + "pos": "noun", + "word_frequency": 14789 + }, + { + "word": "gelido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icy", + "romanization": "gelido", + "example_sentence_native": "Il vento era gelido.", + "example_sentence_english": "The wind was icy.", + "pos": "adjective", + "word_frequency": 14790 + }, + { + "word": "giurisdizionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jurisdictional", + "romanization": "giurisdizionale", + "example_sentence_native": "La questione è di natura giurisdizionale.", + "example_sentence_english": "The matter is jurisdictional in nature.", + "pos": "adjective", + "word_frequency": 14792 + }, + { + "word": "immancabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfailing", + "romanization": "immancabile", + "example_sentence_native": "La sua presenza è immancabile a ogni evento.", + "example_sentence_english": "His presence is unfailing at every event.", + "pos": "adjective", + "word_frequency": 14795 + }, + { + "word": "improvvisare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to improvise", + "romanization": "improvvisare", + "example_sentence_native": "Ha dovuto improvvisare un discorso.", + "example_sentence_english": "He had to improvise a speech.", + "pos": "verb", + "word_frequency": 14796 + }, + { + "word": "incarnare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to embody", + "romanization": "incarnare", + "example_sentence_native": "L'attore è riuscito a incarnare perfettamente il personaggio.", + "example_sentence_english": "The actor managed to perfectly embody the character.", + "pos": "verb", + "word_frequency": 14797 + }, + { + "word": "indebolire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weaken", + "romanization": "indebolire", + "example_sentence_native": "La malattia lo ha indebolito molto.", + "example_sentence_english": "The illness has weakened him a lot.", + "pos": "verb", + "word_frequency": 14798 + }, + { + "word": "individualità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individuality", + "romanization": "individualità", + "example_sentence_native": "Ogni persona ha la sua individualità.", + "example_sentence_english": "Every person has their own individuality.", + "pos": "noun", + "word_frequency": 14799 + }, + { + "word": "inequivocabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequivocal", + "romanization": "inequivocabile", + "example_sentence_native": "La sua risposta è stata inequívocabile.", + "example_sentence_english": "His answer was unequivocal.", + "pos": "adjective", + "word_frequency": 14800 + }, + { + "word": "infero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "underworld", + "romanization": "infero", + "example_sentence_native": "Secondo la mitologia greca, Ade regnava sull'infero.", + "example_sentence_english": "According to Greek mythology, Hades ruled over the underworld.", + "pos": "noun", + "word_frequency": 14801 + }, + { + "word": "ingerenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interference", + "romanization": "ingerenza", + "example_sentence_native": "Il governo ha denunciato l'ingerenza straniera nei suoi affari interni.", + "example_sentence_english": "The government denounced foreign interference in its internal affairs.", + "pos": "noun", + "word_frequency": 14802 + }, + { + "word": "ingoiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swallow", + "romanization": "ingoiare", + "example_sentence_native": "È difficile ingoiare una pillola così grande.", + "example_sentence_english": "It's difficult to swallow such a large pill.", + "pos": "verb", + "word_frequency": 14803 + }, + { + "word": "ingrandire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enlarge", + "romanization": "ingrandire", + "example_sentence_native": "Puoi ingrandire l'immagine per vedere meglio i dettagli.", + "example_sentence_english": "You can enlarge the image to see the details better.", + "pos": "verb", + "word_frequency": 14804 + }, + { + "word": "insoddisfazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissatisfaction", + "romanization": "insoddisfazione", + "example_sentence_native": "C'era una generale insoddisfazione per i risultati delle elezioni.", + "example_sentence_english": "There was general dissatisfaction with the election results.", + "pos": "noun", + "word_frequency": 14805 + }, + { + "word": "integratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplement", + "romanization": "integratore", + "example_sentence_native": "Molti atleti assumono integratori alimentari.", + "example_sentence_english": "Many athletes take dietary supplements.", + "pos": "noun", + "word_frequency": 14806 + }, + { + "word": "intrigante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intriguing", + "romanization": "intrigante", + "example_sentence_native": "La trama del libro era molto intrigante.", + "example_sentence_english": "The book's plot was very intriguing.", + "pos": "adjective", + "word_frequency": 14807 + }, + { + "word": "invero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indeed", + "romanization": "invero", + "example_sentence_native": "Invero, non mi aspettavo un tale successo.", + "example_sentence_english": "Indeed, I did not expect such success.", + "pos": "adverb", + "word_frequency": 14808 + }, + { + "word": "iracheno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Iraqi", + "romanization": "iracheno", + "example_sentence_native": "Ha incontrato un giornalista iracheno.", + "example_sentence_english": "He met an Iraqi journalist.", + "pos": "adjective", + "word_frequency": 14809 + }, + { + "word": "irrisolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unresolved", + "romanization": "irrisolto", + "example_sentence_native": "Il caso è rimasto irrisolto per anni.", + "example_sentence_english": "The case remained unsolved for years.", + "pos": "adjective", + "word_frequency": 14810 + }, + { + "word": "jogging", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jogging", + "romanization": "jogging", + "example_sentence_native": "Ogni mattina faccio jogging al parco.", + "example_sentence_english": "Every morning I go jogging in the park.", + "pos": "noun", + "word_frequency": 14812 + }, + { + "word": "lardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lard", + "romanization": "lardo", + "example_sentence_native": "Il lardo è un ingrediente comune in alcune ricette tradizionali.", + "example_sentence_english": "Lard is a common ingredient in some traditional recipes.", + "pos": "noun", + "word_frequency": 14813 + }, + { + "word": "large", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "large", + "romanization": "large", + "example_sentence_native": "Vorrei una maglietta taglia large.", + "example_sentence_english": "I would like a large size t-shirt.", + "pos": "adjective", + "word_frequency": 14814 + }, + { + "word": "legal", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legal", + "romanization": "legal", + "example_sentence_native": "È importante consultare un esperto legale.", + "example_sentence_english": "It's important to consult a legal expert.", + "pos": "adjective", + "word_frequency": 14815 + }, + { + "word": "lion", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lion", + "romanization": "lion", + "example_sentence_native": "Il leone è il re della savana.", + "example_sentence_english": "The lion is the king of the savanna.", + "pos": "noun", + "word_frequency": 14818 + }, + { + "word": "longitudinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "longitudinal", + "romanization": "longitudinale", + "example_sentence_native": "Hanno condotto uno studio longitudinale sulla crescita dei bambini.", + "example_sentence_english": "They conducted a longitudinal study on child growth.", + "pos": "adjective", + "word_frequency": 14820 + }, + { + "word": "maestria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mastery", + "romanization": "maestria", + "example_sentence_native": "Ha dimostrato grande maestria nell'esecuzione del brano.", + "example_sentence_english": "He demonstrated great mastery in the performance of the piece.", + "pos": "noun", + "word_frequency": 14821 + }, + { + "word": "malavita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underworld (crime)", + "romanization": "malavita", + "example_sentence_native": "La polizia sta indagando sui legami con la malavita.", + "example_sentence_english": "The police are investigating ties to the underworld.", + "pos": "noun", + "word_frequency": 14823 + }, + { + "word": "malvagità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wickedness", + "romanization": "malvagità", + "example_sentence_native": "La sua malvagità non conosceva limiti.", + "example_sentence_english": "His wickedness knew no bounds.", + "pos": "noun", + "word_frequency": 14824 + }, + { + "word": "meschino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petty", + "romanization": "meschino", + "example_sentence_native": "Il suo comportamento è stato davvero meschino.", + "example_sentence_english": "His behavior was truly petty.", + "pos": "adjective", + "word_frequency": 14829 + }, + { + "word": "metropolitan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metropolitan", + "romanization": "metropolitan", + "example_sentence_native": "La rete di trasporti metropolitan è molto efficiente.", + "example_sentence_english": "The metropolitan transport network is very efficient.", + "pos": "adjective", + "word_frequency": 14830 + }, + { + "word": "miracolosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "miraculously", + "romanization": "miracolosamente", + "example_sentence_native": "È sopravvissuto all'incidente miracolosamente.", + "example_sentence_english": "He miraculously survived the accident.", + "pos": "adverb", + "word_frequency": 14831 + }, + { + "word": "moderare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to moderate", + "romanization": "moderare", + "example_sentence_native": "Dovresti moderare il tuo linguaggio.", + "example_sentence_english": "You should moderate your language.", + "pos": "verb", + "word_frequency": 14832 + }, + { + "word": "moment", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moment", + "romanization": "moment", + "example_sentence_native": "Aspetta un moment, torno subito.", + "example_sentence_english": "Wait a moment, I'll be right back.", + "pos": "noun", + "word_frequency": 14833 + }, + { + "word": "morbillo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "measles", + "romanization": "morbillo", + "example_sentence_native": "Il morbillo è una malattia infantile contagiosa.", + "example_sentence_english": "Measles is a contagious childhood disease.", + "pos": "noun", + "word_frequency": 14835 + }, + { + "word": "mosto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "must (grape juice)", + "romanization": "mosto", + "example_sentence_native": "Il mosto viene fermentato per produrre il vino.", + "example_sentence_english": "The must is fermented to produce wine.", + "pos": "noun", + "word_frequency": 14836 + }, + { + "word": "mummia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mummy", + "romanization": "mummia", + "example_sentence_native": "Gli antichi Egizi imbalsamavano i corpi per farli diventare mummie.", + "example_sentence_english": "The ancient Egyptians embalmed bodies to make them mummies.", + "pos": "noun", + "word_frequency": 14837 + }, + { + "word": "nell'alto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "up high", + "romanization": "nell'alto", + "example_sentence_native": "L'aquila volava nell'alto del cielo.", + "example_sentence_english": "The eagle was flying up high in the sky.", + "pos": "adverb", + "word_frequency": 14840 + }, + { + "word": "nell'analisi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in the analysis", + "romanization": "nell'analisi", + "example_sentence_native": "Nell'analisi dei dati, abbiamo trovato un errore.", + "example_sentence_english": "In the analysis of the data, we found an error.", + "pos": "adverb", + "word_frequency": 14841 + }, + { + "word": "nomenclatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nomenclature", + "romanization": "nomenclatura", + "example_sentence_native": "La nomenclatura scientifica è molto precisa.", + "example_sentence_english": "Scientific nomenclature is very precise.", + "pos": "noun", + "word_frequency": 14843 + }, + { + "word": "orda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "horde", + "romanization": "orda", + "example_sentence_native": "Un'orda di turisti ha invaso la piazza.", + "example_sentence_english": "A horde of tourists invaded the square.", + "pos": "noun", + "word_frequency": 14846 + }, + { + "word": "ormonale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hormonal", + "romanization": "ormonale", + "example_sentence_native": "Ha avuto uno squilibrio ormonale.", + "example_sentence_english": "She had a hormonal imbalance.", + "pos": "adjective", + "word_frequency": 14847 + }, + { + "word": "paletta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dustpan;spatula", + "romanization": "paletta", + "example_sentence_native": "Prendi la paletta per raccogliere la polvere.", + "example_sentence_english": "Take the dustpan to collect the dust.", + "pos": "noun", + "word_frequency": 14850 + }, + { + "word": "papiro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papyrus", + "romanization": "papiro", + "example_sentence_native": "Gli antichi Egizi scrivevano su papiro.", + "example_sentence_english": "The ancient Egyptians wrote on papyrus.", + "pos": "noun", + "word_frequency": 14851 + }, + { + "word": "pelato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bald;peeled", + "romanization": "pelato", + "example_sentence_native": "Mio nonno è completamente pelato.", + "example_sentence_english": "My grandfather is completely bald.", + "pos": "adjective", + "word_frequency": 14853 + }, + { + "word": "peloso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairy;furry", + "romanization": "peloso", + "example_sentence_native": "Il mio gatto è molto peloso.", + "example_sentence_english": "My cat is very furry.", + "pos": "adjective", + "word_frequency": 14854 + }, + { + "word": "pornostar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "porn star", + "romanization": "pornostar", + "example_sentence_native": "È diventata una famosa pornostar.", + "example_sentence_english": "She became a famous porn star.", + "pos": "noun", + "word_frequency": 14856 + }, + { + "word": "portfolio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portfolio", + "romanization": "portfolio", + "example_sentence_native": "Ha presentato il suo portfolio al colloquio.", + "example_sentence_english": "He presented his portfolio at the interview.", + "pos": "noun", + "word_frequency": 14857 + }, + { + "word": "possente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "powerful;mighty", + "romanization": "possente", + "example_sentence_native": "Il leone è un animale possente.", + "example_sentence_english": "The lion is a mighty animal.", + "pos": "adjective", + "word_frequency": 14858 + }, + { + "word": "praticante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trainee;practitioner", + "romanization": "praticante", + "example_sentence_native": "È un giovane avvocato praticante.", + "example_sentence_english": "He is a young trainee lawyer.", + "pos": "noun", + "word_frequency": 14860 + }, + { + "word": "pronostico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forecast;prognosis", + "romanization": "pronostico", + "example_sentence_native": "Il pronostico del tempo è pioggia.", + "example_sentence_english": "The weather forecast is rain.", + "pos": "noun", + "word_frequency": 14861 + }, + { + "word": "raffigurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depicted;represented", + "romanization": "raffigurato", + "example_sentence_native": "Il santo è raffigurato con un libro in mano.", + "example_sentence_english": "The saint is depicted with a book in his hand.", + "pos": "adjective", + "word_frequency": 14863 + }, + { + "word": "rand", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rand (currency)", + "romanization": "rand", + "example_sentence_native": "La valuta del Sudafrica è il rand.", + "example_sentence_english": "The currency of South Africa is the rand.", + "pos": "noun", + "word_frequency": 14865 + }, + { + "word": "rianimazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resuscitation;intensive care", + "romanization": "rianimazione", + "example_sentence_native": "Il paziente è stato portato in rianimazione.", + "example_sentence_english": "The patient was taken to intensive care.", + "pos": "noun", + "word_frequency": 14866 + }, + { + "word": "richiamato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recalled;called back", + "romanization": "richiamato", + "example_sentence_native": "Il prodotto difettoso è stato richiamato dal mercato.", + "example_sentence_english": "The defective product was recalled from the market.", + "pos": "adjective", + "word_frequency": 14867 + }, + { + "word": "ripostiglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storage room;closet", + "romanization": "ripostiglio", + "example_sentence_native": "Ho messo le vecchie scatole nel ripostiglio.", + "example_sentence_english": "I put the old boxes in the storage room.", + "pos": "noun", + "word_frequency": 14868 + }, + { + "word": "saldatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welding;solder joint", + "romanization": "saldatura", + "example_sentence_native": "La saldatura del metallo richiede precisione.", + "example_sentence_english": "Metal welding requires precision.", + "pos": "noun", + "word_frequency": 14869 + }, + { + "word": "salino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saline;salty", + "romanization": "salino", + "example_sentence_native": "L'acqua di mare è molto salina.", + "example_sentence_english": "Seawater is very saline.", + "pos": "adjective", + "word_frequency": 14870 + }, + { + "word": "sblocco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unblocking;release", + "romanization": "sblocco", + "example_sentence_native": "Hanno annunciato lo sblocco dei fondi.", + "example_sentence_english": "They announced the release of the funds.", + "pos": "noun", + "word_frequency": 14873 + }, + { + "word": "scartato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discarded;rejected;unwrapped", + "romanization": "scartato", + "example_sentence_native": "Il pacco è stato scartato con cura.", + "example_sentence_english": "The package was unwrapped carefully.", + "pos": "adjective", + "word_frequency": 14874 + }, + { + "word": "scompiglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disarray;turmoil", + "romanization": "scompiglio", + "example_sentence_native": "La notizia ha creato grande scompiglio.", + "example_sentence_english": "The news created great turmoil.", + "pos": "noun", + "word_frequency": 14875 + }, + { + "word": "scontento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unhappy;discontent", + "romanization": "scontento", + "example_sentence_native": "Era scontento del risultato.", + "example_sentence_english": "He was unhappy with the result.", + "pos": "adjective", + "word_frequency": 14876 + }, + { + "word": "sillaba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syllable", + "romanization": "sillaba", + "example_sentence_native": "La parola \"casa\" ha due sillabe.", + "example_sentence_english": "The word \"casa\" has two syllables.", + "pos": "noun", + "word_frequency": 14877 + }, + { + "word": "simbolicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symbolically", + "romanization": "simbolicamente", + "example_sentence_native": "Il gesto è stato interpretato simbolicamente.", + "example_sentence_english": "The gesture was interpreted symbolically.", + "pos": "adverb", + "word_frequency": 14878 + }, + { + "word": "sloveno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Slovenian", + "romanization": "sloveno", + "example_sentence_native": "Parla fluentemente lo sloveno.", + "example_sentence_english": "He speaks Slovenian fluently.", + "pos": "adjective", + "word_frequency": 14879 + }, + { + "word": "sottotenente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "second lieutenant", + "romanization": "sottotenente", + "example_sentence_native": "Il sottotenente ha dato gli ordini alla sua squadra.", + "example_sentence_english": "The second lieutenant gave orders to his squad.", + "pos": "noun", + "word_frequency": 14880 + }, + { + "word": "sottratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subtracted;removed", + "romanization": "sottratto", + "example_sentence_native": "Il valore sottratto non era significativo.", + "example_sentence_english": "The subtracted value was not significant.", + "pos": "adjective", + "word_frequency": 14881 + }, + { + "word": "squadrone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "squadron;large squad", + "romanization": "squadrone", + "example_sentence_native": "Un intero squadrone di cavalleria avanzò sul campo.", + "example_sentence_english": "An entire squadron of cavalry advanced on the field.", + "pos": "noun", + "word_frequency": 14882 + }, + { + "word": "strepitoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensational;amazing", + "romanization": "strepitoso", + "example_sentence_native": "Lo spettacolo è stato strepitoso.", + "example_sentence_english": "The show was sensational.", + "pos": "adjective", + "word_frequency": 14884 + }, + { + "word": "supposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supposed;assumed", + "romanization": "supposto", + "example_sentence_native": "Il supposto colpevole è stato rilasciato.", + "example_sentence_english": "The supposed culprit was released.", + "pos": "adjective", + "word_frequency": 14885 + }, + { + "word": "taccuino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notebook;notepad", + "romanization": "taccuino", + "example_sentence_native": "Ho annotato l'idea sul mio taccuino.", + "example_sentence_english": "I jotted down the idea in my notebook.", + "pos": "noun", + "word_frequency": 14887 + }, + { + "word": "tatuato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattooed", + "romanization": "tatuato", + "example_sentence_native": "Ha un braccio completamente tatuato.", + "example_sentence_english": "He has a completely tattooed arm.", + "pos": "adjective", + "word_frequency": 14889 + }, + { + "word": "tibetano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Tibetan", + "romanization": "tibetano", + "example_sentence_native": "Ha studiato la cultura tibetana.", + "example_sentence_english": "He studied Tibetan culture.", + "pos": "adjective", + "word_frequency": 14891 + }, + { + "word": "tiroide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thyroid", + "romanization": "tiroide", + "example_sentence_native": "La tiroide è una ghiandola importante.", + "example_sentence_english": "The thyroid is an important gland.", + "pos": "noun", + "word_frequency": 14892 + }, + { + "word": "trick", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trick", + "romanization": "trick", + "example_sentence_native": "Ha imparato un nuovo trick con lo skateboard.", + "example_sentence_english": "He learned a new trick with the skateboard.", + "pos": "noun", + "word_frequency": 14895 + }, + { + "word": "triple", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triple", + "romanization": "triple", + "example_sentence_native": "Ha fatto un \"triple\" salto mortale.", + "example_sentence_english": "He did a \"triple\" somersault.", + "pos": "noun", + "word_frequency": 14896 + }, + { + "word": "upgrade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upgrade", + "romanization": "upgrade", + "example_sentence_native": "Ho bisogno di un upgrade del mio software.", + "example_sentence_english": "I need a software upgrade.", + "pos": "noun", + "word_frequency": 14899 + }, + { + "word": "valutato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evaluated;assessed", + "romanization": "valutato", + "example_sentence_native": "Il progetto è stato valutato positivamente.", + "example_sentence_english": "The project was positively evaluated.", + "pos": "adjective", + "word_frequency": 14900 + }, + { + "word": "viziato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spoiled;pampered", + "romanization": "viziato", + "example_sentence_native": "Il bambino è molto viziato.", + "example_sentence_english": "The child is very spoiled.", + "pos": "adjective", + "word_frequency": 14903 + }, + { + "word": "alimentato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "powered;fed", + "romanization": "alimentato", + "example_sentence_native": "Il dispositivo è alimentato a batteria.", + "example_sentence_english": "The device is battery-powered.", + "pos": "adjective", + "word_frequency": 14909 + }, + { + "word": "allineamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alignment", + "romanization": "allineamento", + "example_sentence_native": "È necessario un allineamento delle politiche.", + "example_sentence_english": "An alignment of policies is necessary.", + "pos": "noun", + "word_frequency": 14914 + }, + { + "word": "amabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lovable;kind;amiable", + "romanization": "amabile", + "example_sentence_native": "È una persona molto amabile.", + "example_sentence_english": "She is a very kind person.", + "pos": "adjective", + "word_frequency": 14915 + }, + { + "word": "anemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anemia", + "romanization": "anemia", + "example_sentence_native": "La carenza di ferro può causare anemia.", + "example_sentence_english": "Iron deficiency can cause anemia.", + "pos": "noun", + "word_frequency": 14917 + }, + { + "word": "anfiteatro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphitheater", + "romanization": "anfiteatro", + "example_sentence_native": "L'anfiteatro romano è un'attrazione turistica.", + "example_sentence_english": "The Roman amphitheater is a tourist attraction.", + "pos": "noun", + "word_frequency": 14918 + }, + { + "word": "antipatia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "antipathy;dislike", + "romanization": "antipatia", + "example_sentence_native": "C'è una forte antipatia tra i due.", + "example_sentence_english": "There is a strong antipathy between the two.", + "pos": "noun", + "word_frequency": 14919 + }, + { + "word": "assassinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murdered;assassinated", + "romanization": "assassinato", + "example_sentence_native": "L'uomo è stato trovato assassinato nel vicolo.", + "example_sentence_english": "The man was found murdered in the alley.", + "pos": "adjective", + "word_frequency": 14920 + }, + { + "word": "assimilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assimilate;to absorb", + "romanization": "assimilare", + "example_sentence_native": "È difficile assimilare tutte queste nuove informazioni in una volta sola.", + "example_sentence_english": "It's difficult to assimilate all this new information at once.", + "pos": "verb", + "word_frequency": 14921 + }, + { + "word": "audacia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "audacity;boldness", + "romanization": "audacia", + "example_sentence_native": "La sua audacia nel proporre idee nuove è ammirevole.", + "example_sentence_english": "His audacity in proposing new ideas is admirable.", + "pos": "noun", + "word_frequency": 14922 + }, + { + "word": "aureo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "golden (figurative);excellent", + "romanization": "aureo", + "example_sentence_native": "Abbiamo raggiunto un accordo aureo per entrambe le parti.", + "example_sentence_english": "We reached a golden agreement for both parties.", + "pos": "adjective", + "word_frequency": 14923 + }, + { + "word": "bicarbonato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bicarbonate (of soda)", + "romanization": "bicarbonato", + "example_sentence_native": "Aggiungi un cucchiaino di bicarbonato all'impasto.", + "example_sentence_english": "Add a teaspoon of bicarbonate to the dough.", + "pos": "noun", + "word_frequency": 14930 + }, + { + "word": "boero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Boer", + "romanization": "boero", + "example_sentence_native": "I boeri erano coloni olandesi in Sudafrica.", + "example_sentence_english": "The Boers were Dutch colonists in South Africa.", + "pos": "noun", + "word_frequency": 14932 + }, + { + "word": "brutalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brutality", + "romanization": "brutalità", + "example_sentence_native": "La brutalità dell'attacco ha scioccato tutti.", + "example_sentence_english": "The brutality of the attack shocked everyone.", + "pos": "noun", + "word_frequency": 14933 + }, + { + "word": "burattino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puppet", + "romanization": "burattino", + "example_sentence_native": "Il burattino di legno aveva un naso molto lungo.", + "example_sentence_english": "The wooden puppet had a very long nose.", + "pos": "noun", + "word_frequency": 14936 + }, + { + "word": "cactus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cactus", + "romanization": "cactus", + "example_sentence_native": "Il cactus ha spine affilate.", + "example_sentence_english": "The cactus has sharp spines.", + "pos": "noun", + "word_frequency": 14938 + }, + { + "word": "capannone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shed;warehouse;large hut", + "romanization": "capannone", + "example_sentence_native": "Hanno costruito un nuovo capannone industriale.", + "example_sentence_english": "They built a new industrial warehouse.", + "pos": "noun", + "word_frequency": 14940 + }, + { + "word": "cappellino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small hat;cap", + "romanization": "cappellino", + "example_sentence_native": "Indossava un cappellino da baseball.", + "example_sentence_english": "He was wearing a baseball cap.", + "pos": "noun", + "word_frequency": 14941 + }, + { + "word": "carcinoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carcinoma", + "romanization": "carcinoma", + "example_sentence_native": "La diagnosi ha rivelato un carcinoma.", + "example_sentence_english": "The diagnosis revealed a carcinoma.", + "pos": "noun", + "word_frequency": 14942 + }, + { + "word": "cazzeggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess around;to goof off (vulgar;informal)", + "romanization": "cazzeggiare", + "example_sentence_native": "Smettila di cazzeggiare e mettiti a studiare!", + "example_sentence_english": "Stop messing around and start studying!", + "pos": "verb", + "word_frequency": 14943 + }, + { + "word": "ciambella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "donut;ring-shaped cake", + "romanization": "ciambella", + "example_sentence_native": "Ho mangiato una ciambella a colazione.", + "example_sentence_english": "I ate a donut for breakfast.", + "pos": "noun", + "word_frequency": 14944 + }, + { + "word": "cobra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cobra", + "romanization": "cobra", + "example_sentence_native": "Il cobra è un serpente velenoso.", + "example_sentence_english": "The cobra is a venomous snake.", + "pos": "noun", + "word_frequency": 14946 + }, + { + "word": "commendatore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Commander (title of honor in Italy)", + "romanization": "commendatore", + "example_sentence_native": "Il nonno è stato nominato Commendatore della Repubblica.", + "example_sentence_english": "Grandfather was appointed Commander of the Republic.", + "pos": "noun", + "word_frequency": 14948 + }, + { + "word": "croccante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crunchy;crispy", + "romanization": "croccante", + "example_sentence_native": "Le patatine fritte erano molto croccanti.", + "example_sentence_english": "The french fries were very crispy.", + "pos": "adjective", + "word_frequency": 14951 + }, + { + "word": "cruscotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dashboard", + "romanization": "cruscotto", + "example_sentence_native": "Ho appoggiato il telefono sul cruscotto.", + "example_sentence_english": "I put the phone on the dashboard.", + "pos": "noun", + "word_frequency": 14952 + }, + { + "word": "deejay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "DJ;disc jockey", + "romanization": "deejay", + "example_sentence_native": "Il deejay ha messo musica fantastica tutta la notte.", + "example_sentence_english": "The DJ played fantastic music all night.", + "pos": "noun", + "word_frequency": 14956 + }, + { + "word": "desideroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desirous;eager", + "romanization": "desideroso", + "example_sentence_native": "Era desideroso di imparare nuove cose.", + "example_sentence_english": "He was eager to learn new things.", + "pos": "adjective", + "word_frequency": 14960 + }, + { + "word": "diabolico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diabolical;devilish", + "romanization": "diabolico", + "example_sentence_native": "Ha un piano diabolico.", + "example_sentence_english": "He has a diabolical plan.", + "pos": "adjective", + "word_frequency": 14961 + }, + { + "word": "differito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deferred;delayed", + "romanization": "differito", + "example_sentence_native": "La trasmissione è stata differita a domani.", + "example_sentence_english": "The broadcast was deferred until tomorrow.", + "pos": "adjective", + "word_frequency": 14963 + }, + { + "word": "diligenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligence;stagecoach", + "romanization": "diligenza", + "example_sentence_native": "Ha svolto il lavoro con grande diligenza.", + "example_sentence_english": "He carried out the work with great diligence.", + "pos": "noun", + "word_frequency": 14964 + }, + { + "word": "distaccato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detached;aloof", + "romanization": "distaccato", + "example_sentence_native": "Il suo atteggiamento era molto distaccato.", + "example_sentence_english": "His attitude was very detached.", + "pos": "adjective", + "word_frequency": 14965 + }, + { + "word": "dividendo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dividend", + "romanization": "dividendo", + "example_sentence_native": "La società ha annunciato un dividendo elevato.", + "example_sentence_english": "The company announced a high dividend.", + "pos": "noun", + "word_frequency": 14966 + }, + { + "word": "drenaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drainage", + "romanization": "drenaggio", + "example_sentence_native": "Il sistema di drenaggio è intasato.", + "example_sentence_english": "The drainage system is clogged.", + "pos": "noun", + "word_frequency": 14968 + }, + { + "word": "eludere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to elude;to evade", + "romanization": "eludere", + "example_sentence_native": "Ha cercato di eludere la domanda.", + "example_sentence_english": "He tried to elude the question.", + "pos": "verb", + "word_frequency": 14970 + }, + { + "word": "ernia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hernia", + "romanization": "ernia", + "example_sentence_native": "Gli è stata diagnosticata un'ernia.", + "example_sentence_english": "He was diagnosed with a hernia.", + "pos": "noun", + "word_frequency": 14972 + }, + { + "word": "erodere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to erode", + "romanization": "erodere", + "example_sentence_native": "L'acqua può erodere la roccia nel tempo.", + "example_sentence_english": "Water can erode rock over time.", + "pos": "verb", + "word_frequency": 14973 + }, + { + "word": "esaustivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhaustive;comprehensive", + "romanization": "esaustivo", + "example_sentence_native": "Ha fornito un'analisi esaustiva.", + "example_sentence_english": "He provided an exhaustive analysis.", + "pos": "adjective", + "word_frequency": 14974 + }, + { + "word": "escremento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excrement;faeces", + "romanization": "escremento", + "example_sentence_native": "Gli escrementi degli animali possono essere usati come fertilizzante.", + "example_sentence_english": "Animal excrement can be used as fertilizer.", + "pos": "noun", + "word_frequency": 14975 + }, + { + "word": "esortare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exhort;to urge", + "romanization": "esortare", + "example_sentence_native": "Li ha esortati a continuare a lavorare sodo.", + "example_sentence_english": "He exhorted them to keep working hard.", + "pos": "verb", + "word_frequency": 14976 + }, + { + "word": "fessura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack;crevice;slit", + "romanization": "fessura", + "example_sentence_native": "C'è una piccola fessura nel muro.", + "example_sentence_english": "There's a small crack in the wall.", + "pos": "noun", + "word_frequency": 14980 + }, + { + "word": "flagello", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scourge;plague;flail", + "romanization": "flagello", + "example_sentence_native": "La siccità è un flagello per l'agricoltura.", + "example_sentence_english": "Drought is a scourge for agriculture.", + "pos": "noun", + "word_frequency": 14981 + }, + { + "word": "freddezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coldness;aloofness", + "romanization": "freddezza", + "example_sentence_native": "Ha risposto con una certa freddezza.", + "example_sentence_english": "He replied with a certain coldness.", + "pos": "noun", + "word_frequency": 14984 + }, + { + "word": "geometrico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geometric", + "romanization": "geometrico", + "example_sentence_native": "Ha disegnato forme geometriche.", + "example_sentence_english": "He drew geometric shapes.", + "pos": "adjective", + "word_frequency": 14985 + }, + { + "word": "globalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globally;overall", + "romanization": "globalmente", + "example_sentence_native": "Globalmente, la situazione è migliorata.", + "example_sentence_english": "Overall, the situation has improved.", + "pos": "adverb", + "word_frequency": 14989 + }, + { + "word": "gong", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gong", + "romanization": "gong", + "example_sentence_native": "Il suono del gong ha annunciato la fine del round.", + "example_sentence_english": "The sound of the gong announced the end of the round.", + "pos": "noun", + "word_frequency": 14991 + }, + { + "word": "grattare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to scratch;to grate", + "romanization": "grattare", + "example_sentence_native": "Il gatto si gratta dietro l'orecchio.", + "example_sentence_english": "The cat scratches behind its ear.", + "pos": "verb", + "word_frequency": 14992 + }, + { + "word": "implacabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "implacable;relentless", + "romanization": "implacabile", + "example_sentence_native": "Era un avversario implacabile.", + "example_sentence_english": "He was an implacable opponent.", + "pos": "adjective", + "word_frequency": 14997 + }, + { + "word": "incoerente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incoherent;inconsistent", + "romanization": "incoerente", + "example_sentence_native": "Le sue argomentazioni erano incoerenti.", + "example_sentence_english": "His arguments were incoherent.", + "pos": "adjective", + "word_frequency": 14998 + }, + { + "word": "inconsciamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconsciously", + "romanization": "inconsciamente", + "example_sentence_native": "Ha agito inconsciamente.", + "example_sentence_english": "He acted unconsciously.", + "pos": "adverb", + "word_frequency": 14999 + }, + { + "word": "indetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "announced;called", + "romanization": "indetto", + "example_sentence_native": "La riunione è stata indetta per lunedì prossimo.", + "example_sentence_english": "The meeting has been called for next Monday.", + "pos": "adjective", + "word_frequency": 15000 + }, + { + "word": "indistintamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indiscriminately;indistinctly", + "romanization": "indistintamente", + "example_sentence_native": "Tratta tutti indistintamente.", + "example_sentence_english": "He treats everyone indiscriminately.", + "pos": "adverb", + "word_frequency": 15001 + }, + { + "word": "indoor", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indoor", + "romanization": "indoor", + "example_sentence_native": "Preferisco fare sport indoor quando piove.", + "example_sentence_english": "I prefer to do indoor sports when it rains.", + "pos": "adverb", + "word_frequency": 15002 + }, + { + "word": "ingiustificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustified", + "romanization": "ingiustificato", + "example_sentence_native": "La sua assenza era ingiustificata.", + "example_sentence_english": "His absence was unjustified.", + "pos": "adjective", + "word_frequency": 15003 + }, + { + "word": "insuccesso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "failure;lack of success", + "romanization": "insuccesso", + "example_sentence_native": "Nonostante l'insuccesso iniziale, non si è arreso.", + "example_sentence_english": "Despite the initial failure, he didn't give up.", + "pos": "noun", + "word_frequency": 15004 + }, + { + "word": "irritare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to irritate;to annoy", + "romanization": "irritare", + "example_sentence_native": "Il rumore costante inizia a irritarmi.", + "example_sentence_english": "The constant noise is starting to irritate me.", + "pos": "verb", + "word_frequency": 15005 + }, + { + "word": "ketchup", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ketchup", + "romanization": "ketchup", + "example_sentence_native": "Vorrei un po' di ketchup con le patatine.", + "example_sentence_english": "I would like some ketchup with the fries.", + "pos": "noun", + "word_frequency": 15010 + }, + { + "word": "legittimare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to legitimize;to justify", + "romanization": "legittimare", + "example_sentence_native": "La legge cerca di legittimare queste pratiche.", + "example_sentence_english": "The law seeks to legitimize these practices.", + "pos": "verb", + "word_frequency": 15012 + }, + { + "word": "lime", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lime", + "romanization": "lime", + "example_sentence_native": "Mi piace aggiungere una fetta di lime all'acqua.", + "example_sentence_english": "I like to add a slice of lime to the water.", + "pos": "noun", + "word_frequency": 15013 + }, + { + "word": "linciaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lynching", + "romanization": "linciaggio", + "example_sentence_native": "La folla minacciava il linciaggio.", + "example_sentence_english": "The crowd was threatening lynching.", + "pos": "noun", + "word_frequency": 15014 + }, + { + "word": "loto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lotus", + "romanization": "loto", + "example_sentence_native": "Il fiore di loto è simbolo di purezza.", + "example_sentence_english": "The lotus flower is a symbol of purity.", + "pos": "noun", + "word_frequency": 15016 + }, + { + "word": "margarita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "margarita (cocktail)", + "romanization": "margarita", + "example_sentence_native": "Vorrei una margarita con poco sale.", + "example_sentence_english": "I would like a margarita with little salt.", + "pos": "noun", + "word_frequency": 15017 + }, + { + "word": "materialismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "materialism", + "romanization": "materialismo", + "example_sentence_native": "Il materialismo è una filosofia che pone l'accento sulla materia.", + "example_sentence_english": "Materialism is a philosophy that emphasizes matter.", + "pos": "noun", + "word_frequency": 15018 + }, + { + "word": "meritocrazia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meritocracy", + "romanization": "meritocrazia", + "example_sentence_native": "Molti credono nella meritocrazia come sistema giusto.", + "example_sentence_english": "Many believe in meritocracy as a fair system.", + "pos": "noun", + "word_frequency": 15020 + }, + { + "word": "naturalistico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "naturalistic", + "romanization": "naturalistico", + "example_sentence_native": "Il museo espone opere di arte naturalistica.", + "example_sentence_english": "The museum exhibits naturalistic art works.", + "pos": "adjective", + "word_frequency": 15024 + }, + { + "word": "negatività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negativity", + "romanization": "negatività", + "example_sentence_native": "Cerca di evitare la negatività nella tua vita.", + "example_sentence_english": "Try to avoid negativity in your life.", + "pos": "noun", + "word_frequency": 15025 + }, + { + "word": "nominativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nominative (case);nominal", + "romanization": "nominativo", + "example_sentence_native": "In tedesco, il nominativo è il caso del soggetto.", + "example_sentence_english": "In German, the nominative is the subject case.", + "pos": "adjective", + "word_frequency": 15027 + }, + { + "word": "notazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notation", + "romanization": "notazione", + "example_sentence_native": "La notazione musicale è un linguaggio universale.", + "example_sentence_english": "Musical notation is a universal language.", + "pos": "noun", + "word_frequency": 15028 + }, + { + "word": "orgia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgy", + "romanization": "orgia", + "example_sentence_native": "Il film descriveva un'antica orgia romana.", + "example_sentence_english": "The film depicted an ancient Roman orgy.", + "pos": "noun", + "word_frequency": 15030 + }, + { + "word": "ornamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ornament;decoration", + "romanization": "ornamento", + "example_sentence_native": "L'albero di Natale era pieno di ornamenti.", + "example_sentence_english": "The Christmas tree was full of ornaments.", + "pos": "noun", + "word_frequency": 15031 + }, + { + "word": "ossessionato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsessed", + "romanization": "ossessionato", + "example_sentence_native": "Era ossessionato dall'idea di successo.", + "example_sentence_english": "He was obsessed with the idea of success.", + "pos": "adjective", + "word_frequency": 15033 + }, + { + "word": "ossidazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oxidation", + "romanization": "ossidazione", + "example_sentence_native": "L'ossidazione è un processo chimico comune.", + "example_sentence_english": "Oxidation is a common chemical process.", + "pos": "noun", + "word_frequency": 15034 + }, + { + "word": "ostacolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hindered;obstructed", + "romanization": "ostacolato", + "example_sentence_native": "Il progetto è stato ostacolato da problemi burocratici.", + "example_sentence_english": "The project was hindered by bureaucratic problems.", + "pos": "adjective", + "word_frequency": 15035 + }, + { + "word": "paragonato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compared", + "romanization": "paragonato", + "example_sentence_native": "Il suo stile è stato paragonato a quello di un maestro.", + "example_sentence_english": "His style has been compared to that of a master.", + "pos": "adjective", + "word_frequency": 15036 + }, + { + "word": "passera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparrow", + "romanization": "passera", + "example_sentence_native": "Una piccola passera si è posata sul davanzale.", + "example_sentence_english": "A small sparrow landed on the windowsill.", + "pos": "noun", + "word_frequency": 15037 + }, + { + "word": "pattinaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skating", + "romanization": "pattinaggio", + "example_sentence_native": "Il pattinaggio su ghiaccio è uno sport elegante.", + "example_sentence_english": "Ice skating is an elegant sport.", + "pos": "noun", + "word_frequency": 15039 + }, + { + "word": "pedaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toll", + "romanization": "pedaggio", + "example_sentence_native": "Abbiamo dovuto pagare un pedaggio per usare l'autostrada.", + "example_sentence_english": "We had to pay a toll to use the highway.", + "pos": "noun", + "word_frequency": 15041 + }, + { + "word": "pilot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pilot (pen;marker)", + "romanization": "pilot", + "example_sentence_native": "Ho comprato un nuovo pilot nero per disegnare.", + "example_sentence_english": "I bought a new black pilot pen for drawing.", + "pos": "noun", + "word_frequency": 15043 + }, + { + "word": "pinna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fin", + "romanization": "pinna", + "example_sentence_native": "Il pesce nuotava velocemente muovendo la pinna caudale.", + "example_sentence_english": "The fish swam quickly, moving its caudal fin.", + "pos": "noun", + "word_frequency": 15044 + }, + { + "word": "playboy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playboy", + "romanization": "playboy", + "example_sentence_native": "Era conosciuto in città come un vero playboy.", + "example_sentence_english": "He was known in the city as a true playboy.", + "pos": "noun", + "word_frequency": 15045 + }, + { + "word": "porcata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mess;disgusting thing", + "romanization": "porcata", + "example_sentence_native": "Che porcata hai combinato in cucina!", + "example_sentence_english": "What a mess you've made in the kitchen!", + "pos": "noun", + "word_frequency": 15046 + }, + { + "word": "possedimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possession;property", + "romanization": "possedimento", + "example_sentence_native": "La famiglia aveva molti possedimenti terrieri.", + "example_sentence_english": "The family had many land possessions.", + "pos": "noun", + "word_frequency": 15047 + }, + { + "word": "premiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premiere", + "romanization": "premiere", + "example_sentence_native": "La premiere del film è stata un grande successo.", + "example_sentence_english": "The film's premiere was a great success.", + "pos": "noun", + "word_frequency": 15048 + }, + { + "word": "premura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "haste;thoughtfulness", + "romanization": "premura", + "example_sentence_native": "Ti ringrazio per la tua premura.", + "example_sentence_english": "Thank you for your thoughtfulness.", + "pos": "noun", + "word_frequency": 15049 + }, + { + "word": "provocatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocative", + "romanization": "provocatorio", + "example_sentence_native": "Il suo commento era molto provocatorio.", + "example_sentence_english": "His comment was very provocative.", + "pos": "adjective", + "word_frequency": 15051 + }, + { + "word": "pubertà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puberty", + "romanization": "pubertà", + "example_sentence_native": "Durante la pubertà, il corpo subisce molti cambiamenti.", + "example_sentence_english": "During puberty, the body undergoes many changes.", + "pos": "noun", + "word_frequency": 15052 + }, + { + "word": "punch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punch (drink;hit)", + "romanization": "punch", + "example_sentence_native": "Ha preparato un delizioso punch alla frutta per la festa.", + "example_sentence_english": "She prepared a delicious fruit punch for the party.", + "pos": "noun", + "word_frequency": 15053 + }, + { + "word": "quoziente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quotient", + "romanization": "quoziente", + "example_sentence_native": "Il quoziente intellettivo è una misura delle capacità cognitive.", + "example_sentence_english": "The intelligence quotient is a measure of cognitive abilities.", + "pos": "noun", + "word_frequency": 15054 + }, + { + "word": "redentore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redeemer", + "romanization": "redentore", + "example_sentence_native": "Molti credono in un redentore che salverà l'umanità.", + "example_sentence_english": "Many believe in a redeemer who will save humanity.", + "pos": "noun", + "word_frequency": 15056 + }, + { + "word": "retromarcia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reverse gear", + "romanization": "retromarcia", + "example_sentence_native": "Ho messo la retromarcia per uscire dal parcheggio.", + "example_sentence_english": "I put it in reverse gear to get out of the parking lot.", + "pos": "noun", + "word_frequency": 15057 + }, + { + "word": "ricreazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recess;recreation", + "romanization": "ricreazione", + "example_sentence_native": "Durante la ricreazione, i bambini giocano in cortile.", + "example_sentence_english": "During recess, the children play in the yard.", + "pos": "noun", + "word_frequency": 15059 + }, + { + "word": "riduttivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reductive", + "romanization": "riduttivo", + "example_sentence_native": "Sarebbe riduttivo definire il suo lavoro solo un hobby.", + "example_sentence_english": "It would be reductive to define his work as just a hobby.", + "pos": "adjective", + "word_frequency": 15060 + }, + { + "word": "rimandato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postponed;failed (exam)", + "romanization": "rimandato", + "example_sentence_native": "L'esame è stato rimandato alla settimana prossima.", + "example_sentence_english": "The exam has been postponed until next week.", + "pos": "adjective", + "word_frequency": 15061 + }, + { + "word": "rimproverare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scold;to reproach", + "romanization": "rimproverare", + "example_sentence_native": "La madre ha dovuto rimproverare il figlio per il suo comportamento.", + "example_sentence_english": "The mother had to scold her son for his behavior.", + "pos": "verb", + "word_frequency": 15062 + }, + { + "word": "riprodotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproduced", + "romanization": "riprodotto", + "example_sentence_native": "Il suono è stato riprodotto fedelmente dagli altoparlanti.", + "example_sentence_english": "The sound was faithfully reproduced by the speakers.", + "pos": "adjective", + "word_frequency": 15063 + }, + { + "word": "ritroso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reluctant;shy", + "romanization": "ritroso", + "example_sentence_native": "Era un ragazzo molto ritroso e parlava poco.", + "example_sentence_english": "He was a very shy boy and spoke little.", + "pos": "adjective", + "word_frequency": 15064 + }, + { + "word": "rockstar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rockstar", + "romanization": "rockstar", + "example_sentence_native": "Sognava di diventare una rockstar famosa.", + "example_sentence_english": "He dreamed of becoming a famous rockstar.", + "pos": "noun", + "word_frequency": 15065 + }, + { + "word": "rossonero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "red and black (AC Milan fan;player)", + "romanization": "rossonero", + "example_sentence_native": "Il tifoso rossonero esultava per il gol della sua squadra.", + "example_sentence_english": "The red and black fan cheered for his team's goal.", + "pos": "adjective", + "word_frequency": 15066 + }, + { + "word": "saltuariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occasionally;sporadically", + "romanization": "saltuariamente", + "example_sentence_native": "Vado in palestra solo saltuariamente.", + "example_sentence_english": "I only go to the gym occasionally.", + "pos": "adverb", + "word_frequency": 15068 + }, + { + "word": "sax", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sax (saxophone)", + "romanization": "sax", + "example_sentence_native": "Suona il sax in una band jazz.", + "example_sentence_english": "He plays the sax in a jazz band.", + "pos": "noun", + "word_frequency": 15070 + }, + { + "word": "schietto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frank;straightforward", + "romanization": "schietto", + "example_sentence_native": "È una persona molto schietta e dice sempre la verità.", + "example_sentence_english": "He is a very frank person and always tells the truth.", + "pos": "adjective", + "word_frequency": 15071 + }, + { + "word": "schizofrenia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schizophrenia", + "romanization": "schizofrenia", + "example_sentence_native": "La schizofrenia è una grave malattia mentale.", + "example_sentence_english": "Schizophrenia is a serious mental illness.", + "pos": "noun", + "word_frequency": 15072 + }, + { + "word": "scioccante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shocking", + "romanization": "scioccante", + "example_sentence_native": "La notizia è stata davvero scioccante per tutti.", + "example_sentence_english": "The news was truly shocking for everyone.", + "pos": "adjective", + "word_frequency": 15073 + }, + { + "word": "scolaro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "schoolboy;pupil", + "romanization": "scolaro", + "example_sentence_native": "Ogni scolaro deve portare il proprio zaino.", + "example_sentence_english": "Every schoolboy must bring his own backpack.", + "pos": "noun", + "word_frequency": 15074 + }, + { + "word": "scontrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to collide;to clash", + "romanization": "scontrare", + "example_sentence_native": "Due auto si sono scontrate all'incrocio.", + "example_sentence_english": "Two cars collided at the intersection.", + "pos": "verb", + "word_frequency": 15075 + }, + { + "word": "sentore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hunch;inkling;scent", + "romanization": "sentore", + "example_sentence_native": "Ho il sentore che qualcosa non va.", + "example_sentence_english": "I have a hunch that something is wrong.", + "pos": "noun", + "word_frequency": 15076 + }, + { + "word": "sessant'anni", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sixty years", + "romanization": "sessant'anni", + "example_sentence_native": "Mio nonno ha sessant'anni.", + "example_sentence_english": "My grandfather is sixty years old.", + "pos": "noun", + "word_frequency": 15077 + }, + { + "word": "sfilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to parade;to file past;to take off (clothes)", + "romanization": "sfilare", + "example_sentence_native": "Le modelle hanno sfilato sulla passerella.", + "example_sentence_english": "The models paraded on the catwalk.", + "pos": "verb", + "word_frequency": 15078 + }, + { + "word": "soddisfatto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "satisfied", + "romanization": "soddisfatto", + "example_sentence_native": "Sono molto soddisfatto del risultato finale.", + "example_sentence_english": "I am very satisfied with the final result.", + "pos": "adjective", + "word_frequency": 15079 + }, + { + "word": "solennemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemnly", + "romanization": "solennemente", + "example_sentence_native": "La cerimonia si è svolta solennemente.", + "example_sentence_english": "The ceremony took place solemnly.", + "pos": "adverb", + "word_frequency": 15080 + }, + { + "word": "splendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shine", + "romanization": "splendere", + "example_sentence_native": "Il sole splende nel cielo azzurro.", + "example_sentence_english": "The sun shines in the blue sky.", + "pos": "verb", + "word_frequency": 15082 + }, + { + "word": "stagista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intern", + "romanization": "stagista", + "example_sentence_native": "La nuova stagista è molto brava.", + "example_sentence_english": "The new intern is very good.", + "pos": "noun", + "word_frequency": 15084 + }, + { + "word": "stirare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to iron", + "romanization": "stirare", + "example_sentence_native": "Devo stirare tutte le camicie.", + "example_sentence_english": "I have to iron all the shirts.", + "pos": "verb", + "word_frequency": 15085 + }, + { + "word": "stuprato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "raped", + "romanization": "stuprato", + "example_sentence_native": "La vittima si è sentita stuprata della sua dignità.", + "example_sentence_english": "The victim felt raped of her dignity.", + "pos": "adjective", + "word_frequency": 15086 + }, + { + "word": "svenire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to faint", + "romanization": "svenire", + "example_sentence_native": "Ha avuto un calo di pressione e stava per svenire.", + "example_sentence_english": "He had a drop in blood pressure and was about to faint.", + "pos": "verb", + "word_frequency": 15090 + }, + { + "word": "tino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vat", + "romanization": "tino", + "example_sentence_native": "Il vino fermenta nel grande tino di legno.", + "example_sentence_english": "The wine ferments in the large wooden vat.", + "pos": "noun", + "word_frequency": 15094 + }, + { + "word": "tornaconto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personal gain", + "romanization": "tornaconto", + "example_sentence_native": "Ha agito solo per il suo tornaconto personale.", + "example_sentence_english": "He acted only for his personal gain.", + "pos": "noun", + "word_frequency": 15098 + }, + { + "word": "trapano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drill", + "romanization": "trapano", + "example_sentence_native": "Ho bisogno del trapano per appendere il quadro.", + "example_sentence_english": "I need the drill to hang the picture.", + "pos": "noun", + "word_frequency": 15100 + }, + { + "word": "trasgressione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transgression", + "romanization": "trasgressione", + "example_sentence_native": "Ogni trasgressione sarà punita.", + "example_sentence_english": "Every transgression will be punished.", + "pos": "noun", + "word_frequency": 15101 + }, + { + "word": "tridimensionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "three-dimensional", + "romanization": "tridimensionale", + "example_sentence_native": "Abbiamo visto un film tridimensionale al cinema.", + "example_sentence_english": "We watched a three-dimensional movie at the cinema.", + "pos": "adjective", + "word_frequency": 15102 + }, + { + "word": "tutt'uno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "one and the same", + "romanization": "tutt'uno", + "example_sentence_native": "La mente e il corpo sono tutt'uno.", + "example_sentence_english": "Mind and body are one and the same.", + "pos": "noun", + "word_frequency": 15103 + }, + { + "word": "umanamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humanly", + "romanization": "umanamente", + "example_sentence_native": "Umanamente parlando, è difficile accettare una tale perdita.", + "example_sentence_english": "Humanly speaking, it's difficult to accept such a loss.", + "pos": "adverb", + "word_frequency": 15105 + }, + { + "word": "urgentemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "urgently", + "romanization": "urgentemente", + "example_sentence_native": "Dobbiamo agire urgentemente.", + "example_sentence_english": "We must act urgently.", + "pos": "adverb", + "word_frequency": 15107 + }, + { + "word": "variegato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "variegated", + "romanization": "variegato", + "example_sentence_native": "Offriamo un menù variegato per tutti i gusti.", + "example_sentence_english": "We offer a variegated menu for all tastes.", + "pos": "adjective", + "word_frequency": 15109 + }, + { + "word": "veicolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to convey", + "romanization": "veicolare", + "example_sentence_native": "I media veicolano spesso messaggi importanti.", + "example_sentence_english": "The media often convey important messages.", + "pos": "verb", + "word_frequency": 15110 + }, + { + "word": "velocizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to speed up", + "romanization": "velocizzare", + "example_sentence_native": "Dobbiamo velocizzare il processo di produzione.", + "example_sentence_english": "We need to speed up the production process.", + "pos": "verb", + "word_frequency": 15111 + }, + { + "word": "venerato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venerated", + "romanization": "venerato", + "example_sentence_native": "Il santo è venerato da milioni di fedeli.", + "example_sentence_english": "The saint is venerated by millions of faithful.", + "pos": "adjective", + "word_frequency": 15112 + }, + { + "word": "venoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "venous", + "romanization": "venoso", + "example_sentence_native": "Il sangue venoso è povero di ossigeno.", + "example_sentence_english": "Venous blood is poor in oxygen.", + "pos": "adjective", + "word_frequency": 15113 + }, + { + "word": "ventisette", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-seven", + "romanization": "ventisette", + "example_sentence_native": "Ho ventisette anni.", + "example_sentence_english": "I am twenty-seven years old.", + "pos": "noun", + "word_frequency": 15114 + }, + { + "word": "abusivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abusively;illegally", + "romanization": "abusivamente", + "example_sentence_native": "Hanno occupato l'edificio abusivamente.", + "example_sentence_english": "They occupied the building illegally.", + "pos": "adverb", + "word_frequency": 15120 + }, + { + "word": "accattivante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "captivating;charming", + "romanization": "accattivante", + "example_sentence_native": "Il suo sorriso era davvero accattivante.", + "example_sentence_english": "Her smile was truly captivating.", + "pos": "adjective", + "word_frequency": 15121 + }, + { + "word": "accertato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ascertained;confirmed", + "romanization": "accertato", + "example_sentence_native": "Il fatto è stato accertato dalla polizia.", + "example_sentence_english": "The fact was ascertained by the police.", + "pos": "adjective", + "word_frequency": 15122 + }, + { + "word": "affermato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "established;affirmed;renowned", + "romanization": "affermato", + "example_sentence_native": "È un artista affermato a livello internazionale.", + "example_sentence_english": "He is an internationally renowned artist.", + "pos": "adjective", + "word_frequency": 15123 + }, + { + "word": "allungamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lengthening;stretching", + "romanization": "allungamento", + "example_sentence_native": "Gli esercizi di allungamento sono importanti prima dell'attività fisica.", + "example_sentence_english": "Stretching exercises are important before physical activity.", + "pos": "noun", + "word_frequency": 15126 + }, + { + "word": "allusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allusion;hint", + "romanization": "allusione", + "example_sentence_native": "Ha fatto un'allusione al nostro passato.", + "example_sentence_english": "He made an allusion to our past.", + "pos": "noun", + "word_frequency": 15128 + }, + { + "word": "altoparlante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loudspeaker;speaker", + "romanization": "altoparlante", + "example_sentence_native": "La musica usciva dall'altoparlante.", + "example_sentence_english": "The music came out of the speaker.", + "pos": "noun", + "word_frequency": 15129 + }, + { + "word": "anticorruzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-corruption", + "romanization": "anticorruzione", + "example_sentence_native": "La legge anticorruzione è stata approvata.", + "example_sentence_english": "The anti-corruption law has been approved.", + "pos": "noun", + "word_frequency": 15131 + }, + { + "word": "arbitrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arbitration", + "romanization": "arbitrato", + "example_sentence_native": "La disputa è stata risolta tramite arbitrato.", + "example_sentence_english": "The dispute was resolved through arbitration.", + "pos": "noun", + "word_frequency": 15133 + }, + { + "word": "arcaico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archaic", + "romanization": "arcaico", + "example_sentence_native": "Usava un linguaggio ormai arcaico.", + "example_sentence_english": "He used a language that is now archaic.", + "pos": "adjective", + "word_frequency": 15134 + }, + { + "word": "ariano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Aryan", + "romanization": "ariano", + "example_sentence_native": "Il concetto di razza ariana è stato ampiamente screditato.", + "example_sentence_english": "The concept of the Aryan race has been widely discredited.", + "pos": "adjective", + "word_frequency": 15135 + }, + { + "word": "ascella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "armpit", + "romanization": "ascella", + "example_sentence_native": "Ha un neo sull'ascella.", + "example_sentence_english": "He has a mole on his armpit.", + "pos": "noun", + "word_frequency": 15137 + }, + { + "word": "assordante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deafening", + "romanization": "assordante", + "example_sentence_native": "Il rumore era assordante.", + "example_sentence_english": "The noise was deafening.", + "pos": "adjective", + "word_frequency": 15138 + }, + { + "word": "astrologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astrology", + "romanization": "astrologia", + "example_sentence_native": "Non credo nell'astrologia.", + "example_sentence_english": "I don't believe in astrology.", + "pos": "noun", + "word_frequency": 15139 + }, + { + "word": "attraversata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossing;traverse", + "romanization": "attraversata", + "example_sentence_native": "La traversata del deserto è stata difficile.", + "example_sentence_english": "The desert crossing was difficult.", + "pos": "noun", + "word_frequency": 15140 + }, + { + "word": "austerity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "austerity", + "romanization": "austerity", + "example_sentence_native": "Il governo ha imposto misure di austerity.", + "example_sentence_english": "The government imposed austerity measures.", + "pos": "noun", + "word_frequency": 15141 + }, + { + "word": "avvistamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sighting", + "romanization": "avvistamento", + "example_sentence_native": "Ci sono stati molti avvistamenti di UFO.", + "example_sentence_english": "There have been many UFO sightings.", + "pos": "noun", + "word_frequency": 15142 + }, + { + "word": "basarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be based on;to rely on", + "romanization": "basarsi", + "example_sentence_native": "La sua teoria si basa su fatti concreti.", + "example_sentence_english": "His theory is based on concrete facts.", + "pos": "verb", + "word_frequency": 15144 + }, + { + "word": "bersagliere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bersagliere (Italian elite light infantry soldier)", + "romanization": "bersagliere", + "example_sentence_native": "I bersaglieri sono famosi per il loro passo veloce.", + "example_sentence_english": "The bersaglieri are famous for their fast pace.", + "pos": "noun", + "word_frequency": 15147 + }, + { + "word": "bisessuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bisexual", + "romanization": "bisessuale", + "example_sentence_native": "È una persona bisessuale.", + "example_sentence_english": "He/She is a bisexual person.", + "pos": "adjective", + "word_frequency": 15148 + }, + { + "word": "buddista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhist", + "romanization": "buddista", + "example_sentence_native": "È una monaca buddista.", + "example_sentence_english": "She is a Buddhist nun.", + "pos": "adjective", + "word_frequency": 15154 + }, + { + "word": "catering", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catering", + "romanization": "catering", + "example_sentence_native": "Abbiamo assunto un servizio di catering per la festa.", + "example_sentence_english": "We hired a catering service for the party.", + "pos": "noun", + "word_frequency": 15156 + }, + { + "word": "cauto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cautious;wary", + "romanization": "cauto", + "example_sentence_native": "Sii cauto quando attraversi la strada.", + "example_sentence_english": "Be cautious when crossing the street.", + "pos": "adjective", + "word_frequency": 15157 + }, + { + "word": "cerimoniale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ceremonial;protocol", + "romanization": "cerimoniale", + "example_sentence_native": "Il cerimoniale della cerimonia nuziale era molto rigoroso.", + "example_sentence_english": "The protocol of the wedding ceremony was very strict.", + "pos": "noun", + "word_frequency": 15160 + }, + { + "word": "ciabatta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slipper;ciabatta bread", + "romanization": "ciabatta", + "example_sentence_native": "Ho comprato una ciabatta fresca per la colazione.", + "example_sentence_english": "I bought a fresh ciabatta for breakfast.", + "pos": "noun", + "word_frequency": 15164 + }, + { + "word": "cicogna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stork", + "romanization": "cicogna", + "example_sentence_native": "La cicogna è un uccello migratore.", + "example_sentence_english": "The stork is a migratory bird.", + "pos": "noun", + "word_frequency": 15165 + }, + { + "word": "civetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "owl (little owl);flirt", + "romanization": "civetta", + "example_sentence_native": "La civetta è un piccolo gufo notturno.", + "example_sentence_english": "The little owl is a small nocturnal owl.", + "pos": "noun", + "word_frequency": 15166 + }, + { + "word": "cloruro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chloride", + "romanization": "cloruro", + "example_sentence_native": "Il cloruro di sodio è il sale da cucina.", + "example_sentence_english": "Sodium chloride is table salt.", + "pos": "noun", + "word_frequency": 15168 + }, + { + "word": "colorito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "colorful;flushed (complexion)", + "romanization": "colorito", + "example_sentence_native": "Il suo viso era molto colorito dopo la corsa.", + "example_sentence_english": "His face was very flushed after the run.", + "pos": "adjective", + "word_frequency": 15169 + }, + { + "word": "corazzata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "battleship", + "romanization": "corazzata", + "example_sentence_native": "La corazzata Bismarck fu affondata durante la Seconda Guerra Mondiale.", + "example_sentence_english": "The battleship Bismarck was sunk during World War II.", + "pos": "noun", + "word_frequency": 15171 + }, + { + "word": "corridore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "runner", + "romanization": "corridore", + "example_sentence_native": "Il corridore ha tagliato il traguardo per primo.", + "example_sentence_english": "The runner crossed the finish line first.", + "pos": "noun", + "word_frequency": 15172 + }, + { + "word": "custodire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to guard;to keep;to look after", + "romanization": "custodire", + "example_sentence_native": "Deve custodire i suoi segreti con cura.", + "example_sentence_english": "He must guard his secrets carefully.", + "pos": "verb", + "word_frequency": 15175 + }, + { + "word": "decapitare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decapitate", + "romanization": "decapitare", + "example_sentence_native": "Il re ordinò di decapitare il traditore.", + "example_sentence_english": "The king ordered the traitor to be decapitated.", + "pos": "verb", + "word_frequency": 15178 + }, + { + "word": "degenerazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degeneration", + "romanization": "degenerazione", + "example_sentence_native": "La degenerazione cellulare è un processo naturale.", + "example_sentence_english": "Cellular degeneration is a natural process.", + "pos": "noun", + "word_frequency": 15179 + }, + { + "word": "demanio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state property;public domain", + "romanization": "demanio", + "example_sentence_native": "Le spiagge sono considerate parte del demanio pubblico.", + "example_sentence_english": "Beaches are considered part of the public domain.", + "pos": "noun", + "word_frequency": 15180 + }, + { + "word": "dentifricio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toothpaste", + "romanization": "dentifricio", + "example_sentence_native": "Ho finito il dentifricio, devo comprarne altro.", + "example_sentence_english": "I've run out of toothpaste, I need to buy more.", + "pos": "noun", + "word_frequency": 15182 + }, + { + "word": "desistere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to desist;to give up", + "romanization": "desistere", + "example_sentence_native": "Nonostante le difficoltà, non ha voluto desistere dal suo obiettivo.", + "example_sentence_english": "Despite the difficulties, he did not want to desist from his goal.", + "pos": "verb", + "word_frequency": 15183 + }, + { + "word": "detentore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holder;possessor;champion", + "romanization": "detentore", + "example_sentence_native": "È il detentore del record mondiale di velocità.", + "example_sentence_english": "He is the world speed record holder.", + "pos": "noun", + "word_frequency": 15184 + }, + { + "word": "dimestichezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "familiarity;acquaintance;proficiency", + "romanization": "dimestichezza", + "example_sentence_native": "Ha molta dimestichezza con i computer.", + "example_sentence_english": "He has a lot of familiarity with computers.", + "pos": "noun", + "word_frequency": 15185 + }, + { + "word": "dissesto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disarray;collapse;financial ruin", + "romanization": "dissesto", + "example_sentence_native": "L'azienda è in grave dissesto finanziario.", + "example_sentence_english": "The company is in serious financial ruin.", + "pos": "noun", + "word_frequency": 15187 + }, + { + "word": "dizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diction;elocution", + "romanization": "dizione", + "example_sentence_native": "Ha frequentato un corso di dizione per migliorare la sua pronuncia.", + "example_sentence_english": "She attended a diction course to improve her pronunciation.", + "pos": "noun", + "word_frequency": 15189 + }, + { + "word": "doloso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malicious;fraudulent;intentional (in legal sense)", + "romanization": "doloso", + "example_sentence_native": "L'incendio è stato di natura dolosa.", + "example_sentence_english": "The fire was of a malicious nature.", + "pos": "adjective", + "word_frequency": 15191 + }, + { + "word": "doppiamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubly;twice as", + "romanization": "doppiamente", + "example_sentence_native": "Era doppiamente difficile risolvere il problema.", + "example_sentence_english": "It was doubly difficult to solve the problem.", + "pos": "adverb", + "word_frequency": 15195 + }, + { + "word": "dragone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dragon;dragoon", + "romanization": "dragone", + "example_sentence_native": "Il dragone sputava fuoco e fiamme.", + "example_sentence_english": "The dragon breathed fire and flames.", + "pos": "noun", + "word_frequency": 15197 + }, + { + "word": "eccitato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "excited;aroused", + "romanization": "eccitato", + "example_sentence_native": "Era molto eccitato per il suo compleanno.", + "example_sentence_english": "He was very excited for his birthday.", + "pos": "adjective", + "word_frequency": 15198 + }, + { + "word": "ecografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ultrasound;sonogram", + "romanization": "ecografia", + "example_sentence_native": "La dottoressa ha fatto un'ecografia per controllare il bambino.", + "example_sentence_english": "The doctor performed an ultrasound to check the baby.", + "pos": "noun", + "word_frequency": 15199 + }, + { + "word": "emanazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emanation;issuance", + "romanization": "emanazione", + "example_sentence_native": "L'emanazione di nuove leggi è un processo complesso.", + "example_sentence_english": "The issuance of new laws is a complex process.", + "pos": "noun", + "word_frequency": 15200 + }, + { + "word": "emozionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emotional", + "romanization": "emozionale", + "example_sentence_native": "La sua risposta è stata puramente emozionale.", + "example_sentence_english": "His response was purely emotional.", + "pos": "adjective", + "word_frequency": 15201 + }, + { + "word": "equamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equally;fairly", + "romanization": "equamente", + "example_sentence_native": "I beni sono stati divisi equamente tra i fratelli.", + "example_sentence_english": "The assets were divided equally among the siblings.", + "pos": "adverb", + "word_frequency": 15203 + }, + { + "word": "eretico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heretical", + "romanization": "eretico", + "example_sentence_native": "Le sue idee erano considerate eretiche dalla Chiesa.", + "example_sentence_english": "His ideas were considered heretical by the Church.", + "pos": "adjective", + "word_frequency": 15204 + }, + { + "word": "esauriente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhaustive;comprehensive", + "romanization": "esauriente", + "example_sentence_native": "Ha fornito una spiegazione molto esauriente.", + "example_sentence_english": "He provided a very comprehensive explanation.", + "pos": "adjective", + "word_frequency": 15205 + }, + { + "word": "esiguo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meager;scanty;small", + "romanization": "esiguo", + "example_sentence_native": "Hanno ricevuto un compenso esiguo per il loro lavoro.", + "example_sentence_english": "They received a meager compensation for their work.", + "pos": "adjective", + "word_frequency": 15206 + }, + { + "word": "etichettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to label", + "romanization": "etichettare", + "example_sentence_native": "Non dovresti etichettare le persone in base alle apparenze.", + "example_sentence_english": "You shouldn't label people based on appearances.", + "pos": "verb", + "word_frequency": 15207 + }, + { + "word": "fervore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fervor;enthusiasm", + "romanization": "fervore", + "example_sentence_native": "Ha lavorato con grande fervore al progetto.", + "example_sentence_english": "He worked with great fervor on the project.", + "pos": "noun", + "word_frequency": 15210 + }, + { + "word": "finanziariamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "financially", + "romanization": "finanziariamente", + "example_sentence_native": "La situazione dell'azienda è finanziariamente stabile.", + "example_sentence_english": "The company's situation is financially stable.", + "pos": "adverb", + "word_frequency": 15211 + }, + { + "word": "follemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "madly;insanely", + "romanization": "follemente", + "example_sentence_native": "Era follemente innamorato di lei.", + "example_sentence_english": "He was madly in love with her.", + "pos": "adverb", + "word_frequency": 15212 + }, + { + "word": "funivia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cable car;aerial tramway", + "romanization": "funivia", + "example_sentence_native": "Abbiamo preso la funivia per salire in cima alla montagna.", + "example_sentence_english": "We took the cable car to go up to the top of the mountain.", + "pos": "noun", + "word_frequency": 15213 + }, + { + "word": "galletto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "young rooster;cockerel", + "romanization": "galletto", + "example_sentence_native": "Il galletto cantava all'alba.", + "example_sentence_english": "The cockerel crowed at dawn.", + "pos": "noun", + "word_frequency": 15214 + }, + { + "word": "giochetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little game;trick", + "romanization": "giochetto", + "example_sentence_native": "Non è un giochetto, è una questione seria.", + "example_sentence_english": "It's not a little game, it's a serious matter.", + "pos": "noun", + "word_frequency": 15216 + }, + { + "word": "girasole", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sunflower", + "romanization": "girasole", + "example_sentence_native": "Il campo era pieno di girasoli.", + "example_sentence_english": "The field was full of sunflowers.", + "pos": "noun", + "word_frequency": 15217 + }, + { + "word": "immissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "introduction;insertion;input", + "romanization": "immissione", + "example_sentence_native": "L'immissione di dati nel sistema richiede precisione.", + "example_sentence_english": "Data input into the system requires precision.", + "pos": "noun", + "word_frequency": 15220 + }, + { + "word": "imperialismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialism", + "romanization": "imperialismo", + "example_sentence_native": "L'imperialismo ha avuto un impatto significativo sulla storia mondiale.", + "example_sentence_english": "Imperialism had a significant impact on world history.", + "pos": "noun", + "word_frequency": 15221 + }, + { + "word": "incriminare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incriminate;to indict", + "romanization": "incriminare", + "example_sentence_native": "Le prove raccolte potrebbero incriminare il sospettato.", + "example_sentence_english": "The collected evidence could incriminate the suspect.", + "pos": "verb", + "word_frequency": 15222 + }, + { + "word": "indefinito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indefinite;undefined", + "romanization": "indefinito", + "example_sentence_native": "Il futuro è ancora indefinito.", + "example_sentence_english": "The future is still undefined.", + "pos": "adjective", + "word_frequency": 15223 + }, + { + "word": "indelebile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indelible;permanent", + "romanization": "indelebile", + "example_sentence_native": "Quell'esperienza ha lasciato un segno indelebile nella sua memoria.", + "example_sentence_english": "That experience left an indelible mark on his memory.", + "pos": "adjective", + "word_frequency": 15224 + }, + { + "word": "indolore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painless", + "romanization": "indolore", + "example_sentence_native": "L'iniezione è stata quasi indolore.", + "example_sentence_english": "The injection was almost painless.", + "pos": "adjective", + "word_frequency": 15225 + }, + { + "word": "infedeltà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infidelity;disloyalty", + "romanization": "infedeltà", + "example_sentence_native": "L'infedeltà può distruggere un rapporto.", + "example_sentence_english": "Infidelity can destroy a relationship.", + "pos": "noun", + "word_frequency": 15226 + }, + { + "word": "infiltrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to infiltrate;to seep in", + "romanization": "infiltrare", + "example_sentence_native": "L'acqua è riuscita a infiltrare il muro.", + "example_sentence_english": "The water managed to seep into the wall.", + "pos": "verb", + "word_frequency": 15227 + }, + { + "word": "ingranaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gear;mechanism", + "romanization": "ingranaggio", + "example_sentence_native": "Un piccolo ingranaggio può bloccare l'intero meccanismo.", + "example_sentence_english": "A small gear can block the entire mechanism.", + "pos": "noun", + "word_frequency": 15228 + }, + { + "word": "innalzare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to raise;to elevate", + "romanization": "innalzare", + "example_sentence_native": "Hanno deciso di innalzare una statua in suo onore.", + "example_sentence_english": "They decided to raise a statue in his honor.", + "pos": "verb", + "word_frequency": 15229 + }, + { + "word": "innovare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to innovate", + "romanization": "innovare", + "example_sentence_native": "È fondamentale innovare per rimanere competitivi.", + "example_sentence_english": "It is essential to innovate to remain competitive.", + "pos": "verb", + "word_frequency": 15230 + }, + { + "word": "interpersonale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interpersonal", + "romanization": "interpersonale", + "example_sentence_native": "Le sue abilità comunicative interpersonali sono eccellenti.", + "example_sentence_english": "His interpersonal communication skills are excellent.", + "pos": "adjective", + "word_frequency": 15232 + }, + { + "word": "invidioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "envious;jealous", + "romanization": "invidioso", + "example_sentence_native": "Era invidioso del successo del suo amico.", + "example_sentence_english": "He was envious of his friend's success.", + "pos": "adjective", + "word_frequency": 15233 + }, + { + "word": "latente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "latent", + "romanization": "latente", + "example_sentence_native": "Il problema era latente per mesi prima di manifestarsi.", + "example_sentence_english": "The problem was latent for months before manifesting itself.", + "pos": "adjective", + "word_frequency": 15240 + }, + { + "word": "latta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tin (can)", + "romanization": "latta", + "example_sentence_native": "Ha comprato una latta di pomodori pelati.", + "example_sentence_english": "He bought a tin of peeled tomatoes.", + "pos": "noun", + "word_frequency": 15241 + }, + { + "word": "lupa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "she-wolf", + "romanization": "lupa", + "example_sentence_native": "La lupa allattò Romolo e Remo.", + "example_sentence_english": "The she-wolf suckled Romulus and Remus.", + "pos": "noun", + "word_frequency": 15245 + }, + { + "word": "maggioritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "majority (adj.);majoritarian", + "romanization": "maggioritario", + "example_sentence_native": "Il partito ha ottenuto il consenso maggioritario.", + "example_sentence_english": "The party obtained the majority consensus.", + "pos": "adjective", + "word_frequency": 15247 + }, + { + "word": "marcatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scorer;marker", + "romanization": "marcatore", + "example_sentence_native": "Il marcatore della partita è stato Rossi.", + "example_sentence_english": "The scorer of the match was Rossi.", + "pos": "noun", + "word_frequency": 15248 + }, + { + "word": "misteriosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mysteriously", + "romanization": "misteriosamente", + "example_sentence_native": "L'oggetto è scomparso misteriosamente.", + "example_sentence_english": "The object disappeared mysteriously.", + "pos": "adverb", + "word_frequency": 15252 + }, + { + "word": "natività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nativity", + "romanization": "natività", + "example_sentence_native": "La natività di Gesù è celebrata a Natale.", + "example_sentence_english": "The nativity of Jesus is celebrated at Christmas.", + "pos": "noun", + "word_frequency": 15255 + }, + { + "word": "atrio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "atrium;lobby", + "romanization": "atrio", + "example_sentence_native": "Ci siamo incontrati nell'atrio dell'hotel.", + "example_sentence_english": "We met in the hotel lobby.", + "pos": "noun", + "word_frequency": 15256 + }, + { + "word": "oneroso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burdensome;onerous", + "romanization": "oneroso", + "example_sentence_native": "Il compito si è rivelato oneroso.", + "example_sentence_english": "The task proved to be onerous.", + "pos": "adjective", + "word_frequency": 15261 + }, + { + "word": "pacca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pat;slap (light)", + "romanization": "pacca", + "example_sentence_native": "Gli diede una pacca sulla spalla.", + "example_sentence_english": "He gave him a pat on the shoulder.", + "pos": "noun", + "word_frequency": 15263 + }, + { + "word": "pannolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "diaper;nappy", + "romanization": "pannolino", + "example_sentence_native": "Il bambino ha bisogno di un pannolino pulito.", + "example_sentence_english": "The baby needs a clean diaper.", + "pos": "noun", + "word_frequency": 15265 + }, + { + "word": "parallelismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parallelism", + "romanization": "parallelismo", + "example_sentence_native": "C'è un chiaro parallelismo tra i due eventi.", + "example_sentence_english": "There is a clear parallelism between the two events.", + "pos": "noun", + "word_frequency": 15266 + }, + { + "word": "parigino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Parisian", + "romanization": "parigino", + "example_sentence_native": "Ha comprato un cappello parigino.", + "example_sentence_english": "She bought a Parisian hat.", + "pos": "adjective", + "word_frequency": 15267 + }, + { + "word": "pendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pending;hanging;sloping", + "romanization": "pendente", + "example_sentence_native": "La Torre di Pisa è pendente.", + "example_sentence_english": "The Leaning Tower of Pisa is leaning.", + "pos": "adjective", + "word_frequency": 15268 + }, + { + "word": "piglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demeanor;attitude;grasp", + "romanization": "piglio", + "example_sentence_native": "Ha un piglio deciso.", + "example_sentence_english": "He has a determined demeanor.", + "pos": "noun", + "word_frequency": 15270 + }, + { + "word": "posteriormente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subsequently;posteriorly", + "romanization": "posteriormente", + "example_sentence_native": "I dati saranno analizzati posteriormente.", + "example_sentence_english": "The data will be analyzed subsequently.", + "pos": "adverb", + "word_frequency": 15274 + }, + { + "word": "pregiudicare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prejudice;to harm;to jeopardize", + "romanization": "pregiudicare", + "example_sentence_native": "Le sue azioni potrebbero pregiudicare la sua reputazione.", + "example_sentence_english": "His actions could jeopardize his reputation.", + "pos": "verb", + "word_frequency": 15276 + }, + { + "word": "previdenziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social security;provident (adj.)", + "romanization": "previdenziale", + "example_sentence_native": "Ha versato i contributi previdenziali.", + "example_sentence_english": "He paid his social security contributions.", + "pos": "adjective", + "word_frequency": 15278 + }, + { + "word": "proficuo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profitable;fruitful", + "romanization": "proficuo", + "example_sentence_native": "È stato un incontro proficuo.", + "example_sentence_english": "It was a fruitful meeting.", + "pos": "adjective", + "word_frequency": 15279 + }, + { + "word": "rapinatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robber;mugger", + "romanization": "rapinatore", + "example_sentence_native": "Il rapinatore è fuggito con il bottino.", + "example_sentence_english": "The robber escaped with the loot.", + "pos": "noun", + "word_frequency": 15281 + }, + { + "word": "razionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rationally", + "romanization": "razionalmente", + "example_sentence_native": "Dobbiamo agire razionalmente in questa situazione.", + "example_sentence_english": "We must act rationally in this situation.", + "pos": "adverb", + "word_frequency": 15283 + }, + { + "word": "reggenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regency;governance", + "romanization": "reggenza", + "example_sentence_native": "Durante la reggenza, il paese fu governato da un consiglio.", + "example_sentence_english": "During the regency, the country was governed by a council.", + "pos": "noun", + "word_frequency": 15285 + }, + { + "word": "retribuire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remunerate;to pay", + "romanization": "retribuire", + "example_sentence_native": "L'azienda deve retribuire i dipendenti in modo equo.", + "example_sentence_english": "The company must remunerate employees fairly.", + "pos": "verb", + "word_frequency": 15286 + }, + { + "word": "rettilineo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "straight;rectilinear", + "romanization": "rettilineo", + "example_sentence_native": "La strada è un lungo rettilineo.", + "example_sentence_english": "The road is a long straight stretch.", + "pos": "adjective", + "word_frequency": 15287 + }, + { + "word": "rielaborazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "re-elaboration;reprocessing;revision", + "romanization": "rielaborazione", + "example_sentence_native": "Il progetto richiede una completa rielaborazione.", + "example_sentence_english": "The project requires a complete re-elaboration.", + "pos": "noun", + "word_frequency": 15289 + }, + { + "word": "rigo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "line (of text);row", + "romanization": "rigo", + "example_sentence_native": "Scrivi la risposta sul rigo successivo.", + "example_sentence_english": "Write the answer on the next line.", + "pos": "noun", + "word_frequency": 15290 + }, + { + "word": "ripugnante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repugnant;disgusting", + "romanization": "ripugnante", + "example_sentence_native": "L'odore era assolutamente ripugnante.", + "example_sentence_english": "The smell was absolutely repugnant.", + "pos": "adjective", + "word_frequency": 15291 + }, + { + "word": "risollevare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lift up;to raise;to revive;to cheer up", + "romanization": "risollevare", + "example_sentence_native": "Dobbiamo risollevare l'economia del paese.", + "example_sentence_english": "We must revive the country's economy.", + "pos": "verb", + "word_frequency": 15293 + }, + { + "word": "rivalsa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "recourse;redress;recovery (of costs)", + "romanization": "rivalsa", + "example_sentence_native": "Ha chiesto la rivalsa per i danni subiti.", + "example_sentence_english": "He sought redress for the damages suffered.", + "pos": "noun", + "word_frequency": 15294 + }, + { + "word": "rovente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "red-hot;scorching;burning", + "romanization": "rovente", + "example_sentence_native": "Il ferro era rovente dopo essere stato nel fuoco.", + "example_sentence_english": "The iron was red-hot after being in the fire.", + "pos": "adjective", + "word_frequency": 15298 + }, + { + "word": "ruscello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stream;brook", + "romanization": "ruscello", + "example_sentence_native": "Un piccolo ruscello scorreva attraverso il bosco.", + "example_sentence_english": "A small stream flowed through the woods.", + "pos": "noun", + "word_frequency": 15300 + }, + { + "word": "sacerdotale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priestly;sacerdotal", + "romanization": "sacerdotale", + "example_sentence_native": "Indossava le vesti sacerdotali per la cerimonia.", + "example_sentence_english": "He wore the priestly vestments for the ceremony.", + "pos": "adjective", + "word_frequency": 15302 + }, + { + "word": "scaricabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "downloadable", + "romanization": "scaricabile", + "example_sentence_native": "Il documento è disponibile in formato scaricabile.", + "example_sentence_english": "The document is available in downloadable format.", + "pos": "adjective", + "word_frequency": 15306 + }, + { + "word": "scheggia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "splinter;shard;fragment", + "romanization": "scheggia", + "example_sentence_native": "Mi è entrata una scheggia nel dito.", + "example_sentence_english": "I got a splinter in my finger.", + "pos": "noun", + "word_frequency": 15307 + }, + { + "word": "segregazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "segregation", + "romanization": "segregazione", + "example_sentence_native": "La segregazione razziale è stata una triste realtà storica.", + "example_sentence_english": "Racial segregation was a sad historical reality.", + "pos": "noun", + "word_frequency": 15308 + }, + { + "word": "sentinella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentinel;guard", + "romanization": "sentinella", + "example_sentence_native": "La sentinella stava di guardia all'ingresso.", + "example_sentence_english": "The sentinel was on guard at the entrance.", + "pos": "noun", + "word_frequency": 15309 + }, + { + "word": "sgabello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stool", + "romanization": "sgabello", + "example_sentence_native": "Siediti sullo sgabello, per favore.", + "example_sentence_english": "Sit on the stool, please.", + "pos": "noun", + "word_frequency": 15311 + }, + { + "word": "sobrietà", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sobriety;moderation;restraint", + "romanization": "sobrietà", + "example_sentence_native": "Ha sempre mostrato grande sobrietà nel suo stile di vita.", + "example_sentence_english": "He always showed great sobriety in his lifestyle.", + "pos": "noun", + "word_frequency": 15313 + }, + { + "word": "sollecitazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "solicitation;request;stress (engineering)", + "romanization": "sollecitazione", + "example_sentence_native": "Abbiamo ricevuto molte sollecitazioni per il nuovo servizio.", + "example_sentence_english": "We received many solicitations for the new service.", + "pos": "noun", + "word_frequency": 15315 + }, + { + "word": "sopraffare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overwhelm;to overpower", + "romanization": "sopraffare", + "example_sentence_native": "La tristezza lo stava per sopraffare.", + "example_sentence_english": "Sadness was about to overwhelm him.", + "pos": "verb", + "word_frequency": 15316 + }, + { + "word": "sosia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "look-alike;doppelganger", + "romanization": "sosia", + "example_sentence_native": "È il sosia perfetto di un famoso attore.", + "example_sentence_english": "He is the perfect look-alike of a famous actor.", + "pos": "noun", + "word_frequency": 15317 + }, + { + "word": "spartizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partition;division;sharing", + "romanization": "spartizione", + "example_sentence_native": "La spartizione del territorio ha causato conflitti.", + "example_sentence_english": "The partition of the territory caused conflicts.", + "pos": "noun", + "word_frequency": 15318 + }, + { + "word": "spezzone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piece;fragment;clip (film)", + "romanization": "spezzone", + "example_sentence_native": "Ho visto uno spezzone del nuovo film.", + "example_sentence_english": "I saw a clip of the new movie.", + "pos": "noun", + "word_frequency": 15319 + }, + { + "word": "squisito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exquisite;delicious", + "romanization": "squisito", + "example_sentence_native": "Questo tiramisù è squisito!", + "example_sentence_english": "This tiramisu is exquisite!", + "pos": "adjective", + "word_frequency": 15320 + }, + { + "word": "sterilizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sterilization", + "romanization": "sterilizzazione", + "example_sentence_native": "La sterilizzazione degli strumenti è fondamentale in chirurgia.", + "example_sentence_english": "The sterilization of instruments is fundamental in surgery.", + "pos": "noun", + "word_frequency": 15321 + }, + { + "word": "stick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stick (e.g.;deodorant stick;USB stick)", + "romanization": "stick", + "example_sentence_native": "Ho comprato uno stick per le labbra.", + "example_sentence_english": "I bought a lip stick.", + "pos": "noun", + "word_frequency": 15322 + }, + { + "word": "tartufo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truffle", + "romanization": "tartufo", + "example_sentence_native": "Il tartufo bianco è molto pregiato.", + "example_sentence_english": "White truffle is very prized.", + "pos": "noun", + "word_frequency": 15323 + }, + { + "word": "tecnologicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "technologically", + "romanization": "tecnologicamente", + "example_sentence_native": "Il paese è tecnologicamente molto avanzato.", + "example_sentence_english": "The country is technologically very advanced.", + "pos": "adverb", + "word_frequency": 15325 + }, + { + "word": "tempestivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "promptly;in a timely manner", + "romanization": "tempestivamente", + "example_sentence_native": "Abbiamo agito tempestivamente per risolvere il problema.", + "example_sentence_english": "We acted promptly to solve the problem.", + "pos": "adverb", + "word_frequency": 15326 + }, + { + "word": "terapeuta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therapist", + "romanization": "terapeuta", + "example_sentence_native": "Ho un appuntamento con il mio terapeuta.", + "example_sentence_english": "I have an appointment with my therapist.", + "pos": "noun", + "word_frequency": 15327 + }, + { + "word": "terreo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "earthy;ashen;pallid", + "romanization": "terreo", + "example_sentence_native": "Il suo viso era terreo per la paura.", + "example_sentence_english": "His face was ashen with fear.", + "pos": "adjective", + "word_frequency": 15328 + }, + { + "word": "tormentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to torment;to plague", + "romanization": "tormentare", + "example_sentence_native": "I dubbi continuavano a tormentarlo.", + "example_sentence_english": "Doubts continued to torment him.", + "pos": "verb", + "word_frequency": 15331 + }, + { + "word": "ultim'ora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breaking news;last minute", + "romanization": "ultim'ora", + "example_sentence_native": "Abbiamo un'ultim'ora dal fronte.", + "example_sentence_english": "We have breaking news from the front.", + "pos": "noun", + "word_frequency": 15332 + }, + { + "word": "valzer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waltz", + "romanization": "valzer", + "example_sentence_native": "Hanno ballato un valzer elegante.", + "example_sentence_english": "They danced an elegant waltz.", + "pos": "noun", + "word_frequency": 15334 + }, + { + "word": "zafferano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saffron", + "romanization": "zafferano", + "example_sentence_native": "Il risotto alla milanese si fa con lo zafferano.", + "example_sentence_english": "Milanese risotto is made with saffron.", + "pos": "noun", + "word_frequency": 15336 + }, + { + "word": "abitativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "residential;housing-related", + "romanization": "abitativo", + "example_sentence_native": "Il settore abitativo è in crisi.", + "example_sentence_english": "The housing sector is in crisis.", + "pos": "adjective", + "word_frequency": 15339 + }, + { + "word": "acero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "maple", + "romanization": "acero", + "example_sentence_native": "L'acero è l'albero simbolo del Canada.", + "example_sentence_english": "Maple is the national tree of Canada.", + "pos": "noun", + "word_frequency": 15340 + }, + { + "word": "adito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "access;entry (often figurative: 'give rise to')", + "romanization": "adito", + "example_sentence_native": "Non dare adito a pettegolezzi.", + "example_sentence_english": "Don't give rise to gossip.", + "pos": "noun", + "word_frequency": 15342 + }, + { + "word": "agonistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitive;agonistic", + "romanization": "agonistico", + "example_sentence_native": "Ha uno spirito agonistico molto forte.", + "example_sentence_english": "He has a very strong competitive spirit.", + "pos": "adjective", + "word_frequency": 15344 + }, + { + "word": "albino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "albino", + "romanization": "albino", + "example_sentence_native": "L'animale aveva gli occhi rossi perché era albino.", + "example_sentence_english": "The animal had red eyes because it was albino.", + "pos": "adjective", + "word_frequency": 15347 + }, + { + "word": "allevare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise;to breed (animals);to bring up (children)", + "romanization": "allevare", + "example_sentence_native": "Allevano galline nel loro cortile.", + "example_sentence_english": "They raise chickens in their backyard.", + "pos": "verb", + "word_frequency": 15348 + }, + { + "word": "amichetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little friend;buddy", + "romanization": "amichetto", + "example_sentence_native": "Mio figlio gioca con il suo amichetto.", + "example_sentence_english": "My son plays with his little friend.", + "pos": "noun", + "word_frequency": 15350 + }, + { + "word": "arterioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arterial", + "romanization": "arterioso", + "example_sentence_native": "La pressione arteriosa è importante da monitorare.", + "example_sentence_english": "Arterial pressure is important to monitor.", + "pos": "adjective", + "word_frequency": 15353 + }, + { + "word": "assimilazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assimilation", + "romanization": "assimilazione", + "example_sentence_native": "Il processo di assimilazione culturale può essere lungo.", + "example_sentence_english": "The process of cultural assimilation can be long.", + "pos": "noun", + "word_frequency": 15354 + }, + { + "word": "baratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barter;exchange", + "romanization": "baratto", + "example_sentence_native": "Hanno fatto un baratto di servizi.", + "example_sentence_english": "They made an exchange of services.", + "pos": "noun", + "word_frequency": 15355 + }, + { + "word": "barella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretcher", + "romanization": "barella", + "example_sentence_native": "Il ferito è stato trasportato in barella.", + "example_sentence_english": "The injured person was transported on a stretcher.", + "pos": "noun", + "word_frequency": 15356 + }, + { + "word": "baule", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trunk;chest", + "romanization": "baule", + "example_sentence_native": "Ho messo le valigie nel baule della macchina.", + "example_sentence_english": "I put the suitcases in the car's trunk.", + "pos": "noun", + "word_frequency": 15358 + }, + { + "word": "bentornato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "welcome back", + "romanization": "bentornato", + "example_sentence_native": "Bentornato a casa!", + "example_sentence_english": "Welcome back home!", + "pos": "adjective", + "word_frequency": 15359 + }, + { + "word": "brama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "craving;strong desire", + "romanization": "brama", + "example_sentence_native": "Aveva una brama insaziabile di conoscenza.", + "example_sentence_english": "He had an insatiable craving for knowledge.", + "pos": "noun", + "word_frequency": 15366 + }, + { + "word": "camomilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chamomile", + "romanization": "camomilla", + "example_sentence_native": "Bevo una tazza di camomilla prima di dormire.", + "example_sentence_english": "I drink a cup of chamomile before sleeping.", + "pos": "noun", + "word_frequency": 15370 + }, + { + "word": "canoa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canoe", + "romanization": "canoa", + "example_sentence_native": "Andiamo in canoa sul lago.", + "example_sentence_english": "Let's go canoeing on the lake.", + "pos": "noun", + "word_frequency": 15371 + }, + { + "word": "caotico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaotic", + "romanization": "caotico", + "example_sentence_native": "La situazione era completamente caotica.", + "example_sentence_english": "The situation was completely chaotic.", + "pos": "adjective", + "word_frequency": 15372 + }, + { + "word": "certificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to certify", + "romanization": "certificare", + "example_sentence_native": "Dobbiamo certificare la qualità del prodotto.", + "example_sentence_english": "We need to certify the quality of the product.", + "pos": "verb", + "word_frequency": 15378 + }, + { + "word": "compianto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lamented;deceased", + "romanization": "compianto", + "example_sentence_native": "Ricordiamo il nostro compianto collega.", + "example_sentence_english": "We remember our lamented colleague.", + "pos": "adjective", + "word_frequency": 15381 + }, + { + "word": "comprensorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district;area;resort", + "romanization": "comprensorio", + "example_sentence_native": "Il comprensorio sciistico è molto grande.", + "example_sentence_english": "The ski resort is very large.", + "pos": "noun", + "word_frequency": 15382 + }, + { + "word": "concepimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conception", + "romanization": "concepimento", + "example_sentence_native": "Il concepimento è il primo stadio della gravidanza.", + "example_sentence_english": "Conception is the first stage of pregnancy.", + "pos": "noun", + "word_frequency": 15383 + }, + { + "word": "condivisibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shareable;agreeable", + "romanization": "condivisibile", + "example_sentence_native": "La tua opinione è condivisibile.", + "example_sentence_english": "Your opinion is shareable/agreeable.", + "pos": "adjective", + "word_frequency": 15384 + }, + { + "word": "connubio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "union;marriage (figurative)", + "romanization": "connubio", + "example_sentence_native": "È un connubio perfetto tra arte e tecnologia.", + "example_sentence_english": "It's a perfect union between art and technology.", + "pos": "noun", + "word_frequency": 15385 + }, + { + "word": "contrapporre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to oppose;to contrast", + "romanization": "contrapporre", + "example_sentence_native": "Non voglio contrapporre le nostre idee.", + "example_sentence_english": "I don't want to oppose our ideas.", + "pos": "verb", + "word_frequency": 15387 + }, + { + "word": "cornea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cornea", + "romanization": "cornea", + "example_sentence_native": "La cornea è la parte trasparente dell'occhio.", + "example_sentence_english": "The cornea is the transparent part of the eye.", + "pos": "noun", + "word_frequency": 15388 + }, + { + "word": "costrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compulsion;constraint", + "romanization": "costrizione", + "example_sentence_native": "Ha agito sotto costrizione.", + "example_sentence_english": "He acted under compulsion.", + "pos": "noun", + "word_frequency": 15389 + }, + { + "word": "decedere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pass away;to die", + "romanization": "decedere", + "example_sentence_native": "Il paziente è deceduto questa mattina.", + "example_sentence_english": "The patient passed away this morning.", + "pos": "verb", + "word_frequency": 15392 + }, + { + "word": "difettoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defective;faulty", + "romanization": "difettoso", + "example_sentence_native": "Il prodotto è risultato difettoso.", + "example_sentence_english": "The product turned out to be defective.", + "pos": "adjective", + "word_frequency": 15393 + }, + { + "word": "distruttivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destructive", + "romanization": "distruttivo", + "example_sentence_native": "Le sue parole erano molto distruttive.", + "example_sentence_english": "His words were very destructive.", + "pos": "adjective", + "word_frequency": 15394 + }, + { + "word": "divorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to devour;to gobble up", + "romanization": "divorare", + "example_sentence_native": "Il lupo divorò la nonna.", + "example_sentence_english": "The wolf devoured the grandmother.", + "pos": "verb", + "word_frequency": 15395 + }, + { + "word": "edificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to build;to edify", + "romanization": "edificare", + "example_sentence_native": "Vogliono edificare un nuovo quartiere.", + "example_sentence_english": "They want to build a new neighborhood.", + "pos": "verb", + "word_frequency": 15398 + }, + { + "word": "ergere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to erect;to raise", + "romanization": "ergere", + "example_sentence_native": "Hanno deciso di ergere un monumento in piazza.", + "example_sentence_english": "They decided to erect a monument in the square.", + "pos": "verb", + "word_frequency": 15400 + }, + { + "word": "faggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beech (tree)", + "romanization": "faggio", + "example_sentence_native": "Il faggio è un albero comune nelle foreste europee.", + "example_sentence_english": "The beech is a common tree in European forests.", + "pos": "noun", + "word_frequency": 15404 + }, + { + "word": "fantoccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "puppet;dummy;figurehead", + "romanization": "fantoccio", + "example_sentence_native": "Il politico era solo un fantoccio nelle mani di altri.", + "example_sentence_english": "The politician was just a puppet in the hands of others.", + "pos": "noun", + "word_frequency": 15406 + }, + { + "word": "finemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finely;delicately", + "romanization": "finemente", + "example_sentence_native": "Il formaggio era grattugiato finemente.", + "example_sentence_english": "The cheese was finely grated.", + "pos": "adverb", + "word_frequency": 15409 + }, + { + "word": "fluviale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluvial;riverine", + "romanization": "fluviale", + "example_sentence_native": "La navigazione fluviale è molto popolare in quella regione.", + "example_sentence_english": "Fluvial navigation is very popular in that region.", + "pos": "adjective", + "word_frequency": 15410 + }, + { + "word": "fobia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "phobia", + "romanization": "fobia", + "example_sentence_native": "Ha una fobia per i ragni.", + "example_sentence_english": "She has a phobia of spiders.", + "pos": "noun", + "word_frequency": 15411 + }, + { + "word": "fotocopia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photocopy", + "romanization": "fotocopia", + "example_sentence_native": "Ho bisogno di una fotocopia di questo documento.", + "example_sentence_english": "I need a photocopy of this document.", + "pos": "noun", + "word_frequency": 15412 + }, + { + "word": "frustrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frustrated", + "romanization": "frustrato", + "example_sentence_native": "Si sentiva frustrato per la mancanza di progressi.", + "example_sentence_english": "He felt frustrated by the lack of progress.", + "pos": "adjective", + "word_frequency": 15413 + }, + { + "word": "ghiaia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gravel", + "romanization": "ghiaia", + "example_sentence_native": "Il sentiero era coperto di ghiaia.", + "example_sentence_english": "The path was covered with gravel.", + "pos": "noun", + "word_frequency": 15418 + }, + { + "word": "gotta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gout (medical condition)", + "romanization": "gotta", + "example_sentence_native": "Soffre di gotta da molti anni.", + "example_sentence_english": "He has suffered from gout for many years.", + "pos": "noun", + "word_frequency": 15420 + }, + { + "word": "granchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crab", + "romanization": "granchio", + "example_sentence_native": "Abbiamo mangiato un delizioso granchio al ristorante.", + "example_sentence_english": "We ate a delicious crab at the restaurant.", + "pos": "noun", + "word_frequency": 15421 + }, + { + "word": "grilletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger (of a gun)", + "romanization": "grilletto", + "example_sentence_native": "Ha premuto il grilletto e lo sparo è partito.", + "example_sentence_english": "He pulled the trigger and the shot went off.", + "pos": "noun", + "word_frequency": 15422 + }, + { + "word": "gustoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tasty;delicious", + "romanization": "gustoso", + "example_sentence_native": "Questo piatto è davvero gustoso.", + "example_sentence_english": "This dish is really tasty.", + "pos": "adjective", + "word_frequency": 15425 + }, + { + "word": "impopolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unpopular", + "romanization": "impopolare", + "example_sentence_native": "La sua decisione è stata molto impopolare.", + "example_sentence_english": "His decision was very unpopular.", + "pos": "adjective", + "word_frequency": 15431 + }, + { + "word": "impropriamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improperly;inappropriately", + "romanization": "impropriamente", + "example_sentence_native": "Ha usato il termine impropriamente.", + "example_sentence_english": "He used the term improperly.", + "pos": "adverb", + "word_frequency": 15432 + }, + { + "word": "inaccessibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaccessible", + "romanization": "inaccessibile", + "example_sentence_native": "Il sentiero era inaccessibile a causa della neve.", + "example_sentence_english": "The path was inaccessible due to the snow.", + "pos": "adjective", + "word_frequency": 15433 + }, + { + "word": "incoronazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coronation", + "romanization": "incoronazione", + "example_sentence_native": "L'incoronazione del nuovo re è stata un evento storico.", + "example_sentence_english": "The coronation of the new king was a historic event.", + "pos": "noun", + "word_frequency": 15434 + }, + { + "word": "inflitto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inflicted", + "romanization": "inflitto", + "example_sentence_native": "Il danno inflitto è stato enorme.", + "example_sentence_english": "The inflicted damage was enormous.", + "pos": "adjective", + "word_frequency": 15435 + }, + { + "word": "infuriato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furious;enraged", + "romanization": "infuriato", + "example_sentence_native": "Era infuriato per il ritardo.", + "example_sentence_english": "He was furious about the delay.", + "pos": "adjective", + "word_frequency": 15436 + }, + { + "word": "iniziazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "initiation", + "romanization": "iniziazione", + "example_sentence_native": "La cerimonia di iniziazione è stata molto antica.", + "example_sentence_english": "The initiation ceremony was very ancient.", + "pos": "noun", + "word_frequency": 15437 + }, + { + "word": "intersezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intersection", + "romanization": "intersezione", + "example_sentence_native": "L'incidente è avvenuto all'intersezione.", + "example_sentence_english": "The accident happened at the intersection.", + "pos": "noun", + "word_frequency": 15439 + }, + { + "word": "intossicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoning;intoxication", + "romanization": "intossicazione", + "example_sentence_native": "Ha avuto un'intossicazione alimentare dopo aver mangiato quel pesce.", + "example_sentence_english": "He had food poisoning after eating that fish.", + "pos": "noun", + "word_frequency": 15440 + }, + { + "word": "intro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intro;introduction (informal)", + "romanization": "intro", + "example_sentence_native": "L'intro della canzone è molto accattivante.", + "example_sentence_english": "The intro of the song is very catchy.", + "pos": "noun", + "word_frequency": 15441 + }, + { + "word": "lateralmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laterally;sideways", + "romanization": "lateralmente", + "example_sentence_native": "Si è mosso lateralmente per evitare l'ostacolo.", + "example_sentence_english": "He moved sideways to avoid the obstacle.", + "pos": "adverb", + "word_frequency": 15445 + }, + { + "word": "laurearsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to graduate", + "romanization": "laurearsi", + "example_sentence_native": "Spero di laurearmi l'anno prossimo.", + "example_sentence_english": "I hope to graduate next year.", + "pos": "verb", + "word_frequency": 15446 + }, + { + "word": "limitarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to limit oneself;to confine oneself", + "romanization": "limitarsi", + "example_sentence_native": "Dovresti limitarti a un solo bicchiere di vino.", + "example_sentence_english": "You should limit yourself to one glass of wine.", + "pos": "verb", + "word_frequency": 15448 + }, + { + "word": "lubrificante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lubricating", + "romanization": "lubrificante", + "example_sentence_native": "È necessario usare un olio lubrificante per il motore.", + "example_sentence_english": "It is necessary to use a lubricating oil for the engine.", + "pos": "adjective", + "word_frequency": 15450 + }, + { + "word": "mandante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instigator;principal (in a crime)", + "romanization": "mandante", + "example_sentence_native": "La polizia sta cercando il mandante dell'omicidio.", + "example_sentence_english": "The police are looking for the instigator of the murder.", + "pos": "noun", + "word_frequency": 15453 + }, + { + "word": "manipolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handful;small group;manipule (historical)", + "romanization": "manipolo", + "example_sentence_native": "Solo un manipolo di persone ha partecipato alla protesta.", + "example_sentence_english": "Only a handful of people participated in the protest.", + "pos": "noun", + "word_frequency": 15454 + }, + { + "word": "marra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hoe;mattock", + "romanization": "marra", + "example_sentence_native": "Ha usato la marra per zappare l'orto.", + "example_sentence_english": "He used the hoe to dig the garden.", + "pos": "noun", + "word_frequency": 15458 + }, + { + "word": "massacrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "massacred;slaughtered;beaten up", + "romanization": "massacrato", + "example_sentence_native": "Il villaggio è stato massacrato durante la guerra.", + "example_sentence_english": "The village was massacred during the war.", + "pos": "adjective", + "word_frequency": 15460 + }, + { + "word": "miliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "milestone (adj.);milliary", + "romanization": "miliare", + "example_sentence_native": "Questo è un passo miliare per la nostra ricerca.", + "example_sentence_english": "This is a milestone step for our research.", + "pos": "adjective", + "word_frequency": 15461 + }, + { + "word": "muschio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moss", + "romanization": "muschio", + "example_sentence_native": "Le rocce erano coperte di muschio verde.", + "example_sentence_english": "The rocks were covered with green moss.", + "pos": "noun", + "word_frequency": 15463 + }, + { + "word": "nautica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nautical;boating;naval science", + "romanization": "nautica", + "example_sentence_native": "Ha una grande passione per la nautica.", + "example_sentence_english": "He has a great passion for boating.", + "pos": "noun", + "word_frequency": 15464 + }, + { + "word": "nonnina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "granny;grandma (affectionate)", + "romanization": "nonnina", + "example_sentence_native": "La mia nonnina mi prepara sempre i biscotti.", + "example_sentence_english": "My granny always bakes me cookies.", + "pos": "noun", + "word_frequency": 15467 + }, + { + "word": "normalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "normalization", + "romanization": "normalizzazione", + "example_sentence_native": "Il processo di normalizzazione richiederà tempo.", + "example_sentence_english": "The normalization process will take time.", + "pos": "noun", + "word_frequency": 15468 + }, + { + "word": "nutrito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "well-fed;substantial;numerous", + "romanization": "nutrito", + "example_sentence_native": "C'era un nutrito gruppo di manifestanti.", + "example_sentence_english": "There was a substantial group of protesters.", + "pos": "adjective", + "word_frequency": 15469 + }, + { + "word": "obiettare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to object;to oppose", + "romanization": "obiettare", + "example_sentence_native": "Nessuno ha obiettato alla sua proposta.", + "example_sentence_english": "No one objected to his proposal.", + "pos": "verb", + "word_frequency": 15470 + }, + { + "word": "operatività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "operability;operational capability", + "romanization": "operatività", + "example_sentence_native": "Dobbiamo migliorare l'operatività del sistema.", + "example_sentence_english": "We need to improve the operability of the system.", + "pos": "noun", + "word_frequency": 15471 + }, + { + "word": "ostare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hinder;to impede;to object", + "romanization": "ostare", + "example_sentence_native": "Nulla osta alla realizzazione del progetto.", + "example_sentence_english": "Nothing hinders the realization of the project.", + "pos": "verb", + "word_frequency": 15472 + }, + { + "word": "ottimizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "optimization", + "romanization": "ottimizzazione", + "example_sentence_native": "L'ottimizzazione dei processi è fondamentale per l'efficienza.", + "example_sentence_english": "Process optimization is fundamental for efficiency.", + "pos": "noun", + "word_frequency": 15473 + }, + { + "word": "pallanuoto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "water polo", + "romanization": "pallanuoto", + "example_sentence_native": "La pallanuoto è uno sport acquatico molto impegnativo.", + "example_sentence_english": "Water polo is a very demanding water sport.", + "pos": "noun", + "word_frequency": 15474 + }, + { + "word": "pensierino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little thought;small gift;souvenir", + "romanization": "pensierino", + "example_sentence_native": "Ti ho portato un piccolo pensierino.", + "example_sentence_english": "I brought you a little souvenir.", + "pos": "noun", + "word_frequency": 15477 + }, + { + "word": "perbene", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respectable;decent;upright", + "romanization": "perbene", + "example_sentence_native": "È una persona molto perbene e onesta.", + "example_sentence_english": "He is a very respectable and honest person.", + "pos": "adjective", + "word_frequency": 15478 + }, + { + "word": "persistenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persistence;perseverance", + "romanization": "persistenza", + "example_sentence_native": "La sua persistenza lo ha portato al successo.", + "example_sentence_english": "His persistence led him to success.", + "pos": "noun", + "word_frequency": 15479 + }, + { + "word": "pestaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beating;assault", + "romanization": "pestaggio", + "example_sentence_native": "Il pestaggio è avvenuto in pieno giorno.", + "example_sentence_english": "The beating occurred in broad daylight.", + "pos": "noun", + "word_frequency": 15480 + }, + { + "word": "piastrella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tile", + "romanization": "piastrella", + "example_sentence_native": "Abbiamo scelto delle nuove piastrelle per il bagno.", + "example_sentence_english": "We chose new tiles for the bathroom.", + "pos": "noun", + "word_frequency": 15481 + }, + { + "word": "pineta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pine forest", + "romanization": "pineta", + "example_sentence_native": "Abbiamo fatto una passeggiata nella pineta vicino al mare.", + "example_sentence_english": "We took a walk in the pine forest near the sea.", + "pos": "noun", + "word_frequency": 15483 + }, + { + "word": "polpo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "octopus", + "romanization": "polpo", + "example_sentence_native": "Il polpo alla griglia è una specialità locale.", + "example_sentence_english": "Grilled octopus is a local specialty.", + "pos": "noun", + "word_frequency": 15484 + }, + { + "word": "popular", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "popular", + "romanization": "popular", + "example_sentence_native": "Quella canzone è diventata molto popular tra i giovani.", + "example_sentence_english": "That song has become very popular among young people.", + "pos": "adjective", + "word_frequency": 15485 + }, + { + "word": "portaerei", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aircraft carrier", + "romanization": "portaerei", + "example_sentence_native": "La portaerei è salpata per una missione.", + "example_sentence_english": "The aircraft carrier set sail for a mission.", + "pos": "noun", + "word_frequency": 15486 + }, + { + "word": "procreazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "procreation", + "romanization": "procreazione", + "example_sentence_native": "La procreazione è un processo biologico fondamentale.", + "example_sentence_english": "Procreation is a fundamental biological process.", + "pos": "noun", + "word_frequency": 15487 + }, + { + "word": "proibire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forbid;to prohibit", + "romanization": "proibire", + "example_sentence_native": "È proibito fumare in questo edificio.", + "example_sentence_english": "Smoking is forbidden in this building.", + "pos": "verb", + "word_frequency": 15488 + }, + { + "word": "quindicenne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fifteen-year-old", + "romanization": "quindicenne", + "example_sentence_native": "Mia sorella è una quindicenne molto vivace.", + "example_sentence_english": "My sister is a very lively fifteen-year-old.", + "pos": "adjective", + "word_frequency": 15490 + }, + { + "word": "ragionato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasoned;thoughtful", + "romanization": "ragionato", + "example_sentence_native": "Ha preso una decisione ben ragionata.", + "example_sentence_english": "He made a well-reasoned decision.", + "pos": "adjective", + "word_frequency": 15491 + }, + { + "word": "referenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reference", + "romanization": "referenza", + "example_sentence_native": "Ho bisogno di una referenza per il nuovo lavoro.", + "example_sentence_english": "I need a reference for the new job.", + "pos": "noun", + "word_frequency": 15492 + }, + { + "word": "retrocessione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relegation;demotion", + "romanization": "retrocessione", + "example_sentence_native": "La squadra ha subito la retrocessione in serie inferiore.", + "example_sentence_english": "The team suffered relegation to a lower league.", + "pos": "noun", + "word_frequency": 15494 + }, + { + "word": "rettile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reptile", + "romanization": "rettile", + "example_sentence_native": "I serpenti sono rettili.", + "example_sentence_english": "Snakes are reptiles.", + "pos": "noun", + "word_frequency": 15495 + }, + { + "word": "ripercorrere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retrace;to go over again", + "romanization": "ripercorrere", + "example_sentence_native": "Dobbiamo ripercorrere i nostri passi per trovare la strada.", + "example_sentence_english": "We need to retrace our steps to find the way.", + "pos": "verb", + "word_frequency": 15498 + }, + { + "word": "riporre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put away;to store", + "romanization": "riporre", + "example_sentence_native": "Per favore, riponi i libri sullo scaffale.", + "example_sentence_english": "Please put the books back on the shelf.", + "pos": "verb", + "word_frequency": 15499 + }, + { + "word": "riscattare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redeem;to rescue", + "romanization": "riscattare", + "example_sentence_native": "Ha riscattato il suo onore con un atto di coraggio.", + "example_sentence_english": "He redeemed his honor with an act of courage.", + "pos": "verb", + "word_frequency": 15500 + }, + { + "word": "riscontrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "found;observed;detected", + "romanization": "riscontrato", + "example_sentence_native": "Non è stato riscontrato alcun problema.", + "example_sentence_english": "No problem was found.", + "pos": "adjective", + "word_frequency": 15501 + }, + { + "word": "riscoprire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rediscover", + "romanization": "riscoprire", + "example_sentence_native": "Voglio riscoprire le mie vecchie passioni.", + "example_sentence_english": "I want to rediscover my old passions.", + "pos": "verb", + "word_frequency": 15502 + }, + { + "word": "rivalutare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-evaluate;to revalue", + "romanization": "rivalutare", + "example_sentence_native": "Dobbiamo rivalutare la nostra strategia.", + "example_sentence_english": "We need to re-evaluate our strategy.", + "pos": "verb", + "word_frequency": 15503 + }, + { + "word": "roulette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roulette", + "romanization": "roulette", + "example_sentence_native": "Ha tentato la fortuna alla roulette.", + "example_sentence_english": "He tried his luck at roulette.", + "pos": "noun", + "word_frequency": 15504 + }, + { + "word": "scartare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to discard;to unwrap", + "romanization": "scartare", + "example_sentence_native": "Dobbiamo scartare i regali.", + "example_sentence_english": "We need to unwrap the presents.", + "pos": "verb", + "word_frequency": 15509 + }, + { + "word": "scrigno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "casket;treasure chest", + "romanization": "scrigno", + "example_sentence_native": "Ha trovato un vecchio scrigno pieno di monete.", + "example_sentence_english": "He found an old casket full of coins.", + "pos": "noun", + "word_frequency": 15510 + }, + { + "word": "siringa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "syringe", + "romanization": "siringa", + "example_sentence_native": "L'infermiere ha preparato la siringa per l'iniezione.", + "example_sentence_english": "The nurse prepared the syringe for the injection.", + "pos": "noun", + "word_frequency": 15511 + }, + { + "word": "socievole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sociable;friendly", + "romanization": "socievole", + "example_sentence_native": "È una persona molto socievole e ama stare in compagnia.", + "example_sentence_english": "She is a very sociable person and loves being with others.", + "pos": "adjective", + "word_frequency": 15513 + }, + { + "word": "sopravvalutato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overrated;overvalued", + "romanization": "sopravvalutato", + "example_sentence_native": "Credo che quel film sia un po' sopravvalutato.", + "example_sentence_english": "I think that movie is a bit overrated.", + "pos": "adjective", + "word_frequency": 15514 + }, + { + "word": "sostitutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute;replacement (adj)", + "romanization": "sostitutivo", + "example_sentence_native": "Hanno usato un ingrediente sostitutivo.", + "example_sentence_english": "They used a substitute ingredient.", + "pos": "adjective", + "word_frequency": 15515 + }, + { + "word": "spalto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rampart;embankment", + "romanization": "spalto", + "example_sentence_native": "Le mura della città avevano alti spalti.", + "example_sentence_english": "The city walls had high ramparts.", + "pos": "noun", + "word_frequency": 15516 + }, + { + "word": "spaziare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to range;to span", + "romanization": "spaziare", + "example_sentence_native": "La sua conoscenza spazia in molti campi.", + "example_sentence_english": "His knowledge spans many fields.", + "pos": "verb", + "word_frequency": 15517 + }, + { + "word": "spingersi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to push oneself;to venture", + "romanization": "spingersi", + "example_sentence_native": "Non dovresti spingerti troppo oltre i tuoi limiti.", + "example_sentence_english": "You shouldn't push yourself too far beyond your limits.", + "pos": "verb", + "word_frequency": 15518 + }, + { + "word": "spumante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sparkling", + "romanization": "spumante", + "example_sentence_native": "Abbiamo bevuto un vino spumante per festeggiare.", + "example_sentence_english": "We drank a sparkling wine to celebrate.", + "pos": "adjective", + "word_frequency": 15520 + }, + { + "word": "stallone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stallion", + "romanization": "stallone", + "example_sentence_native": "Il contadino ha un bellissimo stallone nero.", + "example_sentence_english": "The farmer has a beautiful black stallion.", + "pos": "noun", + "word_frequency": 15521 + }, + { + "word": "stipulato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stipulated;agreed upon", + "romanization": "stipulato", + "example_sentence_native": "Il contratto stipulato è valido per cinque anni.", + "example_sentence_english": "The stipulated contract is valid for five years.", + "pos": "adjective", + "word_frequency": 15523 + }, + { + "word": "stiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cargo hold;ship's hold", + "romanization": "stiva", + "example_sentence_native": "Le merci sono state caricate nella stiva della nave.", + "example_sentence_english": "The goods were loaded into the ship's cargo hold.", + "pos": "noun", + "word_frequency": 15524 + }, + { + "word": "telematica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "telematics", + "romanization": "telematica", + "example_sentence_native": "La telematica è fondamentale per i sistemi di comunicazione moderni.", + "example_sentence_english": "Telematics is fundamental for modern communication systems.", + "pos": "noun", + "word_frequency": 15528 + }, + { + "word": "tendine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tendon", + "romanization": "tendine", + "example_sentence_native": "Si è strappato un tendine durante la partita.", + "example_sentence_english": "He tore a tendon during the game.", + "pos": "noun", + "word_frequency": 15529 + }, + { + "word": "tiratura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "print run;circulation", + "romanization": "tiratura", + "example_sentence_native": "La tiratura del nuovo libro è di diecimila copie.", + "example_sentence_english": "The print run of the new book is ten thousand copies.", + "pos": "noun", + "word_frequency": 15530 + }, + { + "word": "totem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "totem", + "romanization": "totem", + "example_sentence_native": "Il totem rappresenta lo spirito ancestrale della tribù.", + "example_sentence_english": "The totem represents the ancestral spirit of the tribe.", + "pos": "noun", + "word_frequency": 15531 + }, + { + "word": "traino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "towing;trailer hitch", + "romanization": "traino", + "example_sentence_native": "La macchina ha un gancio di traino per il rimorchio.", + "example_sentence_english": "The car has a trailer hitch for the trailer.", + "pos": "noun", + "word_frequency": 15532 + }, + { + "word": "turbare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disturb;to upset", + "romanization": "turbare", + "example_sentence_native": "Non voglio turbare la tua tranquillità.", + "example_sentence_english": "I don't want to disturb your peace.", + "pos": "verb", + "word_frequency": 15536 + }, + { + "word": "unicorno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unicorn", + "romanization": "unicorno", + "example_sentence_native": "I bambini amano le storie sugli unicorni.", + "example_sentence_english": "Children love stories about unicorns.", + "pos": "noun", + "word_frequency": 15538 + }, + { + "word": "vantarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to boast;to brag", + "romanization": "vantarsi", + "example_sentence_native": "Non è bello vantarsi dei propri successi.", + "example_sentence_english": "It's not nice to boast about one's successes.", + "pos": "verb", + "word_frequency": 15540 + }, + { + "word": "ventunesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twenty-first", + "romanization": "ventunesimo", + "example_sentence_native": "Oggi è il ventunesimo giorno del mese.", + "example_sentence_english": "Today is the twenty-first day of the month.", + "pos": "adjective", + "word_frequency": 15541 + }, + { + "word": "vocabolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "word;term", + "romanization": "vocabolo", + "example_sentence_native": "Questo vocabolo è di origine latina.", + "example_sentence_english": "This word is of Latin origin.", + "pos": "noun", + "word_frequency": 15542 + }, + { + "word": "wc", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "toilet;water closet", + "romanization": "WC", + "example_sentence_native": "Dov'è il WC più vicino?", + "example_sentence_english": "Where is the nearest toilet?", + "pos": "noun", + "word_frequency": 15543 + }, + { + "word": "abilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skillfully;ably", + "romanization": "abilmente", + "example_sentence_native": "Ha risolto il problema abilmente.", + "example_sentence_english": "He skillfully solved the problem.", + "pos": "adverb", + "word_frequency": 15547 + }, + { + "word": "abominio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abomination", + "romanization": "abominio", + "example_sentence_native": "Quell'atto è considerato un abominio.", + "example_sentence_english": "That act is considered an abomination.", + "pos": "noun", + "word_frequency": 15548 + }, + { + "word": "accendino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lighter", + "romanization": "accendino", + "example_sentence_native": "Hai un accendino per favore?", + "example_sentence_english": "Do you have a lighter please?", + "pos": "noun", + "word_frequency": 15549 + }, + { + "word": "accordarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to agree;to come to an agreement", + "romanization": "accordarsi", + "example_sentence_native": "Dobbiamo accordarci sui termini del contratto.", + "example_sentence_english": "We need to agree on the terms of the contract.", + "pos": "verb", + "word_frequency": 15550 + }, + { + "word": "affettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affective;emotional", + "romanization": "affettivo", + "example_sentence_native": "Ha un forte legame affettivo con la sua famiglia.", + "example_sentence_english": "He has a strong emotional bond with his family.", + "pos": "adjective", + "word_frequency": 15551 + }, + { + "word": "affiancato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flanked;supported", + "romanization": "affiancato", + "example_sentence_native": "Il progetto è stato affiancato da esperti del settore.", + "example_sentence_english": "The project was supported by industry experts.", + "pos": "adjective", + "word_frequency": 15552 + }, + { + "word": "affianco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alongside;next to", + "romanization": "affianco", + "example_sentence_native": "Si è seduto affianco a me.", + "example_sentence_english": "He sat next to me.", + "pos": "adverb", + "word_frequency": 15553 + }, + { + "word": "affittato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rented;leased", + "romanization": "affittato", + "example_sentence_native": "L'appartamento che abbiamo affittato è molto spazioso.", + "example_sentence_english": "The apartment we rented is very spacious.", + "pos": "adjective", + "word_frequency": 15554 + }, + { + "word": "alcolismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholism", + "romanization": "alcolismo", + "example_sentence_native": "L'alcolismo è una grave dipendenza.", + "example_sentence_english": "Alcoholism is a serious addiction.", + "pos": "noun", + "word_frequency": 15556 + }, + { + "word": "alterno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alternate", + "romanization": "alterno", + "example_sentence_native": "Il lavoro si svolge a giorni alterni.", + "example_sentence_english": "The work takes place on alternate days.", + "pos": "adjective", + "word_frequency": 15560 + }, + { + "word": "ambulatorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clinic;outpatient department", + "romanization": "ambulatorio", + "example_sentence_native": "Devo andare all'ambulatorio per una visita di controllo.", + "example_sentence_english": "I need to go to the clinic for a check-up.", + "pos": "noun", + "word_frequency": 15562 + }, + { + "word": "amnesia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amnesia", + "romanization": "amnesia", + "example_sentence_native": "Dopo l'incidente, ha sofferto di amnesia temporanea.", + "example_sentence_english": "After the accident, he suffered from temporary amnesia.", + "pos": "noun", + "word_frequency": 15564 + }, + { + "word": "attestato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "certificate;attestation", + "romanization": "attestato", + "example_sentence_native": "Ha ricevuto un attestato di partecipazione al corso.", + "example_sentence_english": "He received a certificate of participation in the course.", + "pos": "noun", + "word_frequency": 15565 + }, + { + "word": "attrattivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attractive", + "romanization": "attrattivo", + "example_sentence_native": "Il nuovo design è molto attrattivo per i clienti.", + "example_sentence_english": "The new design is very attractive to customers.", + "pos": "adjective", + "word_frequency": 15566 + }, + { + "word": "autorevolezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authority;credibility", + "romanization": "autorevolezza", + "example_sentence_native": "La sua autorevolezza nel campo è indiscussa.", + "example_sentence_english": "His authority in the field is undisputed.", + "pos": "noun", + "word_frequency": 15567 + }, + { + "word": "bevuta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drink", + "romanization": "bevuta", + "example_sentence_native": "Dopo il lavoro, andiamo a fare una bevuta.", + "example_sentence_english": "After work, let's go for a drink.", + "pos": "noun", + "word_frequency": 15572 + }, + { + "word": "cedimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collapse;yielding;failure", + "romanization": "cedimento", + "example_sentence_native": "Il cedimento strutturale ha causato l'evacuazione dell'edificio.", + "example_sentence_english": "The structural collapse caused the evacuation of the building.", + "pos": "noun", + "word_frequency": 15576 + }, + { + "word": "ciurma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crew;gang", + "romanization": "ciurma", + "example_sentence_native": "La ciurma della nave era pronta a salpare.", + "example_sentence_english": "The ship's crew was ready to set sail.", + "pos": "noun", + "word_frequency": 15578 + }, + { + "word": "codifica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coding;encoding", + "romanization": "codifica", + "example_sentence_native": "La codifica dei dati è fondamentale per la sicurezza.", + "example_sentence_english": "Data encoding is fundamental for security.", + "pos": "noun", + "word_frequency": 15579 + }, + { + "word": "compendio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compendium;summary", + "romanization": "compendio", + "example_sentence_native": "Questo libro è un compendio di storia romana.", + "example_sentence_english": "This book is a compendium of Roman history.", + "pos": "noun", + "word_frequency": 15581 + }, + { + "word": "complicanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complication", + "romanization": "complicanza", + "example_sentence_native": "Ci sono state alcune complicanze durante l'operazione.", + "example_sentence_english": "There were some complications during the operation.", + "pos": "noun", + "word_frequency": 15582 + }, + { + "word": "confessionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "confessional", + "romanization": "confessionale", + "example_sentence_native": "Ha scritto un testo di natura confessionale.", + "example_sentence_english": "He wrote a text of a confessional nature.", + "pos": "adjective", + "word_frequency": 15583 + }, + { + "word": "confondersi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get confused;to blend in", + "romanization": "confondersi", + "example_sentence_native": "Mi confondo facilmente con i nomi.", + "example_sentence_english": "I get confused easily with names.", + "pos": "verb", + "word_frequency": 15584 + }, + { + "word": "connotato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "connotation;characteristic", + "romanization": "connotato", + "example_sentence_native": "La parola ha un connotato negativo in quel contesto.", + "example_sentence_english": "The word has a negative connotation in that context.", + "pos": "noun", + "word_frequency": 15585 + }, + { + "word": "consumismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumerism", + "romanization": "consumismo", + "example_sentence_native": "Il consumismo eccessivo danneggia l'ambiente.", + "example_sentence_english": "Excessive consumerism harms the environment.", + "pos": "noun", + "word_frequency": 15586 + }, + { + "word": "contemplare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contemplate;to consider", + "romanization": "contemplare", + "example_sentence_native": "Mi piace contemplare le stelle di notte.", + "example_sentence_english": "I like to contemplate the stars at night.", + "pos": "verb", + "word_frequency": 15587 + }, + { + "word": "convalida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validation;confirmation", + "romanization": "convalida", + "example_sentence_native": "La convalida del biglietto è obbligatoria prima di salire.", + "example_sentence_english": "Ticket validation is mandatory before boarding.", + "pos": "noun", + "word_frequency": 15588 + }, + { + "word": "crociato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crusader", + "romanization": "crociato", + "example_sentence_native": "I crociati partirono per la Terra Santa.", + "example_sentence_english": "The crusaders departed for the Holy Land.", + "pos": "noun", + "word_frequency": 15593 + }, + { + "word": "cronometro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stopwatch;chronometer", + "romanization": "cronometro", + "example_sentence_native": "Ho usato il cronometro per misurare il tempo.", + "example_sentence_english": "I used the stopwatch to measure the time.", + "pos": "noun", + "word_frequency": 15594 + }, + { + "word": "deduzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduction", + "romanization": "deduzione", + "example_sentence_native": "La sua deduzione era corretta.", + "example_sentence_english": "His deduction was correct.", + "pos": "noun", + "word_frequency": 15596 + }, + { + "word": "demagogia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demagoguery", + "romanization": "demagogia", + "example_sentence_native": "La sua retorica era piena di demagogia.", + "example_sentence_english": "His rhetoric was full of demagoguery.", + "pos": "noun", + "word_frequency": 15605 + }, + { + "word": "demografia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demography", + "romanization": "demografia", + "example_sentence_native": "Lo studio della demografia è fondamentale per la pianificazione sociale.", + "example_sentence_english": "The study of demography is fundamental for social planning.", + "pos": "noun", + "word_frequency": 15606 + }, + { + "word": "dentale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dental", + "romanization": "dentale", + "example_sentence_native": "Ha avuto un problema dentale.", + "example_sentence_english": "He had a dental problem.", + "pos": "adjective", + "word_frequency": 15607 + }, + { + "word": "derubato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robbed", + "romanization": "derubato", + "example_sentence_native": "Si sentiva derubato della sua dignità.", + "example_sentence_english": "He felt robbed of his dignity.", + "pos": "adjective", + "word_frequency": 15608 + }, + { + "word": "desiderabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desirable", + "romanization": "desiderabile", + "example_sentence_native": "Una vita tranquilla è molto desiderabile.", + "example_sentence_english": "A quiet life is very desirable.", + "pos": "adjective", + "word_frequency": 15609 + }, + { + "word": "diciannovesimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nineteenth", + "romanization": "diciannovesimo", + "example_sentence_native": "È arrivato diciannovesimo nella gara.", + "example_sentence_english": "He arrived nineteenth in the race.", + "pos": "adjective", + "word_frequency": 15610 + }, + { + "word": "dinnanzi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in front of", + "romanization": "dinnanzi", + "example_sentence_native": "Si trovò dinnanzi a una scelta difficile.", + "example_sentence_english": "He found himself before a difficult choice.", + "pos": "adverb", + "word_frequency": 15611 + }, + { + "word": "disagiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disadvantaged", + "romanization": "disagiato", + "example_sentence_native": "Vivono in condizioni disagiate.", + "example_sentence_english": "They live in disadvantaged conditions.", + "pos": "adjective", + "word_frequency": 15612 + }, + { + "word": "discordia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discord", + "romanization": "discordia", + "example_sentence_native": "La discordia tra i membri ha portato alla rottura.", + "example_sentence_english": "The discord among the members led to the breakup.", + "pos": "noun", + "word_frequency": 15613 + }, + { + "word": "disteso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "relaxed", + "romanization": "disteso", + "example_sentence_native": "Dopo il lavoro, si sentiva disteso.", + "example_sentence_english": "After work, he felt relaxed.", + "pos": "adjective", + "word_frequency": 15614 + }, + { + "word": "divergente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divergent", + "romanization": "divergente", + "example_sentence_native": "Le loro opinioni erano completamente divergenti.", + "example_sentence_english": "Their opinions were completely divergent.", + "pos": "adjective", + "word_frequency": 15615 + }, + { + "word": "donato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "donated", + "romanization": "donato", + "example_sentence_native": "I fondi donati aiuteranno la comunità.", + "example_sentence_english": "The donated funds will help the community.", + "pos": "adjective", + "word_frequency": 15618 + }, + { + "word": "ebollizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boiling", + "romanization": "ebollizione", + "example_sentence_native": "L'acqua ha raggiunto il punto di ebollizione.", + "example_sentence_english": "The water reached the boiling point.", + "pos": "noun", + "word_frequency": 15620 + }, + { + "word": "eloquente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eloquent", + "romanization": "eloquente", + "example_sentence_native": "Il suo discorso era molto eloquente.", + "example_sentence_english": "His speech was very eloquent.", + "pos": "adjective", + "word_frequency": 15623 + }, + { + "word": "embrione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embryo", + "romanization": "embrione", + "example_sentence_native": "Lo sviluppo dell'embrione è un processo complesso.", + "example_sentence_english": "The development of the embryo is a complex process.", + "pos": "noun", + "word_frequency": 15624 + }, + { + "word": "equatoriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equatorial", + "romanization": "equatoriale", + "example_sentence_native": "Il clima equatoriale è caldo e umido.", + "example_sentence_english": "The equatorial climate is hot and humid.", + "pos": "adjective", + "word_frequency": 15626 + }, + { + "word": "eremita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hermit", + "romanization": "eremita", + "example_sentence_native": "L'eremita viveva isolato nella foresta.", + "example_sentence_english": "The hermit lived isolated in the forest.", + "pos": "noun", + "word_frequency": 15627 + }, + { + "word": "esitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hesitant", + "romanization": "esitato", + "example_sentence_native": "La sua risposta fu esitata.", + "example_sentence_english": "His answer was hesitant.", + "pos": "adjective", + "word_frequency": 15629 + }, + { + "word": "favoreggiamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aiding and abetting", + "romanization": "favoreggiamento", + "example_sentence_native": "È stato accusato di favoreggiamento.", + "example_sentence_english": "He was accused of aiding and abetting.", + "pos": "noun", + "word_frequency": 15631 + }, + { + "word": "fuoristrada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "off-road vehicle", + "romanization": "fuoristrada", + "example_sentence_native": "Abbiamo usato un fuoristrada per raggiungere il sentiero.", + "example_sentence_english": "We used an off-road vehicle to reach the trail.", + "pos": "noun", + "word_frequency": 15633 + }, + { + "word": "gamberetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shrimp", + "romanization": "gamberetto", + "example_sentence_native": "Mi piacciono gli spaghetti con i gamberetti.", + "example_sentence_english": "I like spaghetti with shrimp.", + "pos": "noun", + "word_frequency": 15634 + }, + { + "word": "generalizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "generalization", + "romanization": "generalizzazione", + "example_sentence_native": "Evita le generalizzazioni quando parli di culture diverse.", + "example_sentence_english": "Avoid generalizations when talking about different cultures.", + "pos": "noun", + "word_frequency": 15635 + }, + { + "word": "gestazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gestation", + "romanization": "gestazione", + "example_sentence_native": "Il periodo di gestazione varia tra le specie.", + "example_sentence_english": "The gestation period varies among species.", + "pos": "noun", + "word_frequency": 15636 + }, + { + "word": "gettone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "token", + "romanization": "gettone", + "example_sentence_native": "Ho inserito un gettone nel carrello della spesa.", + "example_sentence_english": "I inserted a token into the shopping cart.", + "pos": "noun", + "word_frequency": 15637 + }, + { + "word": "giovanissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very young", + "romanization": "giovanissimo", + "example_sentence_native": "Era giovanissimo quando ha iniziato a suonare il pianoforte.", + "example_sentence_english": "He was very young when he started playing the piano.", + "pos": "adjective", + "word_frequency": 15639 + }, + { + "word": "grassetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bold (text)", + "romanization": "grassetto", + "example_sentence_native": "Puoi mettere questa parola in grassetto?", + "example_sentence_english": "Can you put this word in bold?", + "pos": "noun", + "word_frequency": 15642 + }, + { + "word": "hackerato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hacked", + "romanization": "hackerato", + "example_sentence_native": "Il suo account è stato hackerato.", + "example_sentence_english": "His account was hacked.", + "pos": "adjective", + "word_frequency": 15645 + }, + { + "word": "identificabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identifiable", + "romanization": "identificabile", + "example_sentence_native": "La causa del problema non è ancora identificabile.", + "example_sentence_english": "The cause of the problem is not yet identifiable.", + "pos": "adjective", + "word_frequency": 15648 + }, + { + "word": "ignaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unaware", + "romanization": "ignaro", + "example_sentence_native": "Era ignaro del pericolo imminente.", + "example_sentence_english": "He was unaware of the imminent danger.", + "pos": "adjective", + "word_frequency": 15649 + }, + { + "word": "impadronirsi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to seize;to take possession of", + "romanization": "impadronirsi", + "example_sentence_native": "I ribelli cercarono di impadronirsi della città.", + "example_sentence_english": "The rebels tried to seize the city.", + "pos": "verb", + "word_frequency": 15650 + }, + { + "word": "imponibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taxable", + "romanization": "imponibile", + "example_sentence_native": "Il reddito imponibile è la base per il calcolo delle tasse.", + "example_sentence_english": "Taxable income is the basis for calculating taxes.", + "pos": "adjective", + "word_frequency": 15651 + }, + { + "word": "impunemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "with impunity", + "romanization": "impunemente", + "example_sentence_native": "Non puoi agire impunemente.", + "example_sentence_english": "You cannot act with impunity.", + "pos": "adverb", + "word_frequency": 15652 + }, + { + "word": "inchino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bow (gesture)", + "romanization": "inchino", + "example_sentence_native": "L'attore ha fatto un inchino al pubblico.", + "example_sentence_english": "The actor took a bow to the audience.", + "pos": "noun", + "word_frequency": 15653 + }, + { + "word": "incisivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incisive;sharp", + "romanization": "incisivo", + "example_sentence_native": "Ha fatto un'analisi molto incisiva della situazione.", + "example_sentence_english": "He made a very incisive analysis of the situation.", + "pos": "adjective", + "word_frequency": 15654 + }, + { + "word": "incognita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unknown (quantity;factor)", + "romanization": "incognita", + "example_sentence_native": "Il futuro è sempre un'incognita.", + "example_sentence_english": "The future is always an unknown.", + "pos": "noun", + "word_frequency": 15655 + }, + { + "word": "incollato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glued", + "romanization": "incollato", + "example_sentence_native": "Le pagine erano incollate insieme.", + "example_sentence_english": "The pages were glued together.", + "pos": "adjective", + "word_frequency": 15656 + }, + { + "word": "incontrollato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrolled", + "romanization": "incontrollato", + "example_sentence_native": "La diffusione del virus è diventata incontrollata.", + "example_sentence_english": "The spread of the virus has become uncontrolled.", + "pos": "adjective", + "word_frequency": 15657 + }, + { + "word": "indiscusso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undisputed", + "romanization": "indiscusso", + "example_sentence_native": "È il leader indiscusso del partito.", + "example_sentence_english": "He is the undisputed leader of the party.", + "pos": "adjective", + "word_frequency": 15658 + }, + { + "word": "industrial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "industrial", + "romanization": "industrial", + "example_sentence_native": "La zona industrial è piena di fabbriche.", + "example_sentence_english": "The industrial area is full of factories.", + "pos": "adjective", + "word_frequency": 15659 + }, + { + "word": "indù", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hindu", + "romanization": "indù", + "example_sentence_native": "La religione indù è molto antica.", + "example_sentence_english": "The Hindu religion is very ancient.", + "pos": "adjective", + "word_frequency": 15660 + }, + { + "word": "infografica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infographic", + "romanization": "infografica", + "example_sentence_native": "L'infografica spiega i dati in modo chiaro.", + "example_sentence_english": "The infographic explains the data clearly.", + "pos": "noun", + "word_frequency": 15661 + }, + { + "word": "ingiunzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "injunction", + "romanization": "ingiunzione", + "example_sentence_native": "Il giudice ha emesso un'ingiunzione.", + "example_sentence_english": "The judge issued an injunction.", + "pos": "noun", + "word_frequency": 15662 + }, + { + "word": "inquadramento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "framing;classification;job placement", + "romanization": "inquadramento", + "example_sentence_native": "Il suo inquadramento professionale è stato definito.", + "example_sentence_english": "His professional classification has been defined.", + "pos": "noun", + "word_frequency": 15663 + }, + { + "word": "ipertensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypertension", + "romanization": "ipertensione", + "example_sentence_native": "Soffre di ipertensione.", + "example_sentence_english": "He suffers from hypertension.", + "pos": "noun", + "word_frequency": 15664 + }, + { + "word": "irragionevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unreasonable", + "romanization": "irragionevole", + "example_sentence_native": "La sua richiesta è irragionevole.", + "example_sentence_english": "His request is unreasonable.", + "pos": "adjective", + "word_frequency": 15665 + }, + { + "word": "jaguar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jaguar", + "romanization": "jaguar", + "example_sentence_native": "Il jaguar è un grande felino.", + "example_sentence_english": "The jaguar is a large feline.", + "pos": "noun", + "word_frequency": 15666 + }, + { + "word": "leopardo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "leopard", + "romanization": "leopardo", + "example_sentence_native": "Il leopardo ha un manto maculato.", + "example_sentence_english": "The leopard has a spotted coat.", + "pos": "noun", + "word_frequency": 15677 + }, + { + "word": "liquidare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to liquidate;to settle;to dismiss", + "romanization": "liquidare", + "example_sentence_native": "Dobbiamo liquidare il debito entro la fine del mese.", + "example_sentence_english": "We must settle the debt by the end of the month.", + "pos": "verb", + "word_frequency": 15680 + }, + { + "word": "locomotiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locomotive", + "romanization": "locomotiva", + "example_sentence_native": "La vecchia locomotiva a vapore fischiava mentre entrava in stazione.", + "example_sentence_english": "The old steam locomotive whistled as it entered the station.", + "pos": "noun", + "word_frequency": 15681 + }, + { + "word": "longitudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "longitude", + "romanization": "longitudine", + "example_sentence_native": "La longitudine di Roma è di circa 12 gradi est.", + "example_sentence_english": "The longitude of Rome is approximately 12 degrees east.", + "pos": "noun", + "word_frequency": 15682 + }, + { + "word": "messinscena", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "staging;mise-en-scène;setup", + "romanization": "messinscena", + "example_sentence_native": "La messinscena dello spettacolo era molto elaborata.", + "example_sentence_english": "The staging of the show was very elaborate.", + "pos": "noun", + "word_frequency": 15684 + }, + { + "word": "miliziano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militiaman", + "romanization": "miliziano", + "example_sentence_native": "Il miliziano era armato e pronto a difendere il villaggio.", + "example_sentence_english": "The militiaman was armed and ready to defend the village.", + "pos": "noun", + "word_frequency": 15686 + }, + { + "word": "miniato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illuminated (manuscript)", + "romanization": "miniato", + "example_sentence_native": "Il manoscritto miniato era un'opera d'arte preziosa.", + "example_sentence_english": "The illuminated manuscript was a precious work of art.", + "pos": "adjective", + "word_frequency": 15687 + }, + { + "word": "modalita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mode;modality;method", + "romanization": "modalità", + "example_sentence_native": "Ci sono diverse modalità per accedere al servizio.", + "example_sentence_english": "There are different modes to access the service.", + "pos": "noun", + "word_frequency": 15688 + }, + { + "word": "moralista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moralist", + "romanization": "moralista", + "example_sentence_native": "Non essere così moralista, ognuno ha le sue idee.", + "example_sentence_english": "Don't be such a moralist, everyone has their own ideas.", + "pos": "noun", + "word_frequency": 15690 + }, + { + "word": "muretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "low wall;small wall", + "romanization": "muretto", + "example_sentence_native": "Ci siamo seduti sul muretto ad aspettare.", + "example_sentence_english": "We sat on the low wall waiting.", + "pos": "noun", + "word_frequency": 15691 + }, + { + "word": "nostalgico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nostalgic", + "romanization": "nostalgico", + "example_sentence_native": "Si sentiva nostalgico dei vecchi tempi.", + "example_sentence_english": "He felt nostalgic for the old times.", + "pos": "adjective", + "word_frequency": 15701 + }, + { + "word": "numerosissimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very numerous;extremely numerous", + "romanization": "numerosissimo", + "example_sentence_native": "La folla era numerosissima, quasi impossibile muoversi.", + "example_sentence_english": "The crowd was very numerous, almost impossible to move.", + "pos": "adjective", + "word_frequency": 15702 + }, + { + "word": "obiettore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "objector;conscientious objector", + "romanization": "obiettore", + "example_sentence_native": "L'obiettore di coscienza si rifiutò di prendere le armi.", + "example_sentence_english": "The conscientious objector refused to take up arms.", + "pos": "noun", + "word_frequency": 15703 + }, + { + "word": "omologazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homologation;approval;standardization", + "romanization": "omologazione", + "example_sentence_native": "Il prodotto ha ricevuto l'omologazione dalle autorità competenti.", + "example_sentence_english": "The product received approval from the competent authorities.", + "pos": "noun", + "word_frequency": 15704 + }, + { + "word": "orfanotrofio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orphanage", + "romanization": "orfanotrofio", + "example_sentence_native": "Ha trascorso la sua infanzia in un orfanotrofio.", + "example_sentence_english": "He spent his childhood in an orphanage.", + "pos": "noun", + "word_frequency": 15705 + }, + { + "word": "ostello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hostel", + "romanization": "ostello", + "example_sentence_native": "Abbiamo prenotato un letto in un ostello per la notte.", + "example_sentence_english": "We booked a bed in a hostel for the night.", + "pos": "noun", + "word_frequency": 15706 + }, + { + "word": "pacato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calm;placid;gentle", + "romanization": "pacato", + "example_sentence_native": "La sua voce era calma e pacata, rassicurante.", + "example_sentence_english": "His voice was calm and gentle, reassuring.", + "pos": "adjective", + "word_frequency": 15707 + }, + { + "word": "pagnotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loaf (of bread)", + "romanization": "pagnotta", + "example_sentence_native": "Ho comprato una pagnotta di pane fresco.", + "example_sentence_english": "I bought a loaf of fresh bread.", + "pos": "noun", + "word_frequency": 15708 + }, + { + "word": "panza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "belly;tummy (informal)", + "romanization": "panza", + "example_sentence_native": "Dopo il pranzo, aveva la panza piena.", + "example_sentence_english": "After lunch, he had a full belly.", + "pos": "noun", + "word_frequency": 15710 + }, + { + "word": "pareggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to draw (a match);to equalize;to level", + "romanization": "pareggiare", + "example_sentence_native": "La partita è finita 1-1, hanno pareggiato.", + "example_sentence_english": "The match ended 1-1, they drew.", + "pos": "verb", + "word_frequency": 15712 + }, + { + "word": "paro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "even (number);equal", + "romanization": "paro", + "example_sentence_native": "Due è un numero paro.", + "example_sentence_english": "Two is an even number.", + "pos": "adjective", + "word_frequency": 15713 + }, + { + "word": "pedina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pawn;piece (in a game)", + "romanization": "pedina", + "example_sentence_native": "Ha mosso una pedina sulla scacchiera.", + "example_sentence_english": "He moved a pawn on the chessboard.", + "pos": "noun", + "word_frequency": 15715 + }, + { + "word": "pentimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repentance;regret", + "romanization": "pentimento", + "example_sentence_native": "Ha mostrato sincero pentimento per i suoi errori.", + "example_sentence_english": "He showed sincere repentance for his mistakes.", + "pos": "noun", + "word_frequency": 15716 + }, + { + "word": "perlina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bead;small pearl", + "romanization": "perlina", + "example_sentence_native": "Ha fatto una collana con tante perline colorate.", + "example_sentence_english": "She made a necklace with many colorful beads.", + "pos": "noun", + "word_frequency": 15717 + }, + { + "word": "pianificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planned", + "romanization": "pianificato", + "example_sentence_native": "L'evento è stato pianificato nei minimi dettagli.", + "example_sentence_english": "The event was planned down to the smallest detail.", + "pos": "adjective", + "word_frequency": 15719 + }, + { + "word": "pienezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fullness", + "romanization": "pienezza", + "example_sentence_native": "Ha vissuto la vita con pienezza.", + "example_sentence_english": "He lived life with fullness.", + "pos": "noun", + "word_frequency": 15720 + }, + { + "word": "pittoresco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "picturesque", + "romanization": "pittoresco", + "example_sentence_native": "Il villaggio era molto pittoresco.", + "example_sentence_english": "The village was very picturesque.", + "pos": "adjective", + "word_frequency": 15721 + }, + { + "word": "potestà", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "power;authority", + "romanization": "potestà", + "example_sentence_native": "Il padre ha la potestà sui figli minori.", + "example_sentence_english": "The father has authority over minor children.", + "pos": "noun", + "word_frequency": 15723 + }, + { + "word": "prelevato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "withdrawn;collected", + "romanization": "prelevato", + "example_sentence_native": "Il denaro prelevato è stato depositato in banca.", + "example_sentence_english": "The withdrawn money was deposited in the bank.", + "pos": "adjective", + "word_frequency": 15725 + }, + { + "word": "privazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deprivation", + "romanization": "privazione", + "example_sentence_native": "La privazione del sonno può avere gravi effetti.", + "example_sentence_english": "Sleep deprivation can have serious effects.", + "pos": "noun", + "word_frequency": 15726 + }, + { + "word": "provvisoriamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "temporarily;provisionally", + "romanization": "provvisoriamente", + "example_sentence_native": "La strada è stata chiusa provvisoriamente.", + "example_sentence_english": "The road was temporarily closed.", + "pos": "adverb", + "word_frequency": 15727 + }, + { + "word": "pulcinella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pulcinella (Commedia dell'arte character)", + "romanization": "pulcinella", + "example_sentence_native": "Pulcinella è una maschera tradizionale napoletana.", + "example_sentence_english": "Pulcinella is a traditional Neapolitan mask.", + "pos": "noun", + "word_frequency": 15728 + }, + { + "word": "raccapricciante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "horrifying;gruesome", + "romanization": "raccapricciante", + "example_sentence_native": "Ha raccontato una storia raccapricciante.", + "example_sentence_english": "He told a horrifying story.", + "pos": "adjective", + "word_frequency": 15730 + }, + { + "word": "radiografia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "X-ray;radiography", + "romanization": "radiografia", + "example_sentence_native": "Ho dovuto fare una radiografia al ginocchio.", + "example_sentence_english": "I had to get an X-ray of my knee.", + "pos": "noun", + "word_frequency": 15731 + }, + { + "word": "represso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repressed;suppressed", + "romanization": "represso", + "example_sentence_native": "Ha espresso sentimenti a lungo repressi.", + "example_sentence_english": "He expressed long-repressed feelings.", + "pos": "adjective", + "word_frequency": 15734 + }, + { + "word": "restrittivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restrictive", + "romanization": "restrittivo", + "example_sentence_native": "Le nuove regole sono molto restrittive.", + "example_sentence_english": "The new rules are very restrictive.", + "pos": "adjective", + "word_frequency": 15735 + }, + { + "word": "ribrezzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgust;revulsion", + "romanization": "ribrezzo", + "example_sentence_native": "Provava un profondo ribrezzo per la violenza.", + "example_sentence_english": "He felt a deep disgust for violence.", + "pos": "noun", + "word_frequency": 15736 + }, + { + "word": "riempimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filling;stuffing", + "romanization": "riempimento", + "example_sentence_native": "Il riempimento del cuscino è in piuma.", + "example_sentence_english": "The pillow filling is down.", + "pos": "noun", + "word_frequency": 15737 + }, + { + "word": "riformato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reformed", + "romanization": "riformato", + "example_sentence_native": "La scuola ha adottato un programma riformato.", + "example_sentence_english": "The school adopted a reformed curriculum.", + "pos": "adjective", + "word_frequency": 15738 + }, + { + "word": "ripartito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divided;distributed", + "romanization": "ripartito", + "example_sentence_native": "I compiti sono stati ripartiti equamente.", + "example_sentence_english": "The tasks were equally divided.", + "pos": "adjective", + "word_frequency": 15739 + }, + { + "word": "ripensamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "second thought;reconsideration", + "romanization": "ripensamento", + "example_sentence_native": "Ha avuto un ripensamento all'ultimo minuto.", + "example_sentence_english": "He had a second thought at the last minute.", + "pos": "noun", + "word_frequency": 15740 + }, + { + "word": "sauna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sauna", + "romanization": "sauna", + "example_sentence_native": "Dopo l'allenamento, vado in sauna.", + "example_sentence_english": "After the workout, I go to the sauna.", + "pos": "noun", + "word_frequency": 15745 + }, + { + "word": "scherno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mockery;scorn", + "romanization": "scherno", + "example_sentence_native": "Le sue parole erano piene di scherno.", + "example_sentence_english": "His words were full of mockery.", + "pos": "noun", + "word_frequency": 15747 + }, + { + "word": "scusato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "excused;apologized", + "romanization": "scusato", + "example_sentence_native": "Era assente ma è stato scusato.", + "example_sentence_english": "He was absent but was excused.", + "pos": "adjective", + "word_frequency": 15748 + }, + { + "word": "sensazionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensational", + "romanization": "sensazionale", + "example_sentence_native": "La notizia è stata sensazionale.", + "example_sentence_english": "The news was sensational.", + "pos": "adjective", + "word_frequency": 15750 + }, + { + "word": "simposio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symposium", + "romanization": "simposio", + "example_sentence_native": "Hanno organizzato un simposio sulla filosofia.", + "example_sentence_english": "They organized a symposium on philosophy.", + "pos": "noun", + "word_frequency": 15753 + }, + { + "word": "smuovere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move;to stir;to dislodge", + "romanization": "smuovere", + "example_sentence_native": "È difficile smuovere la sua opinione.", + "example_sentence_english": "It's difficult to move his opinion.", + "pos": "verb", + "word_frequency": 15754 + }, + { + "word": "soave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sweet;gentle;mild", + "romanization": "soave", + "example_sentence_native": "Aveva una voce soave e melodiosa.", + "example_sentence_english": "She had a sweet and melodious voice.", + "pos": "adjective", + "word_frequency": 15755 + }, + { + "word": "soma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soma;body", + "romanization": "soma", + "example_sentence_native": "Il concetto di soma è importante in alcune filosofie.", + "example_sentence_english": "The concept of soma is important in some philosophies.", + "pos": "noun", + "word_frequency": 15756 + }, + { + "word": "sospirare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sigh", + "romanization": "sospirare", + "example_sentence_native": "Sospirò profondamente per la stanchezza.", + "example_sentence_english": "He sighed deeply from tiredness.", + "pos": "verb", + "word_frequency": 15758 + }, + { + "word": "sperduto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lost;remote;isolated", + "romanization": "sperduto", + "example_sentence_native": "Vive in un villaggio sperduto tra le montagne.", + "example_sentence_english": "He lives in a lost village in the mountains.", + "pos": "adjective", + "word_frequency": 15759 + }, + { + "word": "spora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spore", + "romanization": "spora", + "example_sentence_native": "Le spore dei funghi sono invisibili ad occhio nudo.", + "example_sentence_english": "Mushroom spores are invisible to the naked eye.", + "pos": "noun", + "word_frequency": 15760 + }, + { + "word": "sputato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spitting image (of);exact", + "romanization": "sputato", + "example_sentence_native": "È il ritratto sputato di suo padre.", + "example_sentence_english": "He is the spitting image of his father.", + "pos": "adjective", + "word_frequency": 15761 + }, + { + "word": "stele", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stele;pillar", + "romanization": "stele", + "example_sentence_native": "La stele commemorativa è stata eretta in piazza.", + "example_sentence_english": "The commemorative stele was erected in the square.", + "pos": "noun", + "word_frequency": 15763 + }, + { + "word": "stilato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drafted;drawn up", + "romanization": "stilato", + "example_sentence_native": "Il documento è stato stilato con cura.", + "example_sentence_english": "The document was carefully drafted.", + "pos": "adjective", + "word_frequency": 15764 + }, + { + "word": "titanio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titanium", + "romanization": "titanio", + "example_sentence_native": "Il titanio è un metallo leggero e resistente.", + "example_sentence_english": "Titanium is a light and resistant metal.", + "pos": "noun", + "word_frequency": 15771 + }, + { + "word": "tormentone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catchy tune;earworm;recurring theme", + "romanization": "tormentone", + "example_sentence_native": "Quella canzone è diventata il tormentone dell'estate.", + "example_sentence_english": "That song became the summer's catchy tune.", + "pos": "noun", + "word_frequency": 15774 + }, + { + "word": "ventimila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "twenty thousand", + "romanization": "ventimila", + "example_sentence_native": "Ci sono ventimila persone allo stadio.", + "example_sentence_english": "There are twenty thousand people at the stadium.", + "pos": "adjective", + "word_frequency": 15777 + }, + { + "word": "ventisei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-six", + "romanization": "ventisei", + "example_sentence_native": "Ho ventisei anni.", + "example_sentence_english": "I am twenty-six years old.", + "pos": "adjective", + "word_frequency": 15778 + }, + { + "word": "versetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verse (of a song;poem;bible)", + "romanization": "versetto", + "example_sentence_native": "Ha citato un versetto della Bibbia.", + "example_sentence_english": "He quoted a verse from the Bible.", + "pos": "noun", + "word_frequency": 15779 + }, + { + "word": "violentato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "violated;raped", + "romanization": "violentato", + "example_sentence_native": "I diritti umani non devono essere violentati.", + "example_sentence_english": "Human rights must not be violated.", + "pos": "adjective", + "word_frequency": 15780 + }, + { + "word": "vivaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursery (plant);breeding ground", + "romanization": "vivaio", + "example_sentence_native": "Abbiamo comprato nuove piante al vivaio.", + "example_sentence_english": "We bought new plants at the nursery.", + "pos": "noun", + "word_frequency": 15781 + }, + { + "word": "acceleratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accelerator", + "romanization": "acceleratore", + "example_sentence_native": "Premi l'acceleratore per andare più veloce.", + "example_sentence_english": "Press the accelerator to go faster.", + "pos": "noun", + "word_frequency": 15785 + }, + { + "word": "accostamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combination;pairing;approach", + "romanization": "accostamento", + "example_sentence_native": "L'accostamento di colori è molto audace.", + "example_sentence_english": "The combination of colors is very bold.", + "pos": "noun", + "word_frequency": 15786 + }, + { + "word": "alienazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alienation", + "romanization": "alienazione", + "example_sentence_native": "Molti lavoratori soffrono di alienazione.", + "example_sentence_english": "Many workers suffer from alienation.", + "pos": "noun", + "word_frequency": 15787 + }, + { + "word": "amministrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "administered;managed", + "romanization": "amministrato", + "example_sentence_native": "Il territorio è ben amministrato.", + "example_sentence_english": "The territory is well administered.", + "pos": "adjective", + "word_frequency": 15789 + }, + { + "word": "ammiratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admirer;fan", + "romanization": "ammiratore", + "example_sentence_native": "Ha molti ammiratori segreti.", + "example_sentence_english": "She has many secret admirers.", + "pos": "noun", + "word_frequency": 15790 + }, + { + "word": "annientare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to annihilate;to destroy", + "romanization": "annientare", + "example_sentence_native": "L'esercito ha cercato di annientare il nemico.", + "example_sentence_english": "The army tried to annihilate the enemy.", + "pos": "verb", + "word_frequency": 15792 + }, + { + "word": "anormale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abnormal;unusual", + "romanization": "anormale", + "example_sentence_native": "Il suo comportamento è stato anormale.", + "example_sentence_english": "His behavior was abnormal.", + "pos": "adjective", + "word_frequency": 15793 + }, + { + "word": "argine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embankment;dike;levee", + "romanization": "argine", + "example_sentence_native": "Hanno costruito un argine per proteggere la città dalle inondazioni.", + "example_sentence_english": "They built an embankment to protect the city from floods.", + "pos": "noun", + "word_frequency": 15797 + }, + { + "word": "astio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resentment;animosity;grudge", + "romanization": "astio", + "example_sentence_native": "Non c'è astio tra di noi.", + "example_sentence_english": "There is no resentment between us.", + "pos": "noun", + "word_frequency": 15798 + }, + { + "word": "attendibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reliability;credibility", + "romanization": "attendibilità", + "example_sentence_native": "L'attendibilità delle fonti è fondamentale per la ricerca.", + "example_sentence_english": "The reliability of sources is fundamental for research.", + "pos": "noun", + "word_frequency": 15800 + }, + { + "word": "autoveicolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motor vehicle", + "romanization": "autoveicolo", + "example_sentence_native": "Ogni autoveicolo deve essere immatricolato.", + "example_sentence_english": "Every motor vehicle must be registered.", + "pos": "noun", + "word_frequency": 15802 + }, + { + "word": "avido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greedy;avid", + "romanization": "avido", + "example_sentence_native": "Era avido di conoscenza e leggeva ogni libro che trovava.", + "example_sentence_english": "He was avid for knowledge and read every book he found.", + "pos": "adjective", + "word_frequency": 15804 + }, + { + "word": "avvicinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "approached;brought closer", + "romanization": "avvicinato", + "example_sentence_native": "Il momento della partenza si è avvicinato rapidamente.", + "example_sentence_english": "The moment of departure approached rapidly.", + "pos": "adjective", + "word_frequency": 15805 + }, + { + "word": "avvisato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warned;notified", + "romanization": "avvisato", + "example_sentence_native": "Siamo stati avvisati del pericolo in anticipo.", + "example_sentence_english": "We were warned of the danger in advance.", + "pos": "adjective", + "word_frequency": 15806 + }, + { + "word": "ballato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "danced", + "romanization": "ballato", + "example_sentence_native": "La musica era così bella che abbiamo ballato tutta la notte.", + "example_sentence_english": "The music was so beautiful that we danced all night.", + "pos": "adjective", + "word_frequency": 15808 + }, + { + "word": "bastato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "been enough;sufficed", + "romanization": "bastato", + "example_sentence_native": "Il cibo preparato è bastato per tutti gli invitati.", + "example_sentence_english": "The food prepared was enough for all the guests.", + "pos": "adjective", + "word_frequency": 15813 + }, + { + "word": "bidet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bidet", + "romanization": "bidet", + "example_sentence_native": "In Italia, quasi tutti i bagni hanno un bidet.", + "example_sentence_english": "In Italy, almost all bathrooms have a bidet.", + "pos": "noun", + "word_frequency": 15817 + }, + { + "word": "boutique", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boutique", + "romanization": "boutique", + "example_sentence_native": "Ha comprato un vestito elegante in una boutique del centro.", + "example_sentence_english": "She bought an elegant dress in a downtown boutique.", + "pos": "noun", + "word_frequency": 15818 + }, + { + "word": "bowling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowling", + "romanization": "bowling", + "example_sentence_native": "Andiamo a giocare a bowling stasera?", + "example_sentence_english": "Shall we go bowling tonight?", + "pos": "noun", + "word_frequency": 15819 + }, + { + "word": "calcolatrice", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calculator", + "romanization": "calcolatrice", + "example_sentence_native": "Ho usato la calcolatrice per fare i conti.", + "example_sentence_english": "I used the calculator to do the math.", + "pos": "noun", + "word_frequency": 15821 + }, + { + "word": "camerata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roommate;dormitory", + "romanization": "camerata", + "example_sentence_native": "Condivideva la camerata con altri studenti.", + "example_sentence_english": "He shared the dormitory with other students.", + "pos": "noun", + "word_frequency": 15822 + }, + { + "word": "camice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lab coat;smock", + "romanization": "camice", + "example_sentence_native": "Il medico indossava un camice bianco.", + "example_sentence_english": "The doctor was wearing a white lab coat.", + "pos": "noun", + "word_frequency": 15823 + }, + { + "word": "canile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dog kennel;dog shelter", + "romanization": "canile", + "example_sentence_native": "Abbiamo adottato il nostro cane da un canile locale.", + "example_sentence_english": "We adopted our dog from a local dog shelter.", + "pos": "noun", + "word_frequency": 15824 + }, + { + "word": "capitello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital (of a column)", + "romanization": "capitello", + "example_sentence_native": "Il capitello corinzio è molto decorato.", + "example_sentence_english": "The Corinthian capital is very decorated.", + "pos": "noun", + "word_frequency": 15825 + }, + { + "word": "carciofo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "artichoke", + "romanization": "carciofo", + "example_sentence_native": "Mi piacciono molto i carciofi alla romana.", + "example_sentence_english": "I really like Roman-style artichokes.", + "pos": "noun", + "word_frequency": 15826 + }, + { + "word": "carie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cavity;tooth decay", + "romanization": "carie", + "example_sentence_native": "Il dentista ha trovato una carie nel mio dente.", + "example_sentence_english": "The dentist found a cavity in my tooth.", + "pos": "noun", + "word_frequency": 15827 + }, + { + "word": "castano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brown (hair;eyes);chestnut", + "romanization": "castano", + "example_sentence_native": "Ha i capelli castani e gli occhi verdi.", + "example_sentence_english": "She has brown hair and green eyes.", + "pos": "adjective", + "word_frequency": 15828 + }, + { + "word": "castità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chastity", + "romanization": "castità", + "example_sentence_native": "La castità è una virtù in molte tradizioni.", + "example_sentence_english": "Chastity is a virtue in many traditions.", + "pos": "noun", + "word_frequency": 15829 + }, + { + "word": "cinematografia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cinematography;filmmaking", + "romanization": "cinematografia", + "example_sentence_native": "Ha studiato cinematografia all'università.", + "example_sentence_english": "He studied cinematography at university.", + "pos": "noun", + "word_frequency": 15831 + }, + { + "word": "clandestinità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clandestinity;illegality", + "romanization": "clandestinità", + "example_sentence_native": "Molte persone vivono in clandestinità per paura di essere scoperte.", + "example_sentence_english": "Many people live in clandestinity for fear of being discovered.", + "pos": "noun", + "word_frequency": 15834 + }, + { + "word": "confetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sugared almond", + "romanization": "confetto", + "example_sentence_native": "Ai matrimoni italiani si offrono i confetti agli invitati.", + "example_sentence_english": "At Italian weddings, sugared almonds are offered to guests.", + "pos": "noun", + "word_frequency": 15836 + }, + { + "word": "congelamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freezing;frostbite", + "romanization": "congelamento", + "example_sentence_native": "Il congelamento dei cibi ne preserva la freschezza.", + "example_sentence_english": "The freezing of foods preserves their freshness.", + "pos": "noun", + "word_frequency": 15837 + }, + { + "word": "conservativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservative", + "romanization": "conservativo", + "example_sentence_native": "Ha un approccio molto conservativo alla finanza.", + "example_sentence_english": "He has a very conservative approach to finance.", + "pos": "adjective", + "word_frequency": 15838 + }, + { + "word": "contraddire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contradict", + "romanization": "contraddire", + "example_sentence_native": "Non mi piace contraddire le persone, ma a volte è necessario.", + "example_sentence_english": "I don't like to contradict people, but sometimes it's necessary.", + "pos": "verb", + "word_frequency": 15839 + }, + { + "word": "contribuzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contribution", + "romanization": "contribuzione", + "example_sentence_native": "La sua contribuzione al progetto è stata fondamentale.", + "example_sentence_english": "His contribution to the project was fundamental.", + "pos": "noun", + "word_frequency": 15840 + }, + { + "word": "cotton", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cotton", + "romanization": "cotton", + "example_sentence_native": "Preferisco le camicie in cotton.", + "example_sentence_english": "I prefer cotton shirts.", + "pos": "noun", + "word_frequency": 15841 + }, + { + "word": "cromo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chromium", + "romanization": "cromo", + "example_sentence_native": "Il cromo è un metallo di transizione.", + "example_sentence_english": "Chromium is a transition metal.", + "pos": "noun", + "word_frequency": 15843 + }, + { + "word": "cutaneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cutaneous;skin-related", + "romanization": "cutaneo", + "example_sentence_native": "Ha un'eruzione cutanea.", + "example_sentence_english": "He has a skin rash.", + "pos": "adjective", + "word_frequency": 15845 + }, + { + "word": "dedito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dedicated;devoted", + "romanization": "dedito", + "example_sentence_native": "Era un uomo dedito al suo lavoro.", + "example_sentence_english": "He was a man dedicated to his work.", + "pos": "adjective", + "word_frequency": 15847 + }, + { + "word": "dedotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deduced;inferred", + "romanization": "dedotto", + "example_sentence_native": "La conclusione è stata dedotta dai fatti.", + "example_sentence_english": "The conclusion was deduced from the facts.", + "pos": "adjective", + "word_frequency": 15848 + }, + { + "word": "deludere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disappoint", + "romanization": "deludere", + "example_sentence_native": "Non voglio deludere le tue aspettative.", + "example_sentence_english": "I don't want to disappoint your expectations.", + "pos": "verb", + "word_frequency": 15854 + }, + { + "word": "desolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desolate;sorry", + "romanization": "desolato", + "example_sentence_native": "Mi sento desolato per l'errore.", + "example_sentence_english": "I feel sorry for the mistake.", + "pos": "adjective", + "word_frequency": 15855 + }, + { + "word": "dipartita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "departure;demise", + "romanization": "dipartita", + "example_sentence_native": "La sua dipartita ha lasciato un vuoto.", + "example_sentence_english": "His demise left a void.", + "pos": "noun", + "word_frequency": 15857 + }, + { + "word": "disgustato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disgusted", + "romanization": "disgustato", + "example_sentence_native": "Era disgustato dal comportamento.", + "example_sentence_english": "He was disgusted by the behavior.", + "pos": "adjective", + "word_frequency": 15858 + }, + { + "word": "endemico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "endemic", + "romanization": "endemico", + "example_sentence_native": "La malattia è endemica in quella regione.", + "example_sentence_english": "The disease is endemic in that region.", + "pos": "adjective", + "word_frequency": 15864 + }, + { + "word": "erogare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disburse;to supply;to provide", + "romanization": "erogare", + "example_sentence_native": "La banca può erogare un prestito.", + "example_sentence_english": "The bank can disburse a loan.", + "pos": "verb", + "word_frequency": 15865 + }, + { + "word": "eroismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heroism", + "romanization": "eroismo", + "example_sentence_native": "Il suo atto di eroismo è stato riconosciuto.", + "example_sentence_english": "His act of heroism was recognized.", + "pos": "noun", + "word_frequency": 15866 + }, + { + "word": "esercente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shopkeeper;operator;merchant", + "romanization": "esercente", + "example_sentence_native": "L'esercente ha chiuso il negozio.", + "example_sentence_english": "The shopkeeper closed the store.", + "pos": "noun", + "word_frequency": 15867 + }, + { + "word": "esibito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibited;displayed;shown", + "romanization": "esibito", + "example_sentence_native": "Il quadro esibito era magnifico.", + "example_sentence_english": "The exhibited painting was magnificent.", + "pos": "adjective", + "word_frequency": 15868 + }, + { + "word": "esigente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demanding;exacting", + "romanization": "esigente", + "example_sentence_native": "Il professore è molto esigente.", + "example_sentence_english": "The professor is very demanding.", + "pos": "adjective", + "word_frequency": 15869 + }, + { + "word": "establishment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment", + "romanization": "establishment", + "example_sentence_native": "Critica l'establishment politico.", + "example_sentence_english": "He criticizes the political establishment.", + "pos": "noun", + "word_frequency": 15870 + }, + { + "word": "esultanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exultation;jubilation", + "romanization": "esultanza", + "example_sentence_native": "La folla era in esultanza dopo la vittoria.", + "example_sentence_english": "The crowd was in exultation after the victory.", + "pos": "noun", + "word_frequency": 15871 + }, + { + "word": "femore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "femur;thigh bone", + "romanization": "femore", + "example_sentence_native": "Il femore è l'osso più lungo del corpo.", + "example_sentence_english": "The femur is the longest bone in the body.", + "pos": "noun", + "word_frequency": 15874 + }, + { + "word": "filamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filament;strand", + "romanization": "filamento", + "example_sentence_native": "Il filamento della lampadina si è rotto.", + "example_sentence_english": "The light bulb's filament broke.", + "pos": "noun", + "word_frequency": 15877 + }, + { + "word": "fomentare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to foment;to incite;to instigate", + "romanization": "fomentare", + "example_sentence_native": "Non dovremmo fomentare la violenza.", + "example_sentence_english": "We should not foment violence.", + "pos": "verb", + "word_frequency": 15878 + }, + { + "word": "germoglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sprout;shoot", + "romanization": "germoglio", + "example_sentence_native": "Il primo germoglio della primavera è sempre un segno di speranza.", + "example_sentence_english": "The first sprout of spring is always a sign of hope.", + "pos": "noun", + "word_frequency": 15880 + }, + { + "word": "gioielleria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "jewelry store", + "romanization": "gioielleria", + "example_sentence_native": "Ho comprato un anello nella gioielleria del centro.", + "example_sentence_english": "I bought a ring at the jewelry store downtown.", + "pos": "noun", + "word_frequency": 15882 + }, + { + "word": "glamour", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glamour", + "romanization": "glamour", + "example_sentence_native": "La sfilata di moda era piena di glamour.", + "example_sentence_english": "The fashion show was full of glamour.", + "pos": "noun", + "word_frequency": 15883 + }, + { + "word": "gore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gore", + "romanization": "gore", + "example_sentence_native": "Molti film horror contengono scene di gore.", + "example_sentence_english": "Many horror films contain gore scenes.", + "pos": "noun", + "word_frequency": 15884 + }, + { + "word": "immortalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immortality", + "romanization": "immortalità", + "example_sentence_native": "La ricerca dell'immortalità è un tema antico.", + "example_sentence_english": "The search for immortality is an ancient theme.", + "pos": "noun", + "word_frequency": 15888 + }, + { + "word": "inclinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclined;tilted", + "romanization": "inclinato", + "example_sentence_native": "Il tavolo era leggermente inclinato.", + "example_sentence_english": "The table was slightly inclined.", + "pos": "adjective", + "word_frequency": 15889 + }, + { + "word": "inefficienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inefficiency", + "romanization": "inefficienza", + "example_sentence_native": "L'inefficienza del sistema causava molti problemi.", + "example_sentence_english": "The inefficiency of the system caused many problems.", + "pos": "noun", + "word_frequency": 15890 + }, + { + "word": "interminabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endless;interminable", + "romanization": "interminabile", + "example_sentence_native": "L'attesa sembrava interminabile.", + "example_sentence_english": "The wait seemed endless.", + "pos": "adjective", + "word_frequency": 15891 + }, + { + "word": "inverosimile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "improbable;unbelievable", + "romanization": "inverosimile", + "example_sentence_native": "La sua storia era completamente inverosimile.", + "example_sentence_english": "His story was completely unbelievable.", + "pos": "adjective", + "word_frequency": 15892 + }, + { + "word": "jihad", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jihad", + "romanization": "jihad", + "example_sentence_native": "Il concetto di jihad è complesso e spesso frainteso.", + "example_sentence_english": "The concept of jihad is complex and often misunderstood.", + "pos": "noun", + "word_frequency": 15896 + }, + { + "word": "latticino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dairy product", + "romanization": "latticino", + "example_sentence_native": "I latticini sono una buona fonte di calcio.", + "example_sentence_english": "Dairy products are a good source of calcium.", + "pos": "noun", + "word_frequency": 15901 + }, + { + "word": "libido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libido", + "romanization": "libido", + "example_sentence_native": "La libido è un concetto centrale nella psicoanalisi.", + "example_sentence_english": "Libido is a central concept in psychoanalysis.", + "pos": "noun", + "word_frequency": 15903 + }, + { + "word": "linguista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "linguist", + "romanization": "linguista", + "example_sentence_native": "Mio fratello è un linguista e studia molte lingue.", + "example_sentence_english": "My brother is a linguist and studies many languages.", + "pos": "noun", + "word_frequency": 15904 + }, + { + "word": "localizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "localized", + "romanization": "localizzato", + "example_sentence_native": "Il dolore era localizzato nella parte bassa della schiena.", + "example_sentence_english": "The pain was localized in the lower back.", + "pos": "adjective", + "word_frequency": 15905 + }, + { + "word": "longevità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "longevity", + "romanization": "longevità", + "example_sentence_native": "La longevità è spesso associata a uno stile di vita sano.", + "example_sentence_english": "Longevity is often associated with a healthy lifestyle.", + "pos": "noun", + "word_frequency": 15907 + }, + { + "word": "lucchetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "padlock", + "romanization": "lucchetto", + "example_sentence_native": "Ho chiuso la bicicletta con un lucchetto.", + "example_sentence_english": "I locked the bicycle with a padlock.", + "pos": "noun", + "word_frequency": 15909 + }, + { + "word": "lumaca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snail", + "romanization": "lumaca", + "example_sentence_native": "La lumaca lascia una scia di bava.", + "example_sentence_english": "The snail leaves a trail of slime.", + "pos": "noun", + "word_frequency": 15912 + }, + { + "word": "macinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ground;minced", + "romanization": "macinato", + "example_sentence_native": "Ho comprato caffè macinato fresco.", + "example_sentence_english": "I bought freshly ground coffee.", + "pos": "adjective", + "word_frequency": 15913 + }, + { + "word": "masturbare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to masturbate", + "romanization": "masturbare", + "example_sentence_native": "Il termine \"masturbare\" si riferisce all'autoerotismo.", + "example_sentence_english": "The term \"to masturbate\" refers to autoeroticism.", + "pos": "verb", + "word_frequency": 15915 + }, + { + "word": "memorandum", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorandum;memo", + "romanization": "memorandum", + "example_sentence_native": "Il direttore ha inviato un memorandum a tutto il personale.", + "example_sentence_english": "The director sent a memorandum to all staff.", + "pos": "noun", + "word_frequency": 15917 + }, + { + "word": "meravigliosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wonderfully;marvelously", + "romanization": "meravigliosamente", + "example_sentence_native": "La torta era meravigliosamente buona.", + "example_sentence_english": "The cake was wonderfully good.", + "pos": "adverb", + "word_frequency": 15918 + }, + { + "word": "mestruazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "menstruation", + "romanization": "mestruazione", + "example_sentence_native": "La mestruazione è una parte naturale del ciclo femminile.", + "example_sentence_english": "Menstruation is a natural part of the female cycle.", + "pos": "noun", + "word_frequency": 15919 + }, + { + "word": "militarmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "militarily", + "romanization": "militarmente", + "example_sentence_native": "La città era ben difesa militarmente.", + "example_sentence_english": "The city was well defended militarily.", + "pos": "adverb", + "word_frequency": 15921 + }, + { + "word": "montato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mounted", + "romanization": "montato", + "example_sentence_native": "La panna era ben montata.", + "example_sentence_english": "The cream was well whipped.", + "pos": "adjective", + "word_frequency": 15923 + }, + { + "word": "multiplayer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "multiplayer", + "romanization": "multiplayer", + "example_sentence_native": "Questo videogioco ha una modalità multiplayer online.", + "example_sentence_english": "This video game has an online multiplayer mode.", + "pos": "noun", + "word_frequency": 15924 + }, + { + "word": "narrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrated", + "romanization": "narrato", + "example_sentence_native": "La storia è narrata da un punto di vista insolito.", + "example_sentence_english": "The story is narrated from an unusual point of view.", + "pos": "adjective", + "word_frequency": 15926 + }, + { + "word": "notebook", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "laptop", + "romanization": "notebook", + "example_sentence_native": "Ho comprato un nuovo notebook per il lavoro.", + "example_sentence_english": "I bought a new laptop for work.", + "pos": "noun", + "word_frequency": 15934 + }, + { + "word": "omeopatia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homeopathy", + "romanization": "omeopatia", + "example_sentence_native": "L'omeopatia è una medicina alternativa.", + "example_sentence_english": "Homeopathy is an alternative medicine.", + "pos": "noun", + "word_frequency": 15937 + }, + { + "word": "ostruzionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obstructionism", + "romanization": "ostruzionismo", + "example_sentence_native": "L'opposizione ha usato l'ostruzionismo per bloccare la legge.", + "example_sentence_english": "The opposition used obstructionism to block the law.", + "pos": "noun", + "word_frequency": 15938 + }, + { + "word": "pakistano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Pakistani", + "romanization": "pakistano", + "example_sentence_native": "Ha incontrato un amico pakistano a Londra.", + "example_sentence_english": "He met a Pakistani friend in London.", + "pos": "adjective", + "word_frequency": 15940 + }, + { + "word": "patronato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welfare office", + "romanization": "patronato", + "example_sentence_native": "Mi sono rivolto al patronato per la mia pensione.", + "example_sentence_english": "I contacted the welfare office for my pension.", + "pos": "noun", + "word_frequency": 15945 + }, + { + "word": "percussione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "percussion", + "romanization": "percussione", + "example_sentence_native": "Adoro il suono degli strumenti a percussione.", + "example_sentence_english": "I love the sound of percussion instruments.", + "pos": "noun", + "word_frequency": 15946 + }, + { + "word": "permanentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "permanently", + "romanization": "permanentemente", + "example_sentence_native": "Si è trasferito permanentemente in Canada.", + "example_sentence_english": "He moved permanently to Canada.", + "pos": "adverb", + "word_frequency": 15947 + }, + { + "word": "precariato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "precarious employment", + "romanization": "precariato", + "example_sentence_native": "Il precariato giovanile è un problema sociale in Italia.", + "example_sentence_english": "Youth precarious employment is a social problem in Italy.", + "pos": "noun", + "word_frequency": 15949 + }, + { + "word": "prepotenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrogance", + "romanization": "prepotenza", + "example_sentence_native": "Non tollero la sua prepotenza.", + "example_sentence_english": "I don't tolerate his arrogance.", + "pos": "noun", + "word_frequency": 15950 + }, + { + "word": "presuntuoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presumptuous", + "romanization": "presuntuoso", + "example_sentence_native": "È troppo presuntuoso per ammettere i suoi errori.", + "example_sentence_english": "He is too presumptuous to admit his mistakes.", + "pos": "adjective", + "word_frequency": 15951 + }, + { + "word": "privare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deprive", + "romanization": "privare", + "example_sentence_native": "Non puoi privare qualcuno della sua libertà.", + "example_sentence_english": "You cannot deprive someone of their freedom.", + "pos": "verb", + "word_frequency": 15952 + }, + { + "word": "proverbiale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proverbial", + "romanization": "proverbiale", + "example_sentence_native": "La sua pazienza è proverbiale.", + "example_sentence_english": "His patience is proverbial.", + "pos": "adjective", + "word_frequency": 15953 + }, + { + "word": "pubblicizzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertised", + "romanization": "pubblicizzato", + "example_sentence_native": "Il prodotto è stato ampiamente pubblicizzato in TV.", + "example_sentence_english": "The product was widely advertised on TV.", + "pos": "adjective", + "word_frequency": 15954 + }, + { + "word": "puzzare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stink", + "romanization": "puzzare", + "example_sentence_native": "Questo formaggio comincia a puzzare.", + "example_sentence_english": "This cheese is starting to stink.", + "pos": "verb", + "word_frequency": 15956 + }, + { + "word": "quantum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantum", + "romanization": "quantum", + "example_sentence_native": "La fisica quantistica studia il comportamento della materia a livello di quantum.", + "example_sentence_english": "Quantum physics studies the behavior of matter at the quantum level.", + "pos": "noun", + "word_frequency": 15957 + }, + { + "word": "rassicurare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reassure", + "romanization": "rassicurare", + "example_sentence_native": "Ho cercato di rassicurare il bambino spaventato.", + "example_sentence_english": "I tried to reassure the frightened child.", + "pos": "verb", + "word_frequency": 15959 + }, + { + "word": "ratificato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ratified", + "romanization": "ratificato", + "example_sentence_native": "L'accordo è stato ratificato da entrambi i paesi.", + "example_sentence_english": "The agreement has been ratified by both countries.", + "pos": "adjective", + "word_frequency": 15960 + }, + { + "word": "razionalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalization", + "romanization": "razionalizzazione", + "example_sentence_native": "La razionalizzazione dei processi ha portato a maggiore efficienza.", + "example_sentence_english": "The rationalization of processes led to greater efficiency.", + "pos": "noun", + "word_frequency": 15961 + }, + { + "word": "rendiconto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "report", + "romanization": "rendiconto", + "example_sentence_native": "Dobbiamo presentare il rendiconto finanziario entro la fine del mese.", + "example_sentence_english": "We must submit the financial report by the end of the month.", + "pos": "noun", + "word_frequency": 15962 + }, + { + "word": "reset", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reset", + "romanization": "reset", + "example_sentence_native": "Ho dovuto fare un reset del router per risolvere il problema.", + "example_sentence_english": "I had to do a reset of the router to solve the problem.", + "pos": "noun", + "word_frequency": 15963 + }, + { + "word": "retweet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "retweet", + "romanization": "retweet", + "example_sentence_native": "Il suo tweet ha ricevuto molti retweet.", + "example_sentence_english": "His tweet received many retweets.", + "pos": "noun", + "word_frequency": 15964 + }, + { + "word": "rialzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to raise again", + "romanization": "rialzare", + "example_sentence_native": "Aiutami a rialzare questa scatola pesante.", + "example_sentence_english": "Help me to lift up this heavy box.", + "pos": "verb", + "word_frequency": 15965 + }, + { + "word": "rievocazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-enactment", + "romanization": "rievocazione", + "example_sentence_native": "Ogni anno c'è una rievocazione storica della battaglia.", + "example_sentence_english": "Every year there is a historical re-enactment of the battle.", + "pos": "noun", + "word_frequency": 15967 + }, + { + "word": "rim", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rim", + "romanization": "rim", + "example_sentence_native": "Ho graffiato il rim della mia nuova auto.", + "example_sentence_english": "I scratched the rim of my new car.", + "pos": "noun", + "word_frequency": 15968 + }, + { + "word": "riprovare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to try again", + "romanization": "riprovare", + "example_sentence_native": "Non arrenderti, devi riprovare!", + "example_sentence_english": "Don't give up, you must try again!", + "pos": "verb", + "word_frequency": 15969 + }, + { + "word": "rivendicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claimed", + "romanization": "rivendicato", + "example_sentence_native": "Il territorio è stato rivendicato da entrambi i paesi.", + "example_sentence_english": "The territory has been claimed by both countries.", + "pos": "adjective", + "word_frequency": 15970 + }, + { + "word": "rotaia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rail", + "romanization": "rotaia", + "example_sentence_native": "Il treno correva veloce sulle rotaie.", + "example_sentence_english": "The train ran fast on the tracks.", + "pos": "noun", + "word_frequency": 15971 + }, + { + "word": "rudere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ruin", + "romanization": "rudere", + "example_sentence_native": "Abbiamo visitato i ruderi di un antico castello.", + "example_sentence_english": "We visited the ruins of an ancient castle.", + "pos": "noun", + "word_frequency": 15972 + }, + { + "word": "rumoroso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "noisy", + "romanization": "rumoroso", + "example_sentence_native": "Il mio vicino è molto rumoroso.", + "example_sentence_english": "My neighbor is very noisy.", + "pos": "adjective", + "word_frequency": 15973 + }, + { + "word": "samba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "samba", + "romanization": "samba", + "example_sentence_native": "Hanno ballato la samba tutta la notte.", + "example_sentence_english": "They danced samba all night.", + "pos": "noun", + "word_frequency": 15974 + }, + { + "word": "sbirro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cop", + "romanization": "sbirro", + "example_sentence_native": "Attento, c'è uno sbirro dietro l'angolo!", + "example_sentence_english": "Watch out, there's a cop around the corner!", + "pos": "noun", + "word_frequency": 15977 + }, + { + "word": "sceicco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheikh", + "romanization": "sceicco", + "example_sentence_native": "Lo sceicco ha visitato la città con la sua delegazione.", + "example_sentence_english": "The sheikh visited the city with his delegation.", + "pos": "noun", + "word_frequency": 15978 + }, + { + "word": "scolpito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sculpted", + "romanization": "scolpito", + "example_sentence_native": "La statua era scolpita nel marmo bianco.", + "example_sentence_english": "The statue was sculpted in white marble.", + "pos": "adjective", + "word_frequency": 15979 + }, + { + "word": "segretariato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "secretariat", + "romanization": "segretariato", + "example_sentence_native": "Il segretariato delle Nazioni Unite si trova a New York.", + "example_sentence_english": "The United Nations secretariat is located in New York.", + "pos": "noun", + "word_frequency": 15980 + }, + { + "word": "sermone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sermon", + "romanization": "sermone", + "example_sentence_native": "Il prete ha tenuto un lungo sermone durante la messa.", + "example_sentence_english": "The priest gave a long sermon during the mass.", + "pos": "noun", + "word_frequency": 15981 + }, + { + "word": "similitudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "similitude", + "romanization": "similitudine", + "example_sentence_native": "C'è una chiara similitudine tra i due casi.", + "example_sentence_english": "There is a clear similitude between the two cases.", + "pos": "noun", + "word_frequency": 15983 + }, + { + "word": "sire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sire", + "romanization": "sire", + "example_sentence_native": "Sì, mio sire, la sua volontà sarà fatta.", + "example_sentence_english": "Yes, my sire, your will shall be done.", + "pos": "noun", + "word_frequency": 15985 + }, + { + "word": "smantellare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismantle", + "romanization": "smantellare", + "example_sentence_native": "Hanno deciso di smantellare la vecchia fabbrica.", + "example_sentence_english": "They decided to dismantle the old factory.", + "pos": "verb", + "word_frequency": 15987 + }, + { + "word": "soffermare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stop", + "romanization": "soffermare", + "example_sentence_native": "Non soffermarti troppo sui dettagli.", + "example_sentence_english": "Don't dwell too much on the details.", + "pos": "verb", + "word_frequency": 15988 + }, + { + "word": "sopralluogo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspection", + "romanization": "sopralluogo", + "example_sentence_native": "La polizia ha effettuato un sopralluogo sulla scena del crimine.", + "example_sentence_english": "The police carried out an inspection at the crime scene.", + "pos": "noun", + "word_frequency": 15989 + }, + { + "word": "sovrastare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tower over", + "romanization": "sovrastare", + "example_sentence_native": "La montagna sovrastava il piccolo villaggio.", + "example_sentence_english": "The mountain towered over the small village.", + "pos": "verb", + "word_frequency": 15990 + }, + { + "word": "sponsorizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsorship", + "romanization": "sponsorizzazione", + "example_sentence_native": "L'evento è stato possibile grazie alla sponsorizzazione di diverse aziende.", + "example_sentence_english": "The event was made possible thanks to the sponsorship of several companies.", + "pos": "noun", + "word_frequency": 15991 + }, + { + "word": "sprofondare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sink", + "romanization": "sprofondare", + "example_sentence_native": "La nave ha iniziato a sprofondare rapidamente.", + "example_sentence_english": "The ship began to sink rapidly.", + "pos": "verb", + "word_frequency": 15992 + }, + { + "word": "stabilizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stabilize", + "romanization": "stabilizzare", + "example_sentence_native": "I medici hanno cercato di stabilizzare le sue condizioni.", + "example_sentence_english": "The doctors tried to stabilize his condition.", + "pos": "verb", + "word_frequency": 15993 + }, + { + "word": "stanziamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allocation", + "romanization": "stanziamento", + "example_sentence_native": "Il governo ha approvato un nuovo stanziamento per l'istruzione.", + "example_sentence_english": "The government approved a new allocation for education.", + "pos": "noun", + "word_frequency": 15994 + }, + { + "word": "stelo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stem", + "romanization": "stelo", + "example_sentence_native": "Il fiore aveva uno stelo lungo e sottile.", + "example_sentence_english": "The flower had a long, thin stem.", + "pos": "noun", + "word_frequency": 15995 + }, + { + "word": "supreme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supreme", + "romanization": "supreme", + "example_sentence_native": "Ha preso la decisione suprema.", + "example_sentence_english": "He made the supreme decision.", + "pos": "adjective", + "word_frequency": 15999 + }, + { + "word": "suscettibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "susceptible;sensitive", + "romanization": "suscettibile", + "example_sentence_native": "È molto suscettibile alle critiche.", + "example_sentence_english": "He is very susceptible to criticism.", + "pos": "adjective", + "word_frequency": 16000 + }, + { + "word": "taggato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tagged", + "romanization": "taggato", + "example_sentence_native": "La foto è stata taggata con il suo nome.", + "example_sentence_english": "The photo was tagged with his name.", + "pos": "adjective", + "word_frequency": 16002 + }, + { + "word": "tandem", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tandem", + "romanization": "tandem", + "example_sentence_native": "Hanno fatto un giro in tandem.", + "example_sentence_english": "They went for a ride on a tandem.", + "pos": "noun", + "word_frequency": 16003 + }, + { + "word": "tarocco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fake;counterfeit", + "romanization": "tarocco", + "example_sentence_native": "Questo orologio sembra un tarocco.", + "example_sentence_english": "This watch looks like a fake.", + "pos": "noun", + "word_frequency": 16004 + }, + { + "word": "tentacolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tentacle", + "romanization": "tentacolo", + "example_sentence_native": "Il polpo ha otto tentacoli.", + "example_sentence_english": "The octopus has eight tentacles.", + "pos": "noun", + "word_frequency": 16005 + }, + { + "word": "tenue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "faint;weak;delicate", + "romanization": "tenue", + "example_sentence_native": "C'era una luce tenue nella stanza.", + "example_sentence_english": "There was a faint light in the room.", + "pos": "adjective", + "word_frequency": 16006 + }, + { + "word": "toast", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toast (sandwich or bread)", + "romanization": "toast", + "example_sentence_native": "Ho mangiato un toast a colazione.", + "example_sentence_english": "I ate a toast for breakfast.", + "pos": "noun", + "word_frequency": 16009 + }, + { + "word": "tragicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tragically", + "romanization": "tragicamente", + "example_sentence_native": "La storia si è conclusa tragicamente.", + "example_sentence_english": "The story ended tragically.", + "pos": "adverb", + "word_frequency": 16010 + }, + { + "word": "tribale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribal", + "romanization": "tribale", + "example_sentence_native": "Hanno studiato le danze tribali.", + "example_sentence_english": "They studied the tribal dances.", + "pos": "adjective", + "word_frequency": 16011 + }, + { + "word": "unificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unified;standardized", + "romanization": "unificato", + "example_sentence_native": "Il sistema è stato unificato.", + "example_sentence_english": "The system has been unified.", + "pos": "adjective", + "word_frequency": 16013 + }, + { + "word": "varato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launched;approved (for a ship;law;plan)", + "romanization": "varato", + "example_sentence_native": "La nuova legge è stata varata ieri.", + "example_sentence_english": "The new law was launched yesterday.", + "pos": "adjective", + "word_frequency": 16015 + }, + { + "word": "velato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "veiled;hinted;cloudy", + "romanization": "velato", + "example_sentence_native": "Ha fatto un commento velato.", + "example_sentence_english": "He made a veiled comment.", + "pos": "adjective", + "word_frequency": 16016 + }, + { + "word": "verbalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verbally", + "romanization": "verbalmente", + "example_sentence_native": "Ha risposto verbalmente alla domanda.", + "example_sentence_english": "He answered the question verbally.", + "pos": "adverb", + "word_frequency": 16018 + }, + { + "word": "vertere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to concern;to deal with;to revolve around", + "romanization": "vertere", + "example_sentence_native": "La discussione verteva su questioni economiche.", + "example_sentence_english": "The discussion concerned economic issues.", + "pos": "verb", + "word_frequency": 16019 + }, + { + "word": "viadotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viaduct", + "romanization": "viadotto", + "example_sentence_native": "Il viadotto attraversa la valle.", + "example_sentence_english": "The viaduct crosses the valley.", + "pos": "noun", + "word_frequency": 16020 + }, + { + "word": "violetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violet (flower or color)", + "romanization": "violetta", + "example_sentence_native": "Ha comprato un mazzo di violette.", + "example_sentence_english": "She bought a bunch of violets.", + "pos": "noun", + "word_frequency": 16021 + }, + { + "word": "violoncello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cello", + "romanization": "violoncello", + "example_sentence_native": "Suona il violoncello in un'orchestra.", + "example_sentence_english": "He plays the cello in an orchestra.", + "pos": "noun", + "word_frequency": 16022 + }, + { + "word": "acconciatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairstyle", + "romanization": "acconciatura", + "example_sentence_native": "Ha cambiato la sua acconciatura.", + "example_sentence_english": "She changed her hairstyle.", + "pos": "noun", + "word_frequency": 16026 + }, + { + "word": "accumulato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accumulated", + "romanization": "accumulato", + "example_sentence_native": "Ha un debito accumulato.", + "example_sentence_english": "He has an accumulated debt.", + "pos": "adjective", + "word_frequency": 16027 + }, + { + "word": "affiliazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affiliation", + "romanization": "affiliazione", + "example_sentence_native": "La sua affiliazione al club è recente.", + "example_sentence_english": "His affiliation with the club is recent.", + "pos": "noun", + "word_frequency": 16029 + }, + { + "word": "afflitto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "afflicted;distressed", + "romanization": "afflitto", + "example_sentence_native": "Era afflitto da una grave malattia.", + "example_sentence_english": "He was afflicted by a serious illness.", + "pos": "adjective", + "word_frequency": 16030 + }, + { + "word": "affondato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sunken;sunk", + "romanization": "affondato", + "example_sentence_native": "La nave è affondata.", + "example_sentence_english": "The ship has sunk.", + "pos": "adjective", + "word_frequency": 16031 + }, + { + "word": "alien", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alien", + "romanization": "alien", + "example_sentence_native": "Ha visto un film con un alien.", + "example_sentence_english": "He saw a movie with an alien.", + "pos": "noun", + "word_frequency": 16033 + }, + { + "word": "allarmante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alarming", + "romanization": "allarmante", + "example_sentence_native": "La situazione è allarmante.", + "example_sentence_english": "The situation is alarming.", + "pos": "adjective", + "word_frequency": 16036 + }, + { + "word": "alleggerire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lighten;to alleviate", + "romanization": "alleggerire", + "example_sentence_native": "Dobbiamo alleggerire il carico.", + "example_sentence_english": "We need to lighten the load.", + "pos": "verb", + "word_frequency": 16037 + }, + { + "word": "anticipatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in advance", + "romanization": "anticipatamente", + "example_sentence_native": "Ti ringrazio anticipatamente per la tua disponibilità.", + "example_sentence_english": "Thank you in advance for your availability.", + "pos": "adverb", + "word_frequency": 16041 + }, + { + "word": "armistizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "armistice", + "romanization": "armistizio", + "example_sentence_native": "Le nazioni firmarono un armistizio per cessare le ostilità.", + "example_sentence_english": "The nations signed an armistice to cease hostilities.", + "pos": "noun", + "word_frequency": 16044 + }, + { + "word": "autodeterminazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-determination", + "romanization": "autodeterminazione", + "example_sentence_native": "Il principio di autodeterminazione dei popoli è fondamentale.", + "example_sentence_english": "The principle of self-determination of peoples is fundamental.", + "pos": "noun", + "word_frequency": 16046 + }, + { + "word": "bag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bag", + "romanization": "bag", + "example_sentence_native": "Ho comprato una nuova bag per la spesa.", + "example_sentence_english": "I bought a new bag for shopping.", + "pos": "noun", + "word_frequency": 16047 + }, + { + "word": "batterico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bacterial", + "romanization": "batterico", + "example_sentence_native": "L'infezione è di origine batterica.", + "example_sentence_english": "The infection is of bacterial origin.", + "pos": "adjective", + "word_frequency": 16052 + }, + { + "word": "beniamino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "darling;favorite", + "romanization": "beniamino", + "example_sentence_native": "È il beniamino della nonna.", + "example_sentence_english": "He is his grandmother's darling.", + "pos": "noun", + "word_frequency": 16055 + }, + { + "word": "bilanciamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balancing;balance", + "romanization": "bilanciamento", + "example_sentence_native": "Il bilanciamento dei pesi è cruciale per la stabilità.", + "example_sentence_english": "The balancing of weights is crucial for stability.", + "pos": "noun", + "word_frequency": 16057 + }, + { + "word": "blockchain", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blockchain", + "romanization": "blockchain", + "example_sentence_native": "La blockchain è alla base delle criptovalute.", + "example_sentence_english": "Blockchain is the basis of cryptocurrencies.", + "pos": "noun", + "word_frequency": 16058 + }, + { + "word": "broccolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "broccoli (floret;head)", + "romanization": "broccolo", + "example_sentence_native": "Mi piace mangiare il broccolo al vapore.", + "example_sentence_english": "I like to eat steamed broccoli.", + "pos": "noun", + "word_frequency": 16060 + }, + { + "word": "burrone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ravine;gorge", + "romanization": "burrone", + "example_sentence_native": "Il sentiero costeggia un profondo burrone.", + "example_sentence_english": "The path runs along a deep ravine.", + "pos": "noun", + "word_frequency": 16062 + }, + { + "word": "caffetteria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cafeteria;coffee shop", + "romanization": "caffetteria", + "example_sentence_native": "Ci vediamo alla caffetteria dopo il lavoro.", + "example_sentence_english": "We'll see each other at the coffee shop after work.", + "pos": "noun", + "word_frequency": 16065 + }, + { + "word": "canaglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scoundrel;rascal", + "romanization": "canaglia", + "example_sentence_native": "Quel bambino è una vera canaglia, ma è adorabile.", + "example_sentence_english": "That child is a real rascal, but he's adorable.", + "pos": "noun", + "word_frequency": 16067 + }, + { + "word": "canino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "canine", + "romanization": "canino", + "example_sentence_native": "Il mio cane ha un istinto canino molto sviluppato.", + "example_sentence_english": "My dog has a very developed canine instinct.", + "pos": "adjective", + "word_frequency": 16068 + }, + { + "word": "cartografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cartography", + "romanization": "cartografia", + "example_sentence_native": "La cartografia è essenziale per la navigazione.", + "example_sentence_english": "Cartography is essential for navigation.", + "pos": "noun", + "word_frequency": 16069 + }, + { + "word": "chia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chia (seed)", + "romanization": "chia", + "example_sentence_native": "I semi di chia sono un superfood.", + "example_sentence_english": "Chia seeds are a superfood.", + "pos": "noun", + "word_frequency": 16072 + }, + { + "word": "chimera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chimera;pipe dream", + "romanization": "chimera", + "example_sentence_native": "La perfezione è spesso una chimera.", + "example_sentence_english": "Perfection is often a pipe dream.", + "pos": "noun", + "word_frequency": 16073 + }, + { + "word": "collinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hilly", + "romanization": "collinare", + "example_sentence_native": "La zona collinare offre panorami mozzafiato.", + "example_sentence_english": "The hilly area offers breathtaking views.", + "pos": "adjective", + "word_frequency": 16080 + }, + { + "word": "comparato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparative;compared", + "romanization": "comparato", + "example_sentence_native": "Abbiamo fatto uno studio comparato tra i due sistemi.", + "example_sentence_english": "We conducted a comparative study between the two systems.", + "pos": "adjective", + "word_frequency": 16081 + }, + { + "word": "compare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godfather;best man;pal", + "romanization": "compare", + "example_sentence_native": "Il mio compare di nozze mi ha aiutato molto.", + "example_sentence_english": "My best man helped me a lot.", + "pos": "noun", + "word_frequency": 16082 + }, + { + "word": "comparso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extra (film);walk-on part", + "romanization": "comparso", + "example_sentence_native": "Ha iniziato la sua carriera come comparso in un film.", + "example_sentence_english": "He started his career as an extra in a film.", + "pos": "noun", + "word_frequency": 16083 + }, + { + "word": "comperare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to buy", + "romanization": "comperare", + "example_sentence_native": "Voglio comperare un nuovo libro.", + "example_sentence_english": "I want to buy a new book.", + "pos": "verb", + "word_frequency": 16084 + }, + { + "word": "condito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seasoned;dressed (food)", + "romanization": "condito", + "example_sentence_native": "L'insalata era ben condita con olio e aceto.", + "example_sentence_english": "The salad was well seasoned with oil and vinegar.", + "pos": "adjective", + "word_frequency": 16085 + }, + { + "word": "confratello", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fellow member;brother (in a religious order)", + "romanization": "confratello", + "example_sentence_native": "Ha salutato il suo confratello con un abbraccio.", + "example_sentence_english": "He greeted his fellow member with a hug.", + "pos": "noun", + "word_frequency": 16086 + }, + { + "word": "criceto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hamster", + "romanization": "criceto", + "example_sentence_native": "Il mio criceto corre sulla ruota tutta la notte.", + "example_sentence_english": "My hamster runs on the wheel all night.", + "pos": "noun", + "word_frequency": 16087 + }, + { + "word": "cristianità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Christianity;Christendom", + "romanization": "cristianità", + "example_sentence_native": "La cristianità ha avuto un grande impatto sulla cultura europea.", + "example_sentence_english": "Christianity has had a great impact on European culture.", + "pos": "noun", + "word_frequency": 16088 + }, + { + "word": "cromosoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chromosome", + "romanization": "cromosoma", + "example_sentence_native": "Ogni cellula umana contiene 23 paia di cromosomi.", + "example_sentence_english": "Every human cell contains 23 pairs of chromosomes.", + "pos": "noun", + "word_frequency": 16089 + }, + { + "word": "crostata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tart;pie", + "romanization": "crostata", + "example_sentence_native": "Ho preparato una deliziosa crostata di frutta.", + "example_sentence_english": "I prepared a delicious fruit tart.", + "pos": "noun", + "word_frequency": 16090 + }, + { + "word": "danneggiamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damage;damaging", + "romanization": "danneggiamento", + "example_sentence_native": "Il danneggiamento della proprietà è un reato.", + "example_sentence_english": "Property damage is a crime.", + "pos": "noun", + "word_frequency": 16098 + }, + { + "word": "detector", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detector", + "romanization": "detector", + "example_sentence_native": "Il metal detector ha suonato all'aeroporto.", + "example_sentence_english": "The metal detector beeped at the airport.", + "pos": "noun", + "word_frequency": 16104 + }, + { + "word": "difeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "defended", + "romanization": "difeso", + "example_sentence_native": "Il castello era ben difeso dagli attacchi.", + "example_sentence_english": "The castle was well defended from attacks.", + "pos": "adjective", + "word_frequency": 16105 + }, + { + "word": "ecommerce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "e-commerce", + "romanization": "ecommerce", + "example_sentence_native": "Il settore dell'ecommerce è in forte crescita.", + "example_sentence_english": "The e-commerce sector is growing rapidly.", + "pos": "noun", + "word_frequency": 16108 + }, + { + "word": "evangelizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evangelization", + "romanization": "evangelizzazione", + "example_sentence_native": "La chiesa si occupa dell'evangelizzazione.", + "example_sentence_english": "The church is involved in evangelization.", + "pos": "noun", + "word_frequency": 16111 + }, + { + "word": "fallace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fallacious;misleading", + "romanization": "fallace", + "example_sentence_native": "Le sue argomentazioni erano fallaci.", + "example_sentence_english": "His arguments were fallacious.", + "pos": "adjective", + "word_frequency": 16112 + }, + { + "word": "ferrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "knowledgeable;expert;iron-clad", + "romanization": "ferrato", + "example_sentence_native": "È molto ferrato in materia di storia romana.", + "example_sentence_english": "He is very knowledgeable about Roman history.", + "pos": "adjective", + "word_frequency": 16113 + }, + { + "word": "finezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finesse;refinement;subtlety", + "romanization": "finezza", + "example_sentence_native": "Ha mostrato grande finezza nel suo lavoro.", + "example_sentence_english": "He showed great finesse in his work.", + "pos": "noun", + "word_frequency": 16114 + }, + { + "word": "firmware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "firmware", + "romanization": "firmware", + "example_sentence_native": "È necessario aggiornare il firmware del dispositivo.", + "example_sentence_english": "It is necessary to update the device's firmware.", + "pos": "noun", + "word_frequency": 16116 + }, + { + "word": "fisioterapista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physiotherapist", + "romanization": "fisioterapista", + "example_sentence_native": "Il fisioterapista mi ha aiutato a recuperare dopo l'infortunio.", + "example_sentence_english": "The physiotherapist helped me recover after the injury.", + "pos": "noun", + "word_frequency": 16117 + }, + { + "word": "focolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hearth;home;fireplace", + "romanization": "focolare", + "example_sentence_native": "Il focolare domestico è un luogo di calore e affetto.", + "example_sentence_english": "The family hearth is a place of warmth and affection.", + "pos": "noun", + "word_frequency": 16119 + }, + { + "word": "foga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ardor;passion", + "romanization": "foga", + "example_sentence_native": "Ha parlato con grande foga della sua idea.", + "example_sentence_english": "He spoke with great ardor about his idea.", + "pos": "noun", + "word_frequency": 16120 + }, + { + "word": "fraternità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fraternity;brotherhood", + "romanization": "fraternità", + "example_sentence_native": "La fraternità è un valore importante.", + "example_sentence_english": "Fraternity is an important value.", + "pos": "noun", + "word_frequency": 16122 + }, + { + "word": "fraterno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fraternal;brotherly", + "romanization": "fraterno", + "example_sentence_native": "Hanno un legame fraterno molto forte.", + "example_sentence_english": "They have a very strong fraternal bond.", + "pos": "adjective", + "word_frequency": 16123 + }, + { + "word": "frenesia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frenzy;rush", + "romanization": "frenesia", + "example_sentence_native": "C'era una frenesia di attività prima di Natale.", + "example_sentence_english": "There was a frenzy of activity before Christmas.", + "pos": "noun", + "word_frequency": 16124 + }, + { + "word": "generalizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to generalize", + "romanization": "generalizzare", + "example_sentence_native": "Non dovresti generalizzare su tutte le persone.", + "example_sentence_english": "You shouldn't generalize about all people.", + "pos": "verb", + "word_frequency": 16128 + }, + { + "word": "girevole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revolving;swivel", + "romanization": "girevole", + "example_sentence_native": "Ho comprato una sedia girevole per l'ufficio.", + "example_sentence_english": "I bought a swivel chair for the office.", + "pos": "adjective", + "word_frequency": 16129 + }, + { + "word": "guarito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "recovered;healed", + "romanization": "guarito", + "example_sentence_native": "Sono felice che tu sia guarito completamente.", + "example_sentence_english": "I'm happy that you have fully recovered.", + "pos": "adjective", + "word_frequency": 16131 + }, + { + "word": "incitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incite;to urge", + "romanization": "incitare", + "example_sentence_native": "Non dovresti incitare la violenza.", + "example_sentence_english": "You shouldn't incite violence.", + "pos": "verb", + "word_frequency": 16137 + }, + { + "word": "inclino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclined;prone", + "romanization": "inclino", + "example_sentence_native": "Sono inclino a credere alla sua versione.", + "example_sentence_english": "I am inclined to believe his version.", + "pos": "adjective", + "word_frequency": 16138 + }, + { + "word": "infliggere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inflict", + "romanization": "infliggere", + "example_sentence_native": "Non voleva infliggere dolore a nessuno.", + "example_sentence_english": "He didn't want to inflict pain on anyone.", + "pos": "verb", + "word_frequency": 16141 + }, + { + "word": "infondato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfounded;baseless", + "romanization": "infondato", + "example_sentence_native": "Le sue accuse erano completamente infondate.", + "example_sentence_english": "His accusations were completely unfounded.", + "pos": "adjective", + "word_frequency": 16142 + }, + { + "word": "infortunato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "injured", + "romanization": "infortunato", + "example_sentence_native": "Il giocatore è rimasto infortunato durante la partita.", + "example_sentence_english": "The player was injured during the match.", + "pos": "adjective", + "word_frequency": 16143 + }, + { + "word": "insorgenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "onset;outbreak", + "romanization": "insorgenza", + "example_sentence_native": "L'insorgenza della malattia è stata improvvisa.", + "example_sentence_english": "The onset of the disease was sudden.", + "pos": "noun", + "word_frequency": 16144 + }, + { + "word": "intaccare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to damage;to erode", + "romanization": "intaccare", + "example_sentence_native": "La ruggine ha iniziato a intaccare il metallo.", + "example_sentence_english": "The rust began to damage the metal.", + "pos": "verb", + "word_frequency": 16145 + }, + { + "word": "intervenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intervened;present (as in having taken part)", + "romanization": "intervenuto", + "example_sentence_native": "La persona intervenuta ha risolto il problema.", + "example_sentence_english": "The person who intervened solved the problem.", + "pos": "adjective", + "word_frequency": 16146 + }, + { + "word": "involontario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involuntary;unintentional", + "romanization": "involontario", + "example_sentence_native": "Ha fatto un errore involontario.", + "example_sentence_english": "He made an unintentional mistake.", + "pos": "adjective", + "word_frequency": 16147 + }, + { + "word": "iodio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iodine", + "romanization": "iodio", + "example_sentence_native": "Il sale iodato è importante per la salute.", + "example_sentence_english": "Iodized salt is important for health.", + "pos": "noun", + "word_frequency": 16148 + }, + { + "word": "ispanico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hispanic", + "romanization": "ispanico", + "example_sentence_native": "La cultura ispanica è molto ricca.", + "example_sentence_english": "Hispanic culture is very rich.", + "pos": "adjective", + "word_frequency": 16149 + }, + { + "word": "isterico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hysterical", + "romanization": "isterico", + "example_sentence_native": "Era isterico dal ridere.", + "example_sentence_english": "He was hysterical with laughter.", + "pos": "adjective", + "word_frequency": 16150 + }, + { + "word": "juniores", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "juniors (sports);youth", + "romanization": "juniores", + "example_sentence_native": "La squadra juniores ha vinto il campionato.", + "example_sentence_english": "The junior team won the championship.", + "pos": "noun", + "word_frequency": 16151 + }, + { + "word": "lembo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flap;edge;piece", + "romanization": "lembo", + "example_sentence_native": "Ha strappato un lembo di stoffa.", + "example_sentence_english": "He tore a flap of fabric.", + "pos": "noun", + "word_frequency": 16156 + }, + { + "word": "malvivente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "criminal", + "romanization": "malvivente", + "example_sentence_native": "La polizia ha arrestato il malvivente dopo una lunga indagine.", + "example_sentence_english": "The police arrested the criminal after a long investigation.", + "pos": "noun", + "word_frequency": 16161 + }, + { + "word": "megafono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "megaphone", + "romanization": "megafono", + "example_sentence_native": "L'allenatore ha usato un megafono per farsi sentire.", + "example_sentence_english": "The coach used a megaphone to make himself heard.", + "pos": "noun", + "word_frequency": 16163 + }, + { + "word": "melodramma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "melodrama", + "romanization": "melodramma", + "example_sentence_native": "Il melodramma italiano è famoso in tutto il mondo.", + "example_sentence_english": "Italian melodrama is famous all over the world.", + "pos": "noun", + "word_frequency": 16164 + }, + { + "word": "microchip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "microchip", + "romanization": "microchip", + "example_sentence_native": "Ogni smartphone contiene numerosi microchip.", + "example_sentence_english": "Every smartphone contains numerous microchips.", + "pos": "noun", + "word_frequency": 16166 + }, + { + "word": "miraggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mirage", + "romanization": "miraggio", + "example_sentence_native": "Nel deserto, il miraggio dell'acqua può ingannare.", + "example_sentence_english": "In the desert, the mirage of water can deceive.", + "pos": "noun", + "word_frequency": 16167 + }, + { + "word": "molesto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annoying", + "romanization": "molesto", + "example_sentence_native": "Il rumore costante era molto molesto.", + "example_sentence_english": "The constant noise was very annoying.", + "pos": "adjective", + "word_frequency": 16170 + }, + { + "word": "mollusco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mollusk", + "romanization": "mollusco", + "example_sentence_native": "Le ostriche sono un tipo di mollusco.", + "example_sentence_english": "Oysters are a type of mollusk.", + "pos": "noun", + "word_frequency": 16171 + }, + { + "word": "museale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "museum-like", + "romanization": "museale", + "example_sentence_native": "L'allestimento della mostra era di qualità museale.", + "example_sentence_english": "The exhibition's setup was of museum quality.", + "pos": "adjective", + "word_frequency": 16174 + }, + { + "word": "nocivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "harmful", + "romanization": "nocivo", + "example_sentence_native": "Il fumo è nocivo per la salute.", + "example_sentence_english": "Smoking is harmful to health.", + "pos": "adjective", + "word_frequency": 16178 + }, + { + "word": "opaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opaque", + "romanization": "opaco", + "example_sentence_native": "Il vetro opaco non permette di vedere attraverso.", + "example_sentence_english": "Opaque glass does not allow one to see through.", + "pos": "adjective", + "word_frequency": 16181 + }, + { + "word": "ospizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nursing home", + "romanization": "ospizio", + "example_sentence_native": "Molti anziani vivono in un ospizio.", + "example_sentence_english": "Many elderly people live in a nursing home.", + "pos": "noun", + "word_frequency": 16183 + }, + { + "word": "pantera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panther", + "romanization": "pantera", + "example_sentence_native": "La pantera è un felino elegante e potente.", + "example_sentence_english": "The panther is an elegant and powerful feline.", + "pos": "noun", + "word_frequency": 16184 + }, + { + "word": "paranoico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranoid", + "romanization": "paranoico", + "example_sentence_native": "Si sentiva sempre osservato, quasi paranoico.", + "example_sentence_english": "He always felt watched, almost paranoid.", + "pos": "adjective", + "word_frequency": 16186 + }, + { + "word": "pegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pledge", + "romanization": "pegno", + "example_sentence_native": "Ha lasciato l'orologio come pegno per il prestito.", + "example_sentence_english": "He left the watch as collateral for the loan.", + "pos": "noun", + "word_frequency": 16187 + }, + { + "word": "plebe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plebs", + "romanization": "plebe", + "example_sentence_native": "Nell'antica Roma, la plebe aveva pochi diritti.", + "example_sentence_english": "In ancient Rome, the plebs had few rights.", + "pos": "noun", + "word_frequency": 16190 + }, + { + "word": "pollaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chicken coop", + "romanization": "pollaio", + "example_sentence_native": "Le galline tornano al pollaio al tramonto.", + "example_sentence_english": "The hens return to the chicken coop at sunset.", + "pos": "noun", + "word_frequency": 16192 + }, + { + "word": "porgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to offer", + "romanization": "porgere", + "example_sentence_native": "Mi ha porto la mano per salutarmi.", + "example_sentence_english": "He offered me his hand to greet me.", + "pos": "verb", + "word_frequency": 16194 + }, + { + "word": "posseduto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possessed", + "romanization": "posseduto", + "example_sentence_native": "La casa sembrava posseduta da spiriti.", + "example_sentence_english": "The house seemed possessed by spirits.", + "pos": "adjective", + "word_frequency": 16195 + }, + { + "word": "pragmatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pragmatic", + "romanization": "pragmatico", + "example_sentence_native": "È una persona molto pratica e pragmatica.", + "example_sentence_english": "He is a very practical and pragmatic person.", + "pos": "adjective", + "word_frequency": 16196 + }, + { + "word": "predominio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "predominance", + "romanization": "predominio", + "example_sentence_native": "La squadra ha mantenuto il predominio per tutta la partita.", + "example_sentence_english": "The team maintained dominance throughout the match.", + "pos": "noun", + "word_frequency": 16197 + }, + { + "word": "presagio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omen", + "romanization": "presagio", + "example_sentence_native": "Il cielo scuro era un presagio di tempesta.", + "example_sentence_english": "The dark sky was an omen of a storm.", + "pos": "noun", + "word_frequency": 16198 + }, + { + "word": "progettuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "project-related", + "romanization": "progettuale", + "example_sentence_native": "La fase progettuale è cruciale per il successo del lavoro.", + "example_sentence_english": "The design phase is crucial for the success of the work.", + "pos": "adjective", + "word_frequency": 16199 + }, + { + "word": "proposizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "proposition;clause", + "romanization": "proposizione", + "example_sentence_native": "La proposizione principale è il cuore della frase.", + "example_sentence_english": "The main clause is the heart of the sentence.", + "pos": "noun", + "word_frequency": 16200 + }, + { + "word": "proseguito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continued;proceeded", + "romanization": "proseguito", + "example_sentence_native": "Il lavoro è proseguito senza interruzioni.", + "example_sentence_english": "The work continued without interruptions.", + "pos": "adjective", + "word_frequency": 16201 + }, + { + "word": "quantificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quantify", + "romanization": "quantificare", + "example_sentence_native": "Dobbiamo quantificare i danni subiti.", + "example_sentence_english": "We need to quantify the damages incurred.", + "pos": "verb", + "word_frequency": 16203 + }, + { + "word": "quotato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "listed;quoted (on a stock exchange);highly regarded", + "romanization": "quotato", + "example_sentence_native": "L'azienda è quotata in borsa.", + "example_sentence_english": "The company is listed on the stock exchange.", + "pos": "adjective", + "word_frequency": 16205 + }, + { + "word": "ravvicinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "close-up;near;approaching", + "romanization": "ravvicinato", + "example_sentence_native": "Abbiamo avuto un incontro ravvicinato con la fauna selvatica.", + "example_sentence_english": "We had a close-up encounter with the wildlife.", + "pos": "adjective", + "word_frequency": 16207 + }, + { + "word": "recipiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "container;receptacle", + "romanization": "recipiente", + "example_sentence_native": "Versa l'acqua nel recipiente.", + "example_sentence_english": "Pour the water into the container.", + "pos": "noun", + "word_frequency": 16208 + }, + { + "word": "recuperato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recovered;retrieved", + "romanization": "recuperato", + "example_sentence_native": "Il telefono smarrito è stato recuperato.", + "example_sentence_english": "The lost phone has been recovered.", + "pos": "adjective", + "word_frequency": 16209 + }, + { + "word": "riconferma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconfirmation;reaffirmation", + "romanization": "riconferma", + "example_sentence_native": "Attendiamo la riconferma dell'appuntamento.", + "example_sentence_english": "We are awaiting reconfirmation of the appointment.", + "pos": "noun", + "word_frequency": 16210 + }, + { + "word": "rieducazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "re-education;rehabilitation", + "romanization": "rieducazione", + "example_sentence_native": "Il programma di rieducazione mira al reinserimento sociale.", + "example_sentence_english": "The re-education program aims at social reintegration.", + "pos": "noun", + "word_frequency": 16211 + }, + { + "word": "rinvenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "found;discovered", + "romanization": "rinvenuto", + "example_sentence_native": "L'oggetto rubato è stato rinvenuto dalla polizia.", + "example_sentence_english": "The stolen object was found by the police.", + "pos": "adjective", + "word_frequency": 16212 + }, + { + "word": "ripasso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "review;revision", + "romanization": "ripasso", + "example_sentence_native": "Facciamo un ripasso prima dell'esame.", + "example_sentence_english": "Let's do a review before the exam.", + "pos": "noun", + "word_frequency": 16213 + }, + { + "word": "ritocco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "touch-up;retouch", + "romanization": "ritocco", + "example_sentence_native": "Ha fatto un piccolo ritocco alla foto.", + "example_sentence_english": "She made a small touch-up to the photo.", + "pos": "noun", + "word_frequency": 16214 + }, + { + "word": "rivolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trickle;streamlet", + "romanization": "rivolo", + "example_sentence_native": "Un piccolo rivolo d'acqua scendeva dalla roccia.", + "example_sentence_english": "A small trickle of water flowed down from the rock.", + "pos": "noun", + "word_frequency": 16215 + }, + { + "word": "rosmarino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rosemary", + "romanization": "rosmarino", + "example_sentence_native": "Il rosmarino è un'erba aromatica molto usata in cucina.", + "example_sentence_english": "Rosemary is an aromatic herb widely used in cooking.", + "pos": "noun", + "word_frequency": 16216 + }, + { + "word": "rovesciamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overthrow;overturning;capsizing", + "romanization": "rovesciamento", + "example_sentence_native": "Il rovesciamento del governo ha causato instabilità.", + "example_sentence_english": "The overthrow of the government caused instability.", + "pos": "noun", + "word_frequency": 16217 + }, + { + "word": "sacrosanto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacrosanct;inviolable", + "romanization": "sacrosanto", + "example_sentence_native": "È un diritto sacrosanto di ogni cittadino.", + "example_sentence_english": "It is a sacrosanct right of every citizen.", + "pos": "adjective", + "word_frequency": 16219 + }, + { + "word": "santino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holy card;small saint's image", + "romanization": "santino", + "example_sentence_native": "Ha sempre un santino nel portafoglio.", + "example_sentence_english": "He always has a holy card in his wallet.", + "pos": "noun", + "word_frequency": 16220 + }, + { + "word": "scagnozzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "henchman;minion", + "romanization": "scagnozzo", + "example_sentence_native": "Il boss ha mandato i suoi scagnozzi a riscuotere.", + "example_sentence_english": "The boss sent his henchmen to collect.", + "pos": "noun", + "word_frequency": 16221 + }, + { + "word": "scavalcare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to climb over;to bypass;to override", + "romanization": "scavalcare", + "example_sentence_native": "Ha scavalcato il muro per entrare nel giardino.", + "example_sentence_english": "He climbed over the wall to enter the garden.", + "pos": "verb", + "word_frequency": 16222 + }, + { + "word": "sceneggiata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dramatic scene;theatrical display;melodrama", + "romanization": "sceneggiata", + "example_sentence_native": "Non fare una sceneggiata per così poco!", + "example_sentence_english": "Don't make a dramatic scene for so little!", + "pos": "noun", + "word_frequency": 16223 + }, + { + "word": "scenico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scenic;theatrical", + "romanization": "scenico", + "example_sentence_native": "L'allestimento scenico era molto suggestivo.", + "example_sentence_english": "The scenic design was very evocative.", + "pos": "adjective", + "word_frequency": 16224 + }, + { + "word": "serrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tight;intense;closed", + "romanization": "serrato", + "example_sentence_native": "Hanno mantenuto un ritmo serrato durante la gara.", + "example_sentence_english": "They maintained an intense pace during the race.", + "pos": "adjective", + "word_frequency": 16225 + }, + { + "word": "siepe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hedge", + "romanization": "siepe", + "example_sentence_native": "La siepe del giardino ha bisogno di essere tagliata.", + "example_sentence_english": "The garden hedge needs to be trimmed.", + "pos": "noun", + "word_frequency": 16227 + }, + { + "word": "simulatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulator", + "romanization": "simulatore", + "example_sentence_native": "Ha imparato a volare con un simulatore di volo.", + "example_sentence_english": "He learned to fly with a flight simulator.", + "pos": "noun", + "word_frequency": 16229 + }, + { + "word": "sottosopra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upside down;in a mess", + "romanization": "sottosopra", + "example_sentence_native": "La stanza era tutta sottosopra dopo la festa.", + "example_sentence_english": "The room was all upside down after the party.", + "pos": "adverb", + "word_frequency": 16231 + }, + { + "word": "sprovvista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprepared;unawares (as in 'to catch unawares')", + "romanization": "sprovvista", + "example_sentence_native": "La notizia mi ha colto alla sprovvista.", + "example_sentence_english": "The news caught me unawares.", + "pos": "noun", + "word_frequency": 16233 + }, + { + "word": "stimolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stimulated;encouraged", + "romanization": "stimolato", + "example_sentence_native": "Si sente stimolato da nuove sfide.", + "example_sentence_english": "He feels stimulated by new challenges.", + "pos": "adjective", + "word_frequency": 16235 + }, + { + "word": "sutura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suture;stitch", + "romanization": "sutura", + "example_sentence_native": "Il medico ha applicato una sutura alla ferita.", + "example_sentence_english": "The doctor applied a suture to the wound.", + "pos": "noun", + "word_frequency": 16239 + }, + { + "word": "tachicardia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tachycardia", + "romanization": "tachicardia", + "example_sentence_native": "Il paziente ha sviluppato tachicardia dopo l'intervento.", + "example_sentence_english": "The patient developed tachycardia after the surgery.", + "pos": "noun", + "word_frequency": 16240 + }, + { + "word": "tagliatella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tagliatelle (a type of pasta)", + "romanization": "tagliatella", + "example_sentence_native": "Ho ordinato un piatto di tagliatelle al ragù.", + "example_sentence_english": "I ordered a plate of tagliatelle with meat sauce.", + "pos": "noun", + "word_frequency": 16241 + }, + { + "word": "tallone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heel", + "romanization": "tallone", + "example_sentence_native": "Mi fa male il tallone dopo la lunga camminata.", + "example_sentence_english": "My heel hurts after the long walk.", + "pos": "noun", + "word_frequency": 16242 + }, + { + "word": "tintura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dye;tincture", + "romanization": "tintura", + "example_sentence_native": "Ha usato una tintura per capelli per cambiare colore.", + "example_sentence_english": "She used a hair dye to change color.", + "pos": "noun", + "word_frequency": 16244 + }, + { + "word": "tiratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shooter;marksman", + "romanization": "tiratore", + "example_sentence_native": "Il tiratore ha colpito il bersaglio con precisione.", + "example_sentence_english": "The shooter hit the target with precision.", + "pos": "noun", + "word_frequency": 16245 + }, + { + "word": "tossina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "toxin", + "romanization": "tossina", + "example_sentence_native": "La tossina prodotta dal batterio è molto pericolosa.", + "example_sentence_english": "The toxin produced by the bacterium is very dangerous.", + "pos": "noun", + "word_frequency": 16248 + }, + { + "word": "trance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trance", + "romanization": "trance", + "example_sentence_native": "Era in uno stato di trance profonda durante l'ipnosi.", + "example_sentence_english": "She was in a deep trance during hypnosis.", + "pos": "noun", + "word_frequency": 16249 + }, + { + "word": "trentennale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thirty-year;triennial", + "romanization": "trentennale", + "example_sentence_native": "Hanno celebrato il loro anniversario trentennale.", + "example_sentence_english": "They celebrated their thirty-year anniversary.", + "pos": "adjective", + "word_frequency": 16250 + }, + { + "word": "ultimato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "completed;finished", + "romanization": "ultimato", + "example_sentence_native": "Il progetto è stato ultimato in tempo.", + "example_sentence_english": "The project was completed on time.", + "pos": "adjective", + "word_frequency": 16251 + }, + { + "word": "unto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greasy;oily", + "romanization": "unto", + "example_sentence_native": "Le sue mani erano unte di grasso.", + "example_sentence_english": "His hands were greasy with fat.", + "pos": "adjective", + "word_frequency": 16252 + }, + { + "word": "veggente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seer;clairvoyant", + "romanization": "veggente", + "example_sentence_native": "La veggente predissee il suo futuro.", + "example_sentence_english": "The seer predicted her future.", + "pos": "noun", + "word_frequency": 16253 + }, + { + "word": "venia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pardon;forgiveness", + "romanization": "venia", + "example_sentence_native": "Chiedo venia per il disturbo.", + "example_sentence_english": "I ask for pardon for the disturbance.", + "pos": "noun", + "word_frequency": 16254 + }, + { + "word": "vicissitudine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vicissitude;change of fortune", + "romanization": "vicissitudine", + "example_sentence_native": "La vita è piena di vicissitudini inaspettate.", + "example_sentence_english": "Life is full of unexpected vicissitudes.", + "pos": "noun", + "word_frequency": 16255 + }, + { + "word": "viscere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viscera;internal organs", + "romanization": "viscere", + "example_sentence_native": "Il chirurgo ha esaminato le viscere del paziente.", + "example_sentence_english": "The surgeon examined the patient's viscera.", + "pos": "noun", + "word_frequency": 16256 + }, + { + "word": "acclamato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acclaimed;celebrated", + "romanization": "acclamato", + "example_sentence_native": "L'attore è stato acclamato dalla critica.", + "example_sentence_english": "The actor was acclaimed by critics.", + "pos": "adjective", + "word_frequency": 16259 + }, + { + "word": "adottivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adoptive", + "romanization": "adottivo", + "example_sentence_native": "È il suo figlio adottivo.", + "example_sentence_english": "He is her adoptive son.", + "pos": "adjective", + "word_frequency": 16261 + }, + { + "word": "agilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agility", + "romanization": "agilità", + "example_sentence_native": "L'atleta ha dimostrato grande agilità.", + "example_sentence_english": "The athlete demonstrated great agility.", + "pos": "noun", + "word_frequency": 16262 + }, + { + "word": "amazzone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Amazon (female warrior)", + "romanization": "amazzone", + "example_sentence_native": "Le amazzoni erano guerriere leggendarie.", + "example_sentence_english": "The Amazons were legendary warriors.", + "pos": "noun", + "word_frequency": 16266 + }, + { + "word": "ammirevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admirable", + "romanization": "ammirevole", + "example_sentence_native": "Il suo coraggio è ammirevole.", + "example_sentence_english": "His courage is admirable.", + "pos": "adjective", + "word_frequency": 16268 + }, + { + "word": "antiquariato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiques;antique dealing", + "romanization": "antiquariato", + "example_sentence_native": "Ha comprato un mobile di antiquariato.", + "example_sentence_english": "He bought an antique piece of furniture.", + "pos": "noun", + "word_frequency": 16270 + }, + { + "word": "antiterrorismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-terrorism", + "romanization": "antiterrorismo", + "example_sentence_native": "Le forze di antiterrorismo sono in allerta.", + "example_sentence_english": "The anti-terrorism forces are on alert.", + "pos": "noun", + "word_frequency": 16271 + }, + { + "word": "arcade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arcade (game or architectural structure)", + "romanization": "arcade", + "example_sentence_native": "Abbiamo giocato a un vecchio gioco arcade.", + "example_sentence_english": "We played an old arcade game.", + "pos": "noun", + "word_frequency": 16273 + }, + { + "word": "ascensione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ascension;ascent", + "romanization": "ascensione", + "example_sentence_native": "L'ascensione al monte è stata difficile.", + "example_sentence_english": "The ascension to the mountain was difficult.", + "pos": "noun", + "word_frequency": 16275 + }, + { + "word": "assistenziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "welfare;assistance-related", + "romanization": "assistenziale", + "example_sentence_native": "Hanno bisogno di servizi assistenziali.", + "example_sentence_english": "They need welfare services.", + "pos": "adjective", + "word_frequency": 16277 + }, + { + "word": "astronomico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astronomical", + "romanization": "astronomico", + "example_sentence_native": "Il costo era astronomico.", + "example_sentence_english": "The cost was astronomical.", + "pos": "adjective", + "word_frequency": 16278 + }, + { + "word": "auspicare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hope for;to wish for", + "romanization": "auspicare", + "example_sentence_native": "Auspichiamo che la situazione migliori presto.", + "example_sentence_english": "We hope that the situation improves soon.", + "pos": "verb", + "word_frequency": 16280 + }, + { + "word": "balneare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bathing;seaside", + "romanization": "balneare", + "example_sentence_native": "La località balneare è molto popolare in estate.", + "example_sentence_english": "The seaside resort is very popular in summer.", + "pos": "adjective", + "word_frequency": 16281 + }, + { + "word": "bicocca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "small fortress;shack", + "romanization": "bicocca", + "example_sentence_native": "Viveva in una vecchia bicocca in cima alla collina.", + "example_sentence_english": "He lived in an old shack on top of the hill.", + "pos": "noun", + "word_frequency": 16285 + }, + { + "word": "bigliettino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small note;little ticket", + "romanization": "bigliettino", + "example_sentence_native": "Mi ha lasciato un bigliettino sul tavolo.", + "example_sentence_english": "He left me a small note on the table.", + "pos": "noun", + "word_frequency": 16286 + }, + { + "word": "binomio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binomial;pair;combination", + "romanization": "binomio", + "example_sentence_native": "Il binomio \"salute e benessere\" è fondamentale.", + "example_sentence_english": "The binomial \"health and well-being\" is fundamental.", + "pos": "noun", + "word_frequency": 16287 + }, + { + "word": "biografico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "biographical", + "romanization": "biografico", + "example_sentence_native": "Ho visto un film biografico sulla vita di un artista famoso.", + "example_sentence_english": "I saw a biographical film about the life of a famous artist.", + "pos": "adjective", + "word_frequency": 16288 + }, + { + "word": "bollito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "boiled", + "romanization": "bollito", + "example_sentence_native": "Preferisco le patate bollite a quelle fritte.", + "example_sentence_english": "I prefer boiled potatoes to fried ones.", + "pos": "adjective", + "word_frequency": 16289 + }, + { + "word": "borsetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "handbag;small bag", + "romanization": "borsetta", + "example_sentence_native": "Ha dimenticato la sua borsetta sul tavolo.", + "example_sentence_english": "She forgot her handbag on the table.", + "pos": "noun", + "word_frequency": 16291 + }, + { + "word": "bozzetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sketch;preliminary drawing", + "romanization": "bozzetto", + "example_sentence_native": "L'artista ha preparato un bozzetto per il nuovo dipinto.", + "example_sentence_english": "The artist prepared a sketch for the new painting.", + "pos": "noun", + "word_frequency": 16293 + }, + { + "word": "calamita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnet", + "romanization": "calamita", + "example_sentence_native": "Ho attaccato la foto al frigorifero con una calamita.", + "example_sentence_english": "I attached the photo to the fridge with a magnet.", + "pos": "noun", + "word_frequency": 16295 + }, + { + "word": "capolista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leader of the list;frontrunner", + "romanization": "capolista", + "example_sentence_native": "Il capolista del partito ha tenuto un discorso.", + "example_sentence_english": "The party's frontrunner gave a speech.", + "pos": "noun", + "word_frequency": 16296 + }, + { + "word": "carnefice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "executioner;tormentor", + "romanization": "carnefice", + "example_sentence_native": "La vittima ha riconosciuto il suo carnefice.", + "example_sentence_english": "The victim recognized her tormentor.", + "pos": "noun", + "word_frequency": 16297 + }, + { + "word": "carrozzina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pram;stroller;wheelchair", + "romanization": "carrozzina", + "example_sentence_native": "La mamma spingeva la carrozzina con il bambino.", + "example_sentence_english": "The mother was pushing the pram with the baby.", + "pos": "noun", + "word_frequency": 16299 + }, + { + "word": "catalizzatore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catalyst", + "romanization": "catalizzatore", + "example_sentence_native": "Il nuovo leader è stato un catalizzatore per il cambiamento.", + "example_sentence_english": "The new leader was a catalyst for change.", + "pos": "noun", + "word_frequency": 16302 + }, + { + "word": "cavalcata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ride (on horseback);cavalcade", + "romanization": "cavalcata", + "example_sentence_native": "Abbiamo fatto una lunga cavalcata in montagna.", + "example_sentence_english": "We went for a long ride in the mountains.", + "pos": "noun", + "word_frequency": 16304 + }, + { + "word": "cavata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extraction;drawing out", + "romanization": "cavata", + "example_sentence_native": "La cavata del dente è stata dolorosa.", + "example_sentence_english": "The tooth extraction was painful.", + "pos": "noun", + "word_frequency": 16305 + }, + { + "word": "celere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swift;quick;prompt", + "romanization": "celere", + "example_sentence_native": "Hanno agito con celere prontezza.", + "example_sentence_english": "They acted with swift readiness.", + "pos": "adjective", + "word_frequency": 16306 + }, + { + "word": "cilindrata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engine displacement;cylinder capacity", + "romanization": "cilindrata", + "example_sentence_native": "La cilindrata di questa moto è di 600 cc.", + "example_sentence_english": "The engine displacement of this motorcycle is 600 cc.", + "pos": "noun", + "word_frequency": 16308 + }, + { + "word": "cofanetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small box;box set", + "romanization": "cofanetto", + "example_sentence_native": "Ho comprato un cofanetto di DVD della mia serie preferita.", + "example_sentence_english": "I bought a box set of DVDs of my favorite series.", + "pos": "noun", + "word_frequency": 16310 + }, + { + "word": "collaborativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collaborative", + "romanization": "collaborativo", + "example_sentence_native": "Il nostro team è molto collaborativo.", + "example_sentence_english": "Our team is very collaborative.", + "pos": "adjective", + "word_frequency": 16311 + }, + { + "word": "compressore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressor", + "romanization": "compressore", + "example_sentence_native": "Il meccanico ha usato un compressore d'aria.", + "example_sentence_english": "The mechanic used an air compressor.", + "pos": "noun", + "word_frequency": 16312 + }, + { + "word": "conversare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to converse;to chat", + "romanization": "conversare", + "example_sentence_native": "Ci piace conversare per ore al caffè.", + "example_sentence_english": "We like to converse for hours at the cafe.", + "pos": "verb", + "word_frequency": 16313 + }, + { + "word": "crocevia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossroads;intersection", + "romanization": "crocevia", + "example_sentence_native": "Siamo arrivati a un crocevia importante nella nostra vita.", + "example_sentence_english": "We have arrived at an important crossroads in our lives.", + "pos": "noun", + "word_frequency": 16315 + }, + { + "word": "degradazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degradation;deterioration", + "romanization": "degradazione", + "example_sentence_native": "La degradazione ambientale è una seria preoccupazione.", + "example_sentence_english": "Environmental degradation is a serious concern.", + "pos": "noun", + "word_frequency": 16319 + }, + { + "word": "demente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demented", + "romanization": "demente", + "example_sentence_native": "Il suo comportamento era così demente che nessuno lo prendeva sul serio.", + "example_sentence_english": "His behavior was so demented that no one took him seriously.", + "pos": "adjective", + "word_frequency": 16324 + }, + { + "word": "demolito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demolished", + "romanization": "demolito", + "example_sentence_native": "L'edificio vecchio è stato completamente demolito.", + "example_sentence_english": "The old building has been completely demolished.", + "pos": "adjective", + "word_frequency": 16325 + }, + { + "word": "deriso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ridiculed", + "romanization": "deriso", + "example_sentence_native": "Si sentiva deriso da tutti i suoi compagni.", + "example_sentence_english": "He felt ridiculed by all his classmates.", + "pos": "adjective", + "word_frequency": 16326 + }, + { + "word": "difficoltoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difficult", + "romanization": "difficoltoso", + "example_sentence_native": "Il percorso per raggiungere la cima era molto difficoltoso.", + "example_sentence_english": "The path to reach the summit was very arduous.", + "pos": "adjective", + "word_frequency": 16328 + }, + { + "word": "dilatazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilation", + "romanization": "dilatazione", + "example_sentence_native": "La dilatazione termica dei metalli è un fenomeno fisico.", + "example_sentence_english": "The thermal expansion of metals is a physical phenomenon.", + "pos": "noun", + "word_frequency": 16329 + }, + { + "word": "diurno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diurnal", + "romanization": "diurno", + "example_sentence_native": "Gli animali diurni sono attivi durante il giorno.", + "example_sentence_english": "Diurnal animals are active during the day.", + "pos": "adjective", + "word_frequency": 16332 + }, + { + "word": "doppiatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voice actor", + "romanization": "doppiatore", + "example_sentence_native": "Il doppiatore ha dato la voce a molti personaggi famosi.", + "example_sentence_english": "The voice actor gave voice to many famous characters.", + "pos": "noun", + "word_frequency": 16334 + }, + { + "word": "editto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edict", + "romanization": "editto", + "example_sentence_native": "L'imperatore ha emesso un nuovo editto.", + "example_sentence_english": "The emperor issued a new edict.", + "pos": "noun", + "word_frequency": 16336 + }, + { + "word": "egida", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "aegis", + "romanization": "egida", + "example_sentence_native": "Il progetto è stato realizzato sotto l'egida dell'università.", + "example_sentence_english": "The project was carried out under the aegis of the university.", + "pos": "noun", + "word_frequency": 16337 + }, + { + "word": "eminente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eminent", + "romanization": "eminente", + "example_sentence_native": "È un professore eminente nel suo campo di studi.", + "example_sentence_english": "He is an eminent professor in his field of study.", + "pos": "adjective", + "word_frequency": 16341 + }, + { + "word": "enciclica", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "encyclical", + "romanization": "enciclica", + "example_sentence_native": "Il Papa ha pubblicato una nuova enciclica sulla giustizia sociale.", + "example_sentence_english": "The Pope published a new encyclical on social justice.", + "pos": "noun", + "word_frequency": 16342 + }, + { + "word": "esaurito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhausted", + "romanization": "esaurito", + "example_sentence_native": "Sono completamente esaurito dopo una lunga giornata di lavoro.", + "example_sentence_english": "I am completely exhausted after a long day of work.", + "pos": "adjective", + "word_frequency": 16346 + }, + { + "word": "estremismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extremism", + "romanization": "estremismo", + "example_sentence_native": "L'estremismo è una minaccia per la democrazia.", + "example_sentence_english": "Extremism is a threat to democracy.", + "pos": "noun", + "word_frequency": 16349 + }, + { + "word": "faida", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feud", + "romanization": "faida", + "example_sentence_native": "La faida tra le due famiglie durava da generazioni.", + "example_sentence_english": "The feud between the two families had lasted for generations.", + "pos": "noun", + "word_frequency": 16351 + }, + { + "word": "fervente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fervent", + "romanization": "fervente", + "example_sentence_native": "Era un sostenitore fervente della causa.", + "example_sentence_english": "He was a fervent supporter of the cause.", + "pos": "adjective", + "word_frequency": 16353 + }, + { + "word": "fittizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fictitious", + "romanization": "fittizio", + "example_sentence_native": "Il personaggio è completamente fittizio e non basato su persone reali.", + "example_sentence_english": "The character is completely fictitious and not based on real people.", + "pos": "adjective", + "word_frequency": 16356 + }, + { + "word": "fluire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flow", + "romanization": "fluire", + "example_sentence_native": "L'acqua del fiume continua a fluire verso il mare.", + "example_sentence_english": "The river water continues to flow towards the sea.", + "pos": "verb", + "word_frequency": 16357 + }, + { + "word": "focolaio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outbreak", + "romanization": "focolaio", + "example_sentence_native": "È stato identificato un nuovo focolaio dell'epidemia.", + "example_sentence_english": "A new outbreak of the epidemic has been identified.", + "pos": "noun", + "word_frequency": 16358 + }, + { + "word": "forca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gallows", + "romanization": "forca", + "example_sentence_native": "Un tempo, i criminali venivano impiccati alla forca.", + "example_sentence_english": "In the past, criminals were hanged on the gallows.", + "pos": "noun", + "word_frequency": 16359 + }, + { + "word": "fotovoltaico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "photovoltaic", + "romanization": "fotovoltaico", + "example_sentence_native": "Abbiamo installato pannelli fotovoltaici sul tetto.", + "example_sentence_english": "We installed photovoltaic panels on the roof.", + "pos": "adjective", + "word_frequency": 16360 + }, + { + "word": "frittella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fritter", + "romanization": "frittella", + "example_sentence_native": "Mi piace mangiare le frittelle a colazione.", + "example_sentence_english": "I like to eat fritters for breakfast.", + "pos": "noun", + "word_frequency": 16363 + }, + { + "word": "funk", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funk (music genre)", + "romanization": "funk", + "example_sentence_native": "Ascolto musica funk quando voglio ballare.", + "example_sentence_english": "I listen to funk music when I want to dance.", + "pos": "noun", + "word_frequency": 16364 + }, + { + "word": "genoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genome", + "romanization": "genoma", + "example_sentence_native": "Lo studio del genoma umano ha rivoluzionato la medicina.", + "example_sentence_english": "The study of the human genome has revolutionized medicine.", + "pos": "noun", + "word_frequency": 16366 + }, + { + "word": "gilet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waistcoat", + "romanization": "gilet", + "example_sentence_native": "Indossava un elegante gilet sopra la camicia.", + "example_sentence_english": "He wore an elegant waistcoat over his shirt.", + "pos": "noun", + "word_frequency": 16368 + }, + { + "word": "gratificante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratifying", + "romanization": "gratificante", + "example_sentence_native": "Aiutare gli altri è un'esperienza molto gratificante.", + "example_sentence_english": "Helping others is a very gratifying experience.", + "pos": "adjective", + "word_frequency": 16369 + }, + { + "word": "guerrigliero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guerrilla fighter", + "romanization": "guerrigliero", + "example_sentence_native": "Il guerrigliero è stato catturato dalle forze armate.", + "example_sentence_english": "The guerrilla fighter was captured by the armed forces.", + "pos": "noun", + "word_frequency": 16370 + }, + { + "word": "haram", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "forbidden (in Islam)", + "romanization": "haram", + "example_sentence_native": "Per i musulmani, il consumo di carne di maiale è haram.", + "example_sentence_english": "For Muslims, eating pork is haram.", + "pos": "noun", + "word_frequency": 16372 + }, + { + "word": "idroelettrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydroelectric", + "romanization": "idroelettrico", + "example_sentence_native": "L'energia idroelettrica è una fonte rinnovabile.", + "example_sentence_english": "Hydroelectric energy is a renewable source.", + "pos": "adjective", + "word_frequency": 16377 + }, + { + "word": "immaturo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immature", + "romanization": "immaturo", + "example_sentence_native": "Il suo comportamento è stato molto immaturo.", + "example_sentence_english": "His behavior was very immature.", + "pos": "adjective", + "word_frequency": 16378 + }, + { + "word": "imprenditoria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "entrepreneurship", + "romanization": "imprenditoria", + "example_sentence_native": "L'imprenditoria giovanile è in crescita.", + "example_sentence_english": "Youth entrepreneurship is growing.", + "pos": "noun", + "word_frequency": 16379 + }, + { + "word": "inaffidabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unreliable", + "romanization": "inaffidabile", + "example_sentence_native": "È una persona inaffidabile, non puoi contare su di lui.", + "example_sentence_english": "He is an unreliable person, you can't count on him.", + "pos": "adjective", + "word_frequency": 16380 + }, + { + "word": "incarcerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imprison", + "romanization": "incarcerare", + "example_sentence_native": "Il giudice ha deciso di incarcerare il colpevole.", + "example_sentence_english": "The judge decided to imprison the culprit.", + "pos": "verb", + "word_frequency": 16381 + }, + { + "word": "incosciente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconscious", + "romanization": "incosciente", + "example_sentence_native": "Dopo l'incidente, è rimasto incosciente per ore.", + "example_sentence_english": "After the accident, he remained unconscious for hours.", + "pos": "adjective", + "word_frequency": 16382 + }, + { + "word": "inserto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insert", + "romanization": "inserto", + "example_sentence_native": "Ho trovato un inserto pubblicitario nel giornale.", + "example_sentence_english": "I found an advertising insert in the newspaper.", + "pos": "noun", + "word_frequency": 16384 + }, + { + "word": "intonaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plaster", + "romanization": "intonaco", + "example_sentence_native": "L'intonaco del muro si sta sgretolando.", + "example_sentence_english": "The plaster on the wall is crumbling.", + "pos": "noun", + "word_frequency": 16385 + }, + { + "word": "lepre", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hare", + "romanization": "lepre", + "example_sentence_native": "La lepre è un animale molto veloce.", + "example_sentence_english": "The hare is a very fast animal.", + "pos": "noun", + "word_frequency": 16391 + }, + { + "word": "lodevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commendable", + "romanization": "lodevole", + "example_sentence_native": "Il suo impegno è stato davvero lodevole.", + "example_sentence_english": "His commitment was truly commendable.", + "pos": "adjective", + "word_frequency": 16392 + }, + { + "word": "lombare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lumbar", + "romanization": "lombare", + "example_sentence_native": "Ho un forte dolore lombare.", + "example_sentence_english": "I have severe lumbar pain.", + "pos": "adjective", + "word_frequency": 16393 + }, + { + "word": "malinconico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "melancholic", + "romanization": "malinconico", + "example_sentence_native": "La musica era molto malinconica.", + "example_sentence_english": "The music was very melancholic.", + "pos": "adjective", + "word_frequency": 16394 + }, + { + "word": "manina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little hand", + "romanization": "manina", + "example_sentence_native": "Il bambino mi ha dato la sua manina.", + "example_sentence_english": "The child gave me his little hand.", + "pos": "noun", + "word_frequency": 16395 + }, + { + "word": "mascara", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mascara", + "romanization": "mascara", + "example_sentence_native": "Si è messa il mascara prima di uscire.", + "example_sentence_english": "She put on mascara before going out.", + "pos": "noun", + "word_frequency": 16397 + }, + { + "word": "masseria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masseria (fortified farmhouse)", + "romanization": "masseria", + "example_sentence_native": "Abbiamo soggiornato in una bellissima masseria in Puglia.", + "example_sentence_english": "We stayed in a beautiful masseria in Puglia.", + "pos": "noun", + "word_frequency": 16398 + }, + { + "word": "mensilmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monthly", + "romanization": "mensilmente", + "example_sentence_native": "Ricevo la bolletta mensilmente.", + "example_sentence_english": "I receive the bill monthly.", + "pos": "adverb", + "word_frequency": 16399 + }, + { + "word": "milza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spleen", + "romanization": "milza", + "example_sentence_native": "La milza è un organo importante nel sistema immunitario.", + "example_sentence_english": "The spleen is an important organ in the immune system.", + "pos": "noun", + "word_frequency": 16400 + }, + { + "word": "mortadella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mortadella (a type of Italian sausage)", + "romanization": "mortadella", + "example_sentence_native": "Vorrei un panino con la mortadella, per favore.", + "example_sentence_english": "I would like a mortadella sandwich, please.", + "pos": "noun", + "word_frequency": 16402 + }, + { + "word": "motrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "locomotive;driving force", + "romanization": "motrice", + "example_sentence_native": "La motrice del treno era molto potente.", + "example_sentence_english": "The train's locomotive was very powerful.", + "pos": "noun", + "word_frequency": 16403 + }, + { + "word": "mutandina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "panty;brief (small underwear)", + "romanization": "mutandina", + "example_sentence_native": "La bambina indossava una mutandina rosa.", + "example_sentence_english": "The little girl was wearing pink panties.", + "pos": "noun", + "word_frequency": 16406 + }, + { + "word": "nocciolina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peanut", + "romanization": "nocciolina", + "example_sentence_native": "Mi piacciono le noccioline salate come spuntino.", + "example_sentence_english": "I like salted peanuts as a snack.", + "pos": "noun", + "word_frequency": 16409 + }, + { + "word": "oltremare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overseas;beyond the sea", + "romanization": "oltremare", + "example_sentence_native": "Molti prodotti esotici provengono dall'oltremare.", + "example_sentence_english": "Many exotic products come from overseas.", + "pos": "noun", + "word_frequency": 16410 + }, + { + "word": "orco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ogre;goblin", + "romanization": "orco", + "example_sentence_native": "Nel bosco viveva un orco cattivo che spaventava i bambini.", + "example_sentence_english": "In the forest lived a wicked ogre who scared the children.", + "pos": "noun", + "word_frequency": 16411 + }, + { + "word": "pacifista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pacifist", + "romanization": "pacifista", + "example_sentence_native": "È un convinto pacifista e si oppone a ogni forma di violenza.", + "example_sentence_english": "He is a convinced pacifist and opposes all forms of violence.", + "pos": "noun", + "word_frequency": 16413 + }, + { + "word": "patron", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boss;patron;sponsor;patron saint", + "romanization": "patron", + "example_sentence_native": "Il patron della festa ha offerto da bere a tutti.", + "example_sentence_english": "The patron of the party offered drinks to everyone.", + "pos": "noun", + "word_frequency": 16414 + }, + { + "word": "pendio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slope;hillside", + "romanization": "pendio", + "example_sentence_native": "La casa si trova su un ripido pendio con vista sul mare.", + "example_sentence_english": "The house is located on a steep slope with a sea view.", + "pos": "noun", + "word_frequency": 16415 + }, + { + "word": "persiana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shutter;Venetian blind", + "romanization": "persiana", + "example_sentence_native": "Ho chiuso le persiane per bloccare la luce del sole.", + "example_sentence_english": "I closed the shutters to block the sunlight.", + "pos": "noun", + "word_frequency": 16416 + }, + { + "word": "pistacchio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pistachio", + "romanization": "pistacchio", + "example_sentence_native": "Il gelato al pistacchio è il mio preferito.", + "example_sentence_english": "Pistachio ice cream is my favorite.", + "pos": "noun", + "word_frequency": 16417 + }, + { + "word": "predicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preaching;sermon", + "romanization": "predicazione", + "example_sentence_native": "La sua predicazione era molto ispirata e commovente.", + "example_sentence_english": "His preaching was very inspired and moving.", + "pos": "noun", + "word_frequency": 16420 + }, + { + "word": "prestabilire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pre-establish;to predetermine", + "romanization": "prestabilire", + "example_sentence_native": "Dobbiamo prestabilire le regole prima di iniziare il gioco.", + "example_sentence_english": "We must pre-establish the rules before starting the game.", + "pos": "verb", + "word_frequency": 16421 + }, + { + "word": "rebus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rebus;puzzle;riddle", + "romanization": "rebus", + "example_sentence_native": "Questo problema è un vero rebus per me.", + "example_sentence_english": "This problem is a real puzzle for me.", + "pos": "noun", + "word_frequency": 16427 + }, + { + "word": "redditizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profitable;lucrative", + "romanization": "redditizio", + "example_sentence_native": "L'investimento si è rivelato molto redditizio.", + "example_sentence_english": "The investment proved to be very profitable.", + "pos": "adjective", + "word_frequency": 16428 + }, + { + "word": "riluttanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reluctance;unwillingness", + "romanization": "riluttanza", + "example_sentence_native": "Ha mostrato una certa riluttanza ad accettare la proposta.", + "example_sentence_english": "He showed some reluctance to accept the proposal.", + "pos": "noun", + "word_frequency": 16431 + }, + { + "word": "ringhiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railing;banister", + "romanization": "ringhiera", + "example_sentence_native": "Si è appoggiato alla ringhiera per guardare giù.", + "example_sentence_english": "He leaned on the railing to look down.", + "pos": "noun", + "word_frequency": 16432 + }, + { + "word": "rosato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pinkish;rosy", + "romanization": "rosato", + "example_sentence_native": "Il cielo al tramonto aveva un colore rosato.", + "example_sentence_english": "The sky at sunset had a pinkish color.", + "pos": "adjective", + "word_frequency": 16434 + }, + { + "word": "rugiada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dew", + "romanization": "rugiada", + "example_sentence_native": "L'erba era coperta di rugiada al mattino.", + "example_sentence_english": "The grass was covered with dew in the morning.", + "pos": "noun", + "word_frequency": 16435 + }, + { + "word": "saggistica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-fiction (literature)", + "romanization": "saggistica", + "example_sentence_native": "Leggo molta saggistica per approfondire le mie conoscenze.", + "example_sentence_english": "I read a lot of non-fiction to deepen my knowledge.", + "pos": "noun", + "word_frequency": 16437 + }, + { + "word": "sanare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to heal;to remedy;to regularize", + "romanization": "sanare", + "example_sentence_native": "Il medico ha cercato di sanare la ferita.", + "example_sentence_english": "The doctor tried to heal the wound.", + "pos": "verb", + "word_frequency": 16438 + }, + { + "word": "sapiens", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wise;knowing (often in 'Homo sapiens')", + "romanization": "sapiens", + "example_sentence_native": "L'Homo sapiens è la specie umana moderna.", + "example_sentence_english": "Homo sapiens is the modern human species.", + "pos": "adjective", + "word_frequency": 16439 + }, + { + "word": "scalino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "step;stair", + "romanization": "scalino", + "example_sentence_native": "Fai attenzione a non inciampare sull'ultimo scalino.", + "example_sentence_english": "Be careful not to trip on the last step.", + "pos": "noun", + "word_frequency": 16440 + }, + { + "word": "sciame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swarm", + "romanization": "sciame", + "example_sentence_native": "Un grande sciame di api si è posato sull'albero.", + "example_sentence_english": "A large swarm of bees settled on the tree.", + "pos": "noun", + "word_frequency": 16441 + }, + { + "word": "scola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "colander;drainer", + "romanization": "scola", + "example_sentence_native": "Usa la scola per scolare la pasta.", + "example_sentence_english": "Use the colander to drain the pasta.", + "pos": "noun", + "word_frequency": 16442 + }, + { + "word": "scomunica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excommunication", + "romanization": "scomunica", + "example_sentence_native": "La scomunica è una pena ecclesiastica grave.", + "example_sentence_english": "Excommunication is a serious ecclesiastical penalty.", + "pos": "noun", + "word_frequency": 16443 + }, + { + "word": "semente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seed;sowing", + "romanization": "semente", + "example_sentence_native": "È tempo di preparare il terreno per la semente.", + "example_sentence_english": "It's time to prepare the soil for sowing.", + "pos": "noun", + "word_frequency": 16445 + }, + { + "word": "senape", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mustard", + "romanization": "senape", + "example_sentence_native": "Vorrei un hot dog con ketchup e senape.", + "example_sentence_english": "I would like a hot dog with ketchup and mustard.", + "pos": "noun", + "word_frequency": 16446 + }, + { + "word": "senile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senile;elderly", + "romanization": "senile", + "example_sentence_native": "Molte persone anziane soffrono di demenza senile.", + "example_sentence_english": "Many elderly people suffer from senile dementia.", + "pos": "adjective", + "word_frequency": 16447 + }, + { + "word": "sfaccettatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "facet;nuance", + "romanization": "sfaccettatura", + "example_sentence_native": "Ogni sfaccettatura del problema deve essere considerata.", + "example_sentence_english": "Every facet of the problem must be considered.", + "pos": "noun", + "word_frequency": 16449 + }, + { + "word": "singhiozzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hiccup;sob", + "romanization": "singhiozzo", + "example_sentence_native": "Non riusciva a smettere di avere il singhiozzo.", + "example_sentence_english": "He couldn't stop hiccuping.", + "pos": "noun", + "word_frequency": 16451 + }, + { + "word": "smascherare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unmask;to expose", + "romanization": "smascherare", + "example_sentence_native": "Il giornalista è riuscito a smascherare la corruzione.", + "example_sentence_english": "The journalist managed to expose the corruption.", + "pos": "verb", + "word_frequency": 16452 + }, + { + "word": "sottomettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to submit;to subjugate", + "romanization": "sottomettere", + "example_sentence_native": "Non si è voluto sottomettere alla volontà del tiranno.", + "example_sentence_english": "He did not want to submit to the tyrant's will.", + "pos": "verb", + "word_frequency": 16453 + }, + { + "word": "spazzare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to sweep", + "romanization": "spazzare", + "example_sentence_native": "Devo spazzare il pavimento prima che arrivino gli ospiti.", + "example_sentence_english": "I need to sweep the floor before the guests arrive.", + "pos": "verb", + "word_frequency": 16454 + }, + { + "word": "spazzola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brush", + "romanization": "spazzola", + "example_sentence_native": "Ho comprato una nuova spazzola per i capelli.", + "example_sentence_english": "I bought a new hairbrush.", + "pos": "noun", + "word_frequency": 16455 + }, + { + "word": "spinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbed;thorny", + "romanization": "spinato", + "example_sentence_native": "Il filo spinato impediva l'accesso.", + "example_sentence_english": "The barbed wire prevented access.", + "pos": "adjective", + "word_frequency": 16456 + }, + { + "word": "sporgere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to protrude;to stick out;to lean out", + "romanization": "sporgere", + "example_sentence_native": "Non sporgere la testa dal finestrino.", + "example_sentence_english": "Do not stick your head out of the window.", + "pos": "verb", + "word_frequency": 16457 + }, + { + "word": "sproposito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blunder;nonsense;absurdity", + "romanization": "sproposito", + "example_sentence_native": "Ha detto uno sproposito che ha offeso tutti.", + "example_sentence_english": "He said a blunder that offended everyone.", + "pos": "noun", + "word_frequency": 16458 + }, + { + "word": "stilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to draw up;to draft", + "romanization": "stilare", + "example_sentence_native": "Dobbiamo stilare un nuovo contratto.", + "example_sentence_english": "We need to draw up a new contract.", + "pos": "verb", + "word_frequency": 16460 + }, + { + "word": "superstrada", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "highway;expressway", + "romanization": "superstrada", + "example_sentence_native": "Per arrivare più velocemente, prendi la superstrada.", + "example_sentence_english": "To get there faster, take the highway.", + "pos": "noun", + "word_frequency": 16461 + }, + { + "word": "supplicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beg;to implore", + "romanization": "supplicare", + "example_sentence_native": "Lo supplicò di perdonarlo.", + "example_sentence_english": "He begged him to forgive him.", + "pos": "verb", + "word_frequency": 16462 + }, + { + "word": "temibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "formidable;dreadful", + "romanization": "temibile", + "example_sentence_native": "Era un avversario temibile in campo.", + "example_sentence_english": "He was a formidable opponent on the field.", + "pos": "adjective", + "word_frequency": 16463 + }, + { + "word": "templare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Templar (Knight Templar)", + "romanization": "templare", + "example_sentence_native": "I Cavalieri Templari erano un ordine monastico-militare.", + "example_sentence_english": "The Knights Templar were a monastic-military order.", + "pos": "noun", + "word_frequency": 16464 + }, + { + "word": "topografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "topography", + "romanization": "topografia", + "example_sentence_native": "Lo studio della topografia è essenziale per la pianificazione urbana.", + "example_sentence_english": "The study of topography is essential for urban planning.", + "pos": "noun", + "word_frequency": 16466 + }, + { + "word": "trapelare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to leak;to transpire", + "romanization": "trapelare", + "example_sentence_native": "La notizia è trapelata ai media.", + "example_sentence_english": "The news leaked to the media.", + "pos": "verb", + "word_frequency": 16467 + }, + { + "word": "trattino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hyphen;dash", + "romanization": "trattino", + "example_sentence_native": "Usa un trattino per unire le due parole.", + "example_sentence_english": "Use a hyphen to join the two words.", + "pos": "noun", + "word_frequency": 16468 + }, + { + "word": "triade", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triad", + "romanization": "triade", + "example_sentence_native": "La triade di divinità era venerata nell'antica religione.", + "example_sentence_english": "The triad of deities was worshipped in the ancient religion.", + "pos": "noun", + "word_frequency": 16469 + }, + { + "word": "trionfare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to triumph;to win", + "romanization": "trionfare", + "example_sentence_native": "La squadra è riuscita a trionfare nonostante le difficoltà.", + "example_sentence_english": "The team managed to triumph despite the difficulties.", + "pos": "verb", + "word_frequency": 16470 + }, + { + "word": "tunica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tunic", + "romanization": "tunica", + "example_sentence_native": "Nell'antica Roma, gli uomini indossavano una tunica.", + "example_sentence_english": "In ancient Rome, men wore a tunic.", + "pos": "noun", + "word_frequency": 16471 + }, + { + "word": "usuale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "usual;customary", + "romanization": "usuale", + "example_sentence_native": "È la sua reazione usuale in queste situazioni.", + "example_sentence_english": "It's his usual reaction in these situations.", + "pos": "adjective", + "word_frequency": 16472 + }, + { + "word": "vassallo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vassal", + "romanization": "vassallo", + "example_sentence_native": "Il vassallo giurò fedeltà al suo signore.", + "example_sentence_english": "The vassal swore loyalty to his lord.", + "pos": "noun", + "word_frequency": 16474 + }, + { + "word": "venezuelano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Venezuelan", + "romanization": "venezuelano", + "example_sentence_native": "La cucina venezuelana è molto varia.", + "example_sentence_english": "Venezuelan cuisine is very varied.", + "pos": "adjective", + "word_frequency": 16476 + }, + { + "word": "viscerale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visceral;instinctive", + "romanization": "viscerale", + "example_sentence_native": "Aveva una reazione viscerale alla sua proposta.", + "example_sentence_english": "He had a visceral reaction to her proposal.", + "pos": "adjective", + "word_frequency": 16479 + }, + { + "word": "zanna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fang;tusk", + "romanization": "zanna", + "example_sentence_native": "Il lupo mostrava le sue zanne affilate.", + "example_sentence_english": "The wolf showed its sharp fangs.", + "pos": "noun", + "word_frequency": 16484 + }, + { + "word": "zenit", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "zenith", + "romanization": "zenit", + "example_sentence_native": "Il sole raggiunse il suo zenit a mezzogiorno.", + "example_sentence_english": "The sun reached its zenith at noon.", + "pos": "noun", + "word_frequency": 16485 + }, + { + "word": "zingara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gypsy woman (Roma woman)", + "romanization": "zingara", + "example_sentence_native": "La zingara leggeva le carte del futuro.", + "example_sentence_english": "The gypsy woman read the future cards.", + "pos": "noun", + "word_frequency": 16486 + }, + { + "word": "abbreviazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abbreviation", + "romanization": "abbreviazione", + "example_sentence_native": "\"Es.\" è l'abbreviazione di \"esempio\".", + "example_sentence_english": "\"Ex.\" is the abbreviation for \"example\".", + "pos": "noun", + "word_frequency": 16488 + }, + { + "word": "accordare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grant;to tune", + "romanization": "accordare", + "example_sentence_native": "Il governo ha deciso di accordare un prestito.", + "example_sentence_english": "The government decided to grant a loan.", + "pos": "verb", + "word_frequency": 16490 + }, + { + "word": "amido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "starch", + "romanization": "amido", + "example_sentence_native": "Le patate sono ricche di amido.", + "example_sentence_english": "Potatoes are rich in starch.", + "pos": "noun", + "word_frequency": 16495 + }, + { + "word": "antisemita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antisemitic", + "romanization": "antisemita", + "example_sentence_native": "Le sue dichiarazioni erano chiaramente antisemite.", + "example_sentence_english": "His statements were clearly antisemitic.", + "pos": "adjective", + "word_frequency": 16497 + }, + { + "word": "antitesi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antithesis", + "romanization": "antitesi", + "example_sentence_native": "La sua proposta è l'antitesi della nostra.", + "example_sentence_english": "His proposal is the antithesis of ours.", + "pos": "noun", + "word_frequency": 16498 + }, + { + "word": "arcata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arch;arcade", + "romanization": "arcata", + "example_sentence_native": "L'arcata del ponte era molto robusta.", + "example_sentence_english": "The arch of the bridge was very sturdy.", + "pos": "noun", + "word_frequency": 16501 + }, + { + "word": "autovettura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "passenger car;automobile", + "romanization": "autovettura", + "example_sentence_native": "L'autovettura era parcheggiata in doppia fila.", + "example_sentence_english": "The passenger car was double-parked.", + "pos": "noun", + "word_frequency": 16504 + }, + { + "word": "baronessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baroness", + "romanization": "baronessa", + "example_sentence_native": "La baronessa indossava un abito elegante.", + "example_sentence_english": "The baroness wore an elegant dress.", + "pos": "noun", + "word_frequency": 16506 + }, + { + "word": "beige", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beige", + "romanization": "beige", + "example_sentence_native": "Ha comprato un divano color beige.", + "example_sentence_english": "She bought a beige colored sofa.", + "pos": "adjective", + "word_frequency": 16507 + }, + { + "word": "benda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bandage;blindfold", + "romanization": "benda", + "example_sentence_native": "Il medico ha applicato una benda sulla ferita.", + "example_sentence_english": "The doctor applied a bandage to the wound.", + "pos": "noun", + "word_frequency": 16508 + }, + { + "word": "biasimare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blame;to criticize", + "romanization": "biasimare", + "example_sentence_native": "Non puoi biasimarlo per l'errore.", + "example_sentence_english": "You can't blame him for the mistake.", + "pos": "verb", + "word_frequency": 16510 + }, + { + "word": "caloroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warm;hearty", + "romanization": "caloroso", + "example_sentence_native": "Abbiamo ricevuto un'accoglienza molto calorosa.", + "example_sentence_english": "We received a very warm welcome.", + "pos": "adjective", + "word_frequency": 16518 + }, + { + "word": "calpestare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to trample;to step on", + "romanization": "calpestare", + "example_sentence_native": "Fai attenzione a non calpestare i fiori.", + "example_sentence_english": "Be careful not to trample the flowers.", + "pos": "verb", + "word_frequency": 16519 + }, + { + "word": "cameraman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cameraman", + "romanization": "cameraman", + "example_sentence_native": "Il cameraman ha ripreso l'intera scena.", + "example_sentence_english": "The cameraman filmed the entire scene.", + "pos": "noun", + "word_frequency": 16520 + }, + { + "word": "castagno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chestnut tree", + "romanization": "castagno", + "example_sentence_native": "Nel bosco c'è un vecchio castagno.", + "example_sentence_english": "There is an old chestnut tree in the woods.", + "pos": "noun", + "word_frequency": 16522 + }, + { + "word": "casualità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "randomness;chance", + "romanization": "casualità", + "example_sentence_native": "La casualità degli eventi ci ha portati qui.", + "example_sentence_english": "The randomness of events brought us here.", + "pos": "noun", + "word_frequency": 16523 + }, + { + "word": "centrifuga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "centrifuge;spin cycle", + "romanization": "centrifuga", + "example_sentence_native": "La lavatrice è in modalità centrifuga.", + "example_sentence_english": "The washing machine is in spin cycle mode.", + "pos": "noun", + "word_frequency": 16525 + }, + { + "word": "chemioterapia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chemotherapy", + "romanization": "chemioterapia", + "example_sentence_native": "Ha iniziato un ciclo di chemioterapia.", + "example_sentence_english": "He started a course of chemotherapy.", + "pos": "noun", + "word_frequency": 16527 + }, + { + "word": "cianuro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cyanide", + "romanization": "cianuro", + "example_sentence_native": "Il cianuro è un veleno letale.", + "example_sentence_english": "Cyanide is a lethal poison.", + "pos": "noun", + "word_frequency": 16529 + }, + { + "word": "cimice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bug;bedbug;stink bug", + "romanization": "cimice", + "example_sentence_native": "Ho trovato una cimice sul muro.", + "example_sentence_english": "I found a bug on the wall.", + "pos": "noun", + "word_frequency": 16530 + }, + { + "word": "contemplazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contemplation", + "romanization": "contemplazione", + "example_sentence_native": "Si è perso nella contemplazione del paesaggio.", + "example_sentence_english": "He got lost in the contemplation of the landscape.", + "pos": "noun", + "word_frequency": 16531 + }, + { + "word": "cuscinetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small cushion;bearing", + "romanization": "cuscinetto", + "example_sentence_native": "Il meccanico ha sostituito il cuscinetto.", + "example_sentence_english": "The mechanic replaced the bearing.", + "pos": "noun", + "word_frequency": 16534 + }, + { + "word": "detersivo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "detergent", + "romanization": "detersivo", + "example_sentence_native": "Ho finito il detersivo per i piatti.", + "example_sentence_english": "I ran out of dish detergent.", + "pos": "noun", + "word_frequency": 16535 + }, + { + "word": "diaspora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diaspora", + "romanization": "diaspora", + "example_sentence_native": "La diaspora ebraica è un evento storico significativo.", + "example_sentence_english": "The Jewish diaspora is a significant historical event.", + "pos": "noun", + "word_frequency": 16536 + }, + { + "word": "dicotomia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dichotomy", + "romanization": "dicotomia", + "example_sentence_native": "Esiste una chiara dicotomia tra teoria e pratica.", + "example_sentence_english": "There is a clear dichotomy between theory and practice.", + "pos": "noun", + "word_frequency": 16537 + }, + { + "word": "discordante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discordant;conflicting", + "romanization": "discordante", + "example_sentence_native": "Le loro opinioni erano completamente discordanti.", + "example_sentence_english": "Their opinions were completely conflicting.", + "pos": "adjective", + "word_frequency": 16538 + }, + { + "word": "discostare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to move away;to deviate", + "romanization": "discostare", + "example_sentence_native": "È meglio discostarsi da certe idee.", + "example_sentence_english": "It's better to deviate from certain ideas.", + "pos": "verb", + "word_frequency": 16539 + }, + { + "word": "disperdere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disperse;to scatter", + "romanization": "disperdere", + "example_sentence_native": "Il vento ha disperso le foglie secche.", + "example_sentence_english": "The wind scattered the dry leaves.", + "pos": "verb", + "word_frequency": 16540 + }, + { + "word": "distaccamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detachment;separation", + "romanization": "distaccamento", + "example_sentence_native": "Un distaccamento di soldati è stato inviato.", + "example_sentence_english": "A detachment of soldiers was sent.", + "pos": "noun", + "word_frequency": 16541 + }, + { + "word": "dodicenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twelve-year-old", + "romanization": "dodicenne", + "example_sentence_native": "Mia sorella è una dodicenne molto vivace.", + "example_sentence_english": "My sister is a very lively twelve-year-old.", + "pos": "adjective", + "word_frequency": 16542 + }, + { + "word": "facoltativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optional;elective", + "romanization": "facoltativo", + "example_sentence_native": "La partecipazione al corso è facoltativa.", + "example_sentence_english": "Participation in the course is optional.", + "pos": "adjective", + "word_frequency": 16547 + }, + { + "word": "fattibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feasibility", + "romanization": "fattibilità", + "example_sentence_native": "Stiamo valutando la fattibilità del progetto.", + "example_sentence_english": "We are evaluating the feasibility of the project.", + "pos": "noun", + "word_frequency": 16548 + }, + { + "word": "filetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fillet;tenderloin;thread (screw)", + "romanization": "filetto", + "example_sentence_native": "Vorrei un filetto di manzo ben cotto.", + "example_sentence_english": "I would like a well-cooked beef fillet.", + "pos": "noun", + "word_frequency": 16551 + }, + { + "word": "folletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goblin;imp", + "romanization": "folletto", + "example_sentence_native": "Si dice che i folletti vivano nei boschi.", + "example_sentence_english": "It is said that goblins live in the woods.", + "pos": "noun", + "word_frequency": 16553 + }, + { + "word": "fregio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frieze;ornament", + "romanization": "fregio", + "example_sentence_native": "Il fregio del tempio era riccamente decorato.", + "example_sentence_english": "The frieze of the temple was richly decorated.", + "pos": "noun", + "word_frequency": 16554 + }, + { + "word": "furbetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sly one;cunning person", + "romanization": "furbetto", + "example_sentence_native": "Quel bambino è un vero furbetto.", + "example_sentence_english": "That child is a real sly one.", + "pos": "noun", + "word_frequency": 16555 + }, + { + "word": "galante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gallant;chivalrous", + "romanization": "galante", + "example_sentence_native": "Si è dimostrato molto galante con le signore.", + "example_sentence_english": "He proved to be very gallant with the ladies.", + "pos": "adjective", + "word_frequency": 16558 + }, + { + "word": "ghiacciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frozen;icy", + "romanization": "ghiacciato", + "example_sentence_native": "L'acqua nel bicchiere era ghiacciata.", + "example_sentence_english": "The water in the glass was frozen.", + "pos": "adjective", + "word_frequency": 16560 + }, + { + "word": "giallorosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "yellow and red", + "romanization": "giallorosso", + "example_sentence_native": "La squadra giallorossa ha vinto la partita.", + "example_sentence_english": "The yellow and red team won the match.", + "pos": "adjective", + "word_frequency": 16561 + }, + { + "word": "ginger", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ginger", + "romanization": "ginger", + "example_sentence_native": "Mi piace aggiungere un po' di ginger al tè.", + "example_sentence_english": "I like to add some ginger to my tea.", + "pos": "noun", + "word_frequency": 16562 + }, + { + "word": "gonfiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inflate;to swell", + "romanization": "gonfiare", + "example_sentence_native": "Dobbiamo gonfiare le gomme della bicicletta.", + "example_sentence_english": "We need to inflate the bicycle tires.", + "pos": "verb", + "word_frequency": 16564 + }, + { + "word": "impeto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impetus;impulse;rush", + "romanization": "impeto", + "example_sentence_native": "Ha agito d'impeto, senza pensarci due volte.", + "example_sentence_english": "He acted on impulse, without thinking twice.", + "pos": "noun", + "word_frequency": 16569 + }, + { + "word": "incitamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encouragement;incitement", + "romanization": "incitamento", + "example_sentence_native": "I tifosi hanno dato un grande incitamento alla squadra.", + "example_sentence_english": "The fans gave great encouragement to the team.", + "pos": "noun", + "word_frequency": 16571 + }, + { + "word": "incivile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncivil;rude", + "romanization": "incivile", + "example_sentence_native": "Il suo comportamento è stato molto incivile.", + "example_sentence_english": "His behavior was very uncivil.", + "pos": "adjective", + "word_frequency": 16572 + }, + { + "word": "infuso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infusion;herbal tea", + "romanization": "infuso", + "example_sentence_native": "Bevo un infuso di camomilla prima di dormire.", + "example_sentence_english": "I drink a chamomile infusion before sleeping.", + "pos": "noun", + "word_frequency": 16573 + }, + { + "word": "ingombrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulky;cumbersome", + "romanization": "ingombrante", + "example_sentence_native": "Questo mobile è troppo ingombrante per la stanza.", + "example_sentence_english": "This piece of furniture is too bulky for the room.", + "pos": "adjective", + "word_frequency": 16574 + }, + { + "word": "inibitore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhibitor", + "romanization": "inibitore", + "example_sentence_native": "Lo scienziato ha studiato l'effetto dell'inibitore sulla reazione.", + "example_sentence_english": "The scientist studied the effect of the inhibitor on the reaction.", + "pos": "noun", + "word_frequency": 16575 + }, + { + "word": "innaturale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnatural", + "romanization": "innaturale", + "example_sentence_native": "Il suo sorriso sembrava innaturale.", + "example_sentence_english": "Her smile seemed unnatural.", + "pos": "adjective", + "word_frequency": 16576 + }, + { + "word": "intimidire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intimidate", + "romanization": "intimidire", + "example_sentence_native": "Non lasciarti intimidire dalle sue minacce.", + "example_sentence_english": "Don't let yourself be intimidated by his threats.", + "pos": "verb", + "word_frequency": 16577 + }, + { + "word": "intoppo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hitch;snag;obstacle", + "romanization": "intoppo", + "example_sentence_native": "Abbiamo avuto un piccolo intoppo con la consegna.", + "example_sentence_english": "We had a small hitch with the delivery.", + "pos": "noun", + "word_frequency": 16578 + }, + { + "word": "lizza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lists;arena (often in 'in the running')", + "romanization": "lizza", + "example_sentence_native": "È in lizza per il premio più importante.", + "example_sentence_english": "He is in the running for the most important prize.", + "pos": "noun", + "word_frequency": 16586 + }, + { + "word": "lumia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lumia (a type of citrus fruit)", + "romanization": "lumia", + "example_sentence_native": "La lumia è un agrume simile al limone.", + "example_sentence_english": "The lumia is a citrus fruit similar to a lemon.", + "pos": "noun", + "word_frequency": 16589 + }, + { + "word": "lussuria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lust", + "romanization": "lussuria", + "example_sentence_native": "La lussuria è considerata uno dei sette peccati capitali.", + "example_sentence_english": "Lust is considered one of the seven deadly sins.", + "pos": "noun", + "word_frequency": 16591 + }, + { + "word": "macelleria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "butcher shop", + "romanization": "macelleria", + "example_sentence_native": "Vado in macelleria a comprare la carne.", + "example_sentence_english": "I'm going to the butcher shop to buy meat.", + "pos": "noun", + "word_frequency": 16593 + }, + { + "word": "malincuore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reluctance;unwillingness", + "romanization": "malincuore", + "example_sentence_native": "Ha accettato a malincuore la decisione.", + "example_sentence_english": "He reluctantly accepted the decision.", + "pos": "noun", + "word_frequency": 16594 + }, + { + "word": "mecenate", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patron (of arts);Maecenas", + "romanization": "mecenate", + "example_sentence_native": "I Medici furono grandi mecenati delle arti.", + "example_sentence_english": "The Medici were great patrons of the arts.", + "pos": "noun", + "word_frequency": 16597 + }, + { + "word": "medaglione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "locket;medallion", + "romanization": "medaglione", + "example_sentence_native": "Indossava un vecchio medaglione d'argento.", + "example_sentence_english": "She wore an old silver locket.", + "pos": "noun", + "word_frequency": 16598 + }, + { + "word": "minigonna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "miniskirt", + "romanization": "minigonna", + "example_sentence_native": "Ha indossato una minigonna per la festa.", + "example_sentence_english": "She wore a miniskirt to the party.", + "pos": "noun", + "word_frequency": 16601 + }, + { + "word": "mischiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mix", + "romanization": "mischiare", + "example_sentence_native": "Devi mischiare bene gli ingredienti.", + "example_sentence_english": "You need to mix the ingredients well.", + "pos": "verb", + "word_frequency": 16602 + }, + { + "word": "mitigare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mitigate", + "romanization": "mitigare", + "example_sentence_native": "Dobbiamo trovare un modo per mitigare il rischio.", + "example_sentence_english": "We need to find a way to mitigate the risk.", + "pos": "verb", + "word_frequency": 16603 + }, + { + "word": "momentaneo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "momentary", + "romanization": "momentaneo", + "example_sentence_native": "È stato solo un errore momentaneo.", + "example_sentence_english": "It was just a momentary error.", + "pos": "adjective", + "word_frequency": 16605 + }, + { + "word": "monotono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monotonous", + "romanization": "monotono", + "example_sentence_native": "Il suo lavoro è diventato molto monotono.", + "example_sentence_english": "His job has become very monotonous.", + "pos": "adjective", + "word_frequency": 16606 + }, + { + "word": "morfina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "morphine", + "romanization": "morfina", + "example_sentence_native": "La morfina è un potente antidolorifico.", + "example_sentence_english": "Morphine is a powerful painkiller.", + "pos": "noun", + "word_frequency": 16607 + }, + { + "word": "movida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nightlife (lively social scene)", + "romanization": "movida", + "example_sentence_native": "La movida notturna di Madrid è famosa in tutto il mondo.", + "example_sentence_english": "Madrid's nightlife is famous worldwide.", + "pos": "noun", + "word_frequency": 16608 + }, + { + "word": "nazionalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nationalization", + "romanization": "nazionalizzazione", + "example_sentence_native": "Il governo ha annunciato la nazionalizzazione di alcune industrie chiave.", + "example_sentence_english": "The government announced the nationalization of some key industries.", + "pos": "noun", + "word_frequency": 16611 + }, + { + "word": "obsoleto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obsolete", + "romanization": "obsoleto", + "example_sentence_native": "Questo software è ormai obsoleto.", + "example_sentence_english": "This software is now obsolete.", + "pos": "adjective", + "word_frequency": 16616 + }, + { + "word": "occupazionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "occupational", + "romanization": "occupazionale", + "example_sentence_native": "Il mercato occupazionale è in continua evoluzione.", + "example_sentence_english": "The occupational market is constantly evolving.", + "pos": "adjective", + "word_frequency": 16617 + }, + { + "word": "ottimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excellently", + "romanization": "ottimamente", + "example_sentence_native": "Ha svolto il suo compito ottimamente.", + "example_sentence_english": "He performed his task excellently.", + "pos": "adverb", + "word_frequency": 16618 + }, + { + "word": "paraurti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bumper", + "romanization": "paraurti", + "example_sentence_native": "Il paraurti dell'auto è danneggiato.", + "example_sentence_english": "The car's bumper is damaged.", + "pos": "noun", + "word_frequency": 16621 + }, + { + "word": "pedalare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to pedal", + "romanization": "pedalare", + "example_sentence_native": "Mi piace pedalare in bicicletta la domenica.", + "example_sentence_english": "I like to pedal my bicycle on Sundays.", + "pos": "verb", + "word_frequency": 16624 + }, + { + "word": "pilotare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pilot;to steer", + "romanization": "pilotare", + "example_sentence_native": "Sa pilotare un aereo molto bene.", + "example_sentence_english": "He can pilot a plane very well.", + "pos": "verb", + "word_frequency": 16626 + }, + { + "word": "plebeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plebeian", + "romanization": "plebeo", + "example_sentence_native": "Nell'antica Roma, i plebei erano la classe comune.", + "example_sentence_english": "In ancient Rome, plebeians were the common class.", + "pos": "noun", + "word_frequency": 16628 + }, + { + "word": "prateria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prairie;grassland", + "romanization": "prateria", + "example_sentence_native": "I bisonti pascolavano nelle vaste praterie.", + "example_sentence_english": "The bison grazed in the vast prairies.", + "pos": "noun", + "word_frequency": 16630 + }, + { + "word": "preannunciare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to foreshadow;to announce in advance", + "romanization": "preannunciare", + "example_sentence_native": "Le nuvole scure preannunciavano un temporale.", + "example_sentence_english": "The dark clouds foreshadowed a storm.", + "pos": "verb", + "word_frequency": 16631 + }, + { + "word": "prelato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prelate", + "romanization": "prelato", + "example_sentence_native": "Il prelato ha officiato la cerimonia.", + "example_sentence_english": "The prelate officiated the ceremony.", + "pos": "noun", + "word_frequency": 16632 + }, + { + "word": "preponderante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "preponderant;dominant", + "romanization": "preponderante", + "example_sentence_native": "La sua influenza è stata preponderante nella decisione finale.", + "example_sentence_english": "His influence was preponderant in the final decision.", + "pos": "adjective", + "word_frequency": 16633 + }, + { + "word": "propulsione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propulsion", + "romanization": "propulsione", + "example_sentence_native": "Il razzo usa la propulsione a getto.", + "example_sentence_english": "The rocket uses jet propulsion.", + "pos": "noun", + "word_frequency": 16634 + }, + { + "word": "pugilato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boxing", + "romanization": "pugilato", + "example_sentence_native": "Si allena nel pugilato tre volte a settimana.", + "example_sentence_english": "He trains in boxing three times a week.", + "pos": "noun", + "word_frequency": 16636 + }, + { + "word": "quotazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quotation;listing (stock market)", + "romanization": "quotazione", + "example_sentence_native": "La quotazione in borsa è aumentata oggi.", + "example_sentence_english": "The stock market listing increased today.", + "pos": "noun", + "word_frequency": 16639 + }, + { + "word": "raffigurazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "representation", + "romanization": "raffigurazione", + "example_sentence_native": "La raffigurazione del paesaggio era molto dettagliata.", + "example_sentence_english": "The depiction of the landscape was very detailed.", + "pos": "noun", + "word_frequency": 16640 + }, + { + "word": "reperibilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "availability", + "romanization": "reperibilità", + "example_sentence_native": "La reperibilità del medico è garantita 24 ore su 24.", + "example_sentence_english": "The doctor's availability is guaranteed 24 hours a day.", + "pos": "noun", + "word_frequency": 16642 + }, + { + "word": "ricambiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reciprocate", + "romanization": "ricambiare", + "example_sentence_native": "Vorrei ricambiare il favore che mi hai fatto.", + "example_sentence_english": "I would like to reciprocate the favor you did for me.", + "pos": "verb", + "word_frequency": 16644 + }, + { + "word": "riciclato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recycled", + "romanization": "riciclato", + "example_sentence_native": "Usiamo carta riciclata per ridurre l'impatto ambientale.", + "example_sentence_english": "We use recycled paper to reduce environmental impact.", + "pos": "adjective", + "word_frequency": 16645 + }, + { + "word": "rigettare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reject", + "romanization": "rigettare", + "example_sentence_native": "Il giudice ha deciso di rigettare l'appello.", + "example_sentence_english": "The judge decided to reject the appeal.", + "pos": "verb", + "word_frequency": 16647 + }, + { + "word": "riscaldare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to heat up", + "romanization": "riscaldare", + "example_sentence_native": "Puoi riscaldare la pasta nel microonde?", + "example_sentence_english": "Can you heat up the pasta in the microwave?", + "pos": "verb", + "word_frequency": 16648 + }, + { + "word": "ritaglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clipping", + "romanization": "ritaglio", + "example_sentence_native": "Ho trovato un vecchio ritaglio di giornale su di te.", + "example_sentence_english": "I found an old newspaper clipping about you.", + "pos": "noun", + "word_frequency": 16649 + }, + { + "word": "ritenzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retention", + "romanization": "ritenzione", + "example_sentence_native": "La ritenzione idrica può causare gonfiore.", + "example_sentence_english": "Water retention can cause swelling.", + "pos": "noun", + "word_frequency": 16650 + }, + { + "word": "roso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gnawed", + "romanization": "roso", + "example_sentence_native": "Il legno era roso dai tarli.", + "example_sentence_english": "The wood was gnawed by woodworms.", + "pos": "adjective", + "word_frequency": 16652 + }, + { + "word": "salina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "salt pan", + "romanization": "salina", + "example_sentence_native": "Le saline sono importanti per la produzione di sale.", + "example_sentence_english": "Salt pans are important for salt production.", + "pos": "noun", + "word_frequency": 16656 + }, + { + "word": "savio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wise", + "romanization": "savio", + "example_sentence_native": "È un uomo savio e di buon consiglio.", + "example_sentence_english": "He is a wise and sensible man.", + "pos": "adjective", + "word_frequency": 16660 + }, + { + "word": "scambiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mistaken", + "romanization": "scambiato", + "example_sentence_native": "Ho scambiato il tuo ombrello per il mio.", + "example_sentence_english": "I mistook your umbrella for mine.", + "pos": "adjective", + "word_frequency": 16661 + }, + { + "word": "scintillante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sparkling", + "romanization": "scintillante", + "example_sentence_native": "Le stelle erano scintillanti nel cielo notturno.", + "example_sentence_english": "The stars were sparkling in the night sky.", + "pos": "adjective", + "word_frequency": 16662 + }, + { + "word": "seducente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seductive", + "romanization": "seducente", + "example_sentence_native": "Il suo sorriso era incredibilmente seducente.", + "example_sentence_english": "Her smile was incredibly alluring.", + "pos": "adjective", + "word_frequency": 16663 + }, + { + "word": "servigio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "service", + "romanization": "servigio", + "example_sentence_native": "Ti chiedo un servigio, potresti aiutarmi?", + "example_sentence_english": "I ask you a favor, could you help me?", + "pos": "noun", + "word_frequency": 16664 + }, + { + "word": "sicario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hitman", + "romanization": "sicario", + "example_sentence_native": "Il sicario è stato arrestato dopo l'omicidio.", + "example_sentence_english": "The hitman was arrested after the murder.", + "pos": "noun", + "word_frequency": 16670 + }, + { + "word": "silente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silent", + "romanization": "silente", + "example_sentence_native": "La foresta era completamente silente di notte.", + "example_sentence_english": "The forest was completely silent at night.", + "pos": "adjective", + "word_frequency": 16671 + }, + { + "word": "sinora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "so far", + "romanization": "sinora", + "example_sentence_native": "Sinora, tutto è andato secondo i piani.", + "example_sentence_english": "So far, everything has gone according to plan.", + "pos": "adverb", + "word_frequency": 16672 + }, + { + "word": "sintetizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to synthesize", + "romanization": "sintetizzare", + "example_sentence_native": "Devi sintetizzare le informazioni principali in un breve riassunto.", + "example_sentence_english": "You need to synthesize the main information into a short summary.", + "pos": "verb", + "word_frequency": 16673 + }, + { + "word": "sommossa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "riot", + "romanization": "sommossa", + "example_sentence_native": "La polizia è intervenuta per sedare la sommossa.", + "example_sentence_english": "The police intervened to quell the riot.", + "pos": "noun", + "word_frequency": 16674 + }, + { + "word": "sparata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outburst", + "romanization": "sparata", + "example_sentence_native": "Quella è stata solo una sparata, non lo pensava davvero.", + "example_sentence_english": "That was just an outburst, he didn't really mean it.", + "pos": "noun", + "word_frequency": 16675 + }, + { + "word": "stilo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stylus", + "romanization": "stilo", + "example_sentence_native": "Ho comprato uno stilo nuovo per il mio tablet.", + "example_sentence_english": "I bought a new stylus for my tablet.", + "pos": "noun", + "word_frequency": 16676 + }, + { + "word": "strozzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "choke", + "romanization": "strozzo", + "example_sentence_native": "Ha pagato il debito a strozzo per anni.", + "example_sentence_english": "He paid the extortionate debt for years.", + "pos": "noun", + "word_frequency": 16677 + }, + { + "word": "subentrare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to take over", + "romanization": "subentrare", + "example_sentence_native": "Il nuovo direttore subentrerà al suo predecessore il mese prossimo.", + "example_sentence_english": "The new director will take over from his predecessor next month.", + "pos": "verb", + "word_frequency": 16679 + }, + { + "word": "techno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "techno (music genre)", + "romanization": "techno", + "example_sentence_native": "Mi piace ballare la musica techno.", + "example_sentence_english": "I like dancing to techno music.", + "pos": "noun", + "word_frequency": 16681 + }, + { + "word": "tempera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tempera (paint)", + "romanization": "tempera", + "example_sentence_native": "Ha dipinto il quadro con la tempera.", + "example_sentence_english": "He painted the picture with tempera.", + "pos": "noun", + "word_frequency": 16682 + }, + { + "word": "tesserino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ID card;badge", + "romanization": "tesserino", + "example_sentence_native": "Devi mostrare il tuo tesserino per entrare.", + "example_sentence_english": "You must show your ID card to enter.", + "pos": "noun", + "word_frequency": 16684 + }, + { + "word": "toracico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thoracic", + "romanization": "toracico", + "example_sentence_native": "Ha avuto un dolore toracico dopo la caduta.", + "example_sentence_english": "He had a thoracic pain after the fall.", + "pos": "adjective", + "word_frequency": 16686 + }, + { + "word": "tournée", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tour (performance)", + "romanization": "tournée", + "example_sentence_native": "La band è in tournée in tutta Europa.", + "example_sentence_english": "The band is on tour throughout Europe.", + "pos": "noun", + "word_frequency": 16687 + }, + { + "word": "trenino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toy train;small train", + "romanization": "trenino", + "example_sentence_native": "Il bambino gioca con il suo trenino elettrico.", + "example_sentence_english": "The child plays with his electric toy train.", + "pos": "noun", + "word_frequency": 16688 + }, + { + "word": "tris", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tic-tac-toe;set of three", + "romanization": "tris", + "example_sentence_native": "Abbiamo giocato a tris per passare il tempo.", + "example_sentence_english": "We played tic-tac-toe to pass the time.", + "pos": "noun", + "word_frequency": 16689 + }, + { + "word": "uncino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hook", + "romanization": "uncino", + "example_sentence_native": "Ha appeso il quadro all'uncino.", + "example_sentence_english": "He hung the painting on the hook.", + "pos": "noun", + "word_frequency": 16692 + }, + { + "word": "upload", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upload", + "romanization": "upload", + "example_sentence_native": "L'upload del file è quasi completato.", + "example_sentence_english": "The file upload is almost complete.", + "pos": "noun", + "word_frequency": 16693 + }, + { + "word": "urtare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hit;to bump into;to offend", + "romanization": "urtare", + "example_sentence_native": "Ho urtato il tavolo con il gomito.", + "example_sentence_english": "I bumped the table with my elbow.", + "pos": "verb", + "word_frequency": 16694 + }, + { + "word": "vedente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seeing;clairvoyant", + "romanization": "vedente", + "example_sentence_native": "È una persona vedente, non cieca.", + "example_sentence_english": "He is a seeing person, not blind.", + "pos": "adjective", + "word_frequency": 16696 + }, + { + "word": "villeggiatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "holiday;vacation (especially in the countryside)", + "romanization": "villeggiatura", + "example_sentence_native": "Andiamo in villeggiatura al mare ogni estate.", + "example_sentence_english": "We go on holiday to the seaside every summer.", + "pos": "noun", + "word_frequency": 16697 + }, + { + "word": "vitalizio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annuity;life pension", + "romanization": "vitalizio", + "example_sentence_native": "Riceve un vitalizio dopo il pensionamento.", + "example_sentence_english": "He receives an annuity after retirement.", + "pos": "noun", + "word_frequency": 16698 + }, + { + "word": "volgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn;to direct;to revolve", + "romanization": "volgere", + "example_sentence_native": "Il sole volge al tramonto.", + "example_sentence_english": "The sun turns towards sunset.", + "pos": "verb", + "word_frequency": 16699 + }, + { + "word": "zodiaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zodiac", + "romanization": "zodiaco", + "example_sentence_native": "Qual è il tuo segno zodiacale?", + "example_sentence_english": "What is your zodiac sign?", + "pos": "noun", + "word_frequency": 16704 + }, + { + "word": "zoppo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lame;limping", + "romanization": "zoppo", + "example_sentence_native": "Il cane era zoppo dopo l'incidente.", + "example_sentence_english": "The dog was lame after the accident.", + "pos": "adjective", + "word_frequency": 16705 + }, + { + "word": "aeroplano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "airplane", + "romanization": "aeroplano", + "example_sentence_native": "L'aeroplano è atterrato in orario.", + "example_sentence_english": "The airplane landed on time.", + "pos": "noun", + "word_frequency": 16708 + }, + { + "word": "alchimia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "alchemy", + "romanization": "alchimia", + "example_sentence_native": "L'alchimia era una pratica antica e misteriosa.", + "example_sentence_english": "Alchemy was an ancient and mysterious practice.", + "pos": "noun", + "word_frequency": 16709 + }, + { + "word": "altruista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altruistic", + "romanization": "altruista", + "example_sentence_native": "È una persona molto altruista e generosa.", + "example_sentence_english": "He is a very altruistic and generous person.", + "pos": "adjective", + "word_frequency": 16710 + }, + { + "word": "amplificatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amplifier", + "romanization": "amplificatore", + "example_sentence_native": "Ho bisogno di un nuovo amplificatore per la chitarra.", + "example_sentence_english": "I need a new amplifier for the guitar.", + "pos": "noun", + "word_frequency": 16711 + }, + { + "word": "anca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hip", + "romanization": "anca", + "example_sentence_native": "Mi fa male l'anca dopo la caduta.", + "example_sentence_english": "My hip hurts after the fall.", + "pos": "noun", + "word_frequency": 16712 + }, + { + "word": "anteriormente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anteriorly;previously", + "romanization": "anteriormente", + "example_sentence_native": "La parte anteriormente danneggiata è stata riparata.", + "example_sentence_english": "The previously damaged part has been repaired.", + "pos": "adverb", + "word_frequency": 16714 + }, + { + "word": "arbusto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shrub;bush", + "romanization": "arbusto", + "example_sentence_native": "C'è un bell'arbusto fiorito in giardino.", + "example_sentence_english": "There's a beautiful flowering shrub in the garden.", + "pos": "noun", + "word_frequency": 16716 + }, + { + "word": "arto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "limb", + "romanization": "arto", + "example_sentence_native": "Ha subito una lesione a un arto inferiore.", + "example_sentence_english": "He suffered an injury to a lower limb.", + "pos": "noun", + "word_frequency": 16718 + }, + { + "word": "assestamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "settlement;adjustment;stabilization", + "romanization": "assestamento", + "example_sentence_native": "Il terreno ha bisogno di un periodo di assestamento.", + "example_sentence_english": "The ground needs a period of settlement.", + "pos": "noun", + "word_frequency": 16719 + }, + { + "word": "assiduamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assiduously;diligently", + "romanization": "assiduamente", + "example_sentence_native": "Lavora assiduamente per raggiungere i suoi obiettivi.", + "example_sentence_english": "He works assiduously to achieve his goals.", + "pos": "adverb", + "word_frequency": 16720 + }, + { + "word": "attrezzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "equipped;fitted", + "romanization": "attrezzato", + "example_sentence_native": "La cucina è ben attrezzata con tutti gli elettrodomestici necessari.", + "example_sentence_english": "The kitchen is well equipped with all necessary appliances.", + "pos": "adjective", + "word_frequency": 16721 + }, + { + "word": "avvalere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to avail oneself of;to make use of", + "romanization": "avvalere", + "example_sentence_native": "Puoi avvalerti di questa opportunità per migliorare le tue competenze.", + "example_sentence_english": "You can avail yourself of this opportunity to improve your skills.", + "pos": "verb", + "word_frequency": 16722 + }, + { + "word": "balestra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crossbow", + "romanization": "balestra", + "example_sentence_native": "Nel Medioevo, la balestra era un'arma potente.", + "example_sentence_english": "In the Middle Ages, the crossbow was a powerful weapon.", + "pos": "noun", + "word_frequency": 16724 + }, + { + "word": "banking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "banking", + "romanization": "banking", + "example_sentence_native": "Il settore del banking sta affrontando nuove sfide digitali.", + "example_sentence_english": "The banking sector is facing new digital challenges.", + "pos": "noun", + "word_frequency": 16725 + }, + { + "word": "barlume", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glimmer;faint light;inkling", + "romanization": "barlume", + "example_sentence_native": "Non c'è un barlume di speranza in questa situazione.", + "example_sentence_english": "There isn't a glimmer of hope in this situation.", + "pos": "noun", + "word_frequency": 16726 + }, + { + "word": "batista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "batiste (fine linen;cotton fabric)", + "romanization": "batista", + "example_sentence_native": "Ha comprato un vestito leggero di batista per l'estate.", + "example_sentence_english": "She bought a light batiste dress for the summer.", + "pos": "noun", + "word_frequency": 16727 + }, + { + "word": "boicottare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to boycott", + "romanization": "boicottare", + "example_sentence_native": "I consumatori hanno deciso di boicottare i prodotti di quella compagnia.", + "example_sentence_english": "Consumers decided to boycott that company's products.", + "pos": "verb", + "word_frequency": 16730 + }, + { + "word": "botola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trapdoor;hatch", + "romanization": "botola", + "example_sentence_native": "C'è una botola nel pavimento che porta alla cantina.", + "example_sentence_english": "There's a trapdoor in the floor that leads to the cellar.", + "pos": "noun", + "word_frequency": 16732 + }, + { + "word": "calderone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cauldron;melting pot", + "romanization": "calderone", + "example_sentence_native": "La città è un vero calderone di culture diverse.", + "example_sentence_english": "The city is a true melting pot of different cultures.", + "pos": "noun", + "word_frequency": 16736 + }, + { + "word": "capitalistico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitalistic", + "romanization": "capitalistico", + "example_sentence_native": "Il sistema economico capitalistico ha i suoi pro e i suoi contro.", + "example_sentence_english": "The capitalistic economic system has its pros and cons.", + "pos": "adjective", + "word_frequency": 16737 + }, + { + "word": "cerniera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zipper;hinge", + "romanization": "cerniera", + "example_sentence_native": "La cerniera della mia giacca è rotta.", + "example_sentence_english": "The zipper on my jacket is broken.", + "pos": "noun", + "word_frequency": 16742 + }, + { + "word": "chemio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chemo (chemotherapy)", + "romanization": "chemio", + "example_sentence_native": "Ha iniziato un ciclo di chemio la settimana scorsa.", + "example_sentence_english": "He started a course of chemo last week.", + "pos": "noun", + "word_frequency": 16743 + }, + { + "word": "cherubino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cherub", + "romanization": "cherubino", + "example_sentence_native": "I dipinti rinascimentali spesso raffigurano cherubini.", + "example_sentence_english": "Renaissance paintings often depict cherubs.", + "pos": "noun", + "word_frequency": 16744 + }, + { + "word": "ciliegia", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "cherry", + "romanization": "ciliegia", + "example_sentence_native": "Mi piacciono molto le ciliegie fresche in estate.", + "example_sentence_english": "I really like fresh cherries in summer.", + "pos": "noun", + "word_frequency": 16746 + }, + { + "word": "commestibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edible", + "romanization": "commestibile", + "example_sentence_native": "Assicurati che i funghi che raccogli siano commestibili.", + "example_sentence_english": "Make sure the mushrooms you pick are edible.", + "pos": "adjective", + "word_frequency": 16747 + }, + { + "word": "compresso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compressed;compact", + "romanization": "compresso", + "example_sentence_native": "L'aria compressa viene usata in molti strumenti.", + "example_sentence_english": "Compressed air is used in many tools.", + "pos": "adjective", + "word_frequency": 16748 + }, + { + "word": "confidenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confidential", + "romanization": "confidenziale", + "example_sentence_native": "Queste informazioni sono strettamente confidenziali.", + "example_sentence_english": "This information is strictly confidential.", + "pos": "adjective", + "word_frequency": 16749 + }, + { + "word": "contrassegnato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marked;distinguished", + "romanization": "contrassegnato", + "example_sentence_native": "Il pacco era contrassegnato come \"fragile\".", + "example_sentence_english": "The package was marked as \"fragile\".", + "pos": "adjective", + "word_frequency": 16750 + }, + { + "word": "controproducente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterproductive", + "romanization": "controproducente", + "example_sentence_native": "Le sue azioni si sono rivelate controproducenti.", + "example_sentence_english": "His actions proved to be counterproductive.", + "pos": "adjective", + "word_frequency": 16751 + }, + { + "word": "coraggiosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courageously;bravely", + "romanization": "coraggiosamente", + "example_sentence_native": "Ha affrontato la sfida coraggiosamente.", + "example_sentence_english": "He faced the challenge courageously.", + "pos": "adverb", + "word_frequency": 16752 + }, + { + "word": "cordialmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cordially;heartily", + "romanization": "cordialmente", + "example_sentence_native": "La ringrazio cordialmente per la sua disponibilità.", + "example_sentence_english": "I cordially thank you for your availability.", + "pos": "adverb", + "word_frequency": 16753 + }, + { + "word": "cuccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "dog kennel;bed", + "romanization": "cuccia", + "example_sentence_native": "Il cane dorme nella sua cuccia.", + "example_sentence_english": "The dog sleeps in its kennel.", + "pos": "noun", + "word_frequency": 16754 + }, + { + "word": "danaro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "money (archaic;literary)", + "romanization": "danaro", + "example_sentence_native": "Non aveva danaro sufficiente per il viaggio.", + "example_sentence_english": "He didn't have enough money for the trip.", + "pos": "noun", + "word_frequency": 16758 + }, + { + "word": "dettato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dictation;dictated text", + "romanization": "dettato", + "example_sentence_native": "Abbiamo fatto un dettato in classe.", + "example_sentence_english": "We did a dictation in class.", + "pos": "noun", + "word_frequency": 16765 + }, + { + "word": "dicastero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ministry;department (of government)", + "romanization": "dicastero", + "example_sentence_native": "Il nuovo dicastero si occuperà dell'ambiente.", + "example_sentence_english": "The new ministry will deal with the environment.", + "pos": "noun", + "word_frequency": 16767 + }, + { + "word": "dimenticatoio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oblivion;forgotten place", + "romanization": "dimenticatoio", + "example_sentence_native": "Quel vecchio ricordo è finito nel dimenticatoio.", + "example_sentence_english": "That old memory ended up in oblivion.", + "pos": "noun", + "word_frequency": 16768 + }, + { + "word": "diniego", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "denial;refusal", + "romanization": "diniego", + "example_sentence_native": "La sua richiesta ha ricevuto un diniego.", + "example_sentence_english": "His request received a denial.", + "pos": "noun", + "word_frequency": 16769 + }, + { + "word": "disapprovazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disapproval", + "romanization": "disapprovazione", + "example_sentence_native": "Ha espresso la sua disapprovazione con un sospiro.", + "example_sentence_english": "She expressed her disapproval with a sigh.", + "pos": "noun", + "word_frequency": 16771 + }, + { + "word": "disfunzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dysfunction;malfunction", + "romanization": "disfunzione", + "example_sentence_native": "Il sistema ha una disfunzione.", + "example_sentence_english": "The system has a dysfunction.", + "pos": "noun", + "word_frequency": 16772 + }, + { + "word": "disturbato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disturbed;bothered", + "romanization": "disturbato", + "example_sentence_native": "Sembrava molto disturbato dalla notizia.", + "example_sentence_english": "He seemed very disturbed by the news.", + "pos": "adjective", + "word_frequency": 16774 + }, + { + "word": "esistito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "existed;having existed", + "romanization": "esistito", + "example_sentence_native": "È un problema che non è mai esistito prima.", + "example_sentence_english": "It's a problem that never existed before.", + "pos": "adjective", + "word_frequency": 16780 + }, + { + "word": "estenuante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhausting;strenuous", + "romanization": "estenuante", + "example_sentence_native": "Il viaggio è stato estenuante.", + "example_sentence_english": "The journey was exhausting.", + "pos": "adjective", + "word_frequency": 16781 + }, + { + "word": "faticare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to struggle;to toil;to work hard", + "romanization": "faticare", + "example_sentence_native": "Ho faticato molto per finire il progetto.", + "example_sentence_english": "I struggled a lot to finish the project.", + "pos": "verb", + "word_frequency": 16785 + }, + { + "word": "ferocia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ferocity;cruelty", + "romanization": "ferocia", + "example_sentence_native": "La ferocia dell'attacco ha scioccato tutti.", + "example_sentence_english": "The ferocity of the attack shocked everyone.", + "pos": "noun", + "word_frequency": 16786 + }, + { + "word": "floreale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "floral", + "romanization": "floreale", + "example_sentence_native": "Ha scelto una fantasia floreale per il vestito.", + "example_sentence_english": "She chose a floral pattern for the dress.", + "pos": "adjective", + "word_frequency": 16787 + }, + { + "word": "focalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to focus;to concentrate", + "romanization": "focalizzare", + "example_sentence_native": "Dobbiamo focalizzare l'attenzione sui dettagli.", + "example_sentence_english": "We need to focus attention on the details.", + "pos": "verb", + "word_frequency": 16788 + }, + { + "word": "forcella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fork (e.g.;bicycle fork;hair clip);hairpin bend", + "romanization": "forcella", + "example_sentence_native": "La forcella della bicicletta è rotta.", + "example_sentence_english": "The bicycle fork is broken.", + "pos": "noun", + "word_frequency": 16789 + }, + { + "word": "fossato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moat;ditch", + "romanization": "fossato", + "example_sentence_native": "Il castello era circondato da un profondo fossato.", + "example_sentence_english": "The castle was surrounded by a deep moat.", + "pos": "noun", + "word_frequency": 16790 + }, + { + "word": "fotogramma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frame (of a film;video)", + "romanization": "fotogramma", + "example_sentence_native": "Ogni fotogramma del film era perfetto.", + "example_sentence_english": "Every frame of the film was perfect.", + "pos": "noun", + "word_frequency": 16791 + }, + { + "word": "fragranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragrance;scent", + "romanization": "fragranza", + "example_sentence_native": "La fragranza dei fiori riempiva la stanza.", + "example_sentence_english": "The fragrance of the flowers filled the room.", + "pos": "noun", + "word_frequency": 16792 + }, + { + "word": "fruibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usable;enjoyable;accessible", + "romanization": "fruibile", + "example_sentence_native": "Il servizio è ora fruibile a tutti.", + "example_sentence_english": "The service is now accessible to everyone.", + "pos": "adjective", + "word_frequency": 16793 + }, + { + "word": "gengiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gum (of the mouth)", + "romanization": "gengiva", + "example_sentence_native": "Mi fa male una gengiva.", + "example_sentence_english": "One of my gums hurts.", + "pos": "noun", + "word_frequency": 16798 + }, + { + "word": "giudeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Jew;Jewish (person)", + "romanization": "giudeo", + "example_sentence_native": "La comunità giudea ha una lunga storia.", + "example_sentence_english": "The Jewish community has a long history.", + "pos": "noun", + "word_frequency": 16799 + }, + { + "word": "goffo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clumsy", + "romanization": "goffo", + "example_sentence_native": "Era così goffo che inciampò sui suoi stessi piedi.", + "example_sentence_english": "He was so clumsy that he tripped over his own feet.", + "pos": "adjective", + "word_frequency": 16800 + }, + { + "word": "gorgonzola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gorgonzola (cheese)", + "romanization": "gorgonzola", + "example_sentence_native": "Mi piace la pasta con la salsa al gorgonzola.", + "example_sentence_english": "I like pasta with gorgonzola sauce.", + "pos": "noun", + "word_frequency": 16802 + }, + { + "word": "illuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deluded", + "romanization": "illuso", + "example_sentence_native": "Era un giovane illuso dai sogni di gloria.", + "example_sentence_english": "He was a young man deluded by dreams of glory.", + "pos": "adjective", + "word_frequency": 16804 + }, + { + "word": "imbattibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbeatable", + "romanization": "imbattibile", + "example_sentence_native": "La loro squadra è considerata imbattibile quest'anno.", + "example_sentence_english": "Their team is considered unbeatable this year.", + "pos": "adjective", + "word_frequency": 16805 + }, + { + "word": "incondizionatamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconditionally", + "romanization": "incondizionatamente", + "example_sentence_native": "La amava incondizionatamente.", + "example_sentence_english": "He loved her unconditionally.", + "pos": "adverb", + "word_frequency": 16806 + }, + { + "word": "inconfondibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unmistakable", + "romanization": "inconfondibile", + "example_sentence_native": "Ha un accento inconfondibile.", + "example_sentence_english": "He has an unmistakable accent.", + "pos": "adjective", + "word_frequency": 16807 + }, + { + "word": "incostituzionalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unconstitutionality", + "romanization": "incostituzionalità", + "example_sentence_native": "La Corte ha dichiarato l'incostituzionalità della legge.", + "example_sentence_english": "The Court declared the unconstitutionality of the law.", + "pos": "noun", + "word_frequency": 16808 + }, + { + "word": "incredulo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incredulous", + "romanization": "incredulo", + "example_sentence_native": "Rimase incredulo di fronte a quella notizia.", + "example_sentence_english": "He remained incredulous in front of that news.", + "pos": "adjective", + "word_frequency": 16809 + }, + { + "word": "indebolimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakening", + "romanization": "indebolimento", + "example_sentence_native": "Si è notato un indebolimento dell'economia.", + "example_sentence_english": "A weakening of the economy has been noted.", + "pos": "noun", + "word_frequency": 16810 + }, + { + "word": "inquinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polluted", + "romanization": "inquinato", + "example_sentence_native": "L'aria in città è molto inquinata.", + "example_sentence_english": "The air in the city is very polluted.", + "pos": "adjective", + "word_frequency": 16811 + }, + { + "word": "insensato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "senseless", + "romanization": "insensato", + "example_sentence_native": "È stata una decisione completamente insensata.", + "example_sentence_english": "It was a completely senseless decision.", + "pos": "adjective", + "word_frequency": 16812 + }, + { + "word": "intrusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intrusion", + "romanization": "intrusione", + "example_sentence_native": "Non volevo essere un'intrusione nella vostra conversazione.", + "example_sentence_english": "I didn't want to be an intrusion in your conversation.", + "pos": "noun", + "word_frequency": 16813 + }, + { + "word": "irrispettoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disrespectful", + "romanization": "irrispettoso", + "example_sentence_native": "Il suo comportamento è stato molto irrispettoso.", + "example_sentence_english": "His behavior was very disrespectful.", + "pos": "adjective", + "word_frequency": 16814 + }, + { + "word": "kermesse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "festival;fair", + "romanization": "kermesse", + "example_sentence_native": "La città ospiterà una kermesse culturale il prossimo mese.", + "example_sentence_english": "The city will host a cultural festival next month.", + "pos": "noun", + "word_frequency": 16820 + }, + { + "word": "lamiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sheet metal", + "romanization": "lamiera", + "example_sentence_native": "Il tetto è fatto di lamiera ondulata.", + "example_sentence_english": "The roof is made of corrugated sheet metal.", + "pos": "noun", + "word_frequency": 16821 + }, + { + "word": "legamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ligament;bond", + "romanization": "legamento", + "example_sentence_native": "Si è rotto un legamento del ginocchio.", + "example_sentence_english": "He tore a ligament in his knee.", + "pos": "noun", + "word_frequency": 16823 + }, + { + "word": "legenda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "legend (map;chart);key", + "romanization": "legenda", + "example_sentence_native": "Consulta la legenda per capire i simboli sulla mappa.", + "example_sentence_english": "Consult the legend to understand the symbols on the map.", + "pos": "noun", + "word_frequency": 16824 + }, + { + "word": "lounge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lounge", + "romanization": "lounge", + "example_sentence_native": "Ci siamo incontrati nella lounge dell'hotel.", + "example_sentence_english": "We met in the hotel lounge.", + "pos": "noun", + "word_frequency": 16828 + }, + { + "word": "lucertola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lizard", + "romanization": "lucertola", + "example_sentence_native": "Una lucertola si è arrampicata sul muro.", + "example_sentence_english": "A lizard climbed up the wall.", + "pos": "noun", + "word_frequency": 16830 + }, + { + "word": "lungimiranza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foresight", + "romanization": "lungimiranza", + "example_sentence_native": "La sua lungimiranza ha salvato l'azienda.", + "example_sentence_english": "His foresight saved the company.", + "pos": "noun", + "word_frequency": 16832 + }, + { + "word": "magistero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magisterium;teaching authority", + "romanization": "magistero", + "example_sentence_native": "Il magistero della Chiesa cattolica è la sua autorità dottrinale.", + "example_sentence_english": "The magisterium of the Catholic Church is its doctrinal authority.", + "pos": "noun", + "word_frequency": 16834 + }, + { + "word": "mandria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "herd", + "romanization": "mandria", + "example_sentence_native": "Una mandria di mucche pascolava nel campo.", + "example_sentence_english": "A herd of cows was grazing in the field.", + "pos": "noun", + "word_frequency": 16835 + }, + { + "word": "marziano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Martian", + "romanization": "marziano", + "example_sentence_native": "Credi che esistano forme di vita marziane?", + "example_sentence_english": "Do you believe Martian life forms exist?", + "pos": "adjective", + "word_frequency": 16839 + }, + { + "word": "mascherata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masquerade;fancy dress party", + "romanization": "mascherata", + "example_sentence_native": "La mascherata di carnevale era piena di colori e allegria.", + "example_sentence_english": "The carnival masquerade was full of colors and joy.", + "pos": "noun", + "word_frequency": 16840 + }, + { + "word": "mascherato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masked;disguised", + "romanization": "mascherato", + "example_sentence_native": "L'uomo mascherato si muoveva silenziosamente tra la folla.", + "example_sentence_english": "The masked man moved silently through the crowd.", + "pos": "adjective", + "word_frequency": 16841 + }, + { + "word": "mignolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little finger;toe", + "romanization": "mignolo", + "example_sentence_native": "Mi sono fatto male al mignolo del piede.", + "example_sentence_english": "I hurt my little toe.", + "pos": "noun", + "word_frequency": 16842 + }, + { + "word": "misericordioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "merciful;compassionate", + "romanization": "misericordioso", + "example_sentence_native": "Il giudice fu misericordioso nella sua sentenza.", + "example_sentence_english": "The judge was merciful in his sentence.", + "pos": "adjective", + "word_frequency": 16844 + }, + { + "word": "modellare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to model;to shape", + "romanization": "modellare", + "example_sentence_native": "L'artista ama modellare l'argilla.", + "example_sentence_english": "The artist loves to model clay.", + "pos": "verb", + "word_frequency": 16845 + }, + { + "word": "modulare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to modulate", + "romanization": "modulare", + "example_sentence_native": "È importante modulare la voce quando si parla in pubblico.", + "example_sentence_english": "It's important to modulate your voice when speaking in public.", + "pos": "verb", + "word_frequency": 16846 + }, + { + "word": "molino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mill", + "romanization": "molino", + "example_sentence_native": "Il vecchio molino ad acqua è ancora in funzione.", + "example_sentence_english": "The old water mill is still in operation.", + "pos": "noun", + "word_frequency": 16847 + }, + { + "word": "mucosa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mucous membrane", + "romanization": "mucosa", + "example_sentence_native": "La mucosa nasale può infiammarsi durante un raffreddore.", + "example_sentence_english": "The nasal mucous membrane can become inflamed during a cold.", + "pos": "noun", + "word_frequency": 16849 + }, + { + "word": "musicalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musically", + "romanization": "musicalmente", + "example_sentence_native": "È una persona molto dotata musicalmente.", + "example_sentence_english": "He is a very musically gifted person.", + "pos": "adverb", + "word_frequency": 16850 + }, + { + "word": "noleggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rent;to hire", + "romanization": "noleggiare", + "example_sentence_native": "Vorrei noleggiare un'auto per il fine settimana.", + "example_sentence_english": "I would like to rent a car for the weekend.", + "pos": "verb", + "word_frequency": 16856 + }, + { + "word": "nondimeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nevertheless;nonetheless", + "romanization": "nondimeno", + "example_sentence_native": "Era stanco, nondimeno continuò a lavorare.", + "example_sentence_english": "He was tired, nevertheless he continued to work.", + "pos": "adverb", + "word_frequency": 16857 + }, + { + "word": "offshore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "offshore (finance;oil;etc.)", + "romanization": "offshore", + "example_sentence_native": "Molte aziende hanno conti offshore.", + "example_sentence_english": "Many companies have offshore accounts.", + "pos": "noun", + "word_frequency": 16858 + }, + { + "word": "ornato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ornate;decorated", + "romanization": "ornato", + "example_sentence_native": "La chiesa aveva un soffitto riccamente ornato.", + "example_sentence_english": "The church had a richly ornate ceiling.", + "pos": "adjective", + "word_frequency": 16861 + }, + { + "word": "ostinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubborn;obstinate", + "romanization": "ostinato", + "example_sentence_native": "È un bambino molto ostinato quando non vuole fare qualcosa.", + "example_sentence_english": "He is a very stubborn child when he doesn't want to do something.", + "pos": "adjective", + "word_frequency": 16863 + }, + { + "word": "ostinazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstinacy;stubbornness", + "romanization": "ostinazione", + "example_sentence_native": "La sua ostinazione lo ha portato al successo.", + "example_sentence_english": "His obstinacy led him to success.", + "pos": "noun", + "word_frequency": 16864 + }, + { + "word": "paletto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stake;picket;bolt (for a door)", + "romanization": "paletto", + "example_sentence_native": "Ho messo un paletto alla porta per sicurezza.", + "example_sentence_english": "I put a bolt on the door for security.", + "pos": "noun", + "word_frequency": 16865 + }, + { + "word": "panettone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "panettone (Italian sweet bread)", + "romanization": "panettone", + "example_sentence_native": "A Natale mangiamo sempre il panettone.", + "example_sentence_english": "At Christmas we always eat panettone.", + "pos": "noun", + "word_frequency": 16866 + }, + { + "word": "pastiglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tablet;lozenge;pill", + "romanization": "pastiglia", + "example_sentence_native": "Prendi una pastiglia per il mal di testa.", + "example_sentence_english": "Take a tablet for your headache.", + "pos": "noun", + "word_frequency": 16868 + }, + { + "word": "pedagogico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedagogical", + "romanization": "pedagogico", + "example_sentence_native": "Ha un approccio molto pedagogico all'insegnamento.", + "example_sentence_english": "He has a very pedagogical approach to teaching.", + "pos": "adjective", + "word_frequency": 16869 + }, + { + "word": "pene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "penis", + "romanization": "pene", + "example_sentence_native": "L'anatomia umana include lo studio del pene.", + "example_sentence_english": "Human anatomy includes the study of the penis.", + "pos": "noun", + "word_frequency": 16870 + }, + { + "word": "persuadere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persuade", + "romanization": "persuadere", + "example_sentence_native": "Ho cercato di persuaderlo a cambiare idea.", + "example_sentence_english": "I tried to persuade him to change his mind.", + "pos": "verb", + "word_frequency": 16872 + }, + { + "word": "podere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farm;estate", + "romanization": "podere", + "example_sentence_native": "Hanno comprato un bel podere in Toscana.", + "example_sentence_english": "They bought a beautiful farm in Tuscany.", + "pos": "noun", + "word_frequency": 16874 + }, + { + "word": "postero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "descendant;posterity (usually plural)", + "romanization": "postero", + "example_sentence_native": "Lasciamo questo messaggio ai posteri.", + "example_sentence_english": "We leave this message to posterity.", + "pos": "noun", + "word_frequency": 16875 + }, + { + "word": "preconcetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preconception;prejudice", + "romanization": "preconcetto", + "example_sentence_native": "È difficile superare i vecchi preconcetti.", + "example_sentence_english": "It's difficult to overcome old preconceptions.", + "pos": "noun", + "word_frequency": 16876 + }, + { + "word": "proiettore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "projector;spotlight", + "romanization": "proiettore", + "example_sentence_native": "Abbiamo usato un proiettore per la presentazione.", + "example_sentence_english": "We used a projector for the presentation.", + "pos": "noun", + "word_frequency": 16878 + }, + { + "word": "prontezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "readiness;promptness;quickness", + "romanization": "prontezza", + "example_sentence_native": "Ha risposto con grande prontezza.", + "example_sentence_english": "He responded with great promptness.", + "pos": "noun", + "word_frequency": 16879 + }, + { + "word": "prosperare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prosper", + "romanization": "prosperare", + "example_sentence_native": "L'azienda continua a prosperare nonostante la crisi.", + "example_sentence_english": "The company continues to prosper despite the crisis.", + "pos": "verb", + "word_frequency": 16880 + }, + { + "word": "protezionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protectionism", + "romanization": "protezionismo", + "example_sentence_native": "Il dibattito sul protezionismo è sempre attuale.", + "example_sentence_english": "The debate on protectionism is always current.", + "pos": "noun", + "word_frequency": 16881 + }, + { + "word": "quaggiù", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down here", + "romanization": "quaggiù", + "example_sentence_native": "Vieni quaggiù, ti mostro una cosa.", + "example_sentence_english": "Come down here, I'll show you something.", + "pos": "adverb", + "word_frequency": 16884 + }, + { + "word": "quarantenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forty-year-old (person)", + "romanization": "quarantenne", + "example_sentence_native": "È un quarantenne con molta esperienza.", + "example_sentence_english": "He is a forty-year-old with a lot of experience.", + "pos": "noun", + "word_frequency": 16885 + }, + { + "word": "raccoglitore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "binder;collector", + "romanization": "raccoglitore", + "example_sentence_native": "Ho messo tutti i documenti nel raccoglitore blu.", + "example_sentence_english": "I put all the documents in the blue binder.", + "pos": "noun", + "word_frequency": 16887 + }, + { + "word": "rada", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roadstead;bay", + "romanization": "rada", + "example_sentence_native": "La nave è ancorata in rada.", + "example_sentence_english": "The ship is anchored in the roadstead.", + "pos": "noun", + "word_frequency": 16888 + }, + { + "word": "raggruppato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grouped", + "romanization": "raggruppato", + "example_sentence_native": "I bambini erano raggruppati intorno all'insegnante.", + "example_sentence_english": "The children were grouped around the teacher.", + "pos": "adjective", + "word_frequency": 16889 + }, + { + "word": "recettore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "receptor", + "romanization": "recettore", + "example_sentence_native": "Il farmaco agisce su specifici recettori.", + "example_sentence_english": "The drug acts on specific receptors.", + "pos": "noun", + "word_frequency": 16890 + }, + { + "word": "retrospettivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrospective", + "romanization": "retrospettivo", + "example_sentence_native": "Hanno organizzato una mostra retrospettiva dell'artista.", + "example_sentence_english": "They organized a retrospective exhibition of the artist.", + "pos": "adjective", + "word_frequency": 16892 + }, + { + "word": "riordinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tidy up;to reorder", + "romanization": "riordinare", + "example_sentence_native": "Devo riordinare la mia stanza.", + "example_sentence_english": "I need to tidy up my room.", + "pos": "verb", + "word_frequency": 16895 + }, + { + "word": "riproduttivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproductive", + "romanization": "riproduttivo", + "example_sentence_native": "Il sistema riproduttivo è complesso.", + "example_sentence_english": "The reproductive system is complex.", + "pos": "adjective", + "word_frequency": 16896 + }, + { + "word": "risaltare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stand out;to be prominent", + "romanization": "risaltare", + "example_sentence_native": "Il suo talento risalta in ogni performance.", + "example_sentence_english": "His talent stands out in every performance.", + "pos": "verb", + "word_frequency": 16897 + }, + { + "word": "riunificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reunification", + "romanization": "riunificazione", + "example_sentence_native": "La riunificazione della Germania è avvenuta nel 1990.", + "example_sentence_english": "The reunification of Germany happened in 1990.", + "pos": "noun", + "word_frequency": 16898 + }, + { + "word": "rivoltoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rebel;rioter", + "romanization": "rivoltoso", + "example_sentence_native": "I rivoltosi hanno occupato la piazza principale.", + "example_sentence_english": "The rioters occupied the main square.", + "pos": "noun", + "word_frequency": 16899 + }, + { + "word": "saltato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skipped;jumped;sautéed", + "romanization": "saltato", + "example_sentence_native": "Il capitolo è stato saltato. / Le verdure sono saltate in padella.", + "example_sentence_english": "The chapter was skipped. / The vegetables are sautéed in the pan.", + "pos": "adjective", + "word_frequency": 16904 + }, + { + "word": "semestrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "semi-annual;half-yearly", + "romanization": "semestrale", + "example_sentence_native": "La relazione semestrale sarà presentata a giugno.", + "example_sentence_english": "The semi-annual report will be presented in June.", + "pos": "adjective", + "word_frequency": 16906 + }, + { + "word": "sigaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cigar", + "romanization": "sigaro", + "example_sentence_native": "Ha acceso un sigaro dopo cena.", + "example_sentence_english": "He lit a cigar after dinner.", + "pos": "noun", + "word_frequency": 16908 + }, + { + "word": "sigma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sigma", + "romanization": "sigma", + "example_sentence_native": "Il simbolo sigma è usato in matematica.", + "example_sentence_english": "The sigma symbol is used in mathematics.", + "pos": "noun", + "word_frequency": 16909 + }, + { + "word": "sottovalutato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underestimated", + "romanization": "sottovalutato", + "example_sentence_native": "Il suo contributo è stato spesso sottovalutato.", + "example_sentence_english": "His contribution has often been underestimated.", + "pos": "adjective", + "word_frequency": 16910 + }, + { + "word": "sovrintendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendent", + "romanization": "sovrintendente", + "example_sentence_native": "Il sovrintendente ha ispezionato il cantiere.", + "example_sentence_english": "The superintendent inspected the construction site.", + "pos": "noun", + "word_frequency": 16911 + }, + { + "word": "stormo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flock;swarm (of birds)", + "romanization": "stormo", + "example_sentence_native": "Uno stormo di uccelli è volato via.", + "example_sentence_english": "A flock of birds flew away.", + "pos": "noun", + "word_frequency": 16913 + }, + { + "word": "tegola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roof tile", + "romanization": "tegola", + "example_sentence_native": "Una tegola è caduta dal tetto.", + "example_sentence_english": "A roof tile fell from the roof.", + "pos": "noun", + "word_frequency": 16919 + }, + { + "word": "tiepido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lukewarm", + "romanization": "tiepido", + "example_sentence_native": "L'acqua del bagno era tiepida, perfetta per rilassarsi.", + "example_sentence_english": "The bath water was lukewarm, perfect for relaxing.", + "pos": "adjective", + "word_frequency": 16922 + }, + { + "word": "totalitario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "totalitarian", + "romanization": "totalitario", + "example_sentence_native": "Il regime totalitario controllava ogni aspetto della vita dei cittadini.", + "example_sentence_english": "The totalitarian regime controlled every aspect of citizens' lives.", + "pos": "adjective", + "word_frequency": 16923 + }, + { + "word": "trascritto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transcribed", + "romanization": "trascritto", + "example_sentence_native": "Il discorso è stato trascritto fedelmente parola per parola.", + "example_sentence_english": "The speech was faithfully transcribed word for word.", + "pos": "adjective", + "word_frequency": 16924 + }, + { + "word": "umiliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to humiliate", + "romanization": "umiliare", + "example_sentence_native": "Non dovresti mai umiliare una persona, è sbagliato.", + "example_sentence_english": "You should never humiliate a person, it's wrong.", + "pos": "verb", + "word_frequency": 16928 + }, + { + "word": "uniformità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uniformity", + "romanization": "uniformità", + "example_sentence_native": "C'è una certa uniformità nel design dei nuovi edifici.", + "example_sentence_english": "There is a certain uniformity in the design of the new buildings.", + "pos": "noun", + "word_frequency": 16930 + }, + { + "word": "vaccinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vaccinated person", + "romanization": "vaccinato", + "example_sentence_native": "Solo i vaccinati possono accedere all'evento.", + "example_sentence_english": "Only vaccinated people can access the event.", + "pos": "noun", + "word_frequency": 16932 + }, + { + "word": "vagare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wander;to roam", + "romanization": "vagare", + "example_sentence_native": "Mi piace vagare senza meta per le strade della città vecchia.", + "example_sentence_english": "I like to wander aimlessly through the streets of the old city.", + "pos": "verb", + "word_frequency": 16933 + }, + { + "word": "vallone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ravine;gully", + "romanization": "vallone", + "example_sentence_native": "Il sentiero scendeva ripido in un profondo vallone.", + "example_sentence_english": "The path descended steeply into a deep ravine.", + "pos": "noun", + "word_frequency": 16935 + }, + { + "word": "virilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "virility;manliness", + "romanization": "virilità", + "example_sentence_native": "La sua virilità era evidente nel suo portamento fiero.", + "example_sentence_english": "His virility was evident in his proud bearing.", + "pos": "noun", + "word_frequency": 16936 + }, + { + "word": "accentuato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accentuated;strong (of an accent)", + "romanization": "accentuato", + "example_sentence_native": "Parlava con un accento molto accentuato del sud Italia.", + "example_sentence_english": "He spoke with a very strong accent from southern Italy.", + "pos": "adjective", + "word_frequency": 16945 + }, + { + "word": "aerospaziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aerospace", + "romanization": "aerospaziale", + "example_sentence_native": "L'industria aerospaziale è un settore chiave per l'innovazione tecnologica.", + "example_sentence_english": "The aerospace industry is a key sector for technological innovation.", + "pos": "adjective", + "word_frequency": 16947 + }, + { + "word": "allevato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raised;bred", + "romanization": "allevato", + "example_sentence_native": "Questi animali sono stati allevati in una fattoria biologica.", + "example_sentence_english": "These animals were raised on an organic farm.", + "pos": "adjective", + "word_frequency": 16949 + }, + { + "word": "alterato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altered;changed;agitated", + "romanization": "alterato", + "example_sentence_native": "Il documento originale è stato alterato e non è più valido.", + "example_sentence_english": "The original document has been altered and is no longer valid.", + "pos": "adjective", + "word_frequency": 16950 + }, + { + "word": "ammoniaca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ammonia", + "romanization": "ammoniaca", + "example_sentence_native": "L'ammoniaca è usata in molti prodotti per la pulizia.", + "example_sentence_english": "Ammonia is used in many cleaning products.", + "pos": "noun", + "word_frequency": 16951 + }, + { + "word": "apportato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brought;contributed;made (e.g.;changes)", + "romanization": "apportato", + "example_sentence_native": "Le modifiche apportate al progetto hanno migliorato l'efficienza.", + "example_sentence_english": "The changes made to the project have improved efficiency.", + "pos": "adjective", + "word_frequency": 16954 + }, + { + "word": "arabico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Arabic (related to Arabia)", + "romanization": "arabico", + "example_sentence_native": "La penisola arabica è una vasta regione desertica.", + "example_sentence_english": "The Arabian Peninsula is a vast desert region.", + "pos": "adjective", + "word_frequency": 16955 + }, + { + "word": "aristocrazia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aristocracy", + "romanization": "aristocrazia", + "example_sentence_native": "L'aristocrazia deteneva gran parte del potere politico e sociale.", + "example_sentence_english": "The aristocracy held much of the political and social power.", + "pos": "noun", + "word_frequency": 16957 + }, + { + "word": "assemblaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assembly", + "romanization": "assemblaggio", + "example_sentence_native": "Il manuale fornisce istruzioni dettagliate per l'assemblaggio del mobile.", + "example_sentence_english": "The manual provides detailed instructions for the furniture assembly.", + "pos": "noun", + "word_frequency": 16959 + }, + { + "word": "assise", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assizes", + "romanization": "assise", + "example_sentence_native": "Le assise si sono riunite per giudicare il caso.", + "example_sentence_english": "The assizes convened to judge the case.", + "pos": "noun", + "word_frequency": 16960 + }, + { + "word": "astrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstraction", + "romanization": "astrazione", + "example_sentence_native": "L'arte moderna spesso si basa sull'astrazione.", + "example_sentence_english": "Modern art is often based on abstraction.", + "pos": "noun", + "word_frequency": 16961 + }, + { + "word": "ateniese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Athenian", + "romanization": "ateniese", + "example_sentence_native": "Gli ateniesi erano famosi per la loro democrazia.", + "example_sentence_english": "The Athenians were famous for their democracy.", + "pos": "noun", + "word_frequency": 16962 + }, + { + "word": "attraversamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossing", + "romanization": "attraversamento", + "example_sentence_native": "C'è un attraversamento pedonale qui vicino?", + "example_sentence_english": "Is there a pedestrian crossing nearby?", + "pos": "noun", + "word_frequency": 16963 + }, + { + "word": "autocontrollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-control", + "romanization": "autocontrollo", + "example_sentence_native": "Ha dimostrato grande autocontrollo in una situazione difficile.", + "example_sentence_english": "He showed great self-control in a difficult situation.", + "pos": "noun", + "word_frequency": 16964 + }, + { + "word": "basamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "base", + "romanization": "basamento", + "example_sentence_native": "La statua poggia su un solido basamento di marmo.", + "example_sentence_english": "The statue rests on a solid marble base.", + "pos": "noun", + "word_frequency": 16965 + }, + { + "word": "basketball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basketball", + "romanization": "basketball", + "example_sentence_native": "Gioca a basketball ogni sabato.", + "example_sentence_english": "He plays basketball every Saturday.", + "pos": "noun", + "word_frequency": 16966 + }, + { + "word": "basterebbe", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "it would be enough", + "romanization": "basterebbe", + "example_sentence_native": "Un'ora basterebbe per finire il lavoro.", + "example_sentence_english": "An hour would be enough to finish the work.", + "pos": "verb", + "word_frequency": 16967 + }, + { + "word": "bermuda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Bermuda shorts", + "romanization": "bermuda", + "example_sentence_native": "Indossava dei bermuda per la spiaggia.", + "example_sentence_english": "He was wearing Bermuda shorts for the beach.", + "pos": "noun", + "word_frequency": 16969 + }, + { + "word": "bigotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bigot", + "romanization": "bigotto", + "example_sentence_native": "Non sopporto le persone bigotte.", + "example_sentence_english": "I can't stand bigoted people.", + "pos": "noun", + "word_frequency": 16970 + }, + { + "word": "bilanciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balanced", + "romanization": "bilanciato", + "example_sentence_native": "È importante avere una dieta bilanciata.", + "example_sentence_english": "It's important to have a balanced diet.", + "pos": "adjective", + "word_frequency": 16971 + }, + { + "word": "bouquet", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bouquet", + "romanization": "bouquet", + "example_sentence_native": "Ha ricevuto un bellissimo bouquet di rose.", + "example_sentence_english": "She received a beautiful bouquet of roses.", + "pos": "noun", + "word_frequency": 16975 + }, + { + "word": "broglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rigging", + "romanization": "broglio", + "example_sentence_native": "Le elezioni sono state invalidate a causa di brogli.", + "example_sentence_english": "The elections were invalidated due to rigging.", + "pos": "noun", + "word_frequency": 16978 + }, + { + "word": "burqa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burqa", + "romanization": "burqa", + "example_sentence_native": "Alcune donne indossano il burqa per motivi religiosi.", + "example_sentence_english": "Some women wear the burqa for religious reasons.", + "pos": "noun", + "word_frequency": 16979 + }, + { + "word": "bustina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sachet", + "romanization": "bustina", + "example_sentence_native": "Ho comprato una bustina di zucchero.", + "example_sentence_english": "I bought a sachet of sugar.", + "pos": "noun", + "word_frequency": 16982 + }, + { + "word": "califfato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caliphate", + "romanization": "califfato", + "example_sentence_native": "Il califfato era un'importante istituzione storica.", + "example_sentence_english": "The caliphate was an important historical institution.", + "pos": "noun", + "word_frequency": 16983 + }, + { + "word": "caricabatterie", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "battery charger", + "romanization": "caricabatterie", + "example_sentence_native": "Ho bisogno del mio caricabatterie per il telefono.", + "example_sentence_english": "I need my battery charger for the phone.", + "pos": "noun", + "word_frequency": 16986 + }, + { + "word": "castellana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chatelaine", + "romanization": "castellana", + "example_sentence_native": "La castellana accoglieva gli ospiti con grazia.", + "example_sentence_english": "The chatelaine welcomed the guests with grace.", + "pos": "noun", + "word_frequency": 16987 + }, + { + "word": "causalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "causality", + "romanization": "causalità", + "example_sentence_native": "La filosofia studia il principio di causalità.", + "example_sentence_english": "Philosophy studies the principle of causality.", + "pos": "noun", + "word_frequency": 16988 + }, + { + "word": "censurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censored", + "romanization": "censurato", + "example_sentence_native": "Il film è stato censurato in alcuni paesi.", + "example_sentence_english": "The film was censored in some countries.", + "pos": "adjective", + "word_frequency": 16989 + }, + { + "word": "centravanti", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "center forward", + "romanization": "centravanti", + "example_sentence_native": "Il nuovo centravanti ha segnato due gol.", + "example_sentence_english": "The new center forward scored two goals.", + "pos": "noun", + "word_frequency": 16990 + }, + { + "word": "cerro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Turkey oak", + "romanization": "cerro", + "example_sentence_native": "Il bosco era pieno di querce e cerri.", + "example_sentence_english": "The forest was full of oaks and Turkey oaks.", + "pos": "noun", + "word_frequency": 16991 + }, + { + "word": "cetriolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cucumber", + "romanization": "cetriolo", + "example_sentence_native": "Mi piace l'insalata con i cetrioli.", + "example_sentence_english": "I like salad with cucumbers.", + "pos": "noun", + "word_frequency": 16992 + }, + { + "word": "ciondolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pendant", + "romanization": "ciondolo", + "example_sentence_native": "Indossava un ciondolo d'argento al collo.", + "example_sentence_english": "She wore a silver pendant around her neck.", + "pos": "noun", + "word_frequency": 16994 + }, + { + "word": "circoncisione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circumcision", + "romanization": "circoncisione", + "example_sentence_native": "La circoncisione è una pratica religiosa per alcune comunità.", + "example_sentence_english": "Circumcision is a religious practice for some communities.", + "pos": "noun", + "word_frequency": 16995 + }, + { + "word": "colata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flow", + "romanization": "colata", + "example_sentence_native": "La colata lavica ha distrutto il villaggio.", + "example_sentence_english": "The lava flow destroyed the village.", + "pos": "noun", + "word_frequency": 16997 + }, + { + "word": "comparabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparable", + "romanization": "comparabile", + "example_sentence_native": "I due casi non sono comparabili.", + "example_sentence_english": "The two cases are not comparable.", + "pos": "adjective", + "word_frequency": 17000 + }, + { + "word": "componimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composition (e.g.;literary or musical piece)", + "romanization": "componimento", + "example_sentence_native": "Ha scritto un bellissimo componimento poetico.", + "example_sentence_english": "He wrote a beautiful poetic composition.", + "pos": "noun", + "word_frequency": 17001 + }, + { + "word": "confortante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comforting;reassuring", + "romanization": "confortante", + "example_sentence_native": "Le sue parole sono state molto confortanti.", + "example_sentence_english": "Her words were very comforting.", + "pos": "adjective", + "word_frequency": 17002 + }, + { + "word": "contado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "countryside;county (historical)", + "romanization": "contado", + "example_sentence_native": "Viveva nel contado, lontano dalla città.", + "example_sentence_english": "He lived in the countryside, far from the city.", + "pos": "noun", + "word_frequency": 17003 + }, + { + "word": "contattato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "contacted", + "romanization": "contattato", + "example_sentence_native": "Il cliente è stato contattato ieri.", + "example_sentence_english": "The client was contacted yesterday.", + "pos": "adjective", + "word_frequency": 17004 + }, + { + "word": "controindicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraindication", + "romanization": "controindicazione", + "example_sentence_native": "Non ci sono controindicazioni all'uso di questo farmaco.", + "example_sentence_english": "There are no contraindications to the use of this drug.", + "pos": "noun", + "word_frequency": 17005 + }, + { + "word": "converre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to be suitable;to be appropriate (formal;less common)", + "romanization": "converre", + "example_sentence_native": "Non converrebbe agire in questo modo.", + "example_sentence_english": "It would not be appropriate to act in this way.", + "pos": "verb", + "word_frequency": 17006 + }, + { + "word": "decorrenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "effective date;start date", + "romanization": "decorrenza", + "example_sentence_native": "Il contratto ha decorrenza dal primo gennaio.", + "example_sentence_english": "The contract is effective from January first.", + "pos": "noun", + "word_frequency": 17008 + }, + { + "word": "diametrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diametrical", + "romanization": "diametrale", + "example_sentence_native": "Hanno opinioni diametralmente opposte.", + "example_sentence_english": "They have diametrically opposed opinions.", + "pos": "adjective", + "word_frequency": 17010 + }, + { + "word": "disarmante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disarming", + "romanization": "disarmante", + "example_sentence_native": "Il suo sorriso era disarmante.", + "example_sentence_english": "His smile was disarming.", + "pos": "adjective", + "word_frequency": 17012 + }, + { + "word": "discriminare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discriminate", + "romanization": "discriminare", + "example_sentence_native": "È sbagliato discriminare le persone in base alla loro origine.", + "example_sentence_english": "It is wrong to discriminate against people based on their origin.", + "pos": "verb", + "word_frequency": 17013 + }, + { + "word": "disidratazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dehydration", + "romanization": "disidratazione", + "example_sentence_native": "La disidratazione può essere pericolosa.", + "example_sentence_english": "Dehydration can be dangerous.", + "pos": "noun", + "word_frequency": 17014 + }, + { + "word": "disprezzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despise;to scorn", + "romanization": "disprezzare", + "example_sentence_native": "Non dovresti disprezzare le opinioni altrui.", + "example_sentence_english": "You shouldn't despise others' opinions.", + "pos": "verb", + "word_frequency": 17015 + }, + { + "word": "disumano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhuman;inhumane", + "romanization": "disumano", + "example_sentence_native": "Le condizioni di lavoro erano disumane.", + "example_sentence_english": "The working conditions were inhumane.", + "pos": "adjective", + "word_frequency": 17016 + }, + { + "word": "domenicano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dominican (friar;person from Dominican Republic)", + "romanization": "domenicano", + "example_sentence_native": "Un frate domenicano ha tenuto la predica.", + "example_sentence_english": "A Dominican friar gave the sermon.", + "pos": "noun", + "word_frequency": 17017 + }, + { + "word": "dormiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleeping;dormant", + "romanization": "dormiente", + "example_sentence_native": "Il vulcano è considerato dormiente.", + "example_sentence_english": "The volcano is considered dormant.", + "pos": "adjective", + "word_frequency": 17018 + }, + { + "word": "durevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "durable;lasting", + "romanization": "durevole", + "example_sentence_native": "Questo materiale è molto durevole.", + "example_sentence_english": "This material is very durable.", + "pos": "adjective", + "word_frequency": 17020 + }, + { + "word": "elica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propeller;helix", + "romanization": "elica", + "example_sentence_native": "L'elica dell'aereo girava velocemente.", + "example_sentence_english": "The airplane's propeller was spinning fast.", + "pos": "noun", + "word_frequency": 17022 + }, + { + "word": "epilessia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "epilepsy", + "romanization": "epilessia", + "example_sentence_native": "L'epilessia è una condizione neurologica.", + "example_sentence_english": "Epilepsy is a neurological condition.", + "pos": "noun", + "word_frequency": 17024 + }, + { + "word": "fasto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pomp;splendor;ostentation", + "romanization": "fasto", + "example_sentence_native": "La cerimonia si è svolta con grande fasto.", + "example_sentence_english": "The ceremony took place with great pomp.", + "pos": "noun", + "word_frequency": 17026 + }, + { + "word": "fenomenologia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "phenomenology", + "romanization": "fenomenologia", + "example_sentence_native": "La fenomenologia è un ramo della filosofia.", + "example_sentence_english": "Phenomenology is a branch of philosophy.", + "pos": "noun", + "word_frequency": 17027 + }, + { + "word": "garbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grace;politeness;tact", + "romanization": "garbo", + "example_sentence_native": "Ha risposto con grande garbo.", + "example_sentence_english": "He replied with great politeness.", + "pos": "noun", + "word_frequency": 17033 + }, + { + "word": "genialità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genius;brilliance", + "romanization": "genialità", + "example_sentence_native": "La sua genialità è riconosciuta da tutti.", + "example_sentence_english": "His genius is recognized by everyone.", + "pos": "noun", + "word_frequency": 17035 + }, + { + "word": "gonfiabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inflatable", + "romanization": "gonfiabile", + "example_sentence_native": "Abbiamo comprato una piscina gonfiabile per i bambini.", + "example_sentence_english": "We bought an inflatable pool for the children.", + "pos": "adjective", + "word_frequency": 17038 + }, + { + "word": "gradazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gradation", + "romanization": "gradazione", + "example_sentence_native": "Ci sono molte gradazioni di blu in questo dipinto.", + "example_sentence_english": "There are many shades of blue in this painting.", + "pos": "noun", + "word_frequency": 17040 + }, + { + "word": "iconografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iconography", + "romanization": "iconografia", + "example_sentence_native": "Lo studio dell'iconografia è fondamentale per comprendere l'arte medievale.", + "example_sentence_english": "The study of iconography is fundamental for understanding medieval art.", + "pos": "noun", + "word_frequency": 17044 + }, + { + "word": "imbroglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mess", + "romanization": "imbroglio", + "example_sentence_native": "Si è trovato in un brutto imbroglio.", + "example_sentence_english": "He found himself in a bad mess.", + "pos": "noun", + "word_frequency": 17045 + }, + { + "word": "impunità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impunity", + "romanization": "impunità", + "example_sentence_native": "Agire con impunità è inaccettabile.", + "example_sentence_english": "Acting with impunity is unacceptable.", + "pos": "noun", + "word_frequency": 17047 + }, + { + "word": "incongruenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inconsistency", + "romanization": "incongruenza", + "example_sentence_native": "C'è una chiara incongruenza tra le sue parole e le sue azioni.", + "example_sentence_english": "There is a clear inconsistency between his words and his actions.", + "pos": "noun", + "word_frequency": 17049 + }, + { + "word": "infradito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flip-flops", + "romanization": "infradito", + "example_sentence_native": "Ho comprato un nuovo paio di infradito per l'estate.", + "example_sentence_english": "I bought a new pair of flip-flops for the summer.", + "pos": "noun", + "word_frequency": 17050 + }, + { + "word": "insicuro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insecure", + "romanization": "insicuro", + "example_sentence_native": "Si sente spesso insicuro riguardo al suo aspetto.", + "example_sentence_english": "He often feels insecure about his appearance.", + "pos": "adjective", + "word_frequency": 17051 + }, + { + "word": "insignito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awarded", + "romanization": "insignito", + "example_sentence_native": "È stato insignito del premio per il suo contributo alla scienza.", + "example_sentence_english": "He was awarded the prize for his contribution to science.", + "pos": "adjective", + "word_frequency": 17052 + }, + { + "word": "insinuare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to insinuate", + "romanization": "insinuare", + "example_sentence_native": "Non voleva insinuare nulla di male.", + "example_sentence_english": "He didn't want to insinuate anything bad.", + "pos": "verb", + "word_frequency": 17053 + }, + { + "word": "integrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supplementary", + "romanization": "integrativo", + "example_sentence_native": "Hanno proposto un piano integrativo per migliorare i servizi.", + "example_sentence_english": "They proposed a supplementary plan to improve services.", + "pos": "adjective", + "word_frequency": 17054 + }, + { + "word": "intoccabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "untouchable", + "romanization": "intoccabile", + "example_sentence_native": "Per molti, la sua reputazione era intoccabile.", + "example_sentence_english": "For many, his reputation was untouchable.", + "pos": "adjective", + "word_frequency": 17055 + }, + { + "word": "investitura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "investiture", + "romanization": "investitura", + "example_sentence_native": "La cerimonia di investitura del nuovo presidente si terrà domani.", + "example_sentence_english": "The investiture ceremony of the new president will be held tomorrow.", + "pos": "noun", + "word_frequency": 17056 + }, + { + "word": "liturgico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liturgical", + "romanization": "liturgico", + "example_sentence_native": "Hanno partecipato a una cerimonia liturgica.", + "example_sentence_english": "They participated in a liturgical ceremony.", + "pos": "adjective", + "word_frequency": 17061 + }, + { + "word": "lungometraggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feature film", + "romanization": "lungometraggio", + "example_sentence_native": "Il suo primo lungometraggio ha vinto molti premi.", + "example_sentence_english": "His first feature film won many awards.", + "pos": "noun", + "word_frequency": 17062 + }, + { + "word": "mensola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shelf", + "romanization": "mensola", + "example_sentence_native": "Ho messo i libri sulla mensola.", + "example_sentence_english": "I put the books on the shelf.", + "pos": "noun", + "word_frequency": 17067 + }, + { + "word": "meravigliarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to marvel", + "romanization": "meravigliarsi", + "example_sentence_native": "Mi meraviglio sempre della bellezza della natura.", + "example_sentence_english": "I always marvel at the beauty of nature.", + "pos": "verb", + "word_frequency": 17068 + }, + { + "word": "monografia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monograph", + "romanization": "monografia", + "example_sentence_native": "Ha pubblicato una monografia sull'arte rinascimentale.", + "example_sentence_english": "He published a monograph on Renaissance art.", + "pos": "noun", + "word_frequency": 17070 + }, + { + "word": "nicotina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nicotine", + "romanization": "nicotina", + "example_sentence_native": "La nicotina crea dipendenza.", + "example_sentence_english": "Nicotine is addictive.", + "pos": "noun", + "word_frequency": 17075 + }, + { + "word": "nutriente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nutritious", + "romanization": "nutriente", + "example_sentence_native": "Questo cibo è molto nutriente.", + "example_sentence_english": "This food is very nutritious.", + "pos": "adjective", + "word_frequency": 17076 + }, + { + "word": "obiettività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "objectivity", + "romanization": "obiettività", + "example_sentence_native": "È importante mantenere l'obiettività nel giudizio.", + "example_sentence_english": "It's important to maintain objectivity in judgment.", + "pos": "noun", + "word_frequency": 17078 + }, + { + "word": "odiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hated", + "romanization": "odiato", + "example_sentence_native": "Era un personaggio odiato da molti.", + "example_sentence_english": "He was a character hated by many.", + "pos": "adjective", + "word_frequency": 17079 + }, + { + "word": "offerente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bidder;offeror", + "romanization": "offerente", + "example_sentence_native": "L'offerente ha presentato la sua proposta entro la scadenza.", + "example_sentence_english": "The bidder submitted their proposal by the deadline.", + "pos": "noun", + "word_frequency": 17080 + }, + { + "word": "oscillazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oscillation;fluctuation", + "romanization": "oscillazione", + "example_sentence_native": "Abbiamo notato un'oscillazione nei prezzi del mercato.", + "example_sentence_english": "We noticed a fluctuation in market prices.", + "pos": "noun", + "word_frequency": 17081 + }, + { + "word": "ottenimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtaining;achievement", + "romanization": "ottenimento", + "example_sentence_native": "L'ottenimento del permesso ha richiesto molto tempo.", + "example_sentence_english": "The obtaining of the permit took a long time.", + "pos": "noun", + "word_frequency": 17082 + }, + { + "word": "penuria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortage;scarcity", + "romanization": "penuria", + "example_sentence_native": "C'è una penuria d'acqua in alcune regioni.", + "example_sentence_english": "There is a shortage of water in some regions.", + "pos": "noun", + "word_frequency": 17083 + }, + { + "word": "performer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "performer", + "romanization": "performer", + "example_sentence_native": "La performer ha incantato il pubblico con la sua voce.", + "example_sentence_english": "The performer enchanted the audience with her voice.", + "pos": "noun", + "word_frequency": 17084 + }, + { + "word": "personalizzazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "personalization;customization", + "romanization": "personalizzazione", + "example_sentence_native": "La personalizzazione del prodotto è un punto di forza.", + "example_sentence_english": "Product personalization is a strong point.", + "pos": "noun", + "word_frequency": 17085 + }, + { + "word": "perversione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perversion", + "romanization": "perversione", + "example_sentence_native": "Il film esplora le perversioni della mente umana.", + "example_sentence_english": "The film explores the perversions of the human mind.", + "pos": "noun", + "word_frequency": 17086 + }, + { + "word": "piegato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bent;folded", + "romanization": "piegato", + "example_sentence_native": "Il foglio era piegato a metà.", + "example_sentence_english": "The sheet was folded in half.", + "pos": "adjective", + "word_frequency": 17088 + }, + { + "word": "pipistrello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bat", + "romanization": "pipistrello", + "example_sentence_native": "Il pipistrello vola di notte.", + "example_sentence_english": "The bat flies at night.", + "pos": "noun", + "word_frequency": 17091 + }, + { + "word": "pomeridiano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "afternoon (adj.)", + "romanization": "pomeridiano", + "example_sentence_native": "Abbiamo un appuntamento pomeridiano.", + "example_sentence_english": "We have an afternoon appointment.", + "pos": "adjective", + "word_frequency": 17094 + }, + { + "word": "pornografico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pornographic", + "romanization": "pornografico", + "example_sentence_native": "Il contenuto era di natura pornografica.", + "example_sentence_english": "The content was of a pornographic nature.", + "pos": "adjective", + "word_frequency": 17095 + }, + { + "word": "portamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bearing;posture;demeanor", + "romanization": "portamento", + "example_sentence_native": "Il suo portamento era elegante e sicuro.", + "example_sentence_english": "Her bearing was elegant and confident.", + "pos": "noun", + "word_frequency": 17096 + }, + { + "word": "promulgazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "promulgation;enactment", + "romanization": "promulgazione", + "example_sentence_native": "La promulgazione della nuova legge è imminente.", + "example_sentence_english": "The promulgation of the new law is imminent.", + "pos": "noun", + "word_frequency": 17099 + }, + { + "word": "puntualità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punctuality", + "romanization": "puntualità", + "example_sentence_native": "La puntualità è molto apprezzata in questo lavoro.", + "example_sentence_english": "Punctuality is highly valued in this job.", + "pos": "noun", + "word_frequency": 17100 + }, + { + "word": "raffreddare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cool down;to catch a cold", + "romanization": "raffreddare", + "example_sentence_native": "Dobbiamo raffreddare la bevanda prima di servirla.", + "example_sentence_english": "We need to cool down the drink before serving it.", + "pos": "verb", + "word_frequency": 17103 + }, + { + "word": "rapitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kidnapper;abductor", + "romanization": "rapitore", + "example_sentence_native": "La polizia è alla ricerca del rapitore.", + "example_sentence_english": "The police are looking for the kidnapper.", + "pos": "noun", + "word_frequency": 17106 + }, + { + "word": "realizzabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "achievable;feasible;realizable", + "romanization": "realizzabile", + "example_sentence_native": "Il progetto sembra realizzabile entro i tempi previsti.", + "example_sentence_english": "The project seems achievable within the foreseen times.", + "pos": "adjective", + "word_frequency": 17107 + }, + { + "word": "relazionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to report;to relate", + "romanization": "relazionare", + "example_sentence_native": "Dovrà relazionare i risultati al consiglio.", + "example_sentence_english": "He will have to report the results to the board.", + "pos": "verb", + "word_frequency": 17109 + }, + { + "word": "respiratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "respirator;ventilator", + "romanization": "respiratore", + "example_sentence_native": "Il paziente è stato messo sotto respiratore.", + "example_sentence_english": "The patient was put on a ventilator.", + "pos": "noun", + "word_frequency": 17111 + }, + { + "word": "riesame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-examination;review", + "romanization": "riesame", + "example_sentence_native": "Il caso è stato sottoposto a riesame.", + "example_sentence_english": "The case was subjected to re-examination.", + "pos": "noun", + "word_frequency": 17113 + }, + { + "word": "ripa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bank;steep bank;riverbank", + "romanization": "ripa", + "example_sentence_native": "La casa si trova sulla ripa del fiume.", + "example_sentence_english": "The house is located on the riverbank.", + "pos": "noun", + "word_frequency": 17115 + }, + { + "word": "riscritto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rewritten", + "romanization": "riscritto", + "example_sentence_native": "Il testo è stato completamente riscritto.", + "example_sentence_english": "The text has been completely rewritten.", + "pos": "adjective", + "word_frequency": 17116 + }, + { + "word": "rozzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rough;crude;coarse", + "romanization": "rozzo", + "example_sentence_native": "Il tavolo era fatto di legno rozzo.", + "example_sentence_english": "The table was made of rough wood.", + "pos": "adjective", + "word_frequency": 17119 + }, + { + "word": "sabotare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sabotage", + "romanization": "sabotare", + "example_sentence_native": "Hanno cercato di sabotare il progetto.", + "example_sentence_english": "They tried to sabotage the project.", + "pos": "verb", + "word_frequency": 17120 + }, + { + "word": "scarica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "discharge;load;torrent", + "romanization": "scarica", + "example_sentence_native": "C'è stata una forte scarica di pioggia.", + "example_sentence_english": "There was a heavy downpour of rain.", + "pos": "noun", + "word_frequency": 17126 + }, + { + "word": "sciabola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saber;scimitar", + "romanization": "sciabola", + "example_sentence_native": "Il soldato estrasse la sua sciabola.", + "example_sentence_english": "The soldier drew his saber.", + "pos": "noun", + "word_frequency": 17127 + }, + { + "word": "scoiattolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "squirrel", + "romanization": "scoiattolo", + "example_sentence_native": "Ho visto uno scoiattolo sull'albero.", + "example_sentence_english": "I saw a squirrel on the tree.", + "pos": "noun", + "word_frequency": 17128 + }, + { + "word": "scongiuro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exorcism;adjuration;plea", + "romanization": "scongiuro", + "example_sentence_native": "Fece un scongiuro per allontanare la sfortuna.", + "example_sentence_english": "He made an adjuration to ward off bad luck.", + "pos": "noun", + "word_frequency": 17129 + }, + { + "word": "sdraio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deckchair;lounge chair", + "romanization": "sdraio", + "example_sentence_native": "Mi sono rilassato sulla sdraio in giardino.", + "example_sentence_english": "I relaxed on the deckchair in the garden.", + "pos": "noun", + "word_frequency": 17130 + }, + { + "word": "secrezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secretion", + "romanization": "secrezione", + "example_sentence_native": "La ghiandola produce una secrezione.", + "example_sentence_english": "The gland produces a secretion.", + "pos": "noun", + "word_frequency": 17131 + }, + { + "word": "sfogliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to leaf through;to turn pages;to peel", + "romanization": "sfogliare", + "example_sentence_native": "Mi piace sfogliare vecchi libri.", + "example_sentence_english": "I like to leaf through old books.", + "pos": "verb", + "word_frequency": 17132 + }, + { + "word": "solennità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solemnity;grandeur", + "romanization": "solennità", + "example_sentence_native": "La cerimonia si è svolta con grande solennità.", + "example_sentence_english": "The ceremony took place with great solemnity.", + "pos": "noun", + "word_frequency": 17136 + }, + { + "word": "spazzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swept;cleared", + "romanization": "spazzato", + "example_sentence_native": "Il pavimento era stato appena spazzato.", + "example_sentence_english": "The floor had just been swept.", + "pos": "adjective", + "word_frequency": 17137 + }, + { + "word": "spigolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "edge;corner (of a table;etc.)", + "romanization": "spigolo", + "example_sentence_native": "Ho sbattuto il ginocchio contro lo spigolo del tavolo.", + "example_sentence_english": "I hit my knee against the edge of the table.", + "pos": "noun", + "word_frequency": 17138 + }, + { + "word": "spinoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thorny;prickly;tricky (figurative)", + "romanization": "spinoso", + "example_sentence_native": "La questione è diventata molto spinosa.", + "example_sentence_english": "The issue has become very thorny.", + "pos": "adjective", + "word_frequency": 17139 + }, + { + "word": "spiraglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chink;crack;glimmer (of hope)", + "romanization": "spiraglio", + "example_sentence_native": "C'è uno spiraglio di luce sotto la porta.", + "example_sentence_english": "There's a chink of light under the door.", + "pos": "noun", + "word_frequency": 17140 + }, + { + "word": "spregevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despicable;contemptible", + "romanization": "spregevole", + "example_sentence_native": "Il suo comportamento è stato spregevole.", + "example_sentence_english": "His behavior was despicable.", + "pos": "adjective", + "word_frequency": 17141 + }, + { + "word": "stendardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "standard;banner", + "romanization": "stendardo", + "example_sentence_native": "Il reggimento marciava con il suo stendardo.", + "example_sentence_english": "The regiment marched with its standard.", + "pos": "noun", + "word_frequency": 17144 + }, + { + "word": "strazio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torment;agony;heartbreak", + "romanization": "strazio", + "example_sentence_native": "La notizia della sua perdita fu uno strazio.", + "example_sentence_english": "The news of his loss was an agony.", + "pos": "noun", + "word_frequency": 17145 + }, + { + "word": "suino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swine;porcine;pig (adj.)", + "romanization": "suino", + "example_sentence_native": "La carne suina è molto popolare in Italia.", + "example_sentence_english": "Pork meat is very popular in Italy.", + "pos": "adjective", + "word_frequency": 17146 + }, + { + "word": "suola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sole (of a shoe)", + "romanization": "suola", + "example_sentence_native": "La suola delle mie scarpe è consumata.", + "example_sentence_english": "The sole of my shoes is worn out.", + "pos": "noun", + "word_frequency": 17148 + }, + { + "word": "tariffario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "price list;tariff", + "romanization": "tariffario", + "example_sentence_native": "Puoi consultare il tariffario per i nostri servizi.", + "example_sentence_english": "You can consult the price list for our services.", + "pos": "noun", + "word_frequency": 17153 + }, + { + "word": "ticinese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ticinese (person;thing from Ticino;Switzerland)", + "romanization": "ticinese", + "example_sentence_native": "Molti ticinesi parlano italiano.", + "example_sentence_english": "Many Ticinese people speak Italian.", + "pos": "noun", + "word_frequency": 17158 + }, + { + "word": "titolarità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ownership;entitlement;incumbency", + "romanization": "titolarità", + "example_sentence_native": "La titolarità del diritto è stata confermata.", + "example_sentence_english": "The ownership of the right has been confirmed.", + "pos": "noun", + "word_frequency": 17159 + }, + { + "word": "tossicodipendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drug addict", + "romanization": "tossicodipendente", + "example_sentence_native": "Il centro offre supporto ai tossicodipendenti.", + "example_sentence_english": "The center offers support to drug addicts.", + "pos": "noun", + "word_frequency": 17161 + }, + { + "word": "tozzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chunk (of bread)", + "romanization": "tozzo", + "example_sentence_native": "Mi ha dato un tozzo di pane.", + "example_sentence_english": "He gave me a chunk of bread.", + "pos": "noun", + "word_frequency": 17162 + }, + { + "word": "tracciamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracking", + "romanization": "tracciamento", + "example_sentence_native": "Il tracciamento dei contatti è fondamentale per contenere la pandemia.", + "example_sentence_english": "Contact tracing is essential to contain the pandemic.", + "pos": "noun", + "word_frequency": 17163 + }, + { + "word": "tracollo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collapse;downfall", + "romanization": "tracollo", + "example_sentence_native": "L'azienda ha subito un tracollo finanziario.", + "example_sentence_english": "The company suffered a financial collapse.", + "pos": "noun", + "word_frequency": 17164 + }, + { + "word": "ulcera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ulcer", + "romanization": "ulcera", + "example_sentence_native": "Ha un'ulcera allo stomaco.", + "example_sentence_english": "He has a stomach ulcer.", + "pos": "noun", + "word_frequency": 17166 + }, + { + "word": "valigetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "briefcase;small suitcase", + "romanization": "valigetta", + "example_sentence_native": "Il manager portava sempre una valigetta di pelle.", + "example_sentence_english": "The manager always carried a leather briefcase.", + "pos": "noun", + "word_frequency": 17168 + }, + { + "word": "vasetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small jar;pot", + "romanization": "vasetto", + "example_sentence_native": "Ho comprato un vasetto di marmellata.", + "example_sentence_english": "I bought a small jar of jam.", + "pos": "noun", + "word_frequency": 17169 + }, + { + "word": "vedovo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "widower", + "romanization": "vedovo", + "example_sentence_native": "Dopo la morte della moglie, è rimasto vedovo.", + "example_sentence_english": "After his wife's death, he remained a widower.", + "pos": "noun", + "word_frequency": 17170 + }, + { + "word": "vertenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dispute;controversy", + "romanization": "vertenza", + "example_sentence_native": "C'è una vertenza sindacale in corso.", + "example_sentence_english": "There is a labor dispute ongoing.", + "pos": "noun", + "word_frequency": 17171 + }, + { + "word": "vipera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "viper", + "romanization": "vipera", + "example_sentence_native": "Attenzione, in questa zona ci sono vipere.", + "example_sentence_english": "Beware, there are vipers in this area.", + "pos": "noun", + "word_frequency": 17173 + }, + { + "word": "viscido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slimy;slippery", + "romanization": "viscido", + "example_sentence_native": "La superficie era viscida dopo la pioggia.", + "example_sentence_english": "The surface was slimy after the rain.", + "pos": "adjective", + "word_frequency": 17174 + }, + { + "word": "vongola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clam", + "romanization": "vongola", + "example_sentence_native": "Ho ordinato spaghetti alle vongole.", + "example_sentence_english": "I ordered spaghetti with clams.", + "pos": "noun", + "word_frequency": 17178 + }, + { + "word": "abbaiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to bark", + "romanization": "abbaiare", + "example_sentence_native": "Il cane ha iniziato ad abbaiare forte.", + "example_sentence_english": "The dog started to bark loudly.", + "pos": "verb", + "word_frequency": 17181 + }, + { + "word": "abbassato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lowered;down", + "romanization": "abbassato", + "example_sentence_native": "Ha tenuto lo sguardo abbassato.", + "example_sentence_english": "He kept his gaze lowered.", + "pos": "adjective", + "word_frequency": 17183 + }, + { + "word": "abitabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "habitable;livable", + "romanization": "abitabile", + "example_sentence_native": "La casa è piccola ma abitabile.", + "example_sentence_english": "The house is small but habitable.", + "pos": "adjective", + "word_frequency": 17184 + }, + { + "word": "affogare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drown;to suffocate", + "romanization": "affogare", + "example_sentence_native": "Il bambino stava per affogare nel lago.", + "example_sentence_english": "The child was about to drown in the lake.", + "pos": "verb", + "word_frequency": 17185 + }, + { + "word": "aggiudicazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "awarding;adjudication", + "romanization": "aggiudicazione", + "example_sentence_native": "L'aggiudicazione del contratto è avvenuta ieri.", + "example_sentence_english": "The awarding of the contract took place yesterday.", + "pos": "noun", + "word_frequency": 17186 + }, + { + "word": "allattamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breastfeeding;lactation", + "romanization": "allattamento", + "example_sentence_native": "L'allattamento al seno è raccomandato per i neonati.", + "example_sentence_english": "Breastfeeding is recommended for newborns.", + "pos": "noun", + "word_frequency": 17187 + }, + { + "word": "ammortizzatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shock absorber;damper", + "romanization": "ammortizzatore", + "example_sentence_native": "Gli ammortizzatori dell'auto sono da cambiare.", + "example_sentence_english": "The car's shock absorbers need to be changed.", + "pos": "noun", + "word_frequency": 17189 + }, + { + "word": "anagrafe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registry office;civil registry", + "romanization": "anagrafe", + "example_sentence_native": "Devo andare all'anagrafe per il certificato di residenza.", + "example_sentence_english": "I need to go to the registry office for the certificate of residence.", + "pos": "noun", + "word_frequency": 17190 + }, + { + "word": "antidepressivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antidepressant", + "romanization": "antidepressivo", + "example_sentence_native": "Il medico le ha prescritto un antidepressivo.", + "example_sentence_english": "The doctor prescribed her an antidepressant.", + "pos": "noun", + "word_frequency": 17191 + }, + { + "word": "apatia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apathy", + "romanization": "apatia", + "example_sentence_native": "La sua apatia era preoccupante.", + "example_sentence_english": "His apathy was worrying.", + "pos": "noun", + "word_frequency": 17192 + }, + { + "word": "appannaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prerogative;exclusive right", + "romanization": "appannaggio", + "example_sentence_native": "La decisione è di suo esclusivo appannaggio.", + "example_sentence_english": "The decision is his exclusive prerogative.", + "pos": "noun", + "word_frequency": 17193 + }, + { + "word": "arciere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archer", + "romanization": "arciere", + "example_sentence_native": "L'arciere mirava con precisione al bersaglio.", + "example_sentence_english": "The archer aimed precisely at the target.", + "pos": "noun", + "word_frequency": 17196 + }, + { + "word": "arido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arid;dry;barren", + "romanization": "arido", + "example_sentence_native": "Il deserto è un luogo arido.", + "example_sentence_english": "The desert is an arid place.", + "pos": "adjective", + "word_frequency": 17197 + }, + { + "word": "aristocratico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aristocratic", + "romanization": "aristocratico", + "example_sentence_native": "Aveva un portamento aristocratico.", + "example_sentence_english": "He had an aristocratic bearing.", + "pos": "adjective", + "word_frequency": 17198 + }, + { + "word": "assediato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "besieged;under siege", + "romanization": "assediato", + "example_sentence_native": "La città era assediata dalle truppe nemiche.", + "example_sentence_english": "The city was besieged by enemy troops.", + "pos": "adjective", + "word_frequency": 17199 + }, + { + "word": "astronomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "astronomer", + "romanization": "astronomo", + "example_sentence_native": "L'astronomo ha scoperto una nuova galassia.", + "example_sentence_english": "The astronomer discovered a new galaxy.", + "pos": "noun", + "word_frequency": 17201 + }, + { + "word": "attentatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attacker;bomber", + "romanization": "attentatore", + "example_sentence_native": "La polizia ha arrestato l'attentatore.", + "example_sentence_english": "The police arrested the attacker.", + "pos": "noun", + "word_frequency": 17202 + }, + { + "word": "bagliore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glare;gleam;flash", + "romanization": "bagliore", + "example_sentence_native": "Un bagliore improvviso ha illuminato il cielo.", + "example_sentence_english": "A sudden flash lit up the sky.", + "pos": "noun", + "word_frequency": 17204 + }, + { + "word": "baita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountain hut;chalet", + "romanization": "baita", + "example_sentence_native": "Abbiamo affittato una baita in montagna per le vacanze.", + "example_sentence_english": "We rented a mountain hut in the mountains for the holidays.", + "pos": "noun", + "word_frequency": 17205 + }, + { + "word": "basale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "basal;basic;fundamental", + "romanization": "basale", + "example_sentence_native": "Il metabolismo basale è la quantità di energia che il corpo brucia a riposo.", + "example_sentence_english": "Basal metabolism is the amount of energy the body burns at rest.", + "pos": "adjective", + "word_frequency": 17207 + }, + { + "word": "bastione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bastion", + "romanization": "bastione", + "example_sentence_native": "Le antiche mura della città avevano robusti bastioni.", + "example_sentence_english": "The ancient city walls had strong bastions.", + "pos": "noun", + "word_frequency": 17208 + }, + { + "word": "bavaglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gag;muzzle", + "romanization": "bavaglio", + "example_sentence_native": "Hanno messo un bavaglio alla bocca del prigioniero.", + "example_sentence_english": "They put a gag over the prisoner's mouth.", + "pos": "noun", + "word_frequency": 17209 + }, + { + "word": "bebè", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby", + "romanization": "bebè", + "example_sentence_native": "Il bebè dorme nella sua culla.", + "example_sentence_english": "The baby is sleeping in its crib.", + "pos": "noun", + "word_frequency": 17210 + }, + { + "word": "bruciore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burning sensation;sting", + "romanization": "bruciore", + "example_sentence_native": "Ho un bruciore di stomaco dopo aver mangiato troppo.", + "example_sentence_english": "I have a burning sensation in my stomach after eating too much.", + "pos": "noun", + "word_frequency": 17214 + }, + { + "word": "buonismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "do-goodism;excessive benevolence", + "romanization": "buonismo", + "example_sentence_native": "Alcuni criticano il buonismo come un approccio ingenuo ai problemi sociali.", + "example_sentence_english": "Some criticize do-goodism as a naive approach to social problems.", + "pos": "noun", + "word_frequency": 17215 + }, + { + "word": "cadente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "falling;decaying;dilapidated", + "romanization": "cadente", + "example_sentence_native": "La vecchia casa era ormai cadente e pericolosa.", + "example_sentence_english": "The old house was now dilapidated and dangerous.", + "pos": "adjective", + "word_frequency": 17216 + }, + { + "word": "cascare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fall;to tumble", + "romanization": "cascare", + "example_sentence_native": "Attento a non cascare dalle scale!", + "example_sentence_english": "Be careful not to fall down the stairs!", + "pos": "verb", + "word_frequency": 17217 + }, + { + "word": "catacomba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catacomb", + "romanization": "catacomba", + "example_sentence_native": "Abbiamo visitato le antiche catacombe romane.", + "example_sentence_english": "We visited the ancient Roman catacombs.", + "pos": "noun", + "word_frequency": 17218 + }, + { + "word": "cellulosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cellulose", + "romanization": "cellulosa", + "example_sentence_native": "La cellulosa è il componente principale delle pareti cellulari delle piante.", + "example_sentence_english": "Cellulose is the main component of plant cell walls.", + "pos": "noun", + "word_frequency": 17221 + }, + { + "word": "chaos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chaos", + "romanization": "chaos", + "example_sentence_native": "Dopo l'incidente, c'era il caos totale sulla strada.", + "example_sentence_english": "After the accident, there was total chaos on the road.", + "pos": "noun", + "word_frequency": 17223 + }, + { + "word": "cisti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyst", + "romanization": "cisti", + "example_sentence_native": "Il medico ha detto che la cisti è benigna.", + "example_sentence_english": "The doctor said the cyst is benign.", + "pos": "noun", + "word_frequency": 17228 + }, + { + "word": "comitiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "group;party (of people)", + "romanization": "comitiva", + "example_sentence_native": "Siamo partiti in comitiva per la gita.", + "example_sentence_english": "We left in a group for the trip.", + "pos": "noun", + "word_frequency": 17232 + }, + { + "word": "compulsivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compulsive", + "romanization": "compulsivo", + "example_sentence_native": "Ha un disturbo ossessivo-compulsivo.", + "example_sentence_english": "He has an obsessive-compulsive disorder.", + "pos": "adjective", + "word_frequency": 17233 + }, + { + "word": "coniugare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to conjugate (grammar);to combine", + "romanization": "coniugare", + "example_sentence_native": "Devi imparare a coniugare i verbi irregolari.", + "example_sentence_english": "You must learn to conjugate irregular verbs.", + "pos": "verb", + "word_frequency": 17234 + }, + { + "word": "contraccettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contraceptive", + "romanization": "contraccettivo", + "example_sentence_native": "Il medico ha discusso le opzioni contraccettive.", + "example_sentence_english": "The doctor discussed contraceptive options.", + "pos": "noun", + "word_frequency": 17235 + }, + { + "word": "decano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dean (of a faculty);doyen", + "romanization": "decano", + "example_sentence_native": "Il decano della facoltà ha annunciato le nuove regole.", + "example_sentence_english": "The dean of the faculty announced the new rules.", + "pos": "noun", + "word_frequency": 17238 + }, + { + "word": "decoder", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decoder;set-top box", + "romanization": "decoder", + "example_sentence_native": "Ho bisogno di un nuovo decoder per vedere i canali digitali.", + "example_sentence_english": "I need a new decoder to watch digital channels.", + "pos": "noun", + "word_frequency": 17239 + }, + { + "word": "demarcazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demarcation", + "romanization": "demarcazione", + "example_sentence_native": "La demarcazione tra i due territori è stata stabilita da un trattato.", + "example_sentence_english": "The demarcation between the two territories was established by a treaty.", + "pos": "noun", + "word_frequency": 17240 + }, + { + "word": "densamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "densely", + "romanization": "densamente", + "example_sentence_native": "La foresta era densamente popolata di alberi secolari.", + "example_sentence_english": "The forest was densely populated with ancient trees.", + "pos": "adverb", + "word_frequency": 17242 + }, + { + "word": "diceria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rumor", + "romanization": "diceria", + "example_sentence_native": "Non credere a ogni diceria che senti.", + "example_sentence_english": "Don't believe every rumor you hear.", + "pos": "noun", + "word_frequency": 17243 + }, + { + "word": "discontinuità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discontinuity", + "romanization": "discontinuità", + "example_sentence_native": "C'è stata una chiara discontinuità nella politica economica del governo.", + "example_sentence_english": "There was a clear discontinuity in the government's economic policy.", + "pos": "noun", + "word_frequency": 17245 + }, + { + "word": "disputare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispute", + "romanization": "disputare", + "example_sentence_native": "Le due squadre si sono disputate la finale con grande ardore.", + "example_sentence_english": "The two teams contended for the final with great fervor.", + "pos": "verb", + "word_frequency": 17246 + }, + { + "word": "eclettico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eclectic", + "romanization": "eclettico", + "example_sentence_native": "È un artista con uno stile eclettico e originale.", + "example_sentence_english": "He is an artist with an eclectic and original style.", + "pos": "adjective", + "word_frequency": 17249 + }, + { + "word": "esasperare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exasperate", + "romanization": "esasperare", + "example_sentence_native": "Il suo comportamento irresponsabile mi sta esasperando.", + "example_sentence_english": "His irresponsible behavior is exasperating me.", + "pos": "verb", + "word_frequency": 17250 + }, + { + "word": "esporsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to expose oneself", + "romanization": "esporsi", + "example_sentence_native": "Non vuole esporsi troppo in pubblico.", + "example_sentence_english": "He doesn't want to expose himself too much in public.", + "pos": "verb", + "word_frequency": 17251 + }, + { + "word": "eterogeneo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heterogeneous", + "romanization": "eterogeneo", + "example_sentence_native": "Il gruppo era composto da individui con background molto eterogenei.", + "example_sentence_english": "The group was composed of individuals with very heterogeneous backgrounds.", + "pos": "adjective", + "word_frequency": 17252 + }, + { + "word": "figurarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to imagine;(idiomatic) you're welcome", + "romanization": "figurarsi", + "example_sentence_native": "\"Grazie mille!\" \"Figurati!\"", + "example_sentence_english": "\"Thanks a lot!\" \"You're welcome!\"", + "pos": "verb", + "word_frequency": 17257 + }, + { + "word": "fisionomia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "physiognomy", + "romanization": "fisionomia", + "example_sentence_native": "La fisionomia del paesaggio è cambiata molto negli anni.", + "example_sentence_english": "The physiognomy of the landscape has changed a lot over the years.", + "pos": "noun", + "word_frequency": 17259 + }, + { + "word": "formarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to form oneself;to train", + "romanization": "formarsi", + "example_sentence_native": "Si è formato come ingegnere in una prestigiosa università.", + "example_sentence_english": "He trained as an engineer at a prestigious university.", + "pos": "verb", + "word_frequency": 17260 + }, + { + "word": "fratellastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepbrother", + "romanization": "fratellastro", + "example_sentence_native": "Mio fratellastro vive in un'altra città.", + "example_sentence_english": "My stepbrother lives in another city.", + "pos": "noun", + "word_frequency": 17261 + }, + { + "word": "friggere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to fry", + "romanization": "friggere", + "example_sentence_native": "Mi piace friggere le patate per cena.", + "example_sentence_english": "I like to fry potatoes for dinner.", + "pos": "verb", + "word_frequency": 17262 + }, + { + "word": "genealogico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "genealogical", + "romanization": "genealogico", + "example_sentence_native": "Ha fatto una ricerca approfondita sul suo albero genealogico.", + "example_sentence_english": "He did extensive research on his genealogical tree.", + "pos": "adjective", + "word_frequency": 17263 + }, + { + "word": "ghiacciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze", + "romanization": "ghiacciare", + "example_sentence_native": "L'acqua nel lago ha iniziato a ghiacciare.", + "example_sentence_english": "The water in the lake started to freeze.", + "pos": "verb", + "word_frequency": 17265 + }, + { + "word": "glossario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glossary", + "romanization": "glossario", + "example_sentence_native": "Alla fine del libro c'è un utile glossario.", + "example_sentence_english": "At the end of the book there is a useful glossary.", + "pos": "noun", + "word_frequency": 17268 + }, + { + "word": "gogna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pillory", + "romanization": "gogna", + "example_sentence_native": "Mettere qualcuno alla gogna significa esporlo al pubblico disprezzo.", + "example_sentence_english": "To put someone in the pillory means to expose them to public contempt.", + "pos": "noun", + "word_frequency": 17269 + }, + { + "word": "graal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Grail", + "romanization": "Graal", + "example_sentence_native": "La ricerca del Santo Graal è un tema ricorrente nelle leggende arturiane.", + "example_sentence_english": "The quest for the Holy Grail is a recurring theme in Arthurian legends.", + "pos": "noun", + "word_frequency": 17271 + }, + { + "word": "graficamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphically", + "romanization": "graficamente", + "example_sentence_native": "Il report presenta i dati graficamente in modo chiaro.", + "example_sentence_english": "The report presents the data graphically in a clear way.", + "pos": "adverb", + "word_frequency": 17272 + }, + { + "word": "idealista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idealist", + "romanization": "idealista", + "example_sentence_native": "È un idealista che crede ancora nel potere del cambiamento.", + "example_sentence_english": "He is an idealist who still believes in the power of change.", + "pos": "noun", + "word_frequency": 17275 + }, + { + "word": "imbarazzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embarrass", + "romanization": "imbarazzare", + "example_sentence_native": "La sua domanda mi ha imbarazzato molto.", + "example_sentence_english": "His question embarrassed me a lot.", + "pos": "verb", + "word_frequency": 17277 + }, + { + "word": "imbarcare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embark;to board", + "romanization": "imbarcare", + "example_sentence_native": "I passeggeri sono pronti a imbarcare sull'aereo.", + "example_sentence_english": "The passengers are ready to board the plane.", + "pos": "verb", + "word_frequency": 17278 + }, + { + "word": "imbattersi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come across;to run into", + "romanization": "imbattersi", + "example_sentence_native": "Mi sono imbattuto in un vecchio amico al supermercato.", + "example_sentence_english": "I ran into an old friend at the supermarket.", + "pos": "verb", + "word_frequency": 17279 + }, + { + "word": "impennata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surge;sudden rise", + "romanization": "impennata", + "example_sentence_native": "C'è stata un'impennata dei prezzi del carburante.", + "example_sentence_english": "There has been a surge in fuel prices.", + "pos": "noun", + "word_frequency": 17280 + }, + { + "word": "indebitamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indebtedness;debt", + "romanization": "indebitamento", + "example_sentence_native": "L'azienda ha un alto livello di indebitamento.", + "example_sentence_english": "The company has a high level of indebtedness.", + "pos": "noun", + "word_frequency": 17281 + }, + { + "word": "inerte", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inert;motionless", + "romanization": "inerte", + "example_sentence_native": "Il corpo giaceva inerte sul pavimento.", + "example_sentence_english": "The body lay inert on the floor.", + "pos": "adjective", + "word_frequency": 17282 + }, + { + "word": "infettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to infect", + "romanization": "infettare", + "example_sentence_native": "Il virus può infettare le cellule umane.", + "example_sentence_english": "The virus can infect human cells.", + "pos": "verb", + "word_frequency": 17283 + }, + { + "word": "insediare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to install;to establish;to settle", + "romanization": "insediare", + "example_sentence_native": "Il nuovo presidente sarà insediato la prossima settimana.", + "example_sentence_english": "The new president will be installed next week.", + "pos": "verb", + "word_frequency": 17285 + }, + { + "word": "insostituibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irreplaceable", + "romanization": "insostituibile", + "example_sentence_native": "La sua esperienza lo rende insostituibile.", + "example_sentence_english": "His experience makes him irreplaceable.", + "pos": "adjective", + "word_frequency": 17286 + }, + { + "word": "intimidazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidazione", + "romanization": "intimidazione", + "example_sentence_native": "Ha subito atti di intimidazione.", + "example_sentence_english": "He suffered acts of intimidation.", + "pos": "noun", + "word_frequency": 17287 + }, + { + "word": "irreale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unreal;surreal", + "romanization": "irreale", + "example_sentence_native": "La situazione sembrava completamente irreale.", + "example_sentence_english": "The situation seemed completely unreal.", + "pos": "adjective", + "word_frequency": 17288 + }, + { + "word": "ispirarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be inspired by", + "romanization": "ispirarsi", + "example_sentence_native": "L'artista si ispira alla natura.", + "example_sentence_english": "The artist is inspired by nature.", + "pos": "verb", + "word_frequency": 17290 + }, + { + "word": "latteo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "milky;lacteal", + "romanization": "latteo", + "example_sentence_native": "La Via Lattea è la nostra galassia.", + "example_sentence_english": "The Milky Way is our galaxy.", + "pos": "adjective", + "word_frequency": 17294 + }, + { + "word": "letargo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hibernation;lethargy", + "romanization": "letargo", + "example_sentence_native": "L'orso va in letargo durante l'inverno.", + "example_sentence_english": "The bear goes into hibernation during winter.", + "pos": "noun", + "word_frequency": 17298 + }, + { + "word": "lussuoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "luxurious", + "romanization": "lussuoso", + "example_sentence_native": "Hanno comprato una macchina lussuosa.", + "example_sentence_english": "They bought a luxurious car.", + "pos": "adjective", + "word_frequency": 17301 + }, + { + "word": "macinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grind;to mill", + "romanization": "macinare", + "example_sentence_native": "Il caffè viene macinato fresco ogni mattina.", + "example_sentence_english": "The coffee is ground fresh every morning.", + "pos": "verb", + "word_frequency": 17302 + }, + { + "word": "manganello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "truncheon;baton", + "romanization": "manganello", + "example_sentence_native": "La polizia usava i manganelli per disperdere la folla.", + "example_sentence_english": "The police used batons to disperse the crowd.", + "pos": "noun", + "word_frequency": 17306 + }, + { + "word": "mimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mime;mimic", + "romanization": "mimo", + "example_sentence_native": "Il mimo ha intrattenuto la folla senza dire una parola.", + "example_sentence_english": "The mime entertained the crowd without saying a word.", + "pos": "noun", + "word_frequency": 17310 + }, + { + "word": "monoposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "single-seater (car)", + "romanization": "monoposto", + "example_sentence_native": "La Formula 1 è una gara di monoposto.", + "example_sentence_english": "Formula 1 is a single-seater race.", + "pos": "noun", + "word_frequency": 17312 + }, + { + "word": "monotonia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "monotony", + "romanization": "monotonia", + "example_sentence_native": "La monotonia del lavoro lo annoiava.", + "example_sentence_english": "The monotony of the work bored him.", + "pos": "noun", + "word_frequency": 17313 + }, + { + "word": "monsignore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monsignor", + "romanization": "monsignore", + "example_sentence_native": "Il monsignore ha celebrato la messa.", + "example_sentence_english": "The monsignor celebrated the mass.", + "pos": "noun", + "word_frequency": 17314 + }, + { + "word": "moroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defaulter;debtor", + "romanization": "moroso", + "example_sentence_native": "Il moroso non ha pagato l'affitto per tre mesi.", + "example_sentence_english": "The defaulter has not paid the rent for three months.", + "pos": "noun", + "word_frequency": 17316 + }, + { + "word": "multare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fine", + "romanization": "multare", + "example_sentence_native": "La polizia lo ha multato per eccesso di velocità.", + "example_sentence_english": "The police fined him for speeding.", + "pos": "verb", + "word_frequency": 17317 + }, + { + "word": "mutilato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutilated;maimed", + "romanization": "mutilato", + "example_sentence_native": "Era un soldato mutilato dalla guerra.", + "example_sentence_english": "He was a soldier mutilated by the war.", + "pos": "adjective", + "word_frequency": 17318 + }, + { + "word": "narice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nostril", + "romanization": "narice", + "example_sentence_native": "Il cavallo dilatò le narici.", + "example_sentence_english": "The horse flared its nostrils.", + "pos": "noun", + "word_frequency": 17322 + }, + { + "word": "nettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nectar", + "romanization": "nettare", + "example_sentence_native": "Le api raccolgono il nettare dai fiori.", + "example_sentence_english": "Bees collect nectar from flowers.", + "pos": "noun", + "word_frequency": 17323 + }, + { + "word": "nordico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Nordic", + "romanization": "nordico", + "example_sentence_native": "Mi piace il design nordico.", + "example_sentence_english": "I like Nordic design.", + "pos": "adjective", + "word_frequency": 17325 + }, + { + "word": "nostrum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nostrum (quack remedy)", + "romanization": "nostrum", + "example_sentence_native": "Il venditore ambulante prometteva un nostrum per ogni male.", + "example_sentence_english": "The street vendor promised a nostrum for every ailment.", + "pos": "noun", + "word_frequency": 17326 + }, + { + "word": "occulto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occult;hidden", + "romanization": "occulto", + "example_sentence_native": "Ci sono molte pratiche occulte.", + "example_sentence_english": "There are many occult practices.", + "pos": "adjective", + "word_frequency": 17327 + }, + { + "word": "oggettività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "objectivity", + "romanization": "oggettività", + "example_sentence_native": "È difficile mantenere l'oggettività in queste situazioni.", + "example_sentence_english": "It's difficult to maintain objectivity in these situations.", + "pos": "noun", + "word_frequency": 17328 + }, + { + "word": "olmo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "elm", + "romanization": "olmo", + "example_sentence_native": "L'olmo è un albero maestoso.", + "example_sentence_english": "The elm is a majestic tree.", + "pos": "noun", + "word_frequency": 17330 + }, + { + "word": "ombrellone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "beach umbrella;large umbrella", + "romanization": "ombrellone", + "example_sentence_native": "Abbiamo affittato un ombrellone in spiaggia.", + "example_sentence_english": "We rented a beach umbrella on the beach.", + "pos": "noun", + "word_frequency": 17331 + }, + { + "word": "onorificenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "honor;award;decoration", + "romanization": "onorificenza", + "example_sentence_native": "Ha ricevuto un'onorificenza per i suoi servizi.", + "example_sentence_english": "He received an honor for his services.", + "pos": "noun", + "word_frequency": 17332 + }, + { + "word": "opzionale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "optional", + "romanization": "opzionale", + "example_sentence_native": "La partecipazione al corso è opzionale.", + "example_sentence_english": "Participation in the course is optional.", + "pos": "adjective", + "word_frequency": 17333 + }, + { + "word": "orologeria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "watchmaking;clockmaking", + "romanization": "orologeria", + "example_sentence_native": "L'orologeria svizzera è famosa in tutto il mondo.", + "example_sentence_english": "Swiss watchmaking is famous worldwide.", + "pos": "noun", + "word_frequency": 17334 + }, + { + "word": "oscurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to obscure;to darken", + "romanization": "oscurare", + "example_sentence_native": "Le nuvole hanno iniziato a oscurare il sole.", + "example_sentence_english": "The clouds began to obscure the sun.", + "pos": "verb", + "word_frequency": 17336 + }, + { + "word": "padovano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Padua;Paduan", + "romanization": "padovano", + "example_sentence_native": "È un artista padovano.", + "example_sentence_english": "He is a Paduan artist.", + "pos": "adjective", + "word_frequency": 17337 + }, + { + "word": "palermitano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from Palermo;Palermitan", + "romanization": "palermitano", + "example_sentence_native": "La cucina palermitana è ricca di sapori.", + "example_sentence_english": "Palermitan cuisine is rich in flavors.", + "pos": "adjective", + "word_frequency": 17338 + }, + { + "word": "parvenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semblance;appearance", + "romanization": "parvenza", + "example_sentence_native": "Non c'era alcuna parvenza di verità nelle sue parole.", + "example_sentence_english": "There was no semblance of truth in his words.", + "pos": "noun", + "word_frequency": 17339 + }, + { + "word": "pastorizia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sheep farming;pastoralism", + "romanization": "pastorizia", + "example_sentence_native": "La pastorizia è un'attività tradizionale in montagna.", + "example_sentence_english": "Sheep farming is a traditional activity in the mountains.", + "pos": "noun", + "word_frequency": 17340 + }, + { + "word": "patogeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pathogenic", + "romanization": "patogeno", + "example_sentence_native": "I batteri patogeni possono causare malattie.", + "example_sentence_english": "Pathogenic bacteria can cause diseases.", + "pos": "adjective", + "word_frequency": 17341 + }, + { + "word": "pattino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skate (ice skate;roller skate);small boat (pedal boat)", + "romanization": "pattino", + "example_sentence_native": "Ho comprato un nuovo paio di pattini a rotelle.", + "example_sentence_english": "I bought a new pair of roller skates.", + "pos": "noun", + "word_frequency": 17342 + }, + { + "word": "pazientemente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patiently", + "romanization": "pazientemente", + "example_sentence_native": "Ha aspettato pazientemente il suo turno.", + "example_sentence_english": "He waited patiently for his turn.", + "pos": "adverb", + "word_frequency": 17343 + }, + { + "word": "pediatra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pediatrician", + "romanization": "pediatra", + "example_sentence_native": "Dobbiamo portare il bambino dal pediatra.", + "example_sentence_english": "We need to take the baby to the pediatrician.", + "pos": "noun", + "word_frequency": 17344 + }, + { + "word": "pendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hang;to lean;to depend", + "romanization": "pendere", + "example_sentence_native": "Il quadro pendeva leggermente a sinistra.", + "example_sentence_english": "The painting was hanging slightly to the left.", + "pos": "verb", + "word_frequency": 17345 + }, + { + "word": "pettorale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pectoral (muscle);breastplate;bib", + "romanization": "pettorale", + "example_sentence_native": "Ha sviluppato i muscoli pettorali in palestra.", + "example_sentence_english": "He developed his pectoral muscles at the gym.", + "pos": "noun", + "word_frequency": 17348 + }, + { + "word": "pezzettino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small piece;little bit", + "romanization": "pezzettino", + "example_sentence_native": "Dammi un pezzettino di pane.", + "example_sentence_english": "Give me a small piece of bread.", + "pos": "noun", + "word_frequency": 17349 + }, + { + "word": "piantina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small plant;seedling;floor plan", + "romanization": "piantina", + "example_sentence_native": "Ho comprato una piantina di basilico.", + "example_sentence_english": "I bought a small basil plant.", + "pos": "noun", + "word_frequency": 17350 + }, + { + "word": "pomodorino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cherry tomato;small tomato", + "romanization": "pomodorino", + "example_sentence_native": "Ho aggiunto dei pomodorini all'insalata.", + "example_sentence_english": "I added some cherry tomatoes to the salad.", + "pos": "noun", + "word_frequency": 17353 + }, + { + "word": "pontile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pier;jetty;dock", + "romanization": "pontile", + "example_sentence_native": "Abbiamo camminato lungo il pontile fino alla fine.", + "example_sentence_english": "We walked along the pier to the end.", + "pos": "noun", + "word_frequency": 17354 + }, + { + "word": "portachiavi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "keychain;keyring", + "romanization": "portachiavi", + "example_sentence_native": "Ho perso il mio portachiavi.", + "example_sentence_english": "I lost my keychain.", + "pos": "noun", + "word_frequency": 17356 + }, + { + "word": "praticabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practicable;feasible;accessible", + "romanization": "praticabile", + "example_sentence_native": "La strada non è praticabile a causa della neve.", + "example_sentence_english": "The road is not practicable due to the snow.", + "pos": "adjective", + "word_frequency": 17357 + }, + { + "word": "pregiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valuable;prized;esteemed", + "romanization": "pregiato", + "example_sentence_native": "Questo è un vino molto pregiato.", + "example_sentence_english": "This is a very prized wine.", + "pos": "adjective", + "word_frequency": 17358 + }, + { + "word": "preparatorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preparatory", + "romanization": "preparatorio", + "example_sentence_native": "Stiamo seguendo un corso preparatorio per l'esame.", + "example_sentence_english": "We are taking a preparatory course for the exam.", + "pos": "adjective", + "word_frequency": 17359 + }, + { + "word": "progenie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "progeny;offspring", + "romanization": "progenie", + "example_sentence_native": "La sua progenie ha continuato la tradizione di famiglia.", + "example_sentence_english": "His progeny continued the family tradition.", + "pos": "noun", + "word_frequency": 17360 + }, + { + "word": "pronunciarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to express oneself;to declare oneself", + "romanization": "pronunciarsi", + "example_sentence_native": "Il giudice deve ancora pronunciarsi sul caso.", + "example_sentence_english": "The judge has yet to pronounce on the case.", + "pos": "verb", + "word_frequency": 17362 + }, + { + "word": "reboot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reboot", + "romanization": "reboot", + "example_sentence_native": "Ho dovuto fare un reboot del sistema.", + "example_sentence_english": "I had to do a system reboot.", + "pos": "noun", + "word_frequency": 17364 + }, + { + "word": "recapito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "address;contact detail", + "romanization": "recapito", + "example_sentence_native": "Lascia il tuo recapito per essere ricontattato.", + "example_sentence_english": "Leave your contact details to be recontacted.", + "pos": "noun", + "word_frequency": 17365 + }, + { + "word": "reincarnazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reincarnation", + "romanization": "reincarnazione", + "example_sentence_native": "Crede nella reincarnazione delle anime.", + "example_sentence_english": "He believes in the reincarnation of souls.", + "pos": "noun", + "word_frequency": 17366 + }, + { + "word": "riluttante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reluctant", + "romanization": "riluttante", + "example_sentence_native": "Era riluttante ad accettare l'offerta.", + "example_sentence_english": "He was reluctant to accept the offer.", + "pos": "adjective", + "word_frequency": 17368 + }, + { + "word": "risk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risk", + "romanization": "risk", + "example_sentence_native": "Hanno calcolato il risk del progetto.", + "example_sentence_english": "They calculated the project risk.", + "pos": "noun", + "word_frequency": 17369 + }, + { + "word": "riuso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reuse", + "romanization": "riuso", + "example_sentence_native": "Il riuso dei materiali è fondamentale per l'ambiente.", + "example_sentence_english": "The reuse of materials is fundamental for the environment.", + "pos": "noun", + "word_frequency": 17370 + }, + { + "word": "role", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "role", + "romanization": "role", + "example_sentence_native": "Il suo role nel progetto è cruciale.", + "example_sentence_english": "His role in the project is crucial.", + "pos": "noun", + "word_frequency": 17372 + }, + { + "word": "ronda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patrol;round", + "romanization": "ronda", + "example_sentence_native": "La guardia ha fatto la sua ronda notturna.", + "example_sentence_english": "The guard made his night patrol.", + "pos": "noun", + "word_frequency": 17373 + }, + { + "word": "rossoblù", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "red and blue (often referring to sports teams)", + "romanization": "rossoblù", + "example_sentence_native": "La squadra rossoblù ha vinto la partita.", + "example_sentence_english": "The red and blue team won the match.", + "pos": "adjective", + "word_frequency": 17374 + }, + { + "word": "roulotte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caravan;trailer", + "romanization": "roulotte", + "example_sentence_native": "Hanno passato le vacanze in roulotte.", + "example_sentence_english": "They spent their holidays in a caravan.", + "pos": "noun", + "word_frequency": 17375 + }, + { + "word": "rupe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cliff;crag", + "romanization": "rupe", + "example_sentence_native": "Si sono arrampicati sulla ripida rupe.", + "example_sentence_english": "They climbed the steep cliff.", + "pos": "noun", + "word_frequency": 17377 + }, + { + "word": "sbronza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drunk;binge (colloquial)", + "romanization": "sbronza", + "example_sentence_native": "Si è preso una bella sbronza ieri sera.", + "example_sentence_english": "He got really drunk last night.", + "pos": "noun", + "word_frequency": 17379 + }, + { + "word": "scandinavo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Scandinavian", + "romanization": "scandinavo", + "example_sentence_native": "Ha visitato molti paesi scandinavi.", + "example_sentence_english": "He visited many Scandinavian countries.", + "pos": "adjective", + "word_frequency": 17380 + }, + { + "word": "scarafaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cockroach", + "romanization": "scarafaggio", + "example_sentence_native": "C'era uno scarafaggio in cucina.", + "example_sentence_english": "There was a cockroach in the kitchen.", + "pos": "noun", + "word_frequency": 17381 + }, + { + "word": "serrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to close tightly;to clench", + "romanization": "serrare", + "example_sentence_native": "Serrò i pugni per la rabbia.", + "example_sentence_english": "He clenched his fists in anger.", + "pos": "verb", + "word_frequency": 17384 + }, + { + "word": "setola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bristle;hair (of a brush)", + "romanization": "setola", + "example_sentence_native": "Le setole di questo pennello sono molto morbide.", + "example_sentence_english": "The bristles of this brush are very soft.", + "pos": "noun", + "word_frequency": 17385 + }, + { + "word": "sfacciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheeky;impudent;brazen", + "romanization": "sfacciato", + "example_sentence_native": "Ha fatto una domanda sfacciata.", + "example_sentence_english": "He asked a cheeky question.", + "pos": "adjective", + "word_frequency": 17386 + }, + { + "word": "sfatare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to debunk;to dispel", + "romanization": "sfatare", + "example_sentence_native": "È importante sfatare i miti comuni.", + "example_sentence_english": "It's important to debunk common myths.", + "pos": "verb", + "word_frequency": 17387 + }, + { + "word": "sforzarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make an effort;to strive", + "romanization": "sforzarsi", + "example_sentence_native": "Si è sforzato di capire la lezione.", + "example_sentence_english": "He made an effort to understand the lesson.", + "pos": "verb", + "word_frequency": 17388 + }, + { + "word": "shift", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shift (work)", + "romanization": "shift", + "example_sentence_native": "Il mio shift di notte inizia alle dieci.", + "example_sentence_english": "My night shift starts at ten.", + "pos": "noun", + "word_frequency": 17390 + }, + { + "word": "singolarità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "singularity;uniqueness", + "romanization": "singolarità", + "example_sentence_native": "La singolarità di quel fenomeno è sorprendente.", + "example_sentence_english": "The singularity of that phenomenon is surprising.", + "pos": "noun", + "word_frequency": 17393 + }, + { + "word": "sistemico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "systemic", + "romanization": "sistemico", + "example_sentence_native": "Il problema richiede un approccio sistemico.", + "example_sentence_english": "The problem requires a systemic approach.", + "pos": "adjective", + "word_frequency": 17394 + }, + { + "word": "ski", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ski", + "romanization": "ski", + "example_sentence_native": "Andiamo a fare ski in montagna questo inverno.", + "example_sentence_english": "Let's go skiing in the mountains this winter.", + "pos": "noun", + "word_frequency": 17395 + }, + { + "word": "slave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slave (computing)", + "romanization": "slave", + "example_sentence_native": "Il disco rigido è configurato come slave.", + "example_sentence_english": "The hard drive is configured as slave.", + "pos": "noun", + "word_frequency": 17396 + }, + { + "word": "sollevazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uprising;rebellion", + "romanization": "sollevazione", + "example_sentence_native": "Ci fu una sollevazione popolare contro il regime.", + "example_sentence_english": "There was a popular uprising against the regime.", + "pos": "noun", + "word_frequency": 17397 + }, + { + "word": "solstizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solstice", + "romanization": "solstizio", + "example_sentence_native": "Il solstizio d'estate è il giorno più lungo dell'anno.", + "example_sentence_english": "The summer solstice is the longest day of the year.", + "pos": "noun", + "word_frequency": 17398 + }, + { + "word": "spaccatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crack;split;rift", + "romanization": "spaccatura", + "example_sentence_native": "Si è creata una spaccatura nel muro.", + "example_sentence_english": "A crack appeared in the wall.", + "pos": "noun", + "word_frequency": 17399 + }, + { + "word": "stecca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cue stick;streak (of bad luck);splinter", + "romanization": "stecca", + "example_sentence_native": "Ha rotto la stecca da biliardo.", + "example_sentence_english": "He broke the billiard cue stick.", + "pos": "noun", + "word_frequency": 17401 + }, + { + "word": "sterminare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exterminate;to wipe out", + "romanization": "sterminare", + "example_sentence_native": "L'obiettivo era sterminare la popolazione di insetti.", + "example_sentence_english": "The goal was to exterminate the insect population.", + "pos": "verb", + "word_frequency": 17402 + }, + { + "word": "stressare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stress;to put under stress", + "romanization": "stressare", + "example_sentence_native": "Il lavoro mi sta stressando molto ultimamente.", + "example_sentence_english": "Work is stressing me out a lot lately.", + "pos": "verb", + "word_frequency": 17403 + }, + { + "word": "striscio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graze;scratch;slide (often in 'di striscio' - glancing blow)", + "romanization": "striscio", + "example_sentence_native": "La macchina ha colpito il muro di striscio.", + "example_sentence_english": "The car grazed the wall.", + "pos": "noun", + "word_frequency": 17404 + }, + { + "word": "suoneria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ringtone;bell (sound)", + "romanization": "suoneria", + "example_sentence_native": "Ho cambiato la suoneria del mio telefono.", + "example_sentence_english": "I changed my phone's ringtone.", + "pos": "noun", + "word_frequency": 17405 + }, + { + "word": "trafiggere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pierce;to transfix", + "romanization": "trafiggere", + "example_sentence_native": "La spada ha trafitto lo scudo.", + "example_sentence_english": "The sword pierced the shield.", + "pos": "verb", + "word_frequency": 17412 + }, + { + "word": "tramontare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to set (sun);to decline;to fade", + "romanization": "tramontare", + "example_sentence_native": "Il sole sta per tramontare dietro le montagne.", + "example_sentence_english": "The sun is about to set behind the mountains.", + "pos": "verb", + "word_frequency": 17413 + }, + { + "word": "umilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "humbly", + "romanization": "umilmente", + "example_sentence_native": "Ha accettato la critica umilmente.", + "example_sentence_english": "He humbly accepted the criticism.", + "pos": "adverb", + "word_frequency": 17416 + }, + { + "word": "unificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unify;to unite", + "romanization": "unificare", + "example_sentence_native": "Hanno cercato di unificare le diverse fazioni.", + "example_sentence_english": "They tried to unify the different factions.", + "pos": "verb", + "word_frequency": 17417 + }, + { + "word": "vandalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandalism", + "romanization": "vandalismo", + "example_sentence_native": "La polizia sta indagando su atti di vandalismo.", + "example_sentence_english": "The police are investigating acts of vandalism.", + "pos": "noun", + "word_frequency": 17422 + }, + { + "word": "varo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "launch (of a ship);inauguration", + "romanization": "varo", + "example_sentence_native": "Il varo della nuova nave è previsto per domani.", + "example_sentence_english": "The launch of the new ship is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 17423 + }, + { + "word": "équipe", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "team;crew", + "romanization": "équipe", + "example_sentence_native": "L'équipe medica ha lavorato tutta la notte.", + "example_sentence_english": "The medical team worked all night.", + "pos": "noun", + "word_frequency": 17429 + }, + { + "word": "acciuga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anchovy", + "romanization": "acciuga", + "example_sentence_native": "Mi piacciono le acciughe sulla pizza.", + "example_sentence_english": "I like anchovies on pizza.", + "pos": "noun", + "word_frequency": 17431 + }, + { + "word": "agroalimentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agri-food;food industry related", + "romanization": "agroalimentare", + "example_sentence_native": "Il settore agroalimentare è molto importante per l'economia italiana.", + "example_sentence_english": "The agri-food sector is very important for the Italian economy.", + "pos": "adjective", + "word_frequency": 17433 + }, + { + "word": "amaramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bitterly", + "romanization": "amaramente", + "example_sentence_native": "Ha pianto amaramente per la perdita.", + "example_sentence_english": "She cried bitterly over the loss.", + "pos": "adverb", + "word_frequency": 17435 + }, + { + "word": "autobiografico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autobiographical", + "romanization": "autobiografico", + "example_sentence_native": "Il suo ultimo libro è un romanzo autobiografico.", + "example_sentence_english": "His latest book is an autobiographical novel.", + "pos": "adjective", + "word_frequency": 17442 + }, + { + "word": "baldo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bold;valiant", + "romanization": "baldo", + "example_sentence_native": "Con animo baldo affrontò la sfida.", + "example_sentence_english": "With a bold spirit, he faced the challenge.", + "pos": "adjective", + "word_frequency": 17443 + }, + { + "word": "bastonata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blow with a stick;beating", + "romanization": "bastonata", + "example_sentence_native": "Ha ricevuto una bastonata sulla testa.", + "example_sentence_english": "He received a blow to the head with a stick.", + "pos": "noun", + "word_frequency": 17446 + }, + { + "word": "bestiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bestial;brutal;enormous", + "romanization": "bestiale", + "example_sentence_native": "Il caldo oggi è bestiale.", + "example_sentence_english": "The heat today is brutal.", + "pos": "adjective", + "word_frequency": 17449 + }, + { + "word": "bollare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stamp;to brand;to label", + "romanization": "bollare", + "example_sentence_native": "Hanno bollato il pacco prima di spedirlo.", + "example_sentence_english": "They stamped the package before sending it.", + "pos": "verb", + "word_frequency": 17453 + }, + { + "word": "bollino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticker;stamp;label", + "romanization": "bollino", + "example_sentence_native": "C'è un bollino di qualità su questo prodotto.", + "example_sentence_english": "There's a quality sticker on this product.", + "pos": "noun", + "word_frequency": 17454 + }, + { + "word": "bombola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cylinder;gas tank;canister", + "romanization": "bombola", + "example_sentence_native": "La bombola del gas è quasi vuota.", + "example_sentence_english": "The gas cylinder is almost empty.", + "pos": "noun", + "word_frequency": 17455 + }, + { + "word": "budino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pudding", + "romanization": "budino", + "example_sentence_native": "Per dessert, abbiamo mangiato un delizioso budino al cioccolato.", + "example_sentence_english": "For dessert, we ate a delicious chocolate pudding.", + "pos": "noun", + "word_frequency": 17460 + }, + { + "word": "bulbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulb", + "romanization": "bulbo", + "example_sentence_native": "I bulbi dei tulipani vanno piantati in autunno.", + "example_sentence_english": "Tulip bulbs should be planted in autumn.", + "pos": "noun", + "word_frequency": 17461 + }, + { + "word": "capitolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to capitulate;to surrender", + "romanization": "capitolare", + "example_sentence_native": "Dopo un lungo assedio, la città fu costretta a capitolare.", + "example_sentence_english": "After a long siege, the city was forced to capitulate.", + "pos": "verb", + "word_frequency": 17464 + }, + { + "word": "catastrofico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catastrophic", + "romanization": "catastrofico", + "example_sentence_native": "Le conseguenze dell'uragano sono state catastrofiche.", + "example_sentence_english": "The consequences of the hurricane were catastrophic.", + "pos": "adjective", + "word_frequency": 17465 + }, + { + "word": "centralina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "control unit;ECU (Electronic Control Unit)", + "romanization": "centralina", + "example_sentence_native": "La centralina del motore deve essere sostituita.", + "example_sentence_english": "The engine control unit needs to be replaced.", + "pos": "noun", + "word_frequency": 17468 + }, + { + "word": "clandestinamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clandestinely;secretly", + "romanization": "clandestinamente", + "example_sentence_native": "Sono entrati nel paese clandestinamente.", + "example_sentence_english": "They entered the country clandestinely.", + "pos": "adverb", + "word_frequency": 17473 + }, + { + "word": "coerentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coherently;consistently", + "romanization": "coerentemente", + "example_sentence_native": "Ha agito coerentemente con i suoi principi.", + "example_sentence_english": "He acted consistently with his principles.", + "pos": "adverb", + "word_frequency": 17475 + }, + { + "word": "coltellata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stab;knife wound", + "romanization": "coltellata", + "example_sentence_native": "Ha ricevuto una coltellata durante la rissa.", + "example_sentence_english": "He received a stab wound during the fight.", + "pos": "noun", + "word_frequency": 17476 + }, + { + "word": "condominiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condominium (adj.);pertaining to a condominium", + "romanization": "condominiale", + "example_sentence_native": "Le spese condominiali sono aumentate quest'anno.", + "example_sentence_english": "The condominium expenses have increased this year.", + "pos": "adjective", + "word_frequency": 17477 + }, + { + "word": "congegno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "device;mechanism;contraption", + "romanization": "congegno", + "example_sentence_native": "Questo congegno è molto ingegnoso.", + "example_sentence_english": "This device is very ingenious.", + "pos": "noun", + "word_frequency": 17478 + }, + { + "word": "consultabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consultable;available for consultation", + "romanization": "consultabile", + "example_sentence_native": "Il documento è consultabile online.", + "example_sentence_english": "The document is available for consultation online.", + "pos": "adjective", + "word_frequency": 17479 + }, + { + "word": "contributivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contributory", + "romanization": "contributivo", + "example_sentence_native": "Il sistema pensionistico italiano è di tipo contributivo.", + "example_sentence_english": "The Italian pension system is of a contributory type.", + "pos": "adjective", + "word_frequency": 17480 + }, + { + "word": "cubetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small cube;ice cube", + "romanization": "cubetto", + "example_sentence_native": "Vorrei un bicchiere d'acqua con un cubetto di ghiaccio.", + "example_sentence_english": "I would like a glass of water with an ice cube.", + "pos": "noun", + "word_frequency": 17483 + }, + { + "word": "darsena", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dock;basin", + "romanization": "darsena", + "example_sentence_native": "Le barche erano ormeggiate nella darsena del porto.", + "example_sentence_english": "The boats were moored in the port's dock.", + "pos": "noun", + "word_frequency": 17485 + }, + { + "word": "decrescente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decreasing;declining", + "romanization": "decrescente", + "example_sentence_native": "La popolazione della città è in costante decrescente.", + "example_sentence_english": "The city's population is constantly decreasing.", + "pos": "adjective", + "word_frequency": 17487 + }, + { + "word": "destare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to awaken;to arouse", + "romanization": "destare", + "example_sentence_native": "Il rumore ha destato il bambino dal sonno.", + "example_sentence_english": "The noise awakened the child from sleep.", + "pos": "verb", + "word_frequency": 17488 + }, + { + "word": "direzionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "directional", + "romanization": "direzionale", + "example_sentence_native": "Abbiamo bisogno di un'antenna direzionale per migliorare il segnale.", + "example_sentence_english": "We need a directional antenna to improve the signal.", + "pos": "adjective", + "word_frequency": 17490 + }, + { + "word": "discografia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discography", + "romanization": "discografia", + "example_sentence_native": "La sua discografia include molti album di successo.", + "example_sentence_english": "His discography includes many successful albums.", + "pos": "noun", + "word_frequency": 17491 + }, + { + "word": "disinvoltura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ease;nonchalance", + "romanization": "disinvoltura", + "example_sentence_native": "Ha risposto alla domanda con grande disinvoltura.", + "example_sentence_english": "He answered the question with great ease.", + "pos": "noun", + "word_frequency": 17492 + }, + { + "word": "disoccupare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make unemployed;to lay off", + "romanization": "disoccupare", + "example_sentence_native": "La crisi economica ha disoccupato migliaia di persone.", + "example_sentence_english": "The economic crisis has made thousands of people unemployed.", + "pos": "verb", + "word_frequency": 17493 + }, + { + "word": "diversificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diversification", + "romanization": "diversificazione", + "example_sentence_native": "L'azienda sta puntando sulla diversificazione dei prodotti.", + "example_sentence_english": "The company is focusing on product diversification.", + "pos": "noun", + "word_frequency": 17494 + }, + { + "word": "divo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "male star;diva (male)", + "romanization": "divo", + "example_sentence_native": "Era considerato un divo del cinema italiano.", + "example_sentence_english": "He was considered a star of Italian cinema.", + "pos": "noun", + "word_frequency": 17495 + }, + { + "word": "embargo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embargo", + "romanization": "embargo", + "example_sentence_native": "È stato imposto un embargo commerciale sul paese.", + "example_sentence_english": "A trade embargo was imposed on the country.", + "pos": "noun", + "word_frequency": 17498 + }, + { + "word": "equipaggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equip;to fit out", + "romanization": "equipaggiare", + "example_sentence_native": "Dobbiamo equipaggiare la nave per il lungo viaggio.", + "example_sentence_english": "We need to equip the ship for the long journey.", + "pos": "verb", + "word_frequency": 17500 + }, + { + "word": "estinguere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to extinguish;to pay off;to die out", + "romanization": "estinguere", + "example_sentence_native": "I pompieri sono riusciti a estinguere l'incendio.", + "example_sentence_english": "The firefighters managed to extinguish the fire.", + "pos": "verb", + "word_frequency": 17501 + }, + { + "word": "faccino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little face;cute face", + "romanization": "faccino", + "example_sentence_native": "Il bambino aveva un faccino sorridente.", + "example_sentence_english": "The child had a smiling little face.", + "pos": "noun", + "word_frequency": 17503 + }, + { + "word": "futurista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "futurist", + "romanization": "futurista", + "example_sentence_native": "Il movimento futurista ha rivoluzionato l'arte italiana.", + "example_sentence_english": "The futurist movement revolutionized Italian art.", + "pos": "adjective", + "word_frequency": 17512 + }, + { + "word": "goduria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intense pleasure;delight", + "romanization": "goduria", + "example_sentence_native": "Mangiare quel gelato è stata una vera goduria.", + "example_sentence_english": "Eating that ice cream was a real delight.", + "pos": "noun", + "word_frequency": 17518 + }, + { + "word": "gradire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to appreciate;to like;to welcome", + "romanization": "gradire", + "example_sentence_native": "Gradirebbe un caffè?", + "example_sentence_english": "Would you like a coffee?", + "pos": "verb", + "word_frequency": 17520 + }, + { + "word": "gravitazionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gravitational", + "romanization": "gravitazionale", + "example_sentence_native": "La forza gravitazionale attira gli oggetti verso il centro della Terra.", + "example_sentence_english": "The gravitational force pulls objects towards the center of the Earth.", + "pos": "adjective", + "word_frequency": 17521 + }, + { + "word": "idrogeologico", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "hydrogeological", + "romanization": "idrogeologico", + "example_sentence_native": "Il rischio idrogeologico è elevato in quella zona.", + "example_sentence_english": "The hydrogeological risk is high in that area.", + "pos": "adjective", + "word_frequency": 17532 + }, + { + "word": "illegittimità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illegitimacy;unlawfulness", + "romanization": "illegittimità", + "example_sentence_native": "La corte ha dichiarato l'illegittimità della legge.", + "example_sentence_english": "The court declared the unlawfulness of the law.", + "pos": "noun", + "word_frequency": 17533 + }, + { + "word": "immateriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immaterial;intangible", + "romanization": "immateriale", + "example_sentence_native": "La bellezza è un valore immateriale.", + "example_sentence_english": "Beauty is an immaterial value.", + "pos": "adjective", + "word_frequency": 17534 + }, + { + "word": "improvvisato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "improvised;makeshift", + "romanization": "improvvisato", + "example_sentence_native": "Abbiamo fatto una cena improvvisata.", + "example_sentence_english": "We had an improvised dinner.", + "pos": "adjective", + "word_frequency": 17535 + }, + { + "word": "imputabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attributable;imputable", + "romanization": "imputabile", + "example_sentence_native": "Il danno è imputabile alla sua negligenza.", + "example_sentence_english": "The damage is attributable to his negligence.", + "pos": "adjective", + "word_frequency": 17536 + }, + { + "word": "inaudito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unheard of;unprecedented", + "romanization": "inaudito", + "example_sentence_native": "È una cosa inaudita!", + "example_sentence_english": "That's an unheard-of thing!", + "pos": "adjective", + "word_frequency": 17537 + }, + { + "word": "incesto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incest", + "romanization": "incesto", + "example_sentence_native": "L'incesto è un crimine grave.", + "example_sentence_english": "Incest is a serious crime.", + "pos": "noun", + "word_frequency": 17538 + }, + { + "word": "inchiodato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nailed;stuck;fixed", + "romanization": "inchiodato", + "example_sentence_native": "Era inchiodato alla sedia per la paura.", + "example_sentence_english": "He was nailed to the chair from fear.", + "pos": "adjective", + "word_frequency": 17539 + }, + { + "word": "indulgenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indulgence;leniency", + "romanization": "indulgenza", + "example_sentence_native": "Ha chiesto indulgenza al giudice.", + "example_sentence_english": "He asked the judge for leniency.", + "pos": "noun", + "word_frequency": 17540 + }, + { + "word": "ingrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ungrateful", + "romanization": "ingrato", + "example_sentence_native": "È stato molto ingrato dopo tutto quello che ho fatto.", + "example_sentence_english": "He was very ungrateful after all I did.", + "pos": "adjective", + "word_frequency": 17541 + }, + { + "word": "inseparabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inseparable", + "romanization": "inseparabile", + "example_sentence_native": "Sono amici inseparabili.", + "example_sentence_english": "They are inseparable friends.", + "pos": "adjective", + "word_frequency": 17542 + }, + { + "word": "insidia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trap;pitfall;snare", + "romanization": "insidia", + "example_sentence_native": "Ci sono molte insidie in questo percorso.", + "example_sentence_english": "There are many pitfalls on this path.", + "pos": "noun", + "word_frequency": 17543 + }, + { + "word": "interpretato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpreted;played (a role)", + "romanization": "interpretato", + "example_sentence_native": "Il ruolo è stato interpretato magistralmente.", + "example_sentence_english": "The role was masterfully interpreted.", + "pos": "adjective", + "word_frequency": 17544 + }, + { + "word": "intimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimately;deeply", + "romanization": "intimamente", + "example_sentence_native": "Sono intimamente convinto della sua innocenza.", + "example_sentence_english": "I am intimately convinced of his innocence.", + "pos": "adverb", + "word_frequency": 17545 + }, + { + "word": "kiwi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiwi", + "romanization": "kiwi", + "example_sentence_native": "Mi piace mangiare il kiwi a colazione.", + "example_sentence_english": "I like to eat kiwi for breakfast.", + "pos": "noun", + "word_frequency": 17549 + }, + { + "word": "ledere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to harm;to injure;to violate", + "romanization": "ledere", + "example_sentence_native": "Le sue azioni potrebbero ledere la reputazione dell'azienda.", + "example_sentence_english": "His actions could harm the company's reputation.", + "pos": "verb", + "word_frequency": 17551 + }, + { + "word": "macchinista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "train driver;engineer (theatre)", + "romanization": "macchinista", + "example_sentence_native": "Il macchinista ha annunciato l'arrivo alla stazione.", + "example_sentence_english": "The train driver announced the arrival at the station.", + "pos": "noun", + "word_frequency": 17558 + }, + { + "word": "madeleine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "madeleine (a small shell-shaped cake)", + "romanization": "madeleine", + "example_sentence_native": "Ho mangiato una deliziosa madeleine con il tè.", + "example_sentence_english": "I ate a delicious madeleine with tea.", + "pos": "noun", + "word_frequency": 17559 + }, + { + "word": "madrepatria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motherland;homeland", + "romanization": "madrepatria", + "example_sentence_native": "Molti immigrati sentono la nostalgia della loro madrepatria.", + "example_sentence_english": "Many immigrants feel nostalgia for their homeland.", + "pos": "noun", + "word_frequency": 17560 + }, + { + "word": "maschilismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "male chauvinism;sexism", + "romanization": "maschilismo", + "example_sentence_native": "Il maschilismo è ancora un problema in molte società.", + "example_sentence_english": "Male chauvinism is still a problem in many societies.", + "pos": "noun", + "word_frequency": 17564 + }, + { + "word": "matematicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mathematically", + "romanization": "matematicamente", + "example_sentence_native": "Matematicamente, la soluzione è corretta.", + "example_sentence_english": "Mathematically, the solution is correct.", + "pos": "adverb", + "word_frequency": 17565 + }, + { + "word": "mediare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mediate", + "romanization": "mediare", + "example_sentence_native": "Hanno cercato di mediare il conflitto tra le due parti.", + "example_sentence_english": "They tried to mediate the conflict between the two parties.", + "pos": "verb", + "word_frequency": 17568 + }, + { + "word": "merendina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snack cake;small snack", + "romanization": "merendina", + "example_sentence_native": "I bambini adorano mangiare una merendina a metà pomeriggio.", + "example_sentence_english": "Children love to eat a snack cake in the mid-afternoon.", + "pos": "noun", + "word_frequency": 17569 + }, + { + "word": "mescolanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixture;blend", + "romanization": "mescolanza", + "example_sentence_native": "Questa salsa è una deliziosa mescolanza di sapori.", + "example_sentence_english": "This sauce is a delicious mixture of flavors.", + "pos": "noun", + "word_frequency": 17570 + }, + { + "word": "metastasi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metastasis", + "romanization": "metastasi", + "example_sentence_native": "I medici hanno rilevato delle metastasi nel paziente.", + "example_sentence_english": "The doctors detected metastases in the patient.", + "pos": "noun", + "word_frequency": 17571 + }, + { + "word": "mirtillo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blueberry", + "romanization": "mirtillo", + "example_sentence_native": "Mi piace aggiungere i mirtilli al mio yogurt.", + "example_sentence_english": "I like to add blueberries to my yogurt.", + "pos": "noun", + "word_frequency": 17572 + }, + { + "word": "mola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millstone;grindstone", + "romanization": "mola", + "example_sentence_native": "La mola del mulino girava lentamente.", + "example_sentence_english": "The millstone of the mill turned slowly.", + "pos": "noun", + "word_frequency": 17574 + }, + { + "word": "montuoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mountainous", + "romanization": "montuoso", + "example_sentence_native": "Il paesaggio era molto montuoso e roccioso.", + "example_sentence_english": "The landscape was very mountainous and rocky.", + "pos": "adjective", + "word_frequency": 17576 + }, + { + "word": "mortaio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortar (for grinding or weapon)", + "romanization": "mortaio", + "example_sentence_native": "Usiamo il mortaio per pestare le erbe aromatiche.", + "example_sentence_english": "We use the mortar to crush aromatic herbs.", + "pos": "noun", + "word_frequency": 17578 + }, + { + "word": "muscolatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musculature;muscles", + "romanization": "muscolatura", + "example_sentence_native": "L'esercizio fisico rafforza la muscolatura.", + "example_sentence_english": "Physical exercise strengthens the musculature.", + "pos": "noun", + "word_frequency": 17581 + }, + { + "word": "narciso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "narcissus;daffodil;narcissist", + "romanization": "narciso", + "example_sentence_native": "Il narciso è un fiore che sboccia in primavera.", + "example_sentence_english": "The narcissus is a flower that blooms in spring.", + "pos": "noun", + "word_frequency": 17582 + }, + { + "word": "nomignolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nickname", + "romanization": "nomignolo", + "example_sentence_native": "Il suo nomignolo è \"Il Rosso\" per via dei suoi capelli.", + "example_sentence_english": "His nickname is \"Red\" because of his hair.", + "pos": "noun", + "word_frequency": 17583 + }, + { + "word": "omino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little man;small man", + "romanization": "omino", + "example_sentence_native": "C'è un omino disegnato sulla scatola.", + "example_sentence_english": "There's a little man drawn on the box.", + "pos": "noun", + "word_frequency": 17585 + }, + { + "word": "omnibus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omnibus (collection of works;or old term for bus)", + "romanization": "omnibus", + "example_sentence_native": "Ho comprato un omnibus di racconti di fantascienza.", + "example_sentence_english": "I bought an omnibus of science fiction stories.", + "pos": "noun", + "word_frequency": 17586 + }, + { + "word": "onnipotenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipotence", + "romanization": "onnipotenza", + "example_sentence_native": "L'onnipotenza è un attributo tradizionalmente associato a Dio.", + "example_sentence_english": "Omnipotence is an attribute traditionally associated with God.", + "pos": "noun", + "word_frequency": 17587 + }, + { + "word": "orientare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to orient;to direct", + "romanization": "orientare", + "example_sentence_native": "Dobbiamo orientare la bussola verso nord.", + "example_sentence_english": "We need to orient the compass north.", + "pos": "verb", + "word_frequency": 17588 + }, + { + "word": "ostrica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oyster", + "romanization": "ostrica", + "example_sentence_native": "Le ostriche fresche sono una prelibatezza.", + "example_sentence_english": "Fresh oysters are a delicacy.", + "pos": "noun", + "word_frequency": 17589 + }, + { + "word": "paparazzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paparazzo (singular)", + "romanization": "paparazzo", + "example_sentence_native": "Un paparazzo ha scattato una foto della celebrità.", + "example_sentence_english": "A paparazzo took a photo of the celebrity.", + "pos": "noun", + "word_frequency": 17592 + }, + { + "word": "pediatria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pediatrics", + "romanization": "pediatria", + "example_sentence_native": "Ha scelto di specializzarsi in pediatria.", + "example_sentence_english": "She chose to specialize in pediatrics.", + "pos": "noun", + "word_frequency": 17595 + }, + { + "word": "peschiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishpond;fish farm", + "romanization": "peschiera", + "example_sentence_native": "La peschiera è piena di trote.", + "example_sentence_english": "The fishpond is full of trout.", + "pos": "noun", + "word_frequency": 17597 + }, + { + "word": "plancia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dashboard", + "romanization": "plancia", + "example_sentence_native": "La plancia dell'auto era piena di spie luminose.", + "example_sentence_english": "The car's dashboard was full of warning lights.", + "pos": "noun", + "word_frequency": 17601 + }, + { + "word": "prediletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favorite", + "romanization": "prediletto", + "example_sentence_native": "Il suo libro prediletto era un romanzo d'avventura.", + "example_sentence_english": "His favorite book was an adventure novel.", + "pos": "adjective", + "word_frequency": 17604 + }, + { + "word": "prioritario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priority", + "romanization": "prioritario", + "example_sentence_native": "Questo compito è prioritario e deve essere completato per primo.", + "example_sentence_english": "This task is a priority and must be completed first.", + "pos": "adjective", + "word_frequency": 17605 + }, + { + "word": "query", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "query", + "romanization": "query", + "example_sentence_native": "Ho inviato una query al database per ottenere i dati.", + "example_sentence_english": "I sent a query to the database to retrieve the data.", + "pos": "noun", + "word_frequency": 17608 + }, + { + "word": "radunare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to gather", + "romanization": "radunare", + "example_sentence_native": "Dobbiamo radunare tutte le informazioni prima di decidere.", + "example_sentence_english": "We need to gather all the information before deciding.", + "pos": "verb", + "word_frequency": 17609 + }, + { + "word": "reclutato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recruited", + "romanization": "reclutato", + "example_sentence_native": "Il nuovo membro del team è stato reclutato di recente.", + "example_sentence_english": "The new team member was recently recruited.", + "pos": "adjective", + "word_frequency": 17610 + }, + { + "word": "redistribuzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redistribution", + "romanization": "redistribuzione", + "example_sentence_native": "La redistribuzione della ricchezza è un tema politico importante.", + "example_sentence_english": "The redistribution of wealth is an important political topic.", + "pos": "noun", + "word_frequency": 17611 + }, + { + "word": "responso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "response", + "romanization": "responso", + "example_sentence_native": "Attendiamo il responso del medico sugli esami.", + "example_sentence_english": "We are awaiting the doctor's response regarding the tests.", + "pos": "noun", + "word_frequency": 17614 + }, + { + "word": "retail", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retail", + "romanization": "retail", + "example_sentence_native": "Il settore del retail ha subito grandi cambiamenti.", + "example_sentence_english": "The retail sector has undergone major changes.", + "pos": "noun", + "word_frequency": 17615 + }, + { + "word": "riff", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "riff", + "romanization": "riff", + "example_sentence_native": "Il chitarrista ha suonato un riff memorabile.", + "example_sentence_english": "The guitarist played a memorable riff.", + "pos": "noun", + "word_frequency": 17616 + }, + { + "word": "rimbalzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bounce", + "romanization": "rimbalzo", + "example_sentence_native": "La palla ha fatto un rimbalzo inaspettato.", + "example_sentence_english": "The ball made an unexpected bounce.", + "pos": "noun", + "word_frequency": 17617 + }, + { + "word": "rincorrere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to chase", + "romanization": "rincorrere", + "example_sentence_native": "I bambini amano rincorrersi nel parco.", + "example_sentence_english": "Children love to chase each other in the park.", + "pos": "verb", + "word_frequency": 17618 + }, + { + "word": "riot", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "riot", + "romanization": "riot", + "example_sentence_native": "La polizia è intervenuta per sedare il riot.", + "example_sentence_english": "The police intervened to quell the riot.", + "pos": "noun", + "word_frequency": 17619 + }, + { + "word": "ripiegare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fold", + "romanization": "ripiegare", + "example_sentence_native": "Ha ripiegato la mappa con cura.", + "example_sentence_english": "He carefully folded the map.", + "pos": "verb", + "word_frequency": 17620 + }, + { + "word": "ripulito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleaned up", + "romanization": "ripulito", + "example_sentence_native": "L'appartamento sembrava molto più grande una volta ripulito.", + "example_sentence_english": "The apartment looked much bigger once cleaned up.", + "pos": "adjective", + "word_frequency": 17621 + }, + { + "word": "riscaldato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "heated", + "romanization": "riscaldato", + "example_sentence_native": "Il cibo riscaldato non è mai buono come quello fresco.", + "example_sentence_english": "Reheated food is never as good as fresh food.", + "pos": "adjective", + "word_frequency": 17622 + }, + { + "word": "sacerdozio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priesthood", + "romanization": "sacerdozio", + "example_sentence_native": "Ha dedicato la sua vita al sacerdozio.", + "example_sentence_english": "He dedicated his life to the priesthood.", + "pos": "noun", + "word_frequency": 17627 + }, + { + "word": "sbarcato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landed", + "romanization": "sbarcato", + "example_sentence_native": "I passeggeri sono sbarcati dalla nave.", + "example_sentence_english": "The passengers landed from the ship.", + "pos": "adjective", + "word_frequency": 17628 + }, + { + "word": "scoccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strike (time)", + "romanization": "scoccare", + "example_sentence_native": "L'orologio sta per scoccare la mezzanotte.", + "example_sentence_english": "The clock is about to strike midnight.", + "pos": "verb", + "word_frequency": 17629 + }, + { + "word": "scovato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncovered", + "romanization": "scovato", + "example_sentence_native": "Il tesoro è stato scovato dopo anni di ricerche.", + "example_sentence_english": "The treasure was uncovered after years of searching.", + "pos": "adjective", + "word_frequency": 17631 + }, + { + "word": "sedicesimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sixteenth", + "romanization": "sedicesimo", + "example_sentence_native": "È arrivato sedicesimo nella gara.", + "example_sentence_english": "He finished sixteenth in the race.", + "pos": "adjective", + "word_frequency": 17632 + }, + { + "word": "sequestrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seized", + "romanization": "sequestrato", + "example_sentence_native": "La merce contraffatta è stata sequestrata dalla polizia.", + "example_sentence_english": "The counterfeit goods were seized by the police.", + "pos": "adjective", + "word_frequency": 17633 + }, + { + "word": "sinfonico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symphonic", + "romanization": "sinfonico", + "example_sentence_native": "L'orchestra sinfonica ha eseguito un pezzo classico.", + "example_sentence_english": "The symphonic orchestra performed a classical piece.", + "pos": "adjective", + "word_frequency": 17635 + }, + { + "word": "smontato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disassembled", + "romanization": "smontato", + "example_sentence_native": "Il mobile è stato venduto già smontato.", + "example_sentence_english": "The furniture was sold already disassembled.", + "pos": "adjective", + "word_frequency": 17636 + }, + { + "word": "sovrapposto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superimposed", + "romanization": "sovrapposto", + "example_sentence_native": "Le due immagini erano sovrapposte per creare un effetto speciale.", + "example_sentence_english": "The two images were superimposed to create a special effect.", + "pos": "adjective", + "word_frequency": 17637 + }, + { + "word": "spartito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musical score", + "romanization": "spartito", + "example_sentence_native": "Il pianista leggeva lo spartito con attenzione.", + "example_sentence_english": "The pianist read the musical score carefully.", + "pos": "noun", + "word_frequency": 17638 + }, + { + "word": "spegnimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shutdown;turning off", + "romanization": "spegnimento", + "example_sentence_native": "Il sistema ha richiesto lo spegnimento immediato.", + "example_sentence_english": "The system required immediate shutdown.", + "pos": "noun", + "word_frequency": 17640 + }, + { + "word": "spiritoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "witty;humorous", + "romanization": "spiritoso", + "example_sentence_native": "Ha fatto un commento molto spiritoso.", + "example_sentence_english": "He made a very witty comment.", + "pos": "adjective", + "word_frequency": 17641 + }, + { + "word": "squalificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disqualified", + "romanization": "squalificato", + "example_sentence_native": "L'atleta è stato squalificato dalla gara.", + "example_sentence_english": "The athlete was disqualified from the race.", + "pos": "adjective", + "word_frequency": 17643 + }, + { + "word": "squallore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squalor;bleakness", + "romanization": "squallore", + "example_sentence_native": "Viveva in uno stato di profondo squallore.", + "example_sentence_english": "He lived in a state of deep squalor.", + "pos": "noun", + "word_frequency": 17644 + }, + { + "word": "stazza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tonnage;displacement", + "romanization": "stazza", + "example_sentence_native": "La stazza della nave era impressionante.", + "example_sentence_english": "The ship's tonnage was impressive.", + "pos": "noun", + "word_frequency": 17646 + }, + { + "word": "steroide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steroid", + "romanization": "steroide", + "example_sentence_native": "L'uso di steroidi è proibito nello sport.", + "example_sentence_english": "The use of steroids is prohibited in sports.", + "pos": "noun", + "word_frequency": 17647 + }, + { + "word": "stranezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "strangeness;oddity", + "romanization": "stranezza", + "example_sentence_native": "La sua stranezza lo rendeva unico.", + "example_sentence_english": "His strangeness made him unique.", + "pos": "noun", + "word_frequency": 17648 + }, + { + "word": "strutturalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "structurally", + "romanization": "strutturalmente", + "example_sentence_native": "L'edificio è strutturalmente solido.", + "example_sentence_english": "The building is structurally sound.", + "pos": "adverb", + "word_frequency": 17649 + }, + { + "word": "succursale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branch (office)", + "romanization": "succursale", + "example_sentence_native": "La banca ha aperto una nuova succursale in centro.", + "example_sentence_english": "The bank opened a new branch in the city center.", + "pos": "noun", + "word_frequency": 17651 + }, + { + "word": "sudcoreano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "South Korean", + "romanization": "sudcoreano", + "example_sentence_native": "La cultura sudcoreana è molto interessante.", + "example_sentence_english": "South Korean culture is very interesting.", + "pos": "adjective", + "word_frequency": 17652 + }, + { + "word": "sù", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "up;upstairs", + "romanization": "sù", + "example_sentence_native": "Vai sù e prendi il libro.", + "example_sentence_english": "Go up and get the book.", + "pos": "adverb", + "word_frequency": 17656 + }, + { + "word": "teletrasporto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "teleportation", + "romanization": "teletrasporto", + "example_sentence_native": "Il teletrasporto è ancora fantascienza.", + "example_sentence_english": "Teleportation is still science fiction.", + "pos": "noun", + "word_frequency": 17657 + }, + { + "word": "terrorizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to terrorize;to scare", + "romanization": "terrorizzare", + "example_sentence_native": "Il rumore ha terrorizzato il bambino.", + "example_sentence_english": "The noise terrorized the child.", + "pos": "verb", + "word_frequency": 17658 + }, + { + "word": "tifare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to support (a team);to root for", + "romanization": "tifare", + "example_sentence_native": "Tifo per la squadra locale.", + "example_sentence_english": "I root for the local team.", + "pos": "verb", + "word_frequency": 17661 + }, + { + "word": "tisana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "herbal tea;infusion", + "romanization": "tisana", + "example_sentence_native": "Bevo una tisana prima di dormire.", + "example_sentence_english": "I drink an herbal tea before sleeping.", + "pos": "noun", + "word_frequency": 17662 + }, + { + "word": "torretta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turret;small tower", + "romanization": "torretta", + "example_sentence_native": "La torretta del carro armato ruotava lentamente.", + "example_sentence_english": "The tank's turret rotated slowly.", + "pos": "noun", + "word_frequency": 17663 + }, + { + "word": "tortora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turtle dove;dove grey (color)", + "romanization": "tortora", + "example_sentence_native": "Una tortora si è posata sul davanzale.", + "example_sentence_english": "A turtle dove landed on the windowsill.", + "pos": "noun", + "word_frequency": 17664 + }, + { + "word": "trentadue", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty-two", + "romanization": "trentadue", + "example_sentence_native": "Ho trentadue anni.", + "example_sentence_english": "I am thirty-two years old.", + "pos": "adjective", + "word_frequency": 17666 + }, + { + "word": "trentenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thirty-something;in one's thirties", + "romanization": "trentenne", + "example_sentence_native": "È una donna trentenne molto dinamica.", + "example_sentence_english": "She is a very dynamic thirty-something woman.", + "pos": "adjective", + "word_frequency": 17667 + }, + { + "word": "vegetare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to vegetate;to live a passive life", + "romanization": "vegetare", + "example_sentence_native": "Non voglio solo vegetare, voglio vivere.", + "example_sentence_english": "I don't want to just vegetate, I want to live.", + "pos": "verb", + "word_frequency": 17669 + }, + { + "word": "veneziana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Venetian blind;Venetian woman", + "romanization": "veneziana", + "example_sentence_native": "Ho installato una nuova veneziana alla finestra.", + "example_sentence_english": "I installed a new Venetian blind on the window.", + "pos": "noun", + "word_frequency": 17670 + }, + { + "word": "vincitrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "winner (female)", + "romanization": "vincitrice", + "example_sentence_native": "La vincitrice della gara è stata annunciata.", + "example_sentence_english": "The winner of the race was announced.", + "pos": "noun", + "word_frequency": 17673 + }, + { + "word": "visionario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "visionary", + "romanization": "visionario", + "example_sentence_native": "Era un leader visionario per il suo tempo.", + "example_sentence_english": "He was a visionary leader for his time.", + "pos": "adjective", + "word_frequency": 17674 + }, + { + "word": "voragine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chasm;abyss;sinkhole", + "romanization": "voragine", + "example_sentence_native": "Si è aperta una voragine nella strada.", + "example_sentence_english": "A sinkhole opened up in the road.", + "pos": "noun", + "word_frequency": 17676 + }, + { + "word": "adattatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adapter;converter", + "romanization": "adattatore", + "example_sentence_native": "Ho bisogno di un adattatore per la presa.", + "example_sentence_english": "I need an adapter for the socket.", + "pos": "noun", + "word_frequency": 17679 + }, + { + "word": "adorato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adored", + "romanization": "adorato", + "example_sentence_native": "Era il suo figlio adorato.", + "example_sentence_english": "He was her adored son.", + "pos": "adjective", + "word_frequency": 17681 + }, + { + "word": "affanno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shortness of breath;anxiety", + "romanization": "affanno", + "example_sentence_native": "Sentiva un affanno al petto dopo la corsa.", + "example_sentence_english": "He felt a shortness of breath in his chest after the run.", + "pos": "noun", + "word_frequency": 17682 + }, + { + "word": "alfabetizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "literacy", + "romanization": "alfabetizzazione", + "example_sentence_native": "Il tasso di alfabetizzazione è aumentato nel paese.", + "example_sentence_english": "The literacy rate has increased in the country.", + "pos": "noun", + "word_frequency": 17685 + }, + { + "word": "allenato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trained;fit", + "romanization": "allenato", + "example_sentence_native": "L'atleta era molto allenato per la gara.", + "example_sentence_english": "The athlete was very trained for the race.", + "pos": "adjective", + "word_frequency": 17688 + }, + { + "word": "ammalare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get sick;to fall ill", + "romanization": "ammalare", + "example_sentence_native": "Non voglio ammalare prima delle vacanze.", + "example_sentence_english": "I don't want to get sick before the holidays.", + "pos": "verb", + "word_frequency": 17690 + }, + { + "word": "angelico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angelic", + "romanization": "angelico", + "example_sentence_native": "Aveva un viso angelico.", + "example_sentence_english": "She had an angelic face.", + "pos": "adjective", + "word_frequency": 17692 + }, + { + "word": "annegare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drown", + "romanization": "annegare", + "example_sentence_native": "Il bambino ha rischiato di annegare nel lago.", + "example_sentence_english": "The child risked drowning in the lake.", + "pos": "verb", + "word_frequency": 17695 + }, + { + "word": "annotare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to annotate;to note down", + "romanization": "annotare", + "example_sentence_native": "È importante annotare le idee principali.", + "example_sentence_english": "It's important to note down the main ideas.", + "pos": "verb", + "word_frequency": 17696 + }, + { + "word": "aritmetica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "arithmetic", + "romanization": "aritmetica", + "example_sentence_native": "L'aritmetica è la base della matematica.", + "example_sentence_english": "Arithmetic is the basis of mathematics.", + "pos": "noun", + "word_frequency": 17698 + }, + { + "word": "assemblare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to assemble", + "romanization": "assemblare", + "example_sentence_native": "Dobbiamo assemblare i mobili nuovi.", + "example_sentence_english": "We need to assemble the new furniture.", + "pos": "verb", + "word_frequency": 17699 + }, + { + "word": "auge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heyday;zenith", + "romanization": "auge", + "example_sentence_native": "La sua carriera era all'apice della sua auge.", + "example_sentence_english": "His career was at its peak/zenith.", + "pos": "noun", + "word_frequency": 17700 + }, + { + "word": "avvertito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warned;advised", + "romanization": "avvertito", + "example_sentence_native": "Era stato avvertito del pericolo.", + "example_sentence_english": "He had been warned of the danger.", + "pos": "adjective", + "word_frequency": 17701 + }, + { + "word": "bastoncino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stick;small rod", + "romanization": "bastoncino", + "example_sentence_native": "Il cane giocava con un bastoncino.", + "example_sentence_english": "The dog was playing with a stick.", + "pos": "noun", + "word_frequency": 17702 + }, + { + "word": "beccato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caught;busted (informal)", + "romanization": "beccato", + "example_sentence_native": "È stato beccato a copiare all'esame.", + "example_sentence_english": "He was caught cheating on the exam.", + "pos": "adjective", + "word_frequency": 17704 + }, + { + "word": "boccale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mug;jug", + "romanization": "boccale", + "example_sentence_native": "Ha bevuto la birra da un grande boccale.", + "example_sentence_english": "He drank the beer from a large mug.", + "pos": "noun", + "word_frequency": 17709 + }, + { + "word": "boi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oxen", + "romanization": "boi", + "example_sentence_native": "I boi tiravano l'aratro.", + "example_sentence_english": "The oxen pulled the plow.", + "pos": "noun", + "word_frequency": 17710 + }, + { + "word": "borgata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hamlet;village", + "romanization": "borgata", + "example_sentence_native": "Viveva in una piccola borgata di campagna.", + "example_sentence_english": "He lived in a small country hamlet.", + "pos": "noun", + "word_frequency": 17711 + }, + { + "word": "caminetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fireplace", + "romanization": "caminetto", + "example_sentence_native": "Accendiamo il fuoco nel caminetto.", + "example_sentence_english": "Let's light the fire in the fireplace.", + "pos": "noun", + "word_frequency": 17715 + }, + { + "word": "capolino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peek;appearance (often in 'fare capolino')", + "romanization": "capolino", + "example_sentence_native": "Il sole ha fatto capolino tra le nuvole.", + "example_sentence_english": "The sun peeked out from behind the clouds.", + "pos": "noun", + "word_frequency": 17717 + }, + { + "word": "carbonato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carbonate", + "romanization": "carbonato", + "example_sentence_native": "Il carbonato di calcio è un minerale comune.", + "example_sentence_english": "Calcium carbonate is a common mineral.", + "pos": "noun", + "word_frequency": 17718 + }, + { + "word": "carcerario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prison (adj.);carceral", + "romanization": "carcerario", + "example_sentence_native": "Ha scontato una pena carceraria.", + "example_sentence_english": "He served a prison sentence.", + "pos": "adjective", + "word_frequency": 17719 + }, + { + "word": "casacca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tunic", + "romanization": "casacca", + "example_sentence_native": "Indossava una vecchia casacca da lavoro.", + "example_sentence_english": "He was wearing an old work tunic.", + "pos": "noun", + "word_frequency": 17723 + }, + { + "word": "cavallino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pony;little horse", + "romanization": "cavallino", + "example_sentence_native": "Il bambino giocava con il suo cavallino a dondolo.", + "example_sentence_english": "The child was playing with his rocking horse.", + "pos": "noun", + "word_frequency": 17725 + }, + { + "word": "centralino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "switchboard;reception desk", + "romanization": "centralino", + "example_sentence_native": "Chiami il centralino per maggiori informazioni.", + "example_sentence_english": "Call the switchboard for more information.", + "pos": "noun", + "word_frequency": 17726 + }, + { + "word": "compiacere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to please;to gratify", + "romanization": "compiacere", + "example_sentence_native": "Cerco sempre di compiacere i miei clienti.", + "example_sentence_english": "I always try to please my clients.", + "pos": "verb", + "word_frequency": 17732 + }, + { + "word": "confluenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confluence;convergence", + "romanization": "confluenza", + "example_sentence_native": "La confluenza dei due fiumi crea un paesaggio unico.", + "example_sentence_english": "The confluence of the two rivers creates a unique landscape.", + "pos": "noun", + "word_frequency": 17733 + }, + { + "word": "contemplato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contemplated;foreseen", + "romanization": "contemplato", + "example_sentence_native": "Il regolamento prevede ogni caso contemplato.", + "example_sentence_english": "The regulation provides for every contemplated case.", + "pos": "adjective", + "word_frequency": 17734 + }, + { + "word": "convergere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to converge", + "romanization": "convergere", + "example_sentence_native": "Tutte le strade sembrano convergere verso il centro.", + "example_sentence_english": "All roads seem to converge towards the center.", + "pos": "verb", + "word_frequency": 17735 + }, + { + "word": "corrosione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrosion", + "romanization": "corrosione", + "example_sentence_native": "La ruggine è una forma di corrosione del metallo.", + "example_sentence_english": "Rust is a form of metal corrosion.", + "pos": "noun", + "word_frequency": 17737 + }, + { + "word": "corteggiamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "courtship;wooing", + "romanization": "corteggiamento", + "example_sentence_native": "Il corteggiamento è un'arte antica.", + "example_sentence_english": "Courtship is an ancient art.", + "pos": "noun", + "word_frequency": 17738 + }, + { + "word": "cromatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chromatic", + "romanization": "cromatico", + "example_sentence_native": "Ha un'ottima percezione cromatica.", + "example_sentence_english": "He has excellent chromatic perception.", + "pos": "adjective", + "word_frequency": 17739 + }, + { + "word": "crostaceo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crustacean", + "romanization": "crostaceo", + "example_sentence_native": "I gamberi sono crostacei molto apprezzati.", + "example_sentence_english": "Shrimp are very popular crustaceans.", + "pos": "noun", + "word_frequency": 17740 + }, + { + "word": "decrescita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degrowth;decrease", + "romanization": "decrescita", + "example_sentence_native": "Il concetto di decrescita è molto dibattuto.", + "example_sentence_english": "The concept of degrowth is much debated.", + "pos": "noun", + "word_frequency": 17742 + }, + { + "word": "deodorante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "deodorant", + "romanization": "deodorante", + "example_sentence_native": "Ho dimenticato il mio deodorante a casa.", + "example_sentence_english": "I forgot my deodorant at home.", + "pos": "noun", + "word_frequency": 17750 + }, + { + "word": "deplorevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deplorable;regrettable", + "romanization": "deplorevole", + "example_sentence_native": "La sua condotta è stata deplorevole.", + "example_sentence_english": "His conduct was deplorable.", + "pos": "adjective", + "word_frequency": 17751 + }, + { + "word": "dialisi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialysis", + "romanization": "dialisi", + "example_sentence_native": "Il paziente deve sottoporsi a dialisi tre volte a settimana.", + "example_sentence_english": "The patient must undergo dialysis three times a week.", + "pos": "noun", + "word_frequency": 17752 + }, + { + "word": "elogiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praised;commended", + "romanization": "elogiato", + "example_sentence_native": "Il suo lavoro è stato molto elogiato.", + "example_sentence_english": "His work was highly praised.", + "pos": "adjective", + "word_frequency": 17759 + }, + { + "word": "energico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetic", + "romanization": "energico", + "example_sentence_native": "È un uomo molto energico.", + "example_sentence_english": "He is a very energetic man.", + "pos": "adjective", + "word_frequency": 17760 + }, + { + "word": "evenienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eventuality;contingency", + "romanization": "evenienza", + "example_sentence_native": "Dobbiamo essere preparati per ogni evenienza.", + "example_sentence_english": "We must be prepared for every eventuality.", + "pos": "noun", + "word_frequency": 17763 + }, + { + "word": "evolution", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evolution", + "romanization": "evolution", + "example_sentence_native": "La teoria dell'evolution è fondamentale in biologia.", + "example_sentence_english": "The theory of evolution is fundamental in biology.", + "pos": "noun", + "word_frequency": 17764 + }, + { + "word": "falsamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "falsely", + "romanization": "falsamente", + "example_sentence_native": "È stato accusato falsamente.", + "example_sentence_english": "He was falsely accused.", + "pos": "adverb", + "word_frequency": 17765 + }, + { + "word": "fedelissimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "most loyal;very loyal", + "romanization": "fedelissimo", + "example_sentence_native": "È un fedelissimo sostenitore della squadra.", + "example_sentence_english": "He is a very loyal supporter of the team.", + "pos": "adjective", + "word_frequency": 17766 + }, + { + "word": "federation", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "federation", + "romanization": "federation", + "example_sentence_native": "La federation ha annunciato nuove regole.", + "example_sentence_english": "The federation announced new rules.", + "pos": "noun", + "word_frequency": 17767 + }, + { + "word": "ferreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iron;strict;rigid", + "romanization": "ferreo", + "example_sentence_native": "Ha una volontà ferrea.", + "example_sentence_english": "He has an iron will.", + "pos": "adjective", + "word_frequency": 17768 + }, + { + "word": "fetale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetal", + "romanization": "fetale", + "example_sentence_native": "Lo sviluppo fetale è un processo complesso.", + "example_sentence_english": "Fetal development is a complex process.", + "pos": "adjective", + "word_frequency": 17769 + }, + { + "word": "fix", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fix;solution", + "romanization": "fix", + "example_sentence_native": "Abbiamo trovato un fix per il problema del software.", + "example_sentence_english": "We found a fix for the software problem.", + "pos": "noun", + "word_frequency": 17772 + }, + { + "word": "fluttuazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluctuation", + "romanization": "fluttuazione", + "example_sentence_native": "Ci sono state forti fluttuazioni nel mercato azionario.", + "example_sentence_english": "There have been strong fluctuations in the stock market.", + "pos": "noun", + "word_frequency": 17773 + }, + { + "word": "formulato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formulated;phrased", + "romanization": "formulato", + "example_sentence_native": "Il problema è stato formulato in modo chiaro.", + "example_sentence_english": "The problem was clearly formulated.", + "pos": "adjective", + "word_frequency": 17774 + }, + { + "word": "fruttato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fruity", + "romanization": "fruttato", + "example_sentence_native": "Questo vino ha un sapore molto fruttato.", + "example_sentence_english": "This wine has a very fruity taste.", + "pos": "adjective", + "word_frequency": 17776 + }, + { + "word": "fuggitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugitive", + "romanization": "fuggitivo", + "example_sentence_native": "La polizia è alla ricerca del fuggitivo.", + "example_sentence_english": "The police are looking for the fugitive.", + "pos": "noun", + "word_frequency": 17777 + }, + { + "word": "furgoncino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small van;pickup truck", + "romanization": "furgoncino", + "example_sentence_native": "Hanno consegnato i mobili con un furgoncino.", + "example_sentence_english": "They delivered the furniture with a small van.", + "pos": "noun", + "word_frequency": 17779 + }, + { + "word": "genesis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genesis;origin", + "romanization": "genesis", + "example_sentence_native": "La genesi del progetto è stata complessa.", + "example_sentence_english": "The genesis of the project was complex.", + "pos": "noun", + "word_frequency": 17781 + }, + { + "word": "giovine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "young (archaic)", + "romanization": "giovine", + "example_sentence_native": "Era una giovine donna di grande bellezza.", + "example_sentence_english": "She was a young woman of great beauty.", + "pos": "adjective", + "word_frequency": 17783 + }, + { + "word": "guanciale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pillow;cured pork jowl", + "romanization": "guanciale", + "example_sentence_native": "Ho bisogno di un guanciale più morbido per dormire.", + "example_sentence_english": "I need a softer pillow to sleep.", + "pos": "noun", + "word_frequency": 17785 + }, + { + "word": "hacking", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hacking", + "romanization": "hacking", + "example_sentence_native": "Il fenomeno dell'hacking è in costante crescita.", + "example_sentence_english": "The phenomenon of hacking is constantly growing.", + "pos": "noun", + "word_frequency": 17787 + }, + { + "word": "immutabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immutable;unchangeable", + "romanization": "immutabile", + "example_sentence_native": "La legge della gravità è immutabile.", + "example_sentence_english": "The law of gravity is immutable.", + "pos": "adjective", + "word_frequency": 17791 + }, + { + "word": "inattivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inactive", + "romanization": "inattivo", + "example_sentence_native": "Il vulcano è rimasto inattivo per secoli.", + "example_sentence_english": "The volcano remained inactive for centuries.", + "pos": "adjective", + "word_frequency": 17793 + }, + { + "word": "incastrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fit in;to trap;to frame", + "romanization": "incastrare", + "example_sentence_native": "Non riesco a incastrare questo pezzo nel puzzle.", + "example_sentence_english": "I can't fit this piece into the puzzle.", + "pos": "verb", + "word_frequency": 17794 + }, + { + "word": "incredulità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disbelief;incredulity", + "romanization": "incredulità", + "example_sentence_native": "Ha accolto la notizia con incredulità.", + "example_sentence_english": "He received the news with disbelief.", + "pos": "noun", + "word_frequency": 17795 + }, + { + "word": "inesattezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inaccuracy;imprecision", + "romanization": "inesattezza", + "example_sentence_native": "C'è un'inesattezza nei dati presentati.", + "example_sentence_english": "There is an inaccuracy in the data presented.", + "pos": "noun", + "word_frequency": 17796 + }, + { + "word": "infiltrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infiltrator;mole", + "romanization": "infiltrato", + "example_sentence_native": "La polizia ha scoperto un infiltrato nell'organizzazione.", + "example_sentence_english": "The police discovered an infiltrator in the organization.", + "pos": "noun", + "word_frequency": 17797 + }, + { + "word": "infuriare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rage;to become furious", + "romanization": "infuriare", + "example_sentence_native": "La tempesta ha iniziato a infuriare.", + "example_sentence_english": "The storm began to rage.", + "pos": "verb", + "word_frequency": 17798 + }, + { + "word": "interrogato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interrogated;questioned", + "romanization": "interrogato", + "example_sentence_native": "Il testimone è stato interrogato per ore.", + "example_sentence_english": "The witness was interrogated for hours.", + "pos": "adjective", + "word_frequency": 17799 + }, + { + "word": "intrecciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intertwine;to braid", + "romanization": "intrecciare", + "example_sentence_native": "Lei ama intrecciare i capelli di sua figlia.", + "example_sentence_english": "She loves to braid her daughter's hair.", + "pos": "verb", + "word_frequency": 17800 + }, + { + "word": "ipoteca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortgage", + "romanization": "ipoteca", + "example_sentence_native": "Hanno contratto un'ipoteca per comprare la casa.", + "example_sentence_english": "They took out a mortgage to buy the house.", + "pos": "noun", + "word_frequency": 17801 + }, + { + "word": "irrompere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to burst in;to break in", + "romanization": "irrompere", + "example_sentence_native": "La polizia è dovuta irrompere nella stanza.", + "example_sentence_english": "The police had to burst into the room.", + "pos": "verb", + "word_frequency": 17802 + }, + { + "word": "judo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "judo", + "romanization": "judo", + "example_sentence_native": "Mio fratello pratica judo da molti anni.", + "example_sentence_english": "My brother has been practicing judo for many years.", + "pos": "noun", + "word_frequency": 17805 + }, + { + "word": "kayak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kayak", + "romanization": "kayak", + "example_sentence_native": "Hanno noleggiato un kayak per esplorare il lago.", + "example_sentence_english": "They rented a kayak to explore the lake.", + "pos": "noun", + "word_frequency": 17807 + }, + { + "word": "lungamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "for a long time;at length", + "romanization": "lungamente", + "example_sentence_native": "Hanno discusso lungamente della questione.", + "example_sentence_english": "They discussed the matter at length.", + "pos": "adverb", + "word_frequency": 17813 + }, + { + "word": "madrina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "godmother;matron of honor", + "romanization": "madrina", + "example_sentence_native": "Mia zia è la madrina di mio fratello.", + "example_sentence_english": "My aunt is my brother's godmother.", + "pos": "noun", + "word_frequency": 17814 + }, + { + "word": "maiuscolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "uppercase;capital (letter)", + "romanization": "maiuscolo", + "example_sentence_native": "Scrivi il tuo nome in lettere maiuscole.", + "example_sentence_english": "Write your name in capital letters.", + "pos": "adjective", + "word_frequency": 17815 + }, + { + "word": "malformazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malformation", + "romanization": "malformazione", + "example_sentence_native": "Il bambino è nato con una rara malformazione.", + "example_sentence_english": "The child was born with a rare malformation.", + "pos": "noun", + "word_frequency": 17816 + }, + { + "word": "maschietto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little boy;male child", + "romanization": "maschietto", + "example_sentence_native": "Hanno avuto un bel maschietto.", + "example_sentence_english": "They had a beautiful little boy.", + "pos": "noun", + "word_frequency": 17819 + }, + { + "word": "mezzaluna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "half-moon;crescent", + "romanization": "mezzaluna", + "example_sentence_native": "La mezzaluna è un simbolo antico.", + "example_sentence_english": "The crescent moon is an ancient symbol.", + "pos": "noun", + "word_frequency": 17822 + }, + { + "word": "midi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "midi (skirt length)", + "romanization": "midi", + "example_sentence_native": "Ha comprato una gonna midi.", + "example_sentence_english": "She bought a midi skirt.", + "pos": "noun", + "word_frequency": 17823 + }, + { + "word": "multimedia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multimedia", + "romanization": "multimedia", + "example_sentence_native": "Il corso include contenuti multimediali interattivi.", + "example_sentence_english": "The course includes interactive multimedia content.", + "pos": "noun", + "word_frequency": 17828 + }, + { + "word": "natia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "native land;city", + "romanization": "natia", + "example_sentence_native": "È tornato nella sua terra natia dopo molti anni.", + "example_sentence_english": "He returned to his native land after many years.", + "pos": "noun", + "word_frequency": 17830 + }, + { + "word": "naturalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naturalist", + "romanization": "naturalista", + "example_sentence_native": "Il naturalista ha studiato la flora locale.", + "example_sentence_english": "The naturalist studied the local flora.", + "pos": "noun", + "word_frequency": 17831 + }, + { + "word": "nerazzurro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "black and blue (referring to sports teams)", + "romanization": "nerazzurro", + "example_sentence_native": "La squadra nerazzurra ha vinto il campionato.", + "example_sentence_english": "The black and blue team won the championship.", + "pos": "adjective", + "word_frequency": 17832 + }, + { + "word": "nipotina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "granddaughter;little niece", + "romanization": "nipotina", + "example_sentence_native": "La mia nipotina è molto vivace.", + "example_sentence_english": "My granddaughter is very lively.", + "pos": "noun", + "word_frequency": 17833 + }, + { + "word": "nuora", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daughter-in-law", + "romanization": "nuora", + "example_sentence_native": "La mia nuora è una persona molto gentile.", + "example_sentence_english": "My daughter-in-law is a very kind person.", + "pos": "noun", + "word_frequency": 17835 + }, + { + "word": "nutrizionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nutritionist", + "romanization": "nutrizionista", + "example_sentence_native": "Ho preso un appuntamento con la nutrizionista.", + "example_sentence_english": "I made an appointment with the nutritionist.", + "pos": "noun", + "word_frequency": 17836 + }, + { + "word": "olivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "olive tree", + "romanization": "olivo", + "example_sentence_native": "Nel giardino c'è un vecchio olivo.", + "example_sentence_english": "There is an old olive tree in the garden.", + "pos": "noun", + "word_frequency": 17838 + }, + { + "word": "pagliacciata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farce;ridiculous act", + "romanization": "pagliacciata", + "example_sentence_native": "Quella riunione è stata una vera pagliacciata.", + "example_sentence_english": "That meeting was a real farce.", + "pos": "noun", + "word_frequency": 17842 + }, + { + "word": "pallino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small ball;(figurative) knack;obsession", + "romanization": "pallino", + "example_sentence_native": "Il suo pallino è la fotografia.", + "example_sentence_english": "His passion is photography.", + "pos": "noun", + "word_frequency": 17843 + }, + { + "word": "partenariato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partnership", + "romanization": "partenariato", + "example_sentence_native": "Hanno stabilito un partenariato strategico.", + "example_sentence_english": "They established a strategic partnership.", + "pos": "noun", + "word_frequency": 17844 + }, + { + "word": "partitura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musical score", + "romanization": "partitura", + "example_sentence_native": "Il direttore d'orchestra studia la partitura.", + "example_sentence_english": "The conductor studies the musical score.", + "pos": "noun", + "word_frequency": 17845 + }, + { + "word": "penalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penalize;to disadvantage", + "romanization": "penalizzare", + "example_sentence_native": "Le nuove regole potrebbero penalizzare le piccole imprese.", + "example_sentence_english": "The new rules could penalize small businesses.", + "pos": "verb", + "word_frequency": 17846 + }, + { + "word": "pendolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pendulum", + "romanization": "pendolo", + "example_sentence_native": "Il pendolo dell'orologio oscillava lentamente.", + "example_sentence_english": "The clock's pendulum swung slowly.", + "pos": "noun", + "word_frequency": 17847 + }, + { + "word": "perforazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perforation;drilling", + "romanization": "perforazione", + "example_sentence_native": "La perforazione del pozzo è stata completata.", + "example_sentence_english": "The well drilling has been completed.", + "pos": "noun", + "word_frequency": 17848 + }, + { + "word": "praticità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "practicality", + "romanization": "praticità", + "example_sentence_native": "Apprezzo molto la praticità di questo strumento.", + "example_sentence_english": "I really appreciate the practicality of this tool.", + "pos": "noun", + "word_frequency": 17853 + }, + { + "word": "pretore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "praetor (ancient Rome);magistrate", + "romanization": "pretore", + "example_sentence_native": "Nell'antica Roma, il pretore era un magistrato.", + "example_sentence_english": "In ancient Rome, the praetor was a magistrate.", + "pos": "noun", + "word_frequency": 17854 + }, + { + "word": "professare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to profess;to declare", + "romanization": "professare", + "example_sentence_native": "Professa la sua fede con convinzione.", + "example_sentence_english": "He professes his faith with conviction.", + "pos": "verb", + "word_frequency": 17856 + }, + { + "word": "proletario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proletarian", + "romanization": "proletario", + "example_sentence_native": "La classe proletaria ha un ruolo centrale nella teoria marxista.", + "example_sentence_english": "The proletarian class has a central role in Marxist theory.", + "pos": "adjective", + "word_frequency": 17857 + }, + { + "word": "puzzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stench;bad smell", + "romanization": "puzzo", + "example_sentence_native": "C'era un puzzo terribile proveniente dalla spazzatura.", + "example_sentence_english": "There was a terrible stench coming from the garbage.", + "pos": "noun", + "word_frequency": 17858 + }, + { + "word": "reazionario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactionary", + "romanization": "reazionario", + "example_sentence_native": "Le sue idee sono considerate molto reazionarie.", + "example_sentence_english": "His ideas are considered very reactionary.", + "pos": "adjective", + "word_frequency": 17861 + }, + { + "word": "revisore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "auditor;reviser", + "romanization": "revisore", + "example_sentence_native": "Il revisore ha controllato i conti dell'azienda.", + "example_sentence_english": "The auditor checked the company's accounts.", + "pos": "noun", + "word_frequency": 17864 + }, + { + "word": "ribattere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retort;to reply;to hammer back", + "romanization": "ribattere", + "example_sentence_native": "Non ha saputo ribattere alle sue accuse.", + "example_sentence_english": "He couldn't retort to her accusations.", + "pos": "verb", + "word_frequency": 17865 + }, + { + "word": "ricalcare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to trace;to copy;to follow (a model)", + "romanization": "ricalcare", + "example_sentence_native": "Il nuovo film ricalca lo stile del regista.", + "example_sentence_english": "The new film traces the director's style.", + "pos": "verb", + "word_frequency": 17866 + }, + { + "word": "rielezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-election", + "romanization": "rielezione", + "example_sentence_native": "Il presidente ha annunciato la sua candidatura per la rielezione.", + "example_sentence_english": "The president announced his candidacy for re-election.", + "pos": "noun", + "word_frequency": 17867 + }, + { + "word": "rinnegare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to disown;to deny;to renounce", + "romanization": "rinnegare", + "example_sentence_native": "Non rinnegherò mai i miei principi.", + "example_sentence_english": "I will never renounce my principles.", + "pos": "verb", + "word_frequency": 17868 + }, + { + "word": "riquadro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "box;frame;panel", + "romanization": "riquadro", + "example_sentence_native": "Leggi le informazioni nel riquadro a lato.", + "example_sentence_english": "Read the information in the box on the side.", + "pos": "noun", + "word_frequency": 17869 + }, + { + "word": "risuonare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resound;to echo", + "romanization": "risuonare", + "example_sentence_native": "Le sue parole risuonarono nella sala vuota.", + "example_sentence_english": "His words resounded in the empty hall.", + "pos": "verb", + "word_frequency": 17870 + }, + { + "word": "robaccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "junk;rubbish;trash", + "romanization": "robaccia", + "example_sentence_native": "Non comprare quella robaccia, è inutile.", + "example_sentence_english": "Don't buy that junk, it's useless.", + "pos": "noun", + "word_frequency": 17871 + }, + { + "word": "rottamazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrapping;demolition;(car) trade-in incentive", + "romanization": "rottamazione", + "example_sentence_native": "Il governo ha introdotto incentivi per la rottamazione delle vecchie auto.", + "example_sentence_english": "The government introduced incentives for scrapping old cars.", + "pos": "noun", + "word_frequency": 17873 + }, + { + "word": "salentino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Salento (region in Puglia;Italy) related;from Salento", + "romanization": "salentino", + "example_sentence_native": "La cucina salentina è ricca di sapori mediterranei.", + "example_sentence_english": "Salento cuisine is rich in Mediterranean flavors.", + "pos": "adjective", + "word_frequency": 17876 + }, + { + "word": "scampare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escape;to survive;to avoid", + "romanization": "scampare", + "example_sentence_native": "È riuscito a scampare al pericolo.", + "example_sentence_english": "He managed to escape the danger.", + "pos": "verb", + "word_frequency": 17877 + }, + { + "word": "scellino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shilling", + "romanization": "scellino", + "example_sentence_native": "Un tempo, lo scellino era una moneta britannica.", + "example_sentence_english": "Once, the shilling was a British coin.", + "pos": "noun", + "word_frequency": 17878 + }, + { + "word": "sciamano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shaman", + "romanization": "sciamano", + "example_sentence_native": "Lo sciamano guidava la cerimonia tribale.", + "example_sentence_english": "The shaman led the tribal ceremony.", + "pos": "noun", + "word_frequency": 17879 + }, + { + "word": "scisma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schism", + "romanization": "scisma", + "example_sentence_native": "Il Grande Scisma d'Occidente divise la Chiesa cattolica.", + "example_sentence_english": "The Great Western Schism divided the Catholic Church.", + "pos": "noun", + "word_frequency": 17880 + }, + { + "word": "scolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drainage;drain", + "romanization": "scolo", + "example_sentence_native": "È necessario pulire lo scolo per evitare allagamenti.", + "example_sentence_english": "It is necessary to clean the drain to avoid flooding.", + "pos": "noun", + "word_frequency": 17881 + }, + { + "word": "sconsigliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to advise against;to dissuade", + "romanization": "sconsigliare", + "example_sentence_native": "Ti sconsiglio di andare da solo in quel quartiere di notte.", + "example_sentence_english": "I advise you against going alone to that neighborhood at night.", + "pos": "verb", + "word_frequency": 17882 + }, + { + "word": "scuolabus", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "school bus", + "romanization": "scuolabus", + "example_sentence_native": "I bambini aspettano lo scuolabus ogni mattina.", + "example_sentence_english": "The children wait for the school bus every morning.", + "pos": "noun", + "word_frequency": 17883 + }, + { + "word": "semiotica", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "semiotics", + "romanization": "semiotica", + "example_sentence_native": "La semiotica è lo studio dei segni e dei simboli.", + "example_sentence_english": "Semiotics is the study of signs and symbols.", + "pos": "noun", + "word_frequency": 17884 + }, + { + "word": "severità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severity;strictness", + "romanization": "severità", + "example_sentence_native": "La severità del giudice era nota a tutti.", + "example_sentence_english": "The judge's severity was known to everyone.", + "pos": "noun", + "word_frequency": 17887 + }, + { + "word": "sfociare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to flow into;to lead to;to result in", + "romanization": "sfociare", + "example_sentence_native": "Il fiume sfocia nel mare Adriatico.", + "example_sentence_english": "The river flows into the Adriatic Sea.", + "pos": "verb", + "word_frequency": 17888 + }, + { + "word": "sifilide", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "syphilis", + "romanization": "sifilide", + "example_sentence_native": "La sifilide è una malattia a trasmissione sessuale.", + "example_sentence_english": "Syphilis is a sexually transmitted disease.", + "pos": "noun", + "word_frequency": 17889 + }, + { + "word": "simultaneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simultaneous", + "romanization": "simultaneo", + "example_sentence_native": "Hanno lanciato due attacchi simultanei.", + "example_sentence_english": "They launched two simultaneous attacks.", + "pos": "adjective", + "word_frequency": 17890 + }, + { + "word": "slang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slang", + "romanization": "slang", + "example_sentence_native": "Molti giovani usano lo slang nelle loro conversazioni.", + "example_sentence_english": "Many young people use slang in their conversations.", + "pos": "noun", + "word_frequency": 17891 + }, + { + "word": "solvente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "solvent", + "romanization": "solvente", + "example_sentence_native": "Usa un solvente per rimuovere la macchia di vernice.", + "example_sentence_english": "Use a solvent to remove the paint stain.", + "pos": "noun", + "word_frequency": 17892 + }, + { + "word": "spiacente", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sorry;regretful", + "romanization": "spiacente", + "example_sentence_native": "Sono spiacente di non poterti aiutare.", + "example_sentence_english": "I am sorry I cannot help you.", + "pos": "adjective", + "word_frequency": 17894 + }, + { + "word": "stoviglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dish;piece of crockery", + "romanization": "stoviglia", + "example_sentence_native": "Dopo cena, ho lavato tutte le stoviglie.", + "example_sentence_english": "After dinner, I washed all the dishes.", + "pos": "noun", + "word_frequency": 17896 + }, + { + "word": "stravolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distraught;overwhelmed;distorted", + "romanization": "stravolto", + "example_sentence_native": "Era stravolto dalla notizia inaspettata.", + "example_sentence_english": "He was distraught by the unexpected news.", + "pos": "adjective", + "word_frequency": 17897 + }, + { + "word": "stretching", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stretching", + "romanization": "stretching", + "example_sentence_native": "Faccio stretching prima e dopo l'allenamento.", + "example_sentence_english": "I do stretching before and after my workout.", + "pos": "noun", + "word_frequency": 17898 + }, + { + "word": "sviare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to mislead;to divert;to sidetrack", + "romanization": "sviare", + "example_sentence_native": "Ha cercato di sviare l'attenzione dal problema principale.", + "example_sentence_english": "He tried to divert attention from the main problem.", + "pos": "verb", + "word_frequency": 17899 + }, + { + "word": "taboo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taboo", + "romanization": "taboo", + "example_sentence_native": "In alcune culture, parlare di morte è un tabù.", + "example_sentence_english": "In some cultures, talking about death is a taboo.", + "pos": "noun", + "word_frequency": 17901 + }, + { + "word": "tonico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tonic;invigorating", + "romanization": "tonico", + "example_sentence_native": "Questa bevanda ha un effetto tonico sul corpo.", + "example_sentence_english": "This drink has a tonic effect on the body.", + "pos": "adjective", + "word_frequency": 17906 + }, + { + "word": "torrent", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torrent", + "romanization": "torrent", + "example_sentence_native": "Ho scaricato il file tramite un client torrent.", + "example_sentence_english": "I downloaded the file via a torrent client.", + "pos": "noun", + "word_frequency": 17907 + }, + { + "word": "torso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torso", + "romanization": "torso", + "example_sentence_native": "Il busto mostrava solo il torso della statua.", + "example_sentence_english": "The bust showed only the torso of the statue.", + "pos": "noun", + "word_frequency": 17908 + }, + { + "word": "truccare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to put on makeup;to rig;to tamper with", + "romanization": "truccare", + "example_sentence_native": "Si trucca ogni mattina prima di uscire.", + "example_sentence_english": "She puts on makeup every morning before going out.", + "pos": "verb", + "word_frequency": 17911 + }, + { + "word": "umbro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Umbrian (relating to Umbria;a region in Italy)", + "romanization": "umbro", + "example_sentence_native": "La cucina umbra è famosa per i suoi tartufi.", + "example_sentence_english": "Umbrian cuisine is famous for its truffles.", + "pos": "adjective", + "word_frequency": 17913 + }, + { + "word": "undicesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eleventh", + "romanization": "undicesimo", + "example_sentence_native": "È arrivato undicesimo nella gara.", + "example_sentence_english": "He arrived eleventh in the race.", + "pos": "adjective", + "word_frequency": 17914 + }, + { + "word": "vaiolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "smallpox", + "romanization": "vaiolo", + "example_sentence_native": "Il vaiolo è stato eradicato grazie alla vaccinazione.", + "example_sentence_english": "Smallpox was eradicated thanks to vaccination.", + "pos": "noun", + "word_frequency": 17916 + }, + { + "word": "venerabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venerable", + "romanization": "venerabile", + "example_sentence_native": "Il venerabile maestro ha condiviso la sua saggezza.", + "example_sentence_english": "The venerable master shared his wisdom.", + "pos": "adjective", + "word_frequency": 17917 + }, + { + "word": "vertebra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertebra", + "romanization": "vertebra", + "example_sentence_native": "La colonna vertebrale è composta da molte vertebre.", + "example_sentence_english": "The spinal column is composed of many vertebrae.", + "pos": "noun", + "word_frequency": 17918 + }, + { + "word": "vibrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vibrate;to shake", + "romanization": "vibrare", + "example_sentence_native": "Il telefono ha iniziato a vibrare nella mia tasca.", + "example_sentence_english": "The phone started to vibrate in my pocket.", + "pos": "verb", + "word_frequency": 17919 + }, + { + "word": "violinista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violinist", + "romanization": "violinista", + "example_sentence_native": "Il violinista ha suonato un pezzo bellissimo.", + "example_sentence_english": "The violinist played a beautiful piece.", + "pos": "noun", + "word_frequency": 17921 + }, + { + "word": "zerbino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doormat", + "romanization": "zerbino", + "example_sentence_native": "Lascia le scarpe sullo zerbino prima di entrare.", + "example_sentence_english": "Leave your shoes on the doormat before entering.", + "pos": "noun", + "word_frequency": 17929 + }, + { + "word": "abominevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abominable;detestable", + "romanization": "abominevole", + "example_sentence_native": "Il suo comportamento è stato abominevole.", + "example_sentence_english": "His behavior was abominable.", + "pos": "adjective", + "word_frequency": 17932 + }, + { + "word": "alimentatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "power supply;feeder", + "romanization": "alimentatore", + "example_sentence_native": "Ho bisogno di un nuovo alimentatore per il mio laptop.", + "example_sentence_english": "I need a new power supply for my laptop.", + "pos": "noun", + "word_frequency": 17933 + }, + { + "word": "unisono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unison", + "romanization": "unisono", + "example_sentence_native": "Il coro ha cantato all'unisono.", + "example_sentence_english": "The choir sang in unison.", + "pos": "noun", + "word_frequency": 17934 + }, + { + "word": "alleare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to ally", + "romanization": "alleare", + "example_sentence_native": "Le due nazioni hanno deciso di allearsi.", + "example_sentence_english": "The two nations decided to ally.", + "pos": "verb", + "word_frequency": 17935 + }, + { + "word": "allegoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "allegory", + "romanization": "allegoria", + "example_sentence_native": "Il romanzo è ricco di allegorie.", + "example_sentence_english": "The novel is rich in allegories.", + "pos": "noun", + "word_frequency": 17936 + }, + { + "word": "antropologico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropological", + "romanization": "antropologico", + "example_sentence_native": "Ha condotto uno studio antropologico sulla tribù.", + "example_sentence_english": "He conducted an anthropological study on the tribe.", + "pos": "adjective", + "word_frequency": 17939 + }, + { + "word": "appariscente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showy;flashy;striking", + "romanization": "appariscente", + "example_sentence_native": "Indossava un vestito molto appariscente.", + "example_sentence_english": "She was wearing a very showy dress.", + "pos": "adjective", + "word_frequency": 17940 + }, + { + "word": "assodare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ascertain;to establish", + "romanization": "assodare", + "example_sentence_native": "Dobbiamo assodare la verità dei fatti.", + "example_sentence_english": "We need to ascertain the truth of the facts.", + "pos": "verb", + "word_frequency": 17941 + }, + { + "word": "autistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "autistic", + "romanization": "autistico", + "example_sentence_native": "Il bambino ha un disturbo dello spettro autistico.", + "example_sentence_english": "The child has an autistic spectrum disorder.", + "pos": "adjective", + "word_frequency": 17942 + }, + { + "word": "biochimica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biochemistry", + "romanization": "biochimica", + "example_sentence_native": "Studia biochimica all'università.", + "example_sentence_english": "She studies biochemistry at university.", + "pos": "noun", + "word_frequency": 17945 + }, + { + "word": "bobina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coil;reel;spool", + "romanization": "bobina", + "example_sentence_native": "La bobina del nastro si è bloccata.", + "example_sentence_english": "The tape reel got stuck.", + "pos": "noun", + "word_frequency": 17946 + }, + { + "word": "calca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowd;crush", + "romanization": "calca", + "example_sentence_native": "C'era una gran calca all'ingresso del concerto.", + "example_sentence_english": "There was a big crowd at the concert entrance.", + "pos": "noun", + "word_frequency": 17950 + }, + { + "word": "cardio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardio (short for cardiovascular;cardiology)", + "romanization": "cardio", + "example_sentence_native": "Faccio esercizi di cardio tre volte a settimana.", + "example_sentence_english": "I do cardio exercises three times a week.", + "pos": "noun", + "word_frequency": 17952 + }, + { + "word": "cartaginese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Carthaginian", + "romanization": "cartaginese", + "example_sentence_native": "Annibale era un generale cartaginese.", + "example_sentence_english": "Hannibal was a Carthaginian general.", + "pos": "noun", + "word_frequency": 17954 + }, + { + "word": "cavalletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grasshopper;locust", + "romanization": "cavalletta", + "example_sentence_native": "Una cavalletta è saltata sull'erba.", + "example_sentence_english": "A grasshopper jumped on the grass.", + "pos": "noun", + "word_frequency": 17955 + }, + { + "word": "ciocca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lock (of hair);tuft", + "romanization": "ciocca", + "example_sentence_native": "Si è tagliata una ciocca di capelli.", + "example_sentence_english": "She cut a lock of her hair.", + "pos": "noun", + "word_frequency": 17958 + }, + { + "word": "clinicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clinically", + "romanization": "clinicamente", + "example_sentence_native": "Il paziente è clinicamente stabile.", + "example_sentence_english": "The patient is clinically stable.", + "pos": "adverb", + "word_frequency": 17960 + }, + { + "word": "coccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shard", + "romanization": "coccio", + "example_sentence_native": "Il vaso è caduto e si è rotto in mille cocci.", + "example_sentence_english": "The vase fell and broke into a thousand shards.", + "pos": "noun", + "word_frequency": 17961 + }, + { + "word": "coercizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coercion", + "romanization": "coercizione", + "example_sentence_native": "La decisione è stata presa sotto coercizione.", + "example_sentence_english": "The decision was made under coercion.", + "pos": "noun", + "word_frequency": 17962 + }, + { + "word": "conflittuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conflictual", + "romanization": "conflittuale", + "example_sentence_native": "Hanno una relazione molto conflittuale.", + "example_sentence_english": "They have a very conflictual relationship.", + "pos": "adjective", + "word_frequency": 17964 + }, + { + "word": "conformare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to conform", + "romanization": "conformare", + "example_sentence_native": "Deve conformare il suo comportamento alle regole.", + "example_sentence_english": "He must conform his behavior to the rules.", + "pos": "verb", + "word_frequency": 17965 + }, + { + "word": "contaminare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to contaminate", + "romanization": "contaminare", + "example_sentence_native": "L'acqua è stata contaminata da sostanze chimiche.", + "example_sentence_english": "The water was contaminated by chemicals.", + "pos": "verb", + "word_frequency": 17966 + }, + { + "word": "coronare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crown", + "romanization": "coronare", + "example_sentence_native": "Il successo ha coronato i suoi sforzi.", + "example_sentence_english": "Success crowned his efforts.", + "pos": "verb", + "word_frequency": 17967 + }, + { + "word": "diffidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distrustful", + "romanization": "diffidente", + "example_sentence_native": "È sempre stato molto diffidente verso gli estranei.", + "example_sentence_english": "He has always been very distrustful of strangers.", + "pos": "adjective", + "word_frequency": 17971 + }, + { + "word": "digitare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to type", + "romanization": "digitare", + "example_sentence_native": "Devo digitare la password.", + "example_sentence_english": "I need to type the password.", + "pos": "verb", + "word_frequency": 17972 + }, + { + "word": "dinamite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dynamite", + "romanization": "dinamite", + "example_sentence_native": "Hanno usato la dinamite per demolire l'edificio.", + "example_sentence_english": "They used dynamite to demolish the building.", + "pos": "noun", + "word_frequency": 17973 + }, + { + "word": "disobbedienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disobedience", + "romanization": "disobbedienza", + "example_sentence_native": "La sua disobbedienza ha causato problemi.", + "example_sentence_english": "His disobedience caused problems.", + "pos": "noun", + "word_frequency": 17975 + }, + { + "word": "dissentire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissent", + "romanization": "dissentire", + "example_sentence_native": "Molti membri hanno espresso il loro dissentire.", + "example_sentence_english": "Many members expressed their dissent.", + "pos": "verb", + "word_frequency": 17976 + }, + { + "word": "ecumenico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecumenical", + "romanization": "ecumenico", + "example_sentence_native": "Il dialogo ecumenico è importante per l'unità.", + "example_sentence_english": "Ecumenical dialogue is important for unity.", + "pos": "adjective", + "word_frequency": 17980 + }, + { + "word": "edema", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edema", + "romanization": "edema", + "example_sentence_native": "Il paziente presenta un edema alle caviglie.", + "example_sentence_english": "The patient presents with edema in the ankles.", + "pos": "noun", + "word_frequency": 17981 + }, + { + "word": "emarginare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to marginalize", + "romanization": "emarginare", + "example_sentence_native": "La società tende a emarginare chi è diverso.", + "example_sentence_english": "Society tends to marginalize those who are different.", + "pos": "verb", + "word_frequency": 17984 + }, + { + "word": "emoji", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emoji", + "romanization": "emoji", + "example_sentence_native": "Ha risposto con un'emoji sorridente.", + "example_sentence_english": "He replied with a smiling emoji.", + "pos": "noun", + "word_frequency": 17985 + }, + { + "word": "empirico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "empirical", + "romanization": "empirico", + "example_sentence_native": "La ricerca si basa su dati empirici.", + "example_sentence_english": "The research is based on empirical data.", + "pos": "adjective", + "word_frequency": 17986 + }, + { + "word": "epifania", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Epiphany", + "romanization": "epifania", + "example_sentence_native": "L'Epifania si celebra il 6 gennaio.", + "example_sentence_english": "Epiphany is celebrated on January 6th.", + "pos": "noun", + "word_frequency": 17987 + }, + { + "word": "epistolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epistolary", + "romanization": "epistolare", + "example_sentence_native": "Ha scritto un romanzo epistolare.", + "example_sentence_english": "He wrote an epistolary novel.", + "pos": "adjective", + "word_frequency": 17988 + }, + { + "word": "equestre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equestrian", + "romanization": "equestre", + "example_sentence_native": "Pratica l'equitazione e le gare equestri.", + "example_sentence_english": "She practices horseback riding and equestrian competitions.", + "pos": "adjective", + "word_frequency": 17989 + }, + { + "word": "esaltante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhilarating", + "romanization": "esaltante", + "example_sentence_native": "È stata un'esperienza davvero esaltante.", + "example_sentence_english": "It was a truly exhilarating experience.", + "pos": "adjective", + "word_frequency": 17990 + }, + { + "word": "etere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ether", + "romanization": "etere", + "example_sentence_native": "La trasmissione viaggiava nell'etere.", + "example_sentence_english": "The transmission traveled through the ether.", + "pos": "noun", + "word_frequency": 17991 + }, + { + "word": "fertilizzante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fertilizer", + "romanization": "fertilizzante", + "example_sentence_native": "Abbiamo bisogno di fertilizzante per il giardino.", + "example_sentence_english": "We need fertilizer for the garden.", + "pos": "noun", + "word_frequency": 17995 + }, + { + "word": "fighissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "super cool", + "romanization": "fighissimo", + "example_sentence_native": "Quel concerto è stato fighissimo!", + "example_sentence_english": "That concert was super cool!", + "pos": "adjective", + "word_frequency": 17996 + }, + { + "word": "fisioterapia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physiotherapy", + "romanization": "fisioterapia", + "example_sentence_native": "Dopo l'infortunio, ha iniziato la fisioterapia.", + "example_sentence_english": "After the injury, he started physiotherapy.", + "pos": "noun", + "word_frequency": 17999 + }, + { + "word": "fotomontaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "photomontage", + "romanization": "fotomontaggio", + "example_sentence_native": "Ha creato un bellissimo fotomontaggio per il compleanno di sua madre.", + "example_sentence_english": "He created a beautiful photomontage for his mother's birthday.", + "pos": "noun", + "word_frequency": 18003 + }, + { + "word": "fumante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steaming", + "romanization": "fumante", + "example_sentence_native": "Mi ha offerto una tazza di tè fumante.", + "example_sentence_english": "She offered me a cup of steaming tea.", + "pos": "adjective", + "word_frequency": 18005 + }, + { + "word": "guaina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheath", + "romanization": "guaina", + "example_sentence_native": "La spada era riposta nella sua guaina di cuoio.", + "example_sentence_english": "The sword was kept in its leather sheath.", + "pos": "noun", + "word_frequency": 18009 + }, + { + "word": "hashish", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hashish", + "romanization": "hashish", + "example_sentence_native": "Il commercio di hashish è illegale.", + "example_sentence_english": "Hashish trade is illegal.", + "pos": "noun", + "word_frequency": 18013 + }, + { + "word": "ilarità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hilarity", + "romanization": "ilarità", + "example_sentence_native": "La sua battuta provocò un'ilarità generale.", + "example_sentence_english": "His joke caused general hilarity.", + "pos": "noun", + "word_frequency": 18018 + }, + { + "word": "illustratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illustrator", + "romanization": "illustratore", + "example_sentence_native": "L'illustratore ha disegnato le immagini per il libro.", + "example_sentence_english": "The illustrator drew the pictures for the book.", + "pos": "noun", + "word_frequency": 18019 + }, + { + "word": "impeachment", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impeachment", + "romanization": "impeachment", + "example_sentence_native": "Il processo di impeachment è iniziato contro il presidente.", + "example_sentence_english": "The impeachment process has begun against the president.", + "pos": "noun", + "word_frequency": 18020 + }, + { + "word": "imperdonabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unforgivable", + "romanization": "imperdonabile", + "example_sentence_native": "Il suo tradimento è stato un errore imperdonabile.", + "example_sentence_english": "His betrayal was an unforgivable mistake.", + "pos": "adjective", + "word_frequency": 18021 + }, + { + "word": "incoraggiante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouraging", + "romanization": "incoraggiante", + "example_sentence_native": "Ha ricevuto notizie molto incoraggianti riguardo al suo progetto.", + "example_sentence_english": "He received very encouraging news about his project.", + "pos": "adjective", + "word_frequency": 18022 + }, + { + "word": "infante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infant", + "romanization": "infante", + "example_sentence_native": "L'infante dormiva profondamente nella culla.", + "example_sentence_english": "The infant was sleeping soundly in the crib.", + "pos": "noun", + "word_frequency": 18025 + }, + { + "word": "infelicità", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unhappiness", + "romanization": "infelicità", + "example_sentence_native": "La sua infelicità era evidente a tutti.", + "example_sentence_english": "His unhappiness was evident to everyone.", + "pos": "noun", + "word_frequency": 18026 + }, + { + "word": "insito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inherent", + "romanization": "insito", + "example_sentence_native": "C'è un rischio insito in ogni investimento.", + "example_sentence_english": "There is an inherent risk in every investment.", + "pos": "adjective", + "word_frequency": 18027 + }, + { + "word": "inspiegabilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexplicably", + "romanization": "inspiegabilmente", + "example_sentence_native": "Inspiegabilmente, la porta si aprì da sola.", + "example_sentence_english": "Inexplicably, the door opened by itself.", + "pos": "adverb", + "word_frequency": 18028 + }, + { + "word": "interculturale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intercultural", + "romanization": "interculturale", + "example_sentence_native": "Promuoviamo lo scambio interculturale tra studenti.", + "example_sentence_english": "We promote intercultural exchange among students.", + "pos": "adjective", + "word_frequency": 18029 + }, + { + "word": "lenticchia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lentil", + "romanization": "lenticchia", + "example_sentence_native": "Mi piace la zuppa di lenticchie.", + "example_sentence_english": "I like lentil soup.", + "pos": "noun", + "word_frequency": 18032 + }, + { + "word": "liberismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "liberalism (economic)", + "romanization": "liberismo", + "example_sentence_native": "Il liberismo promuove la libertà economica.", + "example_sentence_english": "Liberalism promotes economic freedom.", + "pos": "noun", + "word_frequency": 18034 + }, + { + "word": "livornese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Livornese", + "romanization": "livornese", + "example_sentence_native": "La cucina livornese è famosa per il cacciucco.", + "example_sentence_english": "Livornese cuisine is famous for cacciucco.", + "pos": "adjective", + "word_frequency": 18035 + }, + { + "word": "losco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shady", + "romanization": "losco", + "example_sentence_native": "Ho visto un individuo losco aggirarsi vicino alla banca.", + "example_sentence_english": "I saw a shady individual lurking near the bank.", + "pos": "adjective", + "word_frequency": 18038 + }, + { + "word": "maestranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "workforce;skilled workers", + "romanization": "maestranza", + "example_sentence_native": "La maestranza della fabbrica ha scioperato per migliori condizioni.", + "example_sentence_english": "The factory workforce went on strike for better conditions.", + "pos": "noun", + "word_frequency": 18040 + }, + { + "word": "manageriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "managerial", + "romanization": "manageriale", + "example_sentence_native": "Ha assunto una posizione manageriale nell'azienda.", + "example_sentence_english": "He took on a managerial position in the company.", + "pos": "adjective", + "word_frequency": 18043 + }, + { + "word": "mazzata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blow;heavy hit;setback", + "romanization": "mazzata", + "example_sentence_native": "La notizia del licenziamento è stata una vera mazzata.", + "example_sentence_english": "The news of the layoff was a real blow.", + "pos": "noun", + "word_frequency": 18049 + }, + { + "word": "meridiana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sundial", + "romanization": "meridiana", + "example_sentence_native": "C'è una vecchia meridiana sulla facciata della chiesa.", + "example_sentence_english": "There is an old sundial on the church facade.", + "pos": "noun", + "word_frequency": 18050 + }, + { + "word": "merluzzo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cod (fish)", + "romanization": "merluzzo", + "example_sentence_native": "Per cena abbiamo mangiato del merluzzo al forno.", + "example_sentence_english": "For dinner, we ate baked cod.", + "pos": "noun", + "word_frequency": 18051 + }, + { + "word": "moquette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpet;fitted carpet", + "romanization": "moquette", + "example_sentence_native": "Hanno messo una nuova moquette in salotto.", + "example_sentence_english": "They put a new carpet in the living room.", + "pos": "noun", + "word_frequency": 18056 + }, + { + "word": "nichel", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nickel", + "romanization": "nichel", + "example_sentence_native": "Molte monete contengono nichel.", + "example_sentence_english": "Many coins contain nickel.", + "pos": "noun", + "word_frequency": 18060 + }, + { + "word": "nutrizionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nutritional", + "romanization": "nutrizionale", + "example_sentence_native": "Le informazioni nutrizionali sono importanti per una dieta sana.", + "example_sentence_english": "Nutritional information is important for a healthy diet.", + "pos": "adjective", + "word_frequency": 18062 + }, + { + "word": "obeso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obese", + "romanization": "obeso", + "example_sentence_native": "Il medico ha detto che era clinicamente obeso.", + "example_sentence_english": "The doctor said he was clinically obese.", + "pos": "adjective", + "word_frequency": 18063 + }, + { + "word": "omettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to omit;to leave out", + "romanization": "omettere", + "example_sentence_native": "Non devi omettere nessun dettaglio importante.", + "example_sentence_english": "You must not omit any important details.", + "pos": "verb", + "word_frequency": 18064 + }, + { + "word": "ometto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little man;fellow", + "romanization": "ometto", + "example_sentence_native": "C'era un ometto che vendeva fiori all'angolo.", + "example_sentence_english": "There was a little man selling flowers on the corner.", + "pos": "noun", + "word_frequency": 18065 + }, + { + "word": "ostruzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obstruction;blockage", + "romanization": "ostruzione", + "example_sentence_native": "C'è un'ostruzione nel tubo di scarico.", + "example_sentence_english": "There is an obstruction in the drainpipe.", + "pos": "noun", + "word_frequency": 18067 + }, + { + "word": "percorribile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passable;viable", + "romanization": "percorribile", + "example_sentence_native": "La strada è di nuovo percorribile dopo la frana.", + "example_sentence_english": "The road is passable again after the landslide.", + "pos": "adjective", + "word_frequency": 18070 + }, + { + "word": "pergola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pergola", + "romanization": "pergola", + "example_sentence_native": "Abbiamo costruito una pergola in giardino per l'ombra.", + "example_sentence_english": "We built a pergola in the garden for shade.", + "pos": "noun", + "word_frequency": 18071 + }, + { + "word": "persuasione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "persuasion", + "romanization": "persuasione", + "example_sentence_native": "Ha usato tutta la sua persuasione per convincerlo.", + "example_sentence_english": "She used all her persuasion to convince him.", + "pos": "noun", + "word_frequency": 18073 + }, + { + "word": "pesantezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "heaviness;weight", + "romanization": "pesantezza", + "example_sentence_native": "Sento una pesantezza allo stomaco dopo il pasto abbondante.", + "example_sentence_english": "I feel a heaviness in my stomach after the heavy meal.", + "pos": "noun", + "word_frequency": 18074 + }, + { + "word": "piramidale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyramidal", + "romanization": "piramidale", + "example_sentence_native": "La struttura piramidale dell'organizzazione è molto rigida.", + "example_sentence_english": "The pyramidal structure of the organization is very rigid.", + "pos": "adjective", + "word_frequency": 18077 + }, + { + "word": "pizzaiolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pizza maker", + "romanization": "pizzaiolo", + "example_sentence_native": "Il pizzaiolo ha preparato una pizza deliziosa.", + "example_sentence_english": "The pizza maker prepared a delicious pizza.", + "pos": "noun", + "word_frequency": 18078 + }, + { + "word": "pozione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potion", + "romanization": "pozione", + "example_sentence_native": "La strega preparò una pozione magica.", + "example_sentence_english": "The witch prepared a magic potion.", + "pos": "noun", + "word_frequency": 18081 + }, + { + "word": "pragmatismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pragmatism", + "romanization": "pragmatismo", + "example_sentence_native": "Il suo approccio è sempre caratterizzato da un forte pragmatismo.", + "example_sentence_english": "His approach is always characterized by strong pragmatism.", + "pos": "noun", + "word_frequency": 18082 + }, + { + "word": "prisma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prism", + "romanization": "prisma", + "example_sentence_native": "La luce si scompone nei colori dell'arcobaleno attraverso un prisma.", + "example_sentence_english": "Light breaks down into rainbow colors through a prism.", + "pos": "noun", + "word_frequency": 18084 + }, + { + "word": "prolifico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prolific", + "romanization": "prolifico", + "example_sentence_native": "È un autore prolifico, ha scritto molti libri.", + "example_sentence_english": "He is a prolific author, he has written many books.", + "pos": "adjective", + "word_frequency": 18085 + }, + { + "word": "pupa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doll", + "romanization": "pupa", + "example_sentence_native": "La bambina giocava con la sua pupa preferita.", + "example_sentence_english": "The little girl played with her favorite doll.", + "pos": "noun", + "word_frequency": 18088 + }, + { + "word": "quaglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quail", + "romanization": "quaglia", + "example_sentence_native": "La quaglia è un piccolo uccello migratore.", + "example_sentence_english": "The quail is a small migratory bird.", + "pos": "noun", + "word_frequency": 18090 + }, + { + "word": "radiologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiology", + "romanization": "radiologia", + "example_sentence_native": "Ha studiato radiologia all'università.", + "example_sentence_english": "She studied radiology at university.", + "pos": "noun", + "word_frequency": 18091 + }, + { + "word": "raffinatezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refinement", + "romanization": "raffinatezza", + "example_sentence_native": "Il suo stile è caratterizzato da grande raffinatezza.", + "example_sentence_english": "Her style is characterized by great refinement.", + "pos": "noun", + "word_frequency": 18092 + }, + { + "word": "rapa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turnip", + "romanization": "rapa", + "example_sentence_native": "Le rape sono ortaggi a radice.", + "example_sentence_english": "Turnips are root vegetables.", + "pos": "noun", + "word_frequency": 18093 + }, + { + "word": "residence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "residence (apartment hotel)", + "romanization": "residence", + "example_sentence_native": "Abbiamo affittato un appartamento in un residence per le vacanze.", + "example_sentence_english": "We rented an apartment in a residence for the holidays.", + "pos": "noun", + "word_frequency": 18095 + }, + { + "word": "sadico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sadistic", + "romanization": "sadico", + "example_sentence_native": "Il suo comportamento era sadico e crudele.", + "example_sentence_english": "His behavior was sadistic and cruel.", + "pos": "adjective", + "word_frequency": 18098 + }, + { + "word": "scafista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "human trafficker (by boat)", + "romanization": "scafista", + "example_sentence_native": "Lo scafista è stato arrestato al suo arrivo.", + "example_sentence_english": "The human trafficker was arrested upon arrival.", + "pos": "noun", + "word_frequency": 18101 + }, + { + "word": "scaturire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to spring forth;to originate from", + "romanization": "scaturire", + "example_sentence_native": "Da quella decisione scaturirono molte conseguenze.", + "example_sentence_english": "Many consequences sprang from that decision.", + "pos": "verb", + "word_frequency": 18102 + }, + { + "word": "sciagura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misfortune;disaster", + "romanization": "sciagura", + "example_sentence_native": "La sciagura ha colpito la città senza preavviso.", + "example_sentence_english": "The disaster struck the city without warning.", + "pos": "noun", + "word_frequency": 18103 + }, + { + "word": "scivolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slide (playground);chute", + "romanization": "scivolo", + "example_sentence_native": "I bambini si divertivano sullo scivolo del parco.", + "example_sentence_english": "The children were having fun on the park slide.", + "pos": "noun", + "word_frequency": 18104 + }, + { + "word": "scottare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to burn;to scald", + "romanization": "scottare", + "example_sentence_native": "Fai attenzione, il caffè scotta!", + "example_sentence_english": "Be careful, the coffee is scalding hot!", + "pos": "verb", + "word_frequency": 18105 + }, + { + "word": "sintomatologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symptomatology", + "romanization": "sintomatologia", + "example_sentence_native": "La sintomatologia della malattia è complessa.", + "example_sentence_english": "The symptomatology of the disease is complex.", + "pos": "noun", + "word_frequency": 18108 + }, + { + "word": "skills", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skills", + "romanization": "skills", + "example_sentence_native": "Per questo lavoro sono richieste ottime skills comunicative.", + "example_sentence_english": "Excellent communication skills are required for this job.", + "pos": "noun", + "word_frequency": 18109 + }, + { + "word": "soffermarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dwell on;to linger", + "romanization": "soffermarsi", + "example_sentence_native": "Non dobbiamo soffermarci troppo sui dettagli.", + "example_sentence_english": "We shouldn't dwell too much on the details.", + "pos": "verb", + "word_frequency": 18110 + }, + { + "word": "spy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spy", + "romanization": "spy", + "example_sentence_native": "Ha letto un romanzo di spy.", + "example_sentence_english": "He read a spy novel.", + "pos": "noun", + "word_frequency": 18112 + }, + { + "word": "storytelling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "storytelling", + "romanization": "storytelling", + "example_sentence_native": "Il potere dello storytelling è fondamentale nel marketing moderno.", + "example_sentence_english": "The power of storytelling is fundamental in modern marketing.", + "pos": "noun", + "word_frequency": 18113 + }, + { + "word": "supercoppa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Supercup", + "romanization": "supercoppa", + "example_sentence_native": "La Juventus ha vinto la Supercoppa italiana quest'anno.", + "example_sentence_english": "Juventus won the Italian Supercup this year.", + "pos": "noun", + "word_frequency": 18120 + }, + { + "word": "sventura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misfortune", + "romanization": "sventura", + "example_sentence_native": "La sua vita è stata segnata da una serie di sventure.", + "example_sentence_english": "His life was marked by a series of misfortunes.", + "pos": "noun", + "word_frequency": 18121 + }, + { + "word": "svenuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fainted;unconscious", + "romanization": "svenuto", + "example_sentence_native": "Dopo la caduta, si è sentito svenuto per un momento.", + "example_sentence_english": "After the fall, he felt faint for a moment.", + "pos": "adjective", + "word_frequency": 18122 + }, + { + "word": "televoto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "televoting", + "romanization": "televoto", + "example_sentence_native": "Il vincitore è stato scelto tramite televoto.", + "example_sentence_english": "The winner was chosen by televoting.", + "pos": "noun", + "word_frequency": 18125 + }, + { + "word": "timpano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eardrum;tympanum", + "romanization": "timpano", + "example_sentence_native": "Ho un dolore al timpano dopo il concerto.", + "example_sentence_english": "I have an earache in my eardrum after the concert.", + "pos": "noun", + "word_frequency": 18126 + }, + { + "word": "toga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "toga", + "romanization": "toga", + "example_sentence_native": "Nell'antica Roma, i cittadini indossavano la toga.", + "example_sentence_english": "In ancient Rome, citizens wore the toga.", + "pos": "noun", + "word_frequency": 18128 + }, + { + "word": "tortellino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tortellino (small stuffed pasta)", + "romanization": "tortellino", + "example_sentence_native": "Mi piacciono i tortellini in brodo.", + "example_sentence_english": "I like tortellini in broth.", + "pos": "noun", + "word_frequency": 18130 + }, + { + "word": "tramandare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hand down;to transmit", + "romanization": "tramandare", + "example_sentence_native": "Le tradizioni vengono tramandate di generazione in generazione.", + "example_sentence_english": "Traditions are handed down from generation to generation.", + "pos": "verb", + "word_frequency": 18131 + }, + { + "word": "trambusto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commotion;hustle and bustle", + "romanization": "trambusto", + "example_sentence_native": "C'era un gran trambusto in strada dopo l'incidente.", + "example_sentence_english": "There was a great commotion in the street after the accident.", + "pos": "noun", + "word_frequency": 18132 + }, + { + "word": "trascinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dragged;pulled along", + "romanization": "trascinato", + "example_sentence_native": "Si sentiva trascinato dagli eventi.", + "example_sentence_english": "He felt dragged along by the events.", + "pos": "adjective", + "word_frequency": 18133 + }, + { + "word": "tripletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hat-trick;triplet", + "romanization": "tripletta", + "example_sentence_native": "L'attaccante ha segnato una tripletta nella partita.", + "example_sentence_english": "The striker scored a hat-trick in the match.", + "pos": "noun", + "word_frequency": 18134 + }, + { + "word": "truccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "made up;rigged (e.g.;elections)", + "romanization": "truccato", + "example_sentence_native": "La modella era molto truccata per il servizio fotografico.", + "example_sentence_english": "The model was heavily made up for the photoshoot.", + "pos": "adjective", + "word_frequency": 18136 + }, + { + "word": "uccellino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little bird", + "romanization": "uccellino", + "example_sentence_native": "Un uccellino cinguettava sul ramo.", + "example_sentence_english": "A little bird was chirping on the branch.", + "pos": "noun", + "word_frequency": 18137 + }, + { + "word": "valletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "showgirl;valley", + "romanization": "valletta", + "example_sentence_native": "La valletta ha presentato il premio.", + "example_sentence_english": "The showgirl presented the award.", + "pos": "noun", + "word_frequency": 18138 + }, + { + "word": "valoroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valiant;brave", + "romanization": "valoroso", + "example_sentence_native": "Il cavaliere era un uomo valoroso.", + "example_sentence_english": "The knight was a valiant man.", + "pos": "adjective", + "word_frequency": 18139 + }, + { + "word": "velocissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very fast", + "romanization": "velocissimo", + "example_sentence_native": "L'auto sportiva è velocissima.", + "example_sentence_english": "The sports car is very fast.", + "pos": "adjective", + "word_frequency": 18140 + }, + { + "word": "ventola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fan (e.g.;cooling fan)", + "romanization": "ventola", + "example_sentence_native": "La ventola del computer fa rumore.", + "example_sentence_english": "The computer fan is noisy.", + "pos": "noun", + "word_frequency": 18141 + }, + { + "word": "visconte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viscount", + "romanization": "visconte", + "example_sentence_native": "Il visconte era un nobile di alto rango.", + "example_sentence_english": "The viscount was a high-ranking nobleman.", + "pos": "noun", + "word_frequency": 18142 + }, + { + "word": "zombi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "zombie", + "romanization": "zombi", + "example_sentence_native": "Nel film c'erano molti zombi.", + "example_sentence_english": "There were many zombies in the movie.", + "pos": "noun", + "word_frequency": 18147 + }, + { + "word": "abbronzatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tan;suntan", + "romanization": "abbronzatura", + "example_sentence_native": "Ho preso una bella abbronzatura al mare.", + "example_sentence_english": "I got a nice tan at the beach.", + "pos": "noun", + "word_frequency": 18148 + }, + { + "word": "accisa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excise duty;excise tax", + "romanization": "accisa", + "example_sentence_native": "Il prezzo della benzina include l'accisa.", + "example_sentence_english": "The price of gasoline includes the excise duty.", + "pos": "noun", + "word_frequency": 18150 + }, + { + "word": "accrescimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "growth;increase", + "romanization": "accrescimento", + "example_sentence_native": "Si osserva un accrescimento della popolazione.", + "example_sentence_english": "An increase in population is observed.", + "pos": "noun", + "word_frequency": 18151 + }, + { + "word": "affermativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affirmative;positive", + "romanization": "affermativo", + "example_sentence_native": "La sua risposta è stata affermativa.", + "example_sentence_english": "His answer was affirmative.", + "pos": "adjective", + "word_frequency": 18154 + }, + { + "word": "alcolizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alcoholic (adj.)", + "romanization": "alcolizzato", + "example_sentence_native": "Era un uomo alcolizzato che cercava aiuto.", + "example_sentence_english": "He was an alcoholic man seeking help.", + "pos": "adjective", + "word_frequency": 18157 + }, + { + "word": "all'erta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "on alert", + "romanization": "all'erta", + "example_sentence_native": "Le sentinelle erano all'erta per tutta la notte.", + "example_sentence_english": "The sentinels were on alert all night.", + "pos": "adverb", + "word_frequency": 18160 + }, + { + "word": "allettante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tempting;alluring", + "romanization": "allettante", + "example_sentence_native": "L'offerta era davvero allettante.", + "example_sentence_english": "The offer was truly tempting.", + "pos": "adjective", + "word_frequency": 18163 + }, + { + "word": "alternato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alternating;alternated", + "romanization": "alternato", + "example_sentence_native": "Hanno un programma di lavoro alternato.", + "example_sentence_english": "They have an alternating work schedule.", + "pos": "adjective", + "word_frequency": 18164 + }, + { + "word": "analizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "analyzed", + "romanization": "analizzato", + "example_sentence_native": "I dati sono stati attentamente analizzati.", + "example_sentence_english": "The data has been carefully analyzed.", + "pos": "adjective", + "word_frequency": 18166 + }, + { + "word": "anulare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annular;ring-shaped", + "romanization": "anulare", + "example_sentence_native": "L'eclissi anulare è un fenomeno raro.", + "example_sentence_english": "The annular eclipse is a rare phenomenon.", + "pos": "adjective", + "word_frequency": 18167 + }, + { + "word": "apnea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apnea;breath-holding", + "romanization": "apnea", + "example_sentence_native": "Ha praticato l'apnea per molti anni.", + "example_sentence_english": "He has practiced apnea for many years.", + "pos": "noun", + "word_frequency": 18168 + }, + { + "word": "appezzamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plot (of land);parcel", + "romanization": "appezzamento", + "example_sentence_native": "Hanno comprato un piccolo appezzamento di terra.", + "example_sentence_english": "They bought a small plot of land.", + "pos": "noun", + "word_frequency": 18169 + }, + { + "word": "apporre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to affix;to append;to place", + "romanization": "apporre", + "example_sentence_native": "Deve apporre la sua firma sul documento.", + "example_sentence_english": "He must affix his signature to the document.", + "pos": "verb", + "word_frequency": 18170 + }, + { + "word": "appropriarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appropriate;to take possession of", + "romanization": "appropriarsi", + "example_sentence_native": "Si è appropriato dei fondi senza autorizzazione.", + "example_sentence_english": "He appropriated the funds without authorization.", + "pos": "verb", + "word_frequency": 18171 + }, + { + "word": "ardere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to burn;to glow", + "romanization": "ardere", + "example_sentence_native": "Il fuoco ardeva nel camino.", + "example_sentence_english": "The fire was burning in the fireplace.", + "pos": "verb", + "word_frequency": 18172 + }, + { + "word": "ardore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ardor;passion;fervor", + "romanization": "ardore", + "example_sentence_native": "Ha affrontato la sfida con grande ardore.", + "example_sentence_english": "He faced the challenge with great ardor.", + "pos": "noun", + "word_frequency": 18173 + }, + { + "word": "armonioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harmonious", + "romanization": "armonioso", + "example_sentence_native": "La loro relazione è molto armoniosa.", + "example_sentence_english": "Their relationship is very harmonious.", + "pos": "adjective", + "word_frequency": 18174 + }, + { + "word": "arreso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surrendered;given up", + "romanization": "arreso", + "example_sentence_native": "Il nemico si è dichiarato arreso.", + "example_sentence_english": "The enemy declared themselves surrendered.", + "pos": "adjective", + "word_frequency": 18177 + }, + { + "word": "assiduo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assiduous;diligent;constant", + "romanization": "assiduo", + "example_sentence_native": "È uno studente assiduo e molto motivato.", + "example_sentence_english": "He is an assiduous and very motivated student.", + "pos": "adjective", + "word_frequency": 18178 + }, + { + "word": "attenuante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mitigating;extenuating", + "romanization": "attenuante", + "example_sentence_native": "Ci sono circostanze attenuanti nel suo caso.", + "example_sentence_english": "There are mitigating circumstances in his case.", + "pos": "adjective", + "word_frequency": 18181 + }, + { + "word": "baltico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Baltic", + "romanization": "baltico", + "example_sentence_native": "Il Mar Baltico è un mare interno.", + "example_sentence_english": "The Baltic Sea is an inland sea.", + "pos": "adjective", + "word_frequency": 18183 + }, + { + "word": "battezzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baptized;christened", + "romanization": "battezzato", + "example_sentence_native": "Il bambino è stato battezzato la scorsa domenica.", + "example_sentence_english": "The baby was baptized last Sunday.", + "pos": "adjective", + "word_frequency": 18188 + }, + { + "word": "bavarese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bavarian", + "romanization": "bavarese", + "example_sentence_native": "La cucina bavarese è molto ricca.", + "example_sentence_english": "Bavarian cuisine is very rich.", + "pos": "adjective", + "word_frequency": 18189 + }, + { + "word": "benefattore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benefactor", + "romanization": "benefattore", + "example_sentence_native": "La fondazione ringrazia i suoi benefattori.", + "example_sentence_english": "The foundation thanks its benefactors.", + "pos": "noun", + "word_frequency": 18191 + }, + { + "word": "blasfemia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blasphemy", + "romanization": "blasfemia", + "example_sentence_native": "La blasfemia è considerata un peccato grave.", + "example_sentence_english": "Blasphemy is considered a grave sin.", + "pos": "noun", + "word_frequency": 18196 + }, + { + "word": "buddismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Buddhism", + "romanization": "buddismo", + "example_sentence_native": "Il buddismo è una religione e filosofia.", + "example_sentence_english": "Buddhism is a religion and philosophy.", + "pos": "noun", + "word_frequency": 18200 + }, + { + "word": "campestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rural;rustic;country", + "romanization": "campestre", + "example_sentence_native": "Hanno organizzato una festa campestre.", + "example_sentence_english": "They organized a country party.", + "pos": "adjective", + "word_frequency": 18202 + }, + { + "word": "capitolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specifications;tender document", + "romanization": "capitolato", + "example_sentence_native": "Il capitolato d'appalto descrive i requisiti del progetto.", + "example_sentence_english": "The tender document describes the project requirements.", + "pos": "noun", + "word_frequency": 18203 + }, + { + "word": "carnale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carnal;fleshly", + "romanization": "carnale", + "example_sentence_native": "Hanno un legame carnale molto forte.", + "example_sentence_english": "They have a very strong carnal bond.", + "pos": "adjective", + "word_frequency": 18204 + }, + { + "word": "ceduto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ceded;given up;transferred", + "romanization": "ceduto", + "example_sentence_native": "Il terreno ceduto è stato venduto.", + "example_sentence_english": "The ceded land was sold.", + "pos": "adjective", + "word_frequency": 18207 + }, + { + "word": "chiosco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kiosk;stand", + "romanization": "chiosco", + "example_sentence_native": "Ho comprato un giornale al chiosco.", + "example_sentence_english": "I bought a newspaper at the kiosk.", + "pos": "noun", + "word_frequency": 18210 + }, + { + "word": "cialtrone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slob;scoundrel;good-for-nothing", + "romanization": "cialtrone", + "example_sentence_native": "Non voglio avere a che fare con quel cialtrone.", + "example_sentence_english": "I don't want to deal with that slob.", + "pos": "noun", + "word_frequency": 18213 + }, + { + "word": "clamorosamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sensationally;resoundingly;spectacularly", + "romanization": "clamorosamente", + "example_sentence_native": "La squadra ha perso clamorosamente la partita.", + "example_sentence_english": "The team sensationally lost the game.", + "pos": "adverb", + "word_frequency": 18216 + }, + { + "word": "commistione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mixture;blend;commingling", + "romanization": "commistione", + "example_sentence_native": "C'è una commistione interessante di stili in questo edificio.", + "example_sentence_english": "There is an interesting mixture of styles in this building.", + "pos": "noun", + "word_frequency": 18220 + }, + { + "word": "compassionevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compassionate;merciful", + "romanization": "compassionevole", + "example_sentence_native": "Era una persona molto compassionevole e gentile.", + "example_sentence_english": "He was a very compassionate and kind person.", + "pos": "adjective", + "word_frequency": 18221 + }, + { + "word": "compatriota", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compatriot;fellow countryman;woman", + "romanization": "compatriota", + "example_sentence_native": "Ha incontrato un suo compatriota all'estero.", + "example_sentence_english": "He met a fellow countryman abroad.", + "pos": "noun", + "word_frequency": 18222 + }, + { + "word": "computo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calculation;count;estimate", + "romanization": "computo", + "example_sentence_native": "Il computo finale dei costi è stato più alto del previsto.", + "example_sentence_english": "The final cost estimate was higher than expected.", + "pos": "noun", + "word_frequency": 18223 + }, + { + "word": "condensazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condensation", + "romanization": "condensazione", + "example_sentence_native": "La condensazione si forma sulle finestre fredde.", + "example_sentence_english": "Condensation forms on cold windows.", + "pos": "noun", + "word_frequency": 18224 + }, + { + "word": "convertirsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to convert (oneself);to be converted", + "romanization": "convertirsi", + "example_sentence_native": "Ha deciso di convertirsi al buddismo.", + "example_sentence_english": "He decided to convert to Buddhism.", + "pos": "verb", + "word_frequency": 18226 + }, + { + "word": "cordata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rope team (climbing);consortium;group (business)", + "romanization": "cordata", + "example_sentence_native": "La cordata di alpinisti ha raggiunto la vetta.", + "example_sentence_english": "The rope team of climbers reached the summit.", + "pos": "noun", + "word_frequency": 18227 + }, + { + "word": "costitutivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutive;constituent;fundamental", + "romanization": "costitutivo", + "example_sentence_native": "Questo è un elemento costitutivo della nostra identità.", + "example_sentence_english": "This is a constitutive element of our identity.", + "pos": "adjective", + "word_frequency": 18229 + }, + { + "word": "crinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ridge;crest (of a mountain)", + "romanization": "crinale", + "example_sentence_native": "Abbiamo camminato lungo il crinale della montagna.", + "example_sentence_english": "We walked along the mountain ridge.", + "pos": "noun", + "word_frequency": 18232 + }, + { + "word": "crocifissione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crucifixion", + "romanization": "crocifissione", + "example_sentence_native": "La crocifissione è un evento centrale nella storia cristiana.", + "example_sentence_english": "The crucifixion is a central event in Christian history.", + "pos": "noun", + "word_frequency": 18233 + }, + { + "word": "decadente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decadent;decaying", + "romanization": "decadente", + "example_sentence_native": "L'impero romano era in una fase decadente.", + "example_sentence_english": "The Roman Empire was in a decadent phase.", + "pos": "adjective", + "word_frequency": 18238 + }, + { + "word": "declinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decline;to refuse;to conjugate (grammar)", + "romanization": "declinare", + "example_sentence_native": "Ha dovuto declinare l'invito per motivi di lavoro.", + "example_sentence_english": "He had to decline the invitation for work reasons.", + "pos": "verb", + "word_frequency": 18239 + }, + { + "word": "destabilizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to destabilize", + "romanization": "destabilizzare", + "example_sentence_native": "Le nuove riforme potrebbero destabilizzare l'equilibrio politico.", + "example_sentence_english": "The new reforms could destabilize the political balance.", + "pos": "verb", + "word_frequency": 18247 + }, + { + "word": "diatriba", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diatribe", + "romanization": "diatriba", + "example_sentence_native": "La diatriba tra i due studiosi è durata per anni.", + "example_sentence_english": "The diatribe between the two scholars lasted for years.", + "pos": "noun", + "word_frequency": 18248 + }, + { + "word": "dischetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floppy disk", + "romanization": "dischetto", + "example_sentence_native": "Ho ancora dei vecchi dati su un dischetto.", + "example_sentence_english": "I still have some old data on a floppy disk.", + "pos": "noun", + "word_frequency": 18252 + }, + { + "word": "emarginazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marginalization", + "romanization": "emarginazione", + "example_sentence_native": "La povertà può portare all'emarginazione sociale.", + "example_sentence_english": "Poverty can lead to social marginalization.", + "pos": "noun", + "word_frequency": 18255 + }, + { + "word": "emulare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emulate", + "romanization": "emulare", + "example_sentence_native": "Molti giovani cercano di emulare i loro eroi sportivi.", + "example_sentence_english": "Many young people try to emulate their sports heroes.", + "pos": "verb", + "word_frequency": 18256 + }, + { + "word": "equitazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horse riding", + "romanization": "equitazione", + "example_sentence_native": "L'equitazione è uno sport che richiede grande coordinazione.", + "example_sentence_english": "Horse riding is a sport that requires great coordination.", + "pos": "noun", + "word_frequency": 18257 + }, + { + "word": "esausto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhausted", + "romanization": "esausto", + "example_sentence_native": "Dopo una lunga giornata di lavoro, ero completamente esausto.", + "example_sentence_english": "After a long day of work, I was completely exhausted.", + "pos": "adjective", + "word_frequency": 18258 + }, + { + "word": "fauce", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maw", + "romanization": "fauce", + "example_sentence_native": "Il lupo aprì le sue fauci minacciose.", + "example_sentence_english": "The wolf opened its menacing maw.", + "pos": "noun", + "word_frequency": 18261 + }, + { + "word": "feltro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "felt", + "romanization": "feltro", + "example_sentence_native": "Il cappello è realizzato in feltro di alta qualità.", + "example_sentence_english": "The hat is made of high-quality felt.", + "pos": "noun", + "word_frequency": 18264 + }, + { + "word": "focalizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "focused", + "romanization": "focalizzato", + "example_sentence_native": "È molto focalizzato sul raggiungimento dei suoi obiettivi.", + "example_sentence_english": "He is very focused on achieving his goals.", + "pos": "adjective", + "word_frequency": 18269 + }, + { + "word": "formoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shapely", + "romanization": "formoso", + "example_sentence_native": "Indossava un abito che esaltava la sua figura formosa.", + "example_sentence_english": "She wore a dress that enhanced her shapely figure.", + "pos": "adjective", + "word_frequency": 18270 + }, + { + "word": "genealogia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "genealogy", + "romanization": "genealogia", + "example_sentence_native": "Ha passato anni a studiare la genealogia della sua famiglia.", + "example_sentence_english": "He spent years studying his family's genealogy.", + "pos": "noun", + "word_frequency": 18273 + }, + { + "word": "gladiatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gladiator", + "romanization": "gladiatore", + "example_sentence_native": "Il gladiatore combatteva coraggiosamente nell'arena.", + "example_sentence_english": "The gladiator fought bravely in the arena.", + "pos": "noun", + "word_frequency": 18276 + }, + { + "word": "grappolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bunch", + "romanization": "grappolo", + "example_sentence_native": "Ha raccolto un grappolo d'uva matura.", + "example_sentence_english": "He picked a bunch of ripe grapes.", + "pos": "noun", + "word_frequency": 18277 + }, + { + "word": "ideologicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideologically", + "romanization": "ideologicamente", + "example_sentence_native": "Sono ideologicamente allineati su molte questioni.", + "example_sentence_english": "They are ideologically aligned on many issues.", + "pos": "adverb", + "word_frequency": 18278 + }, + { + "word": "imbrogliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheat", + "romanization": "imbrogliare", + "example_sentence_native": "Non è giusto imbrogliare durante un gioco.", + "example_sentence_english": "It's not fair to cheat during a game.", + "pos": "verb", + "word_frequency": 18279 + }, + { + "word": "immaginato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imagined", + "romanization": "immaginato", + "example_sentence_native": "Il futuro che aveva immaginato era molto diverso.", + "example_sentence_english": "The future he had imagined was very different.", + "pos": "adjective", + "word_frequency": 18280 + }, + { + "word": "immediatezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immediacy", + "romanization": "immediatezza", + "example_sentence_native": "Ha risposto con grande immediatezza.", + "example_sentence_english": "He responded with great immediacy.", + "pos": "noun", + "word_frequency": 18281 + }, + { + "word": "importantissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very important", + "romanization": "importantissimo", + "example_sentence_native": "Questo è un dettaglio importantissimo per il progetto.", + "example_sentence_english": "This is a very important detail for the project.", + "pos": "adjective", + "word_frequency": 18282 + }, + { + "word": "impugnato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenged", + "romanization": "impugnato", + "example_sentence_native": "La decisione è stata impugnata in tribunale.", + "example_sentence_english": "The decision was challenged in court.", + "pos": "adjective", + "word_frequency": 18283 + }, + { + "word": "inatteso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unexpected", + "romanization": "inatteso", + "example_sentence_native": "La sua visita è stata del tutto inattesa.", + "example_sentence_english": "His visit was completely unexpected.", + "pos": "adjective", + "word_frequency": 18284 + }, + { + "word": "inavvertitamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inadvertently", + "romanization": "inavvertitamente", + "example_sentence_native": "Ho inavvertitamente cancellato il file.", + "example_sentence_english": "I inadvertently deleted the file.", + "pos": "adverb", + "word_frequency": 18285 + }, + { + "word": "incoerenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconsistency", + "romanization": "incoerenza", + "example_sentence_native": "C'è una chiara incoerenza tra le sue parole e le sue azioni.", + "example_sentence_english": "There is a clear inconsistency between his words and his actions.", + "pos": "noun", + "word_frequency": 18286 + }, + { + "word": "incompiuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfinished", + "romanization": "incompiuto", + "example_sentence_native": "Il romanzo è rimasto incompiuto alla sua morte.", + "example_sentence_english": "The novel remained unfinished at his death.", + "pos": "adjective", + "word_frequency": 18287 + }, + { + "word": "inefficiente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inefficient", + "romanization": "inefficiente", + "example_sentence_native": "Il vecchio sistema era molto inefficiente.", + "example_sentence_english": "The old system was very inefficient.", + "pos": "adjective", + "word_frequency": 18288 + }, + { + "word": "infamia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infamy", + "romanization": "infamia", + "example_sentence_native": "Le sue azioni gli hanno portato solo infamia.", + "example_sentence_english": "His actions brought him only infamy.", + "pos": "noun", + "word_frequency": 18289 + }, + { + "word": "infilato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slipped in", + "romanization": "infilato", + "example_sentence_native": "Aveva il cappello infilato fino agli occhi.", + "example_sentence_english": "He had his hat pulled down over his eyes.", + "pos": "adjective", + "word_frequency": 18290 + }, + { + "word": "infrarosso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infrared", + "romanization": "infrarosso", + "example_sentence_native": "La telecamera utilizza la tecnologia a infrarossi.", + "example_sentence_english": "The camera uses infrared technology.", + "pos": "adjective", + "word_frequency": 18291 + }, + { + "word": "intellettualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectually", + "romanization": "intellettualmente", + "example_sentence_native": "È una persona molto stimolante intellettualmente.", + "example_sentence_english": "He is a very intellectually stimulating person.", + "pos": "adverb", + "word_frequency": 18292 + }, + { + "word": "intimare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to order", + "romanization": "intimare", + "example_sentence_native": "La polizia gli ha intimato di fermarsi.", + "example_sentence_english": "The police ordered him to stop.", + "pos": "verb", + "word_frequency": 18294 + }, + { + "word": "ispiratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspirer", + "romanization": "ispiratore", + "example_sentence_native": "Era il suo mentore e ispiratore.", + "example_sentence_english": "He was his mentor and inspirer.", + "pos": "noun", + "word_frequency": 18295 + }, + { + "word": "istintivamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "instinctively", + "romanization": "istintivamente", + "example_sentence_native": "Ha reagito istintivamente al pericolo.", + "example_sentence_english": "He reacted instinctively to the danger.", + "pos": "adverb", + "word_frequency": 18296 + }, + { + "word": "liberista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "free-market", + "romanization": "liberista", + "example_sentence_native": "Ha una visione economica molto liberista.", + "example_sentence_english": "He has a very free-market economic view.", + "pos": "adjective", + "word_frequency": 18301 + }, + { + "word": "limousine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "limousine", + "romanization": "limousine", + "example_sentence_native": "Sono arrivati in una lussuosa limousine.", + "example_sentence_english": "They arrived in a luxurious limousine.", + "pos": "noun", + "word_frequency": 18303 + }, + { + "word": "maledettamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "damnably", + "romanization": "maledettamente", + "example_sentence_native": "Era maledettamente difficile da capire.", + "example_sentence_english": "It was damnably difficult to understand.", + "pos": "adverb", + "word_frequency": 18305 + }, + { + "word": "malsano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unhealthy", + "romanization": "malsano", + "example_sentence_native": "Ha uno stile di vita malsano.", + "example_sentence_english": "He has an unhealthy lifestyle.", + "pos": "adjective", + "word_frequency": 18306 + }, + { + "word": "manichino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mannequin", + "romanization": "manichino", + "example_sentence_native": "I vestiti erano esposti su un manichino.", + "example_sentence_english": "The clothes were displayed on a mannequin.", + "pos": "noun", + "word_frequency": 18307 + }, + { + "word": "medagliere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medal collection", + "romanization": "medagliere", + "example_sentence_native": "Il suo medagliere era impressionante.", + "example_sentence_english": "His medal collection was impressive.", + "pos": "noun", + "word_frequency": 18310 + }, + { + "word": "metodico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodical", + "romanization": "metodico", + "example_sentence_native": "È una persona molto metodica nel suo lavoro.", + "example_sentence_english": "He is a very methodical person in his work.", + "pos": "adjective", + "word_frequency": 18311 + }, + { + "word": "microrganismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microorganism", + "romanization": "microrganismo", + "example_sentence_native": "I microrganismi sono invisibili a occhio nudo.", + "example_sentence_english": "Microorganisms are invisible to the naked eye.", + "pos": "noun", + "word_frequency": 18312 + }, + { + "word": "montone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ram", + "romanization": "montone", + "example_sentence_native": "Il pastore guidava il suo gregge di montoni.", + "example_sentence_english": "The shepherd led his flock of rams.", + "pos": "noun", + "word_frequency": 18314 + }, + { + "word": "mozzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wheel hub", + "romanization": "mozzo", + "example_sentence_native": "Il mozzo della ruota era rotto.", + "example_sentence_english": "The wheel hub was broken.", + "pos": "noun", + "word_frequency": 18316 + }, + { + "word": "multiculturale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multicultural", + "romanization": "multiculturale", + "example_sentence_native": "Viviamo in una società sempre più multiculturale.", + "example_sentence_english": "We live in an increasingly multicultural society.", + "pos": "adjective", + "word_frequency": 18317 + }, + { + "word": "nevicare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to snow", + "romanization": "nevicare", + "example_sentence_native": "Domani dovrebbe nevicare in montagna.", + "example_sentence_english": "It should snow in the mountains tomorrow.", + "pos": "verb", + "word_frequency": 18321 + }, + { + "word": "occhiolino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wink", + "romanization": "occhiolino", + "example_sentence_native": "Mi ha fatto l'occhiolino per salutarmi.", + "example_sentence_english": "He gave me a wink to say hello.", + "pos": "noun", + "word_frequency": 18326 + }, + { + "word": "originare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to originate", + "romanization": "originare", + "example_sentence_native": "Molti fiumi originano dalle Alpi.", + "example_sentence_english": "Many rivers originate from the Alps.", + "pos": "verb", + "word_frequency": 18328 + }, + { + "word": "ospedaliere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hospital (adj.)", + "romanization": "ospedaliere", + "example_sentence_native": "Il personale ospedaliero è molto dedicato.", + "example_sentence_english": "The hospital staff is very dedicated.", + "pos": "adjective", + "word_frequency": 18329 + }, + { + "word": "panettiere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baker", + "romanization": "panettiere", + "example_sentence_native": "Il panettiere apre presto ogni mattina.", + "example_sentence_english": "The baker opens early every morning.", + "pos": "noun", + "word_frequency": 18330 + }, + { + "word": "pantano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swamp;quagmire", + "romanization": "pantano", + "example_sentence_native": "Dopo la pioggia, il sentiero si è trasformato in un pantano.", + "example_sentence_english": "After the rain, the path turned into a quagmire.", + "pos": "noun", + "word_frequency": 18331 + }, + { + "word": "pediatrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pediatric", + "romanization": "pediatrico", + "example_sentence_native": "Il reparto pediatrico è stato rinnovato.", + "example_sentence_english": "The pediatric ward has been renovated.", + "pos": "adjective", + "word_frequency": 18334 + }, + { + "word": "preferenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preferential", + "romanization": "preferenziale", + "example_sentence_native": "Hanno dato un trattamento preferenziale ai clienti abituali.", + "example_sentence_english": "They gave preferential treatment to regular customers.", + "pos": "adjective", + "word_frequency": 18342 + }, + { + "word": "prefissato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-established;fixed", + "romanization": "prefissato", + "example_sentence_native": "Il prezzo è prefissato e non negoziabile.", + "example_sentence_english": "The price is pre-established and non-negotiable.", + "pos": "adjective", + "word_frequency": 18343 + }, + { + "word": "prodigo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prodigal;generous", + "romanization": "prodigo", + "example_sentence_native": "Era prodigo di consigli e aiuti.", + "example_sentence_english": "He was prodigal with advice and help.", + "pos": "adjective", + "word_frequency": 18344 + }, + { + "word": "qualitativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "qualitatively", + "romanization": "qualitativamente", + "example_sentence_native": "Il lavoro è migliorato qualitativamente.", + "example_sentence_english": "The work has improved qualitatively.", + "pos": "adverb", + "word_frequency": 18350 + }, + { + "word": "quarantacinque", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forty-five", + "romanization": "quarantacinque", + "example_sentence_native": "Ho quarantacinque anni.", + "example_sentence_english": "I am forty-five years old.", + "pos": "adjective", + "word_frequency": 18351 + }, + { + "word": "radioattività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radioactivity", + "romanization": "radioattività", + "example_sentence_native": "La radioattività può essere pericolosa.", + "example_sentence_english": "Radioactivity can be dangerous.", + "pos": "noun", + "word_frequency": 18354 + }, + { + "word": "raggruppare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to group;to gather", + "romanization": "raggruppare", + "example_sentence_native": "Dobbiamo raggruppare i dati per l'analisi.", + "example_sentence_english": "We need to group the data for analysis.", + "pos": "verb", + "word_frequency": 18355 + }, + { + "word": "recensire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to review", + "romanization": "recensire", + "example_sentence_native": "Mi piace recensire libri e film.", + "example_sentence_english": "I like to review books and movies.", + "pos": "verb", + "word_frequency": 18358 + }, + { + "word": "replay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "replay", + "romanization": "replay", + "example_sentence_native": "Hanno mostrato il replay dell'azione.", + "example_sentence_english": "They showed the replay of the action.", + "pos": "noun", + "word_frequency": 18360 + }, + { + "word": "repost", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repost", + "romanization": "repost", + "example_sentence_native": "Ho visto il tuo repost su Instagram.", + "example_sentence_english": "I saw your repost on Instagram.", + "pos": "noun", + "word_frequency": 18361 + }, + { + "word": "ricchissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "very rich", + "romanization": "ricchissimo", + "example_sentence_native": "Quell'uomo è ricchissimo, possiede molte proprietà.", + "example_sentence_english": "That man is very rich, he owns many properties.", + "pos": "adjective", + "word_frequency": 18362 + }, + { + "word": "rievocare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evoke;to recall", + "romanization": "rievocare", + "example_sentence_native": "La musica può rievocare ricordi lontani.", + "example_sentence_english": "Music can evoke distant memories.", + "pos": "verb", + "word_frequency": 18364 + }, + { + "word": "riorganizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reorganize", + "romanization": "riorganizzare", + "example_sentence_native": "Dobbiamo riorganizzare il nostro lavoro per essere più efficienti.", + "example_sentence_english": "We need to reorganize our work to be more efficient.", + "pos": "verb", + "word_frequency": 18365 + }, + { + "word": "riparto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "division;department", + "romanization": "riparto", + "example_sentence_native": "Il riparto delle spese è stato equo.", + "example_sentence_english": "The distribution of expenses was fair.", + "pos": "noun", + "word_frequency": 18366 + }, + { + "word": "risparmiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saved;spared", + "romanization": "risparmiato", + "example_sentence_native": "Grazie al suo aiuto, mi sono risparmiato molta fatica.", + "example_sentence_english": "Thanks to his help, I spared myself a lot of effort.", + "pos": "adjective", + "word_frequency": 18367 + }, + { + "word": "ritegno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "restraint;reserve", + "romanization": "ritegno", + "example_sentence_native": "Ha agito senza alcun ritegno.", + "example_sentence_english": "He acted without any restraint.", + "pos": "noun", + "word_frequency": 18368 + }, + { + "word": "rivisto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "revised;reviewed", + "romanization": "rivisto", + "example_sentence_native": "La versione rivista del documento è pronta.", + "example_sentence_english": "The revised version of the document is ready.", + "pos": "adjective", + "word_frequency": 18369 + }, + { + "word": "robustezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "robustness;sturdiness", + "romanization": "robustezza", + "example_sentence_native": "La robustezza di questo tavolo è impressionante.", + "example_sentence_english": "The sturdiness of this table is impressive.", + "pos": "noun", + "word_frequency": 18370 + }, + { + "word": "roccioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocky", + "romanization": "roccioso", + "example_sentence_native": "Il sentiero era molto roccioso e difficile da percorrere.", + "example_sentence_english": "The path was very rocky and difficult to walk.", + "pos": "adjective", + "word_frequency": 18371 + }, + { + "word": "romanziere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "novelist", + "romanization": "romanziere", + "example_sentence_native": "È un romanziere famoso per i suoi thriller.", + "example_sentence_english": "He is a novelist famous for his thrillers.", + "pos": "noun", + "word_frequency": 18372 + }, + { + "word": "rotolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to roll", + "romanization": "rotolare", + "example_sentence_native": "La palla ha iniziato a rotolare giù per la collina.", + "example_sentence_english": "The ball started to roll down the hill.", + "pos": "verb", + "word_frequency": 18373 + }, + { + "word": "sacralità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacredness;sanctity", + "romanization": "sacralità", + "example_sentence_native": "La sacralità del luogo era palpabile.", + "example_sentence_english": "The sacredness of the place was palpable.", + "pos": "noun", + "word_frequency": 18375 + }, + { + "word": "sballo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high;thrill (colloquial)", + "romanization": "sballo", + "example_sentence_native": "È stato uno sballo andare a quel concerto.", + "example_sentence_english": "It was a blast to go to that concert.", + "pos": "noun", + "word_frequency": 18378 + }, + { + "word": "scolare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to drain;to strain", + "romanization": "scolare", + "example_sentence_native": "Ricorda di scolare la pasta prima di condirla.", + "example_sentence_english": "Remember to drain the pasta before seasoning it.", + "pos": "verb", + "word_frequency": 18380 + }, + { + "word": "sedicente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-proclaimed;so-called", + "romanization": "sedicente", + "example_sentence_native": "Il sedicente esperto non aveva alcuna prova.", + "example_sentence_english": "The self-proclaimed expert had no proof.", + "pos": "adjective", + "word_frequency": 18381 + }, + { + "word": "selvaggiamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wildly;savagely", + "romanization": "selvaggiamente", + "example_sentence_native": "Il vento soffiava selvaggiamente tra gli alberi.", + "example_sentence_english": "The wind blew wildly through the trees.", + "pos": "adverb", + "word_frequency": 18382 + }, + { + "word": "sensoriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensory", + "romanization": "sensoriale", + "example_sentence_native": "L'esperienza sensoriale è stata molto intensa.", + "example_sentence_english": "The sensory experience was very intense.", + "pos": "adjective", + "word_frequency": 18383 + }, + { + "word": "sigillato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sealed", + "romanization": "sigillato", + "example_sentence_native": "Il pacco era sigillato e intatto.", + "example_sentence_english": "The package was sealed and intact.", + "pos": "adjective", + "word_frequency": 18385 + }, + { + "word": "sintonizzato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuned in;synchronized", + "romanization": "sintonizzato", + "example_sentence_native": "Siamo sintonizzati sulla stessa frequenza.", + "example_sentence_english": "We are tuned in to the same frequency.", + "pos": "adjective", + "word_frequency": 18388 + }, + { + "word": "socialità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sociability;sociality", + "romanization": "socialità", + "example_sentence_native": "La sua socialità lo rende molto popolare.", + "example_sentence_english": "His sociability makes him very popular.", + "pos": "noun", + "word_frequency": 18389 + }, + { + "word": "solletico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tickle;tickling", + "romanization": "solletico", + "example_sentence_native": "Ho il solletico ai piedi.", + "example_sentence_english": "I have a tickle in my feet.", + "pos": "noun", + "word_frequency": 18390 + }, + { + "word": "sottinteso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implied;implicit", + "romanization": "sottinteso", + "example_sentence_native": "C'era un messaggio sottinteso nelle sue parole.", + "example_sentence_english": "There was an implied message in his words.", + "pos": "adjective", + "word_frequency": 18391 + }, + { + "word": "sottoterra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underground", + "romanization": "sottoterra", + "example_sentence_native": "Hanno costruito un rifugio sottoterra.", + "example_sentence_english": "They built an underground shelter.", + "pos": "noun", + "word_frequency": 18392 + }, + { + "word": "speculatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speculator", + "romanization": "speculatore", + "example_sentence_native": "Gli speculatori hanno causato un aumento dei prezzi.", + "example_sentence_english": "The speculators caused a price increase.", + "pos": "noun", + "word_frequency": 18393 + }, + { + "word": "spilla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pin;brooch", + "romanization": "spilla", + "example_sentence_native": "Ha appuntato una spilla sulla sua giacca.", + "example_sentence_english": "She pinned a brooch on her jacket.", + "pos": "noun", + "word_frequency": 18394 + }, + { + "word": "sporadico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sporadic", + "romanization": "sporadico", + "example_sentence_native": "Le interruzioni di corrente erano sporadiche.", + "example_sentence_english": "The power outages were sporadic.", + "pos": "adjective", + "word_frequency": 18395 + }, + { + "word": "stagnazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stagnation", + "romanization": "stagnazione", + "example_sentence_native": "L'economia è entrata in un periodo di stagnazione.", + "example_sentence_english": "The economy entered a period of stagnation.", + "pos": "noun", + "word_frequency": 18396 + }, + { + "word": "stravolgere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to distort;to upset", + "romanization": "stravolgere", + "example_sentence_native": "La notizia ha stravolto i suoi piani.", + "example_sentence_english": "The news upset his plans.", + "pos": "verb", + "word_frequency": 18398 + }, + { + "word": "suonato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crazy;played", + "romanization": "suonato", + "example_sentence_native": "Quel tipo è completamente suonato.", + "example_sentence_english": "That guy is completely crazy.", + "pos": "adjective", + "word_frequency": 18401 + }, + { + "word": "superbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superb;proud;arrogant", + "romanization": "superbo", + "example_sentence_native": "Ha fatto una performance superba.", + "example_sentence_english": "He gave a superb performance.", + "pos": "adjective", + "word_frequency": 18402 + }, + { + "word": "tascabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pocket-sized;paperback", + "romanization": "tascabile", + "example_sentence_native": "Ho comprato un'edizione tascabile del libro.", + "example_sentence_english": "I bought a paperback edition of the book.", + "pos": "adjective", + "word_frequency": 18403 + }, + { + "word": "tee", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tee (golf)", + "romanization": "tee", + "example_sentence_native": "Metti la palla sul tee.", + "example_sentence_english": "Put the ball on the tee.", + "pos": "noun", + "word_frequency": 18404 + }, + { + "word": "teglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baking pan;tray", + "romanization": "teglia", + "example_sentence_native": "Ho messo la lasagna nella teglia.", + "example_sentence_english": "I put the lasagna in the baking pan.", + "pos": "noun", + "word_frequency": 18405 + }, + { + "word": "teppista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hooligan;thug", + "romanization": "teppista", + "example_sentence_native": "I teppisti hanno vandalizzato il parco.", + "example_sentence_english": "The hooligans vandalized the park.", + "pos": "noun", + "word_frequency": 18406 + }, + { + "word": "terapista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "therapist", + "romanization": "terapista", + "example_sentence_native": "Ho un appuntamento con il mio terapista.", + "example_sentence_english": "I have an appointment with my therapist.", + "pos": "noun", + "word_frequency": 18407 + }, + { + "word": "tredicenne", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirteen-year-old", + "romanization": "tredicenne", + "example_sentence_native": "Mia sorella è una tredicenne molto vivace.", + "example_sentence_english": "My sister is a very lively thirteen-year-old.", + "pos": "adjective", + "word_frequency": 18411 + }, + { + "word": "tuttofare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handyman;jack-of-all-trades", + "romanization": "tuttofare", + "example_sentence_native": "Mio padre è un vero tuttofare in casa.", + "example_sentence_english": "My father is a real handyman at home.", + "pos": "noun", + "word_frequency": 18412 + }, + { + "word": "ufficializzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to formalize;to make official", + "romanization": "ufficializzare", + "example_sentence_native": "Dobbiamo ufficializzare l'accordo.", + "example_sentence_english": "We need to formalize the agreement.", + "pos": "verb", + "word_frequency": 18413 + }, + { + "word": "uninominale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "single-member (electoral system)", + "romanization": "uninominale", + "example_sentence_native": "Il sistema elettorale uninominale è usato in molti paesi.", + "example_sentence_english": "The single-member electoral system is used in many countries.", + "pos": "adjective", + "word_frequency": 18414 + }, + { + "word": "vanvera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "at random;without thinking (in \"a vanvera\")", + "romanization": "vanvera", + "example_sentence_native": "Non parlare a vanvera.", + "example_sentence_english": "Don't talk nonsense.", + "pos": "adverb", + "word_frequency": 18415 + }, + { + "word": "vigilante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigilante;watchful", + "romanization": "vigilante", + "example_sentence_native": "Un vigilante ha sventato il furto.", + "example_sentence_english": "A vigilante thwarted the theft.", + "pos": "noun", + "word_frequency": 18417 + }, + { + "word": "wire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wire", + "romanization": "wire", + "example_sentence_native": "Dobbiamo controllare il wire di connessione.", + "example_sentence_english": "We need to check the connection wire.", + "pos": "noun", + "word_frequency": 18419 + }, + { + "word": "addurre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to adduce;to bring forward;to cite", + "romanization": "addurre", + "example_sentence_native": "Non ha saputo addurre prove a sua difesa.", + "example_sentence_english": "He could not adduce evidence in his defense.", + "pos": "verb", + "word_frequency": 18422 + }, + { + "word": "all'osso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to the bone;to the core", + "romanization": "all'osso", + "example_sentence_native": "Siamo stanchi all'osso dopo il lavoro.", + "example_sentence_english": "We are tired to the bone after work.", + "pos": "adverb", + "word_frequency": 18427 + }, + { + "word": "alloggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to lodge;to stay;to accommodate", + "romanization": "alloggiare", + "example_sentence_native": "Abbiamo deciso di alloggiare in un hotel.", + "example_sentence_english": "We decided to stay in a hotel.", + "pos": "verb", + "word_frequency": 18428 + }, + { + "word": "ammortamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amortization;depreciation", + "romanization": "ammortamento", + "example_sentence_native": "Il piano di ammortamento del mutuo è di 30 anni.", + "example_sentence_english": "The mortgage amortization plan is 30 years.", + "pos": "noun", + "word_frequency": 18429 + }, + { + "word": "apoteosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apotheosis;climax", + "romanization": "apoteosi", + "example_sentence_native": "La sua carriera è stata un'apoteosi di successi.", + "example_sentence_english": "His career was an apotheosis of successes.", + "pos": "noun", + "word_frequency": 18431 + }, + { + "word": "appellare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to appeal;to call upon", + "romanization": "appellare", + "example_sentence_native": "L'avvocato ha deciso di appellare la sentenza.", + "example_sentence_english": "The lawyer decided to appeal the sentence.", + "pos": "verb", + "word_frequency": 18432 + }, + { + "word": "appurare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ascertain;to verify", + "romanization": "appurare", + "example_sentence_native": "Dobbiamo appurare la verità dei fatti.", + "example_sentence_english": "We must ascertain the truth of the facts.", + "pos": "verb", + "word_frequency": 18433 + }, + { + "word": "avamposto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outpost;forward position", + "romanization": "avamposto", + "example_sentence_native": "Hanno stabilito un avamposto nel deserto.", + "example_sentence_english": "They established an outpost in the desert.", + "pos": "noun", + "word_frequency": 18436 + }, + { + "word": "barare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheat;to bluff", + "romanization": "barare", + "example_sentence_native": "Non mi piace barare ai giochi da tavolo.", + "example_sentence_english": "I don't like to cheat at board games.", + "pos": "verb", + "word_frequency": 18438 + }, + { + "word": "bassorilievo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bas-relief;low relief", + "romanization": "bassorilievo", + "example_sentence_native": "Il museo espone antichi bassorilievi egizi.", + "example_sentence_english": "The museum exhibits ancient Egyptian bas-reliefs.", + "pos": "noun", + "word_frequency": 18439 + }, + { + "word": "bilocale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "two-room apartment", + "romanization": "bilocale", + "example_sentence_native": "Stiamo cercando un bilocale in affitto in centro.", + "example_sentence_english": "We are looking for a two-room apartment for rent in the city center.", + "pos": "noun", + "word_frequency": 18444 + }, + { + "word": "bocciatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "failure (in an exam);rejection", + "romanization": "bocciatura", + "example_sentence_native": "La sua bocciatura all'esame di matematica lo ha demoralizzato.", + "example_sentence_english": "His failure in the math exam demoralized him.", + "pos": "noun", + "word_frequency": 18446 + }, + { + "word": "cacciavite", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "screwdriver", + "romanization": "cacciavite", + "example_sentence_native": "Mi serve un cacciavite per montare questo mobile.", + "example_sentence_english": "I need a screwdriver to assemble this furniture.", + "pos": "noun", + "word_frequency": 18452 + }, + { + "word": "capa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boss (female);head (informal)", + "romanization": "capa", + "example_sentence_native": "La capa ha deciso di chiudere l'ufficio prima.", + "example_sentence_english": "The boss decided to close the office early.", + "pos": "noun", + "word_frequency": 18453 + }, + { + "word": "carrellata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tracking shot;overview", + "romanization": "carrellata", + "example_sentence_native": "Il documentario ha offerto una rapida carrellata sulla storia della città.", + "example_sentence_english": "The documentary offered a quick overview of the city's history.", + "pos": "noun", + "word_frequency": 18454 + }, + { + "word": "castrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "castration", + "romanization": "castrazione", + "example_sentence_native": "La castrazione degli animali domestici è una pratica comune.", + "example_sentence_english": "The castration of pets is a common practice.", + "pos": "noun", + "word_frequency": 18456 + }, + { + "word": "catalogazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cataloging;categorization", + "romanization": "catalogazione", + "example_sentence_native": "La catalogazione dei libri in biblioteca richiede precisione.", + "example_sentence_english": "The cataloging of books in the library requires precision.", + "pos": "noun", + "word_frequency": 18457 + }, + { + "word": "catastale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cadastral", + "romanization": "catastale", + "example_sentence_native": "È necessario consultare la mappa catastale per verificare i confini della proprietà.", + "example_sentence_english": "It is necessary to consult the cadastral map to verify the property boundaries.", + "pos": "adjective", + "word_frequency": 18458 + }, + { + "word": "cedro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cedar;citron", + "romanization": "cedro", + "example_sentence_native": "Il profumo del cedro è molto gradevole.", + "example_sentence_english": "The scent of cedar is very pleasant.", + "pos": "noun", + "word_frequency": 18459 + }, + { + "word": "chierico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cleric;clergyman", + "romanization": "chierico", + "example_sentence_native": "Il chierico ha celebrato la messa nella piccola chiesa di campagna.", + "example_sentence_english": "The cleric celebrated mass in the small country church.", + "pos": "noun", + "word_frequency": 18461 + }, + { + "word": "chino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bent;bowed;inclined", + "romanization": "chino", + "example_sentence_native": "Era seduto con la testa china sui libri.", + "example_sentence_english": "He was sitting with his head bent over the books.", + "pos": "adjective", + "word_frequency": 18462 + }, + { + "word": "citofono", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "intercom;entry phone", + "romanization": "citofono", + "example_sentence_native": "Qualcuno ha suonato al citofono, vado ad aprire.", + "example_sentence_english": "Someone rang the intercom, I'll go open the door.", + "pos": "noun", + "word_frequency": 18464 + }, + { + "word": "cognac", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cognac", + "romanization": "cognac", + "example_sentence_native": "Dopo cena, ha offerto un bicchiere di cognac.", + "example_sentence_english": "After dinner, he offered a glass of cognac.", + "pos": "noun", + "word_frequency": 18466 + }, + { + "word": "comandato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ordered;commanded;assigned", + "romanization": "comandato", + "example_sentence_native": "Il soldato era in missione comandata.", + "example_sentence_english": "The soldier was on an assigned mission.", + "pos": "adjective", + "word_frequency": 18467 + }, + { + "word": "comprovato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proven;attested", + "romanization": "comprovato", + "example_sentence_native": "Le sue capacità sono state comprovate da anni di esperienza.", + "example_sentence_english": "His abilities have been proven by years of experience.", + "pos": "adjective", + "word_frequency": 18469 + }, + { + "word": "consiliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advisory;consultative", + "romanization": "consiliare", + "example_sentence_native": "La commissione ha un ruolo puramente consiliare.", + "example_sentence_english": "The committee has a purely advisory role.", + "pos": "adjective", + "word_frequency": 18470 + }, + { + "word": "consuntivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "final report;balance sheet", + "romanization": "consuntivo", + "example_sentence_native": "Il consiglio ha approvato il bilancio consuntivo dell'anno precedente.", + "example_sentence_english": "The board approved the final balance sheet for the previous year.", + "pos": "noun", + "word_frequency": 18471 + }, + { + "word": "continuativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuous;ongoing", + "romanization": "continuativo", + "example_sentence_native": "Il progetto richiede un impegno continuativo da parte di tutti.", + "example_sentence_english": "The project requires continuous commitment from everyone.", + "pos": "adjective", + "word_frequency": 18472 + }, + { + "word": "convalescenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convalescence;recovery", + "romanization": "convalescenza", + "example_sentence_native": "Dopo l'operazione, ha avuto un lungo periodo di convalescenza.", + "example_sentence_english": "After the operation, he had a long period of convalescence.", + "pos": "noun", + "word_frequency": 18473 + }, + { + "word": "costrutto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "construct;structure;syntax", + "romanization": "costrutto", + "example_sentence_native": "Il costrutto grammaticale di questa frase è complesso.", + "example_sentence_english": "The grammatical construct of this sentence is complex.", + "pos": "noun", + "word_frequency": 18477 + }, + { + "word": "crepare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crack;to burst;to die (informal)", + "romanization": "crepare", + "example_sentence_native": "Il vaso è caduto e ha iniziato a crepare.", + "example_sentence_english": "The vase fell and started to crack.", + "pos": "verb", + "word_frequency": 18478 + }, + { + "word": "discrezionalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discretion", + "romanization": "discrezionalità", + "example_sentence_native": "Il giudice ha ampia discrezionalità nella sentenza.", + "example_sentence_english": "The judge has wide discretion in the sentence.", + "pos": "noun", + "word_frequency": 18493 + }, + { + "word": "disinteressato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinterested", + "romanization": "disinteressato", + "example_sentence_native": "Ha agito in modo completamente disinteressato.", + "example_sentence_english": "He acted in a completely disinterested way.", + "pos": "adjective", + "word_frequency": 18494 + }, + { + "word": "distinguo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distinction", + "romanization": "distinguo", + "example_sentence_native": "È importante fare un distinguo tra i due concetti.", + "example_sentence_english": "It is important to make a distinction between the two concepts.", + "pos": "noun", + "word_frequency": 18495 + }, + { + "word": "dubbioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "doubtful", + "romanization": "dubbioso", + "example_sentence_native": "Era dubbioso sulla sua decisione.", + "example_sentence_english": "He was doubtful about his decision.", + "pos": "adjective", + "word_frequency": 18498 + }, + { + "word": "eminenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eminence", + "romanization": "eminenza", + "example_sentence_native": "Sua Eminenza ha pronunciato un discorso.", + "example_sentence_english": "His Eminence delivered a speech.", + "pos": "noun", + "word_frequency": 18502 + }, + { + "word": "erbacce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weeds", + "romanization": "erbacce", + "example_sentence_native": "Devo togliere le erbacce dal giardino.", + "example_sentence_english": "I need to remove the weeds from the garden.", + "pos": "noun", + "word_frequency": 18505 + }, + { + "word": "esultare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exult", + "romanization": "esultare", + "example_sentence_native": "La folla ha iniziato a esultare dopo il gol.", + "example_sentence_english": "The crowd started to exult after the goal.", + "pos": "verb", + "word_frequency": 18508 + }, + { + "word": "falsificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "falsification", + "romanization": "falsificazione", + "example_sentence_native": "La falsificazione di documenti è un reato grave.", + "example_sentence_english": "The falsification of documents is a serious crime.", + "pos": "noun", + "word_frequency": 18510 + }, + { + "word": "filtrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filtered", + "romanization": "filtrato", + "example_sentence_native": "L'acqua filtrata è più pulita.", + "example_sentence_english": "Filtered water is cleaner.", + "pos": "adjective", + "word_frequency": 18513 + }, + { + "word": "finanche", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "even", + "romanization": "finanche", + "example_sentence_native": "Ha lavorato finanche di notte per finire il progetto.", + "example_sentence_english": "He worked even at night to finish the project.", + "pos": "adverb", + "word_frequency": 18514 + }, + { + "word": "fisarmonica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accordion", + "romanization": "fisarmonica", + "example_sentence_native": "Suona la fisarmonica in un gruppo folk.", + "example_sentence_english": "He plays the accordion in a folk band.", + "pos": "noun", + "word_frequency": 18515 + }, + { + "word": "frequentatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frequenter", + "romanization": "frequentatore", + "example_sentence_native": "È un frequentatore abituale di quella biblioteca.", + "example_sentence_english": "He is a regular frequenter of that library.", + "pos": "noun", + "word_frequency": 18516 + }, + { + "word": "galattico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "galactic", + "romanization": "galattico", + "example_sentence_native": "Abbiamo osservato una nebulosa galattica.", + "example_sentence_english": "We observed a galactic nebula.", + "pos": "adjective", + "word_frequency": 18518 + }, + { + "word": "gasdotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pipeline", + "romanization": "gasdotto", + "example_sentence_native": "La costruzione del nuovo gasdotto è stata completata.", + "example_sentence_english": "The construction of the new pipeline has been completed.", + "pos": "noun", + "word_frequency": 18520 + }, + { + "word": "hindi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hindi", + "romanization": "hindi", + "example_sentence_native": "L'hindi è una delle lingue ufficiali dell'India.", + "example_sentence_english": "Hindi is one of the official languages of India.", + "pos": "noun", + "word_frequency": 18527 + }, + { + "word": "imballaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "packaging", + "romanization": "imballaggio", + "example_sentence_native": "Il prodotto è arrivato con un imballaggio danneggiato.", + "example_sentence_english": "The product arrived with damaged packaging.", + "pos": "noun", + "word_frequency": 18531 + }, + { + "word": "immettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to introduce;to insert;to put in", + "romanization": "immettere", + "example_sentence_native": "È necessario immettere i dati nel sistema.", + "example_sentence_english": "It is necessary to enter the data into the system.", + "pos": "verb", + "word_frequency": 18533 + }, + { + "word": "impenetrabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impenetrable", + "romanization": "impenetrabile", + "example_sentence_native": "La foresta era così densa da essere impenetrabile.", + "example_sentence_english": "The forest was so dense as to be impenetrable.", + "pos": "adjective", + "word_frequency": 18535 + }, + { + "word": "incontrollabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrollable", + "romanization": "incontrollabile", + "example_sentence_native": "La sua rabbia era diventata incontrollabile.", + "example_sentence_english": "His anger had become uncontrollable.", + "pos": "adjective", + "word_frequency": 18536 + }, + { + "word": "incuriosire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make curious;to intrigue", + "romanization": "incuriosire", + "example_sentence_native": "La storia ha incuriosito tutti i presenti.", + "example_sentence_english": "The story intrigued everyone present.", + "pos": "verb", + "word_frequency": 18537 + }, + { + "word": "indenne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unharmed;unscathed", + "romanization": "indenne", + "example_sentence_native": "È uscito dall'incidente completamente indenne.", + "example_sentence_english": "He emerged from the accident completely unharmed.", + "pos": "adjective", + "word_frequency": 18538 + }, + { + "word": "indovino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortune-teller;soothsayer", + "romanization": "indovino", + "example_sentence_native": "L'indovino predissee un futuro prospero.", + "example_sentence_english": "The fortune-teller predicted a prosperous future.", + "pos": "noun", + "word_frequency": 18539 + }, + { + "word": "indulto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pardon;amnesty", + "romanization": "indulto", + "example_sentence_native": "Il governo ha concesso un indulto a diversi prigionieri.", + "example_sentence_english": "The government granted a pardon to several prisoners.", + "pos": "noun", + "word_frequency": 18540 + }, + { + "word": "inesauribile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inexhaustible", + "romanization": "inesauribile", + "example_sentence_native": "La sua energia sembrava inesauribile.", + "example_sentence_english": "His energy seemed inexhaustible.", + "pos": "adjective", + "word_frequency": 18541 + }, + { + "word": "ingombro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulk;clutter;encumbrance", + "romanization": "ingombro", + "example_sentence_native": "Questo mobile crea troppo ingombro nella stanza.", + "example_sentence_english": "This furniture creates too much clutter in the room.", + "pos": "noun", + "word_frequency": 18542 + }, + { + "word": "insuperabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurmountable;unbeatable", + "romanization": "insuperabile", + "example_sentence_native": "Ha dimostrato un talento insuperabile nel suo campo.", + "example_sentence_english": "He showed an unbeatable talent in his field.", + "pos": "adjective", + "word_frequency": 18543 + }, + { + "word": "intemperia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bad weather;inclemency", + "romanization": "intemperia", + "example_sentence_native": "La casa ha resistito a tutte le intemperie.", + "example_sentence_english": "The house withstood all the bad weather.", + "pos": "noun", + "word_frequency": 18544 + }, + { + "word": "intonazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intonation", + "romanization": "intonazione", + "example_sentence_native": "L'intonazione della sua voce rivelava la sua sorpresa.", + "example_sentence_english": "The intonation of his voice revealed his surprise.", + "pos": "noun", + "word_frequency": 18545 + }, + { + "word": "linfocito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lymphocyte", + "romanization": "linfocito", + "example_sentence_native": "I linfociti sono un tipo di globuli bianchi.", + "example_sentence_english": "Lymphocytes are a type of white blood cell.", + "pos": "noun", + "word_frequency": 18553 + }, + { + "word": "loft", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "loft", + "romanization": "loft", + "example_sentence_native": "Hanno trasformato il vecchio magazzino in un loft moderno.", + "example_sentence_english": "They transformed the old warehouse into a modern loft.", + "pos": "noun", + "word_frequency": 18555 + }, + { + "word": "lottatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wrestler;fighter", + "romanization": "lottatore", + "example_sentence_native": "Il lottatore ha vinto il campionato.", + "example_sentence_english": "The wrestler won the championship.", + "pos": "noun", + "word_frequency": 18556 + }, + { + "word": "lunetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lunette;small moon;crescent", + "romanization": "lunetta", + "example_sentence_native": "La lunetta sopra la porta era decorata con affreschi.", + "example_sentence_english": "The lunette above the door was decorated with frescoes.", + "pos": "noun", + "word_frequency": 18558 + }, + { + "word": "macabro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "macabre", + "romanization": "macabro", + "example_sentence_native": "L'atmosfera del vecchio castello era piuttosto macabra.", + "example_sentence_english": "The atmosphere of the old castle was quite macabre.", + "pos": "adjective", + "word_frequency": 18559 + }, + { + "word": "magnete", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnet", + "romanization": "magnete", + "example_sentence_native": "Il magnete ha attratto la graffetta.", + "example_sentence_english": "The magnet attracted the paperclip.", + "pos": "noun", + "word_frequency": 18560 + }, + { + "word": "malefico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evil;malevolent", + "romanization": "malefico", + "example_sentence_native": "Il mago lanciò un incantesimo malefico.", + "example_sentence_english": "The wizard cast an evil spell.", + "pos": "adjective", + "word_frequency": 18561 + }, + { + "word": "manubrio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "handlebar;dumbbell", + "romanization": "manubrio", + "example_sentence_native": "Ho stretto forte il manubrio della bicicletta.", + "example_sentence_english": "I gripped the bicycle handlebar tightly.", + "pos": "noun", + "word_frequency": 18562 + }, + { + "word": "meteorite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorite", + "romanization": "meteorite", + "example_sentence_native": "Un meteorite è caduto nel deserto.", + "example_sentence_english": "A meteorite fell in the desert.", + "pos": "noun", + "word_frequency": 18568 + }, + { + "word": "metrico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "metric", + "romanization": "metrico", + "example_sentence_native": "L'Italia usa il sistema metrico.", + "example_sentence_english": "Italy uses the metric system.", + "pos": "adjective", + "word_frequency": 18569 + }, + { + "word": "micio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kitty;pussycat", + "romanization": "micio", + "example_sentence_native": "Il micio dorme sul divano.", + "example_sentence_english": "The kitty is sleeping on the sofa.", + "pos": "noun", + "word_frequency": 18570 + }, + { + "word": "miopia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myopia;nearsightedness", + "romanization": "miopia", + "example_sentence_native": "Ho la miopia e devo portare gli occhiali.", + "example_sentence_english": "I have myopia and I have to wear glasses.", + "pos": "noun", + "word_frequency": 18572 + }, + { + "word": "monastico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monastic", + "romanization": "monastico", + "example_sentence_native": "La vita monastica è dedicata alla preghiera.", + "example_sentence_english": "Monastic life is dedicated to prayer.", + "pos": "adjective", + "word_frequency": 18573 + }, + { + "word": "muco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mucus", + "romanization": "muco", + "example_sentence_native": "Il raffreddore causa la produzione di muco.", + "example_sentence_english": "A cold causes mucus production.", + "pos": "noun", + "word_frequency": 18578 + }, + { + "word": "muscoloso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscular", + "romanization": "muscoloso", + "example_sentence_native": "L'atleta era molto muscoloso.", + "example_sentence_english": "The athlete was very muscular.", + "pos": "adjective", + "word_frequency": 18580 + }, + { + "word": "mussulmano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Muslim", + "romanization": "mussulmano", + "example_sentence_native": "Molti mussulmani vivono in Italia.", + "example_sentence_english": "Many Muslims live in Italy.", + "pos": "noun", + "word_frequency": 18581 + }, + { + "word": "nautico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nautical", + "romanization": "nautico", + "example_sentence_native": "Hanno frequentato un corso nautico.", + "example_sentence_english": "They attended a nautical course.", + "pos": "adjective", + "word_frequency": 18584 + }, + { + "word": "nebulosa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nebula", + "romanization": "nebulosa", + "example_sentence_native": "La nebulosa di Orione è visibile nel cielo notturno.", + "example_sentence_english": "The Orion Nebula is visible in the night sky.", + "pos": "noun", + "word_frequency": 18585 + }, + { + "word": "orlo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "edge;hem;brim", + "romanization": "orlo", + "example_sentence_native": "L'orlo della gonna era strappato.", + "example_sentence_english": "The hem of the skirt was torn.", + "pos": "noun", + "word_frequency": 18593 + }, + { + "word": "oscenità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obscenity", + "romanization": "oscenità", + "example_sentence_native": "Il film è stato criticato per le sue oscenità.", + "example_sentence_english": "The film was criticized for its obscenities.", + "pos": "noun", + "word_frequency": 18594 + }, + { + "word": "paniere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basket", + "romanization": "paniere", + "example_sentence_native": "Abbiamo riempito il paniere per il picnic.", + "example_sentence_english": "We filled the basket for the picnic.", + "pos": "noun", + "word_frequency": 18598 + }, + { + "word": "panificio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bakery", + "romanization": "panificio", + "example_sentence_native": "Vado al panificio a comprare il pane fresco.", + "example_sentence_english": "I'm going to the bakery to buy fresh bread.", + "pos": "noun", + "word_frequency": 18599 + }, + { + "word": "parmense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Parmese;from Parma", + "romanization": "parmense", + "example_sentence_native": "Il formaggio parmense è famoso in tutto il mondo.", + "example_sentence_english": "Parmese cheese is famous all over the world.", + "pos": "adjective", + "word_frequency": 18600 + }, + { + "word": "pauroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scary;fearful", + "romanization": "pauroso", + "example_sentence_native": "Quel film era davvero pauroso.", + "example_sentence_english": "That movie was really scary.", + "pos": "adjective", + "word_frequency": 18601 + }, + { + "word": "penalizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalty;penalization", + "romanization": "penalizzazione", + "example_sentence_native": "La squadra ha ricevuto una penalizzazione per un fallo.", + "example_sentence_english": "The team received a penalty for a foul.", + "pos": "noun", + "word_frequency": 18602 + }, + { + "word": "perquisire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to search (a person;place);to frisk", + "romanization": "perquisire", + "example_sentence_native": "La polizia ha il diritto di perquisire il veicolo.", + "example_sentence_english": "The police have the right to search the vehicle.", + "pos": "verb", + "word_frequency": 18604 + }, + { + "word": "perseverare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to persevere", + "romanization": "perseverare", + "example_sentence_native": "Dobbiamo perseverare nei nostri sforzi per raggiungere l'obiettivo.", + "example_sentence_english": "We must persevere in our efforts to reach the goal.", + "pos": "verb", + "word_frequency": 18605 + }, + { + "word": "pianeggiante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flat;level", + "romanization": "pianeggiante", + "example_sentence_native": "La regione è prevalentemente pianeggiante.", + "example_sentence_english": "The region is predominantly flat.", + "pos": "adjective", + "word_frequency": 18606 + }, + { + "word": "presidentessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female president;chairwoman", + "romanization": "presidentessa", + "example_sentence_native": "La presidentessa ha aperto la riunione.", + "example_sentence_english": "The chairwoman opened the meeting.", + "pos": "noun", + "word_frequency": 18608 + }, + { + "word": "profilassi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prophylaxis", + "romanization": "profilassi", + "example_sentence_native": "La profilassi è fondamentale per prevenire la diffusione delle malattie.", + "example_sentence_english": "Prophylaxis is fundamental to prevent the spread of diseases.", + "pos": "noun", + "word_frequency": 18610 + }, + { + "word": "proliferare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to proliferate", + "romanization": "proliferare", + "example_sentence_native": "Le alghe hanno iniziato a proliferare nel lago.", + "example_sentence_english": "The algae began to proliferate in the lake.", + "pos": "verb", + "word_frequency": 18611 + }, + { + "word": "puffo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smurf", + "romanization": "puffo", + "example_sentence_native": "I puffi vivono in casette a forma di fungo.", + "example_sentence_english": "Smurfs live in mushroom-shaped houses.", + "pos": "noun", + "word_frequency": 18615 + }, + { + "word": "pupilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pupil (of the eye)", + "romanization": "pupilla", + "example_sentence_native": "La luce fa restringere la pupilla.", + "example_sentence_english": "Light makes the pupil constrict.", + "pos": "noun", + "word_frequency": 18616 + }, + { + "word": "quadriennale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quadrennial;four-yearly", + "romanization": "quadriennale", + "example_sentence_native": "Le elezioni si tengono su base quadriennale.", + "example_sentence_english": "Elections are held on a quadrennial basis.", + "pos": "adjective", + "word_frequency": 18617 + }, + { + "word": "quattordicenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fourteen-year-old", + "romanization": "quattordicenne", + "example_sentence_native": "Mio fratello è un quattordicenne molto vivace.", + "example_sentence_english": "My brother is a very lively fourteen-year-old.", + "pos": "noun", + "word_frequency": 18618 + }, + { + "word": "raffineria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refinery", + "romanization": "raffineria", + "example_sentence_native": "La raffineria produce benzina e altri derivati del petrolio.", + "example_sentence_english": "The refinery produces gasoline and other petroleum derivatives.", + "pos": "noun", + "word_frequency": 18620 + }, + { + "word": "rapinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rob;to mug", + "romanization": "rapinare", + "example_sentence_native": "Hanno tentato di rapinare la banca.", + "example_sentence_english": "They tried to rob the bank.", + "pos": "verb", + "word_frequency": 18621 + }, + { + "word": "razione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ration;portion", + "romanization": "razione", + "example_sentence_native": "Ogni soldato riceveva una razione giornaliera di cibo.", + "example_sentence_english": "Every soldier received a daily ration of food.", + "pos": "noun", + "word_frequency": 18623 + }, + { + "word": "reattivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactive;responsive", + "romanization": "reattivo", + "example_sentence_native": "Il materiale è molto reattivo a contatto con l'acqua.", + "example_sentence_english": "The material is very reactive upon contact with water.", + "pos": "adjective", + "word_frequency": 18624 + }, + { + "word": "recepire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to incorporate;to adopt;to understand (formally)", + "romanization": "recepire", + "example_sentence_native": "Il governo deve recepire la direttiva europea.", + "example_sentence_english": "The government must incorporate the European directive.", + "pos": "verb", + "word_frequency": 18625 + }, + { + "word": "redditività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profitability", + "romanization": "redditività", + "example_sentence_native": "L'azienda sta lavorando per migliorare la sua redditività.", + "example_sentence_english": "The company is working to improve its profitability.", + "pos": "noun", + "word_frequency": 18626 + }, + { + "word": "riaperto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reopened", + "romanization": "riaperto", + "example_sentence_native": "Il negozio è stato riaperto dopo i lavori di ristrutturazione.", + "example_sentence_english": "The shop has been reopened after the renovation work.", + "pos": "adjective", + "word_frequency": 18630 + }, + { + "word": "rilettura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rereading;review", + "romanization": "rilettura", + "example_sentence_native": "Una rilettura attenta del testo è necessaria.", + "example_sentence_english": "A careful rereading of the text is necessary.", + "pos": "noun", + "word_frequency": 18631 + }, + { + "word": "rimarcare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to emphasize;to highlight", + "romanization": "rimarcare", + "example_sentence_native": "Vorrei rimarcare l'importanza di questo punto.", + "example_sentence_english": "I would like to emphasize the importance of this point.", + "pos": "verb", + "word_frequency": 18632 + }, + { + "word": "rimostranza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remonstrance;complaint;protest", + "romanization": "rimostranza", + "example_sentence_native": "Ha presentato una rimostranza formale contro la decisione.", + "example_sentence_english": "He lodged a formal complaint against the decision.", + "pos": "noun", + "word_frequency": 18633 + }, + { + "word": "rimprovero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reproach;scolding", + "romanization": "rimprovero", + "example_sentence_native": "Ha ricevuto un rimprovero per il suo comportamento.", + "example_sentence_english": "He received a scolding for his behavior.", + "pos": "noun", + "word_frequency": 18634 + }, + { + "word": "rincorsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "run-up;sprint", + "romanization": "rincorsa", + "example_sentence_native": "Ha preso una lunga rincorsa prima di saltare.", + "example_sentence_english": "He took a long run-up before jumping.", + "pos": "noun", + "word_frequency": 18636 + }, + { + "word": "ripiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shelf;counter", + "romanization": "ripiano", + "example_sentence_native": "Metti i libri sul ripiano superiore.", + "example_sentence_english": "Put the books on the top shelf.", + "pos": "noun", + "word_frequency": 18637 + }, + { + "word": "ritorsione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retaliation;reprisal", + "romanization": "ritorsione", + "example_sentence_native": "Il paese ha minacciato ritorsioni economiche.", + "example_sentence_english": "The country threatened economic retaliation.", + "pos": "noun", + "word_frequency": 18639 + }, + { + "word": "rivisitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reinterpretation", + "romanization": "rivisitazione", + "example_sentence_native": "La rivisitazione del classico ha diviso la critica.", + "example_sentence_english": "The reinterpretation of the classic divided critics.", + "pos": "noun", + "word_frequency": 18640 + }, + { + "word": "roditore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rodent", + "romanization": "roditore", + "example_sentence_native": "Il topo è un tipo di roditore.", + "example_sentence_english": "The mouse is a type of rodent.", + "pos": "noun", + "word_frequency": 18642 + }, + { + "word": "roseo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rosy", + "romanization": "roseo", + "example_sentence_native": "Aveva un colorito roseo dopo la passeggiata.", + "example_sentence_english": "He had a rosy complexion after the walk.", + "pos": "adjective", + "word_frequency": 18644 + }, + { + "word": "rublo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruble", + "romanization": "rublo", + "example_sentence_native": "Il rublo è la valuta della Russia.", + "example_sentence_english": "The ruble is the currency of Russia.", + "pos": "noun", + "word_frequency": 18645 + }, + { + "word": "sanzionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sanction", + "romanization": "sanzionare", + "example_sentence_native": "Il governo ha deciso di sanzionare le aziende che non rispettano le norme.", + "example_sentence_english": "The government decided to sanction companies that do not comply with regulations.", + "pos": "verb", + "word_frequency": 18647 + }, + { + "word": "savana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savanna", + "romanization": "savana", + "example_sentence_native": "Molti animali selvatici vivono nella savana africana.", + "example_sentence_english": "Many wild animals live in the African savanna.", + "pos": "noun", + "word_frequency": 18648 + }, + { + "word": "scapolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bachelor", + "romanization": "scapolo", + "example_sentence_native": "Mio fratello è ancora scapolo.", + "example_sentence_english": "My brother is still a bachelor.", + "pos": "noun", + "word_frequency": 18649 + }, + { + "word": "schiantare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to crash", + "romanization": "schiantare", + "example_sentence_native": "L'auto si è schiantata contro un albero.", + "example_sentence_english": "The car crashed into a tree.", + "pos": "verb", + "word_frequency": 18650 + }, + { + "word": "scocciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy", + "romanization": "scocciare", + "example_sentence_native": "Mi scoccia quando la gente arriva in ritardo.", + "example_sentence_english": "It annoys me when people arrive late.", + "pos": "verb", + "word_frequency": 18653 + }, + { + "word": "sconveniente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inappropriate", + "romanization": "sconveniente", + "example_sentence_native": "Il suo comportamento era sconveniente per l'occasione.", + "example_sentence_english": "His behavior was inappropriate for the occasion.", + "pos": "adjective", + "word_frequency": 18654 + }, + { + "word": "sdraiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lying down", + "romanization": "sdraiato", + "example_sentence_native": "Era sdraiato sul divano a leggere un libro.", + "example_sentence_english": "He was lying on the sofa reading a book.", + "pos": "adjective", + "word_frequency": 18656 + }, + { + "word": "serafino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "seraph", + "romanization": "serafino", + "example_sentence_native": "I serafini sono angeli di alto rango.", + "example_sentence_english": "Seraphs are high-ranking angels.", + "pos": "noun", + "word_frequency": 18660 + }, + { + "word": "sfavore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disfavor", + "romanization": "sfavore", + "example_sentence_native": "La proposta è stata accolta con sfavore.", + "example_sentence_english": "The proposal was met with disfavor.", + "pos": "noun", + "word_frequency": 18661 + }, + { + "word": "sfinimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhaustion", + "romanization": "sfinimento", + "example_sentence_native": "Ha lavorato fino allo sfinimento.", + "example_sentence_english": "He worked to the point of exhaustion.", + "pos": "noun", + "word_frequency": 18662 + }, + { + "word": "sincronizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronization", + "romanization": "sincronizzazione", + "example_sentence_native": "La sincronizzazione dei dati è essenziale.", + "example_sentence_english": "Data synchronization is essential.", + "pos": "noun", + "word_frequency": 18663 + }, + { + "word": "soggettività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subjectivity", + "romanization": "soggettività", + "example_sentence_native": "La soggettività dell'arte rende difficile giudicarla.", + "example_sentence_english": "The subjectivity of art makes it difficult to judge.", + "pos": "noun", + "word_frequency": 18667 + }, + { + "word": "sognatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dreamer", + "romanization": "sognatore", + "example_sentence_native": "È sempre stato un grande sognatore.", + "example_sentence_english": "He has always been a great dreamer.", + "pos": "noun", + "word_frequency": 18668 + }, + { + "word": "sonata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonata", + "romanization": "sonata", + "example_sentence_native": "Ha eseguito una bellissima sonata al pianoforte.", + "example_sentence_english": "She performed a beautiful sonata on the piano.", + "pos": "noun", + "word_frequency": 18670 + }, + { + "word": "sovrastante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overlying", + "romanization": "sovrastante", + "example_sentence_native": "La montagna sovrastante dominava il paesaggio.", + "example_sentence_english": "The overlying mountain dominated the landscape.", + "pos": "adjective", + "word_frequency": 18671 + }, + { + "word": "sproporzionato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disproportionate", + "romanization": "sproporzionato", + "example_sentence_native": "La punizione era sproporzionata rispetto al reato.", + "example_sentence_english": "The punishment was disproportionate to the crime.", + "pos": "adjective", + "word_frequency": 18673 + }, + { + "word": "sterzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steering wheel", + "romanization": "sterzo", + "example_sentence_native": "Ha girato lo sterzo per evitare l'ostacolo.", + "example_sentence_english": "He turned the steering wheel to avoid the obstacle.", + "pos": "noun", + "word_frequency": 18674 + }, + { + "word": "stilistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stylistic", + "romanization": "stilistico", + "example_sentence_native": "Il suo approccio stilistico è unico.", + "example_sentence_english": "His stylistic approach is unique.", + "pos": "adjective", + "word_frequency": 18675 + }, + { + "word": "succeduto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "occurred", + "romanization": "succeduto", + "example_sentence_native": "L'evento succeduto ha cambiato tutto.", + "example_sentence_english": "The event that occurred changed everything.", + "pos": "adjective", + "word_frequency": 18676 + }, + { + "word": "summa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sum", + "romanization": "summa", + "example_sentence_native": "La sua opera è una summa del pensiero filosofico moderno.", + "example_sentence_english": "His work is a sum of modern philosophical thought.", + "pos": "noun", + "word_frequency": 18679 + }, + { + "word": "supplente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "substitute (teacher)", + "romanization": "supplente", + "example_sentence_native": "La supplente ha spiegato la lezione molto chiaramente.", + "example_sentence_english": "The substitute teacher explained the lesson very clearly.", + "pos": "noun", + "word_frequency": 18680 + }, + { + "word": "supporter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supporter", + "romanization": "supporter", + "example_sentence_native": "I supporter hanno applaudito la squadra.", + "example_sentence_english": "The supporters applauded the team.", + "pos": "noun", + "word_frequency": 18681 + }, + { + "word": "survival", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "survival", + "romanization": "survival", + "example_sentence_native": "Ha letto un libro sulla survival in montagna.", + "example_sentence_english": "He read a book about mountain survival.", + "pos": "noun", + "word_frequency": 18682 + }, + { + "word": "svelto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quick;nimble", + "romanization": "svelto", + "example_sentence_native": "È un ragazzo molto svelto a capire le cose.", + "example_sentence_english": "He is a very quick boy at understanding things.", + "pos": "adjective", + "word_frequency": 18683 + }, + { + "word": "synth", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synth;synthesizer", + "romanization": "synth", + "example_sentence_native": "Il musicista suonava un vecchio synth analogico.", + "example_sentence_english": "The musician played an old analog synth.", + "pos": "noun", + "word_frequency": 18684 + }, + { + "word": "tassello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tile;piece (of a puzzle)", + "romanization": "tassello", + "example_sentence_native": "Ogni tassello è importante per completare il mosaico.", + "example_sentence_english": "Every piece is important to complete the mosaic.", + "pos": "noun", + "word_frequency": 18687 + }, + { + "word": "terna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trio;set of three", + "romanization": "terna", + "example_sentence_native": "La terna arbitrale è entrata in campo.", + "example_sentence_english": "The trio of referees entered the field.", + "pos": "noun", + "word_frequency": 18688 + }, + { + "word": "totalitarismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "totalitarianism", + "romanization": "totalitarismo", + "example_sentence_native": "Il totalitarismo è una forma di governo autoritaria.", + "example_sentence_english": "Totalitarianism is an authoritarian form of government.", + "pos": "noun", + "word_frequency": 18689 + }, + { + "word": "totalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to total;to amount to", + "romanization": "totalizzare", + "example_sentence_native": "La squadra è riuscita a totalizzare molti punti.", + "example_sentence_english": "The team managed to total many points.", + "pos": "verb", + "word_frequency": 18690 + }, + { + "word": "treccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "braid;plait", + "romanization": "treccia", + "example_sentence_native": "Si è fatta una bella treccia ai capelli.", + "example_sentence_english": "She made a beautiful braid in her hair.", + "pos": "noun", + "word_frequency": 18691 + }, + { + "word": "tridente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trident", + "romanization": "tridente", + "example_sentence_native": "Nettuno è spesso raffigurato con un tridente.", + "example_sentence_english": "Neptune is often depicted with a trident.", + "pos": "noun", + "word_frequency": 18692 + }, + { + "word": "trittico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triptych", + "romanization": "trittico", + "example_sentence_native": "Il museo espone un magnifico trittico medievale.", + "example_sentence_english": "The museum exhibits a magnificent medieval triptych.", + "pos": "noun", + "word_frequency": 18693 + }, + { + "word": "trolley", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trolley;suitcase (with wheels)", + "romanization": "trolley", + "example_sentence_native": "Ho preparato il mio trolley per il viaggio.", + "example_sentence_english": "I packed my trolley for the trip.", + "pos": "noun", + "word_frequency": 18694 + }, + { + "word": "univoco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequivocal;unambiguous", + "romanization": "univoco", + "example_sentence_native": "La risposta deve essere univoca e chiara.", + "example_sentence_english": "The answer must be unequivocal and clear.", + "pos": "adjective", + "word_frequency": 18696 + }, + { + "word": "uvetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raisin", + "romanization": "uvetta", + "example_sentence_native": "Mi piacciono i dolci con l'uvetta.", + "example_sentence_english": "I like desserts with raisins.", + "pos": "noun", + "word_frequency": 18697 + }, + { + "word": "varcare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cross;to pass over", + "romanization": "varcare", + "example_sentence_native": "Non osava varcare la soglia di quella casa.", + "example_sentence_english": "He didn't dare to cross the threshold of that house.", + "pos": "verb", + "word_frequency": 18699 + }, + { + "word": "voodoo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "voodoo", + "romanization": "voodoo", + "example_sentence_native": "Ha studiato le pratiche del voodoo.", + "example_sentence_english": "He studied the practices of voodoo.", + "pos": "noun", + "word_frequency": 18703 + }, + { + "word": "zainetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small backpack;rucksack", + "romanization": "zainetto", + "example_sentence_native": "Il bambino portava il suo zainetto a scuola.", + "example_sentence_english": "The child carried his small backpack to school.", + "pos": "noun", + "word_frequency": 18706 + }, + { + "word": "zeppo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full;packed (to the brim)", + "romanization": "zeppo", + "example_sentence_native": "La stanza era zeppa di gente.", + "example_sentence_english": "The room was packed with people.", + "pos": "adjective", + "word_frequency": 18707 + }, + { + "word": "zeta", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "Z (letter)", + "romanization": "zeta", + "example_sentence_native": "La zeta è l'ultima lettera dell'alfabeto italiano.", + "example_sentence_english": "Z is the last letter of the Italian alphabet.", + "pos": "noun", + "word_frequency": 18708 + }, + { + "word": "accanito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fierce;relentless;avid", + "romanization": "accanito", + "example_sentence_native": "Era un lettore accanito di romanzi gialli.", + "example_sentence_english": "He was an avid reader of detective novels.", + "pos": "adjective", + "word_frequency": 18711 + }, + { + "word": "accortezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shrewdness;caution;foresight", + "romanization": "accortezza", + "example_sentence_native": "Ha agito con grande accortezza per evitare problemi.", + "example_sentence_english": "He acted with great caution to avoid problems.", + "pos": "noun", + "word_frequency": 18712 + }, + { + "word": "addolorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorrowful;grieved", + "romanization": "addolorato", + "example_sentence_native": "Era addolorato per la perdita del suo amico.", + "example_sentence_english": "He was sorrowful for the loss of his friend.", + "pos": "adjective", + "word_frequency": 18713 + }, + { + "word": "andatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gait;pace;speed", + "romanization": "andatura", + "example_sentence_native": "L'andatura del cavallo era elegante.", + "example_sentence_english": "The horse's gait was elegant.", + "pos": "noun", + "word_frequency": 18718 + }, + { + "word": "anglofono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Anglophone;English-speaking", + "romanization": "anglofono", + "example_sentence_native": "Ha vissuto in un paese anglofono per molti anni.", + "example_sentence_english": "He lived in an Anglophone country for many years.", + "pos": "adjective", + "word_frequency": 18719 + }, + { + "word": "antifascismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antifascism", + "romanization": "antifascismo", + "example_sentence_native": "L'antifascismo è un movimento politico che si oppone al fascismo.", + "example_sentence_english": "Antifascism is a political movement that opposes fascism.", + "pos": "noun", + "word_frequency": 18720 + }, + { + "word": "appagante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "satisfying;fulfilling", + "romanization": "appagante", + "example_sentence_native": "È stata un'esperienza davvero appagante.", + "example_sentence_english": "It was a truly satisfying experience.", + "pos": "adjective", + "word_frequency": 18721 + }, + { + "word": "asparago", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "asparagus", + "romanization": "asparago", + "example_sentence_native": "Mi piacciono gli asparagi con il burro.", + "example_sentence_english": "I like asparagus with butter.", + "pos": "noun", + "word_frequency": 18723 + }, + { + "word": "assimilabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assimilable;comparable", + "romanization": "assimilabile", + "example_sentence_native": "Questa informazione è facilmente assimilabile.", + "example_sentence_english": "This information is easily assimilable.", + "pos": "adjective", + "word_frequency": 18724 + }, + { + "word": "asterisco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asterisk", + "romanization": "asterisco", + "example_sentence_native": "Aggiungi un asterisco per indicare una nota.", + "example_sentence_english": "Add an asterisk to indicate a note.", + "pos": "noun", + "word_frequency": 18725 + }, + { + "word": "attribuibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attributable", + "romanization": "attribuibile", + "example_sentence_native": "Il successo è attribuibile al suo duro lavoro.", + "example_sentence_english": "The success is attributable to his hard work.", + "pos": "adjective", + "word_frequency": 18726 + }, + { + "word": "autoritratto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-portrait", + "romanization": "autoritratto", + "example_sentence_native": "L'artista ha dipinto un autoritratto.", + "example_sentence_english": "The artist painted a self-portrait.", + "pos": "noun", + "word_frequency": 18727 + }, + { + "word": "autosufficiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-sufficient", + "romanization": "autosufficiente", + "example_sentence_native": "Vuole diventare completamente autosufficiente.", + "example_sentence_english": "He wants to become completely self-sufficient.", + "pos": "adjective", + "word_frequency": 18728 + }, + { + "word": "avaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "breakdown;damage;fault", + "romanization": "avaria", + "example_sentence_native": "L'aereo ha avuto un'avaria al motore.", + "example_sentence_english": "The plane had an engine breakdown.", + "pos": "noun", + "word_frequency": 18729 + }, + { + "word": "baricentro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barycenter;center of gravity", + "romanization": "baricentro", + "example_sentence_native": "Il baricentro di un oggetto è il suo punto di equilibrio.", + "example_sentence_english": "The barycenter of an object is its point of balance.", + "pos": "noun", + "word_frequency": 18731 + }, + { + "word": "belva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beast;wild animal", + "romanization": "belva", + "example_sentence_native": "Il leone è una belva feroce.", + "example_sentence_english": "The lion is a fierce beast.", + "pos": "noun", + "word_frequency": 18733 + }, + { + "word": "biopsia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biopsy", + "romanization": "biopsia", + "example_sentence_native": "Il medico ha raccomandato una biopsia.", + "example_sentence_english": "The doctor recommended a biopsy.", + "pos": "noun", + "word_frequency": 18734 + }, + { + "word": "birrificio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brewery", + "romanization": "birrificio", + "example_sentence_native": "Abbiamo visitato un birrificio locale.", + "example_sentence_english": "We visited a local brewery.", + "pos": "noun", + "word_frequency": 18736 + }, + { + "word": "brigadiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brigadier;sergeant", + "romanization": "brigadiere", + "example_sentence_native": "Il brigadiere ha condotto l'indagine.", + "example_sentence_english": "The brigadier led the investigation.", + "pos": "noun", + "word_frequency": 18742 + }, + { + "word": "burla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prank;joke;trick", + "romanization": "burla", + "example_sentence_native": "Era solo una burla innocente.", + "example_sentence_english": "It was just an innocent prank.", + "pos": "noun", + "word_frequency": 18743 + }, + { + "word": "cadetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cadet;junior", + "romanization": "cadetto", + "example_sentence_native": "Il cadetto si sta addestrando per diventare un ufficiale.", + "example_sentence_english": "The cadet is training to become an officer.", + "pos": "noun", + "word_frequency": 18744 + }, + { + "word": "campeggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to camp", + "romanization": "campeggiare", + "example_sentence_native": "Ci piace campeggiare in montagna.", + "example_sentence_english": "We like to camp in the mountains.", + "pos": "verb", + "word_frequency": 18746 + }, + { + "word": "caramello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "caramel", + "romanization": "caramello", + "example_sentence_native": "Il gelato al caramello è il mio preferito.", + "example_sentence_english": "Caramel ice cream is my favorite.", + "pos": "noun", + "word_frequency": 18747 + }, + { + "word": "carneficina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slaughter;carnage;massacre", + "romanization": "carneficina", + "example_sentence_native": "La battaglia si trasformò in una carneficina.", + "example_sentence_english": "The battle turned into a slaughter.", + "pos": "noun", + "word_frequency": 18748 + }, + { + "word": "carosello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carousel;merry-go-round", + "romanization": "carosello", + "example_sentence_native": "I bambini adorano andare sul carosello.", + "example_sentence_english": "Children love to go on the carousel.", + "pos": "noun", + "word_frequency": 18749 + }, + { + "word": "castoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beaver", + "romanization": "castoro", + "example_sentence_native": "Il castoro è noto per costruire dighe.", + "example_sentence_english": "The beaver is known for building dams.", + "pos": "noun", + "word_frequency": 18750 + }, + { + "word": "cavalcavia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overpass;flyover", + "romanization": "cavalcavia", + "example_sentence_native": "Il traffico era bloccato sul cavalcavia.", + "example_sentence_english": "Traffic was blocked on the overpass.", + "pos": "noun", + "word_frequency": 18752 + }, + { + "word": "cerotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plaster;band-aid", + "romanization": "cerotto", + "example_sentence_native": "Ho messo un cerotto sul taglio.", + "example_sentence_english": "I put a plaster on the cut.", + "pos": "noun", + "word_frequency": 18756 + }, + { + "word": "ciano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cyan", + "romanization": "ciano", + "example_sentence_native": "Il cielo aveva una sfumatura ciano all'alba.", + "example_sentence_english": "The sky had a cyan hue at dawn.", + "pos": "adjective", + "word_frequency": 18758 + }, + { + "word": "codificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "codification", + "romanization": "codificazione", + "example_sentence_native": "La codificazione delle leggi è un processo complesso.", + "example_sentence_english": "The codification of laws is a complex process.", + "pos": "noun", + "word_frequency": 18761 + }, + { + "word": "concedersi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to allow oneself;to indulge", + "romanization": "concedersi", + "example_sentence_native": "Dopo una settimana di lavoro, mi concedo un po' di riposo.", + "example_sentence_english": "After a week of work, I allow myself some rest.", + "pos": "verb", + "word_frequency": 18764 + }, + { + "word": "confidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confident;trusting", + "romanization": "confidente", + "example_sentence_native": "Era molto confidente nelle sue capacità.", + "example_sentence_english": "He was very confident in his abilities.", + "pos": "adjective", + "word_frequency": 18765 + }, + { + "word": "consolle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "console (gaming;mixing desk)", + "romanization": "consolle", + "example_sentence_native": "Ho comprato una nuova consolle per videogiochi.", + "example_sentence_english": "I bought a new video game console.", + "pos": "noun", + "word_frequency": 18767 + }, + { + "word": "contagiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infected;contaminated", + "romanization": "contagiato", + "example_sentence_native": "Il paziente è risultato contagiato dal virus.", + "example_sentence_english": "The patient tested positive for the virus.", + "pos": "adjective", + "word_frequency": 18768 + }, + { + "word": "continental", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "continental", + "romanization": "continental", + "example_sentence_native": "L'Europa ha un clima prevalentemente continentale.", + "example_sentence_english": "Europe has a predominantly continental climate.", + "pos": "adjective", + "word_frequency": 18769 + }, + { + "word": "contraccezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contraception", + "romanization": "contraccezione", + "example_sentence_native": "La contraccezione è un tema importante per la salute pubblica.", + "example_sentence_english": "Contraception is an important public health issue.", + "pos": "noun", + "word_frequency": 18770 + }, + { + "word": "contropiede", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterattack;counter-move", + "romanization": "contropiede", + "example_sentence_native": "La squadra ha segnato in contropiede.", + "example_sentence_english": "The team scored on a counterattack.", + "pos": "noun", + "word_frequency": 18771 + }, + { + "word": "crocefisso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crucifix", + "romanization": "crocefisso", + "example_sentence_native": "Un crocefisso era appeso al muro.", + "example_sentence_english": "A crucifix was hanging on the wall.", + "pos": "noun", + "word_frequency": 18774 + }, + { + "word": "desolazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "desolation;bleakness", + "romanization": "desolazione", + "example_sentence_native": "Il paesaggio era immerso nella desolazione.", + "example_sentence_english": "The landscape was immersed in desolation.", + "pos": "noun", + "word_frequency": 18783 + }, + { + "word": "digerente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "digestive", + "romanization": "digerente", + "example_sentence_native": "Il sistema digerente è fondamentale per la nutrizione.", + "example_sentence_english": "The digestive system is fundamental for nutrition.", + "pos": "adjective", + "word_frequency": 18784 + }, + { + "word": "dimensionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dimensional", + "romanization": "dimensionale", + "example_sentence_native": "Stiamo studiando la geometria dimensionale.", + "example_sentence_english": "We are studying dimensional geometry.", + "pos": "adjective", + "word_frequency": 18785 + }, + { + "word": "docile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "docile;tame", + "romanization": "docile", + "example_sentence_native": "Il cane era molto docile e amichevole.", + "example_sentence_english": "The dog was very docile and friendly.", + "pos": "adjective", + "word_frequency": 18786 + }, + { + "word": "elettrodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "electrode", + "romanization": "elettrodo", + "example_sentence_native": "L'elettrodo è stato collegato al circuito.", + "example_sentence_english": "The electrode was connected to the circuit.", + "pos": "noun", + "word_frequency": 18790 + }, + { + "word": "elogiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to praise;to commend", + "romanization": "elogiare", + "example_sentence_native": "Il professore ha elogiato il suo lavoro.", + "example_sentence_english": "The professor praised his work.", + "pos": "verb", + "word_frequency": 18792 + }, + { + "word": "emicrania", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "migraine", + "romanization": "emicrania", + "example_sentence_native": "Ho avuto un'emicrania fortissima tutto il giorno.", + "example_sentence_english": "I had a very severe migraine all day.", + "pos": "noun", + "word_frequency": 18793 + }, + { + "word": "equivalenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equivalence", + "romanization": "equivalenza", + "example_sentence_native": "Non c'è un'equivalenza perfetta tra le due lingue.", + "example_sentence_english": "There is no perfect equivalence between the two languages.", + "pos": "noun", + "word_frequency": 18795 + }, + { + "word": "esercitarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to practice;to exercise", + "romanization": "esercitarsi", + "example_sentence_native": "Devo esercitarmi di più per migliorare il mio italiano.", + "example_sentence_english": "I need to practice more to improve my Italian.", + "pos": "verb", + "word_frequency": 18796 + }, + { + "word": "esponenzialmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exponentially", + "romanization": "esponenzialmente", + "example_sentence_native": "La popolazione è cresciuta esponenzialmente.", + "example_sentence_english": "The population grew exponentially.", + "pos": "adverb", + "word_frequency": 18797 + }, + { + "word": "falsariga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guideline", + "romanization": "falsariga", + "example_sentence_native": "Ho usato la falsariga per scrivere il mio saggio.", + "example_sentence_english": "I used the guideline to write my essay.", + "pos": "noun", + "word_frequency": 18800 + }, + { + "word": "fattezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appearance", + "romanization": "fattezza", + "example_sentence_native": "La fattezza del suo viso era molto particolare.", + "example_sentence_english": "The appearance of her face was very peculiar.", + "pos": "noun", + "word_frequency": 18803 + }, + { + "word": "felino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "feline", + "romanization": "felino", + "example_sentence_native": "Ha movimenti molto felini.", + "example_sentence_english": "He has very feline movements.", + "pos": "adjective", + "word_frequency": 18804 + }, + { + "word": "feriale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekday (adj.)", + "romanization": "feriale", + "example_sentence_native": "Durante i giorni feriali, il traffico è intenso.", + "example_sentence_english": "During weekdays, traffic is heavy.", + "pos": "adjective", + "word_frequency": 18805 + }, + { + "word": "fettina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thin slice", + "romanization": "fettina", + "example_sentence_native": "Ho mangiato una fettina di carne.", + "example_sentence_english": "I ate a thin slice of meat.", + "pos": "noun", + "word_frequency": 18806 + }, + { + "word": "figuraccia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bad impression", + "romanization": "figuraccia", + "example_sentence_native": "Ho fatto una figuraccia davanti a tutti.", + "example_sentence_english": "I made a bad impression in front of everyone.", + "pos": "noun", + "word_frequency": 18807 + }, + { + "word": "fischiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to whistle", + "romanization": "fischiare", + "example_sentence_native": "Il vento fischiava tra gli alberi.", + "example_sentence_english": "The wind was whistling through the trees.", + "pos": "verb", + "word_frequency": 18808 + }, + { + "word": "flipper", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pinball machine", + "romanization": "flipper", + "example_sentence_native": "C'era un vecchio flipper nel bar.", + "example_sentence_english": "There was an old pinball machine in the bar.", + "pos": "noun", + "word_frequency": 18809 + }, + { + "word": "fondamentalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamentalist", + "romanization": "fondamentalista", + "example_sentence_native": "È considerato un fondamentalista religioso.", + "example_sentence_english": "He is considered a religious fundamentalist.", + "pos": "noun", + "word_frequency": 18811 + }, + { + "word": "fortino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small fort", + "romanization": "fortino", + "example_sentence_native": "I bambini hanno costruito un fortino nel bosco.", + "example_sentence_english": "The children built a small fort in the woods.", + "pos": "noun", + "word_frequency": 18812 + }, + { + "word": "forzatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forcing", + "romanization": "forzatura", + "example_sentence_native": "La sua interpretazione è una forzatura del testo originale.", + "example_sentence_english": "His interpretation is a forcing of the original text.", + "pos": "noun", + "word_frequency": 18813 + }, + { + "word": "futurismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Futurism", + "romanization": "futurismo", + "example_sentence_native": "Il futurismo è stato un movimento artistico italiano.", + "example_sentence_english": "Futurism was an Italian artistic movement.", + "pos": "noun", + "word_frequency": 18815 + }, + { + "word": "gambo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "stem", + "romanization": "gambo", + "example_sentence_native": "Il gambo del fiore era molto lungo.", + "example_sentence_english": "The stem of the flower was very long.", + "pos": "noun", + "word_frequency": 18816 + }, + { + "word": "geek", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geek", + "romanization": "geek", + "example_sentence_native": "È un vero geek di informatica.", + "example_sentence_english": "He's a real computer geek.", + "pos": "noun", + "word_frequency": 18817 + }, + { + "word": "gendarmeria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gendarmerie", + "romanization": "gendarmeria", + "example_sentence_native": "La gendarmeria è intervenuta per mantenere l'ordine.", + "example_sentence_english": "The gendarmerie intervened to maintain order.", + "pos": "noun", + "word_frequency": 18818 + }, + { + "word": "georgiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Georgian", + "romanization": "georgiano", + "example_sentence_native": "Ha visitato la capitale georgiana.", + "example_sentence_english": "He visited the Georgian capital.", + "pos": "adjective", + "word_frequency": 18820 + }, + { + "word": "ghigliottina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guillotine", + "romanization": "ghigliottina", + "example_sentence_native": "La ghigliottina fu usata durante la Rivoluzione Francese.", + "example_sentence_english": "The guillotine was used during the French Revolution.", + "pos": "noun", + "word_frequency": 18821 + }, + { + "word": "gonfiore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swelling", + "romanization": "gonfiore", + "example_sentence_native": "Ho un gonfiore alla caviglia dopo la caduta.", + "example_sentence_english": "I have a swelling on my ankle after the fall.", + "pos": "noun", + "word_frequency": 18825 + }, + { + "word": "grembiule", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apron", + "romanization": "grembiule", + "example_sentence_native": "Indossava un grembiule mentre cucinava.", + "example_sentence_english": "She wore an apron while cooking.", + "pos": "noun", + "word_frequency": 18827 + }, + { + "word": "hipster", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hipster", + "romanization": "hipster", + "example_sentence_native": "Molti giovani in città si vestono da hipster.", + "example_sentence_english": "Many young people in the city dress like hipsters.", + "pos": "noun", + "word_frequency": 18829 + }, + { + "word": "incenso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "incense", + "romanization": "incenso", + "example_sentence_native": "Il profumo dell'incenso riempiva la stanza.", + "example_sentence_english": "The smell of incense filled the room.", + "pos": "noun", + "word_frequency": 18831 + }, + { + "word": "indipendentista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "independence activist", + "romanization": "indipendentista", + "example_sentence_native": "Il partito indipendentista ha guadagnato molti voti.", + "example_sentence_english": "The independence party gained many votes.", + "pos": "noun", + "word_frequency": 18832 + }, + { + "word": "indo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Indo- (prefix)", + "romanization": "indo", + "example_sentence_native": "Ha studiato le lingue indo-europee.", + "example_sentence_english": "He studied Indo-European languages.", + "pos": "adjective", + "word_frequency": 18833 + }, + { + "word": "ineccepibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreproachable", + "romanization": "ineccepibile", + "example_sentence_native": "La sua condotta è sempre stata ineccepibile.", + "example_sentence_english": "His conduct has always been irreproachable.", + "pos": "adjective", + "word_frequency": 18834 + }, + { + "word": "infermeria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "infirmary", + "romanization": "infermeria", + "example_sentence_native": "Il soldato ferito fu portato in infermeria.", + "example_sentence_english": "The wounded soldier was taken to the infirmary.", + "pos": "noun", + "word_frequency": 18835 + }, + { + "word": "infusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infusion", + "romanization": "infusione", + "example_sentence_native": "Ha ricevuto un'infusione di liquidi.", + "example_sentence_english": "He received an infusion of fluids.", + "pos": "noun", + "word_frequency": 18836 + }, + { + "word": "inibizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inhibition", + "romanization": "inibizione", + "example_sentence_native": "Ha superato le sue inibizioni e ha parlato in pubblico.", + "example_sentence_english": "He overcame his inhibitions and spoke in public.", + "pos": "noun", + "word_frequency": 18837 + }, + { + "word": "interscambio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interchange", + "romanization": "interscambio", + "example_sentence_native": "C'è stato un grande interscambio culturale tra i due paesi.", + "example_sentence_english": "There was a great cultural interchange between the two countries.", + "pos": "noun", + "word_frequency": 18838 + }, + { + "word": "inversamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inversely", + "romanization": "inversamente", + "example_sentence_native": "La pressione è inversamente proporzionale al volume.", + "example_sentence_english": "Pressure is inversely proportional to volume.", + "pos": "adverb", + "word_frequency": 18839 + }, + { + "word": "isteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hysteria", + "romanization": "isteria", + "example_sentence_native": "La notizia ha scatenato un'ondata di isteria tra la folla.", + "example_sentence_english": "The news unleashed a wave of hysteria among the crowd.", + "pos": "noun", + "word_frequency": 18842 + }, + { + "word": "lettiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "litter box", + "romanization": "lettiera", + "example_sentence_native": "Devo pulire la lettiera del gatto ogni giorno.", + "example_sentence_english": "I have to clean the cat's litter box every day.", + "pos": "noun", + "word_frequency": 18850 + }, + { + "word": "lignaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lineage", + "romanization": "lignaggio", + "example_sentence_native": "Il suo lignaggio risale a una nobile famiglia medievale.", + "example_sentence_english": "His lineage dates back to a noble medieval family.", + "pos": "noun", + "word_frequency": 18853 + }, + { + "word": "luccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pike (fish)", + "romanization": "luccio", + "example_sentence_native": "Il luccio è un pesce predatore d'acqua dolce.", + "example_sentence_english": "The pike is a freshwater predatory fish.", + "pos": "noun", + "word_frequency": 18854 + }, + { + "word": "madia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kneading trough;sideboard", + "romanization": "madia", + "example_sentence_native": "La nonna usava la madia per impastare il pane.", + "example_sentence_english": "Grandma used the kneading trough to knead the bread.", + "pos": "noun", + "word_frequency": 18856 + }, + { + "word": "mammina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mommy;little mother", + "romanization": "mammina", + "example_sentence_native": "Il bambino ha chiamato la sua mammina con un sorriso.", + "example_sentence_english": "The child called his mommy with a smile.", + "pos": "noun", + "word_frequency": 18857 + }, + { + "word": "merchandising", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "merchandising", + "romanization": "merchandising", + "example_sentence_native": "Il merchandising dei film è diventato un'industria enorme.", + "example_sentence_english": "Movie merchandising has become a huge industry.", + "pos": "noun", + "word_frequency": 18862 + }, + { + "word": "mestruale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "menstrual", + "romanization": "mestruale", + "example_sentence_native": "Molte donne sperimentano crampi durante il ciclo mestruale.", + "example_sentence_english": "Many women experience cramps during their menstrual cycle.", + "pos": "adjective", + "word_frequency": 18864 + }, + { + "word": "metaforicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metaphorically", + "romanization": "metaforicamente", + "example_sentence_native": "Parlando metaforicamente, era un faro nella tempesta.", + "example_sentence_english": "Metaphorically speaking, he was a beacon in the storm.", + "pos": "adverb", + "word_frequency": 18865 + }, + { + "word": "millennium", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennium", + "romanization": "millennium", + "example_sentence_native": "Siamo entrati in un nuovo millennium all'inizio del 2000.", + "example_sentence_english": "We entered a new millennium at the beginning of 2000.", + "pos": "noun", + "word_frequency": 18866 + }, + { + "word": "miope", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myopic;short-sighted", + "romanization": "miope", + "example_sentence_native": "Sono miope e ho bisogno degli occhiali per vedere bene da lontano.", + "example_sentence_english": "I am myopic and need glasses to see well from a distance.", + "pos": "adjective", + "word_frequency": 18867 + }, + { + "word": "mixer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixer", + "romanization": "mixer", + "example_sentence_native": "Ho usato il mixer per preparare la torta.", + "example_sentence_english": "I used the mixer to prepare the cake.", + "pos": "noun", + "word_frequency": 18869 + }, + { + "word": "murare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wall up;to brick up", + "romanization": "murare", + "example_sentence_native": "Hanno deciso di murare la vecchia finestra per maggiore sicurezza.", + "example_sentence_english": "They decided to wall up the old window for greater security.", + "pos": "verb", + "word_frequency": 18870 + }, + { + "word": "nevrosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurosis", + "romanization": "nevrosi", + "example_sentence_native": "La sua costante ansia era un sintomo di nevrosi.", + "example_sentence_english": "His constant anxiety was a symptom of neurosis.", + "pos": "noun", + "word_frequency": 18873 + }, + { + "word": "organizzatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organizer (female)", + "romanization": "organizzatrice", + "example_sentence_native": "È stata l'organizzatrice principale dell'evento.", + "example_sentence_english": "She was the main organizer of the event.", + "pos": "noun", + "word_frequency": 18878 + }, + { + "word": "ortodossia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orthodoxy", + "romanization": "ortodossia", + "example_sentence_native": "La sua adesione all'ortodossia religiosa era incrollabile.", + "example_sentence_english": "His adherence to religious orthodoxy was unwavering.", + "pos": "noun", + "word_frequency": 18879 + }, + { + "word": "ostetrica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midwife", + "romanization": "ostetrica", + "example_sentence_native": "L'ostetrica ha assistito la donna durante il parto.", + "example_sentence_english": "The midwife assisted the woman during childbirth.", + "pos": "noun", + "word_frequency": 18880 + }, + { + "word": "ottocentesco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nineteenth-century", + "romanization": "ottocentesco", + "example_sentence_native": "Il palazzo ha un'architettura ottocentesca.", + "example_sentence_english": "The palace has a nineteenth-century architecture.", + "pos": "adjective", + "word_frequency": 18881 + }, + { + "word": "ottuso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obtuse;dull;blunt", + "romanization": "ottuso", + "example_sentence_native": "Ha una mente un po' ottusa e non capisce le battute.", + "example_sentence_english": "He has a somewhat dull mind and doesn't understand jokes.", + "pos": "adjective", + "word_frequency": 18882 + }, + { + "word": "pantofola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "slipper", + "romanization": "pantofola", + "example_sentence_native": "Mi metto le pantofole quando torno a casa.", + "example_sentence_english": "I put on my slippers when I come home.", + "pos": "noun", + "word_frequency": 18884 + }, + { + "word": "patrone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patron;boss;master", + "romanization": "patrone", + "example_sentence_native": "Il patrone della nave ha dato gli ordini.", + "example_sentence_english": "The master of the ship gave the orders.", + "pos": "noun", + "word_frequency": 18885 + }, + { + "word": "perfido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfidious;treacherous;wicked", + "romanization": "perfido", + "example_sentence_native": "Il suo sorriso perfido nascondeva cattive intenzioni.", + "example_sentence_english": "His perfidious smile hid bad intentions.", + "pos": "adjective", + "word_frequency": 18886 + }, + { + "word": "perpendicolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perpendicular", + "romanization": "perpendicolare", + "example_sentence_native": "Le due linee sono perpendicolari tra loro.", + "example_sentence_english": "The two lines are perpendicular to each other.", + "pos": "adjective", + "word_frequency": 18887 + }, + { + "word": "perseguibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prosecutable;actionable", + "romanization": "perseguibile", + "example_sentence_native": "L'azione legale è perseguibile secondo la legge.", + "example_sentence_english": "The legal action is prosecutable according to the law.", + "pos": "adjective", + "word_frequency": 18888 + }, + { + "word": "piedino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little foot;foot (affectionate;small)", + "romanization": "piedino", + "example_sentence_native": "Il bambino muoveva i suoi piedini.", + "example_sentence_english": "The baby moved his little feet.", + "pos": "noun", + "word_frequency": 18889 + }, + { + "word": "pitbull", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pitbull", + "romanization": "pitbull", + "example_sentence_native": "Il suo cane è un pitbull molto affettuoso.", + "example_sentence_english": "His dog is a very affectionate pitbull.", + "pos": "noun", + "word_frequency": 18892 + }, + { + "word": "pièce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "play (theater);piece (of art;music)", + "romanization": "pièce", + "example_sentence_native": "Hanno messo in scena una nuova pièce teatrale.", + "example_sentence_english": "They staged a new play.", + "pos": "noun", + "word_frequency": 18893 + }, + { + "word": "pochezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meagerness;pettiness;insignificance", + "romanization": "pochezza", + "example_sentence_native": "La pochezza delle sue argomentazioni era evidente.", + "example_sentence_english": "The meagerness of his arguments was evident.", + "pos": "noun", + "word_frequency": 18894 + }, + { + "word": "polis", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polis;city-state", + "romanization": "polis", + "example_sentence_native": "L'antica Grecia era composta da molte polis indipendenti.", + "example_sentence_english": "Ancient Greece was composed of many independent city-states.", + "pos": "noun", + "word_frequency": 18895 + }, + { + "word": "popoloso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "populous", + "romanization": "popoloso", + "example_sentence_native": "Milano è una città molto popolosa.", + "example_sentence_english": "Milan is a very populous city.", + "pos": "adjective", + "word_frequency": 18896 + }, + { + "word": "portafortuna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "good luck charm;lucky charm", + "romanization": "portafortuna", + "example_sentence_native": "Ho sempre con me il mio portafortuna.", + "example_sentence_english": "I always have my good luck charm with me.", + "pos": "noun", + "word_frequency": 18897 + }, + { + "word": "preambolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preamble;introduction", + "romanization": "preambolo", + "example_sentence_native": "Il preambolo della costituzione è molto importante.", + "example_sentence_english": "The preamble of the constitution is very important.", + "pos": "noun", + "word_frequency": 18899 + }, + { + "word": "quarterback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quarterback", + "romanization": "quarterback", + "example_sentence_native": "Il quarterback ha lanciato un passaggio perfetto.", + "example_sentence_english": "The quarterback threw a perfect pass.", + "pos": "noun", + "word_frequency": 18901 + }, + { + "word": "rampante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rampant;climbing;aspiring", + "romanization": "rampante", + "example_sentence_native": "Il leone rampante è un simbolo araldico.", + "example_sentence_english": "The rampant lion is a heraldic symbol.", + "pos": "adjective", + "word_frequency": 18903 + }, + { + "word": "regalino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small gift;little present", + "romanization": "regalino", + "example_sentence_native": "Ti ho portato un piccolo regalino.", + "example_sentence_english": "I brought you a small gift.", + "pos": "noun", + "word_frequency": 18906 + }, + { + "word": "riavviare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to restart;to reboot", + "romanization": "riavviare", + "example_sentence_native": "Devi riavviare il computer per applicare gli aggiornamenti.", + "example_sentence_english": "You need to restart the computer to apply the updates.", + "pos": "verb", + "word_frequency": 18907 + }, + { + "word": "riempirsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fill up (oneself;itself);to get full", + "romanization": "riempirsi", + "example_sentence_native": "La sala si è riempita di gente.", + "example_sentence_english": "The room filled up with people.", + "pos": "verb", + "word_frequency": 18908 + }, + { + "word": "riscontrabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "verifiable;detectable;ascertainable", + "romanization": "riscontrabile", + "example_sentence_native": "I dati sono riscontrabili nella relazione.", + "example_sentence_english": "The data is verifiable in the report.", + "pos": "adjective", + "word_frequency": 18909 + }, + { + "word": "rivelatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revealing;telling;indicative", + "romanization": "rivelatore", + "example_sentence_native": "Il suo silenzio è stato molto rivelatore.", + "example_sentence_english": "His silence was very revealing.", + "pos": "adjective", + "word_frequency": 18910 + }, + { + "word": "rudimentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rudimentary;basic", + "romanization": "rudimentale", + "example_sentence_native": "Hanno costruito un riparo rudimentale.", + "example_sentence_english": "They built a rudimentary shelter.", + "pos": "adjective", + "word_frequency": 18912 + }, + { + "word": "sanatoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amnesty;regularization;pardon", + "romanization": "sanatoria", + "example_sentence_native": "Il governo ha approvato una sanatoria edilizia.", + "example_sentence_english": "The government approved a building amnesty.", + "pos": "noun", + "word_frequency": 18914 + }, + { + "word": "sardina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sardine", + "romanization": "sardina", + "example_sentence_native": "Mi piacciono le sardine sott'olio.", + "example_sentence_english": "I like sardines in oil.", + "pos": "noun", + "word_frequency": 18916 + }, + { + "word": "schivare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dodge;to avoid;to evade", + "romanization": "schivare", + "example_sentence_native": "È riuscito a schivare il colpo.", + "example_sentence_english": "He managed to dodge the blow.", + "pos": "verb", + "word_frequency": 18919 + }, + { + "word": "sciita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Shiite", + "romanization": "sciita", + "example_sentence_native": "La comunità sciita è una delle principali branche dell'Islam.", + "example_sentence_english": "The Shiite community is one of the main branches of Islam.", + "pos": "noun", + "word_frequency": 18920 + }, + { + "word": "scorciatoia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shortcut", + "romanization": "scorciatoia", + "example_sentence_native": "Abbiamo preso una scorciatoia per arrivare prima.", + "example_sentence_english": "We took a shortcut to arrive sooner.", + "pos": "noun", + "word_frequency": 18921 + }, + { + "word": "seimila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "six thousand", + "romanization": "seimila", + "example_sentence_native": "Ci sono seimila persone in piazza.", + "example_sentence_english": "There are six thousand people in the square.", + "pos": "noun", + "word_frequency": 18922 + }, + { + "word": "sfidante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "challenging", + "romanization": "sfidante", + "example_sentence_native": "Il compito era molto sfidante ma gratificante.", + "example_sentence_english": "The task was very challenging but rewarding.", + "pos": "adjective", + "word_frequency": 18923 + }, + { + "word": "silicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silicon", + "romanization": "silicio", + "example_sentence_native": "Il silicio è un elemento fondamentale per l'elettronica.", + "example_sentence_english": "Silicon is a fundamental element for electronics.", + "pos": "noun", + "word_frequency": 18925 + }, + { + "word": "simbologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symbology", + "romanization": "simbologia", + "example_sentence_native": "La simbologia antica è spesso complessa e ricca di significati.", + "example_sentence_english": "Ancient symbology is often complex and rich in meanings.", + "pos": "noun", + "word_frequency": 18926 + }, + { + "word": "sintetizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synthesized;summarized", + "romanization": "sintetizzato", + "example_sentence_native": "Il rapporto è stato sintetizzato in un breve riassunto.", + "example_sentence_english": "The report was summarized in a brief abstract.", + "pos": "adjective", + "word_frequency": 18927 + }, + { + "word": "sottospecie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subspecies", + "romanization": "sottospecie", + "example_sentence_native": "Alcuni scienziati considerano il lupo grigio una sottospecie del lupo.", + "example_sentence_english": "Some scientists consider the gray wolf a subspecies of the wolf.", + "pos": "noun", + "word_frequency": 18929 + }, + { + "word": "sovranista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sovereignist", + "romanization": "sovranista", + "example_sentence_native": "Il partito ha una posizione fortemente sovranista.", + "example_sentence_english": "The party has a strongly sovereignist position.", + "pos": "adjective", + "word_frequency": 18930 + }, + { + "word": "sponsorizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsored", + "romanization": "sponsorizzato", + "example_sentence_native": "L'evento è stato sponsorizzato da diverse aziende locali.", + "example_sentence_english": "The event was sponsored by several local companies.", + "pos": "adjective", + "word_frequency": 18931 + }, + { + "word": "stolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foolish;stupid", + "romanization": "stolto", + "example_sentence_native": "È stato uno stolto a credere a quelle bugie.", + "example_sentence_english": "He was foolish to believe those lies.", + "pos": "adjective", + "word_frequency": 18934 + }, + { + "word": "strumentalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "instrumentalization;exploitation", + "romanization": "strumentalizzazione", + "example_sentence_native": "La strumentalizzazione della paura è una tattica politica comune.", + "example_sentence_english": "The instrumentalization of fear is a common political tactic.", + "pos": "noun", + "word_frequency": 18935 + }, + { + "word": "sudest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "southeast", + "romanization": "sudest", + "example_sentence_native": "La nostra casa si trova a sudest della città.", + "example_sentence_english": "Our house is located southeast of the city.", + "pos": "noun", + "word_frequency": 18936 + }, + { + "word": "sventolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to wave;to unfurl", + "romanization": "sventolare", + "example_sentence_native": "Il bambino ha iniziato a sventolare la bandiera.", + "example_sentence_english": "The child started to wave the flag.", + "pos": "verb", + "word_frequency": 18939 + }, + { + "word": "tiramisù", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "tiramisu", + "romanization": "tiramisù", + "example_sentence_native": "Il tiramisù è il mio dolce italiano preferito.", + "example_sentence_english": "Tiramisu is my favorite Italian dessert.", + "pos": "noun", + "word_frequency": 18943 + }, + { + "word": "tollerato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerated", + "romanization": "tollerato", + "example_sentence_native": "Questo comportamento non sarà tollerato.", + "example_sentence_english": "This behavior will not be tolerated.", + "pos": "adjective", + "word_frequency": 18945 + }, + { + "word": "trasmettitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmitter", + "romanization": "trasmettitore", + "example_sentence_native": "Il trasmettitore radio invia segnali a lunga distanza.", + "example_sentence_english": "The radio transmitter sends signals over long distances.", + "pos": "noun", + "word_frequency": 18947 + }, + { + "word": "travestimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disguise;costume", + "romanization": "travestimento", + "example_sentence_native": "Indossava un elaborato travestimento per la festa di Carnevale.", + "example_sentence_english": "He wore an elaborate disguise for the Carnival party.", + "pos": "noun", + "word_frequency": 18948 + }, + { + "word": "trentasei", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty-six", + "romanization": "trentasei", + "example_sentence_native": "Il numero trentasei è il doppio di diciotto.", + "example_sentence_english": "The number thirty-six is double eighteen.", + "pos": "noun", + "word_frequency": 18949 + }, + { + "word": "unno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Hun", + "romanization": "unno", + "example_sentence_native": "Gli Unni erano un popolo nomade dell'Asia centrale.", + "example_sentence_english": "The Huns were a nomadic people from Central Asia.", + "pos": "noun", + "word_frequency": 18953 + }, + { + "word": "xenofobo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "xenophobic", + "romanization": "xenofobo", + "example_sentence_native": "Le sue dichiarazioni erano chiaramente xenofobe.", + "example_sentence_english": "His statements were clearly xenophobic.", + "pos": "adjective", + "word_frequency": 18958 + }, + { + "word": "abbinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "matched;paired", + "romanization": "abbinato", + "example_sentence_native": "La borsa è abbinata alle scarpe.", + "example_sentence_english": "The bag is matched with the shoes.", + "pos": "adjective", + "word_frequency": 18960 + }, + { + "word": "accarezzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to caress;to stroke", + "romanization": "accarezzare", + "example_sentence_native": "Le piace accarezzare il suo gatto.", + "example_sentence_english": "She likes to caress her cat.", + "pos": "verb", + "word_frequency": 18961 + }, + { + "word": "accidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accident;darn it!", + "romanization": "accidente", + "example_sentence_native": "Ha avuto un accidente in macchina.", + "example_sentence_english": "He had an accident in the car.", + "pos": "noun", + "word_frequency": 18962 + }, + { + "word": "affacciarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to look out;to lean out", + "romanization": "affacciarsi", + "example_sentence_native": "Si affacciò alla finestra per vedere cosa succedeva.", + "example_sentence_english": "He leaned out the window to see what was happening.", + "pos": "verb", + "word_frequency": 18963 + }, + { + "word": "affisso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poster;notice", + "romanization": "affisso", + "example_sentence_native": "C'era un affisso con le nuove regole.", + "example_sentence_english": "There was a notice with the new rules.", + "pos": "noun", + "word_frequency": 18964 + }, + { + "word": "agiato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "well-off;comfortable", + "romanization": "agiato", + "example_sentence_native": "Viveva una vita agiata.", + "example_sentence_english": "He lived a comfortable life.", + "pos": "adjective", + "word_frequency": 18965 + }, + { + "word": "algerino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Algerian", + "romanization": "algerino", + "example_sentence_native": "È un piatto tipico algerino.", + "example_sentence_english": "It's a typical Algerian dish.", + "pos": "adjective", + "word_frequency": 18966 + }, + { + "word": "ammalarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get sick", + "romanization": "ammalarsi", + "example_sentence_native": "Non voglio ammalarmi prima delle vacanze.", + "example_sentence_english": "I don't want to get sick before the holidays.", + "pos": "verb", + "word_frequency": 18969 + }, + { + "word": "ammodernamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernization", + "romanization": "ammodernamento", + "example_sentence_native": "Il progetto prevede l'ammodernamento della stazione.", + "example_sentence_english": "The project foresees the modernization of the station.", + "pos": "noun", + "word_frequency": 18970 + }, + { + "word": "antichissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very ancient;very old", + "romanization": "antichissimo", + "example_sentence_native": "Questo è un edificio antichissimo.", + "example_sentence_english": "This is a very ancient building.", + "pos": "adjective", + "word_frequency": 18972 + }, + { + "word": "appassionatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "passionately", + "romanization": "appassionatamente", + "example_sentence_native": "Ha cantato appassionatamente.", + "example_sentence_english": "She sang passionately.", + "pos": "adverb", + "word_frequency": 18973 + }, + { + "word": "approdato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landed;arrived (at a destination)", + "romanization": "approdato", + "example_sentence_native": "La nave è approdata al porto.", + "example_sentence_english": "The ship landed at the port.", + "pos": "adjective", + "word_frequency": 18974 + }, + { + "word": "arcivescovile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archiepiscopal", + "romanization": "arcivescovile", + "example_sentence_native": "La residenza arcivescovile è molto antica.", + "example_sentence_english": "The archiepiscopal residence is very old.", + "pos": "adjective", + "word_frequency": 18975 + }, + { + "word": "artrite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arthritis", + "romanization": "artrite", + "example_sentence_native": "Soffre di artrite alle mani.", + "example_sentence_english": "She suffers from arthritis in her hands.", + "pos": "noun", + "word_frequency": 18976 + }, + { + "word": "aspirina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "aspirin", + "romanization": "aspirina", + "example_sentence_native": "Ho preso un'aspirina per il mal di testa.", + "example_sentence_english": "I took an aspirin for my headache.", + "pos": "noun", + "word_frequency": 18978 + }, + { + "word": "autocarro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "truck;lorry", + "romanization": "autocarro", + "example_sentence_native": "L'autocarro trasportava merci pesanti.", + "example_sentence_english": "The truck was carrying heavy goods.", + "pos": "noun", + "word_frequency": 18980 + }, + { + "word": "autovelox", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speed camera", + "romanization": "autovelox", + "example_sentence_native": "Attenzione all'autovelox su questa strada.", + "example_sentence_english": "Watch out for the speed camera on this road.", + "pos": "noun", + "word_frequency": 18981 + }, + { + "word": "azzeccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to guess right;to hit the mark", + "romanization": "azzeccare", + "example_sentence_native": "Hai azzeccato la risposta!", + "example_sentence_english": "You guessed the answer right!", + "pos": "verb", + "word_frequency": 18982 + }, + { + "word": "bardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bard", + "romanization": "bardo", + "example_sentence_native": "Il bardo cantava storie di eroi.", + "example_sentence_english": "The bard sang stories of heroes.", + "pos": "noun", + "word_frequency": 18984 + }, + { + "word": "battistero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baptistery", + "romanization": "battistero", + "example_sentence_native": "Il battistero di Firenze è famoso in tutto il mondo.", + "example_sentence_english": "The Florence Baptistery is famous worldwide.", + "pos": "noun", + "word_frequency": 18986 + }, + { + "word": "boreale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boreal;northern", + "romanization": "boreale", + "example_sentence_native": "L'aurora boreale è uno spettacolo incredibile.", + "example_sentence_english": "The aurora borealis is an incredible spectacle.", + "pos": "adjective", + "word_frequency": 18990 + }, + { + "word": "boschetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grove;small wood", + "romanization": "boschetto", + "example_sentence_native": "C'è un bel boschetto dietro casa.", + "example_sentence_english": "There's a nice grove behind the house.", + "pos": "noun", + "word_frequency": 18991 + }, + { + "word": "calotta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cap;dome;calotte", + "romanization": "calotta", + "example_sentence_native": "La calotta polare si sta sciogliendo.", + "example_sentence_english": "The polar ice cap is melting.", + "pos": "noun", + "word_frequency": 18994 + }, + { + "word": "casata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "noble house;lineage;family", + "romanization": "casata", + "example_sentence_native": "Apparteneva a un'antica casata nobiliare.", + "example_sentence_english": "He belonged to an ancient noble house.", + "pos": "noun", + "word_frequency": 18996 + }, + { + "word": "cercato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sought;looked for", + "romanization": "cercato", + "example_sentence_native": "Era un oggetto molto cercato.", + "example_sentence_english": "It was a much sought-after object.", + "pos": "adjective", + "word_frequency": 18997 + }, + { + "word": "charleston", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Charleston (dance;music)", + "romanization": "charleston", + "example_sentence_native": "Hanno ballato il charleston tutta la notte.", + "example_sentence_english": "They danced the Charleston all night.", + "pos": "noun", + "word_frequency": 18999 + }, + { + "word": "ciclistico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cycling;bicycle (adj.)", + "romanization": "ciclistico", + "example_sentence_native": "L'evento ciclistico annuale attira molti partecipanti.", + "example_sentence_english": "The annual cycling event attracts many participants.", + "pos": "adjective", + "word_frequency": 19004 + }, + { + "word": "ciliegio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cherry tree", + "romanization": "ciliegio", + "example_sentence_native": "In primavera, il ciliegio è coperto di fiori bianchi.", + "example_sentence_english": "In spring, the cherry tree is covered with white blossoms.", + "pos": "noun", + "word_frequency": 19005 + }, + { + "word": "cirillico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cyrillic", + "romanization": "cirillico", + "example_sentence_native": "L'alfabeto cirillico è usato in molte lingue slave.", + "example_sentence_english": "The Cyrillic alphabet is used in many Slavic languages.", + "pos": "adjective", + "word_frequency": 19007 + }, + { + "word": "cobalto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cobalt", + "romanization": "cobalto", + "example_sentence_native": "Il cobalto è un metallo di transizione.", + "example_sentence_english": "Cobalt is a transition metal.", + "pos": "noun", + "word_frequency": 19008 + }, + { + "word": "collassare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to collapse", + "romanization": "collassare", + "example_sentence_native": "L'edificio vecchio minacciava di collassare.", + "example_sentence_english": "The old building threatened to collapse.", + "pos": "verb", + "word_frequency": 19010 + }, + { + "word": "commentato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "commented;annotated", + "romanization": "commentato", + "example_sentence_native": "Abbiamo letto un testo commentato dal professore.", + "example_sentence_english": "We read a text commented on by the professor.", + "pos": "adjective", + "word_frequency": 19011 + }, + { + "word": "comparativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "comparative", + "romanization": "comparativo", + "example_sentence_native": "Il grado comparativo è usato per confrontare due cose.", + "example_sentence_english": "The comparative degree is used to compare two things.", + "pos": "adjective", + "word_frequency": 19012 + }, + { + "word": "composito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "composite", + "romanization": "composito", + "example_sentence_native": "Il materiale composito è leggero e resistente.", + "example_sentence_english": "The composite material is light and strong.", + "pos": "adjective", + "word_frequency": 19013 + }, + { + "word": "consono", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consistent;appropriate;consonant", + "romanization": "consono", + "example_sentence_native": "La sua risposta non era consona alle aspettative.", + "example_sentence_english": "His answer was not consistent with expectations.", + "pos": "adjective", + "word_frequency": 19015 + }, + { + "word": "contrassegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mark;sign;cash on delivery (COD)", + "romanization": "contrassegno", + "example_sentence_native": "Ho pagato il pacco in contrassegno.", + "example_sentence_english": "I paid for the package cash on delivery.", + "pos": "noun", + "word_frequency": 19016 + }, + { + "word": "contrattare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bargain;to negotiate", + "romanization": "contrattare", + "example_sentence_native": "Mi piace contrattare il prezzo al mercato.", + "example_sentence_english": "I like to bargain the price at the market.", + "pos": "verb", + "word_frequency": 19017 + }, + { + "word": "cornicione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cornice;ledge", + "romanization": "cornicione", + "example_sentence_native": "Il piccione si è posato sul cornicione del palazzo.", + "example_sentence_english": "The pigeon landed on the building's cornice.", + "pos": "noun", + "word_frequency": 19019 + }, + { + "word": "costituzionalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "constitutionality", + "romanization": "costituzionalità", + "example_sentence_native": "La Corte ha esaminato la costituzionalità della legge.", + "example_sentence_english": "The Court examined the constitutionality of the law.", + "pos": "noun", + "word_frequency": 19020 + }, + { + "word": "cresima", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "confirmation (sacrament)", + "romanization": "cresima", + "example_sentence_native": "Mia nipote farà la cresima il prossimo mese.", + "example_sentence_english": "My niece will have her confirmation next month.", + "pos": "noun", + "word_frequency": 19021 + }, + { + "word": "crocchetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "croquette", + "romanization": "crocchetta", + "example_sentence_native": "Ho ordinato delle crocchette di patate come antipasto.", + "example_sentence_english": "I ordered some potato croquettes as an appetizer.", + "pos": "noun", + "word_frequency": 19022 + }, + { + "word": "daccapo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "from the beginning;again", + "romanization": "daccapo", + "example_sentence_native": "Dobbiamo ricominciare il lavoro daccapo.", + "example_sentence_english": "We have to start the work again from the beginning.", + "pos": "adverb", + "word_frequency": 19023 + }, + { + "word": "decapitazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decapitation", + "romanization": "decapitazione", + "example_sentence_native": "La decapitazione era una forma di esecuzione medievale.", + "example_sentence_english": "Decapitation was a form of medieval execution.", + "pos": "noun", + "word_frequency": 19026 + }, + { + "word": "denigrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to denigrate;to disparage", + "romanization": "denigrare", + "example_sentence_native": "Non dovresti denigrare il lavoro degli altri.", + "example_sentence_english": "You shouldn't denigrate the work of others.", + "pos": "verb", + "word_frequency": 19027 + }, + { + "word": "desolante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desolate;bleak;disheartening", + "romanization": "desolante", + "example_sentence_native": "Il paesaggio dopo l'incendio era desolante.", + "example_sentence_english": "The landscape after the fire was desolate.", + "pos": "adjective", + "word_frequency": 19029 + }, + { + "word": "discrepanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discrepancy;divergence", + "romanization": "discrepanza", + "example_sentence_native": "C'è una discrepanza tra i due rapporti.", + "example_sentence_english": "There is a discrepancy between the two reports.", + "pos": "noun", + "word_frequency": 19033 + }, + { + "word": "discriminato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discriminated (against)", + "romanization": "discriminato", + "example_sentence_native": "Nessuno dovrebbe sentirsi discriminato per la sua origine.", + "example_sentence_english": "No one should feel discriminated against because of their origin.", + "pos": "adjective", + "word_frequency": 19034 + }, + { + "word": "dualismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dualism", + "romanization": "dualismo", + "example_sentence_native": "Il dualismo mente-corpo è un concetto filosofico.", + "example_sentence_english": "Mind-body dualism is a philosophical concept.", + "pos": "noun", + "word_frequency": 19036 + }, + { + "word": "elisir", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elixir", + "romanization": "elisir", + "example_sentence_native": "Cercavano un elisir di lunga vita.", + "example_sentence_english": "They were looking for an elixir of long life.", + "pos": "noun", + "word_frequency": 19037 + }, + { + "word": "epopea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epic;saga", + "romanization": "epopea", + "example_sentence_native": "L'Odissea è una delle più grandi epopee della letteratura.", + "example_sentence_english": "The Odyssey is one of the greatest epics in literature.", + "pos": "noun", + "word_frequency": 19038 + }, + { + "word": "equipaggiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equipped", + "romanization": "equipaggiato", + "example_sentence_native": "La squadra era ben equipaggiata per la spedizione.", + "example_sentence_english": "The team was well equipped for the expedition.", + "pos": "adjective", + "word_frequency": 19039 + }, + { + "word": "erogato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disbursed;provided", + "romanization": "erogato", + "example_sentence_native": "Il prestito è stato erogato in due tranche.", + "example_sentence_english": "The loan was disbursed in two tranches.", + "pos": "adjective", + "word_frequency": 19040 + }, + { + "word": "espropriazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expropriation", + "romanization": "espropriazione", + "example_sentence_native": "Il governo ha avviato la procedura di espropriazione per pubblica utilità.", + "example_sentence_english": "The government initiated the expropriation procedure for public utility.", + "pos": "noun", + "word_frequency": 19041 + }, + { + "word": "evitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avoided", + "romanization": "evitato", + "example_sentence_native": "Il pericolo è stato evitato grazie alla sua prontezza.", + "example_sentence_english": "The danger was avoided thanks to his readiness.", + "pos": "adjective", + "word_frequency": 19043 + }, + { + "word": "evocato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evoked;summoned", + "romanization": "evocato", + "example_sentence_native": "L'immagine evocata dal racconto era molto vivida.", + "example_sentence_english": "The image evoked by the story was very vivid.", + "pos": "adjective", + "word_frequency": 19044 + }, + { + "word": "exploit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exploit;achievement", + "romanization": "exploit", + "example_sentence_native": "Il suo exploit in campo ha sorpreso tutti.", + "example_sentence_english": "His exploit on the field surprised everyone.", + "pos": "noun", + "word_frequency": 19045 + }, + { + "word": "extraterrestre", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extraterrestrial", + "romanization": "extraterrestre", + "example_sentence_native": "Hanno avvistato un oggetto volante non identificato di origine extraterrestre.", + "example_sentence_english": "They sighted an unidentified flying object of extraterrestrial origin.", + "pos": "adjective", + "word_frequency": 19046 + }, + { + "word": "fattorino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "delivery man;messenger", + "romanization": "fattorino", + "example_sentence_native": "Il fattorino ha consegnato il pacco questa mattina.", + "example_sentence_english": "The delivery man delivered the package this morning.", + "pos": "noun", + "word_frequency": 19047 + }, + { + "word": "ferocemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ferociously;fiercely", + "romanization": "ferocemente", + "example_sentence_native": "Il cane ha abbaiato ferocemente allo sconosciuto.", + "example_sentence_english": "The dog barked ferociously at the stranger.", + "pos": "adverb", + "word_frequency": 19048 + }, + { + "word": "fibrillazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fibrillation;agitation", + "romanization": "fibrillazione", + "example_sentence_native": "Il paziente è in fibrillazione atriale.", + "example_sentence_english": "The patient is in atrial fibrillation.", + "pos": "noun", + "word_frequency": 19049 + }, + { + "word": "finanziere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "financier;financial expert;(member of) financial police", + "romanization": "finanziere", + "example_sentence_native": "Un finanziere esperto può dare ottimi consigli sugli investimenti.", + "example_sentence_english": "An experienced financier can give excellent investment advice.", + "pos": "noun", + "word_frequency": 19050 + }, + { + "word": "folgore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightning;flash", + "romanization": "folgore", + "example_sentence_native": "Un fulmine a ciel sereno, una folgore inaspettata.", + "example_sentence_english": "A bolt from the blue, an unexpected flash.", + "pos": "noun", + "word_frequency": 19052 + }, + { + "word": "fortificato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fortified", + "romanization": "fortificato", + "example_sentence_native": "Il castello era ben fortificato contro gli attacchi.", + "example_sentence_english": "The castle was well fortified against attacks.", + "pos": "adjective", + "word_frequency": 19054 + }, + { + "word": "fotografato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "photographed", + "romanization": "fotografato", + "example_sentence_native": "Il momento è stato fotografato da un turista.", + "example_sentence_english": "The moment was photographed by a tourist.", + "pos": "adjective", + "word_frequency": 19055 + }, + { + "word": "fugace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fleeting;brief", + "romanization": "fugace", + "example_sentence_native": "Ha avuto un incontro fugace con un vecchio amico.", + "example_sentence_english": "He had a fleeting encounter with an old friend.", + "pos": "adjective", + "word_frequency": 19057 + }, + { + "word": "fuoriclasse", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "champion;top-class player;talent", + "romanization": "fuoriclasse", + "example_sentence_native": "È un vero fuoriclasse nel suo sport.", + "example_sentence_english": "He is a true champion in his sport.", + "pos": "noun", + "word_frequency": 19058 + }, + { + "word": "hippie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hippie", + "romanization": "hippie", + "example_sentence_native": "I giovani hippie degli anni '60 cercavano la pace e l'amore.", + "example_sentence_english": "The young hippies of the 60s sought peace and love.", + "pos": "noun", + "word_frequency": 19068 + }, + { + "word": "imperialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperialist", + "romanization": "imperialista", + "example_sentence_native": "Le politiche imperialiste hanno portato a molti conflitti.", + "example_sentence_english": "Imperialist policies led to many conflicts.", + "pos": "adjective", + "word_frequency": 19070 + }, + { + "word": "impugnare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grasp;to challenge (legally)", + "romanization": "impugnare", + "example_sentence_native": "Ha impugnato la spada con decisione.", + "example_sentence_english": "He grasped the sword decisively.", + "pos": "verb", + "word_frequency": 19071 + }, + { + "word": "incendiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "set on fire;burned", + "romanization": "incendiato", + "example_sentence_native": "L'edificio è stato completamente incendiato.", + "example_sentence_english": "The building was completely burned.", + "pos": "adjective", + "word_frequency": 19072 + }, + { + "word": "incolpato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accused;blamed", + "romanization": "incolpato", + "example_sentence_native": "L'uomo incolpato si è dichiarato innocente.", + "example_sentence_english": "The accused man declared himself innocent.", + "pos": "adjective", + "word_frequency": 19073 + }, + { + "word": "incoronato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowned", + "romanization": "incoronato", + "example_sentence_native": "Il re fu incoronato nella cattedrale.", + "example_sentence_english": "The king was crowned in the cathedral.", + "pos": "adjective", + "word_frequency": 19074 + }, + { + "word": "incoscienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unconsciousness;recklessness", + "romanization": "incoscienza", + "example_sentence_native": "Ha perso conoscenza ed è caduto in uno stato di incoscienza.", + "example_sentence_english": "He lost consciousness and fell into a state of unconsciousness.", + "pos": "noun", + "word_frequency": 19075 + }, + { + "word": "incrementato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased;augmented", + "romanization": "incrementato", + "example_sentence_native": "Il numero di visitatori è incrementato nell'ultimo anno.", + "example_sentence_english": "The number of visitors increased in the last year.", + "pos": "adjective", + "word_frequency": 19076 + }, + { + "word": "insaziabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insatiable", + "romanization": "insaziabile", + "example_sentence_native": "Aveva una sete insaziabile di conoscenza.", + "example_sentence_english": "He had an insatiable thirst for knowledge.", + "pos": "adjective", + "word_frequency": 19077 + }, + { + "word": "internazionalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internationalization", + "romanization": "internazionalizzazione", + "example_sentence_native": "L'internazionalizzazione delle imprese è fondamentale per la crescita.", + "example_sentence_english": "The internationalization of businesses is fundamental for growth.", + "pos": "noun", + "word_frequency": 19078 + }, + { + "word": "inventiva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inventiveness;ingenuity", + "romanization": "inventiva", + "example_sentence_native": "La sua inventiva lo ha aiutato a risolvere il problema.", + "example_sentence_english": "His inventiveness helped him solve the problem.", + "pos": "noun", + "word_frequency": 19079 + }, + { + "word": "item", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "item", + "romanization": "item", + "example_sentence_native": "Ho aggiunto un nuovo item alla lista della spesa.", + "example_sentence_english": "I added a new item to the shopping list.", + "pos": "noun", + "word_frequency": 19081 + }, + { + "word": "labrador", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Labrador", + "romanization": "labrador", + "example_sentence_native": "Il mio cane è un bellissimo labrador.", + "example_sentence_english": "My dog is a beautiful Labrador.", + "pos": "noun", + "word_frequency": 19084 + }, + { + "word": "legacy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legacy", + "romanization": "legacy", + "example_sentence_native": "Dobbiamo gestire il sistema legacy.", + "example_sentence_english": "We need to manage the legacy system.", + "pos": "noun", + "word_frequency": 19086 + }, + { + "word": "legiferare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to legislate", + "romanization": "legiferare", + "example_sentence_native": "Il parlamento ha il compito di legiferare.", + "example_sentence_english": "Parliament has the task to legislate.", + "pos": "verb", + "word_frequency": 19087 + }, + { + "word": "loris", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loris (a type of primate)", + "romanization": "loris", + "example_sentence_native": "Il loris è un primate notturno.", + "example_sentence_english": "The loris is a nocturnal primate.", + "pos": "noun", + "word_frequency": 19090 + }, + { + "word": "maccherone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "macaroni", + "romanization": "maccherone", + "example_sentence_native": "Mi piacciono i maccheroni al forno.", + "example_sentence_english": "I like baked macaroni.", + "pos": "noun", + "word_frequency": 19092 + }, + { + "word": "malinteso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "misunderstanding", + "romanization": "malinteso", + "example_sentence_native": "C'è stato un malinteso tra noi.", + "example_sentence_english": "There was a misunderstanding between us.", + "pos": "noun", + "word_frequency": 19094 + }, + { + "word": "marinaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nautical;marine", + "romanization": "marinaro", + "example_sentence_native": "Ha uno stile marinaro molto elegante.", + "example_sentence_english": "He has a very elegant nautical style.", + "pos": "adjective", + "word_frequency": 19098 + }, + { + "word": "mastino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mastiff", + "romanization": "mastino", + "example_sentence_native": "Il mastino è un cane di grossa taglia.", + "example_sentence_english": "The mastiff is a large dog.", + "pos": "noun", + "word_frequency": 19100 + }, + { + "word": "meandro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meander;winding path", + "romanization": "meandro", + "example_sentence_native": "Il fiume segue un meandro attraverso la valle.", + "example_sentence_english": "The river follows a meander through the valley.", + "pos": "noun", + "word_frequency": 19101 + }, + { + "word": "mensilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monthly payment;salary", + "romanization": "mensilità", + "example_sentence_native": "La mensilità dell'affitto è di 800 euro.", + "example_sentence_english": "The monthly rent payment is 800 euros.", + "pos": "noun", + "word_frequency": 19102 + }, + { + "word": "metadato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metadata", + "romanization": "metadato", + "example_sentence_native": "I metadati descrivono il contenuto di un file.", + "example_sentence_english": "Metadata describes the content of a file.", + "pos": "noun", + "word_frequency": 19103 + }, + { + "word": "millesimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thousandth (part);vintage (wine)", + "romanization": "millesimo", + "example_sentence_native": "Questo è il millesimo esemplare prodotto.", + "example_sentence_english": "This is the thousandth specimen produced.", + "pos": "noun", + "word_frequency": 19106 + }, + { + "word": "monarchico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monarchical", + "romanization": "monarchico", + "example_sentence_native": "Il partito monarchico sostiene la monarchia.", + "example_sentence_english": "The monarchical party supports the monarchy.", + "pos": "adjective", + "word_frequency": 19109 + }, + { + "word": "nevicata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snowfall", + "romanization": "nevicata", + "example_sentence_native": "Una forte nevicata ha bloccato le strade.", + "example_sentence_english": "A heavy snowfall blocked the roads.", + "pos": "noun", + "word_frequency": 19112 + }, + { + "word": "ninna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lullaby (as in 'ninna nanna')", + "romanization": "ninna", + "example_sentence_native": "Canta una ninna nanna al bambino.", + "example_sentence_english": "Sing a lullaby to the baby.", + "pos": "noun", + "word_frequency": 19114 + }, + { + "word": "nipotino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little grandson", + "romanization": "nipotino", + "example_sentence_native": "Il mio nipotino è molto vivace.", + "example_sentence_english": "My little grandson is very lively.", + "pos": "noun", + "word_frequency": 19115 + }, + { + "word": "nordovest", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "northwest", + "romanization": "nordovest", + "example_sentence_native": "La casa si trova a nordovest della città.", + "example_sentence_english": "The house is located northwest of the city.", + "pos": "noun", + "word_frequency": 19116 + }, + { + "word": "ombelico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "navel;belly button", + "romanization": "ombelico", + "example_sentence_native": "L'ombelico è al centro dell'addome.", + "example_sentence_english": "The navel is in the center of the abdomen.", + "pos": "noun", + "word_frequency": 19117 + }, + { + "word": "opprimente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppressive", + "romanization": "opprimente", + "example_sentence_native": "L'atmosfera in ufficio era diventata opprimente.", + "example_sentence_english": "The atmosphere in the office had become oppressive.", + "pos": "adjective", + "word_frequency": 19120 + }, + { + "word": "orazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prayer;oration", + "romanization": "orazione", + "example_sentence_native": "Ha recitato un'orazione silenziosa prima di dormire.", + "example_sentence_english": "He recited a silent prayer before sleeping.", + "pos": "noun", + "word_frequency": 19121 + }, + { + "word": "orge", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "orgy", + "romanization": "orge", + "example_sentence_native": "Le antiche feste romane a volte degeneravano in orge.", + "example_sentence_english": "Ancient Roman festivals sometimes degenerated into orgies.", + "pos": "noun", + "word_frequency": 19122 + }, + { + "word": "orgogliosamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proudly", + "romanization": "orgogliosamente", + "example_sentence_native": "Ha mostrato orgogliosamente il suo nuovo diploma.", + "example_sentence_english": "He proudly showed his new diploma.", + "pos": "adverb", + "word_frequency": 19123 + }, + { + "word": "ornamentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ornamental", + "romanization": "ornamentale", + "example_sentence_native": "Il giardino era pieno di piante ornamentali.", + "example_sentence_english": "The garden was full of ornamental plants.", + "pos": "adjective", + "word_frequency": 19125 + }, + { + "word": "ostetricia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obstetrics", + "romanization": "ostetricia", + "example_sentence_native": "Ha scelto di specializzarsi in ostetricia.", + "example_sentence_english": "She chose to specialize in obstetrics.", + "pos": "noun", + "word_frequency": 19127 + }, + { + "word": "outdoor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outdoor (activities;space)", + "romanization": "outdoor", + "example_sentence_native": "Molte persone preferiscono le attività outdoor nel fine settimana.", + "example_sentence_english": "Many people prefer outdoor activities on the weekend.", + "pos": "noun", + "word_frequency": 19128 + }, + { + "word": "pastello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastel;crayon", + "romanization": "pastello", + "example_sentence_native": "Ha disegnato un bellissimo paesaggio con i pastelli.", + "example_sentence_english": "He drew a beautiful landscape with crayons.", + "pos": "noun", + "word_frequency": 19131 + }, + { + "word": "patibolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gallows;scaffold", + "romanization": "patibolo", + "example_sentence_native": "Il condannato fu condotto al patibolo.", + "example_sentence_english": "The condemned man was led to the gallows.", + "pos": "noun", + "word_frequency": 19132 + }, + { + "word": "pervertito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perverted", + "romanization": "pervertito", + "example_sentence_native": "Le sue idee erano considerate pervertite dalla società conservatrice.", + "example_sentence_english": "His ideas were considered perverted by conservative society.", + "pos": "adjective", + "word_frequency": 19135 + }, + { + "word": "pieghevole", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foldable;flexible", + "romanization": "pieghevole", + "example_sentence_native": "Ho comprato una sedia pieghevole per il campeggio.", + "example_sentence_english": "I bought a foldable chair for camping.", + "pos": "adjective", + "word_frequency": 19136 + }, + { + "word": "pigmento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pigment", + "romanization": "pigmento", + "example_sentence_native": "Gli artisti usano pigmenti naturali per i loro colori.", + "example_sentence_english": "Artists use natural pigments for their colors.", + "pos": "noun", + "word_frequency": 19137 + }, + { + "word": "pluviale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rain;pluvial", + "romanization": "pluviale", + "example_sentence_native": "Il sistema di drenaggio pluviale è essenziale per la città.", + "example_sentence_english": "The pluvial drainage system is essential for the city.", + "pos": "adjective", + "word_frequency": 19138 + }, + { + "word": "ponderato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoughtful;considered", + "romanization": "ponderato", + "example_sentence_native": "Ha preso una decisione ponderata dopo aver esaminato tutti i fatti.", + "example_sentence_english": "He made a considered decision after examining all the facts.", + "pos": "adjective", + "word_frequency": 19139 + }, + { + "word": "porsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to place oneself;to pose (a question)", + "romanization": "porsi", + "example_sentence_native": "È importante porsi degli obiettivi chiari.", + "example_sentence_english": "It's important to set clear goals for oneself.", + "pos": "verb", + "word_frequency": 19140 + }, + { + "word": "portabilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portability", + "romanization": "portabilità", + "example_sentence_native": "La portabilità dei dati è una caratteristica fondamentale di questo software.", + "example_sentence_english": "Data portability is a key feature of this software.", + "pos": "noun", + "word_frequency": 19141 + }, + { + "word": "predilezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predilection;preference", + "romanization": "predilezione", + "example_sentence_native": "Ha una predilezione per i dolci al cioccolato.", + "example_sentence_english": "She has a predilection for chocolate desserts.", + "pos": "noun", + "word_frequency": 19142 + }, + { + "word": "prefiggere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set (a goal);to aim for", + "romanization": "prefiggere", + "example_sentence_native": "Si è prefisso di imparare il cinese in un anno.", + "example_sentence_english": "He set himself the goal of learning Chinese in a year.", + "pos": "verb", + "word_frequency": 19143 + }, + { + "word": "prematuramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prematurely", + "romanization": "prematuramente", + "example_sentence_native": "Il progetto è stato interrotto prematuramente.", + "example_sentence_english": "The project was prematurely interrupted.", + "pos": "adverb", + "word_frequency": 19144 + }, + { + "word": "pressa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "press (machine);hurry", + "romanization": "pressa", + "example_sentence_native": "La pressa idraulica è usata per modellare i metalli.", + "example_sentence_english": "The hydraulic press is used to shape metals.", + "pos": "noun", + "word_frequency": 19145 + }, + { + "word": "proiettato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "projected;cast", + "romanization": "proiettato", + "example_sentence_native": "L'ombra dell'albero era proiettata sul muro.", + "example_sentence_english": "The shadow of the tree was cast on the wall.", + "pos": "adjective", + "word_frequency": 19146 + }, + { + "word": "proporzionalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proportionality", + "romanization": "proporzionalità", + "example_sentence_native": "Il principio di proporzionalità è fondamentale nel diritto.", + "example_sentence_english": "The principle of proportionality is fundamental in law.", + "pos": "noun", + "word_frequency": 19147 + }, + { + "word": "pulsione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drive;impulse;urge", + "romanization": "pulsione", + "example_sentence_native": "Le pulsioni umane sono complesse e spesso irrazionali.", + "example_sentence_english": "Human drives are complex and often irrational.", + "pos": "noun", + "word_frequency": 19148 + }, + { + "word": "qualificarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to qualify;to be described as", + "romanization": "qualificarsi", + "example_sentence_native": "La squadra si è qualificata per la finale.", + "example_sentence_english": "The team qualified for the final.", + "pos": "verb", + "word_frequency": 19149 + }, + { + "word": "rave", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rave (party)", + "romanization": "rave", + "example_sentence_native": "Hanno organizzato un rave party nel bosco.", + "example_sentence_english": "They organized a rave party in the woods.", + "pos": "noun", + "word_frequency": 19150 + }, + { + "word": "regata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "regatta", + "romanization": "regata", + "example_sentence_native": "La regata annuale attira molti spettatori.", + "example_sentence_english": "The annual regatta attracts many spectators.", + "pos": "noun", + "word_frequency": 19151 + }, + { + "word": "regolamentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regulated", + "romanization": "regolamentato", + "example_sentence_native": "Il mercato è strettamente regolamentato.", + "example_sentence_english": "The market is strictly regulated.", + "pos": "adjective", + "word_frequency": 19152 + }, + { + "word": "relegato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relegated;confined", + "romanization": "relegato", + "example_sentence_native": "È stato relegato a un ruolo secondario.", + "example_sentence_english": "He was relegated to a secondary role.", + "pos": "adjective", + "word_frequency": 19153 + }, + { + "word": "retribuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paid;remunerated", + "romanization": "retribuito", + "example_sentence_native": "Il lavoro è ben retribuito.", + "example_sentence_english": "The job is well paid.", + "pos": "adjective", + "word_frequency": 19154 + }, + { + "word": "riattivare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reactivate;to restart", + "romanization": "riattivare", + "example_sentence_native": "Dobbiamo riattivare il sistema prima possibile.", + "example_sentence_english": "We need to reactivate the system as soon as possible.", + "pos": "verb", + "word_frequency": 19155 + }, + { + "word": "ricamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embroidery", + "romanization": "ricamo", + "example_sentence_native": "Ha imparato l'arte del ricamo da sua nonna.", + "example_sentence_english": "She learned the art of embroidery from her grandmother.", + "pos": "noun", + "word_frequency": 19156 + }, + { + "word": "rilassamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "relaxation", + "romanization": "rilassamento", + "example_sentence_native": "Dopo una lunga giornata, un momento di rilassamento è essenziale.", + "example_sentence_english": "After a long day, a moment of relaxation is essential.", + "pos": "noun", + "word_frequency": 19157 + }, + { + "word": "rivendita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resale;retail", + "romanization": "rivendita", + "example_sentence_native": "Il negozio si occupa della rivendita di prodotti usati.", + "example_sentence_english": "The shop deals with the resale of used products.", + "pos": "noun", + "word_frequency": 19158 + }, + { + "word": "saccheggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to loot;to plunder", + "romanization": "saccheggiare", + "example_sentence_native": "I soldati hanno saccheggiato il villaggio dopo la battaglia.", + "example_sentence_english": "The soldiers looted the village after the battle.", + "pos": "verb", + "word_frequency": 19164 + }, + { + "word": "sagrestia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacristy", + "romanization": "sagrestia", + "example_sentence_native": "Il prete si è preparato per la messa in sagrestia.", + "example_sentence_english": "The priest prepared for mass in the sacristy.", + "pos": "noun", + "word_frequency": 19165 + }, + { + "word": "saturo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saturated", + "romanization": "saturo", + "example_sentence_native": "Il terreno era saturo d'acqua dopo la pioggia.", + "example_sentence_english": "The ground was saturated with water after the rain.", + "pos": "adjective", + "word_frequency": 19168 + }, + { + "word": "sciacallo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jackal", + "romanization": "sciacallo", + "example_sentence_native": "Lo sciacallo è un animale notturno che vive in branco.", + "example_sentence_english": "The jackal is a nocturnal animal that lives in packs.", + "pos": "noun", + "word_frequency": 19172 + }, + { + "word": "sconcerto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dismay;bewilderment", + "romanization": "sconcerto", + "example_sentence_native": "La notizia ha causato grande sconcerto tra la popolazione.", + "example_sentence_english": "The news caused great dismay among the population.", + "pos": "noun", + "word_frequency": 19174 + }, + { + "word": "siculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Sicilian", + "romanization": "siculo", + "example_sentence_native": "Ha un forte accento siculo.", + "example_sentence_english": "He has a strong Sicilian accent.", + "pos": "adjective", + "word_frequency": 19176 + }, + { + "word": "simulacro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "simulacrum;effigy", + "romanization": "simulacro", + "example_sentence_native": "Il museo espone un antico simulacro di divinità.", + "example_sentence_english": "The museum displays an ancient simulacrum of a deity.", + "pos": "noun", + "word_frequency": 19177 + }, + { + "word": "sinergia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synergy", + "romanization": "sinergia", + "example_sentence_native": "La sinergia tra i due dipartimenti ha migliorato l'efficienza.", + "example_sentence_english": "The synergy between the two departments improved efficiency.", + "pos": "noun", + "word_frequency": 19178 + }, + { + "word": "slalom", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slalom", + "romanization": "slalom", + "example_sentence_native": "Ha vinto la gara di slalom gigante.", + "example_sentence_english": "He won the giant slalom race.", + "pos": "noun", + "word_frequency": 19179 + }, + { + "word": "smash", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smash (tennis)", + "romanization": "smash", + "example_sentence_native": "Il tennista ha eseguito uno smash potente.", + "example_sentence_english": "The tennis player executed a powerful smash.", + "pos": "noun", + "word_frequency": 19180 + }, + { + "word": "smoking", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tuxedo", + "romanization": "smoking", + "example_sentence_native": "Per la serata di gala, indosserà uno smoking nero.", + "example_sentence_english": "For the gala evening, he will wear a black tuxedo.", + "pos": "noun", + "word_frequency": 19181 + }, + { + "word": "soffiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blown (e.g.;glass)", + "romanization": "soffiato", + "example_sentence_native": "Questo vaso è fatto di vetro soffiato a mano.", + "example_sentence_english": "This vase is made of hand-blown glass.", + "pos": "adjective", + "word_frequency": 19183 + }, + { + "word": "soldino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small coin;penny", + "romanization": "soldino", + "example_sentence_native": "Non ho neanche un soldino in tasca.", + "example_sentence_english": "I don't even have a penny in my pocket.", + "pos": "noun", + "word_frequency": 19184 + }, + { + "word": "solubile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soluble", + "romanization": "solubile", + "example_sentence_native": "Lo zucchero è facilmente solubile in acqua calda.", + "example_sentence_english": "Sugar is easily soluble in hot water.", + "pos": "adjective", + "word_frequency": 19185 + }, + { + "word": "sprovvisto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unprovided;lacking", + "romanization": "sprovvisto", + "example_sentence_native": "Si è trovato sprovvisto di denaro durante il viaggio.", + "example_sentence_english": "He found himself unprovided with money during the trip.", + "pos": "adjective", + "word_frequency": 19186 + }, + { + "word": "squisitamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exquisitely", + "romanization": "squisitamente", + "example_sentence_native": "Il piatto era squisitamente preparato e presentato.", + "example_sentence_english": "The dish was exquisitely prepared and presented.", + "pos": "adverb", + "word_frequency": 19187 + }, + { + "word": "stiro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ironing", + "romanization": "stiro", + "example_sentence_native": "Ho un sacco di stiro da fare questo fine settimana.", + "example_sentence_english": "I have a lot of ironing to do this weekend.", + "pos": "noun", + "word_frequency": 19188 + }, + { + "word": "stupidamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stupidly", + "romanization": "stupidamente", + "example_sentence_native": "Ha risposto stupidamente alla domanda.", + "example_sentence_english": "He answered stupidly to the question.", + "pos": "adverb", + "word_frequency": 19189 + }, + { + "word": "suffisso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffix", + "romanization": "suffisso", + "example_sentence_native": "Il suffisso '-mente' forma avverbi in italiano.", + "example_sentence_english": "The suffix '-mente' forms adverbs in Italian.", + "pos": "noun", + "word_frequency": 19190 + }, + { + "word": "survey", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "survey", + "romanization": "survey", + "example_sentence_native": "Abbiamo condotto un survey per raccogliere opinioni.", + "example_sentence_english": "We conducted a survey to gather opinions.", + "pos": "noun", + "word_frequency": 19191 + }, + { + "word": "tabernacolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tabernacle", + "romanization": "tabernacolo", + "example_sentence_native": "Il sacerdote ha aperto il tabernacolo per la comunione.", + "example_sentence_english": "The priest opened the tabernacle for communion.", + "pos": "noun", + "word_frequency": 19192 + }, + { + "word": "teaser", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaser (trailer)", + "romanization": "teaser", + "example_sentence_native": "Hanno rilasciato un breve teaser del nuovo film.", + "example_sentence_english": "They released a short teaser for the new movie.", + "pos": "noun", + "word_frequency": 19196 + }, + { + "word": "tempestivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timely;prompt", + "romanization": "tempestivo", + "example_sentence_native": "È stato un intervento tempestivo che ha evitato il peggio.", + "example_sentence_english": "It was a timely intervention that prevented the worst.", + "pos": "adjective", + "word_frequency": 19197 + }, + { + "word": "tesina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short thesis;research paper", + "romanization": "tesina", + "example_sentence_native": "Devo consegnare la mia tesina entro la fine del mese.", + "example_sentence_english": "I have to submit my research paper by the end of the month.", + "pos": "noun", + "word_frequency": 19198 + }, + { + "word": "tesseramento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "membership registration", + "romanization": "tesseramento", + "example_sentence_native": "Il tesseramento al club è aperto fino a settembre.", + "example_sentence_english": "Membership registration for the club is open until September.", + "pos": "noun", + "word_frequency": 19199 + }, + { + "word": "tirocinante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intern", + "romanization": "tirocinante", + "example_sentence_native": "Il nuovo tirocinante è molto motivato.", + "example_sentence_english": "The new intern is very motivated.", + "pos": "noun", + "word_frequency": 19200 + }, + { + "word": "tollerabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tolerable", + "romanization": "tollerabile", + "example_sentence_native": "Il rumore era appena tollerabile.", + "example_sentence_english": "The noise was barely tolerable.", + "pos": "adjective", + "word_frequency": 19202 + }, + { + "word": "vagante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wandering;stray", + "romanization": "vagante", + "example_sentence_native": "C'era un cane vagante per le strade.", + "example_sentence_english": "There was a stray dog wandering the streets.", + "pos": "adjective", + "word_frequency": 19207 + }, + { + "word": "ventata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gust (of wind);breath (of fresh air)", + "romanization": "ventata", + "example_sentence_native": "Una ventata di aria fresca ha rinfrescato la stanza.", + "example_sentence_english": "A gust of fresh air cooled the room.", + "pos": "noun", + "word_frequency": 19209 + }, + { + "word": "vessillo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "banner;standard", + "romanization": "vessillo", + "example_sentence_native": "Il vessillo sventolava al vento.", + "example_sentence_english": "The banner waved in the wind.", + "pos": "noun", + "word_frequency": 19210 + }, + { + "word": "vincolato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bound;restricted", + "romanization": "vincolato", + "example_sentence_native": "Il budget è vincolato a determinate spese.", + "example_sentence_english": "The budget is restricted to certain expenses.", + "pos": "adjective", + "word_frequency": 19211 + }, + { + "word": "aggradare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to please;to suit", + "romanization": "aggradare", + "example_sentence_native": "Spero che la proposta ti aggradi.", + "example_sentence_english": "I hope the proposal pleases you.", + "pos": "verb", + "word_frequency": 19216 + }, + { + "word": "angolazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "angle;viewpoint", + "romanization": "angolazione", + "example_sentence_native": "Ha scattato la foto da un'angolazione interessante.", + "example_sentence_english": "He took the photo from an interesting angle.", + "pos": "noun", + "word_frequency": 19219 + }, + { + "word": "antitrust", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antitrust", + "romanization": "antitrust", + "example_sentence_native": "L'autorità antitrust ha avviato un'indagine.", + "example_sentence_english": "The antitrust authority has launched an investigation.", + "pos": "noun", + "word_frequency": 19221 + }, + { + "word": "antonomasia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "antonomasia (figure of speech)", + "romanization": "antonomasia", + "example_sentence_native": "È il campione per antonomasia.", + "example_sentence_english": "He is the champion par excellence.", + "pos": "noun", + "word_frequency": 19222 + }, + { + "word": "arsenico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arsenic", + "romanization": "arsenico", + "example_sentence_native": "L'arsenico è un elemento chimico tossico.", + "example_sentence_english": "Arsenic is a toxic chemical element.", + "pos": "noun", + "word_frequency": 19223 + }, + { + "word": "artisticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artistically", + "romanization": "artisticamente", + "example_sentence_native": "È un'opera artisticamente valida.", + "example_sentence_english": "It is an artistically valid work.", + "pos": "adverb", + "word_frequency": 19224 + }, + { + "word": "assaporare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to savor;to taste", + "romanization": "assaporare", + "example_sentence_native": "Mi piace assaporare ogni momento.", + "example_sentence_english": "I like to savor every moment.", + "pos": "verb", + "word_frequency": 19225 + }, + { + "word": "auspicato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hoped for;desired", + "romanization": "auspicato", + "example_sentence_native": "Il risultato auspicato non è arrivato.", + "example_sentence_english": "The hoped-for result did not arrive.", + "pos": "adjective", + "word_frequency": 19227 + }, + { + "word": "australe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "austral;southern", + "romanization": "australe", + "example_sentence_native": "La Croce del Sud è una costellazione australe.", + "example_sentence_english": "The Southern Cross is an austral constellation.", + "pos": "adjective", + "word_frequency": 19228 + }, + { + "word": "automatizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automated", + "romanization": "automatizzato", + "example_sentence_native": "Il processo è stato completamente automatizzato.", + "example_sentence_english": "The process has been completely automated.", + "pos": "adjective", + "word_frequency": 19229 + }, + { + "word": "avocado", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "avocado", + "romanization": "avocado", + "example_sentence_native": "Mi piace l'avocado nell'insalata.", + "example_sentence_english": "I like avocado in salad.", + "pos": "noun", + "word_frequency": 19230 + }, + { + "word": "azzardato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "risky;daring", + "romanization": "azzardato", + "example_sentence_native": "È stata una mossa azzardata.", + "example_sentence_english": "It was a risky move.", + "pos": "adjective", + "word_frequency": 19231 + }, + { + "word": "benedettino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Benedictine (monk or adjective)", + "romanization": "benedettino", + "example_sentence_native": "Ha studiato in un monastero benedettino.", + "example_sentence_english": "He studied in a Benedictine monastery.", + "pos": "noun", + "word_frequency": 19234 + }, + { + "word": "beneficienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charity;benevolence", + "romanization": "beneficienza", + "example_sentence_native": "Ha donato molti soldi in beneficenza.", + "example_sentence_english": "He donated a lot of money to charity.", + "pos": "noun", + "word_frequency": 19235 + }, + { + "word": "boccata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mouthful;puff", + "romanization": "boccata", + "example_sentence_native": "Ha preso una boccata d'aria fresca.", + "example_sentence_english": "He took a breath of fresh air.", + "pos": "noun", + "word_frequency": 19240 + }, + { + "word": "calco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "calque;tracing", + "romanization": "calco", + "example_sentence_native": "La parola \"grattacielo\" è un calco dall'inglese \"skyscraper\".", + "example_sentence_english": "The word \"grattacielo\" is a calque from the English \"skyscraper\".", + "pos": "noun", + "word_frequency": 19245 + }, + { + "word": "canottiera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tank top;vest", + "romanization": "canottiera", + "example_sentence_native": "Indossava una canottiera bianca sotto la camicia.", + "example_sentence_english": "He wore a white tank top under his shirt.", + "pos": "noun", + "word_frequency": 19246 + }, + { + "word": "cantore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "singer;cantor", + "romanization": "cantore", + "example_sentence_native": "Il cantore principale aveva una voce potente.", + "example_sentence_english": "The lead singer had a powerful voice.", + "pos": "noun", + "word_frequency": 19247 + }, + { + "word": "casistica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "casuistry;case law", + "romanization": "casistica", + "example_sentence_native": "La casistica giuridica è molto complessa.", + "example_sentence_english": "Legal casuistry is very complex.", + "pos": "noun", + "word_frequency": 19249 + }, + { + "word": "clausura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloister;enclosure", + "romanization": "clausura", + "example_sentence_native": "Le monache vivono in clausura.", + "example_sentence_english": "The nuns live in enclosure.", + "pos": "noun", + "word_frequency": 19255 + }, + { + "word": "collegiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collegiate;collective", + "romanization": "collegiale", + "example_sentence_native": "Hanno preso una decisione collegiale.", + "example_sentence_english": "They made a collective decision.", + "pos": "adjective", + "word_frequency": 19256 + }, + { + "word": "confinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confined;restricted", + "romanization": "confinato", + "example_sentence_native": "Era confinato nella sua stanza.", + "example_sentence_english": "He was confined to his room.", + "pos": "adjective", + "word_frequency": 19259 + }, + { + "word": "congelatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "freezer", + "romanization": "congelatore", + "example_sentence_native": "Ho messo il gelato nel congelatore.", + "example_sentence_english": "I put the ice cream in the freezer.", + "pos": "noun", + "word_frequency": 19261 + }, + { + "word": "conglomerato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conglomerate;aggregate", + "romanization": "conglomerato", + "example_sentence_native": "Il conglomerato edilizio è un materiale da costruzione.", + "example_sentence_english": "Building conglomerate is a construction material.", + "pos": "noun", + "word_frequency": 19262 + }, + { + "word": "conoscitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connoisseur;expert", + "romanization": "conoscitore", + "example_sentence_native": "È un vero conoscitore d'arte.", + "example_sentence_english": "He is a true art connoisseur.", + "pos": "noun", + "word_frequency": 19263 + }, + { + "word": "conquistatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conqueror", + "romanization": "conquistatore", + "example_sentence_native": "I conquistatori spagnoli arrivarono in America.", + "example_sentence_english": "The Spanish conquerors arrived in America.", + "pos": "noun", + "word_frequency": 19264 + }, + { + "word": "costituirsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to constitute oneself;to surrender", + "romanization": "costituirsi", + "example_sentence_native": "Il sospettato ha deciso di costituirsi alla polizia.", + "example_sentence_english": "The suspect decided to surrender to the police.", + "pos": "verb", + "word_frequency": 19267 + }, + { + "word": "cova", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brooding;incubation", + "romanization": "cova", + "example_sentence_native": "La gallina è in cova.", + "example_sentence_english": "The hen is brooding.", + "pos": "noun", + "word_frequency": 19268 + }, + { + "word": "criptovaluta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cryptocurrency", + "romanization": "criptovaluta", + "example_sentence_native": "Bitcoin è la criptovaluta più conosciuta.", + "example_sentence_english": "Bitcoin is the most well-known cryptocurrency.", + "pos": "noun", + "word_frequency": 19269 + }, + { + "word": "dalia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dahlia", + "romanization": "dalia", + "example_sentence_native": "Le dalie sono fiori molto colorati.", + "example_sentence_english": "Dahlias are very colorful flowers.", + "pos": "noun", + "word_frequency": 19270 + }, + { + "word": "deflazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deflation", + "romanization": "deflazione", + "example_sentence_native": "La deflazione può avere effetti negativi sull'economia.", + "example_sentence_english": "Deflation can have negative effects on the economy.", + "pos": "noun", + "word_frequency": 19272 + }, + { + "word": "disperare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to despair", + "romanization": "disperare", + "example_sentence_native": "Non bisogna mai disperare, anche nei momenti difficili.", + "example_sentence_english": "One must never despair, even in difficult times.", + "pos": "verb", + "word_frequency": 19274 + }, + { + "word": "dittatoriale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dictatorial", + "romanization": "dittatoriale", + "example_sentence_native": "Il suo atteggiamento era troppo dittatoriale.", + "example_sentence_english": "His attitude was too dictatorial.", + "pos": "adjective", + "word_frequency": 19275 + }, + { + "word": "drammaturgia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dramaturgy", + "romanization": "drammaturgia", + "example_sentence_native": "Ha studiato drammaturgia all'università.", + "example_sentence_english": "She studied dramaturgy at university.", + "pos": "noun", + "word_frequency": 19276 + }, + { + "word": "elettrotecnica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electrical engineering", + "romanization": "elettrotecnica", + "example_sentence_native": "Ha una laurea in elettrotecnica.", + "example_sentence_english": "He has a degree in electrical engineering.", + "pos": "noun", + "word_frequency": 19279 + }, + { + "word": "enunciato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "statement;enunciation", + "romanization": "enunciato", + "example_sentence_native": "L'enunciato del problema era chiaro.", + "example_sentence_english": "The statement of the problem was clear.", + "pos": "noun", + "word_frequency": 19281 + }, + { + "word": "erotismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eroticism", + "romanization": "erotismo", + "example_sentence_native": "Il film esplora il tema dell'erotismo.", + "example_sentence_english": "The film explores the theme of eroticism.", + "pos": "noun", + "word_frequency": 19282 + }, + { + "word": "errante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wandering;errant", + "romanization": "errante", + "example_sentence_native": "Era un cavaliere errante in cerca di avventura.", + "example_sentence_english": "He was a wandering knight in search of adventure.", + "pos": "adjective", + "word_frequency": 19283 + }, + { + "word": "esaudire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grant;to fulfill (a wish)", + "romanization": "esaudire", + "example_sentence_native": "Spero che i tuoi desideri si possano esaudire.", + "example_sentence_english": "I hope your wishes can be granted.", + "pos": "verb", + "word_frequency": 19284 + }, + { + "word": "espositivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhibition;expository", + "romanization": "espositivo", + "example_sentence_native": "Lo spazio espositivo era molto grande.", + "example_sentence_english": "The exhibition space was very large.", + "pos": "adjective", + "word_frequency": 19285 + }, + { + "word": "estraneità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strangeness;unfamiliarity;alienation", + "romanization": "estraneità", + "example_sentence_native": "Sentiva un senso di estraneità in quel luogo.", + "example_sentence_english": "He felt a sense of unfamiliarity in that place.", + "pos": "noun", + "word_frequency": 19286 + }, + { + "word": "extravergine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "extra virgin", + "romanization": "extravergine", + "example_sentence_native": "Compra sempre olio d'oliva extravergine.", + "example_sentence_english": "Always buy extra virgin olive oil.", + "pos": "adjective", + "word_frequency": 19287 + }, + { + "word": "figurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "figurative;metaphorical", + "romanization": "figurato", + "example_sentence_native": "Ha usato un linguaggio figurato per descrivere la situazione.", + "example_sentence_english": "He used figurative language to describe the situation.", + "pos": "adjective", + "word_frequency": 19289 + }, + { + "word": "flottiglia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flotilla", + "romanization": "flottiglia", + "example_sentence_native": "Una piccola flottiglia di barche si avvicinava al porto.", + "example_sentence_english": "A small flotilla of boats was approaching the port.", + "pos": "noun", + "word_frequency": 19290 + }, + { + "word": "formattazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "formatting", + "romanization": "formattazione", + "example_sentence_native": "La formattazione del documento è importante per la leggibilità.", + "example_sentence_english": "Document formatting is important for readability.", + "pos": "noun", + "word_frequency": 19291 + }, + { + "word": "franchising", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "franchising", + "romanization": "franchising", + "example_sentence_native": "Ha aperto un negozio in franchising.", + "example_sentence_english": "He opened a franchise store.", + "pos": "noun", + "word_frequency": 19292 + }, + { + "word": "frenetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frantic;frenetic", + "romanization": "frenetico", + "example_sentence_native": "La vita in città può essere molto frenetica.", + "example_sentence_english": "City life can be very frantic.", + "pos": "adjective", + "word_frequency": 19293 + }, + { + "word": "frullatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blender", + "romanization": "frullatore", + "example_sentence_native": "Ho usato il frullatore per fare un frullato di frutta.", + "example_sentence_english": "I used the blender to make a fruit smoothie.", + "pos": "noun", + "word_frequency": 19294 + }, + { + "word": "fuffa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nonsense;fluff;rubbish", + "romanization": "fuffa", + "example_sentence_native": "Non ascoltare quello che dice, è tutta fuffa.", + "example_sentence_english": "Don't listen to what he says, it's all nonsense.", + "pos": "noun", + "word_frequency": 19295 + }, + { + "word": "futile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "futile;pointless", + "romanization": "futile", + "example_sentence_native": "Era una discussione futile che non portava a nulla.", + "example_sentence_english": "It was a futile discussion that led nowhere.", + "pos": "adjective", + "word_frequency": 19296 + }, + { + "word": "gospel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gospel", + "romanization": "gospel", + "example_sentence_native": "Ascoltiamo musica gospel la domenica.", + "example_sentence_english": "We listen to gospel music on Sundays.", + "pos": "noun", + "word_frequency": 19301 + }, + { + "word": "granducato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "grand duchy", + "romanization": "granducato", + "example_sentence_native": "Il Granducato di Toscana era uno stato storico.", + "example_sentence_english": "The Grand Duchy of Tuscany was a historical state.", + "pos": "noun", + "word_frequency": 19302 + }, + { + "word": "granulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "granule;grain", + "romanization": "granulo", + "example_sentence_native": "Il farmaco si presenta sotto forma di granuli.", + "example_sentence_english": "The medicine comes in the form of granules.", + "pos": "noun", + "word_frequency": 19303 + }, + { + "word": "gravare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to weigh heavily;to burden", + "romanization": "gravare", + "example_sentence_native": "Le tasse gravano pesantemente sui cittadini.", + "example_sentence_english": "Taxes weigh heavily on citizens.", + "pos": "verb", + "word_frequency": 19304 + }, + { + "word": "gravitare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to gravitate", + "romanization": "gravitare", + "example_sentence_native": "I pianeti gravitano attorno al sole.", + "example_sentence_english": "Planets gravitate around the sun.", + "pos": "verb", + "word_frequency": 19305 + }, + { + "word": "iceberg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iceberg", + "romanization": "iceberg", + "example_sentence_native": "Solo la punta dell'iceberg è visibile.", + "example_sentence_english": "Only the tip of the iceberg is visible.", + "pos": "noun", + "word_frequency": 19310 + }, + { + "word": "imbarcarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to embark;to board (a ship;plane)", + "romanization": "imbarcarsi", + "example_sentence_native": "Ci siamo imbarcati sulla nave alle 8 del mattino.", + "example_sentence_english": "We boarded the ship at 8 AM.", + "pos": "verb", + "word_frequency": 19313 + }, + { + "word": "immancabilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfailingly;inevitably", + "romanization": "immancabilmente", + "example_sentence_native": "Ogni volta che piove, immancabilmente si allaga la strada.", + "example_sentence_english": "Every time it rains, the street unfailingly floods.", + "pos": "adverb", + "word_frequency": 19314 + }, + { + "word": "impartire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to impart;to give (instructions;lessons)", + "romanization": "impartire", + "example_sentence_native": "Il professore ha impartito le istruzioni per l'esame.", + "example_sentence_english": "The professor imparted the instructions for the exam.", + "pos": "verb", + "word_frequency": 19315 + }, + { + "word": "improntato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "based on;characterized by;marked by", + "romanization": "improntato", + "example_sentence_native": "Il suo stile è improntato alla semplicità.", + "example_sentence_english": "His style is characterized by simplicity.", + "pos": "adjective", + "word_frequency": 19316 + }, + { + "word": "incurabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incurable", + "romanization": "incurabile", + "example_sentence_native": "Purtroppo la malattia è incurabile.", + "example_sentence_english": "Unfortunately, the disease is incurable.", + "pos": "adjective", + "word_frequency": 19317 + }, + { + "word": "indicativamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approximately;as an indication", + "romanization": "indicativamente", + "example_sentence_native": "Il costo è indicativamente di 50 euro.", + "example_sentence_english": "The cost is approximately 50 euros.", + "pos": "adverb", + "word_frequency": 19318 + }, + { + "word": "indifeso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defenseless;helpless", + "romanization": "indifeso", + "example_sentence_native": "Il cucciolo era piccolo e indifeso.", + "example_sentence_english": "The puppy was small and defenseless.", + "pos": "adjective", + "word_frequency": 19319 + }, + { + "word": "indonesiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Indonesian", + "romanization": "indonesiano", + "example_sentence_native": "La cucina indonesiana è molto ricca di sapori.", + "example_sentence_english": "Indonesian cuisine is very rich in flavors.", + "pos": "adjective", + "word_frequency": 19320 + }, + { + "word": "inesperto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inexperienced", + "romanization": "inesperto", + "example_sentence_native": "Era inesperto nel suo nuovo ruolo.", + "example_sentence_english": "He was inexperienced in his new role.", + "pos": "adjective", + "word_frequency": 19321 + }, + { + "word": "inimmaginabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unimaginable", + "romanization": "inimmaginabile", + "example_sentence_native": "La bellezza del paesaggio era inimmaginabile.", + "example_sentence_english": "The beauty of the landscape was unimaginable.", + "pos": "adjective", + "word_frequency": 19322 + }, + { + "word": "interdetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forbidden;speechless", + "romanization": "interdetto", + "example_sentence_native": "Era interdetto dalla sorpresa.", + "example_sentence_english": "He was speechless with surprise.", + "pos": "adjective", + "word_frequency": 19325 + }, + { + "word": "interdisciplinare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interdisciplinary", + "romanization": "interdisciplinare", + "example_sentence_native": "Il progetto richiede un approccio interdisciplinare.", + "example_sentence_english": "The project requires an interdisciplinary approach.", + "pos": "adjective", + "word_frequency": 19326 + }, + { + "word": "interpellato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "questioned;consulted", + "romanization": "interpellato", + "example_sentence_native": "Il testimone interpellato ha fornito nuove informazioni.", + "example_sentence_english": "The questioned witness provided new information.", + "pos": "adjective", + "word_frequency": 19327 + }, + { + "word": "ipnosi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hypnosis", + "romanization": "ipnosi", + "example_sentence_native": "Ha studiato gli effetti dell'ipnosi sulla mente.", + "example_sentence_english": "He studied the effects of hypnosis on the mind.", + "pos": "noun", + "word_frequency": 19330 + }, + { + "word": "islamista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Islamist", + "romanization": "islamista", + "example_sentence_native": "Il dibattito sull'islamista è molto acceso.", + "example_sentence_english": "The debate about the Islamist is very heated.", + "pos": "noun", + "word_frequency": 19331 + }, + { + "word": "isolante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insulating", + "romanization": "isolante", + "example_sentence_native": "Hanno usato materiali isolanti per costruire la casa.", + "example_sentence_english": "They used insulating materials to build the house.", + "pos": "adjective", + "word_frequency": 19332 + }, + { + "word": "laburista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Labour (adj.);Labour Party member (noun)", + "romanization": "laburista", + "example_sentence_native": "Il partito laburista ha vinto le elezioni.", + "example_sentence_english": "The Labour party won the elections.", + "pos": "adjective", + "word_frequency": 19340 + }, + { + "word": "lastrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paving;flat roof terrace", + "romanization": "lastrico", + "example_sentence_native": "Hanno pranzato sul lastrico solare.", + "example_sentence_english": "They had lunch on the flat roof terrace.", + "pos": "noun", + "word_frequency": 19341 + }, + { + "word": "lungimirante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "far-sighted;forward-thinking", + "romanization": "lungimirante", + "example_sentence_native": "Ha preso una decisione lungimirante per il futuro dell'azienda.", + "example_sentence_english": "He made a far-sighted decision for the future of the company.", + "pos": "adjective", + "word_frequency": 19346 + }, + { + "word": "mandamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "district;command", + "romanization": "mandamento", + "example_sentence_native": "Il mandamento di polizia copre diverse città.", + "example_sentence_english": "The police district covers several cities.", + "pos": "noun", + "word_frequency": 19351 + }, + { + "word": "meccanicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mechanically", + "romanization": "meccanicamente", + "example_sentence_native": "Ha eseguito il compito meccanicamente, senza pensarci.", + "example_sentence_english": "He performed the task mechanically, without thinking.", + "pos": "adverb", + "word_frequency": 19353 + }, + { + "word": "meravigliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to amaze;to wonder (reflexive)", + "romanization": "meravigliare", + "example_sentence_native": "La sua bravura mi meraviglia sempre.", + "example_sentence_english": "His skill always amazes me.", + "pos": "verb", + "word_frequency": 19355 + }, + { + "word": "migrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to migrate", + "romanization": "migrare", + "example_sentence_native": "Molti uccelli migrano verso sud in inverno.", + "example_sentence_english": "Many birds migrate south in winter.", + "pos": "verb", + "word_frequency": 19356 + }, + { + "word": "mitragliatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "machine gun", + "romanization": "mitragliatrice", + "example_sentence_native": "Il soldato imbracciava una mitragliatrice.", + "example_sentence_english": "The soldier carried a machine gun.", + "pos": "noun", + "word_frequency": 19359 + }, + { + "word": "modestamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modestly", + "romanization": "modestamente", + "example_sentence_native": "Ha modestamente accettato il complimento.", + "example_sentence_english": "He modestly accepted the compliment.", + "pos": "adverb", + "word_frequency": 19360 + }, + { + "word": "montante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rising;increasing;upward", + "romanization": "montante", + "example_sentence_native": "Il costo montante della vita preoccupa molti.", + "example_sentence_english": "The rising cost of living worries many.", + "pos": "adjective", + "word_frequency": 19362 + }, + { + "word": "motorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motor;motive", + "romanization": "motorio", + "example_sentence_native": "Ha problemi di coordinazione motoria.", + "example_sentence_english": "He has problems with motor coordination.", + "pos": "adjective", + "word_frequency": 19364 + }, + { + "word": "movimentato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lively;eventful;busy", + "romanization": "movimentato", + "example_sentence_native": "La festa è stata molto movimentata.", + "example_sentence_english": "The party was very lively.", + "pos": "adjective", + "word_frequency": 19365 + }, + { + "word": "narcisismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcissism", + "romanization": "narcisismo", + "example_sentence_native": "Il suo narcisismo gli impedisce di vedere i propri difetti.", + "example_sentence_english": "His narcissism prevents him from seeing his own flaws.", + "pos": "noun", + "word_frequency": 19368 + }, + { + "word": "nordamericano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "North American", + "romanization": "nordamericano", + "example_sentence_native": "Ha visitato molti paesi nordamericani.", + "example_sentence_english": "He has visited many North American countries.", + "pos": "adjective", + "word_frequency": 19376 + }, + { + "word": "nostrano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "local;homemade;domestic", + "romanization": "nostrano", + "example_sentence_native": "Preferisco sempre i prodotti nostrani.", + "example_sentence_english": "I always prefer local products.", + "pos": "adjective", + "word_frequency": 19377 + }, + { + "word": "padronale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "master's;owner's;manorial", + "romanization": "padronale", + "example_sentence_native": "La villa padronale è stata restaurata.", + "example_sentence_english": "The master villa has been restored.", + "pos": "adjective", + "word_frequency": 19383 + }, + { + "word": "paralizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paralyzed", + "romanization": "paralizzato", + "example_sentence_native": "È rimasto paralizzato dopo l'incidente.", + "example_sentence_english": "He remained paralyzed after the accident.", + "pos": "adjective", + "word_frequency": 19385 + }, + { + "word": "parato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vestment;drapery;defensive structure", + "romanization": "parato", + "example_sentence_native": "Il sacerdote indossava un ricco parato.", + "example_sentence_english": "The priest wore rich vestments.", + "pos": "noun", + "word_frequency": 19386 + }, + { + "word": "pasticcino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastry;small cake", + "romanization": "pasticcino", + "example_sentence_native": "Ho comprato dei pasticcini per la colazione.", + "example_sentence_english": "I bought some pastries for breakfast.", + "pos": "noun", + "word_frequency": 19389 + }, + { + "word": "pentecoste", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pentecost", + "romanization": "Pentecoste", + "example_sentence_native": "La Pentecoste si celebra cinquanta giorni dopo Pasqua.", + "example_sentence_english": "Pentecost is celebrated fifty days after Easter.", + "pos": "noun", + "word_frequency": 19391 + }, + { + "word": "periodicità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "periodicity;frequency", + "romanization": "periodicità", + "example_sentence_native": "La periodicità degli eventi è importante per la previsione.", + "example_sentence_english": "The periodicity of events is important for forecasting.", + "pos": "noun", + "word_frequency": 19392 + }, + { + "word": "personalizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to personalize;to customize", + "romanization": "personalizzare", + "example_sentence_native": "Puoi personalizzare il tuo profilo online.", + "example_sentence_english": "You can personalize your online profile.", + "pos": "verb", + "word_frequency": 19393 + }, + { + "word": "piolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rung;peg;stake", + "romanization": "piolo", + "example_sentence_native": "Ha rotto un piolo della scala.", + "example_sentence_english": "He broke a rung of the ladder.", + "pos": "noun", + "word_frequency": 19396 + }, + { + "word": "pluriennale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multi-year;perennial", + "romanization": "pluriennale", + "example_sentence_native": "Hanno firmato un contratto pluriennale.", + "example_sentence_english": "They signed a multi-year contract.", + "pos": "adjective", + "word_frequency": 19397 + }, + { + "word": "polisportivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multi-sport;sports complex (adj.)", + "romanization": "polisportivo", + "example_sentence_native": "Il centro polisportivo offre molte attività.", + "example_sentence_english": "The multi-sport center offers many activities.", + "pos": "adjective", + "word_frequency": 19399 + }, + { + "word": "precipizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precipice", + "romanization": "precipizio", + "example_sentence_native": "Stava in piedi sull'orlo del precipizio.", + "example_sentence_english": "He stood on the edge of the precipice.", + "pos": "noun", + "word_frequency": 19400 + }, + { + "word": "prediligere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prefer;to favor", + "romanization": "prediligere", + "example_sentence_native": "Predilige i libri di fantascienza.", + "example_sentence_english": "He prefers science fiction books.", + "pos": "verb", + "word_frequency": 19401 + }, + { + "word": "pretendente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suitor;claimant;contender", + "romanization": "pretendente", + "example_sentence_native": "La principessa aveva molti pretendenti.", + "example_sentence_english": "The princess had many suitors.", + "pos": "noun", + "word_frequency": 19402 + }, + { + "word": "promulgato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "promulgated;enacted", + "romanization": "promulgato", + "example_sentence_native": "La legge è stata promulgata ieri.", + "example_sentence_english": "The law was promulgated yesterday.", + "pos": "adjective", + "word_frequency": 19403 + }, + { + "word": "pupo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "baby;puppet (informal)", + "romanization": "pupo", + "example_sentence_native": "Il pupo dorme nella culla.", + "example_sentence_english": "The baby is sleeping in the crib.", + "pos": "noun", + "word_frequency": 19405 + }, + { + "word": "puzzolente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "smelly;stinky", + "romanization": "puzzolente", + "example_sentence_native": "Le sue scarpe erano davvero puzzolenti.", + "example_sentence_english": "His shoes were really stinky.", + "pos": "adjective", + "word_frequency": 19406 + }, + { + "word": "quindicesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fifteenth", + "romanization": "quindicesimo", + "example_sentence_native": "È arrivato quindicesimo nella gara.", + "example_sentence_english": "He finished fifteenth in the race.", + "pos": "adjective", + "word_frequency": 19407 + }, + { + "word": "radunato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathered;assembled", + "romanization": "radunato", + "example_sentence_native": "La folla si era radunata in piazza.", + "example_sentence_english": "The crowd had gathered in the square.", + "pos": "adjective", + "word_frequency": 19408 + }, + { + "word": "regolarizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regularization", + "romanization": "regolarizzazione", + "example_sentence_native": "Hanno richiesto la regolarizzazione dei documenti.", + "example_sentence_english": "They requested the regularization of the documents.", + "pos": "noun", + "word_frequency": 19412 + }, + { + "word": "riflessivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflective;thoughtful", + "romanization": "riflessivo", + "example_sentence_native": "È una persona molto riflessiva.", + "example_sentence_english": "He is a very thoughtful person.", + "pos": "adjective", + "word_frequency": 19413 + }, + { + "word": "rimediato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remedied;fixed;improvised", + "romanization": "rimediato", + "example_sentence_native": "Abbiamo rimediato una soluzione temporanea.", + "example_sentence_english": "We improvised a temporary solution.", + "pos": "adjective", + "word_frequency": 19414 + }, + { + "word": "rinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reborn", + "romanization": "rinato", + "example_sentence_native": "Si sentiva come rinato dopo la vacanza.", + "example_sentence_english": "He felt reborn after the vacation.", + "pos": "adjective", + "word_frequency": 19415 + }, + { + "word": "ripido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steep", + "romanization": "ripido", + "example_sentence_native": "La strada era molto ripida.", + "example_sentence_english": "The road was very steep.", + "pos": "adjective", + "word_frequency": 19416 + }, + { + "word": "ristabilito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "re-established;restored;recovered", + "romanization": "ristabilito", + "example_sentence_native": "La pace è stata ristabilita nella regione.", + "example_sentence_english": "Peace has been re-established in the region.", + "pos": "adjective", + "word_frequency": 19417 + }, + { + "word": "rivoluzionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revolutionize", + "romanization": "rivoluzionare", + "example_sentence_native": "La nuova tecnologia potrebbe rivoluzionare il settore.", + "example_sentence_english": "The new technology could revolutionize the industry.", + "pos": "verb", + "word_frequency": 19418 + }, + { + "word": "ronco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "snore;grunt;purr (of a cat)", + "romanization": "ronco", + "example_sentence_native": "Il suo ronco era così forte che non riuscivo a dormire.", + "example_sentence_english": "His snore was so loud I couldn't sleep.", + "pos": "noun", + "word_frequency": 19420 + }, + { + "word": "ronzio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buzzing;humming", + "romanization": "ronzio", + "example_sentence_native": "C'era un ronzio costante nell'aria.", + "example_sentence_english": "There was a constant buzzing in the air.", + "pos": "noun", + "word_frequency": 19421 + }, + { + "word": "rotante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotating;revolving", + "romanization": "rotante", + "example_sentence_native": "La sedia rotante è molto comoda.", + "example_sentence_english": "The rotating chair is very comfortable.", + "pos": "adjective", + "word_frequency": 19424 + }, + { + "word": "saldato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "welded;paid off (debt)", + "romanization": "saldato", + "example_sentence_native": "Il debito è stato saldato completamente.", + "example_sentence_english": "The debt has been completely paid off.", + "pos": "adjective", + "word_frequency": 19428 + }, + { + "word": "salice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "willow (tree)", + "romanization": "salice", + "example_sentence_native": "C'è un grande salice piangente vicino al fiume.", + "example_sentence_english": "There is a large weeping willow near the river.", + "pos": "noun", + "word_frequency": 19429 + }, + { + "word": "scarcerato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "released from prison;acquitted", + "romanization": "scarcerato", + "example_sentence_native": "L'imputato è stato scarcerato per mancanza di prove.", + "example_sentence_english": "The defendant was released from prison due to lack of evidence.", + "pos": "adjective", + "word_frequency": 19431 + }, + { + "word": "scavato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dug;hollowed out;gaunt", + "romanization": "scavato", + "example_sentence_native": "Aveva il viso scavato dalla stanchezza.", + "example_sentence_english": "He had a gaunt face from tiredness.", + "pos": "adjective", + "word_frequency": 19432 + }, + { + "word": "scrupolosamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scrupulously;meticulously", + "romanization": "scrupolosamente", + "example_sentence_native": "Ha eseguito il compito scrupolosamente.", + "example_sentence_english": "He performed the task scrupulously.", + "pos": "adverb", + "word_frequency": 19433 + }, + { + "word": "sedano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "celery", + "romanization": "sedano", + "example_sentence_native": "Ho comprato del sedano fresco al mercato.", + "example_sentence_english": "I bought some fresh celery at the market.", + "pos": "noun", + "word_frequency": 19434 + }, + { + "word": "settant'anno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seventy years (old)", + "romanization": "settant'anno", + "example_sentence_native": "Ha festeggiato i suoi settant'anni di vita.", + "example_sentence_english": "He celebrated his seventy years of life.", + "pos": "noun", + "word_frequency": 19435 + }, + { + "word": "settimanalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "weekly", + "romanization": "settimanalmente", + "example_sentence_native": "Ci incontriamo settimanalmente per discutere.", + "example_sentence_english": "We meet weekly to discuss.", + "pos": "adverb", + "word_frequency": 19436 + }, + { + "word": "setto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "septum;partition", + "romanization": "setto", + "example_sentence_native": "Il setto nasale divide le due narici.", + "example_sentence_english": "The nasal septum divides the two nostrils.", + "pos": "noun", + "word_frequency": 19437 + }, + { + "word": "sferico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spherical", + "romanization": "sferico", + "example_sentence_native": "La Terra non è perfettamente sferica.", + "example_sentence_english": "The Earth is not perfectly spherical.", + "pos": "adjective", + "word_frequency": 19438 + }, + { + "word": "sgravio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relief;tax relief;exemption", + "romanization": "sgravio", + "example_sentence_native": "Hanno ottenuto uno sgravio fiscale per le ristrutturazioni.", + "example_sentence_english": "They obtained a tax relief for the renovations.", + "pos": "noun", + "word_frequency": 19439 + }, + { + "word": "shake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shake;milkshake", + "romanization": "shake", + "example_sentence_native": "Vorrei uno shake al cioccolato.", + "example_sentence_english": "I would like a chocolate shake.", + "pos": "noun", + "word_frequency": 19440 + }, + { + "word": "sincronizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "synchronized", + "romanization": "sincronizzato", + "example_sentence_native": "Hanno eseguito un movimento sincronizzato.", + "example_sentence_english": "They performed a synchronized movement.", + "pos": "adjective", + "word_frequency": 19442 + }, + { + "word": "smania", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "craving;urge;frenzy", + "romanization": "smania", + "example_sentence_native": "Aveva una smania di viaggiare.", + "example_sentence_english": "She had a craving to travel.", + "pos": "noun", + "word_frequency": 19443 + }, + { + "word": "snodare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to untie;to articulate;to uncoil", + "romanization": "snodare", + "example_sentence_native": "È difficile snodare questo nodo.", + "example_sentence_english": "It's difficult to untie this knot.", + "pos": "verb", + "word_frequency": 19444 + }, + { + "word": "soccombere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to succumb;to perish", + "romanization": "soccombere", + "example_sentence_native": "Nonostante gli sforzi, ha dovuto soccombere alla malattia.", + "example_sentence_english": "Despite the efforts, he had to succumb to the illness.", + "pos": "verb", + "word_frequency": 19445 + }, + { + "word": "soffocante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffocating;stifling", + "romanization": "soffocante", + "example_sentence_native": "Il caldo era soffocante.", + "example_sentence_english": "The heat was suffocating.", + "pos": "adjective", + "word_frequency": 19446 + }, + { + "word": "soggezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awe;subjection;deference", + "romanization": "soggezione", + "example_sentence_native": "Provava una certa soggezione di fronte al professore.", + "example_sentence_english": "He felt a certain awe in front of the professor.", + "pos": "noun", + "word_frequency": 19447 + }, + { + "word": "sonetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sonnet", + "romanization": "sonetto", + "example_sentence_native": "Ha scritto un bellissimo sonetto d'amore.", + "example_sentence_english": "He wrote a beautiful love sonnet.", + "pos": "noun", + "word_frequency": 19448 + }, + { + "word": "spiga", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ear (of grain);spike", + "romanization": "spiga", + "example_sentence_native": "Il campo di grano era pieno di spighe dorate.", + "example_sentence_english": "The wheat field was full of golden ears.", + "pos": "noun", + "word_frequency": 19450 + }, + { + "word": "sporcare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to dirty;to stain", + "romanization": "sporcare", + "example_sentence_native": "Non sporcare il pavimento appena pulito.", + "example_sentence_english": "Don't dirty the freshly cleaned floor.", + "pos": "verb", + "word_frequency": 19451 + }, + { + "word": "spritz", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spritz (cocktail)", + "romanization": "spritz", + "example_sentence_native": "Ordiniamo uno spritz prima di cena?", + "example_sentence_english": "Shall we order a spritz before dinner?", + "pos": "noun", + "word_frequency": 19452 + }, + { + "word": "spruzzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spray;splash", + "romanization": "spruzzo", + "example_sentence_native": "Un piccolo spruzzo d'acqua mi ha rinfrescato.", + "example_sentence_english": "A small splash of water refreshed me.", + "pos": "noun", + "word_frequency": 19453 + }, + { + "word": "squat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squat (exercise)", + "romanization": "squat", + "example_sentence_native": "Faccio trenta squat ogni mattina.", + "example_sentence_english": "I do thirty squats every morning.", + "pos": "noun", + "word_frequency": 19454 + }, + { + "word": "stagnante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stagnant", + "romanization": "stagnante", + "example_sentence_native": "L'acqua nel lago era stagnante.", + "example_sentence_english": "The water in the lake was stagnant.", + "pos": "adjective", + "word_frequency": 19455 + }, + { + "word": "sterco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dung;manure", + "romanization": "sterco", + "example_sentence_native": "Il contadino usava lo sterco per fertilizzare il campo.", + "example_sentence_english": "The farmer used manure to fertilize the field.", + "pos": "noun", + "word_frequency": 19456 + }, + { + "word": "stratega", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategist", + "romanization": "stratega", + "example_sentence_native": "Era un abile stratega militare.", + "example_sentence_english": "He was a skilled military strategist.", + "pos": "noun", + "word_frequency": 19457 + }, + { + "word": "svelato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unveiled;revealed", + "romanization": "svelato", + "example_sentence_native": "Il mistero è stato finalmente svelato.", + "example_sentence_english": "The mystery has finally been unveiled.", + "pos": "adjective", + "word_frequency": 19459 + }, + { + "word": "tazzina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small cup;espresso cup", + "romanization": "tazzina", + "example_sentence_native": "Mi bevo una tazzina di caffè.", + "example_sentence_english": "I'm drinking a small cup of coffee.", + "pos": "noun", + "word_frequency": 19461 + }, + { + "word": "tempia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "temple (of the head)", + "romanization": "tempia", + "example_sentence_native": "Si è toccato la tempia pensieroso.", + "example_sentence_english": "He touched his temple thoughtfully.", + "pos": "noun", + "word_frequency": 19463 + }, + { + "word": "titolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titled;qualified;renowned", + "romanization": "titolato", + "example_sentence_native": "È un professore molto titolato.", + "example_sentence_english": "He is a very qualified professor.", + "pos": "adjective", + "word_frequency": 19466 + }, + { + "word": "torcere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to twist;to wring", + "romanization": "torcere", + "example_sentence_native": "Ha torcere il panno per strizzarlo.", + "example_sentence_english": "She wrung the cloth to squeeze it.", + "pos": "verb", + "word_frequency": 19468 + }, + { + "word": "transfer", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transfer", + "romanization": "transfer", + "example_sentence_native": "Abbiamo prenotato un transfer dall'aeroporto all'hotel.", + "example_sentence_english": "We booked a transfer from the airport to the hotel.", + "pos": "noun", + "word_frequency": 19469 + }, + { + "word": "trepidazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trepidation;anxiety", + "romanization": "trepidazione", + "example_sentence_native": "Attendiamo con trepidazione i risultati.", + "example_sentence_english": "We await the results with trepidation.", + "pos": "noun", + "word_frequency": 19470 + }, + { + "word": "troncare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cut short;to truncate;to sever", + "romanization": "troncare", + "example_sentence_native": "Hanno dovuto troncare la conversazione.", + "example_sentence_english": "They had to cut the conversation short.", + "pos": "verb", + "word_frequency": 19472 + }, + { + "word": "unilateralmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unilaterally", + "romanization": "unilateralmente", + "example_sentence_native": "Ha deciso unilateralmente di cambiare i piani.", + "example_sentence_english": "He unilaterally decided to change the plans.", + "pos": "adverb", + "word_frequency": 19473 + }, + { + "word": "vendicatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avenger;vindicator", + "romanization": "vendicatore", + "example_sentence_native": "Era visto come un vendicatore della giustizia.", + "example_sentence_english": "He was seen as an avenger of justice.", + "pos": "noun", + "word_frequency": 19476 + }, + { + "word": "violato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "violated;infringed", + "romanization": "violato", + "example_sentence_native": "I suoi diritti sono stati violati.", + "example_sentence_english": "His rights have been violated.", + "pos": "adjective", + "word_frequency": 19479 + }, + { + "word": "zattera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raft", + "romanization": "zattera", + "example_sentence_native": "Hanno costruito una zattera per attraversare il fiume.", + "example_sentence_english": "They built a raft to cross the river.", + "pos": "noun", + "word_frequency": 19485 + }, + { + "word": "aborigeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aboriginal;indigenous person", + "romanization": "aborigeno", + "example_sentence_native": "Gli aborigeni australiani hanno una cultura ricca e antica.", + "example_sentence_english": "Australian aboriginals have a rich and ancient culture.", + "pos": "noun", + "word_frequency": 19486 + }, + { + "word": "accappatoio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathrobe", + "romanization": "accappatoio", + "example_sentence_native": "Dopo la doccia, mi sono messo l'accappatoio.", + "example_sentence_english": "After the shower, I put on my bathrobe.", + "pos": "noun", + "word_frequency": 19487 + }, + { + "word": "acerbo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unripe;sour;immature", + "romanization": "acerbo", + "example_sentence_native": "Il frutto è ancora acerbo, non è pronto per essere mangiato.", + "example_sentence_english": "The fruit is still unripe, it's not ready to be eaten.", + "pos": "adjective", + "word_frequency": 19488 + }, + { + "word": "affettuosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affectionately", + "romanization": "affettuosamente", + "example_sentence_native": "Mi ha salutato affettuosamente con un abbraccio.", + "example_sentence_english": "He greeted me affectionately with a hug.", + "pos": "adverb", + "word_frequency": 19490 + }, + { + "word": "agorà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agora", + "romanization": "agorà", + "example_sentence_native": "L'agorà era il centro della vita pubblica nell'antica Grecia.", + "example_sentence_english": "The agora was the center of public life in ancient Greece.", + "pos": "noun", + "word_frequency": 19491 + }, + { + "word": "aiuola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flowerbed", + "romanization": "aiuola", + "example_sentence_native": "I fiori nell'aiuola sono sbocciati.", + "example_sentence_english": "The flowers in the flowerbed have bloomed.", + "pos": "noun", + "word_frequency": 19492 + }, + { + "word": "allegare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to attach", + "romanization": "allegare", + "example_sentence_native": "Ricorda di allegare il documento alla mail.", + "example_sentence_english": "Remember to attach the document to the email.", + "pos": "verb", + "word_frequency": 19499 + }, + { + "word": "ambrosiano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ambrosian", + "romanization": "ambrosiano", + "example_sentence_native": "Il rito ambrosiano è praticato nella diocesi di Milano.", + "example_sentence_english": "The Ambrosian rite is practiced in the diocese of Milan.", + "pos": "adjective", + "word_frequency": 19500 + }, + { + "word": "anguria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "watermelon", + "romanization": "anguria", + "example_sentence_native": "L'anguria è un frutto rinfrescante in estate.", + "example_sentence_english": "Watermelon is a refreshing fruit in summer.", + "pos": "noun", + "word_frequency": 19501 + }, + { + "word": "aquilone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kite", + "romanization": "aquilone", + "example_sentence_native": "I bambini facevano volare l'aquilone nel parco.", + "example_sentence_english": "The children were flying the kite in the park.", + "pos": "noun", + "word_frequency": 19504 + }, + { + "word": "arcano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arcane;mysterious", + "romanization": "arcano", + "example_sentence_native": "Il vecchio libro conteneva conoscenze arcane.", + "example_sentence_english": "The old book contained arcane knowledge.", + "pos": "adjective", + "word_frequency": 19505 + }, + { + "word": "aromatico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aromatic", + "romanization": "aromatico", + "example_sentence_native": "Le erbe aromatiche danno un sapore speciale al piatto.", + "example_sentence_english": "Aromatic herbs give a special flavor to the dish.", + "pos": "adjective", + "word_frequency": 19506 + }, + { + "word": "artefatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "artifact", + "romanization": "artefatto", + "example_sentence_native": "Hanno scoperto un antico artefatto durante gli scavi.", + "example_sentence_english": "They discovered an ancient artifact during the excavations.", + "pos": "noun", + "word_frequency": 19507 + }, + { + "word": "barman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bartender;barman", + "romanization": "barman", + "example_sentence_native": "Il barman ci ha preparato due cocktail.", + "example_sentence_english": "The bartender prepared two cocktails for us.", + "pos": "noun", + "word_frequency": 19510 + }, + { + "word": "benino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pretty well;fairly good", + "romanization": "benino", + "example_sentence_native": "Come stai? Sto benino, grazie.", + "example_sentence_english": "How are you? I'm pretty well, thanks.", + "pos": "adjective", + "word_frequency": 19514 + }, + { + "word": "bollicina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small bubble;blister", + "romanization": "bollicina", + "example_sentence_native": "C'è una bollicina nell'acqua frizzante.", + "example_sentence_english": "There's a small bubble in the sparkling water.", + "pos": "noun", + "word_frequency": 19517 + }, + { + "word": "bourbon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bourbon", + "romanization": "bourbon", + "example_sentence_native": "Vorrei un bicchiere di bourbon con ghiaccio.", + "example_sentence_english": "I would like a glass of bourbon with ice.", + "pos": "noun", + "word_frequency": 19519 + }, + { + "word": "bozzolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cocoon", + "romanization": "bozzolo", + "example_sentence_native": "Il baco da seta tesse il suo bozzolo.", + "example_sentence_english": "The silkworm weaves its cocoon.", + "pos": "noun", + "word_frequency": 19520 + }, + { + "word": "calabro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Calabrian", + "romanization": "calabro", + "example_sentence_native": "La cucina calabrese è molto piccante.", + "example_sentence_english": "Calabrian cuisine is very spicy.", + "pos": "adjective", + "word_frequency": 19530 + }, + { + "word": "calpestato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trampled;trodden", + "romanization": "calpestato", + "example_sentence_native": "L'erba era calpestata dopo il concerto.", + "example_sentence_english": "The grass was trampled after the concert.", + "pos": "adjective", + "word_frequency": 19531 + }, + { + "word": "cassone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large chest;trunk;skip", + "romanization": "cassone", + "example_sentence_native": "Abbiamo messo i vecchi giocattoli nel cassone.", + "example_sentence_english": "We put the old toys in the large chest.", + "pos": "noun", + "word_frequency": 19532 + }, + { + "word": "cecina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chickpea pancake", + "romanization": "cecina", + "example_sentence_native": "La cecina è una specialità toscana.", + "example_sentence_english": "Cecina is a Tuscan specialty.", + "pos": "noun", + "word_frequency": 19533 + }, + { + "word": "cellulite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cellulite", + "romanization": "cellulite", + "example_sentence_native": "Molte persone cercano rimedi per la cellulite.", + "example_sentence_english": "Many people look for remedies for cellulite.", + "pos": "noun", + "word_frequency": 19534 + }, + { + "word": "cheesecake", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheesecake", + "romanization": "cheesecake", + "example_sentence_native": "Mi piace molto la cheesecake ai frutti di bosco.", + "example_sentence_english": "I really like berry cheesecake.", + "pos": "noun", + "word_frequency": 19537 + }, + { + "word": "cimentare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to try;to attempt;to challenge oneself", + "romanization": "cimentare", + "example_sentence_native": "Si è cimentato in una nuova impresa.", + "example_sentence_english": "He challenged himself with a new endeavor.", + "pos": "verb", + "word_frequency": 19538 + }, + { + "word": "circonvallazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ring road;bypass", + "romanization": "circonvallazione", + "example_sentence_native": "Abbiamo preso la circonvallazione per evitare il traffico del centro.", + "example_sentence_english": "We took the ring road to avoid city center traffic.", + "pos": "noun", + "word_frequency": 19539 + }, + { + "word": "compasso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compass (for drawing circles)", + "romanization": "compasso", + "example_sentence_native": "Ho usato il compasso per disegnare un cerchio perfetto.", + "example_sentence_english": "I used the compass to draw a perfect circle.", + "pos": "noun", + "word_frequency": 19541 + }, + { + "word": "connettore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connector", + "romanization": "connettore", + "example_sentence_native": "Ho bisogno di un nuovo connettore USB.", + "example_sentence_english": "I need a new USB connector.", + "pos": "noun", + "word_frequency": 19542 + }, + { + "word": "consonante", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "consonant", + "romanization": "consonante", + "example_sentence_native": "La 'b' è una consonante.", + "example_sentence_english": "'B' is a consonant.", + "pos": "noun", + "word_frequency": 19544 + }, + { + "word": "conteso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disputed;contested", + "romanization": "conteso", + "example_sentence_native": "Il territorio è stato a lungo conteso tra i due paesi.", + "example_sentence_english": "The territory has long been disputed between the two countries.", + "pos": "adjective", + "word_frequency": 19545 + }, + { + "word": "copra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "copra (dried coconut kernel)", + "romanization": "copra", + "example_sentence_native": "La copra è la polpa essiccata della noce di cocco.", + "example_sentence_english": "Copra is the dried flesh of the coconut.", + "pos": "noun", + "word_frequency": 19546 + }, + { + "word": "corollario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corollary", + "romanization": "corollario", + "example_sentence_native": "La sua conclusione è un corollario logico delle premesse.", + "example_sentence_english": "His conclusion is a logical corollary of the premises.", + "pos": "noun", + "word_frequency": 19548 + }, + { + "word": "coronamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crowning;culmination;completion", + "romanization": "coronamento", + "example_sentence_native": "La vittoria è stata il coronamento di anni di duro lavoro.", + "example_sentence_english": "The victory was the culmination of years of hard work.", + "pos": "noun", + "word_frequency": 19549 + }, + { + "word": "correttivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corrective", + "romanization": "correttivo", + "example_sentence_native": "Sono necessarie misure correttive per migliorare la situazione.", + "example_sentence_english": "Corrective measures are necessary to improve the situation.", + "pos": "adjective", + "word_frequency": 19550 + }, + { + "word": "coupé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coupé (car)", + "romanization": "coupé", + "example_sentence_native": "Ha comprato una nuova auto sportiva, una coupé rossa.", + "example_sentence_english": "He bought a new sports car, a red coupé.", + "pos": "noun", + "word_frequency": 19551 + }, + { + "word": "crasso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gross;crude;thick (e.g.;gross error)", + "romanization": "crasso", + "example_sentence_native": "Ha commesso un errore crasso.", + "example_sentence_english": "He made a gross error.", + "pos": "adjective", + "word_frequency": 19552 + }, + { + "word": "curiosare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to browse;to snoop;to poke around", + "romanization": "curiosare", + "example_sentence_native": "Mi piace curiosare nei mercatini dell'antiquariato.", + "example_sentence_english": "I like to browse in antique markets.", + "pos": "verb", + "word_frequency": 19553 + }, + { + "word": "deforestazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deforestation", + "romanization": "deforestazione", + "example_sentence_native": "La deforestazione è un grave problema ambientale.", + "example_sentence_english": "Deforestation is a serious environmental problem.", + "pos": "noun", + "word_frequency": 19558 + }, + { + "word": "demenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idiotic;nonsensical", + "romanization": "demenziale", + "example_sentence_native": "Quel film era così demenziale che non sono riuscito a prenderlo sul serio.", + "example_sentence_english": "That movie was so idiotic that I couldn't take it seriously.", + "pos": "adjective", + "word_frequency": 19564 + }, + { + "word": "diminutivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diminutive", + "romanization": "diminutivo", + "example_sentence_native": "\"Casetta\" è il diminutivo di \"casa\".", + "example_sentence_english": "\"Casetta\" is the diminutive of \"casa\".", + "pos": "adjective", + "word_frequency": 19566 + }, + { + "word": "dimissionario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resigning;outgoing", + "romanization": "dimissionario", + "example_sentence_native": "Il presidente dimissionario ha tenuto il suo discorso d'addio.", + "example_sentence_english": "The resigning president gave his farewell speech.", + "pos": "adjective", + "word_frequency": 19567 + }, + { + "word": "dirigenziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "managerial;executive", + "romanization": "dirigenziale", + "example_sentence_native": "Ha ottenuto una posizione dirigenziale nell'azienda.", + "example_sentence_english": "He obtained a managerial position in the company.", + "pos": "adjective", + "word_frequency": 19568 + }, + { + "word": "disimpegno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disengagement;detachment", + "romanization": "disimpegno", + "example_sentence_native": "Dopo una settimana intensa, cercava un momento di disimpegno.", + "example_sentence_english": "After an intense week, he was looking for a moment of detachment.", + "pos": "noun", + "word_frequency": 19569 + }, + { + "word": "domare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to tame;to subdue", + "romanization": "domare", + "example_sentence_native": "È difficile domare un cavallo selvaggio.", + "example_sentence_english": "It's difficult to tame a wild horse.", + "pos": "verb", + "word_frequency": 19571 + }, + { + "word": "edito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "published;edited", + "romanization": "edito", + "example_sentence_native": "Il suo ultimo romanzo è stato edito da una casa editrice importante.", + "example_sentence_english": "His latest novel was published by an important publishing house.", + "pos": "adjective", + "word_frequency": 19573 + }, + { + "word": "epigrafe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epigraph;inscription", + "romanization": "epigrafe", + "example_sentence_native": "L'antica epigrafe sulla tomba era quasi illeggibile.", + "example_sentence_english": "The ancient inscription on the tomb was almost illegible.", + "pos": "noun", + "word_frequency": 19575 + }, + { + "word": "espanso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expanded;foamed", + "romanization": "espanso", + "example_sentence_native": "Il polistirolo espanso è usato per l'isolamento.", + "example_sentence_english": "Expanded polystyrene is used for insulation.", + "pos": "adjective", + "word_frequency": 19577 + }, + { + "word": "esproprio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expropriation;compulsory purchase", + "romanization": "esproprio", + "example_sentence_native": "Il governo ha annunciato l'esproprio di alcuni terreni per costruire la nuova strada.", + "example_sentence_english": "The government announced the expropriation of some land to build the new road.", + "pos": "noun", + "word_frequency": 19578 + }, + { + "word": "fabbricante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturer;maker", + "romanization": "fabbricante", + "example_sentence_native": "Il fabbricante di automobili ha richiamato i veicoli difettosi.", + "example_sentence_english": "The car manufacturer recalled the defective vehicles.", + "pos": "noun", + "word_frequency": 19579 + }, + { + "word": "fesseria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;foolishness", + "romanization": "fesseria", + "example_sentence_native": "Non dire fesserie, è una cosa seria!", + "example_sentence_english": "Don't talk nonsense, it's a serious matter!", + "pos": "noun", + "word_frequency": 19584 + }, + { + "word": "fioretto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foil (fencing);small sacrifice", + "romanization": "fioretto", + "example_sentence_native": "Ha fatto un fioretto per la Quaresima.", + "example_sentence_english": "He made a small sacrifice for Lent.", + "pos": "noun", + "word_frequency": 19586 + }, + { + "word": "flirtare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flirt", + "romanization": "flirtare", + "example_sentence_native": "Gli piace flirtare con le ragazze.", + "example_sentence_english": "He likes to flirt with girls.", + "pos": "verb", + "word_frequency": 19588 + }, + { + "word": "foulard", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scarf;foulard", + "romanization": "foulard", + "example_sentence_native": "Si è messa un foulard di seta al collo.", + "example_sentence_english": "She put a silk scarf around her neck.", + "pos": "noun", + "word_frequency": 19591 + }, + { + "word": "fucina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forge;smithy;hotbed", + "romanization": "fucina", + "example_sentence_native": "Quella università è una fucina di talenti.", + "example_sentence_english": "That university is a hotbed of talent.", + "pos": "noun", + "word_frequency": 19592 + }, + { + "word": "garza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gauze", + "romanization": "garza", + "example_sentence_native": "L'infermiere ha coperto la ferita con una garza sterile.", + "example_sentence_english": "The nurse covered the wound with a sterile gauze.", + "pos": "noun", + "word_frequency": 19595 + }, + { + "word": "giocoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playful;jocular", + "romanization": "giocoso", + "example_sentence_native": "Il suo atteggiamento giocoso metteva tutti a proprio agio.", + "example_sentence_english": "His playful attitude made everyone feel at ease.", + "pos": "adjective", + "word_frequency": 19598 + }, + { + "word": "gulag", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gulag", + "romanization": "gulag", + "example_sentence_native": "Molti prigionieri politici furono inviati nei gulag.", + "example_sentence_english": "Many political prisoners were sent to the gulags.", + "pos": "noun", + "word_frequency": 19603 + }, + { + "word": "hotspot", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hotspot", + "romanization": "hotspot", + "example_sentence_native": "Ho creato un hotspot dal mio telefono per connettermi.", + "example_sentence_english": "I created a hotspot from my phone to connect.", + "pos": "noun", + "word_frequency": 19607 + }, + { + "word": "impiccagione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hanging (execution by hanging)", + "romanization": "impiccagione", + "example_sentence_native": "L'impiccagione era una forma di esecuzione comune in passato.", + "example_sentence_english": "Hanging was a common form of execution in the past.", + "pos": "noun", + "word_frequency": 19611 + }, + { + "word": "indicante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indicating;showing", + "romanization": "indicante", + "example_sentence_native": "Ha fatto un gesto indicante la direzione.", + "example_sentence_english": "He made a gesture indicating the direction.", + "pos": "adjective", + "word_frequency": 19612 + }, + { + "word": "indifferentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indifferently;regardless", + "romanization": "indifferentemente", + "example_sentence_native": "Puoi scegliere indifferentemente l'una o l'altra opzione.", + "example_sentence_english": "You can choose either option indifferently.", + "pos": "adverb", + "word_frequency": 19613 + }, + { + "word": "indigente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indigent;destitute", + "romanization": "indigente", + "example_sentence_native": "L'associazione aiuta le famiglie indigenti.", + "example_sentence_english": "The association helps indigent families.", + "pos": "adjective", + "word_frequency": 19614 + }, + { + "word": "indistruttibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indestructible", + "romanization": "indistruttibile", + "example_sentence_native": "Questo materiale sembra indistruttibile.", + "example_sentence_english": "This material seems indestructible.", + "pos": "adjective", + "word_frequency": 19615 + }, + { + "word": "industrializzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "industrialized", + "romanization": "industrializzato", + "example_sentence_native": "Il paese è diventato altamente industrializzato.", + "example_sentence_english": "The country has become highly industrialized.", + "pos": "adjective", + "word_frequency": 19616 + }, + { + "word": "infisso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixture;frame (e.g.;window frame;door frame)", + "romanization": "infisso", + "example_sentence_native": "Dobbiamo sostituire gli infissi vecchi con quelli nuovi.", + "example_sentence_english": "We need to replace the old frames with new ones.", + "pos": "noun", + "word_frequency": 19617 + }, + { + "word": "innervosire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to make nervous;to annoy", + "romanization": "innervosire", + "example_sentence_native": "Il traffico mi innervosisce sempre.", + "example_sentence_english": "Traffic always makes me nervous.", + "pos": "verb", + "word_frequency": 19618 + }, + { + "word": "innovatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "innovator", + "romanization": "innovatore", + "example_sentence_native": "Era un vero innovatore nel suo campo.", + "example_sentence_english": "He was a true innovator in his field.", + "pos": "noun", + "word_frequency": 19619 + }, + { + "word": "intercessione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intercession", + "romanization": "intercessione", + "example_sentence_native": "Grazie alla sua intercessione, il problema è stato risolto.", + "example_sentence_english": "Thanks to his intercession, the problem was solved.", + "pos": "noun", + "word_frequency": 19620 + }, + { + "word": "intermediazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intermediation;brokerage", + "romanization": "intermediazione", + "example_sentence_native": "La banca offre servizi di intermediazione finanziaria.", + "example_sentence_english": "The bank offers financial intermediation services.", + "pos": "noun", + "word_frequency": 19621 + }, + { + "word": "lag", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lag;delay", + "romanization": "lag", + "example_sentence_native": "C'è un forte lag nella connessione internet.", + "example_sentence_english": "There's a strong lag in the internet connection.", + "pos": "noun", + "word_frequency": 19625 + }, + { + "word": "lanciatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pitcher;thrower;launcher", + "romanization": "lanciatore", + "example_sentence_native": "Il lanciatore ha fatto un'ottima partita.", + "example_sentence_english": "The pitcher had a great game.", + "pos": "noun", + "word_frequency": 19626 + }, + { + "word": "liberatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberating;cathartic", + "romanization": "liberatorio", + "example_sentence_native": "È stato un pianto liberatorio dopo tanto stress.", + "example_sentence_english": "It was a liberating cry after so much stress.", + "pos": "adjective", + "word_frequency": 19629 + }, + { + "word": "lingerie", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lingerie", + "romanization": "lingerie", + "example_sentence_native": "Ha comprato della nuova lingerie.", + "example_sentence_english": "She bought some new lingerie.", + "pos": "noun", + "word_frequency": 19631 + }, + { + "word": "maltrattato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistreated;abused", + "romanization": "maltrattato", + "example_sentence_native": "L'animale era stato maltrattato.", + "example_sentence_english": "The animal had been mistreated.", + "pos": "adjective", + "word_frequency": 19634 + }, + { + "word": "malumore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bad mood;ill humor", + "romanization": "malumore", + "example_sentence_native": "Era di cattivo malumore tutto il giorno.", + "example_sentence_english": "He was in a bad mood all day.", + "pos": "noun", + "word_frequency": 19635 + }, + { + "word": "marcatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marking;scoring (in sports)", + "romanization": "marcatura", + "example_sentence_native": "La marcatura a uomo è difficile nel calcio.", + "example_sentence_english": "Man marking is difficult in soccer.", + "pos": "noun", + "word_frequency": 19638 + }, + { + "word": "meda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stack;heap (often of hay)", + "romanization": "meda", + "example_sentence_native": "Il contadino ha fatto una grande meda di fieno.", + "example_sentence_english": "The farmer made a large stack of hay.", + "pos": "noun", + "word_frequency": 19640 + }, + { + "word": "mentito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "false;untrue;lied", + "romanization": "mentito", + "example_sentence_native": "La sua affermazione si è rivelata mentita.", + "example_sentence_english": "His statement turned out to be false.", + "pos": "adjective", + "word_frequency": 19641 + }, + { + "word": "misoginia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misogyny", + "romanization": "misoginia", + "example_sentence_native": "La misoginia è un problema sociale serio.", + "example_sentence_english": "Misogyny is a serious social problem.", + "pos": "noun", + "word_frequency": 19643 + }, + { + "word": "moka", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "moka pot;mocha (coffee)", + "romanization": "moka", + "example_sentence_native": "Ogni mattina preparo il caffè con la moka.", + "example_sentence_english": "Every morning I make coffee with the moka pot.", + "pos": "noun", + "word_frequency": 19644 + }, + { + "word": "mutante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mutant", + "romanization": "mutante", + "example_sentence_native": "Il film parlava di un essere mutante.", + "example_sentence_english": "The film was about a mutant being.", + "pos": "noun", + "word_frequency": 19646 + }, + { + "word": "nascondino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hide-and-seek", + "romanization": "nascondino", + "example_sentence_native": "I bambini giocavano a nascondino nel parco.", + "example_sentence_english": "The children were playing hide-and-seek in the park.", + "pos": "noun", + "word_frequency": 19650 + }, + { + "word": "opportunista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunistic", + "romanization": "opportunista", + "example_sentence_native": "Non mi fido delle persone opportuniste.", + "example_sentence_english": "I don't trust opportunistic people.", + "pos": "adjective", + "word_frequency": 19657 + }, + { + "word": "ovulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ovule;egg cell", + "romanization": "ovulo", + "example_sentence_native": "L'ovulo è fecondato dallo spermatozoo.", + "example_sentence_english": "The egg cell is fertilized by the sperm.", + "pos": "noun", + "word_frequency": 19658 + }, + { + "word": "parquet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parquet (flooring)", + "romanization": "parquet", + "example_sentence_native": "Abbiamo installato un nuovo parquet in salotto.", + "example_sentence_english": "We installed new parquet flooring in the living room.", + "pos": "noun", + "word_frequency": 19659 + }, + { + "word": "penetrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penetrating;piercing", + "romanization": "penetrante", + "example_sentence_native": "Aveva uno sguardo penetrante.", + "example_sentence_english": "He had a penetrating gaze.", + "pos": "adjective", + "word_frequency": 19661 + }, + { + "word": "peruviano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "Peruvian", + "romanization": "peruviano", + "example_sentence_native": "La cucina peruviana è molto apprezzata.", + "example_sentence_english": "Peruvian cuisine is highly appreciated.", + "pos": "adjective", + "word_frequency": 19663 + }, + { + "word": "pezzente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beggar;tramp;scoundrel", + "romanization": "pezzente", + "example_sentence_native": "Non trattare nessuno come un pezzente.", + "example_sentence_english": "Don't treat anyone like a scoundrel.", + "pos": "noun", + "word_frequency": 19664 + }, + { + "word": "pickup", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pickup truck", + "romanization": "pickup", + "example_sentence_native": "Ha comprato un nuovo pickup per il lavoro.", + "example_sentence_english": "He bought a new pickup truck for work.", + "pos": "noun", + "word_frequency": 19666 + }, + { + "word": "piovano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rainy;(archaic) parish priest", + "romanization": "piovano", + "example_sentence_native": "Il tempo piovano ha rovinato la gita.", + "example_sentence_english": "The rainy weather ruined the trip.", + "pos": "adjective", + "word_frequency": 19667 + }, + { + "word": "planimetria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "floor plan;layout", + "romanization": "planimetria", + "example_sentence_native": "Abbiamo bisogno della planimetria dell'appartamento.", + "example_sentence_english": "We need the floor plan of the apartment.", + "pos": "noun", + "word_frequency": 19668 + }, + { + "word": "poliziesco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detective;crime (as in genre)", + "romanization": "poliziesco", + "example_sentence_native": "Mi piace leggere romanzi polizieschi.", + "example_sentence_english": "I like reading detective novels.", + "pos": "adjective", + "word_frequency": 19669 + }, + { + "word": "pompare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pump", + "romanization": "pompare", + "example_sentence_native": "Dobbiamo pompare aria nelle gomme.", + "example_sentence_english": "We need to pump air into the tires.", + "pos": "verb", + "word_frequency": 19670 + }, + { + "word": "porticato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "portico;colonnade", + "romanization": "porticato", + "example_sentence_native": "Il palazzo aveva un magnifico porticato.", + "example_sentence_english": "The palace had a magnificent portico.", + "pos": "noun", + "word_frequency": 19671 + }, + { + "word": "presagire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to foretell;to foreshadow;to portend", + "romanization": "presagire", + "example_sentence_native": "Le nuvole nere presagivano una tempesta.", + "example_sentence_english": "The black clouds foretold a storm.", + "pos": "verb", + "word_frequency": 19672 + }, + { + "word": "presenziare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to attend;to be present at", + "romanization": "presenziare", + "example_sentence_native": "Il ministro ha presenziato alla cerimonia.", + "example_sentence_english": "The minister attended the ceremony.", + "pos": "verb", + "word_frequency": 19673 + }, + { + "word": "pressochè", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "almost;nearly;practically", + "romanization": "pressoché", + "example_sentence_native": "Il lavoro è pressoché finito.", + "example_sentence_english": "The work is almost finished.", + "pos": "adverb", + "word_frequency": 19674 + }, + { + "word": "procione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "raccoon", + "romanization": "procione", + "example_sentence_native": "Ho visto un procione nel bosco.", + "example_sentence_english": "I saw a raccoon in the woods.", + "pos": "noun", + "word_frequency": 19675 + }, + { + "word": "procreare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to procreate;to reproduce", + "romanization": "procreare", + "example_sentence_native": "La natura spinge gli esseri viventi a procreare.", + "example_sentence_english": "Nature pushes living beings to procreate.", + "pos": "verb", + "word_frequency": 19676 + }, + { + "word": "profumato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fragrant;perfumed", + "romanization": "profumato", + "example_sentence_native": "I fiori erano molto profumati.", + "example_sentence_english": "The flowers were very fragrant.", + "pos": "adjective", + "word_frequency": 19678 + }, + { + "word": "programmatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "programmatic", + "romanization": "programmatico", + "example_sentence_native": "Ha presentato un discorso programmatico.", + "example_sentence_english": "He presented a programmatic speech.", + "pos": "adjective", + "word_frequency": 19679 + }, + { + "word": "prop", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prop;support", + "romanization": "prop", + "example_sentence_native": "L'attore ha dimenticato il suo prop sul palco.", + "example_sentence_english": "The actor forgot his prop on stage.", + "pos": "noun", + "word_frequency": 19680 + }, + { + "word": "ramen", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ramen", + "romanization": "ramen", + "example_sentence_native": "Mi piace mangiare il ramen piccante al ristorante giapponese.", + "example_sentence_english": "I like to eat spicy ramen at the Japanese restaurant.", + "pos": "noun", + "word_frequency": 19683 + }, + { + "word": "rappresentatività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "representativeness", + "romanization": "rappresentatività", + "example_sentence_native": "La rappresentatività del campione è fondamentale per la validità dello studio.", + "example_sentence_english": "The representativeness of the sample is fundamental for the validity of the study.", + "pos": "noun", + "word_frequency": 19684 + }, + { + "word": "rarissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very rare;extremely rare", + "romanization": "rarissimo", + "example_sentence_native": "È un evento rarissimo che accada due volte nello stesso anno.", + "example_sentence_english": "It's a very rare event for it to happen twice in the same year.", + "pos": "adjective", + "word_frequency": 19685 + }, + { + "word": "rattristare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sadden;to make sad", + "romanization": "rattristare", + "example_sentence_native": "La notizia della sua partenza ha rattristato tutti i suoi amici.", + "example_sentence_english": "The news of his departure saddened all his friends.", + "pos": "verb", + "word_frequency": 19686 + }, + { + "word": "reciprocità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reciprocity", + "romanization": "reciprocità", + "example_sentence_native": "Il successo della collaborazione si basa sulla reciprocità e sulla fiducia.", + "example_sentence_english": "The success of the collaboration is based on reciprocity and trust.", + "pos": "noun", + "word_frequency": 19687 + }, + { + "word": "resource", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resource", + "romanization": "resource", + "example_sentence_native": "Abbiamo bisogno di più resource umane per completare il progetto in tempo.", + "example_sentence_english": "We need more human resources to complete the project on time.", + "pos": "noun", + "word_frequency": 19688 + }, + { + "word": "retrocedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retrocede;to fall back;to be relegated", + "romanization": "retrocedere", + "example_sentence_native": "La squadra rischia di retrocedere in serie inferiore se non vince.", + "example_sentence_english": "The team risks being relegated to a lower league if they don't win.", + "pos": "verb", + "word_frequency": 19689 + }, + { + "word": "ricreativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "recreational", + "romanization": "ricreativo", + "example_sentence_native": "Il parco offre molte attività ricreative per tutta la famiglia.", + "example_sentence_english": "The park offers many recreational activities for the whole family.", + "pos": "adjective", + "word_frequency": 19690 + }, + { + "word": "riemergere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-emerge;to resurface", + "romanization": "riemergere", + "example_sentence_native": "Dopo anni di silenzio, vecchi problemi sono riemersi improvvisamente.", + "example_sentence_english": "After years of silence, old problems suddenly re-emerged.", + "pos": "verb", + "word_frequency": 19691 + }, + { + "word": "rinoceronte", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rhinoceros", + "romanization": "rinoceronte", + "example_sentence_native": "Il rinoceronte è un animale maestoso ma purtroppo in via di estinzione.", + "example_sentence_english": "The rhinoceros is a majestic but unfortunately endangered animal.", + "pos": "noun", + "word_frequency": 19693 + }, + { + "word": "rinvenimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discovery;finding", + "romanization": "rinvenimento", + "example_sentence_native": "Il rinvenimento di antichi manufatti ha entusiasmato gli archeologi.", + "example_sentence_english": "The discovery of ancient artifacts excited the archaeologists.", + "pos": "noun", + "word_frequency": 19694 + }, + { + "word": "riverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overturned;lying face down;prone", + "romanization": "riverso", + "example_sentence_native": "Ha trovato il libro riverso sul tavolo, con le pagine aperte.", + "example_sentence_english": "He found the book lying face down on the table, with the pages open.", + "pos": "adjective", + "word_frequency": 19695 + }, + { + "word": "rotatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rotary;rotating", + "romanization": "rotatorio", + "example_sentence_native": "Il movimento rotatorio della giostra divertiva i bambini.", + "example_sentence_english": "The rotary movement of the carousel amused the children.", + "pos": "adjective", + "word_frequency": 19700 + }, + { + "word": "savannah", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "savannah", + "romanization": "savannah", + "example_sentence_native": "Leoni e zebre vivono nella vasta savannah africana.", + "example_sentence_english": "Lions and zebras live in the vast African savannah.", + "pos": "noun", + "word_frequency": 19706 + }, + { + "word": "sbirciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to peek;to glance", + "romanization": "sbirciare", + "example_sentence_native": "Ha sbirciato dalla serratura per vedere cosa succedeva dentro.", + "example_sentence_english": "He peeked through the keyhole to see what was happening inside.", + "pos": "verb", + "word_frequency": 19708 + }, + { + "word": "scarpone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "boot (large;heavy boot)", + "romanization": "scarpone", + "example_sentence_native": "Ho comprato un nuovo paio di scarponi da montagna per l'escursione.", + "example_sentence_english": "I bought a new pair of mountain boots for the hike.", + "pos": "noun", + "word_frequency": 19709 + }, + { + "word": "scortese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impolite;rude", + "romanization": "scortese", + "example_sentence_native": "È stato molto scortese non rispondere al suo saluto.", + "example_sentence_english": "It was very rude not to return his greeting.", + "pos": "adjective", + "word_frequency": 19711 + }, + { + "word": "segale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rye", + "romanization": "segale", + "example_sentence_native": "Il pane di segale è noto per il suo sapore robusto e le sue proprietà nutritive.", + "example_sentence_english": "Rye bread is known for its robust flavor and nutritional properties.", + "pos": "noun", + "word_frequency": 19712 + }, + { + "word": "sgomberare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clear out;to evacuate;to vacate", + "romanization": "sgomberare", + "example_sentence_native": "Dobbiamo sgomberare la stanza entro la fine della giornata.", + "example_sentence_english": "We need to clear out the room by the end of the day.", + "pos": "verb", + "word_frequency": 19714 + }, + { + "word": "simbiosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symbiosis", + "romanization": "simbiosi", + "example_sentence_native": "La relazione tra i due organismi è un esempio perfetto di simbiosi.", + "example_sentence_english": "The relationship between the two organisms is a perfect example of symbiosis.", + "pos": "noun", + "word_frequency": 19717 + }, + { + "word": "sister", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sister", + "romanization": "sister", + "example_sentence_native": "La mia sister maggiore mi ha insegnato a suonare la chitarra.", + "example_sentence_english": "My older sister taught me how to play the guitar.", + "pos": "noun", + "word_frequency": 19718 + }, + { + "word": "smistamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sorting;dispatch;distribution", + "romanization": "smistamento", + "example_sentence_native": "Il centro di smistamento della posta è aperto 24 ore su 24.", + "example_sentence_english": "The mail sorting center is open 24 hours a day.", + "pos": "noun", + "word_frequency": 19719 + }, + { + "word": "sospettoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suspicious", + "romanization": "sospettoso", + "example_sentence_native": "Era molto sospettoso delle sue intenzioni.", + "example_sentence_english": "He was very suspicious of her intentions.", + "pos": "adjective", + "word_frequency": 19720 + }, + { + "word": "spargimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shedding;spilling", + "romanization": "spargimento", + "example_sentence_native": "Lo spargimento di sangue è stato evitato.", + "example_sentence_english": "The shedding of blood was avoided.", + "pos": "noun", + "word_frequency": 19721 + }, + { + "word": "speck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "speck (smoked ham)", + "romanization": "speck", + "example_sentence_native": "Vorrei un panino con lo speck.", + "example_sentence_english": "I would like a sandwich with speck.", + "pos": "noun", + "word_frequency": 19722 + }, + { + "word": "spensieratezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefree attitude;lightheartedness", + "romanization": "spensieratezza", + "example_sentence_native": "La sua spensieratezza era contagiosa.", + "example_sentence_english": "Her carefree attitude was contagious.", + "pos": "noun", + "word_frequency": 19723 + }, + { + "word": "stancante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiring;exhausting", + "romanization": "stancante", + "example_sentence_native": "È stata una giornata molto stancante.", + "example_sentence_english": "It was a very tiring day.", + "pos": "adjective", + "word_frequency": 19724 + }, + { + "word": "subdolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subtle;insidious", + "romanization": "subdolo", + "example_sentence_native": "Ha usato un metodo subdolo per ottenere ciò che voleva.", + "example_sentence_english": "He used an insidious method to get what he wanted.", + "pos": "adjective", + "word_frequency": 19727 + }, + { + "word": "sunnita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sunni", + "romanization": "sunnita", + "example_sentence_native": "La maggior parte della popolazione è sunnita.", + "example_sentence_english": "Most of the population is Sunni.", + "pos": "noun", + "word_frequency": 19728 + }, + { + "word": "superficialmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superficially", + "romanization": "superficialmente", + "example_sentence_native": "Ha esaminato il problema superficialmente.", + "example_sentence_english": "He examined the problem superficially.", + "pos": "adverb", + "word_frequency": 19730 + }, + { + "word": "superpotere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "superpower", + "romanization": "superpotere", + "example_sentence_native": "Ogni supereroe ha un superpotere unico.", + "example_sentence_english": "Every superhero has a unique superpower.", + "pos": "noun", + "word_frequency": 19731 + }, + { + "word": "sussurrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to whisper", + "romanization": "sussurrare", + "example_sentence_native": "Ha iniziato a sussurrare un segreto.", + "example_sentence_english": "She started to whisper a secret.", + "pos": "verb", + "word_frequency": 19733 + }, + { + "word": "tabloid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tabloid", + "romanization": "tabloid", + "example_sentence_native": "Ha letto la notizia su un tabloid.", + "example_sentence_english": "He read the news in a tabloid.", + "pos": "noun", + "word_frequency": 19734 + }, + { + "word": "titano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "titan", + "romanization": "titano", + "example_sentence_native": "Era considerato un titano nel suo campo.", + "example_sentence_english": "He was considered a titan in his field.", + "pos": "noun", + "word_frequency": 19738 + }, + { + "word": "tonto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fool;silly person", + "romanization": "tonto", + "example_sentence_native": "Non fare il tonto.", + "example_sentence_english": "Don't be a fool.", + "pos": "noun", + "word_frequency": 19739 + }, + { + "word": "ubriacare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to get drunk;to intoxicate", + "romanization": "ubriacare", + "example_sentence_native": "Non voglio ubriacarmi stasera.", + "example_sentence_english": "I don't want to get drunk tonight.", + "pos": "verb", + "word_frequency": 19742 + }, + { + "word": "vaschetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small tub;tray", + "romanization": "vaschetta", + "example_sentence_native": "Ho comprato una vaschetta di gelato.", + "example_sentence_english": "I bought a tub of ice cream.", + "pos": "noun", + "word_frequency": 19743 + }, + { + "word": "veemenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vehemence;intensity", + "romanization": "veemenza", + "example_sentence_native": "Ha parlato con grande veemenza.", + "example_sentence_english": "He spoke with great vehemence.", + "pos": "noun", + "word_frequency": 19744 + }, + { + "word": "velenoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poisonous;venomous", + "romanization": "velenoso", + "example_sentence_native": "Questo fungo è velenoso.", + "example_sentence_english": "This mushroom is poisonous.", + "pos": "adjective", + "word_frequency": 19745 + }, + { + "word": "vigoroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vigorous;strong", + "romanization": "vigoroso", + "example_sentence_native": "Ha fatto un esercizio vigoroso.", + "example_sentence_english": "He did a vigorous exercise.", + "pos": "adjective", + "word_frequency": 19746 + }, + { + "word": "visionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to view;to inspect", + "romanization": "visionare", + "example_sentence_native": "Dobbiamo visionare i documenti prima della riunione.", + "example_sentence_english": "We need to view the documents before the meeting.", + "pos": "verb", + "word_frequency": 19747 + }, + { + "word": "vitigno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grape variety;vine", + "romanization": "vitigno", + "example_sentence_native": "Questo è un vitigno autoctono.", + "example_sentence_english": "This is an indigenous grape variety.", + "pos": "noun", + "word_frequency": 19748 + }, + { + "word": "zeppelin", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zeppelin", + "romanization": "zeppelin", + "example_sentence_native": "Il dirigibile Zeppelin sorvolava la città.", + "example_sentence_english": "The Zeppelin airship flew over the city.", + "pos": "noun", + "word_frequency": 19755 + }, + { + "word": "accecare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blind", + "romanization": "accecare", + "example_sentence_native": "La luce forte mi ha accecato.", + "example_sentence_english": "The strong light blinded me.", + "pos": "verb", + "word_frequency": 19756 + }, + { + "word": "aletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small wing;fin", + "romanization": "aletta", + "example_sentence_native": "L'aereo aveva un'aletta danneggiata.", + "example_sentence_english": "The plane had a damaged fin.", + "pos": "noun", + "word_frequency": 19758 + }, + { + "word": "amareggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to embitter;to sadden", + "romanization": "amareggiare", + "example_sentence_native": "La notizia lo ha amareggiato profondamente.", + "example_sentence_english": "The news deeply embittered him.", + "pos": "verb", + "word_frequency": 19764 + }, + { + "word": "amputazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amputation", + "romanization": "amputazione", + "example_sentence_native": "Ha subito un'amputazione dopo l'incidente.", + "example_sentence_english": "He underwent an amputation after the accident.", + "pos": "noun", + "word_frequency": 19765 + }, + { + "word": "anticamera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antechamber;waiting room", + "romanization": "anticamera", + "example_sentence_native": "Ho aspettato nell'anticamera per un'ora.", + "example_sentence_english": "I waited in the antechamber for an hour.", + "pos": "noun", + "word_frequency": 19769 + }, + { + "word": "apocalittico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apocalyptic", + "romanization": "apocalittico", + "example_sentence_native": "Il film presentava uno scenario apocalittico.", + "example_sentence_english": "The film presented an apocalyptic scenario.", + "pos": "adjective", + "word_frequency": 19770 + }, + { + "word": "archetipo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archetype", + "romanization": "archetipo", + "example_sentence_native": "Il personaggio è un archetipo dell'eroe classico.", + "example_sentence_english": "The character is an archetype of the classic hero.", + "pos": "noun", + "word_frequency": 19771 + }, + { + "word": "ardito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "daring person;WWI Italian special forces soldier", + "romanization": "ardito", + "example_sentence_native": "Gli Arditi erano famosi per il loro coraggio.", + "example_sentence_english": "The Arditi were famous for their courage.", + "pos": "noun", + "word_frequency": 19772 + }, + { + "word": "bidello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "janitor;school caretaker", + "romanization": "bidello", + "example_sentence_native": "Il bidello ha aperto la scuola stamattina.", + "example_sentence_english": "The janitor opened the school this morning.", + "pos": "noun", + "word_frequency": 19782 + }, + { + "word": "bosniaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bosnian", + "romanization": "bosniaco", + "example_sentence_native": "Ha visitato la capitale bosniaca, Sarajevo.", + "example_sentence_english": "He visited the Bosnian capital, Sarajevo.", + "pos": "adjective", + "word_frequency": 19786 + }, + { + "word": "cafone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boor;lout;bumpkin", + "romanization": "cafone", + "example_sentence_native": "Si è comportato come un vero cafone alla festa.", + "example_sentence_english": "He behaved like a real boor at the party.", + "pos": "noun", + "word_frequency": 19791 + }, + { + "word": "califfo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caliph", + "romanization": "califfo", + "example_sentence_native": "Il califfo era il capo spirituale e politico.", + "example_sentence_english": "The caliph was the spiritual and political leader.", + "pos": "noun", + "word_frequency": 19792 + }, + { + "word": "campata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "span (of a bridge;arch);bay (of a building)", + "romanization": "campata", + "example_sentence_native": "La campata del ponte è molto lunga.", + "example_sentence_english": "The span of the bridge is very long.", + "pos": "noun", + "word_frequency": 19793 + }, + { + "word": "casaccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "random;haphazard (often in \"a casaccio\")", + "romanization": "casaccio", + "example_sentence_native": "Ha risposto alle domande a casaccio.", + "example_sentence_english": "He answered the questions at random.", + "pos": "noun", + "word_frequency": 19794 + }, + { + "word": "casato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "noble house;lineage;family name", + "romanization": "casato", + "example_sentence_native": "Apparteneva a un antico casato nobiliare.", + "example_sentence_english": "He belonged to an ancient noble house.", + "pos": "noun", + "word_frequency": 19795 + }, + { + "word": "catrame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tar", + "romanization": "catrame", + "example_sentence_native": "La strada era coperta di catrame fresco.", + "example_sentence_english": "The road was covered with fresh tar.", + "pos": "noun", + "word_frequency": 19797 + }, + { + "word": "chiocciola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "snail;at sign", + "romanization": "chiocciola", + "example_sentence_native": "La chiocciola si muove lentamente.", + "example_sentence_english": "The snail moves slowly.", + "pos": "noun", + "word_frequency": 19800 + }, + { + "word": "cimelio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heirloom;relic", + "romanization": "cimelio", + "example_sentence_native": "Questo orologio è un cimelio di famiglia.", + "example_sentence_english": "This watch is a family heirloom.", + "pos": "noun", + "word_frequency": 19801 + }, + { + "word": "civilizzazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "civilization", + "romanization": "civilizzazione", + "example_sentence_native": "L'antica Roma fu una grande civilizzazione.", + "example_sentence_english": "Ancient Rome was a great civilization.", + "pos": "noun", + "word_frequency": 19803 + }, + { + "word": "clientelismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clientelism", + "romanization": "clientelismo", + "example_sentence_native": "Il clientelismo è un problema in molte democrazie.", + "example_sentence_english": "Clientelism is a problem in many democracies.", + "pos": "noun", + "word_frequency": 19804 + }, + { + "word": "colf", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "domestic worker;housekeeper", + "romanization": "colf", + "example_sentence_native": "La colf arriva ogni mattina per pulire la casa.", + "example_sentence_english": "The domestic worker arrives every morning to clean the house.", + "pos": "noun", + "word_frequency": 19806 + }, + { + "word": "combutta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collusion;conspiracy (informal)", + "romanization": "combutta", + "example_sentence_native": "Erano tutti in combutta per organizzare la sorpresa.", + "example_sentence_english": "They were all in collusion to organize the surprise.", + "pos": "noun", + "word_frequency": 19807 + }, + { + "word": "committenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "client base;commission;client", + "romanization": "committenza", + "example_sentence_native": "L'architetto ha una vasta committenza.", + "example_sentence_english": "The architect has a large client base.", + "pos": "noun", + "word_frequency": 19808 + }, + { + "word": "concretizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to concretize;to realize;to make concrete", + "romanization": "concretizzare", + "example_sentence_native": "Dobbiamo concretizzare le nostre idee.", + "example_sentence_english": "We need to concretize our ideas.", + "pos": "verb", + "word_frequency": 19809 + }, + { + "word": "confiscare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to confiscate", + "romanization": "confiscare", + "example_sentence_native": "La polizia ha confiscato la merce illegale.", + "example_sentence_english": "The police confiscated the illegal goods.", + "pos": "verb", + "word_frequency": 19810 + }, + { + "word": "contegno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demeanor;conduct;composure", + "romanization": "contegno", + "example_sentence_native": "Mantenere un contegno calmo è importante in situazioni difficili.", + "example_sentence_english": "Maintaining a calm demeanor is important in difficult situations.", + "pos": "noun", + "word_frequency": 19811 + }, + { + "word": "continuum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "continuum", + "romanization": "continuum", + "example_sentence_native": "La vita è un continuum di esperienze.", + "example_sentence_english": "Life is a continuum of experiences.", + "pos": "noun", + "word_frequency": 19812 + }, + { + "word": "contromisura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "countermeasure", + "romanization": "contromisura", + "example_sentence_native": "Hanno adottato contromisure per prevenire ulteriori attacchi.", + "example_sentence_english": "They adopted countermeasures to prevent further attacks.", + "pos": "noun", + "word_frequency": 19813 + }, + { + "word": "convivente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cohabitant;live-in partner", + "romanization": "convivente", + "example_sentence_native": "Il mio convivente ed io viviamo insieme da cinque anni.", + "example_sentence_english": "My live-in partner and I have lived together for five years.", + "pos": "noun", + "word_frequency": 19814 + }, + { + "word": "corporatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "physique;build;body type", + "romanization": "corporatura", + "example_sentence_native": "Ha una corporatura atletica.", + "example_sentence_english": "He has an athletic physique.", + "pos": "noun", + "word_frequency": 19815 + }, + { + "word": "croissant", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "croissant", + "romanization": "croissant", + "example_sentence_native": "Mi piace fare colazione con un caffè e un croissant.", + "example_sentence_english": "I like to have breakfast with a coffee and a croissant.", + "pos": "noun", + "word_frequency": 19816 + }, + { + "word": "curvo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curved;bent", + "romanization": "curvo", + "example_sentence_native": "La strada era stretta e curvo.", + "example_sentence_english": "The road was narrow and curved.", + "pos": "adjective", + "word_frequency": 19817 + }, + { + "word": "damigella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bridesmaid;lady-in-waiting", + "romanization": "damigella", + "example_sentence_native": "La damigella d'onore ha aiutato la sposa.", + "example_sentence_english": "The bridesmaid helped the bride.", + "pos": "noun", + "word_frequency": 19822 + }, + { + "word": "deficienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deficiency;lack;defect", + "romanization": "deficienza", + "example_sentence_native": "La deficienza di vitamina D è comune.", + "example_sentence_english": "Vitamin D deficiency is common.", + "pos": "noun", + "word_frequency": 19824 + }, + { + "word": "degradare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to degrade;to demote;to deteriorate", + "romanization": "degradare", + "example_sentence_native": "L'inquinamento può degradare l'ambiente.", + "example_sentence_english": "Pollution can degrade the environment.", + "pos": "verb", + "word_frequency": 19825 + }, + { + "word": "depurazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purification;depuration;wastewater treatment", + "romanization": "depurazione", + "example_sentence_native": "L'impianto di depurazione tratta le acque reflue.", + "example_sentence_english": "The purification plant treats wastewater.", + "pos": "noun", + "word_frequency": 19831 + }, + { + "word": "discorrere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to discuss;to converse;to discourse", + "romanization": "discorrere", + "example_sentence_native": "Hanno passato ore a discorrere di filosofia.", + "example_sentence_english": "They spent hours discussing philosophy.", + "pos": "verb", + "word_frequency": 19835 + }, + { + "word": "discount", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "discount store;discount", + "romanization": "discount", + "example_sentence_native": "Vado al discount per comprare prodotti a basso costo.", + "example_sentence_english": "I go to the discount store to buy low-cost products.", + "pos": "noun", + "word_frequency": 19836 + }, + { + "word": "disertore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deserter", + "romanization": "disertore", + "example_sentence_native": "Il soldato fu accusato di essere un disertore.", + "example_sentence_english": "The soldier was accused of being a deserter.", + "pos": "noun", + "word_frequency": 19837 + }, + { + "word": "disfare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to undo;to unpack;to dismantle", + "romanization": "disfare", + "example_sentence_native": "Devo disfare la valigia dopo il viaggio.", + "example_sentence_english": "I need to unpack my suitcase after the trip.", + "pos": "verb", + "word_frequency": 19838 + }, + { + "word": "dislocare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dislocate;to deploy;to relocate", + "romanization": "dislocare", + "example_sentence_native": "L'azienda ha deciso di dislocare parte della produzione all'estero.", + "example_sentence_english": "The company decided to relocate part of its production abroad.", + "pos": "verb", + "word_frequency": 19839 + }, + { + "word": "diversificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diversify", + "romanization": "diversificare", + "example_sentence_native": "Dobbiamo diversificare i nostri investimenti.", + "example_sentence_english": "We need to diversify our investments.", + "pos": "verb", + "word_frequency": 19840 + }, + { + "word": "entusiasmare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to excite;to enthuse", + "romanization": "entusiasmare", + "example_sentence_native": "La notizia ha entusiasmato tutti.", + "example_sentence_english": "The news excited everyone.", + "pos": "verb", + "word_frequency": 19844 + }, + { + "word": "epiteto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epithet", + "romanization": "epiteto", + "example_sentence_native": "\"Il Magnifico\" era un epiteto per Lorenzo de' Medici.", + "example_sentence_english": "\"The Magnificent\" was an epithet for Lorenzo de' Medici.", + "pos": "noun", + "word_frequency": 19845 + }, + { + "word": "esortazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exhortation;urging", + "romanization": "esortazione", + "example_sentence_native": "Il suo discorso fu un'esortazione alla pace.", + "example_sentence_english": "His speech was an exhortation to peace.", + "pos": "noun", + "word_frequency": 19846 + }, + { + "word": "fantacalcio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fantasy football (soccer)", + "romanization": "fantacalcio", + "example_sentence_native": "Ogni domenica gioca a fantacalcio con i suoi amici.", + "example_sentence_english": "Every Sunday he plays fantasy football with his friends.", + "pos": "noun", + "word_frequency": 19847 + }, + { + "word": "flagranza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flagrancy;in the act", + "romanization": "flagranza", + "example_sentence_native": "È stato colto in flagranza di reato.", + "example_sentence_english": "He was caught in the act of committing a crime.", + "pos": "noun", + "word_frequency": 19848 + }, + { + "word": "fosfato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phosphate", + "romanization": "fosfato", + "example_sentence_native": "Il fosfato è un componente essenziale del DNA.", + "example_sentence_english": "Phosphate is an essential component of DNA.", + "pos": "noun", + "word_frequency": 19851 + }, + { + "word": "fraintendimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstanding", + "romanization": "fraintendimento", + "example_sentence_native": "C'è stato un fraintendimento sulla data dell'incontro.", + "example_sentence_english": "There was a misunderstanding about the meeting date.", + "pos": "noun", + "word_frequency": 19852 + }, + { + "word": "gelare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze", + "romanization": "gelare", + "example_sentence_native": "L'acqua nel tubo è gelata.", + "example_sentence_english": "The water in the pipe froze.", + "pos": "verb", + "word_frequency": 19853 + }, + { + "word": "gerarchico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hierarchical", + "romanization": "gerarchico", + "example_sentence_native": "L'azienda ha una struttura gerarchica.", + "example_sentence_english": "The company has a hierarchical structure.", + "pos": "adjective", + "word_frequency": 19855 + }, + { + "word": "ginecologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gynecology", + "romanization": "ginecologia", + "example_sentence_native": "Ha studiato ginecologia all'università.", + "example_sentence_english": "She studied gynecology at university.", + "pos": "noun", + "word_frequency": 19857 + }, + { + "word": "giradischi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turntable;record player", + "romanization": "giradischi", + "example_sentence_native": "Ha comprato un vecchio giradischi al mercatino delle pulci.", + "example_sentence_english": "He bought an old turntable at the flea market.", + "pos": "noun", + "word_frequency": 19858 + }, + { + "word": "giubilo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jubilation;rejoicing", + "romanization": "giubilo", + "example_sentence_native": "La vittoria fu accolta con grande giubilo.", + "example_sentence_english": "The victory was met with great jubilation.", + "pos": "noun", + "word_frequency": 19859 + }, + { + "word": "glitter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "glitter", + "romanization": "glitter", + "example_sentence_native": "Ha messo del glitter sul suo vestito.", + "example_sentence_english": "She put some glitter on her dress.", + "pos": "noun", + "word_frequency": 19860 + }, + { + "word": "gnomo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gnome", + "romanization": "gnomo", + "example_sentence_native": "I bambini credevano negli gnomi del giardino.", + "example_sentence_english": "The children believed in garden gnomes.", + "pos": "noun", + "word_frequency": 19861 + }, + { + "word": "herpes", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "herpes", + "romanization": "herpes", + "example_sentence_native": "L'herpes labiale è molto comune.", + "example_sentence_english": "Cold sores (labial herpes) are very common.", + "pos": "noun", + "word_frequency": 19865 + }, + { + "word": "iberico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Iberian", + "romanization": "iberico", + "example_sentence_native": "La penisola iberica comprende Spagna e Portogallo.", + "example_sentence_english": "The Iberian Peninsula includes Spain and Portugal.", + "pos": "adjective", + "word_frequency": 19868 + }, + { + "word": "implorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implore;to beg", + "romanization": "implorare", + "example_sentence_native": "Lo implorò di perdonarla.", + "example_sentence_english": "She implored him to forgive her.", + "pos": "verb", + "word_frequency": 19870 + }, + { + "word": "impoverire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impoverish;to make poor", + "romanization": "impoverire", + "example_sentence_native": "La crisi economica ha impoverito molte famiglie.", + "example_sentence_english": "The economic crisis has impoverished many families.", + "pos": "verb", + "word_frequency": 19871 + }, + { + "word": "inadatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsuitable;inappropriate", + "romanization": "inadatto", + "example_sentence_native": "Quel vestito è inadatto per l'occasione.", + "example_sentence_english": "That dress is unsuitable for the occasion.", + "pos": "adjective", + "word_frequency": 19872 + }, + { + "word": "incombente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impending;looming", + "romanization": "incombente", + "example_sentence_native": "La minaccia di una tempesta era incombente.", + "example_sentence_english": "The threat of a storm was impending.", + "pos": "adjective", + "word_frequency": 19873 + }, + { + "word": "inequivocabilmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unequivocally", + "romanization": "inequivocabilmente", + "example_sentence_native": "La sua colpa era inequivocabilmente provata.", + "example_sentence_english": "His guilt was unequivocally proven.", + "pos": "adverb", + "word_frequency": 19875 + }, + { + "word": "inerme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unarmed;helpless", + "romanization": "inerme", + "example_sentence_native": "Si sentiva inerme di fronte alla situazione.", + "example_sentence_english": "He felt helpless in the face of the situation.", + "pos": "adjective", + "word_frequency": 19876 + }, + { + "word": "infiammare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inflame;to ignite", + "romanization": "infiammare", + "example_sentence_native": "La discussione ha infiammato gli animi.", + "example_sentence_english": "The discussion inflamed spirits.", + "pos": "verb", + "word_frequency": 19877 + }, + { + "word": "insidioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insidious;treacherous", + "romanization": "insidioso", + "example_sentence_native": "La malattia ha un decorso insidioso.", + "example_sentence_english": "The disease has an insidious course.", + "pos": "adjective", + "word_frequency": 19878 + }, + { + "word": "insofferenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intolerance;impatience", + "romanization": "insofferenza", + "example_sentence_native": "Mostrava insofferenza verso le regole.", + "example_sentence_english": "He showed intolerance towards the rules.", + "pos": "noun", + "word_frequency": 19879 + }, + { + "word": "intagliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carve", + "romanization": "intagliare", + "example_sentence_native": "L'artista ama intagliare il legno.", + "example_sentence_english": "The artist loves to carve wood.", + "pos": "verb", + "word_frequency": 19881 + }, + { + "word": "intellettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intellectual", + "romanization": "intellettivo", + "example_sentence_native": "Ha un approccio molto intellettivo ai problemi.", + "example_sentence_english": "He has a very intellectual approach to problems.", + "pos": "adjective", + "word_frequency": 19882 + }, + { + "word": "intruso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intruder", + "romanization": "intruso", + "example_sentence_native": "La polizia ha catturato l'intruso.", + "example_sentence_english": "The police caught the intruder.", + "pos": "noun", + "word_frequency": 19883 + }, + { + "word": "invidiabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enviable", + "romanization": "invidiabile", + "example_sentence_native": "Ha una posizione invidiabile in azienda.", + "example_sentence_english": "He has an enviable position in the company.", + "pos": "adjective", + "word_frequency": 19884 + }, + { + "word": "involtino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roll (e.g.;spring roll;meat roll)", + "romanization": "involtino", + "example_sentence_native": "Ho ordinato degli involtini primavera al ristorante cinese.", + "example_sentence_english": "I ordered spring rolls at the Chinese restaurant.", + "pos": "noun", + "word_frequency": 19885 + }, + { + "word": "isolano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "islander", + "romanization": "isolano", + "example_sentence_native": "Gli isolani sono abituati al mare.", + "example_sentence_english": "The islanders are used to the sea.", + "pos": "noun", + "word_frequency": 19888 + }, + { + "word": "istruttivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instructive", + "romanization": "istruttivo", + "example_sentence_native": "Il documentario è stato molto istruttivo.", + "example_sentence_english": "The documentary was very instructive.", + "pos": "adjective", + "word_frequency": 19889 + }, + { + "word": "lessicale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lexical", + "romanization": "lessicale", + "example_sentence_native": "Ha una vasta conoscenza lessicale.", + "example_sentence_english": "He has a vast lexical knowledge.", + "pos": "adjective", + "word_frequency": 19890 + }, + { + "word": "macellazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slaughter", + "romanization": "macellazione", + "example_sentence_native": "Le norme sulla macellazione sono molto severe.", + "example_sentence_english": "Slaughter regulations are very strict.", + "pos": "noun", + "word_frequency": 19896 + }, + { + "word": "manche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "round (of a game;competition)", + "romanization": "manche", + "example_sentence_native": "Ha vinto la prima manche della gara.", + "example_sentence_english": "He won the first round of the race.", + "pos": "noun", + "word_frequency": 19898 + }, + { + "word": "memo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memo", + "romanization": "memo", + "example_sentence_native": "Ho ricevuto un memo importante dall'ufficio.", + "example_sentence_english": "I received an important memo from the office.", + "pos": "noun", + "word_frequency": 19901 + }, + { + "word": "menopausa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "menopause", + "romanization": "menopausa", + "example_sentence_native": "La menopausa è una fase naturale nella vita di una donna.", + "example_sentence_english": "Menopause is a natural phase in a woman's life.", + "pos": "noun", + "word_frequency": 19902 + }, + { + "word": "metaforico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metaphorical", + "romanization": "metaforico", + "example_sentence_native": "Il suo linguaggio era spesso metaforico.", + "example_sentence_english": "His language was often metaphorical.", + "pos": "adjective", + "word_frequency": 19903 + }, + { + "word": "moratoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moratorium", + "romanization": "moratoria", + "example_sentence_native": "Il governo ha imposto una moratoria sui nuovi progetti edilizi.", + "example_sentence_english": "The government imposed a moratorium on new building projects.", + "pos": "noun", + "word_frequency": 19906 + }, + { + "word": "nascituro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unborn child", + "romanization": "nascituro", + "example_sentence_native": "La legge tutela anche i diritti del nascituro.", + "example_sentence_english": "The law also protects the rights of the unborn child.", + "pos": "noun", + "word_frequency": 19912 + }, + { + "word": "nuovissimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "brand new;very new", + "romanization": "nuovissimo", + "example_sentence_native": "Ho comprato un telefono nuovissimo.", + "example_sentence_english": "I bought a brand new phone.", + "pos": "adjective", + "word_frequency": 19918 + }, + { + "word": "onnipresente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omnipresent", + "romanization": "onnipresente", + "example_sentence_native": "La tecnologia è diventata onnipresente nella nostra vita quotidiana.", + "example_sentence_english": "Technology has become omnipresent in our daily lives.", + "pos": "adjective", + "word_frequency": 19921 + }, + { + "word": "opportunismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opportunism", + "romanization": "opportunismo", + "example_sentence_native": "Il suo opportunismo gli ha permesso di avanzare rapidamente nella carriera.", + "example_sentence_english": "His opportunism allowed him to advance quickly in his career.", + "pos": "noun", + "word_frequency": 19922 + }, + { + "word": "perpetrare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perpetrate", + "romanization": "perpetrare", + "example_sentence_native": "Non si deve perpetrare la violenza in nessuna forma.", + "example_sentence_english": "Violence must not be perpetrated in any form.", + "pos": "verb", + "word_frequency": 19925 + }, + { + "word": "perturbazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbance", + "romanization": "perturbazione", + "example_sentence_native": "Una perturbazione atmosferica sta arrivando da ovest.", + "example_sentence_english": "An atmospheric disturbance is coming from the west.", + "pos": "noun", + "word_frequency": 19926 + }, + { + "word": "peschereccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fishing boat", + "romanization": "peschereccio", + "example_sentence_native": "Il peschereccio è tornato al porto con un grande carico di pesce.", + "example_sentence_english": "The fishing boat returned to port with a large catch of fish.", + "pos": "noun", + "word_frequency": 19927 + }, + { + "word": "porchetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roasted pork (Italian style)", + "romanization": "porchetta", + "example_sentence_native": "Abbiamo mangiato un delizioso panino con la porchetta.", + "example_sentence_english": "We ate a delicious sandwich with porchetta.", + "pos": "noun", + "word_frequency": 19932 + }, + { + "word": "preservazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preservation", + "romanization": "preservazione", + "example_sentence_native": "La preservazione dell'ambiente è fondamentale per il futuro.", + "example_sentence_english": "The preservation of the environment is fundamental for the future.", + "pos": "noun", + "word_frequency": 19933 + }, + { + "word": "provocante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocative", + "romanization": "provocante", + "example_sentence_native": "Il suo atteggiamento era molto provocante.", + "example_sentence_english": "Her attitude was very provocative.", + "pos": "adjective", + "word_frequency": 19936 + }, + { + "word": "raffronto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "comparison;confrontation", + "romanization": "raffronto", + "example_sentence_native": "Un raffronto tra i due sistemi rivela molte differenze.", + "example_sentence_english": "A comparison between the two systems reveals many differences.", + "pos": "noun", + "word_frequency": 19938 + }, + { + "word": "ragnatela", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spiderweb", + "romanization": "ragnatela", + "example_sentence_native": "C'era una grande ragnatela nell'angolo della stanza.", + "example_sentence_english": "There was a large spiderweb in the corner of the room.", + "pos": "noun", + "word_frequency": 19939 + }, + { + "word": "recapitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to deliver", + "romanization": "recapitare", + "example_sentence_native": "Il postino deve recapitare questa lettera entro oggi.", + "example_sentence_english": "The postman must deliver this letter by today.", + "pos": "verb", + "word_frequency": 19941 + }, + { + "word": "recidiva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relapse;recidivism", + "romanization": "recidiva", + "example_sentence_native": "Purtroppo, il paziente ha avuto una recidiva della malattia.", + "example_sentence_english": "Unfortunately, the patient had a relapse of the illness.", + "pos": "noun", + "word_frequency": 19942 + }, + { + "word": "reintegrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reintegration", + "romanization": "reintegrazione", + "example_sentence_native": "Il programma mira alla reintegrazione dei detenuti nella società.", + "example_sentence_english": "The program aims at the reintegration of inmates into society.", + "pos": "noun", + "word_frequency": 19946 + }, + { + "word": "remissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remission;forgiveness", + "romanization": "remissione", + "example_sentence_native": "Il paziente è in remissione dopo la terapia.", + "example_sentence_english": "The patient is in remission after therapy.", + "pos": "noun", + "word_frequency": 19948 + }, + { + "word": "resuscitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resuscitate;to revive", + "romanization": "resuscitare", + "example_sentence_native": "I medici hanno tentato di resuscitare il paziente.", + "example_sentence_english": "The doctors tried to resuscitate the patient.", + "pos": "verb", + "word_frequency": 19949 + }, + { + "word": "ribattezzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rebaptize;to rename", + "romanization": "ribattezzare", + "example_sentence_native": "Hanno deciso di ribattezzare il loro cane con un nuovo nome.", + "example_sentence_english": "They decided to rename their dog with a new name.", + "pos": "verb", + "word_frequency": 19950 + }, + { + "word": "ricciolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "curl (of hair)", + "romanization": "ricciolo", + "example_sentence_native": "Aveva dei bei riccioli biondi.", + "example_sentence_english": "She had beautiful blonde curls.", + "pos": "noun", + "word_frequency": 19951 + }, + { + "word": "ricompensare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reward;to compensate", + "romanization": "ricompensare", + "example_sentence_native": "Voglio ricompensare il tuo duro lavoro.", + "example_sentence_english": "I want to reward your hard work.", + "pos": "verb", + "word_frequency": 19952 + }, + { + "word": "riconversione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconversion;restructuring", + "romanization": "riconversione", + "example_sentence_native": "L'azienda sta affrontando un processo di riconversione industriale.", + "example_sentence_english": "The company is undergoing a process of industrial reconversion.", + "pos": "noun", + "word_frequency": 19953 + }, + { + "word": "ridimensionare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to resize;to scale down;to re-evaluate", + "romanization": "ridimensionare", + "example_sentence_native": "Dobbiamo ridimensionare le nostre aspettative.", + "example_sentence_english": "We need to scale down our expectations.", + "pos": "verb", + "word_frequency": 19954 + }, + { + "word": "rinchiudere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lock up;to shut in", + "romanization": "rinchiudere", + "example_sentence_native": "Hanno dovuto rinchiudere il cane in giardino.", + "example_sentence_english": "They had to lock the dog in the garden.", + "pos": "verb", + "word_frequency": 19955 + }, + { + "word": "risanare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to restore to health;to rehabilitate;to clean up", + "romanization": "risanare", + "example_sentence_native": "Il governo sta cercando di risanare l'economia.", + "example_sentence_english": "The government is trying to restore the economy to health.", + "pos": "verb", + "word_frequency": 19956 + }, + { + "word": "risoluto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resolute;determined", + "romanization": "risoluto", + "example_sentence_native": "Era risoluto a raggiungere i suoi obiettivi.", + "example_sentence_english": "He was resolute in achieving his goals.", + "pos": "adjective", + "word_frequency": 19957 + }, + { + "word": "riutilizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reuse", + "romanization": "riutilizzare", + "example_sentence_native": "Dobbiamo imparare a riutilizzare più materiali.", + "example_sentence_english": "We need to learn to reuse more materials.", + "pos": "verb", + "word_frequency": 19958 + }, + { + "word": "rondine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swallow (bird)", + "romanization": "rondine", + "example_sentence_native": "Le rondini tornano in primavera.", + "example_sentence_english": "Swallows return in spring.", + "pos": "noun", + "word_frequency": 19959 + }, + { + "word": "roseto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rose garden", + "romanization": "roseto", + "example_sentence_native": "Il roseto del parco è bellissimo in primavera.", + "example_sentence_english": "The rose garden in the park is beautiful in spring.", + "pos": "noun", + "word_frequency": 19960 + }, + { + "word": "ruspa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulldozer", + "romanization": "ruspa", + "example_sentence_native": "La ruspa stava scavando le fondamenta per il nuovo edificio.", + "example_sentence_english": "The bulldozer was digging the foundations for the new building.", + "pos": "noun", + "word_frequency": 19961 + }, + { + "word": "sanguinante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bleeding", + "romanization": "sanguinante", + "example_sentence_native": "Aveva una ferita sanguinante sul braccio.", + "example_sentence_english": "He had a bleeding wound on his arm.", + "pos": "adjective", + "word_frequency": 19966 + }, + { + "word": "scappatoia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loophole", + "romanization": "scappatoia", + "example_sentence_native": "Hanno trovato una scappatoia nella legge.", + "example_sentence_english": "They found a loophole in the law.", + "pos": "noun", + "word_frequency": 19967 + }, + { + "word": "sedare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sedate;to quell", + "romanization": "sedare", + "example_sentence_native": "Hanno dovuto sedare il paziente prima dell'operazione.", + "example_sentence_english": "They had to sedate the patient before the operation.", + "pos": "verb", + "word_frequency": 19968 + }, + { + "word": "seggiolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small seat;car seat", + "romanization": "seggiolino", + "example_sentence_native": "Il bambino era seduto nel suo seggiolino di sicurezza.", + "example_sentence_english": "The child was sitting in his safety seat.", + "pos": "noun", + "word_frequency": 19969 + }, + { + "word": "signorino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "young gentleman", + "romanization": "signorino", + "example_sentence_native": "Il signorino è appena rientrato a casa.", + "example_sentence_english": "The young gentleman has just returned home.", + "pos": "noun", + "word_frequency": 19971 + }, + { + "word": "sionista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zionist", + "romanization": "sionista", + "example_sentence_native": "Il dibattito sul sionista è complesso e controverso.", + "example_sentence_english": "The debate on Zionism is complex and controversial.", + "pos": "noun", + "word_frequency": 19972 + }, + { + "word": "solfato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfate", + "romanization": "solfato", + "example_sentence_native": "Il solfato di rame è usato come fungicida.", + "example_sentence_english": "Copper sulfate is used as a fungicide.", + "pos": "noun", + "word_frequency": 19975 + }, + { + "word": "spartano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Spartan (person)", + "romanization": "spartano", + "example_sentence_native": "Era un vero spartano, abituato a una vita semplice.", + "example_sentence_english": "He was a true Spartan, accustomed to a simple life.", + "pos": "noun", + "word_frequency": 19977 + }, + { + "word": "spensierato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carefree", + "romanization": "spensierato", + "example_sentence_native": "Ha sempre avuto un atteggiamento spensierato verso la vita.", + "example_sentence_english": "He always had a carefree attitude towards life.", + "pos": "adjective", + "word_frequency": 19979 + }, + { + "word": "standardizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "standardization", + "romanization": "standardizzazione", + "example_sentence_native": "La standardizzazione dei processi è fondamentale per l'efficienza.", + "example_sentence_english": "The standardization of processes is fundamental for efficiency.", + "pos": "noun", + "word_frequency": 19980 + }, + { + "word": "stellina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little star;asterisk", + "romanization": "stellina", + "example_sentence_native": "Ha messo una stellina accanto al suo nome.", + "example_sentence_english": "She put a little star next to her name.", + "pos": "noun", + "word_frequency": 19982 + }, + { + "word": "surrogato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute;surrogate", + "romanization": "surrogato", + "example_sentence_native": "Il caffè di cicoria è un surrogato del caffè tradizionale.", + "example_sentence_english": "Chicory coffee is a substitute for traditional coffee.", + "pos": "noun", + "word_frequency": 19986 + }, + { + "word": "svendita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clearance sale", + "romanization": "svendita", + "example_sentence_native": "C'è una grande svendita nel negozio di abbigliamento.", + "example_sentence_english": "There's a big clearance sale at the clothing store.", + "pos": "noun", + "word_frequency": 19987 + }, + { + "word": "taiwanese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Taiwanese (person)", + "romanization": "taiwanese", + "example_sentence_native": "Ho incontrato un taiwanese molto simpatico.", + "example_sentence_english": "I met a very nice Taiwanese person.", + "pos": "noun", + "word_frequency": 19988 + }, + { + "word": "tibia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tibia;shinbone", + "romanization": "tibia", + "example_sentence_native": "Si è rotto la tibia giocando a calcio.", + "example_sentence_english": "He broke his tibia playing soccer.", + "pos": "noun", + "word_frequency": 19990 + }, + { + "word": "toma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Toma (cheese)", + "romanization": "toma", + "example_sentence_native": "Mi piace molto la toma piemontese.", + "example_sentence_english": "I really like Piedmontese Toma cheese.", + "pos": "noun", + "word_frequency": 19995 + }, + { + "word": "tombola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bingo;tombola", + "romanization": "tombola", + "example_sentence_native": "Abbiamo giocato a tombola durante le vacanze di Natale.", + "example_sentence_english": "We played tombola during the Christmas holidays.", + "pos": "noun", + "word_frequency": 19996 + }, + { + "word": "trascendentale", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "transcendental", + "romanization": "trascendentale", + "example_sentence_native": "La filosofia kantiana esplora il concetto di estetica trascendentale.", + "example_sentence_english": "Kantian philosophy explores the concept of transcendental aesthetics.", + "pos": "adjective", + "word_frequency": 19998 + }, + { + "word": "travertino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "travertine", + "romanization": "travertino", + "example_sentence_native": "Il Colosseo è costruito in travertino.", + "example_sentence_english": "The Colosseum is built of travertine.", + "pos": "noun", + "word_frequency": 20000 + }, + { + "word": "valevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valid;effective", + "romanization": "valevole", + "example_sentence_native": "Il biglietto è valevole per un mese.", + "example_sentence_english": "The ticket is valid for one month.", + "pos": "adjective", + "word_frequency": 20003 + }, + { + "word": "valva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valve (of a shell;bivalve)", + "romanization": "valva", + "example_sentence_native": "La conchiglia è composta da due valve.", + "example_sentence_english": "The shell is composed of two valves.", + "pos": "noun", + "word_frequency": 20004 + }, + { + "word": "vara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "processional float;bier", + "romanization": "vara", + "example_sentence_native": "La vara del santo è stata portata in processione.", + "example_sentence_english": "The saint's processional float was carried in procession.", + "pos": "noun", + "word_frequency": 20005 + }, + { + "word": "vegetativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vegetative", + "romanization": "vegetativo", + "example_sentence_native": "Le piante hanno una fase di crescita vegetativa.", + "example_sentence_english": "Plants have a vegetative growth phase.", + "pos": "adjective", + "word_frequency": 20006 + }, + { + "word": "additivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "additive", + "romanization": "additivo", + "example_sentence_native": "Questo prodotto non contiene additivi artificiali.", + "example_sentence_english": "This product does not contain artificial additives.", + "pos": "noun", + "word_frequency": 20017 + }, + { + "word": "addolorare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to grieve;to sadden", + "romanization": "addolorare", + "example_sentence_native": "La notizia lo ha profondamente addolorato.", + "example_sentence_english": "The news deeply saddened him.", + "pos": "verb", + "word_frequency": 20018 + }, + { + "word": "aeronautico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aeronautical", + "romanization": "aeronautico", + "example_sentence_native": "L'industria aeronautica è in crescita.", + "example_sentence_english": "The aeronautical industry is growing.", + "pos": "adjective", + "word_frequency": 20019 + }, + { + "word": "affrettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hurry;to rush", + "romanization": "affrettare", + "example_sentence_native": "Dobbiamo affrettare i preparativi.", + "example_sentence_english": "We need to hurry the preparations.", + "pos": "verb", + "word_frequency": 20020 + }, + { + "word": "aggiustamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjustment;correction", + "romanization": "aggiustamento", + "example_sentence_native": "È necessario un piccolo aggiustamento al piano.", + "example_sentence_english": "A small adjustment to the plan is necessary.", + "pos": "noun", + "word_frequency": 20022 + }, + { + "word": "altalena", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swing", + "romanization": "altalena", + "example_sentence_native": "I bambini giocano sull'altalena.", + "example_sentence_english": "The children are playing on the swing.", + "pos": "noun", + "word_frequency": 20029 + }, + { + "word": "ambire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aspire;to aim for", + "romanization": "ambire", + "example_sentence_native": "Ambiva a una carriera internazionale.", + "example_sentence_english": "He aspired to an international career.", + "pos": "verb", + "word_frequency": 20030 + }, + { + "word": "anoressia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anorexia", + "romanization": "anoressia", + "example_sentence_native": "L'anoressia è un disturbo alimentare grave.", + "example_sentence_english": "Anorexia is a serious eating disorder.", + "pos": "noun", + "word_frequency": 20031 + }, + { + "word": "applicativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "application;software", + "romanization": "applicativo", + "example_sentence_native": "Stiamo sviluppando un nuovo applicativo per smartphone.", + "example_sentence_english": "We are developing a new smartphone application.", + "pos": "noun", + "word_frequency": 20032 + }, + { + "word": "arrossire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to blush;to redden", + "romanization": "arrossire", + "example_sentence_native": "Ha arrossito quando le hanno fatto un complimento.", + "example_sentence_english": "She blushed when they complimented her.", + "pos": "verb", + "word_frequency": 20036 + }, + { + "word": "assalitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assailant;attacker", + "romanization": "assalitore", + "example_sentence_native": "L'assalitore è fuggito dopo il furto.", + "example_sentence_english": "The assailant fled after the theft.", + "pos": "noun", + "word_frequency": 20037 + }, + { + "word": "avvelenato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poisoned", + "romanization": "avvelenato", + "example_sentence_native": "Il cibo era avvelenato.", + "example_sentence_english": "The food was poisoned.", + "pos": "adjective", + "word_frequency": 20041 + }, + { + "word": "barretta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bar (e.g.;chocolate bar)", + "romanization": "barretta", + "example_sentence_native": "Ho mangiato una barretta di cioccolato.", + "example_sentence_english": "I ate a chocolate bar.", + "pos": "noun", + "word_frequency": 20045 + }, + { + "word": "bombardiere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bomber (aircraft)", + "romanization": "bombardiere", + "example_sentence_native": "Il bombardiere ha sganciato le bombe.", + "example_sentence_english": "The bomber dropped the bombs.", + "pos": "noun", + "word_frequency": 20051 + }, + { + "word": "capovolgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overturn;to flip over", + "romanization": "capovolgere", + "example_sentence_native": "Il vento forte ha fatto capovolgere la barca.", + "example_sentence_english": "The strong wind made the boat overturn.", + "pos": "verb", + "word_frequency": 20059 + }, + { + "word": "carabina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carbine;rifle", + "romanization": "carabina", + "example_sentence_native": "Il cacciatore portava una carabina.", + "example_sentence_english": "The hunter carried a carbine.", + "pos": "noun", + "word_frequency": 20060 + }, + { + "word": "celtico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Celtic", + "romanization": "celtico", + "example_sentence_native": "La cultura celtica è molto antica.", + "example_sentence_english": "Celtic culture is very ancient.", + "pos": "adjective", + "word_frequency": 20065 + }, + { + "word": "ceretta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "waxing (hair removal)", + "romanization": "ceretta", + "example_sentence_native": "Ho fatto la ceretta alle gambe.", + "example_sentence_english": "I had my legs waxed.", + "pos": "noun", + "word_frequency": 20066 + }, + { + "word": "cero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "(large) candle;taper", + "romanization": "cero", + "example_sentence_native": "Hanno acceso un cero in chiesa.", + "example_sentence_english": "They lit a candle in the church.", + "pos": "noun", + "word_frequency": 20068 + }, + { + "word": "cilindrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cylindrical", + "romanization": "cilindrico", + "example_sentence_native": "L'oggetto aveva una forma cilindrica.", + "example_sentence_english": "The object had a cylindrical shape.", + "pos": "adjective", + "word_frequency": 20070 + }, + { + "word": "ciottolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pebble;cobblestone", + "romanization": "ciottolo", + "example_sentence_native": "Il sentiero era fatto di ciottoli.", + "example_sentence_english": "The path was made of pebbles.", + "pos": "noun", + "word_frequency": 20071 + }, + { + "word": "codificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to codify;to encode", + "romanization": "codificare", + "example_sentence_native": "Dobbiamo codificare le informazioni.", + "example_sentence_english": "We need to encode the information.", + "pos": "verb", + "word_frequency": 20075 + }, + { + "word": "collettore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collector;manifold", + "romanization": "collettore", + "example_sentence_native": "Il collettore di scarico è rotto.", + "example_sentence_english": "The exhaust manifold is broken.", + "pos": "noun", + "word_frequency": 20076 + }, + { + "word": "coltre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blanket;pall;layer", + "romanization": "coltre", + "example_sentence_native": "Una coltre di neve copriva i campi.", + "example_sentence_english": "A blanket of snow covered the fields.", + "pos": "noun", + "word_frequency": 20077 + }, + { + "word": "compartimento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compartment;department", + "romanization": "compartimento", + "example_sentence_native": "Il treno aveva molti compartimenti.", + "example_sentence_english": "The train had many compartments.", + "pos": "noun", + "word_frequency": 20078 + }, + { + "word": "compattezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compactness;solidity", + "romanization": "compattezza", + "example_sentence_native": "La compattezza del terreno era sorprendente.", + "example_sentence_english": "The compactness of the soil was surprising.", + "pos": "noun", + "word_frequency": 20079 + }, + { + "word": "congedare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dismiss", + "romanization": "congedare", + "example_sentence_native": "Il capo ha deciso di congedare il dipendente.", + "example_sentence_english": "The boss decided to dismiss the employee.", + "pos": "verb", + "word_frequency": 20080 + }, + { + "word": "conico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conical", + "romanization": "conico", + "example_sentence_native": "La forma del tetto era conica.", + "example_sentence_english": "The shape of the roof was conical.", + "pos": "adjective", + "word_frequency": 20081 + }, + { + "word": "conservatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservative", + "romanization": "conservatrice", + "example_sentence_native": "Ha idee molto conservatrici sulla politica.", + "example_sentence_english": "She has very conservative ideas about politics.", + "pos": "adjective", + "word_frequency": 20083 + }, + { + "word": "contumacia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contumacy", + "romanization": "contumacia", + "example_sentence_native": "Il processo si è svolto in contumacia dell'imputato.", + "example_sentence_english": "The trial took place in the defendant's contumacy.", + "pos": "noun", + "word_frequency": 20084 + }, + { + "word": "cornetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "receiver (of a phone);croissant", + "romanization": "cornetta", + "example_sentence_native": "Ho alzato la cornetta per rispondere al telefono.", + "example_sentence_english": "I picked up the receiver to answer the phone.", + "pos": "noun", + "word_frequency": 20085 + }, + { + "word": "curante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caring;attending (doctor)", + "romanization": "curante", + "example_sentence_native": "Il medico curante ha prescritto una nuova terapia.", + "example_sentence_english": "The attending doctor prescribed a new therapy.", + "pos": "adjective", + "word_frequency": 20087 + }, + { + "word": "databile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "datable", + "romanization": "databile", + "example_sentence_native": "Il reperto archeologico è databile al terzo secolo.", + "example_sentence_english": "The archaeological find is datable to the third century.", + "pos": "adjective", + "word_frequency": 20091 + }, + { + "word": "decadere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to decay;to lapse", + "romanization": "decadere", + "example_sentence_native": "Il diritto a presentare ricorso può decadere.", + "example_sentence_english": "The right to appeal can lapse.", + "pos": "verb", + "word_frequency": 20092 + }, + { + "word": "decimale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decimal", + "romanization": "decimale", + "example_sentence_native": "Il sistema numerico che usiamo è decimale.", + "example_sentence_english": "The number system we use is decimal.", + "pos": "adjective", + "word_frequency": 20093 + }, + { + "word": "dibattere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to debate", + "romanization": "dibattere", + "example_sentence_native": "Hanno dibattuto a lungo sulla questione.", + "example_sentence_english": "They debated the issue for a long time.", + "pos": "verb", + "word_frequency": 20103 + }, + { + "word": "dilagare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to spread;to overflow", + "romanization": "dilagare", + "example_sentence_native": "La notizia ha iniziato a dilagare rapidamente.", + "example_sentence_english": "The news began to spread rapidly.", + "pos": "verb", + "word_frequency": 20106 + }, + { + "word": "dotare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equip;to endow", + "romanization": "dotare", + "example_sentence_native": "L'azienda ha deciso di dotare tutti i dipendenti di nuovi computer.", + "example_sentence_english": "The company decided to equip all employees with new computers.", + "pos": "verb", + "word_frequency": 20107 + }, + { + "word": "egocentrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "egocentric", + "romanization": "egocentrico", + "example_sentence_native": "Il suo comportamento egocentrico infastidisce tutti.", + "example_sentence_english": "His egocentric behavior annoys everyone.", + "pos": "adjective", + "word_frequency": 20112 + }, + { + "word": "elettromagnetico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "electromagnetic", + "romanization": "elettromagnetico", + "example_sentence_native": "Le onde elettromagnetiche sono invisibili.", + "example_sentence_english": "Electromagnetic waves are invisible.", + "pos": "adjective", + "word_frequency": 20113 + }, + { + "word": "emporio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emporium;general store", + "romanization": "emporio", + "example_sentence_native": "L'emporio vende un po' di tutto.", + "example_sentence_english": "The general store sells a bit of everything.", + "pos": "noun", + "word_frequency": 20115 + }, + { + "word": "emulazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "emulation", + "romanization": "emulazione", + "example_sentence_native": "L'emulazione di sistemi antichi è comune in informatica.", + "example_sentence_english": "The emulation of old systems is common in computer science.", + "pos": "noun", + "word_frequency": 20116 + }, + { + "word": "entroterra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hinterland;inland", + "romanization": "entroterra", + "example_sentence_native": "Hanno deciso di esplorare l'entroterra.", + "example_sentence_english": "They decided to explore the hinterland.", + "pos": "noun", + "word_frequency": 20117 + }, + { + "word": "escursionista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hiker", + "romanization": "escursionista", + "example_sentence_native": "L'escursionista ha raggiunto la cima della montagna.", + "example_sentence_english": "The hiker reached the top of the mountain.", + "pos": "noun", + "word_frequency": 20120 + }, + { + "word": "estirpare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to uproot;to eradicate", + "romanization": "estirpare", + "example_sentence_native": "È difficile estirpare le erbacce dal giardino.", + "example_sentence_english": "It's difficult to uproot the weeds from the garden.", + "pos": "verb", + "word_frequency": 20121 + }, + { + "word": "estro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inspiration;flair;whim", + "romanization": "estro", + "example_sentence_native": "L'artista ha avuto un estro improvviso e ha creato un capolavoro.", + "example_sentence_english": "The artist had a sudden inspiration and created a masterpiece.", + "pos": "noun", + "word_frequency": 20122 + }, + { + "word": "fiuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sense of smell;flair;intuition", + "romanization": "fiuto", + "example_sentence_native": "Il cane poliziotto ha un fiuto eccezionale per trovare le droghe.", + "example_sentence_english": "The police dog has an exceptional sense of smell for finding drugs.", + "pos": "noun", + "word_frequency": 20126 + }, + { + "word": "gelsomino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jasmine", + "romanization": "gelsomino", + "example_sentence_native": "Il profumo del gelsomino in fiore è meraviglioso.", + "example_sentence_english": "The scent of blooming jasmine is wonderful.", + "pos": "noun", + "word_frequency": 20131 + }, + { + "word": "ghirlanda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "garland;wreath", + "romanization": "ghirlanda", + "example_sentence_native": "Abbiamo appeso una ghirlanda di fiori alla porta.", + "example_sentence_english": "We hung a flower garland on the door.", + "pos": "noun", + "word_frequency": 20133 + }, + { + "word": "glicemia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blood sugar;glycemia", + "romanization": "glicemia", + "example_sentence_native": "Il medico ha controllato la sua glicemia.", + "example_sentence_english": "The doctor checked his blood sugar.", + "pos": "noun", + "word_frequency": 20134 + }, + { + "word": "impassibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impassive;unperturbed", + "romanization": "impassibile", + "example_sentence_native": "Rimase impassibile di fronte alle critiche.", + "example_sentence_english": "He remained impassive in the face of criticism.", + "pos": "adjective", + "word_frequency": 20143 + }, + { + "word": "impoverimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "impoverishment;depletion", + "romanization": "impoverimento", + "example_sentence_native": "L'impoverimento del suolo è un problema serio.", + "example_sentence_english": "Soil depletion is a serious problem.", + "pos": "noun", + "word_frequency": 20144 + }, + { + "word": "impresario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impresario;manager (of artists;events)", + "romanization": "impresario", + "example_sentence_native": "L'impresario ha organizzato il concerto.", + "example_sentence_english": "The impresario organized the concert.", + "pos": "noun", + "word_frequency": 20145 + }, + { + "word": "incasinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mess up;to complicate", + "romanization": "incasinare", + "example_sentence_native": "Ho incasinato tutto il lavoro.", + "example_sentence_english": "I messed up all the work.", + "pos": "verb", + "word_frequency": 20146 + }, + { + "word": "incatenare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to chain;to shackle", + "romanization": "incatenare", + "example_sentence_native": "Hanno incatenato il prigioniero al muro.", + "example_sentence_english": "They chained the prisoner to the wall.", + "pos": "verb", + "word_frequency": 20147 + }, + { + "word": "infermieristico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nursing (adj.);related to nursing", + "romanization": "infermieristico", + "example_sentence_native": "Ha scelto la carriera infermieristica.", + "example_sentence_english": "She chose a nursing career.", + "pos": "adjective", + "word_frequency": 20149 + }, + { + "word": "ininterrotto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uninterrupted;continuous", + "romanization": "ininterrotto", + "example_sentence_native": "Il rumore era ininterrotto per ore.", + "example_sentence_english": "The noise was uninterrupted for hours.", + "pos": "adjective", + "word_frequency": 20150 + }, + { + "word": "insoddisfare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dissatisfy;to displease", + "romanization": "insoddisfare", + "example_sentence_native": "La sua risposta mi ha insoddisfatto.", + "example_sentence_english": "His answer dissatisfied me.", + "pos": "verb", + "word_frequency": 20151 + }, + { + "word": "intensificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intensify", + "romanization": "intensificare", + "example_sentence_native": "Dobbiamo intensificare i nostri sforzi.", + "example_sentence_english": "We need to intensify our efforts.", + "pos": "verb", + "word_frequency": 20152 + }, + { + "word": "intraprendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enteprising;resourceful", + "romanization": "intraprendente", + "example_sentence_native": "È una persona molto intraprendente.", + "example_sentence_english": "He is a very enterprising person.", + "pos": "adjective", + "word_frequency": 20154 + }, + { + "word": "inutilizzabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unusable", + "romanization": "inutilizzabile", + "example_sentence_native": "Il vecchio telefono è ormai inutilizzabile.", + "example_sentence_english": "The old phone is now unusable.", + "pos": "adjective", + "word_frequency": 20155 + }, + { + "word": "lampione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lamppost;streetlamp", + "romanization": "lampione", + "example_sentence_native": "Il lampione illumina la strada di notte.", + "example_sentence_english": "The lamppost illuminates the street at night.", + "pos": "noun", + "word_frequency": 20157 + }, + { + "word": "lattuga", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "lettuce", + "romanization": "lattuga", + "example_sentence_native": "Mi piace l'insalata con la lattuga fresca.", + "example_sentence_english": "I like salad with fresh lettuce.", + "pos": "noun", + "word_frequency": 20158 + }, + { + "word": "lingotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingot", + "romanization": "lingotto", + "example_sentence_native": "Il lingotto d'oro brillava alla luce.", + "example_sentence_english": "The gold ingot shone in the light.", + "pos": "noun", + "word_frequency": 20161 + }, + { + "word": "lumen", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lumen", + "romanization": "lumen", + "example_sentence_native": "La lampadina ha una potenza di 800 lumen.", + "example_sentence_english": "The light bulb has a power of 800 lumens.", + "pos": "noun", + "word_frequency": 20166 + }, + { + "word": "madonnina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little Madonna statue", + "romanization": "madonnina", + "example_sentence_native": "Sul tetto del Duomo di Milano c'è la Madonnina.", + "example_sentence_english": "On the roof of Milan Cathedral there is the Madonnina.", + "pos": "noun", + "word_frequency": 20167 + }, + { + "word": "magnolia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magnolia", + "romanization": "magnolia", + "example_sentence_native": "Il giardino è pieno di bellissime magnolie.", + "example_sentence_english": "The garden is full of beautiful magnolias.", + "pos": "noun", + "word_frequency": 20168 + }, + { + "word": "mammella", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mammary gland;breast", + "romanization": "mammella", + "example_sentence_native": "La mammella produce latte per il neonato.", + "example_sentence_english": "The mammary gland produces milk for the newborn.", + "pos": "noun", + "word_frequency": 20171 + }, + { + "word": "mediale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "medial", + "romanization": "mediale", + "example_sentence_native": "La posizione mediale è al centro.", + "example_sentence_english": "The medial position is in the center.", + "pos": "adjective", + "word_frequency": 20176 + }, + { + "word": "millenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "millennial;thousand-year-old", + "romanization": "millenario", + "example_sentence_native": "L'albero è un esemplare millenario.", + "example_sentence_english": "The tree is a millennial specimen.", + "pos": "adjective", + "word_frequency": 20177 + }, + { + "word": "mitologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mythological", + "romanization": "mitologico", + "example_sentence_native": "Le creature mitologiche affascinano da sempre l'uomo.", + "example_sentence_english": "Mythological creatures have always fascinated humans.", + "pos": "adjective", + "word_frequency": 20178 + }, + { + "word": "moltiplicatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multiplier", + "romanization": "moltiplicatore", + "example_sentence_native": "Il moltiplicatore economico è un concetto chiave.", + "example_sentence_english": "The economic multiplier is a key concept.", + "pos": "noun", + "word_frequency": 20179 + }, + { + "word": "mondano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worldly;socialite", + "romanization": "mondano", + "example_sentence_native": "Conduce una vita molto mondana.", + "example_sentence_english": "He leads a very worldly life.", + "pos": "adjective", + "word_frequency": 20180 + }, + { + "word": "monnezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "garbage;trash (colloquial)", + "romanization": "monnezza", + "example_sentence_native": "Butta la monnezza nel cassonetto.", + "example_sentence_english": "Throw the garbage in the bin.", + "pos": "noun", + "word_frequency": 20183 + }, + { + "word": "natio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "native;birthplace (as in 'paese natio')", + "romanization": "natio", + "example_sentence_native": "È tornato nel suo paese natio dopo molti anni.", + "example_sentence_english": "He returned to his native country after many years.", + "pos": "adjective", + "word_frequency": 20188 + }, + { + "word": "newyorkese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "New Yorker", + "romanization": "newyorkese", + "example_sentence_native": "È un vero newyorkese, nato e cresciuto lì.", + "example_sentence_english": "He is a true New Yorker, born and raised there.", + "pos": "noun", + "word_frequency": 20197 + }, + { + "word": "nientemeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "no less than;none other than", + "romanization": "nientemeno", + "example_sentence_native": "Ha sposato nientemeno che il principe.", + "example_sentence_english": "She married no less than the prince.", + "pos": "adverb", + "word_frequency": 20198 + }, + { + "word": "noncuranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carelessness;nonchalance", + "romanization": "noncuranza", + "example_sentence_native": "La sua noncuranza ha causato molti problemi.", + "example_sentence_english": "His carelessness caused many problems.", + "pos": "noun", + "word_frequency": 20199 + }, + { + "word": "oligarchia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oligarchy", + "romanization": "oligarchia", + "example_sentence_native": "L'oligarchia detiene il potere economico.", + "example_sentence_english": "The oligarchy holds economic power.", + "pos": "noun", + "word_frequency": 20202 + }, + { + "word": "omogeneità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homogeneity", + "romanization": "omogeneità", + "example_sentence_native": "C'è una grande omogeneità nel gruppo.", + "example_sentence_english": "There is great homogeneity in the group.", + "pos": "noun", + "word_frequency": 20203 + }, + { + "word": "orsetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teddy bear;little bear", + "romanization": "orsetto", + "example_sentence_native": "Il bambino dorme con il suo orsetto.", + "example_sentence_english": "The child sleeps with his teddy bear.", + "pos": "noun", + "word_frequency": 20206 + }, + { + "word": "pacchia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "easy life;good times", + "romanization": "pacchia", + "example_sentence_native": "È finita la pacchia, ora dobbiamo lavorare.", + "example_sentence_english": "The good times are over, now we have to work.", + "pos": "noun", + "word_frequency": 20208 + }, + { + "word": "pacificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pacification;appeasement", + "romanization": "pacificazione", + "example_sentence_native": "Si spera in una rapida pacificazione della regione.", + "example_sentence_english": "A rapid pacification of the region is hoped for.", + "pos": "noun", + "word_frequency": 20209 + }, + { + "word": "palestrina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small gym;baby gym", + "romanization": "palestrina", + "example_sentence_native": "Il neonato gioca nella sua palestrina.", + "example_sentence_english": "The baby plays in his baby gym.", + "pos": "noun", + "word_frequency": 20210 + }, + { + "word": "parmigiana", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parmigiana (dish;e.g.;eggplant parmigiana)", + "romanization": "parmigiana", + "example_sentence_native": "Adoro la parmigiana di melanzane.", + "example_sentence_english": "I love eggplant parmigiana.", + "pos": "noun", + "word_frequency": 20211 + }, + { + "word": "patina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patina;sheen", + "romanization": "patina", + "example_sentence_native": "I vecchi mobili avevano una bella patina.", + "example_sentence_english": "The old furniture had a beautiful patina.", + "pos": "noun", + "word_frequency": 20212 + }, + { + "word": "personificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "personification", + "romanization": "personificazione", + "example_sentence_native": "La giustizia è spesso rappresentata come una personificazione.", + "example_sentence_english": "Justice is often represented as a personification.", + "pos": "noun", + "word_frequency": 20215 + }, + { + "word": "pervadere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to pervade;to permeate", + "romanization": "pervadere", + "example_sentence_native": "Un senso di calma pervadeva la stanza.", + "example_sentence_english": "A sense of calm pervaded the room.", + "pos": "verb", + "word_frequency": 20216 + }, + { + "word": "pilone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pylon;pillar", + "romanization": "pilone", + "example_sentence_native": "Il ponte è sostenuto da grandi piloni.", + "example_sentence_english": "The bridge is supported by large pylons.", + "pos": "noun", + "word_frequency": 20219 + }, + { + "word": "planner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planner;scheduler", + "romanization": "planner", + "example_sentence_native": "Ho comprato un nuovo planner per organizzare le mie giornate.", + "example_sentence_english": "I bought a new planner to organize my days.", + "pos": "noun", + "word_frequency": 20222 + }, + { + "word": "plot", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plot (of a story)", + "romanization": "plot", + "example_sentence_native": "Il plot del film era molto interessante.", + "example_sentence_english": "The plot of the movie was very interesting.", + "pos": "noun", + "word_frequency": 20223 + }, + { + "word": "posticino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small place;cozy spot", + "romanization": "posticino", + "example_sentence_native": "Abbiamo trovato un posticino carino per cenare.", + "example_sentence_english": "We found a nice small place to have dinner.", + "pos": "noun", + "word_frequency": 20225 + }, + { + "word": "posticipare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to postpone;to delay", + "romanization": "posticipare", + "example_sentence_native": "Dobbiamo posticipare la riunione a domani.", + "example_sentence_english": "We have to postpone the meeting until tomorrow.", + "pos": "verb", + "word_frequency": 20226 + }, + { + "word": "pozzetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small well;cockpit (of a boat);inspection pit", + "romanization": "pozzetto", + "example_sentence_native": "Il pozzetto della barca era pieno d'acqua.", + "example_sentence_english": "The boat's cockpit was full of water.", + "pos": "noun", + "word_frequency": 20227 + }, + { + "word": "pressante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressing;urgent", + "romanization": "pressante", + "example_sentence_native": "Ho un impegno pressante.", + "example_sentence_english": "I have a pressing commitment.", + "pos": "adjective", + "word_frequency": 20228 + }, + { + "word": "print", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "print (as in 'in print' or 'a print')", + "romanization": "print", + "example_sentence_native": "La rivista è andata in print.", + "example_sentence_english": "The magazine went to print.", + "pos": "noun", + "word_frequency": 20229 + }, + { + "word": "pugnalata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stab;dagger blow", + "romanization": "pugnalata", + "example_sentence_native": "Ha ricevuto una pugnalata alla schiena.", + "example_sentence_english": "He received a stab in the back.", + "pos": "noun", + "word_frequency": 20232 + }, + { + "word": "rabbioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rabid;furious;angry", + "romanization": "rabbioso", + "example_sentence_native": "Era così rabbioso che non riusciva a parlare.", + "example_sentence_english": "He was so furious he couldn't speak.", + "pos": "adjective", + "word_frequency": 20235 + }, + { + "word": "racket", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racket (organized crime)", + "romanization": "racket", + "example_sentence_native": "La polizia ha smantellato un racket.", + "example_sentence_english": "The police dismantled a racket.", + "pos": "noun", + "word_frequency": 20236 + }, + { + "word": "rasare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shave;to mow;to graze", + "romanization": "rasare", + "example_sentence_native": "Devo rasare il prato.", + "example_sentence_english": "I have to mow the lawn.", + "pos": "verb", + "word_frequency": 20237 + }, + { + "word": "recedere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to recede;to withdraw;to back out", + "romanization": "recedere", + "example_sentence_native": "Non può recedere dal contratto.", + "example_sentence_english": "He cannot withdraw from the contract.", + "pos": "verb", + "word_frequency": 20239 + }, + { + "word": "reclama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claim;protest", + "romanization": "reclama", + "example_sentence_native": "La sua reclama è stata respinta.", + "example_sentence_english": "Her claim was rejected.", + "pos": "noun", + "word_frequency": 20240 + }, + { + "word": "remunerazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "remuneration;payment", + "romanization": "remunerazione", + "example_sentence_native": "La remunerazione per il lavoro è stata equa.", + "example_sentence_english": "The remuneration for the work was fair.", + "pos": "noun", + "word_frequency": 20241 + }, + { + "word": "riconquista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reconquest;regaining", + "romanization": "riconquista", + "example_sentence_native": "La riconquista della città è stata difficile.", + "example_sentence_english": "The reconquest of the city was difficult.", + "pos": "noun", + "word_frequency": 20244 + }, + { + "word": "ricucire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mend;to sew back together", + "romanization": "ricucire", + "example_sentence_native": "Devo ricucire questo strappo nei pantaloni.", + "example_sentence_english": "I need to mend this tear in the pants.", + "pos": "verb", + "word_frequency": 20245 + }, + { + "word": "ripetitivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repetitive", + "romanization": "ripetitivo", + "example_sentence_native": "Il suo lavoro è molto ripetitivo.", + "example_sentence_english": "His job is very repetitive.", + "pos": "adjective", + "word_frequency": 20246 + }, + { + "word": "riproposta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "re-proposal;re-submission", + "romanization": "riproposta", + "example_sentence_native": "La riproposta del progetto è stata accolta.", + "example_sentence_english": "The re-proposal of the project was accepted.", + "pos": "noun", + "word_frequency": 20247 + }, + { + "word": "sansa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pomace (especially olive pomace)", + "romanization": "sansa", + "example_sentence_native": "La sansa di olive viene usata per produrre olio.", + "example_sentence_english": "Olive pomace is used to produce oil.", + "pos": "noun", + "word_frequency": 20251 + }, + { + "word": "scatenante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triggering;unleashing", + "romanization": "scatenante", + "example_sentence_native": "Lo stress è un fattore scatenante per molte malattie.", + "example_sentence_english": "Stress is a triggering factor for many diseases.", + "pos": "adjective", + "word_frequency": 20253 + }, + { + "word": "scroto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scrotum", + "romanization": "scroto", + "example_sentence_native": "Il medico ha esaminato lo scroto del paziente.", + "example_sentence_english": "The doctor examined the patient's scrotum.", + "pos": "noun", + "word_frequency": 20254 + }, + { + "word": "seppia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cuttlefish", + "romanization": "seppia", + "example_sentence_native": "Abbiamo mangiato spaghetti al nero di seppia.", + "example_sentence_english": "We ate spaghetti with cuttlefish ink.", + "pos": "noun", + "word_frequency": 20256 + }, + { + "word": "sequela", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sequence;succession (often negative connotation)", + "romanization": "sequela", + "example_sentence_native": "Una sequela di eventi sfortunati ha rovinato la giornata.", + "example_sentence_english": "A sequence of unfortunate events ruined the day.", + "pos": "noun", + "word_frequency": 20257 + }, + { + "word": "sesamo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sesame", + "romanization": "sesamo", + "example_sentence_native": "I semi di sesamo sono usati in cucina.", + "example_sentence_english": "Sesame seeds are used in cooking.", + "pos": "noun", + "word_frequency": 20259 + }, + { + "word": "setaccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sieve;sifter", + "romanization": "setaccio", + "example_sentence_native": "Ho usato un setaccio per la farina.", + "example_sentence_english": "I used a sieve for the flour.", + "pos": "noun", + "word_frequency": 20260 + }, + { + "word": "sindone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shroud (especially the Shroud of Turin)", + "romanization": "sindone", + "example_sentence_native": "La Sindone di Torino è un oggetto di grande interesse.", + "example_sentence_english": "The Shroud of Turin is an object of great interest.", + "pos": "noun", + "word_frequency": 20261 + }, + { + "word": "snello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slender;slim;agile", + "romanization": "snello", + "example_sentence_native": "Ha una figura snella ed elegante.", + "example_sentence_english": "She has a slender and elegant figure.", + "pos": "adjective", + "word_frequency": 20264 + }, + { + "word": "sorreggere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to support;to hold up", + "romanization": "sorreggere", + "example_sentence_native": "Le colonne sorreggono il tetto dell'edificio.", + "example_sentence_english": "The columns support the roof of the building.", + "pos": "verb", + "word_frequency": 20267 + }, + { + "word": "sottotitolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to subtitle", + "romanization": "sottotitolare", + "example_sentence_native": "Dobbiamo sottotitolare il film per il pubblico straniero.", + "example_sentence_english": "We need to subtitle the film for the foreign audience.", + "pos": "verb", + "word_frequency": 20268 + }, + { + "word": "splendidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "splendidly;magnificently", + "romanization": "splendidamente", + "example_sentence_native": "Ha cantato splendidamente al concerto.", + "example_sentence_english": "She sang splendidly at the concert.", + "pos": "adverb", + "word_frequency": 20273 + }, + { + "word": "spogliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to undress;to strip;to divest", + "romanization": "spogliare", + "example_sentence_native": "Si è spogliato prima di entrare in doccia.", + "example_sentence_english": "He undressed before getting into the shower.", + "pos": "verb", + "word_frequency": 20274 + }, + { + "word": "squilla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mantis shrimp", + "romanization": "squilla", + "example_sentence_native": "La squilla è un crostaceo molto apprezzato in cucina.", + "example_sentence_english": "The mantis shrimp is a highly appreciated crustacean in cooking.", + "pos": "noun", + "word_frequency": 20275 + }, + { + "word": "subacqueo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "underwater;diving", + "romanization": "subacqueo", + "example_sentence_native": "Ha una passione per la fotografia subacquea.", + "example_sentence_english": "He has a passion for underwater photography.", + "pos": "adjective", + "word_frequency": 20276 + }, + { + "word": "sughero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cork", + "romanization": "sughero", + "example_sentence_native": "Il tappo di sughero si è rotto.", + "example_sentence_english": "The cork stopper broke.", + "pos": "noun", + "word_frequency": 20278 + }, + { + "word": "superbia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pride;arrogance;haughtiness", + "romanization": "superbia", + "example_sentence_native": "La sua superbia gli ha impedito di chiedere aiuto.", + "example_sentence_english": "His pride prevented him from asking for help.", + "pos": "noun", + "word_frequency": 20279 + }, + { + "word": "svista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oversight;slip;blunder", + "romanization": "svista", + "example_sentence_native": "È stata solo una svista da parte mia.", + "example_sentence_english": "It was just an oversight on my part.", + "pos": "noun", + "word_frequency": 20282 + }, + { + "word": "terremotato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "earthquake-stricken;earthquake victim", + "romanization": "terremotato", + "example_sentence_native": "La popolazione terremotata ha bisogno di aiuto.", + "example_sentence_english": "The earthquake-stricken population needs help.", + "pos": "adjective", + "word_frequency": 20285 + }, + { + "word": "tester", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tester", + "romanization": "tester", + "example_sentence_native": "Abbiamo bisogno di un buon tester per il software.", + "example_sentence_english": "We need a good tester for the software.", + "pos": "noun", + "word_frequency": 20287 + }, + { + "word": "torsione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torsion;twist", + "romanization": "torsione", + "example_sentence_native": "La torsione del cavo ha causato un problema.", + "example_sentence_english": "The torsion of the cable caused a problem.", + "pos": "noun", + "word_frequency": 20290 + }, + { + "word": "tossicodipendenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drug addiction", + "romanization": "tossicodipendenza", + "example_sentence_native": "La tossicodipendenza è un grave problema sociale.", + "example_sentence_english": "Drug addiction is a serious social problem.", + "pos": "noun", + "word_frequency": 20291 + }, + { + "word": "tovaglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tablecloth", + "romanization": "tovaglia", + "example_sentence_native": "Metti la tovaglia pulita sul tavolo.", + "example_sentence_english": "Put the clean tablecloth on the table.", + "pos": "noun", + "word_frequency": 20292 + }, + { + "word": "tracolla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shoulder strap;cross-body bag", + "romanization": "tracolla", + "example_sentence_native": "Indossava una borsa a tracolla.", + "example_sentence_english": "She was wearing a cross-body bag.", + "pos": "noun", + "word_frequency": 20293 + }, + { + "word": "umoristico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "humorous;funny", + "romanization": "umoristico", + "example_sentence_native": "Ha raccontato una storia molto umoristica.", + "example_sentence_english": "He told a very humorous story.", + "pos": "adjective", + "word_frequency": 20295 + }, + { + "word": "uruguaiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Uruguayan", + "romanization": "uruguaiano", + "example_sentence_native": "È un calciatore uruguaiano.", + "example_sentence_english": "He is a Uruguayan footballer.", + "pos": "adjective", + "word_frequency": 20296 + }, + { + "word": "velleità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mere intention;half-hearted attempt;whim", + "romanization": "velleità", + "example_sentence_native": "Le sue velleità artistiche non hanno mai avuto successo.", + "example_sentence_english": "His artistic whims never succeeded.", + "pos": "noun", + "word_frequency": 20298 + }, + { + "word": "villano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "villain;peasant", + "romanization": "villano", + "example_sentence_native": "Il villano del film era molto crudele.", + "example_sentence_english": "The villain of the film was very cruel.", + "pos": "noun", + "word_frequency": 20304 + }, + { + "word": "zavorra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ballast;dead weight", + "romanization": "zavorra", + "example_sentence_native": "La nave aveva bisogno di zavorra per stabilizzarsi.", + "example_sentence_english": "The ship needed ballast to stabilize.", + "pos": "noun", + "word_frequency": 20308 + }, + { + "word": "zebra", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "zebra", + "romanization": "zebra", + "example_sentence_native": "La zebra ha strisce bianche e nere.", + "example_sentence_english": "The zebra has black and white stripes.", + "pos": "noun", + "word_frequency": 20309 + }, + { + "word": "zoologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zoology", + "romanization": "zoologia", + "example_sentence_native": "Studia zoologia all'università.", + "example_sentence_english": "He studies zoology at university.", + "pos": "noun", + "word_frequency": 20310 + }, + { + "word": "acquerello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "watercolor", + "romanization": "acquerello", + "example_sentence_native": "Ha dipinto un bellissimo acquerello.", + "example_sentence_english": "He painted a beautiful watercolor.", + "pos": "noun", + "word_frequency": 20313 + }, + { + "word": "affaticamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatigue;tiredness", + "romanization": "affaticamento", + "example_sentence_native": "Sente un forte affaticamento dopo il lavoro.", + "example_sentence_english": "He feels strong fatigue after work.", + "pos": "noun", + "word_frequency": 20315 + }, + { + "word": "afroamericano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "African American", + "romanization": "afroamericano", + "example_sentence_native": "Molti artisti afroamericani hanno influenzato la musica.", + "example_sentence_english": "Many African American artists have influenced music.", + "pos": "adjective", + "word_frequency": 20316 + }, + { + "word": "alberghiero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hotel (adj.);hospitality (adj.)", + "romanization": "alberghiero", + "example_sentence_native": "Ha frequentato una scuola alberghiera.", + "example_sentence_english": "He attended a hotel management school.", + "pos": "adjective", + "word_frequency": 20318 + }, + { + "word": "alfiere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bishop (chess);standard-bearer", + "romanization": "alfiere", + "example_sentence_native": "L'alfiere si muove in diagonale sulla scacchiera.", + "example_sentence_english": "The bishop moves diagonally on the chessboard.", + "pos": "noun", + "word_frequency": 20319 + }, + { + "word": "allocazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "allocation", + "romanization": "allocazione", + "example_sentence_native": "L'allocazione delle risorse è stata equa.", + "example_sentence_english": "The allocation of resources was fair.", + "pos": "noun", + "word_frequency": 20323 + }, + { + "word": "altruismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "altruism", + "romanization": "altruismo", + "example_sentence_native": "Il suo altruismo è ammirevole.", + "example_sentence_english": "His altruism is admirable.", + "pos": "noun", + "word_frequency": 20325 + }, + { + "word": "ammonizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warning;caution", + "romanization": "ammonizione", + "example_sentence_native": "L'arbitro ha dato un'ammonizione al giocatore.", + "example_sentence_english": "The referee gave the player a warning.", + "pos": "noun", + "word_frequency": 20328 + }, + { + "word": "anfibio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amphibian", + "romanization": "anfibio", + "example_sentence_native": "La rana è un anfibio.", + "example_sentence_english": "The frog is an amphibian.", + "pos": "noun", + "word_frequency": 20329 + }, + { + "word": "aragonese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Aragonese", + "romanization": "aragonese", + "example_sentence_native": "La corona aragonese dominò il Mediterraneo.", + "example_sentence_english": "The Aragonese crown dominated the Mediterranean.", + "pos": "adjective", + "word_frequency": 20330 + }, + { + "word": "asportazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "removal;excision", + "romanization": "asportazione", + "example_sentence_native": "È stata necessaria l'asportazione del tumore.", + "example_sentence_english": "The removal of the tumor was necessary.", + "pos": "noun", + "word_frequency": 20331 + }, + { + "word": "avventuroso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adventurous", + "romanization": "avventuroso", + "example_sentence_native": "È una persona molto avventurosa.", + "example_sentence_english": "He is a very adventurous person.", + "pos": "adjective", + "word_frequency": 20333 + }, + { + "word": "avvoltoio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vulture", + "romanization": "avvoltoio", + "example_sentence_native": "L'avvoltoio volteggiava nel cielo.", + "example_sentence_english": "The vulture circled in the sky.", + "pos": "noun", + "word_frequency": 20334 + }, + { + "word": "benestare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "approval;consent", + "romanization": "benestare", + "example_sentence_native": "Abbiamo ricevuto il benestare per il progetto.", + "example_sentence_english": "We received approval for the project.", + "pos": "noun", + "word_frequency": 20337 + }, + { + "word": "bong", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bong", + "romanization": "bong", + "example_sentence_native": "Ha comprato un nuovo bong per la sua collezione.", + "example_sentence_english": "He bought a new bong for his collection.", + "pos": "noun", + "word_frequency": 20338 + }, + { + "word": "brochure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brochure", + "romanization": "brochure", + "example_sentence_native": "Ho preso una brochure informativa all'ufficio turistico.", + "example_sentence_english": "I took an informational brochure at the tourist office.", + "pos": "noun", + "word_frequency": 20339 + }, + { + "word": "bruco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caterpillar", + "romanization": "bruco", + "example_sentence_native": "Il bruco si trasformerà in farfalla.", + "example_sentence_english": "The caterpillar will transform into a butterfly.", + "pos": "noun", + "word_frequency": 20340 + }, + { + "word": "bullone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bolt (fastener)", + "romanization": "bullone", + "example_sentence_native": "Stringi bene il bullone per sicurezza.", + "example_sentence_english": "Tighten the bolt well for safety.", + "pos": "noun", + "word_frequency": 20341 + }, + { + "word": "buonista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "do-gooder (often pejorative)", + "romanization": "buonista", + "example_sentence_native": "Lo hanno accusato di essere un buonista.", + "example_sentence_english": "They accused him of being a do-gooder.", + "pos": "adjective", + "word_frequency": 20342 + }, + { + "word": "cacare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shit;to defecate (vulgar)", + "romanization": "cacare", + "example_sentence_native": "Il bambino ha bisogno di cacare.", + "example_sentence_english": "The child needs to poop.", + "pos": "verb", + "word_frequency": 20343 + }, + { + "word": "caffettiera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coffee maker;moka pot", + "romanization": "caffettiera", + "example_sentence_native": "Ho messo la caffettiera sul fuoco.", + "example_sentence_english": "I put the coffee maker on the stove.", + "pos": "noun", + "word_frequency": 20344 + }, + { + "word": "cambiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bill of exchange;promissory note", + "romanization": "cambiale", + "example_sentence_native": "Ha pagato il debito con una cambiale.", + "example_sentence_english": "He paid the debt with a bill of exchange.", + "pos": "noun", + "word_frequency": 20345 + }, + { + "word": "campionamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sampling", + "romanization": "campionamento", + "example_sentence_native": "Il campionamento dei dati è essenziale per la ricerca.", + "example_sentence_english": "Data sampling is essential for research.", + "pos": "noun", + "word_frequency": 20346 + }, + { + "word": "cannibale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannibal", + "romanization": "cannibale", + "example_sentence_native": "La tribù era accusata di pratiche cannibali.", + "example_sentence_english": "The tribe was accused of cannibalistic practices.", + "pos": "noun", + "word_frequency": 20348 + }, + { + "word": "capitalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitalization", + "romanization": "capitalizzazione", + "example_sentence_native": "La capitalizzazione di mercato dell'azienda è aumentata.", + "example_sentence_english": "The company's market capitalization increased.", + "pos": "noun", + "word_frequency": 20349 + }, + { + "word": "capitol", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capitol", + "romanization": "capitol", + "example_sentence_native": "Il Campidoglio è uno dei sette colli di Roma.", + "example_sentence_english": "The Capitol is one of the seven hills of Rome.", + "pos": "noun", + "word_frequency": 20350 + }, + { + "word": "capitolino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Capitoline (relating to the Capitol Hill in Rome)", + "romanization": "capitolino", + "example_sentence_native": "I Musei Capitolini si trovano sul Campidoglio.", + "example_sentence_english": "The Capitoline Museums are located on the Capitoline Hill.", + "pos": "adjective", + "word_frequency": 20351 + }, + { + "word": "caporedattore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "editor-in-chief", + "romanization": "caporedattore", + "example_sentence_native": "Il caporedattore ha approvato l'articolo.", + "example_sentence_english": "The editor-in-chief approved the article.", + "pos": "noun", + "word_frequency": 20352 + }, + { + "word": "cappio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "noose;slipknot", + "romanization": "cappio", + "example_sentence_native": "Ha fatto un cappio con la corda.", + "example_sentence_english": "He made a noose with the rope.", + "pos": "noun", + "word_frequency": 20353 + }, + { + "word": "caprone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "billy goat;old goat (derogatory)", + "romanization": "caprone", + "example_sentence_native": "Il caprone pascolava sull'erba.", + "example_sentence_english": "The billy goat was grazing on the grass.", + "pos": "noun", + "word_frequency": 20354 + }, + { + "word": "carato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carat", + "romanization": "carato", + "example_sentence_native": "Questo diamante è di due carati.", + "example_sentence_english": "This diamond is two carats.", + "pos": "noun", + "word_frequency": 20355 + }, + { + "word": "carcassa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carcass;shell (of a vehicle)", + "romanization": "carcassa", + "example_sentence_native": "Hanno trovato la carcassa di un animale nel bosco.", + "example_sentence_english": "They found the carcass of an animal in the woods.", + "pos": "noun", + "word_frequency": 20356 + }, + { + "word": "carena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hull (of a boat);fairing (of a motorcycle)", + "romanization": "carena", + "example_sentence_native": "La carena della barca era danneggiata.", + "example_sentence_english": "The hull of the boat was damaged.", + "pos": "noun", + "word_frequency": 20357 + }, + { + "word": "cassiera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cashier (female)", + "romanization": "cassiera", + "example_sentence_native": "La cassiera mi ha dato il resto.", + "example_sentence_english": "The cashier gave me the change.", + "pos": "noun", + "word_frequency": 20360 + }, + { + "word": "cavalletto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "easel;tripod;kickstand", + "romanization": "cavalletto", + "example_sentence_native": "L'artista ha posizionato la tela sul cavalletto.", + "example_sentence_english": "The artist placed the canvas on the easel.", + "pos": "noun", + "word_frequency": 20361 + }, + { + "word": "celia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "joke;jest", + "romanization": "celia", + "example_sentence_native": "Non capisco la sua celia.", + "example_sentence_english": "I don't understand his joke.", + "pos": "noun", + "word_frequency": 20362 + }, + { + "word": "censore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "censor", + "romanization": "censore", + "example_sentence_native": "Il censore ha tagliato alcune scene dal film.", + "example_sentence_english": "The censor cut some scenes from the film.", + "pos": "noun", + "word_frequency": 20363 + }, + { + "word": "circoscrivere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to circumscribe;to limit", + "romanization": "circoscrivere", + "example_sentence_native": "Dobbiamo circoscrivere il problema per trovare una soluzione.", + "example_sentence_english": "We need to circumscribe the problem to find a solution.", + "pos": "verb", + "word_frequency": 20368 + }, + { + "word": "coagulazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coagulation", + "romanization": "coagulazione", + "example_sentence_native": "La coagulazione del sangue è un processo vitale.", + "example_sentence_english": "Blood coagulation is a vital process.", + "pos": "noun", + "word_frequency": 20370 + }, + { + "word": "compilatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compiler (computing);editor", + "romanization": "compilatore", + "example_sentence_native": "Il compilatore traduce il codice sorgente in codice macchina.", + "example_sentence_english": "The compiler translates source code into machine code.", + "pos": "noun", + "word_frequency": 20373 + }, + { + "word": "conciso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "concise", + "romanization": "conciso", + "example_sentence_native": "La sua risposta è stata breve e concisa.", + "example_sentence_english": "His answer was short and concise.", + "pos": "adjective", + "word_frequency": 20374 + }, + { + "word": "concistoro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "consistory", + "romanization": "concistoro", + "example_sentence_native": "Il Papa ha convocato un concistoro per nominare nuovi cardinali.", + "example_sentence_english": "The Pope convened a consistory to appoint new cardinals.", + "pos": "noun", + "word_frequency": 20375 + }, + { + "word": "condensatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capacitor;condenser", + "romanization": "condensatore", + "example_sentence_native": "Il condensatore è un componente elettronico essenziale.", + "example_sentence_english": "The capacitor is an essential electronic component.", + "pos": "noun", + "word_frequency": 20376 + }, + { + "word": "confutare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to refute;to disprove", + "romanization": "confutare", + "example_sentence_native": "È difficile confutare le sue argomentazioni.", + "example_sentence_english": "It is difficult to refute his arguments.", + "pos": "verb", + "word_frequency": 20377 + }, + { + "word": "congelare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to freeze", + "romanization": "congelare", + "example_sentence_native": "Dobbiamo congelare il cibo per conservarlo.", + "example_sentence_english": "We need to freeze the food to preserve it.", + "pos": "verb", + "word_frequency": 20378 + }, + { + "word": "congrega", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congregation;coven", + "romanization": "congrega", + "example_sentence_native": "Si è unito a una congrega segreta.", + "example_sentence_english": "He joined a secret coven.", + "pos": "noun", + "word_frequency": 20379 + }, + { + "word": "conservatorismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conservatism", + "romanization": "conservatorismo", + "example_sentence_native": "Il conservatorismo è una corrente politica.", + "example_sentence_english": "Conservatism is a political current.", + "pos": "noun", + "word_frequency": 20380 + }, + { + "word": "contestuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contextual", + "romanization": "contestuale", + "example_sentence_native": "Dobbiamo considerare il significato contestuale della frase.", + "example_sentence_english": "We need to consider the contextual meaning of the phrase.", + "pos": "adjective", + "word_frequency": 20382 + }, + { + "word": "convitto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boarding school;residential college", + "romanization": "convitto", + "example_sentence_native": "Ha studiato in un convitto per molti anni.", + "example_sentence_english": "He studied in a boarding school for many years.", + "pos": "noun", + "word_frequency": 20383 + }, + { + "word": "usato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "used goods;second-hand", + "romanization": "usato", + "example_sentence_native": "Ho comprato un'auto usata al mercato dell'usato.", + "example_sentence_english": "I bought a used car at the second-hand market.", + "pos": "noun", + "word_frequency": 20388 + }, + { + "word": "destituire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dismiss;to depose", + "romanization": "destituire", + "example_sentence_native": "Il presidente è stato destituito dal suo incarico.", + "example_sentence_english": "The president was dismissed from his post.", + "pos": "verb", + "word_frequency": 20390 + }, + { + "word": "diciassettenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "seventeen-year-old", + "romanization": "diciassettenne", + "example_sentence_native": "Mio fratello è un ragazzo diciassettenne.", + "example_sentence_english": "My brother is a seventeen-year-old boy.", + "pos": "adjective", + "word_frequency": 20391 + }, + { + "word": "diramare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to branch out;to spread (news)", + "romanization": "diramare", + "example_sentence_native": "La notizia si è diramata rapidamente.", + "example_sentence_english": "The news spread rapidly.", + "pos": "verb", + "word_frequency": 20393 + }, + { + "word": "disabilitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disable", + "romanization": "disabilitare", + "example_sentence_native": "Devi disabilitare il firewall per installare il software.", + "example_sentence_english": "You need to disable the firewall to install the software.", + "pos": "verb", + "word_frequency": 20394 + }, + { + "word": "discriminatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discriminatory", + "romanization": "discriminatorio", + "example_sentence_native": "Non tolleriamo alcun comportamento discriminatorio.", + "example_sentence_english": "We do not tolerate any discriminatory behavior.", + "pos": "adjective", + "word_frequency": 20395 + }, + { + "word": "disdire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cancel (an appointment;reservation);to retract", + "romanization": "disdire", + "example_sentence_native": "Ho dovuto disdire l'appuntamento dal dentista.", + "example_sentence_english": "I had to cancel the dentist appointment.", + "pos": "verb", + "word_frequency": 20396 + }, + { + "word": "dissimile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissimilar;unlike", + "romanization": "dissimile", + "example_sentence_native": "Le loro opinioni sono completamente dissimili.", + "example_sentence_english": "Their opinions are completely dissimilar.", + "pos": "adjective", + "word_frequency": 20397 + }, + { + "word": "drammaturgo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playwright;dramatist", + "romanization": "drammaturgo", + "example_sentence_native": "Shakespeare è stato un grande drammaturgo.", + "example_sentence_english": "Shakespeare was a great playwright.", + "pos": "noun", + "word_frequency": 20398 + }, + { + "word": "emissario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emissary", + "romanization": "emissario", + "example_sentence_native": "L'emissario del re portò un messaggio importante.", + "example_sentence_english": "The king's emissary brought an important message.", + "pos": "noun", + "word_frequency": 20400 + }, + { + "word": "emorroide", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hemorrhoid", + "romanization": "emorroide", + "example_sentence_native": "Ha avuto problemi di emorroide dopo la gravidanza.", + "example_sentence_english": "She had hemorrhoid problems after pregnancy.", + "pos": "noun", + "word_frequency": 20401 + }, + { + "word": "esorbitante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exorbitant", + "romanization": "esorbitante", + "example_sentence_native": "Il prezzo era assolutamente esorbitante.", + "example_sentence_english": "The price was absolutely exorbitant.", + "pos": "adjective", + "word_frequency": 20403 + }, + { + "word": "eticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethically", + "romanization": "eticamente", + "example_sentence_native": "Dobbiamo agire eticamente in ogni situazione.", + "example_sentence_english": "We must act ethically in every situation.", + "pos": "adverb", + "word_frequency": 20405 + }, + { + "word": "fantomatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phantom;ghostly;elusive", + "romanization": "fantomatico", + "example_sentence_native": "Hanno cercato di catturare il fantomatico ladro.", + "example_sentence_english": "They tried to catch the phantom thief.", + "pos": "adjective", + "word_frequency": 20408 + }, + { + "word": "ferimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wounding;injury", + "romanization": "ferimento", + "example_sentence_native": "Il ferimento è avvenuto durante la rissa.", + "example_sentence_english": "The wounding occurred during the brawl.", + "pos": "noun", + "word_frequency": 20409 + }, + { + "word": "feticismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fetishism", + "romanization": "feticismo", + "example_sentence_native": "Il feticismo è un interesse sessuale per oggetti inanimati.", + "example_sentence_english": "Fetishism is a sexual interest in inanimate objects.", + "pos": "noun", + "word_frequency": 20410 + }, + { + "word": "fienile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "barn;hayloft", + "romanization": "fienile", + "example_sentence_native": "Il contadino ha immagazzinato il fieno nel fienile.", + "example_sentence_english": "The farmer stored the hay in the barn.", + "pos": "noun", + "word_frequency": 20411 + }, + { + "word": "filtraggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filtering;filtration", + "romanization": "filtraggio", + "example_sentence_native": "Il sistema di filtraggio dell'acqua è molto efficiente.", + "example_sentence_english": "The water filtering system is very efficient.", + "pos": "noun", + "word_frequency": 20413 + }, + { + "word": "fluidità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluidity;fluency", + "romanization": "fluidità", + "example_sentence_native": "La fluidità del suo discorso era impressionante.", + "example_sentence_english": "The fluidity of his speech was impressive.", + "pos": "noun", + "word_frequency": 20416 + }, + { + "word": "fonetica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phonetics", + "romanization": "fonetica", + "example_sentence_native": "La fonetica è lo studio dei suoni del linguaggio.", + "example_sentence_english": "Phonetics is the study of speech sounds.", + "pos": "noun", + "word_frequency": 20417 + }, + { + "word": "forare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drill;to bore;to pierce", + "romanization": "forare", + "example_sentence_native": "Dobbiamo forare il muro per appendere il quadro.", + "example_sentence_english": "We need to drill the wall to hang the picture.", + "pos": "verb", + "word_frequency": 20418 + }, + { + "word": "fornaio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baker", + "romanization": "fornaio", + "example_sentence_native": "Il fornaio apre molto presto la mattina.", + "example_sentence_english": "The baker opens very early in the morning.", + "pos": "noun", + "word_frequency": 20419 + }, + { + "word": "fraudolento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fraudulent", + "romanization": "fraudolento", + "example_sentence_native": "È stato accusato di comportamento fraudolento.", + "example_sentence_english": "He was accused of fraudulent behavior.", + "pos": "adjective", + "word_frequency": 20420 + }, + { + "word": "frizzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "witticism;quip;sparkle", + "romanization": "frizzo", + "example_sentence_native": "Il suo discorso era pieno di frizzi e battute.", + "example_sentence_english": "His speech was full of witticisms and jokes.", + "pos": "noun", + "word_frequency": 20421 + }, + { + "word": "fucilazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution by firing squad;shooting", + "romanization": "fucilazione", + "example_sentence_native": "La fucilazione del prigioniero ha scatenato proteste.", + "example_sentence_english": "The execution of the prisoner by firing squad sparked protests.", + "pos": "noun", + "word_frequency": 20422 + }, + { + "word": "gaudio", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "joy;delight", + "romanization": "gaudio", + "example_sentence_native": "La notizia fu accolta con grande gaudio.", + "example_sentence_english": "The news was received with great joy.", + "pos": "noun", + "word_frequency": 20428 + }, + { + "word": "giraffa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "giraffe", + "romanization": "giraffa", + "example_sentence_native": "La giraffa ha un collo molto lungo.", + "example_sentence_english": "The giraffe has a very long neck.", + "pos": "noun", + "word_frequency": 20432 + }, + { + "word": "greve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heavy;grave;oppressive", + "romanization": "greve", + "example_sentence_native": "L'atmosfera era greve di tensione.", + "example_sentence_english": "The atmosphere was heavy with tension.", + "pos": "adjective", + "word_frequency": 20433 + }, + { + "word": "idromassaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hydromassage;whirlpool", + "romanization": "idromassaggio", + "example_sentence_native": "Dopo una lunga giornata, un idromassaggio è perfetto per rilassarsi.", + "example_sentence_english": "After a long day, a hydromassage is perfect for relaxing.", + "pos": "noun", + "word_frequency": 20440 + }, + { + "word": "improntare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to base;to imprint;to characterize", + "romanization": "improntare", + "example_sentence_native": "Il suo stile è improntato a una grande originalità.", + "example_sentence_english": "His style is characterized by great originality.", + "pos": "verb", + "word_frequency": 20441 + }, + { + "word": "incandescente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incandescent;glowing", + "romanization": "incandescente", + "example_sentence_native": "Il metallo era incandescente dopo essere stato riscaldato.", + "example_sentence_english": "The metal was incandescent after being heated.", + "pos": "adjective", + "word_frequency": 20442 + }, + { + "word": "indescrivibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indescribable", + "romanization": "indescrivibile", + "example_sentence_native": "La bellezza del paesaggio era indescrivibile.", + "example_sentence_english": "The beauty of the landscape was indescribable.", + "pos": "adjective", + "word_frequency": 20443 + }, + { + "word": "inesperienza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inexperience", + "romanization": "inesperienza", + "example_sentence_native": "La sua inesperienza nel campo era evidente.", + "example_sentence_english": "His inexperience in the field was evident.", + "pos": "noun", + "word_frequency": 20444 + }, + { + "word": "inetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inept;incompetent", + "romanization": "inetto", + "example_sentence_native": "Era considerato inetto a svolgere quel compito.", + "example_sentence_english": "He was considered inept at performing that task.", + "pos": "adjective", + "word_frequency": 20445 + }, + { + "word": "iniettare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to inject", + "romanization": "iniettare", + "example_sentence_native": "Il medico ha dovuto iniettare il farmaco.", + "example_sentence_english": "The doctor had to inject the medicine.", + "pos": "verb", + "word_frequency": 20446 + }, + { + "word": "instaurazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "establishment;institution", + "romanization": "instaurazione", + "example_sentence_native": "L'instaurazione di nuove regole è necessaria.", + "example_sentence_english": "The establishment of new rules is necessary.", + "pos": "noun", + "word_frequency": 20447 + }, + { + "word": "intermittente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intermittent", + "romanization": "intermittente", + "example_sentence_native": "La luce del faro era intermittente.", + "example_sentence_english": "The lighthouse light was intermittent.", + "pos": "adjective", + "word_frequency": 20448 + }, + { + "word": "introvabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unobtainable;impossible to find", + "romanization": "introvabile", + "example_sentence_native": "Quel libro è ormai introvabile nelle librerie.", + "example_sentence_english": "That book is now unobtainable in bookstores.", + "pos": "adjective", + "word_frequency": 20449 + }, + { + "word": "invitante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inviting;appealing", + "romanization": "invitante", + "example_sentence_native": "L'odore della torta era molto invitante.", + "example_sentence_english": "The smell of the cake was very inviting.", + "pos": "adjective", + "word_frequency": 20450 + }, + { + "word": "invocazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "invocation;appeal", + "romanization": "invocazione", + "example_sentence_native": "Ha fatto un'invocazione per la pace.", + "example_sentence_english": "He made an invocation for peace.", + "pos": "noun", + "word_frequency": 20451 + }, + { + "word": "irrefrenabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unrestrainable;uncontrollable", + "romanization": "irrefrenabile", + "example_sentence_native": "Aveva un desiderio irrefrenabile di viaggiare.", + "example_sentence_english": "He had an unrestrainable desire to travel.", + "pos": "adjective", + "word_frequency": 20452 + }, + { + "word": "italianità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Italianness;Italian character", + "romanization": "italianità", + "example_sentence_native": "La cucina è un simbolo dell'italianità nel mondo.", + "example_sentence_english": "Cuisine is a symbol of Italianness in the world.", + "pos": "noun", + "word_frequency": 20453 + }, + { + "word": "liquirizia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "licorice", + "romanization": "liquirizia", + "example_sentence_native": "Mi piace il sapore della liquirizia.", + "example_sentence_english": "I like the taste of licorice.", + "pos": "noun", + "word_frequency": 20460 + }, + { + "word": "livrea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "livery (uniform;distinctive coloring)", + "romanization": "livrea", + "example_sentence_native": "L'aereo aveva una nuova livrea.", + "example_sentence_english": "The airplane had a new livery.", + "pos": "noun", + "word_frequency": 20461 + }, + { + "word": "lurido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filthy;squalid", + "romanization": "lurido", + "example_sentence_native": "Il pavimento era lurido di sporcizia.", + "example_sentence_english": "The floor was filthy with dirt.", + "pos": "adjective", + "word_frequency": 20465 + }, + { + "word": "malto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malt", + "romanization": "malto", + "example_sentence_native": "La birra è prodotta con orzo maltato.", + "example_sentence_english": "Beer is produced with malted barley.", + "pos": "noun", + "word_frequency": 20468 + }, + { + "word": "manovrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to maneuver;to operate", + "romanization": "manovrare", + "example_sentence_native": "È difficile manovrare la nave in porto.", + "example_sentence_english": "It is difficult to maneuver the ship in port.", + "pos": "verb", + "word_frequency": 20469 + }, + { + "word": "melma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slime;mud;sludge", + "romanization": "melma", + "example_sentence_native": "Dopo la pioggia, la strada era coperta di melma.", + "example_sentence_english": "After the rain, the road was covered in slime.", + "pos": "noun", + "word_frequency": 20473 + }, + { + "word": "misurabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "measurable", + "romanization": "misurabile", + "example_sentence_native": "I progressi devono essere misurabili.", + "example_sentence_english": "Progress must be measurable.", + "pos": "adjective", + "word_frequency": 20477 + }, + { + "word": "modulazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "modulation", + "romanization": "modulazione", + "example_sentence_native": "La modulazione del segnale è fondamentale per la trasmissione.", + "example_sentence_english": "Signal modulation is fundamental for transmission.", + "pos": "noun", + "word_frequency": 20479 + }, + { + "word": "molestare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to harass;to bother", + "romanization": "molestare", + "example_sentence_native": "Non dovresti mai molestare gli animali selvatici nel loro habitat.", + "example_sentence_english": "You should never harass wild animals in their habitat.", + "pos": "verb", + "word_frequency": 20481 + }, + { + "word": "murario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mural;wall-related", + "romanization": "murario", + "example_sentence_native": "L'arte muraria è una forma d'espressione molto antica.", + "example_sentence_english": "Mural art is a very ancient form of expression.", + "pos": "adjective", + "word_frequency": 20484 + }, + { + "word": "omertà", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "omertà;code of silence", + "romanization": "omertà", + "example_sentence_native": "L'omertà è un codice di silenzio che impedisce la collaborazione con le autorità.", + "example_sentence_english": "Omertà is a code of silence that prevents cooperation with authorities.", + "pos": "noun", + "word_frequency": 20489 + }, + { + "word": "orizzontalmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "horizontally", + "romanization": "orizzontalmente", + "example_sentence_native": "Il dipinto è stato appeso orizzontalmente sulla parete.", + "example_sentence_english": "The painting was hung horizontally on the wall.", + "pos": "adverb", + "word_frequency": 20490 + }, + { + "word": "ornare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to adorn;to decorate", + "romanization": "ornare", + "example_sentence_native": "Hanno deciso di ornare la sala con fiori freschi per la cerimonia.", + "example_sentence_english": "They decided to adorn the hall with fresh flowers for the ceremony.", + "pos": "verb", + "word_frequency": 20491 + }, + { + "word": "paranormale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paranormal", + "romanization": "paranormale", + "example_sentence_native": "Molte persone sono affascinate dai fenomeni paranormali.", + "example_sentence_english": "Many people are fascinated by paranormal phenomena.", + "pos": "adjective", + "word_frequency": 20492 + }, + { + "word": "patire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to suffer;to endure", + "romanization": "patire", + "example_sentence_native": "Ha patito molto a causa della sua lunga malattia.", + "example_sentence_english": "He suffered a lot because of his long illness.", + "pos": "verb", + "word_frequency": 20493 + }, + { + "word": "pecuniario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pecuniary;monetary", + "romanization": "pecuniario", + "example_sentence_native": "Ha ricevuto un risarcimento pecuniario per i danni subiti.", + "example_sentence_english": "He received monetary compensation for the damages suffered.", + "pos": "adjective", + "word_frequency": 20494 + }, + { + "word": "pennarello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "marker pen", + "romanization": "pennarello", + "example_sentence_native": "Ho bisogno di un pennarello nero per scrivere sul cartellone.", + "example_sentence_english": "I need a black marker pen to write on the poster board.", + "pos": "noun", + "word_frequency": 20495 + }, + { + "word": "perizoma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thong (underwear)", + "romanization": "perizoma", + "example_sentence_native": "Ha comprato un nuovo perizoma di pizzo.", + "example_sentence_english": "She bought a new lace thong.", + "pos": "noun", + "word_frequency": 20496 + }, + { + "word": "pigna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pinecone", + "romanization": "pigna", + "example_sentence_native": "Abbiamo raccolto delle pigne nel bosco per decorare la casa.", + "example_sentence_english": "We collected some pinecones in the woods to decorate the house.", + "pos": "noun", + "word_frequency": 20498 + }, + { + "word": "placenta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placenta", + "romanization": "placenta", + "example_sentence_native": "La placenta è un organo fondamentale per lo sviluppo del feto.", + "example_sentence_english": "The placenta is a fundamental organ for fetal development.", + "pos": "noun", + "word_frequency": 20499 + }, + { + "word": "predire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to predict;to foretell", + "romanization": "predire", + "example_sentence_native": "È difficile predire l'esito delle elezioni con certezza.", + "example_sentence_english": "It is difficult to predict the outcome of the elections with certainty.", + "pos": "verb", + "word_frequency": 20501 + }, + { + "word": "profumare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to perfume;to smell good", + "romanization": "profumare", + "example_sentence_native": "I fiori di gelsomino profumano l'aria di sera.", + "example_sentence_english": "The jasmine flowers perfume the air in the evening.", + "pos": "verb", + "word_frequency": 20502 + }, + { + "word": "proibizionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prohibition", + "romanization": "proibizionismo", + "example_sentence_native": "Il proibizionismo dell'alcol negli Stati Uniti durò dal 1920 al 1933.", + "example_sentence_english": "Alcohol prohibition in the United States lasted from 1920 to 1933.", + "pos": "noun", + "word_frequency": 20503 + }, + { + "word": "prostituire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prostitute", + "romanization": "prostituire", + "example_sentence_native": "L'artista si rifiutò di prostituire la sua visione per il successo commerciale.", + "example_sentence_english": "The artist refused to prostitute his vision for commercial success.", + "pos": "verb", + "word_frequency": 20504 + }, + { + "word": "protagonismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protagonism;desire to be the center of attention", + "romanization": "protagonismo", + "example_sentence_native": "Il suo eccessivo protagonismo ha infastidito i colleghi.", + "example_sentence_english": "His excessive protagonism annoyed his colleagues.", + "pos": "noun", + "word_frequency": 20505 + }, + { + "word": "pubblicista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "publicist;journalist", + "romanization": "pubblicista", + "example_sentence_native": "È un noto pubblicista che scrive per diverse riviste.", + "example_sentence_english": "He is a well-known publicist who writes for various magazines.", + "pos": "noun", + "word_frequency": 20506 + }, + { + "word": "purificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to purify", + "romanization": "purificare", + "example_sentence_native": "È necessario purificare l'acqua prima di berla.", + "example_sentence_english": "It is necessary to purify the water before drinking it.", + "pos": "verb", + "word_frequency": 20508 + }, + { + "word": "quadrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to square;to fit;to add up", + "romanization": "quadrare", + "example_sentence_native": "I conti non mi quadrano, c'è qualcosa che non torna.", + "example_sentence_english": "The accounts don't add up for me, something is wrong.", + "pos": "verb", + "word_frequency": 20510 + }, + { + "word": "radiatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radiator", + "romanization": "radiatore", + "example_sentence_native": "Il radiatore dell'auto si è surriscaldato.", + "example_sentence_english": "The car's radiator overheated.", + "pos": "noun", + "word_frequency": 20512 + }, + { + "word": "radicalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalization", + "romanization": "radicalizzazione", + "example_sentence_native": "La radicalizzazione è un processo che porta a posizioni estreme.", + "example_sentence_english": "Radicalization is a process that leads to extreme positions.", + "pos": "noun", + "word_frequency": 20513 + }, + { + "word": "radioterapia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radiotherapy", + "romanization": "radioterapia", + "example_sentence_native": "Il paziente ha iniziato un ciclo di radioterapia per il tumore.", + "example_sentence_english": "The patient started a course of radiotherapy for the tumor.", + "pos": "noun", + "word_frequency": 20514 + }, + { + "word": "refluo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effluent;wastewater", + "romanization": "refluo", + "example_sentence_native": "Lo scarico dei reflui industriali ha causato inquinamento nel fiume.", + "example_sentence_english": "The discharge of industrial effluents caused pollution in the river.", + "pos": "noun", + "word_frequency": 20516 + }, + { + "word": "remora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hindrance;obstacle", + "romanization": "remora", + "example_sentence_native": "Non ho alcuna remora a esprimere la mia opinione onestamente.", + "example_sentence_english": "I have no hesitation in expressing my opinion honestly.", + "pos": "noun", + "word_frequency": 20517 + }, + { + "word": "retorico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rhetorical", + "romanization": "retorico", + "example_sentence_native": "Il suo discorso era troppo retorico e mancava di sostanza.", + "example_sentence_english": "His speech was too rhetorical and lacked substance.", + "pos": "adjective", + "word_frequency": 20520 + }, + { + "word": "ribaltamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overthrow;reversal", + "romanization": "ribaltamento", + "example_sentence_native": "Il ribaltamento della sentenza ha sorpreso tutti.", + "example_sentence_english": "The overturning of the verdict surprised everyone.", + "pos": "noun", + "word_frequency": 20521 + }, + { + "word": "riconfermare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reconfirm;to confirm again", + "romanization": "riconfermare", + "example_sentence_native": "Dobbiamo riconfermare la prenotazione prima di partire.", + "example_sentence_english": "We need to reconfirm the reservation before leaving.", + "pos": "verb", + "word_frequency": 20522 + }, + { + "word": "rispettiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "respective", + "romanization": "rispettiva", + "example_sentence_native": "Le due squadre sono tornate nelle loro rispettive panchine.", + "example_sentence_english": "The two teams returned to their respective benches.", + "pos": "adjective", + "word_frequency": 20523 + }, + { + "word": "riutilizzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reuse", + "romanization": "riutilizzo", + "example_sentence_native": "Il riutilizzo dei materiali è fondamentale per l'ambiente.", + "example_sentence_english": "The reuse of materials is fundamental for the environment.", + "pos": "noun", + "word_frequency": 20524 + }, + { + "word": "rossoblu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "red and blue", + "romanization": "rossoblu", + "example_sentence_native": "La squadra rossoblu ha vinto la partita.", + "example_sentence_english": "The red and blue team won the match.", + "pos": "adjective", + "word_frequency": 20527 + }, + { + "word": "saggista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "essayist", + "romanization": "saggista", + "example_sentence_native": "È un noto saggista e critico letterario.", + "example_sentence_english": "He is a well-known essayist and literary critic.", + "pos": "noun", + "word_frequency": 20529 + }, + { + "word": "sbando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disarray;chaos", + "romanization": "sbando", + "example_sentence_native": "Dopo la sconfitta, la squadra era allo sbando.", + "example_sentence_english": "After the defeat, the team was in disarray.", + "pos": "noun", + "word_frequency": 20530 + }, + { + "word": "sbrigare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to hurry up;to deal with", + "romanization": "sbrigare", + "example_sentence_native": "Devo sbrigare alcune faccende prima di uscire.", + "example_sentence_english": "I need to deal with some errands before going out.", + "pos": "verb", + "word_frequency": 20531 + }, + { + "word": "scarpetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small shoe;(colloquial) mopping up sauce with bread", + "romanization": "scarpetta", + "example_sentence_native": "Non dimenticare di fare la scarpetta con il sugo!", + "example_sentence_english": "Don't forget to mop up the sauce with bread!", + "pos": "noun", + "word_frequency": 20532 + }, + { + "word": "scoreggia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fart", + "romanization": "scoreggia", + "example_sentence_native": "Ho sentito una forte scoreggia.", + "example_sentence_english": "I heard a loud fart.", + "pos": "noun", + "word_frequency": 20534 + }, + { + "word": "seccato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "annoyed;bothered", + "romanization": "seccato", + "example_sentence_native": "Sono seccato per il ritardo del treno.", + "example_sentence_english": "I am annoyed by the train's delay.", + "pos": "adjective", + "word_frequency": 20537 + }, + { + "word": "secondariamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secondarily", + "romanization": "secondariamente", + "example_sentence_native": "Principalmente si occupa di ricerca, secondariamente di insegnamento.", + "example_sentence_english": "Primarily he deals with research, secondarily with teaching.", + "pos": "adverb", + "word_frequency": 20538 + }, + { + "word": "sedimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sediment", + "romanization": "sedimento", + "example_sentence_native": "C'era un sedimento sul fondo della bottiglia.", + "example_sentence_english": "There was a sediment at the bottom of the bottle.", + "pos": "noun", + "word_frequency": 20539 + }, + { + "word": "separatista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "separatist", + "romanization": "separatista", + "example_sentence_native": "Il movimento separatista ha guadagnato molti sostenitori.", + "example_sentence_english": "The separatist movement has gained many supporters.", + "pos": "noun", + "word_frequency": 20541 + }, + { + "word": "simmetrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "symmetrical", + "romanization": "simmetrico", + "example_sentence_native": "Il disegno era perfettamente simmetrico.", + "example_sentence_english": "The design was perfectly symmetrical.", + "pos": "adjective", + "word_frequency": 20545 + }, + { + "word": "smorfia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grimace;smirk", + "romanization": "smorfia", + "example_sentence_native": "Fece una smorfia di disappunto.", + "example_sentence_english": "He made a grimace of disappointment.", + "pos": "noun", + "word_frequency": 20546 + }, + { + "word": "socialdemocratico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social democratic", + "romanization": "socialdemocratico", + "example_sentence_native": "Il partito socialdemocratico ha proposto nuove riforme.", + "example_sentence_english": "The social democratic party proposed new reforms.", + "pos": "adjective", + "word_frequency": 20547 + }, + { + "word": "sociologico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociological", + "romanization": "sociologico", + "example_sentence_native": "Ha condotto uno studio sociologico sulla povertà.", + "example_sentence_english": "He conducted a sociological study on poverty.", + "pos": "adjective", + "word_frequency": 20548 + }, + { + "word": "sode", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firm;hard-boiled", + "romanization": "sode", + "example_sentence_native": "Le uova sode sono un'ottima fonte di proteine.", + "example_sentence_english": "Hard-boiled eggs are an excellent source of protein.", + "pos": "adjective", + "word_frequency": 20549 + }, + { + "word": "soggettivi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subjective", + "romanization": "soggettivi", + "example_sentence_native": "I gusti sono soggettivi.", + "example_sentence_english": "Tastes are subjective.", + "pos": "adjective", + "word_frequency": 20550 + }, + { + "word": "solisti", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soloists", + "romanization": "solisti", + "example_sentence_native": "I solisti si sono esibiti magnificamente.", + "example_sentence_english": "The soloists performed magnificently.", + "pos": "noun", + "word_frequency": 20551 + }, + { + "word": "sommano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "they add up;they sum", + "romanization": "sommano", + "example_sentence_native": "I costi si sommano rapidamente.", + "example_sentence_english": "The costs add up quickly.", + "pos": "verb", + "word_frequency": 20552 + }, + { + "word": "sott'occhio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "under one's eye;under observation", + "romanization": "sott'occhio", + "example_sentence_native": "Tieni sempre i tuoi figli sott'occhio.", + "example_sentence_english": "Always keep your children under your eye.", + "pos": "adverb", + "word_frequency": 20553 + }, + { + "word": "sottobosco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undergrowth;underbrush", + "romanization": "sottobosco", + "example_sentence_native": "Il sottobosco era denso e difficile da attraversare.", + "example_sentence_english": "The undergrowth was dense and difficult to cross.", + "pos": "noun", + "word_frequency": 20554 + }, + { + "word": "spirare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blow (wind);to expire;to die", + "romanization": "spirare", + "example_sentence_native": "Il vento spirava forte dalla montagna.", + "example_sentence_english": "The wind was blowing strongly from the mountain.", + "pos": "verb", + "word_frequency": 20556 + }, + { + "word": "sporgente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protruding;projecting", + "romanization": "sporgente", + "example_sentence_native": "C'era un ramo sporgente che bloccava il passaggio.", + "example_sentence_english": "There was a protruding branch blocking the passage.", + "pos": "adjective", + "word_frequency": 20557 + }, + { + "word": "sporto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overhang;projection", + "romanization": "sporto", + "example_sentence_native": "Il balcone aveva uno sporto notevole.", + "example_sentence_english": "The balcony had a significant overhang.", + "pos": "noun", + "word_frequency": 20558 + }, + { + "word": "sradicare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to uproot;to eradicate", + "romanization": "sradicare", + "example_sentence_native": "Dobbiamo sradicare il problema alla radice.", + "example_sentence_english": "We must eradicate the problem at its root.", + "pos": "verb", + "word_frequency": 20559 + }, + { + "word": "struzzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ostrich", + "romanization": "struzzo", + "example_sentence_native": "Lo struzzo è l'uccello più grande del mondo.", + "example_sentence_english": "The ostrich is the largest bird in the world.", + "pos": "noun", + "word_frequency": 20560 + }, + { + "word": "surgelato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "frozen (deep-frozen)", + "romanization": "surgelato", + "example_sentence_native": "Ho comprato dei piselli surgelati al supermercato.", + "example_sentence_english": "I bought some frozen peas at the supermarket.", + "pos": "adjective", + "word_frequency": 20564 + }, + { + "word": "surriscaldamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overheating;global warming", + "romanization": "surriscaldamento", + "example_sentence_native": "Il surriscaldamento globale è una seria minaccia.", + "example_sentence_english": "Global warming is a serious threat.", + "pos": "noun", + "word_frequency": 20565 + }, + { + "word": "tapis", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpet;(in 'tapis roulant') treadmill", + "romanization": "tapis", + "example_sentence_native": "Ho comprato un nuovo tapis roulant per allenarmi a casa.", + "example_sentence_english": "I bought a new treadmill to train at home.", + "pos": "noun", + "word_frequency": 20566 + }, + { + "word": "teca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "display case;showcase", + "romanization": "teca", + "example_sentence_native": "Il museo espone antichi manufatti in teche di vetro.", + "example_sentence_english": "The museum displays ancient artifacts in glass display cases.", + "pos": "noun", + "word_frequency": 20567 + }, + { + "word": "termodinamica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thermodynamics", + "romanization": "termodinamica", + "example_sentence_native": "La termodinamica è una branca della fisica.", + "example_sentence_english": "Thermodynamics is a branch of physics.", + "pos": "noun", + "word_frequency": 20569 + }, + { + "word": "tesserato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "member (registered;card-holding)", + "romanization": "tesserato", + "example_sentence_native": "Ogni tesserato ha diritto a uno sconto.", + "example_sentence_english": "Every registered member is entitled to a discount.", + "pos": "noun", + "word_frequency": 20570 + }, + { + "word": "torturato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tortured", + "romanization": "torturato", + "example_sentence_native": "Il prigioniero era stato torturato per giorni.", + "example_sentence_english": "The prisoner had been tortured for days.", + "pos": "adjective", + "word_frequency": 20576 + }, + { + "word": "trafficato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "busy;congested (with traffic)", + "romanization": "trafficato", + "example_sentence_native": "Questa strada è molto trafficata durante l'ora di punta.", + "example_sentence_english": "This road is very busy during rush hour.", + "pos": "adjective", + "word_frequency": 20577 + }, + { + "word": "trascendere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to transcend", + "romanization": "trascendere", + "example_sentence_native": "L'arte può trascendere i confini culturali.", + "example_sentence_english": "Art can transcend cultural boundaries.", + "pos": "verb", + "word_frequency": 20579 + }, + { + "word": "tripudio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jubilation;triumph;outburst of joy", + "romanization": "tripudio", + "example_sentence_native": "Ci fu un tripudio di gioia dopo la vittoria.", + "example_sentence_english": "There was an outburst of joy after the victory.", + "pos": "noun", + "word_frequency": 20580 + }, + { + "word": "tutt'intorno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "all around;all over", + "romanization": "tutt'intorno", + "example_sentence_native": "C'erano alberi tutt'intorno alla casa.", + "example_sentence_english": "There were trees all around the house.", + "pos": "adverb", + "word_frequency": 20583 + }, + { + "word": "umanesimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "humanism", + "romanization": "umanesimo", + "example_sentence_native": "L'umanesimo è stato un movimento culturale del Rinascimento.", + "example_sentence_english": "Humanism was a cultural movement of the Renaissance.", + "pos": "noun", + "word_frequency": 20584 + }, + { + "word": "vacillare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to waver;to totter;to falter", + "romanization": "vacillare", + "example_sentence_native": "La sedia ha iniziato a vacillare.", + "example_sentence_english": "The chair started to waver.", + "pos": "verb", + "word_frequency": 20587 + }, + { + "word": "viennese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Viennese", + "romanization": "viennese", + "example_sentence_native": "Ho assaggiato una torta viennese deliziosa.", + "example_sentence_english": "I tasted a delicious Viennese cake.", + "pos": "adjective", + "word_frequency": 20588 + }, + { + "word": "vivibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "livable;habitable", + "romanization": "vivibile", + "example_sentence_native": "Questa città è molto vivibile.", + "example_sentence_english": "This city is very livable.", + "pos": "adjective", + "word_frequency": 20590 + }, + { + "word": "affezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "affection;fondness", + "romanization": "affezione", + "example_sentence_native": "Prova una grande affezione per i suoi nipoti.", + "example_sentence_english": "She feels great affection for her grandchildren.", + "pos": "noun", + "word_frequency": 20599 + }, + { + "word": "amplificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amplified", + "romanization": "amplificato", + "example_sentence_native": "Il suono era amplificato dagli altoparlanti.", + "example_sentence_english": "The sound was amplified by the speakers.", + "pos": "adjective", + "word_frequency": 20607 + }, + { + "word": "annusare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sniff;to smell", + "romanization": "annusare", + "example_sentence_native": "Il cane ha iniziato ad annusare il terreno.", + "example_sentence_english": "The dog started to sniff the ground.", + "pos": "verb", + "word_frequency": 20609 + }, + { + "word": "antropologo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anthropologist", + "romanization": "antropologo", + "example_sentence_native": "L'antropologo ha studiato le antiche civiltà.", + "example_sentence_english": "The anthropologist studied ancient civilizations.", + "pos": "noun", + "word_frequency": 20611 + }, + { + "word": "appetibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "appealing;desirable", + "romanization": "appetibile", + "example_sentence_native": "Questa offerta è molto appetibile.", + "example_sentence_english": "This offer is very appealing.", + "pos": "adjective", + "word_frequency": 20612 + }, + { + "word": "archivista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archivist", + "romanization": "archivista", + "example_sentence_native": "L'archivista ha trovato il documento perduto.", + "example_sentence_english": "The archivist found the lost document.", + "pos": "noun", + "word_frequency": 20614 + }, + { + "word": "arrangiamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "arrangement", + "romanization": "arrangiamento", + "example_sentence_native": "L'arrangiamento musicale era eccellente.", + "example_sentence_english": "The musical arrangement was excellent.", + "pos": "noun", + "word_frequency": 20615 + }, + { + "word": "assessorato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "department (of local government);councilorship", + "romanization": "assessorato", + "example_sentence_native": "L'assessorato alla cultura ha organizzato l'evento.", + "example_sentence_english": "The culture department organized the event.", + "pos": "noun", + "word_frequency": 20617 + }, + { + "word": "augurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wished for;hoped for", + "romanization": "augurato", + "example_sentence_native": "Era il risultato tanto augurato.", + "example_sentence_english": "It was the much-wished-for result.", + "pos": "adjective", + "word_frequency": 20618 + }, + { + "word": "batosta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heavy blow;setback;thrashing", + "romanization": "batosta", + "example_sentence_native": "La sconfitta è stata una vera batosta per la squadra.", + "example_sentence_english": "The defeat was a real setback for the team.", + "pos": "noun", + "word_frequency": 20620 + }, + { + "word": "biancorosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "white and red", + "romanization": "biancorosso", + "example_sentence_native": "La bandiera biancorossa sventolava alta.", + "example_sentence_english": "The white and red flag waved high.", + "pos": "adjective", + "word_frequency": 20622 + }, + { + "word": "biografo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biographer", + "romanization": "biografo", + "example_sentence_native": "Il biografo ha scritto un libro sulla sua vita.", + "example_sentence_english": "The biographer wrote a book about his life.", + "pos": "noun", + "word_frequency": 20624 + }, + { + "word": "birreria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brewery;pub;beer hall", + "romanization": "birreria", + "example_sentence_native": "Ci siamo incontrati in una birreria tradizionale.", + "example_sentence_english": "We met in a traditional pub.", + "pos": "noun", + "word_frequency": 20625 + }, + { + "word": "bottiglietta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small bottle", + "romanization": "bottiglietta", + "example_sentence_native": "Ho comprato una bottiglietta d'acqua.", + "example_sentence_english": "I bought a small bottle of water.", + "pos": "noun", + "word_frequency": 20630 + }, + { + "word": "candeggina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bleach", + "romanization": "candeggina", + "example_sentence_native": "Usa la candeggina per disinfettare il bagno.", + "example_sentence_english": "Use bleach to disinfect the bathroom.", + "pos": "noun", + "word_frequency": 20632 + }, + { + "word": "canguro", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kangaroo", + "romanization": "canguro", + "example_sentence_native": "Il canguro è un animale tipico dell'Australia.", + "example_sentence_english": "The kangaroo is an animal typical of Australia.", + "pos": "noun", + "word_frequency": 20633 + }, + { + "word": "caraffa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carafe;jug", + "romanization": "caraffa", + "example_sentence_native": "Ha riempito la caraffa d'acqua fresca.", + "example_sentence_english": "She filled the carafe with fresh water.", + "pos": "noun", + "word_frequency": 20635 + }, + { + "word": "cartapesta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "papier-mâché", + "romanization": "cartapesta", + "example_sentence_native": "Hanno fatto una maschera di cartapesta.", + "example_sentence_english": "They made a papier-mâché mask.", + "pos": "noun", + "word_frequency": 20636 + }, + { + "word": "catetere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "catheter", + "romanization": "catetere", + "example_sentence_native": "Il paziente necessita di un catetere.", + "example_sentence_english": "The patient needs a catheter.", + "pos": "noun", + "word_frequency": 20637 + }, + { + "word": "cefalea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headache;cephalalgia", + "romanization": "cefalea", + "example_sentence_native": "Soffre di frequenti attacchi di cefalea.", + "example_sentence_english": "He suffers from frequent headaches.", + "pos": "noun", + "word_frequency": 20638 + }, + { + "word": "cenacolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cenacle;literary circle", + "romanization": "cenacolo", + "example_sentence_native": "Il cenacolo degli artisti si riuniva ogni giovedì.", + "example_sentence_english": "The artists' circle met every Thursday.", + "pos": "noun", + "word_frequency": 20639 + }, + { + "word": "chakra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chakra", + "romanization": "chakra", + "example_sentence_native": "I sette chakra principali sono centri energetici nel corpo.", + "example_sentence_english": "The seven main chakras are energy centers in the body.", + "pos": "noun", + "word_frequency": 20641 + }, + { + "word": "ciak", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clapperboard", + "romanization": "ciak", + "example_sentence_native": "Il regista ha gridato \"Ciak!\" prima di iniziare la scena.", + "example_sentence_english": "The director shouted \"Clapperboard!\" before starting the scene.", + "pos": "noun", + "word_frequency": 20643 + }, + { + "word": "cinetica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "kinetics", + "romanization": "cinetica", + "example_sentence_native": "Lo studio della cinetica è fondamentale in fisica.", + "example_sentence_english": "The study of kinetics is fundamental in physics.", + "pos": "noun", + "word_frequency": 20644 + }, + { + "word": "coadiuvare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assist", + "romanization": "coadiuvare", + "example_sentence_native": "Il suo compito è coadiuvare il direttore nella gestione del progetto.", + "example_sentence_english": "His task is to assist the director in project management.", + "pos": "verb", + "word_frequency": 20646 + }, + { + "word": "coesistere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to coexist", + "romanization": "coesistere", + "example_sentence_native": "Diverse culture possono coesistere pacificamente.", + "example_sentence_english": "Different cultures can coexist peacefully.", + "pos": "verb", + "word_frequency": 20647 + }, + { + "word": "collegiata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collegiate church", + "romanization": "collegiata", + "example_sentence_native": "La collegiata di San Martino è un edificio storico.", + "example_sentence_english": "The collegiate church of San Martino is a historic building.", + "pos": "noun", + "word_frequency": 20648 + }, + { + "word": "colonnina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small column", + "romanization": "colonnina", + "example_sentence_native": "Ho parcheggiato vicino alla colonnina di ricarica per auto elettriche.", + "example_sentence_english": "I parked near the electric car charging station.", + "pos": "noun", + "word_frequency": 20649 + }, + { + "word": "comparare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to compare", + "romanization": "comparare", + "example_sentence_native": "Dobbiamo comparare i prezzi prima di decidere.", + "example_sentence_english": "We need to compare the prices before deciding.", + "pos": "verb", + "word_frequency": 20652 + }, + { + "word": "confessore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confessor", + "romanization": "confessore", + "example_sentence_native": "Il fedele si è rivolto al confessore per la sua penitenza.", + "example_sentence_english": "The faithful turned to the confessor for his penance.", + "pos": "noun", + "word_frequency": 20654 + }, + { + "word": "confino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internal exile", + "romanization": "confino", + "example_sentence_native": "Durante il regime, molti oppositori furono mandati al confino.", + "example_sentence_english": "During the regime, many opponents were sent to internal exile.", + "pos": "noun", + "word_frequency": 20655 + }, + { + "word": "consenziente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consenting", + "romanization": "consenziente", + "example_sentence_native": "L'accordo è stato firmato da tutte le parti consenzienti.", + "example_sentence_english": "The agreement was signed by all consenting parties.", + "pos": "adjective", + "word_frequency": 20657 + }, + { + "word": "corallina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coralline algae", + "romanization": "corallina", + "example_sentence_native": "Le alghe coralline contribuiscono alla formazione delle barriere.", + "example_sentence_english": "Coralline algae contribute to barrier formation.", + "pos": "noun", + "word_frequency": 20659 + }, + { + "word": "cracker", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cracker", + "romanization": "cracker", + "example_sentence_native": "Mi piace mangiare i cracker con il formaggio.", + "example_sentence_english": "I like to eat crackers with cheese.", + "pos": "noun", + "word_frequency": 20661 + }, + { + "word": "cristallizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crystallization", + "romanization": "cristallizzazione", + "example_sentence_native": "La cristallizzazione è un processo importante in chimica.", + "example_sentence_english": "Crystallization is an important process in chemistry.", + "pos": "noun", + "word_frequency": 20662 + }, + { + "word": "descrittivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "descriptive", + "romanization": "descrittivo", + "example_sentence_native": "Il testo fornisce una descrizione molto descrittiva del paesaggio.", + "example_sentence_english": "The text provides a very descriptive description of the landscape.", + "pos": "adjective", + "word_frequency": 20676 + }, + { + "word": "ellenico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hellenic", + "romanization": "ellenico", + "example_sentence_native": "L'arte ellenica ha influenzato molte civiltà successive.", + "example_sentence_english": "Hellenic art influenced many subsequent civilizations.", + "pos": "adjective", + "word_frequency": 20677 + }, + { + "word": "emisfero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hemisphere", + "romanization": "emisfero", + "example_sentence_native": "Viviamo nell'emisfero settentrionale.", + "example_sentence_english": "We live in the Northern Hemisphere.", + "pos": "noun", + "word_frequency": 20678 + }, + { + "word": "esordiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rookie", + "romanization": "esordiente", + "example_sentence_native": "L'esordiente ha mostrato un grande talento nella sua prima partita.", + "example_sentence_english": "The rookie showed great talent in his first game.", + "pos": "noun", + "word_frequency": 20679 + }, + { + "word": "esuberante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exuberant;effervescent", + "romanization": "esuberante", + "example_sentence_native": "La sua personalità esuberante riempiva la stanza di energia.", + "example_sentence_english": "Her exuberant personality filled the room with energy.", + "pos": "adjective", + "word_frequency": 20680 + }, + { + "word": "eurozona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "eurozone", + "romanization": "eurozona", + "example_sentence_native": "La crisi economica ha colpito duramente l'eurozona.", + "example_sentence_english": "The economic crisis hit the eurozone hard.", + "pos": "noun", + "word_frequency": 20681 + }, + { + "word": "evidenziato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "highlighted;emphasized", + "romanization": "evidenziato", + "example_sentence_native": "Il testo evidenziato è importante per l'esame.", + "example_sentence_english": "The highlighted text is important for the exam.", + "pos": "adjective", + "word_frequency": 20682 + }, + { + "word": "extension", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extension", + "romanization": "extension", + "example_sentence_native": "Ha comprato delle extension per capelli per la festa.", + "example_sentence_english": "She bought hair extensions for the party.", + "pos": "noun", + "word_frequency": 20683 + }, + { + "word": "falange", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "phalanx (bone);phalanx (military formation)", + "romanization": "falange", + "example_sentence_native": "Si è rotto una falange del dito.", + "example_sentence_english": "He broke a phalanx of his finger.", + "pos": "noun", + "word_frequency": 20684 + }, + { + "word": "fantasticare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fantasize;to daydream", + "romanization": "fantasticare", + "example_sentence_native": "Gli piace fantasticare sul suo futuro.", + "example_sentence_english": "He likes to fantasize about his future.", + "pos": "verb", + "word_frequency": 20685 + }, + { + "word": "fatina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little fairy;fairy", + "romanization": "fatina", + "example_sentence_native": "La fatina dei denti ha lasciato una moneta sotto il cuscino.", + "example_sentence_english": "The tooth fairy left a coin under the pillow.", + "pos": "noun", + "word_frequency": 20687 + }, + { + "word": "fedina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(criminal) record;thin ring", + "romanization": "fedina", + "example_sentence_native": "Ha una fedina penale pulita.", + "example_sentence_english": "He has a clean criminal record.", + "pos": "noun", + "word_frequency": 20689 + }, + { + "word": "fiaccolata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torchlight procession", + "romanization": "fiaccolata", + "example_sentence_native": "Hanno organizzato una fiaccolata per la pace.", + "example_sentence_english": "They organized a torchlight procession for peace.", + "pos": "noun", + "word_frequency": 20690 + }, + { + "word": "fibrosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fibrosis", + "romanization": "fibrosi", + "example_sentence_native": "La fibrosi cistica è una malattia genetica.", + "example_sentence_english": "Cystic fibrosis is a genetic disease.", + "pos": "noun", + "word_frequency": 20691 + }, + { + "word": "flebo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "IV drip;intravenous drip", + "romanization": "flebo", + "example_sentence_native": "Il paziente ha bisogno di una flebo di soluzione fisiologica.", + "example_sentence_english": "The patient needs an IV drip of saline solution.", + "pos": "noun", + "word_frequency": 20693 + }, + { + "word": "flip", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flip", + "romanization": "flip", + "example_sentence_native": "Ha fatto un flip con la moneta.", + "example_sentence_english": "He did a flip with the coin.", + "pos": "noun", + "word_frequency": 20694 + }, + { + "word": "foraggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fodder;forage", + "romanization": "foraggio", + "example_sentence_native": "Il contadino ha raccolto il foraggio per gli animali.", + "example_sentence_english": "The farmer collected the fodder for the animals.", + "pos": "noun", + "word_frequency": 20696 + }, + { + "word": "fruire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to enjoy;to benefit from;to avail oneself of", + "romanization": "fruire", + "example_sentence_native": "I cittadini possono fruire dei servizi pubblici.", + "example_sentence_english": "Citizens can benefit from public services.", + "pos": "verb", + "word_frequency": 20698 + }, + { + "word": "frullato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "smoothie;milkshake", + "romanization": "frullato", + "example_sentence_native": "Mi piace bere un frullato di frutta a colazione.", + "example_sentence_english": "I like to drink a fruit smoothie for breakfast.", + "pos": "noun", + "word_frequency": 20699 + }, + { + "word": "funerario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funerary;funeral (adj.)", + "romanization": "funerario", + "example_sentence_native": "Hanno visitato il monumento funerario.", + "example_sentence_english": "They visited the funerary monument.", + "pos": "adjective", + "word_frequency": 20701 + }, + { + "word": "funky", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "funky", + "romanization": "funky", + "example_sentence_native": "Ascoltiamo musica funky stasera.", + "example_sentence_english": "Let's listen to funky music tonight.", + "pos": "adjective", + "word_frequency": 20702 + }, + { + "word": "fuorigioco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "offside", + "romanization": "fuorigioco", + "example_sentence_native": "L'arbitro ha fischiato il fuorigioco.", + "example_sentence_english": "The referee whistled offside.", + "pos": "noun", + "word_frequency": 20703 + }, + { + "word": "gastrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastric", + "romanization": "gastrico", + "example_sentence_native": "Ha problemi gastrici.", + "example_sentence_english": "He has gastric problems.", + "pos": "adjective", + "word_frequency": 20708 + }, + { + "word": "geografo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geographer", + "romanization": "geografo", + "example_sentence_native": "Un geografo studia la superficie terrestre.", + "example_sentence_english": "A geographer studies the Earth's surface.", + "pos": "noun", + "word_frequency": 20709 + }, + { + "word": "grillina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Five Star Movement supporter (female)", + "romanization": "grillina", + "example_sentence_native": "La deputata grillina ha espresso la sua opinione.", + "example_sentence_english": "The Five Star Movement deputy expressed her opinion.", + "pos": "noun", + "word_frequency": 20718 + }, + { + "word": "impaurito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scared", + "romanization": "impaurito", + "example_sentence_native": "Il bambino era impaurito dal tuono.", + "example_sentence_english": "The child was scared by the thunder.", + "pos": "adjective", + "word_frequency": 20724 + }, + { + "word": "imperante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prevailing", + "romanization": "imperante", + "example_sentence_native": "La moda imperante è quella dei colori pastello.", + "example_sentence_english": "The prevailing fashion is pastel colors.", + "pos": "adjective", + "word_frequency": 20725 + }, + { + "word": "impugnatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handle", + "romanization": "impugnatura", + "example_sentence_native": "L'impugnatura della spada era decorata.", + "example_sentence_english": "The sword's handle was decorated.", + "pos": "noun", + "word_frequency": 20726 + }, + { + "word": "impurità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impurity", + "romanization": "impurità", + "example_sentence_native": "L'acqua conteneva delle impurità.", + "example_sentence_english": "The water contained impurities.", + "pos": "noun", + "word_frequency": 20727 + }, + { + "word": "inclusivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inclusive", + "romanization": "inclusivo", + "example_sentence_native": "Vogliamo creare un ambiente più inclusivo per tutti.", + "example_sentence_english": "We want to create a more inclusive environment for everyone.", + "pos": "adjective", + "word_frequency": 20728 + }, + { + "word": "incorporare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to incorporate", + "romanization": "incorporare", + "example_sentence_native": "Dobbiamo incorporare nuove idee nel progetto.", + "example_sentence_english": "We need to incorporate new ideas into the project.", + "pos": "verb", + "word_frequency": 20729 + }, + { + "word": "insinuazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insinuation", + "romanization": "insinuazione", + "example_sentence_native": "Le sue insinuazioni erano molto sottili.", + "example_sentence_english": "His insinuations were very subtle.", + "pos": "noun", + "word_frequency": 20732 + }, + { + "word": "intransigente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uncompromising", + "romanization": "intransigente", + "example_sentence_native": "Era intransigente sulle sue posizioni.", + "example_sentence_english": "He was uncompromising on his positions.", + "pos": "adjective", + "word_frequency": 20734 + }, + { + "word": "intrecciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intertwined", + "romanization": "intrecciato", + "example_sentence_native": "I rami degli alberi erano intrecciati.", + "example_sentence_english": "The tree branches were intertwined.", + "pos": "adjective", + "word_frequency": 20735 + }, + { + "word": "irreparabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreparable", + "romanization": "irreparabile", + "example_sentence_native": "Il danno era irreparabile.", + "example_sentence_english": "The damage was irreparable.", + "pos": "adjective", + "word_frequency": 20738 + }, + { + "word": "lampadario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "chandelier", + "romanization": "lampadario", + "example_sentence_native": "Hanno appeso un nuovo lampadario in sala.", + "example_sentence_english": "They hung a new chandelier in the living room.", + "pos": "noun", + "word_frequency": 20744 + }, + { + "word": "lavello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sink", + "romanization": "lavello", + "example_sentence_native": "Ho lavato i piatti nel lavello.", + "example_sentence_english": "I washed the dishes in the sink.", + "pos": "noun", + "word_frequency": 20746 + }, + { + "word": "lemma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "lemma", + "romanization": "lemma", + "example_sentence_native": "Ogni lemma del dizionario ha una definizione.", + "example_sentence_english": "Every lemma in the dictionary has a definition.", + "pos": "noun", + "word_frequency": 20748 + }, + { + "word": "lucente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shining", + "romanization": "lucente", + "example_sentence_native": "Le stelle erano lucenti nel cielo notturno.", + "example_sentence_english": "The stars were shining in the night sky.", + "pos": "adjective", + "word_frequency": 20751 + }, + { + "word": "massonico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masonic", + "romanization": "massonico", + "example_sentence_native": "Si dice che l'edificio abbia simboli massonici.", + "example_sentence_english": "It is said that the building has masonic symbols.", + "pos": "adjective", + "word_frequency": 20752 + }, + { + "word": "mediorientale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Middle Eastern", + "romanization": "mediorientale", + "example_sentence_native": "La cucina mediorientale è molto ricca di sapori.", + "example_sentence_english": "Middle Eastern cuisine is very rich in flavors.", + "pos": "adjective", + "word_frequency": 20756 + }, + { + "word": "meridiano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meridian", + "romanization": "meridiano", + "example_sentence_native": "Il meridiano di Greenwich è un punto di riferimento.", + "example_sentence_english": "The Greenwich meridian is a reference point.", + "pos": "noun", + "word_frequency": 20757 + }, + { + "word": "messinese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Messinese", + "romanization": "messinese", + "example_sentence_native": "La specialità messinese è la focaccia.", + "example_sentence_english": "The Messinese specialty is focaccia.", + "pos": "adjective", + "word_frequency": 20758 + }, + { + "word": "metalmeccanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "metalworking", + "romanization": "metalmeccanico", + "example_sentence_native": "L'industria metalmeccanica è importante per l'economia.", + "example_sentence_english": "The metalworking industry is important for the economy.", + "pos": "adjective", + "word_frequency": 20759 + }, + { + "word": "mistura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixture", + "romanization": "mistura", + "example_sentence_native": "La mistura di colori ha creato una tonalità unica.", + "example_sentence_english": "The mixture of colors created a unique shade.", + "pos": "noun", + "word_frequency": 20761 + }, + { + "word": "monetina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small coin;penny", + "romanization": "monetina", + "example_sentence_native": "Ho trovato una monetina per terra.", + "example_sentence_english": "I found a small coin on the ground.", + "pos": "noun", + "word_frequency": 20762 + }, + { + "word": "mustang", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mustang (horse)", + "romanization": "mustang", + "example_sentence_native": "Il mustang è un cavallo selvaggio dell'America del Nord.", + "example_sentence_english": "The mustang is a wild horse from North America.", + "pos": "noun", + "word_frequency": 20763 + }, + { + "word": "mutilazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mutilation", + "romanization": "mutilazione", + "example_sentence_native": "La mutilazione è una pratica barbara.", + "example_sentence_english": "Mutilation is a barbaric practice.", + "pos": "noun", + "word_frequency": 20764 + }, + { + "word": "nafta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naphtha;diesel fuel", + "romanization": "nafta", + "example_sentence_native": "Il motore funziona a nafta.", + "example_sentence_english": "The engine runs on diesel fuel.", + "pos": "noun", + "word_frequency": 20765 + }, + { + "word": "narcisista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narcissist", + "romanization": "narcisista", + "example_sentence_native": "È un vero narcisista, pensa solo a sé stesso.", + "example_sentence_english": "He is a true narcissist, he only thinks about himself.", + "pos": "noun", + "word_frequency": 20766 + }, + { + "word": "narcotico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narcotic", + "romanization": "narcotico", + "example_sentence_native": "Il medico ha prescritto un narcotico per il dolore.", + "example_sentence_english": "The doctor prescribed a narcotic for the pain.", + "pos": "noun", + "word_frequency": 20767 + }, + { + "word": "notabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notable;prominent person", + "romanization": "notabile", + "example_sentence_native": "Era un notabile della comunità.", + "example_sentence_english": "He was a notable person in the community.", + "pos": "noun", + "word_frequency": 20780 + }, + { + "word": "oltralpe", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beyond the Alps;transalpine", + "romanization": "oltralpe", + "example_sentence_native": "Molti turisti vengono da oltralpe.", + "example_sentence_english": "Many tourists come from beyond the Alps.", + "pos": "noun", + "word_frequency": 20784 + }, + { + "word": "palette", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palette", + "romanization": "palette", + "example_sentence_native": "L'artista ha mescolato i colori sulla sua palette.", + "example_sentence_english": "The artist mixed the colors on his palette.", + "pos": "noun", + "word_frequency": 20788 + }, + { + "word": "palpabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palpable;tangible", + "romanization": "palpabile", + "example_sentence_native": "La tensione nella stanza era palpabile.", + "example_sentence_english": "The tension in the room was palpable.", + "pos": "adjective", + "word_frequency": 20789 + }, + { + "word": "parade", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parade", + "romanization": "parade", + "example_sentence_native": "Hanno organizzato una grande parade per la festa.", + "example_sentence_english": "They organized a big parade for the festival.", + "pos": "noun", + "word_frequency": 20792 + }, + { + "word": "pareggiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drawn;equalized", + "romanization": "pareggiato", + "example_sentence_native": "La partita è finita pareggiata 1 a 1.", + "example_sentence_english": "The match ended in a 1-1 draw.", + "pos": "adjective", + "word_frequency": 20793 + }, + { + "word": "partecipato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "participated;attended (as adjective: participatory)", + "romanization": "partecipato", + "example_sentence_native": "È stato un evento molto partecipato.", + "example_sentence_english": "It was a very well-attended event.", + "pos": "adjective", + "word_frequency": 20794 + }, + { + "word": "pedalata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pedal stroke;bike ride", + "romanization": "pedalata", + "example_sentence_native": "Ha fatto una lunga pedalata in montagna.", + "example_sentence_english": "He went for a long bike ride in the mountains.", + "pos": "noun", + "word_frequency": 20796 + }, + { + "word": "pensionabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pensionable;eligible for retirement", + "romanization": "pensionabile", + "example_sentence_native": "L'età pensionabile è stata aumentata.", + "example_sentence_english": "The pensionable age has been increased.", + "pos": "adjective", + "word_frequency": 20797 + }, + { + "word": "pianerottolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landing (of stairs)", + "romanization": "pianerottolo", + "example_sentence_native": "Ci siamo incontrati sul pianerottolo del terzo piano.", + "example_sentence_english": "We met on the third-floor landing.", + "pos": "noun", + "word_frequency": 20801 + }, + { + "word": "piastrina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "platelet;small plate", + "romanization": "piastrina", + "example_sentence_native": "Le piastrine sono essenziali per la coagulazione del sangue.", + "example_sentence_english": "Platelets are essential for blood clotting.", + "pos": "noun", + "word_frequency": 20802 + }, + { + "word": "planning", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "planning", + "romanization": "planning", + "example_sentence_native": "Il planning del progetto è stato molto dettagliato.", + "example_sentence_english": "The project planning was very detailed.", + "pos": "noun", + "word_frequency": 20804 + }, + { + "word": "plastic", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plastic (material)", + "romanization": "plastic", + "example_sentence_native": "Preferisco le bottiglie di vetro a quelle di plastic.", + "example_sentence_english": "I prefer glass bottles to plastic ones.", + "pos": "adjective", + "word_frequency": 20805 + }, + { + "word": "pod", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pod (e.g.;for headphones;data)", + "romanization": "pod", + "example_sentence_native": "Ho comprato un nuovo pod per le mie cuffie wireless.", + "example_sentence_english": "I bought a new pod for my wireless headphones.", + "pos": "noun", + "word_frequency": 20806 + }, + { + "word": "pollame", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poultry", + "romanization": "pollame", + "example_sentence_native": "Il pollame è una fonte comune di proteine.", + "example_sentence_english": "Poultry is a common source of protein.", + "pos": "noun", + "word_frequency": 20807 + }, + { + "word": "polverone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dust cloud;commotion", + "romanization": "polverone", + "example_sentence_native": "L'incidente ha sollevato un gran polverone.", + "example_sentence_english": "The accident raised a big dust cloud.", + "pos": "noun", + "word_frequency": 20808 + }, + { + "word": "posticipato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "postponed", + "romanization": "posticipato", + "example_sentence_native": "L'incontro è stato posticipato a lunedì prossimo.", + "example_sentence_english": "The meeting has been postponed to next Monday.", + "pos": "adjective", + "word_frequency": 20810 + }, + { + "word": "precipitata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "precipitated;rushed", + "romanization": "precipitata", + "example_sentence_native": "La situazione è precipitata rapidamente dopo l'annuncio.", + "example_sentence_english": "The situation rapidly precipitated after the announcement.", + "pos": "adjective", + "word_frequency": 20811 + }, + { + "word": "première", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premiere", + "romanization": "première", + "example_sentence_native": "La première del film sarà il mese prossimo.", + "example_sentence_english": "The film's premiere will be next month.", + "pos": "noun", + "word_frequency": 20812 + }, + { + "word": "present", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "present (as in 'currently existing')", + "romanization": "present", + "example_sentence_native": "Il problema è present in molte aree del paese.", + "example_sentence_english": "The problem is present in many areas of the country.", + "pos": "adjective", + "word_frequency": 20813 + }, + { + "word": "prestato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lent", + "romanization": "prestato", + "example_sentence_native": "Mi ha prestato il suo libro preferito.", + "example_sentence_english": "He lent me his favorite book.", + "pos": "adjective", + "word_frequency": 20814 + }, + { + "word": "procedurale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "procedural", + "romanization": "procedurale", + "example_sentence_native": "Abbiamo seguito la procedura standard per la risoluzione del problema.", + "example_sentence_english": "We followed the standard procedural for problem resolution.", + "pos": "adjective", + "word_frequency": 20815 + }, + { + "word": "procurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtained;caused", + "romanization": "procurato", + "example_sentence_native": "Si è procurato una ferita al braccio cadendo.", + "example_sentence_english": "He obtained an arm injury by falling.", + "pos": "adjective", + "word_frequency": 20816 + }, + { + "word": "prominente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prominent", + "romanization": "prominente", + "example_sentence_native": "È una figura prominente nel campo della scienza.", + "example_sentence_english": "He is a prominent figure in the field of science.", + "pos": "adjective", + "word_frequency": 20818 + }, + { + "word": "pupillo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pupil (of the eye);protégé", + "romanization": "pupillo", + "example_sentence_native": "La pupilla si dilata al buio.", + "example_sentence_english": "The pupil dilates in the dark.", + "pos": "noun", + "word_frequency": 20820 + }, + { + "word": "quantico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quantum", + "romanization": "quantico", + "example_sentence_native": "La fisica quantistica è un campo complesso.", + "example_sentence_english": "Quantum physics is a complex field.", + "pos": "adjective", + "word_frequency": 20821 + }, + { + "word": "quarantotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forty-eight;(historical) 1848", + "romanization": "quarantotto", + "example_sentence_native": "Il quarantotto è un numero pari.", + "example_sentence_english": "Forty-eight is an even number.", + "pos": "noun", + "word_frequency": 20822 + }, + { + "word": "quinquennio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "five-year period", + "romanization": "quinquennio", + "example_sentence_native": "Il progetto durerà un quinquennio.", + "example_sentence_english": "The project will last a five-year period.", + "pos": "noun", + "word_frequency": 20824 + }, + { + "word": "rassicurazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reassurance", + "romanization": "rassicurazione", + "example_sentence_native": "Le sue parole mi hanno dato una grande rassicurazione.", + "example_sentence_english": "His words gave me great reassurance.", + "pos": "noun", + "word_frequency": 20826 + }, + { + "word": "repentino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sudden;abrupt", + "romanization": "repentino", + "example_sentence_native": "C'è stato un cambiamento repentino del tempo.", + "example_sentence_english": "There was a sudden change in the weather.", + "pos": "adjective", + "word_frequency": 20827 + }, + { + "word": "retrogusto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aftertaste", + "romanization": "retrogusto", + "example_sentence_native": "Questo vino ha un retrogusto amaro.", + "example_sentence_english": "This wine has a bitter aftertaste.", + "pos": "noun", + "word_frequency": 20828 + }, + { + "word": "rialto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raised area;platform", + "romanization": "rialto", + "example_sentence_native": "Il palco era su un rialto per una migliore visibilità.", + "example_sentence_english": "The stage was on a raised area for better visibility.", + "pos": "noun", + "word_frequency": 20829 + }, + { + "word": "riconsiderare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconsider", + "romanization": "riconsiderare", + "example_sentence_native": "Dovremmo riconsiderare la nostra strategia.", + "example_sentence_english": "We should reconsider our strategy.", + "pos": "verb", + "word_frequency": 20830 + }, + { + "word": "riedizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "re-edition;reissue", + "romanization": "riedizione", + "example_sentence_native": "Il libro è stato pubblicato in una nuova riedizione.", + "example_sentence_english": "The book was published in a new re-edition.", + "pos": "noun", + "word_frequency": 20831 + }, + { + "word": "rimontare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reassemble;to remount;to come back (in a game)", + "romanization": "rimontare", + "example_sentence_native": "Dobbiamo rimontare il mobile dopo il trasloco.", + "example_sentence_english": "We need to reassemble the furniture after the move.", + "pos": "verb", + "word_frequency": 20832 + }, + { + "word": "ripiego", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fallback;last resort", + "romanization": "ripiego", + "example_sentence_native": "Questa soluzione è solo un ripiego temporaneo.", + "example_sentence_english": "This solution is just a temporary fallback.", + "pos": "noun", + "word_frequency": 20833 + }, + { + "word": "ristoratore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restaurateur;refreshing (adj)", + "romanization": "ristoratore", + "example_sentence_native": "Il ristoratore ci ha accolto con un sorriso.", + "example_sentence_english": "The restaurateur welcomed us with a smile.", + "pos": "noun", + "word_frequency": 20834 + }, + { + "word": "rocker", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rocker (person)", + "romanization": "rocker", + "example_sentence_native": "Era un vero rocker negli anni '80.", + "example_sentence_english": "He was a true rocker in the 80s.", + "pos": "noun", + "word_frequency": 20835 + }, + { + "word": "rosicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gnaw;to be envious (informal)", + "romanization": "rosicare", + "example_sentence_native": "Il cane sta rosicando l'osso.", + "example_sentence_english": "The dog is gnawing on the bone.", + "pos": "verb", + "word_frequency": 20836 + }, + { + "word": "roster", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "roster", + "romanization": "roster", + "example_sentence_native": "Il roster della squadra è stato annunciato oggi.", + "example_sentence_english": "The team's roster was announced today.", + "pos": "noun", + "word_frequency": 20837 + }, + { + "word": "sanguinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bleed", + "romanization": "sanguinare", + "example_sentence_native": "Il taglio ha iniziato a sanguinare.", + "example_sentence_english": "The cut started to bleed.", + "pos": "verb", + "word_frequency": 20839 + }, + { + "word": "sanguinario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bloodthirsty;sanguinary", + "romanization": "sanguinario", + "example_sentence_native": "Il tiranno era noto per le sue azioni sanguinarie.", + "example_sentence_english": "The tyrant was known for his bloodthirsty actions.", + "pos": "adjective", + "word_frequency": 20840 + }, + { + "word": "sbalordito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonished;flabbergasted", + "romanization": "sbalordito", + "example_sentence_native": "Era sbalordito dalla bellezza del paesaggio.", + "example_sentence_english": "He was astonished by the beauty of the landscape.", + "pos": "adjective", + "word_frequency": 20842 + }, + { + "word": "scarcerazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "release from prison;discharge", + "romanization": "scarcerazione", + "example_sentence_native": "La scarcerazione del prigioniero è prevista per domani.", + "example_sentence_english": "The prisoner's release is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 20843 + }, + { + "word": "scarpata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embankment;slope", + "romanization": "scarpata", + "example_sentence_native": "La macchina è finita giù per la scarpata.", + "example_sentence_english": "The car went down the embankment.", + "pos": "noun", + "word_frequency": 20844 + }, + { + "word": "scenata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scene;tantrum;fuss", + "romanization": "scenata", + "example_sentence_native": "Ha fatto una scenata al ristorante.", + "example_sentence_english": "She made a scene at the restaurant.", + "pos": "noun", + "word_frequency": 20845 + }, + { + "word": "sfoggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "display;show-off;ostentation", + "romanization": "sfoggio", + "example_sentence_native": "Il suo sfoggio di ricchezza era eccessivo.", + "example_sentence_english": "His display of wealth was excessive.", + "pos": "noun", + "word_frequency": 20848 + }, + { + "word": "sfumato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nuanced;blurred;hazy (art technique)", + "romanization": "sfumato", + "example_sentence_native": "Il dipinto aveva colori sfumati e delicati.", + "example_sentence_english": "The painting had nuanced and delicate colors.", + "pos": "adjective", + "word_frequency": 20849 + }, + { + "word": "sgombrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to clear;to evacuate;to empty", + "romanization": "sgombrare", + "example_sentence_native": "Dobbiamo sgombrare la stanza prima di dipingere.", + "example_sentence_english": "We need to clear the room before painting.", + "pos": "verb", + "word_frequency": 20850 + }, + { + "word": "skateboard", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "skateboard", + "romanization": "skateboard", + "example_sentence_native": "Ha imparato a usare lo skateboard da bambino.", + "example_sentence_english": "He learned to use the skateboard as a child.", + "pos": "noun", + "word_frequency": 20854 + }, + { + "word": "somalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Somali (person or language)", + "romanization": "somalo", + "example_sentence_native": "Ha incontrato un somalo che parlava fluentemente italiano.", + "example_sentence_english": "He met a Somali who spoke fluent Italian.", + "pos": "noun", + "word_frequency": 20856 + }, + { + "word": "sondare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to probe;to sound (depths);to survey", + "romanization": "sondare", + "example_sentence_native": "Hanno sondato il terreno per trovare l'acqua.", + "example_sentence_english": "They probed the ground to find water.", + "pos": "verb", + "word_frequency": 20858 + }, + { + "word": "sonnolenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drowsiness;sleepiness", + "romanization": "sonnolenza", + "example_sentence_native": "Dopo pranzo, sentiva una forte sonnolenza.", + "example_sentence_english": "After lunch, he felt a strong drowsiness.", + "pos": "noun", + "word_frequency": 20859 + }, + { + "word": "sordina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mute (for musical instrument);silencer", + "romanization": "sordina", + "example_sentence_native": "Il trombettista ha messo la sordina per un suono più morbido.", + "example_sentence_english": "The trumpeter put on the mute for a softer sound.", + "pos": "noun", + "word_frequency": 20860 + }, + { + "word": "sottufficiale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "non-commissioned officer (NCO)", + "romanization": "sottufficiale", + "example_sentence_native": "Il sottufficiale ha dato gli ordini alla truppa.", + "example_sentence_english": "The non-commissioned officer gave orders to the troop.", + "pos": "noun", + "word_frequency": 20861 + }, + { + "word": "spartiacque", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "watershed;turning point;divide", + "romanization": "spartiacque", + "example_sentence_native": "Quell'evento fu uno spartiacque nella sua vita.", + "example_sentence_english": "That event was a watershed in his life.", + "pos": "noun", + "word_frequency": 20862 + }, + { + "word": "staffa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stirrup;bracket;clamp", + "romanization": "staffa", + "example_sentence_native": "Il cavaliere ha messo il piede nella staffa.", + "example_sentence_english": "The rider put his foot in the stirrup.", + "pos": "noun", + "word_frequency": 20863 + }, + { + "word": "sterminato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immense;boundless;vast", + "romanization": "sterminato", + "example_sentence_native": "Hanno esplorato una foresta sterminata.", + "example_sentence_english": "They explored an immense forest.", + "pos": "adjective", + "word_frequency": 20865 + }, + { + "word": "stradina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lane;small road", + "romanization": "stradina", + "example_sentence_native": "Hanno camminato lungo una stretta stradina di campagna.", + "example_sentence_english": "They walked along a narrow country lane.", + "pos": "noun", + "word_frequency": 20866 + }, + { + "word": "strenuamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "strenuously;arduously", + "romanization": "strenuamente", + "example_sentence_native": "Ha lavorato strenuamente per raggiungere i suoi obiettivi.", + "example_sentence_english": "He worked strenuously to achieve his goals.", + "pos": "adverb", + "word_frequency": 20867 + }, + { + "word": "stringente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stringent;compelling;urgent", + "romanization": "stringente", + "example_sentence_native": "La situazione richiede misure stringenti.", + "example_sentence_english": "The situation requires stringent measures.", + "pos": "adjective", + "word_frequency": 20868 + }, + { + "word": "strizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to wring;to squeeze;to squint", + "romanization": "strizzare", + "example_sentence_native": "Ha strizzato il panno bagnato.", + "example_sentence_english": "She wrung the wet cloth.", + "pos": "verb", + "word_frequency": 20869 + }, + { + "word": "svegliarsi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to wake up", + "romanization": "svegliarsi", + "example_sentence_native": "Mi sveglio sempre presto la mattina.", + "example_sentence_english": "I always wake up early in the morning.", + "pos": "verb", + "word_frequency": 20872 + }, + { + "word": "termostato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thermostat", + "romanization": "termostato", + "example_sentence_native": "Regola il termostato per avere la temperatura giusta.", + "example_sentence_english": "Adjust the thermostat to get the right temperature.", + "pos": "noun", + "word_frequency": 20877 + }, + { + "word": "token", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "token", + "romanization": "token", + "example_sentence_native": "Per accedere, devi inserire il token di sicurezza.", + "example_sentence_english": "To access, you must enter the security token.", + "pos": "noun", + "word_frequency": 20879 + }, + { + "word": "tombale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sepulchral;deathly", + "romanization": "tombale", + "example_sentence_native": "Un silenzio tombale calò sulla sala dopo l'annuncio.", + "example_sentence_english": "A deathly silence fell over the room after the announcement.", + "pos": "adjective", + "word_frequency": 20880 + }, + { + "word": "torpore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torpor;lethargy", + "romanization": "torpore", + "example_sentence_native": "Si sentiva un torpore generale dopo il lungo viaggio.", + "example_sentence_english": "A general torpor was felt after the long journey.", + "pos": "noun", + "word_frequency": 20881 + }, + { + "word": "tradizionalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traditionalist", + "romanization": "tradizionalista", + "example_sentence_native": "Mio nonno è un tradizionalista e preferisce le vecchie abitudini.", + "example_sentence_english": "My grandfather is a traditionalist and prefers old habits.", + "pos": "noun", + "word_frequency": 20882 + }, + { + "word": "tubatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piping;tubing", + "romanization": "tubatura", + "example_sentence_native": "C'è una perdita nella tubatura del bagno.", + "example_sentence_english": "There's a leak in the bathroom piping.", + "pos": "noun", + "word_frequency": 20885 + }, + { + "word": "venerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to venerate;to worship", + "romanization": "venerare", + "example_sentence_native": "Molte culture antiche veneravano gli dei della natura.", + "example_sentence_english": "Many ancient cultures venerated nature gods.", + "pos": "verb", + "word_frequency": 20887 + }, + { + "word": "veritiero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "truthful;veracious", + "romanization": "veritiero", + "example_sentence_native": "La sua testimonianza è stata considerata veritiera.", + "example_sentence_english": "His testimony was considered truthful.", + "pos": "adjective", + "word_frequency": 20888 + }, + { + "word": "vicepremier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deputy prime minister", + "romanization": "vicepremier", + "example_sentence_native": "Il vicepremier ha annunciato nuove misure economiche.", + "example_sentence_english": "The deputy prime minister announced new economic measures.", + "pos": "noun", + "word_frequency": 20890 + }, + { + "word": "zittire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to silence;to shut up", + "romanization": "zittire", + "example_sentence_native": "L'insegnante ha dovuto zittire gli studenti rumorosi.", + "example_sentence_english": "The teacher had to silence the noisy students.", + "pos": "verb", + "word_frequency": 20896 + }, + { + "word": "abrogare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to abrogate;to repeal", + "romanization": "abrogare", + "example_sentence_native": "Il parlamento ha deciso di abrogare la vecchia legge.", + "example_sentence_english": "Parliament decided to abrogate the old law.", + "pos": "verb", + "word_frequency": 20900 + }, + { + "word": "affinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to refine;to sharpen", + "romanization": "affinare", + "example_sentence_native": "Deve affinare le sue tecniche di negoziazione.", + "example_sentence_english": "He needs to refine his negotiation techniques.", + "pos": "verb", + "word_frequency": 20901 + }, + { + "word": "alpinismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountaineering;alpinism", + "romanization": "alpinismo", + "example_sentence_native": "L'alpinismo è uno sport che richiede grande preparazione fisica.", + "example_sentence_english": "Mountaineering is a sport that requires great physical preparation.", + "pos": "noun", + "word_frequency": 20905 + }, + { + "word": "ancoraggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchorage;mooring", + "romanization": "ancoraggio", + "example_sentence_native": "La barca ha trovato un buon ancoraggio nella baia.", + "example_sentence_english": "The boat found good anchorage in the bay.", + "pos": "noun", + "word_frequency": 20907 + }, + { + "word": "arciduca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archduke", + "romanization": "arciduca", + "example_sentence_native": "L'arciduca Francesco Ferdinando fu assassinato a Sarajevo.", + "example_sentence_english": "Archduke Franz Ferdinand was assassinated in Sarajevo.", + "pos": "noun", + "word_frequency": 20910 + }, + { + "word": "arrotondare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to round (off);to make round", + "romanization": "arrotondare", + "example_sentence_native": "Puoi arrotondare il numero per eccesso?", + "example_sentence_english": "Can you round the number up?", + "pos": "verb", + "word_frequency": 20912 + }, + { + "word": "arruolamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enlistment;recruitment", + "romanization": "arruolamento", + "example_sentence_native": "L'arruolamento nell'esercito è volontario.", + "example_sentence_english": "Enlistment in the army is voluntary.", + "pos": "noun", + "word_frequency": 20913 + }, + { + "word": "arruolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to enlist;to recruit", + "romanization": "arruolare", + "example_sentence_native": "Hanno arruolato nuovi soldati per la missione.", + "example_sentence_english": "They recruited new soldiers for the mission.", + "pos": "verb", + "word_frequency": 20914 + }, + { + "word": "autostop", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hitchhiking", + "romanization": "autostop", + "example_sentence_native": "Ha fatto autostop per tutta l'Europa.", + "example_sentence_english": "He hitchhiked all over Europe.", + "pos": "noun", + "word_frequency": 20918 + }, + { + "word": "azzardare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dare;to risk", + "romanization": "azzardare", + "example_sentence_native": "Non oserei mai azzardare una simile affermazione.", + "example_sentence_english": "I would never dare to make such a statement.", + "pos": "verb", + "word_frequency": 20920 + }, + { + "word": "balzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to jump;to leap", + "romanization": "balzare", + "example_sentence_native": "Il coniglio ha iniziato a balzare nel prato.", + "example_sentence_english": "The rabbit started to jump in the meadow.", + "pos": "verb", + "word_frequency": 20924 + }, + { + "word": "belare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bleat", + "romanization": "belare", + "example_sentence_native": "Le pecore hanno iniziato a belare all'alba.", + "example_sentence_english": "The sheep started to bleat at dawn.", + "pos": "verb", + "word_frequency": 20926 + }, + { + "word": "bey", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bey (Ottoman title)", + "romanization": "bey", + "example_sentence_native": "Il bey era un governatore provinciale nell'Impero Ottomano.", + "example_sentence_english": "The bey was a provincial governor in the Ottoman Empire.", + "pos": "noun", + "word_frequency": 20928 + }, + { + "word": "boato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roar;boom;thunder", + "romanization": "boato", + "example_sentence_native": "Un forte boato ha scosso la valle.", + "example_sentence_english": "A loud roar shook the valley.", + "pos": "noun", + "word_frequency": 20931 + }, + { + "word": "borbonico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bourbon (related to the House of Bourbon)", + "romanization": "borbonico", + "example_sentence_native": "Il Regno delle Due Sicilie era sotto il dominio borbonico.", + "example_sentence_english": "The Kingdom of the Two Sicilies was under Bourbon rule.", + "pos": "adjective", + "word_frequency": 20932 + }, + { + "word": "bracco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pointer (dog breed)", + "romanization": "bracco", + "example_sentence_native": "Il bracco è un cane da caccia molto intelligente.", + "example_sentence_english": "The pointer is a very intelligent hunting dog.", + "pos": "noun", + "word_frequency": 20934 + }, + { + "word": "brandello", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shred;scrap;tatter", + "romanization": "brandello", + "example_sentence_native": "Ha trovato solo brandelli della vecchia lettera.", + "example_sentence_english": "He only found shreds of the old letter.", + "pos": "noun", + "word_frequency": 20935 + }, + { + "word": "brandy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brandy", + "romanization": "brandy", + "example_sentence_native": "Ha ordinato un bicchiere di brandy dopo cena.", + "example_sentence_english": "He ordered a glass of brandy after dinner.", + "pos": "noun", + "word_frequency": 20936 + }, + { + "word": "brillantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brilliantly", + "romanization": "brillantemente", + "example_sentence_native": "Ha superato l'esame brillantemente.", + "example_sentence_english": "He passed the exam brilliantly.", + "pos": "adverb", + "word_frequency": 20937 + }, + { + "word": "bruttezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ugliness", + "romanization": "bruttezza", + "example_sentence_native": "La bruttezza del paesaggio era sorprendente.", + "example_sentence_english": "The ugliness of the landscape was surprising.", + "pos": "noun", + "word_frequency": 20939 + }, + { + "word": "buttafuori", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bouncer (at a club)", + "romanization": "buttafuori", + "example_sentence_native": "Il buttafuori non lo ha lasciato entrare nel locale.", + "example_sentence_english": "The bouncer didn't let him into the club.", + "pos": "noun", + "word_frequency": 20940 + }, + { + "word": "calcareo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "calcareous;chalky", + "romanization": "calcareo", + "example_sentence_native": "Il terreno in questa zona è molto calcareo.", + "example_sentence_english": "The soil in this area is very calcareous.", + "pos": "adjective", + "word_frequency": 20942 + }, + { + "word": "camping", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "camping;campsite", + "romanization": "camping", + "example_sentence_native": "Abbiamo passato le vacanze in un camping vicino al mare.", + "example_sentence_english": "We spent our holidays at a campsite near the sea.", + "pos": "noun", + "word_frequency": 20943 + }, + { + "word": "cappelletto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small hat;cappelletto (type of pasta)", + "romanization": "cappelletto", + "example_sentence_native": "A Natale mangiamo sempre i cappelletti in brodo.", + "example_sentence_english": "At Christmas, we always eat cappelletti in broth.", + "pos": "noun", + "word_frequency": 20944 + }, + { + "word": "caravan", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caravan;trailer", + "romanization": "caravan", + "example_sentence_native": "Abbiamo affittato una caravan per il nostro viaggio.", + "example_sentence_english": "We rented a caravan for our trip.", + "pos": "noun", + "word_frequency": 20945 + }, + { + "word": "carcerazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprisonment;incarceration", + "romanization": "carcerazione", + "example_sentence_native": "La carcerazione preventiva è stata revocata.", + "example_sentence_english": "The pre-trial detention was revoked.", + "pos": "noun", + "word_frequency": 20946 + }, + { + "word": "champion", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "champion", + "romanization": "champion", + "example_sentence_native": "È il campione in carica di tennis.", + "example_sentence_english": "He is the reigning tennis champion.", + "pos": "noun", + "word_frequency": 20947 + }, + { + "word": "cocente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "burning;scorching;stinging", + "romanization": "cocente", + "example_sentence_native": "Ha provato una cocente delusione.", + "example_sentence_english": "He felt a stinging disappointment.", + "pos": "adjective", + "word_frequency": 20950 + }, + { + "word": "collezionismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collecting (as a hobby);philately", + "romanization": "collezionismo", + "example_sentence_native": "Il collezionismo di francobolli è un hobby diffuso.", + "example_sentence_english": "Stamp collecting is a widespread hobby.", + "pos": "noun", + "word_frequency": 20951 + }, + { + "word": "confederato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "confederate", + "romanization": "confederato", + "example_sentence_native": "I soldati confederati si arresero alla fine della guerra.", + "example_sentence_english": "The Confederate soldiers surrendered at the end of the war.", + "pos": "noun", + "word_frequency": 20953 + }, + { + "word": "confluire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to flow together;to converge", + "romanization": "confluire", + "example_sentence_native": "I due fiumi confluiscono a valle.", + "example_sentence_english": "The two rivers flow together downstream.", + "pos": "verb", + "word_frequency": 20954 + }, + { + "word": "consumazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consumption;drink;food ordered (at a bar;cafe)", + "romanization": "consumazione", + "example_sentence_native": "La consumazione è obbligatoria per sedersi al tavolo.", + "example_sentence_english": "Consumption is mandatory to sit at the table.", + "pos": "noun", + "word_frequency": 20955 + }, + { + "word": "contemporaneità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contemporaneity;simultaneity", + "romanization": "contemporaneità", + "example_sentence_native": "La contemporaneità degli eventi ha reso la situazione complessa.", + "example_sentence_english": "The contemporaneity of the events made the situation complex.", + "pos": "noun", + "word_frequency": 20956 + }, + { + "word": "contrattacco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterattack", + "romanization": "contrattacco", + "example_sentence_native": "L'esercito ha lanciato un contrattacco.", + "example_sentence_english": "The army launched a counterattack.", + "pos": "noun", + "word_frequency": 20957 + }, + { + "word": "corsaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corsair;pirate", + "romanization": "corsaro", + "example_sentence_native": "Il corsaro ha attaccato la nave mercantile.", + "example_sentence_english": "The corsair attacked the merchant ship.", + "pos": "noun", + "word_frequency": 20958 + }, + { + "word": "cosetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little thing;trifle", + "romanization": "cosetta", + "example_sentence_native": "È solo una cosetta, non preoccuparti.", + "example_sentence_english": "It's just a little thing, don't worry.", + "pos": "noun", + "word_frequency": 20959 + }, + { + "word": "detentivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "custodial", + "romanization": "detentivo", + "example_sentence_native": "Ha ricevuto una pena detentiva di due anni.", + "example_sentence_english": "He received a custodial sentence of two years.", + "pos": "adjective", + "word_frequency": 20967 + }, + { + "word": "diramazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "branching;offshoot", + "romanization": "diramazione", + "example_sentence_native": "C'è una diramazione della strada principale qui.", + "example_sentence_english": "There's an offshoot of the main road here.", + "pos": "noun", + "word_frequency": 20969 + }, + { + "word": "disavanzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deficit", + "romanization": "disavanzo", + "example_sentence_native": "Il governo sta cercando di ridurre il disavanzo pubblico.", + "example_sentence_english": "The government is trying to reduce the public deficit.", + "pos": "noun", + "word_frequency": 20971 + }, + { + "word": "dispendio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expenditure;outlay", + "romanization": "dispendio", + "example_sentence_native": "La costruzione del ponte ha richiesto un grande dispendio di energie.", + "example_sentence_english": "The construction of the bridge required a great expenditure of energy.", + "pos": "noun", + "word_frequency": 20972 + }, + { + "word": "disseminare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disseminate;to scatter", + "romanization": "disseminare", + "example_sentence_native": "È importante disseminare informazioni accurate.", + "example_sentence_english": "It is important to disseminate accurate information.", + "pos": "verb", + "word_frequency": 20973 + }, + { + "word": "distillare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distill", + "romanization": "distillare", + "example_sentence_native": "Si usa l'alambicco per distillare il liquore.", + "example_sentence_english": "An alembic is used to distill the liquor.", + "pos": "verb", + "word_frequency": 20974 + }, + { + "word": "distillazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distillation", + "romanization": "distillazione", + "example_sentence_native": "La distillazione è un processo chimico.", + "example_sentence_english": "Distillation is a chemical process.", + "pos": "noun", + "word_frequency": 20975 + }, + { + "word": "dopodichè", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "after which;then", + "romanization": "dopodichè", + "example_sentence_native": "Ha finito il lavoro, dopodichè è andato a casa.", + "example_sentence_english": "He finished the work, after which he went home.", + "pos": "adverb", + "word_frequency": 20976 + }, + { + "word": "ebraismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Judaism", + "romanization": "ebraismo", + "example_sentence_native": "L'ebraismo è una delle più antiche religioni monoteiste.", + "example_sentence_english": "Judaism is one of the oldest monotheistic religions.", + "pos": "noun", + "word_frequency": 20978 + }, + { + "word": "egregio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distinguished;esteemed", + "romanization": "egregio", + "example_sentence_native": "Egregio Signore, Le scrivo in riferimento alla Sua richiesta.", + "example_sentence_english": "Esteemed Sir, I am writing to you in reference to your request.", + "pos": "adjective", + "word_frequency": 20979 + }, + { + "word": "elegantemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elegantly", + "romanization": "elegantemente", + "example_sentence_native": "Si vestiva sempre elegantemente per ogni occasione.", + "example_sentence_english": "She always dressed elegantly for every occasion.", + "pos": "adverb", + "word_frequency": 20981 + }, + { + "word": "enfatizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to emphasize", + "romanization": "enfatizzare", + "example_sentence_native": "Voglio enfatizzare l'importanza della sicurezza.", + "example_sentence_english": "I want to emphasize the importance of safety.", + "pos": "verb", + "word_frequency": 20984 + }, + { + "word": "esequia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "funeral rite", + "romanization": "esequia", + "example_sentence_native": "Le esequie si terranno domani mattina.", + "example_sentence_english": "The funeral rites will be held tomorrow morning.", + "pos": "noun", + "word_frequency": 20985 + }, + { + "word": "faticosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laboriously;with difficulty", + "romanization": "faticosamente", + "example_sentence_native": "Ha faticosamente raggiunto la cima della montagna.", + "example_sentence_english": "He laboriously reached the top of the mountain.", + "pos": "adverb", + "word_frequency": 20989 + }, + { + "word": "fecondità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fertility;fruitfulness", + "romanization": "fecondità", + "example_sentence_native": "La fecondità del terreno è essenziale per l'agricoltura.", + "example_sentence_english": "The fertility of the soil is essential for agriculture.", + "pos": "noun", + "word_frequency": 20990 + }, + { + "word": "ficcare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stick;to shove", + "romanization": "ficcare", + "example_sentence_native": "Non ficcare il naso negli affari altrui.", + "example_sentence_english": "Don't stick your nose into other people's business.", + "pos": "verb", + "word_frequency": 20992 + }, + { + "word": "figurativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "figurative", + "romanization": "figurativo", + "example_sentence_native": "Il linguaggio poetico è spesso figurativo.", + "example_sentence_english": "Poetic language is often figurative.", + "pos": "adjective", + "word_frequency": 20993 + }, + { + "word": "folclore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "folklore", + "romanization": "folclore", + "example_sentence_native": "Il folclore locale è ricco di storie e leggende.", + "example_sentence_english": "Local folklore is rich in stories and legends.", + "pos": "noun", + "word_frequency": 20997 + }, + { + "word": "fondamentalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamentalism", + "romanization": "fondamentalismo", + "example_sentence_native": "Il fondamentalismo religioso è un fenomeno complesso.", + "example_sentence_english": "Religious fundamentalism is a complex phenomenon.", + "pos": "noun", + "word_frequency": 20998 + }, + { + "word": "fontanella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small fountain;drinking fountain", + "romanization": "fontanella", + "example_sentence_native": "C'è una fontanella nel parco dove puoi bere acqua fresca.", + "example_sentence_english": "There's a drinking fountain in the park where you can drink fresh water.", + "pos": "noun", + "word_frequency": 20999 + }, + { + "word": "frettolosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hurriedly", + "romanization": "frettolosamente", + "example_sentence_native": "Ha finito il lavoro frettolosamente per andare via.", + "example_sentence_english": "He finished the work hurriedly to leave.", + "pos": "adverb", + "word_frequency": 21000 + }, + { + "word": "frittura", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frying;fried food", + "romanization": "frittura", + "example_sentence_native": "La frittura di pesce è un piatto tipico della costa.", + "example_sentence_english": "Fried fish is a typical dish of the coast.", + "pos": "noun", + "word_frequency": 21001 + }, + { + "word": "frodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poaching;smuggling", + "romanization": "frodo", + "example_sentence_native": "La caccia di frodo è severamente proibita.", + "example_sentence_english": "Poaching is strictly prohibited.", + "pos": "noun", + "word_frequency": 21002 + }, + { + "word": "fruttare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to yield;to bear fruit;to be profitable", + "romanization": "fruttare", + "example_sentence_native": "L'investimento ha iniziato a fruttare dopo un anno.", + "example_sentence_english": "The investment started to yield after a year.", + "pos": "verb", + "word_frequency": 21003 + }, + { + "word": "galateo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "etiquette;manners", + "romanization": "galateo", + "example_sentence_native": "È importante conoscere il galateo a tavola.", + "example_sentence_english": "It's important to know table etiquette.", + "pos": "noun", + "word_frequency": 21005 + }, + { + "word": "galeotto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convict;matchmaker", + "romanization": "galeotto", + "example_sentence_native": "Il galeotto è fuggito dalla prigione.", + "example_sentence_english": "The convict escaped from prison.", + "pos": "noun", + "word_frequency": 21006 + }, + { + "word": "garofano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnation", + "romanization": "garofano", + "example_sentence_native": "Ha regalato un mazzo di garofani rossi.", + "example_sentence_english": "He gave a bouquet of red carnations.", + "pos": "noun", + "word_frequency": 21008 + }, + { + "word": "genitoriale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parental", + "romanization": "genitoriale", + "example_sentence_native": "Hanno discusso le responsabilità genitoriali.", + "example_sentence_english": "They discussed parental responsibilities.", + "pos": "adjective", + "word_frequency": 21009 + }, + { + "word": "geologo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "geologist", + "romanization": "geologo", + "example_sentence_native": "Il geologo ha studiato la composizione del terreno.", + "example_sentence_english": "The geologist studied the composition of the soil.", + "pos": "noun", + "word_frequency": 21010 + }, + { + "word": "immigrante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "immigrant", + "romanization": "immigrante", + "example_sentence_native": "Molti immigranti cercano una vita migliore.", + "example_sentence_english": "Many immigrants seek a better life.", + "pos": "noun", + "word_frequency": 21019 + }, + { + "word": "immobilismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immobilism;stagnation", + "romanization": "immobilismo", + "example_sentence_native": "L'immobilismo politico rallenta il progresso.", + "example_sentence_english": "Political immobilism slows down progress.", + "pos": "noun", + "word_frequency": 21020 + }, + { + "word": "impareggiabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incomparable;unmatched", + "romanization": "impareggiabile", + "example_sentence_native": "La sua bellezza è impareggiabile.", + "example_sentence_english": "Her beauty is incomparable.", + "pos": "adjective", + "word_frequency": 21021 + }, + { + "word": "impossibilitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unable;prevented", + "romanization": "impossibilitato", + "example_sentence_native": "Sono impossibilitato a partecipare alla riunione.", + "example_sentence_english": "I am unable to attend the meeting.", + "pos": "adjective", + "word_frequency": 21022 + }, + { + "word": "imprecisato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unspecified;undetermined", + "romanization": "imprecisato", + "example_sentence_native": "La data dell'evento è ancora imprecisata.", + "example_sentence_english": "The date of the event is still unspecified.", + "pos": "adjective", + "word_frequency": 21023 + }, + { + "word": "impunito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unpunished", + "romanization": "impunito", + "example_sentence_native": "Il crimine non deve restare impunito.", + "example_sentence_english": "The crime must not remain unpunished.", + "pos": "adjective", + "word_frequency": 21024 + }, + { + "word": "ingegnoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingenious;clever", + "romanization": "ingegnoso", + "example_sentence_native": "Ha trovato una soluzione ingegnosa al problema.", + "example_sentence_english": "He found an ingenious solution to the problem.", + "pos": "adjective", + "word_frequency": 21025 + }, + { + "word": "inox", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stainless steel", + "romanization": "inox", + "example_sentence_native": "La cucina è dotata di elettrodomestici in acciaio inox.", + "example_sentence_english": "The kitchen is equipped with stainless steel appliances.", + "pos": "noun", + "word_frequency": 21026 + }, + { + "word": "insabbiare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bury in sand;to cover up", + "romanization": "insabbiare", + "example_sentence_native": "Hanno cercato di insabbiare lo scandalo.", + "example_sentence_english": "They tried to cover up the scandal.", + "pos": "verb", + "word_frequency": 21027 + }, + { + "word": "internazionalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internationally", + "romanization": "internazionalmente", + "example_sentence_native": "L'azienda opera internazionalmente.", + "example_sentence_english": "The company operates internationally.", + "pos": "adverb", + "word_frequency": 21029 + }, + { + "word": "invasivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invasive", + "romanization": "invasivo", + "example_sentence_native": "L'intervento chirurgico è minimamente invasivo.", + "example_sentence_english": "The surgical procedure is minimally invasive.", + "pos": "adjective", + "word_frequency": 21031 + }, + { + "word": "ionico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Ionian;ionic", + "romanization": "ionico", + "example_sentence_native": "L'ordine ionico è uno stile architettonico.", + "example_sentence_english": "The Ionian order is an architectural style.", + "pos": "adjective", + "word_frequency": 21032 + }, + { + "word": "israelita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Israelite", + "romanization": "israelita", + "example_sentence_native": "Gli israeliti furono un popolo antico.", + "example_sentence_english": "The Israelites were an ancient people.", + "pos": "noun", + "word_frequency": 21035 + }, + { + "word": "lancetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hand (of a clock);needle", + "romanization": "lancetta", + "example_sentence_native": "La lancetta dei minuti si muove lentamente.", + "example_sentence_english": "The minute hand moves slowly.", + "pos": "noun", + "word_frequency": 21047 + }, + { + "word": "lievitare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to rise;to leaven", + "romanization": "lievitare", + "example_sentence_native": "L'impasto deve lievitare per un'ora.", + "example_sentence_english": "The dough must rise for an hour.", + "pos": "verb", + "word_frequency": 21050 + }, + { + "word": "lipido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lipid", + "romanization": "lipido", + "example_sentence_native": "I lipidi sono essenziali per la salute delle membrane cellulari.", + "example_sentence_english": "Lipids are essential for the health of cell membranes.", + "pos": "noun", + "word_frequency": 21052 + }, + { + "word": "logos", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "logos", + "romanization": "logos", + "example_sentence_native": "Il concetto di logos è centrale nella filosofia greca.", + "example_sentence_english": "The concept of logos is central in Greek philosophy.", + "pos": "noun", + "word_frequency": 21054 + }, + { + "word": "macchiare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to stain;to spot", + "romanization": "macchiare", + "example_sentence_native": "Ho macchiato la mia maglietta con il caffè.", + "example_sentence_english": "I stained my shirt with coffee.", + "pos": "verb", + "word_frequency": 21055 + }, + { + "word": "magnificamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnificently;splendidly", + "romanization": "magnificamente", + "example_sentence_native": "L'orchestra ha suonato magnificamente.", + "example_sentence_english": "The orchestra played magnificently.", + "pos": "adverb", + "word_frequency": 21056 + }, + { + "word": "manicure", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manicure", + "romanization": "manicure", + "example_sentence_native": "Si è fatta una manicure prima della festa.", + "example_sentence_english": "She got a manicure before the party.", + "pos": "noun", + "word_frequency": 21057 + }, + { + "word": "mannaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "werewolf (as in 'lupo mannaro')", + "romanization": "mannaro", + "example_sentence_native": "La leggenda del lupo mannaro è molto antica.", + "example_sentence_english": "The legend of the werewolf is very old.", + "pos": "noun", + "word_frequency": 21058 + }, + { + "word": "mazzola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mallet;sledgehammer", + "romanization": "mazzola", + "example_sentence_native": "Ha usato una mazzola per rompere il muro.", + "example_sentence_english": "He used a sledgehammer to break the wall.", + "pos": "noun", + "word_frequency": 21060 + }, + { + "word": "modellino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "model (small scale);miniature", + "romanization": "modellino", + "example_sentence_native": "Ha costruito un modellino di aereo.", + "example_sentence_english": "He built a model airplane.", + "pos": "noun", + "word_frequency": 21066 + }, + { + "word": "neurale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neural", + "romanization": "neurale", + "example_sentence_native": "Il sistema neurale è complesso e affascinante.", + "example_sentence_english": "The neural system is complex and fascinating.", + "pos": "adjective", + "word_frequency": 21072 + }, + { + "word": "neuroscienza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neuroscience", + "romanization": "neuroscienza", + "example_sentence_native": "La neuroscienza studia il cervello e il sistema nervoso.", + "example_sentence_english": "Neuroscience studies the brain and nervous system.", + "pos": "noun", + "word_frequency": 21073 + }, + { + "word": "numismatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "numismatic", + "romanization": "numismatico", + "example_sentence_native": "È un esperto numismatico e colleziona monete antiche.", + "example_sentence_english": "He is a numismatic expert and collects ancient coins.", + "pos": "adjective", + "word_frequency": 21075 + }, + { + "word": "occhiaia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark circle under the eye;eye bag", + "romanization": "occhiaia", + "example_sentence_native": "Ha delle occhiaie profonde per la mancanza di sonno.", + "example_sentence_english": "She has deep dark circles under her eyes from lack of sleep.", + "pos": "noun", + "word_frequency": 21076 + }, + { + "word": "olfatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sense of smell;olfaction", + "romanization": "olfatto", + "example_sentence_native": "Il cane ha un olfatto molto sviluppato.", + "example_sentence_english": "The dog has a very developed sense of smell.", + "pos": "noun", + "word_frequency": 21077 + }, + { + "word": "omelia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "homily;sermon", + "romanization": "omelia", + "example_sentence_native": "Il prete ha tenuto un'omelia toccante.", + "example_sentence_english": "The priest delivered a touching homily.", + "pos": "noun", + "word_frequency": 21078 + }, + { + "word": "oralmente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orally", + "romanization": "oralmente", + "example_sentence_native": "Ha risposto oralmente all'esame.", + "example_sentence_english": "He answered the exam orally.", + "pos": "adverb", + "word_frequency": 21079 + }, + { + "word": "orsa", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "female bear", + "romanization": "orsa", + "example_sentence_native": "L'orsa proteggeva i suoi cuccioli.", + "example_sentence_english": "The female bear protected her cubs.", + "pos": "noun", + "word_frequency": 21081 + }, + { + "word": "ostiense", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Ostian", + "romanization": "ostiense", + "example_sentence_native": "Abbiamo visitato le rovine ostiensi.", + "example_sentence_english": "We visited the Ostian ruins.", + "pos": "adjective", + "word_frequency": 21082 + }, + { + "word": "ottomila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "eight thousand", + "romanization": "ottomila", + "example_sentence_native": "Ci sono ottomila persone in piazza.", + "example_sentence_english": "There are eight thousand people in the square.", + "pos": "adjective", + "word_frequency": 21085 + }, + { + "word": "panacea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "panacea", + "romanization": "panacea", + "example_sentence_native": "Non esiste una panacea per tutti i problemi.", + "example_sentence_english": "There is no panacea for all problems.", + "pos": "noun", + "word_frequency": 21089 + }, + { + "word": "parafrasare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to paraphrase", + "romanization": "parafrasare", + "example_sentence_native": "Puoi parafrasare questo concetto in parole tue?", + "example_sentence_english": "Can you paraphrase this concept in your own words?", + "pos": "verb", + "word_frequency": 21090 + }, + { + "word": "pargolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infant;little child", + "romanization": "pargolo", + "example_sentence_native": "Il pargolo dormiva serenamente nella culla.", + "example_sentence_english": "The infant slept peacefully in the cradle.", + "pos": "noun", + "word_frequency": 21091 + }, + { + "word": "paritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "equal;egalitarian", + "romanization": "paritario", + "example_sentence_native": "Lottiamo per una società più paritaria.", + "example_sentence_english": "We fight for a more egalitarian society.", + "pos": "adjective", + "word_frequency": 21092 + }, + { + "word": "partenopeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Neapolitan", + "romanization": "partenopeo", + "example_sentence_native": "La pizza partenopea è famosa in tutto il mondo.", + "example_sentence_english": "Neapolitan pizza is famous all over the world.", + "pos": "adjective", + "word_frequency": 21093 + }, + { + "word": "patrigno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepfather", + "romanization": "patrigno", + "example_sentence_native": "Il mio patrigno è molto gentile.", + "example_sentence_english": "My stepfather is very kind.", + "pos": "noun", + "word_frequency": 21094 + }, + { + "word": "penombra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "semi-darkness;twilight", + "romanization": "penombra", + "example_sentence_native": "La stanza era avvolta nella penombra.", + "example_sentence_english": "The room was enveloped in semi-darkness.", + "pos": "noun", + "word_frequency": 21095 + }, + { + "word": "pesco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "peach tree", + "romanization": "pesco", + "example_sentence_native": "Il pesco in giardino è pieno di frutti.", + "example_sentence_english": "The peach tree in the garden is full of fruit.", + "pos": "noun", + "word_frequency": 21097 + }, + { + "word": "piadina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piadina (Italian flatbread)", + "romanization": "piadina", + "example_sentence_native": "Ho mangiato una deliziosa piadina con prosciutto e squacquerone.", + "example_sentence_english": "I ate a delicious piadina with ham and squacquerone cheese.", + "pos": "noun", + "word_frequency": 21098 + }, + { + "word": "pira", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pyre", + "romanization": "pira", + "example_sentence_native": "Hanno acceso una grande pira per la festa.", + "example_sentence_english": "They lit a large pyre for the celebration.", + "pos": "noun", + "word_frequency": 21099 + }, + { + "word": "piumino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "down jacket;feather duster", + "romanization": "piumino", + "example_sentence_native": "Ho comprato un nuovo piumino per l'inverno.", + "example_sentence_english": "I bought a new down jacket for the winter.", + "pos": "noun", + "word_frequency": 21100 + }, + { + "word": "presentatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female presenter;host", + "romanization": "presentatrice", + "example_sentence_native": "La presentatrice ha annunciato il prossimo ospite.", + "example_sentence_english": "The female presenter announced the next guest.", + "pos": "noun", + "word_frequency": 21101 + }, + { + "word": "prorogare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to postpone;to extend", + "romanization": "prorogare", + "example_sentence_native": "Dobbiamo prorogare la scadenza del progetto.", + "example_sentence_english": "We need to postpone the project deadline.", + "pos": "verb", + "word_frequency": 21102 + }, + { + "word": "quadruplo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadruple", + "romanization": "quadruplo", + "example_sentence_native": "Il costo è il quadruplo rispetto all'originale.", + "example_sentence_english": "The cost is quadruple compared to the original.", + "pos": "adjective", + "word_frequency": 21105 + }, + { + "word": "quattromila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "four thousand", + "romanization": "quattromila", + "example_sentence_native": "Il monte è alto quattromila metri.", + "example_sentence_english": "The mountain is four thousand meters high.", + "pos": "adjective", + "word_frequency": 21108 + }, + { + "word": "quieto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quiet;calm", + "romanization": "quieto", + "example_sentence_native": "Il mare era quieto dopo la tempesta.", + "example_sentence_english": "The sea was calm after the storm.", + "pos": "adjective", + "word_frequency": 21110 + }, + { + "word": "racimolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scrape together;to gather", + "romanization": "racimolare", + "example_sentence_native": "Sono riuscito a racimolare qualche spicciolo.", + "example_sentence_english": "I managed to scrape together some change.", + "pos": "verb", + "word_frequency": 21111 + }, + { + "word": "radere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shave;to raze", + "romanization": "radere", + "example_sentence_native": "Devo radere la barba ogni mattina.", + "example_sentence_english": "I have to shave my beard every morning.", + "pos": "verb", + "word_frequency": 21112 + }, + { + "word": "raggiante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "radiant;beaming", + "romanization": "raggiante", + "example_sentence_native": "Era raggiante di felicità.", + "example_sentence_english": "She was radiant with happiness.", + "pos": "adjective", + "word_frequency": 21114 + }, + { + "word": "relativismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relativism", + "romanization": "relativismo", + "example_sentence_native": "Il relativismo culturale è un concetto complesso.", + "example_sentence_english": "Cultural relativism is a complex concept.", + "pos": "noun", + "word_frequency": 21116 + }, + { + "word": "renna", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reindeer", + "romanization": "renna", + "example_sentence_native": "Le renne tirano la slitta di Babbo Natale.", + "example_sentence_english": "Reindeer pull Santa Claus's sleigh.", + "pos": "noun", + "word_frequency": 21117 + }, + { + "word": "ridimensionamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "downsizing;re-evaluation", + "romanization": "ridimensionamento", + "example_sentence_native": "L'azienda ha annunciato un ridimensionamento del personale.", + "example_sentence_english": "The company announced a downsizing of staff.", + "pos": "noun", + "word_frequency": 21119 + }, + { + "word": "rifornire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resupply;to refuel", + "romanization": "rifornire", + "example_sentence_native": "Dobbiamo rifornire il serbatoio prima di partire.", + "example_sentence_english": "We need to refuel the tank before leaving.", + "pos": "verb", + "word_frequency": 21120 + }, + { + "word": "romanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "romance (musical piece);ballad", + "romanization": "romanza", + "example_sentence_native": "Ha cantato una dolce romanza al pianoforte.", + "example_sentence_english": "She sang a sweet romance on the piano.", + "pos": "noun", + "word_frequency": 21124 + }, + { + "word": "rossore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "redness;blush", + "romanization": "rossore", + "example_sentence_native": "Il rossore sul suo viso indicava imbarazzo.", + "example_sentence_english": "The redness on her face indicated embarrassment.", + "pos": "noun", + "word_frequency": 21126 + }, + { + "word": "runa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rune", + "romanization": "runa", + "example_sentence_native": "Le antiche rune erano usate per la divinazione.", + "example_sentence_english": "Ancient runes were used for divination.", + "pos": "noun", + "word_frequency": 21127 + }, + { + "word": "sacrilegio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sacrilege", + "romanization": "sacrilegio", + "example_sentence_native": "Bruciare quel libro sarebbe un sacrilegio.", + "example_sentence_english": "Burning that book would be a sacrilege.", + "pos": "noun", + "word_frequency": 21130 + }, + { + "word": "saletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small room;lounge", + "romanization": "saletta", + "example_sentence_native": "Ci siamo incontrati nella saletta d'attesa.", + "example_sentence_english": "We met in the small waiting room.", + "pos": "noun", + "word_frequency": 21131 + }, + { + "word": "sbaraglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rout;disarray (often in 'allo sbaraglio' - into the fray;to ruin)", + "romanization": "sbaraglio", + "example_sentence_native": "Si sono lanciati allo sbaraglio.", + "example_sentence_english": "They threw themselves into the fray.", + "pos": "noun", + "word_frequency": 21134 + }, + { + "word": "scasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forced entry;breaking and entering;tillage (agricultural)", + "romanization": "scasso", + "example_sentence_native": "La polizia ha trovato segni di scasso sulla porta.", + "example_sentence_english": "The police found signs of forced entry on the door.", + "pos": "noun", + "word_frequency": 21136 + }, + { + "word": "scherzosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jokingly;playfully", + "romanization": "scherzosamente", + "example_sentence_native": "Ha risposto scherzosamente alla sua domanda.", + "example_sentence_english": "He jokingly answered her question.", + "pos": "adverb", + "word_frequency": 21137 + }, + { + "word": "scherzoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playful;joking;facetious", + "romanization": "scherzoso", + "example_sentence_native": "È una persona molto scherzosa.", + "example_sentence_english": "He is a very playful person.", + "pos": "adjective", + "word_frequency": 21138 + }, + { + "word": "scioperare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to strike (work)", + "romanization": "scioperare", + "example_sentence_native": "I lavoratori hanno deciso di scioperare.", + "example_sentence_english": "The workers decided to strike.", + "pos": "verb", + "word_frequency": 21139 + }, + { + "word": "selvaggina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "game (meat)", + "romanization": "selvaggina", + "example_sentence_native": "A cena abbiamo mangiato selvaggina.", + "example_sentence_english": "For dinner, we ate game meat.", + "pos": "noun", + "word_frequency": 21142 + }, + { + "word": "somigliante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "similar;resembling", + "romanization": "somigliante", + "example_sentence_native": "Il suo stile è molto somigliante a quello di suo padre.", + "example_sentence_english": "His style is very similar to his father's.", + "pos": "adjective", + "word_frequency": 21147 + }, + { + "word": "sottobanco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "under the counter;illicitly", + "romanization": "sottobanco", + "example_sentence_native": "Ha venduto i biglietti sottobanco.", + "example_sentence_english": "He sold the tickets under the counter.", + "pos": "adverb", + "word_frequency": 21150 + }, + { + "word": "sovraffollamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overcrowding", + "romanization": "sovraffollamento", + "example_sentence_native": "Il sovraffollamento dei trasporti pubblici è un problema.", + "example_sentence_english": "Overcrowding of public transport is a problem.", + "pos": "noun", + "word_frequency": 21151 + }, + { + "word": "spettrale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spectral;ghostly", + "romanization": "spettrale", + "example_sentence_native": "La vecchia casa aveva un'atmosfera spettrale.", + "example_sentence_english": "The old house had a spectral atmosphere.", + "pos": "adjective", + "word_frequency": 21152 + }, + { + "word": "spicchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clove (of garlic);segment (of orange);wedge", + "romanization": "spicchio", + "example_sentence_native": "Aggiungi uno spicchio d'aglio alla salsa.", + "example_sentence_english": "Add a clove of garlic to the sauce.", + "pos": "noun", + "word_frequency": 21153 + }, + { + "word": "sprezzante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scornful;contemptuous", + "romanization": "sprezzante", + "example_sentence_native": "Ha risposto con un tono sprezzante.", + "example_sentence_english": "He replied with a scornful tone.", + "pos": "adjective", + "word_frequency": 21155 + }, + { + "word": "squarcio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tear;rip;gash", + "romanization": "squarcio", + "example_sentence_native": "C'era uno squarcio nella tela del quadro.", + "example_sentence_english": "There was a tear in the canvas of the painting.", + "pos": "noun", + "word_frequency": 21157 + }, + { + "word": "stamperia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "printing house;print shop", + "romanization": "stamperia", + "example_sentence_native": "La vecchia stamperia produce ancora libri.", + "example_sentence_english": "The old printing house still produces books.", + "pos": "noun", + "word_frequency": 21158 + }, + { + "word": "storiografico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "historiographical", + "romanization": "storiografico", + "example_sentence_native": "Ha condotto una ricerca storiografica approfondita.", + "example_sentence_english": "He conducted a thorough historiographical research.", + "pos": "adjective", + "word_frequency": 21159 + }, + { + "word": "sunto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "summary", + "romanization": "sunto", + "example_sentence_native": "Potresti farmi un sunto del discorso?", + "example_sentence_english": "Could you give me a summary of the speech?", + "pos": "noun", + "word_frequency": 21162 + }, + { + "word": "suscettibilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "susceptibility", + "romanization": "suscettibilità", + "example_sentence_native": "La sua suscettibilità lo rende difficile da criticare.", + "example_sentence_english": "His susceptibility makes him difficult to criticize.", + "pos": "noun", + "word_frequency": 21163 + }, + { + "word": "taco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "taco", + "romanization": "taco", + "example_sentence_native": "Mi piace mangiare i taco con molta salsa piccante.", + "example_sentence_english": "I like to eat tacos with a lot of hot sauce.", + "pos": "noun", + "word_frequency": 21165 + }, + { + "word": "talentuoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "talented", + "romanization": "talentuoso", + "example_sentence_native": "È un artista molto talentuoso.", + "example_sentence_english": "He is a very talented artist.", + "pos": "adjective", + "word_frequency": 21166 + }, + { + "word": "tartaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tartar", + "romanization": "tartaro", + "example_sentence_native": "Il dentista ha rimosso il tartaro dai miei denti.", + "example_sentence_english": "The dentist removed the tartar from my teeth.", + "pos": "noun", + "word_frequency": 21168 + }, + { + "word": "torchio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "press", + "romanization": "torchio", + "example_sentence_native": "L'uva viene schiacciata nel torchio per fare il vino.", + "example_sentence_english": "Grapes are crushed in the press to make wine.", + "pos": "noun", + "word_frequency": 21172 + }, + { + "word": "trentesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirtieth", + "romanization": "trentesimo", + "example_sentence_native": "Oggi è il trentesimo giorno del mese.", + "example_sentence_english": "Today is the thirtieth day of the month.", + "pos": "adjective", + "word_frequency": 21173 + }, + { + "word": "trentuno", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty-one", + "romanization": "trentuno", + "example_sentence_native": "Ho trentuno anni.", + "example_sentence_english": "I am thirty-one years old.", + "pos": "adjective", + "word_frequency": 21174 + }, + { + "word": "trequartista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "attacking midfielder (football)", + "romanization": "trequartista", + "example_sentence_native": "Il trequartista è fondamentale per creare occasioni da gol.", + "example_sentence_english": "The attacking midfielder is fundamental for creating scoring opportunities.", + "pos": "noun", + "word_frequency": 21175 + }, + { + "word": "truck", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "truck", + "romanization": "truck", + "example_sentence_native": "Il truck trasportava merci pesanti.", + "example_sentence_english": "The truck was carrying heavy goods.", + "pos": "noun", + "word_frequency": 21176 + }, + { + "word": "vaccinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to vaccinate", + "romanization": "vaccinare", + "example_sentence_native": "È importante vaccinare i bambini contro le malattie.", + "example_sentence_english": "It is important to vaccinate children against diseases.", + "pos": "verb", + "word_frequency": 21180 + }, + { + "word": "vistoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "showy", + "romanization": "vistoso", + "example_sentence_native": "Indossava un cappello molto vistoso.", + "example_sentence_english": "She was wearing a very showy hat.", + "pos": "adjective", + "word_frequency": 21183 + }, + { + "word": "viticoltura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viticulture", + "romanization": "viticoltura", + "example_sentence_native": "La viticoltura è un'attività economica importante in questa regione.", + "example_sentence_english": "Viticulture is an important economic activity in this region.", + "pos": "noun", + "word_frequency": 21184 + }, + { + "word": "volatilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "volatility", + "romanization": "volatilità", + "example_sentence_native": "La volatilità dei mercati finanziari è aumentata.", + "example_sentence_english": "The volatility of financial markets has increased.", + "pos": "noun", + "word_frequency": 21187 + }, + { + "word": "zelante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zealous", + "romanization": "zelante", + "example_sentence_native": "È un lavoratore molto zelante.", + "example_sentence_english": "He is a very zealous worker.", + "pos": "adjective", + "word_frequency": 21193 + }, + { + "word": "zeppa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wedge", + "romanization": "zeppa", + "example_sentence_native": "Ho messo una zeppa sotto il tavolo per stabilizzarlo.", + "example_sentence_english": "I put a wedge under the table to stabilize it.", + "pos": "noun", + "word_frequency": 21194 + }, + { + "word": "accaparrarsi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to hoard", + "romanization": "accaparrarsi", + "example_sentence_native": "Molte persone hanno cercato di accaparrarsi i biglietti per il concerto.", + "example_sentence_english": "Many people tried to snap up tickets for the concert.", + "pos": "verb", + "word_frequency": 21196 + }, + { + "word": "additare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to point out", + "romanization": "additare", + "example_sentence_native": "Non è giusto additare qualcuno senza prove.", + "example_sentence_english": "It's not right to accuse someone without proof.", + "pos": "verb", + "word_frequency": 21197 + }, + { + "word": "adoperare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to use", + "romanization": "adoperare", + "example_sentence_native": "Dobbiamo adoperare tutte le nostre risorse.", + "example_sentence_english": "We must use all our resources.", + "pos": "verb", + "word_frequency": 21198 + }, + { + "word": "afa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oppressive heat", + "romanization": "afa", + "example_sentence_native": "L'afa estiva rende difficile dormire.", + "example_sentence_english": "The summer oppressive heat makes it difficult to sleep.", + "pos": "noun", + "word_frequency": 21199 + }, + { + "word": "airbag", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airbag", + "romanization": "airbag", + "example_sentence_native": "L'airbag si è aperto durante l'incidente.", + "example_sentence_english": "The airbag deployed during the accident.", + "pos": "noun", + "word_frequency": 21203 + }, + { + "word": "allagamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flooding;flood", + "romanization": "allagamento", + "example_sentence_native": "L'allagamento ha causato molti danni.", + "example_sentence_english": "The flooding caused a lot of damage.", + "pos": "noun", + "word_frequency": 21211 + }, + { + "word": "ancestrale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ancestral", + "romanization": "ancestrale", + "example_sentence_native": "Hanno scoperto un rito ancestrale.", + "example_sentence_english": "They discovered an ancestral rite.", + "pos": "adjective", + "word_frequency": 21212 + }, + { + "word": "ancorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to anchor", + "romanization": "ancorare", + "example_sentence_native": "La nave si è ancorata nel porto.", + "example_sentence_english": "The ship anchored in the port.", + "pos": "verb", + "word_frequency": 21213 + }, + { + "word": "annullato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cancelled;annulled", + "romanization": "annullato", + "example_sentence_native": "Il volo è stato annullato a causa del maltempo.", + "example_sentence_english": "The flight was cancelled due to bad weather.", + "pos": "adjective", + "word_frequency": 21215 + }, + { + "word": "appassionante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exciting;thrilling;passionate", + "romanization": "appassionante", + "example_sentence_native": "È stato un libro appassionante dall'inizio alla fine.", + "example_sentence_english": "It was an exciting book from beginning to end.", + "pos": "adjective", + "word_frequency": 21216 + }, + { + "word": "asserire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to assert;to state", + "romanization": "asserire", + "example_sentence_native": "Ha asserito la sua innocenza con fermezza.", + "example_sentence_english": "He asserted his innocence firmly.", + "pos": "verb", + "word_frequency": 21218 + }, + { + "word": "assicuratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insurer;insurance agent", + "romanization": "assicuratore", + "example_sentence_native": "Ho parlato con il mio assicuratore per la polizza auto.", + "example_sentence_english": "I spoke with my insurance agent about the car policy.", + "pos": "noun", + "word_frequency": 21219 + }, + { + "word": "astrale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astral", + "romanization": "astrale", + "example_sentence_native": "Si dice che abbia viaggi astrali.", + "example_sentence_english": "He is said to have astral travels.", + "pos": "adjective", + "word_frequency": 21220 + }, + { + "word": "autrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "author (female)", + "romanization": "autrice", + "example_sentence_native": "L'autrice ha presentato il suo nuovo romanzo.", + "example_sentence_english": "The author presented her new novel.", + "pos": "noun", + "word_frequency": 21223 + }, + { + "word": "avaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greedy;miserly", + "romanization": "avaro", + "example_sentence_native": "È troppo avaro per spendere soldi.", + "example_sentence_english": "He is too greedy to spend money.", + "pos": "adjective", + "word_frequency": 21224 + }, + { + "word": "baja", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bay;cove", + "romanization": "baja", + "example_sentence_native": "La barca è ancorata nella piccola baja.", + "example_sentence_english": "The boat is anchored in the small bay.", + "pos": "noun", + "word_frequency": 21225 + }, + { + "word": "barbuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bearded", + "romanization": "barbuto", + "example_sentence_native": "L'uomo barbuto sembrava saggio.", + "example_sentence_english": "The bearded man looked wise.", + "pos": "adjective", + "word_frequency": 21228 + }, + { + "word": "brevettare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to patent", + "romanization": "brevettare", + "example_sentence_native": "Hanno deciso di brevettare la loro invenzione.", + "example_sentence_english": "They decided to patent their invention.", + "pos": "verb", + "word_frequency": 21235 + }, + { + "word": "broncio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pout;sulk", + "romanization": "broncio", + "example_sentence_native": "Ha messo il broncio perché non ha ottenuto quello che voleva.", + "example_sentence_english": "He pouted because he didn't get what he wanted.", + "pos": "noun", + "word_frequency": 21236 + }, + { + "word": "calzolaio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shoemaker", + "romanization": "calzolaio", + "example_sentence_native": "Il calzolaio ha riparato le mie scarpe.", + "example_sentence_english": "The shoemaker repaired my shoes.", + "pos": "noun", + "word_frequency": 21240 + }, + { + "word": "canonizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canonization", + "romanization": "canonizzazione", + "example_sentence_native": "La canonizzazione del santo è avvenuta in Vaticano.", + "example_sentence_english": "The canonization of the saint took place in the Vatican.", + "pos": "noun", + "word_frequency": 21242 + }, + { + "word": "cantico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canticle;hymn", + "romanization": "cantico", + "example_sentence_native": "Hanno intonato un antico cantico religioso.", + "example_sentence_english": "They sang an ancient religious canticle.", + "pos": "noun", + "word_frequency": 21243 + }, + { + "word": "capacitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make understand;to convince (reflexive: to come to terms with;to grasp)", + "romanization": "capacitare", + "example_sentence_native": "Non riesco a capacitarmi di quanto sia successo.", + "example_sentence_english": "I can't come to terms with what happened.", + "pos": "verb", + "word_frequency": 21244 + }, + { + "word": "caposaldo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cornerstone;stronghold;fundamental principle", + "romanization": "caposaldo", + "example_sentence_native": "Questo principio è un caposaldo della nostra filosofia.", + "example_sentence_english": "This principle is a cornerstone of our philosophy.", + "pos": "noun", + "word_frequency": 21245 + }, + { + "word": "cappero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "caper", + "romanization": "cappero", + "example_sentence_native": "I capperi sono ottimi con il pesce.", + "example_sentence_english": "Capers are excellent with fish.", + "pos": "noun", + "word_frequency": 21246 + }, + { + "word": "carteggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "correspondence;exchange of letters", + "romanization": "carteggio", + "example_sentence_native": "Il loro carteggio durò per anni.", + "example_sentence_english": "Their correspondence lasted for years.", + "pos": "noun", + "word_frequency": 21247 + }, + { + "word": "clarinetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clarinet", + "romanization": "clarinetto", + "example_sentence_native": "Suona il clarinetto in un'orchestra jazz.", + "example_sentence_english": "He plays the clarinet in a jazz orchestra.", + "pos": "noun", + "word_frequency": 21251 + }, + { + "word": "clou", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "highlight;main event", + "romanization": "clou", + "example_sentence_native": "Il clou della serata è stato il concerto finale.", + "example_sentence_english": "The highlight of the evening was the final concert.", + "pos": "noun", + "word_frequency": 21252 + }, + { + "word": "collusione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "collusion", + "romanization": "collusione", + "example_sentence_native": "Sono stati accusati di collusione per manipolare il mercato.", + "example_sentence_english": "They were accused of collusion to manipulate the market.", + "pos": "noun", + "word_frequency": 21253 + }, + { + "word": "commiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farewell;leave-taking", + "romanization": "commiato", + "example_sentence_native": "Ha dato il suo commiato ai colleghi prima di partire.", + "example_sentence_english": "He bid farewell to his colleagues before leaving.", + "pos": "noun", + "word_frequency": 21254 + }, + { + "word": "concime", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fertilizer;manure", + "romanization": "concime", + "example_sentence_native": "Abbiamo bisogno di concime per le piante del giardino.", + "example_sentence_english": "We need fertilizer for the garden plants.", + "pos": "noun", + "word_frequency": 21255 + }, + { + "word": "congenito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congenital", + "romanization": "congenito", + "example_sentence_native": "Ha un difetto cardiaco congenito.", + "example_sentence_english": "He has a congenital heart defect.", + "pos": "adjective", + "word_frequency": 21256 + }, + { + "word": "controbattere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to counter;to retort;to rebut", + "romanization": "controbattere", + "example_sentence_native": "È difficile controbattere alle sue argomentazioni.", + "example_sentence_english": "It's difficult to counter his arguments.", + "pos": "verb", + "word_frequency": 21257 + }, + { + "word": "controsenso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense;contradiction;wrong way", + "romanization": "controsenso", + "example_sentence_native": "Le sue parole erano un controsenso.", + "example_sentence_english": "His words were nonsense.", + "pos": "noun", + "word_frequency": 21258 + }, + { + "word": "coppo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roof tile (curved);bowl", + "romanization": "coppo", + "example_sentence_native": "Il tetto è coperto di vecchi coppi di terracotta.", + "example_sentence_english": "The roof is covered with old terracotta tiles.", + "pos": "noun", + "word_frequency": 21260 + }, + { + "word": "copy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copy (as in \"copyright copy\" or \"text copy\")", + "romanization": "copy", + "example_sentence_native": "Dobbiamo scrivere il copy per la nuova campagna pubblicitaria.", + "example_sentence_english": "We need to write the copy for the new advertising campaign.", + "pos": "noun", + "word_frequency": 21261 + }, + { + "word": "cordialità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cordiality;friendliness", + "romanization": "cordialità", + "example_sentence_native": "La sua cordialità mi ha messo subito a mio agio.", + "example_sentence_english": "His cordiality immediately put me at ease.", + "pos": "noun", + "word_frequency": 21262 + }, + { + "word": "corvino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "raven-black;jet-black", + "romanization": "corvino", + "example_sentence_native": "Aveva lunghi capelli neri corvino.", + "example_sentence_english": "She had long raven-black hair.", + "pos": "adjective", + "word_frequency": 21264 + }, + { + "word": "countdown", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "countdown", + "romanization": "countdown", + "example_sentence_native": "Il countdown per il lancio è iniziato.", + "example_sentence_english": "The countdown for the launch has begun.", + "pos": "noun", + "word_frequency": 21265 + }, + { + "word": "dedalo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labyrinth;maze;intricate network", + "romanization": "dedalo", + "example_sentence_native": "Si sono persi nel dedalo di stradine del centro storico.", + "example_sentence_english": "They got lost in the labyrinth of narrow streets in the historic center.", + "pos": "noun", + "word_frequency": 21273 + }, + { + "word": "desk", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "desk;reception desk", + "romanization": "desk", + "example_sentence_native": "Chiedi informazioni al desk della reception.", + "example_sentence_english": "Ask for information at the reception desk.", + "pos": "noun", + "word_frequency": 21279 + }, + { + "word": "destrezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dexterity;skill", + "romanization": "destrezza", + "example_sentence_native": "La sua destrezza con le mani è impressionante.", + "example_sentence_english": "His dexterity with his hands is impressive.", + "pos": "noun", + "word_frequency": 21280 + }, + { + "word": "diagnosticare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to diagnose", + "romanization": "diagnosticare", + "example_sentence_native": "Il medico ha diagnosticato una lieve influenza.", + "example_sentence_english": "The doctor diagnosed a mild flu.", + "pos": "verb", + "word_frequency": 21281 + }, + { + "word": "dirottare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hijack;to divert", + "romanization": "dirottare", + "example_sentence_native": "Hanno dovuto dirottare il volo a causa del maltempo.", + "example_sentence_english": "They had to divert the flight due to bad weather.", + "pos": "verb", + "word_frequency": 21286 + }, + { + "word": "discolpa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exculpation;excuse;defense", + "romanization": "discolpa", + "example_sentence_native": "Ha presentato una discolpa convincente.", + "example_sentence_english": "He presented a convincing exculpation.", + "pos": "noun", + "word_frequency": 21287 + }, + { + "word": "disordinato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "messy;untidy;disorganized", + "romanization": "disordinato", + "example_sentence_native": "La sua stanza è sempre molto disordinata.", + "example_sentence_english": "His room is always very messy.", + "pos": "adjective", + "word_frequency": 21288 + }, + { + "word": "distale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distal", + "romanization": "distale", + "example_sentence_native": "La parte distale dell'arto è stata colpita.", + "example_sentence_english": "The distal part of the limb was affected.", + "pos": "adjective", + "word_frequency": 21289 + }, + { + "word": "diving", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diving (sport)", + "romanization": "diving", + "example_sentence_native": "Andiamo a fare diving nel Mar Rosso.", + "example_sentence_english": "Let's go diving in the Red Sea.", + "pos": "noun", + "word_frequency": 21290 + }, + { + "word": "docenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teaching;professorship", + "romanization": "docenza", + "example_sentence_native": "Ha ottenuto la docenza universitaria dopo anni di ricerca.", + "example_sentence_english": "He obtained the university professorship after years of research.", + "pos": "noun", + "word_frequency": 21291 + }, + { + "word": "dolorante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "aching;sore", + "romanization": "dolorante", + "example_sentence_native": "Mi sento tutto dolorante dopo l'allenamento.", + "example_sentence_english": "I feel all sore after the workout.", + "pos": "adjective", + "word_frequency": 21292 + }, + { + "word": "duplicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to duplicate;to copy", + "romanization": "duplicare", + "example_sentence_native": "Non è necessario duplicare i documenti.", + "example_sentence_english": "It is not necessary to duplicate the documents.", + "pos": "verb", + "word_frequency": 21294 + }, + { + "word": "esportatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exporter", + "romanization": "esportatore", + "example_sentence_native": "L'Italia è un grande esportatore di prodotti alimentari.", + "example_sentence_english": "Italy is a big exporter of food products.", + "pos": "noun", + "word_frequency": 21296 + }, + { + "word": "estetista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beautician;aesthetician", + "romanization": "estetista", + "example_sentence_native": "Ho un appuntamento dall'estetista domani.", + "example_sentence_english": "I have an appointment with the beautician tomorrow.", + "pos": "noun", + "word_frequency": 21297 + }, + { + "word": "faccina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little face;smiley (emoji)", + "romanization": "faccina", + "example_sentence_native": "Ha disegnato una faccina sorridente sul biglietto.", + "example_sentence_english": "He drew a smiley face on the card.", + "pos": "noun", + "word_frequency": 21298 + }, + { + "word": "falsificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to falsify;to forge", + "romanization": "falsificare", + "example_sentence_native": "Hanno tentato di falsificare i documenti.", + "example_sentence_english": "They tried to falsify the documents.", + "pos": "verb", + "word_frequency": 21299 + }, + { + "word": "fantasioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "imaginative;fanciful", + "romanization": "fantasioso", + "example_sentence_native": "È una persona molto fantasiosa e creativa.", + "example_sentence_english": "He is a very imaginative and creative person.", + "pos": "adjective", + "word_frequency": 21300 + }, + { + "word": "fatidico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fateful;prophetic", + "romanization": "fatidico", + "example_sentence_native": "Quel giorno fu il fatidico inizio della loro avventura.", + "example_sentence_english": "That day was the fateful beginning of their adventure.", + "pos": "adjective", + "word_frequency": 21301 + }, + { + "word": "fionda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slingshot", + "romanization": "fionda", + "example_sentence_native": "Da bambino giocava con la fionda.", + "example_sentence_english": "As a child, he played with a slingshot.", + "pos": "noun", + "word_frequency": 21303 + }, + { + "word": "flamenco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flamenco", + "romanization": "flamenco", + "example_sentence_native": "Hanno assistito a uno spettacolo di flamenco in Spagna.", + "example_sentence_english": "They attended a flamenco show in Spain.", + "pos": "noun", + "word_frequency": 21304 + }, + { + "word": "frustata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whip;lash;whiplash", + "romanization": "frustata", + "example_sentence_native": "Ha ricevuto una frustata sulla schiena.", + "example_sentence_english": "He received a lash on his back.", + "pos": "noun", + "word_frequency": 21310 + }, + { + "word": "fucsia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fuchsia", + "romanization": "fucsia", + "example_sentence_native": "Indossava un vestito color fucsia.", + "example_sentence_english": "She was wearing a fuchsia-colored dress.", + "pos": "noun", + "word_frequency": 21311 + }, + { + "word": "gemellaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twinning (of towns;cities);partnership", + "romanization": "gemellaggio", + "example_sentence_native": "La città ha un gemellaggio con una città tedesca.", + "example_sentence_english": "The city has a twinning with a German city.", + "pos": "noun", + "word_frequency": 21314 + }, + { + "word": "gobba", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hump;hunchback", + "romanization": "gobba", + "example_sentence_native": "Il cammello ha una gobba sulla schiena.", + "example_sentence_english": "The camel has a hump on its back.", + "pos": "noun", + "word_frequency": 21317 + }, + { + "word": "impiccato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hanged", + "romanization": "impiccato", + "example_sentence_native": "L'uomo fu trovato impiccato.", + "example_sentence_english": "The man was found hanged.", + "pos": "adjective", + "word_frequency": 21330 + }, + { + "word": "impostore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impostor", + "romanization": "impostore", + "example_sentence_native": "Si è rivelato essere un impostore.", + "example_sentence_english": "He turned out to be an impostor.", + "pos": "noun", + "word_frequency": 21331 + }, + { + "word": "indaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indigo", + "romanization": "indaco", + "example_sentence_native": "Il colore indaco è tra il blu e il viola.", + "example_sentence_english": "The color indigo is between blue and violet.", + "pos": "noun", + "word_frequency": 21332 + }, + { + "word": "indugio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delay;hesitation", + "romanization": "indugio", + "example_sentence_native": "Non c'è tempo per indugi.", + "example_sentence_english": "There is no time for delays.", + "pos": "noun", + "word_frequency": 21333 + }, + { + "word": "insanguinare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to bloody;to stain with blood", + "romanization": "insanguinare", + "example_sentence_native": "La ferita ha iniziato a insanguinare la benda.", + "example_sentence_english": "The wound started to bloody the bandage.", + "pos": "verb", + "word_frequency": 21334 + }, + { + "word": "intermezzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interlude;intermezzo", + "romanization": "intermezzo", + "example_sentence_native": "Ci fu un breve intermezzo musicale.", + "example_sentence_english": "There was a short musical interlude.", + "pos": "noun", + "word_frequency": 21335 + }, + { + "word": "internato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interned;confined", + "romanization": "internato", + "example_sentence_native": "Molti prigionieri furono internati durante la guerra.", + "example_sentence_english": "Many prisoners were interned during the war.", + "pos": "adjective", + "word_frequency": 21336 + }, + { + "word": "lauda", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "lauda (medieval Italian religious song)", + "romanization": "lauda", + "example_sentence_native": "Le laude erano forme di poesia religiosa medievale.", + "example_sentence_english": "Laude were forms of medieval religious poetry.", + "pos": "noun", + "word_frequency": 21345 + }, + { + "word": "lettone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Latvian", + "romanization": "lettone", + "example_sentence_native": "La bandiera lettone è rossa e bianca.", + "example_sentence_english": "The Latvian flag is red and white.", + "pos": "adjective", + "word_frequency": 21347 + }, + { + "word": "liberatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liberator", + "romanization": "liberatore", + "example_sentence_native": "Fu acclamato come il liberatore del popolo.", + "example_sentence_english": "He was hailed as the liberator of the people.", + "pos": "noun", + "word_frequency": 21348 + }, + { + "word": "lottizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "land subdivision;parcelling", + "romanization": "lottizzazione", + "example_sentence_native": "La lottizzazione del terreno è stata approvata.", + "example_sentence_english": "The land subdivision has been approved.", + "pos": "noun", + "word_frequency": 21350 + }, + { + "word": "mailing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mailing;mailing list", + "romanization": "mailing", + "example_sentence_native": "Ho ricevuto un mailing pubblicitario.", + "example_sentence_english": "I received an advertising mailing.", + "pos": "noun", + "word_frequency": 21353 + }, + { + "word": "malizioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mischievous;malicious", + "romanization": "malizioso", + "example_sentence_native": "Aveva un sorriso malizioso.", + "example_sentence_english": "He had a mischievous smile.", + "pos": "adjective", + "word_frequency": 21355 + }, + { + "word": "malora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ruin;perdition", + "romanization": "malora", + "example_sentence_native": "L'azienda è andata in malora.", + "example_sentence_english": "The company went to ruin.", + "pos": "noun", + "word_frequency": 21356 + }, + { + "word": "maniacale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maniacal;obsessive", + "romanization": "maniacale", + "example_sentence_native": "Ha una pulizia maniacale.", + "example_sentence_english": "He has a maniacal cleanliness.", + "pos": "adjective", + "word_frequency": 21357 + }, + { + "word": "marinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to marinate;to play truant", + "romanization": "marinare", + "example_sentence_native": "Dobbiamo marinare la carne per due ore.", + "example_sentence_english": "We need to marinate the meat for two hours.", + "pos": "verb", + "word_frequency": 21359 + }, + { + "word": "mattonella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tile", + "romanization": "mattonella", + "example_sentence_native": "Abbiamo scelto una nuova mattonella per il bagno.", + "example_sentence_english": "We chose a new tile for the bathroom.", + "pos": "noun", + "word_frequency": 21361 + }, + { + "word": "meteorologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteorology", + "romanization": "meteorologia", + "example_sentence_native": "La meteorologia è la scienza che studia l'atmosfera.", + "example_sentence_english": "Meteorology is the science that studies the atmosphere.", + "pos": "noun", + "word_frequency": 21369 + }, + { + "word": "minestrone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "minestrone (vegetable soup)", + "romanization": "minestrone", + "example_sentence_native": "Mi piace mangiare il minestrone caldo in inverno.", + "example_sentence_english": "I like to eat hot minestrone in winter.", + "pos": "noun", + "word_frequency": 21370 + }, + { + "word": "modellazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modeling", + "romanization": "modellazione", + "example_sentence_native": "La modellazione 3D è usata in molti settori.", + "example_sentence_english": "3D modeling is used in many sectors.", + "pos": "noun", + "word_frequency": 21373 + }, + { + "word": "moltiplicarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to multiply (oneself);to proliferate", + "romanization": "moltiplicarsi", + "example_sentence_native": "Le cellule hanno iniziato a moltiplicarsi rapidamente.", + "example_sentence_english": "The cells began to multiply rapidly.", + "pos": "verb", + "word_frequency": 21374 + }, + { + "word": "moscato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muscat (grape;wine);musky", + "romanization": "moscato", + "example_sentence_native": "Abbiamo bevuto un bicchiere di vino moscato.", + "example_sentence_english": "We drank a glass of muscat wine.", + "pos": "adjective", + "word_frequency": 21376 + }, + { + "word": "moschettiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "musketeer", + "romanization": "moschettiere", + "example_sentence_native": "I tre moschettieri sono personaggi famosi della letteratura.", + "example_sentence_english": "The three musketeers are famous literary characters.", + "pos": "noun", + "word_frequency": 21377 + }, + { + "word": "necrologio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obituary", + "romanization": "necrologio", + "example_sentence_native": "Ho letto il necrologio sul giornale questa mattina.", + "example_sentence_english": "I read the obituary in the newspaper this morning.", + "pos": "noun", + "word_frequency": 21380 + }, + { + "word": "nemesi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nemesis", + "romanization": "nemesi", + "example_sentence_native": "Il suo rivale era la sua nemesi.", + "example_sentence_english": "His rival was his nemesis.", + "pos": "noun", + "word_frequency": 21381 + }, + { + "word": "neolitico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Neolithic", + "romanization": "neolitico", + "example_sentence_native": "L'età neolitica ha visto grandi cambiamenti.", + "example_sentence_english": "The Neolithic age saw great changes.", + "pos": "adjective", + "word_frequency": 21382 + }, + { + "word": "neurologico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neurological", + "romanization": "neurologico", + "example_sentence_native": "Ha avuto un problema neurologico.", + "example_sentence_english": "He had a neurological problem.", + "pos": "adjective", + "word_frequency": 21384 + }, + { + "word": "obbligatorietà", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obligatoriness;mandatory nature", + "romanization": "obbligatorietà", + "example_sentence_native": "Si discuteva sull'obbligatorietà del vaccino.", + "example_sentence_english": "The mandatory nature of the vaccine was being discussed.", + "pos": "noun", + "word_frequency": 21388 + }, + { + "word": "occorrente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "necessary items;supplies;what is needed", + "romanization": "occorrente", + "example_sentence_native": "Abbiamo comprato tutto l'occorrente per il campeggio.", + "example_sentence_english": "We bought all the necessary items for camping.", + "pos": "noun", + "word_frequency": 21389 + }, + { + "word": "occultamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concealment;hiding", + "romanization": "occultamento", + "example_sentence_native": "L'occultamento di prove è un reato.", + "example_sentence_english": "The concealment of evidence is a crime.", + "pos": "noun", + "word_frequency": 21390 + }, + { + "word": "oppressore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oppressor", + "romanization": "oppressore", + "example_sentence_native": "Il popolo si ribellò contro l'oppressore.", + "example_sentence_english": "The people rebelled against the oppressor.", + "pos": "noun", + "word_frequency": 21391 + }, + { + "word": "ortolano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greengrocer;market gardener", + "romanization": "ortolano", + "example_sentence_native": "L'ortolano vende verdura fresca ogni giorno.", + "example_sentence_english": "The greengrocer sells fresh vegetables every day.", + "pos": "noun", + "word_frequency": 21392 + }, + { + "word": "paesaggistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "landscape (adj.);scenic", + "romanization": "paesaggistico", + "example_sentence_native": "La zona ha un grande valore paesaggistico.", + "example_sentence_english": "The area has great scenic value.", + "pos": "adjective", + "word_frequency": 21393 + }, + { + "word": "papera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "duck (female);blunder", + "romanization": "papera", + "example_sentence_native": "La papera nuotava nello stagno. Ho fatto una papera durante l'esame.", + "example_sentence_english": "The duck was swimming in the pond. I made a blunder during the exam.", + "pos": "noun", + "word_frequency": 21394 + }, + { + "word": "participio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participle", + "romanization": "participio", + "example_sentence_native": "Il participio passato è usato nei tempi composti.", + "example_sentence_english": "The past participle is used in compound tenses.", + "pos": "noun", + "word_frequency": 21397 + }, + { + "word": "pedemontano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piedmont;foothills (adj.)", + "romanization": "pedemontano", + "example_sentence_native": "Vivono nella zona pedemontana delle Alpi.", + "example_sentence_english": "They live in the piedmont area of the Alps.", + "pos": "adjective", + "word_frequency": 21398 + }, + { + "word": "permuta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exchange;swap", + "romanization": "permuta", + "example_sentence_native": "Abbiamo fatto una permuta di appartamenti.", + "example_sentence_english": "We did an apartment exchange.", + "pos": "noun", + "word_frequency": 21400 + }, + { + "word": "pesta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stomp;treading", + "romanization": "pesta", + "example_sentence_native": "La pesta dei piedi sul pavimento era rumorosa.", + "example_sentence_english": "The stomping of feet on the floor was noisy.", + "pos": "noun", + "word_frequency": 21401 + }, + { + "word": "pilotaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piloting;guidance", + "romanization": "pilotaggio", + "example_sentence_native": "Il pilotaggio automatico ha reso il volo più sicuro.", + "example_sentence_english": "Automatic piloting made the flight safer.", + "pos": "noun", + "word_frequency": 21402 + }, + { + "word": "piroscafo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steamship", + "romanization": "piroscafo", + "example_sentence_native": "Il vecchio piroscafo salpò dal porto.", + "example_sentence_english": "The old steamship sailed from the port.", + "pos": "noun", + "word_frequency": 21403 + }, + { + "word": "pois", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polka dot", + "romanization": "pois", + "example_sentence_native": "Ha comprato un vestito a pois.", + "example_sentence_english": "She bought a polka dot dress.", + "pos": "noun", + "word_frequency": 21405 + }, + { + "word": "porcheria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rubbish;junk;filth", + "romanization": "porcheria", + "example_sentence_native": "Non mangiare quella porcheria, ti farà male.", + "example_sentence_english": "Don't eat that junk, it will hurt you.", + "pos": "noun", + "word_frequency": 21407 + }, + { + "word": "predicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predicate", + "romanization": "predicato", + "example_sentence_native": "In grammatica, il predicato è ciò che si dice del soggetto.", + "example_sentence_english": "In grammar, the predicate is what is said about the subject.", + "pos": "noun", + "word_frequency": 21408 + }, + { + "word": "propagare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to propagate;to spread", + "romanization": "propagare", + "example_sentence_native": "Le piante si propagano attraverso i semi.", + "example_sentence_english": "Plants propagate through seeds.", + "pos": "verb", + "word_frequency": 21411 + }, + { + "word": "provenzale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Provençal", + "romanization": "provenzale", + "example_sentence_native": "La cucina provenzale è ricca di sapori mediterranei.", + "example_sentence_english": "Provençal cuisine is rich in Mediterranean flavors.", + "pos": "adjective", + "word_frequency": 21412 + }, + { + "word": "provocatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "provocateur;instigator", + "romanization": "provocatore", + "example_sentence_native": "Era un provocatore nato, sempre pronto a discutere.", + "example_sentence_english": "He was a born provocateur, always ready to argue.", + "pos": "noun", + "word_frequency": 21413 + }, + { + "word": "putiferio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uproar;commotion", + "romanization": "putiferio", + "example_sentence_native": "Quando ha annunciato la notizia, si è scatenato un putiferio.", + "example_sentence_english": "When he announced the news, an uproar broke out.", + "pos": "noun", + "word_frequency": 21415 + }, + { + "word": "ramificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "branching;ramification", + "romanization": "ramificazione", + "example_sentence_native": "L'albero aveva molte ramificazioni.", + "example_sentence_english": "The tree had many ramifications.", + "pos": "noun", + "word_frequency": 21418 + }, + { + "word": "razionalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rationalize;to streamline", + "romanization": "razionalizzare", + "example_sentence_native": "Dobbiamo razionalizzare le spese per risparmiare.", + "example_sentence_english": "We need to rationalize expenses to save money.", + "pos": "verb", + "word_frequency": 21420 + }, + { + "word": "receptionist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "receptionist", + "romanization": "receptionist", + "example_sentence_native": "La receptionist ci ha accolto con un sorriso.", + "example_sentence_english": "The receptionist greeted us with a smile.", + "pos": "noun", + "word_frequency": 21421 + }, + { + "word": "repulsione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repulsion;aversion", + "romanization": "repulsione", + "example_sentence_native": "Provava una forte repulsione per gli insetti.", + "example_sentence_english": "She felt a strong repulsion for insects.", + "pos": "noun", + "word_frequency": 21424 + }, + { + "word": "riacquistare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reacquire;to buy back", + "romanization": "riacquistare", + "example_sentence_native": "Spero di riacquistare la mia fiducia dopo questo errore.", + "example_sentence_english": "I hope to reacquire my confidence after this mistake.", + "pos": "verb", + "word_frequency": 21426 + }, + { + "word": "ricapitolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recap;to summarize", + "romanization": "ricapitolare", + "example_sentence_native": "Ricapitoliamo i punti principali della riunione.", + "example_sentence_english": "Let's recap the main points of the meeting.", + "pos": "verb", + "word_frequency": 21427 + }, + { + "word": "ricostituzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reconstitution;restoration", + "romanization": "ricostituzione", + "example_sentence_native": "La ricostituzione del governo è stata un processo lungo.", + "example_sentence_english": "The reconstitution of the government was a long process.", + "pos": "noun", + "word_frequency": 21428 + }, + { + "word": "rilento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slowness (often 'slowly' in idiom)", + "romanization": "rilento", + "example_sentence_native": "Il lavoro procede a rilento.", + "example_sentence_english": "The work is progressing slowly.", + "pos": "noun", + "word_frequency": 21429 + }, + { + "word": "roca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortress;rock", + "romanization": "roca", + "example_sentence_native": "La roca si ergeva imponente sulla collina.", + "example_sentence_english": "The fortress stood imposingly on the hill.", + "pos": "noun", + "word_frequency": 21430 + }, + { + "word": "sacrificarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sacrifice oneself", + "romanization": "sacrificarsi", + "example_sentence_native": "Ha deciso di sacrificarsi per il bene della sua famiglia.", + "example_sentence_english": "He decided to sacrifice himself for the good of his family.", + "pos": "verb", + "word_frequency": 21432 + }, + { + "word": "sassone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Saxon", + "romanization": "sassone", + "example_sentence_native": "I Sassoni erano un popolo germanico.", + "example_sentence_english": "The Saxons were a Germanic people.", + "pos": "noun", + "word_frequency": 21433 + }, + { + "word": "sbronzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunk (slang)", + "romanization": "sbronzo", + "example_sentence_native": "Era completamente sbronzo dopo la festa.", + "example_sentence_english": "He was completely drunk after the party.", + "pos": "adjective", + "word_frequency": 21434 + }, + { + "word": "scacchiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chessboard;strategic board", + "romanization": "scacchiere", + "example_sentence_native": "Il generale analizzava il scacchiere politico.", + "example_sentence_english": "The general analyzed the political chessboard.", + "pos": "noun", + "word_frequency": 21435 + }, + { + "word": "scatoletta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small can;tin", + "romanization": "scatoletta", + "example_sentence_native": "Ho aperto una scatoletta di tonno.", + "example_sentence_english": "I opened a small can of tuna.", + "pos": "noun", + "word_frequency": 21436 + }, + { + "word": "schienale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "backrest (of a chair;seat)", + "romanization": "schienale", + "example_sentence_native": "Lo schienale della sedia era rotto.", + "example_sentence_english": "The backrest of the chair was broken.", + "pos": "noun", + "word_frequency": 21437 + }, + { + "word": "scirocco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sirocco (hot;humid wind)", + "romanization": "scirocco", + "example_sentence_native": "Il scirocco portava un caldo umido.", + "example_sentence_english": "The sirocco brought humid heat.", + "pos": "noun", + "word_frequency": 21438 + }, + { + "word": "settentrione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "north", + "romanization": "settentrione", + "example_sentence_native": "Il vento soffiava dal settentrione.", + "example_sentence_english": "The wind was blowing from the north.", + "pos": "noun", + "word_frequency": 21440 + }, + { + "word": "shorts", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shorts", + "romanization": "shorts", + "example_sentence_native": "Indosso i miei shorts preferiti in estate.", + "example_sentence_english": "I wear my favorite shorts in summer.", + "pos": "noun", + "word_frequency": 21442 + }, + { + "word": "soffiata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tip-off;blow (of air)", + "romanization": "soffiata", + "example_sentence_native": "La polizia ha agito in base a una soffiata.", + "example_sentence_english": "The police acted on a tip-off.", + "pos": "noun", + "word_frequency": 21446 + }, + { + "word": "soglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "throne;threshold", + "romanization": "soglio", + "example_sentence_native": "Il re salì al soglio.", + "example_sentence_english": "The king ascended to the throne.", + "pos": "noun", + "word_frequency": 21447 + }, + { + "word": "sopportabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bearable;tolerable", + "romanization": "sopportabile", + "example_sentence_native": "Il dolore era appena sopportabile.", + "example_sentence_english": "The pain was barely bearable.", + "pos": "adjective", + "word_frequency": 21448 + }, + { + "word": "sostanzioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substantial;hearty", + "romanization": "sostanzioso", + "example_sentence_native": "Abbiamo fatto una colazione sostanziosa.", + "example_sentence_english": "We had a hearty breakfast.", + "pos": "adjective", + "word_frequency": 21449 + }, + { + "word": "spago", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "string;twine", + "romanization": "spago", + "example_sentence_native": "Ho legato il pacco con uno spago.", + "example_sentence_english": "I tied the package with a string.", + "pos": "noun", + "word_frequency": 21451 + }, + { + "word": "spermatozoo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spermatozoon;sperm cell", + "romanization": "spermatozoo", + "example_sentence_native": "Lo spermatozoo è la cellula riproduttiva maschile.", + "example_sentence_english": "The spermatozoon is the male reproductive cell.", + "pos": "noun", + "word_frequency": 21452 + }, + { + "word": "straight", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "straight (as in poker hand;or sexual orientation)", + "romanization": "straight", + "example_sentence_native": "Ha giocato uno straight al poker.", + "example_sentence_english": "He played a straight in poker.", + "pos": "noun", + "word_frequency": 21454 + }, + { + "word": "sussidiario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subsidiary;supplementary", + "romanization": "sussidiario", + "example_sentence_native": "Hanno fornito un aiuto sussidiario alle famiglie bisognose.", + "example_sentence_english": "They provided subsidiary aid to needy families.", + "pos": "adjective", + "word_frequency": 21455 + }, + { + "word": "svastica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swastika", + "romanization": "svastica", + "example_sentence_native": "La svastica è un simbolo controverso.", + "example_sentence_english": "The swastika is a controversial symbol.", + "pos": "noun", + "word_frequency": 21456 + }, + { + "word": "tequila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tequila", + "romanization": "tequila", + "example_sentence_native": "Vorrei un bicchiere di tequila con lime.", + "example_sentence_english": "I would like a glass of tequila with lime.", + "pos": "noun", + "word_frequency": 21458 + }, + { + "word": "testardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stubborn;headstrong", + "romanization": "testardo", + "example_sentence_native": "È molto testardo e non cambia mai idea.", + "example_sentence_english": "He is very stubborn and never changes his mind.", + "pos": "adjective", + "word_frequency": 21460 + }, + { + "word": "traboccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overflow;to spill over", + "romanization": "traboccare", + "example_sentence_native": "Il bicchiere ha iniziato a traboccare.", + "example_sentence_english": "The glass started to overflow.", + "pos": "verb", + "word_frequency": 21465 + }, + { + "word": "transnazionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transnational", + "romanization": "transnazionale", + "example_sentence_native": "Le aziende transnazionali operano in molti paesi.", + "example_sentence_english": "Transnational companies operate in many countries.", + "pos": "adjective", + "word_frequency": 21466 + }, + { + "word": "traslazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "translation (in physics;geometry);transfer (of relics);transposition", + "romanization": "traslazione", + "example_sentence_native": "La traslazione di un corpo nello spazio.", + "example_sentence_english": "The translation of a body in space.", + "pos": "noun", + "word_frequency": 21467 + }, + { + "word": "travagliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to torment;to trouble;to afflict", + "romanization": "travagliare", + "example_sentence_native": "I dubbi lo travagliavano.", + "example_sentence_english": "Doubts tormented him.", + "pos": "verb", + "word_frequency": 21468 + }, + { + "word": "tribuno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribune", + "romanization": "tribuno", + "example_sentence_native": "Il tribuno della plebe difendeva i diritti del popolo.", + "example_sentence_english": "The tribune of the plebs defended the rights of the people.", + "pos": "noun", + "word_frequency": 21470 + }, + { + "word": "truffare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to defraud;to swindle;to cheat", + "romanization": "truffare", + "example_sentence_native": "Ha cercato di truffare l'assicurazione.", + "example_sentence_english": "He tried to defraud the insurance.", + "pos": "verb", + "word_frequency": 21471 + }, + { + "word": "turbamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disturbance;upset;turmoil", + "romanization": "turbamento", + "example_sentence_native": "La notizia ha causato un grande turbamento.", + "example_sentence_english": "The news caused a great disturbance.", + "pos": "noun", + "word_frequency": 21472 + }, + { + "word": "urgere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be urgent;to be pressing", + "romanization": "urgere", + "example_sentence_native": "Urge prendere una decisione.", + "example_sentence_english": "It is urgent to make a decision.", + "pos": "verb", + "word_frequency": 21475 + }, + { + "word": "ventinove", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-nine", + "romanization": "ventinove", + "example_sentence_native": "Ho ventinove anni.", + "example_sentence_english": "I am twenty-nine years old.", + "pos": "noun", + "word_frequency": 21478 + }, + { + "word": "ventitré", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "twenty-three", + "romanization": "ventitré", + "example_sentence_native": "Il numero fortunato è ventitré.", + "example_sentence_english": "The lucky number is twenty-three.", + "pos": "noun", + "word_frequency": 21479 + }, + { + "word": "vessazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassment;vexation", + "romanization": "vessazione", + "example_sentence_native": "Ha subito molte vessazioni sul posto di lavoro.", + "example_sentence_english": "He suffered a lot of harassment at work.", + "pos": "noun", + "word_frequency": 21482 + }, + { + "word": "vicesindaco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "deputy mayor", + "romanization": "vicesindaco", + "example_sentence_native": "Il vicesindaco ha presieduto la riunione in assenza del sindaco.", + "example_sentence_english": "The deputy mayor chaired the meeting in the mayor's absence.", + "pos": "noun", + "word_frequency": 21483 + }, + { + "word": "videosorveglianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "video surveillance", + "romanization": "videosorveglianza", + "example_sentence_native": "L'area è sotto videosorveglianza 24 ore su 24.", + "example_sentence_english": "The area is under video surveillance 24 hours a day.", + "pos": "noun", + "word_frequency": 21485 + }, + { + "word": "volleyball", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "volleyball", + "romanization": "volleyball", + "example_sentence_native": "Gioco a volleyball ogni settimana.", + "example_sentence_english": "I play volleyball every week.", + "pos": "noun", + "word_frequency": 21489 + }, + { + "word": "zaffiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sapphire", + "romanization": "zaffiro", + "example_sentence_native": "L'anello aveva un bellissimo zaffiro blu.", + "example_sentence_english": "The ring had a beautiful blue sapphire.", + "pos": "noun", + "word_frequency": 21491 + }, + { + "word": "acqueo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aqueous;watery", + "romanization": "acqueo", + "example_sentence_native": "La soluzione era di natura acquea.", + "example_sentence_english": "The solution was of an aqueous nature.", + "pos": "adjective", + "word_frequency": 21495 + }, + { + "word": "adorno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adorned;decorated", + "romanization": "adorno", + "example_sentence_native": "La sala era adorna di fiori freschi.", + "example_sentence_english": "The hall was adorned with fresh flowers.", + "pos": "adjective", + "word_frequency": 21496 + }, + { + "word": "affrettato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hurried;hasty", + "romanization": "affrettato", + "example_sentence_native": "Ha preso una decisione affrettata.", + "example_sentence_english": "He made a hasty decision.", + "pos": "adjective", + "word_frequency": 21497 + }, + { + "word": "aggiudicarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to win;to be awarded", + "romanization": "aggiudicarsi", + "example_sentence_native": "La squadra è riuscita ad aggiudicarsi il campionato.", + "example_sentence_english": "The team managed to win the championship.", + "pos": "verb", + "word_frequency": 21498 + }, + { + "word": "aggiustato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fixed;adjusted", + "romanization": "aggiustato", + "example_sentence_native": "Il meccanico ha aggiustato la macchina.", + "example_sentence_english": "The mechanic fixed the car.", + "pos": "adjective", + "word_frequency": 21499 + }, + { + "word": "ancorata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "anchored", + "romanization": "ancorata", + "example_sentence_native": "La nave era saldamente ancorata al porto.", + "example_sentence_english": "The ship was firmly anchored in the port.", + "pos": "adjective", + "word_frequency": 21509 + }, + { + "word": "anticristo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antichrist", + "romanization": "anticristo", + "example_sentence_native": "Alcuni testi antichi parlano dell'anticristo.", + "example_sentence_english": "Some ancient texts speak of the antichrist.", + "pos": "noun", + "word_frequency": 21511 + }, + { + "word": "antipodo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antipode", + "romanization": "antipodo", + "example_sentence_native": "L'Australia è l'antipodo dell'Europa.", + "example_sentence_english": "Australia is the antipode of Europe.", + "pos": "noun", + "word_frequency": 21512 + }, + { + "word": "apartheid", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "apartheid", + "romanization": "apartheid", + "example_sentence_native": "L'apartheid è stato un sistema di segregazione razziale.", + "example_sentence_english": "Apartheid was a system of racial segregation.", + "pos": "noun", + "word_frequency": 21513 + }, + { + "word": "approfonditamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoroughly;in depth", + "romanization": "approfonditamente", + "example_sentence_native": "Ha studiato l'argomento approfonditamente.", + "example_sentence_english": "He studied the topic thoroughly.", + "pos": "adverb", + "word_frequency": 21514 + }, + { + "word": "arboreo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "arboreal;tree-like", + "romanization": "arboreo", + "example_sentence_native": "Le scimmie sono animali arborei.", + "example_sentence_english": "Monkeys are arboreal animals.", + "pos": "adjective", + "word_frequency": 21515 + }, + { + "word": "aspettarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to expect", + "romanization": "aspettarsi", + "example_sentence_native": "Non mi aspettavo di vederlo qui.", + "example_sentence_english": "I didn't expect to see him here.", + "pos": "verb", + "word_frequency": 21519 + }, + { + "word": "assimilato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assimilated", + "romanization": "assimilato", + "example_sentence_native": "Il nuovo studente si è rapidamente sentito assimilato nel gruppo.", + "example_sentence_english": "The new student quickly felt assimilated into the group.", + "pos": "adjective", + "word_frequency": 21520 + }, + { + "word": "astuccio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pencil case;case", + "romanization": "astuccio", + "example_sentence_native": "Ho dimenticato il mio astuccio a casa.", + "example_sentence_english": "I forgot my pencil case at home.", + "pos": "noun", + "word_frequency": 21521 + }, + { + "word": "audiovisivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audiovisual", + "romanization": "audiovisivo", + "example_sentence_native": "La presentazione includeva molti elementi audiovisivi.", + "example_sentence_english": "The presentation included many audiovisual elements.", + "pos": "adjective", + "word_frequency": 21522 + }, + { + "word": "avverare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to come true;to fulfill", + "romanization": "avverare", + "example_sentence_native": "Spero che i tuoi sogni si avverino.", + "example_sentence_english": "I hope your dreams come true.", + "pos": "verb", + "word_frequency": 21523 + }, + { + "word": "bellino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cute;pretty (informal)", + "romanization": "bellino", + "example_sentence_native": "Che vestito bellino che hai!", + "example_sentence_english": "What a cute dress you have!", + "pos": "adjective", + "word_frequency": 21527 + }, + { + "word": "biberon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "baby bottle", + "romanization": "biberon", + "example_sentence_native": "Il bambino beveva il latte dal biberon.", + "example_sentence_english": "The baby drank milk from the baby bottle.", + "pos": "noun", + "word_frequency": 21530 + }, + { + "word": "brevità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brevity", + "romanization": "brevità", + "example_sentence_native": "Per brevità, non entrerò nei dettagli.", + "example_sentence_english": "For brevity, I will not go into details.", + "pos": "noun", + "word_frequency": 21533 + }, + { + "word": "brigantaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "brigandage;banditry", + "romanization": "brigantaggio", + "example_sentence_native": "Il brigantaggio era un fenomeno diffuso nel sud Italia dopo l'Unità.", + "example_sentence_english": "Brigandage was a widespread phenomenon in southern Italy after the Unification.", + "pos": "noun", + "word_frequency": 21534 + }, + { + "word": "brocca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jug;pitcher", + "romanization": "brocca", + "example_sentence_native": "Riempì la brocca d'acqua fresca.", + "example_sentence_english": "She filled the jug with fresh water.", + "pos": "noun", + "word_frequency": 21535 + }, + { + "word": "californiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Californian", + "romanization": "californiano", + "example_sentence_native": "Ha un accento californiano molto marcato.", + "example_sentence_english": "He has a very strong Californian accent.", + "pos": "adjective", + "word_frequency": 21536 + }, + { + "word": "calzone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "calzone (folded pizza)", + "romanization": "calzone", + "example_sentence_native": "Ho ordinato un calzone ripieno di prosciutto e mozzarella.", + "example_sentence_english": "I ordered a calzone filled with ham and mozzarella.", + "pos": "noun", + "word_frequency": 21537 + }, + { + "word": "celato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hidden;concealed", + "romanization": "celato", + "example_sentence_native": "C'era un messaggio celato tra le righe.", + "example_sentence_english": "There was a hidden message between the lines.", + "pos": "adjective", + "word_frequency": 21540 + }, + { + "word": "cisalpino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Cisalpine", + "romanization": "cisalpino", + "example_sentence_native": "La Gallia Cisalpina era una provincia romana.", + "example_sentence_english": "Cisalpine Gaul was a Roman province.", + "pos": "adjective", + "word_frequency": 21546 + }, + { + "word": "civilizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "civilized", + "romanization": "civilizzato", + "example_sentence_native": "Vivere in una società civilizzata richiede rispetto reciproco.", + "example_sentence_english": "Living in a civilized society requires mutual respect.", + "pos": "adjective", + "word_frequency": 21548 + }, + { + "word": "clitoride", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clitoris", + "romanization": "clitoride", + "example_sentence_native": "Il clitoride è un organo sessuale femminile.", + "example_sentence_english": "The clitoris is a female sexual organ.", + "pos": "noun", + "word_frequency": 21551 + }, + { + "word": "clonazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cloning", + "romanization": "clonazione", + "example_sentence_native": "La clonazione è un argomento controverso nella scienza.", + "example_sentence_english": "Cloning is a controversial topic in science.", + "pos": "noun", + "word_frequency": 21552 + }, + { + "word": "concorsuale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "competitive examination-related;bankruptcy-related", + "romanization": "concorsuale", + "example_sentence_native": "Ha superato la prova concorsuale per entrare nella pubblica amministrazione.", + "example_sentence_english": "He passed the competitive examination test to enter public administration.", + "pos": "adjective", + "word_frequency": 21554 + }, + { + "word": "contorto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "twisted;convoluted;contorted", + "romanization": "contorto", + "example_sentence_native": "La spiegazione era così contorta che nessuno la capì.", + "example_sentence_english": "The explanation was so convoluted that no one understood it.", + "pos": "adjective", + "word_frequency": 21557 + }, + { + "word": "cranico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cranial", + "romanization": "cranico", + "example_sentence_native": "Ha subito un trauma cranico.", + "example_sentence_english": "He suffered a cranial trauma.", + "pos": "adjective", + "word_frequency": 21560 + }, + { + "word": "culminare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to culminate", + "romanization": "culminare", + "example_sentence_native": "La discussione è culminata in un accordo.", + "example_sentence_english": "The discussion culminated in an agreement.", + "pos": "verb", + "word_frequency": 21562 + }, + { + "word": "cupcake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cupcake", + "romanization": "cupcake", + "example_sentence_native": "Ho comprato un cupcake al cioccolato.", + "example_sentence_english": "I bought a chocolate cupcake.", + "pos": "noun", + "word_frequency": 21563 + }, + { + "word": "decremento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decrease;decrement", + "romanization": "decremento", + "example_sentence_native": "Si è registrato un decremento delle vendite.", + "example_sentence_english": "A decrease in sales was recorded.", + "pos": "noun", + "word_frequency": 21565 + }, + { + "word": "defibrillatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "defibrillator", + "romanization": "defibrillatore", + "example_sentence_native": "Hanno usato il defibrillatore per rianimarlo.", + "example_sentence_english": "They used the defibrillator to revive him.", + "pos": "noun", + "word_frequency": 21566 + }, + { + "word": "diffidare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to distrust;to warn", + "romanization": "diffidare", + "example_sentence_native": "Diffido delle persone che promettono troppo.", + "example_sentence_english": "I distrust people who promise too much.", + "pos": "verb", + "word_frequency": 21578 + }, + { + "word": "dignitario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dignitary", + "romanization": "dignitario", + "example_sentence_native": "Un dignitario straniero ha visitato la città.", + "example_sentence_english": "A foreign dignitary visited the city.", + "pos": "noun", + "word_frequency": 21579 + }, + { + "word": "diserzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desertion", + "romanization": "diserzione", + "example_sentence_native": "La diserzione è un reato militare grave.", + "example_sentence_english": "Desertion is a serious military offense.", + "pos": "noun", + "word_frequency": 21582 + }, + { + "word": "dissenteria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dysentery", + "romanization": "dissenteria", + "example_sentence_native": "Ha contratto la dissenteria durante il viaggio.", + "example_sentence_english": "He contracted dysentery during the trip.", + "pos": "noun", + "word_frequency": 21583 + }, + { + "word": "distruttore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "destroyer (person or thing)", + "romanization": "distruttore", + "example_sentence_native": "Il distruttore di documenti è rotto.", + "example_sentence_english": "The document destroyer is broken.", + "pos": "noun", + "word_frequency": 21584 + }, + { + "word": "drogato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "addicted (to drugs);drugged", + "romanization": "drogato", + "example_sentence_native": "Era un uomo drogato che viveva per strada.", + "example_sentence_english": "He was a drugged man living on the street.", + "pos": "adjective", + "word_frequency": 21587 + }, + { + "word": "ecclesiale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ecclesial;ecclesiastical", + "romanization": "ecclesiale", + "example_sentence_native": "Ha partecipato a un convegno ecclesiale.", + "example_sentence_english": "He participated in an ecclesial conference.", + "pos": "adjective", + "word_frequency": 21588 + }, + { + "word": "educatamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "politely", + "romanization": "educatamente", + "example_sentence_native": "Ha risposto educatamente alla domanda.", + "example_sentence_english": "He answered the question politely.", + "pos": "adverb", + "word_frequency": 21589 + }, + { + "word": "effigie", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "effigy;image", + "romanization": "effigie", + "example_sentence_native": "La moneta reca l'effigie del re.", + "example_sentence_english": "The coin bears the effigy of the king.", + "pos": "noun", + "word_frequency": 21590 + }, + { + "word": "elusione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evasion (e.g.;tax evasion);circumvention", + "romanization": "elusione", + "example_sentence_native": "L'elusione fiscale è un problema serio.", + "example_sentence_english": "Tax evasion is a serious problem.", + "pos": "noun", + "word_frequency": 21591 + }, + { + "word": "esile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slender;fragile;tenuous", + "romanization": "esile", + "example_sentence_native": "Aveva una figura esile ed elegante.", + "example_sentence_english": "She had a slender and elegant figure.", + "pos": "adjective", + "word_frequency": 21597 + }, + { + "word": "esorcista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exorcist", + "romanization": "esorcista", + "example_sentence_native": "Il film parla di un famoso esorcista.", + "example_sentence_english": "The film is about a famous exorcist.", + "pos": "noun", + "word_frequency": 21598 + }, + { + "word": "evaporare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to evaporate", + "romanization": "evaporare", + "example_sentence_native": "L'acqua inizia a evaporare quando bolle.", + "example_sentence_english": "Water begins to evaporate when it boils.", + "pos": "verb", + "word_frequency": 21600 + }, + { + "word": "fariseo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Pharisee", + "romanization": "fariseo", + "example_sentence_native": "Il suo atteggiamento ipocrita lo faceva sembrare un fariseo.", + "example_sentence_english": "His hypocritical attitude made him seem like a Pharisee.", + "pos": "noun", + "word_frequency": 21602 + }, + { + "word": "farmacologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pharmacology", + "romanization": "farmacologia", + "example_sentence_native": "La farmacologia è lo studio di come i farmaci interagiscono con i sistemi biologici.", + "example_sentence_english": "Pharmacology is the study of how drugs interact with biological systems.", + "pos": "noun", + "word_frequency": 21603 + }, + { + "word": "farro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spelt", + "romanization": "farro", + "example_sentence_native": "Mi piace aggiungere il farro alle mie insalate.", + "example_sentence_english": "I like to add spelt to my salads.", + "pos": "noun", + "word_frequency": 21604 + }, + { + "word": "fazioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biased", + "romanization": "fazioso", + "example_sentence_native": "Il giornalista è stato accusato di essere fazioso nella sua relazione.", + "example_sentence_english": "The journalist was accused of being biased in his report.", + "pos": "adjective", + "word_frequency": 21605 + }, + { + "word": "fischietto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "whistle", + "romanization": "fischietto", + "example_sentence_native": "L'arbitro ha soffiato il fischietto per iniziare la partita.", + "example_sentence_english": "The referee blew the whistle to start the game.", + "pos": "noun", + "word_frequency": 21608 + }, + { + "word": "fisicità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "physicality", + "romanization": "fisicità", + "example_sentence_native": "La sua fisicità lo rende un ottimo giocatore di basket.", + "example_sentence_english": "His physicality makes him an excellent basketball player.", + "pos": "noun", + "word_frequency": 21609 + }, + { + "word": "fognatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sewage system", + "romanization": "fognatura", + "example_sentence_native": "I lavori per la nuova fognatura sono quasi terminati.", + "example_sentence_english": "The works for the new sewage system are almost finished.", + "pos": "noun", + "word_frequency": 21610 + }, + { + "word": "forfait", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forfeit", + "romanization": "forfait", + "example_sentence_native": "L'atleta ha dato forfait a causa di un infortunio.", + "example_sentence_english": "The athlete forfeited due to an injury.", + "pos": "noun", + "word_frequency": 21612 + }, + { + "word": "furbizia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cunning", + "romanization": "furbizia", + "example_sentence_native": "Ha usato la sua furbizia per risolvere il problema.", + "example_sentence_english": "He used his cunning to solve the problem.", + "pos": "noun", + "word_frequency": 21615 + }, + { + "word": "galleggiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to float", + "romanization": "galleggiare", + "example_sentence_native": "Il legno galleggia sull'acqua.", + "example_sentence_english": "Wood floats on water.", + "pos": "verb", + "word_frequency": 21616 + }, + { + "word": "gelosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jealously", + "romanization": "gelosamente", + "example_sentence_native": "Custodisce gelosamente i suoi ricordi.", + "example_sentence_english": "He jealously guards his memories.", + "pos": "adverb", + "word_frequency": 21618 + }, + { + "word": "giullare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jester", + "romanization": "giullare", + "example_sentence_native": "Il giullare intratteneva la corte con le sue battute.", + "example_sentence_english": "The jester entertained the court with his jokes.", + "pos": "noun", + "word_frequency": 21622 + }, + { + "word": "giustiziere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "avenger", + "romanization": "giustiziere", + "example_sentence_native": "Il giustiziere mascherato combatteva il crimine in città.", + "example_sentence_english": "The masked avenger fought crime in the city.", + "pos": "noun", + "word_frequency": 21623 + }, + { + "word": "grinfia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "claw", + "romanization": "grinfia", + "example_sentence_native": "L'aquila afferrò la preda con le sue grinfie.", + "example_sentence_english": "The eagle grabbed its prey with its talons.", + "pos": "noun", + "word_frequency": 21626 + }, + { + "word": "identikit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "identikit (composite sketch)", + "romanization": "identikit", + "example_sentence_native": "La polizia ha diffuso l'identikit del sospettato.", + "example_sentence_english": "The police released the identikit of the suspect.", + "pos": "noun", + "word_frequency": 21628 + }, + { + "word": "immatricolazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "registration", + "romanization": "immatricolazione", + "example_sentence_native": "La scadenza per l'immatricolazione all'università è il 30 settembre.", + "example_sentence_english": "The deadline for university registration is September 30th.", + "pos": "noun", + "word_frequency": 21631 + }, + { + "word": "immortalato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immortalized", + "romanization": "immortalato", + "example_sentence_native": "Il momento è stato immortalato in una fotografia.", + "example_sentence_english": "The moment was immortalized in a photograph.", + "pos": "adjective", + "word_frequency": 21632 + }, + { + "word": "implementato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implemented", + "romanization": "implementato", + "example_sentence_native": "Il nuovo sistema è stato implementato con successo.", + "example_sentence_english": "The new system has been successfully implemented.", + "pos": "adjective", + "word_frequency": 21633 + }, + { + "word": "incalzare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to press", + "romanization": "incalzare", + "example_sentence_native": "Il giornalista ha continuato a incalzare il politico con domande difficili.", + "example_sentence_english": "The journalist continued to press the politician with difficult questions.", + "pos": "verb", + "word_frequency": 21634 + }, + { + "word": "incalzante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pressing", + "romanization": "incalzante", + "example_sentence_native": "La scadenza incalzante ci ha costretti a lavorare di più.", + "example_sentence_english": "The pressing deadline forced us to work harder.", + "pos": "adjective", + "word_frequency": 21635 + }, + { + "word": "incoraggiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "encouraged", + "romanization": "incoraggiato", + "example_sentence_native": "Si sentiva incoraggiato dalle parole del suo allenatore.", + "example_sentence_english": "He felt encouraged by his coach's words.", + "pos": "adjective", + "word_frequency": 21636 + }, + { + "word": "individualismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "individualism", + "romanization": "individualismo", + "example_sentence_native": "L'individualismo è una caratteristica della società moderna.", + "example_sentence_english": "Individualism is a characteristic of modern society.", + "pos": "noun", + "word_frequency": 21637 + }, + { + "word": "indossato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "worn", + "romanization": "indossato", + "example_sentence_native": "Aveva un vestito rosso indossato per la festa.", + "example_sentence_english": "She had a red dress worn for the party.", + "pos": "adjective", + "word_frequency": 21638 + }, + { + "word": "infilarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slip into", + "romanization": "infilarsi", + "example_sentence_native": "Si è infilato il cappotto ed è uscito.", + "example_sentence_english": "He slipped on his coat and went out.", + "pos": "verb", + "word_frequency": 21639 + }, + { + "word": "ingenuamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naively", + "romanization": "ingenuamente", + "example_sentence_native": "Ha risposto ingenuamente alla domanda.", + "example_sentence_english": "He answered the question naively.", + "pos": "adverb", + "word_frequency": 21640 + }, + { + "word": "ingiuria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insult;affront", + "romanization": "ingiuria", + "example_sentence_native": "Le sue parole furono un'ingiuria per tutti i presenti.", + "example_sentence_english": "His words were an insult to everyone present.", + "pos": "noun", + "word_frequency": 21641 + }, + { + "word": "ingrandito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "enlarged;magnified", + "romanization": "ingrandito", + "example_sentence_native": "La foto era ingrandita per mostrare i dettagli.", + "example_sentence_english": "The photo was enlarged to show the details.", + "pos": "adjective", + "word_frequency": 21642 + }, + { + "word": "irritabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irritabile", + "romanization": "irritabile", + "example_sentence_native": "Era molto irritabile a causa della mancanza di sonno.", + "example_sentence_english": "He was very irritable due to lack of sleep.", + "pos": "adjective", + "word_frequency": 21643 + }, + { + "word": "lagna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "complaint;whine", + "romanization": "lagna", + "example_sentence_native": "Smettila con questa lagna!", + "example_sentence_english": "Stop with this whining!", + "pos": "noun", + "word_frequency": 21651 + }, + { + "word": "lamentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lamented;complained about", + "romanization": "lamentato", + "example_sentence_native": "Il problema lamentato è stato risolto.", + "example_sentence_english": "The complained-about problem has been resolved.", + "pos": "adjective", + "word_frequency": 21652 + }, + { + "word": "lebbra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leprosy", + "romanization": "lebbra", + "example_sentence_native": "La lebbra è una malattia antica.", + "example_sentence_english": "Leprosy is an ancient disease.", + "pos": "noun", + "word_frequency": 21654 + }, + { + "word": "libraio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookseller", + "romanization": "libraio", + "example_sentence_native": "Il libraio mi ha consigliato un buon libro.", + "example_sentence_english": "The bookseller recommended a good book to me.", + "pos": "noun", + "word_frequency": 21659 + }, + { + "word": "magazziniere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "warehouse worker;storekeeper", + "romanization": "magazziniere", + "example_sentence_native": "Il magazziniere ha caricato la merce.", + "example_sentence_english": "The warehouse worker loaded the goods.", + "pos": "noun", + "word_frequency": 21665 + }, + { + "word": "magnificenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magnificence;splendor", + "romanization": "magnificenza", + "example_sentence_native": "La magnificenza del palazzo era impressionante.", + "example_sentence_english": "The magnificence of the palace was impressive.", + "pos": "noun", + "word_frequency": 21666 + }, + { + "word": "malnutrizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "malnutrition", + "romanization": "malnutrizione", + "example_sentence_native": "La malnutrizione è un problema grave in molte parti del mondo.", + "example_sentence_english": "Malnutrition is a serious problem in many parts of the world.", + "pos": "noun", + "word_frequency": 21669 + }, + { + "word": "manifatturiero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manufacturing", + "romanization": "manifatturiero", + "example_sentence_native": "Il settore manifatturiero è in crescita.", + "example_sentence_english": "The manufacturing sector is growing.", + "pos": "adjective", + "word_frequency": 21671 + }, + { + "word": "maso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "traditional farm (in Trentino-Alto Adige)", + "romanization": "maso", + "example_sentence_native": "Abbiamo visitato un antico maso in montagna.", + "example_sentence_english": "We visited an old traditional farm in the mountains.", + "pos": "noun", + "word_frequency": 21673 + }, + { + "word": "mediato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mediated;indirect", + "romanization": "mediato", + "example_sentence_native": "La soluzione è stata raggiunta tramite un accordo mediato.", + "example_sentence_english": "The solution was reached through a mediated agreement.", + "pos": "adjective", + "word_frequency": 21675 + }, + { + "word": "mirabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "admirable;wonderful", + "romanization": "mirabile", + "example_sentence_native": "Ha compiuto un'impresa mirabile.", + "example_sentence_english": "He accomplished a wonderful feat.", + "pos": "adjective", + "word_frequency": 21676 + }, + { + "word": "mirto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "myrtle", + "romanization": "mirto", + "example_sentence_native": "Il mirto è una pianta tipica della macchia mediterranea.", + "example_sentence_english": "Myrtle is a typical plant of the Mediterranean scrub.", + "pos": "noun", + "word_frequency": 21677 + }, + { + "word": "misogino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misogynistic", + "romanization": "misogino", + "example_sentence_native": "Il suo atteggiamento era chiaramente misogino.", + "example_sentence_english": "His attitude was clearly misogynistic.", + "pos": "adjective", + "word_frequency": 21678 + }, + { + "word": "mobilitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mobilize", + "romanization": "mobilitare", + "example_sentence_native": "Dobbiamo mobilitare tutte le risorse disponibili.", + "example_sentence_english": "We must mobilize all available resources.", + "pos": "verb", + "word_frequency": 21679 + }, + { + "word": "neanch'io", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "me neither;not me either", + "romanization": "neanch'io", + "example_sentence_native": "Non mi piace il caffè, neanch'io.", + "example_sentence_english": "I don't like coffee, me neither.", + "pos": "adverb", + "word_frequency": 21686 + }, + { + "word": "neologismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neologism", + "romanization": "neologismo", + "example_sentence_native": "Il termine 'selfie' è un neologismo moderno.", + "example_sentence_english": "The term 'selfie' is a modern neologism.", + "pos": "noun", + "word_frequency": 21690 + }, + { + "word": "opening", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "opening (e.g.;ceremony;credits)", + "romanization": "opening", + "example_sentence_native": "L'opening del film è stato spettacolare.", + "example_sentence_english": "The opening of the film was spectacular.", + "pos": "noun", + "word_frequency": 21696 + }, + { + "word": "ovino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ovine;sheep (as an animal type)", + "romanization": "ovino", + "example_sentence_native": "L'allevamento ovino è comune in questa regione.", + "example_sentence_english": "Ovine farming is common in this region.", + "pos": "noun", + "word_frequency": 21699 + }, + { + "word": "papilla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "papilla", + "romanization": "papilla", + "example_sentence_native": "Le papille gustative si trovano sulla lingua.", + "example_sentence_english": "Taste buds are found on the tongue.", + "pos": "noun", + "word_frequency": 21702 + }, + { + "word": "plasmare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mold;to shape", + "romanization": "plasmare", + "example_sentence_native": "L'artista ha plasmato l'argilla con le sue mani.", + "example_sentence_english": "The artist molded the clay with his hands.", + "pos": "verb", + "word_frequency": 21706 + }, + { + "word": "pomata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ointment;cream", + "romanization": "pomata", + "example_sentence_native": "Applica questa pomata sulla ferita per guarire.", + "example_sentence_english": "Apply this ointment to the wound to heal.", + "pos": "noun", + "word_frequency": 21708 + }, + { + "word": "premuroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoughtful;caring", + "romanization": "premuroso", + "example_sentence_native": "È sempre molto premuroso con i suoi amici.", + "example_sentence_english": "He is always very thoughtful with his friends.", + "pos": "adjective", + "word_frequency": 21709 + }, + { + "word": "propagandistico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propagandistic", + "romanization": "propagandistico", + "example_sentence_native": "Il discorso aveva un tono chiaramente propagandistico.", + "example_sentence_english": "The speech had a clearly propagandistic tone.", + "pos": "adjective", + "word_frequency": 21710 + }, + { + "word": "prugna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "plum", + "romanization": "prugna", + "example_sentence_native": "Mi piace mangiare le prugne fresche in estate.", + "example_sentence_english": "I like to eat fresh plums in summer.", + "pos": "noun", + "word_frequency": 21711 + }, + { + "word": "purga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "purge;laxative", + "romanization": "purga", + "example_sentence_native": "Ha preso una purga per il mal di stomaco.", + "example_sentence_english": "He took a laxative for his stomach ache.", + "pos": "noun", + "word_frequency": 21712 + }, + { + "word": "quadrifoglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "four-leaf clover", + "romanization": "quadrifoglio", + "example_sentence_native": "Ho trovato un quadrifoglio nel prato, porta fortuna.", + "example_sentence_english": "I found a four-leaf clover in the meadow, it brings luck.", + "pos": "noun", + "word_frequency": 21714 + }, + { + "word": "quattordicesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fourteenth", + "romanization": "quattordicesimo", + "example_sentence_native": "È il quattordicesimo giorno del mese.", + "example_sentence_english": "It's the fourteenth day of the month.", + "pos": "adjective", + "word_frequency": 21715 + }, + { + "word": "radiale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radial", + "romanization": "radiale", + "example_sentence_native": "La simmetria radiale è comune in alcune specie marine.", + "example_sentence_english": "Radial symmetry is common in some marine species.", + "pos": "adjective", + "word_frequency": 21718 + }, + { + "word": "rassegnare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to resign;to give up", + "romanization": "rassegnare", + "example_sentence_native": "Si è rassegnato al suo destino.", + "example_sentence_english": "He resigned himself to his fate.", + "pos": "verb", + "word_frequency": 21720 + }, + { + "word": "reattività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reactivity", + "romanization": "reattività", + "example_sentence_native": "La reattività del materiale è stata testata.", + "example_sentence_english": "The reactivity of the material was tested.", + "pos": "noun", + "word_frequency": 21721 + }, + { + "word": "reperimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrieval;finding", + "romanization": "reperimento", + "example_sentence_native": "Il reperimento dei dati è stato difficile.", + "example_sentence_english": "The retrieval of data was difficult.", + "pos": "noun", + "word_frequency": 21722 + }, + { + "word": "restio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reluctant;unwilling", + "romanization": "restio", + "example_sentence_native": "Era restio a parlare della sua esperienza.", + "example_sentence_english": "He was reluctant to talk about his experience.", + "pos": "adjective", + "word_frequency": 21724 + }, + { + "word": "riaccendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to relight;to rekindle", + "romanization": "riaccendere", + "example_sentence_native": "Ha riacceso il fuoco nel camino.", + "example_sentence_english": "He relit the fire in the fireplace.", + "pos": "verb", + "word_frequency": 21726 + }, + { + "word": "ricomporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to recompose;to reassemble", + "romanization": "ricomporre", + "example_sentence_native": "Ha cercato di ricomporre i pezzi rotti.", + "example_sentence_english": "He tried to reassemble the broken pieces.", + "pos": "verb", + "word_frequency": 21727 + }, + { + "word": "riformatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reformer", + "romanization": "riformatore", + "example_sentence_native": "Era un riformatore sociale.", + "example_sentence_english": "He was a social reformer.", + "pos": "noun", + "word_frequency": 21728 + }, + { + "word": "rilevatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detector;sensor", + "romanization": "rilevatore", + "example_sentence_native": "Il rilevatore di fumo ha suonato.", + "example_sentence_english": "The smoke detector went off.", + "pos": "noun", + "word_frequency": 21729 + }, + { + "word": "ristampato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reprinted", + "romanization": "ristampato", + "example_sentence_native": "Il libro è stato ristampato.", + "example_sentence_english": "The book has been reprinted.", + "pos": "adjective", + "word_frequency": 21730 + }, + { + "word": "rucola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "arugula;rocket", + "romanization": "rucola", + "example_sentence_native": "Mi piace l'insalata con la rucola.", + "example_sentence_english": "I like salad with arugula.", + "pos": "noun", + "word_frequency": 21733 + }, + { + "word": "schiantato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crashed;shattered;exhausted", + "romanization": "schiantato", + "example_sentence_native": "Era completamente schiantato dopo la corsa.", + "example_sentence_english": "He was completely exhausted after the run.", + "pos": "adjective", + "word_frequency": 21737 + }, + { + "word": "scordato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forgotten;out of tune", + "romanization": "scordato", + "example_sentence_native": "La chitarra era scordata.", + "example_sentence_english": "The guitar was out of tune.", + "pos": "adjective", + "word_frequency": 21738 + }, + { + "word": "settecentesco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "18th-century", + "romanization": "settecentesco", + "example_sentence_native": "L'edificio è di stile settecentesco.", + "example_sentence_english": "The building is in 18th-century style.", + "pos": "adjective", + "word_frequency": 21741 + }, + { + "word": "sfregio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disfigurement;insult;scratch", + "romanization": "sfregio", + "example_sentence_native": "Ha lasciato uno sfregio sulla parete.", + "example_sentence_english": "He left a scratch on the wall.", + "pos": "noun", + "word_frequency": 21743 + }, + { + "word": "sgombro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mackerel", + "romanization": "sgombro", + "example_sentence_native": "Mi piace mangiare lo sgombro alla griglia.", + "example_sentence_english": "I like to eat grilled mackerel.", + "pos": "noun", + "word_frequency": 21744 + }, + { + "word": "simulato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "simulated;fake", + "romanization": "simulato", + "example_sentence_native": "Hanno condotto un attacco simulato.", + "example_sentence_english": "They conducted a simulated attack.", + "pos": "adjective", + "word_frequency": 21750 + }, + { + "word": "sorpassato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outdated;surpassed", + "romanization": "sorpassato", + "example_sentence_native": "Questa tecnologia è ormai sorpassata.", + "example_sentence_english": "This technology is now outdated.", + "pos": "adjective", + "word_frequency": 21751 + }, + { + "word": "sperone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spur;ridge", + "romanization": "sperone", + "example_sentence_native": "Il cavaliere usava gli speroni.", + "example_sentence_english": "The knight used the spurs.", + "pos": "noun", + "word_frequency": 21753 + }, + { + "word": "steward", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "steward;flight attendant", + "romanization": "steward", + "example_sentence_native": "Lo steward ci ha mostrato i nostri posti.", + "example_sentence_english": "The steward showed us our seats.", + "pos": "noun", + "word_frequency": 21756 + }, + { + "word": "stordito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dazed;stunned", + "romanization": "stordito", + "example_sentence_native": "Era stordito dal colpo.", + "example_sentence_english": "He was dazed by the blow.", + "pos": "adjective", + "word_frequency": 21757 + }, + { + "word": "strascico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "train (of a dress);aftermath;drag", + "romanization": "strascico", + "example_sentence_native": "L'abito da sposa aveva un lungo strascico.", + "example_sentence_english": "The wedding dress had a long train.", + "pos": "noun", + "word_frequency": 21758 + }, + { + "word": "stratificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stratification;layering", + "romanization": "stratificazione", + "example_sentence_native": "La stratificazione sociale è un fenomeno complesso.", + "example_sentence_english": "Social stratification is a complex phenomenon.", + "pos": "noun", + "word_frequency": 21759 + }, + { + "word": "subconscio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subconscious", + "romanization": "subconscio", + "example_sentence_native": "Il subconscio influenza le nostre decisioni quotidiane.", + "example_sentence_english": "The subconscious influences our daily decisions.", + "pos": "noun", + "word_frequency": 21760 + }, + { + "word": "ternano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Terni", + "romanization": "ternano", + "example_sentence_native": "Il calciatore ternano ha segnato un gol.", + "example_sentence_english": "The footballer from Terni scored a goal.", + "pos": "adjective", + "word_frequency": 21765 + }, + { + "word": "terriccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "potting soil;compost", + "romanization": "terriccio", + "example_sentence_native": "Ho comprato del terriccio per le mie piante.", + "example_sentence_english": "I bought some potting soil for my plants.", + "pos": "noun", + "word_frequency": 21766 + }, + { + "word": "testina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small head;print head", + "romanization": "testina", + "example_sentence_native": "La testina della stampante è da sostituire.", + "example_sentence_english": "The printer head needs to be replaced.", + "pos": "noun", + "word_frequency": 21768 + }, + { + "word": "tralasciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "omitted;neglected", + "romanization": "tralasciato", + "example_sentence_native": "L'argomento è stato tralasciato nella discussione.", + "example_sentence_english": "The topic was omitted from the discussion.", + "pos": "adjective", + "word_frequency": 21775 + }, + { + "word": "tranello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trap;trick", + "romanization": "tranello", + "example_sentence_native": "È caduto in un tranello.", + "example_sentence_english": "He fell into a trap.", + "pos": "noun", + "word_frequency": 21776 + }, + { + "word": "trombosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thrombosis", + "romanization": "trombosi", + "example_sentence_native": "La trombosi è una condizione medica seria.", + "example_sentence_english": "Thrombosis is a serious medical condition.", + "pos": "noun", + "word_frequency": 21777 + }, + { + "word": "tulipano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tulip", + "romanization": "tulipano", + "example_sentence_native": "Ho piantato dei tulipani in giardino.", + "example_sentence_english": "I planted some tulips in the garden.", + "pos": "noun", + "word_frequency": 21779 + }, + { + "word": "ultrà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultra (fan);hooligan", + "romanization": "ultrà", + "example_sentence_native": "Gli ultrà hanno sostenuto la squadra.", + "example_sentence_english": "The ultras supported the team.", + "pos": "noun", + "word_frequency": 21780 + }, + { + "word": "vece", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stead;place (as in 'in place of')", + "romanization": "vece", + "example_sentence_native": "In sua vece, parlerò io.", + "example_sentence_english": "In his stead, I will speak.", + "pos": "noun", + "word_frequency": 21785 + }, + { + "word": "ventricolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ventricular", + "romanization": "ventricolare", + "example_sentence_native": "Ha avuto una tachicardia ventricolare.", + "example_sentence_english": "He had ventricular tachycardia.", + "pos": "adjective", + "word_frequency": 21787 + }, + { + "word": "vestigio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vestige;trace", + "romanization": "vestigio", + "example_sentence_native": "Rimangono solo pochi vestigi dell'antica civiltà.", + "example_sentence_english": "Only a few vestiges of the ancient civilization remain.", + "pos": "noun", + "word_frequency": 21788 + }, + { + "word": "vibratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vibrator", + "romanization": "vibratore", + "example_sentence_native": "Il telefono ha un vibratore integrato.", + "example_sentence_english": "The phone has a built-in vibrator.", + "pos": "noun", + "word_frequency": 21789 + }, + { + "word": "viceministro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deputy minister;vice minister", + "romanization": "viceministro", + "example_sentence_native": "Il viceministro ha partecipato alla riunione.", + "example_sentence_english": "The deputy minister attended the meeting.", + "pos": "noun", + "word_frequency": 21790 + }, + { + "word": "acacia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acacia", + "romanization": "acacia", + "example_sentence_native": "L'acacia è un albero con fiori profumati.", + "example_sentence_english": "The acacia is a tree with fragrant flowers.", + "pos": "noun", + "word_frequency": 21800 + }, + { + "word": "accomodare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to accommodate;to settle", + "romanization": "accomodare", + "example_sentence_native": "Posso accomodare la sedia per te.", + "example_sentence_english": "I can adjust the chair for you.", + "pos": "verb", + "word_frequency": 21801 + }, + { + "word": "acume", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "acumen;sharpness", + "romanization": "acume", + "example_sentence_native": "Ha dimostrato grande acume negli affari.", + "example_sentence_english": "He showed great acumen in business.", + "pos": "noun", + "word_frequency": 21802 + }, + { + "word": "affittuario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tenant", + "romanization": "affittuario", + "example_sentence_native": "L'affittuario ha pagato l'affitto in tempo.", + "example_sentence_english": "The tenant paid the rent on time.", + "pos": "noun", + "word_frequency": 21803 + }, + { + "word": "altopiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "plateau;high plain", + "romanization": "altopiano", + "example_sentence_native": "L'escursione ci ha portato su un vasto altopiano.", + "example_sentence_english": "The hike took us to a vast plateau.", + "pos": "noun", + "word_frequency": 21805 + }, + { + "word": "anatomico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anatomical", + "romanization": "anatomico", + "example_sentence_native": "Ha studiato il modello anatomico del cuore.", + "example_sentence_english": "He studied the anatomical model of the heart.", + "pos": "adjective", + "word_frequency": 21809 + }, + { + "word": "angioletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little angel;cherub", + "romanization": "angioletto", + "example_sentence_native": "Il bambino dormiva come un angioletto.", + "example_sentence_english": "The baby slept like a little angel.", + "pos": "noun", + "word_frequency": 21810 + }, + { + "word": "anticostituzionale", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "unconstitutional", + "romanization": "anticostituzionale", + "example_sentence_native": "La legge è stata dichiarata anticostituzionale.", + "example_sentence_english": "The law was declared unconstitutional.", + "pos": "adjective", + "word_frequency": 21811 + }, + { + "word": "arenaria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sandstone", + "romanization": "arenaria", + "example_sentence_native": "Le scogliere erano formate da arenaria rossa.", + "example_sentence_english": "The cliffs were formed by red sandstone.", + "pos": "noun", + "word_frequency": 21812 + }, + { + "word": "asserzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assertion;statement", + "romanization": "asserzione", + "example_sentence_native": "La sua asserzione non era supportata da prove.", + "example_sentence_english": "His assertion was not supported by evidence.", + "pos": "noun", + "word_frequency": 21813 + }, + { + "word": "assortimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assortment;selection", + "romanization": "assortimento", + "example_sentence_native": "Il negozio offre un vasto assortimento di prodotti.", + "example_sentence_english": "The shop offers a wide assortment of products.", + "pos": "noun", + "word_frequency": 21814 + }, + { + "word": "avventurare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to venture;to risk", + "romanization": "avventurare", + "example_sentence_native": "Non osava avventurarsi nel bosco di notte.", + "example_sentence_english": "He didn't dare to venture into the woods at night.", + "pos": "verb", + "word_frequency": 21816 + }, + { + "word": "bagnetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little bath;baby bath", + "romanization": "bagnetto", + "example_sentence_native": "È ora di fare il bagnetto al bambino.", + "example_sentence_english": "It's time to give the baby a bath.", + "pos": "noun", + "word_frequency": 21817 + }, + { + "word": "bufalo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buffalo", + "romanization": "bufalo", + "example_sentence_native": "Il bufalo d'acqua è comune in Asia.", + "example_sentence_english": "The water buffalo is common in Asia.", + "pos": "noun", + "word_frequency": 21828 + }, + { + "word": "calamaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "squid", + "romanization": "calamaro", + "example_sentence_native": "Abbiamo ordinato calamari fritti al ristorante.", + "example_sentence_english": "We ordered fried squid at the restaurant.", + "pos": "noun", + "word_frequency": 21831 + }, + { + "word": "calato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lowered;decreased", + "romanization": "calato", + "example_sentence_native": "Il livello dell'acqua è calato significativamente.", + "example_sentence_english": "The water level has significantly decreased.", + "pos": "adjective", + "word_frequency": 21832 + }, + { + "word": "cantonese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Cantonese", + "romanization": "cantonese", + "example_sentence_native": "Parla fluentemente il dialetto cantonese.", + "example_sentence_english": "He speaks the Cantonese dialect fluently.", + "pos": "adjective", + "word_frequency": 21834 + }, + { + "word": "carpa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carp", + "romanization": "carpa", + "example_sentence_native": "La carpa è un pesce d'acqua dolce.", + "example_sentence_english": "Carp is a freshwater fish.", + "pos": "noun", + "word_frequency": 21835 + }, + { + "word": "centrista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centrist", + "romanization": "centrista", + "example_sentence_native": "Il partito ha una posizione centrista.", + "example_sentence_english": "The party has a centrist position.", + "pos": "adjective", + "word_frequency": 21836 + }, + { + "word": "cesta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "basket", + "romanization": "cesta", + "example_sentence_native": "Ha messo la frutta nella cesta.", + "example_sentence_english": "She put the fruit in the basket.", + "pos": "noun", + "word_frequency": 21837 + }, + { + "word": "cialda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wafer;pod", + "romanization": "cialda", + "example_sentence_native": "Vorrei un caffè con una cialda al cioccolato.", + "example_sentence_english": "I would like a coffee with a chocolate wafer.", + "pos": "noun", + "word_frequency": 21840 + }, + { + "word": "ciclico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyclic;cyclical", + "romanization": "ciclico", + "example_sentence_native": "Il fenomeno delle stagioni è un processo ciclico.", + "example_sentence_english": "The phenomenon of seasons is a cyclical process.", + "pos": "adjective", + "word_frequency": 21841 + }, + { + "word": "circolante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circulating;current", + "romanization": "circolante", + "example_sentence_native": "La moneta circolante è diminuita.", + "example_sentence_english": "The circulating currency has decreased.", + "pos": "adjective", + "word_frequency": 21843 + }, + { + "word": "coke", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "coke (drink or fuel)", + "romanization": "coke", + "example_sentence_native": "Vorrei una lattina di coke, per favore.", + "example_sentence_english": "I would like a can of coke, please.", + "pos": "noun", + "word_frequency": 21845 + }, + { + "word": "commerciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to trade;to deal in", + "romanization": "commerciare", + "example_sentence_native": "L'azienda commercia in prodotti agricoli.", + "example_sentence_english": "The company trades in agricultural products.", + "pos": "verb", + "word_frequency": 21846 + }, + { + "word": "computing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "computing", + "romanization": "computing", + "example_sentence_native": "Il settore del computing è in continua evoluzione.", + "example_sentence_english": "The computing sector is constantly evolving.", + "pos": "noun", + "word_frequency": 21847 + }, + { + "word": "condensato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "condensed", + "romanization": "condensato", + "example_sentence_native": "Il latte condensato è molto dolce.", + "example_sentence_english": "Condensed milk is very sweet.", + "pos": "adjective", + "word_frequency": 21848 + }, + { + "word": "contrabbandiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "smuggler", + "romanization": "contrabbandiere", + "example_sentence_native": "Il contrabbandiere è stato arrestato al confine.", + "example_sentence_english": "The smuggler was arrested at the border.", + "pos": "noun", + "word_frequency": 21849 + }, + { + "word": "contrappeso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counterweight;counterbalance", + "romanization": "contrappeso", + "example_sentence_native": "Il contrappeso è essenziale per l'equilibrio.", + "example_sentence_english": "The counterweight is essential for balance.", + "pos": "noun", + "word_frequency": 21850 + }, + { + "word": "corporale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "corporal;bodily", + "romanization": "corporale", + "example_sentence_native": "La punizione corporale è vietata in molte scuole.", + "example_sentence_english": "Corporal punishment is forbidden in many schools.", + "pos": "adjective", + "word_frequency": 21852 + }, + { + "word": "cortocircuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short circuit", + "romanization": "cortocircuito", + "example_sentence_native": "Un cortocircuito ha causato l'interruzione di corrente.", + "example_sentence_english": "A short circuit caused the power outage.", + "pos": "noun", + "word_frequency": 21853 + }, + { + "word": "coyote", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coyote", + "romanization": "coyote", + "example_sentence_native": "Il coyote è un animale selvatico del Nord America.", + "example_sentence_english": "The coyote is a wild animal from North America.", + "pos": "noun", + "word_frequency": 21854 + }, + { + "word": "cyborg", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyborg", + "romanization": "cyborg", + "example_sentence_native": "Il cyborg è un essere metà uomo e metà macchina.", + "example_sentence_english": "The cyborg is a being half man and half machine.", + "pos": "noun", + "word_frequency": 21858 + }, + { + "word": "degradante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "degrading;humiliating", + "romanization": "degradante", + "example_sentence_native": "Quella situazione era davvero degradante.", + "example_sentence_english": "That situation was truly degrading.", + "pos": "adjective", + "word_frequency": 21859 + }, + { + "word": "delimitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delimit;to define;to mark off", + "romanization": "delimitare", + "example_sentence_native": "Dobbiamo delimitare chiaramente i confini.", + "example_sentence_english": "We must clearly delimit the boundaries.", + "pos": "verb", + "word_frequency": 21860 + }, + { + "word": "diabetico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "diabetic", + "romanization": "diabetico", + "example_sentence_native": "Mio nonno è diabetico e deve seguire una dieta speciale.", + "example_sentence_english": "My grandfather is diabetic and must follow a special diet.", + "pos": "adjective", + "word_frequency": 21861 + }, + { + "word": "diligente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diligent;hardworking", + "romanization": "diligente", + "example_sentence_native": "È uno studente molto diligente.", + "example_sentence_english": "He is a very diligent student.", + "pos": "adjective", + "word_frequency": 21862 + }, + { + "word": "dimezzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to halve;to cut in half", + "romanization": "dimezzare", + "example_sentence_native": "Hanno deciso di dimezzare i costi.", + "example_sentence_english": "They decided to halve the costs.", + "pos": "verb", + "word_frequency": 21863 + }, + { + "word": "diporto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recreation;pleasure (as in pleasure craft)", + "romanization": "diporto", + "example_sentence_native": "La nautica da diporto è molto popolare qui.", + "example_sentence_english": "Pleasure boating is very popular here.", + "pos": "noun", + "word_frequency": 21864 + }, + { + "word": "disavventura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misadventure;mishap", + "romanization": "disavventura", + "example_sentence_native": "Abbiamo avuto una piccola disavventura durante il viaggio.", + "example_sentence_english": "We had a small misadventure during the trip.", + "pos": "noun", + "word_frequency": 21865 + }, + { + "word": "disciplinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disciplined;regulated", + "romanization": "disciplinato", + "example_sentence_native": "È un atleta molto disciplinato.", + "example_sentence_english": "He is a very disciplined athlete.", + "pos": "adjective", + "word_frequency": 21866 + }, + { + "word": "disclaimer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disclaimer", + "romanization": "disclaimer", + "example_sentence_native": "Il video inizia con un disclaimer.", + "example_sentence_english": "The video starts with a disclaimer.", + "pos": "noun", + "word_frequency": 21867 + }, + { + "word": "discriminante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discriminating;discriminatory", + "romanization": "discriminante", + "example_sentence_native": "Questo è un fattore discriminante.", + "example_sentence_english": "This is a discriminating factor.", + "pos": "adjective", + "word_frequency": 21868 + }, + { + "word": "disinfestazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinfestation;pest control", + "romanization": "disinfestazione", + "example_sentence_native": "Hanno chiamato una ditta per la disinfestazione.", + "example_sentence_english": "They called a company for pest control.", + "pos": "noun", + "word_frequency": 21869 + }, + { + "word": "dispendioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expensive;costly;time-consuming", + "romanization": "dispendioso", + "example_sentence_native": "Il progetto si è rivelato molto dispendioso.", + "example_sentence_english": "The project turned out to be very expensive.", + "pos": "adjective", + "word_frequency": 21870 + }, + { + "word": "dispregiativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derogatory;pejorative", + "romanization": "dispregiativo", + "example_sentence_native": "Ha usato un termine dispregiativo.", + "example_sentence_english": "He used a derogatory term.", + "pos": "adjective", + "word_frequency": 21871 + }, + { + "word": "disservizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "service disruption;malfunction;poor service", + "romanization": "disservizio", + "example_sentence_native": "Ci scusiamo per il disservizio.", + "example_sentence_english": "We apologize for the service disruption.", + "pos": "noun", + "word_frequency": 21872 + }, + { + "word": "edera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ivy", + "romanization": "edera", + "example_sentence_native": "Il muro è coperto di edera.", + "example_sentence_english": "The wall is covered with ivy.", + "pos": "noun", + "word_frequency": 21875 + }, + { + "word": "europeista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pro-European;Europeanist", + "romanization": "europeista", + "example_sentence_native": "È un politico convintamente europeista.", + "example_sentence_english": "He is a strongly pro-European politician.", + "pos": "adjective", + "word_frequency": 21879 + }, + { + "word": "fannullone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lazy person;slacker", + "romanization": "fannullone", + "example_sentence_native": "Non essere un fannullone, mettiti al lavoro!", + "example_sentence_english": "Don't be a slacker, get to work!", + "pos": "noun", + "word_frequency": 21882 + }, + { + "word": "filtrazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filtration", + "romanization": "filtrazione", + "example_sentence_native": "Il processo di filtrazione è essenziale per purificare l'acqua.", + "example_sentence_english": "The filtration process is essential for purifying water.", + "pos": "noun", + "word_frequency": 21884 + }, + { + "word": "foiba", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foiba (karst sinkhole;often historical context)", + "romanization": "foiba", + "example_sentence_native": "Le foibe sono cavità naturali tipiche del Carso.", + "example_sentence_english": "Foibe are natural cavities typical of the Karst region.", + "pos": "noun", + "word_frequency": 21887 + }, + { + "word": "fondiario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "land-related;real estate (adj.)", + "romanization": "fondiario", + "example_sentence_native": "Ha richiesto un prestito fondiario per acquistare il terreno.", + "example_sentence_english": "He requested a land loan to buy the land.", + "pos": "adjective", + "word_frequency": 21888 + }, + { + "word": "frammentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fragment;to break up", + "romanization": "frammentare", + "example_sentence_native": "Il vetro è caduto e si è frammentato in mille pezzi.", + "example_sentence_english": "The glass fell and fragmented into a thousand pieces.", + "pos": "verb", + "word_frequency": 21889 + }, + { + "word": "frattanto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meanwhile;in the meantime", + "romanization": "frattanto", + "example_sentence_native": "Frattanto, io preparerò la cena.", + "example_sentence_english": "Meanwhile, I will prepare dinner.", + "pos": "adverb", + "word_frequency": 21890 + }, + { + "word": "giudaismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Judaism", + "romanization": "giudaismo", + "example_sentence_native": "Il giudaismo è una delle più antiche religioni monoteiste.", + "example_sentence_english": "Judaism is one of the oldest monotheistic religions.", + "pos": "noun", + "word_frequency": 21896 + }, + { + "word": "granita", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "granita (Italian shaved ice dessert)", + "romanization": "granita", + "example_sentence_native": "D'estate mi piace molto la granita al limone.", + "example_sentence_english": "In summer I really like lemon granita.", + "pos": "noun", + "word_frequency": 21898 + }, + { + "word": "ideazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ideation;conception", + "romanization": "ideazione", + "example_sentence_native": "La fase di ideazione è cruciale per ogni progetto.", + "example_sentence_english": "The ideation phase is crucial for every project.", + "pos": "noun", + "word_frequency": 21907 + }, + { + "word": "illazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inference;conjecture (unfounded)", + "romanization": "illazione", + "example_sentence_native": "Le sue sono solo illazioni, non ci sono prove.", + "example_sentence_english": "His are just conjectures, there is no proof.", + "pos": "noun", + "word_frequency": 21908 + }, + { + "word": "illeggibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illegible", + "romanization": "illeggibile", + "example_sentence_native": "La sua scrittura è quasi illeggibile.", + "example_sentence_english": "His handwriting is almost illegible.", + "pos": "adjective", + "word_frequency": 21909 + }, + { + "word": "immaginabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imaginable", + "romanization": "immaginabile", + "example_sentence_native": "Ha fatto tutto il possibile e anche l'immaginabile.", + "example_sentence_english": "He did everything possible and even the imaginable.", + "pos": "adjective", + "word_frequency": 21910 + }, + { + "word": "incappare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stumble upon;to fall into (trouble)", + "romanization": "incappare", + "example_sentence_native": "È facile incappare in errori se non si presta attenzione.", + "example_sentence_english": "It's easy to stumble upon errors if you don't pay attention.", + "pos": "verb", + "word_frequency": 21911 + }, + { + "word": "indifendibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indefensible", + "romanization": "indifendibile", + "example_sentence_native": "La sua posizione è completamente indifendibile.", + "example_sentence_english": "His position is completely indefensible.", + "pos": "adjective", + "word_frequency": 21912 + }, + { + "word": "indignare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to outrage;to make indignant", + "romanization": "indignare", + "example_sentence_native": "Le sue parole hanno indignato molte persone.", + "example_sentence_english": "His words outraged many people.", + "pos": "verb", + "word_frequency": 21913 + }, + { + "word": "indulgente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indulgent;lenient", + "romanization": "indulgente", + "example_sentence_native": "I genitori erano troppo indulgenti con i loro figli.", + "example_sentence_english": "The parents were too indulgent with their children.", + "pos": "adjective", + "word_frequency": 21914 + }, + { + "word": "infiammatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflammatory", + "romanization": "infiammatorio", + "example_sentence_native": "Ha usato un linguaggio infiammatorio durante il dibattito.", + "example_sentence_english": "He used inflammatory language during the debate.", + "pos": "adjective", + "word_frequency": 21915 + }, + { + "word": "infondere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to infuse;to instill", + "romanization": "infondere", + "example_sentence_native": "Il suo discorso ha infuso speranza nel pubblico.", + "example_sentence_english": "His speech infused hope into the audience.", + "pos": "verb", + "word_frequency": 21916 + }, + { + "word": "inimitabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inimitable", + "romanization": "inimitabile", + "example_sentence_native": "Il suo stile è assolutamente inimitabile.", + "example_sentence_english": "His style is absolutely inimitable.", + "pos": "adjective", + "word_frequency": 21917 + }, + { + "word": "innesco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trigger;primer", + "romanization": "innesco", + "example_sentence_native": "La scintilla è stata l'innesco dell'incendio.", + "example_sentence_english": "The spark was the trigger for the fire.", + "pos": "noun", + "word_frequency": 21918 + }, + { + "word": "inoltrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to forward;to send on", + "romanization": "inoltrare", + "example_sentence_native": "Puoi inoltrare questa email al mio collega?", + "example_sentence_english": "Can you forward this email to my colleague?", + "pos": "verb", + "word_frequency": 21919 + }, + { + "word": "insoddisfatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissatisfied", + "romanization": "insoddisfatto", + "example_sentence_native": "Era insoddisfatto del risultato.", + "example_sentence_english": "He was dissatisfied with the result.", + "pos": "adjective", + "word_frequency": 21920 + }, + { + "word": "insolente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "insolent", + "romanization": "insolente", + "example_sentence_native": "Il suo comportamento era insolente.", + "example_sentence_english": "His behavior was insolent.", + "pos": "adjective", + "word_frequency": 21921 + }, + { + "word": "insolvenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insolvency", + "romanization": "insolvenza", + "example_sentence_native": "L'azienda ha dichiarato insolvenza.", + "example_sentence_english": "The company declared insolvency.", + "pos": "noun", + "word_frequency": 21922 + }, + { + "word": "interregionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interregional", + "romanization": "interregionale", + "example_sentence_native": "Il treno interregionale è in ritardo.", + "example_sentence_english": "The interregional train is delayed.", + "pos": "adjective", + "word_frequency": 21923 + }, + { + "word": "lamella", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lamella (thin plate;layer)", + "romanization": "lamella", + "example_sentence_native": "Le lamelle del fungo sono sottili.", + "example_sentence_english": "The lamellae of the mushroom are thin.", + "pos": "noun", + "word_frequency": 21927 + }, + { + "word": "leccese", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Lecce;Leccese", + "romanization": "leccese", + "example_sentence_native": "La cucina leccese è deliziosa.", + "example_sentence_english": "Leccese cuisine is delicious.", + "pos": "adjective", + "word_frequency": 21929 + }, + { + "word": "lucciola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firefly", + "romanization": "lucciola", + "example_sentence_native": "Le lucciole illuminano la notte d'estate.", + "example_sentence_english": "Fireflies light up the summer night.", + "pos": "noun", + "word_frequency": 21931 + }, + { + "word": "maldestro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clumsy;awkward", + "romanization": "maldestro", + "example_sentence_native": "Era un ballerino un po' maldestro.", + "example_sentence_english": "He was a somewhat clumsy dancer.", + "pos": "adjective", + "word_frequency": 21933 + }, + { + "word": "massaro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "farmer;farm manager", + "romanization": "massaro", + "example_sentence_native": "Il massaro si occupava della gestione della tenuta.", + "example_sentence_english": "The farmer was in charge of managing the estate.", + "pos": "noun", + "word_frequency": 21937 + }, + { + "word": "memorizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "memorization;storage", + "romanization": "memorizzazione", + "example_sentence_native": "La memorizzazione dei dati è fondamentale.", + "example_sentence_english": "Data memorization is fundamental.", + "pos": "noun", + "word_frequency": 21938 + }, + { + "word": "metafisico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "metaphysical", + "romanization": "metafisico", + "example_sentence_native": "Ha scritto un saggio sul pensiero metafisico.", + "example_sentence_english": "He wrote an essay on metaphysical thought.", + "pos": "adjective", + "word_frequency": 21940 + }, + { + "word": "misticismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mysticism", + "romanization": "misticismo", + "example_sentence_native": "Ha studiato il misticismo orientale.", + "example_sentence_english": "He studied Eastern mysticism.", + "pos": "noun", + "word_frequency": 21943 + }, + { + "word": "morena", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "moraine", + "romanization": "morena", + "example_sentence_native": "La morena è un accumulo di detriti glaciali.", + "example_sentence_english": "A moraine is an accumulation of glacial debris.", + "pos": "noun", + "word_frequency": 21948 + }, + { + "word": "nepotismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nepotism", + "romanization": "nepotismo", + "example_sentence_native": "Il nepotismo è un problema in molte organizzazioni.", + "example_sentence_english": "Nepotism is a problem in many organizations.", + "pos": "noun", + "word_frequency": 21953 + }, + { + "word": "nobiliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "noble (adj.);aristocratic", + "romanization": "nobiliare", + "example_sentence_native": "Possiede un titolo nobiliare.", + "example_sentence_english": "He possesses a noble title.", + "pos": "adjective", + "word_frequency": 21956 + }, + { + "word": "nottetempo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overnight;during the night", + "romanization": "nottetempo", + "example_sentence_native": "Hanno lavorato nottetempo per finire il progetto.", + "example_sentence_english": "They worked overnight to finish the project.", + "pos": "adverb", + "word_frequency": 21957 + }, + { + "word": "ombelicale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "umbilical", + "romanization": "ombelicale", + "example_sentence_native": "Il cordone ombelicale collega il feto alla placenta.", + "example_sentence_english": "The umbilical cord connects the fetus to the placenta.", + "pos": "adjective", + "word_frequency": 21959 + }, + { + "word": "oste", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "innkeeper", + "romanization": "oste", + "example_sentence_native": "L'oste ci ha accolto con un sorriso.", + "example_sentence_english": "The innkeeper welcomed us with a smile.", + "pos": "noun", + "word_frequency": 21961 + }, + { + "word": "ostentazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ostentation", + "romanization": "ostentazione", + "example_sentence_native": "La sua ostentazione di ricchezza era evidente.", + "example_sentence_english": "His ostentation of wealth was evident.", + "pos": "noun", + "word_frequency": 21962 + }, + { + "word": "paracadutista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parachutist", + "romanization": "paracadutista", + "example_sentence_native": "Il paracadutista è atterrato in sicurezza.", + "example_sentence_english": "The parachutist landed safely.", + "pos": "noun", + "word_frequency": 21963 + }, + { + "word": "perpetuare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to perpetuate", + "romanization": "perpetuare", + "example_sentence_native": "Dobbiamo perpetuare le nostre tradizioni.", + "example_sentence_english": "We must perpetuate our traditions.", + "pos": "verb", + "word_frequency": 21967 + }, + { + "word": "pisolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nap", + "romanization": "pisolino", + "example_sentence_native": "Mi piace fare un pisolino dopo pranzo.", + "example_sentence_english": "I like to take a nap after lunch.", + "pos": "noun", + "word_frequency": 21971 + }, + { + "word": "placa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plaque", + "romanization": "placa", + "example_sentence_native": "Il dentista ha rimosso la placca dai miei denti.", + "example_sentence_english": "The dentist removed the plaque from my teeth.", + "pos": "noun", + "word_frequency": 21973 + }, + { + "word": "politicante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "petty politician", + "romanization": "politicante", + "example_sentence_native": "Non mi fido di quel politicante.", + "example_sentence_english": "I don't trust that petty politician.", + "pos": "noun", + "word_frequency": 21976 + }, + { + "word": "polivalente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multipurpose", + "romanization": "polivalente", + "example_sentence_native": "È un attrezzo polivalente, utile per molti lavori.", + "example_sentence_english": "It's a multipurpose tool, useful for many jobs.", + "pos": "adjective", + "word_frequency": 21977 + }, + { + "word": "portello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hatch", + "romanization": "portello", + "example_sentence_native": "Ha aperto il portello per far entrare aria.", + "example_sentence_english": "He opened the hatch to let air in.", + "pos": "noun", + "word_frequency": 21979 + }, + { + "word": "pregresso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "previous", + "romanization": "pregresso", + "example_sentence_native": "La sua esperienza pregressa è stata molto utile.", + "example_sentence_english": "His previous experience was very useful.", + "pos": "adjective", + "word_frequency": 21981 + }, + { + "word": "premeditare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to premeditate", + "romanization": "premeditare", + "example_sentence_native": "L'omicidio è stato premeditato.", + "example_sentence_english": "The murder was premeditated.", + "pos": "verb", + "word_frequency": 21982 + }, + { + "word": "preparatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trainer", + "romanization": "preparatore", + "example_sentence_native": "Il preparatore atletico ha aiutato la squadra.", + "example_sentence_english": "The athletic trainer helped the team.", + "pos": "noun", + "word_frequency": 21983 + }, + { + "word": "privilegiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to favor", + "romanization": "privilegiare", + "example_sentence_native": "Dovremmo privilegiare la qualità sulla quantità.", + "example_sentence_english": "We should favor quality over quantity.", + "pos": "verb", + "word_frequency": 21984 + }, + { + "word": "propulsore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "propellant", + "romanization": "propulsore", + "example_sentence_native": "Il razzo usa un potente propulsore.", + "example_sentence_english": "The rocket uses a powerful propellant.", + "pos": "noun", + "word_frequency": 21986 + }, + { + "word": "provetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "expert", + "romanization": "provetto", + "example_sentence_native": "È un provetto cuoco.", + "example_sentence_english": "He is an expert cook.", + "pos": "adjective", + "word_frequency": 21987 + }, + { + "word": "prussiano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Prussian", + "romanization": "prussiano", + "example_sentence_native": "L'esercito prussiano era molto disciplinato.", + "example_sentence_english": "The Prussian army was very disciplined.", + "pos": "adjective", + "word_frequency": 21988 + }, + { + "word": "quadretto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small picture", + "romanization": "quadretto", + "example_sentence_native": "Ha appeso un piccolo quadretto alla parete.", + "example_sentence_english": "He hung a small picture on the wall.", + "pos": "noun", + "word_frequency": 21990 + }, + { + "word": "quark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quark", + "romanization": "quark", + "example_sentence_native": "I quark sono particelle elementari.", + "example_sentence_english": "Quarks are elementary particles.", + "pos": "noun", + "word_frequency": 21991 + }, + { + "word": "quindicinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fortnightly", + "romanization": "quindicinale", + "example_sentence_native": "La riunione è quindicinale.", + "example_sentence_english": "The meeting is fortnightly.", + "pos": "adjective", + "word_frequency": 21993 + }, + { + "word": "quintetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "quintet", + "romanization": "quintetto", + "example_sentence_native": "Il quintetto ha suonato un pezzo jazz.", + "example_sentence_english": "The quintet played a jazz piece.", + "pos": "noun", + "word_frequency": 21995 + }, + { + "word": "raddoppiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doubled", + "romanization": "raddoppiato", + "example_sentence_native": "Il numero di partecipanti è raddoppiato.", + "example_sentence_english": "The number of participants has doubled.", + "pos": "adjective", + "word_frequency": 21996 + }, + { + "word": "rapportare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to report", + "romanization": "rapportare", + "example_sentence_native": "Devi rapportare i fatti con precisione.", + "example_sentence_english": "You must report the facts accurately.", + "pos": "verb", + "word_frequency": 21998 + }, + { + "word": "refettorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refectory", + "romanization": "refettorio", + "example_sentence_native": "Abbiamo pranzato nel refettorio del monastero.", + "example_sentence_english": "We had lunch in the monastery's refectory.", + "pos": "noun", + "word_frequency": 21999 + }, + { + "word": "ricaricabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rechargeable", + "romanization": "ricaricabile", + "example_sentence_native": "Ho comprato una batteria ricaricabile per la mia fotocamera.", + "example_sentence_english": "I bought a rechargeable battery for my camera.", + "pos": "adjective", + "word_frequency": 22001 + }, + { + "word": "ricettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "receptive", + "romanization": "ricettivo", + "example_sentence_native": "È una persona molto ricettiva alle nuove idee.", + "example_sentence_english": "He is a very receptive person to new ideas.", + "pos": "adjective", + "word_frequency": 22002 + }, + { + "word": "rivendere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to resell", + "romanization": "rivendere", + "example_sentence_native": "Non puoi rivendere i biglietti a un prezzo più alto.", + "example_sentence_english": "You cannot resell the tickets at a higher price.", + "pos": "verb", + "word_frequency": 22003 + }, + { + "word": "rogna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trouble", + "romanization": "rogna", + "example_sentence_native": "Questa situazione è una vera rogna.", + "example_sentence_english": "This situation is a real trouble.", + "pos": "noun", + "word_frequency": 22005 + }, + { + "word": "rostro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beak", + "romanization": "rostro", + "example_sentence_native": "L'aquila ha un rostro potente.", + "example_sentence_english": "The eagle has a powerful beak.", + "pos": "noun", + "word_frequency": 22007 + }, + { + "word": "sacrificale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacrificial", + "romanization": "sacrificale", + "example_sentence_native": "Hanno compiuto un rito sacrificale.", + "example_sentence_english": "They performed a sacrificial rite.", + "pos": "adjective", + "word_frequency": 22012 + }, + { + "word": "saporito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tasty", + "romanization": "saporito", + "example_sentence_native": "Questo piatto è molto saporito.", + "example_sentence_english": "This dish is very tasty.", + "pos": "adjective", + "word_frequency": 22014 + }, + { + "word": "sartoria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tailor's shop", + "romanization": "sartoria", + "example_sentence_native": "Ho portato il vestito in sartoria per farlo aggiustare.", + "example_sentence_english": "I took the dress to the tailor's shop to have it adjusted.", + "pos": "noun", + "word_frequency": 22015 + }, + { + "word": "sberla", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slap", + "romanization": "sberla", + "example_sentence_native": "Gli ha dato una sberla sulla guancia.", + "example_sentence_english": "She gave him a slap on the cheek.", + "pos": "noun", + "word_frequency": 22016 + }, + { + "word": "scagliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hurl", + "romanization": "scagliare", + "example_sentence_native": "Ha scagliato la pietra lontano.", + "example_sentence_english": "He hurled the stone far away.", + "pos": "verb", + "word_frequency": 22017 + }, + { + "word": "scivolata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slip", + "romanization": "scivolata", + "example_sentence_native": "Ha fatto una brutta scivolata sul ghiaccio.", + "example_sentence_english": "He had a bad slip on the ice.", + "pos": "noun", + "word_frequency": 22020 + }, + { + "word": "scortare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to escort", + "romanization": "scortare", + "example_sentence_native": "La polizia ha scortato il convoglio.", + "example_sentence_english": "The police escorted the convoy.", + "pos": "verb", + "word_frequency": 22021 + }, + { + "word": "soffocamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "suffocation", + "romanization": "soffocamento", + "example_sentence_native": "Ha rischiato il soffocamento a causa del cibo.", + "example_sentence_english": "He risked choking because of the food.", + "pos": "noun", + "word_frequency": 22025 + }, + { + "word": "sovrapporre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overlap", + "romanization": "sovrapporre", + "example_sentence_native": "Non sovrapporre i fogli, altrimenti non si leggono.", + "example_sentence_english": "Do not overlap the sheets, otherwise they cannot be read.", + "pos": "verb", + "word_frequency": 22028 + }, + { + "word": "spiedo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spit", + "romanization": "spiedo", + "example_sentence_native": "Stiamo cucinando il pollo allo spiedo.", + "example_sentence_english": "We are cooking chicken on the spit.", + "pos": "noun", + "word_frequency": 22029 + }, + { + "word": "spiritualmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spiritually", + "romanization": "spiritualmente", + "example_sentence_native": "Si sente molto legato spiritualmente alla natura.", + "example_sentence_english": "He feels very spiritually connected to nature.", + "pos": "adverb", + "word_frequency": 22030 + }, + { + "word": "squama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scale", + "romanization": "squama", + "example_sentence_native": "Le squame del pesce brillavano al sole.", + "example_sentence_english": "The fish scales glittered in the sun.", + "pos": "noun", + "word_frequency": 22031 + }, + { + "word": "strategicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "strategically", + "romanization": "strategicamente", + "example_sentence_native": "Hanno posizionato le truppe strategicamente.", + "example_sentence_english": "They strategically positioned the troops.", + "pos": "adverb", + "word_frequency": 22034 + }, + { + "word": "suonatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "player (of an instrument)", + "romanization": "suonatore", + "example_sentence_native": "È un bravo suonatore di chitarra.", + "example_sentence_english": "He is a good guitar player.", + "pos": "noun", + "word_frequency": 22036 + }, + { + "word": "targhetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tag", + "romanization": "targhetta", + "example_sentence_native": "La targhetta con il suo nome era appesa alla porta.", + "example_sentence_english": "The nameplate with his name was hanging on the door.", + "pos": "noun", + "word_frequency": 22038 + }, + { + "word": "trasfusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transfusion", + "romanization": "trasfusione", + "example_sentence_native": "Ha avuto bisogno di una trasfusione di sangue.", + "example_sentence_english": "He needed a blood transfusion.", + "pos": "noun", + "word_frequency": 22043 + }, + { + "word": "unanimemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unanimously", + "romanization": "unanimemente", + "example_sentence_native": "La proposta è stata approvata unanimemente.", + "example_sentence_english": "The proposal was approved unanimously.", + "pos": "adverb", + "word_frequency": 22044 + }, + { + "word": "vaccinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vaccine (adj.);related to vaccines", + "romanization": "vaccinale", + "example_sentence_native": "La campagna vaccinale è iniziata.", + "example_sentence_english": "The vaccination campaign has started.", + "pos": "adjective", + "word_frequency": 22047 + }, + { + "word": "ventennale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "twenty-year;biennial", + "romanization": "ventennale", + "example_sentence_native": "Hanno celebrato il loro anniversario ventennale.", + "example_sentence_english": "They celebrated their twenty-year anniversary.", + "pos": "adjective", + "word_frequency": 22048 + }, + { + "word": "ventrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ventral", + "romanization": "ventrale", + "example_sentence_native": "La parte ventrale del corpo.", + "example_sentence_english": "The ventral part of the body.", + "pos": "adjective", + "word_frequency": 22049 + }, + { + "word": "versatilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "versatility", + "romanization": "versatilità", + "example_sentence_native": "La sua versatilità è impressionante.", + "example_sentence_english": "His versatility is impressive.", + "pos": "noun", + "word_frequency": 22052 + }, + { + "word": "visitabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visitable;open to visitors", + "romanization": "visitabile", + "example_sentence_native": "Il museo è visitabile tutti i giorni.", + "example_sentence_english": "The museum is open to visitors every day.", + "pos": "adjective", + "word_frequency": 22055 + }, + { + "word": "vittimismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "victimhood;victimism", + "romanization": "vittimismo", + "example_sentence_native": "Il suo atteggiamento di vittimismo è stancante.", + "example_sentence_english": "His attitude of victimhood is tiring.", + "pos": "noun", + "word_frequency": 22056 + }, + { + "word": "vittoriano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Victorian", + "romanization": "vittoriano", + "example_sentence_native": "L'architettura vittoriana è molto ricca.", + "example_sentence_english": "Victorian architecture is very rich.", + "pos": "adjective", + "word_frequency": 22057 + }, + { + "word": "vocina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small voice;little voice", + "romanization": "vocina", + "example_sentence_native": "Ha parlato con una vocina timida.", + "example_sentence_english": "She spoke with a timid little voice.", + "pos": "noun", + "word_frequency": 22058 + }, + { + "word": "zecchino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sequin (historical coin);Zecchino (festival)", + "romanization": "zecchino", + "example_sentence_native": "Ha vinto lo Zecchino d'Oro.", + "example_sentence_english": "He won the Zecchino d'Oro.", + "pos": "noun", + "word_frequency": 22068 + }, + { + "word": "zigomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cheekbone", + "romanization": "zigomo", + "example_sentence_native": "Si è rotto lo zigomo cadendo.", + "example_sentence_english": "He broke his cheekbone when he fell.", + "pos": "noun", + "word_frequency": 22070 + }, + { + "word": "abissale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abyssal;abysmal", + "romanization": "abissale", + "example_sentence_native": "La sua ignoranza è abissale.", + "example_sentence_english": "His ignorance is abysmal.", + "pos": "adjective", + "word_frequency": 22074 + }, + { + "word": "aeromobile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aircraft;airplane", + "romanization": "aeromobile", + "example_sentence_native": "L'aeromobile è pronto per il decollo.", + "example_sentence_english": "The aircraft is ready for takeoff.", + "pos": "noun", + "word_frequency": 22075 + }, + { + "word": "agganciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hooked;attached;latched", + "romanization": "agganciato", + "example_sentence_native": "Il vagone è agganciato alla locomotiva.", + "example_sentence_english": "The wagon is attached to the locomotive.", + "pos": "adjective", + "word_frequency": 22076 + }, + { + "word": "amplificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to amplify", + "romanization": "amplificare", + "example_sentence_native": "Dobbiamo amplificare il segnale per migliorare la ricezione.", + "example_sentence_english": "We need to amplify the signal to improve reception.", + "pos": "verb", + "word_frequency": 22082 + }, + { + "word": "anguilla", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eel", + "romanization": "anguilla", + "example_sentence_native": "L'anguilla è un pesce dal corpo allungato.", + "example_sentence_english": "The eel is a fish with an elongated body.", + "pos": "noun", + "word_frequency": 22083 + }, + { + "word": "appendino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hanger", + "romanization": "appendino", + "example_sentence_native": "Ho appeso la giacca sull'appendino.", + "example_sentence_english": "I hung the jacket on the hanger.", + "pos": "noun", + "word_frequency": 22085 + }, + { + "word": "appiccato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "set alight", + "romanization": "appiccato", + "example_sentence_native": "Il fuoco è stato appiccato intenzionalmente.", + "example_sentence_english": "The fire was set alight intentionally.", + "pos": "adjective", + "word_frequency": 22086 + }, + { + "word": "arrecato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caused", + "romanization": "arrecato", + "example_sentence_native": "Il danno arrecato è stato considerevole.", + "example_sentence_english": "The damage caused was considerable.", + "pos": "adjective", + "word_frequency": 22087 + }, + { + "word": "arretratezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "backwardness", + "romanization": "arretratezza", + "example_sentence_native": "Il paese soffre ancora di una certa arretratezza economica.", + "example_sentence_english": "The country still suffers from a certain economic backwardness.", + "pos": "noun", + "word_frequency": 22088 + }, + { + "word": "attinenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "relevance", + "romanization": "attinenza", + "example_sentence_native": "La sua osservazione non ha alcuna attinenza con l'argomento.", + "example_sentence_english": "His observation has no relevance to the topic.", + "pos": "noun", + "word_frequency": 22092 + }, + { + "word": "avventuriero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adventurer", + "romanization": "avventuriero", + "example_sentence_native": "Era un vero avventuriero, sempre in cerca di nuove sfide.", + "example_sentence_english": "He was a true adventurer, always looking for new challenges.", + "pos": "noun", + "word_frequency": 22094 + }, + { + "word": "bacione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "big kiss", + "romanization": "bacione", + "example_sentence_native": "Ti mando un bacione grande grande!", + "example_sentence_english": "I'm sending you a really big kiss!", + "pos": "noun", + "word_frequency": 22095 + }, + { + "word": "bambolina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little doll", + "romanization": "bambolina", + "example_sentence_native": "La bambina giocava con la sua bambolina preferita.", + "example_sentence_english": "The little girl was playing with her favorite little doll.", + "pos": "noun", + "word_frequency": 22097 + }, + { + "word": "baraccone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fairground stall", + "romanization": "baraccone", + "example_sentence_native": "Al luna park c'erano molti baracconi con giochi e premi.", + "example_sentence_english": "At the amusement park there were many fairground stalls with games and prizes.", + "pos": "noun", + "word_frequency": 22098 + }, + { + "word": "basco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beret", + "romanization": "basco", + "example_sentence_native": "Indossava un elegante basco nero.", + "example_sentence_english": "He was wearing an elegant black beret.", + "pos": "noun", + "word_frequency": 22099 + }, + { + "word": "benzinaio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gas station", + "romanization": "benzinaio", + "example_sentence_native": "Mi sono fermato dal benzinaio per fare il pieno.", + "example_sentence_english": "I stopped at the gas station to fill up the tank.", + "pos": "noun", + "word_frequency": 22102 + }, + { + "word": "bianchino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small glass of white wine", + "romanization": "bianchino", + "example_sentence_native": "Vorrei un bianchino, per favore.", + "example_sentence_english": "I would like a small glass of white wine, please.", + "pos": "noun", + "word_frequency": 22104 + }, + { + "word": "biotecnologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "biotechnology", + "romanization": "biotecnologia", + "example_sentence_native": "La biotecnologia offre nuove soluzioni in campo medico.", + "example_sentence_english": "Biotechnology offers new solutions in the medical field.", + "pos": "noun", + "word_frequency": 22105 + }, + { + "word": "bossolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartridge case", + "romanization": "bossolo", + "example_sentence_native": "Hanno trovato un bossolo vuoto sulla scena del crimine.", + "example_sentence_english": "They found an empty cartridge case at the crime scene.", + "pos": "noun", + "word_frequency": 22107 + }, + { + "word": "brio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zest", + "romanization": "brio", + "example_sentence_native": "Ha affrontato la sfida con grande brio.", + "example_sentence_english": "He faced the challenge with great zest.", + "pos": "noun", + "word_frequency": 22109 + }, + { + "word": "cala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cove", + "romanization": "cala", + "example_sentence_native": "Abbiamo ormeggiato la barca in una piccola cala nascosta.", + "example_sentence_english": "We moored the boat in a small hidden cove.", + "pos": "noun", + "word_frequency": 22112 + }, + { + "word": "chalet", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chalet", + "romanization": "chalet", + "example_sentence_native": "Abbiamo affittato uno chalet in montagna per le vacanze.", + "example_sentence_english": "We rented a chalet in the mountains for the holidays.", + "pos": "noun", + "word_frequency": 22113 + }, + { + "word": "cirrosi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cirrhosis", + "romanization": "cirrosi", + "example_sentence_native": "La cirrosi epatica è una grave malattia del fegato.", + "example_sentence_english": "Liver cirrhosis is a serious liver disease.", + "pos": "noun", + "word_frequency": 22121 + }, + { + "word": "classicismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "classicism", + "romanization": "classicismo", + "example_sentence_native": "Il classicismo è un movimento artistico e culturale.", + "example_sentence_english": "Classicism is an artistic and cultural movement.", + "pos": "noun", + "word_frequency": 22124 + }, + { + "word": "coatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forced;compulsory", + "romanization": "coatto", + "example_sentence_native": "Ha dovuto subire un trattamento coatto.", + "example_sentence_english": "He had to undergo compulsory treatment.", + "pos": "adjective", + "word_frequency": 22126 + }, + { + "word": "commissariamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "receivership;commissioning", + "romanization": "commissariamento", + "example_sentence_native": "Il commissariamento dell'azienda è stato necessario per evitare il fallimento.", + "example_sentence_english": "The receivership of the company was necessary to avoid bankruptcy.", + "pos": "noun", + "word_frequency": 22127 + }, + { + "word": "confezionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "packaged;pre-packaged", + "romanization": "confezionato", + "example_sentence_native": "Preferisco il cibo fresco a quello confezionato.", + "example_sentence_english": "I prefer fresh food to packaged food.", + "pos": "adjective", + "word_frequency": 22129 + }, + { + "word": "congruo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congruent;appropriate;adequate", + "romanization": "congruo", + "example_sentence_native": "Ha ricevuto un risarcimento congruo al danno subito.", + "example_sentence_english": "He received compensation adequate to the damage suffered.", + "pos": "adjective", + "word_frequency": 22130 + }, + { + "word": "conguaglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adjustment;balance (payment)", + "romanization": "conguaglio", + "example_sentence_native": "A fine anno, riceverai il conguaglio delle tasse.", + "example_sentence_english": "At the end of the year, you will receive the tax adjustment.", + "pos": "noun", + "word_frequency": 22131 + }, + { + "word": "coniugazione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "conjugation", + "romanization": "coniugazione", + "example_sentence_native": "La coniugazione dei verbi italiani è complessa.", + "example_sentence_english": "The conjugation of Italian verbs is complex.", + "pos": "noun", + "word_frequency": 22132 + }, + { + "word": "conoscitivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cognitive;pertaining to knowledge", + "romanization": "conoscitivo", + "example_sentence_native": "Il processo conoscitivo è fondamentale per l'apprendimento.", + "example_sentence_english": "The cognitive process is fundamental for learning.", + "pos": "adjective", + "word_frequency": 22133 + }, + { + "word": "consultorio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "counseling center;clinic", + "romanization": "consultorio", + "example_sentence_native": "Il consultorio offre supporto psicologico e medico.", + "example_sentence_english": "The counseling center offers psychological and medical support.", + "pos": "noun", + "word_frequency": 22134 + }, + { + "word": "contendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contend;to dispute;to compete", + "romanization": "contendere", + "example_sentence_native": "Le due squadre si contenderanno il titolo.", + "example_sentence_english": "The two teams will contend for the title.", + "pos": "verb", + "word_frequency": 22135 + }, + { + "word": "coronato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowned;successful", + "romanization": "coronato", + "example_sentence_native": "Il suo sogno è stato coronato da successo.", + "example_sentence_english": "His dream was crowned with success.", + "pos": "adjective", + "word_frequency": 22136 + }, + { + "word": "corteggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to court;to woo", + "romanization": "corteggiare", + "example_sentence_native": "Ha passato mesi a corteggiare la sua amata.", + "example_sentence_english": "He spent months courting his beloved.", + "pos": "verb", + "word_frequency": 22137 + }, + { + "word": "cosmetica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cosmetics;cosmetic industry", + "romanization": "cosmetica", + "example_sentence_native": "L'industria della cosmetica è in continua crescita.", + "example_sentence_english": "The cosmetics industry is constantly growing.", + "pos": "noun", + "word_frequency": 22138 + }, + { + "word": "coup", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coup (d'état)", + "romanization": "coup", + "example_sentence_native": "Si teme un coup di stato nel paese.", + "example_sentence_english": "A coup d'état is feared in the country.", + "pos": "noun", + "word_frequency": 22139 + }, + { + "word": "coworking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coworking", + "romanization": "coworking", + "example_sentence_native": "Molti freelance scelgono uno spazio di coworking.", + "example_sentence_english": "Many freelancers choose a coworking space.", + "pos": "noun", + "word_frequency": 22141 + }, + { + "word": "culminante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "culminating;climactic", + "romanization": "culminante", + "example_sentence_native": "Il momento culminante dello spettacolo è stato il finale.", + "example_sentence_english": "The culminating moment of the show was the finale.", + "pos": "adjective", + "word_frequency": 22143 + }, + { + "word": "curcuma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turmeric", + "romanization": "curcuma", + "example_sentence_native": "La curcuma è usata in molte ricette indiane.", + "example_sentence_english": "Turmeric is used in many Indian recipes.", + "pos": "noun", + "word_frequency": 22144 + }, + { + "word": "danzatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dancer (male)", + "romanization": "danzatore", + "example_sentence_native": "Il danzatore ha eseguito un'ottima performance.", + "example_sentence_english": "The dancer performed excellently.", + "pos": "noun", + "word_frequency": 22148 + }, + { + "word": "deontologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deontology;ethics", + "romanization": "deontologia", + "example_sentence_native": "La deontologia professionale è fondamentale per gli avvocati.", + "example_sentence_english": "Professional deontology is fundamental for lawyers.", + "pos": "noun", + "word_frequency": 22154 + }, + { + "word": "dibattuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debated;controversial", + "romanization": "dibattuto", + "example_sentence_native": "È un argomento molto dibattuto.", + "example_sentence_english": "It is a much debated topic.", + "pos": "adjective", + "word_frequency": 22155 + }, + { + "word": "diciannovenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nineteen-year-old", + "romanization": "diciannovenne", + "example_sentence_native": "Mio fratello è un diciannovenne.", + "example_sentence_english": "My brother is a nineteen-year-old.", + "pos": "adjective", + "word_frequency": 22156 + }, + { + "word": "diciassettesimo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seventeenth", + "romanization": "diciassettesimo", + "example_sentence_native": "È arrivato diciassettesimo nella gara.", + "example_sentence_english": "He arrived seventeenth in the race.", + "pos": "adjective", + "word_frequency": 22157 + }, + { + "word": "dimenticanza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "oversight;forgetfulness", + "romanization": "dimenticanza", + "example_sentence_native": "È stata solo una dimenticanza.", + "example_sentence_english": "It was just an oversight.", + "pos": "noun", + "word_frequency": 22159 + }, + { + "word": "dirotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "profusely;heavily", + "romanization": "dirotto", + "example_sentence_native": "Ha pianto a dirotto dopo aver sentito la notizia.", + "example_sentence_english": "She cried profusely after hearing the news.", + "pos": "adjective", + "word_frequency": 22162 + }, + { + "word": "disgregazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disintegration;breakdown", + "romanization": "disgregazione", + "example_sentence_native": "La disgregazione sociale può portare a gravi problemi.", + "example_sentence_english": "Social disintegration can lead to serious problems.", + "pos": "noun", + "word_frequency": 22163 + }, + { + "word": "disintossicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "detoxification", + "romanization": "disintossicazione", + "example_sentence_native": "Ha iniziato un programma di disintossicazione.", + "example_sentence_english": "He started a detoxification program.", + "pos": "noun", + "word_frequency": 22164 + }, + { + "word": "disputato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disputed;contested", + "romanization": "disputato", + "example_sentence_native": "Il territorio è stato a lungo disputato tra i due paesi.", + "example_sentence_english": "The territory has long been disputed between the two countries.", + "pos": "adjective", + "word_frequency": 22165 + }, + { + "word": "distensione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "détente;relaxation", + "romanization": "distensione", + "example_sentence_native": "C'è stata una fase di distensione nelle relazioni internazionali.", + "example_sentence_english": "There was a phase of détente in international relations.", + "pos": "noun", + "word_frequency": 22166 + }, + { + "word": "eccedere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to exceed;to go over", + "romanization": "eccedere", + "example_sentence_native": "Non dovresti eccedere con i dolci.", + "example_sentence_english": "You shouldn't exceed with sweets.", + "pos": "verb", + "word_frequency": 22171 + }, + { + "word": "enclave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enclave", + "romanization": "enclave", + "example_sentence_native": "San Marino è un'enclave all'interno dell'Italia.", + "example_sentence_english": "San Marino is an enclave within Italy.", + "pos": "noun", + "word_frequency": 22175 + }, + { + "word": "endovenoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intravenous", + "romanization": "endovenoso", + "example_sentence_native": "Il farmaco viene somministrato per via endovenosa.", + "example_sentence_english": "The drug is administered intravenously.", + "pos": "adjective", + "word_frequency": 22176 + }, + { + "word": "espatrio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expatriation;emigration", + "romanization": "espatrio", + "example_sentence_native": "Molti giovani scelgono l'espatrio per trovare lavoro.", + "example_sentence_english": "Many young people choose expatriation to find work.", + "pos": "noun", + "word_frequency": 22178 + }, + { + "word": "espositore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhibitor;display stand", + "romanization": "espositore", + "example_sentence_native": "Il nuovo espositore ha attirato molti clienti.", + "example_sentence_english": "The new display stand attracted many customers.", + "pos": "noun", + "word_frequency": 22179 + }, + { + "word": "esternare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to express;to externalize", + "romanization": "esternare", + "example_sentence_native": "È importante esternare i propri sentimenti.", + "example_sentence_english": "It's important to express one's feelings.", + "pos": "verb", + "word_frequency": 22180 + }, + { + "word": "evacuato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evacuated", + "romanization": "evacuato", + "example_sentence_native": "La zona è stata evacuata a causa dell'alluvione.", + "example_sentence_english": "The area was evacuated due to the flood.", + "pos": "adjective", + "word_frequency": 22181 + }, + { + "word": "evaporazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evaporation", + "romanization": "evaporazione", + "example_sentence_native": "L'evaporazione dell'acqua è un processo naturale.", + "example_sentence_english": "Water evaporation is a natural process.", + "pos": "noun", + "word_frequency": 22182 + }, + { + "word": "farmacologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pharmacological", + "romanization": "farmacologico", + "example_sentence_native": "Ha ricevuto un trattamento farmacologico.", + "example_sentence_english": "He received a pharmacological treatment.", + "pos": "adjective", + "word_frequency": 22186 + }, + { + "word": "fenicio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Phoenician", + "romanization": "fenicio", + "example_sentence_native": "I Fenici erano un popolo di navigatori.", + "example_sentence_english": "The Phoenicians were a people of navigators.", + "pos": "noun", + "word_frequency": 22188 + }, + { + "word": "fighter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fighter", + "romanization": "fighter", + "example_sentence_native": "È un fighter di arti marziali miste.", + "example_sentence_english": "He is a mixed martial arts fighter.", + "pos": "noun", + "word_frequency": 22189 + }, + { + "word": "filastrocca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nursery rhyme;jingle", + "romanization": "filastrocca", + "example_sentence_native": "I bambini amano le filastrocche.", + "example_sentence_english": "Children love nursery rhymes.", + "pos": "noun", + "word_frequency": 22190 + }, + { + "word": "flacone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bottle;vial;flask", + "romanization": "flacone", + "example_sentence_native": "Ho comprato un flacone di shampoo.", + "example_sentence_english": "I bought a bottle of shampoo.", + "pos": "noun", + "word_frequency": 22191 + }, + { + "word": "fluente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fluent;flowing", + "romanization": "fluente", + "example_sentence_native": "Parla italiano in modo fluente.", + "example_sentence_english": "He speaks Italian fluently.", + "pos": "adjective", + "word_frequency": 22195 + }, + { + "word": "franchise", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "franchise", + "romanization": "franchise", + "example_sentence_native": "Ha aperto un nuovo negozio in franchising.", + "example_sentence_english": "He opened a new franchise store.", + "pos": "noun", + "word_frequency": 22197 + }, + { + "word": "gastrite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gastritis", + "romanization": "gastrite", + "example_sentence_native": "Il medico ha diagnosticato una gastrite acuta.", + "example_sentence_english": "The doctor diagnosed acute gastritis.", + "pos": "noun", + "word_frequency": 22202 + }, + { + "word": "gavetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mess tin;(colloquial) hard work;apprenticeship", + "romanization": "gavetta", + "example_sentence_native": "Ha fatto la gavetta in cucina prima di diventare chef.", + "example_sentence_english": "He did his apprenticeship in the kitchen before becoming a chef.", + "pos": "noun", + "word_frequency": 22203 + }, + { + "word": "gazza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "magpie", + "romanization": "gazza", + "example_sentence_native": "Una gazza ha rubato un oggetto lucido dal giardino.", + "example_sentence_english": "A magpie stole a shiny object from the garden.", + "pos": "noun", + "word_frequency": 22205 + }, + { + "word": "ghanese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Ghanaian", + "romanization": "ghanese", + "example_sentence_native": "Il nuovo studente è ghanese.", + "example_sentence_english": "The new student is Ghanaian.", + "pos": "noun", + "word_frequency": 22208 + }, + { + "word": "globalizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "globalized", + "romanization": "globalizzato", + "example_sentence_native": "Viviamo in un mondo sempre più globalizzato.", + "example_sentence_english": "We live in an increasingly globalized world.", + "pos": "adjective", + "word_frequency": 22209 + }, + { + "word": "granaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "granary;barn", + "romanization": "granaio", + "example_sentence_native": "Il contadino ha immagazzinato il grano nel granaio.", + "example_sentence_english": "The farmer stored the wheat in the granary.", + "pos": "noun", + "word_frequency": 22211 + }, + { + "word": "iconico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "iconic", + "romanization": "iconico", + "example_sentence_native": "La Torre Eiffel è un simbolo iconico di Parigi.", + "example_sentence_english": "The Eiffel Tower is an iconic symbol of Paris.", + "pos": "adjective", + "word_frequency": 22219 + }, + { + "word": "imbuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "funnel", + "romanization": "imbuto", + "example_sentence_native": "Usa l'imbuto per versare l'olio nella bottiglia.", + "example_sentence_english": "Use the funnel to pour the oil into the bottle.", + "pos": "noun", + "word_frequency": 22220 + }, + { + "word": "inceneritore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incinerator", + "romanization": "inceneritore", + "example_sentence_native": "La costruzione di un nuovo inceneritore ha scatenato proteste.", + "example_sentence_english": "The construction of a new incinerator sparked protests.", + "pos": "noun", + "word_frequency": 22222 + }, + { + "word": "incubazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "incubation", + "romanization": "incubazione", + "example_sentence_native": "Il periodo di incubazione del virus è di due settimane.", + "example_sentence_english": "The incubation period of the virus is two weeks.", + "pos": "noun", + "word_frequency": 22223 + }, + { + "word": "indigenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indigence;destitution", + "romanization": "indigenza", + "example_sentence_native": "Molte famiglie vivono in condizioni di indigenza.", + "example_sentence_english": "Many families live in conditions of indigence.", + "pos": "noun", + "word_frequency": 22224 + }, + { + "word": "infermità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infirmity;illness", + "romanization": "infermità", + "example_sentence_native": "L'anziano soffriva di varie infermità.", + "example_sentence_english": "The elderly man suffered from various infirmities.", + "pos": "noun", + "word_frequency": 22225 + }, + { + "word": "infettato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infected", + "romanization": "infettato", + "example_sentence_native": "Il paziente è stato infettato da un batterio.", + "example_sentence_english": "The patient was infected by a bacterium.", + "pos": "adjective", + "word_frequency": 22226 + }, + { + "word": "intaglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carving;engraving", + "romanization": "intaglio", + "example_sentence_native": "L'intaglio del legno è un'arte antica.", + "example_sentence_english": "Wood carving is an ancient art.", + "pos": "noun", + "word_frequency": 22227 + }, + { + "word": "intralcio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hindrance;obstacle", + "romanization": "intralcio", + "example_sentence_native": "La burocrazia è spesso un intralcio allo sviluppo.", + "example_sentence_english": "Bureaucracy is often a hindrance to development.", + "pos": "noun", + "word_frequency": 22228 + }, + { + "word": "irriconoscibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrecognizable", + "romanization": "irriconoscibile", + "example_sentence_native": "Dopo l'incidente, era quasi irriconoscibile.", + "example_sentence_english": "After the accident, he was almost unrecognizable.", + "pos": "adjective", + "word_frequency": 22230 + }, + { + "word": "irripetibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unrepeatable;unique", + "romanization": "irripetibile", + "example_sentence_native": "È stata un'occasione irripetibile.", + "example_sentence_english": "It was an unrepeatable opportunity.", + "pos": "adjective", + "word_frequency": 22231 + }, + { + "word": "lampone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "raspberry", + "romanization": "lampone", + "example_sentence_native": "Mi piacciono molto i lamponi freschi.", + "example_sentence_english": "I really like fresh raspberries.", + "pos": "noun", + "word_frequency": 22239 + }, + { + "word": "maneggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "riding school", + "romanization": "maneggio", + "example_sentence_native": "Andiamo al maneggio per prendere lezioni di equitazione.", + "example_sentence_english": "Let's go to the riding school for horse riding lessons.", + "pos": "noun", + "word_frequency": 22244 + }, + { + "word": "maniero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manor", + "romanization": "maniero", + "example_sentence_native": "Il vecchio maniero era circondato da un fossato.", + "example_sentence_english": "The old manor was surrounded by a moat.", + "pos": "noun", + "word_frequency": 22245 + }, + { + "word": "massaggiatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "masseur", + "romanization": "massaggiatore", + "example_sentence_native": "Ho prenotato un appuntamento con il massaggiatore.", + "example_sentence_english": "I booked an appointment with the masseur.", + "pos": "noun", + "word_frequency": 22247 + }, + { + "word": "misfatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misdeed", + "romanization": "misfatto", + "example_sentence_native": "Il detective indagò sul misfatto.", + "example_sentence_english": "The detective investigated the misdeed.", + "pos": "noun", + "word_frequency": 22252 + }, + { + "word": "mobbing", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mobbing;workplace bullying", + "romanization": "mobbing", + "example_sentence_native": "Il mobbing sul lavoro è un problema serio.", + "example_sentence_english": "Workplace mobbing is a serious problem.", + "pos": "noun", + "word_frequency": 22254 + }, + { + "word": "molestato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harassed", + "romanization": "molestato", + "example_sentence_native": "Si sentiva molestato dalla costante attenzione.", + "example_sentence_english": "He felt harassed by the constant attention.", + "pos": "adjective", + "word_frequency": 22255 + }, + { + "word": "mongolfiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hot air balloon", + "romanization": "mongolfiera", + "example_sentence_native": "Abbiamo visto una mongolfiera volare nel cielo.", + "example_sentence_english": "We saw a hot air balloon flying in the sky.", + "pos": "noun", + "word_frequency": 22257 + }, + { + "word": "morboso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morbid;unhealthy", + "romanization": "morboso", + "example_sentence_native": "Aveva un interesse morboso per i dettagli macabri.", + "example_sentence_english": "He had a morbid interest in gruesome details.", + "pos": "adjective", + "word_frequency": 22260 + }, + { + "word": "neoplasia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "neoplasm;tumor", + "romanization": "neoplasia", + "example_sentence_native": "La diagnosi ha rivelato una neoplasia.", + "example_sentence_english": "The diagnosis revealed a neoplasm.", + "pos": "noun", + "word_frequency": 22272 + }, + { + "word": "notariato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notary profession", + "romanization": "notariato", + "example_sentence_native": "Il notariato svolge un ruolo cruciale nelle transazioni immobiliari.", + "example_sentence_english": "The notary profession plays a crucial role in real estate transactions.", + "pos": "noun", + "word_frequency": 22274 + }, + { + "word": "nubile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unmarried (female)", + "romanization": "nubile", + "example_sentence_native": "Sullo stato civile, ha dichiarato di essere nubile.", + "example_sentence_english": "On her civil status, she declared herself to be unmarried.", + "pos": "adjective", + "word_frequency": 22276 + }, + { + "word": "obelisco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obelisk", + "romanization": "obelisco", + "example_sentence_native": "L'obelisco di Piazza San Pietro è imponente.", + "example_sentence_english": "The obelisk in St. Peter's Square is imposing.", + "pos": "noun", + "word_frequency": 22277 + }, + { + "word": "origami", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "origami", + "romanization": "origami", + "example_sentence_native": "Ha imparato a fare un cigno di origami.", + "example_sentence_english": "He learned to make an origami swan.", + "pos": "noun", + "word_frequency": 22285 + }, + { + "word": "orticello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small vegetable garden", + "romanization": "orticello", + "example_sentence_native": "Coltiva le sue verdure nel suo orticello.", + "example_sentence_english": "He grows his own vegetables in his small vegetable garden.", + "pos": "noun", + "word_frequency": 22286 + }, + { + "word": "passero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sparrow", + "romanization": "passero", + "example_sentence_native": "Un passero si è posato sul davanzale della finestra.", + "example_sentence_english": "A sparrow landed on the windowsill.", + "pos": "noun", + "word_frequency": 22291 + }, + { + "word": "patrocinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sponsored", + "romanization": "patrocinato", + "example_sentence_native": "L'evento è stato patrocinato dal comune.", + "example_sentence_english": "The event was sponsored by the municipality.", + "pos": "adjective", + "word_frequency": 22292 + }, + { + "word": "patteggiamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plea bargain", + "romanization": "patteggiamento", + "example_sentence_native": "Ha accettato il patteggiamento per evitare il processo.", + "example_sentence_english": "He accepted the plea bargain to avoid the trial.", + "pos": "noun", + "word_frequency": 22293 + }, + { + "word": "percepibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perceptible", + "romanization": "percepibile", + "example_sentence_native": "C'era un leggero odore percepibile nell'aria.", + "example_sentence_english": "There was a slight perceptible smell in the air.", + "pos": "adjective", + "word_frequency": 22294 + }, + { + "word": "pestilenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pestilence", + "romanization": "pestilenza", + "example_sentence_native": "La città fu colpita da una grave pestilenza.", + "example_sentence_english": "The city was struck by a severe pestilence.", + "pos": "noun", + "word_frequency": 22296 + }, + { + "word": "pistone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piston", + "romanization": "pistone", + "example_sentence_native": "Il motore ha quattro pistoni.", + "example_sentence_english": "The engine has four pistons.", + "pos": "noun", + "word_frequency": 22298 + }, + { + "word": "precipitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rushed", + "romanization": "precipitato", + "example_sentence_native": "La sua decisione è stata troppo precipitata.", + "example_sentence_english": "His decision was too rushed.", + "pos": "adjective", + "word_frequency": 22302 + }, + { + "word": "presidiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to guard", + "romanization": "presidiare", + "example_sentence_native": "Le forze dell'ordine sono state chiamate a presidiare la zona.", + "example_sentence_english": "The police forces were called to guard the area.", + "pos": "verb", + "word_frequency": 22303 + }, + { + "word": "prim'ordine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "first-rate", + "romanization": "prim'ordine", + "example_sentence_native": "È un ristorante di prim'ordine.", + "example_sentence_english": "It's a first-rate restaurant.", + "pos": "adjective", + "word_frequency": 22304 + }, + { + "word": "profumeria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "perfume shop", + "romanization": "profumeria", + "example_sentence_native": "Ho comprato un nuovo profumo in profumeria.", + "example_sentence_english": "I bought a new perfume at the perfume shop.", + "pos": "noun", + "word_frequency": 22307 + }, + { + "word": "proteico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "protein-rich", + "romanization": "proteico", + "example_sentence_native": "Gli alimenti proteici sono importanti per la dieta.", + "example_sentence_english": "Protein-rich foods are important for the diet.", + "pos": "adjective", + "word_frequency": 22308 + }, + { + "word": "punitivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "punitive", + "romanization": "punitivo", + "example_sentence_native": "Hanno imposto misure punitive severe.", + "example_sentence_english": "They imposed severe punitive measures.", + "pos": "adjective", + "word_frequency": 22310 + }, + { + "word": "putto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cherub", + "romanization": "putto", + "example_sentence_native": "Il soffitto era decorato con affreschi di angeli e putti.", + "example_sentence_english": "The ceiling was decorated with frescoes of angels and cherubs.", + "pos": "noun", + "word_frequency": 22311 + }, + { + "word": "quarantadue", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "forty-two", + "romanization": "quarantadue", + "example_sentence_native": "Ho quarantadue anni.", + "example_sentence_english": "I am forty-two years old.", + "pos": "adjective", + "word_frequency": 22312 + }, + { + "word": "resuscitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resurrected", + "romanization": "resuscitato", + "example_sentence_native": "Si sentiva come resuscitato dopo il lungo riposo.", + "example_sentence_english": "He felt resurrected after the long rest.", + "pos": "adjective", + "word_frequency": 22315 + }, + { + "word": "retrograda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrograde", + "romanization": "retrograda", + "example_sentence_native": "Le sue idee sono considerate molto retrograde.", + "example_sentence_english": "His ideas are considered very retrograde.", + "pos": "adjective", + "word_frequency": 22316 + }, + { + "word": "revolver", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revolver", + "romanization": "revolver", + "example_sentence_native": "Il detective estrasse il suo revolver.", + "example_sentence_english": "The detective drew his revolver.", + "pos": "noun", + "word_frequency": 22317 + }, + { + "word": "riaffermare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reaffirm", + "romanization": "riaffermare", + "example_sentence_native": "È importante riaffermare i nostri valori.", + "example_sentence_english": "It's important to reaffirm our values.", + "pos": "verb", + "word_frequency": 22319 + }, + { + "word": "ricongiungimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reunion;reunification", + "romanization": "ricongiungimento", + "example_sentence_native": "Il ricongiungimento familiare è un diritto.", + "example_sentence_english": "Family reunification is a right.", + "pos": "noun", + "word_frequency": 22320 + }, + { + "word": "ridefinire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to redefine", + "romanization": "ridefinire", + "example_sentence_native": "Dobbiamo ridefinire i nostri obiettivi.", + "example_sentence_english": "We need to redefine our goals.", + "pos": "verb", + "word_frequency": 22321 + }, + { + "word": "riferibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referable;attributable", + "romanization": "riferibile", + "example_sentence_native": "Questo problema è riferibile a una cattiva gestione.", + "example_sentence_english": "This problem is attributable to poor management.", + "pos": "adjective", + "word_frequency": 22322 + }, + { + "word": "rimbalzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bounce;to rebound", + "romanization": "rimbalzare", + "example_sentence_native": "La palla ha rimbalzato sul muro.", + "example_sentence_english": "The ball bounced off the wall.", + "pos": "verb", + "word_frequency": 22323 + }, + { + "word": "rimpiazzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "replacement;substitute", + "romanization": "rimpiazzo", + "example_sentence_native": "Abbiamo bisogno di un rimpiazzo per il collega assente.", + "example_sentence_english": "We need a replacement for the absent colleague.", + "pos": "noun", + "word_frequency": 22324 + }, + { + "word": "rispondente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corresponding;compliant", + "romanization": "rispondente", + "example_sentence_native": "Il prodotto non è rispondente alle specifiche.", + "example_sentence_english": "The product is not compliant with the specifications.", + "pos": "adjective", + "word_frequency": 22325 + }, + { + "word": "scacciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "driven out;expelled", + "romanization": "scacciato", + "example_sentence_native": "Fu scacciato dal villaggio.", + "example_sentence_english": "He was driven out of the village.", + "pos": "adjective", + "word_frequency": 22328 + }, + { + "word": "scodella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bowl", + "romanization": "scodella", + "example_sentence_native": "Ho mangiato la zuppa in una scodella.", + "example_sentence_english": "I ate the soup in a bowl.", + "pos": "noun", + "word_frequency": 22329 + }, + { + "word": "sconfinato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boundless;immense", + "romanization": "sconfinato", + "example_sentence_native": "Ammirava il cielo sconfinato.", + "example_sentence_english": "He admired the boundless sky.", + "pos": "adjective", + "word_frequency": 22330 + }, + { + "word": "sensitivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensitive;psychic", + "romanization": "sensitivo", + "example_sentence_native": "È una persona molto sensitiva.", + "example_sentence_english": "She is a very sensitive person.", + "pos": "adjective", + "word_frequency": 22332 + }, + { + "word": "sessantina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "around sixty;a group of sixty", + "romanization": "sessantina", + "example_sentence_native": "Aveva una sessantina d'anni.", + "example_sentence_english": "He was around sixty years old.", + "pos": "noun", + "word_frequency": 22334 + }, + { + "word": "sfinge", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sphinx", + "romanization": "sfinge", + "example_sentence_native": "La Sfinge di Giza è imponente.", + "example_sentence_english": "The Sphinx of Giza is imposing.", + "pos": "noun", + "word_frequency": 22335 + }, + { + "word": "sfuggente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elusive;fleeting", + "romanization": "sfuggente", + "example_sentence_native": "La verità rimane sfuggente.", + "example_sentence_english": "The truth remains elusive.", + "pos": "adjective", + "word_frequency": 22336 + }, + { + "word": "siluro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torpedo;wels catfish", + "romanization": "siluro", + "example_sentence_native": "Il sottomarino ha lanciato un siluro.", + "example_sentence_english": "The submarine launched a torpedo.", + "pos": "noun", + "word_frequency": 22337 + }, + { + "word": "sobre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sober;restrained", + "romanization": "sobre", + "example_sentence_native": "Il suo stile è molto sobrio ed elegante.", + "example_sentence_english": "Her style is very sober and elegant.", + "pos": "adjective", + "word_frequency": 22341 + }, + { + "word": "soletta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insole;sole (of a shoe)", + "romanization": "soletta", + "example_sentence_native": "Ho messo delle nuove solette nelle scarpe.", + "example_sentence_english": "I put new insoles in my shoes.", + "pos": "noun", + "word_frequency": 22343 + }, + { + "word": "soprattuto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "above all;especially", + "romanization": "soprattutto", + "example_sentence_native": "Mi piace leggere, soprattutto romanzi storici.", + "example_sentence_english": "I like reading, especially historical novels.", + "pos": "adverb", + "word_frequency": 22344 + }, + { + "word": "spacciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "doomed;hopeless", + "romanization": "spacciato", + "example_sentence_native": "Si sentiva spacciato dopo la diagnosi.", + "example_sentence_english": "He felt doomed after the diagnosis.", + "pos": "adjective", + "word_frequency": 22346 + }, + { + "word": "speculativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "speculative", + "romanization": "speculativo", + "example_sentence_native": "Ha fatto un investimento speculativo.", + "example_sentence_english": "He made a speculative investment.", + "pos": "adjective", + "word_frequency": 22348 + }, + { + "word": "spianata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "esplanade;flat area", + "romanization": "spianata", + "example_sentence_native": "La spianata offre una vista magnifica.", + "example_sentence_english": "The esplanade offers a magnificent view.", + "pos": "noun", + "word_frequency": 22349 + }, + { + "word": "spuntato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blunt;appeared", + "romanization": "spuntato", + "example_sentence_native": "La matita era spuntata.", + "example_sentence_english": "The pencil was blunt.", + "pos": "adjective", + "word_frequency": 22350 + }, + { + "word": "sterno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sternum;breastbone", + "romanization": "sterno", + "example_sentence_native": "Il dolore era localizzato allo sterno.", + "example_sentence_english": "The pain was localized to the sternum.", + "pos": "noun", + "word_frequency": 22352 + }, + { + "word": "stremo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "limit;extreme", + "romanization": "stremo", + "example_sentence_native": "Erano allo stremo delle forze.", + "example_sentence_english": "They were at the end of their strength.", + "pos": "noun", + "word_frequency": 22355 + }, + { + "word": "struggente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heart-wrenching;poignant", + "romanization": "struggente", + "example_sentence_native": "Ha scritto una lettera struggente.", + "example_sentence_english": "He wrote a heart-wrenching letter.", + "pos": "adjective", + "word_frequency": 22356 + }, + { + "word": "subbuglio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "turmoil;commotion", + "romanization": "subbuglio", + "example_sentence_native": "La notizia ha creato subbuglio.", + "example_sentence_english": "The news created turmoil.", + "pos": "noun", + "word_frequency": 22357 + }, + { + "word": "suk", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "souk;market (Arabic market)", + "romanization": "suk", + "example_sentence_native": "Abbiamo visitato il suk di Marrakech.", + "example_sentence_english": "We visited the souk in Marrakech.", + "pos": "noun", + "word_frequency": 22358 + }, + { + "word": "svanito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vanished;faded", + "romanization": "svanito", + "example_sentence_native": "Il suo sorriso era svanito.", + "example_sentence_english": "Her smile had vanished.", + "pos": "adjective", + "word_frequency": 22360 + }, + { + "word": "svuotamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emptying;evacuation", + "romanization": "svuotamento", + "example_sentence_native": "Lo svuotamento del serbatoio richiederà tempo.", + "example_sentence_english": "The emptying of the tank will take time.", + "pos": "noun", + "word_frequency": 22361 + }, + { + "word": "tacca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "notch;mark", + "romanization": "tacca", + "example_sentence_native": "Ha fatto una tacca sul bastone per segnare i giorni.", + "example_sentence_english": "He made a notch on the stick to mark the days.", + "pos": "noun", + "word_frequency": 22362 + }, + { + "word": "talismano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "talisman;charm", + "romanization": "talismano", + "example_sentence_native": "Credeva che il suo talismano gli portasse fortuna.", + "example_sentence_english": "He believed his talisman brought him luck.", + "pos": "noun", + "word_frequency": 22363 + }, + { + "word": "targato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "licensed;branded", + "romanization": "targato", + "example_sentence_native": "Ho visto una macchina targata Milano.", + "example_sentence_english": "I saw a car licensed in Milan.", + "pos": "adjective", + "word_frequency": 22364 + }, + { + "word": "tassare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to tax", + "romanization": "tassare", + "example_sentence_native": "Il governo ha deciso di tassare i beni di lusso.", + "example_sentence_english": "The government decided to tax luxury goods.", + "pos": "verb", + "word_frequency": 22365 + }, + { + "word": "tempestività", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "timeliness;promptness", + "romanization": "tempestività", + "example_sentence_native": "La tempestività della risposta è stata cruciale.", + "example_sentence_english": "The timeliness of the response was crucial.", + "pos": "noun", + "word_frequency": 22369 + }, + { + "word": "tifone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typhoon", + "romanization": "tifone", + "example_sentence_native": "Il tifone ha causato gravi danni alla costa.", + "example_sentence_english": "The typhoon caused severe damage to the coast.", + "pos": "noun", + "word_frequency": 22372 + }, + { + "word": "toponomastica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "toponymy", + "romanization": "toponomastica", + "example_sentence_native": "La toponomastica è lo studio dei nomi di luogo.", + "example_sentence_english": "Toponymy is the study of place names.", + "pos": "noun", + "word_frequency": 22373 + }, + { + "word": "toppa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patch", + "romanization": "toppa", + "example_sentence_native": "Ha messo una toppa sui jeans strappati.", + "example_sentence_english": "She put a patch on the torn jeans.", + "pos": "noun", + "word_frequency": 22374 + }, + { + "word": "tostare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to toast;to roast", + "romanization": "tostare", + "example_sentence_native": "Mi piace tostare il pane per colazione.", + "example_sentence_english": "I like to toast bread for breakfast.", + "pos": "verb", + "word_frequency": 22376 + }, + { + "word": "trascendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transcendent", + "romanization": "trascendente", + "example_sentence_native": "Ha parlato di un'esperienza trascendente.", + "example_sentence_english": "He spoke of a transcendent experience.", + "pos": "adjective", + "word_frequency": 22377 + }, + { + "word": "trasmissibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transmissible;communicable", + "romanization": "trasmissibile", + "example_sentence_native": "Questa malattia è altamente trasmissibile.", + "example_sentence_english": "This disease is highly transmissible.", + "pos": "adjective", + "word_frequency": 22378 + }, + { + "word": "traumatizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to traumatize", + "romanization": "traumatizzare", + "example_sentence_native": "L'incidente lo ha traumatizzato profondamente.", + "example_sentence_english": "The accident traumatized him deeply.", + "pos": "verb", + "word_frequency": 22379 + }, + { + "word": "trippa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tripe", + "romanization": "trippa", + "example_sentence_native": "La trippa alla romana è un piatto tradizionale.", + "example_sentence_english": "Roman-style tripe is a traditional dish.", + "pos": "noun", + "word_frequency": 22380 + }, + { + "word": "trucchetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trick;little trick", + "romanization": "trucchetto", + "example_sentence_native": "Conosco un trucchetto per aprire questa serratura.", + "example_sentence_english": "I know a trick to open this lock.", + "pos": "noun", + "word_frequency": 22381 + }, + { + "word": "unicum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unicum;unique item", + "romanization": "unicum", + "example_sentence_native": "Questo dipinto è un vero unicum nella sua collezione.", + "example_sentence_english": "This painting is a true unicum in his collection.", + "pos": "noun", + "word_frequency": 22384 + }, + { + "word": "utility", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utility;usefulness", + "romanization": "utility", + "example_sentence_native": "L'utility di questo software è notevole.", + "example_sentence_english": "The utility of this software is remarkable.", + "pos": "noun", + "word_frequency": 22385 + }, + { + "word": "vergare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to write;to pen", + "romanization": "vergare", + "example_sentence_native": "Ha vergato alcune righe sul suo diario.", + "example_sentence_english": "He penned a few lines in his diary.", + "pos": "verb", + "word_frequency": 22387 + }, + { + "word": "vestibolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vestibule;entrance hall", + "romanization": "vestibolo", + "example_sentence_native": "Ci siamo incontrati nel vestibolo del teatro.", + "example_sentence_english": "We met in the vestibule of the theater.", + "pos": "noun", + "word_frequency": 22388 + }, + { + "word": "vichingo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Viking", + "romanization": "vichingo", + "example_sentence_native": "I vichinghi erano abili navigatori.", + "example_sentence_english": "The Vikings were skilled navigators.", + "pos": "noun", + "word_frequency": 22392 + }, + { + "word": "visiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "visor", + "romanization": "visiera", + "example_sentence_native": "Ha abbassato la visiera del casco.", + "example_sentence_english": "He lowered the visor of his helmet.", + "pos": "noun", + "word_frequency": 22394 + }, + { + "word": "accorciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to shorten", + "romanization": "accorciare", + "example_sentence_native": "Devi accorciare i pantaloni, sono troppo lunghi.", + "example_sentence_english": "You need to shorten the trousers, they are too long.", + "pos": "verb", + "word_frequency": 22401 + }, + { + "word": "affilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sharpen", + "romanization": "affilare", + "example_sentence_native": "È importante affilare bene il coltello prima di usarlo.", + "example_sentence_english": "It's important to sharpen the knife well before using it.", + "pos": "verb", + "word_frequency": 22402 + }, + { + "word": "affumicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to smoke (food)", + "romanization": "affumicare", + "example_sentence_native": "Voglio affumicare il salmone per la cena di stasera.", + "example_sentence_english": "I want to smoke the salmon for dinner tonight.", + "pos": "verb", + "word_frequency": 22403 + }, + { + "word": "aggrappare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cling;to grasp", + "romanization": "aggrappare", + "example_sentence_native": "Il bambino si è aggrappato alla gamba della madre per paura.", + "example_sentence_english": "The child clung to his mother's leg out of fear.", + "pos": "verb", + "word_frequency": 22404 + }, + { + "word": "aggregatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aggregator", + "romanization": "aggregatore", + "example_sentence_native": "Uso un aggregatore di notizie per rimanere sempre aggiornato.", + "example_sentence_english": "I use a news aggregator to stay always updated.", + "pos": "noun", + "word_frequency": 22406 + }, + { + "word": "alato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winged", + "romanization": "alato", + "example_sentence_native": "Il cavallo alato Pegaso è una figura mitologica.", + "example_sentence_english": "The winged horse Pegasus is a mythological figure.", + "pos": "adjective", + "word_frequency": 22408 + }, + { + "word": "angolino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little corner", + "romanization": "angolino", + "example_sentence_native": "C'è un piccolo angolino tranquillo dove leggere.", + "example_sentence_english": "There's a quiet little corner where to read.", + "pos": "noun", + "word_frequency": 22416 + }, + { + "word": "apostrofo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "apostrophe", + "romanization": "apostrofo", + "example_sentence_native": "L'apostrofo si usa per indicare l'elisione.", + "example_sentence_english": "The apostrophe is used to indicate elision.", + "pos": "noun", + "word_frequency": 22418 + }, + { + "word": "appiglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handhold;foothold;pretext", + "romanization": "appiglio", + "example_sentence_native": "Non c'era nessun appiglio per arrampicarsi sulla parete.", + "example_sentence_english": "There was no handhold to climb the wall.", + "pos": "noun", + "word_frequency": 22419 + }, + { + "word": "atipico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atypical", + "romanization": "atipico", + "example_sentence_native": "Il suo comportamento è stato piuttosto atipico per lui.", + "example_sentence_english": "His behavior was rather atypical for him.", + "pos": "adjective", + "word_frequency": 22420 + }, + { + "word": "automotive", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automotive", + "romanization": "automotive", + "example_sentence_native": "L'industria automotive sta vivendo una grande trasformazione.", + "example_sentence_english": "The automotive industry is undergoing a major transformation.", + "pos": "adjective", + "word_frequency": 22421 + }, + { + "word": "autosufficienza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-sufficiency", + "romanization": "autosufficienza", + "example_sentence_native": "Molte comunità rurali cercano l'autosufficienza energetica.", + "example_sentence_english": "Many rural communities seek energy self-sufficiency.", + "pos": "noun", + "word_frequency": 22422 + }, + { + "word": "balsamico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "balsamic;soothing", + "romanization": "balsamico", + "example_sentence_native": "Mi piace molto l'aceto balsamico sull'insalata.", + "example_sentence_english": "I really like balsamic vinegar on salad.", + "pos": "adjective", + "word_frequency": 22423 + }, + { + "word": "becero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vulgar;coarse;boorish", + "romanization": "becero", + "example_sentence_native": "Ha fatto un commento becero che ha offeso tutti.", + "example_sentence_english": "He made a vulgar comment that offended everyone.", + "pos": "adjective", + "word_frequency": 22425 + }, + { + "word": "bibliografico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bibliographic", + "romanization": "bibliografico", + "example_sentence_native": "La ricerca richiede un'ampia consultazione bibliografica.", + "example_sentence_english": "The research requires extensive bibliographic consultation.", + "pos": "adjective", + "word_frequency": 22427 + }, + { + "word": "bicchierino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small glass;shot glass", + "romanization": "bicchierino", + "example_sentence_native": "Prendiamo un bicchierino di limoncello dopo cena.", + "example_sentence_english": "Let's have a small glass of limoncello after dinner.", + "pos": "noun", + "word_frequency": 22428 + }, + { + "word": "bleu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blue (often for cheese)", + "romanization": "bleu", + "example_sentence_native": "Mi piace il formaggio erborinato, quello con le venature bleu.", + "example_sentence_english": "I like blue cheese, the one with blue veins.", + "pos": "adjective", + "word_frequency": 22430 + }, + { + "word": "botteghino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "box office;ticket office", + "romanization": "botteghino", + "example_sentence_native": "Abbiamo comprato i biglietti per il concerto al botteghino.", + "example_sentence_english": "We bought the concert tickets at the box office.", + "pos": "noun", + "word_frequency": 22432 + }, + { + "word": "briscola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "briscola (a card game)", + "romanization": "briscola", + "example_sentence_native": "Dopo cena, giochiamo sempre una partita a briscola.", + "example_sentence_english": "After dinner, we always play a game of briscola.", + "pos": "noun", + "word_frequency": 22434 + }, + { + "word": "brufolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pimple;zit", + "romanization": "brufolo", + "example_sentence_native": "Mi è spuntato un brufolo proprio sul naso.", + "example_sentence_english": "I got a pimple right on my nose.", + "pos": "noun", + "word_frequency": 22435 + }, + { + "word": "buonumore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "good mood", + "romanization": "buonumore", + "example_sentence_native": "Oggi sono di buonumore, il sole splende.", + "example_sentence_english": "Today I'm in a good mood, the sun is shining.", + "pos": "noun", + "word_frequency": 22437 + }, + { + "word": "cabinet", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabinet (government body)", + "romanization": "cabinet", + "example_sentence_native": "Il nuovo cabinet si è riunito per la prima volta.", + "example_sentence_english": "The new cabinet met for the first time.", + "pos": "noun", + "word_frequency": 22440 + }, + { + "word": "cablaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wiring", + "romanization": "cablaggio", + "example_sentence_native": "Il cablaggio dell'edificio è stato completato.", + "example_sentence_english": "The building's wiring has been completed.", + "pos": "noun", + "word_frequency": 22441 + }, + { + "word": "cacio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheese (often hard cheese)", + "romanization": "cacio", + "example_sentence_native": "Mi piace il cacio e pepe.", + "example_sentence_english": "I like cacio e pepe.", + "pos": "noun", + "word_frequency": 22442 + }, + { + "word": "came", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cam (mechanical part)", + "romanization": "came", + "example_sentence_native": "La camma controlla il movimento della valvola.", + "example_sentence_english": "The cam controls the valve's movement.", + "pos": "noun", + "word_frequency": 22443 + }, + { + "word": "cannuccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "straw (for drinking)", + "romanization": "cannuccia", + "example_sentence_native": "Vorrei una cannuccia per la mia bibita.", + "example_sentence_english": "I would like a straw for my drink.", + "pos": "noun", + "word_frequency": 22445 + }, + { + "word": "canottaggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rowing", + "romanization": "canottaggio", + "example_sentence_native": "Il canottaggio è uno sport olimpico.", + "example_sentence_english": "Rowing is an Olympic sport.", + "pos": "noun", + "word_frequency": 22446 + }, + { + "word": "caritatevole", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "charitable", + "romanization": "caritatevole", + "example_sentence_native": "È una persona molto caritatevole.", + "example_sentence_english": "She is a very charitable person.", + "pos": "adjective", + "word_frequency": 22447 + }, + { + "word": "cartilagine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cartilage", + "romanization": "cartilagine", + "example_sentence_native": "La cartilagine protegge le articolazioni.", + "example_sentence_english": "Cartilage protects the joints.", + "pos": "noun", + "word_frequency": 22449 + }, + { + "word": "cartoncino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cardstock;thin cardboard", + "romanization": "cartoncino", + "example_sentence_native": "Ho usato un cartoncino per fare il biglietto.", + "example_sentence_english": "I used cardstock to make the card.", + "pos": "noun", + "word_frequency": 22450 + }, + { + "word": "cencio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rag;cloth", + "romanization": "cencio", + "example_sentence_native": "Usa un cencio per pulire il tavolo.", + "example_sentence_english": "Use a rag to clean the table.", + "pos": "noun", + "word_frequency": 22451 + }, + { + "word": "censire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to survey;to census;to register", + "romanization": "censire", + "example_sentence_native": "Il governo deve censire la popolazione.", + "example_sentence_english": "The government must survey the population.", + "pos": "verb", + "word_frequency": 22452 + }, + { + "word": "centauro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centaur", + "romanization": "centauro", + "example_sentence_native": "Il centauro è una creatura mitologica.", + "example_sentence_english": "The centaur is a mythological creature.", + "pos": "noun", + "word_frequency": 22453 + }, + { + "word": "cetaceo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cetacean", + "romanization": "cetaceo", + "example_sentence_native": "La balena è un cetaceo.", + "example_sentence_english": "The whale is a cetacean.", + "pos": "noun", + "word_frequency": 22456 + }, + { + "word": "chart", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chart;graph", + "romanization": "chart", + "example_sentence_native": "Abbiamo analizzato il chart delle vendite.", + "example_sentence_english": "We analyzed the sales chart.", + "pos": "noun", + "word_frequency": 22457 + }, + { + "word": "chiacchera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chat;gossip;small talk", + "romanization": "chiacchera", + "example_sentence_native": "Mi piace fare due chiacchere con gli amici.", + "example_sentence_english": "I like to have a chat with friends.", + "pos": "noun", + "word_frequency": 22458 + }, + { + "word": "cingolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "track (of a tank;tractor);caterpillar track", + "romanization": "cingolo", + "example_sentence_native": "Il carro armato si muove sui cingoli.", + "example_sentence_english": "The tank moves on its tracks.", + "pos": "noun", + "word_frequency": 22459 + }, + { + "word": "conserva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "preserve;canned food;jam", + "romanization": "conserva", + "example_sentence_native": "Ho preparato una conserva di pomodoro.", + "example_sentence_english": "I prepared a tomato preserve.", + "pos": "noun", + "word_frequency": 22462 + }, + { + "word": "contromano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "against the traffic;wrong way", + "romanization": "contromano", + "example_sentence_native": "Ha guidato contromano per sbaglio.", + "example_sentence_english": "He drove the wrong way by mistake.", + "pos": "adverb", + "word_frequency": 22463 + }, + { + "word": "cosmologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cosmology", + "romanization": "cosmologia", + "example_sentence_native": "La cosmologia studia l'origine dell'universo.", + "example_sentence_english": "Cosmology studies the origin of the universe.", + "pos": "noun", + "word_frequency": 22464 + }, + { + "word": "cronistoria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chronicle;historical account", + "romanization": "cronistoria", + "example_sentence_native": "Ha scritto una cronistoria dettagliata degli eventi.", + "example_sentence_english": "He wrote a detailed chronicle of the events.", + "pos": "noun", + "word_frequency": 22465 + }, + { + "word": "davanzale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "windowsill", + "romanization": "davanzale", + "example_sentence_native": "Ho messo i fiori sul davanzale.", + "example_sentence_english": "I put the flowers on the windowsill.", + "pos": "noun", + "word_frequency": 22471 + }, + { + "word": "degenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hospital stay;recovery period", + "romanization": "degenza", + "example_sentence_native": "La sua degenza in ospedale è durata una settimana.", + "example_sentence_english": "His hospital stay lasted a week.", + "pos": "noun", + "word_frequency": 22472 + }, + { + "word": "delimitazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delimitation;boundary;demarcation", + "romanization": "delimitazione", + "example_sentence_native": "È necessaria una chiara delimitazione dei confini.", + "example_sentence_english": "A clear delimitation of the boundaries is necessary.", + "pos": "noun", + "word_frequency": 22473 + }, + { + "word": "deprimere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to depress", + "romanization": "deprimere", + "example_sentence_native": "La notizia lo ha fatto deprimere.", + "example_sentence_english": "The news made him depressed.", + "pos": "verb", + "word_frequency": 22484 + }, + { + "word": "devolvere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to devolve;to donate", + "romanization": "devolvere", + "example_sentence_native": "Hanno deciso di devolvere i profitti in beneficenza.", + "example_sentence_english": "They decided to donate the profits to charity.", + "pos": "verb", + "word_frequency": 22485 + }, + { + "word": "diapositiva", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slide (for projection)", + "romanization": "diapositiva", + "example_sentence_native": "La presentazione era piena di belle diapositive.", + "example_sentence_english": "The presentation was full of beautiful slides.", + "pos": "noun", + "word_frequency": 22486 + }, + { + "word": "dimostrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstrator;protester", + "romanization": "dimostrante", + "example_sentence_native": "I dimostranti si sono riuniti in piazza.", + "example_sentence_english": "The demonstrators gathered in the square.", + "pos": "noun", + "word_frequency": 22487 + }, + { + "word": "disinfettante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "disinfectant (adj)", + "romanization": "disinfettante", + "example_sentence_native": "È necessario usare un prodotto disinfettante per pulire la superficie.", + "example_sentence_english": "It is necessary to use a disinfectant product to clean the surface.", + "pos": "adjective", + "word_frequency": 22488 + }, + { + "word": "dislocazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dislocation;displacement", + "romanization": "dislocazione", + "example_sentence_native": "La dislocazione delle truppe è stata strategica.", + "example_sentence_english": "The displacement of the troops was strategic.", + "pos": "noun", + "word_frequency": 22489 + }, + { + "word": "disonestà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dishonesty", + "romanization": "disonestà", + "example_sentence_native": "La sua disonestà è stata scoperta.", + "example_sentence_english": "His dishonesty was discovered.", + "pos": "noun", + "word_frequency": 22490 + }, + { + "word": "disordinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mess up;to disarrange", + "romanization": "disordinare", + "example_sentence_native": "Non disordinare la tua stanza!", + "example_sentence_english": "Don't mess up your room!", + "pos": "verb", + "word_frequency": 22491 + }, + { + "word": "dissolvere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissolve", + "romanization": "dissolvere", + "example_sentence_native": "Lo zucchero si dissolve facilmente nell'acqua calda.", + "example_sentence_english": "Sugar dissolves easily in hot water.", + "pos": "verb", + "word_frequency": 22492 + }, + { + "word": "divulgativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "informative;popularizing", + "romanization": "divulgativo", + "example_sentence_native": "Ha scritto un libro divulgativo sulla scienza.", + "example_sentence_english": "He wrote an informative book about science.", + "pos": "adjective", + "word_frequency": 22493 + }, + { + "word": "dock", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dock (computer or port)", + "romanization": "dock", + "example_sentence_native": "Ho collegato il laptop al dock.", + "example_sentence_english": "I connected the laptop to the dock.", + "pos": "noun", + "word_frequency": 22494 + }, + { + "word": "dopamina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dopamine", + "romanization": "dopamina", + "example_sentence_native": "La dopamina è un neurotrasmettitore importante.", + "example_sentence_english": "Dopamine is an important neurotransmitter.", + "pos": "noun", + "word_frequency": 22497 + }, + { + "word": "dormita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nap;sleep (colloquial)", + "romanization": "dormita", + "example_sentence_native": "Ho fatto una bella dormita dopo pranzo.", + "example_sentence_english": "I had a good nap after lunch.", + "pos": "noun", + "word_frequency": 22498 + }, + { + "word": "effettuazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "execution;carrying out", + "romanization": "effettuazione", + "example_sentence_native": "L'effettuazione del progetto richiede tempo.", + "example_sentence_english": "The execution of the project requires time.", + "pos": "noun", + "word_frequency": 22502 + }, + { + "word": "elemosinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beg (for alms)", + "romanization": "elemosinare", + "example_sentence_native": "Non mi piace elemosinare favori.", + "example_sentence_english": "I don't like begging for favors.", + "pos": "verb", + "word_frequency": 22503 + }, + { + "word": "equity", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equity", + "romanization": "equity", + "example_sentence_native": "Hanno investito in private equity.", + "example_sentence_english": "They invested in private equity.", + "pos": "noun", + "word_frequency": 22505 + }, + { + "word": "eritreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eritrean (person)", + "romanization": "eritreo", + "example_sentence_native": "Un eritreo ha vinto la maratona.", + "example_sentence_english": "An Eritrean won the marathon.", + "pos": "noun", + "word_frequency": 22506 + }, + { + "word": "esasperazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exasperation", + "romanization": "esasperazione", + "example_sentence_native": "La sua esasperazione era evidente.", + "example_sentence_english": "His exasperation was evident.", + "pos": "noun", + "word_frequency": 22507 + }, + { + "word": "esemplificativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exemplary;illustrative", + "romanization": "esemplificativo", + "example_sentence_native": "Questo è un caso esemplificativo del problema.", + "example_sentence_english": "This is an illustrative case of the problem.", + "pos": "adjective", + "word_frequency": 22508 + }, + { + "word": "espansivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expansive;outgoing", + "romanization": "espansivo", + "example_sentence_native": "È una persona molto espansiva e socievole.", + "example_sentence_english": "He is a very outgoing and sociable person.", + "pos": "adjective", + "word_frequency": 22509 + }, + { + "word": "esternazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "externalization;expression (of feelings;thoughts)", + "romanization": "esternazione", + "example_sentence_native": "Le sue esternazioni hanno causato polemiche.", + "example_sentence_english": "His expressions caused controversy.", + "pos": "noun", + "word_frequency": 22510 + }, + { + "word": "etanolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethanol", + "romanization": "etanolo", + "example_sentence_native": "L'etanolo è un tipo di alcol.", + "example_sentence_english": "Ethanol is a type of alcohol.", + "pos": "noun", + "word_frequency": 22511 + }, + { + "word": "fantino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jockey", + "romanization": "fantino", + "example_sentence_native": "Il fantino ha guidato il cavallo alla vittoria.", + "example_sentence_english": "The jockey rode the horse to victory.", + "pos": "noun", + "word_frequency": 22513 + }, + { + "word": "feudatario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "feudal lord;vassal", + "romanization": "feudatario", + "example_sentence_native": "Il feudatario governava le sue terre con pugno di ferro.", + "example_sentence_english": "The feudal lord ruled his lands with an iron fist.", + "pos": "noun", + "word_frequency": 22515 + }, + { + "word": "fiancata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "side (of a vehicle;ship;building)", + "romanization": "fiancata", + "example_sentence_native": "La macchina ha una grossa ammaccatura sulla fiancata.", + "example_sentence_english": "The car has a big dent on the side.", + "pos": "noun", + "word_frequency": 22516 + }, + { + "word": "fiche", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chips;tokens (e.g.;poker chips)", + "romanization": "fiche", + "example_sentence_native": "Ha messo tutte le sue fiche sul rosso.", + "example_sentence_english": "He put all his chips on red.", + "pos": "noun", + "word_frequency": 22517 + }, + { + "word": "flagrante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flagrant;in the act", + "romanization": "flagrante", + "example_sentence_native": "È stato colto in flagrante mentre rubava.", + "example_sentence_english": "He was caught in the act while stealing.", + "pos": "adjective", + "word_frequency": 22518 + }, + { + "word": "fondotinta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foundation (makeup)", + "romanization": "fondotinta", + "example_sentence_native": "Ho bisogno di un nuovo fondotinta per la mia pelle.", + "example_sentence_english": "I need a new foundation for my skin.", + "pos": "noun", + "word_frequency": 22520 + }, + { + "word": "gagliardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "valiant;strong (as a noun: a valiant person)", + "romanization": "gagliardo", + "example_sentence_native": "Era un gagliardo, sempre pronto ad affrontare le sfide.", + "example_sentence_english": "He was a valiant man, always ready to face challenges.", + "pos": "noun", + "word_frequency": 22524 + }, + { + "word": "galantuomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gentleman;honest man", + "romanization": "galantuomo", + "example_sentence_native": "Mio nonno era un vero galantuomo.", + "example_sentence_english": "My grandfather was a true gentleman.", + "pos": "noun", + "word_frequency": 22525 + }, + { + "word": "gastronomico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gastronomic", + "romanization": "gastronomico", + "example_sentence_native": "L'Italia è famosa per la sua offerta gastronomica.", + "example_sentence_english": "Italy is famous for its gastronomic offer.", + "pos": "adjective", + "word_frequency": 22528 + }, + { + "word": "gioiellino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little jewel;gem", + "romanization": "gioiellino", + "example_sentence_native": "Questo orologio è un vero gioiellino.", + "example_sentence_english": "This watch is a real little jewel.", + "pos": "noun", + "word_frequency": 22533 + }, + { + "word": "glassa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "icing;glaze", + "romanization": "glassa", + "example_sentence_native": "La torta era ricoperta di una deliziosa glassa al cioccolato.", + "example_sentence_english": "The cake was covered with a delicious chocolate icing.", + "pos": "noun", + "word_frequency": 22534 + }, + { + "word": "grigione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "person from Grisons (Switzerland)", + "romanization": "grigione", + "example_sentence_native": "I Grigioni sono un cantone svizzero.", + "example_sentence_english": "The Grisons are a Swiss canton.", + "pos": "noun", + "word_frequency": 22536 + }, + { + "word": "guado", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ford", + "romanization": "guado", + "example_sentence_native": "Abbiamo attraversato il fiume al guado.", + "example_sentence_english": "We crossed the river at the ford.", + "pos": "noun", + "word_frequency": 22537 + }, + { + "word": "idro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seaplane (short for idrovolante)", + "romanization": "idro", + "example_sentence_native": "L'idro è atterrato sul lago.", + "example_sentence_english": "The seaplane landed on the lake.", + "pos": "noun", + "word_frequency": 22541 + }, + { + "word": "impossessare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to take possession of;to seize", + "romanization": "impossessare", + "example_sentence_native": "Il ladro ha cercato di impossessarsi dei gioielli.", + "example_sentence_english": "The thief tried to take possession of the jewels.", + "pos": "verb", + "word_frequency": 22543 + }, + { + "word": "impraticabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impracticable;impassable", + "romanization": "impraticabile", + "example_sentence_native": "La strada è diventata impraticabile a causa della neve.", + "example_sentence_english": "The road became impassable due to the snow.", + "pos": "adjective", + "word_frequency": 22545 + }, + { + "word": "imprecisione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inaccuracy;imprecision", + "romanization": "imprecisione", + "example_sentence_native": "C'è stata un'imprecisione nei calcoli.", + "example_sentence_english": "There was an inaccuracy in the calculations.", + "pos": "noun", + "word_frequency": 22546 + }, + { + "word": "impulsivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "impulsive", + "romanization": "impulsivo", + "example_sentence_native": "È una persona molto impulsiva.", + "example_sentence_english": "He is a very impulsive person.", + "pos": "adjective", + "word_frequency": 22547 + }, + { + "word": "incantare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to enchant;to charm", + "romanization": "incantare", + "example_sentence_native": "La sua voce riesce sempre ad incantare il pubblico.", + "example_sentence_english": "Her voice always manages to enchant the audience.", + "pos": "verb", + "word_frequency": 22548 + }, + { + "word": "indecisione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "indecision", + "romanization": "indecisione", + "example_sentence_native": "La sua indecisione gli ha fatto perdere l'opportunità.", + "example_sentence_english": "His indecision made him lose the opportunity.", + "pos": "noun", + "word_frequency": 22549 + }, + { + "word": "indisturbare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to not disturb;to leave undisturbed", + "romanization": "indisturbare", + "example_sentence_native": "È importante indisturbare il sonno dei bambini.", + "example_sentence_english": "It is important not to disturb children's sleep.", + "pos": "verb", + "word_frequency": 22550 + }, + { + "word": "inflessibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inflexible;unyielding", + "romanization": "inflessibile", + "example_sentence_native": "Il giudice è stato inflessibile nella sua decisione.", + "example_sentence_english": "The judge was inflexible in his decision.", + "pos": "adjective", + "word_frequency": 22551 + }, + { + "word": "infondare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to instill;to found", + "romanization": "infondare", + "example_sentence_native": "È importante infondare valori positivi nei giovani.", + "example_sentence_english": "It is important to instill positive values in young people.", + "pos": "verb", + "word_frequency": 22552 + }, + { + "word": "interpretativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interpretative", + "romanization": "interpretativo", + "example_sentence_native": "Il testo richiede un approccio interpretativo.", + "example_sentence_english": "The text requires an interpretative approach.", + "pos": "adjective", + "word_frequency": 22554 + }, + { + "word": "istintivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "instinctive", + "romanization": "istintivo", + "example_sentence_native": "La sua reazione è stata puramente istintiva.", + "example_sentence_english": "His reaction was purely instinctive.", + "pos": "adjective", + "word_frequency": 22556 + }, + { + "word": "km2", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "square kilometer", + "romanization": "km2", + "example_sentence_native": "La superficie del lago è di 100 km2.", + "example_sentence_english": "The surface area of the lake is 100 square kilometers.", + "pos": "noun", + "word_frequency": 22563 + }, + { + "word": "labiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labial", + "romanization": "labiale", + "example_sentence_native": "La 'p' è una consonante labiale.", + "example_sentence_english": "The 'p' is a labial consonant.", + "pos": "adjective", + "word_frequency": 22565 + }, + { + "word": "landa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "heathland;moor", + "romanization": "landa", + "example_sentence_native": "Il paesaggio era una vasta landa desolata.", + "example_sentence_english": "The landscape was a vast desolate heathland.", + "pos": "noun", + "word_frequency": 22566 + }, + { + "word": "latenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "latency;dormancy", + "romanization": "latenza", + "example_sentence_native": "La latenza della rete era troppo alta per il gaming online.", + "example_sentence_english": "The network latency was too high for online gaming.", + "pos": "noun", + "word_frequency": 22568 + }, + { + "word": "latitanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fugitive status;absconding", + "romanization": "latitanza", + "example_sentence_native": "Il criminale è stato in latitanza per dieci anni.", + "example_sentence_english": "The criminal was a fugitive for ten years.", + "pos": "noun", + "word_frequency": 22569 + }, + { + "word": "locus", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "locus;place", + "romanization": "locus", + "example_sentence_native": "Il 'locus amoenus' è un topos letterario.", + "example_sentence_english": "The 'locus amoenus' is a literary topos.", + "pos": "noun", + "word_frequency": 22573 + }, + { + "word": "macigno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boulder;large stone", + "romanization": "macigno", + "example_sentence_native": "Un enorme macigno bloccava la strada.", + "example_sentence_english": "A huge boulder blocked the road.", + "pos": "noun", + "word_frequency": 22577 + }, + { + "word": "malaffare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illicit dealings;shady business", + "romanization": "malaffare", + "example_sentence_native": "Le indagini hanno rivelato un giro di malaffare.", + "example_sentence_english": "The investigations revealed a ring of illicit dealings.", + "pos": "noun", + "word_frequency": 22579 + }, + { + "word": "marsupio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fanny pack;pouch (of a marsupial)", + "romanization": "marsupio", + "example_sentence_native": "Ho messo le chiavi nel marsupio.", + "example_sentence_english": "I put the keys in the fanny pack.", + "pos": "noun", + "word_frequency": 22581 + }, + { + "word": "mattoncino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small brick;building block", + "romanization": "mattoncino", + "example_sentence_native": "I bambini giocavano con i mattoncini colorati.", + "example_sentence_english": "The children were playing with the colorful building blocks.", + "pos": "noun", + "word_frequency": 22583 + }, + { + "word": "mediceo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Medicean;of the Medici", + "romanization": "mediceo", + "example_sentence_native": "La famiglia Medici ha lasciato un'eredità medicea a Firenze.", + "example_sentence_english": "The Medici family left a Medicean legacy in Florence.", + "pos": "adjective", + "word_frequency": 22585 + }, + { + "word": "mesa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mesa;tableland", + "romanization": "mesa", + "example_sentence_native": "Il paesaggio era caratterizzato da alte mesa rocciose.", + "example_sentence_english": "The landscape was characterized by high rocky mesas.", + "pos": "noun", + "word_frequency": 22588 + }, + { + "word": "mesetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "a little month;about a month", + "romanization": "mesetto", + "example_sentence_native": "Ci vediamo tra un mesetto.", + "example_sentence_english": "We'll see each other in about a month.", + "pos": "noun", + "word_frequency": 22589 + }, + { + "word": "miniserie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "miniseries", + "romanization": "miniserie", + "example_sentence_native": "Ho guardato una miniserie interessante su Netflix.", + "example_sentence_english": "I watched an interesting miniseries on Netflix.", + "pos": "noun", + "word_frequency": 22592 + }, + { + "word": "molare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to grind", + "romanization": "molare", + "example_sentence_native": "Il mulino serve a molare il grano.", + "example_sentence_english": "The mill is used to grind the wheat.", + "pos": "verb", + "word_frequency": 22593 + }, + { + "word": "motosega", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chainsaw", + "romanization": "motosega", + "example_sentence_native": "Ha usato la motosega per tagliare l'albero.", + "example_sentence_english": "He used the chainsaw to cut the tree.", + "pos": "noun", + "word_frequency": 22599 + }, + { + "word": "nichilismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nihilism", + "romanization": "nichilismo", + "example_sentence_native": "Il nichilismo è una corrente filosofica che nega l'esistenza di valori assoluti.", + "example_sentence_english": "Nihilism is a philosophical current that denies the existence of absolute values.", + "pos": "noun", + "word_frequency": 22601 + }, + { + "word": "numerare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to number", + "romanization": "numerare", + "example_sentence_native": "Dobbiamo numerare tutte le pagine del documento.", + "example_sentence_english": "We need to number all the pages of the document.", + "pos": "verb", + "word_frequency": 22603 + }, + { + "word": "orticaria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hives", + "romanization": "orticaria", + "example_sentence_native": "Dopo aver mangiato le fragole, mi è venuta l'orticaria.", + "example_sentence_english": "After eating strawberries, I got hives.", + "pos": "noun", + "word_frequency": 22607 + }, + { + "word": "ostinare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to insist;to persist", + "romanization": "ostinare", + "example_sentence_native": "Non ostinarti a fare qualcosa che sai essere sbagliato.", + "example_sentence_english": "Don't insist on doing something you know is wrong.", + "pos": "verb", + "word_frequency": 22608 + }, + { + "word": "paramilitare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paramilitary", + "romanization": "paramilitare", + "example_sentence_native": "Il gruppo paramilitare è stato accusato di violenze.", + "example_sentence_english": "The paramilitary group was accused of violence.", + "pos": "noun", + "word_frequency": 22609 + }, + { + "word": "passibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "liable;subject to", + "romanization": "passibile", + "example_sentence_native": "È passibile di multa per eccesso di velocità.", + "example_sentence_english": "He is liable to a fine for speeding.", + "pos": "adjective", + "word_frequency": 22610 + }, + { + "word": "pedana", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "platform;footrest", + "romanization": "pedana", + "example_sentence_native": "L'oratore è salito sulla pedana per parlare.", + "example_sentence_english": "The speaker went up on the platform to speak.", + "pos": "noun", + "word_frequency": 22612 + }, + { + "word": "pinolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pine nut", + "romanization": "pinolo", + "example_sentence_native": "Il pesto si fa con basilico, pinoli, parmigiano e olio d'oliva.", + "example_sentence_english": "Pesto is made with basil, pine nuts, Parmesan, and olive oil.", + "pos": "noun", + "word_frequency": 22614 + }, + { + "word": "polpaccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calf (of leg)", + "romanization": "polpaccio", + "example_sentence_native": "Mi fa male il polpaccio dopo la corsa.", + "example_sentence_english": "My calf hurts after the run.", + "pos": "noun", + "word_frequency": 22617 + }, + { + "word": "presbiterio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "presbytery;chancel", + "romanization": "presbiterio", + "example_sentence_native": "Il presbiterio della chiesa è stato restaurato.", + "example_sentence_english": "The presbytery of the church has been restored.", + "pos": "noun", + "word_frequency": 22618 + }, + { + "word": "prevendita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "presale;advance sale", + "romanization": "prevendita", + "example_sentence_native": "I biglietti sono disponibili in prevendita online.", + "example_sentence_english": "Tickets are available for presale online.", + "pos": "noun", + "word_frequency": 22619 + }, + { + "word": "pulmino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "minibus;van", + "romanization": "pulmino", + "example_sentence_native": "Il pulmino della scuola porta i bambini a casa.", + "example_sentence_english": "The school minibus takes the children home.", + "pos": "noun", + "word_frequency": 22621 + }, + { + "word": "rabbrividire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shiver;to shudder", + "romanization": "rabbrividire", + "example_sentence_native": "Ho rabbrividito per il freddo improvviso.", + "example_sentence_english": "I shivered from the sudden cold.", + "pos": "verb", + "word_frequency": 22624 + }, + { + "word": "riapparire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reappear", + "romanization": "riapparire", + "example_sentence_native": "Dopo la tempesta, il sole è riapparso.", + "example_sentence_english": "After the storm, the sun reappeared.", + "pos": "verb", + "word_frequency": 22627 + }, + { + "word": "riders", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "riders (delivery people)", + "romanization": "riders", + "example_sentence_native": "I riders consegnano il cibo a domicilio.", + "example_sentence_english": "The riders deliver food at home.", + "pos": "noun", + "word_frequency": 22628 + }, + { + "word": "riprovevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reprehensible;blameworthy", + "romanization": "riprovevole", + "example_sentence_native": "Il suo comportamento è stato riprovevole.", + "example_sentence_english": "His behavior was reprehensible.", + "pos": "adjective", + "word_frequency": 22630 + }, + { + "word": "romanesco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Roman (dialect;style)", + "romanization": "romanesco", + "example_sentence_native": "Parla un dialetto romanesco molto stretto.", + "example_sentence_english": "He speaks a very strong Roman dialect.", + "pos": "adjective", + "word_frequency": 22633 + }, + { + "word": "sarta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seamstress;tailor (female)", + "romanization": "sarta", + "example_sentence_native": "La sarta mi ha aggiustato l'abito.", + "example_sentence_english": "The seamstress adjusted my dress.", + "pos": "noun", + "word_frequency": 22634 + }, + { + "word": "scaglione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tier;bracket;rank", + "romanization": "scaglione", + "example_sentence_native": "I pagamenti sono divisi in scaglioni.", + "example_sentence_english": "The payments are divided into tiers.", + "pos": "noun", + "word_frequency": 22635 + }, + { + "word": "scemenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stupidity;nonsense", + "romanization": "scemenza", + "example_sentence_native": "Non dire scemenze, per favore.", + "example_sentence_english": "Don't say nonsense, please.", + "pos": "noun", + "word_frequency": 22636 + }, + { + "word": "scollatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "neckline;décolletage", + "romanization": "scollatura", + "example_sentence_native": "L'abito aveva una scollatura profonda.", + "example_sentence_english": "The dress had a deep neckline.", + "pos": "noun", + "word_frequency": 22637 + }, + { + "word": "scudiero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "squire;shield-bearer", + "romanization": "scudiero", + "example_sentence_native": "Il cavaliere e il suo scudiero partirono all'alba.", + "example_sentence_english": "The knight and his squire departed at dawn.", + "pos": "noun", + "word_frequency": 22638 + }, + { + "word": "semantico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "semantic", + "romanization": "semantico", + "example_sentence_native": "L'analisi semantica è fondamentale per capire il significato.", + "example_sentence_english": "Semantic analysis is fundamental to understanding the meaning.", + "pos": "adjective", + "word_frequency": 22639 + }, + { + "word": "sfumare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blur;to fade;to blend", + "romanization": "sfumare", + "example_sentence_native": "I colori del tramonto iniziano a sfumare nel cielo.", + "example_sentence_english": "The colors of the sunset begin to fade in the sky.", + "pos": "verb", + "word_frequency": 22640 + }, + { + "word": "skill", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skill", + "romanization": "skill", + "example_sentence_native": "Ha sviluppato nuove skill nel suo lavoro.", + "example_sentence_english": "He developed new skills in his job.", + "pos": "noun", + "word_frequency": 22643 + }, + { + "word": "skip", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skip (button;action)", + "romanization": "skip", + "example_sentence_native": "Premi il tasto skip per saltare la pubblicità.", + "example_sentence_english": "Press the skip button to skip the advertisement.", + "pos": "noun", + "word_frequency": 22644 + }, + { + "word": "smisurare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to go beyond measure;to exaggerate", + "romanization": "smisurare", + "example_sentence_native": "Non dovremmo mai smisurare le nostre aspettative.", + "example_sentence_english": "We should never go beyond measure with our expectations.", + "pos": "verb", + "word_frequency": 22645 + }, + { + "word": "sovvertire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to subvert;to overthrow", + "romanization": "sovvertire", + "example_sentence_native": "Il loro obiettivo era sovvertire l'ordine costituito.", + "example_sentence_english": "Their goal was to subvert the established order.", + "pos": "verb", + "word_frequency": 22646 + }, + { + "word": "spelling", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spelling", + "romanization": "spelling", + "example_sentence_native": "Il suo spelling è migliorato molto.", + "example_sentence_english": "His spelling has improved a lot.", + "pos": "noun", + "word_frequency": 22648 + }, + { + "word": "stamp", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stamp", + "romanization": "stamp", + "example_sentence_native": "Ho bisogno di un nuovo stamp per la mia collezione.", + "example_sentence_english": "I need a new stamp for my collection.", + "pos": "noun", + "word_frequency": 22649 + }, + { + "word": "starter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "starter", + "romanization": "starter", + "example_sentence_native": "Il motore non parte, forse è lo starter.", + "example_sentence_english": "The engine won't start, maybe it's the starter.", + "pos": "noun", + "word_frequency": 22651 + }, + { + "word": "stentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to struggle;to have difficulty", + "romanization": "stentare", + "example_sentence_native": "Stenta a credere alla notizia.", + "example_sentence_english": "He struggles to believe the news.", + "pos": "verb", + "word_frequency": 22652 + }, + { + "word": "stroncare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to break off;to crush;to ruin", + "romanization": "stroncare", + "example_sentence_native": "La critica ha stroncato il nuovo film.", + "example_sentence_english": "The critics crushed the new film.", + "pos": "verb", + "word_frequency": 22653 + }, + { + "word": "symbol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "symbol", + "romanization": "symbol", + "example_sentence_native": "Questo è un symbol di pace.", + "example_sentence_english": "This is a symbol of peace.", + "pos": "noun", + "word_frequency": 22658 + }, + { + "word": "tier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tier;level", + "romanization": "tier", + "example_sentence_native": "Questo prodotto è nel tier più alto.", + "example_sentence_english": "This product is in the highest tier.", + "pos": "noun", + "word_frequency": 22662 + }, + { + "word": "transport", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "transport", + "romanization": "transport", + "example_sentence_native": "Il transport pubblico è molto efficiente qui.", + "example_sentence_english": "Public transport is very efficient here.", + "pos": "noun", + "word_frequency": 22665 + }, + { + "word": "trasfigurazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transfiguration", + "romanization": "trasfigurazione", + "example_sentence_native": "La trasfigurazione di Cristo è un tema artistico.", + "example_sentence_english": "The transfiguration of Christ is an artistic theme.", + "pos": "noun", + "word_frequency": 22666 + }, + { + "word": "trionfante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "triumphant", + "romanization": "trionfante", + "example_sentence_native": "La squadra è tornata a casa trionfante.", + "example_sentence_english": "The team returned home triumphant.", + "pos": "adjective", + "word_frequency": 22667 + }, + { + "word": "vertigo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertigo", + "romanization": "vertigo", + "example_sentence_native": "Ha sofferto di un attacco di vertigo.", + "example_sentence_english": "He suffered from an attack of vertigo.", + "pos": "noun", + "word_frequency": 22669 + }, + { + "word": "vettoriale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vectorial", + "romanization": "vettoriale", + "example_sentence_native": "Questo è un grafico vettoriale.", + "example_sentence_english": "This is a vectorial graphic.", + "pos": "adjective", + "word_frequency": 22670 + }, + { + "word": "vilipendio", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "contempt;vilification;desecration", + "romanization": "vilipendio", + "example_sentence_native": "È stato accusato di vilipendio alla bandiera.", + "example_sentence_english": "He was accused of desecration of the flag.", + "pos": "noun", + "word_frequency": 22671 + }, + { + "word": "violence", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "violence", + "romanization": "violence", + "example_sentence_native": "La violence è inaccettabile.", + "example_sentence_english": "Violence is unacceptable.", + "pos": "noun", + "word_frequency": 22672 + }, + { + "word": "voltaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "voltage", + "romanization": "voltaggio", + "example_sentence_native": "Controlla il voltaggio prima di collegare l'apparecchio.", + "example_sentence_english": "Check the voltage before connecting the appliance.", + "pos": "noun", + "word_frequency": 22673 + }, + { + "word": "aberrante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aberrant", + "romanization": "aberrante", + "example_sentence_native": "Il suo comportamento era aberrante rispetto alle norme sociali.", + "example_sentence_english": "His behavior was aberrant compared to social norms.", + "pos": "adjective", + "word_frequency": 22682 + }, + { + "word": "abnorme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abnormal;enormous", + "romanization": "abnorme", + "example_sentence_native": "La crescita del tumore era abnorme.", + "example_sentence_english": "The growth of the tumor was abnormal.", + "pos": "adjective", + "word_frequency": 22683 + }, + { + "word": "abrogato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abrogated;repealed", + "romanization": "abrogato", + "example_sentence_native": "La legge è stata abrogata l'anno scorso.", + "example_sentence_english": "The law was abrogated last year.", + "pos": "adjective", + "word_frequency": 22684 + }, + { + "word": "accelerato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "accelerated;fast", + "romanization": "accelerato", + "example_sentence_native": "Abbiamo preso un corso accelerato per imparare l'italiano.", + "example_sentence_english": "We took an accelerated course to learn Italian.", + "pos": "adjective", + "word_frequency": 22685 + }, + { + "word": "accudire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to look after;to care for", + "romanization": "accudire", + "example_sentence_native": "Deve accudire i suoi genitori anziani.", + "example_sentence_english": "He has to look after his elderly parents.", + "pos": "verb", + "word_frequency": 22686 + }, + { + "word": "accumulazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "accumulation", + "romanization": "accumulazione", + "example_sentence_native": "L'accumulazione di detriti ha bloccato il passaggio.", + "example_sentence_english": "The accumulation of debris blocked the passage.", + "pos": "noun", + "word_frequency": 22687 + }, + { + "word": "acne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acne", + "romanization": "acne", + "example_sentence_native": "Molti adolescenti soffrono di acne.", + "example_sentence_english": "Many teenagers suffer from acne.", + "pos": "noun", + "word_frequency": 22688 + }, + { + "word": "acrobazia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acrobatics;stunt", + "romanization": "acrobazia", + "example_sentence_native": "Ha eseguito un'acrobazia mozzafiato.", + "example_sentence_english": "He performed a breathtaking acrobatics.", + "pos": "noun", + "word_frequency": 22689 + }, + { + "word": "alpinista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mountaineer;climber", + "romanization": "alpinista", + "example_sentence_native": "L'alpinista ha raggiunto la cima della montagna.", + "example_sentence_english": "The mountaineer reached the top of the mountain.", + "pos": "noun", + "word_frequency": 22700 + }, + { + "word": "alveare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beehive", + "romanization": "alveare", + "example_sentence_native": "Le api vivono in un alveare.", + "example_sentence_english": "Bees live in a beehive.", + "pos": "noun", + "word_frequency": 22701 + }, + { + "word": "ammonio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ammonium", + "romanization": "ammonio", + "example_sentence_native": "Il cloruro di ammonio è un sale.", + "example_sentence_english": "Ammonium chloride is a salt.", + "pos": "noun", + "word_frequency": 22705 + }, + { + "word": "amplificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amplification", + "romanization": "amplificazione", + "example_sentence_native": "Richiede l'amplificazione del segnale.", + "example_sentence_english": "It requires signal amplification.", + "pos": "noun", + "word_frequency": 22706 + }, + { + "word": "anagrafico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demographic;registry (related to personal data)", + "romanization": "anagrafico", + "example_sentence_native": "I dati anagrafici sono richiesti per l'iscrizione.", + "example_sentence_english": "Personal data (demographic information) is required for registration.", + "pos": "adjective", + "word_frequency": 22707 + }, + { + "word": "anamnesi", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "anamnesis;medical history", + "romanization": "anamnesi", + "example_sentence_native": "Il medico ha iniziato con l'anamnesi del paziente.", + "example_sentence_english": "The doctor started with the patient's anamnesis (medical history).", + "pos": "noun", + "word_frequency": 22708 + }, + { + "word": "aneurisma", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "aneurysm", + "romanization": "aneurisma", + "example_sentence_native": "Gli è stato diagnosticato un aneurisma cerebrale.", + "example_sentence_english": "He was diagnosed with a cerebral aneurysm.", + "pos": "noun", + "word_frequency": 22709 + }, + { + "word": "antidemocratico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antidemocratic", + "romanization": "antidemocratico", + "example_sentence_native": "Le sue azioni sono state considerate antidemocratiche.", + "example_sentence_english": "His actions were considered antidemocratic.", + "pos": "adjective", + "word_frequency": 22710 + }, + { + "word": "antifurto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anti-theft device;alarm", + "romanization": "antifurto", + "example_sentence_native": "Ho installato un antifurto sulla mia auto.", + "example_sentence_english": "I installed an anti-theft device on my car.", + "pos": "noun", + "word_frequency": 22711 + }, + { + "word": "ardentemente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ardently;passionately", + "romanization": "ardentemente", + "example_sentence_native": "Desiderava ardentemente la pace.", + "example_sentence_english": "He ardently desired peace.", + "pos": "adverb", + "word_frequency": 22712 + }, + { + "word": "asticella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rod;bar;crossbar", + "romanization": "asticella", + "example_sentence_native": "L'atleta ha saltato l'asticella.", + "example_sentence_english": "The athlete jumped over the crossbar.", + "pos": "noun", + "word_frequency": 22715 + }, + { + "word": "azzerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reset;to zero out", + "romanization": "azzerare", + "example_sentence_native": "Dobbiamo azzerare il contatore.", + "example_sentence_english": "We need to zero out the counter.", + "pos": "verb", + "word_frequency": 22719 + }, + { + "word": "baionetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bayonet", + "romanization": "baionetta", + "example_sentence_native": "Il soldato fissò la baionetta al fucile.", + "example_sentence_english": "The soldier fixed the bayonet to the rifle.", + "pos": "noun", + "word_frequency": 22720 + }, + { + "word": "bassezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "baseness;meanness", + "romanization": "bassezza", + "example_sentence_native": "Non tollero la bassezza di certi comportamenti.", + "example_sentence_english": "I do not tolerate the baseness of certain behaviors.", + "pos": "noun", + "word_frequency": 22723 + }, + { + "word": "bettola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dive bar;tavern", + "romanization": "bettola", + "example_sentence_native": "Hanno cenato in una vecchia bettola del centro.", + "example_sentence_english": "They had dinner in an old dive bar in the center.", + "pos": "noun", + "word_frequency": 22726 + }, + { + "word": "bisturi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scalpel", + "romanization": "bisturi", + "example_sentence_native": "Il chirurgo usò il bisturi con precisione.", + "example_sentence_english": "The surgeon used the scalpel with precision.", + "pos": "noun", + "word_frequency": 22728 + }, + { + "word": "bolgia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pandemonium;chaos;hellhole", + "romanization": "bolgia", + "example_sentence_native": "La stazione era una vera bolgia di gente.", + "example_sentence_english": "The station was a real pandemonium of people.", + "pos": "noun", + "word_frequency": 22731 + }, + { + "word": "bolscevico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Bolshevik", + "romanization": "bolscevico", + "example_sentence_native": "I bolscevichi presero il potere in Russia.", + "example_sentence_english": "The Bolsheviks took power in Russia.", + "pos": "noun", + "word_frequency": 22732 + }, + { + "word": "bombarda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bombard (musical instrument;old cannon)", + "romanization": "bombarda", + "example_sentence_native": "Suonava la bombarda nella banda cittadina.", + "example_sentence_english": "He played the bombard in the city band.", + "pos": "noun", + "word_frequency": 22733 + }, + { + "word": "bova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mud;sludge;mire", + "romanization": "bova", + "example_sentence_native": "Dopo la pioggia, la strada era piena di bova.", + "example_sentence_english": "After the rain, the road was full of mud.", + "pos": "noun", + "word_frequency": 22734 + }, + { + "word": "camicetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "blouse", + "romanization": "camicetta", + "example_sentence_native": "Indossava una camicetta di seta blu.", + "example_sentence_english": "She was wearing a blue silk blouse.", + "pos": "noun", + "word_frequency": 22738 + }, + { + "word": "capitaneria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "port authority;captaincy", + "romanization": "capitaneria", + "example_sentence_native": "La capitaneria di porto ha emesso un avviso.", + "example_sentence_english": "The port authority issued a warning.", + "pos": "noun", + "word_frequency": 22739 + }, + { + "word": "cappuccetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little hood;hood (diminutive)", + "romanization": "cappuccetto", + "example_sentence_native": "La bambina indossava un cappuccetto rosso.", + "example_sentence_english": "The little girl was wearing a little red hood.", + "pos": "noun", + "word_frequency": 22740 + }, + { + "word": "carcerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to imprison;to incarcerate", + "romanization": "carcerare", + "example_sentence_native": "Il giudice ha deciso di carcerare il colpevole.", + "example_sentence_english": "The judge decided to imprison the culprit.", + "pos": "verb", + "word_frequency": 22742 + }, + { + "word": "cardiologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiology", + "romanization": "cardiologia", + "example_sentence_native": "Si è specializzato in cardiologia.", + "example_sentence_english": "He specialized in cardiology.", + "pos": "noun", + "word_frequency": 22743 + }, + { + "word": "carogna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "carrion;scoundrel;bastard (figurative)", + "romanization": "carogna", + "example_sentence_native": "Quella carogna mi ha rubato il portafoglio.", + "example_sentence_english": "That scoundrel stole my wallet.", + "pos": "noun", + "word_frequency": 22744 + }, + { + "word": "caviale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caviar", + "romanization": "caviale", + "example_sentence_native": "Hanno servito caviale e champagne.", + "example_sentence_english": "They served caviar and champagne.", + "pos": "noun", + "word_frequency": 22750 + }, + { + "word": "cercatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seeker;searcher", + "romanization": "cercatore", + "example_sentence_native": "Era un cercatore d'oro nel Far West.", + "example_sentence_english": "He was a gold seeker in the Wild West.", + "pos": "noun", + "word_frequency": 22751 + }, + { + "word": "cervice", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cervix;neck (of an organ)", + "romanization": "cervice", + "example_sentence_native": "Il medico ha esaminato la cervice uterina.", + "example_sentence_english": "The doctor examined the uterine cervix.", + "pos": "noun", + "word_frequency": 22752 + }, + { + "word": "combriccola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gang;clique;group", + "romanization": "combriccola", + "example_sentence_native": "La combriccola si riuniva ogni sera al bar.", + "example_sentence_english": "The gang met every evening at the bar.", + "pos": "noun", + "word_frequency": 22758 + }, + { + "word": "comunicatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "communicator", + "romanization": "comunicatore", + "example_sentence_native": "È un ottimo comunicatore, sa farsi capire da tutti.", + "example_sentence_english": "He is an excellent communicator, he knows how to make himself understood by everyone.", + "pos": "noun", + "word_frequency": 22759 + }, + { + "word": "congiuntura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conjuncture;situation", + "romanization": "congiuntura", + "example_sentence_native": "La congiuntura economica attuale è molto complessa.", + "example_sentence_english": "The current economic situation is very complex.", + "pos": "noun", + "word_frequency": 22760 + }, + { + "word": "coniglietto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bunny;little rabbit", + "romanization": "coniglietto", + "example_sentence_native": "Il bambino giocava con un morbido coniglietto di peluche.", + "example_sentence_english": "The child was playing with a soft plush bunny.", + "pos": "noun", + "word_frequency": 22761 + }, + { + "word": "connettivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connective", + "romanization": "connettivo", + "example_sentence_native": "Il tessuto connettivo è fondamentale per il corpo umano.", + "example_sentence_english": "Connective tissue is fundamental for the human body.", + "pos": "adjective", + "word_frequency": 22762 + }, + { + "word": "copiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "copied", + "romanization": "copiato", + "example_sentence_native": "Il documento era una versione copiata dell'originale.", + "example_sentence_english": "The document was a copied version of the original.", + "pos": "adjective", + "word_frequency": 22764 + }, + { + "word": "coriandolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coriander", + "romanization": "coriandolo", + "example_sentence_native": "Ho aggiunto un po' di coriandolo fresco alla salsa.", + "example_sentence_english": "I added some fresh coriander to the sauce.", + "pos": "noun", + "word_frequency": 22766 + }, + { + "word": "corolla", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "corolla", + "romanization": "corolla", + "example_sentence_native": "La corolla del fiore era di un vivace colore rosso.", + "example_sentence_english": "The corolla of the flower was a vibrant red color.", + "pos": "noun", + "word_frequency": 22768 + }, + { + "word": "corposo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "full-bodied;substantial", + "romanization": "corposo", + "example_sentence_native": "Questo vino rosso ha un sapore molto corposo.", + "example_sentence_english": "This red wine has a very full-bodied flavor.", + "pos": "adjective", + "word_frequency": 22769 + }, + { + "word": "criminologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "criminology", + "romanization": "criminologia", + "example_sentence_native": "Ha studiato criminologia all'università.", + "example_sentence_english": "She studied criminology at university.", + "pos": "noun", + "word_frequency": 22770 + }, + { + "word": "cronologicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chronologically", + "romanization": "cronologicamente", + "example_sentence_native": "Gli eventi sono stati presentati cronologicamente.", + "example_sentence_english": "The events were presented chronologically.", + "pos": "adverb", + "word_frequency": 22771 + }, + { + "word": "culminato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "culminated", + "romanization": "culminato", + "example_sentence_native": "Il progetto è culminato in un grande successo.", + "example_sentence_english": "The project culminated in a great success.", + "pos": "adjective", + "word_frequency": 22772 + }, + { + "word": "definibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "definable", + "romanization": "definibile", + "example_sentence_native": "Il concetto non è facilmente definibile.", + "example_sentence_english": "The concept is not easily definable.", + "pos": "adjective", + "word_frequency": 22777 + }, + { + "word": "degenerare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to degenerate", + "romanization": "degenerare", + "example_sentence_native": "La situazione potrebbe degenerare rapidamente.", + "example_sentence_english": "The situation could degenerate rapidly.", + "pos": "verb", + "word_frequency": 22778 + }, + { + "word": "destituzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dismissal;impeachment", + "romanization": "destituzione", + "example_sentence_native": "La destituzione del presidente ha causato grande scalpore.", + "example_sentence_english": "The president's dismissal caused a great stir.", + "pos": "noun", + "word_frequency": 22784 + }, + { + "word": "dirompente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disruptive;groundbreaking", + "romanization": "dirompente", + "example_sentence_native": "L'innovazione tecnologica ha avuto un effetto dirompente sul mercato.", + "example_sentence_english": "Technological innovation had a disruptive effect on the market.", + "pos": "adjective", + "word_frequency": 22786 + }, + { + "word": "dirupo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cliff;precipice", + "romanization": "dirupo", + "example_sentence_native": "Stavano camminando pericolosamente vicino al bordo del dirupo.", + "example_sentence_english": "They were walking dangerously close to the edge of the cliff.", + "pos": "noun", + "word_frequency": 22787 + }, + { + "word": "disattivazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deactivation;disabling", + "romanization": "disattivazione", + "example_sentence_native": "La disattivazione dell'allarme è avvenuta senza problemi.", + "example_sentence_english": "The deactivation of the alarm occurred without problems.", + "pos": "noun", + "word_frequency": 22788 + }, + { + "word": "discernimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discernment;judgment", + "romanization": "discernimento", + "example_sentence_native": "Ha mostrato grande discernimento nella sua decisione.", + "example_sentence_english": "He showed great discernment in his decision.", + "pos": "noun", + "word_frequency": 22789 + }, + { + "word": "dispensare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dispense;to exempt", + "romanization": "dispensare", + "example_sentence_native": "Il farmacista può dispensare i farmaci con ricetta.", + "example_sentence_english": "The pharmacist can dispense prescription medications.", + "pos": "verb", + "word_frequency": 22790 + }, + { + "word": "ellenistico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Hellenistic", + "romanization": "ellenistico", + "example_sentence_native": "L'arte ellenistica è caratterizzata da un grande realismo.", + "example_sentence_english": "Hellenistic art is characterized by great realism.", + "pos": "adjective", + "word_frequency": 22802 + }, + { + "word": "ellittico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "elliptical", + "romanization": "ellittico", + "example_sentence_native": "La forma dell'orbita terrestre è ellittica.", + "example_sentence_english": "The shape of the Earth's orbit is elliptical.", + "pos": "adjective", + "word_frequency": 22803 + }, + { + "word": "embrionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embryonic", + "romanization": "embrionale", + "example_sentence_native": "Lo sviluppo embrionale è un processo complesso.", + "example_sentence_english": "Embryonic development is a complex process.", + "pos": "adjective", + "word_frequency": 22804 + }, + { + "word": "emersione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emergence", + "romanization": "emersione", + "example_sentence_native": "L'emersione del sole all'alba è uno spettacolo magnifico.", + "example_sentence_english": "The emergence of the sun at dawn is a magnificent spectacle.", + "pos": "noun", + "word_frequency": 22805 + }, + { + "word": "emiro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emir", + "romanization": "emiro", + "example_sentence_native": "L'emiro ha visitato il palazzo reale.", + "example_sentence_english": "The emir visited the royal palace.", + "pos": "noun", + "word_frequency": 22806 + }, + { + "word": "engagement", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "engagement (social media;commitment)", + "romanization": "engagement", + "example_sentence_native": "L'azienda cerca di aumentare l'engagement dei clienti sui social media.", + "example_sentence_english": "The company tries to increase customer engagement on social media.", + "pos": "noun", + "word_frequency": 22807 + }, + { + "word": "eremo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hermitage", + "romanization": "eremo", + "example_sentence_native": "Il monaco viveva in un eremo isolato sulla montagna.", + "example_sentence_english": "The monk lived in an isolated hermitage on the mountain.", + "pos": "noun", + "word_frequency": 22808 + }, + { + "word": "escogitare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to devise", + "romanization": "escogitare", + "example_sentence_native": "Dobbiamo escogitare un piano per risolvere il problema.", + "example_sentence_english": "We must devise a plan to solve the problem.", + "pos": "verb", + "word_frequency": 22809 + }, + { + "word": "espiare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to atone", + "romanization": "espiare", + "example_sentence_native": "Ha cercato di espiare i suoi peccati con opere di carità.", + "example_sentence_english": "He tried to atone for his sins with charitable works.", + "pos": "verb", + "word_frequency": 22810 + }, + { + "word": "espressività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expressiveness", + "romanization": "espressività", + "example_sentence_native": "La sua espressività nel ballo era straordinaria.", + "example_sentence_english": "Her expressiveness in dancing was extraordinary.", + "pos": "noun", + "word_frequency": 22811 + }, + { + "word": "eucaristia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Eucharist", + "romanization": "eucaristia", + "example_sentence_native": "La domenica i fedeli ricevono l'Eucaristia durante la messa.", + "example_sentence_english": "On Sundays, the faithful receive the Eucharist during mass.", + "pos": "noun", + "word_frequency": 22812 + }, + { + "word": "faglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fault (geological)", + "romanization": "faglia", + "example_sentence_native": "Il terremoto è stato causato da un movimento della faglia.", + "example_sentence_english": "The earthquake was caused by a movement of the fault.", + "pos": "noun", + "word_frequency": 22813 + }, + { + "word": "faziosità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partisanship", + "romanization": "faziosità", + "example_sentence_native": "La faziosità politica può ostacolare il progresso.", + "example_sentence_english": "Political partisanship can hinder progress.", + "pos": "noun", + "word_frequency": 22814 + }, + { + "word": "federalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "federalist", + "romanization": "federalista", + "example_sentence_native": "Era un convinto federalista e sosteneva l'unità europea.", + "example_sentence_english": "He was a convinced federalist and supported European unity.", + "pos": "noun", + "word_frequency": 22815 + }, + { + "word": "fiala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vial", + "romanization": "fiala", + "example_sentence_native": "L'infermiere ha preparato una fiala di vaccino.", + "example_sentence_english": "The nurse prepared a vial of vaccine.", + "pos": "noun", + "word_frequency": 22816 + }, + { + "word": "fiorito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "flowery", + "romanization": "fiorito", + "example_sentence_native": "Il giardino è molto fiorito in primavera.", + "example_sentence_english": "The garden is very flowery in spring.", + "pos": "adjective", + "word_frequency": 22819 + }, + { + "word": "floppy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "floppy disk", + "romanization": "floppy", + "example_sentence_native": "Ricordi quando usavamo i floppy per salvare i dati?", + "example_sentence_english": "Do you remember when we used floppy disks to save data?", + "pos": "noun", + "word_frequency": 22821 + }, + { + "word": "forestiero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foreigner", + "romanization": "forestiero", + "example_sentence_native": "Un forestiero chiese indicazioni per la stazione.", + "example_sentence_english": "A foreigner asked for directions to the station.", + "pos": "noun", + "word_frequency": 22822 + }, + { + "word": "francigena", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Francigena (as in Via Francigena)", + "romanization": "francigena", + "example_sentence_native": "La Via Francigena è un antico percorso di pellegrinaggio.", + "example_sentence_english": "The Via Francigena is an ancient pilgrimage route.", + "pos": "adjective", + "word_frequency": 22823 + }, + { + "word": "freccetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dart", + "romanization": "freccetta", + "example_sentence_native": "Ha lanciato una freccetta al bersaglio.", + "example_sentence_english": "He threw a dart at the target.", + "pos": "noun", + "word_frequency": 22824 + }, + { + "word": "giornalino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "newsletter;comic book (for children)", + "romanization": "giornalino", + "example_sentence_native": "Leggeva un giornalino a fumetti ogni pomeriggio.", + "example_sentence_english": "He read a comic book every afternoon.", + "pos": "noun", + "word_frequency": 22829 + }, + { + "word": "gleba", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glebe;clod of earth", + "romanization": "gleba", + "example_sentence_native": "I servi della gleba erano legati alla terra che coltivavano.", + "example_sentence_english": "The serfs were tied to the land they cultivated.", + "pos": "noun", + "word_frequency": 22830 + }, + { + "word": "grandemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "greatly", + "romanization": "grandemente", + "example_sentence_native": "Il suo contributo ha migliorato grandemente il progetto.", + "example_sentence_english": "His contribution greatly improved the project.", + "pos": "adverb", + "word_frequency": 22831 + }, + { + "word": "groppa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rump (of an animal)", + "romanization": "groppa", + "example_sentence_native": "Il cavallo aveva una groppa forte e muscolosa.", + "example_sentence_english": "The horse had a strong and muscular rump.", + "pos": "noun", + "word_frequency": 22832 + }, + { + "word": "guardiola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "guardhouse", + "romanization": "guardiola", + "example_sentence_native": "Il custode era seduto nella guardiola all'ingresso.", + "example_sentence_english": "The caretaker was sitting in the guardhouse at the entrance.", + "pos": "noun", + "word_frequency": 22833 + }, + { + "word": "illusorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "illusory", + "romanization": "illusorio", + "example_sentence_native": "La sua felicità era solo illusoria.", + "example_sentence_english": "His happiness was only illusory.", + "pos": "adjective", + "word_frequency": 22838 + }, + { + "word": "immensità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immensity", + "romanization": "immensità", + "example_sentence_native": "L'immensità del cielo stellato era mozzafiato.", + "example_sentence_english": "The immensity of the starry sky was breathtaking.", + "pos": "noun", + "word_frequency": 22839 + }, + { + "word": "impacciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hinder;to impede", + "romanization": "impacciare", + "example_sentence_native": "Non voglio impacciarti con i miei problemi.", + "example_sentence_english": "I don't want to burden you with my problems.", + "pos": "verb", + "word_frequency": 22840 + }, + { + "word": "impercettibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperceptible", + "romanization": "impercettibile", + "example_sentence_native": "Il cambiamento è stato quasi impercettibile.", + "example_sentence_english": "The change was almost imperceptible.", + "pos": "adjective", + "word_frequency": 22841 + }, + { + "word": "impugnazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appeal;challenge (legal)", + "romanization": "impugnazione", + "example_sentence_native": "Ha presentato un'impugnazione contro la sentenza.", + "example_sentence_english": "He filed an appeal against the sentence.", + "pos": "noun", + "word_frequency": 22843 + }, + { + "word": "inalterato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unaltered;unchanged", + "romanization": "inalterato", + "example_sentence_native": "Il suo spirito è rimasto inalterato nonostante le difficoltà.", + "example_sentence_english": "His spirit remained unaltered despite the difficulties.", + "pos": "adjective", + "word_frequency": 22844 + }, + { + "word": "incrociato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crossed;intertwined", + "romanization": "incrociato", + "example_sentence_native": "Si sedette con le gambe incrociate.", + "example_sentence_english": "He sat with his legs crossed.", + "pos": "adjective", + "word_frequency": 22845 + }, + { + "word": "indiscriminato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indiscriminate", + "romanization": "indiscriminato", + "example_sentence_native": "L'uso indiscriminato di pesticidi può danneggiare l'ambiente.", + "example_sentence_english": "The indiscriminate use of pesticides can harm the environment.", + "pos": "adjective", + "word_frequency": 22846 + }, + { + "word": "indiscriminatamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indiscriminately", + "romanization": "indiscriminatamente", + "example_sentence_native": "Ha agito indiscriminatamente, senza pensare alle conseguenze.", + "example_sentence_english": "He acted indiscriminately, without thinking about the consequences.", + "pos": "adverb", + "word_frequency": 22847 + }, + { + "word": "indovinello", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "riddle", + "romanization": "indovinello", + "example_sentence_native": "Mi hai fatto un indovinello difficile.", + "example_sentence_english": "You gave me a difficult riddle.", + "pos": "noun", + "word_frequency": 22848 + }, + { + "word": "inebriante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intoxicating;exhilarating", + "romanization": "inebriante", + "example_sentence_native": "Il profumo dei fiori era inebriante.", + "example_sentence_english": "The scent of the flowers was intoxicating.", + "pos": "adjective", + "word_frequency": 22849 + }, + { + "word": "infimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lowest;meanest;paltry", + "romanization": "infimo", + "example_sentence_native": "Non dare importanza a queste infime questioni.", + "example_sentence_english": "Don't give importance to these paltry matters.", + "pos": "adjective", + "word_frequency": 22850 + }, + { + "word": "infuocare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to set on fire;to inflame", + "romanization": "infuocare", + "example_sentence_native": "Il sole infuocava il cielo al tramonto.", + "example_sentence_english": "The sun set the sky on fire at sunset.", + "pos": "verb", + "word_frequency": 22851 + }, + { + "word": "inibire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to inhibit;to prevent", + "romanization": "inibire", + "example_sentence_native": "La paura può inibire la nostra capacità di agire.", + "example_sentence_english": "Fear can inhibit our ability to act.", + "pos": "verb", + "word_frequency": 22852 + }, + { + "word": "invogliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entice;to tempt", + "romanization": "invogliare", + "example_sentence_native": "La vetrina invogliava i passanti ad entrare.", + "example_sentence_english": "The shop window enticed passers-by to enter.", + "pos": "verb", + "word_frequency": 22853 + }, + { + "word": "lacca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lacquer;hairspray", + "romanization": "lacca", + "example_sentence_native": "Ho bisogno di un po' di lacca per i capelli.", + "example_sentence_english": "I need some hairspray.", + "pos": "noun", + "word_frequency": 22860 + }, + { + "word": "lanciafiamme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flamethrower", + "romanization": "lanciafiamme", + "example_sentence_native": "Il soldato usava un lanciafiamme.", + "example_sentence_english": "The soldier used a flamethrower.", + "pos": "noun", + "word_frequency": 22862 + }, + { + "word": "lattice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "latex", + "romanization": "lattice", + "example_sentence_native": "Molte persone sono allergiche al lattice.", + "example_sentence_english": "Many people are allergic to latex.", + "pos": "noun", + "word_frequency": 22863 + }, + { + "word": "lindo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clean;neat;spotless", + "romanization": "lindo", + "example_sentence_native": "La casa era linda e ordinata.", + "example_sentence_english": "The house was clean and tidy.", + "pos": "adjective", + "word_frequency": 22868 + }, + { + "word": "magma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magma", + "romanization": "magma", + "example_sentence_native": "Il magma risale dal vulcano.", + "example_sentence_english": "Magma rises from the volcano.", + "pos": "noun", + "word_frequency": 22871 + }, + { + "word": "malefatta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misdeed;wrongdoing", + "romanization": "malefatta", + "example_sentence_native": "La sua malefatta non rimase impunita.", + "example_sentence_english": "His misdeed did not go unpunished.", + "pos": "noun", + "word_frequency": 22873 + }, + { + "word": "miao", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "meow", + "romanization": "miao", + "example_sentence_native": "Il gatto ha fatto 'miao'.", + "example_sentence_english": "The cat said 'meow'.", + "pos": "interjection", + "word_frequency": 22879 + }, + { + "word": "mimosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mimosa (flower;plant)", + "romanization": "mimosa", + "example_sentence_native": "Ho comprato un mazzo di mimose per la Festa della Donna.", + "example_sentence_english": "I bought a bunch of mimosas for Women's Day.", + "pos": "noun", + "word_frequency": 22881 + }, + { + "word": "mixtape", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mixtape", + "romanization": "mixtape", + "example_sentence_native": "Ha registrato un mixtape con le sue canzoni preferite.", + "example_sentence_english": "He recorded a mixtape with his favorite songs.", + "pos": "noun", + "word_frequency": 22882 + }, + { + "word": "moralismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "moralism", + "romanization": "moralismo", + "example_sentence_native": "Il suo discorso era pieno di moralismo.", + "example_sentence_english": "His speech was full of moralism.", + "pos": "noun", + "word_frequency": 22887 + }, + { + "word": "murder", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "murder", + "romanization": "murder", + "example_sentence_native": "Il film parla di un misterioso caso di murder.", + "example_sentence_english": "The film is about a mysterious case of murder.", + "pos": "noun", + "word_frequency": 22890 + }, + { + "word": "neolaureato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recent graduate", + "romanization": "neolaureato", + "example_sentence_native": "L'azienda cerca neolaureati in ingegneria.", + "example_sentence_english": "The company is looking for recent engineering graduates.", + "pos": "noun", + "word_frequency": 22893 + }, + { + "word": "neurologia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neurology", + "romanization": "neurologia", + "example_sentence_native": "Ha studiato neurologia all'università.", + "example_sentence_english": "She studied neurology at university.", + "pos": "noun", + "word_frequency": 22894 + }, + { + "word": "nouveau", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "new (from French;often in \"art nouveau\")", + "romanization": "nouveau", + "example_sentence_native": "L'Art Nouveau è uno stile artistico.", + "example_sentence_english": "Art Nouveau is an artistic style.", + "pos": "adjective", + "word_frequency": 22897 + }, + { + "word": "nylon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nylon", + "romanization": "nylon", + "example_sentence_native": "Le calze sono fatte di nylon.", + "example_sentence_english": "The stockings are made of nylon.", + "pos": "noun", + "word_frequency": 22899 + }, + { + "word": "operation", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "operation", + "romanization": "operation", + "example_sentence_native": "L'operation militare è stata un successo.", + "example_sentence_english": "The military operation was a success.", + "pos": "noun", + "word_frequency": 22900 + }, + { + "word": "opprimere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to oppress", + "romanization": "opprimere", + "example_sentence_native": "Il governo cerca di opprimere la libertà di parola.", + "example_sentence_english": "The government tries to oppress freedom of speech.", + "pos": "verb", + "word_frequency": 22901 + }, + { + "word": "peccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sin;to err", + "romanization": "peccare", + "example_sentence_native": "Tutti possono peccare, ma l'importante è pentirsi.", + "example_sentence_english": "Everyone can sin, but the important thing is to repent.", + "pos": "verb", + "word_frequency": 22908 + }, + { + "word": "peculato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "embezzlement", + "romanization": "peculato", + "example_sentence_native": "È stato accusato di peculato per aver sottratto fondi pubblici.", + "example_sentence_english": "He was accused of embezzlement for having misappropriated public funds.", + "pos": "noun", + "word_frequency": 22909 + }, + { + "word": "peripezia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peripeteia;adventure;mishap", + "romanization": "peripezia", + "example_sentence_native": "Il viaggio è stato pieno di peripezie.", + "example_sentence_english": "The journey was full of mishaps.", + "pos": "noun", + "word_frequency": 22910 + }, + { + "word": "perseguimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pursuit;prosecution", + "romanization": "perseguimento", + "example_sentence_native": "Il perseguimento della felicità è un diritto fondamentale.", + "example_sentence_english": "The pursuit of happiness is a fundamental right.", + "pos": "noun", + "word_frequency": 22911 + }, + { + "word": "philosophy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "philosophy", + "romanization": "philosophy", + "example_sentence_native": "La sua philosophy di vita è molto semplice.", + "example_sentence_english": "His life philosophy is very simple.", + "pos": "noun", + "word_frequency": 22915 + }, + { + "word": "phon", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hairdryer", + "romanization": "phon", + "example_sentence_native": "Ho bisogno del phon per asciugarmi i capelli.", + "example_sentence_english": "I need the hairdryer to dry my hair.", + "pos": "noun", + "word_frequency": 22916 + }, + { + "word": "plateau", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plateau", + "romanization": "plateau", + "example_sentence_native": "L'economia ha raggiunto un plateau.", + "example_sentence_english": "The economy has reached a plateau.", + "pos": "noun", + "word_frequency": 22918 + }, + { + "word": "porridge", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porridge", + "romanization": "porridge", + "example_sentence_native": "A colazione, mi piace mangiare il porridge con la frutta.", + "example_sentence_english": "For breakfast, I like to eat porridge with fruit.", + "pos": "noun", + "word_frequency": 22921 + }, + { + "word": "portellone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tailgate;hatch;large door", + "romanization": "portellone", + "example_sentence_native": "Il portellone dell'auto si è aperto improvvisamente.", + "example_sentence_english": "The car's tailgate opened suddenly.", + "pos": "noun", + "word_frequency": 22922 + }, + { + "word": "possessione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "possession (often spiritual)", + "romanization": "possessione", + "example_sentence_native": "Si credeva che fosse sotto l'influenza di una possessione demoniaca.", + "example_sentence_english": "It was believed that she was under the influence of a demonic possession.", + "pos": "noun", + "word_frequency": 22924 + }, + { + "word": "potatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pruning", + "romanization": "potatura", + "example_sentence_native": "La potatura degli alberi è essenziale per la loro salute.", + "example_sentence_english": "Tree pruning is essential for their health.", + "pos": "noun", + "word_frequency": 22925 + }, + { + "word": "prelazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pre-emption;right of first refusal", + "romanization": "prelazione", + "example_sentence_native": "Ho il diritto di prelazione sull'acquisto di quella proprietà.", + "example_sentence_english": "I have the right of pre-emption on the purchase of that property.", + "pos": "noun", + "word_frequency": 22926 + }, + { + "word": "prequel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prequel", + "romanization": "prequel", + "example_sentence_native": "Il nuovo film è un prequel della serie originale.", + "example_sentence_english": "The new film is a prequel to the original series.", + "pos": "noun", + "word_frequency": 22927 + }, + { + "word": "priorato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priory", + "romanization": "priorato", + "example_sentence_native": "Il priorato era un antico edificio monastico.", + "example_sentence_english": "The priory was an ancient monastic building.", + "pos": "noun", + "word_frequency": 22928 + }, + { + "word": "promulgare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to promulgate;to enact", + "romanization": "promulgare", + "example_sentence_native": "Il governo ha deciso di promulgare una nuova legge.", + "example_sentence_english": "The government decided to promulgate a new law.", + "pos": "verb", + "word_frequency": 22929 + }, + { + "word": "psicofarmaco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychotropic drug", + "romanization": "psicofarmaco", + "example_sentence_native": "Il medico ha prescritto un nuovo psicofarmaco al paziente.", + "example_sentence_english": "The doctor prescribed a new psychotropic drug to the patient.", + "pos": "noun", + "word_frequency": 22930 + }, + { + "word": "racchetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "racket", + "romanization": "racchetta", + "example_sentence_native": "Ho comprato una nuova racchetta da tennis.", + "example_sentence_english": "I bought a new tennis racket.", + "pos": "noun", + "word_frequency": 22934 + }, + { + "word": "radicchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radicchio (a type of chicory)", + "romanization": "radicchio", + "example_sentence_native": "Mi piace l'insalata con il radicchio rosso.", + "example_sentence_english": "I like salad with red radicchio.", + "pos": "noun", + "word_frequency": 22935 + }, + { + "word": "razionalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalism", + "romanization": "razionalismo", + "example_sentence_native": "Il razionalismo è una corrente filosofica importante.", + "example_sentence_english": "Rationalism is an important philosophical current.", + "pos": "noun", + "word_frequency": 22940 + }, + { + "word": "regolarizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regularize;to legalize", + "romanization": "regolarizzare", + "example_sentence_native": "È necessario regolarizzare la propria posizione fiscale.", + "example_sentence_english": "It is necessary to regularize one's tax position.", + "pos": "verb", + "word_frequency": 22941 + }, + { + "word": "reinserimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reintegration;reinsertion", + "romanization": "reinserimento", + "example_sentence_native": "Il programma mira al reinserimento dei detenuti nella società.", + "example_sentence_english": "The program aims at the reintegration of prisoners into society.", + "pos": "noun", + "word_frequency": 22942 + }, + { + "word": "reintroduzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reintroduction", + "romanization": "reintroduzione", + "example_sentence_native": "La reintroduzione del lupo ha avuto successo in alcune aree.", + "example_sentence_english": "The reintroduction of the wolf has been successful in some areas.", + "pos": "noun", + "word_frequency": 22943 + }, + { + "word": "reporting", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reporting", + "romanization": "reporting", + "example_sentence_native": "Il reporting finanziario è fondamentale per l'azienda.", + "example_sentence_english": "Financial reporting is fundamental for the company.", + "pos": "noun", + "word_frequency": 22945 + }, + { + "word": "retroguardia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rearguard;old-fashioned (figurative)", + "romanization": "retroguardia", + "example_sentence_native": "L'esercito proteggeva la retroguardia durante la ritirata.", + "example_sentence_english": "The army protected the rearguard during the retreat.", + "pos": "noun", + "word_frequency": 22946 + }, + { + "word": "ridistribuzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redistribution", + "romanization": "ridistribuzione", + "example_sentence_native": "La ridistribuzione della ricchezza è un tema politico.", + "example_sentence_english": "The redistribution of wealth is a political issue.", + "pos": "noun", + "word_frequency": 22947 + }, + { + "word": "ripetitore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "repeater (signal);tutor (person)", + "romanization": "ripetitore", + "example_sentence_native": "Ho installato un ripetitore Wi-Fi per migliorare il segnale.", + "example_sentence_english": "I installed a Wi-Fi repeater to improve the signal.", + "pos": "noun", + "word_frequency": 22948 + }, + { + "word": "risaia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rice paddy", + "romanization": "risaia", + "example_sentence_native": "Le risaie si estendono a perdita d'occhio in quella regione.", + "example_sentence_english": "The rice paddies stretch as far as the eye can see in that region.", + "pos": "noun", + "word_frequency": 22949 + }, + { + "word": "risultanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "finding;result (often plural: findings;results)", + "romanization": "risultanza", + "example_sentence_native": "Le risultanze dell'indagine saranno pubblicate presto.", + "example_sentence_english": "The findings of the investigation will be published soon.", + "pos": "noun", + "word_frequency": 22950 + }, + { + "word": "roller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rollerblade;roller skate", + "romanization": "roller", + "example_sentence_native": "Andiamo a fare un giro con i roller al parco.", + "example_sentence_english": "Let's go for a ride with the rollerblades in the park.", + "pos": "noun", + "word_frequency": 22951 + }, + { + "word": "romanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Romanesque", + "romanization": "romanico", + "example_sentence_native": "La chiesa ha uno stile architettonico romanico.", + "example_sentence_english": "The church has a Romanesque architectural style.", + "pos": "adjective", + "word_frequency": 22952 + }, + { + "word": "sborsare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pay out;to disburse", + "romanization": "sborsare", + "example_sentence_native": "Ho dovuto sborsare una grossa somma per le riparazioni.", + "example_sentence_english": "I had to pay out a large sum for the repairs.", + "pos": "verb", + "word_frequency": 22958 + }, + { + "word": "scaltro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cunning;shrewd;clever", + "romanization": "scaltro", + "example_sentence_native": "Era un uomo scaltro e sapeva come ottenere ciò che voleva.", + "example_sentence_english": "He was a shrewd man and knew how to get what he wanted.", + "pos": "adjective", + "word_frequency": 22959 + }, + { + "word": "scarabeo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beetle", + "romanization": "scarabeo", + "example_sentence_native": "Ho visto uno scarabeo verde nel giardino.", + "example_sentence_english": "I saw a green beetle in the garden.", + "pos": "noun", + "word_frequency": 22960 + }, + { + "word": "schiavismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slavery", + "romanization": "schiavismo", + "example_sentence_native": "Lo schiavismo è una pratica disumana.", + "example_sentence_english": "Slavery is an inhumane practice.", + "pos": "noun", + "word_frequency": 22961 + }, + { + "word": "schizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to splash;to squirt;to sketch", + "romanization": "schizzare", + "example_sentence_native": "L'acqua ha iniziato a schizzare dappertutto.", + "example_sentence_english": "The water started to splash everywhere.", + "pos": "verb", + "word_frequency": 22962 + }, + { + "word": "scrivano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scribe;clerk", + "romanization": "scrivano", + "example_sentence_native": "Il vecchio scrivano trascriveva i documenti a mano.", + "example_sentence_english": "The old scribe transcribed the documents by hand.", + "pos": "noun", + "word_frequency": 22963 + }, + { + "word": "sintomatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "symptomatic", + "romanization": "sintomatico", + "example_sentence_native": "La febbre è un sintomo, ma non è sempre sintomatico di una malattia grave.", + "example_sentence_english": "Fever is a symptom, but it's not always symptomatic of a serious illness.", + "pos": "adjective", + "word_frequency": 22969 + }, + { + "word": "snodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint;junction;pivot", + "romanization": "snodo", + "example_sentence_native": "Lo snodo del braccio robotico permette un'ampia gamma di movimenti.", + "example_sentence_english": "The joint of the robotic arm allows a wide range of movements.", + "pos": "noun", + "word_frequency": 22971 + }, + { + "word": "sudato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweaty;perspiring", + "romanization": "sudato", + "example_sentence_native": "Dopo la corsa, ero completamente sudato.", + "example_sentence_english": "After the run, I was completely sweaty.", + "pos": "adjective", + "word_frequency": 22976 + }, + { + "word": "sudditanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subservience;subjection", + "romanization": "sudditanza", + "example_sentence_native": "Molti popoli hanno vissuto in uno stato di sudditanza.", + "example_sentence_english": "Many peoples have lived in a state of subjection.", + "pos": "noun", + "word_frequency": 22977 + }, + { + "word": "svoltare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to turn", + "romanization": "svoltare", + "example_sentence_native": "Devi svoltare a destra al prossimo incrocio.", + "example_sentence_english": "You need to turn right at the next intersection.", + "pos": "verb", + "word_frequency": 22980 + }, + { + "word": "tavolozza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "palette", + "romanization": "tavolozza", + "example_sentence_native": "L'artista mescolava i colori sulla sua tavolozza.", + "example_sentence_english": "The artist mixed the colors on his palette.", + "pos": "noun", + "word_frequency": 22981 + }, + { + "word": "timidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "timidly;shyly", + "romanization": "timidamente", + "example_sentence_native": "Ha risposto timidamente alla domanda.", + "example_sentence_english": "She answered timidly to the question.", + "pos": "adverb", + "word_frequency": 22983 + }, + { + "word": "tosco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Tuscan (archaic;poetic)", + "romanization": "tosco", + "example_sentence_native": "Il paesaggio tosco è famoso per le sue colline.", + "example_sentence_english": "The Tuscan landscape is famous for its hills.", + "pos": "adjective", + "word_frequency": 22984 + }, + { + "word": "tostapane", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "toaster", + "romanization": "tostapane", + "example_sentence_native": "Ho comprato un nuovo tostapane.", + "example_sentence_english": "I bought a new toaster.", + "pos": "noun", + "word_frequency": 22985 + }, + { + "word": "traducibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "translatable", + "romanization": "traducibile", + "example_sentence_native": "Questa frase non è facilmente traducibile in inglese.", + "example_sentence_english": "This sentence is not easily translatable into English.", + "pos": "adjective", + "word_frequency": 22986 + }, + { + "word": "transitare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transit;to pass through", + "romanization": "transitare", + "example_sentence_native": "I veicoli pesanti non possono transitare per il centro storico.", + "example_sentence_english": "Heavy vehicles cannot transit through the historic center.", + "pos": "verb", + "word_frequency": 22987 + }, + { + "word": "trapezio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trapezoid;trapeze;trapezium (muscle)", + "romanization": "trapezio", + "example_sentence_native": "Il trapezio è una figura geometrica con due lati paralleli.", + "example_sentence_english": "The trapezoid is a geometric figure with two parallel sides.", + "pos": "noun", + "word_frequency": 22988 + }, + { + "word": "trasformatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transformer", + "romanization": "trasformatore", + "example_sentence_native": "Il trasformatore converte l'alta tensione in bassa tensione.", + "example_sentence_english": "The transformer converts high voltage to low voltage.", + "pos": "noun", + "word_frequency": 22989 + }, + { + "word": "trentennio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thirty-year period;three decades", + "romanization": "trentennio", + "example_sentence_native": "Il trentennio successivo alla guerra fu un periodo di grande crescita.", + "example_sentence_english": "The thirty-year period after the war was a time of great growth.", + "pos": "noun", + "word_frequency": 22991 + }, + { + "word": "usurpatore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "usurper", + "romanization": "usurpatore", + "example_sentence_native": "Il nuovo re fu considerato un usurpatore dal popolo.", + "example_sentence_english": "The new king was considered an usurper by the people.", + "pos": "noun", + "word_frequency": 22993 + }, + { + "word": "vedetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lookout;sentry", + "romanization": "vedetta", + "example_sentence_native": "La sentinella era di vedetta sulla torre.", + "example_sentence_english": "The sentry was on lookout on the tower.", + "pos": "noun", + "word_frequency": 22996 + }, + { + "word": "ventosa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suction cup;cupping glass", + "romanization": "ventosa", + "example_sentence_native": "Ho attaccato il supporto al vetro con una ventosa.", + "example_sentence_english": "I attached the holder to the glass with a suction cup.", + "pos": "noun", + "word_frequency": 22998 + }, + { + "word": "accadimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "event;occurrence", + "romanization": "accadimento", + "example_sentence_native": "L'accadimento di ieri ha sorpreso tutti.", + "example_sentence_english": "Yesterday's event surprised everyone.", + "pos": "noun", + "word_frequency": 23004 + }, + { + "word": "accantonato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set aside;shelved", + "romanization": "accantonato", + "example_sentence_native": "Il progetto è stato accantonato per mancanza di fondi.", + "example_sentence_english": "The project has been shelved due to lack of funds.", + "pos": "adjective", + "word_frequency": 23005 + }, + { + "word": "advertising", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "advertising", + "romanization": "advertising", + "example_sentence_native": "L'advertising digitale è in forte crescita.", + "example_sentence_english": "Digital advertising is growing rapidly.", + "pos": "noun", + "word_frequency": 23006 + }, + { + "word": "agevolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "facilitated;subsidized", + "romanization": "agevolato", + "example_sentence_native": "Hanno ottenuto un prestito agevolato per l'acquisto della casa.", + "example_sentence_english": "They obtained a subsidized loan for the house purchase.", + "pos": "adjective", + "word_frequency": 23007 + }, + { + "word": "anacronistico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anachronistic", + "romanization": "anacronistico", + "example_sentence_native": "Quell'idea è ormai anacronistica.", + "example_sentence_english": "That idea is now anachronistic.", + "pos": "adjective", + "word_frequency": 23014 + }, + { + "word": "archiviato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "archived;filed", + "romanization": "archiviato", + "example_sentence_native": "Il caso è stato archiviato per mancanza di prove.", + "example_sentence_english": "The case has been archived due to lack of evidence.", + "pos": "adjective", + "word_frequency": 23018 + }, + { + "word": "arrecare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to cause;to bring about", + "romanization": "arrecare", + "example_sentence_native": "Questo comportamento potrebbe arrecare danno alla sua reputazione.", + "example_sentence_english": "This behavior could cause harm to his reputation.", + "pos": "verb", + "word_frequency": 23019 + }, + { + "word": "asfissia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asphyxia", + "romanization": "asfissia", + "example_sentence_native": "La vittima è morta per asfissia.", + "example_sentence_english": "The victim died of asphyxia.", + "pos": "noun", + "word_frequency": 23020 + }, + { + "word": "baccano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racket;din;noise", + "romanization": "baccano", + "example_sentence_native": "I vicini facevano un gran baccano.", + "example_sentence_english": "The neighbors were making a lot of noise.", + "pos": "noun", + "word_frequency": 23023 + }, + { + "word": "bagnino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lifeguard", + "romanization": "bagnino", + "example_sentence_native": "Il bagnino ha salvato il bambino dall'annegamento.", + "example_sentence_english": "The lifeguard saved the child from drowning.", + "pos": "noun", + "word_frequency": 23024 + }, + { + "word": "baraccopoli", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slum;shantytown", + "romanization": "baraccopoli", + "example_sentence_native": "Molte persone vivono in baraccopoli ai margini della città.", + "example_sentence_english": "Many people live in slums on the outskirts of the city.", + "pos": "noun", + "word_frequency": 23027 + }, + { + "word": "barchetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small boat", + "romanization": "barchetta", + "example_sentence_native": "Abbiamo fatto un giro sulla barchetta nel lago.", + "example_sentence_english": "We took a ride on the small boat in the lake.", + "pos": "noun", + "word_frequency": 23028 + }, + { + "word": "baritono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baritone", + "romanization": "baritono", + "example_sentence_native": "Il baritono ha una voce potente e profonda.", + "example_sentence_english": "The baritone has a powerful and deep voice.", + "pos": "noun", + "word_frequency": 23029 + }, + { + "word": "beatitudine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beatitude;bliss", + "romanization": "beatitudine", + "example_sentence_native": "Ha raggiunto uno stato di profonda beatitudine.", + "example_sentence_english": "He reached a state of profound bliss.", + "pos": "noun", + "word_frequency": 23030 + }, + { + "word": "beneplacito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "approval;consent", + "romanization": "beneplacito", + "example_sentence_native": "Il progetto è stato approvato con il beneplacito del consiglio.", + "example_sentence_english": "The project was approved with the consent of the council.", + "pos": "noun", + "word_frequency": 23032 + }, + { + "word": "bestialità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bestiality;brutality;atrocity", + "romanization": "bestialità", + "example_sentence_native": "Le bestialità commesse durante la guerra sono imperdonabili.", + "example_sentence_english": "The atrocities committed during the war are unforgivable.", + "pos": "noun", + "word_frequency": 23033 + }, + { + "word": "bestseller", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bestseller", + "romanization": "bestseller", + "example_sentence_native": "Il suo ultimo libro è diventato un bestseller.", + "example_sentence_english": "His latest book became a bestseller.", + "pos": "noun", + "word_frequency": 23034 + }, + { + "word": "blackjack", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blackjack", + "romanization": "blackjack", + "example_sentence_native": "Ha vinto una grossa somma giocando a blackjack.", + "example_sentence_english": "He won a large sum playing blackjack.", + "pos": "noun", + "word_frequency": 23037 + }, + { + "word": "bongo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bongo", + "romanization": "bongo", + "example_sentence_native": "Suona il bongo in una band di musica latina.", + "example_sentence_english": "He plays the bongo in a Latin music band.", + "pos": "noun", + "word_frequency": 23039 + }, + { + "word": "bosso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "boxwood", + "romanization": "bosso", + "example_sentence_native": "Il bosso è spesso usato per siepi ornamentali.", + "example_sentence_english": "Boxwood is often used for ornamental hedges.", + "pos": "noun", + "word_frequency": 23040 + }, + { + "word": "bulldog", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bulldog", + "romanization": "bulldog", + "example_sentence_native": "Il mio cane è un bulldog inglese.", + "example_sentence_english": "My dog is an English bulldog.", + "pos": "noun", + "word_frequency": 23045 + }, + { + "word": "bungalow", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bungalow", + "romanization": "bungalow", + "example_sentence_native": "Abbiamo affittato un bungalow sulla spiaggia per le vacanze.", + "example_sentence_english": "We rented a bungalow on the beach for the holidays.", + "pos": "noun", + "word_frequency": 23047 + }, + { + "word": "callo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "callus", + "romanization": "callo", + "example_sentence_native": "Ho un callo sul dito a causa delle scarpe nuove.", + "example_sentence_english": "I have a callus on my toe because of the new shoes.", + "pos": "noun", + "word_frequency": 23049 + }, + { + "word": "cana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "female dog", + "romanization": "cana", + "example_sentence_native": "La cana del vicino abbaiava tutta la notte.", + "example_sentence_english": "The neighbor's female dog barked all night.", + "pos": "noun", + "word_frequency": 23050 + }, + { + "word": "centurione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "centurion", + "romanization": "centurione", + "example_sentence_native": "Il centurione guidava la sua coorte in battaglia.", + "example_sentence_english": "The centurion led his cohort into battle.", + "pos": "noun", + "word_frequency": 23053 + }, + { + "word": "ciarlatano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charlatan", + "romanization": "ciarlatano", + "example_sentence_native": "Quel venditore è solo un ciarlatano che promette miracoli.", + "example_sentence_english": "That salesman is just a charlatan who promises miracles.", + "pos": "noun", + "word_frequency": 23057 + }, + { + "word": "clessidra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hourglass", + "romanization": "clessidra", + "example_sentence_native": "La sabbia scorreva lentamente nella clessidra.", + "example_sentence_english": "The sand flowed slowly in the hourglass.", + "pos": "noun", + "word_frequency": 23058 + }, + { + "word": "coautore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-author", + "romanization": "coautore", + "example_sentence_native": "È il coautore di diversi libri di successo.", + "example_sentence_english": "He is the co-author of several successful books.", + "pos": "noun", + "word_frequency": 23059 + }, + { + "word": "codardia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cowardice", + "romanization": "codardia", + "example_sentence_native": "La sua codardia gli impedì di affrontare la verità.", + "example_sentence_english": "His cowardice prevented him from facing the truth.", + "pos": "noun", + "word_frequency": 23060 + }, + { + "word": "codex", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "codex", + "romanization": "codex", + "example_sentence_native": "Il manoscritto era un antico codex miniato.", + "example_sentence_english": "The manuscript was an ancient illuminated codex.", + "pos": "noun", + "word_frequency": 23061 + }, + { + "word": "colloquiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colloquial", + "romanization": "colloquiale", + "example_sentence_native": "Questa espressione è molto colloquiale e non adatta a contesti formali.", + "example_sentence_english": "This expression is very colloquial and not suitable for formal contexts.", + "pos": "adjective", + "word_frequency": 23062 + }, + { + "word": "commentario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commentary", + "romanization": "commentario", + "example_sentence_native": "Ha scritto un commentario dettagliato sull'opera.", + "example_sentence_english": "He wrote a detailed commentary on the work.", + "pos": "noun", + "word_frequency": 23066 + }, + { + "word": "compartecipazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "co-participation", + "romanization": "compartecipazione", + "example_sentence_native": "La compartecipazione dei dipendenti è fondamentale per il successo.", + "example_sentence_english": "Employee co-participation is fundamental for success.", + "pos": "noun", + "word_frequency": 23067 + }, + { + "word": "condensa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condensation", + "romanization": "condensa", + "example_sentence_native": "C'è molta condensa sui vetri della finestra.", + "example_sentence_english": "There is a lot of condensation on the window panes.", + "pos": "noun", + "word_frequency": 23068 + }, + { + "word": "confezionamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "packaging", + "romanization": "confezionamento", + "example_sentence_native": "Il confezionamento del prodotto è stato migliorato.", + "example_sentence_english": "The product's packaging has been improved.", + "pos": "noun", + "word_frequency": 23070 + }, + { + "word": "contentino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sop;token gesture", + "romanization": "contentino", + "example_sentence_native": "Ci hanno dato solo un contentino invece di una vera soluzione.", + "example_sentence_english": "They only gave us a sop instead of a real solution.", + "pos": "noun", + "word_frequency": 23073 + }, + { + "word": "cultore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devotee;expert", + "romanization": "cultore", + "example_sentence_native": "È un cultore della musica classica.", + "example_sentence_english": "He is a devotee of classical music.", + "pos": "noun", + "word_frequency": 23075 + }, + { + "word": "danzante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dancing", + "romanization": "danzante", + "example_sentence_native": "Amava guardare le fontane danzanti.", + "example_sentence_english": "She loved watching the dancing fountains.", + "pos": "adjective", + "word_frequency": 23076 + }, + { + "word": "decentemente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decently", + "romanization": "decentemente", + "example_sentence_native": "Spero che tu possa dormire decentemente stanotte.", + "example_sentence_english": "I hope you can sleep decently tonight.", + "pos": "adverb", + "word_frequency": 23078 + }, + { + "word": "degenerato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "degenerate", + "romanization": "degenerato", + "example_sentence_native": "Il suo comportamento è diventato degenerato.", + "example_sentence_english": "His behavior has become degenerate.", + "pos": "adjective", + "word_frequency": 23079 + }, + { + "word": "degnamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "worthily", + "romanization": "degnamente", + "example_sentence_native": "Ha svolto il suo compito degnamente.", + "example_sentence_english": "He performed his task worthily.", + "pos": "adverb", + "word_frequency": 23080 + }, + { + "word": "delimitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "delimited", + "romanization": "delimitato", + "example_sentence_native": "L'area di gioco è chiaramente delimitata.", + "example_sentence_english": "The playing area is clearly delimited.", + "pos": "adjective", + "word_frequency": 23082 + }, + { + "word": "derisione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "derision", + "romanization": "derisione", + "example_sentence_native": "Le sue parole erano piene di derisione.", + "example_sentence_english": "His words were full of derision.", + "pos": "noun", + "word_frequency": 23086 + }, + { + "word": "disattivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inactive", + "romanization": "disattivo", + "example_sentence_native": "L'account è stato disattivo per mesi.", + "example_sentence_english": "The account has been inactive for months.", + "pos": "adjective", + "word_frequency": 23087 + }, + { + "word": "disciolto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dissolved", + "romanization": "disciolto", + "example_sentence_native": "Il ghiaccio si è disciolto nell'acqua.", + "example_sentence_english": "The ice dissolved in the water.", + "pos": "adjective", + "word_frequency": 23088 + }, + { + "word": "disseminato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scattered", + "romanization": "disseminato", + "example_sentence_native": "Il campo era disseminato di fiori selvatici.", + "example_sentence_english": "The field was scattered with wildflowers.", + "pos": "adjective", + "word_frequency": 23089 + }, + { + "word": "diversivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversion", + "romanization": "diversivo", + "example_sentence_native": "Hanno creato un diversivo per scappare.", + "example_sentence_english": "They created a diversion to escape.", + "pos": "noun", + "word_frequency": 23090 + }, + { + "word": "epurazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "purge", + "romanization": "epurazione", + "example_sentence_native": "Il governo ha annunciato un'epurazione.", + "example_sentence_english": "The government announced a purge.", + "pos": "noun", + "word_frequency": 23099 + }, + { + "word": "femorale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "femoral", + "romanization": "femorale", + "example_sentence_native": "Ha avuto una frattura femorale.", + "example_sentence_english": "He had a femoral fracture.", + "pos": "adjective", + "word_frequency": 23102 + }, + { + "word": "filologo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philologist", + "romanization": "filologo", + "example_sentence_native": "È un esperto filologo di testi antichi.", + "example_sentence_english": "He is an expert philologist of ancient texts.", + "pos": "noun", + "word_frequency": 23104 + }, + { + "word": "fondante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fundamental", + "romanization": "fondante", + "example_sentence_native": "Questo è un principio fondante della nostra società.", + "example_sentence_english": "This is a fundamental principle of our society.", + "pos": "adjective", + "word_frequency": 23107 + }, + { + "word": "fortuito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fortuitous", + "romanization": "fortuito", + "example_sentence_native": "È stato un incontro fortuito.", + "example_sentence_english": "It was a fortuitous encounter.", + "pos": "adjective", + "word_frequency": 23109 + }, + { + "word": "forzoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compulsory", + "romanization": "forzoso", + "example_sentence_native": "Hanno imposto un esilio forzoso.", + "example_sentence_english": "They imposed a compulsory exile.", + "pos": "adjective", + "word_frequency": 23110 + }, + { + "word": "gazzella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gazelle", + "romanization": "gazzella", + "example_sentence_native": "La gazzella corre molto velocemente.", + "example_sentence_english": "The gazelle runs very fast.", + "pos": "noun", + "word_frequency": 23113 + }, + { + "word": "gemito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "groan", + "romanization": "gemito", + "example_sentence_native": "Si sentiva un gemito di dolore.", + "example_sentence_english": "A groan of pain could be heard.", + "pos": "noun", + "word_frequency": 23115 + }, + { + "word": "giamaicano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Jamaican", + "romanization": "giamaicano", + "example_sentence_native": "Ha ascoltato musica giamaicana.", + "example_sentence_english": "He listened to Jamaican music.", + "pos": "adjective", + "word_frequency": 23117 + }, + { + "word": "goccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drop;bit", + "romanization": "goccio", + "example_sentence_native": "Aggiungi solo un goccio di latte al caffè.", + "example_sentence_english": "Just add a drop of milk to the coffee.", + "pos": "noun", + "word_frequency": 23120 + }, + { + "word": "grata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grate;grille", + "romanization": "grata", + "example_sentence_native": "La finestra aveva una grata di ferro.", + "example_sentence_english": "The window had an iron grate.", + "pos": "noun", + "word_frequency": 23122 + }, + { + "word": "gregoriano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Gregorian", + "romanization": "gregoriano", + "example_sentence_native": "Il calendario gregoriano è quello più usato al mondo.", + "example_sentence_english": "The Gregorian calendar is the most used in the world.", + "pos": "adjective", + "word_frequency": 23125 + }, + { + "word": "grifone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "griffin", + "romanization": "grifone", + "example_sentence_native": "Il grifone è una creatura mitologica con corpo di leone e testa d'aquila.", + "example_sentence_english": "The griffin is a mythological creature with the body of a lion and the head of an eagle.", + "pos": "noun", + "word_frequency": 23126 + }, + { + "word": "ideato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conceived;devised", + "romanization": "ideato", + "example_sentence_native": "Il progetto è stato ideato da un team di esperti.", + "example_sentence_english": "The project was conceived by a team of experts.", + "pos": "adjective", + "word_frequency": 23137 + }, + { + "word": "immoralità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immorality", + "romanization": "immoralità", + "example_sentence_native": "L'immoralità delle sue azioni era evidente a tutti.", + "example_sentence_english": "The immorality of his actions was evident to everyone.", + "pos": "noun", + "word_frequency": 23138 + }, + { + "word": "impastato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kneaded;doughy", + "romanization": "impastato", + "example_sentence_native": "La pasta era ben impastata e pronta per lievitare.", + "example_sentence_english": "The dough was well kneaded and ready to rise.", + "pos": "adjective", + "word_frequency": 23139 + }, + { + "word": "impiantato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "implanted;installed", + "romanization": "impiantato", + "example_sentence_native": "Ha un pacemaker impiantato da diversi anni.", + "example_sentence_english": "He has had a pacemaker implanted for several years.", + "pos": "adjective", + "word_frequency": 23140 + }, + { + "word": "incetta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hoarding;cornering (the market)", + "romanization": "incetta", + "example_sentence_native": "Hanno fatto incetta di mascherine durante la pandemia.", + "example_sentence_english": "They hoarded masks during the pandemic.", + "pos": "noun", + "word_frequency": 23141 + }, + { + "word": "incontrastato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unchallenged;undisputed", + "romanization": "incontrastato", + "example_sentence_native": "Il campione ha mantenuto il suo dominio incontrastato.", + "example_sentence_english": "The champion maintained his unchallenged dominance.", + "pos": "adjective", + "word_frequency": 23142 + }, + { + "word": "indebolito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakened", + "romanization": "indebolito", + "example_sentence_native": "Si sentiva indebolito dopo la lunga malattia.", + "example_sentence_english": "He felt weakened after the long illness.", + "pos": "adjective", + "word_frequency": 23143 + }, + { + "word": "indigno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unworthy;disgraceful", + "romanization": "indigno", + "example_sentence_native": "Il suo comportamento era indigno di un professionista.", + "example_sentence_english": "His behavior was unworthy of a professional.", + "pos": "adjective", + "word_frequency": 23144 + }, + { + "word": "indiscutibilmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indisputably;undeniably", + "romanization": "indiscutibilmente", + "example_sentence_native": "È indiscutibilmente il miglior giocatore della squadra.", + "example_sentence_english": "He is indisputably the best player on the team.", + "pos": "adverb", + "word_frequency": 23145 + }, + { + "word": "infestato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "infested;haunted", + "romanization": "infestato", + "example_sentence_native": "La vecchia casa era infestata dai fantasmi.", + "example_sentence_english": "The old house was haunted by ghosts.", + "pos": "adjective", + "word_frequency": 23146 + }, + { + "word": "ingerito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingested", + "romanization": "ingerito", + "example_sentence_native": "Il farmaco deve essere ingerito con acqua.", + "example_sentence_english": "The medicine must be ingested with water.", + "pos": "adjective", + "word_frequency": 23147 + }, + { + "word": "inguardabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unwatchable;unsightly", + "romanization": "inguardabile", + "example_sentence_native": "Quel film era assolutamente inguardabile.", + "example_sentence_english": "That movie was absolutely unwatchable.", + "pos": "adjective", + "word_frequency": 23148 + }, + { + "word": "inserzionista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "advertiser", + "romanization": "inserzionista", + "example_sentence_native": "L'inserzionista ha pagato per la pubblicità sulla rivista.", + "example_sentence_english": "The advertiser paid for the advertisement in the magazine.", + "pos": "noun", + "word_frequency": 23149 + }, + { + "word": "interrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "underground;buried", + "romanization": "interrato", + "example_sentence_native": "Hanno costruito un parcheggio interrato sotto la piazza.", + "example_sentence_english": "They built an underground parking lot under the square.", + "pos": "adjective", + "word_frequency": 23150 + }, + { + "word": "invertito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inverted;reversed", + "romanization": "invertito", + "example_sentence_native": "L'immagine sullo schermo era invertita.", + "example_sentence_english": "The image on the screen was inverted.", + "pos": "adjective", + "word_frequency": 23151 + }, + { + "word": "labile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "labile;unstable;fleeting", + "romanization": "labile", + "example_sentence_native": "La memoria è spesso labile e può ingannare.", + "example_sentence_english": "Memory is often labile and can deceive.", + "pos": "adjective", + "word_frequency": 23158 + }, + { + "word": "lacerazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "laceration;tear", + "romanization": "lacerazione", + "example_sentence_native": "La caduta ha causato una profonda lacerazione al braccio.", + "example_sentence_english": "The fall caused a deep laceration on his arm.", + "pos": "noun", + "word_frequency": 23160 + }, + { + "word": "ladrone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brigand;robber;big thief", + "romanization": "ladrone", + "example_sentence_native": "Il ladrone è stato catturato dopo una lunga fuga.", + "example_sentence_english": "The brigand was captured after a long escape.", + "pos": "noun", + "word_frequency": 23161 + }, + { + "word": "lateranense", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Lateran (related to the Lateran)", + "romanization": "lateranense", + "example_sentence_native": "La Basilica di San Giovanni in Laterano è una delle quattro basiliche papali maggiori di Roma.", + "example_sentence_english": "The Basilica of Saint John Lateran is one of the four major papal basilicas in Rome.", + "pos": "adjective", + "word_frequency": 23163 + }, + { + "word": "legionario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "legionary", + "romanization": "legionario", + "example_sentence_native": "I legionari romani erano soldati ben addestrati.", + "example_sentence_english": "Roman legionaries were well-trained soldiers.", + "pos": "noun", + "word_frequency": 23164 + }, + { + "word": "lesivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmful;damaging;injurious", + "romanization": "lesivo", + "example_sentence_native": "Le sue parole sono state considerate lesive della reputazione.", + "example_sentence_english": "His words were considered damaging to the reputation.", + "pos": "adjective", + "word_frequency": 23166 + }, + { + "word": "levata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rise;lifting;departure (e.g.;of a ship)", + "romanization": "levata", + "example_sentence_native": "La levata del sole all'alba è uno spettacolo magnifico.", + "example_sentence_english": "The rise of the sun at dawn is a magnificent spectacle.", + "pos": "noun", + "word_frequency": 23167 + }, + { + "word": "locatore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lessor;landlord", + "romanization": "locatore", + "example_sentence_native": "Il locatore ha aumentato l'affitto del 10%.", + "example_sentence_english": "The lessor increased the rent by 10%.", + "pos": "noun", + "word_frequency": 23170 + }, + { + "word": "lodato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "praised;commendable", + "romanization": "lodato", + "example_sentence_native": "Il suo impegno è stato lodato da tutti.", + "example_sentence_english": "His commitment was praised by everyone.", + "pos": "adjective", + "word_frequency": 23171 + }, + { + "word": "maggiorazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "increase;surcharge;additional charge", + "romanization": "maggiorazione", + "example_sentence_native": "È prevista una maggiorazione per il lavoro straordinario.", + "example_sentence_english": "A surcharge is expected for overtime work.", + "pos": "noun", + "word_frequency": 23176 + }, + { + "word": "magistralmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masterfully;expertly", + "romanization": "magistralmente", + "example_sentence_native": "Ha eseguito il pezzo magistralmente.", + "example_sentence_english": "He performed the piece masterfully.", + "pos": "adverb", + "word_frequency": 23177 + }, + { + "word": "malocchio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "evil eye", + "romanization": "malocchio", + "example_sentence_native": "Alcune persone credono nel malocchio.", + "example_sentence_english": "Some people believe in the evil eye.", + "pos": "noun", + "word_frequency": 23179 + }, + { + "word": "manganese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "manganese", + "romanization": "manganese", + "example_sentence_native": "Il manganese è un metallo di transizione.", + "example_sentence_english": "Manganese is a transition metal.", + "pos": "noun", + "word_frequency": 23180 + }, + { + "word": "materialista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "materialist", + "romanization": "materialista", + "example_sentence_native": "Non è una persona materialista, apprezza le cose semplici.", + "example_sentence_english": "He is not a materialist person, he appreciates simple things.", + "pos": "noun", + "word_frequency": 23183 + }, + { + "word": "memento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "memento;reminder", + "romanization": "memento", + "example_sentence_native": "Questo orologio è un memento del nostro viaggio.", + "example_sentence_english": "This watch is a memento of our trip.", + "pos": "noun", + "word_frequency": 23184 + }, + { + "word": "mescolato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mixed;blended", + "romanization": "mescolato", + "example_sentence_native": "Il caffè è stato mescolato con il latte.", + "example_sentence_english": "The coffee was mixed with milk.", + "pos": "adjective", + "word_frequency": 23186 + }, + { + "word": "missiva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "missive;letter", + "romanization": "missiva", + "example_sentence_native": "Ha ricevuto una missiva urgente dal suo avvocato.", + "example_sentence_english": "She received an urgent missive from her lawyer.", + "pos": "noun", + "word_frequency": 23189 + }, + { + "word": "multiculturalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multiculturalism", + "romanization": "multiculturalismo", + "example_sentence_native": "Il multiculturalismo è un aspetto importante della società moderna.", + "example_sentence_english": "Multiculturalism is an important aspect of modern society.", + "pos": "noun", + "word_frequency": 23193 + }, + { + "word": "natica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "buttock;glute", + "romanization": "natica", + "example_sentence_native": "Ha sentito dolore alla natica dopo la caduta.", + "example_sentence_english": "He felt pain in his buttock after the fall.", + "pos": "noun", + "word_frequency": 23195 + }, + { + "word": "neutrone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neutron", + "romanization": "neutrone", + "example_sentence_native": "Il neutrone è una particella subatomica.", + "example_sentence_english": "The neutron is a subatomic particle.", + "pos": "noun", + "word_frequency": 23198 + }, + { + "word": "nolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freight;hire;rental", + "romanization": "nolo", + "example_sentence_native": "Il costo del nolo per la spedizione è elevato.", + "example_sentence_english": "The cost of freight for the shipment is high.", + "pos": "noun", + "word_frequency": 23199 + }, + { + "word": "novellino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beginner", + "romanization": "novellino", + "example_sentence_native": "È ancora un novellino nel suo lavoro.", + "example_sentence_english": "He is still a beginner in his job.", + "pos": "noun", + "word_frequency": 23200 + }, + { + "word": "odontoiatria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dentistry", + "romanization": "odontoiatria", + "example_sentence_native": "Ha studiato odontoiatria all'università.", + "example_sentence_english": "She studied dentistry at university.", + "pos": "noun", + "word_frequency": 23202 + }, + { + "word": "officer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officer", + "romanization": "officer", + "example_sentence_native": "L'officer di polizia è arrivato sulla scena.", + "example_sentence_english": "The police officer arrived at the scene.", + "pos": "noun", + "word_frequency": 23203 + }, + { + "word": "ogniqualvolta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whenever", + "romanization": "ogniqualvolta", + "example_sentence_native": "Ogniqualvolta piove, mi sento triste.", + "example_sentence_english": "Whenever it rains, I feel sad.", + "pos": "adverb", + "word_frequency": 23204 + }, + { + "word": "operetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operetta", + "romanization": "operetta", + "example_sentence_native": "Hanno messo in scena una famosa operetta.", + "example_sentence_english": "They staged a famous operetta.", + "pos": "noun", + "word_frequency": 23205 + }, + { + "word": "pancake", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pancake", + "romanization": "pancake", + "example_sentence_native": "A colazione ho mangiato dei pancake con lo sciroppo.", + "example_sentence_english": "For breakfast, I ate pancakes with syrup.", + "pos": "noun", + "word_frequency": 23209 + }, + { + "word": "parapetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "railing", + "romanization": "parapetto", + "example_sentence_native": "Si è appoggiato al parapetto per guardare il panorama.", + "example_sentence_english": "He leaned on the railing to look at the view.", + "pos": "noun", + "word_frequency": 23212 + }, + { + "word": "particolato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "particulate matter", + "romanization": "particolato", + "example_sentence_native": "L'inquinamento da particolato è un problema serio.", + "example_sentence_english": "Particulate matter pollution is a serious problem.", + "pos": "noun", + "word_frequency": 23213 + }, + { + "word": "pegaso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Pegasus", + "romanization": "Pegaso", + "example_sentence_native": "Pegaso è il cavallo alato della mitologia greca.", + "example_sentence_english": "Pegasus is the winged horse of Greek mythology.", + "pos": "noun", + "word_frequency": 23215 + }, + { + "word": "penalizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "penalized", + "romanization": "penalizzato", + "example_sentence_native": "La squadra si è sentita penalizzata dall'arbitro.", + "example_sentence_english": "The team felt penalized by the referee.", + "pos": "adjective", + "word_frequency": 23216 + }, + { + "word": "penicillina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "penicillin", + "romanization": "penicillina", + "example_sentence_native": "Ha preso la penicillina per l'infezione.", + "example_sentence_english": "He took penicillin for the infection.", + "pos": "noun", + "word_frequency": 23217 + }, + { + "word": "piovoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "rainy", + "romanization": "piovoso", + "example_sentence_native": "Oggi è una giornata piovosa.", + "example_sentence_english": "Today is a rainy day.", + "pos": "adjective", + "word_frequency": 23222 + }, + { + "word": "plutonio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plutonium", + "romanization": "plutonio", + "example_sentence_native": "Il plutonio è un elemento radioattivo.", + "example_sentence_english": "Plutonium is a radioactive element.", + "pos": "noun", + "word_frequency": 23224 + }, + { + "word": "problemino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small problem", + "romanization": "problemino", + "example_sentence_native": "Ho solo un problemino da risolvere.", + "example_sentence_english": "I just have a small problem to solve.", + "pos": "noun", + "word_frequency": 23227 + }, + { + "word": "protrare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prolong", + "romanization": "protrare", + "example_sentence_native": "Non vogliamo protrare ulteriormente la discussione.", + "example_sentence_english": "We don't want to prolong the discussion further.", + "pos": "verb", + "word_frequency": 23229 + }, + { + "word": "radiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "expelled", + "romanization": "radiato", + "example_sentence_native": "È stato radiato dall'albo professionale.", + "example_sentence_english": "He was expelled from the professional register.", + "pos": "adjective", + "word_frequency": 23233 + }, + { + "word": "radioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radiant", + "romanization": "radioso", + "example_sentence_native": "Aveva un sorriso radioso sul volto.", + "example_sentence_english": "She had a radiant smile on her face.", + "pos": "adjective", + "word_frequency": 23234 + }, + { + "word": "rasato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shaved", + "romanization": "rasato", + "example_sentence_native": "Ha i capelli rasati a zero.", + "example_sentence_english": "He has a shaved head.", + "pos": "adjective", + "word_frequency": 23236 + }, + { + "word": "regolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ruler", + "romanization": "regolo", + "example_sentence_native": "Usa il regolo per disegnare una linea dritta.", + "example_sentence_english": "Use the ruler to draw a straight line.", + "pos": "noun", + "word_frequency": 23238 + }, + { + "word": "regresso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "regression", + "romanization": "regresso", + "example_sentence_native": "Non possiamo permetterci un regresso economico.", + "example_sentence_english": "We cannot afford an economic regression.", + "pos": "noun", + "word_frequency": 23239 + }, + { + "word": "ricattare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to blackmail", + "romanization": "ricattare", + "example_sentence_native": "È illegale ricattare qualcuno per ottenere denaro.", + "example_sentence_english": "It is illegal to blackmail someone for money.", + "pos": "verb", + "word_frequency": 23241 + }, + { + "word": "rinfresco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshment", + "romanization": "rinfresco", + "example_sentence_native": "Dopo la cerimonia, ci sarà un piccolo rinfresco per tutti gli invitati.", + "example_sentence_english": "After the ceremony, there will be a small refreshment for all guests.", + "pos": "noun", + "word_frequency": 23242 + }, + { + "word": "risplendere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shine brightly", + "romanization": "risplendere", + "example_sentence_native": "Le stelle risplendevano nel cielo notturno, creando uno spettacolo magnifico.", + "example_sentence_english": "The stars shone brightly in the night sky, creating a magnificent spectacle.", + "pos": "verb", + "word_frequency": 23243 + }, + { + "word": "riveduto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "revised", + "romanization": "riveduto", + "example_sentence_native": "La versione riveduta del documento è stata approvata dal comitato.", + "example_sentence_english": "The revised version of the document was approved by the committee.", + "pos": "adjective", + "word_frequency": 23244 + }, + { + "word": "rivoluzionato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revolutionized", + "romanization": "rivoluzionato", + "example_sentence_native": "Internet ha rivoluzionato il modo in cui comunichiamo e accediamo alle informazioni.", + "example_sentence_english": "The Internet has revolutionized the way we communicate and access information.", + "pos": "adjective", + "word_frequency": 23245 + }, + { + "word": "rocchetta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small fortress", + "romanization": "rocchetta", + "example_sentence_native": "Sulla cima della collina si ergeva un'antica rocchetta, ora in rovina.", + "example_sentence_english": "On the hilltop stood an ancient small fortress, now in ruins.", + "pos": "noun", + "word_frequency": 23246 + }, + { + "word": "rompicapo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puzzle", + "romanization": "rompicapo", + "example_sentence_native": "Questo problema di matematica è un vero rompicapo per me.", + "example_sentence_english": "This math problem is a real puzzle for me.", + "pos": "noun", + "word_frequency": 23247 + }, + { + "word": "ruggito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roar", + "romanization": "ruggito", + "example_sentence_native": "Abbiamo sentito il potente ruggito di un leone provenire dalla savana.", + "example_sentence_english": "We heard the powerful roar of a lion coming from the savanna.", + "pos": "noun", + "word_frequency": 23248 + }, + { + "word": "sauro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lizard", + "romanization": "sauro", + "example_sentence_native": "Un piccolo sauro si è arrampicato rapidamente sul muro assolato.", + "example_sentence_english": "A small lizard quickly climbed the sunny wall.", + "pos": "noun", + "word_frequency": 23250 + }, + { + "word": "scantinato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basement", + "romanization": "scantinato", + "example_sentence_native": "Abbiamo riposto tutte le vecchie scatole nello scantinato.", + "example_sentence_english": "We stored all the old boxes in the basement.", + "pos": "noun", + "word_frequency": 23251 + }, + { + "word": "scatolone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "large box", + "romanization": "scatolone", + "example_sentence_native": "Ho bisogno di uno scatolone grande per spedire questo pacco.", + "example_sentence_english": "I need a large box to send this package.", + "pos": "noun", + "word_frequency": 23252 + }, + { + "word": "sceneggiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "TV drama", + "romanization": "sceneggiato", + "example_sentence_native": "Quel vecchio sceneggiato televisivo è ancora molto amato dal pubblico.", + "example_sentence_english": "That old TV drama is still very much loved by the public.", + "pos": "noun", + "word_frequency": 23253 + }, + { + "word": "serenata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "serenade", + "romanization": "serenata", + "example_sentence_native": "Le ha cantato una romantica serenata sotto la sua finestra.", + "example_sentence_english": "He sang her a romantic serenade under her window.", + "pos": "noun", + "word_frequency": 23254 + }, + { + "word": "serpe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "snake", + "romanization": "serpe", + "example_sentence_native": "Attenzione, c'è una serpe nascosta tra le rocce.", + "example_sentence_english": "Be careful, there's a snake hidden among the rocks.", + "pos": "noun", + "word_frequency": 23255 + }, + { + "word": "servile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "servile", + "romanization": "servile", + "example_sentence_native": "Il suo atteggiamento eccessivamente servile non era apprezzato.", + "example_sentence_english": "His excessively servile attitude was not appreciated.", + "pos": "adjective", + "word_frequency": 23256 + }, + { + "word": "sodomia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "sodomy", + "romanization": "sodomia", + "example_sentence_native": "Il termine 'sodomia' ha una lunga storia nel diritto e nella teologia.", + "example_sentence_english": "The term 'sodomy' has a long history in law and theology.", + "pos": "noun", + "word_frequency": 23258 + }, + { + "word": "soggiornare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stay", + "romanization": "soggiornare", + "example_sentence_native": "Abbiamo deciso di soggiornare in un piccolo albergo nel centro storico.", + "example_sentence_english": "We decided to stay in a small hotel in the historic center.", + "pos": "verb", + "word_frequency": 23259 + }, + { + "word": "sognato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dreamed", + "romanization": "sognato", + "example_sentence_native": "Era la casa che aveva sempre sognato fin da bambino.", + "example_sentence_english": "It was the house he had always dreamed of since he was a child.", + "pos": "adjective", + "word_frequency": 23260 + }, + { + "word": "somministrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "administered", + "romanization": "somministrato", + "example_sentence_native": "Il farmaco è stato somministrato al paziente secondo le istruzioni del medico.", + "example_sentence_english": "The medication was administered to the patient according to the doctor's instructions.", + "pos": "adjective", + "word_frequency": 23261 + }, + { + "word": "sopportazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endurance", + "romanization": "sopportazione", + "example_sentence_native": "La sua sopportazione per le ingiustizie era quasi inesistente.", + "example_sentence_english": "His endurance for injustices was almost non-existent.", + "pos": "noun", + "word_frequency": 23263 + }, + { + "word": "sorpassare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to overtake", + "romanization": "sorpassare", + "example_sentence_native": "È pericoloso sorpassare in curva, specialmente con il traffico.", + "example_sentence_english": "It is dangerous to overtake on a curve, especially with traffic.", + "pos": "verb", + "word_frequency": 23264 + }, + { + "word": "spazioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "spacious", + "romanization": "spazioso", + "example_sentence_native": "L'appartamento era molto spazioso e aveva una vista mozzafiato sul mare.", + "example_sentence_english": "The apartment was very spacious and had a breathtaking view of the sea.", + "pos": "adjective", + "word_frequency": 23267 + }, + { + "word": "sprecato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wasted", + "romanization": "sprecato", + "example_sentence_native": "È un peccato che il suo talento sia andato sprecato in quel lavoro.", + "example_sentence_english": "It's a shame that his talent was wasted in that job.", + "pos": "adjective", + "word_frequency": 23268 + }, + { + "word": "spronare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to spur on", + "romanization": "spronare", + "example_sentence_native": "L'allenatore ha cercato di spronare la squadra a dare il massimo.", + "example_sentence_english": "The coach tried to spur on the team to give their best.", + "pos": "verb", + "word_frequency": 23269 + }, + { + "word": "stivaletto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ankle boot", + "romanization": "stivaletto", + "example_sentence_native": "Ha indossato un paio di stivaletti di pelle neri per la serata.", + "example_sentence_english": "She wore a pair of black leather ankle boots for the evening.", + "pos": "noun", + "word_frequency": 23271 + }, + { + "word": "svantaggiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disadvantaged", + "romanization": "svantaggiato", + "example_sentence_native": "Il programma mira ad aiutare gli studenti provenienti da contesti svantaggiati.", + "example_sentence_english": "The program aims to help students from disadvantaged backgrounds.", + "pos": "adjective", + "word_frequency": 23274 + }, + { + "word": "tappetino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small rug", + "romanization": "tappetino", + "example_sentence_native": "C'è un tappetino di benvenuto proprio davanti alla porta d'ingresso.", + "example_sentence_english": "There is a welcome small rug right in front of the entrance door.", + "pos": "noun", + "word_frequency": 23278 + }, + { + "word": "tattoo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tattoo", + "romanization": "tattoo", + "example_sentence_native": "Si è fatto un nuovo tattoo sul braccio, un disegno molto elaborato.", + "example_sentence_english": "He got a new tattoo on his arm, a very elaborate design.", + "pos": "noun", + "word_frequency": 23279 + }, + { + "word": "telegrafo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telegraph", + "romanization": "telegrafo", + "example_sentence_native": "Il telegrafo è stato un mezzo di comunicazione rivoluzionario.", + "example_sentence_english": "The telegraph was a revolutionary means of communication.", + "pos": "noun", + "word_frequency": 23280 + }, + { + "word": "terrier", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "terrier", + "romanization": "terrier", + "example_sentence_native": "Il mio cane è un piccolo terrier.", + "example_sentence_english": "My dog is a small terrier.", + "pos": "noun", + "word_frequency": 23282 + }, + { + "word": "tetro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy;dismal", + "romanization": "tetro", + "example_sentence_native": "Il cielo era tetro e minacciava pioggia.", + "example_sentence_english": "The sky was gloomy and threatened rain.", + "pos": "adjective", + "word_frequency": 23283 + }, + { + "word": "tifa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cattail;bulrush", + "romanization": "tifa", + "example_sentence_native": "Le tife crescono lungo le sponde del lago.", + "example_sentence_english": "Cattails grow along the lake shores.", + "pos": "noun", + "word_frequency": 23286 + }, + { + "word": "toponimo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "toponym;place name", + "romanization": "toponimo", + "example_sentence_native": "Lo studio dei toponimi è affascinante per capire la storia di un luogo.", + "example_sentence_english": "The study of toponyms is fascinating for understanding the history of a place.", + "pos": "noun", + "word_frequency": 23287 + }, + { + "word": "tuorlo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "yolk (of an egg)", + "romanization": "tuorlo", + "example_sentence_native": "Ho separato il tuorlo dall'albume.", + "example_sentence_english": "I separated the yolk from the egg white.", + "pos": "noun", + "word_frequency": 23289 + }, + { + "word": "ultrasuono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ultrasound", + "romanization": "ultrasuono", + "example_sentence_native": "L'ecografia utilizza gli ultrasuoni per creare immagini.", + "example_sentence_english": "Ultrasound uses ultrasounds to create images.", + "pos": "noun", + "word_frequency": 23292 + }, + { + "word": "velina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tissue paper", + "romanization": "velina", + "example_sentence_native": "Ho bisogno di una velina per il naso.", + "example_sentence_english": "I need a tissue for my nose.", + "pos": "noun", + "word_frequency": 23296 + }, + { + "word": "ventiquattr'ore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twenty-four hours", + "romanization": "ventiquattr'ore", + "example_sentence_native": "Il negozio è aperto ventiquattr'ore su ventiquattro.", + "example_sentence_english": "The shop is open twenty-four hours a day.", + "pos": "noun", + "word_frequency": 23297 + }, + { + "word": "villino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small villa;cottage", + "romanization": "villino", + "example_sentence_native": "Hanno comprato un grazioso villino in campagna.", + "example_sentence_english": "They bought a charming small villa in the countryside.", + "pos": "noun", + "word_frequency": 23298 + }, + { + "word": "visore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "viewer;visor;headset", + "romanization": "visore", + "example_sentence_native": "Il visore per la realtà virtuale offre un'esperienza immersiva.", + "example_sentence_english": "The virtual reality headset offers an immersive experience.", + "pos": "noun", + "word_frequency": 23299 + }, + { + "word": "abbate", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "abbot", + "romanization": "abbate", + "example_sentence_native": "L'abbate guidava la comunità monastica.", + "example_sentence_english": "The abbot led the monastic community.", + "pos": "noun", + "word_frequency": 23306 + }, + { + "word": "acchiappare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to catch;to grab", + "romanization": "acchiappare", + "example_sentence_native": "Il bambino ha cercato di acchiappare la farfalla.", + "example_sentence_english": "The child tried to catch the butterfly.", + "pos": "verb", + "word_frequency": 23307 + }, + { + "word": "accoglimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acceptance;reception;welcome", + "romanization": "accoglimento", + "example_sentence_native": "La proposta ha ricevuto un buon accoglimento.", + "example_sentence_english": "The proposal received a good acceptance.", + "pos": "noun", + "word_frequency": 23308 + }, + { + "word": "accresciuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "increased;grown;enhanced", + "romanization": "accresciuto", + "example_sentence_native": "Il suo interesse per l'arte è accresciuto nel tempo.", + "example_sentence_english": "His interest in art has increased over time.", + "pos": "adjective", + "word_frequency": 23309 + }, + { + "word": "afferente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "afferent;pertaining to;relating to", + "romanization": "afferente", + "example_sentence_native": "Le informazioni afferenti al progetto sono riservate.", + "example_sentence_english": "The information pertaining to the project is confidential.", + "pos": "adjective", + "word_frequency": 23311 + }, + { + "word": "alcolista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "alcoholic", + "romanization": "alcolista", + "example_sentence_native": "L'alcolista ha bisogno di aiuto professionale.", + "example_sentence_english": "The alcoholic needs professional help.", + "pos": "noun", + "word_frequency": 23312 + }, + { + "word": "amuleto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "amulet;charm", + "romanization": "amuleto", + "example_sentence_native": "Indossava un amuleto per buona fortuna.", + "example_sentence_english": "He wore an amulet for good luck.", + "pos": "noun", + "word_frequency": 23318 + }, + { + "word": "aramaico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Aramaic", + "romanization": "aramaico", + "example_sentence_native": "L'aramaico è una lingua semitica antica.", + "example_sentence_english": "Aramaic is an ancient Semitic language.", + "pos": "adjective", + "word_frequency": 23320 + }, + { + "word": "arazzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tapestry", + "romanization": "arazzo", + "example_sentence_native": "Un bellissimo arazzo decorava la parete del castello.", + "example_sentence_english": "A beautiful tapestry decorated the castle wall.", + "pos": "noun", + "word_frequency": 23321 + }, + { + "word": "armadietto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "locker;small cabinet", + "romanization": "armadietto", + "example_sentence_native": "Ho messo i miei libri nell'armadietto.", + "example_sentence_english": "I put my books in the locker.", + "pos": "noun", + "word_frequency": 23323 + }, + { + "word": "avarizia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avarice;greed", + "romanization": "avarizia", + "example_sentence_native": "L'avarizia è uno dei sette peccati capitali.", + "example_sentence_english": "Avarice is one of the seven deadly sins.", + "pos": "noun", + "word_frequency": 23326 + }, + { + "word": "avvocatura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "legal profession;bar association", + "romanization": "avvocatura", + "example_sentence_native": "L'avvocatura italiana ha un ruolo importante nella giustizia.", + "example_sentence_english": "The Italian legal profession plays an important role in justice.", + "pos": "noun", + "word_frequency": 23327 + }, + { + "word": "baccalà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cod (salted and dried)", + "romanization": "baccalà", + "example_sentence_native": "Il baccalà è un piatto tradizionale in molte regioni.", + "example_sentence_english": "Cod is a traditional dish in many regions.", + "pos": "noun", + "word_frequency": 23328 + }, + { + "word": "bagnante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "swimmer;bather", + "romanization": "bagnante", + "example_sentence_native": "I bagnanti affollavano la spiaggia in agosto.", + "example_sentence_english": "The bathers crowded the beach in August.", + "pos": "noun", + "word_frequency": 23329 + }, + { + "word": "bandierina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small flag;pennant", + "romanization": "bandierina", + "example_sentence_native": "I bambini sventolavano le bandierine durante la parata.", + "example_sentence_english": "The children waved the small flags during the parade.", + "pos": "noun", + "word_frequency": 23330 + }, + { + "word": "benchmark", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "benchmark", + "romanization": "benchmark", + "example_sentence_native": "Dobbiamo stabilire un benchmark per misurare i progressi.", + "example_sentence_english": "We need to establish a benchmark to measure progress.", + "pos": "noun", + "word_frequency": 23333 + }, + { + "word": "biathlon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biathlon", + "romanization": "biathlon", + "example_sentence_native": "Il biathlon combina sci di fondo e tiro a segno.", + "example_sentence_english": "Biathlon combines cross-country skiing and rifle shooting.", + "pos": "noun", + "word_frequency": 23335 + }, + { + "word": "biglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marble (toy)", + "romanization": "biglia", + "example_sentence_native": "I bambini giocavano con le biglie nel cortile.", + "example_sentence_english": "The children played with marbles in the courtyard.", + "pos": "noun", + "word_frequency": 23336 + }, + { + "word": "biologicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biologically", + "romanization": "biologicamente", + "example_sentence_native": "Questo prodotto è coltivato biologicamente.", + "example_sentence_english": "This product is grown biologically.", + "pos": "adverb", + "word_frequency": 23337 + }, + { + "word": "bivacco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bivouac;temporary camp", + "romanization": "bivacco", + "example_sentence_native": "Abbiamo fatto un bivacco sotto le stelle.", + "example_sentence_english": "We made a bivouac under the stars.", + "pos": "noun", + "word_frequency": 23338 + }, + { + "word": "boost", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boost;increase", + "romanization": "boost", + "example_sentence_native": "Questo progetto darà un boost alla nostra economia.", + "example_sentence_english": "This project will give a boost to our economy.", + "pos": "noun", + "word_frequency": 23340 + }, + { + "word": "borderline", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "borderline", + "romanization": "borderline", + "example_sentence_native": "La situazione è considerata borderline.", + "example_sentence_english": "The situation is considered borderline.", + "pos": "adjective", + "word_frequency": 23341 + }, + { + "word": "bronchite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bronchitis", + "romanization": "bronchite", + "example_sentence_native": "Ha avuto la bronchite per una settimana.", + "example_sentence_english": "He had bronchitis for a week.", + "pos": "noun", + "word_frequency": 23344 + }, + { + "word": "buffonata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "farce;joke;silly act", + "romanization": "buffonata", + "example_sentence_native": "Quella riunione è stata una vera buffonata.", + "example_sentence_english": "That meeting was a real farce.", + "pos": "noun", + "word_frequency": 23345 + }, + { + "word": "calling", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "calling;vocation", + "romanization": "calling", + "example_sentence_native": "Ha trovato il suo vero calling nella musica.", + "example_sentence_english": "He found his true calling in music.", + "pos": "noun", + "word_frequency": 23348 + }, + { + "word": "capocannoniere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "top scorer (in football;soccer)", + "romanization": "capocannoniere", + "example_sentence_native": "È stato il capocannoniere del campionato.", + "example_sentence_english": "He was the top scorer of the championship.", + "pos": "noun", + "word_frequency": 23349 + }, + { + "word": "cappone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capon (castrated rooster)", + "romanization": "cappone", + "example_sentence_native": "Il cappone ripieno è un piatto tipico natalizio.", + "example_sentence_english": "Stuffed capon is a typical Christmas dish.", + "pos": "noun", + "word_frequency": 23350 + }, + { + "word": "capriolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roe deer", + "romanization": "capriolo", + "example_sentence_native": "Abbiamo visto un capriolo nel bosco.", + "example_sentence_english": "We saw a roe deer in the forest.", + "pos": "noun", + "word_frequency": 23351 + }, + { + "word": "castelletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small castle;turret", + "romanization": "castelletto", + "example_sentence_native": "Hanno costruito un piccolo castelletto di sabbia.", + "example_sentence_english": "They built a small sandcastle.", + "pos": "noun", + "word_frequency": 23355 + }, + { + "word": "castigliano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Castilian", + "romanization": "castigliano", + "example_sentence_native": "Lo spagnolo standard è spesso chiamato castigliano.", + "example_sentence_english": "Standard Spanish is often called Castilian.", + "pos": "adjective", + "word_frequency": 23356 + }, + { + "word": "centralizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "centralization", + "romanization": "centralizzazione", + "example_sentence_native": "La centralizzazione del potere può portare a problemi.", + "example_sentence_english": "The centralization of power can lead to problems.", + "pos": "noun", + "word_frequency": 23359 + }, + { + "word": "chiazza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stain;patch", + "romanization": "chiazza", + "example_sentence_native": "C'è una chiazza d'olio sul pavimento del garage.", + "example_sentence_english": "There's an oil stain on the garage floor.", + "pos": "noun", + "word_frequency": 23361 + }, + { + "word": "coccolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cuddle;to pamper", + "romanization": "coccolare", + "example_sentence_native": "Mi piace coccolare il mio cane dopo una lunga giornata.", + "example_sentence_english": "I like to cuddle my dog after a long day.", + "pos": "verb", + "word_frequency": 23362 + }, + { + "word": "colare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to drain;to drip", + "romanization": "colare", + "example_sentence_native": "Ricorda di colare bene la pasta prima di aggiungere il sugo.", + "example_sentence_english": "Remember to drain the pasta well before adding the sauce.", + "pos": "verb", + "word_frequency": 23363 + }, + { + "word": "collant", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tights;pantyhose", + "romanization": "collant", + "example_sentence_native": "Ho bisogno di un nuovo paio di collant neri per la festa.", + "example_sentence_english": "I need a new pair of black tights for the party.", + "pos": "noun", + "word_frequency": 23364 + }, + { + "word": "commutazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "switching;commutation", + "romanization": "commutazione", + "example_sentence_native": "Il sistema di commutazione della rete è stato aggiornato.", + "example_sentence_english": "The network switching system has been updated.", + "pos": "noun", + "word_frequency": 23365 + }, + { + "word": "compaesano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fellow countryman;fellow villager", + "romanization": "compaesano", + "example_sentence_native": "Ho incontrato un mio compaesano inaspettatamente all'estero.", + "example_sentence_english": "I unexpectedly met a fellow countryman abroad.", + "pos": "noun", + "word_frequency": 23366 + }, + { + "word": "competitor", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitor", + "romanization": "competitor", + "example_sentence_native": "Dobbiamo studiare le strategie dei nostri competitor per rimanere competitivi.", + "example_sentence_english": "We need to study our competitors' strategies to remain competitive.", + "pos": "noun", + "word_frequency": 23367 + }, + { + "word": "congolese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Congolese", + "romanization": "congolese", + "example_sentence_native": "La cucina congolese è ricca di sapori esotici.", + "example_sentence_english": "Congolese cuisine is rich in exotic flavors.", + "pos": "adjective", + "word_frequency": 23368 + }, + { + "word": "conio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coinage;minting", + "romanization": "conio", + "example_sentence_native": "Il conio delle nuove monete è un processo complesso.", + "example_sentence_english": "The minting of new coins is a complex process.", + "pos": "noun", + "word_frequency": 23369 + }, + { + "word": "consulting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "consulting", + "romanization": "consulting", + "example_sentence_native": "Lavora nel settore del consulting da oltre dieci anni.", + "example_sentence_english": "He has been working in the consulting sector for over ten years.", + "pos": "noun", + "word_frequency": 23370 + }, + { + "word": "convalidare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to validate;to confirm", + "romanization": "convalidare", + "example_sentence_native": "È necessario convalidare il biglietto prima di salire sul treno.", + "example_sentence_english": "It is necessary to validate your ticket before boarding the train.", + "pos": "verb", + "word_frequency": 23371 + }, + { + "word": "corinzio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Corinthian", + "romanization": "corinzio", + "example_sentence_native": "Il tempio greco presentava colonne in stile corinzio.", + "example_sentence_english": "The Greek temple featured Corinthian-style columns.", + "pos": "noun", + "word_frequency": 23373 + }, + { + "word": "corriera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coach;intercity bus", + "romanization": "corriera", + "example_sentence_native": "Prenderemo la corriera per raggiungere il paese vicino.", + "example_sentence_english": "We will take the coach to reach the nearby town.", + "pos": "noun", + "word_frequency": 23374 + }, + { + "word": "cremazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cremation", + "romanization": "cremazione", + "example_sentence_native": "La cremazione è una scelta sempre più comune per i funerali.", + "example_sentence_english": "Cremation is an increasingly common choice for funerals.", + "pos": "noun", + "word_frequency": 23375 + }, + { + "word": "decalogo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decalogue;ten commandments", + "romanization": "decalogo", + "example_sentence_native": "Il decalogo di regole è stato affisso all'ingresso.", + "example_sentence_english": "The decalogue of rules was posted at the entrance.", + "pos": "noun", + "word_frequency": 23380 + }, + { + "word": "decentramento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decentralization", + "romanization": "decentramento", + "example_sentence_native": "Il decentramento dei poteri è un tema politico importante.", + "example_sentence_english": "The decentralization of powers is an important political issue.", + "pos": "noun", + "word_frequency": 23381 + }, + { + "word": "deputazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deputation;delegation", + "romanization": "deputazione", + "example_sentence_native": "Una deputazione di studenti ha incontrato il rettore.", + "example_sentence_english": "A deputation of students met the rector.", + "pos": "noun", + "word_frequency": 23392 + }, + { + "word": "developer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "developer", + "romanization": "developer", + "example_sentence_native": "Il team sta cercando un nuovo developer per il progetto.", + "example_sentence_english": "The team is looking for a new developer for the project.", + "pos": "noun", + "word_frequency": 23393 + }, + { + "word": "dialettico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dialectic;dialectical", + "romanization": "dialettico", + "example_sentence_native": "Il confronto dialettico ha portato a nuove conclusioni.", + "example_sentence_english": "The dialectical confrontation led to new conclusions.", + "pos": "adjective", + "word_frequency": 23394 + }, + { + "word": "diluire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dilute", + "romanization": "diluire", + "example_sentence_native": "È consigliabile diluire il detersivo con acqua prima dell'uso.", + "example_sentence_english": "It is advisable to dilute the detergent with water before use.", + "pos": "verb", + "word_frequency": 23395 + }, + { + "word": "disamina", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "examination;analysis", + "romanization": "disamina", + "example_sentence_native": "Ha presentato una disamina dettagliata della situazione economica.", + "example_sentence_english": "He presented a detailed examination of the economic situation.", + "pos": "noun", + "word_frequency": 23396 + }, + { + "word": "discernere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to discern;to distinguish", + "romanization": "discernere", + "example_sentence_native": "È difficile discernere la verità dalle voci infondate.", + "example_sentence_english": "It's difficult to discern truth from unfounded rumors.", + "pos": "verb", + "word_frequency": 23397 + }, + { + "word": "dispiegamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deployment;unfolding", + "romanization": "dispiegamento", + "example_sentence_native": "Il dispiegamento di forze militari è stato rapido.", + "example_sentence_english": "The deployment of military forces was rapid.", + "pos": "noun", + "word_frequency": 23398 + }, + { + "word": "dissuadere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to dissuade", + "romanization": "dissuadere", + "example_sentence_native": "Ho cercato di dissuaderlo dal prendere quella decisione rischiosa.", + "example_sentence_english": "I tried to dissuade him from making that risky decision.", + "pos": "verb", + "word_frequency": 23399 + }, + { + "word": "diversificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diversified", + "romanization": "diversificato", + "example_sentence_native": "Il portafoglio di investimenti è stato diversificato per ridurre il rischio.", + "example_sentence_english": "The investment portfolio has been diversified to reduce risk.", + "pos": "adjective", + "word_frequency": 23400 + }, + { + "word": "effimero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ephemeral", + "romanization": "effimero", + "example_sentence_native": "La bellezza della farfalla è effimera.", + "example_sentence_english": "The beauty of the butterfly is ephemeral.", + "pos": "adjective", + "word_frequency": 23405 + }, + { + "word": "eguagliare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to equal;to match", + "romanization": "eguagliare", + "example_sentence_native": "Nessuno può eguagliare la sua abilità nel canto.", + "example_sentence_english": "No one can equal his singing ability.", + "pos": "verb", + "word_frequency": 23406 + }, + { + "word": "emulatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emulator", + "romanization": "emulatore", + "example_sentence_native": "Ho usato un emulatore per giocare a vecchi videogiochi.", + "example_sentence_english": "I used an emulator to play old video games.", + "pos": "noun", + "word_frequency": 23409 + }, + { + "word": "erroneo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "erroneous;mistaken", + "romanization": "erroneo", + "example_sentence_native": "La sua conclusione era completamente erronea.", + "example_sentence_english": "His conclusion was completely erroneous.", + "pos": "adjective", + "word_frequency": 23411 + }, + { + "word": "esattore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tax collector;debt collector", + "romanization": "esattore", + "example_sentence_native": "L'esattore delle tasse ha bussato alla sua porta.", + "example_sentence_english": "The tax collector knocked on his door.", + "pos": "noun", + "word_frequency": 23412 + }, + { + "word": "esibizionista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhibitionist", + "romanization": "esibizionista", + "example_sentence_native": "Era un vero esibizionista sul palco.", + "example_sentence_english": "He was a true exhibitionist on stage.", + "pos": "noun", + "word_frequency": 23413 + }, + { + "word": "esorcismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exorcism", + "romanization": "esorcismo", + "example_sentence_native": "Il film parlava di un antico rito di esorcismo.", + "example_sentence_english": "The film was about an ancient exorcism ritual.", + "pos": "noun", + "word_frequency": 23414 + }, + { + "word": "espiazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "atonement;expiation", + "romanization": "espiazione", + "example_sentence_native": "Cercava l'espiazione per i suoi peccati passati.", + "example_sentence_english": "He sought atonement for his past sins.", + "pos": "noun", + "word_frequency": 23415 + }, + { + "word": "ettolitro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hectoliter", + "romanization": "ettolitro", + "example_sentence_native": "La produzione di vino è stata di cento ettolitri quest'anno.", + "example_sentence_english": "The wine production was one hundred hectoliters this year.", + "pos": "noun", + "word_frequency": 23416 + }, + { + "word": "ferrata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "via ferrata (iron path)", + "romanization": "ferrata", + "example_sentence_native": "Abbiamo percorso una via ferrata mozzafiato sulle Dolomiti.", + "example_sentence_english": "We hiked a breathtaking via ferrata in the Dolomites.", + "pos": "noun", + "word_frequency": 23418 + }, + { + "word": "fiammingo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Flemish", + "romanization": "fiammingo", + "example_sentence_native": "Ha studiato l'arte fiamminga del XVII secolo.", + "example_sentence_english": "He studied 17th-century Flemish art.", + "pos": "adjective", + "word_frequency": 23419 + }, + { + "word": "filare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spin (thread);to run smoothly;to go", + "romanization": "filare", + "example_sentence_native": "La nonna amava filare la lana.", + "example_sentence_english": "Grandma loved to spin wool.", + "pos": "verb", + "word_frequency": 23420 + }, + { + "word": "fogliame", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "foliage", + "romanization": "fogliame", + "example_sentence_native": "Il fogliame autunnale era di un rosso brillante.", + "example_sentence_english": "The autumn foliage was a brilliant red.", + "pos": "noun", + "word_frequency": 23421 + }, + { + "word": "ginestra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "broom (plant)", + "romanization": "ginestra", + "example_sentence_native": "I campi erano pieni di ginestre in fiore.", + "example_sentence_english": "The fields were full of flowering broom.", + "pos": "noun", + "word_frequency": 23433 + }, + { + "word": "gittata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "range;throw;reach", + "romanization": "gittata", + "example_sentence_native": "La gittata del cannone era impressionante.", + "example_sentence_english": "The cannon's range was impressive.", + "pos": "noun", + "word_frequency": 23434 + }, + { + "word": "gozzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "goiter;small fishing boat", + "romanization": "gozzo", + "example_sentence_native": "Il pescatore usciva in mare con il suo piccolo gozzo.", + "example_sentence_english": "The fisherman went out to sea with his small fishing boat.", + "pos": "noun", + "word_frequency": 23437 + }, + { + "word": "grafite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "graphite", + "romanization": "grafite", + "example_sentence_native": "La mina della matita è fatta di grafite.", + "example_sentence_english": "The pencil lead is made of graphite.", + "pos": "noun", + "word_frequency": 23439 + }, + { + "word": "granello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grain;speck", + "romanization": "granello", + "example_sentence_native": "C'è un granello di sabbia nel mio occhio.", + "example_sentence_english": "There's a grain of sand in my eye.", + "pos": "noun", + "word_frequency": 23440 + }, + { + "word": "gratificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gratification;reward", + "romanization": "gratificazione", + "example_sentence_native": "La gratificazione di un lavoro ben fatto è impagabile.", + "example_sentence_english": "The gratification of a job well done is priceless.", + "pos": "noun", + "word_frequency": 23441 + }, + { + "word": "idealismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idealism", + "romanization": "idealismo", + "example_sentence_native": "Il suo idealismo lo spinge a lottare per la giustizia.", + "example_sentence_english": "His idealism drives him to fight for justice.", + "pos": "noun", + "word_frequency": 23449 + }, + { + "word": "impreparato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unprepared", + "romanization": "impreparato", + "example_sentence_native": "Si sentiva impreparato per l'esame.", + "example_sentence_english": "He felt unprepared for the exam.", + "pos": "adjective", + "word_frequency": 23451 + }, + { + "word": "inadempimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "non-fulfillment;default;breach", + "romanization": "inadempimento", + "example_sentence_native": "L'inadempimento del contratto ha portato a conseguenze legali.", + "example_sentence_english": "The non-fulfillment of the contract led to legal consequences.", + "pos": "noun", + "word_frequency": 23452 + }, + { + "word": "incontenibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncontrollable;irrepressible", + "romanization": "incontenibile", + "example_sentence_native": "La sua gioia era incontenibile.", + "example_sentence_english": "His joy was uncontrollable.", + "pos": "adjective", + "word_frequency": 23453 + }, + { + "word": "indottrinamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indoctrination", + "romanization": "indottrinamento", + "example_sentence_native": "L'indottrinamento può limitare il pensiero critico.", + "example_sentence_english": "Indoctrination can limit critical thinking.", + "pos": "noun", + "word_frequency": 23454 + }, + { + "word": "infermo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "invalid;sick person", + "romanization": "infermo", + "example_sentence_native": "L'infermo necessita di cure costanti.", + "example_sentence_english": "The invalid requires constant care.", + "pos": "noun", + "word_frequency": 23455 + }, + { + "word": "insonne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sleepless;insomniac", + "romanization": "insonne", + "example_sentence_native": "Ho passato una notte insonne.", + "example_sentence_english": "I spent a sleepless night.", + "pos": "adjective", + "word_frequency": 23456 + }, + { + "word": "intersecare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intersect", + "romanization": "intersecare", + "example_sentence_native": "Le due strade si intersecano al semaforo.", + "example_sentence_english": "The two roads intersect at the traffic light.", + "pos": "verb", + "word_frequency": 23457 + }, + { + "word": "lacrimogeno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tear gas", + "romanization": "lacrimogeno", + "example_sentence_native": "La polizia ha usato gas lacrimogeno per disperdere la folla.", + "example_sentence_english": "The police used tear gas to disperse the crowd.", + "pos": "noun", + "word_frequency": 23461 + }, + { + "word": "magnetismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "magnetism", + "romanization": "magnetismo", + "example_sentence_native": "Il magnetismo è una forza fondamentale della natura.", + "example_sentence_english": "Magnetism is a fundamental force of nature.", + "pos": "noun", + "word_frequency": 23467 + }, + { + "word": "manipolatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manipulator", + "romanization": "manipolatore", + "example_sentence_native": "È difficile fidarsi di un manipolatore.", + "example_sentence_english": "It's hard to trust a manipulator.", + "pos": "noun", + "word_frequency": 23468 + }, + { + "word": "marmoreo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marmoreal;marble-like", + "romanization": "marmoreo", + "example_sentence_native": "La statua aveva un aspetto marmoreo.", + "example_sentence_english": "The statue had a marmoreal appearance.", + "pos": "adjective", + "word_frequency": 23471 + }, + { + "word": "milite", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "soldier;serviceman", + "romanization": "milite", + "example_sentence_native": "Il milite ignoto è un simbolo di tutti i caduti in guerra.", + "example_sentence_english": "The unknown soldier is a symbol of all those who fell in war.", + "pos": "noun", + "word_frequency": 23476 + }, + { + "word": "minimale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimal", + "romanization": "minimale", + "example_sentence_native": "Ha uno stile di vita minimale.", + "example_sentence_english": "He has a minimal lifestyle.", + "pos": "adjective", + "word_frequency": 23477 + }, + { + "word": "morfologico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "morphological", + "romanization": "morfologico", + "example_sentence_native": "L'analisi morfologica di una parola è fondamentale per capirne la struttura.", + "example_sentence_english": "The morphological analysis of a word is fundamental to understanding its structure.", + "pos": "adjective", + "word_frequency": 23481 + }, + { + "word": "narrante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrating;storytelling", + "romanization": "narrante", + "example_sentence_native": "La voce narrante del documentario era molto coinvolgente.", + "example_sentence_english": "The narrating voice of the documentary was very engaging.", + "pos": "adjective", + "word_frequency": 23483 + }, + { + "word": "negoziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiating;transactional", + "romanization": "negoziale", + "example_sentence_native": "Le parti hanno raggiunto un accordo negoziale dopo lunghe discussioni.", + "example_sentence_english": "The parties reached a negotiating agreement after long discussions.", + "pos": "adjective", + "word_frequency": 23484 + }, + { + "word": "omologo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "homologous;counterpart", + "romanization": "omologo", + "example_sentence_native": "Il ministro italiano ha incontrato il suo omologo francese.", + "example_sentence_english": "The Italian minister met his French counterpart.", + "pos": "adjective", + "word_frequency": 23487 + }, + { + "word": "ordito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warp (textile);plot;scheme", + "romanization": "ordito", + "example_sentence_native": "L'ordito della trama era molto complesso.", + "example_sentence_english": "The plot of the story was very complex.", + "pos": "noun", + "word_frequency": 23488 + }, + { + "word": "ortica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nettle", + "romanization": "ortica", + "example_sentence_native": "Ho toccato un'ortica e mi è venuto il prurito.", + "example_sentence_english": "I touched a nettle and it made me itch.", + "pos": "noun", + "word_frequency": 23490 + }, + { + "word": "outsider", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "outsider", + "romanization": "outsider", + "example_sentence_native": "Era considerato un outsider nel mondo della politica.", + "example_sentence_english": "He was considered an outsider in the world of politics.", + "pos": "noun", + "word_frequency": 23491 + }, + { + "word": "papavero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poppy", + "romanization": "papavero", + "example_sentence_native": "I campi erano pieni di papaveri rossi.", + "example_sentence_english": "The fields were full of red poppies.", + "pos": "noun", + "word_frequency": 23493 + }, + { + "word": "paramedico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paramedic", + "romanization": "paramedico", + "example_sentence_native": "Il paramedico è arrivato rapidamente sulla scena dell'incidente.", + "example_sentence_english": "The paramedic arrived quickly at the scene of the accident.", + "pos": "noun", + "word_frequency": 23494 + }, + { + "word": "pasquetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Easter Monday", + "romanization": "pasquetta", + "example_sentence_native": "A Pasquetta faremo un picnic in campagna.", + "example_sentence_english": "On Easter Monday we will have a picnic in the countryside.", + "pos": "noun", + "word_frequency": 23496 + }, + { + "word": "patentino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "license;permit (small)", + "romanization": "patentino", + "example_sentence_native": "Ha preso il patentino per guidare il motorino.", + "example_sentence_english": "He got his license to drive the moped.", + "pos": "noun", + "word_frequency": 23497 + }, + { + "word": "phishing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "phishing", + "romanization": "phishing", + "example_sentence_native": "Fai attenzione alle email di phishing, potrebbero rubarti i dati.", + "example_sentence_english": "Be careful with phishing emails, they could steal your data.", + "pos": "noun", + "word_frequency": 23499 + }, + { + "word": "piazzamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "placement;ranking", + "romanization": "piazzamento", + "example_sentence_native": "Ha ottenuto un buon piazzamento nella gara.", + "example_sentence_english": "He achieved a good placement in the race.", + "pos": "noun", + "word_frequency": 23500 + }, + { + "word": "pidocchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "louse", + "romanization": "pidocchio", + "example_sentence_native": "I bambini a scuola a volte prendono i pidocchi.", + "example_sentence_english": "Children at school sometimes get lice.", + "pos": "noun", + "word_frequency": 23501 + }, + { + "word": "pinta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pint", + "romanization": "pinta", + "example_sentence_native": "Vorrei una pinta di birra, per favore.", + "example_sentence_english": "I would like a pint of beer, please.", + "pos": "noun", + "word_frequency": 23503 + }, + { + "word": "prestabilito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-established;predetermined", + "romanization": "prestabilito", + "example_sentence_native": "Il risultato era già prestabilito.", + "example_sentence_english": "The result was already predetermined.", + "pos": "adjective", + "word_frequency": 23512 + }, + { + "word": "quassù", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "up here;up above", + "romanization": "quassù", + "example_sentence_native": "Vieni quassù, la vista è magnifica!", + "example_sentence_english": "Come up here, the view is magnificent!", + "pos": "adverb", + "word_frequency": 23515 + }, + { + "word": "realisticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "realistically", + "romanization": "realisticamente", + "example_sentence_native": "Realisticamente, non abbiamo molte possibilità di vincere.", + "example_sentence_english": "Realistically, we don't have many chances to win.", + "pos": "adverb", + "word_frequency": 23519 + }, + { + "word": "referendario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "referendum official", + "romanization": "referendario", + "example_sentence_native": "Il referendario ha presentato il rapporto finale.", + "example_sentence_english": "The referendum official presented the final report.", + "pos": "noun", + "word_frequency": 23520 + }, + { + "word": "regolabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjustable", + "romanization": "regolabile", + "example_sentence_native": "La sedia ha un'altezza regolabile.", + "example_sentence_english": "The chair has an adjustable height.", + "pos": "adjective", + "word_frequency": 23522 + }, + { + "word": "repressivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repressive", + "romanization": "repressivo", + "example_sentence_native": "Il governo ha adottato misure repressive.", + "example_sentence_english": "The government adopted repressive measures.", + "pos": "adjective", + "word_frequency": 23523 + }, + { + "word": "ressa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crowd;crush", + "romanization": "ressa", + "example_sentence_native": "C'era una gran ressa all'ingresso del concerto.", + "example_sentence_english": "There was a big crowd at the concert entrance.", + "pos": "noun", + "word_frequency": 23524 + }, + { + "word": "ricino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "castor bean;castor oil", + "romanization": "ricino", + "example_sentence_native": "L'olio di ricino è usato in cosmetica.", + "example_sentence_english": "Castor oil is used in cosmetics.", + "pos": "noun", + "word_frequency": 23526 + }, + { + "word": "ripresentare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to re-present;to resubmit", + "romanization": "ripresentare", + "example_sentence_native": "Dovremo ripresentare la domanda con le correzioni.", + "example_sentence_english": "We will have to resubmit the application with the corrections.", + "pos": "verb", + "word_frequency": 23527 + }, + { + "word": "ruberia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "theft;swindle;rip-off", + "romanization": "ruberia", + "example_sentence_native": "Quel prezzo è una vera ruberia!", + "example_sentence_english": "That price is a real rip-off!", + "pos": "noun", + "word_frequency": 23530 + }, + { + "word": "sanguisuga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "leech", + "romanization": "sanguisuga", + "example_sentence_native": "Le sanguisughe erano usate in medicina in passato.", + "example_sentence_english": "Leeches were used in medicine in the past.", + "pos": "noun", + "word_frequency": 23533 + }, + { + "word": "sari", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sari", + "romanization": "sari", + "example_sentence_native": "Ha indossato un bellissimo sari per la cerimonia.", + "example_sentence_english": "She wore a beautiful sari for the ceremony.", + "pos": "noun", + "word_frequency": 23535 + }, + { + "word": "saudi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Saudis;Saudi (plural)", + "romanization": "saudi", + "example_sentence_native": "I principi saudi hanno visitato la città.", + "example_sentence_english": "The Saudi princes visited the city.", + "pos": "noun", + "word_frequency": 23536 + }, + { + "word": "sbandato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disoriented;stray;aimless", + "romanization": "sbandato", + "example_sentence_native": "Si sentiva completamente sbandato dopo la notizia.", + "example_sentence_english": "He felt completely disoriented after the news.", + "pos": "adjective", + "word_frequency": 23538 + }, + { + "word": "sbornia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hangover", + "romanization": "sbornia", + "example_sentence_native": "Mi sono svegliato con una terribile sbornia.", + "example_sentence_english": "I woke up with a terrible hangover.", + "pos": "noun", + "word_frequency": 23539 + }, + { + "word": "schermare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to shield;to screen", + "romanization": "schermare", + "example_sentence_native": "Ha usato la mano per schermare gli occhi dal sole.", + "example_sentence_english": "He used his hand to shield his eyes from the sun.", + "pos": "verb", + "word_frequency": 23540 + }, + { + "word": "scioltezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fluency;ease;looseness", + "romanization": "scioltezza", + "example_sentence_native": "Parla inglese con grande scioltezza.", + "example_sentence_english": "She speaks English with great fluency.", + "pos": "noun", + "word_frequency": 23541 + }, + { + "word": "sconsiderato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "thoughtless;inconsiderate;reckless", + "romanization": "sconsiderato", + "example_sentence_native": "La sua decisione è stata sconsiderata e ha causato problemi.", + "example_sentence_english": "His decision was thoughtless and caused problems.", + "pos": "adjective", + "word_frequency": 23542 + }, + { + "word": "scrutatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "poll worker;teller (at elections)", + "romanization": "scrutatore", + "example_sentence_native": "Gli scrutatori contano i voti dopo la chiusura dei seggi.", + "example_sentence_english": "The poll workers count the votes after the polling stations close.", + "pos": "noun", + "word_frequency": 23543 + }, + { + "word": "secchia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bucket;pail", + "romanization": "secchia", + "example_sentence_native": "Ha riempito la secchia d'acqua.", + "example_sentence_english": "He filled the bucket with water.", + "pos": "noun", + "word_frequency": 23544 + }, + { + "word": "secchione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nerd;bookworm (colloquial)", + "romanization": "secchione", + "example_sentence_native": "È un vero secchione, studia sempre.", + "example_sentence_english": "He's a real bookworm, he's always studying.", + "pos": "noun", + "word_frequency": 23545 + }, + { + "word": "sensazionalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sensationalism", + "romanization": "sensazionalismo", + "example_sentence_native": "I media sono spesso accusati di sensazionalismo.", + "example_sentence_english": "The media are often accused of sensationalism.", + "pos": "noun", + "word_frequency": 23546 + }, + { + "word": "sfizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whim;craving;fancy", + "romanization": "sfizio", + "example_sentence_native": "Ho comprato quel libro solo per sfizio.", + "example_sentence_english": "I bought that book just on a whim.", + "pos": "noun", + "word_frequency": 23547 + }, + { + "word": "sganciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to unhook;to release;to shell out (money)", + "romanization": "sganciare", + "example_sentence_native": "Ha sganciato il rimorchio dalla macchina.", + "example_sentence_english": "He unhooked the trailer from the car.", + "pos": "verb", + "word_frequency": 23548 + }, + { + "word": "sommelier", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sommelier", + "romanization": "sommelier", + "example_sentence_native": "Il sommelier ci ha consigliato un ottimo vino.", + "example_sentence_english": "The sommelier recommended an excellent wine to us.", + "pos": "noun", + "word_frequency": 23552 + }, + { + "word": "spartire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to share;to divide", + "romanization": "spartire", + "example_sentence_native": "Dobbiamo spartire i compiti equamente.", + "example_sentence_english": "We need to share the tasks equally.", + "pos": "verb", + "word_frequency": 23554 + }, + { + "word": "spasmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spasm", + "romanization": "spasmo", + "example_sentence_native": "Ha avuto uno spasmo muscolare alla gamba.", + "example_sentence_english": "He had a muscle spasm in his leg.", + "pos": "noun", + "word_frequency": 23555 + }, + { + "word": "spettante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "due;belonging to;incumbent", + "romanization": "spettante", + "example_sentence_native": "La somma spettante sarà accreditata sul tuo conto.", + "example_sentence_english": "The due amount will be credited to your account.", + "pos": "adjective", + "word_frequency": 23556 + }, + { + "word": "spremere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to squeeze;to press", + "romanization": "spremere", + "example_sentence_native": "Ho spremuto un'arancia per fare il succo.", + "example_sentence_english": "I squeezed an orange to make juice.", + "pos": "verb", + "word_frequency": 23557 + }, + { + "word": "stoppa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tow;oakum", + "romanization": "stoppa", + "example_sentence_native": "La stoppa è usata per sigillare i tubi.", + "example_sentence_english": "Tow is used to seal pipes.", + "pos": "noun", + "word_frequency": 23560 + }, + { + "word": "strumentalizzare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to instrumentalize;to exploit", + "romanization": "strumentalizzare", + "example_sentence_native": "Non dovresti strumentalizzare le persone per i tuoi scopi.", + "example_sentence_english": "You shouldn't instrumentalize people for your own purposes.", + "pos": "verb", + "word_frequency": 23561 + }, + { + "word": "sufi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Sufi", + "romanization": "sufi", + "example_sentence_native": "I sufi sono noti per la loro spiritualità mistica.", + "example_sentence_english": "Sufis are known for their mystical spirituality.", + "pos": "noun", + "word_frequency": 23562 + }, + { + "word": "supermarket", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "supermarket", + "romanization": "supermarket", + "example_sentence_native": "Vado al supermarket a comprare il pane.", + "example_sentence_english": "I'm going to the supermarket to buy bread.", + "pos": "noun", + "word_frequency": 23563 + }, + { + "word": "tamponamento", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rear-end collision;pile-up", + "romanization": "tamponamento", + "example_sentence_native": "C'è stato un tamponamento a catena sull'autostrada.", + "example_sentence_english": "There was a pile-up on the highway.", + "pos": "noun", + "word_frequency": 23569 + }, + { + "word": "terno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trio;set of three (lottery)", + "romanization": "terno", + "example_sentence_native": "Ha fatto un terno al lotto.", + "example_sentence_english": "He got a trio in the lottery.", + "pos": "noun", + "word_frequency": 23571 + }, + { + "word": "tesoreria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "treasury;exchequer", + "romanization": "tesoreria", + "example_sentence_native": "La tesoreria dello stato gestisce le finanze pubbliche.", + "example_sentence_english": "The state treasury manages public finances.", + "pos": "noun", + "word_frequency": 23572 + }, + { + "word": "tetano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tetanus", + "romanization": "tetano", + "example_sentence_native": "È importante fare il vaccino contro il tetano.", + "example_sentence_english": "It's important to get the tetanus vaccine.", + "pos": "noun", + "word_frequency": 23573 + }, + { + "word": "tonfo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thud;crash", + "romanization": "tonfo", + "example_sentence_native": "Ho sentito un tonfo provenire dalla stanza accanto.", + "example_sentence_english": "I heard a thud coming from the next room.", + "pos": "noun", + "word_frequency": 23576 + }, + { + "word": "trafila", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "die (for pasta;wire);procedure;red tape", + "romanization": "trafila", + "example_sentence_native": "La trafila burocratica per ottenere il permesso è molto lunga.", + "example_sentence_english": "The bureaucratic procedure to obtain the permit is very long.", + "pos": "noun", + "word_frequency": 23579 + }, + { + "word": "trendy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trendy;fashionable", + "romanization": "trendy", + "example_sentence_native": "Quel nuovo bar è molto trendy.", + "example_sentence_english": "That new bar is very trendy.", + "pos": "adjective", + "word_frequency": 23580 + }, + { + "word": "tumorale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tumoral;cancerous", + "romanization": "tumorale", + "example_sentence_native": "Hanno trovato una massa tumorale.", + "example_sentence_english": "They found a tumoral mass.", + "pos": "adjective", + "word_frequency": 23581 + }, + { + "word": "turchese", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "turquoise", + "romanization": "turchese", + "example_sentence_native": "Mi piace il colore turchese del mare.", + "example_sentence_english": "I like the turquoise color of the sea.", + "pos": "adjective", + "word_frequency": 23582 + }, + { + "word": "vecchione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "old man (augmentative)", + "romanization": "vecchione", + "example_sentence_native": "Un vecchione sedeva sulla panchina del parco.", + "example_sentence_english": "A big old man sat on the park bench.", + "pos": "noun", + "word_frequency": 23583 + }, + { + "word": "venatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grain (of wood);vein (in marble;leaf)", + "romanization": "venatura", + "example_sentence_native": "Il tavolo aveva una bella venatura di legno.", + "example_sentence_english": "The table had a beautiful wood grain.", + "pos": "noun", + "word_frequency": 23584 + }, + { + "word": "verificabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "verifiable", + "romanization": "verificabile", + "example_sentence_native": "Le informazioni devono essere verificabili.", + "example_sentence_english": "The information must be verifiable.", + "pos": "adjective", + "word_frequency": 23585 + }, + { + "word": "vivavoce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "speakerphone;hands-free", + "romanization": "vivavoce", + "example_sentence_native": "Ho risposto al telefono in vivavoce.", + "example_sentence_english": "I answered the phone on speakerphone.", + "pos": "noun", + "word_frequency": 23586 + }, + { + "word": "zampino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paw (diminutive);hand (in idiom)", + "romanization": "zampino", + "example_sentence_native": "Credo che ci sia lo zampino di qualcuno in questa faccenda.", + "example_sentence_english": "I think someone had a hand in this matter.", + "pos": "noun", + "word_frequency": 23592 + }, + { + "word": "abbellire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to beautify;to adorn", + "romanization": "abbellire", + "example_sentence_native": "Voglio abbellire il mio giardino con dei fiori.", + "example_sentence_english": "I want to beautify my garden with flowers.", + "pos": "verb", + "word_frequency": 23596 + }, + { + "word": "abitacolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cockpit;passenger compartment (of a car)", + "romanization": "abitacolo", + "example_sentence_native": "L'abitacolo dell'auto era spazioso e confortevole.", + "example_sentence_english": "The car's passenger compartment was spacious and comfortable.", + "pos": "noun", + "word_frequency": 23597 + }, + { + "word": "abside", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apse (of a church)", + "romanization": "abside", + "example_sentence_native": "L'abside della chiesa era decorata con affreschi antichi.", + "example_sentence_english": "The apse of the church was decorated with ancient frescoes.", + "pos": "noun", + "word_frequency": 23598 + }, + { + "word": "allentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to loosen", + "romanization": "allentare", + "example_sentence_native": "Devi allentare la corda.", + "example_sentence_english": "You need to loosen the rope.", + "pos": "verb", + "word_frequency": 23606 + }, + { + "word": "amazzonico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Amazonian", + "romanization": "amazzonico", + "example_sentence_native": "La foresta amazzonica è molto vasta.", + "example_sentence_english": "The Amazonian forest is very vast.", + "pos": "adjective", + "word_frequency": 23607 + }, + { + "word": "ammonire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to admonish", + "romanization": "ammonire", + "example_sentence_native": "Il giudice ha ammonito il testimone.", + "example_sentence_english": "The judge admonished the witness.", + "pos": "verb", + "word_frequency": 23608 + }, + { + "word": "annualità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annuity;annual payment", + "romanization": "annualità", + "example_sentence_native": "Deve pagare l'annualità entro la fine del mese.", + "example_sentence_english": "He must pay the annual payment by the end of the month.", + "pos": "noun", + "word_frequency": 23609 + }, + { + "word": "antiquario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antique dealer", + "romanization": "antiquario", + "example_sentence_native": "Ha comprato un vecchio orologio da un antiquario.", + "example_sentence_english": "He bought an old watch from an antique dealer.", + "pos": "noun", + "word_frequency": 23610 + }, + { + "word": "appiccicoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sticky", + "romanization": "appiccicoso", + "example_sentence_native": "Questo nastro è molto appiccicoso.", + "example_sentence_english": "This tape is very sticky.", + "pos": "adjective", + "word_frequency": 23612 + }, + { + "word": "arciprete", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "archpriest", + "romanization": "arciprete", + "example_sentence_native": "L'arciprete ha celebrato la messa.", + "example_sentence_english": "The archpriest celebrated the mass.", + "pos": "noun", + "word_frequency": 23613 + }, + { + "word": "arredare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to furnish", + "romanization": "arredare", + "example_sentence_native": "Dobbiamo arredare il nuovo appartamento.", + "example_sentence_english": "We need to furnish the new apartment.", + "pos": "verb", + "word_frequency": 23615 + }, + { + "word": "asociale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asocial", + "romanization": "asociale", + "example_sentence_native": "È una persona un po' asociale, preferisce stare da solo.", + "example_sentence_english": "He's a bit of an asocial person, he prefers to be alone.", + "pos": "adjective", + "word_frequency": 23616 + }, + { + "word": "audiolibro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "audiobook", + "romanization": "audiolibro", + "example_sentence_native": "Ascolto spesso audiolibri durante i miei viaggi.", + "example_sentence_english": "I often listen to audiobooks during my travels.", + "pos": "noun", + "word_frequency": 23617 + }, + { + "word": "baldacchino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "canopy;baldachin", + "romanization": "baldacchino", + "example_sentence_native": "Il letto aveva un bellissimo baldacchino.", + "example_sentence_english": "The bed had a beautiful canopy.", + "pos": "noun", + "word_frequency": 23620 + }, + { + "word": "bisnonna", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "great-grandmother", + "romanization": "bisnonna", + "example_sentence_native": "La mia bisnonna ha compiuto cento anni.", + "example_sentence_english": "My great-grandmother turned one hundred years old.", + "pos": "noun", + "word_frequency": 23628 + }, + { + "word": "boccetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small bottle;vial", + "romanization": "boccetta", + "example_sentence_native": "Ha versato il profumo da una piccola boccetta.", + "example_sentence_english": "She poured the perfume from a small bottle.", + "pos": "noun", + "word_frequency": 23629 + }, + { + "word": "bocchino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mouthpiece;cigarette holder", + "romanization": "bocchino", + "example_sentence_native": "Il bocchino della tromba è d'oro.", + "example_sentence_english": "The trumpet's mouthpiece is gold.", + "pos": "noun", + "word_frequency": 23630 + }, + { + "word": "bondage", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "bondage", + "romanization": "bondage", + "example_sentence_native": "Il termine \"bondage\" è spesso associato a pratiche specifiche.", + "example_sentence_english": "The term \"bondage\" is often associated with specific practices.", + "pos": "noun", + "word_frequency": 23631 + }, + { + "word": "canarino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "canary", + "romanization": "canarino", + "example_sentence_native": "Il canarino canta ogni mattina nella sua gabbia.", + "example_sentence_english": "The canary sings every morning in its cage.", + "pos": "noun", + "word_frequency": 23641 + }, + { + "word": "capostipite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "progenitor;founder", + "romanization": "capostipite", + "example_sentence_native": "Il capostipite della dinastia fondò la città.", + "example_sentence_english": "The progenitor of the dynasty founded the city.", + "pos": "noun", + "word_frequency": 23644 + }, + { + "word": "carnivoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carnivore", + "romanization": "carnivoro", + "example_sentence_native": "Il leone è un animale carnivoro.", + "example_sentence_english": "The lion is a carnivorous animal.", + "pos": "noun", + "word_frequency": 23647 + }, + { + "word": "caschetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bob (haircut);small helmet", + "romanization": "caschetto", + "example_sentence_native": "Si è fatta un nuovo caschetto per l'estate.", + "example_sentence_english": "She got a new bob haircut for the summer.", + "pos": "noun", + "word_frequency": 23650 + }, + { + "word": "castrato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "castrato (singer);wether (animal)", + "romanization": "castrato", + "example_sentence_native": "I castrati erano cantanti molto apprezzati nel Settecento.", + "example_sentence_english": "Castrati were highly appreciated singers in the 18th century.", + "pos": "noun", + "word_frequency": 23651 + }, + { + "word": "cavalleresco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chivalrous;knightly", + "romanization": "cavalleresco", + "example_sentence_native": "Il suo comportamento era sempre molto cavalleresco.", + "example_sentence_english": "His behavior was always very chivalrous.", + "pos": "adjective", + "word_frequency": 23652 + }, + { + "word": "cinquantenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fifty-year-old", + "romanization": "cinquantenne", + "example_sentence_native": "È un cinquantenne con molta energia.", + "example_sentence_english": "He is a fifty-year-old with a lot of energy.", + "pos": "adjective", + "word_frequency": 23657 + }, + { + "word": "clementi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lenient;merciful (plural)", + "romanization": "clementi", + "example_sentence_native": "I giudici furono clementi nella loro sentenza.", + "example_sentence_english": "The judges were lenient in their verdict.", + "pos": "adjective", + "word_frequency": 23660 + }, + { + "word": "comodato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "loan for use;gratuitous loan", + "romanization": "comodato", + "example_sentence_native": "Il contratto di comodato prevede l'uso gratuito del bene.", + "example_sentence_english": "The loan for use contract provides for the free use of the asset.", + "pos": "noun", + "word_frequency": 23662 + }, + { + "word": "congiungere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to join;to connect", + "romanization": "congiungere", + "example_sentence_native": "Dobbiamo congiungere i due pezzi per completare il modello.", + "example_sentence_english": "We need to join the two pieces to complete the model.", + "pos": "verb", + "word_frequency": 23664 + }, + { + "word": "contraffatto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterfeit;fake", + "romanization": "contraffatto", + "example_sentence_native": "La polizia ha sequestrato un carico di merce contraffatta.", + "example_sentence_english": "The police seized a shipment of counterfeit goods.", + "pos": "adjective", + "word_frequency": 23665 + }, + { + "word": "controspionaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counter-espionage", + "romanization": "controspionaggio", + "example_sentence_native": "L'agenzia di controspionaggio ha sventato un complotto.", + "example_sentence_english": "The counter-espionage agency foiled a plot.", + "pos": "noun", + "word_frequency": 23667 + }, + { + "word": "dibattimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trial;hearing (legal)", + "romanization": "dibattimento", + "example_sentence_native": "Il dibattimento è stato aggiornato alla prossima settimana.", + "example_sentence_english": "The trial was adjourned until next week.", + "pos": "noun", + "word_frequency": 23681 + }, + { + "word": "disattenzione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "inattention;carelessness", + "romanization": "disattenzione", + "example_sentence_native": "La sua disattenzione ha causato un errore.", + "example_sentence_english": "His inattention caused an error.", + "pos": "noun", + "word_frequency": 23682 + }, + { + "word": "dislessia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dyslexia", + "romanization": "dislessia", + "example_sentence_native": "La dislessia è una difficoltà specifica nell'apprendimento della lettura.", + "example_sentence_english": "Dyslexia is a specific difficulty in learning to read.", + "pos": "noun", + "word_frequency": 23683 + }, + { + "word": "dismissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decommissioning;disposal;dismissal", + "romanization": "dismissione", + "example_sentence_native": "La dismissione dell'impianto nucleare è un processo complesso.", + "example_sentence_english": "The decommissioning of the nuclear plant is a complex process.", + "pos": "noun", + "word_frequency": 23684 + }, + { + "word": "dominatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominator;ruler", + "romanization": "dominatore", + "example_sentence_native": "Era visto come un dominatore, non un leader.", + "example_sentence_english": "He was seen as a dominator, not a leader.", + "pos": "noun", + "word_frequency": 23685 + }, + { + "word": "dondolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rocking chair;swing", + "romanization": "dondolo", + "example_sentence_native": "Il bambino si è addormentato sul dondolo.", + "example_sentence_english": "The child fell asleep on the rocking chair.", + "pos": "noun", + "word_frequency": 23688 + }, + { + "word": "eccidio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "massacre;slaughter", + "romanization": "eccidio", + "example_sentence_native": "L'eccidio è stato un evento tragico nella storia del paese.", + "example_sentence_english": "The massacre was a tragic event in the country's history.", + "pos": "noun", + "word_frequency": 23690 + }, + { + "word": "educatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "educator (female);nursery school teacher", + "romanization": "educatrice", + "example_sentence_native": "L'educatrice ha molta pazienza con i bambini.", + "example_sentence_english": "The educator has a lot of patience with children.", + "pos": "noun", + "word_frequency": 23691 + }, + { + "word": "endurance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "endurance", + "romanization": "endurance", + "example_sentence_native": "La corsa di endurance richiede molta preparazione fisica.", + "example_sentence_english": "The endurance race requires a lot of physical preparation.", + "pos": "noun", + "word_frequency": 23693 + }, + { + "word": "etilico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ethyl;alcoholic", + "romanization": "etilico", + "example_sentence_native": "L'alcol etilico è usato in molte bevande.", + "example_sentence_english": "Ethyl alcohol is used in many beverages.", + "pos": "adjective", + "word_frequency": 23694 + }, + { + "word": "etto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hectogram (100 grams)", + "romanization": "etto", + "example_sentence_native": "Vorrei due etti di prosciutto, per favore.", + "example_sentence_english": "I would like two hectograms of ham, please.", + "pos": "noun", + "word_frequency": 23695 + }, + { + "word": "eucaristico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eucharistic", + "romanization": "eucaristico", + "example_sentence_native": "La celebrazione eucaristica si tiene ogni domenica.", + "example_sentence_english": "The eucharistic celebration is held every Sunday.", + "pos": "adjective", + "word_frequency": 23696 + }, + { + "word": "excursus", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "digression;excursus", + "romanization": "excursus", + "example_sentence_native": "Ha fatto un breve excursus storico sull'argomento.", + "example_sentence_english": "He made a brief historical excursus on the topic.", + "pos": "noun", + "word_frequency": 23700 + }, + { + "word": "farcito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stuffed;filled", + "romanization": "farcito", + "example_sentence_native": "Abbiamo mangiato peperoni farciti per cena.", + "example_sentence_english": "We ate stuffed peppers for dinner.", + "pos": "adjective", + "word_frequency": 23702 + }, + { + "word": "fasullo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fake;bogus;phony", + "romanization": "fasullo", + "example_sentence_native": "Quella notizia era completamente fasulla.", + "example_sentence_english": "That news was completely fake.", + "pos": "adjective", + "word_frequency": 23703 + }, + { + "word": "fatiscente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dilapidated;crumbling", + "romanization": "fatiscente", + "example_sentence_native": "L'edificio abbandonato era fatiscente e pericoloso.", + "example_sentence_english": "The abandoned building was dilapidated and dangerous.", + "pos": "adjective", + "word_frequency": 23704 + }, + { + "word": "figliola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "daughter (affectionate);girl", + "romanization": "figliola", + "example_sentence_native": "Vieni qui, figliola mia, ti racconto una storia.", + "example_sentence_english": "Come here, my dear daughter, I'll tell you a story.", + "pos": "noun", + "word_frequency": 23705 + }, + { + "word": "fiscalità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "taxation;fiscal policy", + "romanization": "fiscalità", + "example_sentence_native": "La fiscalità italiana è molto complessa.", + "example_sentence_english": "Italian taxation is very complex.", + "pos": "noun", + "word_frequency": 23706 + }, + { + "word": "formulario", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "form;questionnaire", + "romanization": "formulario", + "example_sentence_native": "Devi compilare questo formulario per iscriverti.", + "example_sentence_english": "You must fill out this form to register.", + "pos": "noun", + "word_frequency": 23709 + }, + { + "word": "foschia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "haze;mist", + "romanization": "foschia", + "example_sentence_native": "La foschia mattutina rendeva difficile la visibilità.", + "example_sentence_english": "The morning haze made visibility difficult.", + "pos": "noun", + "word_frequency": 23710 + }, + { + "word": "fucilare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to shoot (with a rifle);to execute by firing squad", + "romanization": "fucilare", + "example_sentence_native": "I soldati furono condannati a fucilare i traditori.", + "example_sentence_english": "The soldiers were condemned to shoot the traitors.", + "pos": "verb", + "word_frequency": 23713 + }, + { + "word": "gallone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallon", + "romanization": "gallone", + "example_sentence_native": "Negli Stati Uniti, la benzina si vende al gallone.", + "example_sentence_english": "In the United States, gasoline is sold by the gallon.", + "pos": "noun", + "word_frequency": 23717 + }, + { + "word": "geopolitico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "geopolitical", + "romanization": "geopolitico", + "example_sentence_native": "L'analisi geopolitica è fondamentale per capire i conflitti attuali.", + "example_sentence_english": "Geopolitical analysis is fundamental to understanding current conflicts.", + "pos": "adjective", + "word_frequency": 23718 + }, + { + "word": "giurì", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jury", + "romanization": "giurì", + "example_sentence_native": "Il giurì ha emesso il suo verdetto dopo lunghe deliberazioni.", + "example_sentence_english": "The jury delivered its verdict after long deliberations.", + "pos": "noun", + "word_frequency": 23722 + }, + { + "word": "glam", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glamorous", + "romanization": "glam", + "example_sentence_native": "Ha un look molto glam per la festa.", + "example_sentence_english": "She has a very glamorous look for the party.", + "pos": "adjective", + "word_frequency": 23723 + }, + { + "word": "glande", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "glans", + "romanization": "glande", + "example_sentence_native": "La glande è una parte dell'anatomia maschile.", + "example_sentence_english": "The glans is a part of male anatomy.", + "pos": "noun", + "word_frequency": 23724 + }, + { + "word": "gratuità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "freeness;gratuity", + "romanization": "gratuità", + "example_sentence_native": "Il servizio è offerto in totale gratuità.", + "example_sentence_english": "The service is offered completely free of charge.", + "pos": "noun", + "word_frequency": 23726 + }, + { + "word": "groove", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "groove (music;feeling)", + "romanization": "groove", + "example_sentence_native": "Questa canzone ha un ottimo groove.", + "example_sentence_english": "This song has a great groove.", + "pos": "noun", + "word_frequency": 23728 + }, + { + "word": "grossolanamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coarsely;roughly", + "romanization": "grossolanamente", + "example_sentence_native": "Ha tagliato il pane grossolanamente.", + "example_sentence_english": "He roughly cut the bread.", + "pos": "adverb", + "word_frequency": 23729 + }, + { + "word": "grossolano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coarse;rough;crude", + "romanization": "grossolano", + "example_sentence_native": "Il suo comportamento era piuttosto grossolano.", + "example_sentence_english": "His behavior was quite crude.", + "pos": "adjective", + "word_frequency": 23730 + }, + { + "word": "guarnizione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gasket;trim;seal", + "romanization": "guarnizione", + "example_sentence_native": "Dobbiamo sostituire la guarnizione della finestra.", + "example_sentence_english": "We need to replace the window seal.", + "pos": "noun", + "word_frequency": 23731 + }, + { + "word": "hippy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hippie", + "romanization": "hippy", + "example_sentence_native": "Era un vero hippy negli anni '70.", + "example_sentence_english": "He was a true hippie in the 70s.", + "pos": "noun", + "word_frequency": 23735 + }, + { + "word": "impagabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "priceless;invaluable", + "romanization": "impagabile", + "example_sentence_native": "La sua amicizia è impagabile.", + "example_sentence_english": "His friendship is priceless.", + "pos": "adjective", + "word_frequency": 23741 + }, + { + "word": "incudine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anvil", + "romanization": "incudine", + "example_sentence_native": "Il fabbro batteva il ferro sull'incudine.", + "example_sentence_english": "The blacksmith hammered the iron on the anvil.", + "pos": "noun", + "word_frequency": 23742 + }, + { + "word": "incurante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heedless;careless;unconcerned", + "romanization": "incurante", + "example_sentence_native": "Era incurante delle conseguenze delle sue azioni.", + "example_sentence_english": "He was heedless of the consequences of his actions.", + "pos": "adjective", + "word_frequency": 23743 + }, + { + "word": "ingestione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ingestion", + "romanization": "ingestione", + "example_sentence_native": "L'ingestione di sostanze tossiche è pericolosa.", + "example_sentence_english": "The ingestion of toxic substances is dangerous.", + "pos": "noun", + "word_frequency": 23744 + }, + { + "word": "inquisitore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inquisitor", + "romanization": "inquisitore", + "example_sentence_native": "L'inquisitore interrogò il sospettato con severità.", + "example_sentence_english": "The inquisitor questioned the suspect severely.", + "pos": "noun", + "word_frequency": 23745 + }, + { + "word": "insormontabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insurmountable", + "romanization": "insormontabile", + "example_sentence_native": "Hanno affrontato ostacoli insormontabili.", + "example_sentence_english": "They faced insurmountable obstacles.", + "pos": "adjective", + "word_frequency": 23746 + }, + { + "word": "intercambiabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interchangeable", + "romanization": "intercambiabile", + "example_sentence_native": "Le parti di questo giocattolo sono intercambiabili.", + "example_sentence_english": "The parts of this toy are interchangeable.", + "pos": "adjective", + "word_frequency": 23747 + }, + { + "word": "interinale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interim;temporary", + "romanization": "interinale", + "example_sentence_native": "Ha accettato un incarico interinale.", + "example_sentence_english": "He accepted an interim position.", + "pos": "adjective", + "word_frequency": 23748 + }, + { + "word": "iride", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "iris (eye);rainbow", + "romanization": "iride", + "example_sentence_native": "L'iride dell'occhio determina il colore.", + "example_sentence_english": "The iris of the eye determines the color.", + "pos": "noun", + "word_frequency": 23753 + }, + { + "word": "magione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mansion", + "romanization": "magione", + "example_sentence_native": "La vecchia magione era circondata da un grande giardino.", + "example_sentence_english": "The old mansion was surrounded by a large garden.", + "pos": "noun", + "word_frequency": 23767 + }, + { + "word": "maialino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "piglet", + "romanization": "maialino", + "example_sentence_native": "Il maialino rosa correva nel fango.", + "example_sentence_english": "The pink piglet was running in the mud.", + "pos": "noun", + "word_frequency": 23768 + }, + { + "word": "marmotta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "marmot", + "romanization": "marmotta", + "example_sentence_native": "Abbiamo visto una marmotta uscire dalla sua tana in montagna.", + "example_sentence_english": "We saw a marmot come out of its burrow in the mountains.", + "pos": "noun", + "word_frequency": 23775 + }, + { + "word": "matassa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skein", + "romanization": "matassa", + "example_sentence_native": "La nonna stava srotolando una matassa di lana.", + "example_sentence_english": "Grandma was unwinding a skein of wool.", + "pos": "noun", + "word_frequency": 23776 + }, + { + "word": "mattanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slaughter", + "romanization": "mattanza", + "example_sentence_native": "La mattanza del tonno è una tradizione antica in Sicilia.", + "example_sentence_english": "The tuna slaughter is an ancient tradition in Sicily.", + "pos": "noun", + "word_frequency": 23779 + }, + { + "word": "metodologico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "methodological", + "romanization": "metodologico", + "example_sentence_native": "È necessario un approccio metodologico per risolvere il problema.", + "example_sentence_english": "A methodological approach is necessary to solve the problem.", + "pos": "adjective", + "word_frequency": 23784 + }, + { + "word": "minimalista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minimalist", + "romanization": "minimalista", + "example_sentence_native": "Il suo stile di arredamento è molto minimalista.", + "example_sentence_english": "Her decorating style is very minimalist.", + "pos": "adjective", + "word_frequency": 23785 + }, + { + "word": "modernismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "modernism", + "romanization": "modernismo", + "example_sentence_native": "Il modernismo ha influenzato profondamente l'arte del XX secolo.", + "example_sentence_english": "Modernism profoundly influenced 20th-century art.", + "pos": "noun", + "word_frequency": 23786 + }, + { + "word": "mormorare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to murmur", + "romanization": "mormorare", + "example_sentence_native": "Ho sentito le persone mormorare sul nuovo regolamento.", + "example_sentence_english": "I heard people murmuring about the new regulation.", + "pos": "verb", + "word_frequency": 23790 + }, + { + "word": "mostruosità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monstrosity", + "romanization": "mostruosità", + "example_sentence_native": "La guerra è una mostruosità che distrugge vite.", + "example_sentence_english": "War is a monstrosity that destroys lives.", + "pos": "noun", + "word_frequency": 23793 + }, + { + "word": "motivazionale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "motivational", + "romanization": "motivazionale", + "example_sentence_native": "Ha letto un libro motivazionale per trovare ispirazione.", + "example_sentence_english": "She read a motivational book to find inspiration.", + "pos": "adjective", + "word_frequency": 23794 + }, + { + "word": "mutevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "changeable", + "romanization": "mutevole", + "example_sentence_native": "Il tempo in montagna è molto mutevole.", + "example_sentence_english": "The weather in the mountains is very changeable.", + "pos": "adjective", + "word_frequency": 23796 + }, + { + "word": "nadir", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "nadir", + "romanization": "nadir", + "example_sentence_native": "Ha raggiunto il nadir della sua carriera prima di risalire.", + "example_sentence_english": "He reached the nadir of his career before rising again.", + "pos": "noun", + "word_frequency": 23799 + }, + { + "word": "navigante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "navigator", + "romanization": "navigante", + "example_sentence_native": "Il navigante esperto conosceva bene le rotte oceaniche.", + "example_sentence_english": "The experienced navigator knew the ocean routes well.", + "pos": "noun", + "word_frequency": 23801 + }, + { + "word": "necrosi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "necrosis", + "romanization": "necrosi", + "example_sentence_native": "La necrosi dei tessuti può essere causata da un'interruzione del flusso sanguigno.", + "example_sentence_english": "Tissue necrosis can be caused by an interruption of blood flow.", + "pos": "noun", + "word_frequency": 23803 + }, + { + "word": "nuotatore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "swimmer", + "romanization": "nuotatore", + "example_sentence_native": "Il nuotatore ha vinto la medaglia d'oro.", + "example_sentence_english": "The swimmer won the gold medal.", + "pos": "noun", + "word_frequency": 23810 + }, + { + "word": "onoranza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "honor", + "romanization": "onoranza", + "example_sentence_native": "Hanno reso onoranza ai caduti.", + "example_sentence_english": "They paid tribute to the fallen.", + "pos": "noun", + "word_frequency": 23813 + }, + { + "word": "package", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "package", + "romanization": "package", + "example_sentence_native": "Abbiamo acquistato un package vacanza tutto incluso.", + "example_sentence_english": "We bought an all-inclusive holiday package.", + "pos": "noun", + "word_frequency": 23816 + }, + { + "word": "padroneggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to master", + "romanization": "padroneggiare", + "example_sentence_native": "È importante padroneggiare una lingua straniera per viaggiare.", + "example_sentence_english": "It's important to master a foreign language for traveling.", + "pos": "verb", + "word_frequency": 23818 + }, + { + "word": "paesano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "villager", + "romanization": "paesano", + "example_sentence_native": "Il vecchio paesano raccontava storie del passato.", + "example_sentence_english": "The old villager told stories of the past.", + "pos": "noun", + "word_frequency": 23819 + }, + { + "word": "paesello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small village", + "romanization": "paesello", + "example_sentence_native": "Sono cresciuto in un piccolo paesello di montagna.", + "example_sentence_english": "I grew up in a small mountain village.", + "pos": "noun", + "word_frequency": 23820 + }, + { + "word": "pagella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "report card", + "romanization": "pagella", + "example_sentence_native": "Ho ricevuto una buona pagella alla fine dell'anno scolastico.", + "example_sentence_english": "I received a good report card at the end of the school year.", + "pos": "noun", + "word_frequency": 23821 + }, + { + "word": "pasticca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pill", + "romanization": "pasticca", + "example_sentence_native": "Prendi una pasticca per il mal di testa.", + "example_sentence_english": "Take a pill for your headache.", + "pos": "noun", + "word_frequency": 23823 + }, + { + "word": "patrona", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patroness", + "romanization": "patrona", + "example_sentence_native": "Santa Cecilia è la patrona della musica.", + "example_sentence_english": "Saint Cecilia is the patroness of music.", + "pos": "noun", + "word_frequency": 23824 + }, + { + "word": "pedante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pedantic", + "romanization": "pedante", + "example_sentence_native": "Il suo modo di parlare era troppo pedante per la conversazione informale.", + "example_sentence_english": "His way of speaking was too pedantic for informal conversation.", + "pos": "adjective", + "word_frequency": 23825 + }, + { + "word": "perditempo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "time-waster", + "romanization": "perditempo", + "example_sentence_native": "Non voglio essere un perditempo, voglio essere produttivo.", + "example_sentence_english": "I don't want to be a time-waster, I want to be productive.", + "pos": "noun", + "word_frequency": 23828 + }, + { + "word": "perspicace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perspicacious", + "romanization": "perspicace", + "example_sentence_native": "Era una persona molto perspicace, capiva subito le situazioni complesse.", + "example_sentence_english": "He was a very perspicacious person, he immediately understood complex situations.", + "pos": "adjective", + "word_frequency": 23830 + }, + { + "word": "plant", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plant", + "romanization": "plant", + "example_sentence_native": "La nuova plant di produzione è stata inaugurata ieri.", + "example_sentence_english": "The new production plant was inaugurated yesterday.", + "pos": "noun", + "word_frequency": 23832 + }, + { + "word": "poligamia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polygamy", + "romanization": "poligamia", + "example_sentence_native": "La poligamia è illegale in molti paesi occidentali.", + "example_sentence_english": "Polygamy is illegal in many Western countries.", + "pos": "noun", + "word_frequency": 23833 + }, + { + "word": "polimero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "polymer", + "romanization": "polimero", + "example_sentence_native": "La plastica è un tipo di polimero sintetico.", + "example_sentence_english": "Plastic is a type of synthetic polymer.", + "pos": "noun", + "word_frequency": 23834 + }, + { + "word": "poltiglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pulp", + "romanization": "poltiglia", + "example_sentence_native": "Dopo la pioggia, il sentiero era una poltiglia di fango.", + "example_sentence_english": "After the rain, the path was a muddy pulp.", + "pos": "noun", + "word_frequency": 23835 + }, + { + "word": "precludere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to preclude", + "romanization": "precludere", + "example_sentence_native": "La mancanza di fondi potrebbe precludere la realizzazione del progetto.", + "example_sentence_english": "Lack of funds could preclude the realization of the project.", + "pos": "verb", + "word_frequency": 23838 + }, + { + "word": "quadrilatero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrilateral", + "romanization": "quadrilatero", + "example_sentence_native": "Un quadrato è un tipo di quadrilatero.", + "example_sentence_english": "A square is a type of quadrilateral.", + "pos": "noun", + "word_frequency": 23840 + }, + { + "word": "quotare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to quote;to list (on a stock exchange)", + "romanization": "quotare", + "example_sentence_native": "La società è stata quotata in borsa l'anno scorso.", + "example_sentence_english": "The company was listed on the stock exchange last year.", + "pos": "verb", + "word_frequency": 23841 + }, + { + "word": "raddrizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to straighten", + "romanization": "raddrizzare", + "example_sentence_native": "Devi raddrizzare il quadro appeso storto.", + "example_sentence_english": "You need to straighten the crooked picture.", + "pos": "verb", + "word_frequency": 23844 + }, + { + "word": "radura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "clearing (in a forest)", + "romanization": "radura", + "example_sentence_native": "Abbiamo fatto un picnic nella radura del bosco.", + "example_sentence_english": "We had a picnic in the forest clearing.", + "pos": "noun", + "word_frequency": 23845 + }, + { + "word": "rallegrare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to cheer up;to gladden", + "romanization": "rallegrare", + "example_sentence_native": "La sua visita mi ha rallegrato molto.", + "example_sentence_english": "His visit cheered me up a lot.", + "pos": "verb", + "word_frequency": 23846 + }, + { + "word": "rapace", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "predatory;raptorial (as in bird of prey)", + "romanization": "rapace", + "example_sentence_native": "L'aquila è un uccello rapace.", + "example_sentence_english": "The eagle is a raptorial bird.", + "pos": "adjective", + "word_frequency": 23849 + }, + { + "word": "repentinamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "suddenly;abruptly", + "romanization": "repentinamente", + "example_sentence_native": "Il tempo è cambiato repentinamente.", + "example_sentence_english": "The weather changed suddenly.", + "pos": "adverb", + "word_frequency": 23851 + }, + { + "word": "resilienza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resilience", + "romanization": "resilienza", + "example_sentence_native": "La resilienza è la capacità di affrontare le difficoltà.", + "example_sentence_english": "Resilience is the ability to face difficulties.", + "pos": "noun", + "word_frequency": 23852 + }, + { + "word": "rintracciabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traceable", + "romanization": "rintracciabile", + "example_sentence_native": "Il pacco è rintracciabile online.", + "example_sentence_english": "The package is traceable online.", + "pos": "adjective", + "word_frequency": 23855 + }, + { + "word": "riversare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pour out;to spill;to transfer (data)", + "romanization": "riversare", + "example_sentence_native": "Ha riversato il caffè sulla tovaglia.", + "example_sentence_english": "He spilled the coffee on the tablecloth.", + "pos": "verb", + "word_frequency": 23856 + }, + { + "word": "rompipalle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pain in the neck;annoying person (literally \"ball-breaker\")", + "romanization": "rompipalle", + "example_sentence_native": "Quel ragazzo è un vero rompipalle.", + "example_sentence_english": "That guy is a real pain in the neck.", + "pos": "noun", + "word_frequency": 23858 + }, + { + "word": "rondò", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "roundabout;rondo (music)", + "romanization": "rondò", + "example_sentence_native": "Prendi la terza uscita al rondò.", + "example_sentence_english": "Take the third exit at the roundabout.", + "pos": "noun", + "word_frequency": 23859 + }, + { + "word": "sambuca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sambuca (anise-flavored liqueur)", + "romanization": "sambuca", + "example_sentence_native": "Vorrei un caffè corretto con la sambuca.", + "example_sentence_english": "I would like a coffee with a shot of sambuca.", + "pos": "noun", + "word_frequency": 23864 + }, + { + "word": "scazzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hassle;annoyance;argument (slang)", + "romanization": "scazzo", + "example_sentence_native": "Ho avuto uno scazzo con il mio capo.", + "example_sentence_english": "I had an argument with my boss.", + "pos": "noun", + "word_frequency": 23866 + }, + { + "word": "sciacallaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "looting;profiteering (especially after a disaster)", + "romanization": "sciacallaggio", + "example_sentence_native": "Dopo il terremoto, ci sono stati episodi di sciacallaggio.", + "example_sentence_english": "After the earthquake, there were episodes of looting.", + "pos": "noun", + "word_frequency": 23867 + }, + { + "word": "segnatamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "notably;particularly", + "romanization": "segnatamente", + "example_sentence_native": "Ha contribuito a molti progetti, segnatamente a quello sull'ambiente.", + "example_sentence_english": "He contributed to many projects, notably to the one on the environment.", + "pos": "adverb", + "word_frequency": 23868 + }, + { + "word": "serotonina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "serotonin", + "romanization": "serotonina", + "example_sentence_native": "La serotonina è un neurotrasmettitore importante.", + "example_sentence_english": "Serotonin is an important neurotransmitter.", + "pos": "noun", + "word_frequency": 23869 + }, + { + "word": "setting", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setting (context;environment)", + "romanization": "setting", + "example_sentence_native": "Il setting del film è molto suggestivo.", + "example_sentence_english": "The film's setting is very evocative.", + "pos": "noun", + "word_frequency": 23870 + }, + { + "word": "setup", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "setup;configuration", + "romanization": "setup", + "example_sentence_native": "Il setup del nuovo computer è stato facile.", + "example_sentence_english": "The setup of the new computer was easy.", + "pos": "noun", + "word_frequency": 23871 + }, + { + "word": "sinapsi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "synapse", + "romanization": "sinapsi", + "example_sentence_native": "I neuroni comunicano attraverso le sinapsi.", + "example_sentence_english": "Neurons communicate through synapses.", + "pos": "noun", + "word_frequency": 23874 + }, + { + "word": "sionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Zionism", + "romanization": "sionismo", + "example_sentence_native": "Il sionismo è un movimento politico e ideologico.", + "example_sentence_english": "Zionism is a political and ideological movement.", + "pos": "noun", + "word_frequency": 23876 + }, + { + "word": "skipper", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skipper", + "romanization": "skipper", + "example_sentence_native": "Lo skipper ha guidato la barca attraverso la tempesta.", + "example_sentence_english": "The skipper guided the boat through the storm.", + "pos": "noun", + "word_frequency": 23877 + }, + { + "word": "slash", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slash (forward slash)", + "romanization": "slash", + "example_sentence_native": "Usa lo slash per separare le directory.", + "example_sentence_english": "Use the slash to separate directories.", + "pos": "noun", + "word_frequency": 23878 + }, + { + "word": "sommergibile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "submarine", + "romanization": "sommergibile", + "example_sentence_native": "Il sommergibile è emerso in superficie.", + "example_sentence_english": "The submarine surfaced.", + "pos": "noun", + "word_frequency": 23881 + }, + { + "word": "sopraffatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "overwhelmed;overcome", + "romanization": "sopraffatto", + "example_sentence_native": "Si sentiva sopraffatto dalle emozioni.", + "example_sentence_english": "He felt overwhelmed by emotions.", + "pos": "adjective", + "word_frequency": 23882 + }, + { + "word": "sostituirsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to replace oneself;to take the place of", + "romanization": "sostituirsi", + "example_sentence_native": "Nessuno può sostituirsi a lui in questo ruolo.", + "example_sentence_english": "No one can replace him in this role.", + "pos": "verb", + "word_frequency": 23883 + }, + { + "word": "spaventosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "frighteningly;terribly", + "romanization": "spaventosamente", + "example_sentence_native": "Il rumore era spaventosamente forte.", + "example_sentence_english": "The noise was frighteningly loud.", + "pos": "adverb", + "word_frequency": 23884 + }, + { + "word": "sporcarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to get dirty", + "romanization": "sporcarsi", + "example_sentence_native": "I bambini amano sporcarsi giocando.", + "example_sentence_english": "Children love to get dirty playing.", + "pos": "verb", + "word_frequency": 23885 + }, + { + "word": "squilibrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbalanced;unstable;deranged", + "romanization": "squilibrato", + "example_sentence_native": "Il tavolo era squilibrato e traballava.", + "example_sentence_english": "The table was unbalanced and wobbled.", + "pos": "adjective", + "word_frequency": 23887 + }, + { + "word": "strutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lard", + "romanization": "strutto", + "example_sentence_native": "In alcune ricette si usa lo strutto per friggere.", + "example_sentence_english": "In some recipes, lard is used for frying.", + "pos": "noun", + "word_frequency": 23889 + }, + { + "word": "supervisionare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to supervise", + "romanization": "supervisionare", + "example_sentence_native": "Deve supervisionare il lavoro del team.", + "example_sentence_english": "He must supervise the team's work.", + "pos": "verb", + "word_frequency": 23892 + }, + { + "word": "svendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sell off;to undersell", + "romanization": "svendere", + "example_sentence_native": "Hanno dovuto svendere la merce per chiudere il negozio.", + "example_sentence_english": "They had to sell off the goods to close the shop.", + "pos": "verb", + "word_frequency": 23893 + }, + { + "word": "sventato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "scatterbrained;thoughtless", + "romanization": "sventato", + "example_sentence_native": "È un ragazzo un po' sventato, dimentica sempre le chiavi.", + "example_sentence_english": "He's a bit of a scatterbrained guy, he always forgets his keys.", + "pos": "adjective", + "word_frequency": 23894 + }, + { + "word": "telelavoro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telecommuting;remote work", + "romanization": "telelavoro", + "example_sentence_native": "Molte aziende hanno adottato il telelavoro.", + "example_sentence_english": "Many companies have adopted remote work.", + "pos": "noun", + "word_frequency": 23895 + }, + { + "word": "tennista", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tennis player", + "romanization": "tennista", + "example_sentence_native": "È una tennista professionista.", + "example_sentence_english": "She is a professional tennis player.", + "pos": "noun", + "word_frequency": 23896 + }, + { + "word": "tettoia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shed;canopy;lean-to", + "romanization": "tettoia", + "example_sentence_native": "Hanno costruito una tettoia per riparare le biciclette.", + "example_sentence_english": "They built a shed to shelter the bicycles.", + "pos": "noun", + "word_frequency": 23897 + }, + { + "word": "traforo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tunnel;boring (as in drilling)", + "romanization": "traforo", + "example_sentence_native": "Il traforo del Monte Bianco è molto lungo.", + "example_sentence_english": "The Mont Blanc tunnel is very long.", + "pos": "noun", + "word_frequency": 23902 + }, + { + "word": "tranquillizzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to reassure;to calm down", + "romanization": "tranquillizzare", + "example_sentence_native": "Cercò di tranquillizzare il bambino spaventato.", + "example_sentence_english": "He tried to calm down the frightened child.", + "pos": "verb", + "word_frequency": 23903 + }, + { + "word": "trasportatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carrier;transporter", + "romanization": "trasportatore", + "example_sentence_native": "Il trasportatore ha consegnato il pacco.", + "example_sentence_english": "The carrier delivered the package.", + "pos": "noun", + "word_frequency": 23904 + }, + { + "word": "trentaquattro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty-four", + "romanization": "trentaquattro", + "example_sentence_native": "Ho trentaquattro anni.", + "example_sentence_english": "I am thirty-four years old.", + "pos": "adjective", + "word_frequency": 23905 + }, + { + "word": "unguento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ointment;salve", + "romanization": "unguento", + "example_sentence_native": "Ha applicato un unguento sulla ferita.", + "example_sentence_english": "He applied an ointment to the wound.", + "pos": "noun", + "word_frequency": 23908 + }, + { + "word": "venerando", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venerable;revered", + "romanization": "venerando", + "example_sentence_native": "Il vecchio saggio era una figura veneranda nella comunità.", + "example_sentence_english": "The old sage was a venerable figure in the community.", + "pos": "adjective", + "word_frequency": 23914 + }, + { + "word": "vergognarsi", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to be ashamed;to feel ashamed", + "romanization": "vergognarsi", + "example_sentence_native": "Si vergognava del suo errore.", + "example_sentence_english": "He was ashamed of his mistake.", + "pos": "verb", + "word_frequency": 23916 + }, + { + "word": "verve", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "verve;enthusiasm;spirit", + "romanization": "verve", + "example_sentence_native": "Ha una grande verve sul palco.", + "example_sentence_english": "She has great verve on stage.", + "pos": "noun", + "word_frequency": 23917 + }, + { + "word": "viandante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wanderer;traveler", + "romanization": "viandante", + "example_sentence_native": "Un vecchio viandante chiese l'elemosina.", + "example_sentence_english": "An old wanderer asked for alms.", + "pos": "noun", + "word_frequency": 23918 + }, + { + "word": "videoludico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "video game-related;pertaining to video games", + "romanization": "videoludico", + "example_sentence_native": "L'industria videoludica è in forte crescita.", + "example_sentence_english": "The video game industry is growing rapidly.", + "pos": "adjective", + "word_frequency": 23919 + }, + { + "word": "virare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn;to veer", + "romanization": "virare", + "example_sentence_native": "La nave ha dovuto virare per evitare lo scoglio.", + "example_sentence_english": "The ship had to turn to avoid the reef.", + "pos": "verb", + "word_frequency": 23920 + }, + { + "word": "abusato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abused;overused", + "romanization": "abusato", + "example_sentence_native": "Quella parola è ormai troppo abusata.", + "example_sentence_english": "That word is now too overused.", + "pos": "adjective", + "word_frequency": 23927 + }, + { + "word": "accampato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camped;encamped", + "romanization": "accampato", + "example_sentence_native": "Hanno trovato un gruppo di escursionisti accampato vicino al fiume.", + "example_sentence_english": "They found a group of hikers camped near the river.", + "pos": "adjective", + "word_frequency": 23928 + }, + { + "word": "acquoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "watery;aqueous", + "romanization": "acquoso", + "example_sentence_native": "La salsa era troppo acquosa.", + "example_sentence_english": "The sauce was too watery.", + "pos": "adjective", + "word_frequency": 23929 + }, + { + "word": "addizione", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "addition", + "romanization": "addizione", + "example_sentence_native": "L'addizione è una delle quattro operazioni fondamentali.", + "example_sentence_english": "Addition is one of the four fundamental operations.", + "pos": "noun", + "word_frequency": 23930 + }, + { + "word": "agar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agar", + "romanization": "agar", + "example_sentence_native": "L'agar è usato come gelificante in cucina.", + "example_sentence_english": "Agar is used as a gelling agent in cooking.", + "pos": "noun", + "word_frequency": 23931 + }, + { + "word": "agitato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "agitated;restless;shaken", + "romanization": "agitato", + "example_sentence_native": "Era molto agitato prima dell'esame.", + "example_sentence_english": "He was very agitated before the exam.", + "pos": "adjective", + "word_frequency": 23932 + }, + { + "word": "agnostico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agnostic", + "romanization": "agnostico", + "example_sentence_native": "Si definisce agnostico riguardo alla religione.", + "example_sentence_english": "He defines himself as agnostic regarding religion.", + "pos": "adjective", + "word_frequency": 23933 + }, + { + "word": "agonizzante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "agonizing;dying", + "romanization": "agonizzante", + "example_sentence_native": "Il paziente era in condizioni agonizzanti.", + "example_sentence_english": "The patient was in agonizing conditions.", + "pos": "adjective", + "word_frequency": 23934 + }, + { + "word": "alessandrino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Alexandrian", + "romanization": "alessandrino", + "example_sentence_native": "La biblioteca alessandrina era famosa nell'antichità.", + "example_sentence_english": "The Alexandrian library was famous in antiquity.", + "pos": "adjective", + "word_frequency": 23936 + }, + { + "word": "alloggiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accommodated;housed", + "romanization": "alloggiato", + "example_sentence_native": "Gli studenti sono stati alloggiati in un residence.", + "example_sentence_english": "The students were housed in a residence.", + "pos": "adjective", + "word_frequency": 23937 + }, + { + "word": "amalfitano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "from Amalfi;Amalfitan", + "romanization": "amalfitano", + "example_sentence_native": "La Costiera Amalfitana è un luogo bellissimo.", + "example_sentence_english": "The Amalfi Coast is a beautiful place.", + "pos": "adjective", + "word_frequency": 23939 + }, + { + "word": "amalgama", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amalgam;mixture", + "romanization": "amalgama", + "example_sentence_native": "Il suo stile è un'amalgama di influenze diverse.", + "example_sentence_english": "His style is an amalgam of different influences.", + "pos": "noun", + "word_frequency": 23940 + }, + { + "word": "amaranto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amaranth (color;plant)", + "romanization": "amaranto", + "example_sentence_native": "Ha scelto un vestito color amaranto.", + "example_sentence_english": "She chose an amaranth-colored dress.", + "pos": "noun", + "word_frequency": 23941 + }, + { + "word": "amarsi", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "to love each other;oneself", + "romanization": "amarsi", + "example_sentence_native": "È importante amarsi prima di tutto.", + "example_sentence_english": "It's important to love oneself first of all.", + "pos": "verb", + "word_frequency": 23942 + }, + { + "word": "ameno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pleasant;delightful", + "romanization": "ameno", + "example_sentence_native": "Il parco è un luogo ameno per passeggiare.", + "example_sentence_english": "The park is a pleasant place for a walk.", + "pos": "adjective", + "word_frequency": 23943 + }, + { + "word": "androide", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "android", + "romanization": "androide", + "example_sentence_native": "Nel film, l'androide sembrava quasi umano.", + "example_sentence_english": "In the movie, the android seemed almost human.", + "pos": "noun", + "word_frequency": 23944 + }, + { + "word": "anticrimine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "anti-crime", + "romanization": "anticrimine", + "example_sentence_native": "Hanno adottato nuove misure anticrimine.", + "example_sentence_english": "They adopted new anti-crime measures.", + "pos": "adjective", + "word_frequency": 23946 + }, + { + "word": "apicale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apical;peak", + "romanization": "apicale", + "example_sentence_native": "La posizione apicale dell'azienda è stata assegnata a un nuovo manager.", + "example_sentence_english": "The apical position of the company was assigned to a new manager.", + "pos": "adjective", + "word_frequency": 23948 + }, + { + "word": "assurdamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absurdly", + "romanization": "assurdamente", + "example_sentence_native": "La situazione era assurdamente complicata.", + "example_sentence_english": "The situation was absurdly complicated.", + "pos": "adverb", + "word_frequency": 23950 + }, + { + "word": "autocertificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "self-certification", + "romanization": "autocertificazione", + "example_sentence_native": "Ho dovuto compilare un'autocertificazione per l'ingresso.", + "example_sentence_english": "I had to fill out a self-certification for entry.", + "pos": "noun", + "word_frequency": 23951 + }, + { + "word": "automezzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vehicle;motor vehicle", + "romanization": "automezzo", + "example_sentence_native": "Il trasporto di merci avviene tramite automezzi pesanti.", + "example_sentence_english": "Goods transport takes place by heavy motor vehicles.", + "pos": "noun", + "word_frequency": 23952 + }, + { + "word": "autoritarismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "authoritarianism", + "romanization": "autoritarismo", + "example_sentence_native": "La storia è piena di esempi di autoritarismo.", + "example_sentence_english": "History is full of examples of authoritarianism.", + "pos": "noun", + "word_frequency": 23953 + }, + { + "word": "barbabietola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beetroot", + "romanization": "barbabietola", + "example_sentence_native": "Le barbabietole sono ricche di vitamine.", + "example_sentence_english": "Beetroots are rich in vitamins.", + "pos": "noun", + "word_frequency": 23956 + }, + { + "word": "barbero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Barbary horse", + "romanization": "barbero", + "example_sentence_native": "Il barbero è un cavallo di origine nordafricana.", + "example_sentence_english": "The Barbary horse is a horse of North African origin.", + "pos": "noun", + "word_frequency": 23957 + }, + { + "word": "barbosa", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barbel (fish)", + "romanization": "barbosa", + "example_sentence_native": "La barbosa è un pesce d'acqua dolce.", + "example_sentence_english": "The barbel is a freshwater fish.", + "pos": "noun", + "word_frequency": 23958 + }, + { + "word": "bassifondo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "slum;underworld;depths", + "romanization": "bassifondo", + "example_sentence_native": "Viveva nei bassifondi della città.", + "example_sentence_english": "He lived in the slums of the city.", + "pos": "noun", + "word_frequency": 23959 + }, + { + "word": "benevolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benevolent;kind", + "romanization": "benevolo", + "example_sentence_native": "Il giudice fu benevolo nella sua sentenza.", + "example_sentence_english": "The judge was benevolent in his ruling.", + "pos": "adjective", + "word_frequency": 23961 + }, + { + "word": "berbero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Berber", + "romanization": "berbero", + "example_sentence_native": "I Berberi sono un gruppo etnico indigeno del Nord Africa.", + "example_sentence_english": "The Berbers are an indigenous ethnic group of North Africa.", + "pos": "noun", + "word_frequency": 23962 + }, + { + "word": "besciamella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "béchamel sauce", + "romanization": "besciamella", + "example_sentence_native": "Per le lasagne, ho preparato una ricca besciamella.", + "example_sentence_english": "For the lasagna, I prepared a rich béchamel sauce.", + "pos": "noun", + "word_frequency": 23963 + }, + { + "word": "bicameralismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bicameralism", + "romanization": "bicameralismo", + "example_sentence_native": "Il bicameralismo perfetto è una caratteristica del sistema politico italiano.", + "example_sentence_english": "Perfect bicameralism is a characteristic of the Italian political system.", + "pos": "noun", + "word_frequency": 23965 + }, + { + "word": "bicentenario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bicentennial", + "romanization": "bicentenario", + "example_sentence_native": "Quest'anno si celebra il bicentenario della fondazione della città.", + "example_sentence_english": "This year marks the bicentennial of the city's founding.", + "pos": "noun", + "word_frequency": 23966 + }, + { + "word": "biosfera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "biosphere", + "romanization": "biosfera", + "example_sentence_native": "La biosfera è l'insieme di tutti gli ecosistemi della Terra.", + "example_sentence_english": "The biosphere is the sum of all Earth's ecosystems.", + "pos": "noun", + "word_frequency": 23967 + }, + { + "word": "bonificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reclaim (land);to sanitize;to clear (debt)", + "romanization": "bonificare", + "example_sentence_native": "Il governo ha deciso di bonificare l'area paludosa.", + "example_sentence_english": "The government decided to reclaim the marshy area.", + "pos": "verb", + "word_frequency": 23970 + }, + { + "word": "boscaglia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scrubland;bush;thicket", + "romanization": "boscaglia", + "example_sentence_native": "Ci siamo persi nella fitta boscaglia.", + "example_sentence_english": "We got lost in the dense scrubland.", + "pos": "noun", + "word_frequency": 23971 + }, + { + "word": "cabala", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cabala;Kabbalah;secret plot", + "romanization": "cabala", + "example_sentence_native": "Molti studiano la cabala per comprenderne i misteri.", + "example_sentence_english": "Many study the Kabbalah to understand its mysteries.", + "pos": "noun", + "word_frequency": 23978 + }, + { + "word": "cantastorie", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storyteller;minstrel", + "romanization": "cantastorie", + "example_sentence_native": "Il vecchio cantastorie raccontava leggende antiche.", + "example_sentence_english": "The old storyteller recounted ancient legends.", + "pos": "noun", + "word_frequency": 23980 + }, + { + "word": "cantonale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cantonal (relating to a canton)", + "romanization": "cantonale", + "example_sentence_native": "La politica cantonale varia molto in Svizzera.", + "example_sentence_english": "Cantonal policy varies greatly in Switzerland.", + "pos": "adjective", + "word_frequency": 23981 + }, + { + "word": "capirsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to understand each other", + "romanization": "capirsi", + "example_sentence_native": "È importante capirsi per evitare malintesi.", + "example_sentence_english": "It's important to understand each other to avoid misunderstandings.", + "pos": "verb", + "word_frequency": 23983 + }, + { + "word": "capofitto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headfirst;headlong", + "romanization": "capofitto", + "example_sentence_native": "Si è tuffato in acqua a capofitto.", + "example_sentence_english": "He dived into the water headfirst.", + "pos": "adverb", + "word_frequency": 23984 + }, + { + "word": "cartiera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paper mill", + "romanization": "cartiera", + "example_sentence_native": "La cartiera locale è una fonte importante di posti di lavoro.", + "example_sentence_english": "The local paper mill is an important source of jobs.", + "pos": "noun", + "word_frequency": 23988 + }, + { + "word": "catalogare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to catalog;to classify", + "romanization": "catalogare", + "example_sentence_native": "La biblioteca sta catalogando tutti i nuovi libri.", + "example_sentence_english": "The library is cataloging all the new books.", + "pos": "verb", + "word_frequency": 23989 + }, + { + "word": "cavalla", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mare (female horse)", + "romanization": "cavalla", + "example_sentence_native": "La cavalla ha galoppato liberamente nel prato.", + "example_sentence_english": "The mare galloped freely in the meadow.", + "pos": "noun", + "word_frequency": 23990 + }, + { + "word": "cheerleader", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cheerleader", + "romanization": "cheerleader", + "example_sentence_native": "Le cheerleader hanno animato la partita con i loro cori.", + "example_sentence_english": "The cheerleaders enlivened the game with their chants.", + "pos": "noun", + "word_frequency": 23993 + }, + { + "word": "cianfrusaglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junk;clutter;trinket", + "romanization": "cianfrusaglia", + "example_sentence_native": "La soffitta era piena di vecchia cianfrusaglia.", + "example_sentence_english": "The attic was full of old junk.", + "pos": "noun", + "word_frequency": 23995 + }, + { + "word": "coabitazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cohabitation", + "romanization": "coabitazione", + "example_sentence_native": "La coabitazione tra i due partiti è stata difficile.", + "example_sentence_english": "The cohabitation between the two parties was difficult.", + "pos": "noun", + "word_frequency": 23999 + }, + { + "word": "colonizzatore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colonizer", + "romanization": "colonizzatore", + "example_sentence_native": "I colonizzatori hanno lasciato un'eredità complessa.", + "example_sentence_english": "The colonizers left a complex legacy.", + "pos": "noun", + "word_frequency": 24000 + }, + { + "word": "coltellino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small knife;penknife", + "romanization": "coltellino", + "example_sentence_native": "Ha tirato fuori un coltellino per aprire la scatola.", + "example_sentence_english": "He took out a small knife to open the box.", + "pos": "noun", + "word_frequency": 24001 + }, + { + "word": "commensale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dinner guest;table companion", + "romanization": "commensale", + "example_sentence_native": "Ogni commensale ha apprezzato il cibo.", + "example_sentence_english": "Every dinner guest appreciated the food.", + "pos": "noun", + "word_frequency": 24002 + }, + { + "word": "comprensibilmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understandably", + "romanization": "comprensibilmente", + "example_sentence_native": "Comprensibilmente, era molto stanco dopo il lungo viaggio.", + "example_sentence_english": "Understandably, he was very tired after the long journey.", + "pos": "adverb", + "word_frequency": 24003 + }, + { + "word": "conformismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conformism", + "romanization": "conformismo", + "example_sentence_native": "Il conformismo può soffocare la creatività individuale.", + "example_sentence_english": "Conformism can stifle individual creativity.", + "pos": "noun", + "word_frequency": 24004 + }, + { + "word": "contrastato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contrasted;opposed;disputed", + "romanization": "contrastato", + "example_sentence_native": "La sua proposta è stata molto contrastata.", + "example_sentence_english": "His proposal was heavily opposed.", + "pos": "adjective", + "word_frequency": 24006 + }, + { + "word": "contrattempo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "setback;hitch;unforeseen delay", + "romanization": "contrattempo", + "example_sentence_native": "Abbiamo avuto un piccolo contrattempo con il volo.", + "example_sentence_english": "We had a small setback with the flight.", + "pos": "noun", + "word_frequency": 24007 + }, + { + "word": "corrida", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bullfight", + "romanization": "corrida", + "example_sentence_native": "La corrida è una tradizione controversa in Spagna.", + "example_sentence_english": "Bullfighting is a controversial tradition in Spain.", + "pos": "noun", + "word_frequency": 24008 + }, + { + "word": "cosca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crime family;gang (Mafia-related)", + "romanization": "cosca", + "example_sentence_native": "La polizia ha smantellato una potente cosca mafiosa.", + "example_sentence_english": "The police dismantled a powerful Mafia crime family.", + "pos": "noun", + "word_frequency": 24010 + }, + { + "word": "dattero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "date (fruit)", + "romanization": "dattero", + "example_sentence_native": "Mi piacciono molto i datteri, specialmente a Natale.", + "example_sentence_english": "I really like dates, especially at Christmas.", + "pos": "noun", + "word_frequency": 24014 + }, + { + "word": "debellare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to defeat;to eradicate;to suppress", + "romanization": "debellare", + "example_sentence_native": "Il governo ha promesso di debellare la corruzione.", + "example_sentence_english": "The government promised to eradicate corruption.", + "pos": "verb", + "word_frequency": 24015 + }, + { + "word": "demoniaco", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "demonic", + "romanization": "demoniaco", + "example_sentence_native": "Aveva uno sguardo quasi demoniaco.", + "example_sentence_english": "He had an almost demonic look.", + "pos": "adjective", + "word_frequency": 24017 + }, + { + "word": "devoluto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "devolved;assigned;transferred", + "romanization": "devoluto", + "example_sentence_native": "I fondi devoluti alla ricerca sono stati ben spesi.", + "example_sentence_english": "The funds devolved to research were well spent.", + "pos": "adjective", + "word_frequency": 24019 + }, + { + "word": "dimostrarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prove oneself;to turn out to be;to show oneself", + "romanization": "dimostrarsi", + "example_sentence_native": "Si è dimostrato un ottimo leader.", + "example_sentence_english": "He proved himself to be an excellent leader.", + "pos": "verb", + "word_frequency": 24020 + }, + { + "word": "dimostrativo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "demonstrative", + "romanization": "dimostrativo", + "example_sentence_native": "Questo è un pronome dimostrativo.", + "example_sentence_english": "This is a demonstrative pronoun.", + "pos": "adjective", + "word_frequency": 24021 + }, + { + "word": "disertato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deserted;abandoned", + "romanization": "disertato", + "example_sentence_native": "Il villaggio era completamente disertato.", + "example_sentence_english": "The village was completely deserted.", + "pos": "adjective", + "word_frequency": 24023 + }, + { + "word": "disgelo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thaw;détente", + "romanization": "disgelo", + "example_sentence_native": "Il disgelo primaverile ha sciolto la neve.", + "example_sentence_english": "The spring thaw melted the snow.", + "pos": "noun", + "word_frequency": 24024 + }, + { + "word": "dissipare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to dissipate;to squander;to dispel", + "romanization": "dissipare", + "example_sentence_native": "Ha dissipato tutta la sua fortuna in poco tempo.", + "example_sentence_english": "He squandered all his fortune in a short time.", + "pos": "verb", + "word_frequency": 24025 + }, + { + "word": "documentale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "documentary (as in film);factual", + "romanization": "documentale", + "example_sentence_native": "Stiamo guardando un film documentale sulla natura.", + "example_sentence_english": "We are watching a documentary film about nature.", + "pos": "adjective", + "word_frequency": 24026 + }, + { + "word": "ecclesia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "church (as in assembly of believers);ecclesia", + "romanization": "ecclesia", + "example_sentence_native": "Il termine \"ecclesia\" deriva dal greco antico.", + "example_sentence_english": "The term \"ecclesia\" derives from ancient Greek.", + "pos": "noun", + "word_frequency": 24030 + }, + { + "word": "emoticon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "emoticon", + "romanization": "emoticon", + "example_sentence_native": "Ha usato un'emoticon per esprimere la sua gioia.", + "example_sentence_english": "He used an emoticon to express his joy.", + "pos": "noun", + "word_frequency": 24033 + }, + { + "word": "emotività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "emotionality;emotional nature", + "romanization": "emotività", + "example_sentence_native": "La sua emotività è molto evidente.", + "example_sentence_english": "His emotionality is very evident.", + "pos": "noun", + "word_frequency": 24034 + }, + { + "word": "enigmatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "enigmatic", + "romanization": "enigmatico", + "example_sentence_native": "Il suo sorriso enigmatico mi ha incuriosito.", + "example_sentence_english": "His enigmatic smile made me curious.", + "pos": "adjective", + "word_frequency": 24035 + }, + { + "word": "escamotage", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trick;stratagem;loophole", + "romanization": "escamotage", + "example_sentence_native": "Ha trovato un escamotage per evitare la multa.", + "example_sentence_english": "He found a loophole to avoid the fine.", + "pos": "noun", + "word_frequency": 24037 + }, + { + "word": "esclusività", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exclusivity", + "romanization": "esclusività", + "example_sentence_native": "Il contratto garantisce l'esclusività del prodotto.", + "example_sentence_english": "The contract guarantees the exclusivity of the product.", + "pos": "noun", + "word_frequency": 24039 + }, + { + "word": "espletare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to carry out;to perform;to fulfill", + "romanization": "espletare", + "example_sentence_native": "Deve espletare le sue funzioni entro la fine della giornata.", + "example_sentence_english": "He must carry out his duties by the end of the day.", + "pos": "verb", + "word_frequency": 24040 + }, + { + "word": "eterogeneità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "heterogeneity", + "romanization": "eterogeneità", + "example_sentence_native": "L'eterogeneità del gruppo rendeva la discussione più interessante.", + "example_sentence_english": "The heterogeneity of the group made the discussion more interesting.", + "pos": "noun", + "word_frequency": 24041 + }, + { + "word": "facchino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porter;baggage handler", + "romanization": "facchino", + "example_sentence_native": "Il facchino ci ha aiutato con le valigie.", + "example_sentence_english": "The porter helped us with the suitcases.", + "pos": "noun", + "word_frequency": 24044 + }, + { + "word": "fanale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "headlight;lantern;beacon", + "romanization": "fanale", + "example_sentence_native": "Il fanale della macchina era rotto.", + "example_sentence_english": "The car's headlight was broken.", + "pos": "noun", + "word_frequency": 24045 + }, + { + "word": "fatalità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatality;fate;destiny;unfortunate event", + "romanization": "fatalità", + "example_sentence_native": "È stata una triste fatalità.", + "example_sentence_english": "It was a sad fatality.", + "pos": "noun", + "word_frequency": 24046 + }, + { + "word": "favoritismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "favoritism", + "romanization": "favoritismo", + "example_sentence_native": "Il favoritismo sul lavoro è ingiusto.", + "example_sentence_english": "Favoritism at work is unfair.", + "pos": "noun", + "word_frequency": 24047 + }, + { + "word": "flebile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "faint;weak;feeble", + "romanization": "flebile", + "example_sentence_native": "Si sentiva solo un flebile lamento.", + "example_sentence_english": "Only a faint moan could be heard.", + "pos": "adjective", + "word_frequency": 24051 + }, + { + "word": "frammentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fragmented;shattered", + "romanization": "frammentato", + "example_sentence_native": "Il suo discorso era frammentato e difficile da seguire.", + "example_sentence_english": "His speech was fragmented and difficult to follow.", + "pos": "adjective", + "word_frequency": 24053 + }, + { + "word": "frantumato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shattered;crushed;broken into pieces", + "romanization": "frantumato", + "example_sentence_native": "Il vetro era completamente frantumato.", + "example_sentence_english": "The glass was completely shattered.", + "pos": "adjective", + "word_frequency": 24054 + }, + { + "word": "fronzolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frill;flourish;unnecessary embellishment", + "romanization": "fronzolo", + "example_sentence_native": "Il vestito era pieno di fronzoli inutili.", + "example_sentence_english": "The dress was full of unnecessary frills.", + "pos": "noun", + "word_frequency": 24055 + }, + { + "word": "fumata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "puff of smoke;smoke (as in a single emission)", + "romanization": "fumata", + "example_sentence_native": "C'è stata una fumata bianca dal camino.", + "example_sentence_english": "There was a puff of white smoke from the chimney.", + "pos": "noun", + "word_frequency": 24056 + }, + { + "word": "galoppo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gallop", + "romanization": "galoppo", + "example_sentence_native": "Il cavallo era al galoppo.", + "example_sentence_english": "The horse was at a gallop.", + "pos": "noun", + "word_frequency": 24058 + }, + { + "word": "ginepro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "juniper", + "romanization": "ginepro", + "example_sentence_native": "Le bacche di ginepro sono usate per il gin.", + "example_sentence_english": "Juniper berries are used for gin.", + "pos": "noun", + "word_frequency": 24060 + }, + { + "word": "goduto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "enjoyed;relished", + "romanization": "goduto", + "example_sentence_native": "È stato un momento goduto da tutti.", + "example_sentence_english": "It was a moment enjoyed by everyone.", + "pos": "adjective", + "word_frequency": 24062 + }, + { + "word": "gronda", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gutter;eaves", + "romanization": "gronda", + "example_sentence_native": "L'acqua cadeva dalla gronda del tetto.", + "example_sentence_english": "The water was falling from the roof gutter.", + "pos": "noun", + "word_frequency": 24065 + }, + { + "word": "illeso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unharmed;uninjured;safe and sound", + "romanization": "illeso", + "example_sentence_native": "Nonostante l'incidente, è rimasto illeso.", + "example_sentence_english": "Despite the accident, he remained unharmed.", + "pos": "adjective", + "word_frequency": 24070 + }, + { + "word": "illudere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to delude;to mislead;to deceive", + "romanization": "illudere", + "example_sentence_native": "Non voglio illuderti con false speranze.", + "example_sentence_english": "I don't want to delude you with false hopes.", + "pos": "verb", + "word_frequency": 24071 + }, + { + "word": "imbottito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "padded;upholstered;stuffed", + "romanization": "imbottito", + "example_sentence_native": "La sedia era imbottita di piumino.", + "example_sentence_english": "The chair was padded with down.", + "pos": "adjective", + "word_frequency": 24072 + }, + { + "word": "imbroglione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swindler;cheat;trickster", + "romanization": "imbroglione", + "example_sentence_native": "Quell'uomo è un vero imbroglione.", + "example_sentence_english": "That man is a real swindler.", + "pos": "noun", + "word_frequency": 24073 + }, + { + "word": "immobilità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immobility;stillness", + "romanization": "immobilità", + "example_sentence_native": "La sua immobilità era preoccupante.", + "example_sentence_english": "His immobility was worrying.", + "pos": "noun", + "word_frequency": 24074 + }, + { + "word": "improponibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unacceptable;unfeasible;out of the question", + "romanization": "improponibile", + "example_sentence_native": "La sua proposta era assolutamente improponibile.", + "example_sentence_english": "His proposal was absolutely unacceptable.", + "pos": "adjective", + "word_frequency": 24075 + }, + { + "word": "imprudente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imprudent;reckless;careless", + "romanization": "imprudente", + "example_sentence_native": "È stato imprudente guidare così velocemente.", + "example_sentence_english": "It was imprudent to drive so fast.", + "pos": "adjective", + "word_frequency": 24076 + }, + { + "word": "inasprimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tightening;worsening;exacerbation;stiffening", + "romanization": "inasprimento", + "example_sentence_native": "L'inasprimento delle regole ha causato proteste.", + "example_sentence_english": "The tightening of the rules caused protests.", + "pos": "noun", + "word_frequency": 24077 + }, + { + "word": "incaricare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to entrust;to commission;to assign", + "romanization": "incaricare", + "example_sentence_native": "Mi hanno incaricato di gestire il progetto.", + "example_sentence_english": "They entrusted me with managing the project.", + "pos": "verb", + "word_frequency": 24078 + }, + { + "word": "incisore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "engraver;carver (also a type of tool)", + "romanization": "incisore", + "example_sentence_native": "L'incisore ha creato un bellissimo disegno sul metallo.", + "example_sentence_english": "The engraver created a beautiful design on the metal.", + "pos": "noun", + "word_frequency": 24079 + }, + { + "word": "incomodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconvenient;bothersome", + "romanization": "incomodo", + "example_sentence_native": "Spero di non essere d'incomodo.", + "example_sentence_english": "I hope I'm not being a bother.", + "pos": "adjective", + "word_frequency": 24080 + }, + { + "word": "ingestibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unmanageable;uncontrollable", + "romanization": "ingestibile", + "example_sentence_native": "La situazione è diventata completamente ingestibile.", + "example_sentence_english": "The situation has become completely unmanageable.", + "pos": "adjective", + "word_frequency": 24081 + }, + { + "word": "insediato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "settled;installed;established", + "romanization": "insediato", + "example_sentence_native": "Il nuovo sindaco è stato insediato ieri.", + "example_sentence_english": "The new mayor was installed yesterday.", + "pos": "adjective", + "word_frequency": 24082 + }, + { + "word": "inseguito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chased;pursued", + "romanization": "inseguito", + "example_sentence_native": "L'uomo inseguito dalla polizia è stato catturato.", + "example_sentence_english": "The man chased by the police was caught.", + "pos": "adjective", + "word_frequency": 24083 + }, + { + "word": "insoddisfacente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unsatisfactory;disappointing", + "romanization": "insoddisfacente", + "example_sentence_native": "I risultati sono stati insoddisfacenti.", + "example_sentence_english": "The results were unsatisfactory.", + "pos": "adjective", + "word_frequency": 24084 + }, + { + "word": "internamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "internment", + "romanization": "internamento", + "example_sentence_native": "L'internamento dei civili è una pratica controversa.", + "example_sentence_english": "The internment of civilians is a controversial practice.", + "pos": "noun", + "word_frequency": 24087 + }, + { + "word": "intriso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "soaked;imbued;saturated", + "romanization": "intriso", + "example_sentence_native": "Il pane era intriso di olio.", + "example_sentence_english": "The bread was soaked in oil.", + "pos": "adjective", + "word_frequency": 24088 + }, + { + "word": "logoro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "worn out;tattered;threadbare", + "romanization": "logoro", + "example_sentence_native": "Il vecchio tappeto era completamente logoro.", + "example_sentence_english": "The old carpet was completely worn out.", + "pos": "adjective", + "word_frequency": 24103 + }, + { + "word": "lunario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "almanac;calendar (often in idiom 'to make ends meet')", + "romanization": "lunario", + "example_sentence_native": "È difficile tirare avanti il lunario con un solo stipendio.", + "example_sentence_english": "It's hard to make ends meet with only one salary.", + "pos": "noun", + "word_frequency": 24105 + }, + { + "word": "lusinghiero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flattering;complimentary", + "romanization": "lusinghiero", + "example_sentence_native": "Ha ricevuto commenti molto lusinghieri sul suo lavoro.", + "example_sentence_english": "He received very flattering comments on his work.", + "pos": "adjective", + "word_frequency": 24106 + }, + { + "word": "magone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lump in one's throat;heartache;sadness", + "romanization": "magone", + "example_sentence_native": "Aveva un magone incredibile dopo la notizia.", + "example_sentence_english": "He had an incredible lump in his throat after the news.", + "pos": "noun", + "word_frequency": 24108 + }, + { + "word": "masochista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masochist;masochistic", + "romanization": "masochista", + "example_sentence_native": "Solo un masochista farebbe un lavoro così.", + "example_sentence_english": "Only a masochist would do such a job.", + "pos": "noun", + "word_frequency": 24109 + }, + { + "word": "merdoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shitty;crappy", + "romanization": "merdoso", + "example_sentence_native": "Che giornata merdosa!", + "example_sentence_english": "What a shitty day!", + "pos": "adjective", + "word_frequency": 24112 + }, + { + "word": "monitorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monitored", + "romanization": "monitorato", + "example_sentence_native": "La situazione è costantemente monitorata.", + "example_sentence_english": "The situation is constantly monitored.", + "pos": "adjective", + "word_frequency": 24115 + }, + { + "word": "murato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "walled up;bricked up", + "romanization": "murato", + "example_sentence_native": "La finestra era stata murata.", + "example_sentence_english": "The window had been walled up.", + "pos": "adjective", + "word_frequency": 24118 + }, + { + "word": "navigato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seasoned;experienced", + "romanization": "navigato", + "example_sentence_native": "È un professionista navigato nel suo campo.", + "example_sentence_english": "He is a seasoned professional in his field.", + "pos": "adjective", + "word_frequency": 24122 + }, + { + "word": "neoliberista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "neoliberal", + "romanization": "neoliberista", + "example_sentence_native": "Le politiche neoliberiste hanno avuto un impatto significativo.", + "example_sentence_english": "Neoliberal policies have had a significant impact.", + "pos": "adjective", + "word_frequency": 24123 + }, + { + "word": "neurologo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neurologist", + "romanization": "neurologo", + "example_sentence_native": "Ha consultato un neurologo per i suoi sintomi.", + "example_sentence_english": "He consulted a neurologist for his symptoms.", + "pos": "noun", + "word_frequency": 24124 + }, + { + "word": "novero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "number;count;roster", + "romanization": "novero", + "example_sentence_native": "È entrato nel novero dei migliori studenti.", + "example_sentence_english": "He entered the ranks of the best students.", + "pos": "noun", + "word_frequency": 24125 + }, + { + "word": "oda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ode", + "romanization": "oda", + "example_sentence_native": "Il poeta ha scritto un'oda alla bellezza della natura.", + "example_sentence_english": "The poet wrote an ode to the beauty of nature.", + "pos": "noun", + "word_frequency": 24127 + }, + { + "word": "ohm", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ohm", + "romanization": "ohm", + "example_sentence_native": "La resistenza è misurata in ohm.", + "example_sentence_english": "Resistance is measured in ohms.", + "pos": "noun", + "word_frequency": 24128 + }, + { + "word": "ossimoro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oxymoron", + "romanization": "ossimoro", + "example_sentence_native": "\"Silenzio assordante\" è un classico ossimoro.", + "example_sentence_english": "\"Deafening silence\" is a classic oxymoron.", + "pos": "noun", + "word_frequency": 24129 + }, + { + "word": "panetteria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bakery", + "romanization": "panetteria", + "example_sentence_native": "Vado in panetteria a comprare il pane fresco.", + "example_sentence_english": "I go to the bakery to buy fresh bread.", + "pos": "noun", + "word_frequency": 24132 + }, + { + "word": "peduncolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peduncle;stalk", + "romanization": "peduncolo", + "example_sentence_native": "Il fiore è attaccato al peduncolo.", + "example_sentence_english": "The flower is attached to the peduncle.", + "pos": "noun", + "word_frequency": 24135 + }, + { + "word": "permeabilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "permeability", + "romanization": "permeabilità", + "example_sentence_native": "La permeabilità del terreno è importante per il drenaggio.", + "example_sentence_english": "The permeability of the soil is important for drainage.", + "pos": "noun", + "word_frequency": 24136 + }, + { + "word": "pettinatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hairstyle", + "romanization": "pettinatura", + "example_sentence_native": "Ha una nuova pettinatura molto alla moda.", + "example_sentence_english": "She has a new very fashionable hairstyle.", + "pos": "noun", + "word_frequency": 24137 + }, + { + "word": "piantato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "planted;stuck", + "romanization": "piantato", + "example_sentence_native": "L'albero è stato piantato l'anno scorso.", + "example_sentence_english": "The tree was planted last year.", + "pos": "adjective", + "word_frequency": 24138 + }, + { + "word": "pilotato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piloted;guided", + "romanization": "pilotato", + "example_sentence_native": "Il drone è stato pilotato a distanza.", + "example_sentence_english": "The drone was piloted remotely.", + "pos": "adjective", + "word_frequency": 24139 + }, + { + "word": "platonico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "platonic", + "romanization": "platonico", + "example_sentence_native": "Hanno un'amicizia platonica.", + "example_sentence_english": "They have a platonic friendship.", + "pos": "adjective", + "word_frequency": 24141 + }, + { + "word": "polarità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polarity", + "romanization": "polarità", + "example_sentence_native": "La polarità di una batteria è importante.", + "example_sentence_english": "The polarity of a battery is important.", + "pos": "noun", + "word_frequency": 24142 + }, + { + "word": "porcino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "porcini mushroom", + "romanization": "porcino", + "example_sentence_native": "Ho raccolto dei funghi porcini nel bosco.", + "example_sentence_english": "I collected some porcini mushrooms in the woods.", + "pos": "noun", + "word_frequency": 24144 + }, + { + "word": "preceduto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "preceded", + "romanization": "preceduto", + "example_sentence_native": "L'evento è stato preceduto da una conferenza stampa.", + "example_sentence_english": "The event was preceded by a press conference.", + "pos": "adjective", + "word_frequency": 24147 + }, + { + "word": "preminente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pre-eminent;outstanding", + "romanization": "preminente", + "example_sentence_native": "Ha avuto un ruolo preminente nella discussione.", + "example_sentence_english": "He played a pre-eminent role in the discussion.", + "pos": "adjective", + "word_frequency": 24148 + }, + { + "word": "privatizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to privatize", + "romanization": "privatizzare", + "example_sentence_native": "Il governo intende privatizzare alcune aziende statali.", + "example_sentence_english": "The government intends to privatize some state-owned companies.", + "pos": "verb", + "word_frequency": 24149 + }, + { + "word": "provvigione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "commission (fee)", + "romanization": "provvigione", + "example_sentence_native": "Ha ricevuto una provvigione sulle vendite.", + "example_sentence_english": "He received a commission on the sales.", + "pos": "noun", + "word_frequency": 24150 + }, + { + "word": "punico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Punic", + "romanization": "punico", + "example_sentence_native": "Le guerre puniche furono combattute tra Roma e Cartagine.", + "example_sentence_english": "The Punic Wars were fought between Rome and Carthage.", + "pos": "adjective", + "word_frequency": 24153 + }, + { + "word": "quid", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quid;essence;distinguishing feature", + "romanization": "quid", + "example_sentence_native": "Il quid della questione è la sua motivazione.", + "example_sentence_english": "The quid of the matter is his motivation.", + "pos": "noun", + "word_frequency": 24154 + }, + { + "word": "raffinazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "refining;refinement", + "romanization": "raffinazione", + "example_sentence_native": "La raffinazione del petrolio è un processo complesso.", + "example_sentence_english": "Oil refining is a complex process.", + "pos": "noun", + "word_frequency": 24155 + }, + { + "word": "rasatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shaving", + "romanization": "rasatura", + "example_sentence_native": "La rasatura quotidiana è una routine per molti uomini.", + "example_sentence_english": "Daily shaving is a routine for many men.", + "pos": "noun", + "word_frequency": 24156 + }, + { + "word": "rettificare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rectify;to correct", + "romanization": "rettificare", + "example_sentence_native": "Dobbiamo rettificare l'errore nel documento.", + "example_sentence_english": "We need to rectify the error in the document.", + "pos": "verb", + "word_frequency": 24158 + }, + { + "word": "reversibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reversible", + "romanization": "reversibile", + "example_sentence_native": "Questo processo è reversibile.", + "example_sentence_english": "This process is reversible.", + "pos": "adjective", + "word_frequency": 24159 + }, + { + "word": "ricreato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "recreated;restored", + "romanization": "ricreato", + "example_sentence_native": "Il parco è stato ricreato dopo l'incendio.", + "example_sentence_english": "The park was recreated after the fire.", + "pos": "adjective", + "word_frequency": 24160 + }, + { + "word": "rifrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "refraction", + "romanization": "rifrazione", + "example_sentence_native": "La rifrazione della luce crea un arcobaleno.", + "example_sentence_english": "The refraction of light creates a rainbow.", + "pos": "noun", + "word_frequency": 24162 + }, + { + "word": "rigenerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to regenerate;to restore", + "romanization": "rigenerare", + "example_sentence_native": "Il corpo umano ha la capacità di rigenerare alcune cellule.", + "example_sentence_english": "The human body has the ability to regenerate some cells.", + "pos": "verb", + "word_frequency": 24163 + }, + { + "word": "rincoglionito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dazed;stupid (colloquial)", + "romanization": "rincoglionito", + "example_sentence_native": "Era così stanco che si sentiva rincoglionito.", + "example_sentence_english": "He was so tired he felt dazed.", + "pos": "adjective", + "word_frequency": 24164 + }, + { + "word": "rinfrescante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "refreshing", + "romanization": "rinfrescante", + "example_sentence_native": "Questa bevanda è molto rinfrescante.", + "example_sentence_english": "This drink is very refreshing.", + "pos": "adjective", + "word_frequency": 24165 + }, + { + "word": "ripercuotere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reverberate;to have repercussions", + "romanization": "ripercuotere", + "example_sentence_native": "Le sue azioni potrebbero ripercuotersi sul futuro.", + "example_sentence_english": "His actions could have repercussions on the future.", + "pos": "verb", + "word_frequency": 24166 + }, + { + "word": "ritrattare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to retract;to recant", + "romanization": "ritrattare", + "example_sentence_native": "Ha dovuto ritrattare le sue dichiarazioni.", + "example_sentence_english": "He had to retract his statements.", + "pos": "verb", + "word_frequency": 24167 + }, + { + "word": "rovistare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to rummage;to search through", + "romanization": "rovistare", + "example_sentence_native": "Ha iniziato a rovistare nel cassetto.", + "example_sentence_english": "He started to rummage through the drawer.", + "pos": "verb", + "word_frequency": 24170 + }, + { + "word": "rutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burp;belch", + "romanization": "rutto", + "example_sentence_native": "Ha fatto un rutto dopo aver bevuto la bibita.", + "example_sentence_english": "He let out a burp after drinking the soda.", + "pos": "noun", + "word_frequency": 24172 + }, + { + "word": "sbattuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "beaten;tired;worn out", + "romanization": "sbattuto", + "example_sentence_native": "Dopo il lungo viaggio, era completamente sbattuto.", + "example_sentence_english": "After the long journey, he was completely worn out.", + "pos": "adjective", + "word_frequency": 24179 + }, + { + "word": "scandalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to scandalize;to shock", + "romanization": "scandalizzare", + "example_sentence_native": "Le sue parole hanno scandalizzato il pubblico.", + "example_sentence_english": "His words scandalized the audience.", + "pos": "verb", + "word_frequency": 24180 + }, + { + "word": "scandito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rhythmic;measured;punctuated", + "romanization": "scandito", + "example_sentence_native": "Il discorso era scandito da pause significative.", + "example_sentence_english": "The speech was punctuated by significant pauses.", + "pos": "adjective", + "word_frequency": 24181 + }, + { + "word": "scherzetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little joke;prank", + "romanization": "scherzetto", + "example_sentence_native": "Era solo uno scherzetto innocente.", + "example_sentence_english": "It was just an innocent prank.", + "pos": "noun", + "word_frequency": 24182 + }, + { + "word": "sconcertato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disconcerted;bewildered;upset", + "romanization": "sconcertato", + "example_sentence_native": "Era sconcertato dalla notizia inaspettata.", + "example_sentence_english": "He was disconcerted by the unexpected news.", + "pos": "adjective", + "word_frequency": 24185 + }, + { + "word": "sfascio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ruin;breakdown;disarray", + "romanization": "sfascio", + "example_sentence_native": "Il paese era in uno stato di sfascio economico.", + "example_sentence_english": "The country was in a state of economic ruin.", + "pos": "noun", + "word_frequency": 24192 + }, + { + "word": "sheikh", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sheikh", + "romanization": "sheikh", + "example_sentence_native": "Lo sheikh ha visitato la città.", + "example_sentence_english": "The sheikh visited the city.", + "pos": "noun", + "word_frequency": 24194 + }, + { + "word": "smagliante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dazzling;brilliant;radiant", + "romanization": "smagliante", + "example_sentence_native": "Aveva un sorriso smagliante.", + "example_sentence_english": "She had a dazzling smile.", + "pos": "adjective", + "word_frequency": 24196 + }, + { + "word": "sopracitato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "above-mentioned;aforementioned", + "romanization": "sopracitato", + "example_sentence_native": "Si riferiva al documento sopracitato.", + "example_sentence_english": "He referred to the above-mentioned document.", + "pos": "adjective", + "word_frequency": 24197 + }, + { + "word": "spareggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "playoff;tie-breaker", + "romanization": "spareggio", + "example_sentence_native": "La partita è finita in spareggio.", + "example_sentence_english": "The game ended in a tie-breaker.", + "pos": "noun", + "word_frequency": 24198 + }, + { + "word": "sproporzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disproportion", + "romanization": "sproporzione", + "example_sentence_native": "C'è una sproporzione tra i costi e i benefici.", + "example_sentence_english": "There is a disproportion between costs and benefits.", + "pos": "noun", + "word_frequency": 24200 + }, + { + "word": "spuma", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "foam", + "romanization": "spuma", + "example_sentence_native": "La birra aveva molta spuma.", + "example_sentence_english": "The beer had a lot of foam.", + "pos": "noun", + "word_frequency": 24201 + }, + { + "word": "strabiliante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astonishing", + "romanization": "strabiliante", + "example_sentence_native": "Ha fatto una performance strabiliante.", + "example_sentence_english": "He gave an astonishing performance.", + "pos": "adjective", + "word_frequency": 24203 + }, + { + "word": "strapotere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overwhelming power", + "romanization": "strapotere", + "example_sentence_native": "Il suo strapotere economico è innegabile.", + "example_sentence_english": "His overwhelming economic power is undeniable.", + "pos": "noun", + "word_frequency": 24204 + }, + { + "word": "strappalacrime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tear-jerking", + "romanization": "strappalacrime", + "example_sentence_native": "Era un film strappalacrime.", + "example_sentence_english": "It was a tear-jerking movie.", + "pos": "adjective", + "word_frequency": 24205 + }, + { + "word": "strisciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crawl", + "romanization": "strisciare", + "example_sentence_native": "Il serpente strisciava sull'erba.", + "example_sentence_english": "The snake was crawling on the grass.", + "pos": "verb", + "word_frequency": 24206 + }, + { + "word": "stucchevole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cloying", + "romanization": "stucchevole", + "example_sentence_native": "La sua gentilezza era quasi stucchevole.", + "example_sentence_english": "His kindness was almost cloying.", + "pos": "adjective", + "word_frequency": 24207 + }, + { + "word": "suggerito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "suggested", + "romanization": "suggerito", + "example_sentence_native": "Il percorso suggerito è più breve.", + "example_sentence_english": "The suggested route is shorter.", + "pos": "adjective", + "word_frequency": 24208 + }, + { + "word": "supplizio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "torment", + "romanization": "supplizio", + "example_sentence_native": "Ha sopportato il supplizio con dignità.", + "example_sentence_english": "He endured the torment with dignity.", + "pos": "noun", + "word_frequency": 24209 + }, + { + "word": "sussulto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "jolt", + "romanization": "sussulto", + "example_sentence_native": "Si svegliò con un sussulto.", + "example_sentence_english": "He woke up with a jolt.", + "pos": "noun", + "word_frequency": 24210 + }, + { + "word": "tipografico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typographic", + "romanization": "tipografico", + "example_sentence_native": "C'è un errore tipografico nel testo.", + "example_sentence_english": "There is a typographic error in the text.", + "pos": "adjective", + "word_frequency": 24213 + }, + { + "word": "tonale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tonal", + "romanization": "tonale", + "example_sentence_native": "La musica tonale è basata su una tonalità.", + "example_sentence_english": "Tonal music is based on a key.", + "pos": "adjective", + "word_frequency": 24214 + }, + { + "word": "trader", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trader", + "romanization": "trader", + "example_sentence_native": "È un trader di successo in borsa.", + "example_sentence_english": "He is a successful stock market trader.", + "pos": "noun", + "word_frequency": 24217 + }, + { + "word": "travagliato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "troubled", + "romanization": "travagliato", + "example_sentence_native": "Ha avuto un passato travagliato.", + "example_sentence_english": "He had a troubled past.", + "pos": "adjective", + "word_frequency": 24218 + }, + { + "word": "ubriachezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkenness", + "romanization": "ubriachezza", + "example_sentence_native": "L'ubriachezza è pericolosa.", + "example_sentence_english": "Drunkenness is dangerous.", + "pos": "noun", + "word_frequency": 24224 + }, + { + "word": "ubriacone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drunkard", + "romanization": "ubriacone", + "example_sentence_native": "Era conosciuto come un ubriacone del villaggio.", + "example_sentence_english": "He was known as the village drunkard.", + "pos": "noun", + "word_frequency": 24225 + }, + { + "word": "vaghezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vagueness", + "romanization": "vaghezza", + "example_sentence_native": "La vaghezza delle sue risposte era frustrante.", + "example_sentence_english": "The vagueness of his answers was frustrating.", + "pos": "noun", + "word_frequency": 24227 + }, + { + "word": "vaglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "money order", + "romanization": "vaglia", + "example_sentence_native": "Ho inviato un vaglia postale.", + "example_sentence_english": "I sent a postal money order.", + "pos": "noun", + "word_frequency": 24228 + }, + { + "word": "vagliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to evaluate", + "romanization": "vagliare", + "example_sentence_native": "Dobbiamo vagliare tutte le opzioni.", + "example_sentence_english": "We need to evaluate all the options.", + "pos": "verb", + "word_frequency": 24229 + }, + { + "word": "voltastomaco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nausea", + "romanization": "voltastomaco", + "example_sentence_native": "Quella scena mi ha fatto voltastomaco.", + "example_sentence_english": "That scene made me feel sick.", + "pos": "noun", + "word_frequency": 24232 + }, + { + "word": "webmaster", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "webmaster", + "romanization": "webmaster", + "example_sentence_native": "Il webmaster ha aggiornato il sito.", + "example_sentence_english": "The webmaster updated the website.", + "pos": "noun", + "word_frequency": 24234 + }, + { + "word": "wurstel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "frankfurter", + "romanization": "wurstel", + "example_sentence_native": "I bambini amano i wurstel.", + "example_sentence_english": "Children love frankfurters.", + "pos": "noun", + "word_frequency": 24235 + }, + { + "word": "zuffa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brawl;fight", + "romanization": "zuffa", + "example_sentence_native": "C'è stata una zuffa fuori dal bar.", + "example_sentence_english": "There was a brawl outside the bar.", + "pos": "noun", + "word_frequency": 24240 + }, + { + "word": "acca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "H (the letter)", + "romanization": "acca", + "example_sentence_native": "La parola \"hotel\" in italiano si scrive con l'acca.", + "example_sentence_english": "The word \"hotel\" in Italian is written with an H.", + "pos": "noun", + "word_frequency": 24242 + }, + { + "word": "adiposo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "adipose;fatty", + "romanization": "adiposo", + "example_sentence_native": "Il tessuto adiposo è importante per l'energia.", + "example_sentence_english": "Adipose tissue is important for energy.", + "pos": "adjective", + "word_frequency": 24244 + }, + { + "word": "agganciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hook;to latch onto", + "romanization": "agganciare", + "example_sentence_native": "Devi agganciare la cintura di sicurezza.", + "example_sentence_english": "You need to fasten your seatbelt.", + "pos": "verb", + "word_frequency": 24247 + }, + { + "word": "allineare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to align", + "romanization": "allineare", + "example_sentence_native": "Dobbiamo allineare i libri sullo scaffale.", + "example_sentence_english": "We need to align the books on the shelf.", + "pos": "verb", + "word_frequency": 24249 + }, + { + "word": "ammazzata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "killing;murder (slang: hard work)", + "romanization": "ammazzata", + "example_sentence_native": "È stata una vera ammazzata finire il progetto in tempo.", + "example_sentence_english": "It was a real killer to finish the project on time.", + "pos": "noun", + "word_frequency": 24253 + }, + { + "word": "animaletto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little animal;pet", + "romanization": "animaletto", + "example_sentence_native": "Il bambino giocava con un piccolo animaletto di peluche.", + "example_sentence_english": "The child was playing with a small stuffed animal.", + "pos": "noun", + "word_frequency": 24255 + }, + { + "word": "annientamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "annihilation", + "romanization": "annientamento", + "example_sentence_native": "La guerra portò all'annientamento di intere città.", + "example_sentence_english": "The war led to the annihilation of entire cities.", + "pos": "noun", + "word_frequency": 24256 + }, + { + "word": "armonizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "harmonization", + "romanization": "armonizzazione", + "example_sentence_native": "L'armonizzazione delle leggi è un processo complesso.", + "example_sentence_english": "The harmonization of laws is a complex process.", + "pos": "noun", + "word_frequency": 24260 + }, + { + "word": "assioma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "axiom", + "romanization": "assioma", + "example_sentence_native": "È un assioma che la somma degli angoli interni di un triangolo è 180 gradi.", + "example_sentence_english": "It is an axiom that the sum of the interior angles of a triangle is 180 degrees.", + "pos": "noun", + "word_frequency": 24261 + }, + { + "word": "astenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abstained;abstinent", + "romanization": "astenuto", + "example_sentence_native": "Molti elettori si sono astenuti dal voto.", + "example_sentence_english": "Many voters abstained from voting.", + "pos": "adjective", + "word_frequency": 24262 + }, + { + "word": "atterrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "landed", + "romanization": "atterrato", + "example_sentence_native": "L'aereo è atterrato in sicurezza.", + "example_sentence_english": "The plane landed safely.", + "pos": "adjective", + "word_frequency": 24265 + }, + { + "word": "ausiliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auxiliary", + "romanization": "ausiliare", + "example_sentence_native": "I verbi ausiliari sono \"essere\" e \"avere\".", + "example_sentence_english": "Auxiliary verbs are \"essere\" and \"avere\".", + "pos": "adjective", + "word_frequency": 24266 + }, + { + "word": "autogol", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "own goal", + "romanization": "autogol", + "example_sentence_native": "Il difensore ha segnato un autogol.", + "example_sentence_english": "The defender scored an own goal.", + "pos": "noun", + "word_frequency": 24267 + }, + { + "word": "avventore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "customer;patron", + "romanization": "avventore", + "example_sentence_native": "Il barista salutò ogni avventore che entrava.", + "example_sentence_english": "The bartender greeted every customer who entered.", + "pos": "noun", + "word_frequency": 24268 + }, + { + "word": "barbarico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "barbaric", + "romanization": "barbarico", + "example_sentence_native": "Le invasioni barbariche segnarono la fine dell'Impero Romano.", + "example_sentence_english": "The barbaric invasions marked the end of the Roman Empire.", + "pos": "adjective", + "word_frequency": 24271 + }, + { + "word": "barometro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barometer", + "romanization": "barometro", + "example_sentence_native": "Il barometro indica un cambiamento del tempo.", + "example_sentence_english": "The barometer indicates a change in the weather.", + "pos": "noun", + "word_frequency": 24273 + }, + { + "word": "battitura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typing;beating", + "romanization": "battitura", + "example_sentence_native": "Ho finito la battitura del testo.", + "example_sentence_english": "I finished typing the text.", + "pos": "noun", + "word_frequency": 24274 + }, + { + "word": "bioetica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bioethics", + "romanization": "bioetica", + "example_sentence_native": "La bioetica affronta questioni morali legate alla biologia e alla medicina.", + "example_sentence_english": "Bioethics addresses moral issues related to biology and medicine.", + "pos": "noun", + "word_frequency": 24278 + }, + { + "word": "blasfemo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "blasphemous", + "romanization": "blasfemo", + "example_sentence_native": "Le sue parole erano considerate blasfeme dalla comunità religiosa.", + "example_sentence_english": "His words were considered blasphemous by the religious community.", + "pos": "adjective", + "word_frequency": 24281 + }, + { + "word": "blob", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blob", + "romanization": "blob", + "example_sentence_native": "Un blob di gelatina si è rovesciato sul tavolo.", + "example_sentence_english": "A blob of jelly spilled on the table.", + "pos": "noun", + "word_frequency": 24282 + }, + { + "word": "boiata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "nonsense", + "romanization": "boiata", + "example_sentence_native": "Non dire boiate, per favore.", + "example_sentence_english": "Don't talk nonsense, please.", + "pos": "noun", + "word_frequency": 24284 + }, + { + "word": "brunch", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "brunch", + "romanization": "brunch", + "example_sentence_native": "Andiamo a fare un brunch domenica prossima?", + "example_sentence_english": "Shall we go for brunch next Sunday?", + "pos": "noun", + "word_frequency": 24289 + }, + { + "word": "cancelliera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chancellor (female)", + "romanization": "cancelliera", + "example_sentence_native": "La cancelliera ha tenuto un discorso importante.", + "example_sentence_english": "The chancellor gave an important speech.", + "pos": "noun", + "word_frequency": 24290 + }, + { + "word": "canotta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tank top", + "romanization": "canotta", + "example_sentence_native": "Ho comprato una nuova canotta per l'estate.", + "example_sentence_english": "I bought a new tank top for the summer.", + "pos": "noun", + "word_frequency": 24292 + }, + { + "word": "caratura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "caliber", + "romanization": "caratura", + "example_sentence_native": "È un professionista di alta caratura.", + "example_sentence_english": "He is a professional of high caliber.", + "pos": "noun", + "word_frequency": 24294 + }, + { + "word": "chardonnay", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Chardonnay", + "romanization": "chardonnay", + "example_sentence_native": "Vorrei un bicchiere di chardonnay, per favore.", + "example_sentence_english": "I would like a glass of Chardonnay, please.", + "pos": "noun", + "word_frequency": 24303 + }, + { + "word": "cicala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cicada", + "romanization": "cicala", + "example_sentence_native": "In estate, si sente il canto delle cicale.", + "example_sentence_english": "In summer, you can hear the song of the cicadas.", + "pos": "noun", + "word_frequency": 24304 + }, + { + "word": "cipresso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cypress", + "romanization": "cipresso", + "example_sentence_native": "I cipressi sono alberi tipici del paesaggio toscano.", + "example_sentence_english": "Cypresses are typical trees of the Tuscan landscape.", + "pos": "noun", + "word_frequency": 24306 + }, + { + "word": "coito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coitus", + "romanization": "coito", + "example_sentence_native": "Il coito è l'atto sessuale tra due individui.", + "example_sentence_english": "Coitus is the sexual act between two individuals.", + "pos": "noun", + "word_frequency": 24308 + }, + { + "word": "computazionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "computational", + "romanization": "computazionale", + "example_sentence_native": "La linguistica computazionale è un campo di studio interessante.", + "example_sentence_english": "Computational linguistics is an interesting field of study.", + "pos": "adjective", + "word_frequency": 24309 + }, + { + "word": "concio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tanned", + "romanization": "concio", + "example_sentence_native": "La pelle concia è molto resistente.", + "example_sentence_english": "Tanned leather is very resistant.", + "pos": "adjective", + "word_frequency": 24311 + }, + { + "word": "concomitante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "concomitant", + "romanization": "concomitante", + "example_sentence_native": "Ci sono stati effetti concomitanti alla decisione.", + "example_sentence_english": "There were concomitant effects to the decision.", + "pos": "adjective", + "word_frequency": 24312 + }, + { + "word": "concussione", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "extortion", + "romanization": "concussione", + "example_sentence_native": "È stato accusato di concussione per aver abusato del suo potere.", + "example_sentence_english": "He was accused of extortion for abusing his power.", + "pos": "noun", + "word_frequency": 24313 + }, + { + "word": "convincimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conviction", + "romanization": "convincimento", + "example_sentence_native": "Ha espresso il suo profondo convincimento sulla questione.", + "example_sentence_english": "He expressed his deep conviction on the matter.", + "pos": "noun", + "word_frequency": 24314 + }, + { + "word": "costeggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to skirt", + "romanization": "costeggiare", + "example_sentence_native": "Abbiamo deciso di costeggiare il lago in bicicletta.", + "example_sentence_english": "We decided to skirt the lake by bike.", + "pos": "verb", + "word_frequency": 24316 + }, + { + "word": "deliberato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deliberate", + "romanization": "deliberato", + "example_sentence_native": "La sua decisione è stata deliberata e ben ponderata.", + "example_sentence_english": "His decision was deliberate and well-considered.", + "pos": "adjective", + "word_frequency": 24321 + }, + { + "word": "deridere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mock", + "romanization": "deridere", + "example_sentence_native": "Non dovresti mai deridere gli altri per i loro errori.", + "example_sentence_english": "You should never mock others for their mistakes.", + "pos": "verb", + "word_frequency": 24323 + }, + { + "word": "derrata", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foodstuff", + "romanization": "derrata", + "example_sentence_native": "Le derrate alimentari sono state distribuite alla popolazione.", + "example_sentence_english": "Foodstuffs were distributed to the population.", + "pos": "noun", + "word_frequency": 24324 + }, + { + "word": "despota", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despot", + "romanization": "despota", + "example_sentence_native": "Il despota governava il paese con pugno di ferro.", + "example_sentence_english": "The despot ruled the country with an iron fist.", + "pos": "noun", + "word_frequency": 24325 + }, + { + "word": "diminuito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "decreased", + "romanization": "diminuito", + "example_sentence_native": "Il numero di partecipanti è diminuito rispetto all'anno scorso.", + "example_sentence_english": "The number of participants has decreased compared to last year.", + "pos": "adjective", + "word_frequency": 24327 + }, + { + "word": "diseguaglianza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inequality", + "romanization": "diseguaglianza", + "example_sentence_native": "La diseguaglianza sociale è un problema persistente.", + "example_sentence_english": "Social inequality is a persistent problem.", + "pos": "noun", + "word_frequency": 24328 + }, + { + "word": "disertare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to desert", + "romanization": "disertare", + "example_sentence_native": "Molti soldati hanno disertato durante la guerra.", + "example_sentence_english": "Many soldiers deserted during the war.", + "pos": "verb", + "word_frequency": 24329 + }, + { + "word": "donzella", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "damsel", + "romanization": "donzella", + "example_sentence_native": "Il cavaliere salvò la donzella in pericolo.", + "example_sentence_english": "The knight saved the damsel in distress.", + "pos": "noun", + "word_frequency": 24330 + }, + { + "word": "dumping", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dumping", + "romanization": "dumping", + "example_sentence_native": "L'azienda è stata accusata di praticare il dumping.", + "example_sentence_english": "The company was accused of practicing dumping.", + "pos": "noun", + "word_frequency": 24332 + }, + { + "word": "elmetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "helmet", + "romanization": "elmetto", + "example_sentence_native": "Il soldato indossava un elmetto per proteggersi.", + "example_sentence_english": "The soldier wore a helmet to protect himself.", + "pos": "noun", + "word_frequency": 24336 + }, + { + "word": "equiparato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "equated", + "romanization": "equiparato", + "example_sentence_native": "Il suo status è stato equiparato a quello di un dirigente.", + "example_sentence_english": "His status has been equated to that of an executive.", + "pos": "adjective", + "word_frequency": 24338 + }, + { + "word": "erariale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fiscal", + "romanization": "erariale", + "example_sentence_native": "Le entrate erariali sono aumentate quest'anno.", + "example_sentence_english": "Fiscal revenues have increased this year.", + "pos": "adjective", + "word_frequency": 24339 + }, + { + "word": "erudito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erudite", + "romanization": "erudito", + "example_sentence_native": "Era un uomo molto erudito, con una vasta conoscenza.", + "example_sentence_english": "He was a very erudite man, with vast knowledge.", + "pos": "adjective", + "word_frequency": 24341 + }, + { + "word": "facoltoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wealthy", + "romanization": "facoltoso", + "example_sentence_native": "Viveva in una famiglia molto facoltosa.", + "example_sentence_english": "He lived in a very wealthy family.", + "pos": "adjective", + "word_frequency": 24344 + }, + { + "word": "fiacca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "weakness", + "romanization": "fiacca", + "example_sentence_native": "Dopo il lungo viaggio, sentiva una grande fiacca.", + "example_sentence_english": "After the long journey, he felt a great weakness.", + "pos": "noun", + "word_frequency": 24349 + }, + { + "word": "finitura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finish", + "romanization": "finitura", + "example_sentence_native": "La finitura del mobile era impeccabile.", + "example_sentence_english": "The finish of the furniture was impeccable.", + "pos": "noun", + "word_frequency": 24350 + }, + { + "word": "frignare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to whine", + "romanization": "frignare", + "example_sentence_native": "Il bambino ha iniziato a frignare per un giocattolo.", + "example_sentence_english": "The child started to whine for a toy.", + "pos": "verb", + "word_frequency": 24353 + }, + { + "word": "gazzettino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "newsletter", + "romanization": "gazzettino", + "example_sentence_native": "Leggeva il gazzettino locale ogni mattina.", + "example_sentence_english": "He read the local newsletter every morning.", + "pos": "noun", + "word_frequency": 24355 + }, + { + "word": "giallastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "yellowish", + "romanization": "giallastro", + "example_sentence_native": "Il muro aveva una tinta giallastra.", + "example_sentence_english": "The wall had a yellowish tint.", + "pos": "adjective", + "word_frequency": 24358 + }, + { + "word": "illogico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "illogical", + "romanization": "illogico", + "example_sentence_native": "La sua decisione è stata completamente illogica.", + "example_sentence_english": "His decision was completely illogical.", + "pos": "adjective", + "word_frequency": 24368 + }, + { + "word": "imboccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to feed (a child);to enter (a road)", + "romanization": "imboccare", + "example_sentence_native": "Devi imboccare il bambino con il cucchiaino.", + "example_sentence_english": "You need to feed the baby with the spoon.", + "pos": "verb", + "word_frequency": 24369 + }, + { + "word": "immutato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unchanged", + "romanization": "immutato", + "example_sentence_native": "Il suo atteggiamento è rimasto immutato nel tempo.", + "example_sentence_english": "His attitude remained unchanged over time.", + "pos": "adjective", + "word_frequency": 24370 + }, + { + "word": "implicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "involved;implied", + "romanization": "implicato", + "example_sentence_native": "Era implicato nello scandalo.", + "example_sentence_english": "He was involved in the scandal.", + "pos": "adjective", + "word_frequency": 24371 + }, + { + "word": "importatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "importer", + "romanization": "importatore", + "example_sentence_native": "L'azienda è un grande importatore di caffè.", + "example_sentence_english": "The company is a large importer of coffee.", + "pos": "noun", + "word_frequency": 24372 + }, + { + "word": "inconciliabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreconcilable", + "romanization": "inconciliabile", + "example_sentence_native": "Le loro opinioni erano inconciliabili.", + "example_sentence_english": "Their opinions were irreconcilable.", + "pos": "adjective", + "word_frequency": 24373 + }, + { + "word": "inconfutabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrefutable", + "romanization": "inconfutabile", + "example_sentence_native": "Ha presentato prove inconfutabili.", + "example_sentence_english": "He presented irrefutable evidence.", + "pos": "adjective", + "word_frequency": 24374 + }, + { + "word": "incorporazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incorporation", + "romanization": "incorporazione", + "example_sentence_native": "Il processo di incorporazione è stato completato.", + "example_sentence_english": "The incorporation process has been completed.", + "pos": "noun", + "word_frequency": 24375 + }, + { + "word": "incuria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negligence;carelessness", + "romanization": "incuria", + "example_sentence_native": "L'incidente è stato causato dall'incuria.", + "example_sentence_english": "The accident was caused by negligence.", + "pos": "noun", + "word_frequency": 24376 + }, + { + "word": "indicibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unspeakable;inexpressible", + "romanization": "indicibile", + "example_sentence_native": "Ha provato un dolore indicibile.", + "example_sentence_english": "He felt unspeakable pain.", + "pos": "adjective", + "word_frequency": 24377 + }, + { + "word": "indicizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indexing", + "romanization": "indicizzazione", + "example_sentence_native": "L'indicizzazione dei dati è fondamentale per la ricerca.", + "example_sentence_english": "Data indexing is fundamental for research.", + "pos": "noun", + "word_frequency": 24378 + }, + { + "word": "ineguagliabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unmatchable;incomparable", + "romanization": "ineguagliabile", + "example_sentence_native": "La sua bellezza è ineguagliabile.", + "example_sentence_english": "Her beauty is unmatchable.", + "pos": "adjective", + "word_frequency": 24379 + }, + { + "word": "inoltro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "forwarding (e.g.;email)", + "romanization": "inoltro", + "example_sentence_native": "Ho impostato l'inoltro automatico delle email.", + "example_sentence_english": "I set up automatic email forwarding.", + "pos": "noun", + "word_frequency": 24380 + }, + { + "word": "inossidabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stainless;rustproof", + "romanization": "inossidabile", + "example_sentence_native": "Questo coltello è fatto di acciaio inossidabile.", + "example_sentence_english": "This knife is made of stainless steel.", + "pos": "adjective", + "word_frequency": 24381 + }, + { + "word": "inscenato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "staged;faked", + "romanization": "inscenato", + "example_sentence_native": "L'incidente sembrava inscenato.", + "example_sentence_english": "The accident seemed staged.", + "pos": "adjective", + "word_frequency": 24382 + }, + { + "word": "ippodromo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "racetrack;hippodrome", + "romanization": "ippodromo", + "example_sentence_native": "Siamo andati all'ippodromo per vedere le corse dei cavalli.", + "example_sentence_english": "We went to the racetrack to watch the horse races.", + "pos": "noun", + "word_frequency": 24383 + }, + { + "word": "irrinunciabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indispensable;unrenounceable", + "romanization": "irrinunciabile", + "example_sentence_native": "La libertà è un diritto irrinunciabile.", + "example_sentence_english": "Freedom is an indispensable right.", + "pos": "adjective", + "word_frequency": 24384 + }, + { + "word": "ispiratrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspirer;muse", + "romanization": "ispiratrice", + "example_sentence_native": "Era la sua musa ispiratrice.", + "example_sentence_english": "She was his inspiring muse.", + "pos": "noun", + "word_frequency": 24385 + }, + { + "word": "limonata", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lemonade", + "romanization": "limonata", + "example_sentence_native": "Vorrei una limonata fresca, per favore.", + "example_sentence_english": "I would like a fresh lemonade, please.", + "pos": "noun", + "word_frequency": 24400 + }, + { + "word": "mangime", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "animal feed;fodder", + "romanization": "mangime", + "example_sentence_native": "Abbiamo comprato del mangime per i conigli.", + "example_sentence_english": "We bought some feed for the rabbits.", + "pos": "noun", + "word_frequency": 24405 + }, + { + "word": "manovella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crank;handle", + "romanization": "manovella", + "example_sentence_native": "Gira la manovella per aprire la finestra.", + "example_sentence_english": "Turn the crank to open the window.", + "pos": "noun", + "word_frequency": 24406 + }, + { + "word": "mantovana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valance;Mantuan (person;cake)", + "romanization": "mantovana", + "example_sentence_native": "Abbiamo appeso una nuova mantovana alla finestra.", + "example_sentence_english": "We hung a new valance on the window.", + "pos": "noun", + "word_frequency": 24407 + }, + { + "word": "marna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marl", + "romanization": "marna", + "example_sentence_native": "Il terreno è composto principalmente da argilla e marna.", + "example_sentence_english": "The soil is mainly composed of clay and marl.", + "pos": "noun", + "word_frequency": 24408 + }, + { + "word": "minoritario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "minority;minoritarian", + "romanization": "minoritario", + "example_sentence_native": "Il partito minoritario ha espresso il suo dissenso.", + "example_sentence_english": "The minority party expressed its dissent.", + "pos": "adjective", + "word_frequency": 24414 + }, + { + "word": "navigabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "navigable", + "romanization": "navigabile", + "example_sentence_native": "Il fiume non è navigabile in questo tratto.", + "example_sentence_english": "The river is not navigable in this section.", + "pos": "adjective", + "word_frequency": 24420 + }, + { + "word": "osservabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "observable", + "romanization": "osservabile", + "example_sentence_native": "Il fenomeno è chiaramente osservabile a occhio nudo.", + "example_sentence_english": "The phenomenon is clearly observable with the naked eye.", + "pos": "adjective", + "word_frequency": 24426 + }, + { + "word": "packaging", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "packaging", + "romanization": "packaging", + "example_sentence_native": "Il packaging del prodotto è molto accattivante.", + "example_sentence_english": "The product's packaging is very appealing.", + "pos": "noun", + "word_frequency": 24427 + }, + { + "word": "paleolitico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Paleolithic", + "romanization": "paleolitico", + "example_sentence_native": "Durante il periodo paleolitico, gli esseri umani vivevano in caverne.", + "example_sentence_english": "During the Paleolithic period, humans lived in caves.", + "pos": "adjective", + "word_frequency": 24430 + }, + { + "word": "paria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pariah;outcast", + "romanization": "paria", + "example_sentence_native": "Si sentiva un paria nella società.", + "example_sentence_english": "He felt like a pariah in society.", + "pos": "noun", + "word_frequency": 24431 + }, + { + "word": "pattumiera", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "trash can;dustbin", + "romanization": "pattumiera", + "example_sentence_native": "Getta la carta nella pattumiera.", + "example_sentence_english": "Throw the paper in the trash can.", + "pos": "noun", + "word_frequency": 24432 + }, + { + "word": "pioppo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "poplar", + "romanization": "pioppo", + "example_sentence_native": "C'è un alto pioppo vicino al fiume.", + "example_sentence_english": "There is a tall poplar tree near the river.", + "pos": "noun", + "word_frequency": 24439 + }, + { + "word": "plusvalenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital gain", + "romanization": "plusvalenza", + "example_sentence_native": "La vendita dell'immobile ha generato una significativa plusvalenza.", + "example_sentence_english": "The sale of the property generated a significant capital gain.", + "pos": "noun", + "word_frequency": 24441 + }, + { + "word": "posacenere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ashtray", + "romanization": "posacenere", + "example_sentence_native": "C'è un posacenere sul tavolo del bar.", + "example_sentence_english": "There's an ashtray on the bar table.", + "pos": "noun", + "word_frequency": 24444 + }, + { + "word": "preannunciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pre-announced", + "romanization": "preannunciato", + "example_sentence_native": "La pioggia preannunciata è arrivata nel pomeriggio.", + "example_sentence_english": "The pre-announced rain arrived in the afternoon.", + "pos": "adjective", + "word_frequency": 24445 + }, + { + "word": "preistorico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prehistoric", + "romanization": "preistorico", + "example_sentence_native": "Hanno scoperto reperti di un insediamento preistorico.", + "example_sentence_english": "They discovered artifacts from a prehistoric settlement.", + "pos": "adjective", + "word_frequency": 24446 + }, + { + "word": "professionistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "professional (sports;activity)", + "romanization": "professionistico", + "example_sentence_native": "Ha iniziato la sua carriera professionistica nel calcio.", + "example_sentence_english": "He started his professional career in football.", + "pos": "adjective", + "word_frequency": 24448 + }, + { + "word": "propendere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to lean towards", + "romanization": "propendere", + "example_sentence_native": "Tendo a propendere per la soluzione più semplice.", + "example_sentence_english": "I tend to lean towards the simplest solution.", + "pos": "verb", + "word_frequency": 24449 + }, + { + "word": "proporzionato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "proportionate", + "romanization": "proporzionato", + "example_sentence_native": "La pena deve essere proporzionata al reato.", + "example_sentence_english": "The punishment must be proportionate to the crime.", + "pos": "adjective", + "word_frequency": 24450 + }, + { + "word": "prorogato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extended", + "romanization": "prorogato", + "example_sentence_native": "Il termine per la consegna è stato prorogato di una settimana.", + "example_sentence_english": "The deadline for delivery has been extended by one week.", + "pos": "adjective", + "word_frequency": 24451 + }, + { + "word": "proseguo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "continuation", + "romanization": "proseguo", + "example_sentence_native": "Auguro un buon proseguo di giornata.", + "example_sentence_english": "I wish you a good continuation of your day.", + "pos": "noun", + "word_frequency": 24452 + }, + { + "word": "pulsazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pulsation", + "romanization": "pulsazione", + "example_sentence_native": "Sentiva una forte pulsazione nella tempia.", + "example_sentence_english": "He felt a strong pulsation in his temple.", + "pos": "noun", + "word_frequency": 24454 + }, + { + "word": "razzia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "raid", + "romanization": "razzia", + "example_sentence_native": "La polizia ha fatto una razzia nel covo dei criminali.", + "example_sentence_english": "The police carried out a raid on the criminals' hideout.", + "pos": "noun", + "word_frequency": 24455 + }, + { + "word": "relatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "speaker (female)", + "romanization": "relatrice", + "example_sentence_native": "La relatrice ha presentato i risultati della ricerca.", + "example_sentence_english": "The speaker presented the research results.", + "pos": "noun", + "word_frequency": 24457 + }, + { + "word": "rena", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sand (poetic)", + "romanization": "rena", + "example_sentence_native": "Le dune di rena si estendevano a perdita d'occhio.", + "example_sentence_english": "The sand dunes stretched as far as the eye could see.", + "pos": "noun", + "word_frequency": 24458 + }, + { + "word": "reversibilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reversibility", + "romanization": "reversibilità", + "example_sentence_native": "La reversibilità del processo è fondamentale per la sua applicazione.", + "example_sentence_english": "The reversibility of the process is fundamental for its application.", + "pos": "noun", + "word_frequency": 24459 + }, + { + "word": "riavvicinamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rapprochement", + "romanization": "riavvicinamento", + "example_sentence_native": "C'è stato un riavvicinamento tra le due fazioni.", + "example_sentence_english": "There has been a rapprochement between the two factions.", + "pos": "noun", + "word_frequency": 24462 + }, + { + "word": "riavvio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "restart", + "romanization": "riavvio", + "example_sentence_native": "È necessario un riavvio del sistema per applicare gli aggiornamenti.", + "example_sentence_english": "A system restart is necessary to apply the updates.", + "pos": "noun", + "word_frequency": 24463 + }, + { + "word": "ricamato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "embroidered", + "romanization": "ricamato", + "example_sentence_native": "Ha indossato una camicia ricamata a mano.", + "example_sentence_english": "She wore a hand-embroidered shirt.", + "pos": "adjective", + "word_frequency": 24464 + }, + { + "word": "ridente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "picturesque", + "romanization": "ridente", + "example_sentence_native": "Il paese si trova in una ridente valle.", + "example_sentence_english": "The village is located in a picturesque valley.", + "pos": "adjective", + "word_frequency": 24465 + }, + { + "word": "riesaminare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to re-examine", + "romanization": "riesaminare", + "example_sentence_native": "Dobbiamo riesaminare attentamente tutti i documenti.", + "example_sentence_english": "We need to carefully re-examine all the documents.", + "pos": "verb", + "word_frequency": 24466 + }, + { + "word": "risolutivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decisive", + "romanization": "risolutivo", + "example_sentence_native": "La sua proposta è stata la soluzione risolutiva al problema.", + "example_sentence_english": "His proposal was the decisive solution to the problem.", + "pos": "adjective", + "word_frequency": 24468 + }, + { + "word": "ruvido", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rough", + "romanization": "ruvido", + "example_sentence_native": "La superficie del legno era molto ruvida.", + "example_sentence_english": "The surface of the wood was very rough.", + "pos": "adjective", + "word_frequency": 24471 + }, + { + "word": "salvadanaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "piggy bank", + "romanization": "salvadanaio", + "example_sentence_native": "Ha rotto il salvadanaio per comprare un giocattolo.", + "example_sentence_english": "He broke the piggy bank to buy a toy.", + "pos": "noun", + "word_frequency": 24473 + }, + { + "word": "samaritano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Samaritan", + "romanization": "samaritano", + "example_sentence_native": "Si è comportato come un buon samaritano.", + "example_sentence_english": "He behaved like a good Samaritan.", + "pos": "noun", + "word_frequency": 24475 + }, + { + "word": "sbucare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pop out", + "romanization": "sbucare", + "example_sentence_native": "Un coniglio è sbucato all'improvviso dal cespuglio.", + "example_sentence_english": "A rabbit suddenly popped out of the bush.", + "pos": "verb", + "word_frequency": 24478 + }, + { + "word": "sciatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skier", + "romanization": "sciatore", + "example_sentence_native": "Il sciatore ha vinto la medaglia d'oro.", + "example_sentence_english": "The skier won the gold medal.", + "pos": "noun", + "word_frequency": 24480 + }, + { + "word": "scimmietta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little monkey", + "romanization": "scimmietta", + "example_sentence_native": "La scimmietta giocava sull'albero.", + "example_sentence_english": "The little monkey was playing on the tree.", + "pos": "noun", + "word_frequency": 24481 + }, + { + "word": "sfoggiare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to flaunt", + "romanization": "sfoggiare", + "example_sentence_native": "Gli piace sfoggiare i suoi nuovi vestiti.", + "example_sentence_english": "He likes to flaunt his new clothes.", + "pos": "verb", + "word_frequency": 24483 + }, + { + "word": "sfottò", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "teasing", + "romanization": "sfottò", + "example_sentence_native": "Era solo uno sfottò amichevole.", + "example_sentence_english": "It was just friendly teasing.", + "pos": "noun", + "word_frequency": 24484 + }, + { + "word": "significante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "significant", + "romanization": "significante", + "example_sentence_native": "Ha avuto un impatto significante sulla sua vita.", + "example_sentence_english": "It had a significant impact on his life.", + "pos": "adjective", + "word_frequency": 24486 + }, + { + "word": "silos", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silo", + "romanization": "silos", + "example_sentence_native": "Il grano è immagazzinato nei silos.", + "example_sentence_english": "The grain is stored in the silos.", + "pos": "noun", + "word_frequency": 24487 + }, + { + "word": "sneakers", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "sneakers", + "romanization": "sneakers", + "example_sentence_native": "Ho comprato un nuovo paio di sneakers.", + "example_sentence_english": "I bought a new pair of sneakers.", + "pos": "noun", + "word_frequency": 24489 + }, + { + "word": "sontuoso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sumptuous", + "romanization": "sontuoso", + "example_sentence_native": "Hanno organizzato un banchetto sontuoso.", + "example_sentence_english": "They organized a sumptuous banquet.", + "pos": "adjective", + "word_frequency": 24490 + }, + { + "word": "sopraggiungere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to arrive unexpectedly", + "romanization": "sopraggiungere", + "example_sentence_native": "Un temporale improvviso è sopraggiunto.", + "example_sentence_english": "A sudden storm arrived unexpectedly.", + "pos": "verb", + "word_frequency": 24491 + }, + { + "word": "sormontato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "surmounted", + "romanization": "sormontato", + "example_sentence_native": "La torre era sormontata da una bandiera.", + "example_sentence_english": "The tower was surmounted by a flag.", + "pos": "adjective", + "word_frequency": 24492 + }, + { + "word": "sottovuoto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "vacuum-packed", + "romanization": "sottovuoto", + "example_sentence_native": "Ho comprato del caffè sottovuoto.", + "example_sentence_english": "I bought some vacuum-packed coffee.", + "pos": "adjective", + "word_frequency": 24494 + }, + { + "word": "specificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "specified", + "romanization": "specificato", + "example_sentence_native": "I requisiti sono specificati nel documento.", + "example_sentence_english": "The requirements are specified in the document.", + "pos": "adjective", + "word_frequency": 24498 + }, + { + "word": "spregiudicato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unscrupulous", + "romanization": "spregiudicato", + "example_sentence_native": "È un uomo d'affari spregiudicato.", + "example_sentence_english": "He is an unscrupulous businessman.", + "pos": "adjective", + "word_frequency": 24499 + }, + { + "word": "stampella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "crutch", + "romanization": "stampella", + "example_sentence_native": "Ha bisogno di una stampella per camminare.", + "example_sentence_english": "He needs a crutch to walk.", + "pos": "noun", + "word_frequency": 24500 + }, + { + "word": "stracciato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "torn", + "romanization": "stracciato", + "example_sentence_native": "I suoi jeans erano stracciati.", + "example_sentence_english": "His jeans were torn.", + "pos": "adjective", + "word_frequency": 24503 + }, + { + "word": "successone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "huge success", + "romanization": "successone", + "example_sentence_native": "Il concerto è stato un successone.", + "example_sentence_english": "The concert was a huge success.", + "pos": "noun", + "word_frequency": 24504 + }, + { + "word": "sussurro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "whisper", + "romanization": "sussurro", + "example_sentence_native": "Parlava a bassa voce, quasi un sussurro.", + "example_sentence_english": "He spoke softly, almost a whisper.", + "pos": "noun", + "word_frequency": 24506 + }, + { + "word": "svenimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fainting", + "romanization": "svenimento", + "example_sentence_native": "Ha avuto un improvviso svenimento.", + "example_sentence_english": "He had a sudden faint.", + "pos": "noun", + "word_frequency": 24507 + }, + { + "word": "taschino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small pocket", + "romanization": "taschino", + "example_sentence_native": "Ha messo le chiavi nel taschino.", + "example_sentence_english": "He put the keys in his small pocket.", + "pos": "noun", + "word_frequency": 24509 + }, + { + "word": "terzetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trio", + "romanization": "terzetto", + "example_sentence_native": "Il terzetto ha suonato una bella melodia.", + "example_sentence_english": "The trio played a beautiful melody.", + "pos": "noun", + "word_frequency": 24510 + }, + { + "word": "tornello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turnstile", + "romanization": "tornello", + "example_sentence_native": "Ha passato il tornello per entrare.", + "example_sentence_english": "He passed through the turnstile to enter.", + "pos": "noun", + "word_frequency": 24513 + }, + { + "word": "tortuoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "winding", + "romanization": "tortuoso", + "example_sentence_native": "La strada di montagna era molto tortuosa.", + "example_sentence_english": "The mountain road was very winding.", + "pos": "adjective", + "word_frequency": 24514 + }, + { + "word": "tramandato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "handed down", + "romanization": "tramandato", + "example_sentence_native": "Questa tradizione è stata tramandata di generazione in generazione.", + "example_sentence_english": "This tradition has been handed down from generation to generation.", + "pos": "adjective", + "word_frequency": 24515 + }, + { + "word": "tramutare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to transform", + "romanization": "tramutare", + "example_sentence_native": "La magia può tramutare le cose.", + "example_sentence_english": "Magic can transform things.", + "pos": "verb", + "word_frequency": 24516 + }, + { + "word": "transatlantico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transatlantic", + "romanization": "transatlantico", + "example_sentence_native": "Hanno fatto una crociera transatlantica.", + "example_sentence_english": "They took a transatlantic cruise.", + "pos": "adjective", + "word_frequency": 24517 + }, + { + "word": "trascrivere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to transcribe", + "romanization": "trascrivere", + "example_sentence_native": "Deve trascrivere l'intervista.", + "example_sentence_english": "He needs to transcribe the interview.", + "pos": "verb", + "word_frequency": 24518 + }, + { + "word": "trombone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trombone", + "romanization": "trombone", + "example_sentence_native": "Suona il trombone in una banda jazz.", + "example_sentence_english": "He plays the trombone in a jazz band.", + "pos": "noun", + "word_frequency": 24520 + }, + { + "word": "trovatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "troubadour", + "romanization": "trovatore", + "example_sentence_native": "Il trovatore cantava storie d'amore e di avventura.", + "example_sentence_english": "The troubadour sang stories of love and adventure.", + "pos": "noun", + "word_frequency": 24522 + }, + { + "word": "turbolenza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turbulence", + "romanization": "turbolenza", + "example_sentence_native": "L'aereo ha attraversato una zona di forte turbolenza.", + "example_sentence_english": "The plane went through an area of strong turbulence.", + "pos": "noun", + "word_frequency": 24524 + }, + { + "word": "ufficialità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "officialdom", + "romanization": "ufficialità", + "example_sentence_native": "La cerimonia ha perso un po' della sua ufficialità.", + "example_sentence_english": "The ceremony lost some of its official nature.", + "pos": "noun", + "word_frequency": 24525 + }, + { + "word": "ukulele", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ukulele", + "romanization": "ukulele", + "example_sentence_native": "Ha imparato a suonare l'ukulele in poche settimane.", + "example_sentence_english": "He learned to play the ukulele in a few weeks.", + "pos": "noun", + "word_frequency": 24526 + }, + { + "word": "vademecum", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "handbook", + "romanization": "vademecum", + "example_sentence_native": "Questo libro è un vademecum per i nuovi studenti.", + "example_sentence_english": "This book is a handbook for new students.", + "pos": "noun", + "word_frequency": 24529 + }, + { + "word": "varicella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chickenpox", + "romanization": "varicella", + "example_sentence_native": "I bambini spesso prendono la varicella.", + "example_sentence_english": "Children often get chickenpox.", + "pos": "noun", + "word_frequency": 24530 + }, + { + "word": "ventricolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ventricle", + "romanization": "ventricolo", + "example_sentence_native": "Il cuore umano ha due ventricoli.", + "example_sentence_english": "The human heart has two ventricles.", + "pos": "noun", + "word_frequency": 24531 + }, + { + "word": "vespro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vespers", + "romanization": "vespro", + "example_sentence_native": "I monaci si riuniscono per il vespro.", + "example_sentence_english": "The monks gather for vespers.", + "pos": "noun", + "word_frequency": 24532 + }, + { + "word": "vialetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "driveway", + "romanization": "vialetto", + "example_sentence_native": "Il vialetto conduce alla porta principale.", + "example_sentence_english": "The driveway leads to the main door.", + "pos": "noun", + "word_frequency": 24533 + }, + { + "word": "vivido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vivid", + "romanization": "vivido", + "example_sentence_native": "Ricordo ancora quel sogno vivido.", + "example_sentence_english": "I still remember that vivid dream.", + "pos": "adjective", + "word_frequency": 24534 + }, + { + "word": "volantinaggio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "leafleting", + "romanization": "volantinaggio", + "example_sentence_native": "Il volantinaggio è un modo efficace per pubblicizzare un evento.", + "example_sentence_english": "Leafleting is an effective way to advertise an event.", + "pos": "noun", + "word_frequency": 24535 + }, + { + "word": "abdicare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to abdicate", + "romanization": "abdicare", + "example_sentence_native": "Il re decise di abdicare al trono.", + "example_sentence_english": "The king decided to abdicate the throne.", + "pos": "verb", + "word_frequency": 24541 + }, + { + "word": "aberrazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aberration", + "romanization": "aberrazione", + "example_sentence_native": "Il suo comportamento è stata una vera aberrazione.", + "example_sentence_english": "His behavior was a true aberration.", + "pos": "noun", + "word_frequency": 24542 + }, + { + "word": "accompagnatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "escort", + "romanization": "accompagnatrice", + "example_sentence_native": "L'accompagnatrice ha guidato il gruppo attraverso il museo.", + "example_sentence_english": "The escort guided the group through the museum.", + "pos": "noun", + "word_frequency": 24544 + }, + { + "word": "accozzaglia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hodgepodge", + "romanization": "accozzaglia", + "example_sentence_native": "La sua collezione era un'accozzaglia di oggetti strani.", + "example_sentence_english": "His collection was a hodgepodge of strange objects.", + "pos": "noun", + "word_frequency": 24545 + }, + { + "word": "aeroportuale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "airport (adj.)", + "romanization": "aeroportuale", + "example_sentence_native": "Le tasse aeroportuali sono incluse nel prezzo del biglietto.", + "example_sentence_english": "Airport taxes are included in the ticket price.", + "pos": "adjective", + "word_frequency": 24547 + }, + { + "word": "aggregare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to aggregate", + "romanization": "aggregare", + "example_sentence_native": "L'azienda cerca di aggregare nuovi talenti.", + "example_sentence_english": "The company seeks to aggregate new talents.", + "pos": "verb", + "word_frequency": 24548 + }, + { + "word": "agronomo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agronomist", + "romanization": "agronomo", + "example_sentence_native": "L'agronomo ha consigliato nuove tecniche di coltivazione.", + "example_sentence_english": "The agronomist advised new cultivation techniques.", + "pos": "noun", + "word_frequency": 24549 + }, + { + "word": "annegato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drowned", + "romanization": "annegato", + "example_sentence_native": "Il corpo annegato è stato ritrovato sulla riva.", + "example_sentence_english": "The drowned body was found on the shore.", + "pos": "adjective", + "word_frequency": 24560 + }, + { + "word": "arrotondato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rounded", + "romanization": "arrotondato", + "example_sentence_native": "Ha un viso arrotondato e gentile.", + "example_sentence_english": "She has a rounded and kind face.", + "pos": "adjective", + "word_frequency": 24562 + }, + { + "word": "assalito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "assaulted;attacked", + "romanization": "assalito", + "example_sentence_native": "Si sentiva assalito dai dubbi.", + "example_sentence_english": "He felt assaulted by doubts.", + "pos": "adjective", + "word_frequency": 24563 + }, + { + "word": "attracco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mooring;docking", + "romanization": "attracco", + "example_sentence_native": "La nave ha completato l'attracco al porto.", + "example_sentence_english": "The ship completed its mooring at the port.", + "pos": "noun", + "word_frequency": 24566 + }, + { + "word": "balocco", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toy;plaything", + "romanization": "balocco", + "example_sentence_native": "Il bambino giocava con il suo balocco preferito.", + "example_sentence_english": "The child was playing with his favorite toy.", + "pos": "noun", + "word_frequency": 24569 + }, + { + "word": "barbaramente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbarously;brutally", + "romanization": "barbaramente", + "example_sentence_native": "È stato trattato barbaramente.", + "example_sentence_english": "He was treated barbarously.", + "pos": "adverb", + "word_frequency": 24570 + }, + { + "word": "barbato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bearded", + "romanization": "barbato", + "example_sentence_native": "L'uomo barbato sembrava saggio.", + "example_sentence_english": "The bearded man looked wise.", + "pos": "adjective", + "word_frequency": 24571 + }, + { + "word": "beatificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beatification", + "romanization": "beatificazione", + "example_sentence_native": "La beatificazione è un passo verso la santità.", + "example_sentence_english": "Beatification is a step towards sainthood.", + "pos": "noun", + "word_frequency": 24574 + }, + { + "word": "birmano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Burmese", + "romanization": "birmano", + "example_sentence_native": "Parla la lingua birmana.", + "example_sentence_english": "He speaks the Burmese language.", + "pos": "adjective", + "word_frequency": 24578 + }, + { + "word": "blizzard", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blizzard", + "romanization": "blizzard", + "example_sentence_native": "La regione è stata colpita da un forte blizzard.", + "example_sentence_english": "The region was hit by a strong blizzard.", + "pos": "noun", + "word_frequency": 24579 + }, + { + "word": "bollato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stamped;marked", + "romanization": "bollato", + "example_sentence_native": "La lettera era bollata con un francobollo raro.", + "example_sentence_english": "The letter was stamped with a rare stamp.", + "pos": "adjective", + "word_frequency": 24580 + }, + { + "word": "bundle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bundle;package", + "romanization": "bundle", + "example_sentence_native": "Hanno offerto un bundle di servizi a un prezzo speciale.", + "example_sentence_english": "They offered a bundle of services at a special price.", + "pos": "noun", + "word_frequency": 24584 + }, + { + "word": "caco", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "persimmon", + "romanization": "caco", + "example_sentence_native": "Mi piace mangiare il caco in autunno.", + "example_sentence_english": "I like to eat persimmon in autumn.", + "pos": "noun", + "word_frequency": 24585 + }, + { + "word": "calciare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to kick", + "romanization": "calciare", + "example_sentence_native": "Il bambino ha iniziato a calciare il pallone.", + "example_sentence_english": "The child started to kick the ball.", + "pos": "verb", + "word_frequency": 24586 + }, + { + "word": "calzoncino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "shorts", + "romanization": "calzoncino", + "example_sentence_native": "Indossava un calzoncino per andare in spiaggia.", + "example_sentence_english": "He was wearing shorts to go to the beach.", + "pos": "noun", + "word_frequency": 24589 + }, + { + "word": "candelina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small candle;birthday candle", + "romanization": "candelina", + "example_sentence_native": "Ha spento le candeline sulla torta di compleanno.", + "example_sentence_english": "She blew out the candles on the birthday cake.", + "pos": "noun", + "word_frequency": 24590 + }, + { + "word": "cannocchiale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "telescope;spyglass", + "romanization": "cannocchiale", + "example_sentence_native": "Ha usato il cannocchiale per osservare le stelle.", + "example_sentence_english": "He used the telescope to observe the stars.", + "pos": "noun", + "word_frequency": 24591 + }, + { + "word": "cannolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cannolo (Sicilian pastry)", + "romanization": "cannolo", + "example_sentence_native": "Ho mangiato un delizioso cannolo siciliano.", + "example_sentence_english": "I ate a delicious Sicilian cannolo.", + "pos": "noun", + "word_frequency": 24592 + }, + { + "word": "caraibico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Caribbean", + "romanization": "caraibico", + "example_sentence_native": "Sognava una vacanza nelle isole caraibiche.", + "example_sentence_english": "He dreamed of a vacation in the Caribbean islands.", + "pos": "adjective", + "word_frequency": 24593 + }, + { + "word": "carrozzone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "caravan;large wagon", + "romanization": "carrozzone", + "example_sentence_native": "Il circo è arrivato con i suoi carrozzoni colorati.", + "example_sentence_english": "The circus arrived with its colorful caravans.", + "pos": "noun", + "word_frequency": 24594 + }, + { + "word": "casolare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "farmhouse;country house", + "romanization": "casolare", + "example_sentence_native": "Hanno comprato un vecchio casolare in Toscana.", + "example_sentence_english": "They bought an old farmhouse in Tuscany.", + "pos": "noun", + "word_frequency": 24597 + }, + { + "word": "catch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catch;trick;hook", + "romanization": "catch", + "example_sentence_native": "C'è un catch in questa offerta.", + "example_sentence_english": "There's a catch in this offer.", + "pos": "noun", + "word_frequency": 24599 + }, + { + "word": "centrafricano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Central African", + "romanization": "centrafricano", + "example_sentence_native": "La Repubblica Centrafricana è un paese senza sbocco sul mare.", + "example_sentence_english": "The Central African Republic is a landlocked country.", + "pos": "adjective", + "word_frequency": 24600 + }, + { + "word": "chirurgicamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surgically", + "romanization": "chirurgicamente", + "example_sentence_native": "Il tumore è stato rimosso chirurgicamente.", + "example_sentence_english": "The tumor was surgically removed.", + "pos": "adverb", + "word_frequency": 24604 + }, + { + "word": "cifrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encrypted;coded", + "romanization": "cifrato", + "example_sentence_native": "Il messaggio era cifrato per motivi di sicurezza.", + "example_sentence_english": "The message was encrypted for security reasons.", + "pos": "adjective", + "word_frequency": 24606 + }, + { + "word": "colo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "colon (anatomy)", + "romanization": "colo", + "example_sentence_native": "Il colo è una parte dell'intestino crasso.", + "example_sentence_english": "The colon is a part of the large intestine.", + "pos": "noun", + "word_frequency": 24609 + }, + { + "word": "combattivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "combative;feisty", + "romanization": "combattivo", + "example_sentence_native": "Era un oratore molto combattivo durante il dibattito.", + "example_sentence_english": "He was a very combative speaker during the debate.", + "pos": "adjective", + "word_frequency": 24610 + }, + { + "word": "comprovare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to prove;to confirm;to substantiate", + "romanization": "comprovare", + "example_sentence_native": "Le prove hanno comprovato la sua innocenza.", + "example_sentence_english": "The evidence proved his innocence.", + "pos": "verb", + "word_frequency": 24612 + }, + { + "word": "comun", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "common", + "romanization": "comun", + "example_sentence_native": "Dobbiamo lavorare per il ben comun.", + "example_sentence_english": "We must work for the common good.", + "pos": "adjective", + "word_frequency": 24613 + }, + { + "word": "condicio", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "condition (often in 'condicio sine qua non')", + "romanization": "condicio", + "example_sentence_native": "La sua presenza era la condicio sine qua non per l'accordo.", + "example_sentence_english": "His presence was the indispensable condition for the agreement.", + "pos": "noun", + "word_frequency": 24614 + }, + { + "word": "confortare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to comfort;to console;to corroborate", + "romanization": "confortare", + "example_sentence_native": "Le sue parole mi hanno confortato molto.", + "example_sentence_english": "His words comforted me greatly.", + "pos": "verb", + "word_frequency": 24616 + }, + { + "word": "contrabbasso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "double bass;contrabass", + "romanization": "contrabbasso", + "example_sentence_native": "Suona il contrabbasso in un'orchestra jazz.", + "example_sentence_english": "He plays the double bass in a jazz orchestra.", + "pos": "noun", + "word_frequency": 24617 + }, + { + "word": "copto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Coptic", + "romanization": "copto", + "example_sentence_native": "La lingua copta è un'antica lingua egizia.", + "example_sentence_english": "The Coptic language is an ancient Egyptian language.", + "pos": "adjective", + "word_frequency": 24618 + }, + { + "word": "cospargere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to sprinkle;to scatter;to strew", + "romanization": "cospargere", + "example_sentence_native": "Ha cosparso lo zucchero a velo sulla torta.", + "example_sentence_english": "She sprinkled powdered sugar on the cake.", + "pos": "verb", + "word_frequency": 24619 + }, + { + "word": "cruento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bloody;cruel;violent", + "romanization": "cruento", + "example_sentence_native": "La battaglia fu cruenta e causò molte vittime.", + "example_sentence_english": "The battle was bloody and caused many casualties.", + "pos": "adjective", + "word_frequency": 24622 + }, + { + "word": "cultivar", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cultivar", + "romanization": "cultivar", + "example_sentence_native": "Questa cultivar di olivo è resistente alle malattie.", + "example_sentence_english": "This olive cultivar is disease-resistant.", + "pos": "noun", + "word_frequency": 24623 + }, + { + "word": "cyberbullismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cyberbullying", + "romanization": "cyberbullismo", + "example_sentence_native": "Il cyberbullismo è un problema crescente tra gli adolescenti.", + "example_sentence_english": "Cyberbullying is a growing problem among teenagers.", + "pos": "noun", + "word_frequency": 24625 + }, + { + "word": "deflusso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outflow;drainage;runoff", + "romanization": "deflusso", + "example_sentence_native": "Il deflusso delle acque piovane ha causato allagamenti.", + "example_sentence_english": "The runoff of rainwater caused flooding.", + "pos": "noun", + "word_frequency": 24631 + }, + { + "word": "dermatologo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dermatologist", + "romanization": "dermatologo", + "example_sentence_native": "Ho un appuntamento con il dermatologo la prossima settimana.", + "example_sentence_english": "I have an appointment with the dermatologist next week.", + "pos": "noun", + "word_frequency": 24641 + }, + { + "word": "digestivo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "digestive", + "romanization": "digestivo", + "example_sentence_native": "Dopo cena, ho preso un amaro digestivo.", + "example_sentence_english": "After dinner, I had a digestive liqueur.", + "pos": "adjective", + "word_frequency": 24643 + }, + { + "word": "direttissimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very direct;express (train)", + "romanization": "direttissimo", + "example_sentence_native": "Abbiamo preso il treno direttissimo per arrivare prima.", + "example_sentence_english": "We took the express train to arrive sooner.", + "pos": "adjective", + "word_frequency": 24645 + }, + { + "word": "dirimere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to resolve;to settle (a dispute)", + "romanization": "dirimere", + "example_sentence_native": "Il giudice ha cercato di dirimere la controversia.", + "example_sentence_english": "The judge tried to resolve the dispute.", + "pos": "verb", + "word_frequency": 24646 + }, + { + "word": "dissapore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disagreement;discord", + "romanization": "dissapore", + "example_sentence_native": "C'è stato un piccolo dissapore tra i due colleghi.", + "example_sentence_english": "There was a small disagreement between the two colleagues.", + "pos": "noun", + "word_frequency": 24647 + }, + { + "word": "duplicazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "duplication", + "romanization": "duplicazione", + "example_sentence_native": "La duplicazione dei dati è una pratica comune per la sicurezza.", + "example_sentence_english": "Data duplication is a common practice for security.", + "pos": "noun", + "word_frequency": 24650 + }, + { + "word": "eccelso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excellent;sublime;lofty", + "romanization": "eccelso", + "example_sentence_native": "Ha dimostrato un talento eccelso nella musica.", + "example_sentence_english": "He showed an excellent talent in music.", + "pos": "adjective", + "word_frequency": 24651 + }, + { + "word": "elettivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "elective", + "romanization": "elettivo", + "example_sentence_native": "Ha scelto un corso elettivo per approfondire i suoi interessi.", + "example_sentence_english": "He chose an elective course to deepen his interests.", + "pos": "adjective", + "word_frequency": 24653 + }, + { + "word": "emarginato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "marginalized;outcast", + "romanization": "emarginato", + "example_sentence_native": "La società non dovrebbe lasciare nessuno emarginato.", + "example_sentence_english": "Society should not leave anyone marginalized.", + "pos": "adjective", + "word_frequency": 24655 + }, + { + "word": "epitaffio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epitaph", + "romanization": "epitaffio", + "example_sentence_native": "Sulla lapide era inciso un breve epitaffio.", + "example_sentence_english": "A short epitaph was carved on the tombstone.", + "pos": "noun", + "word_frequency": 24656 + }, + { + "word": "equiparare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to equate;to compare", + "romanization": "equiparare", + "example_sentence_native": "Non si possono equiparare le due situazioni.", + "example_sentence_english": "The two situations cannot be equated.", + "pos": "verb", + "word_frequency": 24658 + }, + { + "word": "esasperato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "exasperated;frustrated", + "romanization": "esasperato", + "example_sentence_native": "Era esasperato dal rumore continuo.", + "example_sentence_english": "He was exasperated by the continuous noise.", + "pos": "adjective", + "word_frequency": 24659 + }, + { + "word": "esibizionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhibitionism", + "romanization": "esibizionismo", + "example_sentence_native": "Il suo esibizionismo era evidente in ogni sua azione.", + "example_sentence_english": "His exhibitionism was evident in his every action.", + "pos": "noun", + "word_frequency": 24660 + }, + { + "word": "fantascientifico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "science fiction (adj.)", + "romanization": "fantascientifico", + "example_sentence_native": "Mi piacciono molto i film fantascientifici.", + "example_sentence_english": "I really like science fiction movies.", + "pos": "adjective", + "word_frequency": 24663 + }, + { + "word": "fiammifero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "match (for lighting)", + "romanization": "fiammifero", + "example_sentence_native": "Non ho un accendino, hai un fiammifero?", + "example_sentence_english": "I don't have a lighter, do you have a match?", + "pos": "noun", + "word_frequency": 24666 + }, + { + "word": "finestrella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small window;peephole", + "romanization": "finestrella", + "example_sentence_native": "C'è una piccola finestrella sul tetto.", + "example_sentence_english": "There's a small window on the roof.", + "pos": "noun", + "word_frequency": 24669 + }, + { + "word": "frastuono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "din;racket;clamor", + "romanization": "frastuono", + "example_sentence_native": "Il frastuono della città mi impediva di dormire.", + "example_sentence_english": "The din of the city prevented me from sleeping.", + "pos": "noun", + "word_frequency": 24672 + }, + { + "word": "fruitore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "user;beneficiary", + "romanization": "fruitore", + "example_sentence_native": "Il servizio è pensato per i fruitori più esigenti.", + "example_sentence_english": "The service is designed for the most demanding users.", + "pos": "noun", + "word_frequency": 24674 + }, + { + "word": "frutteto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "orchard", + "romanization": "frutteto", + "example_sentence_native": "Abbiamo raccolto le mele nel frutteto.", + "example_sentence_english": "We picked apples in the orchard.", + "pos": "noun", + "word_frequency": 24675 + }, + { + "word": "fruttivendolo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "greengrocer;fruit and vegetable seller", + "romanization": "fruttivendolo", + "example_sentence_native": "Ho comprato le fragole dal fruttivendolo.", + "example_sentence_english": "I bought the strawberries from the greengrocer.", + "pos": "noun", + "word_frequency": 24676 + }, + { + "word": "fulminante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lightning-fast;sudden;striking", + "romanization": "fulminante", + "example_sentence_native": "Ha avuto un'idea fulminante per risolvere il problema.", + "example_sentence_english": "He had a lightning-fast idea to solve the problem.", + "pos": "adjective", + "word_frequency": 24677 + }, + { + "word": "fuoriuscire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to leak;to escape;to emerge", + "romanization": "fuoriuscire", + "example_sentence_native": "L'acqua ha iniziato a fuoriuscire dal tubo rotto.", + "example_sentence_english": "Water started to leak from the broken pipe.", + "pos": "verb", + "word_frequency": 24679 + }, + { + "word": "gai", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joyful", + "romanization": "gai", + "example_sentence_native": "Erano tutti gai alla festa.", + "example_sentence_english": "They were all joyful at the party.", + "pos": "adjective", + "word_frequency": 24681 + }, + { + "word": "gallico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Gallic", + "romanization": "gallico", + "example_sentence_native": "Le tribù galliche erano potenti.", + "example_sentence_english": "The Gallic tribes were powerful.", + "pos": "adjective", + "word_frequency": 24683 + }, + { + "word": "garbare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to please", + "romanization": "garbare", + "example_sentence_native": "Mi garba molto questa idea.", + "example_sentence_english": "This idea pleases me very much.", + "pos": "verb", + "word_frequency": 24684 + }, + { + "word": "goloso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "greedy", + "romanization": "goloso", + "example_sentence_native": "Sono molto goloso di cioccolato.", + "example_sentence_english": "I am very fond of chocolate.", + "pos": "adjective", + "word_frequency": 24688 + }, + { + "word": "haiku", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "haiku", + "romanization": "haiku", + "example_sentence_native": "Ho scritto un haiku sulla natura.", + "example_sentence_english": "I wrote a haiku about nature.", + "pos": "noun", + "word_frequency": 24690 + }, + { + "word": "impersonale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impersonal", + "romanization": "impersonale", + "example_sentence_native": "Il tono della lettera era impersonale.", + "example_sentence_english": "The tone of the letter was impersonal.", + "pos": "adjective", + "word_frequency": 24694 + }, + { + "word": "imprecare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to curse", + "romanization": "imprecare", + "example_sentence_native": "Ha iniziato a imprecare contro il traffico.", + "example_sentence_english": "He started to curse at the traffic.", + "pos": "verb", + "word_frequency": 24695 + }, + { + "word": "incasinato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "messy", + "romanization": "incasinato", + "example_sentence_native": "La sua stanza è sempre incasinata.", + "example_sentence_english": "His room is always messy.", + "pos": "adjective", + "word_frequency": 24696 + }, + { + "word": "inconcludente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inconclusive", + "romanization": "inconcludente", + "example_sentence_native": "La discussione è stata inconcludente.", + "example_sentence_english": "The discussion was inconclusive.", + "pos": "adjective", + "word_frequency": 24697 + }, + { + "word": "inginocchiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "kneeling", + "romanization": "inginocchiato", + "example_sentence_native": "Lo trovò inginocchiato in preghiera.", + "example_sentence_english": "He found him kneeling in prayer.", + "pos": "adjective", + "word_frequency": 24698 + }, + { + "word": "inosservanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "non-observance", + "romanization": "inosservanza", + "example_sentence_native": "L'inosservanza delle regole comporta sanzioni.", + "example_sentence_english": "Non-observance of the rules entails penalties.", + "pos": "noun", + "word_frequency": 24699 + }, + { + "word": "insultato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "insulted", + "romanization": "insultato", + "example_sentence_native": "Si sentiva insultato dalle sue parole.", + "example_sentence_english": "He felt insulted by her words.", + "pos": "adjective", + "word_frequency": 24700 + }, + { + "word": "intavolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to open (a discussion)", + "romanization": "intavolare", + "example_sentence_native": "Dobbiamo intavolare una discussione seria.", + "example_sentence_english": "We need to open a serious discussion.", + "pos": "verb", + "word_frequency": 24701 + }, + { + "word": "interior", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "interior", + "romanization": "interior", + "example_sentence_native": "Ha studiato design d'interior.", + "example_sentence_english": "She studied interior design.", + "pos": "noun", + "word_frequency": 24702 + }, + { + "word": "intermittenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intermittence", + "romanization": "intermittenza", + "example_sentence_native": "La luce lampeggiava a intermittenza.", + "example_sentence_english": "The light was flashing intermittently.", + "pos": "noun", + "word_frequency": 24703 + }, + { + "word": "involuzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "involution", + "romanization": "involuzione", + "example_sentence_native": "Il paese sta vivendo un periodo di involuzione economica.", + "example_sentence_english": "The country is experiencing a period of economic involution.", + "pos": "noun", + "word_frequency": 24704 + }, + { + "word": "iperbole", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hyperbole", + "romanization": "iperbole", + "example_sentence_native": "La sua descrizione era piena di iperboli.", + "example_sentence_english": "His description was full of hyperboles.", + "pos": "noun", + "word_frequency": 24705 + }, + { + "word": "irremovibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unwavering", + "romanization": "irremovibile", + "example_sentence_native": "Era irremovibile nella sua decisione.", + "example_sentence_english": "He was unwavering in his decision.", + "pos": "adjective", + "word_frequency": 24706 + }, + { + "word": "kazako", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Kazakh", + "romanization": "kazako", + "example_sentence_native": "Ha imparato la lingua kazaka.", + "example_sentence_english": "He learned the Kazakh language.", + "pos": "adjective", + "word_frequency": 24711 + }, + { + "word": "kili", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kilos", + "romanization": "kili", + "example_sentence_native": "Ho comprato due kili di mele.", + "example_sentence_english": "I bought two kilos of apples.", + "pos": "noun", + "word_frequency": 24716 + }, + { + "word": "kimono", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "kimono", + "romanization": "kimono", + "example_sentence_native": "Indossava un bellissimo kimono di seta.", + "example_sentence_english": "She was wearing a beautiful silk kimono.", + "pos": "noun", + "word_frequency": 24717 + }, + { + "word": "lacerato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "torn;lacerated", + "romanization": "lacerato", + "example_sentence_native": "Il suo vestito era lacerato dopo la caduta.", + "example_sentence_english": "Her dress was torn after the fall.", + "pos": "adjective", + "word_frequency": 24721 + }, + { + "word": "limes", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "limes", + "romanization": "limes", + "example_sentence_native": "Mi piacciono i limes nel mio drink.", + "example_sentence_english": "I like limes in my drink.", + "pos": "noun", + "word_frequency": 24724 + }, + { + "word": "mappare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to map", + "romanization": "mappare", + "example_sentence_native": "Dobbiamo mappare il territorio.", + "example_sentence_english": "We need to map the territory.", + "pos": "verb", + "word_frequency": 24731 + }, + { + "word": "medicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to medicate;to treat (medically)", + "romanization": "medicare", + "example_sentence_native": "Il dottore ha medicato la ferita.", + "example_sentence_english": "The doctor medicated the wound.", + "pos": "verb", + "word_frequency": 24734 + }, + { + "word": "monossido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monoxide", + "romanization": "monossido", + "example_sentence_native": "Il monossido di carbonio è un gas pericoloso.", + "example_sentence_english": "Carbon monoxide is a dangerous gas.", + "pos": "noun", + "word_frequency": 24741 + }, + { + "word": "montepremi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prize pool", + "romanization": "montepremi", + "example_sentence_native": "Il montepremi del torneo era molto alto.", + "example_sentence_english": "The tournament's prize pool was very high.", + "pos": "noun", + "word_frequency": 24742 + }, + { + "word": "moria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "die-off;mass death", + "romanization": "moria", + "example_sentence_native": "C'è stata una moria di pesci nel lago.", + "example_sentence_english": "There was a die-off of fish in the lake.", + "pos": "noun", + "word_frequency": 24746 + }, + { + "word": "mortalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mortally;fatally", + "romanization": "mortalmente", + "example_sentence_native": "È stato ferito mortalmente.", + "example_sentence_english": "He was mortally wounded.", + "pos": "adverb", + "word_frequency": 24747 + }, + { + "word": "movimentazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "handling;movement", + "romanization": "movimentazione", + "example_sentence_native": "La movimentazione delle merci richiede attenzione.", + "example_sentence_english": "The handling of goods requires attention.", + "pos": "noun", + "word_frequency": 24748 + }, + { + "word": "nardo", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "spikenard", + "romanization": "nardo", + "example_sentence_native": "L'olio di nardo ha un profumo intenso.", + "example_sentence_english": "Spikenard oil has an intense fragrance.", + "pos": "noun", + "word_frequency": 24749 + }, + { + "word": "nitido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clear;sharp;crisp", + "romanization": "nitido", + "example_sentence_native": "L'immagine era nitida e ben definita.", + "example_sentence_english": "The image was clear and well-defined.", + "pos": "adjective", + "word_frequency": 24754 + }, + { + "word": "numerato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "numbered", + "romanization": "numerato", + "example_sentence_native": "Ogni biglietto è numerato.", + "example_sentence_english": "Each ticket is numbered.", + "pos": "adjective", + "word_frequency": 24755 + }, + { + "word": "oncologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oncology", + "romanization": "oncologia", + "example_sentence_native": "Si è specializzato in oncologia.", + "example_sentence_english": "He specialized in oncology.", + "pos": "noun", + "word_frequency": 24758 + }, + { + "word": "ortopedico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orthopedic", + "romanization": "ortopedico", + "example_sentence_native": "Ha un problema ortopedico al ginocchio.", + "example_sentence_english": "He has an orthopedic problem in his knee.", + "pos": "adjective", + "word_frequency": 24760 + }, + { + "word": "ossequio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deference;respect", + "romanization": "ossequio", + "example_sentence_native": "Ha mostrato grande ossequio verso il professore.", + "example_sentence_english": "He showed great deference towards the professor.", + "pos": "noun", + "word_frequency": 24761 + }, + { + "word": "ottemperanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compliance;observance", + "romanization": "ottemperanza", + "example_sentence_native": "L'azienda deve agire in ottemperanza alle nuove normative.", + "example_sentence_english": "The company must act in compliance with the new regulations.", + "pos": "noun", + "word_frequency": 24762 + }, + { + "word": "ottenibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obtainable;achievable", + "romanization": "ottenibile", + "example_sentence_native": "Il risultato desiderato è facilmente ottenibile con un po' di sforzo.", + "example_sentence_english": "The desired result is easily obtainable with a little effort.", + "pos": "adjective", + "word_frequency": 24763 + }, + { + "word": "pappone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pimp;exploiter", + "romanization": "pappone", + "example_sentence_native": "Quel pappone è stato arrestato per sfruttamento.", + "example_sentence_english": "That pimp was arrested for exploitation.", + "pos": "noun", + "word_frequency": 24766 + }, + { + "word": "pasticcere", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pastry chef;confectioner", + "romanization": "pasticcere", + "example_sentence_native": "Il pasticcere ha preparato una torta deliziosa.", + "example_sentence_english": "The pastry chef prepared a delicious cake.", + "pos": "noun", + "word_frequency": 24767 + }, + { + "word": "piva", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bagpipes", + "romanization": "piva", + "example_sentence_native": "Il suono della piva è molto caratteristico.", + "example_sentence_english": "The sound of the bagpipes is very characteristic.", + "pos": "noun", + "word_frequency": 24774 + }, + { + "word": "pletora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "plethora;excess", + "romanization": "pletora", + "example_sentence_native": "C'è una pletora di informazioni disponibili online.", + "example_sentence_english": "There is a plethora of information available online.", + "pos": "noun", + "word_frequency": 24775 + }, + { + "word": "poderoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "powerful;mighty", + "romanization": "poderoso", + "example_sentence_native": "Ha sferrato un colpo poderoso.", + "example_sentence_english": "He delivered a powerful blow.", + "pos": "adjective", + "word_frequency": 24776 + }, + { + "word": "ratificare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to ratify;to approve", + "romanization": "ratificare", + "example_sentence_native": "Il parlamento deve ratificare il trattato.", + "example_sentence_english": "The parliament must ratify the treaty.", + "pos": "verb", + "word_frequency": 24778 + }, + { + "word": "rescissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rescission;cancellation", + "romanization": "rescissione", + "example_sentence_native": "Hanno chiesto la rescissione del contratto.", + "example_sentence_english": "They requested the rescission of the contract.", + "pos": "noun", + "word_frequency": 24781 + }, + { + "word": "retrovia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rear;back lines", + "romanization": "retrovia", + "example_sentence_native": "Le truppe si sono ritirate nelle retrovie.", + "example_sentence_english": "The troops retreated to the rear.", + "pos": "noun", + "word_frequency": 24782 + }, + { + "word": "ricettazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "receiving stolen goods", + "romanization": "ricettazione", + "example_sentence_native": "È stato accusato di ricettazione.", + "example_sentence_english": "He was accused of receiving stolen goods.", + "pos": "noun", + "word_frequency": 24783 + }, + { + "word": "rifinitura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "finish;finishing touch", + "romanization": "rifinitura", + "example_sentence_native": "La rifinitura del mobile è perfetta.", + "example_sentence_english": "The finish of the furniture is perfect.", + "pos": "noun", + "word_frequency": 24785 + }, + { + "word": "rimpasto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reshuffle;reorganization", + "romanization": "rimpasto", + "example_sentence_native": "Si prevede un rimpasto di governo.", + "example_sentence_english": "A government reshuffle is expected.", + "pos": "noun", + "word_frequency": 24786 + }, + { + "word": "ripicca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spite;retaliation", + "romanization": "ripicca", + "example_sentence_native": "Lo ha fatto per ripicca.", + "example_sentence_english": "He did it out of spite.", + "pos": "noun", + "word_frequency": 24787 + }, + { + "word": "risa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "laughter", + "romanization": "risa", + "example_sentence_native": "Le sue risa riempivano la stanza.", + "example_sentence_english": "Her laughter filled the room.", + "pos": "noun", + "word_frequency": 24788 + }, + { + "word": "rosanero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pink-black (colors of Palermo football club)", + "romanization": "rosanero", + "example_sentence_native": "La squadra rosanero ha vinto la partita.", + "example_sentence_english": "The pink-black team won the match.", + "pos": "adjective", + "word_frequency": 24792 + }, + { + "word": "sabbioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sandy", + "romanization": "sabbioso", + "example_sentence_native": "La spiaggia è molto sabbiosa.", + "example_sentence_english": "The beach is very sandy.", + "pos": "adjective", + "word_frequency": 24798 + }, + { + "word": "sacerdotessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "priestess", + "romanization": "sacerdotessa", + "example_sentence_native": "La sacerdotessa officiò il rito antico.", + "example_sentence_english": "The priestess officiated the ancient rite.", + "pos": "noun", + "word_frequency": 24799 + }, + { + "word": "santone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "guru", + "romanization": "santone", + "example_sentence_native": "Il santone viveva in una grotta isolata.", + "example_sentence_english": "The guru lived in an isolated cave.", + "pos": "noun", + "word_frequency": 24802 + }, + { + "word": "sassolino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pebble", + "romanization": "sassolino", + "example_sentence_native": "Ho trovato un bel sassolino sulla spiaggia.", + "example_sentence_english": "I found a nice pebble on the beach.", + "pos": "noun", + "word_frequency": 24804 + }, + { + "word": "sbilanciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbalanced", + "romanization": "sbilanciato", + "example_sentence_native": "La bilancia era sbilanciata e non dava il peso corretto.", + "example_sentence_english": "The scale was unbalanced and didn't give the correct weight.", + "pos": "adjective", + "word_frequency": 24805 + }, + { + "word": "scarseggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be scarce", + "romanization": "scarseggiare", + "example_sentence_native": "L'acqua inizia a scarseggiare in alcune regioni.", + "example_sentence_english": "Water is starting to be scarce in some regions.", + "pos": "verb", + "word_frequency": 24807 + }, + { + "word": "schedina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "betting slip", + "romanization": "schedina", + "example_sentence_native": "Ha compilato la schedina del lotto sperando di vincere.", + "example_sentence_english": "He filled out the lottery betting slip hoping to win.", + "pos": "noun", + "word_frequency": 24808 + }, + { + "word": "scontroso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grumpy", + "romanization": "scontroso", + "example_sentence_native": "Era sempre scontroso al mattino prima del caffè.", + "example_sentence_english": "He was always grumpy in the morning before coffee.", + "pos": "adjective", + "word_frequency": 24810 + }, + { + "word": "sconvolgimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "upheaval", + "romanization": "sconvolgimento", + "example_sentence_native": "La notizia ha causato un grande sconvolgimento nella comunità.", + "example_sentence_english": "The news caused a great upheaval in the community.", + "pos": "noun", + "word_frequency": 24811 + }, + { + "word": "scrivente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "writing", + "romanization": "scrivente", + "example_sentence_native": "La parte scrivente deve firmare il documento.", + "example_sentence_english": "The writing party must sign the document.", + "pos": "adjective", + "word_frequency": 24812 + }, + { + "word": "senziente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sentient", + "romanization": "senziente", + "example_sentence_native": "Si discute se gli animali siano esseri senzienti.", + "example_sentence_english": "It is debated whether animals are sentient beings.", + "pos": "adjective", + "word_frequency": 24813 + }, + { + "word": "settantadue", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "seventy-two", + "romanization": "settantadue", + "example_sentence_native": "Ha compiuto settantadue anni la settimana scorsa.", + "example_sentence_english": "He turned seventy-two last week.", + "pos": "adjective", + "word_frequency": 24814 + }, + { + "word": "sfarzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pomp", + "romanization": "sfarzo", + "example_sentence_native": "Il matrimonio fu celebrato con grande sfarzo.", + "example_sentence_english": "The wedding was celebrated with great pomp.", + "pos": "noun", + "word_frequency": 24815 + }, + { + "word": "sfornare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bake (out of the oven)", + "romanization": "sfornare", + "example_sentence_native": "La nonna sta per sfornare una torta deliziosa.", + "example_sentence_english": "Grandma is about to bake a delicious cake.", + "pos": "verb", + "word_frequency": 24816 + }, + { + "word": "silenziatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "silencer", + "romanization": "silenziatore", + "example_sentence_native": "Ha montato un silenziatore sulla sua auto per ridurre il rumore.", + "example_sentence_english": "He installed a silencer on his car to reduce the noise.", + "pos": "noun", + "word_frequency": 24817 + }, + { + "word": "sirenetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little mermaid", + "romanization": "sirenetta", + "example_sentence_native": "Mia figlia adora la storia della Sirenetta.", + "example_sentence_english": "My daughter loves the story of the Little Mermaid.", + "pos": "noun", + "word_frequency": 24819 + }, + { + "word": "solaio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attic", + "romanization": "solaio", + "example_sentence_native": "Abbiamo trovato vecchie foto nel solaio.", + "example_sentence_english": "We found old photos in the attic.", + "pos": "noun", + "word_frequency": 24822 + }, + { + "word": "solferino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "magenta", + "romanization": "solferino", + "example_sentence_native": "Ha dipinto la parete di un colore solferino intenso.", + "example_sentence_english": "She painted the wall an intense magenta color.", + "pos": "noun", + "word_frequency": 24823 + }, + { + "word": "sorvolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to fly over", + "romanization": "sorvolare", + "example_sentence_native": "L'aereo ha sorvolato la città prima di atterrare.", + "example_sentence_english": "The plane flew over the city before landing.", + "pos": "verb", + "word_frequency": 24824 + }, + { + "word": "specificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "specification", + "romanization": "specificazione", + "example_sentence_native": "Il contratto richiede una specificazione dettagliata dei materiali.", + "example_sentence_english": "The contract requires a detailed specification of the materials.", + "pos": "noun", + "word_frequency": 24826 + }, + { + "word": "spiccio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quick", + "romanization": "spiccio", + "example_sentence_native": "Ha dato una risposta spiccia e se ne è andato.", + "example_sentence_english": "He gave a quick answer and left.", + "pos": "adjective", + "word_frequency": 24827 + }, + { + "word": "stanzino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small room", + "romanization": "stanzino", + "example_sentence_native": "Abbiamo riposto le scope nello stanzino.", + "example_sentence_english": "We put the brooms in the small room.", + "pos": "noun", + "word_frequency": 24831 + }, + { + "word": "stipulazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stipulation", + "romanization": "stipulazione", + "example_sentence_native": "La stipulazione del contratto richiederà tempo.", + "example_sentence_english": "The stipulation of the contract will take time.", + "pos": "noun", + "word_frequency": 24834 + }, + { + "word": "strafare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to overdo", + "romanization": "strafare", + "example_sentence_native": "Non devi strafare, riposa un po'.", + "example_sentence_english": "You don't have to overdo it, rest a bit.", + "pos": "verb", + "word_frequency": 24835 + }, + { + "word": "strangolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strangle", + "romanization": "strangolare", + "example_sentence_native": "Ha cercato di strangolare il suo aggressore per difendersi.", + "example_sentence_english": "He tried to strangle his attacker to defend himself.", + "pos": "verb", + "word_frequency": 24836 + }, + { + "word": "stura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uncorking", + "romanization": "stura", + "example_sentence_native": "La stura della bottiglia ha fatto un forte rumore.", + "example_sentence_english": "The uncorking of the bottle made a loud noise.", + "pos": "noun", + "word_frequency": 24837 + }, + { + "word": "subcontinente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subcontinent", + "romanization": "subcontinente", + "example_sentence_native": "L'India è spesso definita un subcontinente.", + "example_sentence_english": "India is often referred to as a subcontinent.", + "pos": "noun", + "word_frequency": 24838 + }, + { + "word": "succube", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "submissive", + "romanization": "succube", + "example_sentence_native": "Era succube delle sue paure.", + "example_sentence_english": "He was submissive to his fears.", + "pos": "adjective", + "word_frequency": 24839 + }, + { + "word": "tailandese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Thai", + "romanization": "tailandese", + "example_sentence_native": "La cucina tailandese è molto apprezzata.", + "example_sentence_english": "Thai cuisine is highly appreciated.", + "pos": "adjective", + "word_frequency": 24843 + }, + { + "word": "telecronaca", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sports commentary (on TV)", + "romanization": "telecronaca", + "example_sentence_native": "Ha ascoltato la telecronaca della partita alla radio.", + "example_sentence_english": "He listened to the sports commentary of the match on the radio.", + "pos": "noun", + "word_frequency": 24845 + }, + { + "word": "tempra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "temper;hardening", + "romanization": "tempra", + "example_sentence_native": "La sua tempra morale è ammirevole.", + "example_sentence_english": "His moral temper is admirable.", + "pos": "noun", + "word_frequency": 24846 + }, + { + "word": "tettuccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sunroof;small roof", + "romanization": "tettuccio", + "example_sentence_native": "L'auto ha un tettuccio apribile.", + "example_sentence_english": "The car has a sunroof.", + "pos": "noun", + "word_frequency": 24847 + }, + { + "word": "tipografo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typographer;printer", + "romanization": "tipografo", + "example_sentence_native": "Il tipografo ha stampato il libro.", + "example_sentence_english": "The printer printed the book.", + "pos": "noun", + "word_frequency": 24849 + }, + { + "word": "titubante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hesitant;wavering", + "romanization": "titubante", + "example_sentence_native": "Era titubante nel prendere una decisione.", + "example_sentence_english": "He was hesitant to make a decision.", + "pos": "adjective", + "word_frequency": 24850 + }, + { + "word": "tornarsene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to go back (home;away from here)", + "romanization": "tornarsene", + "example_sentence_native": "Dopo la festa, se ne sono tornati a casa.", + "example_sentence_english": "After the party, they went back home.", + "pos": "verb", + "word_frequency": 24851 + }, + { + "word": "traviato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "misguided;depraved", + "romanization": "traviato", + "example_sentence_native": "Si sentiva un'anima traviata.", + "example_sentence_english": "He felt like a misguided soul.", + "pos": "adjective", + "word_frequency": 24853 + }, + { + "word": "urbe", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "city (specifically Rome)", + "romanization": "urbe", + "example_sentence_native": "L'Urbe Eterna è un soprannome di Roma.", + "example_sentence_english": "The Eternal City is a nickname for Rome.", + "pos": "noun", + "word_frequency": 24857 + }, + { + "word": "utilitaria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compact car;economy car", + "romanization": "utilitaria", + "example_sentence_native": "Ha comprato una piccola utilitaria per la città.", + "example_sentence_english": "He bought a small compact car for the city.", + "pos": "noun", + "word_frequency": 24858 + }, + { + "word": "venereo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "venereal", + "romanization": "venereo", + "example_sentence_native": "Ha contratto una malattia venerea.", + "example_sentence_english": "He contracted a venereal disease.", + "pos": "adjective", + "word_frequency": 24862 + }, + { + "word": "viscosità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "viscosity", + "romanization": "viscosità", + "example_sentence_native": "La viscosità dell'olio è importante per il motore.", + "example_sentence_english": "The viscosity of the oil is important for the engine.", + "pos": "noun", + "word_frequency": 24866 + }, + { + "word": "abbindolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to trick;to deceive", + "romanization": "abbindolare", + "example_sentence_native": "Ha cercato di abbindolarmi con una storia falsa.", + "example_sentence_english": "He tried to trick me with a false story.", + "pos": "verb", + "word_frequency": 24873 + }, + { + "word": "acetato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acetate", + "romanization": "acetato", + "example_sentence_native": "Il vinile è un tipo di acetato.", + "example_sentence_english": "Vinyl is a type of acetate.", + "pos": "noun", + "word_frequency": 24874 + }, + { + "word": "adunanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meeting;assembly", + "romanization": "adunanza", + "example_sentence_native": "L'adunanza si terrà domani mattina.", + "example_sentence_english": "The meeting will be held tomorrow morning.", + "pos": "noun", + "word_frequency": 24876 + }, + { + "word": "affluente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tributary", + "romanization": "affluente", + "example_sentence_native": "Il Po ha molti affluenti.", + "example_sentence_english": "The Po has many tributaries.", + "pos": "noun", + "word_frequency": 24877 + }, + { + "word": "aggeggio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gadget;contraption", + "romanization": "aggeggio", + "example_sentence_native": "Che cos'è questo strano aggeggio?", + "example_sentence_english": "What is this strange contraption?", + "pos": "noun", + "word_frequency": 24879 + }, + { + "word": "agglomerato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agglomeration;cluster", + "romanization": "agglomerato", + "example_sentence_native": "L'agglomerato urbano si espande rapidamente.", + "example_sentence_english": "The urban agglomeration is expanding rapidly.", + "pos": "noun", + "word_frequency": 24880 + }, + { + "word": "allagare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to flood", + "romanization": "allagare", + "example_sentence_native": "La pioggia forte ha allagato le strade.", + "example_sentence_english": "The heavy rain flooded the streets.", + "pos": "verb", + "word_frequency": 24885 + }, + { + "word": "amminoacido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amino acid", + "romanization": "amminoacido", + "example_sentence_native": "Le proteine sono composte da amminoacidi.", + "example_sentence_english": "Proteins are composed of amino acids.", + "pos": "noun", + "word_frequency": 24889 + }, + { + "word": "applicabilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "applicability", + "romanization": "applicabilità", + "example_sentence_native": "Dobbiamo valutare l'applicabilità di questa teoria.", + "example_sentence_english": "We need to evaluate the applicability of this theory.", + "pos": "noun", + "word_frequency": 24892 + }, + { + "word": "ascendenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ancestry;lineage", + "romanization": "ascendenza", + "example_sentence_native": "Ha origini di ascendenza nobile.", + "example_sentence_english": "He has noble ancestry.", + "pos": "noun", + "word_frequency": 24895 + }, + { + "word": "assenzio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "absinthe;wormwood", + "romanization": "assenzio", + "example_sentence_native": "L'assenzio è una bevanda alcolica.", + "example_sentence_english": "Absinthe is an alcoholic beverage.", + "pos": "noun", + "word_frequency": 24896 + }, + { + "word": "astrofisica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "astrophysics", + "romanization": "astrofisica", + "example_sentence_native": "Studia astrofisica all'università.", + "example_sentence_english": "She studies astrophysics at university.", + "pos": "noun", + "word_frequency": 24897 + }, + { + "word": "autoradio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "car radio", + "romanization": "autoradio", + "example_sentence_native": "L'autoradio non funziona più.", + "example_sentence_english": "The car radio doesn't work anymore.", + "pos": "noun", + "word_frequency": 24898 + }, + { + "word": "badessa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "abbess", + "romanization": "badessa", + "example_sentence_native": "La badessa dirige il convento.", + "example_sentence_english": "The abbess leads the convent.", + "pos": "noun", + "word_frequency": 24899 + }, + { + "word": "badminton", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "badminton", + "romanization": "badminton", + "example_sentence_native": "Giochiamo a badminton ogni sabato.", + "example_sentence_english": "We play badminton every Saturday.", + "pos": "noun", + "word_frequency": 24900 + }, + { + "word": "basico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "basic", + "romanization": "basico", + "example_sentence_native": "Questo è un concetto basico.", + "example_sentence_english": "This is a basic concept.", + "pos": "adjective", + "word_frequency": 24904 + }, + { + "word": "becchino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gravedigger;undertaker", + "romanization": "becchino", + "example_sentence_native": "Il becchino preparò la tomba.", + "example_sentence_english": "The gravedigger prepared the grave.", + "pos": "noun", + "word_frequency": 24906 + }, + { + "word": "biondina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little blonde girl;woman", + "romanization": "biondina", + "example_sentence_native": "La biondina al tavolo accanto sorrideva.", + "example_sentence_english": "The little blonde girl at the next table was smiling.", + "pos": "noun", + "word_frequency": 24908 + }, + { + "word": "bocciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to fail (an exam);to reject", + "romanization": "bocciare", + "example_sentence_native": "Il professore ha bocciato molti studenti.", + "example_sentence_english": "The professor failed many students.", + "pos": "verb", + "word_frequency": 24909 + }, + { + "word": "bomboniera", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wedding favor;party favor", + "romanization": "bomboniera", + "example_sentence_native": "Abbiamo ricevuto una bomboniera al matrimonio.", + "example_sentence_english": "We received a wedding favor at the wedding.", + "pos": "noun", + "word_frequency": 24912 + }, + { + "word": "burrasca", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "storm;squall", + "romanization": "burrasca", + "example_sentence_native": "La nave affrontò una forte burrasca.", + "example_sentence_english": "The ship faced a strong storm.", + "pos": "noun", + "word_frequency": 24916 + }, + { + "word": "camerale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chamber (adj.);pertaining to a chamber", + "romanization": "camerale", + "example_sentence_native": "La decisione è stata presa in sede camerale.", + "example_sentence_english": "The decision was made in a chamber session.", + "pos": "adjective", + "word_frequency": 24919 + }, + { + "word": "camorrista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Camorrista (member of the Camorra)", + "romanization": "camorrista", + "example_sentence_native": "Il camorrista è stato arrestato dopo anni di latitanza.", + "example_sentence_english": "The camorrista was arrested after years on the run.", + "pos": "noun", + "word_frequency": 24920 + }, + { + "word": "canzoncina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little song;ditty", + "romanization": "canzoncina", + "example_sentence_native": "La bambina cantava una dolce canzoncina.", + "example_sentence_english": "The little girl was singing a sweet little song.", + "pos": "noun", + "word_frequency": 24921 + }, + { + "word": "canzoniere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "songbook;collection of poems;songs", + "romanization": "canzoniere", + "example_sentence_native": "Ha pubblicato un nuovo canzoniere con le sue poesie.", + "example_sentence_english": "He published a new songbook with his poems.", + "pos": "noun", + "word_frequency": 24922 + }, + { + "word": "cardiovascolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cardiovascular", + "romanization": "cardiovascolare", + "example_sentence_native": "L'esercizio fisico è importante per la salute cardiovascolare.", + "example_sentence_english": "Physical exercise is important for cardiovascular health.", + "pos": "adjective", + "word_frequency": 24923 + }, + { + "word": "cardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "thistle;cardoon", + "romanization": "cardo", + "example_sentence_native": "Il cardo è una pianta spinosa.", + "example_sentence_english": "The thistle is a thorny plant.", + "pos": "noun", + "word_frequency": 24924 + }, + { + "word": "catechesi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catechesis;religious instruction", + "romanization": "catechesi", + "example_sentence_native": "I bambini frequentano la catechesi per la prima comunione.", + "example_sentence_english": "The children attend catechesis for their first communion.", + "pos": "noun", + "word_frequency": 24926 + }, + { + "word": "cicciona", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fat woman (colloquial)", + "romanization": "cicciona", + "example_sentence_native": "La mia gatta è diventata una vera cicciona.", + "example_sentence_english": "My cat has become a real fatso.", + "pos": "noun", + "word_frequency": 24930 + }, + { + "word": "cineasta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "filmmaker;cineaste", + "romanization": "cineasta", + "example_sentence_native": "Il cineasta ha presentato il suo nuovo film al festival.", + "example_sentence_english": "The filmmaker presented his new movie at the festival.", + "pos": "noun", + "word_frequency": 24931 + }, + { + "word": "cippo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "boundary stone;memorial stone", + "romanization": "cippo", + "example_sentence_native": "Hanno eretto un cippo in memoria dei caduti.", + "example_sentence_english": "They erected a memorial stone in memory of the fallen.", + "pos": "noun", + "word_frequency": 24932 + }, + { + "word": "clementina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "clementine", + "romanization": "clementina", + "example_sentence_native": "Mi piace mangiare una clementina a colazione.", + "example_sentence_english": "I like to eat a clementine for breakfast.", + "pos": "noun", + "word_frequency": 24933 + }, + { + "word": "compera", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "purchase;buy", + "romanization": "compera", + "example_sentence_native": "Ho fatto una buona compera al mercato.", + "example_sentence_english": "I made a good purchase at the market.", + "pos": "noun", + "word_frequency": 24934 + }, + { + "word": "comprimere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to compress", + "romanization": "comprimere", + "example_sentence_native": "Dobbiamo comprimere i file per risparmiare spazio.", + "example_sentence_english": "We need to compress the files to save space.", + "pos": "verb", + "word_frequency": 24935 + }, + { + "word": "comunicante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "communicating;connecting", + "romanization": "comunicante", + "example_sentence_native": "Le due stanze sono comunicanti.", + "example_sentence_english": "The two rooms are communicating/connecting.", + "pos": "adjective", + "word_frequency": 24936 + }, + { + "word": "condomino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "condominium owner;co-owner (of a building)", + "romanization": "condomino", + "example_sentence_native": "Il condomino si è lamentato del rumore.", + "example_sentence_english": "The condominium owner complained about the noise.", + "pos": "noun", + "word_frequency": 24937 + }, + { + "word": "contrappunto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpoint", + "romanization": "contrappunto", + "example_sentence_native": "Il contrappunto è una tecnica compositiva musicale.", + "example_sentence_english": "Counterpoint is a musical compositional technique.", + "pos": "noun", + "word_frequency": 24938 + }, + { + "word": "contusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contusion;bruise", + "romanization": "contusione", + "example_sentence_native": "Dopo la caduta, aveva una brutta contusione al ginocchio.", + "example_sentence_english": "After the fall, he had a bad contusion on his knee.", + "pos": "noun", + "word_frequency": 24939 + }, + { + "word": "convertitore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "converter", + "romanization": "convertitore", + "example_sentence_native": "Ho bisogno di un convertitore di valuta.", + "example_sentence_english": "I need a currency converter.", + "pos": "noun", + "word_frequency": 24940 + }, + { + "word": "coppetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small cup;little bowl", + "romanization": "coppetta", + "example_sentence_native": "Ho mangiato lo yogurt in una piccola coppetta.", + "example_sentence_english": "I ate the yogurt in a small cup.", + "pos": "noun", + "word_frequency": 24941 + }, + { + "word": "coreografo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "choreographer", + "romanization": "coreografo", + "example_sentence_native": "Il coreografo ha creato una nuova danza per lo spettacolo.", + "example_sentence_english": "The choreographer created a new dance for the show.", + "pos": "noun", + "word_frequency": 24942 + }, + { + "word": "cospiratore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "conspirator", + "romanization": "cospiratore", + "example_sentence_native": "I cospiratori furono scoperti e arrestati.", + "example_sentence_english": "The conspirators were discovered and arrested.", + "pos": "noun", + "word_frequency": 24943 + }, + { + "word": "cuculo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cuckoo", + "romanization": "cuculo", + "example_sentence_native": "Il cuculo canta in primavera.", + "example_sentence_english": "The cuckoo sings in spring.", + "pos": "noun", + "word_frequency": 24948 + }, + { + "word": "decibel", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decibel", + "romanization": "decibel", + "example_sentence_native": "Il rumore superava i 90 decibel.", + "example_sentence_english": "The noise exceeded 90 decibels.", + "pos": "noun", + "word_frequency": 24952 + }, + { + "word": "dimostrabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstrable;provable", + "romanization": "dimostrabile", + "example_sentence_native": "La sua teoria è scientificamente dimostrabile.", + "example_sentence_english": "His theory is scientifically demonstrable.", + "pos": "adjective", + "word_frequency": 24961 + }, + { + "word": "dirittura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "straightness;straight line", + "romanization": "dirittura", + "example_sentence_native": "Siamo in dirittura d'arrivo per il progetto.", + "example_sentence_english": "We are on the home stretch for the project.", + "pos": "noun", + "word_frequency": 24963 + }, + { + "word": "disarmare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disarm", + "romanization": "disarmare", + "example_sentence_native": "La polizia ha cercato di disarmare il sospettato.", + "example_sentence_english": "The police tried to disarm the suspect.", + "pos": "verb", + "word_frequency": 24964 + }, + { + "word": "disgustare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disgust", + "romanization": "disgustare", + "example_sentence_native": "La sua arroganza mi disgusta.", + "example_sentence_english": "His arrogance disgusts me.", + "pos": "verb", + "word_frequency": 24965 + }, + { + "word": "dribbling", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dribbling", + "romanization": "dribbling", + "example_sentence_native": "Il suo dribbling è eccezionale.", + "example_sentence_english": "His dribbling is exceptional.", + "pos": "noun", + "word_frequency": 24970 + }, + { + "word": "duecentomila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "two hundred thousand", + "romanization": "duecentomila", + "example_sentence_native": "La città ha circa duecentomila abitanti.", + "example_sentence_english": "The city has about two hundred thousand inhabitants.", + "pos": "adjective", + "word_frequency": 24972 + }, + { + "word": "ebano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ebony", + "romanization": "ebano", + "example_sentence_native": "Il mobile era intarsiato con legno di ebano.", + "example_sentence_english": "The furniture was inlaid with ebony wood.", + "pos": "noun", + "word_frequency": 24973 + }, + { + "word": "eccedenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "excess;surplus", + "romanization": "eccedenza", + "example_sentence_native": "Abbiamo un'eccedenza di scorte in magazzino.", + "example_sentence_english": "We have a surplus of stock in the warehouse.", + "pos": "noun", + "word_frequency": 24974 + }, + { + "word": "ecologista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "environmentalista;ecologist", + "romanization": "ecologista", + "example_sentence_native": "È un convinto ecologista e difende l'ambiente.", + "example_sentence_english": "He is a convinced environmentalist and defends the environment.", + "pos": "noun", + "word_frequency": 24975 + }, + { + "word": "editorialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "columnist;editorial writer", + "romanization": "editorialista", + "example_sentence_native": "L'editorialista ha espresso un'opinione forte sull'argomento.", + "example_sentence_english": "The columnist expressed a strong opinion on the topic.", + "pos": "noun", + "word_frequency": 24976 + }, + { + "word": "entropia", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "entropy", + "romanization": "entropia", + "example_sentence_native": "Il concetto di entropia è fondamentale in termodinamica.", + "example_sentence_english": "The concept of entropy is fundamental in thermodynamics.", + "pos": "noun", + "word_frequency": 24980 + }, + { + "word": "esegesi", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "exegesis", + "romanization": "esegesi", + "example_sentence_native": "L'esegesi del testo biblico richiede profonda conoscenza.", + "example_sentence_english": "The exegesis of the biblical text requires deep knowledge.", + "pos": "noun", + "word_frequency": 24982 + }, + { + "word": "euforico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "euphoric", + "romanization": "euforico", + "example_sentence_native": "Era euforico dopo aver vinto la gara.", + "example_sentence_english": "He was euphoric after winning the race.", + "pos": "adjective", + "word_frequency": 24983 + }, + { + "word": "evocazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "evocation;summoning", + "romanization": "evocazione", + "example_sentence_native": "L'evocazione di ricordi passati può essere dolorosa.", + "example_sentence_english": "The evocation of past memories can be painful.", + "pos": "noun", + "word_frequency": 24985 + }, + { + "word": "fagiolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "green bean;string bean", + "romanization": "fagiolino", + "example_sentence_native": "Mi piacciono i fagiolini lessi con un po' di olio.", + "example_sentence_english": "I like boiled green beans with a little oil.", + "pos": "noun", + "word_frequency": 24986 + }, + { + "word": "fierezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pride;haughtiness", + "romanization": "fierezza", + "example_sentence_native": "Ha mostrato grande fierezza nel suo lavoro.", + "example_sentence_english": "He showed great pride in his work.", + "pos": "noun", + "word_frequency": 24992 + }, + { + "word": "frontespizio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "title page;frontispiece", + "romanization": "frontespizio", + "example_sentence_native": "Il frontespizio del libro conteneva il titolo e l'autore.", + "example_sentence_english": "The title page of the book contained the title and the author.", + "pos": "noun", + "word_frequency": 24998 + }, + { + "word": "fuggiasco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fugitive;runaway", + "romanization": "fuggiasco", + "example_sentence_native": "Il fuggiasco è stato catturato dopo una lunga ricerca.", + "example_sentence_english": "The fugitive was captured after a long search.", + "pos": "noun", + "word_frequency": 24999 + }, + { + "word": "geroglifico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hieroglyph", + "romanization": "geroglifico", + "example_sentence_native": "Gli antichi Egizi scrivevano usando i geroglifici.", + "example_sentence_english": "Ancient Egyptians wrote using hieroglyphs.", + "pos": "noun", + "word_frequency": 25004 + }, + { + "word": "giovamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "benefit", + "romanization": "giovamento", + "example_sentence_native": "Questo farmaco ha portato un grande giovamento alla sua salute.", + "example_sentence_english": "This medicine brought great benefit to his health.", + "pos": "noun", + "word_frequency": 25006 + }, + { + "word": "giunzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "junction", + "romanization": "giunzione", + "example_sentence_native": "La giunzione dei due cavi è stata saldata con cura.", + "example_sentence_english": "The junction of the two cables was carefully soldered.", + "pos": "noun", + "word_frequency": 25007 + }, + { + "word": "imitatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imitator", + "romanization": "imitatore", + "example_sentence_native": "Era un bravo imitatore di voci famose.", + "example_sentence_english": "He was a good imitator of famous voices.", + "pos": "noun", + "word_frequency": 25017 + }, + { + "word": "imperare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to command", + "romanization": "imperare", + "example_sentence_native": "Il re continuava a imperare con pugno di ferro.", + "example_sentence_english": "The king continued to command with an iron fist.", + "pos": "verb", + "word_frequency": 25018 + }, + { + "word": "impetuoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impetuous", + "romanization": "impetuoso", + "example_sentence_native": "Il fiume era impetuoso dopo le forti piogge.", + "example_sentence_english": "The river was impetuous after the heavy rains.", + "pos": "adjective", + "word_frequency": 25019 + }, + { + "word": "imprecazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imprecation", + "romanization": "imprecazione", + "example_sentence_native": "Lanciò un'imprecazione contro il suo nemico.", + "example_sentence_english": "He hurled an imprecation against his enemy.", + "pos": "noun", + "word_frequency": 25020 + }, + { + "word": "incanalare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to channel", + "romanization": "incanalare", + "example_sentence_native": "Dobbiamo incanalare le nostre energie verso un obiettivo comune.", + "example_sentence_english": "We must channel our energies towards a common goal.", + "pos": "verb", + "word_frequency": 25021 + }, + { + "word": "incidentale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incidental", + "romanization": "incidentale", + "example_sentence_native": "La sua osservazione era solo incidentale al discorso principale.", + "example_sentence_english": "His remark was merely incidental to the main discussion.", + "pos": "adverb", + "word_frequency": 25022 + }, + { + "word": "incolore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colorless", + "romanization": "incolore", + "example_sentence_native": "L'acqua pura è un liquido incolore e inodore.", + "example_sentence_english": "Pure water is a colorless and odorless liquid.", + "pos": "adjective", + "word_frequency": 25023 + }, + { + "word": "incomparabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "incomparable", + "romanization": "incomparabile", + "example_sentence_native": "La bellezza del paesaggio era incomparabile.", + "example_sentence_english": "The beauty of the landscape was incomparable.", + "pos": "adjective", + "word_frequency": 25024 + }, + { + "word": "indissolubile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indissoluble", + "romanization": "indissolubile", + "example_sentence_native": "Il loro legame era indissolubile.", + "example_sentence_english": "Their bond was indissoluble.", + "pos": "adverb", + "word_frequency": 25026 + }, + { + "word": "infiammabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flammable", + "romanization": "infiammabile", + "example_sentence_native": "La benzina è un liquido altamente infiammabile.", + "example_sentence_english": "Gasoline is a highly flammable liquid.", + "pos": "adjective", + "word_frequency": 25028 + }, + { + "word": "infierire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to rage", + "romanization": "infierire", + "example_sentence_native": "Non infierire su chi è già a terra.", + "example_sentence_english": "Don't rage against someone who is already down.", + "pos": "verb", + "word_frequency": 25029 + }, + { + "word": "inghiottire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to swallow", + "romanization": "inghiottire", + "example_sentence_native": "Ha inghiottito la pillola con un bicchiere d'acqua.", + "example_sentence_english": "He swallowed the pill with a glass of water.", + "pos": "verb", + "word_frequency": 25030 + }, + { + "word": "iniquo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iniquitous", + "romanization": "iniquo", + "example_sentence_native": "La decisione del giudice è stata considerata iniqua.", + "example_sentence_english": "The judge's decision was considered iniquitous.", + "pos": "adjective", + "word_frequency": 25031 + }, + { + "word": "inondare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flood", + "romanization": "inondare", + "example_sentence_native": "La pioggia torrenziale ha inondato le strade.", + "example_sentence_english": "The torrential rain flooded the streets.", + "pos": "verb", + "word_frequency": 25032 + }, + { + "word": "intonato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "in tune", + "romanization": "intonato", + "example_sentence_native": "Il coro era perfettamente intonato.", + "example_sentence_english": "The choir was perfectly in tune.", + "pos": "adjective", + "word_frequency": 25033 + }, + { + "word": "intrepido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intrepid", + "romanization": "intrepido", + "example_sentence_native": "L'esploratore intrepido affrontò la giungla sconosciuta.", + "example_sentence_english": "The intrepid explorer faced the unknown jungle.", + "pos": "adjective", + "word_frequency": 25034 + }, + { + "word": "intricato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "intricate", + "romanization": "intricato", + "example_sentence_native": "La trama del romanzo era molto intricata.", + "example_sentence_english": "The plot of the novel was very intricate.", + "pos": "adjective", + "word_frequency": 25035 + }, + { + "word": "intromissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "interference", + "romanization": "intromissione", + "example_sentence_native": "Non tollero alcuna intromissione nei miei affari personali.", + "example_sentence_english": "I don't tolerate any interference in my personal affairs.", + "pos": "noun", + "word_frequency": 25036 + }, + { + "word": "introverso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "introverted", + "romanization": "introverso", + "example_sentence_native": "Mio fratello è una persona piuttosto introversa.", + "example_sentence_english": "My brother is a rather introverted person.", + "pos": "adjective", + "word_frequency": 25037 + }, + { + "word": "jugoslavo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Yugoslav", + "romanization": "jugoslavo", + "example_sentence_native": "Era un cittadino jugoslavo prima della divisione.", + "example_sentence_english": "He was a Yugoslav citizen before the division.", + "pos": "adjective", + "word_frequency": 25042 + }, + { + "word": "lapsus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slip (of the tongue;pen);lapse", + "romanization": "lapsus", + "example_sentence_native": "Ha fatto un lapsus e ha detto la parola sbagliata.", + "example_sentence_english": "He made a slip of the tongue and said the wrong word.", + "pos": "noun", + "word_frequency": 25045 + }, + { + "word": "libertario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "libertarian", + "romanization": "libertario", + "example_sentence_native": "È un convinto libertario e crede nella libertà individuale.", + "example_sentence_english": "He is a convinced libertarian and believes in individual freedom.", + "pos": "noun", + "word_frequency": 25049 + }, + { + "word": "linfoma", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lymphoma", + "romanization": "linfoma", + "example_sentence_native": "La diagnosi di linfoma è stata difficile da accettare.", + "example_sentence_english": "The lymphoma diagnosis was difficult to accept.", + "pos": "noun", + "word_frequency": 25051 + }, + { + "word": "lobbista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lobbyist", + "romanization": "lobbista", + "example_sentence_native": "Il lobbista ha cercato di influenzare la decisione.", + "example_sentence_english": "The lobbyist tried to influence the decision.", + "pos": "noun", + "word_frequency": 25052 + }, + { + "word": "maiolica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "majolica", + "romanization": "maiolica", + "example_sentence_native": "La maiolica italiana è famosa per i suoi colori vivaci.", + "example_sentence_english": "Italian majolica is famous for its vibrant colors.", + "pos": "noun", + "word_frequency": 25055 + }, + { + "word": "maltrattare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mistreat;to abuse", + "romanization": "maltrattare", + "example_sentence_native": "Non si dovrebbe mai maltrattare gli animali.", + "example_sentence_english": "One should never mistreat animals.", + "pos": "verb", + "word_frequency": 25056 + }, + { + "word": "masochismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "masochism", + "romanization": "masochismo", + "example_sentence_native": "Alcuni comportamenti possono essere interpretati come forme di masochismo.", + "example_sentence_english": "Some behaviors can be interpreted as forms of masochism.", + "pos": "noun", + "word_frequency": 25059 + }, + { + "word": "melodico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "melodic", + "romanization": "melodico", + "example_sentence_native": "Ha una voce molto melodica.", + "example_sentence_english": "She has a very melodic voice.", + "pos": "adjective", + "word_frequency": 25061 + }, + { + "word": "mezzosangue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "half-blood;crossbreed", + "romanization": "mezzosangue", + "example_sentence_native": "Il cavallo era un bellissimo mezzosangue.", + "example_sentence_english": "The horse was a beautiful crossbreed.", + "pos": "noun", + "word_frequency": 25063 + }, + { + "word": "microbo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "microbe;germ", + "romanization": "microbo", + "example_sentence_native": "I microbi sono troppo piccoli per essere visti a occhio nudo.", + "example_sentence_english": "Microbes are too small to be seen with the naked eye.", + "pos": "noun", + "word_frequency": 25064 + }, + { + "word": "mignon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tiny;cute;dainty", + "romanization": "mignon", + "example_sentence_native": "Ha comprato una torta mignon per la festa.", + "example_sentence_english": "She bought a tiny cake for the party.", + "pos": "adjective", + "word_frequency": 25065 + }, + { + "word": "mobilio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "furniture (collective noun)", + "romanization": "mobilio", + "example_sentence_native": "Il mobilio antico è molto prezioso.", + "example_sentence_english": "Antique furniture is very valuable.", + "pos": "noun", + "word_frequency": 25068 + }, + { + "word": "modernizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to modernize", + "romanization": "modernizzare", + "example_sentence_native": "Dobbiamo modernizzare i nostri sistemi.", + "example_sentence_english": "We need to modernize our systems.", + "pos": "verb", + "word_frequency": 25069 + }, + { + "word": "mojito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mojito", + "romanization": "mojito", + "example_sentence_native": "Vorrei un mojito, per favore.", + "example_sentence_english": "I would like a mojito, please.", + "pos": "noun", + "word_frequency": 25070 + }, + { + "word": "morbidezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "softness;tenderness", + "romanization": "morbidezza", + "example_sentence_native": "La morbidezza del tessuto era incredibile.", + "example_sentence_english": "The softness of the fabric was incredible.", + "pos": "noun", + "word_frequency": 25073 + }, + { + "word": "motocross", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motocross", + "romanization": "motocross", + "example_sentence_native": "Gli piace praticare il motocross nel fine settimana.", + "example_sentence_english": "He likes to practice motocross on the weekend.", + "pos": "noun", + "word_frequency": 25074 + }, + { + "word": "mungere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to milk", + "romanization": "mungere", + "example_sentence_native": "Il contadino deve mungere le mucche ogni mattina.", + "example_sentence_english": "The farmer has to milk the cows every morning.", + "pos": "verb", + "word_frequency": 25076 + }, + { + "word": "negoziatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "negotiator", + "romanization": "negoziatore", + "example_sentence_native": "Il negoziatore ha cercato di trovare un accordo.", + "example_sentence_english": "The negotiator tried to find an agreement.", + "pos": "noun", + "word_frequency": 25079 + }, + { + "word": "opinabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "debatable;arguable", + "romanization": "opinabile", + "example_sentence_native": "La sua interpretazione è opinabile.", + "example_sentence_english": "His interpretation is debatable.", + "pos": "adjective", + "word_frequency": 25085 + }, + { + "word": "orchestrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to orchestrate", + "romanization": "orchestrare", + "example_sentence_native": "Hanno orchestrato un piano complesso.", + "example_sentence_english": "They orchestrated a complex plan.", + "pos": "verb", + "word_frequency": 25086 + }, + { + "word": "organista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "organist", + "romanization": "organista", + "example_sentence_native": "L'organista ha suonato un pezzo meraviglioso.", + "example_sentence_english": "The organist played a wonderful piece.", + "pos": "noun", + "word_frequency": 25087 + }, + { + "word": "ozio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "idleness;leisure", + "romanization": "ozio", + "example_sentence_native": "L'ozio è il padre di tutti i vizi.", + "example_sentence_english": "Idleness is the father of all vices.", + "pos": "noun", + "word_frequency": 25088 + }, + { + "word": "pancione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "big belly;potbelly", + "romanization": "pancione", + "example_sentence_native": "Il suo pancione cresceva ogni giorno.", + "example_sentence_english": "Her big belly was growing every day.", + "pos": "noun", + "word_frequency": 25089 + }, + { + "word": "pantomima", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pantomime", + "romanization": "pantomima", + "example_sentence_native": "La sua reazione fu una vera pantomima.", + "example_sentence_english": "His reaction was a true pantomime.", + "pos": "noun", + "word_frequency": 25090 + }, + { + "word": "parcella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fee (professional);bill", + "romanization": "parcella", + "example_sentence_native": "Il medico ha presentato una parcella salata.", + "example_sentence_english": "The doctor presented a hefty bill.", + "pos": "noun", + "word_frequency": 25091 + }, + { + "word": "pensante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thinking;thoughtful", + "romanization": "pensante", + "example_sentence_native": "L'uomo è un animale pensante.", + "example_sentence_english": "Man is a thinking animal.", + "pos": "adjective", + "word_frequency": 25096 + }, + { + "word": "perentorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "peremptory;decisive;absolute", + "romanization": "perentorio", + "example_sentence_native": "Ha dato un ordine perentorio.", + "example_sentence_english": "He gave a peremptory order.", + "pos": "adjective", + "word_frequency": 25098 + }, + { + "word": "performante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "high-performing;efficient", + "romanization": "performante", + "example_sentence_native": "Questo nuovo motore è molto performante.", + "example_sentence_english": "This new engine is very high-performing.", + "pos": "adjective", + "word_frequency": 25099 + }, + { + "word": "piffero", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fife;pipe", + "romanization": "piffero", + "example_sentence_native": "Il suono del piffero era allegro.", + "example_sentence_english": "The sound of the fife was cheerful.", + "pos": "noun", + "word_frequency": 25100 + }, + { + "word": "pitone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "python", + "romanization": "pitone", + "example_sentence_native": "Il pitone è un serpente non velenoso.", + "example_sentence_english": "The python is a non-venomous snake.", + "pos": "noun", + "word_frequency": 25101 + }, + { + "word": "portabagaglio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "luggage rack;boot (of a car)", + "romanization": "portabagaglio", + "example_sentence_native": "Metti le valigie nel portabagaglio.", + "example_sentence_english": "Put the suitcases in the boot.", + "pos": "noun", + "word_frequency": 25103 + }, + { + "word": "portatrice", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carrier;bearer (female)", + "romanization": "portatrice", + "example_sentence_native": "È una portatrice sana della malattia.", + "example_sentence_english": "She is a healthy carrier of the disease.", + "pos": "noun", + "word_frequency": 25104 + }, + { + "word": "precettore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tutor;private teacher", + "romanization": "precettore", + "example_sentence_native": "Il precettore seguiva l'educazione dei figli nobili.", + "example_sentence_english": "The tutor oversaw the education of noble children.", + "pos": "noun", + "word_frequency": 25106 + }, + { + "word": "pressing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pressing (in sports);pressure", + "romanization": "pressing", + "example_sentence_native": "La squadra ha fatto un pressing alto per recuperare palla.", + "example_sentence_english": "The team applied high pressing to recover the ball.", + "pos": "noun", + "word_frequency": 25107 + }, + { + "word": "profilazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profiling", + "romanization": "profilazione", + "example_sentence_native": "La profilazione dei dati è un tema di privacy.", + "example_sentence_english": "Data profiling is a privacy issue.", + "pos": "noun", + "word_frequency": 25108 + }, + { + "word": "quadrangolare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quadrangular", + "romanization": "quadrangolare", + "example_sentence_native": "Hanno costruito una torre quadrangolare.", + "example_sentence_english": "They built a quadrangular tower.", + "pos": "adjective", + "word_frequency": 25111 + }, + { + "word": "quintessenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "quintessence", + "romanization": "quintessenza", + "example_sentence_native": "È la quintessenza dell'eleganza.", + "example_sentence_english": "It is the quintessence of elegance.", + "pos": "noun", + "word_frequency": 25113 + }, + { + "word": "reflusso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reflux;ebb", + "romanization": "reflusso", + "example_sentence_native": "Soffre di reflusso gastrico.", + "example_sentence_english": "He suffers from gastric reflux.", + "pos": "noun", + "word_frequency": 25115 + }, + { + "word": "refurtiva", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stolen goods;loot", + "romanization": "refurtiva", + "example_sentence_native": "La polizia ha recuperato la refurtiva.", + "example_sentence_english": "The police recovered the stolen goods.", + "pos": "noun", + "word_frequency": 25116 + }, + { + "word": "rettitudine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rectitude;integrity", + "romanization": "rettitudine", + "example_sentence_native": "La sua rettitudine morale è indiscutibile.", + "example_sentence_english": "His moral rectitude is unquestionable.", + "pos": "noun", + "word_frequency": 25118 + }, + { + "word": "revisionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "revisionism", + "romanization": "revisionismo", + "example_sentence_native": "Il revisionismo storico è un campo di studio controverso.", + "example_sentence_english": "Historical revisionism is a controversial field of study.", + "pos": "noun", + "word_frequency": 25119 + }, + { + "word": "ripudio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repudiation;rejection", + "romanization": "ripudio", + "example_sentence_native": "Il suo ripudio delle vecchie idee fu totale.", + "example_sentence_english": "His repudiation of old ideas was total.", + "pos": "noun", + "word_frequency": 25121 + }, + { + "word": "salasso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bloodletting;rip-off;heavy expense", + "romanization": "salasso", + "example_sentence_native": "Comprare quella macchina è stato un vero salasso.", + "example_sentence_english": "Buying that car was a real rip-off.", + "pos": "noun", + "word_frequency": 25126 + }, + { + "word": "salvagente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lifebuoy;life jacket", + "romanization": "salvagente", + "example_sentence_native": "Indossava un salvagente prima di salire in barca.", + "example_sentence_english": "He wore a life jacket before getting on the boat.", + "pos": "noun", + "word_frequency": 25128 + }, + { + "word": "sanguinamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bleeding;hemorrhage", + "romanization": "sanguinamento", + "example_sentence_native": "Il medico ha fermato il sanguinamento.", + "example_sentence_english": "The doctor stopped the bleeding.", + "pos": "noun", + "word_frequency": 25129 + }, + { + "word": "scarno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gaunt;meager;sparse", + "romanization": "scarno", + "example_sentence_native": "La descrizione era scarna di dettagli.", + "example_sentence_english": "The description was sparse on details.", + "pos": "adjective", + "word_frequency": 25131 + }, + { + "word": "scenetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skit;short scene", + "romanization": "scenetta", + "example_sentence_native": "Hanno preparato una divertente scenetta per la festa.", + "example_sentence_english": "They prepared a funny skit for the party.", + "pos": "noun", + "word_frequency": 25132 + }, + { + "word": "scimpanzé", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "chimpanzee", + "romanization": "scimpanzé", + "example_sentence_native": "Lo scimpanzé è un primate intelligente.", + "example_sentence_english": "The chimpanzee is an intelligent primate.", + "pos": "noun", + "word_frequency": 25134 + }, + { + "word": "scolarizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schooling;education (process of)", + "romanization": "scolarizzazione", + "example_sentence_native": "La scolarizzazione è fondamentale per lo sviluppo di un paese.", + "example_sentence_english": "Schooling is fundamental for a country's development.", + "pos": "noun", + "word_frequency": 25135 + }, + { + "word": "scottante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scalding;burning;pressing;hot (topic)", + "romanization": "scottante", + "example_sentence_native": "La questione è diventata scottante e richiede una soluzione immediata.", + "example_sentence_english": "The issue has become pressing and requires an immediate solution.", + "pos": "adjective", + "word_frequency": 25136 + }, + { + "word": "sgabuzzino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "broom closet;small storage room", + "romanization": "sgabuzzino", + "example_sentence_native": "Ha messo tutte le vecchie cose nello sgabuzzino.", + "example_sentence_english": "He put all the old things in the broom closet.", + "pos": "noun", + "word_frequency": 25140 + }, + { + "word": "snervante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unnerving;irritating;exasperating", + "romanization": "snervante", + "example_sentence_native": "L'attesa era snervante.", + "example_sentence_english": "The wait was unnerving.", + "pos": "adjective", + "word_frequency": 25145 + }, + { + "word": "solforico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sulfuric", + "romanization": "solforico", + "example_sentence_native": "L'acido solforico è molto corrosivo.", + "example_sentence_english": "Sulfuric acid is very corrosive.", + "pos": "adjective", + "word_frequency": 25147 + }, + { + "word": "sovrannaturale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supernatural", + "romanization": "sovrannaturale", + "example_sentence_native": "Credeva nel potere sovrannaturale.", + "example_sentence_english": "He believed in supernatural power.", + "pos": "adjective", + "word_frequency": 25148 + }, + { + "word": "sovversivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subversive", + "romanization": "sovversivo", + "example_sentence_native": "Le sue idee erano considerate sovversive dal regime.", + "example_sentence_english": "His ideas were considered subversive by the regime.", + "pos": "adjective", + "word_frequency": 25149 + }, + { + "word": "spezzatino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stew (meat stew)", + "romanization": "spezzatino", + "example_sentence_native": "Per cena abbiamo mangiato un delizioso spezzatino.", + "example_sentence_english": "For dinner we ate a delicious stew.", + "pos": "noun", + "word_frequency": 25152 + }, + { + "word": "sputtanare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to discredit;to trash-talk;to expose (in a negative way)", + "romanization": "sputtanare", + "example_sentence_native": "Ha cercato di sputtanare la sua reputazione.", + "example_sentence_english": "He tried to trash-talk his reputation.", + "pos": "verb", + "word_frequency": 25153 + }, + { + "word": "squarciagola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "(at the top of one's) lungs;shouting loudly", + "romanization": "squarciagola", + "example_sentence_native": "Gridò a squarciagola per farsi sentire.", + "example_sentence_english": "He shouted at the top of his lungs to be heard.", + "pos": "noun", + "word_frequency": 25154 + }, + { + "word": "sterilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sterility;barrenness", + "romanization": "sterilità", + "example_sentence_native": "La sterilità del terreno rendeva difficile la coltivazione.", + "example_sentence_english": "The sterility of the soil made cultivation difficult.", + "pos": "noun", + "word_frequency": 25156 + }, + { + "word": "stonare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to be out of tune;to clash;to be out of place", + "romanization": "stonare", + "example_sentence_native": "Il cantante ha iniziato a stonare durante l'esibizione.", + "example_sentence_english": "The singer started to be out of tune during the performance.", + "pos": "verb", + "word_frequency": 25157 + }, + { + "word": "stregare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bewitch;to enchant;to charm", + "romanization": "stregare", + "example_sentence_native": "La sua bellezza riusciva a stregare chiunque.", + "example_sentence_english": "Her beauty could bewitch anyone.", + "pos": "verb", + "word_frequency": 25158 + }, + { + "word": "superbike", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "superbike", + "romanization": "superbike", + "example_sentence_native": "Ha comprato una nuova superbike per le gare.", + "example_sentence_english": "He bought a new superbike for the races.", + "pos": "noun", + "word_frequency": 25161 + }, + { + "word": "sura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "calf (of leg)", + "romanization": "sura", + "example_sentence_native": "Ho sentito un dolore alla sura dopo la corsa.", + "example_sentence_english": "I felt a pain in my calf after the run.", + "pos": "noun", + "word_frequency": 25162 + }, + { + "word": "tamburino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "drummer boy", + "romanization": "tamburino", + "example_sentence_native": "Il tamburino suonava la marcia.", + "example_sentence_english": "The drummer boy played the march.", + "pos": "noun", + "word_frequency": 25165 + }, + { + "word": "tanica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jerrycan", + "romanization": "tanica", + "example_sentence_native": "Abbiamo riempito la tanica di benzina.", + "example_sentence_english": "We filled the jerrycan with gasoline.", + "pos": "noun", + "word_frequency": 25167 + }, + { + "word": "tattile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tactile", + "romanization": "tattile", + "example_sentence_native": "Il senso tattile è fondamentale per i non vedenti.", + "example_sentence_english": "The tactile sense is fundamental for the blind.", + "pos": "adjective", + "word_frequency": 25168 + }, + { + "word": "toccasana", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "panacea", + "romanization": "toccasana", + "example_sentence_native": "Questo rimedio è un vero toccasana per il raffreddore.", + "example_sentence_english": "This remedy is a real cure-all for the cold.", + "pos": "noun", + "word_frequency": 25170 + }, + { + "word": "trasgressore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transgressor", + "romanization": "trasgressore", + "example_sentence_native": "Il trasgressore è stato multato per eccesso di velocità.", + "example_sentence_english": "The offender was fined for speeding.", + "pos": "noun", + "word_frequency": 25173 + }, + { + "word": "triciclo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tricycle", + "romanization": "triciclo", + "example_sentence_native": "Il bambino ha imparato a usare il triciclo.", + "example_sentence_english": "The child learned to use the tricycle.", + "pos": "noun", + "word_frequency": 25175 + }, + { + "word": "tritone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "triton", + "romanization": "tritone", + "example_sentence_native": "Il tritone è un anfibio che vive in acqua.", + "example_sentence_english": "The triton is an amphibian that lives in water.", + "pos": "noun", + "word_frequency": 25176 + }, + { + "word": "varano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "monitor lizard", + "romanization": "varano", + "example_sentence_native": "Il varano di Komodo è il più grande lucertola del mondo.", + "example_sentence_english": "The Komodo monitor lizard is the largest lizard in the world.", + "pos": "noun", + "word_frequency": 25181 + }, + { + "word": "vegeto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vigorous", + "romanization": "vegeto", + "example_sentence_native": "Nonostante l'età, è ancora molto vegeto.", + "example_sentence_english": "Despite his age, he is still very vigorous.", + "pos": "adjective", + "word_frequency": 25183 + }, + { + "word": "vestitino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little dress", + "romanization": "vestitino", + "example_sentence_native": "Ha comprato un grazioso vestitino per la festa.", + "example_sentence_english": "She bought a pretty little dress for the party.", + "pos": "noun", + "word_frequency": 25184 + }, + { + "word": "vinicola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wine-making", + "romanization": "vinicola", + "example_sentence_native": "La regione è famosa per la sua tradizione vinicola.", + "example_sentence_english": "The region is famous for its wine-making tradition.", + "pos": "adjective", + "word_frequency": 25185 + }, + { + "word": "vittoriana", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Victorian", + "romanization": "vittoriana", + "example_sentence_native": "L'architettura vittoriana è molto riconoscibile.", + "example_sentence_english": "Victorian architecture is very recognizable.", + "pos": "adjective", + "word_frequency": 25187 + }, + { + "word": "zodiacale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "zodiacal", + "romanization": "zodiacale", + "example_sentence_native": "Ogni mese ha un segno zodiacale corrispondente.", + "example_sentence_english": "Every month has a corresponding zodiacal sign.", + "pos": "adjective", + "word_frequency": 25196 + }, + { + "word": "abusivismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illegal building;activity", + "romanization": "abusivismo", + "example_sentence_native": "L'abusivismo edilizio è un problema serio in molte città.", + "example_sentence_english": "Illegal building is a serious problem in many cities.", + "pos": "noun", + "word_frequency": 25200 + }, + { + "word": "affollare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to crowd;to throng", + "romanization": "affollare", + "example_sentence_native": "La gente ha iniziato ad affollare la piazza per il concerto.", + "example_sentence_english": "People started to crowd the square for the concert.", + "pos": "verb", + "word_frequency": 25206 + }, + { + "word": "affondo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lunge;thrust", + "romanization": "affondo", + "example_sentence_native": "L'atleta ha eseguito un affondo perfetto.", + "example_sentence_english": "The athlete performed a perfect lunge.", + "pos": "noun", + "word_frequency": 25207 + }, + { + "word": "aminoacido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amino acid", + "romanization": "aminoacido", + "example_sentence_native": "Le proteine sono composte da aminoacidi.", + "example_sentence_english": "Proteins are composed of amino acids.", + "pos": "noun", + "word_frequency": 25212 + }, + { + "word": "ammassare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to pile up;to amass", + "romanization": "ammassare", + "example_sentence_native": "Hanno iniziato ad ammassare legna per l'inverno.", + "example_sentence_english": "They started to pile up wood for the winter.", + "pos": "verb", + "word_frequency": 25213 + }, + { + "word": "anagramma", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anagram", + "romanization": "anagramma", + "example_sentence_native": "\"Roma\" è un anagramma di \"amor\".", + "example_sentence_english": "\"Roma\" is an anagram of \"amor\".", + "pos": "noun", + "word_frequency": 25214 + }, + { + "word": "anta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "door leaf;shutter", + "romanization": "anta", + "example_sentence_native": "L'anta dell'armadio si è rotta.", + "example_sentence_english": "The wardrobe door leaf broke.", + "pos": "noun", + "word_frequency": 25217 + }, + { + "word": "antidolorifico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "painkiller;analgesic", + "romanization": "antidolorifico", + "example_sentence_native": "Ho preso un antidolorifico per il mal di testa.", + "example_sentence_english": "I took a painkiller for my headache.", + "pos": "noun", + "word_frequency": 25218 + }, + { + "word": "assetare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to make thirsty", + "romanization": "assetare", + "example_sentence_native": "Il lungo viaggio sotto il sole mi ha assetato.", + "example_sentence_english": "The long journey under the sun made me thirsty.", + "pos": "verb", + "word_frequency": 25223 + }, + { + "word": "autolesionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-harm", + "romanization": "autolesionismo", + "example_sentence_native": "L'autolesionismo è un comportamento che richiede aiuto professionale.", + "example_sentence_english": "Self-harm is a behavior that requires professional help.", + "pos": "noun", + "word_frequency": 25225 + }, + { + "word": "automa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "automaton;robot", + "romanization": "automa", + "example_sentence_native": "L'automa si muoveva con precisione meccanica.", + "example_sentence_english": "The automaton moved with mechanical precision.", + "pos": "noun", + "word_frequency": 25226 + }, + { + "word": "avventare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hurl;to throw (oneself)", + "romanization": "avventare", + "example_sentence_native": "Il cane si è avventato sul cibo.", + "example_sentence_english": "The dog pounced on the food.", + "pos": "verb", + "word_frequency": 25227 + }, + { + "word": "beduino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Bedouin", + "romanization": "beduino", + "example_sentence_native": "I beduini sono un popolo nomade del deserto.", + "example_sentence_english": "Bedouins are a nomadic people of the desert.", + "pos": "noun", + "word_frequency": 25230 + }, + { + "word": "benedicere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to bless", + "romanization": "benedicere", + "example_sentence_native": "Il sacerdote è venuto a benedicere la casa.", + "example_sentence_english": "The priest came to bless the house.", + "pos": "verb", + "word_frequency": 25231 + }, + { + "word": "bicamerale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bicameral", + "romanization": "bicamerale", + "example_sentence_native": "Il sistema parlamentare italiano è bicamerale.", + "example_sentence_english": "The Italian parliamentary system is bicameral.", + "pos": "adjective", + "word_frequency": 25234 + }, + { + "word": "bilinguismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bilingualism", + "romanization": "bilinguismo", + "example_sentence_native": "Il bilinguismo offre molti vantaggi cognitivi.", + "example_sentence_english": "Bilingualism offers many cognitive advantages.", + "pos": "noun", + "word_frequency": 25235 + }, + { + "word": "boschivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "woody;forested", + "romanization": "boschivo", + "example_sentence_native": "Abbiamo fatto una passeggiata nel sentiero boschivo.", + "example_sentence_english": "We took a walk on the woody path.", + "pos": "adjective", + "word_frequency": 25239 + }, + { + "word": "bruciatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burn (injury)", + "romanization": "bruciatura", + "example_sentence_native": "La bruciatura sulla mano era dolorosa.", + "example_sentence_english": "The burn on her hand was painful.", + "pos": "noun", + "word_frequency": 25243 + }, + { + "word": "campetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small field;small pitch", + "romanization": "campetto", + "example_sentence_native": "I bambini giocavano a calcio nel campetto dietro casa.", + "example_sentence_english": "The children were playing soccer in the small field behind the house.", + "pos": "noun", + "word_frequency": 25248 + }, + { + "word": "capiente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capacious;roomy", + "romanization": "capiente", + "example_sentence_native": "Questa borsa è molto capiente, ci sta tutto.", + "example_sentence_english": "This bag is very capacious, everything fits in it.", + "pos": "adjective", + "word_frequency": 25251 + }, + { + "word": "capigliatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head of hair;hairstyle", + "romanization": "capigliatura", + "example_sentence_native": "Aveva una capigliatura folta e scura.", + "example_sentence_english": "She had a thick and dark head of hair.", + "pos": "noun", + "word_frequency": 25252 + }, + { + "word": "capitolazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "capitulation", + "romanization": "capitolazione", + "example_sentence_native": "La capitolazione della città fu inevitabile.", + "example_sentence_english": "The capitulation of the city was inevitable.", + "pos": "noun", + "word_frequency": 25253 + }, + { + "word": "capoccia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "head (colloquial);boss (colloquial)", + "romanization": "capoccia", + "example_sentence_native": "Il capoccia del gruppo ha deciso di partire.", + "example_sentence_english": "The boss of the group decided to leave.", + "pos": "noun", + "word_frequency": 25254 + }, + { + "word": "carpaccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpaccio", + "romanization": "carpaccio", + "example_sentence_native": "Abbiamo ordinato un carpaccio di manzo come antipasto.", + "example_sentence_english": "We ordered a beef carpaccio as a starter.", + "pos": "noun", + "word_frequency": 25257 + }, + { + "word": "casto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chaste;pure", + "romanization": "casto", + "example_sentence_native": "La sua vita era un esempio di condotta casta.", + "example_sentence_english": "His life was an example of chaste conduct.", + "pos": "adjective", + "word_frequency": 25259 + }, + { + "word": "celebrativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celebratory", + "romanization": "celebrativo", + "example_sentence_native": "Hanno organizzato un evento celebrativo per l'anniversario.", + "example_sentence_english": "They organized a celebratory event for the anniversary.", + "pos": "adjective", + "word_frequency": 25260 + }, + { + "word": "claro", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "clear;light (color)", + "romanization": "claro", + "example_sentence_native": "Il cielo è chiaro oggi.", + "example_sentence_english": "The sky is clear today.", + "pos": "adjective", + "word_frequency": 25266 + }, + { + "word": "coincidente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coinciding;concurrent", + "romanization": "coincidente", + "example_sentence_native": "Le due date erano perfettamente coincidenti.", + "example_sentence_english": "The two dates were perfectly coinciding.", + "pos": "adjective", + "word_frequency": 25267 + }, + { + "word": "compositivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compositional;composite", + "romanization": "compositivo", + "example_sentence_native": "L'analisi compositiva del materiale ha rivelato la sua struttura.", + "example_sentence_english": "The compositional analysis of the material revealed its structure.", + "pos": "adjective", + "word_frequency": 25271 + }, + { + "word": "congressuale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "congressional", + "romanization": "congressuale", + "example_sentence_native": "La sessione congressuale è durata tre giorni.", + "example_sentence_english": "The congressional session lasted three days.", + "pos": "adjective", + "word_frequency": 25273 + }, + { + "word": "contestualizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to contextualize", + "romanization": "contestualizzare", + "example_sentence_native": "È importante contestualizzare le informazioni prima di giudicare.", + "example_sentence_english": "It is important to contextualize the information before judging.", + "pos": "verb", + "word_frequency": 25274 + }, + { + "word": "coorte", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cohort;legion (historical)", + "romanization": "coorte", + "example_sentence_native": "La coorte di studenti si è laureata l'anno scorso.", + "example_sentence_english": "The cohort of students graduated last year.", + "pos": "noun", + "word_frequency": 25276 + }, + { + "word": "copricapo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "headwear;headdress", + "romanization": "copricapo", + "example_sentence_native": "Indossava un elegante copricapo per la cerimonia.", + "example_sentence_english": "She wore an elegant headwear for the ceremony.", + "pos": "noun", + "word_frequency": 25278 + }, + { + "word": "copta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Coptic", + "romanization": "copta", + "example_sentence_native": "La Chiesa copta è una delle più antiche.", + "example_sentence_english": "The Coptic Church is one of the oldest.", + "pos": "adjective", + "word_frequency": 25279 + }, + { + "word": "cortisone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cortisone", + "romanization": "cortisone", + "example_sentence_native": "Il medico mi ha prescritto del cortisone per l'infiammazione.", + "example_sentence_english": "The doctor prescribed me cortisone for the inflammation.", + "pos": "noun", + "word_frequency": 25281 + }, + { + "word": "cotoletta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cutlet", + "romanization": "cotoletta", + "example_sentence_native": "Ho ordinato una cotoletta alla milanese.", + "example_sentence_english": "I ordered a Milanese cutlet.", + "pos": "noun", + "word_frequency": 25282 + }, + { + "word": "criptare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to encrypt", + "romanization": "criptare", + "example_sentence_native": "Dobbiamo criptare i dati per proteggerli.", + "example_sentence_english": "We need to encrypt the data to protect it.", + "pos": "verb", + "word_frequency": 25284 + }, + { + "word": "cugina", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "female cousin", + "romanization": "cugina", + "example_sentence_native": "Mia cugina viene a trovarci questo fine settimana.", + "example_sentence_english": "My cousin is coming to visit us this weekend.", + "pos": "noun", + "word_frequency": 25285 + }, + { + "word": "delocalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "delocalization;offshoring", + "romanization": "delocalizzazione", + "example_sentence_native": "La delocalizzazione ha causato la perdita di molti posti di lavoro.", + "example_sentence_english": "Delocalization has caused the loss of many jobs.", + "pos": "noun", + "word_frequency": 25293 + }, + { + "word": "depenalizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "decriminalization", + "romanization": "depenalizzazione", + "example_sentence_native": "La depenalizzazione di alcune droghe leggere è un tema dibattuto.", + "example_sentence_english": "The decriminalization of some soft drugs is a debated topic.", + "pos": "noun", + "word_frequency": 25294 + }, + { + "word": "dissociazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dissociation", + "romanization": "dissociazione", + "example_sentence_native": "La dissociazione è un meccanismo di difesa psicologico.", + "example_sentence_english": "Dissociation is a psychological defense mechanism.", + "pos": "noun", + "word_frequency": 25299 + }, + { + "word": "eclisse", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eclipse", + "romanization": "eclisse", + "example_sentence_native": "Abbiamo osservato l'eclisse lunare la scorsa notte.", + "example_sentence_english": "We observed the lunar eclipse last night.", + "pos": "noun", + "word_frequency": 25306 + }, + { + "word": "encomiabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "commendable;praiseworthy", + "romanization": "encomiabile", + "example_sentence_native": "Il suo impegno è stato davvero encomiabile.", + "example_sentence_english": "His commitment was truly commendable.", + "pos": "adjective", + "word_frequency": 25309 + }, + { + "word": "estimatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "admirer;estimator", + "romanization": "estimatore", + "example_sentence_native": "È un grande estimatore dell'arte moderna.", + "example_sentence_english": "He is a great admirer of modern art.", + "pos": "noun", + "word_frequency": 25311 + }, + { + "word": "evitabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "avoidable", + "romanization": "evitabile", + "example_sentence_native": "L'incidente era completamente evitabile.", + "example_sentence_english": "The accident was completely avoidable.", + "pos": "adjective", + "word_frequency": 25312 + }, + { + "word": "fagotto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bundle;bassoon", + "romanization": "fagotto", + "example_sentence_native": "Portava un fagotto di vestiti.", + "example_sentence_english": "He was carrying a bundle of clothes.", + "pos": "noun", + "word_frequency": 25314 + }, + { + "word": "feticcio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fetish", + "romanization": "feticcio", + "example_sentence_native": "Per alcune culture, certi oggetti sono considerati feticci.", + "example_sentence_english": "For some cultures, certain objects are considered fetishes.", + "pos": "noun", + "word_frequency": 25316 + }, + { + "word": "fez", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fez", + "romanization": "fez", + "example_sentence_native": "Indossava un fez rosso.", + "example_sentence_english": "He was wearing a red fez.", + "pos": "noun", + "word_frequency": 25317 + }, + { + "word": "filantropo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "philanthropist", + "romanization": "filantropo", + "example_sentence_native": "È conosciuto come un grande filantropo nella comunità.", + "example_sentence_english": "He is known as a great philanthropist in the community.", + "pos": "noun", + "word_frequency": 25318 + }, + { + "word": "flegreo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Phlegraean", + "romanization": "flegreo", + "example_sentence_native": "I Campi Flegrei sono un'area vulcanica vicino a Napoli.", + "example_sentence_english": "The Phlegraean Fields are a volcanic area near Naples.", + "pos": "adjective", + "word_frequency": 25319 + }, + { + "word": "fondello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bottom;base", + "romanization": "fondello", + "example_sentence_native": "Il fondello della bottiglia era rotto.", + "example_sentence_english": "The bottom of the bottle was broken.", + "pos": "noun", + "word_frequency": 25320 + }, + { + "word": "fragore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roar;crash", + "romanization": "fragore", + "example_sentence_native": "Il fragore del tuono ci spaventò.", + "example_sentence_english": "The roar of the thunder scared us.", + "pos": "noun", + "word_frequency": 25322 + }, + { + "word": "fronda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "frond;branch", + "romanization": "fronda", + "example_sentence_native": "Le fronde degli alberi si muovevano al vento.", + "example_sentence_english": "The branches of the trees moved in the wind.", + "pos": "noun", + "word_frequency": 25323 + }, + { + "word": "frontone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pediment", + "romanization": "frontone", + "example_sentence_native": "Il frontone del tempio era decorato con sculture.", + "example_sentence_english": "The pediment of the temple was decorated with sculptures.", + "pos": "noun", + "word_frequency": 25324 + }, + { + "word": "geolocalizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "geolocation", + "romanization": "geolocalizzazione", + "example_sentence_native": "La geolocalizzazione è utile per trovare la tua posizione.", + "example_sentence_english": "Geolocation is useful for finding your location.", + "pos": "noun", + "word_frequency": 25331 + }, + { + "word": "gondola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gondola", + "romanization": "gondola", + "example_sentence_native": "Abbiamo fatto un giro in gondola a Venezia.", + "example_sentence_english": "We took a gondola ride in Venice.", + "pos": "noun", + "word_frequency": 25334 + }, + { + "word": "groviglio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tangle;knot", + "romanization": "groviglio", + "example_sentence_native": "C'era un groviglio di cavi dietro la TV.", + "example_sentence_english": "There was a tangle of cables behind the TV.", + "pos": "noun", + "word_frequency": 25335 + }, + { + "word": "idolatria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "idolatry", + "romanization": "idolatria", + "example_sentence_native": "L'idolatria è la venerazione di idoli.", + "example_sentence_english": "Idolatry is the veneration of idols.", + "pos": "noun", + "word_frequency": 25342 + }, + { + "word": "inciampare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to stumble;to trip", + "romanization": "inciampare", + "example_sentence_native": "Ho rischiato di inciampare sul tappeto.", + "example_sentence_english": "I almost stumbled on the rug.", + "pos": "verb", + "word_frequency": 25343 + }, + { + "word": "inquinare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pollute", + "romanization": "inquinare", + "example_sentence_native": "Le fabbriche possono inquinare l'ambiente.", + "example_sentence_english": "Factories can pollute the environment.", + "pos": "verb", + "word_frequency": 25345 + }, + { + "word": "integralista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fundamentalist", + "romanization": "integralista", + "example_sentence_native": "È considerato un integralista nelle sue idee.", + "example_sentence_english": "He is considered a fundamentalist in his ideas.", + "pos": "noun", + "word_frequency": 25346 + }, + { + "word": "intercorrere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to elapse;to exist between", + "romanization": "intercorrere", + "example_sentence_native": "Tra i due eventi intercorrono molti anni.", + "example_sentence_english": "Many years elapse between the two events.", + "pos": "verb", + "word_frequency": 25347 + }, + { + "word": "intromettere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to meddle;to interfere", + "romanization": "intromettere", + "example_sentence_native": "Non mi piace che la gente si intrometta nei miei affari.", + "example_sentence_english": "I don't like people meddling in my business.", + "pos": "verb", + "word_frequency": 25348 + }, + { + "word": "inumano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inhuman;inhumane", + "romanization": "inumano", + "example_sentence_native": "Le condizioni di vita erano inumane.", + "example_sentence_english": "The living conditions were inhumane.", + "pos": "adjective", + "word_frequency": 25349 + }, + { + "word": "inviolabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inviolable", + "romanization": "inviolabile", + "example_sentence_native": "La sua privacy è un diritto inviolabile.", + "example_sentence_english": "His privacy is an inviolable right.", + "pos": "adjective", + "word_frequency": 25350 + }, + { + "word": "irascibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irritable;quick-tempered", + "romanization": "irascibile", + "example_sentence_native": "È un uomo molto irascibile, si arrabbia facilmente.", + "example_sentence_english": "He is a very irritable man, he gets angry easily.", + "pos": "adjective", + "word_frequency": 25351 + }, + { + "word": "irregolarmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irregularly", + "romanization": "irregolarmente", + "example_sentence_native": "Il suo cuore batteva irregolarmente.", + "example_sentence_english": "His heart was beating irregularly.", + "pos": "adverb", + "word_frequency": 25352 + }, + { + "word": "legatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "binding;ligature", + "romanization": "legatura", + "example_sentence_native": "La legatura del libro era molto antica.", + "example_sentence_english": "The binding of the book was very old.", + "pos": "noun", + "word_frequency": 25359 + }, + { + "word": "litigata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "argument;quarrel", + "romanization": "litigata", + "example_sentence_native": "Hanno avuto una brutta litigata ieri sera.", + "example_sentence_english": "They had a bad argument last night.", + "pos": "noun", + "word_frequency": 25365 + }, + { + "word": "malloppo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "loot;haul", + "romanization": "malloppo", + "example_sentence_native": "I ladri sono fuggiti con un grosso malloppo.", + "example_sentence_english": "The thieves escaped with a large haul.", + "pos": "noun", + "word_frequency": 25372 + }, + { + "word": "mambo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mambo", + "romanization": "mambo", + "example_sentence_native": "Hanno ballato il mambo tutta la notte.", + "example_sentence_english": "They danced the mambo all night.", + "pos": "noun", + "word_frequency": 25373 + }, + { + "word": "mami", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "mommy;mama", + "romanization": "mami", + "example_sentence_native": "\"Mami, posso avere un biscotto?\" chiese il bambino.", + "example_sentence_english": "\"Mommy, can I have a cookie?\" asked the child.", + "pos": "noun", + "word_frequency": 25374 + }, + { + "word": "manomissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tampering;manipulation", + "romanization": "manomissione", + "example_sentence_native": "C'erano segni di manomissione sulla serratura.", + "example_sentence_english": "There were signs of tampering on the lock.", + "pos": "noun", + "word_frequency": 25375 + }, + { + "word": "marcatamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "markedly;distinctly", + "romanization": "marcatamente", + "example_sentence_native": "Il suo stile è marcatamente diverso dagli altri.", + "example_sentence_english": "His style is markedly different from others.", + "pos": "adverb", + "word_frequency": 25376 + }, + { + "word": "marchiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to brand;to mark", + "romanization": "marchiare", + "example_sentence_native": "Hanno marchiato il bestiame con un ferro caldo.", + "example_sentence_english": "They branded the cattle with a hot iron.", + "pos": "verb", + "word_frequency": 25377 + }, + { + "word": "mentecatto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "madman;imbecile", + "romanization": "mentecatto", + "example_sentence_native": "Solo un mentecatto farebbe una cosa del genere.", + "example_sentence_english": "Only a madman would do such a thing.", + "pos": "noun", + "word_frequency": 25382 + }, + { + "word": "meteora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meteor", + "romanization": "meteora", + "example_sentence_native": "Abbiamo visto una meteora cadere nel cielo notturno.", + "example_sentence_english": "We saw a meteor fall in the night sky.", + "pos": "noun", + "word_frequency": 25384 + }, + { + "word": "micron", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "micron", + "romanization": "micron", + "example_sentence_native": "Un capello umano ha un diametro di circa 50 micron.", + "example_sentence_english": "A human hair has a diameter of about 50 microns.", + "pos": "noun", + "word_frequency": 25386 + }, + { + "word": "mineralogia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mineralogy", + "romanization": "mineralogia", + "example_sentence_native": "Ha studiato mineralogia all'università.", + "example_sentence_english": "She studied mineralogy at university.", + "pos": "noun", + "word_frequency": 25388 + }, + { + "word": "mistificazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "mystification;deception", + "romanization": "mistificazione", + "example_sentence_native": "La sua storia era una completa mistificazione.", + "example_sentence_english": "His story was a complete mystification.", + "pos": "noun", + "word_frequency": 25389 + }, + { + "word": "moldavo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Moldovan", + "romanization": "moldavo", + "example_sentence_native": "Parla fluentemente il moldavo.", + "example_sentence_english": "He speaks Moldovan fluently.", + "pos": "adjective", + "word_frequency": 25392 + }, + { + "word": "monopattino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "scooter (kick scooter)", + "romanization": "monopattino", + "example_sentence_native": "Il bambino andava in giro con il suo nuovo monopattino.", + "example_sentence_english": "The child was riding around on his new scooter.", + "pos": "noun", + "word_frequency": 25394 + }, + { + "word": "moscovita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Muscovite", + "romanization": "moscovita", + "example_sentence_native": "È una moscovita di nascita.", + "example_sentence_english": "She is a Muscovite by birth.", + "pos": "noun", + "word_frequency": 25396 + }, + { + "word": "multietnico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multi-ethnic", + "romanization": "multietnico", + "example_sentence_native": "La città è diventata un centro multietnico.", + "example_sentence_english": "The city has become a multi-ethnic center.", + "pos": "adjective", + "word_frequency": 25397 + }, + { + "word": "multitasking", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multitasking", + "romanization": "multitasking", + "example_sentence_native": "È una persona molto multitasking, riesce a fare tante cose contemporaneamente.", + "example_sentence_english": "She is a very multitasking person, she can do many things at once.", + "pos": "adjective", + "word_frequency": 25398 + }, + { + "word": "naturalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "naturalism", + "romanization": "naturalismo", + "example_sentence_native": "Il naturalismo è stato un movimento artistico e letterario.", + "example_sentence_english": "Naturalism was an artistic and literary movement.", + "pos": "noun", + "word_frequency": 25401 + }, + { + "word": "obliquo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oblique;slanted", + "romanization": "obliquo", + "example_sentence_native": "La luce entrava da un angolo obliquo.", + "example_sentence_english": "The light entered from an oblique angle.", + "pos": "adjective", + "word_frequency": 25406 + }, + { + "word": "ocra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ochre", + "romanization": "ocra", + "example_sentence_native": "Ha dipinto la parete con un colore ocra.", + "example_sentence_english": "He painted the wall with an ochre color.", + "pos": "noun", + "word_frequency": 25407 + }, + { + "word": "origano", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "oregano", + "romanization": "origano", + "example_sentence_native": "Ho messo un po' di origano sulla pizza.", + "example_sentence_english": "I put some oregano on the pizza.", + "pos": "noun", + "word_frequency": 25408 + }, + { + "word": "ossessivamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsessively", + "romanization": "ossessivamente", + "example_sentence_native": "Studiava ossessivamente per l'esame.", + "example_sentence_english": "He studied obsessively for the exam.", + "pos": "adverb", + "word_frequency": 25409 + }, + { + "word": "ostinatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stubbornly;obstinately", + "romanization": "ostinatamente", + "example_sentence_native": "Ha continuato ostinatamente a lavorare nonostante la stanchezza.", + "example_sentence_english": "He stubbornly continued to work despite the tiredness.", + "pos": "adverb", + "word_frequency": 25410 + }, + { + "word": "paralimpiade", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Paralympics (singular event)", + "romanization": "paralimpiade", + "example_sentence_native": "Ha vinto una medaglia alle Paralimpiadi.", + "example_sentence_english": "He won a medal at the Paralympics.", + "pos": "noun", + "word_frequency": 25411 + }, + { + "word": "partecipativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participatory", + "romanization": "partecipativo", + "example_sentence_native": "Hanno adottato un approccio partecipativo al progetto.", + "example_sentence_english": "They adopted a participatory approach to the project.", + "pos": "adjective", + "word_frequency": 25412 + }, + { + "word": "pensabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "conceivable;thinkable", + "romanization": "pensabile", + "example_sentence_native": "Non era pensabile che potesse succedere.", + "example_sentence_english": "It was not conceivable that it could happen.", + "pos": "adjective", + "word_frequency": 25413 + }, + { + "word": "perimetrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perimeter;peripheral", + "romanization": "perimetrale", + "example_sentence_native": "Hanno costruito un muro perimetrale intorno alla proprietà.", + "example_sentence_english": "They built a perimeter wall around the property.", + "pos": "adjective", + "word_frequency": 25414 + }, + { + "word": "picciolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "petiole (leaf stalk)", + "romanization": "picciolo", + "example_sentence_native": "Il picciolo collega la foglia al fusto.", + "example_sentence_english": "The petiole connects the leaf to the stem.", + "pos": "noun", + "word_frequency": 25416 + }, + { + "word": "ponce", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "punch (drink)", + "romanization": "ponce", + "example_sentence_native": "Ha ordinato un ponce caldo al bar.", + "example_sentence_english": "He ordered a hot punch at the bar.", + "pos": "noun", + "word_frequency": 25421 + }, + { + "word": "portoricano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Puerto Rican", + "romanization": "portoricano", + "example_sentence_native": "La musica portoricana è molto vivace.", + "example_sentence_english": "Puerto Rican music is very lively.", + "pos": "adjective", + "word_frequency": 25423 + }, + { + "word": "protettorato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "protectorate", + "romanization": "protettorato", + "example_sentence_native": "Il paese era sotto un protettorato straniero.", + "example_sentence_english": "The country was under a foreign protectorate.", + "pos": "noun", + "word_frequency": 25424 + }, + { + "word": "protrarre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to prolong;to extend", + "romanization": "protrarre", + "example_sentence_native": "Hanno deciso di protrarre la riunione.", + "example_sentence_english": "They decided to prolong the meeting.", + "pos": "verb", + "word_frequency": 25425 + }, + { + "word": "provvidenziale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "providential;timely", + "romanization": "provvidenziale", + "example_sentence_native": "Il suo aiuto è stato provvidenziale.", + "example_sentence_english": "His help was providential.", + "pos": "adjective", + "word_frequency": 25426 + }, + { + "word": "puntatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pointer;cursor;aimer", + "romanization": "puntatore", + "example_sentence_native": "Muovi il puntatore sullo schermo.", + "example_sentence_english": "Move the cursor on the screen.", + "pos": "noun", + "word_frequency": 25427 + }, + { + "word": "refrigerante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cooling;refrigerant", + "romanization": "refrigerante", + "example_sentence_native": "Il sistema di aria condizionata usa un liquido refrigerante.", + "example_sentence_english": "The air conditioning system uses a cooling liquid.", + "pos": "adjective", + "word_frequency": 25430 + }, + { + "word": "refuso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "typo;misprint", + "romanization": "refuso", + "example_sentence_native": "Ho trovato un refuso nel testo.", + "example_sentence_english": "I found a typo in the text.", + "pos": "noun", + "word_frequency": 25431 + }, + { + "word": "retrogrado", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retrograde;backward-looking", + "romanization": "retrogrado", + "example_sentence_native": "Le sue idee sono considerate retrogrado.", + "example_sentence_english": "His ideas are considered retrograde.", + "pos": "adjective", + "word_frequency": 25432 + }, + { + "word": "retroterra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hinterland;background", + "romanization": "retroterra", + "example_sentence_native": "La città ha un vasto retroterra agricolo.", + "example_sentence_english": "The city has a vast agricultural hinterland.", + "pos": "noun", + "word_frequency": 25433 + }, + { + "word": "riccone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "very rich person;big shot (informal)", + "romanization": "riccone", + "example_sentence_native": "Quel riccone ha comprato una villa enorme.", + "example_sentence_english": "That rich person bought a huge villa.", + "pos": "noun", + "word_frequency": 25434 + }, + { + "word": "ripartenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "restart;new beginning;departure", + "romanization": "ripartenza", + "example_sentence_native": "La ripartenza dell'economia è lenta.", + "example_sentence_english": "The restart of the economy is slow.", + "pos": "noun", + "word_frequency": 25435 + }, + { + "word": "risvegliarsi", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to wake up (oneself);to awaken", + "romanization": "risvegliarsi", + "example_sentence_native": "Mi sono risvegliato presto stamattina.", + "example_sentence_english": "I woke up early this morning.", + "pos": "verb", + "word_frequency": 25436 + }, + { + "word": "rupia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "rupee", + "romanization": "rupia", + "example_sentence_native": "La rupia indiana è la valuta ufficiale dell'India.", + "example_sentence_english": "The Indian rupee is the official currency of India.", + "pos": "noun", + "word_frequency": 25441 + }, + { + "word": "ruta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rue (plant)", + "romanization": "ruta", + "example_sentence_native": "La ruta è una pianta aromatica usata in cucina e in medicina tradizionale.", + "example_sentence_english": "Rue is an aromatic plant used in cooking and traditional medicine.", + "pos": "noun", + "word_frequency": 25442 + }, + { + "word": "sadismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sadism", + "romanization": "sadismo", + "example_sentence_native": "Il sadismo è un disturbo psicologico caratterizzato dal piacere nel causare dolore agli altri.", + "example_sentence_english": "Sadism is a psychological disorder characterized by pleasure in causing pain to others.", + "pos": "noun", + "word_frequency": 25443 + }, + { + "word": "salon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "salon", + "romanization": "salon", + "example_sentence_native": "Ha aperto un nuovo salon di bellezza in centro.", + "example_sentence_english": "She opened a new beauty salon downtown.", + "pos": "noun", + "word_frequency": 25444 + }, + { + "word": "salpare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to set sail", + "romanization": "salpare", + "example_sentence_native": "La nave salperà domani mattina all'alba.", + "example_sentence_english": "The ship will set sail tomorrow morning at dawn.", + "pos": "verb", + "word_frequency": 25445 + }, + { + "word": "schiavista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slaver;slave owner", + "romanization": "schiavista", + "example_sentence_native": "Gli schiavisti erano figure centrali nel commercio triangolare.", + "example_sentence_english": "Slavers were central figures in the triangular trade.", + "pos": "noun", + "word_frequency": 25450 + }, + { + "word": "schifosamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disgustingly", + "romanization": "schifosamente", + "example_sentence_native": "Il cibo era schifosamente cattivo.", + "example_sentence_english": "The food was disgustingly bad.", + "pos": "adverb", + "word_frequency": 25451 + }, + { + "word": "schizofrenico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "schizophrenic", + "romanization": "schizofrenico", + "example_sentence_native": "Il paziente è stato diagnosticato come schizofrenico.", + "example_sentence_english": "The patient was diagnosed as schizophrenic.", + "pos": "adjective", + "word_frequency": 25452 + }, + { + "word": "sciistico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "skiing (adj.)", + "romanization": "sciistico", + "example_sentence_native": "La stagione sciistica inizia a dicembre.", + "example_sentence_english": "The skiing season starts in December.", + "pos": "adjective", + "word_frequency": 25453 + }, + { + "word": "secchezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dryness", + "romanization": "secchezza", + "example_sentence_native": "La secchezza della pelle può essere un problema in inverno.", + "example_sentence_english": "Skin dryness can be a problem in winter.", + "pos": "noun", + "word_frequency": 25455 + }, + { + "word": "seduttore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "seducer", + "romanization": "seduttore", + "example_sentence_native": "Era noto in città come un grande seduttore.", + "example_sentence_english": "He was known in the city as a great seducer.", + "pos": "noun", + "word_frequency": 25456 + }, + { + "word": "sfigurato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disfigured", + "romanization": "sfigurato", + "example_sentence_native": "Dopo l'incidente, il suo volto era sfigurato.", + "example_sentence_english": "After the accident, his face was disfigured.", + "pos": "adjective", + "word_frequency": 25460 + }, + { + "word": "sfinito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exhausted;worn out", + "romanization": "sfinito", + "example_sentence_native": "Dopo la lunga camminata, ero completamente sfinito.", + "example_sentence_english": "After the long walk, I was completely exhausted.", + "pos": "adjective", + "word_frequency": 25461 + }, + { + "word": "sganciato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "uncoupled;detached;released", + "romanization": "sganciato", + "example_sentence_native": "Il vagone è stato sganciato dal treno principale.", + "example_sentence_english": "The carriage was uncoupled from the main train.", + "pos": "adjective", + "word_frequency": 25462 + }, + { + "word": "sorellastra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stepsister", + "romanization": "sorellastra", + "example_sentence_native": "Mia sorellastra è più grande di me di due anni.", + "example_sentence_english": "My stepsister is two years older than me.", + "pos": "noun", + "word_frequency": 25467 + }, + { + "word": "sorrisetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little smile;smirk", + "romanization": "sorrisetto", + "example_sentence_native": "Mi ha rivolto un sorrisetto enigmatico.", + "example_sentence_english": "He gave me an enigmatic little smile.", + "pos": "noun", + "word_frequency": 25468 + }, + { + "word": "sorvegliato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "monitored;supervised", + "romanization": "sorvegliato", + "example_sentence_native": "Il prigioniero era costantemente sorvegliato.", + "example_sentence_english": "The prisoner was constantly monitored.", + "pos": "adjective", + "word_frequency": 25469 + }, + { + "word": "spalancare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to throw open;to open wide", + "romanization": "spalancare", + "example_sentence_native": "Ha spalancato la finestra per far entrare aria fresca.", + "example_sentence_english": "She threw open the window to let in fresh air.", + "pos": "verb", + "word_frequency": 25470 + }, + { + "word": "spola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "shuttle;spool", + "romanization": "spola", + "example_sentence_native": "La spola si muove rapidamente nel telaio.", + "example_sentence_english": "The shuttle moves rapidly in the loom.", + "pos": "noun", + "word_frequency": 25472 + }, + { + "word": "stanzetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small room", + "romanization": "stanzetta", + "example_sentence_native": "C'è una piccola stanzetta sul retro della casa.", + "example_sentence_english": "There's a small room at the back of the house.", + "pos": "noun", + "word_frequency": 25474 + }, + { + "word": "strutturazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "structuring;structuring process", + "romanization": "strutturazione", + "example_sentence_native": "La strutturazione del progetto richiede tempo e pianificazione.", + "example_sentence_english": "The structuring of the project requires time and planning.", + "pos": "noun", + "word_frequency": 25475 + }, + { + "word": "svincolato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unbound;released;free agent", + "romanization": "svincolato", + "example_sentence_native": "Il giocatore è diventato svincolato alla fine della stagione.", + "example_sentence_english": "The player became a free agent at the end of the season.", + "pos": "adjective", + "word_frequency": 25477 + }, + { + "word": "tecno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "techno", + "romanization": "tecno", + "example_sentence_native": "La musica tecno è molto popolare tra i giovani.", + "example_sentence_english": "Techno music is very popular among young people.", + "pos": "adjective", + "word_frequency": 25480 + }, + { + "word": "telematico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "telematic", + "romanization": "telematico", + "example_sentence_native": "Abbiamo inviato la domanda per via telematica.", + "example_sentence_english": "We sent the application via telematic means.", + "pos": "adjective", + "word_frequency": 25481 + }, + { + "word": "tendone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "large tent;marquee", + "romanization": "tendone", + "example_sentence_native": "Hanno allestito un grande tendone per la festa.", + "example_sentence_english": "They set up a large tent for the party.", + "pos": "noun", + "word_frequency": 25482 + }, + { + "word": "tettonica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tectonics", + "romanization": "tettonica", + "example_sentence_native": "La tettonica a placche spiega i terremoti.", + "example_sentence_english": "Plate tectonics explains earthquakes.", + "pos": "noun", + "word_frequency": 25485 + }, + { + "word": "timoniere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "helmsman;coxswain", + "romanization": "timoniere", + "example_sentence_native": "Il timoniere ha mantenuto la rotta durante la tempesta.", + "example_sentence_english": "The helmsman maintained the course during the storm.", + "pos": "noun", + "word_frequency": 25487 + }, + { + "word": "trachea", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trachea;windpipe", + "romanization": "trachea", + "example_sentence_native": "La trachea è un organo fondamentale per la respirazione.", + "example_sentence_english": "The trachea is a fundamental organ for breathing.", + "pos": "noun", + "word_frequency": 25490 + }, + { + "word": "trainato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "towed;pulled", + "romanization": "trainato", + "example_sentence_native": "Il rimorchio trainato era pieno di attrezzi.", + "example_sentence_english": "The towed trailer was full of tools.", + "pos": "adjective", + "word_frequency": 25491 + }, + { + "word": "trasversalmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "transversally;across", + "romanization": "trasversalmente", + "example_sentence_native": "La strada attraversa il campo trasversalmente.", + "example_sentence_english": "The road crosses the field transversally.", + "pos": "adverb", + "word_frequency": 25493 + }, + { + "word": "tronista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "participant in a dating show (specifically \"Uomini e Donne\")", + "romanization": "tronista", + "example_sentence_native": "La tronista ha scelto il suo corteggiatore preferito.", + "example_sentence_english": "The \"tronista\" chose her favorite suitor.", + "pos": "noun", + "word_frequency": 25494 + }, + { + "word": "tropico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tropic", + "romanization": "tropico", + "example_sentence_native": "Vivono in una regione vicina al tropico.", + "example_sentence_english": "They live in a region near the tropic.", + "pos": "noun", + "word_frequency": 25495 + }, + { + "word": "tubetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small tube (e.g.;of toothpaste;paint)", + "romanization": "tubetto", + "example_sentence_native": "Ho comprato un tubetto di dentifricio nuovo.", + "example_sentence_english": "I bought a new tube of toothpaste.", + "pos": "noun", + "word_frequency": 25496 + }, + { + "word": "uterino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "uterine", + "romanization": "uterino", + "example_sentence_native": "Ha avuto un'emorragia uterina.", + "example_sentence_english": "She had a uterine hemorrhage.", + "pos": "adjective", + "word_frequency": 25499 + }, + { + "word": "valorizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valued;enhanced;exploited (in a positive sense)", + "romanization": "valorizzato", + "example_sentence_native": "Il suo talento è stato finalmente valorizzato.", + "example_sentence_english": "His talent has finally been valued/enhanced.", + "pos": "adjective", + "word_frequency": 25501 + }, + { + "word": "vandalico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vandalic;destructive", + "romanization": "vandalico", + "example_sentence_native": "Hanno commesso atti vandalici contro la proprietà.", + "example_sentence_english": "They committed vandalic acts against the property.", + "pos": "adjective", + "word_frequency": 25502 + }, + { + "word": "vegliare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to watch over;to stay awake", + "romanization": "vegliare", + "example_sentence_native": "La madre vegliava sul suo bambino malato.", + "example_sentence_english": "The mother watched over her sick child.", + "pos": "verb", + "word_frequency": 25503 + }, + { + "word": "vestaglia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bathrobe;dressing gown", + "romanization": "vestaglia", + "example_sentence_native": "Indossava una comoda vestaglia dopo la doccia.", + "example_sentence_english": "She wore a comfortable bathrobe after the shower.", + "pos": "noun", + "word_frequency": 25504 + }, + { + "word": "viaggetto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "short trip;little journey", + "romanization": "viaggetto", + "example_sentence_native": "Abbiamo fatto un bel viaggetto in montagna.", + "example_sentence_english": "We took a nice short trip to the mountains.", + "pos": "noun", + "word_frequency": 25505 + }, + { + "word": "zuccherino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sugary;sweetish", + "romanization": "zuccherino", + "example_sentence_native": "Il caffè era troppo zuccherino per i miei gusti.", + "example_sentence_english": "The coffee was too sugary for my taste.", + "pos": "adjective", + "word_frequency": 25513 + }, + { + "word": "acaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mite", + "romanization": "acaro", + "example_sentence_native": "Gli acari della polvere possono causare allergie.", + "example_sentence_english": "Dust mites can cause allergies.", + "pos": "noun", + "word_frequency": 25516 + }, + { + "word": "adeguatezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adequacy;suitability", + "romanization": "adeguatezza", + "example_sentence_native": "Dobbiamo valutare l'adeguatezza delle misure proposte.", + "example_sentence_english": "We need to evaluate the adequacy of the proposed measures.", + "pos": "noun", + "word_frequency": 25517 + }, + { + "word": "aerodinamica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "aerodynamics", + "romanization": "aerodinamica", + "example_sentence_native": "L'aerodinamica è fondamentale nella progettazione degli aerei.", + "example_sentence_english": "Aerodynamics is fundamental in aircraft design.", + "pos": "noun", + "word_frequency": 25519 + }, + { + "word": "aggiudicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "awarded;adjudicated", + "romanization": "aggiudicato", + "example_sentence_native": "Il premio è stato aggiudicato al miglior studente.", + "example_sentence_english": "The prize was awarded to the best student.", + "pos": "adjective", + "word_frequency": 25520 + }, + { + "word": "albergatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hotelier;hotel owner", + "romanization": "albergatore", + "example_sentence_native": "L'albergatore ci ha accolto con un sorriso.", + "example_sentence_english": "The hotelier welcomed us with a smile.", + "pos": "noun", + "word_frequency": 25523 + }, + { + "word": "ammirato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "admired;amazed", + "romanization": "ammirato", + "example_sentence_native": "Era ammirato dalla sua bravura.", + "example_sentence_english": "He was amazed by her skill.", + "pos": "adjective", + "word_frequency": 25526 + }, + { + "word": "annotato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "annotated;noted", + "romanization": "annotato", + "example_sentence_native": "Il testo era annotato con molte note a margine.", + "example_sentence_english": "The text was annotated with many marginal notes.", + "pos": "adjective", + "word_frequency": 25528 + }, + { + "word": "antagonismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antagonism;rivalry", + "romanization": "antagonismo", + "example_sentence_native": "C'era un forte antagonismo tra le due squadre.", + "example_sentence_english": "There was a strong antagonism between the two teams.", + "pos": "noun", + "word_frequency": 25529 + }, + { + "word": "antiquato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "antiquated;old-fashioned", + "romanization": "antiquato", + "example_sentence_native": "Il suo telefono sembrava antiquato rispetto ai modelli attuali.", + "example_sentence_english": "His phone seemed antiquated compared to current models.", + "pos": "adjective", + "word_frequency": 25530 + }, + { + "word": "appiccare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to set (fire);to hang (rare)", + "romanization": "appiccare", + "example_sentence_native": "Hanno cercato di appiccare il fuoco al bosco.", + "example_sentence_english": "They tried to set fire to the forest.", + "pos": "verb", + "word_frequency": 25531 + }, + { + "word": "aragosta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lobster", + "romanization": "aragosta", + "example_sentence_native": "Abbiamo mangiato un'aragosta deliziosa al ristorante.", + "example_sentence_english": "We ate a delicious lobster at the restaurant.", + "pos": "noun", + "word_frequency": 25533 + }, + { + "word": "architrave", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "architrave;lintel", + "romanization": "architrave", + "example_sentence_native": "L'architrave della porta era decorato con sculture.", + "example_sentence_english": "The architrave of the door was decorated with sculptures.", + "pos": "noun", + "word_frequency": 25534 + }, + { + "word": "arrangiarsi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to manage;to get by;to make do", + "romanization": "arrangiarsi", + "example_sentence_native": "Non preoccuparti, mi arrangio sempre.", + "example_sentence_english": "Don't worry, I always manage.", + "pos": "verb", + "word_frequency": 25535 + }, + { + "word": "arretramento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retreat;setback;regression", + "romanization": "arretramento", + "example_sentence_native": "L'arretramento delle truppe fu strategico.", + "example_sentence_english": "The retreat of the troops was strategic.", + "pos": "noun", + "word_frequency": 25536 + }, + { + "word": "assetato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirsty", + "romanization": "assetato", + "example_sentence_native": "Sono assetato, posso avere un bicchiere d'acqua?", + "example_sentence_english": "I am thirsty, can I have a glass of water?", + "pos": "adjective", + "word_frequency": 25537 + }, + { + "word": "attenuazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attenuation;mitigation", + "romanization": "attenuazione", + "example_sentence_native": "Si è notata un'attenuazione del rumore.", + "example_sentence_english": "An attenuation of the noise was noted.", + "pos": "noun", + "word_frequency": 25538 + }, + { + "word": "banalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "trivially;simply;banally", + "romanization": "banalmente", + "example_sentence_native": "Banalmente, la soluzione era sotto i nostri occhi.", + "example_sentence_english": "Trivially, the solution was right before our eyes.", + "pos": "adverb", + "word_frequency": 25541 + }, + { + "word": "bendato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "blindfolded;bandaged", + "romanization": "bendato", + "example_sentence_native": "Il paziente aveva l'occhio bendato.", + "example_sentence_english": "The patient had his eye bandaged.", + "pos": "adjective", + "word_frequency": 25545 + }, + { + "word": "bilanciere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "barbell;balance wheel", + "romanization": "bilanciere", + "example_sentence_native": "Ha sollevato il bilanciere con facilità.", + "example_sentence_english": "He lifted the barbell with ease.", + "pos": "noun", + "word_frequency": 25546 + }, + { + "word": "bipolarismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bipolarism;two-party system", + "romanization": "bipolarismo", + "example_sentence_native": "Il bipolarismo politico è una caratteristica di molti sistemi democratici.", + "example_sentence_english": "Political bipolarism is a characteristic of many democratic systems.", + "pos": "noun", + "word_frequency": 25547 + }, + { + "word": "blando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mild;bland;gentle", + "romanization": "blando", + "example_sentence_native": "Ha avuto una reazione blanda al farmaco.", + "example_sentence_english": "He had a mild reaction to the drug.", + "pos": "adjective", + "word_frequency": 25548 + }, + { + "word": "borghetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small village;hamlet", + "romanization": "borghetto", + "example_sentence_native": "Viviamo in un grazioso borghetto di montagna.", + "example_sentence_english": "We live in a charming small mountain village.", + "pos": "noun", + "word_frequency": 25551 + }, + { + "word": "buonuscita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "severance pay;golden handshake", + "romanization": "buonuscita", + "example_sentence_native": "Ha ricevuto una cospicua buonuscita dopo anni di servizio.", + "example_sentence_english": "He received a substantial severance pay after years of service.", + "pos": "noun", + "word_frequency": 25555 + }, + { + "word": "caciara", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "racket;din;mess (informal)", + "romanization": "caciara", + "example_sentence_native": "I bambini facevano una gran caciara in giardino.", + "example_sentence_english": "The children were making a big racket in the garden.", + "pos": "noun", + "word_frequency": 25556 + }, + { + "word": "camoscio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "chamois;suede", + "romanization": "camoscio", + "example_sentence_native": "Ho comprato un paio di guanti di camoscio.", + "example_sentence_english": "I bought a pair of suede gloves.", + "pos": "noun", + "word_frequency": 25558 + }, + { + "word": "candidamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "candidly;frankly", + "romanization": "candidamente", + "example_sentence_native": "Ha risposto candidamente a tutte le domande.", + "example_sentence_english": "He answered candidly to all the questions.", + "pos": "adverb", + "word_frequency": 25560 + }, + { + "word": "casina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small house;little house", + "romanization": "casina", + "example_sentence_native": "Hanno comprato una graziosa casina in campagna.", + "example_sentence_english": "They bought a lovely small house in the countryside.", + "pos": "noun", + "word_frequency": 25567 + }, + { + "word": "catino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "basin;washbasin", + "romanization": "catino", + "example_sentence_native": "Riempì il catino d'acqua calda per lavarsi.", + "example_sentence_english": "He filled the basin with hot water to wash himself.", + "pos": "noun", + "word_frequency": 25568 + }, + { + "word": "cetra", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "zither;cithara", + "romanization": "cetra", + "example_sentence_native": "Il suono della cetra era melodioso.", + "example_sentence_english": "The sound of the zither was melodious.", + "pos": "noun", + "word_frequency": 25574 + }, + { + "word": "cibernetica", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cybernetics", + "romanization": "cibernetica", + "example_sentence_native": "La cibernetica studia i sistemi di controllo e comunicazione.", + "example_sentence_english": "Cybernetics studies control and communication systems.", + "pos": "noun", + "word_frequency": 25576 + }, + { + "word": "cifratura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "encryption;ciphering", + "romanization": "cifratura", + "example_sentence_native": "La cifratura dei dati è essenziale per la sicurezza.", + "example_sentence_english": "Data encryption is essential for security.", + "pos": "noun", + "word_frequency": 25577 + }, + { + "word": "circolatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "circulatory", + "romanization": "circolatorio", + "example_sentence_native": "Il sistema circolatorio è vitale per il corpo umano.", + "example_sentence_english": "The circulatory system is vital for the human body.", + "pos": "adjective", + "word_frequency": 25579 + }, + { + "word": "clavicola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "collarbone;clavicle", + "romanization": "clavicola", + "example_sentence_native": "Si è rotto la clavicola cadendo dalla bicicletta.", + "example_sentence_english": "He broke his collarbone falling off his bicycle.", + "pos": "noun", + "word_frequency": 25581 + }, + { + "word": "clientelare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clientelist;clientelistic", + "romanization": "clientelare", + "example_sentence_native": "Il sistema clientelare è un problema in molte democrazie.", + "example_sentence_english": "The clientelist system is a problem in many democracies.", + "pos": "adjective", + "word_frequency": 25582 + }, + { + "word": "compilato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "compiled;filled out (form)", + "romanization": "compilato", + "example_sentence_native": "Il modulo deve essere compilato in ogni sua parte.", + "example_sentence_english": "The form must be filled out in its entirety.", + "pos": "adjective", + "word_frequency": 25588 + }, + { + "word": "compromissione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compromise (negative sense);impairment;damage", + "romanization": "compromissione", + "example_sentence_native": "C'è stata una compromissione dei dati personali.", + "example_sentence_english": "There was a compromise of personal data.", + "pos": "noun", + "word_frequency": 25589 + }, + { + "word": "congeniale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "congenial;suitable;fitting", + "romanization": "congeniale", + "example_sentence_native": "Ha trovato un ambiente di lavoro molto congeniale.", + "example_sentence_english": "He found a very congenial work environment.", + "pos": "adjective", + "word_frequency": 25591 + }, + { + "word": "coronavirus", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "coronavirus", + "romanization": "coronavirus", + "example_sentence_native": "Il coronavirus ha avuto un impatto globale.", + "example_sentence_english": "The coronavirus had a global impact.", + "pos": "noun", + "word_frequency": 25593 + }, + { + "word": "cuffietta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small cap;shower cap;earbud", + "romanization": "cuffietta", + "example_sentence_native": "Ho dimenticato la mia cuffietta per la doccia.", + "example_sentence_english": "I forgot my shower cap.", + "pos": "noun", + "word_frequency": 25600 + }, + { + "word": "deck", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deck (of cards;ship's deck)", + "romanization": "deck", + "example_sentence_native": "Mescola il deck di carte.", + "example_sentence_english": "Shuffle the deck of cards.", + "pos": "noun", + "word_frequency": 25604 + }, + { + "word": "deforme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deformed;misshapen", + "romanization": "deforme", + "example_sentence_native": "L'oggetto era completamente deforme dopo l'incidente.", + "example_sentence_english": "The object was completely deformed after the accident.", + "pos": "adjective", + "word_frequency": 25605 + }, + { + "word": "deleterio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "deleterious;harmful", + "romanization": "deleterio", + "example_sentence_native": "Il fumo ha un effetto deleterio sulla salute.", + "example_sentence_english": "Smoking has a deleterious effect on health.", + "pos": "adjective", + "word_frequency": 25606 + }, + { + "word": "delucidazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clarification;explanation", + "romanization": "delucidazione", + "example_sentence_native": "Chiedo una delucidazione su questo punto.", + "example_sentence_english": "I ask for a clarification on this point.", + "pos": "noun", + "word_frequency": 25607 + }, + { + "word": "democratizzazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "democratization", + "romanization": "democratizzazione", + "example_sentence_native": "Il processo di democratizzazione è lento ma necessario.", + "example_sentence_english": "The process of democratization is slow but necessary.", + "pos": "noun", + "word_frequency": 25608 + }, + { + "word": "detergente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "detergent (as in cleaning agent);cleansing (adjective)", + "romanization": "detergente", + "example_sentence_native": "Questo sapone ha un'azione detergente efficace.", + "example_sentence_english": "This soap has an effective cleansing action.", + "pos": "adjective", + "word_frequency": 25609 + }, + { + "word": "discontinuo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "discontinuous;intermittent", + "romanization": "discontinuo", + "example_sentence_native": "Il segnale era discontinuo a causa del maltempo.", + "example_sentence_english": "The signal was intermittent due to bad weather.", + "pos": "adjective", + "word_frequency": 25611 + }, + { + "word": "disorganizzazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disorganization", + "romanization": "disorganizzazione", + "example_sentence_native": "La disorganizzazione ha causato molti problemi.", + "example_sentence_english": "The disorganization caused many problems.", + "pos": "noun", + "word_frequency": 25612 + }, + { + "word": "dispotismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despotism", + "romanization": "dispotismo", + "example_sentence_native": "Il dispotismo è una forma di governo autoritaria.", + "example_sentence_english": "Despotism is an authoritarian form of government.", + "pos": "noun", + "word_frequency": 25613 + }, + { + "word": "disprezzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "despised;scorned", + "romanization": "disprezzato", + "example_sentence_native": "Si sentiva disprezzato da tutti.", + "example_sentence_english": "He felt despised by everyone.", + "pos": "adjective", + "word_frequency": 25614 + }, + { + "word": "dominanza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dominance", + "romanization": "dominanza", + "example_sentence_native": "La dominanza di una specie può alterare l'ecosistema.", + "example_sentence_english": "The dominance of one species can alter the ecosystem.", + "pos": "noun", + "word_frequency": 25616 + }, + { + "word": "dottrinale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "doctrinal", + "romanization": "dottrinale", + "example_sentence_native": "La questione ha un aspetto dottrinale importante.", + "example_sentence_english": "The issue has an important doctrinal aspect.", + "pos": "adjective", + "word_frequency": 25618 + }, + { + "word": "drappo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drape;cloth;banner", + "romanization": "drappo", + "example_sentence_native": "Un drappo rosso copriva il tavolo.", + "example_sentence_english": "A red drape covered the table.", + "pos": "noun", + "word_frequency": 25619 + }, + { + "word": "ecstasy", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ecstasy (drug or state)", + "romanization": "ecstasy", + "example_sentence_native": "Era in uno stato di pura ecstasy.", + "example_sentence_english": "He was in a state of pure ecstasy.", + "pos": "noun", + "word_frequency": 25624 + }, + { + "word": "episcopato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "episcopate;bishopric", + "romanization": "episcopato", + "example_sentence_native": "L'episcopato si riunirà la prossima settimana.", + "example_sentence_english": "The episcopate will meet next week.", + "pos": "noun", + "word_frequency": 25629 + }, + { + "word": "esplicativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "explanatory", + "romanization": "esplicativo", + "example_sentence_native": "Il testo forniva una nota esplicativa.", + "example_sentence_english": "The text provided an explanatory note.", + "pos": "adjective", + "word_frequency": 25630 + }, + { + "word": "estrogeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "estrogen", + "romanization": "estrogeno", + "example_sentence_native": "Gli estrogeni sono ormoni importanti.", + "example_sentence_english": "Estrogens are important hormones.", + "pos": "noun", + "word_frequency": 25631 + }, + { + "word": "esulare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to go beyond;to be outside the scope of", + "romanization": "esulare", + "example_sentence_native": "Questo argomento esula dalle nostre competenze.", + "example_sentence_english": "This topic goes beyond our expertise.", + "pos": "verb", + "word_frequency": 25632 + }, + { + "word": "etichettato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "labeled;tagged", + "romanization": "etichettato", + "example_sentence_native": "Il prodotto era chiaramente etichettato.", + "example_sentence_english": "The product was clearly labeled.", + "pos": "adjective", + "word_frequency": 25634 + }, + { + "word": "falegnameria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpentry;joinery;woodworking shop", + "romanization": "falegnameria", + "example_sentence_native": "Ha imparato il mestiere in una falegnameria.", + "example_sentence_english": "He learned the trade in a carpentry shop.", + "pos": "noun", + "word_frequency": 25635 + }, + { + "word": "florido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flourishing;thriving;florid", + "romanization": "florido", + "example_sentence_native": "L'economia era in un periodo florido.", + "example_sentence_english": "The economy was in a flourishing period.", + "pos": "adjective", + "word_frequency": 25637 + }, + { + "word": "fruttuoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fruitful;productive", + "romanization": "fruttuoso", + "example_sentence_native": "È stata una discussione molto fruttuosa.", + "example_sentence_english": "It was a very fruitful discussion.", + "pos": "adjective", + "word_frequency": 25643 + }, + { + "word": "gemere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to groan;to moan", + "romanization": "gemere", + "example_sentence_native": "Il paziente ha iniziato a gemere dal dolore.", + "example_sentence_english": "The patient started to groan from the pain.", + "pos": "verb", + "word_frequency": 25645 + }, + { + "word": "gentleman", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gentleman", + "romanization": "gentleman", + "example_sentence_native": "Si è comportato come un vero gentleman.", + "example_sentence_english": "He behaved like a true gentleman.", + "pos": "noun", + "word_frequency": 25647 + }, + { + "word": "gestibile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manageable", + "romanization": "gestibile", + "example_sentence_native": "Il carico di lavoro è gestibile.", + "example_sentence_english": "The workload is manageable.", + "pos": "adjective", + "word_frequency": 25648 + }, + { + "word": "giustificabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "justifiable", + "romanization": "giustificabile", + "example_sentence_native": "La sua assenza non era giustificabile.", + "example_sentence_english": "His absence was not justifiable.", + "pos": "adjective", + "word_frequency": 25651 + }, + { + "word": "graziato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pardoned;graced", + "romanization": "graziato", + "example_sentence_native": "Il prigioniero è stato graziato dal presidente.", + "example_sentence_english": "The prisoner was pardoned by the president.", + "pos": "adjective", + "word_frequency": 25654 + }, + { + "word": "gym", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "gym", + "romanization": "gym", + "example_sentence_native": "Vado in gym tre volte a settimana.", + "example_sentence_english": "I go to the gym three times a week.", + "pos": "noun", + "word_frequency": 25656 + }, + { + "word": "hangar", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hangar", + "romanization": "hangar", + "example_sentence_native": "L'aereo è parcheggiato nell'hangar.", + "example_sentence_english": "The plane is parked in the hangar.", + "pos": "noun", + "word_frequency": 25659 + }, + { + "word": "iconografico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iconographic", + "romanization": "iconografico", + "example_sentence_native": "Lo studio iconografico delle opere d'arte è affascinante.", + "example_sentence_english": "The iconographic study of artworks is fascinating.", + "pos": "adjective", + "word_frequency": 25663 + }, + { + "word": "identitario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "identitarian;identity-related", + "romanization": "identitario", + "example_sentence_native": "Il dibattito sul tema identitario è acceso.", + "example_sentence_english": "The debate on the identitarian theme is heated.", + "pos": "adjective", + "word_frequency": 25664 + }, + { + "word": "imbecillità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "imbecility;foolishness", + "romanization": "imbecillità", + "example_sentence_native": "Non posso credere a tanta imbecillità.", + "example_sentence_english": "I can't believe such imbecility.", + "pos": "noun", + "word_frequency": 25665 + }, + { + "word": "impaginazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "layout;pagination", + "romanization": "impaginazione", + "example_sentence_native": "L'impaginazione del libro è molto curata.", + "example_sentence_english": "The book's layout is very well done.", + "pos": "noun", + "word_frequency": 25666 + }, + { + "word": "impiantare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to implant;to install", + "romanization": "impiantare", + "example_sentence_native": "Hanno dovuto impiantare un pacemaker al paziente.", + "example_sentence_english": "They had to implant a pacemaker in the patient.", + "pos": "verb", + "word_frequency": 25667 + }, + { + "word": "incastro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "joint;interlocking", + "romanization": "incastro", + "example_sentence_native": "Il pezzo si adatta perfettamente all'incastro.", + "example_sentence_english": "The piece fits perfectly into the joint.", + "pos": "noun", + "word_frequency": 25668 + }, + { + "word": "inconsueto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unusual;uncommon", + "romanization": "inconsueto", + "example_sentence_native": "Ha un talento inconsueto per la musica.", + "example_sentence_english": "He has an unusual talent for music.", + "pos": "adjective", + "word_frequency": 25669 + }, + { + "word": "indistinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "indistinct;vague", + "romanization": "indistinto", + "example_sentence_native": "Si sentiva un rumore indistinto provenire da lontano.", + "example_sentence_english": "An indistinct noise could be heard coming from afar.", + "pos": "adjective", + "word_frequency": 25670 + }, + { + "word": "inefficacia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ineffectiveness", + "romanization": "inefficacia", + "example_sentence_native": "L'inefficacia del farmaco è stata dimostrata.", + "example_sentence_english": "The ineffectiveness of the drug has been demonstrated.", + "pos": "noun", + "word_frequency": 25671 + }, + { + "word": "inettitudine", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inaptitude;incompetence", + "romanization": "inettitudine", + "example_sentence_native": "È stato licenziato per manifesta inettitudine.", + "example_sentence_english": "He was fired for clear incompetence.", + "pos": "noun", + "word_frequency": 25672 + }, + { + "word": "infrastrutturale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "infrastructural", + "romanization": "infrastrutturale", + "example_sentence_native": "Sono necessari investimenti infrastrutturali.", + "example_sentence_english": "Infrastructural investments are needed.", + "pos": "adjective", + "word_frequency": 25673 + }, + { + "word": "innegabilmente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "undeniably", + "romanization": "innegabilmente", + "example_sentence_native": "È innegabilmente il migliore nel suo campo.", + "example_sentence_english": "He is undeniably the best in his field.", + "pos": "adverb", + "word_frequency": 25674 + }, + { + "word": "inserviente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attendant;cleaner", + "romanization": "inserviente", + "example_sentence_native": "L'inserviente ha pulito l'aula.", + "example_sentence_english": "The attendant cleaned the classroom.", + "pos": "noun", + "word_frequency": 25675 + }, + { + "word": "insindacabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unquestionable;indisputable", + "romanization": "insindacabile", + "example_sentence_native": "La decisione del giudice è insindacabile.", + "example_sentence_english": "The judge's decision is unquestionable.", + "pos": "adjective", + "word_frequency": 25676 + }, + { + "word": "intervistatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "interviewer", + "romanization": "intervistatore", + "example_sentence_native": "L'intervistatore ha posto domande interessanti.", + "example_sentence_english": "The interviewer asked interesting questions.", + "pos": "noun", + "word_frequency": 25677 + }, + { + "word": "irrilevanza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrelevance", + "romanization": "irrilevanza", + "example_sentence_native": "L'irrilevanza di quel dettaglio è evidente.", + "example_sentence_english": "The irrelevance of that detail is evident.", + "pos": "noun", + "word_frequency": 25679 + }, + { + "word": "irriverente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "irreverent", + "romanization": "irriverente", + "example_sentence_native": "Il suo atteggiamento irriverente non fu apprezzato.", + "example_sentence_english": "His irreverent attitude was not appreciated.", + "pos": "adjective", + "word_frequency": 25680 + }, + { + "word": "istantanea", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "snapshot;instant photo", + "romanization": "istantanea", + "example_sentence_native": "Ho scattato un'istantanea del paesaggio.", + "example_sentence_english": "I took a snapshot of the landscape.", + "pos": "noun", + "word_frequency": 25681 + }, + { + "word": "lagunare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lagoonal;lagoon-related", + "romanization": "lagunare", + "example_sentence_native": "Venezia è una città lagunare.", + "example_sentence_english": "Venice is a lagoonal city.", + "pos": "adjective", + "word_frequency": 25690 + }, + { + "word": "liberalizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to liberalize", + "romanization": "liberalizzare", + "example_sentence_native": "Il governo intende liberalizzare il mercato.", + "example_sentence_english": "The government intends to liberalize the market.", + "pos": "verb", + "word_frequency": 25692 + }, + { + "word": "lisi", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "lysis", + "romanization": "lisi", + "example_sentence_native": "La lisi cellulare è un processo biologico.", + "example_sentence_english": "Cell lysis is a biological process.", + "pos": "noun", + "word_frequency": 25693 + }, + { + "word": "maiala", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sow;female pig", + "romanization": "maiala", + "example_sentence_native": "La maiala ha avuto una cucciolata di porcellini.", + "example_sentence_english": "The sow had a litter of piglets.", + "pos": "noun", + "word_frequency": 25702 + }, + { + "word": "malfattore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wrongdoer;evildoer", + "romanization": "malfattore", + "example_sentence_native": "La polizia ha catturato il malfattore.", + "example_sentence_english": "The police caught the wrongdoer.", + "pos": "noun", + "word_frequency": 25704 + }, + { + "word": "manifestamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "manifestly;clearly", + "romanization": "manifestamente", + "example_sentence_native": "La sua innocenza era manifestamente chiara.", + "example_sentence_english": "His innocence was manifestly clear.", + "pos": "adverb", + "word_frequency": 25706 + }, + { + "word": "medley", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "medley", + "romanization": "medley", + "example_sentence_native": "La band ha suonato un medley dei loro successi.", + "example_sentence_english": "The band played a medley of their hits.", + "pos": "noun", + "word_frequency": 25710 + }, + { + "word": "modellismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "model making;modeling", + "romanization": "modellismo", + "example_sentence_native": "Il modellismo è un hobby che richiede pazienza.", + "example_sentence_english": "Model making is a hobby that requires patience.", + "pos": "noun", + "word_frequency": 25716 + }, + { + "word": "mollica", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breadcrumb;soft part of bread", + "romanization": "mollica", + "example_sentence_native": "Ho usato la mollica di pane per impanare il pollo.", + "example_sentence_english": "I used the breadcrumbs to bread the chicken.", + "pos": "noun", + "word_frequency": 25717 + }, + { + "word": "monetizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to monetize", + "romanization": "monetizzare", + "example_sentence_native": "Molte piattaforme cercano di monetizzare i loro contenuti.", + "example_sentence_english": "Many platforms try to monetize their content.", + "pos": "verb", + "word_frequency": 25718 + }, + { + "word": "motoscafo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "motorboat;speedboat", + "romanization": "motoscafo", + "example_sentence_native": "Abbiamo noleggiato un motoscafo per esplorare la costa.", + "example_sentence_english": "We rented a motorboat to explore the coast.", + "pos": "noun", + "word_frequency": 25719 + }, + { + "word": "napalm", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "napalm", + "romanization": "napalm", + "example_sentence_native": "Il napalm è una sostanza incendiaria.", + "example_sentence_english": "Napalm is an incendiary substance.", + "pos": "noun", + "word_frequency": 25722 + }, + { + "word": "nonviolenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "non-violence", + "romanization": "nonviolenza", + "example_sentence_native": "La nonviolenza è un principio fondamentale.", + "example_sentence_english": "Non-violence is a fundamental principle.", + "pos": "noun", + "word_frequency": 25724 + }, + { + "word": "nubilato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spinsterhood;bachelorette party", + "romanization": "nubilato", + "example_sentence_native": "Hanno organizzato una festa di nubilato per la sposa.", + "example_sentence_english": "They organized a bachelorette party for the bride.", + "pos": "noun", + "word_frequency": 25726 + }, + { + "word": "ozono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ozone", + "romanization": "ozono", + "example_sentence_native": "Lo strato di ozono protegge la Terra.", + "example_sentence_english": "The ozone layer protects the Earth.", + "pos": "noun", + "word_frequency": 25731 + }, + { + "word": "paghetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "allowance;pocket money", + "romanization": "paghetta", + "example_sentence_native": "I bambini ricevono la paghetta ogni settimana.", + "example_sentence_english": "Children receive pocket money every week.", + "pos": "noun", + "word_frequency": 25732 + }, + { + "word": "pagoda", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pagoda", + "romanization": "pagoda", + "example_sentence_native": "Abbiamo visitato una bellissima pagoda in Giappone.", + "example_sentence_english": "We visited a beautiful pagoda in Japan.", + "pos": "noun", + "word_frequency": 25733 + }, + { + "word": "parcheggiatore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "parking attendant;valet", + "romanization": "parcheggiatore", + "example_sentence_native": "Il parcheggiatore ci ha aiutato a trovare un posto.", + "example_sentence_english": "The parking attendant helped us find a spot.", + "pos": "noun", + "word_frequency": 25734 + }, + { + "word": "parka", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "parka", + "romanization": "parka", + "example_sentence_native": "Indossava un parka caldo per l'inverno.", + "example_sentence_english": "He wore a warm parka for the winter.", + "pos": "noun", + "word_frequency": 25735 + }, + { + "word": "patta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "draw;tie (in a game)", + "romanization": "patta", + "example_sentence_native": "La partita è finita in patta.", + "example_sentence_english": "The game ended in a draw.", + "pos": "noun", + "word_frequency": 25738 + }, + { + "word": "piazzola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pitch;stand;small square", + "romanization": "piazzola", + "example_sentence_native": "Abbiamo parcheggiato l'auto nella piazzola di sosta.", + "example_sentence_english": "We parked the car in the rest area.", + "pos": "noun", + "word_frequency": 25741 + }, + { + "word": "prepagato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "prepaid", + "romanization": "prepagato", + "example_sentence_native": "Ho comprato una carta telefonica prepagata.", + "example_sentence_english": "I bought a prepaid phone card.", + "pos": "adjective", + "word_frequency": 25746 + }, + { + "word": "prodigioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prodigious;miraculous", + "romanization": "prodigioso", + "example_sentence_native": "Ha mostrato un talento prodigioso per la musica.", + "example_sentence_english": "He showed a prodigious talent for music.", + "pos": "adjective", + "word_frequency": 25748 + }, + { + "word": "profilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to profile;to outline", + "romanization": "profilare", + "example_sentence_native": "La polizia sta cercando di profilare il sospettato.", + "example_sentence_english": "The police are trying to profile the suspect.", + "pos": "verb", + "word_frequency": 25749 + }, + { + "word": "proponente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "proposer;proponent", + "romanization": "proponente", + "example_sentence_native": "Il proponente ha presentato la sua idea.", + "example_sentence_english": "The proposer presented his idea.", + "pos": "noun", + "word_frequency": 25751 + }, + { + "word": "psicanalisi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "psychoanalysis", + "romanization": "psicanalisi", + "example_sentence_native": "La psicanalisi è una teoria psicologica.", + "example_sentence_english": "Psychoanalysis is a psychological theory.", + "pos": "noun", + "word_frequency": 25753 + }, + { + "word": "purosangue", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "thoroughbred;purebred", + "romanization": "purosangue", + "example_sentence_native": "Il cavallo era un purosangue arabo.", + "example_sentence_english": "The horse was an Arabian thoroughbred.", + "pos": "noun", + "word_frequency": 25755 + }, + { + "word": "qualunquismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apathy;indifference (political;social)", + "romanization": "qualunquismo", + "example_sentence_native": "Il qualunquismo è un atteggiamento di disinteresse verso la politica.", + "example_sentence_english": "Apathy is an attitude of disinterest towards politics.", + "pos": "noun", + "word_frequency": 25756 + }, + { + "word": "radicalismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "radicalism", + "romanization": "radicalismo", + "example_sentence_native": "Il radicalismo politico può portare a divisioni sociali.", + "example_sentence_english": "Political radicalism can lead to social divisions.", + "pos": "noun", + "word_frequency": 25761 + }, + { + "word": "ragionevolezza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reasonableness", + "romanization": "ragionevolezza", + "example_sentence_native": "La ragionevolezza è essenziale per prendere decisioni equilibrate.", + "example_sentence_english": "Reasonableness is essential for making balanced decisions.", + "pos": "noun", + "word_frequency": 25763 + }, + { + "word": "restringimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "narrowing;constriction", + "romanization": "restringimento", + "example_sentence_native": "Il restringimento della strada ha causato traffico.", + "example_sentence_english": "The narrowing of the road caused traffic.", + "pos": "noun", + "word_frequency": 25765 + }, + { + "word": "ricomparire", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reappear", + "romanization": "ricomparire", + "example_sentence_native": "Dopo la pioggia, l'arcobaleno è ricomparso nel cielo.", + "example_sentence_english": "After the rain, the rainbow reappeared in the sky.", + "pos": "verb", + "word_frequency": 25767 + }, + { + "word": "ricomparsa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reappearance", + "romanization": "ricomparsa", + "example_sentence_native": "La sua ricomparsa ha sorpreso tutti.", + "example_sentence_english": "His reappearance surprised everyone.", + "pos": "noun", + "word_frequency": 25768 + }, + { + "word": "ricondotto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "attributed (to);brought back", + "romanization": "ricondotto", + "example_sentence_native": "Il problema è stato ricondotto a un errore di sistema.", + "example_sentence_english": "The problem was attributed to a system error.", + "pos": "adjective", + "word_frequency": 25769 + }, + { + "word": "ridondante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redundant", + "romanization": "ridondante", + "example_sentence_native": "Evita di usare espressioni ridondanti nella tua scrittura.", + "example_sentence_english": "Avoid using redundant expressions in your writing.", + "pos": "adjective", + "word_frequency": 25771 + }, + { + "word": "rigurgito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "regurgitation;overflow", + "romanization": "rigurgito", + "example_sentence_native": "Il rigurgito acido è un problema comune.", + "example_sentence_english": "Acid regurgitation is a common problem.", + "pos": "noun", + "word_frequency": 25773 + }, + { + "word": "rimpatriare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to repatriate;to return home", + "romanization": "rimpatriare", + "example_sentence_native": "Molti emigrati desiderano rimpatriare un giorno.", + "example_sentence_english": "Many emigrants wish to return home one day.", + "pos": "verb", + "word_frequency": 25774 + }, + { + "word": "rimpatriato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repatriated;returned home", + "romanization": "rimpatriato", + "example_sentence_native": "Il soldato rimpatriato ha raccontato la sua esperienza.", + "example_sentence_english": "The repatriated soldier recounted his experience.", + "pos": "adjective", + "word_frequency": 25775 + }, + { + "word": "rincaro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "price increase;rise in cost", + "romanization": "rincaro", + "example_sentence_native": "Il rincaro del carburante ha colpito molte famiglie.", + "example_sentence_english": "The price increase of fuel has affected many families.", + "pos": "noun", + "word_frequency": 25776 + }, + { + "word": "rossastro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reddish", + "romanization": "rossastro", + "example_sentence_native": "Il cielo al tramonto aveva un colore rossastro.", + "example_sentence_english": "The sky at sunset had a reddish color.", + "pos": "adjective", + "word_frequency": 25782 + }, + { + "word": "sacrestia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sacristy", + "romanization": "sacrestia", + "example_sentence_native": "Il prete si è preparato nella sacrestia prima della messa.", + "example_sentence_english": "The priest prepared in the sacristy before mass.", + "pos": "noun", + "word_frequency": 25785 + }, + { + "word": "sanscrito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Sanskrit", + "romanization": "sanscrito", + "example_sentence_native": "Il sanscrito è un'antica lingua indiana.", + "example_sentence_english": "Sanskrit is an ancient Indian language.", + "pos": "noun", + "word_frequency": 25788 + }, + { + "word": "sanzionato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sanctioned;penalized", + "romanization": "sanzionato", + "example_sentence_native": "Il comportamento scorretto è stato sanzionato con una multa.", + "example_sentence_english": "The misconduct was sanctioned with a fine.", + "pos": "adjective", + "word_frequency": 25789 + }, + { + "word": "scanso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "avoidance;evasion", + "romanization": "scanso", + "example_sentence_native": "A scanso di equivoci, vorrei chiarire la mia posizione.", + "example_sentence_english": "To avoid misunderstandings, I would like to clarify my position.", + "pos": "noun", + "word_frequency": 25790 + }, + { + "word": "scartoffia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paperwork;red tape", + "romanization": "scartoffia", + "example_sentence_native": "Ho passato tutta la mattina a sbrigare scartoffie.", + "example_sentence_english": "I spent all morning dealing with paperwork.", + "pos": "noun", + "word_frequency": 25792 + }, + { + "word": "scindere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to separate;to split", + "romanization": "scindere", + "example_sentence_native": "È difficile scindere la verità dalla finzione in questa storia.", + "example_sentence_english": "It's difficult to separate truth from fiction in this story.", + "pos": "verb", + "word_frequency": 25793 + }, + { + "word": "scocciatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nuisance;bother", + "romanization": "scocciatura", + "example_sentence_native": "Che scocciatura dover rifare tutto da capo!", + "example_sentence_english": "What a nuisance having to do everything from scratch!", + "pos": "noun", + "word_frequency": 25794 + }, + { + "word": "scontrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clashed;disagreed", + "romanization": "scontrato", + "example_sentence_native": "Le loro opinioni erano scontrate.", + "example_sentence_english": "Their opinions were clashing.", + "pos": "adjective", + "word_frequency": 25795 + }, + { + "word": "seccare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to annoy;to bother", + "romanization": "seccare", + "example_sentence_native": "Mi secca molto quando arrivi in ritardo.", + "example_sentence_english": "It really annoys me when you arrive late.", + "pos": "verb", + "word_frequency": 25798 + }, + { + "word": "seccatura", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nuisance;bother", + "romanization": "seccatura", + "example_sentence_native": "È una vera seccatura dover aspettare così tanto.", + "example_sentence_english": "It's a real nuisance having to wait so long.", + "pos": "noun", + "word_frequency": 25799 + }, + { + "word": "sferrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unshod;unfastened", + "romanization": "sferrato", + "example_sentence_native": "Il cavallo era sferrato e non poteva correre.", + "example_sentence_english": "The horse was unshod and couldn't run.", + "pos": "adjective", + "word_frequency": 25802 + }, + { + "word": "sfottere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to mock;to tease", + "romanization": "sfottere", + "example_sentence_native": "Non mi piace sfottere le persone.", + "example_sentence_english": "I don't like to mock people.", + "pos": "verb", + "word_frequency": 25803 + }, + { + "word": "sgorgare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to gush out;to flow out", + "romanization": "sgorgare", + "example_sentence_native": "L'acqua sgorgava dalla fontana.", + "example_sentence_english": "The water gushed out from the fountain.", + "pos": "verb", + "word_frequency": 25804 + }, + { + "word": "siberiano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Siberian", + "romanization": "siberiano", + "example_sentence_native": "Il clima siberiano è molto freddo.", + "example_sentence_english": "The Siberian climate is very cold.", + "pos": "adjective", + "word_frequency": 25805 + }, + { + "word": "smisurato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "immeasurable;enormous", + "romanization": "smisurato", + "example_sentence_native": "Aveva un talento smisurato per la musica.", + "example_sentence_english": "He had an immeasurable talent for music.", + "pos": "adjective", + "word_frequency": 25808 + }, + { + "word": "soffermato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "paused;dwelled", + "romanization": "soffermato", + "example_sentence_native": "Si è soffermato a guardare il panorama.", + "example_sentence_english": "He paused to look at the view.", + "pos": "adjective", + "word_frequency": 25809 + }, + { + "word": "sordità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deafness", + "romanization": "sordità", + "example_sentence_native": "La sordità può essere congenita o acquisita.", + "example_sentence_english": "Deafness can be congenital or acquired.", + "pos": "noun", + "word_frequency": 25810 + }, + { + "word": "sospinto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pushed;driven", + "romanization": "sospinto", + "example_sentence_native": "Fu sospinto dal vento verso la riva.", + "example_sentence_english": "He was pushed by the wind towards the shore.", + "pos": "adjective", + "word_frequency": 25811 + }, + { + "word": "sottoscrittore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subscriber;underwriter", + "romanization": "sottoscrittore", + "example_sentence_native": "Ogni sottoscrittore riceverà una copia della rivista.", + "example_sentence_english": "Every subscriber will receive a copy of the magazine.", + "pos": "noun", + "word_frequency": 25812 + }, + { + "word": "soy", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soy", + "romanization": "soy", + "example_sentence_native": "Il latte di soy è un'alternativa al latte vaccino.", + "example_sentence_english": "Soy milk is an alternative to cow's milk.", + "pos": "noun", + "word_frequency": 25813 + }, + { + "word": "spalancato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "wide open;gaping", + "romanization": "spalancato", + "example_sentence_native": "La porta era spalancata.", + "example_sentence_english": "The door was wide open.", + "pos": "adjective", + "word_frequency": 25814 + }, + { + "word": "spatola", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "spatula", + "romanization": "spatola", + "example_sentence_native": "Usa la spatola per girare le frittelle.", + "example_sentence_english": "Use the spatula to flip the pancakes.", + "pos": "noun", + "word_frequency": 25815 + }, + { + "word": "spremuta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "freshly squeezed juice", + "romanization": "spremuta", + "example_sentence_native": "Vorrei una spremuta d'arancia.", + "example_sentence_english": "I would like a freshly squeezed orange juice.", + "pos": "noun", + "word_frequency": 25818 + }, + { + "word": "stabilizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stabilized", + "romanization": "stabilizzato", + "example_sentence_native": "La situazione economica si è stabilizzata.", + "example_sentence_english": "The economic situation has stabilized.", + "pos": "adjective", + "word_frequency": 25819 + }, + { + "word": "termosifone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "radiator", + "romanization": "termosifone", + "example_sentence_native": "Il termosifone è caldo.", + "example_sentence_english": "The radiator is hot.", + "pos": "noun", + "word_frequency": 25826 + }, + { + "word": "tingere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dye;to tint", + "romanization": "tingere", + "example_sentence_native": "Voglio tingere i capelli di rosso.", + "example_sentence_english": "I want to dye my hair red.", + "pos": "verb", + "word_frequency": 25829 + }, + { + "word": "tirrenico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Tyrrhenian", + "romanization": "tirrenico", + "example_sentence_native": "Il Mar Tirrenico si trova a ovest dell'Italia.", + "example_sentence_english": "The Tyrrhenian Sea is located west of Italy.", + "pos": "adjective", + "word_frequency": 25830 + }, + { + "word": "torbido", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbid;murky;cloudy", + "romanization": "torbido", + "example_sentence_native": "L'acqua del fiume era torbida dopo la pioggia.", + "example_sentence_english": "The river water was murky after the rain.", + "pos": "adjective", + "word_frequency": 25832 + }, + { + "word": "tortello", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tortello (type of filled pasta)", + "romanization": "tortello", + "example_sentence_native": "Ho mangiato dei tortelli di zucca.", + "example_sentence_english": "I ate some pumpkin tortelli.", + "pos": "noun", + "word_frequency": 25834 + }, + { + "word": "traumatizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "traumatized", + "romanization": "traumatizzato", + "example_sentence_native": "Era traumatizzato dall'incidente.", + "example_sentence_english": "He was traumatized by the accident.", + "pos": "adjective", + "word_frequency": 25835 + }, + { + "word": "trito", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "minced;chopped", + "romanization": "trito", + "example_sentence_native": "Aggiungi un po' di prezzemolo trito.", + "example_sentence_english": "Add some chopped parsley.", + "pos": "adjective", + "word_frequency": 25836 + }, + { + "word": "tuffare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to dive;to dip", + "romanization": "tuffare", + "example_sentence_native": "Si è tuffato in piscina.", + "example_sentence_english": "He dived into the pool.", + "pos": "verb", + "word_frequency": 25838 + }, + { + "word": "tulle", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tulle", + "romanization": "tulle", + "example_sentence_native": "Il vestito era fatto di tulle.", + "example_sentence_english": "The dress was made of tulle.", + "pos": "noun", + "word_frequency": 25839 + }, + { + "word": "unanimità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unanimity", + "romanization": "unanimità", + "example_sentence_native": "La decisione è stata presa all'unanimità.", + "example_sentence_english": "The decision was made unanimously.", + "pos": "noun", + "word_frequency": 25842 + }, + { + "word": "vivisezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vivisection", + "romanization": "vivisezione", + "example_sentence_native": "Molti si oppongono alla pratica della vivisezione.", + "example_sentence_english": "Many oppose the practice of vivisection.", + "pos": "noun", + "word_frequency": 25848 + }, + { + "word": "volato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flown;passed quickly", + "romanization": "volato", + "example_sentence_native": "Il tempo è volato via.", + "example_sentence_english": "Time has flown by.", + "pos": "adjective", + "word_frequency": 25849 + }, + { + "word": "abdicazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "abdication", + "romanization": "abdicazione", + "example_sentence_native": "L'abdicazione del re ha sorpreso tutti.", + "example_sentence_english": "The king's abdication surprised everyone.", + "pos": "noun", + "word_frequency": 25855 + }, + { + "word": "abortito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aborted;failed", + "romanization": "abortito", + "example_sentence_native": "Il tentativo di fuga è stato abortito.", + "example_sentence_english": "The escape attempt was aborted.", + "pos": "adjective", + "word_frequency": 25856 + }, + { + "word": "accredito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "credit;accreditation", + "romanization": "accredito", + "example_sentence_native": "Ho ricevuto un accredito sul mio conto.", + "example_sentence_english": "I received a credit on my account.", + "pos": "noun", + "word_frequency": 25858 + }, + { + "word": "addentrare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to penetrate;to delve into", + "romanization": "addentrare", + "example_sentence_native": "È pericoloso addentrarsi nella foresta di notte.", + "example_sentence_english": "It's dangerous to delve into the forest at night.", + "pos": "verb", + "word_frequency": 25859 + }, + { + "word": "aguzzino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tormentor;oppressor", + "romanization": "aguzzino", + "example_sentence_native": "I prigionieri erano alla mercé dei loro aguzzini.", + "example_sentence_english": "The prisoners were at the mercy of their tormentors.", + "pos": "noun", + "word_frequency": 25862 + }, + { + "word": "algebrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "algebraic", + "romanization": "algebrico", + "example_sentence_native": "Questa è un'equazione algebrica.", + "example_sentence_english": "This is an algebraic equation.", + "pos": "adjective", + "word_frequency": 25865 + }, + { + "word": "allattare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to breastfeed;to nurse", + "romanization": "allattare", + "example_sentence_native": "La mamma ha iniziato ad allattare il suo bambino.", + "example_sentence_english": "The mother started to breastfeed her baby.", + "pos": "verb", + "word_frequency": 25869 + }, + { + "word": "allodola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lark", + "romanization": "allodola", + "example_sentence_native": "L'allodola canta all'alba.", + "example_sentence_english": "The lark sings at dawn.", + "pos": "noun", + "word_frequency": 25870 + }, + { + "word": "alloggiamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "housing;lodging;casing", + "romanization": "alloggiamento", + "example_sentence_native": "Stiamo cercando un alloggiamento temporaneo.", + "example_sentence_english": "We are looking for temporary housing.", + "pos": "noun", + "word_frequency": 25871 + }, + { + "word": "allucinogeno", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hallucinogenic", + "romanization": "allucinogeno", + "example_sentence_native": "Ha assunto una sostanza allucinogena.", + "example_sentence_english": "He took a hallucinogenic substance.", + "pos": "adjective", + "word_frequency": 25872 + }, + { + "word": "amateur", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amateur", + "romanization": "amateur", + "example_sentence_native": "È un fotografo dilettante, un vero amateur.", + "example_sentence_english": "He is an amateur photographer, a true amateur.", + "pos": "noun", + "word_frequency": 25874 + }, + { + "word": "azero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Azerbaijani", + "romanization": "azero", + "example_sentence_native": "Parla la lingua azera.", + "example_sentence_english": "He speaks the Azerbaijani language.", + "pos": "adjective", + "word_frequency": 25877 + }, + { + "word": "azionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to activate;to operate;to trigger", + "romanization": "azionare", + "example_sentence_native": "Azionare la leva per avviare il motore.", + "example_sentence_english": "Activate the lever to start the engine.", + "pos": "verb", + "word_frequency": 25878 + }, + { + "word": "azzerato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reset;zeroed;nullified", + "romanization": "azzerato", + "example_sentence_native": "Il contatore è stato azzerato.", + "example_sentence_english": "The counter has been reset.", + "pos": "adjective", + "word_frequency": 25879 + }, + { + "word": "bengalese", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bengali", + "romanization": "bengalese", + "example_sentence_native": "Parla fluentemente il bengalese.", + "example_sentence_english": "He speaks Bengali fluently.", + "pos": "adjective", + "word_frequency": 25883 + }, + { + "word": "bielorusso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Belarusian", + "romanization": "bielorusso", + "example_sentence_native": "La capitale bielorussa è Minsk.", + "example_sentence_english": "The Belarusian capital is Minsk.", + "pos": "adjective", + "word_frequency": 25886 + }, + { + "word": "blasone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coat of arms;blazon", + "romanization": "blasone", + "example_sentence_native": "Ogni famiglia nobile aveva il proprio blasone.", + "example_sentence_english": "Every noble family had its own coat of arms.", + "pos": "noun", + "word_frequency": 25887 + }, + { + "word": "borraccia", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "water bottle;canteen", + "romanization": "borraccia", + "example_sentence_native": "Ho riempito la mia borraccia prima di partire per l'escursione.", + "example_sentence_english": "I filled my water bottle before leaving for the hike.", + "pos": "noun", + "word_frequency": 25889 + }, + { + "word": "briefing", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "briefing", + "romanization": "briefing", + "example_sentence_native": "Abbiamo un briefing importante alle nove.", + "example_sentence_english": "We have an important briefing at nine o'clock.", + "pos": "noun", + "word_frequency": 25891 + }, + { + "word": "bulldozer", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bulldozer", + "romanization": "bulldozer", + "example_sentence_native": "Il bulldozer ha spianato il terreno per la nuova costruzione.", + "example_sentence_english": "The bulldozer leveled the ground for the new construction.", + "pos": "noun", + "word_frequency": 25893 + }, + { + "word": "canvas", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "canvas", + "romanization": "canvas", + "example_sentence_native": "L'artista ha dipinto un bellissimo paesaggio su tela (canvas).", + "example_sentence_english": "The artist painted a beautiful landscape on canvas.", + "pos": "noun", + "word_frequency": 25895 + }, + { + "word": "caporalato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "illegal labor recruitment;gangmaster system", + "romanization": "caporalato", + "example_sentence_native": "Il governo sta combattendo il fenomeno del caporalato in agricoltura.", + "example_sentence_english": "The government is fighting the phenomenon of illegal labor recruitment in agriculture.", + "pos": "noun", + "word_frequency": 25896 + }, + { + "word": "carillon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "music box;carillon", + "romanization": "carillon", + "example_sentence_native": "Ha ricevuto un vecchio carillon come regalo.", + "example_sentence_english": "She received an old music box as a gift.", + "pos": "noun", + "word_frequency": 25897 + }, + { + "word": "carpentiere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "carpenter", + "romanization": "carpentiere", + "example_sentence_native": "Il carpentiere ha costruito il tetto della casa.", + "example_sentence_english": "The carpenter built the roof of the house.", + "pos": "noun", + "word_frequency": 25898 + }, + { + "word": "catalogato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cataloged;classified", + "romanization": "catalogato", + "example_sentence_native": "Tutti i libri rari sono stati catalogati con cura.", + "example_sentence_english": "All rare books have been carefully cataloged.", + "pos": "adjective", + "word_frequency": 25902 + }, + { + "word": "cataratta", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cataract", + "romanization": "cataratta", + "example_sentence_native": "L'operazione per la cataratta è molto comune.", + "example_sentence_english": "Cataract surgery is very common.", + "pos": "noun", + "word_frequency": 25903 + }, + { + "word": "centocinquanta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "one hundred fifty", + "romanization": "centocinquanta", + "example_sentence_native": "Ci sono centocinquanta pagine in questo libro.", + "example_sentence_english": "There are one hundred fifty pages in this book.", + "pos": "adjective", + "word_frequency": 25904 + }, + { + "word": "chiaroscuro", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chiaroscuro", + "romanization": "chiaroscuro", + "example_sentence_native": "Il chiaroscuro è una tecnica pittorica usata da Caravaggio.", + "example_sentence_english": "Chiaroscuro is a painting technique used by Caravaggio.", + "pos": "noun", + "word_frequency": 25906 + }, + { + "word": "ciambellano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "chamberlain", + "romanization": "ciambellano", + "example_sentence_native": "Il ciambellano era un alto funzionario di corte.", + "example_sentence_english": "The chamberlain was a high court official.", + "pos": "noun", + "word_frequency": 25908 + }, + { + "word": "cinquantamila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fifty thousand", + "romanization": "cinquantamila", + "example_sentence_native": "La popolazione della città è di cinquantamila abitanti.", + "example_sentence_english": "The city's population is fifty thousand inhabitants.", + "pos": "adjective", + "word_frequency": 25910 + }, + { + "word": "cinto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "girded;encircled;surrounded", + "romanization": "cinto", + "example_sentence_native": "La città era cinta da alte mura.", + "example_sentence_english": "The city was girded by high walls.", + "pos": "adjective", + "word_frequency": 25911 + }, + { + "word": "circoscritto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "circumscribed;limited;confined", + "romanization": "circoscritto", + "example_sentence_native": "Il problema è circoscritto a una piccola area.", + "example_sentence_english": "The problem is circumscribed to a small area.", + "pos": "adjective", + "word_frequency": 25913 + }, + { + "word": "colonizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "colonized", + "romanization": "colonizzato", + "example_sentence_native": "Molti territori sono stati colonizzati nel passato.", + "example_sentence_english": "Many territories were colonized in the past.", + "pos": "adjective", + "word_frequency": 25915 + }, + { + "word": "complottista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conspiracy theorist", + "romanization": "complottista", + "example_sentence_native": "Non dare retta a quel complottista, dice solo sciocchezze.", + "example_sentence_english": "Don't listen to that conspiracy theorist, he only talks nonsense.", + "pos": "noun", + "word_frequency": 25916 + }, + { + "word": "conato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "retch;gag;attempt", + "romanization": "conato", + "example_sentence_native": "Ha avuto un conato di vomito dopo aver mangiato troppo.", + "example_sentence_english": "He had a retch after eating too much.", + "pos": "noun", + "word_frequency": 25917 + }, + { + "word": "congratulare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to congratulate", + "romanization": "congratulare", + "example_sentence_native": "Voglio congratularmi con te per il tuo successo.", + "example_sentence_english": "I want to congratulate you on your success.", + "pos": "verb", + "word_frequency": 25918 + }, + { + "word": "construction", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "construction", + "romanization": "construction", + "example_sentence_native": "Il settore della construction è in crescita.", + "example_sentence_english": "The construction sector is growing.", + "pos": "noun", + "word_frequency": 25919 + }, + { + "word": "contiguo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contiguous;adjacent", + "romanization": "contiguo", + "example_sentence_native": "Le due proprietà sono contigue.", + "example_sentence_english": "The two properties are contiguous.", + "pos": "adjective", + "word_frequency": 25920 + }, + { + "word": "controllabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "controllable", + "romanization": "controllabile", + "example_sentence_native": "La situazione è ancora controllabile.", + "example_sentence_english": "The situation is still controllable.", + "pos": "adjective", + "word_frequency": 25921 + }, + { + "word": "convesso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "convex", + "romanization": "convesso", + "example_sentence_native": "Lo specchio retrovisore è convesso.", + "example_sentence_english": "The rearview mirror is convex.", + "pos": "adjective", + "word_frequency": 25922 + }, + { + "word": "criticamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "critically", + "romanization": "criticamente", + "example_sentence_native": "Dobbiamo analizzare la situazione criticamente.", + "example_sentence_english": "We must analyze the situation critically.", + "pos": "adverb", + "word_frequency": 25924 + }, + { + "word": "cruciverba", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crossword puzzle", + "romanization": "cruciverba", + "example_sentence_native": "Mi piace risolvere i cruciverba la domenica.", + "example_sentence_english": "I like to solve crossword puzzles on Sundays.", + "pos": "noun", + "word_frequency": 25925 + }, + { + "word": "cuoricino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little heart;sweetheart", + "romanization": "cuoricino", + "example_sentence_native": "Ha disegnato un cuoricino sulla sabbia.", + "example_sentence_english": "He drew a little heart on the sand.", + "pos": "noun", + "word_frequency": 25926 + }, + { + "word": "cursore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cursor", + "romanization": "cursore", + "example_sentence_native": "Sposta il cursore per selezionare il testo.", + "example_sentence_english": "Move the cursor to select the text.", + "pos": "noun", + "word_frequency": 25928 + }, + { + "word": "dalmata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Dalmatian", + "romanization": "dalmata", + "example_sentence_native": "Il cane dalmata ha macchie nere.", + "example_sentence_english": "The Dalmatian dog has black spots.", + "pos": "adjective", + "word_frequency": 25931 + }, + { + "word": "dardo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dart;arrow", + "romanization": "dardo", + "example_sentence_native": "Ha lanciato un dardo al bersaglio.", + "example_sentence_english": "He threw a dart at the target.", + "pos": "noun", + "word_frequency": 25932 + }, + { + "word": "demaniale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "state-owned;public domain", + "romanization": "demaniale", + "example_sentence_native": "Il terreno è di proprietà demaniale.", + "example_sentence_english": "The land is state-owned.", + "pos": "adjective", + "word_frequency": 25941 + }, + { + "word": "depravazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depravity", + "romanization": "depravazione", + "example_sentence_native": "La depravazione morale era evidente.", + "example_sentence_english": "The moral depravity was evident.", + "pos": "noun", + "word_frequency": 25942 + }, + { + "word": "desertificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "desertification", + "romanization": "desertificazione", + "example_sentence_native": "La desertificazione è un problema globale.", + "example_sentence_english": "Desertification is a global problem.", + "pos": "noun", + "word_frequency": 25943 + }, + { + "word": "disdetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cancelled;revoked", + "romanization": "disdetto", + "example_sentence_native": "L'appuntamento è stato disdetto.", + "example_sentence_english": "The appointment has been cancelled.", + "pos": "adjective", + "word_frequency": 25944 + }, + { + "word": "disincanto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "disillusionment;disenchantment", + "romanization": "disincanto", + "example_sentence_native": "Ha provato un senso di disincanto.", + "example_sentence_english": "He felt a sense of disillusionment.", + "pos": "noun", + "word_frequency": 25945 + }, + { + "word": "dissanguato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "bled dry;drained of blood", + "romanization": "dissanguato", + "example_sentence_native": "Si sentiva dissanguato dopo la donazione.", + "example_sentence_english": "He felt drained of blood after the donation.", + "pos": "adjective", + "word_frequency": 25946 + }, + { + "word": "effe", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "F (the letter)", + "romanization": "effe", + "example_sentence_native": "La parola \"fiore\" inizia con la lettera effe.", + "example_sentence_english": "The word \"fiore\" starts with the letter F.", + "pos": "noun", + "word_frequency": 25949 + }, + { + "word": "errare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to err;to wander", + "romanization": "errare", + "example_sentence_native": "Errare è umano, perseverare è diabolico.", + "example_sentence_english": "To err is human, to persevere is diabolical.", + "pos": "verb", + "word_frequency": 25951 + }, + { + "word": "esortato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "exhorted;urged", + "romanization": "esortato", + "example_sentence_native": "Fu esortato a continuare i suoi studi.", + "example_sentence_english": "He was exhorted to continue his studies.", + "pos": "adjective", + "word_frequency": 25952 + }, + { + "word": "espletamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fulfillment;completion (of a task)", + "romanization": "espletamento", + "example_sentence_native": "L'espletamento delle pratiche richiede tempo.", + "example_sentence_english": "The fulfillment of the procedures takes time.", + "pos": "noun", + "word_frequency": 25954 + }, + { + "word": "estrattivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extractive", + "romanization": "estrattivo", + "example_sentence_native": "L'industria estrattiva è importante per l'economia.", + "example_sentence_english": "The extractive industry is important for the economy.", + "pos": "adjective", + "word_frequency": 25955 + }, + { + "word": "eyeliner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eyeliner", + "romanization": "eyeliner", + "example_sentence_native": "Ha applicato l'eyeliner con precisione.", + "example_sentence_english": "She applied the eyeliner with precision.", + "pos": "noun", + "word_frequency": 25956 + }, + { + "word": "febbrile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feverish;hectic", + "romanization": "febbrile", + "example_sentence_native": "L'atmosfera era febbrile prima dell'esame.", + "example_sentence_english": "The atmosphere was feverish before the exam.", + "pos": "adjective", + "word_frequency": 25960 + }, + { + "word": "fibbia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "buckle", + "romanization": "fibbia", + "example_sentence_native": "La fibbia della cintura era rotta.", + "example_sentence_english": "The belt buckle was broken.", + "pos": "noun", + "word_frequency": 25963 + }, + { + "word": "galea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "galley", + "romanization": "galea", + "example_sentence_native": "Le galee erano navi da guerra usate nell'antichità.", + "example_sentence_english": "Galleys were warships used in antiquity.", + "pos": "noun", + "word_frequency": 25966 + }, + { + "word": "gastrointestinale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gastrointestinal", + "romanization": "gastrointestinale", + "example_sentence_native": "Ha avuto problemi gastrointestinali dopo il viaggio.", + "example_sentence_english": "He had gastrointestinal problems after the trip.", + "pos": "adjective", + "word_frequency": 25969 + }, + { + "word": "gattopardo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ocelot;(also) The Leopard (novel)", + "romanization": "gattopardo", + "example_sentence_native": "Il gattopardo è un felino selvatico originario dell'America.", + "example_sentence_english": "The ocelot is a wild feline native to America.", + "pos": "noun", + "word_frequency": 25970 + }, + { + "word": "gendarme", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gendarme;policeman", + "romanization": "gendarme", + "example_sentence_native": "Il gendarme ha fermato il veicolo per un controllo.", + "example_sentence_english": "The gendarme stopped the vehicle for a check.", + "pos": "noun", + "word_frequency": 25971 + }, + { + "word": "ginnasta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gymnast", + "romanization": "ginnasta", + "example_sentence_native": "La ginnasta ha eseguito un esercizio perfetto.", + "example_sentence_english": "The gymnast performed a perfect routine.", + "pos": "noun", + "word_frequency": 25975 + }, + { + "word": "gluteo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "glute;buttock", + "romanization": "gluteo", + "example_sentence_native": "Ha rafforzato i muscoli del gluteo con l'esercizio.", + "example_sentence_english": "He strengthened his glute muscles with exercise.", + "pos": "noun", + "word_frequency": 25976 + }, + { + "word": "golem", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "golem", + "romanization": "golem", + "example_sentence_native": "Il golem è una figura della mitologia ebraica.", + "example_sentence_english": "The golem is a figure from Jewish mythology.", + "pos": "noun", + "word_frequency": 25977 + }, + { + "word": "gradiente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gradient", + "romanization": "gradiente", + "example_sentence_native": "Il gradiente di temperatura era molto ripido.", + "example_sentence_english": "The temperature gradient was very steep.", + "pos": "noun", + "word_frequency": 25978 + }, + { + "word": "gradinata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steps;tiered seating;grandstand", + "romanization": "gradinata", + "example_sentence_native": "Ci siamo seduti sulla gradinata per vedere la partita.", + "example_sentence_english": "We sat on the grandstand to watch the game.", + "pos": "noun", + "word_frequency": 25979 + }, + { + "word": "hackerare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hack", + "romanization": "hackerare", + "example_sentence_native": "Hanno tentato di hackerare il sistema informatico.", + "example_sentence_english": "They tried to hack the computer system.", + "pos": "verb", + "word_frequency": 25984 + }, + { + "word": "immondo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "filthy;unclean;vile", + "romanization": "immondo", + "example_sentence_native": "Viveva in condizioni immondo e trascurate.", + "example_sentence_english": "He lived in filthy and neglected conditions.", + "pos": "adjective", + "word_frequency": 25991 + }, + { + "word": "impuro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "impure;unclean", + "romanization": "impuro", + "example_sentence_native": "L'acqua era impura e non potabile.", + "example_sentence_english": "The water was impure and not drinkable.", + "pos": "adjective", + "word_frequency": 25992 + }, + { + "word": "inapplicabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inapplicable", + "romanization": "inapplicabile", + "example_sentence_native": "Questa regola è inapplicabile al nostro caso specifico.", + "example_sentence_english": "This rule is inapplicable to our specific case.", + "pos": "adjective", + "word_frequency": 25993 + }, + { + "word": "inarrivabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unreachable;unattainable;unparalleled", + "romanization": "inarrivabile", + "example_sentence_native": "La sua bravura nel canto è inarrivabile.", + "example_sentence_english": "His skill in singing is unparalleled.", + "pos": "adjective", + "word_frequency": 25994 + }, + { + "word": "incassato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "built-in;recessed;(fig.) endured;taken", + "romanization": "incassato", + "example_sentence_native": "Il mobile era incassato nella parete della cucina.", + "example_sentence_english": "The furniture was built into the kitchen wall.", + "pos": "adjective", + "word_frequency": 25995 + }, + { + "word": "inconsistente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inconsistent;flimsy;weak", + "romanization": "inconsistente", + "example_sentence_native": "Le sue argomentazioni erano inconsistenti e prive di logica.", + "example_sentence_english": "His arguments were inconsistent and lacked logic.", + "pos": "adjective", + "word_frequency": 25996 + }, + { + "word": "indizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "convocation;announcement;calling (of elections;etc.)", + "romanization": "indizione", + "example_sentence_native": "L'indizione delle elezioni è stata annunciata dal governo.", + "example_sentence_english": "The convocation of the elections has been announced by the government.", + "pos": "noun", + "word_frequency": 25997 + }, + { + "word": "infuocato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fiery;inflamed;red-hot", + "romanization": "infuocato", + "example_sentence_native": "Il tramonto ha dipinto il cielo di colori infuocati.", + "example_sentence_english": "The sunset painted the sky with fiery colors.", + "pos": "adjective", + "word_frequency": 25998 + }, + { + "word": "ingaggiato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hired;engaged;contracted", + "romanization": "ingaggiato", + "example_sentence_native": "L'attore è stato ingaggiato per il nuovo film d'azione.", + "example_sentence_english": "The actor was hired for the new action film.", + "pos": "adjective", + "word_frequency": 25999 + }, + { + "word": "intentato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unattempted;untried", + "romanization": "intentato", + "example_sentence_native": "La causa è rimasta intentata per anni.", + "example_sentence_english": "The lawsuit remained unattempted for years.", + "pos": "adjective", + "word_frequency": 26000 + }, + { + "word": "intimidatorio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intimidatory;threatening", + "romanization": "intimidatorio", + "example_sentence_native": "Ha ricevuto una lettera intimidatoria.", + "example_sentence_english": "He received an intimidatory letter.", + "pos": "adjective", + "word_frequency": 26001 + }, + { + "word": "ipersensibilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypersensitivity", + "romanization": "ipersensibilità", + "example_sentence_native": "Soffre di ipersensibilità al polline.", + "example_sentence_english": "She suffers from hypersensitivity to pollen.", + "pos": "noun", + "word_frequency": 26002 + }, + { + "word": "irrealizzabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unfeasible;unattainable", + "romanization": "irrealizzabile", + "example_sentence_native": "Il suo sogno sembrava irrealizzabile.", + "example_sentence_english": "His dream seemed unattainable.", + "pos": "adjective", + "word_frequency": 26004 + }, + { + "word": "ispettorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "inspectorate", + "romanization": "ispettorato", + "example_sentence_native": "L'ispettorato del lavoro ha avviato un'indagine.", + "example_sentence_english": "The labor inspectorate has launched an investigation.", + "pos": "noun", + "word_frequency": 26006 + }, + { + "word": "ispezionare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to inspect", + "romanization": "ispezionare", + "example_sentence_native": "Dobbiamo ispezionare attentamente il motore.", + "example_sentence_english": "We need to carefully inspect the engine.", + "pos": "verb", + "word_frequency": 26007 + }, + { + "word": "joystick", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "joystick", + "romanization": "joystick", + "example_sentence_native": "Ho comprato un nuovo joystick per la console.", + "example_sentence_english": "I bought a new joystick for the console.", + "pos": "noun", + "word_frequency": 26011 + }, + { + "word": "lacrimuccia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "little tear;tear (of emotion)", + "romanization": "lacrimuccia", + "example_sentence_native": "Mi è scesa una lacrimuccia guardando quel film.", + "example_sentence_english": "A little tear fell as I watched that movie.", + "pos": "noun", + "word_frequency": 26016 + }, + { + "word": "leccata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lick", + "romanization": "leccata", + "example_sentence_native": "Il cane mi ha dato una leccata sulla mano.", + "example_sentence_english": "The dog gave me a lick on the hand.", + "pos": "noun", + "word_frequency": 26020 + }, + { + "word": "limonare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to make out;to kiss passionately", + "romanization": "limonare", + "example_sentence_native": "I due ragazzi si sono messi a limonare in piazza.", + "example_sentence_english": "The two kids started making out in the square.", + "pos": "verb", + "word_frequency": 26024 + }, + { + "word": "lince", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lynx", + "romanization": "lince", + "example_sentence_native": "La lince è un felino selvatico.", + "example_sentence_english": "The lynx is a wild feline.", + "pos": "noun", + "word_frequency": 26025 + }, + { + "word": "livore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resentment;rancor", + "romanization": "livore", + "example_sentence_native": "Parlava con un certo livore nella voce.", + "example_sentence_english": "He spoke with a certain resentment in his voice.", + "pos": "noun", + "word_frequency": 26026 + }, + { + "word": "miscellanea", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "miscellany;collection", + "romanization": "miscellanea", + "example_sentence_native": "Il libro è una miscellanea di saggi.", + "example_sentence_english": "The book is a miscellany of essays.", + "pos": "noun", + "word_frequency": 26036 + }, + { + "word": "missilistico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "missile (adj.);ballistic", + "romanization": "missilistico", + "example_sentence_native": "Hanno sviluppato un nuovo sistema missilistico.", + "example_sentence_english": "They have developed a new missile system.", + "pos": "adjective", + "word_frequency": 26037 + }, + { + "word": "moscone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bluebottle fly", + "romanization": "moscone", + "example_sentence_native": "Un moscone ronzava fastidiosamente intorno alla finestra.", + "example_sentence_english": "A bluebottle fly buzzed annoyingly around the window.", + "pos": "noun", + "word_frequency": 26040 + }, + { + "word": "museruola", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "muzzle", + "romanization": "museruola", + "example_sentence_native": "Il cane indossava una museruola per sicurezza.", + "example_sentence_english": "The dog wore a muzzle for safety.", + "pos": "noun", + "word_frequency": 26041 + }, + { + "word": "obbediente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "obedient", + "romanization": "obbediente", + "example_sentence_native": "Il cane era molto obbediente e seguiva ogni comando.", + "example_sentence_english": "The dog was very obedient and followed every command.", + "pos": "adjective", + "word_frequency": 26056 + }, + { + "word": "occultare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to hide;to conceal", + "romanization": "occultare", + "example_sentence_native": "Cercò di occultare le prove del suo crimine.", + "example_sentence_english": "He tried to hide the evidence of his crime.", + "pos": "verb", + "word_frequency": 26057 + }, + { + "word": "oculista", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "ophthalmologist;eye doctor", + "romanization": "oculista", + "example_sentence_native": "Devo prendere un appuntamento con l'oculista.", + "example_sentence_english": "I need to make an appointment with the eye doctor.", + "pos": "noun", + "word_frequency": 26058 + }, + { + "word": "oltraggioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "outrageous;insulting", + "romanization": "oltraggioso", + "example_sentence_native": "Le sue parole erano oltraggiose e inaccettabili.", + "example_sentence_english": "His words were outrageous and unacceptable.", + "pos": "adjective", + "word_frequency": 26059 + }, + { + "word": "omologare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to homologate;to approve;to standardize", + "romanization": "omologare", + "example_sentence_native": "Il nuovo modello di auto deve essere omologato prima della vendita.", + "example_sentence_english": "The new car model must be homologated before sale.", + "pos": "verb", + "word_frequency": 26060 + }, + { + "word": "oscillante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oscillating;wavering;fluctuating", + "romanization": "oscillante", + "example_sentence_native": "La luce oscillante della candela creava ombre danzanti.", + "example_sentence_english": "The oscillating light of the candle created dancing shadows.", + "pos": "adjective", + "word_frequency": 26061 + }, + { + "word": "ostentare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to flaunt;to show off;to display ostentatiously", + "romanization": "ostentare", + "example_sentence_native": "Non gli piace ostentare la sua ricchezza.", + "example_sentence_english": "He doesn't like to flaunt his wealth.", + "pos": "verb", + "word_frequency": 26062 + }, + { + "word": "ostico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "difficult;tough;thorny", + "romanization": "ostico", + "example_sentence_native": "L'argomento era piuttosto ostico da comprendere.", + "example_sentence_english": "The topic was quite difficult to understand.", + "pos": "adjective", + "word_frequency": 26063 + }, + { + "word": "parafrasi", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "paraphrase", + "romanization": "parafrasi", + "example_sentence_native": "Ha fornito una parafrasi chiara del testo originale.", + "example_sentence_english": "He provided a clear paraphrase of the original text.", + "pos": "noun", + "word_frequency": 26068 + }, + { + "word": "paramento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "vestment;ornament;furnishing", + "romanization": "paramento", + "example_sentence_native": "I paramenti sacri erano esposti nella sacrestia.", + "example_sentence_english": "The sacred vestments were displayed in the sacristy.", + "pos": "noun", + "word_frequency": 26069 + }, + { + "word": "parrocchiano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "parishioner", + "romanization": "parrocchiano", + "example_sentence_native": "Il prete salutò ogni parrocchiano dopo la messa.", + "example_sentence_english": "The priest greeted every parishioner after mass.", + "pos": "noun", + "word_frequency": 26072 + }, + { + "word": "peluria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "down;fuzz;fine hair", + "romanization": "peluria", + "example_sentence_native": "Aveva una leggera peluria sul viso.", + "example_sentence_english": "He had a light fuzz on his face.", + "pos": "noun", + "word_frequency": 26074 + }, + { + "word": "pescheria", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "fishmonger's;fish market", + "romanization": "pescheria", + "example_sentence_native": "Ho comprato del pesce fresco in pescheria.", + "example_sentence_english": "I bought some fresh fish at the fishmonger's.", + "pos": "noun", + "word_frequency": 26075 + }, + { + "word": "piovra", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "octopus", + "romanization": "piovra", + "example_sentence_native": "La piovra si mimetizzava perfettamente con il fondale marino.", + "example_sentence_english": "The octopus blended perfectly with the seabed.", + "pos": "noun", + "word_frequency": 26077 + }, + { + "word": "polemizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to polemicize;to argue;to dispute", + "romanization": "polemizzare", + "example_sentence_native": "Non mi piace polemizzare su questioni di poco conto.", + "example_sentence_english": "I don't like to argue about trivial matters.", + "pos": "verb", + "word_frequency": 26079 + }, + { + "word": "poliomielite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "poliomyelitis", + "romanization": "poliomielite", + "example_sentence_native": "La poliomielite è una malattia virale che può causare paralisi.", + "example_sentence_english": "Poliomyelitis is a viral disease that can cause paralysis.", + "pos": "noun", + "word_frequency": 26080 + }, + { + "word": "premeditazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "premeditation", + "romanization": "premeditazione", + "example_sentence_native": "L'omicidio è stato commesso con premeditazione.", + "example_sentence_english": "The murder was committed with premeditation.", + "pos": "noun", + "word_frequency": 26082 + }, + { + "word": "prepuzio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "foreskin", + "romanization": "prepuzio", + "example_sentence_native": "Il prepuzio è una piega di pelle che copre il glande.", + "example_sentence_english": "The foreskin is a fold of skin that covers the glans.", + "pos": "noun", + "word_frequency": 26083 + }, + { + "word": "priorita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "priority", + "romanization": "priorità", + "example_sentence_native": "La sicurezza è la nostra massima priorità.", + "example_sentence_english": "Safety is our top priority.", + "pos": "noun", + "word_frequency": 26085 + }, + { + "word": "probabilita", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "probability", + "romanization": "probabilità", + "example_sentence_native": "C'è una bassa probabilità di pioggia oggi.", + "example_sentence_english": "There is a low probability of rain today.", + "pos": "noun", + "word_frequency": 26086 + }, + { + "word": "probatorio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "probative;evidentiary", + "romanization": "probatorio", + "example_sentence_native": "Le prove presentate non erano sufficientemente probatorie.", + "example_sentence_english": "The evidence presented was not sufficiently probative.", + "pos": "adjective", + "word_frequency": 26087 + }, + { + "word": "protestantesimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Protestantism", + "romanization": "protestantesimo", + "example_sentence_native": "Il protestantesimo è una delle principali branche del cristianesimo.", + "example_sentence_english": "Protestantism is one of the main branches of Christianity.", + "pos": "noun", + "word_frequency": 26088 + }, + { + "word": "provveditore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendent;purveyor", + "romanization": "provveditore", + "example_sentence_native": "Il provveditore agli studi ha visitato la scuola.", + "example_sentence_english": "The superintendent of studies visited the school.", + "pos": "noun", + "word_frequency": 26089 + }, + { + "word": "pube", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "pubis", + "romanization": "pube", + "example_sentence_native": "L'osso del pube fa parte del bacino.", + "example_sentence_english": "The pubic bone is part of the pelvis.", + "pos": "noun", + "word_frequency": 26090 + }, + { + "word": "retributivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "remunerative;compensatory", + "romanization": "retributivo", + "example_sentence_native": "Il sistema retributivo dell'azienda è basato sulle prestazioni.", + "example_sentence_english": "The company's remuneration system is based on performance.", + "pos": "adjective", + "word_frequency": 26092 + }, + { + "word": "ricollegare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to reconnect;to link back", + "romanization": "ricollegare", + "example_sentence_native": "Dobbiamo ricollegare i cavi per far funzionare il sistema.", + "example_sentence_english": "We need to reconnect the cables to make the system work.", + "pos": "verb", + "word_frequency": 26093 + }, + { + "word": "rigoglioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lush;luxuriant;thriving", + "romanization": "rigoglioso", + "example_sentence_native": "Il giardino era rigoglioso di fiori e piante.", + "example_sentence_english": "The garden was lush with flowers and plants.", + "pos": "adjective", + "word_frequency": 26094 + }, + { + "word": "rinfrescare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to refresh;to cool down", + "romanization": "rinfrescare", + "example_sentence_native": "Vorrei rinfrescare la memoria su questo argomento.", + "example_sentence_english": "I would like to refresh my memory on this topic.", + "pos": "verb", + "word_frequency": 26095 + }, + { + "word": "risolutezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resoluteness;determination", + "romanization": "risolutezza", + "example_sentence_native": "Ha affrontato la sfida con grande risolutezza.", + "example_sentence_english": "He faced the challenge with great resoluteness.", + "pos": "noun", + "word_frequency": 26096 + }, + { + "word": "rodeo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rodeo", + "romanization": "rodeo", + "example_sentence_native": "Il rodeo è uno sport equestre popolare in America.", + "example_sentence_english": "Rodeo is a popular equestrian sport in America.", + "pos": "noun", + "word_frequency": 26097 + }, + { + "word": "sabaudo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Savoyard (relating to the House of Savoy)", + "romanization": "sabaudo", + "example_sentence_native": "La dinastia sabauda ha regnato sull'Italia per molti anni.", + "example_sentence_english": "The Savoyard dynasty ruled Italy for many years.", + "pos": "adjective", + "word_frequency": 26098 + }, + { + "word": "salesiano", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Salesian (member of the Salesian order)", + "romanization": "salesiano", + "example_sentence_native": "I Salesiani sono noti per il loro lavoro educativo.", + "example_sentence_english": "The Salesians are known for their educational work.", + "pos": "noun", + "word_frequency": 26100 + }, + { + "word": "salvietta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "napkin;wipe;towel", + "romanization": "salvietta", + "example_sentence_native": "Per favore, passami una salvietta per pulire.", + "example_sentence_english": "Please pass me a wipe to clean up.", + "pos": "noun", + "word_frequency": 26101 + }, + { + "word": "scambista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "railway switchman", + "romanization": "scambista", + "example_sentence_native": "Lo scambista ha azionato il meccanismo per cambiare binario.", + "example_sentence_english": "The switchman operated the mechanism to change tracks.", + "pos": "noun", + "word_frequency": 26103 + }, + { + "word": "scarabocchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "scribble;doodle", + "romanization": "scarabocchio", + "example_sentence_native": "Il bambino ha fatto uno scarabocchio sul muro.", + "example_sentence_english": "The child made a scribble on the wall.", + "pos": "noun", + "word_frequency": 26104 + }, + { + "word": "schifare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to disgust;to avoid", + "romanization": "schifare", + "example_sentence_native": "Non schifare le verdure, sono importanti.", + "example_sentence_english": "Don't avoid vegetables, they are important.", + "pos": "verb", + "word_frequency": 26105 + }, + { + "word": "sedizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sedition", + "romanization": "sedizione", + "example_sentence_native": "È stato accusato di sedizione contro lo stato.", + "example_sentence_english": "He was accused of sedition against the state.", + "pos": "noun", + "word_frequency": 26106 + }, + { + "word": "sempreverde", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "evergreen", + "romanization": "sempreverde", + "example_sentence_native": "Il pino è un albero sempreverde.", + "example_sentence_english": "The pine is an evergreen tree.", + "pos": "adjective", + "word_frequency": 26110 + }, + { + "word": "slittamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "slippage;delay;slide", + "romanization": "slittamento", + "example_sentence_native": "C'è stato uno slittamento nella data di consegna.", + "example_sentence_english": "There was a delay in the delivery date.", + "pos": "noun", + "word_frequency": 26119 + }, + { + "word": "socialdemocrazia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "social democracy", + "romanization": "socialdemocrazia", + "example_sentence_native": "La socialdemocrazia è un sistema politico.", + "example_sentence_english": "Social democracy is a political system.", + "pos": "noun", + "word_frequency": 26121 + }, + { + "word": "sommozzatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "diver", + "romanization": "sommozzatore", + "example_sentence_native": "Il sommozzatore esplorava il relitto.", + "example_sentence_english": "The diver explored the shipwreck.", + "pos": "noun", + "word_frequency": 26122 + }, + { + "word": "soprabito", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "overcoat", + "romanization": "soprabito", + "example_sentence_native": "Indossava un elegante soprabito nero.", + "example_sentence_english": "He was wearing an elegant black overcoat.", + "pos": "noun", + "word_frequency": 26123 + }, + { + "word": "sparatutto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shooter (video game genre)", + "romanization": "sparatutto", + "example_sentence_native": "Il suo videogioco preferito è uno sparatutto.", + "example_sentence_english": "His favorite video game is a shooter.", + "pos": "noun", + "word_frequency": 26124 + }, + { + "word": "specializzando", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "resident (medical);specialist in training", + "romanization": "specializzando", + "example_sentence_native": "Lo specializzando ha assistito all'operazione.", + "example_sentence_english": "The resident assisted in the operation.", + "pos": "noun", + "word_frequency": 26125 + }, + { + "word": "splatter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "splatter (genre)", + "romanization": "splatter", + "example_sentence_native": "Non mi piacciono i film splatter.", + "example_sentence_english": "I don't like splatter films.", + "pos": "noun", + "word_frequency": 26127 + }, + { + "word": "squillare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to ring (phone;bell)", + "romanization": "squillare", + "example_sentence_native": "Il telefono ha iniziato a squillare.", + "example_sentence_english": "The phone started to ring.", + "pos": "verb", + "word_frequency": 26128 + }, + { + "word": "stancare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tire;to weary", + "romanization": "stancare", + "example_sentence_native": "Il lungo viaggio mi ha stancato molto.", + "example_sentence_english": "The long journey tired me a lot.", + "pos": "verb", + "word_frequency": 26129 + }, + { + "word": "sterrato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "unpaved;dirt (road)", + "romanization": "sterrato", + "example_sentence_native": "La strada era sterrata e piena di buche.", + "example_sentence_english": "The road was unpaved and full of potholes.", + "pos": "adjective", + "word_frequency": 26130 + }, + { + "word": "stravaganza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "extravagance;eccentricity", + "romanization": "stravaganza", + "example_sentence_native": "La sua stravaganza era nota a tutti.", + "example_sentence_english": "His extravagance was known to everyone.", + "pos": "noun", + "word_frequency": 26131 + }, + { + "word": "sudovest", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "southwest", + "romanization": "sudovest", + "example_sentence_native": "La casa è orientata a sudovest.", + "example_sentence_english": "The house faces southwest.", + "pos": "noun", + "word_frequency": 26132 + }, + { + "word": "swap", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "swap", + "romanization": "swap", + "example_sentence_native": "Hanno fatto uno swap di case per le vacanze.", + "example_sentence_english": "They did a house swap for the holidays.", + "pos": "noun", + "word_frequency": 26136 + }, + { + "word": "tarantella", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tarantella (Italian folk dance)", + "romanization": "tarantella", + "example_sentence_native": "La tarantella è una danza tradizionale del sud Italia.", + "example_sentence_english": "The tarantella is a traditional dance from Southern Italy.", + "pos": "noun", + "word_frequency": 26138 + }, + { + "word": "tendina", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small curtain;blind", + "romanization": "tendina", + "example_sentence_native": "Ho comprato una nuova tendina per la finestra del bagno.", + "example_sentence_english": "I bought a new small curtain for the bathroom window.", + "pos": "noun", + "word_frequency": 26140 + }, + { + "word": "terminazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "termination;ending", + "romanization": "terminazione", + "example_sentence_native": "La terminazione del contratto è prevista per giugno.", + "example_sentence_english": "The termination of the contract is scheduled for June.", + "pos": "noun", + "word_frequency": 26141 + }, + { + "word": "tombino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manhole;drain cover", + "romanization": "tombino", + "example_sentence_native": "Il tombino era sollevato e pericoloso.", + "example_sentence_english": "The manhole cover was raised and dangerous.", + "pos": "noun", + "word_frequency": 26145 + }, + { + "word": "torba", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "peat", + "romanization": "torba", + "example_sentence_native": "La torba è usata come combustibile.", + "example_sentence_english": "Peat is used as fuel.", + "pos": "noun", + "word_frequency": 26146 + }, + { + "word": "trace", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "trace (e.g.;network trace)", + "romanization": "trace", + "example_sentence_native": "Abbiamo bisogno di una trace del pacchetto di rete.", + "example_sentence_english": "We need a trace of the network packet.", + "pos": "noun", + "word_frequency": 26147 + }, + { + "word": "tracklist", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "tracklist", + "romanization": "tracklist", + "example_sentence_native": "La tracklist dell'album è stata pubblicata.", + "example_sentence_english": "The album's tracklist has been published.", + "pos": "noun", + "word_frequency": 26148 + }, + { + "word": "trasgressivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "transgressive;rebellious", + "romanization": "trasgressivo", + "example_sentence_native": "Il suo stile è molto trasgressivo.", + "example_sentence_english": "His style is very transgressive.", + "pos": "adjective", + "word_frequency": 26149 + }, + { + "word": "trentamila", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "thirty thousand", + "romanization": "trentamila", + "example_sentence_native": "Hanno venduto trentamila copie del libro.", + "example_sentence_english": "They sold thirty thousand copies of the book.", + "pos": "noun", + "word_frequency": 26150 + }, + { + "word": "trentotto", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty-eight", + "romanization": "trentotto", + "example_sentence_native": "Il suo numero fortunato è trentotto.", + "example_sentence_english": "His lucky number is thirty-eight.", + "pos": "noun", + "word_frequency": 26151 + }, + { + "word": "tribute", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tribute (e.g.;tribute band)", + "romanization": "tribute", + "example_sentence_native": "La band ha suonato un concerto tribute ai Queen.", + "example_sentence_english": "The band played a Queen tribute concert.", + "pos": "noun", + "word_frequency": 26152 + }, + { + "word": "trojan", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Trojan (horse;computer virus)", + "romanization": "trojan", + "example_sentence_native": "Il suo computer è stato infettato da un trojan.", + "example_sentence_english": "His computer was infected by a Trojan.", + "pos": "noun", + "word_frequency": 26153 + }, + { + "word": "turbolento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "turbulent", + "romanization": "turbolento", + "example_sentence_native": "Abbiamo attraversato una zona di aria turbolenta.", + "example_sentence_english": "We passed through an area of turbulent air.", + "pos": "adjective", + "word_frequency": 26154 + }, + { + "word": "urinario", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "urinario", + "romanization": "urinario", + "example_sentence_native": "Ha un'infezione del tratto urinario.", + "example_sentence_english": "He has a urinary tract infection.", + "pos": "adjective", + "word_frequency": 26156 + }, + { + "word": "vaccaro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cowboy;cowherd", + "romanization": "vaccaro", + "example_sentence_native": "Il vaccaro radunava le mucche.", + "example_sentence_english": "The cowboy rounded up the cows.", + "pos": "noun", + "word_frequency": 26157 + }, + { + "word": "vertiginoso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dizzying", + "romanization": "vertiginoso", + "example_sentence_native": "La salita era vertiginosa.", + "example_sentence_english": "The climb was dizzying.", + "pos": "adjective", + "word_frequency": 26164 + }, + { + "word": "vimine", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "wicker", + "romanization": "vimine", + "example_sentence_native": "Il cesto è fatto di vimine.", + "example_sentence_english": "The basket is made of wicker.", + "pos": "noun", + "word_frequency": 26167 + }, + { + "word": "voglioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eager", + "romanization": "voglioso", + "example_sentence_native": "Era voglioso di imparare cose nuove.", + "example_sentence_english": "He was eager to learn new things.", + "pos": "adjective", + "word_frequency": 26169 + }, + { + "word": "acciaieria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "steelworks", + "romanization": "acciaieria", + "example_sentence_native": "L'acciaieria locale impiega molti operai.", + "example_sentence_english": "The local steelworks employs many workers.", + "pos": "noun", + "word_frequency": 26178 + }, + { + "word": "accusatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "accuser", + "romanization": "accusatore", + "example_sentence_native": "L'accusatore ha presentato nuove prove.", + "example_sentence_english": "The accuser presented new evidence.", + "pos": "noun", + "word_frequency": 26179 + }, + { + "word": "aerazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "ventilation", + "romanization": "aerazione", + "example_sentence_native": "È necessaria una buona aerazione in questo ambiente.", + "example_sentence_english": "Good ventilation is necessary in this environment.", + "pos": "noun", + "word_frequency": 26181 + }, + { + "word": "affettare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to slice", + "romanization": "affettare", + "example_sentence_native": "Puoi affettare il pane, per favore?", + "example_sentence_english": "Can you slice the bread, please?", + "pos": "verb", + "word_frequency": 26183 + }, + { + "word": "agostiniano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Augustinian", + "romanization": "agostiniano", + "example_sentence_native": "Ha studiato in un monastero agostiniano.", + "example_sentence_english": "He studied in an Augustinian monastery.", + "pos": "noun", + "word_frequency": 26184 + }, + { + "word": "alchimista", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alchemist", + "romanization": "alchimista", + "example_sentence_native": "L'alchimista cercava la pietra filosofale.", + "example_sentence_english": "The alchemist was searching for the philosopher's stone.", + "pos": "noun", + "word_frequency": 26185 + }, + { + "word": "allacciamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "connection", + "romanization": "allacciamento", + "example_sentence_native": "È necessario un allacciamento alla rete idrica.", + "example_sentence_english": "A connection to the water supply is necessary.", + "pos": "noun", + "word_frequency": 26191 + }, + { + "word": "ammiraglia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flagship", + "romanization": "ammiraglia", + "example_sentence_native": "La nuova auto è l'ammiraglia della loro gamma.", + "example_sentence_english": "The new car is the flagship of their range.", + "pos": "noun", + "word_frequency": 26193 + }, + { + "word": "ammorbidire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to soften", + "romanization": "ammorbidire", + "example_sentence_native": "Devi ammorbidire il burro prima di usarlo.", + "example_sentence_english": "You need to soften the butter before using it.", + "pos": "verb", + "word_frequency": 26194 + }, + { + "word": "anonimamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anonymously", + "romanization": "anonimamente", + "example_sentence_native": "Ha donato i soldi anonimamente.", + "example_sentence_english": "He donated the money anonymously.", + "pos": "adverb", + "word_frequency": 26195 + }, + { + "word": "assiale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "axial", + "romanization": "assiale", + "example_sentence_native": "La rotazione assiale della Terra causa l'alternarsi del giorno e della notte.", + "example_sentence_english": "The axial rotation of the Earth causes the alternation of day and night.", + "pos": "adjective", + "word_frequency": 26200 + }, + { + "word": "associativo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "associative", + "romanization": "associativo", + "example_sentence_native": "Il pensiero associativo è fondamentale per la creatività.", + "example_sentence_english": "Associative thinking is fundamental for creativity.", + "pos": "adjective", + "word_frequency": 26201 + }, + { + "word": "attanagliare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to grip;to torment", + "romanization": "attanagliare", + "example_sentence_native": "La paura lo attanagliava ogni volta che doveva parlare in pubblico.", + "example_sentence_english": "Fear gripped him every time he had to speak in public.", + "pos": "verb", + "word_frequency": 26202 + }, + { + "word": "avance", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "advance (payment)", + "romanization": "avance", + "example_sentence_native": "Ho chiesto un'avance sullo stipendio per coprire le spese impreviste.", + "example_sentence_english": "I asked for an advance on my salary to cover unexpected expenses.", + "pos": "noun", + "word_frequency": 26203 + }, + { + "word": "avvistare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sight;to spot", + "romanization": "avvistare", + "example_sentence_native": "I marinai avvistarono terra dopo settimane di navigazione.", + "example_sentence_english": "The sailors sighted land after weeks of navigation.", + "pos": "verb", + "word_frequency": 26204 + }, + { + "word": "beninteso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "of course;naturally", + "romanization": "beninteso", + "example_sentence_native": "La proposta è interessante, beninteso, ma dobbiamo valutarne i costi.", + "example_sentence_english": "The proposal is interesting, of course, but we need to evaluate its costs.", + "pos": "adverb", + "word_frequency": 26212 + }, + { + "word": "bimestrale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bimonthly;every two months", + "romanization": "bimestrale", + "example_sentence_native": "La rivista è una pubblicazione bimestrale.", + "example_sentence_english": "The magazine is a bimonthly publication.", + "pos": "adjective", + "word_frequency": 26215 + }, + { + "word": "biscottino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "small biscuit;cookie", + "romanization": "biscottino", + "example_sentence_native": "Ho bevuto il caffè con un biscottino.", + "example_sentence_english": "I drank coffee with a small cookie.", + "pos": "noun", + "word_frequency": 26216 + }, + { + "word": "boliviano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Bolivian", + "romanization": "boliviano", + "example_sentence_native": "La cucina boliviana è ricca di sapori.", + "example_sentence_english": "Bolivian cuisine is rich in flavors.", + "pos": "adjective", + "word_frequency": 26219 + }, + { + "word": "burbero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gruff;surly", + "romanization": "burbero", + "example_sentence_native": "Nonostante il suo aspetto burbero, aveva un cuore d'oro.", + "example_sentence_english": "Despite his gruff appearance, he had a heart of gold.", + "pos": "adjective", + "word_frequency": 26223 + }, + { + "word": "camposanto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cemetery;graveyard", + "romanization": "camposanto", + "example_sentence_native": "Il camposanto si trova vicino alla chiesa principale.", + "example_sentence_english": "The cemetery is located near the main church.", + "pos": "noun", + "word_frequency": 26226 + }, + { + "word": "candore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "candor;purity", + "romanization": "candore", + "example_sentence_native": "Il candore della neve fresca era abbagliante.", + "example_sentence_english": "The candor of the fresh snow was dazzling.", + "pos": "noun", + "word_frequency": 26227 + }, + { + "word": "cannibalismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cannibalism", + "romanization": "cannibalismo", + "example_sentence_native": "Il cannibalismo è una pratica rara e culturalmente complessa.", + "example_sentence_english": "Cannibalism is a rare and culturally complex practice.", + "pos": "noun", + "word_frequency": 26228 + }, + { + "word": "capriccioso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "capricious;whimsical", + "romanization": "capriccioso", + "example_sentence_native": "Il tempo in montagna è molto capriccioso.", + "example_sentence_english": "The weather in the mountains is very capricious.", + "pos": "adjective", + "word_frequency": 26229 + }, + { + "word": "cardigan", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "cardigan", + "romanization": "cardigan", + "example_sentence_native": "Ho indossato un cardigan leggero per la sera.", + "example_sentence_english": "I wore a light cardigan for the evening.", + "pos": "noun", + "word_frequency": 26230 + }, + { + "word": "carretta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cart;wagon", + "romanization": "carretta", + "example_sentence_native": "Il contadino spingeva la carretta piena di fieno.", + "example_sentence_english": "The farmer pushed the cart full of hay.", + "pos": "noun", + "word_frequency": 26233 + }, + { + "word": "ciuccio", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "pacifier;donkey (colloquial)", + "romanization": "ciuccio", + "example_sentence_native": "Il bambino non vuole lasciare il suo ciuccio.", + "example_sentence_english": "The baby doesn't want to let go of his pacifier.", + "pos": "noun", + "word_frequency": 26241 + }, + { + "word": "coadiutore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assistant;coadjutor", + "romanization": "coadiutore", + "example_sentence_native": "Il coadiutore ha aiutato il professore nella ricerca.", + "example_sentence_english": "The assistant helped the professor with the research.", + "pos": "noun", + "word_frequency": 26244 + }, + { + "word": "colluttazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scuffle;struggle", + "romanization": "colluttazione", + "example_sentence_native": "C'è stata una breve colluttazione prima che la polizia arrivasse.", + "example_sentence_english": "There was a brief scuffle before the police arrived.", + "pos": "noun", + "word_frequency": 26245 + }, + { + "word": "compliance", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "compliance", + "romanization": "compliance", + "example_sentence_native": "L'azienda deve garantire la piena compliance con le nuove normative.", + "example_sentence_english": "The company must ensure full compliance with the new regulations.", + "pos": "noun", + "word_frequency": 26246 + }, + { + "word": "compromettente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "compromising;damaging", + "romanization": "compromettente", + "example_sentence_native": "Ha trovato delle prove compromettenti contro il politico.", + "example_sentence_english": "He found compromising evidence against the politician.", + "pos": "adjective", + "word_frequency": 26247 + }, + { + "word": "contropartita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "counterpart;consideration;quid pro quo", + "romanization": "contropartita", + "example_sentence_native": "Non c'è stata alcuna contropartita per il suo aiuto.", + "example_sentence_english": "There was no consideration for his help.", + "pos": "noun", + "word_frequency": 26248 + }, + { + "word": "controtendenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "counter-trend", + "romanization": "controtendenza", + "example_sentence_native": "Il suo stile è sempre stato in controtendenza rispetto alla moda attuale.", + "example_sentence_english": "His style has always been a counter-trend compared to current fashion.", + "pos": "noun", + "word_frequency": 26249 + }, + { + "word": "crunch", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "crunch (as in 'crunch time' or 'sound of crunching')", + "romanization": "crunch", + "example_sentence_native": "Siamo nel periodo di crunch prima della consegna del progetto.", + "example_sentence_english": "We are in the crunch period before the project delivery.", + "pos": "noun", + "word_frequency": 26252 + }, + { + "word": "desinenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "ending (grammatical)", + "romanization": "desinenza", + "example_sentence_native": "La desinenza del verbo cambia a seconda della persona.", + "example_sentence_english": "The verb ending changes according to the person.", + "pos": "noun", + "word_frequency": 26266 + }, + { + "word": "distilleria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distillery", + "romanization": "distilleria", + "example_sentence_native": "La distilleria produce un ottimo whisky.", + "example_sentence_english": "The distillery produces an excellent whisky.", + "pos": "noun", + "word_frequency": 26271 + }, + { + "word": "divinamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "divinely;wonderfully", + "romanization": "divinamente", + "example_sentence_native": "La cena era divinamente buona.", + "example_sentence_english": "The dinner was divinely good.", + "pos": "adverb", + "word_frequency": 26272 + }, + { + "word": "donnaiolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "womanizer;ladies' man", + "romanization": "donnaiolo", + "example_sentence_native": "È conosciuto in città come un vero donnaiolo.", + "example_sentence_english": "He is known in town as a real womanizer.", + "pos": "noun", + "word_frequency": 26273 + }, + { + "word": "duale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dual", + "romanization": "duale", + "example_sentence_native": "Il sistema ha una funzione duale.", + "example_sentence_english": "The system has a dual function.", + "pos": "adjective", + "word_frequency": 26275 + }, + { + "word": "duplicato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "duplicate;copy", + "romanization": "duplicato", + "example_sentence_native": "Ho bisogno di un duplicato della chiave.", + "example_sentence_english": "I need a duplicate of the key.", + "pos": "noun", + "word_frequency": 26276 + }, + { + "word": "eclettismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "eclecticism", + "romanization": "eclettismo", + "example_sentence_native": "Il suo stile artistico è caratterizzato da un forte eclettismo.", + "example_sentence_english": "His artistic style is characterized by strong eclecticism.", + "pos": "noun", + "word_frequency": 26278 + }, + { + "word": "economicità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cost-effectiveness;economy", + "romanization": "economicità", + "example_sentence_native": "Dobbiamo valutare l'economicità del progetto.", + "example_sentence_english": "We need to evaluate the cost-effectiveness of the project.", + "pos": "noun", + "word_frequency": 26279 + }, + { + "word": "energicamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "energetically", + "romanization": "energicamente", + "example_sentence_native": "Ha lavorato energicamente per finire il progetto in tempo.", + "example_sentence_english": "He worked energetically to finish the project on time.", + "pos": "adverb", + "word_frequency": 26281 + }, + { + "word": "estintore", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fire extinguisher", + "romanization": "estintore", + "example_sentence_native": "In caso di incendio, usa l'estintore più vicino.", + "example_sentence_english": "In case of fire, use the nearest fire extinguisher.", + "pos": "noun", + "word_frequency": 26285 + }, + { + "word": "estromettere", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to exclude;to oust", + "romanization": "estromettere", + "example_sentence_native": "Hanno deciso di estromettere il membro dal consiglio.", + "example_sentence_english": "They decided to oust the member from the board.", + "pos": "verb", + "word_frequency": 26286 + }, + { + "word": "europarlamentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Member of the European Parliament (MEP)", + "romanization": "europarlamentare", + "example_sentence_native": "L'europarlamentare ha votato a favore della nuova legge.", + "example_sentence_english": "The MEP voted in favor of the new law.", + "pos": "noun", + "word_frequency": 26287 + }, + { + "word": "extraconiugale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "extramarital", + "romanization": "extraconiugale", + "example_sentence_native": "La relazione extraconiugale ha causato molti problemi.", + "example_sentence_english": "The extramarital affair caused many problems.", + "pos": "adjective", + "word_frequency": 26289 + }, + { + "word": "fervido", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fervent;ardent", + "romanization": "fervido", + "example_sentence_native": "Ha espresso un fervido desiderio di pace.", + "example_sentence_english": "He expressed a fervent desire for peace.", + "pos": "adjective", + "word_frequency": 26290 + }, + { + "word": "festino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "party;bash", + "romanization": "festino", + "example_sentence_native": "Hanno organizzato un piccolo festino per il suo compleanno.", + "example_sentence_english": "They organized a small party for his birthday.", + "pos": "noun", + "word_frequency": 26291 + }, + { + "word": "festoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "festive;joyful", + "romanization": "festoso", + "example_sentence_native": "L'atmosfera era molto festosa durante le celebrazioni.", + "example_sentence_english": "The atmosphere was very festive during the celebrations.", + "pos": "adjective", + "word_frequency": 26292 + }, + { + "word": "fetore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stench;reek", + "romanization": "fetore", + "example_sentence_native": "Un orribile fetore proveniva dalla spazzatura.", + "example_sentence_english": "A horrible stench came from the garbage.", + "pos": "noun", + "word_frequency": 26293 + }, + { + "word": "fluoro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fluorine;fluoride", + "romanization": "fluoro", + "example_sentence_native": "Il fluoro è importante per la salute dei denti.", + "example_sentence_english": "Fluoride is important for tooth health.", + "pos": "noun", + "word_frequency": 26298 + }, + { + "word": "giacobino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Jacobin", + "romanization": "giacobino", + "example_sentence_native": "I giacobini furono un'importante fazione politica durante la Rivoluzione Francese.", + "example_sentence_english": "The Jacobins were an important political faction during the French Revolution.", + "pos": "noun", + "word_frequency": 26304 + }, + { + "word": "imbarcato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "embarked;boarded", + "romanization": "imbarcato", + "example_sentence_native": "Il passeggero era già imbarcato quando l'aereo ha chiuso i portelloni.", + "example_sentence_english": "The passenger was already embarked when the plane closed its doors.", + "pos": "adjective", + "word_frequency": 26320 + }, + { + "word": "immobilizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "immobilized", + "romanization": "immobilizzato", + "example_sentence_native": "Dopo l'incidente, la sua gamba era immobilizzata in un gesso.", + "example_sentence_english": "After the accident, his leg was immobilized in a cast.", + "pos": "adjective", + "word_frequency": 26321 + }, + { + "word": "inondato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "flooded", + "romanization": "inondato", + "example_sentence_native": "Il campo era completamente inondato dopo la forte pioggia.", + "example_sentence_english": "The field was completely flooded after the heavy rain.", + "pos": "adjective", + "word_frequency": 26323 + }, + { + "word": "inscenare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to stage;to orchestrate", + "romanization": "inscenare", + "example_sentence_native": "Hanno deciso di inscenare una protesta pacifica davanti al municipio.", + "example_sentence_english": "They decided to stage a peaceful protest in front of the town hall.", + "pos": "verb", + "word_frequency": 26324 + }, + { + "word": "intonare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to intone;to sing in tune", + "romanization": "intonare", + "example_sentence_native": "Il coro ha iniziato a intonare un canto natalizio.", + "example_sentence_english": "The choir began to intone a Christmas carol.", + "pos": "verb", + "word_frequency": 26326 + }, + { + "word": "ippopotamo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "hippopotamus", + "romanization": "ippopotamo", + "example_sentence_native": "L'ippopotamo vive in Africa e passa molto tempo nell'acqua.", + "example_sentence_english": "The hippopotamus lives in Africa and spends a lot of time in the water.", + "pos": "noun", + "word_frequency": 26328 + }, + { + "word": "irradiare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to radiate", + "romanization": "irradiare", + "example_sentence_native": "Il sole inizia a irradiare calore non appena sorge.", + "example_sentence_english": "The sun begins to radiate heat as soon as it rises.", + "pos": "verb", + "word_frequency": 26329 + }, + { + "word": "laborioso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "laborious;painstaking", + "romanization": "laborioso", + "example_sentence_native": "Il progetto era molto laborioso e richiedeva molta attenzione ai dettagli.", + "example_sentence_english": "The project was very laborious and required a lot of attention to detail.", + "pos": "adjective", + "word_frequency": 26340 + }, + { + "word": "lazzaretto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lazaret;quarantine hospital", + "romanization": "lazzaretto", + "example_sentence_native": "Durante la peste, i malati venivano isolati nel lazzaretto.", + "example_sentence_english": "During the plague, the sick were isolated in the lazaret.", + "pos": "noun", + "word_frequency": 26343 + }, + { + "word": "levatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "midwife", + "romanization": "levatrice", + "example_sentence_native": "La levatrice ha assistito la donna durante il parto.", + "example_sentence_english": "The midwife assisted the woman during childbirth.", + "pos": "noun", + "word_frequency": 26344 + }, + { + "word": "macchinazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "machination;plot", + "romanization": "macchinazione", + "example_sentence_native": "La polizia ha scoperto una complessa macchinazione per frodare la banca.", + "example_sentence_english": "The police uncovered a complex machination to defraud the bank.", + "pos": "noun", + "word_frequency": 26352 + }, + { + "word": "mammut", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mammoth", + "romanization": "mammut", + "example_sentence_native": "Il mammut lanoso è un animale estinto dell'era glaciale.", + "example_sentence_english": "The woolly mammoth is an extinct animal from the ice age.", + "pos": "noun", + "word_frequency": 26353 + }, + { + "word": "marchesato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "marquisate", + "romanization": "marchesato", + "example_sentence_native": "Il marchesato era un territorio governato da un marchese.", + "example_sentence_english": "The marquisate was a territory governed by a marquis.", + "pos": "noun", + "word_frequency": 26354 + }, + { + "word": "massimale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "maximum;highest", + "romanization": "massimale", + "example_sentence_native": "Il massimale di copertura assicurativa è di 1 milione di euro.", + "example_sentence_english": "The maximum insurance coverage is 1 million euros.", + "pos": "adjective", + "word_frequency": 26356 + }, + { + "word": "millennial", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "millennial", + "romanization": "millennial", + "example_sentence_native": "I millennial sono cresciuti con la tecnologia.", + "example_sentence_english": "Millennials grew up with technology.", + "pos": "noun", + "word_frequency": 26361 + }, + { + "word": "mimetico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "camouflage;mimetic", + "romanization": "mimetico", + "example_sentence_native": "L'esercito usa uniformi mimetiche.", + "example_sentence_english": "The army uses camouflage uniforms.", + "pos": "adjective", + "word_frequency": 26362 + }, + { + "word": "moribondo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dying;moribund", + "romanization": "moribondo", + "example_sentence_native": "Il vecchio albero sembrava moribondo dopo la tempesta.", + "example_sentence_english": "The old tree looked moribund after the storm.", + "pos": "adjective", + "word_frequency": 26367 + }, + { + "word": "neoclassico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neoclassical", + "romanization": "neoclassico", + "example_sentence_native": "L'architettura neoclassica è molto elegante.", + "example_sentence_english": "Neoclassical architecture is very elegant.", + "pos": "adjective", + "word_frequency": 26369 + }, + { + "word": "neonatale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "neonatal", + "romanization": "neonatale", + "example_sentence_native": "Il reparto neonatale si occupa dei bambini appena nati.", + "example_sentence_english": "The neonatal ward takes care of newborn babies.", + "pos": "adjective", + "word_frequency": 26370 + }, + { + "word": "obsolescenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "obsolescence", + "romanization": "obsolescenza", + "example_sentence_native": "L'obsolescenza programmata è un problema moderno.", + "example_sentence_english": "Planned obsolescence is a modern problem.", + "pos": "noun", + "word_frequency": 26374 + }, + { + "word": "oliveto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "olive grove", + "romanization": "oliveto", + "example_sentence_native": "La Toscana è famosa per i suoi oliveti.", + "example_sentence_english": "Tuscany is famous for its olive groves.", + "pos": "noun", + "word_frequency": 26375 + }, + { + "word": "operatrice", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "operator (female);worker (female)", + "romanization": "operatrice", + "example_sentence_native": "L'operatrice del call center mi ha aiutato.", + "example_sentence_english": "The call center operator helped me.", + "pos": "noun", + "word_frequency": 26377 + }, + { + "word": "orbitale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "orbital", + "romanization": "orbitale", + "example_sentence_native": "La stazione spaziale ha un'orbita orbitale.", + "example_sentence_english": "The space station has an orbital path.", + "pos": "adjective", + "word_frequency": 26379 + }, + { + "word": "orecchiabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "catchy (e.g.;a song)", + "romanization": "orecchiabile", + "example_sentence_native": "Questa canzone è molto orecchiabile.", + "example_sentence_english": "This song is very catchy.", + "pos": "adjective", + "word_frequency": 26380 + }, + { + "word": "ossatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skeleton;framework", + "romanization": "ossatura", + "example_sentence_native": "L'ossatura dell'edificio è in acciaio.", + "example_sentence_english": "The framework of the building is made of steel.", + "pos": "noun", + "word_frequency": 26383 + }, + { + "word": "ottimizzato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "optimized", + "romanization": "ottimizzato", + "example_sentence_native": "Il software è stato ottimizzato per la velocità.", + "example_sentence_english": "The software has been optimized for speed.", + "pos": "adjective", + "word_frequency": 26384 + }, + { + "word": "parterre", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parterre;ground floor (theater)", + "romanization": "parterre", + "example_sentence_native": "Abbiamo comprato i biglietti per il parterre.", + "example_sentence_english": "We bought tickets for the parterre.", + "pos": "noun", + "word_frequency": 26386 + }, + { + "word": "parzialità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "partiality;bias", + "romanization": "parzialità", + "example_sentence_native": "Il giudice è stato accusato di parzialità.", + "example_sentence_english": "The judge was accused of partiality.", + "pos": "noun", + "word_frequency": 26387 + }, + { + "word": "pattuito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "agreed upon;stipulated", + "romanization": "pattuito", + "example_sentence_native": "Il prezzo pattuito era di 100 euro.", + "example_sentence_english": "The agreed-upon price was 100 euros.", + "pos": "adjective", + "word_frequency": 26388 + }, + { + "word": "pennetta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "USB stick;flash drive", + "romanization": "pennetta", + "example_sentence_native": "Ho salvato i file sulla pennetta USB.", + "example_sentence_english": "I saved the files on the USB stick.", + "pos": "noun", + "word_frequency": 26390 + }, + { + "word": "perfezionato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "perfected;improved", + "romanization": "perfezionato", + "example_sentence_native": "Ha un metodo di studio perfezionato.", + "example_sentence_english": "He has a perfected study method.", + "pos": "adjective", + "word_frequency": 26392 + }, + { + "word": "pianterreno", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "ground floor", + "romanization": "pianterreno", + "example_sentence_native": "Il nostro appartamento è al pianterreno.", + "example_sentence_english": "Our apartment is on the ground floor.", + "pos": "noun", + "word_frequency": 26393 + }, + { + "word": "pignolo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "meticulous;fussy;nitpicky", + "romanization": "pignolo", + "example_sentence_native": "È molto pignolo riguardo alla pulizia.", + "example_sentence_english": "He is very meticulous about cleanliness.", + "pos": "adjective", + "word_frequency": 26395 + }, + { + "word": "piombare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to plummet;to fall heavily;to burst in", + "romanization": "piombare", + "example_sentence_native": "Il prezzo delle azioni è piombato.", + "example_sentence_english": "The stock price plummeted.", + "pos": "verb", + "word_frequency": 26396 + }, + { + "word": "pizzicare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pinch;to pluck (strings);to sting (insect)", + "romanization": "pizzicare", + "example_sentence_native": "La zanzara mi ha pizzicato.", + "example_sentence_english": "The mosquito stung me.", + "pos": "verb", + "word_frequency": 26398 + }, + { + "word": "plc", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "PLC (Programmable Logic Controller)", + "romanization": "plc", + "example_sentence_native": "Il PLC controlla il processo di automazione.", + "example_sentence_english": "The PLC controls the automation process.", + "pos": "noun", + "word_frequency": 26399 + }, + { + "word": "politeama", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "polytheatre (a type of theatre)", + "romanization": "politeama", + "example_sentence_native": "Il Politeama Garibaldi è un famoso teatro a Palermo.", + "example_sentence_english": "The Politeama Garibaldi is a famous theatre in Palermo.", + "pos": "noun", + "word_frequency": 26400 + }, + { + "word": "pompelmo", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "grapefruit", + "romanization": "pompelmo", + "example_sentence_native": "Mi piace mangiare il pompelmo a colazione.", + "example_sentence_english": "I like to eat grapefruit for breakfast.", + "pos": "noun", + "word_frequency": 26401 + }, + { + "word": "pregiudicato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "with a criminal record;convicted", + "romanization": "pregiudicato", + "example_sentence_native": "L'uomo era un pregiudicato con diversi precedenti.", + "example_sentence_english": "The man was a convicted person with several previous offenses.", + "pos": "adjective", + "word_frequency": 26403 + }, + { + "word": "pressato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "pressed;hurried", + "romanization": "pressato", + "example_sentence_native": "Mi sento molto pressato dal lavoro ultimamente.", + "example_sentence_english": "I feel very pressed by work lately.", + "pos": "adjective", + "word_frequency": 26404 + }, + { + "word": "prestatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lender", + "romanization": "prestatore", + "example_sentence_native": "La banca è il principale prestatore di fondi.", + "example_sentence_english": "The bank is the main lender of funds.", + "pos": "noun", + "word_frequency": 26405 + }, + { + "word": "primate", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "primate", + "romanization": "primate", + "example_sentence_native": "Gli scimpanzé sono un tipo di primate.", + "example_sentence_english": "Chimpanzees are a type of primate.", + "pos": "noun", + "word_frequency": 26406 + }, + { + "word": "profetico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "prophetic", + "romanization": "profetico", + "example_sentence_native": "Le sue parole si rivelarono profetiche.", + "example_sentence_english": "His words turned out to be prophetic.", + "pos": "adjective", + "word_frequency": 26408 + }, + { + "word": "pungere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to sting;to prick", + "romanization": "pungere", + "example_sentence_native": "L'ape mi ha punto sul braccio.", + "example_sentence_english": "The bee stung me on the arm.", + "pos": "verb", + "word_frequency": 26409 + }, + { + "word": "pus", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pus", + "romanization": "pus", + "example_sentence_native": "La ferita era infetta e produceva pus.", + "example_sentence_english": "The wound was infected and producing pus.", + "pos": "noun", + "word_frequency": 26410 + }, + { + "word": "raccoglimento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contemplation;recollection;gathering", + "romanization": "raccoglimento", + "example_sentence_native": "Il momento di raccoglimento fu interrotto da un rumore.", + "example_sentence_english": "The moment of contemplation was interrupted by a noise.", + "pos": "noun", + "word_frequency": 26413 + }, + { + "word": "rammentare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to remind;to recall", + "romanization": "rammentare", + "example_sentence_native": "Vorrei rammentarti il nostro appuntamento.", + "example_sentence_english": "I would like to remind you of our appointment.", + "pos": "verb", + "word_frequency": 26415 + }, + { + "word": "raziocinio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reasoning;rationality", + "romanization": "raziocinio", + "example_sentence_native": "Agì con grande raziocinio nonostante la pressione.", + "example_sentence_english": "He acted with great reasoning despite the pressure.", + "pos": "noun", + "word_frequency": 26416 + }, + { + "word": "recintato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fenced;enclosed", + "romanization": "recintato", + "example_sentence_native": "Il giardino è completamente recintato.", + "example_sentence_english": "The garden is completely fenced.", + "pos": "adjective", + "word_frequency": 26417 + }, + { + "word": "reintegrare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to reinstate;to reintegrate", + "romanization": "reintegrare", + "example_sentence_native": "L'azienda ha deciso di reintegrare il dipendente licenziato.", + "example_sentence_english": "The company decided to reinstate the dismissed employee.", + "pos": "verb", + "word_frequency": 26419 + }, + { + "word": "ricettacolo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "receptacle;repository", + "romanization": "ricettacolo", + "example_sentence_native": "Quella discarica è un ricettacolo di rifiuti tossici.", + "example_sentence_english": "That landfill is a receptacle for toxic waste.", + "pos": "noun", + "word_frequency": 26421 + }, + { + "word": "riconsegna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "redelivery;return", + "romanization": "riconsegna", + "example_sentence_native": "La riconsegna del pacco è prevista per domani.", + "example_sentence_english": "The redelivery of the package is scheduled for tomorrow.", + "pos": "noun", + "word_frequency": 26422 + }, + { + "word": "ridefinizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "redefinition", + "romanization": "ridefinizione", + "example_sentence_native": "È necessaria una ridefinizione dei nostri obiettivi.", + "example_sentence_english": "A redefinition of our goals is necessary.", + "pos": "noun", + "word_frequency": 26423 + }, + { + "word": "riecheggiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to echo;to resound", + "romanization": "riecheggiare", + "example_sentence_native": "Le sue parole continuano a rieccheggiare nella mia mente.", + "example_sentence_english": "His words continue to echo in my mind.", + "pos": "verb", + "word_frequency": 26424 + }, + { + "word": "rigirare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to turn over;to spin;to re-shoot", + "romanization": "rigirare", + "example_sentence_native": "Devi rigirare la frittata dall'altro lato.", + "example_sentence_english": "You need to turn the omelette over to the other side.", + "pos": "verb", + "word_frequency": 26425 + }, + { + "word": "rigonfiamento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "swelling;bulge", + "romanization": "rigonfiamento", + "example_sentence_native": "C'era un rigonfiamento sospetto sulla parete.", + "example_sentence_english": "There was a suspicious bulge on the wall.", + "pos": "noun", + "word_frequency": 26426 + }, + { + "word": "rimborsato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reimbursed;refunded", + "romanization": "rimborsato", + "example_sentence_native": "Sono stato rimborsato per le spese di viaggio.", + "example_sentence_english": "I was reimbursed for travel expenses.", + "pos": "adjective", + "word_frequency": 26427 + }, + { + "word": "rimpatriata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reunion (especially of people from the same country;hometown)", + "romanization": "rimpatriata", + "example_sentence_native": "Abbiamo organizzato una rimpatriata con i vecchi compagni di scuola.", + "example_sentence_english": "We organized a reunion with old schoolmates.", + "pos": "noun", + "word_frequency": 26428 + }, + { + "word": "riproposizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "re-proposal;re-presentation", + "romanization": "riproposizione", + "example_sentence_native": "La riproposizione del tema è stata ben accolta.", + "example_sentence_english": "The re-presentation of the theme was well received.", + "pos": "noun", + "word_frequency": 26429 + }, + { + "word": "risorgimentale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Risorgimento-related;of the Risorgimento", + "romanization": "risorgimentale", + "example_sentence_native": "Ha studiato a fondo il periodo risorgimentale.", + "example_sentence_english": "He thoroughly studied the Risorgimento period.", + "pos": "adjective", + "word_frequency": 26430 + }, + { + "word": "rivoltare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to turn over;to revolt;to upset", + "romanization": "rivoltare", + "example_sentence_native": "Ha rivoltato la stanza in cerca delle chiavi.", + "example_sentence_english": "He turned the room upside down looking for the keys.", + "pos": "verb", + "word_frequency": 26431 + }, + { + "word": "roux", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roux", + "romanization": "roux", + "example_sentence_native": "Per addensare la salsa, ho preparato un roux.", + "example_sentence_english": "To thicken the sauce, I prepared a roux.", + "pos": "noun", + "word_frequency": 26433 + }, + { + "word": "saccone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "large sack;beanbag", + "romanization": "saccone", + "example_sentence_native": "Si è seduto su un comodo saccone.", + "example_sentence_english": "He sat on a comfortable beanbag.", + "pos": "noun", + "word_frequency": 26436 + }, + { + "word": "saggiatore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "assayer;tester;essayist", + "romanization": "saggiatore", + "example_sentence_native": "Il saggiatore ha verificato la purezza dell'oro.", + "example_sentence_english": "The assayer verified the purity of the gold.", + "pos": "noun", + "word_frequency": 26437 + }, + { + "word": "saloon", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "saloon", + "romanization": "saloon", + "example_sentence_native": "I cowboy si riunivano nel saloon.", + "example_sentence_english": "The cowboys gathered in the saloon.", + "pos": "noun", + "word_frequency": 26438 + }, + { + "word": "sancito", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sanctioned;established;enshrined", + "romanization": "sancito", + "example_sentence_native": "Il diritto alla libertà è sancito dalla Costituzione.", + "example_sentence_english": "The right to freedom is enshrined in the Constitution.", + "pos": "adjective", + "word_frequency": 26440 + }, + { + "word": "sbocciare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to bloom;to blossom", + "romanization": "sbocciare", + "example_sentence_native": "I fiori iniziano a sbocciare in primavera.", + "example_sentence_english": "The flowers begin to bloom in spring.", + "pos": "verb", + "word_frequency": 26441 + }, + { + "word": "scabbia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scabies", + "romanization": "scabbia", + "example_sentence_native": "La scabbia è una malattia della pelle contagiosa.", + "example_sentence_english": "Scabies is a contagious skin disease.", + "pos": "noun", + "word_frequency": 26442 + }, + { + "word": "scalone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "grand staircase;main staircase", + "romanization": "scalone", + "example_sentence_native": "Il palazzo ha un magnifico scalone d'onore.", + "example_sentence_english": "The palace has a magnificent grand staircase.", + "pos": "noun", + "word_frequency": 26443 + }, + { + "word": "scavalcato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bypassed;climbed over;superseded", + "romanization": "scavalcato", + "example_sentence_native": "La sua proposta è stata scavalcata da una decisione superiore.", + "example_sentence_english": "His proposal was superseded by a higher decision.", + "pos": "adjective", + "word_frequency": 26444 + }, + { + "word": "scomunicato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "excommunicated", + "romanization": "scomunicato", + "example_sentence_native": "Nel Medioevo, essere scomunicato era una punizione severa.", + "example_sentence_english": "In the Middle Ages, being excommunicated was a severe punishment.", + "pos": "adjective", + "word_frequency": 26445 + }, + { + "word": "scoppiato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "burst;exploded;broken out", + "romanization": "scoppiato", + "example_sentence_native": "La guerra è scoppiata improvvisamente.", + "example_sentence_english": "The war broke out suddenly.", + "pos": "adjective", + "word_frequency": 26446 + }, + { + "word": "scratch", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scratch", + "romanization": "scratch", + "example_sentence_native": "C'è un brutto scratch sulla carrozzeria della macchina.", + "example_sentence_english": "There's a bad scratch on the car's bodywork.", + "pos": "noun", + "word_frequency": 26448 + }, + { + "word": "scrofa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sow (female pig)", + "romanization": "scrofa", + "example_sentence_native": "La scrofa ha dato alla luce una cucciolata di maialini.", + "example_sentence_english": "The sow gave birth to a litter of piglets.", + "pos": "noun", + "word_frequency": 26449 + }, + { + "word": "scrupoloso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scrupulous;meticulous;thorough", + "romanization": "scrupoloso", + "example_sentence_native": "È un ricercatore molto scrupoloso nel suo lavoro.", + "example_sentence_english": "He is a very scrupulous researcher in his work.", + "pos": "adjective", + "word_frequency": 26450 + }, + { + "word": "secreto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "secreted", + "romanization": "secreto", + "example_sentence_native": "L'ormone secreto dalla ghiandola regola il metabolismo.", + "example_sentence_english": "The hormone secreted by the gland regulates metabolism.", + "pos": "adjective", + "word_frequency": 26451 + }, + { + "word": "segato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sawn;failed (slang)", + "romanization": "segato", + "example_sentence_native": "Ho paura di essere segato all'esame di matematica.", + "example_sentence_english": "I'm afraid I'll fail the math exam.", + "pos": "adjective", + "word_frequency": 26452 + }, + { + "word": "sfogato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vented;relieved;let off steam", + "romanization": "sfogato", + "example_sentence_native": "Dopo aver pianto, si è sentita più sfogata.", + "example_sentence_english": "After crying, she felt more relieved.", + "pos": "adjective", + "word_frequency": 26454 + }, + { + "word": "siderurgico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "steel;iron and steel (related to metallurgy)", + "romanization": "siderurgico", + "example_sentence_native": "L'industria siderurgica è fondamentale per l'economia.", + "example_sentence_english": "The steel industry is fundamental for the economy.", + "pos": "adjective", + "word_frequency": 26456 + }, + { + "word": "spammare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to spam", + "romanization": "spammare", + "example_sentence_native": "Non dovresti spammare la casella di posta degli altri.", + "example_sentence_english": "You shouldn't spam other people's inboxes.", + "pos": "verb", + "word_frequency": 26462 + }, + { + "word": "sperpero", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "waste;squandering", + "romanization": "sperpero", + "example_sentence_native": "Il governo è accusato di sperpero di denaro pubblico.", + "example_sentence_english": "The government is accused of squandering public money.", + "pos": "noun", + "word_frequency": 26463 + }, + { + "word": "sprazzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "flash;glimpse;brief moment", + "romanization": "sprazzo", + "example_sentence_native": "Ho avuto uno sprazzo di lucidità in quel momento.", + "example_sentence_english": "I had a flash of clarity at that moment.", + "pos": "noun", + "word_frequency": 26464 + }, + { + "word": "stortura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "distortion;twist;deviation", + "romanization": "stortura", + "example_sentence_native": "Questa interpretazione è una stortura della verità.", + "example_sentence_english": "This interpretation is a distortion of the truth.", + "pos": "noun", + "word_frequency": 26466 + }, + { + "word": "strapazzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overexertion;strain;hardship", + "romanization": "strapazzo", + "example_sentence_native": "Il lavoro eccessivo può portare a un grande strapazzo fisico.", + "example_sentence_english": "Excessive work can lead to great physical strain.", + "pos": "noun", + "word_frequency": 26467 + }, + { + "word": "strudel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "strudel", + "romanization": "strudel", + "example_sentence_native": "Mi piace lo strudel di mele caldo con la panna.", + "example_sentence_english": "I like warm apple strudel with cream.", + "pos": "noun", + "word_frequency": 26468 + }, + { + "word": "stuzzicadente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toothpick", + "romanization": "stuzzicadente", + "example_sentence_native": "Ho bisogno di uno stuzzicadente dopo questo pasto.", + "example_sentence_english": "I need a toothpick after this meal.", + "pos": "noun", + "word_frequency": 26469 + }, + { + "word": "subordinazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "subordination", + "romanization": "subordinazione", + "example_sentence_native": "La subordinazione gerarchica è tipica delle grandi aziende.", + "example_sentence_english": "Hierarchical subordination is typical of large companies.", + "pos": "noun", + "word_frequency": 26470 + }, + { + "word": "tassativo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "imperative;mandatory;strict", + "romanization": "tassativo", + "example_sentence_native": "La scadenza è tassativa e non può essere prorogata.", + "example_sentence_english": "The deadline is imperative and cannot be extended.", + "pos": "adverb", + "word_frequency": 26474 + }, + { + "word": "tiglio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "lime tree;linden tree", + "romanization": "tiglio", + "example_sentence_native": "Il viale è fiancheggiato da alti tigli.", + "example_sentence_english": "The avenue is lined with tall lime trees.", + "pos": "noun", + "word_frequency": 26476 + }, + { + "word": "torrone", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "nougat", + "romanization": "torrone", + "example_sentence_native": "Il torrone è un dolce tipico natalizio.", + "example_sentence_english": "Nougat is a typical Christmas sweet.", + "pos": "noun", + "word_frequency": 26478 + }, + { + "word": "tovagliolo", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "napkin", + "romanization": "tovagliolo", + "example_sentence_native": "Puoi passarmi il tovagliolo, per favore?", + "example_sentence_english": "Can you pass me the napkin, please?", + "pos": "noun", + "word_frequency": 26479 + }, + { + "word": "tremore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tremor;trembling", + "romanization": "tremore", + "example_sentence_native": "Sentiva un leggero tremore nelle mani.", + "example_sentence_english": "He felt a slight tremor in his hands.", + "pos": "noun", + "word_frequency": 26480 + }, + { + "word": "trentanove", + "useful_for_flashcard": true, + "cefr_level": "A1", + "english_translation": "thirty-nine", + "romanization": "trentanove", + "example_sentence_native": "Il suo numero fortunato è il trentanove.", + "example_sentence_english": "His lucky number is thirty-nine.", + "pos": "noun", + "word_frequency": 26482 + }, + { + "word": "trullo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "trullo (traditional Apulian dry stone hut)", + "romanization": "trullo", + "example_sentence_native": "Abbiamo affittato un trullo per le vacanze in Puglia.", + "example_sentence_english": "We rented a trullo for our holidays in Puglia.", + "pos": "noun", + "word_frequency": 26483 + }, + { + "word": "tubolare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tubular", + "romanization": "tubolare", + "example_sentence_native": "La struttura del ponte era tubolare.", + "example_sentence_english": "The bridge structure was tubular.", + "pos": "adjective", + "word_frequency": 26484 + }, + { + "word": "turbante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "turban", + "romanization": "turbante", + "example_sentence_native": "Indossava un turbante colorato.", + "example_sentence_english": "She was wearing a colorful turban.", + "pos": "noun", + "word_frequency": 26485 + }, + { + "word": "uniformare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to standardize;to unify", + "romanization": "uniformare", + "example_sentence_native": "Dobbiamo uniformare le procedure per migliorare l'efficienza.", + "example_sentence_english": "We need to standardize the procedures to improve efficiency.", + "pos": "verb", + "word_frequency": 26486 + }, + { + "word": "varare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to launch (a ship);to pass (a law)", + "romanization": "varare", + "example_sentence_native": "Il governo ha deciso di varare una nuova legge.", + "example_sentence_english": "The government decided to pass a new law.", + "pos": "verb", + "word_frequency": 26488 + }, + { + "word": "verano", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "summer (poetic;archaic)", + "romanization": "verano", + "example_sentence_native": "Nel cuore del verano, il caldo era insopportabile.", + "example_sentence_english": "In the heart of summer, the heat was unbearable.", + "pos": "noun", + "word_frequency": 26489 + }, + { + "word": "videochat", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "video chat", + "romanization": "videochat", + "example_sentence_native": "Facciamo una videochat stasera?", + "example_sentence_english": "Shall we have a video chat tonight?", + "pos": "noun", + "word_frequency": 26490 + }, + { + "word": "zitella", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "spinster;old maid", + "romanization": "zitella", + "example_sentence_native": "Nel passato, una donna non sposata era spesso chiamata zitella.", + "example_sentence_english": "In the past, an unmarried woman was often called a spinster.", + "pos": "noun", + "word_frequency": 26496 + }, + { + "word": "abbozzo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sketch;draft;outline", + "romanization": "abbozzo", + "example_sentence_native": "Ha presentato un abbozzo del progetto.", + "example_sentence_english": "He presented a draft of the project.", + "pos": "noun", + "word_frequency": 26498 + }, + { + "word": "abbronzato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "tanned", + "romanization": "abbronzato", + "example_sentence_native": "Dopo le vacanze, era molto abbronzato.", + "example_sentence_english": "After the holidays, he was very tanned.", + "pos": "adjective", + "word_frequency": 26499 + }, + { + "word": "acropoli", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "acropolis", + "romanization": "acropoli", + "example_sentence_native": "L'Acropoli di Atene è un sito archeologico famoso.", + "example_sentence_english": "The Acropolis of Athens is a famous archaeological site.", + "pos": "noun", + "word_frequency": 26501 + }, + { + "word": "addebitato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "debited;charged", + "romanization": "addebitato", + "example_sentence_native": "L'importo è stato addebitato sul mio conto.", + "example_sentence_english": "The amount was debited from my account.", + "pos": "adjective", + "word_frequency": 26502 + }, + { + "word": "adempiuto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "fulfilled;accomplished", + "romanization": "adempiuto", + "example_sentence_native": "Ha adempiuto a tutti i suoi doveri.", + "example_sentence_english": "He fulfilled all his duties.", + "pos": "adjective", + "word_frequency": 26503 + }, + { + "word": "affettato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sliced;affected (manner)", + "romanization": "affettato", + "example_sentence_native": "Vorrei un chilo di prosciutto affettato.", + "example_sentence_english": "I would like a kilo of sliced ham.", + "pos": "adjective", + "word_frequency": 26504 + }, + { + "word": "alienato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alienated;estranged", + "romanization": "alienato", + "example_sentence_native": "Si sentiva alienato dalla società.", + "example_sentence_english": "He felt alienated from society.", + "pos": "adjective", + "word_frequency": 26509 + }, + { + "word": "amenità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "amenity;pleasantness;pleasantry", + "romanization": "amenità", + "example_sentence_native": "Il parco offre molte amenità per i visitatori.", + "example_sentence_english": "The park offers many amenities for visitors.", + "pos": "noun", + "word_frequency": 26514 + }, + { + "word": "ammonimento", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warning;admonition", + "romanization": "ammonimento", + "example_sentence_native": "Ha ricevuto un ammonimento per il suo comportamento.", + "example_sentence_english": "He received a warning for his behavior.", + "pos": "noun", + "word_frequency": 26517 + }, + { + "word": "anfora", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "amphora", + "romanization": "anfora", + "example_sentence_native": "L'anfora antica è stata trovata durante gli scavi.", + "example_sentence_english": "The ancient amphora was found during the excavations.", + "pos": "noun", + "word_frequency": 26520 + }, + { + "word": "anticoncezionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contraceptive", + "romanization": "anticoncezionale", + "example_sentence_native": "Il metodo anticoncezionale è stato discusso con il medico.", + "example_sentence_english": "The contraceptive method was discussed with the doctor.", + "pos": "adjective", + "word_frequency": 26521 + }, + { + "word": "antigene", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "antigen", + "romanization": "antigene", + "example_sentence_native": "Il test rileva la presenza di anticorpi o antigeni.", + "example_sentence_english": "The test detects the presence of antibodies or antigens.", + "pos": "noun", + "word_frequency": 26522 + }, + { + "word": "apposizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "apposition;placement", + "romanization": "apposizione", + "example_sentence_native": "L'apposizione di una targa commemorativa è prevista per la prossima settimana.", + "example_sentence_english": "The placement of a commemorative plaque is scheduled for next week.", + "pos": "noun", + "word_frequency": 26524 + }, + { + "word": "asimmetrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "asymmetrical", + "romanization": "asimmetrico", + "example_sentence_native": "Il design del vaso è volutamente asimmetrico.", + "example_sentence_english": "The design of the vase is intentionally asymmetrical.", + "pos": "adjective", + "word_frequency": 26526 + }, + { + "word": "attirato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "attracted;drawn", + "romanization": "attirato", + "example_sentence_native": "Sono stato attirato dal profumo del pane fresco.", + "example_sentence_english": "I was attracted by the smell of fresh bread.", + "pos": "adjective", + "word_frequency": 26527 + }, + { + "word": "attraversato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "crossed;traversed", + "romanization": "attraversato", + "example_sentence_native": "Abbiamo attraversato il ponte per raggiungere l'altra sponda.", + "example_sentence_english": "We crossed the bridge to reach the other side.", + "pos": "adjective", + "word_frequency": 26528 + }, + { + "word": "bollitore", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "kettle;boiler", + "romanization": "bollitore", + "example_sentence_native": "Ho messo l'acqua nel bollitore per il tè.", + "example_sentence_english": "I put the water in the kettle for tea.", + "pos": "noun", + "word_frequency": 26533 + }, + { + "word": "bucare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to pierce;to puncture;to make a hole", + "romanization": "bucare", + "example_sentence_native": "Devo bucare la parete per appendere il quadro.", + "example_sentence_english": "I need to make a hole in the wall to hang the painting.", + "pos": "verb", + "word_frequency": 26543 + }, + { + "word": "cameo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cameo", + "romanization": "cameo", + "example_sentence_native": "Ha indossato una spilla con un cameo antico.", + "example_sentence_english": "She wore a brooch with an antique cameo.", + "pos": "noun", + "word_frequency": 26547 + }, + { + "word": "celestiale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "celestial;heavenly", + "romanization": "celestiale", + "example_sentence_native": "La musica aveva una qualità quasi celestiale.", + "example_sentence_english": "The music had an almost celestial quality.", + "pos": "adjective", + "word_frequency": 26552 + }, + { + "word": "centralissimo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "very central;extremely central", + "romanization": "centralissimo", + "example_sentence_native": "L'hotel è in una posizione centralissima, vicino a tutti i monumenti.", + "example_sentence_english": "The hotel is in a very central location, close to all monuments.", + "pos": "adjective", + "word_frequency": 26553 + }, + { + "word": "cocchio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "carriage;chariot", + "romanization": "cocchio", + "example_sentence_native": "La principessa arrivò al ballo su un magnifico cocchio.", + "example_sentence_english": "The princess arrived at the ball in a magnificent carriage.", + "pos": "noun", + "word_frequency": 26563 + }, + { + "word": "cocomero", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "watermelon", + "romanization": "cocomero", + "example_sentence_native": "Mi piace mangiare il cocomero fresco d'estate.", + "example_sentence_english": "I like to eat fresh watermelon in summer.", + "pos": "noun", + "word_frequency": 26564 + }, + { + "word": "codificato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "codified", + "romanization": "codificato", + "example_sentence_native": "Le regole sono state codificate in un nuovo regolamento.", + "example_sentence_english": "The rules have been codified in a new regulation.", + "pos": "adjective", + "word_frequency": 26565 + }, + { + "word": "cofondatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "co-founder", + "romanization": "cofondatore", + "example_sentence_native": "È il cofondatore di una startup di successo.", + "example_sentence_english": "He is the co-founder of a successful startup.", + "pos": "noun", + "word_frequency": 26566 + }, + { + "word": "collante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "adhesive;glue;unifying factor", + "romanization": "collante", + "example_sentence_native": "Abbiamo bisogno di un buon collante per riparare questo oggetto.", + "example_sentence_english": "We need a good adhesive to repair this object.", + "pos": "noun", + "word_frequency": 26567 + }, + { + "word": "conflittualità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "conflictuality;proneness to conflict", + "romanization": "conflittualità", + "example_sentence_native": "La conflittualità sociale è aumentata negli ultimi anni.", + "example_sentence_english": "Social conflictuality has increased in recent years.", + "pos": "noun", + "word_frequency": 26568 + }, + { + "word": "contrattaccare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to counterattack", + "romanization": "contrattaccare", + "example_sentence_native": "L'esercito decise di contrattaccare all'alba.", + "example_sentence_english": "The army decided to counterattack at dawn.", + "pos": "verb", + "word_frequency": 26569 + }, + { + "word": "cottimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piecework;job work", + "romanization": "cottimo", + "example_sentence_native": "Molti operai sono pagati a cottimo.", + "example_sentence_english": "Many workers are paid by piecework.", + "pos": "noun", + "word_frequency": 26570 + }, + { + "word": "crivello", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sieve;riddle", + "romanization": "crivello", + "example_sentence_native": "Usiamo un crivello per separare la farina dalle impurità.", + "example_sentence_english": "We use a sieve to separate the flour from impurities.", + "pos": "noun", + "word_frequency": 26572 + }, + { + "word": "cubitale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "capital (letter);huge;enormous", + "romanization": "cubitale", + "example_sentence_native": "Il titolo era scritto a caratteri cubitali.", + "example_sentence_english": "The title was written in capital letters.", + "pos": "adjective", + "word_frequency": 26573 + }, + { + "word": "dandy", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dandy", + "romanization": "dandy", + "example_sentence_native": "Era un vero dandy, sempre vestito in modo impeccabile.", + "example_sentence_english": "He was a true dandy, always impeccably dressed.", + "pos": "noun", + "word_frequency": 26580 + }, + { + "word": "decollato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "taken off;launched", + "romanization": "decollato", + "example_sentence_native": "L'aereo è decollato in orario.", + "example_sentence_english": "The plane took off on time.", + "pos": "adjective", + "word_frequency": 26582 + }, + { + "word": "dermatite", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "dermatitis", + "romanization": "dermatite", + "example_sentence_native": "Ha sviluppato una dermatite allergica.", + "example_sentence_english": "She developed allergic dermatitis.", + "pos": "noun", + "word_frequency": 26591 + }, + { + "word": "dima", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "jig;template", + "romanization": "dima", + "example_sentence_native": "Hanno usato una dima per tagliare il pezzo con precisione.", + "example_sentence_english": "They used a jig to cut the piece precisely.", + "pos": "noun", + "word_frequency": 26592 + }, + { + "word": "disobbedire", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to disobey", + "romanization": "disobbedire", + "example_sentence_native": "Non dovresti mai disobbedire ai tuoi genitori.", + "example_sentence_english": "You should never disobey your parents.", + "pos": "verb", + "word_frequency": 26593 + }, + { + "word": "divinazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "divination", + "romanization": "divinazione", + "example_sentence_native": "Molte culture antiche praticavano la divinazione.", + "example_sentence_english": "Many ancient cultures practiced divination.", + "pos": "noun", + "word_frequency": 26595 + }, + { + "word": "divulgatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "popularizer;disseminator", + "romanization": "divulgatore", + "example_sentence_native": "È un noto divulgatore scientifico.", + "example_sentence_english": "He is a well-known science popularizer.", + "pos": "noun", + "word_frequency": 26596 + }, + { + "word": "domato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "tamed;subdued", + "romanization": "domato", + "example_sentence_native": "Il cavallo selvaggio è stato finalmente domato.", + "example_sentence_english": "The wild horse was finally tamed.", + "pos": "adjective", + "word_frequency": 26597 + }, + { + "word": "dorico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Doric", + "romanization": "dorico", + "example_sentence_native": "Il tempio presentava colonne in stile dorico.", + "example_sentence_english": "The temple featured Doric-style columns.", + "pos": "adjective", + "word_frequency": 26599 + }, + { + "word": "dovizioso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "wealthy;abundant", + "romanization": "dovizioso", + "example_sentence_native": "Era un uomo dovizioso, con molte proprietà.", + "example_sentence_english": "He was a wealthy man, with many properties.", + "pos": "adjective", + "word_frequency": 26601 + }, + { + "word": "drammaticità", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dramatic quality;dramatic nature", + "romanization": "drammaticità", + "example_sentence_native": "La drammaticità della situazione era evidente a tutti.", + "example_sentence_english": "The dramatic quality of the situation was evident to everyone.", + "pos": "noun", + "word_frequency": 26604 + }, + { + "word": "elvetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Swiss (adjective)", + "romanization": "elvetico", + "example_sentence_native": "Il formaggio elvetico è famoso in tutto il mondo.", + "example_sentence_english": "Swiss cheese is famous all over the world.", + "pos": "adjective", + "word_frequency": 26613 + }, + { + "word": "erudizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "erudition;learning", + "romanization": "erudizione", + "example_sentence_native": "La sua vasta erudizione era ammirata da tutti.", + "example_sentence_english": "His vast erudition was admired by everyone.", + "pos": "noun", + "word_frequency": 26615 + }, + { + "word": "feudalesimo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "feudalism", + "romanization": "feudalesimo", + "example_sentence_native": "Il feudalesimo è stato un sistema sociale e politico medievale.", + "example_sentence_english": "Feudalism was a medieval social and political system.", + "pos": "noun", + "word_frequency": 26621 + }, + { + "word": "fondovalle", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "valley floor", + "romanization": "fondovalle", + "example_sentence_native": "Il villaggio si trova nel fondovalle.", + "example_sentence_english": "The village is located on the valley floor.", + "pos": "noun", + "word_frequency": 26625 + }, + { + "word": "fosco", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "dark;gloomy;grim", + "romanization": "fosco", + "example_sentence_native": "Il cielo era fosco, minacciando pioggia.", + "example_sentence_english": "The sky was gloomy, threatening rain.", + "pos": "adjective", + "word_frequency": 26626 + }, + { + "word": "frecciatina", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "subtle jab;veiled criticism", + "romanization": "frecciatina", + "example_sentence_native": "Non ha resistito a lanciargli una frecciatina.", + "example_sentence_english": "She couldn't resist throwing a subtle jab at him.", + "pos": "noun", + "word_frequency": 26627 + }, + { + "word": "freddamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coldly", + "romanization": "freddamente", + "example_sentence_native": "Ha risposto freddamente alla sua domanda.", + "example_sentence_english": "He answered her question coldly.", + "pos": "adverb", + "word_frequency": 26628 + }, + { + "word": "fulminare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to strike with lightning;to electrocute;to glare at", + "romanization": "fulminare", + "example_sentence_native": "Il temporale ha fulminato un albero nel giardino.", + "example_sentence_english": "The thunderstorm struck a tree in the garden with lightning.", + "pos": "verb", + "word_frequency": 26629 + }, + { + "word": "futures", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "futures (contracts)", + "romanization": "futures", + "example_sentence_native": "Ha investito in contratti futures sul petrolio.", + "example_sentence_english": "He invested in oil futures contracts.", + "pos": "noun", + "word_frequency": 26630 + }, + { + "word": "garibaldino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Garibaldian", + "romanization": "garibaldino", + "example_sentence_native": "I garibaldini hanno avuto un ruolo chiave nell'Unità d'Italia.", + "example_sentence_english": "The Garibaldians played a key role in the Unification of Italy.", + "pos": "noun", + "word_frequency": 26633 + }, + { + "word": "ghigno", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sneer;grimace", + "romanization": "ghigno", + "example_sentence_native": "Un ghigno si disegnò sul suo volto.", + "example_sentence_english": "A sneer appeared on his face.", + "pos": "noun", + "word_frequency": 26635 + }, + { + "word": "giacenza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "inventory;stock;dormancy", + "romanization": "giacenza", + "example_sentence_native": "Dobbiamo controllare la giacenza in magazzino.", + "example_sentence_english": "We need to check the inventory in the warehouse.", + "pos": "noun", + "word_frequency": 26636 + }, + { + "word": "gioielliere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "jeweler", + "romanization": "gioielliere", + "example_sentence_native": "Il gioielliere ha riparato il mio orologio.", + "example_sentence_english": "The jeweler repaired my watch.", + "pos": "noun", + "word_frequency": 26638 + }, + { + "word": "gommoso", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gummy;chewy;rubbery", + "romanization": "gommoso", + "example_sentence_native": "Queste caramelle sono molto gommose.", + "example_sentence_english": "These candies are very chewy.", + "pos": "adjective", + "word_frequency": 26639 + }, + { + "word": "governabilità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "governability", + "romanization": "governabilità", + "example_sentence_native": "La governabilità del paese è stata messa in discussione dopo le elezioni.", + "example_sentence_english": "The governability of the country was questioned after the elections.", + "pos": "noun", + "word_frequency": 26640 + }, + { + "word": "granatiere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grenadier", + "romanization": "granatiere", + "example_sentence_native": "Il granatiere indossava un'uniforme storica.", + "example_sentence_english": "The grenadier wore a historical uniform.", + "pos": "noun", + "word_frequency": 26641 + }, + { + "word": "harem", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "harem", + "romanization": "harem", + "example_sentence_native": "Il sultano aveva un grande harem.", + "example_sentence_english": "The sultan had a large harem.", + "pos": "noun", + "word_frequency": 26648 + }, + { + "word": "hindu", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Hindu", + "romanization": "hindu", + "example_sentence_native": "Molti hindu celebrano Diwali.", + "example_sentence_english": "Many Hindus celebrate Diwali.", + "pos": "noun", + "word_frequency": 26651 + }, + { + "word": "hydra", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hydra", + "romanization": "idra", + "example_sentence_native": "L'Idra di Lerna era un mostro mitologico con molte teste.", + "example_sentence_english": "The Lernaean Hydra was a mythological monster with many heads.", + "pos": "noun", + "word_frequency": 26654 + }, + { + "word": "idratante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "moisturizing", + "romanization": "idratante", + "example_sentence_native": "Questa crema è molto idratante per la pelle secca.", + "example_sentence_english": "This cream is very moisturizing for dry skin.", + "pos": "adjective", + "word_frequency": 26655 + }, + { + "word": "idratazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "hydration", + "romanization": "idratazione", + "example_sentence_native": "L'idratazione è fondamentale per la salute.", + "example_sentence_english": "Hydration is fundamental for health.", + "pos": "noun", + "word_frequency": 26656 + }, + { + "word": "immortalare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to immortalize", + "romanization": "immortalare", + "example_sentence_native": "L'artista ha cercato di immortalare la bellezza del paesaggio.", + "example_sentence_english": "The artist tried to immortalize the beauty of the landscape.", + "pos": "verb", + "word_frequency": 26658 + }, + { + "word": "inciampo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stumble;obstacle", + "romanization": "inciampo", + "example_sentence_native": "Ha fatto un inciampo e quasi è caduto.", + "example_sentence_english": "He made a stumble and almost fell.", + "pos": "noun", + "word_frequency": 26659 + }, + { + "word": "indebitamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "unduly;improperly", + "romanization": "indebitamente", + "example_sentence_native": "Ha ricevuto fondi indebitamente.", + "example_sentence_english": "He unduly received funds.", + "pos": "adverb", + "word_frequency": 26660 + }, + { + "word": "indisturbato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "undisturbed", + "romanization": "indisturbato", + "example_sentence_native": "Ha lavorato indisturbato per ore.", + "example_sentence_english": "He worked undisturbed for hours.", + "pos": "adjective", + "word_frequency": 26661 + }, + { + "word": "insulare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "insular", + "romanization": "insulare", + "example_sentence_native": "La cultura insulare è spesso unica.", + "example_sentence_english": "Insular culture is often unique.", + "pos": "adjective", + "word_frequency": 26663 + }, + { + "word": "intensificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intensification", + "romanization": "intensificazione", + "example_sentence_native": "Si prevede un'intensificazione delle piogge.", + "example_sentence_english": "An intensification of rainfall is expected.", + "pos": "noun", + "word_frequency": 26664 + }, + { + "word": "intercity", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "intercity (train)", + "romanization": "intercity", + "example_sentence_native": "Ho preso l'Intercity per Roma.", + "example_sentence_english": "I took the Intercity train to Rome.", + "pos": "noun", + "word_frequency": 26665 + }, + { + "word": "internal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "internal", + "romanization": "internal", + "example_sentence_native": "Abbiamo avuto una discussione interna sul progetto.", + "example_sentence_english": "We had an internal discussion about the project.", + "pos": "adjective", + "word_frequency": 26666 + }, + { + "word": "introspezione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "introspection", + "romanization": "introspezione", + "example_sentence_native": "La meditazione favorisce l'introspezione.", + "example_sentence_english": "Meditation promotes introspection.", + "pos": "noun", + "word_frequency": 26667 + }, + { + "word": "inuit", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Inuit", + "romanization": "inuit", + "example_sentence_native": "Gli Inuit vivono nelle regioni artiche.", + "example_sentence_english": "The Inuit live in Arctic regions.", + "pos": "noun", + "word_frequency": 26668 + }, + { + "word": "irrecuperabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irrecoverable;irreparable", + "romanization": "irrecuperabile", + "example_sentence_native": "Il danno è purtroppo irrecuperabile.", + "example_sentence_english": "The damage is unfortunately irrecoverable.", + "pos": "adjective", + "word_frequency": 26670 + }, + { + "word": "kali", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Kali", + "romanization": "kali", + "example_sentence_native": "Kali è una dea importante nell'induismo.", + "example_sentence_english": "Kali is an important goddess in Hinduism.", + "pos": "noun", + "word_frequency": 26674 + }, + { + "word": "laterizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "brickwork;brick", + "romanization": "laterizio", + "example_sentence_native": "La casa è costruita in laterizio.", + "example_sentence_english": "The house is built of brickwork.", + "pos": "noun", + "word_frequency": 26677 + }, + { + "word": "lattico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lactic", + "romanization": "lattico", + "example_sentence_native": "L'acido lattico si accumula nei muscoli dopo l'esercizio.", + "example_sentence_english": "Lactic acid accumulates in muscles after exercise.", + "pos": "adjective", + "word_frequency": 26678 + }, + { + "word": "laureando", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "graduating student;thesis student", + "romanization": "laureando", + "example_sentence_native": "Il laureando sta preparando la sua tesi finale.", + "example_sentence_english": "The graduating student is preparing his final thesis.", + "pos": "noun", + "word_frequency": 26679 + }, + { + "word": "lentiggine", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "freckle", + "romanization": "lentiggine", + "example_sentence_native": "Ha molte lentiggini sul naso.", + "example_sentence_english": "She has many freckles on her nose.", + "pos": "noun", + "word_frequency": 26681 + }, + { + "word": "librario", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "bookseller", + "romanization": "librario", + "example_sentence_native": "Il librario mi ha consigliato un buon libro.", + "example_sentence_english": "The bookseller recommended a good book to me.", + "pos": "noun", + "word_frequency": 26683 + }, + { + "word": "liuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lute", + "romanization": "liuto", + "example_sentence_native": "Il liuto è uno strumento musicale antico.", + "example_sentence_english": "The lute is an ancient musical instrument.", + "pos": "noun", + "word_frequency": 26684 + }, + { + "word": "lubrificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lubrication", + "romanization": "lubrificazione", + "example_sentence_native": "La lubrificazione del motore è essenziale per il suo funzionamento.", + "example_sentence_english": "Engine lubrication is essential for its operation.", + "pos": "noun", + "word_frequency": 26687 + }, + { + "word": "lusingare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to flatter;to entice", + "romanization": "lusingare", + "example_sentence_native": "Non cercare di lusingarmi, non funzionerà.", + "example_sentence_english": "Don't try to flatter me, it won't work.", + "pos": "verb", + "word_frequency": 26689 + }, + { + "word": "maestrale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mistral (north-westerly wind)", + "romanization": "maestrale", + "example_sentence_native": "Il maestrale soffia forte in Sardegna.", + "example_sentence_english": "The mistral blows strongly in Sardinia.", + "pos": "noun", + "word_frequency": 26690 + }, + { + "word": "maggiorare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to increase;to raise", + "romanization": "maggiorare", + "example_sentence_native": "Hanno deciso di maggiorare i prezzi del 10%.", + "example_sentence_english": "They decided to increase prices by 10%.", + "pos": "verb", + "word_frequency": 26691 + }, + { + "word": "malia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "charm;spell;enchantment", + "romanization": "malia", + "example_sentence_native": "La malia del suo sguardo era irresistibile.", + "example_sentence_english": "The charm of her gaze was irresistible.", + "pos": "noun", + "word_frequency": 26692 + }, + { + "word": "mattatoio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "slaughterhouse;abattoir", + "romanization": "mattatoio", + "example_sentence_native": "La carne viene lavorata al mattatoio.", + "example_sentence_english": "The meat is processed at the slaughterhouse.", + "pos": "noun", + "word_frequency": 26696 + }, + { + "word": "medioriente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "Middle East", + "romanization": "Medioriente", + "example_sentence_native": "La situazione in Medioriente è complessa.", + "example_sentence_english": "The situation in the Middle East is complex.", + "pos": "noun", + "word_frequency": 26699 + }, + { + "word": "menata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hassle;bother;drag (colloquial)", + "romanization": "menata", + "example_sentence_native": "Che menata dover fare tutta questa burocrazia!", + "example_sentence_english": "What a hassle having to do all this bureaucracy!", + "pos": "noun", + "word_frequency": 26700 + }, + { + "word": "meritatamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "deservedly", + "romanization": "meritatamente", + "example_sentence_native": "Ha vinto la gara meritatamente.", + "example_sentence_english": "He won the race deservedly.", + "pos": "adverb", + "word_frequency": 26701 + }, + { + "word": "merola", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "blackbird", + "romanization": "merola", + "example_sentence_native": "Ho sentito il canto di una merola nel giardino.", + "example_sentence_english": "I heard a blackbird's song in the garden.", + "pos": "noun", + "word_frequency": 26702 + }, + { + "word": "metabolizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to metabolize;to process (figuratively)", + "romanization": "metabolizzare", + "example_sentence_native": "Il corpo impiega tempo a metabolizzare i grassi.", + "example_sentence_english": "The body takes time to metabolize fats.", + "pos": "verb", + "word_frequency": 26703 + }, + { + "word": "meticolosamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "meticulously", + "romanization": "meticolosamente", + "example_sentence_native": "Ha preparato il progetto meticolosamente.", + "example_sentence_english": "He prepared the project meticulously.", + "pos": "adverb", + "word_frequency": 26704 + }, + { + "word": "miccia", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fuse;wick", + "romanization": "miccia", + "example_sentence_native": "Ha acceso la miccia della dinamite.", + "example_sentence_english": "He lit the fuse of the dynamite.", + "pos": "noun", + "word_frequency": 26705 + }, + { + "word": "microbiologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microbiology", + "romanization": "microbiologia", + "example_sentence_native": "Studia microbiologia all'università.", + "example_sentence_english": "She studies microbiology at university.", + "pos": "noun", + "word_frequency": 26706 + }, + { + "word": "mimica", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mimicry;mime;facial expression", + "romanization": "mimica", + "example_sentence_native": "La sua mimica facciale era molto espressiva.", + "example_sentence_english": "His facial mimicry was very expressive.", + "pos": "noun", + "word_frequency": 26707 + }, + { + "word": "mogano", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "mahogany", + "romanization": "mogano", + "example_sentence_native": "Il tavolo è fatto di legno di mogano.", + "example_sentence_english": "The table is made of mahogany wood.", + "pos": "noun", + "word_frequency": 26709 + }, + { + "word": "mormone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Mormon", + "romanization": "mormone", + "example_sentence_native": "I mormoni sono noti per la loro comunità unita.", + "example_sentence_english": "Mormons are known for their close-knit community.", + "pos": "noun", + "word_frequency": 26711 + }, + { + "word": "mozzicone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stub (e.g.;cigarette stub);butt", + "romanization": "mozzicone", + "example_sentence_native": "Ha gettato il mozzicone di sigaretta per terra.", + "example_sentence_english": "He threw the cigarette butt on the ground.", + "pos": "noun", + "word_frequency": 26712 + }, + { + "word": "multiforme", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "multiform;multifaceted", + "romanization": "multiforme", + "example_sentence_native": "La sua arte è multiforme e innovativa.", + "example_sentence_english": "His art is multiform and innovative.", + "pos": "adjective", + "word_frequency": 26714 + }, + { + "word": "multifunzione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "multifunction;all-in-one", + "romanization": "multifunzione", + "example_sentence_native": "Ho comprato una stampante multifunzione.", + "example_sentence_english": "I bought a multifunction printer.", + "pos": "adjective", + "word_frequency": 26715 + }, + { + "word": "naif", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "naive;naive (art style)", + "romanization": "naif", + "example_sentence_native": "Il suo approccio alla vita è un po' naif.", + "example_sentence_english": "His approach to life is a bit naive.", + "pos": "adjective", + "word_frequency": 26716 + }, + { + "word": "nazionalsocialista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "National Socialist;Nazi", + "romanization": "nazionalsocialista", + "example_sentence_native": "Il nazionalsocialista è un'ideologia politica.", + "example_sentence_english": "National Socialism is a political ideology.", + "pos": "noun", + "word_frequency": 26718 + }, + { + "word": "neanderthal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "Neanderthal", + "romanization": "Neanderthal", + "example_sentence_native": "L'uomo di Neanderthal abitava l'Europa.", + "example_sentence_english": "Neanderthal man inhabited Europe.", + "pos": "noun", + "word_frequency": 26719 + }, + { + "word": "negazionismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "negationism", + "romanization": "negazionismo", + "example_sentence_native": "Il negazionismo storico è una grave distorsione della verità.", + "example_sentence_english": "Historical negationism is a serious distortion of the truth.", + "pos": "noun", + "word_frequency": 26720 + }, + { + "word": "nervino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "nervine;nerve tonic", + "romanization": "nervino", + "example_sentence_native": "Il medico gli ha prescritto un nervino per l'ansia.", + "example_sentence_english": "The doctor prescribed him a nervine for anxiety.", + "pos": "noun", + "word_frequency": 26724 + }, + { + "word": "nettezza", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cleanliness;neatness", + "romanization": "nettezza", + "example_sentence_native": "La nettezza delle strade è importante per la salute pubblica.", + "example_sentence_english": "The cleanliness of the streets is important for public health.", + "pos": "noun", + "word_frequency": 26725 + }, + { + "word": "notificazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "notification", + "romanization": "notificazione", + "example_sentence_native": "Ha ricevuto una notificazione ufficiale dal tribunale.", + "example_sentence_english": "He received an official notification from the court.", + "pos": "noun", + "word_frequency": 26727 + }, + { + "word": "oleodotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oil pipeline", + "romanization": "oleodotto", + "example_sentence_native": "La costruzione del nuovo oleodotto ha sollevato molte proteste.", + "example_sentence_english": "The construction of the new oil pipeline has raised many protests.", + "pos": "noun", + "word_frequency": 26731 + }, + { + "word": "oligarca", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "oligarch", + "romanization": "oligarca", + "example_sentence_native": "Gli oligarchi controllano gran parte dell'economia del paese.", + "example_sentence_english": "The oligarchs control a large part of the country's economy.", + "pos": "noun", + "word_frequency": 26732 + }, + { + "word": "organolettico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "organoleptic", + "romanization": "organolettico", + "example_sentence_native": "L'analisi organolettica del vino rivela le sue qualità.", + "example_sentence_english": "The organoleptic analysis of the wine reveals its qualities.", + "pos": "adjective", + "word_frequency": 26733 + }, + { + "word": "ottava", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "octave;eighth", + "romanization": "ottava", + "example_sentence_native": "Ha cantato un'ottava più alta.", + "example_sentence_english": "She sang an octave higher.", + "pos": "noun", + "word_frequency": 26735 + }, + { + "word": "papino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daddy;little father", + "romanization": "papino", + "example_sentence_native": "Il mio papino mi ha comprato un gelato.", + "example_sentence_english": "My daddy bought me an ice cream.", + "pos": "noun", + "word_frequency": 26739 + }, + { + "word": "paprika", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "paprika", + "romanization": "paprika", + "example_sentence_native": "Ho aggiunto un po' di paprika al gulasch.", + "example_sentence_english": "I added some paprika to the goulash.", + "pos": "noun", + "word_frequency": 26740 + }, + { + "word": "parietale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "parietal", + "romanization": "parietale", + "example_sentence_native": "L'osso parietale si trova nella parte superiore del cranio.", + "example_sentence_english": "The parietal bone is located in the upper part of the skull.", + "pos": "adjective", + "word_frequency": 26741 + }, + { + "word": "patio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "patio", + "romanization": "patio", + "example_sentence_native": "Ci siamo seduti nel patio a prendere il sole.", + "example_sentence_english": "We sat on the patio to sunbathe.", + "pos": "noun", + "word_frequency": 26742 + }, + { + "word": "patriziato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "patriciate", + "romanization": "patriziato", + "example_sentence_native": "Il patriziato romano deteneva il potere politico.", + "example_sentence_english": "The Roman patriciate held political power.", + "pos": "noun", + "word_frequency": 26743 + }, + { + "word": "pesciolino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little fish;goldfish", + "romanization": "pesciolino", + "example_sentence_native": "Il bambino guardava i pesciolini nell'acquario.", + "example_sentence_english": "The child watched the little fish in the aquarium.", + "pos": "noun", + "word_frequency": 26744 + }, + { + "word": "pianoro", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "plateau;high plain", + "romanization": "pianoro", + "example_sentence_native": "Il sentiero conduceva a un vasto pianoro.", + "example_sentence_english": "The path led to a vast plateau.", + "pos": "noun", + "word_frequency": 26745 + }, + { + "word": "playback", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "playback", + "romanization": "playback", + "example_sentence_native": "Molti cantanti usano il playback durante i concerti.", + "example_sentence_english": "Many singers use playback during concerts.", + "pos": "noun", + "word_frequency": 26748 + }, + { + "word": "poliestere", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "polyester", + "romanization": "poliestere", + "example_sentence_native": "Questa maglietta è fatta di poliestere.", + "example_sentence_english": "This T-shirt is made of polyester.", + "pos": "noun", + "word_frequency": 26749 + }, + { + "word": "porticciolo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "small port;marina", + "romanization": "porticciolo", + "example_sentence_native": "La barca era ormeggiata nel porticciolo.", + "example_sentence_english": "The boat was moored in the small port.", + "pos": "noun", + "word_frequency": 26752 + }, + { + "word": "presentabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "presentable", + "romanization": "presentabile", + "example_sentence_native": "Devi essere presentabile per il colloquio di lavoro.", + "example_sentence_english": "You must be presentable for the job interview.", + "pos": "adjective", + "word_frequency": 26755 + }, + { + "word": "rack", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "rack", + "romanization": "rack", + "example_sentence_native": "Abbiamo installato i server nel nuovo rack.", + "example_sentence_english": "We installed the servers in the new rack.", + "pos": "noun", + "word_frequency": 26759 + }, + { + "word": "reginetta", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "beauty queen;little queen", + "romanization": "reginetta", + "example_sentence_native": "È stata incoronata reginetta del ballo di fine anno.", + "example_sentence_english": "She was crowned the beauty queen of the prom.", + "pos": "noun", + "word_frequency": 26762 + }, + { + "word": "reinterpretazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reinterpretation", + "romanization": "reinterpretazione", + "example_sentence_native": "Il critico ha offerto una nuova reinterpretazione dell'opera.", + "example_sentence_english": "The critic offered a new reinterpretation of the work.", + "pos": "noun", + "word_frequency": 26763 + }, + { + "word": "ridacchiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to chuckle;to giggle", + "romanization": "ridacchiare", + "example_sentence_native": "I bambini hanno iniziato a ridacchiare quando hanno sentito la barzelletta.", + "example_sentence_english": "The children started to chuckle when they heard the joke.", + "pos": "verb", + "word_frequency": 26764 + }, + { + "word": "ridicolizzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to ridicule;to make fun of", + "romanization": "ridicolizzare", + "example_sentence_native": "Non dovresti mai ridicolizzare gli altri per i loro errori.", + "example_sentence_english": "You should never ridicule others for their mistakes.", + "pos": "verb", + "word_frequency": 26765 + }, + { + "word": "rientrante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "re-entrant;returning", + "romanization": "rientrante", + "example_sentence_native": "Ha una forma rientrante, difficile da pulire.", + "example_sentence_english": "It has a re-entrant shape, difficult to clean.", + "pos": "adjective", + "word_frequency": 26766 + }, + { + "word": "riparatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "repairman;restorer", + "romanization": "riparatore", + "example_sentence_native": "Abbiamo chiamato il riparatore per aggiustare il frigorifero.", + "example_sentence_english": "We called the repairman to fix the refrigerator.", + "pos": "noun", + "word_frequency": 26767 + }, + { + "word": "riscrittura", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rewriting;revision", + "romanization": "riscrittura", + "example_sentence_native": "Il romanzo ha richiesto una completa riscrittura del finale.", + "example_sentence_english": "The novel required a complete rewriting of the ending.", + "pos": "noun", + "word_frequency": 26768 + }, + { + "word": "risolutamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "resolutely;determinedly", + "romanization": "risolutamente", + "example_sentence_native": "Ha affrontato la sfida risolutamente, senza esitazione.", + "example_sentence_english": "He faced the challenge resolutely, without hesitation.", + "pos": "adverb", + "word_frequency": 26769 + }, + { + "word": "ristrettezza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "narrowness;scarcity;constraint", + "romanization": "ristrettezza", + "example_sentence_native": "Vivono in una ristrettezza economica che li costringe a fare sacrifici.", + "example_sentence_english": "They live in economic scarcity that forces them to make sacrifices.", + "pos": "noun", + "word_frequency": 26770 + }, + { + "word": "rogito", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "deed;notarial act", + "romanization": "rogito", + "example_sentence_native": "La firma del rogito è l'ultimo passo per l'acquisto della casa.", + "example_sentence_english": "The signing of the deed is the last step for buying the house.", + "pos": "noun", + "word_frequency": 26771 + }, + { + "word": "rossiccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "reddish", + "romanization": "rossiccio", + "example_sentence_native": "Aveva i capelli di un colore rossiccio, quasi ramato.", + "example_sentence_english": "She had reddish hair, almost coppery.", + "pos": "adjective", + "word_frequency": 26772 + }, + { + "word": "sabbatico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sabbatical", + "romanization": "sabbatico", + "example_sentence_native": "Il professore ha preso un anno sabbatico per scrivere un libro.", + "example_sentence_english": "The professor took a sabbatical year to write a book.", + "pos": "adjective", + "word_frequency": 26774 + }, + { + "word": "saccente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "know-it-all;pedantic", + "romanization": "saccente", + "example_sentence_native": "Il suo tono saccente irritava tutti durante la discussione.", + "example_sentence_english": "His know-it-all tone irritated everyone during the discussion.", + "pos": "adjective", + "word_frequency": 26775 + }, + { + "word": "salvavita", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "life-saver;circuit breaker", + "romanization": "salvavita", + "example_sentence_native": "Il salvavita è scattato a causa di un cortocircuito.", + "example_sentence_english": "The circuit breaker tripped due to a short circuit.", + "pos": "noun", + "word_frequency": 26776 + }, + { + "word": "sbandierare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to wave flags;to flaunt", + "romanization": "sbandierare", + "example_sentence_native": "Non gli piace sbandierare i suoi successi.", + "example_sentence_english": "He doesn't like to flaunt his successes.", + "pos": "verb", + "word_frequency": 26777 + }, + { + "word": "scenografo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "set designer;scenographer", + "romanization": "scenografo", + "example_sentence_native": "Lo scenografo ha creato un'ambientazione mozzafiato per lo spettacolo.", + "example_sentence_english": "The set designer created a breathtaking setting for the show.", + "pos": "noun", + "word_frequency": 26778 + }, + { + "word": "scheletrico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "skeletal;emaciated", + "romanization": "scheletrico", + "example_sentence_native": "Dopo la malattia, era diventato scheletrico.", + "example_sentence_english": "After the illness, he had become skeletal.", + "pos": "adjective", + "word_frequency": 26779 + }, + { + "word": "schiamazzo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "din;racket;clamor", + "romanization": "schiamazzo", + "example_sentence_native": "Il continuo schiamazzo dei gabbiani mi impediva di dormire.", + "example_sentence_english": "The continuous din of the seagulls prevented me from sleeping.", + "pos": "noun", + "word_frequency": 26780 + }, + { + "word": "secolarizzazione", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "secularization", + "romanization": "secolarizzazione", + "example_sentence_native": "La secolarizzazione della società è un fenomeno complesso.", + "example_sentence_english": "The secularization of society is a complex phenomenon.", + "pos": "noun", + "word_frequency": 26785 + }, + { + "word": "sentimentalmente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sentimentally", + "romanization": "sentimentalmente", + "example_sentence_native": "È molto legato sentimentalmente alla sua città natale.", + "example_sentence_english": "He is very sentimentally attached to his hometown.", + "pos": "adverb", + "word_frequency": 26786 + }, + { + "word": "sfacciatamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "shamelessly;brazenly", + "romanization": "sfacciatamente", + "example_sentence_native": "Ha mentito sfacciatamente, senza alcun rimorso.", + "example_sentence_english": "He lied shamelessly, without any remorse.", + "pos": "adverb", + "word_frequency": 26787 + }, + { + "word": "sigillare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to seal", + "romanization": "sigillare", + "example_sentence_native": "Dobbiamo sigillare la busta prima di spedirla.", + "example_sentence_english": "We need to seal the envelope before sending it.", + "pos": "verb", + "word_frequency": 26788 + }, + { + "word": "smeralda", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "emerald", + "romanization": "smeralda", + "example_sentence_native": "Ha un anello con una bellissima smeralda.", + "example_sentence_english": "She has a ring with a beautiful emerald.", + "pos": "noun", + "word_frequency": 26791 + }, + { + "word": "sociopatico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sociopathic", + "romanization": "sociopatico", + "example_sentence_native": "Il personaggio del film era un sociopatico manipolatore.", + "example_sentence_english": "The film character was a manipulative sociopath.", + "pos": "adjective", + "word_frequency": 26792 + }, + { + "word": "soggiogare", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "to subjugate;to subdue", + "romanization": "soggiogare", + "example_sentence_native": "Il tiranno cercava di soggiogare la volontà del popolo.", + "example_sentence_english": "The tyrant sought to subjugate the will of the people.", + "pos": "verb", + "word_frequency": 26793 + }, + { + "word": "soprastante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "overlying;above;superior", + "romanization": "soprastante", + "example_sentence_native": "La roccia soprastante minacciava di crollare.", + "example_sentence_english": "The overlying rock threatened to collapse.", + "pos": "adjective", + "word_frequency": 26794 + }, + { + "word": "sortita", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sortie;sally;outing", + "romanization": "sortita", + "example_sentence_native": "Hanno fatto una sortita notturna per raccogliere informazioni.", + "example_sentence_english": "They made a night sortie to gather information.", + "pos": "noun", + "word_frequency": 26795 + }, + { + "word": "sottotono", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "understated;subdued;low-key", + "romanization": "sottotono", + "example_sentence_native": "La sua performance è stata un po' sottotono rispetto al solito.", + "example_sentence_english": "His performance was a bit understated compared to usual.", + "pos": "adjective", + "word_frequency": 26796 + }, + { + "word": "specializzare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to specialize", + "romanization": "specializzare", + "example_sentence_native": "Ha deciso di specializzarsi in medicina interna.", + "example_sentence_english": "He decided to specialize in internal medicine.", + "pos": "verb", + "word_frequency": 26797 + }, + { + "word": "stame", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stamen (botany);thread (archaic)", + "romanization": "stame", + "example_sentence_native": "Gli stami sono gli organi riproduttivi maschili del fiore.", + "example_sentence_english": "Stamens are the male reproductive organs of the flower.", + "pos": "noun", + "word_frequency": 26799 + }, + { + "word": "strillare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to scream", + "romanization": "strillare", + "example_sentence_native": "Il bambino ha iniziato a strillare quando ha visto il cane.", + "example_sentence_english": "The child started to scream when he saw the dog.", + "pos": "verb", + "word_frequency": 26801 + }, + { + "word": "stupefatto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "astonished", + "romanization": "stupefatto", + "example_sentence_native": "Era stupefatto dalla bellezza del paesaggio.", + "example_sentence_english": "He was astonished by the beauty of the landscape.", + "pos": "adjective", + "word_frequency": 26802 + }, + { + "word": "sudorazione", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "sweating", + "romanization": "sudorazione", + "example_sentence_native": "L'esercizio fisico intenso provoca sudorazione.", + "example_sentence_english": "Intense physical exercise causes sweating.", + "pos": "noun", + "word_frequency": 26803 + }, + { + "word": "sudorientale", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "southeastern", + "romanization": "sudorientale", + "example_sentence_native": "La regione sudorientale è nota per il suo clima mite.", + "example_sentence_english": "The southeastern region is known for its mild climate.", + "pos": "adjective", + "word_frequency": 26804 + }, + { + "word": "suppellettile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "piece of furniture", + "romanization": "suppellettile", + "example_sentence_native": "Ogni suppellettile della casa era antico e prezioso.", + "example_sentence_english": "Every piece of furniture in the house was antique and precious.", + "pos": "noun", + "word_frequency": 26807 + }, + { + "word": "supplenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "substitute teaching", + "romanization": "supplenza", + "example_sentence_native": "Ha ottenuto una supplenza come insegnante di matematica.", + "example_sentence_english": "She got a substitute teaching position as a math teacher.", + "pos": "noun", + "word_frequency": 26808 + }, + { + "word": "tabellino", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "scorecard", + "romanization": "tabellino", + "example_sentence_native": "Il tabellino della partita mostrava un risultato inaspettato.", + "example_sentence_english": "The match scorecard showed an unexpected result.", + "pos": "noun", + "word_frequency": 26809 + }, + { + "word": "tacciare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to accuse", + "romanization": "tacciare", + "example_sentence_native": "È stato tacciato di corruzione.", + "example_sentence_english": "He was accused of corruption.", + "pos": "verb", + "word_frequency": 26810 + }, + { + "word": "telefonicamente", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "by telephone", + "romanization": "telefonicamente", + "example_sentence_native": "Ho parlato telefonicamente con il servizio clienti.", + "example_sentence_english": "I spoke by telephone with customer service.", + "pos": "adverb", + "word_frequency": 26812 + }, + { + "word": "tempietto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "small temple", + "romanization": "tempietto", + "example_sentence_native": "Il tempietto romano è un'attrazione turistica.", + "example_sentence_english": "The Roman small temple is a tourist attraction.", + "pos": "noun", + "word_frequency": 26813 + }, + { + "word": "tiberino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Tiberine", + "romanization": "tiberino", + "example_sentence_native": "Le sponde tiberine sono ideali per una passeggiata.", + "example_sentence_english": "The Tiberine banks are ideal for a walk.", + "pos": "adjective", + "word_frequency": 26814 + }, + { + "word": "titolone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sensational headline", + "romanization": "titolone", + "example_sentence_native": "Il giornale aveva un titolone in prima pagina.", + "example_sentence_english": "The newspaper had a sensational headline on the front page.", + "pos": "noun", + "word_frequency": 26815 + }, + { + "word": "toner", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "toner", + "romanization": "toner", + "example_sentence_native": "Devo comprare un nuovo toner per la stampante.", + "example_sentence_english": "I need to buy new toner for the printer.", + "pos": "noun", + "word_frequency": 26816 + }, + { + "word": "traslocare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to move house", + "romanization": "traslocare", + "example_sentence_native": "Dobbiamo traslocare il mese prossimo.", + "example_sentence_english": "We have to move house next month.", + "pos": "verb", + "word_frequency": 26818 + }, + { + "word": "trivellazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "drilling", + "romanization": "trivellazione", + "example_sentence_native": "La trivellazione petrolifera è un processo complesso.", + "example_sentence_english": "Oil drilling is a complex process.", + "pos": "noun", + "word_frequency": 26819 + }, + { + "word": "tubazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "piping", + "romanization": "tubazione", + "example_sentence_native": "Hanno sostituito l'intera tubazione dell'acqua.", + "example_sentence_english": "They replaced the entire water piping.", + "pos": "noun", + "word_frequency": 26820 + }, + { + "word": "usufrutto", + "useful_for_flashcard": true, + "cefr_level": "C2", + "english_translation": "usufruct", + "romanization": "usufrutto", + "example_sentence_native": "Ha il diritto di usufrutto sulla proprietà.", + "example_sentence_english": "He has the right of usufruct over the property.", + "pos": "noun", + "word_frequency": 26824 + }, + { + "word": "utopico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "utopian", + "romanization": "utopico", + "example_sentence_native": "La sua visione del futuro è piuttosto utopica.", + "example_sentence_english": "His vision of the future is quite utopian.", + "pos": "adjective", + "word_frequency": 26825 + }, + { + "word": "validazione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "validation", + "romanization": "validazione", + "example_sentence_native": "Il processo di validazione richiede tempo.", + "example_sentence_english": "The validation process takes time.", + "pos": "noun", + "word_frequency": 26827 + }, + { + "word": "varianza", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "variance", + "romanization": "varianza", + "example_sentence_native": "La varianza dei dati è molto alta.", + "example_sentence_english": "The variance of the data is very high.", + "pos": "noun", + "word_frequency": 26831 + }, + { + "word": "vertebrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vertebrate", + "romanization": "vertebrato", + "example_sentence_native": "I mammiferi sono animali vertebrati.", + "example_sentence_english": "Mammals are vertebrate animals.", + "pos": "noun", + "word_frequency": 26832 + }, + { + "word": "violetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "violet", + "romanization": "violetto", + "example_sentence_native": "Ha comprato un vestito di colore violetto.", + "example_sentence_english": "She bought a violet-colored dress.", + "pos": "adjective", + "word_frequency": 26833 + }, + { + "word": "albicocca", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "apricot", + "romanization": "albicocca", + "example_sentence_native": "Mi piace mangiare l'albicocca in estate.", + "example_sentence_english": "I like to eat apricot in summer.", + "pos": "noun", + "word_frequency": 26844 + }, + { + "word": "alveo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "riverbed;channel", + "romanization": "alveo", + "example_sentence_native": "Il fiume ha cambiato il suo alveo dopo l'alluvione.", + "example_sentence_english": "The river changed its riverbed after the flood.", + "pos": "noun", + "word_frequency": 26854 + }, + { + "word": "ancorato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anchored;rooted", + "romanization": "ancorato", + "example_sentence_native": "La nave è ancorata nel porto.", + "example_sentence_english": "The ship is anchored in the port.", + "pos": "adjective", + "word_frequency": 26856 + }, + { + "word": "anestetico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "anesthetic", + "romanization": "anestetico", + "example_sentence_native": "Il dentista ha usato un farmaco anestetico.", + "example_sentence_english": "The dentist used an anesthetic drug.", + "pos": "adjective", + "word_frequency": 26857 + }, + { + "word": "appaltante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "contracting authority;client (in a contract)", + "romanization": "appaltante", + "example_sentence_native": "L'azienda appaltante ha pubblicato il bando.", + "example_sentence_english": "The contracting authority published the tender.", + "pos": "noun", + "word_frequency": 26859 + }, + { + "word": "appendicite", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "appendicitis", + "romanization": "appendicite", + "example_sentence_native": "Ha avuto un attacco di appendicite.", + "example_sentence_english": "He had an attack of appendicitis.", + "pos": "noun", + "word_frequency": 26860 + }, + { + "word": "araldo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "herald", + "romanization": "araldo", + "example_sentence_native": "Il corvo è spesso considerato un araldo di sventura.", + "example_sentence_english": "The crow is often considered a herald of misfortune.", + "pos": "noun", + "word_frequency": 26862 + }, + { + "word": "assuefazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "addiction;habituation", + "romanization": "assuefazione", + "example_sentence_native": "L'assuefazione al fumo è difficile da superare.", + "example_sentence_english": "Nicotine addiction is difficult to overcome.", + "pos": "noun", + "word_frequency": 26866 + }, + { + "word": "atollo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "atoll", + "romanization": "atollo", + "example_sentence_native": "Le Maldive sono famose per i loro atolli corallini.", + "example_sentence_english": "The Maldives are famous for their coral atolls.", + "pos": "noun", + "word_frequency": 26867 + }, + { + "word": "auditore", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "auditor;listener (in a formal context)", + "romanization": "auditore", + "example_sentence_native": "L'auditore ha esaminato i conti dell'azienda.", + "example_sentence_english": "The auditor examined the company's accounts.", + "pos": "noun", + "word_frequency": 26868 + }, + { + "word": "austero", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "austere;severe", + "romanization": "austero", + "example_sentence_native": "Il suo aspetto era austero ma gentile.", + "example_sentence_english": "His appearance was austere but kind.", + "pos": "adjective", + "word_frequency": 26869 + }, + { + "word": "autodistruzione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-destruction", + "romanization": "autodistruzione", + "example_sentence_native": "Il programma ha un meccanismo di autodistruzione.", + "example_sentence_english": "The program has a self-destruction mechanism.", + "pos": "noun", + "word_frequency": 26870 + }, + { + "word": "avambraccio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "forearm", + "romanization": "avambraccio", + "example_sentence_native": "Si è fatto male all'avambraccio cadendo.", + "example_sentence_english": "He hurt his forearm when he fell.", + "pos": "noun", + "word_frequency": 26871 + }, + { + "word": "bacetto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "little kiss;peck", + "romanization": "bacetto", + "example_sentence_native": "Mi ha dato un bacetto sulla guancia.", + "example_sentence_english": "He gave me a little kiss on the cheek.", + "pos": "noun", + "word_frequency": 26873 + }, + { + "word": "battesimale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "baptismal", + "romanization": "battesimale", + "example_sentence_native": "Il fonte battesimale è antico.", + "example_sentence_english": "The baptismal font is ancient.", + "pos": "adjective", + "word_frequency": 26876 + }, + { + "word": "battutina", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "little joke;quip", + "romanization": "battutina", + "example_sentence_native": "Ha fatto una battutina divertente.", + "example_sentence_english": "He made a funny little joke.", + "pos": "noun", + "word_frequency": 26877 + }, + { + "word": "bitter", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "bitter (drink);bitterness", + "romanization": "bitter", + "example_sentence_native": "Mi piace bere un bitter prima di cena.", + "example_sentence_english": "I like to drink a bitter before dinner.", + "pos": "noun", + "word_frequency": 26883 + }, + { + "word": "canfora", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "camphor", + "romanization": "canfora", + "example_sentence_native": "L'odore della canfora è molto forte.", + "example_sentence_english": "The smell of camphor is very strong.", + "pos": "noun", + "word_frequency": 26891 + }, + { + "word": "canneto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reed bed;cane thicket", + "romanization": "canneto", + "example_sentence_native": "Le anatre si nascondevano nel canneto.", + "example_sentence_english": "The ducks were hiding in the reed bed.", + "pos": "noun", + "word_frequency": 26892 + }, + { + "word": "capanno", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "shed;hut", + "romanization": "capanno", + "example_sentence_native": "Abbiamo riposto gli attrezzi nel capanno.", + "example_sentence_english": "We stored the tools in the shed.", + "pos": "noun", + "word_frequency": 26893 + }, + { + "word": "capezzale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "bedside", + "romanization": "capezzale", + "example_sentence_native": "Si sedette al capezzale del malato.", + "example_sentence_english": "He sat at the patient's bedside.", + "pos": "noun", + "word_frequency": 26894 + }, + { + "word": "capogiro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "dizziness;vertigo", + "romanization": "capogiro", + "example_sentence_native": "Ho avuto un capogiro improvviso.", + "example_sentence_english": "I had a sudden dizzy spell.", + "pos": "noun", + "word_frequency": 26895 + }, + { + "word": "caramel", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "caramel", + "romanization": "caramel", + "example_sentence_native": "Il gelato al caramel è il mio preferito.", + "example_sentence_english": "Caramel ice cream is my favorite.", + "pos": "noun", + "word_frequency": 26896 + }, + { + "word": "caratterizzante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "characterizing;distinctive", + "romanization": "caratterizzante", + "example_sentence_native": "Il suo stile è molto caratterizzante.", + "example_sentence_english": "His style is very distinctive.", + "pos": "adjective", + "word_frequency": 26897 + }, + { + "word": "carpire", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to snatch;to extract;to elicit", + "romanization": "carpire", + "example_sentence_native": "Ha cercato di carpire informazioni.", + "example_sentence_english": "He tried to elicit information.", + "pos": "verb", + "word_frequency": 26898 + }, + { + "word": "cazzotto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "punch;blow", + "romanization": "cazzotto", + "example_sentence_native": "Gli ha dato un cazzotto in faccia.", + "example_sentence_english": "He gave him a punch in the face.", + "pos": "noun", + "word_frequency": 26900 + }, + { + "word": "cedola", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "coupon;voucher;bond certificate", + "romanization": "cedola", + "example_sentence_native": "Ha staccato la cedola dal libretto.", + "example_sentence_english": "He detached the coupon from the booklet.", + "pos": "noun", + "word_frequency": 26901 + }, + { + "word": "cenone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "big dinner;New Year's Eve dinner", + "romanization": "cenone", + "example_sentence_native": "Abbiamo organizzato un cenone per Capodanno.", + "example_sentence_english": "We organized a big dinner for New Year's Eve.", + "pos": "noun", + "word_frequency": 26902 + }, + { + "word": "cipria", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "face powder", + "romanization": "cipria", + "example_sentence_native": "Si è messa un po' di cipria sul naso.", + "example_sentence_english": "She put some face powder on her nose.", + "pos": "noun", + "word_frequency": 26904 + }, + { + "word": "cistico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "cystic", + "romanization": "cistico", + "example_sentence_native": "Ha una fibrosi cistica.", + "example_sentence_english": "He has cystic fibrosis.", + "pos": "adjective", + "word_frequency": 26905 + }, + { + "word": "clericale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "clerical", + "romanization": "clericale", + "example_sentence_native": "Indossava un abito clericale.", + "example_sentence_english": "He wore clerical attire.", + "pos": "adjective", + "word_frequency": 26907 + }, + { + "word": "coaching", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "coaching", + "romanization": "coaching", + "example_sentence_native": "Ha iniziato un percorso di coaching per migliorare la sua carriera.", + "example_sentence_english": "He started a coaching program to improve his career.", + "pos": "noun", + "word_frequency": 26908 + }, + { + "word": "coagulo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "clot;coagulum", + "romanization": "coagulo", + "example_sentence_native": "Si è formato un coagulo di sangue.", + "example_sentence_english": "A blood clot formed.", + "pos": "noun", + "word_frequency": 26909 + }, + { + "word": "commercializzare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to commercialize;to market", + "romanization": "commercializzare", + "example_sentence_native": "L'azienda vuole commercializzare il nuovo prodotto.", + "example_sentence_english": "The company wants to commercialize the new product.", + "pos": "verb", + "word_frequency": 26913 + }, + { + "word": "comparizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "appearance;summons", + "romanization": "comparizione", + "example_sentence_native": "Ha ricevuto una citazione per la comparizione in tribunale.", + "example_sentence_english": "He received a summons for his appearance in court.", + "pos": "noun", + "word_frequency": 26914 + }, + { + "word": "concorrenziale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "competitive", + "romanization": "concorrenziale", + "example_sentence_native": "Offrono prezzi molto concorrenziali.", + "example_sentence_english": "They offer very competitive prices.", + "pos": "adjective", + "word_frequency": 26915 + }, + { + "word": "controluce", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "backlight;contre-jour", + "romanization": "controluce", + "example_sentence_native": "La foto è stata scattata in controluce.", + "example_sentence_english": "The photo was taken against the light (backlit).", + "pos": "noun", + "word_frequency": 26918 + }, + { + "word": "cremisi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "crimson", + "romanization": "cremisi", + "example_sentence_native": "Indossava un vestito di seta cremisi.", + "example_sentence_english": "She wore a crimson silk dress.", + "pos": "adjective", + "word_frequency": 26919 + }, + { + "word": "cutter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "cutter (knife)", + "romanization": "cutter", + "example_sentence_native": "Ho usato il cutter per aprire la scatola.", + "example_sentence_english": "I used the cutter to open the box.", + "pos": "noun", + "word_frequency": 26922 + }, + { + "word": "decapitato", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "beheaded", + "romanization": "decapitato", + "example_sentence_native": "La statua era stata trovata decapitata.", + "example_sentence_english": "The statue had been found beheaded.", + "pos": "adjective", + "word_frequency": 26929 + }, + { + "word": "decentrato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "decentralized", + "romanization": "decentrato", + "example_sentence_native": "Hanno proposto un modello di gestione decentrato.", + "example_sentence_english": "They proposed a decentralized management model.", + "pos": "adjective", + "word_frequency": 26930 + }, + { + "word": "demon", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demon", + "romanization": "demon", + "example_sentence_native": "Si dice che un demon vivesse in quella casa.", + "example_sentence_english": "It is said that a demon lived in that house.", + "pos": "noun", + "word_frequency": 26939 + }, + { + "word": "depressivi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depressive (plural)", + "romanization": "depressivi", + "example_sentence_native": "I farmaci antidepressivi sono usati per curare gli stati depressivi.", + "example_sentence_english": "Antidepressant drugs are used to treat depressive states.", + "pos": "adjective", + "word_frequency": 26940 + }, + { + "word": "depressivo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depressive (singular)", + "romanization": "depressivo", + "example_sentence_native": "Ha un umore depressivo ultimamente.", + "example_sentence_english": "He has a depressive mood lately.", + "pos": "adjective", + "word_frequency": 26941 + }, + { + "word": "deride", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "mocks;ridicules", + "romanization": "deride", + "example_sentence_native": "Non deride mai gli altri per i loro errori.", + "example_sentence_english": "He never mocks others for their mistakes.", + "pos": "verb", + "word_frequency": 26942 + }, + { + "word": "diadema", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "diadem;tiara", + "romanization": "diadema", + "example_sentence_native": "La regina indossava un magnifico diadema.", + "example_sentence_english": "The queen wore a magnificent diadem.", + "pos": "noun", + "word_frequency": 26943 + }, + { + "word": "dicendosi", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "saying to oneself;each other", + "romanization": "dicendosi", + "example_sentence_native": "Se ne andò, dicendosi che non sarebbe più tornato.", + "example_sentence_english": "He left, saying to himself that he would never return.", + "pos": "verb", + "word_frequency": 26944 + }, + { + "word": "dimostrativa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "demonstrative", + "romanization": "dimostrativa", + "example_sentence_native": "Ha fatto una dimostrazione molto chiara e dimostrativa.", + "example_sentence_english": "She gave a very clear and demonstrative presentation.", + "pos": "adjective", + "word_frequency": 26945 + }, + { + "word": "dipeso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "depended (on);reliant (on)", + "romanization": "dipeso", + "example_sentence_native": "Il risultato è dipeso da molti fattori.", + "example_sentence_english": "The result depended on many factors.", + "pos": "adjective", + "word_frequency": 26946 + }, + { + "word": "disabitata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "uninhabited", + "romanization": "disabitata", + "example_sentence_native": "Hanno scoperto un'isola disabitata.", + "example_sentence_english": "They discovered an uninhabited island.", + "pos": "adjective", + "word_frequency": 26947 + }, + { + "word": "discrezionale", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "discretionary", + "romanization": "discrezionale", + "example_sentence_native": "Il giudice ha un potere discrezionale in questi casi.", + "example_sentence_english": "The judge has discretionary power in these cases.", + "pos": "adjective", + "word_frequency": 26948 + }, + { + "word": "disillusione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disillusionment", + "romanization": "disillusione", + "example_sentence_native": "La sua disillusione era evidente.", + "example_sentence_english": "His disillusionment was evident.", + "pos": "noun", + "word_frequency": 26949 + }, + { + "word": "disinfezione", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "disinfection", + "romanization": "disinfezione", + "example_sentence_native": "È necessaria una disinfezione accurata dopo l'intervento.", + "example_sentence_english": "Thorough disinfection is necessary after the operation.", + "pos": "noun", + "word_frequency": 26950 + }, + { + "word": "dispotico", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "despotic", + "romanization": "dispotico", + "example_sentence_native": "Il re era noto per il suo carattere dispotico.", + "example_sentence_english": "The king was known for his despotic character.", + "pos": "adjective", + "word_frequency": 26951 + }, + { + "word": "distrattamente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "distractedly;absent-mindedly", + "romanization": "distrattamente", + "example_sentence_native": "Ha risposto distrattamente, senza prestare attenzione.", + "example_sentence_english": "He replied distractedly, without paying attention.", + "pos": "adverb", + "word_frequency": 26952 + }, + { + "word": "edificante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "edifying;uplifting", + "romanization": "edificante", + "example_sentence_native": "La sua storia è stata davvero edificante.", + "example_sentence_english": "His story was truly edifying.", + "pos": "adjective", + "word_frequency": 26954 + }, + { + "word": "epidemiologia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "epidemiology", + "romanization": "epidemiologia", + "example_sentence_native": "Lo studio dell'epidemiologia è fondamentale per la salute pubblica.", + "example_sentence_english": "The study of epidemiology is fundamental for public health.", + "pos": "noun", + "word_frequency": 26957 + }, + { + "word": "erboso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "grassy", + "romanization": "erboso", + "example_sentence_native": "Il prato era molto erboso e verde.", + "example_sentence_english": "The lawn was very grassy and green.", + "pos": "adjective", + "word_frequency": 26958 + }, + { + "word": "escursionismo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "hiking;excursionism", + "romanization": "escursionismo", + "example_sentence_native": "L'escursionismo è un'attività popolare in montagna.", + "example_sentence_english": "Hiking is a popular activity in the mountains.", + "pos": "noun", + "word_frequency": 26960 + }, + { + "word": "esportato", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "exported", + "romanization": "esportato", + "example_sentence_native": "Il prodotto è stato esportato in molti paesi.", + "example_sentence_english": "The product has been exported to many countries.", + "pos": "adjective", + "word_frequency": 26961 + }, + { + "word": "fatal", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "fatal", + "romanization": "fatal", + "example_sentence_native": "L'incidente ha avuto conseguenze fatali.", + "example_sentence_english": "The accident had fatal consequences.", + "pos": "adjective", + "word_frequency": 26964 + }, + { + "word": "female", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "female", + "romanization": "female", + "example_sentence_native": "La popolazione femminile è in aumento.", + "example_sentence_english": "The female population is increasing.", + "pos": "adjective", + "word_frequency": 26965 + }, + { + "word": "forgiare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to forge;to shape", + "romanization": "forgiare", + "example_sentence_native": "Il fabbro ha forgiato il ferro.", + "example_sentence_english": "The blacksmith forged the iron.", + "pos": "verb", + "word_frequency": 26967 + }, + { + "word": "fotoreporter", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "photojournalist", + "romanization": "fotoreporter", + "example_sentence_native": "Il fotoreporter ha catturato immagini incredibili.", + "example_sentence_english": "The photojournalist captured incredible images.", + "pos": "noun", + "word_frequency": 26969 + }, + { + "word": "galà", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "gala", + "romanization": "galà", + "example_sentence_native": "Hanno organizzato un galà di beneficenza.", + "example_sentence_english": "They organized a charity gala.", + "pos": "noun", + "word_frequency": 26971 + }, + { + "word": "gonfalone", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "gonfalon;banner", + "romanization": "gonfalone", + "example_sentence_native": "Il gonfalone della città sfilava per le strade.", + "example_sentence_english": "The city's gonfalon paraded through the streets.", + "pos": "noun", + "word_frequency": 26976 + }, + { + "word": "grossomodo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "roughly;approximately", + "romanization": "grossomodo", + "example_sentence_native": "Grossomodo, ci vorranno due ore.", + "example_sentence_english": "Roughly, it will take two hours.", + "pos": "adverb", + "word_frequency": 26979 + }, + { + "word": "impersonare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to impersonate;to embody", + "romanization": "impersonare", + "example_sentence_native": "L'attore è riuscito a impersonare il personaggio.", + "example_sentence_english": "The actor managed to impersonate the character.", + "pos": "verb", + "word_frequency": 26989 + }, + { + "word": "incendiare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to set fire to;to ignite", + "romanization": "incendiare", + "example_sentence_native": "Hanno cercato di incendiare il bosco.", + "example_sentence_english": "They tried to set fire to the forest.", + "pos": "verb", + "word_frequency": 26990 + }, + { + "word": "incompreso", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "misunderstood", + "romanization": "incompreso", + "example_sentence_native": "Si sentiva un artista incompreso.", + "example_sentence_english": "He felt like a misunderstood artist.", + "pos": "adjective", + "word_frequency": 26991 + }, + { + "word": "indefinitamente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "indefinitely", + "romanization": "indefinitamente", + "example_sentence_native": "La riunione è stata rinviata indefinitamente.", + "example_sentence_english": "The meeting has been postponed indefinitely.", + "pos": "adverb", + "word_frequency": 26992 + }, + { + "word": "ingiustificabile", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "unjustifiable", + "romanization": "ingiustificabile", + "example_sentence_native": "Il suo comportamento è ingiustificabile.", + "example_sentence_english": "His behavior is unjustifiable.", + "pos": "adjective", + "word_frequency": 26993 + }, + { + "word": "iniquità", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "iniquity;wickedness", + "romanization": "iniquità", + "example_sentence_native": "La legge combatte le iniquità sociali.", + "example_sentence_english": "The law fights social iniquities.", + "pos": "noun", + "word_frequency": 26994 + }, + { + "word": "inneggiare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to cheer;to acclaim;to praise", + "romanization": "inneggiare", + "example_sentence_native": "La folla inneggiava al vincitore.", + "example_sentence_english": "The crowd cheered for the winner.", + "pos": "verb", + "word_frequency": 26995 + }, + { + "word": "insofferente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "intolerant;impatient", + "romanization": "insofferente", + "example_sentence_native": "Era insofferente alle critiche.", + "example_sentence_english": "He was intolerant of criticism.", + "pos": "adjective", + "word_frequency": 26996 + }, + { + "word": "ipertrofia", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "hypertrophy", + "romanization": "ipertrofia", + "example_sentence_native": "L'ipertrofia muscolare è comune negli atleti.", + "example_sentence_english": "Muscle hypertrophy is common in athletes.", + "pos": "noun", + "word_frequency": 26998 + }, + { + "word": "irriducibile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "irreducible;unyielding", + "romanization": "irriducibile", + "example_sentence_native": "Era un avversario irriducibile.", + "example_sentence_english": "He was an unyielding opponent.", + "pos": "adjective", + "word_frequency": 26999 + }, + { + "word": "longa", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "long note (in music)", + "romanization": "longa", + "example_sentence_native": "Nella musica antica, la 'longa' era una nota di lunga durata.", + "example_sentence_english": "In ancient music, the 'longa' was a long-duration note.", + "pos": "noun", + "word_frequency": 27015 + }, + { + "word": "lugubre", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gloomy;dismal", + "romanization": "lugubre", + "example_sentence_native": "Il cielo era lugubre e minacciava pioggia.", + "example_sentence_english": "The sky was gloomy and threatened rain.", + "pos": "adjective", + "word_frequency": 27018 + }, + { + "word": "lusinga", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "flattery;blandishment", + "romanization": "lusinga", + "example_sentence_native": "Non lasciarti ingannare dalle sue lusinghe.", + "example_sentence_english": "Don't be fooled by his flattery.", + "pos": "noun", + "word_frequency": 27019 + }, + { + "word": "malga", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "alpine hut;mountain dairy farm", + "romanization": "malga", + "example_sentence_native": "Abbiamo visitato una malga tradizionale sulle Dolomiti.", + "example_sentence_english": "We visited a traditional alpine hut in the Dolomites.", + "pos": "noun", + "word_frequency": 27022 + }, + { + "word": "malleabile", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "malleable;pliable", + "romanization": "malleabile", + "example_sentence_native": "L'argilla è un materiale molto malleabile.", + "example_sentence_english": "Clay is a very malleable material.", + "pos": "adjective", + "word_frequency": 27023 + }, + { + "word": "mangiatoia", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "manger;trough", + "romanization": "mangiatoia", + "example_sentence_native": "I cavalli mangiavano dalla mangiatoia.", + "example_sentence_english": "The horses were eating from the manger.", + "pos": "noun", + "word_frequency": 27024 + }, + { + "word": "mendicare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to beg", + "romanization": "mendicare", + "example_sentence_native": "Non è dignitoso mendicare per vivere.", + "example_sentence_english": "It is not dignified to beg for a living.", + "pos": "verb", + "word_frequency": 27032 + }, + { + "word": "merletto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "lace", + "romanization": "merletto", + "example_sentence_native": "Il vestito era decorato con un fine merletto.", + "example_sentence_english": "The dress was decorated with fine lace.", + "pos": "noun", + "word_frequency": 27034 + }, + { + "word": "microcosmo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "microcosm", + "romanization": "microcosmo", + "example_sentence_native": "La famiglia è un microcosmo della società.", + "example_sentence_english": "The family is a microcosm of society.", + "pos": "noun", + "word_frequency": 27035 + }, + { + "word": "mou", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "soft toy;plush", + "romanization": "mou", + "example_sentence_native": "Il bambino dorme con il suo orsetto di mou.", + "example_sentence_english": "The child sleeps with his soft toy bear.", + "pos": "noun", + "word_frequency": 27042 + }, + { + "word": "oceanico", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "oceanic", + "romanization": "oceanico", + "example_sentence_native": "Le correnti oceaniche influenzano il clima.", + "example_sentence_english": "Oceanic currents influence the climate.", + "pos": "adjective", + "word_frequency": 27048 + }, + { + "word": "orecchietta", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "orecchietta (type of pasta)", + "romanization": "orecchietta", + "example_sentence_native": "Le orecchiette con le cime di rapa sono un piatto tipico pugliese.", + "example_sentence_english": "Orecchiette with turnip tops is a typical Apulian dish.", + "pos": "noun", + "word_frequency": 27051 + }, + { + "word": "orsacchiotto", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "teddy bear", + "romanization": "orsacchiotto", + "example_sentence_native": "Il bambino abbracciava il suo orsacchiotto.", + "example_sentence_english": "The child hugged his teddy bear.", + "pos": "noun", + "word_frequency": 27052 + }, + { + "word": "ottantenne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "eighty-year-old (person)", + "romanization": "ottantenne", + "example_sentence_native": "La signora ottantenne è ancora molto attiva.", + "example_sentence_english": "The eighty-year-old lady is still very active.", + "pos": "adjective", + "word_frequency": 27053 + }, + { + "word": "ovvietà", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "obviousness;truism", + "romanization": "ovvietà", + "example_sentence_native": "Quello che hai detto è un'ovvietà.", + "example_sentence_english": "What you said is an obviousness.", + "pos": "noun", + "word_frequency": 27055 + }, + { + "word": "pagante", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "payer;paying customer", + "romanization": "pagante", + "example_sentence_native": "I paganti hanno diritto a uno sconto.", + "example_sentence_english": "Paying customers are entitled to a discount.", + "pos": "noun", + "word_frequency": 27057 + }, + { + "word": "palmare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "palmar;handheld", + "romanization": "palmare", + "example_sentence_native": "Il dispositivo palmare è molto comodo.", + "example_sentence_english": "The handheld device is very convenient.", + "pos": "adjective", + "word_frequency": 27058 + }, + { + "word": "panne", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "breakdown;failure (often in 'in panne')", + "romanization": "panne", + "example_sentence_native": "La macchina è andata in panne.", + "example_sentence_english": "The car broke down.", + "pos": "noun", + "word_frequency": 27059 + }, + { + "word": "passamontagna", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "balaclava;ski mask", + "romanization": "passamontagna", + "example_sentence_native": "Indossava un passamontagna per proteggersi dal freddo.", + "example_sentence_english": "He wore a balaclava to protect himself from the cold.", + "pos": "noun", + "word_frequency": 27060 + }, + { + "word": "patronale", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "patronal;employer's;pertaining to a patron saint", + "romanization": "patronale", + "example_sentence_native": "La festa patronale si celebra ogni anno.", + "example_sentence_english": "The patron saint's feast is celebrated every year.", + "pos": "adjective", + "word_frequency": 27062 + }, + { + "word": "pecorella", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "lamb;little sheep", + "romanization": "pecorella", + "example_sentence_native": "La pecorella si è persa dal gregge.", + "example_sentence_english": "The little sheep got lost from the flock.", + "pos": "noun", + "word_frequency": 27064 + }, + { + "word": "pennino", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "nib;stylus", + "romanization": "pennino", + "example_sentence_native": "Ho bisogno di un nuovo pennino per la mia penna stilografica.", + "example_sentence_english": "I need a new nib for my fountain pen.", + "pos": "noun", + "word_frequency": 27065 + }, + { + "word": "perdizione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "perdition;ruin;damnation", + "romanization": "perdizione", + "example_sentence_native": "Si è lasciato andare alla perdizione.", + "example_sentence_english": "He let himself go to perdition.", + "pos": "noun", + "word_frequency": 27066 + }, + { + "word": "petardo", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "firecracker", + "romanization": "petardo", + "example_sentence_native": "I bambini giocavano con i petardi a Capodanno.", + "example_sentence_english": "The children played with firecrackers on New Year's Eve.", + "pos": "noun", + "word_frequency": 27067 + }, + { + "word": "peto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "fart", + "romanization": "peto", + "example_sentence_native": "Ha fatto un peto rumoroso.", + "example_sentence_english": "He let out a loud fart.", + "pos": "noun", + "word_frequency": 27070 + }, + { + "word": "piattino", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "saucer;small plate", + "romanization": "piattino", + "example_sentence_native": "Metti la tazza sul piattino.", + "example_sentence_english": "Put the cup on the saucer.", + "pos": "noun", + "word_frequency": 27071 + }, + { + "word": "piccone", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "pickaxe", + "romanization": "piccone", + "example_sentence_native": "Il minatore usava il piccone per estrarre il carbone.", + "example_sentence_english": "The miner used the pickaxe to extract coal.", + "pos": "noun", + "word_frequency": 27072 + }, + { + "word": "poemetto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "short poem;poetic piece", + "romanization": "poemetto", + "example_sentence_native": "Ha scritto un piccolo poemetto per il suo compleanno.", + "example_sentence_english": "He wrote a short poem for her birthday.", + "pos": "noun", + "word_frequency": 27074 + }, + { + "word": "polpettone", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "meatloaf", + "romanization": "polpettone", + "example_sentence_native": "Per cena abbiamo preparato un delizioso polpettone.", + "example_sentence_english": "For dinner we prepared a delicious meatloaf.", + "pos": "noun", + "word_frequency": 27075 + }, + { + "word": "prevenuto", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "prejudiced;biased", + "romanization": "prevenuto", + "example_sentence_native": "Non essere prevenuto prima di conoscere i fatti.", + "example_sentence_english": "Don't be prejudiced before knowing the facts.", + "pos": "adjective", + "word_frequency": 27079 + }, + { + "word": "profanazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "profanation", + "romanization": "profanazione", + "example_sentence_native": "La profanazione del tempio ha causato grande indignazione.", + "example_sentence_english": "The profanation of the temple caused great indignation.", + "pos": "noun", + "word_frequency": 27080 + }, + { + "word": "propizio", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "propitious;favorable", + "romanization": "propizio", + "example_sentence_native": "Questo è il momento propizio per iniziare il progetto.", + "example_sentence_english": "This is the propitious moment to start the project.", + "pos": "adjective", + "word_frequency": 27081 + }, + { + "word": "quadratura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "quadrature;squaring", + "romanization": "quadratura", + "example_sentence_native": "La quadratura del cerchio è un problema matematico irrisolvibile.", + "example_sentence_english": "The squaring of the circle is an unsolvable mathematical problem.", + "pos": "noun", + "word_frequency": 27083 + }, + { + "word": "quatto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "stealthy;crouching", + "romanization": "quatto", + "example_sentence_native": "Il gatto si muoveva quatto tra l'erba alta.", + "example_sentence_english": "The cat moved stealthily through the tall grass.", + "pos": "adjective", + "word_frequency": 27084 + }, + { + "word": "rametto", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "twig;small branch", + "romanization": "rametto", + "example_sentence_native": "Ha raccolto un piccolo rametto caduto dall'albero.", + "example_sentence_english": "He picked up a small twig that had fallen from the tree.", + "pos": "noun", + "word_frequency": 27086 + }, + { + "word": "ravvivare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to revive;to liven up", + "romanization": "ravvivare", + "example_sentence_native": "Un po' di colore può ravvivare l'ambiente.", + "example_sentence_english": "A little color can liven up the environment.", + "pos": "verb", + "word_frequency": 27087 + }, + { + "word": "razionalista", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "rationalist", + "romanization": "razionalista", + "example_sentence_native": "È un approccio molto razionalista al problema.", + "example_sentence_english": "It's a very rationalist approach to the problem.", + "pos": "adjective", + "word_frequency": 27089 + }, + { + "word": "reagente", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "reagent", + "romanization": "reagente", + "example_sentence_native": "Il chimico ha aggiunto il reagente alla soluzione.", + "example_sentence_english": "The chemist added the reagent to the solution.", + "pos": "noun", + "word_frequency": 27090 + }, + { + "word": "retroattivo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "retroactive", + "romanization": "retroattivo", + "example_sentence_native": "La legge non ha effetto retroattivo.", + "example_sentence_english": "The law does not have retroactive effect.", + "pos": "adjective", + "word_frequency": 27092 + }, + { + "word": "riassetto", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reorganization;rearrangement", + "romanization": "riassetto", + "example_sentence_native": "È necessario un riassetto completo del dipartimento.", + "example_sentence_english": "A complete reorganization of the department is necessary.", + "pos": "noun", + "word_frequency": 27095 + }, + { + "word": "ricredere", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to change one's mind;to be disabused", + "romanization": "ricredere", + "example_sentence_native": "Dopo aver visto i fatti, si è dovuto ricredere.", + "example_sentence_english": "After seeing the facts, he had to change his mind.", + "pos": "verb", + "word_frequency": 27096 + }, + { + "word": "rifilare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to palm off;to trim;to foist", + "romanization": "rifilare", + "example_sentence_native": "Mi ha rifilato un prodotto difettoso.", + "example_sentence_english": "He palmed off a defective product on me.", + "pos": "verb", + "word_frequency": 27097 + }, + { + "word": "riformismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "reformism", + "romanization": "riformismo", + "example_sentence_native": "Il riformismo è una corrente politica che cerca cambiamenti graduali.", + "example_sentence_english": "Reformism is a political current that seeks gradual changes.", + "pos": "noun", + "word_frequency": 27098 + }, + { + "word": "ripescaggio", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "repechage;recovery", + "romanization": "ripescaggio", + "example_sentence_native": "La squadra ha avuto una seconda possibilità grazie al ripescaggio.", + "example_sentence_english": "The team got a second chance thanks to the repechage.", + "pos": "noun", + "word_frequency": 27100 + }, + { + "word": "saetta", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "lightning bolt;arrow", + "romanization": "saetta", + "example_sentence_native": "Una saetta ha squarciato il cielo durante il temporale.", + "example_sentence_english": "A lightning bolt ripped through the sky during the storm.", + "pos": "noun", + "word_frequency": 27104 + }, + { + "word": "scemare", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "to decrease;to wane", + "romanization": "scemare", + "example_sentence_native": "La sua influenza ha iniziato a scemare.", + "example_sentence_english": "His influence began to wane.", + "pos": "verb", + "word_frequency": 27109 + }, + { + "word": "scioperante", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "striker", + "romanization": "scioperante", + "example_sentence_native": "Gli scioperanti si sono riuniti davanti alla fabbrica.", + "example_sentence_english": "The strikers gathered in front of the factory.", + "pos": "noun", + "word_frequency": 27112 + }, + { + "word": "scorribanda", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "raid;foray;quick excursion", + "romanization": "scorribanda", + "example_sentence_native": "Hanno fatto una scorribanda nel territorio nemico.", + "example_sentence_english": "They made a raid into enemy territory.", + "pos": "noun", + "word_frequency": 27113 + }, + { + "word": "sessantenne", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "sixty-year-old", + "romanization": "sessantenne", + "example_sentence_native": "Mio nonno è un sessantenne molto attivo.", + "example_sentence_english": "My grandfather is a very active sixty-year-old.", + "pos": "adjective", + "word_frequency": 27117 + }, + { + "word": "sferrare", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "to unleash;to launch (an attack);to strike", + "romanization": "sferrare", + "example_sentence_native": "Hanno sferrato un attacco a sorpresa.", + "example_sentence_english": "They launched a surprise attack.", + "pos": "verb", + "word_frequency": 27118 + }, + { + "word": "sibillino", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "sibylline;enigmatic", + "romanization": "sibillino", + "example_sentence_native": "La sua risposta fu sibillina e non ci diede alcuna certezza.", + "example_sentence_english": "His answer was sibylline and gave us no certainty.", + "pos": "adjective", + "word_frequency": 27120 + }, + { + "word": "sidro", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "cider", + "romanization": "sidro", + "example_sentence_native": "Abbiamo bevuto del sidro di mele fresco.", + "example_sentence_english": "We drank some fresh apple cider.", + "pos": "noun", + "word_frequency": 27121 + }, + { + "word": "smagliatura", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "stretch mark;run (in stocking)", + "romanization": "smagliatura", + "example_sentence_native": "Ho notato una smagliatura nella mia calza nuova.", + "example_sentence_english": "I noticed a run in my new stocking.", + "pos": "noun", + "word_frequency": 27123 + }, + { + "word": "solfa", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "same old story;old tune", + "romanization": "solfa", + "example_sentence_native": "È sempre la solita solfa con lui, non cambia mai.", + "example_sentence_english": "It's always the same old story with him, he never changes.", + "pos": "noun", + "word_frequency": 27125 + }, + { + "word": "soprintendente", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "superintendent;director", + "romanization": "soprintendente", + "example_sentence_native": "Il soprintendente ha ispezionato i lavori di restauro.", + "example_sentence_english": "The superintendent inspected the restoration work.", + "pos": "noun", + "word_frequency": 27127 + }, + { + "word": "spiazzo", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "open space;clearing", + "romanization": "spiazzo", + "example_sentence_native": "C'è un piccolo spiazzo davanti alla casa.", + "example_sentence_english": "There's a small open space in front of the house.", + "pos": "noun", + "word_frequency": 27128 + }, + { + "word": "spopolamento", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "depopulation", + "romanization": "spopolamento", + "example_sentence_native": "Il spopolamento delle aree rurali è un problema crescente.", + "example_sentence_english": "The depopulation of rural areas is a growing problem.", + "pos": "noun", + "word_frequency": 27129 + }, + { + "word": "spruzzata", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "splash;sprinkle", + "romanization": "spruzzata", + "example_sentence_native": "Una spruzzata di pioggia ci ha colto di sorpresa.", + "example_sentence_english": "A sprinkle of rain caught us by surprise.", + "pos": "noun", + "word_frequency": 27130 + }, + { + "word": "spyware", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "spyware", + "romanization": "spyware", + "example_sentence_native": "Il mio computer è stato infettato da uno spyware.", + "example_sentence_english": "My computer was infected by spyware.", + "pos": "noun", + "word_frequency": 27132 + }, + { + "word": "standby", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "standby", + "romanization": "standby", + "example_sentence_native": "Il volo è in standby a causa del maltempo.", + "example_sentence_english": "The flight is on standby due to bad weather.", + "pos": "noun", + "word_frequency": 27133 + }, + { + "word": "starna", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "partridge", + "romanization": "starna", + "example_sentence_native": "Abbiamo visto una starna nel campo.", + "example_sentence_english": "We saw a partridge in the field.", + "pos": "noun", + "word_frequency": 27134 + }, + { + "word": "supercar", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "supercar", + "romanization": "supercar", + "example_sentence_native": "Ha comprato una nuova supercar rossa.", + "example_sentence_english": "He bought a new red supercar.", + "pos": "noun", + "word_frequency": 27137 + }, + { + "word": "supernova", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "supernova", + "romanization": "supernova", + "example_sentence_native": "Gli astronomi hanno osservato una nuova supernova.", + "example_sentence_english": "Astronomers observed a new supernova.", + "pos": "noun", + "word_frequency": 27138 + }, + { + "word": "surrealismo", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "surrealism", + "romanization": "surrealismo", + "example_sentence_native": "Il surrealismo è un movimento artistico del XX secolo.", + "example_sentence_english": "Surrealism is an artistic movement of the 20th century.", + "pos": "noun", + "word_frequency": 27140 + }, + { + "word": "tappezzeria", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "upholstery;wallpaper", + "romanization": "tappezzeria", + "example_sentence_native": "Abbiamo scelto una nuova tappezzeria per il salotto.", + "example_sentence_english": "We chose new wallpaper for the living room.", + "pos": "noun", + "word_frequency": 27142 + }, + { + "word": "tardare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to be late;to delay", + "romanization": "tardare", + "example_sentence_native": "Non voglio tardare all'appuntamento.", + "example_sentence_english": "I don't want to be late for the appointment.", + "pos": "verb", + "word_frequency": 27143 + }, + { + "word": "tarso", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "tarsus (anatomy)", + "romanization": "tarso", + "example_sentence_native": "Il tarso è una parte del piede.", + "example_sentence_english": "The tarsus is a part of the foot.", + "pos": "noun", + "word_frequency": 27144 + }, + { + "word": "tato", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "daddy (child's word);male nanny", + "romanization": "tato", + "example_sentence_native": "Il mio tato mi legge una storia ogni sera.", + "example_sentence_english": "My daddy reads me a story every night.", + "pos": "noun", + "word_frequency": 27145 + }, + { + "word": "tepore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "warmth;mildness", + "romanization": "tepore", + "example_sentence_native": "Il tepore del sole primaverile era piacevole.", + "example_sentence_english": "The warmth of the spring sun was pleasant.", + "pos": "noun", + "word_frequency": 27147 + }, + { + "word": "tirchio", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "stingy;cheap", + "romanization": "tirchio", + "example_sentence_native": "Non essere così tirchio, offri tu questa volta!", + "example_sentence_english": "Don't be so stingy, you pay this time!", + "pos": "adjective", + "word_frequency": 27148 + }, + { + "word": "trainante", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "driving;leading;pulling", + "romanization": "trainante", + "example_sentence_native": "L'innovazione è il settore trainante dell'economia.", + "example_sentence_english": "Innovation is the driving sector of the economy.", + "pos": "adjective", + "word_frequency": 27151 + }, + { + "word": "tritare", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "to mince;to chop;to grind", + "romanization": "tritare", + "example_sentence_native": "Devo tritare le verdure per la salsa.", + "example_sentence_english": "I need to chop the vegetables for the sauce.", + "pos": "verb", + "word_frequency": 27152 + }, + { + "word": "trivella", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "drill;auger", + "romanization": "trivella", + "example_sentence_native": "Hanno usato una trivella per perforare il terreno.", + "example_sentence_english": "They used a drill to bore into the ground.", + "pos": "noun", + "word_frequency": 27153 + }, + { + "word": "valdese", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "Waldensian", + "romanization": "valdese", + "example_sentence_native": "La Chiesa Valdese ha una lunga storia in Italia.", + "example_sentence_english": "The Waldensian Church has a long history in Italy.", + "pos": "adjective", + "word_frequency": 27154 + }, + { + "word": "ventoso", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "windy", + "romanization": "ventoso", + "example_sentence_native": "Oggi è una giornata molto ventosa.", + "example_sentence_english": "Today is a very windy day.", + "pos": "adjective", + "word_frequency": 27156 + }, + { + "word": "viario", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "road (adj.);pertaining to roads", + "romanization": "viario", + "example_sentence_native": "Hanno migliorato la rete viaria della regione.", + "example_sentence_english": "They improved the road network of the region.", + "pos": "adjective", + "word_frequency": 27157 + }, + { + "word": "villain", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "villain", + "romanization": "villain", + "example_sentence_native": "Il villain del film era molto carismatico.", + "example_sentence_english": "The villain of the movie was very charismatic.", + "pos": "noun", + "word_frequency": 27158 + }, + { + "word": "vocalist", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "vocalist", + "romanization": "vocalist", + "example_sentence_native": "Il vocalist della band ha una voce potente.", + "example_sentence_english": "The band's vocalist has a powerful voice.", + "pos": "noun", + "word_frequency": 27161 + }, + { + "word": "abbordabile", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "affordable", + "romanization": "abbordabile", + "example_sentence_native": "Il prezzo di questa casa è abbordabile.", + "example_sentence_english": "The price of this house is affordable.", + "pos": "adjective", + "word_frequency": 27171 + }, + { + "word": "abnegazione", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "self-sacrifice", + "romanization": "abnegazione", + "example_sentence_native": "Ha mostrato grande abnegazione per la sua famiglia.", + "example_sentence_english": "He showed great self-sacrifice for his family.", + "pos": "noun", + "word_frequency": 27172 + }, + { + "word": "acrilico", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "acrylic", + "romanization": "acrilico", + "example_sentence_native": "Ho comprato una pittura acrilica.", + "example_sentence_english": "I bought an acrylic paint.", + "pos": "adjective", + "word_frequency": 27173 + }, + { + "word": "adiacenza", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "adjacency", + "romanization": "adiacenza", + "example_sentence_native": "La casa è in adiacenza al parco.", + "example_sentence_english": "The house is in adjacency to the park.", + "pos": "noun", + "word_frequency": 27174 + }, + { + "word": "adibito", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "used as", + "romanization": "adibito", + "example_sentence_native": "La stanza è adibita a studio.", + "example_sentence_english": "The room is designated as a study.", + "pos": "adjective", + "word_frequency": 27175 + }, + { + "word": "adunata", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "gathering", + "romanization": "adunata", + "example_sentence_native": "L'adunata è prevista per le dieci.", + "example_sentence_english": "The gathering is scheduled for ten o'clock.", + "pos": "noun", + "word_frequency": 27176 + }, + { + "word": "insù", + "useful_for_flashcard": true, + "cefr_level": "B1", + "english_translation": "upwards", + "romanization": "insù", + "example_sentence_native": "Guarda insù, c'è un aereo.", + "example_sentence_english": "Look up, there's a plane.", + "pos": "adverb", + "word_frequency": 27180 + }, + { + "word": "allacciare", + "useful_for_flashcard": true, + "cefr_level": "A2", + "english_translation": "to tie", + "romanization": "allacciare", + "example_sentence_native": "Per favore, allaccia le scarpe.", + "example_sentence_english": "Please, tie your shoes.", + "pos": "verb", + "word_frequency": 27181 + }, + { + "word": "appaltatore", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "contractor", + "romanization": "appaltatore", + "example_sentence_native": "L'appaltatore ha completato i lavori in tempo.", + "example_sentence_english": "The contractor completed the work on time.", + "pos": "noun", + "word_frequency": 27185 + }, + { + "word": "asimmetria", + "useful_for_flashcard": true, + "cefr_level": "C1", + "english_translation": "asymmetry", + "romanization": "asimmetria", + "example_sentence_native": "C'è una chiara asimmetria nel design.", + "example_sentence_english": "There is a clear asymmetry in the design.", + "pos": "noun", + "word_frequency": 27187 + }, + { + "word": "aspirato", + "useful_for_flashcard": true, + "cefr_level": "B2", + "english_translation": "aspirated", + "romanization": "aspirato", + "example_sentence_native": "Questo motore è un aspirato.", + "example_sentence_english": "This engine is naturally aspirated.", + "pos": "adjective", + "word_frequency": 27189 + } +] diff --git a/documentation/PIPELINE.md b/documentation/PIPELINE.md index c61a2e2..56285b9 100644 --- a/documentation/PIPELINE.md +++ b/documentation/PIPELINE.md @@ -112,77 +112,83 @@ The pipeline runs in five stages. Each stage is independent and can be re-run wi ### 1. Extract -Reads each language from the OMW SQLite database (`~/.wn_data/wn.db`) and produces a normalized JSON file per language containing all synsets with their translations, glosses, and usage examples across all parts of speech. Adjective satellites are collapsed into adjective at this stage. +Reads the OMW SQLite database (`~/.wn_data/wn.db`) and produces a single normalized JSON file containing all synsets with their translations, glosses, and usage examples across all five languages and all parts of speech. Adjective satellites are collapsed into adjective at this stage. **Input:** `~/.wn_data/wn.db` -**Output:** `stage-1-extract/output/{lang}.json` +**Output:** `stage-1-extract/output/omw.json` ```bash -python scripts/extract.py +python stage-1-extract/scripts/extract.py ``` +Add `--sample` to extract 100 synsets for inspection before running the full +extraction. + Each record in the output looks like this: ```json { - "source_id": "omw-en-12345", - "pos": "noun", + "source_id": "ili:i1", + "pos": "adjective", "translations": { - "en": ["dog", "canine"], - "it": ["cane"] + "en": ["able"], + "it": ["abile", "intelligente", "valente", "capace"], + "es": ["capaz"], + "fr": ["comptable"] }, "glosses": { - "en": "a domesticated carnivorous mammal" + "en": ["(usually followed by 'to') having the necessary means or skill or know-how or authority to do something"] }, "examples": { - "en": ["the dog barked at the stranger"] + "en": ["able to swim", "she was able to program her computer"] } } ``` -Note: glosses and examples are not available for all languages. French and Spanish have no glosses in the current OMW database. Coverage detail is in `COVERAGE.md`. - - - -> **Note for first run:** Before extracting the full dataset, run the script -> in sample mode to inspect the actual data per language. Real-world wordnet -> data often contains unexpected formatting, missing fields, or inconsistencies -> that are better discovered early. A sample of 50–100 synsets per language is -> enough to verify the output shape and spot anything worth handling before -> processing the full dataset. +Note: glosses and examples are not available for all languages. French and Spanish have no glosses or examples in the current OMW database — these will be generated by the LLM in the enrich stage. Coverage detail is in `COVERAGE.md`. ### 2. Annotate -Merges the CEFR source files into the extracted data. Each word in each language is looked up in the corresponding CEFR source file. Matched words receive a `cefr_source` vote which carries into the enrich stage. Unmatched words proceed without a vote — the enrich stage handles them entirely. +Reads the combined OMW extract and merges CEFR source data into it. Each translation in each language is matched against the corresponding CEFR source +file by word text and part of speech. Matched translations receive a `cefr_source` vote which carries into the enrich stage. Unmatched translations proceed without a vote. -This stage is language-agnostic and processes all languages in one run. +This stage also extracts native example sentences from the CEFR source files and adds them to the record alongside OMW examples, with `source: "cefr"` to distinguish them. -**Input:** `stage-1-extract/output/{lang}.json` + `stage-2-annotate/sources/cefr/{lang}.json` -**Output:** `stage-2-annotate/output/{lang}.json` +Words appearing in the CEFR source file multiple times with different CEFR levels are written to `conflicts.json` for manual review and excluded from voting until resolved. + +**Input:** `stage-1-extract/output/omw.json` + `stage-2-annotate/sources/cefr/{lang}.json` +**Output:** +- `stage-2-annotate/output/{lang}.json` — one per language +- `stage-2-annotate/output/conflicts.json` — cross-language conflicts for review ```bash pnpm --filter @lila/pipeline annotate ``` -Each record in the output extends the extracted record with a `votes` field: +Each record in the output extends the OMW record with a `votes` field and any additional examples from the CEFR source file: ```json { - "source_id": "omw-en-12345", - "pos": "noun", + "source_id": "ili:i1", + "pos": "adjective", "translations": { - "en": ["dog", "canine"], - "it": ["cane"] + "en": ["able"], + "it": ["abile", "intelligente", "valente", "capace"], + "es": ["capaz"], + "fr": ["comptable"] }, "glosses": { - "en": "a domesticated carnivorous mammal" + "en": ["having the necessary means or skill to do something"] }, "examples": { - "en": ["the dog barked at the stranger"] + "en": [ + { "text": "able to swim", "source": "omw" }, + { "text": "She was able to finish the task.", "source": "cefr" } + ] }, "votes": { "en": { - "cefr_source": "A1" + "able": { "cefr_source": "B1" } } } } @@ -196,14 +202,16 @@ The enrich stage runs in two rounds, both designed to execute overnight one mode **Round 1 — generation** -Each model processes every word in every language one term at a time and generates: +Each model processes every word in every language one term at a time and +generates: - A CEFR level vote for each translation - A description for each language +- A translation for each language, only if OMW provides none - A gloss for each language, only if OMW provides none - Usage examples for each language, only if OMW provides none -OMW data is never duplicated — the script checks what OMW already provides before building the prompt. For glosses and examples, if OMW data exists for that language the LLM skips generation entirely. This significantly reduces compute time for languages with good OMW coverage such as English and Italian. +OMW data is never duplicated — the script checks what OMW already provides before building the prompt. For translations, glosses and examples, if OMW data exists for that language the LLM skips generation entirely. This significantly reduces compute time for languages with good OMW coverage such as English. All model-generated content is stored with an anonymised source (`model_1`, `model_2` etc.) so models cannot be biased by knowing who generated what in round 2.